diff --git a/input/InitialPopulations/compile/02_create_UKHLS_variables.do b/input/InitialPopulations/compile/02_create_UKHLS_variables.do index 0a1ad1183..e6e172f33 100644 --- a/input/InitialPopulations/compile/02_create_UKHLS_variables.do +++ b/input/InitialPopulations/compile/02_create_UKHLS_variables.do @@ -1,1722 +1,1767 @@ -*************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data -* DO-FILE NAME: 02_create_UKHLS_variables.do -* DESCRIPTION: This file creates initial population variables in the UKHLS pooled sample -*************************************************************************************** -* COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 18 July 2025 DP -* NOTE: Called from 00_master.do - see master file for further details -* Use -9 for missing values -*************************************************************************************** - - -***************************************************************************************************** -cap log close -log using "${dir_log}/02_create_UKHLS_variables.log", replace -***************************************************************************************************** - -use "$dir_data\ukhls_pooled_all_obs_01.dta", clear -lab define dummy 1 "yes" 0 "no" - - -/************************************************************************************** -* SAMPLE -*************************************************************************************/ - -***Drop IEMB: -fre hhorig -/*hhorig -- Sample origin, household -1 ukhls gb 2009-10 -2 ukhls ni 2009-10 -3 bhps gb 1991 -4 bhps sco 1999 -5 bhps wal 1999 -6 bhps ni 2001 -7 ukhls emboost 2009-10 -8 ukhls iemb 2014-15 -21 ukhls gps2 gb 2022-2023 -22 ukhls gps2 ni 2022-2023 -*/ -drop if hhorig == 8 - -***Keep everyone at this stage as we need info on partners and parents who do not have full/proxi interviews in some waves*/ -fre ivfio -/* -ivfio -- Individual level outcome -1 full interview -2 proxy interview -9 lost capi intvw -10 refusal -11 other non-intvw -12 moved -14 ill/away during survey period -15 too infirm/elderly -16 language difficulties -18 unknown eligibility -21 youth interview -22 youth: refusal -24 child under 10 -25 youth non-interview -53 non-cont/non-int hh -63 chd <16 non-cont/non-int hh -74 ineligible - aged 10-15 (iemb only) -81 prev wave adamant refusal -84 Ineligible for individual interview as nr in last 3 waves - -keep if ivfio == 1 | ivfio == 2 | ivfio == 21 | ivfio == 24 -fre ivfio -*/ - - -/************************************************************************************** -* CREATE REQUIRED VARIABLES -*************************************************************************************/ - - -/*****************************SYSTEM VARIABLES*********************************/ -*swv: Data collection wave (set to match wave defined in macro at the beginning) -//gen swv = $wvno -la var swv "Data collection wave" - -*stm: Year -gen stm = intdaty_dv -la var stm "Interview year" -//bysort swv: fre stm - -*interview date -gen Int_Date = mdy(intdatm_dv, intdatd_dv ,intdaty_dv) -format Int_Date %d - - -/**************************** HOUSEHOLD IDENTIFIER*****************************/ -clonevar idhh= hidp -la var idhh "Household identifier" - - -/********************************* INDIVIDUALS ID*****************************/ -clonevar idperson=pidp -la var idperson "Unique cross wave identifier" - - -******************************************************************************* -xtset idperson swv //Set panel - -/********************************** gender*************************************/ -gen dgn=sex_dv -la var dgn "Gender" -recode dgn 2=0 //dgn = 0 is female, 1 is male -lab define dgn 1 "men" 0 "women" -lab val dgn dgn - -// Impute missing values using lagged/lead values up to 13 previous waves -forvalues i = 1/13 { - replace dgn = l`i'.dgn if dgn==-9 & (l`i'.dgn !=-9) & idperson==l`i'.idperson - } -forvalues i = 1/13 { - replace dgn = f`i'.dgn if dgn==-9 & (f`i'.dgn !=-9) & idperson==f`i'.idperson - } -//fre dgn - - -/***************************************ID PARTNER*****************************/ -clonevar idpartner=ppid -la var idpartner "Unique cross wave identifier of partner" - - -/**********************ID FATHER (includes natural/step/adoptive)*************/ -clonevar idfather= fnspid -la var idfather "Father unique identifier" - - -/************************ID MOTHER (includes natural/step/adoptive)***********/ -clonevar idmother=mnspid -la var idmother "Mother unique identifier" - - -/************************ AGE *************************************************/ -gen dag= age_dv -sort idperson swv - -// Impute missing values using lagged/lead values up to 13 previous waves -forvalues i = 1/13 { - replace dag = l`i'.dag+`i' if dag==-9 & (l`i'.dag !=-9) & idperson==l`i'.idperson - } -forvalues i = 1/13 { - replace dag = f`i'.dag-`i' if dag==-9 & (f`i'.dag !=-9) & idperson==f`i'.idperson - } -//fre dag -recode dag (-1=-9) - -gen dagsq = dag^2 -replace dagsq =-9 if dag==-9 -la var dagsq "Age squared" - - -/****************************************Union*********************************/ -*Generate union variable to indicate if there is a spouse -*Partnerid are later filled in using ppno information, so dun should distinguish between spouse and just living together -gen dun = 0 -replace dun = 1 if sppid > 0 -la var dun "=1 if has spouse" -lab val dun dummy -//fre dun - - -/************************* region (NUTS 1) ***********************************/ -//fre gor_dv -gen drgn1=-9 -replace drgn1=1 if gor_dv==1 -replace drgn1=2 if gor_dv==2 -replace drgn1=4 if gor_dv==3 // following FRS, code 3 is not used -replace drgn1=5 if gor_dv==4 -replace drgn1=6 if gor_dv==5 -replace drgn1=7 if gor_dv==6 -replace drgn1=8 if gor_dv==7 -replace drgn1=9 if gor_dv==8 -replace drgn1=10 if gor_dv==9 -replace drgn1=11 if gor_dv==10 -replace drgn1=12 if gor_dv==11 -replace drgn1=13 if gor_dv==12 - -la var drgn1 "Region" -lab define drgn1 /// -1 "North East" /// -2 "North West" /// -4 "Yorkshire and the Humber" /// -5 "East Midlands" /// -6 "West Midlands" /// -7 "East of England" /// -8 "London" /// -9 "South East" /// -10 "South West" /// -11 "Wales" /// -12 "Scotland" /// -13 "Northern Ireland" -lab values drgn1 drgn1 - - -/***********************country***********************************************/ -gen dct=15 -la var dct "Country code: UK" - - -/**********************Partner's gender***************************************/ -duplicates report idpartner swv if idpartner >0 -/* -Duplicates in terms of idpartner swv - -copies observations surplus - -1 385784 0 -*/ - -preserve -keep swv idperson dgn -rename idperson idpartner -rename dgn dgnsp -save "$dir_data/temp_dgn", replace -restore - -merge m:1 idpartner swv using "$dir_data/temp_dgn" /*m:1 because some people have idpartner=-9*/ -la var dgnsp "Partner's gender" -keep if _merge==1 | _merge == 3 //matched N=385,780 (_merge==3) -drop _merge -lab values dgnsp dgn - -sort idperson swv -// Impute missing values using lagged values of dgnsp up to 13 previous waves -forvalues i = 1/13 { - replace dgnsp = l`i'.dgnsp if dgnsp==-9 & (l`i'.dgnsp!=-9) & idpartner == l`i'.idpartner - } -forvalues i = 1/13 { - replace dgnsp = f`i'.dgnsp if dgnsp==-9 & (f`i'.dgnsp!=-9) & idpartner == f`i'.idpartner - } -//fre dgnsp if idpartner>0 -replace dgnsp=-9 if missing(dgnsp) & idpartner>0 - -/***************** Partner's age***********************************************/ -preserve -keep swv idperson dag -rename idperson idpartner -rename dag dagsp -save "$dir_data/temp_age", replace -restore - -merge m:1 swv idpartner using "$dir_data/temp_age" -la var dagsp "Partner's age" -keep if _merge == 1 | _merge == 3 //matched N=385,780 (_merge==3) -drop _merge - -sort idperson swv -// Impute missing values using lagged values of dagsp up to 13 previous waves -forvalues i = 1/13 { - replace dagsp = l`i'.dagsp if dagsp ==-9 & (l`i'.dagsp !=-9) & idpartner == l`i'.idpartner - } -forvalues i = 1/13 { - replace dagsp = f`i'.dagsp if dagsp ==-9 & (f`i'.dagsp !=-9) & idpartner == f`i'.idpartner - } -//fre dagsp if idpartner>0 -replace dagsp=-9 if missing(dagsp) & idpartner>0 - -/**********************************Health status*******************************/ -*Use scsf1 variable, code negative values to missing, reverse code so 5 = excellent and higher number means better health - -*Replace with values of ypsrhlth for youth: note that info on youth health is not available in every wave -bys swv: fre scsf1 -bys swv: fre ypsrhlth -replace scsf1 = ypsrhlth if (scsf1 == . | scsf1 < 0) & (ypsrhlth<. & ypsrhlth>0) - -replace scsf1 = . if scsf1 < 0 -recode scsf1 (5 = 1 "Poor") /// - (4 = 2 "Fair") /// - (3 = 3 "Good") /// - (2 = 4 "Very good") /// - (1 = 5 "Excellent") /// - , into(dhe) -la var dhe "Health status" - -*Imputation for all: -fre dag if missing(dhe) - -*ordered probit model to replace linear regression -recode dgn dag dagsq drgn1 (-9=.) , gen (dgn2 dag2 dagsq2 drgn12) -fre dgn2 dag2 dagsq2 drgn12 -xi: oprobit dhe i.dgn2 dag2 dagsq ib8.drgn12 i.swv if dhe < ., vce(robust) -predict pred_probs1 pred_probs2 pred_probs3 pred_probs4 pred_probs5, pr - -//Identify the category with the highest predicted probability -egen max_prob = rowmax(pred_probs1 pred_probs2 pred_probs3 pred_probs4 pred_probs5) -//Impute missing values of dhe based on predicted probabilities -gen imp_dhe = . -replace imp_dhe = 1 if max_prob == pred_probs1 -replace imp_dhe = 2 if max_prob == pred_probs2 -replace imp_dhe = 3 if max_prob == pred_probs3 -replace imp_dhe = 4 if max_prob == pred_probs4 -replace imp_dhe = 5 if max_prob == pred_probs5 - -sum imp_dhe if missing(dhe) & dag>0 & dag<18 -sum imp_dhe if !missing(dhe) & dag>0 & dag<18 -sum imp_dhe if missing(dhe) & dag>=18 -sum imp_dhe if !missing(dhe) & dag>=18 - -cap gen dhe_flag = missing(dhe) -lab var dhe_flag "=1 if dhe is imputed" -replace dhe = round(imp_dhe) if missing(dhe) - -bys dhe_flag: fre dhe if dag<=18 -bys dhe_flag: fre dhe if dag>18 - -drop dgn2 dag2 dagsq2 drgn12 _Idgn2_1 _Iswv_* pred_probs* max_prob imp_dhe - - -**************************Partner's health status******************************/ -preserve -keep swv idperson dhe dhe_flag -rename idperson idpartner -rename dhe dhesp -rename dhe_flag dhesp_flag -save "$dir_data/temp_dhe", replace -restore - -merge m:1 swv idpartner using "$dir_data/temp_dhe" -la var dhesp "Partner's health status" -keep if _merge == 1 | _merge == 3 //matched 385,780 (_merge==3) -drop _merge - -cap lab define dhe 1 "Poor" 2 "Fair" 3 "Good" 4 "Very good" 5 "Excellent" -lab values dhesp dhe -//fre dhesp if idpartner>0 -replace dhesp=-9 if missing(dhesp) & idpartner>0 - - -/*****************************Subjective well-being ***************************/ -/*dhm scghq1_dv "DEMOGRAPHIC: Subjective wellbeing (GHQ): Likert Scale from 0 to 36, assumed to be continuous in the simulation." -This measure converts valid answers to 12 questions of the General Health Questionnaire (GHQ) to a single scale by recoding so that -the scale for individual variables runs from 0 to 3 instead of 1 to 4, and then summing, -giving a scale running from 0 (the least distressed) to 36 (the most distressed). -Values for children (missing in the UKHLS) are imputed using a regression model.*/ -gen dhm = scghq1_dv -replace dhm = . if scghq1_dv <0 -la var dhm "DEMOGRAPHIC: Subjective wellbeing (GHQ)" -fre dhm if dag>0 & dag<=18 -fre dhm if dag>0 & dag<16 - -*Imputation for all: -fre dag if missing(dhm) - -preserve -drop if dgn < 0 | dag<0 | dhe<0 -eststo predict_dhm: reg dhm c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. -restore -estimates restore predict_dhm -predict dhm_prediction -fre dhm_prediction - -gen dhm_flag = missing(dhm) -replace dhm = round(dhm_prediction) if missing(dhm) -bys dhm_flag : sum dhm - - -/**************************Subjective wellbeing (GHQ): Caseness ****************************** -0: not psychologically distressed, scghq2_dv < 4 -1: psychologically distressed, scghq2_dv >= 4 -This measure converts valid answers to 12 questions of the General Health Questionnaire (GHQ) to a single scale by recoding 1 and 2 values -on individual variables to 0, and 3 and 4 values to 1, and then summing, giving a scale running from 0 (the least distressed) to 12 -(the most distressed). A binary indicator is then created, equal to 1 for values >= 4.*/ -fre scghq2_dv -recode scghq2_dv (-9/-1 . = .) -gen scghq2_dv_miss_flag = (scghq2_dv == .) - -*imputation for all -preserve -drop if dgn < 0 | dag<0 | dhe<0 -eststo predict_scghq2: reg scghq2_dv c.dag i.dgn i.swv i.dhe if scghq2_dv>=0, vce(robust) -restore - -estimates restore predict_scghq2 -predict scghq2_prediction -fre scghq2_prediction - -cap gen scghq2_dv_flag=missing(scghq2_dv) -replace scghq2_dv = round(scghq2_prediction) if missing(scghq2_dv) -bys scghq2_dv_flag: fre scghq2_dv -recode scghq2_dv(-1=0) - -*create a dummy var -cap gen dhm_ghq = . -replace dhm_ghq = 0 if scghq2_dv>=0 & scghq2_dv<4 -replace dhm_ghq = 1 if scghq2_dv>=4 -lab var dhm_ghq "DEMOGRAPHIC: Subjective wellbeing (GHQ): Caseness" -//fre dhm_ghq - - -/****************************Self-rated health health - mental and physical component summary scores SF12 ***************************/ -/*SF-12 Mental Component Summary (MCS). Continuous scale with a range of 0 (low functioning) to 100 (high functioning)*/ -cap gen dhe_mcs = sf12mcs_dv -replace dhe_mcs = . if sf12mcs_dv < 0 -lab var dhe_mcs "DEMOGRAPHIC: Subjective Self-rated health - Mental (SF12 MCS)" - -*Imputation for all: -preserve -drop if dgn < 0 | dag<0 | dhe<0 -eststo predict_dhe_mcs: reg dhe_mcs c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. -restore -estimates restore predict_dhe_mcs -predict dhe_mcs_prediction -fre dhe_mcs_prediction - -gen dhe_mcs_flag = missing(dhe_mcs) -replace dhe_mcs = round(dhe_mcs_prediction) if missing(dhe_mcs) -bys dhe_mcs_flag : sum dhe_mcs - - -/*SF-12 Physical Component Summary (PCS). Continuous scale with a range of 0 (low functioning) to 100 (high functioning)*/ -cap gen dhe_pcs = sf12pcs_dv -replace dhe_pcs = . if sf12pcs_dv < 0 -lab var dhe_pcs "DEMOGRAPHIC: Subjective Self-rated health - Physical (SF12 PCS)" - -*Imputation for all: -preserve -drop if dgn < 0 | dag<0 | dhe<0 -eststo predict_dhe_pcs: reg dhe_pcs c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. -restore -estimates restore predict_dhe_pcs -predict dhe_pcs_prediction -fre dhe_pcs_prediction - -gen dhe_pcs_flag = missing(dhe_pcs) -replace dhe_pcs = round(dhe_pcs_prediction) if missing(dhe_pcs) -bys dhe_pcs_flag : sum dhe_pcs - - -/************Partner's Self-rated health health - mental and physical component***************/ -preserve -keep swv idperson dhe_mcs dhe_pcs -rename idperson idpartner -rename dhe_mcs dhe_mcssp -rename dhe_pcs dhe_pcssp - -save "$dir_data/temp_dhe", replace -restore - -merge m:1 swv idpartner using "$dir_data/temp_dhe" -la var dhe_mcssp "Partner's Self-rated health health - mental component" -la var dhe_pcssp "Partner's Self-rated health health - physical component" -keep if _merge == 1 | _merge == 3 -drop _merge -replace dhe_mcssp=-9 if missing(dhe_mcssp) & idpartner>0 -replace dhe_pcssp=-9 if missing(dhe_pcssp) & idpartner>0 -//fre dhe_mcssp dhe_pcssp if idpartner>0 - - -/***************************** Life Satisfaction ***************************************************************************/ -/* Life satisfaction, self report. Continuous scale 0 to 7. */ - - -gen dls = sclfsato -replace dls = . if sclfsato < 0 -lab var dls "DEMOGRAPHIC: Life Satisfaction" -// fre dls if dag>0 & dag<16 - -preserve -drop if dgn < 0 | dag<0 | dhe<0 -eststo predict_dls: reg dls c.dag i.dgn i.swv i.dhe c.dhm c.dhe_mcs, vce(robust) // Physical and mental health have a big impact, so included as covariate. -restore -estimates restore predict_dls -predict dls_prediction -// fre dls_prediction - -gen dls_flag = missing(dls) -replace dls = round(dls_prediction) if missing(dls) -bys dls_flag : sum dls - - -/****************************Ehtnicity*****************************************/ -/*Ethnic group derived from multiple sources such as self-reported as an adult, self-reported as a youth, reported by a household member, and ethnic group of biological parents. -ethn_dv -- Ethnic group (derived from multiple sources) - -9 missing - 1 british/english/scottish/welsh/northern irish - 2 irish - 3 gypsy or irish traveller - 4 any other white background - 5 white and black caribbean - 6 white and black african - 7 white and asian - 8 any other mixed background - 9 indian - 10 pakistani - 11 bangladeshi - 12 chinese - 13 any other asian background - 14 caribbean - 15 african - 16 any other black background - 17 arab - 97 any other ethnic group -*/ -*ONS style definition (but missing is kept as a separate category) -cap gen dot01 = . -replace dot01 = 1 if ethn_dv>=1 & ethn_dv <=4 //white// -replace dot01 = 2 if ethn_dv>=5 & ethn_dv<=8 //mixed // -replace dot01 = 3 if ethn_dv>=9 & ethn_dv<=13 //asian// -replace dot01 = 4 if ethn_dv>=14 & ethn_dv<=16 //black// -replace dot01 = 5 if ethn_dv==17 | ethn_dv==97 //other, arab// -replace dot01 = 6 if ethn_dv==-9 //missing// -lab var dot01 "Ethnicity" -cap label define dot01 1 "White" 2 "Mixed or Multiple ethnic groups" 3 "Asian or Asian British" 4 "Black, Black British, Caribbean, or African" 5 "Other ethnic group" 6 "Missing" -label values dot01 dot01 -//fre dot01 - -/************Partner's ethnicity***************/ -preserve -keep swv idperson dot01 -rename idperson idpartner -rename dot01 dot01_sp -save "$dir_data/temp_dot01", replace -restore - -merge m:1 swv idpartner using "$dir_data/temp_dot01" -la var dot01_sp "Partner's Ethnicity (6 cat)" -keep if _merge == 1 | _merge == 3 -drop _merge -replace dot01_sp=6 if missing(dot01_sp) & idpartner>0 -replace dot01_sp=-69 if missing(dot01_sp) -fre dot01_sp - -//impute missing status of a respondent by spouses status if not missing -fre dot01_sp if dot01==6 -replace dot01=dot01_sp if dot01==6 & (dot01_sp>=1 & dot01_sp<=5) //(9,499 real changes made) out of 21914 = 43% of missing is imputed by partner's ethnicity - - -* Ethnicity definition used in regression estimates -cap gen dot = . -replace dot = 1 if ethn_dv>=1 & ethn_dv <=4 //white// -replace dot = 2 if ethn_dv>=9 & ethn_dv<=13 //asian// -replace dot = 3 if ethn_dv>=14 & ethn_dv<=16 //black// -replace dot = 4 if ethn_dv==17 | ethn_dv==97 | ethn_dv==-9 | (ethn_dv>=5 & ethn_dv<=8) //arab, mixed, other and missing -lab var dot "Ethnicity" -cap label define dot 1 "White" 2 "Asian or Asian British" 3 "Black, Black British, Caribbean, or African" 4 "Other or missing ethnic group" -label values dot dot -//fre dot - - - -/******************************Education status*******************************/ -*Use hiqual variable, code negative values to missing -*Low education: Other qualification, no qualification -*Medium education: Other higher degree, A-level etc, GCSE etc -*High education: Degree -replace hiqual_dv = . if hiqual_dv < 0 -sort idperson swv - -// Impute missing values using lagged values of up to 13 previous waves -forvalues i = 1/13 { -replace hiqual_dv = l`i'.hiqual_dv if missing(hiqual_dv) & !missing(l`i'.hiqual_dv) & jbstat != 7 -} -recode hiqual_dv (1 = 1 "High") /// - (2 3 4 = 2 "Medium") /// - (5 9 = 3 "Low") /// - , into(deh_c3) -la var deh_c3 "Education status" -label list deh_c3 - -replace deh_c3 = 3 if dag < 16 & dag>-9 //Children have low level of education until they leave school -//fre deh_c3 - - -/***************************Partner's education status*************************/ -preserve -keep swv idperson deh_c3 -rename idperson idpartner -rename deh_c3 dehsp_c3 -save "$dir_data/temp_deh", replace -restore - -merge m:1 swv idpartner using "$dir_data/temp_deh" -la var dehsp_c3 "Education status partner" -keep if _merge == 1 | _merge == 3 -drop _merge -lab define deh 1 "High" 2 "Medium" 3 "Low" -lab val dehsp_c3 deh -replace dehsp_c3=-9 if missing(dehsp_c3) & idpartner>0 -//fre dehsp_c3 - - -/********************************Parents' education status*********************/ -//bys swv: fre maedqf paedqf -replace maedqf = . if maedqf < 0 -replace paedqf = . if paedqf < 0 - -recode maedqf (5 = 1 "High") /// - (4 3 = 2 "Medium") /// - (2 1 97 = 3 "Low") /// - , into(dehm_c3) //dehm_c3 is mother's highest qualification -la var dehm_c3 "Education status mother" - -recode paedqf (5 = 1 "High") /// - (4 3 = 2 "Medium") /// - (2 1 97 = 3 "Low") /// - , into(dehf_c3) //dehf_c3 is father's highest qualification -la var dehf_c3 "Education status father" - -save "$dir_data/temp", replace - -*If missing and living with parents, use their current level of education: -*1. Create mothers and fathers education levels in new file with person and hh id -*2. Merge by father and mother id and hh id -keep swv idperson idhh deh_c3 -drop if missing(deh_c3) -rename idperson idmother -rename deh_c3 mother_educ -save "$dir_data/mother_edu", replace - -rename idmother idfather -rename mother_educ father_educ -save "$dir_data/father_edu", replace - -use "$dir_data/temp", clear -merge m:1 swv idmother idhh using "$dir_data/mother_edu" -keep if _merge == 1 | _merge == 3 -drop _merge -merge m:1 swv idfather idhh using "$dir_data/father_edu" -keep if _merge == 1 | _merge == 3 -drop _merge - -replace dehm_c3 = mother_educ if missing(dehm_c3) -replace dehf_c3 = father_educ if missing(dehf_c3) - -fre dehm_c3 if dgn>0 & dag>0 -fre dehf_c3 if dgn>0 & dag>0 - -*Identify the highest parental education status -//recode dehm_c3 dehf_c3 (.=0) -cap drop dehmf_c3 -egen dehmf_c3 = rowmax(dehm_c3 dehf_c3) -lab var dehmf_c3 "highest parental education status" -fre dehmf_c3 -//recode dehm_c3 dehf_c3 (0=.) -fre dehmf_c3 if dehm_c3==. -fre dehmf_c3 if dehf_c3==. - -*predict highest parental education status if missing -//Recode education level (outcome variable) so 1 = Low education, 2 = Medium education, 3 = High education -recode dehmf_c3 /// - (1 = 3) /// - (3 = 1) /// - , gen(dehmf_c3_recoded) - -la def dehmf_c3_recoded 1 "Low" 2 "Medium" 3 "High" -la val dehmf_c3_recoded dehmf_c3_recoded -fre dehmf_c3_recoded - -*ordered probit model to replace missing values -recode dgn dag drgn1 (-9=.) , gen (dgn2 dag2 drgn12) -fre dgn2 dag2 drgn12 - -xi: oprobit dehmf_c3_recoded i.dgn2 dag2 ib8.drgn12 i.swv, vce(robust) -predict pred_probs1 pred_probs2 pred_probs3, pr - -//Identify the category with the highest predicted probability -egen max_prob = rowmax(pred_probs1 pred_probs2 pred_probs3) -//Impute missing values based on predicted probabilities -gen imp_dehmf_c3_recoded = . -replace imp_dehmf_c3_recoded = 1 if max_prob == pred_probs1 -replace imp_dehmf_c3_recoded = 2 if max_prob == pred_probs2 -replace imp_dehmf_c3_recoded = 3 if max_prob == pred_probs3 - -fre imp_dehmf_c3_recoded if missing(dehmf_c3_recoded) -fre imp_dehmf_c3_recoded if !missing(dehmf_c3_recoded) - -recode imp_dehmf_c3_recoded /// - (1 = 3) /// - (3 = 1) /// - , gen(imp_dehmf_c3) - -tab2 imp_dehmf_c3_recoded imp_dehmf_c3 - -cap gen dehmf_c3_flag = missing(dehmf_c3) -lab var dehmf_c3_flag "=1 if dehmf_c3 is imputed" -replace dehmf_c3 = round(imp_dehmf_c3) if missing(dehmf_c3) -lab define dehmf_c3 1 "High" 2 "Medium" 3 "Low" - -bys dehmf_c3_flag: fre dehmf_c3 - -drop dehmf_c3_recoded dgn2 dag2 drgn12 _Idgn2_1 _Iswv_* pred_probs* max_prob imp_dehmf_c3_recoded imp_dehmf_c3 - - -/******************In continuous education (=first education spell)*************************************/ -/* -replace ded = 1 if jbstat == 7 & (l.jbstat==7 | l.jbstat>=. | l.jbstat<0) -*/ -/*Decision 25/10/2024: We opted to revise this variable to ensure that individuals who are observed out of continuous education in one year, aren't recorded as being in continuous education in future years. -But we include current students who were not observed in the previous wave if they are aged<=23 because the average age of obtaining a Bachelor's degree (BSc) in the UK is typically around 21 to 23 years old. -*/ -sort idperson swv -xtset idperson swv -gen ded = 0 -replace ded = 1 if jbstat==7 & l.jbstat==. & dag <= 23 //currently in education and were not participating in the previous wave and aged<=23 years -replace ded = 1 if jbstat==7 & l.ded == 1 //currently in education and were in education in the previous wave -replace ded = 1 if dag < 16 //Everyone under 16 should be in education - this inludes some obs where jbstat!=7 -la val ded dummy -la var ded "DEMOGRAPHIC : In Continuous Education" -//fre ded - - -/****************************Return to education*******************************/ -cap gen der = -9 -replace der = 0 if l.jbstat !=7 & l.jbstat<. -replace der = 1 if jbstat==7 & l.jbstat !=7 & l.jbstat<. -la val der dummy -la var der "Return to education" -//fre der - -/*****************************Partnership status*******************************/ -recode mastat_dv (2 3 10 = 1 "Partnered") /// - (0 1 = 2 "Single never married") /// Includes children under 16 - (4 5 6 7 8 9 = 3 "Previously partnered") /// - , into (dcpst) -la var dcpst "Partnership status" -recode dcpst (-8 -2 -1 = -9) - -*If idpartner = 0 (because of household splitting), dcpst should be set to 3 depending on mastat_dv value -replace dcpst = 3 if dcpst == 1 & idpartner <= 0 -replace dcpst = 1 if idpartner > 0 & !missing(idpartner) - -//Children coded as "Never Married" (17 and under chosen as can marry from 18 years onwards) -replace dcpst = 2 if dag <= 17 & idpartner<0 -//fre dcpst - - -/*****************************Enter partnership*******************************/ -sort idperson swv -cap drop dcpen -gen dcpen = -9 -replace dcpen=0 if (l.dcpst==2 | l.dcpst==3) -replace dcpen=1 if dcpst==1 & (l.dcpst==2 | l.dcpst==3) -la val dcpen dummy -la var dcpen "Enter partnership" -//fre dcpen - - -/*****************************Exit partnership*********************************/ -sort idperson swv -cap drop dcpex -gen dcpex=-9 -replace dcpex = 0 if l.dcpst==1 -replace dcpex = 1 if dcpst==3 & l.dcpst==1 -la val dcpex dummy -la var dcpex "Exit partnership" -//fre dcpex - - -/*****************************Age difference partners*************************/ -gen dcpagdf = dag - dagsp if (dag > 0 & dagsp > 0) //Leave with negative values? Or should be absolute? -la var dcpagdf "Partner's age difference" - - -/*********************************Activity status*****************************/ -recode jbstat (1 2 5 12 13 14 = 1 "Employed or self-employed") /// - (7 = 2 "Student") /// - (3 6 8 10 11 97 9 4 = 3 "Not employed") /// /*includes apprenticeships, unpaid family business, govt training scheme+retired */ - , into(les_c3) -la var les "Activity status" - -//For people under 16 set activity status to student: -replace les_c3 = 2 if dag <= 16 -//People below age to leave home are not at risk of work so set activity status to not employed if not a student -replace les_c3 = 3 if dag < $age_become_responsible & les_c3 != 2 - - -/***********************Activity status variable adding retirement*************/ -*Generate les_c4 variable in addition to the les_c3 variable. Les_c4 adds retired status. -cap drop les_c4 -clonevar les_c4 = les_c3 -replace les_c4 = 4 if jbstat==4 -lab var les_c4 "LABOUR MARKET: Activity status" -lab define les_c4 1 "Employed or self-employed" 2 "Student" 3 "Not employed" 4 "Retired" -lab val les_c4 les_c4 -//tab2 les_c3 les_c4 - - -/****************************Partner's activity status:***********************/ -preserve -keep swv idperson idhh les_c3 -rename les_c3 lessp_c3 -rename idperson idpartner -save "$dir_data/temp_lesc3", replace -restore -merge m:1 swv idpartner idhh using "$dir_data/temp_lesc3" -keep if _merge == 1 | _merge == 3 -la var lessp_c3 "Partner's activity status" -drop _merge -//fre lessp_c3 - - -/**********************Partner's activity status adding retirement*************/ -preserve -keep swv idperson idhh les_c4 -rename les_c4 lessp_c4 -rename idperson idpartner -save "$dir_data/temp_lesc4", replace -restore -merge m:1 swv idpartner idhh using "$dir_data/temp_lesc4" -keep if _merge == 1 | _merge == 3 -la var lessp_c4 "LABOUR MARKET: Partner's activity status" -lab val lessp_c4 les_c4 -drop _merge -//fre lessp_c4 - - -/***********************Own and Spousal Activity Status***********************/ -gen lesdf_c4 = -9 -replace lesdf_c4 = 1 if les_c3 == 1 & lessp_c3 == 1 & dcpst == 1 //Both employed -replace lesdf_c4 = 2 if les_c3 == 1 & (lessp_c3 == 2 | lessp_c3 == 3) & dcpst == 1 //Employed, spouse not employed -replace lesdf_c4 = 3 if (les_c3 == 2 | les_c3 == 3) & lessp_c3 == 1 & dcpst == 1 //Not employed, and spouse employed -replace lesdf_c4 = 4 if (les_c3 == 2 | les_c3 == 3) & (lessp_c3 == 2 | lessp_c3 == 3) & dcpst == 1 //Both not employed - -la def lesdf_c4_lb 1"Both employed" 2"Employed and spouse not employed" 3"Not employed and spouse employed" 4"Both not employed" -9"Missing" -la val lesdf_c4 lesdf_c4_lb - -la var lesdf_c4 "Own and spousal activity status" -//fre lesdf_c4 - - -/******************************Civil servant status***************************/ -gen lcs=0 -// R.K. (11.05.2017) (we can use SIC 2007 condensed version- this is what Paola does for FRS EUROMOD) -replace lcs=1 if jbsic07_cc==84 -la var lcs "Civil Servant" -lab val lcs dummy -//fre lcs - - -/***********************************Hours of work*****************************/ -recode jbhrs (-9/-1 . = .) //is it fine to recode these to 0? don't want to have missing in simulation? -recode jbot (-9/-1 . = .) -recode jshrs (-9/-1 . = .) -//lhw is the sum of the above, but don't want to take -9 into account. Recode into missing value. -egen lhw=rowtotal(jbhrs jbot jshrs) -replace lhw = ceil(lhw) -la var lhw "Hours worked per week (capped at 126)" -replace lhw = 126 if lhw > 126 //ensure lhw doesn't go above weekly max 168 minus 6*7 hours of sleep. -//(37 real changes made) -//fre lhw - -// Lag(1) of hours of work -xtset // check if xtset correct -gen l1_lhw = l1.lhw - -replace l1_lhw = lhw if l1.les_c4 == 1 & les_c4 == 1 & missing(l1_lhw) // replace lagged value with current value if employed last period and this period -replace l1_lhw = lhw if les_c4 == 1 & missing(l1_lhw) // replace lagged value with current value if above not successful -replace l1_lhw = 0 if l1.les_c4 != 1 // replace lagged value with zero if not compatible with lagged employment state -replace l1_lhw = 0 if les_c4 != 1 & missing(l1_lhw) // replace with zero if not working and l1_lhw still missing - - -/*****************************Number of children*******************************/ -//Number of children aged 0-2 (Checked against manually generating count of children 0-2 per HH - same numbers, but nch02_dv distinguishes missing and 0) -gen dnc02 = nch02_dv -recode dnc02 (-9 = 0) -la var dnc02 "Number of children aged 0-2" - -//Number of dependent children aged 0-18 (dependent doesn't include children who have spouse / child but live with parents) -//Gen flag for a dependent child aged 0-18, with at least one parent and classified as dependent child -/*pns1pid = Biological/step/adoptive parent 1: Cross-wave person identifier (PIDP). - pns2pid = Biological/step/adoptive parent 2: Cross-wave person identifier (PIDP). - If there is more than one parent, the parent with the lowest PNO is the first parent and the parent with the higher PNO is the second parent*/ -gen depChild = 1 if (age_dv >= 0 & age_dv <= 18) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) -bys swv idhh: egen dnc = sum(depChild) -*drop depChild -la var dnc "Number of dependent children 0 - 18" - - -/*******************************Flag for adult children***********************/ -preserve -keep if dgn == 0 -keep swv idhh idperson dag -rename idperson idmother -rename dag dagmother -save "$dir_data/temp_mother_dag", replace -restore, preserve -keep if dgn == 1 -keep swv idhh idperson dag -rename idperson idfather -rename dag dagfather -save "$dir_data/temp_father_dag", replace -restore - -merge m:1 swv idhh idmother using "$dir_data/temp_mother_dag" -keep if _merge == 1 | _merge == 3 -drop _merge -merge m:1 swv idhh idfather using "$dir_data/temp_father_dag" -keep if _merge == 1 | _merge == 3 -drop _merge - -//Adult child is identified on the successful merge with mother / father in the same household and age -gen adultchildflag = (!missing(dagmother) | !missing(dagfather)) & dag >= $age_become_responsible & idpartner <= 0 -*Introduce a condition that (adult) children cannot be older than parents-15 year of age -replace adultchildflag = 0 if dag >= dagfather-15 | dag >= dagmother-15 - - -/************************Household composition*********************************/ -cap gen dhhtp_c4 = -9 -replace dhhtp_c4 = 1 if dcpst == 1 & dnc == 0 //Couple, no children -replace dhhtp_c4 = 2 if dcpst == 1 & dnc > 0 & !missing(dnc) //Couple, children -replace dhhtp_c4 = 3 if (dcpst == 2 | dcpst == 3) & (dnc == 0 | dag <= $age_become_responsible | adultchildflag== 1) -/*Single, no children (Note: adult children and children below age to become responsible -should be assigned "no children" category, even if there are some children in the household)*/ -replace dhhtp_c4 = 4 if (dcpst == 2 | dcpst == 3) & dnc > 0 & !missing(dnc) & dhhtp_c4 != 3 //Single, children - -la def dhhtp_c4_lb 1"Couple with no children" 2"Couple with children" 3"Single with no children" 4"Single with children" -la values dhhtp_c4 dhhtp_c4_lb -la var dhhtp_c4 "Household composition" -//fre dhhtp_c4 - - -/************************Long-term sick or disabled***************************/ -gen dlltsd = 0 -replace dlltsd = 1 if jbstat == 8 -sort idperson swv -replace dlltsd = 1 if missing(jbstat) & l.jbstat == 8 -//replace dlltsd = 1 if missing(jbstat) & missing(l.jbstat) & l2.jbstat == 8 -la var dlltsd "DEMOGRAPHIC: LT sick or disabled" - - -//check if in receipt of disability benefits -/* -fre bendis1 //Income: Disability benefits: Incapacity Benefit -fre bendis2 //Income: Disability benefits: Employment and Support Allowance -fre bendis3 //Income: Disability benefits: Severe Disablement Allowance -fre bendis4 //Income: Disability benefits: Carer's Allowance -fre bendis5 //Income: Disability benefits: Disability Living Allowance -fre bendis6 //Income: Disability benefits: Return to work credit -fre bendis7 //Income: Disability benefits: Attendance Allowance -fre bendis8 //Income: Disability benefits: Industrial Injury Disablement Benefit -fre bendis9 //Income: Disability benefits: War disablement pension -fre bendis10 //Income: Disability benefits: Sickness and Accident Insurance -fre bendis11 //Income: Disability benefits: Universal Credit -fre bendis12 //Income: Disability benefits: Personal Independence Payments -fre bendis13 //Income: Disability benefits: Child Disability Payment -fre bendis14 //Income: Disability benefits: Adult Disability Payment -fre bendis15 //Income: Disability benefits: Pension Age Disability Payment -fre bendis97 //Income: Disability benefits: Any other disability related benefit or payment -*/ -gen disben = 0 -replace disben = 1 if inlist(1, bendis1, bendis2, bendis3, bendis4, bendis5, bendis6, bendis7, bendis8, bendis9, /// - bendis10, bendis12, bendis13, bendis14, bendis15) -/*Note: exclude bendis11 (Universal credit) as it can be jointly received and bendis97 (any other) -bysort swv idhh (idhh): gen hhsize = _N -tab2 hhsize disben -tab2 dlltsd disben */ - -//second check: disability income based on ficode (disability income is computed in 01_prepare_ukhls_pooled_data) -gen disben2 = (inc_disab>0 & inc_disab<.) - -//select those who report being disabled & in receipt of disability benefits according to both checks -gen dlltsd01 = (dlltsd==1 | (disben==1 & disben2==1)) -la var dlltsd01 "DEMOGRAPHIC: LT sick/disabled or receives disability benefits" -//fre dlltsd01 -//tab2 dlltsd01 dlltsd - - -/*******************Long-term sick or disabled - spouse ***********************/ -preserve -keep swv idperson dlltsd dlltsd01 -rename idperson idpartner -rename dlltsd dlltsd_sp -rename dlltsd01 dlltsd01_sp -save "$dir_data/temp_dlltsd", replace -restore - -merge m:1 swv idpartner using "$dir_data/temp_dlltsd" -la var dlltsd_sp "Partner's long-term sick/disabled" -la var dlltsd01_sp "Partner's long-term sick/disabled or receives disability benefits" -keep if _merge == 1 | _merge == 3 -drop _merge -//fre dlltsd_sp - - -/*******************************Retired***************************************/ -gen dlrtrd = 0 -replace dlrtrd = 1 if jbstat == 4 -sort idperson swv -// Impute missing values using lagged values up to 13 previous waves -forvalues i = 1/13 { - replace dlrtrd = 1 if dlrtrd==0 & l`i'.jbstat == 4 - } -la var dlrtrd "DEMOGRAPHIC : Retired" - - -/*************************Enter retirement*************************************/ -sort idperson swv -cap gen drtren = -9 -replace drtren = 0 if l.dlrtrd==0 -replace drtren = 1 if dlrtrd==1 & l.dlrtrd==0 -la val drtren dummy -la var drtren "DEMOGRAPHIC: Enter retirement" -//fre drtren - - -/****************************Pension Age***************************************/ -/*cap gen bdt = mdy(1, 15, birthy) /*month of birth is available in special license only*/ -*/ -/*State Retirement Ages for Men in the UK (2009-2023): - -2009-2010: 65 -2010-2011: 65 -2011-2012: 65 -2012-2013: 65 -2013-2014: 65 -2014-2015: 65 -2015-2016: 65 -2016-2017: 65 -2017-2018: 65 -2018-2019: 65 -2019-2020: 65 -2020-2021: 66 -2021-2022: 66 -2022-2023: 66 - -State Retirement Ages for Women in the UK (2009-2023): - -2009-2010: 60 -2010-2011: 60 -2011-2012: 60 -2012-2013: 61 -2013-2014: 61 -2014-2015: 62 -2015-2016: 62 -2016-2017: 63 -2017-2018: 63 -2018-2019: 64 -2019-2020: 65 -2020-2021: 65 -2021-2022: 66 -2022-2023: 66 -*/ -gen dagpns = 0 -//for men -replace dagpns = 1 if dgn==1 & dag>=65 & stm>=2009 & stm<2020 -replace dagpns = 1 if dgn==1 & dag>=66 & stm>=2020 -//for women -replace dagpns = 1 if dgn==0 & dag>=60 & stm>=2009 & stm<2012 -replace dagpns = 1 if dgn==0 & dag>=61 & stm>=2012 & stm<2014 -replace dagpns = 1 if dgn==0 & dag>=62 & stm>=2014 & stm<2016 -replace dagpns = 1 if dgn==0 & dag>=63 & stm>=2016 & stm<2018 -replace dagpns = 1 if dgn==0 & dag>=64 & stm>=2018 & stm<2019 -replace dagpns = 1 if dgn==0 & dag>=65 & stm>=2019 & stm<2021 -replace dagpns = 1 if dgn==0 & dag>=66 & stm>=2021 - - -/****************************Pension age of a spouse***************************/ -preserve -keep swv idperson idhh dagpns -rename dagpns dagpns_sp -rename idperson idpartner -save "$dir_data/temp_dagpns", replace -restore -merge m:1 swv idpartner idhh using "$dir_data/temp_dagpns" -keep if _merge == 1 | _merge == 3 -la var dagpns_sp "Pension age - partner" -drop _merge -replace dagpns_sp=-9 if idpartner<0 - - -/************************************JBSTAT: Not Retired***********************/ -gen lesnr_c2 = . -replace lesnr_c2 = 1 if (jbstat ==1 | jbstat==2) /*employed*/ -replace lesnr_c2 = 2 if jbstat==3 | jbstat==5 | jbstat==6 | jbstat==8 | jbstat==9 | jbstat==10 | jbstat==11 | jbstat==14 | jbstat==97 -lab var lesnr_c2 "Not retired work status" -lab define lesnr_c2 1 "in work" 2 "not in work" -lab val lesnr_c2 lesnr_c2 - - -/************************Exited parental home*********************************/ -/*Generated from fnspid and/or mnspid. 1 means that individual no longer lives with a parent (fnspid & mnspid is equal to missing) - when in the previous wave they lived with a parent (fnspid or mnspid not equal to missing).*/ -/* -bysort swv: fre mnspid if mnspid<=0 -bysort swv: fre fnspid if fnspid<=0 -bysort swv: fre mnspid if mnspid>=. -bysort swv: fre fnspid if fnspid>=. -*/ -sort idperson swv -gen dlftphm = -9 if (l.fnspid<0 & l.mnspid<0) //those who did not live with parents in the same hh -replace dlftphm=0 if (l.fnspid>0 | l.mnspid>0) //those who lived with at least one parent -replace dlftphm =1 if (fnspid<0 & mnspid<0) & (l.fnspid>0 | l.mnspid>0) //lived with at least one parent but not anymore -bys idperson: replace dlftphm =-9 if _n==1 //this condition will not be applicable for first year in the panel// -la val dlftphm dummy -la var dlftphm "DEMOGRAPHIC: Exited Parental Home" -//bys swv: fre dlftphm - - -/*********************************Left education*******************************/ -sort idperson swv -gen sedex = -9 -replace sedex = 0 if l.jbstat == 7 -replace sedex = 1 if jbstat != 7 & l.jbstat == 7 -la val sedex dummy -la var sedex "Left education" - - -/****************************Same-sex partnership*****************************/ -gen ssscp = 0 if idpartner>0 -replace ssscp = 1 if idpartner>0 & (dgn == dgnsp) & dgn>=0 & dgn<. & dgnsp>=0 & dgnsp<. -la val ssscp dummy -la var ssscp "Same-sex partnership" -//fre ssscp - -/****************************Year prior to exiting partnership*****************/ -cap gen scpexpy = 0 -replace scpexpy = 1 if f.dcpex==1 -replace scpexpy=-9 if swv==14 //Impossible to know for the most recent wave -la val scpexpy dummy -la var scpexpy "Year prior to exiting partnership" -//fre scpexpy - - -/*****************************Women aged 18 - 44*******************************/ -gen sprfm = 0 -replace sprfm = 1 if dgn==0 & dag >= 18 & dag <= 44 -lab val sprfm dummy -la var sprfm "Woman in fertility range dummy (18- 44)" - - -/************************UK General Fertility Rate: From ONS 2019*************/ -/*Source: https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/livebirths/datasets/birthsummarytables -for 2023: https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/livebirths/datasets/birthsinenglandandwalesbirthregistrations -*/ -gen dukfr =. -replace dukfr=62.5 if stm==2009 -replace dukfr=64.0 if stm==2010 -replace dukfr=64.0 if stm==2011 -replace dukfr=64.6 if stm==2012 -replace dukfr=61.7 if stm==2013 -replace dukfr=61.4 if stm==2014 -replace dukfr=61.5 if stm==2015 -replace dukfr=61.2 if stm==2016 -replace dukfr=59.7 if stm==2017 -replace dukfr=57.6 if stm==2018 -replace dukfr=55.8 if stm==2019 -replace dukfr=53.4 if stm==2020 -replace dukfr=54.1 if stm==2021 -replace dukfr=51.8 if stm==2022 -replace dukfr=49.8 if stm>=2023 -lab var dukfr "UK General fertility rate (ONS)" -fre dukfr - - -/************************Number of newborn*************************/ -cap gen child0 = 0 -replace child0=1 if dag<=1 - -cap drop dchpd -bysort idmother swv: egen dchpd= total(child0) if idmother>0 -fre dchpd - -preserve -keep swv idmother dchpd -rename idmother idperson -rename dchpd mother_dchpd -drop if idperson<0 -collapse (max) mother_dchpd, by(idperson swv) -fre mother_dchpd -duplicates report idperson swv -save "$dir_data/mother_dchpd", replace -restore - -merge 1:1 swv idperson using "$dir_data/mother_dchpd" , keepusing (mother_dchpd) -keep if _merge == 1 | _merge == 3 -drop _merge -replace mother_dchpd=0 if dgn==1 -drop dchpd -rename mother_dchpd dchpd -lab var dchpd "Women's number of newborn children" - - -/*****************************In educational age range*************************/ -gen sedag = 1 if dvage >= 16 & dvage <= 29 -replace sedag = 0 if missing(sedag) -la val sedag dummy -la var sedag "Educ age range" - - -/****************************Partnership duration*****************************/ -*idpartner in wave a -clonevar idpartner_a=a_ppid -la var idpartner_a "Unique cross wave identifier of partner in wave a" - -*Interview Date in wave a -cap gen Int_Date_a = mdy(a_intdatm_dv, a_intdatd_dv ,a_intdaty_dv) //interview date in wave a - -*lcmarm month of current marriage - waves 1& 6 only -*lcmary4 year of current marriage- waves 1& 6 only -*lcmcbm month began cohabiting before current marriage- waves 1& 6 only -*lcmcby4 year began cohabiting before current marriage- waves 1& 6 only - -*started partnership in wave a -gen D_Cohab_a = mdy(a_lcmcbm,15,a_lcmcby4) //started cohabitation in wave a -gen D_Mrrg_a = mdy(a_lcmarm,15,a_lcmary4) //started marriage in wave a - -*Partnership duration in wave a -cap gen Cohab_Dur_a = . -replace Cohab_Dur_a = (year(Int_Date_a) - year(D_Cohab_a)) + (month(Int_Date_a) < month(D_Cohab_a)) -replace Cohab_Dur_a = (year(Int_Date_a) - year(D_Mrrg_a)) + (month(Int_Date_a) < month(D_Mrrg_a)) if Cohab_Dur_a ==. & D_Mrrg_a!=. -replace Cohab_Dur_a = 0 if Cohab_Dur_a==. - -/* -*Length of cohabitation since last wave; -forvalues i=1/7 { -cap gen chb`i' = currpart`i' /*cohab no. 1: check if current partner*/ -cap gen chbms`i' = lmcbm`i' /*cohab no. 1: month began cohabitation spell*/ -cap gen chbys`i' = lmcby4`i' /*cohab no. 1: year began cohabitation spell*/ - - if (chbms`i' ==. | chbms`i'<0) & (chbys`i' !=. & chbys`i'>0) { //start of month imputation loop - replace chbms`i'=10 - replace chbms`i'=3 if mod(pno, 2) == 1 - } //end of month imputation loop - - cap gen D_CChb`i' = mdy(chbms`i', 15, chbys`i') if chb`i'==1 //create date variable represented as the number of days since January 1, 1960 - -} //end of if loop - -cap drop D_CChb -egen D_CChb = rowmax(D_CChb1 D_CChb2 D_CChb3 D_CChb4 D_CChb5 D_CChb6 D_CChb7) -*/ - -preserve -keep pidp ppid swv Cohab_Dur_a -replace ppid = . if ppid < 0 - -xtset pidp swv //Set panel -tsspell ppid //Count spells of having partner with the same id. -rename _seq partnershipDuration -replace partnershipDuration = . if ppid == . -//keep if swv == 13 -keep swv pidp partnershipDuration -save "$dir_data/tmp_partnershipDuration", replace -restore - -merge 1:1 swv pidp using "$dir_data\tmp_partnershipDuration", keep(1 3) nogen - -gen dcpyy = partnershipDuration if idpartner >0 -replace dcpyy = partnershipDuration + Cohab_Dur_a if (idpartner >0 & idpartner==idpartner_a) /*for those with same partner id in wave a*/ -la var dcpyy "Years in partnership" -//by swv: fre dcpyy - - -/**************************OECD equivalence scale*****************************/ -//Temporary number of children 0-13 and 14-18 to create household OECD equivalence scale -gen depChild_013 = 1 if (dag >= 0 & dag <= 13) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) -gen depChild_1418 = 1 if (dag >= 14 & dag <= 18) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) -bys swv idhh: egen dnc013 = sum(depChild_013) -bys swv idhh: egen dnc1418 = sum(depChild_1418) -drop depChild_013 depChild_1418 - -gen moecd_eq = . //Modified OECD equivalence scale -replace moecd_eq = 1.5 if dhhtp_c4 == 1 -replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1.5 if dhhtp_c4 == 2 -replace moecd_eq = 1 if dhhtp_c4 == 3 -replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1 if dhhtp_c4 == 4 - -//Drop children variables used to calculate moecd_eq as no longer needed -drop dnc013 dnc1418 - - -/********************************Income variables***************************************/ - -/*Gross personal non-benefit income -Note: This is supposed to mirror UKMOD market income - -1/ fimnlabgrs_dv: total personal monthly labour income gross -2/ fimnpen_dv: monthly amount of net pension income - This includes receipts reported in the income data file where w_ficode equals - [2] “a pension from a previous employer”, or - [3] “a pension from a spouse’s previous employer”. This is assumed to be reported net of tax. -3/ fimnmisc_dv: monthly amount of net miscellaneous income. This includes receipts reported in the income data file where w_ficode equals - [24] "educational grant (not student loan or tuition fee loan)", ==> needs to be removed from market income - [27] "payments from a family member not living here", or - [38] "any other regular payment (not asked in Wave 1)". This is assumed to be reported net of tax. -4/ variables “inc_stp” “inc_tu” “inc_ma” are generated in the UK do-file called “01_prepare_ukhls_pooled_data” - gen inc_stp = frmnthimp_dv if ficode == 1 (NI Retirement/State Retirement (Old Age) Pension) ==> needs to be removed from market income - gen inc_tu = frmnthimp_dv if ficode == 25 (Trade Union / Friendly Society Payment) - gen inc_ma = frmnthimp_dv if ficode == 26 (Maintenance or Alimony) -Instead of (3) and (4) , use : - -gen inc_pp = frmnthimp_dv if ficode == 4 //A Private Pension/Annuity -gen inc_tu = frmnthimp_dv if ficode == 25 //Trade Union / Friendly Society Payment -gen inc_ma = frmnthimp_dv if ficode == 26 //Maintenance or Alimony -gen inc_fm = frmnthimp_dv if ficode == 27 //payments from a family member not living here -gen inc_oth = frmnthimp_dv if ficode == 38 //any other regular payment (not asked in Wave 1) -*/ -recode fimnlabgrs_dv fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth (-9=.) (-1=.) -egen ypnb = rowtotal(fimnlabgrs_dv fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-benefit income -fre ypnb if ypnb <0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero -replace ypnb=0 if ypnb <0 -sum ypnb -assert ypnb>=0 - -/*Gross personal non-employment, non-benefit income*/ -egen yptc = rowtotal(fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-employment, non-benefit income -assert yptc>=0 - -/*Gross personal employment income */ -gen yplgrs = fimnlabgrs_dv -fre yplgrs if yplgrs <0 -replace yplgrs=0 if yplgrs<0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero -assert yplgrs>=0 - - -/*Gross personal non-benefit income for a spouse */ -//tempfile temp_ypnb -preserve -keep swv idperson idhh ypnb -rename ypnb ypnbsp -rename idperson idpartner -save "$dir_data\temp_ypnb", replace -restore -merge m:1 swv idpartner idhh using "$dir_data\temp_ypnb" -keep if _merge == 1 | _merge == 3 -drop _merge - - -/*Household income */ -egen yhhnb = rowtotal(ypnb ypnbsp) if dhhtp_c4 == 1 | dhhtp_c4 == 2 //Household income is sum of individual income and partner's income if coupled -replace yhhnb = ypnb if dhhtp_c4 == 3 | dhhtp_c4 == 4 //If single, household income is equal to individual income - - -/*Disposable income */ -sort hidp -gen ydisp = fimnnet_dv -recode ydisp (missing = 0) -by hidp: egen hhinc = sum(ydisp) -gen res = fihhmnnet1_dv - hhinc -gen mis = (fimnnet_dv>=.)*(age_dv>17.5) -by hidp: egen nmis = sum(mis) -replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) - -drop hhinc res mis nmis -by hidp: egen hhinc = sum(ydisp) -gen res = fihhmnnet1_dv - hhinc -gen mis = (fimnnet_dv>=.)*(age_dv>14.5)*(age_dv<17.5) -by hidp: egen nmis = sum(mis) -replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) -recode ydisp (missing=0) -/* checks -by hidp: egen hhinc2 = sum(ydisp) -gen res2 = fihhmnnet1_dv - hhinc2 -gen chk = (abs(res2) > 0.1)*(fihhmnnet1_dv<.) -order age_dv fihhmnnet1_dv fimnnet_dv ydisp hhinc res res2 mis nmis chk, a(hidp) -tab chk -drop hhinc2 res2 chk -*/ -drop hhinc res mis nmis - -*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 -*/ -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.286 if intdaty_dv == 2024 //yearly index is not available yet// - -*For household income, equivalise and adjust for inflation: -replace yhhnb = (yhhnb/moecd_eq)/CPI - -*Adjust for inflation: -replace ypnb = ypnb/CPI -replace yptc = yptc/CPI -replace yplgrs = yplgrs/CPI -replace ypnbsp = ypnbsp/CPI -replace ydisp = ydisp/CPI - -*Inverse hyperbolic sine transformation: -/*This transformation is useful for data that exhibit highly skewed distributions, -as it can help stabilize variance and normalize the distribution.*/ -gen yhhnb_asinh = asinh(yhhnb) -gen ypnbihs_dv = asinh(ypnb) -gen ypnbihs_dv_sp = asinh(ypnbsp) -gen yptciihs_dv = asinh(yptc) -gen yplgrs_dv = asinh(yplgrs) - - -*Household income Quintiles: -/*Problem: if many observations in yhhnb_asinh have exactly the same value, xtile would group them into a single quintile, causing one or more quintiles to have very few observations. -This results in 2nd quintile being extremely small compared to the first quintile, which probably has many similar values -Adding a very small random amount to yhhnb_asinh can help differentiate tied values enough to distribute them more evenly across quintiles without distorting the data meaningfully. -*/ -//sum yhhnb_asinh -gen yhhnb_asinh_jittered = yhhnb_asinh + runiform() * 1e-5 - -cap drop ydses* -forvalues stm=2009/2024 { -xtile ydses_c5_`stm' = yhhnb_asinh_jittered if depChild != 1 & stm==`stm', nq(5) -bys idhh: egen ydses_c5_tmp_`stm' = max(ydses_c5_`stm') if stm==`stm' -replace ydses_c5_`stm' = ydses_c5_tmp_`stm' if missing(ydses_c5_`stm') -drop ydses_c5_tmp_`stm' -} -egen ydses_c5 = rowtotal(ydses_c5_2009 ydses_c5_2010 ydses_c5_2011 ydses_c5_2012 ydses_c5_2013 ydses_c5_2014 ydses_c5_2015 ydses_c5_2016 ydses_c5_2017 ydses_c5_2018 ydses_c5_2019 /// -ydses_c5_2020 ydses_c5_2021 ydses_c5_2022 ydses_c5_2023 ydses_c5_2024) -recode ydses_c5 (0=-9) -drop ydses_c5_2* -//bys stm: fre ydses_c5 -//fre ydses_c5 - - -*Difference between own and spouse's gross personal non-benefit income -//gen ynbcpdf_dv = asinh(sinh(ypnbihs_dv) - sinh(ypnbihs_dv_sp)) -//Keep as simple difference between the two for compatibility with estimates -gen ynbcpdf_dv = ypnbihs_dv - ypnbihs_dv_sp -recode ynbcpdf_dv (.=-999) if idpartner <0 -recode ynbcpdf_dv (.=-999) -//sum ynbcpdf_dv - -la var ydses_c5 "Household income quintiles" -la var ypnbihs_dv "Gross personal non-benefit income" -la var yptciihs_dv "Gross personal non-employment, non-benefit income" -la var yplgrs_dv "Gross personal employment income" -la var ynbcpdf_dv "Difference between own and spouse's gross personal non-benefit income" -la var ydisp "Disposable income (individual)" - -*Gross-to-net ratio -gen gross_net_ratio = fimngrs_dv/fimnnet_dv -replace gross_net_ratio = 1 if missing(gross_net_ratio) -replace gross_net_ratio = 0 if gross_net_ratio<0 - -/*Gross personal capital income -1/ fimninvnet_dv: investment income -2/ fimnmisc_dv: net miscellaneous income. [24] educational grant (not student loan or tuition fee loan), [27] payments from a family member not living here, or [38] any other regular payment (not asked in Wave 1). -3/ fimnprben_dv: net private benefit income. [25] €œtrade union / friendly society payment, [26] œmaintenance or alimony€, or [35] €œsickness and accident insurance€. -Instead of (2), use : -gen inc_fm = frmnthimp_dv if ficode == 27 //payments from a family member not living here -gen inc_oth = frmnthimp_dv if ficode == 38 //any other regular payment (not asked in Wave 1) -*/ -recode fimninvnet_dv fimnprben_dv inc_fm inc_oth (-1=.) (-9=.) -egen ypncp_temp = rowtotal (fimninvnet_dv inc_fm inc_oth fimnprben_dv) -assert ypncp_temp>=0 -cap gen ypncp = asinh( ypncp_temp*gross_net_ratio*(1/CPI) ) -lab var ypncp "Gross personal non-employment capital income" -//sum ypncp - - -/* Private pension income -fimnpen_dv: monthly amount of net pension income -inc_pp = frmnthimp_dv if ficode == 4 //A Private Pension/Annuity -*/ -egen ypnoab_lvl = rowtotal(fimnpen_dv inc_pp) -assert ypnoab_lvl>=0 -cap gen ypnoab = asinh( ypnoab_lvl *gross_net_ratio*(1/CPI) ) -lab var ypnoab "Gross personal private pension income" -//sum ypnoab - - -/******************************Home ownership dummy***************************/ -*Dhh_owned is the definition used in the initial population and in the model predicting house ownership -*in the homeownership process of the simulation. -bys swv: fre hsownd -gen dhh_owned=0 -replace dhh_owned=1 if hsownd>=1 & hsownd<=3 -lab var dhh_owned "Home ownership dummy" - - -/******************************Disability benefit*****************************/ -/*If any of bendis1-bendis3, bendis5-bendis12, or bendis97 = 1 then received benefits - -Availability of vars across waves: - -bendis2 Employment and Support Allowance indresp 12345678910111213 -bendis3 Severe Disablement Allowance indresp 12345678910111213 - -bendis5 Disability Living Allowance indresp 12345678910111213 -bendis6 return to work credit? indresp 12345 -bendis7 Attendance Allowance indresp 12345678910111213 -bendis8 Industrial Injury Disablement Benefit indresp 12345678910111213 -bendis9 war disablement pension? indresp 12345 -bendis10 Sickness and Accident Insurance indresp 12345678910111213 -bendis11 mc universal credit indresp 1245 -bendis12 Personal Independence Payments indresp 345678910111213 - -bendis97 Any other disability related benefit or payment indresp 345678910111213 -*/ -gen bdi = 0 -foreach var in 2 3 5 6 7 8 9 10 11 12 97 { -replace bdi = 1 if bendis`var' == 1 -} -la val bdi dummy -la var bdi "Disability benefits" - - -/******************************Unemployment dummy***************************/ -gen unemp = (jbstat==3) -label variable unemp "Labour status: unemployed" - -/***************************** UC and Non-UC receipt ***********************/ - -gen econ_benefits = . -replace econ_benefits = 1 if fihhmnsben_dv > 0 & fihhmnsben_dv!=. -replace econ_benefits = 0 if fihhmnsben_dv==0 -label var econ_benefits "Household income includes any benefits" - -replace benefits_uc=0 if benefits_uc==. -* Ensure all with known UC receipt also are benefit recipients -replace econ_benefits=1 if benefits_uc==1 - -* Generate benefits marker without UC -gen econ_benefits_nonuc=econ_benefits -replace econ_benefits_nonuc=0 if benefits_uc==1 -label var econ_benefits_nonuc "Household income includes non-UC benefits" - -* Generate benefits marker with UC -gen econ_benefits_uc=econ_benefits -replace econ_benefits_uc=0 if benefits_uc==0 -label var econ_benefits_uc "Household income includes UC benefits" - - -/***************************** Financial Distress ***************************************************************************/ -// This is a measure of subjective financial distress, corresponding to answering 4 or 5 to the question below: -// How well would you say you yourself are managing financially these days? Would you say you are... -// 1. Living comfortably -// 2. Doing alright -// 3. Just about getting by -// 4. Finding it quite difficult -// 5. Finding it very difficult - -recode finnow (1 2 3 = 0) (4 5 = 1) (else = .), gen(financial_distress) -lab var financial_distress "DEMOGRAPHIC: Financial Distress" - -// Impute financial distress when missing -preserve -drop if dgn < 0 | dag < 0 | dhe < 0 | drgn1 < 0 -eststo predict_financial_distress: logit financial_distress c.dag i.dgn i.drgn1 i.swv i.dhe c.dls i.unemp i.dhh_owned c.yhhnb_asinh, vce(robust) -restore -estimates restore predict_financial_distress -predict financial_distress_prediction - -replace financial_distress = 1 if missing(financial_distress) & financial_distress_prediction >= 0.5 -replace financial_distress = 0 if missing(financial_distress) & financial_distress_prediction < 0.5 - - -/*****************Was in continuous education sample***************************/ -//Generated from age_dv and ded variables. 1 includes first instance of not being in education. -/*This variable is created in Cara’s SAS file in the following way: -if 16 le age_dv le 29 then do; - if inEducStart = 1 and EDU_End in (0,1) then sedcsmpl = 1; -end; -if sedcsmpl = . then sedcsmpl = 0; -*/ -/* sample: being observed in education in all preceding periods t-1,t-2,t-n”?, where n is the number of observations of a particular individual we have*/ -sort idperson swv -cap gen sedcsmpl=0 -replace sedcsmpl = 1 if (dag>=16 & dag<=29) & l.ded==1 /*was in continious education in the previous wave */ -lab var sedcsmpl "SYSTEM: Continuous education sample" -lab define sedcsmpl 1 "Aged 16-29 and were in continuous education" -lab values sedcsmpl sedcsmpl - - -/**********************Return to education sample*****************************/ -//Generated from age_dv and drtren -gen sedrsmpl =0 -replace sedrsmpl = 1 if (dag>=16 & dag<=35 & ded==0) -lab var sedrsmpl "SYSTEM : Return to education sample" -lab define sedrsmpl 1 "Aged 16-35 and not in continuous education" -lab values sedrsmpl sedrsmpl - -/**********************In Continuous education sample*************************/ -//Generated from sedcsmpl and ded variables. Sample: Respondents who were in continious education and left it. -cap gen scedsmpl = 0 -replace scedsmpl=1 if sedcsmpl==1 & ded == 0 /*were but currently not in continuous full-time education*/ -lab var scedsmpl "SYSTEM : Not in continuous education sample" -lab define scedsmpl 1 "Left continuous education" -lab values scedsmpl scedsmpl - - -/*****************************Weights*****************************************/ -/*dimlwt indinus_l DEMOGRAPHIC : Individual Longitudinal Weight - Main survey -Longitudinal individual main survey weight from indinus_lw (waves 2 onward) variable*/ -gen dimlwt = indinus_lw -recode dimlwt (.=0) -lab var dimlwt "DEMOGRAPHIC : Individual Longitudinal Weight - Main survey" -/* -disclwt indscus_lw DEMOGRAPHIC : Individual Longitudinal Weight - Self-Completion -Longitudinal individual self-completion weight from indscus_lw (waves 2 onward) variable. -*/ -gen disclwt = indscus_lw -recode disclwt (.=0) -lab var disclwt "DEMOGRAPHIC : Individual Longitudinal Weight - Self-Completion" -/*dimxwt indpxub_xw; indpxui_xw DEMOGRAPHIC : Individual Cross-sectional Weight - Main survey -Cross-sectional individual main survey weight from indpxub_xw (waves 2-5) and indpxui_xw (waves 6-13) variables -*/ -gen dimxwt = indpxub_xw -replace dimxwt = indpxui_xw if missing(dimxwt) -replace dimxwt = indpxg2_xw if missing(dimxwt) -lab var dimxwt "DEMOGRAPHIC : Individual Cross-sectional Weight - Main survey" -/*dhhwt hhdenub_xw; hhdenui_xw DEMOGRAPHIC : Household Cross-sectional Weight -Cross-sectional household weight from hdenub_xw (waves 2-7) and hhdenui_xw (waves 6-13) -*/ -gen dhhwt = hhdenub_xw -replace dhhwt = hhdenui_xw if missing(dhhwt) -replace dhhwt = hhdeng2_xw if missing(dhhwt) -lab var dhhwt "DEMOGRAPHIC : Household Cross-sectional Weight" - - -/*********************** household level weight *******************************/ -clonevar dwt= dhhwt -bys swv idhh: egen max_dwt = max(dhhwt ) -replace dwt = max_dwt if missing(dhhwt ) -replace dwt = 0 if missing(dwt) - - -/***************************Keep required variables***************************/ -keep ivfio idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// - ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex dcpagdf dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhm dhm_ghq dimlwt disclwt /// - dimxwt dhhwt jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 month scghq2_dv ydisp /// - ypnbihs_dv yptciihs_dv yplgrs_dv ynbcpdf_dv ypncp ypnoab swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der adultchildflag /// - econ_benefits econ_benefits_nonuc econ_benefits_uc /// - sedcsmpl sedrsmpl scedsmpl dhh_owned dukfr dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypnoab_lvl *_flag Int_Date dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp financial_distress - -sort swv idhh idperson - - -/**************************Recode missing values*******************************/ -foreach var in idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// - ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhm dhm_ghq /// - jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 scghq2_dv /// - ypnbihs_dv yptciihs_dv yplgrs_dv swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der dhh_owned /// - econ_benefits econ_benefits_nonuc econ_benefits_uc /// - scghq2_dv_miss_flag dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypnoab_lvl *_flag dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp { - qui recode `var' (-9/-1=-9) (.=-9) -} - - - - -*recode missings in weights to zero. -foreach var in dimlwt disclwt dimxwt dhhwt { - qui recode `var' (.=0) (-9/-1=0) -} - -*add potential hourly earnings -gen potential_earnings_hourly = 0 -gen l1_potential_earnings_hourly = 0 - -replace potential_earnings_hourly = sinh(yplgrs_dv)/(lhw*4.33) if les_c4 == 1 -replace l1_potential_earnings_hourly = potential_earnings_hourly - -replace potential_earnings_hourly = 0 if missing(potential_earnings_hourly) -replace l1_potential_earnings_hourly = 0 if missing(l1_potential_earnings_hourly) - -* initialise wealth to missing -gen liquid_wealth = -9 -gen tot_pen = -9 -gen nvmhome = -9 -gen smp = -9 -gen rnk = -9 -gen mtc = -9 - -*check for duplicates in the pooled dataset -duplicates tag idperson idhh swv, gen(dup) -fre dup -drop if dup == 1 //0 duplicates -drop dup -isid idperson idhh swv - - -/******************************************************************************* -* save the whole pooled dataset that will be used for regression estimates -*******************************************************************************/ -save "$dir_data\ukhls_pooled_all_obs_02.dta", replace -cap log close - - -/************************************************************************************** -* clean-up and exit -*************************************************************************************/ -#delimit ; -local files_to_drop - father_edu.dta - mother_dchpd.dta - mother_edu.dta - temp.dta - temp_age.dta - temp_dagpns.dta - temp_deh.dta - temp_dgn.dta - temp_dhe.dta - temp_dlltsd.dta - temp_father_dag.dta - temp_lesc3.dta - temp_lesc4.dta - temp_mother_dag.dta - temp_ypnb.dta - tmp_partnershipDuration.dta - temp_dot01.dta - - ; -#delimit cr // cr stands for carriage return - -foreach file of local files_to_drop { - erase "$dir_data/`file'" -} - - +*************************************************************************************** +* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* DO-FILE NAME: 02_create_UKHLS_variables.do +* DESCRIPTION: This file creates initial population variables in the UKHLS pooled sample +*************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* AUTHORS: Daria Popova, Justin van de Ven +* LAST UPDATE: 18 July 2025 DP +* NOTE: Called from 00_master.do - see master file for further details +* Use -9 for missing values +*************************************************************************************** + + +***************************************************************************************************** +cap log close +log using "${dir_log}/02_create_UKHLS_variables.log", replace +***************************************************************************************************** + +use "$dir_data\ukhls_pooled_all_obs_01.dta", clear +lab define dummy 1 "yes" 0 "no" + + +/************************************************************************************** +* SAMPLE +*************************************************************************************/ + +***Drop IEMB: +fre hhorig +/*hhorig -- Sample origin, household +1 ukhls gb 2009-10 +2 ukhls ni 2009-10 +3 bhps gb 1991 +4 bhps sco 1999 +5 bhps wal 1999 +6 bhps ni 2001 +7 ukhls emboost 2009-10 +8 ukhls iemb 2014-15 +21 ukhls gps2 gb 2022-2023 +22 ukhls gps2 ni 2022-2023 +*/ +drop if hhorig == 8 + +***Keep everyone at this stage as we need info on partners and parents who do not have full/proxi interviews in some waves*/ +fre ivfio +/* +ivfio -- Individual level outcome +1 full interview +2 proxy interview +9 lost capi intvw +10 refusal +11 other non-intvw +12 moved +14 ill/away during survey period +15 too infirm/elderly +16 language difficulties +18 unknown eligibility +21 youth interview +22 youth: refusal +24 child under 10 +25 youth non-interview +53 non-cont/non-int hh +63 chd <16 non-cont/non-int hh +74 ineligible - aged 10-15 (iemb only) +81 prev wave adamant refusal +84 Ineligible for individual interview as nr in last 3 waves + +keep if ivfio == 1 | ivfio == 2 | ivfio == 21 | ivfio == 24 +fre ivfio +*/ + + +/************************************************************************************** +* CREATE REQUIRED VARIABLES +*************************************************************************************/ + + +/*****************************SYSTEM VARIABLES*********************************/ +*swv: Data collection wave (set to match wave defined in macro at the beginning) +//gen swv = $wvno +la var swv "Data collection wave" + +*stm: Year +gen stm = intdaty_dv +la var stm "Interview year" +//bysort swv: fre stm + +*interview date +gen Int_Date = mdy(intdatm_dv, intdatd_dv ,intdaty_dv) +format Int_Date %d + + +/**************************** HOUSEHOLD IDENTIFIER*****************************/ +clonevar idhh= hidp +la var idhh "Household identifier" + + +/********************************* INDIVIDUALS ID*****************************/ +clonevar idperson=pidp +la var idperson "Unique cross wave identifier" + + +******************************************************************************* +xtset idperson swv //Set panel + +/********************************** gender*************************************/ +gen dgn=sex_dv +la var dgn "Gender" +recode dgn 2=0 //dgn = 0 is female, 1 is male +lab define dgn 1 "men" 0 "women" +lab val dgn dgn + +// Impute missing values using lagged/lead values up to 13 previous waves +forvalues i = 1/13 { + replace dgn = l`i'.dgn if dgn==-9 & (l`i'.dgn !=-9) & idperson==l`i'.idperson + } +forvalues i = 1/13 { + replace dgn = f`i'.dgn if dgn==-9 & (f`i'.dgn !=-9) & idperson==f`i'.idperson + } +//fre dgn + + +/***************************************ID PARTNER*****************************/ +clonevar idpartner=ppid +la var idpartner "Unique cross wave identifier of partner" + + +/**********************ID FATHER (includes natural/step/adoptive)*************/ +clonevar idfather= fnspid +la var idfather "Father unique identifier" + + +/************************ID MOTHER (includes natural/step/adoptive)***********/ +clonevar idmother=mnspid +la var idmother "Mother unique identifier" + + +/************************ AGE *************************************************/ +gen dag= age_dv +sort idperson swv + +// Impute missing values using lagged/lead values up to 13 previous waves +forvalues i = 1/13 { + replace dag = l`i'.dag+`i' if dag==-9 & (l`i'.dag !=-9) & idperson==l`i'.idperson + } +forvalues i = 1/13 { + replace dag = f`i'.dag-`i' if dag==-9 & (f`i'.dag !=-9) & idperson==f`i'.idperson + } +//fre dag +recode dag (-1=-9) + +gen dagsq = dag^2 +replace dagsq =-9 if dag==-9 +la var dagsq "Age squared" + + +/****************************************Union*********************************/ +*Generate union variable to indicate if there is a spouse +*Partnerid are later filled in using ppno information, so dun should distinguish between spouse and just living together +gen dun = 0 +replace dun = 1 if sppid > 0 +la var dun "=1 if has spouse" +lab val dun dummy +//fre dun + + +/************************* region (NUTS 1) ***********************************/ +//fre gor_dv +gen drgn1=-9 +replace drgn1=1 if gor_dv==1 +replace drgn1=2 if gor_dv==2 +replace drgn1=4 if gor_dv==3 // following FRS, code 3 is not used +replace drgn1=5 if gor_dv==4 +replace drgn1=6 if gor_dv==5 +replace drgn1=7 if gor_dv==6 +replace drgn1=8 if gor_dv==7 +replace drgn1=9 if gor_dv==8 +replace drgn1=10 if gor_dv==9 +replace drgn1=11 if gor_dv==10 +replace drgn1=12 if gor_dv==11 +replace drgn1=13 if gor_dv==12 + +la var drgn1 "Region" +lab define drgn1 /// +1 "North East" /// +2 "North West" /// +4 "Yorkshire and the Humber" /// +5 "East Midlands" /// +6 "West Midlands" /// +7 "East of England" /// +8 "London" /// +9 "South East" /// +10 "South West" /// +11 "Wales" /// +12 "Scotland" /// +13 "Northern Ireland" +lab values drgn1 drgn1 + + +/***********************country***********************************************/ +gen dct=15 +la var dct "Country code: UK" + + +/**********************Partner's gender***************************************/ +duplicates report idpartner swv if idpartner >0 +/* +Duplicates in terms of idpartner swv + +copies observations surplus + +1 385784 0 +*/ + +preserve +keep swv idperson dgn +rename idperson idpartner +rename dgn dgnsp +save "$dir_data/temp_dgn", replace +restore + +merge m:1 idpartner swv using "$dir_data/temp_dgn" /*m:1 because some people have idpartner=-9*/ +la var dgnsp "Partner's gender" +keep if _merge==1 | _merge == 3 //matched N=385,780 (_merge==3) +drop _merge +lab values dgnsp dgn + +sort idperson swv +// Impute missing values using lagged values of dgnsp up to 13 previous waves +forvalues i = 1/13 { + replace dgnsp = l`i'.dgnsp if dgnsp==-9 & (l`i'.dgnsp!=-9) & idpartner == l`i'.idpartner + } +forvalues i = 1/13 { + replace dgnsp = f`i'.dgnsp if dgnsp==-9 & (f`i'.dgnsp!=-9) & idpartner == f`i'.idpartner + } +//fre dgnsp if idpartner>0 +replace dgnsp=-9 if missing(dgnsp) & idpartner>0 + +/***************** Partner's age***********************************************/ +preserve +keep swv idperson dag +rename idperson idpartner +rename dag dagsp +save "$dir_data/temp_age", replace +restore + +merge m:1 swv idpartner using "$dir_data/temp_age" +la var dagsp "Partner's age" +keep if _merge == 1 | _merge == 3 //matched N=385,780 (_merge==3) +drop _merge + +sort idperson swv +// Impute missing values using lagged values of dagsp up to 13 previous waves +forvalues i = 1/13 { + replace dagsp = l`i'.dagsp if dagsp ==-9 & (l`i'.dagsp !=-9) & idpartner == l`i'.idpartner + } +forvalues i = 1/13 { + replace dagsp = f`i'.dagsp if dagsp ==-9 & (f`i'.dagsp !=-9) & idpartner == f`i'.idpartner + } +//fre dagsp if idpartner>0 +replace dagsp=-9 if missing(dagsp) & idpartner>0 + +/**********************************Health status*******************************/ +*Use scsf1 variable, code negative values to missing, reverse code so 5 = excellent and higher number means better health + +*Replace with values of ypsrhlth for youth: note that info on youth health is not available in every wave +bys swv: fre scsf1 +bys swv: fre ypsrhlth +replace scsf1 = ypsrhlth if (scsf1 == . | scsf1 < 0) & (ypsrhlth<. & ypsrhlth>0) + +replace scsf1 = . if scsf1 < 0 +recode scsf1 (5 = 1 "Poor") /// + (4 = 2 "Fair") /// + (3 = 3 "Good") /// + (2 = 4 "Very good") /// + (1 = 5 "Excellent") /// + , into(dhe) +la var dhe "Health status" + +*Imputation for all: +fre dag if missing(dhe) + +*ordered probit model to replace linear regression +recode dgn dag dagsq drgn1 (-9=.) , gen (dgn2 dag2 dagsq2 drgn12) +fre dgn2 dag2 dagsq2 drgn12 +xi: oprobit dhe i.dgn2 dag2 dagsq ib8.drgn12 i.swv if dhe < ., vce(robust) +predict pred_probs1 pred_probs2 pred_probs3 pred_probs4 pred_probs5, pr + +//Identify the category with the highest predicted probability +egen max_prob = rowmax(pred_probs1 pred_probs2 pred_probs3 pred_probs4 pred_probs5) +//Impute missing values of dhe based on predicted probabilities +gen imp_dhe = . +replace imp_dhe = 1 if max_prob == pred_probs1 +replace imp_dhe = 2 if max_prob == pred_probs2 +replace imp_dhe = 3 if max_prob == pred_probs3 +replace imp_dhe = 4 if max_prob == pred_probs4 +replace imp_dhe = 5 if max_prob == pred_probs5 + +sum imp_dhe if missing(dhe) & dag>0 & dag<18 +sum imp_dhe if !missing(dhe) & dag>0 & dag<18 +sum imp_dhe if missing(dhe) & dag>=18 +sum imp_dhe if !missing(dhe) & dag>=18 + +cap gen dhe_flag = missing(dhe) +lab var dhe_flag "=1 if dhe is imputed" +replace dhe = round(imp_dhe) if missing(dhe) + +bys dhe_flag: fre dhe if dag<=18 +bys dhe_flag: fre dhe if dag>18 + +drop dgn2 dag2 dagsq2 drgn12 _Idgn2_1 _Iswv_* pred_probs* max_prob imp_dhe + + +**************************Partner's health status******************************/ +preserve +keep swv idperson dhe dhe_flag +rename idperson idpartner +rename dhe dhesp +rename dhe_flag dhesp_flag +save "$dir_data/temp_dhe", replace +restore + +merge m:1 swv idpartner using "$dir_data/temp_dhe" +la var dhesp "Partner's health status" +keep if _merge == 1 | _merge == 3 //matched 385,780 (_merge==3) +drop _merge + +cap lab define dhe 1 "Poor" 2 "Fair" 3 "Good" 4 "Very good" 5 "Excellent" +lab values dhesp dhe +//fre dhesp if idpartner>0 +replace dhesp=-9 if missing(dhesp) & idpartner>0 + + +/*****************************Subjective well-being ***************************/ +/*dhm scghq1_dv "DEMOGRAPHIC: Subjective wellbeing (GHQ): Likert Scale from 0 to 36, assumed to be continuous in the simulation." +This measure converts valid answers to 12 questions of the General Health Questionnaire (GHQ) to a single scale by recoding so that +the scale for individual variables runs from 0 to 3 instead of 1 to 4, and then summing, +giving a scale running from 0 (the least distressed) to 36 (the most distressed). +Values for children (missing in the UKHLS) are imputed using a regression model.*/ +gen dhm = scghq1_dv +replace dhm = . if scghq1_dv <0 +la var dhm "DEMOGRAPHIC: Subjective wellbeing (GHQ)" +fre dhm if dag>0 & dag<=18 +fre dhm if dag>0 & dag<16 + +*Imputation for all: +fre dag if missing(dhm) + +preserve +drop if dgn < 0 | dag<0 | dhe<0 +eststo predict_dhm: reg dhm c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. +restore +estimates restore predict_dhm +predict dhm_prediction +fre dhm_prediction + +gen dhm_flag = missing(dhm) +replace dhm = round(dhm_prediction) if missing(dhm) +bys dhm_flag : sum dhm + +/**************************Subjective well-being: GHQ 0-12 score *****************************/ +/*dhm_ghq scghq2_dv "DEMOGRAPHIC: Subjective wellbeing (GHQ): rescaled to 0-12, assumed to be continuous" +This measure converts valid answers to 12 questions of the General Health Questionnaire (GHQ) to a +single scale by recoding the values of individual variables of 1 and 2 to 0, and values of 3 and 4 to 1 before summing them. +This produces a scale that ranges from 0 (indicating the least amount of distress) to 12 (indicating the greatest amount of distress). +*/ +gen dhm_ghq = scghq2_dv +replace dhm_ghq = . if scghq2_dv <0 +la var dhm_ghq "DEMOGRAPHIC: Subjective wellbeing (GHQ): 0-12 score" +* fre dhm_ghq if dag>0 & dag<=18 +* fre dhm_ghq if dag>0 & dag<16 +gen scghq2_dv_miss_flag = (scghq2_dv == .) + +*Imputation for all: +* fre dag if missing(dhm_ghq) + +* fre scghq2_dv +recode scghq2_dv (-9/-1 . = .) +preserve +drop if dgn < 0 | dag<0 | dhe<0 +* eststo predict_dhm_ghq: reg dhm_ghq c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. +zinb dhm_ghq c.dag i.dgn i.swv i.dhe, inflate(dhm_ghq c.dag i.dgn i.swv i.dhe) vce(robust) // Physical health has a big impact, so included as covariate. +restore + +scalar lnalpha = _b[/lnalpha] +scalar theta = 1/exp(lnalpha) + +predict mu_hat, n // Count component mean (μ) +predict pi_hat, pr // Zero-inflation probability (π) + +gen u = runiform() +gen pred_score = . +replace pred_score = 0 if u < pi_hat // Structural zeros +replace pred_score = rnbinomial(theta, theta/(theta + mu_hat)) if u >= pi_hat // NB samples +replace pred_score = 12 if pred_score > 12 +replace pred_score = 0 if pred_score < 0 + + +cap gen dhm_ghq = 0 +replace dhm_ghq = scghq2_dv +lab var dhm_ghq "DEMOGRAPHIC: Subjective wellbeing (GHQ): Caseness" + +gen dhm_ghq_flag = missing(dhm_ghq) +replace dhm_ghq = round(pred_score) if missing(dhm_ghq) + +/* Alternative method of GHQ caseness - binary cutoff at scghq2_dv <4 +/**************************Subjective wellbeing (GHQ): Caseness ****************************** +0: not psychologically distressed, scghq2_dv < 4 +1: psychologically distressed, scghq2_dv >= 4 +This measure converts valid answers to 12 questions of the General Health Questionnaire (GHQ) to a single scale by recoding 1 and 2 values +on individual variables to 0, and 3 and 4 values to 1, and then summing, giving a scale running from 0 (the least distressed) to 12 +(the most distressed). A binary indicator is then created, equal to 1 for values >= 4.*/ +fre scghq2_dv +recode scghq2_dv (-9/-1 . = .) +gen scghq2_dv_miss_flag = (scghq2_dv == .) + +*imputation for all +preserve +drop if dgn < 0 | dag<0 | dhe<0 +eststo predict_scghq2: reg scghq2_dv c.dag i.dgn i.swv i.dhe if scghq2_dv>=0, vce(robust) +restore + +estimates restore predict_scghq2 +predict scghq2_prediction +fre scghq2_prediction + +cap gen scghq2_dv_flag=missing(scghq2_dv) +replace scghq2_dv = round(scghq2_prediction) if missing(scghq2_dv) +bys scghq2_dv_flag: fre scghq2_dv +recode scghq2_dv(-1=0) + +*create a dummy var +cap gen dhm_ghq = . +replace dhm_ghq = 0 if scghq2_dv>=0 & scghq2_dv<4 +replace dhm_ghq = 1 if scghq2_dv>=4 +lab var dhm_ghq "DEMOGRAPHIC: Subjective wellbeing (GHQ): Caseness" +//fre dhm_ghq +*/ + +/****************************Self-rated health health - mental and physical component summary scores SF12 ***************************/ +/*SF-12 Mental Component Summary (MCS). Continuous scale with a range of 0 (low functioning) to 100 (high functioning)*/ +cap gen dhe_mcs = sf12mcs_dv +replace dhe_mcs = . if sf12mcs_dv < 0 +lab var dhe_mcs "DEMOGRAPHIC: Subjective Self-rated health - Mental (SF12 MCS)" + +*Imputation for all: +preserve +drop if dgn < 0 | dag<0 | dhe<0 +eststo predict_dhe_mcs: reg dhe_mcs c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. +restore +estimates restore predict_dhe_mcs +predict dhe_mcs_prediction +fre dhe_mcs_prediction + +gen dhe_mcs_flag = missing(dhe_mcs) +replace dhe_mcs = round(dhe_mcs_prediction) if missing(dhe_mcs) +bys dhe_mcs_flag : sum dhe_mcs + + +/*SF-12 Physical Component Summary (PCS). Continuous scale with a range of 0 (low functioning) to 100 (high functioning)*/ +cap gen dhe_pcs = sf12pcs_dv +replace dhe_pcs = . if sf12pcs_dv < 0 +lab var dhe_pcs "DEMOGRAPHIC: Subjective Self-rated health - Physical (SF12 PCS)" + +*Imputation for all: +preserve +drop if dgn < 0 | dag<0 | dhe<0 +eststo predict_dhe_pcs: reg dhe_pcs c.dag i.dgn i.swv i.dhe, vce(robust) // Physical health has a big impact, so included as covariate. +restore +estimates restore predict_dhe_pcs +predict dhe_pcs_prediction +fre dhe_pcs_prediction + +gen dhe_pcs_flag = missing(dhe_pcs) +replace dhe_pcs = round(dhe_pcs_prediction) if missing(dhe_pcs) +bys dhe_pcs_flag : sum dhe_pcs + + +/************Partner's Self-rated health health - mental and physical component***************/ +preserve +keep swv idperson dhe_mcs dhe_pcs +rename idperson idpartner +rename dhe_mcs dhe_mcssp +rename dhe_pcs dhe_pcssp + +save "$dir_data/temp_dhe", replace +restore + +merge m:1 swv idpartner using "$dir_data/temp_dhe" +la var dhe_mcssp "Partner's Self-rated health health - mental component" +la var dhe_pcssp "Partner's Self-rated health health - physical component" +keep if _merge == 1 | _merge == 3 +drop _merge +replace dhe_mcssp=-9 if missing(dhe_mcssp) & idpartner>0 +replace dhe_pcssp=-9 if missing(dhe_pcssp) & idpartner>0 +//fre dhe_mcssp dhe_pcssp if idpartner>0 + + +/***************************** Life Satisfaction ***************************************************************************/ +/* Life satisfaction, self report. Continuous scale 0 to 7. */ + + +gen dls = sclfsato +replace dls = . if sclfsato < 0 +lab var dls "DEMOGRAPHIC: Life Satisfaction" +// fre dls if dag>0 & dag<16 + +preserve +drop if dgn < 0 | dag<0 | dhe<0 +eststo predict_dls: reg dls c.dag i.dgn i.swv i.dhe c.dhm c.dhe_mcs, vce(robust) // Physical and mental health have a big impact, so included as covariate. +restore +estimates restore predict_dls +predict dls_prediction +// fre dls_prediction + +gen dls_flag = missing(dls) +replace dls = round(dls_prediction) if missing(dls) +bys dls_flag : sum dls + + +/****************************Ehtnicity*****************************************/ +/*Ethnic group derived from multiple sources such as self-reported as an adult, self-reported as a youth, reported by a household member, and ethnic group of biological parents. +ethn_dv -- Ethnic group (derived from multiple sources) + -9 missing + 1 british/english/scottish/welsh/northern irish + 2 irish + 3 gypsy or irish traveller + 4 any other white background + 5 white and black caribbean + 6 white and black african + 7 white and asian + 8 any other mixed background + 9 indian + 10 pakistani + 11 bangladeshi + 12 chinese + 13 any other asian background + 14 caribbean + 15 african + 16 any other black background + 17 arab + 97 any other ethnic group +*/ +*ONS style definition (but missing is kept as a separate category) +cap gen dot01 = . +replace dot01 = 1 if ethn_dv>=1 & ethn_dv <=4 //white// +replace dot01 = 2 if ethn_dv>=5 & ethn_dv<=8 //mixed // +replace dot01 = 3 if ethn_dv>=9 & ethn_dv<=13 //asian// +replace dot01 = 4 if ethn_dv>=14 & ethn_dv<=16 //black// +replace dot01 = 5 if ethn_dv==17 | ethn_dv==97 //other, arab// +replace dot01 = 6 if ethn_dv==-9 //missing// +lab var dot01 "Ethnicity" +cap label define dot01 1 "White" 2 "Mixed or Multiple ethnic groups" 3 "Asian or Asian British" 4 "Black, Black British, Caribbean, or African" 5 "Other ethnic group" 6 "Missing" +label values dot01 dot01 +//fre dot01 + +/************Partner's ethnicity***************/ +preserve +keep swv idperson dot01 +rename idperson idpartner +rename dot01 dot01_sp +save "$dir_data/temp_dot01", replace +restore + +merge m:1 swv idpartner using "$dir_data/temp_dot01" +la var dot01_sp "Partner's Ethnicity (6 cat)" +keep if _merge == 1 | _merge == 3 +drop _merge +replace dot01_sp=6 if missing(dot01_sp) & idpartner>0 +replace dot01_sp=-69 if missing(dot01_sp) +fre dot01_sp + +//impute missing status of a respondent by spouses status if not missing +fre dot01_sp if dot01==6 +replace dot01=dot01_sp if dot01==6 & (dot01_sp>=1 & dot01_sp<=5) //(9,499 real changes made) out of 21914 = 43% of missing is imputed by partner's ethnicity + + +* Ethnicity definition used in regression estimates +cap gen dot = . +replace dot = 1 if ethn_dv>=1 & ethn_dv <=4 //white// +replace dot = 2 if ethn_dv>=9 & ethn_dv<=13 //asian// +replace dot = 3 if ethn_dv>=14 & ethn_dv<=16 //black// +replace dot = 4 if ethn_dv==17 | ethn_dv==97 | ethn_dv==-9 | (ethn_dv>=5 & ethn_dv<=8) //arab, mixed, other and missing +lab var dot "Ethnicity" +cap label define dot 1 "White" 2 "Asian or Asian British" 3 "Black, Black British, Caribbean, or African" 4 "Other or missing ethnic group" +label values dot dot +//fre dot + + + +/******************************Education status*******************************/ +*Use hiqual variable, code negative values to missing +*Low education: Other qualification, no qualification +*Medium education: Other higher degree, A-level etc, GCSE etc +*High education: Degree +replace hiqual_dv = . if hiqual_dv < 0 +sort idperson swv + +// Impute missing values using lagged values of up to 13 previous waves +forvalues i = 1/13 { +replace hiqual_dv = l`i'.hiqual_dv if missing(hiqual_dv) & !missing(l`i'.hiqual_dv) & jbstat != 7 +} +recode hiqual_dv (1 = 1 "High") /// + (2 3 4 = 2 "Medium") /// + (5 9 = 3 "Low") /// + , into(deh_c3) +la var deh_c3 "Education status" +label list deh_c3 + +replace deh_c3 = 3 if dag < 16 & dag>-9 //Children have low level of education until they leave school +//fre deh_c3 + + +/***************************Partner's education status*************************/ +preserve +keep swv idperson deh_c3 +rename idperson idpartner +rename deh_c3 dehsp_c3 +save "$dir_data/temp_deh", replace +restore + +merge m:1 swv idpartner using "$dir_data/temp_deh" +la var dehsp_c3 "Education status partner" +keep if _merge == 1 | _merge == 3 +drop _merge +lab define deh 1 "High" 2 "Medium" 3 "Low" +lab val dehsp_c3 deh +replace dehsp_c3=-9 if missing(dehsp_c3) & idpartner>0 +//fre dehsp_c3 + + +/********************************Parents' education status*********************/ +//bys swv: fre maedqf paedqf +replace maedqf = . if maedqf < 0 +replace paedqf = . if paedqf < 0 + +recode maedqf (5 = 1 "High") /// + (4 3 = 2 "Medium") /// + (2 1 97 = 3 "Low") /// + , into(dehm_c3) //dehm_c3 is mother's highest qualification +la var dehm_c3 "Education status mother" + +recode paedqf (5 = 1 "High") /// + (4 3 = 2 "Medium") /// + (2 1 97 = 3 "Low") /// + , into(dehf_c3) //dehf_c3 is father's highest qualification +la var dehf_c3 "Education status father" + +save "$dir_data/temp", replace + +*If missing and living with parents, use their current level of education: +*1. Create mothers and fathers education levels in new file with person and hh id +*2. Merge by father and mother id and hh id +keep swv idperson idhh deh_c3 +drop if missing(deh_c3) +rename idperson idmother +rename deh_c3 mother_educ +save "$dir_data/mother_edu", replace + +rename idmother idfather +rename mother_educ father_educ +save "$dir_data/father_edu", replace + +use "$dir_data/temp", clear +merge m:1 swv idmother idhh using "$dir_data/mother_edu" +keep if _merge == 1 | _merge == 3 +drop _merge +merge m:1 swv idfather idhh using "$dir_data/father_edu" +keep if _merge == 1 | _merge == 3 +drop _merge + +replace dehm_c3 = mother_educ if missing(dehm_c3) +replace dehf_c3 = father_educ if missing(dehf_c3) + +fre dehm_c3 if dgn>0 & dag>0 +fre dehf_c3 if dgn>0 & dag>0 + +*Identify the highest parental education status +//recode dehm_c3 dehf_c3 (.=0) +cap drop dehmf_c3 +egen dehmf_c3 = rowmax(dehm_c3 dehf_c3) +lab var dehmf_c3 "highest parental education status" +fre dehmf_c3 +//recode dehm_c3 dehf_c3 (0=.) +fre dehmf_c3 if dehm_c3==. +fre dehmf_c3 if dehf_c3==. + +*predict highest parental education status if missing +//Recode education level (outcome variable) so 1 = Low education, 2 = Medium education, 3 = High education +recode dehmf_c3 /// + (1 = 3) /// + (3 = 1) /// + , gen(dehmf_c3_recoded) + +la def dehmf_c3_recoded 1 "Low" 2 "Medium" 3 "High" +la val dehmf_c3_recoded dehmf_c3_recoded +fre dehmf_c3_recoded + +*ordered probit model to replace missing values +recode dgn dag drgn1 (-9=.) , gen (dgn2 dag2 drgn12) +fre dgn2 dag2 drgn12 + +xi: oprobit dehmf_c3_recoded i.dgn2 dag2 ib8.drgn12 i.swv, vce(robust) +predict pred_probs1 pred_probs2 pred_probs3, pr + +//Identify the category with the highest predicted probability +egen max_prob = rowmax(pred_probs1 pred_probs2 pred_probs3) +//Impute missing values based on predicted probabilities +gen imp_dehmf_c3_recoded = . +replace imp_dehmf_c3_recoded = 1 if max_prob == pred_probs1 +replace imp_dehmf_c3_recoded = 2 if max_prob == pred_probs2 +replace imp_dehmf_c3_recoded = 3 if max_prob == pred_probs3 + +fre imp_dehmf_c3_recoded if missing(dehmf_c3_recoded) +fre imp_dehmf_c3_recoded if !missing(dehmf_c3_recoded) + +recode imp_dehmf_c3_recoded /// + (1 = 3) /// + (3 = 1) /// + , gen(imp_dehmf_c3) + +tab2 imp_dehmf_c3_recoded imp_dehmf_c3 + +cap gen dehmf_c3_flag = missing(dehmf_c3) +lab var dehmf_c3_flag "=1 if dehmf_c3 is imputed" +replace dehmf_c3 = round(imp_dehmf_c3) if missing(dehmf_c3) +lab define dehmf_c3 1 "High" 2 "Medium" 3 "Low" + +bys dehmf_c3_flag: fre dehmf_c3 + +drop dehmf_c3_recoded dgn2 dag2 drgn12 _Idgn2_1 _Iswv_* pred_probs* max_prob imp_dehmf_c3_recoded imp_dehmf_c3 + + +/******************In continuous education (=first education spell)*************************************/ +/* +replace ded = 1 if jbstat == 7 & (l.jbstat==7 | l.jbstat>=. | l.jbstat<0) +*/ +/*Decision 25/10/2024: We opted to revise this variable to ensure that individuals who are observed out of continuous education in one year, aren't recorded as being in continuous education in future years. +But we include current students who were not observed in the previous wave if they are aged<=23 because the average age of obtaining a Bachelor's degree (BSc) in the UK is typically around 21 to 23 years old. +*/ +sort idperson swv +xtset idperson swv +gen ded = 0 +replace ded = 1 if jbstat==7 & l.jbstat==. & dag <= 23 //currently in education and were not participating in the previous wave and aged<=23 years +replace ded = 1 if jbstat==7 & l.ded == 1 //currently in education and were in education in the previous wave +replace ded = 1 if dag < 16 //Everyone under 16 should be in education - this inludes some obs where jbstat!=7 +la val ded dummy +la var ded "DEMOGRAPHIC : In Continuous Education" +//fre ded + + +/****************************Return to education*******************************/ +cap gen der = -9 +replace der = 0 if l.jbstat !=7 & l.jbstat<. +replace der = 1 if jbstat==7 & l.jbstat !=7 & l.jbstat<. +la val der dummy +la var der "Return to education" +//fre der + +/*****************************Partnership status*******************************/ +recode mastat_dv (2 3 10 = 1 "Partnered") /// + (0 1 = 2 "Single never married") /// Includes children under 16 + (4 5 6 7 8 9 = 3 "Previously partnered") /// + , into (dcpst) +la var dcpst "Partnership status" +recode dcpst (-8 -2 -1 = -9) + +*If idpartner = 0 (because of household splitting), dcpst should be set to 3 depending on mastat_dv value +replace dcpst = 3 if dcpst == 1 & idpartner <= 0 +replace dcpst = 1 if idpartner > 0 & !missing(idpartner) + +//Children coded as "Never Married" (17 and under chosen as can marry from 18 years onwards) +replace dcpst = 2 if dag <= 17 & idpartner<0 +//fre dcpst + + +/*****************************Enter partnership*******************************/ +sort idperson swv +cap drop dcpen +gen dcpen = -9 +replace dcpen=0 if (l.dcpst==2 | l.dcpst==3) +replace dcpen=1 if dcpst==1 & (l.dcpst==2 | l.dcpst==3) +la val dcpen dummy +la var dcpen "Enter partnership" +//fre dcpen + + +/*****************************Exit partnership*********************************/ +sort idperson swv +cap drop dcpex +gen dcpex=-9 +replace dcpex = 0 if l.dcpst==1 +replace dcpex = 1 if dcpst==3 & l.dcpst==1 +la val dcpex dummy +la var dcpex "Exit partnership" +//fre dcpex + + +/*****************************Age difference partners*************************/ +gen dcpagdf = dag - dagsp if (dag > 0 & dagsp > 0) //Leave with negative values? Or should be absolute? +la var dcpagdf "Partner's age difference" + + +/*********************************Activity status*****************************/ +recode jbstat (1 2 5 12 13 14 = 1 "Employed or self-employed") /// + (7 = 2 "Student") /// + (3 6 8 10 11 97 9 4 = 3 "Not employed") /// /*includes apprenticeships, unpaid family business, govt training scheme+retired */ + , into(les_c3) +la var les "Activity status" + +//For people under 16 set activity status to student: +replace les_c3 = 2 if dag <= 16 +//People below age to leave home are not at risk of work so set activity status to not employed if not a student +replace les_c3 = 3 if dag < $age_become_responsible & les_c3 != 2 + + +/***********************Activity status variable adding retirement*************/ +*Generate les_c4 variable in addition to the les_c3 variable. Les_c4 adds retired status. +cap drop les_c4 +clonevar les_c4 = les_c3 +replace les_c4 = 4 if jbstat==4 +lab var les_c4 "LABOUR MARKET: Activity status" +lab define les_c4 1 "Employed or self-employed" 2 "Student" 3 "Not employed" 4 "Retired" +lab val les_c4 les_c4 +//tab2 les_c3 les_c4 + + +/****************************Partner's activity status:***********************/ +preserve +keep swv idperson idhh les_c3 +rename les_c3 lessp_c3 +rename idperson idpartner +save "$dir_data/temp_lesc3", replace +restore +merge m:1 swv idpartner idhh using "$dir_data/temp_lesc3" +keep if _merge == 1 | _merge == 3 +la var lessp_c3 "Partner's activity status" +drop _merge +//fre lessp_c3 + + +/**********************Partner's activity status adding retirement*************/ +preserve +keep swv idperson idhh les_c4 +rename les_c4 lessp_c4 +rename idperson idpartner +save "$dir_data/temp_lesc4", replace +restore +merge m:1 swv idpartner idhh using "$dir_data/temp_lesc4" +keep if _merge == 1 | _merge == 3 +la var lessp_c4 "LABOUR MARKET: Partner's activity status" +lab val lessp_c4 les_c4 +drop _merge +//fre lessp_c4 + + +/***********************Own and Spousal Activity Status***********************/ +gen lesdf_c4 = -9 +replace lesdf_c4 = 1 if les_c3 == 1 & lessp_c3 == 1 & dcpst == 1 //Both employed +replace lesdf_c4 = 2 if les_c3 == 1 & (lessp_c3 == 2 | lessp_c3 == 3) & dcpst == 1 //Employed, spouse not employed +replace lesdf_c4 = 3 if (les_c3 == 2 | les_c3 == 3) & lessp_c3 == 1 & dcpst == 1 //Not employed, and spouse employed +replace lesdf_c4 = 4 if (les_c3 == 2 | les_c3 == 3) & (lessp_c3 == 2 | lessp_c3 == 3) & dcpst == 1 //Both not employed + +la def lesdf_c4_lb 1"Both employed" 2"Employed and spouse not employed" 3"Not employed and spouse employed" 4"Both not employed" -9"Missing" +la val lesdf_c4 lesdf_c4_lb + +la var lesdf_c4 "Own and spousal activity status" +//fre lesdf_c4 + + +/******************************Civil servant status***************************/ +gen lcs=0 +// R.K. (11.05.2017) (we can use SIC 2007 condensed version- this is what Paola does for FRS EUROMOD) +replace lcs=1 if jbsic07_cc==84 +la var lcs "Civil Servant" +lab val lcs dummy +//fre lcs + + +/***********************************Hours of work*****************************/ +recode jbhrs (-9/-1 . = .) //is it fine to recode these to 0? don't want to have missing in simulation? +recode jbot (-9/-1 . = .) +recode jshrs (-9/-1 . = .) +//lhw is the sum of the above, but don't want to take -9 into account. Recode into missing value. +egen lhw=rowtotal(jbhrs jbot jshrs) +replace lhw = ceil(lhw) +la var lhw "Hours worked per week (capped at 126)" +replace lhw = 126 if lhw > 126 //ensure lhw doesn't go above weekly max 168 minus 6*7 hours of sleep. +//(37 real changes made) +//fre lhw + +// Lag(1) of hours of work +xtset // check if xtset correct +gen l1_lhw = l1.lhw + +replace l1_lhw = lhw if l1.les_c4 == 1 & les_c4 == 1 & missing(l1_lhw) // replace lagged value with current value if employed last period and this period +replace l1_lhw = lhw if les_c4 == 1 & missing(l1_lhw) // replace lagged value with current value if above not successful +replace l1_lhw = 0 if l1.les_c4 != 1 // replace lagged value with zero if not compatible with lagged employment state +replace l1_lhw = 0 if les_c4 != 1 & missing(l1_lhw) // replace with zero if not working and l1_lhw still missing + + +/*****************************Number of children*******************************/ +//Number of children aged 0-2 (Checked against manually generating count of children 0-2 per HH - same numbers, but nch02_dv distinguishes missing and 0) +gen dnc02 = nch02_dv +recode dnc02 (-9 = 0) +la var dnc02 "Number of children aged 0-2" + +//Number of dependent children aged 0-18 (dependent doesn't include children who have spouse / child but live with parents) +//Gen flag for a dependent child aged 0-18, with at least one parent and classified as dependent child +/*pns1pid = Biological/step/adoptive parent 1: Cross-wave person identifier (PIDP). + pns2pid = Biological/step/adoptive parent 2: Cross-wave person identifier (PIDP). + If there is more than one parent, the parent with the lowest PNO is the first parent and the parent with the higher PNO is the second parent*/ +gen depChild = 1 if (age_dv >= 0 & age_dv <= 18) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) +bys swv idhh: egen dnc = sum(depChild) +*drop depChild +la var dnc "Number of dependent children 0 - 18" + + +/*******************************Flag for adult children***********************/ +preserve +keep if dgn == 0 +keep swv idhh idperson dag +rename idperson idmother +rename dag dagmother +save "$dir_data/temp_mother_dag", replace +restore, preserve +keep if dgn == 1 +keep swv idhh idperson dag +rename idperson idfather +rename dag dagfather +save "$dir_data/temp_father_dag", replace +restore + +merge m:1 swv idhh idmother using "$dir_data/temp_mother_dag" +keep if _merge == 1 | _merge == 3 +drop _merge +merge m:1 swv idhh idfather using "$dir_data/temp_father_dag" +keep if _merge == 1 | _merge == 3 +drop _merge + +//Adult child is identified on the successful merge with mother / father in the same household and age +gen adultchildflag = (!missing(dagmother) | !missing(dagfather)) & dag >= $age_become_responsible & idpartner <= 0 +*Introduce a condition that (adult) children cannot be older than parents-15 year of age +replace adultchildflag = 0 if dag >= dagfather-15 | dag >= dagmother-15 + + +/************************Household composition*********************************/ +cap gen dhhtp_c4 = -9 +replace dhhtp_c4 = 1 if dcpst == 1 & dnc == 0 //Couple, no children +replace dhhtp_c4 = 2 if dcpst == 1 & dnc > 0 & !missing(dnc) //Couple, children +replace dhhtp_c4 = 3 if (dcpst == 2 | dcpst == 3) & (dnc == 0 | dag <= $age_become_responsible | adultchildflag== 1) +/*Single, no children (Note: adult children and children below age to become responsible +should be assigned "no children" category, even if there are some children in the household)*/ +replace dhhtp_c4 = 4 if (dcpst == 2 | dcpst == 3) & dnc > 0 & !missing(dnc) & dhhtp_c4 != 3 //Single, children + +la def dhhtp_c4_lb 1"Couple with no children" 2"Couple with children" 3"Single with no children" 4"Single with children" +la values dhhtp_c4 dhhtp_c4_lb +la var dhhtp_c4 "Household composition" +//fre dhhtp_c4 + + +/************************Long-term sick or disabled***************************/ +gen dlltsd = 0 +replace dlltsd = 1 if jbstat == 8 +sort idperson swv +replace dlltsd = 1 if missing(jbstat) & l.jbstat == 8 +//replace dlltsd = 1 if missing(jbstat) & missing(l.jbstat) & l2.jbstat == 8 +la var dlltsd "DEMOGRAPHIC: LT sick or disabled" + + +//check if in receipt of disability benefits +/* +fre bendis1 //Income: Disability benefits: Incapacity Benefit +fre bendis2 //Income: Disability benefits: Employment and Support Allowance +fre bendis3 //Income: Disability benefits: Severe Disablement Allowance +fre bendis4 //Income: Disability benefits: Carer's Allowance +fre bendis5 //Income: Disability benefits: Disability Living Allowance +fre bendis6 //Income: Disability benefits: Return to work credit +fre bendis7 //Income: Disability benefits: Attendance Allowance +fre bendis8 //Income: Disability benefits: Industrial Injury Disablement Benefit +fre bendis9 //Income: Disability benefits: War disablement pension +fre bendis10 //Income: Disability benefits: Sickness and Accident Insurance +fre bendis11 //Income: Disability benefits: Universal Credit +fre bendis12 //Income: Disability benefits: Personal Independence Payments +fre bendis13 //Income: Disability benefits: Child Disability Payment +fre bendis14 //Income: Disability benefits: Adult Disability Payment +fre bendis15 //Income: Disability benefits: Pension Age Disability Payment +fre bendis97 //Income: Disability benefits: Any other disability related benefit or payment +*/ +gen disben = 0 +replace disben = 1 if inlist(1, bendis1, bendis2, bendis3, bendis4, bendis5, bendis6, bendis7, bendis8, bendis9, /// + bendis10, bendis12, bendis13, bendis14, bendis15) +/*Note: exclude bendis11 (Universal credit) as it can be jointly received and bendis97 (any other) +bysort swv idhh (idhh): gen hhsize = _N +tab2 hhsize disben +tab2 dlltsd disben */ + +//second check: disability income based on ficode (disability income is computed in 01_prepare_ukhls_pooled_data) +gen disben2 = (inc_disab>0 & inc_disab<.) + +//select those who report being disabled & in receipt of disability benefits according to both checks +gen dlltsd01 = (dlltsd==1 | (disben==1 & disben2==1)) +la var dlltsd01 "DEMOGRAPHIC: LT sick/disabled or receives disability benefits" +//fre dlltsd01 +//tab2 dlltsd01 dlltsd + + +/*******************Long-term sick or disabled - spouse ***********************/ +preserve +keep swv idperson dlltsd dlltsd01 +rename idperson idpartner +rename dlltsd dlltsd_sp +rename dlltsd01 dlltsd01_sp +save "$dir_data/temp_dlltsd", replace +restore + +merge m:1 swv idpartner using "$dir_data/temp_dlltsd" +la var dlltsd_sp "Partner's long-term sick/disabled" +la var dlltsd01_sp "Partner's long-term sick/disabled or receives disability benefits" +keep if _merge == 1 | _merge == 3 +drop _merge +//fre dlltsd_sp + + +/*******************************Retired***************************************/ +gen dlrtrd = 0 +replace dlrtrd = 1 if jbstat == 4 +sort idperson swv +// Impute missing values using lagged values up to 13 previous waves +forvalues i = 1/13 { + replace dlrtrd = 1 if dlrtrd==0 & l`i'.jbstat == 4 + } +la var dlrtrd "DEMOGRAPHIC : Retired" + + +/*************************Enter retirement*************************************/ +sort idperson swv +cap gen drtren = -9 +replace drtren = 0 if l.dlrtrd==0 +replace drtren = 1 if dlrtrd==1 & l.dlrtrd==0 +la val drtren dummy +la var drtren "DEMOGRAPHIC: Enter retirement" +//fre drtren + + +/****************************Pension Age***************************************/ +/*cap gen bdt = mdy(1, 15, birthy) /*month of birth is available in special license only*/ +*/ +/*State Retirement Ages for Men in the UK (2009-2023): + +2009-2010: 65 +2010-2011: 65 +2011-2012: 65 +2012-2013: 65 +2013-2014: 65 +2014-2015: 65 +2015-2016: 65 +2016-2017: 65 +2017-2018: 65 +2018-2019: 65 +2019-2020: 65 +2020-2021: 66 +2021-2022: 66 +2022-2023: 66 + +State Retirement Ages for Women in the UK (2009-2023): + +2009-2010: 60 +2010-2011: 60 +2011-2012: 60 +2012-2013: 61 +2013-2014: 61 +2014-2015: 62 +2015-2016: 62 +2016-2017: 63 +2017-2018: 63 +2018-2019: 64 +2019-2020: 65 +2020-2021: 65 +2021-2022: 66 +2022-2023: 66 +*/ +gen dagpns = 0 +//for men +replace dagpns = 1 if dgn==1 & dag>=65 & stm>=2009 & stm<2020 +replace dagpns = 1 if dgn==1 & dag>=66 & stm>=2020 +//for women +replace dagpns = 1 if dgn==0 & dag>=60 & stm>=2009 & stm<2012 +replace dagpns = 1 if dgn==0 & dag>=61 & stm>=2012 & stm<2014 +replace dagpns = 1 if dgn==0 & dag>=62 & stm>=2014 & stm<2016 +replace dagpns = 1 if dgn==0 & dag>=63 & stm>=2016 & stm<2018 +replace dagpns = 1 if dgn==0 & dag>=64 & stm>=2018 & stm<2019 +replace dagpns = 1 if dgn==0 & dag>=65 & stm>=2019 & stm<2021 +replace dagpns = 1 if dgn==0 & dag>=66 & stm>=2021 + + +/****************************Pension age of a spouse***************************/ +preserve +keep swv idperson idhh dagpns +rename dagpns dagpns_sp +rename idperson idpartner +save "$dir_data/temp_dagpns", replace +restore +merge m:1 swv idpartner idhh using "$dir_data/temp_dagpns" +keep if _merge == 1 | _merge == 3 +la var dagpns_sp "Pension age - partner" +drop _merge +replace dagpns_sp=-9 if idpartner<0 + + +/************************************JBSTAT: Not Retired***********************/ +gen lesnr_c2 = . +replace lesnr_c2 = 1 if (jbstat ==1 | jbstat==2) /*employed*/ +replace lesnr_c2 = 2 if jbstat==3 | jbstat==5 | jbstat==6 | jbstat==8 | jbstat==9 | jbstat==10 | jbstat==11 | jbstat==14 | jbstat==97 +lab var lesnr_c2 "Not retired work status" +lab define lesnr_c2 1 "in work" 2 "not in work" +lab val lesnr_c2 lesnr_c2 + + +/************************Exited parental home*********************************/ +/*Generated from fnspid and/or mnspid. 1 means that individual no longer lives with a parent (fnspid & mnspid is equal to missing) + when in the previous wave they lived with a parent (fnspid or mnspid not equal to missing).*/ +/* +bysort swv: fre mnspid if mnspid<=0 +bysort swv: fre fnspid if fnspid<=0 +bysort swv: fre mnspid if mnspid>=. +bysort swv: fre fnspid if fnspid>=. +*/ +sort idperson swv +gen dlftphm = -9 if (l.fnspid<0 & l.mnspid<0) //those who did not live with parents in the same hh +replace dlftphm=0 if (l.fnspid>0 | l.mnspid>0) //those who lived with at least one parent +replace dlftphm =1 if (fnspid<0 & mnspid<0) & (l.fnspid>0 | l.mnspid>0) //lived with at least one parent but not anymore +bys idperson: replace dlftphm =-9 if _n==1 //this condition will not be applicable for first year in the panel// +la val dlftphm dummy +la var dlftphm "DEMOGRAPHIC: Exited Parental Home" +//bys swv: fre dlftphm + + +/*********************************Left education*******************************/ +sort idperson swv +gen sedex = -9 +replace sedex = 0 if l.jbstat == 7 +replace sedex = 1 if jbstat != 7 & l.jbstat == 7 +la val sedex dummy +la var sedex "Left education" + + +/****************************Same-sex partnership*****************************/ +gen ssscp = 0 if idpartner>0 +replace ssscp = 1 if idpartner>0 & (dgn == dgnsp) & dgn>=0 & dgn<. & dgnsp>=0 & dgnsp<. +la val ssscp dummy +la var ssscp "Same-sex partnership" +//fre ssscp + +/****************************Year prior to exiting partnership*****************/ +cap gen scpexpy = 0 +replace scpexpy = 1 if f.dcpex==1 +replace scpexpy=-9 if swv==14 //Impossible to know for the most recent wave +la val scpexpy dummy +la var scpexpy "Year prior to exiting partnership" +//fre scpexpy + + +/*****************************Women aged 18 - 44*******************************/ +gen sprfm = 0 +replace sprfm = 1 if dgn==0 & dag >= 18 & dag <= 44 +lab val sprfm dummy +la var sprfm "Woman in fertility range dummy (18- 44)" + + +/************************UK General Fertility Rate: From ONS 2019*************/ +/*Source: https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/livebirths/datasets/birthsummarytables +for 2023: https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/livebirths/datasets/birthsinenglandandwalesbirthregistrations +*/ +gen dukfr =. +replace dukfr=62.5 if stm==2009 +replace dukfr=64.0 if stm==2010 +replace dukfr=64.0 if stm==2011 +replace dukfr=64.6 if stm==2012 +replace dukfr=61.7 if stm==2013 +replace dukfr=61.4 if stm==2014 +replace dukfr=61.5 if stm==2015 +replace dukfr=61.2 if stm==2016 +replace dukfr=59.7 if stm==2017 +replace dukfr=57.6 if stm==2018 +replace dukfr=55.8 if stm==2019 +replace dukfr=53.4 if stm==2020 +replace dukfr=54.1 if stm==2021 +replace dukfr=51.8 if stm==2022 +replace dukfr=49.8 if stm>=2023 +lab var dukfr "UK General fertility rate (ONS)" +fre dukfr + + +/************************Number of newborn*************************/ +cap gen child0 = 0 +replace child0=1 if dag<=1 + +cap drop dchpd +bysort idmother swv: egen dchpd= total(child0) if idmother>0 +fre dchpd + +preserve +keep swv idmother dchpd +rename idmother idperson +rename dchpd mother_dchpd +drop if idperson<0 +collapse (max) mother_dchpd, by(idperson swv) +fre mother_dchpd +duplicates report idperson swv +save "$dir_data/mother_dchpd", replace +restore + +merge 1:1 swv idperson using "$dir_data/mother_dchpd" , keepusing (mother_dchpd) +keep if _merge == 1 | _merge == 3 +drop _merge +replace mother_dchpd=0 if dgn==1 +drop dchpd +rename mother_dchpd dchpd +lab var dchpd "Women's number of newborn children" + + +/*****************************In educational age range*************************/ +gen sedag = 1 if dvage >= 16 & dvage <= 29 +replace sedag = 0 if missing(sedag) +la val sedag dummy +la var sedag "Educ age range" + + +/****************************Partnership duration*****************************/ +*idpartner in wave a +clonevar idpartner_a=a_ppid +la var idpartner_a "Unique cross wave identifier of partner in wave a" + +*Interview Date in wave a +cap gen Int_Date_a = mdy(a_intdatm_dv, a_intdatd_dv ,a_intdaty_dv) //interview date in wave a + +*lcmarm month of current marriage - waves 1& 6 only +*lcmary4 year of current marriage- waves 1& 6 only +*lcmcbm month began cohabiting before current marriage- waves 1& 6 only +*lcmcby4 year began cohabiting before current marriage- waves 1& 6 only + +*started partnership in wave a +gen D_Cohab_a = mdy(a_lcmcbm,15,a_lcmcby4) //started cohabitation in wave a +gen D_Mrrg_a = mdy(a_lcmarm,15,a_lcmary4) //started marriage in wave a + +*Partnership duration in wave a +cap gen Cohab_Dur_a = . +replace Cohab_Dur_a = (year(Int_Date_a) - year(D_Cohab_a)) + (month(Int_Date_a) < month(D_Cohab_a)) +replace Cohab_Dur_a = (year(Int_Date_a) - year(D_Mrrg_a)) + (month(Int_Date_a) < month(D_Mrrg_a)) if Cohab_Dur_a ==. & D_Mrrg_a!=. +replace Cohab_Dur_a = 0 if Cohab_Dur_a==. + +/* +*Length of cohabitation since last wave; +forvalues i=1/7 { +cap gen chb`i' = currpart`i' /*cohab no. 1: check if current partner*/ +cap gen chbms`i' = lmcbm`i' /*cohab no. 1: month began cohabitation spell*/ +cap gen chbys`i' = lmcby4`i' /*cohab no. 1: year began cohabitation spell*/ + + if (chbms`i' ==. | chbms`i'<0) & (chbys`i' !=. & chbys`i'>0) { //start of month imputation loop + replace chbms`i'=10 + replace chbms`i'=3 if mod(pno, 2) == 1 + } //end of month imputation loop + + cap gen D_CChb`i' = mdy(chbms`i', 15, chbys`i') if chb`i'==1 //create date variable represented as the number of days since January 1, 1960 + +} //end of if loop + +cap drop D_CChb +egen D_CChb = rowmax(D_CChb1 D_CChb2 D_CChb3 D_CChb4 D_CChb5 D_CChb6 D_CChb7) +*/ + +preserve +keep pidp ppid swv Cohab_Dur_a +replace ppid = . if ppid < 0 + +xtset pidp swv //Set panel +tsspell ppid //Count spells of having partner with the same id. +rename _seq partnershipDuration +replace partnershipDuration = . if ppid == . +//keep if swv == 13 +keep swv pidp partnershipDuration +save "$dir_data/tmp_partnershipDuration", replace +restore + +merge 1:1 swv pidp using "$dir_data\tmp_partnershipDuration", keep(1 3) nogen + +gen dcpyy = partnershipDuration if idpartner >0 +replace dcpyy = partnershipDuration + Cohab_Dur_a if (idpartner >0 & idpartner==idpartner_a) /*for those with same partner id in wave a*/ +la var dcpyy "Years in partnership" +//by swv: fre dcpyy + + +/**************************OECD equivalence scale*****************************/ +//Temporary number of children 0-13 and 14-18 to create household OECD equivalence scale +gen depChild_013 = 1 if (dag >= 0 & dag <= 13) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) +gen depChild_1418 = 1 if (dag >= 14 & dag <= 18) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) +bys swv idhh: egen dnc013 = sum(depChild_013) +bys swv idhh: egen dnc1418 = sum(depChild_1418) +drop depChild_013 depChild_1418 + +gen moecd_eq = . //Modified OECD equivalence scale +replace moecd_eq = 1.5 if dhhtp_c4 == 1 +replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1.5 if dhhtp_c4 == 2 +replace moecd_eq = 1 if dhhtp_c4 == 3 +replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1 if dhhtp_c4 == 4 + +//Drop children variables used to calculate moecd_eq as no longer needed +drop dnc013 dnc1418 + + +/********************************Income variables***************************************/ + +/*Gross personal non-benefit income +Note: This is supposed to mirror UKMOD market income + +1/ fimnlabgrs_dv: total personal monthly labour income gross +2/ fimnpen_dv: monthly amount of net pension income + This includes receipts reported in the income data file where w_ficode equals + [2] “a pension from a previous employer”, or + [3] “a pension from a spouse’s previous employer”. This is assumed to be reported net of tax. +3/ fimnmisc_dv: monthly amount of net miscellaneous income. This includes receipts reported in the income data file where w_ficode equals + [24] "educational grant (not student loan or tuition fee loan)", ==> needs to be removed from market income + [27] "payments from a family member not living here", or + [38] "any other regular payment (not asked in Wave 1)". This is assumed to be reported net of tax. +4/ variables “inc_stp” “inc_tu” “inc_ma” are generated in the UK do-file called “01_prepare_ukhls_pooled_data” + gen inc_stp = frmnthimp_dv if ficode == 1 (NI Retirement/State Retirement (Old Age) Pension) ==> needs to be removed from market income + gen inc_tu = frmnthimp_dv if ficode == 25 (Trade Union / Friendly Society Payment) + gen inc_ma = frmnthimp_dv if ficode == 26 (Maintenance or Alimony) +Instead of (3) and (4) , use : + +gen inc_pp = frmnthimp_dv if ficode == 4 //A Private Pension/Annuity +gen inc_tu = frmnthimp_dv if ficode == 25 //Trade Union / Friendly Society Payment +gen inc_ma = frmnthimp_dv if ficode == 26 //Maintenance or Alimony +gen inc_fm = frmnthimp_dv if ficode == 27 //payments from a family member not living here +gen inc_oth = frmnthimp_dv if ficode == 38 //any other regular payment (not asked in Wave 1) +*/ +recode fimnlabgrs_dv fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth (-9=.) (-1=.) +egen ypnb = rowtotal(fimnlabgrs_dv fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-benefit income +fre ypnb if ypnb <0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero +replace ypnb=0 if ypnb <0 +sum ypnb +assert ypnb>=0 + +/*Gross personal non-employment, non-benefit income*/ +egen yptc = rowtotal(fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-employment, non-benefit income +assert yptc>=0 + +/*Gross personal employment income */ +gen yplgrs = fimnlabgrs_dv +fre yplgrs if yplgrs <0 +replace yplgrs=0 if yplgrs<0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero +assert yplgrs>=0 + + +/*Gross personal non-benefit income for a spouse */ +//tempfile temp_ypnb +preserve +keep swv idperson idhh ypnb +rename ypnb ypnbsp +rename idperson idpartner +save "$dir_data\temp_ypnb", replace +restore +merge m:1 swv idpartner idhh using "$dir_data\temp_ypnb" +keep if _merge == 1 | _merge == 3 +drop _merge + + +/*Household income */ +egen yhhnb = rowtotal(ypnb ypnbsp) if dhhtp_c4 == 1 | dhhtp_c4 == 2 //Household income is sum of individual income and partner's income if coupled +replace yhhnb = ypnb if dhhtp_c4 == 3 | dhhtp_c4 == 4 //If single, household income is equal to individual income + + +/*Disposable income */ +sort hidp +gen ydisp = fimnnet_dv +recode ydisp (missing = 0) +by hidp: egen hhinc = sum(ydisp) +gen res = fihhmnnet1_dv - hhinc +gen mis = (fimnnet_dv>=.)*(age_dv>17.5) +by hidp: egen nmis = sum(mis) +replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) + +drop hhinc res mis nmis +by hidp: egen hhinc = sum(ydisp) +gen res = fihhmnnet1_dv - hhinc +gen mis = (fimnnet_dv>=.)*(age_dv>14.5)*(age_dv<17.5) +by hidp: egen nmis = sum(mis) +replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) +recode ydisp (missing=0) +/* checks +by hidp: egen hhinc2 = sum(ydisp) +gen res2 = fihhmnnet1_dv - hhinc2 +gen chk = (abs(res2) > 0.1)*(fihhmnnet1_dv<.) +order age_dv fihhmnnet1_dv fimnnet_dv ydisp hhinc res res2 mis nmis chk, a(hidp) +tab chk +drop hhinc2 res2 chk +*/ +drop hhinc res mis nmis + +*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 +*/ +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.286 if intdaty_dv == 2024 //yearly index is not available yet// + +*For household income, equivalise and adjust for inflation: +replace yhhnb = (yhhnb/moecd_eq)/CPI + +*Adjust for inflation: +replace ypnb = ypnb/CPI +replace yptc = yptc/CPI +replace yplgrs = yplgrs/CPI +replace ypnbsp = ypnbsp/CPI +replace ydisp = ydisp/CPI + +*Inverse hyperbolic sine transformation: +/*This transformation is useful for data that exhibit highly skewed distributions, +as it can help stabilize variance and normalize the distribution.*/ +gen yhhnb_asinh = asinh(yhhnb) +gen ypnbihs_dv = asinh(ypnb) +gen ypnbihs_dv_sp = asinh(ypnbsp) +gen yptciihs_dv = asinh(yptc) +gen yplgrs_dv = asinh(yplgrs) + + +*Household income Quintiles: +/*Problem: if many observations in yhhnb_asinh have exactly the same value, xtile would group them into a single quintile, causing one or more quintiles to have very few observations. +This results in 2nd quintile being extremely small compared to the first quintile, which probably has many similar values +Adding a very small random amount to yhhnb_asinh can help differentiate tied values enough to distribute them more evenly across quintiles without distorting the data meaningfully. +*/ +//sum yhhnb_asinh +gen yhhnb_asinh_jittered = yhhnb_asinh + runiform() * 1e-5 + +cap drop ydses* +forvalues stm=2009/2024 { +xtile ydses_c5_`stm' = yhhnb_asinh_jittered if depChild != 1 & stm==`stm', nq(5) +bys idhh: egen ydses_c5_tmp_`stm' = max(ydses_c5_`stm') if stm==`stm' +replace ydses_c5_`stm' = ydses_c5_tmp_`stm' if missing(ydses_c5_`stm') +drop ydses_c5_tmp_`stm' +} +egen ydses_c5 = rowtotal(ydses_c5_2009 ydses_c5_2010 ydses_c5_2011 ydses_c5_2012 ydses_c5_2013 ydses_c5_2014 ydses_c5_2015 ydses_c5_2016 ydses_c5_2017 ydses_c5_2018 ydses_c5_2019 /// +ydses_c5_2020 ydses_c5_2021 ydses_c5_2022 ydses_c5_2023 ydses_c5_2024) +recode ydses_c5 (0=-9) +drop ydses_c5_2* +//bys stm: fre ydses_c5 +//fre ydses_c5 + + +*Difference between own and spouse's gross personal non-benefit income +//gen ynbcpdf_dv = asinh(sinh(ypnbihs_dv) - sinh(ypnbihs_dv_sp)) +//Keep as simple difference between the two for compatibility with estimates +gen ynbcpdf_dv = ypnbihs_dv - ypnbihs_dv_sp +recode ynbcpdf_dv (.=-999) if idpartner <0 +recode ynbcpdf_dv (.=-999) +//sum ynbcpdf_dv + +la var ydses_c5 "Household income quintiles" +la var ypnbihs_dv "Gross personal non-benefit income" +la var yptciihs_dv "Gross personal non-employment, non-benefit income" +la var yplgrs_dv "Gross personal employment income" +la var ynbcpdf_dv "Difference between own and spouse's gross personal non-benefit income" +la var ydisp "Disposable income (individual)" + +*Gross-to-net ratio +gen gross_net_ratio = fimngrs_dv/fimnnet_dv +replace gross_net_ratio = 1 if missing(gross_net_ratio) +replace gross_net_ratio = 0 if gross_net_ratio<0 + +/*Gross personal capital income +1/ fimninvnet_dv: investment income +2/ fimnmisc_dv: net miscellaneous income. [24] educational grant (not student loan or tuition fee loan), [27] payments from a family member not living here, or [38] any other regular payment (not asked in Wave 1). +3/ fimnprben_dv: net private benefit income. [25] €œtrade union / friendly society payment, [26] œmaintenance or alimony€, or [35] €œsickness and accident insurance€. +Instead of (2), use : +gen inc_fm = frmnthimp_dv if ficode == 27 //payments from a family member not living here +gen inc_oth = frmnthimp_dv if ficode == 38 //any other regular payment (not asked in Wave 1) +*/ +recode fimninvnet_dv fimnprben_dv inc_fm inc_oth (-1=.) (-9=.) +egen ypncp_temp = rowtotal (fimninvnet_dv inc_fm inc_oth fimnprben_dv) +assert ypncp_temp>=0 +cap gen ypncp = asinh( ypncp_temp*gross_net_ratio*(1/CPI) ) +lab var ypncp "Gross personal non-employment capital income" +//sum ypncp + + +/* Private pension income +fimnpen_dv: monthly amount of net pension income +inc_pp = frmnthimp_dv if ficode == 4 //A Private Pension/Annuity +*/ +egen ypnoab_lvl = rowtotal(fimnpen_dv inc_pp) +assert ypnoab_lvl>=0 +cap gen ypnoab = asinh( ypnoab_lvl *gross_net_ratio*(1/CPI) ) +lab var ypnoab "Gross personal private pension income" +//sum ypnoab + + +/******************************Home ownership dummy***************************/ +*Dhh_owned is the definition used in the initial population and in the model predicting house ownership +*in the homeownership process of the simulation. +bys swv: fre hsownd +gen dhh_owned=0 +replace dhh_owned=1 if hsownd>=1 & hsownd<=3 +lab var dhh_owned "Home ownership dummy" + + +/******************************Disability benefit*****************************/ +/*If any of bendis1-bendis3, bendis5-bendis12, or bendis97 = 1 then received benefits + +Availability of vars across waves: + +bendis2 Employment and Support Allowance indresp 12345678910111213 +bendis3 Severe Disablement Allowance indresp 12345678910111213 + +bendis5 Disability Living Allowance indresp 12345678910111213 +bendis6 return to work credit? indresp 12345 +bendis7 Attendance Allowance indresp 12345678910111213 +bendis8 Industrial Injury Disablement Benefit indresp 12345678910111213 +bendis9 war disablement pension? indresp 12345 +bendis10 Sickness and Accident Insurance indresp 12345678910111213 +bendis11 mc universal credit indresp 1245 +bendis12 Personal Independence Payments indresp 345678910111213 + +bendis97 Any other disability related benefit or payment indresp 345678910111213 +*/ +gen bdi = 0 +foreach var in 2 3 5 6 7 8 9 10 11 12 97 { +replace bdi = 1 if bendis`var' == 1 +} +la val bdi dummy +la var bdi "Disability benefits" + + +/******************************Unemployment dummy***************************/ +gen unemp = (jbstat==3) +label variable unemp "Labour status: unemployed" + +/***************************** UC and Non-UC receipt ***********************/ + +gen econ_benefits = . +replace econ_benefits = 1 if fihhmnsben_dv > 0 & fihhmnsben_dv!=. +replace econ_benefits = 0 if fihhmnsben_dv==0 +label var econ_benefits "Household income includes any benefits" + +replace benefits_uc=0 if benefits_uc==. +* Ensure all with known UC receipt also are benefit recipients +replace econ_benefits=1 if benefits_uc==1 + +* Generate benefits marker without UC +gen econ_benefits_nonuc=econ_benefits +replace econ_benefits_nonuc=0 if benefits_uc==1 +label var econ_benefits_nonuc "Household income includes non-UC benefits" + +* Generate benefits marker with UC +gen econ_benefits_uc=econ_benefits +replace econ_benefits_uc=0 if benefits_uc==0 +label var econ_benefits_uc "Household income includes UC benefits" + + +/***************************** Financial Distress ***************************************************************************/ +// This is a measure of subjective financial distress, corresponding to answering 4 or 5 to the question below: +// How well would you say you yourself are managing financially these days? Would you say you are... +// 1. Living comfortably +// 2. Doing alright +// 3. Just about getting by +// 4. Finding it quite difficult +// 5. Finding it very difficult + +recode finnow (1 2 3 = 0) (4 5 = 1) (else = .), gen(financial_distress) +lab var financial_distress "DEMOGRAPHIC: Financial Distress" + +// Impute financial distress when missing +preserve +drop if dgn < 0 | dag < 0 | dhe < 0 | drgn1 < 0 +eststo predict_financial_distress: logit financial_distress c.dag i.dgn i.drgn1 i.swv i.dhe c.dls i.unemp i.dhh_owned c.yhhnb_asinh, vce(robust) +restore +estimates restore predict_financial_distress +predict financial_distress_prediction + +replace financial_distress = 1 if missing(financial_distress) & financial_distress_prediction >= 0.5 +replace financial_distress = 0 if missing(financial_distress) & financial_distress_prediction < 0.5 + + +/*****************Was in continuous education sample***************************/ +//Generated from age_dv and ded variables. 1 includes first instance of not being in education. +/*This variable is created in Cara’s SAS file in the following way: +if 16 le age_dv le 29 then do; + if inEducStart = 1 and EDU_End in (0,1) then sedcsmpl = 1; +end; +if sedcsmpl = . then sedcsmpl = 0; +*/ +/* sample: being observed in education in all preceding periods t-1,t-2,t-n”?, where n is the number of observations of a particular individual we have*/ +sort idperson swv +cap gen sedcsmpl=0 +replace sedcsmpl = 1 if (dag>=16 & dag<=29) & l.ded==1 /*was in continious education in the previous wave */ +lab var sedcsmpl "SYSTEM: Continuous education sample" +lab define sedcsmpl 1 "Aged 16-29 and were in continuous education" +lab values sedcsmpl sedcsmpl + + +/**********************Return to education sample*****************************/ +//Generated from age_dv and drtren +gen sedrsmpl =0 +replace sedrsmpl = 1 if (dag>=16 & dag<=35 & ded==0) +lab var sedrsmpl "SYSTEM : Return to education sample" +lab define sedrsmpl 1 "Aged 16-35 and not in continuous education" +lab values sedrsmpl sedrsmpl + +/**********************In Continuous education sample*************************/ +//Generated from sedcsmpl and ded variables. Sample: Respondents who were in continious education and left it. +cap gen scedsmpl = 0 +replace scedsmpl=1 if sedcsmpl==1 & ded == 0 /*were but currently not in continuous full-time education*/ +lab var scedsmpl "SYSTEM : Not in continuous education sample" +lab define scedsmpl 1 "Left continuous education" +lab values scedsmpl scedsmpl + + +/*****************************Weights*****************************************/ +/*dimlwt indinus_l DEMOGRAPHIC : Individual Longitudinal Weight - Main survey +Longitudinal individual main survey weight from indinus_lw (waves 2 onward) variable*/ +gen dimlwt = indinus_lw +recode dimlwt (.=0) +lab var dimlwt "DEMOGRAPHIC : Individual Longitudinal Weight - Main survey" +/* +disclwt indscus_lw DEMOGRAPHIC : Individual Longitudinal Weight - Self-Completion +Longitudinal individual self-completion weight from indscus_lw (waves 2 onward) variable. +*/ +gen disclwt = indscus_lw +recode disclwt (.=0) +lab var disclwt "DEMOGRAPHIC : Individual Longitudinal Weight - Self-Completion" +/*dimxwt indpxub_xw; indpxui_xw DEMOGRAPHIC : Individual Cross-sectional Weight - Main survey +Cross-sectional individual main survey weight from indpxub_xw (waves 2-5) and indpxui_xw (waves 6-13) variables +*/ +gen dimxwt = indpxub_xw +replace dimxwt = indpxui_xw if missing(dimxwt) +replace dimxwt = indpxg2_xw if missing(dimxwt) +lab var dimxwt "DEMOGRAPHIC : Individual Cross-sectional Weight - Main survey" +/*dhhwt hhdenub_xw; hhdenui_xw DEMOGRAPHIC : Household Cross-sectional Weight +Cross-sectional household weight from hdenub_xw (waves 2-7) and hhdenui_xw (waves 6-13) +*/ +gen dhhwt = hhdenub_xw +replace dhhwt = hhdenui_xw if missing(dhhwt) +replace dhhwt = hhdeng2_xw if missing(dhhwt) +lab var dhhwt "DEMOGRAPHIC : Household Cross-sectional Weight" + + +/*********************** household level weight *******************************/ +clonevar dwt= dhhwt +bys swv idhh: egen max_dwt = max(dhhwt ) +replace dwt = max_dwt if missing(dhhwt ) +replace dwt = 0 if missing(dwt) + + +/***************************Keep required variables***************************/ +keep ivfio idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// + ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex dcpagdf dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhm dhm_ghq dimlwt disclwt /// + dimxwt dhhwt jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 month scghq2_dv ydisp /// + ypnbihs_dv yptciihs_dv yplgrs_dv ynbcpdf_dv ypncp ypnoab swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der adultchildflag /// + econ_benefits econ_benefits_nonuc econ_benefits_uc /// + sedcsmpl sedrsmpl scedsmpl dhh_owned dukfr dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypnoab_lvl *_flag Int_Date dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp financial_distress + +sort swv idhh idperson + + +/**************************Recode missing values*******************************/ +foreach var in idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// + ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhm dhm_ghq /// + jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 scghq2_dv /// + ypnbihs_dv yptciihs_dv yplgrs_dv swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der dhh_owned /// + econ_benefits econ_benefits_nonuc econ_benefits_uc /// + scghq2_dv_miss_flag dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypnoab_lvl *_flag dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp { + qui recode `var' (-9/-1=-9) (.=-9) +} + + + + +*recode missings in weights to zero. +foreach var in dimlwt disclwt dimxwt dhhwt { + qui recode `var' (.=0) (-9/-1=0) +} + +*add potential hourly earnings +gen potential_earnings_hourly = 0 +gen l1_potential_earnings_hourly = 0 + +replace potential_earnings_hourly = sinh(yplgrs_dv)/(lhw*4.33) if les_c4 == 1 +replace l1_potential_earnings_hourly = potential_earnings_hourly + +replace potential_earnings_hourly = 0 if missing(potential_earnings_hourly) +replace l1_potential_earnings_hourly = 0 if missing(l1_potential_earnings_hourly) + +* initialise wealth to missing +gen liquid_wealth = -9 +gen tot_pen = -9 +gen nvmhome = -9 +gen smp = -9 +gen rnk = -9 +gen mtc = -9 + +*check for duplicates in the pooled dataset +duplicates tag idperson idhh swv, gen(dup) +fre dup +drop if dup == 1 //0 duplicates +drop dup +isid idperson idhh swv + + +/******************************************************************************* +* save the whole pooled dataset that will be used for regression estimates +*******************************************************************************/ +save "$dir_data\ukhls_pooled_all_obs_02.dta", replace +cap log close + + +/************************************************************************************** +* clean-up and exit +*************************************************************************************/ +#delimit ; +local files_to_drop + father_edu.dta + mother_dchpd.dta + mother_edu.dta + temp.dta + temp_age.dta + temp_dagpns.dta + temp_deh.dta + temp_dgn.dta + temp_dhe.dta + temp_dlltsd.dta + temp_father_dag.dta + temp_lesc3.dta + temp_lesc4.dta + temp_mother_dag.dta + temp_ypnb.dta + tmp_partnershipDuration.dta + temp_dot01.dta + + ; +#delimit cr // cr stands for carriage return + +foreach file of local files_to_drop { + erase "$dir_data/`file'" +} + + diff --git a/input/InitialPopulations/training/population_initial_UK_2019.csv b/input/InitialPopulations/training/population_initial_UK_2019.csv index 3b07946de..f6d7e9024 100644 --- a/input/InitialPopulations/training/population_initial_UK_2019.csv +++ b/input/InitialPopulations/training/population_initial_UK_2019.csv @@ -1,37305 +1,37174 @@ -idhh,idbenefitunit,idperson,idpartner,idmother,idfather,pno,swv,dgn,dag,dcpst,dnc02,dnc,ded,deh_c3,sedex,jbstat,les_c3,dlltsd,dlltsd01,dhe,yplgrs_dv,ypnbihs_dv,yptciihs_dv,dhhtp_c4,ssscp,dcpen,dcpyy,dcpex,dcpagdf,ynbcpdf_dv,der,sedag,sprfm,dagsp,dehsp_c3,dhesp,lessp_c3,dehm_c3,dehf_c3,stm,lesdf_c4,ppno,dhm,scghq2_dv,lhw,l1_lhw,dct,les_c4,dhm_ghq,lessp_c4,adultchildflag,potential_earnings_hourly,l1_potential_earnings_hourly,need_socare,formal_socare_hrs,partner_socare_hrs,daughter_socare_hrs,son_socare_hrs,other_socare_hrs,formal_socare_cost,carehoursprovidedweekly,econ_benefits,econ_benefits_nonuc,econ_benefits_uc,ypncp,ypnoab,aidhrs,carewho,dhe_mcs,dhe_pcs,dhe_mcssp,dhe_pcssp,dls,dot,dot01,unemp,financial_distress,drgn1,ydses_c5,dhh_owned,dwt,liquid_wealth,tot_pen,nvmhome,disp_inc -1,1,1,2,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,0,2,0,8.1998081,8.2566547,1,0,-9,8,0,2,56.561264,0,0,0,55,2,3,3,-9,-9,2019,4,1,9,0,0,44,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3621778,0,0,51.41,45.619999,36.619999,60.23,7,1,1,0,0,9,4,1,1128.5,813976.38,0,0,2586.7144 -1,1,2,1,-9,-9,1,1,0,55,1,0,0,0,2,-9,4,3,0,0,3,0,7.321404,7.2211905,1,0,-9,35,0,-2,-56.731426,0,0,0,57,2,2,3,2,2,2019,4,2,15,3,0,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1258769,0,0,36.619999,60.23,51.41,45.619999,6,1,1,0,0,9,4,1,1128.5,813976.38,0,0,2586.7144 -2,2,3,4,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,5,8.559083,8.2248268,0,1,0,-9,7,0,-1,-115.05502,0,0,1,35,1,3,1,-9,-9,2019,1,1,5,0,48,40,15,1,0,1,0,12.446534,12.446534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.18,49.900002,51.27,48.119999,7,2,3,0,0,9,5,1,916.5,197760.63,0,0,2822.3604 -2,2,4,3,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,3,8.6265783,8.6775684,0,1,0,-9,7,0,1,49.730595,0,0,0,34,1,5,1,1,1,2019,1,2,12,3,49,91,15,1,0,1,0,13.592608,13.592608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.27,48.119999,47.18,49.900002,5,2,3,0,0,9,5,1,916.5,197760.63,0,0,2822.3604 -3,3,5,6,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.8091702,8.1441612,0,2,0,-9,9,0,3,-143.93166,0,0,1,35,2,3,1,2,3,2019,1,1,12,0,35,35,15,1,0,1,0,9.9721136,9.9721136,0,0,0,0,0,0,0,2,1,1,0,0,0,1.8043883,3,53.709999,49.66,54.369999,54.799999,5,1,1,0,0,2,4,1,652.5,305181.66,0,0,3256.2261 -3,3,6,5,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,0,3,8.2692919,8.4623499,0,2,0,-9,9,0,-3,47.293022,0,0,0,38,2,3,1,3,2,2019,1,2,11,0,44,41,15,1,0,1,0,15.336989,15.336989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,53.709999,49.66,6,1,1,0,0,2,4,1,652.5,305181.66,0,0,3256.2261 -3,3,7,-9,5,6,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.35455,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,652.5,305181.66,0,0,3256.2261 -3,3,8,-9,5,6,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.77594,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,1,652.5,305181.66,0,0,3256.2261 -4,4,9,-9,11,10,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1094.9165,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,3,0,443.25,142185.7,0,0,2546.637 -4,4,10,11,-9,-9,2,1,1,38,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,1,-9,5,2.2045939,-9,0,0,33,1,5,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,54.099998,59.110001,6,1,1,1,0,11,3,0,443.25,142185.7,0,0,2546.637 -4,4,11,10,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,0,5,8.3237305,8.4494429,0,2,0,-9,1,-9,-5,-30.77771,-9,0,1,38,2,4,3,2,3,2019,2,2,6,0,38,0,15,1,0,3,0,17.618567,17.618567,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.099998,59.110001,51.240002,58.84,6,1,1,0,0,11,3,0,443.25,142185.7,0,0,2546.637 -4,4,12,-9,11,10,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1036.0441,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,0,443.25,142185.7,0,0,2546.637 -5,5,13,14,-9,-9,2,1,0,68,1,0,0,0,3,-9,8,3,1,1,2,0,5.0148401,5.1537905,1,0,-9,9,0,-1,3.8382699,0,0,0,69,3,4,1,3,3,2019,3,1,12,2,0,0,15,3,0,1,0,0,0,1,0,0,0,0,.2537078,0,0,1,1,0,0,5.6239023,0,0,40.080002,18.290001,60.119999,54.799999,4,1,1,0,0,6,2,0,996,65747.375,0,0,2153.094 -5,5,14,13,-9,-9,1,1,1,69,1,0,0,0,3,-9,2,1,0,0,4,6.6873455,7.3948593,6.6465755,1,0,-9,9,0,1,71.208595,0,0,0,68,3,2,3,3,3,2019,2,2,6,0,13,16,15,1,0,3,0,8.1653185,8.1653185,0,0,0,0,0,0,0,0,1,1,0,0,6.5406499,0,0,60.119999,54.799999,40.080002,18.290001,2,1,1,0,0,6,2,0,996,65747.375,0,0,2153.094 -6,6,15,18,-9,-9,2,1,0,45,1,0,2,0,1,-9,1,1,0,1,1,6.2339983,6.3181458,0,2,0,-9,16,0,-7,-82.588928,0,0,0,52,2,3,2,2,2,2019,2,1,25,11,19,0,15,1,1,2,0,3.9072042,3.9072042,0,0,0,0,0,0,0,42,1,1,0,.39877436,0,47.235695,3,37.880001,23.34,14.03,62.400002,2,1,1,0,0,10,3,0,1268,244896.22,0,0,4494.7549 -6,6,16,-9,15,18,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1026.6464,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,3,0,1268,244896.22,0,0,4494.7549 -6,6,17,-9,15,18,3,1,1,16,2,0,2,0,3,-9,10,2,0,1,3,0,0,0,2,0,0,0,-9,0,-980.48236,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.830002,48.419998,-9,-9,5,1,1,0,0,10,3,0,1268,244896.22,0,0,4494.7549 -6,6,18,15,-9,-9,1,1,1,52,1,0,2,0,2,0,7,2,0,0,3,0,7.9081669,7.7668037,2,0,-9,16,0,7,139.85739,-9,0,0,45,1,1,1,2,2,2019,3,2,23,11,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.1889753,0,12.628162,3,14.03,62.400002,37.880001,23.34,2,1,1,0,0,10,3,0,1268,244896.22,0,0,4494.7549 -7,7,19,20,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,1,2,0,6.1278534,6.0984735,1,0,-9,23,0,-1,139.93037,0,0,0,71,3,3,3,2,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,1,0,7.5284238,3.4561934,0,0,0,0,1,1,0,0,6.157433,0,0,36.91,29.360001,52,47,3,1,1,0,0,6,2,0,513,318552.38,0,0,1552.5272 -7,7,20,19,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.3856525,5.657083,1,0,-9,23,0,1,-12.991316,0,0,0,70,3,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.6432028,5.789546,18.074091,1,52,47,36.91,29.360001,7,1,1,0,0,6,2,0,513,318552.38,0,0,1552.5272 -8,8,21,-9,22,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1010.8664,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,2,0,594.33331,-3198.1418,0,0,1365.6615 -8,8,22,-9,-9,-9,1,1,0,30,2,0,2,0,2,0,7,2,0,0,3,0,7.2542734,7.1146531,4,0,0,0,-9,0,-926.37811,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2051811,0,0,0,50.279999,51.349998,-9,-9,6,1,1,0,0,13,2,0,594.33331,-3198.1418,0,0,1365.6615 -8,8,23,-9,22,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1000.7662,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,0,594.33331,-3198.1418,0,0,1365.6615 -9,9,24,25,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.0369406,7.9767036,0,1,0,-9,31,0,2,-121.94735,0,0,0,54,2,4,1,2,3,2019,1,1,10,1,37,37,15,1,0,1,0,8.9317951,8.9317951,0,0,0,0,0,0,0,0,0,0,0,2.3172419,0,0,0,52,53,54.790001,55.860001,6,1,1,0,0,9,5,1,728,999387.38,0,0,6335.5596 -9,9,25,24,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,9.2646933,9.7541676,0,1,0,-9,31,0,-2,118.02227,0,0,0,56,2,4,1,2,2,2019,1,2,7,0,40,48,15,1,0,1,0,35.619972,35.619972,0,0,0,0,0,0,0,0,0,0,0,7.7551217,0,0,0,54.790001,55.860001,52,53,6,1,1,0,0,9,5,1,728,999387.38,0,0,6335.5596 -10,10,26,27,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,5.8285794,5.9016194,1,0,-9,54,0,-1,8.7030878,0,0,0,71,3,3,3,3,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87144887,5.5087113,0,0,49.400002,35.27,48.860001,40.740002,5,1,1,0,0,1,2,1,268.5,598189.5,0,0,1513.5529 -10,10,27,26,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,6.8734183,6.8795109,1,0,-9,54,0,1,174.55737,0,0,0,70,3,3,3,3,3,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4715147,6.9959707,0,0,48.860001,40.740002,49.400002,35.27,4,1,1,0,0,1,2,1,268.5,598189.5,0,0,1513.5529 -11,11,28,29,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,0,3,9.7202797,9.5162268,6.2119203,1,0,-9,37,0,11,60.980598,0,0,0,57,1,4,1,3,2,2019,1,2,9,0,16,20,15,1,0,1,0,102.91844,102.91844,0,0,0,0,0,0,0,2,1,1,0,6.9600239,5.9890747,0,3,57.330002,53.459999,54.790001,55.860001,6,1,1,0,0,6,5,1,1321.5,952437.75,0,0,8625.5156 -11,11,29,28,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,0,4,6.1216807,6.3728414,0,1,0,-9,37,0,-11,-36.081181,0,0,0,68,3,3,1,2,2,2019,1,1,8,0,52,50,15,1,0,1,0,.94237614,.94237614,0,0,0,0,0,0,0,2,1,1,0,4.9738989,0,6.8232222,3,54.790001,55.860001,57.330002,53.459999,6,1,1,0,0,6,5,1,1321.5,952437.75,0,0,8625.5156 -12,12,30,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,2,7.5982056,7.5726218,0,3,0,0,0,-9,0,-934.4646,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,16,15,1,0,-9,0,6.9582868,6.9582868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.77,29.82,-9,-9,6,1,1,0,0,11,3,1,850,110157.42,0,0,1522.782 -12,13,31,-9,30,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.4891644,7.1064129,0,3,0,0,0,-9,0,-1037.4196,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,8,14,15,1,0,-9,1,20.880445,20.880445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,11,3,1,528,-216337.44,0,0,-104.63375 -13,14,32,33,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,3,8.4466076,8.4347391,0,1,0,-9,1,-9,0,-105.86378,-9,1,1,29,1,4,1,-9,-9,2019,1,1,7,0,42,0,15,1,0,1,0,13.484384,13.484384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,57.16,56.150002,6,1,1,0,0,2,5,0,488,181933.63,0,0,2958.6887 -13,14,33,32,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,7.8436275,7.5052981,0,1,0,-9,1,-9,0,24.947456,-9,1,0,29,1,3,1,-9,-9,2019,1,2,6,0,32,0,15,1,0,1,0,8.9897108,8.9897108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,49.040001,55.860001,6,1,1,0,0,2,5,0,488,181933.63,0,0,2958.6887 -14,15,34,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,9.1427441,9.2244387,0,3,0,-9,0,-9,0,-892.01099,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,50,0,15,1,0,-9,0,20.292126,20.292126,0,0,0,0,0,0,0,0,1,1,0,1.8771825,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,8,5,0,592,283935.5,0,0,2820.1992 -15,16,35,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,2,8.2172709,8.3047791,0,3,0,0,0,-9,0,-973.65924,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,50,45,15,1,0,-9,0,10.074248,10.074248,0,0,0,0,0,0,0,0,0,0,0,1.1801291,0,0,0,49.189999,31.299999,-9,-9,4,1,1,0,0,5,4,1,1357,98542.32,0,0,2754.9492 -16,17,36,37,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,1,0,7.2201767,7.3971539,1,0,-9,48,0,2,-26.681246,0,0,0,66,3,2,3,3,3,2019,4,2,19,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.3628244,117.70358,1,33.610001,40.380001,41.630001,28.459999,1,1,1,0,0,4,2,1,478,455069.91,0,0,2021.5967 -16,17,37,36,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,-2,18.941126,0,0,0,68,2,1,3,3,3,2019,4,1,26,11,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,114.57539,1,41.630001,28.459999,33.610001,40.380001,5,1,1,0,0,4,2,1,478,455069.91,0,0,2021.5967 -17,18,38,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,4,0,5.4954238,5.9371004,3,0,0,0,-9,0,-969.09436,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7316804,0,0,44.830002,57.810001,-9,-9,6,1,1,0,0,2,2,1,486,138077.72,0,0,1585.8666 -17,19,39,-9,38,-9,2,1,1,30,2,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1072.771,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,5,1,1,0,0,2,1,1,634,-4530.6929,0,0,0 -18,20,40,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-926.64362,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.040001,56.66,-9,-9,6,1,1,1,0,8,1,0,210,65652.211,0,0,996.07568 -19,21,41,42,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,6.78895,7.0104198,0,1,0,-9,22,0,0,-91.304367,0,0,0,53,1,4,1,2,2,2019,1,1,12,0,17,16,15,1,0,1,0,7.6239314,7.6239314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.310001,44.279999,48.810001,59.91,6,1,1,0,0,7,5,1,946,592917,0,0,3500.7168 -19,21,42,41,-9,-9,1,1,1,53,1,0,0,0,1,-9,1,1,0,0,4,8.7995825,8.7521744,0,1,0,-9,22,0,0,60.571381,0,0,0,53,1,3,1,2,2,2019,1,2,14,6,50,47,15,1,1,1,0,15.755838,15.755838,0,0,0,0,0,0,0,0,0,0,0,7.7888737,0,0,0,48.810001,59.91,59.310001,44.279999,6,1,1,0,0,7,5,1,946,592917,0,0,3500.7168 -19,22,43,-9,41,42,3,1,1,19,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-960.40338,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2463379,0,0,0,46.279999,62.599998,-9,-9,6,1,1,0,0,7,1,1,917,158412.69,0,0,1920.9575 -20,23,44,45,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.540266,8.4908152,0,1,0,-9,28,0,3,-64.221214,0,0,0,50,3,5,1,2,3,2019,1,1,11,0,34,34,15,1,0,1,0,17.438555,17.438555,0,0,0,0,0,0,0,0,0,0,0,4.2314835,0,0,0,51.34,42.380001,58.049999,54.52,6,1,1,0,0,8,5,1,663,77808.789,0,0,3824.3423 -20,23,45,44,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,0,5,8.3845968,8.4596205,0,1,0,-9,28,0,-3,78.649178,0,0,0,53,2,3,1,2,2,2019,1,2,6,0,34,34,15,1,0,1,0,17.358339,17.358339,0,0,0,0,0,0,0,0,0,0,0,4.1340923,0,0,0,58.049999,54.52,51.34,42.380001,6,1,1,0,0,8,5,1,663,77808.789,0,0,3824.3423 -21,24,46,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,8,3,1,1,1,3.4831707,3.6110551,0,3,0,0,0,-9,0,-983.51166,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.860001,25.639999,-9,-9,3,1,1,0,0,12,1,0,365,284296.09,0,0,1218.5851 -22,25,47,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,4,7.5196166,7.8090587,6.8540301,3,0,0,0,-9,0,-947.09137,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,2,17,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.988905,7.2964768,0,0,54.380001,51.939999,-9,-9,6,1,1,0,0,7,4,1,231,1075853,0,0,955.04492 -23,26,48,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,7.4864697,7.4729657,0,3,0,0,0,-9,0,-1023.2288,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,31,40,15,1,0,-9,0,5.8974328,5.8974328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.459999,53.68,-9,-9,4,1,1,0,0,9,3,0,343,95222.883,0,0,1208.2041 -24,27,49,-9,52,50,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.50452,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,3,0,856,252724.72,0,0,3080.9412 -24,27,50,52,-9,-9,3,1,1,35,1,0,3,0,3,-9,1,1,0,0,4,7.0973496,6.9108567,0,2,0,-9,6,0,1,38.232361,0,0,0,34,2,3,1,-9,-9,2019,1,1,5,0,40,35,15,1,0,1,0,3.0527811,3.0527811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,26.799999,54.490002,7,1,1,0,0,6,3,0,856,252724.72,0,0,3080.9412 -24,27,51,-9,52,50,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.9869,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,0,856,252724.72,0,0,3080.9412 -24,27,52,50,-9,-9,1,1,0,34,1,0,3,0,2,-9,2,1,0,0,3,7.9006972,8.2793493,0,2,0,-9,6,0,-1,-56.53371,0,0,1,35,3,4,1,2,-9,2019,1,3,17,6,30,17,15,1,1,1,0,13.134167,13.134167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.799999,54.490002,57.16,56.150002,4,1,1,0,0,6,3,0,856,252724.72,0,0,3080.9412 -25,28,53,55,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,2,8.9933195,9.1830149,0,2,0,-9,6,0,13,82.563766,0,0,0,39,1,4,1,2,2,2019,1,2,13,1,40,50,15,1,0,1,0,26.14658,26.14658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.169998,54.650002,42.860001,55.919998,5,1,1,0,0,2,5,1,651.66669,336724.38,0,0,5901.7583 -25,28,54,-9,55,53,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.02612,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,5,1,651.66669,336724.38,0,0,5901.7583 -25,28,55,53,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,4,8.4697523,8.2540197,0,2,0,-9,6,0,-13,133.36731,0,0,1,52,2,2,1,2,1,2019,1,1,16,6,40,50,15,1,1,1,0,14.059665,14.059665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.860001,55.919998,32.169998,54.650002,4,1,1,0,0,2,5,1,651.66669,336724.38,0,0,5901.7583 -26,29,56,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,3,7.5358505,8.451376,8.0127439,3,0,0,0,-9,0,-1108.9001,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,24,25,15,1,0,-9,0,8.9530878,8.9530878,0,0,0,0,0,0,0,0,1,1,0,7.2001443,7.9265814,0,0,56.349998,51.16,-9,-9,6,1,1,0,0,10,4,1,297,6205567.5,0,0,3558.8115 -27,30,57,-9,-9,-9,1,1,1,26,2,0,1,0,2,-9,2,1,0,0,2,7.7989287,7.5754504,0,4,0,0,0,-9,0,-1061.4093,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,55,0,15,1,1,-9,0,5.0079746,5.0079746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,43,-9,-9,5,3,4,0,0,4,3,0,363,-95041.609,0,0,1420.316 -27,31,58,-9,59,-9,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-946.69891,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,4,3,0,723.5,255358.97,0,0,2533.5769 -27,31,59,-9,-9,-9,2,1,0,30,2,0,1,0,2,-9,2,1,0,0,3,8.0074883,7.8723903,0,4,0,0,0,-9,0,-1037.3535,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,34,34,15,1,0,-9,0,10.202907,10.202907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,37.849998,-9,-9,5,3,4,0,0,4,3,0,723.5,255358.97,0,0,2533.5769 -27,32,60,-9,-9,-9,4,1,0,24,2,0,1,0,2,-9,2,1,0,0,3,7.7573276,7.889492,0,4,0,0,0,-9,0,-989.66705,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,48,45,15,1,0,-9,0,5.7768145,5.7768145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.98,43.240002,-9,-9,5,3,4,0,0,4,3,0,461,55244.266,0,0,1513.425 -28,33,61,62,-9,-9,2,1,1,71,1,0,0,0,2,-9,1,1,0,0,4,0,4.005053,4.4122696,1,0,-9,6,0,1,0,0,0,0,70,3,3,1,3,3,2019,1,1,7,1,45,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3385458,4.1753688,0,0,61.110001,48.860001,57.330002,53.459999,2,1,1,0,0,2,1,1,1333,728510.25,0,0,1795.0115 -28,33,62,61,-9,-9,1,1,0,70,1,0,0,0,3,-9,1,1,0,0,3,0,4.3481493,4.1006703,1,0,-9,6,0,-1,0,0,0,0,71,2,4,1,3,3,2019,1,2,8,0,15,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.33427,4.4909101,0,0,57.330002,53.459999,61.110001,48.860001,6,1,1,0,0,2,1,1,1333,728510.25,0,0,1795.0115 -29,34,63,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.4886789,7.4197311,0,3,0,0,0,-9,0,-1010.8674,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,38,26,15,1,0,-9,0,4.1692786,4.1692786,0,0,0,0,0,0,0,7,1,1,0,0,0,13.410755,3,47.09,56.75,-9,-9,6,3,4,0,1,8,3,0,636,214728.84,0,0,1888.0345 -29,35,64,-9,63,-9,2,1,1,20,2,0,0,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1082.7672,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,2,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.724177,3,41.169998,59.310001,-9,-9,7,3,4,0,0,8,1,0,837,0,0,0,0 -30,36,65,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,8.7888937,8.6074915,0,3,0,0,0,-9,0,-1061.1582,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,47,49,15,1,0,-9,0,16.183846,16.183846,0,0,0,0,0,0,0,2,1,1,0,0,0,16.307791,3,52.650002,51.639999,-9,-9,6,1,1,0,0,6,5,1,761,269316.5,0,0,2156.252 -31,37,66,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,5.7272024,5.8890719,3,0,0,0,-9,0,-929.56708,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6120915,0,0,49.369999,47.48,-9,-9,3,1,1,0,0,2,2,1,359,84204.531,0,0,2275.5242 -31,38,67,-9,-9,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,0,3,7.7483749,7.3754678,0,3,0,0,0,-9,0,-929.24243,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,56,29,15,1,0,-9,0,4.0566502,4.0566502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,4,1,1,0,0,2,3,1,413,-279433.94,0,0,740.96698 -32,39,68,69,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,3,0,5.4995785,5.3677778,1,0,-9,44,0,8,25.192814,0,0,0,76,2,3,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5289154,5.6446056,0,0,43.939999,31.23,53,46,6,1,1,0,0,10,2,1,382.5,711893.69,0,0,2685.0017 -32,39,69,68,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.0372043,7.4928422,1,0,-9,44,0,-8,-20.901415,0,0,0,84,3,3,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,4.9882536,0,0,0,0,0,1,1,0,4.9908175,7.4153924,0,0,53,46,43.939999,31.23,4,1,1,0,0,10,2,1,382.5,711893.69,0,0,2685.0017 -33,40,70,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-972.46039,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.389999,46.040001,-9,-9,6,1,1,0,0,13,1,0,423,-19981.615,0,0,473.25357 -34,41,71,72,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,2,9.0801992,9.2374525,0,1,0,-9,7,0,-13,15.33905,0,0,0,68,1,5,3,3,3,2019,2,1,19,7,45,45,15,1,1,4,0,24.474222,24.474222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.150002,33.529999,51.669998,60.18,5,1,1,0,0,12,5,1,378,2853336.3,0,0,5253.6152 -34,41,72,71,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,5,0,7.9436693,7.6161404,1,0,-9,7,0,13,-16.651812,0,0,0,55,1,2,1,2,1,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0446534,7.7797322,14.782981,3,51.669998,60.18,45.150002,33.529999,6,1,1,0,0,12,5,1,378,2853336.3,0,0,5253.6152 -35,42,73,-9,74,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-926.43982,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,1,0,698.5,82389.406,0,0,1106.2444 -35,42,74,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-946.09076,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,10,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.419998,57.439999,-9,-9,1,1,1,1,1,5,1,0,698.5,82389.406,0,0,1106.2444 -36,43,75,-9,77,76,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.01782,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,1,501.25,398077.25,0,0,2921.082 -36,43,76,77,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,8.10361,8.0186453,0,2,0,-9,9,0,3,9.6290989,0,0,0,39,1,3,1,2,2,2019,1,2,7,0,40,38,15,1,0,1,0,10.343345,10.343345,0,0,0,0,0,0,0,0,1,1,0,1.2002292,0,0,0,54.959999,53.169998,44.59,56.400002,6,1,1,0,0,11,4,1,501.25,398077.25,0,0,2921.082 -36,43,77,76,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,8.331851,8.4183416,0,2,0,-9,9,0,-3,107.97527,0,0,1,42,2,3,1,2,-9,2019,1,1,7,0,55,66,15,1,0,1,0,10.460265,10.460265,0,0,0,0,0,0,0,0,1,1,0,.20605454,0,0,0,44.59,56.400002,54.959999,53.169998,6,1,1,0,0,11,4,1,501.25,398077.25,0,0,2921.082 -36,43,78,-9,77,76,5,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.7052,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,11,4,1,501.25,398077.25,0,0,2921.082 -37,44,79,80,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.730752,9.1782875,0,1,0,-9,28,0,-1,103.26521,0,0,0,49,2,2,1,3,3,2019,1,2,6,0,50,80,15,1,0,1,0,17.823566,17.823566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,33.630001,41.330002,5,1,1,0,0,5,5,1,543,746797.13,0,0,3730.4312 -37,44,80,79,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,2,8.1079874,8.4909544,0,1,0,-9,28,0,1,115.18597,0,0,0,48,2,4,1,2,2,2019,1,1,17,6,42,43,15,1,1,1,0,8.1747503,8.1747503,0,0,0,0,0,0,0,2,0,0,0,5.0109563,0,0,3,33.630001,41.330002,51.830002,57.200001,6,1,1,0,0,5,5,1,543,746797.13,0,0,3730.4312 -37,45,81,-9,80,79,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,8.0738363,8.3156424,0,3,0,0,0,-9,0,-1001.0999,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,6,50,0,15,1,1,-9,1,9.3827648,9.3827648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,60,-9,-9,4,1,1,0,0,5,4,1,1232,-17787.27,0,0,1750.053 -37,46,82,-9,80,79,4,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.5220399,7.4954805,0,3,0,0,0,-9,0,-891.86279,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,46,47,15,1,0,-9,1,4.4930272,4.4930272,0,0,0,0,0,0,0,0,0,0,0,3.3426018,0,0,0,50.849998,52.080002,-9,-9,2,1,1,0,0,5,3,1,159,-136468.31,0,0,2464.6677 -38,47,83,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,7.795979,8.0360403,5.2503834,3,0,0,0,-9,0,-970.07001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,37,15,1,0,-9,0,9.1756649,9.1756649,0,0,0,0,0,0,0,0,0,0,0,0,5.3925395,0,0,60.900002,39.41,-9,-9,6,1,1,0,0,7,3,1,1640,760281.81,0,0,838.71039 -39,48,84,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1001.046,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,9.4448738,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,9,1,1,287,-31164.816,0,0,1728.8301 -40,49,85,86,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,0,0,0,1,0,-9,25,0,1,0,0,0,0,51,1,4,3,-9,-9,2019,2,2,14,2,0,44,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9998934,0,0,0,50,50,30.77,64.339996,6,1,1,0,0,4,1,1,647,219447.39,0,0,-325.64005 -40,49,86,85,-9,-9,2,1,0,51,1,0,0,0,1,-9,97,3,0,0,4,0,0,0,1,0,-9,7,0,-1,0,0,0,0,52,1,3,1,-9,-9,2019,3,1,24,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.339996,50,50,4,1,1,0,0,4,1,1,647,219447.39,0,0,-325.64005 -41,50,87,88,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,0,4,0,6.1410303,6.0409598,1,0,-9,62,0,-1,-93.945122,0,0,0,83,2,3,3,-9,-9,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6310024,5.846323,0,0,35.189999,59.41,64.449997,24.83,7,1,1,0,0,10,2,1,304.5,567905.44,0,0,1239.1737 -41,50,88,87,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,6.8536887,6.5447383,1,0,-9,62,0,1,73.736176,0,0,0,82,3,4,3,-9,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7100377,7.1613302,0,0,64.449997,24.83,35.189999,59.41,7,1,1,0,0,10,2,1,304.5,567905.44,0,0,1239.1737 -42,51,89,90,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.02561,8.0006943,0,2,0,-9,8,0,5,0,0,0,0,31,2,3,1,-9,-9,2019,1,1,28,12,37,8,15,1,1,1,0,10.818538,10.818538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.709999,64.879997,33.490002,53.560001,2,1,1,0,1,9,4,1,641,221170.83,0,0,2973.3147 -42,51,90,89,-9,-9,1,1,0,31,1,0,1,0,2,-9,2,1,0,0,3,7.9527097,8.1420746,0,2,0,-9,8,0,-5,0,0,0,1,36,2,4,1,2,2,2019,1,2,21,9,41,45,15,1,1,1,0,10.515729,10.515729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.490002,53.560001,29.709999,64.879997,3,1,1,0,0,9,4,1,641,221170.83,0,0,2973.3147 -42,51,91,-9,90,89,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.5194,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,641,221170.83,0,0,2973.3147 -43,52,92,93,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.9697499,7.1652427,1,0,-9,57,0,-3,-37.837486,0,0,0,80,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1831455,7.2109795,0,0,53.560001,49.66,43.93,42.869999,7,1,1,0,0,4,2,1,1329.5,1019094.1,0,0,1584.0112 -43,52,93,92,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,57,0,3,-28.109188,0,0,0,77,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1292586,0,0,0,43.93,42.869999,53.560001,49.66,7,1,1,0,0,4,2,1,1329.5,1019094.1,0,0,1584.0112 -44,53,94,-9,95,96,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-823.2157,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,5,1,616,134144.61,0,0,3682.0161 -44,53,95,96,-9,-9,1,1,0,35,1,1,2,0,2,-9,5,1,0,0,3,0,0,0,2,0,-9,10,0,-2,72.310158,0,0,1,37,2,3,1,2,2,2019,1,2,5,0,0,23,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.57655978,0,0,0,49.630001,54.220001,52.599998,52.880001,7,1,1,0,0,11,5,1,616,134144.61,0,0,3682.0161 -44,53,96,95,-9,-9,2,1,1,37,1,1,2,0,2,-9,2,1,0,0,3,9.069416,9.2750463,0,2,0,-9,10,0,2,102.58092,0,0,0,35,2,3,1,-9,-9,2019,1,1,8,0,90,45,15,1,0,1,0,12.318053,12.318053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,52.880001,49.630001,54.220001,5,1,1,0,0,11,5,1,616,134144.61,0,0,3682.0161 -44,53,97,-9,95,96,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.97571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,616,134144.61,0,0,3682.0161 -45,54,98,-9,-9,101,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-979.23401,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,2,0,969.5,95064.438,0,0,306.37286 -45,54,99,-9,-9,101,2,1,1,16,2,0,3,1,3,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1004.0679,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,5,2,0,969.5,95064.438,0,0,306.37286 -45,54,100,-9,-9,101,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.97363,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,2,0,969.5,95064.438,0,0,306.37286 -45,54,101,-9,-9,-9,1,1,1,53,3,0,3,0,2,-9,2,1,0,0,5,6.6491756,6.6867847,0,4,0,0,0,-9,0,-914.07684,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,50,40,15,1,0,-9,0,1.6255428,1.6255428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,2,0,969.5,95064.438,0,0,306.37286 -46,55,102,-9,-9,-9,1,1,1,44,2,0,1,0,2,-9,6,3,0,1,2,0,2.0435758,2.1953652,4,0,0,0,-9,0,-983.96082,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.2848189,0,25.200354,3,37.75,43.759998,-9,-9,3,1,1,0,1,9,1,0,562,-25634.184,0,0,1431.5081 -46,55,103,-9,-9,102,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.96838,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,1,0,562,-25634.184,0,0,1431.5081 -46,56,104,-9,-9,102,2,1,0,19,2,0,1,0,3,-9,2,1,0,0,4,7.6966577,7.5641789,0,3,0,0,0,-9,0,-1050.6075,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,52,0,15,1,0,-9,1,4.4708443,4.4708443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,2,1,1,0,1,9,3,0,501,138339.45,0,0,505.9426 -47,57,105,-9,106,-9,2,1,1,6,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1097.6523,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,9,5,1,432.5,1460388.6,0,0,4572.1514 -47,57,106,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,1,1,0,0,4,8.0794621,8.5415764,7.3540926,3,0,0,0,-9,0,-1006.0516,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,24,0,15,1,0,-9,0,18.410469,18.410469,0,0,0,0,0,0,0,0,1,1,0,.69540471,7.3206806,0,0,49.41,58.279999,-9,-9,6,1,1,0,0,9,5,1,432.5,1460388.6,0,0,4572.1514 -48,58,107,108,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,8.5565796,8.4436197,0,1,0,-9,6,0,0,-58.292084,0,1,0,27,1,4,1,-9,-9,2019,1,2,13,1,43,41,15,1,0,1,0,12.306793,12.306793,0,0,0,0,0,0,0,0,0,0,0,.18948315,0,0,0,52.400002,55.580002,50.93,54.77,6,1,1,0,0,8,5,0,801.5,501167.63,0,0,3163.3682 -48,58,108,107,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.19454,8.1569004,0,1,0,-9,6,0,0,55.700512,0,1,1,27,1,4,1,-9,-9,2019,1,1,7,1,38,37,15,1,0,1,0,9.64886,9.64886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.93,54.77,52.400002,55.580002,6,1,1,0,0,8,5,0,801.5,501167.63,0,0,3163.3682 -49,59,109,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,2,0,5.2205629,5.416995,3,0,0,0,-9,0,-1071.5153,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2250304,5.2087865,5.9513831,3,55.200001,49.400002,-9,-9,6,1,1,0,0,8,2,0,797,681240.63,0,0,272.0947 -50,60,110,111,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,2,8.6346855,8.5861454,7.2972617,2,0,-9,24,0,-6,139.15102,0,0,0,54,2,3,3,3,2,2019,2,1,10,1,24,32,15,1,0,4,0,25.034065,25.034065,0,0,0,0,0,0,0,0,1,1,0,1.5839864,7.7572012,0,0,52.349998,14.25,64.550003,36.470001,6,1,1,0,1,2,4,1,834.33331,-26117.393,0,0,2999.1572 -50,60,111,110,-9,-9,1,1,1,54,1,0,1,0,2,-9,4,3,0,0,3,0,0,0,2,0,-9,24,0,6,-152.89224,0,0,0,48,2,2,1,2,2,2019,3,2,5,0,0,42,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6127338,0,0,0,64.550003,36.470001,52.349998,14.25,6,1,1,0,0,2,4,1,834.33331,-26117.393,0,0,2999.1572 -50,60,112,-9,110,111,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1049.8892,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,4,1,834.33331,-26117.393,0,0,2999.1572 -50,61,113,-9,110,111,3,1,1,19,2,0,1,0,2,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1034.1351,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.360001,58.529999,-9,-9,5,1,1,1,0,2,1,1,905,0,0,0,0 -51,62,114,-9,116,115,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.37488,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,2,1,839,86555.75,0,0,2067.0161 -51,62,115,116,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,0,3,7.8559818,7.8059068,0,2,0,-9,14,0,2,53.963688,0,0,0,37,2,4,3,-9,2,2019,2,2,12,0,42,38,15,1,0,3,0,5.5191503,5.5191503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.34,43.599998,39.490002,45.32,4,2,3,0,0,2,2,1,839,86555.75,0,0,2067.0161 -51,62,116,115,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,-2,-144.9735,0,0,1,39,2,3,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.490002,45.32,43.34,43.599998,3,2,3,0,0,2,2,1,839,86555.75,0,0,2067.0161 -51,62,117,-9,116,115,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.00391,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,1,839,86555.75,0,0,2067.0161 -51,62,118,-9,116,115,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,2,2,1,839,86555.75,0,0,2067.0161 -52,63,119,-9,122,120,3,1,0,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.80518,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,27,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.200001,49.02,-9,-9,7,2,3,0,0,8,2,0,1004.2,22372.088,0,0,2090.5686 -52,63,120,122,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,7.4002028,7.5794754,0,2,0,-9,21,0,6,68.556931,0,0,0,38,2,4,3,3,3,2019,2,1,9,1,24,12,15,1,0,3,0,7.401257,7.401257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,8,2,0,1004.2,22372.088,0,0,2090.5686 -52,63,121,-9,122,120,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.3424,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,1004.2,22372.088,0,0,2090.5686 -52,63,122,120,-9,-9,1,1,0,38,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-6,-62.158443,0,0,1,44,2,4,1,3,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.8841429,3,49,56,52,55,5,2,3,0,0,8,2,0,1004.2,22372.088,0,0,2090.5686 -52,63,123,-9,122,120,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.41119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,1004.2,22372.088,0,0,2090.5686 -53,64,124,-9,-9,-9,1,1,0,40,2,0,2,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1051.3718,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.740002,51.07,-9,-9,6,2,3,0,1,8,1,0,1708,-33506.648,0,0,3032.9253 -53,64,125,-9,124,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-941.34839,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,1,0,1708,-33506.648,0,0,3032.9253 -53,64,126,-9,124,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1043.0975,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.779999,-9,-9,6,2,3,0,0,8,1,0,1708,-33506.648,0,0,3032.9253 -54,65,127,128,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,1,2,0,8.648777,8.5950537,1,0,-9,57,0,1,81.025475,0,0,0,77,1,5,3,2,2,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,2.2735868,107.15777,0,0,0,0,0,1,1,0,5.8513622,8.2730141,0,0,35.970001,36.77,53.98,48.16,5,1,1,0,0,5,4,1,1053.5,1332316,0,0,4119.228 -54,65,128,127,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,0,5,0,5.4377041,5.7738142,1,0,-9,57,0,-1,-96.518639,0,0,0,78,1,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.3866119,5.5886269,120.79043,1,53.98,48.16,35.970001,36.77,6,1,1,0,0,5,4,1,1053.5,1332316,0,0,4119.228 -55,66,129,130,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,2,6.6775603,6.538496,0,1,0,-9,9,0,3,-93.3386,0,0,0,55,2,4,1,3,2,2019,1,2,6,0,8,8,15,1,0,1,0,8.6481571,8.6481571,0,0,0,0,0,0,0,2,0,0,0,3.0969534,0,0,3,63.5,41.470001,57.16,56.150002,4,1,1,0,0,11,3,1,239,464152.5,0,0,1518.7554 -55,66,130,129,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.8320069,7.8653045,0,1,0,-9,9,0,-3,108.7663,0,0,0,58,2,2,1,2,2,2019,1,1,12,0,37,37,15,1,0,1,0,7.4120765,7.4120765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,63.5,41.470001,6,1,1,0,0,11,3,1,239,464152.5,0,0,1518.7554 -55,67,131,-9,130,129,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,6.9900613,6.8026533,0,3,0,0,0,-9,0,-981.98114,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,27,60,15,1,0,-9,1,3.8377736,3.8377736,0,0,0,0,0,0,0,0,0,0,0,2.7079196,0,0,0,42.040001,56.459999,-9,-9,5,1,1,0,0,11,2,1,306,54540.211,0,0,191.41406 -56,68,132,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.9255514,6.8502278,3,0,0,0,-9,0,-976.74036,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0631368,7.1063547,0,0,48.860001,46.27,-9,-9,2,2,3,0,0,9,2,1,478,651873.75,0,0,2031.7076 -57,69,133,-9,136,135,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.4587,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,1,753.40002,116305.02,0,0,2584.5225 -57,69,134,-9,136,135,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.2797,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,1,753.40002,116305.02,0,0,2584.5225 -57,69,135,136,-9,-9,2,1,1,55,1,0,3,0,3,-9,1,1,0,0,3,0,0,0,2,0,-9,9,0,8,-1.9170487,-9,0,0,47,1,5,1,-9,-9,2019,1,1,13,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.0863971,0,0,0,52.650002,51.639999,57.060001,57.759998,5,1,1,0,1,13,2,1,753.40002,116305.02,0,0,2584.5225 -57,69,136,135,-9,-9,1,1,0,47,1,0,3,0,1,-9,1,1,0,0,5,7.6055908,7.6440563,0,2,0,-9,14,0,-8,.13564584,0,0,0,55,3,3,1,3,3,2019,1,2,5,0,35,10,15,1,0,1,0,5.9201798,5.9201798,0,0,0,0,0,0,0,7,1,0,1,6.3255811,0,11.328972,3,57.060001,57.759998,52.650002,51.639999,7,1,1,0,0,13,2,1,753.40002,116305.02,0,0,2584.5225 -57,69,137,-9,136,135,6,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.4153,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,2,1,753.40002,116305.02,0,0,2584.5225 -57,70,138,-9,136,135,3,1,0,19,3,0,3,0,2,-9,7,2,0,0,5,5.9423418,6.6246729,5.4561825,3,0,0,0,-9,0,-889.02777,1,1,1,-9,-9,-9,-9,1,3,2019,-9,0,10,3,8,15,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.728961,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,13,2,1,270,180866.44,0,0,1285.7076 -58,71,139,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,8.5951672,8.9588165,0,3,0,0,0,-9,0,-930.89441,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,66,104,15,1,0,-9,0,9.4247303,9.4247303,0,0,0,0,0,0,0,0,0,0,0,4.9585032,0,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,4,5,1,200,98882.219,0,0,1733.8719 -59,72,140,141,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.3501902,7.3741212,1,0,-9,58,0,0,-65.943161,0,0,0,77,2,4,3,-9,-9,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7427778,7.6750493,0,0,45.900002,41.18,61.119999,51.57,7,1,1,0,0,7,3,1,1124.5,1574177.1,0,0,1975.5311 -59,72,141,140,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.6464672,6.8193383,1,0,-9,58,0,0,-19.843204,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4882965,0,0,61.119999,51.57,45.900002,41.18,7,1,1,0,0,7,3,1,1124.5,1574177.1,0,0,1975.5311 -60,73,142,143,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.702404,8.571744,0,1,0,-9,5,0,2,18.689377,0,0,0,54,2,2,1,-9,-9,2019,1,1,8,0,45,45,15,1,0,1,0,10.928238,10.928238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.389999,54.220001,57.330002,42.93,6,1,1,0,0,6,4,1,3120.5,6358.2461,0,0,2805.0171 -60,73,143,142,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,0,2,6.7020798,6.3659968,0,1,0,-9,28,0,-2,48.094646,-9,0,0,56,2,4,1,3,3,2019,1,2,10,1,42,0,15,1,0,1,0,2.3378866,2.3378866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,42.93,55.389999,54.220001,3,1,1,0,0,6,4,1,3120.5,6358.2461,0,0,2805.0171 -61,74,144,145,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,3,8.4037924,8.1516695,0,1,0,-9,37,0,11,15.124173,0,0,0,54,2,4,1,3,3,2019,1,1,8,1,50,35,15,1,0,1,0,7.8538899,7.8538899,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.242208,3,47.119999,56.68,53.220001,55.200001,3,1,1,0,0,7,4,1,327,414539.75,0,0,1163.9639 -61,74,145,144,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,6.8421144,7.0880508,0,1,0,-9,37,0,-11,-53.445751,0,0,0,65,2,3,1,3,3,2019,1,2,13,1,25,20,15,1,0,1,0,5.6039371,5.6039371,0,0,0,0,0,0,0,42,0,0,0,0,0,41.305313,3,53.220001,55.200001,47.119999,56.68,3,1,1,0,0,7,4,1,327,414539.75,0,0,1163.9639 -61,75,146,-9,145,144,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.3953447,8.2584944,0,3,0,0,0,-9,0,-954.3551,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,38,40,15,1,0,-9,1,14.913409,14.913409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,56.66,-9,-9,5,1,1,0,0,7,4,1,6106,174264.55,0,0,705.30603 -62,76,147,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,0,3,0,7.8827815,8.151742,3,0,0,0,-9,0,-1050.0328,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.6887808,0,0,63.959999,30.07,-9,-9,7,3,4,0,0,8,4,1,294,1649650.1,0,0,2203.7649 -63,77,148,149,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.5445499,7.5528522,1,0,-9,43,0,0,-163.62143,0,0,0,64,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6779819,7.6212392,0,0,55.93,52.619999,50.029999,52.619999,7,1,1,0,0,1,3,1,552,1888320.5,0,0,1788.8569 -63,77,149,148,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,5.7003565,6.1571932,1,0,-9,43,0,0,20.262255,0,0,0,64,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0676694,0,0,50.029999,52.619999,55.93,52.619999,6,1,1,0,0,1,3,1,552,1888320.5,0,0,1788.8569 -64,78,150,-9,152,151,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-777.90784,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,1,0,582,26479.174,0,0,1646.5087 -64,78,151,152,-9,-9,3,1,1,20,1,1,1,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,3,0,0,0,-9,1,0,20,2,1,3,-9,-9,2019,4,1,28,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.9,47.419998,34.990002,30.43,1,1,1,1,0,1,1,0,582,26479.174,0,0,1646.5087 -64,78,152,151,-9,-9,1,1,0,20,1,1,1,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,3,0,0,0,0,1,1,20,2,2,3,-9,-9,2019,4,3,21,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.990002,30.43,20.9,47.419998,4,1,1,0,0,1,1,0,582,26479.174,0,0,1646.5087 -65,79,153,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,1,0,6.3721223,6.5205288,3,0,0,0,-9,0,-978.97766,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.320343,0,0,45.41,22.459999,-9,-9,6,3,4,0,0,8,2,1,476,23804.023,0,0,1833.8224 -66,80,154,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1063.0977,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.82,28.299999,-9,-9,4,1,1,0,0,1,1,0,128,92605.773,0,0,284.94278 -67,81,155,157,-9,-9,1,1,1,40,1,0,1,0,2,-9,2,1,0,0,3,8.9772062,8.9818182,0,2,0,-9,6,0,-2,-18.269972,0,0,0,42,2,2,1,1,1,2019,1,2,14,2,55,55,15,1,0,1,0,26.113548,26.113548,0,0,0,0,0,0,0,0,1,1,0,2.6118517,0,0,0,47.310001,37.560001,25.25,45.439999,4,1,1,0,0,7,5,1,821.33331,244694.81,0,0,4002.4045 -67,81,156,-9,157,155,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.5894,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,821.33331,244694.81,0,0,4002.4045 -67,81,157,155,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,2,7.7218046,7.7743082,0,2,0,-9,6,0,2,-91.161308,0,0,1,40,2,3,1,-9,-9,2019,1,1,22,6,30,0,15,1,1,1,0,11.039761,11.039761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.25,45.439999,47.310001,37.560001,4,1,1,0,0,7,5,1,821.33331,244694.81,0,0,4002.4045 -68,82,158,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,3,7.3414688,7.7101893,0,3,0,0,0,-9,0,-975.32959,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,29,35,15,1,1,-9,0,7.362628,7.362628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.639999,54.119999,-9,-9,6,4,2,0,0,6,3,0,698,190715.66,0,0,-77.37384 -69,83,159,160,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,8.861927,8.9945288,0,1,0,-9,29,0,1,-68.997154,0,0,0,52,1,3,1,1,1,2019,1,2,6,0,38,38,15,1,0,1,0,17.889334,17.889334,0,0,0,0,0,0,0,0,0,0,0,2.7478056,0,0,0,57.330002,53.459999,61.43,43.34,7,1,1,0,0,9,5,1,617.5,1460942.8,0,0,4838.0918 -69,83,160,159,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,9.0832405,8.7831097,0,1,0,-9,29,0,-1,-27.542782,0,0,0,53,1,3,1,2,2,2019,1,1,7,0,45,46,15,1,0,1,0,17.398041,17.398041,0,0,0,0,0,0,0,0,0,0,0,4.5115833,0,0,0,61.43,43.34,57.330002,53.459999,7,1,1,0,0,9,5,1,617.5,1460942.8,0,0,4838.0918 -70,84,161,-9,162,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-958.18463,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,213,353506.13,0,0,1207.9175 -70,84,162,-9,-9,-9,1,1,0,43,3,0,1,0,1,-9,2,1,0,0,5,8.2220583,8.385335,0,4,0,0,0,-9,0,-1021.7468,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,42,44,15,1,0,-9,0,9.4608574,9.4608574,0,0,0,0,0,0,0,2,1,1,0,3.2561879,0,1.483714,3,48.18,61.799999,-9,-9,6,1,1,0,0,2,4,1,213,353506.13,0,0,1207.9175 -71,85,163,-9,165,166,1,1,1,33,2,0,0,0,2,-9,1,1,0,0,4,6.74332,6.7544761,0,3,0,0,0,-9,0,-1101.4424,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,2.789072,2.789072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,1,13,2,1,1764,3469.7466,0,0,365.62582 -71,86,164,-9,165,166,2,1,0,32,2,0,0,0,2,-9,2,1,0,0,5,7.5896077,7.4472351,0,3,0,0,0,-9,0,-930.21783,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,40,15,1,0,-9,1,6.6330037,6.6330037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,5,1,1,0,0,13,3,1,272,-23598.381,0,0,1018.7302 -71,87,165,166,-9,-9,4,1,0,61,1,0,0,0,3,-9,2,1,0,0,5,7.0032988,7.1139469,0,1,0,-9,8,0,-6,42.746952,0,0,0,67,3,3,3,3,3,2019,2,3,6,0,19,19,15,1,0,4,0,7.4008107,7.4008107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,52,48,4,1,1,0,0,13,2,1,974.5,82107.461,0,0,1327.4858 -71,87,166,165,-9,-9,3,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,6,-97.771568,0,0,0,61,3,5,1,3,3,2019,3,4,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,60.02,56.419998,5,1,1,0,0,13,2,1,974.5,82107.461,0,0,1327.4858 -71,88,167,-9,165,166,5,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,8.2165375,8.1894922,0,3,0,0,0,-9,0,-1000.2662,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,0,-9,1,9.0609331,9.0609331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,58.02,-9,-9,6,1,1,0,0,13,4,1,1406,-64740.082,0,0,629.49622 -71,89,168,-9,165,166,6,1,1,21,2,0,0,0,1,1,2,1,0,0,4,7.7457418,7.8159676,0,3,0,0,0,-9,0,-1081.4785,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,0,-9,1,4.6682038,4.6682038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,60.330002,-9,-9,4,1,1,0,0,13,3,1,211,60869.484,0,0,1747.1891 -72,90,169,-9,170,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1007.7998,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,0,545.5,92111.922,0,0,4830.7764 -72,90,170,-9,-9,-9,1,1,0,38,3,0,1,0,1,-9,2,1,0,0,4,9.3003874,9.830719,7.9463868,4,0,0,0,-9,0,-998.48859,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,24.55352,24.55352,0,0,0,0,0,0,0,0,1,1,0,8.3166857,0,0,0,30.889999,61.610001,-9,-9,4,1,1,0,0,9,5,0,545.5,92111.922,0,0,4830.7764 -73,91,171,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,3,0,6.6468387,6.8965087,3,0,0,0,-9,0,-1033.8339,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5818381,6.5411434,0,0,63.950001,33.900002,-9,-9,7,1,1,0,0,6,2,1,175,211577.66,0,0,-338.26926 -74,92,172,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,1,7.9565859,7.55092,0,3,0,0,0,-9,0,-999.17542,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,80,60,15,1,1,-9,0,3.6514421,3.6514421,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.292376,3,21.9,32.150002,-9,-9,2,1,1,0,1,11,3,0,479,-58877.457,0,0,422.48218 -75,93,173,174,-9,-9,2,1,0,67,1,0,0,0,1,-9,2,1,0,0,4,6.7841372,6.7100167,0,1,0,-9,11,0,17,-42.360462,0,0,0,50,1,3,1,1,3,2019,1,1,10,0,50,5,15,1,0,1,0,1.7102135,1.7102135,0,0,0,0,0,0,0,0,1,1,0,6.7871332,0,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,10,2,1,851.5,842514.88,0,0,2155.6167 -75,93,174,173,-9,-9,1,1,1,50,1,0,0,0,1,-9,1,1,0,0,3,0,0,0,1,0,-9,11,0,-17,33.388378,0,0,0,67,1,4,1,2,2,2019,1,2,7,0,30,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,10,2,1,851.5,842514.88,0,0,2155.6167 -76,94,175,176,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,8.1371307,8.0654888,1,0,-9,59,0,-1,-112.8581,0,0,0,77,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.3942404,0,0,67.419998,34.200001,61.119999,51.57,6,1,1,0,0,10,3,1,380,1470936.8,0,0,3401.8271 -76,94,176,175,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,3.0878882,2.8439822,1,0,-9,59,0,1,-15.64779,0,0,0,76,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,3.1748989,10.894063,1,61.119999,51.57,67.419998,34.200001,7,1,1,0,0,10,3,1,380,1470936.8,0,0,3401.8271 -77,95,177,178,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,7.9139495,7.8625188,1,0,-9,43,0,2,109.26007,0,0,0,62,2,2,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7300537,7.7573724,0,0,48.450001,57.490002,51.75,29.450001,2,1,1,0,0,4,3,1,265,838668.19,0,0,2724.6018 -77,95,178,177,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,43,0,-2,41.163471,0,0,0,64,3,3,3,2,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.75,29.450001,48.450001,57.490002,6,1,1,0,0,4,3,1,265,838668.19,0,0,2724.6018 -78,96,179,182,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,4,8.7057219,8.5260639,0,2,0,-9,7,0,-4,44.094009,0,0,0,38,2,4,1,2,2,2019,1,1,9,0,49,46,15,1,0,1,0,12.466697,12.466697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,55.68,57.16,56.150002,5,1,1,0,0,4,4,1,469,132820.69,0,0,4559.8828 -78,96,180,-9,182,179,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.2139,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,1,469,132820.69,0,0,4559.8828 -78,96,181,-9,182,179,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1210.564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,469,132820.69,0,0,4559.8828 -78,96,182,179,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,8.2871733,8.3270435,0,2,0,-9,7,0,4,-109.27834,0,0,1,34,2,4,1,2,2,2019,1,2,7,0,29,26,15,1,0,1,0,18.336061,18.336061,0,0,0,0,0,0,0,0,1,1,0,2.5326781,0,0,0,57.16,56.150002,49.52,55.68,6,1,1,0,0,4,4,1,469,132820.69,0,0,4559.8828 -79,97,183,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,4,7.817275,8.2917805,6.9357982,3,0,0,0,-9,0,-1076.2692,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,12,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9200029,7.1057096,0,0,37.299999,58.689999,-9,-9,5,1,1,0,0,7,4,1,1359,931215.75,0,0,2131.5662 -80,98,184,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,4,0,5.9078422,5.5784059,3,0,0,0,-9,0,-935.98749,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0175695,0,0,48.669998,55.880001,-9,-9,7,1,1,0,0,7,2,0,325,196768.81,0,0,908.86047 -81,99,185,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-986.37177,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,23,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.9392889,0,0,0,1,1,0,2.9457805,0,0,0,32.93,31.219999,-9,-9,3,1,1,0,0,8,1,0,138,0,0,0,1291.0096 -82,100,186,-9,-9,-9,1,1,1,46,3,0,0,0,1,-9,2,1,0,0,3,8.9724998,9.2451744,0,3,0,-9,0,1,0,-976.625,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,41,41,15,1,1,-9,0,23.314262,23.314262,0,0,0,0,0,0,0,0,1,1,0,3.3792295,0,0,0,46.610001,56.93,-9,-9,3,1,1,0,0,6,5,0,529,281070.91,0,0,3144.8223 -83,101,187,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,1,8.1522026,8.2173834,0,3,0,0,0,-9,0,-992.24249,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,34,12,36,36,15,1,1,-9,0,9.6693048,9.6693048,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.945627,3,30.26,18.9,-9,-9,1,1,1,0,0,12,4,0,834,385768.72,0,0,2032.5541 -84,102,188,-9,-9,-9,1,1,1,43,3,0,0,0,1,-9,2,1,0,0,5,8.9853573,8.6601934,0,3,0,0,0,-9,0,-938.71973,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,38,15,1,0,-9,0,22.739534,22.739534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,5,0,1360,430840.25,0,0,1509.9321 -85,103,189,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,6.0580025,6.1002684,3,0,0,0,-9,0,-1110.9901,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3783588,5.6689396,0,0,52.599998,47.34,-9,-9,7,1,1,0,0,12,2,0,200,133082.33,0,0,1581.2548 -86,104,190,191,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,7.6825471,7.7587404,0,1,0,-9,9,0,2,-35.157722,0,0,0,51,2,3,1,3,3,2019,1,2,10,0,40,40,15,1,0,1,0,5.7538447,5.7538447,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.990954,3,65.059998,41.580002,50.07,43.369999,6,1,1,0,0,13,4,1,1019,-30846.879,0,0,1580.7328 -86,104,191,190,-9,-9,2,1,1,51,1,0,0,0,2,-9,1,1,0,0,3,7.7644782,7.814435,0,1,0,-9,9,0,-2,-9.1917353,0,0,0,53,3,4,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,7.0518565,7.0518565,0,0,0,0,0,0,0,7,0,0,0,0,0,2.4203603,3,50.07,43.369999,65.059998,41.580002,5,1,1,0,0,13,4,1,1019,-30846.879,0,0,1580.7328 -87,105,192,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,0,1,0,9.4905014,9.3251467,3,0,0,0,-9,0,-962.0141,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3129854,0,0,47.990002,27.120001,-9,-9,3,1,1,0,1,10,5,0,912,85475.227,0,0,5080.1079 -88,106,193,194,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,8.1086435,7.295114,1,0,-9,50,0,2,-66.04303,0,0,0,69,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2107415,7.7134137,0,0,58.150002,52.91,57.73,54.529999,6,1,1,0,0,10,3,1,934,838698.38,0,0,3994.9956 -88,106,194,193,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,7.047111,6.9282002,1,0,-9,50,0,-2,27.47908,0,0,0,71,3,4,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.3465161,7.4193473,9.5409279,3,57.73,54.529999,58.150002,52.91,6,1,1,0,0,10,3,1,934,838698.38,0,0,3994.9956 -89,107,195,-9,196,198,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1040.0767,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,487.5,1483139.8,0,0,4135.624 -89,107,196,198,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,5,8.334425,8.1201277,0,2,0,-9,14,-9,-3,-6.2866359,-9,0,1,41,1,4,1,1,1,2019,1,1,11,1,69,0,15,1,0,1,0,7.0685449,7.0685449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.630001,58.830002,56.330002,51.02,5,1,1,0,0,9,4,1,487.5,1483139.8,0,0,4135.624 -89,107,197,-9,196,198,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1128.1824,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,487.5,1483139.8,0,0,4135.624 -89,107,198,196,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,8.6459169,8.5370541,0,2,0,-9,14,-9,3,8.6710949,-9,0,0,38,1,5,1,2,2,2019,1,2,9,0,83,0,15,1,0,1,0,6.7776213,6.7776213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.330002,51.02,54.630001,58.830002,7,1,1,0,0,9,4,1,487.5,1483139.8,0,0,4135.624 -90,108,199,200,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,7.1484685,8.2928257,7.812417,1,0,-9,17,0,1,8.9491158,0,0,0,61,1,3,1,2,2,2019,1,2,7,0,19,28,15,1,0,1,0,7.3609438,7.3609438,0,0,0,0,0,0,0,0,0,0,0,2.3835769,7.6292458,0,0,60.119999,54.799999,49,48,6,1,1,0,0,4,4,1,481.5,832115,0,0,3326.949 -90,108,200,199,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,3,8.1716042,8.0488129,0,1,0,-9,8,0,-1,-24.161077,0,0,0,62,3,4,1,-9,-9,2019,1,1,11,2,21,23,15,1,0,1,0,15.669127,15.669127,0,0,0,0,0,0,0,0,0,0,0,.87312776,0,0,0,49,48,60.119999,54.799999,5,1,1,0,0,4,4,1,481.5,832115,0,0,3326.949 -90,109,201,-9,200,199,3,1,1,31,2,0,0,0,2,-9,1,1,0,0,4,8.0578909,8.325304,0,3,0,0,0,-9,0,-1049.9475,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,40,40,15,1,0,-9,1,8.1832342,8.1832342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,4,4,1,823,-173141.86,0,0,800.50116 -91,110,202,203,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,0,4,4.9130635,5.0907745,0,1,0,-9,35,0,-2,55.060898,0,0,0,60,2,3,1,2,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.9481032,0,0,3,46.389999,60.990002,45.720001,53.169998,4,1,1,0,0,9,1,1,673.33331,921677.75,0,0,684.55438 -91,110,203,202,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,36,0,2,8.8913002,0,0,0,58,2,4,3,3,3,2019,2,1,10,0,0,50,15,1,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.0521746,0,5.6656275,3,45.720001,53.169998,46.389999,60.990002,5,1,1,0,0,9,1,1,673.33331,921677.75,0,0,684.55438 -91,110,204,-9,202,203,5,1,0,16,2,0,0,0,2,1,2,2,0,0,4,5.0196815,5.3178682,0,1,0,0,0,-9,0,-997.73517,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.49217558,0,0,0,49.799999,56.68,-9,-9,6,1,1,0,0,9,1,1,673.33331,921677.75,0,0,684.55438 -91,111,205,-9,202,203,3,1,1,26,2,0,0,0,2,1,2,1,0,0,5,5.9799671,6.2946634,0,3,0,0,0,-9,0,-1022.7885,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,27,0,15,1,0,-9,1,2.7398641,2.7398641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.630001,58.830002,-9,-9,2,1,1,0,0,9,2,1,1558,22488.246,0,0,-771.75049 -91,112,206,-9,202,203,6,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,8.4232197,8.1767578,0,3,0,0,0,-9,0,-906.70239,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,55,62,15,1,0,-9,1,7.4728236,7.4728236,0,0,0,0,0,0,0,0,1,1,0,1.7552028,0,0,0,40.32,47.77,-9,-9,4,1,1,0,0,9,4,1,300,-156865.53,0,0,589.24902 -91,113,207,-9,202,203,4,1,0,20,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1106.1006,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0126667,0,0,0,32.419998,58.049999,-9,-9,5,1,1,0,0,9,1,1,509,-2887.2505,0,0,-601.09161 -92,114,208,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,1,0,5.8651233,5.9388433,3,0,0,0,-9,0,-930.51117,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,98.734154,0,0,0,1,1,0,0,5.7152243,0,0,33.560001,17.190001,-9,-9,2,1,1,0,0,12,2,0,396,201088.42,0,0,1981.1244 -93,115,209,-9,212,210,5,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.0098,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,2,0,407.66666,-45259.605,0,0,3010.7205 -93,115,210,212,-9,-9,2,1,1,34,1,0,4,0,3,-9,2,1,0,0,4,8.1157179,8.0718775,0,2,0,-9,6,0,-2,69.115379,0,0,0,36,3,4,3,2,2,2019,2,1,6,0,38,42,15,1,0,3,0,10.849746,10.849746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.279999,37,50.59,5,3,4,0,0,8,2,0,407.66666,-45259.605,0,0,3010.7205 -93,115,211,-9,212,210,3,1,0,11,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-988.57526,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,8,2,0,407.66666,-45259.605,0,0,3010.7205 -93,115,212,210,-9,-9,1,1,0,36,1,0,4,0,3,-9,3,3,0,0,4,0,4.2349892,4.2055407,2,0,-9,6,0,2,-165.52376,0,0,1,34,3,4,1,1,2,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4839621,0,0,0,37,50.59,46.48,58.279999,3,4,2,1,0,8,2,0,407.66666,-45259.605,0,0,3010.7205 -93,115,213,-9,212,210,6,1,1,17,2,0,4,1,2,-9,7,2,0,0,4,5.9815803,5.961441,0,2,0,-9,0,-9,0,-1028.7344,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1617599,0,0,0,57.16,56.150002,-9,-9,2,4,2,0,0,8,2,0,407.66666,-45259.605,0,0,3010.7205 -93,115,214,-9,212,210,4,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.5463,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,8,2,0,407.66666,-45259.605,0,0,3010.7205 -94,116,215,216,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,8.5735807,8.6475906,3.5606539,1,0,-9,7,0,1,-96.787338,0,0,0,57,2,3,1,3,3,2019,1,2,8,0,47,57,15,1,0,1,0,14.387996,14.387996,0,0,0,0,0,0,0,0,0,0,0,4.8395429,3.7485857,0,0,54.200001,57.490002,59.48,44.27,6,1,1,0,0,8,5,0,566,3665200.5,0,0,6198.3438 -94,116,216,215,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,9.5018005,9.5807028,0,1,0,-9,7,0,-1,66.020981,0,0,0,58,1,4,1,-9,-9,2019,1,1,5,0,55,45,15,1,0,1,0,29.805719,29.805719,0,0,0,0,0,0,0,0,0,0,0,7.852953,0,0,0,59.48,44.27,54.200001,57.490002,6,1,1,0,0,8,5,0,566,3665200.5,0,0,6198.3438 -95,117,217,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.699625,8.9913664,0,3,0,0,0,-9,0,-1066.9496,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,40,41,15,1,1,-9,0,23.876272,23.876272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.700001,59.169998,-9,-9,5,1,1,0,0,8,5,0,1367,274692,0,0,596.02026 -96,118,218,219,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,8.6910906,8.8497782,0,1,0,-9,4,0,5,66.131325,0,0,0,46,2,3,1,-9,-9,2019,1,1,10,0,42,42,15,1,0,1,0,20.337534,20.337534,0,0,0,0,0,0,0,0,0,0,0,6.2666526,0,0,0,54.200001,57.490002,52.400002,52.91,6,1,1,0,0,4,5,1,726.5,313291.25,0,0,3852.9446 -96,118,219,218,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.5890713,8.4792442,0,1,0,-9,4,0,-5,-26.229277,0,0,0,51,2,4,1,3,3,2019,1,2,9,0,32,32,15,1,0,1,0,17.411955,17.411955,0,0,0,0,0,0,0,0,0,0,0,1.7285023,0,0,0,52.400002,52.91,54.200001,57.490002,5,1,1,0,0,4,5,1,726.5,313291.25,0,0,3852.9446 -97,119,220,-9,221,222,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.36548,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,5,1,401.33334,650793.06,0,0,4665.9951 -97,119,221,222,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,4,8.906312,8.5811005,0,2,0,-9,8,0,-1,70.082588,0,0,0,52,1,4,1,2,2,2019,1,1,24,10,36,49,15,1,1,1,0,18.202555,18.202555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,58.150002,52.91,6,1,1,0,0,1,5,1,401.33334,650793.06,0,0,4665.9951 -97,119,222,221,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,8.7582464,8.8511734,0,2,0,-9,8,0,1,-34.297836,0,0,0,51,1,4,1,3,3,2019,1,2,6,0,42,42,15,1,0,1,0,17.415783,17.415783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,43.540001,59.599998,6,1,1,0,0,1,5,1,401.33334,650793.06,0,0,4665.9951 -98,120,223,224,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.9117641,7.7130175,0,1,0,-9,40,0,0,-81.030334,0,0,0,58,2,3,1,3,3,2019,1,1,8,0,37,36,15,1,0,1,0,8.0095978,8.0095978,0,0,0,0,0,0,0,2,0,0,0,3.1376359,0,6.9911175,3,53.560001,49.66,57.330002,53.459999,6,1,1,0,0,7,4,1,682.5,926440.69,0,0,3156.4419 -98,120,224,223,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.1121531,8.2550163,0,1,0,-9,40,0,0,-2.1926134,0,0,0,58,2,3,1,3,3,2019,1,2,8,0,40,42,15,1,0,1,0,11.054821,11.054821,0,0,0,0,0,0,0,0,0,0,0,2.3782933,0,0,0,57.330002,53.459999,53.560001,49.66,6,1,1,0,0,7,4,1,682.5,926440.69,0,0,3156.4419 -99,121,225,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,2,1,0,0,2,6.9543953,7.7322049,7.193871,3,0,0,0,-9,0,-1084.7172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,18,20,15,1,0,-9,0,6.3514977,6.3514977,0,0,0,0,0,0,0,0,1,1,0,1.4013515,6.938982,0,0,57.18,45.759998,-9,-9,5,1,1,0,0,12,3,1,308,776216.19,0,0,1871.0884 -100,122,226,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,2,0,6.6203175,6.4990711,3,0,0,0,-9,0,-974.50177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3759303,0,0,50,35,-9,-9,6,1,1,0,0,7,2,1,482,313815.91,0,0,839.01776 -101,123,227,228,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,9.4358511,9.5065575,8.0885715,1,0,-9,8,0,0,110.96521,0,0,0,60,2,3,1,3,3,2019,1,1,21,10,35,30,15,1,1,1,0,45.722134,45.722134,0,0,0,0,0,0,0,0,0,0,0,5.4318509,8.730731,0,0,29.219999,58.490002,44.950001,52.41,4,1,1,0,0,11,5,1,595,1545243.3,0,0,9311.874 -101,123,228,227,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,0,3,8.8119307,8.9567499,4.679862,1,0,-9,8,0,0,-63.533447,0,0,0,60,2,3,1,3,3,2019,1,2,9,0,10,10,15,1,0,1,0,78.036919,78.036919,0,0,0,0,0,0,0,0,0,0,0,4.9468017,4.6529937,0,0,44.950001,52.41,29.219999,58.490002,5,1,1,0,0,11,5,1,595,1545243.3,0,0,9311.874 -102,124,229,231,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,0,2,8.774128,9.0499353,0,2,0,-9,32,0,-1,-18.07975,0,0,0,50,2,4,1,3,3,2019,1,1,12,0,80,90,15,1,0,1,0,9.6454077,9.6454077,0,0,0,0,0,0,0,0,1,0,1,7.5931945,0,0,0,50.75,39.209999,57.849998,44.810001,6,1,1,0,0,2,5,0,617,117097.9,0,0,7027.9893 -102,124,230,-9,231,229,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,4.4250798,4.3097191,0,2,0,0,0,-9,0,-828.91272,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,22,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.97995824,0,0,0,60.02,56.419998,-9,-9,1,1,1,0,0,2,5,0,617,117097.9,0,0,7027.9893 -102,124,231,229,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,8.5168877,8.5801487,0,2,0,-9,30,0,1,-61.098896,0,0,0,49,2,2,1,3,3,2019,1,2,12,0,6,23,15,1,0,1,0,102.05766,102.05766,0,0,0,0,0,0,0,0,1,0,1,7.8846097,0,0,0,57.849998,44.810001,50.75,39.209999,2,1,1,0,0,2,5,0,617,117097.9,0,0,7027.9893 -102,125,232,-9,231,229,4,1,0,21,2,0,1,0,1,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-942.9447,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,26,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.490002,53.310001,-9,-9,3,1,1,1,1,2,1,0,308,-122647.45,0,0,0 -103,126,233,-9,-9,-9,1,1,0,49,2,1,1,0,3,-9,2,1,0,0,2,7.4481864,7.8372011,0,4,0,0,0,-9,0,-1095.2941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,30,30,15,1,0,-9,0,7.2026029,7.2026029,0,0,0,0,0,0,0,7,1,1,0,0,0,10.322082,3,36.119999,41.509998,-9,-9,5,1,1,0,0,13,3,0,406,155611.45,0,0,86.238823 -103,127,234,-9,233,-9,2,1,0,25,2,1,1,0,2,-9,2,1,0,0,4,8.2058849,8.6521492,0,3,0,0,0,-9,0,-1045.7372,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,48,49,15,1,1,-9,1,8.2533903,8.2533903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.23,58.68,-9,-9,5,1,1,0,0,13,4,0,975.5,35568.813,0,0,2815.0039 -103,127,235,-9,234,-9,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-984.66864,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,4,0,975.5,35568.813,0,0,2815.0039 -104,128,236,237,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,8.0544949,8.3218431,1,0,-9,47,0,4,-103.14246,0,0,0,68,2,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0186172,8.2320957,0,0,50.869999,56.130001,54.200001,57.490002,6,1,1,0,0,2,4,1,352.5,1239720.5,0,0,5278.9443 -104,128,237,236,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.735559,8.1517305,1,0,-9,47,0,-4,-40.951214,0,0,0,72,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8097472,7.858705,0,0,54.200001,57.490002,50.869999,56.130001,6,1,1,0,0,2,4,1,352.5,1239720.5,0,0,5278.9443 -105,129,238,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,1,3,7.8703876,7.2937922,0,3,0,0,0,-9,0,-1055.5253,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,10,2,40,39,15,1,0,-9,0,7.2845902,7.2845902,0,0,0,0,0,0,0,0,1,1,0,.27775893,0,0,0,47.48,33.599998,-9,-9,4,1,1,0,0,5,3,0,1751,-126980.91,0,0,1971.0255 -106,130,239,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,0,2,0,7.614152,7.555038,3,0,0,0,-9,0,-1064.1798,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0678174,7.4926233,0,0,59.900002,32.119999,-9,-9,6,1,1,0,0,1,3,1,567,164552.45,0,0,809.65002 -107,131,240,241,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,0,3,8.4798145,8.6117067,0,2,0,-9,9,0,0,78.47834,0,0,0,53,2,4,1,2,2,2019,1,1,17,6,50,50,15,1,1,1,0,14.490433,14.490433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.610001,54.849998,58.150002,52.91,6,1,1,0,1,2,5,1,756.5,1738105.3,0,0,4889.0762 -107,131,241,240,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.8737516,8.7621088,0,2,0,-9,9,0,0,-118.0453,0,0,0,53,2,3,1,2,2,2019,1,2,11,0,50,45,15,1,0,1,0,12.987133,12.987133,0,0,0,0,0,0,0,0,0,0,0,2.9259751,0,0,0,58.150002,52.91,42.610001,54.849998,5,1,1,0,0,2,5,1,756.5,1738105.3,0,0,4889.0762 -107,132,242,-9,240,241,3,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,6.5146537,6.9513535,3,0,0,0,-9,0,-1010.2018,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4984827,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,2,2,1,2150,77441.523,0,0,-265.21741 -107,133,243,-9,240,241,4,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,6.6681123,6.8993526,3,0,0,0,-9,0,-1040.2917,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7651591,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,1,297,-115484.38,0,0,-705.68628 -108,134,244,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.3395295,7.5703549,0,3,0,0,0,-9,0,-986.02893,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,31,32,15,1,0,-9,0,8.2986488,8.2986488,0,0,0,0,0,0,0,7,1,1,0,3.5949485,0,6.8416858,3,61.43,43.34,-9,-9,6,1,1,0,0,12,3,1,2485,346880.63,0,0,964.09155 -108,135,245,-9,244,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,8.389884,8.1218061,0,3,0,0,0,-9,0,-1009.067,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,36,38,15,1,0,-9,1,11.085273,11.085273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,1,1,1,0,0,12,4,1,1087,188753.08,0,0,1013.8144 -109,136,246,248,-9,-9,1,1,0,36,1,1,1,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,9,-9,0,-45.195255,-9,0,1,36,3,4,1,3,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,36.240002,54.810001,6,1,1,0,0,5,2,1,2038.3334,72067.094,0,0,1031.6576 -109,136,247,-9,246,248,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-965.55975,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,2,1,2038.3334,72067.094,0,0,1031.6576 -109,136,248,246,-9,-9,2,1,1,36,1,1,1,0,3,-9,1,1,0,0,4,7.2443423,7.1529522,0,2,0,-9,9,-9,0,20.176607,-9,0,0,36,1,4,1,2,2,2019,1,1,20,8,34,0,15,1,1,1,0,5.3941221,5.3941221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.240002,54.810001,54.790001,55.860001,3,1,1,0,1,5,2,1,2038.3334,72067.094,0,0,1031.6576 -110,137,249,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,0,3,4.0341611,7.1765442,7.2135997,3,0,0,0,-9,0,-1056.7109,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2540607,7.2877598,0,0,52.650002,51.639999,-9,-9,6,1,1,0,0,5,3,1,234,331859.88,0,0,1134.3728 -111,138,250,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,1,3,0,6.1892323,6.4305105,3,0,0,0,-9,0,-979.58337,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,0,15,4,1,-9,0,0,0,1,8.2135944,0,0,0,0,38.136845,0,1,1,0,0,6.5225692,0,0,24.559999,44.139999,-9,-9,5,1,1,0,0,10,2,0,1615,536616.5,0,0,213.84981 -112,139,251,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-988.48615,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.459999,32.799999,-9,-9,7,1,1,0,0,7,1,0,1231,54812.605,0,0,1579.1012 -113,140,252,253,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.3537512,8.088706,0,1,0,-9,36,0,-2,-94.019218,0,0,0,61,1,3,1,3,2,2019,1,1,12,0,35,38,15,1,0,1,0,13.902436,13.902436,0,0,0,0,0,0,0,7,0,0,0,0,0,8.8249826,3,54.200001,57.490002,58.919998,48.59,6,1,1,0,0,1,5,1,327.5,946963.5,0,0,7689.9834 -113,140,253,252,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,9.5313644,9.5425615,7.5742664,1,0,-9,11,0,2,-52.676674,0,0,0,59,2,4,1,-9,-9,2019,1,2,13,1,45,35,15,1,0,1,0,27.113167,27.113167,0,0,0,0,0,0,0,0,0,0,0,7.0338626,7.4332776,0,0,58.919998,48.59,54.200001,57.490002,6,1,1,0,0,1,5,1,327.5,946963.5,0,0,7689.9834 -114,141,254,255,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,5.6131821,5.796958,1,0,-9,53,0,-1,45.087315,0,0,0,74,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8479848,0,0,57.16,56.150002,62.490002,55.09,7,1,1,0,0,1,3,1,449,720601.19,0,0,2028.8701 -114,141,255,254,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.6836662,8.0073824,1,0,-9,53,0,1,-38.545853,0,0,0,73,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8047549,7.4728174,0,0,62.490002,55.09,57.16,56.150002,7,1,1,0,0,1,3,1,449,720601.19,0,0,2028.8701 -115,142,256,257,-9,-9,2,1,1,90,1,0,0,0,3,-9,4,3,0,1,5,0,6.0789375,5.9489999,1,0,-9,51,0,8,-45.178249,0,0,0,82,3,2,3,3,3,2019,4,1,11,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,3.8070297,6.5000997,0,3,50.23,42.880001,63.259998,29.17,7,1,1,0,0,6,3,1,1235,625483.94,0,0,2847.6199 -115,142,257,256,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,0,2,0,7.7679954,8.0219421,1,0,-9,51,0,-8,.1415956,0,0,0,90,3,5,3,2,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.9384022,7.7717829,5.3747859,1,63.259998,29.17,50.23,42.880001,7,1,1,0,0,6,3,1,1235,625483.94,0,0,2847.6199 -116,143,258,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,0,5,9.1563921,9.1446772,0,3,0,0,0,-9,0,-1058.4761,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,38,37,15,1,0,-9,0,24.907524,24.907524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.080002,61.810001,-9,-9,5,1,1,0,0,1,5,1,483,393215.5,0,0,4988.7939 -116,144,259,-9,-9,258,2,1,0,18,2,0,0,0,2,-9,2,1,0,0,3,6.5705237,6.6462917,0,3,0,0,0,-9,0,-950.81445,0,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,14,4,14,0,15,1,1,-9,1,5.9265633,5.9265633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.119999,55.5,-9,-9,6,1,1,0,0,1,2,1,196,0,0,0,1015.2263 -117,145,260,261,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,3,8.5860739,8.7497416,0,1,0,-9,5,0,-1,37.692581,0,0,0,57,3,3,1,-9,-9,2019,1,1,6,0,41,37,15,1,0,1,0,17.046204,17.046204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.900002,50.369999,57.900002,51.84,6,2,3,0,0,7,5,1,329.5,3692751.5,0,0,5284.1938 -117,145,261,260,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,3,8.8752556,9.0719557,0,1,0,-9,5,0,1,-16.15951,0,0,0,56,1,3,1,3,1,2019,1,2,10,0,37,39,15,1,0,1,0,31.867144,31.867144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.900002,51.84,52.900002,50.369999,6,2,3,0,0,7,5,1,329.5,3692751.5,0,0,5284.1938 -118,146,262,263,-9,-9,2,1,0,48,1,0,3,0,1,-9,6,3,0,1,5,0,0,0,2,0,-9,17,0,5,121.19722,0,0,0,43,1,3,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.361,3,57.060001,57.759998,43.709999,56.91,6,1,1,0,0,13,4,1,486.5,450651.56,0,0,4294.1504 -118,146,263,262,-9,-9,1,1,1,43,1,0,3,0,1,-9,1,1,0,0,3,9.2575264,8.9191275,0,2,0,-9,17,0,-5,14.207841,0,0,0,48,1,5,3,3,3,2019,2,2,8,0,37,40,15,1,0,3,0,30.3769,30.3769,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.593927,3,43.709999,56.91,57.060001,57.759998,5,1,1,0,0,13,4,1,486.5,450651.56,0,0,4294.1504 -119,147,264,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,1,1,0,0,4,5.653141,5.6068268,0,3,0,0,0,-9,0,-1046.8882,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,35,38,15,1,0,-9,0,1.0550884,1.0550884,0,0,0,0,0,0,0,0,0,0,0,3.8233333,0,0,0,54.740002,57.220001,-9,-9,6,1,1,0,0,9,2,1,137,36991.816,0,0,-844.3938 -120,148,265,266,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.8474598,8.8523836,0,1,0,-9,8,0,-2,39.13501,0,0,0,57,2,4,1,2,2,2019,1,2,9,0,38,37,15,1,0,1,0,15.851951,15.851951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,13,5,1,299.5,257830.8,0,0,6192.6313 -120,148,266,265,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,9.3471527,9.3914967,0,1,0,-9,8,0,2,-41.998333,0,0,0,55,2,4,1,3,3,2019,1,1,6,0,38,37,15,1,0,1,0,26.388391,26.388391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,13,5,1,299.5,257830.8,0,0,6192.6313 -120,149,267,-9,266,265,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,6.9988279,6.987504,0,3,0,0,0,-9,0,-988.13605,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,35,37,15,1,0,-9,1,3.3944666,3.3944666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,2,1,1504,193600.27,0,0,-530.461 -120,150,268,-9,266,265,4,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1063.38,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,13,1,1,470,-208573.23,0,0,0 -121,151,269,-9,-9,-9,1,1,0,47,3,0,1,0,3,-9,2,1,0,0,4,7.971128,7.7048798,0,4,0,0,0,-9,0,-962.93921,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,15,3,27,37,15,1,0,-9,0,9.062623,9.062623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.049999,-9,-9,2,1,1,0,1,2,3,0,216,-169388.91,0,0,1060.3325 -121,152,270,-9,269,-9,2,1,0,22,2,0,1,0,2,-9,2,1,0,0,3,7.0815382,7.5284972,0,3,0,0,0,-9,0,-1057.0181,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,20,8,22,0,15,1,1,-9,1,6.6401782,6.6401782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.619999,60.23,-9,-9,4,1,1,0,0,2,2,0,699,104240.07,0,0,-233.47156 -121,153,271,-9,269,-9,4,1,1,27,2,0,1,0,2,-9,2,1,0,0,2,8.7057896,8.4814825,0,3,0,0,0,-9,0,-983.48376,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,60,40,15,1,0,-9,1,10.733694,10.733694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.610001,51.040001,-9,-9,3,1,1,0,0,2,5,0,924,-54338.676,0,0,2351.1809 -122,154,272,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,2,8.313343,8.6968641,0,3,0,0,0,-9,0,-1093.9025,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,50,55,15,1,0,-9,0,12.186113,12.186113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.459999,55.580002,-9,-9,5,1,1,0,0,9,5,1,722,178189.11,0,0,2240.999 -123,155,273,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,0,4,9.6028032,9.1665125,0,3,0,0,0,-9,0,-1013.752,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,51,15,1,0,-9,0,21.135389,21.135389,0,0,0,0,0,0,0,0,0,0,0,7.2807732,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,12,5,1,287,321296.47,0,0,860.86511 -124,156,274,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,0,3,0,7.6715937,7.4299731,3,0,0,0,-9,0,-1047.594,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0018439,7.4062409,0,0,63.98,38.080002,-9,-9,4,1,1,0,0,12,3,1,469,380456.56,0,0,2273.5923 -125,157,275,-9,-9,-9,1,1,1,92,3,0,0,0,1,-9,4,3,0,0,2,0,7.0072827,6.9510355,3,0,0,0,-9,0,-1008.7891,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4058156,7.2496352,0,0,49.82,38.259998,-9,-9,6,1,1,0,0,1,2,1,358,183969.84,0,0,372.7822 -126,158,276,277,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,3,8.5793133,8.4007177,0,2,0,-9,34,0,0,1.9918592,0,0,0,52,1,5,1,-9,-9,2019,1,2,17,5,38,40,15,1,1,1,0,14.862246,14.862246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,61.400002,54.41,5,1,1,0,0,8,5,1,1140.5,2182617.5,0,0,5806.4932 -126,158,277,276,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,0,5,9.0202885,9.0964689,0,2,0,-9,34,0,0,-49.099777,0,0,0,52,1,3,1,2,2,2019,1,1,6,0,43,44,15,1,0,1,0,21.59894,21.59894,0,0,0,0,0,0,0,0,0,0,0,8.2116699,0,0,0,61.400002,54.41,54.369999,54.799999,2,2,3,0,0,8,5,1,1140.5,2182617.5,0,0,5806.4932 -126,159,278,-9,277,276,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,6.8066316,6.4133115,0,3,0,0,0,-9,0,-1059.4525,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.82,62.330002,-9,-9,6,4,2,0,0,8,5,1,793,-171407.28,0,0,764.48114 -127,160,279,280,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,8.6159077,8.6831703,1,0,-9,29,0,1,-28.524445,0,0,0,67,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.292994,8.8744221,0,0,56.110001,44.400002,43.439999,23.25,6,1,1,0,0,8,4,1,1014,2926977,0,0,4909.1416 -127,160,280,279,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,7.1766243,7.1989474,1,0,-9,28,0,-1,-7.0328803,0,0,0,68,1,3,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,7.3228755,0,0,0,0,0,1,1,0,6.6253982,7.1966367,0,3,43.439999,23.25,56.110001,44.400002,6,1,1,0,0,8,4,1,1014,2926977,0,0,4909.1416 -128,161,281,282,-9,-9,2,1,0,31,1,1,1,0,2,-9,5,1,0,0,3,8.0561295,8.1292534,0,2,0,-9,1,-9,-3,57.828197,-9,0,1,34,2,4,1,-9,-9,2019,1,1,9,2,48,0,15,1,0,1,0,9.0620651,9.0620651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,50.720001,50.740002,7,1,1,0,0,5,4,1,912,230241.16,0,0,3999.3982 -128,161,282,281,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.5171242,8.4142962,0,2,0,-9,1,-9,3,13.814715,-9,0,0,31,2,3,1,-9,3,2019,1,2,9,0,48,0,15,1,0,1,0,11.683992,11.683992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.720001,50.740002,41.23,59.349998,6,4,2,0,0,5,4,1,912,230241.16,0,0,3999.3982 -128,161,283,-9,281,282,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1003.0922,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,5,4,1,912,230241.16,0,0,3999.3982 -129,162,284,285,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,8.1752901,8.1112576,0,1,0,-9,10,0,-5,108.69875,-9,0,0,62,3,3,3,1,1,2019,2,1,11,0,30,0,15,1,0,4,0,11.891551,11.891551,0,0,0,0,0,0,0,0,0,0,0,2.8117225,0,0,0,55.189999,54.259998,47.389999,34.720001,6,1,1,0,0,9,4,1,1349,613725.13,0,0,2785.8613 -129,162,285,284,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,0,3,0,7.1009669,6.9473739,1,0,-9,31,0,5,32.802982,0,0,0,57,1,4,1,3,3,2019,3,2,14,3,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.812017,6.851346,0,0,47.389999,34.720001,55.189999,54.259998,6,1,1,0,0,9,4,1,1349,613725.13,0,0,2785.8613 -130,163,286,287,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,5.8856626,5.8793578,1,0,-9,29,0,9,-120.99287,0,0,0,60,3,3,1,3,3,2019,3,2,13,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7696643,0,0,46.599998,45.029999,50,49,4,3,4,0,1,8,3,0,774,1610899.3,0,0,2364.5359 -130,163,287,286,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.0379677,8.0102119,0,1,0,-9,10,0,0,-46.576046,0,0,0,69,3,2,3,-9,-9,2019,2,1,10,1,0,40,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,46.599998,45.029999,5,3,4,0,0,8,3,0,774,1610899.3,0,0,2364.5359 -131,164,288,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,1,0,6.1214337,6.4244113,3,0,0,0,-9,0,-1032.6406,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,7.3830342,0,0,1,1,0,0,6.2505608,0,0,32.66,19.299999,-9,-9,7,1,1,0,0,9,2,1,266,199500.13,0,0,766.99768 -132,165,289,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1073.7777,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.2879196,0,0,1,1,0,0,0,0,0,46.869999,24.74,-9,-9,6,1,1,0,0,5,1,1,785,-26552.035,0,0,-461.68127 -133,166,290,-9,291,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.2769,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,875.5,64816.398,0,0,1708.4304 -133,166,291,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,7.6432943,7.5922365,0,4,0,0,0,-9,0,-1041.3987,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,24,12,24,24,15,1,1,-9,0,10.118697,10.118697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.16,65.32,-9,-9,3,1,1,0,0,4,3,0,875.5,64816.398,0,0,1708.4304 -134,167,292,-9,-9,-9,1,1,1,23,2,0,0,0,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1060.9757,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,24,12,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.84,55.700001,-9,-9,3,1,1,0,0,9,1,0,1393,89377.828,0,0,0 -135,168,293,-9,295,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-856.04187,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,6,5,1,363.66666,322165.56,0,0,2753.5649 -135,168,294,-9,295,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-926.3775,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,5,1,363.66666,322165.56,0,0,2753.5649 -135,168,295,-9,-9,-9,1,1,0,50,2,0,2,0,1,-9,2,1,0,1,2,8.9141474,8.9451857,6.7670898,4,0,0,0,-9,0,-965.41345,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,25,8,38,42,15,1,1,-9,0,24.558434,24.558434,0,0,0,0,0,0,0,27.5,1,1,0,7.5179877,0,30.124384,3,29.110001,46.529999,-9,-9,2,1,1,0,0,6,5,1,363.66666,322165.56,0,0,2753.5649 -136,169,296,-9,297,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.04773,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,1067.5,581706.63,0,0,4267.5332 -136,169,297,299,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,5,8.4190254,8.9289465,6.2319059,2,0,-9,3,0,-4,-32.185341,0,0,1,43,2,4,1,2,1,2019,1,4,10,0,35,25,15,1,0,1,0,14.281222,14.281222,0,0,0,0,0,0,0,7,1,1,0,6.8339014,0,14.786654,3,54.099998,59.110001,48.990002,34.16,6,1,1,0,0,5,4,1,1067.5,581706.63,0,0,4267.5332 -136,169,298,-9,297,-9,2,1,1,16,2,0,1,0,2,-9,2,2,0,0,5,6.4385929,6.2249761,0,2,0,0,0,-9,0,-949.00922,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,5,4,1,1067.5,581706.63,0,0,4267.5332 -136,169,299,297,-9,-9,4,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.1203279,7.868279,0,2,0,-9,3,0,4,4.4370179,0,0,0,39,2,5,1,-9,-9,2019,1,1,16,5,56,38,15,1,1,1,0,6.0706892,6.0706892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.990002,34.16,54.099998,59.110001,5,1,1,0,0,5,4,1,1067.5,581706.63,0,0,4267.5332 -137,170,300,301,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,5,8.0181675,8.2146053,0,1,0,-9,6,0,3,-18.378054,0,1,0,25,1,4,1,-9,-9,2019,1,1,7,0,50,47,15,1,0,1,0,7.2421293,7.2421293,0,0,0,0,0,0,0,0,0,0,0,1.8104154,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,5,4,1,956,68286.477,0,0,2285.2361 -137,170,301,300,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,8.3218632,8.3861923,0,1,0,-9,6,0,-3,1.4487762,0,1,1,28,2,5,1,2,2,2019,1,2,7,0,43,40,15,1,0,1,0,9.1552896,9.1552896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,5,4,1,956,68286.477,0,0,2285.2361 -138,171,302,303,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,9.1189318,9.8002625,8.6159973,1,0,-9,7,0,8,19.566271,0,0,0,53,2,3,1,2,2,2019,1,2,12,1,40,40,15,1,0,1,0,37.056019,37.056019,0,0,0,0,0,0,0,0,0,0,0,2.7462211,8.7143526,0,0,49.060001,58.639999,48,49,3,1,1,0,1,7,5,1,698,1434559.9,0,0,7530.7935 -138,171,303,302,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,6.7319999,6.7438431,0,1,0,-9,7,0,-8,-93.35849,0,0,0,61,2,4,1,3,2,2019,1,1,12,2,12,12,15,1,0,1,0,10.011435,10.011435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,49.060001,58.639999,5,1,1,0,0,7,5,1,698,1434559.9,0,0,7530.7935 -139,172,304,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,3,0,6.4155893,6.3653626,3,0,0,0,-9,0,-1165.1592,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4076724,0,0,25.9,47.57,-9,-9,6,1,1,0,0,12,2,0,2409,90819.172,0,0,2033.3304 -140,173,305,306,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,0,3,8.1425066,8.1320753,0,1,0,-9,2,0,-2,-9.8209372,0,1,0,27,2,5,1,-9,3,2019,1,4,7,1,60,37,15,1,0,1,0,5.582324,5.582324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.459999,46.990002,41.52,53.669998,6,2,3,0,0,6,3,0,590,-160796.81,0,0,1829.5398 -140,173,306,305,-9,-9,4,1,0,27,1,0,0,0,2,-9,2,1,0,0,5,6.333344,6.4235511,0,1,0,-9,2,0,2,125.03458,0,1,1,25,2,3,1,-9,-9,2019,1,1,8,3,16,0,15,1,0,1,0,3.850564,3.850564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,53.669998,59.459999,46.990002,4,2,3,0,0,6,3,0,590,-160796.81,0,0,1829.5398 -140,174,307,308,-9,-9,3,1,0,26,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,4,0,1,-114.33939,0,1,1,25,2,5,1,-9,-9,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.650002,30.370001,43.110001,59.91,5,2,3,0,0,6,2,0,196.5,21516.467,0,0,1237.9437 -140,174,308,307,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,5,7.6077123,7.5554214,0,1,0,-9,4,0,-1,9.5343018,0,1,0,26,2,3,3,-9,3,2019,2,3,5,0,50,43,15,1,0,3,0,5.51156,5.51156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.110001,59.91,59.650002,30.370001,6,2,3,0,0,6,2,0,196.5,21516.467,0,0,1237.9437 -141,175,309,310,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,5.5651083,5.5909958,1,0,-9,51,0,-2,-22.998152,0,0,0,73,2,2,1,-9,-9,2019,3,2,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.194066,0,0,51,46,63.650002,35.93,5,1,1,0,0,6,3,1,1735,1820586.9,0,0,2061.0647 -141,175,310,309,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,0,2,7.0093288,7.6972027,7.335207,1,0,-9,51,0,2,116.46397,0,0,0,71,2,3,3,3,3,2019,2,1,7,0,6,12,15,1,0,4,0,15.945961,15.945961,0,0,0,0,0,0,0,0,1,1,0,0,7.8131886,0,0,63.650002,35.93,51,46,6,1,1,0,0,6,3,1,1735,1820586.9,0,0,2061.0647 -142,176,311,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,0,4,0,6.895402,6.7050495,3,0,0,0,-9,0,-938.0481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6651447,7.0325212,0,0,56.349998,51,-9,-9,5,1,1,0,0,4,2,1,187,270646.31,0,0,1500.1576 -143,177,312,313,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,4,7.6191587,7.8511686,0,2,0,-9,7,0,-5,-80.58403,0,0,0,60,2,4,1,3,3,2019,1,1,9,0,20,20,15,1,0,1,0,11.019236,11.019236,0,0,0,0,0,0,0,0,1,1,0,.20917067,0,0,0,52.77,55.330002,54.200001,57.490002,6,1,1,0,0,5,4,1,956.5,304846.34,0,0,2871.1626 -143,177,313,312,-9,-9,1,1,1,60,1,0,1,0,2,-9,2,1,0,0,4,8.3678141,8.5519466,0,2,0,-9,7,0,5,-133.82527,0,0,0,55,2,4,1,3,3,2019,1,2,6,0,50,60,15,1,0,1,0,10.773308,10.773308,0,0,0,0,0,0,0,0,1,1,0,6.5273318,0,0,0,54.200001,57.490002,52.77,55.330002,6,1,1,0,0,5,4,1,956.5,304846.34,0,0,2871.1626 -143,178,314,-9,312,313,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-916.31042,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.51693982,0,0,0,53.709999,55.169998,-9,-9,6,1,1,0,0,5,4,1,186,-35067.703,0,0,-970.79071 -144,179,315,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,7.972868,7.6760464,3,0,0,0,-9,0,-1051.2184,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8865545,8.0827265,0,0,55.869999,53.990002,-9,-9,7,1,1,0,0,5,4,1,124,907468.25,0,0,2292.9272 -145,180,316,-9,-9,-9,2,1,0,41,3,0,1,0,2,-9,2,1,0,0,4,8.1897469,8.1729383,0,4,0,-9,0,1,0,-966.17944,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,29,9,37,37,15,1,1,-9,0,10.674324,10.674324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,63.029999,-9,-9,5,1,1,0,0,12,3,0,460,496520.91,0,0,1961.1196 -146,181,317,318,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.6577816,6.5221386,1,0,-9,8,0,3,-52.747265,0,0,0,69,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8642764,0,0,0,57.16,56.150002,55.360001,51.57,6,1,1,0,0,7,4,1,509.5,1577750,0,0,3726.7 -146,181,318,317,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,8.2504349,8.166481,1,0,-9,31,0,-3,-68.902267,0,0,0,72,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8259883,8.6497936,0,0,55.360001,51.57,57.16,56.150002,6,1,1,0,0,7,4,1,509.5,1577750,0,0,3726.7 -147,182,319,-9,-9,-9,1,1,1,90,2,0,0,0,1,-9,4,3,0,0,3,0,6.1816001,6.0278931,3,0,0,0,-9,0,-1011.381,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0753179,0,0,55,45,-9,-9,6,3,4,0,0,6,2,0,1003,42922.977,0,0,2004.4434 -148,183,320,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-957.22955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.36732587,0,40.634529,3,40.380001,34.419998,-9,-9,3,1,1,0,0,13,1,0,257,39046.785,0,0,464.9913 -149,184,321,322,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.9552317,7.0748768,1,0,-9,27,0,2,.87724441,0,0,0,67,3,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4565177,6.6972442,0,0,56.099998,49.93,48.450001,57.490002,5,1,1,0,0,7,2,1,835.5,736113.88,0,0,2064.5881 -149,184,322,321,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,3.7667582,3.5394714,1,0,-9,26,0,-2,59.353817,0,0,0,69,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1059711,3.5901647,0,0,48.450001,57.490002,56.099998,49.93,7,1,1,0,0,7,2,1,835.5,736113.88,0,0,2064.5881 -150,185,323,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-918.35571,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.27650315,0,0,0,49.540001,53.32,-9,-9,5,1,1,0,0,5,1,1,6500,-12856.851,0,0,407.48947 -151,186,324,325,-9,-9,2,1,0,65,1,0,0,0,3,-9,2,1,0,0,3,7.2493005,7.3353829,0,1,0,-9,4,0,-2,26.589373,0,0,0,67,2,3,1,3,3,2019,1,1,7,0,20,20,15,1,0,1,0,8.2567148,8.2567148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.700001,53.75,51.41,56.150002,7,1,1,0,0,13,5,1,305.5,-59271.465,0,0,5166.5791 -151,186,325,324,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,9.0107012,9.1425514,0,1,0,-9,4,0,2,-57.161793,0,0,0,65,3,3,1,3,3,2019,1,2,8,0,60,65,15,1,0,1,0,15.24232,15.24232,0,0,0,0,0,0,0,0,1,1,0,2.9737117,0,0,0,51.41,56.150002,59.700001,53.75,6,1,1,0,0,13,5,1,305.5,-59271.465,0,0,5166.5791 -151,187,326,-9,324,325,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.910337,7.7125001,0,3,0,0,0,-9,0,-978.86816,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,42,40,15,1,0,-9,1,8.0175743,8.0175743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,4,1,936,190326.44,0,0,-207.98189 -151,188,327,-9,324,325,4,1,0,31,2,0,0,0,1,-9,1,1,0,0,5,8.5592833,8.8645906,0,3,0,-9,0,-9,0,-926.15479,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,50,0,15,1,0,-9,1,12.350725,12.350725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.919998,62.310001,-9,-9,2,1,1,0,0,13,5,1,244,-80294.633,0,0,1826.259 -152,189,328,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1009.2088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.25,38.330002,-9,-9,2,1,1,0,0,2,1,1,473,-14772.715,0,0,577.72296 -153,190,329,330,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.18361,8.1525383,0,1,0,-9,3,0,-2,44.471722,0,0,0,32,2,3,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,10.811379,10.811379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,39.959999,48.029999,3,1,1,0,0,11,4,1,412.5,157154.17,0,0,2516.0435 -153,190,330,329,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,0,3,8.1102362,8.3894234,0,1,0,-9,3,0,2,5.2749262,0,0,1,30,2,4,1,2,2,2019,1,2,19,7,37,0,15,1,1,1,0,10.303919,10.303919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.959999,48.029999,48.869999,58.549999,3,1,1,0,0,11,4,1,412.5,157154.17,0,0,2516.0435 -154,191,331,332,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,38,0,2,89.906555,0,0,0,75,3,5,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.689999,57.470001,7,1,1,0,0,8,2,1,508,537571.75,0,0,1707.0984 -154,191,332,331,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,5,0,6.9401045,6.6520934,1,0,-9,40,0,-2,-102.18675,0,0,0,77,3,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.1419282,0,0,54.689999,57.470001,57.16,56.150002,7,1,1,0,0,8,2,1,508,537571.75,0,0,1707.0984 -155,192,333,336,-9,-9,1,1,0,50,1,0,3,0,1,-9,1,1,0,0,5,7.934413,7.7978683,0,2,0,-9,9,0,0,21.765469,0,0,0,50,1,3,1,2,2,2019,1,2,8,0,15,10,15,1,0,1,0,19.657217,19.657217,0,0,0,0,0,0,0,0,0,0,0,8.0492306,0,0,0,58.040001,49.130001,47.849998,52.43,6,1,1,0,0,8,5,1,238.75,1923590.3,0,0,10775.279 -155,192,334,-9,333,336,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-866.92169,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,8,5,1,238.75,1923590.3,0,0,10775.279 -155,192,335,-9,333,336,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.88531,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,238.75,1923590.3,0,0,10775.279 -155,192,336,333,-9,-9,2,1,1,50,1,0,3,0,1,-9,2,1,0,0,3,9.6430426,9.6200752,0,2,0,-9,9,0,0,60.888741,0,0,0,50,1,5,1,2,2,2019,1,1,11,2,50,50,15,1,0,1,0,34.129498,34.129498,0,0,0,0,0,0,0,0,0,0,0,3.2501779,0,0,0,47.849998,52.43,58.040001,49.130001,6,1,1,0,0,8,5,1,238.75,1923590.3,0,0,10775.279 -155,193,337,-9,333,336,3,1,0,18,2,0,3,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-975.53082,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.689999,52.990002,-9,-9,6,1,1,0,0,8,5,1,535,-108856.48,0,0,0 -156,194,338,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,1,3,0,8.1752586,8.1432753,3,0,0,0,-9,0,-1040.3499,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.02144,8.3917141,0,0,57.919998,51.82,-9,-9,7,1,1,0,0,2,4,1,779,719897.25,0,0,5467.9414 -157,195,339,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-854.26556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.310001,33.18,-9,-9,7,1,1,0,0,12,1,1,436,-32778.426,0,0,1629.6771 -158,196,340,341,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.3926558,7.3095059,0,1,0,-9,7,0,-2,-59.431515,0,0,0,57,2,3,1,3,3,2019,1,1,11,2,30,30,15,1,0,1,0,6.8010826,6.8010826,0,0,0,0,0,0,0,0,0,0,0,1.0786346,0,0,0,48,49,51,49,5,1,1,0,0,13,5,1,602,1134840.3,0,0,2955.0691 -158,196,341,340,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,0,3,8.1372795,8.5343237,3.7171166,1,0,-9,7,0,2,-24.356007,0,0,0,55,2,3,1,3,2,2019,1,2,10,1,35,38,15,1,0,1,0,14.910707,14.910707,0,0,0,0,0,0,0,0,0,0,0,3.7362704,3.9869378,0,0,51,49,48,49,5,1,1,0,0,13,5,1,602,1134840.3,0,0,2955.0691 -158,197,342,-9,340,341,3,1,1,21,2,0,0,1,2,0,7,2,0,0,4,7.7638006,7.3610506,0,3,0,0,0,-9,0,-1078.5288,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4692295,0,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,13,3,1,503,-37271.914,0,0,557.28748 -159,198,343,344,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,1,-30.531736,0,0,0,67,3,2,3,2,2,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.785618,1,58.200001,36.57,43.990002,21.65,5,1,1,0,0,12,4,1,445.5,1831421.5,0,0,3791.6997 -159,198,344,343,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,2,0,8.5118551,8.6278391,1,0,-9,45,0,-1,24.288826,0,0,0,68,3,3,3,2,-9,2019,4,2,30,11,0,0,15,4,1,4,0,0,0,1,0,13.515785,0,0,0,0,0,1,1,0,2.1868722,8.4491787,0,0,43.990002,21.65,58.200001,36.57,3,1,1,0,0,12,4,1,445.5,1831421.5,0,0,3791.6997 -160,199,345,-9,-9,-9,1,1,1,19,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-962.5174,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.700001,57.369999,-9,-9,6,1,1,0,0,5,1,1,246,-136179.55,0,0,428.01328 -161,200,346,348,-9,-9,1,1,1,35,1,0,3,0,2,-9,2,1,0,0,5,8.4165354,8.2174683,0,2,0,-9,16,0,1,-173.83661,0,0,0,34,2,3,1,2,2,2019,1,4,5,0,35,35,15,1,0,1,0,17.137798,17.137798,0,0,0,0,0,0,0,0,1,1,0,2.8687661,0,0,0,59.43,58.049999,56.349998,51.16,6,1,1,0,0,4,3,1,1370.25,280588.72,0,0,3217.9434 -161,200,347,-9,348,346,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-833.67786,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,1,1370.25,280588.72,0,0,3217.9434 -161,200,348,346,-9,-9,4,1,0,34,1,0,3,0,2,-9,2,1,0,0,3,7.4208298,7.2485304,0,2,0,-9,16,0,-1,-51.205814,0,0,1,35,2,5,1,2,2,2019,1,1,6,0,20,16,15,1,0,1,0,10.865146,10.865146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,51.16,59.43,58.049999,5,1,1,0,0,4,3,1,1370.25,280588.72,0,0,3217.9434 -161,200,349,-9,348,346,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.4993,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,1370.25,280588.72,0,0,3217.9434 -162,201,350,351,-9,-9,3,1,0,40,1,0,0,0,2,-9,1,1,0,0,3,8.5367041,8.524085,0,1,0,-9,8,0,-5,-13.776199,0,0,1,45,1,4,1,-9,-9,2019,1,1,17,6,15,5,15,1,1,1,0,28.270924,28.270924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.040001,55.919998,45.259998,54.860001,5,1,1,0,0,11,4,1,253,328997.84,0,0,3408.0073 -162,201,351,350,-9,-9,1,1,1,45,1,0,0,0,1,-9,1,1,0,0,4,8.0716581,7.9378047,0,1,0,-9,8,0,5,-15.537308,0,0,0,40,2,3,1,2,2,2019,1,3,14,4,40,30,15,1,1,1,0,7.1862574,7.1862574,0,0,0,0,0,0,0,0,0,0,0,3.1231706,0,0,0,45.259998,54.860001,40.040001,55.919998,5,1,1,0,0,11,4,1,253,328997.84,0,0,3408.0073 -163,202,352,353,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,0,3,8.7255669,8.5719881,0,2,0,-9,9,0,-3,43.181087,0,0,0,38,2,4,1,2,2,2019,1,2,12,0,43,43,15,1,0,1,0,17.57379,17.57379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.549999,57.369999,52.34,56.950001,5,1,1,0,0,12,5,1,441.33334,210489.08,0,0,3818.5383 -163,202,353,352,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,7.4293532,7.3401747,0,2,0,-9,9,0,3,42.520702,0,0,1,35,2,3,1,-9,-9,2019,1,1,7,0,26,27,15,1,0,1,0,7.6540685,7.6540685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.950001,43.549999,57.369999,5,1,1,0,0,12,5,1,441.33334,210489.08,0,0,3818.5383 -163,202,354,-9,353,352,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.37366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,441.33334,210489.08,0,0,3818.5383 -164,203,355,356,-9,-9,1,1,0,57,1,0,0,0,3,-9,1,1,0,0,2,9.1124201,8.7887249,0,1,0,-9,26,0,3,-49.162716,0,0,0,54,2,4,1,-9,-9,2019,1,2,10,2,24,15,15,1,0,1,0,35.831074,35.831074,0,0,0,0,0,0,0,27.5,0,0,0,0,0,22.856768,3,36.82,37.73,57.16,56.150002,7,1,1,0,0,8,5,1,877,2975901,0,0,8699.6455 -164,203,356,355,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,9.7524166,9.5276966,0,1,0,-9,26,0,-3,60.727707,0,0,0,57,3,2,1,2,2,2019,1,1,9,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,36.82,37.73,6,3,4,0,0,8,5,1,877,2975901,0,0,8699.6455 -165,204,357,-9,358,359,4,1,0,17,2,0,0,1,2,0,7,2,0,0,3,6.9461956,6.8572292,0,1,0,0,0,-9,0,-911.58044,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,-9,-9,6,1,1,0,0,7,4,1,847,888679.63,0,0,3842.3984 -165,204,358,359,-9,-9,2,1,0,66,1,0,0,0,3,-9,2,1,0,0,3,7.6999846,7.6161532,0,1,0,-9,7,0,-1,20.446272,0,0,0,67,2,2,1,-9,3,2019,1,1,11,1,30,30,15,1,0,1,0,6.8557377,6.8557377,1,0,2.1795542,0,0,1.2634938,0,0,1,1,0,0,0,0,0,48.060001,30.719999,52.240002,50.75,2,1,1,0,1,7,4,1,847,888679.63,0,0,3842.3984 -165,204,359,358,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,2,8.1835766,8.13484,0,1,0,-9,7,0,1,-103.13013,0,0,0,66,3,3,1,3,3,2019,1,2,15,2,55,45,15,1,0,1,0,8.4702053,8.4702053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,48.060001,30.719999,5,1,1,0,1,7,4,1,847,888679.63,0,0,3842.3984 -165,204,360,-9,358,359,3,1,0,14,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,1,0,0,0,-9,0,-1015.8365,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,4,1,847,888679.63,0,0,3842.3984 -166,205,361,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-938.24408,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68207908,0,0,0,35.529999,63.810001,-9,-9,4,1,1,1,0,9,1,1,934,-13688.417,0,0,.38988319 -167,206,362,363,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,6.0266643,5.7702494,1,0,-9,7,0,-7,-35.334145,0,0,0,69,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.003593,5.8713999,0,0,66.370003,38.360001,42.330002,53.389999,7,1,1,0,0,7,3,1,1020,1339492.3,0,0,2467.1228 -167,206,363,362,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,7.6680312,7.881959,1,0,-9,7,0,7,-21.403929,0,0,0,62,2,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.128226,7.5582576,0,0,42.330002,53.389999,66.370003,38.360001,7,1,1,0,0,7,3,1,1020,1339492.3,0,0,2467.1228 -168,207,364,365,-9,-9,1,1,0,22,1,0,0,0,2,-9,11,3,0,0,3,6.7626948,7.1778955,4.6226358,1,0,-9,2,0,-4,94.49147,0,1,1,26,2,3,1,-9,-9,2019,3,2,22,9,35,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2425623,0,0,0,23.41,62.529999,43.369999,57.279999,4,1,1,0,0,4,4,0,722.5,43843.867,0,0,2402.3999 -168,207,365,364,-9,-9,2,1,1,26,1,0,0,0,2,-9,1,1,0,0,3,8.475069,8.4611034,0,1,0,-9,2,0,4,-.37926498,0,1,0,22,2,3,3,-9,-9,2019,2,1,15,3,45,40,15,1,0,3,0,13.080959,13.080959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.369999,57.279999,23.41,62.529999,3,1,1,0,1,4,4,0,722.5,43843.867,0,0,2402.3999 -169,208,366,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,1,1,0,0,3,8.4473906,8.1643543,0,3,0,0,0,-9,0,-1047.343,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,28,27,15,1,0,-9,0,19.424198,19.424198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,-9,-9,3,1,1,0,0,10,4,0,571,267551.03,0,0,270.90866 -170,209,367,368,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,5,8.4053659,8.0008774,0,1,0,-9,10,0,3,46.992126,0,0,0,57,2,5,1,2,2,2019,1,2,8,0,17,18,15,1,0,1,0,32.315697,32.315697,0,0,0,0,0,0,0,0,0,0,0,4.5433197,0,0,0,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,10,5,1,2499.5,-70463.164,0,0,7262.6519 -170,209,368,367,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,5,8.1250334,8.0927572,0,1,0,-9,10,0,-3,-55.381786,0,0,0,60,3,5,1,2,2,2019,1,1,8,0,23,23,15,1,0,1,0,14.923432,14.923432,0,0,0,0,0,0,0,0,0,0,0,9.3202286,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,10,5,1,2499.5,-70463.164,0,0,7262.6519 -171,210,369,370,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,7.9114218,8.0934277,0,1,0,-9,28,0,-7,-72.866341,0,0,0,52,2,4,1,2,2,2019,1,1,6,0,36,32,15,1,0,1,0,9.4450636,9.4450636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,45.32,61.529999,2,1,1,0,0,5,4,0,764.5,307935.44,0,0,3135.2959 -171,210,370,369,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.3757191,8.2571859,0,1,0,-9,28,0,7,-44.81628,0,0,0,45,2,4,1,3,3,2019,1,2,9,0,39,40,15,1,0,1,0,11.920829,11.920829,0,0,0,0,0,0,0,2,0,0,0,3.5563655,0,0,3,45.32,61.529999,57.16,56.150002,6,1,1,0,0,5,4,0,764.5,307935.44,0,0,3135.2959 -171,211,371,-9,369,370,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,7.7068901,8.0925646,0,3,0,0,0,-9,0,-1014.4175,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,40,15,1,0,-9,1,7.2644749,7.2644749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.68,54.240002,-9,-9,7,1,1,0,0,5,3,0,1340,136347,0,0,972.74304 -172,212,372,373,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,6.6054134,6.0181026,1,0,-9,39,0,0,-23.100632,0,0,0,69,1,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5238838,6.7248368,0,0,59.139999,52.5,51.169998,49.389999,6,1,1,0,0,9,4,1,644.5,1787852.8,0,0,3189.8289 -172,212,373,372,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,8.3374557,8.2600517,1,0,-9,39,0,0,130.63303,0,0,0,69,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5348434,8.4608717,0,0,51.169998,49.389999,59.139999,52.5,6,1,1,0,0,9,4,1,644.5,1787852.8,0,0,3189.8289 -173,213,374,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,0,5,0,6.1219544,6.261507,3,0,0,0,-9,0,-975.79626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4010534,6.0275488,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,7,2,1,775,455869.72,0,0,-503.94537 -174,214,375,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,3,0,6.8452959,6.7262673,3,0,0,0,-9,0,-1059.0448,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.5328341,0,0,54,44,-9,-9,6,1,1,0,0,13,2,1,67,359525.25,0,0,415.55807 -175,215,376,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1010.4102,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,30,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,1,0,9,1,1,1840,0,0,0,0 -176,216,377,-9,378,382,5,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.42926,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,667.66669,91110.453,0,0,3060.3057 -176,216,378,382,-9,-9,1,1,0,35,1,0,4,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,10,0,2,0,0,0,1,33,2,2,3,2,2,2019,4,2,20,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.662737,3,36.18,47.060001,36.759998,44.169998,3,1,1,0,0,9,1,0,667.66669,91110.453,0,0,3060.3057 -176,216,379,-9,378,382,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-986.85779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,9,1,0,667.66669,91110.453,0,0,3060.3057 -176,216,380,-9,378,382,6,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.73138,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,667.66669,91110.453,0,0,3060.3057 -176,216,381,-9,378,382,4,1,1,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1013.8194,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,9,1,0,667.66669,91110.453,0,0,3060.3057 -176,216,382,378,-9,383,2,1,1,33,1,0,4,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,10,0,-2,0,0,0,0,35,2,3,3,2,3,2019,4,1,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,1,36.759998,44.169998,36.18,47.060001,5,1,1,1,0,9,1,0,667.66669,91110.453,0,0,3060.3057 -176,217,383,-9,-9,-9,7,1,1,61,3,0,4,0,3,-9,1,1,0,0,3,7.3784709,7.1520047,5.5702181,4,0,0,0,-9,0,-865.67328,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,55,72,15,1,0,-9,0,2.5322025,2.5322025,0,0,0,0,0,0,0,0,1,1,0,0,5.220861,0,0,54.369999,54.799999,-9,-9,4,1,1,0,0,9,2,0,469,777336.69,0,0,2000.8872 -177,218,384,385,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,45,0,-8,0,0,0,0,71,3,2,3,3,3,2019,4,1,10,1,0,37,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4766278,0,0,0,49.34,47.5,58.459999,39.689999,6,1,1,0,0,13,1,1,457,-123135.3,0,0,1479.2643 -177,218,385,384,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,8,0,0,0,0,63,2,3,3,3,3,2019,4,2,8,0,0,30,15,4,0,3,0,0,0,1,0,37.845394,0,0,0,0,0,1,1,0,0,0,0,0,58.459999,39.689999,49.34,47.5,5,1,1,0,0,13,1,1,457,-123135.3,0,0,1479.2643 -178,219,386,387,-9,-9,4,1,1,39,1,0,3,0,2,-9,2,1,0,0,4,8.2228537,8.1578798,0,2,0,-9,10,0,8,-42.917698,0,0,0,31,2,3,1,-9,-9,2019,1,1,11,0,38,0,15,1,0,1,0,9.0464773,9.0464773,0,0,0,0,0,0,0,0,1,1,0,1.7124759,0,0,0,41.470001,56.810001,29.120001,59.759998,6,1,1,0,0,10,3,0,708.20001,82513.414,0,0,2816.8723 -178,219,387,386,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,0,3,7.4378071,7.8227086,3.9857173,2,0,-9,10,0,-8,-54.453121,0,0,1,39,2,4,1,2,3,2019,1,4,15,3,28,23,15,1,0,1,0,7.9670215,7.9670215,0,0,0,0,0,0,0,0,1,1,0,3.9701939,0,0,0,29.120001,59.759998,41.470001,56.810001,5,1,1,0,0,10,3,0,708.20001,82513.414,0,0,2816.8723 -178,219,388,-9,387,386,2,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.76202,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,0,708.20001,82513.414,0,0,2816.8723 -178,219,389,-9,387,386,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-809.36865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,0,708.20001,82513.414,0,0,2816.8723 -178,219,390,-9,387,386,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.87854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,10,3,0,708.20001,82513.414,0,0,2816.8723 -179,220,391,-9,-9,-9,1,1,0,24,3,0,0,1,2,0,7,2,0,0,3,0,6.070437,6.131721,3,0,0,0,-9,0,-936.76831,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5932717,0,0,0,33.720001,60.209999,-9,-9,6,1,1,0,0,5,2,0,225,15341.084,0,0,1015.65 -180,221,392,393,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,0,5,9.0503578,9.0232925,0,1,0,-9,18,0,1,-5.6274648,0,0,0,41,1,5,1,1,1,2019,1,2,10,0,48,47,15,1,0,1,0,21.118092,21.118092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,62.389999,56.709999,6,1,1,0,0,2,5,1,912.5,119677.45,0,0,4819.0498 -180,221,393,392,-9,-9,2,1,0,41,1,0,0,0,1,-9,2,1,0,0,5,9.4998493,9.1971798,0,1,0,-9,18,0,-1,-16.988316,0,0,1,42,1,5,1,2,2,2019,1,1,0,0,68,62,15,1,0,1,0,15.232552,15.232552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,54.099998,59.110001,7,1,1,0,0,2,5,1,912.5,119677.45,0,0,4819.0498 -181,222,394,395,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.6761899,7.5712099,1,0,-9,8,0,0,56.537945,0,0,0,72,2,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5733037,7.3519611,2.1521506,3,58.32,50.220001,54.790001,55.860001,6,1,1,0,0,7,2,1,1222,751657,0,0,1672.2712 -181,222,395,394,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,4.8350987,4.5513291,1,0,-9,8,0,0,-14.151944,0,0,0,72,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2864723,4.6141443,7.6776562,3,54.790001,55.860001,58.32,50.220001,7,1,1,0,0,7,2,1,1222,751657,0,0,1672.2712 -182,223,396,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1029.8237,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,11,1,1,322,-3573.053,0,0,1278.5737 -183,224,397,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,-9,0,1,0,-987.7572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,24.850815,0,0,0,0,0,1,1,0,0,0,0,0,41.950001,35.209999,-9,-9,4,1,1,0,0,7,1,0,787,-239065.47,0,0,1914.1849 -184,225,398,399,-9,-9,2,1,0,54,1,0,1,0,2,-9,1,1,0,0,4,7.8269629,7.9171062,0,2,0,-9,13,0,6,-45.007294,0,0,0,48,3,3,1,2,2,2019,1,1,5,1,28,30,15,1,0,1,0,8.3784885,8.3784885,0,0,0,0,0,0,0,2,1,1,0,8.5807848,0,0,3,56.57,57.779999,45.27,52.060001,6,1,1,0,0,8,3,1,881,56853.258,0,0,7208.3169 -184,225,399,398,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,0,3,7.328886,7.0772715,0,2,0,-9,13,0,-6,-44.694786,0,0,0,54,2,4,1,2,2,2019,1,2,7,1,56,0,15,1,0,1,0,4.1549282,4.1549282,0,0,0,0,0,0,0,0,1,1,0,8.1109152,0,0,0,45.27,52.060001,56.57,57.779999,6,1,1,0,0,8,3,1,881,56853.258,0,0,7208.3169 -185,226,400,-9,401,402,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.8444,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,868.75,1065256,0,0,5227.8359 -185,226,401,402,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,9.3062153,9.1526356,0,2,0,-9,19,0,-1,-51.023819,0,0,1,43,1,3,1,2,2,2019,1,2,11,3,42,0,15,1,0,1,0,30.450195,30.450195,0,0,0,0,0,0,0,0,1,1,0,.58548212,0,0,0,45.68,53.580002,45.459999,52.150002,6,1,1,0,0,1,5,1,868.75,1065256,0,0,5227.8359 -185,226,402,401,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,3,7.3426847,7.8180614,0,2,0,-9,19,0,1,36.602009,0,0,0,42,1,4,1,1,1,2019,1,1,10,0,22,19,15,1,0,1,0,10.014179,10.014179,0,0,0,0,0,0,0,0,1,1,0,3.5073619,0,0,0,45.459999,52.150002,45.68,53.580002,6,1,1,0,0,1,5,1,868.75,1065256,0,0,5227.8359 -185,226,403,-9,401,402,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.42926,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,868.75,1065256,0,0,5227.8359 -186,227,404,405,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,4.4557285,4.5353904,1,0,-9,9,0,2,-82.194183,0,0,0,76,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1476202,4.7834134,0,0,56.880001,50.889999,40.560001,27.280001,7,1,1,0,0,6,2,1,555.5,852550,0,0,1166.4248 -186,227,405,404,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,6.3328457,6.1723433,1,0,-9,55,0,-2,-53.75066,0,0,0,78,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,3.9051437,0,0,0,0,0,1,1,0,0,6.2897973,0,0,40.560001,27.280001,56.880001,50.889999,6,1,1,0,0,6,2,1,555.5,852550,0,0,1166.4248 -187,228,406,407,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,0,4,8.0103645,8.1765242,0,1,0,-9,9,0,0,-13.137107,0,0,1,37,1,3,1,-9,-9,2019,1,1,12,2,42,43,15,1,0,1,0,8.4192467,8.4192467,0,0,0,0,0,0,0,0,0,0,0,1.7526444,0,0,0,41.299999,60.77,34.57,50.439999,6,1,1,0,0,2,5,1,902.5,194519.91,0,0,2999.0537 -187,228,407,406,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,3,8.2367516,8.1712465,0,1,0,-9,9,0,0,15.010754,0,0,0,37,2,4,1,1,2,2019,1,2,12,1,43,85,15,1,0,1,0,12.751715,12.751715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.57,50.439999,41.299999,60.77,4,1,1,0,0,2,5,1,902.5,194519.91,0,0,2999.0537 -188,229,408,409,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,7.6260076,7.1677461,1,0,-9,50,0,4,62.123062,0,0,0,73,3,2,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3726287,7.1128626,0,0,53.470001,52.369999,49.509998,46.419998,6,1,1,0,0,5,2,1,445,646004.75,0,0,2431.1084 -188,229,409,408,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,55,0,-4,-59.694321,0,0,0,77,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.509998,46.419998,53.470001,52.369999,6,1,1,0,0,5,2,1,445,646004.75,0,0,2431.1084 -189,230,410,411,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,7.7706504,8.1630783,0,1,0,-9,4,0,0,156.66898,-9,1,1,25,1,5,1,-9,-9,2019,1,1,11,0,60,0,15,1,0,1,0,4.4476514,4.4476514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.23,53.799999,62.389999,56.709999,5,1,1,0,0,9,4,0,503.5,91033.688,0,0,2633.0671 -189,230,411,410,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,7.7864404,7.5381942,0,1,0,-9,4,0,0,44.445637,-9,1,0,25,1,4,1,1,2,2019,1,2,7,0,36,0,15,1,0,1,0,8.8315954,8.8315954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,44.23,53.799999,7,1,1,0,0,9,4,0,503.5,91033.688,0,0,2633.0671 -190,231,412,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,1,0,6.5680876,6.3962049,3,0,0,0,-9,0,-880.00507,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3523507,0,0,39.91,39,-9,-9,3,1,1,0,0,1,2,0,550,91415.828,0,0,934.79639 -191,232,413,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,0,5,8.6383038,8.6622562,0,1,0,-9,10,0,-3,-24.198246,0,0,0,-9,-9,-9,-9,1,1,2019,1,2,6,0,43,42,15,1,0,-9,0,16.726841,16.726841,0,0,0,0,0,0,0,2,0,0,0,3.8245981,0,0,3,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,4,4,1,1571,1103832.5,0,0,2900.0349 -191,233,414,-9,-9,-9,2,1,0,53,2,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,10,0,3,75.076828,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,6,0,0,24,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.2973189,0,6.2734375,3,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,4,4,1,643,162220.66,0,0,432.18881 -192,234,415,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,3,8.1666555,7.7930331,0,3,0,0,0,-9,0,-983.58099,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,11.779967,11.779967,0,0,0,0,0,0,0,2,0,0,0,3.6085565,0,0,3,57.330002,53.459999,-9,-9,6,1,1,0,0,6,4,1,1431,0,0,0,718.36969 -193,235,416,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,11,3,0,0,3,0,0,0,3,0,0,0,-9,0,-940.04114,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,53,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,3,1,1,0,1,8,1,0,1064,0,0,0,0 -194,236,417,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-956.9931,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0341418,0,0,0,52.240002,43.310001,-9,-9,4,1,1,0,0,4,1,0,320,27126.648,0,0,1811.7832 -195,237,418,-9,420,421,3,1,0,17,2,0,2,1,-9,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.35382,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.400002,58.34,-9,-9,6,4,2,0,1,8,4,1,810,137002.25,0,0,3145.011 -195,237,419,-9,420,421,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1027.2444,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,4,2,0,0,8,4,1,810,137002.25,0,0,3145.011 -195,237,420,421,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,0,4,8.3157797,8.4516439,0,2,0,-9,8,0,4,-41.893047,0,0,0,47,2,3,1,-9,-9,2019,1,1,9,0,50,45,15,1,0,1,0,12.371833,12.371833,0,0,0,0,0,0,0,0,1,1,0,2.9048615,0,0,0,46.16,58.619999,49.580002,55.59,6,2,3,0,0,8,4,1,810,137002.25,0,0,3145.011 -195,237,421,420,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,7.7629123,8.1640329,0,2,0,-9,27,0,-4,67.795921,0,0,0,51,2,4,1,-9,-9,2019,1,2,11,2,32,32,15,1,0,1,0,7.7010436,7.7010436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,55.59,46.16,58.619999,6,1,1,0,0,8,4,1,810,137002.25,0,0,3145.011 -196,238,422,424,-9,-9,2,1,1,33,1,0,2,0,1,-9,1,1,0,0,4,5.1876926,5.4976735,0,2,0,-9,8,0,-1,-21.902332,0,0,0,34,1,5,3,3,2,2019,2,1,8,0,40,60,15,1,0,3,0,.43254685,.43254685,0,0,0,0,0,0,0,0,1,1,0,6.8511605,0,0,0,54.200001,57.490002,66,35.900002,6,2,3,0,0,4,1,1,483.75,104660.77,0,0,1158.1305 -196,238,423,-9,424,422,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.3237,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,483.75,104660.77,0,0,1158.1305 -196,238,424,422,-9,-9,1,1,0,34,1,0,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,1,-5.8293691,0,0,1,33,1,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66,35.900002,54.200001,57.490002,7,2,3,0,0,4,1,1,483.75,104660.77,0,0,1158.1305 -196,238,425,-9,424,422,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.8866,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,483.75,104660.77,0,0,1158.1305 -197,239,426,427,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,0,4,5.5241303,7.6661968,7.3844085,1,0,-9,5,0,4,16.343214,0,0,0,77,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0962133,7.5304284,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,12,2,1,876.5,668450.5,0,0,6456.8779 -197,239,427,426,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,5,0,-4,188.8326,0,0,0,81,1,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.150002,52.91,7,1,1,0,0,12,2,1,876.5,668450.5,0,0,6456.8779 -198,240,428,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,0,3,0,6.1210446,5.7170491,3,0,0,0,-9,0,-942.10492,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,7.4900808,0,0,0,0,15.1161,0,1,1,0,0,5.7213531,0,0,55,45,-9,-9,6,1,1,0,0,12,2,1,91,-88273.188,0,0,1260.9238 -199,241,429,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,4.9451818,5.0732117,3,0,0,0,-9,0,-989.27594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5194235,5.0566502,0,0,62,47.259998,-9,-9,6,1,1,0,0,11,2,1,984,225974.14,0,0,1371.9667 -200,242,430,431,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.0398674,8.2582064,0,1,0,-9,34,0,-2,116.2554,0,0,0,60,2,3,1,2,2,2019,1,1,11,2,40,40,15,1,0,1,0,7.5933671,7.5933671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,49,5,2,3,0,1,8,3,1,358,147175,0,0,1802.1969 -200,242,431,430,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,6.581327,6.8325672,0,1,0,-9,34,0,2,-136.00076,0,0,0,58,2,3,1,3,3,2019,1,2,10,1,10,20,15,1,0,1,0,13.212201,13.212201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,49,48,5,2,3,0,0,8,3,1,358,147175,0,0,1802.1969 -200,243,432,-9,430,431,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,8.4874353,8.518959,0,3,0,0,0,-9,0,-872.36188,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,0,-9,1,16.44068,16.44068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.330002,50.73,-9,-9,6,2,3,0,0,8,5,1,434,0,0,0,2172.26 -200,244,433,-9,430,431,4,1,1,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-913.33032,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.84,63.799999,-9,-9,5,2,3,0,0,8,1,1,602,-74422.07,0,0,697.11432 -201,245,434,435,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,4,0,8.9568081,8.6666155,1,0,-9,60,0,1,35.668636,0,0,0,80,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3759146,8.864954,0,0,59.139999,52.5,61.040001,39.41,7,1,1,0,0,10,4,1,742.5,2184302.5,0,0,5916.0674 -201,245,435,434,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,-1,-65.168983,0,0,0,81,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.9378591,0,0,0,61.040001,39.41,59.139999,52.5,7,1,1,0,0,10,4,1,742.5,2184302.5,0,0,5916.0674 -202,246,436,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,0,2,0,7.4880104,7.4509678,3,0,0,0,-9,0,-923.23505,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2013578,7.6152258,0,0,37.09,24.93,-9,-9,5,1,1,0,0,7,3,1,196,399952.72,0,0,2388.5513 -203,247,437,-9,-9,-9,1,1,0,96,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-980.43427,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,2.2115068,0,13.055353,0,0,60.775269,0,1,1,0,0,0,0,0,44.48,19.110001,-9,-9,4,1,1,0,0,12,1,1,311,143738.72,0,0,2135.6606 -204,248,438,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.4461498,7.7313561,0,3,0,0,0,-9,0,-999.77521,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,20,40,15,1,1,-9,0,8.5204906,8.5204906,0,0,0,0,0,0,0,2,0,0,0,7.3028555,0,1.7084343,3,28.290001,60.360001,-9,-9,6,1,1,0,0,9,3,1,637,28593.92,0,0,1178.5426 -205,249,439,440,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.2425394,7.2650018,1,0,-9,31,0,6,51.645412,0,0,0,62,2,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8318143,7.383791,0,0,57.330002,53.459999,52.57,34.130001,6,1,1,0,0,1,2,1,910.5,186015.75,0,0,1758.6282 -205,249,440,439,-9,-9,1,1,0,62,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,31,0,-6,22.460144,0,0,0,68,2,3,3,-9,2,2019,4,2,11,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9563746,0,0,0,52.57,34.130001,57.330002,53.459999,4,1,1,0,0,1,2,1,910.5,186015.75,0,0,1758.6282 -205,250,441,-9,440,439,3,1,0,24,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-954.84271,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9842787,0,0,0,51.830002,57.200001,-9,-9,5,1,1,1,0,1,1,1,2109,0,0,0,666.6651 -205,251,442,-9,440,439,4,1,1,21,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1204.3506,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6845748,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,1,1,1,313,15853.402,0,0,-88.429626 -206,252,443,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-997.75677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,12,0,0,15,4,1,-9,0,0,0,1,0,0,3.361546,0,0,0,0,1,1,0,0,0,0,0,32.810001,33.939999,-9,-9,6,1,1,0,0,2,1,0,2023,58270.918,0,0,1867.9049 -207,253,444,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,6.2225647,6.5396838,3,0,0,0,-9,0,-1093.5724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,6.0596232,8.2480888,3,59.709999,18.92,-9,-9,6,1,1,0,0,9,2,0,113,231810.17,0,0,-348.56165 -208,254,445,446,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,7.9511428,7.918107,1,0,-9,56,0,8,.87552792,0,0,0,75,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2891288,0,0,55.509998,51.57,49.07,36.549999,6,1,1,0,0,10,3,1,182,661759.5,0,0,1265.6183 -208,254,446,445,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-8,-66.855827,0,0,0,83,3,3,3,3,2,2019,4,2,9,2,0,3,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,2.4996076,3,49.07,36.549999,55.509998,51.57,7,1,1,0,0,10,3,1,182,661759.5,0,0,1265.6183 -209,255,447,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,2,0,5.1763158,4.9565287,3,0,0,0,-9,0,-998.67566,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3825541,5.1428638,0,0,46.41,37.029999,-9,-9,4,1,1,0,0,7,2,1,637,89207.352,0,0,1148.8182 -210,256,448,449,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.149291,7.3950624,1,0,-9,39,0,3,-47.810471,0,0,0,59,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4084187,7.3720303,0,0,58.720001,51.290001,54.380001,46.77,6,1,1,0,0,7,4,1,903.5,365600.94,0,0,3706.4727 -210,256,449,448,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,0,3,0,8.6441231,8.4213305,1,0,-9,38,0,-3,49.148911,0,0,0,62,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3605871,0,0,54.380001,46.77,58.720001,51.290001,7,1,1,0,0,7,4,1,903.5,365600.94,0,0,3706.4727 -211,257,450,451,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,5,7.452528,7.5147071,0,1,0,-9,23,0,1,-104.95465,0,0,0,54,1,5,1,2,2,2019,1,2,19,7,29,0,15,1,1,1,0,8.4948454,8.4948454,0,0,0,0,0,0,0,0,0,0,0,6.9581618,0,0,0,33.389999,65.879997,49.299999,59.889999,3,1,1,0,0,1,5,1,418.5,166329.23,0,0,4281.1104 -211,257,451,450,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,5,8.4747496,8.7544365,0,1,0,-9,23,0,-1,158.27974,0,0,0,55,2,5,1,2,1,2019,1,1,12,2,50,50,15,1,0,1,0,12.39895,12.39895,0,0,0,0,0,0,0,2,0,0,0,3.7753606,0,14.443731,2,49.299999,59.889999,33.389999,65.879997,4,1,1,0,0,1,5,1,418.5,166329.23,0,0,4281.1104 -212,258,452,453,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,1,1,0,4.3572435,4.883234,1,0,-9,36,0,2,159.51819,0,0,0,63,2,1,3,-9,-9,2019,4,2,20,6,0,0,15,4,1,3,0,0,0,1,0,22.923677,1.6391889,0,0,0,74.5,1,1,0,0,4.3613868,75.299561,1,31.620001,18.370001,41.490002,44.860001,5,1,1,0,0,2,2,0,1350.5,-25944.461,0,0,1057.7025 -212,258,453,452,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,36,0,-2,-24.445059,0,0,0,65,3,1,3,-9,-9,2019,4,1,24,10,0,20,15,3,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.646042,1,41.490002,44.860001,31.620001,18.370001,2,1,1,0,0,2,2,0,1350.5,-25944.461,0,0,1057.7025 -212,259,454,-9,-9,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,7.8098593,7.618186,0,3,0,0,0,-9,0,-945.43121,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,51,32,15,1,0,-9,0,4.5145259,4.5145259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.889999,53.77,-9,-9,6,1,1,0,0,2,3,0,400,85154.609,0,0,650.15405 -213,260,455,456,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,28,0,5,0,0,0,0,76,3,3,3,3,3,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.18,24.969999,54.130001,48.040001,5,1,1,0,0,13,1,0,4010.5,261501.05,0,0,1175.5649 -213,260,456,455,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,23,0,-5,0,0,0,0,81,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.130001,48.040001,38.18,24.969999,6,1,1,0,0,13,1,0,4010.5,261501.05,0,0,1175.5649 -214,261,457,-9,458,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.9989,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,605.66669,242477.33,0,0,2303.9758 -214,261,458,459,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,3,7.3203897,7.7053561,0,2,0,1,1,-9,-18,-89.719879,0,0,1,56,3,1,3,2,2,2019,2,3,20,8,20,17,15,1,1,3,0,8.7890596,8.7890596,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,47.450001,34.950001,31.389999,23.690001,5,1,1,0,0,2,2,0,605.66669,242477.33,0,0,2303.9758 -214,261,459,458,-9,-9,3,1,1,56,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,1,-9,18,41.119194,-9,0,0,38,2,3,1,-9,-9,2019,3,1,24,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.389999,23.690001,47.450001,34.950001,3,1,1,0,0,2,2,0,605.66669,242477.33,0,0,2303.9758 -215,262,460,-9,461,462,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.8585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,5,1,330,45730.699,0,0,4334.6855 -215,262,461,462,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,7.954493,8.1926823,0,2,0,-9,9,0,-1,22.792536,0,0,1,35,1,3,1,2,1,2019,1,1,4,0,25,0,15,1,0,1,0,11.721618,11.721618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.330002,53.459999,6,1,1,0,0,4,5,1,330,45730.699,0,0,4334.6855 -215,262,462,461,-9,-9,1,1,1,35,1,1,1,0,1,-9,2,1,0,0,3,8.8316088,8.7971039,0,2,0,-9,9,0,1,16.386951,0,0,0,34,1,4,1,2,2,2019,1,2,11,3,42,37,15,1,0,1,0,19.437828,19.437828,0,0,0,0,0,0,0,0,1,1,0,2.6543238,0,0,0,57.330002,53.459999,54.790001,55.860001,6,1,1,0,0,4,5,1,330,45730.699,0,0,4334.6855 -216,263,463,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,6,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1100.3412,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.81028,3,57.16,56.150002,-9,-9,6,1,1,0,0,4,1,1,1160,236835.31,0,0,2353.6055 -216,264,464,-9,463,-9,2,1,0,49,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1009.4291,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.759998,22.940001,-9,-9,3,1,1,0,0,4,1,1,961,0,0,0,350.40326 -217,265,465,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,2,1,0,0,2,6.2585263,6.7740011,5.3525,3,0,0,0,-9,0,-944.63068,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,14,12,15,1,1,-9,0,5.1113787,5.1113787,0,0,0,0,0,0,0,0,1,1,0,3.5394111,5.0766649,0,0,29.950001,54.360001,-9,-9,2,1,1,0,0,8,2,1,696,977343.31,0,0,31.458864 -218,266,466,467,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,9.3662882,9.1340046,0,1,0,-9,33,0,5,33.164005,0,0,0,56,1,3,3,-9,-9,2019,2,2,8,0,46,45,15,1,0,4,0,26.206799,26.206799,0,0,0,0,0,0,0,2,0,0,0,3.6831372,0,3.6237123,2,51.77,58.57,39.16,35.889999,5,1,1,0,0,7,5,1,1185,2903498.5,0,0,4343.8447 -218,266,467,466,-9,-9,2,1,0,56,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,33,0,-5,-82.18203,0,0,0,61,2,4,1,-9,-9,2019,3,1,13,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,30.430471,3,39.16,35.889999,51.77,58.57,4,1,1,0,0,7,5,1,1185,2903498.5,0,0,4343.8447 -218,267,468,-9,467,466,3,1,0,31,2,0,0,0,1,-9,2,1,0,0,3,8.2635803,8.0751019,0,3,0,0,0,-9,0,-1003.2228,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,14,2,42,0,15,1,0,-9,1,9.5566902,9.5566902,0,0,0,0,0,0,0,0,0,0,0,3.4915712,0,0,0,30.870001,57.369999,-9,-9,3,1,1,0,0,7,4,1,334,31670.193,0,0,883.20587 -219,268,469,471,-9,-9,2,1,0,52,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-8,46.290054,0,0,0,60,2,4,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,4,5,1,357,724806.5,0,0,2142.3735 -219,268,470,-9,469,471,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.46704,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,357,724806.5,0,0,2142.3735 -219,268,471,469,-9,-9,1,1,1,60,1,0,1,0,2,-9,2,1,0,0,4,8.9244041,9.1664314,6.2632632,2,0,-9,10,0,8,57.059383,0,0,0,52,2,4,3,2,2,2019,2,2,9,0,41,45,15,1,0,3,0,28.681961,28.681961,0,0,0,0,0,0,0,0,0,0,0,6.8639846,6.4511681,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,4,5,1,357,724806.5,0,0,2142.3735 -220,269,472,473,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,0,3,8.5767221,8.7556505,0,1,0,-9,23,0,2,58.825485,0,0,0,43,1,4,1,3,3,2019,1,2,5,1,40,39,15,1,0,1,0,14.633346,14.633346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.799999,42.450001,47.68,55.119999,6,1,1,0,0,4,5,1,427,1217629,0,0,3532.2485 -220,269,473,472,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,0,4,8.1875124,7.7398105,0,1,0,-9,23,0,-2,-38.4174,0,0,1,45,2,3,1,3,3,2019,1,1,10,0,30,30,15,1,0,1,0,11.033564,11.033564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,55.119999,54.799999,42.450001,6,1,1,0,0,4,5,1,427,1217629,0,0,3532.2485 -220,270,474,-9,473,472,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.8305993,7.8009505,0,3,0,0,0,-9,0,-963.79425,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,40,0,15,1,0,-9,1,6.5490198,6.5490198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,3,1,245,82974.898,0,0,872.31439 -220,271,475,-9,473,472,4,1,0,18,2,0,0,0,2,-9,7,2,0,0,3,6.2088981,6.333127,0,3,0,0,0,-9,0,-1006.3582,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,1,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.459999,54.849998,-9,-9,6,1,1,0,0,4,2,1,134,81336.609,0,0,-330.23309 -221,272,476,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,1,1,0,8.1677837,8.3024797,3,0,-9,0,1,0,-1004.993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.602478,8.284586,0,0,30.91,22.6,-9,-9,2,1,1,0,0,13,4,1,87,1696291,0,0,2013.4261 -222,273,477,478,-9,-9,1,1,0,57,1,0,0,0,1,-9,1,1,0,0,5,9.3703852,9.1365891,0,1,0,-9,11,0,-7,-13.456636,0,0,0,64,2,2,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,38.10154,38.10154,0,0,0,0,0,0,0,0,0,0,0,1.8210787,0,0,0,54.099998,59.110001,46.529999,47.779999,6,1,1,0,0,10,5,1,402,278307.59,0,0,4767.3428 -222,273,478,477,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,0,2,7.5057764,7.984797,6.5077291,1,0,-9,11,0,7,128.77484,0,0,0,57,1,5,1,3,3,2019,1,1,11,0,30,25,15,1,0,1,0,5.605813,5.605813,0,0,0,0,0,0,0,0,0,0,0,6.1122808,6.3876538,0,0,46.529999,47.779999,54.099998,59.110001,3,1,1,0,0,10,5,1,402,278307.59,0,0,4767.3428 -223,274,479,481,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,0,4,8.8889456,8.8820877,0,2,0,-9,11,0,16,-35.241798,0,0,0,40,2,4,1,-9,-9,2019,1,1,8,0,90,43,15,1,0,1,0,8.41292,8.41292,0,0,0,0,0,0,0,2,1,1,0,0,0,3.9937248,3,60.130001,49.27,59.040001,45.740002,6,1,1,0,0,2,4,1,930,839511.75,0,0,795.26727 -223,274,480,-9,481,479,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.6936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,930,839511.75,0,0,795.26727 -223,274,481,479,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,7.7168984,7.7899661,0,2,0,-9,15,0,-16,-11.934366,0,0,1,56,2,4,1,3,3,2019,1,2,7,0,30,30,15,1,0,1,0,8.4287682,8.4287682,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.040001,45.740002,60.130001,49.27,6,1,1,0,0,2,4,1,930,839511.75,0,0,795.26727 -224,275,482,483,-9,-9,1,1,0,50,1,0,1,0,1,-9,1,1,0,0,4,9.4496107,9.1184578,0,2,0,-9,28,0,-1,3.1409686,0,0,0,51,1,4,1,2,2,2019,1,2,19,6,35,34,15,1,1,1,0,29.575638,29.575638,0,0,0,0,0,0,0,0,1,1,0,7.3290524,0,0,0,43.439999,58.700001,53,54,4,1,1,0,0,9,5,1,412,1573648,0,0,10947.043 -224,275,483,482,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,4,9.8244314,9.8571157,0,2,0,-9,28,0,1,73.503853,0,0,0,50,1,4,1,2,2,2019,1,1,9,1,80,67,15,1,0,1,0,24.315128,24.315128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,43.439999,58.700001,5,1,1,0,0,9,5,1,412,1573648,0,0,10947.043 -225,276,484,-9,485,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,6.7854948,6.3704972,0,3,0,0,0,-9,0,-980.78564,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,7,16,16,15,1,1,-9,1,5.2761354,5.2761354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.139999,43.900002,-9,-9,4,1,1,0,0,7,2,0,648,0,0,0,1347.3226 -225,277,485,486,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.1322737,6.9993577,0,1,0,-9,3,0,-5,-84.09391,0,0,0,57,3,2,1,-9,-9,2019,1,3,12,0,21,24,15,1,0,1,0,6.4511361,6.4511361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,26.799999,46.119999,4,1,1,0,0,7,4,0,504,420137.28,0,0,2377.1802 -225,277,486,485,-9,-9,3,1,1,57,1,0,0,0,3,-9,2,1,0,0,2,8.2048464,8.0756397,0,1,0,-9,3,0,5,6.5797997,0,0,0,52,2,4,1,-9,-9,2019,1,1,13,1,40,30,15,1,0,1,0,11.683048,11.683048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.799999,46.119999,51,54,5,1,1,0,0,7,4,0,504,420137.28,0,0,2377.1802 -226,278,487,-9,488,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-974.93909,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,375.5,-92432.703,0,0,346.00418 -226,278,488,-9,-9,-9,1,1,0,27,2,0,1,0,2,-9,2,1,0,0,4,6.5608315,6.7567139,0,4,0,0,0,-9,0,-1035.7889,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,14,12,15,1,0,-9,0,6.7730479,6.7730479,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,57,-9,-9,5,1,1,0,1,2,2,0,375.5,-92432.703,0,0,346.00418 -227,279,489,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,3,0,7.3930326,7.5037313,3,0,0,0,-9,0,-937.81122,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.74939173,7.5687227,0,0,58.32,50.220001,-9,-9,5,2,3,0,0,8,3,1,2478,841722.31,0,0,572.4079 -228,280,490,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,5,8.9546375,8.9914246,0,3,0,0,0,-9,0,-928.80042,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,38,38,15,1,0,-9,0,25.861582,25.861582,0,0,0,0,0,0,0,0,0,0,0,5.3077126,0,0,0,51.139999,52.419998,-9,-9,5,2,3,0,0,8,5,0,416,148450.08,0,0,2792.5144 -229,281,491,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,2,0,3.5572426,4.0409379,3,0,0,0,-9,0,-1123.7943,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7820902,0,0,65.209999,25.879999,-9,-9,6,3,4,0,0,4,1,0,1272,165022.42,0,0,478.97095 -230,282,492,493,-9,-9,2,1,1,66,1,0,0,0,3,-9,1,1,0,0,4,5.2026992,5.3914857,0,1,0,-9,29,0,14,-30.296753,0,0,0,52,2,3,1,3,3,2019,1,1,10,0,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.26186362,0,0,0,51.240002,58.84,59.709999,40.18,6,1,1,0,0,9,5,1,787,664981.38,0,0,3289.2527 -230,282,493,492,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.7391109,8.8967752,0,1,0,-9,29,0,-14,-73.122963,0,0,0,66,3,4,1,3,2,2019,1,2,7,0,42,38,15,1,0,1,0,14.530643,14.530643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.709999,40.18,51.240002,58.84,6,4,2,0,0,9,5,1,787,664981.38,0,0,3289.2527 -231,283,494,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,5,8.0783834,8.0448952,0,3,0,0,0,-9,0,-998.64093,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,38,15,1,0,-9,0,9.3078938,9.3078938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.380001,58.02,-9,-9,6,1,1,0,0,12,4,1,367,-33817.266,0,0,554.87268 -232,284,495,496,-9,-9,2,1,0,52,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,31,0,0,48.694481,0,0,0,52,1,3,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.893028,0,0,3,50.049999,55.41,55.189999,51.919998,6,1,1,0,0,5,4,1,895,1558544.1,0,0,1809.3414 -232,284,496,495,-9,-9,1,1,1,52,1,0,0,0,1,-9,1,1,0,0,3,9.0304956,8.5139866,0,1,0,-9,6,0,0,-79.274574,0,0,0,52,1,4,3,-9,-9,2019,2,2,12,3,72,60,15,1,0,3,0,10.846337,10.846337,0,0,0,0,0,0,0,2,0,0,0,3.9074638,0,6.5027785,3,55.189999,51.919998,50.049999,55.41,6,1,1,0,0,5,4,1,895,1558544.1,0,0,1809.3414 -232,285,497,-9,495,496,3,1,1,21,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1027.6713,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8994863,0,0,0,55.630001,55.599998,-9,-9,7,1,1,0,0,5,1,1,245,0,0,0,1.427125 -233,286,498,499,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,8.1687384,8.3731918,0,2,0,-9,9,0,-4,134.68266,0,0,0,54,2,4,1,2,3,2019,1,2,6,0,37,37,15,1,0,1,0,10.718407,10.718407,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.150002,33.740002,63,5,1,1,0,0,7,4,1,559,706249.38,0,0,1807.8718 -233,286,499,498,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,0,4,7.7279935,7.4663463,0,2,0,-9,9,0,4,69.027802,0,0,0,50,2,4,1,2,2,2019,1,1,9,0,27,24,15,1,0,1,0,10.159224,10.159224,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,33.740002,63,57.16,56.150002,5,1,1,0,0,7,4,1,559,706249.38,0,0,1807.8718 -233,287,500,-9,499,498,4,1,1,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1027.0594,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,7,1,1,609,0,0,0,0 -234,288,501,502,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.1981468,6.9894691,1,0,-9,34,0,-1,-16.357336,0,0,0,64,2,3,3,2,2,2019,4,2,1,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3970652,7.2857203,0,0,65.239998,41.59,54.369999,54.799999,6,1,1,0,0,6,3,1,781.5,970577.44,0,0,3129.1157 -234,288,502,501,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,7.719852,7.6731486,5.4373932,1,0,-9,34,0,1,-91.074577,0,0,0,63,2,3,3,-9,-9,2019,4,1,8,0,10,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3266892,6.0247078,0,0,54.369999,54.799999,65.239998,41.59,6,1,1,0,0,6,3,1,781.5,970577.44,0,0,3129.1157 -235,289,503,-9,-9,-9,1,1,1,72,2,0,0,0,2,-9,4,3,0,0,4,0,6.7007675,6.9171753,3,0,0,0,-9,0,-972.12427,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9545875,6.8536439,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,7,2,0,272,370440.03,0,0,1761.6835 -236,290,504,505,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.0887489,8.3349371,0,1,0,-9,7,0,0,6.2917571,0,0,0,58,2,2,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,10.273355,10.273355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,45,38,5,1,1,0,0,4,5,1,310,337771.25,0,0,2331.4651 -236,290,505,504,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,8.5154524,8.0946836,0,1,0,-9,29,0,0,-40.490723,0,0,0,58,2,3,1,3,3,2019,1,2,14,3,48,46,15,1,0,1,0,8.2015066,8.2015066,0,0,0,0,0,0,0,2,0,0,0,0,0,7.8518043,3,45,38,51,49,5,1,1,0,0,4,5,1,310,337771.25,0,0,2331.4651 -236,291,506,-9,505,504,3,1,1,31,2,0,0,0,3,-9,2,1,0,0,4,8.3152361,8.4545145,0,3,0,0,0,-9,0,-1017.0065,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,30,35,15,1,0,-9,1,17.633749,17.633749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,4,4,1,592,-165052.64,0,0,2600.6748 -237,292,507,508,-9,-9,1,1,0,25,1,0,0,1,2,0,7,2,0,0,4,0,5.9690433,5.8593307,1,0,1,1,-9,-10,20.460537,-9,1,1,35,2,3,1,-9,-9,2019,3,2,12,3,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7589159,0,0,0,55.279999,43.18,38.509998,59.43,7,3,4,0,0,1,3,1,609.5,168255.75,0,0,335.73386 -237,292,508,507,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,0,3,8.0237951,8.0244522,0,1,0,-9,1,-9,10,91.228149,-9,0,0,25,2,4,2,-9,-9,2019,2,1,5,0,44,0,15,1,0,2,0,6.0316906,6.0316906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,55.279999,43.18,6,1,1,0,0,1,3,1,609.5,168255.75,0,0,335.73386 -238,293,509,510,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,0,4,9.3391514,9.3618498,0,1,0,-9,2,0,9,-37.152527,0,0,0,27,2,4,1,1,2,2019,1,2,15,4,50,45,15,1,1,1,0,20.776436,20.776436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,47.549999,57.73,6,1,1,0,0,5,5,1,525.5,30543.121,0,0,5453.0586 -238,293,510,509,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,8.1890678,8.2089262,0,1,0,-9,2,0,0,29.221638,0,1,1,36,2,4,1,-9,-9,2019,1,1,14,4,50,50,15,1,1,1,0,9.7871513,9.7871513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.549999,57.73,48.279999,60.18,6,1,1,0,0,5,5,1,525.5,30543.121,0,0,5453.0586 -239,294,511,517,-9,-9,1,1,1,45,1,0,6,0,2,-9,2,1,0,0,4,8.8911972,8.5771198,0,2,0,-9,7,0,1,98.153961,0,0,0,44,2,3,3,3,3,2019,2,2,13,2,60,60,15,1,0,3,0,13.265589,13.265589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.200001,64.190002,43.900002,57.009998,4,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,294,512,-9,517,511,6,1,0,11,2,0,6,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1107.9923,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,294,513,-9,517,511,9,1,1,3,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.9019,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,294,514,-9,517,511,8,1,0,5,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.5627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,294,515,-9,517,511,7,1,1,9,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.7362,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,294,516,-9,517,511,5,1,0,13,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.34283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,294,517,511,-9,-9,2,1,0,44,1,0,6,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-1,22.890633,0,0,1,45,2,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.900002,57.009998,36.200001,64.190002,5,1,1,0,0,7,3,1,1417.1428,-8.6448107,0,0,2370.1602 -239,295,518,-9,517,511,3,1,1,19,2,0,6,0,2,1,2,1,0,0,3,6.737648,6.9754615,0,3,0,0,0,-9,0,-1091.8239,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,0,15,1,0,-9,1,3.3404493,3.3404493,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,7,2,1,481,-56279.117,0,0,-174.99319 -239,296,519,-9,517,511,4,1,1,18,2,0,6,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1096.214,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.54504675,0,0,0,47.150002,56.66,-9,-9,7,1,1,0,0,7,3,1,1023,0,0,0,-482.36615 -240,297,520,521,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.0915232,6.7181482,1,0,-9,10,0,-1,-152.82751,0,0,0,74,1,4,3,2,2,2019,4,1,21,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1343942,6.7796698,0,0,49.290001,54.59,60.119999,54.799999,3,1,1,0,0,9,5,1,390,1118598.9,0,0,5181.2607 -240,297,521,520,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,8.9077921,9.1691113,1,0,-9,10,0,1,62.345345,0,0,0,73,2,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.831171,9.3058014,0,0,60.119999,54.799999,49.290001,54.59,6,1,1,0,0,9,5,1,390,1118598.9,0,0,5181.2607 -241,298,522,523,-9,-9,1,1,1,46,1,0,0,0,1,-9,1,1,0,0,4,9.0243444,8.9848795,0,1,0,-9,7,0,-10,45.716122,0,0,0,56,1,4,1,2,2,2019,1,2,9,0,20,20,15,1,0,1,0,55.451733,55.451733,0,0,0,0,0,0,0,0,0,0,0,3.7347641,0,0,0,49.439999,56.93,59.290001,49.68,6,1,1,0,0,1,5,1,437.5,522467.88,0,0,5799.4668 -241,298,523,522,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.4983158,8.5461149,0,1,0,-9,7,0,10,-10.395234,0,0,0,46,1,4,1,3,3,2019,1,1,7,0,40,55,15,1,0,1,0,10.808779,10.808779,0,0,0,0,0,0,0,0,0,0,0,4.3810306,0,0,0,59.290001,49.68,49.439999,56.93,6,1,1,0,0,1,5,1,437.5,522467.88,0,0,5799.4668 -241,299,524,-9,523,522,3,1,1,20,2,0,0,1,2,0,7,2,0,0,4,4.5925732,5.7125058,5.4589281,3,0,0,0,-9,0,-992.44427,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4442062,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,1,2,1,666,-33153.984,0,0,1068.8993 -242,300,525,526,-9,-9,1,1,0,71,1,0,0,0,2,-9,2,1,0,0,4,7.1099935,7.5106897,0,1,0,-9,38,0,1,42.60112,0,0,0,70,2,1,3,3,3,2019,2,2,8,0,11,11,15,1,0,4,0,13.668334,13.668334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.189999,47.889999,29.780001,25.84,6,1,1,0,0,8,2,0,303,619286.88,0,0,2045.6595 -242,300,526,525,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,38,0,-1,-43.158981,0,0,0,71,2,4,1,2,2,2019,3,1,26,12,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.780001,25.84,54.189999,47.889999,1,1,1,0,0,8,2,0,303,619286.88,0,0,2045.6595 -243,301,527,528,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,9.066268,9.4428205,0,1,0,-9,7,0,11,-160.84468,0,0,0,38,2,4,1,2,2,2019,1,2,7,0,35,35,15,1,0,1,0,31.338955,31.338955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,5,1,942,1079296.3,0,0,4291.1484 -243,301,528,527,-9,-9,2,1,0,38,1,0,0,0,2,-9,2,1,0,0,4,7.9437761,7.9064131,5.4029231,1,0,-9,7,0,-11,-41.224312,0,0,1,49,2,4,1,-9,-9,2019,1,1,6,0,47,38,15,1,0,1,0,7.3048134,7.3048134,0,0,0,0,0,0,0,0,0,0,0,5.6392288,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,5,1,942,1079296.3,0,0,4291.1484 -243,302,529,530,-9,-9,4,1,0,19,1,0,0,0,2,-9,2,1,0,0,3,7.3630385,7.140718,0,1,0,-9,1,-9,1,115.82742,-9,1,1,18,2,4,1,-9,-9,2019,1,3,7,0,24,0,15,1,0,1,0,5.3140416,5.3140416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,54.200001,57.490002,7,1,1,0,0,4,3,1,645.5,58880.199,0,0,1165.8727 -243,302,530,529,528,527,3,1,1,18,1,0,0,0,2,-9,2,1,0,0,4,7.7791095,7.5617356,0,1,0,1,1,-9,-1,59.609249,0,1,0,19,2,3,1,2,2,2019,1,4,10,0,40,0,15,1,0,1,0,5.9353004,5.9353004,0,0,0,0,0,0,0,0,0,0,0,.17095026,0,0,0,54.200001,57.490002,54.959999,53.169998,6,1,1,0,0,4,3,1,645.5,58880.199,0,0,1165.8727 -244,303,531,532,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,9.0823708,8.9396763,0,1,0,-9,30,0,-1,157.99332,0,0,0,57,2,3,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,30.521643,30.521643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,43.900002,57.009998,3,1,1,0,0,7,5,1,671,1110774.8,0,0,6700.4736 -244,303,532,531,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,0,3,9.0129871,9.4172773,0,1,0,-9,6,0,1,41.442532,0,0,0,56,2,4,1,2,-9,2019,1,1,13,4,35,50,15,1,1,1,0,32.250603,32.250603,0,0,0,0,0,0,0,0,0,0,0,6.6956329,0,0,0,43.900002,57.009998,51.830002,57.200001,5,1,1,0,0,7,5,1,671,1110774.8,0,0,6700.4736 -245,304,533,535,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,2,8.0809717,7.959753,0,2,0,-9,10,0,-6,-25.145449,0,0,0,53,2,2,1,-9,-9,2019,1,1,26,12,24,24,15,1,1,1,0,13.65067,13.65067,0,0,0,0,0,0,0,2,1,1,0,4.3148184,0,0,3,18.16,54.419998,41.98,51.259998,4,1,1,0,0,2,4,1,670.33331,909066.44,0,0,3607.7385 -245,304,534,-9,533,535,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1016.7128,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,4,1,670.33331,909066.44,0,0,3607.7385 -245,304,535,533,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,2,8.7157726,8.5209551,0,2,0,-9,10,0,6,126.90672,0,0,0,47,2,2,1,3,3,2019,1,2,11,0,37,59,15,1,0,1,0,19.972683,19.972683,0,0,0,0,0,0,0,0,1,1,0,.98174912,0,0,0,41.98,51.259998,18.16,54.419998,5,1,1,0,0,2,4,1,670.33331,909066.44,0,0,3607.7385 -245,305,536,-9,533,535,3,1,0,18,2,0,1,0,2,1,11,3,0,0,4,8.1133909,7.937367,0,3,0,0,0,-9,0,-979.32312,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,8,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,2,1,1,0,0,2,4,1,912,-196412.72,0,0,1493.2272 -246,306,537,-9,538,540,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.14917,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,832.59998,457523.31,0,0,3594.3118 -246,306,538,540,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,0,4,7.9035664,7.9090486,0,2,0,-9,5,0,-8,56.787243,0,0,1,39,2,5,1,-9,-9,2019,1,2,7,0,37,37,15,1,0,1,0,9.5944996,9.5944996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.060001,57.759998,6,1,1,0,0,1,3,0,832.59998,457523.31,0,0,3594.3118 -246,306,539,-9,538,540,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-960.62976,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,1,3,0,832.59998,457523.31,0,0,3594.3118 -246,306,540,538,-9,-9,2,1,1,39,1,0,3,0,2,-9,2,1,0,0,5,6.6324635,6.7382135,0,2,0,-9,5,0,8,-3.924063,0,0,0,31,2,4,1,-9,-9,2019,1,1,12,0,12,0,15,1,0,1,0,6.4703622,6.4703622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,1,3,0,832.59998,457523.31,0,0,3594.3118 -246,306,541,-9,538,540,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.0774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,3,0,832.59998,457523.31,0,0,3594.3118 -247,307,542,543,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-1,62.392082,0,0,0,87,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,4.9975538,0,0,0,0,0,1,1,0,0,0,0,0,61.869999,31.309999,41.360001,39.549999,7,1,1,0,0,11,1,0,533,122405.32,0,0,500.94354 -247,307,543,542,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,2,0,2.6235662,2.7433758,1,0,-9,6,0,1,23.395723,0,0,0,86,2,2,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.4913354,0,0,41.360001,39.549999,61.869999,31.309999,5,1,1,0,0,11,1,0,533,122405.32,0,0,500.94354 -248,308,544,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,1,1,0,0,5,8.4341049,8.3667564,0,3,0,0,0,-9,0,-980.86841,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,30,15,1,0,-9,0,10.861486,10.861486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.720001,55.580002,-9,-9,6,1,1,0,0,9,4,1,440,294668.56,0,0,1636.2291 -249,309,545,546,-9,-9,2,1,0,23,1,0,0,0,2,-9,7,2,0,0,2,6.0018802,6.0825243,0,1,0,-9,3,0,-3,1.9959967,1,1,1,26,2,2,1,-9,-9,2019,3,1,25,10,1,37,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.559999,61.34,28.68,56.27,5,1,1,0,0,9,4,1,465,-106640.22,0,0,2841.2273 -249,309,546,545,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,0,2,8.5144129,8.5375328,0,1,0,-9,3,0,3,87.919083,0,1,0,23,2,2,2,2,2,2019,2,2,14,1,50,75,15,1,0,2,0,16.049994,16.049994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.68,56.27,17.559999,61.34,4,1,1,0,0,9,4,1,465,-106640.22,0,0,2841.2273 -250,310,547,-9,548,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,8.4844379,8.403264,0,4,0,0,0,-9,0,-945.31964,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,9,2,1,346.5,360500.25,0,0,3520.856 -250,310,548,-9,-9,-9,1,1,0,44,3,0,1,0,1,-9,2,1,0,0,4,6.2883162,6.45579,0,4,0,0,0,-9,0,-974.61707,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,2,0,15,1,0,-9,0,31.75239,31.75239,0,0,0,0,0,0,0,0,1,1,0,7.2638354,0,0,0,52.48,54.330002,-9,-9,6,1,1,0,0,9,2,1,346.5,360500.25,0,0,3520.856 -251,311,549,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1171.2552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.48,42.82,-9,-9,6,1,1,0,0,6,1,1,446,69027.313,0,0,1850.0699 -252,312,550,554,-9,-9,2,1,0,34,1,1,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,-7,-68.088264,0,0,1,41,1,3,1,2,1,2019,3,1,8,0,0,10,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.809998,43.209999,54.279999,42.509998,7,2,3,0,0,9,4,0,770.79999,724101.94,0,0,2959.6919 -252,312,551,-9,550,554,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-826.72052,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,9,4,0,770.79999,724101.94,0,0,2959.6919 -252,312,552,-9,550,554,4,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.8785,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,9,4,0,770.79999,724101.94,0,0,2959.6919 -252,312,553,-9,550,554,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.4949,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,9,4,0,770.79999,724101.94,0,0,2959.6919 -252,312,554,550,-9,-9,1,1,1,41,1,1,3,0,1,-9,2,1,0,0,3,8.9889574,9.3011694,0,2,0,-9,13,0,7,-58.996693,-9,0,0,34,1,3,3,2,1,2019,2,2,12,1,38,0,15,1,0,3,0,27.659729,27.659729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.279999,42.509998,64.809998,43.209999,5,2,3,0,0,9,4,0,770.79999,724101.94,0,0,2959.6919 -253,313,555,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,0,3,8.0665693,8.1264553,0,3,0,0,0,-9,0,-936.26862,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,25,40,15,1,0,-9,0,14.096129,14.096129,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,22.370001,62.709999,-9,-9,2,4,5,0,0,8,4,0,297,62406.914,0,0,1005.5095 -253,314,556,-9,555,-9,2,1,1,25,2,0,0,0,1,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1019.3823,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.34,39.470001,-9,-9,1,4,2,1,1,8,1,0,973,117729.8,0,0,1584.032 -254,315,557,-9,559,561,5,1,1,20,2,0,3,1,2,-9,7,2,0,0,5,0,0,0,3,0,-9,0,-9,0,-1044.0752,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.92371219,0,0,0,48.77,60.16,-9,-9,4,2,3,0,0,6,1,1,857,37373.859,0,0,447.28018 -254,316,558,-9,559,561,6,1,0,18,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-996.98041,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,26,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.450001,62.919998,-9,-9,5,2,3,0,0,6,3,1,1007,-95688.5,0,0,-71.441444 -254,317,559,561,-9,-9,4,1,0,44,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,-1,-11.031354,-9,0,1,45,1,4,1,-9,-9,2019,3,3,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,6,2,3,0,0,6,3,1,479,737308.25,0,0,1753.7791 -254,317,560,-9,559,561,7,1,0,17,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1012.3184,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,2,3,0,0,6,3,1,479,737308.25,0,0,1753.7791 -254,317,561,559,562,563,3,1,1,45,1,0,3,0,1,-9,2,1,0,0,4,8.2653999,8.6444349,0,2,0,-9,4,0,1,20.236214,-9,0,0,44,3,4,3,3,3,2019,2,4,9,1,37,0,15,1,0,3,0,14.752646,14.752646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,0,6,3,1,479,737308.25,0,0,1753.7791 -254,318,562,563,-9,-9,2,1,0,82,1,0,3,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,7,0,3,-253.4482,-9,0,0,79,3,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,51.130001,38.75,6,2,3,0,0,6,2,1,401,204667.63,0,0,595.21313 -254,318,563,562,-9,-9,1,1,1,79,1,0,3,0,3,-9,4,3,0,0,2,0,6.753459,6.5060515,2,0,-9,7,0,-3,-135.03017,0,0,0,82,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,18.059752,1.6942804,0,0,0,0,1,1,0,0,6.8085032,0,0,51.130001,38.75,52,45,4,2,3,0,1,6,2,1,401,204667.63,0,0,595.21313 -255,319,564,565,-9,-9,2,1,1,81,1,0,0,0,3,-9,2,1,0,0,3,6.5517287,8.2146635,7.439631,1,0,-9,10,0,-2,-83.251434,0,0,0,83,2,4,3,3,3,2019,2,1,7,0,11,22,15,1,0,4,0,7.4961891,7.4961891,0,0,0,0,0,0,0,0,1,1,0,4.1929994,7.7433667,0,0,52.990002,51.279999,54.209999,51.959999,6,1,1,0,0,7,3,1,694.5,1058249.8,0,0,2979.187 -255,319,565,564,-9,-9,1,1,0,83,1,0,0,0,2,-9,4,3,0,0,4,0,6.3984337,5.8782897,1,0,-9,10,0,2,168.24295,0,0,0,81,3,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3601027,5.7220502,0,0,54.209999,51.959999,52.990002,51.279999,6,1,1,0,0,7,3,1,694.5,1058249.8,0,0,2979.187 -256,320,566,-9,568,567,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.3243,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,663.66669,190931.98,0,0,1671.6399 -256,320,567,568,-9,-9,2,1,1,37,1,0,2,0,2,-9,1,1,0,0,5,7.3721848,7.648304,0,2,0,-9,9,0,0,-179.90547,0,0,0,37,1,5,1,2,2,2019,1,1,8,0,40,40,15,1,0,1,0,4.2362208,4.2362208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.689999,57.470001,6,1,1,0,0,13,3,1,663.66669,190931.98,0,0,1671.6399 -256,320,568,567,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,5,8.0120897,8.3261681,0,2,0,-9,9,0,0,68.062019,0,0,1,37,2,5,1,3,3,2019,1,2,9,0,22,30,15,1,0,1,0,17.759531,17.759531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,57.060001,57.759998,6,1,1,0,0,13,3,1,663.66669,190931.98,0,0,1671.6399 -257,321,569,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,2,1,0,0,4,7.067935,7.1737309,0,3,0,0,0,-9,0,-1122.5692,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,18,18,15,1,1,-9,0,7.0084343,7.0084343,0,0,0,0,0,0,0,7,1,1,0,2.8984704,0,14.194544,3,21.73,64.309998,-9,-9,3,1,1,0,0,7,2,1,759,566049.75,0,0,1749.1047 -258,322,570,571,-9,-9,2,1,1,59,1,0,0,0,2,-9,3,3,0,1,3,0,0,0,1,0,-9,6,0,1,-114.56478,0,0,0,58,1,3,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.8761477,3,60.049999,45.349998,50.18,52.619999,5,1,1,1,0,13,2,1,1051,470968,0,0,1674.1011 -258,322,571,570,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,7.4395008,7.067944,0,1,0,-9,6,0,-1,-72.188461,0,0,0,59,2,3,3,3,3,2019,2,2,8,0,30,30,15,1,0,3,0,3.8537216,3.8537216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.619999,60.049999,45.349998,4,1,1,0,1,13,2,1,1051,470968,0,0,1674.1011 -259,323,572,574,-9,-9,2,1,0,32,1,0,1,0,1,-9,2,1,0,0,3,8.3447456,8.1553869,0,2,0,-9,7,0,-15,175.62508,0,0,1,47,2,4,1,3,2,2019,1,1,12,0,40,37,15,1,0,1,0,10.670416,10.670416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.130001,32.799999,57.16,56.150002,6,1,1,0,0,11,4,1,765,32762.65,0,0,2694.1934 -259,323,573,-9,572,574,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.7775,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,765,32762.65,0,0,2694.1934 -259,323,574,572,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.3252707,8.3423166,0,2,0,-9,7,0,15,-44.31736,0,0,0,32,1,3,1,2,2,2019,1,2,11,0,39,48,15,1,0,1,0,13.44491,13.44491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,46.130001,32.799999,6,1,1,0,0,11,4,1,765,32762.65,0,0,2694.1934 -260,324,575,576,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,8.7695551,8.8401747,1,0,-9,58,0,2,8.5890808,0,0,0,77,2,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6401443,8.6397247,0,0,57.68,45.060001,62.389999,56.709999,6,1,1,0,0,8,5,1,648,1995519.5,0,0,3997.3062 -260,324,576,575,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,58,0,-2,-72.862206,0,0,0,79,1,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9041879,0,0,0,62.389999,56.709999,57.68,45.060001,7,1,1,0,0,8,5,1,648,1995519.5,0,0,3997.3062 -261,325,577,578,-9,-9,2,1,1,41,1,1,1,0,2,-9,1,1,0,0,4,8.6970034,8.3688393,0,2,0,-9,3,0,12,-81.52153,0,0,0,29,2,3,1,-9,-9,2019,1,1,9,1,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.919998,33.349998,6,4,1,0,0,5,4,1,800,573421.19,0,0,3292.8127 -261,325,578,577,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,0,3,7.6675096,7.5308604,0,2,0,-9,3,0,-12,-20.707764,0,1,1,41,2,4,1,-9,-9,2019,1,2,13,1,42,27,15,1,0,1,0,7.3143086,7.3143086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.919998,33.349998,51,56,4,1,1,0,0,5,4,1,800,573421.19,0,0,3292.8127 -261,325,579,-9,578,577,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.243,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,800,573421.19,0,0,3292.8127 -262,326,580,581,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,5.4022069,5.924552,2.9488521,1,0,-9,29,0,-10,-50.658253,0,0,0,71,3,3,3,3,3,2019,2,1,11,0,4,15,15,1,0,4,0,6.6443391,6.6443391,0,0,0,0,0,0,0,0,1,1,0,3.7719293,3.2283697,0,0,52,54.509998,57.330002,53.459999,6,1,1,0,0,5,3,1,432,765822,0,0,2680.4138 -262,326,581,580,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.6898141,7.8407402,1,0,-9,29,0,10,53.668369,0,0,0,61,3,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.9269948,7.7811699,0,0,57.330002,53.459999,52,54.509998,6,1,1,0,0,5,3,1,432,765822,0,0,2680.4138 -263,327,582,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,4,9.544775,9.6462879,0,3,0,0,0,-9,0,-883.50714,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,53,53,15,1,0,-9,0,29.531071,29.531071,0,0,0,0,0,0,0,2,1,1,0,6.5935564,0,1.279073,3,60.130001,41.029999,-9,-9,6,1,1,0,0,9,5,1,1951,551716,0,0,4259.9248 -264,328,583,-9,586,587,4,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.95935,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,5,1,912,614658.56,0,0,4338.8535 -264,328,584,-9,586,587,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.2948,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,8,5,1,912,614658.56,0,0,4338.8535 -264,328,585,-9,586,587,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.0505,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,8,5,1,912,614658.56,0,0,4338.8535 -264,328,586,587,-9,-9,1,1,0,37,1,1,3,0,1,-9,2,1,0,0,4,8.8634148,8.6025305,0,2,0,-9,10,0,-3,-94.181206,0,0,1,40,1,4,1,2,2,2019,1,2,11,0,39,37,15,1,0,1,0,20.252609,20.252609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.240002,59.439999,46.619999,55.32,5,3,4,0,0,8,5,1,912,614658.56,0,0,4338.8535 -264,328,587,586,-9,-9,2,1,1,40,1,1,3,0,1,-9,2,1,0,0,4,8.295064,8.8118563,0,2,0,-9,14,0,3,50.765114,0,0,0,37,1,4,1,2,2,2019,1,1,8,0,20,32,15,1,0,1,0,38.701923,38.701923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.619999,55.32,44.240002,59.439999,5,3,4,0,0,8,5,1,912,614658.56,0,0,4338.8535 -265,329,588,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,-9,0,1,0,-1074.7668,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,9,0,0,15,4,1,-9,0,0,0,1,1.1071764,0,10.164387,0,0,18.56554,0,1,1,0,2.5275052,0,0,0,44.509998,21.719999,-9,-9,2,1,1,0,0,10,1,1,253,-62151.645,0,0,996.64563 -266,330,589,-9,592,590,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.4856,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,1570.5,280602.91,0,0,4139.6626 -266,330,590,592,-9,-9,1,1,1,53,1,1,2,0,2,-9,2,1,0,0,4,8.646369,8.574791,0,2,0,-9,10,0,12,60.153107,0,0,0,41,2,4,1,1,2,2019,1,2,11,0,53,50,15,1,0,1,0,9.8578663,9.8578663,0,0,0,0,0,0,0,0,1,1,0,6.6363816,0,0,0,58.150002,52.91,51.830002,57.200001,6,1,1,0,0,5,4,1,1570.5,280602.91,0,0,4139.6626 -266,330,591,-9,592,590,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.1476,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,4,1,1570.5,280602.91,0,0,4139.6626 -266,330,592,590,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,0,4,7.1903501,7.301023,0,2,0,-9,10,0,-12,-78.489647,0,0,1,53,2,4,1,2,2,2019,1,1,8,1,18,13,15,1,0,1,0,11.650327,11.650327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,58.150002,52.91,6,1,1,0,0,5,4,1,1570.5,280602.91,0,0,4139.6626 -267,331,593,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,2,0,6.1085334,6.4792304,3,0,-9,0,-9,0,-1055.5186,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,7.829114,0,0,0,7,1,1,0,1.3142778,6.1068602,7.3885636,3,64,27.540001,-9,-9,7,1,1,0,0,11,2,0,656,51427.168,0,0,2172.2959 -268,332,594,595,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,3,7.2294946,7.0183496,0,2,0,-9,1,-9,2,-158.40637,-9,0,0,49,2,4,1,-9,-9,2019,1,1,12,0,23,0,15,1,0,1,0,6.3588071,6.3588071,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,55.189999,54.259998,4,1,1,0,1,10,4,1,953.5,89502.094,0,0,2160.0854 -268,332,595,594,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.8220911,8.6425457,0,2,0,-9,1,-9,-2,23.27055,-9,0,0,51,2,3,1,-9,-9,2019,1,2,11,0,38,0,15,1,0,1,0,16.021786,16.021786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,48,49,4,1,1,0,1,10,4,1,953.5,89502.094,0,0,2160.0854 -268,333,596,-9,594,595,3,1,1,27,2,0,1,0,2,-9,2,1,0,0,5,7.3260698,7.1180243,0,3,0,-9,0,-9,0,-992.26276,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,64.199997,-9,-9,6,1,1,0,1,10,2,1,579,20787.859,0,0,1094.9719 -268,334,597,-9,594,595,4,1,1,26,3,0,1,0,2,-9,2,1,0,0,4,7.6832051,7.2522807,0,3,0,-9,0,-9,0,-1030.3097,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,1,0,-9,1,5.7991033,5.7991033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,4,1,1,0,1,10,3,1,1089,88230.836,0,0,252.65634 -269,335,598,599,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,0,5,6.8176026,7.2828455,0,1,0,-9,2,0,-8,34.341003,0,1,1,35,1,4,1,-9,-9,2019,1,1,9,1,40,45,15,1,0,1,0,2.5274532,2.5274532,0,0,0,0,0,0,0,7,0,0,0,1.7628773,0,6.9648471,3,56.720001,58.130001,51.720001,54.400002,6,1,1,0,0,9,5,0,1094.5,94377.375,0,0,3311.3474 -269,335,599,598,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,9.0467138,9.01229,0,1,0,-9,2,0,8,-9.7710333,0,0,0,27,2,5,1,2,2,2019,1,2,18,5,70,60,15,1,1,1,0,14.885981,14.885981,0,0,0,0,0,0,0,2,0,0,0,1.8923243,0,0,0,51.720001,54.400002,56.720001,58.130001,5,1,1,0,0,9,5,0,1094.5,94377.375,0,0,3311.3474 -270,336,600,-9,601,602,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.7502,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,1691,1517063,0,0,2099.0818 -270,336,601,602,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,7.7506847,7.6429672,0,2,0,-9,5,0,0,-35.664757,0,0,0,55,3,3,1,-9,-9,2019,1,1,21,8,28,15,15,1,1,1,0,8.8298712,8.8298712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.220001,61.889999,44.790001,49.509998,2,1,1,0,0,6,4,1,1691,1517063,0,0,2099.0818 -270,336,602,601,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,0,3,8.4061222,8.3295326,0,2,0,-9,5,0,9,73.902191,0,0,0,46,1,4,1,-9,2,2019,1,2,17,5,6,45,15,1,1,1,0,82.469963,82.469963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.790001,49.509998,35.220001,61.889999,5,1,1,0,0,6,4,1,1691,1517063,0,0,2099.0818 -271,337,603,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-964.85742,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.43,26.82,-9,-9,2,3,4,0,0,8,1,0,600,40778.508,0,0,1544.926 -272,338,604,605,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,5,6.0588412,8.032629,7.7811413,1,0,-9,54,0,0,-29.001944,0,0,0,73,3,4,3,3,3,2019,4,1,5,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0600538,7.930428,0,0,64.519997,50.23,53.220001,55.200001,7,1,1,0,0,7,3,1,2273.5,1142139.9,0,0,2075.8896 -272,338,605,604,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,5.5097461,5.8346901,1,0,-9,54,0,0,77.990509,0,0,0,73,1,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9445381,0,0,53.220001,55.200001,64.519997,50.23,6,1,1,0,0,7,3,1,2273.5,1142139.9,0,0,2075.8896 -273,339,606,-9,608,607,3,1,0,16,2,0,1,0,2,-9,3,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1099.7645,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,2,1,1,1,0,12,4,1,364.66666,89791.852,0,0,2649.3303 -273,339,607,608,-9,-9,1,1,1,59,1,0,1,0,2,-9,2,1,0,0,4,9.1902914,8.9084682,0,2,0,-9,8,0,2,37.468021,0,0,0,57,2,4,3,3,3,2019,2,2,9,0,50,50,15,1,0,3,0,15.101329,15.101329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.82,53.970001,2,1,1,0,0,12,4,1,364.66666,89791.852,0,0,2649.3303 -273,339,608,607,-9,-9,2,1,0,57,1,0,1,0,2,-9,6,3,0,0,4,0,5.6704178,5.6726856,2,0,-9,8,0,-2,-62.762745,0,0,0,59,2,4,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,2.3394101,5.4370499,74.835114,3,52.82,53.970001,51.830002,57.200001,6,1,1,0,0,12,4,1,364.66666,89791.852,0,0,2649.3303 -274,340,609,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,4,0,7.1975093,7.0892339,3,0,0,0,-9,0,-1113.7631,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7489851,7.217062,0,0,60.869999,47.630001,-9,-9,7,1,1,0,0,7,2,1,954,137606.94,0,0,934.04456 -275,341,610,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,3,3,0,0,1,0,5.0979428,4.6530952,3,0,0,0,-9,0,-1040.5516,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7532668,0,0,27.889999,18.610001,-9,-9,4,1,1,1,0,1,2,1,515,205522.94,0,0,326.85965 -276,342,611,-9,613,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1007.1679,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,10,3,1,561,-55447.922,0,0,2337.1843 -276,342,612,-9,613,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-954.00415,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,10,3,1,561,-55447.922,0,0,2337.1843 -276,342,613,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,3,7.4889593,8.0435495,7.226109,4,0,0,0,-9,0,-900.70563,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,38,27,15,1,0,-9,0,5.8953891,5.8953891,0,0,0,0,0,0,0,0,1,1,0,6.7850275,0,0,0,55.09,46.150002,-9,-9,6,1,1,0,0,10,3,1,561,-55447.922,0,0,2337.1843 -277,343,614,-9,618,615,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.88141,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,2,0,1801,315983.75,0,0,1684.3384 -277,343,615,618,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,0,2,6.9663863,7.2554622,0,2,0,-9,18,0,5,36.254036,0,0,0,38,2,3,3,3,2,2019,2,2,7,0,20,24,15,1,0,3,0,7.8055673,7.8055673,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.23,47.509998,50.029999,52.619999,6,2,3,0,0,8,2,0,1801,315983.75,0,0,1684.3384 -277,343,616,-9,618,615,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1005.1714,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39,45,-9,-9,4,2,3,0,0,8,2,0,1801,315983.75,0,0,1684.3384 -277,343,617,-9,618,615,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1104.4786,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,8,2,0,1801,315983.75,0,0,1684.3384 -277,343,618,615,-9,-9,2,1,0,38,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,18,0,-5,40.039478,0,0,1,43,1,2,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.029999,52.619999,53.23,47.509998,6,2,3,0,0,8,2,0,1801,315983.75,0,0,1684.3384 -278,344,619,621,-9,-9,2,1,1,54,1,0,1,0,3,-9,2,1,0,0,3,7.9173126,7.8981442,0,2,0,-9,9,0,4,78.58876,0,0,0,50,3,2,1,-9,-9,2019,1,1,10,0,45,45,15,1,0,1,0,7.1922941,7.1922941,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.3350325,1,51.740002,42.240002,49.09,33.360001,4,1,1,0,1,10,3,0,938.25,114586.85,0,0,1818.5381 -278,344,620,-9,621,619,4,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.9244,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,6,0,0,10,3,0,938.25,114586.85,0,0,1818.5381 -278,344,621,619,-9,-9,1,1,0,50,1,0,1,0,3,-9,2,1,0,1,2,5.442688,5.2131844,0,2,0,-9,9,0,-4,-99.595139,0,0,0,54,3,3,1,-9,-9,2019,1,2,11,0,5,5,15,1,0,1,0,5.8761282,5.8761282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.09,33.360001,51.740002,42.240002,4,1,1,0,0,10,3,0,938.25,114586.85,0,0,1818.5381 -278,344,622,-9,621,619,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-1114.2782,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,10,3,0,938.25,114586.85,0,0,1818.5381 -279,345,623,624,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,0,3,0,6.4794388,6.4693446,1,0,-9,34,0,1,79.783249,0,0,0,59,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2011156,6.6365108,0,0,47.43,54.040001,49,48,6,2,3,0,0,8,5,1,594,1081826.4,0,0,3611.1072 -279,345,624,623,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.8168135,8.7922697,0,1,0,-9,36,0,-1,83.470932,0,0,0,60,2,3,3,3,3,2019,2,1,11,2,40,37,15,1,0,4,0,16.915421,16.915421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,47.43,54.040001,5,4,5,0,0,8,5,1,594,1081826.4,0,0,3611.1072 -279,346,625,-9,624,623,3,1,1,22,3,0,0,0,2,-9,2,1,0,0,3,7.6901326,7.4192863,0,3,0,0,0,-9,0,-1085.6108,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,35,35,15,1,0,-9,1,7.4228854,7.4228854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,6,4,2,0,0,8,3,1,165,197837.16,0,0,893.89703 -280,347,626,-9,627,628,1,1,1,31,2,0,0,0,2,-9,1,1,0,0,3,6.2693777,6.4452577,0,3,0,0,0,-9,0,-1014.7905,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,75,12,15,1,0,-9,1,.68888181,.68888181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.459999,54.849998,-9,-9,6,1,1,0,0,7,2,1,432,0,0,0,-569.25421 -280,348,627,628,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,5,0,8.6158953,8.4618196,1,0,1,35,-9,-3,33.774624,0,0,0,64,1,3,1,2,-9,2019,3,3,11,0,0,60,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.940946,8.4336758,0,0,60.02,56.419998,52,54.509998,6,1,1,0,0,7,5,1,1588,646229.5,0,0,4144.9668 -280,348,628,627,-9,-9,3,1,1,64,1,0,0,0,1,-9,1,1,0,0,3,0,8.7070293,8.5705242,1,0,1,39,-9,3,-132.3513,0,0,0,61,1,5,3,3,3,2019,2,2,7,0,40,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.8208889,8.8688107,0,3,52,54.509998,60.02,56.419998,6,1,1,0,0,7,5,1,1588,646229.5,0,0,4144.9668 -281,349,629,630,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.6516705,7.4291906,1,0,-9,3,0,10,58.570133,0,0,0,55,2,3,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2515769,7.528657,0,0,45.91,59.889999,51.740002,47.77,6,1,1,0,0,7,4,1,365,785921.63,0,0,2558.8838 -281,349,630,629,-9,-9,2,1,0,55,1,0,0,0,2,-9,1,1,0,0,3,8.145895,8.1384192,0,1,0,-9,3,0,-10,-70.293137,0,0,0,65,2,4,3,2,2,2019,2,1,12,2,16,16,15,1,0,4,0,28.832106,28.832106,0,0,0,0,0,0,0,0,1,1,0,3.9565618,0,0,0,51.740002,47.77,45.91,59.889999,6,1,1,0,0,7,4,1,365,785921.63,0,0,2558.8838 -282,350,631,632,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,51,0,0,0,0,0,0,70,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.130001,46.650002,35.639999,29.24,6,1,1,0,0,13,1,0,713.5,42110.117,0,0,1369.7596 -282,350,632,631,-9,-9,1,1,0,70,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,51,0,0,0,0,0,0,70,3,2,3,3,3,2019,4,2,19,7,0,0,15,3,1,4,0,0,0,1,0,11.871781,0,0,0,0,14.5,1,1,0,0,0,14.386676,1,35.639999,29.24,32.130001,46.650002,3,1,1,0,0,13,1,0,713.5,42110.117,0,0,1369.7596 -283,351,633,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,1,4,0,6.519927,6.7704015,3,0,0,0,-9,0,-853.60925,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5666771,0,0,64.639999,45.900002,-9,-9,7,1,1,0,0,12,2,0,692,172240.05,0,0,2780.8125 -284,352,634,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,0,3,0,3.9619014,4.2343287,3,0,0,0,-9,0,-964.96936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0172629,4.5699992,0,0,51.48,43.709999,-9,-9,6,1,1,0,0,12,2,0,1847,369345.16,0,0,878.05005 -285,353,635,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,2,1,0,0,3,7.8242631,8.1029482,0,1,0,-9,5,0,2,-143.34572,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,2,12,0,21,22,15,1,0,-9,0,15.470958,15.470958,0,0,0,0,0,0,0,0,0,0,0,3.0401497,0,0,0,46.549999,58.299999,55,52,3,1,1,0,0,8,3,1,54,611252.5,0,0,1709.9911 -286,354,636,637,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,4.761302,4.3218293,1,0,-9,9,0,0,15.084791,0,0,0,77,2,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,7.1875958,0,0,0,0,7,1,1,0,5.2850757,5.0524549,14.856999,1,63.400002,45.23,68.910004,22.57,5,1,1,0,0,6,2,1,486.5,838683,0,0,1859.3083 -286,354,637,636,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,1,2,0,6.6670437,6.4756656,1,0,-9,9,0,0,-52.835587,0,0,0,77,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,14.649769,0,0,0,0,0,1,1,0,4.8440027,6.3474135,0,0,68.910004,22.57,63.400002,45.23,7,1,1,0,0,6,2,1,486.5,838683,0,0,1859.3083 -287,355,638,639,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-3,-115.82791,0,0,0,73,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6949801,0,0,0,49.860001,55.310001,47.779999,52.349998,6,1,1,0,0,11,3,1,858,595119.25,0,0,2468.6709 -287,355,639,638,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,6.0762696,7.676043,7.4133296,1,0,-9,6,0,3,64.709091,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,24,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4067392,7.5740919,0,0,47.779999,52.349998,49.860001,55.310001,2,1,1,0,0,11,3,1,858,595119.25,0,0,2468.6709 -288,356,640,641,-9,-9,2,1,0,55,1,0,1,0,3,-9,2,1,0,0,3,6.8610463,6.6336775,0,2,0,-9,8,0,0,-188.15778,0,0,0,55,2,2,1,3,3,2019,1,1,22,8,18,17,15,1,1,1,0,6.693644,6.693644,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.450001,42.189999,55.599998,47.799999,3,1,1,0,0,7,4,1,601,143507.44,0,0,2642.6235 -288,356,641,640,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,0,2,8.4894505,8.899642,0,2,0,-9,8,0,0,110.98945,0,0,0,55,3,3,1,3,3,2019,1,2,7,0,47,47,15,1,0,1,0,15.216838,15.216838,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.599998,47.799999,31.450001,42.189999,6,1,1,0,0,7,4,1,601,143507.44,0,0,2642.6235 -288,356,642,-9,640,641,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,3.5991085,3.5724859,0,2,0,0,0,-9,0,-982.61206,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,7,4,1,601,143507.44,0,0,2642.6235 -288,357,643,-9,640,641,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,3,7.5004578,7.4200554,0,3,0,0,0,-9,0,-765.65076,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,20,15,15,1,0,-9,1,11.125218,11.125218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.41,56.080002,-9,-9,3,1,1,0,0,7,3,1,363,-47954.348,0,0,-643.97253 -289,358,644,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,2,7.5308251,7.4870248,0,3,0,0,0,-9,0,-946.71088,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,40,39,15,1,0,-9,0,6.1994858,6.1994858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,27.799999,-9,-9,4,1,1,0,0,4,3,0,990,-236355.02,0,0,1455.6835 -290,359,645,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,1,1,0,0,4,6.5072331,6.2144141,0,3,0,0,0,-9,0,-1068.1057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,40,15,1,0,-9,0,1.7697018,1.7697018,0,0,0,0,0,0,0,7,1,1,0,2.4950266,0,8.0989552,3,54.790001,55.860001,-9,-9,5,1,1,0,0,2,2,1,790,58989.754,0,0,329.74548 -291,360,646,647,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,8.0936079,8.4506149,0,1,0,-9,2,0,0,-39.652664,0,0,0,30,1,5,1,1,1,2019,1,2,9,0,37,37,15,1,0,1,0,12.374102,12.374102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,47.389999,56.639999,6,1,1,0,0,11,5,1,262.5,346126.16,0,0,3470.1396 -291,360,647,646,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,5,8.0868835,8.0351095,0,1,0,-9,2,0,0,51.553829,0,0,1,30,1,3,1,-9,-9,2019,1,1,10,1,48,40,15,1,0,1,0,8.0084124,8.0084124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.389999,56.639999,57.330002,53.459999,6,1,1,0,0,11,5,1,262.5,346126.16,0,0,3470.1396 -292,361,648,649,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,4.8096914,5.0408139,1,0,-9,10,0,-3,-56.708572,0,0,0,86,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8291268,4.8087711,0,0,54,46,52,45,6,1,1,0,0,13,2,1,547.5,190398.94,0,0,1180.8285 -292,361,649,648,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,0,3,0,4.2409182,4.5690951,1,0,-9,62,0,3,94.124443,0,0,0,83,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,5.4026442,0,0,0,0,0,5.48,1,1,0,4.5563388,4.4344802,1.5476843,1,52,45,54,46,6,1,1,0,0,13,2,1,547.5,190398.94,0,0,1180.8285 -293,362,650,-9,652,653,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.55914,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,2,1,790.5,11889.838,0,0,1760.8767 -293,362,651,-9,652,653,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.94897,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,6,2,1,790.5,11889.838,0,0,1760.8767 -293,362,652,653,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,3,8.0425606,8.0050907,0,2,0,-9,14,0,-6,-38.178421,0,0,1,46,3,3,1,2,2,2019,1,1,6,0,34,32,15,1,0,1,0,9.981081,9.981081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,45.869999,38.23,6,2,3,0,0,6,2,1,790.5,11889.838,0,0,1760.8767 -293,362,653,652,-9,-9,1,1,1,46,1,0,2,0,3,-9,1,1,0,0,3,4.433742,4.5356503,0,2,0,-9,14,0,6,31.549528,0,0,0,40,2,3,1,3,2,2019,1,2,9,1,25,30,15,1,0,1,0,.31384331,.31384331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.869999,38.23,57.330002,53.459999,5,2,3,0,0,6,2,1,790.5,11889.838,0,0,1760.8767 -294,363,654,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-817.591,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.610001,54.240002,-9,-9,6,1,1,0,0,6,2,1,1029,270685.06,0,0,1034.3756 -295,364,655,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,2,1,0,0,5,8.3918514,8.0878601,7.0800676,3,0,0,0,-9,0,-994.27307,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,2,42,0,15,1,0,-9,0,12.889812,12.889812,0,0,0,0,0,0,0,14.5,1,1,0,7.1525826,7.6604209,3.1350927,3,19.07,70.07,-9,-9,1,1,1,0,0,12,5,1,320,269706.53,0,0,2216.2334 -296,365,656,658,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,8.0390711,8.5244446,0,2,0,-9,9,0,-6,28.449387,0,0,1,41,2,4,1,2,3,2019,1,1,7,0,44,42,15,1,0,1,0,10.391768,10.391768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,56.290001,52.369999,6,1,1,0,0,5,5,1,2305.5,819169,0,0,4369.8174 -296,365,657,-9,656,658,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.75403,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,2305.5,819169,0,0,4369.8174 -296,365,658,656,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,0,4,8.4634676,8.6236954,0,2,0,-9,9,0,6,108.86564,0,0,0,35,2,4,1,3,3,2019,1,2,11,0,35,35,15,1,0,1,0,19.405437,19.405437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.290001,52.369999,51.830002,57.200001,6,1,1,0,0,5,5,1,2305.5,819169,0,0,4369.8174 -296,365,659,-9,656,658,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.3549,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,2305.5,819169,0,0,4369.8174 -297,366,660,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1124.7412,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.240002,19.059999,-9,-9,3,1,1,0,1,9,1,0,547,0,0,0,969.11316 -298,367,661,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,7.7631106,7.7139931,0,3,0,0,0,-9,0,-1140.842,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,37,24,15,1,0,-9,0,8.8903046,8.8903046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.790001,51.099998,-9,-9,6,1,1,0,0,13,3,0,1167,-43950.012,0,0,1689.0405 -299,368,662,663,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,0,-82.214401,0,0,0,69,1,3,3,3,3,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,7.322238,0,0,3,49.5,46.080002,39.52,46.830002,6,1,1,0,0,7,3,1,1146.5,1535992,0,0,4026.1726 -299,368,663,662,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.9930196,7.9269686,1,0,-9,10,0,0,63.220467,0,0,0,69,3,4,3,3,3,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.0918263,8.498518,0,3,39.52,46.830002,49.5,46.080002,3,1,1,0,0,7,3,1,1146.5,1535992,0,0,4026.1726 -300,369,664,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-938.7323,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23246101,0,0,0,42.950001,61.240002,-9,-9,7,1,1,0,0,7,1,0,641,-56954.727,0,0,599.34631 -301,370,665,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,2,1,0,0,5,8.8423901,8.8086329,0,3,0,0,0,-9,0,-894.6524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,49,44,15,1,0,-9,0,15.428222,15.428222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,3,4,0,0,5,5,1,2349,521310.94,0,0,2505.7649 -301,371,666,-9,665,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.1678104,8.090785,0,3,0,0,0,-9,0,-928.52551,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,38,40,15,1,0,-9,1,12.230082,12.230082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.99,59.470001,-9,-9,5,3,4,0,0,5,4,1,660,19969.436,0,0,1667.8058 -302,372,667,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1140.7372,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.450001,63.27,-9,-9,3,1,1,0,0,1,1,0,900,75159.164,0,0,489.10553 -303,373,668,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,4,0,7.7087493,7.5401492,3,0,0,0,-9,0,-1105.6365,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4605122,7.2529998,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,10,3,1,224,692419.94,0,0,1361.6356 -304,374,669,671,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,8.2690659,8.4782553,0,2,0,-9,10,0,3,-110.48091,0,0,0,33,1,5,1,2,2,2019,1,1,1,0,32,38,15,1,0,1,0,15.879496,15.879496,0,0,0,0,0,0,0,0,1,1,0,4.015995,0,0,0,57.16,56.150002,52.130001,57.220001,5,3,4,0,0,8,4,1,282.75,452847.63,0,0,3671.7847 -304,374,670,-9,671,669,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.84338,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,4,1,282.75,452847.63,0,0,3671.7847 -304,374,671,669,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,0,5,8.6519146,8.7574635,0,2,0,-9,6,0,-3,-52.57748,0,0,1,36,1,4,1,2,2,2019,1,2,10,0,48,38,15,1,0,1,0,10.534424,10.534424,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.130001,57.220001,57.16,56.150002,6,3,4,0,0,8,4,1,282.75,452847.63,0,0,3671.7847 -304,374,672,-9,671,669,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.9597,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,4,1,282.75,452847.63,0,0,3671.7847 -305,375,673,674,-9,-9,2,1,1,40,1,0,1,0,3,-9,1,1,0,0,3,7.869698,8.0255613,0,2,0,-9,14,0,9,-59.65778,0,0,0,31,2,4,3,3,2,2019,2,1,8,1,48,40,15,1,0,3,0,7.0414762,7.0414762,0,0,0,0,0,0,0,0,0,0,0,3.7941272,0,0,0,52.73,41.830002,56.290001,39.02,6,2,3,0,0,8,3,0,498,274800,0,0,2602.7183 -305,375,674,673,-9,-9,1,1,0,31,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,0,-30.644924,0,0,1,40,3,3,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.290001,39.02,52.73,41.830002,6,2,3,0,1,8,3,0,498,274800,0,0,2602.7183 -305,375,675,-9,674,673,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.74194,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,3,0,498,274800,0,0,2602.7183 -305,376,676,-9,-9,-9,4,1,1,41,2,0,1,0,3,-9,1,1,0,0,4,7.8103218,7.6954794,0,4,0,0,0,-9,0,-991.70074,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,1,40,48,15,1,0,-9,0,10.351619,10.351619,0,0,0,0,0,0,0,0,0,0,0,1.8063397,0,0,0,54.360001,40.880001,-9,-9,7,2,3,0,0,8,3,0,354,133246.97,0,0,1697.696 -306,377,677,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,0,3,9.1481142,9.0433111,0,3,0,0,0,-9,0,-1069.6514,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,55,55,15,1,0,-9,0,17.683647,17.683647,0,0,0,0,0,0,0,7,1,1,0,2.2649214,0,8.2377253,3,60.990002,37.939999,-9,-9,6,1,1,0,0,5,5,1,82,1511133.8,0,0,1571.2675 -307,378,678,679,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,41,0,-4,-49.352669,0,0,0,64,2,3,1,3,-9,2019,3,2,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.98,36.02,41.889999,52.849998,5,2,3,0,0,8,3,1,895,776115.5,0,0,1141.3453 -307,378,679,678,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,8.1605959,7.8761158,0,1,0,-9,6,0,4,67.550323,0,0,0,60,2,2,3,-9,-9,2019,2,1,9,1,35,39,15,1,0,3,0,11.464535,11.464535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.889999,52.849998,39.98,36.02,6,2,3,0,0,8,3,1,895,776115.5,0,0,1141.3453 -307,379,680,-9,678,679,4,1,1,18,2,0,0,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-963.9458,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.700001,-9,-9,5,2,3,0,0,8,1,1,302,-55950.758,0,0,1046.8258 -307,380,681,-9,678,679,5,1,1,18,2,0,0,1,3,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1008.4005,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,5,2,3,0,0,8,1,1,156,0,0,0,-879.95392 -308,381,682,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-994.82104,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,0,0,7.2803378,0,0,0,0,1,1,0,0,0,0,0,25.309999,44.080002,-9,-9,2,1,1,0,0,13,1,0,228,-45449.832,0,0,2275.6643 -308,382,683,-9,682,-9,2,1,1,36,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1026.8323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,35,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2253416,0,0,0,42,42,-9,-9,3,1,1,0,1,13,1,0,251,0,0,0,1337.4921 -309,383,684,685,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,5,8.8293657,8.9499359,0,1,0,-9,8,0,-3,-18.617805,0,0,1,36,1,4,1,-9,-9,2019,1,1,11,0,45,50,15,1,0,1,0,18.704014,18.704014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.380001,58.02,57.16,56.150002,6,1,1,0,0,2,4,1,498,54302.68,0,0,2988.0669 -309,383,685,684,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,0,4,0,0,0,1,0,-9,8,0,3,-157.27681,0,0,0,33,1,5,1,2,2,2019,1,2,7,0,0,79,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4475482,0,0,0,57.16,56.150002,50.380001,58.02,7,1,1,0,0,2,4,1,498,54302.68,0,0,2988.0669 -310,384,686,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,2,1,0,0,5,7.7900128,7.8746557,0,3,0,0,0,-9,0,-1032.5546,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,7.4442186,7.4442186,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.139999,60.450001,-9,-9,5,1,1,0,0,13,3,0,79,24856.57,0,0,1422.4907 -311,385,687,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,0,4,8.5396843,8.3762465,0,3,0,0,0,-9,0,-1123.3804,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,35,15,1,0,-9,0,12.774537,12.774537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,-9,-9,4,3,4,0,0,8,4,0,973,376035.5,0,0,1916.1868 -312,386,688,689,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.0026264,7.240293,1,0,-9,9,0,1,-60.858376,0,0,0,72,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6115165,6.7597237,0,0,49.560001,47.57,54.98,44.799999,6,1,1,0,0,10,2,1,1001,758170.13,0,0,1001.0366 -312,386,689,688,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,3.9009783,4.0420022,1,0,-9,9,0,-1,6.0753431,0,0,0,73,2,3,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.1712046,0,0,54.98,44.799999,49.560001,47.57,6,1,1,0,0,10,2,1,1001,758170.13,0,0,1001.0366 -313,387,690,-9,692,691,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.61359,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,0,846.33331,102601.04,0,0,2108.1482 -313,387,691,692,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,3,7.8108907,8.1174431,0,2,0,-9,21,0,0,-12.173006,0,0,0,41,2,3,3,3,3,2019,2,2,7,0,40,38,15,1,0,3,0,8.2323189,8.2323189,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.889999,48.599998,48.080002,40.439999,5,2,3,0,0,2,3,0,846.33331,102601.04,0,0,2108.1482 -313,387,692,691,-9,-9,2,1,0,41,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,0,-84.028206,0,0,1,41,2,3,1,2,3,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.080002,40.439999,58.889999,48.599998,6,2,3,0,0,2,3,0,846.33331,102601.04,0,0,2108.1482 -314,388,693,694,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,8.9990778,8.7158537,0,1,0,-9,28,0,1,-179.71523,0,0,0,48,2,4,3,2,1,2019,2,2,7,0,53,50,15,1,0,4,0,18.64683,18.64683,0,0,0,0,0,0,0,0,0,0,0,1.0003086,0,0,0,57.16,56.150002,55.27,56.950001,6,1,1,0,0,7,5,1,596,662064,0,0,6044.6328 -314,388,694,693,-9,-9,2,1,0,48,1,0,0,0,2,-9,4,3,0,0,4,8.5304108,8.347764,0,1,0,-9,28,0,-1,-133.10291,0,0,0,49,1,4,1,1,1,2019,3,1,3,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.4740224,0,3.8320856,3,55.27,56.950001,57.16,56.150002,6,1,1,0,0,7,5,1,596,662064,0,0,6044.6328 -314,389,695,-9,694,693,3,1,1,21,2,0,0,0,2,0,7,2,0,0,4,7.8754745,7.8495126,0,3,0,0,0,-9,0,-986.4538,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,7,3,1,436,-65707.133,0,0,1891.473 -315,390,696,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.0298896,6.3100924,3,0,0,0,-9,0,-1086.0372,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9036083,2.6325238,3,43.049999,51.77,-9,-9,2,1,1,0,0,1,2,0,783,279627.13,0,0,520.83087 -316,391,697,698,-9,-9,3,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,9.0163765,9.3950377,0,1,0,-9,32,0,0,74.803375,0,0,0,53,2,3,1,2,2,2019,1,1,7,0,41,41,15,1,0,1,0,27.151419,27.151419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.990002,41.93,55.119999,6,1,1,0,0,8,5,1,594.5,28278.82,0,0,5014.6719 -316,391,698,697,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.2213621,8.4080935,7.3634453,1,0,-9,32,0,0,-67.516556,0,0,0,53,1,4,1,2,3,2019,1,3,19,7,25,26,15,1,1,1,0,13.850944,13.850944,0,0,0,0,0,0,0,7,0,0,0,7.3256245,0,5.512259,3,41.93,55.119999,46.75,56.990002,6,1,1,0,0,8,5,1,594.5,28278.82,0,0,5014.6719 -316,392,699,-9,698,697,2,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.5904121,8.5636234,0,3,0,0,0,-9,0,-1053.1798,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,40,42,15,1,0,-9,1,12.688662,12.688662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,8,4,1,217,-20748.324,0,0,1239.1985 -317,393,700,-9,-9,-9,1,1,1,81,3,0,0,0,1,-9,4,3,0,0,3,0,6.965939,7.0156555,3,0,0,0,-9,0,-994.2019,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.0212812,7.4220157,0,0,52.790001,51.639999,-9,-9,6,2,3,0,0,8,3,1,269,640264.44,0,0,2978.0581 -318,394,701,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-928.45605,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.84946185,0,0,0,58.720001,51.290001,-9,-9,7,4,5,0,0,10,1,1,54,-52924.621,0,0,882.30103 -319,395,702,703,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.7824006,7.7140913,1,0,-9,7,0,2,144.97499,0,0,0,72,2,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1862967,7.6941385,0,0,41.869999,56.48,54.200001,57.490002,6,1,1,0,0,12,3,1,754,912023.63,0,0,3676.2356 -319,395,703,702,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.6161699,7.3256044,1,0,-9,7,0,-2,6.3350844,0,0,0,74,3,3,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4645605,7.7108297,0,0,54.200001,57.490002,41.869999,56.48,2,1,1,0,0,12,3,1,754,912023.63,0,0,3676.2356 -320,396,704,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.5030351,7.5595107,0,3,0,0,0,-9,0,-1102.5916,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,26,19,15,1,0,-9,0,8.243907,8.243907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.610001,49.130001,-9,-9,6,1,1,0,0,1,3,1,2659,155257.89,0,0,1045.0577 -321,397,705,-9,709,707,6,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.27417,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,2,0,569.40002,-7524.9487,0,0,1238.9038 -321,397,706,-9,709,707,4,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.92749,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,2,0,569.40002,-7524.9487,0,0,1238.9038 -321,397,707,709,-9,-9,2,1,1,37,1,0,4,0,1,0,7,2,0,0,4,0,0,0,2,0,-9,7,0,3,78.464027,-9,0,0,34,2,4,1,3,3,2019,3,1,6,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,3,4,0,0,4,2,0,569.40002,-7524.9487,0,0,1238.9038 -321,397,708,-9,709,707,3,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.9482,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,2,0,569.40002,-7524.9487,0,0,1238.9038 -321,397,709,707,-9,-9,1,1,0,34,1,0,4,0,2,-9,2,1,0,0,4,7.6877294,7.6214156,0,2,0,-9,10,0,-3,21.922979,0,0,1,37,1,4,2,3,3,2019,2,2,6,0,41,33,15,1,0,2,0,6.0685482,6.0685482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,3,4,0,0,4,2,0,569.40002,-7524.9487,0,0,1238.9038 -321,398,710,-9,709,707,5,1,1,18,2,0,4,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1017.6045,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,3,4,0,0,4,2,0,692,-58145.168,0,0,0 -322,399,711,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,4,8.5011005,8.5629959,0,3,0,0,0,-9,0,-1074.4694,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,17.281439,17.281439,0,0,0,0,0,0,0,0,1,1,0,1.3726313,0,0,0,51.77,58.57,-9,-9,5,3,4,0,0,6,5,0,215,62571.039,0,0,2682.7373 -323,400,712,713,-9,-9,2,1,0,39,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-1,1.8716936,0,0,1,40,2,3,1,-9,-9,2019,3,1,10,1,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,54.959999,53.169998,6,1,1,0,0,9,5,1,1713,351522.63,0,0,4023.8901 -323,400,713,712,-9,-9,1,1,1,40,1,0,1,0,2,-9,2,1,0,0,3,9.259964,9.3354921,0,2,0,-9,7,0,1,110.58315,0,0,0,39,2,4,3,2,2,2019,2,2,5,0,47,48,15,1,0,3,0,26.612623,26.612623,0,0,0,0,0,0,0,7,0,0,0,7.4716058,0,6.2685633,3,54.959999,53.169998,49,56,6,1,1,0,0,9,5,1,1713,351522.63,0,0,4023.8901 -323,400,714,-9,712,713,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1117.3636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,1713,351522.63,0,0,4023.8901 -324,401,715,716,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,1,1,0,5.2608194,5.1451712,1,0,-9,2,0,-10,16.270805,0,0,0,69,2,2,3,-9,-9,2019,4,1,29,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2647662,5.4273643,0,0,37.599998,14.31,46,37,2,1,1,0,0,10,2,0,706.5,471431.91,0,0,1790.203 -324,401,716,715,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,35,0,10,-.6130113,0,0,0,59,2,1,3,3,2,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.97697,1,46,37,37.599998,14.31,3,1,1,0,0,10,2,0,706.5,471431.91,0,0,1790.203 -325,402,717,718,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,5.8516264,6.2508736,1,0,-9,62,0,2,43.962406,0,0,0,80,3,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1064749,5.5151196,0,0,54,46,62.259998,42.799999,6,1,1,0,0,8,2,1,656.5,228592.08,0,0,863.6488 -325,402,718,717,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,4,0,5.6815701,5.4326706,1,0,-9,9,0,-2,47.754219,0,0,0,82,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.453897,0,0,62.259998,42.799999,54,46,6,1,1,0,0,8,2,1,656.5,228592.08,0,0,863.6488 -326,403,719,-9,721,720,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-849.17206,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,2499,267092.56,0,0,3719.2568 -326,403,720,721,-9,-9,1,1,1,34,1,0,1,0,2,-9,2,1,0,0,2,8.5653172,8.4387531,0,2,0,-9,6,0,-2,-20.562059,0,0,0,36,3,3,1,2,2,2019,1,2,12,1,50,42,15,1,0,1,0,14.018023,14.018023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.799999,52.41,42.18,5,1,1,0,0,12,4,1,2499,267092.56,0,0,3719.2568 -326,403,721,720,-9,-9,2,1,0,36,1,0,1,0,3,-9,2,1,0,0,3,7.4298677,7.8270745,0,2,0,-9,6,0,2,-18.582638,0,0,1,34,2,2,1,-9,-9,2019,1,1,12,0,32,32,15,1,0,1,0,7.787837,7.787837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.41,42.18,46.91,51.799999,4,1,1,0,0,12,4,1,2499,267092.56,0,0,3719.2568 -327,404,722,723,-9,-9,3,1,0,36,1,0,5,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,1,-9,0,0,-9,0,1,36,2,2,3,-9,-9,2019,4,1,26,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.8191081,3,24.52,26.41,56,43.5,1,1,1,0,1,11,1,0,472,107693.46,0,0,3845.5332 -327,404,723,722,-9,-9,1,1,1,36,1,0,5,0,2,-9,97,3,0,1,2,0,0,0,2,0,-9,1,-9,0,0,-9,0,0,36,2,3,3,2,2,2019,4,3,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,111.86001,2,56,43.5,24.52,26.41,5,1,1,0,1,11,1,0,472,107693.46,0,0,3845.5332 -327,404,724,-9,722,723,7,1,0,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-944.75739,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,1,0,472,107693.46,0,0,3845.5332 -327,404,725,-9,722,723,8,1,1,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-912.71008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,1,0,472,107693.46,0,0,3845.5332 -327,405,726,-9,722,723,4,1,1,18,2,0,5,0,2,-9,2,1,0,0,4,7.9691243,7.7351589,0,3,0,-9,0,-9,0,-846.56421,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,59,0,15,1,0,-9,1,5.6685915,5.6685915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,4,1,1,0,0,11,4,0,1018,75183.891,0,0,1682.0618 -328,406,727,728,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,7.168663,7.6749272,6.4948125,1,0,-9,4,0,8,18.112654,0,0,0,53,1,4,1,2,2,2019,1,2,9,0,20,20,15,1,0,1,0,8.1396942,8.1396942,0,0,0,0,0,0,0,0,0,0,0,6.7686577,6.4952312,0,0,48.869999,58.549999,52,53,5,1,1,0,0,10,3,1,821,371028.66,0,0,2165.3643 -328,406,728,727,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,7.6244316,7.5374207,0,1,0,-9,4,0,-8,7.7375541,0,0,0,61,2,4,1,-9,-9,2019,1,1,10,1,37,40,15,1,0,1,0,6.4078989,6.4078989,0,0,0,0,0,0,0,0,0,0,0,6.5028915,0,0,0,52,53,48.869999,58.549999,6,1,1,0,0,10,3,1,821,371028.66,0,0,2165.3643 -329,407,729,730,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,6.6292582,6.6310596,0,2,0,-9,15,0,-3,39.681511,0,0,0,51,2,3,1,2,-9,2019,1,1,6,0,10,10,15,1,0,1,0,7.8738351,7.8738351,0,0,0,0,0,0,0,0,1,1,0,.82730132,0,0,0,65.07,44.279999,58.32,50.220001,6,1,1,0,0,10,4,1,378.66666,304051.72,0,0,4200.0991 -329,407,730,729,-9,-9,1,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,8.7446756,8.5830431,0,2,0,-9,15,0,3,-76.152519,0,0,0,48,2,4,1,-9,2,2019,1,2,7,0,40,45,15,1,0,1,0,16.538237,16.538237,0,0,0,0,0,0,0,0,1,1,0,7.6364932,0,0,0,58.32,50.220001,65.07,44.279999,2,1,1,0,0,10,4,1,378.66666,304051.72,0,0,4200.0991 -329,407,731,-9,729,730,4,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1165.6083,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,378.66666,304051.72,0,0,4200.0991 -329,408,732,-9,729,730,3,1,0,18,2,0,1,0,2,1,2,1,0,0,5,6.8290725,7.2827258,0,3,0,0,0,-9,0,-1124.5208,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,19,0,15,1,0,-9,1,7.0963364,7.0963364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,-9,-9,6,1,1,0,0,10,2,1,196,-81.44648,0,0,-21.842619 -330,409,733,734,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,2,-41.283913,0,0,0,77,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.099998,53.23,55.959999,49.93,6,1,1,0,0,12,2,1,531,270104.75,0,0,2153.5796 -330,409,734,733,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,7.7561917,7.5053549,1,0,-9,6,0,-2,66.99894,0,0,0,79,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3935499,0,0,55.959999,49.93,46.099998,53.23,6,1,1,0,0,12,2,1,531,270104.75,0,0,2153.5796 -331,410,735,736,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,2,0,5.6424603,5.734776,1,0,-9,54,0,2,42.23077,0,0,0,75,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.9250278,5.7220054,26.725618,1,60.990002,26.219999,64.110001,20.33,6,1,1,0,0,2,2,1,842,312974.03,0,0,1259.1313 -331,410,736,735,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,1,3,0,5.6329947,5.0809321,1,0,-9,54,0,-2,2.9329779,0,0,0,77,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6352763,0,0,64.110001,20.33,60.990002,26.219999,6,1,1,0,0,2,2,1,842,312974.03,0,0,1259.1313 -332,411,737,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-986.41248,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.209999,38.669998,-9,-9,4,1,1,0,0,2,1,1,456,155196.14,0,0,1495.5732 -333,412,738,-9,739,741,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.51141,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,459,222416.59,0,0,4580.1553 -333,412,739,741,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,4,8.4610605,8.3560572,0,2,0,-9,12,0,-4,42.891968,0,0,1,38,2,5,1,1,2,2019,1,2,8,0,43,57,15,1,0,1,0,15.247885,15.247885,0,0,0,0,0,0,0,0,1,1,0,3.2016687,0,0,0,33.139999,64.629997,51.73,58.82,6,1,1,0,0,9,5,1,459,222416.59,0,0,4580.1553 -333,412,740,-9,739,741,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.408,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,459,222416.59,0,0,4580.1553 -333,412,741,739,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,5,8.7475185,8.9005241,0,2,0,-9,12,0,4,-96.724358,0,0,0,34,1,4,1,2,2,2019,1,1,8,0,42,45,15,1,0,1,0,14.929379,14.929379,0,0,0,0,0,0,0,0,1,1,0,1.1591538,0,0,0,51.73,58.82,33.139999,64.629997,5,1,1,0,0,9,5,1,459,222416.59,0,0,4580.1553 -334,413,742,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,1,1,0,0,4,7.1879964,7.2019734,5.7205935,3,0,0,0,-9,0,-1140.6445,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,25,40,15,1,0,-9,0,6.2358727,6.2358727,0,0,0,0,0,0,0,0,1,1,0,0,5.604104,0,0,54.889999,46.16,-9,-9,6,1,1,0,0,4,3,1,145,747617.63,0,0,649.14789 -335,414,743,745,-9,-9,1,1,1,35,1,1,1,0,2,-9,1,1,0,1,4,0,0,0,2,0,-9,5,0,-1,7.4158993,0,0,0,36,1,3,1,2,2,2019,1,2,10,2,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.25,36.860001,33.099998,57.790001,6,1,1,0,0,9,2,0,195.66667,83512.859,0,0,2623.5151 -335,414,744,-9,745,743,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1104.8801,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,2,0,195.66667,83512.859,0,0,2623.5151 -335,414,745,743,-9,-9,2,1,0,36,1,1,1,0,1,-9,5,1,0,0,3,7.0184431,6.3632441,0,2,0,-9,5,0,1,90.991432,0,0,1,35,2,4,1,-9,-9,2019,1,1,18,6,15,25,15,1,1,1,0,6.7121792,6.7121792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.099998,57.790001,63.25,36.860001,5,1,1,0,0,9,2,0,195.66667,83512.859,0,0,2623.5151 -336,415,746,747,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,4,0,8.3699903,8.2175503,1,0,-9,21,0,4,22.089043,0,0,0,58,2,4,3,2,2,2019,4,2,7,1,0,43,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0197582,8.4853449,0,0,58.150002,52.91,49.349998,59.639999,6,1,1,0,0,2,3,1,858,2745538,0,0,2739.1904 -336,415,747,746,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-4,-95.181419,0,0,0,62,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5047984,0,0,0,49.349998,59.639999,58.150002,52.91,6,1,1,0,0,2,3,1,858,2745538,0,0,2739.1904 -337,416,748,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,2,1,0,0,2,6.3717136,6.1568432,0,3,0,0,0,-9,0,-886.7381,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,8,7,15,1,0,-9,0,7.9150472,7.9150472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.450001,51.41,-9,-9,2,1,1,0,0,8,2,1,3586,609963.63,0,0,1016.2966 -338,417,749,750,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.3723702,6.0307822,1,0,-9,35,0,0,-47.251701,0,0,0,70,2,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9653726,0,0,46.630001,59.720001,59.310001,49.810001,5,1,1,0,0,2,2,1,1373,310318.25,0,0,1037.875 -338,417,750,749,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.0351281,7.2534657,1,0,-9,35,0,0,57.442497,0,0,0,70,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0839658,0,0,59.310001,49.810001,46.630001,59.720001,6,1,1,0,0,2,2,1,1373,310318.25,0,0,1037.875 -338,418,751,-9,750,749,3,1,1,33,2,0,0,0,1,-9,1,1,0,0,3,7.6333737,7.6642056,0,3,0,0,0,-9,0,-1072.5132,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,15,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0185003,0,0,0,38.07,54.029999,-9,-9,3,1,1,0,1,2,3,1,2864,194463.97,0,0,1144.7755 -338,419,752,-9,750,749,4,1,1,32,2,0,0,0,1,-9,1,1,0,0,5,6.1382346,6.0666585,0,3,0,0,0,-9,0,-1143.1158,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,40,15,1,0,-9,1,1.3974723,1.3974723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,5,1,1,0,0,2,2,1,395,16191.465,0,0,-988.12585 -339,420,753,-9,754,755,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.5721,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,588.66669,310167.63,0,0,4621.8389 -339,420,754,755,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,7.7698183,8.0987911,0,2,0,-9,19,0,-3,-28.323807,0,0,1,41,2,4,1,2,2,2019,1,1,10,0,28,29,15,1,0,1,0,12.545403,12.545403,0,0,0,0,0,0,0,0,1,1,0,1.4109713,0,0,0,46.900002,56.66,41,63.400002,7,1,1,0,0,6,5,1,588.66669,310167.63,0,0,4621.8389 -339,420,755,754,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,4,8.8559837,9.1333237,0,2,0,-9,19,0,3,13.163674,0,0,0,38,2,4,1,2,2,2019,1,2,12,1,55,45,15,1,0,1,0,16.382578,16.382578,0,0,0,0,0,0,0,0,1,1,0,6.1831856,0,0,0,41,63.400002,46.900002,56.66,6,1,1,0,0,6,5,1,588.66669,310167.63,0,0,4621.8389 -340,421,756,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,2,1,0,0,3,7.5367308,7.7804461,4.1823006,3,0,0,0,-9,0,-990.79852,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,30,15,1,0,-9,0,8.1472101,8.1472101,0,0,0,0,0,0,0,0,0,0,0,0,4.1487646,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,9,3,1,189,126358.48,0,0,301.37509 -341,422,757,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,0,3,0,7.1575818,6.7683158,3,0,0,0,-9,0,-868.13733,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.4440064,6.4750981,6.3189335,3,52,45,-9,-9,6,1,1,0,0,4,2,1,1238,-60999.367,0,0,770.16193 -342,423,758,759,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,8.704771,8.4232874,0,1,0,-9,7,0,2,132.21481,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,1,40,8,15,1,0,1,0,11.434962,11.434962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,38.630001,63.110001,6,4,1,0,0,9,4,0,275,2068936.5,0,0,2487.9985 -342,423,759,758,-9,-9,1,1,0,47,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,7,0,-2,-44.160187,0,0,0,49,1,4,1,2,1,2019,1,2,14,5,0,20,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5483208,0,0,0,38.630001,63.110001,52,55,5,1,1,0,0,9,4,0,275,2068936.5,0,0,2487.9985 -343,424,760,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-857.63538,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.41,18.85,-9,-9,6,1,1,0,0,12,1,0,845,2678.2065,0,0,1624.7522 -344,425,761,762,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.9846272,8.1439371,1,0,-9,8,0,3,-11.468505,0,0,0,71,3,4,1,2,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0469205,7.8842368,0,0,57.759998,48.98,57.759998,54.509998,6,1,1,0,0,13,5,1,1058.5,1392844,0,0,5550.0225 -344,425,762,761,-9,-9,1,1,1,71,1,0,0,0,3,-9,2,1,0,0,4,8.136694,8.7864618,7.6791115,1,0,-9,8,0,-3,54.033039,0,0,0,74,2,4,3,3,3,2019,2,2,7,0,42,42,15,1,0,4,0,13.246234,13.246234,0,0,0,0,0,0,0,0,1,1,0,7.1972613,8.0626707,0,0,57.759998,54.509998,57.759998,48.98,6,1,1,0,0,13,5,1,1058.5,1392844,0,0,5550.0225 -345,426,763,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,0,1,0,6.199719,5.9885664,3,0,0,0,-9,0,-860.55859,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8961878,6.4919996,0,0,48.959999,25.27,-9,-9,1,1,1,0,0,5,2,1,1511,207905.25,0,0,1031.7301 -346,427,764,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,8.025959,7.8360543,3,0,0,0,-9,0,-960.78784,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.2956023,0,0,0,0,1,1,0,5.7966681,7.3755126,0,0,52.459999,30.879999,-9,-9,6,1,1,0,0,10,3,1,4408,580480.31,0,0,1288.131 -347,428,765,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,0,4,0,8.3955832,7.8128686,3,0,0,0,-9,0,-979.72424,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0366912,8.4281874,0,0,57.099998,43.84,-9,-9,6,1,1,0,0,11,4,1,233,558651.06,0,0,2595.3267 -348,429,766,767,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,2,8.7921944,8.7345877,0,2,0,-9,24,0,4,-3.2591834,0,0,0,44,2,4,1,2,3,2019,1,1,11,0,40,39,15,1,0,1,0,20.708382,20.708382,0,0,0,0,0,0,0,0,1,1,0,3.4364548,0,0,0,51.18,42.919998,52.880001,56.68,4,2,3,0,0,9,4,1,741,1020904.8,0,0,3803.0732 -348,429,767,766,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.9983039,7.6930828,0,2,0,-9,24,0,-4,-22.526981,0,0,1,48,1,2,1,3,3,2019,1,2,11,0,25,33,15,1,0,1,0,13.827906,13.827906,0,0,0,0,0,0,0,0,1,1,0,1.8734418,0,0,0,52.880001,56.68,51.18,42.919998,6,2,3,0,0,9,4,1,741,1020904.8,0,0,3803.0732 -349,430,768,769,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,0,4,7.6940088,7.8688831,0,1,0,-9,31,0,2,-38.710503,0,0,0,48,1,4,1,-9,-9,2019,1,2,12,0,38,38,15,1,0,1,0,8.1941109,8.1941109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,46.860001,62.080002,2,1,1,0,0,9,5,0,410,251095.69,0,0,3361.0679 -349,430,769,768,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,0,4,8.5612125,8.3143358,0,1,0,-9,31,0,-2,4.9312892,0,0,0,50,3,4,1,3,2,2019,1,1,17,5,46,46,15,1,1,1,0,15.233485,15.233485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.860001,62.080002,54.200001,57.490002,5,1,1,0,0,9,5,0,410,251095.69,0,0,3361.0679 -349,431,770,-9,768,769,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.9481988,8.2305813,0,3,0,0,0,-9,0,-948.72894,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,39,38,15,1,1,-9,1,10.496017,10.496017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,58.990002,-9,-9,4,1,1,0,0,9,4,0,333,-77742.836,0,0,1580.5912 -350,432,771,772,-9,-9,2,1,0,38,1,1,1,0,2,-9,1,1,0,1,1,5.1155739,5.035737,0,2,0,-9,8,0,-22,-100.80946,0,0,1,60,2,4,1,-9,-9,2019,1,1,17,3,6,12,15,1,0,1,0,2.5129566,2.5129566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,19.09,46.400002,57.349998,1,1,1,0,0,6,5,1,380,1425397,0,0,2216.606 -350,432,772,771,-9,-9,1,1,1,60,1,1,1,0,2,-9,2,1,0,0,4,9.0349903,9.0331364,6.5681777,2,0,-9,8,0,22,-4.1665664,0,0,0,38,2,1,1,3,3,2019,1,2,8,0,55,39,15,1,0,1,0,19.201328,19.201328,0,0,0,0,0,0,0,0,1,1,0,0,7.5260081,0,0,46.400002,57.349998,38.75,19.09,6,1,1,0,0,6,5,1,380,1425397,0,0,2216.606 -351,433,773,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,4,0,5.8445492,5.9418817,3,0,0,0,-9,0,-1089.9747,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7830949,0,0,60.689999,53.18,-9,-9,7,1,1,0,0,12,2,1,971,3761.9102,0,0,1550.9041 -352,434,774,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,5,8.8894606,8.8406553,0,3,0,-9,0,-9,0,-976.64648,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,55,0,15,1,0,-9,0,10.441067,10.441067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.51,57.32,-9,-9,6,1,1,0,0,8,5,1,116,98182.609,0,0,2771.5774 -353,435,775,777,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,7.2393937,7.5424747,0,2,0,-9,23,0,-4,-18.111788,0,0,1,47,2,4,1,2,3,2019,1,1,6,0,20,27,15,1,0,1,0,9.1297626,9.1297626,0,0,0,0,0,0,0,0,0,0,0,1.3936058,0,0,0,57.16,56.150002,51.830002,57.200001,7,1,1,0,0,5,4,1,619.20001,258628.67,0,0,4053.5239 -353,435,776,-9,775,777,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.5092,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,619.20001,258628.67,0,0,4053.5239 -353,435,777,775,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,9.382658,9.1286068,0,2,0,-9,23,0,4,-75.25396,0,0,0,43,2,4,1,2,3,2019,1,2,7,0,48,45,15,1,0,1,0,19.627251,19.627251,0,0,0,0,0,0,0,0,0,0,0,2.0231555,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,5,4,1,619.20001,258628.67,0,0,4053.5239 -353,435,778,-9,775,777,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,6.1483841,5.95856,0,2,0,0,0,-9,0,-954.30591,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,11,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0227892,0,0,0,57.34,42.360001,-9,-9,5,1,1,0,0,5,4,1,619.20001,258628.67,0,0,4053.5239 -353,435,779,-9,775,777,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-851.65271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,619.20001,258628.67,0,0,4053.5239 -354,436,780,782,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.4644346,8.4885254,0,1,0,-9,10,0,0,32.310001,0,0,0,48,2,3,1,2,2,2019,1,2,8,0,35,35,15,1,0,1,0,16.328966,16.328966,0,0,0,0,0,0,0,0,0,0,0,2.2267568,0,0,0,57.330002,53.459999,39.75,54.919998,6,1,1,0,0,4,5,1,1022,96064.625,0,0,2972.5986 -354,436,781,-9,782,780,4,1,0,16,2,0,0,0,2,-9,11,2,0,0,3,6.4066124,7.1096082,0,1,0,0,0,-9,0,-994.49548,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.900002,57.009998,-9,-9,6,1,1,0,0,4,5,1,1022,96064.625,0,0,2972.5986 -354,436,782,780,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.9180951,7.9487271,0,1,0,-9,10,0,0,-28.910448,0,0,0,48,2,3,1,3,2,2019,1,1,11,3,35,35,15,1,0,1,0,8.286272,8.286272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.75,54.919998,57.330002,53.459999,5,1,1,0,0,4,5,1,1022,96064.625,0,0,2972.5986 -354,437,783,-9,782,780,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.6547122,7.7374668,0,3,0,0,0,-9,0,-1062.4349,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,0,15,1,0,-9,1,6.5851479,6.5851479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,3,1,211,41989.422,0,0,340.80344 -355,438,784,785,-9,-9,1,1,1,65,1,0,0,0,1,-9,2,1,0,0,5,7.6110263,8.2567425,7.7276874,1,0,-9,41,0,0,-117.69555,0,0,0,65,1,4,3,2,2,2019,2,2,4,0,4,0,15,1,0,4,0,58.902184,58.902184,0,0,0,0,0,0,0,2,1,1,0,7.4622598,7.7905169,0,3,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,7,4,1,721.5,2411199,0,0,4982.123 -355,438,785,784,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,6.6642299,6.7911348,1,0,-9,43,0,0,65.563248,0,0,0,65,1,5,1,2,2,2019,3,1,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2337785,7.0435276,0,0,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,7,4,1,721.5,2411199,0,0,4982.123 -356,439,786,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.4224987,7.5294046,0,3,0,0,0,-9,0,-982.20898,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,30,30,15,1,1,-9,0,7.5555806,7.5555806,0,0,0,0,0,0,0,0,1,1,0,3.0274122,0,0,0,50.27,44.25,-9,-9,3,1,1,0,0,13,3,1,137,391408.5,0,0,72.317871 -356,440,787,-9,786,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,7.4936786,8.0180912,3.8635688,3,0,0,0,-9,0,-987.95013,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,39,30,15,1,0,-9,1,6.4702177,6.4702177,0,0,0,0,0,0,0,0,1,1,0,4.1795859,0,0,0,45.82,54.57,-9,-9,6,1,1,0,0,13,3,1,1675,-84262.805,0,0,8.7231884 -357,441,788,-9,-9,-9,1,1,0,87,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1074.8368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.439999,48.84,-9,-9,5,1,1,0,0,2,1,1,369,83220.469,0,0,1425.954 -358,442,789,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,5,9.4712162,9.4950514,0,3,0,0,0,-9,0,-962.06787,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,52,15,1,0,-9,0,22.668638,22.668638,0,0,0,0,0,0,0,0,1,1,0,2.9967194,0,0,0,49.02,58.889999,-9,-9,6,1,1,0,0,7,5,1,1556,299782.59,0,0,3592.3547 -359,443,790,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,1,1,0,0,3,8.812499,8.7742739,0,3,0,0,0,-9,0,-844.72162,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,55,35,15,1,0,-9,0,14.235364,14.235364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.369999,57.279999,-9,-9,5,4,2,0,0,9,5,1,401,1404548.4,0,0,3200.8013 -360,444,791,792,-9,-9,1,1,0,33,1,0,3,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,17,0,-12,7.2586389,0,0,1,45,3,4,1,3,3,2019,3,2,31,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.57,16.200001,52,55,5,2,3,0,0,4,2,1,842.66669,86565.375,0,0,2278.6211 -360,444,792,791,-9,-9,2,1,1,45,1,0,3,0,3,-9,1,1,0,0,4,7.2274351,7.2338352,0,2,0,-9,8,0,12,6.8910213,0,0,0,33,3,1,3,-9,-9,2019,2,1,9,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,33.57,16.200001,6,2,3,0,0,4,2,1,842.66669,86565.375,0,0,2278.6211 -360,444,793,-9,791,792,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.56659,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,842.66669,86565.375,0,0,2278.6211 -361,445,794,796,-9,-9,2,1,0,42,1,0,2,0,1,-9,1,1,0,0,4,8.9926691,8.7394171,0,2,0,-9,8,0,1,-20.576033,0,0,1,41,3,4,1,2,2,2019,1,1,8,0,40,40,15,1,0,1,0,24.681541,24.681541,0,0,0,0,0,0,0,2,1,1,0,7.2462645,0,.81652617,3,57.16,56.150002,57.16,56.150002,6,1,1,0,0,2,5,1,661,2489668.5,0,0,5935.4888 -361,445,795,-9,794,796,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.1896,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,661,2489668.5,0,0,5935.4888 -361,445,796,794,-9,-9,1,1,1,41,1,0,2,0,3,-9,2,1,0,0,4,8.314909,8.1590996,0,2,0,-9,8,0,-1,124.56116,0,0,0,42,1,4,1,3,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8838015,0,0,3,57.16,56.150002,57.16,56.150002,7,1,1,0,0,2,5,1,661,2489668.5,0,0,5935.4888 -362,446,797,-9,-9,-9,1,1,0,30,2,1,1,0,2,-9,2,1,0,0,4,8.234169,7.9076457,0,4,0,0,0,-9,0,-1000.3703,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,5,1,42,37,15,1,0,-9,0,9.0466328,9.0466328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,51,-9,-9,6,1,1,0,0,13,3,1,540.5,5019.2637,0,0,1756.2092 -362,446,798,-9,797,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1012.4819,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,540.5,5019.2637,0,0,1756.2092 -363,447,799,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,0,5,8.358922,8.5373421,0,3,0,0,0,-9,0,-979.43909,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,7,40,10,15,1,1,-9,0,13.048095,13.048095,0,0,0,0,0,0,0,0,0,0,0,2.5578732,0,0,0,46.279999,62.599998,-9,-9,6,1,1,0,0,8,4,0,337,106694.27,0,0,2406.0894 -364,448,800,801,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.3409519,7.9290738,0,2,0,-9,8,0,-2,-118.53755,0,0,0,47,2,2,1,2,2,2019,1,2,12,0,39,39,15,1,0,1,0,11.42022,11.42022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.029999,12.37,58.32,6,1,1,0,0,11,3,1,734.5,-73518.492,0,0,2863.999 -364,448,801,800,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,2,7.339983,6.8900146,0,2,0,-9,8,0,2,-88.622635,0,0,0,45,2,4,1,3,2,2019,1,1,27,12,16,16,15,1,1,1,0,7.9063091,7.9063091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.37,58.32,61.27,46.029999,1,1,1,0,0,11,3,1,734.5,-73518.492,0,0,2863.999 -365,449,802,-9,804,803,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.16547,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,4,1,613.33331,5613.6304,0,0,3975.0349 -365,449,803,804,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,0,3,8.437253,8.6775894,0,2,0,-9,4,0,-2,25.254919,-9,1,0,30,2,4,1,-9,-9,2019,1,2,6,0,38,0,15,1,0,1,0,18.143253,18.143253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,46.16,58.619999,6,1,1,0,0,5,4,1,613.33331,5613.6304,0,0,3975.0349 -365,449,804,803,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,0,4,7.914505,8.0695982,0,2,0,-9,4,0,2,81.246521,0,0,1,28,2,3,1,-9,-9,2019,1,1,14,3,33,0,15,1,0,1,0,9.2056561,9.2056561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,57.330002,53.459999,6,1,1,0,0,5,4,1,613.33331,5613.6304,0,0,3975.0349 -366,450,805,808,-9,-9,1,1,0,41,1,0,2,0,1,-9,1,1,0,0,3,8.4114361,8.810729,0,2,0,-9,13,0,4,2.3169351,0,0,1,37,1,3,1,2,2,2019,1,2,16,6,10,3,15,1,1,1,0,61.132568,61.132568,0,0,0,0,0,0,0,0,0,0,0,7.5546937,0,0,0,45.09,26.67,49.040001,55.860001,6,1,1,0,0,9,5,1,1138.5,610407.38,0,0,7896.9077 -366,450,806,-9,805,808,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.26581,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,5,1,1138.5,610407.38,0,0,7896.9077 -366,450,807,-9,805,808,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1045.3121,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,9,5,1,1138.5,610407.38,0,0,7896.9077 -366,450,808,805,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,3,9.0712423,9.0890322,0,2,0,-9,10,0,-4,43.794575,0,0,0,41,1,3,1,-9,-9,2019,1,1,11,0,45,40,15,1,0,1,0,24.390665,24.390665,0,0,0,0,0,0,0,0,0,0,0,7.8102479,0,0,0,49.040001,55.860001,45.09,26.67,6,1,1,0,0,9,5,1,1138.5,610407.38,0,0,7896.9077 -367,451,809,-9,811,812,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.0597,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,235,725453.06,0,0,4032.4424 -367,451,810,-9,811,812,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.81512,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,235,725453.06,0,0,4032.4424 -367,451,811,812,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,0,5,8.6254463,8.2041636,0,2,0,-9,12,0,-7,-154.09468,0,0,1,38,2,5,1,2,2,2019,1,2,8,0,37,35,15,1,0,1,0,15.766108,15.766108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,61.580002,48.860001,6,1,1,0,0,12,5,1,235,725453.06,0,0,4032.4424 -367,451,812,811,-9,-9,2,1,1,38,1,1,2,0,2,-9,2,1,0,0,5,8.5555468,8.9816628,0,2,0,-9,7,0,7,-98.540543,0,0,0,31,1,5,1,1,2,2019,1,1,6,0,40,36,15,1,0,1,0,15.986563,15.986563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.580002,48.860001,57.060001,57.759998,6,1,1,0,0,12,5,1,235,725453.06,0,0,4032.4424 -368,452,813,814,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,3,7.1777105,7.0200548,0,2,0,-9,33,0,0,0,0,0,0,49,3,3,1,3,3,2019,1,2,6,0,20,24,15,1,0,1,0,7.7889605,7.7889605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.919998,45.77,43.060001,45.220001,4,2,3,0,0,5,2,1,902,106840.3,0,0,2098.4766 -368,452,814,813,-9,-9,2,1,0,49,1,0,1,0,3,-9,2,1,0,0,3,7.0201969,7.0618877,0,2,0,-9,33,0,0,0,0,0,0,49,1,3,1,3,3,2019,1,1,12,0,20,24,15,1,0,1,0,5.6076593,5.6076593,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.060001,45.220001,44.919998,45.77,3,2,3,0,0,5,2,1,902,106840.3,0,0,2098.4766 -368,452,815,-9,814,813,4,1,1,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-890.8703,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.650002,56.130001,-9,-9,4,2,3,0,0,5,2,1,902,106840.3,0,0,2098.4766 -369,453,816,818,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,4,8.6331854,8.3756227,0,2,0,-9,9,0,-8,6.0837808,0,0,0,49,2,4,1,2,2,2019,1,2,7,0,45,38,15,1,0,1,0,11.163526,11.163526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.889999,46.169998,6,1,1,0,0,4,4,0,688,227498.69,0,0,2963.9163 -369,453,817,-9,818,816,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-949.16382,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,4,4,0,688,227498.69,0,0,2963.9163 -369,453,818,816,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,6.7569947,7.0148716,0,2,0,-9,9,0,8,-155.77357,0,0,0,41,2,4,1,3,2,2019,1,1,5,0,21,19,15,1,0,1,0,5.426054,5.426054,0,0,0,0,0,0,0,0,1,1,0,1.930468,0,0,0,57.889999,46.169998,54.790001,55.860001,6,1,1,0,0,4,4,0,688,227498.69,0,0,2963.9163 -369,454,819,-9,818,816,4,1,1,24,2,0,1,0,2,-9,2,1,0,0,3,7.7314467,7.8598571,0,3,0,0,0,-9,0,-1059.4224,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,43,15,1,0,-9,1,6.6018691,6.6018691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,43.990002,-9,-9,6,1,1,0,0,4,3,0,458,199565.61,0,0,952.80396 -370,455,820,-9,821,823,2,1,0,24,2,0,1,1,1,0,7,2,0,0,4,6.6544428,6.5543361,0,3,0,0,0,-9,0,-1051.8593,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.700001,-9,-9,6,1,1,0,0,12,2,1,2946,0,0,0,-1142.8993 -370,456,821,823,-9,-9,1,1,0,48,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,10,0,-5,56.018852,0,0,0,53,2,4,1,3,2,2019,3,3,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.113951,3,34.23,27.99,42.830002,57.259998,6,1,1,0,1,12,3,1,295,238588.98,0,0,1920.0193 -370,456,822,-9,821,823,4,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.03485,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,295,238588.98,0,0,1920.0193 -370,456,823,821,-9,-9,3,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.8738279,8.1094189,0,2,0,-9,10,0,5,99.436356,0,0,0,48,2,1,3,2,2,2019,2,1,10,1,39,39,15,1,0,3,0,12.02855,12.02855,0,0,0,0,0,0,0,7,1,1,0,0,0,.29735276,2,42.830002,57.259998,34.23,27.99,6,1,1,0,0,12,3,1,295,238588.98,0,0,1920.0193 -371,457,824,825,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,6.2810888,6.1595244,1,0,-9,10,0,4,33.905666,-9,0,0,71,3,4,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8102441,6.1938143,0,0,51,46,52.07,51.529999,5,1,1,0,0,6,2,1,611,125422.29,0,0,1638.1974 -371,457,825,824,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,5.3668952,5.0926676,1,0,-9,43,0,-4,52.478951,0,0,0,75,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0397048,5.3882065,0,0,52.07,51.529999,51,46,7,1,1,0,0,6,2,1,611,125422.29,0,0,1638.1974 -372,458,826,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,8.5904551,8.2577581,0,3,0,0,0,-9,0,-998.64984,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,41,42,15,1,0,-9,0,11.715055,11.715055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.110001,56.110001,-9,-9,5,1,1,0,0,10,5,1,574,2612104.5,0,0,1992.442 -373,459,827,828,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.7580614,8.3542585,1,0,-9,23,0,5,54.14904,0,0,0,64,2,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.7443886,.54180056,0,49.349998,59.639999,57.330002,53.459999,6,1,1,0,0,4,4,1,245.5,2261217,0,0,3383.3765 -373,459,828,827,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,6.8909307,7.061233,1,0,-9,21,0,-5,-112.30946,0,0,0,69,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.600055,6.8997474,0,0,57.330002,53.459999,49.349998,59.639999,6,1,1,0,0,4,4,1,245.5,2261217,0,0,3383.3765 -374,460,829,-9,-9,-9,1,1,0,47,3,0,2,0,1,-9,6,3,0,0,2,0,0,0,4,0,-9,0,1,0,-970.91852,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,0,32,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.68,57.73,-9,-9,1,1,1,0,1,9,1,1,227.66667,112878.69,0,0,.90575153 -374,460,830,-9,829,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.81311,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,1,227.66667,112878.69,0,0,.90575153 -374,460,831,-9,829,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-966.76935,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,1,227.66667,112878.69,0,0,.90575153 -375,461,832,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,8,3,1,1,1,0,4.3260851,4.5577979,3,0,0,0,-9,0,-861.65436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2337799,4.3805404,0,0,30.32,17.530001,-9,-9,1,1,1,0,1,4,2,1,3111,14363.049,0,0,1474.6233 -375,462,833,-9,832,-9,2,1,0,21,2,0,0,0,2,-9,7,2,0,0,5,0,3.6267238,3.8937113,3,0,0,0,-9,0,-1021.4844,1,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.2736368,0,24.80514,3,57.060001,57.759998,-9,-9,4,1,1,0,0,4,2,1,271,185759.58,0,0,185.90587 -376,463,834,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,1,1,0,7.4628081,7.4109254,3,0,0,0,-9,0,-1098.4093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.6349721,7.2952743,0,0,15.05,29.93,-9,-9,2,1,1,0,0,9,3,0,287,587796.63,0,0,2256.0464 -377,464,835,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,7.7217722,7.628583,3,0,0,0,-9,0,-1010.2256,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6936545,7.3104568,0,0,38.5,55.029999,-9,-9,7,1,1,0,1,12,3,1,440,274888.78,0,0,2510.7568 -378,465,836,837,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,0,5,7.8919792,8.1122417,0,1,0,-9,5,0,2,-149.7269,0,0,0,30,1,5,1,1,1,2019,1,2,3,0,45,40,15,1,0,1,0,10.119233,10.119233,0,0,0,0,0,0,0,0,0,0,0,.050892234,0,0,0,59.68,56.779999,41.07,60.93,5,1,1,0,0,9,4,1,197.5,100764.09,0,0,3839.1482 -378,465,837,836,-9,-9,2,1,0,30,1,0,0,0,1,1,2,1,0,0,5,7.7159243,7.8816791,0,1,0,-9,5,0,-2,139.02791,-9,0,1,32,2,5,1,-9,-9,2019,1,1,15,6,36,0,15,1,1,1,0,7.93297,7.93297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,59.68,56.779999,7,2,3,0,0,9,4,1,197.5,100764.09,0,0,3839.1482 -379,466,838,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,0,3,7.4043112,7.7598171,6.8723598,4,0,0,0,-9,0,-989.39343,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,32,15,1,0,-9,0,5.5810022,5.5810022,0,0,0,0,0,0,0,0,1,1,0,6.8969808,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,5,3,1,1153,329915.72,0,0,1695.8105 -380,467,839,840,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,7.7420988,7.6014643,1,0,-9,7,0,-1,86.438393,0,0,0,82,1,4,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9833517,0,0,54,45,58.060001,43.450001,6,1,1,0,0,4,4,1,623.5,345855.63,0,0,4063.5581 -380,467,840,839,-9,-9,1,1,0,82,1,0,0,0,1,-9,4,3,0,0,4,0,7.6617413,7.6188893,1,0,-9,23,0,1,76.084412,0,0,0,81,2,3,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9714818,0,0,58.060001,43.450001,54,45,6,1,1,0,0,4,4,1,623.5,345855.63,0,0,4063.5581 -381,468,841,-9,-9,-9,1,1,1,23,2,0,0,1,1,0,7,2,0,0,5,8.5654669,8.3956699,0,3,0,0,0,-9,0,-886.82361,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,41,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7250457,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,11,5,1,474,101586.51,0,0,2888.6123 -382,469,842,-9,-9,845,2,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-943.24817,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,4,1,0,829.25,0,0,0,1430.3615 -382,469,843,-9,-9,845,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1046.0374,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,4,1,0,829.25,0,0,0,1430.3615 -382,469,844,-9,-9,845,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1006.63,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,4,1,0,829.25,0,0,0,1430.3615 -382,469,845,-9,847,846,1,1,1,39,3,0,3,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-938.00739,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,-9,-9,4,2,3,1,1,4,1,0,829.25,0,0,0,1430.3615 -382,470,846,847,-9,-9,5,1,1,62,1,0,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,3,0,-5,-102.16096,0,0,0,67,3,3,1,-9,-9,2019,3,6,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.22747,3,50,48,49,47,5,2,3,0,0,4,2,0,383.5,11673.808,0,0,1845.6241 -382,470,847,846,-9,-9,6,1,0,67,1,0,3,0,3,-9,2,1,0,0,3,7.9367604,7.9069953,5.8071518,2,0,-9,3,0,5,-59.690636,0,0,0,62,3,3,3,-9,-9,2019,2,5,11,1,40,0,15,1,0,3,0,6.2500434,6.2500434,0,0,0,0,0,0,0,0,1,1,0,0,5.7227821,0,0,49,47,50,48,5,2,3,0,0,4,2,0,383.5,11673.808,0,0,1845.6241 -383,471,848,-9,-9,-9,1,1,0,36,3,0,0,0,2,-9,2,1,0,1,2,6.8563271,7.1776595,0,3,0,0,0,-9,0,-889.34009,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,20,23,15,1,0,-9,0,6.6404786,6.6404786,0,0,0,0,0,0,0,0,1,1,0,3.7127352,0,0,0,56.919998,25.450001,-9,-9,6,1,1,0,0,10,2,0,528,87840.578,0,0,2379.1697 -384,472,849,850,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-1,41.517849,0,0,0,73,3,4,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.169998,22.950001,55.389999,48.689999,2,1,1,0,0,2,2,1,698.5,343538.81,0,0,2437.0732 -384,472,850,849,-9,-9,1,1,1,73,1,0,0,0,3,-9,2,1,0,0,4,7.2704911,7.5801849,6.4677467,1,0,-9,6,0,1,-22.026892,0,0,0,72,3,2,3,3,3,2019,2,2,10,2,15,20,15,1,0,4,0,9.3477373,9.3477373,1,0,0,0,0,0,0,0,1,1,0,0,6.7069421,0,0,55.389999,48.689999,62.169998,22.950001,7,1,1,0,0,2,2,1,698.5,343538.81,0,0,2437.0732 -385,473,851,853,-9,-9,1,1,0,37,1,1,1,0,2,-9,2,1,0,0,4,8.6238623,8.7891235,0,2,0,-9,3,0,4,-88.750458,0,0,1,33,2,3,1,3,2,2019,1,2,11,2,39,40,15,1,0,1,0,16.992697,16.992697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.650002,59.48,54.27,48.040001,6,1,1,0,0,6,5,1,2090,501781.31,0,0,3775.3118 -385,473,852,-9,851,853,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.1525,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,2090,501781.31,0,0,3775.3118 -385,473,853,851,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,0,3,8.6819878,8.5575056,0,2,0,-9,3,0,-4,68.576012,0,0,0,37,2,4,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,13.408673,13.408673,0,0,0,0,0,0,0,0,1,1,0,1.1929021,0,0,0,54.27,48.040001,38.650002,59.48,6,1,1,0,0,6,5,1,2090,501781.31,0,0,3775.3118 -386,474,854,855,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,8.3710346,8.3989611,0,1,0,-9,3,0,-8,16.113148,0,1,1,34,1,4,1,2,2,2019,1,2,18,7,49,50,15,1,1,1,0,10.232444,10.232444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.849998,52.23,55.599998,6,1,1,0,0,7,5,1,1443.5,3215.3125,0,0,2863.5625 -386,474,855,854,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,8.447691,8.3668642,0,1,0,-9,3,0,8,-27.449341,-9,0,0,26,2,4,1,-9,-9,2019,1,1,10,2,50,0,15,1,0,1,0,12.133052,12.133052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,38.59,60.849998,6,1,1,0,0,7,5,1,1443.5,3215.3125,0,0,2863.5625 -387,475,856,857,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,0,2,6.8512344,6.9092698,0,1,0,-9,4,0,-1,-44.763668,0,0,1,32,2,3,1,2,3,2019,1,2,30,12,18,0,15,1,1,1,0,6.7833724,6.7833724,0,0,0,0,0,0,0,7,1,1,0,0,0,10.129583,3,29.870001,51.669998,51.41,56.150002,2,1,1,0,0,12,3,1,1050.5,111053.47,0,0,1590.2932 -387,475,857,856,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,3,7.7758112,7.8673921,0,1,0,-9,4,0,1,58.983524,0,0,0,31,2,2,1,-9,-9,2019,1,1,8,0,32,42,15,1,0,1,0,7.9271903,7.9271903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,29.870001,51.669998,6,1,1,0,0,12,3,1,1050.5,111053.47,0,0,1590.2932 -388,476,858,-9,859,860,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.80792,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,2,3,1,1093.3334,144587.05,0,0,1553.827 -388,476,859,860,-9,-9,1,1,0,33,1,1,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,3,0,3,31.626463,0,0,1,30,2,4,1,3,2,2019,3,2,6,0,0,60,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,59.529999,56.439999,5,2,3,1,0,2,3,1,1093.3334,144587.05,0,0,1553.827 -388,476,860,859,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,0,4,7.7971869,7.9903426,0,2,0,-9,3,0,-3,3.3059702,0,0,0,33,2,4,3,-9,-9,2019,2,1,7,0,35,36,15,1,0,3,0,11.390463,11.390463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,62.490002,55.09,4,1,1,0,0,2,3,1,1093.3334,144587.05,0,0,1553.827 -389,477,861,-9,862,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.9082,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,1481.3334,-81764.703,0,0,1939.3268 -389,477,862,-9,-9,-9,1,1,0,28,2,0,2,0,2,-9,6,3,0,0,3,0,6.1014876,6.3504305,4,0,0,0,-9,0,-1112.0388,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4148207,0,4.7334232,3,54.369999,54.799999,-9,-9,6,1,1,0,0,6,2,0,1481.3334,-81764.703,0,0,1939.3268 -389,477,863,-9,862,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1045.2521,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,1481.3334,-81764.703,0,0,1939.3268 -390,478,864,865,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.773407,8.558013,0,1,0,-9,9,0,-1,-92.803215,0,0,0,53,1,2,1,3,3,2019,1,1,16,5,38,38,15,1,1,1,0,15.967079,15.967079,0,0,0,0,0,0,0,7,0,0,0,1.1494867,0,1.0927054,3,40.75,58.259998,37.59,35.75,4,1,1,0,0,12,5,1,468,1624899.8,0,0,3740.1973 -390,478,865,864,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,2,8.7529583,8.4777737,0,1,0,-9,9,0,1,156.76309,-9,0,0,52,2,3,1,-9,-9,2019,1,2,16,4,25,0,15,1,1,1,0,25.485279,25.485279,0,0,0,0,0,0,0,7,0,0,0,3.8527269,0,9.343854,3,37.59,35.75,40.75,58.259998,4,1,1,0,0,12,5,1,468,1624899.8,0,0,3740.1973 -391,479,866,867,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.1955032,7.9651008,0,2,0,-9,9,0,-1,17.923574,0,0,0,51,2,3,3,3,3,2019,2,1,6,0,40,41,15,1,0,3,0,9.4905615,9.4905615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,52.41,39.68,6,1,1,0,0,6,3,1,897.5,5423.8242,0,0,1417.5255 -391,479,867,866,-9,-9,1,1,0,51,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,1,6.3818913,0,0,0,50,2,3,1,2,2,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.0761166,0,6.0155554,3,52.41,39.68,57.330002,53.459999,6,1,1,0,0,6,3,1,897.5,5423.8242,0,0,1417.5255 -391,480,868,-9,867,866,4,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-970.07416,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.439999,59.619999,-9,-9,6,1,1,0,0,6,3,1,613,61079.914,0,0,0 -392,481,869,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,4,8.5411367,8.3562746,2.5972733,3,0,0,0,-9,0,-955.81323,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,39,15,1,0,-9,0,14.531859,14.531859,0,0,0,0,0,0,0,0,0,0,0,5.0561838,0,0,0,52.43,55.57,-9,-9,6,1,1,0,0,12,5,1,310,319313.16,0,0,2920.5334 -393,482,870,-9,872,871,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.1207,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,0,1083.3334,77276.266,0,0,3154.9248 -393,482,871,872,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,4,8.3284187,8.370471,0,2,0,-9,2,0,2,-110.3999,0,0,0,39,1,2,1,2,2,2019,1,2,6,0,44,45,15,1,0,1,0,11.645849,11.645849,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,58.549999,22.17,7,1,1,0,0,7,4,0,1083.3334,77276.266,0,0,3154.9248 -393,482,872,871,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,2,8.2883453,8.4467821,5.4004879,2,0,-9,2,0,-2,34.163876,0,0,1,41,2,4,1,-9,-9,2019,1,1,9,0,37,36,15,1,0,1,0,13.662141,13.662141,0,0,0,0,0,0,0,0,1,1,0,6.1073079,0,0,0,58.549999,22.17,51.830002,57.200001,7,1,1,0,0,7,4,0,1083.3334,77276.266,0,0,3154.9248 -394,483,873,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,5,8.68011,8.845933,5.8268504,3,0,-9,0,0,0,-1046.2391,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,45,45,15,1,0,-9,0,16.345736,16.345736,0,0,0,0,0,0,0,0,0,0,0,6.6762557,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,4,5,0,267,-8140.6768,0,0,3041.6782 -395,484,874,875,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,5,8.4034729,8.1429443,0,1,0,-9,9,0,12,-34.099316,0,0,0,36,2,3,1,3,3,2019,1,2,7,0,55,50,15,1,0,1,0,8.6673536,8.6673536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.349998,57.84,36.439999,56.630001,5,1,1,0,0,2,4,0,527,123426.25,0,0,1876.8867 -395,484,875,874,-9,-9,2,1,1,36,1,0,0,0,2,-9,1,1,0,0,3,4.6651154,4.7947292,0,1,0,-9,9,0,-12,25.050119,0,0,0,48,1,5,1,3,3,2019,1,1,12,1,43,40,15,1,0,1,0,.3174189,.3174189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.439999,56.630001,54.349998,57.84,5,2,3,0,0,2,4,0,527,123426.25,0,0,1876.8867 -396,485,876,-9,-9,-9,1,1,1,90,3,0,0,0,2,-9,4,3,0,1,4,0,6.5530887,6.7552032,3,0,0,0,-9,0,-962.71198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.4583864,0,0,1,1,0,3.7500656,6.6888437,0,0,60.869999,47.630001,-9,-9,7,1,1,0,0,12,2,1,312,108977.73,0,0,794.13684 -397,486,877,-9,879,878,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.6644,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,1,216.25,292838.59,0,0,1875.9088 -397,486,878,879,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,3,8.3331985,8.1305895,0,2,0,-9,25,0,4,-75.168282,0,0,0,47,2,3,1,-9,-9,2019,1,2,12,1,48,38,15,1,0,1,0,10.217095,10.217095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,49.349998,32.599998,54.09,5,1,1,0,0,7,3,1,216.25,292838.59,0,0,1875.9088 -397,486,879,878,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,3,6.7187552,7.0049186,0,2,0,-9,25,0,-4,-83.986145,0,0,0,51,2,3,1,2,2,2019,1,1,15,4,8,8,15,1,1,1,0,18.182976,18.182976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.599998,54.09,51.66,49.349998,5,1,1,0,0,7,3,1,216.25,292838.59,0,0,1875.9088 -397,486,880,-9,879,878,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.64264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,3,1,216.25,292838.59,0,0,1875.9088 -398,487,881,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,2,0,7.8865185,8.1552525,3,0,0,0,-9,0,-903.86084,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.8630166,10.907299,0,27.5,1,1,0,1.0179102,8.0905037,34.090187,3,66.760002,29.059999,-9,-9,6,3,4,0,0,8,4,1,561,1009385.2,0,0,1301.1862 -398,488,882,-9,881,-9,2,1,1,35,2,0,0,0,2,-9,2,1,0,0,3,8.7414379,8.7059679,0,3,0,0,0,-9,0,-1056.1383,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,44,15,1,0,-9,1,23.55681,23.55681,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.651295,3,62.279999,45.639999,-9,-9,6,3,4,0,0,8,5,1,324,-16859.678,0,0,3153.3193 -398,489,883,-9,881,-9,3,1,1,41,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1040.0364,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,3,4,0,1,8,1,1,469,0,0,0,664.56097 -399,490,884,885,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,0,3,8.2901106,8.6161947,0,1,0,-9,13,0,0,69.035683,0,0,1,39,2,3,1,2,2,2019,1,1,16,4,37,38,15,1,1,1,0,12.253223,12.253223,0,0,0,0,0,0,0,7,0,0,0,2.1731162,0,11.676488,3,42.549999,52.009998,46.549999,58.299999,5,1,1,0,0,6,5,1,1232.5,313601.13,0,0,3454.3096 -399,490,885,884,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,0,3,8.7161627,8.3338337,0,1,0,-9,13,0,0,-66.805687,0,0,0,39,1,3,1,2,2,2019,1,2,9,0,37,38,15,1,0,1,0,17.715197,17.715197,0,0,0,0,0,0,0,7,0,0,0,0,0,3.6580529,3,46.549999,58.299999,42.549999,52.009998,6,1,1,0,0,6,5,1,1232.5,313601.13,0,0,3454.3096 -400,491,886,889,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.5933723,8.6097946,0,2,0,-9,6,0,-4,-189.42279,0,0,1,48,1,2,1,2,2,2019,1,2,6,0,37,25,15,1,0,1,0,13.409447,13.409447,0,0,0,0,0,0,0,0,1,1,0,.78703845,0,0,0,52.82,53.970001,42.110001,52.709999,6,1,1,0,0,12,5,1,1247,1046967.9,0,0,5376.4292 -400,491,887,-9,886,889,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.02448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,1247,1046967.9,0,0,5376.4292 -400,491,888,-9,886,889,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.3739,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,5,1,1247,1046967.9,0,0,5376.4292 -400,491,889,886,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,2,9.0280542,9.0087461,0,2,0,-9,6,0,4,2.2059705,0,0,0,44,1,4,1,2,1,2019,1,1,11,0,40,39,15,1,0,1,0,22.881105,22.881105,0,0,0,0,0,0,0,0,1,1,0,7.636023,0,0,0,42.110001,52.709999,52.82,53.970001,4,1,1,0,0,12,5,1,1247,1046967.9,0,0,5376.4292 -401,492,890,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,0,3,0,6.5393386,6.1361761,3,0,0,0,-9,0,-942.43854,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,5.3466067,0,1.5141108,.9723376,1.1855217,0,0,1,1,0,.7035166,5.9502339,0,0,54.529999,35.709999,-9,-9,5,1,1,0,0,7,2,1,394,143148.56,0,0,1530.0891 -402,493,891,892,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.9669905,8.6879568,1,0,-9,32,0,6,-66.135574,0,0,0,62,1,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3080692,8.8287172,0,0,62.490002,55.09,57.16,56.150002,7,1,1,0,0,9,5,1,827.5,1329095.5,0,0,7112.7422 -402,493,892,891,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,4,8.7808008,8.642087,0,1,0,-9,32,0,-6,-84.72657,0,0,0,68,1,4,3,2,3,2019,2,2,6,0,50,45,15,1,0,4,0,16.143309,16.143309,0,0,0,0,0,0,0,0,1,1,0,3.4538996,0,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,9,5,1,827.5,1329095.5,0,0,7112.7422 -402,494,893,-9,892,891,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.7407656,9.0161829,0,3,0,0,0,-9,0,-916.25726,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,52,42,15,1,0,-9,1,14.099245,14.099245,0,0,0,0,0,0,0,0,1,1,0,3.2417512,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,5,1,295,318042.56,0,0,3038.5942 -403,495,894,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,0,4,0,7.6764679,7.5423183,3,0,0,0,-9,0,-964.38818,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7731113,7.5947871,0,0,60.700001,47.650002,-9,-9,6,1,1,0,0,12,3,1,412,122071.73,0,0,1629.137 -404,496,895,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,1,2,0,5.8646731,5.9730511,3,0,0,0,-9,0,-905.4173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.623313,0,0,51.66,28.08,-9,-9,1,1,1,0,0,4,2,1,903,-114459.5,0,0,1152.2491 -405,497,896,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,4.768064,5.1360679,3,0,0,0,-9,0,-1076.2252,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,0,0,2.2005825,0,0,0,0,1,1,0,0,4.972733,0,0,34.09,33.16,-9,-9,6,1,1,0,0,11,2,1,133,15519.952,0,0,426.31424 -406,498,897,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,0,5,0,7.8342004,7.9778428,3,0,0,0,-9,0,-937.84735,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6682448,8.2728701,12.461407,3,56.470001,59.400002,-9,-9,7,1,1,0,0,9,4,1,371,1062744.8,0,0,2912.2646 -407,499,898,-9,899,900,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-880.8374,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,533.66669,74844.461,0,0,3631.2444 -407,499,899,900,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,4,7.8724642,8.0666685,0,2,0,-9,6,0,-10,-5.9790525,0,1,1,39,2,3,1,-9,-9,2019,1,1,8,0,42,41,15,1,0,1,0,6.9498196,6.9498196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.02,52.220001,7,1,1,0,0,2,5,1,533.66669,74844.461,0,0,3631.2444 -407,499,900,899,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,0,3,8.6350718,8.7367525,0,2,0,-9,6,0,10,75.936211,0,0,0,29,2,4,1,2,2,2019,1,2,10,0,40,42,15,1,0,1,0,18.414549,18.414549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,52.220001,57.16,56.150002,6,1,1,0,0,2,5,1,533.66669,74844.461,0,0,3631.2444 -408,500,901,-9,-9,-9,1,1,0,42,2,0,0,0,3,-9,2,1,0,0,4,7.6234574,7.4277067,0,3,0,0,0,-9,0,-1029.3304,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,26,25,15,1,0,-9,0,8.033638,8.033638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,5,1,1,0,0,12,3,1,289,176342.45,0,0,623.72266 -409,501,902,903,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.256815,9.4051809,0,1,0,-9,27,0,-3,103.74624,0,0,0,57,2,4,3,3,3,2019,2,2,14,3,47,48,15,1,0,4,0,26.693504,26.693504,0,0,0,0,0,0,0,0,0,0,0,3.8379576,0,0,0,51.240002,58.84,54.200001,57.490002,3,1,1,0,0,10,5,1,640.5,354962.94,0,0,5394.6992 -409,501,903,902,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,0,4,7.2782102,7.8954377,7.3977637,1,0,-9,27,0,3,-31.471567,0,0,0,54,1,4,1,2,2,2019,3,1,10,0,10,25,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.6060203,7.7285166,7.2752919,3,54.200001,57.490002,51.240002,58.84,6,1,1,0,0,10,5,1,640.5,354962.94,0,0,5394.6992 -409,502,904,-9,903,902,4,1,0,22,2,0,0,0,1,1,2,1,0,0,4,8.4961462,8.192008,0,3,0,0,0,-9,0,-912.33563,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,1,41,0,15,1,0,-9,1,9.5937805,9.5937805,0,0,0,0,0,0,0,0,0,0,0,2.6604435,0,0,0,38.34,62.119999,-9,-9,6,1,1,0,0,10,4,1,170,-21536.119,0,0,2166.417 -409,503,905,-9,903,902,5,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,7.1411915,7.0476322,3,0,0,0,-9,0,-1059.2843,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3645577,0,0,0,34.080002,62.630001,-9,-9,6,1,1,0,0,10,2,1,496,27289.525,0,0,-746.56781 -410,504,906,-9,-9,-9,1,1,0,91,3,0,0,0,1,-9,4,3,0,1,3,0,4.8577738,5.2671032,3,0,0,0,-9,0,-1086.1671,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,44.164719,0,0,3.4306405,0,0,0,1,1,0,4.6823406,4.747067,0,0,54,43,-9,-9,6,1,1,0,0,8,2,0,617,253580.67,0,0,641.56128 -410,505,907,-9,-9,-9,2,1,0,19,2,0,0,0,1,-9,2,1,0,0,4,7.6542473,7.3348484,0,3,0,-9,0,-9,0,-1059.6007,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,39,0,15,1,0,-9,0,6.1473484,6.1473484,0,0,0,0,0,0,0,42,1,1,0,0,0,42.777683,3,61.119999,51.57,-9,-9,6,2,3,0,0,8,3,0,1772,0,0,0,342.16696 -411,506,908,909,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.4699278,9.0091934,0,1,0,-9,33,0,2,-9.3446207,0,0,0,50,2,4,1,2,2,2019,1,1,9,0,35,35,15,1,0,1,0,16.900719,16.900719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.529999,57.16,56.150002,6,4,2,0,0,8,4,0,332.66666,1612731,0,0,3726.3306 -411,506,909,908,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,6.8757973,6.7847066,0,1,0,-9,32,0,-2,-3.7393413,0,0,0,52,2,4,1,2,3,2019,1,2,8,0,15,16,15,1,0,1,0,6.9532447,6.9532447,0,0,0,0,0,0,0,0,0,0,0,.033180378,0,0,0,57.16,56.150002,57.73,54.529999,7,3,4,0,0,8,4,0,332.66666,1612731,0,0,3726.3306 -411,506,910,-9,909,908,4,1,0,17,2,0,0,0,2,1,11,3,0,0,2,7.673274,7.7282147,0,1,0,0,0,-9,0,-1005.9451,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.400002,44.52,-9,-9,5,3,4,0,0,8,4,0,332.66666,1612731,0,0,3726.3306 -412,507,911,914,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,6,-137.66646,0,0,0,40,3,5,1,3,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,62.389999,56.709999,5,2,3,0,0,9,2,1,1064.5,592973.13,0,0,1097.4028 -412,507,912,-9,911,914,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.51996,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,9,2,1,1064.5,592973.13,0,0,1097.4028 -412,507,913,-9,911,914,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.15515,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,9,2,1,1064.5,592973.13,0,0,1097.4028 -412,507,914,911,-9,-9,2,1,1,40,1,0,2,0,3,-9,1,1,0,0,5,7.6182022,7.4807048,5.8530383,2,0,-9,6,0,-6,-32.725239,0,0,0,46,2,3,3,3,-9,2019,2,1,8,0,40,40,15,1,0,3,0,5.5818539,5.5818539,0,0,0,0,0,0,0,0,1,1,0,6.454577,0,0,0,62.389999,56.709999,60.290001,52.110001,6,2,3,0,0,9,2,1,1064.5,592973.13,0,0,1097.4028 -413,508,915,-9,-9,-9,1,1,1,50,3,0,1,0,2,-9,4,3,0,0,4,0,7.8854733,8.1966543,4,0,0,0,-9,0,-1120.7755,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,43,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5021114,7.790452,0,0,58.720001,51.290001,-9,-9,6,1,1,0,0,9,3,1,2213,69230.234,0,0,1116.0039 -413,508,916,-9,-9,915,2,1,1,17,2,0,1,0,2,-9,7,2,0,0,5,5.2277932,5.4095802,0,4,0,0,0,-9,0,-1152.7161,1,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.299999,57.200001,-9,-9,6,1,1,0,0,9,3,1,2213,69230.234,0,0,1116.0039 -414,509,917,918,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,5,9.493825,9.4732227,0,2,0,-9,27,0,-1,156.04829,-9,0,0,47,1,4,1,2,2,2019,1,1,7,0,50,0,15,1,0,1,0,32.230957,32.230957,0,0,0,0,0,0,0,0,0,0,0,4.0835738,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,5,5,1,524.5,233325.88,0,0,8055.0967 -414,509,918,917,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,4,8.8742847,8.7663145,0,2,0,-9,26,0,1,22.428005,0,0,0,46,1,5,1,2,2,2019,1,2,7,0,43,30,15,1,0,1,0,14.313663,14.313663,0,0,0,0,0,0,0,0,0,0,0,3.4082716,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,5,5,1,524.5,233325.88,0,0,8055.0967 -415,510,919,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,3,8.0361853,7.9280329,0,3,0,-9,0,-9,0,-964.50995,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,35,0,15,1,0,-9,0,11.019996,11.019996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.139999,51.880001,-9,-9,5,1,1,0,0,2,4,0,452,114662.35,0,0,2150.6248 -416,511,920,921,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.8118014,7.2941208,1,0,-9,28,0,-2,-71.135101,0,0,0,71,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6818938,7.4574318,0,0,57.16,56.150002,56.580002,49.75,6,1,1,0,0,7,3,1,1316,1020796.6,0,0,2250.7666 -416,511,921,920,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,32,0,2,-121.01407,0,0,0,69,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4941716,0,0,0,56.580002,49.75,57.16,56.150002,6,1,1,0,0,7,3,1,1316,1020796.6,0,0,2250.7666 -417,512,922,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,2,1,0,0,4,7.6408339,7.9270172,0,3,0,0,0,-9,0,-940.11493,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,51,0,15,1,1,-9,0,5.5388956,5.5388956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.91,65.669998,-9,-9,2,1,1,0,0,4,3,1,468,165990.53,0,0,544.47174 -418,513,923,-9,925,924,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.4937,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,678,120081.85,0,0,1360.8164 -418,513,924,925,-9,-9,2,1,1,46,1,0,3,0,3,-9,1,1,0,0,4,7.6691699,7.4915195,0,2,0,-9,9,0,12,44.668159,0,0,0,34,3,2,3,-9,-9,2019,2,1,9,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,36.450001,26.48,6,2,3,0,0,4,2,1,678,120081.85,0,0,1360.8164 -418,513,925,924,-9,-9,1,1,0,34,1,0,3,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,18,0,-12,112.41075,0,0,1,46,3,4,1,3,3,2019,3,2,33,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.450001,26.48,52,56,5,2,3,0,0,4,2,1,678,120081.85,0,0,1360.8164 -419,514,926,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,1,1,0,0,3,8.5874529,8.7465706,6.0792408,3,0,0,0,-9,0,-894.66559,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,40,15,1,0,-9,0,16.110859,16.110859,0,0,0,0,0,0,0,0,1,1,0,7.0476036,5.9937062,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,10,5,1,1179,716648.69,0,0,3145.3748 -420,515,927,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,1,2,6.8659377,7.0644755,5.7973099,3,0,0,0,-9,0,-1154.7021,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,15,16,15,1,0,-9,0,6.2528725,6.2528725,0,0,0,0,0,0,0,0,1,1,0,5.6734147,0,0,0,60.689999,37.279999,-9,-9,5,1,1,0,0,7,2,1,1574,23135.717,0,0,2208.7188 -421,516,928,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,5.6151423,5.5089927,3,0,0,0,-9,0,-1014.7432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.6090899,35.985497,3,53.049999,44.84,-9,-9,6,1,1,0,0,2,2,1,564,118051.64,0,0,976.2887 -422,517,929,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,7.3873501,7.5270658,3,0,0,0,-9,0,-961.71948,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9903882,7.2580051,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,4,2,0,824,567476.44,0,0,662.94672 -423,518,930,-9,932,931,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.2695,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,386.5,239917.83,0,0,3962.99 -423,518,931,932,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,8.8799028,8.7058344,0,2,0,-9,9,0,0,-122.71398,0,0,0,48,2,3,1,1,2,2019,1,2,10,0,42,38,15,1,0,1,0,22.147871,22.147871,0,0,0,0,0,0,0,0,1,1,0,1.4501672,0,0,0,56.380001,44.259998,29.879999,54.16,6,1,1,0,0,8,4,1,386.5,239917.83,0,0,3962.99 -423,518,932,931,-9,-9,2,1,0,48,1,0,2,0,2,-9,1,1,0,0,3,7.5796323,7.7370534,0,2,0,-9,9,0,0,-91.571159,0,0,0,48,2,4,1,2,2,2019,1,1,24,12,28,28,15,1,1,1,0,8.2738466,8.2738466,0,0,0,0,0,0,0,0,1,1,0,7.7354279,0,0,0,29.879999,54.16,56.380001,44.259998,3,1,1,0,1,8,4,1,386.5,239917.83,0,0,3962.99 -423,518,933,-9,932,931,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,4.5937877,5.0209789,4.4731317,2,0,0,0,-9,0,-1214.7068,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5786901,0,0,0,45.580002,55.84,-9,-9,5,1,1,0,0,8,4,1,386.5,239917.83,0,0,3962.99 -424,519,934,935,-9,-9,2,1,1,75,1,0,0,0,2,-9,2,1,0,0,2,8.0116158,7.9903536,0,1,0,-9,10,0,7,63.547623,0,0,0,68,2,4,3,3,1,2019,2,1,12,0,50,60,15,1,0,4,0,6.1162562,6.1162562,0,0,0,0,0,0,0,0,1,1,0,3.613992,0,0,0,46.91,51.799999,57.16,56.150002,6,1,1,0,0,7,3,1,345,1048978.8,0,0,2883.502 -424,519,935,934,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.7647042,6.8923526,1,0,-9,10,0,-7,-63.695778,0,0,0,75,2,2,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2432966,6.9139714,0,0,57.16,56.150002,46.91,51.799999,6,1,1,0,0,7,3,1,345,1048978.8,0,0,2883.502 -425,520,936,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1095.1198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.299999,22.870001,-9,-9,2,1,1,0,0,13,1,1,104,-33336.895,0,0,1544.757 -426,521,937,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-975.13068,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,105.08103,3,33.48,21.58,-9,-9,5,1,1,0,0,7,1,0,523.66669,-34441.063,0,0,2764.6973 -426,521,938,-9,937,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-999.08081,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,7,1,0,523.66669,-34441.063,0,0,2764.6973 -426,521,939,-9,937,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1023.447,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,1,0,523.66669,-34441.063,0,0,2764.6973 -427,522,940,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,7.5429573,7.8919802,3,0,0,0,-9,0,-981.66302,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1549087,7.8779993,0,0,48.529999,52.16,-9,-9,6,1,1,0,0,9,3,1,4107,555674.75,0,0,3439.77 -428,523,941,942,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,2,0,8.0905371,7.6292686,1,0,-9,7,0,2,6.3455939,0,0,0,65,3,3,3,3,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3659697,7.6927533,0,0,59.369999,19.290001,38.16,44.66,4,1,1,0,0,2,3,1,439.5,950746.69,0,0,3030.3772 -428,523,942,941,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,-2,121.24393,0,0,0,67,1,2,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5461617,0,0,0,38.16,44.66,59.369999,19.290001,5,1,1,0,0,2,3,1,439.5,950746.69,0,0,3030.3772 -429,524,943,944,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,6.9493909,6.8573532,1,0,-9,55,0,0,0,0,0,0,78,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5718508,6.7877383,0,0,53,46,51,46,5,1,1,0,0,13,2,1,285,679495.25,0,0,1717.5156 -429,524,944,943,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,6.7735682,6.8211069,1,0,-9,55,0,0,0,0,0,0,78,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8226032,0,0,51,46,53,46,6,1,1,0,0,13,2,1,285,679495.25,0,0,1717.5156 -430,525,945,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,5,8.2261772,8.7425985,7.2038388,3,0,0,0,-9,0,-1004.7717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,39,15,1,0,-9,0,12.275086,12.275086,0,0,0,0,0,0,0,0,1,1,0,0,6.7385411,0,0,43.919998,62.310001,-9,-9,3,1,1,0,0,7,5,1,64,443022.06,0,0,2059.9834 -431,526,946,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,1,0,5.4485722,5.5939221,3,0,0,0,-9,0,-1038.8655,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,74.628166,0,0,1,1,0,0,5.3812585,0,0,52.200001,17.82,-9,-9,6,1,1,0,0,2,2,0,338,-185194.25,0,0,1630.5282 -432,527,947,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1039.4872,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.125233,3,57.060001,57.759998,-9,-9,6,1,1,0,0,9,1,0,495,-29690.518,0,0,1601.6311 -433,528,948,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,8,3,1,1,3,7.9069276,8.413167,7.2781935,3,0,0,0,-9,0,-1128.8298,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,27,12,74,38,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.6246109,9.4653749,3,28.860001,57.419998,-9,-9,4,1,1,0,0,7,4,1,326,804265.44,0,0,1562.5084 -434,529,949,-9,950,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-908.32068,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1161.5,291917.16,0,0,3151.6772 -434,529,950,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,2,1,0,0,4,8.9303894,8.7985468,6.6672463,4,0,0,0,-9,0,-962.22711,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,33,33,15,1,0,-9,0,29.735975,29.735975,0,0,0,0,0,0,0,0,1,1,0,6.395607,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,11,5,1,1161.5,291917.16,0,0,3151.6772 -435,530,951,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,4,3,0,1,2,0,7.1579428,7.0675044,3,0,-9,0,-9,0,-1083.6378,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0259628,5.894134,0,0,49.610001,32.98,-9,-9,6,1,1,0,0,7,3,1,782,-85858.758,0,0,385.80014 -435,531,952,-9,-9,-9,2,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,8.5215206,9.1384706,0,3,0,-9,0,-9,0,-1041.1025,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,24,0,15,1,0,-9,0,26.059034,26.059034,0,0,0,0,0,0,0,0,1,1,0,3.1407013,0,0,0,48,49,-9,-9,5,1,1,0,0,7,5,1,5332,546466.06,0,0,3799.8708 -436,532,953,954,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-4,-29.903397,0,0,0,73,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.779999,55.099998,57.330002,53.459999,7,1,1,0,0,2,2,1,587.5,264348.25,0,0,1410.5371 -436,532,954,953,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.4467735,7.2689896,1,0,-9,50,0,4,-51.705994,0,0,0,69,2,4,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9165171,7.3432231,4.2345161,3,57.330002,53.459999,44.779999,55.099998,7,1,1,0,0,2,2,1,587.5,264348.25,0,0,1410.5371 -437,533,955,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,4.5071392,4.9079366,3,0,0,0,-9,0,-1055.4581,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.8259331,3.0154755,0,0,1,1,0,1.3472799,4.5971022,0,0,52,45,-9,-9,6,1,1,0,0,4,2,1,216,-12739.992,0,0,107.28585 -438,534,956,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,8.3406229,8.6582603,0,3,0,0,0,-9,0,-917.12231,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,44,40,15,1,0,-9,0,14.319272,14.319272,0,0,0,0,0,0,0,2,0,0,0,1.7717201,0,0,3,47.91,57.48,-9,-9,6,1,1,0,0,7,5,1,301,307670.84,0,0,655.27405 -439,535,957,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-930.49988,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.639999,29.690001,-9,-9,5,1,1,0,0,8,1,0,258,84078.344,0,0,1348.3076 -440,536,958,959,-9,-9,2,1,0,61,1,0,0,0,2,-9,1,1,0,0,2,6.2731385,6.0321388,0,1,0,-9,9,0,-5,-41.742931,-9,0,0,66,2,4,3,-9,-9,2019,2,1,18,7,10,0,15,1,1,4,0,6.5912538,6.5912538,0,0,0,0,0,0,0,2,1,1,0,.84023166,0,8.9614134,3,48.990002,30.43,52.48,54.330002,5,1,1,0,0,9,2,1,286.5,650404.88,0,0,1114.0237 -440,536,959,958,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.4480557,6.631918,1,0,-9,42,0,5,-131.23624,0,0,0,61,2,2,1,3,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1838121,0,0,52.48,54.330002,48.990002,30.43,6,1,1,0,0,9,2,1,286.5,650404.88,0,0,1114.0237 -441,537,960,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,1,1,0,0,4,8.0487051,8.1264009,5.2821264,3,0,0,0,-9,0,-1077.0387,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,35,40,15,1,1,-9,0,9.6437197,9.6437197,0,0,0,0,0,0,0,7,1,1,0,5.4285522,0,3.1575232,3,36.509998,56.02,-9,-9,3,4,2,0,1,4,4,0,2404,80107.102,0,0,853.3811 -442,538,961,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,5,6.7733788,7.0285048,6.0206156,3,0,0,0,-9,0,-1012.5112,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,5,10,15,1,0,-9,0,19.135815,19.135815,0,0,0,0,0,0,0,7,1,1,0,6.0654778,6.1452465,14.683186,3,38.240002,63.73,-9,-9,7,1,1,0,0,7,3,1,2750,22202.615,0,0,1500.9291 -443,539,962,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,2,0,7.2063336,7.0880446,3,0,0,0,-9,0,-1042.734,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,2.9985778,0,.22530346,0,0,43.214703,0,1,1,0,1.3242202,7.4140358,0,0,51.959999,19.59,-9,-9,1,1,1,0,0,10,3,0,432,233888.44,0,0,1614.5673 -444,540,963,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-946.80591,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.07,43.049999,-9,-9,6,1,1,0,0,13,1,0,123,45067.016,0,0,1413.7975 -445,541,964,965,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.2536511,6.9822979,1,0,-9,17,0,7,-28.69714,0,0,0,62,3,5,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4363647,6.7205577,9.2245893,3,48.279999,60.18,57.060001,57.759998,7,1,1,0,0,5,3,1,569.5,652307.13,0,0,2415.0996 -445,541,965,964,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,0,5,0,7.1528072,7.4934511,1,0,-9,13,0,-7,17.098082,0,0,0,69,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.786376,7.3048124,0,3,57.060001,57.759998,48.279999,60.18,7,1,1,0,0,5,3,1,569.5,652307.13,0,0,2415.0996 -446,542,966,967,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,9.584548,9.5924931,0,1,0,-9,32,0,-1,128.76929,0,0,0,57,2,3,3,3,3,2019,2,2,12,1,50,58,15,1,0,3,0,38.908276,38.908276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,61.619999,34.959999,6,1,1,0,0,4,5,1,598.5,3437390,0,0,4903.4756 -446,542,967,966,-9,-9,2,1,0,57,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,31,0,1,75.881195,0,0,0,56,1,4,1,1,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.619999,34.959999,46.16,58.619999,6,1,1,0,0,4,5,1,598.5,3437390,0,0,4903.4756 -446,543,968,-9,967,966,3,1,0,18,2,0,0,0,2,-9,2,1,0,0,3,6.9945402,7.0176692,0,3,0,0,0,-9,0,-1017.5919,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,18,0,15,1,0,-9,1,6.764524,6.764524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,4,2,1,1616,165075.83,0,0,2103.6116 -447,544,969,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,0,2,0,6.8850989,6.7405496,3,0,0,0,-9,0,-1019.9999,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3262925,6.2237868,0,0,34.889999,43.84,-9,-9,4,1,1,0,1,5,2,1,562,66025.102,0,0,644.00214 -448,545,970,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.1429648,6.9316759,3,0,0,0,-9,0,-882.81598,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6214476,7.238781,0,0,50.259998,49.779999,-9,-9,6,1,1,0,0,5,2,1,805,501635,0,0,1375.645 -449,546,971,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,4,7.9850554,7.9436307,0,3,0,0,0,-9,0,-1047.5188,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,7.9647937,7.9647937,0,0,0,0,0,0,0,0,1,1,0,4.8481507,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,7,4,1,1051,368052.84,0,0,1214.1295 -450,547,972,-9,975,973,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.3691,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,404,-9084.7695,0,0,2420.5229 -450,547,973,975,-9,-9,2,1,1,47,1,0,2,0,3,-9,1,1,0,0,4,8.1420479,8.3792734,0,2,0,-9,7,0,3,-113.43858,0,0,0,44,2,4,1,-9,-9,2019,1,1,9,1,45,50,15,1,0,1,0,9.2415171,9.2415171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.389999,60.990002,6,1,1,0,0,10,3,1,404,-9084.7695,0,0,2420.5229 -450,547,974,-9,975,973,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-757.71436,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,404,-9084.7695,0,0,2420.5229 -450,547,975,973,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,6.8884315,7.0288219,0,2,0,-9,20,0,-3,-119.71955,0,0,1,47,3,4,1,-9,-9,2019,1,2,11,0,16,16,15,1,0,1,0,7.0408587,7.0408587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,52,55,6,1,1,0,0,10,3,1,404,-9084.7695,0,0,2420.5229 -451,548,976,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1052.4377,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.310001,25.5,-9,-9,4,1,1,0,0,4,1,0,551,27278.059,0,0,877.21655 -452,549,977,978,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,0,2,9.2117662,9.0813961,0,1,0,-9,1,0,-13,50.545006,-9,0,1,54,1,3,1,2,1,2019,1,2,12,0,47,0,15,1,0,1,0,18.811131,18.811131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.040001,31.610001,49,50,5,1,1,0,0,6,5,1,807,224340.78,0,0,5648.1719 -452,549,978,977,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,7.3797183,8.3515577,8.1873102,1,0,-9,1,-9,13,-2.9975414,-9,0,0,41,1,2,1,-9,-9,2019,1,1,11,1,37,0,15,1,0,1,0,4.1033802,4.1033802,0,0,0,0,0,0,0,0,0,0,0,4.0581222,8.0407352,0,0,49,50,53.040001,31.610001,5,4,1,0,0,6,5,1,807,224340.78,0,0,5648.1719 -453,550,979,980,-9,-9,2,1,0,60,1,0,0,0,3,-9,8,3,1,1,3,0,3.8740304,3.8933444,1,0,-9,41,0,-2,-62.629242,0,0,0,62,2,2,1,3,3,2019,3,1,31,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.624584,3.613945,0,0,36.939999,22.040001,47.009998,36.900002,2,4,2,0,1,9,3,1,275.5,813293.75,0,0,2928.7229 -453,550,980,979,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,5.8096671,7.9609442,7.9160142,1,0,-9,41,0,2,16.513998,0,0,0,60,3,3,3,3,3,2019,2,2,8,0,10,0,15,1,0,3,0,3.8817461,3.8817461,0,0,0,0,0,0,0,7,1,1,0,3.7881811,7.7796011,11.417661,1,47.009998,36.900002,36.939999,22.040001,5,1,1,0,0,9,3,1,275.5,813293.75,0,0,2928.7229 -454,551,981,-9,982,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.098,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,2,1,686,-166284.53,0,0,1403.0724 -454,551,982,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,4,7.1526318,7.1430888,0,4,0,0,0,-9,0,-887.81708,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,16,0,15,1,0,-9,0,7.6872101,7.6872101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.049999,58.43,-9,-9,6,1,1,0,1,12,2,1,686,-166284.53,0,0,1403.0724 -455,552,983,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,0,3,8.2020369,8.1251602,0,3,0,0,0,-9,0,-964.46259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,20,23,15,1,0,-9,0,24.483952,24.483952,0,0,0,0,0,0,0,0,1,1,0,1.5133634,0,0,0,53.639999,45.700001,-9,-9,3,1,1,0,0,8,4,1,97,-107014.28,0,0,2291.0242 -456,553,984,985,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.7227502,7.4690814,1,0,-9,51,0,0,-16.336428,0,0,0,70,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.543242,7.6630793,0,0,57.16,56.150002,58.869999,51.290001,7,1,1,0,0,1,3,1,2820,468434.25,0,0,2642.5515 -456,553,985,984,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,0,-49.656685,0,0,0,70,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1706495,0,0,0,58.869999,51.290001,57.16,56.150002,6,1,1,0,0,1,3,1,2820,468434.25,0,0,2642.5515 -457,554,986,987,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,7.4874916,7.5567164,0,1,0,-9,11,0,-4,-87.684639,0,0,0,60,2,4,1,3,3,2019,1,2,10,0,45,45,15,1,0,1,0,5.9805908,5.9805908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.470001,51.380001,54.200001,57.490002,5,1,1,0,0,10,4,0,889,407142.31,0,0,1328.3256 -457,554,987,986,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.8178062,7.6497879,0,1,0,-9,11,0,4,-16.364758,0,0,0,56,2,3,1,2,3,2019,1,1,7,0,35,35,15,1,0,1,0,8.4684019,8.4684019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,40.470001,51.380001,7,1,1,0,0,10,4,0,889,407142.31,0,0,1328.3256 -458,555,988,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,1,3,5.040134,5.1529799,0,3,0,-9,0,0,0,-967.23254,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,19,7,6,0,15,1,1,-9,0,3.0612817,3.0612817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.860001,45.360001,-9,-9,2,1,1,0,0,7,2,1,565,-52128.004,0,0,1047.0151 -459,556,989,990,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,6.4177432,6.28227,1,0,-9,59,0,1,-8.0551767,0,0,0,73,2,5,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8463707,6.6091828,0,0,51.240002,58.84,41.07,60.93,5,1,1,0,0,7,2,0,477,266970.5,0,0,1724.155 -459,556,990,989,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,58,0,-1,165.11266,0,0,0,74,2,4,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,51.240002,58.84,6,1,1,0,0,7,2,0,477,266970.5,0,0,1724.155 -460,557,991,992,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.386363,8.8277922,0,2,0,-9,7,0,2,125.64432,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,1,40,41,15,1,0,1,0,16.638954,16.638954,0,0,0,0,0,0,0,0,1,1,0,3.6491997,0,0,0,52,55,48.869999,58.549999,6,1,1,0,0,12,4,1,487,671824.5,0,0,3562.0864 -460,557,992,991,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,6.9346504,6.7324133,0,2,0,-9,14,0,-2,-185.08595,0,0,1,45,2,4,1,3,2,2019,1,2,13,3,17,18,15,1,0,1,0,7.6662059,7.6662059,0,0,0,0,0,0,0,2,1,1,0,2.2475929,0,1.4835714,3,48.869999,58.549999,52,55,6,1,1,0,0,12,4,1,487,671824.5,0,0,3562.0864 -460,557,993,-9,992,991,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.0607,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,4,1,487,671824.5,0,0,3562.0864 -460,557,994,-9,992,991,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.90033,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,487,671824.5,0,0,3562.0864 -461,558,995,996,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.9552965,8.2450867,0,1,0,-9,9,0,-8,-37.9725,0,0,0,66,1,4,3,2,2,2019,2,1,8,0,24,23,15,1,0,4,0,22.947319,22.947319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,61.689999,44.41,6,1,1,0,0,12,5,1,167,2160759,0,0,4017.3794 -461,558,996,995,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,8.0898132,8.1206598,1,0,-9,9,0,8,-110.38498,0,0,0,58,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.121056,7.7859235,0,0,61.689999,44.41,60.119999,54.799999,6,1,1,0,0,12,5,1,167,2160759,0,0,4017.3794 -461,559,997,-9,995,996,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.470562,8.635046,0,3,0,0,0,-9,0,-996.46588,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,53,0,15,1,0,-9,1,9.4523535,9.4523535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,-9,-9,7,1,1,0,0,12,4,1,589,28954.672,0,0,1905.9651 -462,560,998,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,5.0817847,4.6786075,3,0,0,0,-9,0,-921.81122,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1884904,5.3944187,0,0,64.470001,51.450001,-9,-9,7,1,1,0,0,12,2,1,760,70618.133,0,0,1020.2244 -463,561,999,1000,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,0,3,7.3690758,7.1754241,0,1,0,-9,26,0,8,70.609253,0,0,0,50,2,4,1,2,3,2019,1,1,9,0,21,29,15,1,0,1,0,7.6699705,7.6699705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.040001,39.41,58.299999,52.91,5,1,1,0,0,5,5,1,1006.5,556120,0,0,5016.7241 -463,561,1000,999,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,9.3424196,9.2856064,0,1,0,-9,25,0,-8,-60.671383,0,0,0,58,3,3,1,2,2,2019,1,2,7,0,48,46,15,1,0,1,0,22.458723,22.458723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,52.91,61.040001,39.41,6,1,1,0,0,5,5,1,1006.5,556120,0,0,5016.7241 -463,562,1001,-9,999,1000,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.5453372,7.4271097,0,3,0,0,0,-9,0,-925.30719,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,40,15,1,0,-9,1,6.6667624,6.6667624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,3,1,253,263065.63,0,0,2092.0876 -464,563,1002,1003,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,2,8.5681896,8.6255093,0,1,0,-9,7,0,3,-32.917461,0,0,0,49,2,3,1,3,2,2019,1,1,13,1,66,58,15,1,0,1,0,11.104094,11.104094,0,0,0,0,0,0,0,7,0,0,0,0,0,13.773778,3,50.27,48.860001,59.310001,49.810001,5,1,1,0,0,6,5,1,1179,795580,0,0,3220.1484 -464,563,1003,1002,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.895843,7.867713,0,1,0,-9,7,0,-3,-51.366943,0,0,0,52,2,2,1,2,2,2019,1,2,10,0,30,37,15,1,0,1,0,9.5200224,9.5200224,0,0,0,0,0,0,0,0,0,0,0,2.75738,0,0,0,59.310001,49.810001,50.27,48.860001,6,1,1,0,0,6,5,1,1179,795580,0,0,3220.1484 -465,564,1004,1007,-9,-9,2,1,0,42,1,0,3,0,1,-9,2,1,0,0,4,7.9432888,8.1399193,0,2,0,-9,22,0,0,8.1169186,0,0,1,42,1,4,1,2,2,2019,1,1,13,2,28,25,15,1,0,1,0,15.757322,15.757322,0,0,0,0,0,0,0,0,1,1,0,3.2007806,0,0,0,41.650002,60.41,49.459999,56.91,6,1,1,0,0,6,5,1,707.79999,170068.36,0,0,5024.7813 -465,564,1005,-9,1004,1007,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1124.5051,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,707.79999,170068.36,0,0,5024.7813 -465,564,1006,-9,1004,1007,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.0162,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,5,1,707.79999,170068.36,0,0,5024.7813 -465,564,1007,1004,-9,-9,1,1,1,42,1,0,3,0,1,-9,2,1,0,0,4,8.9337568,8.9462214,0,2,0,-9,25,0,0,-28.666004,0,0,0,42,1,4,1,1,3,2019,1,2,9,1,37,37,15,1,0,1,0,28.499544,28.499544,0,0,0,0,0,0,0,0,1,1,0,4.523376,0,0,0,49.459999,56.91,41.650002,60.41,5,1,1,0,0,6,5,1,707.79999,170068.36,0,0,5024.7813 -465,564,1008,-9,1004,1007,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.67285,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,707.79999,170068.36,0,0,5024.7813 -466,565,1009,1010,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,9.1004858,9.4543886,0,2,0,-9,19,0,6,-26.766954,0,0,0,40,1,4,1,3,3,2019,1,1,8,0,42,40,15,1,0,1,0,33.896744,33.896744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,48.869999,58.549999,6,1,1,0,0,6,5,1,592,1728446.5,0,0,5927.8213 -466,565,1010,1009,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.7659855,8.9846525,0,2,0,-9,19,0,-6,51.778908,0,0,1,46,1,5,1,2,2,2019,1,2,10,1,47,48,15,1,0,1,0,16.646215,16.646215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,51.139999,60.450001,6,1,1,0,0,6,5,1,592,1728446.5,0,0,5927.8213 -466,565,1011,-9,1010,1009,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.9045,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,592,1728446.5,0,0,5927.8213 -466,565,1012,-9,1010,1009,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.0814,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,592,1728446.5,0,0,5927.8213 -467,566,1013,1014,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,7.887805,7.9810238,1,0,-9,44,0,0,-32.653519,0,0,0,67,2,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2491007,8.2218847,0,0,45.310001,49.099998,60.450001,41.049999,7,1,1,0,0,2,3,1,1113,947480.25,0,0,3575.48 -467,566,1014,1013,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,0,-50.328194,0,0,0,67,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,2.9112184,0,0,0,0,0,1,1,0,6.3438182,0,0,0,60.450001,41.049999,45.310001,49.099998,6,1,1,0,0,2,3,1,1113,947480.25,0,0,3575.48 -468,567,1015,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-978.04858,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.459999,36.130001,-9,-9,2,1,1,1,0,13,1,0,359,-61182.586,0,0,2558.1743 -468,568,1016,-9,1015,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,8.2730656,7.8825459,0,3,0,0,0,-9,0,-1126.9519,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,30,0,15,1,0,-9,1,10.427748,10.427748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.060001,49.799999,-9,-9,3,1,1,0,0,13,4,0,334,-8886.3682,0,0,-179.1891 -469,569,1017,1018,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,7.1845422,7.7119198,5.5222073,1,0,-9,9,0,9,159.31194,0,0,0,63,2,3,3,-9,-9,2019,4,1,9,0,56,70,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3592043,5.4980483,0,0,53.389999,52.349998,34.209999,51.939999,5,1,1,0,0,10,2,1,638.5,551023.25,0,0,1624.0231 -469,569,1018,1017,-9,-9,1,1,0,63,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,9,0,0,98.618996,0,0,0,72,3,4,3,2,3,2019,4,2,23,11,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.2181849,3,34.209999,51.939999,53.389999,52.349998,4,1,1,0,0,10,2,1,638.5,551023.25,0,0,1624.0231 -470,570,1019,-9,1021,1020,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-973.03467,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,2,5,1,1053.25,1158796.1,0,0,5333.3394 -470,570,1020,1021,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,9.2346325,9.1195831,0,2,0,-9,7,0,3,1.7034529,0,0,0,44,1,5,1,2,2,2019,1,1,7,0,39,37,15,1,0,1,0,26.401777,26.401777,0,0,0,0,0,0,0,0,1,1,0,4.1299658,0,0,0,57.16,56.150002,38.240002,63.73,6,1,1,0,0,2,5,1,1053.25,1158796.1,0,0,5333.3394 -470,570,1021,1020,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,5,8.6949291,8.5698938,0,2,0,-9,7,0,-3,-33.172668,0,0,1,47,1,4,1,2,2,2019,1,2,14,5,59,50,15,1,1,1,0,14.314831,14.314831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.240002,63.73,57.16,56.150002,6,1,1,0,0,2,5,1,1053.25,1158796.1,0,0,5333.3394 -470,570,1022,-9,1021,1020,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1143.8525,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,5,1,1053.25,1158796.1,0,0,5333.3394 -471,571,1023,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,7.2534928,7.2886782,3,0,0,0,-9,0,-873.97955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4385166,7.5106978,0,0,57.259998,39.689999,-9,-9,7,1,1,0,0,12,3,1,515,505540.47,0,0,365.13177 -472,572,1024,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-903.32111,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,21.411636,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,3,1,1,0,0,10,1,0,677,132349.7,0,0,2342.3384 -472,573,1025,-9,1024,-9,2,1,1,48,2,0,0,0,3,-9,2,1,0,0,4,6.9851069,7.1875443,0,3,0,0,0,-9,0,-844.94763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,44,54,15,1,0,-9,1,2.9648609,2.9648609,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.611906,3,51.139999,52.080002,-9,-9,4,1,1,0,0,10,2,0,770,25222.842,0,0,863.89545 -473,574,1026,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1044.1389,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.689999,43.049999,-9,-9,3,1,1,0,0,10,1,0,3655,34580.766,0,0,-751.48627 -474,575,1027,1028,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,9.3870392,8.9642391,0,1,0,-9,25,0,5,-1.4318804,0,0,0,47,1,5,1,2,2,2019,1,2,11,0,40,48,15,1,0,1,0,19.951422,19.951422,0,0,0,0,0,0,0,0,0,0,0,5.880619,0,0,0,57.09,46.700001,45.75,62.869999,2,1,1,0,0,2,5,1,1935.5,826204.31,0,0,5268.3389 -474,575,1028,1027,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,0,5,8.8345222,8.8849497,0,1,0,-9,25,0,-5,44.592667,0,0,0,52,1,3,1,2,3,2019,1,1,11,0,50,49,15,1,0,1,0,14.881598,14.881598,0,0,0,0,0,0,0,0,0,0,0,7.3944864,0,0,0,45.75,62.869999,57.09,46.700001,6,1,1,0,0,2,5,1,1935.5,826204.31,0,0,5268.3389 -475,576,1029,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1031.0903,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.759998,52.990002,-9,-9,6,4,2,0,1,8,1,1,172,-4150.8384,0,0,0 -476,577,1030,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,2,0,4.4381762,4.1517167,3,0,0,0,-9,0,-909.26581,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,4.8056679,19.739073,3,29.610001,26.030001,-9,-9,2,1,1,0,1,12,2,1,90,254686.38,0,0,-418.71356 -477,578,1031,1032,-9,-9,2,1,0,50,1,0,2,0,1,-9,1,1,0,1,4,8.2544451,8.0873404,0,2,0,-9,6,0,-4,-16.491833,0,0,0,54,1,4,1,-9,-9,2019,1,1,9,1,3,4,15,1,0,1,0,140.68471,140.68471,0,0,0,0,0,0,0,14.5,1,1,0,9.5081387,0,19.34696,3,54.200001,57.490002,53,54,6,1,1,0,0,10,3,1,1025.5,1313439,0,0,6246.2178 -477,578,1032,1031,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,0,4,7.3229837,7.2772512,0,2,0,-9,6,0,4,125.21301,0,0,0,50,1,4,1,2,2,2019,1,2,9,1,32,40,15,1,0,1,0,3.5785093,3.5785093,0,0,0,0,0,0,0,0,1,1,0,2.5634918,0,0,3,53,54,54.200001,57.490002,6,1,1,0,0,10,3,1,1025.5,1313439,0,0,6246.2178 -477,578,1033,-9,1031,1032,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.33862,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,1025.5,1313439,0,0,6246.2178 -477,578,1034,-9,1031,1032,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.0946,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,1025.5,1313439,0,0,6246.2178 -478,579,1035,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,1,2,0,7.6283612,7.5915103,3,0,0,0,-9,0,-1111.7432,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,25.497089,0,0,0,1,1,0,7.4478979,0,0,0,44.169998,19.58,-9,-9,2,1,1,0,0,5,3,1,489,270894.84,0,0,2403.5195 -478,580,1036,-9,1035,-9,2,1,1,66,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1046.8563,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,0,-9,1,0,0,1,0,0,0,0,0,0,42,1,1,0,6.7145653,0,38.033604,3,43.599998,40.880001,-9,-9,4,1,1,0,0,5,1,1,832,7446.1777,0,0,1817.2396 -479,581,1037,1038,-9,-9,1,1,0,52,1,0,0,0,1,-9,1,1,0,0,3,6.7058349,7.0819263,0,1,0,-9,28,0,-1,39.331394,0,0,0,53,1,3,1,3,2,2019,1,2,8,0,16,20,15,1,0,1,0,7.5580559,7.5580559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.709999,53.580002,54.900002,54.529999,5,2,3,0,0,9,4,0,800.5,1271930,0,0,3175.752 -479,581,1038,1037,-9,-9,2,1,1,53,1,0,0,0,1,-9,1,1,0,0,3,8.5804605,8.5238333,0,1,0,-9,28,0,1,-33.955193,0,0,0,52,1,3,1,2,1,2019,1,1,14,3,50,50,15,1,0,1,0,10.900371,10.900371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.900002,54.529999,42.709999,53.580002,5,2,3,0,0,9,4,0,800.5,1271930,0,0,3175.752 -479,582,1039,-9,1037,1038,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.33253,8.3989325,0,3,0,0,0,-9,0,-1034.8816,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,40,0,15,1,0,-9,1,13.937054,13.937054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,2,4,5,0,0,9,4,0,439,151966.44,0,0,396.32983 -480,583,1040,1041,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,4.7326918,4.9587665,1,0,-9,10,0,0,-58.261829,0,0,0,74,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2979686,4.6171913,14.368365,3,49.349998,59.639999,56.099998,49.93,6,1,1,0,0,7,2,1,1329,655899.75,0,0,2456.0198 -480,583,1041,1040,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.5252271,7.5261803,1,0,-9,10,0,0,123.70509,0,0,0,74,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0089035,7.1227875,2.7081387,3,56.099998,49.93,49.349998,59.639999,6,1,1,0,0,7,2,1,1329,655899.75,0,0,2456.0198 -481,584,1042,1043,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,3,7.7354035,7.8100224,0,2,0,-9,6,0,1,71.12191,0,0,0,53,2,2,3,-9,-9,2019,2,1,11,0,40,40,15,1,0,3,0,6.0262961,6.0262961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.369999,38.610001,43.91,31.459999,6,1,1,0,0,11,2,0,1446,107999.37,0,0,1806.3531 -481,584,1043,1042,-9,-9,1,1,0,53,1,0,1,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,27,0,-1,-28.711809,0,0,0,54,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.91,31.459999,48.369999,38.610001,4,1,1,0,0,11,2,0,1446,107999.37,0,0,1806.3531 -482,585,1044,1046,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,0,5,8.3499794,8.418581,0,2,0,-9,16,0,-4,-3.4076579,0,0,0,42,2,4,1,2,3,2019,1,1,8,0,55,47,15,1,0,1,0,8.9786024,8.9786024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,49.119999,57.279999,6,1,1,0,0,7,4,0,804,931658,0,0,2680.4578 -482,585,1045,-9,1046,1044,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.8102,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,0,804,931658,0,0,2680.4578 -482,585,1046,1044,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,7.282649,7.2200522,0,2,0,-9,16,0,4,-.2174226,0,0,1,38,2,5,1,3,2,2019,1,2,12,3,22,24,15,1,0,1,0,9.4565191,9.4565191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.119999,57.279999,54.689999,57.470001,6,1,1,0,0,7,4,0,804,931658,0,0,2680.4578 -483,586,1047,-9,-9,-9,3,1,0,20,2,0,1,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-962.01483,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.071515374,0,0,0,49.84,59.619999,-9,-9,7,1,1,0,0,2,1,1,644,-144216.97,0,0,882.77118 -484,587,1048,1049,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,0,3,0,8.1855183,7.9190154,1,0,-9,10,0,7,124.28356,0,0,0,50,2,4,1,2,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9151282,8.2302246,0,0,52.57,52.889999,61.119999,51.57,6,1,1,0,0,10,3,1,393,1400154.3,0,0,2116.2261 -484,587,1049,1048,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,10,0,-7,17.914349,0,0,0,57,2,3,3,3,2,2019,2,2,7,0,0,50,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7034717,0,0,0,61.119999,51.57,52.57,52.889999,6,1,1,0,0,10,3,1,393,1400154.3,0,0,2116.2261 -485,588,1050,1051,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,3,9.0882807,8.9227724,0,1,0,-9,33,0,2,-145.05655,0,0,0,55,1,5,1,2,2,2019,1,2,12,0,28,28,15,1,0,1,0,32.058044,32.058044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.619999,48.279999,55.200001,57.220001,5,1,1,0,0,12,5,1,1249.5,1312629.6,0,0,7753.1113 -485,588,1051,1050,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,5,9.6356897,9.2130642,0,1,0,-9,33,0,-2,50.063103,0,0,0,57,1,3,1,1,2,2019,1,1,10,0,55,60,15,1,0,1,0,25.448109,25.448109,0,0,0,0,0,0,0,7,0,0,0,6.9515028,0,7.2167311,3,55.200001,57.220001,50.619999,48.279999,1,1,1,0,0,12,5,1,1249.5,1312629.6,0,0,7753.1113 -485,589,1052,-9,1051,1050,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,5,8.584384,8.4802208,0,3,0,0,0,-9,0,-971.62109,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,45,80,15,1,0,-9,1,9.6484499,9.6484499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,1,146,131152.36,0,0,2215.5447 -485,590,1053,-9,1051,1050,4,1,1,21,2,0,0,0,2,1,2,1,0,0,3,6.3706064,6.4882445,0,3,0,0,0,-9,0,-1022.3629,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,10,0,15,1,0,-9,1,8.1269674,8.1269674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,50.5,-9,-9,5,1,1,0,0,12,2,1,1460,158634.7,0,0,-111.62537 -486,591,1054,1055,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,7,0,0,-119.68015,0,0,0,69,2,2,3,-9,-9,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,9.2425928,0,0,0,0,74.5,1,1,0,0,0,75.55439,3,38.07,23.43,45.060001,36.240002,6,1,1,0,0,1,2,0,1834,621941.69,0,0,2446.0483 -486,591,1055,1054,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.1283193,7.1750479,1,0,-9,7,0,0,59.401276,0,0,0,69,3,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3057756,7.4641099,3.2913117,2,45.060001,36.240002,38.07,23.43,5,1,1,0,0,1,2,0,1834,621941.69,0,0,2446.0483 -487,592,1056,1057,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,5,7.0951676,7.9252915,7.7977128,1,0,-9,49,0,1,-78.467896,0,0,0,67,1,4,3,1,1,2019,2,1,6,0,40,45,15,1,0,4,0,2.1452932,2.1452932,0,0,0,0,0,0,0,0,1,1,0,0,7.3495541,0,0,57.060001,57.759998,54.200001,57.490002,6,1,1,0,0,4,4,1,446,1993846.6,0,0,4701.5098 -487,592,1057,1056,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.2234087,8.3261852,1,0,-9,49,0,-1,2.6720459,0,0,0,68,1,5,1,3,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3879833,12.79548,3,54.200001,57.490002,57.060001,57.759998,6,1,1,0,0,4,4,1,446,1993846.6,0,0,4701.5098 -488,593,1058,-9,1061,1059,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-967.87244,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,7,1,0,676.40002,551723.19,0,0,2511.856 -488,593,1059,1061,-9,-9,1,1,1,38,1,0,3,0,3,-9,3,3,0,1,4,0,0,0,2,0,-9,9,0,4,0,0,0,0,34,2,2,3,3,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.09845,3,48.279999,60.18,38.5,26.209999,7,1,1,1,0,7,1,0,676.40002,551723.19,0,0,2511.856 -488,593,1060,-9,1061,1059,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-903.45221,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,7,1,0,676.40002,551723.19,0,0,2511.856 -488,593,1061,1059,-9,-9,2,1,0,34,1,0,3,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,9,0,-4,0,0,0,1,38,3,4,3,-9,-9,2019,4,1,15,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.256588,1,38.5,26.209999,48.279999,60.18,7,1,1,0,0,7,1,0,676.40002,551723.19,0,0,2511.856 -488,593,1062,-9,1061,1059,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1078.9708,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,7,1,0,676.40002,551723.19,0,0,2511.856 -489,594,1063,1064,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.8217878,8.7665854,1,0,-9,50,0,2,87.258987,0,0,0,71,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5647659,8.3806887,0,0,56.439999,52.369999,58.299999,52.91,6,1,1,0,0,12,4,1,1336.5,975210.81,0,0,4919.4971 -489,594,1064,1063,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.2151418,7.6429644,1,0,-9,50,0,-2,18.948944,0,0,0,73,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8585205,7.8001943,0,0,58.299999,52.91,56.439999,52.369999,7,1,1,0,0,12,4,1,1336.5,975210.81,0,0,4919.4971 -490,595,1065,1067,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,0,4,8.5842495,8.4658089,0,2,0,-9,19,0,4,72.801552,0,0,0,37,2,3,3,2,2,2019,2,2,11,2,35,35,15,1,0,3,0,17.42469,17.42469,0,0,0,0,0,0,0,0,1,1,0,4.7348123,0,0,0,57.16,56.150002,45.580002,47.970001,4,1,1,0,0,11,3,1,397,296137.38,0,0,2939.3398 -490,595,1066,-9,1067,1065,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.1263,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,3,1,397,296137.38,0,0,2939.3398 -490,595,1067,1065,-9,-9,2,1,0,37,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,19,0,-4,-125.50717,0,0,1,41,1,4,1,3,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.580002,47.970001,57.16,56.150002,5,1,1,0,0,11,3,1,397,296137.38,0,0,2939.3398 -491,596,1068,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,2,0,6.2650704,6.2233105,3,0,0,0,-9,0,-971.59174,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5163345,6.1180849,0,0,53.16,32.5,-9,-9,5,1,1,0,0,2,2,1,330,193808.53,0,0,1193.2125 -492,597,1069,1070,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,4,8.921175,8.452426,0,1,0,-9,1,-9,-1,70.283905,-9,0,0,33,1,4,1,-9,-9,2019,1,1,10,1,30,0,15,1,0,1,0,24.694166,24.694166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,55.34,54.259998,5,4,1,0,0,13,5,0,456,-79947.367,0,0,2700.0581 -492,597,1070,1069,-9,-9,1,1,0,33,1,0,0,0,1,-9,1,1,0,0,4,7.646893,7.085391,0,1,0,1,1,-9,1,-95.42849,0,0,1,32,2,4,1,2,2,2019,1,2,11,1,35,30,15,1,0,1,0,6.7083235,6.7083235,0,0,0,0,0,0,0,0,0,0,0,2.5992305,0,0,0,55.34,54.259998,50,57,6,1,1,0,0,13,5,0,456,-79947.367,0,0,2700.0581 -493,598,1071,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,0,1,0,4.9560313,4.8433857,3,0,0,0,-9,0,-995.08453,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.141521,5.1618352,0,0,40.349998,18.280001,-9,-9,4,1,1,0,0,4,2,0,926,-88862.039,0,0,-410.6004 -494,599,1072,1074,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,0,4,8.8236132,8.6949263,0,2,0,-9,29,0,-2,43.077511,0,0,0,53,1,5,1,2,1,2019,1,1,7,0,27,27,15,1,0,1,0,21.545687,21.545687,0,0,0,0,0,0,0,0,1,1,0,3.524528,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,12,3,1,421.5,106135.68,0,0,3432.8662 -494,599,1073,-9,1072,1074,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.3328,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.10471239,0,0,0,60.869999,42.099998,-9,-9,7,1,1,0,0,12,3,1,421.5,106135.68,0,0,3432.8662 -494,599,1074,1072,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,0,5,7.0725551,7.2304716,0,2,0,-9,29,0,2,6.1013708,0,0,0,51,1,4,1,2,2,2019,1,2,7,0,37,47,15,1,0,1,0,4.0573463,4.0573463,0,0,0,0,0,0,0,0,1,1,0,6.700356,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,12,3,1,421.5,106135.68,0,0,3432.8662 -494,599,1075,-9,1072,1074,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.5059,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,1,421.5,106135.68,0,0,3432.8662 -495,600,1076,1077,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,0,4,8.4934626,8.6508884,0,1,0,-9,6,0,-4,10.538875,0,0,0,51,3,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,10.66258,10.66258,0,0,0,0,0,0,0,0,0,0,0,4.6469488,0,0,0,53,55,42.959999,47.669998,6,1,1,0,0,7,5,0,968,1172062.3,0,0,3394.5952 -495,600,1077,1076,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,0,4,7.9486942,8.1148539,0,1,0,-9,6,0,4,-32.638786,0,0,0,47,3,4,1,3,3,2019,1,2,12,2,51,39,15,1,0,1,0,9.5741577,9.5741577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.959999,47.669998,53,55,6,1,1,0,0,7,5,0,968,1172062.3,0,0,3394.5952 -496,601,1078,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1019.5682,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,27.639999,19.879999,-9,-9,2,1,1,0,0,4,1,0,896,95035.117,0,0,1180.3448 -496,602,1079,-9,-9,-9,2,1,0,19,2,0,0,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1015.823,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.915268,3,43.509998,55.110001,-9,-9,3,1,1,1,0,4,1,0,358,-112496.59,0,0,0 -497,603,1080,1081,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.9850984,7.2355828,1,0,-9,10,0,5,-61.608646,0,0,0,62,3,1,3,2,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.3216999,7.5896354,26.650333,1,51.25,52.080002,36.150002,24.129999,5,1,1,0,0,13,2,1,755,496774.03,0,0,2061.9971 -497,603,1081,1080,-9,-9,2,1,0,62,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,10,0,-5,17.011379,0,0,0,67,2,3,3,3,3,2019,4,1,15,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.150002,24.129999,51.25,52.080002,4,1,1,0,0,13,2,1,755,496774.03,0,0,2061.9971 -498,604,1082,-9,-9,-9,1,1,0,69,3,0,2,0,2,-9,4,3,0,0,3,0,7.2858887,7.40448,4,0,0,0,-9,0,-966.16742,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9323385,7.2403727,0,0,63.41,39.700001,-9,-9,6,1,1,0,0,9,2,1,806,521894.97,0,0,1784.7651 -499,605,1083,-9,1084,1085,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.90948,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,2,1,676.25,109564.16,0,0,1602.1182 -499,605,1084,1085,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,3,6.4551625,6.6237469,0,2,0,-9,11,0,0,-11.963063,0,0,1,36,2,4,1,2,2,2019,1,2,8,0,11,11,15,1,0,1,0,7.9854622,7.9854622,0,0,0,0,0,0,0,0,1,1,0,5.0666094,0,0,0,54.369999,54.799999,51,57,6,1,1,0,0,4,2,1,676.25,109564.16,0,0,1602.1182 -499,605,1085,1084,-9,-9,2,1,1,36,1,0,2,0,2,-9,1,1,0,0,4,6.9076943,6.5507169,0,2,0,-9,2,0,0,118.60609,0,0,0,36,2,3,1,-9,-9,2019,1,1,10,1,50,60,15,1,0,1,0,2.1246159,2.1246159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,54.369999,54.799999,5,1,1,0,0,4,2,1,676.25,109564.16,0,0,1602.1182 -499,605,1086,-9,1084,1085,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.03363,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,1,676.25,109564.16,0,0,1602.1182 -500,606,1087,1090,-9,-9,1,1,0,46,1,0,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,23,0,7,0,0,0,0,39,2,5,3,3,3,2019,4,2,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.80309,3,28.219999,44.549999,48.77,60.16,4,1,1,0,0,1,1,0,1203.5,36232.813,0,0,2456.5059 -500,606,1088,-9,1087,1090,4,1,1,16,2,0,2,1,3,-9,7,2,0,1,5,0,0,0,2,0,0,0,-9,0,-916.16699,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.09,58.349998,-9,-9,7,1,1,0,1,1,1,0,1203.5,36232.813,0,0,2456.5059 -500,606,1089,-9,1087,1090,5,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.2799,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,1,0,1203.5,36232.813,0,0,2456.5059 -500,606,1090,1087,-9,-9,2,1,1,39,1,0,2,0,2,-9,6,3,0,1,5,0,0,0,2,0,-9,23,0,-7,0,0,0,0,46,3,2,3,-9,2,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.17001,2,48.77,60.16,28.219999,44.549999,6,1,1,0,0,1,1,0,1203.5,36232.813,0,0,2456.5059 -500,607,1091,-9,1087,1090,3,1,1,20,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1028.2278,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,1,1,0,827,-181350.45,0,0,0 -501,608,1092,1093,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,0,3,0,8.379055,8.0699711,1,0,-9,60,0,2,67.117584,0,0,0,82,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9372754,7.9663854,0,0,58.470001,50.220001,58.080002,40.759998,6,1,1,0,0,12,4,1,778,1090764.8,0,0,3019.5706 -501,608,1093,1092,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,7.328877,7.2475176,1,0,-9,60,0,-2,29.679256,0,0,0,84,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2610869,0,0,58.080002,40.759998,58.470001,50.220001,7,1,1,0,0,12,4,1,778,1090764.8,0,0,3019.5706 -502,609,1094,-9,1096,1095,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.304,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,479.75,565191.31,0,0,3857.0842 -502,609,1095,1096,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,9.1378002,8.7937336,4.1904716,2,0,-9,22,0,4,120.46527,0,0,0,42,2,5,1,2,2,2019,1,1,7,0,45,44,15,1,0,1,0,26.202944,26.202944,0,0,0,0,0,0,0,0,0,0,0,4.8765249,0,0,0,49.169998,58.560001,51.139999,60.450001,6,1,1,0,0,12,4,1,479.75,565191.31,0,0,3857.0842 -502,609,1096,1095,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,5,7.6066365,7.3975086,0,2,0,-9,22,0,-4,4.9303355,0,0,1,46,1,5,1,2,2,2019,1,2,10,1,24,35,15,1,0,1,0,7.3951049,7.3951049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,49.169998,58.560001,6,1,1,0,0,12,4,1,479.75,565191.31,0,0,3857.0842 -502,609,1097,-9,1096,1095,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,4.2901254,4.2766733,0,2,0,0,0,-9,0,-1065.7426,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.51,64.580002,-9,-9,6,1,1,0,0,12,4,1,479.75,565191.31,0,0,3857.0842 -503,610,1098,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,4,8.6251621,8.6118603,0,4,0,-9,0,-9,0,-946.76709,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,35,0,15,1,0,-9,0,15.919754,15.919754,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51,54,-9,-9,6,1,1,0,1,8,4,0,1362.5,653176.63,0,0,1859.5702 -503,610,1099,-9,1098,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-907.9668,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,4,0,1362.5,653176.63,0,0,1859.5702 -504,611,1100,1101,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,0,2,8.6470528,8.4942369,0,1,0,-9,40,0,4,55.816589,0,0,0,60,2,3,1,3,3,2019,1,2,12,3,60,60,15,1,0,1,0,10.342607,10.342607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.939999,33.459999,61.290001,43.34,5,1,1,0,0,13,4,1,2421.5,-148265.83,0,0,2578.7974 -504,611,1101,1100,-9,-9,2,1,0,60,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,40,0,-4,-.98901826,0,0,0,64,3,2,1,2,3,2019,1,1,6,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.290001,43.34,56.939999,33.459999,6,1,1,0,0,13,4,1,2421.5,-148265.83,0,0,2578.7974 -505,612,1102,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,7.502604,7.4297342,0,3,0,0,0,-9,0,-982.65979,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,0,15,1,0,-9,0,4.9938865,4.9938865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,4,1,1,0,0,12,3,1,772,289877.13,0,0,-27.591944 -506,613,1103,1104,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.9798393,8.289772,1,0,-9,10,0,8,171.6512,0,0,0,58,1,3,1,-9,-9,2019,3,1,13,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3774276,8.0577383,0,0,48.700001,56.220001,57.27,54.82,4,1,1,0,0,4,4,1,866.5,1241275.5,0,0,3371.749 -506,613,1104,1103,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.3616095,8.5670433,0,1,0,-9,10,0,-8,-167.78194,0,0,0,66,1,3,3,3,2,2019,2,2,9,0,36,37,15,1,0,4,0,11.894072,11.894072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.27,54.82,48.700001,56.220001,6,2,3,0,0,4,4,1,866.5,1241275.5,0,0,3371.749 -507,614,1105,1107,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,1,4,7.8555126,7.8290462,0,2,0,-9,23,0,-5,-3.648396,0,0,1,47,2,3,1,2,2,2019,1,2,9,0,23,23,15,1,0,1,0,11.742659,11.742659,0,0,0,0,0,0,0,42,1,1,0,0,0,41.055565,3,54.200001,57.490002,51.939999,55.880001,6,1,1,0,0,5,4,1,447.66666,871255.25,0,0,3929.3765 -507,614,1106,-9,1105,1107,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,447.66666,871255.25,0,0,3929.3765 -507,614,1107,1105,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.2132797,8.5650063,0,2,0,-9,23,0,5,34.650021,0,0,0,42,2,4,1,2,2,2019,1,1,9,1,44,43,15,1,0,1,0,11.089542,11.089542,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.314823,3,51.939999,55.880001,54.200001,57.490002,5,1,1,0,0,5,4,1,447.66666,871255.25,0,0,3929.3765 -508,615,1108,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1049.5792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,1,8,1,0,258,63483.465,0,0,2357.613 -509,616,1109,1110,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,3,8.6973772,8.6332979,0,1,0,-9,26,0,1,-11.516289,0,0,0,47,3,2,1,3,3,2019,1,1,9,0,37,47,15,1,0,1,0,17.944725,17.944725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,56.57,40.5,6,1,1,0,0,6,5,1,2078,225571.42,0,0,2768.1111 -509,616,1110,1109,-9,-9,1,1,0,47,1,0,0,0,3,-9,2,1,0,0,2,7.9724312,7.8848166,0,1,0,-9,26,0,-1,32.049538,0,0,0,48,3,3,1,3,3,2019,1,2,11,0,50,38,15,1,0,1,0,7.2194867,7.2194867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,40.5,58.32,50.220001,5,1,1,0,0,6,5,1,2078,225571.42,0,0,2768.1111 -509,617,1111,-9,1110,1109,3,1,1,24,2,0,0,0,2,-9,7,2,0,0,3,7.7139139,7.8966856,0,3,0,0,0,-9,0,-1088.2031,1,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,37,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,6,3,1,684,-153531.03,0,0,1915.0112 -509,618,1112,-9,1110,1109,4,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.7370734,7.628252,0,3,0,0,0,-9,0,-1030.7185,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,42,15,1,0,-9,1,6.5458531,6.5458531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.259998,-9,-9,6,1,1,0,0,6,3,1,2086,15241.924,0,0,1218.2717 -510,619,1113,1114,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,1,5,9.0270805,9.1339922,7.8707399,1,0,-9,48,0,5,-27.5637,0,0,0,63,3,4,3,3,3,2019,2,2,6,0,55,55,15,1,0,3,0,24.121281,24.121281,0,0,0,0,0,0,0,0,1,1,0,0,7.9733224,0,0,59.43,58.049999,60.119999,54.799999,7,1,1,0,0,12,5,1,1140,1749876.5,0,0,6655.583 -510,619,1114,1113,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,48,0,-5,-28.98653,0,0,0,68,2,5,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,59.43,58.049999,7,1,1,0,0,12,5,1,1140,1749876.5,0,0,6655.583 -511,620,1115,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-899.20435,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.689999,21.98,-9,-9,6,1,1,0,0,13,1,0,1640,-137424.11,0,0,2400.616 -512,621,1116,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-997.96832,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.540001,26.35,-9,-9,4,1,1,0,0,12,1,0,145,166009.67,0,0,1086.7595 -512,622,1117,-9,1116,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1048.0011,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.02,60.700001,-9,-9,7,1,1,0,0,12,1,0,1663,190185.09,0,0,-522.2746 -513,623,1118,1119,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,6.1048083,5.9479918,0,1,0,-9,8,0,-4,49.542278,0,0,0,55,2,2,1,-9,2,2019,1,1,7,0,2,7,15,1,0,1,0,28.115482,28.115482,0,0,0,0,0,0,0,7,0,0,0,1.1334608,0,4.0141001,3,55.189999,54.259998,21.77,33.5,7,1,1,0,0,7,4,1,416,618478.38,0,0,1836.0007 -513,623,1119,1118,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,8.3761024,8.4048872,0,1,0,-9,8,0,4,37.250015,0,0,0,51,2,4,1,-9,-9,2019,1,2,31,12,38,37,15,1,1,1,0,15.475628,15.475628,0,0,0,0,0,0,0,0,0,0,0,3.4637568,0,0,0,21.77,33.5,55.189999,54.259998,3,1,1,0,0,7,4,1,416,618478.38,0,0,1836.0007 -513,624,1120,-9,1118,1119,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,8.1025429,7.9691701,0,3,0,0,0,-9,0,-805.02423,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,49,15,1,0,-9,1,8.067831,8.067831,0,0,0,0,0,0,0,0,0,0,0,1.8654704,0,0,0,50.720001,48.029999,-9,-9,6,1,1,0,0,7,4,1,1639,-83108.133,0,0,295.51572 -514,625,1121,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,3,0,4.9384089,5.2737722,3,0,0,0,-9,0,-1102.3035,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3121433,0,0,64.57,36.450001,-9,-9,6,1,1,0,0,13,2,0,1189,99451.211,0,0,1155.9066 -515,626,1122,1123,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,4,6.6026559,6.3623705,0,1,0,-9,5,0,-4,-112.18695,0,0,0,63,2,3,3,3,3,2019,2,1,11,0,16,15,15,1,0,4,0,4.7900424,4.7900424,0,0,0,0,0,0,0,2,0,0,0,0,0,4.1241713,3,41.43,56.369999,47.549999,47.029999,6,1,1,0,0,13,3,1,718.5,558472.75,0,0,2567.1221 -515,626,1123,1122,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,8.1140223,8.0118256,1,0,-9,5,0,4,-105.1812,0,0,0,59,3,4,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4015055,7.798142,0,0,47.549999,47.029999,41.43,56.369999,6,1,1,0,0,13,3,1,718.5,558472.75,0,0,2567.1221 -516,627,1124,1126,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,7.3294621,7.7196603,0,2,0,-9,25,0,-1,97.642464,0,0,0,50,3,4,1,2,2,2019,1,2,10,0,21,21,15,1,0,1,0,12.367,12.367,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.77392,3,48.279999,60.18,57.16,56.150002,6,1,1,0,0,2,4,1,809,1429369.6,0,0,3415.2161 -516,627,1125,-9,1124,1126,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.9165,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,809,1429369.6,0,0,3415.2161 -516,627,1126,1124,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,0,4,8.9110241,9.081254,0,2,0,-9,25,0,1,122.13718,0,0,0,49,2,4,1,3,2,2019,1,1,9,0,56,44,15,1,0,1,0,13.12139,13.12139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.279999,60.18,5,1,1,0,0,2,4,1,809,1429369.6,0,0,3415.2161 -516,628,1127,-9,1124,1126,3,1,1,18,2,0,1,0,2,-9,2,1,0,0,5,6.2742667,6.7017579,0,3,0,0,0,-9,0,-1062.0111,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,18,0,15,1,0,-9,1,5.5800958,5.5800958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,2,2,1,592,-2052.8433,0,0,-443.94678 -517,629,1128,1129,-9,-9,1,1,0,73,1,0,0,0,3,-9,2,1,0,0,4,6.7661839,6.6759338,4.0603023,1,0,-9,54,0,-2,1.6925962,0,0,0,75,2,4,1,3,3,2019,1,2,6,0,8,10,15,1,0,1,0,12.629807,12.629807,0,0,0,0,0,0,0,0,1,1,0,3.7180417,3.9815824,0,0,51.240002,58.84,55.189999,54.259998,7,1,1,0,0,6,3,1,454,210743.92,0,0,2609.207 -517,629,1129,1128,-9,-9,2,1,1,75,1,0,0,0,2,-9,2,1,0,0,4,6.6617179,7.4215875,6.4153633,1,0,-9,54,0,2,-27.451982,0,0,0,73,3,4,1,-9,-9,2019,1,1,8,0,30,30,15,1,0,1,0,3.7210588,3.7210588,1,0,0,0,0,0,0,0,1,1,0,5.9362206,6.5403018,0,0,55.189999,54.259998,51.240002,58.84,7,1,1,0,0,6,3,1,454,210743.92,0,0,2609.207 -518,630,1130,-9,-9,1131,1,1,0,42,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1058.4381,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,28,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.67,27.18,-9,-9,3,1,1,0,0,11,1,1,893,-46075.219,0,0,978.09253 -518,631,1131,-9,-9,-9,2,1,1,73,3,0,0,0,2,-9,4,3,0,0,5,0,6.1601038,5.98664,3,0,0,0,-9,0,-935.16516,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8208461,6.1473761,114.8811,3,40.029999,62.02,-9,-9,6,1,1,0,0,11,2,1,713,148678.48,0,0,868.93787 -519,632,1132,1133,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,8.002409,8.278862,7.0139194,1,0,-9,44,0,0,-41.680367,0,0,0,66,2,3,1,3,2,2019,3,2,10,0,15,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2391734,6.2879434,0,3,55.27,44.810001,54.369999,54.799999,6,1,1,0,1,9,4,0,644,1996634,0,0,4178.7974 -519,632,1133,1132,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,0,3,7.435462,7.8289061,7.0826278,1,0,-9,45,0,0,30.047537,0,0,0,66,1,3,3,3,2,2019,2,1,13,1,12,13,15,1,0,4,0,11.667747,11.667747,0,0,0,0,0,0,0,2,1,1,0,5.8587818,6.6186781,.88012767,3,54.369999,54.799999,55.27,44.810001,6,1,1,0,0,9,4,0,644,1996634,0,0,4178.7974 -520,633,1134,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1075.7708,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.84,58.009998,-9,-9,5,1,1,0,0,8,1,0,286,86387.461,0,0,0 -520,634,1135,-9,1134,-9,2,1,0,19,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-959.55408,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,8,1,0,853,97537.836,0,0,717.09839 -521,635,1136,1137,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,0,4,0,7.5402474,7.8850617,1,0,-9,36,0,1,61.303257,0,0,0,56,1,4,1,1,1,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.5368996,7.7543664,8.3827467,3,57.16,56.150002,52,53,6,1,1,0,0,10,3,1,290.5,989115.31,0,0,4479.3135 -521,635,1137,1136,-9,-9,2,1,0,56,1,0,0,0,1,-9,1,1,0,0,4,6.9308987,7.2424283,0,1,0,-9,6,0,-1,-113.31282,0,0,0,57,2,4,3,-9,-9,2019,2,1,10,1,10,10,15,1,0,4,0,11.818761,11.818761,0,0,0,0,0,0,0,0,0,0,0,7.4846516,0,0,0,52,53,57.16,56.150002,6,1,1,0,0,10,3,1,290.5,989115.31,0,0,4479.3135 -522,636,1138,-9,1140,1141,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.8673,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,1,628,80834.602,0,0,1348.0399 -522,636,1139,-9,1140,1141,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.16077,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,2,1,628,80834.602,0,0,1348.0399 -522,636,1140,1141,-9,-9,1,1,0,45,1,0,3,0,2,-9,2,1,0,0,2,7.2680135,7.1279669,0,2,0,-9,10,0,12,75.130692,0,0,0,33,2,4,1,2,-9,2019,1,2,16,3,32,0,15,1,0,1,0,4.3590074,4.3590074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.34,41.240002,51,57,4,1,1,0,0,9,2,1,628,80834.602,0,0,1348.0399 -522,636,1141,1140,-9,-9,2,1,1,33,1,0,3,0,2,-9,1,1,0,0,4,7.1387925,7.2931633,0,2,0,-9,10,0,-12,23.116419,0,0,0,45,2,2,1,3,2,2019,1,1,10,1,60,58,15,1,0,1,0,2.4423673,2.4423673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,49.34,41.240002,5,1,1,0,0,9,2,1,628,80834.602,0,0,1348.0399 -523,637,1142,1144,-9,-9,1,1,1,44,1,2,3,0,2,-9,2,1,0,0,4,8.7423925,8.6897306,0,2,0,-9,5,0,6,31.512131,0,0,0,38,1,4,1,2,1,2019,1,2,12,0,40,40,15,1,0,1,0,20.738214,20.738214,0,0,0,0,0,0,0,0,1,1,0,7.8077435,0,0,0,48.869999,58.549999,54.200001,57.490002,5,1,1,0,0,12,4,1,613.40002,308624.88,0,0,2958.4272 -523,637,1143,-9,1144,1142,5,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-991.65131,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,4,1,613.40002,308624.88,0,0,2958.4272 -523,637,1144,1142,-9,-9,2,1,0,38,1,2,3,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,5,0,-6,-36.844017,0,0,1,44,2,4,1,-9,-9,2019,1,1,9,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,12,4,1,613.40002,308624.88,0,0,2958.4272 -523,637,1145,-9,1144,1142,4,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1168.5857,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,4,1,613.40002,308624.88,0,0,2958.4272 -523,637,1146,-9,1144,1142,3,1,1,3,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.74274,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,613.40002,308624.88,0,0,2958.4272 -524,638,1147,1148,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,8.5142374,8.4999447,0,1,0,-9,5,0,3,28.724321,0,0,0,62,2,3,3,-9,-9,2019,2,1,9,0,35,40,15,1,0,3,0,13.383294,13.383294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.299999,38.959999,48.68,51.82,6,1,1,0,0,2,4,1,702,179100.06,0,0,1873.9397 -524,638,1148,1147,-9,-9,1,1,0,62,1,0,0,0,2,-9,97,3,0,0,3,0,0,0,1,0,-9,29,0,-3,-109.38739,0,0,0,65,2,3,1,3,3,2019,3,2,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.5276523,0,0,3,48.68,51.82,56.299999,38.959999,6,1,1,0,0,2,4,1,702,179100.06,0,0,1873.9397 -524,639,1149,-9,1148,1147,3,1,1,30,3,0,0,0,1,-9,2,1,0,0,3,7.9442935,7.881084,0,3,0,0,0,-9,0,-1147.4283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,38,0,15,1,0,-9,1,8.2055378,8.2055378,0,0,0,0,0,0,0,0,0,0,0,2.687326,0,0,0,22.65,64.050003,-9,-9,4,1,1,0,0,2,4,1,1805,-87625.094,0,0,183.62151 -525,640,1150,1153,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,6.5185466,6.4422274,0,2,0,-9,19,0,-3,51.179508,0,0,0,51,1,5,1,2,2,2019,1,2,19,7,15,0,15,1,1,1,0,5.8977809,5.8977809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.790001,58.34,54.099998,59.110001,4,1,1,0,0,2,5,1,1024.75,1501661.3,0,0,4349.7017 -525,640,1151,-9,1150,1153,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-968.57184,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,2,5,1,1024.75,1501661.3,0,0,4349.7017 -525,640,1152,-9,1150,1153,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.9492,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,1024.75,1501661.3,0,0,4349.7017 -525,640,1153,1150,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,5,9.5004854,9.5183506,0,2,0,-9,19,0,3,-92.754639,0,0,0,48,2,3,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,32.547028,32.547028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,34.790001,58.34,6,1,1,0,0,2,5,1,1024.75,1501661.3,0,0,4349.7017 -526,641,1154,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,5,8.5048399,8.6499939,0,3,0,0,0,-9,0,-931.06421,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,47,43,15,1,0,-9,0,13.57858,13.57858,0,0,0,0,0,0,0,2,1,1,0,0,0,6.6841774,3,54.630001,58.830002,-9,-9,6,1,1,0,0,7,5,0,312,239829.78,0,0,1911.819 -527,642,1155,-9,-9,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,8.0362844,7.9662385,0,3,0,0,0,-9,0,-1083.2993,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,38,70,15,1,0,-9,1,8.0495567,8.0495567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,56.66,-9,-9,5,2,3,0,0,6,3,0,1658,-220405.22,0,0,296.21817 -527,643,1156,-9,-9,-9,4,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,8.3621998,8.3385925,0,3,0,0,0,-9,0,-1119.3712,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,40,0,15,1,0,-9,1,10.451196,10.451196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,2,3,0,0,6,4,0,835,12796.912,0,0,1117.6824 -528,644,1157,1158,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,0,7.3482456,7.3322616,1,0,-9,38,0,-1,-75.86937,0,0,0,61,1,4,3,2,1,2019,4,2,4,0,0,29,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.4879351,7.6731815,0,3,53.439999,55.060001,60.119999,54.799999,6,1,1,0,0,12,4,1,175,1865734,0,0,1984.4583 -528,644,1158,1157,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,0,4,5.836925,8.0244265,8.2972403,1,0,-9,38,0,1,84.22216,-9,0,0,60,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.2189908,7.8575211,0,3,60.119999,54.799999,53.439999,55.060001,6,1,1,0,0,12,4,1,175,1865734,0,0,1984.4583 -529,645,1159,1163,-9,-9,2,1,1,40,1,1,3,0,1,-9,2,1,0,0,4,8.2129774,8.1643705,0,2,0,-9,15,0,1,-176.85034,0,0,0,39,1,4,1,-9,-9,2019,1,1,9,1,51,55,15,1,0,1,0,6.0684652,6.0684652,0,0,0,0,0,0,0,2,1,1,0,.86870062,0,6.0677247,3,51,56,55.029999,41.950001,6,2,3,0,0,8,3,1,488.79999,119537.48,0,0,3077.2183 -529,645,1160,-9,1163,1159,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.39758,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,3,1,488.79999,119537.48,0,0,3077.2183 -529,645,1161,-9,1163,1159,3,1,0,12,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1009.877,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,8,3,1,488.79999,119537.48,0,0,3077.2183 -529,645,1162,-9,1163,1159,4,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.937,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,488.79999,119537.48,0,0,3077.2183 -529,645,1163,1159,-9,-9,1,1,0,39,1,1,3,0,1,-9,2,1,0,0,4,7.6190338,7.5349278,0,2,0,-9,15,0,-1,-102.42498,0,0,1,40,1,4,1,2,2,2019,1,2,8,1,38,40,15,1,0,1,0,6.2843752,6.2843752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.029999,41.950001,51,56,7,2,3,0,0,8,3,1,488.79999,119537.48,0,0,3077.2183 -530,646,1164,1165,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,7.9931464,8.1575184,0,1,0,-9,11,0,2,-37.680397,0,0,0,57,3,3,1,3,3,2019,1,2,17,5,39,39,15,1,1,1,0,8.4453239,8.4453239,0,0,0,0,0,0,0,0,0,0,0,2.2878568,0,0,0,48.18,44.490002,58.32,50.220001,4,1,1,0,0,6,4,1,583.5,400165.72,0,0,3210.5571 -530,646,1165,1164,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,8.0694952,8.4269466,0,1,0,-9,11,0,-2,-.97962093,0,0,0,59,2,2,1,3,3,2019,1,1,9,0,25,25,15,1,0,1,0,15.663191,15.663191,0,0,0,0,0,0,0,0,0,0,0,.015577352,0,0,0,58.32,50.220001,48.18,44.490002,6,1,1,0,0,6,4,1,583.5,400165.72,0,0,3210.5571 -531,647,1166,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-925.52026,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0303695,0,0,0,66.949997,28.35,-9,-9,6,1,1,0,0,9,1,1,580,0,0,0,106.52431 -532,648,1167,1169,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,4,7.9714293,8.0914526,0,2,0,-9,8,0,-3,3.4141097,0,0,1,37,2,4,1,2,-9,2019,1,2,21,9,40,23,15,1,1,1,0,10.419049,10.419049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.150002,61.099998,51.240002,58.84,5,1,1,0,0,10,4,1,1221.25,280624.5,0,0,4218.376 -532,648,1168,-9,1167,1169,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-951.89825,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,4,1,1221.25,280624.5,0,0,4218.376 -532,648,1169,1167,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,8.8216858,8.8758087,0,2,0,-9,8,0,3,-152.67624,0,0,0,34,1,4,1,3,3,2019,1,1,7,0,49,47,15,1,0,1,0,17.022566,17.022566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,35.150002,61.099998,6,1,1,0,0,10,4,1,1221.25,280624.5,0,0,4218.376 -532,648,1170,-9,1167,1169,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-985.54376,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,10,4,1,1221.25,280624.5,0,0,4218.376 -533,649,1171,1172,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,1,1,0,6.8710866,6.9159441,1,0,-9,53,0,4,-178.73666,0,0,0,69,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,13.931111,120.19366,0,0,27.671078,164.22185,0,1,1,0,9.3916807,7.0709901,0,0,53.23,7.3299999,52.419998,47.689999,7,2,3,0,0,4,3,0,1292,427588.16,0,0,8580.8789 -533,649,1172,1171,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,1,3,0,7.2865243,6.9420505,1,0,-9,53,0,-4,57.395714,0,0,0,73,1,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,6.5866704,7.2646923,72.091759,1,52.419998,47.689999,53.23,7.3299999,6,2,3,0,0,4,3,0,1292,427588.16,0,0,8580.8789 -534,650,1173,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,6.1976929,5.9745617,3,0,0,0,-9,0,-1131.7592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.9139571,0,0,1,1,0,0,6.2827649,0,0,35.790001,37.380001,-9,-9,3,1,1,0,0,4,2,0,328,140899.61,0,0,2203.8201 -535,651,1174,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,0,3,8.1694727,8.4573021,0,3,0,0,0,-9,0,-1072.3474,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,23,25,15,1,0,-9,0,20.455156,20.455156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.799999,59.5,-9,-9,6,1,1,0,0,2,4,1,669,464731.69,0,0,1619.0679 -536,652,1175,1176,-9,-9,1,1,1,78,1,0,0,0,3,-9,2,1,0,0,4,8.1462154,7.7170839,4.7683148,1,0,-9,56,0,2,45.634277,0,0,0,76,3,3,3,3,3,2019,2,2,8,0,35,35,15,1,0,4,0,9.5425329,9.5425329,0,0,0,0,0,0,0,0,1,1,0,3.8631558,4.6345239,0,0,60.119999,54.799999,52,45,6,1,1,0,0,9,3,0,234.5,642553.38,0,0,2377.8105 -536,652,1176,1175,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-2,52.317673,0,0,0,78,3,4,1,3,3,2019,3,1,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,60.119999,54.799999,6,1,1,0,0,9,3,0,234.5,642553.38,0,0,2377.8105 -537,653,1177,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,3.8865199,4.0212784,3,0,0,0,-9,0,-1044.3071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4700403,4.366262,0,0,54.849998,47.860001,-9,-9,6,1,1,0,0,7,2,1,733,251154.86,0,0,562.77838 -538,654,1178,1179,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.3056097,8.6228714,0,1,0,-9,35,0,-4,-44.236958,0,0,0,58,2,2,3,2,2,2019,2,1,6,0,36,36,15,1,0,4,0,15.45089,15.45089,0,0,0,0,0,0,0,14.5,0,0,0,5.0346794,0,2.4859591,3,46.099998,54.450001,62.509998,39.169998,2,1,1,0,0,13,5,1,843,1440526.8,0,0,3720.814 -538,654,1179,1178,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,0,2,0,7.8791451,8.1597719,1,0,-9,35,0,4,-5.5091515,0,0,0,54,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.709157,8.2220955,16.772488,3,62.509998,39.169998,46.099998,54.450001,7,1,1,0,0,13,5,1,843,1440526.8,0,0,3720.814 -539,655,1180,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-941.38501,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0295572,0,0,0,37.919998,61.060001,-9,-9,3,1,1,0,0,12,1,1,1241,81882.383,0,0,1531.8282 -540,656,1181,1182,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,-6,0,0,0,0,80,2,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.811741,1,55.509998,51.57,54,46,6,1,1,0,0,5,1,1,566,108151.41,0,0,1874.9282 -540,656,1182,1181,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,6,0,0,0,0,74,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.782814,0,0,0,54,46,55.509998,51.57,6,1,1,0,0,5,1,1,566,108151.41,0,0,1874.9282 -540,657,1183,-9,1181,1182,3,1,0,48,2,0,0,0,2,-9,2,1,0,0,4,7.773911,8.0874023,0,3,0,0,0,-9,0,-973.23218,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,0,15,1,0,-9,1,10.088271,10.088271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,5,1,1,0,0,5,4,1,252,124391.84,0,0,731.40753 -541,658,1184,1185,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,3,8.6739779,8.4731855,0,2,0,-9,24,0,-1,-100.89597,0,0,0,47,2,4,1,2,2,2019,1,2,8,0,55,53,15,1,0,1,0,12.04537,12.04537,0,0,0,0,0,0,0,0,1,1,0,2.6108098,0,0,0,59.459999,46.990002,46.419998,59.639999,6,1,1,0,0,6,4,1,364.5,42115.141,0,0,3701.0107 -541,658,1185,1184,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.4555578,8.1211386,0,2,0,-9,22,0,1,-74.677101,0,0,0,46,1,3,1,2,2,2019,1,1,8,0,39,39,15,1,0,1,0,11.976157,11.976157,0,0,0,0,0,0,0,0,1,1,0,2.1890178,0,0,0,46.419998,59.639999,59.459999,46.990002,6,1,1,0,0,6,4,1,364.5,42115.141,0,0,3701.0107 -542,659,1186,1187,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,2,0,6.8614984,6.512836,1,0,-9,54,0,1,-55.402798,0,0,0,81,3,3,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,6.4445934,3.713773,0,0,0,7,1,1,0,0,6.4115062,16.862637,1,44.439999,35.139999,51,46,5,1,1,0,0,5,2,1,314,15653.25,0,0,902.41217 -542,659,1187,1186,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-1,-147.48302,0,0,0,82,3,2,3,3,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,46,44.439999,35.139999,5,1,1,0,0,5,2,1,314,15653.25,0,0,902.41217 -543,660,1188,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1061.535,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,26,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.657209,3,27.379999,38.970001,-9,-9,3,1,1,0,0,11,1,0,676.5,132863.64,0,0,1642.2766 -543,660,1189,-9,1188,-9,2,1,0,17,2,0,2,0,2,-9,9,3,0,0,4,0,0,0,4,0,0,0,-9,0,-951.70581,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,11,1,0,676.5,132863.64,0,0,1642.2766 -544,661,1190,1191,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,3,0,8.07096,7.7231293,1,0,-9,10,0,2,17.91851,0,0,0,78,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6005082,7.9828997,0,0,63.549999,39.700001,49.93,36.580002,6,1,1,0,0,11,4,0,379.5,1205389,0,0,3760.3628 -544,661,1191,1190,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.9867396,7.8496957,1,0,-9,10,0,-2,24.714886,0,0,0,80,1,3,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,3.7636075,0,0,0,0,0,1,1,0,5.3561554,7.5704942,0,0,49.93,36.580002,63.549999,39.700001,6,1,1,0,0,11,4,0,379.5,1205389,0,0,3760.3628 -545,662,1192,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,4,0,8.1318531,8.3018055,3,0,0,0,-9,0,-863.92328,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7903123,8.6818609,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,9,4,1,583,1408953.5,0,0,2532.7749 -546,663,1193,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,5,0,6.7171392,6.7340913,3,0,0,0,-9,0,-1000.6989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4298291,6.9914331,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,1,2,1,593,487931.34,0,0,1804.5361 -547,664,1194,-9,1195,-9,2,1,0,21,2,0,1,0,2,-9,7,2,0,0,4,6.9700527,6.8922524,0,3,0,0,0,-9,0,-941.32318,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,25,44,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.200001,58.700001,-9,-9,6,1,1,0,0,12,2,1,170,-73524.617,0,0,1792.4858 -547,665,1195,1197,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,0,5,8.4550838,8.24331,6.6435156,2,0,-9,2,0,-2,37.279118,0,0,0,56,2,4,1,2,2,2019,1,4,9,0,38,36,15,1,0,1,0,10.661695,10.661695,0,0,0,0,0,0,0,14.5,1,1,0,6.9216523,0,21.983313,3,54.779999,53.299999,49.860001,55.310001,6,1,1,0,0,12,5,1,569.66669,613597.19,0,0,5553.9863 -547,665,1196,-9,1195,-9,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.70526,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,569.66669,613597.19,0,0,5553.9863 -547,665,1197,1195,-9,-9,4,1,1,56,1,0,1,0,2,-9,2,1,0,0,4,8.7252626,9.1627522,0,2,0,-9,2,0,2,101.52161,0,0,0,54,2,5,1,-9,-9,2019,1,1,11,0,40,37,15,1,0,1,0,18.572254,18.572254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,54.779999,53.299999,6,1,1,0,0,12,5,1,569.66669,613597.19,0,0,5553.9863 -548,666,1198,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,1,1,0,0,4,7.4568672,8.5329685,8.086669,3,0,0,0,-9,0,-1102.2545,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,50,70,15,1,0,-9,0,4.2515283,4.2515283,0,0,0,0,0,0,0,0,0,0,0,8.0708342,8.2020359,0,0,56.139999,37.82,-9,-9,6,1,1,0,0,1,4,1,1778,453518.09,0,0,2969.6699 -549,667,1199,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,0,2,8.3434467,8.3913784,6.4887247,3,0,-9,0,-9,0,-1112.4767,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,38,0,15,1,0,-9,0,11.695258,11.695258,0,0,0,0,0,0,0,0,0,0,0,3.1652732,6.306591,0,0,48.939999,23.76,-9,-9,3,1,1,0,0,8,4,1,295,871810.5,0,0,1526.9299 -550,668,1200,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,2,1,0,0,3,6.9174438,7.0288301,0,3,0,0,0,-9,0,-1010.0284,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,28,26,15,1,0,-9,0,4.3670454,4.3670454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,7,1,1,0,0,2,2,1,271,-58420.809,0,0,912.61127 -551,669,1201,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,0,2,8.7495604,8.6763716,0,3,0,0,0,-9,0,-1014.4465,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,40,55,15,1,1,-9,0,16.582848,16.582848,0,0,0,0,0,0,0,0,0,0,0,3.1424289,0,0,0,37.25,41.189999,-9,-9,3,1,1,0,0,11,5,1,719,278435.53,0,0,2667.3254 -551,670,1202,-9,1201,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,8.2091455,8.3803873,0,3,0,0,0,-9,0,-1009.7024,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,41,40,15,1,1,-9,1,8.8869991,8.8869991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.049999,55.689999,-9,-9,3,1,1,0,0,11,4,1,47,-41270.434,0,0,1601.5931 -552,671,1203,1204,-9,1205,2,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,9.1628647,9.2401743,7.7453074,1,0,-9,40,0,-4,49.182331,0,0,0,63,1,5,1,1,1,2019,1,1,8,0,55,55,15,1,0,1,0,26.83157,26.83157,0,0,0,0,0,0,0,2,1,1,0,0,9.0891895,0,3,55.939999,47.09,58.200001,54.529999,2,1,1,0,0,5,5,1,699,3727752,0,0,5340.0391 -552,671,1204,1203,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,5,8.7250671,9.1083641,7.7722073,1,0,-9,40,0,4,-35.332245,0,0,0,59,1,4,1,2,2,2019,1,2,6,0,50,45,15,1,0,1,0,19.620794,19.620794,0,0,0,0,0,0,0,7,1,1,0,0,8.1594219,8.8289871,3,58.200001,54.529999,55.939999,47.09,6,1,1,0,0,5,5,1,699,3727752,0,0,5340.0391 -552,672,1205,-9,-9,-9,3,1,1,87,3,0,0,0,1,-9,4,3,0,1,3,0,7.8573942,7.9448223,3,0,0,0,-9,0,-1025.3234,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3661389,7.8935375,0,0,47.07,35.07,-9,-9,5,1,1,0,0,5,4,1,1426,852861.31,0,0,1920.2205 -553,673,1206,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,8.2628269,8.1547375,0,3,0,0,0,-9,0,-981.67981,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,39,40,15,1,0,-9,0,11.023929,11.023929,0,0,0,0,0,0,0,0,0,0,0,2.394599,0,0,0,44.990002,31.040001,-9,-9,6,1,1,0,0,5,4,1,237,147718.92,0,0,614.80328 -553,674,1207,-9,1206,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,0,3,7.5914421,7.903182,0,3,0,0,0,-9,0,-834.73962,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,36,22,15,1,0,-9,1,6.0204492,6.0204492,0,0,0,0,0,0,0,0,0,0,0,3.1109245,0,0,0,34.509998,57.34,-9,-9,4,1,1,0,1,5,3,1,488,118321.91,0,0,656.17902 -554,675,1208,1209,-9,-9,2,1,1,47,1,0,2,0,3,-9,1,1,0,0,5,7.9715743,8.438899,0,2,0,-9,16,0,-6,53.954708,0,0,0,53,2,4,1,3,3,2019,1,1,6,0,50,60,15,1,0,1,0,8.2255211,8.2255211,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.427544,3,62.389999,56.709999,54.790001,55.860001,6,1,1,0,1,2,3,1,712.75,311972.56,0,0,3045.9268 -554,675,1209,1208,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,0,4,6.1788869,5.9965429,0,2,0,-9,16,0,6,-49.358177,0,0,0,47,3,5,1,2,3,2019,1,2,6,0,9,9,15,1,0,1,0,5.5047336,5.5047336,0,0,0,0,0,0,0,7,1,1,0,0,0,9.4527149,3,54.790001,55.860001,62.389999,56.709999,4,1,1,0,1,2,3,1,712.75,311972.56,0,0,3045.9268 -554,675,1210,-9,1209,1208,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.161,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,3,1,712.75,311972.56,0,0,3045.9268 -554,675,1211,-9,1209,1208,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-946.00464,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,3,1,712.75,311972.56,0,0,3045.9268 -555,676,1212,1213,-9,-9,2,1,0,29,1,0,0,0,1,-9,3,3,0,0,5,0,0,0,1,0,-9,1,-9,-7,-15.958987,-9,1,1,36,1,5,1,-9,-9,2019,3,1,0,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.959999,56.860001,56.720001,58.130001,7,3,4,1,0,6,4,0,1401,64210.996,0,0,1796.0204 -555,676,1213,1212,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,0,5,8.5143509,8.574152,0,1,0,1,1,-9,7,-55.750511,0,0,0,29,1,5,3,3,2,2019,2,2,2,1,37,37,15,1,0,3,0,16.996531,16.996531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.720001,58.130001,56.959999,56.860001,1,3,4,0,1,6,4,0,1401,64210.996,0,0,1796.0204 -556,677,1214,-9,1217,1216,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.87921,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,4,1,576.25,605176,0,0,3096.501 -556,677,1215,-9,1217,1216,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.03741,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,4,1,576.25,605176,0,0,3096.501 -556,677,1216,1217,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,0,3,8.9106569,8.6422262,0,2,0,-9,19,0,8,-55.821461,0,0,0,41,1,4,1,2,2,2019,1,2,24,12,40,45,15,1,1,1,0,24.593231,24.593231,0,0,0,0,0,0,0,0,0,0,0,2.3462477,0,0,0,43.59,59.639999,48.869999,58.549999,3,2,3,0,0,8,4,1,576.25,605176,0,0,3096.501 -556,677,1217,1216,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,7.1315799,7.3104248,0,2,0,-9,20,0,-8,184.81764,0,0,1,49,1,3,1,2,2,2019,1,1,6,0,15,22,15,1,0,1,0,11.719098,11.719098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,43.59,59.639999,6,2,3,0,0,8,4,1,576.25,605176,0,0,3096.501 -557,678,1218,1221,-9,-9,1,1,0,42,1,0,2,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,15,0,3,-56.725857,0,0,1,39,2,3,1,3,3,2019,3,2,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.049999,35.48,48.740002,50.459999,4,1,1,0,1,9,3,1,856.75,2933.3281,0,0,1783.1901 -557,678,1219,-9,1218,1221,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.1486,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,856.75,2933.3281,0,0,1783.1901 -557,678,1220,-9,1218,1221,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.6423,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,856.75,2933.3281,0,0,1783.1901 -557,678,1221,1218,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,3,8.5394411,8.5569239,0,2,0,-9,15,0,-3,102.71331,0,0,0,42,1,2,3,1,1,2019,2,1,11,0,39,43,15,1,0,3,0,18.601582,18.601582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.740002,50.459999,35.049999,35.48,5,1,1,0,0,9,3,1,856.75,2933.3281,0,0,1783.1901 -558,679,1222,1223,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,4,7.043128,7.0315351,0,1,0,-9,17,0,-1,-133.88614,0,0,0,63,2,4,1,3,3,2019,1,1,6,0,47,21,15,1,0,1,0,2.7565224,2.7565224,0,0,0,0,0,0,0,0,1,1,0,3.3213403,0,0,0,62.110001,48.330002,51.830002,57.200001,6,4,5,0,0,8,3,1,572,1466559.3,0,0,1314.8394 -558,679,1223,1222,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.2892275,7.5221272,0,1,0,-9,17,0,1,-87.495468,0,0,0,62,1,4,1,-9,-9,2019,1,2,8,0,11,9,15,1,0,1,0,12.369533,12.369533,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,62.110001,48.330002,6,1,1,0,0,8,3,1,572,1466559.3,0,0,1314.8394 -558,680,1224,-9,1223,1222,3,1,0,20,2,0,0,0,2,1,2,1,0,1,3,6.1751981,6.0179524,0,3,0,0,0,-9,0,-957.39954,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,1,47,0,15,1,0,-9,1,.65768236,.65768236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,-9,-9,6,1,1,0,0,8,2,1,2817,-106876.79,0,0,211.28085 -559,681,1225,-9,-9,-9,1,1,0,41,3,0,3,0,2,-9,2,1,0,1,3,7.0919113,7.3966928,0,4,0,0,0,-9,0,-963.29468,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,16,12,15,1,0,-9,0,9.6803188,9.6803188,0,0,0,0,0,0,0,110,1,1,0,0,0,114.69604,3,43.009998,42.509998,-9,-9,3,1,1,0,0,13,2,0,990.5,3944.991,0,0,2283.5615 -559,681,1226,-9,1225,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1083.1039,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,2,0,990.5,3944.991,0,0,2283.5615 -560,682,1227,1228,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,0,4,8.409318,8.4261618,0,2,0,-9,6,0,7,-81.760361,0,0,0,25,2,5,1,-9,-9,2019,1,1,5,0,41,37,15,1,0,1,0,11.242208,11.242208,0,0,0,0,0,0,0,0,0,0,0,2.796994,0,0,0,57.16,56.150002,49.759998,56.93,7,1,1,0,0,7,4,1,2694,-26872.338,0,0,1673.4657 -560,682,1228,1227,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,0,5,6.4365373,6.1052241,0,2,0,-9,6,0,-7,-70.387825,0,1,1,32,2,4,1,2,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.759998,56.93,57.16,56.150002,7,1,1,0,0,7,4,1,2694,-26872.338,0,0,1673.4657 -560,682,1229,-9,1228,1227,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-993.6391,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,2694,-26872.338,0,0,1673.4657 -561,683,1230,-9,1232,1231,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.8915,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,4,3,1,354,-14761.581,0,0,830.82776 -561,683,1231,1232,-9,-9,2,1,1,46,1,1,1,0,2,-9,2,1,0,0,4,8.3119469,8.2757845,0,2,0,-9,11,0,12,-116.64734,0,0,0,34,2,3,1,-9,-9,2019,1,1,13,1,80,41,15,1,0,1,0,4.8455563,4.8455563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.540001,52.23,44.82,37.299999,3,1,1,0,0,4,3,1,354,-14761.581,0,0,830.82776 -561,683,1232,1231,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,11,0,-12,72.143723,0,0,1,46,2,4,1,2,-9,2019,1,2,12,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8964124,0,0,0,44.82,37.299999,39.540001,52.23,5,1,1,0,0,4,3,1,354,-14761.581,0,0,830.82776 -562,684,1233,1236,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,9.2007341,9.4913111,0,2,0,-9,8,0,2,30.221733,0,0,0,45,1,1,1,-9,-9,2019,1,4,11,0,36,40,15,1,0,1,0,36.251762,36.251762,0,0,0,0,0,0,0,2,0,0,0,1.304643,0,15.354859,1,51.98,54.529999,44.740002,15.29,5,1,1,0,0,4,5,1,916.75,615694.81,0,0,5330.9082 -562,684,1234,-9,1236,1233,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.20319,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,5,1,916.75,615694.81,0,0,5330.9082 -562,684,1235,-9,1236,1233,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-965.65338,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.0893731,0,7.3241839,3,39.07,60.950001,-9,-9,6,1,1,0,0,4,5,1,916.75,615694.81,0,0,5330.9082 -562,684,1236,1233,-9,-9,4,1,0,45,1,0,2,0,1,-9,2,1,0,0,1,7.9499145,7.871459,0,2,0,-9,24,0,-2,-.19732417,0,0,0,47,1,3,1,2,2,2019,1,1,16,4,21,30,15,1,1,1,0,15.144419,15.144419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.740002,15.29,51.98,54.529999,6,1,1,0,0,4,5,1,916.75,615694.81,0,0,5330.9082 -563,685,1237,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,2,0,6.5732536,6.7841597,3,0,0,0,-9,0,-1015.8648,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.12086031,6.7834253,0,0,67.209999,27.42,-9,-9,6,1,1,0,0,10,2,1,258,135582.3,0,0,2171.9211 -564,686,1238,1239,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,5.6603127,6.126749,1,0,-9,49,0,5,93.035439,0,0,0,67,3,2,3,3,3,2019,4,2,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5820336,5.7317996,0,0,24.75,28.18,49.919998,34.09,3,1,1,0,0,2,2,1,385,333619.56,0,0,1482.864 -564,686,1239,1238,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,2,0,5.1839995,5.1776848,1,0,-9,50,0,-5,28.082254,0,0,0,72,2,2,3,3,3,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.8052216,5.1722999,23.349421,1,49.919998,34.09,24.75,28.18,5,1,1,0,0,2,2,1,385,333619.56,0,0,1482.864 -565,687,1240,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,3,0,6.5485086,6.4450574,3,0,0,0,-9,0,-899.30859,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,9.3944263,0,0,4.2740884,0,147.7702,0,1,1,0,2.9537876,6.8599386,0,0,37.389999,24.48,-9,-9,6,1,1,0,0,12,2,1,764,27168.23,0,0,2066.7683 -566,688,1241,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1064.167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8040942,0,0,0,64.400002,36.459999,-9,-9,7,1,1,0,0,4,1,1,240,237635.69,0,0,-261.5448 -567,689,1242,-9,1243,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,5,8.903266,8.6411676,0,3,0,0,0,-9,0,-931.67065,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,46,40,15,1,0,-9,1,15.513801,15.513801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,4,5,1,2119,136152.44,0,0,2502.1028 -567,690,1243,-9,-9,-9,2,1,0,65,3,0,0,0,2,-9,4,3,0,0,2,0,6.0303245,6.5269923,3,0,0,0,-9,0,-846.05029,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4482141,0,0,52.400002,42.380001,-9,-9,4,1,1,0,0,4,2,1,295,153234.28,0,0,481.23752 -568,691,1244,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,2,1,0,0,4,6.6905122,7.8647318,7.2411232,3,0,0,0,-9,0,-1031.7106,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,8,0,15,1,0,-9,0,16.642843,16.642843,0,0,0,0,0,0,0,0,1,1,0,1.9370272,7.5110521,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,3,1,416,343807.63,0,0,2324.2388 -569,692,1245,1247,-9,-9,2,1,1,27,1,1,1,0,2,-9,1,1,0,0,2,7.6501765,7.2369628,0,2,0,-9,4,0,1,24.472019,0,1,0,26,2,3,1,-9,-9,2019,1,1,19,6,40,40,15,1,1,1,0,6.4046144,6.4046144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.42,52.209999,46.66,29.83,3,1,1,0,0,11,3,1,1142.6666,-44848.293,0,0,1789.1696 -569,692,1246,-9,1247,1245,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1156.0397,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,1,1142.6666,-44848.293,0,0,1789.1696 -569,692,1247,1245,-9,-9,1,1,0,26,1,1,1,0,2,-9,2,1,0,0,3,7.5395861,7.7119522,0,2,0,-9,4,0,-1,-52.77314,0,1,1,27,2,2,1,3,-9,2019,1,2,18,6,40,43,15,1,1,1,0,5.8059478,5.8059478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.66,29.83,25.42,52.209999,2,1,1,0,0,11,3,1,1142.6666,-44848.293,0,0,1789.1696 -570,693,1248,-9,-9,-9,1,1,0,20,2,0,0,1,2,-9,7,2,0,0,2,0,0,0,3,0,-9,0,-9,0,-931.7121,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,40.77,-9,-9,3,3,4,0,1,5,1,0,1221,0,0,0,599.72479 -571,694,1249,1250,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,2,8.5470018,8.6685915,5.9346037,1,0,-9,32,0,4,8.2833881,0,0,0,53,2,4,1,2,2,2019,1,2,11,0,38,37,15,1,0,1,0,14.249429,14.249429,0,0,0,0,0,0,0,0,1,1,0,3.7650013,6.5164223,0,0,61.279999,35.650002,51.830002,57.200001,4,1,1,0,0,4,5,1,365.5,449492.81,0,0,4963.6519 -571,694,1250,1249,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.4466648,8.5954142,0,1,0,-9,32,0,-4,29.884317,0,0,0,57,3,2,1,2,2,2019,1,1,12,0,45,39,15,1,0,1,0,14.106363,14.106363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,61.279999,35.650002,6,1,1,0,0,4,5,1,365.5,449492.81,0,0,4963.6519 -571,695,1251,-9,1250,1249,3,1,0,22,2,0,0,1,2,0,7,2,0,0,4,0,5.9884715,5.9303026,3,0,0,0,-9,0,-1052.012,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7230902,0,0,0,46.919998,60.709999,-9,-9,6,1,1,0,0,4,2,1,807,-232010.19,0,0,-17.668896 -572,696,1252,1253,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,0,4,8.7963409,8.8572197,6.4977403,1,0,-9,46,0,1,14.592963,0,0,0,64,2,3,3,3,3,2019,2,1,6,0,47,50,15,1,0,4,0,10.385043,10.385043,0,0,0,0,0,0,0,0,1,1,0,6.2992468,6.330677,0,0,58.150002,52.91,58.48,36.66,6,1,1,0,0,2,4,1,862.5,100812.27,0,0,5013.5068 -572,696,1253,1252,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-1,-5.3601861,0,0,0,65,3,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4478221,0,0,0,58.48,36.66,58.150002,52.91,7,1,1,0,0,2,4,1,862.5,100812.27,0,0,5013.5068 -573,697,1254,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1090.3672,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.869999,26.459999,-9,-9,2,1,1,0,0,9,1,0,240,399606.84,0,0,1824.8822 -574,698,1255,1256,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.3310814,8.3027887,1,0,-9,40,0,8,54.128872,0,0,0,62,1,3,1,2,2,2019,3,1,14,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3704333,8.5374889,6.7150493,3,46.389999,60.990002,47.040001,29.91,6,1,1,0,0,2,4,1,1304,1018001,0,0,3796.5396 -574,698,1256,1255,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,0,3,6.4681177,7.1900415,6.4396348,1,0,-9,40,0,-8,87.080978,0,0,0,70,1,4,3,3,2,2019,2,2,18,5,20,20,15,1,1,4,0,3.2782757,3.2782757,0,0,0,0,0,0,0,0,1,1,0,7.0895863,6.8403296,0,0,47.040001,29.91,46.389999,60.990002,3,1,1,0,0,2,4,1,1304,1018001,0,0,3796.5396 -575,699,1257,1258,-9,-9,1,1,1,42,1,0,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,8,0,0,0,0,34,2,1,3,2,3,2019,4,3,8,0,0,60,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.73,54.560001,49.419998,27.84,4,1,1,1,1,7,1,0,1648,-63974.605,0,0,669.89612 -575,699,1258,1257,-9,-9,3,1,0,34,1,0,3,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,7,0,-8,0,0,0,1,42,2,3,3,3,2,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.419998,27.84,38.73,54.560001,4,1,1,0,0,7,1,0,1648,-63974.605,0,0,669.89612 -575,699,1259,-9,1258,1257,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.2747,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,1,0,1648,-63974.605,0,0,669.89612 -575,699,1260,-9,1258,1257,6,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.9812,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,1,0,1648,-63974.605,0,0,669.89612 -575,699,1261,-9,1258,1257,4,1,1,16,2,0,3,1,2,-9,7,2,0,0,5,6.1286569,5.630897,0,2,0,0,0,-9,0,-1111.7631,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,8.7050762,3,56.959999,51,-9,-9,7,1,1,0,0,7,1,0,1648,-63974.605,0,0,669.89612 -575,700,1262,-9,1258,1257,2,1,1,22,2,0,3,0,1,-9,2,1,0,0,4,6.9254451,6.9062934,0,4,0,0,0,-9,0,-1036.6282,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,37,0,15,1,0,-9,0,3.8941791,3.8941791,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,0,285,-42265.207,0,0,445.59048 -576,701,1263,1265,-9,-9,2,1,1,42,1,1,1,0,2,-9,2,1,0,0,4,8.318675,8.6659613,0,2,0,-9,8,0,8,-4.2146688,0,0,0,34,1,4,1,2,-9,2019,1,1,6,0,35,40,15,1,0,1,0,15.986654,15.986654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,49.459999,56.91,7,1,1,0,0,4,5,1,202.66667,447427.56,0,0,3107.2532 -576,701,1264,-9,1265,1263,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.61646,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,5,1,202.66667,447427.56,0,0,3107.2532 -576,701,1265,1263,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,8.3383846,8.4347544,0,2,0,-9,8,0,-8,113.62235,0,0,1,42,2,4,1,2,2,2019,1,2,13,3,30,39,15,1,0,1,0,15.768792,15.768792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,54.790001,55.860001,6,1,1,0,0,4,5,1,202.66667,447427.56,0,0,3107.2532 -577,702,1266,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,2,1,0,0,2,7.2484169,7.6799693,6.2688155,3,0,0,0,-9,0,-1105.3058,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,16,8,15,1,0,-9,0,10.190949,10.190949,0,0,0,0,0,0,0,0,1,1,0,7.6894584,0,0,0,56.349998,29.9,-9,-9,3,1,1,0,0,2,3,1,3469,254957.14,0,0,3471.4719 -578,703,1267,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,8.1972733,8.2036991,3,0,0,0,-9,0,-1036.4205,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,8.2967882,7.3639102,3,61.43,48.880001,-9,-9,7,1,1,0,0,5,4,1,855,686514.31,0,0,2044.0898 -579,704,1268,1270,-9,-9,2,1,1,29,1,0,2,0,2,-9,2,1,0,0,4,8.20823,8.2844467,0,2,0,-9,9,0,2,-40.980095,0,1,0,27,2,4,1,2,2,2019,1,1,6,0,48,48,15,1,0,1,0,6.7863812,6.7863812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.200001,57.490002,7,1,1,0,0,4,3,0,850.25,30882.012,0,0,1603.0974 -579,704,1269,-9,1270,1268,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.11633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,850.25,30882.012,0,0,1603.0974 -579,704,1270,1268,-9,-9,1,1,0,27,1,0,2,0,2,-9,2,1,0,0,4,6.7857695,6.8066092,0,2,0,-9,9,0,-2,110.9314,0,1,1,29,2,4,1,2,2,2019,1,2,5,0,12,36,15,1,0,1,0,9.155159,9.155159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,4,3,0,850.25,30882.012,0,0,1603.0974 -579,704,1271,-9,1270,1268,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.80573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,850.25,30882.012,0,0,1603.0974 -580,705,1272,1273,-9,-9,1,1,1,43,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,2,0,22,0,0,0,0,21,2,3,3,-9,-9,2019,4,2,12,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.950001,40.360001,52.540001,52.91,3,1,1,0,1,4,1,0,467.5,149678.02,0,0,2695.2405 -580,705,1273,1272,-9,-9,2,1,0,21,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,-22,0,0,1,1,43,3,2,3,-9,-9,2019,4,1,13,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.540001,52.91,53.950001,40.360001,6,1,1,1,1,4,1,0,467.5,149678.02,0,0,2695.2405 -581,706,1274,-9,1278,1277,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.4694,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,12,4,0,559.79999,3883830.3,0,0,3911.1594 -581,706,1275,-9,1278,1277,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-858.46698,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,12,4,0,559.79999,3883830.3,0,0,3911.1594 -581,706,1276,-9,1278,1277,2,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.55212,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,0,559.79999,3883830.3,0,0,3911.1594 -581,706,1277,1278,-9,-9,5,1,1,48,1,0,3,0,2,-9,2,1,0,0,4,9.3032179,9.075326,0,2,0,-9,4,0,2,93.275681,0,0,0,46,1,5,3,-9,-9,2019,2,1,9,1,45,45,15,1,0,3,0,20.405365,20.405365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.060001,57.759998,6,1,1,0,0,12,4,0,559.79999,3883830.3,0,0,3911.1594 -581,706,1278,1277,-9,-9,1,1,0,46,1,0,3,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,4,0,-2,-31.717379,0,0,0,48,2,4,1,2,2,2019,3,5,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,52,55,7,4,5,0,0,12,4,0,559.79999,3883830.3,0,0,3911.1594 -582,707,1279,1280,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,0,4,7.6065741,7.9745412,0,1,0,-9,10,0,0,-107.57597,0,0,0,51,2,3,1,3,-9,2019,1,1,12,0,40,40,15,1,0,1,0,6.9072685,6.9072685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.84,44.040001,36.119999,51.119999,4,1,1,0,0,11,4,0,1997,1045674.5,0,0,2238.8425 -582,707,1280,1279,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.7376409,7.76683,0,1,0,-9,10,0,0,-8.221261,0,0,0,51,3,4,1,3,-9,2019,1,2,12,0,12,37,15,1,0,1,0,31.377016,31.377016,0,0,0,0,0,0,0,0,0,0,0,2.8023803,0,0,0,36.119999,51.119999,41.84,44.040001,4,1,1,0,0,11,4,0,1997,1045674.5,0,0,2238.8425 -583,708,1281,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,5.9574957,5.9579749,3,0,0,0,-9,0,-1061.3442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1328378,0,0,61.830002,44.419998,-9,-9,7,1,1,0,0,5,2,1,1110,346169.03,0,0,-442.91953 -584,709,1282,1283,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,4,8.0908003,8.6274033,0,1,0,-9,2,0,-2,0,0,1,1,31,3,1,1,-9,-9,2019,1,1,13,1,55,45,15,1,0,1,0,8.5446997,8.5446997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.77,66.82,41.049999,38.470001,4,1,1,0,0,11,5,1,341.5,-27496.414,0,0,3472.2375 -584,709,1283,1282,-9,-9,1,1,1,31,1,0,0,0,3,-9,2,1,0,0,1,8.3659191,8.3643284,0,1,0,-9,2,0,2,0,0,0,0,29,2,4,1,2,-9,2019,1,2,12,0,53,50,15,1,0,1,0,7.7372494,7.7372494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.049999,38.470001,19.77,66.82,6,1,1,0,0,11,5,1,341.5,-27496.414,0,0,3472.2375 -585,710,1284,1285,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,3,0,7.5599318,7.1668372,1,0,-9,51,0,-2,-75.789597,0,0,0,75,1,3,3,3,3,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.237452,7.3767428,0,0,45.82,46.700001,57.330002,53.459999,7,1,1,0,0,7,4,1,1159,2121998.5,0,0,4392.8955 -585,710,1285,1284,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,7.8522005,7.8985953,1,0,-9,51,0,2,-30.96517,0,0,0,73,1,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4327421,8.0136938,0,0,57.330002,53.459999,45.82,46.700001,7,1,1,0,0,7,4,1,1159,2121998.5,0,0,4392.8955 -586,711,1286,1287,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,2,9.2583828,9.2704506,0,2,0,-9,6,0,-1,-52.870377,0,0,0,52,2,4,1,-9,-9,2019,1,1,16,5,42,47,15,1,1,1,0,34.944721,34.944721,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,39.970001,51.040001,54.740002,57.220001,4,1,1,0,0,5,5,1,408.33334,1101815.1,0,0,6153.522 -586,711,1287,1286,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,0,4,9.1810465,8.8148384,0,2,0,-9,6,0,1,-138.07436,0,0,0,51,1,2,1,2,1,2019,1,2,9,0,37,50,15,1,0,1,0,21.538748,21.538748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.740002,57.220001,39.970001,51.040001,6,1,1,0,0,5,5,1,408.33334,1101815.1,0,0,6153.522 -586,711,1288,-9,1286,1287,4,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.88135,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,5,1,408.33334,1101815.1,0,0,6153.522 -586,712,1289,-9,1286,1287,3,1,0,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1138.8807,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,5,1,1,597,-46786.516,0,0,0 -587,713,1290,1291,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,0,3,8.6782827,8.7626076,0,1,0,-9,2,0,-8,43.007706,0,0,0,51,2,5,1,-9,-9,2019,1,1,22,8,46,70,15,1,1,1,0,16.19696,16.19696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.459999,47.869999,62.389999,56.709999,3,1,1,0,0,9,5,0,1012,184068.2,0,0,3296.2979 -587,713,1291,1290,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,5,8.3302021,8.5743361,6.2969065,1,0,-9,2,0,8,-5.0650787,-9,0,0,43,1,3,1,2,2,2019,1,2,7,0,100,0,15,1,0,1,0,6.0056868,6.0056868,0,0,0,0,0,0,0,0,0,0,0,4.8097181,6.5394049,0,0,62.389999,56.709999,42.459999,47.869999,7,1,1,0,0,9,5,0,1012,184068.2,0,0,3296.2979 -588,714,1292,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,0,2,7.1837087,7.57265,5.7400126,3,0,0,0,-9,0,-1006.437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,25,21,15,1,1,-9,0,7.5073819,7.5073819,0,0,0,0,0,0,0,0,1,1,0,.93061745,5.5109,0,0,34.400002,38.349998,-9,-9,4,1,1,0,0,4,3,1,48,28612.979,0,0,1437.9728 -588,715,1293,-9,1292,-9,2,1,0,25,2,0,0,0,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1000.7087,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8046806,0,0,0,59.139999,52.5,-9,-9,3,1,1,0,0,4,1,1,250,-29366.625,0,0,814.84973 -589,716,1294,1295,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,7.9231653,8.1204767,0,1,0,-9,27,0,-2,182.80173,0,0,0,56,3,4,1,3,3,2019,1,2,7,0,24,25,15,1,0,1,0,12.726418,12.726418,0,0,0,0,0,0,0,0,0,0,0,2.7670574,0,0,0,60.02,56.419998,55.810001,55.349998,6,1,1,0,0,6,5,1,980,235629.19,0,0,4035.2312 -589,716,1295,1294,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,4,7.9209399,8.3655052,7.8638339,1,0,-9,27,0,2,2.3313587,0,0,0,54,2,5,1,3,2,2019,1,1,2,0,25,20,15,1,0,1,0,14.221795,14.221795,0,0,0,0,0,0,0,0,0,0,0,.99001849,7.889503,0,0,55.810001,55.349998,60.02,56.419998,7,1,1,0,0,6,5,1,980,235629.19,0,0,4035.2312 -590,717,1296,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,4,8.0725832,7.9314036,0,3,0,0,0,-9,0,-1025.0898,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,42,45,15,1,0,-9,0,8.0605936,8.0605936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,9,4,1,164,1396598.4,0,0,1625.8921 -591,718,1297,-9,-9,-9,1,1,0,40,2,0,3,0,2,-9,2,1,0,0,3,6.5145516,6.6971951,0,4,0,0,0,-9,0,-822.76715,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,17,17,15,1,1,-9,0,5.0465035,5.0465035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.440001,56.360001,-9,-9,3,1,1,0,0,9,2,0,1240,60603.941,0,0,2571.4663 -591,718,1298,-9,1297,-9,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-937.00812,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,0,1240,60603.941,0,0,2571.4663 -591,718,1299,-9,1297,-9,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1009.2199,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,0,1240,60603.941,0,0,2571.4663 -591,718,1300,-9,1297,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1010.7881,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,1240,60603.941,0,0,2571.4663 -592,719,1301,-9,1302,1303,6,1,1,17,2,0,1,0,2,-9,3,3,0,0,1,0,0,0,2,0,0,0,-9,0,-1040.1603,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.279999,22.84,-9,-9,4,1,1,1,1,4,2,0,527.33331,-3008.3542,0,0,2534.2041 -592,719,1302,1303,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,5,7.6618466,7.8568625,0,2,0,-9,7,0,-4,-3.533977,0,0,1,48,2,4,1,-9,-9,2019,1,1,11,1,35,25,15,1,0,1,0,8.2589273,8.2589273,0,0,0,0,0,0,0,0,1,1,0,2.8147314,0,0,0,51.139999,60.450001,52,55,7,1,1,0,0,4,2,0,527.33331,-3008.3542,0,0,2534.2041 -592,719,1303,1302,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,5.820744,5.7872028,0,2,0,-9,7,0,4,-128.68661,0,0,0,44,2,5,1,2,2,2019,1,2,9,1,80,0,15,1,0,1,0,.42958575,.42958575,0,0,0,0,0,0,0,2,1,1,0,0,0,1.121045,3,52,55,51.139999,60.450001,6,1,1,0,0,4,2,0,527.33331,-3008.3542,0,0,2534.2041 -592,720,1304,-9,1302,1303,3,1,0,22,2,0,1,0,2,-9,2,1,0,0,5,7.1739993,7.3269873,0,3,0,0,0,-9,0,-937.90466,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,31,24,15,1,0,-9,1,6.2310658,6.2310658,0,0,0,0,0,0,0,0,1,1,0,2.81584,0,0,0,31.780001,59.990002,-9,-9,6,1,1,0,0,4,3,0,322,-95792.227,0,0,1298.0933 -592,721,1305,-9,1302,1303,4,1,0,24,2,0,1,0,2,-9,2,1,0,0,4,7.4840174,8.0852633,0,3,0,0,0,-9,0,-960.63165,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,31,15,1,0,-9,1,7.7628465,7.7628465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,4,3,0,1229,96769.359,0,0,550.01959 -592,722,1306,-9,1302,1303,5,1,1,20,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-916.09534,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,0,4,1,0,396,0,0,0,0 -593,723,1307,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,0,4,0,7.1538396,7.1047406,3,0,0,0,-9,0,-1065.056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.0745244,24.618866,3,59.290001,49.68,-9,-9,6,1,1,0,0,9,2,1,2773,465107.53,0,0,2063.5835 -594,724,1308,1311,-9,-9,1,1,0,30,1,1,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,4,0,2,52.219006,0,0,1,28,2,4,1,2,-9,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.529999,38.59,57.16,56.150002,5,1,1,0,0,6,3,0,392,47471.145,0,0,2499.1833 -594,724,1309,-9,1308,1311,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.17554,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,3,0,392,47471.145,0,0,2499.1833 -594,724,1310,-9,1308,1311,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.8475,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,0,392,47471.145,0,0,2499.1833 -594,724,1311,1308,-9,-9,2,1,1,28,1,1,2,0,2,-9,2,1,0,0,4,7.9388981,7.6371751,0,2,0,-9,4,0,-2,-51.167534,-9,1,0,30,2,2,3,-9,-9,2019,2,1,6,0,56,0,15,1,0,3,0,6.339694,6.339694,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,48.529999,38.59,4,1,1,0,0,6,3,0,392,47471.145,0,0,2499.1833 -595,725,1312,1313,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.3124752,6.9010658,1,0,-9,45,0,-2,77.175705,0,0,0,67,3,4,1,2,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8009419,7.1725078,0,0,61.119999,51.57,59.139999,52.5,7,1,1,0,0,9,4,1,216.5,0,0,0,3692.3594 -595,725,1313,1312,-9,-9,2,1,0,67,1,0,0,0,3,-9,2,1,0,0,4,8.4436779,8.2119637,0,1,0,-9,45,0,2,-20.427479,0,0,0,65,2,4,3,2,2,2019,2,1,7,0,37,0,15,1,0,4,0,9.8050356,9.8050356,0,0,0,0,0,0,0,0,1,1,0,2.2058544,0,0,0,59.139999,52.5,61.119999,51.57,6,1,1,0,0,9,4,1,216.5,0,0,0,3692.3594 -596,726,1314,1315,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,0,2,7.796937,8.1187315,5.7543817,1,0,-9,1,-9,3,-53.007874,-9,0,0,52,1,4,3,2,2,2019,2,1,15,3,27,0,15,1,0,3,0,8.6629801,8.6629801,0,0,0,0,0,0,0,0,0,0,0,6.4180989,0,0,0,44.139999,47.709999,48.279999,60.18,5,1,1,0,0,10,3,1,1613.5,380417.06,0,0,1579.5125 -596,726,1315,1314,-9,-9,1,1,1,52,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,1,-9,-3,37.011189,-9,0,0,55,1,2,1,3,2,2019,3,2,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,44.139999,47.709999,5,1,1,1,0,10,3,1,1613.5,380417.06,0,0,1579.5125 -597,727,1316,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,0,2,8.2183094,8.3208694,0,1,0,-9,13,0,-13,129.43259,0,0,0,-9,-9,-9,-9,-9,3,2019,2,2,6,0,60,45,15,1,0,-9,0,7.9904518,7.9904518,0,0,0,0,0,0,0,66,1,1,0,0,0,126.99863,1,55.200001,49.400002,29.75,32.84,5,1,1,0,0,1,4,0,356,423856.03,0,0,797.21417 -597,728,1317,-9,-9,-9,2,1,1,60,2,0,0,0,3,-9,8,3,1,1,1,5.7834249,5.8683405,0,1,0,-9,13,0,13,59.629581,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,21,7,6,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.75,32.84,55.200001,49.400002,2,1,1,0,0,1,4,0,415,130031.9,0,0,2448.0166 -598,729,1318,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,5,0,8.2446461,8.4659081,3,0,0,0,-9,0,-1056.2639,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6048776,8.0970802,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,7,4,1,730,1618642.1,0,0,2161.1433 -599,730,1319,1320,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.9657631,8.9295092,0,1,0,-9,5,0,6,61.680359,0,0,0,42,1,4,1,2,2,2019,1,2,7,0,40,47,15,1,0,1,0,25.844076,25.844076,0,0,0,0,0,0,0,0,0,0,0,7.5293641,0,0,0,44.400002,55.029999,52.400002,55.580002,6,1,1,0,0,8,5,1,667.5,418959.94,0,0,6733.8574 -599,730,1320,1319,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,4,8.8263988,8.7238274,0,1,0,-9,5,0,-6,15.767721,0,0,1,48,2,4,1,-9,-9,2019,1,1,8,0,50,45,15,1,0,1,0,14.880769,14.880769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,55.580002,44.400002,55.029999,6,1,1,0,0,8,5,1,667.5,418959.94,0,0,6733.8574 -600,731,1321,1322,-9,-9,2,1,0,68,1,0,0,0,2,-9,6,3,0,0,3,0,7.2897205,7.3625731,1,0,-9,7,0,-2,-22.115597,0,0,0,70,2,5,1,-9,-9,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0722189,6.9993162,0,0,50,47,54.689999,57.470001,5,1,1,0,0,12,3,1,664.5,283621.84,0,0,2751.8726 -600,731,1322,1321,-9,-9,1,1,1,70,1,0,0,0,2,-9,2,1,0,0,5,6.8548346,7.8710418,7.3815508,1,0,-9,48,0,2,-198.83438,0,0,0,68,2,3,3,3,3,2019,2,2,7,0,3,3,15,1,0,3,0,35.805634,35.805634,0,0,0,0,0,0,0,2,1,1,0,3.1305475,7.0151076,0,3,54.689999,57.470001,50,47,7,1,1,0,0,12,3,1,664.5,283621.84,0,0,2751.8726 -601,732,1323,1324,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,8.9698792,8.9656706,0,1,0,-9,10,0,1,-97.065941,0,0,0,45,1,5,1,2,3,2019,1,1,12,1,40,40,15,1,0,1,0,29.426603,29.426603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,40.380001,61.66,4,1,1,0,0,8,5,1,1658,475950.59,0,0,4644.9434 -601,732,1324,1323,-9,-9,1,1,0,45,1,0,0,0,1,-9,1,1,0,0,5,7.689508,7.4339523,0,1,0,-9,10,0,-1,-17.071651,0,0,0,46,1,4,1,2,1,2019,1,2,15,4,10,5,15,1,1,1,0,31.158613,31.158613,0,0,0,0,0,0,0,0,1,1,0,6.9466085,0,0,0,40.380001,61.66,51.240002,58.84,2,4,5,0,1,8,5,1,1658,475950.59,0,0,4644.9434 -602,733,1325,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,2,1,0,0,5,8.7030554,8.4177437,0,3,0,0,0,-9,0,-1007.8314,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,50,45,15,1,0,-9,0,10.958989,10.958989,0,0,0,0,0,0,0,0,0,0,0,2.8157244,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,7,5,1,118,196650.7,0,0,1309.9781 -603,734,1326,1327,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,0,3,8.0571613,7.9258456,3.768563,2,0,-9,7,0,3,40.92511,0,0,0,54,1,4,1,3,3,2019,1,1,8,1,41,37,15,1,0,1,0,7.3018775,7.3018775,0,0,0,0,0,0,0,0,0,0,0,0,4.0846353,0,0,61.279999,48.880001,39.23,55.950001,6,1,1,0,0,2,5,0,1049.5,1160686.5,0,0,3097.698 -603,734,1327,1326,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,0,4,8.9993067,9.0079336,0,2,0,-9,7,0,-3,12.703196,0,0,0,57,2,3,1,2,2,2019,1,2,14,4,38,12,15,1,1,1,0,23.428804,23.428804,0,0,0,0,0,0,0,14.5,0,0,0,3.7092531,0,6.1876249,3,39.23,55.950001,61.279999,48.880001,3,1,1,0,0,2,5,0,1049.5,1160686.5,0,0,3097.698 -603,735,1328,-9,1327,1326,3,1,0,18,2,0,1,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-992.44202,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.67853951,0,0,0,45.91,59.889999,-9,-9,4,1,1,0,0,2,5,0,699,131944.11,0,0,911.53351 -604,736,1329,1330,-9,-9,1,1,1,81,1,0,0,0,2,-9,1,1,0,0,3,6.5681987,6.9259057,0,1,0,-9,58,0,5,-10.772286,0,0,0,76,1,1,3,3,3,2019,2,2,10,0,30,40,15,1,0,4,0,3.4255745,3.4255745,1,0,0,0,0,0,0,7,1,1,0,0,0,0,1,56.5,48.330002,56.310001,34.099998,4,1,1,0,0,9,4,1,798.5,1292590,0,0,4850.5293 -604,736,1330,1329,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,1,1,0,8.3167658,8.6626577,1,0,-9,58,0,-5,-109.58681,0,0,0,81,2,3,1,2,2,2019,3,1,7,0,0,12,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1472812,8.6137085,0,0,56.310001,34.099998,56.5,48.330002,6,1,1,0,0,9,4,1,798.5,1292590,0,0,4850.5293 -605,737,1331,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-951.2218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.990002,30.49,-9,-9,3,1,1,0,1,13,1,0,900,197437.13,0,0,-374.10126 -606,738,1332,-9,1335,1334,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.81927,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,903.25,156333.2,0,0,2868.1221 -606,738,1333,-9,1335,1334,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.5426,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,903.25,156333.2,0,0,2868.1221 -606,738,1334,1335,-9,-9,2,1,1,30,1,1,2,0,2,-9,2,1,0,0,3,8.2433062,8.6103868,0,2,0,-9,8,0,-1,50.673298,0,0,0,31,2,4,1,1,2,2019,1,1,11,0,12,0,15,1,0,1,0,46.041565,46.041565,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,52.619999,44.419998,51.060001,6,1,1,0,0,12,4,1,903.25,156333.2,0,0,2868.1221 -606,738,1335,1334,-9,-9,1,1,0,31,1,1,2,0,2,-9,2,1,0,0,4,7.219203,7.0134811,4.6710148,2,0,-9,8,0,1,14.360829,0,0,1,30,2,3,1,2,2,2019,1,2,13,2,14,15,15,1,0,1,0,9.246542,9.246542,0,0,0,0,0,0,0,0,1,1,0,4.0051284,0,0,0,44.419998,51.060001,50.029999,52.619999,3,1,1,0,0,12,4,1,903.25,156333.2,0,0,2868.1221 -607,739,1336,1337,-9,-9,1,1,1,44,1,0,1,0,2,-9,1,1,0,0,4,8.634428,8.5151739,0,2,0,-9,17,0,6,-39.509857,0,0,0,38,2,1,3,2,2,2019,2,2,7,0,40,50,15,1,0,3,0,11.110352,11.110352,0,0,0,0,0,0,0,7,1,1,0,0,0,4.7585559,1,51.77,58.57,44.84,24.41,6,1,1,0,0,13,3,1,303.5,164186.63,0,0,3722.7837 -607,739,1337,1336,-9,-9,2,1,0,38,1,0,1,0,2,-9,8,3,1,1,1,0,4.6425753,4.5936966,2,0,-9,17,0,-6,158.14278,0,0,1,44,2,4,1,2,-9,2019,3,1,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6531534,0,0,44.84,24.41,51.77,58.57,2,1,1,0,0,13,3,1,303.5,164186.63,0,0,3722.7837 -608,740,1338,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,7.4927111,7.3363557,3,0,0,0,-9,0,-1115.8667,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.6307588,0,0,0,2.2738695,53.228355,0,1,1,0,1.9549028,7.1479044,0,0,56.779999,26.690001,-9,-9,6,1,1,0,0,12,3,0,581,237007.23,0,0,850.51593 -609,741,1339,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,1,0,4.1416597,3.9460516,3,0,0,0,-9,0,-931.05695,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,1.7759771,0,7.6392193,0,0,1,1,0,0,4.1608911,0,0,59.68,19.969999,-9,-9,7,1,1,0,0,2,2,1,505,15364.645,0,0,1097.8949 -610,742,1340,1341,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,9.1867208,9.0268354,1,0,-9,43,0,-2,36.549774,0,0,0,74,3,3,3,2,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,7.0213094,8.6805582,.67753142,3,49.43,44.66,35.93,49.57,3,1,1,0,0,9,5,1,392.5,3757921,0,0,5656.374 -610,742,1341,1340,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,6.1229987,6.0663638,1,0,-9,43,0,2,51.2883,0,0,0,72,2,3,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.576158,6.0276909,0,0,35.93,49.57,49.43,44.66,3,1,1,0,0,9,5,1,392.5,3757921,0,0,5656.374 -611,743,1342,1343,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.8196163,8.6738844,0,1,0,-9,33,0,-1,-63.104088,-9,0,0,53,3,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,12.891444,12.891444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,52.599998,50.150002,6,1,1,0,0,5,5,1,1141.5,1221365.3,0,0,3437.6643 -611,743,1343,1342,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,0,4,8.6448765,8.535634,0,1,0,-9,34,0,1,2.8844428,0,0,0,52,1,4,1,3,3,2019,1,2,13,1,39,40,15,1,0,1,0,13.734707,13.734707,0,0,0,0,0,0,0,7,1,1,0,.94523317,0,3.0526967,3,52.599998,50.150002,52,53,2,1,1,0,0,5,5,1,1141.5,1221365.3,0,0,3437.6643 -612,744,1344,-9,1345,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.4022,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,1,0,106.5,0,0,0,700.82715 -612,744,1345,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1014.2269,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,16,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.450001,28.610001,-9,-9,3,1,1,1,1,1,1,0,106.5,0,0,0,700.82715 -613,745,1346,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,0,3,0,6.8990207,7.2900052,3,0,0,0,-9,0,-1029.7965,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0157094,6.8918962,0,0,63.919998,39.450001,-9,-9,6,1,1,0,0,12,2,0,610,646227.5,0,0,1290.9384 -614,746,1347,-9,1348,-9,3,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1181.483,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,9,1,0,345.33334,58013.086,0,0,2824.1094 -614,746,1348,-9,-9,-9,1,1,0,24,3,2,2,0,2,-9,3,3,0,0,3,0,0,0,4,0,-9,0,1,0,-998.3736,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.209999,55.900002,-9,-9,4,2,3,1,0,9,1,0,345.33334,58013.086,0,0,2824.1094 -614,746,1349,-9,1348,-9,2,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-972.24146,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,9,1,0,345.33334,58013.086,0,0,2824.1094 -615,747,1350,-9,1351,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1001.673,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,0,580,181110.72,0,0,2015.9918 -615,747,1351,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,0,3,7.8175101,8.0741854,6.7295833,4,0,-9,0,-9,0,-910.43164,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,24,0,15,1,0,-9,0,11.265039,11.265039,0,0,0,0,0,0,0,2,1,1,0,6.0623884,0,6.4730053,3,51.939999,55.880001,-9,-9,4,1,1,0,0,12,3,0,580,181110.72,0,0,2015.9918 -616,748,1352,1353,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,3,7.8021111,7.9592276,0,1,0,-9,3,0,-2,-107.55672,0,0,1,34,2,3,1,-9,-9,2019,1,2,12,1,41,38,15,1,0,1,0,10.947217,10.947217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.459999,54.849998,36.869999,49.16,5,1,1,0,0,5,4,1,550.5,15279.916,0,0,2770.7109 -616,748,1353,1352,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,0,3,8.1360855,7.9563303,0,1,0,-9,3,0,2,-99.64389,0,0,0,32,1,3,1,-9,-9,2019,1,1,11,0,37,38,15,1,0,1,0,11.336494,11.336494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.869999,49.16,42.459999,54.849998,4,1,1,0,0,5,4,1,550.5,15279.916,0,0,2770.7109 -617,749,1354,-9,1356,1355,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.43384,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,5,0,1027.6666,215527.44,0,0,3729.9946 -617,749,1355,1356,-9,-9,1,1,1,40,1,0,1,0,1,-9,2,1,0,0,3,9.0358944,8.5411901,0,2,0,-9,7,0,1,-33.633694,0,0,0,39,1,3,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,19.286276,19.286276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,59.880001,45.369999,6,2,3,0,0,8,5,0,1027.6666,215527.44,0,0,3729.9946 -617,749,1356,1355,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,3,8.0382051,7.7072024,0,2,0,-9,7,0,-1,58.569626,0,0,1,40,1,3,1,-9,-9,2019,1,1,7,0,14,8,15,1,0,1,0,21.864695,21.864695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.880001,45.369999,57.330002,53.459999,4,2,3,0,1,8,5,0,1027.6666,215527.44,0,0,3729.9946 -618,750,1357,1359,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,8.2366562,8.4566813,0,2,0,-9,6,0,1,13.569736,-9,0,0,45,1,3,3,-9,-9,2019,2,1,10,0,39,0,15,1,0,3,0,14.960021,14.960021,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,37.509998,58.259998,6,1,1,0,0,12,3,1,691.33331,889648.31,0,0,2758.4033 -618,750,1358,-9,1359,1357,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.4232,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,1,691.33331,889648.31,0,0,2758.4033 -618,750,1359,1357,-9,-9,1,1,0,45,1,0,1,0,1,-9,6,3,0,0,3,4.648428,4.7754307,0,2,0,-9,20,0,-1,-17.155266,0,0,0,46,1,4,1,1,1,2019,3,2,12,0,2,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.509998,58.259998,51.830002,57.200001,5,1,1,0,0,12,3,1,691.33331,889648.31,0,0,2758.4033 -619,751,1360,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,8.3727694,8.4996786,3,0,-9,0,1,0,-1090.2299,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,73.108109,0,1,1,0,0,8.3336954,0,0,51.66,54.880001,-9,-9,6,1,1,0,0,12,4,1,391,1118990.1,0,0,2510.7266 -619,752,1361,-9,-9,-9,2,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.3787651,7.5788817,3,0,-9,0,1,0,-1005.0513,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2479439,12.050192,3,44.720001,63.16,-9,-9,7,1,1,0,0,12,3,1,1339,443948.84,0,0,2664.6062 -620,753,1362,1364,-9,-9,1,1,0,46,1,0,3,0,1,-9,2,1,0,0,4,8.3205814,8.1867933,0,2,0,-9,17,0,0,-54.27322,0,0,0,46,1,5,1,1,1,2019,1,2,11,0,32,14,15,1,0,1,0,16.621576,16.621576,0,0,0,0,0,0,0,7,1,1,0,5.5696778,0,2.1444433,3,53.27,45.610001,55.66,54.25,6,1,1,0,0,10,5,1,811.59998,749995.06,0,0,5592.8022 -620,753,1363,-9,1362,1364,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1263.8519,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,811.59998,749995.06,0,0,5592.8022 -620,753,1364,1362,-9,-9,2,1,1,46,1,0,3,0,1,-9,1,1,0,0,5,8.325201,8.979064,8.3216162,2,0,-9,17,0,0,1.7286153,0,0,0,46,1,4,1,2,1,2019,1,1,9,0,28,37,15,1,0,1,0,16.654791,16.654791,0,0,0,0,0,0,0,27.5,1,1,0,8.417861,0,35.122864,3,55.66,54.25,53.27,45.610001,6,1,1,0,0,10,5,1,811.59998,749995.06,0,0,5592.8022 -620,753,1365,-9,1362,1364,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-908.65387,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,10,5,1,811.59998,749995.06,0,0,5592.8022 -620,753,1366,-9,1362,1364,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.1821,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,811.59998,749995.06,0,0,5592.8022 -621,754,1367,1368,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,0,3,8.6244125,8.5743322,0,2,0,-9,3,0,-3,-60.124527,0,0,1,46,3,4,1,-9,-9,2019,1,3,26,10,48,32,15,1,1,1,0,11.45163,11.45163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.959999,66.629997,39.41,61.57,3,4,2,0,0,4,5,1,505.33334,704287.19,0,0,3541.7776 -621,754,1368,1367,-9,-9,3,1,1,46,1,0,1,0,3,-9,2,1,0,0,4,8.4938726,8.2467699,0,2,0,-9,3,0,3,45.240189,0,0,0,43,1,3,1,-9,-9,2019,1,1,9,0,40,37,15,1,0,1,0,15.921587,15.921587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.41,61.57,27.959999,66.629997,5,1,1,0,0,4,5,1,505.33334,704287.19,0,0,3541.7776 -621,754,1369,-9,1367,1368,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1036.0693,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,4,5,1,505.33334,704287.19,0,0,3541.7776 -622,755,1370,-9,-9,-9,1,1,1,34,3,0,0,0,1,-9,2,1,0,0,4,6.6826658,6.5984306,0,3,0,-9,0,1,0,-888.25458,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,32,33,15,1,0,-9,0,3.9124463,3.9124463,0,0,0,0,0,0,0,0,1,1,0,8.2191935,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,10,2,1,236,323548.66,0,0,1884.2858 -623,756,1371,-9,-9,-9,1,1,0,43,3,0,4,0,2,-9,2,1,0,0,5,7.2546258,6.8743243,0,4,0,0,0,-9,0,-1120.6454,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,24,24,15,1,0,-9,0,4.660265,4.660265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,3,4,0,0,8,2,0,991.5,-10574.206,0,0,2682.9487 -623,756,1372,-9,1371,-9,2,1,1,16,2,0,4,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-899.55505,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,3,4,0,0,8,2,0,991.5,-10574.206,0,0,2682.9487 -624,757,1373,-9,1375,1374,4,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.3527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,4,1,226.33333,41676.898,0,0,2881.0703 -624,757,1374,1375,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,8.5088825,8.5727177,0,2,0,-9,10,0,4,-107.46495,0,0,0,45,2,4,1,1,2,2019,1,2,15,3,50,60,15,1,0,1,0,12.983789,12.983789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.77,44.939999,55.790001,52.619999,6,1,1,0,0,10,4,1,226.33333,41676.898,0,0,2881.0703 -624,757,1375,1374,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.792367,8.0037193,0,2,0,-9,10,0,-4,-33.629528,0,0,0,49,2,3,1,2,2,2019,1,1,9,0,24,23,15,1,0,1,0,12.70847,12.70847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,43.77,44.939999,2,1,1,0,1,10,4,1,226.33333,41676.898,0,0,2881.0703 -624,758,1376,-9,1375,1374,3,1,0,19,2,0,1,0,2,0,7,2,0,0,4,6.3587666,6.1973252,0,3,0,0,0,-9,0,-1131.1749,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.38747165,0,0,0,47,58,-9,-9,5,1,1,0,0,10,2,1,442,0,0,0,1607.0797 -625,759,1377,-9,1378,1381,2,1,1,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-960.28528,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,11,4,0,1150,36055.676,0,0,3138.0085 -625,759,1378,1381,-9,-9,1,1,0,27,1,0,3,0,2,-9,2,1,0,0,3,7.7544622,7.4530649,0,2,0,-9,7,0,-2,-18.175135,0,1,1,29,2,3,1,-9,-9,2019,1,3,15,3,39,29,15,1,0,1,0,7.6928573,7.6928573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.990002,43.709999,56.91,5,1,1,0,0,11,4,0,1150,36055.676,0,0,3138.0085 -625,759,1379,-9,1378,1381,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.35712,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,0,1150,36055.676,0,0,3138.0085 -625,759,1380,-9,1378,1381,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.3595,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,0,1150,36055.676,0,0,3138.0085 -625,759,1381,1378,-9,-9,3,1,1,29,1,0,3,0,2,-9,2,1,0,0,3,8.536706,8.5193214,0,2,0,-9,7,0,2,-81.012215,0,1,0,27,2,3,1,-9,-9,2019,1,1,14,4,45,47,15,1,1,1,0,13.611226,13.611226,0,0,0,0,0,0,0,0,1,1,0,1.0786949,0,0,0,43.709999,56.91,41,56.990002,3,1,1,0,0,11,4,0,1150,36055.676,0,0,3138.0085 -626,760,1382,-9,1385,1384,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.17615,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,4,1,0,777,-52199.348,0,0,951.30133 -626,760,1383,-9,1385,1384,6,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.80316,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,777,-52199.348,0,0,951.30133 -626,760,1384,1385,-9,-9,2,1,1,44,1,0,3,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,-2,0,0,0,0,46,2,3,3,-9,2,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.259998,22.57,46.080002,57.200001,3,1,1,0,1,4,1,0,777,-52199.348,0,0,951.30133 -626,760,1385,1384,-9,-9,1,1,0,46,1,0,3,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,8,0,2,0,0,0,0,44,3,2,3,2,2,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.30105,2,46.080002,57.200001,48.259998,22.57,5,1,1,1,0,4,1,0,777,-52199.348,0,0,951.30133 -626,760,1386,-9,1385,1384,4,1,0,17,2,0,3,0,2,-9,97,3,0,0,2,0,0,0,2,0,0,0,-9,0,-1015.4264,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.380001,46.25,-9,-9,7,1,1,0,0,4,1,0,777,-52199.348,0,0,951.30133 -626,761,1387,-9,1385,1384,3,1,1,19,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-866.21887,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,1,0,1205,0,0,0,0 -627,762,1388,1391,-9,-9,1,1,1,38,1,0,1,0,2,-9,1,1,0,0,4,9.0914431,9.1803637,0,2,0,-9,6,0,-8,78.07914,0,0,0,46,2,5,1,3,2,2019,1,2,7,0,80,70,15,1,0,1,0,15.807246,15.807246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.810001,31.969999,6,1,1,0,0,12,5,1,701.25,91086.711,0,0,4654.6284 -627,762,1389,-9,1391,1388,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.76636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,5,1,701.25,91086.711,0,0,4654.6284 -627,762,1390,-9,1391,1388,3,1,1,17,2,0,1,0,2,-9,1,3,0,0,3,6.6900759,6.7228756,0,2,0,0,0,-9,0,-1003.9205,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,90,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.529999,29.99,-9,-9,2,1,1,0,0,12,5,1,701.25,91086.711,0,0,4654.6284 -627,762,1391,1388,-9,-9,2,1,0,46,1,0,1,0,2,-9,1,1,0,0,5,6.1428094,6.1939754,0,2,0,-9,6,0,8,-145.39178,0,0,0,38,2,4,1,3,-9,2019,1,1,20,7,45,70,15,1,1,1,0,1.0401037,1.0401037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.810001,31.969999,54.200001,57.490002,6,1,1,0,0,12,5,1,701.25,91086.711,0,0,4654.6284 -628,763,1392,1393,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,6.5350351,6.9703951,1,0,-9,35,0,8,-38.150314,0,0,0,76,3,2,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,.45868748,6.5577292,0,1,58.869999,51.290001,59.790001,26.82,6,1,1,0,0,10,2,0,289,311547.06,0,0,1546.0035 -628,763,1393,1392,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,35,0,-8,-15.898829,0,0,0,84,3,4,3,3,3,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8527153,0,0,0,59.790001,26.82,58.869999,51.290001,2,1,1,0,0,10,2,0,289,311547.06,0,0,1546.0035 -629,764,1394,-9,-9,-9,1,1,1,50,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1086.3235,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.130001,38.110001,-9,-9,6,1,1,1,0,12,1,0,2985,-88962.242,0,0,416.599 -630,765,1395,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,8,3,1,1,1,0,5.1140237,5.1826477,3,0,0,0,-9,0,-946.92804,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.52732205,5.161572,4.8607244,3,25.620001,25.08,-9,-9,2,1,1,0,0,9,2,0,351,-15581.261,0,0,2191.9058 -630,765,1396,-9,-9,1395,2,1,1,17,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1057.2727,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.9773118,3,51.240002,58.84,-9,-9,6,1,1,1,0,9,2,0,351,-15581.261,0,0,2191.9058 -631,766,1397,1398,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,0,2,7.253119,7.4386859,0,1,0,-9,3,0,-5,-77.732208,0,1,1,30,1,4,1,2,2,2019,1,2,17,5,20,37,15,1,1,1,0,8.6524534,8.6524534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.490002,48.490002,49,58,4,1,1,0,0,11,4,1,881.5,228611.22,0,0,1547.7908 -631,766,1398,1397,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.2092791,8.3402843,0,1,0,-9,3,0,5,135.45641,0,0,0,25,2,2,1,-9,-9,2019,1,1,10,1,37,37,15,1,0,1,0,13.202226,13.202226,0,0,0,0,0,0,0,0,0,0,0,2.1670637,0,0,0,49,58,39.490002,48.490002,5,1,1,0,0,11,4,1,881.5,228611.22,0,0,1547.7908 -632,767,1399,1400,-9,-9,2,1,0,55,1,0,0,0,2,-9,3,3,0,0,3,7.5654278,7.7368302,0,1,0,-9,6,0,1,-129.86784,0,0,0,54,2,3,1,3,2,2019,3,1,9,0,32,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.610001,54.240002,55.369999,40.830002,6,1,1,1,0,2,5,1,792,1095402.5,0,0,4951.043 -632,767,1400,1399,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,3,8.7418261,8.884141,8.0556059,1,0,-9,6,0,-1,-26.406622,0,0,0,55,2,3,3,3,3,2019,2,2,12,0,12,0,15,1,0,3,0,59.163124,59.163124,0,0,0,0,0,0,0,0,0,0,0,3.6307957,7.9351072,0,0,55.369999,40.830002,49.610001,54.240002,6,1,1,0,0,2,5,1,792,1095402.5,0,0,4951.043 -633,768,1401,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,0,2,8.9595623,8.8141003,0,3,0,0,0,-9,0,-1011.979,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,42,15,1,0,-9,0,21.434963,21.434963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.130001,44.459999,-9,-9,5,1,1,0,0,8,5,1,124,107441.38,0,0,2545.6077 -634,769,1402,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-923.56152,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,1,1,987,-70208,0,0,-359.53958 -634,770,1403,-9,1402,-9,2,1,0,49,2,0,0,0,3,-9,2,1,0,0,4,7.3543296,7.1396532,0,3,0,0,0,-9,0,-1104.5377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,23,0,15,1,0,-9,1,7.2869544,7.2869544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,3,1,1415,34527.094,0,0,388.31165 -635,771,1404,-9,-9,-9,3,1,1,21,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-940.3493,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.66,51.389999,-9,-9,2,1,1,1,1,11,1,1,634,84883.055,0,0,287.78534 -635,772,1405,1406,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,7,0,0,29.914347,0,0,0,63,2,4,3,-9,-9,2019,4,1,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,24.549999,60.84,47.650002,5,1,1,0,0,11,3,1,494,1154455,0,0,3283.7861 -635,772,1406,1405,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,8.3263245,7.9707718,1,0,-9,7,0,0,45.051071,0,0,0,63,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3391099,8.3158226,0,0,60.84,47.650002,52.240002,24.549999,6,1,1,0,0,11,3,1,494,1154455,0,0,3283.7861 -636,773,1407,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1025.2537,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.036093,0,0,0,57.77,44.119999,-9,-9,6,1,1,0,0,11,1,0,480,148771.53,0,0,-984.76825 -637,774,1408,-9,1410,1412,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-865.1098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,1,955,228487.25,0,0,4151.4023 -637,774,1409,-9,1410,1412,3,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.20264,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,4,1,955,228487.25,0,0,4151.4023 -637,774,1410,1412,-9,-9,2,1,0,34,1,1,3,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-1,-81.318604,0,0,1,35,1,4,1,1,1,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5977716,0,0,0,52.970001,53.970001,54.200001,57.490002,6,2,3,0,0,8,4,1,955,228487.25,0,0,4151.4023 -637,774,1411,-9,1410,1412,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-985.77325,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,1,955,228487.25,0,0,4151.4023 -637,774,1412,1410,-9,-9,1,1,1,35,1,1,3,0,1,-9,2,1,0,0,4,9.1830702,9.1511717,0,2,0,-9,10,0,1,-111.23151,0,0,0,34,1,4,3,3,3,2019,2,2,4,0,37,47,15,1,0,3,0,33.950359,33.950359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52.970001,53.970001,6,2,3,0,0,8,4,1,955,228487.25,0,0,4151.4023 -638,775,1413,-9,-9,-9,1,1,0,43,3,0,1,0,3,-9,6,3,0,1,3,0,0,0,4,0,-9,0,1,0,-1071.3015,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,41.019802,3,38.279999,57.07,-9,-9,2,1,1,0,1,9,1,0,782,170782.84,0,0,1499.1104 -639,776,1414,1415,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,7.7406673,7.8249335,0,1,0,-9,6,0,-1,107.50229,0,0,0,65,2,1,3,3,2,2019,2,1,11,2,14,20,15,1,0,4,0,25.851076,25.851076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,62.830002,18.52,5,2,3,0,0,8,4,1,289,1939046.8,0,0,2986.9094 -639,776,1415,1414,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,1,0,8.1849394,8.175951,1,0,-9,41,0,1,90.555862,0,0,0,64,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1062045,7.8024764,0,0,62.830002,18.52,50,47,2,2,3,0,0,8,4,1,289,1939046.8,0,0,2986.9094 -639,777,1416,-9,1414,1415,3,1,1,33,2,0,0,0,1,-9,2,1,0,0,4,8.9149551,8.6125002,0,3,0,0,0,-9,0,-1183.031,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,44,41,15,1,0,-9,1,12.171241,12.171241,0,0,0,0,0,0,0,2,1,1,0,0,0,5.8209639,3,45.459999,57.330002,-9,-9,3,2,3,0,0,8,5,1,1385,32377.459,0,0,2746.7012 -639,778,1417,-9,1414,1415,4,1,1,27,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1050.5011,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.279999,60.790001,-9,-9,4,2,3,1,0,8,1,1,210,48389.234,0,0,588.55402 -640,779,1418,1419,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,5,7.8077607,7.6343966,5.0818911,1,0,-9,40,0,-3,-5.3127222,0,0,0,60,2,3,1,2,2,2019,1,2,9,0,43,45,15,1,0,1,0,5.5366988,5.5366988,0,0,0,0,0,0,0,7,1,1,0,5.037333,0,10.958995,1,59.43,58.049999,41.200001,37.990002,6,1,1,0,0,2,4,1,2509,721276.5,0,0,2241.0332 -640,779,1419,1418,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,1,3,7.9649758,8.2193136,5.4518204,1,0,-9,11,0,3,2.947823,0,0,0,57,2,5,1,-9,-9,2019,1,1,11,2,45,37,15,1,0,1,0,10.695468,10.695468,0,0,0,0,0,0,0,2,1,1,0,4.0638795,5.2832589,2.3695557,3,41.200001,37.990002,59.43,58.049999,7,1,1,0,0,2,4,1,2509,721276.5,0,0,2241.0332 -640,780,1420,1421,-9,-9,4,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.0903454,7.7986484,0,1,0,-9,1,-9,-3,140.38768,-9,1,1,31,2,3,1,-9,-9,2019,1,3,4,0,37,0,15,1,0,1,0,8.35044,8.35044,0,0,0,0,0,0,0,2,1,1,0,1.2447066,0,0,3,58.150002,52.91,34.07,46.41,6,1,1,0,0,2,4,1,1118,51370.422,0,0,3229.957 -640,780,1421,1420,1419,1418,3,1,1,31,1,0,0,0,2,-9,2,1,0,0,3,8.2845812,8.2392178,0,1,0,1,1,-9,3,-100.4809,0,0,0,28,1,4,1,2,2,2019,1,4,11,3,44,47,15,1,0,1,0,10.254182,10.254182,0,0,0,0,0,0,0,2,1,1,0,0,0,1.1259696,3,34.07,46.41,58.150002,52.91,6,1,1,0,0,2,4,1,1118,51370.422,0,0,3229.957 -641,781,1422,-9,-9,-9,1,1,1,46,2,0,1,0,1,-9,2,1,0,0,4,8.4886541,8.8132391,0,4,0,-9,0,0,0,-1029.8298,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,8,40,40,15,1,1,-9,0,14.04847,14.04847,0,0,0,0,0,0,0,0,0,0,0,2.7167351,0,0,0,28.16,65.32,-9,-9,3,1,1,0,0,13,4,1,1286,273670.59,0,0,1465.4962 -641,782,1423,-9,1424,1422,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-872.98163,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,650,166623.95,0,0,2578.7974 -641,782,1424,-9,-9,-9,2,1,0,48,2,0,1,0,1,-9,2,1,0,0,3,8.6316471,8.490922,0,4,0,-9,0,0,0,-949.06018,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,35,37,15,1,1,-9,0,18.101187,18.101187,0,0,0,0,0,0,0,0,0,0,0,4.2620344,0,0,0,37.599998,55.549999,-9,-9,3,1,1,0,0,13,4,1,650,166623.95,0,0,2578.7974 -642,783,1425,1426,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,8.2027435,8.1084909,0,2,0,-9,21,0,1,-61.468845,0,0,0,48,1,3,3,3,3,2019,2,1,12,1,24,23,15,1,0,3,0,16.701414,16.701414,0,0,0,0,0,0,0,2,1,1,0,1.8800576,0,3.2265892,1,48.889999,34.25,56.27,42.919998,5,1,1,0,0,6,5,1,390,813223.5,0,0,5663.5693 -642,783,1426,1425,-9,-9,1,1,1,48,1,0,1,0,1,-9,8,3,1,1,3,9.0921669,9.188695,0,2,0,-9,21,0,-1,-32.218468,0,0,0,49,1,4,1,2,-9,2019,3,2,5,0,38,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6920302,0,0,0,56.27,42.919998,48.889999,34.25,6,1,1,0,0,6,5,1,390,813223.5,0,0,5663.5693 -643,784,1427,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,2,1,0,0,3,7.4235888,7.3242664,5.6690369,3,0,0,0,-9,0,-1037.6351,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,18,22,15,1,0,-9,0,8.392622,8.392622,0,0,0,0,0,0,0,0,1,1,0,2.4476655,5.7138977,0,0,39.150002,41.419998,-9,-9,5,1,1,0,0,4,3,0,967,208583.98,0,0,2149.4883 -644,785,1428,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,2,1,0,0,3,7.7019515,7.6755676,0,3,0,0,0,-9,0,-1039.4872,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,35,15,1,0,-9,0,7.9571581,7.9571581,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.622904,3,59.360001,40.220001,-9,-9,3,3,4,0,1,8,3,0,2285,221845.06,0,0,2481.1938 -645,786,1429,1430,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,3,8.2383995,8.0188246,0,2,0,-9,26,0,-1,26.954515,0,0,0,49,1,5,1,2,1,2019,1,2,11,0,40,20,15,1,0,1,0,9.3005581,9.3005581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.630001,51.790001,54.630001,58.830002,5,4,2,0,0,9,5,1,627.5,642167.63,0,0,6055.3096 -645,786,1430,1429,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,0,5,8.9139729,8.7990742,0,2,0,-9,26,0,1,-67.851021,0,0,0,48,1,3,1,2,1,2019,1,1,4,1,30,32,15,1,0,1,0,26.049871,26.049871,0,0,0,0,0,0,0,0,1,1,0,8.3697996,0,0,0,54.630001,58.830002,39.630001,51.790001,6,1,1,0,0,9,5,1,627.5,642167.63,0,0,6055.3096 -646,787,1431,1432,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,2,0,7.1622467,7.310986,1,0,-9,1,-9,18,-48.698338,-9,0,0,67,2,3,3,-9,-9,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,129.32394,0,0,0,0,0,1,1,0,0,7.1707988,0,0,43.700001,41.310001,51.110001,40.02,6,1,1,0,0,12,2,0,560,317730.31,0,0,1251.5991 -646,787,1432,1431,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,5.6946888,5.9060512,1,0,-9,1,-9,-18,38.71719,-9,0,0,85,2,2,3,-9,-9,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.9536996,6.0109024,122.59447,1,51.110001,40.02,43.700001,41.310001,4,1,1,0,0,12,2,0,560,317730.31,0,0,1251.5991 -647,788,1433,-9,1434,1435,5,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,5.3357735,5.5347342,0,2,0,0,0,-9,0,-971.39404,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2051504,0,0,0,57.459999,56.16,-9,-9,6,1,1,0,0,5,5,1,949,1693725.8,0,0,6172.5205 -647,788,1434,1435,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,0,4,8.6142397,8.1971674,0,2,0,-9,27,0,1,-13.926548,0,0,0,47,1,4,1,1,2,2019,1,2,6,0,47,51,15,1,0,1,0,9.362648,9.362648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,5,5,1,949,1693725.8,0,0,6172.5205 -647,788,1435,1434,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,9.4266253,9.5368977,0,2,0,-9,27,0,-1,32.423725,0,0,0,48,1,4,1,2,2,2019,1,1,8,0,42,47,15,1,0,1,0,34.919205,34.919205,0,0,0,0,0,0,0,0,0,0,0,3.3192368,0,0,0,54.790001,55.860001,57.16,56.150002,5,1,1,0,0,5,5,1,949,1693725.8,0,0,6172.5205 -647,789,1436,-9,1434,1435,4,1,0,18,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1077.2792,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.849998,-9,-9,6,1,1,0,0,5,5,1,112,-150341.81,0,0,1264.3997 -648,790,1437,-9,1438,1439,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-865.34668,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,5,1,912.25,545644,0,0,6486.416 -648,790,1438,1439,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,5,9.2647743,9.230464,0,2,0,-9,7,0,-3,21.984211,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,0,50,48,15,1,0,1,0,27.2316,27.2316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.860001,63.669998,54.529999,49.110001,6,1,1,0,0,5,5,1,912.25,545644,0,0,6486.416 -648,790,1439,1438,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.5101843,8.1889009,0,2,0,-9,7,0,3,138.02841,0,0,0,47,1,5,1,2,2,2019,1,2,12,0,40,42,15,1,0,1,0,12.44427,12.44427,0,0,0,0,0,0,0,0,1,1,0,7.3769431,0,0,0,54.529999,49.110001,43.860001,63.669998,5,1,1,0,0,5,5,1,912.25,545644,0,0,6486.416 -648,790,1440,-9,1438,1439,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.9148,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,912.25,545644,0,0,6486.416 -649,791,1441,1442,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,5,8.7298069,9.0986099,0,1,0,-9,7,0,-1,-2.1486225,0,0,0,34,1,3,1,2,1,2019,1,2,5,0,42,47,15,1,0,1,0,23.669977,23.669977,0,0,0,0,0,0,0,0,0,0,0,7.223341,0,0,0,57.060001,57.759998,55.66,35.299999,6,1,1,0,0,9,5,1,283,583755,0,0,2798.8281 -649,791,1442,1441,-9,-9,2,1,0,34,1,0,0,0,1,-9,5,1,0,0,3,0,0,0,1,0,-9,7,0,1,-14.077505,0,0,1,33,1,5,1,-9,-9,2019,1,1,12,0,0,27,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,35.299999,57.060001,57.759998,6,1,1,0,0,9,5,1,283,583755,0,0,2798.8281 -650,792,1443,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1057.0635,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,12.67,-9,-9,3,1,1,0,1,13,1,0,666,146602.3,0,0,736.6427 -651,793,1444,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,3.9342313,4.1748805,3,0,0,0,-9,0,-955.85913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.320744,0,0,47.290001,25.790001,-9,-9,4,1,1,0,0,12,2,0,360,120382.36,0,0,1458.0122 -652,794,1445,1446,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,0,3,7.8493967,7.5822001,0,1,0,-9,3,0,20,11.107208,0,0,0,31,1,3,3,2,3,2019,2,2,8,0,55,55,15,1,0,3,0,4.2197928,4.2197928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.330002,53.459999,5,1,1,0,0,10,2,0,384.5,271359.69,0,0,431.71704 -652,794,1446,1445,-9,-9,2,1,0,31,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,3,0,-20,79.024971,0,0,1,51,2,3,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.330002,53.459999,5,2,3,0,0,10,2,0,384.5,271359.69,0,0,431.71704 -653,795,1447,1448,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,8.5287666,8.2266655,0,1,0,-9,7,0,11,-15.617184,-9,0,0,51,2,2,3,-9,-9,2019,2,1,10,1,40,0,15,1,0,4,0,10.977064,10.977064,0,0,0,0,0,0,0,0,0,0,0,7.19806,0,0,0,51,48,61.669998,39.580002,5,1,1,0,0,6,4,1,1050.5,1142720.5,0,0,2810.2686 -653,795,1448,1447,-9,-9,1,1,0,51,1,0,0,0,2,-9,4,3,0,0,2,0,7.4075384,7.500493,1,0,-9,19,0,-11,11.307191,0,0,0,62,1,3,1,2,3,2019,3,2,7,0,0,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3992481,0,0,0,61.669998,39.580002,51,48,6,1,1,0,0,6,4,1,1050.5,1142720.5,0,0,2810.2686 -654,796,1449,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,3,0,7.0220938,6.632947,3,0,0,0,-9,0,-929.96338,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,10,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5678787,0,0,63.16,35.77,-9,-9,6,1,1,0,0,9,2,0,170,232907.13,0,0,994.28448 -655,797,1450,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,5,9.1226492,9.460885,0,3,0,0,0,-9,0,-1044.6533,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,13,15,15,1,0,-9,0,86.972992,86.972992,0,0,0,0,0,0,0,0,0,0,0,7.4726043,0,0,3,54.689999,57.470001,-9,-9,6,1,1,0,0,2,5,1,739,915064.94,0,0,6461.6924 -656,798,1451,1452,-9,-9,1,1,1,42,1,0,0,0,3,-9,2,1,0,0,4,8.5755482,8.3136969,0,1,0,-9,9,0,10,-52.924465,0,0,0,32,2,4,1,-9,-9,2019,1,2,4,0,65,78,15,1,0,1,0,10.505467,10.505467,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.720001,51.290001,35.630001,62.189999,7,1,1,0,0,2,5,1,239,215784.47,0,0,2791.4443 -656,798,1452,1451,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,4,7.3827639,7.4460402,0,1,0,-9,9,0,-10,-34.057461,0,0,1,42,3,4,1,-9,-9,2019,1,1,19,6,27,28,15,1,1,1,0,6.6792526,6.6792526,0,0,0,0,0,0,0,2,0,0,0,0,0,3.9638655,3,35.630001,62.189999,58.720001,51.290001,6,1,1,0,0,2,5,1,239,215784.47,0,0,2791.4443 -657,799,1453,-9,-9,-9,1,1,1,73,2,0,0,0,3,-9,4,3,0,0,2,0,4.8845191,4.9740133,3,0,0,0,-9,0,-1134.0441,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.4021621,4.8265886,0,0,51.66,37.23,-9,-9,6,1,1,0,0,9,2,1,917,593343.5,0,0,1526.7325 -658,800,1454,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,7.467567,7.3945618,0,3,0,0,0,-9,0,-1102.2592,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,20,8,15,17,15,1,1,-9,0,14.348317,14.348317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.809999,65.690002,-9,-9,5,1,1,0,0,2,3,1,179,67412.398,0,0,320.31091 -659,801,1455,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,2,0,7.0293818,6.7021847,3,0,0,0,-9,0,-961.17523,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,41.518749,0,0,0,1,1,0,0,7.2567253,0,0,50.91,16.5,-9,-9,4,1,1,0,0,2,2,0,72,370368.09,0,0,1524.1906 -660,802,1456,1457,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.3913422,8.0453005,0,1,0,-9,5,0,1,-55.840591,0,0,0,54,2,4,1,-9,-9,2019,1,2,12,2,40,40,15,1,0,1,0,11.889011,11.889011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,60.52,53.200001,6,1,1,0,0,10,3,1,306.5,237850.58,0,0,1097.1871 -660,802,1457,1456,-9,-9,2,1,0,54,1,0,0,0,2,-9,1,1,0,0,4,1.1439136,1.3456,0,1,0,-9,5,0,-1,-107.63065,0,0,0,55,2,3,1,-9,-9,2019,1,1,6,0,28,25,15,1,0,1,0,.013968895,.013968895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.200001,41.34,56.619999,6,1,1,0,0,10,3,1,306.5,237850.58,0,0,1097.1871 -661,803,1458,1459,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,9.3066244,9.4773321,0,1,0,-9,25,0,3,39.64785,0,0,0,49,2,3,1,2,2,2019,1,2,6,0,54,87,15,1,0,1,0,24.408688,24.408688,0,0,0,0,0,0,0,0,0,0,0,4.7150383,0,0,0,53.93,52.080002,48,49,6,1,1,0,0,1,5,1,1133,1408909.4,0,0,6169.2021 -661,803,1459,1458,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.0459375,7.9512544,0,1,0,-9,2,0,-3,-96.040306,0,0,0,52,2,4,1,-9,-9,2019,1,1,12,2,32,30,15,1,0,1,0,10.491135,10.491135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,53.93,52.080002,5,1,1,0,0,1,5,1,1133,1408909.4,0,0,6169.2021 -662,804,1460,1463,-9,-9,2,1,0,45,1,0,4,0,1,-9,2,1,0,0,4,7.5838308,7.7705216,0,2,0,-9,8,0,-8,22.014391,0,0,0,53,3,2,3,2,3,2019,2,1,12,1,38,33,15,1,0,3,0,6.7171416,6.7171416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.84,54.049999,18.639999,52.439999,5,1,1,0,0,2,2,0,1100.1666,101233.53,0,0,2078.4353 -662,804,1461,-9,1460,1463,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-976.15674,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,2,0,1100.1666,101233.53,0,0,2078.4353 -662,804,1462,-9,1460,1463,6,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.9204,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,1100.1666,101233.53,0,0,2078.4353 -662,804,1463,1460,-9,-9,1,1,1,53,1,0,4,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,8,0,8,78.917648,0,0,0,45,1,4,1,3,2,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.639999,52.439999,38.84,54.049999,4,1,1,0,1,2,2,0,1100.1666,101233.53,0,0,2078.4353 -662,804,1464,-9,1460,1463,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1193.3486,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,2,2,0,1100.1666,101233.53,0,0,2078.4353 -662,804,1465,-9,1460,1463,5,1,0,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-972.57068,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,2,2,0,1100.1666,101233.53,0,0,2078.4353 -663,805,1466,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,1,2,8.1845989,8.1248474,0,3,0,0,0,-9,0,-1017.5044,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,8,37,32,15,1,1,-9,0,13.338383,13.338383,0,0,0,0,0,0,0,0,1,1,0,2.6371057,0,0,0,19.049999,42.720001,-9,-9,2,1,1,0,0,6,4,1,435,738053.56,0,0,2075.0615 -664,806,1467,1468,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,8.4679489,8.6268425,0,1,0,-9,3,0,-1,45.855385,0,0,0,48,2,4,1,-9,-9,2019,1,1,16,5,38,37,15,1,1,1,0,15.881329,15.881329,0,0,0,0,0,0,0,0,0,0,0,4.6634855,0,0,0,36.200001,64.190002,54.77,55.869999,6,1,1,0,0,10,4,1,348.5,230535.58,0,0,2842.1472 -664,806,1468,1467,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,7.7006483,7.7929449,0,1,0,-9,3,0,1,-46.647991,0,0,0,47,2,4,1,2,2,2019,1,2,3,0,18,32,15,1,0,1,0,11.819296,11.819296,0,0,0,0,0,0,0,0,0,0,0,2.0343456,0,0,0,54.77,55.869999,36.200001,64.190002,6,1,1,0,0,10,4,1,348.5,230535.58,0,0,2842.1472 -665,807,1469,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,4,8.247612,8.3716002,0,3,0,0,0,-9,0,-1056.6149,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,80,60,15,1,0,-9,0,6.6284184,6.6284184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.419998,52.330002,-9,-9,4,1,1,0,0,11,4,0,1536,409034.56,0,0,2872.1499 -666,808,1470,-9,1472,1471,6,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.28333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,1,619.66669,28339.053,0,0,734.10614 -666,808,1471,1472,-9,-9,1,1,1,55,1,0,2,0,2,-9,1,1,0,0,4,7.0890503,7.006536,0,2,0,-9,29,0,7,-18.984098,0,0,0,48,2,5,3,-9,-9,2019,2,2,9,1,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.43577418,3,53,54,62.389999,56.709999,6,2,3,0,0,8,2,1,619.66669,28339.053,0,0,734.10614 -666,808,1472,1471,-9,-9,2,1,0,48,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,4,0,-7,59.632282,0,0,0,55,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.1847677,0,27.271961,3,62.389999,56.709999,53,54,7,2,3,0,0,8,2,1,619.66669,28339.053,0,0,734.10614 -666,809,1473,-9,1472,1471,3,1,1,25,2,0,2,0,1,-9,2,1,0,0,3,8.3044186,7.8570185,0,3,0,0,0,-9,0,-991.59375,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,35,40,15,1,0,-9,1,9.5420761,9.5420761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.200001,48.709999,-9,-9,4,2,3,0,0,8,4,1,615,-225416.53,0,0,2041.3209 -666,810,1474,-9,1472,1471,4,1,1,21,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1056.9453,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,8,1,1,1022,17969.615,0,0,2312.3064 -667,811,1475,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,8.4688883,8.3906269,0,3,0,0,0,-9,0,-1234.1277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,38,15,1,0,-9,0,13.53111,13.53111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.709999,54.5,-9,-9,5,1,1,0,0,11,4,1,420,187729.5,0,0,2371.4377 -668,812,1476,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1066.5532,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.220001,20.889999,-9,-9,6,1,1,0,0,2,1,0,1273,104528.58,0,0,3253.3008 -669,813,1477,-9,1479,1478,4,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.2287,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,0,1203.6666,29641.268,0,0,3282.3777 -669,813,1478,1479,-9,-9,2,1,1,38,1,1,1,0,2,-9,2,1,0,0,3,8.5184011,8.5931444,0,2,0,-9,9,0,3,-141.45262,0,0,0,35,1,3,1,-9,-9,2019,1,1,10,0,70,50,15,1,0,1,0,9.0764828,9.0764828,0,0,0,0,0,0,0,0,1,1,0,4.5328703,0,0,0,59.459999,46.990002,45,55.119999,6,1,1,0,0,9,4,0,1203.6666,29641.268,0,0,3282.3777 -669,813,1479,1478,-9,-9,1,1,0,35,1,1,1,0,1,-9,1,1,0,0,3,8.0152969,7.5504293,0,2,0,-9,9,0,-3,-120.82156,0,0,1,38,2,3,1,2,2,2019,1,2,10,2,22,13,15,1,0,1,0,12.252113,12.252113,0,0,0,0,0,0,0,42,1,1,0,0,0,44.811996,3,45,55.119999,59.459999,46.990002,6,1,1,0,0,9,4,0,1203.6666,29641.268,0,0,3282.3777 -670,814,1480,1481,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,1,1,0,0,0,1,0,-9,9,0,2,39.073009,-9,0,0,56,2,3,3,3,3,2019,4,2,34,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.540001,25.43,50,49,3,1,1,0,0,11,3,1,401,1950351.3,0,0,5447.9414 -670,814,1481,1480,-9,-9,2,1,1,56,1,0,0,0,2,-9,3,3,0,0,3,0,8.5524664,8.3229389,1,0,-9,9,0,-2,46.122707,-9,0,0,58,2,1,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9538755,8.3696966,0,0,50,49,24.540001,25.43,5,4,1,1,0,11,3,1,401,1950351.3,0,0,5447.9414 -671,815,1482,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-979.76447,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.549999,32.529999,-9,-9,5,1,1,0,1,13,1,0,1003,0,0,0,1896.428 -672,816,1483,-9,1485,1484,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.52252,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,1288.6666,1028878.9,0,0,2955.6682 -672,816,1484,1485,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,2,7.6478457,7.5348625,0,2,0,-9,30,0,0,4.9068122,0,0,0,50,1,3,1,3,3,2019,1,2,13,3,10,30,15,1,0,1,0,27.74239,27.74239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.290001,51.91,55.119999,42.099998,4,1,1,0,0,13,3,1,1288.6666,1028878.9,0,0,2955.6682 -672,816,1485,1484,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,3,7.8650804,7.7256718,0,2,0,-9,29,0,0,-26.590206,0,0,0,50,1,2,1,2,2,2019,1,1,9,1,21,20,15,1,0,1,0,14.356984,14.356984,0,0,0,0,0,0,0,0,1,1,0,6.1648169,0,0,0,55.119999,42.099998,26.290001,51.91,6,1,1,0,0,13,3,1,1288.6666,1028878.9,0,0,2955.6682 -672,817,1486,-9,1485,1484,3,1,1,20,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1026.1769,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,1,1,157,-110381.23,0,0,-95.362823 -673,818,1487,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.773715,8.7162342,0,3,0,0,0,-9,0,-867.70459,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,19,7,55,50,15,1,1,-9,0,9.5483551,9.5483551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.830002,57.810001,-9,-9,5,1,1,0,0,8,5,0,411,74086.07,0,0,3009.9946 -674,819,1488,1489,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.6556816,8.622488,0,2,0,-9,7,0,0,41.96785,0,0,0,51,2,4,1,2,2,2019,1,2,5,0,44,41,15,1,0,1,0,15.873038,15.873038,0,0,0,0,0,0,0,0,0,0,0,4.8487835,0,0,0,57.16,56.150002,52.310001,58.290001,5,1,1,0,0,2,5,1,383,1459794,0,0,4238.9844 -674,819,1489,1488,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,4,8.7248678,8.7379131,0,2,0,-9,7,0,0,-64.543312,0,0,0,51,2,4,1,2,2,2019,1,1,10,0,50,50,15,1,0,1,0,9.6679077,9.6679077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.310001,58.290001,57.16,56.150002,6,1,1,0,0,2,5,1,383,1459794,0,0,4238.9844 -674,820,1490,-9,1489,1488,3,1,0,19,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1012.8599,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.880001,42.43,-9,-9,6,1,1,0,0,2,1,1,1169,-24266.816,0,0,0 -675,821,1491,1492,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.3135023,7.2622309,0,1,0,-9,2,0,0,-32.071255,0,0,0,59,2,3,3,-9,-9,2019,2,1,11,0,23,0,15,1,0,3,0,8.190589,8.190589,0,0,0,0,0,0,0,0,0,0,0,.89349234,0,0,0,52.650002,48.939999,54.369999,54.799999,6,1,1,0,0,5,2,0,898.5,195261.75,0,0,560.27368 -675,821,1492,1491,-9,-9,1,1,1,59,1,0,0,0,2,-9,3,3,0,0,3,0,5.1701608,5.2330599,1,0,-9,2,0,0,115.91311,0,0,0,59,3,3,1,3,-9,2019,3,2,8,1,0,32,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4054275,0,0,54.369999,54.799999,52.650002,48.939999,6,1,1,1,0,5,2,0,898.5,195261.75,0,0,560.27368 -676,822,1493,-9,1494,-9,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.3256,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,3625.5,874229.75,0,0,3187.7043 -676,822,1494,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,0,4,8.8792429,9.2447081,0,4,0,0,0,-9,0,-1001.9337,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,30,55,15,1,0,-9,0,29.606899,29.606899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,1,3625.5,874229.75,0,0,3187.7043 -676,823,1495,-9,1494,-9,2,1,1,21,2,0,1,0,2,-9,3,3,0,0,3,7.3475246,7.1945057,0,3,0,0,0,-9,0,-987.18555,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,30,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,-9,-9,5,1,1,1,0,2,3,1,530,-117671.37,0,0,727.32593 -677,824,1496,1497,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,1,0,7.8450031,7.9562349,1,0,-9,7,0,-8,69.439552,0,0,0,71,1,4,3,3,2,2019,4,1,23,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7621779,0,0,40.389999,18.65,62.490002,55.09,3,1,1,0,0,2,4,1,438,1267942.5,0,0,3186.7871 -677,824,1497,1496,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,5.9599547,8.0884018,7.9116421,1,0,-9,7,0,8,39.455799,0,0,0,63,1,1,3,2,2,2019,4,2,6,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9160447,7.7493691,0,0,62.490002,55.09,40.389999,18.65,7,1,1,0,0,2,4,1,438,1267942.5,0,0,3186.7871 -678,825,1498,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-954.79956,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.1406771,0,0,0,53,46,-9,-9,5,1,1,0,1,2,1,1,353,7062.6235,0,0,931.86078 -679,826,1499,1500,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,7.3907175,7.7929482,0,1,0,-9,11,0,2,-40.018681,0,0,0,58,2,3,3,-9,-9,2019,2,2,11,0,95,62,15,1,0,3,0,1.8368946,1.8368946,0,0,0,0,0,0,0,2,0,0,0,0,0,1.2818819,3,58.869999,45.759998,54.369999,54.799999,6,1,1,0,0,12,3,1,388.5,675636.25,0,0,1564.2043 -679,826,1500,1499,-9,-9,2,1,0,58,1,0,0,0,2,-9,10,3,0,0,3,0,5.7518239,5.8650293,1,0,-9,11,0,-2,72.257065,0,0,0,60,2,4,1,2,2,2019,3,1,10,1,7,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6765227,0,0,54.369999,54.799999,58.869999,45.759998,3,1,1,0,0,12,3,1,388.5,675636.25,0,0,1564.2043 -680,827,1501,1502,1505,1504,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,4,8.3211966,8.4852781,0,1,0,-9,2,0,4,-53.956459,0,1,0,22,2,3,1,2,2,2019,1,5,11,0,50,40,15,1,0,1,0,10.30159,10.30159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.709999,48.060001,49.509998,41.82,6,1,1,0,0,4,4,1,2270,85306.875,0,0,1887.6549 -680,827,1502,1501,-9,-9,5,1,0,22,1,0,0,0,2,-9,2,1,0,0,3,7.4591217,7.4401369,0,1,0,-9,2,0,-4,-40.385132,0,1,1,26,2,4,1,-9,-9,2019,1,2,5,0,24,24,15,1,0,1,0,10.039058,10.039058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.509998,41.82,59.709999,48.060001,6,1,1,0,0,4,4,1,2270,85306.875,0,0,1887.6549 -680,828,1503,-9,1505,1504,4,1,1,22,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-906.43317,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,22,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.200001,65.779999,-9,-9,3,1,1,1,0,4,1,1,679,-235895.72,0,0,0 -680,829,1504,1505,-9,-9,3,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.3400326,8.2558708,0,1,0,-9,4,0,2,20.644165,0,0,0,46,2,4,1,-9,-9,2019,1,1,7,0,55,84,15,1,0,1,0,8.7316933,8.7316933,0,0,0,0,0,0,0,0,0,0,0,.46059906,0,0,0,61.279999,48.880001,45.18,53.5,3,1,1,0,0,4,4,1,711,237234.53,0,0,2962.752 -680,829,1505,1504,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.41851,7.6654363,0,1,0,-9,4,0,-2,24.700796,0,0,0,48,2,3,1,-9,-9,2019,1,3,12,1,28,25,15,1,0,1,0,6.8024368,6.8024368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.18,53.5,61.279999,48.880001,7,1,1,0,0,4,4,1,711,237234.53,0,0,2962.752 -681,830,1506,1507,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.2115793,6.8383217,0,1,0,-9,28,0,3,-53.231205,0,0,0,56,1,4,1,3,2,2019,1,2,12,1,15,15,15,1,0,1,0,7.2658181,7.2658181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.349998,46.310001,57.16,56.150002,6,1,1,0,0,2,5,1,231.5,1048744.1,0,0,2445.4575 -681,830,1507,1506,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,9.1339045,8.9754086,0,1,0,-9,28,0,-3,6.3912096,0,0,0,59,3,3,1,2,1,2019,1,1,9,0,43,39,15,1,0,1,0,17.618574,17.618574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,43.349998,46.310001,6,1,1,0,0,2,5,1,231.5,1048744.1,0,0,2445.4575 -682,831,1508,-9,1509,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-913.5708,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,0,181.5,-8339.6416,0,0,1675.9658 -682,831,1509,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,2,1,0,0,1,6.9768143,6.8958578,0,4,0,0,0,-9,0,-963.6283,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,25,12,32,14,15,1,1,-9,0,3.0556521,3.0556521,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.763152,3,30.68,30.969999,-9,-9,4,1,1,0,1,11,2,0,181.5,-8339.6416,0,0,1675.9658 -683,832,1510,1511,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,3,0,6.8524652,6.9243531,1,0,-9,7,0,-1,-3.3753047,0,0,0,84,2,5,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6683226,0,0,58.32,50.220001,65.830002,35.919998,6,1,1,0,0,13,2,1,583.5,296702.31,0,0,2528.5566 -683,832,1511,1510,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,5,0,6.2636414,6.2040339,1,0,-9,7,0,1,2.6327009,0,0,0,83,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9612255,0,0,65.830002,35.919998,58.32,50.220001,6,1,1,0,0,13,2,1,583.5,296702.31,0,0,2528.5566 -684,833,1512,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,0,3,0,8.4523029,8.1817904,3,0,0,0,-9,0,-1074.392,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6869564,8.3938942,0,0,50.709999,52.349998,-9,-9,6,1,1,0,0,6,4,1,925,113095.82,0,0,2546.0454 -685,834,1513,-9,1514,1515,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.14539,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,1080.5,283293.75,0,0,3817.7319 -685,834,1514,1515,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,-3,-9.7046137,0,0,1,42,3,4,1,3,3,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.099998,64.879997,51,56,5,1,1,0,0,12,4,1,1080.5,283293.75,0,0,3817.7319 -685,834,1515,1514,-9,-9,2,1,1,42,1,0,3,0,3,-9,2,1,0,0,4,9.2905569,9.4330053,0,2,0,-9,8,0,3,-74.208328,0,0,0,39,2,5,3,-9,-9,2019,2,1,9,1,50,0,15,1,0,3,0,24.300291,24.300291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,33.099998,64.879997,6,1,1,0,0,12,4,1,1080.5,283293.75,0,0,3817.7319 -685,834,1516,-9,1514,1515,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.92377,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,1080.5,283293.75,0,0,3817.7319 -686,835,1517,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,4.8935413,5.0158105,3,0,0,0,-9,0,-993.99048,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,31,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9667215,5.4782481,0,0,17.530001,43.049999,-9,-9,7,1,1,0,0,2,2,0,279,130507.01,0,0,887.5567 -687,836,1518,1519,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,2,8.7727671,8.6647797,0,1,0,-9,37,0,5,-53.905388,0,0,0,54,3,2,1,3,3,2019,1,2,7,0,12,16,15,1,0,1,0,57.251064,57.251064,0,0,0,0,0,0,0,0,0,0,0,3.8614826,0,0,0,58.560001,46.450001,30.200001,50.049999,6,1,1,0,0,13,5,1,622,686921.75,0,0,1735.1556 -687,836,1519,1518,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,2,7.1014037,7.4233871,0,1,0,-9,37,0,-5,-73.662712,0,0,0,59,3,2,1,3,3,2019,1,1,21,7,32,13,15,1,1,1,0,4.4428811,4.4428811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.200001,50.049999,58.560001,46.450001,6,1,1,0,0,13,5,1,622,686921.75,0,0,1735.1556 -688,837,1520,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1114.2739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.09,29.549999,-9,-9,3,3,4,1,0,8,1,0,2239,-5068.3433,0,0,1287.296 -688,838,1521,-9,1520,-9,2,1,1,22,2,0,0,1,2,0,7,2,0,0,3,7.0404773,6.6199708,0,3,0,0,0,-9,0,-990.01746,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.540001,41.650002,-9,-9,5,3,4,0,0,8,2,0,951,-184157.41,0,0,350.99411 -688,839,1522,-9,1520,-9,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,7.0963712,7.0941324,0,3,0,0,0,-9,0,-938.40588,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,25,25,15,1,0,-9,1,4.4788661,4.4788661,0,0,0,0,0,0,0,7,1,0,1,0,0,11.21629,3,41.790001,54.119999,-9,-9,5,3,4,0,0,8,2,0,1377,-89026.828,0,0,596.54987 -689,840,1523,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-993.19312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,6.7637277,0,28.50292,3,44.66,57.830002,-9,-9,5,1,1,0,0,4,1,1,301,-25049.791,0,0,-628.60278 -690,841,1524,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,1,0,6.325182,6.3715034,3,0,0,0,-9,0,-934.289,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1775179,0,0,62.150002,13.59,-9,-9,6,1,1,0,0,10,2,1,1590,120084.36,0,0,1924.6155 -691,842,1525,1526,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,0,0,0,0,0,68,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.290001,52.369999,57.919998,51.82,6,1,1,0,0,12,1,1,720,285086.75,0,0,2033.6542 -691,842,1526,1525,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,0,0,0,0,0,68,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.919998,51.82,56.290001,52.369999,4,1,1,0,0,12,1,1,720,285086.75,0,0,2033.6542 -692,843,1527,1530,-9,-9,2,1,1,48,1,0,2,0,3,-9,2,1,0,0,4,8.9507837,8.5856419,0,2,0,-9,23,0,1,-6.0450692,0,0,0,47,2,4,1,3,2,2019,1,1,10,0,44,45,15,1,0,1,0,17.718748,17.718748,0,0,0,0,0,0,0,0,1,1,0,7.5964823,0,0,0,59.139999,52.5,51.240002,58.84,5,1,1,0,0,2,4,1,1261.75,187537.55,0,0,3382.7488 -692,843,1528,-9,1530,1527,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-996.16571,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,2,4,1,1261.75,187537.55,0,0,3382.7488 -692,843,1529,-9,1530,1527,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-853.36902,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,1261.75,187537.55,0,0,3382.7488 -692,843,1530,1527,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,7.5946717,7.799655,0,2,0,-9,23,0,-1,-39.36021,0,0,0,48,3,4,1,2,2,2019,1,2,9,0,21,21,15,1,0,1,0,12.272783,12.272783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,59.139999,52.5,6,1,1,0,0,2,4,1,1261.75,187537.55,0,0,3382.7488 -693,844,1531,1532,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,8.958724,8.8836985,0,1,0,-9,40,0,-1,-56.586266,0,0,0,59,2,5,1,2,1,2019,1,1,9,0,40,36,15,1,0,1,0,23.214533,23.214533,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.150002,52.91,62.389999,56.709999,7,1,1,0,0,7,5,1,171.5,436608.63,0,0,3188.4102 -693,844,1532,1531,-9,-9,1,1,0,59,1,0,0,0,2,-9,1,1,0,0,5,5.709939,5.770865,0,1,0,-9,40,0,1,-9.3909416,0,0,0,58,2,4,1,2,2,2019,1,2,7,0,20,18,15,1,0,1,0,1.2310147,1.2310147,0,0,0,0,0,0,0,5.48,0,0,0,0,0,1.7799503,3,62.389999,56.709999,58.150002,52.91,7,1,1,0,0,7,5,1,171.5,436608.63,0,0,3188.4102 -694,845,1533,1534,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,6.8793812,6.8026996,1,0,-9,42,0,0,-91.36647,0,0,0,64,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2878151,6.722352,0,0,57.16,56.150002,51.080002,49.240002,6,1,1,0,0,5,3,1,699,1476259.3,0,0,3679.188 -694,845,1534,1533,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.4919329,7.8626695,1,0,-9,42,0,0,-56.828125,0,0,0,64,1,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2808075,7.7043929,0,0,51.080002,49.240002,57.16,56.150002,6,1,1,0,0,5,3,1,699,1476259.3,0,0,3679.188 -695,846,1535,1537,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,0,5,8.5368776,8.5871849,0,2,0,-9,6,0,0,-39.198761,0,0,1,35,1,3,1,-9,-9,2019,1,1,7,0,30,38,15,1,0,1,0,20.768526,20.768526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50.029999,52.619999,6,1,1,0,0,10,5,1,923.5,446791.28,0,0,6004.9624 -695,846,1536,-9,1535,1537,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.2239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,10,5,1,923.5,446791.28,0,0,6004.9624 -695,846,1537,1535,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,0,3,9.1506433,9.2441254,0,2,0,-9,6,0,0,-77.782425,0,0,0,35,1,5,1,1,1,2019,1,2,6,0,45,45,15,1,0,1,0,30.451044,30.451044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,51.73,58.82,5,4,2,0,0,10,5,1,923.5,446791.28,0,0,6004.9624 -695,846,1538,-9,1535,1537,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.35046,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,10,5,1,923.5,446791.28,0,0,6004.9624 -696,847,1539,1540,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,0,6.7113013,6.8110309,1,0,-9,6,0,-2,1.8901207,0,0,0,62,3,4,1,2,2,2019,3,1,11,0,0,21,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.2943308,6.7037802,14.087152,3,57.16,56.150002,55,53,7,1,1,0,0,12,5,1,171.5,1563681.8,0,0,5504.5889 -696,847,1540,1539,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,0,4,9.3191109,9.7032194,0,1,0,-9,6,0,2,-57.342007,0,0,0,60,2,4,3,2,2,2019,2,2,11,1,45,40,15,1,0,4,0,41.63382,41.63382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,53,57.16,56.150002,5,1,1,0,0,12,5,1,171.5,1563681.8,0,0,5504.5889 -697,848,1541,1542,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,5,8.8264122,8.9475203,0,1,0,-9,3,0,-7,46.631489,0,0,1,37,1,5,1,-9,-9,2019,1,1,7,0,45,50,15,1,0,1,0,12.693995,12.693995,0,0,0,0,0,0,0,0,0,0,0,1.2834736,0,0,0,47.669998,58.09,54.099998,59.110001,7,1,1,0,0,7,5,1,217,77568.688,0,0,7167.6738 -697,848,1542,1541,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,5,9.785491,9.6458111,0,1,0,-9,3,0,7,32.925053,0,0,0,30,2,5,1,1,1,2019,1,2,12,3,45,45,15,1,0,1,0,39.692162,39.692162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,47.669998,58.09,6,1,1,0,0,7,5,1,217,77568.688,0,0,7167.6738 -698,849,1543,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,0,3,8.1807461,8.0363512,0,3,0,0,0,-9,0,-930.10181,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,35,39,15,1,0,-9,0,9.1213131,9.1213131,0,0,0,0,0,0,0,0,1,1,0,4.0630856,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,2,4,1,589,280168.25,0,0,572.22382 -699,850,1544,-9,1545,1546,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1096.1223,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,8,1,0,340,57629.234,0,0,666.83734 -699,850,1545,1546,-9,-9,2,1,0,39,1,0,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,18,0,-3,0,0,0,1,42,2,2,1,3,2,2019,3,1,12,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.720001,45.549999,55.849998,46.529999,5,2,3,1,0,8,1,0,340,57629.234,0,0,666.83734 -699,850,1546,1545,-9,-9,1,1,1,42,1,0,3,0,2,-9,1,1,0,0,2,0,0,0,2,0,-9,18,0,3,0,0,0,0,39,2,3,3,3,1,2019,2,2,8,1,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.849998,46.529999,47.720001,45.549999,5,2,3,0,0,8,1,0,340,57629.234,0,0,666.83734 -699,850,1547,-9,1545,1546,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.93188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,1,0,340,57629.234,0,0,666.83734 -699,851,1548,-9,1545,1546,4,1,1,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1040.2314,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.09,45.200001,-9,-9,2,2,3,0,0,8,1,0,65,0,0,0,-537.81818 -700,852,1549,1550,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,0,4,8.4230938,8.1451139,0,2,0,-9,6,0,3,-49.956081,0,0,0,39,2,3,1,-9,-9,2019,1,1,9,0,43,36,15,1,0,1,0,8.6657543,8.6657543,0,0,0,0,0,0,0,42,1,1,0,0,0,48.07336,3,51.389999,56.66,56.610001,49.68,7,1,1,0,0,10,4,1,378.33334,570596.31,0,0,3781.1365 -700,852,1550,1549,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,1,3,8.3513498,8.4712191,0,2,0,-9,6,0,-3,74.747208,0,0,1,42,2,4,1,3,2,2019,1,2,7,0,48,36,15,1,0,1,0,10.517322,10.517322,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.196562,3,56.610001,49.68,51.389999,56.66,4,1,1,0,0,10,4,1,378.33334,570596.31,0,0,3781.1365 -700,852,1551,-9,1550,1549,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.1006,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,378.33334,570596.31,0,0,3781.1365 -701,853,1552,-9,1553,1554,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.29901,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,655,63444.293,0,0,3222.2246 -701,853,1553,1554,-9,-9,1,1,0,31,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,12,0,-4,-73.160622,0,0,1,35,2,5,1,2,-9,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.29498,3,21.49,30.940001,59.43,58.049999,5,1,1,0,0,4,3,1,655,63444.293,0,0,3222.2246 -701,853,1554,1553,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,5,8.2908659,9.0882978,0,2,0,-9,6,0,4,-121.78965,0,0,0,31,2,1,3,-9,-9,2019,2,1,2,0,58,37,15,1,0,3,0,8.8471527,8.8471527,0,0,0,0,0,0,0,68,1,1,0,0,0,120.99051,3,59.43,58.049999,21.49,30.940001,7,1,1,0,0,4,3,1,655,63444.293,0,0,3222.2246 -702,854,1555,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,5.9302821,5.5639577,3,0,0,0,-9,0,-1038.8888,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9241595,5.6132722,0,0,52.290001,44.779999,-9,-9,7,1,1,0,0,4,2,0,1908,164367.2,0,0,1068.0237 -703,855,1556,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,7.4588599,7.7551231,0,3,0,0,0,-9,0,-867.45453,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,26,20,15,1,1,-9,0,7.730226,7.730226,0,0,0,0,0,0,0,0,1,1,0,.40316349,0,0,0,43.84,58.369999,-9,-9,6,1,1,0,0,10,3,0,807,-25932.582,0,0,13.602082 -704,856,1557,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,1,0,6.9169741,6.8839731,3,0,0,0,-9,0,-942.78156,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,10.304244,0,14.5,1,1,0,0,7.0475044,11.556215,3,43.849998,27.32,-9,-9,5,1,1,0,0,2,2,1,121,674473.06,0,0,768.73395 -704,857,1558,-9,-9,-9,2,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.062561,8.1822042,0,3,0,-9,0,-9,0,-978.74188,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,0,15,1,0,-9,0,10.73109,10.73109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,-9,-9,5,1,1,0,0,2,4,1,2322,-67773.859,0,0,731.46021 -705,858,1559,1562,-9,-9,2,1,0,42,1,0,3,0,1,-9,2,1,0,0,3,7.3780417,7.4389753,0,2,0,-9,17,0,-4,-15.549383,0,0,1,46,2,3,1,3,1,2019,1,1,8,0,16,15,15,1,0,1,0,9.2128162,9.2128162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,51.639999,45.240002,50.240002,1,1,1,0,0,8,3,1,972.59998,193923.13,0,0,2735.397 -705,858,1560,-9,1559,1562,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.2939,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,3,1,972.59998,193923.13,0,0,2735.397 -705,858,1561,-9,1559,1562,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.04156,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,3,1,972.59998,193923.13,0,0,2735.397 -705,858,1562,1559,-9,-9,1,1,1,46,1,0,3,0,2,-9,1,1,0,0,3,8.9035473,8.6041622,0,2,0,-9,17,0,4,44.888065,0,0,0,42,1,3,1,-9,-9,2019,1,2,10,0,48,80,15,1,0,1,0,12.568954,12.568954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.240002,50.240002,52.650002,51.639999,2,1,1,0,0,8,3,1,972.59998,193923.13,0,0,2735.397 -705,858,1563,-9,1559,1562,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.8308,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,3,1,972.59998,193923.13,0,0,2735.397 -706,859,1564,1565,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,7.4109178,7.6969781,6.299778,1,0,-9,29,0,-1,25.400358,0,0,0,59,2,3,1,2,2,2019,1,2,14,3,17,32,15,1,0,1,0,11.269444,11.269444,0,0,0,0,0,0,0,0,1,1,0,6.439888,0,0,0,42.939999,42.84,58.080002,43.459999,3,1,1,0,1,12,3,1,734,82665.648,0,0,992.49957 -706,859,1565,1564,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,7.5078506,7.5368643,0,1,0,-9,27,0,1,17.247278,0,0,0,58,2,2,1,2,2,2019,1,1,10,0,35,40,15,1,0,1,0,6.8730946,6.8730946,0,0,0,0,0,0,0,2,1,1,0,0,0,.017792959,3,58.080002,43.459999,42.939999,42.84,6,1,1,0,1,12,3,1,734,82665.648,0,0,992.49957 -706,860,1566,-9,1564,1565,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,8.1084156,7.8444257,0,3,0,0,0,-9,0,-962.5661,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,45,45,15,1,0,-9,1,5.6280904,5.6280904,0,0,0,0,0,0,0,0,1,1,0,.65530682,0,0,0,47.450001,47.369999,-9,-9,5,1,1,0,0,12,3,1,3192,-2926.9294,0,0,815.26331 -707,861,1567,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,0,4,8.2398462,8.2859859,0,3,0,0,0,-9,0,-1139.327,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,37,15,1,0,-9,0,12.538233,12.538233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,6,4,2,0,0,2,4,0,973,734793.63,0,0,2711.8691 -708,862,1568,1569,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,9.1062479,8.9731302,0,1,0,-9,18,0,-5,-51.208267,0,0,0,60,2,4,1,3,3,2019,1,1,8,0,82,42,15,1,0,1,0,10.884719,10.884719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,59.290001,49.68,6,1,1,0,0,12,5,0,723,2466369,0,0,4293.2173 -708,862,1569,1568,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.2008781,8.4048662,0,1,0,-9,17,0,5,9.7694044,0,0,0,55,2,3,1,2,3,2019,1,2,6,0,21,26,15,1,0,1,0,15.204826,15.204826,0,0,0,0,0,0,0,0,0,0,0,6.3900537,0,0,0,59.290001,49.68,52.990002,51.279999,5,1,1,0,0,12,5,0,723,2466369,0,0,4293.2173 -709,863,1570,1571,-9,-9,2,1,1,53,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,33,0,1,-34.265724,0,0,0,52,1,3,1,1,1,2019,3,1,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2256789,0,0,0,53,54,48,49,6,1,1,0,0,4,4,1,1009.5,2046454.3,0,0,3942.3926 -709,863,1571,1570,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.8219156,8.6039639,0,1,0,-9,33,0,-1,-114.29978,0,0,0,53,1,4,3,2,2,2019,2,2,12,2,40,0,15,1,0,4,0,21.172338,21.172338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,53,54,5,1,1,0,0,4,4,1,1009.5,2046454.3,0,0,3942.3926 -709,864,1572,-9,1571,1570,3,1,1,21,2,0,0,1,3,0,7,2,0,0,4,7.7995582,7.9417515,0,3,0,0,0,-9,0,-805.78259,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,37,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,3,1,656,-44887.105,0,0,111.77024 -709,865,1573,-9,1571,1570,4,1,0,19,2,0,0,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-846.42279,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.32129848,0,0,0,33.310001,61.939999,-9,-9,5,1,1,0,0,4,1,1,553,-165682.81,0,0,84.463486 -710,866,1574,-9,-9,-9,2,1,1,34,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-932.95453,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.129999,39.669998,-9,-9,2,1,1,1,1,7,1,0,692,49929.086,0,0,146.17229 -711,867,1575,1577,-9,-9,1,1,1,43,1,0,2,0,1,-9,97,3,0,0,4,8.6457796,8.4020195,0,2,0,-9,18,0,-1,142.8376,0,0,0,44,2,4,3,1,1,2019,4,2,10,0,55,60,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.810001,57.220001,41.529999,63.130001,6,2,3,0,0,7,3,1,825.75,1172058.1,0,0,2181.9016 -711,867,1576,-9,1577,1575,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.78284,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3719867,0,0,0,41.049999,52.759998,-9,-9,5,2,3,0,0,7,3,1,825.75,1172058.1,0,0,2181.9016 -711,867,1577,1575,-9,-9,2,1,0,44,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,1,-99.616974,0,0,1,43,1,4,3,3,1,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.529999,63.130001,51.810001,57.220001,6,2,3,0,0,7,3,1,825.75,1172058.1,0,0,2181.9016 -711,867,1578,-9,1577,1575,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.3672,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,7,3,1,825.75,1172058.1,0,0,2181.9016 -712,868,1579,1580,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.7574196,7.4002781,1,0,-9,9,0,-3,-7.014987,0,0,0,71,2,4,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9658504,7.0568476,0,0,46.48,55.599998,62.490002,55.09,4,1,1,0,0,1,4,1,2037,1160547.4,0,0,5195.5566 -712,868,1580,1579,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.5642099,8.5707512,1,0,-9,9,0,3,60.223415,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8627629,8.327157,0,0,62.490002,55.09,46.48,55.599998,6,1,1,0,0,1,4,1,2037,1160547.4,0,0,5195.5566 -713,869,1581,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,2,0,6.0213728,5.837038,3,0,0,0,-9,0,-1175.6082,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0543408,5.3453383,0,3,41.169998,42.16,-9,-9,5,1,1,0,0,5,2,1,204,49173.809,0,0,980.39221 -714,870,1582,-9,1584,1583,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.19055,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,2,0,1730.6666,-43234.602,0,0,3817.2449 -714,870,1583,1584,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,6.9105916,7.0671382,0,2,0,-9,17,0,4,92.25309,0,0,0,39,2,4,3,-9,-9,2019,2,1,9,1,24,24,15,1,0,3,0,5.2197213,5.2197213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,49,56,6,2,3,0,0,8,2,0,1730.6666,-43234.602,0,0,3817.2449 -714,870,1584,1583,-9,-9,1,1,0,39,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,17,0,-4,10.809448,0,0,1,43,2,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,56,6,2,3,0,0,8,2,0,1730.6666,-43234.602,0,0,3817.2449 -715,871,1585,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,2,1,0,0,2,7.753973,8.0494928,7.1703148,3,0,0,0,-9,0,-1123.2775,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,10,32,32,15,1,1,-9,0,7.3468657,7.3468657,1,0,0,0,0,0,0,0,1,1,0,.41393724,7.273509,0,0,32.619999,36.549999,-9,-9,3,1,1,0,1,7,4,1,80,194219.11,0,0,2903.8528 -716,872,1586,1588,-9,-9,2,1,1,49,1,0,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,1,-9,6,0,-9,0,0,43,3,3,1,-9,-9,2019,1,1,2,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4312396,0,0,0,41.34,56.619999,45.889999,43.68,2,1,1,0,0,2,1,0,519.5,295462.88,0,0,1501.4153 -716,872,1587,-9,1588,1586,6,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-903.69482,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,1,0,519.5,295462.88,0,0,1501.4153 -716,872,1588,1586,-9,-9,1,1,0,43,1,0,2,0,3,-9,2,1,0,0,3,0,0,0,2,0,-9,1,-9,-6,0,-9,0,1,49,2,3,1,-9,-9,2019,1,2,0,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.889999,43.68,41.34,56.619999,2,1,1,0,0,2,1,0,519.5,295462.88,0,0,1501.4153 -716,872,1589,-9,1588,1586,5,1,0,17,2,0,2,0,2,-9,97,3,0,0,3,0,0,0,2,0,-9,0,-9,0,-1182.7617,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.779999,-9,-9,1,1,1,0,0,2,1,0,519.5,295462.88,0,0,1501.4153 -716,873,1590,-9,1588,-9,3,1,1,22,2,0,2,0,3,-9,2,1,0,0,3,7.3406262,7.7174067,0,3,0,-9,0,-9,0,-960.75183,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,40,0,15,1,0,-9,1,6.0704069,6.0704069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.470001,36.73,-9,-9,2,1,1,0,0,2,3,0,1208,45892.949,0,0,-437.75671 -716,874,1591,-9,1588,1586,4,1,1,22,2,0,2,0,3,-9,2,1,0,0,3,6.7048616,6.6678267,0,3,0,-9,0,-9,0,-1021.1219,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,3,0,48,0,15,1,0,-9,1,2.3351204,2.3351204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.720001,43.209999,-9,-9,5,1,1,0,0,2,2,0,542,-157537.66,0,0,234.98036 -717,875,1592,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,0,2,0,6.8839254,6.7629337,3,0,0,0,-9,0,-1018.9218,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1325197,0,0,41.75,37.950001,-9,-9,2,1,1,0,0,11,2,1,630,246637.86,0,0,1314.446 -718,876,1593,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,0,2,7.1384025,7.248385,5.8256764,4,0,0,0,-9,0,-948.05273,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,18,20,15,1,1,-9,0,7.1669941,7.1669941,0,0,0,0,0,0,0,2,1,0,1,4.9646525,0,0,3,22.530001,30.379999,-9,-9,1,1,1,0,0,10,2,0,1512.5,159080.06,0,0,1211.0735 -718,876,1594,-9,1593,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,4,0,0,0,-9,0,-926.17072,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31,32,-9,-9,3,1,1,0,0,10,2,0,1512.5,159080.06,0,0,1211.0735 -719,877,1595,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,3,8.5738869,8.5411663,0,3,0,0,0,-9,0,-968.15051,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,2,38,0,15,1,0,-9,0,16.718576,16.718576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.740002,-9,-9,2,1,1,0,0,6,5,0,4070,119236.95,0,0,1719.2139 -720,878,1596,-9,1597,1598,4,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,5.2587457,5.2696261,0,2,0,0,0,-9,0,-974.32422,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.73,59.759998,-9,-9,5,1,1,0,0,9,5,1,855.33331,2764083.5,0,0,3254.2866 -720,878,1597,1598,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,3,8.4415092,8.0099468,0,2,0,-9,7,0,-4,-6.8998485,-9,0,0,50,1,3,1,-9,-9,2019,1,1,6,0,16,0,15,1,0,1,0,19.729435,19.729435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,47.150002,56.66,6,1,1,0,0,9,5,1,855.33331,2764083.5,0,0,3254.2866 -720,878,1598,1597,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,0,3,8.6360674,8.9736013,0,2,0,-9,21,0,4,144.47716,0,0,0,46,1,3,1,2,3,2019,1,2,12,0,40,40,15,1,0,1,0,21.254307,21.254307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,56.66,57.330002,53.459999,6,1,1,0,0,9,5,1,855.33331,2764083.5,0,0,3254.2866 -721,879,1599,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,6.2190604,6.5625076,3,0,0,0,-9,0,-915.64429,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4627781,0,0,45.32,54.77,-9,-9,5,1,1,0,0,9,2,1,654,306096.84,0,0,1147.8785 -722,880,1600,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,3,0,7.3771005,7.5662031,3,0,0,0,-9,0,-1136.3341,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.0228682,0,0,53,44,-9,-9,6,1,1,0,0,13,2,1,250,74604.469,0,0,1748.5497 -723,881,1601,-9,1604,1602,3,1,1,17,2,0,3,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1081.5291,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.369999,-9,-9,6,1,1,0,0,9,4,1,1441,2461300,0,0,3197.6147 -723,881,1602,1604,-9,-9,1,1,1,54,1,0,3,0,2,-9,2,1,0,0,4,8.9310284,8.7525473,0,2,0,-9,10,0,2,.68547881,0,0,0,52,1,4,1,3,3,2019,1,2,15,5,45,45,15,1,1,1,0,15.682929,15.682929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.59,60.849998,49.439999,56.93,6,1,1,0,0,9,4,1,1441,2461300,0,0,3197.6147 -723,881,1603,-9,1604,1602,5,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.0282,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,1441,2461300,0,0,3197.6147 -723,881,1604,1602,-9,-9,2,1,0,52,1,0,3,0,1,-9,2,1,0,0,4,8.1088219,8.0515728,0,2,0,-9,10,0,-2,-30.800196,0,0,0,54,2,4,1,2,3,2019,1,1,12,0,29,16,15,1,0,1,0,10.593625,10.593625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,56.93,38.59,60.849998,6,1,1,0,0,9,4,1,1441,2461300,0,0,3197.6147 -723,881,1605,-9,1604,1602,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-956.86987,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,9,4,1,1441,2461300,0,0,3197.6147 -724,882,1606,1607,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.9869657,7.7930651,1,0,-9,10,0,13,-186.46313,0,0,0,58,1,2,1,2,1,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2484446,8.1101294,17.037943,3,51.77,58.57,48.700001,32.130001,6,1,1,0,0,12,5,1,351.5,1716105.5,0,0,4237.4087 -724,882,1607,1606,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,2,9.1822815,9.0059309,0,1,0,-9,10,0,-13,15.751794,0,0,0,71,1,4,3,3,3,2019,2,1,17,4,46,46,15,1,1,4,0,18.801485,18.801485,0,0,0,0,0,0,0,0,1,1,0,6.4730067,0,0,0,48.700001,32.130001,51.77,58.57,6,1,1,0,0,12,5,1,351.5,1716105.5,0,0,4237.4087 -725,883,1608,1609,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,8.540925,8.3140917,0,1,0,-9,1,-9,0,-63.213741,-9,1,0,25,1,5,1,-9,-9,2019,1,1,9,0,38,0,15,1,0,1,0,14.871685,14.871685,0,0,0,0,0,0,0,0,0,0,0,2.5223019,0,0,0,57.060001,57.759998,51.139999,60.450001,6,1,1,0,0,5,5,0,585,-58213.84,0,0,2627.4058 -725,883,1609,1608,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,5,8.1903439,8.1830492,0,1,0,1,1,-9,0,47.543949,0,1,1,25,1,5,1,2,3,2019,1,2,13,3,38,37,15,1,0,1,0,12.010253,12.010253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,57.060001,57.759998,6,1,1,0,0,5,5,0,585,-58213.84,0,0,2627.4058 -726,884,1610,1611,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.1017246,6.0164452,1,0,-9,7,0,-4,39.431641,0,0,0,74,3,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.693681,6.0410361,16.515358,1,52.310001,58.290001,61.91,40.48,6,1,1,0,0,12,2,1,307,1184859.8,0,0,2189.3882 -726,884,1611,1610,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,5,0,6.5153465,6.2807121,1,0,-9,7,0,4,12.046108,0,0,0,70,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7065148,6.337769,0,0,61.91,40.48,52.310001,58.290001,6,1,1,0,0,12,2,1,307,1184859.8,0,0,2189.3882 -727,885,1612,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,0,5,8.1133385,7.9794512,0,3,0,0,0,-9,0,-1038.5048,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,30,30,15,1,0,-9,0,8.7441282,8.7441282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.599998,44.34,-9,-9,6,1,1,0,0,2,4,0,991,30863.971,0,0,2110.1201 -728,886,1613,-9,1616,1615,5,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1054.7947,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.788409,3,62.389999,56.709999,-9,-9,7,1,1,0,0,2,4,0,828,1215350.3,0,0,3947.2827 -728,886,1614,-9,1616,1615,6,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-951.54321,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8351223,3,57.060001,57.759998,-9,-9,7,1,1,0,0,2,4,0,828,1215350.3,0,0,3947.2827 -728,886,1615,1616,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,4,8.3596344,8.247323,0,2,0,-9,25,0,1,-63.510132,0,0,0,48,2,3,1,3,3,2019,1,1,12,0,45,46,15,1,0,1,0,14.150083,14.150083,0,0,0,0,0,0,0,0,1,1,0,.72948647,0,0,0,40.48,60.049999,43.759998,55.68,5,1,1,0,0,2,4,0,828,1215350.3,0,0,3947.2827 -728,886,1616,1615,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,8.2513447,8.2387476,0,2,0,-9,27,0,-1,85.853539,0,0,0,49,1,4,1,1,3,2019,1,2,7,1,45,37,15,1,0,1,0,11.939719,11.939719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.759998,55.68,40.48,60.049999,6,1,1,0,0,2,4,0,828,1215350.3,0,0,3947.2827 -728,887,1617,-9,1616,1615,3,1,0,21,2,0,2,0,1,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-868.36633,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.279999,62.599998,-9,-9,6,1,1,1,0,2,1,0,711,142444.58,0,0,299.74185 -728,888,1618,-9,1616,1615,4,1,0,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1022.2523,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,22,9,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.48,64.050003,-9,-9,6,1,1,0,0,2,1,0,463,0,0,0,497.8812 -729,889,1619,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-930.48151,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.389999,40.889999,-9,-9,5,1,1,0,0,13,1,0,2058,33022.215,0,0,2820.6821 -729,890,1620,-9,1619,-9,2,1,1,33,2,0,0,0,2,-9,2,1,0,0,3,7.4562464,7.2833238,0,3,0,0,0,-9,0,-1089.207,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,30,30,15,1,0,-9,1,5.3867011,5.3867011,0,0,0,0,0,0,0,71.5,1,1,0,0,0,64.31395,3,50.82,57.779999,-9,-9,6,1,1,0,0,13,3,0,235,71317.766,0,0,779.5799 -729,891,1621,-9,1619,-9,3,1,1,30,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1103.7605,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,53,-9,-9,5,1,1,0,0,13,1,0,332,92583.68,0,0,879.55676 -730,892,1622,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-981.52197,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6999316,0,0,0,64.25,42,-9,-9,7,1,1,0,0,12,1,1,794,60505.871,0,0,-692.44312 -731,893,1623,1624,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,0,4,0,7.0670824,6.9012094,1,0,-9,53,0,1,-79.756416,0,0,0,84,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,4.717567,0,0,0,0,0,1,1,0,3.2122953,7.0179305,0,0,62.700001,41.290001,57.16,56.150002,6,1,1,0,0,9,2,1,739.5,661550.13,0,0,2452.3372 -731,893,1624,1623,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,0,4,0,5.4379621,5.6221256,1,0,-9,53,0,-1,76.501778,0,0,0,85,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6369286,5.1867437,0,0,57.16,56.150002,62.700001,41.290001,6,1,1,0,0,9,2,1,739.5,661550.13,0,0,2452.3372 -732,894,1625,1626,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.2925301,5.9317021,1,0,-9,49,0,-3,160.52031,0,0,0,73,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1973095,6.2171454,0,0,62.009998,38.869999,57.810001,18.610001,6,1,1,0,0,8,2,1,588,593918.25,0,0,1952.3413 -732,894,1626,1625,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,5.8424363,5.6496744,1,0,-9,49,0,3,-184.48561,0,0,0,70,2,4,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9466429,5.4460449,0,0,57.810001,18.610001,62.009998,38.869999,3,1,1,0,0,8,2,1,588,593918.25,0,0,1952.3413 -733,895,1627,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,2,0,5.7762313,5.7378116,3,0,0,0,-9,0,-1050.7246,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86806411,5.637661,0,0,32.860001,20.15,-9,-9,5,1,1,0,0,4,2,1,527,147426.56,0,0,927.42035 -734,896,1628,1629,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,0,4,6.2928972,6.154624,0,1,0,-9,44,0,-3,-41.167942,0,0,0,69,3,2,3,3,2,2019,2,2,9,1,8,8,15,1,0,4,0,6.8230247,6.8230247,0,0,0,0,0,0,0,2,1,1,0,4.4066877,0,0,1,60.130001,49.27,61.279999,35.650002,3,1,1,0,0,6,2,1,626,-61195.105,0,0,2666.7524 -734,896,1629,1628,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.3032365,7.1734338,1,0,-9,44,0,3,47.063702,0,0,0,66,3,4,1,-9,-9,2019,3,1,12,2,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.4096353,7.2340784,0,0,61.279999,35.650002,60.130001,49.27,5,1,1,0,0,6,2,1,626,-61195.105,0,0,2666.7524 -735,897,1630,1631,-9,-9,2,1,0,56,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,9,0,0,50.290733,0,0,0,65,1,5,3,2,2,2019,4,1,7,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,60.02,56.419998,6,1,1,0,0,5,5,1,231,2907655,0,0,4312.1323 -735,897,1631,1630,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,5,0,8.9580336,9.1645918,1,0,-9,9,0,9,119.18495,0,0,0,56,1,5,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.6600056,0,0,60.02,56.419998,57.060001,57.759998,6,1,1,0,0,5,5,1,231,2907655,0,0,4312.1323 -736,898,1632,1633,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.1554108,8.4917717,0,1,0,-9,32,0,4,-5.8604212,0,0,0,52,3,4,1,3,3,2019,1,1,8,0,41,40,15,1,0,1,0,11.336238,11.336238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,53,55,4,1,1,0,0,9,5,1,710.5,2702438,0,0,3356.0864 -736,898,1633,1632,-9,-9,1,1,1,52,1,0,0,0,3,-9,1,1,0,0,4,8.0752554,8.1501017,0,1,0,-9,32,0,-4,-175.86067,0,0,0,56,2,3,1,3,3,2019,1,2,9,1,30,20,15,1,0,1,0,16.64529,16.64529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,54.369999,54.799999,6,1,1,0,0,9,5,1,710.5,2702438,0,0,3356.0864 -737,899,1634,1635,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,0,3,7.3875475,7.1328845,6.5413413,2,0,-9,5,0,-2,98.033821,0,0,0,55,3,2,3,1,3,2019,2,2,12,2,37,18,15,1,0,4,0,4.4269371,4.4269371,0,0,0,0,0,0,0,0,1,1,0,0,6.1856041,0,0,47,50,33.720001,31.049999,5,1,1,0,0,13,2,1,615.66669,-23368.869,0,0,2312.6416 -737,899,1635,1634,-9,-9,2,1,1,55,1,0,1,0,3,-9,4,3,0,1,2,0,5.1217499,5.4658766,2,0,-9,5,0,2,-78.104744,0,0,0,53,2,3,1,3,2,2019,3,1,26,12,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4102192,0,0,33.720001,31.049999,47,50,3,1,1,0,1,13,2,1,615.66669,-23368.869,0,0,2312.6416 -737,899,1636,-9,1634,1635,3,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.1205,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,2,1,615.66669,-23368.869,0,0,2312.6416 -738,900,1637,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,9.0910683,9.0240307,0,3,0,0,0,-9,0,-1092.9327,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,60,50,15,1,0,-9,0,14.430289,14.430289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.91,42.650002,-9,-9,6,1,1,0,0,12,5,1,381,849038.69,0,0,1310.6942 -739,901,1638,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,0,4,9.21803,9.4147091,0,3,0,0,0,-9,0,-890.27362,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,30,40,15,1,1,-9,0,58.231888,58.231888,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.506693,3,44.77,59.169998,-9,-9,6,4,2,0,0,8,5,1,624,1453186.1,0,0,4269.356 -740,902,1639,1640,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.2406111,7.1958761,1,0,-9,44,0,2,-45.267021,0,0,0,64,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5823116,7.2979913,13.517942,3,62.66,52.400002,60.119999,54.799999,6,1,1,0,0,4,3,1,241,1202527,0,0,4032.9995 -740,902,1640,1639,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.6126533,7.5265107,1,0,-9,44,0,-2,12.454109,0,0,0,66,2,3,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3674364,7.3106117,0,3,60.119999,54.799999,62.66,52.400002,7,1,1,0,0,4,3,1,241,1202527,0,0,4032.9995 -741,903,1641,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,7.5601606,7.6160488,0,3,0,0,0,-9,0,-1145.4326,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,19,18,15,1,0,-9,0,12.28246,12.28246,0,0,0,0,0,0,0,0,1,1,0,2.918107,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,1,3,1,346,13459.771,0,0,1149.8796 -742,904,1642,-9,1646,1643,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,651.20001,284843.63,0,0,2648.2283 -742,904,1643,1646,-9,-9,2,1,1,48,1,0,3,0,1,-9,2,1,0,0,3,8.912962,9.2413187,0,2,0,-9,9,0,3,-28.222073,0,0,0,45,1,2,3,2,3,2019,2,1,30,10,30,40,15,1,1,3,0,33.219833,33.219833,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.0799999,68.75,28.690001,50.849998,1,1,1,0,0,6,4,1,651.20001,284843.63,0,0,2648.2283 -742,904,1644,-9,1646,1643,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-942.66071,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,6,4,1,651.20001,284843.63,0,0,2648.2283 -742,904,1645,-9,1646,1643,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.65649,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,651.20001,284843.63,0,0,2648.2283 -742,904,1646,1643,-9,-9,1,1,0,45,1,0,3,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,9,0,-3,-48.361618,0,0,0,48,1,3,1,1,1,2019,3,2,28,12,0,24,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.97195,3,28.690001,50.849998,4.0799999,68.75,3,1,1,0,0,6,4,1,651.20001,284843.63,0,0,2648.2283 -743,905,1647,1648,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,4,7.8914671,7.7177801,0,1,0,-9,2,0,-2,63.188068,0,1,1,25,2,4,1,-9,-9,2019,1,1,12,1,42,40,15,1,0,1,0,7.1900573,7.1900573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,53.09,46.16,58.619999,4,1,1,0,0,10,4,0,461,-15757.516,0,0,3104.7783 -743,905,1648,1647,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,8.3370018,8.5277081,0,1,0,-9,2,0,2,-100.64801,0,1,0,23,1,4,1,-9,-9,2019,1,2,11,0,45,43,15,1,0,1,0,9.4035206,9.4035206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,46.16,53.09,6,1,1,0,0,10,4,0,461,-15757.516,0,0,3104.7783 -744,906,1649,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,1,3,7.4993138,7.7207098,0,3,0,0,0,-9,0,-886.05652,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,36,0,15,1,0,-9,0,4.9562373,4.9562373,0,0,0,0,0,0,0,2,1,1,0,0,0,5.133492,3,48.209999,37.040001,-9,-9,5,1,1,0,0,9,3,0,192,132173.39,0,0,302.43542 -745,907,1650,1651,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,0,1,0,0,0,1,0,-9,10,0,1,-114.72004,0,0,0,73,1,4,1,3,3,2019,3,2,22,8,0,0,15,4,1,1,0,0,0,1,5.9676204,1.5058266,0,0,0,38.672421,0,1,1,0,6.098135,0,0,0,22.139999,39.25,57.16,56.150002,6,1,1,0,0,4,2,1,1566.5,189593.19,0,0,3467.6724 -745,907,1651,1650,-9,-9,2,1,1,73,1,0,0,0,1,-9,2,1,0,0,4,7.4050574,7.6818223,0,1,0,-9,10,0,-1,83.528755,0,0,0,74,1,1,3,2,2,2019,2,1,7,1,5,12,15,1,0,4,0,46.146538,46.146538,0,0,0,0,0,0,0,42,1,1,0,8.6478558,0,33.384731,1,57.16,56.150002,22.139999,39.25,6,1,1,0,0,4,2,1,1566.5,189593.19,0,0,3467.6724 -746,908,1652,1653,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,2,0,0,0,0,83,3,2,3,-9,-9,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.709999,33.490002,60.48,24.969999,4,4,5,0,0,8,1,0,488.5,-116068.78,0,0,175.57321 -746,908,1653,1652,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,55,0,-2,0,0,0,0,85,3,3,3,-9,-9,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.3456,1,60.48,24.969999,45.709999,33.490002,5,4,5,0,0,8,1,0,488.5,-116068.78,0,0,175.57321 -747,909,1654,1655,-9,-9,1,1,0,64,1,0,0,0,3,-9,2,1,0,0,3,8.2368507,8.3399448,0,1,0,-9,9,0,-3,52.566284,0,0,0,67,2,3,1,3,-9,2019,1,2,6,0,38,38,15,1,0,1,0,12.403225,12.403225,0,0,0,0,0,0,0,0,0,0,0,3.1826577,0,0,0,58.07,46.290001,54.48,36.939999,6,1,1,0,0,7,5,0,656.5,991224.88,0,0,4062.2231 -747,909,1655,1654,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,8.2990751,7.6861873,0,1,0,-9,9,0,3,-68.599602,0,0,0,64,3,3,1,-9,-9,2019,1,1,10,0,42,27,15,1,0,1,0,9.7327013,9.7327013,0,0,0,0,0,0,0,0,0,0,0,2.9121673,0,0,0,54.48,36.939999,58.07,46.290001,5,1,1,0,0,7,5,0,656.5,991224.88,0,0,4062.2231 -748,910,1656,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,0,5,0,7.9499197,7.4812899,3,0,0,0,-9,0,-1133.0841,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0298958,8.1459169,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,1,3,1,3501,865541.19,0,0,1629.5953 -749,911,1657,-9,-9,-9,1,1,1,31,2,0,0,0,3,-9,8,3,1,1,5,0,5.5141878,5.175993,3,0,0,0,-9,0,-902.68671,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2490578,0,0,0,59.43,58.049999,-9,-9,7,4,2,0,0,4,2,0,748,-63257.559,0,0,3602.8596 -750,912,1658,-9,-9,-9,1,1,1,48,3,0,0,0,3,-9,2,1,0,0,3,8.3325415,8.301013,0,3,0,0,0,-9,0,-1074.8521,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,48,56,15,1,0,-9,0,11.324128,11.324128,0,0,0,0,0,0,0,0,0,0,0,1.4184284,0,0,0,43.049999,51.77,-9,-9,5,1,1,0,0,9,4,1,389,290004.09,0,0,1909.3881 -751,913,1659,-9,1661,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-955.8559,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,529.33331,207257.5,0,0,3612.0989 -751,913,1660,-9,1661,-9,2,1,0,16,2,0,1,0,3,-9,2,2,0,0,5,5.881649,6.0125337,3.6759791,4,0,0,0,-9,0,-895.28784,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1317019,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,6,5,1,529.33331,207257.5,0,0,3612.0989 -751,913,1661,-9,-9,-9,1,1,0,38,3,0,1,0,1,-9,2,1,0,0,5,8.8948288,8.8114681,0,4,0,0,0,-9,0,-1000.6456,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,45,52,15,1,0,-9,0,18.279245,18.279245,0,0,0,0,0,0,0,0,1,1,0,1.2804999,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,5,1,529.33331,207257.5,0,0,3612.0989 -752,914,1662,1663,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,0,4,8.4487572,8.1343679,0,2,0,-9,2,0,-2,83.837303,0,0,1,43,2,3,3,2,3,2019,2,1,21,8,41,45,15,1,1,3,0,13.238638,13.238638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.830002,63.900002,57.330002,53.459999,3,1,1,0,1,4,3,1,271.33334,287725.56,0,0,1742.0212 -752,914,1663,1662,-9,-9,1,1,1,43,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,2,-133.39787,0,0,0,41,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,33.830002,63.900002,6,1,1,1,1,4,3,1,271.33334,287725.56,0,0,1742.0212 -752,914,1664,-9,1662,1663,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.9027,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,3,1,271.33334,287725.56,0,0,1742.0212 -753,915,1665,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,7.7541499,7.6250033,3,0,0,0,-9,0,-1098.1255,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4595566,7.9065919,0,0,58.470001,50.220001,-9,-9,7,1,1,0,0,5,3,1,1083,465209.91,0,0,1612.8792 -754,916,1666,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,1,1,0,4.7701306,5.0278187,3,0,0,0,-9,0,-1055.8555,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.0600791,0,0,47.07,26.08,-9,-9,6,1,1,0,0,1,2,0,152,125322.38,0,0,1051.8868 -755,917,1667,1668,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,1,-133.17841,0,0,0,70,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9338753,0,0,3,59.220001,29.49,58.150002,52.91,6,1,1,0,0,5,2,1,317.5,133801.47,0,0,1651.7891 -755,917,1668,1667,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,5.9636197,6.2606792,1,0,-9,48,0,-1,14.644331,0,0,0,71,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5466433,5.5553007,0,0,58.150002,52.91,59.220001,29.49,6,1,1,0,0,5,2,1,317.5,133801.47,0,0,1651.7891 -756,918,1669,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,8,3,1,1,3,0,4.0136423,4.1303635,3,0,0,0,-9,0,-1038.7616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.8188059,0,0,59.73,15.89,-9,-9,6,1,1,0,0,12,1,0,2018,65704.891,0,0,545.20044 -757,919,1670,-9,1672,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-942.63818,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,637.66669,7463.5913,0,0,1925.5925 -757,919,1671,-9,1672,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.7952,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,637.66669,7463.5913,0,0,1925.5925 -757,919,1672,-9,-9,-9,1,1,0,26,2,0,2,0,3,-9,7,2,0,0,4,0,5.8073506,5.6803436,4,0,0,0,-9,0,-828.23492,1,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2135634,0,12.673339,3,54.200001,57.490002,-9,-9,6,1,1,0,0,2,2,0,637.66669,7463.5913,0,0,1925.5925 -758,920,1673,1674,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,2,8.5189924,8.4716644,0,1,0,-9,6,0,2,-207.76958,0,0,0,50,2,3,1,3,3,2019,1,2,10,0,53,55,15,1,0,1,0,9.7610493,9.7610493,0,0,0,0,0,0,0,0,0,0,0,2.6834464,0,0,0,53.459999,39.139999,61.43,43.34,6,1,1,0,0,4,5,0,903.5,134179.58,0,0,3257.51 -758,920,1674,1673,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.9086967,8.0043697,0,1,0,-9,6,0,-2,-42.592205,0,0,0,52,2,2,1,-9,-9,2019,1,1,7,0,48,48,15,1,0,1,0,6.304718,6.304718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.43,43.34,53.459999,39.139999,7,1,1,0,0,4,5,0,903.5,134179.58,0,0,3257.51 -759,921,1675,1676,-9,-9,2,1,1,40,1,0,0,0,1,-9,2,1,0,0,4,8.646101,8.8015184,0,1,0,-9,4,0,10,-77.42585,0,0,0,30,1,3,1,-9,-9,2019,1,1,10,1,40,45,15,1,0,1,0,15.638926,15.638926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,51.490002,53.310001,5,1,1,0,0,2,4,1,939.5,378082.69,0,0,2768.8582 -759,921,1676,1675,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,3,7.7038574,7.7705078,0,1,0,-9,4,0,-10,126.6193,0,0,1,40,1,4,1,2,2,2019,1,2,6,0,35,21,15,1,0,1,0,5.2966013,5.2966013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,53.310001,51,56,6,1,1,0,0,2,4,1,939.5,378082.69,0,0,2768.8582 -760,922,1677,1678,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,5,8.8410559,8.556057,0,1,0,-9,8,0,5,-27.303497,0,0,0,49,1,3,1,-9,-9,2019,1,1,9,0,42,0,15,1,0,1,0,19.896461,19.896461,0,0,0,0,0,0,0,0,0,0,0,4.8629537,0,0,0,54.689999,57.470001,65.529999,38.759998,6,1,1,0,0,7,5,1,300,587467.88,0,0,9677.7773 -760,922,1678,1677,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,7.3812418,7.5647168,0,1,0,-9,11,0,-5,-62.763515,0,0,0,54,1,5,1,2,1,2019,1,2,9,0,4,5,15,1,0,1,0,53.651958,53.651958,0,0,0,0,0,0,0,0,0,0,0,10.135148,0,0,0,65.529999,38.759998,54.689999,57.470001,7,2,3,0,0,7,5,1,300,587467.88,0,0,9677.7773 -761,923,1679,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,1,1,0,0,4,7.9918733,7.7073102,0,3,0,0,0,-9,0,-1082.4705,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,2,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.970001,61.830002,-9,-9,2,1,1,0,0,4,3,1,598,198624.91,0,0,1016.8145 -762,924,1680,-9,1683,1681,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.0708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,555.75,873026.38,0,0,4338.6572 -762,924,1681,1683,-9,-9,1,1,1,67,1,0,2,0,2,-9,2,1,0,0,2,8.3087111,8.6379128,0,2,0,-9,6,0,19,9.3069973,0,0,0,48,2,3,1,2,3,2019,1,2,6,0,44,40,15,1,0,1,0,16.013998,16.013998,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.57,49.689999,54.799999,42.450001,6,1,1,0,0,12,4,1,555.75,873026.38,0,0,4338.6572 -762,924,1682,-9,1683,1681,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-838.26343,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,555.75,873026.38,0,0,4338.6572 -762,924,1683,1681,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,1,3,7.0403962,7.1177125,0,2,0,-9,6,0,-19,-102.48232,0,0,0,67,2,2,1,2,-9,2019,1,1,12,0,22,23,15,1,0,1,0,7.8973265,7.8973265,0,0,0,0,0,0,0,5.48,1,0,1,0,0,3.2641208,3,54.799999,42.450001,57.57,49.689999,6,1,1,0,0,12,4,1,555.75,873026.38,0,0,4338.6572 -763,925,1684,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-957.82306,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.8042881,0,0,0,0,1,1,0,1.1449488,0,0,0,50.23,47.060001,-9,-9,6,1,1,0,0,5,1,0,298,-38455.32,0,0,1042.2412 -764,926,1685,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,0,2,0,7.4868493,7.7455273,3,0,0,0,-9,0,-1053.2628,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.59970516,7.5864263,0,0,48.689999,45.700001,-9,-9,6,1,1,0,0,9,3,0,144,192946.19,0,0,1747.1862 -765,927,1686,-9,-9,-9,1,1,0,54,2,0,1,0,2,-9,2,1,0,0,2,7.8966308,7.9020081,0,4,0,0,0,-9,0,-847.26569,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,20,20,15,1,0,-9,0,11.790962,11.790962,0,0,0,0,0,0,0,0,1,1,0,.41314834,0,0,0,46.259998,46.77,-9,-9,2,3,4,0,0,8,3,1,968.5,169217.3,0,0,856.02045 -765,927,1687,-9,1686,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1054.9197,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,8,3,1,968.5,169217.3,0,0,856.02045 -766,928,1688,1689,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,46,0,5,36.688179,0,0,0,62,2,3,1,2,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,5.4767466,0,0,0,0,0,1,0,1,0,0,0,0,62.27,27.209999,60.299999,46.580002,5,1,1,0,0,12,3,0,641,788737.88,0,0,2166.2251 -766,928,1689,1688,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.7778363,7.6978922,0,1,0,-9,46,0,-5,-56.63858,0,0,0,67,2,2,3,3,3,2019,2,1,6,0,28,28,15,1,0,4,0,8.5608349,8.5608349,0,0,0,0,0,0,0,71.5,1,0,1,0,0,73.96582,1,60.299999,46.580002,62.27,27.209999,7,1,1,0,0,12,3,0,641,788737.88,0,0,2166.2251 -767,929,1690,1691,-9,-9,1,1,1,51,1,0,3,0,3,-9,97,3,0,1,3,0,0,0,2,0,-9,25,0,5,0,0,0,0,46,3,4,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.50351,3,40.93,43.220001,50,55,4,2,3,0,0,8,1,0,1370.3334,-113005.42,0,0,1891.0349 -767,929,1691,1690,-9,-9,2,1,0,46,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,25,0,-5,0,0,0,0,51,3,3,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,132.54616,3,50,55,40.93,43.220001,6,2,3,0,0,8,1,0,1370.3334,-113005.42,0,0,1891.0349 -767,929,1692,-9,1691,1690,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.67792,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,1370.3334,-113005.42,0,0,1891.0349 -767,930,1693,-9,1691,1690,3,1,0,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1026.3842,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.650002,57.360001,-9,-9,4,2,3,0,0,8,1,0,5206,100193.81,0,0,0 -768,931,1694,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,3,0,8.1315651,8.3645077,3,0,0,0,-9,0,-916.22241,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,10.121483,0,0,0,0,118.66804,0,1,1,0,4.5169773,8.619812,0,0,57.830002,34.459999,-9,-9,5,1,1,0,0,8,4,1,279,1520990.3,0,0,2377.9897 -769,932,1695,1696,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.7312984,5.8382006,1,0,-9,6,0,1,185.98053,0,0,0,70,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1404104,5.7702484,0,0,57.330002,53.459999,57.330002,53.459999,6,1,1,0,0,2,2,1,309.5,219922.44,0,0,1880.8245 -769,932,1696,1695,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,5.6179972,5.545742,1,0,-9,6,0,-1,98.71209,0,0,0,71,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9035654,5.7365108,0,0,57.330002,53.459999,57.330002,53.459999,7,1,1,0,0,2,2,1,309.5,219922.44,0,0,1880.8245 -770,933,1697,1698,-9,-9,2,1,0,48,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,3,0,-2,22.323721,0,0,0,50,2,4,1,2,2,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,45.259998,45.91,59.889999,4,1,1,1,0,11,3,0,1204.5,353774,0,0,1020.7791 -770,933,1698,1697,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.0658274,8.1620932,0,1,0,-9,3,0,2,151.18616,0,0,0,48,2,2,3,3,2,2019,2,2,14,2,44,40,15,1,0,3,0,9.5490742,9.5490742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,40.48,45.259998,3,1,1,0,0,11,3,0,1204.5,353774,0,0,1020.7791 -770,934,1699,-9,1697,1698,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.0233202,7.8550882,0,3,0,0,0,-9,0,-1097.9265,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,35,15,1,0,-9,1,12.066192,12.066192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,4,0,114,28836.414,0,0,2093.6008 -770,935,1700,-9,1697,1698,4,1,0,21,2,0,0,0,2,-9,97,3,0,0,5,0,0,0,3,0,0,0,-9,0,-905.39093,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,11,1,0,102,-88101.75,0,0,0 -771,936,1701,1702,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.3019147,7.2814431,1,0,-9,9,0,-2,129.61853,0,0,0,77,2,2,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.382905,7.5277491,0,0,52.16,43.450001,45.380001,41.419998,4,1,1,0,0,12,3,1,450.5,1309421.8,0,0,1879.2008 -771,936,1702,1701,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,2,0,7.1492753,7.2365575,1,0,-9,9,0,2,-44.061714,0,0,0,75,2,3,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8635261,7.4688406,0,0,45.380001,41.419998,52.16,43.450001,6,1,1,0,0,12,3,1,450.5,1309421.8,0,0,1879.2008 -772,937,1703,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,1,2,0,6.2096925,6.1440024,3,0,0,0,-9,0,-834.27094,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.360486,0,0,55.580002,19.780001,-9,-9,5,1,1,0,0,2,2,0,733,112029.01,0,0,1342.568 -773,938,1704,1705,-9,-9,2,1,1,24,1,0,0,0,2,-9,2,1,0,0,5,8.3683834,8.2015114,0,1,0,-9,3,0,2,-4.697937,0,1,0,22,2,4,1,-9,-9,2019,1,1,10,0,47,40,15,1,0,1,0,8.5765858,8.5765858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,47.93,60.549999,5,1,1,0,0,9,5,0,320,229631.17,0,0,3558.0012 -773,938,1705,1704,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,4,8.16366,8.4865141,0,1,0,-9,3,0,-2,4.2462182,0,1,1,24,2,5,1,1,2,2019,1,2,9,1,50,50,15,1,0,1,0,11.005782,11.005782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,60.549999,59.43,58.049999,6,1,1,0,0,9,5,0,320,229631.17,0,0,3558.0012 -774,939,1706,1707,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.1029472,6.1466684,1,0,-9,47,0,3,36.480949,0,0,0,67,3,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2709255,0,0,54.549999,49.25,31.209999,30.700001,6,2,3,0,0,9,2,1,542,490237.81,0,0,1052.7926 -774,939,1707,1706,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,6,0,-3,98.392113,0,0,0,70,3,3,3,3,3,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.209999,30.700001,54.549999,49.25,5,2,3,0,0,9,2,1,542,490237.81,0,0,1052.7926 -775,940,1708,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1078.76,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7541475,0,0,0,53.099998,25.99,-9,-9,3,1,1,0,0,6,1,0,472,-36958.027,0,0,2430.6067 -776,941,1709,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,2,1,0,0,2,8.1136665,8.1040335,0,3,0,0,0,-9,0,-1012.4874,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,42,35,15,1,1,-9,0,9.1853676,9.1853676,0,0,0,0,0,0,0,0,0,0,0,5.9976244,0,0,0,33.07,39.119999,-9,-9,5,3,4,0,0,8,4,0,493,1577280,0,0,2180.2688 -777,942,1710,1712,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,9.6927843,9.6553879,0,2,0,-9,6,0,3,-212.77577,0,0,0,42,2,3,3,2,2,2019,2,1,9,0,43,40,15,1,0,3,0,37.234009,37.234009,0,0,0,0,0,0,0,0,0,0,0,3.6425009,0,0,0,52.23,55.599998,50.18,52.619999,6,1,1,0,0,9,5,1,1805.8,344899.25,0,0,4806.5479 -777,942,1711,-9,1712,1710,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1107.6072,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,1805.8,344899.25,0,0,4806.5479 -777,942,1712,1710,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-3,-82.083893,0,0,1,45,2,4,1,-9,-9,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.619999,52.23,55.599998,4,1,1,0,0,9,5,1,1805.8,344899.25,0,0,4806.5479 -777,942,1713,-9,1712,1710,6,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.4244,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,1805.8,344899.25,0,0,4806.5479 -777,942,1714,-9,1712,1710,4,1,0,17,2,0,2,0,2,1,2,3,0,0,2,6.0874228,5.9481444,0,2,0,0,0,-9,0,-804.79578,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,9,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.450001,50.259998,-9,-9,3,1,1,0,0,9,5,1,1805.8,344899.25,0,0,4806.5479 -777,943,1715,-9,1712,1710,3,1,0,19,2,0,2,0,2,-9,2,1,0,0,3,7.083528,6.7518458,0,3,0,0,0,-9,0,-940.45654,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,12,22,15,1,1,-9,1,11.258584,11.258584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.939999,58.349998,-9,-9,4,1,1,0,0,9,2,1,913,-128079.09,0,0,1730.5469 -778,944,1716,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,4,0,9.5777187,9.5226755,3,0,0,0,-9,0,-950.44855,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,9.7226973,8.9753942,72.390076,3,48.279999,60.18,-9,-9,5,1,1,0,0,12,5,1,465,2231256.5,0,0,23285.104 -778,945,1717,-9,1716,-9,2,1,0,39,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1062.9487,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.490002,13.51,-9,-9,1,1,1,0,0,12,1,1,1034,-193951.56,0,0,952.1571 -778,946,1718,-9,1716,-9,3,1,1,28,2,0,0,0,1,-9,2,1,0,0,5,8.2853317,7.9634819,0,3,0,0,0,-9,0,-1047.4902,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,36,36,15,1,0,-9,1,10.878654,10.878654,0,0,0,0,0,0,0,2,1,1,0,3.0025265,0,.93566871,3,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,1,1069,2459.3826,0,0,896.0517 -779,947,1719,1720,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.7249022,8.4248829,0,1,0,-9,9,0,1,-34.709808,0,0,0,55,2,5,1,3,2,2019,1,2,6,0,44,47,15,1,0,1,0,12.061127,12.061127,0,0,0,0,0,0,0,0,0,0,0,3.670341,0,0,0,57.16,56.150002,36.09,62.189999,5,1,1,0,0,7,4,1,796,674028.13,0,0,2910.6523 -779,947,1720,1719,-9,-9,2,1,0,55,1,0,0,0,2,-9,1,1,0,0,5,7.3580756,7.5588155,0,1,0,-9,9,0,-1,-20.927427,0,0,0,56,2,4,1,2,2,2019,1,1,21,9,30,28,15,1,1,1,0,6.0734277,6.0734277,0,0,0,0,0,0,0,0,0,0,0,.30968463,0,0,0,36.09,62.189999,57.16,56.150002,4,1,1,0,0,7,4,1,796,674028.13,0,0,2910.6523 -779,948,1721,-9,1720,1719,3,1,0,28,2,0,0,0,2,-9,2,1,0,0,3,7.9135141,7.9241486,0,3,0,0,0,-9,0,-945.10352,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,9,48,39,15,1,1,-9,1,5.5883827,5.5883827,0,0,0,0,0,0,0,0,0,0,0,1.9592209,0,0,0,13.11,64.379997,-9,-9,2,1,1,0,0,7,3,1,394,-71224.875,0,0,1260.1176 -780,949,1722,-9,1723,1724,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.0798,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,524.33331,-20000.674,0,0,2707.2742 -780,949,1723,1724,-9,-9,1,1,0,31,1,0,1,0,2,-9,2,1,0,0,4,7.2140064,7.3029823,0,2,0,-9,6,0,-4,-45.952675,0,0,1,35,3,3,1,2,-9,2019,1,2,7,0,25,20,15,1,0,1,0,6.6376872,6.6376872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.110001,55.310001,7,1,1,0,0,9,4,1,524.33331,-20000.674,0,0,2707.2742 -780,949,1724,1723,-9,-9,2,1,1,35,1,0,1,0,3,-9,2,1,0,0,3,8.6643457,8.7194471,0,2,0,-9,6,0,4,20.808777,0,0,0,31,2,4,1,3,3,2019,1,1,8,1,56,60,15,1,0,1,0,11.665813,11.665813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.110001,55.310001,54.200001,57.490002,6,1,1,0,0,9,4,1,524.33331,-20000.674,0,0,2707.2742 -781,950,1725,1726,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.5779452,8.335948,7.4414353,1,0,-9,21,0,1,8.1196899,0,0,0,50,2,3,1,2,2,2019,1,1,12,1,28,26,15,1,0,1,0,6.9575787,6.9575787,0,0,0,0,0,0,0,7,0,0,0,3.4004457,7.9584904,10.170678,3,49.380001,58.290001,49.049999,50.32,4,1,1,0,0,11,4,1,249,1099804.5,0,0,3318.3232 -781,950,1726,1725,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.1541233,7.7782822,0,1,0,-9,21,0,-1,-89.395538,0,0,0,51,2,4,1,2,2,2019,1,2,15,5,38,38,15,1,1,1,0,11.725917,11.725917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.049999,50.32,49.380001,58.290001,4,1,1,0,0,11,4,1,249,1099804.5,0,0,3318.3232 -781,951,1727,-9,1725,1726,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.8455105,7.8743587,0,3,0,0,0,-9,0,-1041.4542,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,45,15,1,0,-9,1,8.170167,8.170167,0,0,0,0,0,0,0,0,0,0,0,4.3098273,0,0,0,41.779999,61.860001,-9,-9,3,1,1,0,0,11,3,1,555,-90.792221,0,0,667.7085 -781,952,1728,-9,1725,1726,4,1,0,19,2,0,0,1,2,0,7,2,0,0,2,6.2079411,6.2359591,0,3,0,0,0,-9,0,-1041.2496,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.310001,43.189999,-9,-9,3,1,1,0,0,11,2,1,832,-88086.711,0,0,706.4248 -782,953,1729,1732,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,5,9.0369406,9.1269684,0,2,0,-9,6,0,-5,50.816204,0,0,0,39,2,3,3,-9,-9,2019,2,1,13,2,45,58,15,1,0,3,0,23.97035,23.97035,0,0,0,0,0,0,0,0,1,1,0,5.6977859,0,0,0,41.549999,62.02,36.23,56.299999,6,2,3,0,0,8,4,1,513,-6852.6484,0,0,3667.6753 -782,953,1730,-9,1732,1729,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.1879,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,4,1,513,-6852.6484,0,0,3667.6753 -782,953,1731,-9,1732,1729,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1180.0186,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,1,513,-6852.6484,0,0,3667.6753 -782,953,1732,1729,-9,-9,1,1,0,39,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,5,18.022608,0,0,1,34,1,5,1,2,2,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.23,56.299999,41.549999,62.02,5,2,3,0,1,8,4,1,513,-6852.6484,0,0,3667.6753 -783,954,1733,-9,1737,1736,4,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.17871,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,0,1147.8,163092.39,0,0,4933.3486 -783,954,1734,-9,1737,1736,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-975.92755,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,0,1147.8,163092.39,0,0,4933.3486 -783,954,1735,-9,1737,1736,2,1,0,12,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-793.91205,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,7,5,0,1147.8,163092.39,0,0,4933.3486 -783,954,1736,1737,-9,-9,1,1,1,33,1,1,3,0,2,-9,1,1,0,0,4,9.3764467,9.5069513,0,2,0,-9,5,0,7,-42.05946,0,0,0,26,2,4,3,2,2,2019,2,3,11,0,70,90,15,1,0,3,0,22.380228,22.380228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49.119999,57.279999,4,1,1,0,0,7,5,0,1147.8,163092.39,0,0,4933.3486 -783,954,1737,1736,-9,-9,3,1,0,26,1,1,3,0,2,-9,6,3,0,0,4,7.2728453,7.1805253,0,2,0,-9,5,0,-7,-135.66168,0,1,1,33,2,4,1,-9,-9,2019,3,1,16,4,40,45,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.119999,57.279999,57.16,56.150002,6,1,1,0,0,7,5,0,1147.8,163092.39,0,0,4933.3486 -784,955,1738,1739,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.0016327,7.073421,1,0,-9,55,0,-2,-23.934998,0,0,0,78,2,1,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.217073,7.217979,26.652874,1,56.189999,41.560001,55.630001,23.98,6,1,1,0,0,9,3,1,580.5,979494.06,0,0,3126.6204 -784,955,1739,1738,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,1,1,7.0471916,7.4331326,6.1777081,1,0,-9,55,0,2,66.563187,0,0,0,76,2,3,3,2,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.854001,6.2176108,0,0,55.630001,23.98,56.189999,41.560001,3,1,1,0,0,9,3,1,580.5,979494.06,0,0,3126.6204 -785,956,1740,-9,1742,1741,4,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.66406,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.249387,3,47.619999,56.48,-9,-9,6,1,1,0,0,5,5,1,1202.6666,-352.66147,0,0,6124.8071 -785,956,1741,1742,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,9.42735,9.617568,0,2,0,-9,9,0,2,-42.164845,0,0,0,46,1,5,1,2,1,2019,1,1,10,3,24,36,15,1,0,1,0,49.192478,49.192478,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.7995348,3,46.630001,59.720001,38.77,63.459999,6,1,1,0,0,5,5,1,1202.6666,-352.66147,0,0,6124.8071 -785,956,1742,1741,-9,1744,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,5,8.4096594,8.4608393,0,2,0,-9,23,0,-2,-47.245052,0,0,0,48,1,4,1,2,2,2019,1,2,17,6,57,50,15,1,1,1,0,10.122975,10.122975,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.17525,3,38.77,63.459999,46.630001,59.720001,4,1,1,0,0,5,5,1,1202.6666,-352.66147,0,0,6124.8071 -785,957,1743,-9,1742,1741,3,1,0,18,2,0,1,0,2,-9,2,1,0,0,2,7.3905954,7.5561318,0,3,0,0,0,-9,0,-906.35059,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,2,43,0,15,1,0,-9,1,6.4892292,6.4892292,0,0,0,0,0,0,0,7,1,1,0,0,0,5.39326,3,32.810001,50.34,-9,-9,3,1,1,0,0,5,3,1,307,83637.719,0,0,642.84741 -785,958,1744,-9,-9,-9,5,1,1,90,3,0,1,0,3,-9,4,3,0,0,3,0,5.9155164,6.0363803,4,0,0,0,-9,0,-833.12903,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,7.5815816,0,24.613871,25.058767,29.063459,63.809288,0,1,1,0,7.2977881,5.8260221,0,0,55,45,-9,-9,6,1,1,0,0,5,2,1,1629,361265.63,0,0,1810.6761 -786,959,1745,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.7230859,7.9703078,3,0,0,0,-9,0,-819.80078,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.8721886,7.6941595,0,0,50,47,-9,-9,5,1,1,0,0,1,3,1,1520,595300.81,0,0,2300.1377 -787,960,1746,-9,1748,1747,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-848.49493,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,4,1,1009.25,576307.5,0,0,3106.262 -787,960,1747,1748,-9,-9,1,1,1,53,1,0,3,0,1,-9,2,1,0,0,4,8.6506586,8.7847319,0,2,0,-9,20,0,1,-46.407341,0,0,0,52,1,5,1,2,2,2019,1,2,12,0,38,48,15,1,0,1,0,14.430613,14.430613,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,41.779999,61.860001,54.689999,57.470001,6,1,1,0,0,1,4,1,1009.25,576307.5,0,0,3106.262 -787,960,1748,1747,-9,-9,2,1,0,52,1,0,3,0,1,-9,1,1,0,0,5,7.4227605,7.8593988,0,2,0,-9,20,0,-1,-44.571678,0,0,0,53,1,4,1,3,3,2019,1,1,6,0,30,22,15,1,0,1,0,6.215373,6.215373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,41.779999,61.860001,6,1,1,0,0,1,4,1,1009.25,576307.5,0,0,3106.262 -787,960,1749,-9,1748,1747,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-878.71478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,1,4,1,1009.25,576307.5,0,0,3106.262 -788,961,1750,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,3,0,7.1600609,7.1902847,3,0,0,0,-9,0,-961.12683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3600912,7.3981738,0,0,58.869999,37.889999,-9,-9,6,1,1,0,0,6,2,1,408,707029.31,0,0,4447.958 -789,962,1751,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1003.2062,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4.7150302,0,0,0,53.23,42.900002,-9,-9,7,1,1,0,0,9,1,1,173,91801.516,0,0,266.16629 -790,963,1752,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,2,8.0637655,7.7954764,0,1,0,-9,2,0,1,61.295208,0,0,0,-9,-9,-9,-9,2,1,2019,-9,2,21,9,20,41,15,1,1,-9,0,14.46806,14.46806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.98,53.07,50,57,3,4,2,0,0,12,3,1,1915,-15074.623,0,0,1090.359 -791,964,1753,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1081.8947,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,1,8.5342054,0,6.1282172,0,0,0,0,1,1,0,4.5616455,0,0,0,57.369999,38.32,-9,-9,6,1,1,0,0,9,1,1,3618,24582.879,0,0,620.37976 -792,965,1754,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,4,8.2302532,8.188983,0,3,0,0,0,-9,0,-973.94958,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,37,15,1,0,-9,0,10.18494,10.18494,0,0,0,0,0,0,0,2,0,0,0,0,0,3.1525776,3,54.790001,55.860001,-9,-9,6,1,1,0,0,7,4,1,1220,345931.84,0,0,1069.6621 -793,966,1755,1756,-9,-9,1,1,1,59,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,41,0,2,0,0,0,0,57,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4332924,0,0,0,54.610001,49.130001,57.700001,55.880001,7,2,3,0,0,11,1,1,1492,34169.328,0,0,801.33679 -793,966,1756,1755,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,42,0,-2,0,0,0,0,59,3,3,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.700001,55.880001,54.610001,49.130001,7,2,3,0,0,11,1,1,1492,34169.328,0,0,801.33679 -793,967,1757,-9,1756,1755,3,1,0,32,2,0,0,0,1,-9,1,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1011.0095,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,1,10,9,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0570154,0,0,0,52.380001,55.950001,-9,-9,6,2,3,0,1,11,1,1,859,-23935.49,0,0,243.50424 -794,968,1758,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,2,0,7.3990893,7.3547363,3,0,0,0,-9,0,-1084.9871,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.093853,7.5489898,0,0,54.099998,18.639999,-9,-9,6,1,1,0,0,4,3,1,1590,673214,0,0,724.2757 -795,969,1759,-9,-9,-9,1,1,0,32,2,1,3,0,2,-9,8,3,1,1,4,0,6.6150837,6.6996818,4,0,0,0,-9,0,-1092.9366,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1412201,0,9.7589979,3,21.139999,55.209999,-9,-9,5,1,1,0,0,2,2,0,669.75,70606.297,0,0,1955.3915 -795,969,1760,-9,1759,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1003.7988,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,669.75,70606.297,0,0,1955.3915 -795,969,1761,-9,1759,-9,2,1,0,13,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1041.4026,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,2,2,0,669.75,70606.297,0,0,1955.3915 -795,969,1762,-9,1759,-9,3,1,0,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1035.6129,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,2,0,669.75,70606.297,0,0,1955.3915 -796,970,1763,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,7.6918454,7.5380683,3,0,0,0,-9,0,-876.26837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4138274,7.7587161,0,0,58.299999,52.91,-9,-9,7,1,1,0,0,10,3,1,1098,375555.16,0,0,1324.5836 -797,971,1764,1765,-9,-9,1,1,1,38,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,1,1,-9,-2,0,0,0,0,40,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.380001,58.02,48,56,7,1,1,0,1,13,1,1,932,-87843.195,0,0,-331.28931 -797,971,1765,1764,-9,-9,2,1,0,40,1,0,2,0,2,-9,8,3,1,1,4,0,0,0,2,0,1,1,-9,2,0,0,0,1,38,2,5,3,2,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,50.380001,58.02,5,1,1,0,1,13,1,1,932,-87843.195,0,0,-331.28931 -798,972,1766,1768,-9,-9,1,1,0,36,1,1,3,0,2,-9,2,1,0,0,3,7.0392094,7.0298929,0,2,0,-9,8,0,0,10.200733,0,0,1,36,2,4,1,-9,-9,2019,1,2,12,1,20,16,15,1,0,1,0,6.5045309,6.5045309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.799999,49.099998,47.150002,55.389999,6,1,1,0,0,1,4,0,1195.2,40443.371,0,0,4492.6499 -798,972,1767,-9,1766,1768,4,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.54437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,0,1195.2,40443.371,0,0,4492.6499 -798,972,1768,1766,-9,-9,2,1,1,36,1,1,3,0,2,-9,1,1,0,0,4,9.0112181,9.1545496,0,2,0,-9,8,0,0,-5.6086473,0,0,0,36,2,3,1,3,3,2019,1,1,7,0,30,40,15,1,0,1,0,28.445942,28.445942,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,55.389999,48.799999,49.099998,6,1,1,0,0,1,4,0,1195.2,40443.371,0,0,4492.6499 -798,972,1769,-9,1766,1768,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-873.94061,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,4,0,1195.2,40443.371,0,0,4492.6499 -798,972,1770,-9,1766,1768,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.10284,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,0,1195.2,40443.371,0,0,4492.6499 -799,973,1771,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,0,3,0,8.0247288,8.1039419,3,0,0,0,-9,0,-953.08038,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.9791327,8.0294743,0,0,44.189999,58.009998,-9,-9,4,1,1,0,0,9,4,1,400,1104756.6,0,0,6849.0854 -800,974,1772,1773,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-2,43.547779,0,0,0,74,1,2,3,2,1,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.0695643,0,10.168303,1,57.18,38.32,43.889999,14.04,6,1,1,0,0,12,3,1,2371.5,2881905.8,0,0,1873.843 -800,974,1773,1772,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,0,2,0,8.3309364,8.2843561,1,0,-9,51,0,2,-76.702454,0,0,0,72,2,3,3,2,2,2019,4,1,19,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5500267,8.2541218,0,0,43.889999,14.04,57.18,38.32,6,1,1,0,0,12,3,1,2371.5,2881905.8,0,0,1873.843 -801,975,1774,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,3,3,0,0,4,6.6555681,6.4845209,0,3,0,0,0,-9,0,-1011.4827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.490002,57.57,-9,-9,3,3,4,1,0,6,2,0,726,273550.06,0,0,417.63037 -802,976,1775,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1074.2261,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,-9,-9,5,1,1,0,0,11,1,0,501,168210.8,0,0,-388.20303 -803,977,1776,1777,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.8116827,6.7978253,1,0,-9,51,0,3,109.1332,0,0,0,67,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1265631,7.0131712,0,0,58.23,43.459999,57.240002,41.16,6,1,1,0,0,5,2,1,1420,652770.5,0,0,1528.1826 -803,977,1777,1776,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,6.2197051,6.3004718,1,0,-9,51,0,-3,105.68311,0,0,0,70,2,3,3,-9,-9,2019,4,1,9,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6917591,6.1720991,0,0,57.240002,41.16,58.23,43.459999,6,1,1,0,0,5,2,1,1420,652770.5,0,0,1528.1826 -804,978,1778,-9,-9,-9,1,1,1,66,3,0,1,0,3,-9,4,3,0,0,3,0,5.5890398,5.3368568,4,0,0,0,-9,0,-1003.037,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6477962,0,0,44.73,52.200001,-9,-9,5,1,1,0,0,7,2,0,863.5,206083.19,0,0,1991.3206 -804,978,1779,-9,-9,1778,3,1,1,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1050.3265,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,4,1,1,0,0,7,2,0,863.5,206083.19,0,0,1991.3206 -804,979,1780,-9,-9,1778,2,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,8.2395849,7.562252,0,3,0,0,0,-9,0,-1118.2056,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,36,30,15,1,0,-9,1,7.1368313,7.1368313,0,0,0,0,0,0,0,0,1,1,0,.499742,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,7,3,0,719,152255.33,0,0,-130.16719 -805,980,1781,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,1,1,0,0,4,6.1248736,6.1277323,0,3,0,0,0,-9,0,-1034.5966,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,45,15,1,0,-9,0,1.2969518,1.2969518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.700001,-9,-9,5,4,5,0,0,8,2,0,304,514.19336,0,0,-356.45126 -806,981,1782,1783,-9,-9,1,1,0,41,1,1,1,0,2,-9,2,1,0,0,5,8.2925205,7.990489,0,2,0,-9,4,0,1,0,0,0,1,40,2,4,1,2,3,2019,1,2,10,0,30,30,15,1,0,1,0,14.400825,14.400825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,51,56,6,1,1,0,0,13,4,1,694,403403.59,0,0,3376.7012 -806,981,1783,1782,-9,-9,2,1,1,40,1,1,1,0,2,-9,2,1,0,0,4,8.1672325,8.1184759,0,2,0,-9,4,0,-1,0,0,0,0,41,2,5,1,-9,-9,2019,1,1,9,1,37,37,15,1,0,1,0,9.5954323,9.5954323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.099998,59.110001,6,1,1,0,0,13,4,1,694,403403.59,0,0,3376.7012 -806,981,1784,-9,1782,1783,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.56689,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,694,403403.59,0,0,3376.7012 -807,982,1785,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,0,4,8.5425463,8.3372202,0,3,0,0,0,-9,0,-926.25464,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,48,46,15,1,0,-9,0,10.525338,10.525338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.119999,51.57,-9,-9,7,3,4,0,1,8,4,0,293,362923.06,0,0,2626.0229 -808,983,1786,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,1,1,0,0,5,6.9615507,7.3890381,0,3,0,0,0,-9,0,-1069.9329,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,20,25,15,1,0,-9,0,7.587534,7.587534,0,0,0,0,0,0,0,0,1,1,0,4.9275632,0,0,0,55.48,44.669998,-9,-9,4,1,1,0,0,10,2,1,777,-1380.106,0,0,2079.5571 -809,984,1787,-9,1790,1789,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.88153,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,5,1,3804.5,2175856.8,0,0,16386.082 -809,984,1788,-9,1790,1789,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.07257,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,3804.5,2175856.8,0,0,16386.082 -809,984,1789,1790,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,9.1441622,9.2704582,0,2,0,-9,6,0,0,75.795143,0,0,0,46,1,4,1,1,1,2019,1,1,9,1,40,37,15,1,0,1,0,25.348707,25.348707,0,0,0,0,0,0,0,0,1,1,0,6.1465631,0,0,0,52,55,48.869999,58.549999,6,1,1,0,0,8,5,1,3804.5,2175856.8,0,0,16386.082 -809,984,1790,1789,-9,-9,1,1,0,46,1,0,2,0,1,-9,1,1,0,0,4,9.6864128,9.7583647,0,2,0,-9,6,0,0,-8.0296497,0,0,0,46,1,4,1,2,2,2019,1,2,14,4,20,25,15,1,1,1,0,111.09284,111.09284,0,0,0,0,0,0,0,0,1,1,0,6.7010202,0,0,0,48.869999,58.549999,52,55,5,1,1,0,0,8,5,1,3804.5,2175856.8,0,0,16386.082 -810,985,1791,1792,-9,-9,1,1,1,68,1,0,0,0,2,-9,1,1,0,0,3,5.846817,5.5833783,0,1,0,-9,40,0,1,12.104339,0,0,0,67,2,4,3,3,2,2019,2,2,12,2,8,30,15,1,0,4,0,4.8266039,4.8266039,0,0,0,0,0,0,0,0,1,1,0,3.9745884,0,0,0,53.029999,40.439999,51.73,56.299999,6,1,1,0,0,8,2,1,445.5,430143.91,0,0,346.31494 -810,985,1792,1791,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.4360433,6.5980163,1,0,-9,40,0,-1,-14.544897,0,0,0,68,2,3,1,3,3,2019,3,1,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7616005,6.4348717,0,0,51.73,56.299999,53.029999,40.439999,7,1,1,0,0,8,2,1,445.5,430143.91,0,0,346.31494 -811,986,1793,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,1,0,6.7528977,7.3591294,3,0,0,0,-9,0,-1089.8026,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,44.103741,0,0,0,0,1,1,0,0,6.8656898,0,0,45.43,14.88,-9,-9,5,1,1,0,0,2,2,1,56,286576.94,0,0,1581.9767 -812,987,1794,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,3,7.7855945,7.6807141,0,3,0,-9,0,1,0,-1078.051,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,30,30,15,1,1,-9,0,8.8994827,8.8994827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.669998,56.169998,-9,-9,5,1,1,0,0,1,3,1,660,47519.184,0,0,1982.9797 -813,988,1795,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,5,0,8.7500763,8.6763973,3,0,0,0,-9,0,-985.64691,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.6543083,8.5689297,9.5298243,3,57.060001,57.759998,-9,-9,6,1,1,0,0,12,5,1,1003,2185158.8,0,0,5191.2783 -814,989,1796,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,0,4,8.0263672,8.4723005,7.6949177,3,0,0,0,-9,0,-1007.916,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,25,40,15,1,0,-9,0,15.986898,15.986898,0,0,0,0,0,0,0,2,1,1,0,2.183248,7.8880286,0,3,65.370003,35.919998,-9,-9,6,1,1,0,0,9,5,1,4382,752512.06,0,0,2915.5374 -815,990,1797,1798,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,6.8487935,6.8752398,1,0,-9,10,0,-2,-81.254669,0,0,0,64,2,2,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9849558,7.162684,0,0,53.060001,45.59,47.34,20.030001,6,1,1,0,0,4,4,1,923.5,1019257.4,0,0,7786.2573 -815,990,1798,1797,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,0,2,8.6042976,8.3980875,0,1,0,-9,10,0,2,-37.249672,0,0,0,62,2,4,3,-9,-9,2019,2,2,15,3,20,28,15,1,0,4,0,21.115625,21.115625,0,0,0,0,0,0,0,0,0,0,0,8.1902952,0,0,0,47.34,20.030001,53.060001,45.59,5,1,1,0,0,4,4,1,923.5,1019257.4,0,0,7786.2573 -816,991,1799,1800,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.2717066,8.4514151,0,1,0,-9,35,0,-3,-157.33249,0,0,0,55,2,4,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,18.415524,18.415524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.189999,56.73,51.830002,57.200001,6,1,1,0,0,1,4,0,378.5,307686.19,0,0,2238.5923 -816,991,1800,1799,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,5.377862,5.3928342,0,1,0,-9,35,0,3,-92.722649,0,0,0,52,1,4,1,2,2,2019,1,1,6,0,28,37,15,1,0,1,0,1.123913,1.123913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,44.189999,56.73,6,1,1,0,0,1,4,0,378.5,307686.19,0,0,2238.5923 -817,992,1801,-9,1803,1802,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.2131,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,1,0,598.66669,726352.63,0,0,3404.9229 -817,992,1802,1803,-9,-9,1,1,1,50,1,0,1,0,2,-9,8,3,1,1,1,1.0346404,.6087876,0,2,0,-9,19,0,9,34.611626,0,0,0,41,3,4,3,2,2,2019,4,2,19,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,27,51.529999,51.799999,1,1,1,0,0,8,1,0,598.66669,726352.63,0,0,3404.9229 -817,992,1803,1802,-9,-9,2,1,0,41,1,0,1,0,3,-9,6,3,0,1,4,0,0,0,2,0,-9,19,0,0,-105.27716,0,0,1,50,2,1,3,1,1,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.64481,1,51.529999,51.799999,38,27,5,1,1,0,0,8,1,0,598.66669,726352.63,0,0,3404.9229 -818,993,1804,1805,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,0,2,8.6881495,8.6918373,0,1,0,-9,9,0,1,-18.592112,0,0,0,50,2,3,1,3,2,2019,1,1,13,4,37,48,15,1,1,1,0,21.317144,21.317144,0,0,0,0,0,0,0,2,0,0,0,0,0,7.0102205,3,50.240002,39.470001,53.389999,44.470001,5,1,1,0,0,12,5,1,555,929852.19,0,0,3327.917 -818,993,1805,1804,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.4582067,7.586122,0,1,0,-9,9,0,-1,48.904751,0,0,0,51,3,2,1,2,3,2019,1,2,11,1,14,14,15,1,0,1,0,16.855789,16.855789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.389999,44.470001,50.240002,39.470001,5,1,1,0,0,12,5,1,555,929852.19,0,0,3327.917 -819,994,1806,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,4.5490241,4.7126126,3,0,0,0,-9,0,-976.03522,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.0505562,4.3471351,3,47,36,-9,-9,6,1,1,0,0,4,2,1,341,365967.56,0,0,-535.12457 -820,995,1807,1808,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.3949041,7.4164138,1,0,-9,33,-9,3,55.722401,-9,0,0,61,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2845764,7.3075886,0,0,54.799999,50.32,54.369999,54.799999,6,1,1,0,0,7,4,1,610.5,3352615.5,0,0,2914.2075 -820,995,1808,1807,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,0,3,0,8.1000004,8.2904539,1,0,-9,32,-9,-3,56.712471,-9,0,0,64,2,4,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.544625,8.318181,0,0,54.369999,54.799999,54.799999,50.32,7,1,1,0,0,7,4,1,610.5,3352615.5,0,0,2914.2075 -821,996,1809,1810,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,9.5125151,9.7957115,0,2,0,-9,28,0,0,1.3764114,0,0,0,53,2,3,1,3,3,2019,1,2,19,7,85,50,15,1,1,1,0,26.516569,26.516569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.029999,51.400002,39.150002,41.419998,6,1,1,0,0,6,5,1,880.66669,2146085.3,0,0,6994.519 -821,996,1810,1809,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,0,3,9.1990318,8.8729582,0,2,0,-9,28,0,0,29.642361,-9,0,0,53,1,4,1,3,2,2019,1,1,14,2,86,0,15,1,0,1,0,9.3908234,9.3908234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.150002,41.419998,35.029999,51.400002,2,1,1,0,0,6,5,1,880.66669,2146085.3,0,0,6994.519 -821,996,1811,-9,1810,1809,5,1,1,17,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-990.69653,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,1,1,1,0,0,6,5,1,880.66669,2146085.3,0,0,6994.519 -821,997,1812,-9,1810,1809,6,1,1,27,2,0,1,0,2,-9,2,1,0,0,4,8.3393965,8.1816254,0,3,0,-9,0,-9,0,-974.82843,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,50,0,15,1,0,-9,1,9.7565546,9.7565546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,57.639999,-9,-9,5,1,1,0,0,6,4,1,823,-155791.33,0,0,1359.3367 -821,998,1813,-9,1810,1809,3,1,1,21,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1078.6384,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,6,1,1,0,0,6,1,1,3378,-97878.5,0,0,0 -821,999,1814,-9,1810,1809,4,1,1,19,2,0,1,0,2,-9,2,1,0,0,5,8.0885286,7.9821973,0,3,0,0,0,-9,0,-1010.1967,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,45,48,15,1,0,-9,1,6.6873345,6.6873345,0,0,0,0,0,0,0,0,0,0,0,2.4120994,0,0,0,41.07,60.93,-9,-9,6,1,1,0,0,6,3,1,424,50991.414,0,0,1704.5397 -822,1000,1815,1816,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,0,5,8.4410925,8.4065495,0,1,0,-9,29,0,0,-32.098873,0,0,0,50,2,4,1,1,1,2019,1,2,8,0,52,44,15,1,0,1,0,12.462717,12.462717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,48.869999,58.549999,6,1,1,0,0,5,5,1,635.33331,1735544.6,0,0,2239.7959 -822,1000,1816,1815,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,7.9549646,7.7847905,0,1,0,-9,29,0,0,92.766441,0,0,0,50,3,5,1,2,1,2019,1,1,12,0,38,39,15,1,0,1,0,9.1926785,9.1926785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,54.099998,59.110001,3,1,1,0,1,5,5,1,635.33331,1735544.6,0,0,2239.7959 -822,1000,1817,-9,1816,1815,3,1,0,17,2,0,0,1,2,0,7,2,0,0,5,5.6988263,5.6908774,0,1,0,0,0,-9,0,-933.21527,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,5,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.75,62.869999,-9,-9,6,1,1,0,0,5,5,1,635.33331,1735544.6,0,0,2239.7959 -823,1001,1818,-9,1821,1820,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.02893,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,3,1,408.25,349733.28,0,0,3708.6948 -823,1001,1819,-9,1821,1820,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.62714,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,10,3,1,408.25,349733.28,0,0,3708.6948 -823,1001,1820,1821,-9,-9,2,1,1,56,1,0,2,0,2,-9,4,3,0,0,1,0,0,0,2,0,-9,4,0,0,50.693962,0,0,0,56,1,3,3,-9,-9,2019,4,1,18,6,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.85,17.26,58.77,31.129999,3,1,1,0,0,10,3,1,408.25,349733.28,0,0,3708.6948 -823,1001,1821,1820,-9,-9,1,1,0,56,1,0,2,0,1,-9,6,3,0,1,3,0,8.324645,8.5182514,2,0,-9,5,0,0,-70.757477,0,0,0,56,2,1,3,2,2,2019,4,2,14,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8749142,8.0973358,119.44353,2,58.77,31.129999,30.85,17.26,4,1,1,0,0,10,3,1,408.25,349733.28,0,0,3708.6948 -824,1002,1822,-9,1824,1823,1,1,1,20,2,0,1,0,2,-9,7,2,0,0,5,5.9196181,5.668252,0,3,0,0,0,-9,0,-928.53754,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,6,6,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.51691264,0,0,0,33.630001,64.610001,-9,-9,6,1,1,0,0,10,2,1,888,148318.55,0,0,1277.5079 -824,1003,1823,1824,-9,-9,3,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,8.2507362,8.4644241,0,2,0,-9,4,0,1,-81.633614,0,0,0,49,2,3,1,-9,-9,2019,1,2,13,3,45,44,15,1,0,1,0,11.647097,11.647097,0,0,0,0,0,0,0,0,1,1,0,3.6285732,0,0,0,46.09,44.849998,48.049999,53.560001,6,1,1,0,0,10,4,1,388,362289.75,0,0,3081.04 -824,1003,1824,1823,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,8.0298538,8.1618643,0,2,0,-9,4,0,-1,71.190651,0,0,0,50,2,4,1,-9,-9,2019,1,3,9,0,42,43,15,1,0,1,0,6.2207456,6.2207456,0,0,0,0,0,0,0,0,1,1,0,3.6998725,0,0,0,48.049999,53.560001,46.09,44.849998,6,1,1,0,0,10,4,1,388,362289.75,0,0,3081.04 -824,1003,1825,-9,1824,1823,4,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.2839,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,388,362289.75,0,0,3081.04 -825,1004,1826,-9,1828,1827,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1163.6842,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,720.5,249962.19,0,0,3445.4341 -825,1004,1827,1828,-9,-9,1,1,1,39,1,1,2,0,2,-9,2,1,0,0,4,8.7537279,8.9610491,0,2,0,-9,7,0,0,-95.692627,0,0,0,39,1,4,3,2,2,2019,2,2,6,0,37,39,15,1,0,3,0,20.772627,20.772627,0,0,0,0,0,0,0,0,1,1,0,6.5798974,0,0,0,54.790001,55.860001,46.5,58.259998,6,1,1,0,0,6,4,1,720.5,249962.19,0,0,3445.4341 -825,1004,1828,1827,-9,-9,2,1,0,39,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,0,72.201843,0,0,1,39,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4474101,0,0,0,46.5,58.259998,54.790001,55.860001,6,1,1,0,0,6,4,1,720.5,249962.19,0,0,3445.4341 -825,1004,1829,-9,1828,1827,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.3839,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,720.5,249962.19,0,0,3445.4341 -826,1005,1830,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-952.80469,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1704102,0,0,0,57.919998,51.82,-9,-9,7,1,1,0,0,4,1,1,192,0,0,0,-1147.5381 -827,1006,1831,-9,1832,1833,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1178.786,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,104.33334,183778.16,0,0,1882.7357 -827,1006,1832,1833,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,2,6.4393611,6.5284672,0,2,0,-9,7,0,-4,-59.023602,0,0,1,43,2,3,1,-9,3,2019,1,2,14,2,12,0,15,1,0,1,0,6.6867781,6.6867781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.65,58.16,43.709999,56.91,5,1,1,0,0,6,3,0,104.33334,183778.16,0,0,1882.7357 -827,1006,1833,1832,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,3,8.6842337,8.1985197,0,2,0,-9,7,0,4,20.526697,0,0,0,39,2,2,1,2,2,2019,1,1,12,0,40,40,15,1,0,1,0,10.359349,10.359349,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,30.65,58.16,4,1,1,0,0,6,3,0,104.33334,183778.16,0,0,1882.7357 -828,1007,1834,-9,1835,1836,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.91663,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,4,5,1,529,571911.56,0,0,6569.4521 -828,1007,1835,1836,-9,-9,4,1,0,43,1,0,2,0,1,-9,2,1,0,0,2,8.0666189,8.0084076,0,2,0,-9,22,0,-2,-88.083565,0,0,1,45,1,4,1,2,2,2019,1,1,13,1,30,35,15,1,0,1,0,8.4819584,8.4819584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.490002,21.190001,53,55,5,1,1,0,0,4,5,1,529,571911.56,0,0,6569.4521 -828,1007,1836,1835,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.4643812,9.7685356,0,2,0,-9,6,0,2,-126.62515,0,0,0,43,1,2,1,-9,-9,2019,1,4,9,1,50,40,15,1,0,1,0,36.638321,36.638321,0,0,0,0,0,0,0,0,0,0,0,6.9547892,0,0,0,53,55,48.490002,21.190001,6,1,1,0,0,4,5,1,529,571911.56,0,0,6569.4521 -828,1007,1837,-9,1835,1836,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.1973,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,4,5,1,529,571911.56,0,0,6569.4521 -829,1008,1838,-9,-9,-9,1,1,1,88,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1107.931,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,1,18.153189,0,0,0,0,125.28381,0,1,1,0,0,0,0,0,35.709999,15.11,-9,-9,6,1,1,0,0,13,1,1,206,-61133.91,0,0,7.9374027 -830,1009,1839,1840,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,7.0191717,7.7470388,7.1947551,1,0,-9,8,0,-2,133.86877,0,1,1,31,1,4,1,-9,-9,2019,1,2,5,0,5,24,15,1,0,1,0,23.276072,23.276072,0,0,0,0,0,0,0,0,0,0,0,7.0407219,0,0,0,54.740002,57.220001,54.200001,57.490002,6,1,1,0,0,10,4,0,680.5,113644.69,0,0,3038.6233 -830,1009,1840,1839,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,7.7016015,7.6915975,6.718204,1,0,-9,8,0,2,20.097734,0,0,0,29,1,4,1,-9,-9,2019,1,1,12,1,33,42,15,1,0,1,0,7.7045474,7.7045474,0,0,0,0,0,0,0,0,0,0,0,7.2947264,0,0,0,54.200001,57.490002,54.740002,57.220001,6,1,1,0,0,10,4,0,680.5,113644.69,0,0,3038.6233 -831,1010,1841,-9,1845,1843,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.33521,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,958.20001,329129.28,0,0,3151.3831 -831,1010,1842,-9,1845,1843,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.44855,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,958.20001,329129.28,0,0,3151.3831 -831,1010,1843,1845,-9,-9,2,1,1,45,1,0,3,0,1,-9,2,1,0,0,3,8.5422964,8.7198906,0,2,0,-9,6,0,3,-131.98677,0,0,0,42,1,3,1,2,3,2019,1,1,16,4,40,37,15,1,1,1,0,14.58104,14.58104,0,0,0,0,0,0,0,0,1,1,0,2.8043935,0,0,0,50.330002,45.59,34.650002,58.34,5,1,1,0,0,6,4,1,958.20001,329129.28,0,0,3151.3831 -831,1010,1844,-9,1845,1843,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.2139,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,958.20001,329129.28,0,0,3151.3831 -831,1010,1845,1843,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,0,3,7.7047977,7.7339549,0,2,0,-9,6,0,-3,-173.62848,0,0,1,45,1,3,1,1,1,2019,1,2,15,3,18,18,15,1,0,1,0,15.280504,15.280504,0,0,0,0,0,0,0,0,1,1,0,2.1547377,0,0,0,34.650002,58.34,50.330002,45.59,5,1,1,0,0,6,4,1,958.20001,329129.28,0,0,3151.3831 -832,1011,1846,1847,-9,-9,1,1,1,87,1,0,0,0,1,-9,4,3,0,0,2,0,8.4500332,8.2757339,1,0,-9,10,0,2,-24.718784,0,0,0,85,2,3,3,2,2,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.1561613,0,0,43.09,34.68,33.869999,45.189999,3,1,1,0,0,6,3,1,481.5,900272.38,0,0,3657.9551 -832,1011,1847,1846,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-2,-6.0415587,0,0,0,87,1,2,3,3,2,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,1,0,4.1763287,0,0,0,0,0,1,1,0,2.2072494,0,0,0,33.869999,45.189999,43.09,34.68,3,1,1,0,0,6,3,1,481.5,900272.38,0,0,3657.9551 -833,1012,1848,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,2,0,6.8447876,6.3985581,3,0,0,0,-9,0,-921.00232,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2952428,0,0,57.240002,30.639999,-9,-9,7,1,1,0,0,1,2,0,1235,244935.98,0,0,1837.0885 -834,1013,1849,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-969.776,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6596415,0,0,0,49.400002,29.02,-9,-9,6,1,1,0,0,2,1,0,272,149954.22,0,0,1010.5161 -834,1014,1850,-9,1849,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.8474107,8.0419178,0,3,0,0,0,-9,0,-1024.2622,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,35,40,15,1,0,-9,1,8.9846344,8.9846344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,2,3,0,511,-116536.84,0,0,1635.8212 -834,1015,1851,-9,1849,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.9810266,7.9667096,0,3,0,0,0,-9,0,-1111.7977,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,35,0,15,1,0,-9,1,6.7819777,6.7819777,0,0,0,0,0,0,0,0,1,1,0,2.4084802,0,0,0,46,58,-9,-9,5,1,1,0,0,2,3,0,1570,-18722.982,0,0,1008.2106 -835,1016,1852,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,2,0,7.0228834,6.7811241,3,0,0,0,-9,0,-924.54041,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1132274,0,0,45.970001,33.139999,-9,-9,4,1,1,0,0,2,2,1,139,144106.66,0,0,-75.462517 -836,1017,1853,1855,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,2,8.688693,8.6340847,0,2,0,-9,6,0,2,133.94574,0,0,0,43,2,2,1,-9,2,2019,1,2,13,2,37,37,15,1,0,1,0,19.74391,19.74391,0,0,0,0,0,0,0,0,1,1,0,.27901193,0,0,0,41.07,51.650002,37.66,42.400002,5,1,1,0,0,1,4,1,694.25,319101.19,0,0,2387.6826 -836,1017,1854,-9,1855,1853,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.4849,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,694.25,319101.19,0,0,2387.6826 -836,1017,1855,1853,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,2,7.0926476,7.2448058,0,2,0,-9,6,0,-2,-32.509613,0,0,1,45,1,2,1,-9,2,2019,1,1,4,0,15,15,15,1,0,1,0,10.875691,10.875691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.66,42.400002,41.07,51.650002,6,1,1,0,0,1,4,1,694.25,319101.19,0,0,2387.6826 -836,1017,1856,-9,1855,1853,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.5504,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,4,1,694.25,319101.19,0,0,2387.6826 -837,1018,1857,-9,1858,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1059.0187,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,12,2,0,685.66669,80379.25,0,0,2031.3113 -837,1018,1858,-9,-9,-9,1,1,0,34,3,0,2,0,3,-9,6,3,0,1,3,0,6.5557237,6.463367,4,0,0,0,-9,0,-949.36389,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.6207209,0,133.91441,3,54.02,55.169998,-9,-9,5,1,1,0,0,12,2,0,685.66669,80379.25,0,0,2031.3113 -837,1018,1859,-9,1858,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-938.1391,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,2,0,685.66669,80379.25,0,0,2031.3113 -838,1019,1860,1861,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.144659,6.9626355,0,1,0,-9,41,0,0,2.9742541,0,0,0,62,3,4,1,2,2,2019,1,1,11,2,20,25,15,1,0,1,0,6.9166684,6.9166684,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,45.810001,58.990002,5,1,1,0,0,13,4,1,372.5,243800.91,0,0,2382.7295 -838,1019,1861,1860,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,1,4,7.7445998,8.2543163,6.7238321,1,0,-9,10,0,0,3.1383584,0,0,0,62,2,3,1,-9,-9,2019,1,2,13,4,23,22,15,1,1,1,0,11.300653,11.300653,0,0,0,0,0,0,0,0,1,1,0,0,7.0174351,0,0,45.810001,58.990002,49,48,4,1,1,0,0,13,4,1,372.5,243800.91,0,0,2382.7295 -839,1020,1862,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,6.5745621,6.5253615,3,0,0,0,-9,0,-1145.3402,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5204015,0,0,45.380001,49.169998,-9,-9,6,1,1,0,0,8,2,1,1780,20342.883,0,0,2412.4561 -840,1021,1863,1864,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,0,5,9.0610142,9.1807861,0,2,0,-9,1,-9,-5,-90.059151,-9,0,0,35,1,3,1,-9,-9,2019,1,2,9,0,20,0,15,1,0,1,0,51.365562,51.365562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,46.009998,46.139999,5,1,1,0,0,1,5,1,616,271261.78,0,0,5112.5039 -840,1021,1864,1863,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,0,3,8.5954056,8.6046104,0,2,0,-9,1,-9,5,41.109241,-9,0,1,30,2,5,1,-9,-9,2019,1,1,12,1,41,0,15,1,0,1,0,14.415736,14.415736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.009998,46.139999,54.099998,59.110001,3,1,1,0,0,1,5,1,616,271261.78,0,0,5112.5039 -840,1021,1865,-9,1864,1863,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-970.29913,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,1,5,1,616,271261.78,0,0,5112.5039 -841,1022,1866,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,2,1,0,0,5,7.8997068,7.7893634,0,3,0,0,0,-9,0,-852.53784,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,15,32,15,1,0,-9,0,26.246098,26.246098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,7,1,1,0,0,12,3,1,540,713691.44,0,0,707.02716 -842,1023,1867,1868,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,1,2,0,6.3587766,6.5707221,1,0,-9,8,0,0,-25.563776,0,0,0,76,3,2,3,3,3,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,1,0,.31184542,0,0,0,0,0,1,1,0,0,6.2193322,0,0,64.400002,15.2,36.43,39,7,1,1,0,0,6,2,1,662.5,158457.58,0,0,1816.8236 -842,1023,1868,1867,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,5.8721886,5.62743,1,0,-9,8,0,0,184.56696,0,0,0,76,2,2,3,3,2,2019,4,1,23,11,0,0,15,4,1,4,0,0,0,1,0,2.7163756,0,0,0,0,14.5,1,1,0,6.4501476,5.5941625,7.5154581,1,36.43,39,64.400002,15.2,4,1,1,0,0,6,2,1,662.5,158457.58,0,0,1816.8236 -843,1024,1869,1870,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.789515,7.4521527,1,0,-9,43,0,4,-58.9072,0,0,0,61,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8443532,7.6163502,6.1478,3,57.16,56.150002,47.150002,55.389999,6,1,1,0,0,12,2,1,571.5,640496.06,0,0,1630.4854 -843,1024,1870,1869,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,5.0241175,5.042026,0,1,0,-9,43,0,-4,57.775276,0,0,0,65,2,4,3,2,2,2019,4,1,12,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.7337847,0,10.558935,3,47.150002,55.389999,57.16,56.150002,5,1,1,0,0,12,2,1,571.5,640496.06,0,0,1630.4854 -844,1025,1871,1872,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,5,8.4440737,8.1363955,0,1,0,-9,6,0,-1,67.898842,0,0,0,33,1,4,1,1,2,2019,1,2,7,1,40,41,15,1,0,1,0,13.557718,13.557718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,51.240002,58.84,6,1,1,0,0,12,5,1,1019.5,235865.44,0,0,2825.7832 -844,1025,1872,1871,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.029685,8.0526724,0,1,0,-9,6,0,1,136.37144,0,0,1,32,1,5,1,-9,-9,2019,1,1,8,0,38,40,15,1,0,1,0,10.886738,10.886738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,54.099998,59.110001,6,1,1,0,0,12,5,1,1019.5,235865.44,0,0,2825.7832 -845,1026,1873,-9,-9,-9,1,1,0,83,2,0,0,0,3,-9,4,3,0,0,5,0,7.3697562,6.5982094,3,0,0,0,-9,0,-966.0531,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9233351,0,0,51.73,58.82,-9,-9,6,1,1,0,0,13,2,1,872,307232.25,0,0,990.37842 -846,1027,1874,1875,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,2,0,6.4899378,6.2857661,1,0,-9,14,0,9,9.8174276,0,0,0,54,1,2,1,-9,-9,2019,3,2,13,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5308685,6.5869436,7.8799233,3,48.189999,36.459999,41.48,51.950001,5,2,3,0,0,1,4,1,213.5,825724.5,0,0,2500.3003 -846,1027,1875,1874,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,2,8.1983452,8.1706715,0,1,0,-9,5,0,0,-90.627838,0,0,0,63,2,2,3,-9,-9,2019,2,1,11,2,39,48,15,1,0,4,0,10.93015,10.93015,0,0,0,0,0,0,0,7,1,1,0,2.8714862,0,9.1611109,3,41.48,51.950001,48.189999,36.459999,4,1,1,0,1,1,4,1,213.5,825724.5,0,0,2500.3003 -847,1028,1876,1877,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,8.0642719,7.9577856,1,0,-9,10,0,0,97.863808,0,0,0,74,2,2,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4187503,7.9347515,0,0,54.200001,57.490002,28.540001,21.040001,6,1,1,0,0,13,3,1,573,1162360.3,0,0,2640.2725 -847,1028,1877,1876,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,6.9041777,7.0665064,1,0,-9,10,0,0,17.702778,0,0,0,74,1,4,3,3,2,2019,4,1,19,5,0,0,15,4,1,4,0,0,0,1,0,1.2951018,0,0,0,0,0,1,1,0,4.8232799,7.1661286,0,0,28.540001,21.040001,54.200001,57.490002,4,1,1,0,0,13,3,1,573,1162360.3,0,0,2640.2725 -848,1029,1878,1879,-9,-9,1,1,0,56,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,7,0,-2,0,0,0,0,58,1,2,1,2,2,2019,1,2,10,0,3,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,48.68,53.73,6,1,1,0,0,13,1,1,335,237465.44,0,0,-537.92529 -848,1029,1879,1878,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,2,0,0,0,1,0,-9,7,0,2,0,0,0,0,56,2,3,1,2,2,2019,1,1,22,10,0,43,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2131948,0,0,0,48.68,53.73,54.369999,54.799999,6,1,1,0,0,13,1,1,335,237465.44,0,0,-537.92529 -849,1030,1880,1882,-9,-9,1,1,0,25,1,1,1,0,1,-9,3,3,0,0,2,0,0,0,2,0,-9,3,0,-8,-20.900925,0,1,1,33,2,4,1,-9,-9,2019,3,2,19,6,0,42,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.189999,55.279999,46.98,59.349998,7,1,1,1,0,9,3,0,472.33334,34768.551,0,0,2388.6675 -849,1030,1881,-9,1880,1882,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.0209,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,3,0,472.33334,34768.551,0,0,2388.6675 -849,1030,1882,1880,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,1,4,7.9655247,7.9228086,0,2,0,-9,3,0,8,.22239704,0,0,0,25,1,2,3,-9,-9,2019,2,1,8,0,38,42,15,1,0,3,0,8.7763615,8.7763615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,36.189999,55.279999,7,1,1,0,0,9,3,0,472.33334,34768.551,0,0,2388.6675 -850,1031,1883,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1118.97,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,2.4927163,0,0,0,0,1,1,0,0,0,0,0,58.509998,20.49,-9,-9,6,1,1,0,0,1,1,0,83,145484.73,0,0,1342.2557 -851,1032,1884,1886,-9,-9,2,1,0,35,1,0,2,0,1,-9,1,1,0,0,3,7.4439149,7.6585269,0,2,0,-9,10,0,0,15.253966,0,0,1,35,1,4,1,1,2,2019,1,1,10,2,8,10,15,1,0,1,0,23.005573,23.005573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.049999,33.509998,53.990002,50.709999,6,1,1,0,0,10,4,1,298.5,534309.31,0,0,2483.0469 -851,1032,1885,-9,1884,1886,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.6934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,4,1,298.5,534309.31,0,0,2483.0469 -851,1032,1886,1884,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,0,4,8.7736931,8.7363214,0,2,0,-9,10,0,0,-106.29972,0,0,0,35,1,3,1,2,1,2019,1,2,5,0,50,40,15,1,0,1,0,13.436213,13.436213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.990002,50.709999,44.049999,33.509998,6,1,1,0,0,10,4,1,298.5,534309.31,0,0,2483.0469 -851,1032,1887,-9,1884,1886,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1166.453,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,298.5,534309.31,0,0,2483.0469 -852,1033,1888,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,6.6847568,6.9321218,3,0,0,0,-9,0,-1092.1689,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8441086,0,0,55.529999,51.549999,-9,-9,7,1,1,0,0,4,2,1,166,444359.66,0,0,812.17584 -853,1034,1889,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,5,8.0944729,8.1781664,0,3,0,0,0,-9,0,-985.17633,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,43,46,15,1,1,-9,0,8.028491,8.028491,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.75,61.950001,-9,-9,2,1,1,0,0,9,4,1,1468,736953.44,0,0,1691.4224 -854,1035,1890,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,1,1,0,0,4,7.620862,7.9407287,6.6125197,3,0,0,0,-9,0,-972.09912,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,43,45,15,1,0,-9,0,6.2670884,6.2670884,0,0,0,0,0,0,0,0,1,1,0,0,7.143877,0,0,62.669998,44.009998,-9,-9,6,1,1,0,0,12,4,1,477,1133729.4,0,0,2831.0308 -855,1036,1891,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,2,1,0,0,4,8.8495369,8.9701624,0,3,0,0,0,-9,0,-978.93213,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,49,44,15,1,0,-9,0,15.860139,15.860139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.27,45.68,-9,-9,4,1,1,0,0,5,5,0,1253,60450.941,0,0,3104.7212 -856,1037,1892,-9,1894,1893,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.34741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,1,483,-14375.211,0,0,1728.5696 -856,1037,1893,1894,-9,-9,1,1,1,27,1,1,1,0,2,-9,2,1,0,0,5,7.9745784,8.2568302,0,2,0,-9,4,0,1,106.73038,0,1,0,26,2,4,1,2,2,2019,1,2,8,0,53,50,15,1,0,1,0,6.5181909,6.5181909,0,0,0,0,0,0,0,2,1,1,0,0,0,3.8577659,3,54.099998,59.110001,54.200001,57.490002,7,1,1,0,0,2,3,1,483,-14375.211,0,0,1728.5696 -856,1037,1894,1893,-9,-9,2,1,0,26,1,1,1,0,2,-9,2,1,0,0,4,6.7548099,6.6910615,0,2,0,-9,4,0,-1,52.423725,0,1,1,27,2,5,1,-9,-9,2019,1,1,6,0,20,12,15,1,0,1,0,3.6957858,3.6957858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.099998,59.110001,7,1,1,0,0,2,3,1,483,-14375.211,0,0,1728.5696 -857,1038,1895,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,4,0,7.7698922,8.0136547,3,0,0,0,-9,0,-868.88165,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,20,15,4,0,-9,0,0,0,1,3.5933266,0,0,0,0,21.558834,0,1,1,0,5.9983401,7.923388,0,0,58.299999,42.18,-9,-9,6,1,1,0,0,8,3,0,1031,803243.5,0,0,873.78894 -858,1039,1896,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,0,5,8.8033476,8.8991985,0,3,0,0,0,-9,0,-973.79645,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,46,15,1,0,-9,0,11.852652,11.852652,0,0,0,0,0,0,0,0,0,0,0,3.61602,0,0,0,55.09,55.869999,-9,-9,6,1,1,0,1,10,4,1,155,207332.27,0,0,1444.5856 -859,1040,1897,-9,-9,-9,1,1,0,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-920.57294,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,47.240002,-9,-9,6,2,3,0,0,6,2,0,1078,0,0,0,63.953262 -860,1041,1898,1899,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-3,30.086693,0,0,0,82,2,2,3,-9,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.849998,61.259998,54.52,38.740002,6,1,1,0,0,9,2,1,438,516769.66,0,0,1901.6711 -860,1041,1899,1898,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,2,0,7.1462631,6.9049721,1,0,-9,59,0,3,45.460655,0,0,0,79,3,4,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2653866,6.8488107,0,0,54.52,38.740002,45.849998,61.259998,6,1,1,0,0,9,2,1,438,516769.66,0,0,1901.6711 -861,1042,1900,1902,-9,-9,2,1,1,63,1,0,1,0,2,-9,4,3,0,0,4,0,7.404736,7.5715823,2,0,-9,37,0,5,49.385975,0,0,0,58,2,3,1,3,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.631835,0,0,61.84,41.580002,45.580002,47.970001,6,1,1,0,0,1,4,1,394.33334,108386.9,0,0,2616.1692 -861,1042,1901,-9,1902,1900,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1070.5228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,1,4,1,394.33334,108386.9,0,0,2616.1692 -861,1042,1902,1900,-9,-9,1,1,0,58,1,0,1,0,2,-9,2,1,0,0,3,8.3384485,8.3364248,4.1275573,2,0,-9,37,0,-5,-107.21108,0,0,0,63,2,4,3,3,2,2019,2,2,12,0,30,33,15,1,0,4,0,16.306829,16.306829,0,0,0,0,0,0,0,14.5,1,1,0,0,4.3774748,9.5344238,3,45.580002,47.970001,61.84,41.580002,6,1,1,0,0,1,4,1,394.33334,108386.9,0,0,2616.1692 -861,1043,1903,-9,1902,1900,3,1,0,24,2,0,1,0,1,-9,2,1,0,0,4,8.2918921,8.4060192,0,3,0,0,0,-9,0,-1022.4815,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,43,15,1,0,-9,1,9.2705202,9.2705202,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.150002,-9,-9,6,1,1,0,0,1,4,1,1627,-19871.049,0,0,2051.0586 -862,1044,1904,1905,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,1,0,4.9451022,4.5215855,1,0,-9,63,0,-2,-23.988718,0,0,0,79,3,2,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,17.330235,0,0,0,0,0,1,1,0,0,4.8304501,0,0,36.919998,22.27,46.5,38.400002,6,1,1,0,0,9,1,1,372,1102.0508,0,0,1033.6342 -862,1044,1905,1904,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,63,0,2,-65.581161,0,0,0,77,3,1,3,3,-9,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,38.400002,36.919998,22.27,5,1,1,0,0,9,1,1,372,1102.0508,0,0,1033.6342 -863,1045,1906,1907,-9,-9,1,1,1,32,1,1,1,0,1,-9,2,1,0,0,3,8.505661,8.8794928,0,2,0,1,1,-9,-1,-180.21196,0,0,0,33,1,4,1,2,2,2019,1,3,19,6,42,42,15,1,1,1,0,21.539225,21.539225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.09,51.849998,37.869999,61.029999,6,1,1,0,0,11,5,1,718.33331,200511.7,0,0,5344.0425 -863,1045,1907,1906,-9,-9,3,1,0,33,1,1,1,0,1,-9,5,1,0,0,4,8.7867785,8.5548716,0,2,0,-9,1,-9,1,192.17305,-9,0,1,32,1,3,1,-9,-9,2019,1,1,24,10,40,0,15,1,1,1,0,15.514137,15.514137,0,0,0,0,0,0,0,0,1,1,0,6.6059408,0,0,0,37.869999,61.029999,40.09,51.849998,6,1,1,0,0,11,5,1,718.33331,200511.7,0,0,5344.0425 -863,1045,1908,-9,1907,1906,2,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1024.4846,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,5,1,718.33331,200511.7,0,0,5344.0425 -864,1046,1909,1910,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.2357206,6.3593841,1,0,-9,2,0,3,-92.912956,0,0,0,66,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8682036,6.409936,0,0,60.119999,54.799999,57.330002,53.459999,7,1,1,0,0,4,3,1,184.5,785062.06,0,0,2271.4548 -864,1046,1910,1909,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.6592622,7.3532443,1,0,-9,2,0,-3,97.95327,0,0,0,69,3,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6483088,0,0,57.330002,53.459999,60.119999,54.799999,6,1,1,0,0,4,3,1,184.5,785062.06,0,0,2271.4548 -865,1047,1911,-9,1913,-9,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-895.88336,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,2,0,1349,140807.83,0,0,2014.0128 -865,1047,1912,-9,1913,-9,5,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.23169,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,1349,140807.83,0,0,2014.0128 -865,1047,1913,-9,-9,-9,1,1,0,40,3,0,4,0,3,-9,2,1,0,0,3,8.0169916,7.6319079,0,4,0,0,0,-9,0,-937.31525,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,23,0,15,1,0,-9,0,13.575842,13.575842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,5,3,4,0,0,8,2,0,1349,140807.83,0,0,2014.0128 -865,1047,1914,-9,1913,-9,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.0909,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,2,0,1349,140807.83,0,0,2014.0128 -866,1048,1915,-9,1916,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-954.80225,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,1,654,-102446.96,0,0,880.49762 -866,1048,1916,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,0,4,7.7007298,7.6199732,0,4,0,0,0,-9,0,-930.74414,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,37,15,1,0,-9,0,7.1129618,7.1129618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,5,3,1,654,-102446.96,0,0,880.49762 -866,1048,1917,-9,1916,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1061.8666,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,5,3,1,654,-102446.96,0,0,880.49762 -867,1049,1918,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.1187191,6.061173,3,0,0,0,-9,0,-1034.9358,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3270454,5.6849799,0,0,50.490002,44.110001,-9,-9,7,1,1,0,0,7,2,1,432,197957.2,0,0,6928.2607 -868,1050,1919,1920,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,4.6039658,7.7575512,7.7891912,1,0,-9,27,0,5,-22.925646,0,0,0,60,1,3,3,2,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1032867,7.5222106,0,0,46.169998,46.330002,46.330002,55.93,6,1,1,0,0,5,4,0,581.5,1033035.6,0,0,2178.1838 -868,1050,1920,1919,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,7.366446,7.5551915,1,0,-9,27,0,-5,4.5324144,0,0,0,65,1,3,3,3,3,2019,4,1,12,1,0,8,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.8289733,7.7713766,9.9300566,3,46.330002,55.93,46.169998,46.330002,6,1,1,0,0,5,4,0,581.5,1033035.6,0,0,2178.1838 -869,1051,1921,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,5,9.1602755,9.1466351,0,3,0,0,0,-9,0,-1121.9241,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,7,48,15,1,0,-9,0,171.51799,171.51799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.209999,55.82,-9,-9,5,1,1,0,0,8,5,0,1193,882551.56,0,0,4766.3926 -870,1052,1922,1923,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,-5,-37.169044,0,0,0,51,2,4,1,3,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,68.419998,44.16,7,1,1,0,0,4,2,0,454.75,58921.051,0,0,1722.3628 -870,1052,1923,1922,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,4,7.0468659,7.1121497,0,2,0,-9,15,0,5,-62.400402,0,0,0,46,2,4,3,-9,-9,2019,2,1,5,0,24,24,15,1,0,3,0,7.2750821,7.2750821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.419998,44.16,60.119999,54.799999,6,1,1,0,0,4,2,0,454.75,58921.051,0,0,1722.3628 -870,1052,1924,-9,1922,1923,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.29614,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,454.75,58921.051,0,0,1722.3628 -870,1052,1925,-9,1922,1923,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.08014,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,2,0,454.75,58921.051,0,0,1722.3628 -871,1053,1926,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,3,0,4.9946122,5.0801172,3,0,0,0,-9,0,-1088.7893,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,129.1642,0,0,0,0,1,1,0,5.2864046,5.2383237,0,0,51,46,-9,-9,5,1,1,0,0,5,2,1,299,97166.766,0,0,1677.7556 -871,1054,1927,-9,1926,-9,2,1,0,45,2,0,0,0,3,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-977.43536,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,37,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.635021,3,44.759998,44.380001,-9,-9,6,1,1,0,0,5,1,1,96,-106741.94,0,0,0 -872,1055,1928,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,4,0,6.8776236,6.7810483,3,0,0,0,-9,0,-939.14111,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0868583,7.1191354,0,3,60.119999,54.799999,-9,-9,1,1,1,0,0,7,2,1,191,219458.94,0,0,240.74202 -873,1056,1929,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,4,8.2107201,8.2655363,0,3,0,0,0,-9,0,-957.7901,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,39,35,15,1,0,-9,0,12.054328,12.054328,0,0,0,0,0,0,0,42,1,1,0,0,0,41.607452,3,48.529999,58.91,-9,-9,5,3,4,0,0,8,4,0,952,76904.711,0,0,2443.1531 -874,1057,1930,1931,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,2,8.1217613,7.5208306,0,2,0,-9,7,0,0,66.685143,0,0,0,48,1,4,1,3,3,2019,1,1,16,4,30,30,15,1,1,1,0,9.7240686,9.7240686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.110001,39.299999,46.630001,59.720001,5,1,1,0,0,12,4,1,941.33331,171676.13,0,0,2695.8501 -874,1057,1931,1930,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,4,8.6679764,8.7378817,0,2,0,-9,7,0,0,32.512634,0,0,0,48,2,2,1,3,3,2019,1,2,15,2,30,30,15,1,0,1,0,17.365732,17.365732,0,0,0,0,0,0,0,14.5,1,1,0,.28990832,0,26.874336,3,46.630001,59.720001,48.110001,39.299999,6,1,1,0,0,12,4,1,941.33331,171676.13,0,0,2695.8501 -874,1057,1932,-9,1931,1930,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.7482,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,941.33331,171676.13,0,0,2695.8501 -875,1058,1933,1934,-9,-9,2,1,1,37,1,1,1,0,2,-9,2,1,0,0,4,8.120307,8.4251308,0,2,0,-9,1,-9,6,35.883427,-9,0,0,31,1,4,1,-9,-9,2019,1,1,7,0,42,0,15,1,0,1,0,11.086185,11.086185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,2,5,1,1179.6666,315834.44,0,0,2617.4561 -875,1058,1934,1933,-9,-9,1,1,0,31,1,1,1,0,1,-9,2,1,0,0,4,8.1537085,8.2380114,0,2,0,-9,1,-9,-6,-72.6903,-9,0,1,37,2,4,1,-9,-9,2019,1,2,5,0,42,0,15,1,0,1,0,14.15485,14.15485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,7,1,1,0,0,2,5,1,1179.6666,315834.44,0,0,2617.4561 -875,1058,1935,-9,1934,1933,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-991.24786,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,1,1179.6666,315834.44,0,0,2617.4561 -876,1059,1936,1937,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,0,5,9.9757299,9.5857353,0,1,0,-9,16,0,-1,28.702488,0,0,1,42,1,5,1,2,1,2019,1,2,9,0,60,50,15,1,0,1,0,27.694756,27.694756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,58.110001,39.400002,5,1,1,0,0,6,5,1,624,339436.69,0,0,10011.756 -876,1059,1937,1936,-9,-9,2,1,1,42,1,0,0,0,1,-9,2,1,0,0,5,9.4487982,9.6158209,6.6484494,1,0,-9,16,0,1,39.655655,0,0,0,41,1,5,1,3,2,2019,1,1,7,0,40,30,15,1,0,1,0,42.401947,42.401947,0,0,0,0,0,0,0,0,0,0,0,5.994082,7.6810031,0,0,58.110001,39.400002,48.77,60.16,6,1,1,0,0,6,5,1,624,339436.69,0,0,10011.756 -877,1060,1938,1939,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,0,4,8.1182966,7.6651478,0,1,0,-9,9,0,-1,46.716175,0,0,1,37,1,4,1,-9,-9,2019,1,1,9,0,38,33,15,1,0,1,0,6.9740262,6.9740262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,50,57,6,1,1,0,0,4,4,1,660,50302.723,0,0,2351.3364 -877,1060,1939,1938,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,4,8.2515783,8.3317251,0,1,0,-9,9,0,1,-84.252655,0,0,0,36,2,4,1,-9,-9,2019,1,2,6,0,39,38,15,1,0,1,0,11.934408,11.934408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,57.16,56.150002,6,1,1,0,0,4,4,1,660,50302.723,0,0,2351.3364 -878,1061,1940,1941,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,18,0,-1,4.6963363,0,0,0,69,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0377016,0,0,0,57.16,56.150002,43.650002,58.279999,7,1,1,0,0,12,2,1,834.5,418761.16,0,0,2040.71 -878,1061,1941,1940,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.3095894,6.7471952,1,0,-9,8,0,1,31.150236,0,0,0,68,2,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6344399,6.6345983,0,0,43.650002,58.279999,57.16,56.150002,6,1,1,0,0,12,2,1,834.5,418761.16,0,0,2040.71 -879,1062,1942,-9,1943,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,-9,0,-9,0,-1076.3376,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,1,1050.5,647457.5,0,0,2756.6724 -879,1062,1943,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,0,4,8.4278393,8.2946873,0,4,0,-9,0,-9,0,-865.90057,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,35,0,15,1,0,-9,0,16.008631,16.008631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,2,4,1,1050.5,647457.5,0,0,2756.6724 -879,1063,1944,-9,1943,-9,2,1,0,24,2,0,1,0,2,-9,2,1,0,0,4,8.1648188,8.1373224,0,3,0,-9,0,-9,0,-963.86237,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,50,0,15,1,0,-9,1,8.2188711,8.2188711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,-9,-9,7,1,1,0,0,2,4,1,483,125760.8,0,0,1519.9877 -880,1064,1945,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,3,3,0,1,1,0,3.9396,3.9573917,3,0,0,0,-9,0,-996.76135,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8012152,4.1604199,0,0,35.73,21.799999,-9,-9,4,1,1,1,0,10,1,1,481,195522.66,0,0,413.81491 -881,1065,1946,1947,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,1,2,0,4.9028807,5.4767175,1,0,-9,50,0,1,25.32729,0,0,0,68,3,4,1,3,2,2019,3,2,14,2,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,4.967319,4.7798061,0,0,38.18,27.120001,52.82,53.970001,5,1,1,0,0,7,3,0,424.5,278695.38,0,0,4430.6279 -881,1065,1947,1946,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,0,4,8.0339622,8.0798807,5.2123938,1,0,-9,10,0,-1,-6.6550517,0,0,0,69,2,2,3,-9,-9,2019,2,1,9,0,40,45,15,1,0,4,0,7.1054869,7.1054869,0,0,0,0,0,0,0,14.5,1,0,1,5.1084862,5.5589428,10.727412,2,52.82,53.970001,38.18,27.120001,6,1,1,0,0,7,3,0,424.5,278695.38,0,0,4430.6279 -881,1066,1948,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-954.039,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.950001,39.119999,-9,-9,3,1,1,1,0,7,1,0,159,0,0,0,-463.84686 -882,1067,1949,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,6.7286038,6.5700402,3,0,0,0,-9,0,-969.55646,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,18.446066,0,1,1,0,0,6.8516393,0,0,42.209999,25.58,-9,-9,5,1,1,0,0,4,2,1,730,327568.72,0,0,2070.561 -883,1068,1950,1951,-9,-9,2,1,1,27,1,1,1,0,2,-9,2,1,0,0,3,8.0237865,8.1223469,0,2,0,-9,1,-9,7,-45.174622,-9,1,0,20,2,4,1,-9,-9,2019,1,1,18,6,44,0,15,1,1,1,0,6.8549466,6.8549466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.93,59.119999,64.379997,39.16,4,1,1,0,0,6,3,0,485,5386.2036,0,0,2571.1907 -883,1068,1951,1950,-9,-9,1,1,0,20,1,1,1,0,2,-9,2,1,0,0,4,7.058248,6.7338967,0,2,0,1,1,-9,-7,-80.651978,0,1,1,27,2,3,1,-9,-9,2019,1,2,12,0,21,0,15,1,0,1,0,7.0091338,7.0091338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.379997,39.16,26.93,59.119999,6,1,1,0,0,6,3,0,485,5386.2036,0,0,2571.1907 -883,1068,1952,-9,1951,1950,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1034.0551,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,3,0,485,5386.2036,0,0,2571.1907 -884,1069,1953,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,0,3,8.5072355,8.8489141,0,3,0,0,0,-9,0,-1015.278,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,40,15,1,0,-9,0,19.576063,19.576063,0,0,0,0,0,0,0,2,0,0,0,0,0,5.421505,3,57.330002,53.459999,-9,-9,6,2,3,0,0,4,5,1,1013,334280.16,0,0,2606.6541 -885,1070,1954,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-985.83301,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,25.502033,0,0,1,1,0,0,0,0,0,62.990002,38.459999,-9,-9,7,1,1,0,0,1,1,0,1083,183608.88,0,0,2574.4734 -886,1071,1955,1956,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,6.3172841,6.4375367,1,0,-9,53,0,-1,16.843641,0,0,0,71,3,3,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.9059286,6.2038369,8.0670013,3,52.990002,38.049999,51,46,5,1,1,0,1,6,2,1,395.5,273208,0,0,1033.1782 -886,1071,1956,1955,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.2110701,5.4159617,1,0,-9,53,0,1,-40.115498,0,0,0,70,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0562062,5.4741969,2.216125,3,51,46,52.990002,38.049999,6,1,1,0,0,6,2,1,395.5,273208,0,0,1033.1782 -887,1072,1957,-9,-9,-9,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,5,8.6528234,8.8869133,0,3,0,0,0,-9,0,-944.82904,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,44,15,1,0,-9,1,12.624578,12.624578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,1,5,1,202,-76252.984,0,0,1475.3766 -888,1073,1958,1959,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,0,5,8.9922857,8.8617878,0,1,0,-9,25,0,-6,96.623344,0,0,0,52,2,3,1,-9,-9,2019,1,2,10,0,45,45,15,1,0,1,0,17.729719,17.729719,0,0,0,0,0,0,0,0,0,0,0,3.9132428,0,0,0,47.279999,59.360001,55.959999,49.93,5,1,1,0,0,8,5,1,485.5,375614.25,0,0,3954.6816 -888,1073,1959,1958,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.3508129,8.2973061,0,1,0,-9,23,0,6,-9.1855755,0,0,0,46,1,5,1,2,2,2019,1,1,7,0,38,43,15,1,0,1,0,13.153449,13.153449,0,0,0,0,0,0,0,0,0,0,0,3.3189073,0,0,0,55.959999,49.93,47.279999,59.360001,5,3,4,0,0,8,5,1,485.5,375614.25,0,0,3954.6816 -888,1074,1960,-9,1958,1959,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.6782527,7.9866161,0,3,0,0,0,-9,0,-978.44617,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,4,31,40,15,1,1,-9,1,10.689052,10.689052,0,0,0,0,0,0,0,0,0,0,0,.059232559,0,0,0,33.549999,62.900002,-9,-9,6,4,2,0,0,8,3,1,533,0,0,0,754.20508 -888,1075,1961,-9,1958,1959,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.7546425,7.6836743,0,3,0,0,0,-9,0,-1110.8447,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,25,25,15,1,0,-9,1,11.594784,11.594784,0,0,0,0,0,0,0,0,0,0,0,1.398576,0,0,0,54.790001,55.860001,-9,-9,6,4,2,0,0,8,3,1,5332,-2555.1482,0,0,986.59491 -889,1076,1962,-9,1963,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1037.0303,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,2,1,1172.5,-73140.547,0,0,1892.3711 -889,1076,1963,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,1,1,0,0,3,6.9860172,7.3399329,6.5024929,4,0,0,0,-9,0,-995.01044,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,2.854213,2.854213,0,0,0,0,0,0,0,0,1,1,0,7.428113,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,2,1,1172.5,-73140.547,0,0,1892.3711 -890,1077,1964,1965,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,7.737793,7.4688234,0,1,0,-9,6,0,-1,-89.551811,0,0,0,54,2,4,1,3,3,2019,1,1,10,1,26,26,15,1,0,1,0,9.8311939,9.8311939,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.07,46.290001,51.200001,46.509998,2,1,1,0,0,13,4,1,1444,61314.258,0,0,2164.7307 -890,1077,1965,1964,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.1895103,8.3489838,0,1,0,-9,6,0,1,17.922733,0,0,0,53,3,3,1,3,3,2019,1,2,8,0,43,50,15,1,0,1,0,10.539755,10.539755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.200001,46.509998,58.07,46.290001,5,1,1,0,0,13,4,1,1444,61314.258,0,0,2164.7307 -890,1078,1966,-9,1964,1965,3,1,0,31,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1048.3976,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,60,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,1,1,13,1,1,1257,-87894.164,0,0,948.10077 -890,1079,1967,-9,1964,1965,4,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1001.0248,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,1,13,1,1,72,290474.59,0,0,-659.62708 -890,1080,1968,-9,1964,1965,5,1,1,18,2,0,0,0,2,1,2,1,0,0,3,6.5097132,6.2466803,0,3,0,0,0,-9,0,-1014.8907,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,12,0,15,1,0,-9,1,5.6241584,5.6241584,0,0,0,0,0,0,0,0,1,1,0,1.2230463,0,0,0,55.93,49.950001,-9,-9,5,1,1,0,0,13,2,1,601,68589.664,0,0,652.55164 -891,1081,1969,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,0,2,8.4524126,8.3096981,0,3,0,0,0,-9,0,-1044.2106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,38,38,15,1,0,-9,0,13.095232,13.095232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,38,-9,-9,3,1,1,0,0,11,4,1,1505,-38796.555,0,0,2122.5222 -892,1082,1970,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,2,0,6.6837826,6.7532654,3,0,0,0,-9,0,-1100.4728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3654554,5.9317698,0,0,55.490002,20.59,-9,-9,6,1,1,0,0,10,2,1,462,322575.13,0,0,193.9071 -893,1083,1971,1972,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,0,3,9.0099068,9.2412043,0,1,0,-9,6,0,-2,211.34058,0,0,0,33,1,3,1,-9,-9,2019,1,1,13,1,42,48,15,1,0,1,0,19.548908,19.548908,0,0,0,0,0,0,0,0,0,0,0,4.6250844,0,0,0,46.080002,57.200001,52,54.509998,5,1,1,0,0,7,5,1,1036,123451.25,0,0,6198.8389 -893,1083,1972,1971,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,3,9.3139305,9.1912832,0,1,0,-9,6,0,2,-57.639786,0,0,1,31,2,3,1,-9,-9,2019,1,2,10,0,42,48,15,1,0,1,0,26.671131,26.671131,0,0,0,0,0,0,0,0,0,0,0,5.0244989,0,0,0,52,54.509998,46.080002,57.200001,6,2,3,0,0,7,5,1,1036,123451.25,0,0,6198.8389 -894,1084,1973,-9,1975,1974,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.10828,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,5,1,419.25,1042336.7,0,0,4822.5444 -894,1084,1974,1975,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,5,9.1835518,9.2514429,0,2,0,-9,6,0,3,-162.92581,0,0,0,46,1,5,1,2,2,2019,1,2,7,0,47,45,15,1,0,1,0,20.240589,20.240589,0,0,0,0,0,0,0,0,1,1,0,3.534483,0,0,0,54.099998,59.110001,45.810001,61.509998,7,1,1,0,0,12,5,1,419.25,1042336.7,0,0,4822.5444 -894,1084,1975,1974,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,5,8.2079897,8.4308653,0,2,0,-9,6,0,-3,-156.52647,0,0,0,49,2,5,1,2,2,2019,1,1,11,1,25,26,15,1,0,1,0,14.885818,14.885818,0,0,0,0,0,0,0,0,1,1,0,.17980781,0,0,0,45.810001,61.509998,54.099998,59.110001,6,1,1,0,0,12,5,1,419.25,1042336.7,0,0,4822.5444 -894,1084,1976,-9,1975,1974,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.28088,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,419.25,1042336.7,0,0,4822.5444 -895,1085,1977,-9,-9,-9,1,1,0,33,3,0,2,0,2,-9,2,1,0,0,4,7.7695169,7.8147645,6.9706225,4,0,0,0,-9,0,-1137.0986,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,24,30,15,1,0,-9,0,10.457948,10.457948,0,0,0,0,0,0,0,0,1,1,0,7.0067182,0,0,0,48.040001,53.419998,-9,-9,6,1,1,0,0,12,3,1,729.33331,-52810,0,0,2925.7646 -895,1085,1978,-9,1977,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-863.64301,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,1,729.33331,-52810,0,0,2925.7646 -895,1085,1979,-9,1977,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1059.5192,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,1,729.33331,-52810,0,0,2925.7646 -896,1086,1980,1981,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.0417857,6.8849053,1,0,-9,42,0,5,24.056534,0,0,0,57,2,5,3,-9,2,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8338547,6.9855409,0,0,45.73,57.57,60.02,56.419998,6,1,1,0,0,2,3,1,499.5,748184.13,0,0,1808.4036 -896,1086,1981,1980,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,0,5,0,6.7550688,6.9346528,1,0,-9,42,0,-5,39.007145,0,0,0,62,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9246159,6.6342902,0,0,60.02,56.419998,45.73,57.57,7,1,1,0,0,2,3,1,499.5,748184.13,0,0,1808.4036 -897,1087,1982,1983,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,6.9756193,7.1629515,2.7719381,1,0,-9,10,0,-1,-75.797699,0,0,0,57,3,3,1,-9,-9,2019,1,2,12,0,18,18,15,1,0,1,0,6.4057384,6.4057384,0,0,0,0,0,0,0,2,0,0,0,3.0751045,2.634356,0,3,56.34,40.630001,50.110001,46.169998,5,1,1,0,0,5,4,1,604.5,166048.06,0,0,1850.4292 -897,1087,1983,1982,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,0,3,8.0203924,7.9639168,6.8752561,1,0,-9,10,0,1,-163.54961,0,0,0,56,2,2,1,3,2,2019,1,1,12,0,32,40,15,1,0,1,0,10.828191,10.828191,0,0,0,0,0,0,0,0,0,0,0,1.043348,6.7544513,0,0,50.110001,46.169998,56.34,40.630001,4,1,1,0,0,5,4,1,604.5,166048.06,0,0,1850.4292 -898,1088,1984,-9,-9,-9,1,1,1,84,2,0,0,0,3,-9,4,3,0,0,3,0,5.9597692,6.0550461,3,0,0,0,-9,0,-952.73138,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7548914,5.980844,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,2,0,194,127873.04,0,0,445.13928 -899,1089,1985,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,0,4,7.8330812,8.1533651,4.7013135,3,0,0,0,-9,0,-883.37256,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,7.9029827,7.9029827,0,0,0,0,0,0,0,0,0,0,0,0,4.6872034,0,0,41.169998,59.310001,-9,-9,6,1,1,0,0,5,4,1,872,-81207.695,0,0,829.36902 -900,1090,1986,1987,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.4970999,8.4561529,0,1,0,-9,9,0,8,-102.00895,0,0,0,52,1,3,1,3,3,2019,1,2,7,1,36,39,15,1,0,1,0,16.54335,16.54335,0,0,0,0,0,0,0,0,0,0,0,1.1782756,0,0,0,58.080002,40.759998,61.279999,46.169998,6,1,1,0,0,8,5,1,904.5,1156950.9,0,0,3462.3118 -900,1090,1987,1986,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.1713476,8.0536976,0,1,0,-9,9,0,-8,-58.913906,0,0,0,60,2,3,1,3,3,2019,1,1,6,0,37,37,15,1,0,1,0,13.285602,13.285602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,58.080002,40.759998,5,1,1,0,0,8,5,1,904.5,1156950.9,0,0,3462.3118 -900,1091,1988,-9,1987,1986,3,1,1,29,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1071.5967,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,22,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,8,1,1,511,-420401.97,0,0,0 -900,1092,1989,-9,1987,1986,4,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.4190054,7.46316,5.9892864,3,0,0,0,-9,0,-1117.9326,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,33,0,15,1,0,-9,1,6.483346,6.483346,0,0,0,0,0,0,0,0,0,0,0,5.7410011,0,0,0,31.84,51.650002,-9,-9,5,1,1,0,0,8,3,1,536,-713.98083,0,0,1894.6743 -901,1093,1990,1991,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,3,8.5092602,9.0100279,0,1,0,-9,9,0,2,11.561378,0,0,0,58,1,3,3,-9,-9,2019,2,1,7,0,40,40,15,1,0,3,0,21.236736,21.236736,0,0,0,0,0,0,0,0,0,0,0,8.1303129,0,0,0,54.369999,54.799999,53.150002,37.709999,6,1,1,0,0,11,4,1,580,1576539.3,0,0,4924.918 -901,1093,1991,1990,-9,-9,1,1,0,58,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,37,0,-2,-36.838684,0,0,0,60,1,3,1,2,2,2019,3,2,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.7818794,0,2.4855397,3,53.150002,37.709999,54.369999,54.799999,7,1,1,0,0,11,4,1,580,1576539.3,0,0,4924.918 -901,1094,1992,-9,1991,1990,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.9142132,8.0036821,0,3,0,0,0,-9,0,-1037.5043,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,48,0,15,1,0,-9,1,7.6945925,7.6945925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.779999,61.860001,-9,-9,6,1,1,0,0,11,4,1,1015,-39455.297,0,0,2083.3347 -902,1095,1993,1994,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,5,0,0,0,0,79,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.209999,43.049999,57.759998,54.509998,5,1,1,0,0,11,1,1,336.5,293177.97,0,0,747.04419 -902,1095,1994,1993,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,60,0,-5,0,0,0,0,84,3,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,3.6669216,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,59.209999,43.049999,7,1,1,0,0,11,1,1,336.5,293177.97,0,0,747.04419 -903,1096,1995,1996,-9,-9,2,1,0,57,1,0,0,0,3,-9,3,3,0,0,1,0,0,0,1,0,-9,9,0,-3,0,0,0,0,60,3,4,3,3,-9,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.8421917,0,0,0,45.07,39.549999,56.57,57.779999,2,1,1,1,0,4,1,0,526.5,44453.922,0,0,1048.981 -903,1096,1996,1995,-9,-9,1,1,1,60,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,9,0,3,0,0,0,0,57,3,1,3,3,3,2019,4,2,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.57,57.779999,45.07,39.549999,5,1,1,1,0,4,1,0,526.5,44453.922,0,0,1048.981 -903,1097,1997,-9,1995,1996,3,1,1,19,2,0,0,0,2,1,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1067.8014,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,24,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.82,57.43,-9,-9,6,1,1,1,1,4,1,0,2730,133467.66,0,0,403.94659 -904,1098,1998,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-932.81866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.459999,30.9,-9,-9,6,1,1,0,0,9,1,0,242,40536.691,0,0,1984.7438 -905,1099,1999,2002,-9,-9,2,1,1,36,1,2,2,0,1,-9,1,1,0,0,4,8.0425634,8.101655,0,2,0,-9,9,0,4,39.226147,0,0,0,32,1,4,1,2,2,2019,1,1,9,0,45,30,15,1,0,1,0,9.1824408,9.1824408,0,0,0,0,0,0,0,0,1,1,0,7.0796509,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,587.75,147106.72,0,0,3205.5344 -905,1099,2000,-9,2002,1999,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-815.55005,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,3,1,587.75,147106.72,0,0,3205.5344 -905,1099,2001,-9,2002,1999,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-956.6449,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,3,1,587.75,147106.72,0,0,3205.5344 -905,1099,2002,1999,-9,-9,1,1,0,32,1,2,2,0,1,-9,5,1,0,0,4,5.9534311,5.6529698,0,2,0,-9,9,0,-4,-27.710876,0,0,1,36,1,4,1,2,2,2019,1,2,9,1,20,0,15,1,0,1,0,1.9114085,1.9114085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,587.75,147106.72,0,0,3205.5344 -906,1100,2003,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,2,1,0,0,3,8.5757666,8.6069393,0,3,0,0,0,-9,0,-1002.8014,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,49,50,15,1,0,-9,0,11.913308,11.913308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.57,52.889999,-9,-9,3,1,1,0,0,12,5,1,938,887118.81,0,0,2011.3055 -907,1101,2004,2005,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.0857711,6.2372212,1,0,-9,48,0,-4,60.377407,0,0,0,74,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,2.7911208,0,0,0,0,0,1,1,0,2.7485046,5.9352751,0,0,60.290001,52.110001,62.18,38.880001,6,1,1,0,0,12,2,1,649,615069.81,0,0,1940.5874 -907,1101,2005,2004,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.1745381,7.058567,1,0,-9,48,0,4,90.435204,0,0,0,70,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6148558,7.0830827,0,0,62.18,38.880001,60.290001,52.110001,6,1,1,0,0,12,2,1,649,615069.81,0,0,1940.5874 -908,1102,2006,2007,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,8.0022144,8.145443,5.7254543,1,0,-9,44,0,-1,-73.504768,0,0,0,62,2,4,1,3,3,2019,1,1,4,0,40,37,15,1,0,1,0,10.374993,10.374993,0,0,0,0,0,0,0,2,0,0,0,0,5.5938368,4.2670345,3,57.330002,53.459999,48.849998,58.560001,6,1,1,0,0,7,4,1,329.5,210747.77,0,0,2776.9253 -908,1102,2007,2006,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,8.1692982,8.2163496,0,1,0,-9,44,0,1,-82.626251,0,0,0,61,2,3,1,3,3,2019,1,2,10,0,42,40,15,1,0,1,0,9.2357483,9.2357483,0,0,0,0,0,0,0,0,0,0,0,.81685793,0,0,0,48.849998,58.560001,57.330002,53.459999,6,1,1,0,0,7,4,1,329.5,210747.77,0,0,2776.9253 -908,1103,2008,2009,-9,-9,4,1,0,32,1,0,0,0,2,-9,2,1,0,0,5,8.362854,8.6955776,0,1,0,-9,1,-9,-2,.20764346,-9,0,1,34,2,4,1,-9,-9,2019,1,3,9,0,45,0,15,1,0,1,0,14.919633,14.919633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,46.389999,60.990002,7,1,1,0,0,7,5,1,623.5,1620292.3,0,0,4043.4954 -908,1103,2009,2008,2006,2007,3,1,1,34,1,0,0,0,2,-9,2,1,0,0,4,9.0708876,9.1381721,0,1,0,1,1,-9,2,59.555046,0,0,0,32,2,5,1,2,2,2019,1,4,12,0,42,45,15,1,0,1,0,23.405449,23.405449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,57.060001,57.759998,6,1,1,0,0,7,5,1,623.5,1620292.3,0,0,4043.4954 -909,1104,2010,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,-9,0,-9,0,-1008.4404,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.389999,16.93,-9,-9,7,1,1,0,0,12,1,0,881,-204873,0,0,2015.9008 -909,1105,2011,-9,2010,-9,2,1,1,36,2,0,0,0,2,-9,2,1,0,0,2,8.1217518,7.5200701,0,3,0,-9,0,-9,0,-1109.0801,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,40,0,15,1,0,-9,1,8.3033772,8.3033772,0,0,0,0,0,0,0,7,1,1,0,0,0,7.4627337,3,53.23,47.509998,-9,-9,6,1,1,0,0,12,3,0,1364,-51816.051,0,0,1017.5424 -910,1106,2012,2013,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,8.6213856,7.952714,0,2,0,-9,2,0,17,114.09456,0,0,1,25,2,3,1,-9,-9,2019,1,1,12,0,38,39,15,1,0,1,0,12.095271,12.095271,0,0,0,0,0,0,0,0,0,0,0,1.2254291,0,0,0,54.200001,57.490002,49.970001,53.990002,6,1,1,0,0,10,4,1,881,70831.82,0,0,3001.1387 -910,1106,2013,2012,-9,-9,1,1,1,25,1,0,1,0,2,-9,2,1,0,0,3,8.142045,7.859828,0,2,0,-9,2,0,-17,-27.560524,0,1,0,42,2,4,1,-9,-9,2019,1,2,11,1,39,39,15,1,0,1,0,7.5894775,7.5894775,0,0,0,0,0,0,0,0,0,0,0,2.7527094,0,0,0,49.970001,53.990002,54.200001,57.490002,4,1,1,0,0,10,4,1,881,70831.82,0,0,3001.1387 -911,1107,2014,2015,-9,-9,2,1,0,68,1,1,2,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,51,0,-10,0,0,0,0,78,2,2,3,3,2,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,1,0,10.950974,7.5304704,17.417091,0,0,71.5,1,1,0,0,0,71.963783,1,40.610001,31.58,61.700001,7.25,5,2,3,0,0,8,1,1,885,287583.59,0,0,911.14685 -911,1107,2015,2014,-9,-9,1,1,1,78,1,1,2,0,2,-9,4,3,0,1,2,0,0,0,2,0,-9,51,0,10,0,0,0,0,68,3,2,3,3,3,2019,4,2,12,3,0,0,15,4,0,3,0,0,0,1,0,0,32.951347,0,0,0,0,1,1,0,0,0,0,0,61.700001,7.25,40.610001,31.58,6,2,3,0,0,8,1,1,885,287583.59,0,0,911.14685 -911,1108,2016,-9,2019,2017,6,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.38147,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,4,1,1377.75,440527.41,0,0,2489.6331 -911,1108,2017,2019,2014,2015,3,1,1,30,1,1,2,0,1,-9,2,1,0,0,4,8.9381943,8.6558056,0,2,0,-9,4,0,0,50.431938,0,0,0,30,1,3,3,3,2,2019,2,4,11,0,35,35,15,1,0,3,0,21.213276,21.213276,0,0,0,0,0,0,0,2,1,1,0,0,0,1.6993698,3,54.200001,57.490002,43.029999,53.23,5,2,3,0,0,8,4,1,1377.75,440527.41,0,0,2489.6331 -911,1108,2018,-9,2019,2017,5,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.3239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,4,1,1377.75,440527.41,0,0,2489.6331 -911,1108,2019,2017,-9,-9,4,1,0,30,1,1,2,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,4,0,0,-31.66477,0,0,1,30,1,4,1,-9,-9,2019,3,3,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.693459,3,43.029999,53.23,54.200001,57.490002,4,2,3,1,0,8,4,1,1377.75,440527.41,0,0,2489.6331 -912,1109,2020,2021,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,7.9419551,8.0022774,0,1,0,-9,31,0,-6,34.572979,0,0,0,59,1,5,1,2,1,2019,1,1,10,0,24,27,15,1,0,1,0,16.455801,16.455801,0,0,0,0,0,0,0,0,0,0,0,2.996119,0,0,0,58.150002,52.91,58.049999,54.52,6,1,1,0,0,7,5,1,263.5,1319998,0,0,4999.2451 -912,1109,2021,2020,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,5,9.1066465,8.7756176,0,1,0,-9,32,0,6,19.83742,0,0,0,53,1,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,22.116722,22.116722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,58.150002,52.91,6,1,1,0,0,7,5,1,263.5,1319998,0,0,4999.2451 -913,1110,2022,2023,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,2,0,5.7748408,5.7377496,1,0,-9,7,0,-4,-47.112118,0,0,0,62,2,3,3,2,3,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.7782745,5.8050594,0,3,33.07,41.950001,50.540001,52.369999,5,1,1,0,0,11,3,1,1251.5,282757.06,0,0,2161.8193 -913,1110,2023,2022,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.3803935,7.1952457,1,0,-9,7,0,4,72.567505,0,0,0,58,2,2,3,2,1,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.8469996,6.3277555,3,50.540001,52.369999,33.07,41.950001,6,1,1,0,0,11,3,1,1251.5,282757.06,0,0,2161.8193 -914,1111,2024,2025,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,5,9.2274771,9.2623053,0,1,0,-9,34,0,3,-90.5494,0,0,0,52,1,4,3,2,2,2019,2,2,8,1,42,44,15,1,0,3,0,33.940342,33.940342,0,0,0,0,0,0,0,2,0,0,0,7.6670337,0,6.8610425,3,57.060001,57.759998,59.139999,52.5,6,1,1,0,0,8,5,1,883.5,141019.2,0,0,4392.3877 -914,1111,2025,2024,-9,-9,2,1,0,52,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,34,0,-3,-3.8458276,0,0,0,55,1,5,1,2,2,2019,3,1,5,0,0,33,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.0367205,0,0,3,59.139999,52.5,57.060001,57.759998,6,1,1,1,0,8,5,1,883.5,141019.2,0,0,4392.3877 -914,1112,2026,-9,2025,2024,3,1,1,21,2,0,0,0,2,0,7,2,0,0,4,6.5284195,6.4877949,0,3,0,0,0,-9,0,-940.16943,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,14,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.810001,63.919998,-9,-9,3,1,1,0,0,8,2,1,193,-100498.8,0,0,-962.57489 -915,1113,2027,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-980.69379,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,3.7821751,0,0,0,0,31.664129,0,1,1,0,0,0,0,0,48.310001,23.6,-9,-9,5,1,1,0,0,13,1,0,631,0,0,0,637.73627 -916,1114,2028,2029,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,8.0280943,7.8147554,0,1,0,-9,32,0,-4,-11.635867,0,0,0,61,2,4,1,-9,-9,2019,1,1,8,0,22,19,15,1,0,1,0,13.616306,13.616306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.849998,53.389999,43.18,55.57,6,1,1,0,0,7,5,1,879,290229.13,0,0,4652.6514 -916,1114,2029,2028,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,8.4809694,8.3189173,6.0093474,1,0,-9,32,0,4,-56.208115,0,0,0,57,2,4,1,3,3,2019,1,2,12,1,20,0,15,1,0,1,0,29.918638,29.918638,0,0,0,0,0,0,0,0,0,0,0,0,6.0580258,0,0,43.18,55.57,44.849998,53.389999,6,1,1,0,0,7,5,1,879,290229.13,0,0,4652.6514 -916,1115,2030,-9,2028,2029,3,1,1,26,2,0,0,0,1,-9,2,1,0,0,5,9.0362024,8.7043409,0,3,0,0,0,-9,0,-870.77472,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,37,15,1,0,-9,1,18.933502,18.933502,0,0,0,0,0,0,0,0,0,0,0,2.0624728,0,0,0,58.200001,54.529999,-9,-9,6,1,1,0,0,7,5,1,349,64907.184,0,0,3603.4368 -917,1116,2031,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,1,1,0,0,4,7.5211172,7.2096758,5.4011927,3,0,0,0,-9,0,-1096.3525,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,6,4,15,1,0,-9,0,27.056799,27.056799,0,0,0,0,0,0,0,0,1,1,0,7.4451213,5.0967875,0,0,57.07,49.389999,-9,-9,6,1,1,0,0,9,3,1,176,675548.56,0,0,1719.6071 -918,1117,2032,-9,2033,2034,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.24805,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,0,562.33331,139120.94,0,0,3597.0215 -918,1117,2033,2034,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,0,5,7.9940934,8.1622152,0,2,0,-9,14,0,2,-154.29626,0,0,1,35,3,5,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,7.1594338,7.1594338,0,0,0,0,0,0,0,0,1,1,0,.82751387,0,0,0,54.099998,59.110001,44.459999,60.709999,6,1,1,0,0,9,4,0,562.33331,139120.94,0,0,3597.0215 -918,1117,2034,2033,-9,-9,2,1,1,35,1,0,1,0,3,-9,2,1,0,0,5,8.3153715,8.2366838,0,2,0,-9,14,0,-2,-1.7854682,0,0,0,37,2,5,1,2,2,2019,1,1,6,0,48,50,15,1,0,1,0,9.7095404,9.7095404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.459999,60.709999,54.099998,59.110001,7,1,1,0,0,9,4,0,562.33331,139120.94,0,0,3597.0215 -919,1118,2035,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,3,3,0,0,2,0,7.1223187,7.3295498,3,0,0,0,-9,0,-1028.3495,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2720289,0,0,60.619999,24.969999,-9,-9,5,1,1,1,0,12,2,1,241,1054560.4,0,0,-292.09406 -920,1119,2036,-9,-9,-9,1,1,0,26,3,0,0,0,2,-9,1,1,0,0,4,7.0463037,7.24295,0,3,0,0,0,-9,0,-970.28558,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,1,4,4,15,1,0,-9,0,35.154819,35.154819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.310001,49.700001,-9,-9,5,3,4,0,0,12,2,1,257,141916.14,0,0,207.09821 -921,1120,2037,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,3,8.9647694,9.2056274,7.8506942,3,0,0,0,-9,0,-939.21191,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2054167,7.6027904,0,0,52,47,-9,-9,5,1,1,0,0,9,5,1,1425,415170.75,0,0,7363.3135 -922,1121,2038,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-974.36871,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.310001,39.419998,-9,-9,3,3,4,0,0,4,1,0,38,27825.715,0,0,191.92067 -922,1122,2039,-9,2038,-9,2,1,0,20,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-965.57031,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.349998,38.669998,-9,-9,4,1,1,1,0,4,1,0,536,0,0,0,1111.925 -923,1123,2040,-9,-9,-9,1,1,0,24,2,0,3,0,2,-9,2,1,0,0,4,7.0103426,7.1542616,0,3,0,0,0,-9,0,-875.75397,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,4,30,0,15,1,1,-9,1,4.3346033,4.3346033,0,0,0,0,0,0,0,0,1,1,0,1.0427493,0,0,0,54.380001,34.810001,-9,-9,6,2,3,0,0,6,2,1,4521,42225.684,0,0,1489.2782 -923,1124,2041,-9,-9,-9,5,1,0,21,2,0,3,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1004.9588,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.200001,53.330002,-9,-9,7,2,3,1,0,6,1,1,767,181991.47,0,0,0 -924,1125,2042,2043,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.4038463,7.5441155,0,1,0,-9,3,0,-7,29.448977,0,0,0,64,2,3,1,-9,-9,2019,1,1,8,1,18,18,15,1,0,1,0,9.2576456,9.2576456,0,0,0,0,0,0,0,0,0,0,0,7.8034844,0,0,0,52.93,55.310001,55.950001,47.23,7,1,1,0,0,6,4,1,748,443516.94,0,0,2781.9597 -924,1125,2043,2042,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,8.1120539,7.9033031,5.8499398,1,0,-9,3,0,7,50.445671,0,0,0,57,2,4,1,3,2,2019,1,2,11,0,40,38,15,1,0,1,0,10.356465,10.356465,0,0,0,0,0,0,0,0,0,0,0,6.7699451,6.494617,0,0,55.950001,47.23,52.93,55.310001,6,1,1,0,0,6,4,1,748,443516.94,0,0,2781.9597 -925,1126,2044,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-952.83624,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.050697,3,25.01,30.809999,-9,-9,5,1,1,0,0,7,1,0,83,114851.88,0,0,1309.9885 -926,1127,2045,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,6.9250789,6.8210139,3,0,0,0,-9,0,-989.89667,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8671155,0,0,56.939999,43.990002,-9,-9,6,1,1,0,0,10,2,1,125,40932.277,0,0,1457.0193 -926,1128,2046,-9,2045,-9,2,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,7.8085132,7.6664438,4.8786755,3,0,0,0,-9,0,-869.69214,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,45,15,1,0,-9,1,7.1269865,7.1269865,0,0,0,0,0,0,0,0,1,1,0,0,4.7319374,0,0,41.98,44.150002,-9,-9,6,1,1,0,0,10,3,1,1241,32710.109,0,0,728.42493 -927,1129,2047,-9,2050,2051,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.64294,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,3,0,445,197436.88,0,0,3117.7273 -927,1129,2048,-9,2050,2051,4,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.90259,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,3,0,445,197436.88,0,0,3117.7273 -927,1129,2049,-9,2050,2051,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-867.12604,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,9,3,0,445,197436.88,0,0,3117.7273 -927,1129,2050,2051,-9,-9,2,1,0,43,1,1,3,0,2,-9,2,1,0,0,4,8.1383944,7.8340693,0,2,0,-9,8,0,0,-34.796608,0,0,1,43,1,5,1,2,1,2019,1,1,14,3,22,22,15,1,0,1,0,14.509484,14.509484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.119999,51.57,51.139999,60.450001,6,3,4,0,0,9,3,0,445,197436.88,0,0,3117.7273 -927,1129,2051,2050,-9,-9,1,1,1,43,1,1,3,0,1,-9,2,1,0,0,5,7.9497046,8.0648985,0,2,0,-9,7,0,0,-61.662712,0,0,0,43,2,4,1,3,2,2019,1,2,11,0,56,40,15,1,0,1,0,7.9380012,7.9380012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,61.119999,51.57,5,4,2,0,0,9,3,0,445,197436.88,0,0,3117.7273 -928,1130,2052,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,3,0,6.97435,6.7899113,3,0,0,0,-9,0,-1071.8536,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5018058,0,0,56.84,42.759998,-9,-9,6,1,1,0,0,6,2,1,306,113582.9,0,0,9.4376154 -929,1131,2053,2054,-9,-9,1,1,0,44,1,0,1,0,1,-9,6,3,0,1,4,0,0,0,2,0,-9,10,0,-2,0,0,0,1,46,2,4,3,2,1,2019,4,2,32,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,15.46754,3,15.26,51.23,57.009998,45.220001,5,1,1,0,0,13,1,0,390.5,-29877.904,0,0,1359.5439 -929,1131,2054,2053,-9,-9,2,1,1,46,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,10,0,2,0,0,0,0,44,1,4,3,2,-9,2019,4,1,4,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,17.241415,3,57.009998,45.220001,15.26,51.23,6,1,1,1,0,13,1,0,390.5,-29877.904,0,0,1359.5439 -930,1132,2055,-9,2059,2058,3,1,1,16,2,0,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.0593,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,732.16669,894395.63,0,0,1807.26 -930,1132,2056,-9,2059,2058,4,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.09229,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,2,2,0,732.16669,894395.63,0,0,1807.26 -930,1132,2057,-9,2059,2058,5,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.3807,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,732.16669,894395.63,0,0,1807.26 -930,1132,2058,2059,-9,-9,1,1,1,55,1,0,4,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,10,0,8,17.198101,0,0,0,47,1,2,1,3,2,2019,3,2,30,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.312521,3,11.76,53.060001,45.34,33.619999,2,1,1,1,0,2,2,0,732.16669,894395.63,0,0,1807.26 -930,1132,2059,2058,-9,-9,2,1,0,47,1,0,4,0,1,-9,2,1,0,0,2,7.4682059,7.8645029,0,2,0,-9,10,0,-8,-28.590818,0,0,0,55,3,2,3,2,3,2019,2,1,15,3,38,38,15,1,0,3,0,7.5920706,7.5920706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.34,33.619999,11.76,53.060001,4,1,1,0,0,2,2,0,732.16669,894395.63,0,0,1807.26 -930,1132,2060,-9,2059,2058,6,1,0,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-829.99982,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,2,2,0,732.16669,894395.63,0,0,1807.26 -931,1133,2061,2062,-9,-9,2,1,1,70,1,0,0,0,2,-9,2,1,0,0,2,8.2019701,8.9159956,8.1184702,1,0,-9,9,0,1,18.959507,0,0,0,69,2,3,1,3,3,2019,1,1,16,5,45,32,15,1,1,1,0,9.759244,9.759244,0,0,0,0,0,0,0,0,1,1,0,0,7.9623346,0,0,46.209999,37.400002,50.029999,52.619999,5,1,1,0,0,11,5,1,852,1598467,0,0,6473.5728 -931,1133,2062,2061,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,0,3,8.3934422,8.5298958,6.8852806,1,0,-9,9,0,-1,12.945689,0,0,0,70,2,2,1,3,3,2019,1,2,9,1,43,38,15,1,0,1,0,18.592648,18.592648,1,0,0,0,0,0,0,0,1,1,0,0,7.1570296,0,0,50.029999,52.619999,46.209999,37.400002,6,1,1,0,0,11,5,1,852,1598467,0,0,6473.5728 -932,1134,2063,-9,2065,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1005.7775,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,11,3,1,1706.6666,96394.656,0,0,2151.2397 -932,1134,2064,-9,2065,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-968.14526,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,3,1,1706.6666,96394.656,0,0,2151.2397 -932,1134,2065,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,1,2,7.8872676,7.8583646,0,4,0,0,0,-9,0,-928.76874,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,27,26,15,1,0,-9,0,10.886292,10.886292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,44.810001,-9,-9,3,1,1,0,0,11,3,1,1706.6666,96394.656,0,0,2151.2397 -933,1135,2066,2067,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,35,0,9,-47.888584,0,0,0,69,2,2,3,3,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4870913,0,0,1,57.290001,22.49,58.220001,12.92,6,1,1,0,0,9,1,0,227,428957.34,0,0,1711.6052 -933,1135,2067,2066,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,1,2,0,4.7016277,4.4783611,1,0,-9,35,0,0,13.511039,0,0,0,78,3,2,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3689725,4.5031972,0,0,58.220001,12.92,57.290001,22.49,6,1,1,0,0,9,1,0,227,428957.34,0,0,1711.6052 -934,1136,2068,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,2,0,6.6088204,6.3770967,3,0,0,0,-9,0,-1069.9312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9623919,6.0434422,0,0,57.5,37.380001,-9,-9,6,1,1,0,0,6,2,1,1787,464081.25,0,0,1506.7601 -935,1137,2069,2070,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,7.9641352,7.9053731,1,0,-9,51,0,1,-58.25782,0,0,0,71,2,3,3,3,3,2019,4,1,34,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0273681,7.907177,0,0,24.370001,40.099998,61.189999,39.41,2,1,1,0,0,9,3,1,549.5,1398002.8,0,0,3283.2253 -935,1137,2070,2069,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,5.4434748,5.0587897,1,0,-9,51,0,-1,-23.636061,0,0,0,72,1,3,3,3,-9,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6647005,5.2015743,0,0,61.189999,39.41,24.370001,40.099998,6,1,1,0,0,9,3,1,549.5,1398002.8,0,0,3283.2253 -936,1138,2071,2072,-9,-9,2,1,0,38,1,0,1,0,3,-9,2,1,0,1,2,7.1000924,7.1004429,0,2,0,-9,2,0,-8,132.53944,0,0,1,46,3,2,3,-9,-9,2019,2,1,8,0,20,20,15,1,0,3,0,8.5745554,8.5745554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.439999,46.970001,51.799999,38.82,4,1,1,0,0,6,2,0,849.66669,218850.63,0,0,2070.3765 -936,1138,2072,2071,-9,-9,1,1,1,46,1,0,1,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,2,0,8,68.880142,0,0,0,38,3,2,1,2,2,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.799999,38.82,48.439999,46.970001,4,1,1,1,0,6,2,0,849.66669,218850.63,0,0,2070.3765 -936,1138,2073,-9,2071,2072,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.9551,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,849.66669,218850.63,0,0,2070.3765 -937,1139,2074,2075,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.8467684,8.7556324,0,1,0,-9,30,0,-2,-34.969471,0,0,0,54,2,4,1,2,2,2019,1,2,10,0,27,24,15,1,0,1,0,25.263901,25.263901,0,0,0,0,0,0,0,0,0,0,0,2.9424555,0,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,4,5,1,541.5,377048.81,0,0,4142.7598 -937,1139,2075,2074,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,7.4809837,7.7612324,0,1,0,-9,30,0,2,-12.880083,0,0,0,52,1,4,1,2,2,2019,1,1,9,0,65,60,15,1,0,1,0,3.4378548,3.4378548,0,0,0,0,0,0,0,7,0,0,0,8.5071344,0,2.3882442,3,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,4,5,1,541.5,377048.81,0,0,4142.7598 -937,1140,2076,-9,2074,2075,3,1,1,22,2,0,0,0,1,1,2,1,0,0,3,8.3454676,8.1668453,0,3,0,0,0,-9,0,-1043.8131,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,42,0,15,1,0,-9,1,8.8573484,8.8573484,0,0,0,0,0,0,0,0,0,0,0,3.8256342,0,0,0,50.200001,52.610001,-9,-9,6,1,1,0,0,4,4,1,508,-10450.624,0,0,2148.1091 -938,1141,2077,2078,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,7.4515533,7.7511683,0,2,0,-9,15,0,-7,-65.594223,0,0,1,49,1,4,1,3,3,2019,1,2,21,8,28,30,15,1,1,1,0,10.081306,10.081306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.51,51.330002,62.490002,55.09,5,2,3,0,0,6,4,1,414.33334,203545.42,0,0,1244.4951 -938,1141,2078,2077,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,7.9712076,7.8306336,0,2,0,-9,15,0,7,133.09055,0,0,0,42,2,3,1,3,3,2019,1,1,9,1,48,36,15,1,0,1,0,6.2722645,6.2722645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,23.51,51.330002,7,2,3,0,1,6,4,1,414.33334,203545.42,0,0,1244.4951 -938,1141,2079,-9,2077,2078,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.87067,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,6,4,1,414.33334,203545.42,0,0,1244.4951 -939,1142,2080,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,1,1,0,0,3,6.1917009,6.0184574,0,3,0,-9,0,-9,0,-1024.2198,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,13,0,15,1,0,-9,0,4.2193999,4.2193999,0,0,0,0,0,0,0,2,0,0,0,6.8337731,0,11.282275,3,52.220001,53.259998,-9,-9,6,1,1,0,1,12,2,1,169,-209004.66,0,0,1023.6056 -940,1143,2081,2082,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,8.5538015,8.0959148,0,1,0,-9,2,0,0,-75.005135,0,1,1,25,1,5,1,-9,-9,2019,1,1,11,2,45,40,15,1,0,1,0,10.96277,10.96277,0,0,0,0,0,0,0,0,0,0,0,1.7548456,0,0,0,47,58,57.060001,57.759998,5,1,1,0,0,8,5,1,257.5,156600.98,0,0,3023.7988 -940,1143,2082,2081,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,8.8754578,8.9063187,0,1,0,-9,2,0,0,61.99366,0,1,0,25,1,4,1,2,2,2019,1,2,7,0,45,40,15,1,0,1,0,15.552464,15.552464,0,0,0,0,0,0,0,0,0,0,0,3.1909981,0,0,0,57.060001,57.759998,47,58,6,1,1,0,0,8,5,1,257.5,156600.98,0,0,3023.7988 -941,1144,2083,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-930.46954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,12.816365,0,0,0,0,1,1,0,0,0,0,0,44.259998,23.969999,-9,-9,5,1,1,0,1,4,1,0,556,0,0,0,546.91711 -942,1145,2084,2085,-9,-9,2,1,1,71,1,0,0,0,3,-9,2,1,0,0,3,7.5900126,7.4037008,0,1,0,-9,46,0,8,52.72374,0,0,0,63,2,4,1,3,2,2019,1,1,7,0,12,20,15,1,0,1,0,19.429102,19.429102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,55.189999,54.259998,6,1,1,0,0,7,3,1,926.5,866137.25,0,0,1956.8472 -942,1145,2085,2084,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.4159784,7.6725211,5.421258,1,0,-9,44,0,-8,26.396727,0,0,0,71,3,3,1,3,3,2019,1,2,10,0,22,27,15,1,0,1,0,7.7322335,7.7322335,0,0,0,0,0,0,0,0,1,1,0,0,5.053535,0,0,55.189999,54.259998,54.959999,53.169998,7,1,1,0,0,7,3,1,926.5,866137.25,0,0,1956.8472 -943,1146,2086,2087,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,30,0,-18,30.670284,0,0,0,79,2,2,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.607365,3,57.060001,57.759998,54.220001,44.610001,6,1,1,0,0,9,2,1,603,845484.63,0,0,3590.2524 -943,1146,2087,2086,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,0,7.0705509,7.1483092,1,0,-9,30,0,18,-6.3077931,0,0,0,61,2,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2001486,7.1709199,0,0,54.220001,44.610001,57.060001,57.759998,6,1,1,0,0,9,2,1,603,845484.63,0,0,3590.2524 -944,1147,2088,-9,2093,2094,3,1,1,14,2,1,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-986.16864,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -944,1147,2089,-9,2093,2094,6,1,1,7,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1178.1296,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -944,1147,2090,-9,2093,2094,7,1,0,1,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.7495,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -944,1147,2091,-9,2093,2094,4,1,1,13,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.291,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -944,1147,2092,-9,2093,2094,5,1,0,9,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.0785,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -944,1147,2093,2094,-9,-9,1,1,0,37,1,1,5,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,20,0,3,55.235191,0,0,1,34,2,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.778492,3,50.080002,33.759998,51,56,6,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -944,1147,2094,2093,-9,-9,2,1,1,34,1,1,5,0,2,-9,2,1,0,0,4,8.0513525,7.8461027,0,2,0,-9,6,0,-3,-6.3002586,0,0,0,37,1,3,3,-9,-9,2019,2,1,10,1,37,30,15,1,0,3,0,7.3657207,7.3657207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.080002,33.759998,5,2,3,0,0,4,2,1,1068.1428,-2141.3071,0,0,2432.3828 -945,1148,2095,-9,2096,2099,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.50244,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,4,1,1319,484315,0,0,4308.3408 -945,1148,2096,2099,-9,-9,1,1,0,32,1,1,3,0,1,-9,2,1,0,0,3,8.2587299,8.3682814,0,2,0,-9,6,0,0,-91.214828,0,0,1,41,2,4,1,-9,-9,2019,1,2,12,1,40,36,15,1,0,1,0,10.97715,10.97715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.040001,57.07,46.450001,51.59,4,3,4,0,0,8,4,1,1319,484315,0,0,4308.3408 -945,1148,2097,-9,2096,2099,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.7902,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,4,1,1319,484315,0,0,4308.3408 -945,1148,2098,-9,2096,2099,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.43427,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,4,1,1319,484315,0,0,4308.3408 -945,1148,2099,2096,-9,-9,2,1,1,41,1,1,3,0,2,-9,2,1,0,0,4,8.7619762,8.8352995,0,2,0,-9,7,0,9,-9.8597136,0,0,0,32,1,3,1,-9,-9,2019,1,1,9,0,55,60,15,1,0,1,0,14.608735,14.608735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.450001,51.59,35.040001,57.07,3,3,4,0,0,8,4,1,1319,484315,0,0,4308.3408 -946,1149,2100,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,1,3,6.6885185,6.6468568,0,4,0,0,0,-9,0,-887.98004,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,19,7,14,8,15,1,1,-9,0,7.5077543,7.5077543,0,0,0,0,0,0,0,42,1,1,0,0,0,45.761951,3,30.35,63.290001,-9,-9,6,1,1,0,0,13,2,0,459,48203.91,0,0,1838.1951 -947,1150,2101,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-874.78217,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.139999,46.959999,-9,-9,6,1,1,0,0,12,1,0,134,22944.293,0,0,2660.6353 -948,1151,2102,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,1,1,0,4.7419291,4.8875132,3,0,0,0,-9,0,-917.08282,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.1415644,7.1274385,3,16.040001,23.99,-9,-9,1,1,1,0,0,13,2,0,775,633244.75,0,0,1879.1997 -949,1152,2103,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,2,1,0,0,4,8.3974829,8.1057301,0,3,0,0,0,-9,0,-943.27344,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,40,15,1,0,-9,0,10.945782,10.945782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,6,1,1,0,0,2,4,1,696,172500.81,0,0,421.02759 -950,1153,2104,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.6457558,8.6516895,0,3,0,0,0,-9,0,-1054.3281,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,58,47,15,1,0,-9,0,11.533585,11.533585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,58.700001,-9,-9,4,1,1,0,0,9,5,0,191,2500.8516,0,0,2257.4199 -951,1154,2105,2106,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,0,3,8.6822643,8.9085455,0,2,0,-9,7,0,3,118.58249,0,0,0,52,2,3,1,2,3,2019,1,2,16,4,43,41,15,1,1,1,0,14.65086,14.65086,0,0,0,0,0,0,0,0,1,1,0,3.2146628,0,0,0,43.16,45.209999,51.02,52.220001,6,1,1,0,0,9,4,1,2210,1407287.9,0,0,3439.1287 -951,1154,2106,2105,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,7.7186313,7.4642119,0,2,0,-9,7,0,-3,50.991417,0,0,0,55,2,3,1,2,2,2019,1,1,14,2,25,25,15,1,0,1,0,11.106158,11.106158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,52.220001,43.16,45.209999,5,1,1,0,0,9,4,1,2210,1407287.9,0,0,3439.1287 -951,1154,2107,-9,2106,2105,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.54181,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,26,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.050949544,0,0,0,25.92,66.489998,-9,-9,5,1,1,0,0,9,4,1,2210,1407287.9,0,0,3439.1287 -952,1155,2108,2109,-9,-9,2,1,0,50,1,0,3,0,2,-9,2,1,0,0,4,8.0812168,8.3658972,0,2,0,-9,18,-9,4,-98.10527,-9,0,0,46,2,4,1,1,2,2019,1,1,6,0,37,0,15,1,0,1,0,11.222988,11.222988,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,54.240002,54.790001,55.860001,5,1,1,0,0,13,4,1,602.5,342281.31,0,0,4457.5547 -952,1155,2109,2108,-9,-9,1,1,1,46,1,0,3,0,2,-9,2,1,0,0,4,8.733325,8.8065414,0,2,0,-9,19,-9,-4,38.874294,-9,0,0,50,2,4,1,2,1,2019,1,2,6,0,37,0,15,1,0,1,0,23.888298,23.888298,0,0,0,0,0,0,0,0,1,1,0,2.7550168,0,0,0,54.790001,55.860001,55.360001,54.240002,6,1,1,0,0,13,4,1,602.5,342281.31,0,0,4457.5547 -952,1155,2110,-9,2108,2109,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1007.1122,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,4,1,602.5,342281.31,0,0,4457.5547 -952,1155,2111,-9,2108,2109,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-1122.8066,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,13,4,1,602.5,342281.31,0,0,4457.5547 -952,1156,2112,-9,2108,2109,3,1,1,20,2,0,3,0,2,-9,2,1,0,0,5,7.1736898,7.1544933,0,3,0,-9,0,-9,0,-825.15186,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,22,0,15,1,0,-9,1,5.5697589,5.5697589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,13,2,1,544,0,0,0,917.32135 -953,1157,2113,-9,2118,2115,5,1,1,11,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1024.7191,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,2,2,1,713.5,175124.08,0,0,2331.5835 -953,1157,2114,-9,2118,2115,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.24133,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,2,1,713.5,175124.08,0,0,2331.5835 -953,1157,2115,2118,-9,-9,1,1,1,45,1,1,4,0,2,-9,2,1,0,0,3,7.5729871,7.3621602,0,2,0,-9,20,0,2,-26.090492,0,0,0,43,3,3,3,3,3,2019,2,2,10,0,30,28,15,1,0,3,0,5.5687923,5.5687923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,46.880001,46.299999,6,2,3,0,1,2,2,1,713.5,175124.08,0,0,2331.5835 -953,1157,2116,-9,2118,2115,3,1,1,16,2,1,4,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-998.78003,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,2,2,1,713.5,175124.08,0,0,2331.5835 -953,1157,2117,-9,2118,2115,4,1,1,14,2,1,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-849.79041,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,2,3,0,0,2,2,1,713.5,175124.08,0,0,2331.5835 -953,1157,2118,2115,-9,-9,2,1,0,43,1,1,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,20,0,-2,52.206345,0,0,1,45,2,3,1,3,3,2019,3,1,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.880001,46.299999,54.959999,53.169998,6,2,3,0,0,2,2,1,713.5,175124.08,0,0,2331.5835 -954,1158,2119,2121,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,8.4540119,8.1872549,0,2,0,-9,18,0,10,50.00634,0,0,0,35,1,4,1,3,1,2019,1,2,11,0,45,40,15,1,0,1,0,11.154141,11.154141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.310001,54.810001,48.529999,58.91,5,2,3,0,0,4,4,1,1207.75,694520.19,0,0,3242.3911 -954,1158,2120,-9,2121,2119,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.2219,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,4,4,1,1207.75,694520.19,0,0,3242.3911 -954,1158,2121,2119,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,8.4248142,8.4619532,0,2,0,-9,18,0,-10,56.490154,0,0,1,45,1,4,1,2,1,2019,1,1,10,0,37,37,15,1,0,1,0,13.417275,13.417275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.529999,58.91,39.310001,54.810001,6,2,3,0,0,4,4,1,1207.75,694520.19,0,0,3242.3911 -954,1158,2122,-9,2121,2119,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-982.98114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,4,2,0,0,4,4,1,1207.75,694520.19,0,0,3242.3911 -955,1159,2123,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,0,3,6.6878757,6.7530499,0,3,0,-9,0,-9,0,-947.93506,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,16,0,15,1,0,-9,0,5.4412022,5.4412022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,2,3,0,0,4,2,1,752,128757.8,0,0,309.51038 -955,1160,2124,-9,2123,-9,3,1,0,27,3,0,0,0,1,-9,2,1,0,0,3,8.3801193,8.5411863,0,3,0,-9,0,-9,0,-883.79254,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,45,0,15,1,0,-9,1,9.4969215,9.4969215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,-9,-9,4,2,3,0,0,4,4,1,1202,27085.859,0,0,1510.2317 -956,1161,2125,2126,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,3,8.3265114,7.9913077,0,1,0,-9,31,0,5,-19.381626,0,0,0,49,1,2,1,2,2,2019,1,1,5,0,38,39,15,1,0,1,0,9.4085321,9.4085321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.200001,38.349998,42.849998,40.349998,6,1,1,0,0,10,5,1,667,-22313.211,0,0,1947.4625 -956,1161,2126,2125,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,2,8.2871428,8.1496754,0,1,0,-9,31,0,-5,-61.101742,0,0,0,54,3,3,1,2,-9,2019,1,2,16,4,37,38,15,1,1,1,0,12.884997,12.884997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.849998,40.349998,55.200001,38.349998,3,1,1,0,0,10,5,1,667,-22313.211,0,0,1947.4625 -956,1162,2127,-9,2125,2126,4,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.8029761,7.3584018,0,3,0,0,0,-9,0,-1011.7157,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,52,50,15,1,0,-9,1,3.8212085,3.8212085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,52.43,-9,-9,5,1,1,0,1,10,3,1,280,85332.438,0,0,-44.894951 -957,1163,2128,-9,2131,2129,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.6261,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,677.25,103614.25,0,0,2482.4485 -957,1163,2129,2131,-9,-9,3,1,1,48,1,0,2,0,2,-9,1,1,0,0,3,6.9215136,7.0262051,0,2,0,-9,9,0,0,103.65788,0,0,0,48,1,4,1,-9,-9,2019,1,1,15,4,16,16,15,1,1,1,0,7.8591948,7.8591948,0,0,0,0,0,0,0,0,1,1,0,4.4147649,0,0,0,45.18,54.77,54.200001,57.490002,6,1,1,0,0,7,4,1,677.25,103614.25,0,0,2482.4485 -957,1163,2130,-9,2131,2129,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-930.7356,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,7,4,1,677.25,103614.25,0,0,2482.4485 -957,1163,2131,2129,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,0,4,9.0218296,8.9499083,0,2,0,-9,27,0,0,6.0836086,0,0,0,48,2,3,1,2,1,2019,1,3,9,1,26,27,15,1,0,1,0,29.291256,29.291256,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.200001,57.490002,45.18,54.77,6,1,1,0,0,7,4,1,677.25,103614.25,0,0,2482.4485 -957,1164,2132,-9,2131,2129,2,1,1,18,2,0,2,0,2,1,2,1,0,0,4,5.9828134,6.2186947,0,3,0,0,0,-9,0,-916.0343,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,2,60,0,15,1,0,-9,1,.81877393,.81877393,0,0,0,0,0,0,0,0,1,1,0,2.4095898,0,0,0,58.150002,52.91,-9,-9,2,1,1,0,0,7,2,1,1215,245000.75,0,0,147.40486 -958,1165,2133,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,3,7.6308336,7.793509,0,3,0,0,0,-9,0,-949.99915,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,40,15,1,0,-9,0,8.0506783,8.0506783,0,0,0,0,0,0,0,0,0,0,0,4.3100367,0,0,0,52,54.509998,-9,-9,4,1,1,0,0,12,3,1,1075,0,0,0,907.19165 -959,1166,2134,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,7.0788903,7.1075983,3,0,0,0,-9,0,-1027.7571,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4869313,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,1,2,1,361,45472.746,0,0,1043.0231 -960,1167,2135,2136,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,4,0,8.5019321,8.1828079,1,0,-9,56,0,1,-72.66423,0,0,0,77,1,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9126759,8.2415342,5.1390219,1,57.73,54.529999,56.540001,28.84,7,1,1,0,0,5,4,1,1228.5,1389743.6,0,0,5170.3369 -960,1167,2136,2135,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,1,4,0,6.488791,5.9478264,1,0,-9,56,0,-1,138.65253,0,0,0,78,1,4,3,3,2,2019,4,1,6,0,0,15,15,4,0,4,0,0,0,1,0,5.9369297,0,0,0,0,0,1,1,0,6.0893345,5.8242803,0,0,56.540001,28.84,57.73,54.529999,6,1,1,0,0,5,4,1,1228.5,1389743.6,0,0,5170.3369 -961,1168,2137,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,0,3,7.9375529,7.9324069,0,3,0,0,0,-9,0,-963.0379,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,45,45,15,1,0,-9,0,7.6871424,7.6871424,0,0,0,0,0,0,0,0,1,1,0,4.1658778,0,0,0,57.93,46.290001,-9,-9,6,1,1,0,0,5,4,0,354,107014.36,0,0,1703.2048 -962,1169,2138,2139,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,63,0,-1,23.232782,0,0,0,82,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0853097,0,0,0,57.16,56.150002,53.459999,51.43,7,1,1,0,0,7,3,1,500.5,808329.5,0,0,1502.1746 -962,1169,2139,2138,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,4,0,7.7098413,7.9200535,1,0,-9,63,0,1,-59.883507,0,0,0,81,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9679642,7.9870353,0,0,53.459999,51.43,57.16,56.150002,7,1,1,0,0,7,3,1,500.5,808329.5,0,0,1502.1746 -963,1170,2140,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,5.9676776,5.9014454,3,0,0,0,-9,0,-926.6828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1577907,5.8222895,0,0,57.16,56.150002,-9,-9,1,1,1,0,0,10,2,1,444,96785.219,0,0,-110.99426 -964,1171,2141,2142,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,53,0,-2,107.23166,0,0,0,71,2,4,3,3,3,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7768469,0,0,0,39.810001,36.040001,63.240002,42.389999,7,2,3,0,0,5,2,1,768,544601.88,0,0,2720.7854 -964,1171,2142,2141,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.1575518,6.8890829,1,0,-9,53,0,2,-2.9335709,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.0111742,118.78532,1,63.240002,42.389999,39.810001,36.040001,7,2,3,0,0,5,2,1,768,544601.88,0,0,2720.7854 -965,1172,2143,-9,2146,2144,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.4597,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,1,1,1170.75,71005.133,0,0,-67.186737 -965,1172,2144,2146,-9,-9,2,1,1,59,1,0,2,0,3,-9,2,1,0,0,5,0,0,0,2,0,-9,19,0,10,0,0,0,0,49,3,3,3,-9,-9,2019,2,1,6,0,0,36,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,18.99,61.599998,7,1,1,0,0,9,1,1,1170.75,71005.133,0,0,-67.186737 -965,1172,2145,-9,2146,2144,3,1,0,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-939.39886,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,9,1,1,1170.75,71005.133,0,0,-67.186737 -965,1172,2146,2144,-9,-9,1,1,0,49,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,19,0,-10,0,0,0,0,59,3,5,1,3,3,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1957296,0,0,0,18.99,61.599998,62.389999,56.709999,6,1,1,0,0,9,1,1,1170.75,71005.133,0,0,-67.186737 -966,1173,2147,-9,2148,2149,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.16901,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,548.66669,242308.45,0,0,7874.7974 -966,1173,2148,2149,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,1,4,9.1123343,9.0688152,0,2,0,-9,15,0,-8,-121.58562,0,0,1,50,2,3,1,2,2,2019,1,1,12,0,40,40,15,1,0,1,0,32.618504,32.618504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.369999,54.799999,5,1,1,0,0,2,5,1,548.66669,242308.45,0,0,7874.7974 -966,1173,2149,2148,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,1,3,9.4288998,9.428894,0,2,0,-9,17,0,8,85.474609,0,0,0,42,1,4,1,2,2,2019,1,2,8,0,47,48,15,1,0,1,0,27.297428,27.297428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,57.16,56.150002,6,1,1,0,0,2,5,1,548.66669,242308.45,0,0,7874.7974 -967,1174,2150,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-920.68018,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,-9,-9,4,1,1,1,0,2,1,1,340,0,0,0,0 -967,1175,2151,-9,-9,-9,2,1,1,37,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1102.4716,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.58629739,0,0,0,40.349998,42.34,-9,-9,5,1,1,1,0,2,1,1,500,55528.547,0,0,-57.210865 -968,1176,2152,2153,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.8093281,8.9220324,0,1,0,-9,7,0,0,21.272633,0,0,0,64,2,4,1,2,2,2019,1,1,7,0,48,53,15,1,0,1,0,15.474978,15.474978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,62.490002,55.09,7,1,1,0,0,6,5,1,696,607251.88,0,0,4143.9902 -968,1176,2153,2152,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,4,8.3049717,8.4279928,0,1,0,-9,7,0,9,-134.85034,0,0,0,55,2,4,1,2,2,2019,1,2,8,0,38,43,15,1,0,1,0,12.908397,12.908397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,57.16,56.150002,5,1,1,0,0,6,5,1,696,607251.88,0,0,4143.9902 -969,1177,2154,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.8367391,7.9631748,0,3,0,-9,0,-9,0,-1084.9551,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,39,0,15,1,0,-9,0,7.6150956,7.6150956,0,0,0,0,0,0,0,0,0,0,0,4.5008955,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,11,3,0,347,-134166.23,0,0,324.81216 -970,1178,2155,-9,2156,-9,7,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-981.11646,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,2,0,336.5,388010.81,0,0,816.89697 -970,1178,2156,-9,2158,-9,2,1,0,19,2,1,4,0,2,-9,3,3,0,1,4,5.1008196,5.0767765,0,3,0,0,0,-9,0,-913.62799,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,3,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.145375,3,60.099998,54.82,-9,-9,7,1,1,1,0,5,2,0,336.5,388010.81,0,0,816.89697 -970,1179,2157,-9,2158,-9,4,1,0,12,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.25653,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,3,0,261.39999,685785.94,0,0,3946.8257 -970,1179,2158,2159,-9,-9,1,1,0,35,1,1,4,0,2,-9,2,1,0,0,3,8.2310629,7.7467413,0,2,0,-9,6,0,-11,-12.364781,0,0,1,46,2,2,1,-9,-9,2019,1,6,15,3,39,43,15,1,0,1,0,9.3391542,9.3391542,0,0,0,0,0,0,0,74.5,1,1,0,0,0,67.280312,3,36.049999,52.380001,50.27,48.860001,5,1,1,0,0,5,3,0,261.39999,685785.94,0,0,3946.8257 -970,1179,2159,2158,-9,-9,6,1,1,46,1,1,4,0,2,-9,2,1,0,0,2,8.0355406,7.9332023,0,2,0,-9,6,0,11,67.183701,0,0,0,35,2,3,1,-9,-9,2019,1,1,14,2,40,40,15,1,0,1,0,9.2341051,9.2341051,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.677706,3,50.27,48.860001,36.049999,52.380001,4,1,1,0,0,5,3,0,261.39999,685785.94,0,0,3946.8257 -970,1179,2160,-9,2158,-9,5,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.82294,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,3,0,261.39999,685785.94,0,0,3946.8257 -970,1179,2161,-9,2158,-9,3,1,1,16,2,1,4,1,3,-9,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1118.3116,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.27,46.360001,-9,-9,5,1,1,0,0,5,3,0,261.39999,685785.94,0,0,3946.8257 -971,1180,2162,2163,-9,-9,2,1,1,28,1,0,0,0,2,-9,3,3,0,1,4,0,0,0,1,0,-9,6,0,-1,0,0,1,0,29,2,1,3,-9,-9,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.16467,1,25.440001,65.400002,18.17,41.009998,5,1,1,1,1,5,1,0,1130,0,0,0,739.99188 -971,1180,2163,2162,-9,-9,1,1,0,29,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,6,0,1,0,0,1,1,28,2,4,3,3,-9,2019,4,2,36,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.17,41.009998,25.440001,65.400002,1,1,1,1,1,5,1,0,1130,0,0,0,739.99188 -972,1181,2164,2165,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.5407581,8.4630346,0,1,0,-9,6,0,-5,-48.172462,0,0,0,53,2,4,1,3,3,2019,1,2,10,0,32,32,15,1,0,1,0,18.118959,18.118959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,53.330002,53.709999,5,1,1,0,0,4,5,1,417,722222.13,0,0,3716.0127 -972,1181,2165,2164,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.5952291,8.5349731,0,1,0,-9,6,0,5,-7.8041697,0,0,0,48,2,3,1,-9,-9,2019,1,1,11,0,42,42,15,1,0,1,0,15.320046,15.320046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.330002,53.709999,46.080002,57.200001,5,1,1,0,0,4,5,1,417,722222.13,0,0,3716.0127 -973,1182,2166,2169,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,3,7.7634168,8.0086575,0,2,0,-9,21,0,-4,55.420391,0,0,1,44,2,5,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,9.0002003,9.0002003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.889999,48.599998,57.060001,57.759998,6,1,1,0,0,4,3,1,736.25,61096.293,0,0,1913.374 -973,1182,2167,-9,2166,2169,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.81427,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,4,3,1,736.25,61096.293,0,0,1913.374 -973,1182,2168,-9,2166,2169,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.74158,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,736.25,61096.293,0,0,1913.374 -973,1182,2169,2166,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,5,7.4617352,7.3634739,0,2,0,-9,21,0,4,-7.0039721,0,0,0,40,2,3,1,-9,-9,2019,1,2,7,0,45,44,15,1,0,1,0,5.2631044,5.2631044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,58.889999,48.599998,6,1,1,0,0,4,3,1,736.25,61096.293,0,0,1913.374 -974,1183,2170,2172,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,5,8.6193218,8.7121935,0,2,0,-9,10,0,1,43.302643,0,0,0,36,1,4,1,1,1,2019,1,2,6,0,40,40,15,1,0,1,0,16.568716,16.568716,0,0,0,0,0,0,0,0,1,1,0,7.9673805,0,0,0,54.349998,57.84,57.16,56.150002,7,1,1,0,0,1,4,1,407.75,791850,0,0,4223.7246 -974,1183,2171,-9,2172,2170,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-941.57898,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,1,4,1,407.75,791850,0,0,4223.7246 -974,1183,2172,2170,-9,-9,2,1,0,36,1,1,2,0,1,-9,5,1,0,0,4,8.235364,8.6103172,0,2,0,-9,10,0,-1,26.954287,0,0,1,37,1,5,1,2,2,2019,1,1,4,0,25,38,15,1,0,1,0,18.837816,18.837816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.349998,57.84,7,1,1,0,0,1,4,1,407.75,791850,0,0,4223.7246 -974,1183,2173,-9,2172,2170,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.56476,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,4,1,407.75,791850,0,0,4223.7246 -975,1184,2174,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,0,3,7.7900085,8.2567768,5.8471665,3,0,-9,0,-9,0,-931.48035,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,0,15,1,0,-9,0,9.8483076,9.8483076,0,0,0,0,0,0,0,7,0,0,0,9.7049494,6.1914539,20.03334,3,55.610001,50.299999,-9,-9,6,4,2,0,0,8,4,1,143,494643.13,0,0,6786.2227 -976,1185,2175,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,5,8.4316015,8.2397556,6.5465832,3,0,0,0,-9,0,-995.01288,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,37,15,1,0,-9,0,15.012083,15.012083,0,0,0,0,0,0,0,0,0,0,0,0,7.0829611,0,0,46.400002,59.869999,-9,-9,3,1,1,0,0,7,5,1,510,200243.14,0,0,95.139427 -977,1186,2176,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,1,2,7.6621051,7.4566112,0,3,0,0,0,-9,0,-1047.7009,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,30,32,15,1,0,-9,0,7.509788,7.509788,0,0,0,0,0,0,0,2,1,1,0,0,0,3.5271189,3,46.119999,20.9,-9,-9,6,1,1,0,0,13,3,0,229,402786.03,0,0,3261.8435 -978,1187,2177,2178,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,8.7260962,8.9654846,0,1,0,-9,17,0,3,66.926727,0,0,0,58,2,4,1,3,3,2019,1,2,9,0,42,40,15,1,0,1,0,13.871976,13.871976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,47.919998,55,53,5,1,1,0,0,7,5,1,1293.5,564135.44,0,0,4457.3623 -978,1187,2178,2177,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.1241093,8.4759178,6.8978758,1,0,-9,17,0,-3,92.097557,0,0,0,61,3,3,1,-9,-9,2019,1,1,9,0,24,40,15,1,0,1,0,17.584959,17.584959,0,0,0,0,0,0,0,0,0,0,0,0,6.5682139,0,0,55,53,57.34,47.919998,6,1,1,0,0,7,5,1,1293.5,564135.44,0,0,4457.3623 -979,1188,2179,2180,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.4206347,7.399138,0,1,0,-9,16,0,-3,30.818134,0,0,0,54,3,3,1,3,3,2019,1,2,10,1,32,32,15,1,0,1,0,6.3752685,6.3752685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.470001,35.889999,60.549999,42.48,5,1,1,0,0,2,4,1,545.5,94760.828,0,0,2620.0278 -979,1188,2180,2179,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,7.7664537,7.9605966,0,1,0,-9,16,0,3,-30.370968,0,0,0,51,2,4,1,3,3,2019,1,1,7,0,40,44,15,1,0,1,0,7.8812966,7.8812966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.549999,42.48,59.470001,35.889999,7,1,1,0,0,2,4,1,545.5,94760.828,0,0,2620.0278 -980,1189,2181,2182,-9,-9,1,1,0,26,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-10,125.59726,0,1,1,36,2,4,1,2,3,2019,3,2,26,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.809999,65.690002,52.400002,55.580002,3,1,1,0,0,10,3,1,605.5,111402.91,0,0,1238.2225 -980,1189,2182,2181,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,4,8.3324633,8.3890944,0,2,0,-9,7,0,10,145.5472,0,0,0,26,2,4,3,-9,-9,2019,2,1,11,0,45,55,15,1,0,3,0,11.699815,11.699815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,55.580002,27.809999,65.690002,5,1,1,0,0,10,3,1,605.5,111402.91,0,0,1238.2225 -980,1189,2183,-9,2181,2182,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.43616,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,1,605.5,111402.91,0,0,1238.2225 -980,1189,2184,-9,2181,2182,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.63593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,605.5,111402.91,0,0,1238.2225 -981,1190,2185,2186,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,5.7259154,6.2353644,1,0,-9,48,0,0,12.119247,0,0,0,67,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1226506,5.9814305,0,0,60.119999,54.799999,57.34,39.889999,7,1,1,0,0,9,3,1,1325.5,1861267.3,0,0,3993.7468 -981,1190,2186,2185,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,8.2654905,8.0879297,1,0,-9,48,0,0,17.552961,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1001892,8.2926493,0,0,57.34,39.889999,60.119999,54.799999,6,1,1,0,0,9,3,1,1325.5,1861267.3,0,0,3993.7468 -982,1191,2187,-9,2189,2188,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-987.1604,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,11,1,1,585.66669,-18311.531,0,0,944.59247 -982,1191,2188,2189,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,0,3,2.255209,2.2350247,0,2,0,-9,1,-9,-2,-8.0544643,-9,0,0,49,2,3,1,-9,-9,2019,1,1,9,0,50,0,15,1,0,1,0,.024755111,.024755111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.779999,47.240002,57.330002,53.459999,6,1,1,0,0,11,1,1,585.66669,-18311.531,0,0,944.59247 -982,1191,2189,2188,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,1,-9,2,-91.743446,-9,0,0,47,2,3,1,3,3,2019,1,2,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.3062539,0,25.056053,3,57.330002,53.459999,52.779999,47.240002,2,1,1,0,0,11,1,1,585.66669,-18311.531,0,0,944.59247 -983,1192,2190,-9,-9,-9,1,1,0,92,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1076.5927,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,19.139839,0,0,0,0,167.51871,0,1,1,0,.78982997,0,0,0,53,44,-9,-9,6,1,1,0,0,13,1,0,443,-63102.313,0,0,1492.1249 -984,1193,2191,2192,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.316143,5.3455677,1,0,-9,53,0,-2,66.230751,0,0,0,75,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5869479,5.4763455,0,0,53.389999,44.470001,46.540001,47.419998,6,1,1,0,0,4,2,1,283,1274722.9,0,0,1211.1128 -984,1193,2192,2191,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,5.4500823,6.0990591,1,0,-9,53,0,2,87.99675,0,0,0,73,2,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8741202,5.5090308,0,0,46.540001,47.419998,53.389999,44.470001,6,1,1,0,0,4,2,1,283,1274722.9,0,0,1211.1128 -985,1194,2193,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,0,3,0,7.016314,7.5577798,3,0,0,0,-9,0,-1021.1898,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4660907,0,0,58.220001,40.759998,-9,-9,6,1,1,0,0,2,2,1,1335,548166.25,0,0,749.12195 -986,1195,2194,2195,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,4,0,0,0,0,69,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,6.6672282,0,0,0,0,0,1,1,0,.55646539,0,0,0,50.68,25.790001,54.790001,55.860001,6,1,1,0,0,2,1,0,711.5,-43323.035,0,0,518.08325 -986,1195,2195,2194,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-4,0,0,0,0,73,3,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,50.68,25.790001,6,1,1,0,0,2,1,0,711.5,-43323.035,0,0,518.08325 -987,1196,2196,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1041.7186,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.940001,61.650002,-9,-9,3,1,1,1,1,7,1,0,437,-16235.8,0,0,0 -988,1197,2197,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,0,1,8.9593678,9.1142778,0,3,0,0,0,-9,0,-906.21899,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,42,41,15,1,0,-9,0,27.610504,27.610504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.060001,24.65,-9,-9,6,1,1,0,0,12,5,1,359,368175.75,0,0,3759.8843 -989,1198,2198,-9,2199,-9,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1051.2406,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,4,1,0,1139,39899.656,0,0,1984.7209 -989,1198,2199,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,8,3,1,1,1,0,0,0,4,0,-9,0,1,0,-1022.0571,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,1,4,1,0,1139,39899.656,0,0,1984.7209 -989,1199,2200,-9,2199,-9,2,1,1,20,2,0,2,0,2,-9,2,1,0,0,5,7.7560167,7.6755042,0,3,0,0,0,-9,0,-979.76306,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,4,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,3.067421,0,8.5451822,3,42.849998,62.849998,-9,-9,5,1,1,0,0,4,3,0,215,-183053,0,0,778.45416 -989,1200,2201,-9,2199,-9,3,1,0,18,2,0,2,0,2,-9,7,2,0,0,2,7.533875,7.1551876,0,3,0,0,0,-9,0,-985.83264,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,8,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,.29155809,0,2.5699246,0,25.82,47.439999,-9,-9,5,1,1,0,1,4,3,0,460,12736.067,0,0,-17.49888 -990,1201,2202,-9,-9,2203,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-906.50464,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,1,594.33331,90447.242,0,0,349.10974 -990,1201,2203,-9,-9,-9,1,1,1,43,3,0,2,0,2,-9,1,1,0,0,3,2.1373222,2.2091446,0,4,0,-9,0,1,0,-1046.9639,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,40,40,15,1,0,-9,0,.023595098,.023595098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.779999,46.060001,-9,-9,6,1,1,0,0,9,1,1,594.33331,90447.242,0,0,349.10974 -990,1201,2204,-9,-9,2203,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1085.484,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,1,1,594.33331,90447.242,0,0,349.10974 -991,1202,2205,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,5,7.4807968,7.4528809,6.549046,3,0,0,0,-9,0,-999.21143,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,17,17,15,1,0,-9,0,13.100382,13.100382,0,0,0,0,0,0,0,2,1,1,0,5.1595373,6.7594938,0,3,60.419998,54.810001,-9,-9,6,1,1,0,0,12,3,1,361,740775.94,0,0,1725.8387 -992,1203,2206,2207,-9,-9,2,1,1,36,1,0,0,0,1,-9,1,1,0,0,5,3.9838872,4.3115025,0,1,0,-9,8,0,5,44.416363,0,0,0,31,1,4,1,-9,-9,2019,1,1,6,0,45,50,15,1,0,1,0,.15549584,.15549584,0,0,0,0,0,0,0,0,0,0,0,4.3363829,0,0,0,62.389999,56.709999,39.68,58.52,7,1,1,0,0,12,5,1,603.5,19679.27,0,0,2280.0281 -992,1203,2207,2206,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,9.0376272,9.0273418,0,1,0,-9,8,0,-5,-140.71634,0,0,1,36,1,5,1,-9,-9,2019,1,2,11,0,43,45,15,1,0,1,0,25.353453,25.353453,0,0,0,0,0,0,0,0,0,0,0,6.1179571,0,0,0,39.68,58.52,62.389999,56.709999,6,1,1,0,0,12,5,1,603.5,19679.27,0,0,2280.0281 -993,1204,2208,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,3,0,7.934958,8.0238514,3,0,0,0,-9,0,-903.1084,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.087122,3.8647656,3,52.549999,47.380001,-9,-9,7,1,1,0,0,9,4,1,870,904922.25,0,0,1780.8929 -994,1205,2209,2210,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,7,0,-8,85.041855,0,0,0,71,3,2,3,3,2,2019,4,2,32,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,40.150002,49.369999,2,1,1,0,0,12,1,0,417.5,76371.531,0,0,1459.1595 -994,1205,2210,2209,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,4.5638156,4.6654034,1,0,-9,7,0,8,-24.257919,0,0,0,63,3,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3793373,4.9860892,0,0,40.150002,49.369999,16.040001,23.99,7,1,1,0,0,12,1,0,417.5,76371.531,0,0,1459.1595 -995,1206,2211,2212,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,6.8671651,6.7047515,1,0,-9,49,0,7,-27.100239,0,0,0,74,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.0277457,0,0,61.779999,37.779999,60.040001,36.970001,6,1,1,0,0,7,2,1,1922,533241.88,0,0,1588.0886 -995,1206,2212,2211,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,0,4,0,6.3617558,6.6006837,1,0,-9,49,0,-7,12.996723,0,0,0,81,2,3,3,1,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3951554,5.8018332,0,0,60.040001,36.970001,61.779999,37.779999,6,1,1,0,0,7,2,1,1922,533241.88,0,0,1588.0886 -995,1207,2213,-9,2212,2211,3,1,1,35,2,0,0,0,2,-9,2,1,0,0,3,8.089325,8.0654335,0,3,0,0,0,-9,0,-1024.1487,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,37,40,15,1,0,-9,1,9.0240736,9.0240736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,-9,-9,2,1,1,0,0,7,4,1,630,84101.953,0,0,993.16449 -996,1208,2214,2215,-9,-9,1,1,0,79,1,0,0,0,3,-9,2,1,0,1,5,5.950767,6.7377253,5.6379428,1,0,-9,25,0,5,148.02852,0,0,0,74,2,4,3,-9,-9,2019,2,2,9,0,17,0,15,1,0,4,0,2.8555605,2.8555605,0,0,0,0,0,0,0,7,1,1,0,0,5.5688663,10.312075,3,53.110001,56.810001,57.16,56.150002,6,1,1,0,0,9,2,1,324,789619.13,0,0,2224.886 -996,1208,2215,2214,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,5.2967863,5.2526765,1,0,-9,22,0,-5,28.741264,0,0,0,79,3,5,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.396378,5.1886888,0,0,57.16,56.150002,53.110001,56.810001,6,1,1,0,0,9,2,1,324,789619.13,0,0,2224.886 -997,1209,2216,2217,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.5400066,9.5526648,0,2,0,-9,20,0,0,82.043236,0,0,0,43,1,3,1,2,2,2019,1,2,13,1,51,52,15,1,0,1,0,35.667381,35.667381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.740002,52.23,58.470001,44.689999,6,1,1,0,0,5,5,1,1249.6666,432800.19,0,0,7228.7056 -997,1209,2217,2216,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,8.1428089,7.9873791,0,2,0,-9,20,0,0,-39.350906,0,0,1,43,1,4,1,1,1,2019,1,1,10,0,22,23,15,1,0,1,0,21.668137,21.668137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.470001,44.689999,56.740002,52.23,6,1,1,0,0,5,5,1,1249.6666,432800.19,0,0,7228.7056 -997,1209,2218,-9,2217,2216,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1127.8334,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,5,5,1,1249.6666,432800.19,0,0,7228.7056 -998,1210,2219,-9,2220,-9,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1113.123,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,1,0,497,66328.172,0,0,2103.6658 -998,1210,2220,-9,-9,-9,1,1,0,52,3,0,2,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-934.33777,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,10,0,25,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.119999,54.16,-9,-9,1,3,4,0,1,8,1,0,497,66328.172,0,0,2103.6658 -998,1210,2221,-9,2220,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1083.1259,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,1,0,497,66328.172,0,0,2103.6658 -999,1211,2222,2223,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,2,0,8.4001026,8.1490545,1,0,-9,9,0,8,61.192219,0,0,0,58,1,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.0322323,8.0055752,0,0,45.810001,44.200001,32.43,52.52,6,1,1,0,0,12,4,1,576.5,1216174.5,0,0,3346.7527 -999,1211,2223,2222,-9,-9,2,1,0,58,1,0,0,0,1,-9,4,3,0,0,3,5.2256503,4.982903,0,1,0,-9,9,0,-8,58.864258,0,0,0,66,1,2,3,2,2,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9819937,0,0,0,32.43,52.52,45.810001,44.200001,4,1,1,0,0,12,4,1,576.5,1216174.5,0,0,3346.7527 -1000,1212,2224,-9,-9,-9,1,1,0,43,3,0,1,0,1,-9,2,1,0,0,4,7.6491613,7.4300604,5.9170408,4,0,0,0,-9,0,-977.36749,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,18,18,15,1,0,-9,0,10.101025,10.101025,0,0,0,0,0,0,0,0,1,1,0,5.8809605,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,10,3,0,1593.5,101815.52,0,0,2292.0706 -1000,1212,2225,-9,2224,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-952.94183,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,0,1593.5,101815.52,0,0,2292.0706 -1001,1213,2226,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,0,4,6.2624598,6.2831635,4.4737911,3,0,0,0,-9,0,-1015.5278,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,8,0,15,1,0,-9,0,7.8055449,7.8055449,0,0,0,0,0,0,0,0,0,0,0,4.3157802,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,10,2,0,260,-255286.92,0,0,1797.8199 -1002,1214,2227,2228,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,0,4,0,6.8471975,7.2148438,1,0,-9,53,0,-3,27.599865,0,0,0,74,1,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4037013,6.8147473,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,7,4,1,686,1475217.5,0,0,4131.708 -1002,1214,2228,2227,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,8.0681057,8.389843,1,0,-9,53,0,3,-31.944344,0,0,0,71,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.6352682,8.0842199,6.2719107,3,62.490002,55.09,57.16,56.150002,6,1,1,0,0,7,4,1,686,1475217.5,0,0,4131.708 -1003,1215,2229,-9,2231,2230,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.96198,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,626.33331,325167.56,0,0,2131.2566 -1003,1215,2230,2231,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,8.3666811,8.4628286,0,2,0,-9,7,0,1,-18.453146,0,0,0,46,3,3,1,3,3,2019,1,1,7,0,38,43,15,1,0,1,0,16.543442,16.543442,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.330002,53.459999,58.470001,44.689999,6,1,1,0,0,12,4,1,626.33331,325167.56,0,0,2131.2566 -1003,1215,2231,2230,-9,-9,1,1,0,46,1,0,1,0,3,-9,2,1,0,0,3,6.7398491,6.9051151,0,2,0,-9,7,0,-1,-84.942482,0,0,0,47,2,3,1,3,3,2019,1,2,8,0,13,11,15,1,0,1,0,11.608396,11.608396,0,0,0,0,0,0,0,2,1,1,0,0,0,.12497962,3,58.470001,44.689999,57.330002,53.459999,6,1,1,0,0,12,4,1,626.33331,325167.56,0,0,2131.2566 -1004,1216,2232,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,97,3,0,1,3,0,0,0,3,0,0,0,-9,0,-935.92297,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,0,1,1.283415,0,46.652985,3,39.790001,57.189999,-9,-9,3,1,1,0,0,2,1,1,765,-63069.008,0,0,-387.71857 -1004,1217,2233,-9,-9,-9,2,1,0,82,2,0,0,0,3,-9,4,3,0,1,1,0,4.7966218,4.7569599,3,0,0,0,-9,0,-936.70892,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.7091322,0,0,54.389999,15.72,-9,-9,5,1,1,0,0,2,2,1,1320,181549.55,0,0,1579.991 -1005,1218,2234,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-976.06281,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,6.2251968,0,0,0,0,1,1,0,0,0,0,0,44.259998,31.879999,-9,-9,6,1,1,0,0,10,1,1,432,-116483.8,0,0,451.56033 -1006,1219,2235,-9,2236,2238,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.47699,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,1148,4052083.5,0,0,4959.3755 -1006,1219,2236,2238,-9,-9,2,1,0,34,1,1,2,0,2,-9,5,1,0,0,4,7.0257406,6.8040051,0,2,0,-9,7,0,-3,48.341343,0,0,1,37,2,4,1,-9,-9,2019,1,1,6,0,15,35,15,1,0,1,0,8.1828756,8.1828756,0,0,0,0,0,0,0,0,1,1,0,2.7481227,0,0,0,53.389999,38.459999,60.119999,54.799999,6,1,1,0,0,9,4,1,1148,4052083.5,0,0,4959.3755 -1006,1219,2237,-9,2236,2238,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-973.71594,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,1148,4052083.5,0,0,4959.3755 -1006,1219,2238,2236,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,4,8.8719244,9.1891375,0,2,0,-9,7,0,3,-92.505791,0,0,0,34,2,4,1,-9,-9,2019,1,2,2,0,40,45,15,1,0,1,0,19.613087,19.613087,0,0,0,0,0,0,0,0,1,1,0,8.4049873,0,0,0,60.119999,54.799999,53.389999,38.459999,6,1,1,0,0,9,4,1,1148,4052083.5,0,0,4959.3755 -1007,1220,2239,-9,-9,2240,2,1,0,50,2,0,0,0,2,-9,1,1,0,0,4,9.3370037,9.2885799,0,3,0,0,0,-9,0,-975.71826,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,0,15,1,0,-9,1,18.867203,18.867203,0,0,0,0,0,0,0,2,1,1,0,0,0,6.7343707,3,45.810001,58.990002,-9,-9,5,1,1,0,0,1,5,1,529,348330.97,0,0,2933.6316 -1007,1221,2240,-9,-9,-9,1,1,1,92,3,0,0,0,2,-9,4,3,0,1,5,0,1.9532235,2.1215267,3,0,0,0,-9,0,-997.82275,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2.5785961,0,0,43.889999,50.68,-9,-9,7,1,1,0,0,1,1,1,782,55027.836,0,0,2460.7153 -1008,1222,2241,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,2,1,0,0,4,7.3883519,7.5145211,0,3,0,0,0,-9,0,-1012.4304,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,37,37,15,1,1,-9,0,5.4579029,5.4579029,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.4813852,3,23.08,65.110001,-9,-9,2,1,1,0,1,9,3,0,783,172878.02,0,0,1234.6313 -1009,1223,2242,2243,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,9.1201229,9.4393177,0,1,0,-9,8,0,-2,48.846104,0,0,1,44,2,4,1,2,2,2019,1,2,6,0,37,36,15,1,0,1,0,43.531837,43.531837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,58.150002,52.91,7,1,1,0,0,12,5,1,570.5,492269.75,0,0,5078.376 -1009,1223,2243,2242,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.2917767,8.8042202,6.3455429,1,0,-9,8,0,2,57.021034,0,0,0,42,2,4,1,3,2,2019,1,1,7,0,42,42,15,1,0,1,0,11.07935,11.07935,0,0,0,0,0,0,0,0,1,1,0,0,6.8007617,0,0,58.150002,52.91,62.490002,55.09,6,1,1,0,0,12,5,1,570.5,492269.75,0,0,5078.376 -1010,1224,2244,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-876.12787,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,0,45.282406,3,54.93,20.870001,-9,-9,6,1,1,0,1,12,1,0,1308,100794.82,0,0,2082.9163 -1011,1225,2245,2246,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,8.6510277,8.596633,0,1,0,-9,36,0,0,-22.805534,0,0,0,60,1,4,1,2,2,2019,1,2,8,0,47,40,15,1,0,1,0,14.74999,14.74999,0,0,0,0,0,0,0,2,1,1,0,3.7896094,0,9.5855246,3,56.18,53.849998,51.77,58.57,6,1,1,0,0,2,5,1,868,1606179.3,0,0,6988.085 -1011,1225,2246,2245,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,9.1544952,9.7103796,7.7551637,1,0,-9,37,0,0,-46.698898,0,0,0,60,1,4,1,2,1,2019,1,1,7,0,61,60,15,1,0,1,0,17.379807,17.379807,0,0,0,0,0,0,0,2,1,1,0,2.7967923,7.9590793,7.4499855,3,51.77,58.57,56.18,53.849998,6,1,1,0,0,2,5,1,868,1606179.3,0,0,6988.085 -1012,1226,2247,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,1,1,0,0,4,8.2760019,8.3773851,0,3,0,0,0,-9,0,-1119.7688,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,60,12,15,1,0,-9,0,8.2654657,8.2654657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,4,1,1630,-108414.43,0,0,2081.5198 -1012,1227,2248,-9,-9,-9,2,1,0,23,2,0,0,0,1,1,1,1,0,0,4,8.6055794,8.6169786,0,3,0,0,0,-9,0,-992.98145,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,45,0,15,1,0,-9,0,16.897854,16.897854,0,0,0,0,0,0,0,0,0,0,0,1.2337954,0,0,0,46,59,-9,-9,5,1,1,0,0,8,5,1,108,275084.34,0,0,2102.6682 -1013,1228,2249,-9,-9,-9,1,1,0,77,2,0,0,0,1,-9,4,3,0,0,4,0,6.9914203,6.2917962,3,0,0,0,-9,0,-893.15277,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.148819,6.5563097,0,0,55.790001,52.619999,-9,-9,6,1,1,0,0,8,2,1,963,1191915.5,0,0,1320.4641 -1014,1229,2250,-9,-9,-9,1,1,0,87,3,0,0,0,1,-9,4,3,0,0,3,0,4.3356977,4.1229038,3,0,0,0,-9,0,-1070.9816,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2875743,4.5974932,0,0,66.879997,18.889999,-9,-9,6,1,1,0,0,5,2,1,140,110934.12,0,0,1595.8379 -1015,1230,2251,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,1,1,0,0,3,7.0819068,6.9573669,0,1,0,-9,1,-9,8,36.543488,-9,0,0,-9,-9,-9,-9,3,-9,2019,1,2,12,1,70,0,15,1,0,-9,0,1.4846526,1.4846526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.330002,53.459999,5,1,1,0,0,6,2,1,225,-95462.703,0,0,252.53163 -1015,1231,2252,-9,-9,-9,2,1,1,50,2,0,0,0,3,-9,1,1,0,0,3,6.7077651,6.4954419,0,1,0,-9,1,-9,-8,-5.2552748,-9,0,0,-9,-9,-9,-9,3,3,2019,1,1,6,0,70,0,15,1,0,-9,0,1.4766276,1.4766276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.330002,53.459999,7,4,5,0,0,6,2,1,264,70401.742,0,0,494.52701 -1016,1232,2253,2254,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.3331923,7.2335391,1,0,-9,47,0,2,101.32687,0,0,0,64,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3255715,7.3417015,0,0,57.16,56.150002,50,47,6,1,1,0,0,1,2,1,1441,687082.13,0,0,2007.2592 -1016,1232,2254,2253,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,4.4565964,4.5857573,1,0,-9,47,0,-2,-17.695118,0,0,0,66,3,4,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9678473,4.7244749,0,0,50,47,57.16,56.150002,5,1,1,0,0,1,2,1,1441,687082.13,0,0,2007.2592 -1017,1233,2255,2256,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,5.1126094,4.951232,1,0,-9,9,0,9,12.830564,0,0,0,65,2,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6276951,5.1325397,0,0,54.220001,39.669998,44.59,59.080002,6,1,1,0,0,9,5,1,1144.5,3360047.3,0,0,3325.7009 -1017,1233,2256,2255,-9,-9,2,1,0,65,1,0,0,0,2,-9,1,1,0,0,4,8.9035254,8.7948599,5.4725561,1,0,-9,9,0,0,54.354366,0,0,0,74,2,3,3,2,3,2019,2,1,12,1,25,30,15,1,0,4,0,40.648941,40.648941,0,0,0,0,0,0,0,0,1,1,0,4.0828238,6.0583372,0,0,44.59,59.080002,54.220001,39.669998,5,1,1,0,0,9,5,1,1144.5,3360047.3,0,0,3325.7009 -1018,1234,2257,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,0,4,8.6810942,8.897378,7.5697427,3,0,0,0,-9,0,-911.20679,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,23,82,15,1,0,-9,0,24.330002,24.330002,0,0,0,0,0,0,0,0,1,1,0,2.7044582,7.5337749,0,0,40.310001,50.25,-9,-9,6,1,1,0,0,6,5,1,1074,-43983.344,0,0,2802.2297 -1019,1235,2258,2259,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,4.7913208,4.9296422,1,0,-9,55,0,1,-132.33176,0,0,0,72,3,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9064546,5.0616746,0,0,56.41,53.709999,57.16,56.150002,7,1,1,0,0,9,2,1,610,205697.17,0,0,1723.3815 -1019,1235,2259,2258,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,11,0,-1,-204.37132,0,0,0,73,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,56.41,53.709999,7,1,1,0,0,9,2,1,610,205697.17,0,0,1723.3815 -1020,1236,2260,2261,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,16,0,-4,36.342255,0,0,0,71,1,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3300114,0,0,0,51.139999,60.450001,55.779999,49.919998,6,1,1,0,0,7,2,1,432.5,429335.34,0,0,1882.2026 -1020,1236,2261,2260,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.3309288,7.3701072,1,0,-9,16,0,4,-38.270973,0,0,0,67,1,5,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3430915,0,0,55.779999,49.919998,51.139999,60.450001,6,1,1,0,0,7,2,1,432.5,429335.34,0,0,1882.2026 -1021,1237,2262,2263,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,0,3,7.8856287,7.8170867,0,1,0,-9,22,0,-14,-38.04879,0,0,1,53,2,2,1,3,2,2019,1,1,9,1,32,30,15,1,0,1,0,8.3748884,8.3748884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,32.880001,56.990002,6,1,1,0,0,9,5,1,684,344575.31,0,0,3029.1592 -1021,1237,2263,2262,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.7265873,8.3476219,0,1,0,-9,22,0,14,40.989113,0,0,0,39,2,3,1,2,2,2019,1,2,18,7,43,43,15,1,1,1,0,11.043024,11.043024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.880001,56.990002,49.040001,55.860001,5,1,1,0,1,9,5,1,684,344575.31,0,0,3029.1592 -1021,1238,2264,-9,2262,2263,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,7.5007472,7.963716,0,3,0,0,0,-9,0,-960.87592,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,34,15,1,0,-9,1,5.6330395,5.6330395,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.400002,58.619999,-9,-9,6,1,1,0,0,9,3,1,299,-67599.047,0,0,2376.4219 -1021,1239,2265,-9,2262,2263,4,1,1,18,2,0,0,1,2,0,7,2,0,0,5,6.4329128,6.7363834,0,3,0,0,0,-9,0,-1017.9774,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.209999,59.91,-9,-9,6,1,1,0,0,9,2,1,388,100160.33,0,0,63.892426 -1022,1240,2266,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,8.1507072,8.2233715,6.6974015,3,0,0,0,-9,0,-1034.0627,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,23,23,15,1,0,-9,0,17.309862,17.309862,0,0,0,0,0,0,0,0,1,1,0,4.3456016,7.3966951,0,0,49.860001,55.310001,-9,-9,6,1,1,0,0,10,4,1,6683,285441.09,0,0,1778.9247 -1023,1241,2267,2268,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,7.7727838,7.9528246,0,1,0,-9,9,0,-1,-41.603233,0,0,0,51,2,5,1,2,2,2019,1,1,16,4,37,36,15,1,1,1,0,7.185153,7.185153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.119999,42.959999,51.73,58.82,6,1,1,0,0,13,4,1,2333,764153.31,0,0,3214.54 -1023,1241,2268,2267,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,5,8.2624388,8.3459091,0,1,0,-9,9,0,1,34.739307,0,0,0,50,1,4,1,3,3,2019,1,2,12,0,44,37,15,1,0,1,0,11.826005,11.826005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,44.119999,42.959999,6,1,1,0,0,13,4,1,2333,764153.31,0,0,3214.54 -1023,1242,2269,-9,2267,2268,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.5872717,7.6053324,0,3,0,0,0,-9,0,-1058.6134,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,3,37,50,15,1,0,-9,1,7.1989274,7.1989274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.009998,44.669998,-9,-9,6,1,1,0,0,13,3,1,322,-59087.277,0,0,1345.3503 -1024,1243,2270,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,4,0,6.7803335,6.7626543,3,0,0,0,-9,0,-1114.8169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0983167,6.8240018,0,0,46.919998,60.709999,-9,-9,2,1,1,0,0,6,2,1,617,15722.021,0,0,464.7421 -1025,1244,2271,-9,2273,-9,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-978.60541,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,0,1165.3334,-17171.914,0,0,1576.9377 -1025,1244,2272,-9,2273,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-984.90692,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,1,1,0,1165.3334,-17171.914,0,0,1576.9377 -1025,1244,2273,-9,-9,-9,1,1,0,34,2,0,3,0,3,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-1096.4949,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.280001,52,-9,-9,3,1,1,0,0,1,1,0,1165.3334,-17171.914,0,0,1576.9377 -1026,1245,2274,2276,-9,-9,1,1,0,45,1,0,1,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,24,-9,-2,-109.87738,-9,0,0,47,3,4,1,3,3,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.79609483,0,0,0,43.700001,27.620001,32.779999,46.919998,6,2,3,0,0,4,2,1,605,-61568.066,0,0,1582.1473 -1026,1245,2275,-9,2274,2276,5,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-992.53333,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,4,2,1,605,-61568.066,0,0,1582.1473 -1026,1245,2276,2274,-9,-9,2,1,1,47,1,0,1,0,3,-9,2,1,0,0,4,7.0348334,7.3237457,0,2,0,-9,24,-9,2,10.426269,-9,0,0,45,3,2,3,3,2,2019,2,1,18,6,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.779999,46.919998,43.700001,27.620001,7,2,3,0,0,4,2,1,605,-61568.066,0,0,1582.1473 -1026,1246,2277,-9,2274,2276,3,1,1,23,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1002.3592,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.990002,50.049999,-9,-9,7,2,3,0,0,4,1,1,1511,227341.16,0,0,0 -1026,1247,2278,-9,2274,2276,4,1,1,19,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1094.6542,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.959999,49.25,-9,-9,7,2,3,0,0,4,1,1,463,56269.605,0,0,0 -1027,1248,2279,2280,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,7,-87.22197,0,0,0,66,1,3,3,2,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8261294,0,0,0,54,46,51,46,5,1,1,0,0,8,2,1,1686.5,693703.88,0,0,1784.3962 -1027,1248,2280,2279,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,6.0105076,6.2201247,1,0,-9,18,0,-7,39.425861,0,0,0,73,1,3,3,2,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.4116712,6.1227436,17.810736,3,51,46,54,46,5,1,1,0,0,8,2,1,1686.5,693703.88,0,0,1784.3962 -1028,1249,2281,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,8.227562,8.0914707,0,3,0,0,0,-9,0,-1144.8925,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,30,30,15,1,0,-9,0,13.415785,13.415785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.110001,61.279999,-9,-9,3,1,1,0,0,5,4,1,183,155015.28,0,0,421.9144 -1029,1250,2282,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,3,0,7.4392991,7.3342309,3,0,0,0,-9,0,-987.11676,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.5158443,11.755249,3,66.220001,41.189999,-9,-9,6,1,1,0,0,2,3,1,90,606165.44,0,0,3584.2065 -1030,1251,2283,2284,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,8.5366964,8.1643581,1,0,-9,10,0,2,-162.6299,0,0,0,60,2,5,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3439946,8.5391912,0,0,57.16,56.150002,51.139999,60.450001,6,1,1,0,0,4,5,1,666,1540803.9,0,0,3504.8618 -1030,1251,2284,2283,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,5,8.0341978,8.3177309,0,1,0,-9,10,0,-2,93.722023,0,0,0,62,2,4,3,3,3,2019,2,1,12,0,34,34,15,1,0,4,0,12.576894,12.576894,0,0,0,0,0,0,0,0,0,0,0,.96075982,0,0,0,51.139999,60.450001,57.16,56.150002,6,1,1,0,0,4,5,1,666,1540803.9,0,0,3504.8618 -1031,1252,2285,2286,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,0,4,8.4962873,8.4629545,0,1,0,-9,1,-9,-1,154.8161,-9,0,0,47,1,4,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,11.090846,11.090846,0,0,0,0,0,0,0,0,0,0,0,3.3276181,0,0,0,58.150002,52.91,55.189999,54.259998,6,1,1,0,0,8,5,1,668,284159.28,0,0,2752.3896 -1031,1252,2286,2285,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,0,4,7.8933434,7.7114744,0,1,0,1,1,-9,1,74.555809,0,0,0,46,2,4,1,2,2,2019,1,2,9,2,60,70,15,1,0,1,0,4.9777379,4.9777379,0,0,0,0,0,0,0,0,0,0,0,3.6005125,0,0,0,55.189999,54.259998,58.150002,52.91,6,1,1,0,0,8,5,1,668,284159.28,0,0,2752.3896 -1032,1253,2287,2288,-9,-9,2,1,0,55,1,0,0,0,3,-9,4,3,0,0,3,4.4935589,4.4124875,0,1,0,-9,6,0,-6,70.101982,0,0,0,61,3,5,3,3,3,2019,4,1,9,0,0,28,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.1959362,0,0,3,61.82,40.369999,62.389999,56.709999,6,1,1,0,0,11,1,1,1734,338343.09,0,0,227.22446 -1032,1253,2288,2287,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,6,0,6,35.811394,0,0,0,55,3,3,3,-9,-9,2019,4,2,6,0,0,50,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3244638,0,0,0,62.389999,56.709999,61.82,40.369999,7,1,1,0,0,11,1,1,1734,338343.09,0,0,227.22446 -1033,1254,2289,-9,-9,-9,1,1,0,52,3,0,2,0,1,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1262.8882,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.06528,3,22.16,41.25,-9,-9,5,4,5,0,1,8,1,0,745,417730.63,0,0,1922.4772 -1033,1254,2290,-9,2289,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-971.57617,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,1,0,745,417730.63,0,0,1922.4772 -1033,1254,2291,-9,2289,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.7153,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,4,5,0,0,8,1,0,745,417730.63,0,0,1922.4772 -1034,1255,2292,2293,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,4,0,0,0,0,64,2,1,3,3,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,0,1,0,0,119.05915,1,42.639999,31.780001,32.740002,16.459999,2,1,1,0,0,12,1,0,1536,25877.652,0,0,2427.7158 -1034,1255,2293,2292,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,45,0,-4,0,0,0,0,68,2,2,3,3,3,2019,4,1,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.740002,16.459999,42.639999,31.780001,3,1,1,0,0,12,1,0,1536,25877.652,0,0,2427.7158 -1034,1256,2294,-9,2293,2292,3,1,1,37,2,0,0,0,1,-9,1,1,0,0,4,7.3433323,7.2031312,0,3,0,0,0,-9,0,-975.9245,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,0,15,1,0,-9,1,3.0365992,3.0365992,0,0,0,0,0,0,0,0,1,0,1,1.0642973,0,0,0,48.810001,59.91,-9,-9,4,1,1,0,0,12,3,0,461,122224.25,0,0,1810.3538 -1035,1257,2295,2297,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,9.8090773,9.7606583,0,2,0,-9,21,0,1,-30.134485,0,0,0,46,1,4,3,2,2,2019,2,1,8,0,55,60,15,1,0,3,0,28.443739,28.443739,0,0,0,0,0,0,0,2,1,1,0,9.1073256,0,0,3,55.189999,54.259998,54.200001,57.490002,6,1,1,0,0,8,5,1,661.33331,1098415.9,0,0,17029.02 -1035,1257,2296,-9,2297,2295,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1078.5913,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,8,5,1,661.33331,1098415.9,0,0,17029.02 -1035,1257,2297,2295,-9,-9,1,1,0,46,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-1,-40.193409,0,0,0,47,1,4,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.8651409,0,0,0,54.200001,57.490002,55.189999,54.259998,6,1,1,0,0,8,5,1,661.33331,1098415.9,0,0,17029.02 -1036,1258,2298,-9,2300,2299,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-959.90363,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,5,5,1,527.66669,17368072,0,0,5270.3291 -1036,1258,2299,2300,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,5,9.4566565,9.5511513,0,2,0,-9,8,0,6,-126.69497,0,0,0,44,2,3,1,-9,-9,2019,1,1,7,0,42,45,15,1,0,1,0,32.201077,32.201077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,54.52,57.330002,53.459999,6,1,1,0,0,5,5,1,527.66669,17368072,0,0,5270.3291 -1036,1258,2300,2299,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,7.7007799,7.5018072,0,2,0,-9,8,0,-6,-26.765574,0,0,1,50,1,5,1,2,2,2019,1,2,7,0,32,27,15,1,0,1,0,6.5183268,6.5183268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,58.049999,54.52,6,4,2,0,0,5,5,1,527.66669,17368072,0,0,5270.3291 -1036,1259,2301,-9,2300,2299,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-954.60815,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,5,5,1,174,171695.75,0,0,153.8553 -1037,1260,2302,2303,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,0,4,7.470057,7.3417425,0,1,0,-9,51,0,-1,-150.92537,0,0,0,70,2,3,3,2,-9,2019,2,2,7,0,24,24,15,1,0,4,0,9.6796341,9.6796341,0,0,0,0,0,0,0,0,1,1,0,4.4259601,0,0,0,49.27,55.110001,62.84,41.32,1,1,1,0,0,10,3,1,143,352477.91,0,0,972.39764 -1037,1260,2303,2302,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,1,61.359631,0,0,0,69,2,4,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5465822,0,0,0,62.84,41.32,49.27,55.110001,6,1,1,0,0,10,3,1,143,352477.91,0,0,972.39764 -1038,1261,2304,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-932.12897,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.970001,53.990002,-9,-9,5,1,1,0,0,6,1,1,745,35621.934,0,0,1550.6998 -1038,1262,2305,2306,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,43,0,-8,25.227871,0,0,0,71,1,3,3,-9,-9,2019,4,3,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.709999,61.529999,57.330002,53.459999,6,1,1,0,0,6,3,1,1141.5,839689.75,0,0,2483.498 -1038,1262,2306,2305,-9,-9,3,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,8.152256,8.2736778,1,0,-9,43,0,8,39.038342,0,0,0,63,1,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.292136,8.3545542,0,0,57.330002,53.459999,48.709999,61.529999,6,2,3,0,0,6,3,1,1141.5,839689.75,0,0,2483.498 -1039,1263,2307,-9,-9,-9,1,1,0,60,3,1,1,0,3,-9,8,3,1,1,1,0,5.8888559,6.1781702,4,0,0,0,-9,0,-1025.0428,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,27,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0030136,0,0,34.07,17.280001,-9,-9,1,1,1,0,0,6,2,0,1718,-40491.348,0,0,1179.4985 -1039,1264,2308,-9,2307,-9,2,1,1,27,2,1,1,0,2,-9,2,1,0,0,4,7.5749822,7.8646631,0,3,0,0,0,-9,0,-1072.2626,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,42,40,15,1,0,-9,1,7.0896521,7.0896521,0,0,0,0,0,0,0,7,1,1,0,0,0,10.476545,3,54.200001,57.490002,-9,-9,5,1,1,0,0,6,3,0,766,-61050.258,0,0,1862.5952 -1039,1265,2309,-9,2310,-9,4,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-890.28729,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,3,0,505.5,-10296.02,0,0,1723.3872 -1039,1265,2310,-9,2307,-9,3,1,0,26,2,1,1,0,2,-9,2,1,0,0,2,7.7774997,7.5811262,0,3,0,-9,0,0,0,-1030.5371,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,4,30,30,15,1,1,-9,1,8.3224487,8.3224487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.09,46.849998,-9,-9,4,1,1,0,0,6,3,0,505.5,-10296.02,0,0,1723.3872 -1040,1266,2311,2312,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.0161996,6.6939292,1,0,-9,4,0,5,-22.503008,0,0,0,63,2,1,3,2,2,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.708415,7.0803733,24.514986,1,60.209999,34.279999,33.32,18.459999,6,1,1,0,0,5,2,1,1418,560304,0,0,1841.8306 -1040,1266,2312,2311,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,-5,-2.0788376,0,0,0,68,2,3,3,3,3,2019,4,1,16,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.32,18.459999,60.209999,34.279999,6,1,1,0,0,5,2,1,1418,560304,0,0,1841.8306 -1041,1267,2313,2314,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.5388546,7.439569,1,0,-9,6,0,4,64.988235,0,0,0,75,1,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5726993,7.5128126,0,0,54,46,52,38.110001,6,1,1,0,0,12,3,1,1376.5,1044790.9,0,0,3879.0728 -1041,1267,2314,2313,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,0,4,0,7.6368833,7.8238988,1,0,-9,6,0,-4,-77.41584,0,0,0,79,1,3,3,2,3,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,6.3758407,7.8727264,128.10939,1,52,38.110001,54,46,6,1,1,0,0,12,3,1,1376.5,1044790.9,0,0,3879.0728 -1042,1268,2315,-9,2317,2316,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1095.0411,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,330.33334,343712.66,0,0,5140.4629 -1042,1268,2316,2317,-9,-9,1,1,1,33,1,1,1,0,1,-9,2,1,0,0,2,9.6899214,9.3530312,0,2,0,-9,11,0,0,7.2595143,0,0,0,33,1,3,1,3,2,2019,1,2,17,5,50,42,15,1,1,1,0,30.840704,30.840704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.080002,47.279999,28.389999,61.27,5,1,1,0,0,9,5,1,330.33334,343712.66,0,0,5140.4629 -1042,1268,2317,2316,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,3,7.8014131,7.9688659,0,2,0,-9,11,0,0,79.35347,0,0,1,33,1,2,1,2,2,2019,1,1,13,1,26,24,15,1,0,1,0,13.299889,13.299889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.389999,61.27,39.080002,47.279999,6,1,1,0,0,9,5,1,330.33334,343712.66,0,0,5140.4629 -1043,1269,2318,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,1,7.6637077,7.9591165,6.6461754,3,0,0,0,-9,0,-995.47021,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,26,11,26,29,15,1,1,-9,0,10.625917,10.625917,0,0,0,0,0,0,0,0,1,1,0,7.1010947,0,0,0,33.450001,29.530001,-9,-9,2,2,3,0,1,8,4,1,405,-76638.047,0,0,2129.3418 -1044,1270,2319,-9,2321,2320,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-876.12842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,507,140288.77,0,0,3055.6091 -1044,1270,2320,2321,-9,-9,2,1,1,29,1,2,2,0,2,-9,2,1,0,0,3,8.047555,8.2489681,0,2,0,-9,4,0,2,-24.042379,0,1,0,27,2,4,1,-9,-9,2019,1,1,10,0,37,38,15,1,0,1,0,13.107759,13.107759,0,0,0,0,0,0,0,0,1,1,0,3.6279914,0,0,0,47.66,52.330002,30.299999,63.25,5,1,1,0,0,12,4,1,507,140288.77,0,0,3055.6091 -1044,1270,2321,2320,-9,-9,1,1,0,27,1,2,2,0,2,-9,2,1,0,0,4,8.0234919,7.9342713,0,2,0,-9,4,0,-2,12.598016,0,1,1,29,2,3,1,2,2,2019,1,2,12,1,7,14,15,1,0,1,0,49.349243,49.349243,0,0,0,0,0,0,0,0,1,1,0,1.3688812,0,0,0,30.299999,63.25,47.66,52.330002,6,1,1,0,0,12,4,1,507,140288.77,0,0,3055.6091 -1044,1270,2322,-9,2321,2320,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.049,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,507,140288.77,0,0,3055.6091 -1045,1271,2323,-9,2325,2326,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.0382,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,13,4,1,595,1280276.8,0,0,3672.771 -1045,1271,2324,-9,2325,2326,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.9048,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,13,4,1,595,1280276.8,0,0,3672.771 -1045,1271,2325,2326,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,4,7.308075,7.5493202,0,2,0,-9,21,0,-3,73.635658,0,0,1,43,2,5,1,3,3,2019,1,1,6,0,24,24,15,1,0,1,0,8.4193869,8.4193869,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,51.73,58.82,7,1,1,0,0,13,4,1,595,1280276.8,0,0,3672.771 -1045,1271,2326,2325,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,0,5,9.0907164,9.1125517,0,2,0,-9,7,0,3,-127.65113,0,0,0,40,2,4,1,-9,-9,2019,1,2,8,0,52,80,15,1,0,1,0,24.650955,24.650955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,60.119999,54.799999,6,1,1,0,0,13,4,1,595,1280276.8,0,0,3672.771 -1046,1272,2327,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1035.4653,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.52,26.200001,-9,-9,3,1,1,0,1,2,1,0,724,11202.016,0,0,317.2684 -1047,1273,2328,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,5,7.8952842,8.2908077,0,3,0,-9,0,-9,0,-729.07227,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,38,0,15,1,0,-9,0,8.9907522,8.9907522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,3,4,0,0,8,4,0,447,-32417.117,0,0,206.57303 -1048,1274,2329,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-881.64954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,50.599998,-9,-9,6,1,1,0,1,4,1,1,313,-42265.508,0,0,372.96988 -1048,1275,2330,-9,-9,-9,2,1,0,56,2,0,0,0,3,-9,2,1,0,1,2,8.0351057,7.9491172,0,3,0,0,0,-9,0,-985.31219,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,30,15,1,0,-9,0,12.965239,12.965239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.48,17.889999,-9,-9,3,1,1,0,1,4,4,1,370,372602.13,0,0,166.06349 -1049,1276,2331,2332,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.1649427,8.1432152,0,1,0,-9,27,0,3,-106.09434,0,0,0,49,3,5,1,2,3,2019,1,1,5,0,34,35,15,1,0,1,0,16.389219,16.389219,0,0,0,0,0,0,0,0,0,0,0,3.483,0,0,0,64.129997,35.25,57.060001,57.759998,6,1,1,0,0,8,5,1,1446,838259.75,0,0,3853.9399 -1049,1276,2332,2331,-9,-9,1,1,1,49,1,0,0,0,3,-9,2,1,0,0,5,8.3806,8.369401,0,1,0,-9,27,0,-3,-178.62064,0,0,0,52,2,3,1,2,2,2019,1,2,7,0,34,34,15,1,0,1,0,17.494928,17.494928,0,0,0,0,0,0,0,0,0,0,0,3.0052652,0,0,0,57.060001,57.759998,64.129997,35.25,7,1,1,0,0,8,5,1,1446,838259.75,0,0,3853.9399 -1050,1277,2333,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,3,6.6864066,7.0433307,0,3,0,-9,0,-9,0,-1024.7281,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,18,0,15,1,0,-9,0,6.6533904,6.6533904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.98,39.849998,-9,-9,4,1,1,0,0,7,2,0,1577,16208.741,0,0,567.26855 -1051,1278,2334,-9,-9,-9,1,1,1,32,3,0,0,0,1,-9,2,1,0,0,3,7.771934,7.905755,0,3,0,-9,0,-9,0,-880.07184,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,44,0,15,1,1,-9,0,5.4119883,5.4119883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.639999,54.169998,-9,-9,2,2,3,0,1,7,3,0,929,0,0,0,-35.736256 -1052,1279,2335,2336,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,1,1,0,3.8952343,3.8382559,1,0,-9,6,0,-6,2.4098365,0,0,0,75,2,5,1,2,2,2019,3,1,14,2,0,0,15,4,0,1,0,0,0,1,0,6.0976915,0,0,0,.72400618,0,1,1,0,4.843791,3.9538386,0,0,29.35,31.4,54.630001,58.830002,6,1,1,0,0,2,5,1,357.5,1747313.5,0,0,7569.7188 -1052,1279,2336,2335,-9,-9,1,1,1,75,1,0,0,0,2,-9,1,1,0,0,5,7.0586081,8.8020687,8.6405659,1,0,-9,6,0,6,-121.2165,0,0,0,69,1,1,3,2,2,2019,2,2,9,0,15,15,15,1,0,4,0,7.966239,7.966239,0,0,0,0,0,0,0,7,1,1,0,9.0180206,5.7268381,11.730349,2,54.630001,58.830002,29.35,31.4,6,1,1,0,0,2,5,1,357.5,1747313.5,0,0,7569.7188 -1053,1280,2337,2338,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,-5,-14.979132,0,0,0,69,1,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.869999,44.959999,54.959999,53.169998,6,1,1,0,0,12,2,1,726,407289.28,0,0,2100.1523 -1053,1280,2338,2337,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.6740546,7.362083,1,0,-9,44,0,5,-64.971214,0,0,0,64,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.6860557,7.2094913,0,0,54.959999,53.169998,60.869999,44.959999,6,1,1,0,0,12,2,1,726,407289.28,0,0,2100.1523 -1054,1281,2339,-9,2340,2341,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1156.3362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,3,0,571,-110368.02,0,0,2317.967 -1054,1281,2340,2341,-9,-9,2,1,0,29,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,0,-14.637532,-9,1,1,29,1,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1276786,0,0,0,48.869999,58.549999,23.219999,62.43,6,1,1,0,0,13,3,0,571,-110368.02,0,0,2317.967 -1054,1281,2341,2340,-9,-9,1,1,1,29,1,1,1,0,1,-9,2,1,0,0,3,8.685236,8.2553902,0,2,0,-9,6,0,0,-153.24686,0,1,0,29,1,4,3,1,1,2019,2,2,26,11,48,38,15,1,1,3,0,11.836281,11.836281,0,0,0,0,0,0,0,0,1,1,0,.94721997,0,0,0,23.219999,62.43,48.869999,58.549999,5,1,1,0,0,13,3,0,571,-110368.02,0,0,2317.967 -1055,1282,2342,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,4.7585931,4.6775231,3,0,0,0,-9,0,-1033.2068,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.1349049,4.9024448,0,0,42.560001,42.650002,-9,-9,6,1,1,0,0,8,2,1,1548,212388.52,0,0,2013.0922 -1056,1283,2343,2344,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.8371344,9.0088053,0,1,0,-9,33,0,1,-32.314545,0,0,0,48,2,3,1,3,3,2019,1,2,6,0,35,39,15,1,0,1,0,20.65501,20.65501,0,0,0,0,0,0,0,0,0,0,0,6.4828405,0,0,0,51.830002,57.200001,52.990002,51.279999,6,1,1,0,0,12,5,1,697.5,580970.94,0,0,4416.5654 -1056,1283,2344,2343,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.9078913,8.9063177,0,1,0,-9,33,0,-1,18.384104,0,0,0,49,2,4,1,2,-9,2019,1,1,6,0,45,50,15,1,0,1,0,24.014,24.014,0,0,0,0,0,0,0,0,0,0,0,3.2640967,0,0,0,52.990002,51.279999,51.830002,57.200001,7,1,1,0,0,12,5,1,697.5,580970.94,0,0,4416.5654 -1057,1284,2345,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,5,9.1244011,9.191062,4.4400983,3,0,0,0,-9,0,-978.20898,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,46,40,15,1,0,-9,0,23.11759,23.11759,0,0,0,0,0,0,0,0,0,0,0,5.1599774,4.4990788,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,9,5,1,551,423387.72,0,0,2668.9243 -1058,1285,2346,2348,-9,-9,2,1,0,21,1,1,1,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,3,0,-1,28.752455,0,1,1,22,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,47,59,7,2,3,0,0,6,3,0,825.33331,156643.72,0,0,1799.2877 -1058,1285,2347,-9,2346,2348,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.33301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,6,3,0,825.33331,156643.72,0,0,1799.2877 -1058,1285,2348,2346,-9,-9,1,1,1,22,1,1,1,0,2,-9,2,1,0,0,4,8.077754,8.104002,0,2,0,-9,3,0,1,79.093407,-9,1,0,21,2,5,3,-9,-9,2019,2,2,11,1,38,0,15,1,0,3,0,9.147872,9.147872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,59.43,58.049999,5,2,3,0,0,6,3,0,825.33331,156643.72,0,0,1799.2877 -1059,1286,2349,2350,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,0,3,8.3733301,8.3937893,0,1,0,-9,4,0,-1,14.388784,0,1,0,27,1,3,1,-9,-9,2019,1,1,3,0,43,41,15,1,0,1,0,10.256774,10.256774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,59.459999,44.279999,2,1,1,0,0,13,4,1,672.5,113665.97,0,0,2674.7061 -1059,1286,2350,2349,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,7.9178429,8.180047,0,1,0,-9,4,0,1,84.599449,0,1,1,26,1,3,1,-9,-9,2019,1,2,14,3,41,37,15,1,0,1,0,7.796123,7.796123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.459999,44.279999,57.330002,53.459999,7,1,1,0,0,13,4,1,672.5,113665.97,0,0,2674.7061 -1060,1287,2351,-9,-9,-9,1,1,0,78,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1065.3328,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,1,1,0,0,8,1,0,1863,-64491.684,0,0,1114.8888 -1061,1288,2352,2353,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,8.0513124,8.1735497,0,1,0,-9,1,-9,-7,42.150543,-9,1,1,33,1,3,1,-9,-9,2019,1,1,15,4,45,0,15,1,1,1,0,7.0402265,7.0402265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.330002,56.73,31.790001,47.48,5,1,1,0,0,9,5,1,869,115705.93,0,0,3541.0425 -1061,1288,2353,2352,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,3,8.9038258,8.8107738,0,1,0,-9,1,-9,7,26.155514,-9,0,0,26,2,4,1,2,2,2019,1,2,23,8,60,0,15,1,1,1,0,18.041904,18.041904,0,0,0,0,0,0,0,0,0,0,0,.71304983,0,0,0,31.790001,47.48,44.330002,56.73,6,1,1,0,0,9,5,1,869,115705.93,0,0,3541.0425 -1062,1289,2354,-9,2356,2355,4,1,1,17,2,0,3,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.8948,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,59.130001,-9,-9,2,2,3,0,1,2,2,0,767.20001,-3421.449,0,0,1921.0909 -1062,1289,2355,2356,-9,-9,2,1,1,44,1,0,3,0,3,-9,2,1,0,0,3,7.8016515,7.6619139,0,2,0,-9,25,0,4,119.09327,0,0,0,40,2,3,3,3,3,2019,2,1,13,1,20,42,15,1,0,3,0,11.870663,11.870663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.689999,58.700001,31.77,61.389999,2,2,3,0,1,2,2,0,767.20001,-3421.449,0,0,1921.0909 -1062,1289,2356,2355,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,-4,-.7304036,0,0,1,44,3,3,1,3,3,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.389999,37.689999,58.700001,3,2,3,0,1,2,2,0,767.20001,-3421.449,0,0,1921.0909 -1062,1289,2357,-9,2356,2355,5,1,0,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-876.26025,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,2,2,0,767.20001,-3421.449,0,0,1921.0909 -1062,1289,2358,-9,2356,2355,6,1,1,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-890.32587,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,2,2,0,767.20001,-3421.449,0,0,1921.0909 -1062,1290,2359,-9,2356,2355,3,1,1,21,2,0,3,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1081.6024,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.8500004,60.389999,-9,-9,4,2,3,0,0,2,1,0,1310,132601.66,0,0,557.99774 -1063,1291,2360,2362,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,8.5238705,8.4919004,0,2,0,-9,10,0,-6,2.8987312,-9,0,1,42,2,3,1,-9,-9,2019,1,2,12,0,40,0,15,1,0,1,0,13.784883,13.784883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.959999,53.169998,7,1,1,0,0,6,4,1,844.5,153980.33,0,0,3324.7053 -1063,1291,2361,-9,2360,2362,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.1803,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,844.5,153980.33,0,0,3324.7053 -1063,1291,2362,2360,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,8.1810675,8.3494654,0,2,0,-9,10,0,6,36.594387,0,0,0,36,1,3,1,-9,-9,2019,1,1,12,0,37,37,15,1,0,1,0,14.164599,14.164599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.959999,53.169998,6,1,1,0,0,6,4,1,844.5,153980.33,0,0,3324.7053 -1063,1291,2363,-9,2360,2362,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.71222,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,844.5,153980.33,0,0,3324.7053 -1064,1292,2364,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,0,4,8.7002144,8.8424025,0,3,0,0,0,-9,0,-1106.3376,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,7,37,37,15,1,1,-9,0,17.853989,17.853989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.330002,58.880001,-9,-9,4,1,1,0,0,12,5,1,924,477551.78,0,0,2906.282 -1065,1293,2365,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,2,0,5.1465545,5.378839,3,0,0,0,-9,0,-975.45331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9269857,0,0,49,34,-9,-9,5,1,1,0,0,2,2,1,134,342303.34,0,0,1766.7786 -1066,1294,2366,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1057.6412,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.58861101,0,41.20586,3,20.9,21.84,-9,-9,1,4,2,0,1,10,1,0,376,0,0,0,686.49011 -1066,1295,2367,-9,2366,-9,2,1,1,37,2,0,0,0,2,-9,2,1,0,1,4,7.7432299,7.8938966,0,3,0,-9,0,-9,0,-1026.0397,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,37,0,15,1,0,-9,1,6.9238448,6.9238448,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.772965,3,42.009998,56.540001,-9,-9,5,1,1,0,0,10,3,0,675,24464.316,0,0,317.84512 -1067,1296,2368,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1151.786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.84,28.709999,-9,-9,2,1,1,0,0,6,1,1,506,-36803.777,0,0,1827.801 -1068,1297,2369,-9,-9,-9,1,1,0,32,2,0,4,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1014.0607,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.24669,3,21.059999,56.490002,-9,-9,6,1,1,0,0,7,1,0,812.40002,0,0,0,2999.6042 -1068,1297,2370,-9,2369,-9,4,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-968.68048,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,1,0,812.40002,0,0,0,2999.6042 -1068,1297,2371,-9,2369,-9,2,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-992.18427,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,1,0,812.40002,0,0,0,2999.6042 -1068,1297,2372,-9,2369,-9,5,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.90369,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,1,0,812.40002,0,0,0,2999.6042 -1068,1297,2373,-9,2369,-9,3,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1061.8829,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,1,0,812.40002,0,0,0,2999.6042 -1069,1298,2374,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,2,1,0,0,2,6.6342449,6.4135003,0,3,0,0,0,-9,0,-940.9635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,10,13,15,1,0,-9,0,7.4578652,7.4578652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,32.41,-9,-9,6,1,1,0,0,11,2,1,696,88118.305,0,0,1718.0734 -1070,1299,2375,2376,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.5182619,8.9215755,0,1,0,-9,4,0,5,61.916965,0,0,0,45,2,4,1,3,3,2019,1,2,12,0,48,49,15,1,0,1,0,10.854639,10.854639,0,0,0,0,0,0,0,0,0,0,0,7.9749722,0,0,0,45.43,53.5,51.77,58.57,4,1,1,0,0,9,5,1,842,559178.88,0,0,5661.2373 -1070,1299,2376,2375,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.6533432,8.5747719,0,1,0,-9,4,0,-5,50.439148,0,0,0,50,2,3,1,-9,-9,2019,1,1,12,1,37,37,15,1,0,1,0,15.460191,15.460191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,45.43,53.5,6,1,1,0,0,9,5,1,842,559178.88,0,0,5661.2373 -1070,1300,2377,-9,2376,2375,3,1,0,21,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-833.30811,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,1,1,345,-291166.09,0,0,848.54462 -1071,1301,2378,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,2,0,7.155643,7.1390758,3,0,0,0,-9,0,-930.59155,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9705331,6.9525766,0,0,47.799999,32.529999,-9,-9,6,1,1,0,0,4,2,1,1251,470942.22,0,0,294.96899 -1072,1302,2379,-9,2380,2381,3,1,1,17,2,0,4,1,3,0,7,2,0,1,3,4.3116016,3.9703572,0,2,0,0,0,-9,0,-1107.0316,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,32.5,-9,-9,6,1,1,0,0,1,3,0,862.66669,120831.92,0,0,4172.3564 -1072,1302,2380,2381,-9,-9,1,1,0,34,1,0,4,0,2,-9,6,3,0,1,5,0,0,0,2,0,-9,10,0,0,-103.79073,0,0,1,34,2,4,1,3,1,2019,3,2,23,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.08559,3,24.809999,67.279999,38.66,61.77,4,1,1,0,0,1,3,0,862.66669,120831.92,0,0,4172.3564 -1072,1302,2381,2380,-9,-9,2,1,1,34,1,0,4,0,2,-9,2,1,0,0,4,8.3271513,8.4754543,0,2,0,-9,10,0,0,-24.920387,0,0,0,34,2,5,3,-9,-9,2019,2,1,18,6,42,40,15,1,1,3,0,10.965521,10.965521,0,0,0,0,0,0,0,84,1,1,0,0,0,118.7076,3,38.66,61.77,24.809999,67.279999,4,1,1,0,0,1,3,0,862.66669,120831.92,0,0,4172.3564 -1072,1302,2382,-9,2380,2381,4,1,1,13,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-910.93848,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,1,3,0,862.66669,120831.92,0,0,4172.3564 -1072,1302,2383,-9,2380,2381,6,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.06641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,3,0,862.66669,120831.92,0,0,4172.3564 -1072,1302,2384,-9,2380,2381,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.0482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,862.66669,120831.92,0,0,4172.3564 -1073,1303,2385,2386,-9,-9,2,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,5.433773,5.15591,1,0,-9,7,0,-8,22.651638,0,0,0,92,3,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6086125,5.5661812,0,0,55.650002,41.830002,57,48,6,1,1,0,0,5,2,1,473.5,384854.75,0,0,2019.2981 -1073,1303,2386,2385,-9,-9,1,1,0,92,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,8,59.569675,0,0,0,84,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,4.1628909,0,0,0,0,1,1,0,3.9943681,0,0,0,57,48,55.650002,41.830002,6,1,1,0,0,5,2,1,473.5,384854.75,0,0,2019.2981 -1074,1304,2387,-9,-9,2389,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,8.4263973,8.7168427,0,3,0,0,0,-9,0,-1021.1122,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,5,38,38,15,1,1,-9,1,15.657378,15.657378,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.749535,3,51.939999,42.169998,-9,-9,6,1,1,0,0,1,5,1,427,480517.16,0,0,2284.4241 -1074,1305,2388,-9,2387,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.6396208,7.8699946,0,3,0,0,0,-9,0,-1037.1776,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,38,16,15,1,0,-9,1,5.567512,5.567512,0,0,0,0,0,0,0,0,1,1,0,2.9501321,0,0,3,47,57,-9,-9,5,1,1,0,0,1,3,1,253,89985.977,0,0,2153.4126 -1074,1306,2389,-9,-9,-9,3,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1112.3617,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0121255,0,0,0,55,45,-9,-9,6,4,6,0,0,1,1,1,949,144629.45,0,0,2930.7061 -1075,1307,2390,-9,2393,2392,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.6911,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,0,980,278948.78,0,0,3135.8633 -1075,1307,2391,-9,2393,2392,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.84912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,4,0,980,278948.78,0,0,3135.8633 -1075,1307,2392,2393,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,0,2,8.2711201,8.434227,0,2,0,-9,9,0,0,-13.234665,0,0,0,35,1,5,1,-9,-9,2019,1,1,11,0,40,34,15,1,0,1,0,12.621222,12.621222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.18,37.790001,49.34,58.540001,5,1,1,0,0,9,4,0,980,278948.78,0,0,3135.8633 -1075,1307,2393,2392,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,5,8.0972147,7.6705379,0,2,0,-9,9,0,0,152.26709,0,0,1,35,1,2,1,2,2,2019,1,2,11,2,13,12,15,1,0,1,0,18.98167,18.98167,0,0,0,0,0,0,0,0,1,1,0,3.4322238,0,0,0,49.34,58.540001,42.18,37.790001,6,1,1,0,0,9,4,0,980,278948.78,0,0,3135.8633 -1076,1308,2394,-9,2395,2397,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.099,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,5,1,308.75,383658.09,0,0,4252.5527 -1076,1308,2395,2397,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,2,7.5351338,7.4701209,0,2,0,-9,22,0,-2,19.796335,0,0,0,47,1,3,1,3,3,2019,1,2,18,7,21,21,15,1,1,1,0,9.1253147,9.1253147,0,0,0,0,0,0,0,0,1,1,0,.77011389,0,0,0,31.870001,57.150002,43.119999,58.549999,3,1,1,0,0,4,5,1,308.75,383658.09,0,0,4252.5527 -1076,1308,2396,-9,2395,2397,3,1,0,17,2,0,1,0,2,1,2,3,0,0,3,6.7218795,6.942524,0,2,0,0,0,-9,0,-1011.503,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,37,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.98,61.23,-9,-9,6,1,1,0,0,4,5,1,308.75,383658.09,0,0,4252.5527 -1076,1308,2397,2395,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,3,8.8914528,8.7169409,0,2,0,-9,22,0,2,20.696316,0,0,0,45,2,2,1,2,2,2019,1,1,12,1,45,47,15,1,0,1,0,22.590439,22.590439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,58.549999,31.870001,57.150002,5,1,1,0,0,4,5,1,308.75,383658.09,0,0,4252.5527 -1077,1309,2398,2399,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.7821264,8.7539482,0,1,0,-9,7,0,-2,0,0,0,0,56,2,3,1,3,2,2019,1,1,11,2,65,42,15,1,0,1,0,14.17047,14.17047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.089996,25.110001,43.599998,51.610001,5,1,1,0,0,11,5,1,268.5,1262962.8,0,0,5168.1191 -1077,1309,2399,2398,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,1,3,8.8879461,8.4134045,0,1,0,-9,7,0,2,0,0,0,0,54,1,4,1,2,2,2019,1,2,14,3,36,36,15,1,0,1,0,20.224594,20.224594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,68.089996,25.110001,5,1,1,0,0,11,5,1,268.5,1262962.8,0,0,5168.1191 -1077,1310,2400,-9,2398,2399,3,1,0,30,3,0,0,0,1,-9,2,1,0,0,3,6.6018796,6.3810849,0,3,0,0,0,-9,0,-973.44507,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,15,0,15,1,0,-9,1,4.6966634,4.6966634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.099998,55.16,-9,-9,5,1,1,0,0,11,2,1,2404,43978.273,0,0,-1366.8385 -1078,1311,2401,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,0,1,0,7.0482402,7.0026112,3,0,0,0,-9,0,-993.1825,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8815603,0,0,41.060001,50.900002,-9,-9,6,3,4,0,1,8,2,0,268,715095.63,0,0,960.99634 -1079,1312,2402,2405,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,0,4,8.5305138,8.134717,0,2,0,-9,10,0,-2,17.856243,0,0,0,33,2,4,1,2,2,2019,1,1,13,2,43,48,15,1,0,1,0,10.143492,10.143492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.900002,57.259998,54.200001,57.490002,5,1,1,0,0,5,4,1,855.25,103138.2,0,0,2619.085 -1079,1312,2403,-9,2405,2402,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.74597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,855.25,103138.2,0,0,2619.085 -1079,1312,2404,-9,2405,2402,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.42914,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,855.25,103138.2,0,0,2619.085 -1079,1312,2405,2402,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,4,8.0814896,8.0260353,0,2,0,-9,10,0,2,16.334753,0,0,1,31,2,4,1,2,3,2019,1,2,6,0,30,39,15,1,0,1,0,10.941773,10.941773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,39.900002,57.259998,6,1,1,0,0,5,4,1,855.25,103138.2,0,0,2619.085 -1080,1313,2406,-9,-9,-9,1,1,0,41,3,0,0,0,2,-9,2,1,0,0,5,8.7157173,8.9975967,0,3,0,0,0,-9,0,-920.47742,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,70,56,15,1,0,-9,0,10.795786,10.795786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.07,50,-9,-9,4,1,1,0,0,11,5,0,131,419174.41,0,0,1744.262 -1080,1314,2407,-9,2406,-9,2,1,1,22,2,0,0,0,1,1,2,1,0,0,5,7.1001472,7.2441139,0,3,0,0,0,-9,0,-965.7171,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,26,0,15,1,0,-9,1,5.2609353,5.2609353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,-9,-9,5,1,1,0,0,11,2,0,339,-267241.09,0,0,-128.07402 -1080,1315,2408,-9,2406,-9,3,1,1,20,2,0,0,0,2,1,2,1,0,0,5,7.2101398,6.9683003,0,3,0,0,0,-9,0,-1095.4951,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,50,0,15,1,0,-9,1,3.2596824,3.2596824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.98,40.470001,-9,-9,6,1,1,0,0,11,2,0,2301,0,0,0,1766.3162 -1081,1316,2409,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,2,8.9296494,8.6223612,0,3,0,-9,0,-9,0,-849.96954,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,48,0,15,1,1,-9,0,14.735741,14.735741,0,0,0,0,0,0,0,0,0,0,0,3.8617005,0,0,0,24.67,54.18,-9,-9,2,1,1,0,0,7,5,1,716,-54641.324,0,0,2290.2749 -1082,1317,2410,2411,-9,-9,2,1,0,36,1,1,2,0,2,-9,5,1,0,0,4,8.1689653,8.0238991,0,2,0,-9,6,0,-1,38.525745,0,0,1,37,1,3,1,-9,-9,2019,1,1,13,3,30,30,15,1,0,1,0,10.049362,10.049362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.059999,65.339996,30.450001,64.190002,3,1,1,0,0,10,4,1,636,208376.84,0,0,3837.2148 -1082,1317,2411,2410,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,3,8.6783924,8.6282587,0,2,0,-9,6,0,1,-187.72597,0,0,0,36,2,4,1,1,2,2019,1,2,13,2,45,50,15,1,0,1,0,12.757709,12.757709,0,0,0,0,0,0,0,0,1,1,0,3.1811292,0,0,0,30.450001,64.190002,31.059999,65.339996,5,1,1,0,0,10,4,1,636,208376.84,0,0,3837.2148 -1082,1317,2412,-9,2410,2411,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1048.2255,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,4,1,636,208376.84,0,0,3837.2148 -1082,1317,2413,-9,2410,2411,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.75763,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,636,208376.84,0,0,3837.2148 -1083,1318,2414,-9,-9,-9,3,1,1,23,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1038.7456,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,44,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6236252,0,0,0,40.93,55.860001,-9,-9,3,1,1,1,0,2,1,1,1428,32615.551,0,0,1105.8495 -1084,1319,2415,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,5,0,6.0588231,5.8861594,3,0,-9,0,1,0,-961.6452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.8915477,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,2,0,390,184170.3,0,0,2117.1182 -1085,1320,2416,-9,-9,-9,1,1,1,49,3,0,0,0,3,-9,2,1,0,0,4,7.7872391,7.9988666,0,3,0,0,0,-9,0,-1093.7582,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,50,15,1,0,-9,0,9.275816,9.275816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.299999,58.709999,-9,-9,1,1,1,0,0,7,4,1,257,17896.795,0,0,735.21448 -1086,1321,2417,2418,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-1,15.422501,0,0,0,75,1,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62,41.73,60.290001,52.110001,7,1,1,0,0,2,3,1,408.5,531156.5,0,0,2844.2478 -1086,1321,2418,2417,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,7.397017,7.5188112,1,0,-9,7,0,1,22.322819,0,0,0,74,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5805516,0,0,60.290001,52.110001,62,41.73,7,1,1,0,0,2,3,1,408.5,531156.5,0,0,2844.2478 -1087,1322,2419,-9,2420,2421,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.24921,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,851.66669,463186.34,0,0,3120.8694 -1087,1322,2420,2421,-9,-9,2,1,0,32,1,0,1,0,1,-9,2,1,0,0,3,8.4939213,8.6141691,0,2,0,-9,8,0,-1,-24.080469,0,0,1,33,2,3,1,2,2,2019,1,1,9,1,34,34,15,1,0,1,0,20.6866,20.6866,0,0,0,0,0,0,0,7,1,1,0,.89878517,0,.43114701,3,55.75,50.299999,57.330002,53.459999,6,1,1,0,0,7,5,1,851.66669,463186.34,0,0,3120.8694 -1087,1322,2421,2420,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,0,3,8.6346817,8.6237011,0,2,0,-9,8,0,1,71.811409,0,0,0,32,1,3,1,2,2,2019,1,2,7,0,46,39,15,1,0,1,0,11.318173,11.318173,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.330002,53.459999,55.75,50.299999,6,1,1,0,0,7,5,1,851.66669,463186.34,0,0,3120.8694 -1088,1323,2422,2423,-9,-9,2,1,0,43,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,-6,48.788963,0,0,1,49,3,5,1,2,2,2019,3,1,10,1,0,8,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,55.169998,58.560001,6,2,3,0,0,2,3,1,1242,862593.25,0,0,723.80188 -1088,1323,2423,2422,-9,-9,1,1,1,49,1,0,0,0,3,-9,1,1,0,0,5,7.750186,7.6294527,0,1,0,-9,18,0,6,-30.187536,0,0,0,43,3,4,3,3,3,2019,2,2,10,0,40,60,15,1,0,3,0,5.6911678,5.6911678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.169998,58.560001,50,55,2,2,3,0,0,2,3,1,1242,862593.25,0,0,723.80188 -1089,1324,2424,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,4.5892415,4.7908192,3,0,0,0,-9,0,-1059.4673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4745288,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,10,2,0,2477,-25835.002,0,0,219.93591 -1090,1325,2425,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,5.5059123,5.4066401,3,0,0,0,-9,0,-1109.9498,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6551677,5.2607527,0,0,46.099998,38.099998,-9,-9,6,1,1,0,0,6,2,1,2289,10186.265,0,0,1502.7992 -1091,1326,2426,-9,2428,2429,7,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.4662,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,0,533.25,89212.789,0,0,3176.2559 -1091,1326,2427,-9,2428,2429,6,1,1,16,2,0,3,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1089.5471,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.669998,62.330002,-9,-9,3,1,1,0,0,4,3,0,533.25,89212.789,0,0,3176.2559 -1091,1326,2428,2429,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,0,2,7.7853322,8.174243,0,2,0,-9,7,0,-4,39.938492,0,0,1,42,2,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,0,1,0,6.3325524,6.3325524,0,0,0,0,0,0,0,14.5,1,0,1,0,0,21.724051,3,40.82,45.349998,54.200001,57.490002,7,1,1,0,0,4,3,0,533.25,89212.789,0,0,3176.2559 -1091,1326,2429,2428,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,8.5950851,8.5286131,0,2,0,-9,7,0,4,-104.00603,0,0,0,38,2,2,1,-9,1,2019,1,2,9,0,40,40,15,1,0,1,0,12.683362,12.683362,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.200001,57.490002,40.82,45.349998,5,4,2,0,0,4,3,0,533.25,89212.789,0,0,3176.2559 -1091,1327,2430,-9,2428,2429,3,1,1,20,2,0,3,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1032.7708,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,1,0,4,1,0,683,70268.977,0,0,-790.12134 -1091,1328,2431,-9,2428,2429,4,1,1,19,2,0,3,0,2,-9,2,1,0,0,4,6.8610654,7.2622037,0,3,0,0,0,-9,0,-985.55463,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,0,15,1,0,-9,1,3.498229,3.498229,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,4,2,0,326,25020.555,0,0,899.96698 -1091,1329,2432,-9,2428,2429,5,1,1,18,2,0,3,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1034.2554,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.529999,51.549999,-9,-9,4,1,1,1,0,4,3,0,112,0,0,0,0 -1091,1330,2433,-9,2428,2429,8,1,1,20,2,0,3,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-950.68408,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.740002,50.77,-9,-9,2,4,2,1,0,4,1,0,325,-103529.59,0,0,-437.12018 -1092,1331,2434,2435,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,8.2372055,8.5836449,1,0,-9,37,0,7,74.828896,0,0,0,63,1,3,1,2,1,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7933021,7.9597473,0,0,56.279999,42,58.470001,44.689999,5,1,1,0,0,10,5,1,562.5,2353451.8,0,0,4592.7256 -1092,1331,2435,2434,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,0,3,7.3253675,8.6095457,8.1866159,1,0,-9,35,0,-7,-44.583366,0,0,0,70,2,2,3,3,2,2019,2,1,8,0,6,45,15,1,0,4,0,29.397614,29.397614,0,0,0,0,0,0,0,0,1,1,0,4.3884606,8.2928276,0,0,58.470001,44.689999,56.279999,42,1,1,1,0,0,10,5,1,562.5,2353451.8,0,0,4592.7256 -1093,1332,2436,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1021.5368,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9085479,0,0,3,47.720001,55.040001,-9,-9,5,4,2,1,0,8,1,1,5465,548683.31,0,0,230.36096 -1093,1333,2437,-9,-9,-9,4,1,1,49,2,0,0,0,2,-9,2,1,0,0,4,8.5875511,8.8830614,0,3,0,0,0,-9,0,-1023.0867,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,35,15,1,0,-9,0,12.155225,12.155225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.400002,-9,-9,3,3,4,0,0,8,5,1,571,21536.035,0,0,1742.1086 -1094,1334,2438,-9,2440,2439,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-973.16241,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,5,1,1348.6666,1305135.5,0,0,4261.2456 -1094,1334,2439,2440,-9,-9,1,1,1,56,1,0,1,0,2,-9,2,1,0,0,5,9.1236916,9.0460386,0,2,0,-9,4,0,1,-78.935829,0,0,0,55,2,3,1,2,2,2019,1,2,8,0,35,35,15,1,0,1,0,27.531237,27.531237,0,0,0,0,0,0,0,0,1,1,0,4.9601045,0,0,0,53.200001,56.669998,49.049999,50.32,6,1,1,0,0,7,5,1,1348.6666,1305135.5,0,0,4261.2456 -1094,1334,2440,2439,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,3,7.3279419,7.5661373,6.2757664,2,0,-9,4,0,-1,56.878815,0,0,0,56,2,5,1,-9,-9,2019,1,1,13,4,22,22,15,1,1,1,0,8.6149445,8.6149445,0,0,0,0,0,0,0,0,1,1,0,6.5394082,0,0,0,49.049999,50.32,53.200001,56.669998,6,4,2,0,0,7,5,1,1348.6666,1305135.5,0,0,4261.2456 -1094,1335,2441,-9,2440,2439,3,1,0,24,2,0,1,0,2,-9,2,1,0,0,3,8.4260798,8.325285,0,3,0,0,0,-9,0,-1026.5458,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,50,40,15,1,1,-9,1,12.092131,12.092131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.869999,56.48,-9,-9,2,1,1,0,0,7,4,1,1359,140370.27,0,0,873.75861 -1095,1336,2442,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,1,1,9.0359201,9.021594,0,3,0,0,0,-9,0,-944.48926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,41,38,15,1,0,-9,0,22.655897,22.655897,0,0,0,0,0,0,0,0,1,1,0,.30552331,0,0,0,53.75,22.120001,-9,-9,5,1,1,0,0,9,5,0,610,139573.84,0,0,2742.6892 -1096,1337,2443,2444,-9,-9,1,1,0,83,1,0,0,0,2,-9,4,3,0,1,3,0,5.4280438,5.4046164,1,0,-9,37,0,6,-88.34761,0,0,0,77,2,1,3,3,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,4.3971777,0,0,0,0,0,1,1,0,5.9595356,5.5864973,0,0,40.32,47.77,34.799999,32.82,2,1,1,0,0,1,2,0,368.5,212819.53,0,0,2785.2087 -1096,1337,2444,2443,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,1,0,5.5532823,5.6245656,1,0,-9,37,0,-6,30.168081,0,0,0,83,2,3,3,3,3,2019,4,1,16,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.6509314,27.520962,1,34.799999,32.82,40.32,47.77,4,1,1,0,0,1,2,0,368.5,212819.53,0,0,2785.2087 -1097,1338,2445,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,6.944932,6.3965006,3,0,0,0,-9,0,-992.92798,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.644043,0,0,52,46,-9,-9,6,2,3,0,0,5,2,1,71,234050.48,0,0,458.51077 -1098,1339,2446,2447,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-1,-54.793987,0,0,0,66,1,3,1,3,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7507758,0,0,0,61.59,32.279999,55.75,50.299999,6,1,1,0,0,2,3,1,718.5,293814.75,0,0,2944.4607 -1098,1339,2447,2446,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,0,3,7.6627865,8.1735363,0,1,0,-9,8,0,1,-25.579525,0,0,0,65,2,3,3,2,2,2019,2,2,4,0,12,25,15,1,0,4,0,28.477394,28.477394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.75,50.299999,61.59,32.279999,6,1,1,0,0,2,3,1,718.5,293814.75,0,0,2944.4607 -1099,1340,2448,2449,-9,-9,2,1,0,48,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-7,0,-9,0,0,55,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8675225,0,0,0,50,54,50,49,6,1,1,0,0,4,1,1,1016,155941.97,0,0,-567.14655 -1099,1340,2449,2448,-9,-9,1,1,1,55,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,24,0,7,0,0,0,0,48,2,4,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,50,54,5,1,1,0,0,4,1,1,1016,155941.97,0,0,-567.14655 -1100,1341,2450,-9,2451,2453,4,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.3707,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,650.25,1588051,0,0,7687.6997 -1100,1341,2451,2453,-9,-9,2,1,0,43,1,2,2,0,1,-9,2,1,0,0,5,9.2608643,9.2481108,0,2,0,-9,3,0,-3,136.94606,0,0,1,46,2,4,1,-9,-9,2019,1,1,5,0,46,38,15,1,0,1,0,30.90592,30.90592,0,0,0,0,0,0,0,0,1,1,0,2.3964751,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,5,5,1,650.25,1588051,0,0,7687.6997 -1100,1341,2452,-9,2451,2453,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.97253,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,650.25,1588051,0,0,7687.6997 -1100,1341,2453,2451,-9,-9,1,1,1,46,1,2,2,0,2,-9,2,1,0,0,4,8.8760738,8.9368811,0,2,0,-9,3,0,3,116.58997,0,0,0,43,1,5,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,20.935333,20.935333,0,0,0,0,0,0,0,0,1,1,0,6.9463201,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,5,5,1,650.25,1588051,0,0,7687.6997 -1101,1342,2454,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,2,7.7451386,8.0456486,0,3,0,0,0,-9,0,-1092.6194,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,45,42,15,1,0,-9,0,6.2207761,6.2207761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.599998,53.509998,-9,-9,4,1,1,0,0,2,3,1,468,-118075.99,0,0,58.865952 -1102,1343,2455,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,7.5640693,7.6757765,3,0,0,0,-9,0,-962.45422,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3445292,7.6371379,0,0,37.82,54.299999,-9,-9,4,1,1,0,0,6,3,1,1739,427756.94,0,0,1891.0775 -1103,1344,2456,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,0,3,9.1897717,9.3839426,0,3,0,0,0,-9,0,-911.67169,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,29,10,50,0,15,1,1,-9,0,20.134121,20.134121,0,0,0,0,0,0,0,2,1,1,0,3.3792934,0,8.6810856,3,22.200001,50.880001,-9,-9,3,1,1,0,0,2,5,1,168,249102.75,0,0,2749.6138 -1104,1345,2457,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,6.6314664,6.7853856,3,0,0,0,-9,0,-957.98254,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5202131,6.4907699,0,0,43.560001,27.299999,-9,-9,5,1,1,0,0,4,2,1,537,251605.78,0,0,1338.8293 -1105,1346,2458,-9,2460,2459,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.4183,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,5,0,1308.6666,244536.84,0,0,2905.3665 -1105,1346,2459,2460,-9,-9,1,1,1,32,1,0,1,0,2,-9,2,1,0,0,3,9.0885029,8.89046,0,2,0,-9,8,0,3,137.47339,0,0,0,29,3,3,1,-9,-9,2019,1,2,12,0,52,42,15,1,0,1,0,18.706743,18.706743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,40.130001,41.02,4,2,3,0,0,8,5,0,1308.6666,244536.84,0,0,2905.3665 -1105,1346,2460,2459,-9,-9,2,1,0,29,1,0,1,0,3,-9,2,1,0,0,3,6.3162236,6.6635766,0,2,0,-9,8,0,-3,-68.982643,0,1,1,32,2,3,1,-9,-9,2019,1,1,12,0,8,0,15,1,0,1,0,9.0392313,9.0392313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.130001,41.02,39.150002,41.419998,3,2,3,0,0,8,5,0,1308.6666,244536.84,0,0,2905.3665 -1106,1347,2461,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,3,8.7597332,8.74086,0,3,0,-9,0,-9,0,-999.64313,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,31,10,60,0,15,1,1,-9,0,11.367867,11.367867,0,0,0,0,0,0,0,0,1,1,0,1.3707007,0,0,0,16.610001,49.34,-9,-9,1,1,1,0,1,7,5,0,186,-76651.023,0,0,2787.1777 -1107,1348,2462,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1092.0427,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4333138,3,61.110001,48.860001,-9,-9,7,1,1,0,0,4,1,0,3071,7257.9453,0,0,-424.15637 -1108,1349,2463,2464,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,3,8.7043209,8.6496344,0,1,0,-9,1,-9,0,32.788662,-9,1,0,27,1,5,1,-9,-9,2019,1,2,12,1,42,0,15,1,0,1,0,25.516415,25.516415,0,0,0,0,0,0,0,0,0,0,0,6.2550702,0,0,0,49.119999,53.02,51.139999,60.450001,6,2,3,0,0,7,5,0,913,126588.59,0,0,5515.231 -1108,1349,2464,2463,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.2436705,8.4159632,5.3914733,1,0,-9,1,-9,0,-62.696716,-9,1,1,27,1,3,1,-9,-9,2019,1,1,18,6,45,0,15,1,1,1,0,12.328201,12.328201,0,0,0,0,0,0,0,0,0,0,0,6.0806274,0,0,0,51.139999,60.450001,49.119999,53.02,6,2,3,0,0,7,5,0,913,126588.59,0,0,5515.231 -1109,1350,2465,2466,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,1,3,0,5.1508145,5.0293756,1,0,-9,54,0,4,38.178478,0,0,0,74,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9359679,0,0,54,45,52,45,5,1,1,0,0,4,1,1,1826,197702.84,0,0,591.96881 -1109,1350,2466,2465,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-4,-154.10518,0,0,0,78,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4721704,0,0,0,52,45,54,45,5,1,1,0,0,4,1,1,1826,197702.84,0,0,591.96881 -1110,1351,2467,2468,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,0,4,9.6361513,9.4695473,0,1,0,-9,2,0,-5,134.97298,0,0,1,42,2,4,1,2,2,2019,1,2,19,8,52,47,15,1,1,1,0,33.913494,33.913494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.330002,58.880001,42.830002,57.259998,5,1,1,0,0,9,5,1,950,364801.06,0,0,6750.2563 -1110,1351,2468,2467,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,4,8.7135859,8.9413137,0,1,0,-9,2,0,5,-31.388941,0,0,0,37,2,4,1,-9,-9,2019,1,1,15,4,60,40,15,1,1,1,0,14.019187,14.019187,0,0,0,0,0,0,0,2,0,0,0,6.5775084,0,.86876553,3,42.830002,57.259998,39.330002,58.880001,6,1,1,0,0,9,5,1,950,364801.06,0,0,6750.2563 -1111,1352,2469,2470,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,5,0,7.4874992,7.3891735,1,0,-9,41,0,0,54.777531,0,0,0,70,2,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4477191,7.7586641,0,0,60.02,56.419998,50.66,40.150002,6,1,1,0,0,7,4,1,2628,3175697.5,0,0,3049.5842 -1111,1352,2470,2469,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,6.8524814,7.4068308,6.9757185,1,0,-9,41,0,0,-42.315235,0,0,0,70,1,5,3,3,3,2019,4,1,11,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9988337,5.9409552,0,0,50.66,40.150002,60.02,56.419998,6,4,2,0,0,7,4,1,2628,3175697.5,0,0,3049.5842 -1112,1353,2471,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,1,1,0,0,4,7.8585629,8.5856495,6.9799385,3,0,0,0,-9,0,-1040.3616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,25,15,1,0,-9,0,10.917716,10.917716,0,0,0,0,0,0,0,0,1,1,0,7.12291,7.0483637,0,0,58.68,41.709999,-9,-9,6,1,1,0,0,2,4,1,1376,620244.31,0,0,3360.053 -1113,1354,2472,-9,2474,2476,5,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.23035,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,4,1,469.5,725116.75,0,0,3287.1646 -1113,1354,2473,-9,2474,2476,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.54486,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,7,4,1,469.5,725116.75,0,0,3287.1646 -1113,1354,2474,2476,-9,-9,2,1,0,40,1,0,4,0,1,-9,2,1,0,0,3,6.9474101,6.705245,0,2,0,-9,18,0,-1,10.933769,0,0,1,41,1,2,1,3,3,2019,1,1,12,0,18,18,15,1,0,1,0,5.4889154,5.4889154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.77,49.77,36.57,55.470001,4,2,3,0,0,7,4,1,469.5,725116.75,0,0,3287.1646 -1113,1354,2475,-9,2474,2476,3,1,1,15,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1156.7479,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,7,4,1,469.5,725116.75,0,0,3287.1646 -1113,1354,2476,2474,-9,-9,1,1,1,41,1,0,4,0,1,-9,2,1,0,0,2,9.0658007,8.9042187,0,2,0,-9,19,0,1,-40.156994,0,0,0,40,1,3,1,3,3,2019,1,2,14,3,40,40,15,1,0,1,0,26.34869,26.34869,0,0,0,0,0,0,0,0,0,0,0,5.8586774,0,0,0,36.57,55.470001,26.77,49.77,4,2,3,0,0,7,4,1,469.5,725116.75,0,0,3287.1646 -1113,1354,2477,-9,2474,2476,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-954.39337,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,7,4,1,469.5,725116.75,0,0,3287.1646 -1114,1355,2478,2479,-9,-9,1,1,0,34,1,1,2,0,1,-9,5,1,0,0,4,6.7342534,6.7006011,0,2,0,-9,8,0,-1,-16.416386,0,0,1,35,1,3,1,2,1,2019,1,2,6,0,40,40,15,1,0,1,0,2.616442,2.616442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.439999,59.619999,31.040001,62.549999,6,1,1,0,0,8,5,1,564,2034815.5,0,0,11505.525 -1114,1355,2479,2478,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,0,3,9.6512375,9.9299994,0,2,0,-9,14,0,1,61.492882,-9,0,0,34,1,4,1,1,1,2019,1,1,20,8,57,0,15,1,1,1,0,27.620829,27.620829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.040001,62.549999,46.439999,59.619999,5,1,1,0,0,8,5,1,564,2034815.5,0,0,11505.525 -1114,1355,2480,-9,2478,2479,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.2009,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,8,5,1,564,2034815.5,0,0,11505.525 -1114,1355,2481,-9,2478,2479,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-975.23865,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,1,564,2034815.5,0,0,11505.525 -1115,1356,2482,2483,-9,-9,3,1,1,57,1,0,1,0,2,-9,3,3,0,0,1,0,0,0,2,0,-9,3,0,12,35.207943,0,0,0,45,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,22.219999,41.810001,54.099998,5,1,1,1,0,11,2,0,450.66666,196568.22,0,0,1493.3933 -1115,1356,2483,2482,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,0,3,7.1380234,7.1792521,0,2,0,-9,3,0,-12,-49.018505,0,0,0,57,2,1,3,2,2,2019,2,3,16,4,26,24,15,1,1,3,0,5.5596704,5.5596704,0,0,0,0,0,0,0,2,1,1,0,0,0,5.8719807,1,41.810001,54.099998,52.07,22.219999,5,1,1,0,0,11,2,0,450.66666,196568.22,0,0,1493.3933 -1115,1356,2484,-9,2483,2482,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.69818,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,2,0,450.66666,196568.22,0,0,1493.3933 -1116,1357,2485,2486,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,3,8.9380836,8.7632132,0,2,0,-9,17,0,-1,-131.33694,0,0,0,44,1,5,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,20.038509,20.038509,0,0,0,0,0,0,0,0,0,0,0,5.0958428,0,0,0,55.360001,51.57,54.099998,59.110001,6,1,1,0,0,4,5,1,776,41266.82,0,0,6089.9922 -1116,1357,2486,2485,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,5,9.6616869,9.7222414,0,2,0,-9,16,0,1,-75.565712,0,0,1,43,1,3,1,2,1,2019,1,1,9,0,55,48,15,1,0,1,0,24.975414,24.975414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,55.360001,51.57,6,1,1,0,0,4,5,1,776,41266.82,0,0,6089.9922 -1117,1358,2487,2488,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,4.4087729,4.6489162,1,0,-9,9,0,-2,-55.868122,0,0,0,68,2,4,3,2,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5758891,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,9,2,1,594,1260048.8,0,0,2441.3364 -1117,1358,2488,2487,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.1276398,7.1525064,1,0,-9,9,0,2,89.326859,0,0,0,66,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8551159,7.2793136,0,0,54.200001,57.490002,57.16,56.150002,7,1,1,0,0,9,2,1,594,1260048.8,0,0,2441.3364 -1118,1359,2489,-9,2490,2491,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.0568,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,1,1,878,-35663.047,0,0,1598.2609 -1118,1359,2490,2491,-9,-9,2,1,0,35,1,1,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,10,0,-2,0,0,0,1,37,2,3,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,50.279999,51.349998,6,1,1,0,0,7,1,1,878,-35663.047,0,0,1598.2609 -1118,1359,2491,2490,-9,-9,1,1,1,37,1,1,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,10,0,2,0,0,0,0,35,2,3,3,2,3,2019,2,2,18,7,40,40,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67140114,0,0,0,50.279999,51.349998,57.330002,53.459999,4,1,1,0,0,7,1,1,878,-35663.047,0,0,1598.2609 -1119,1360,2492,2493,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,0,4,8.5655994,8.4760027,0,1,0,-9,13,0,-2,43.356068,0,0,0,56,2,2,1,3,3,2019,1,2,7,0,60,50,15,1,0,1,0,7.8496685,7.8496685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.419998,60.490002,56.509998,21.540001,7,1,1,0,0,9,4,1,472.5,471989.88,0,0,2518.1802 -1119,1360,2493,2492,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,1,2,7.5686955,7.6112351,0,1,0,-9,13,0,2,28.22373,0,0,0,54,3,4,1,2,2,2019,1,1,22,10,25,35,15,1,1,1,0,6.9034581,6.9034581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.509998,21.540001,37.419998,60.490002,3,1,1,0,0,9,4,1,472.5,471989.88,0,0,2518.1802 -1120,1361,2494,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,4,3,0,1,1,0,7.9167595,7.4671268,3,0,0,0,-9,0,-995.90979,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,32,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5944591,0,0,26.559999,28.780001,-9,-9,3,1,1,0,0,2,3,1,190,500685.38,0,0,1703.7732 -1121,1362,2495,2496,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.2552605,8.5107069,6.4416451,1,0,-9,10,0,-1,16.604843,0,0,0,51,2,5,1,2,2,2019,1,2,11,0,0,52,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.804585,0,0,55.189999,54.259998,44.009998,59.599998,6,1,1,0,0,11,5,1,542.5,611274.38,0,0,3645.5542 -1121,1362,2496,2495,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,5,8.0378027,8.431179,0,1,0,-9,10,0,1,68.037964,0,0,0,50,2,4,1,3,3,2019,1,1,11,0,33,33,15,1,0,1,0,11.887926,11.887926,0,0,0,0,0,0,0,0,0,0,0,2.448734,0,0,0,44.009998,59.599998,55.189999,54.259998,6,1,1,0,0,11,5,1,542.5,611274.38,0,0,3645.5542 -1122,1363,2497,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.8486528,8.9654417,0,3,0,-9,0,-9,0,-954.8869,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,48,0,15,1,0,-9,0,15.970711,15.970711,0,0,0,0,0,0,0,0,0,0,0,2.4769247,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,8,5,0,545,-91497.211,0,0,3397.3442 -1123,1364,2498,2499,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,1,56.264332,0,0,0,80,3,1,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.36903,0,0,1,49.27,56.950001,46.849998,27.33,6,1,1,0,0,7,2,1,555,23044.258,0,0,1165.3721 -1123,1364,2499,2498,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,1,1,0,4.5084095,4.4463663,1,0,-9,9,0,-1,-18.948166,0,0,0,81,3,4,3,-9,3,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,1,0,7.5202351,0,0,0,0,0,1,1,0,4.6165714,4.4640551,0,0,46.849998,27.33,49.27,56.950001,3,1,1,0,0,7,2,1,555,23044.258,0,0,1165.3721 -1124,1365,2500,-9,2502,2501,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.30646,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,907.33331,982030.06,0,0,2574.1389 -1124,1365,2501,2502,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,3,5.2623005,5.5593934,0,2,0,-9,15,0,4,65.395905,0,0,0,36,1,2,1,2,1,2019,1,1,12,0,0,52,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,44.330002,49.869999,50.459999,5,1,1,0,0,11,4,1,907.33331,982030.06,0,0,2574.1389 -1124,1365,2502,2501,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,2,8.6445589,8.8743906,0,2,0,-9,15,0,-4,46.811474,0,0,1,40,1,3,1,1,2,2019,1,2,7,0,42,50,15,1,0,1,0,17.474752,17.474752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.869999,50.459999,47.549999,44.330002,6,1,1,0,0,11,4,1,907.33331,982030.06,0,0,2574.1389 -1125,1366,2503,-9,-9,-9,1,1,1,84,3,0,0,0,1,-9,4,3,0,0,3,0,7.3765869,7.7611423,3,0,0,0,-9,0,-925.80676,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5554547,0,0,55,45,-9,-9,5,1,1,0,0,5,3,1,150,19328.85,0,0,1582.1556 -1126,1367,2504,2505,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.4744635,8.1017284,0,1,0,-9,6,0,0,-71.11705,0,1,1,30,1,4,1,-9,-9,2019,1,1,8,1,48,38,15,1,0,1,0,14.716294,14.716294,0,0,0,0,0,0,0,0,0,0,0,3.8053322,0,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,8,5,0,651,564906.13,0,0,4863.3711 -1126,1367,2505,2504,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,9.114274,8.9476995,0,1,0,-9,6,0,0,-84.917336,0,0,0,30,1,4,1,2,1,2019,1,2,9,0,50,65,15,1,0,1,0,21.804895,21.804895,0,0,0,0,0,0,0,0,0,0,0,4.4511065,0,0,0,62.490002,55.09,57.16,56.150002,6,1,1,0,0,8,5,0,651,564906.13,0,0,4863.3711 -1127,1368,2506,2507,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,7.8183603,7.4881253,1,0,-9,47,0,1,145.50012,0,0,0,69,1,4,3,3,2,2019,4,2,9,0,0,60,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5791416,0,0,44.779999,56.369999,57.16,56.150002,6,1,1,0,1,5,3,1,908,903299.88,0,0,3376.8171 -1127,1368,2507,2506,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,6.1828609,6.3845897,1,0,-9,47,0,-1,158.63182,0,0,0,70,1,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4305825,0,0,57.16,56.150002,44.779999,56.369999,6,1,1,0,0,5,3,1,908,903299.88,0,0,3376.8171 -1128,1369,2508,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,8,3,1,1,3,0,6.2867966,6.0388193,3,0,0,0,-9,0,-1065.4663,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,1,27.376289,0,0,0,0,288.08536,0,1,1,0,.64823401,6.1005177,0,0,51,46,-9,-9,5,3,4,0,0,7,2,0,494,192074.06,0,0,1152.2887 -1129,1370,2509,2510,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,8.79667,8.8091717,0,1,0,-9,6,0,-1,134.14203,0,0,1,35,1,4,3,2,2,2019,2,2,11,0,43,42,15,1,0,3,0,13.396901,13.396901,0,0,0,0,0,0,0,0,1,1,0,4.6237855,0,0,0,44.049999,59.349998,47.549999,57.73,5,1,1,0,0,2,4,1,514.5,288480.03,0,0,2483.2119 -1129,1370,2510,2509,-9,-9,2,1,1,35,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,6,0,1,-2.6745446,0,0,0,34,1,4,1,2,2,2019,3,1,13,3,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,57.73,44.049999,59.349998,5,1,1,1,0,2,4,1,514.5,288480.03,0,0,2483.2119 -1130,1371,2511,2512,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,6.8262558,6.8652625,1,0,-9,44,0,-6,-43.893311,0,0,0,70,1,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4618611,0,0,54.200001,57.490002,46.889999,54.32,6,1,1,0,0,6,3,1,1055,1061596.1,0,0,2652.6641 -1130,1371,2512,2511,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,7.9673119,7.679831,1,0,-9,44,0,6,-11.10681,0,0,0,64,2,4,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5059607,7.9225087,0,0,46.889999,54.32,54.200001,57.490002,6,1,1,0,0,6,3,1,1055,1061596.1,0,0,2652.6641 -1131,1372,2513,2514,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.8472452,8.003089,1,0,-9,50,0,-1,-120.37023,0,0,0,75,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,7.6510196,0,0,0,0,0,1,1,0,0,8.1669874,0,0,39.240002,39.959999,40.139999,38.189999,7,1,1,0,0,7,3,0,839,1534635,0,0,2338.8535 -1131,1372,2514,2513,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,7.1257458,7.0416737,1,0,-9,50,0,1,-176.57936,0,0,0,74,3,3,3,3,3,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8838162,0,0,40.139999,38.189999,39.240002,39.959999,4,1,1,0,0,7,3,0,839,1534635,0,0,2338.8535 -1131,1373,2515,-9,2514,2513,3,1,1,45,3,0,0,0,2,-9,2,1,0,0,4,8.1647501,8.3871241,0,3,0,0,0,-9,0,-1051.001,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,46,60,15,1,0,-9,1,9.1188774,9.1188774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,7,4,0,804,354581.44,0,0,2018.1121 -1132,1374,2516,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,1,2,0,4.0406542,4.0039868,3,0,-9,0,-9,0,-900.3645,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0570226,4.483479,0,0,44.369999,26.91,-9,-9,4,1,1,0,0,11,2,1,649,259251.05,0,0,206.49402 -1133,1375,2517,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,1,1,0,0,5,6.4208946,6.469388,0,3,0,0,0,-9,0,-868.08197,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,7,20,15,1,0,-9,0,7.7672691,7.7672691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,-9,-9,5,1,1,0,0,10,2,0,159,421108.78,0,0,2940.6672 -1134,1376,2518,2519,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,5.8187838,5.87748,1,0,-9,7,0,-1,166.94743,0,0,0,74,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5524116,0,0,57.330002,53.459999,54.959999,53.169998,6,1,1,0,0,13,2,1,686.5,91331.031,0,0,1370.3717 -1134,1376,2519,2518,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,1,22.920675,0,0,0,73,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,57.330002,53.459999,5,1,1,0,0,13,2,1,686.5,91331.031,0,0,1370.3717 -1135,1377,2520,2522,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,0,4,7.1513691,7.3263192,0,2,0,-9,7,0,-5,-69.94519,0,0,1,38,2,3,1,2,1,2019,1,1,24,11,25,24,15,1,1,1,0,6.5858378,6.5858378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,52.400002,52.91,2,1,1,0,0,2,3,1,717,-102775.75,0,0,2880.6516 -1135,1377,2521,-9,2520,2522,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.00818,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,3,1,717,-102775.75,0,0,2880.6516 -1135,1377,2522,2520,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,0,3,8.0274925,7.6575131,0,2,0,-9,7,0,5,-22.304028,0,0,0,33,2,4,1,2,2,2019,1,2,8,0,41,41,15,1,0,1,0,9.8435726,9.8435726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,52.91,42.950001,61.240002,6,1,1,0,0,2,3,1,717,-102775.75,0,0,2880.6516 -1135,1377,2523,-9,2520,2522,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.48486,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,717,-102775.75,0,0,2880.6516 -1136,1378,2524,2526,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,0,4,8.4448919,8.3253212,0,2,0,-9,5,0,-1,-85.998055,0,0,0,49,1,3,1,-9,-9,2019,1,1,13,3,40,31,15,1,0,1,0,10.455144,10.455144,0,0,0,0,0,0,0,0,0,0,0,2.7346919,0,0,0,38.689999,61.75,39.919998,46.669998,4,2,3,0,0,2,5,1,544,930625.38,0,0,6477.2588 -1136,1378,2525,-9,2524,2526,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.63934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,5,1,544,930625.38,0,0,6477.2588 -1136,1378,2526,2524,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,0,3,9.7815828,9.6946583,0,2,0,-9,5,0,1,-2.2736893,0,0,0,48,1,4,1,3,3,2019,1,2,20,8,60,60,15,1,1,1,0,33.166107,33.166107,0,0,0,0,0,0,0,0,0,0,0,4.9615893,0,0,0,39.919998,46.669998,38.689999,61.75,3,2,3,0,0,2,5,1,544,930625.38,0,0,6477.2588 -1136,1378,2527,-9,2524,2526,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.3472,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.60335892,0,0,0,47.040001,57.990002,-9,-9,4,2,3,0,0,2,5,1,544,930625.38,0,0,6477.2588 -1137,1379,2528,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,1,1,0,0,5,9.5697775,9.8506088,0,3,0,0,0,-9,0,-964.04266,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,77,15,1,0,-9,0,34.005684,34.005684,0,0,0,0,0,0,0,0,0,0,0,9.2744284,0,0,0,62.389999,56.709999,-9,-9,5,2,3,0,0,8,5,1,233,151657.63,0,0,9357.0713 -1138,1380,2529,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,3,0,7.8615379,8.1673641,3,0,0,0,-9,0,-1096.3695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4554276,7.8203292,0,0,48.240002,35.689999,-9,-9,6,1,1,0,0,4,4,1,492,455497.91,0,0,1506.0809 -1139,1381,2530,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,8.6261492,8.2859564,0,3,0,0,0,-9,0,-907.07214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,50,50,15,1,0,-9,0,12.270495,12.270495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.860001,50.490002,-9,-9,6,1,1,0,0,10,5,0,438,317047.38,0,0,1613.3717 -1140,1382,2531,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,4,0,7.8730721,7.9292512,3,0,0,0,-9,0,-975.06299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.8893156,0,0,49.57,38.84,-9,-9,6,1,1,0,0,1,3,1,1070,482913.28,0,0,1610.928 -1141,1383,2532,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,1,1,0,4.2131286,4.2748151,3,0,0,0,-9,0,-1059.2196,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0676985,3.8247955,0,0,41.610001,16.049999,-9,-9,6,1,1,0,0,5,2,0,518,-99796.359,0,0,1539.8563 -1142,1384,2533,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,1,0,7.7845473,7.7597785,3,0,0,0,-9,0,-957.42017,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,1.4779525,0,0,0,0,0,0,1,1,0,3.7136872,8.1708498,0,0,55.369999,16.9,-9,-9,4,1,1,0,0,11,3,1,794,967435.38,0,0,2689.9045 -1143,1385,2534,-9,2535,-9,2,1,1,42,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-977.54413,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.509998,35.73,-9,-9,7,1,1,1,0,13,1,1,673,127063.12,0,0,-.42306915 -1143,1386,2535,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1020.7511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.700001,35.279999,-9,-9,2,1,1,0,0,13,1,1,282,4980.6377,0,0,1570.2148 -1144,1387,2536,2537,-9,-9,1,1,0,75,1,0,0,0,2,-9,1,1,0,0,5,6.9011855,6.928061,0,1,0,-9,50,0,0,-22.740866,0,0,0,75,1,3,1,3,3,2019,1,2,11,0,2,1,15,1,0,1,0,79.70787,79.70787,0,0,0,0,0,0,0,0,1,1,0,8.6489973,0,0,0,51.82,54.650002,53,47,6,1,1,0,0,11,3,1,754,1908399.5,0,0,7307.0625 -1144,1387,2537,2536,-9,-9,2,1,1,75,1,0,0,0,1,-9,1,1,0,0,3,7.715137,7.707201,0,1,0,-9,9,0,0,78.435837,0,0,0,75,2,5,1,-9,-9,2019,1,1,10,1,20,20,15,1,0,1,0,14.096993,14.096993,0,0,0,0,0,0,0,0,1,1,0,7.9035525,0,0,0,53,47,51.82,54.650002,5,1,1,0,0,11,3,1,754,1908399.5,0,0,7307.0625 -1145,1388,2538,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,7.5523129,7.7152443,3,0,0,0,-9,0,-1026.5066,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2383327,7.4751449,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,870,1056064.1,0,0,1343.9991 -1146,1389,2539,2540,-9,-9,2,1,1,68,1,0,1,0,1,-9,4,3,0,0,3,0,0,0,2,0,-9,9,0,7,-97.928123,0,0,0,61,2,3,1,3,3,2019,3,1,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49,48,5,2,3,0,0,8,3,1,916.5,695716.19,0,0,1997.7603 -1146,1389,2540,2539,-9,-9,1,1,0,61,1,0,1,0,2,-9,2,1,0,0,3,8.2192831,8.2681856,0,2,0,-9,42,0,-7,-101.29874,0,0,0,68,1,3,3,2,2,2019,2,2,11,2,24,36,15,1,0,4,0,13.31549,13.31549,0,0,0,0,0,0,0,2,1,1,0,0,0,3.6604071,1,49,48,52,48,5,2,3,0,0,8,3,1,916.5,695716.19,0,0,1997.7603 -1146,1390,2541,2543,2540,2539,3,1,1,35,1,0,1,0,2,-9,1,1,0,0,1,7.8449507,7.6998143,0,2,0,-9,6,0,3,122.97727,0,0,0,32,1,4,1,1,1,2019,1,6,21,9,40,40,15,1,1,1,0,5.0797253,5.0797253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.59,41.849998,48,57,3,2,3,0,0,8,3,1,814,-28805.756,0,0,903.07709 -1146,1390,2542,-9,2543,2541,7,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.82343,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,3,1,814,-28805.756,0,0,903.07709 -1146,1390,2543,2541,-9,-9,6,1,0,32,1,0,1,0,1,-9,2,1,0,0,4,7.130527,7.0297489,0,2,0,-9,6,0,-3,-24.792538,0,0,1,35,2,1,1,-9,-9,2019,1,3,11,2,35,0,15,1,0,1,0,4.5361743,4.5361743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,36.59,41.849998,5,2,3,0,0,8,3,1,814,-28805.756,0,0,903.07709 -1146,1391,2544,-9,2540,2539,4,1,1,31,2,0,1,0,2,-9,1,1,0,0,4,7.3218179,7.4213066,0,3,0,0,0,-9,0,-948.14557,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,50,0,15,1,0,-9,1,4.1027689,4.1027689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,3,1,1701,-165237.66,0,0,1180.176 -1146,1392,2545,-9,2540,2539,5,1,0,30,2,0,1,0,1,-9,2,1,0,0,4,7.5481377,7.2519331,0,3,0,0,0,-9,0,-1079.1273,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,14,2,30,0,15,1,0,-9,1,6.4612856,6.4612856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,6,2,3,0,0,8,3,1,790,77818.891,0,0,370.86899 -1147,1393,2546,2547,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,4,8.7734566,8.8771849,0,2,0,-9,21,0,1,52.350391,0,0,0,41,2,5,1,2,2,2019,1,2,7,0,55,50,15,1,0,1,0,11.486921,11.486921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.720001,55.580002,6,1,1,0,0,10,5,1,416.33334,153994.08,0,0,4171.9961 -1147,1393,2547,2546,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,5,7.7112155,8.0934095,0,2,0,-9,21,0,-1,28.346931,0,0,1,42,2,4,1,2,2,2019,1,1,8,0,19,17,15,1,0,1,0,20.441393,20.441393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.720001,55.580002,57.16,56.150002,6,1,1,0,0,10,5,1,416.33334,153994.08,0,0,4171.9961 -1147,1393,2548,-9,2547,2546,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.0439,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,416.33334,153994.08,0,0,4171.9961 -1148,1394,2549,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,4,8.2119331,7.9528527,5.0426555,4,0,0,0,-9,0,-967.07941,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,38,36,15,1,1,-9,0,10.237868,10.237868,0,0,0,0,0,0,0,0,1,1,0,4.6900649,0,0,0,38,62.48,-9,-9,5,1,1,0,0,10,3,1,946.5,-88554.805,0,0,1641.5923 -1148,1394,2550,-9,2549,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1126.0769,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,10,3,1,946.5,-88554.805,0,0,1641.5923 -1149,1395,2551,2552,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,0,4,7.0815825,8.0153141,7.5472875,1,0,-9,9,0,4,82.697044,0,0,0,62,2,2,3,2,2,2019,2,2,6,0,45,39,15,1,0,3,0,2.4841123,2.4841123,0,0,0,0,0,0,0,2,1,1,0,4.0473194,7.4535995,0,3,51.830002,57.200001,40.23,34.75,6,1,1,0,0,1,3,1,731.5,1238199.8,0,0,2461.9492 -1149,1395,2552,2551,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,9,0,-4,-89.375977,0,0,0,66,1,4,1,3,3,2019,3,1,11,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.063589,3,40.23,34.75,51.830002,57.200001,6,1,1,0,0,1,3,1,731.5,1238199.8,0,0,2461.9492 -1149,1396,2553,-9,2552,2551,3,1,0,29,2,0,0,0,2,-9,2,1,0,0,5,7.6129065,7.6378012,0,3,0,0,0,-9,0,-1040.3752,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,30,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.849998,60.439999,-9,-9,6,1,1,0,0,1,3,1,781,-40286.316,0,0,722.76501 -1150,1397,2554,2555,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.3074017,8.314559,0,1,0,-9,3,0,-13,-37.98621,0,1,1,41,1,3,1,2,2,2019,1,2,18,4,37,37,15,1,1,1,0,12.120937,12.120937,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,31.24,58.459999,32.759998,56.57,4,1,1,0,0,2,5,0,752.5,569038.63,0,0,3754.751 -1150,1397,2555,2554,-9,-9,2,1,1,41,1,0,0,0,1,-9,2,1,0,0,3,8.6434994,8.9163361,0,1,0,-9,3,0,13,-72.451965,0,0,0,28,1,4,1,-9,-9,2019,1,1,14,2,38,38,15,1,0,1,0,14.583561,14.583561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,32.759998,56.57,31.24,58.459999,4,1,1,0,0,2,5,0,752.5,569038.63,0,0,3754.751 -1151,1398,2556,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,6.9889464,7.4080191,3,0,0,0,-9,0,-1084.5435,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0266078,7.05229,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,2,1,247,579653.38,0,0,2315.5269 -1152,1399,2557,2558,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,5,8.546895,8.7978964,0,1,0,-9,28,0,0,-92.616699,0,0,0,54,1,5,1,1,1,2019,1,2,13,2,35,35,15,1,0,1,0,19.856176,19.856176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61.599998,38.490002,62.459999,4,1,1,0,0,6,4,1,1069,805293.06,0,0,2710.4556 -1152,1399,2558,2557,-9,-9,2,1,0,54,1,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,28,0,0,30.129229,0,0,0,54,1,5,1,1,1,2019,1,1,15,3,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.490002,62.459999,46,61.599998,5,1,1,0,1,6,4,1,1069,805293.06,0,0,2710.4556 -1152,1400,2559,-9,2558,2557,3,1,0,23,2,0,0,1,2,0,7,2,0,0,2,5.7055292,5.5419059,0,3,0,0,0,-9,0,-920.68634,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,25,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.459999,61.360001,-9,-9,3,1,1,0,1,6,2,1,659,-103292.73,0,0,182.43605 -1152,1401,2560,-9,2558,2557,4,1,0,21,2,0,0,1,2,0,7,2,0,0,4,7.005074,7.4140668,6.5928392,3,0,0,0,-9,0,-917.948,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8636346,0,0,0,39.98,59.959999,-9,-9,6,1,1,0,0,6,3,1,893,-81665.734,0,0,-725.36639 -1153,1402,2561,-9,2562,2565,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.8005,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,5,1,634.79999,621921.81,0,0,5252.6953 -1153,1402,2562,2565,-9,-9,2,1,0,36,1,1,3,0,1,-9,2,1,0,0,4,8.7554092,9.0374956,0,2,0,-9,7,0,-2,-79.948105,0,0,1,38,1,3,1,-9,-9,2019,1,1,9,1,32,30,15,1,0,1,0,24.051685,24.051685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.439999,59.619999,28.549999,61.380001,6,1,1,0,0,13,5,1,634.79999,621921.81,0,0,5252.6953 -1153,1402,2563,-9,2562,2565,4,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.7861,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,5,1,634.79999,621921.81,0,0,5252.6953 -1153,1402,2564,-9,2562,2565,3,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.4064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,634.79999,621921.81,0,0,5252.6953 -1153,1402,2565,2562,-9,-9,1,1,1,38,1,1,3,0,1,-9,2,1,0,0,3,8.3816385,8.7161245,5.6048331,2,0,-9,7,0,2,-55.22858,0,0,0,36,1,4,1,2,2,2019,1,2,24,11,42,42,15,1,1,1,0,12.868904,12.868904,0,0,0,0,0,0,0,0,1,1,0,6.0742364,5.9734464,0,0,28.549999,61.380001,46.439999,59.619999,4,1,1,0,0,13,5,1,634.79999,621921.81,0,0,5252.6953 -1154,1403,2566,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,2,1,0,0,4,6.9727821,6.7996135,0,3,0,0,0,-9,0,-897.86682,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,18,18,15,1,0,-9,0,8.0310602,8.0310602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,7,2,1,412,8630.6709,0,0,600.23346 -1155,1404,2567,-9,2568,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1081.7327,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,1,0,537.5,57309.328,0,0,1311.9031 -1155,1404,2568,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1046.0205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.080002,25.91,-9,-9,2,1,1,0,0,11,1,0,537.5,57309.328,0,0,1311.9031 -1156,1405,2569,-9,2570,2572,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.88068,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,4,1,384.25,588808,0,0,3499.5991 -1156,1405,2570,2572,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,11,0,4,80.402122,0,0,0,41,1,3,1,3,1,2019,1,1,19,7,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.10059686,3,33.139999,64.629997,47.150002,56.66,3,1,1,0,1,8,4,1,384.25,588808,0,0,3499.5991 -1156,1405,2571,-9,2570,2572,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.9433,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,4,1,384.25,588808,0,0,3499.5991 -1156,1405,2572,2570,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,0,3,9.0945749,8.9018869,0,2,0,-9,11,0,-4,237.22505,0,0,0,45,1,4,1,2,2,2019,1,2,13,1,38,40,15,1,0,1,0,25.658434,25.658434,0,0,0,0,0,0,0,0,1,1,0,4.4622211,0,0,0,47.150002,56.66,33.139999,64.629997,5,2,3,0,0,8,4,1,384.25,588808,0,0,3499.5991 -1157,1406,2573,-9,2574,2575,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.4113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,0,2361.6667,88190.078,0,0,2245.137 -1157,1406,2574,2575,-9,-9,1,1,0,27,1,0,1,0,2,-9,5,1,0,0,4,7.8986392,7.8615913,0,2,0,-9,6,0,0,106.21272,0,1,1,27,2,4,1,2,2,2019,1,2,19,6,32,38,15,1,1,1,0,9.0090618,9.0090618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.099998,51.16,50,57,7,1,1,0,0,4,4,0,2361.6667,88190.078,0,0,2245.137 -1157,1406,2575,2574,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,0,4,8.3427973,7.9462423,0,2,0,-9,6,0,0,78.781578,0,1,0,27,2,4,1,2,2,2019,1,1,10,1,38,38,15,1,0,1,0,9.5670156,9.5670156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,62.099998,51.16,5,1,1,0,0,4,4,0,2361.6667,88190.078,0,0,2245.137 -1158,1407,2576,2578,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,7.8655486,7.6768713,0,2,0,-9,8,0,2,7.7116432,0,0,1,36,2,4,1,3,2,2019,1,1,9,1,22,22,15,1,0,1,0,12.729868,12.729868,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,50.869999,44.529999,56.369999,6,1,1,0,0,13,4,1,316,384156.16,0,0,3927.9131 -1158,1407,2577,-9,2576,2578,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.5891,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,316,384156.16,0,0,3927.9131 -1158,1407,2578,2576,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,0,4,8.6058388,8.7648172,0,2,0,-9,8,0,-2,-42.662388,0,0,0,38,1,3,1,3,3,2019,1,2,11,0,52,50,15,1,0,1,0,12.808376,12.808376,0,0,0,0,0,0,0,2,1,1,0,0,0,3.914449,3,44.529999,56.369999,53.98,50.869999,6,1,1,0,0,13,4,1,316,384156.16,0,0,3927.9131 -1158,1407,2579,-9,2576,2578,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1183.8239,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,1,316,384156.16,0,0,3927.9131 -1159,1408,2580,2581,-9,-9,1,1,1,23,1,0,0,0,2,-9,2,1,0,0,4,9.5195999,9.4336996,0,1,0,-9,1,-9,2,-51.535851,-9,1,0,21,2,4,1,2,2,2019,1,2,14,4,56,0,15,1,1,1,0,23.085402,23.085402,0,0,0,0,0,0,0,0,0,0,0,3.7164941,0,0,0,51,52.080002,48.25,53.5,6,1,1,0,0,6,5,1,1027,9928.3076,0,0,4873.002 -1159,1408,2581,2580,-9,-9,2,1,0,21,1,0,0,0,2,-9,2,1,0,0,4,7.1492648,7.4097829,0,1,0,-9,1,-9,-2,22.149307,-9,1,1,23,2,4,1,-9,-9,2019,1,1,7,0,23,0,15,1,0,1,0,5.8883181,5.8883181,0,0,0,0,0,0,0,0,0,0,0,2.9240904,0,0,0,48.25,53.5,51,52.080002,6,1,1,0,0,6,5,1,1027,9928.3076,0,0,4873.002 -1160,1409,2582,2583,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,2,-76.196899,0,0,0,78,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,49.919998,54,46,6,1,1,0,0,10,2,0,1127.5,324274.56,0,0,1903.6904 -1160,1409,2583,2582,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,6.8444028,6.8172545,1,0,-9,55,0,-2,-151.63158,0,0,0,80,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7176561,0,0,54,46,50.029999,49.919998,6,1,1,0,0,10,2,0,1127.5,324274.56,0,0,1903.6904 -1161,1410,2584,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,3,3,0,0,2,0,5.0712304,5.5348101,3,0,0,0,-9,0,-1023.2159,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,5.4124789,9.3611622,3,30.440001,36.360001,-9,-9,1,1,1,1,1,2,2,1,566,-215865.92,0,0,2267.1572 -1162,1411,2585,-9,2587,2586,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1070.6703,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,4,1,457.33334,95496.703,0,0,4007.7849 -1162,1411,2586,2587,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,8.5872879,8.621314,0,2,0,-9,8,0,-6,61.496048,0,0,0,52,3,5,1,-9,-9,2019,1,2,7,0,45,50,15,1,0,1,0,15.840019,15.840019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,10,4,1,457.33334,95496.703,0,0,4007.7849 -1162,1411,2587,2586,-9,-9,2,1,0,52,1,0,1,0,3,-9,1,1,0,0,5,8.3299408,8.3391304,5.4147043,2,0,-9,13,0,6,-118.82999,0,0,0,46,2,4,1,2,2,2019,1,1,9,0,25,25,15,1,0,1,0,13.410799,13.410799,0,0,0,0,0,0,0,0,1,1,0,5.4960093,0,0,0,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,10,4,1,457.33334,95496.703,0,0,4007.7849 -1163,1412,2588,2590,-9,-9,3,1,1,38,1,2,4,0,2,-9,2,1,0,0,3,6.204093,6.5001063,0,2,0,-9,1,-9,4,-102.56683,-9,0,0,34,3,3,3,-9,-9,2019,2,1,11,2,16,0,15,1,0,3,0,4.3058066,4.3058066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,41.34,56.619999,5,1,1,0,0,11,2,0,839.20001,40294.129,0,0,1497.4241 -1163,1412,2589,-9,2590,2588,5,1,0,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-963.22284,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,0,839.20001,40294.129,0,0,1497.4241 -1163,1412,2590,2588,-9,-9,1,1,0,34,1,2,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,1,-9,-4,-22.555176,-9,0,1,38,2,3,1,-9,2,2019,3,3,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,39.150002,41.419998,4,1,1,0,0,11,2,0,839.20001,40294.129,0,0,1497.4241 -1163,1412,2591,-9,2590,2588,6,1,1,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-954.64044,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,2,0,839.20001,40294.129,0,0,1497.4241 -1163,1412,2592,-9,2590,2588,4,1,1,7,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1015.4623,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,2,0,839.20001,40294.129,0,0,1497.4241 -1164,1413,2593,2594,-9,-9,2,1,1,66,1,0,0,0,1,-9,1,1,0,0,4,8.5331917,8.8377886,7.8051381,1,0,-9,7,0,0,158.62518,0,0,0,66,2,3,3,2,-9,2019,2,1,6,0,15,20,15,1,0,4,0,33.732296,33.732296,0,0,0,0,0,0,0,0,1,1,0,0,7.9193401,0,0,58.900002,45.740002,51.27,48.119999,6,1,1,0,0,7,4,1,617,1810818.8,0,0,4006.2334 -1164,1413,2594,2593,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,0,85.136818,0,0,0,66,1,4,1,3,2,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8566882,0,0,0,51.27,48.119999,58.900002,45.740002,6,1,1,0,0,7,4,1,617,1810818.8,0,0,4006.2334 -1165,1414,2595,2596,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,3,6.3588204,6.7023773,5.5862322,1,0,-9,33,0,-1,-2.3777113,0,0,0,66,1,2,3,3,3,2019,2,1,8,0,8,18,15,1,0,4,0,8.6275406,8.6275406,0,0,0,0,0,0,0,0,1,1,0,4.3432498,5.5300527,0,0,58.32,50.220001,57.919998,38.59,6,1,1,0,0,10,2,1,363.5,1607603.9,0,0,2302.0044 -1165,1414,2596,2595,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,1,2,0,7.2306161,7.0327544,1,0,-9,32,0,1,45.849976,0,0,0,65,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9867077,7.031846,0,0,57.919998,38.59,58.32,50.220001,6,1,1,0,0,10,2,1,363.5,1607603.9,0,0,2302.0044 -1166,1415,2597,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,3,0,6.2130971,6.2208648,3,0,0,0,-9,0,-1035.7095,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9618554,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,11,2,0,648,597061.56,0,0,888.37915 -1167,1416,2598,2599,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,1,-2.5027103,0,0,0,73,2,5,3,3,2,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.1095524,0,0,0,43.669998,61.060001,60.02,56.419998,6,1,1,0,0,9,3,1,560.5,1128485.3,0,0,6440.4414 -1167,1416,2599,2598,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,5,0,7.9689746,7.9327755,1,0,-9,51,0,-1,56.364666,0,0,0,74,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0806093,8.0007153,0,0,60.02,56.419998,43.669998,61.060001,7,1,1,0,0,9,3,1,560.5,1128485.3,0,0,6440.4414 -1168,1417,2600,2602,-9,-9,2,1,0,50,1,0,1,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,10,0,0,10.042368,0,0,0,50,1,4,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.200001,56.669998,49.349998,59.639999,2,1,1,0,0,13,5,1,1205.6666,1961845.4,0,0,5795.2866 -1168,1417,2601,-9,2600,2602,5,1,1,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1013.8503,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,5,1,1205.6666,1961845.4,0,0,5795.2866 -1168,1417,2602,2600,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,9.8070965,9.7940569,0,2,0,-9,10,0,0,-6.2968831,0,0,0,50,2,5,3,2,1,2019,2,2,11,1,52,60,15,1,0,3,0,41.297562,41.297562,0,0,0,0,0,0,0,0,0,0,0,5.0749073,0,0,0,49.349998,59.639999,53.200001,56.669998,6,1,1,0,0,13,5,1,1205.6666,1961845.4,0,0,5795.2866 -1168,1418,2603,-9,2600,2602,4,1,1,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1050.4406,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,13,1,1,438,21891.432,0,0,0 -1169,1419,2604,2605,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,62,0,-5,12.203376,0,0,0,88,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,13.744798,0,0,0,0,0,1,1,0,.29143667,0,0,0,52,45,54,45,6,1,1,0,0,7,2,1,317.5,350134.69,0,0,1199.8129 -1169,1419,2605,2604,-9,-9,2,1,1,88,1,0,0,0,3,-9,4,3,0,0,3,0,7.5115352,7.4581542,1,0,-9,62,0,5,96.891182,0,0,0,83,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.10350039,7.2465348,0,0,54,45,52,45,6,1,1,0,0,7,2,1,317.5,350134.69,0,0,1199.8129 -1170,1420,2606,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,5,8.0715456,8.2033911,0,3,0,0,0,-9,0,-1039.6101,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,37,15,1,0,-9,0,9.4512787,9.4512787,0,0,0,0,0,0,0,7,1,1,0,6.7227793,0,8.396945,3,60.02,56.419998,-9,-9,6,1,1,0,0,6,4,1,176,-40306.641,0,0,1814.9453 -1171,1421,2607,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,4,7.2717223,8.0022001,7.397048,3,0,0,0,-9,0,-1066.9714,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,20,20,15,1,0,-9,0,6.67764,6.67764,0,0,0,0,0,0,0,0,0,0,0,7.7545357,7.6101413,0,0,48.529999,58.91,-9,-9,5,1,1,0,0,1,4,1,1029,269744.56,0,0,1782.605 -1172,1422,2608,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,0,2,8.6293411,8.8911591,6.4730496,4,0,0,0,-9,0,-970.13208,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,37,36,15,1,1,-9,0,18.035892,18.035892,0,0,0,0,0,0,0,0,1,1,0,5.707716,0,0,0,38.509998,48.900002,-9,-9,6,1,1,0,0,12,5,1,601,128333.22,0,0,3815.4631 -1173,1423,2609,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,2,0,5.4127965,5.6182151,3,0,0,0,-9,0,-873.37494,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.57500786,5.3469505,0,0,56.880001,39.029999,-9,-9,5,1,1,0,0,7,2,1,1291,92050.922,0,0,2377.7417 -1174,1424,2610,2611,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,7.9099216,8.4439611,1,0,-9,43,0,-1,68.091042,0,0,0,64,3,3,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5531645,0,0,45.73,57.57,52,48,6,1,1,0,0,12,3,1,634,916341.06,0,0,4205.4678 -1174,1424,2611,2610,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,1,62.634853,0,0,0,63,3,3,3,3,2,2019,4,2,10,1,0,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5552149,0,0,0,52,48,45.73,57.57,5,1,1,0,0,12,3,1,634,916341.06,0,0,4205.4678 -1175,1425,2612,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1026.5966,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3572383,0,0,0,64.550003,25.73,-9,-9,5,1,1,0,0,11,1,0,308,-32636.227,0,0,784.40851 -1176,1426,2613,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1070.7197,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,1,5.8808031,0,0,2.7930517,6.8405261,54.425583,0,1,1,0,0,0,0,0,43.580002,50.040001,-9,-9,5,2,3,0,0,8,1,0,653,282315.06,0,0,2095.4485 -1177,1427,2614,-9,-9,-9,1,1,0,79,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-988.1488,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,6.4934602,0,0,0,0,0,0,1,1,0,0,0,0,0,37.470001,25.07,-9,-9,5,1,1,0,0,13,1,0,1008,95882.203,0,0,2780.4355 -1178,1428,2615,2616,-9,-9,2,1,0,75,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,53,0,-5,143.60185,0,0,0,80,2,1,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,10.754369,2,54.790001,55.860001,50.52,26.860001,6,1,1,0,0,12,3,1,969.5,530090.88,0,0,2544.4268 -1178,1428,2616,2615,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,1,0,7.2487016,7.4263916,1,0,-9,53,0,5,-188.14561,0,0,0,75,2,4,3,2,2,2019,4,2,14,3,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,0,7.7254915,4.0372558,3,50.52,26.860001,54.790001,55.860001,4,1,1,0,0,12,3,1,969.5,530090.88,0,0,2544.4268 -1179,1429,2617,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,4,0,6.7107849,6.9883018,3,0,0,0,-9,0,-993.61816,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.74789196,6.9143653,0,3,58.150002,52.91,-9,-9,7,1,1,0,0,11,2,0,960,309120.34,0,0,1294.9812 -1180,1430,2618,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,4,9.2789135,9.2235861,0,1,0,-9,11,0,-7,-16.009163,0,0,1,-9,-9,-9,-9,1,2,2019,1,2,11,0,40,42,15,1,0,-9,0,42.934441,42.934441,0,0,0,0,0,0,0,0,0,0,0,4.434618,0,0,0,44.02,60.700001,30.77,64.339996,5,1,1,0,0,6,5,1,146,77255.109,0,0,3889.4268 -1180,1431,2619,-9,-9,-9,2,1,0,41,2,0,0,0,2,-9,2,1,0,0,4,8.4354429,8.3795471,0,1,0,-9,11,0,7,-3.2648242,0,0,1,-9,-9,-9,-9,2,2,2019,1,1,15,3,41,78,15,1,0,-9,0,16.262634,16.262634,0,0,0,0,0,0,0,0,0,0,0,3.9620774,0,0,0,30.77,64.339996,44.02,60.700001,5,1,1,0,0,6,5,1,47,-22447.039,0,0,2169.9702 -1181,1432,2620,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,4,0,5.3061166,4.8053927,3,0,0,0,-9,0,-963.16711,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2134705,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,9,2,0,1501,139371.22,0,0,694.71704 -1182,1433,2621,-9,2624,2622,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.9967,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,363.75,449273.09,0,0,2538.8379 -1182,1433,2622,2624,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,9.0174208,8.9114647,5.5991778,2,0,-9,19,0,1,124.39745,0,0,0,46,1,3,1,2,2,2019,1,1,9,2,40,39,15,1,0,1,0,19.820793,19.820793,0,0,0,0,0,0,0,0,1,1,0,6.026794,0,0,0,56.860001,34.400002,49.279999,44.66,3,1,1,0,0,10,4,1,363.75,449273.09,0,0,2538.8379 -1182,1433,2623,-9,2624,2622,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.6792,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,363.75,449273.09,0,0,2538.8379 -1182,1433,2624,2622,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,3,6.3583322,6.0638051,0,2,0,-9,19,0,-1,-43.880337,0,0,0,47,1,3,1,2,1,2019,1,2,15,4,10,10,15,1,1,1,0,7.0410767,7.0410767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,44.66,56.860001,34.400002,5,1,1,0,0,10,4,1,363.75,449273.09,0,0,2538.8379 -1183,1434,2625,2626,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,3,7.8791361,8.0427198,0,2,0,-9,10,0,-4,-12.76796,0,0,0,59,2,3,1,2,2,2019,1,1,11,0,38,37,15,1,0,1,0,9.7897263,9.7897263,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,47.75,53.700001,54.959999,53.169998,6,1,1,0,0,12,4,1,364.33334,688107.75,0,0,3431.0715 -1183,1434,2626,2625,-9,-9,1,1,1,59,1,0,1,0,2,-9,2,1,0,0,3,8.5609694,8.2864361,0,2,0,-9,10,0,4,5.533752,0,0,0,55,2,3,1,-9,3,2019,1,2,6,0,35,40,15,1,0,1,0,12.737084,12.737084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,47.75,53.700001,6,1,1,0,0,12,4,1,364.33334,688107.75,0,0,3431.0715 -1183,1434,2627,-9,2625,2626,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.50531,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,364.33334,688107.75,0,0,3431.0715 -1183,1435,2628,-9,2625,2626,3,1,1,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1016.3781,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,12,1,1,178,-72633.758,0,0,0 -1184,1436,2629,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,5,0,6.0224071,5.9102745,3,0,0,0,-9,0,-949.87543,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4758692,5.9949522,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,12,2,1,307,492973.97,0,0,132.35687 -1185,1437,2630,-9,2633,2631,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.8571,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,4,1,1265.25,37536.246,0,0,2308.5151 -1185,1437,2631,2633,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,8.4963465,8.2925453,0,2,0,-9,9,0,14,98.552094,0,0,0,31,1,4,1,3,3,2019,1,1,12,0,42,42,15,1,0,1,0,11.91497,11.91497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,43.200001,59.970001,5,1,1,0,0,12,4,1,1265.25,37536.246,0,0,2308.5151 -1185,1437,2632,-9,2633,2631,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.33228,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,1265.25,37536.246,0,0,2308.5151 -1185,1437,2633,2631,-9,-9,1,1,0,31,1,0,2,0,1,1,2,1,0,0,4,7.5280848,7.2215962,0,2,0,-9,9,0,-14,25.27276,-9,0,1,45,2,3,1,3,2,2019,1,2,11,0,18,0,15,1,0,1,0,11.748581,11.748581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,48.450001,57.490002,5,1,1,0,0,12,4,1,1265.25,37536.246,0,0,2308.5151 -1186,1438,2634,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,4.8825502,5.1946864,3,0,0,0,-9,0,-995.81281,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1627784,4.9401631,0,0,58.98,29.700001,-9,-9,5,1,1,0,0,9,2,0,342,57606.832,0,0,704.08002 -1187,1439,2635,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,4,0,3.833833,4.0701265,3,0,0,0,-9,0,-1024.0852,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0071559,3.8744178,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,1,2,0,383,130561.98,0,0,693.55402 -1188,1440,2636,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,4,3,0,0,3,7.1147246,6.7072158,0,3,0,0,0,-9,0,-1063.9425,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,4,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.080002,55.330002,-9,-9,4,1,1,0,0,9,2,1,654,655461.38,0,0,-820.52643 -1188,1441,2637,-9,-9,2636,2,1,1,28,2,0,0,0,1,1,2,1,0,0,4,6.4119134,5.9481134,0,3,0,0,0,-9,0,-981.47974,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,15,0,15,1,0,-9,1,3.5252597,3.5252597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.869999,59.150002,-9,-9,6,1,1,0,0,9,2,1,4487,4220.2886,0,0,417.4953 -1189,1442,2638,2640,-9,-9,1,1,1,61,1,0,1,0,1,-9,2,1,0,0,4,9.1186371,9.7376432,8.1107693,2,0,-9,24,0,12,-20.202179,0,0,0,49,2,1,1,-9,-9,2019,1,2,11,0,38,43,15,1,0,1,0,29.132248,29.132248,0,0,0,0,0,0,0,0,0,0,0,0,8.5836601,0,0,51.830002,57.200001,60.27,17.459999,5,1,1,0,0,8,5,1,524,1800190.4,0,0,5596.2036 -1189,1442,2639,-9,2640,2638,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-876.39276,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,524,1800190.4,0,0,5596.2036 -1189,1442,2640,2638,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,1,8.5798836,8.5855551,0,2,0,-9,7,0,-12,49.810345,0,0,0,61,1,4,1,2,3,2019,1,1,8,0,43,42,15,1,0,1,0,20.000362,20.000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.27,17.459999,51.830002,57.200001,4,2,3,0,1,8,5,1,524,1800190.4,0,0,5596.2036 -1190,1443,2641,2642,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,8.5894051,8.6776848,0,1,0,-9,40,0,1,-37.880157,0,0,0,59,2,2,1,2,3,2019,1,2,9,0,50,50,15,1,0,1,0,16.298353,16.298353,0,0,0,0,0,0,0,2,0,0,0,3.7029204,0,0,3,54.369999,44.27,52.869999,40.77,6,1,1,0,0,2,5,1,1990.5,2864423.5,0,0,3494.3049 -1190,1443,2642,2641,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.7545786,8.0139341,0,1,0,-9,40,0,-1,195.80559,0,0,0,60,2,2,1,2,2,2019,1,1,11,0,43,42,15,1,0,1,0,8.7845507,8.7845507,0,0,0,0,0,0,0,14.5,0,0,0,2.0000722,0,10.944069,3,52.869999,40.77,54.369999,44.27,7,1,1,0,0,2,5,1,1990.5,2864423.5,0,0,3494.3049 -1191,1444,2643,2644,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.3615813,6.5942688,1,0,-9,20,0,-1,110.16449,0,0,0,71,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2634234,6.5674176,0,0,51.310001,45.18,47.43,25.790001,4,1,1,0,0,9,2,1,802,3230188,0,0,2171.0269 -1191,1444,2644,2643,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.1014762,5.8560429,1,0,-9,20,0,1,5.1260633,0,0,0,70,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,44.500175,2.5676916,4.2086916,0,0,0,1,1,0,0,5.8948498,0,0,47.43,25.790001,51.310001,45.18,4,1,1,0,0,9,2,1,802,3230188,0,0,2171.0269 -1192,1445,2645,2646,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,55,0,-7,-182.14862,0,0,0,81,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,123.1168,0,0,0,0,0,1,1,0,0,0,0,0,43.799999,27.68,47,40.200001,4,1,1,0,0,5,2,1,526,233347,0,0,2465.4197 -1192,1445,2646,2645,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,7.4410729,7.3294101,1,0,-9,56,0,7,23.495661,0,0,0,74,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.487076,7.362699,125.45344,1,47,40.200001,43.799999,27.68,6,1,1,0,0,5,2,1,526,233347,0,0,2465.4197 -1193,1446,2647,2648,-9,-9,2,1,1,58,1,0,0,0,3,-9,1,1,0,0,3,8.213522,8.222374,0,1,0,-9,5,0,2,17.186476,0,0,0,56,1,4,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,9.7800999,9.7800999,0,0,0,0,0,0,0,0,0,0,0,8.1215048,0,0,0,56.189999,36.029999,57.16,56.150002,4,1,1,0,0,10,5,0,582.5,2264381.3,0,0,50471.813 -1193,1446,2648,2647,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,0,4,9.5302114,9.8033676,0,1,0,-9,5,0,-2,-48.827717,0,0,0,58,3,3,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,41.279549,41.279549,0,0,0,0,0,0,0,5.48,0,0,0,6.2027545,0,0,2,57.16,56.150002,56.189999,36.029999,5,1,1,0,0,10,5,0,582.5,2264381.3,0,0,50471.813 -1194,1447,2649,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,3,0,5.4948826,4.998229,3,0,0,0,-9,0,-938.48462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.0466599,5.2650914,0,0,60.619999,41.029999,-9,-9,6,1,1,0,0,6,2,1,1231,-20766.855,0,0,1041.7504 -1195,1448,2650,-9,2652,2651,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1091.9351,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,8,4,1,476.33334,340537.66,0,0,2830.606 -1195,1448,2651,2652,-9,-9,1,1,1,57,1,0,2,0,1,-9,2,1,0,0,4,8.9837875,9.3099709,0,2,0,-9,20,-9,7,103.34674,-9,0,0,50,1,2,3,2,2,2019,2,2,3,0,51,0,15,1,0,3,0,17.745424,17.745424,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.459999,53.68,48.369999,25.379999,5,1,1,0,0,8,4,1,476.33334,340537.66,0,0,2830.606 -1195,1448,2652,2651,-9,-9,2,1,0,50,1,0,2,0,1,-9,3,3,0,0,2,0,0,0,2,0,-9,20,-9,-7,-25.090059,-9,0,0,57,1,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.369999,25.379999,50.459999,53.68,6,4,2,1,0,8,4,1,476.33334,340537.66,0,0,2830.606 -1195,1449,2653,-9,2652,2651,3,1,1,18,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-1010.9907,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.720001,48.619999,-9,-9,6,4,2,0,0,8,4,1,45,0,0,0,0 -1196,1450,2654,2655,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.2356491,6.7812462,1,0,-9,47,0,-2,-42.609741,0,0,0,68,3,4,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.6317883,7.066947,41.56057,3,57.16,56.150002,60.700001,47.650002,6,1,1,0,0,10,3,1,411.5,961245.88,0,0,2788.4182 -1196,1450,2655,2654,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,7.7423096,7.7143111,1,0,-9,47,0,2,24.504251,0,0,0,66,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5052285,7.807261,0,0,60.700001,47.650002,57.16,56.150002,6,1,1,0,0,10,3,1,411.5,961245.88,0,0,2788.4182 -1197,1451,2656,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1068.0288,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,.034925915,0,0,0,0,1,1,0,0,0,0,0,48.439999,48.09,-9,-9,6,1,1,0,0,13,1,0,529,31959.172,0,0,-56.225979 -1198,1452,2657,2658,-9,-9,1,1,1,53,1,0,3,0,2,-9,2,1,0,0,3,8.0447931,7.8559346,0,2,0,-9,6,0,3,-2.5617995,0,0,0,50,3,4,1,3,3,2019,1,2,10,0,48,42,15,1,0,1,0,6.894948,6.894948,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,51,54,4,1,1,0,0,13,2,1,1370.5,1083367.4,0,0,2811.0715 -1198,1452,2658,2657,-9,-9,2,1,0,50,1,0,3,0,3,-9,2,1,0,0,4,6.494453,6.3209639,0,2,0,-9,6,0,-3,60.889648,-9,0,0,53,2,3,1,3,3,2019,1,1,10,1,6,0,15,1,0,1,0,14.092275,14.092275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,52,54.509998,6,1,1,0,0,13,2,1,1370.5,1083367.4,0,0,2811.0715 -1199,1453,2659,2660,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,47,0,-1,-10.993333,0,0,0,69,1,3,3,3,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,0,70.283775,3,38.349998,57.700001,57.330002,53.459999,6,1,1,0,0,9,3,1,375.5,1222040.5,0,0,1722.8843 -1199,1453,2660,2659,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.7648144,7.9562082,1,0,-9,47,0,1,-7.1414485,0,0,0,68,2,4,3,2,2,2019,4,2,6,0,0,50,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.7679191,7.8961835,38.387508,3,57.330002,53.459999,38.349998,57.700001,6,1,1,0,0,9,3,1,375.5,1222040.5,0,0,1722.8843 -1200,1454,2661,2662,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,0,5,0,5.5633721,5.5941339,1,0,-9,33,0,-10,75.196739,0,0,0,72,1,5,3,-9,-9,2019,4,2,20,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3278766,0,7.6861038,3,35.810001,64.809998,54.099998,59.110001,6,1,1,0,0,13,3,1,722,878186.38,0,0,1446.9136 -1200,1454,2662,2661,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,5,0,7.4620156,8.0785189,1,0,-9,33,0,10,-31.777292,0,0,0,62,1,5,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8795652,11.673143,3,54.099998,59.110001,35.810001,64.809998,6,1,1,0,0,13,3,1,722,878186.38,0,0,1446.9136 -1201,1455,2663,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-910.01062,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.815552,3,58.389999,44.540001,-9,-9,7,1,1,0,0,13,1,0,339,-152900.41,0,0,1736.0764 -1202,1456,2664,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,1,1,0,0,4,7.3923635,7.4478259,0,3,0,0,0,-9,0,-1022.2623,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,60,46,15,1,0,-9,0,2.5451694,2.5451694,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.281291,3,52.82,53.970001,-9,-9,6,1,1,0,0,12,3,1,127,120663.07,0,0,-304.52075 -1203,1457,2665,-9,-9,-9,1,1,1,78,2,0,0,0,2,-9,4,3,0,0,3,0,7.3223758,7.8461685,3,0,0,0,-9,0,-893.65125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,3.8082297,7.5749359,27.291552,3,57.27,35.610001,-9,-9,5,1,1,0,0,9,3,1,1170,568239.25,0,0,1324.7434 -1204,1458,2666,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,4,8.243763,7.9707794,0,3,0,0,0,-9,0,-961.87549,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,24,12,38,37,15,1,1,-9,0,11.3925,11.3925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.830002,60.290001,-9,-9,3,1,1,0,0,6,4,1,815,-89566.953,0,0,1499.6331 -1205,1459,2667,2668,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,5.4560165,5.7665086,1,0,-9,9,0,8,17.516834,0,0,0,60,3,4,1,2,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7533107,5.6845717,0,0,60.119999,54.799999,58.150002,52.91,6,1,1,0,0,10,2,1,328.5,971023,0,0,1733.4019 -1205,1459,2668,2667,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,4,7.4253869,7.318665,5.4032984,1,0,-9,9,0,-8,13.384057,0,0,0,68,3,4,3,3,3,2019,2,2,6,0,36,40,15,1,0,4,0,4.2594504,4.2594504,0,0,0,0,0,0,0,0,1,1,0,5.3882823,5.8084159,0,0,58.150002,52.91,60.119999,54.799999,7,1,1,0,0,10,2,1,328.5,971023,0,0,1733.4019 -1206,1460,2669,-9,2673,2671,4,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.04858,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,5,0,921.40002,-72388.805,0,0,6298.3228 -1206,1460,2670,-9,2673,2671,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.52008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,5,0,921.40002,-72388.805,0,0,6298.3228 -1206,1460,2671,2673,-9,-9,2,1,1,37,1,1,3,0,2,-9,1,1,0,0,4,9.7218666,9.4904194,0,2,0,-9,9,0,0,4.3743672,0,0,0,37,2,2,1,3,3,2019,1,1,8,0,40,30,15,1,0,1,0,38.351543,38.351543,0,0,0,0,0,0,0,0,1,1,0,2.7593174,0,0,0,54.610001,47.860001,50.18,36.560001,6,1,1,0,0,1,5,0,921.40002,-72388.805,0,0,6298.3228 -1206,1460,2672,-9,2673,2671,3,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.4177,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,5,0,921.40002,-72388.805,0,0,6298.3228 -1206,1460,2673,2671,-9,-9,1,1,0,37,1,1,3,0,2,-9,2,1,0,0,2,6.8868356,7.1372743,0,2,0,-9,9,0,0,-64.344322,0,0,1,37,2,4,1,-9,-9,2019,1,2,10,0,20,20,15,1,0,1,0,6.432375,6.432375,0,0,0,0,0,0,0,0,1,1,0,.49415925,0,0,0,50.18,36.560001,54.610001,47.860001,6,1,1,0,0,1,5,0,921.40002,-72388.805,0,0,6298.3228 -1207,1461,2674,2675,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.121027,8.3765135,0,1,0,-9,30,0,-1,-117.73074,0,0,0,57,2,3,1,2,2,2019,1,2,12,1,42,37,15,1,0,1,0,11.145582,11.145582,0,0,0,0,0,0,0,0,0,0,0,8.2888098,0,0,0,38.630001,63.110001,36.09,52.470001,6,1,1,0,0,9,5,1,509,726169.19,0,0,3787.1992 -1207,1461,2675,2674,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,0,3,8.3524141,8.6103859,0,1,0,-9,30,0,1,-66.918564,0,0,0,56,2,4,1,2,2,2019,1,1,11,1,45,50,15,1,0,1,0,11.451715,11.451715,0,0,0,0,0,0,0,0,0,0,0,1.3327492,0,0,0,36.09,52.470001,38.630001,63.110001,6,1,1,0,0,9,5,1,509,726169.19,0,0,3787.1992 -1207,1462,2676,-9,2674,2675,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.250618,8.347558,0,3,0,0,0,-9,0,-1073.8159,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,65,60,15,1,0,-9,1,7.0472851,7.0472851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.77,56.48,-9,-9,6,1,1,0,0,9,4,1,843,84270.57,0,0,2598.3904 -1208,1463,2677,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,5,0,4.3507986,4.9588809,3,0,0,0,-9,0,-1179.1353,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2630501,0,0,0,53.389999,40.18,-9,-9,7,1,1,0,0,7,2,0,779,313933.09,0,0,1330.9785 -1209,1464,2678,-9,2679,-9,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1009.9491,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,343.66666,109.75977,0,0,849.87347 -1209,1464,2679,-9,-9,-9,2,1,0,26,2,0,2,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-911.82825,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,2,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.73,30.66,-9,-9,6,1,1,0,0,4,1,0,343.66666,109.75977,0,0,849.87347 -1209,1464,2680,-9,2679,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-960.85236,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,1,0,343.66666,109.75977,0,0,849.87347 -1209,1465,2681,-9,-9,-9,1,1,1,22,2,0,2,0,2,-9,2,1,0,0,4,8.4785681,8.1252632,0,4,0,0,0,-9,0,-967.03906,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,7,0,40,40,15,1,0,-9,0,11.634416,11.634416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,52.5,-9,-9,4,1,1,0,0,4,3,0,476,-8922.1621,0,0,2336.4387 -1210,1466,2682,-9,-9,-9,1,1,1,83,2,0,0,0,2,-9,4,3,0,0,2,0,6.8234835,7.1226454,3,0,0,0,-9,0,-964.67487,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1679463,0,3,49.77,39.619999,-9,-9,5,1,1,0,0,12,2,1,1432,287547.5,0,0,1587.6692 -1210,1467,2683,-9,-9,-9,2,1,1,90,2,0,0,0,2,-9,4,3,0,0,3,0,6.5765715,6.417922,3,0,0,0,-9,0,-1112.719,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,13.015597,0,0,1,1,0,0,6.8937802,0,0,36.57,42.830002,-9,-9,4,1,1,0,0,12,2,1,141,99463.586,0,0,2166.6558 -1210,1468,2684,-9,-9,-9,3,1,0,85,2,0,0,0,3,-9,4,3,0,0,1,0,6.8912215,7.3117685,3,0,0,0,-9,0,-1089.4447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.9820514,12.493217,3,39.560001,34.970001,-9,-9,3,1,1,0,0,12,2,1,785,348243.44,0,0,1507.0784 -1211,1469,2685,2686,-9,-9,1,1,0,64,1,0,0,0,1,-9,2,1,0,0,5,8.8677378,9.0949612,7.3903918,1,0,-9,47,0,-1,-6.7656288,0,0,0,65,1,4,1,3,2,2019,1,2,3,0,25,20,15,1,0,1,0,21.557926,21.557926,0,0,0,0,0,0,0,0,0,0,0,.68183661,7.9546652,0,0,48.77,60.16,55.790001,52.619999,6,1,1,0,0,10,5,1,294,2653476.3,0,0,4194.9912 -1211,1469,2686,2685,-9,-9,2,1,1,65,1,0,0,0,1,-9,2,1,0,0,4,7.5672622,7.7328,0,1,0,-9,47,0,1,72.622154,0,0,0,64,1,5,1,3,2,2019,1,1,10,0,21,21,15,1,0,1,0,8.9603567,8.9603567,0,0,0,0,0,0,0,0,0,0,0,5.2326951,0,0,0,55.790001,52.619999,48.77,60.16,6,1,1,0,0,10,5,1,294,2653476.3,0,0,4194.9912 -1212,1470,2687,2688,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,7.5104804,7.5226254,0,2,0,-9,19,0,5,-63.934864,0,0,0,41,1,2,1,2,2,2019,1,2,9,1,18,18,15,1,0,1,0,11.778625,11.778625,0,0,0,0,0,0,0,0,0,0,0,7.3810129,0,0,0,54.200001,57.490002,22.889999,60.290001,6,1,1,0,0,9,5,1,1187.3334,1415073.8,0,0,4707.0635 -1212,1470,2688,2687,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,2,9.1253109,9.1541376,0,2,0,-9,19,0,-5,-99.606949,0,0,0,46,2,4,1,2,2,2019,1,1,24,12,50,45,15,1,1,1,0,18.736036,18.736036,0,0,0,0,0,0,0,0,0,0,0,4.1211934,0,0,0,22.889999,60.290001,54.200001,57.490002,3,1,1,0,0,9,5,1,1187.3334,1415073.8,0,0,4707.0635 -1212,1470,2689,-9,2687,2688,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.13953,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1187.3334,1415073.8,0,0,4707.0635 -1213,1471,2690,-9,2691,2693,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.93573,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,1,2087.5,178585.52,0,0,1738.7494 -1213,1471,2691,2693,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,7.5206881,7.5622659,0,2,0,-9,12,0,-19,-17.910547,0,0,1,54,2,4,1,3,3,2019,1,2,14,2,30,30,15,1,0,1,0,6.2922907,6.2922907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.950001,61.299999,54,54,6,1,1,0,0,5,3,1,2087.5,178585.52,0,0,1738.7494 -1213,1471,2692,-9,2691,2693,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.23633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,1,2087.5,178585.52,0,0,1738.7494 -1213,1471,2693,2691,-9,-9,2,1,1,54,1,0,2,0,2,-9,2,1,0,0,4,7.0799103,7.255991,0,2,0,-9,6,0,19,-64.934685,0,0,0,35,2,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,3.7205567,3.7205567,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,33.950001,61.299999,6,1,1,0,0,5,3,1,2087.5,178585.52,0,0,1738.7494 -1214,1472,2694,2696,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,0,4,7.7065868,7.5568614,5.7115006,2,0,-9,2,0,-3,-94.560707,0,0,1,33,2,3,1,-9,-9,2019,1,1,9,0,15,21,15,1,0,1,0,16.840052,16.840052,0,0,0,0,0,0,0,0,1,1,0,5.7186322,0,0,0,54.790001,55.860001,53.779999,56.439999,7,1,1,0,0,10,4,1,885.75,-26945.08,0,0,2937.0286 -1214,1472,2695,-9,2694,2696,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1145.574,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,885.75,-26945.08,0,0,2937.0286 -1214,1472,2696,2694,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,0,3,8.3806391,8.444623,0,2,0,-9,2,0,3,-70.178177,0,0,0,30,2,4,1,2,2,2019,1,2,6,0,50,52,15,1,0,1,0,10.514648,10.514648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.779999,56.439999,54.790001,55.860001,6,1,1,0,0,10,4,1,885.75,-26945.08,0,0,2937.0286 -1214,1472,2697,-9,2694,2696,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.49109,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,885.75,-26945.08,0,0,2937.0286 -1215,1473,2698,2699,-9,-9,2,1,0,36,1,0,2,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,13,0,-4,26.444088,0,0,1,40,1,2,1,2,2,2019,3,1,8,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.3017,3,50.34,56.400002,36.900002,47.09,5,2,3,0,0,7,2,1,564.75,253082.78,0,0,1650.9144 -1215,1473,2699,2698,-9,-9,1,1,1,40,1,0,2,0,1,-9,1,1,0,0,2,7.39886,7.559741,0,2,0,-9,13,0,4,3.002058,0,0,0,36,2,4,3,2,2,2019,2,2,17,4,0,39,15,1,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.5762563,3,36.900002,47.09,50.34,56.400002,4,2,3,0,0,7,2,1,564.75,253082.78,0,0,1650.9144 -1215,1473,2700,-9,2698,2699,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.2383,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,7,2,1,564.75,253082.78,0,0,1650.9144 -1215,1473,2701,-9,2698,2699,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.96313,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,2,1,564.75,253082.78,0,0,1650.9144 -1216,1474,2702,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,6.4889321,6.7342672,3,0,0,0,-9,0,-1022.5543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,.3135545,0,0,0,7,1,1,0,2.7539959,6.2691064,0,3,39.73,37.290001,-9,-9,3,1,1,0,1,13,2,1,115,78520.063,0,0,-124.88719 -1216,1475,2703,-9,2702,-9,2,1,1,50,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1084.3331,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.630001,38.950001,-9,-9,5,1,1,0,0,13,1,1,672,-91696.141,0,0,115.26079 -1216,1476,2704,-9,2702,-9,3,1,0,48,2,0,0,0,2,-9,2,1,0,1,1,7.3068748,7.5901012,0,3,0,0,0,-9,0,-1056.6813,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,31,12,27,27,15,1,1,-9,1,7.0217772,7.0217772,0,0,0,0,0,0,0,7,1,1,0,0,0,5.626946,3,30.530001,36.5,-9,-9,2,1,1,0,1,13,3,1,242,-83376.563,0,0,1682.993 -1217,1477,2705,-9,2706,2707,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1125.2633,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,594,931143.5,0,0,4017.1541 -1217,1477,2706,2707,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,0,3,8.1523113,8.1847668,0,2,0,-9,9,0,0,-111.00892,0,0,1,38,1,3,1,2,2,2019,1,1,15,5,21,21,15,1,1,1,0,15.993101,15.993101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.459999,55.18,41.34,56.619999,6,1,1,0,0,9,5,1,594,931143.5,0,0,4017.1541 -1217,1477,2707,2706,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,0,3,9.2353487,9.0821981,0,2,0,-9,9,0,0,17.283354,0,0,0,38,1,3,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,20.591473,20.591473,0,0,0,0,0,0,0,0,1,1,0,4.5548201,0,0,0,41.34,56.619999,36.459999,55.18,5,1,1,0,0,9,5,1,594,931143.5,0,0,4017.1541 -1217,1477,2708,-9,2706,2707,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.65991,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,594,931143.5,0,0,4017.1541 -1218,1478,2709,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,8.0680799,7.8235693,0,3,0,-9,0,-9,0,-954.5683,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,0,15,1,0,-9,0,8.6757603,8.6757603,0,0,0,0,0,0,0,0,1,1,0,4.4100952,0,0,0,47.619999,38.59,-9,-9,6,1,1,0,0,12,4,1,1034,287881.22,0,0,-159.62706 -1219,1479,2710,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,1,1,0,0,4,6.8492837,7.9968977,6.9127851,3,0,0,0,-9,0,-1060.9446,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,9,10,15,1,0,-9,0,13.928391,13.928391,0,0,0,0,0,0,0,0,0,0,0,1.8830615,6.3822179,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,3,1,744,94674.016,0,0,256.37723 -1220,1480,2711,2713,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,0,4,8.5162973,8.6861229,0,2,0,-9,6,-9,2,67.604416,-9,0,0,34,1,5,1,2,2,2019,1,2,10,1,45,0,15,1,0,1,0,13.326024,13.326024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48.77,60.16,5,1,1,0,0,9,4,1,572.5,254653.03,0,0,3950.5295 -1220,1480,2712,-9,2713,2711,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1038.1569,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,572.5,254653.03,0,0,3950.5295 -1220,1480,2713,2711,-9,-9,2,1,0,34,1,1,2,0,1,-9,5,1,0,0,5,8.49051,8.5482759,0,2,0,-9,6,-9,-2,34.770889,-9,0,1,36,2,4,1,2,2,2019,1,1,12,1,34,0,15,1,0,1,0,24.239506,24.239506,0,0,0,0,0,0,0,0,1,1,0,3.1390424,0,0,0,48.77,60.16,51,56,6,1,1,0,0,9,4,1,572.5,254653.03,0,0,3950.5295 -1220,1480,2714,-9,2713,2711,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1080.7014,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,4,1,572.5,254653.03,0,0,3950.5295 -1221,1481,2715,2716,-9,-9,2,1,0,36,1,0,3,0,2,-9,8,3,1,1,1,6.0904632,6.0134845,0,2,0,-9,18,0,-5,-.75053358,0,0,1,41,2,3,1,3,3,2019,3,1,25,12,25,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.540001,34.209999,43.369999,57.279999,5,2,3,0,0,2,2,1,567,269450.03,0,0,2599.3887 -1221,1481,2716,2715,-9,-9,1,1,1,41,1,0,3,0,2,-9,1,1,0,0,3,7.8282018,7.8577971,0,2,0,-9,18,0,5,-70.008621,0,0,0,36,2,1,3,3,2,2019,2,2,11,0,24,0,15,1,0,3,0,10.730658,10.730658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.369999,57.279999,29.540001,34.209999,6,2,3,0,0,2,2,1,567,269450.03,0,0,2599.3887 -1221,1481,2717,-9,2715,2716,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.5981,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,2,2,1,567,269450.03,0,0,2599.3887 -1222,1482,2718,-9,2721,2719,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-991.99695,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,12,4,0,1262.25,293520.06,0,0,4899.3506 -1222,1482,2719,2721,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,1,4,9.0600348,9.0036116,0,2,0,-9,20,0,8,4.5447083,0,0,0,37,2,5,1,2,2,2019,1,2,12,2,91,60,15,1,0,1,0,8.4151249,8.4151249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.049999,55.41,57.709999,54.889999,6,1,1,0,0,12,4,0,1262.25,293520.06,0,0,4899.3506 -1222,1482,2720,-9,2721,2719,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.17151,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,12,4,0,1262.25,293520.06,0,0,4899.3506 -1222,1482,2721,2719,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,0,5,8.1685181,8.0412645,0,2,0,-9,19,0,-8,39.658291,0,0,1,45,2,4,1,2,2,2019,1,1,9,0,31,10,15,1,0,1,0,14.334907,14.334907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.709999,54.889999,50.049999,55.41,6,1,1,0,0,12,4,0,1262.25,293520.06,0,0,4899.3506 -1223,1483,2722,-9,2724,2725,2,1,1,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-906.09705,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.9,61.619999,-9,-9,3,1,1,0,0,12,4,0,502,231158.02,0,0,3589.7307 -1223,1483,2723,-9,2724,2725,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1141.4305,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,0,502,231158.02,0,0,3589.7307 -1223,1483,2724,2725,-9,-9,1,1,0,43,1,0,2,0,2,-9,97,3,0,1,1,7.1082006,7.6368985,5.9605126,2,0,-9,8,0,6,-69.817703,0,0,1,37,2,3,1,3,-9,2019,3,4,36,12,13,14,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.259429,0,14.502204,3,23.66,26.059999,51.169998,49.389999,1,1,1,0,1,12,4,0,502,231158.02,0,0,3589.7307 -1223,1483,2725,2724,-9,-9,4,1,1,37,1,0,2,0,2,-9,1,1,0,0,3,8.7034693,8.9509506,0,2,0,-9,8,0,-6,-16.136358,0,0,0,43,2,1,3,-9,-9,2019,2,1,11,0,60,60,15,1,0,3,0,11.545139,11.545139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.169998,49.389999,23.66,26.059999,4,1,1,0,1,12,4,0,502,231158.02,0,0,3589.7307 -1224,1484,2726,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1011.2004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,5,0,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.610001,26.530001,-9,-9,6,3,4,1,1,8,1,0,1556,-96145.289,0,0,884.04913 -1224,1485,2727,-9,2726,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,7.803988,7.8172073,0,3,0,0,0,-9,0,-860.87207,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,15,16,15,1,0,-9,1,19.046383,19.046383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.07,46.290001,-9,-9,6,3,4,0,0,8,3,0,302,14145.541,0,0,287.64386 -1224,1486,2728,-9,2726,-9,3,1,1,19,2,0,0,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-998.48303,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.919998,36.740002,-9,-9,5,3,4,1,0,8,1,0,639,-30540.201,0,0,372.68317 -1225,1487,2729,2730,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.2481465,6.0111666,1,0,-9,9,0,1,42.449772,0,0,0,69,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4937258,6.2588973,0,0,43.91,55.389999,52,48,6,1,1,0,0,9,2,1,1001.5,529232.88,0,0,2885.8521 -1225,1487,2730,2729,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-1,-49.981182,0,0,0,70,2,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0824623,0,0,0,52,48,43.91,55.389999,5,4,1,0,0,9,2,1,1001.5,529232.88,0,0,2885.8521 -1226,1488,2731,2733,-9,-9,2,1,0,37,1,0,1,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,3,0,0,50.220329,0,0,1,37,1,3,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.7918553,3,55.23,46.150002,35.360001,56.720001,6,1,1,0,0,11,3,1,520.33331,232021.77,0,0,2311.5835 -1226,1488,2732,-9,2731,2733,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-990.12921,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,-9,-9,5,1,1,0,0,11,3,1,520.33331,232021.77,0,0,2311.5835 -1226,1488,2733,2731,-9,-9,1,1,1,37,1,0,1,0,1,-9,2,1,0,0,3,8.3925838,8.2929516,0,2,0,-9,3,0,0,-83.698212,0,0,0,37,3,3,3,2,2,2019,2,2,12,0,37,37,15,1,0,3,0,12.031203,12.031203,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.345807,3,35.360001,56.720001,55.23,46.150002,6,1,1,0,0,11,3,1,520.33331,232021.77,0,0,2311.5835 -1227,1489,2734,2735,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,2,0,-3,0,0,0,0,86,3,2,3,-9,-9,2019,4,1,21,8,0,0,15,4,1,4,0,0,0,1,0,0,0,12.807677,0,0,0,1,1,0,0,0,0,0,46.77,17.98,39.389999,37.66,4,2,3,0,0,2,1,1,425.5,121803.56,0,0,1737.3788 -1227,1489,2735,2734,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,2,0,3,0,0,0,0,83,3,1,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,37.66,46.77,17.98,3,2,3,0,0,2,1,1,425.5,121803.56,0,0,1737.3788 -1228,1490,2736,2738,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,2,6.7032189,6.8939204,0,2,0,-9,8,0,-3,-63.900921,0,0,1,46,2,3,1,-9,-9,2019,1,1,16,4,16,20,15,1,1,1,0,7.3761859,7.3761859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.080002,47.889999,49.040001,55.860001,5,1,1,0,0,12,4,1,683.33331,259899.11,0,0,2055.0681 -1228,1490,2737,-9,2736,2738,4,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.4113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,683.33331,259899.11,0,0,2055.0681 -1228,1490,2738,2736,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,8.4933424,8.487504,0,2,0,-9,8,0,3,-3.7286963,0,0,0,43,2,2,1,-9,-9,2019,1,2,10,1,44,44,15,1,0,1,0,10.073074,10.073074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,32.080002,47.889999,5,1,1,0,0,12,4,1,683.33331,259899.11,0,0,2055.0681 -1229,1491,2739,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,4,0,8.3119135,8.1989489,3,0,0,0,-9,0,-1085.8717,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6479259,8.1721144,0,0,62.25,48.330002,-9,-9,7,1,1,0,0,9,4,1,1127,1134510.8,0,0,4702.8984 -1230,1492,2740,2741,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,5,5.7632394,6.9981976,6.8045278,1,0,-9,10,0,6,3.0350788,0,0,0,62,1,3,3,-9,-9,2019,2,1,10,0,2,3,15,1,0,3,0,22.10602,22.10602,0,0,0,0,0,0,0,0,1,1,0,7.2136889,6.7215066,0,0,54.099998,59.110001,35.450001,54.009998,6,1,1,0,0,11,3,1,359,570238.38,0,0,4305.4185 -1230,1492,2741,2740,-9,-9,1,1,0,62,1,0,0,0,1,-9,3,3,0,0,3,0,7.5155182,7.3513484,1,0,-9,10,0,-6,-12.496223,0,0,0,68,1,5,1,2,1,2019,3,2,17,6,0,38,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.695519,7.5511651,0,0,35.450001,54.009998,54.099998,59.110001,3,1,1,1,0,11,3,1,359,570238.38,0,0,4305.4185 -1231,1493,2742,2744,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,2,7.1742692,7.5444384,6.754281,2,0,-9,33,0,4,60.724678,0,0,0,51,2,2,1,-9,-9,2019,1,1,7,0,55,40,15,1,0,1,0,2.8086953,2.8086953,0,0,0,0,0,0,0,0,1,1,0,3.9043958,6.5593762,0,0,60.380001,27.68,62.509998,39.169998,6,1,1,0,0,5,3,1,461,159961.83,0,0,2465.4253 -1231,1493,2743,-9,2744,2742,4,1,1,17,2,0,1,1,2,-9,7,2,0,0,3,4.5277796,4.8934059,0,2,0,0,0,-9,0,-965.62421,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.689999,53.27,-9,-9,3,1,1,0,0,5,3,1,461,159961.83,0,0,2465.4253 -1231,1493,2744,2742,2745,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,0,2,7.0399709,6.9749513,0,2,0,-9,33,0,-4,208.58145,0,0,0,55,2,2,1,2,2,2019,1,2,12,0,22,25,15,1,0,1,0,5.3193965,5.3193965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.509998,39.169998,60.380001,27.68,4,1,1,0,0,5,3,1,461,159961.83,0,0,2465.4253 -1231,1494,2745,-9,-9,-9,5,1,0,74,3,0,1,0,2,-9,4,3,0,0,3,0,6.8024907,6.3295846,4,0,0,0,-9,0,-933.16321,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.795403,0,0,44.419998,52.34,-9,-9,6,1,1,0,0,5,2,1,1321,6434.3223,0,0,789.89093 -1232,1495,2746,2748,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.8067636,8.520895,0,2,0,-9,8,0,7,105.85033,0,0,0,38,1,4,1,2,2,2019,1,2,9,0,37,38,15,1,0,1,0,20.215843,20.215843,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.779999,55.169998,6,1,1,0,0,11,5,1,333,1634488.8,0,0,3979.239 -1232,1495,2747,-9,2748,2746,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.8484,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,5,1,333,1634488.8,0,0,3979.239 -1232,1495,2748,2746,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.5329742,8.3095875,0,2,0,-9,8,0,-7,-66.393349,0,0,1,45,2,4,1,-9,-9,2019,1,1,5,0,37,40,15,1,0,1,0,14.52746,14.52746,0,0,0,0,0,0,0,0,1,1,0,.66901803,0,0,0,59.779999,55.169998,57.16,56.150002,6,1,1,0,0,11,5,1,333,1634488.8,0,0,3979.239 -1233,1496,2749,2750,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.9878039,8.2026863,0,1,0,-9,7,0,3,80.978577,0,0,0,53,2,5,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,10.720958,10.720958,0,0,0,0,0,0,0,7,0,0,0,1.3869107,0,5.9708543,3,57.790001,35.560001,62.389999,56.709999,6,1,1,0,0,2,4,1,881,417143.81,0,0,2493.0071 -1233,1496,2750,2749,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.0803528,7.9154668,0,1,0,-9,36,0,-3,70.709961,0,0,0,56,2,3,1,2,2,2019,1,2,5,0,44,44,15,1,0,1,0,7.8690157,7.8690157,0,0,0,0,0,0,0,0,0,0,0,3.5565779,0,0,0,62.389999,56.709999,57.790001,35.560001,7,1,1,0,0,2,4,1,881,417143.81,0,0,2493.0071 -1233,1497,2751,-9,2749,2750,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,8.1677866,8.1191473,0,3,0,0,0,-9,0,-922.94324,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,45,60,15,1,0,-9,1,8.7464342,8.7464342,0,0,0,0,0,0,0,0,0,0,0,3.1030028,0,0,0,56.529999,42.779999,-9,-9,6,1,1,0,0,2,4,1,308,80386.875,0,0,1621.8436 -1234,1498,2752,2753,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,26,0,-3,62.037273,0,0,0,70,2,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.330002,53.709999,58.02,42.119999,6,1,1,0,0,2,2,1,605,362929.78,0,0,1064.4838 -1234,1498,2753,2752,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.0011106,7.2401252,1,0,-9,26,0,3,.21885379,0,0,0,67,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2089195,0,0,58.02,42.119999,53.330002,53.709999,6,1,1,0,0,2,2,1,605,362929.78,0,0,1064.4838 -1235,1499,2754,-9,2755,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1046.2522,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,3,1,479.25,166898.47,0,0,2958.2192 -1235,1499,2755,-9,-9,-9,1,1,0,36,2,0,3,0,2,-9,2,1,0,0,5,8.4636402,8.4205856,6.9584937,4,0,0,0,-9,0,-1012.0334,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,30,30,15,1,0,-9,0,17.48242,17.48242,0,0,0,0,0,0,0,0,1,1,0,7.7540226,0,0,0,49.360001,58.529999,-9,-9,6,1,1,0,0,12,3,1,479.25,166898.47,0,0,2958.2192 -1235,1499,2756,-9,2755,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-904.6203,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,1,479.25,166898.47,0,0,2958.2192 -1235,1499,2757,-9,2755,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,0,5,6.9513216,6.6674013,0,4,0,0,0,-9,0,-1054.5569,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3225858,0,0,0,37.419998,63,-9,-9,4,1,1,0,1,12,3,1,479.25,166898.47,0,0,2958.2192 -1236,1500,2758,2759,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.1853609,8.4073963,0,2,0,-9,22,0,8,-48.96896,0,0,0,44,2,5,1,3,2,2019,1,1,9,1,40,40,15,1,0,1,0,10.830009,10.830009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51.139999,60.450001,6,1,1,0,0,2,4,1,774,748839.13,0,0,3619.6831 -1236,1500,2759,2758,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,5,8.5825872,8.530345,0,2,0,-9,22,0,-8,-66.378761,0,0,1,52,2,4,1,2,3,2019,1,2,13,4,41,40,15,1,1,1,0,14.049592,14.049592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,54,54,6,1,1,0,0,2,4,1,774,748839.13,0,0,3619.6831 -1237,1501,2760,2763,-9,-9,1,1,0,43,1,1,2,0,2,-9,2,1,0,0,3,8.0361757,8.0686684,0,2,0,-9,8,0,3,-98.366211,0,0,1,40,1,4,1,2,2,2019,1,2,10,0,33,35,15,1,0,1,0,11.777105,11.777105,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.360001,58.259998,38.630001,63.110001,4,1,1,0,0,1,4,1,924.75,442456.38,0,0,3594.1724 -1237,1501,2761,-9,2760,2763,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.64563,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,4,1,924.75,442456.38,0,0,3594.1724 -1237,1501,2762,-9,2760,2763,3,1,0,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.78424,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,924.75,442456.38,0,0,3594.1724 -1237,1501,2763,2760,-9,-9,2,1,1,40,1,1,2,0,1,-9,2,1,0,0,4,8.3798971,8.1808949,0,2,0,-9,8,0,-3,53.882381,0,0,0,43,2,3,1,2,-9,2019,1,1,9,0,40,0,15,1,0,1,0,11.301453,11.301453,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.630001,63.110001,37.360001,58.259998,4,1,1,0,0,1,4,1,924.75,442456.38,0,0,3594.1724 -1238,1502,2764,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,6.6176686,6.7311039,3,0,0,0,-9,0,-1146.5452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.0177484,3.6144919,3,54.130001,45.34,-9,-9,6,1,1,0,0,9,2,0,350,400564.5,0,0,2189.3696 -1239,1503,2765,2766,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.5966644,7.8401895,1,0,-9,45,0,4,-61.90419,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4617271,7.6212549,0,0,59.529999,56.439999,51.240002,58.84,7,1,1,0,0,4,3,1,440.5,1010918.5,0,0,2244.8142 -1239,1503,2766,2765,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,6.9815588,7.468349,5.6297259,1,0,-9,45,0,-4,4.1840892,0,0,0,71,2,4,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1104836,5.2590628,0,0,51.240002,58.84,59.529999,56.439999,6,1,1,0,0,4,3,1,440.5,1010918.5,0,0,2244.8142 -1240,1504,2767,2768,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,6.7234683,6.6152554,0,2,0,-9,25,0,-3,-43.122704,0,0,0,52,2,4,1,-9,2,2019,1,2,10,0,16,17,15,1,0,1,0,6.0269613,6.0269613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,46.330002,54.32,6,1,1,0,0,7,4,1,647,432984.69,0,0,2162.417 -1240,1504,2768,2767,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.7623587,8.5486774,0,2,0,-9,25,0,3,-30.43671,0,0,0,49,2,4,1,-9,3,2019,1,1,21,10,45,48,15,1,1,1,0,15.591042,15.591042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.330002,54.32,51.830002,57.200001,5,1,1,0,0,7,4,1,647,432984.69,0,0,2162.417 -1240,1504,2769,-9,2767,2768,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-972.85248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,7,4,1,647,432984.69,0,0,2162.417 -1240,1505,2770,-9,2767,2768,3,1,0,18,2,0,1,0,2,1,2,1,0,0,3,6.5474224,6.8608646,0,3,0,0,0,-9,0,-1095.0309,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,20,0,15,1,0,-9,1,5.0907059,5.0907059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.48,52.139999,-9,-9,6,1,1,0,0,7,2,1,68,11213.216,0,0,-64.044075 -1241,1506,2771,2772,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.4412756,8.5934687,0,1,0,-9,23,0,2,121.07904,0,0,0,42,2,3,1,2,2,2019,1,1,9,1,41,45,15,1,0,1,0,10.936687,10.936687,0,0,0,0,0,0,0,0,0,0,0,1.0287162,0,0,0,51.830002,57.200001,32.48,55.57,6,1,1,0,0,9,4,1,354,276076.06,0,0,2447.801 -1241,1506,2772,2771,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,0,3,7.8481417,7.4998279,0,1,0,-9,23,0,-2,1.4427294,0,0,1,44,2,4,1,2,2,2019,1,2,25,11,25,42,15,1,1,1,0,9.5563059,9.5563059,0,0,0,0,0,0,0,0,0,0,0,2.5801201,0,0,0,32.48,55.57,51.830002,57.200001,4,1,1,0,0,9,4,1,354,276076.06,0,0,2447.801 -1241,1507,2773,-9,2772,2771,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,6.9244246,6.8603635,0,3,0,0,0,-9,0,-1066.3628,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,20,8,15,1,0,-9,1,5.7690806,5.7690806,0,0,0,0,0,0,0,0,0,0,0,4.2281785,0,0,0,47,58,-9,-9,5,1,1,0,0,9,2,1,384,-99778.188,0,0,1120.7909 -1241,1508,2774,-9,2772,2771,4,1,0,18,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1015.2386,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,1,1,811,-110480.16,0,0,1285.2799 -1242,1509,2775,2776,-9,-9,1,1,0,49,1,0,1,0,3,-9,2,1,0,0,3,8.6032324,8.6904974,0,2,0,-9,16,0,3,13.365409,0,0,0,46,3,3,1,2,2,2019,1,2,6,0,49,49,15,1,0,1,0,16.89068,16.89068,0,0,0,0,0,0,0,0,1,1,0,1.0210354,0,0,0,44.709999,49.380001,43.599998,51.610001,2,2,3,0,0,10,5,1,1555.3334,267379.91,0,0,4571.7451 -1242,1509,2776,2775,-9,-9,2,1,1,46,1,0,1,0,3,-9,2,1,0,0,3,8.4079037,8.4356833,0,2,0,-9,16,0,-3,-60.96534,0,0,0,49,3,3,1,1,1,2019,1,1,11,0,48,0,15,1,0,1,0,7.8840518,7.8840518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,44.709999,49.380001,6,2,3,0,0,10,5,1,1555.3334,267379.91,0,0,4571.7451 -1242,1509,2777,-9,2775,2776,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.4425,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,10,5,1,1555.3334,267379.91,0,0,4571.7451 -1243,1510,2778,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,4.9593544,4.5221958,3,0,0,0,-9,0,-1060.8785,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.125699,4.6586246,0,0,50.509998,42.98,-9,-9,6,1,1,0,0,2,2,1,1380,-26146.887,0,0,1749.8723 -1243,1511,2779,-9,2778,-9,2,1,0,56,2,0,0,0,3,-9,2,1,0,0,4,7.7442651,7.6834307,0,3,0,0,0,-9,0,-925.76508,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,38,37,15,1,0,-9,1,6.8584867,6.8584867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.02,48.509998,-9,-9,7,1,1,0,0,2,3,1,755,506872.56,0,0,810.34082 -1244,1512,2780,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,0,4,8.0269814,8.1617832,0,3,0,0,0,-9,0,-975.17743,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,16,4,46,42,15,1,1,-9,0,7.3760076,7.3760076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.759998,55.720001,-9,-9,4,1,1,0,0,13,4,0,1250,136874.83,0,0,1898.8206 -1245,1513,2781,-9,2783,2782,2,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1056.3534,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.9544139,3,39.450001,54.689999,-9,-9,6,1,1,0,0,13,1,0,216,232.43388,0,0,397.05609 -1245,1514,2782,2783,-9,-9,3,1,1,50,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,10,0,0,0,0,40,2,1,3,-9,-9,2019,4,1,33,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.2975082,2,36.529999,15.84,44.919998,27.030001,1,1,1,0,0,13,1,0,1819,-2513.7148,0,0,2865.2366 -1245,1514,2783,2782,-9,-9,1,1,0,40,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,-10,0,0,0,1,50,3,1,3,3,3,2019,4,3,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.649397,2,44.919998,27.030001,36.529999,15.84,3,1,1,0,0,13,1,0,1819,-2513.7148,0,0,2865.2366 -1246,1515,2784,2785,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,7.19345,7.2684722,0,1,0,-9,9,0,-3,-123.88804,0,0,0,55,2,1,1,3,3,2019,1,1,12,0,5,23,15,1,0,1,0,25.972681,25.972681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.459999,41.619999,46.400002,34.689999,4,1,1,0,0,13,4,0,314,153040.13,0,0,1444.3262 -1246,1515,2785,2784,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,1,8.02458,8.0814743,0,1,0,-9,9,0,3,69.448051,0,0,0,52,2,2,1,3,3,2019,1,2,12,0,13,50,15,1,0,1,0,32.407272,32.407272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.400002,34.689999,42.459999,41.619999,4,1,1,0,0,13,4,0,314,153040.13,0,0,1444.3262 -1246,1516,2786,-9,2784,2785,3,1,0,33,2,0,0,0,1,-9,2,1,0,0,3,8.5980682,8.1298609,0,3,0,0,0,-9,0,-923.61523,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,36,15,1,0,-9,1,17.026945,17.026945,0,0,0,0,0,0,0,0,1,1,0,5.4079156,0,0,0,45.490002,58.84,-9,-9,6,1,1,0,0,13,5,0,1839,440306.13,0,0,1480.5254 -1246,1517,2787,-9,2784,2785,4,1,1,27,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1010.2786,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,-9,-9,5,1,1,1,0,13,1,0,227,113830.48,0,0,-1302.0756 -1247,1518,2788,2789,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.5618358,7.486495,0,1,0,-9,31,0,-7,20.550631,0,0,0,64,2,4,3,-9,-9,2019,2,2,16,4,30,32,15,1,1,3,0,7.4593291,7.4593291,0,0,0,0,0,0,0,14.5,1,1,0,3.0627401,0,17.529831,3,50.5,40.009998,37.52,61.389999,6,1,1,0,0,11,2,1,800.5,893096.25,0,0,1116.4546 -1247,1518,2789,2788,-9,-9,2,1,1,64,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,3,0,7,-101.13058,0,0,0,57,2,4,1,-9,-9,2019,3,1,12,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1848154,0,0,0,37.52,61.389999,50.5,40.009998,4,1,1,1,0,11,2,1,800.5,893096.25,0,0,1116.4546 -1248,1519,2790,2791,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,0,3,8.7291279,8.7094908,0,1,0,-9,7,0,3,-56.946754,0,0,0,35,1,3,1,-9,-9,2019,1,1,9,0,37,40,15,1,0,1,0,16.306087,16.306087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.599998,47.060001,49.040001,55.860001,6,1,1,0,0,10,5,1,1249.5,123144.39,0,0,3728.6357 -1248,1519,2791,2790,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,3,8.2450047,8.2172585,0,1,0,-9,7,0,-3,131.21097,0,0,1,38,2,3,1,-9,-9,2019,1,2,11,0,35,37,15,1,0,1,0,11.401094,11.401094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,56.599998,47.060001,6,1,1,0,0,10,5,1,1249.5,123144.39,0,0,3728.6357 -1249,1520,2792,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,3,3,0,1,4,0,0,0,4,0,0,0,-9,0,-975.2627,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.981766,3,54.450001,56.220001,-9,-9,5,1,1,1,0,13,1,0,1275.3334,133164.84,0,0,1746.61 -1249,1520,2793,-9,2792,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-977.13959,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,1275.3334,133164.84,0,0,1746.61 -1249,1520,2794,-9,2792,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1101.4569,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,1,0,1275.3334,133164.84,0,0,1746.61 -1250,1521,2795,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,2,1,0,0,3,6.9465146,6.963707,5.0409222,3,0,0,0,-9,0,-991.84119,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,12,24,15,1,0,-9,0,8.7098827,8.7098827,0,0,0,0,0,0,0,0,1,1,0,4.8554487,4.8199277,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,10,2,1,267,702743.31,0,0,2176.0071 -1251,1522,2796,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,4.5979295,4.3746214,3,0,-9,0,-9,0,-906.09271,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.989946,4.5795741,0,0,52,46,-9,-9,6,1,1,0,0,12,1,1,438,347473.59,0,0,1170.0038 -1252,1523,2797,2798,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,48,0,1,-4.0510154,0,0,0,70,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6308148,0,0,0,54.040001,47.889999,68.550003,33.32,6,1,1,0,0,9,4,1,757,802151.88,0,0,6130.8701 -1252,1523,2798,2797,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.5375547,8.2847881,1,0,-9,48,0,-1,-154.52365,0,0,0,71,2,4,3,2,2,2019,4,2,8,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.6677113,8.2320938,0,0,68.550003,33.32,54.040001,47.889999,6,1,1,0,0,9,4,1,757,802151.88,0,0,6130.8701 -1253,1524,2799,2800,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,2,8.0195761,8.0093021,0,2,0,-9,8,0,9,40.782715,0,0,0,37,2,3,3,2,2,2019,2,1,13,1,48,50,15,1,0,3,0,8.2568293,8.2568293,0,0,0,0,0,0,0,0,1,1,0,.75425321,0,0,0,47.900002,48.57,38.860001,59.060001,3,1,1,0,0,9,3,1,1434,288760.25,0,0,1297.7734 -1253,1524,2800,2799,-9,-9,1,1,0,37,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,0,46.267784,0,0,1,46,2,2,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.860001,59.060001,47.900002,48.57,3,1,1,0,1,9,3,1,1434,288760.25,0,0,1297.7734 -1253,1524,2801,-9,2800,2799,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.54779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,1434,288760.25,0,0,1297.7734 -1254,1525,2802,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,0,2,0,5.1407614,5.5859256,3,0,0,0,-9,0,-1077.0729,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,10,0,20,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.3410444,0,0,25.4,35.709999,-9,-9,4,1,1,0,1,6,2,0,611,661455.94,0,0,1346.7877 -1255,1526,2803,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,1,1,0,0,5,6.4621606,6.4087176,0,3,0,0,0,-9,0,-962.74567,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,2.1695108,2.1695108,0,0,0,0,0,0,0,0,0,0,0,.78862035,0,0,0,52.240002,58.560001,-9,-9,7,1,1,0,0,2,2,1,530,-92513.867,0,0,26.114212 -1256,1527,2804,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1050.9606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,.84045416,0,0,0,0,4.1572709,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,4,1,0,2890,-182815.69,0,0,1295.4878 -1257,1528,2805,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1078.9803,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.677051,3,48.18,61.799999,-9,-9,7,1,1,0,0,11,1,0,261,6834.75,0,0,1972.9827 -1258,1529,2806,2807,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,0,4,9.6034698,9.4471865,0,1,0,-9,9,0,-12,5.7520585,0,0,0,59,2,4,1,2,-9,2019,1,1,16,4,39,39,15,1,1,1,0,40.408123,40.408123,0,0,0,0,0,0,0,0,0,0,0,4.7536917,0,0,0,30.18,65.980003,21.58,64.309998,5,1,1,0,0,7,5,1,392,255663.38,0,0,6089.9238 -1258,1529,2807,2806,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.4882851,7.942575,0,1,0,-9,9,0,12,-134.16872,0,0,0,47,3,4,1,3,3,2019,1,2,20,9,32,33,15,1,1,1,0,9.2437973,9.2437973,0,0,0,0,0,0,0,0,0,0,0,5.9540248,0,0,0,21.58,64.309998,30.18,65.980003,5,1,1,0,0,7,5,1,392,255663.38,0,0,6089.9238 -1259,1530,2808,-9,2809,2811,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.13635,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,703.75,122409.99,0,0,2935.3967 -1259,1530,2809,2811,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,7.6606545,7.9890232,0,2,0,-9,13,0,0,1.3725021,0,0,1,38,2,4,1,3,3,2019,1,2,8,0,18,20,15,1,0,1,0,16.351898,16.351898,0,0,0,0,0,0,0,0,1,1,0,2.791512,0,0,0,51.77,58.57,57.16,56.150002,6,1,1,0,0,12,5,1,703.75,122409.99,0,0,2935.3967 -1259,1530,2810,-9,2809,2811,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.7529,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,1,703.75,122409.99,0,0,2935.3967 -1259,1530,2811,2809,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.9873877,8.6952286,0,2,0,-9,13,0,0,9.6496344,0,0,0,38,1,4,1,2,2,2019,1,1,6,0,59,52,15,1,0,1,0,18.602676,18.602676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.77,58.57,6,1,1,0,0,12,5,1,703.75,122409.99,0,0,2935.3967 -1260,1531,2812,-9,-9,-9,1,1,0,50,2,0,1,0,1,-9,2,1,0,0,3,9.7789774,9.2316837,0,2,0,-9,7,0,6,-58.90155,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,9,0,37,43,15,1,0,-9,0,49.096542,49.096542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,43.419998,54.200001,57.490002,6,1,1,0,0,9,5,1,429,772584.13,0,0,4557.9297 -1260,1532,2813,-9,-9,-9,2,1,0,44,2,0,1,0,1,-9,2,1,0,0,4,8.6523256,8.7452173,0,2,0,-9,7,0,-6,-43.129681,0,0,1,-9,-9,-9,-9,1,3,2019,1,1,10,0,37,50,15,1,0,-9,0,19.043781,19.043781,0,0,0,0,0,0,0,0,0,0,0,3.798707,0,0,0,54.200001,57.490002,58.720001,43.419998,6,1,1,0,0,9,5,1,156,626793.63,0,0,3187.2798 -1260,1533,2814,-9,2812,-9,3,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1015.1802,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0201342,0,0,0,47.619999,56.48,-9,-9,6,1,1,0,0,9,5,1,901,6479.3608,0,0,1698.665 -1261,1534,2815,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,0,4,0,8.2734671,8.6065483,3,0,0,0,-9,0,-984.61969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.321312,0,0,38.860001,57.790001,-9,-9,6,1,1,0,0,1,4,1,1549,1034448.4,0,0,1833.0029 -1261,1535,2816,-9,-9,2815,2,1,1,30,2,0,0,0,1,-9,7,2,0,0,4,6.5081882,6.5378318,0,3,0,0,0,-9,0,-932.00568,1,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,8,30,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,4,1,1,0,1,1,2,1,271,66099.789,0,0,-44.981098 -1261,1536,2817,-9,-9,2815,3,1,0,28,2,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1018.8,0,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,8,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,1,1,1,525,65515.777,0,0,0 -1262,1537,2818,2821,-9,-9,1,1,1,37,1,0,2,0,2,-9,1,1,0,0,5,7.4049702,7.3373351,0,2,0,-9,17,0,0,-109.47553,0,0,0,37,2,4,3,2,2,2019,2,2,9,1,42,40,15,1,0,3,0,3.9625371,3.9625371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.630001,56.139999,34.48,61.029999,6,1,1,0,0,2,2,1,1627.25,-32456.551,0,0,1074.025 -1262,1537,2819,-9,2821,2818,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.4868,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,1,1627.25,-32456.551,0,0,1074.025 -1262,1537,2820,-9,2821,2818,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.7914,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,1,1627.25,-32456.551,0,0,1074.025 -1262,1537,2821,2818,-9,-9,2,1,0,37,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,17,0,0,.1666538,0,0,1,37,2,5,1,2,2,2019,3,1,16,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.48,61.029999,57.630001,56.139999,4,1,1,0,1,2,2,1,1627.25,-32456.551,0,0,1074.025 -1263,1538,2822,-9,2824,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-978.79022,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,4,4,1,533.66669,403923.09,0,0,2359.3909 -1263,1538,2823,-9,2824,-9,2,1,0,10,2,1,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1031.4792,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,4,4,1,533.66669,403923.09,0,0,2359.3909 -1263,1538,2824,-9,-9,-9,1,1,0,41,2,1,2,0,1,-9,2,1,0,0,4,8.432601,8.3890667,0,4,0,0,0,-9,0,-1126.5575,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,33,32,15,1,0,-9,0,18.204369,18.204369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,4,1,533.66669,403923.09,0,0,2359.3909 -1264,1539,2825,-9,2828,2829,3,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.7182,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,2,2,0,699.5,-5306.1621,0,0,2157.7256 -1264,1539,2826,-9,2828,2829,4,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.563,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,2,2,0,699.5,-5306.1621,0,0,2157.7256 -1264,1539,2827,-9,2828,2829,5,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.51715,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,2,2,0,699.5,-5306.1621,0,0,2157.7256 -1264,1539,2828,2829,-9,-9,2,1,0,35,1,1,4,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,3,0,-4,-31.012005,0,0,1,39,2,3,1,3,3,2019,3,1,14,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.290001,46.939999,42.48,53.389999,3,3,4,0,1,2,2,0,699.5,-5306.1621,0,0,2157.7256 -1264,1539,2829,2828,-9,-9,1,1,1,39,1,1,4,0,2,-9,1,1,0,0,3,8.048028,7.9147773,0,2,0,-9,3,0,4,-16.354671,0,0,0,35,2,5,3,3,2,2019,2,2,6,0,32,47,15,1,0,3,0,12.299786,12.299786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,53.389999,39.290001,46.939999,7,3,4,0,1,2,2,0,699.5,-5306.1621,0,0,2157.7256 -1264,1539,2830,-9,2828,2829,6,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-873.7627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,2,2,0,699.5,-5306.1621,0,0,2157.7256 -1265,1540,2831,-9,2833,2835,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.3644,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,3,1,553.20001,126814.14,0,0,2270.3398 -1265,1540,2832,-9,2833,2835,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-817.64893,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,3,1,553.20001,126814.14,0,0,2270.3398 -1265,1540,2833,2835,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,0,4,5.8505259,5.5661368,0,2,0,-9,23,0,0,-29.155167,0,0,1,44,1,4,1,2,3,2019,1,2,7,1,9,8,15,1,0,1,0,4.0537138,4.0537138,0,0,0,0,0,0,0,0,1,1,0,.91190684,0,0,0,55.580002,52.990002,49.860001,55.310001,6,1,1,0,0,1,3,1,553.20001,126814.14,0,0,2270.3398 -1265,1540,2834,-9,2833,2835,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.08246,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,3,1,553.20001,126814.14,0,0,2270.3398 -1265,1540,2835,2833,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,8.1138773,8.3560705,0,2,0,-9,23,0,0,-76.657112,0,0,0,44,1,4,1,2,2,2019,1,1,12,0,38,38,15,1,0,1,0,11.540205,11.540205,0,0,0,0,0,0,0,0,1,1,0,1.1435009,0,0,0,49.860001,55.310001,55.580002,52.990002,5,1,1,0,0,1,3,1,553.20001,126814.14,0,0,2270.3398 -1266,1541,2836,2838,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,8.0903711,8.049078,0,2,0,-9,6,0,13,-30.442553,0,0,0,36,2,4,1,2,3,2019,1,2,13,3,41,25,15,1,0,1,0,11.783667,11.783667,0,0,0,0,0,0,0,7,1,1,0,1.45079,0,3.0293121,3,48.279999,60.18,45.560001,60.259998,2,1,1,0,0,5,4,1,303.33334,396149.41,0,0,2632.2727 -1266,1541,2837,-9,2836,2838,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.3553,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,4,1,303.33334,396149.41,0,0,2632.2727 -1266,1541,2838,2836,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.2018728,8.6460876,0,2,0,-9,6,0,-13,123.3187,0,0,0,49,2,4,1,-9,-9,2019,1,1,13,1,44,44,15,1,0,1,0,11.817606,11.817606,0,0,0,0,0,0,0,0,1,1,0,2.6543119,0,0,0,45.560001,60.259998,48.279999,60.18,2,1,1,0,0,5,4,1,303.33334,396149.41,0,0,2632.2727 -1267,1542,2839,-9,-9,-9,1,1,0,39,3,0,0,0,3,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-993.51721,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.37197688,0,0,0,33.470001,42.84,-9,-9,3,2,3,1,0,6,1,0,781,164706.36,0,0,1389.2275 -1267,1543,2840,-9,2839,-9,2,1,0,19,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1097.3335,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.575899,0,0,0,53.610001,59.130001,-9,-9,7,2,3,1,0,6,1,0,219,-184142.75,0,0,603.22412 -1268,1544,2841,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.3140278,8.1099644,0,3,0,0,0,-9,0,-996.47864,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,45,15,1,0,-9,0,11.53848,11.53848,0,0,0,0,0,0,0,0,0,0,0,1.6571939,0,0,0,41.060001,62.040001,-9,-9,6,1,1,0,0,8,4,0,353,49051.984,0,0,-147.35355 -1269,1545,2842,-9,2843,2844,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.44696,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,5,1,390.33334,209519.77,0,0,3733.2349 -1269,1545,2843,2844,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,0,3,8.7285652,8.5686874,0,2,0,-9,5,0,-1,-33.265995,0,0,1,38,2,5,1,-9,-9,2019,1,1,6,0,30,30,15,1,0,1,0,22.692556,22.692556,0,0,0,0,0,0,0,0,1,1,0,6.8853931,0,0,0,49.040001,55.860001,45.810001,61.509998,6,1,1,0,0,11,5,1,390.33334,209519.77,0,0,3733.2349 -1269,1545,2844,2843,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,0,5,8.3784819,8.1104145,0,2,0,-9,5,0,1,-65.606689,0,0,0,37,1,3,1,2,2,2019,1,2,20,8,55,75,15,1,1,1,0,10.214382,10.214382,0,0,0,0,0,0,0,0,1,1,0,5.7109051,0,0,0,45.810001,61.509998,49.040001,55.860001,5,1,1,0,0,11,5,1,390.33334,209519.77,0,0,3733.2349 -1270,1546,2845,2846,-9,-9,2,1,1,49,1,0,5,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,8,0,5,0,0,0,0,44,2,4,3,-9,-9,2019,2,1,9,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,1,8,1,1,847.66669,0,0,0,309.79327 -1270,1546,2846,2845,-9,-9,1,1,0,44,1,0,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-5,0,0,0,1,49,2,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.5609078,1,50,55,52,55,6,2,3,0,0,8,1,1,847.66669,0,0,0,309.79327 -1270,1546,2847,-9,2846,2845,8,1,1,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.16992,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,1,1,847.66669,0,0,0,309.79327 -1270,1547,2848,-9,2851,2849,7,1,0,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.735,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,678,473560.22,0,0,4466.4185 -1270,1547,2849,2851,-9,-9,4,1,1,41,1,0,5,0,1,-9,2,1,0,0,4,8.5947914,8.6107225,0,2,0,-9,8,0,5,75.39077,0,0,0,36,2,4,3,-9,-9,2019,2,3,9,1,38,0,15,1,0,3,0,17.323557,17.323557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48,56,6,2,3,0,0,8,3,1,678,473560.22,0,0,4466.4185 -1270,1547,2850,-9,2851,2849,9,1,0,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.77039,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,3,1,678,473560.22,0,0,4466.4185 -1270,1547,2851,2849,-9,-9,3,1,0,36,1,0,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,-5,180.80934,0,0,1,41,1,4,1,-9,-9,2019,3,4,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,51,56,5,2,3,0,0,8,3,1,678,473560.22,0,0,4466.4185 -1271,1548,2852,2853,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,4,0,4.9921732,4.8476634,1,0,-9,8,0,2,-17.412823,0,0,0,75,2,4,3,2,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2333732,4.9002905,0,0,59.540001,42.869999,60.529999,42.470001,6,1,1,0,0,7,4,1,505.5,2119088.5,0,0,4210.0728 -1271,1548,2853,2852,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,8.6051121,8.3424406,1,0,-9,8,0,-2,-79.302185,0,0,0,77,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0189943,8.4476881,0,0,60.529999,42.470001,59.540001,42.869999,6,1,1,0,0,7,4,1,505.5,2119088.5,0,0,4210.0728 -1272,1549,2854,2855,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,0,2,7.6023822,7.8696938,0,1,0,-9,6,0,5,-48.180992,0,0,0,59,3,3,1,3,3,2019,1,2,8,0,56,48,15,1,0,1,0,5.4698181,5.4698181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,48.349998,49,48,6,1,1,0,1,13,5,1,502,1278332,0,0,5419.9951 -1272,1549,2855,2854,-9,-9,2,1,0,59,1,0,0,0,3,-9,1,1,0,0,3,9.493947,9.372489,0,1,0,-9,6,0,-5,93.016579,-9,0,0,64,3,2,1,3,3,2019,1,1,11,2,40,0,15,1,0,1,0,37.177681,37.177681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,60.529999,48.349998,5,1,1,0,0,13,5,1,502,1278332,0,0,5419.9951 -1273,1550,2856,2857,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,-11,0,0,0,0,85,3,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,39.619999,56.099998,39.400002,6,1,1,0,0,10,1,1,208.5,343926.41,0,0,395.03262 -1273,1550,2857,2856,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,11,0,0,0,0,74,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.099998,39.400002,49.91,39.619999,5,1,1,0,0,10,1,1,208.5,343926.41,0,0,395.03262 -1274,1551,2858,2859,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,46,0,-1,0,0,0,0,64,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.450001,35.689999,60.119999,54.799999,7,1,1,0,0,6,1,0,366,333915.56,0,0,457.91614 -1274,1551,2859,2858,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,46,0,1,0,0,0,0,63,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,52.450001,35.689999,2,1,1,0,0,6,1,0,366,333915.56,0,0,457.91614 -1275,1552,2860,2863,-9,-9,1,1,1,43,1,1,3,0,3,-9,2,1,0,0,3,6.6500735,6.7328811,0,2,0,-9,13,0,13,-11.769006,0,0,0,30,2,4,3,3,2,2019,2,2,15,4,10,24,15,1,1,3,0,9.3670778,9.3670778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.580002,48.57,48,57,4,4,5,0,1,6,2,0,1161.4,63726.5,0,0,2016.9713 -1275,1552,2861,-9,2863,2860,4,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-844.76355,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,6,2,0,1161.4,63726.5,0,0,2016.9713 -1275,1552,2862,-9,2863,2860,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.63556,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,6,2,0,1161.4,63726.5,0,0,2016.9713 -1275,1552,2863,2860,-9,-9,2,1,0,30,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-13,36.405769,0,0,1,43,3,3,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,38.580002,48.57,5,4,5,0,0,6,2,0,1161.4,63726.5,0,0,2016.9713 -1275,1552,2864,-9,2863,2860,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.13965,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,5,0,0,6,2,0,1161.4,63726.5,0,0,2016.9713 -1276,1553,2865,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,4,0,7.4940419,7.5423732,3,0,-9,0,-9,0,-957.86877,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,.78508449,0,0,0,0,1.4227481,0,1,1,0,9.285058,7.7978973,0,0,61.860001,44.400002,-9,-9,5,1,1,0,0,11,3,1,1354,224695.94,0,0,2873.8718 -1277,1554,2866,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,1,2,0,5.6072412,5.5423851,3,0,0,0,-9,0,-1017.6141,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,41.367847,0,0,0,1,1,0,4.9775395,5.4751558,0,0,45.540001,25.940001,-9,-9,3,1,1,0,0,1,2,0,216,380122.56,0,0,-875.30927 -1278,1555,2867,2868,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,7.7290435,7.8426981,1,0,-9,40,0,-3,-41.642906,0,0,0,66,2,4,3,1,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.7007866,7.9848657,7.7718291,3,55.529999,51.549999,49.380001,58.290001,6,1,1,0,0,12,3,1,448,1267525.4,0,0,3659.7041 -1278,1555,2868,2867,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,5.6147232,5.9630046,1,0,-9,40,0,3,-27.711943,0,0,0,63,1,3,3,1,1,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.2481315,5.8848877,9.8101549,3,49.380001,58.290001,55.529999,51.549999,6,1,1,0,0,12,3,1,448,1267525.4,0,0,3659.7041 -1279,1556,2869,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,3,8.4853182,8.4575815,0,3,0,0,0,-9,0,-979.84576,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,40,15,1,0,-9,0,10.514365,10.514365,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.250793,3,47.07,51.259998,-9,-9,4,1,1,0,0,1,4,1,509,1103.2578,0,0,2631.0618 -1280,1557,2870,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-960.90607,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.1699004,0,2.5998728,0,0,1,1,0,1.7318174,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,1,1,0,397,0,0,0,926.78314 -1281,1558,2871,2872,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.0720067,6.361619,1,0,-9,8,0,-4,-83.489601,0,0,0,72,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3048077,6.0750012,0,0,61.189999,39.41,62.419998,42.939999,6,1,1,0,0,2,2,1,205,679627.75,0,0,1668.9971 -1281,1558,2872,2871,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,6.1975884,6.4048715,1,0,-9,8,0,4,-136.0929,0,0,0,68,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6327567,6.2483735,0,0,62.419998,42.939999,61.189999,39.41,6,1,1,0,0,2,2,1,205,679627.75,0,0,1668.9971 -1282,1559,2873,2874,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,5,8.6817112,8.6386175,0,1,0,-9,7,0,3,38.309563,0,0,0,32,2,2,1,2,1,2019,1,2,7,1,40,39,15,1,0,1,0,14.492306,14.492306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,25.639999,49.369999,7,1,1,0,0,2,5,0,322.5,174214.05,0,0,4883.7148 -1282,1559,2874,2873,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,2,8.587244,8.8103037,0,1,0,-9,7,0,-3,-67.596901,0,0,1,35,1,5,1,2,-9,2019,1,1,29,11,40,44,15,1,1,1,0,20.720848,20.720848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.639999,49.369999,57.060001,57.759998,3,4,2,0,0,2,5,0,322.5,174214.05,0,0,4883.7148 -1283,1560,2875,-9,2877,2876,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.98608,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,4,1,696,344677.84,0,0,2660.5671 -1283,1560,2876,2877,-9,-9,3,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.1191492,8.2540903,0,2,0,-9,11,0,-5,-43.892174,0,0,0,53,2,3,1,2,2,2019,1,1,11,0,37,37,15,1,0,1,0,10.653969,10.653969,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.610001,53.57,41.34,56.619999,6,1,1,0,0,1,4,1,696,344677.84,0,0,2660.5671 -1283,1560,2877,2876,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,0,3,8.0869942,8.1087666,0,2,0,-9,11,0,5,172.71933,0,0,0,48,2,4,1,3,3,2019,1,3,15,3,36,36,15,1,0,1,0,12.601933,12.601933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,42.610001,53.57,4,1,1,0,0,1,4,1,696,344677.84,0,0,2660.5671 -1284,1561,2878,-9,2879,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.5492,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,3,1,858.66669,39240.461,0,0,899.76959 -1284,1561,2879,-9,-9,-9,1,1,0,37,3,0,2,0,2,-9,2,1,0,0,4,7.7169333,7.7709465,0,4,0,0,0,-9,0,-935.40057,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,18,0,15,1,0,-9,0,15.249557,15.249557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,5,3,1,858.66669,39240.461,0,0,899.76959 -1284,1561,2880,-9,2879,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1039.3262,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,858.66669,39240.461,0,0,899.76959 -1285,1562,2881,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,3,8.6614656,8.6170673,5.613955,4,0,0,0,-9,0,-1057.3898,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,37,37,15,1,0,-9,0,14.121785,14.121785,0,0,0,0,0,0,0,7,1,1,0,5.3127651,0,10.875847,3,44.360001,54.040001,-9,-9,4,1,1,0,0,1,4,1,1619,223328.09,0,0,1848.8492 -1286,1563,2882,-9,2887,2886,6,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.86078,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,1,666,35822.266,0,0,2733.1563 -1286,1563,2883,-9,2887,2886,4,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.3776,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,666,35822.266,0,0,2733.1563 -1286,1563,2884,-9,2887,2886,3,1,0,17,2,1,3,1,2,0,7,2,0,0,3,6.6261206,6.2086067,0,2,0,0,0,-9,0,-1043.8285,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,26,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.939999,55.880001,-9,-9,6,1,1,0,0,11,2,1,666,35822.266,0,0,2733.1563 -1286,1563,2885,-9,2887,2886,5,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.4613,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,2,1,666,35822.266,0,0,2733.1563 -1286,1563,2886,2887,-9,-9,2,1,1,34,1,1,3,0,1,-9,2,1,0,0,3,7.716218,8.0415611,0,2,0,-9,7,0,-2,42.738655,0,0,0,36,2,2,2,3,3,2019,2,1,33,12,40,0,15,1,1,2,0,8.5934172,8.5934172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.860001,52.240002,23.73,57.380001,1,1,1,0,0,11,2,1,666,35822.266,0,0,2733.1563 -1286,1563,2887,2886,-9,-9,1,1,0,36,1,1,3,0,2,-9,7,2,0,1,2,0,0,0,2,0,-9,7,0,2,-129.18015,1,0,1,34,1,3,1,3,-9,2019,3,2,12,1,0,42,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.73,57.380001,18.860001,52.240002,3,1,1,0,0,11,2,1,666,35822.266,0,0,2733.1563 -1287,1564,2888,-9,2890,2889,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-971.97748,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,1,1083,390989.75,0,0,630.23981 -1287,1564,2889,2890,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,7,0,1,0,0,0,0,33,2,5,1,-9,-9,2019,1,1,7,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2383037,0,0,0,57.16,56.150002,49.759998,56.93,6,1,1,0,0,9,1,1,1083,390989.75,0,0,630.23981 -1287,1564,2890,2889,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,0,5,0,0,0,2,0,-9,7,0,-1,0,0,0,1,34,1,4,1,-9,-9,2019,1,2,11,0,0,58,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.759998,56.93,57.16,56.150002,6,1,1,0,0,9,1,1,1083,390989.75,0,0,630.23981 -1288,1565,2891,2892,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.1782126,7.3512034,1,0,-9,40,0,7,12.541179,0,0,0,67,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7094226,7.0209527,0,0,61.27,46.029999,49.349998,59.639999,7,1,1,0,0,2,3,1,1314,203423.06,0,0,3322.0181 -1288,1565,2892,2891,-9,-9,1,1,0,67,1,0,0,0,2,-9,2,1,0,0,4,0,7.4554138,7.256227,1,0,-9,40,0,-7,-63.212395,0,0,0,74,2,4,3,3,3,2019,2,2,9,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.845479,7.199976,0,0,49.349998,59.639999,61.27,46.029999,6,1,1,0,0,2,3,1,1314,203423.06,0,0,3322.0181 -1289,1566,2893,2894,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,2,0,0,0,1,0,-9,8,0,-1,-51.784267,0,0,0,60,3,4,1,3,-9,2019,1,1,11,0,0,58,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.092443,0,0,0,43.439999,43.91,58.150002,52.91,4,1,1,0,0,5,3,1,423,431981.91,0,0,699.57709 -1289,1566,2894,2893,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,4,7.7576847,8.1395216,0,1,0,-9,8,0,1,61.056316,0,0,0,59,3,2,1,3,2,2019,1,2,8,0,0,44,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.422769,0,0,0,58.150002,52.91,43.439999,43.91,6,1,1,0,0,5,3,1,423,431981.91,0,0,699.57709 -1290,1567,2895,2896,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.2790575,8.0271854,0,1,0,-9,9,0,-1,-58.608486,0,0,0,57,2,3,1,-9,-9,2019,1,1,5,0,35,45,15,1,0,1,0,11.60004,11.60004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,60.200001,39.82,6,3,4,0,0,8,5,1,727,299957.16,0,0,4786.6992 -1290,1567,2896,2895,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.3735237,8.2233791,0,1,0,-9,9,0,1,106.6825,0,0,0,56,2,3,1,-9,-9,2019,1,2,11,1,36,36,15,1,0,1,0,13.969123,13.969123,0,0,0,0,0,0,0,0,0,0,0,8.4980612,0,0,0,60.200001,39.82,61.279999,46.169998,6,3,4,0,0,8,5,1,727,299957.16,0,0,4786.6992 -1291,1568,2897,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,0,2,0,7.7874284,7.9891067,3,0,0,0,-9,0,-1065.1622,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.5601711,7.7524748,0,0,47.009998,26.5,-9,-9,6,1,1,0,0,9,3,1,165,669882.19,0,0,1449.8483 -1292,1569,2898,2899,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,4.8125367,4.6777272,1,0,-9,51,0,0,80.617111,0,0,0,79,2,3,3,2,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6780081,4.8672013,0,0,57.099998,30.43,42.700001,46.470001,7,1,1,0,0,2,2,1,487.5,67357.359,0,0,993.56689 -1292,1569,2899,2898,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,0,31.188585,0,0,0,79,3,3,3,-9,-9,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.700001,46.470001,57.099998,30.43,6,1,1,0,0,2,2,1,487.5,67357.359,0,0,993.56689 -1293,1570,2900,2902,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,7.6737223,7.6195064,0,2,0,-9,16,0,1,-6.5508189,0,0,0,41,1,4,1,2,2,2019,1,1,5,0,40,35,15,1,0,1,0,7.3102074,7.3102074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.66,43.599998,51.5,49.200001,6,2,3,0,0,5,4,0,676.33331,414347.78,0,0,3106.0957 -1293,1570,2901,-9,2902,2900,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.8417,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,4,0,676.33331,414347.78,0,0,3106.0957 -1293,1570,2902,2900,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,8.2550716,8.443224,0,2,0,-9,16,0,-1,-25.351757,0,0,1,42,1,4,1,3,3,2019,1,2,6,0,50,16,15,1,0,1,0,6.1694918,6.1694918,0,0,0,0,0,0,0,7,0,0,0,0,0,8.1551228,3,51.5,49.200001,63.66,43.599998,5,2,3,0,0,5,4,0,676.33331,414347.78,0,0,3106.0957 -1294,1571,2903,2904,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,2,0,8.1994534,8.6622839,1,0,-9,9,0,1,93.453056,0,0,0,72,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2246027,8.4132099,0,0,55.209999,38.669998,43.419998,62.330002,6,1,1,0,0,5,4,1,257,1716191.8,0,0,3297.1104 -1294,1571,2904,2903,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.658762,6.9417014,1,0,-9,9,0,-1,11.131621,0,0,0,73,1,2,3,3,3,2019,4,1,13,1,0,1,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4924178,6.7104025,0,0,43.419998,62.330002,55.209999,38.669998,5,1,1,0,0,5,4,1,257,1716191.8,0,0,3297.1104 -1295,1572,2905,-9,2907,-9,2,1,0,17,2,0,0,0,3,1,2,3,0,0,3,4.2754612,4.4452004,0,1,0,0,0,-9,0,-939.09833,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.49,57,-9,-9,5,1,1,0,1,7,3,1,955.66669,2152.5696,0,0,2717.3733 -1295,1572,2906,2907,-9,-9,3,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,7.5335469,7.7463174,0,1,0,-9,1,-9,2,-77.426369,-9,0,0,51,1,3,1,-9,-9,2019,1,1,10,0,30,0,15,1,0,1,0,9.8161411,9.8161411,0,0,0,0,0,0,0,0,1,1,0,4.0970311,0,0,0,58.150002,52.91,48.700001,50.689999,6,1,1,0,0,7,3,1,955.66669,2152.5696,0,0,2717.3733 -1295,1572,2907,2906,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,7.3713183,7.3917351,0,1,0,1,1,-9,-2,82.679863,0,0,0,53,2,4,1,2,2,2019,1,3,4,0,27,27,15,1,0,1,0,7.0928102,7.0928102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,50.689999,58.150002,52.91,7,1,1,0,0,7,3,1,955.66669,2152.5696,0,0,2717.3733 -1296,1573,2908,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,3,8.4424486,8.192214,0,3,0,0,0,-9,0,-1019.1015,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,27,9,40,40,15,1,1,-9,0,12.186113,12.186113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.66,67.349998,-9,-9,2,4,2,0,1,8,4,0,1360,23582.387,0,0,3707.6057 -1297,1574,2909,2911,-9,-9,2,1,1,56,1,0,1,0,1,-9,2,1,0,0,5,8.8024302,8.7322226,0,2,0,-9,27,0,6,-1.9635668,0,0,0,50,1,4,1,2,3,2019,1,1,7,0,41,40,15,1,0,1,0,19.468702,19.468702,0,0,0,0,0,0,0,0,1,1,0,1.5498492,0,0,0,59.43,58.049999,52.77,55.330002,6,1,1,0,0,2,5,1,447.33334,1425252,0,0,4395.4717 -1297,1574,2910,-9,2911,2909,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.0565,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,2,5,1,447.33334,1425252,0,0,4395.4717 -1297,1574,2911,2909,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.9951725,9.1196394,0,2,0,-9,27,0,-6,21.390129,0,0,0,56,1,5,1,2,1,2019,1,2,10,1,41,39,15,1,0,1,0,16.364811,16.364811,0,0,0,0,0,0,0,0,1,1,0,2.5481238,0,0,0,52.77,55.330002,59.43,58.049999,6,1,1,0,0,2,5,1,447.33334,1425252,0,0,4395.4717 -1298,1575,2912,2915,-9,-9,2,1,1,36,1,0,3,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,2,0,8,0,0,0,0,28,2,3,3,-9,-9,2019,4,1,6,0,0,70,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43467423,0,0,0,60.02,56.419998,38.919998,49.799999,6,1,1,1,0,1,1,0,1462,86532.203,0,0,1276.3884 -1298,1575,2913,-9,2915,2912,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.40936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,1,0,1462,86532.203,0,0,1276.3884 -1298,1575,2914,-9,2915,2912,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.67395,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,1,0,1462,86532.203,0,0,1276.3884 -1298,1575,2915,2912,-9,-9,1,1,0,28,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,2,0,-8,0,0,1,1,36,2,5,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.40015486,0,132.5661,3,38.919998,49.799999,60.02,56.419998,3,1,1,0,0,1,1,0,1462,86532.203,0,0,1276.3884 -1299,1576,2916,2917,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,0,4,8.0955067,8.125349,0,1,0,-9,2,0,3,77.674683,0,1,0,24,2,2,2,-9,-9,2019,2,1,11,1,45,45,15,1,0,2,0,8.8820677,8.8820677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,26.73,24.530001,5,1,1,0,0,12,3,0,608,-62266.477,0,0,1696.739 -1299,1576,2917,2916,-9,-9,1,1,0,24,1,0,0,0,2,0,7,2,0,1,2,0,0,0,1,0,-9,2,0,-3,-149.04121,-9,1,1,27,2,4,1,1,3,2019,3,2,34,12,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.73,24.530001,51.830002,57.200001,3,1,1,0,1,12,3,0,608,-62266.477,0,0,1696.739 -1300,1577,2918,-9,2919,2920,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.4889,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,420.33334,463598.34,0,0,2775.3752 -1300,1577,2919,2920,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,7.2313671,7.371448,0,2,0,-9,7,0,-1,-21.008532,0,0,1,41,2,3,1,-9,2,2019,1,2,6,0,22,20,15,1,0,1,0,8.260397,8.260397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,47.549999,55.060001,2,1,1,0,0,2,4,1,420.33334,463598.34,0,0,2775.3752 -1300,1577,2920,2919,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,0,3,8.867734,8.6804953,0,2,0,-9,7,0,1,73.50946,0,0,0,40,2,4,1,-9,-9,2019,1,1,11,0,40,60,15,1,0,1,0,14.433991,14.433991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,55.060001,62.490002,55.09,6,1,1,0,0,2,4,1,420.33334,463598.34,0,0,2775.3752 -1301,1578,2921,2923,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,0,4,8.1483774,8.1290855,0,2,0,-9,7,0,5,58.585354,0,0,1,34,2,4,1,2,3,2019,1,2,2,0,37,27,15,1,0,1,0,11.432275,11.432275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.860001,57.860001,50,57,6,1,1,0,0,4,3,0,792.40002,69851.953,0,0,3464.7817 -1301,1578,2922,-9,2921,2923,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.7801,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,792.40002,69851.953,0,0,3464.7817 -1301,1578,2923,2921,-9,-9,2,1,1,34,1,0,3,0,2,-9,2,1,0,0,4,8.3762589,8.2407665,0,2,0,-9,7,0,-5,114.74766,0,0,0,39,2,4,1,-9,-9,2019,1,1,10,1,40,45,15,1,0,1,0,13.510188,13.510188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,53.860001,57.860001,5,1,1,0,0,4,3,0,792.40002,69851.953,0,0,3464.7817 -1301,1578,2924,-9,2921,2923,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.00378,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,0,792.40002,69851.953,0,0,3464.7817 -1301,1578,2925,-9,2921,2923,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.08508,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,0,792.40002,69851.953,0,0,3464.7817 -1302,1579,2926,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,2,0,7.5904455,7.7340021,3,0,0,0,-9,0,-915.34442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0952702,0,0,53.080002,29.67,-9,-9,4,1,1,0,0,13,3,0,1981,498644.41,0,0,1791.1544 -1303,1580,2927,2928,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.8873129,8.7581882,0,1,0,-9,28,0,9,-2.847671,0,0,0,49,3,4,1,2,2,2019,1,2,10,1,60,50,15,1,0,1,0,12.507775,12.507775,0,0,0,0,0,0,0,0,0,0,0,2.5626776,0,0,0,50,49,57.16,56.150002,5,1,1,0,0,7,5,1,437.5,949449.13,0,0,5088.6777 -1303,1580,2928,2927,-9,-9,2,1,0,49,1,0,0,0,3,-9,2,1,0,0,4,6.5415964,6.3190322,0,1,0,-9,27,0,0,-71.913544,0,0,0,58,2,3,1,2,2,2019,1,1,6,0,12,22,15,1,0,1,0,6.5523782,6.5523782,0,0,0,0,0,0,0,7,0,0,0,7.766293,0,4.6150088,3,57.16,56.150002,50,49,6,1,1,0,0,7,5,1,437.5,949449.13,0,0,5088.6777 -1303,1581,2929,-9,2928,2927,3,1,1,21,2,0,0,1,2,0,7,2,0,0,3,0,6.1856112,6.7077265,3,0,0,0,-9,0,-1025.1149,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.42272,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,7,2,1,142,95094.563,0,0,1069.288 -1304,1582,2930,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,4,0,6.8530307,7.0573535,3,0,0,0,-9,0,-851.99432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5382762,6.9297948,0,0,55.939999,47.09,-9,-9,6,1,1,0,0,13,2,1,1106,833638.94,0,0,1324.9161 -1305,1583,2931,2932,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,44,0,6,54.081402,0,0,0,76,3,2,3,-9,-9,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.34,31.49,36.869999,37.369999,3,1,1,0,0,4,1,0,944.5,123351.06,0,0,2257.092 -1305,1583,2932,2931,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,4.8945804,4.6367178,1,0,-9,44,0,-6,19.066933,0,0,0,82,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,5.2283111,109.93549,1,36.869999,37.369999,37.34,31.49,6,1,1,0,0,4,1,0,944.5,123351.06,0,0,2257.092 -1306,1584,2933,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,1,1,0,0,4,8.8992281,9.3720016,6.831214,3,0,-9,0,-9,0,-1023.5555,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,45,0,15,1,0,-9,0,17.415981,17.415981,0,0,0,0,0,0,0,0,1,1,0,0,7.4917016,0,0,62.099998,51.16,-9,-9,6,1,1,0,0,12,5,1,1488,1301215.1,0,0,4254.7617 -1307,1585,2934,2935,-9,-9,4,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,7.9629192,8.1041975,0,2,0,-9,6,0,3,17.864086,0,0,0,35,1,4,1,-9,-9,2019,1,1,10,1,37,40,15,1,0,1,0,9.3945637,9.3945637,0,0,0,0,0,0,0,0,1,1,0,6.1669655,0,0,0,51,57,62.490002,55.09,5,4,1,0,0,5,4,1,711,155010.83,0,0,3890.1548 -1307,1585,2935,2934,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,8.2993011,8.1872406,6.2711897,2,0,-9,6,0,-3,-33.679718,0,0,1,38,2,4,1,2,2,2019,1,4,7,0,37,35,15,1,0,1,0,13.636289,13.636289,0,0,0,0,0,0,0,0,1,1,0,6.622252,0,0,0,62.490002,55.09,51,57,6,1,1,0,0,5,4,1,711,155010.83,0,0,3890.1548 -1307,1585,2936,-9,2935,2934,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-935.21075,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,5,4,1,711,155010.83,0,0,3890.1548 -1308,1586,2937,-9,2939,2938,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.4349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,5,1,2165.6667,355149.41,0,0,4796.083 -1308,1586,2938,2939,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,8.5502157,8.8025331,0,2,0,-9,10,0,2,-181.54198,0,0,0,43,2,5,1,2,2,2019,1,1,8,0,48,48,15,1,0,1,0,12.161181,12.161181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.470001,52.369999,57.060001,57.759998,6,1,1,0,0,4,5,1,2165.6667,355149.41,0,0,4796.083 -1308,1586,2939,2938,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,5,8.7121677,8.8478861,0,2,0,-9,10,0,-2,29.991432,0,0,1,45,2,3,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,17.196602,17.196602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,53.470001,52.369999,6,1,1,0,0,4,5,1,2165.6667,355149.41,0,0,4796.083 -1309,1587,2940,2941,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,2,0,7.2336779,7.4330964,1,0,-9,61,0,-2,-29.593245,0,0,0,85,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,5.3293056,0,0,0,0,0,1,1,0,0,7.6166501,0,0,61.43,30.110001,58.07,46.290001,6,1,1,0,0,12,4,1,600.5,893572.38,0,0,3443.4629 -1309,1587,2941,2940,-9,-9,1,1,1,85,1,0,0,0,1,-9,4,3,0,0,3,0,8.064312,7.9003358,1,0,-9,61,0,2,55.976044,0,0,0,83,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6641483,8.0075531,0,0,58.07,46.290001,61.43,30.110001,6,1,1,0,0,12,4,1,600.5,893572.38,0,0,3443.4629 -1310,1588,2942,2943,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.2811756,7.387197,5.1874199,1,0,-9,40,0,-1,25.774048,0,0,0,64,1,3,1,3,2,2019,1,1,12,0,20,22,15,1,0,1,0,8.0768881,8.0768881,0,0,0,0,0,0,0,0,0,0,0,5.8222599,5.3351769,0,0,46.900002,56.66,57.330002,53.459999,2,1,1,0,0,5,3,0,302,82242.219,0,0,1604.2699 -1310,1588,2943,2942,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,0,3,0,6.714499,6.3677559,1,0,-9,40,0,1,12.632068,0,0,0,63,2,4,1,2,3,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1340179,6.3356881,0,0,57.330002,53.459999,46.900002,56.66,6,1,1,0,0,5,3,0,302,82242.219,0,0,1604.2699 -1311,1589,2944,2945,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,1,0,5.5231576,5.0580759,1,0,-9,56,0,0,-8.4604397,0,0,0,75,1,2,3,2,2,2019,4,2,19,6,0,0,15,4,1,4,0,0,0,1,0,9.4933958,0,0,0,0,0,1,1,0,0,5.2676868,0,0,44.880001,11.09,61.849998,34.029999,3,1,1,0,0,6,2,1,854,327198.28,0,0,2930.8252 -1311,1589,2945,2944,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,2,0,7.2859235,7.1756587,1,0,-9,11,0,0,67.237602,0,0,0,75,2,1,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.1373782,7.4139876,29.143299,1,61.849998,34.029999,44.880001,11.09,5,1,1,0,0,6,2,1,854,327198.28,0,0,2930.8252 -1312,1590,2946,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,6.5496445,6.7351518,3,0,0,0,-9,0,-1024.2485,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5749373,6.5937939,0,0,33.25,40.48,-9,-9,6,1,1,0,0,1,2,1,621,358657.13,0,0,963.49847 -1313,1591,2947,2949,-9,-9,2,1,0,40,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-4,0,0,0,1,44,2,4,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.669998,53.139999,58.150002,52.91,4,1,1,0,0,4,1,1,1579.5,5988.4897,0,0,2245.8101 -1313,1591,2948,-9,2947,2949,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.70404,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,1,1,1579.5,5988.4897,0,0,2245.8101 -1313,1591,2949,2947,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,7,0,4,0,0,0,0,40,2,3,3,2,2,2019,2,2,7,0,0,60,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8633223,0,0,0,58.150002,52.91,36.669998,53.139999,2,1,1,0,0,4,1,1,1579.5,5988.4897,0,0,2245.8101 -1313,1591,2950,-9,2947,2949,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.4366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,1,1,1579.5,5988.4897,0,0,2245.8101 -1314,1592,2951,-9,-9,-9,1,1,1,37,2,0,0,0,1,1,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-912.888,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9364343,0,0,0,47.07,51.91,-9,-9,3,1,1,1,0,5,1,1,469,148583.81,0,0,391.18988 -1315,1593,2952,-9,2954,2953,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.1466,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,383,123848.32,0,0,2126.3784 -1315,1593,2953,2954,-9,-9,1,1,1,31,1,0,1,0,2,-9,2,1,0,0,5,8.349658,8.6185017,0,2,0,-9,16,0,0,21.233173,0,0,0,31,2,3,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,15.808426,15.808426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.009998,53.18,49.470001,43.509998,7,1,1,0,0,4,4,1,383,123848.32,0,0,2126.3784 -1315,1593,2954,2953,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,0,3,6.8313379,6.8961482,0,2,0,-9,16,0,0,94.389832,0,0,1,31,2,5,1,2,2,2019,1,1,7,0,15,26,15,1,0,1,0,7.5342336,7.5342336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.470001,43.509998,61.009998,53.18,6,1,1,0,0,4,4,1,383,123848.32,0,0,2126.3784 -1316,1594,2955,2956,-9,-9,2,1,1,42,1,0,0,0,1,-9,2,1,0,0,2,8.5476942,8.6733494,0,1,0,-9,11,0,-19,-3.9431922,0,0,0,61,2,3,1,2,2,2019,1,1,24,11,37,42,15,1,1,1,0,18.616499,18.616499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.959999,48.959999,36.119999,53.619999,2,1,1,0,0,1,5,1,903.5,469447.94,0,0,3381.686 -1316,1594,2956,2955,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,8.6688795,8.476243,0,1,0,-9,11,0,19,24.929918,0,0,0,42,1,2,1,2,2,2019,1,2,23,8,38,10,15,1,1,1,0,14.997931,14.997931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.119999,53.619999,35.959999,48.959999,3,1,1,0,0,1,5,1,903.5,469447.94,0,0,3381.686 -1317,1595,2957,-9,2958,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-965.60114,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,4,1,2118,1490929.5,0,0,2073.1807 -1317,1595,2958,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,2,1,0,0,4,8.973896,8.7366266,0,4,0,0,0,-9,0,-921.31616,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,35,30,15,1,0,-9,0,27.528433,27.528433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,1,9,4,1,2118,1490929.5,0,0,2073.1807 -1317,1595,2959,-9,2958,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1092.4871,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,4,1,2118,1490929.5,0,0,2073.1807 -1318,1596,2960,2961,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,7.6162863,7.8731551,1,0,-9,52,0,1,46.703075,0,0,0,72,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8260596,7.5502434,0,0,43.349998,52.880001,48.709999,51.810001,6,1,1,0,0,10,3,1,2107.5,1733657,0,0,2202.4019 -1318,1596,2961,2960,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,6.6736469,6.7169514,1,0,-9,52,0,-1,-42.626785,0,0,0,73,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.592953,7.0808463,0,0,48.709999,51.810001,43.349998,52.880001,6,1,1,0,0,10,3,1,2107.5,1733657,0,0,2202.4019 -1319,1597,2962,2964,-9,-9,2,1,0,46,1,0,1,0,3,-9,2,1,0,0,4,8.7540359,8.6828547,0,2,0,-9,8,0,-2,21.3713,0,0,0,48,3,3,1,2,3,2019,1,1,11,0,25,35,15,1,0,1,0,23.883322,23.883322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.849998,46.59,49.040001,55.860001,5,1,1,0,0,9,5,1,3185.6667,519550.75,0,0,3988.2971 -1319,1597,2963,-9,2962,2964,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.9631,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,3185.6667,519550.75,0,0,3988.2971 -1319,1597,2964,2962,-9,-9,1,1,1,48,1,0,1,0,3,-9,2,1,0,0,3,8.9369593,8.9134197,0,2,0,-9,8,0,2,-19.665476,0,0,0,46,3,4,1,2,2,2019,1,2,12,1,38,40,15,1,0,1,0,22.800428,22.800428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,54.849998,46.59,4,1,1,0,0,9,5,1,3185.6667,519550.75,0,0,3988.2971 -1320,1598,2965,2966,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.7333126,8.3074417,0,1,0,-9,7,0,1,-27.402035,0,0,0,45,2,2,1,2,2,2019,1,1,9,0,38,42,15,1,0,1,0,14.629495,14.629495,0,0,0,0,0,0,0,0,0,0,0,6.924685,0,0,0,56.580002,49.75,50.16,32.82,6,1,1,0,0,5,4,0,998,316439.13,0,0,3377.4712 -1320,1598,2966,2965,-9,-9,1,1,0,45,1,0,0,0,2,-9,1,1,0,0,2,5.9480925,5.849278,0,1,0,-9,7,0,-1,49.104317,0,0,0,46,2,4,1,2,2,2019,1,2,12,0,45,40,15,1,0,1,0,.86212361,.86212361,0,0,0,0,0,0,0,0,0,0,0,6.8647218,0,0,0,50.16,32.82,56.580002,49.75,4,1,1,0,0,5,4,0,998,316439.13,0,0,3377.4712 -1321,1599,2967,2968,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,0,4,9.2420712,9.3655014,0,1,0,-9,4,0,4,-6.9494891,0,0,0,33,1,3,1,-9,-9,2019,1,1,11,1,50,50,15,1,0,1,0,21.208698,21.208698,0,0,0,0,0,0,0,0,0,0,0,4.953156,0,0,0,52.799999,53.98,59.700001,53.75,5,1,1,0,0,8,5,0,1134.5,136188.16,0,0,5251.707 -1321,1599,2968,2967,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,3,8.727437,8.7060108,0,1,0,-9,4,0,-4,66.353752,0,0,1,37,2,4,1,2,1,2019,1,2,6,0,40,37,15,1,0,1,0,15.89517,15.89517,0,0,0,0,0,0,0,0,0,0,0,2.996434,0,0,0,59.700001,53.75,52.799999,53.98,6,1,1,0,0,8,5,0,1134.5,136188.16,0,0,5251.707 -1322,1600,2969,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,5,8.4725056,8.4372206,0,3,0,0,0,-9,0,-1001.2712,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,48,57,15,1,0,-9,0,10.908662,10.908662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,4,0,1190,148639.84,0,0,1380.6252 -1323,1601,2970,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,5.0908165,7.0367522,6.6421294,3,0,0,0,-9,0,-959.6004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,80,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,46,1,1,0,4.0296359,6.3382034,119.94283,3,52.91,33.450001,-9,-9,6,1,1,0,0,6,2,1,636,285125.91,0,0,810.66791 -1323,1602,2971,-9,-9,-9,2,1,0,48,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-960.51654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.299999,30.5,-9,-9,7,1,1,0,0,6,1,1,945,46189.27,0,0,1565.9745 -1324,1603,2972,-9,2973,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-975.46863,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,629,118916.59,0,0,1867.6313 -1324,1603,2973,-9,-9,-9,1,1,0,37,3,0,1,0,1,-9,2,1,0,0,3,8.495738,8.3781395,0,4,0,-9,0,-9,0,-1010.4486,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,22,0,15,1,0,-9,0,27.437551,27.437551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.900002,57.07,-9,-9,6,1,1,0,0,7,4,1,629,118916.59,0,0,1867.6313 -1325,1604,2974,2975,-9,-9,2,1,1,68,1,0,0,0,1,-9,1,1,0,0,3,8.4080238,8.5682859,5.5522423,1,0,-9,26,0,6,-6.1580009,0,0,0,62,1,4,1,2,2,2019,1,1,25,11,55,55,15,1,1,1,0,9.1633282,9.1633282,0,0,0,0,0,0,0,0,1,1,0,4.4809999,5.4737606,0,0,38.259998,60.700001,48.869999,58.549999,5,1,1,0,0,7,5,1,828,1940682,0,0,3668.5396 -1325,1604,2975,2974,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,4,8.6310396,8.2260427,0,1,0,-9,26,0,-6,80.992691,0,0,0,68,1,3,1,-9,-9,2019,1,2,8,0,65,66,15,1,0,1,0,8.5820799,8.5820799,0,0,0,0,0,0,0,0,1,1,0,2.1256905,0,0,0,48.869999,58.549999,38.259998,60.700001,6,1,1,0,0,7,5,1,828,1940682,0,0,3668.5396 -1325,1605,2976,-9,2975,2974,3,1,1,20,2,0,0,1,2,0,7,2,0,0,3,0,6.0197592,5.9605098,3,0,0,0,-9,0,-873.35931,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3805051,0,0,0,50.630001,50.990002,-9,-9,6,1,1,0,0,7,2,1,360,2743.8616,0,0,-558.55841 -1325,1606,2977,-9,2975,2974,4,1,0,20,2,0,0,1,2,0,7,2,0,0,5,0,6.2281666,6.1220646,3,0,0,0,-9,0,-972.12225,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3849869,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,7,2,1,145,4436.1572,0,0,-323.02307 -1326,1607,2978,-9,2981,2980,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.48254,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,1,1327,235907.03,0,0,1926.6876 -1326,1607,2979,-9,2981,2980,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.38879,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,1,1327,235907.03,0,0,1926.6876 -1326,1607,2980,2981,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.0954304,8.1230154,0,2,0,-9,8,0,-5,96.430389,0,0,0,47,2,4,1,2,2,2019,1,1,12,2,44,48,15,1,0,1,0,9.0628967,9.0628967,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,60.259998,54.200001,57.490002,6,1,1,0,0,12,3,1,1327,235907.03,0,0,1926.6876 -1326,1607,2981,2980,-9,-9,1,1,0,47,1,0,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,8,0,5,-1.236062,0,0,0,42,2,4,1,3,-9,2019,1,2,8,0,27,26,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,54.200001,57.490002,45.560001,60.259998,6,1,1,0,0,12,3,1,1327,235907.03,0,0,1926.6876 -1327,1608,2982,2983,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,8.3045378,8.3063765,0,1,0,-9,7,0,-1,8.1837416,0,0,0,52,2,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,14.082132,14.082132,0,0,0,0,0,0,0,0,0,0,0,3.0924156,0,0,0,53,55,52,54.509998,6,4,1,0,0,4,4,1,468.5,50288.363,0,0,1938.692 -1327,1608,2983,2982,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.3060675,7.540484,0,1,0,-9,7,0,1,43.958138,0,0,0,51,2,4,1,3,2,2019,1,2,8,0,28,28,15,1,0,1,0,6.9235024,6.9235024,0,0,0,0,0,0,0,7,0,0,0,1.2490321,0,0,3,52,54.509998,53,55,6,1,1,0,0,4,4,1,468.5,50288.363,0,0,1938.692 -1328,1609,2984,2987,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,1,3,7.375823,7.5622377,0,2,0,-9,7,0,-1,-106.49781,0,0,1,34,2,3,1,-9,-9,2019,1,1,28,11,32,32,15,1,1,1,0,5.8005338,5.8005338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,28.65,62.279999,4,1,1,0,0,5,3,1,541.5,101073.21,0,0,3411.2205 -1328,1609,2985,-9,2984,2987,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.63934,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,541.5,101073.21,0,0,3411.2205 -1328,1609,2986,-9,2984,2987,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.2023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,541.5,101073.21,0,0,3411.2205 -1328,1609,2987,2984,-9,-9,1,1,1,34,1,0,2,0,2,-9,2,1,0,1,3,8.1687298,8.0859375,0,2,0,-9,7,0,1,74.403702,0,0,0,33,2,3,1,3,2,2019,1,2,16,4,35,43,15,1,1,1,0,12.791336,12.791336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.65,62.279999,45,52,5,1,1,0,1,5,3,1,541.5,101073.21,0,0,3411.2205 -1329,1610,2988,2989,-9,-9,2,1,1,58,1,0,1,0,1,-9,3,3,0,0,4,8.8538818,9.2802925,8.629384,2,0,-9,6,0,12,120.4454,0,0,0,46,1,5,1,-9,-9,2019,3,1,5,0,42,41,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9426625,8.6070776,0,0,57.16,56.150002,51.73,58.82,2,1,1,1,0,9,5,1,1132,4131599.5,0,0,7153.0576 -1329,1610,2989,2988,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,5,8.3497953,8.5814953,0,2,0,-9,22,0,-12,-208.93848,0,0,0,58,1,4,3,2,1,2019,2,2,10,0,19,19,15,1,0,3,0,21.95418,21.95418,0,0,0,0,0,0,0,0,1,1,0,7.7879586,0,0,0,51.73,58.82,57.16,56.150002,6,1,1,0,0,9,5,1,1132,4131599.5,0,0,7153.0576 -1329,1610,2990,-9,2989,2988,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.71698,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,1132,4131599.5,0,0,7153.0576 -1330,1611,2991,2992,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,8.8262653,8.6615429,0,1,0,-9,6,0,1,22.035004,0,0,1,29,2,4,1,2,1,2019,1,3,6,0,38,78,15,1,0,1,0,12.147232,12.147232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,48,58,6,1,1,0,0,2,5,1,552,76465.664,0,0,5036.2578 -1330,1611,2992,2991,-9,-9,3,1,1,29,1,0,0,0,2,-9,2,1,0,0,4,8.444171,8.344346,0,1,0,-9,6,0,-1,4.3872848,-9,1,0,30,2,4,1,-9,-9,2019,1,1,8,0,37,0,15,1,0,1,0,21.471386,21.471386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,57.16,56.150002,6,1,1,0,0,2,5,1,552,76465.664,0,0,5036.2578 -1330,1612,2993,-9,-9,-9,2,1,0,28,2,0,0,0,2,0,7,2,0,0,4,7.9153152,7.9361019,0,3,0,0,0,-9,0,-889.30475,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,56,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,3,1,381,177745.36,0,0,1671.4812 -1331,1613,2994,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.0828838,7.9013867,0,3,0,-9,0,0,0,-993.8374,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,38,15,1,0,-9,0,11.738605,11.738605,0,0,0,0,0,0,0,0,0,0,0,7.1021175,0,0,0,49.759998,54.41,-9,-9,4,1,1,0,0,4,4,1,225,-45355.457,0,0,1641.3501 -1331,1614,2995,-9,-9,-9,2,1,1,32,2,0,0,0,1,-9,2,1,0,0,5,7.858645,7.9375119,0,3,0,-9,0,-9,0,-1011.0369,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,0,15,1,0,-9,0,9.9305506,9.9305506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,4,3,1,522,159900.38,0,0,1094.4437 -1332,1615,2996,-9,2997,-9,1,1,0,47,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1020.4167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4484344,0,0,0,43,39,-9,-9,7,1,1,1,1,10,1,1,1435,-28554.723,0,0,-646.41547 -1332,1616,2997,-9,-9,-9,2,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,5.7347279,5.6433473,3,0,0,0,-9,0,-902.263,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8422523,5.6390276,0,0,56.369999,29.57,-9,-9,6,1,1,0,0,10,2,1,461,208466.91,0,0,1448.2799 -1333,1617,2998,2999,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,5,7.8118353,7.7545104,0,1,0,-9,8,0,-4,57.289177,0,0,0,58,2,3,1,-9,-9,2019,1,1,10,0,7,35,15,1,0,1,0,39.58223,39.58223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.720001,56.189999,55.360001,51.57,6,1,1,0,0,1,4,1,1439,781419.81,0,0,2598.1304 -1333,1617,2999,2998,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.9855614,7.8802757,0,1,0,-9,19,0,4,-42.793774,0,0,0,54,2,5,1,-9,-9,2019,1,2,7,0,41,47,15,1,0,1,0,9.566288,9.566288,0,0,0,0,0,0,0,2,1,1,0,0,0,5.0963812,3,55.360001,51.57,45.720001,56.189999,5,1,1,0,0,1,4,1,1439,781419.81,0,0,2598.1304 -1334,1618,3000,-9,3001,3002,3,1,0,17,2,0,0,0,2,1,2,3,0,0,4,6.9574418,6.6626396,0,1,0,0,0,-9,0,-1041.2931,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,6,3,1,651.66669,812999.38,0,0,1121.7114 -1334,1618,3001,3002,-9,-9,1,1,0,47,1,0,0,0,2,-9,1,1,0,0,4,6.7521353,6.8602438,0,1,0,-9,16,0,-12,40.252174,0,0,0,59,2,2,1,3,3,2019,1,2,11,1,25,25,15,1,0,1,0,4.512146,4.512146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,59.57,29.65,7,1,1,0,0,6,3,1,651.66669,812999.38,0,0,1121.7114 -1334,1618,3002,3001,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,2,6.6125703,7.323843,6.4406781,1,0,-9,15,0,12,59.267429,0,0,0,47,2,4,1,3,3,2019,1,1,8,1,60,55,15,1,0,1,0,1.2953132,1.2953132,0,0,0,0,0,0,0,0,0,0,0,0,6.723515,0,0,59.57,29.65,46.389999,60.990002,5,1,1,0,0,6,3,1,651.66669,812999.38,0,0,1121.7114 -1335,1619,3003,3004,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,0,2,9.7258024,9.4890785,0,2,0,-9,20,0,4,150.9431,0,0,0,45,1,2,1,2,2,2019,1,2,7,0,50,0,15,1,0,1,0,42.560303,42.560303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,49.110001,35.23,50.59,6,1,1,0,0,11,5,1,743,741315.56,0,0,11305.491 -1335,1619,3004,3003,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,2,8.8336611,9.0892057,0,2,0,-9,8,0,-4,21.658274,0,0,0,49,2,2,1,-9,-9,2019,1,1,20,8,44,50,15,1,1,1,0,17.166353,17.166353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.23,50.59,52.830002,49.110001,3,1,1,0,0,11,5,1,743,741315.56,0,0,11305.491 -1335,1619,3005,-9,3004,3003,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-989.24194,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,11,5,1,743,741315.56,0,0,11305.491 -1336,1620,3006,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1039.2911,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3906274,0,0,0,37.52,61.389999,-9,-9,6,1,1,1,0,8,1,1,823,1154.0159,0,0,519.17297 -1337,1621,3007,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.6564713,8.4748106,0,3,0,0,0,-9,0,-1046.6848,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,35,28,15,1,0,-9,0,15.724372,15.724372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.849998,61.259998,-9,-9,6,2,3,0,0,2,5,1,757,-174417.27,0,0,1621.3829 -1338,1622,3008,-9,-9,-9,1,1,0,23,2,0,0,1,1,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.2063,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.59,43.84,-9,-9,7,1,1,0,0,11,1,0,654,0,0,0,0 -1339,1623,3009,3011,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,0,5,8.13309,8.2056837,0,2,0,-9,7,0,0,78.642693,0,0,1,32,1,4,1,2,2,2019,1,2,19,7,24,26,15,1,1,1,0,14.336023,14.336023,0,0,0,0,0,0,0,0,1,1,0,7.3864293,0,0,0,35.619999,64.709999,51.240002,58.84,5,1,1,0,0,13,4,1,816.5,207406.06,0,0,4324.8647 -1339,1623,3010,-9,3009,3011,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.237,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,816.5,207406.06,0,0,4324.8647 -1339,1623,3011,3009,-9,-9,2,1,1,32,1,0,2,0,1,-9,2,1,0,0,4,8.3457165,8.5623608,0,2,0,-9,7,0,0,24.13835,0,0,0,32,2,5,1,-9,-9,2019,1,1,11,0,56,56,15,1,0,1,0,13.160262,13.160262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,35.619999,64.709999,6,1,1,0,0,13,4,1,816.5,207406.06,0,0,4324.8647 -1339,1623,3012,-9,3009,3011,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.031,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,816.5,207406.06,0,0,4324.8647 -1340,1624,3013,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,4,0,8.3206644,8.5362558,3,0,0,0,-9,0,-964.39099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.8253975,8.3169489,0,3,66.059998,38.34,-9,-9,6,1,1,0,0,13,4,1,617,264058.28,0,0,2644.0376 -1341,1625,3014,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,2,1,0,0,2,7.4796324,7.4350781,0,3,0,0,0,-9,0,-830.93152,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,29,11,27,25,15,1,1,-9,0,8.2989254,8.2989254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.77,46.860001,-9,-9,2,1,1,0,1,5,3,1,266,67437.156,0,0,-338.29416 -1342,1626,3015,3016,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,6.4907374,6.2761731,0,1,0,-9,6,0,0,92.777512,0,0,0,58,2,4,1,2,1,2019,1,2,6,0,10,16,15,1,0,1,0,6.5647101,6.5647101,0,0,0,0,0,0,0,2,1,1,0,3.4669905,0,5.450264,3,57.16,56.150002,57.16,56.150002,6,1,1,0,0,13,3,1,506,671207.88,0,0,1489.95 -1342,1626,3016,3015,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.6913052,7.5853138,0,1,0,-9,6,0,0,-34.604679,0,0,0,58,1,4,1,2,3,2019,1,1,7,0,24,22,15,1,0,1,0,8.6806555,8.6806555,0,0,0,0,0,0,0,2,1,1,0,6.8800859,0,1.9310396,3,57.16,56.150002,57.16,56.150002,6,1,1,0,0,13,3,1,506,671207.88,0,0,1489.95 -1343,1627,3017,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,1,1,0,4.3537068,4.3318424,3,0,0,0,-9,0,-979.48682,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,5.0389457,0,0,0,2.2239699,0,0,1,1,0,0,4.400208,0,0,55.279999,11.58,-9,-9,5,1,1,0,0,13,1,0,764,203691.98,0,0,1753.2998 -1344,1628,3018,3019,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,5.6636543,5.7945433,1,0,-9,8,0,4,-25.449257,0,0,0,76,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1629491,5.3973169,0,0,41.34,56.619999,52.560001,33.09,6,1,1,0,0,9,2,1,373.5,254707.88,0,0,807.15851 -1344,1628,3019,3018,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,-4,16.054928,0,0,0,80,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.560001,33.09,41.34,56.619999,6,1,1,0,0,9,2,1,373.5,254707.88,0,0,807.15851 -1345,1629,3020,-9,3023,3024,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.9852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,1,749.40002,417872.72,0,0,3421.1934 -1345,1629,3021,-9,3023,3024,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.50317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,4,1,749.40002,417872.72,0,0,3421.1934 -1345,1629,3022,-9,3023,3024,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.5191,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,749.40002,417872.72,0,0,3421.1934 -1345,1629,3023,3024,-9,-9,2,1,0,36,1,0,3,0,2,-9,2,1,0,0,3,7.7541485,7.5160017,0,2,0,-9,13,0,-4,75.346352,0,0,1,40,2,4,1,2,2,2019,1,1,9,0,18,18,15,1,0,1,0,13.752427,13.752427,0,0,0,0,0,0,0,0,1,1,0,7.0004549,0,0,0,43.959999,55.639999,54.200001,57.490002,6,1,1,0,0,7,4,1,749.40002,417872.72,0,0,3421.1934 -1345,1629,3024,3023,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,0,4,8.399785,8.6325779,0,2,0,-9,13,0,4,-55.432804,0,0,0,36,2,3,1,2,2,2019,1,2,9,0,54,39,15,1,0,1,0,11.365319,11.365319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,43.959999,55.639999,7,1,1,0,0,7,4,1,749.40002,417872.72,0,0,3421.1934 -1346,1630,3025,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,3,0,5.9688177,6.1637607,3,0,0,0,-9,0,-1064.9578,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1290679,0,0,59.419998,26.42,-9,-9,2,1,1,0,0,9,2,0,578,479057.69,0,0,2850.6426 -1347,1631,3026,-9,3029,3028,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1091.4404,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,4,0,542,-30664.789,0,0,3259.3462 -1347,1631,3027,-9,3029,3028,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.15363,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,5,4,0,542,-30664.789,0,0,3259.3462 -1347,1631,3028,3029,-9,-9,2,1,1,28,1,2,2,0,1,-9,2,1,0,0,4,8.9688854,9.0659695,0,2,0,-9,3,0,-1,12.201087,0,1,0,29,3,3,1,-9,-9,2019,1,1,13,1,59,39,15,1,0,1,0,15.732576,15.732576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.73,53.98,57.09,46.700001,5,1,1,0,0,5,4,0,542,-30664.789,0,0,3259.3462 -1347,1631,3029,3028,-9,-9,1,1,0,29,1,2,2,0,3,-9,5,1,0,0,3,7.4196854,7.1672845,0,2,0,-9,3,0,1,7.9822035,0,1,1,28,1,4,1,-9,-9,2019,1,2,11,1,16,16,15,1,0,1,0,10.433074,10.433074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.700001,55.73,53.98,6,1,1,0,0,5,4,0,542,-30664.789,0,0,3259.3462 -1348,1632,3030,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,0,3,0,7.821032,7.9297762,3,0,0,0,-9,0,-968.85938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9092045,7.8237681,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,12,3,1,99,1128814.8,0,0,1072.8888 -1349,1633,3031,3032,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,5,0,9,-69.724327,0,0,0,53,2,4,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,53,54,5,1,1,0,0,12,4,0,329.5,661862.31,0,0,2472.7678 -1349,1633,3032,3031,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.3865414,8.6922817,0,1,0,-9,5,0,0,50.480381,0,0,0,62,3,3,3,3,3,2019,2,2,9,1,60,54,15,1,0,3,0,7.0086484,7.0086484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49,48,6,1,1,0,0,12,4,0,329.5,661862.31,0,0,2472.7678 -1350,1634,3033,3034,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,1,31.103329,0,0,0,70,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1303873,0,0,0,58.330002,39.490002,48,37,4,1,1,0,0,10,3,1,695,865402.25,0,0,3713.2434 -1350,1634,3034,3033,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,7.6244645,7.9721093,1,0,-9,44,0,-1,-20.834507,0,0,0,71,2,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.01091,7.8557539,0,0,48,37,58.330002,39.490002,5,1,1,0,0,10,3,1,695,865402.25,0,0,3713.2434 -1351,1635,3035,3036,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,6.3944082,7.4976306,6.9586549,1,0,-9,9,0,4,-106.31968,0,0,0,65,1,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3053985,6.7264338,0,0,61.02,44.799999,51.77,58.57,6,1,1,0,0,13,4,1,1844.5,1316893.5,0,0,2903.5088 -1351,1635,3036,3035,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.8662558,8.1371126,1,0,-9,9,0,-4,46.669224,0,0,0,69,2,4,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8828492,2.3108003,3,51.77,58.57,61.02,44.799999,6,1,1,0,0,13,4,1,1844.5,1316893.5,0,0,2903.5088 -1352,1636,3037,-9,3038,-9,2,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-956.40808,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,0,1398.6666,-17943.748,0,0,1785.1326 -1352,1636,3038,-9,-9,-9,1,1,0,28,2,0,2,0,2,-9,2,1,0,0,4,8.0945024,7.9735785,0,4,0,0,0,-9,0,-1040.3091,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,45,15,1,0,-9,0,10.543316,10.543316,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,0,1398.6666,-17943.748,0,0,1785.1326 -1352,1636,3039,-9,3038,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-933.71454,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,0,1398.6666,-17943.748,0,0,1785.1326 -1353,1637,3040,-9,-9,-9,1,1,1,84,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1075.5002,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5721004,0,0,0,54,46,-9,-9,6,1,1,0,0,7,1,0,159,413713.25,0,0,827.12177 -1354,1638,3041,-9,-9,-9,2,1,1,38,2,0,1,0,1,-9,2,1,0,0,3,8.400877,8.3264818,0,2,0,-9,8,0,2,-138.34319,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,13,1,42,42,15,1,0,-9,0,12.745946,12.745946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.740002,55.02,52.369999,56.93,5,1,1,0,0,12,5,1,2702,230474.97,0,0,1473.678 -1355,1639,3042,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,2,7.9024334,7.7951651,0,3,0,0,0,-9,0,-1047.3361,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,26,11,39,40,15,1,1,-9,0,6.1764083,6.1764083,0,0,0,0,0,0,0,0,1,1,0,1.536528,0,0,0,41.580002,52.860001,-9,-9,2,1,1,0,0,6,3,1,354,18534.566,0,0,889.60919 -1355,1640,3043,3044,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,5.9113026,6.2161593,1,0,-9,5,0,-3,54.844994,0,0,0,77,3,3,3,-9,-9,2019,4,3,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6335863,6.3533626,0,0,42.939999,37.169998,53.970001,37.32,6,1,1,0,0,6,2,1,739,450033.94,0,0,1288.8698 -1355,1640,3044,3043,-9,-9,3,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,6.5428648,6.304626,1,0,-9,5,0,3,139.91202,0,0,0,74,2,2,3,-9,-9,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3801111,6.4063969,0,0,53.970001,37.32,42.939999,37.169998,5,1,1,0,0,6,2,1,739,450033.94,0,0,1288.8698 -1356,1641,3045,3046,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,8.3522625,8.4891682,1,0,-9,5,0,0,145.53247,-9,0,0,76,1,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4357877,8.1746445,0,0,54,46,57.119999,38.439999,6,1,1,0,0,11,5,1,793,2735734.5,0,0,5268.2515 -1356,1641,3046,3045,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,0,3,0,8.4624891,8.5221243,1,0,-9,52,0,0,-42.565891,0,0,0,76,1,3,3,2,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,6.8457766,0,0,0,0,0,0,1,1,0,8.338769,6.2998986,0,0,57.119999,38.439999,54,46,6,1,1,0,0,11,5,1,793,2735734.5,0,0,5268.2515 -1357,1642,3047,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1035.1777,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.3185451,0,0,0,37.759998,33.060001,-9,-9,3,1,1,0,0,12,1,1,93,-169327.98,0,0,684.27673 -1358,1643,3048,-9,3049,3050,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.01276,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,789.66669,1912510.1,0,0,3838.7808 -1358,1643,3049,3050,-9,-9,1,1,0,46,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,10,0,-6,14.957642,0,0,0,52,1,5,1,2,2,2019,3,2,20,8,0,37,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.720001,56.810001,34.220001,57.25,5,4,2,1,0,5,5,1,789.66669,1912510.1,0,0,3838.7808 -1358,1643,3050,3049,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,0,5,9.3699665,9.5936918,0,2,0,-9,10,0,6,115.73419,0,0,0,46,2,3,3,-9,-9,2019,2,1,22,10,48,45,15,1,1,3,0,29.142431,29.142431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.220001,57.25,41.720001,56.810001,6,1,1,0,0,5,5,1,789.66669,1912510.1,0,0,3838.7808 -1358,1644,3051,-9,3049,3050,3,1,1,20,2,0,1,0,2,-9,7,2,0,0,4,6.0592237,5.9433727,0,3,0,0,0,-9,0,-958.06854,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,30,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,2,1,209,17758.867,0,0,-270.68347 -1359,1645,3052,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,1,1,0,0,2,9.1939478,9.2061119,0,3,0,0,0,-9,0,-930.45404,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,37,39,15,1,0,-9,0,25.810989,25.810989,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,45.09,47.740002,-9,-9,1,1,1,0,1,8,5,1,125,1166539.5,0,0,3050.512 -1360,1646,3053,3055,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,8.2837086,7.8833871,0,2,0,-9,18,0,5,-65.85968,0,0,0,41,1,5,1,3,2,2019,1,2,10,0,40,45,15,1,0,1,0,12.789625,12.789625,0,0,0,0,0,0,0,0,1,1,0,3.3103747,0,0,0,55.09,55.869999,57.060001,57.759998,6,1,1,0,0,10,4,1,342,366309.63,0,0,3322.8875 -1360,1646,3054,-9,3055,3053,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.7751,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,342,366309.63,0,0,3322.8875 -1360,1646,3055,3053,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,5,8.5385494,8.3496494,0,2,0,-9,18,0,-5,-69.281303,0,0,1,46,1,5,1,2,2,2019,1,1,6,0,34,33,15,1,0,1,0,16.503187,16.503187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,55.09,55.869999,6,1,1,0,0,10,4,1,342,366309.63,0,0,3322.8875 -1360,1646,3056,-9,3055,3053,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.50629,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,342,366309.63,0,0,3322.8875 -1361,1647,3057,3058,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,7.8158021,7.5353107,0,1,0,-9,6,0,-6,36.20026,0,1,1,33,1,4,1,-9,-9,2019,1,2,6,1,41,40,15,1,0,1,0,8.3047075,8.3047075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,39.41,61.57,7,1,1,0,0,9,4,1,764.5,-3022.1338,0,0,3110.2434 -1361,1647,3058,3057,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,8.6521015,8.4664516,0,1,0,-9,6,0,6,79.059746,0,0,0,27,2,4,1,-9,-9,2019,1,1,13,1,38,38,15,1,0,1,0,13.894371,13.894371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.41,61.57,41.299999,60.77,5,1,1,0,0,9,4,1,764.5,-3022.1338,0,0,3110.2434 -1362,1648,3059,3060,3061,-9,3,1,0,23,1,0,0,0,2,-9,2,1,0,0,5,8.1492443,7.6463661,0,1,0,-9,1,-9,-5,-34.144478,-9,1,1,28,2,4,1,2,-9,2019,1,1,8,0,40,0,15,1,0,1,0,6.8361807,6.8361807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,58.150002,52.91,7,1,1,0,0,5,4,1,526.5,-98731.234,0,0,2538.8066 -1362,1648,3060,3059,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,7.8664446,7.8001175,0,1,0,1,1,-9,5,43.259228,0,1,0,23,2,5,1,2,3,2019,1,3,5,0,50,39,15,1,0,1,0,7.6502481,7.6502481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,54.099998,59.110001,6,1,1,0,0,5,4,1,526.5,-98731.234,0,0,2538.8066 -1362,1649,3061,-9,-9,-9,2,1,0,50,3,0,0,0,2,-9,2,1,0,0,4,7.2166748,7.9046445,5.8393011,3,0,-9,0,-9,0,-1106.8939,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,28,0,15,1,0,-9,0,7.0379353,7.0379353,0,0,0,0,0,0,0,0,1,1,0,0,6.2217407,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,5,3,1,466,21096.551,0,0,2915.0083 -1363,1650,3062,3063,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,4,0,8.4060984,8.1913471,1,0,-9,56,0,3,-83.063927,0,0,0,76,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2367303,8.3902874,0,0,59.860001,42.52,51.98,28.98,6,1,1,0,0,1,3,1,809,725400.44,0,0,2340.502 -1363,1650,3063,3062,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,56,0,-3,-21.020403,0,0,0,79,1,4,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9443922,0,0,0,51.98,28.98,59.860001,42.52,6,1,1,0,0,1,3,1,809,725400.44,0,0,2340.502 -1364,1651,3064,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-946.57916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.869999,21.25,-9,-9,1,1,1,0,0,1,1,0,590,126144.2,0,0,2395.2568 -1365,1652,3065,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,1,8.1121712,7.8304143,0,3,0,0,0,-9,0,-1060.9841,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,41,40,15,1,0,-9,0,7.9709716,7.9709716,0,0,0,0,0,0,0,0,0,0,0,1.9930565,0,0,0,49.299999,22.620001,-9,-9,1,3,4,0,1,8,4,0,1090,369740.53,0,0,2373.7778 -1365,1653,3066,-9,3065,-9,2,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.707406,8.7278395,0,3,0,0,0,-9,0,-880.62671,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,37,40,15,1,1,-9,1,19.388376,19.388376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.279999,52.860001,-9,-9,3,3,4,0,0,8,5,0,47,99866.125,0,0,1730.2196 -1366,1654,3067,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,5,8.2487297,8.3101482,0,3,0,0,0,-9,0,-1003.697,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,70,50,15,1,0,-9,0,6.321969,6.321969,0,0,0,0,0,0,0,0,0,0,0,6.7512007,0,0,0,43.919998,62.310001,-9,-9,5,1,1,0,0,8,4,0,1167,559931.75,0,0,3728.7908 -1367,1655,3068,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,0,4,0,6.7336783,6.8045459,3,0,0,0,-9,0,-959.4953,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7108259,0,0,60.119999,54.799999,-9,-9,1,2,3,0,0,11,2,0,912,303323.59,0,0,684.48273 -1368,1656,3069,3071,-9,-9,2,1,1,50,1,0,2,0,2,-9,1,1,0,0,2,7.1527047,7.1727519,0,2,0,-9,2,0,6,21.183537,0,0,0,44,3,3,1,-9,-9,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.919998,28.85,41.34,56.619999,7,1,1,0,0,2,2,0,643,16264.091,0,0,1597.2706 -1368,1656,3070,-9,3071,3069,6,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1003.267,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,2,2,0,643,16264.091,0,0,1597.2706 -1368,1656,3071,3069,-9,-9,1,1,0,44,1,0,2,0,3,-9,2,1,0,0,3,0,0,0,2,0,-9,2,0,-6,-30.541452,0,0,1,50,2,2,1,-9,-9,2019,1,2,14,3,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8161507,0,0,0,41.34,56.619999,37.919998,28.85,5,1,1,0,0,2,2,0,643,16264.091,0,0,1597.2706 -1368,1657,3072,-9,3071,3069,3,1,1,23,2,0,2,0,3,-9,2,1,0,0,3,7.0609822,7.0722599,0,3,0,0,0,-9,0,-1078.0654,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.380001,29.92,-9,-9,1,1,1,0,0,2,2,0,657,116108.47,0,0,1275.5752 -1368,1658,3073,-9,3071,3069,4,1,1,22,2,0,2,0,3,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-920.15411,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,30,10,0,48,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.529999,55.610001,-9,-9,2,1,1,0,0,2,1,0,169,0,0,0,0 -1368,1659,3074,-9,3071,3069,5,1,0,18,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-959.46985,1,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.61957186,0,0,0,59.880001,40.459999,-9,-9,7,1,1,0,0,2,2,0,926,0,0,0,12.719046 -1369,1660,3075,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,7,2,0,0,3,5.8691225,6.3707876,3.8552113,3,0,0,0,-9,0,-1018.426,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,8,10,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2486954,0,0,0,28.139999,49.43,-9,-9,3,1,1,0,0,6,2,0,695,63356.398,0,0,1443.3801 -1370,1661,3076,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,0,2,0,6.5252032,5.930263,3,0,0,0,-9,0,-1013.6855,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7698617,5.9309278,0,0,58.919998,27.65,-9,-9,7,1,1,0,0,2,2,0,2786,220873.73,0,0,868.02747 -1371,1662,3077,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1011.0513,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.27,26.1,-9,-9,6,1,1,0,1,13,1,0,340,-304.49805,0,0,1406.6908 -1372,1663,3078,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,3,0,6.8674788,6.8324585,3,0,0,0,-9,0,-1007.0998,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0491629,0,0,51,48,-9,-9,5,3,4,0,0,6,2,1,289,611124.06,0,0,1857.7244 -1373,1664,3079,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-983.49969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,-9,-9,5,1,1,0,0,13,1,1,143,112909.25,0,0,1196.6094 -1374,1665,3080,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,0,3,8.8175497,8.9435492,0,3,0,0,0,-9,0,-1031.5366,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,50,45,15,1,1,-9,0,13.285877,13.285877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.02,64.339996,-9,-9,3,1,1,0,0,8,5,1,593,1650054.6,0,0,2526.5 -1375,1666,3081,-9,3083,3082,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-869.26294,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,3481.5,56579.207,0,0,4305.4463 -1375,1666,3082,3083,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,0,4,8.9422607,8.9214754,0,2,0,-9,6,0,0,78.062157,0,0,0,35,2,5,1,-9,-9,2019,1,1,10,0,38,46,15,1,0,1,0,23.963573,23.963573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.060001,57.759998,4,1,1,0,0,12,4,1,3481.5,56579.207,0,0,4305.4463 -1375,1666,3083,3082,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,0,5,7.5644407,7.9228191,0,2,0,-9,6,0,0,104.88284,0,0,1,35,2,4,1,3,3,2019,1,2,6,0,22,23,15,1,0,1,0,8.9333544,8.9333544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,12,4,1,3481.5,56579.207,0,0,4305.4463 -1375,1666,3084,-9,3083,3082,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-959.1806,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,3481.5,56579.207,0,0,4305.4463 -1376,1667,3085,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,0,3,0,7.7604532,7.5110312,3,0,0,0,-9,0,-1029.8994,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8298843,7.6829553,0,0,60.450001,41.049999,-9,-9,6,1,1,0,0,10,3,1,246,806559.44,0,0,1782.1394 -1377,1668,3086,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,5,0,8.0079908,8.2844601,3,0,0,0,-9,0,-1034.3739,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3976316,8.0034437,8.7242556,3,62.389999,56.709999,-9,-9,6,1,1,0,0,11,4,1,169,833201.5,0,0,2643.925 -1378,1669,3087,3088,-9,-9,1,1,1,65,1,0,3,0,3,-9,2,1,0,0,3,0,0,0,2,0,-9,46,0,7,0,0,0,0,58,3,1,3,3,3,2019,2,2,12,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.119999,26.870001,42.279999,26.860001,6,2,3,0,0,8,1,0,502.5,22948.734,0,0,913.3208 -1378,1669,3088,3087,-9,-9,2,1,0,58,1,0,3,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,9,0,-7,0,0,0,0,65,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.279999,26.860001,53.119999,26.870001,4,2,3,0,0,8,1,0,502.5,22948.734,0,0,913.3208 -1378,1670,3089,-9,3092,3090,6,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.7469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,8,2,0,836.75,27557.227,0,0,2191.5469 -1378,1670,3090,3092,-9,-9,4,1,1,47,1,0,3,0,2,-9,2,1,0,0,3,7.3436971,7.4710288,0,2,0,-9,23,0,7,67.298119,0,0,0,40,2,2,2,3,3,2019,2,3,14,3,34,24,15,1,0,2,0,5.2189007,5.2189007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.540001,31.389999,40.240002,27.889999,3,2,3,0,0,8,2,0,836.75,27557.227,0,0,2191.5469 -1378,1670,3091,-9,3092,3090,7,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1096.7622,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,836.75,27557.227,0,0,2191.5469 -1378,1670,3092,3090,3088,3087,3,1,0,40,1,0,3,0,2,0,7,2,0,0,2,0,0,0,2,0,-9,23,0,-7,3.9975212,-9,0,1,47,2,3,1,3,3,2019,3,4,14,2,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.240002,27.889999,40.540001,31.389999,3,2,3,0,0,8,2,0,836.75,27557.227,0,0,2191.5469 -1378,1671,3093,-9,3092,3090,5,1,0,18,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1027.5492,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.09,39.689999,-9,-9,7,2,3,0,1,8,2,0,333,-93792.75,0,0,0 -1379,1672,3094,3095,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,0,3,0,9.3426495,8.9230785,1,0,-9,56,0,0,176.04965,0,0,0,81,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1188278,8.5083179,0,0,62.66,52.400002,63.150002,35.66,7,1,1,0,0,9,5,1,1147.5,3344915.5,0,0,10421.896 -1379,1672,3095,3094,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,0,3,0,6.9660258,6.725728,1,0,-9,56,0,0,17.888109,0,0,0,81,1,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.260046,6.2441492,0,0,63.150002,35.66,62.66,52.400002,7,1,1,0,0,9,5,1,1147.5,3344915.5,0,0,10421.896 -1380,1673,3096,-9,-9,-9,1,1,0,57,3,0,1,0,2,-9,2,1,0,0,2,6.8652802,7.3159251,0,4,0,0,0,-9,0,-898.20746,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,6,26,27,15,1,1,-9,0,6.4914398,6.4914398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.029999,40.189999,-9,-9,2,1,1,0,0,4,2,0,591,145144.16,0,0,740.95245 -1380,1673,3097,-9,3096,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,5.271389,5.5653477,4,0,0,0,-9,0,-1082.3981,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3138099,0,0,0,48,59,-9,-9,5,1,1,0,1,4,2,0,591,145144.16,0,0,740.95245 -1380,1674,3098,-9,3096,-9,2,1,0,19,2,0,1,0,2,0,7,2,0,0,4,5.9912014,5.8599243,0,3,0,0,0,-9,0,-1066.2041,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,13,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,1,4,2,0,643,-182227.92,0,0,855.17267 -1381,1675,3099,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,4,3,0,0,3,0,7.8304563,8.5287771,3,0,0,0,-9,0,-1096.0204,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9626284,8.2903385,0,0,61.560001,36.330002,-9,-9,6,1,1,0,0,13,4,0,2541,343534.53,0,0,2235.2402 -1382,1676,3100,3101,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.802927,8.9337749,0,1,0,-9,29,0,-3,-75.369003,0,0,0,55,2,3,1,2,2,2019,1,2,22,10,40,50,15,1,1,1,0,19.093801,19.093801,0,0,0,0,0,0,0,2,0,0,0,0,0,8.1254501,3,35.709999,44.380001,41.82,57.720001,3,1,1,0,0,10,5,1,1166.5,501895.13,0,0,5172.1895 -1382,1676,3101,3100,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,9.357975,9.4667816,0,1,0,-9,29,0,3,-11.659871,0,0,0,52,2,3,1,2,-9,2019,1,1,11,0,37,35,15,1,0,1,0,39.146797,39.146797,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,41.82,57.720001,35.709999,44.380001,5,1,1,0,0,10,5,1,1166.5,501895.13,0,0,5172.1895 -1382,1677,3102,-9,3101,3100,3,1,1,24,2,0,0,0,2,0,7,2,0,0,4,0,6.4679284,6.724093,3,0,0,0,-9,0,-999.55762,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,23,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.844305,0,0,0,38.040001,64.75,-9,-9,3,1,1,0,0,10,2,1,201,-58960.813,0,0,-379.10339 -1383,1678,3103,3104,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,5,8.7165279,8.7103043,0,1,0,-9,2,0,0,49.129196,0,1,0,27,1,2,1,2,1,2019,1,2,9,1,35,35,15,1,0,1,0,17.164991,17.164991,0,0,0,0,0,0,0,0,0,0,0,2.4200315,0,0,0,51.139999,60.450001,24.9,27.84,6,1,1,0,0,9,5,1,461.5,44812.402,0,0,3139.8789 -1383,1678,3104,3103,-9,-9,2,1,0,27,1,0,0,0,1,-9,5,1,0,0,2,8.438199,8.638175,0,1,0,-9,2,0,0,79.110489,0,1,1,27,2,5,1,-9,-9,2019,1,1,32,12,41,37,15,1,1,1,0,14.424951,14.424951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.9,27.84,51.139999,60.450001,3,1,1,0,0,9,5,1,461.5,44812.402,0,0,3139.8789 -1384,1679,3105,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,4,3,0,0,4,7.080482,8.4165707,7.571115,3,0,0,0,-9,0,-872.13367,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,16,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6578507,7.8276548,0,0,54.790001,55.860001,-9,-9,2,1,1,0,0,10,4,1,1595,1835863.8,0,0,1404.3492 -1385,1680,3106,3107,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,7.2016449,7.5210915,1,0,-9,7,0,6,105.43591,0,0,0,75,2,2,3,1,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3795834,7.005497,7.7447968,3,57.91,46.310001,50.09,39.27,6,1,1,0,0,12,2,1,435.5,358078.94,0,0,2121.521 -1385,1680,3107,3106,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-6,-87.20208,0,0,0,81,3,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7103412,0,11.417386,3,50.09,39.27,57.91,46.310001,6,1,1,0,0,12,2,1,435.5,358078.94,0,0,2121.521 -1386,1681,3108,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,97,3,0,0,2,7.1184459,7.0674367,0,3,0,-9,0,-9,0,-943.51093,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,7,32,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.639999,54.860001,-9,-9,4,1,1,0,0,2,3,1,658,-4679.1372,0,0,1775.1041 -1387,1682,3109,3111,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.9343615,7.5799761,0,2,0,-9,9,0,2,24.796423,0,0,1,36,1,4,1,-9,2,2019,1,2,17,5,14,17,15,1,1,1,0,15.845773,15.845773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.59,46.880001,43.73,59.700001,5,1,1,0,0,12,4,1,743.75,29625.381,0,0,3382.4158 -1387,1682,3110,-9,3109,3111,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.3666,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,12,4,1,743.75,29625.381,0,0,3382.4158 -1387,1682,3111,3109,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,0,4,8.5295849,8.5874262,0,2,0,-9,9,0,-2,-82.419884,0,0,0,38,2,3,1,-9,-9,2019,1,1,10,0,45,35,15,1,0,1,0,12.079222,12.079222,0,0,0,0,0,0,0,0,1,1,0,7.5114036,0,0,0,43.73,59.700001,30.59,46.880001,6,1,1,0,0,12,4,1,743.75,29625.381,0,0,3382.4158 -1387,1682,3112,-9,3109,3111,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.09863,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,743.75,29625.381,0,0,3382.4158 -1388,1683,3113,3114,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,5,8.7899885,8.8947754,0,1,0,-9,29,0,0,-51.40712,0,0,0,62,1,2,3,3,3,2019,2,1,14,4,43,42,15,1,1,4,0,22.624041,22.624041,0,0,0,0,0,0,0,0,0,0,0,7.0905142,0,0,0,48.18,61.799999,60.650002,24.950001,6,1,1,0,0,6,5,1,1755.5,1736366.4,0,0,5389.1582 -1388,1683,3114,3113,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,0,2,4.742137,8.109519,7.7322869,1,0,-9,29,0,9,18.132109,0,0,0,53,1,5,1,3,3,2019,3,2,8,1,0,25,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.30955,7.6627312,0,0,60.650002,24.950001,48.18,61.799999,6,1,1,0,0,6,5,1,1755.5,1736366.4,0,0,5389.1582 -1389,1684,3115,3116,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,6.9041185,6.9834218,1,0,-9,2,0,3,6.12852,0,0,0,73,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,7.0733819,34.616241,1,54,46,51,46,6,1,1,0,0,4,2,1,293.5,199784.16,0,0,2308.469 -1389,1684,3116,3115,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,2,0,-3,-42.765812,0,0,0,76,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,4.9835734,3.3632183,0,0,0,0,1,1,0,0,0,0,0,51,46,54,46,6,1,1,0,0,4,2,1,293.5,199784.16,0,0,2308.469 -1390,1685,3117,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,1,1,6.8778429,7.7066374,5.958569,3,0,0,0,-9,0,-1110.2228,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,24,21,15,1,1,-9,0,6.2443814,6.2443814,0,0,0,0,0,0,0,0,1,1,0,6.8472786,6.5057168,0,0,46.330002,30.41,-9,-9,4,1,1,0,0,10,3,1,3749,682373.56,0,0,1763.0503 -1391,1686,3118,-9,3120,3119,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1096.679,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,2,5,1,758,344247.16,0,0,4538.5444 -1391,1686,3119,3120,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.2155542,8.0367527,0,2,0,-9,22,0,1,150.44098,0,0,0,47,1,4,1,2,2,2019,1,2,8,1,43,37,15,1,0,1,0,8.8037024,8.8037024,0,0,0,0,0,0,0,0,1,1,0,.97776395,0,0,0,52.93,55.310001,46.439999,59.619999,6,1,1,0,0,2,5,1,758,344247.16,0,0,4538.5444 -1391,1686,3120,3119,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,4,8.9565716,9.1819363,0,2,0,-9,22,0,-1,-81.816338,0,0,0,48,2,4,1,2,2,2019,1,1,12,0,41,36,15,1,0,1,0,21.247852,21.247852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.439999,59.619999,52.93,55.310001,6,1,1,0,0,2,5,1,758,344247.16,0,0,4538.5444 -1392,1687,3121,3123,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,2,8.4472532,8.3254366,0,2,0,-9,8,0,6,37.645123,0,0,0,45,2,3,1,3,3,2019,1,2,10,0,47,42,15,1,0,1,0,9.9402456,9.9402456,0,0,0,0,0,0,0,0,1,1,0,6.0109658,0,0,0,48.380001,49.66,38.919998,49.799999,6,1,1,0,0,2,4,1,510.75,546353.69,0,0,2357.5583 -1392,1687,3122,-9,3123,3121,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,5.6224017,5.8050404,0,2,0,0,0,-9,0,-985.57184,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0943463,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,2,4,1,510.75,546353.69,0,0,2357.5583 -1392,1687,3123,3121,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,3,7.8157997,7.4739165,0,2,0,-9,8,0,-6,-35.769955,0,0,0,51,2,2,1,-9,-9,2019,1,1,17,5,29,29,15,1,1,1,0,8.2539158,8.2539158,0,0,0,0,0,0,0,0,1,1,0,6.4531298,0,0,0,38.919998,49.799999,48.380001,49.66,5,1,1,0,0,2,4,1,510.75,546353.69,0,0,2357.5583 -1392,1687,3124,-9,3123,3121,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.2147,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,4,1,510.75,546353.69,0,0,2357.5583 -1393,1688,3125,-9,3127,3129,6,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1100.1202,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,13,2,0,593.40002,44657.348,0,0,4484.3169 -1393,1688,3126,-9,3127,-9,7,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1059.8845,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,13,2,0,593.40002,44657.348,0,0,4484.3169 -1393,1688,3127,3129,-9,-9,2,1,0,40,1,0,2,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,7,0,-19,16.801174,0,0,1,59,2,2,3,-9,-9,2019,4,1,17,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,85.18499,3,46,51,34.299999,22.309999,4,1,1,0,0,13,2,0,593.40002,44657.348,0,0,4484.3169 -1393,1688,3128,-9,3127,3129,5,1,1,17,2,0,2,0,2,1,2,3,0,0,3,7.6917424,7.5418034,0,2,0,0,0,-9,0,-1075.2795,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,37,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.02,56.150002,-9,-9,6,1,1,0,0,13,2,0,593.40002,44657.348,0,0,4484.3169 -1393,1688,3129,3127,-9,-9,1,1,1,59,1,0,2,0,2,-9,4,3,0,1,2,0,7.4853129,7.4274192,2,0,-9,7,0,19,-21.822584,0,0,0,40,2,3,3,2,2,2019,4,2,23,11,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.7172709,5.5330029,3,34.299999,22.309999,46,51,2,1,1,0,0,13,2,0,593.40002,44657.348,0,0,4484.3169 -1393,1689,3130,-9,3127,-9,3,1,1,21,2,0,2,1,2,0,7,2,0,0,4,6.9085007,6.6059628,0,3,0,0,0,-9,0,-1087.6097,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.369999,-9,-9,6,1,1,0,0,13,2,0,581,150877.75,0,0,-76.610184 -1393,1690,3131,-9,3127,-9,4,1,1,19,2,0,2,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-895.00183,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,33.330002,-9,-9,5,1,1,1,0,13,1,0,639,-151801.64,0,0,-82.789131 -1394,1691,3132,3133,-9,-9,1,1,0,54,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,22,-9,-1,151.4072,-9,0,0,55,1,3,1,2,1,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.02,49.43,54.900002,54.529999,6,2,3,0,0,8,2,1,511,115072.99,0,0,621.67926 -1394,1691,3133,3132,-9,-9,2,1,1,55,1,0,0,0,1,-9,1,1,0,0,3,7.1515598,7.3834562,0,1,0,-9,1,-9,1,99.77459,-9,0,0,54,2,4,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,4.3273726,4.3273726,0,0,0,0,0,0,0,0,0,0,0,7.4981346,0,0,0,54.900002,54.529999,45.02,49.43,6,2,3,0,0,8,2,1,511,115072.99,0,0,621.67926 -1394,1692,3134,-9,3132,3133,3,1,0,21,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1083.1383,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.529999,56.5,-9,-9,6,2,3,0,0,8,1,1,910,0,0,0,0 -1394,1693,3135,-9,3132,3133,4,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.5374022,8.4172153,0,3,0,-9,0,-9,0,-1044.9321,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,48,0,15,1,0,-9,1,15.228826,15.228826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,-9,-9,6,2,3,0,0,8,5,1,1272,-50406.949,0,0,1580.6467 -1395,1694,3136,3137,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,6.6748147,7.0878921,1,0,-9,8,0,2,-18.220949,0,0,0,82,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5795143,7.0895872,0,0,45.220001,53.919998,47.32,47.470001,7,1,1,0,0,4,2,1,1073,285643.31,0,0,2569.2698 -1395,1694,3137,3136,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-2,-24.921824,0,0,0,84,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5371222,0,0,0,47.32,47.470001,45.220001,53.919998,7,1,1,0,0,4,2,1,1073,285643.31,0,0,2569.2698 -1396,1695,3138,3139,-9,-9,1,1,0,63,1,0,0,0,1,-9,1,1,0,0,2,6.8671341,7.0306072,0,1,0,-9,7,0,3,.81002516,0,0,0,60,2,4,3,1,2,2019,2,2,22,10,8,0,15,1,1,4,0,15.499763,15.499763,0,0,0,0,0,0,0,0,0,0,0,3.3747861,0,0,0,30.309999,39.099998,62.490002,55.09,5,1,1,0,0,4,5,1,597,1954620.8,0,0,3747.5605 -1396,1695,3139,3138,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,8.8154087,8.9363031,1,0,-9,7,0,-3,18.317398,0,0,0,63,1,2,1,1,2,2019,3,1,6,0,0,28,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8392787,8.6408691,0,0,62.490002,55.09,30.309999,39.099998,6,1,1,0,0,4,5,1,597,1954620.8,0,0,3747.5605 -1397,1696,3140,-9,3141,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-992.14795,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,0,923.5,-37338.723,0,0,1373.9709 -1397,1696,3141,-9,-9,-9,1,1,0,31,2,0,1,0,1,-9,2,1,0,0,4,8.140214,8.7990971,0,4,0,0,0,-9,0,-878.11829,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,80,15,15,1,0,-9,0,5.842236,5.842236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,1,12,4,0,923.5,-37338.723,0,0,1373.9709 -1398,1697,3142,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,7.6159887,7.6950927,3,0,0,0,-9,0,-886.72443,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.8275738,7.7589583,0,0,42.91,46.48,-9,-9,4,1,1,0,0,11,3,0,187,396700.03,0,0,2330.1431 -1399,1698,3143,3145,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.782548,7.1580591,0,2,0,-9,17,0,-14,-35.357719,0,0,0,59,2,2,1,2,2,2019,1,2,18,6,20,20,15,1,1,1,0,13.041212,13.041212,0,0,0,0,0,0,0,0,1,1,0,1.1687168,0,0,0,29.290001,62.09,49.189999,39.799999,5,1,1,0,0,8,4,1,1405.6666,276854.97,0,0,2480.0847 -1399,1698,3144,-9,3143,3145,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1045.5537,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,8,4,1,1405.6666,276854.97,0,0,2480.0847 -1399,1698,3145,3143,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,0,2,7.5310454,8.3654661,7.6533184,2,0,-9,17,0,14,92.886162,0,0,0,45,2,4,1,2,2,2019,1,1,17,5,40,35,15,1,1,1,0,7.369781,7.369781,0,0,0,0,0,0,0,0,1,1,0,0,7.8079681,0,0,49.189999,39.799999,29.290001,62.09,3,1,1,0,0,8,4,1,1405.6666,276854.97,0,0,2480.0847 -1400,1699,3146,3147,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,3,8.4066925,8.5151815,0,1,0,-9,2,0,-1,-9.1939526,0,0,1,37,1,5,1,2,2,2019,1,2,23,11,44,40,15,1,1,1,0,12.300181,12.300181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.1,42.98,48.419998,60.529999,3,1,1,0,0,11,5,1,142,111929.07,0,0,3079.5586 -1400,1699,3147,3146,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,0,5,8.3817005,8.1738825,0,1,0,-9,2,0,1,143.25064,-9,0,0,36,1,3,1,-9,-9,2019,1,1,13,1,46,0,15,1,0,1,0,9.8988628,9.8988628,0,0,0,0,0,0,0,0,0,0,0,3.5491607,0,0,0,48.419998,60.529999,30.1,42.98,6,3,4,0,0,11,5,1,142,111929.07,0,0,3079.5586 -1401,1700,3148,3149,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,5,0,6.6156712,7.0646038,1,0,-9,7,0,-5,-27.461742,0,0,0,70,3,3,1,3,3,2019,3,2,15,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6866426,6.8502669,0,0,44.709999,59.439999,49.880001,38.990002,6,1,1,0,0,5,3,1,181.5,627567.5,0,0,4302.209 -1401,1700,3149,3148,-9,-9,2,1,0,70,1,0,0,0,3,-9,1,1,0,0,3,6.8229036,8.020298,7.2094731,1,0,-9,7,0,5,60.617798,0,0,0,65,1,5,3,3,3,2019,2,1,14,3,12,15,15,1,0,4,0,11.04837,11.04837,1,6.4535942,1.5272235,0,0,0,0,0,1,1,0,5.3800941,7.0728869,0,0,49.880001,38.990002,44.709999,59.439999,6,1,1,0,0,5,3,1,181.5,627567.5,0,0,4302.209 -1402,1701,3150,3151,-9,-9,1,1,1,35,1,1,1,0,1,-9,2,1,0,0,4,8.0251226,8.1770506,0,2,0,-9,6,0,0,-21.076006,0,0,0,35,2,4,1,2,2,2019,1,2,8,0,37,38,15,1,0,1,0,9.3918867,9.3918867,0,0,0,0,0,0,0,0,1,1,0,1.9799253,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,13,4,1,848,16988.916,0,0,2827.8408 -1402,1701,3151,3150,-9,-9,2,1,0,35,1,1,1,0,2,-9,2,1,0,0,4,8.4134531,8.1685448,0,2,0,-9,6,0,0,-30.319197,0,0,1,35,1,4,1,3,2,2019,1,1,9,0,33,35,15,1,0,1,0,15.093467,15.093467,0,0,0,0,0,0,0,0,1,1,0,3.6868739,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,13,4,1,848,16988.916,0,0,2827.8408 -1402,1701,3152,-9,3151,3150,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-823.06036,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,848,16988.916,0,0,2827.8408 -1403,1702,3153,3154,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.6318974,7.4379597,1,0,-9,10,0,3,53.624699,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8551731,7.7232533,0,0,57.330002,53.459999,49.599998,40.689999,6,1,1,0,0,9,3,1,944,1075053.5,0,0,2670.1619 -1403,1702,3154,3153,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.857481,6.5671201,1,0,-9,10,0,-3,-50.711361,0,0,0,71,2,3,3,3,3,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7668786,0,0,49.599998,40.689999,57.330002,53.459999,6,1,1,0,0,9,3,1,944,1075053.5,0,0,2670.1619 -1404,1703,3155,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,8.8619986,8.9124317,0,3,0,-9,0,-9,0,-977.64569,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,65,0,15,1,0,-9,0,13.240894,13.240894,0,0,0,0,0,0,0,0,0,0,0,3.4084997,0,0,0,43.32,54.23,-9,-9,5,2,3,0,0,8,5,1,243,-121491.79,0,0,1690.9226 -1405,1704,3156,3157,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,0,4,8.5418291,8.4301176,0,1,0,-9,2,0,1,127.78352,0,1,0,22,2,3,3,-9,-9,2019,2,1,7,0,41,49,15,1,0,3,0,10.603669,10.603669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,12.72,65.989998,5,1,1,0,0,10,3,0,650.5,91588.07,0,0,1791.7141 -1405,1704,3157,3156,-9,-9,1,1,0,22,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,-1,-32.656803,0,1,1,23,2,4,1,-9,-9,2019,3,2,20,8,0,38,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.72,65.989998,51.830002,57.200001,5,1,1,1,0,10,3,0,650.5,91588.07,0,0,1791.7141 -1406,1705,3158,3159,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,1,7.2077289,7.227993,0,1,0,-9,4,0,1,-115.838,0,0,0,46,2,3,1,-9,-9,2019,1,2,27,12,45,40,15,1,1,1,0,3.8293667,3.8293667,0,0,0,0,0,0,0,0,0,0,0,4.5708842,0,0,0,9.4200001,47.380001,53.59,49.639999,2,1,1,0,0,4,4,1,997.5,-69460.766,0,0,2817.4009 -1406,1705,3159,3158,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.1540737,8.1902933,0,1,0,-9,4,0,-1,80.233948,0,0,0,47,2,1,1,-9,-9,2019,1,1,7,0,37,37,15,1,0,1,0,9.8725929,9.8725929,0,0,0,0,0,0,0,0,0,0,0,6.6567302,0,0,0,53.59,49.639999,9.4200001,47.380001,5,1,1,0,0,4,4,1,997.5,-69460.766,0,0,2817.4009 -1407,1706,3160,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,5,0,5.6054125,5.87675,3,0,0,0,-9,0,-1031.6823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4306583,0,0,57.650002,56.130001,-9,-9,5,1,1,0,0,1,2,1,715,-56763.434,0,0,112.21201 -1408,1707,3161,3163,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,0,4,7.7439027,7.8202991,0,2,0,-9,9,0,-10,-100.82614,0,0,1,42,2,2,1,-9,-9,2019,1,1,7,0,32,41,15,1,0,1,0,9.8866405,9.8866405,0,0,0,0,0,0,0,0,1,1,0,2.5311115,0,0,0,54.200001,57.490002,37.849998,46.700001,6,1,1,0,0,2,5,1,261,259852.39,0,0,3817.3518 -1408,1707,3162,-9,3161,3163,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.53119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,261,259852.39,0,0,3817.3518 -1408,1707,3163,3161,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,2,8.9873171,8.6126423,0,2,0,-9,9,0,10,-64.146889,0,0,0,32,2,4,1,2,2,2019,1,2,12,1,50,50,15,1,0,1,0,17.337605,17.337605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.849998,46.700001,54.200001,57.490002,6,1,1,0,0,2,5,1,261,259852.39,0,0,3817.3518 -1409,1708,3164,3165,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,0,2,7.1771889,6.9597926,0,1,0,-9,18,0,-3,84.701294,0,0,1,39,2,3,1,2,3,2019,1,1,14,3,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.040001,25.540001,61.43,43.34,6,1,1,0,0,7,2,1,1326,-22207.281,0,0,3604.8667 -1409,1708,3165,3164,-9,-9,1,1,1,39,1,0,0,0,2,-9,1,1,0,0,3,6.2034936,6.3206387,0,1,0,-9,18,0,3,50.78059,0,0,0,36,2,2,1,2,3,2019,1,2,8,0,15,0,15,1,0,1,0,3.4038992,3.4038992,0,0,0,0,0,0,0,0,0,0,0,8.2573147,0,0,0,61.43,43.34,54.040001,25.540001,6,1,1,0,0,7,2,1,1326,-22207.281,0,0,3604.8667 -1410,1709,3166,3167,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,8.819066,8.9517841,0,1,0,-9,7,0,6,-20.511545,0,0,0,49,1,3,1,2,2,2019,1,2,13,1,37,41,15,1,0,1,0,22.848011,22.848011,0,0,0,0,0,0,0,0,0,0,0,7.5395532,0,0,0,54.369999,54.799999,43.119999,58.549999,6,1,1,0,0,2,5,1,827,1598861.1,0,0,4811.1387 -1410,1709,3167,3166,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,8.4773674,8.6569452,0,1,0,-9,7,0,-6,21.504303,0,0,0,55,1,3,1,3,2,2019,1,1,18,6,49,47,15,1,1,1,0,15.823709,15.823709,0,0,0,0,0,0,0,0,0,0,0,3.9056621,0,0,0,43.119999,58.549999,54.369999,54.799999,4,1,1,0,0,2,5,1,827,1598861.1,0,0,4811.1387 -1411,1710,3168,3169,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,5,0,3.3551803,2.8857079,1,0,-9,58,0,-4,-29.958467,0,0,0,83,3,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15967306,3.0795524,0,0,57.060001,57.759998,62,52.77,7,1,1,0,0,1,2,1,324,187825.47,0,0,2627.176 -1411,1710,3169,3168,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,5,0,6.8677225,6.8485022,1,0,-9,58,0,4,195.65623,0,0,0,79,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.0191998,0,0,62,52.77,57.060001,57.759998,7,1,1,0,0,1,2,1,324,187825.47,0,0,2627.176 -1412,1711,3170,-9,-9,-9,1,1,0,59,2,0,2,0,2,-9,2,1,0,1,2,6.8587694,7.1057448,0,4,0,0,0,-9,0,-1197.9509,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,15,22,15,1,0,-9,0,10.232038,10.232038,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.938195,3,49.310001,20.59,-9,-9,1,3,4,0,0,8,2,1,623,-91641.891,0,0,1431.962 -1412,1711,3171,-9,3170,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-882.56885,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,2,1,623,-91641.891,0,0,1431.962 -1413,1712,3172,3173,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.3715076,8.0196552,0,1,0,-9,1,-9,2,-24.078447,-9,0,0,28,1,5,1,-9,-9,2019,1,1,10,1,50,0,15,1,0,1,0,7.2244,7.2244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,31.190001,61.630001,5,1,1,0,0,11,5,1,1045,213804.92,0,0,3494.5217 -1413,1712,3173,3172,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,5,8.7215204,8.5699549,0,1,0,1,1,-9,-2,-4.6043878,-9,1,1,30,1,4,1,3,3,2019,1,2,20,8,44,0,15,1,1,1,0,14.06462,14.06462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.190001,61.630001,50,57,5,1,1,0,0,11,5,1,1045,213804.92,0,0,3494.5217 -1414,1713,3174,3175,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.8599873,9.1374731,0,1,0,-9,29,0,1,-52.022564,0,0,0,50,2,2,1,3,3,2019,1,2,6,0,35,35,15,1,0,1,0,25.243027,25.243027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,59.529999,35.200001,4,1,1,0,0,5,5,1,765,2526114.5,0,0,4246.6821 -1414,1713,3175,3174,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,8.3813639,8.3521709,0,1,0,-9,28,0,-1,-29.221416,-9,0,0,51,1,4,1,3,2,2019,1,1,7,1,51,0,15,1,0,1,0,9.7962189,9.7962189,0,0,0,0,0,0,0,7,0,0,0,.72790521,0,14.492651,3,59.529999,35.200001,51,54,6,1,1,0,0,5,5,1,765,2526114.5,0,0,4246.6821 -1415,1714,3176,3178,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,2,8.5676384,8.6170864,0,2,0,-9,20,0,2,81.708176,0,0,0,49,1,4,1,2,1,2019,1,1,12,0,73,40,15,1,0,1,0,8.5571146,8.5571146,0,0,0,0,0,0,0,0,1,1,0,3.7036109,0,0,0,47,43.43,45.91,59.889999,3,1,1,0,0,9,4,1,293,1283825,0,0,4144.1509 -1415,1714,3177,-9,3178,3176,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1004.5955,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,4,1,293,1283825,0,0,4144.1509 -1415,1714,3178,3176,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,0,4,8.4168367,8.2302618,0,2,0,-9,20,0,-2,33.60556,0,0,0,51,1,2,1,2,1,2019,1,2,14,2,27,27,15,1,0,1,0,26.204262,26.204262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,47,43.43,4,1,1,0,0,9,4,1,293,1283825,0,0,4144.1509 -1415,1714,3179,-9,3178,3176,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.9603,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,4,1,293,1283825,0,0,4144.1509 -1416,1715,3180,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,1,1,0,0,2,8.3696165,8.2485104,0,3,0,0,0,-9,0,-998.1731,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,50,70,15,1,1,-9,0,11.145515,11.145515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.43,56.619999,-9,-9,3,1,1,0,0,8,5,1,1556,90607.867,0,0,2186.6772 -1417,1716,3181,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1132.1449,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,6,1,1,179,-128716.16,0,0,772.61469 -1418,1717,3182,-9,3183,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1101.0129,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,698.66669,193778.39,0,0,2370.9954 -1418,1717,3183,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,2,1,0,0,3,8.5512238,8.6789494,5.6170464,4,0,0,0,-9,0,-980.71527,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,0,18.00556,18.00556,0,0,0,0,0,0,0,0,1,1,0,6.3639402,0,0,0,34.060001,55.889999,-9,-9,5,1,1,0,0,6,4,1,698.66669,193778.39,0,0,2370.9954 -1418,1717,3184,-9,3183,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1064.9026,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,6,4,1,698.66669,193778.39,0,0,2370.9954 -1419,1718,3185,-9,3186,-9,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1033.8474,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,9,1,0,989.5,248996.63,0,0,1029.4115 -1419,1718,3186,-9,-9,-9,2,1,0,52,2,0,1,0,3,-9,2,1,0,0,4,0,0,0,4,0,0,0,-9,0,-861.34796,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,15,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,3,4,0,0,9,1,0,989.5,248996.63,0,0,1029.4115 -1419,1719,3187,-9,3186,-9,4,1,1,27,2,0,1,0,2,-9,2,1,0,0,4,8.4659901,8.0779562,0,3,0,0,0,-9,0,-962.61121,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,38,40,15,1,0,-9,1,13.711758,13.711758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,56.73,-9,-9,6,3,4,0,0,9,4,0,578,313676.63,0,0,1246.4827 -1419,1720,3188,-9,3186,-9,5,1,1,23,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-908.57739,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,3,4,0,0,9,1,0,238,-174699.28,0,0,0 -1420,1721,3189,-9,3190,3192,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.0636,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,1386.25,885002.63,0,0,2205.1196 -1420,1721,3190,3192,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,8.834115,8.8192768,0,2,0,-9,9,0,-1,-3.7360351,0,0,1,42,2,3,1,-9,-9,2019,1,1,18,8,37,39,15,1,1,1,0,16.313627,16.313627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.619999,41.689999,30.940001,61.650002,3,1,1,0,0,10,4,0,1386.25,885002.63,0,0,2205.1196 -1420,1721,3191,-9,3190,3192,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.75085,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,10,4,0,1386.25,885002.63,0,0,2205.1196 -1420,1721,3192,3190,-9,-9,1,1,1,42,1,0,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,9,0,1,128.58148,0,0,0,41,1,3,1,2,2,2019,1,2,17,5,30,34,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.940001,61.650002,38.619999,41.689999,4,1,1,0,0,10,4,0,1386.25,885002.63,0,0,2205.1196 -1421,1722,3193,3194,-9,-9,2,1,1,50,1,0,0,0,3,-9,1,1,0,0,4,7.5607767,7.2951517,0,1,0,-9,7,0,0,107.76585,0,0,0,50,3,3,3,-9,-9,2019,2,1,9,1,45,35,15,1,0,3,0,4.3179021,4.3179021,0,0,0,0,0,0,0,0,0,0,0,7.0827866,0,0,0,53,55,43.369999,57.279999,6,1,1,0,0,6,2,1,680.5,114984.58,0,0,1377.5304 -1421,1722,3194,3193,-9,-9,1,1,0,50,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,35,0,0,27.28376,0,0,0,50,3,4,1,3,2,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.369999,57.279999,53,55,5,1,1,0,0,6,2,1,680.5,114984.58,0,0,1377.5304 -1421,1723,3195,-9,3194,3193,3,1,0,29,2,0,0,0,2,-9,2,1,0,0,4,7.4039907,7.8809533,0,3,0,0,0,-9,0,-1024.1389,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,37,22,15,1,1,-9,1,5.8811111,5.8811111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,48.18,-9,-9,5,1,1,0,0,6,3,1,502,-95972.711,0,0,888.42151 -1422,1724,3196,-9,3198,3197,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.80634,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,460.25,1216055.9,0,0,3602.606 -1422,1724,3197,3198,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,2,8.4058876,8.377387,0,2,0,-9,14,0,3,-92.062263,0,0,0,33,2,4,1,1,1,2019,1,1,21,9,28,0,15,1,1,1,0,18.526751,18.526751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.43,42.240002,46.48,58.279999,3,1,1,0,0,7,4,1,460.25,1216055.9,0,0,3602.606 -1422,1724,3198,3197,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,4,8.0011091,8.0705719,0,2,0,-9,14,0,-3,-17.935974,0,0,1,36,2,2,1,2,2,2019,1,2,8,0,31,32,15,1,0,1,0,14.71071,14.71071,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.279999,35.43,42.240002,6,1,1,0,0,7,4,1,460.25,1216055.9,0,0,3602.606 -1422,1724,3199,-9,3198,3197,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.91724,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,460.25,1216055.9,0,0,3602.606 -1423,1725,3200,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,0,3,7.9759159,7.8384562,0,3,0,-9,0,-9,0,-935.0752,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,45,0,15,1,1,-9,0,6.5363712,6.5363712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.26,66.470001,-9,-9,1,1,1,0,0,5,4,1,1103,241468.23,0,0,2058.3372 -1424,1726,3201,3202,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,7.3403606,7.337358,1,0,-9,48,0,-1,-.24164502,0,0,0,68,3,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6198015,0,0,60.619999,41.029999,47.299999,51.130001,7,1,1,0,0,13,2,1,341,436153.69,0,0,2183.8945 -1424,1726,3202,3201,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,4.8172417,4.6299343,1,0,-9,48,0,1,52.832481,0,0,0,67,3,3,3,3,2,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5801811,0,0,47.299999,51.130001,60.619999,41.029999,6,1,1,0,0,13,2,1,341,436153.69,0,0,2183.8945 -1425,1727,3203,-9,3205,3204,5,1,0,17,2,0,0,0,2,-9,2,3,0,0,4,6.3292651,6.363193,0,1,0,0,0,-9,0,-963.60352,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,11,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.040001,56.720001,-9,-9,4,1,1,0,0,8,5,1,1127,759302.38,0,0,4264.1953 -1425,1727,3204,3205,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.5248795,9.1649055,0,1,0,-9,29,0,6,-9.149848,0,0,0,51,2,4,1,3,3,2019,1,2,8,0,42,50,15,1,0,1,0,14.875391,14.875391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,51.240002,58.84,6,1,1,0,0,8,5,1,1127,759302.38,0,0,4264.1953 -1425,1727,3205,3204,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.5000424,7.4718804,0,1,0,-9,29,0,-6,-22.693296,0,0,0,57,2,3,1,2,2,2019,1,1,13,2,24,0,15,1,0,1,0,8.7790985,8.7790985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,46.669998,55.57,6,1,1,0,0,8,5,1,1127,759302.38,0,0,4264.1953 -1425,1728,3206,-9,3205,3204,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.94802,8.0693159,0,3,0,0,0,-9,0,-990.45129,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,39,15,1,0,-9,1,8.7964401,8.7964401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,8,4,1,902,-34009.699,0,0,2924.7603 -1425,1729,3207,-9,3205,3204,4,1,0,19,2,0,0,0,2,1,2,1,0,0,5,8.1834517,8.428277,0,3,0,0,0,-9,0,-872.09155,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,0,15,1,0,-9,1,7.1737361,7.1737361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.610001,53.290001,-9,-9,4,1,1,0,0,8,4,1,392,174087.2,0,0,951.45087 -1426,1730,3208,-9,-9,-9,1,1,0,28,2,0,2,0,2,-9,2,1,0,0,2,8.1278181,8.2812729,0,4,0,0,0,-9,0,-979.39423,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,32,11,34,40,15,1,1,-9,0,12.175737,12.175737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.190001,47.150002,-9,-9,5,1,1,0,1,2,3,0,1143.3334,126157.19,0,0,1832.9401 -1426,1730,3209,-9,3208,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1024.1974,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,1143.3334,126157.19,0,0,1832.9401 -1426,1730,3210,-9,3208,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-970.62225,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,1143.3334,126157.19,0,0,1832.9401 -1427,1731,3211,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,4,8.5534735,8.6781368,0,3,0,0,0,-9,0,-988.44385,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,48,46,15,1,0,-9,0,12.844914,12.844914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,5,2,3,0,0,8,5,0,352,123516.61,0,0,2171.6904 -1428,1732,3212,3213,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,47,0,-1,104.73428,0,0,0,66,2,3,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5813684,0,0,0,33.279999,29.620001,62.57,40.110001,5,1,1,0,0,11,2,1,1132,625707.13,0,0,1591.4158 -1428,1732,3213,3212,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,1,3,0,4.7687683,4.9404564,1,0,-9,47,0,1,38.534119,0,0,0,65,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.6364021,5.042696,25.12245,1,62.57,40.110001,33.279999,29.620001,6,1,1,0,0,11,2,1,1132,625707.13,0,0,1591.4158 -1429,1733,3214,-9,3216,3215,3,1,1,17,2,0,1,0,-9,-9,7,2,0,0,1,0,0,0,2,0,0,0,-9,0,-948.89941,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,36,12,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3.5599999,59.880001,-9,-9,1,1,1,0,0,2,2,1,386,148088.61,0,0,1619.9757 -1429,1733,3215,3216,-9,-9,2,1,1,55,1,0,1,0,1,-9,1,1,0,0,4,6.7568679,6.3833704,0,2,0,-9,9,0,5,-65.238518,0,0,0,50,2,4,1,3,2,2019,1,1,7,0,40,40,15,1,0,1,0,1.9596499,1.9596499,0,0,0,0,0,0,0,0,1,1,0,4.1764283,0,0,0,52,47.5,57.16,56.150002,6,1,1,0,0,2,2,1,386,148088.61,0,0,1619.9757 -1429,1733,3216,3215,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,6.9841304,7.4860935,0,2,0,-9,9,0,-5,-16.75577,0,0,0,55,1,4,1,3,3,2019,1,2,7,0,1,20,15,1,0,1,0,185.63609,185.63609,0,0,0,0,0,0,0,0,1,1,0,2.8092515,0,0,0,57.16,56.150002,52,47.5,7,1,1,0,0,2,2,1,386,148088.61,0,0,1619.9757 -1430,1734,3217,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,4,0,8.136549,8.070652,3,0,0,0,-9,0,-1000.2914,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.93471593,7.7302794,0,0,57.700001,55.880001,-9,-9,6,1,1,0,0,11,4,1,2149,504819.75,0,0,2739.0605 -1431,1735,3218,-9,-9,-9,2,1,1,19,2,0,0,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-926.43585,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,33,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,1,0,55,68086.609,0,0,0 -1432,1736,3219,-9,3221,3222,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1132.8339,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,3,1,1363,108152.34,0,0,2277.4526 -1432,1736,3220,-9,3221,3222,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.509,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,3,1,1363,108152.34,0,0,2277.4526 -1432,1736,3221,3222,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,3,7.4741426,7.4775801,0,2,0,-9,18,0,-6,64.601212,0,0,1,43,2,3,1,2,1,2019,1,2,7,1,28,27,15,1,0,1,0,8.1307993,8.1307993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.299999,45.639999,33.959999,47.68,5,2,3,0,1,4,3,1,1363,108152.34,0,0,2277.4526 -1432,1736,3222,3221,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.0051956,8.5175819,0,2,0,-9,8,0,6,84.978905,0,0,0,37,1,3,1,2,2,2019,1,1,26,11,39,39,15,1,1,1,0,10.684142,10.684142,0,0,0,0,0,0,0,0,1,1,0,2.6753213,0,0,0,33.959999,47.68,51.299999,45.639999,2,2,3,0,0,4,3,1,1363,108152.34,0,0,2277.4526 -1433,1737,3223,-9,3224,-9,1,1,1,27,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-987.05072,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.869999,50.459999,-9,-9,4,1,1,1,1,4,1,0,1628,-189917.8,0,0,1263.9363 -1433,1738,3224,-9,-9,-9,2,1,0,55,2,0,0,0,3,-9,2,1,0,0,3,7.4847517,7.4794035,0,3,0,0,0,-9,0,-1104.6683,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,30,19,15,1,0,-9,0,7.1951327,7.1951327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,1,1,0,1,4,3,0,764,302105.5,0,0,1152.1122 -1433,1739,3225,-9,3224,-9,3,1,1,20,2,0,0,0,2,-9,3,3,0,1,5,0,0,0,3,0,0,0,-9,0,-991.73486,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.27,70.980003,-9,-9,4,1,1,1,1,4,1,0,57,58887.805,0,0,-7.8932734 -1434,1740,3226,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1034.9027,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,8.3275833,8.4113846,0,0,1,1,0,0,0,0,0,43.830002,43.240002,-9,-9,6,1,1,0,0,11,1,0,124,-24866.094,0,0,127.03272 -1435,1741,3227,-9,3230,3229,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.75134,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,6,5,1,846,217955.08,0,0,4330.3848 -1435,1741,3228,-9,3230,3229,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-836.81897,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,846,217955.08,0,0,4330.3848 -1435,1741,3229,3230,-9,-9,2,1,1,38,1,0,3,0,2,-9,2,1,0,0,3,9.2535677,9.1735153,0,2,0,-9,11,0,1,-30.30711,0,0,0,37,1,4,1,-9,-9,2019,1,1,11,0,46,46,15,1,0,1,0,23.164497,23.164497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,42.849998,60.330002,5,1,1,0,0,6,5,1,846,217955.08,0,0,4330.3848 -1435,1741,3230,3229,-9,-9,1,1,0,37,1,0,3,0,1,-9,2,1,0,0,4,7.5700412,7.7606044,0,2,0,-9,16,0,-1,30.812309,0,0,1,38,2,3,1,3,3,2019,1,2,24,9,20,20,15,1,1,1,0,9.0554972,9.0554972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.849998,60.330002,52,54.509998,5,1,1,0,0,6,5,1,846,217955.08,0,0,4330.3848 -1435,1741,3231,-9,3230,3229,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-950.38196,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,6,5,1,846,217955.08,0,0,4330.3848 -1436,1742,3232,3233,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,0,2,8.8646774,9.0835133,0,2,0,-9,7,0,-5,132.67238,-9,0,1,44,3,4,1,3,3,2019,1,1,8,0,10,0,15,1,0,1,0,98.123596,98.123596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.439999,57.16,56.150002,6,1,1,0,0,6,5,1,985.66669,2170231.8,0,0,6054.7334 -1436,1742,3233,3232,-9,-9,1,1,1,44,1,0,1,0,3,-9,2,1,0,0,4,8.4896841,8.5210075,0,2,0,-9,7,0,5,-34.211739,0,0,0,39,2,2,1,2,2,2019,1,2,6,0,44,48,15,1,0,1,0,15.316924,15.316924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,46.32,53.439999,6,1,1,0,0,6,5,1,985.66669,2170231.8,0,0,6054.7334 -1436,1742,3234,-9,3232,3233,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.4969,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,985.66669,2170231.8,0,0,6054.7334 -1437,1743,3235,3236,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.361433,5.8612747,1,0,-9,46,0,0,74.872055,0,0,0,67,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6389246,0,0,57.330002,53.459999,58.32,50.220001,5,1,1,0,0,2,2,1,1375.5,258147.44,0,0,2183.9595 -1437,1743,3236,3235,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,0,-114.49153,0,0,0,67,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1625533,0,0,0,58.32,50.220001,57.330002,53.459999,6,1,1,0,0,2,2,1,1375.5,258147.44,0,0,2183.9595 -1438,1744,3237,3238,-9,-9,1,1,1,51,1,0,0,0,3,-9,2,1,0,0,3,8.2258739,8.4087057,0,1,0,-9,7,0,1,-1.2849145,0,0,0,50,2,1,3,2,-9,2019,2,2,10,0,46,43,15,1,0,3,0,8.9920044,8.9920044,0,0,0,0,0,0,0,0,0,0,0,1.6990268,0,0,0,53.119999,45.759998,20.040001,31.610001,6,1,1,0,0,5,3,1,277.5,631761.44,0,0,1365.4664 -1438,1744,3238,3237,-9,-9,2,1,0,50,1,0,0,0,2,-9,6,3,0,0,1,0,0,0,1,0,-9,7,0,-1,-113.51064,0,0,0,51,3,3,1,3,2,2019,3,1,29,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.29680502,0,0,0,20.040001,31.610001,53.119999,45.759998,3,1,1,0,0,5,3,1,277.5,631761.44,0,0,1365.4664 -1439,1745,3239,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1011.0233,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,35,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6440849,0,0,0,53.959999,42.860001,-9,-9,4,1,1,0,0,7,1,1,317,0,0,0,1138.7542 -1440,1746,3240,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-850.84808,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.370001,24.200001,-9,-9,3,1,1,0,0,2,1,0,151,-173760.91,0,0,1212.7053 -1441,1747,3241,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-886.63702,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.639999,25.41,-9,-9,2,1,1,0,1,2,1,0,295,0,0,0,1192.5161 -1442,1748,3242,-9,-9,-9,1,1,0,73,2,0,0,0,1,-9,4,3,0,0,3,0,8.1653118,8.1260757,3,0,0,0,-9,0,-1102.6123,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,2.4692924,0,0,0,0,0,7,1,1,0,7.2107859,8.0377436,8.6787262,3,53.139999,45.740002,-9,-9,6,1,1,0,0,11,4,1,569,587161.25,0,0,3010.1855 -1443,1749,3243,-9,3244,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,7.4045029,7.3849816,0,3,0,0,0,-9,0,-977.83673,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,30,15,1,0,-9,1,6.2522502,6.2522502,0,0,0,0,0,0,0,42,1,1,0,0,0,46.34367,3,54.779999,37.139999,-9,-9,6,1,1,0,0,4,3,1,616,73319.727,0,0,1154.3285 -1443,1750,3244,-9,-9,-9,2,1,0,61,3,0,0,0,2,-9,8,3,1,1,1,0,7.2234325,7.2927065,3,0,0,0,-9,0,-986.69446,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3535266,0,0,49.669998,11.64,-9,-9,2,1,1,0,0,4,3,1,205,284676.53,0,0,2653.8899 -1444,1751,3245,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,5,7.8349142,7.8223004,0,3,0,0,0,-9,0,-1001.4123,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,37,37,15,1,0,-9,0,6.853868,6.853868,0,0,0,0,0,0,0,0,0,0,0,.43441743,0,0,0,52.299999,57.200001,-9,-9,6,1,1,0,0,1,4,1,900,140846.22,0,0,1195.0872 -1445,1752,3246,3247,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.9287109,8.0102167,0,1,0,-9,6,0,3,-13.620157,0,0,0,50,2,3,1,3,2,2019,1,2,14,4,40,42,15,1,1,1,0,8.7129955,8.7129955,0,0,0,0,0,0,0,2,0,0,0,0,0,10.17295,3,46.790001,41.889999,46.560001,50.259998,3,1,1,0,0,12,5,1,472,596239,0,0,3473.1396 -1445,1752,3247,3246,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.2383614,8.3423405,0,1,0,-9,6,0,-3,-27.037182,0,0,0,53,2,3,1,2,3,2019,1,1,14,2,42,40,15,1,0,1,0,11.463936,11.463936,0,0,0,0,0,0,0,2,0,0,0,0,0,5.1673622,3,46.560001,50.259998,46.790001,41.889999,5,1,1,0,0,12,5,1,472,596239,0,0,3473.1396 -1445,1753,3248,-9,3247,3246,3,1,0,20,2,0,0,1,2,0,7,2,0,0,3,6.2985945,5.743947,0,3,0,0,0,-9,0,-1052.3666,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,5,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9.4075823,3,39.049999,59.16,-9,-9,6,1,1,0,0,12,2,1,184,54179.488,0,0,1488.0813 -1446,1754,3249,3250,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,5,8.6843348,8.4893055,0,1,0,-9,26,0,-1,-1.1979721,0,0,0,54,2,4,1,3,2,2019,1,1,8,0,33,40,15,1,0,1,0,16.815369,16.815369,0,0,0,0,0,0,0,0,0,0,0,7.8632183,0,0,0,57.060001,57.759998,59.529999,56.439999,7,1,1,0,0,2,5,1,838,1051181.5,0,0,3764.0488 -1446,1754,3250,3249,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,7.6659889,7.3014441,0,1,0,-9,27,0,1,-59.190304,0,0,0,53,1,5,1,-9,-9,2019,1,2,6,0,40,50,15,1,0,1,0,5.5959921,5.5959921,0,0,0,0,0,0,0,0,0,0,0,5.8957987,0,0,0,59.529999,56.439999,57.060001,57.759998,7,1,1,0,0,2,5,1,838,1051181.5,0,0,3764.0488 -1446,1755,3251,-9,3249,3250,3,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,8.171442,8.4253454,0,3,0,0,0,-9,0,-1009.7559,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,40,40,15,1,0,-9,1,11.461315,11.461315,0,0,0,0,0,0,0,2,0,0,0,0,0,9.1901207,3,57.16,56.150002,-9,-9,6,1,1,0,0,2,4,1,381,43309.809,0,0,1140.8047 -1446,1756,3252,-9,3249,3250,4,1,0,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-926.58026,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,61.77,-9,-9,7,1,1,0,0,2,1,1,491,-162222.67,0,0,0 -1447,1757,3253,-9,3254,3255,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1020.8862,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,181.66667,43262.293,0,0,1821.7421 -1447,1757,3254,3255,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,0,4,7.6442165,7.6333833,0,2,0,-9,1,-9,5,51.417377,-9,1,1,23,2,3,3,-9,-9,2019,2,2,6,0,25,0,15,1,0,3,0,7.4545536,7.4545536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.970001,53.970001,37.299999,56.009998,3,1,1,0,1,6,2,0,181.66667,43262.293,0,0,1821.7421 -1447,1757,3255,3254,-9,-9,2,1,1,23,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,1,-9,-5,-140.34601,-9,1,0,28,2,4,1,-9,-9,2019,3,1,21,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.299999,56.009998,52.970001,53.970001,3,1,1,0,1,6,2,0,181.66667,43262.293,0,0,1821.7421 -1448,1758,3256,-9,-9,-9,1,1,0,52,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-969.93292,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.650002,33.290001,-9,-9,7,1,1,0,0,10,1,0,1015,118693,0,0,2319.907 -1449,1759,3257,-9,3258,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.5365,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,0,727,-89389.836,0,0,1367.9219 -1449,1759,3258,-9,-9,-9,1,1,0,22,2,0,1,1,1,0,7,2,0,0,4,0,6.31568,6.2986073,4,0,0,0,-9,0,-1001.5709,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4890471,0,0,0,44.810001,57.830002,-9,-9,6,1,1,0,0,13,2,0,727,-89389.836,0,0,1367.9219 -1450,1760,3259,3261,-9,-9,1,1,0,54,1,0,3,0,1,-9,1,1,0,0,4,8.2309122,7.9734931,0,2,0,-9,4,0,12,16.653488,0,0,0,42,2,3,1,1,1,2019,1,4,14,4,65,38,15,1,1,1,0,5.1729031,5.1729031,0,0,0,0,0,0,0,0,1,1,0,2.8135276,0,0,0,47.970001,56.110001,55.77,41.93,5,1,1,0,0,12,2,1,1000.4,133534.03,0,0,1796.3813 -1450,1760,3260,-9,-9,3261,5,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.79932,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,1,1000.4,133534.03,0,0,1796.3813 -1450,1760,3261,3259,-9,-9,4,1,1,42,1,0,3,0,2,-9,1,1,0,0,3,3.9030943,4.0262094,0,2,0,-9,4,0,-12,13.402807,0,0,0,54,1,4,1,-9,-9,2019,1,1,9,3,65,35,15,1,0,1,0,.087997839,.087997839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,41.93,47.970001,56.110001,5,1,1,0,0,12,2,1,1000.4,133534.03,0,0,1796.3813 -1450,1760,3262,-9,3259,-9,2,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-935.22089,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,2,1,1000.4,133534.03,0,0,1796.3813 -1450,1760,3263,-9,3259,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-934.57257,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,2,1,1000.4,133534.03,0,0,1796.3813 -1451,1761,3264,3265,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,70,0,-5,-85.437859,0,0,0,92,2,3,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,0,84.105492,1,31.32,42.75,56,44,6,1,1,0,0,7,2,1,568,949266.31,0,0,1247.9631 -1451,1761,3265,3264,-9,-9,1,1,1,92,1,0,0,0,2,-9,4,3,0,0,3,0,5.5900087,5.7788692,1,0,-9,70,0,5,60.963215,0,0,0,87,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5348253,5.8927732,0,0,56,44,31.32,42.75,6,1,1,0,0,7,2,1,568,949266.31,0,0,1247.9631 -1452,1762,3266,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-867.59467,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.700001,34.029999,-9,-9,5,1,1,0,0,1,1,0,160,-149117.23,0,0,2091.2175 -1453,1763,3267,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,7.3366027,7.6443639,3,0,0,0,-9,0,-1010.2167,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9577312,7.570405,0,0,51.709999,42.59,-9,-9,7,1,1,0,0,9,3,1,355,236337.39,0,0,2123.6558 -1454,1764,3268,-9,-9,-9,1,1,1,36,3,0,0,0,2,-9,2,1,0,0,4,8.6882944,8.4661064,0,3,0,0,0,-9,0,-1050.6642,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,35,39,15,1,0,-9,0,15.023504,15.023504,0,0,0,0,0,0,0,0,1,1,0,1.7247504,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,12,5,1,882,65554.711,0,0,1899.4114 -1455,1765,3269,-9,-9,-9,2,1,1,21,3,0,0,1,2,0,7,2,0,0,3,6.8005838,6.8932614,0,3,0,0,0,-9,0,-927.32025,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,10,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.549999,58.299999,-9,-9,5,1,1,0,0,10,2,0,1096,-46666.59,0,0,686.35474 -1456,1766,3270,3273,-9,-9,1,1,0,45,1,0,2,0,1,-9,7,2,0,0,4,0,0,0,2,0,-9,12,0,2,-10.956969,1,0,0,43,1,3,1,2,1,2019,3,2,12,3,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.150002,56.919998,40.32,56.919998,5,1,1,0,1,9,3,1,1050,448706.53,0,0,3005.0088 -1456,1766,3271,-9,3270,3273,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.66376,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,1,1050,448706.53,0,0,3005.0088 -1456,1766,3272,-9,3270,3273,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.2507,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,1050,448706.53,0,0,3005.0088 -1456,1766,3273,3270,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,3,8.2440929,8.4392128,0,2,0,-9,12,0,-2,-86.403603,0,0,0,45,1,4,2,2,2,2019,2,1,21,8,49,39,15,1,1,2,0,10.604301,10.604301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.32,56.919998,43.150002,56.919998,3,1,1,0,1,9,3,1,1050,448706.53,0,0,3005.0088 -1457,1767,3274,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,0,3,0,7.7400398,7.6124644,3,0,0,0,-9,0,-924.43854,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3671703,7.5851479,0,0,50.009998,52.639999,-9,-9,4,1,1,0,0,1,3,1,310,133527.39,0,0,362.89474 -1458,1768,3275,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,0,5,8.5845022,8.3529882,0,3,0,0,0,-9,0,-939.77203,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,50,15,1,0,-9,0,10.033176,10.033176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.669998,60.18,-9,-9,4,1,1,0,0,7,4,1,2484,274693.97,0,0,1594.8125 -1459,1769,3276,3278,-9,-9,1,1,0,22,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,-3,9.9395599,0,1,1,25,2,3,1,-9,-9,2019,3,2,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8730998,0,0,0,44.259998,59.43,47.610001,53.700001,6,1,1,0,0,7,4,0,994.5,-40693.93,0,0,2524.7241 -1459,1769,3277,-9,3276,3278,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.42139,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,0,994.5,-40693.93,0,0,2524.7241 -1459,1769,3278,3276,-9,-9,2,1,1,25,1,1,2,0,2,-9,2,1,0,0,3,8.5707989,8.790329,0,2,0,-9,3,0,3,-133.98483,0,1,0,22,2,4,3,-9,-9,2019,2,1,9,1,48,59,15,1,0,3,0,19.154291,19.154291,0,0,0,0,0,0,0,0,1,1,0,3.227953,0,0,0,47.610001,53.700001,44.259998,59.43,5,1,1,0,0,7,4,0,994.5,-40693.93,0,0,2524.7241 -1459,1769,3279,-9,3276,3278,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.7239,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,0,994.5,-40693.93,0,0,2524.7241 -1460,1770,3280,3282,-9,-9,2,1,0,53,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,26,0,1,64.286461,0,0,0,52,2,4,1,2,2,2019,3,1,16,5,0,35,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.8661947,3,57.16,56.150002,57.16,56.150002,6,1,1,1,0,11,3,1,723.33331,916174.25,0,0,1906.0587 -1460,1770,3281,-9,3280,3282,4,1,0,17,2,0,1,1,2,0,7,2,0,0,5,5.0712886,4.8898439,0,2,0,0,0,-9,0,-928.23956,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0195341,0,0,0,59.43,58.049999,-9,-9,2,1,1,0,0,11,3,1,723.33331,916174.25,0,0,1906.0587 -1460,1770,3282,3280,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.6263084,8.5435781,0,2,0,-9,26,0,-1,37.868511,0,0,0,53,2,4,3,3,2,2019,2,2,11,0,10,62,15,1,0,3,0,60.148586,60.148586,0,0,0,0,0,0,0,2,1,1,0,0,0,4.0615582,3,57.16,56.150002,57.16,56.150002,6,1,1,0,0,11,3,1,723.33331,916174.25,0,0,1906.0587 -1460,1771,3283,-9,3280,3282,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,5,6.8256555,7.2556491,0,3,0,0,0,-9,0,-1075.4047,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,20,37,15,1,0,-9,1,6.2432041,6.2432041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,11,2,1,439,107455.12,0,0,-303.34894 -1461,1772,3284,-9,3285,3286,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.7397,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,2,0,1054.75,-69998.508,0,0,2662.1775 -1461,1772,3285,3286,-9,-9,1,1,0,31,1,0,3,0,2,1,6,3,0,0,4,0,0,0,2,0,-9,5,0,-1,66.521179,-9,0,1,32,2,3,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,52.5,52,54.509998,6,1,1,0,0,1,2,0,1054.75,-69998.508,0,0,2662.1775 -1461,1772,3286,3285,-9,-9,2,1,1,32,1,0,3,0,2,1,2,1,0,0,3,7.7614341,8.3461428,0,2,0,-9,5,0,1,131.25163,-9,0,0,31,2,4,3,2,2,2019,2,1,6,0,46,0,15,1,0,3,0,5.8228817,5.8228817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,59.139999,52.5,6,1,1,0,0,1,2,0,1054.75,-69998.508,0,0,2662.1775 -1461,1772,3287,-9,3285,3286,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-880.81012,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,2,0,1054.75,-69998.508,0,0,2662.1775 -1462,1773,3288,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.1029272,8.1789122,0,3,0,0,0,-9,0,-922.46429,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,45,15,1,0,-9,0,8.823595,8.823595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.639999,55.400002,-9,-9,7,1,1,0,0,11,4,0,2152,-40087.816,0,0,2148.0977 -1463,1774,3289,3290,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,2,8.1069927,8.3649817,0,2,0,-9,8,0,-5,140.73581,0,0,1,41,2,4,1,2,3,2019,1,2,19,7,32,34,15,1,1,1,0,12.262251,12.262251,0,0,0,0,0,0,0,7,1,1,0,0,0,3.376137,3,36.18,32.240002,54.200001,57.490002,6,1,1,0,0,4,4,1,741.66669,366895.19,0,0,2906.1267 -1463,1774,3290,3289,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,8.6901312,8.5623703,0,2,0,-9,8,0,5,-28.523005,0,0,0,36,1,2,1,2,2,2019,1,1,11,0,37,41,15,1,0,1,0,14.482058,14.482058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,36.18,32.240002,6,1,1,0,0,4,4,1,741.66669,366895.19,0,0,2906.1267 -1463,1774,3291,-9,3289,3290,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.47052,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,741.66669,366895.19,0,0,2906.1267 -1464,1775,3292,3293,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,2,9.5331278,9.6174402,0,1,0,-9,5,0,4,-64.755798,0,0,0,53,1,4,1,3,3,2019,1,2,10,0,45,45,15,1,0,1,0,39.314079,39.314079,0,0,0,0,0,0,0,0,0,0,0,3.1428902,0,0,0,55.77,42.25,59.150002,49.669998,5,1,1,0,0,12,5,1,1365,1169235.3,0,0,8161.9209 -1464,1775,3293,3292,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,8.9799156,8.6290169,0,1,0,-9,5,0,-4,69.521011,0,0,0,57,1,2,1,-9,-9,2019,1,1,11,0,85,57,15,1,0,1,0,7.4765429,7.4765429,0,0,0,0,0,0,0,0,0,0,0,3.5952992,0,0,0,59.150002,49.669998,55.77,42.25,6,1,1,0,0,12,5,1,1365,1169235.3,0,0,8161.9209 -1465,1776,3294,3295,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,0,3,0,7.2604551,6.9670167,1,0,-9,6,0,7,-18.771839,0,0,0,64,1,4,3,2,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67629451,7.1931148,0,0,35.200001,46,57.16,56.150002,4,1,1,0,0,4,3,1,414,1431626.8,0,0,2478.4087 -1465,1776,3295,3294,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.953177,7.7353106,1,0,-9,6,0,-7,-15.788829,0,0,0,71,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0688801,8.1591253,0,0,57.16,56.150002,35.200001,46,7,1,1,0,0,4,3,1,414,1431626.8,0,0,2478.4087 -1466,1777,3296,-9,3299,3297,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.018,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,6,5,1,739,1104454.6,0,0,4141.5923 -1466,1777,3297,3299,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,9.195241,9.0822458,0,2,0,-9,21,0,1,-31.972828,0,0,0,45,1,4,1,-9,-9,2019,1,2,9,1,60,45,15,1,0,1,0,19.445133,19.445133,0,0,0,0,0,0,0,0,1,1,0,2.8290069,0,0,0,54.200001,57.490002,51.240002,58.84,6,1,1,0,0,6,5,1,739,1104454.6,0,0,4141.5923 -1466,1777,3298,-9,3299,3297,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.0259,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,5,1,739,1104454.6,0,0,4141.5923 -1466,1777,3299,3297,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,7.4640126,7.3908901,0,2,0,-9,21,0,-1,9.890316,0,0,0,46,1,4,1,2,2,2019,1,1,9,0,17,16,15,1,0,1,0,15.000502,15.000502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,54.200001,57.490002,5,1,1,0,0,6,5,1,739,1104454.6,0,0,4141.5923 -1467,1778,3300,-9,-9,-9,1,1,1,52,3,0,1,0,2,-9,2,1,0,0,2,8.1365261,8.105608,0,4,0,0,0,-9,0,-951.79382,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,52,65,15,1,0,-9,0,7.7535906,7.7535906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,39.209999,-9,-9,4,1,1,0,0,5,3,1,285,124312.21,0,0,2218.1418 -1468,1779,3301,3302,-9,-9,2,1,1,56,1,0,0,0,2,-9,97,3,0,1,2,0,0,0,1,0,-9,18,0,12,0,0,0,0,44,2,4,3,3,3,2019,4,1,23,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.12484,2,41.889999,43.23,50,55,2,1,1,0,0,4,1,0,298,56579.578,0,0,1764.8416 -1468,1779,3302,3301,-9,-9,1,1,0,44,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,18,0,-12,0,-9,0,1,56,2,2,3,2,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,41.889999,43.23,6,1,1,0,0,4,1,0,298,56579.578,0,0,1764.8416 -1468,1780,3303,-9,3302,3301,3,1,0,25,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1081.0452,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.0703235,3,41,56.990002,-9,-9,4,1,1,0,0,4,1,0,1035,-94114.531,0,0,1157.6646 -1469,1781,3304,3305,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,3,8.136858,8.4033222,5.1744308,1,0,-9,11,0,2,78.363129,0,0,0,44,1,3,1,2,-9,2019,1,2,7,0,38,40,15,1,0,1,0,11.195769,11.195769,0,0,0,0,0,0,0,0,0,0,0,5.5781164,0,0,0,58.5,44.669998,41.400002,51.43,6,4,2,0,0,8,5,0,478.5,543764.81,0,0,3864.6914 -1469,1781,3305,3304,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,0,3,8.1402979,8.2232533,0,1,0,-9,11,0,-2,10.418427,0,0,0,46,3,3,1,2,-9,2019,1,1,12,0,48,44,15,1,0,1,0,11.57514,11.57514,0,0,0,0,0,0,0,0,0,0,0,2.1751442,0,0,0,41.400002,51.43,58.5,44.669998,6,4,2,0,1,8,5,0,478.5,543764.81,0,0,3864.6914 -1470,1782,3306,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,5,8.9571095,9.1613045,0,3,0,0,0,-9,0,-1078.4287,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,14,5,52,49,15,1,1,-9,0,18.904743,18.904743,0,0,0,0,0,0,0,0,0,0,0,7.0382318,0,0,0,45.810001,61.509998,-9,-9,5,1,1,0,0,6,5,1,420,414849.41,0,0,3140.9058 -1471,1783,3307,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,0,3,0,7.7751503,7.6755419,3,0,0,0,-9,0,-1031.4912,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.22791,6.214879,0,3,37.5,50.450001,-9,-9,4,1,1,0,0,7,3,1,499,943967,0,0,4445.7617 -1471,1784,3308,-9,3307,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,7.6928916,7.6974292,0,3,0,0,0,-9,0,-972.73206,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,40,2,15,1,0,-9,1,5.7383289,5.7383289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.080002,52.700001,-9,-9,6,1,1,0,0,7,3,1,907,-36408.883,0,0,1114.2549 -1472,1785,3309,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,0,2,0,0,5.7635283,3,0,0,0,-9,0,-998.42993,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56794357,5.6601715,0,0,54.990002,30.43,-9,-9,6,1,1,0,1,6,1,0,778,248483.39,0,0,-450.00784 -1473,1786,3310,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,8.5727873,8.8302298,0,3,0,0,0,-9,0,-965.1026,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,34,28,15,1,0,-9,0,23.800283,23.800283,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,52.77,55.330002,-9,-9,6,1,1,0,0,7,5,1,207,420863.53,0,0,1402.2638 -1474,1787,3311,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,2,1,0,0,3,6.9024096,7.1312308,4.5104504,3,0,0,0,-9,0,-1005.7391,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,18,0,15,1,0,-9,0,7.5512762,7.5512762,0,0,0,0,0,0,0,0,1,1,0,4.7630863,4.7131338,0,0,54.529999,41.240002,-9,-9,6,1,1,0,0,8,2,0,474,332196.72,0,0,833.2016 -1475,1788,3312,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,5,8.4471054,8.6339312,0,1,0,-9,7,0,2,-14.94942,0,0,1,-9,-9,-9,-9,2,2,2019,1,2,8,1,60,55,15,1,0,-9,0,9.837738,9.837738,0,0,0,0,0,0,0,0,0,0,0,2.6453009,0,0,0,49.360001,58.529999,43.560001,49.220001,6,1,1,0,0,9,5,0,648,-68604.805,0,0,1838.283 -1475,1789,3313,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,2,8.5851345,8.798192,0,1,0,-9,7,0,-2,-16.985479,0,0,1,-9,-9,-9,-9,1,1,2019,1,1,13,3,35,35,15,1,0,-9,0,22.15807,22.15807,0,0,0,0,0,0,0,0,0,0,0,2.660382,0,0,0,43.560001,49.220001,49.360001,58.529999,6,1,1,0,0,9,5,0,1094,529004.75,0,0,2349.8879 -1476,1790,3314,3316,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,8.6927271,8.7052679,0,2,0,-9,22,0,0,50.647655,0,0,0,45,2,3,1,3,3,2019,1,1,8,0,39,37,15,1,0,1,0,14.771927,14.771927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.950001,51.490002,46.07,50.630001,2,3,4,0,1,8,4,0,652.33331,220490.11,0,0,3343.8572 -1476,1790,3315,-9,3314,3316,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,6.0994802,6.4676042,0,2,0,0,0,-9,0,-1027.9326,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.380001,55.599998,-9,-9,6,3,4,0,0,8,4,0,652.33331,220490.11,0,0,3343.8572 -1476,1790,3316,3314,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,7.7877927,7.6652441,0,2,0,-9,24,0,0,25.043821,0,0,0,45,2,3,1,2,2,2019,1,2,14,4,20,20,15,1,1,1,0,12.159338,12.159338,0,0,0,0,0,0,0,7,1,1,0,0,0,5.4676991,3,46.07,50.630001,46.950001,51.490002,4,3,4,0,1,8,4,0,652.33331,220490.11,0,0,3343.8572 -1477,1791,3317,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,5,8.1284018,7.9805751,0,1,0,-9,16,0,0,64.25071,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,6,0,38,41,15,1,0,-9,0,10.104621,10.104621,0,0,0,0,0,0,0,0,0,0,0,2.2834642,0,0,0,56.470001,59.400002,64.480003,48.619999,7,1,1,0,0,7,4,1,1670,546230.31,0,0,1906.8247 -1477,1792,3318,-9,-9,-9,2,1,0,56,2,0,0,0,2,-9,2,1,0,0,4,7.9756074,7.9566154,0,1,0,-9,15,0,0,-124.53523,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,7,0,11,0,15,1,0,-9,0,31.540735,31.540735,0,0,0,0,0,0,0,0,0,0,0,5.2875867,0,0,0,64.480003,48.619999,56.470001,59.400002,7,1,1,0,0,7,4,1,492,343648.41,0,0,2159.9849 -1478,1793,3319,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-850.68054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.470001,21.709999,-9,-9,3,1,1,0,0,13,1,0,413,-19614.771,0,0,2183.1768 -1479,1794,3320,3321,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,4.8404865,4.8561978,1,0,-9,4,0,-2,-27.169415,0,0,0,67,2,5,1,2,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94004482,5.0232282,0,0,60.299999,46.580002,60.02,56.419998,5,1,1,0,0,10,5,1,238.5,890619,0,0,4766.3037 -1479,1794,3321,3320,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,5,7.9631281,8.9544754,8.171855,1,0,-9,4,0,2,60.552593,0,0,0,65,2,3,3,3,2,2019,2,1,8,0,28,29,15,1,0,4,0,14.407432,14.407432,0,0,0,0,0,0,0,0,1,1,0,6.8984604,8.3784428,0,0,60.02,56.419998,60.299999,46.580002,6,1,1,0,0,10,5,1,238.5,890619,0,0,4766.3037 -1479,1795,3322,-9,3320,3321,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,5,7.1218047,7.0638733,0,3,0,0,0,-9,0,-978.02515,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,38,40,15,1,0,-9,1,4.2154293,4.2154293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.299999,62.970001,-9,-9,5,1,1,0,0,10,3,1,74,90223.906,0,0,984.75079 -1480,1796,3323,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,4,8.4107351,8.3019457,0,3,0,0,0,-9,0,-1078.3141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,46,56,15,1,0,-9,0,10.469236,10.469236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.009998,55.310001,-9,-9,5,1,1,0,0,5,4,1,161,185823.92,0,0,1390.1948 -1481,1797,3324,3325,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,5,8.8020477,8.7888069,0,1,0,-9,20,0,-8,50.235756,0,0,0,65,2,3,3,2,-9,2019,2,2,6,0,34,36,15,1,0,4,0,18.81065,18.81065,0,0,0,0,0,0,0,0,1,1,0,5.3218517,0,0,0,51.139999,60.450001,56.849998,37.23,6,1,1,0,0,7,4,1,274,735420.5,0,0,2992.8755 -1481,1797,3325,3324,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,3.1405737,6.3504047,5.4943686,1,0,-9,20,0,8,94.216064,0,0,0,57,1,5,1,3,2,2019,3,1,10,0,4,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2483249,6.0352216,0,0,56.849998,37.23,51.139999,60.450001,6,1,1,0,0,7,4,1,274,735420.5,0,0,2992.8755 -1482,1798,3326,-9,3327,-9,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-952.2749,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,1,0,1090,79249.508,0,0,3856.7615 -1482,1798,3327,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-952.65808,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,29,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.1325,3,19.719999,49.57,-9,-9,2,1,1,1,1,8,1,0,1090,79249.508,0,0,3856.7615 -1482,1799,3328,-9,3327,-9,2,1,0,18,2,0,1,0,2,1,2,1,0,0,4,6.3446765,6.3330102,0,3,0,0,0,-9,0,-1085.5243,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,7,0,15,1,0,-9,1,8.6321678,8.6321678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,7,1,1,0,0,8,2,0,346,147678.55,0,0,-535.27533 -1483,1800,3329,3330,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,9.5438461,9.5226202,0,1,0,-9,9,0,1,32.816872,0,0,0,53,1,3,3,2,1,2019,2,2,11,0,40,50,15,1,0,3,0,34.692245,34.692245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.900002,51.84,6,2,3,0,0,13,5,1,1374.5,954818.25,0,0,4434.6494 -1483,1800,3330,3329,-9,-9,2,1,0,53,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,9,0,-1,6.618547,0,0,0,54,1,3,1,2,1,2019,3,1,0,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.900002,51.84,57.330002,53.459999,6,2,3,0,0,13,5,1,1374.5,954818.25,0,0,4434.6494 -1484,1801,3331,-9,3333,3334,5,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.8744,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,5,1,1053.8,579094.38,0,0,10857.741 -1484,1801,3332,-9,3333,3334,4,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-875.17969,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,5,1,1053.8,579094.38,0,0,10857.741 -1484,1801,3333,3334,-9,-9,2,1,0,44,1,2,3,0,1,-9,1,1,0,0,4,8.6563702,8.3708849,0,2,0,-9,14,0,-3,19.870235,-9,0,1,47,1,5,1,-9,-9,2019,1,1,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5621576,0,0,0,50,55,54.099998,59.110001,6,1,1,0,0,8,5,1,1053.8,579094.38,0,0,10857.741 -1484,1801,3334,3333,-9,-9,1,1,1,47,1,2,3,0,1,-9,1,1,0,0,5,9.6180267,9.6600056,0,2,0,-9,14,0,3,28.116955,0,0,0,44,1,4,1,3,1,2019,1,2,6,0,40,80,15,1,0,1,0,36.54187,36.54187,0,0,0,0,0,0,0,0,1,1,0,8.7415409,0,0,0,54.099998,59.110001,50,55,2,4,2,0,0,8,5,1,1053.8,579094.38,0,0,10857.741 -1484,1801,3335,-9,3333,3334,3,1,0,4,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-873.16815,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,1,1053.8,579094.38,0,0,10857.741 -1485,1802,3336,3337,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,1,1,-9,5,-20.962425,0,0,0,60,2,4,1,-9,-9,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.189999,40.970001,46.98,59.349998,6,1,1,0,0,4,2,0,1154,-73281.984,0,0,1519.8752 -1485,1802,3337,3336,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.5059433,7.5710492,0,1,0,1,27,-9,-5,2.3609552,0,0,0,65,2,1,3,2,2,2019,2,2,10,0,30,38,15,1,0,4,0,5.6695862,5.6695862,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,47.189999,40.970001,6,1,1,0,0,4,2,0,1154,-73281.984,0,0,1519.8752 -1486,1803,3338,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,-9,0,0,0,-970.01855,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.84,60.5,-9,-9,3,2,3,1,0,4,1,1,493,12984.32,0,0,2069.8606 -1487,1804,3339,-9,3341,-9,1,1,0,36,3,1,1,0,1,-9,6,3,0,0,3,7.9956617,7.6903329,0,3,0,-9,0,-9,0,-954.04382,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,7,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5101948,0,0,0,31.459999,57.32,-9,-9,4,1,1,0,0,7,3,1,434.5,-103829.3,0,0,2462.03 -1487,1804,3340,-9,3339,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-984.87927,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,3,1,434.5,-103829.3,0,0,2462.03 -1487,1805,3341,-9,-9,-9,3,1,0,69,2,1,1,0,2,-9,4,3,0,0,3,0,6.3315978,6.1669888,4,0,-9,0,-9,0,-958.40454,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6871853,5.7520909,0,0,41.119999,44.77,-9,-9,2,1,1,0,0,7,2,1,386,-78418.156,0,0,235.32918 -1488,1806,3342,3343,-9,-9,1,1,0,54,1,0,0,0,2,-9,6,3,0,0,4,4.6381302,4.7823181,0,1,0,-9,11,0,-8,-53.263298,0,0,0,62,2,4,1,2,2,2019,3,2,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.09004,3,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,4,3,1,465,495634.09,0,0,1477.8101 -1488,1806,3343,3342,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,7.9784336,8.0423298,6.8549814,1,0,-9,11,0,8,66.428078,0,0,0,54,2,4,3,2,2,2019,2,1,6,0,22,0,15,1,0,3,0,12.396708,12.396708,0,0,0,0,0,0,0,2,0,0,0,0,7.2044439,0,3,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,4,3,1,465,495634.09,0,0,1477.8101 -1489,1807,3344,-9,3345,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1097.3074,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.880001,48.200001,-9,-9,4,1,1,0,0,4,3,1,980.75,1041699,0,0,3339.6206 -1489,1807,3345,3346,-9,-9,1,1,0,54,1,0,2,0,1,-9,2,1,0,0,3,8.4659557,8.7080393,0,2,0,-9,3,0,-11,109.64468,0,0,0,65,3,3,3,3,3,2019,2,4,35,12,38,37,15,1,1,4,0,17.229914,17.229914,0,0,0,0,0,0,0,0,1,1,0,1.8095652,0,0,0,20.129999,58.369999,41.700001,60.439999,5,1,1,0,0,4,3,1,980.75,1041699,0,0,3339.6206 -1489,1807,3346,3345,-9,-9,4,1,1,65,1,0,2,0,3,-9,4,3,0,0,3,0,6.5629969,6.8637667,2,0,-9,3,0,11,-69.247452,0,0,0,54,1,3,1,-9,-9,2019,3,1,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4921737,0,0,41.700001,60.439999,20.129999,58.369999,1,1,1,0,0,4,3,1,980.75,1041699,0,0,3339.6206 -1489,1807,3347,-9,3345,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-940.61584,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,4,3,1,980.75,1041699,0,0,3339.6206 -1490,1808,3348,3351,-9,-9,1,1,1,59,1,0,5,0,2,-9,2,1,0,0,3,7.4255481,7.4355645,0,2,0,-9,11,0,14,-78.251869,0,0,0,45,1,5,3,3,3,2019,2,2,10,1,40,45,15,1,0,3,0,5.0025067,5.0025067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,52,57,5,2,3,0,0,8,2,1,714.25,36365.023,0,0,2451.1592 -1490,1808,3349,-9,3351,3348,4,1,1,15,2,0,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-991.22937,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,8,2,1,714.25,36365.023,0,0,2451.1592 -1490,1808,3350,-9,3351,3348,3,1,1,17,2,0,5,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.5037,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,5,2,3,0,0,8,2,1,714.25,36365.023,0,0,2451.1592 -1490,1808,3351,3348,-9,-9,2,1,0,45,1,0,5,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,11,0,-14,-41.789188,0,0,0,59,2,3,1,1,2,2019,3,1,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,57,51,49,7,2,3,0,0,8,2,1,714.25,36365.023,0,0,2451.1592 -1490,1809,3352,-9,3351,3348,5,1,0,18,2,0,5,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1073.8661,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,56.66,-9,-9,4,2,3,1,0,8,2,1,599,-151441.55,0,0,0 -1490,1810,3353,-9,3351,3348,6,1,0,18,2,0,5,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-964.08765,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.490002,64.260002,-9,-9,4,2,3,0,0,8,2,1,1605,64530.934,0,0,0 -1491,1811,3354,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.9934282,9.1663456,0,3,0,0,0,-9,0,-918.32886,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,55,53,15,1,0,-9,0,16.431705,16.431705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.950001,61.240002,-9,-9,5,4,2,0,0,8,5,1,511,337934.75,0,0,4199.5176 -1492,1812,3355,3356,-9,-9,1,1,1,54,1,0,2,0,3,-9,2,1,0,0,3,8.1934881,8.4100485,0,2,0,-9,32,0,2,41.960541,0,0,0,52,3,2,1,3,3,2019,1,2,4,0,35,39,15,1,0,1,0,13.057559,13.057559,0,0,0,0,0,0,0,0,1,1,0,2.6890454,0,0,0,54.959999,53.169998,63.220001,15.98,6,1,1,0,0,7,4,1,726,895196.63,0,0,4090.2783 -1492,1812,3356,3355,-9,-9,2,1,0,52,1,0,2,0,3,-9,2,1,0,0,2,8.1222258,7.8455691,0,2,0,-9,32,0,-2,49.398205,0,0,0,54,3,3,1,2,2,2019,1,1,7,1,38,36,15,1,0,1,0,9.1431293,9.1431293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.220001,15.98,54.959999,53.169998,5,1,1,0,0,7,4,1,726,895196.63,0,0,4090.2783 -1492,1812,3357,-9,3356,3355,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1127.7944,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,7,4,1,726,895196.63,0,0,4090.2783 -1492,1812,3358,-9,3356,3355,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-977.60321,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,7,4,1,726,895196.63,0,0,4090.2783 -1492,1813,3359,-9,3356,3355,3,1,1,25,2,0,2,0,2,-9,2,1,0,0,4,8.1463804,8.3291349,0,3,0,0,0,-9,0,-1050.6024,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,55,55,15,1,0,-9,1,7.99226,7.99226,0,0,0,0,0,0,0,0,1,1,0,3.7578795,0,0,0,54.009998,53.439999,-9,-9,6,1,1,0,0,7,4,1,941,155690.09,0,0,1653.6359 -1493,1814,3360,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,4,0,7.7097692,7.784646,3,0,0,0,-9,0,-897.84662,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,1,0,38,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5189359,7.3975582,0,0,54.529999,49.110001,-9,-9,6,1,1,0,0,9,3,1,682,690616.5,0,0,1461.2471 -1494,1815,3361,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,0,5,8.3984718,8.1751499,0,3,0,0,0,-9,0,-966.56909,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,48,15,1,0,-9,0,12.117181,12.117181,0,0,0,0,0,0,0,0,1,1,0,.042128194,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,4,0,2472,672355.75,0,0,887.99109 -1495,1816,3362,3363,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,8.3865938,8.3852625,0,2,0,-9,7,0,8,-1.2119567,0,0,0,38,1,3,1,-9,-9,2019,1,1,7,0,48,94,15,1,0,1,0,10.071168,10.071168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,54.369999,54.799999,5,1,1,0,0,13,5,1,566.75,509975.56,0,0,3973.7146 -1495,1816,3363,3362,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,8.8083181,8.8724537,0,2,0,-9,16,0,-8,4.7037444,0,0,1,46,1,5,1,1,2,2019,1,2,5,0,32,28,15,1,0,1,0,24.728451,24.728451,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,54.689999,57.470001,6,1,1,0,0,13,5,1,566.75,509975.56,0,0,3973.7146 -1495,1816,3364,-9,3363,3362,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1143.0684,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,566.75,509975.56,0,0,3973.7146 -1495,1816,3365,-9,3363,3362,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1124.2166,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,5,1,566.75,509975.56,0,0,3973.7146 -1496,1817,3366,3367,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,4.3992519,4.7489462,1,0,-9,9,0,-4,89.195908,0,0,0,82,3,3,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.4462972,0,0,45.82,33.470001,54,46,4,1,1,0,0,7,2,0,257.5,287398.44,0,0,416.98364 -1496,1817,3367,3366,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,4,-46.030495,0,0,0,78,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,45.82,33.470001,6,1,1,0,0,7,2,0,257.5,287398.44,0,0,416.98364 -1497,1818,3368,-9,3372,3369,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1027.9481,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,9,5,1,505.79999,677005.38,0,0,6787.1362 -1497,1818,3369,3372,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,0,4,9.647069,9.4952745,0,2,0,-9,17,0,0,59.113342,0,0,0,41,1,5,1,2,2,2019,1,1,7,0,50,60,15,1,0,1,0,28.734562,28.734562,0,0,0,0,0,0,0,0,0,0,0,3.6988533,0,0,0,53.330002,53.709999,57.060001,57.759998,6,1,1,0,0,9,5,1,505.79999,677005.38,0,0,6787.1362 -1497,1818,3370,-9,3372,3369,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.2692,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,5,1,505.79999,677005.38,0,0,6787.1362 -1497,1818,3371,-9,3372,3369,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1012.106,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,9,5,1,505.79999,677005.38,0,0,6787.1362 -1497,1818,3372,3369,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,0,5,9.1083622,9.1101055,0,2,0,-9,17,0,0,-58.887817,0,0,1,41,1,4,1,2,2,2019,1,2,5,0,62,60,15,1,0,1,0,11.145962,11.145962,0,0,0,0,0,0,0,0,0,0,0,3.5250998,0,0,0,57.060001,57.759998,53.330002,53.709999,6,1,1,0,0,9,5,1,505.79999,677005.38,0,0,6787.1362 -1498,1819,3373,-9,3374,3376,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.2219,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,486.5,1296907.3,0,0,5207.8257 -1498,1819,3374,3376,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,8.7169981,8.7473383,0,2,0,-9,18,0,-5,-65.581985,0,0,1,49,2,3,1,2,2,2019,1,2,23,11,30,38,15,1,1,1,0,24.364889,24.364889,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.809999,60.189999,49.34,47.5,3,1,1,0,0,7,5,1,486.5,1296907.3,0,0,5207.8257 -1498,1819,3375,-9,3374,3376,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.0891,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,486.5,1296907.3,0,0,5207.8257 -1498,1819,3376,3374,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,3,8.4578686,8.74508,0,2,0,-9,18,0,5,80.155853,0,0,0,44,1,3,1,3,3,2019,1,1,13,1,40,46,15,1,0,1,0,19.062874,19.062874,0,0,0,0,0,0,0,2,1,1,0,2.0791807,0,0,3,49.34,47.5,30.809999,60.189999,5,1,1,0,0,7,5,1,486.5,1296907.3,0,0,5207.8257 -1499,1820,3377,3378,-9,-9,1,1,0,38,1,0,0,0,1,-9,1,1,0,0,4,7.0473099,7.3220463,0,1,0,-9,15,0,-6,-66.357498,0,0,1,44,3,3,1,1,1,2019,1,2,8,0,40,28,15,1,0,1,0,4.3226452,4.3226452,0,0,0,0,0,0,0,0,0,0,0,6.7709365,0,0,0,51.830002,57.200001,59.43,48.330002,6,1,1,0,0,7,4,1,285,357331.25,0,0,3423.6909 -1499,1820,3378,3377,-9,-9,2,1,1,44,1,0,0,0,3,-9,1,1,0,0,3,8.437686,8.3711576,0,1,0,-9,15,0,6,-70.100975,0,0,0,38,1,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,11.15694,11.15694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,48.330002,51.830002,57.200001,6,1,1,0,0,7,4,1,285,357331.25,0,0,3423.6909 -1500,1821,3379,3380,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,2,0,5.9466324,6.0139289,1,0,-9,29,0,0,31.224762,0,0,0,65,2,2,1,-9,-9,2019,3,1,13,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9836096,6.1294999,0,0,51.529999,21.209999,47.200001,43.310001,4,2,3,0,0,5,5,1,280.5,466983.06,0,0,5751.833 -1500,1821,3380,3379,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,2,8.601059,8.8047266,8.0206127,1,0,-9,29,0,0,49.079689,0,0,0,65,1,2,3,3,-9,2019,2,2,9,3,100,57,15,1,0,4,0,4.8939557,4.8939557,0,0,0,0,0,0,0,0,1,1,0,2.2084172,8.478467,0,0,47.200001,43.310001,51.529999,21.209999,4,2,3,0,0,5,5,1,280.5,466983.06,0,0,5751.833 -1501,1822,3381,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,4,8.2585716,8.27034,0,3,0,0,0,-9,0,-1025.5078,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,45,15,1,0,-9,0,11.009257,11.009257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.099998,53.529999,-9,-9,4,1,1,0,0,9,4,0,268,14327.188,0,0,2037.0121 -1501,1823,3382,-9,-9,-9,2,1,0,42,2,0,0,0,2,-9,2,1,0,0,4,8.0811529,8.3739395,0,3,0,0,0,-9,0,-839.92242,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,33,15,1,0,-9,0,10.81893,10.81893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.650002,60.470001,-9,-9,6,1,1,0,0,9,4,0,194,77420.422,0,0,1066.7996 -1502,1824,3383,3384,-9,-9,2,1,1,56,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,26,0,1,9.1281157,0,0,0,55,2,4,1,2,2,2019,3,1,9,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,54.200001,57.490002,6,1,1,1,0,9,3,1,978.5,536594.13,0,0,983.67798 -1502,1824,3384,3383,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.0165453,7.9468064,0,1,0,-9,26,0,-1,-44.624969,0,0,0,56,2,4,3,3,3,2019,2,2,8,0,45,45,15,1,0,3,0,9.433651,9.433651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,9,3,1,978.5,536594.13,0,0,983.67798 -1503,1825,3385,3386,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,8.4205666,8.4418802,0,1,0,-9,1,-9,-3,9.7105541,-9,0,0,44,3,3,1,3,3,2019,1,2,9,0,41,0,15,1,0,1,0,8.7737427,8.7737427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,41.209999,51.34,6,1,1,0,0,6,4,0,774.5,-71841.008,0,0,2306.2375 -1503,1825,3386,3385,-9,-9,2,1,0,44,1,0,0,0,3,-9,2,1,0,0,3,7.5507169,7.4120603,0,1,0,-9,1,-9,3,-55.182968,-9,0,1,41,2,3,1,3,3,2019,1,1,12,1,29,0,15,1,0,1,0,7.0603061,7.0603061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.209999,51.34,54.369999,54.799999,5,1,1,0,0,6,4,0,774.5,-71841.008,0,0,2306.2375 -1504,1826,3387,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,0,3,8.2915421,8.199008,0,3,0,0,0,-9,0,-1122.766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,37,0,15,1,1,-9,0,10.64972,10.64972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.309999,49.080002,-9,-9,4,1,1,0,0,10,4,1,1771,13727.467,0,0,1637.8893 -1505,1827,3388,3389,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,0,3,8.9778948,8.8909712,0,1,0,-9,6,0,-2,-.12575975,0,0,0,64,1,3,1,2,2,2019,1,1,9,0,42,44,15,1,0,1,0,20.744915,20.744915,0,0,0,0,0,0,0,0,0,0,0,5.1632109,0,0,0,54.369999,54.799999,52,48,5,1,1,0,0,8,5,1,440,3282400,0,0,6640.9053 -1505,1827,3389,3388,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,0,3,8.6624689,9.1930666,0,1,0,-9,6,0,2,-54.075542,0,0,0,62,1,3,1,-9,-9,2019,1,2,10,1,50,50,15,1,0,1,0,20.168789,20.168789,0,0,0,0,0,0,0,0,0,0,0,1.7754748,0,0,0,52,48,54.369999,54.799999,5,4,1,0,0,8,5,1,440,3282400,0,0,6640.9053 -1505,1828,3390,-9,3388,3389,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.0848999,7.8986759,0,3,0,0,0,-9,0,-955.98895,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,40,0,15,1,0,-9,1,8.8734722,8.8734722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,8,4,1,179,-168840.58,0,0,1258.8885 -1505,1829,3391,-9,3388,3389,4,1,0,22,2,0,0,0,2,1,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1075.3116,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,5,1,1,0,0,8,1,1,260,0,0,0,0 -1506,1830,3392,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,1,0,6.6811619,6.1832957,3,0,0,0,-9,0,-910.92914,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0256995,6.2066135,0,0,48.950001,11.47,-9,-9,5,1,1,0,0,2,2,0,403,412336.22,0,0,1727.9407 -1507,1831,3393,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,7.2059193,7.5077395,3,0,0,0,-9,0,-1073.0571,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2610216,0,0,48.41,39.630001,-9,-9,6,1,1,0,0,11,3,1,334,585487.19,0,0,1284.063 -1508,1832,3394,3395,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,3,-86.474632,0,0,0,79,1,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.93,54.77,55.470001,52.91,6,1,1,0,0,10,3,1,994,1774191.6,0,0,1940.3038 -1508,1832,3395,3394,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.8016515,7.5927505,1,0,-9,59,0,-3,128.06477,0,0,0,82,3,4,3,2,2,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8681936,0,0,55.470001,52.91,50.93,54.77,6,1,1,0,0,10,3,1,994,1774191.6,0,0,1940.3038 -1509,1833,3396,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,2,9.1564198,9.3861103,0,1,0,-9,7,0,3,42.216545,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,11,1,37,41,15,1,0,-9,0,34.28487,34.28487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.110001,34.119999,48.650002,62.889999,5,2,3,0,0,8,5,1,336,25199.449,0,0,5674.7983 -1509,1834,3397,-9,-9,-9,2,1,1,36,2,0,0,0,1,-9,2,1,0,0,5,9.539628,9.4085941,0,1,0,-9,7,0,-3,97.019836,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,12,3,42,60,15,1,0,-9,0,25.381226,25.381226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.650002,62.889999,59.110001,34.119999,4,1,1,0,0,8,5,1,77,1586417.3,0,0,4281.769 -1510,1835,3398,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,4,3,0,1,1,0,7.2099876,6.4840164,3,0,0,0,-9,0,-1021.7978,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,4,1,-9,0,0,0,1,47.165768,0,0,0,0,461.0112,0,1,1,0,0,6.9543586,0,0,20.9,21.84,-9,-9,1,1,1,0,0,1,2,1,1345,800131.25,0,0,2073.3596 -1511,1836,3399,3400,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,8.242466,7.9856777,0,2,0,-9,16,0,0,-115.17636,0,0,0,38,2,3,1,3,2,2019,1,1,10,0,58,45,15,1,0,1,0,6.1707706,6.1707706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,46.080002,57.200001,5,2,3,0,0,2,4,1,547,240106.7,0,0,2043.8452 -1511,1836,3400,3399,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.8917336,7.7772255,0,2,0,-9,16,0,0,78.027817,0,0,1,38,1,4,1,3,2,2019,1,2,12,0,30,30,15,1,0,1,0,9.5984259,9.5984259,0,0,0,0,0,0,0,0,1,1,0,1.1700642,0,0,0,46.080002,57.200001,45.91,59.889999,6,2,3,0,0,2,4,1,547,240106.7,0,0,2043.8452 -1512,1837,3401,-9,3402,3403,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-925.92267,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,4,5,1,456.66666,390715.66,0,0,5690.1851 -1512,1837,3402,3403,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,2,9.075448,9.0297232,0,2,0,-9,23,0,-2,91.445557,0,0,1,46,2,5,1,3,3,2019,1,1,13,1,45,38,15,1,0,1,0,24.978928,24.978928,0,0,0,0,0,0,0,0,1,1,0,2.330936,0,0,0,55.779999,39.419998,52.380001,55.950001,5,2,3,0,0,4,5,1,456.66666,390715.66,0,0,5690.1851 -1512,1837,3403,3402,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,5,8.9826765,8.9752207,0,2,0,-9,23,0,2,103.03901,0,0,0,44,1,2,1,2,3,2019,1,2,11,0,37,40,15,1,0,1,0,23.611197,23.611197,0,0,0,0,0,0,0,0,1,1,0,1.2862858,0,0,0,52.380001,55.950001,55.779999,39.419998,7,2,3,0,0,4,5,1,456.66666,390715.66,0,0,5690.1851 -1512,1838,3404,-9,3402,3403,3,1,1,18,2,0,1,0,2,1,2,1,0,0,4,8.0650358,7.8317575,0,3,0,0,0,-9,0,-912.41528,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,37,0,15,1,0,-9,1,7.6579471,7.6579471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,-9,-9,6,2,3,0,0,4,3,1,891,-50262.625,0,0,1053.3029 -1513,1839,3405,-9,3408,3407,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.58636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,1173.75,1136915.1,0,0,2478.3438 -1513,1839,3406,-9,3408,3407,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.0114,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,1173.75,1136915.1,0,0,2478.3438 -1513,1839,3407,3408,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.8152657,8.9602909,0,2,0,-9,22,0,4,6.7197843,0,0,0,40,2,5,1,2,2,2019,1,1,7,0,47,0,15,1,0,1,0,16.682482,16.682482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,54.099998,59.110001,5,1,1,0,0,4,4,1,1173.75,1136915.1,0,0,2478.3438 -1513,1839,3408,3407,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,0,5,7.5726094,7.723588,0,2,0,-9,22,0,-4,23.225891,0,0,1,44,2,4,1,2,2,2019,1,2,10,0,24,0,15,1,0,1,0,12.011024,12.011024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,49.41,58.279999,6,1,1,0,0,4,4,1,1173.75,1136915.1,0,0,2478.3438 -1514,1840,3409,3410,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,8.3042698,8.6229696,1,0,-9,58,0,2,-28.596447,0,0,0,78,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0296373,8.186697,0,0,63.259998,45.23,53.939999,41.290001,6,1,1,0,0,10,4,0,2141.5,1119178.6,0,0,3188.8435 -1514,1840,3410,3409,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-2,23.97348,0,0,0,80,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1200724,0,0,0,53.939999,41.290001,63.259998,45.23,6,1,1,0,0,10,4,0,2141.5,1119178.6,0,0,3188.8435 -1515,1841,3411,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,1,1,0,0,4,7.2506542,7.9780655,6.971169,3,0,-9,0,1,0,-1115.75,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,36,42,15,1,0,-9,0,5.368813,5.368813,0,0,0,0,0,0,0,0,1,1,0,0,6.8215003,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,2,3,0,350,133189.39,0,0,1464.3711 -1516,1842,3412,3413,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,0,1,8.682107,8.2148552,0,1,0,-9,7,0,-3,-13.698932,0,0,1,47,1,2,1,2,2,2019,1,1,18,6,68,0,15,1,1,1,0,6.7027683,6.7027683,0,0,0,0,0,0,0,7,0,0,0,0,0,8.0393753,1,27,36.970001,42.049999,29.67,2,1,1,0,0,2,5,1,310,237608.2,0,0,2770.8953 -1516,1842,3413,3412,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,0,2,8.2035751,8.3037853,0,1,0,-9,7,0,3,56.810226,0,0,0,44,1,1,1,3,2,2019,1,2,15,3,30,31,15,1,0,1,0,13.363313,13.363313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.049999,29.67,27,36.970001,4,1,1,0,0,2,5,1,310,237608.2,0,0,2770.8953 -1517,1843,3414,-9,-9,-9,1,1,1,86,3,0,0,0,1,-9,4,3,0,0,3,0,8.7021093,9.1746645,3,0,0,0,-9,0,-1173.2422,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5436263,9.0482035,0,0,55,45,-9,-9,6,1,1,0,0,11,5,1,349,1171008.6,0,0,4636.3198 -1518,1844,3415,3416,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,4,8.2775183,8.0593719,0,1,0,-9,10,0,5,-64.488037,0,0,0,38,1,4,1,1,2,2019,1,2,10,0,36,36,15,1,0,1,0,11.867972,11.867972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,44.209999,60.790001,6,1,1,0,0,12,5,1,1010.5,554753.75,0,0,4137.8369 -1518,1844,3416,3415,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,0,4,8.9559793,8.8561792,0,1,0,-9,10,0,-5,-140.01219,0,0,1,43,2,4,1,2,2,2019,1,1,8,0,42,45,15,1,0,1,0,18.827763,18.827763,0,0,0,0,0,0,0,0,0,0,0,.55541158,0,0,0,44.209999,60.790001,51.830002,57.200001,6,1,1,0,0,12,5,1,1010.5,554753.75,0,0,4137.8369 -1519,1845,3417,3418,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,5,8.6593504,8.65979,0,1,0,-9,30,0,-1,-8.5913181,0,0,0,54,1,5,1,1,1,2019,1,2,15,3,40,40,15,1,0,1,0,15.578757,15.578757,0,0,0,0,0,0,0,0,0,0,0,3.8763053,0,0,0,48.709999,61.529999,35.75,66.169998,5,1,1,0,0,11,5,1,627,845937.38,0,0,3891.9644 -1519,1845,3418,3417,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,5,8.0832949,8.2291775,0,1,0,-9,31,0,1,-38.273232,0,0,0,53,1,5,1,3,3,2019,1,1,12,4,60,60,15,1,1,1,0,6.4629416,6.4629416,0,0,0,0,0,0,0,0,0,0,0,2.6685431,0,0,0,35.75,66.169998,48.709999,61.529999,5,1,1,0,0,11,5,1,627,845937.38,0,0,3891.9644 -1520,1846,3419,3420,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.6566439,8.025466,1,0,-9,8,0,10,61.091625,0,0,0,53,2,4,1,2,2,2019,3,1,13,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9056005,7.6883922,0,0,42.959999,53.209999,52.310001,58.290001,1,1,1,0,0,11,5,1,369.5,3446538.5,0,0,3661.6748 -1520,1846,3420,3419,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.6518259,8.9696712,0,1,0,-9,8,0,-10,74.247162,0,0,0,63,1,4,3,2,2,2019,2,2,9,0,49,37,15,1,0,4,0,17.470869,17.470869,0,0,0,0,0,0,0,2,0,0,0,0,0,8.5742426,3,52.310001,58.290001,42.959999,53.209999,6,1,1,0,0,11,5,1,369.5,3446538.5,0,0,3661.6748 -1521,1847,3421,3422,-9,-9,2,1,0,60,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,38,0,0,-23.693628,0,0,0,69,1,2,3,2,3,2019,4,1,11,2,0,24,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,34.299999,45.470001,5,1,1,0,0,9,2,1,282,802694.88,0,0,1578.2021 -1521,1847,3422,3421,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.5439744,7.102694,1,0,-9,36,0,9,-84.909302,0,0,0,60,1,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6217563,7.1488233,0,0,34.299999,45.470001,49,48,4,4,5,0,0,9,2,1,282,802694.88,0,0,1578.2021 -1521,1848,3423,-9,3421,3422,3,1,1,34,2,0,0,0,1,-9,2,1,0,0,4,8.2170305,7.7885365,0,3,0,0,0,-9,0,-886.8139,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,16,32,15,1,0,-9,1,23.353539,23.353539,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,9,4,1,624,66033.156,0,0,1007.8413 -1522,1849,3424,3425,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,6.5227628,6.8138833,1,0,-9,1,-9,3,158.39325,-9,0,0,68,3,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9170485,0,0,53,46,47.549999,44.330002,5,1,1,0,0,1,2,1,327.5,79230.594,0,0,1703.8047 -1522,1849,3425,3424,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,46,-9,-3,-13.979754,-9,0,0,71,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.08559,1,47.549999,44.330002,53,46,6,1,1,0,0,1,2,1,327.5,79230.594,0,0,1703.8047 -1523,1850,3426,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,3,8.079299,7.8564878,0,3,0,0,0,-9,0,-1024.7666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,0,7.8452511,7.8452511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.990002,49.189999,-9,-9,6,1,1,0,0,4,3,1,208,112484.52,0,0,1668.4528 -1524,1851,3427,3428,-9,-9,2,1,0,68,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,45,0,-1,59.140079,0,0,0,69,3,4,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,54.790001,55.860001,5,1,1,0,0,13,2,1,490,289000.5,0,0,1326.6287 -1524,1851,3428,3427,-9,-9,1,1,1,69,1,0,0,0,3,-9,1,1,0,0,4,6.0472116,6.0103483,0,1,0,-9,45,0,1,49.22599,0,0,0,68,3,4,3,3,3,2019,2,2,7,0,70,70,15,1,0,3,0,.68845826,.68845826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,54.790001,55.860001,6,1,1,0,0,13,2,1,490,289000.5,0,0,1326.6287 -1525,1852,3429,-9,3430,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1043.0929,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,55,-9,-9,5,1,1,0,0,4,3,1,796,-168576.47,0,0,2506.2839 -1525,1852,3430,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,3,7.2927308,7.7084413,6.6997471,4,0,0,0,-9,0,-1001.7361,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,24,15,1,0,-9,0,5.5009322,5.5009322,0,0,0,0,0,0,0,2,1,0,1,6.5807595,0,5.6639171,3,46.02,46.330002,-9,-9,3,1,1,0,0,4,3,1,796,-168576.47,0,0,2506.2839 -1525,1853,3431,-9,3430,-9,2,1,0,22,2,0,1,0,1,-9,2,1,0,0,5,7.7842522,7.15133,0,3,0,0,0,-9,0,-955.39923,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,44,8,15,1,0,-9,1,4.8948269,4.8948269,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.139999,60.450001,-9,-9,5,1,1,0,0,4,3,1,1691,96867.75,0,0,734.36932 -1525,1854,3432,-9,3430,-9,3,1,1,20,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1051.6973,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.57,63.900002,-9,-9,4,1,1,0,0,4,1,1,129,0,0,0,0 -1526,1855,3433,-9,3436,3434,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.95184,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,4,1,468.25,331082.28,0,0,4136.2383 -1526,1855,3434,3436,-9,-9,1,1,1,34,1,2,2,0,1,-9,2,1,0,0,3,8.8785048,9.1090708,0,2,0,-9,6,0,1,-11.231372,0,0,0,33,1,2,1,2,2,2019,1,2,10,0,38,45,15,1,0,1,0,21.991962,21.991962,0,0,0,0,0,0,0,0,1,1,0,5.0497699,0,0,0,57.900002,51.84,55.150002,45.23,6,4,5,0,0,7,4,1,468.25,331082.28,0,0,4136.2383 -1526,1855,3435,-9,3436,3434,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1030.1165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,7,4,1,468.25,331082.28,0,0,4136.2383 -1526,1855,3436,3434,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,0,2,0,0,0,2,0,-9,6,0,-1,95.431137,0,0,1,34,1,3,1,-9,-9,2019,1,1,5,0,0,21,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6541364,0,0,0,55.150002,45.23,57.900002,51.84,6,1,1,0,0,7,4,1,468.25,331082.28,0,0,4136.2383 -1527,1856,3437,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-942.24707,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,56,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.200001,43.84,-9,-9,3,1,1,1,0,8,1,0,2129,-23007.891,0,0,1659.3019 -1528,1857,3438,3439,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,0,3,9.1625605,9.0751619,0,2,0,-9,26,0,-4,-45.296093,0,0,0,51,2,3,3,2,2,2019,2,2,6,0,40,45,15,1,0,3,0,26.589987,26.589987,0,0,0,0,0,0,0,0,1,1,0,1.1909794,0,0,0,57.330002,53.459999,53.59,49.639999,6,1,1,0,0,9,5,1,1535,258782.17,0,0,3226.9556 -1528,1857,3439,3438,-9,-9,2,1,0,51,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,24,0,4,-71.900581,0,0,0,47,1,3,1,3,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.126141,3,53.59,49.639999,57.330002,53.459999,6,1,1,0,0,9,5,1,1535,258782.17,0,0,3226.9556 -1528,1857,3440,-9,3439,3438,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1063.3734,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,5,1,1535,258782.17,0,0,3226.9556 -1529,1858,3441,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,0,4,7.1376233,7.3619022,4.3087511,3,0,0,0,-9,0,-1024.5984,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,20,35,15,1,0,-9,0,6.8334975,6.8334975,0,0,0,0,0,0,0,0,1,1,0,3.9163618,4.244185,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,12,3,1,800,7632.2261,0,0,1849.1675 -1530,1859,3442,3443,-9,-9,1,1,0,48,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,9,0,0,0,0,39,3,2,3,3,3,2019,4,2,20,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.780001,17.809999,47.490002,35.16,3,1,1,0,0,13,1,0,824.5,21389.848,0,0,1812.7349 -1530,1859,3443,3442,-9,-9,2,1,1,39,1,0,0,0,3,-9,97,3,0,1,2,0,0,0,1,0,-9,7,0,0,0,-9,0,0,48,3,1,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.6551714,2,47.490002,35.16,29.780001,17.809999,5,4,1,0,0,13,1,0,824.5,21389.848,0,0,1812.7349 -1530,1860,3444,-9,-9,3443,3,1,1,18,2,0,0,0,2,-9,2,1,0,0,5,5.7739873,5.748888,0,3,0,0,0,-9,0,-988.00726,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,35,0,15,1,0,-9,1,1.3017077,1.3017077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.150002,49.380001,-9,-9,7,1,1,0,0,13,2,0,191,-64500.195,0,0,471.52676 -1531,1861,3445,3446,3447,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,9.1454477,9.2436152,0,1,0,-9,8,0,12,35.836899,0,0,0,40,1,3,3,2,3,2019,2,2,16,6,35,35,15,1,1,3,0,29.711674,29.711674,0,0,0,0,0,0,0,91,1,1,0,5.0275331,0,123.97866,3,35.91,63.189999,35.34,50.049999,6,1,1,0,0,8,5,1,250.5,1617746.8,0,0,3471.8701 -1531,1861,3446,3445,-9,-9,2,1,1,40,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,8,0,-12,45.668919,0,0,0,52,1,4,1,1,2,2019,3,1,25,11,0,37,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.8446834,0,40.692543,3,35.34,50.049999,35.91,63.189999,3,1,1,0,0,8,5,1,250.5,1617746.8,0,0,3471.8701 -1531,1862,3447,-9,-9,-9,3,1,0,94,3,0,0,0,2,-9,4,3,0,0,3,0,6.9950781,7.1998234,3,0,0,0,-9,0,-966.97809,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,0,0,15,4,1,-9,0,0,0,1,11.541793,0,5.4940639,0,0,111.00594,0,1,1,0,6.6144004,7.2821002,0,0,71.379997,12.71,-9,-9,2,1,1,0,0,8,2,1,796,835288.5,0,0,1382.5192 -1532,1863,3448,3449,-9,-9,2,1,1,40,1,0,2,0,2,-9,1,1,0,0,3,8.4498272,8.7608624,0,2,0,-9,8,0,-1,78.063293,-9,0,0,41,2,3,1,2,2,2019,1,1,19,7,40,0,15,1,1,1,0,15.881044,15.881044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.879999,59.650002,44.220001,56.66,3,1,1,0,0,10,4,1,1101.3334,30879.137,0,0,3159.1565 -1532,1863,3449,3448,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,3,6.6971288,6.7269506,0,2,0,-9,8,0,1,-72.824936,0,0,1,40,2,3,1,2,2,2019,1,2,16,4,10,14,15,1,1,1,0,11.300157,11.300157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.220001,56.66,25.879999,59.650002,6,1,1,0,0,10,4,1,1101.3334,30879.137,0,0,3159.1565 -1532,1863,3450,-9,3449,3448,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.222,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,1101.3334,30879.137,0,0,3159.1565 -1533,1864,3451,3452,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,0,4,8.571929,8.4853344,0,2,0,-9,7,0,1,-44.027275,0,0,1,29,2,4,1,2,2,2019,1,1,11,2,52,60,15,1,0,1,0,13.158304,13.158304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.84,51.669998,55.790001,52.619999,6,1,1,0,0,7,5,1,834.66669,-26370.506,0,0,4828.3467 -1533,1864,3452,3451,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,0,4,8.6813908,9.0597086,0,2,0,-9,7,0,-1,-11.032137,0,1,0,30,1,4,1,2,2,2019,1,2,5,0,47,45,15,1,0,1,0,12.510561,12.510561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,51.84,51.669998,7,1,1,0,0,7,5,1,834.66669,-26370.506,0,0,4828.3467 -1533,1864,3453,-9,3451,3452,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-961.65295,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,834.66669,-26370.506,0,0,4828.3467 -1534,1865,3454,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1019.6796,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,7.9070644,0,2.0999889,0,2.4627426,33.973152,0,1,1,0,0,0,0,0,34.470001,19.620001,-9,-9,4,1,1,0,0,10,1,0,2104,227433.22,0,0,93.504631 -1535,1866,3455,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,0,3,0,5.8598475,6.2191062,3,0,0,0,-9,0,-1061.7653,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8649364,0,0,53,47,-9,-9,5,1,1,0,0,2,2,0,411,52713.371,0,0,721.10968 -1536,1867,3456,-9,-9,3457,2,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.147,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,17,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8937302,0,0,0,6.75,72.82,-9,-9,4,1,1,0,0,7,1,0,744.5,122453.16,0,0,416.30576 -1536,1867,3457,-9,-9,-9,1,1,1,39,3,0,1,0,2,-9,1,1,0,0,2,0,0,0,4,0,0,0,-9,0,-1009.2413,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,39,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.01,47.52,-9,-9,3,1,1,0,0,7,1,0,744.5,122453.16,0,0,416.30576 -1537,1868,3458,3459,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.0873318,8.1836205,0,1,0,-9,7,0,4,53.781693,0,0,0,54,1,5,1,-9,-9,2019,1,1,7,0,40,45,15,1,0,1,0,10.399879,10.399879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,48.18,61.799999,6,1,1,0,0,13,5,1,159.5,1972470.3,0,0,4564.5361 -1537,1868,3459,3458,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,5,9.250248,8.866888,0,1,0,-9,7,0,-4,-99.049599,0,0,0,58,2,4,1,3,2,2019,1,2,12,1,40,42,15,1,0,1,0,26.597019,26.597019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,57.16,56.150002,6,1,1,0,0,13,5,1,159.5,1972470.3,0,0,4564.5361 -1538,1869,3460,3461,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,43,0,4,0,0,0,0,63,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,33,33.509998,6,1,1,0,0,2,1,0,215,291888.63,0,0,2116.9116 -1538,1869,3461,3460,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-4,0,0,0,0,67,3,3,3,-9,-9,2019,4,1,30,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,33.509998,55.959999,49.93,1,1,1,0,0,2,1,0,215,291888.63,0,0,2116.9116 -1538,1870,3462,-9,-9,-9,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.7676482,7.8913822,0,3,0,0,0,-9,0,-905.88489,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,40,15,1,0,-9,0,6.2186489,6.2186489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,-9,-9,7,1,1,0,0,2,3,0,217,-220942.83,0,0,885.94159 -1538,1871,3463,-9,-9,-9,4,1,0,18,2,0,0,1,2,0,7,2,0,0,3,6.0253701,6.4678636,0,3,0,0,0,-9,0,-993.83606,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.830002,35.970001,-9,-9,6,1,1,0,0,2,2,0,818,-203411.48,0,0,1149.4233 -1539,1872,3464,3467,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,8.6318932,8.2638178,0,2,0,-9,10,0,0,-31.790157,0,0,0,41,2,5,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,15.711997,15.711997,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,57.060001,57.759998,5,1,1,0,0,7,4,0,1498,710328,0,0,2922.9634 -1539,1872,3465,-9,3467,3464,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-892.67914,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,7,4,0,1498,710328,0,0,2922.9634 -1539,1872,3466,-9,3467,3464,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.1951,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,0,1498,710328,0,0,2922.9634 -1539,1872,3467,3464,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,7.0056009,7.3884416,0,2,0,-9,20,0,0,33.134598,0,0,1,41,2,4,1,-9,-9,2019,1,2,7,0,20,20,15,1,0,1,0,8.8581381,8.8581381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,50,56,7,1,1,0,0,7,4,0,1498,710328,0,0,2922.9634 -1540,1873,3468,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1012.459,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.7432795,3,55.560001,46,-9,-9,6,1,1,0,0,7,1,0,928,-82366.516,0,0,1359.6356 -1541,1874,3469,-9,-9,-9,1,1,1,46,3,0,0,0,3,-9,2,1,0,0,3,8.010004,8.5147152,0,3,0,0,0,-9,0,-1076.3864,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,50,60,15,1,0,-9,0,7.6933122,7.6933122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.150002,41.419998,-9,-9,4,1,1,0,0,9,4,1,419,309405.84,0,0,1018.5359 -1542,1875,3470,3471,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,8.2780008,8.2494764,0,1,0,-9,5,0,-2,-55.62384,0,1,1,28,2,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,11.605205,11.605205,0,0,0,0,0,0,0,0,0,0,0,.30171087,0,0,0,55.189999,54.259998,57.16,56.150002,6,1,1,0,0,10,5,1,752.5,56501.73,0,0,3993.6421 -1542,1875,3471,3470,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.7875853,8.8354979,0,1,0,-9,5,0,2,-144.23399,0,1,0,26,2,4,1,1,2,2019,1,2,7,0,50,40,15,1,0,1,0,13.833145,13.833145,0,0,0,0,0,0,0,0,0,0,0,1.1688384,0,0,0,57.16,56.150002,55.189999,54.259998,7,1,1,0,0,10,5,1,752.5,56501.73,0,0,3993.6421 -1543,1876,3472,3473,-9,-9,1,1,0,25,1,0,0,0,1,-9,1,1,0,0,2,7.4263635,7.2084298,0,1,0,1,1,-9,-2,-3.3054726,0,1,1,27,1,4,1,-9,-9,2019,1,2,11,1,18,0,15,1,0,1,0,12.144967,12.144967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.68,43.709999,49.060001,58.639999,7,2,3,0,0,7,5,0,735,269743.78,0,0,2976.8027 -1543,1876,3473,3472,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,8.5431299,8.5799417,0,1,0,-9,1,-9,2,33.525303,-9,1,0,25,1,2,1,-9,-9,2019,1,1,8,0,38,0,15,1,0,1,0,20.239166,20.239166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.060001,58.639999,52.68,43.709999,6,2,3,0,0,7,5,0,735,269743.78,0,0,2976.8027 -1544,1877,3474,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,8.2386198,7.6431513,3,0,0,0,-9,0,-1050.1641,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.28812,7.7691455,0,0,39.380001,43.189999,-9,-9,5,1,1,0,0,8,3,1,526,807084.5,0,0,1123.7118 -1545,1878,3475,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,1,1,0,0,5,8.3463745,8.2646389,0,3,0,0,0,-9,0,-1034.194,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,50,15,1,0,-9,0,7.939044,7.939044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,0,349,210074.92,0,0,1332.4823 -1546,1879,3476,3477,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,0,3,6.5564122,6.6566038,0,1,0,-9,8,0,7,0,0,0,0,58,3,3,1,3,3,2019,1,2,9,0,12,0,15,1,0,1,0,6.6505866,6.6505866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.639999,43.209999,48.849998,42.66,6,1,1,0,0,11,2,1,1501,212812.48,0,0,1550.7643 -1546,1879,3477,3476,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,1,3,6.4525967,6.6980891,0,1,0,-9,8,0,-7,0,0,0,0,65,3,3,1,3,3,2019,1,1,12,0,12,24,15,1,0,1,0,7.6496496,7.6496496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.849998,42.66,53.639999,43.209999,5,1,1,0,0,11,2,1,1501,212812.48,0,0,1550.7643 -1546,1880,3478,-9,3477,3476,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.7703738,7.5223122,0,3,0,0,0,-9,0,-978.94452,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,1,40,38,15,1,0,-9,1,6.437119,6.437119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,11,3,1,416,63880.645,0,0,2512.9902 -1547,1881,3479,3480,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.1434212,8.0256891,0,1,0,-9,9,0,-4,16.142069,0,0,0,62,2,3,3,3,3,2019,2,1,6,0,30,30,15,1,0,4,0,11.730419,11.730419,0,0,0,0,0,0,0,0,1,1,0,1.2726274,0,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,12,4,1,182,187093.44,0,0,2997.0981 -1547,1881,3480,3479,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,1,3,0,7.7582588,7.8731594,1,0,-9,39,0,4,2.3231919,0,0,0,58,2,4,1,2,2,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4097199,7.4066854,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,12,4,1,182,187093.44,0,0,2997.0981 -1548,1882,3481,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,8.1945238,8.1384029,0,3,0,0,0,-9,0,-898.73267,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,39,15,1,0,-9,0,12.528163,12.528163,0,0,0,0,0,0,0,0,0,0,0,1.2256794,0,0,0,63.380001,53.470001,-9,-9,6,1,1,0,0,4,4,0,171,-94610.609,0,0,1950.9634 -1549,1883,3482,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-848.80829,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.860001,31.43,-9,-9,5,1,1,0,0,1,1,0,610,-70944.078,0,0,991.46576 -1550,1884,3483,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.9681416,7.1764655,3,0,0,0,-9,0,-904.53796,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3483806,0,0,53,44,-9,-9,6,1,1,0,0,6,2,0,225,158027.42,0,0,912.3891 -1551,1885,3484,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,1,0,6.381547,6.5139213,3,0,0,0,-9,0,-1093.0609,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1732826,0,0,46.349998,15.52,-9,-9,1,1,1,0,1,1,2,1,612,227602.3,0,0,1258.6372 -1552,1886,3485,-9,3486,3488,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-890.62402,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,11,4,1,534,85153.117,0,0,3477.6326 -1552,1886,3486,3488,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,0,4,8.7833548,8.5859194,0,2,0,-9,6,0,-2,6.1809988,0,0,1,38,2,3,1,-9,-9,2019,1,1,11,1,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.470001,55.650002,54.959999,53.169998,6,1,1,0,0,11,4,1,534,85153.117,0,0,3477.6326 -1552,1886,3487,-9,3486,3488,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1137.8196,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,534,85153.117,0,0,3477.6326 -1552,1886,3488,3486,-9,-9,1,1,1,38,1,1,2,0,2,-9,2,1,0,0,3,8.1178379,8.2332058,0,2,0,-9,6,0,2,-47.196033,0,0,0,36,1,4,1,1,1,2019,1,2,6,0,40,39,15,1,0,1,0,10.172722,10.172722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,40.470001,55.650002,2,1,1,0,0,11,4,1,534,85153.117,0,0,3477.6326 -1553,1887,3489,-9,3491,-9,2,1,1,26,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1022.9924,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,38,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.310001,56.080002,-9,-9,4,1,1,0,0,11,1,0,561,-31237.822,0,0,192.39973 -1553,1888,3490,-9,3491,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1030.7898,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,11,1,0,289,-3071.1589,0,0,-417.12558 -1553,1889,3491,3492,-9,-9,1,1,0,46,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,4,0,-6,0,0,0,0,52,2,3,3,2,-9,2019,4,4,15,5,0,30,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.330002,56.540001,57.330002,53.459999,3,1,1,1,1,11,1,0,460.5,-11584.02,0,0,737.7959 -1553,1889,3492,3491,-9,-9,4,1,1,52,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,4,0,6,0,0,0,0,46,2,3,3,-9,-9,2019,4,1,6,0,0,45,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,39.330002,56.540001,5,1,1,1,0,11,1,0,460.5,-11584.02,0,0,737.7959 -1554,1890,3493,-9,3495,3494,1,1,0,36,2,0,0,0,1,-9,2,1,0,0,3,8.5778847,8.5162172,0,3,0,-9,0,-9,0,-997.30267,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,42,0,15,1,1,-9,1,17.830622,17.830622,0,0,0,0,0,0,0,0,1,1,0,1.5472593,0,0,0,40.27,50.59,-9,-9,5,1,1,0,0,13,5,1,1157,216727.25,0,0,2621.1184 -1554,1891,3494,3495,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,5,0,7.8192697,7.7009902,1,0,-9,35,-9,2,96.056824,-9,0,0,64,2,3,1,3,2,2019,3,3,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.179769,7.548914,0,0,60.02,56.419998,53.990002,48.040001,7,1,1,0,0,13,5,1,1049.5,948728.94,0,0,6050.9346 -1554,1891,3495,3494,-9,-9,3,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,9.1219749,8.8598423,0,1,0,-9,1,-9,-2,-32.243164,-9,0,0,66,2,5,3,-9,-9,2019,2,2,8,0,37,0,15,1,0,4,0,25.358778,25.358778,0,0,0,0,0,0,0,0,1,1,0,1.3471653,0,0,0,53.990002,48.040001,60.02,56.419998,5,1,1,0,0,13,5,1,1049.5,948728.94,0,0,6050.9346 -1555,1892,3496,3498,-9,-9,1,1,1,62,1,0,3,0,1,-9,2,1,0,0,5,9.3424883,9.0013227,4.4371591,2,0,-9,2,0,8,-45.987873,0,0,0,54,1,4,1,2,3,2019,1,2,11,1,41,42,15,1,0,1,0,27.658865,27.658865,0,0,0,0,0,0,0,0,0,0,0,4.9340711,5.0449991,0,0,51.139999,60.450001,46.84,58.02,5,1,1,0,0,12,5,1,1081.8,2518071.3,0,0,5129.3335 -1555,1892,3497,-9,3498,3496,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,2.8587525,2.7877121,0,2,0,0,0,-9,0,-1120.6355,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,5,1,1081.8,2518071.3,0,0,5129.3335 -1555,1892,3498,3496,-9,-9,2,1,0,54,1,0,3,0,1,-9,2,1,0,0,4,8.8554592,8.8185043,0,2,0,-9,2,0,-8,61.877102,-9,0,0,62,1,5,1,2,2,2019,1,1,16,5,37,0,15,1,1,1,0,18.345709,18.345709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.84,58.02,51.139999,60.450001,5,1,1,0,0,12,5,1,1081.8,2518071.3,0,0,5129.3335 -1555,1892,3499,-9,3498,3496,5,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.25183,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,1081.8,2518071.3,0,0,5129.3335 -1555,1892,3500,-9,3498,3496,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1030.2316,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,12,5,1,1081.8,2518071.3,0,0,5129.3335 -1556,1893,3501,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-940.47955,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.419998,35.650002,-9,-9,6,2,3,0,0,8,1,0,974,73419.984,0,0,2762.6619 -1557,1894,3502,-9,3504,3503,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1211.8817,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,1061.6666,865219.44,0,0,6174.291 -1557,1894,3503,3504,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,0,2,9.6881828,9.6910515,7.2195787,2,0,-9,6,0,18,-37.262173,0,0,0,39,1,3,1,3,3,2019,1,2,9,0,40,35,15,1,0,1,0,54.814899,54.814899,0,0,0,0,0,0,0,0,0,0,0,7.3482108,8.0355492,0,0,51.790001,48.18,50.279999,48.650002,6,1,1,0,0,13,5,1,1061.6666,865219.44,0,0,6174.291 -1557,1894,3504,3503,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,3,7.8404698,7.8049097,0,2,0,-9,6,0,-18,-88.095558,0,0,1,57,2,2,1,-9,-9,2019,1,1,10,0,35,33,15,1,0,1,0,7.0439892,7.0439892,0,0,0,0,0,0,0,0,0,0,0,2.6909807,0,0,0,50.279999,48.650002,51.790001,48.18,6,1,1,0,0,13,5,1,1061.6666,865219.44,0,0,6174.291 -1558,1895,3505,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,4,0,6.5946507,6.3485732,3,0,0,0,-9,0,-1061.662,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.5556979,6.221303,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,10,2,1,1159,65739.438,0,0,1975.2955 -1559,1896,3506,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-960.78973,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6223817,0,0,0,47.09,56.75,-9,-9,6,1,1,0,0,11,1,1,2816,161369.39,0,0,667.2934 -1560,1897,3507,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,0,2,6.5928736,7.1659269,6.3907237,4,0,0,0,-9,0,-958.31104,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,18,15,1,0,-9,0,4.4585724,4.4585724,0,0,0,0,0,0,0,0,1,1,0,6.496347,0,0,0,47.32,42.169998,-9,-9,3,1,1,0,0,7,2,0,196.5,-65113.918,0,0,1735.3867 -1560,1897,3508,-9,3507,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-950.88239,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,196.5,-65113.918,0,0,1735.3867 -1561,1898,3509,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,2,1,0,0,4,8.1468983,8.1726847,0,3,0,0,0,-9,0,-792.78925,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,43,40,15,1,0,-9,0,10.571782,10.571782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,51.279999,-9,-9,5,3,4,0,0,6,4,1,557,180546.03,0,0,1270.2479 -1562,1899,3510,-9,-9,-9,1,1,1,91,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1009.7932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.860001,37.130001,-9,-9,6,1,1,0,0,1,1,1,829,485.74512,0,0,875.04865 -1563,1900,3511,-9,-9,-9,1,1,0,65,3,1,1,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-973.55841,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,-9,-9,5,2,3,0,0,8,1,0,537,0,0,0,1585.4275 -1563,1901,3512,-9,3514,3513,4,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-943.4762,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,8,4,0,539.33331,-111827.98,0,0,3611.1399 -1563,1901,3513,3514,3511,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,3,8.6538172,8.2790918,0,2,0,-9,4,0,4,100.39236,0,0,0,29,2,3,1,3,3,2019,1,3,9,0,35,35,15,1,0,1,0,17.181681,17.181681,0,0,0,0,0,0,0,0,1,1,0,1.5275668,0,0,0,57.73,41.119999,30.309999,56.16,5,2,3,0,0,8,4,0,539.33331,-111827.98,0,0,3611.1399 -1563,1901,3514,3513,-9,-9,3,1,0,29,1,1,1,0,2,-9,5,1,0,0,3,8.1785212,7.631321,0,2,0,-9,4,0,-4,31.163763,0,1,1,33,1,3,1,-9,-9,2019,1,2,18,6,35,38,15,1,1,1,0,9.0111713,9.0111713,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.309999,56.16,57.73,41.119999,4,2,3,0,0,8,4,0,539.33331,-111827.98,0,0,3611.1399 -1564,1902,3515,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,8.0486507,8.7369194,0,3,0,0,0,-9,0,-1037.9139,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,44,45,15,1,0,-9,0,10.734736,10.734736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.889999,51.689999,-9,-9,6,1,1,0,0,12,4,0,862,-55217.328,0,0,3339.6243 -1565,1903,3516,3517,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,42,-9,-5,58.841946,-9,0,0,76,3,1,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.04866,1,53.470001,41.639999,33.950001,23.950001,7,1,1,0,0,2,2,1,303.5,250325.13,0,0,3303.9773 -1565,1903,3517,3516,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,1,0,6.2143412,6.1845503,1,0,-9,42,-9,5,89.89135,-9,0,0,71,3,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,127.91557,0,0,0,0,0,1,1,0,0,6.1390424,0,0,33.950001,23.950001,53.470001,41.639999,6,1,1,0,0,2,2,1,303.5,250325.13,0,0,3303.9773 -1566,1904,3518,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,5,0,5.5959773,5.4601402,3,0,0,0,-9,0,-877.5307,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.2977009,0,0,37.580002,46.400002,-9,-9,6,1,1,0,0,7,2,0,134,1032361.3,0,0,979.38171 -1567,1905,3519,3520,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,0,5,8.2822971,8.2914038,0,1,0,-9,10,0,4,6.5371208,0,0,0,35,2,4,1,2,1,2019,1,2,11,0,35,52,15,1,0,1,0,15.912992,15.912992,0,0,0,0,0,0,0,7,0,0,0,0,0,3.9716558,3,51.389999,59.18,56.290001,52.369999,6,1,1,0,0,2,5,0,718,229979.25,0,0,4421.5342 -1567,1905,3520,3519,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,0,4,8.7873764,8.8103456,0,1,0,-9,10,0,-4,51.743523,0,0,1,39,1,5,1,2,-9,2019,1,1,11,0,46,50,15,1,0,1,0,16.853779,16.853779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.290001,52.369999,51.389999,59.18,6,4,2,0,0,2,5,0,718,229979.25,0,0,4421.5342 -1568,1906,3521,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-935.9834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9619594,0,0,0,45.130001,47.110001,-9,-9,7,1,1,0,0,6,1,1,301,-65106.082,0,0,586.29065 -1569,1907,3522,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,6.7368541,6.7393117,3,0,0,0,-9,0,-1087.8837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9338174,6.7814832,0,0,42.610001,54.849998,-9,-9,6,1,1,0,0,7,2,1,525,640170.25,0,0,2419.7727 -1570,1908,3523,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,4,8.2545872,8.1630507,0,3,0,0,0,-9,0,-997.03992,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,1,40,35,15,1,0,-9,0,11.219522,11.219522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,1,4,0,213,184674.16,0,0,2104.8708 -1571,1909,3524,-9,-9,-9,1,1,0,62,2,0,0,0,3,-9,2,1,0,0,3,6.7928414,6.3262987,0,3,0,0,0,-9,0,-954.5274,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,20,15,1,0,-9,0,6.2028055,6.2028055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,7,1,1,0,0,6,2,0,287,210997.88,0,0,-14.744245 -1572,1910,3525,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1115.9351,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,30.965858,0,3.3766885,0,0,248.18047,0,1,1,0,0,0,0,0,60.48,24.969999,-9,-9,6,1,1,0,1,2,1,0,803,0,0,0,926.11792 -1573,1911,3526,-9,-9,-9,1,1,0,75,2,0,0,0,2,-9,4,3,0,0,5,0,7.5516319,7.4721718,3,0,0,0,-9,0,-1093.3834,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.819674,9.8549175,3,57.060001,57.759998,-9,-9,7,1,1,0,0,13,3,1,832,554664.69,0,0,1567.2223 -1574,1912,3527,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,7.8357687,7.5336065,0,3,0,0,0,-9,0,-1019.9768,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,19,30,15,1,0,-9,0,10.184205,10.184205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,56.369999,-9,-9,6,1,1,0,0,13,3,1,2608,16694.559,0,0,1287.4022 -1575,1913,3528,-9,3530,3531,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.73987,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,4,1,382.75,322677.81,0,0,3712.3643 -1575,1913,3529,-9,3530,3531,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.4422,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,382.75,322677.81,0,0,3712.3643 -1575,1913,3530,3531,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,3,8.6439037,8.9754076,0,2,0,-9,7,0,-6,-74.305862,0,0,1,41,1,4,1,1,2,2019,1,2,7,0,56,45,15,1,0,1,0,12.04641,12.04641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,51,56,6,1,1,0,0,1,4,1,382.75,322677.81,0,0,3712.3643 -1575,1913,3531,3530,-9,-9,2,1,1,41,1,0,2,0,1,-9,1,1,0,0,4,8.342927,8.3227472,0,2,0,-9,7,0,6,-104.25829,0,0,0,35,1,3,1,2,1,2019,1,1,9,1,30,35,15,1,0,1,0,16.359653,16.359653,0,0,0,0,0,0,0,0,1,1,0,1.0553603,0,0,0,51,56,57.330002,53.459999,6,1,1,0,0,1,4,1,382.75,322677.81,0,0,3712.3643 -1576,1914,3532,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,3,9.1024828,8.7170858,0,3,0,0,0,-9,0,-1026.5369,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,52,43,15,1,0,-9,0,15.696313,15.696313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.889999,48.59,-9,-9,6,1,1,0,0,9,5,1,1182,-122858.2,0,0,2743.2646 -1577,1915,3533,-9,3534,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-928.18945,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,3,0,482.33334,50619.328,0,0,2150.5918 -1577,1915,3534,-9,-9,-9,1,1,0,30,2,0,2,0,3,-9,2,1,0,0,3,7.802536,8.2737503,5.9958329,4,0,-9,0,-9,0,-942.32733,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,24,0,15,1,0,-9,0,13.8989,13.8989,0,0,0,0,0,0,0,0,1,1,0,6.486383,0,0,0,52.799999,44.52,-9,-9,4,1,1,0,0,6,3,0,482.33334,50619.328,0,0,2150.5918 -1577,1915,3535,-9,3534,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1075.418,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,0,482.33334,50619.328,0,0,2150.5918 -1578,1916,3536,-9,3539,3537,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.7285,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,1173,319105.88,0,0,3974.593 -1578,1916,3537,3539,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.4670734,8.8156099,0,2,0,-9,2,0,2,61.247883,0,0,0,47,1,4,1,2,3,2019,1,2,9,0,40,45,15,1,0,1,0,12.410318,12.410318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.009998,53.439999,54.27,46.639999,6,1,1,0,0,13,5,1,1173,319105.88,0,0,3974.593 -1578,1916,3538,-9,3539,3537,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1004.0114,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,13,5,1,1173,319105.88,0,0,3974.593 -1578,1916,3539,3537,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,8.6984501,8.5891476,0,2,0,-9,2,0,-2,-41.48608,0,0,0,49,2,4,1,2,3,2019,1,1,12,0,18,47,15,1,0,1,0,34.850578,34.850578,0,0,0,0,0,0,0,0,1,1,0,4.2539167,0,0,0,54.27,46.639999,54.009998,53.439999,6,1,1,0,0,13,5,1,1173,319105.88,0,0,3974.593 -1579,1917,3540,-9,-9,-9,1,1,0,31,2,0,2,0,2,-9,3,3,0,0,3,7.1825738,7.2399998,0,4,0,0,0,-9,0,-1040.0681,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,10,8,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,7,1,1,1,0,5,2,0,448,-49592.938,0,0,-318.06049 -1580,1918,3541,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,2,8.2309494,8.4288015,0,3,0,0,0,-9,0,-1020.0349,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,43,41,15,1,0,-9,0,10.327404,10.327404,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.646633,3,31.17,47.950001,-9,-9,2,1,1,0,1,11,4,0,424,40506.113,0,0,651.93231 -1581,1919,3542,3543,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-6,151.68704,0,0,0,81,3,3,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,15.458174,0,0,.56073272,0,0,1,1,0,2.936749,0,0,0,53.470001,41.639999,50.919998,33.349998,7,1,1,0,0,4,2,1,426,10191.027,0,0,740.63245 -1581,1919,3543,3542,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,5.3459616,5.2147794,1,0,-9,7,0,6,-32.008659,0,0,0,75,3,3,3,3,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5753431,5.1341758,0,0,50.919998,33.349998,53.470001,41.639999,6,1,1,0,0,4,2,1,426,10191.027,0,0,740.63245 -1582,1920,3544,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-855.61597,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.099998,51.16,-9,-9,6,1,1,0,0,4,1,1,68,87164.156,0,0,1881.2271 -1583,1921,3545,3546,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,7.3568339,7.2142081,0,1,0,-9,10,0,-4,-8.3687525,0,0,0,51,2,3,1,-9,-9,2019,1,2,19,7,25,25,15,1,1,1,0,6.0411096,6.0411096,0,0,0,0,0,0,0,7,0,0,0,0,0,12.269545,3,38.07,48.830002,34.110001,58.610001,5,1,1,0,0,4,4,1,1489.5,150838.94,0,0,2210.8518 -1583,1921,3546,3545,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.6390257,8.3562975,0,1,0,-9,10,0,4,82.370827,0,0,0,47,2,3,1,3,2,2019,1,1,17,5,54,0,15,1,1,1,0,8.8644638,8.8644638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.110001,58.610001,38.07,48.830002,4,1,1,0,0,4,4,1,1489.5,150838.94,0,0,2210.8518 -1583,1922,3547,-9,3545,3546,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.2150745,7.9048767,0,3,0,0,0,-9,0,-1080.3093,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,60,47,15,1,0,-9,1,6.2895827,6.2895827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,4,4,1,958,12185.148,0,0,1615.6584 -1584,1923,3548,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,3,7.5936837,7.9292903,7.28198,3,0,0,0,-9,0,-1121.7632,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,24,24,15,1,0,-9,0,9.0161858,9.0161858,0,0,0,0,0,0,0,0,0,0,0,7.3579845,0,0,0,46.650002,55.59,-9,-9,5,1,1,0,0,12,4,0,3864,-112065.34,0,0,580.50238 -1585,1924,3549,-9,3550,3551,1,1,0,25,2,0,2,0,2,-9,2,1,0,0,4,8.6427765,8.4866037,0,3,0,0,0,-9,0,-874.17572,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,35,39,15,1,0,-9,1,13.214637,13.214637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.150002,57.459999,-9,-9,5,2,3,0,0,8,4,0,538,16218.26,0,0,1781.8943 -1585,1925,3550,3551,-9,-9,3,1,0,45,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-7,-109.64564,0,0,0,52,3,4,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.759998,58.959999,41.869999,59.150002,5,2,3,0,0,8,3,0,1656,1428877.1,0,0,2622.7686 -1585,1925,3551,3550,-9,-9,2,1,1,52,1,0,2,0,3,-9,1,1,0,0,4,8.3793621,8.3720455,0,2,0,-9,8,0,7,162.94032,0,0,0,45,3,4,3,-9,-9,2019,2,3,11,0,40,24,15,1,0,3,0,10.044466,10.044466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.869999,59.150002,36.759998,58.959999,5,2,3,0,0,8,3,0,1656,1428877.1,0,0,2622.7686 -1585,1926,3552,-9,3550,3551,4,1,1,23,2,0,2,0,2,-9,3,3,0,0,4,8.226017,7.9463024,0,3,0,0,0,-9,0,-1009.349,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,58.529999,-9,-9,5,2,3,1,0,8,4,0,298,28090.074,0,0,766.89282 -1585,1927,3553,-9,3550,3551,5,1,0,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1022.9349,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.200001,55.41,-9,-9,6,2,3,0,0,8,4,0,289,108977.91,0,0,0 -1586,1928,3554,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,3,7.5657778,8.1158762,6.3620362,4,0,0,0,-9,0,-1091.9136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,31,32,15,1,0,-9,0,7.247057,7.247057,0,0,0,0,0,0,0,0,1,0,1,6.7329645,0,0,0,52.220001,53.259998,-9,-9,5,1,1,0,0,6,3,1,1575.3334,208164.14,0,0,1622.3678 -1586,1928,3555,-9,3554,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1091.2593,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,3,1,1575.3334,208164.14,0,0,1622.3678 -1586,1928,3556,-9,3554,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-954.59174,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,3,1,1575.3334,208164.14,0,0,1622.3678 -1587,1929,3557,3558,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,2,8.3268938,8.4219255,0,2,0,-9,12,0,1,67.30574,0,0,0,34,2,5,1,3,3,2019,1,1,11,1,38,35,15,1,0,1,0,10.624997,10.624997,0,0,0,0,0,0,0,0,1,1,0,3.9310539,0,0,0,45.98,49.389999,64.690002,41.98,6,2,3,0,0,8,3,0,930.25,76149.07,0,0,1570.9607 -1587,1929,3558,3557,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,5,0,0,0,2,0,-9,12,0,-1,-68.121017,0,0,1,35,2,2,1,2,2,2019,1,2,7,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.690002,41.98,45.98,49.389999,2,2,3,0,0,8,3,0,930.25,76149.07,0,0,1570.9607 -1587,1929,3559,-9,3558,3557,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.86377,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,0,930.25,76149.07,0,0,1570.9607 -1587,1929,3560,-9,3558,3557,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.2332,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,0,930.25,76149.07,0,0,1570.9607 -1588,1930,3561,-9,-9,-9,1,1,0,53,2,0,1,0,2,-9,2,1,0,0,3,7.994091,7.8751245,0,4,0,0,0,-9,0,-914.73248,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,35,15,1,0,-9,0,11.085477,11.085477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,-9,-9,5,1,1,0,0,8,3,0,647,159405.69,0,0,1979.208 -1589,1931,3562,-9,3563,3565,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.39203,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,1,671.40002,774414.25,0,0,3202.6418 -1589,1931,3563,3565,-9,-9,1,1,0,37,1,0,3,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,16,0,-5,-3.6882184,0,0,1,42,1,3,1,-9,-9,2019,3,2,22,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.4842231,0,16.445316,3,26.27,40.860001,50.139999,53.970001,3,2,3,0,0,8,5,1,671.40002,774414.25,0,0,3202.6418 -1589,1931,3564,-9,3563,3565,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.062,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,5,1,671.40002,774414.25,0,0,3202.6418 -1589,1931,3565,3563,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,0,3,9.3700457,9.8475637,0,2,0,-9,16,0,5,-31.65181,0,0,0,37,1,2,3,2,1,2019,2,1,15,4,55,55,15,1,1,3,0,21.11482,21.11482,0,0,0,0,0,0,0,14.5,0,0,0,5.1014833,0,16.577738,3,50.139999,53.970001,26.27,40.860001,5,2,3,0,0,8,5,1,671.40002,774414.25,0,0,3202.6418 -1589,1931,3566,-9,3563,3565,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.40741,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,5,1,671.40002,774414.25,0,0,3202.6418 -1590,1932,3567,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-818.51935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.970001,24.82,-9,-9,6,1,1,0,0,2,1,0,389,0,0,0,-114.05134 -1591,1933,3568,-9,3569,3570,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-951.66437,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,44,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.400002,62.009998,-9,-9,6,1,1,0,0,9,1,1,1076,-91841.805,0,0,0 -1591,1934,3569,3570,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,9.1751041,8.7512302,0,1,0,-9,6,0,0,-119.00138,0,0,0,54,2,3,1,-9,-9,2019,1,3,12,1,48,54,15,1,0,1,0,14.408531,14.408531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,40.439999,53.32,5,1,1,0,0,9,5,1,541.5,2085553.8,0,0,4485.3452 -1591,1934,3570,3569,-9,-9,3,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,9.1782398,9.1076641,0,1,0,-9,6,0,0,48.220718,0,0,0,54,2,4,1,-9,-9,2019,1,2,11,1,53,48,15,1,0,1,0,15.082244,15.082244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.439999,53.32,48.810001,59.91,4,1,1,0,0,9,5,1,541.5,2085553.8,0,0,4485.3452 -1591,1935,3571,-9,3569,3570,4,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,7.9578867,8.1392107,0,3,0,-9,0,-9,0,-1020.3066,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,7,45,0,15,1,1,-9,1,9.2023849,9.2023849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.880001,44.48,-9,-9,3,1,1,0,0,9,4,1,434,45559.18,0,0,1549.6942 -1592,1936,3572,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,2,1,0,0,3,8.0727377,7.9375343,0,3,0,0,0,-9,0,-1012.4663,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,54,45,15,1,0,-9,0,6.121314,6.121314,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,6,3,4,0,0,2,4,1,483,517700.25,0,0,1170.8208 -1592,1937,3573,-9,-9,3572,2,1,1,37,2,0,0,0,2,-9,2,1,0,0,3,8.7839909,8.503706,0,3,0,0,0,-9,0,-988.16925,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,1,0,40,37,15,1,0,-9,1,19.932114,19.932114,0,0,0,0,0,0,0,7,1,1,0,0,0,7.5185475,3,66.610001,45.119999,-9,-9,7,4,2,0,0,2,5,1,2581,104814.48,0,0,2726.5352 -1593,1938,3574,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,1,0,5.5330191,5.8563375,3,0,0,0,-9,0,-1076.4541,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,75.430595,0,0,0,1,1,0,0,5.7242737,0,0,27.110001,20.15,-9,-9,3,3,4,0,1,6,2,0,162,95195.25,0,0,924.58472 -1594,1939,3575,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,2,7.7412806,7.759706,0,3,0,-9,0,-9,0,-851.39685,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,35,0,15,1,0,-9,0,9.226346,9.226346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.560001,54.639999,-9,-9,6,1,1,0,0,9,3,0,323,-51369.316,0,0,2040.3649 -1595,1940,3576,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,7.8389778,7.7378812,0,3,0,0,0,-9,0,-917.98511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,53,0,15,1,0,-9,0,6.2402825,6.2402825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,42.099998,-9,-9,6,4,5,0,0,11,4,0,536,15699.116,0,0,1312.9368 -1596,1941,3577,3578,-9,-9,1,1,1,69,1,0,0,0,2,-9,2,1,0,1,3,8.296011,8.3274813,0,1,0,-9,9,0,1,47.613338,0,0,0,68,2,5,1,-9,-9,2019,1,2,7,0,40,40,15,1,0,1,0,11.497862,11.497862,1,0,0,0,0,0,0,0,1,1,0,3.6856196,0,0,0,57.889999,36.709999,54.099998,59.110001,6,1,1,0,0,10,4,1,362.5,676224.56,0,0,2354.689 -1596,1941,3578,3577,-9,-9,2,1,0,68,1,0,0,0,2,-9,2,1,0,0,5,6.5893793,7.5738425,6.2981644,1,0,-9,9,0,-1,94.702698,0,0,0,69,2,3,1,3,3,2019,1,1,7,0,11,11,15,1,0,1,0,7.7537994,7.7537994,0,0,0,0,0,0,0,0,1,1,0,4.40869,6.8638248,0,0,54.099998,59.110001,57.889999,36.709999,6,1,1,0,0,10,4,1,362.5,676224.56,0,0,2354.689 -1597,1942,3579,-9,-9,-9,1,1,0,45,2,0,1,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-999.24603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.777153,3,23.57,25.91,-9,-9,2,2,3,0,1,4,1,1,396.5,-94803.477,0,0,1100.6666 -1597,1942,3580,-9,3579,-9,5,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-806.03796,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,4,1,1,396.5,-94803.477,0,0,1100.6666 -1597,1943,3581,-9,3582,-9,6,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-909.17627,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,2,1,697.5,-41228.617,0,0,598.44232 -1597,1943,3582,-9,3579,-9,2,1,0,22,2,0,1,0,2,-9,2,1,0,0,4,6.2909575,5.925457,0,3,0,0,0,-9,0,-1021.6629,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,0,14,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.62,59,-9,-9,1,2,3,0,0,4,2,1,697.5,-41228.617,0,0,598.44232 -1597,1944,3583,-9,3579,-9,3,1,0,20,2,0,1,0,2,1,2,1,0,1,4,7.5026703,7.2634301,0,3,0,0,0,-9,0,-1085.9998,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,7,36,0,15,1,1,-9,1,5.2823911,5.2823911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.91,62.27,-9,-9,4,2,3,0,0,4,3,1,3804,-36836.188,0,0,2040.5345 -1597,1945,3584,-9,3579,-9,4,1,0,20,2,0,1,0,2,1,2,1,0,0,3,8.1522617,8.0000448,0,3,0,0,0,-9,0,-1108.2628,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,25,11,40,0,15,1,1,-9,1,7.9274135,7.9274135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.830002,57.610001,-9,-9,3,2,3,0,0,4,4,1,379,9851.5039,0,0,-485.39209 -1598,1946,3585,-9,3591,3589,7,1,0,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.2832,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,2,0,890,-61221.465,0,0,3106.1956 -1598,1946,3586,-9,3591,3589,6,1,0,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.79144,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,890,-61221.465,0,0,3106.1956 -1598,1946,3587,-9,3591,3589,5,1,0,12,2,0,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-883.38379,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,8,2,0,890,-61221.465,0,0,3106.1956 -1598,1946,3588,-9,3591,3589,4,1,0,14,2,0,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1021.2184,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,8,2,0,890,-61221.465,0,0,3106.1956 -1598,1946,3589,3591,-9,-9,1,1,1,45,1,0,5,0,3,-9,2,1,0,0,3,6.9276924,6.6020756,0,2,0,-9,22,0,5,70.414063,0,0,0,40,3,4,3,3,2,2019,2,2,5,0,24,30,15,1,0,3,0,5.4405613,5.4405613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,46.400002,57.349998,6,2,3,0,0,8,2,0,890,-61221.465,0,0,3106.1956 -1598,1946,3590,-9,3591,3589,3,1,1,17,2,0,5,1,2,0,7,2,0,0,3,7.3425722,7.7301497,0,2,0,0,0,-9,0,-1078.0942,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,21,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,2,3,0,0,8,2,0,890,-61221.465,0,0,3106.1956 -1598,1946,3591,3589,-9,-9,2,1,0,40,1,0,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,22,0,-5,42.282806,0,0,1,45,3,3,1,3,2,2019,3,1,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.400002,57.349998,51.66,54.880001,7,2,3,0,1,8,2,0,890,-61221.465,0,0,3106.1956 -1599,1947,3592,3593,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,0,0,0,1,0,-9,14,0,-3,-95.675682,0,0,0,56,2,5,1,2,2,2019,1,2,18,7,0,38,15,1,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,59.869999,26.620001,45.459999,61.869999,5,4,2,0,0,8,2,1,1212.5,80010.672,0,0,-241.65533 -1599,1947,3593,3592,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,5.267158,5.3487072,0,1,0,-9,13,0,3,104.90381,0,0,0,53,2,3,1,2,-9,2019,1,1,16,5,35,35,15,1,1,1,0,.70703894,.70703894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.459999,61.869999,59.869999,26.620001,2,3,4,0,0,8,2,1,1212.5,80010.672,0,0,-241.65533 -1600,1948,3594,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,0,4,7.5800352,7.7506948,0,3,0,0,0,-9,0,-1116.9495,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,50,30,15,1,0,-9,0,4.9407353,4.9407353,0,0,0,0,0,0,0,0,0,0,0,3.4913704,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,10,3,0,2017,112279.36,0,0,1529.0433 -1601,1949,3595,-9,3599,3597,4,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.4764,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,2,1,1060.5,51985,0,0,1804.4177 -1601,1949,3596,-9,3599,3597,3,1,0,11,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1087.145,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,5,2,1,1060.5,51985,0,0,1804.4177 -1601,1949,3597,3599,-9,-9,2,1,1,39,1,0,4,0,1,-9,1,1,0,0,4,7.2605,7.6123991,0,2,0,-9,10,0,3,31.263365,0,0,0,36,3,4,3,-9,-9,2019,2,1,12,0,32,0,15,1,0,3,0,4.5974693,4.5974693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,51.790001,41.169998,59.310001,4,2,3,0,0,5,2,1,1060.5,51985,0,0,1804.4177 -1601,1949,3598,-9,3599,3597,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.5835,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,5,2,1,1060.5,51985,0,0,1804.4177 -1601,1949,3599,3597,-9,-9,1,1,0,36,1,0,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,17,0,-3,-7.9933152,0,0,1,39,1,4,1,3,3,2019,3,2,12,0,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,48.77,51.790001,7,2,3,0,0,5,2,1,1060.5,51985,0,0,1804.4177 -1601,1949,3600,-9,3599,3597,5,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.77789,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,5,2,1,1060.5,51985,0,0,1804.4177 -1602,1950,3601,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,6.036921,6.1285,3,0,0,0,-9,0,-1154.5333,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0042,6.0715113,0,0,44.57,46.799999,-9,-9,3,1,1,0,0,7,2,1,158,601706.69,0,0,1801.1405 -1603,1951,3602,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,8.0663958,8.4569445,3,0,0,0,-9,0,-864.38391,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6883318,8.239481,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,8,4,1,976,1567688.8,0,0,2864.3477 -1604,1952,3603,-9,3604,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1041.3618,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,5,3,0,291.5,-49947.156,0,0,833.81616 -1604,1952,3604,-9,-9,-9,1,1,0,36,3,0,1,0,2,-9,2,1,0,0,2,7.4218926,7.6503243,0,4,0,-9,0,1,0,-1056.4056,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,25,27,15,1,0,-9,0,7.8324099,7.8324099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.419998,35.650002,-9,-9,6,1,1,0,0,5,3,0,291.5,-49947.156,0,0,833.81616 -1605,1953,3605,-9,-9,-9,1,1,0,84,3,0,0,0,1,-9,4,3,0,0,3,0,8.6988935,8.5626574,3,0,0,0,-9,0,-1066.625,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7158909,0,0,54.549999,41.220001,-9,-9,6,1,1,0,0,5,5,1,845,517673.25,0,0,4278.7939 -1606,1954,3606,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,6.8625221,6.8611665,3,0,0,0,-9,0,-916.28436,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,33,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0031276,0,0,19.690001,65.400002,-9,-9,1,1,1,0,1,2,2,1,410,265499.19,0,0,1038.1854 -1607,1955,3607,3608,-9,-9,1,1,0,67,1,0,0,0,2,-9,1,1,0,0,3,6.5018959,6.6407928,0,1,0,-9,43,0,-6,-63.741375,0,0,0,73,2,5,1,2,2,2019,1,2,18,7,10,30,15,1,1,1,0,5.0634995,5.0634995,1,8.6764345,0,0,0,0,0,0,1,1,0,9.1213999,0,0,0,46.52,29.83,60.02,56.419998,5,1,1,0,0,9,5,1,772,938548.25,0,0,17746.594 -1607,1955,3608,3607,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,0,5,9.0166245,9.15979,7.0568991,1,0,-9,43,0,6,92.526482,0,0,0,67,2,3,1,-9,2,2019,1,1,8,0,45,45,15,1,0,1,0,21.964855,21.964855,0,0,0,0,0,0,0,0,1,1,0,9.4164667,7.0576744,0,0,60.02,56.419998,46.52,29.83,7,1,1,0,0,9,5,1,772,938548.25,0,0,17746.594 -1608,1956,3609,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-966.44849,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.4300003,51.779999,-9,-9,1,1,1,1,1,1,1,0,135,-6773.9771,0,0,1180.7994 -1609,1957,3610,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,4,8.6745996,8.9151421,0,3,0,0,0,-9,0,-917.93823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,40,35,15,1,1,-9,0,16.500383,16.500383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.220001,52.700001,-9,-9,6,1,1,0,0,2,5,1,284,171861.8,0,0,2219.9714 -1610,1958,3611,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,4,0,6.4374328,6.3422914,3,0,0,0,-9,0,-1110.2867,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4678612,6.1997576,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,8,2,1,388,579208.13,0,0,1627.5643 -1611,1959,3612,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,0,4,8.3671045,7.8797746,0,3,0,0,0,-9,0,-1014.2366,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,10.960027,10.960027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,6,1,1,0,0,1,4,1,464,53369.758,0,0,846.53528 -1612,1960,3613,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,5.0203948,5.6038427,3,0,0,0,-9,0,-978.6217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.457794,5.6077542,0,0,57.25,35.630001,-9,-9,6,1,1,0,0,7,2,1,183,521441.31,0,0,1428.4679 -1612,1961,3614,-9,3613,-9,2,1,1,52,2,0,0,0,2,-9,2,1,0,0,3,8.9339924,9.0111189,0,3,0,0,0,-9,0,-1062.3092,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,37,37,15,1,0,-9,1,29.004929,29.004929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.869999,44.580002,-9,-9,6,1,1,0,0,7,5,1,317,159883.92,0,0,3158.9407 -1613,1962,3615,3616,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.2743144,7.2092166,1,0,-9,44,0,1,2.6782858,0,0,0,63,1,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7603755,7.3405905,0,3,58.720001,48.59,55.869999,53.990002,5,1,1,0,0,6,2,1,745,554610.31,0,0,1873.3684 -1613,1962,3616,3615,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,6.2224154,6.1242299,1,0,-9,44,0,-1,-108.36983,0,0,0,64,2,4,3,-9,-9,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5006361,6.2729859,2.1928866,3,55.869999,53.990002,58.720001,48.59,5,1,1,0,0,6,2,1,745,554610.31,0,0,1873.3684 -1614,1963,3617,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-981.75946,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,24,11,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6527696,0,0,0,51.310001,24.049999,-9,-9,2,1,1,0,0,10,1,1,2699,-80638.078,0,0,414.13165 -1615,1964,3618,-9,3620,3621,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-863.04517,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,0,445.5,53642.309,0,0,6229.8428 -1615,1964,3619,-9,3620,3621,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.6326,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,5,0,445.5,53642.309,0,0,6229.8428 -1615,1964,3620,3621,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,8.0927095,7.8558159,0,2,0,-9,11,0,-4,15.188354,0,0,1,39,1,4,1,-9,-9,2019,1,1,9,0,16,6,15,1,0,1,0,24.089155,24.089155,0,0,0,0,0,0,0,0,1,1,0,7.6424851,0,0,0,48.810001,59.91,43.200001,59.970001,6,1,1,0,0,9,5,0,445.5,53642.309,0,0,6229.8428 -1615,1964,3621,3620,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,9.5363588,9.4709034,0,2,0,-9,11,0,4,157.03229,0,0,0,35,1,4,1,2,1,2019,1,2,11,1,70,55,15,1,0,1,0,14.864698,14.864698,0,0,0,0,0,0,0,0,1,1,0,.1314057,0,0,0,43.200001,59.970001,48.810001,59.91,5,1,1,0,0,9,5,0,445.5,53642.309,0,0,6229.8428 -1616,1965,3622,3623,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,0,5,7.7288475,7.5976629,0,1,0,-9,29,0,-2,44.482468,0,0,0,63,2,2,3,2,2,2019,2,2,11,0,60,60,15,1,0,3,0,3.0253601,3.0253601,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,56.470001,59.400002,55.200001,49.400002,4,1,1,0,0,9,3,1,718.5,302187.41,0,0,678.56995 -1616,1965,3623,3622,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,28,0,2,47.502583,0,0,0,61,1,5,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.200001,49.400002,56.470001,59.400002,6,1,1,0,0,9,3,1,718.5,302187.41,0,0,678.56995 -1616,1966,3624,-9,3623,3622,3,1,1,26,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-961.72681,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.880001,-9,-9,6,1,1,1,0,9,1,1,194,8629.0254,0,0,0 -1617,1967,3625,-9,3628,3627,3,1,1,14,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.1851,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,6,4,1,501.39999,309831.31,0,0,3474.5593 -1617,1967,3626,-9,3628,3627,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.08087,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,6,4,1,501.39999,309831.31,0,0,3474.5593 -1617,1967,3627,3628,-9,-9,2,1,1,41,1,1,3,0,2,-9,2,1,0,0,5,8.218627,7.7804923,0,2,0,-9,7,0,6,95.061951,0,0,0,35,2,5,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,9.415657,9.415657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,51.139999,60.450001,6,1,1,0,0,6,4,1,501.39999,309831.31,0,0,3474.5593 -1617,1967,3628,3627,-9,-9,1,1,0,35,1,1,3,0,2,-9,2,1,0,0,5,8.2714243,8.1307821,0,2,0,-9,17,0,-6,18.214104,0,0,1,41,2,5,1,3,2,2019,1,2,10,0,38,41,15,1,0,1,0,13.726808,13.726808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,54.099998,59.110001,6,3,4,0,0,6,4,1,501.39999,309831.31,0,0,3474.5593 -1617,1967,3629,-9,3628,3627,4,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.11646,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,6,4,1,501.39999,309831.31,0,0,3474.5593 -1618,1968,3630,3631,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,3,8.678956,8.3935413,0,1,0,-9,3,0,9,-72.479156,0,0,0,26,1,5,1,-9,-9,2019,1,2,18,6,37,37,15,1,1,1,0,15.512938,15.512938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.6,57.32,49.25,61.25,5,1,1,0,0,10,5,1,583.5,956268.63,0,0,3493.2224 -1618,1968,3631,3630,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,5,8.7177839,8.8523531,0,1,0,-9,3,0,0,-27.200743,0,1,1,35,1,3,1,-9,-9,2019,1,1,13,1,38,38,15,1,0,1,0,18.304718,18.304718,0,0,0,0,0,0,0,0,0,0,0,2.4995546,0,0,0,49.25,61.25,31.6,57.32,6,1,1,0,0,10,5,1,583.5,956268.63,0,0,3493.2224 -1619,1969,3632,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.5715361,8.4432859,0,3,0,0,0,-9,0,-995.06976,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,55,0,15,1,0,-9,0,10.873537,10.873537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,8,5,0,1773,-49988.086,0,0,2863.167 -1620,1970,3633,-9,3634,3635,5,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-908.84827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,13,3,1,697,792187.56,0,0,3650.915 -1620,1970,3634,3635,-9,-9,1,1,0,59,1,0,1,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,21,0,-25,27.822777,0,0,0,84,2,3,3,3,2,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.2919228,0,7.8550382,3,54.369999,54.799999,54,46,6,1,1,0,0,13,3,1,697,792187.56,0,0,3650.915 -1620,1970,3635,3634,-9,-9,2,1,1,84,1,0,1,0,2,-9,4,3,0,0,3,0,8.6900244,8.1735392,2,0,-9,11,0,25,-104.31491,0,0,0,59,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2425461,0,0,54,46,54.369999,54.799999,6,1,1,0,0,13,3,1,697,792187.56,0,0,3650.915 -1620,1971,3636,-9,3634,3635,3,1,1,25,3,0,1,0,2,-9,2,1,0,0,4,7.7839451,8.0782347,0,3,0,0,0,-9,0,-928.06506,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,0,15,1,0,-9,1,7.8230371,7.8230371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,3,1,1038,-43551.676,0,0,1077.8304 -1620,1972,3637,-9,3634,3635,4,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,7.3196578,7.2463522,0,3,0,0,0,-9,0,-1055.1504,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,32,0,15,1,0,-9,1,6.4894624,6.4894624,0,0,0,0,0,0,0,0,1,1,0,.52596664,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,13,3,1,858,128653.83,0,0,275.90884 -1621,1973,3638,3639,-9,-9,1,1,0,57,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,5,0,-1,-46.507347,0,0,0,58,2,4,1,3,-9,2019,3,2,13,2,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.523335,3,44.77,35.240002,55,53,5,1,1,0,0,8,2,0,818.5,8487.8281,0,0,713.44403 -1621,1973,3639,3638,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,5.9121532,6.0759039,0,1,0,-9,3,0,1,-2.4757116,0,0,0,57,2,2,3,-9,-9,2019,2,1,9,0,40,50,15,1,0,3,0,1.1336696,1.1336696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,44.77,35.240002,6,1,1,0,0,8,2,0,818.5,8487.8281,0,0,713.44403 -1622,1974,3640,3641,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,-2,-53.583889,0,0,0,70,3,3,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,27.243685,0,0,0,0,0,1,1,0,2.0016899,0,0,0,44.490002,37.849998,58.080002,43.459999,4,1,1,0,0,4,2,1,200.5,410600.63,0,0,1428.4189 -1622,1974,3641,3640,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.0447598,6.1917372,1,0,-9,10,0,2,183.28534,0,0,0,68,3,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.5150012,6.6041117,16.563175,3,58.080002,43.459999,44.490002,37.849998,6,1,1,0,0,4,2,1,200.5,410600.63,0,0,1428.4189 -1623,1975,3642,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,3,8.1828146,8.2868156,0,3,0,0,0,-9,0,-1127.6121,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,37,37,15,1,0,-9,0,11.721616,11.721616,0,0,0,0,0,0,0,0,0,0,0,3.3646493,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,6,4,1,687,311841.84,0,0,1833.2697 -1624,1976,3643,3644,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,8.2749338,8.4402332,0,2,0,-9,20,0,1,62.755161,0,0,0,45,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,12.246701,12.246701,0,0,0,0,0,0,0,0,1,1,0,4.2857132,0,0,0,54.790001,55.860001,51.830002,57.200001,6,1,1,0,0,2,4,1,393,1237058.6,0,0,3054.8503 -1624,1976,3644,3643,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,4,8.4491224,8.6185532,0,2,0,-9,20,0,-1,-63.906406,0,0,0,46,2,4,1,2,2,2019,1,1,14,2,36,34,15,1,0,1,0,16.324785,16.324785,0,0,0,0,0,0,0,0,1,1,0,2.1886709,0,0,0,51.830002,57.200001,54.790001,55.860001,5,1,1,0,0,2,4,1,393,1237058.6,0,0,3054.8503 -1624,1976,3645,-9,3644,3643,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-957.01453,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,2,4,1,393,1237058.6,0,0,3054.8503 -1625,1977,3646,3647,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.1618443,7.0245667,1,0,-9,9,0,0,31.928635,0,0,0,87,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5105524,7.1084309,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,4,3,1,4748,450012.59,0,0,3772.4465 -1625,1977,3647,3646,-9,-9,2,1,1,87,1,0,0,0,3,-9,4,3,0,0,4,0,7.6280332,8.0339842,1,0,-9,9,0,9,-89.541695,0,0,0,78,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0034475,7.9368272,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,4,3,1,4748,450012.59,0,0,3772.4465 -1626,1978,3648,3649,-9,-9,2,1,1,40,1,0,4,0,2,-9,2,1,0,0,2,7.592792,7.7239289,0,2,0,-9,7,0,4,97.341499,0,0,0,36,2,3,1,2,2,2019,1,1,26,12,48,0,15,1,1,1,0,6.4353194,6.4353194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.41,55.959999,46.330002,55.93,4,1,1,0,0,4,3,0,1015.1667,172154.36,0,0,3829.4404 -1626,1978,3649,3648,-9,-9,1,1,0,36,1,0,4,0,2,-9,2,1,0,0,3,7.7476501,7.556251,0,2,0,-9,13,0,-4,-7.781076,0,0,1,40,2,2,1,2,2,2019,1,2,8,0,34,34,15,1,0,1,0,7.5018353,7.5018353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.330002,55.93,23.41,55.959999,6,1,1,0,0,4,3,0,1015.1667,172154.36,0,0,3829.4404 -1626,1978,3650,-9,3649,3648,3,1,0,17,2,0,4,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.21515,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.07,47.52,-9,-9,7,1,1,0,0,4,3,0,1015.1667,172154.36,0,0,3829.4404 -1626,1978,3651,-9,3649,3648,6,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.5398,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,0,1015.1667,172154.36,0,0,3829.4404 -1626,1978,3652,-9,3649,3648,4,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.7813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,4,3,0,1015.1667,172154.36,0,0,3829.4404 -1626,1978,3653,-9,3649,3648,5,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.723,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,0,1015.1667,172154.36,0,0,3829.4404 -1627,1979,3654,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,0,1,0,7.830462,7.876236,3,0,0,0,-9,0,-929.18286,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1141763,7.984386,0,0,39.169998,37.610001,-9,-9,2,1,1,0,0,11,3,1,443,1119606.4,0,0,27.444584 -1628,1980,3655,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,6.9619007,6.9630098,3,0,0,0,-9,0,-949.15363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6993632,0,0,42.110001,40.080002,-9,-9,6,1,1,0,0,13,2,1,604,377076.25,0,0,960.86877 -1629,1981,3656,3657,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,8.7539911,8.6795025,0,1,0,-9,30,0,6,-65.475372,0,0,0,49,1,4,1,2,2,2019,1,2,17,6,48,44,15,1,1,1,0,16.905481,16.905481,0,0,0,0,0,0,0,0,0,0,0,2.8271267,0,0,0,37.450001,48.889999,40.470001,55.650002,6,1,1,0,0,4,5,1,1191.5,1238687.3,0,0,4532.3506 -1629,1981,3657,3656,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.4958191,8.8630228,0,1,0,-9,30,0,-6,-43.685795,-9,0,0,55,1,3,1,3,3,2019,1,1,17,5,30,0,15,1,1,1,0,23.190325,23.190325,0,0,0,0,0,0,0,0,0,0,0,3.1700664,0,0,0,40.470001,55.650002,37.450001,48.889999,6,1,1,0,0,4,5,1,1191.5,1238687.3,0,0,4532.3506 -1629,1982,3658,-9,3657,3656,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,8.0449619,8.2091446,0,3,0,0,0,-9,0,-1124.3065,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,41,0,15,1,0,-9,1,8.1397448,8.1397448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.51,60.029999,-9,-9,6,1,1,0,0,4,4,1,357,154409.92,0,0,2250.1377 -1630,1983,3659,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,6.095293,6.1906977,3,0,0,0,-9,0,-937.72577,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.2125783,0,0,50,47,-9,-9,6,1,1,0,0,12,2,0,741,314840.41,0,0,866.56384 -1631,1984,3660,3661,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,4,5.8184862,5.8411641,0,1,0,-9,7,0,14,24.33605,0,0,0,48,1,3,1,3,2,2019,1,1,8,0,45,50,15,1,0,1,0,.99011916,.99011916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,54.369999,54.799999,6,1,1,0,1,10,5,1,283.5,860308.13,0,0,2874.8359 -1631,1984,3661,3660,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,8.8579426,9.021616,0,1,0,-9,7,0,-14,-.26024669,0,0,0,62,2,4,1,2,2,2019,1,2,12,2,55,45,15,1,0,1,0,13.281609,13.281609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,54.200001,57.490002,6,1,1,0,0,10,5,1,283.5,860308.13,0,0,2874.8359 -1632,1985,3662,3663,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,0,7.2896786,7.0881028,1,0,-9,6,0,4,80.909325,0,0,0,75,3,2,3,-9,-9,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0439448,0,0,37.740002,45.349998,30.98,50.689999,3,1,1,0,0,7,2,1,2721,674861,0,0,1565.6155 -1632,1985,3663,3662,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,6.0991521,6.2177243,1,0,-9,56,0,-4,-92.6408,0,0,0,79,2,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2355194,5.7091031,0,0,30.98,50.689999,37.740002,45.349998,3,1,1,0,0,7,2,1,2721,674861,0,0,1565.6155 -1633,1986,3664,3665,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.0315828,7.9336596,0,1,0,-9,5,0,3,52.728737,0,0,0,46,1,3,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,9.7434511,9.7434511,0,0,0,0,0,0,0,0,0,0,0,3.8420281,0,0,0,43.509998,55.110001,52.990002,51.279999,5,1,1,0,0,10,4,1,1945.5,70561.766,0,0,3256.2837 -1633,1986,3665,3664,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,0,3,7.9375448,8.6023808,6.8955908,1,0,-9,5,0,-3,-.69803607,0,0,0,49,2,3,1,-9,-9,2019,1,1,12,1,30,27,15,1,0,1,0,11.286371,11.286371,0,0,0,0,0,0,0,0,0,0,0,7.3987441,0,0,0,52.990002,51.279999,43.509998,55.110001,5,1,1,0,0,10,4,1,1945.5,70561.766,0,0,3256.2837 -1634,1987,3666,3668,-9,-9,1,1,0,47,1,0,1,0,1,-9,97,3,0,0,4,0,0,0,2,0,-9,20,0,1,70.743568,0,0,0,46,1,4,1,3,3,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,49.669998,41.060001,62.040001,5,1,1,0,0,1,5,1,515,104959.63,0,0,2784.6992 -1634,1987,3667,-9,3666,3668,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.73883,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,515,104959.63,0,0,2784.6992 -1634,1987,3668,3666,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,8.9400549,9.2765341,0,2,0,-9,20,0,-1,160.58151,0,0,0,47,1,4,3,2,1,2019,2,1,9,1,34,34,15,1,0,3,0,32.425217,32.425217,0,0,0,0,0,0,0,0,1,1,0,4.462852,0,0,0,41.060001,62.040001,59.150002,49.669998,5,1,1,0,0,1,5,1,515,104959.63,0,0,2784.6992 -1635,1988,3669,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,4,3,0,0,3,0,5.5576038,5.1763744,3,0,0,0,-9,0,-1133.2034,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7699533,5.3260584,0,0,55.59,43.189999,-9,-9,5,1,1,0,0,2,2,1,704,255444.19,0,0,1272.665 -1636,1989,3670,3671,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,4,8.3892975,8.3950348,0,1,0,-9,6,0,2,-29.595201,-9,0,0,59,1,4,1,2,2,2019,1,2,12,0,21,0,15,1,0,1,0,17.982359,17.982359,0,0,0,0,0,0,0,2,0,0,0,6.5703096,0,3.199862,3,52.82,53.970001,54,53,6,1,1,0,0,12,4,1,373,1908256.1,0,0,3028.9053 -1636,1989,3671,3670,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,8.0707216,8.5114574,0,1,0,-9,6,0,-2,.32163408,-9,0,0,61,1,4,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,10.583075,10.583075,0,0,0,0,0,0,0,0,0,0,0,3.8079138,0,0,0,54,53,52.82,53.970001,6,4,1,0,0,12,4,1,373,1908256.1,0,0,3028.9053 -1636,1990,3672,-9,3670,3671,3,1,1,23,2,0,0,0,2,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-978.91632,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9049954,0,0,0,49,58,-9,-9,5,1,1,0,0,12,1,1,915,222315.48,0,0,336.69937 -1636,1991,3673,-9,3670,3671,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.5783381,7.405437,0,3,0,0,0,-9,0,-924.93018,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,40,0,15,1,0,-9,1,5.6337318,5.6337318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,12,3,1,743,58114.145,0,0,892.23138 -1637,1992,3674,3675,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,4,0,6.6977963,6.3760762,1,0,-9,10,0,-6,-71.995972,0,0,0,86,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,6.5161066,0,0,0,0,0,1,1,0,0,6.1904588,0,0,58.830002,52.639999,62.139999,37.52,7,1,1,0,0,5,2,1,378.5,359143.25,0,0,1705.6897 -1637,1992,3675,3674,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,3,0,7.1279745,7.0594544,1,0,-9,62,0,6,-80.05188,0,0,0,80,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,79.893692,1.8253282,0,0,0,0,1,1,0,0,7.4296465,0,0,62.139999,37.52,58.830002,52.639999,7,1,1,0,0,5,2,1,378.5,359143.25,0,0,1705.6897 -1638,1993,3676,3677,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.4792213,7.6240315,1,0,-9,26,0,3,60.815086,0,0,0,71,3,2,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3965726,7.1859226,0,0,64.93,45.93,58.080002,30.23,6,1,1,0,0,9,3,1,760.5,945058.38,0,0,1941.9883 -1638,1993,3677,3676,-9,-9,1,1,0,71,1,0,0,0,3,-9,2,1,0,0,2,6.5541778,6.5268736,0,1,0,-9,26,0,-3,-61.613976,0,0,0,74,2,3,3,3,3,2019,2,2,9,0,12,17,15,1,0,4,0,6.3452191,6.3452191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.080002,30.23,64.93,45.93,3,1,1,0,0,9,3,1,760.5,945058.38,0,0,1941.9883 -1639,1994,3678,3679,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.7042933,7.0666618,1,0,-9,7,0,7,100.38577,0,0,0,68,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3100042,6.8551416,0,0,54.950001,44.790001,57.16,56.150002,7,1,1,0,0,10,3,1,481.5,676243,0,0,2365.8589 -1639,1994,3679,3678,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.7764769,7.0480695,1,0,-9,7,0,-7,-7.9768791,0,0,0,75,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5511012,6.7877188,2.0619211,3,57.16,56.150002,54.950001,44.790001,6,1,1,0,0,10,3,1,481.5,676243,0,0,2365.8589 -1640,1995,3680,3681,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.1704626,8.1377497,0,1,0,-9,29,0,-1,74.481117,0,0,0,50,2,4,1,2,3,2019,1,2,14,2,40,40,15,1,0,1,0,9.3603945,9.3603945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.139999,45.740002,52,55,3,1,1,0,0,4,5,1,1369,997100.69,0,0,3543.0913 -1640,1995,3681,3680,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.3086805,8.3882227,0,1,0,-9,9,0,1,-97.439636,0,0,0,49,2,3,1,-9,-9,2019,1,1,9,1,42,40,15,1,0,1,0,13.743882,13.743882,0,0,0,0,0,0,0,0,1,1,0,2.5569861,0,0,0,52,55,53.139999,45.740002,6,1,1,0,0,4,5,1,1369,997100.69,0,0,3543.0913 -1641,1996,3682,3683,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,1,0,7.433568,7.3375592,1,0,-9,6,0,-1,-73.393555,0,0,0,73,2,4,3,2,2,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,0,14.531853,2.1242678,0,0,0,0,1,1,0,0,7.3927016,0,0,42,24,41.459999,52.41,5,1,1,0,0,12,2,1,1008,584936.31,0,0,2080.9697 -1641,1996,3683,3682,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,1,21.472198,0,0,0,72,2,1,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,1,0,0,6.1202688,0,0,0,27.5,1,1,0,0,0,24.867941,1,41.459999,52.41,42,24,6,1,1,0,0,12,2,1,1008,584936.31,0,0,2080.9697 -1642,1997,3684,3685,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,6.8325043,7.2465134,1,0,-9,56,0,2,86.596855,0,0,0,73,1,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.4428945,112.03017,1,58.07,35.080002,35.009998,39.900002,7,1,1,0,0,5,3,1,171.5,1224282.4,0,0,1582.188 -1642,1997,3685,3684,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,1,2,0,7.5913162,7.7548485,1,0,-9,9,0,-2,49.589706,0,0,0,75,3,4,3,-9,-9,2019,4,1,16,3,0,0,15,4,0,4,0,0,0,1,5.6237588,0,0,0,0,67.566635,0,1,1,0,5.9884458,7.2763638,0,0,35.009998,39.900002,58.07,35.080002,6,1,1,0,0,5,3,1,171.5,1224282.4,0,0,1582.188 -1643,1998,3686,3687,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,41,0,13,0,0,0,0,65,1,3,3,-9,-9,2019,4,1,11,0,0,50,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.900002,45.740002,41.52,41.709999,6,1,1,0,0,4,1,1,350,573153.69,0,0,0 -1643,1998,3687,3686,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,39,0,-13,0,0,0,0,78,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.52,41.709999,58.900002,45.740002,5,1,1,0,0,4,1,1,350,573153.69,0,0,0 -1643,1999,3688,-9,3687,3686,3,1,0,25,2,0,0,1,1,0,7,2,0,0,5,0,6.7595572,6.6156306,3,0,0,0,-9,0,-1035.2629,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2087665,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,4,2,1,390,-110953.62,0,0,-643.79321 -1644,2000,3689,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-989.9129,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.010002,46.189999,-9,-9,6,1,1,0,0,7,1,1,575,167254.86,0,0,-34.916763 -1645,2001,3690,3691,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,6.8926797,6.5741973,0,1,0,-9,30,0,-7,-109.04964,0,0,0,62,2,3,1,3,3,2019,1,1,10,0,44,44,15,1,0,1,0,2.7136719,2.7136719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.650002,52.380001,54.369999,54.799999,6,2,3,0,0,6,3,1,1849,705544,0,0,1270.4399 -1645,2001,3691,3690,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.000967,7.9061279,0,1,0,-9,30,0,7,-34.933762,0,0,0,55,2,2,1,3,3,2019,1,2,9,0,39,38,15,1,0,1,0,8.0722256,8.0722256,0,0,0,0,0,0,0,0,0,0,0,4.0369372,0,0,0,54.369999,54.799999,51.650002,52.380001,5,2,3,0,0,6,3,1,1849,705544,0,0,1270.4399 -1645,2002,3692,-9,3690,3691,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.0028114,7.7199001,0,3,0,0,0,-9,0,-935.06506,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,1,8.6736422,8.6736422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.110001,54.040001,-9,-9,6,2,3,0,0,6,3,1,5384,-47240.621,0,0,1423.113 -1646,2003,3693,-9,-9,-9,1,1,0,24,2,0,0,1,2,0,7,2,0,0,4,7.1517353,7.0145149,0,3,0,0,0,-9,0,-867.42999,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.400002,50.470001,-9,-9,6,3,4,0,0,1,2,0,1901,-25385.381,0,0,892.58362 -1647,2004,3694,-9,3695,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-942.54865,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.8673935,3,59.209999,48.91,-9,-9,4,1,1,0,0,12,1,0,461.66666,24827.953,0,0,2321.2117 -1647,2004,3695,-9,-9,-9,1,1,0,43,2,0,2,0,3,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-906.65179,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.810001,30.530001,-9,-9,6,1,1,0,0,12,1,0,461.66666,24827.953,0,0,2321.2117 -1647,2004,3696,-9,3695,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1081.8055,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,1,0,461.66666,24827.953,0,0,2321.2117 -1648,2005,3697,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,4,8.7772789,8.5400496,0,3,0,0,0,-9,0,-1083.34,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,50,52,15,1,0,-9,0,15.027381,15.027381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,55.130001,-9,-9,6,1,1,0,0,10,5,1,895,440868.56,0,0,2016.0114 -1649,2006,3698,3700,-9,-9,1,1,1,59,1,0,1,0,2,-9,2,1,0,0,4,7.033762,6.7425699,0,2,0,-9,24,0,7,-73.589996,0,0,0,52,3,2,1,-9,3,2019,1,2,8,0,40,46,15,1,0,1,0,2.9240515,2.9240515,0,0,0,0,0,0,0,0,1,1,0,8.5682211,0,0,0,45.91,59.889999,50.41,44.650002,6,1,1,0,0,6,3,1,4496,325015.06,0,0,5829.1152 -1649,2006,3699,-9,3700,3698,5,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.80927,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8976848,0,0,0,46,60,-9,-9,5,1,1,0,0,6,3,1,4496,325015.06,0,0,5829.1152 -1649,2006,3700,3698,-9,-9,2,1,0,52,1,0,1,0,3,-9,2,1,0,0,2,7.6404305,7.2795777,0,2,0,-9,35,0,-7,-1.6459137,0,0,0,59,2,4,1,3,2,2019,1,1,13,1,0,16,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2929795,0,0,0,50.41,44.650002,45.91,59.889999,6,1,1,0,0,6,3,1,4496,325015.06,0,0,5829.1152 -1649,2007,3701,-9,3700,3698,3,1,1,20,2,0,1,0,2,1,1,1,0,0,4,8.5105257,8.3933697,0,3,0,0,0,-9,0,-986.64703,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0941887,0,0,0,48.23,53.52,-9,-9,6,1,1,0,0,6,5,1,1377,-40410.375,0,0,3746.8567 -1649,2008,3702,-9,3700,3698,4,1,1,18,2,0,1,0,2,1,11,3,0,0,4,6.4556303,6.4823914,0,3,0,0,0,-9,0,-1027.114,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,32,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,2,1,767,61599.027,0,0,1387.5388 -1650,2009,3703,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-976.91467,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.870001,34.919998,-9,-9,2,1,1,0,0,12,1,0,2282,-161934.8,0,0,3025.2136 -1651,2010,3704,3705,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,5,8.1152773,8.7342682,0,1,0,-9,4,0,0,7.1144328,0,1,1,26,1,5,1,1,1,2019,1,2,7,0,52,48,15,1,0,1,0,10.523928,10.523928,0,0,0,0,0,0,0,0,0,0,0,4.9553194,0,0,0,54.099998,59.110001,54.099998,59.110001,5,1,1,0,0,10,5,1,2014.5,-126678.28,0,0,3824.5547 -1651,2010,3705,3704,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,0,5,8.7550526,8.9915714,0,1,0,-9,4,0,0,-7.746201,0,1,0,26,1,5,1,-9,-9,2019,1,1,8,0,47,43,15,1,0,1,0,19.306017,19.306017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,54.099998,59.110001,7,1,1,0,0,10,5,1,2014.5,-126678.28,0,0,3824.5547 -1652,2011,3706,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,2,0,5.8312702,6.0761652,3,0,0,0,-9,0,-889.89471,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6968145,5.58778,0,0,57.57,49.689999,-9,-9,5,1,1,0,0,10,2,1,132,-14593.167,0,0,346.03833 -1653,2012,3707,3708,-9,-9,1,1,1,49,1,0,0,0,3,-9,2,1,0,0,4,8.0671368,7.8435464,0,1,0,-9,7,0,1,-10.11956,0,0,0,48,2,4,1,3,3,2019,1,2,11,0,40,42,15,1,0,1,0,10.195512,10.195512,0,0,0,0,0,0,0,7,0,0,0,0,0,3.8953462,3,47.549999,57.73,40.380001,47.619999,7,1,1,0,0,13,4,1,938.5,168230.25,0,0,3036.4414 -1653,2012,3708,3707,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,7.7147379,7.3375087,0,1,0,-9,7,0,-1,-139.76624,0,0,0,49,3,4,1,3,3,2019,1,1,11,0,16,20,15,1,0,1,0,13.402804,13.402804,0,0,0,0,0,0,0,7,0,0,0,0,0,.53834009,3,40.380001,47.619999,47.549999,57.73,6,1,1,0,0,13,4,1,938.5,168230.25,0,0,3036.4414 -1653,2013,3709,-9,3708,3707,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,8.5411901,8.3185549,0,3,0,0,0,-9,0,-1118.2614,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,42,45,15,1,0,-9,1,13.436473,13.436473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,13,4,1,1238,88857.898,0,0,1010.3495 -1653,2014,3710,-9,3708,3707,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,7.0240712,7.0750604,0,3,0,0,0,-9,0,-883.75415,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.759998,48.98,-9,-9,2,1,1,0,0,13,2,1,714,4190.9946,0,0,293.67661 -1654,2015,3711,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-968.27301,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1337392,0,0,0,53.98,50.869999,-9,-9,7,1,1,0,0,4,1,0,919,3790.6216,0,0,400.31454 -1655,2016,3712,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1004.1174,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.130001,34.07,-9,-9,5,1,1,1,0,4,1,0,213,56654.703,0,0,861.05646 -1656,2017,3713,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-924.04047,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,3,1,-9,0,0,0,1,0,0,0,1.8148407,0,0,0,1,1,0,0,0,0,0,35.610001,20.780001,-9,-9,1,1,1,0,0,13,1,0,444,-29499.537,0,0,671.44507 -1657,2018,3714,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,5,7.6090083,7.896564,0,3,0,0,0,-9,0,-1027.3094,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,32,0,15,1,0,-9,0,8.9144802,8.9144802,0,0,0,0,0,0,0,0,0,0,0,1.3613173,0,0,0,42.970001,65.300003,-9,-9,1,1,1,0,0,8,3,0,1867,-22252.271,0,0,-1.2950442 -1658,2019,3715,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,7,0,-6,-26.862318,0,0,1,-9,-9,-9,-9,2,2,2019,3,2,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.619999,58.959999,54.200001,57.490002,5,1,1,0,0,7,3,1,567,173902.7,0,0,0 -1658,2020,3716,-9,-9,-9,2,1,0,50,2,0,0,0,3,-9,2,1,0,0,4,7.7860427,7.750874,0,1,0,-9,7,0,6,-140.73483,0,0,0,-9,-9,-9,-9,3,2,2019,2,1,11,1,37,37,15,1,0,-9,0,8.4672394,8.4672394,0,0,0,0,0,0,0,0,0,0,0,3.9000225,0,0,0,54.200001,57.490002,36.619999,58.959999,6,1,1,0,0,7,3,1,608,588582.38,0,0,1055.6096 -1659,2021,3717,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,0,3,8.9921818,9.0899773,0,1,0,-9,5,0,6,38.41782,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,6,0,37,42,15,1,0,-9,0,31.292671,31.292671,0,0,0,0,0,0,0,0,0,0,0,6.7060189,0,0,0,54.959999,53.169998,44.43,56.740002,6,1,1,0,0,9,5,0,478,1114920.6,0,0,4145.0845 -1659,2022,3718,-9,-9,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,0,3,8.4667511,8.2432957,0,1,0,-9,5,0,-6,-99.576225,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,5,0,45,52,15,1,0,-9,0,13.811181,13.811181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.740002,54.959999,53.169998,6,1,1,0,0,9,5,0,2499,46177.121,0,0,1683.5199 -1660,2023,3719,3720,-9,-9,1,1,0,54,1,0,0,0,3,-9,6,3,0,1,2,0,7.6416798,7.4334111,1,0,-9,35,0,-1,101.38255,0,0,0,55,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,7.7615871,0,15.402145,1,57.34,31.860001,42.32,24.809999,7,1,1,0,0,8,3,0,1265,-95725.688,0,0,3433.2 -1660,2023,3720,3719,-9,-9,2,1,1,55,1,0,0,0,3,-9,4,3,0,1,2,0,7.1206923,7.1066523,1,0,-9,35,0,1,-33.545422,0,0,0,54,3,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.5090067,7.3938699,0,0,42.32,24.809999,57.34,31.860001,3,1,1,0,0,8,3,0,1265,-95725.688,0,0,3433.2 -1660,2024,3721,-9,3723,-9,5,1,0,6,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1062.5597,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,4,2,0,0,8,1,0,1464.5,3565.9224,0,0,258.1004 -1660,2024,3722,-9,3723,-9,4,1,0,11,2,0,0,1,3,-9,-9,2,0,0,2,0,0,0,3,0,0,0,-9,0,-976.66687,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,45,-9,-9,4,4,2,0,0,8,1,0,1464.5,3565.9224,0,0,258.1004 -1660,2024,3723,-9,3719,3720,3,1,0,23,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1065.3848,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,44,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,1,0,8,1,0,1464.5,3565.9224,0,0,258.1004 -1660,2024,3724,-9,3723,-9,6,1,1,3,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-977.33325,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,1,0,1464.5,3565.9224,0,0,258.1004 -1661,2025,3725,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-964.78387,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.639999,29.629999,-9,-9,2,1,1,0,0,4,1,0,1213,28953.844,0,0,1315.5464 -1662,2026,3726,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,1,0,-1040.8942,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.889999,18.610001,-9,-9,2,1,1,0,0,4,1,0,788,50860.188,0,0,1231.1683 -1663,2027,3727,3728,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,5,8.7247295,8.5031109,0,1,0,-9,32,0,5,162.80881,0,0,0,52,2,3,1,2,2,2019,1,2,11,0,60,60,15,1,0,1,0,12.722947,12.722947,0,0,0,0,0,0,0,0,0,0,0,3.1501703,0,0,0,55.66,54.25,37.759998,52.919998,7,1,1,0,0,12,4,1,470.5,293809.31,0,0,2233.4785 -1663,2027,3728,3727,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,0,3,6.8102503,6.4384422,0,1,0,-9,8,0,-5,51.069763,0,0,0,57,1,5,1,2,2,2019,1,1,13,2,20,0,15,1,0,1,0,3.5180497,3.5180497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.759998,52.919998,55.66,54.25,5,1,1,0,0,12,4,1,470.5,293809.31,0,0,2233.4785 -1664,2028,3729,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,1,1,0,0,4,0,8.0180721,7.8776231,3,0,0,0,-9,0,-1001.6964,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,90,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3406773,7.6993408,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,7,4,1,316,146662.28,0,0,2156.9692 -1665,2029,3730,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,1,2,0,5.2638364,5.6704001,3,0,0,0,-9,0,-887.8418,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.1749802,49.864426,0,1,1,0,0,5.5204763,0,0,36.77,38.639999,-9,-9,6,1,1,0,0,12,2,1,471,304108.28,0,0,86.737747 -1666,2030,3731,3732,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,6.4255495,6.2778873,1,0,-9,56,0,1,45.986004,0,0,0,74,3,3,3,-9,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0769305,6.5715938,0,0,63.66,46.310001,59.810001,35.889999,6,1,1,0,0,7,2,1,627.5,509074.38,0,0,2019.2959 -1666,2030,3732,3731,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-1,51.838352,0,0,0,75,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.4615331,0,0,0,59.810001,35.889999,63.66,46.310001,6,1,1,0,0,7,2,1,627.5,509074.38,0,0,2019.2959 -1667,2031,3733,-9,3735,3734,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.08716,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,1,589.5,198063.8,0,0,3299.0771 -1667,2031,3734,3735,-9,-9,2,1,1,33,1,1,2,0,1,-9,2,1,0,0,4,9.0311108,8.9007998,0,2,0,-9,5,0,-5,53.764111,0,0,0,38,2,4,3,-9,-9,2019,2,1,10,1,58,50,15,1,0,3,0,16.344477,16.344477,0,0,0,0,0,0,0,2,1,1,0,2.5211897,0,.70580846,3,50,57,49,56,5,2,3,0,0,8,4,1,589.5,198063.8,0,0,3299.0771 -1667,2031,3735,3734,-9,-9,1,1,0,38,1,1,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,5,22.696648,0,0,1,33,1,4,1,2,2,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,50,57,5,2,3,1,0,8,4,1,589.5,198063.8,0,0,3299.0771 -1667,2031,3736,-9,3735,3734,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1032.0314,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,4,1,589.5,198063.8,0,0,3299.0771 -1668,2032,3737,-9,3740,3741,5,1,0,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.47235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,4,2,1,796.20001,-37564.332,0,0,3976.8767 -1668,2032,3738,-9,3740,3741,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.21161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,4,2,1,796.20001,-37564.332,0,0,3976.8767 -1668,2032,3739,-9,3740,3741,4,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.14697,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,2,1,796.20001,-37564.332,0,0,3976.8767 -1668,2032,3740,3741,-9,-9,2,1,0,37,1,1,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,-4,-110.05231,0,0,1,41,2,4,1,3,3,2019,3,1,11,2,0,15,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5811644,0,0,0,49,56,54.200001,57.490002,5,2,3,0,0,4,2,1,796.20001,-37564.332,0,0,3976.8767 -1668,2032,3741,3740,-9,-9,1,1,1,41,1,1,4,0,2,-9,1,1,0,0,4,7.1874809,7.0146976,0,2,0,-9,18,0,4,48.864143,0,0,0,37,2,4,3,-9,2,2019,2,2,11,0,35,30,15,1,0,3,0,4.4953742,4.4953742,0,0,0,0,0,0,0,0,1,1,0,6.3436713,0,0,0,54.200001,57.490002,49,56,6,2,3,0,0,4,2,1,796.20001,-37564.332,0,0,3976.8767 -1669,2033,3742,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,2,1,0,0,4,6.1268249,7.0251856,6.5302458,3,0,0,0,-9,0,-946.22162,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,12,8,15,1,0,-9,0,3.8927054,3.8927054,0,0,0,0,0,0,0,27.5,1,1,0,0,6.762908,23.557533,3,57.16,56.150002,-9,-9,4,1,1,0,0,11,2,1,766,-25174.42,0,0,1316.6135 -1669,2034,3743,-9,3742,-9,2,1,1,44,2,0,0,0,2,-9,2,1,0,0,2,6.9591951,7.0298185,0,3,0,0,0,-9,0,-963.83008,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,30,32,15,1,1,-9,1,4.3933263,4.3933263,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,25.9,47.639999,-9,-9,2,1,1,0,1,11,2,1,347,124093.6,0,0,596.66675 -1670,2035,3744,-9,3745,-9,1,1,1,24,2,0,1,0,2,-9,2,1,0,0,5,7.9091563,7.709383,0,3,0,0,0,-9,0,-1037.4634,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,38,15,1,0,-9,1,8.6131477,8.6131477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.68,56.779999,-9,-9,6,1,1,0,0,1,4,0,1633,-102684.68,0,0,1339.7946 -1670,2036,3745,-9,-9,-9,2,1,0,48,3,0,1,0,3,-9,2,1,0,0,4,7.7167606,8.0100212,0,4,0,0,0,-9,0,-1017.3672,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,37,38,15,1,0,-9,0,9.2624855,9.2624855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,1,3,0,420.5,-62014.555,0,0,1412.1635 -1670,2036,3746,-9,3745,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.5015,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,3,0,420.5,-62014.555,0,0,1412.1635 -1671,2037,3747,3748,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,16,0,6,-132.07356,0,0,0,66,2,5,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,63.380001,53.470001,5,1,1,0,0,12,2,0,479.5,740958.5,0,0,1339.5706 -1671,2037,3748,3747,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,5,0,5.949264,5.8035569,1,0,-9,11,0,-6,72.624039,0,0,0,72,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8588357,5.8798866,0,0,63.380001,53.470001,52,46,6,1,1,0,0,12,2,0,479.5,740958.5,0,0,1339.5706 -1672,2038,3749,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-966.23663,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.119999,35.23,-9,-9,6,1,1,0,0,10,1,1,235,-23722.092,0,0,216.22672 -1673,2039,3750,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,0,4,0,7.0757208,7.3585949,3,0,0,0,-9,0,-972.85449,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.086704,6.7134271,0,0,62.490002,55.09,-9,-9,5,2,3,0,0,11,2,0,1431,136737.47,0,0,2997.4275 -1674,2040,3751,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,3,0,6.5490623,6.4653139,3,0,0,0,-9,0,-972.81604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.6380559,0,0,1,1,0,4.235744,6.7591243,0,0,53,44,-9,-9,6,1,1,0,0,11,2,1,296,261783.48,0,0,2454.4507 -1675,2041,3752,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,2,0,6.9789476,6.7396078,3,0,0,0,-9,0,-1083.1088,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,.51732206,0,0,0,0,29.402182,0,1,1,0,1.8215221,6.6436677,0,0,62.419998,32.41,-9,-9,5,1,1,0,0,4,2,1,365,253402.11,0,0,-418.67053 -1676,2042,3753,-9,-9,-9,1,1,1,57,3,0,1,0,1,-9,2,1,0,0,4,9.395359,9.3535824,0,4,0,0,0,-9,0,-901.01654,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,9,37,35,15,1,1,-9,0,35.861618,35.861618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.970001,57.259998,-9,-9,5,1,1,0,0,9,5,1,386.5,400846.19,0,0,4474.5068 -1676,2042,3754,-9,-9,3753,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1067.3567,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,22,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1522348,0,0,0,25.98,65.129997,-9,-9,5,1,1,0,0,9,5,1,386.5,400846.19,0,0,4474.5068 -1677,2043,3755,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,5,7.6066728,7.821528,0,3,0,-9,0,0,0,-957.47156,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,38,0,15,1,0,-9,0,9.3161907,9.3161907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,-9,-9,5,1,1,0,0,4,3,0,404,139168.05,0,0,524.56805 -1678,2044,3756,3757,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,7.6501498,7.7420397,0,1,0,-9,4,0,-2,-73.880608,0,0,0,50,2,2,1,-9,-9,2019,1,1,6,0,50,54,15,1,0,1,0,5.714622,5.714622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,63.650002,35.93,7,1,1,0,0,4,4,0,1425,636040.88,0,0,3297.9993 -1678,2044,3757,3756,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,8.3375235,8.3252993,0,1,0,-9,4,0,2,-121.30651,0,0,0,48,2,4,1,3,3,2019,1,2,6,0,45,40,15,1,0,1,0,10.180634,10.180634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.650002,35.93,57.16,56.150002,7,1,1,0,0,4,4,0,1425,636040.88,0,0,3297.9993 -1679,2045,3758,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1091.931,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.630001,45.169998,-9,-9,7,1,1,0,0,10,1,0,1284,-121141.02,0,0,835.09973 -1680,2046,3759,3760,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.2142048,6.2313704,1,0,-9,46,0,5,56.712791,0,0,0,65,2,4,3,3,3,2019,4,1,6,0,0,9,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5378413,6.1323104,0,3,58.32,50.220001,53.790001,45.549999,7,1,1,0,0,9,2,1,2131.5,955599.63,0,0,2711.9043 -1680,2046,3760,3759,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.3937616,6.4335356,1,0,-9,46,0,-5,17.803009,0,0,0,70,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.9329748,6.3741145,5.1194258,3,53.790001,45.549999,58.32,50.220001,6,1,1,0,0,9,2,1,2131.5,955599.63,0,0,2711.9043 -1681,2047,3761,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,1,2,8.2927799,8.0674238,0,3,0,0,0,-9,0,-967.86566,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,23,11,24,35,15,1,1,-9,0,18.922884,18.922884,0,0,0,0,0,0,0,0,1,1,0,2.4360318,0,0,0,30.1,48.830002,-9,-9,3,1,1,0,0,12,4,1,402,537920.44,0,0,253.72786 -1682,2048,3762,-9,-9,-9,2,1,1,23,2,1,1,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1134.4805,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.6,50.389999,-9,-9,5,1,1,1,1,2,1,0,765,0,0,0,1412.3573 -1682,2049,3763,3765,-9,-9,1,1,0,26,1,1,1,0,2,-9,7,2,0,0,2,0,0,0,2,0,-9,2,0,-5,-44.156471,1,1,1,31,2,3,1,3,2,2019,3,3,28,11,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,23.110001,51.720001,18.76,57.779999,3,1,1,0,0,2,3,0,1084,46034.992,0,0,1792.525 -1682,2049,3764,-9,3763,3765,4,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.64246,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,3,0,1084,46034.992,0,0,1792.525 -1682,2049,3765,3763,-9,-9,3,1,1,31,1,1,1,0,2,-9,2,1,0,0,3,8.0709286,8.0198174,0,2,0,-9,2,0,5,104.83069,0,0,0,26,2,2,2,-9,-9,2019,2,1,26,11,30,45,15,1,1,2,0,7.5321035,7.5321035,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,18.76,57.779999,23.110001,51.720001,2,1,1,0,1,2,3,0,1084,46034.992,0,0,1792.525 -1683,2050,3766,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,0,1,0,7.7153301,8.2421837,3,0,0,0,-9,0,-1061.4584,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2939358,8.1588211,0,0,60.709999,24.190001,-9,-9,7,1,1,0,0,9,3,0,251,1345557,0,0,2399.6379 -1684,2051,3767,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,0,4,7.8450789,7.7282929,0,3,0,0,0,-9,0,-1087.5005,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,40,35,15,1,0,-9,0,7.54146,7.54146,0,0,0,0,0,0,0,0,0,0,0,5.9447584,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,12,3,1,208,-198607.55,0,0,1363.2069 -1685,2052,3768,-9,3770,3771,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.0895,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,5,1,323,174928.31,0,0,4288.9536 -1685,2052,3769,-9,3770,3771,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.1547,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,5,1,323,174928.31,0,0,4288.9536 -1685,2052,3770,3771,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,0,4,8.9122734,8.4855528,0,2,0,-9,8,0,-1,-97.319923,0,0,1,38,2,3,3,-9,-9,2019,2,1,10,2,30,40,15,1,0,3,0,23.338982,23.338982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.619999,62.290001,34.48,62.299999,3,2,3,0,0,6,5,1,323,174928.31,0,0,4288.9536 -1685,2052,3771,3770,-9,-9,1,1,1,38,1,1,2,0,2,-9,3,3,0,0,3,8.310811,8.472146,0,2,0,-9,8,0,1,30.757376,0,0,0,37,1,4,1,2,1,2019,3,2,18,7,0,37,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2360594,0,0,0,34.48,62.299999,37.619999,62.290001,4,2,3,1,0,6,5,1,323,174928.31,0,0,4288.9536 -1686,2053,3772,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,7.2739902,6.8171239,3,0,0,0,-9,0,-969.33954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9666653,0,0,59.950001,41.619999,-9,-9,7,1,1,0,0,13,2,1,6259,-7806.0752,0,0,1675.219 -1687,2054,3773,-9,3774,-9,1,1,1,32,2,0,1,0,2,-9,2,1,0,0,2,8.1568851,8.4335842,0,3,0,0,0,-9,0,-1035.0662,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,48,38,15,1,0,-9,1,9.1803064,9.1803064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.09,48.720001,-9,-9,2,3,4,0,0,4,4,1,399,62720.094,0,0,328.04797 -1687,2055,3774,-9,-9,-9,2,1,0,55,3,0,1,0,2,-9,2,1,0,0,3,8.3790417,8.3917732,0,4,0,0,0,-9,0,-972.37512,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,37,44,15,1,0,-9,0,14.730496,14.730496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,-9,-9,1,3,4,0,0,4,4,1,692,3255633.5,0,0,2513.312 -1687,2056,3775,-9,3774,-9,3,1,0,30,2,0,1,0,2,-9,3,3,0,0,3,0,6.5370617,6.225811,3,0,0,0,-9,0,-996.02118,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1064739,0,6.9111357,3,53.389999,49.669998,-9,-9,1,3,4,1,1,4,2,1,936,-6149.9063,0,0,885.66052 -1687,2056,3776,-9,3775,-9,4,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1027.0841,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,4,2,1,936,-6149.9063,0,0,885.66052 -1688,2057,3777,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1037.3127,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,6,2,3,0,0,2,1,1,212,51048.707,0,0,218.84991 -1689,2058,3778,3780,-9,-9,2,1,1,32,1,1,2,0,2,-9,2,1,0,0,4,8.8245459,8.7647104,0,2,0,-9,7,0,1,23.009516,0,0,0,31,2,4,1,2,3,2019,1,1,11,0,40,40,15,1,0,1,0,16.529264,16.529264,0,0,0,0,0,0,0,0,1,1,0,6.1703963,0,0,0,37.110001,58.59,51.240002,58.84,6,1,1,0,0,6,4,1,856.25,109952.38,0,0,3451.436 -1689,2058,3779,-9,3780,3778,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.39685,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,856.25,109952.38,0,0,3451.436 -1689,2058,3780,3778,-9,-9,1,1,0,31,1,1,2,0,2,-9,2,1,0,0,4,7.0969114,7.0162191,0,2,0,-9,7,0,-1,-18.037306,0,0,1,32,2,4,1,2,2,2019,1,2,6,0,20,23,15,1,0,1,0,7.1955433,7.1955433,0,0,0,0,0,0,0,2,1,1,0,0,0,5.6981707,3,51.240002,58.84,37.110001,58.59,6,1,1,0,0,6,4,1,856.25,109952.38,0,0,3451.436 -1689,2058,3781,-9,3780,3778,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.5396,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,856.25,109952.38,0,0,3451.436 -1690,2059,3782,3783,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,8.1080961,7.7797594,1,0,-9,51,0,2,-105.17842,0,0,0,67,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8608985,8.3831959,0,0,54.610001,51.040001,55.599998,47.799999,6,1,1,0,0,11,4,1,1030.5,1415701.3,0,0,2831.7256 -1690,2059,3783,3782,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,6.9494114,6.8780441,1,0,-9,11,0,-2,68.494736,0,0,0,69,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.296278,0,0,0,55.599998,47.799999,54.610001,51.040001,6,1,1,0,0,11,4,1,1030.5,1415701.3,0,0,2831.7256 -1691,2060,3784,3785,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,0,5,9.0904713,9.109787,0,1,0,-9,13,0,-6,-26.939096,0,0,0,44,2,3,1,2,2,2019,1,2,5,0,42,39,15,1,0,1,0,21.540073,21.540073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,39.16,35.889999,6,1,1,0,0,9,5,1,313,407624.38,0,0,2937.145 -1691,2060,3785,3784,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.5997705,8.434248,0,1,0,-9,13,0,6,-37.333771,0,0,1,38,2,5,1,2,-9,2019,1,1,21,9,46,48,15,1,1,1,0,8.5603819,8.5603819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,35.889999,57.060001,57.759998,3,1,1,0,0,9,5,1,313,407624.38,0,0,2937.145 -1692,2061,3786,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,4,3,0,0,3,0,6.5468593,6.7448611,3,0,0,0,-9,0,-1020.3632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4031911,6.6083102,0,0,55.259998,37.900002,-9,-9,6,1,1,0,0,10,2,0,647,156563.25,0,0,2774.3794 -1693,2062,3787,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,4,0,8.2887697,8.6505404,3,0,0,0,-9,0,-949.0365,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1292162,8.6749458,0,0,59.439999,44.139999,-9,-9,5,1,1,0,0,8,4,1,110,1158614.3,0,0,2053.6147 -1694,2063,3788,-9,3792,3789,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.1545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,902.40002,41457.789,0,0,3389.7178 -1694,2063,3789,3792,-9,-9,1,1,1,39,1,0,3,0,2,-9,1,1,0,0,4,7.6494627,7.1607552,0,2,0,-9,15,0,3,-79.323845,0,0,0,36,2,4,3,3,1,2019,2,2,9,1,40,20,15,1,0,3,0,6.0091138,6.0091138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,6,2,3,0,0,8,2,0,902.40002,41457.789,0,0,3389.7178 -1694,2063,3790,-9,3792,3789,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.4807,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,902.40002,41457.789,0,0,3389.7178 -1694,2063,3791,-9,3792,3789,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.1798,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,2,0,902.40002,41457.789,0,0,3389.7178 -1694,2063,3792,3789,-9,-9,2,1,0,36,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,-3,-66.434456,0,0,1,39,2,4,1,3,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,0,8,2,0,902.40002,41457.789,0,0,3389.7178 -1695,2064,3793,3794,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,8.9251318,8.6553965,0,1,0,-9,4,0,0,-35.576172,0,0,0,34,1,5,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,17.776337,17.776337,0,0,0,0,0,0,0,0,0,0,0,3.2056665,0,0,0,51.830002,57.200001,54,52.349998,5,1,1,0,0,2,5,1,349.5,405093.66,0,0,3916.6289 -1695,2064,3794,3793,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,5,8.6872606,8.6656618,0,1,0,-9,4,0,0,12.683512,0,0,1,34,1,4,1,1,1,2019,1,2,4,0,38,35,15,1,0,1,0,18.617804,18.617804,0,0,0,0,0,0,0,0,0,0,0,2.0844784,0,0,0,54,52.349998,51.830002,57.200001,7,1,1,0,0,2,5,1,349.5,405093.66,0,0,3916.6289 -1696,2065,3795,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,1,1,0,0,5,7.9179745,9.0818157,8.4136858,3,0,0,0,-9,0,-979.98779,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,12.632394,12.632394,0,0,0,0,0,0,0,0,1,1,0,6.5882096,8.5574064,0,0,59.330002,51.290001,-9,-9,7,1,1,0,0,11,5,1,364,1431893.1,0,0,4160.9634 -1697,2066,3796,3797,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,43,0,0,106.14839,0,0,0,70,2,3,3,3,2,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.7886214,0,3.6992788,3,41.060001,62.040001,28.629999,60,6,1,1,0,0,2,2,1,544.5,526584.63,0,0,1894.1028 -1697,2066,3797,3796,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.3820119,7.5172706,1,0,-9,44,0,9,-42.46764,0,0,0,61,2,4,3,3,3,2019,4,1,21,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,2.5157304,7.4966884,25.85224,3,28.629999,60,41.060001,62.040001,3,1,1,0,0,2,2,1,544.5,526584.63,0,0,1894.1028 -1697,2067,3798,-9,3796,3797,3,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,7.896194,7.6597247,0,3,0,-9,0,-9,0,-972.78314,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,55,0,15,1,0,-9,1,6.9582105,6.9582105,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,4,1,1,0,0,2,4,1,474,4041.874,0,0,427.88666 -1698,2068,3799,-9,3801,-9,2,1,1,18,2,0,1,0,3,1,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1063.3414,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,30,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.30945876,3,22.34,38.849998,-9,-9,1,1,1,1,1,1,1,0,209,61614.43,0,0,-661.05365 -1698,2069,3800,3801,-9,-9,3,1,1,48,1,0,1,0,1,-9,6,3,0,0,1,0,0,0,2,0,-9,2,0,5,0,0,0,0,43,3,1,3,-9,-9,2019,4,1,34,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,81.02243,2,23.860001,20.5,31.9,19.360001,1,1,1,0,1,1,1,0,2274,70902.5,0,0,1600.0557 -1698,2069,3801,3800,-9,-9,1,1,0,43,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,2,0,-5,0,0,0,1,48,1,1,3,3,-9,2019,4,3,19,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,131.3847,3,31.9,19.360001,23.860001,20.5,4,1,1,0,1,1,1,0,2274,70902.5,0,0,1600.0557 -1699,2070,3802,-9,-9,-9,1,1,0,47,3,0,0,0,1,-9,2,1,0,0,4,8.0901537,8.2920475,0,3,0,0,0,-9,0,-832.25977,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,8.4074078,8.4074078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,52.91,-9,-9,2,1,1,0,0,11,4,1,1139,50153.383,0,0,485.31818 -1699,2071,3803,-9,3802,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.7628608,7.8518252,0,3,0,0,0,-9,0,-1012.2319,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,17,4,50,22,15,1,1,-9,1,6.4420624,6.4420624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.16,44.66,-9,-9,3,1,1,0,0,11,3,1,278,123918.21,0,0,884.58075 -1699,2072,3804,-9,3802,-9,3,1,0,19,2,0,0,0,2,1,2,1,0,0,2,7.0482445,7.1584077,0,3,0,0,0,-9,0,-1038.9083,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,19,8,29,0,15,1,1,-9,1,4.4910126,4.4910126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.76,56.41,-9,-9,5,1,1,0,0,11,2,1,663,-134275.19,0,0,-236.06084 -1700,2073,3805,-9,-9,-9,1,1,0,31,3,0,0,0,3,-9,2,1,0,0,3,8.1463127,8.0903988,0,3,0,-9,0,-9,0,-1055.7294,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,1,58,0,15,1,0,-9,0,5.8637443,5.8637443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.959999,48.66,-9,-9,4,1,1,0,0,7,4,0,1298,24659.508,0,0,1852.9398 -1701,2074,3806,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1026.2244,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.0680928,0,0,0,0,1,1,0,0,0,0,0,62.869999,25.24,-9,-9,6,1,1,0,0,9,1,0,1013,-21076.709,0,0,1644.897 -1702,2075,3807,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,0,3,6.9964781,7.5432768,6.0477281,4,0,0,0,-9,0,-1168.8014,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,18,17,15,1,0,-9,0,8.5045404,8.5045404,0,0,0,0,0,0,0,0,1,1,0,6.6379128,0,0,0,52.650002,51.639999,-9,-9,5,1,1,0,0,4,2,0,259,-24673.311,0,0,2358.0483 -1703,2076,3808,3810,-9,-9,2,1,1,23,1,0,1,0,2,-9,2,1,0,0,2,8.3955555,7.9685674,0,2,0,-9,4,0,0,48.861172,0,1,0,32,2,1,1,-9,-9,2019,1,1,22,8,86,46,15,1,1,1,0,6.1660042,6.1660042,0,0,0,0,0,0,0,40,1,1,0,0,0,46.370209,2,24.120001,44.849998,23.620001,26.17,3,1,1,0,0,12,5,1,1318.6666,167288.02,0,0,2975.7878 -1703,2076,3809,-9,3810,3808,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.4445,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,12,5,1,1318.6666,167288.02,0,0,2975.7878 -1703,2076,3810,3808,-9,-9,1,1,0,32,1,0,1,0,2,-9,2,1,0,0,1,8.496295,8.1413612,0,2,0,-9,4,0,9,132.26085,0,0,1,23,2,2,1,2,2,2019,1,2,30,10,39,36,15,1,1,1,0,10.328128,10.328128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.620001,26.17,24.120001,44.849998,3,2,3,0,0,12,5,1,1318.6666,167288.02,0,0,2975.7878 -1704,2077,3811,3812,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,5,6.8876033,6.7513628,0,1,0,-9,35,0,5,-12.586427,0,0,0,58,1,5,1,2,2,2019,1,1,6,0,20,30,15,1,0,1,0,6.3157253,6.3157253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.380001,53.470001,70.290001,42.139999,7,2,3,0,0,8,2,0,1180,971183.63,0,0,969.62811 -1704,2077,3812,3811,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,5,6.3292818,6.2451339,0,1,0,-9,35,0,-5,46.53791,0,0,0,63,2,5,1,-9,1,2019,1,2,6,0,6,10,15,1,0,1,0,13.459073,13.459073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.290001,42.139999,63.380001,53.470001,7,1,1,0,0,8,2,0,1180,971183.63,0,0,969.62811 -1704,2078,3813,-9,3811,3812,3,1,1,29,2,0,0,0,1,-9,2,1,0,0,3,7.934248,8.5127039,0,3,0,0,0,-9,0,-977.27667,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,30,38,15,1,0,-9,1,12.102797,12.102797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.830002,52.439999,-9,-9,4,4,2,0,0,8,4,0,267,41258.414,0,0,1399.5269 -1705,2079,3814,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1067.8784,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,42,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,12,1,0,163,280948.16,0,0,-1071.1143 -1706,2080,3815,3816,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,0,4,2.053494,2.2510252,0,1,0,-9,47,0,-2,41.240429,0,0,0,68,2,1,3,3,3,2019,2,1,6,0,16,16,15,1,0,4,0,.05552192,.05552192,0,0,0,0,0,0,0,2,1,1,0,0,0,.50814313,1,59.529999,56.439999,52,36.110001,7,1,1,0,0,7,2,1,834.5,194098.78,0,0,716.77393 -1706,2080,3816,3815,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,47,0,2,43.437069,0,0,0,66,2,4,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.151962,3,52,36.110001,59.529999,56.439999,6,1,1,0,0,7,2,1,834.5,194098.78,0,0,716.77393 -1707,2081,3817,-9,3819,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1092.0503,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,1025.6666,75768.219,0,0,1932.2576 -1707,2081,3818,-9,3819,-9,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-954.29633,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,8,2,0,1025.6666,75768.219,0,0,1932.2576 -1707,2081,3819,-9,-9,-9,1,1,0,35,2,0,3,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-984.5072,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,22,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.936745,3,27.57,51.049999,-9,-9,2,3,4,0,0,8,2,0,1025.6666,75768.219,0,0,1932.2576 -1708,2082,3820,3822,-9,-9,2,1,0,34,1,0,2,0,2,-9,1,1,0,1,4,8.3074913,8.3936749,0,2,0,-9,12,0,-11,-28.2745,0,0,1,45,2,4,1,3,2,2019,1,1,11,2,10,35,15,1,0,1,0,56.911407,56.911407,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.864467,3,49,56,53,55,5,2,3,0,0,8,5,1,834.33331,73273.969,0,0,7020.7266 -1708,2082,3821,-9,3820,3822,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.20337,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,1,834.33331,73273.969,0,0,7020.7266 -1708,2082,3822,3820,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,0,4,9.6814451,9.4248018,0,2,0,-9,12,0,11,-56.108665,0,0,0,34,2,4,1,3,3,2019,1,2,9,1,60,80,15,1,0,1,0,25.018343,25.018343,0,0,0,0,0,0,0,2,1,1,0,7.579823,0,0,3,53,55,49,56,6,2,3,0,0,8,5,1,834.33331,73273.969,0,0,7020.7266 -1709,2083,3823,3824,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,0,4,7.7137871,7.9729061,0,2,0,-9,4,0,-14,32.941723,0,0,1,48,2,4,1,2,2,2019,1,2,6,0,35,40,15,1,0,1,0,8.7966442,8.7966442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,56.290001,52.369999,7,1,1,0,0,4,5,1,946,394851.28,0,0,2913.3418 -1709,2083,3824,3823,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.6940432,8.82586,0,2,0,-9,4,0,14,-33.869476,0,0,0,34,2,4,1,-9,-9,2019,1,1,8,0,52,62,15,1,0,1,0,10.325629,10.325629,0,0,0,0,0,0,0,0,1,1,0,3.6358919,0,0,0,56.290001,52.369999,60.119999,54.799999,5,1,1,0,0,4,5,1,946,394851.28,0,0,2913.3418 -1709,2083,3825,-9,3823,3824,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.81195,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,5,1,946,394851.28,0,0,2913.3418 -1710,2084,3826,3827,-9,-9,2,1,1,43,1,0,0,0,3,-9,2,1,0,0,4,8.8909435,8.9746189,0,1,0,-9,6,0,0,21.749659,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,1,55,65,15,1,0,1,0,14.912836,14.912836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.59,50.439999,48.869999,58.549999,5,1,1,0,0,7,5,0,320.5,330788.94,0,0,3287.8716 -1710,2084,3827,3826,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,7.7407761,7.9489713,0,1,0,-9,6,0,0,17.855486,0,0,1,43,3,4,1,3,2,2019,1,2,11,1,37,38,15,1,0,1,0,6.8841414,6.8841414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,51.59,50.439999,5,1,1,0,0,7,5,0,320.5,330788.94,0,0,3287.8716 -1711,2085,3828,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,2,1,0,0,3,7.7244263,7.7023821,0,3,0,0,0,-9,0,-905.98358,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,29,27,15,1,0,-9,0,8.3231554,8.3231554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.48,39.16,-9,-9,6,1,1,0,0,9,3,1,107,424963.84,0,0,-520.72815 -1712,2086,3829,-9,3830,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.8197,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.540001,54.5,-9,-9,6,1,1,0,0,2,3,1,761.33331,-42710.086,0,0,1977.8333 -1712,2086,3830,-9,-9,-9,1,1,0,37,2,0,2,0,1,-9,2,1,0,0,4,8.5095596,8.4684372,0,4,0,0,0,-9,0,-930.09814,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,13,3,50,52,15,1,0,-9,0,11.522508,11.522508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,-9,-9,5,1,1,0,0,2,3,1,761.33331,-42710.086,0,0,1977.8333 -1712,2086,3831,-9,3830,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1026.474,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,2,3,1,761.33331,-42710.086,0,0,1977.8333 -1713,2087,3832,-9,-9,-9,1,1,0,74,2,0,0,0,1,-9,4,3,0,0,4,0,6.790772,6.8233824,3,0,0,0,-9,0,-1010.4885,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9583039,0,0,44.259998,53.700001,-9,-9,4,1,1,0,0,10,2,1,295,363609.31,0,0,1556.6791 -1714,2088,3833,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,7.5207715,7.5800314,3,0,0,0,-9,0,-1082.8912,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.273443,.95292443,0,0,0,1,1,0,6.120975,7.9583383,0,0,61.830002,36.540001,-9,-9,6,2,3,0,0,8,3,1,609,1086225,0,0,1371.1012 -1714,2089,3834,3835,-9,-9,3,1,0,31,1,0,0,0,2,-9,2,1,0,0,4,7.7565389,7.7553902,0,1,0,-9,3,0,-20,132.88123,0,0,1,51,2,4,1,-9,-9,2019,1,2,9,0,40,0,15,1,0,1,0,8.5127506,8.5127506,0,0,0,0,0,0,0,0,1,1,0,.6097101,0,0,0,58.150002,52.91,56.330002,51.02,6,2,3,0,0,8,5,1,2122.5,583797.88,0,0,6847.7051 -1714,2089,3835,3834,3833,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,8.1036263,8.7354269,3.6107082,1,0,-9,3,0,20,88.994179,0,0,0,31,2,4,1,3,-9,2019,1,3,11,0,40,40,15,1,0,1,0,13.376759,13.376759,0,0,0,0,0,0,0,0,1,1,0,10.003031,4.0035596,0,0,56.330002,51.02,58.150002,52.91,5,2,3,0,0,8,5,1,2122.5,583797.88,0,0,6847.7051 -1715,2090,3836,3837,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,2,8.5319471,8.1366568,0,1,0,-9,7,0,0,19.437233,0,0,0,49,2,3,1,2,3,2019,1,1,15,3,35,40,15,1,0,1,0,11.681269,11.681269,0,0,0,0,0,0,0,7,0,0,0,0,0,7.8678713,3,24.26,51.380001,57.330002,53.459999,4,1,1,0,0,6,5,1,593,809304.38,0,0,2732.6611 -1715,2090,3837,3836,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.3871775,8.5400391,0,1,0,-9,7,0,0,-52.640568,0,0,0,49,1,2,1,2,3,2019,1,2,6,0,39,42,15,1,0,1,0,13.072317,13.072317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,24.26,51.380001,5,1,1,0,0,6,5,1,593,809304.38,0,0,2732.6611 -1716,2091,3838,3839,-9,-9,1,1,0,41,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,24,0,-4,50.615021,0,0,1,45,3,3,1,3,2,2019,3,2,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.380001,22.52,47.610001,47.169998,3,2,3,0,1,6,4,1,853.5,1171845.3,0,0,2864.1965 -1716,2091,3839,3838,-9,-9,2,1,1,45,1,0,0,0,3,-9,2,1,0,0,3,8.8301296,8.5970936,0,1,0,-9,24,0,4,-112.21613,0,0,0,41,3,2,3,3,3,2019,2,1,12,2,51,34,15,1,0,3,0,11.864005,11.864005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.610001,47.169998,39.380001,22.52,6,1,1,0,1,6,4,1,853.5,1171845.3,0,0,2864.1965 -1716,2092,3840,-9,3838,3839,3,1,1,22,2,0,0,0,2,0,7,2,0,0,5,8.0340815,8.3888464,0,3,0,0,0,-9,0,-949.62714,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,6,2,3,0,0,6,4,1,653,-107685.7,0,0,1558.161 -1716,2093,3841,-9,3838,3839,4,1,1,20,2,0,0,1,2,0,7,2,0,0,5,6.6971841,6.3482814,0,3,0,0,0,-9,0,-1097.4314,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.049999,63.639999,-9,-9,7,2,3,0,0,6,2,1,267,42231.586,0,0,1611.7773 -1716,2094,3842,-9,-9,-9,5,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.9706769,8.1743155,0,3,0,0,0,-9,0,-1018.6339,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,35,37,15,1,0,-9,0,7.6650767,7.6650767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.669998,56.43,-9,-9,5,4,2,0,0,6,3,1,1049,244822.64,0,0,809.17871 -1717,2095,3843,3844,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,3,6.7951593,6.7037497,0,1,0,-9,2,0,-12,-128.48424,0,0,1,54,1,4,1,-9,-9,2019,1,1,27,10,20,20,15,1,1,1,0,6.8797679,6.8797679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.1,53.349998,23.42,64.870003,1,3,4,0,1,5,4,0,1035,1797312.3,0,0,2224.7656 -1717,2095,3844,3843,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,8.1179237,8.2889185,0,1,0,-9,2,0,12,86.302582,0,0,0,42,1,3,1,3,3,2019,1,2,28,11,42,42,15,1,1,1,0,8.9498739,8.9498739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.42,64.870003,22.1,53.349998,2,3,4,0,1,5,4,0,1035,1797312.3,0,0,2224.7656 -1718,2096,3845,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,0,4,0,4.4741874,4.4135313,3,0,0,0,-9,0,-995.86359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4351354,4.3768201,0,0,48.759998,53.240002,-9,-9,6,1,1,0,0,11,2,0,613,121659.02,0,0,1408.1571 -1719,2097,3846,3847,-9,-9,2,1,0,62,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,45,0,-1,-2.3466697,0,0,0,63,3,4,3,2,2,2019,4,1,17,5,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.450001,37.490002,57.16,56.150002,4,1,1,0,0,7,2,0,956,392096,0,0,2758.7166 -1719,2097,3847,3846,-9,-9,1,1,1,63,1,0,0,0,3,-9,4,3,0,1,4,0,5.8106861,5.6454148,1,0,-9,45,0,1,-229.20787,0,0,0,62,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.9333818,5.5027614,68.809189,1,57.16,56.150002,22.450001,37.490002,6,1,1,0,0,7,2,0,956,392096,0,0,2758.7166 -1720,2098,3848,3853,-9,-9,1,1,1,39,1,1,4,0,1,-9,2,1,0,0,5,8.6335878,8.4877243,0,2,0,-9,13,0,1,-62.656216,0,0,0,38,1,4,1,2,2,2019,1,2,12,1,42,43,15,1,0,1,0,19.417479,19.417479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,13,4,1,537.16669,119395.27,0,0,3261.2898 -1720,2098,3849,-9,3853,3848,4,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.10687,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,537.16669,119395.27,0,0,3261.2898 -1720,2098,3850,-9,3853,3848,6,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.584,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,4,1,537.16669,119395.27,0,0,3261.2898 -1720,2098,3851,-9,3853,3848,5,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.4389,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,537.16669,119395.27,0,0,3261.2898 -1720,2098,3852,-9,3853,3848,3,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.20349,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,537.16669,119395.27,0,0,3261.2898 -1720,2098,3853,3848,-9,-9,2,1,0,38,1,1,4,0,1,-9,2,1,0,0,4,6.5322647,6.6391249,0,2,0,-9,13,0,-1,66.316986,0,0,1,39,1,5,1,2,2,2019,1,1,7,0,15,0,15,1,0,1,0,6.1628938,6.1628938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,13,4,1,537.16669,119395.27,0,0,3261.2898 -1721,2099,3854,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,5,0,5.4840379,5.3134351,3,0,0,0,-9,0,-1006.1998,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1978183,5.7957096,0,0,62.389999,56.709999,-9,-9,1,1,1,0,0,5,2,1,521,11157.33,0,0,1040.4922 -1722,2100,3855,-9,-9,-9,1,1,0,50,2,0,3,0,3,-9,2,1,0,0,4,7.6475372,7.9939361,0,4,0,0,0,-9,0,-1037.5441,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,35,35,15,1,0,-9,0,6.092968,6.092968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,11,2,1,739,-57315.578,0,0,1915.2975 -1722,2100,3856,-9,3855,-9,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-934.02655,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,2,1,739,-57315.578,0,0,1915.2975 -1723,2101,3857,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,4,9.0855885,9.0232477,0,3,0,0,0,-9,0,-922.16864,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,51,49,15,1,1,-9,0,21.908407,21.908407,0,0,0,0,0,0,0,0,0,0,0,3.3511086,0,0,0,44.189999,56.73,-9,-9,6,1,1,0,0,9,5,1,618,354160,0,0,2089.8999 -1724,2102,3858,3859,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.4720721,6.3240743,1,0,-9,6,0,9,-76.489937,0,0,0,60,2,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5397186,0,0,60.029999,45.369999,56.939999,49.529999,6,1,1,0,0,9,4,1,278.5,1235730.1,0,0,2894.5637 -1724,2102,3859,3858,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.5614471,8.5363674,0,1,0,-9,6,0,0,80.11528,0,0,0,69,2,3,3,3,3,2019,2,2,6,0,38,38,15,1,0,4,0,13.343183,13.343183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,60.029999,45.369999,6,1,1,0,0,9,4,1,278.5,1235730.1,0,0,2894.5637 -1725,2103,3860,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,0,2,0,5.837656,5.552001,3,0,-9,0,-9,0,-971.4071,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6097345,0,0,45.810001,49.73,-9,-9,6,1,1,0,0,2,2,0,1621,244644.81,0,0,-320.30014 -1726,2104,3861,3862,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,3,0,7.6820536,7.9301629,1,0,-9,34,0,5,72.565018,0,0,0,56,3,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5933981,7.6098766,0,0,58.869999,40.59,58.66,31.110001,6,1,1,0,0,9,4,1,483.5,1991479,0,0,2931.6787 -1726,2104,3862,3861,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,3,7.8547826,7.5850062,2.5800385,1,0,-9,34,0,-5,41.251026,0,0,0,61,1,3,3,2,2,2019,2,1,8,0,31,31,15,1,0,4,0,9.0265999,9.0265999,0,0,0,0,0,0,0,2,0,0,0,3.9124002,2.7735269,2.6994209,3,58.66,31.110001,58.869999,40.59,5,1,1,0,0,9,4,1,483.5,1991479,0,0,2931.6787 -1726,2105,3863,-9,3862,3861,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,8.0430574,8.257431,0,3,0,0,0,-9,0,-1030.8469,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,50,50,15,1,0,-9,1,7.3106041,7.3106041,0,0,0,0,0,0,0,0,0,0,0,1.46426,0,0,0,55.540001,46.02,-9,-9,5,1,1,0,0,9,4,1,167,-62384.766,0,0,1500.7163 -1727,2106,3864,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,6.9678493,7.2081394,0,3,0,0,0,-9,0,-1033.4658,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,2,18,18,15,1,0,-9,0,7.8703794,7.8703794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,55.310001,-9,-9,6,1,1,0,0,10,2,1,1209,0,0,0,2658.3743 -1727,2107,3865,-9,3864,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,0,3,5.7492614,5.9354839,0,3,0,0,0,-9,0,-888.27722,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,4,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.32,59.330002,-9,-9,5,1,1,0,0,10,2,1,163,-94254.891,0,0,225.01274 -1727,2108,3866,-9,3864,-9,3,1,0,18,2,0,0,1,2,0,7,2,0,0,3,6.7085223,6.2532215,0,3,0,0,0,-9,0,-958.22186,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,24,8,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.220001,53.610001,-9,-9,4,1,1,0,0,10,2,1,2659,-125713.52,0,0,-264.11462 -1728,2109,3867,-9,3868,3869,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-850.59497,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,636.33331,-44624.582,0,0,1722.9834 -1728,2109,3868,3869,-9,-9,1,1,0,19,1,1,1,0,2,-9,2,1,0,0,4,6.0791106,6.6130199,0,2,0,1,1,-9,-10,-149.48479,0,1,1,29,2,2,1,-9,-9,2019,1,3,10,0,12,0,15,1,0,1,0,5.8511372,5.8511372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.419998,61.41,42,43,6,1,1,0,0,2,2,0,636.33331,-44624.582,0,0,1722.9834 -1728,2109,3869,3868,-9,-9,3,1,1,29,1,1,1,0,2,-9,1,1,0,0,2,7.3618989,7.5722117,0,2,0,-9,1,-9,10,117.70216,-9,1,0,19,2,4,1,-9,-9,2019,1,1,28,8,30,0,15,1,1,1,0,7.3746719,7.3746719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,43,40.419998,61.41,3,1,1,0,0,2,2,0,636.33331,-44624.582,0,0,1722.9834 -1729,2110,3870,3871,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,5.9388347,5.7842903,1,0,-9,7,0,0,23.759995,0,0,0,79,1,3,3,3,2,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1319866,0,0,49.450001,35.490002,56.220001,40.209999,4,1,1,0,0,11,3,1,1068.5,976237,0,0,2517.2161 -1729,2110,3871,3870,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.9270172,7.8373394,1,0,-9,7,0,0,229.29224,0,0,0,79,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0163288,0,0,56.220001,40.209999,49.450001,35.490002,6,1,1,0,0,11,3,1,1068.5,976237,0,0,2517.2161 -1730,2111,3872,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,0,3,8.4341154,8.4692831,0,3,0,0,0,-9,0,-875.1618,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,45,15,15,1,0,-9,0,15.163412,15.163412,0,0,0,0,0,0,0,2,0,0,0,0,0,3.6215296,3,57.919998,51.82,-9,-9,2,1,1,0,0,6,4,1,261,-91.284363,0,0,1474.7168 -1731,2112,3873,3874,-9,-9,3,1,1,49,1,0,0,0,1,-9,2,1,0,0,3,8.8428555,8.7289057,0,1,0,-9,2,0,-2,-160.24292,0,0,0,51,2,4,1,-9,-9,2019,1,1,9,0,45,40,15,1,0,1,0,20.649372,20.649372,0,0,0,0,0,0,0,0,0,0,0,7.5188298,0,0,0,52,54.509998,59.470001,44.130001,6,1,1,0,0,13,5,1,216.5,364840.19,0,0,4280.1143 -1731,2112,3874,3873,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,8.3280249,8.3579988,0,1,0,-9,2,0,2,-54.752544,0,0,0,49,1,3,1,2,2,2019,1,3,5,0,37,38,15,1,0,1,0,14.506233,14.506233,0,0,0,0,0,0,0,14.5,0,0,0,6.9703336,0,20.043812,3,59.470001,44.130001,52,54.509998,2,1,1,0,0,13,5,1,216.5,364840.19,0,0,4280.1143 -1731,2113,3875,-9,3874,3873,2,1,0,21,2,0,0,0,2,0,7,2,0,0,4,6.8999996,6.886085,0,3,0,0,0,-9,0,-1194.1866,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,4,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,-9,-9,7,1,1,0,0,13,2,1,596,-126403.59,0,0,712.56299 -1732,2114,3876,3877,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,0,3,7.7205715,8.0549355,0,1,0,-9,9,0,-1,-21.441063,0,0,0,59,1,4,1,3,2,2019,1,1,12,1,37,50,15,1,0,1,0,9.2034883,9.2034883,0,0,0,0,0,0,0,27.5,1,1,0,5.4979672,0,35.559502,3,41.279999,57.990002,52.560001,47.220001,3,1,1,0,0,11,3,1,712.5,149574.97,0,0,1540.293 -1732,2114,3877,3876,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,9,0,1,-77.9412,0,0,0,58,1,3,1,3,3,2019,1,2,7,0,70,75,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.2341156,3,52.560001,47.220001,41.279999,57.990002,6,1,1,0,0,11,3,1,712.5,149574.97,0,0,1540.293 -1733,2115,3878,-9,-9,-9,1,1,0,59,3,0,1,0,2,-9,2,1,0,0,3,7.8055,8.0409603,0,4,0,-9,0,-9,0,-1035.4774,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,0,15,1,0,-9,0,7.800241,7.800241,0,0,0,0,0,0,0,14.5,1,1,0,0,0,3.4406118,3,57.330002,53.459999,-9,-9,6,1,1,0,0,5,3,1,923,187853.97,0,0,1789.8549 -1733,2116,3879,-9,3878,-9,2,1,0,25,2,0,1,0,2,-9,2,1,0,0,3,7.6788239,7.7113957,0,3,0,-9,0,-9,0,-909.14636,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,0,15,1,0,-9,1,4.8518009,4.8518009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,4,1,1,0,0,5,3,1,535,-74729.266,0,0,321.54419 -1733,2117,3880,-9,3878,-9,3,1,0,22,2,0,1,0,3,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-969.45288,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,4,1,1,1,0,5,1,1,504,-8504.5234,0,0,482.41565 -1733,2117,3881,-9,3880,-9,4,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-943.51837,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,1,1,504,-8504.5234,0,0,482.41565 -1734,2118,3882,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,3,0,6.2654214,6.3425636,3,0,0,0,-9,0,-987.52118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.4518837,0,0,0,1,1,0,1.2040216,6.4455943,0,0,52.599998,52.880001,-9,-9,6,1,1,0,0,13,2,1,154,163234.03,0,0,1689.9177 -1735,2119,3883,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,3,8.5837002,8.2847404,0,3,0,0,0,-9,0,-933.72235,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,42,40,15,1,0,-9,0,9.0230646,9.0230646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,2,4,1,647,327328.91,0,0,1959.048 -1736,2120,3884,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,0,3,9.1079493,9.2674656,0,3,0,0,0,-9,0,-1082.4832,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,86,49,15,1,0,-9,0,12.091188,12.091188,0,0,0,0,0,0,0,0,0,0,0,2.9128041,0,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,8,5,0,1590,96108.977,0,0,3290.8022 -1736,2121,3885,-9,-9,-9,2,1,0,34,2,0,0,0,1,-9,2,1,0,0,4,8.9897718,9.0999641,0,3,0,0,0,-9,0,-1043.608,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,42,15,1,0,-9,0,22.710184,22.710184,0,0,0,0,0,0,0,0,0,0,0,3.7187908,0,0,0,51.830002,57.200001,-9,-9,5,2,3,0,0,8,5,0,1775,495449.31,0,0,2385.229 -1737,2122,3886,3889,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,4,8.1359968,8.189786,0,2,0,-9,8,0,-3,-115.73698,0,0,0,51,2,5,1,2,2,2019,1,1,12,0,20,21,15,1,0,1,0,20.624638,20.624638,0,0,0,0,0,0,0,0,0,0,0,1.7114021,0,0,0,51.240002,58.84,57.060001,57.759998,6,1,1,0,0,12,5,1,773,583819,0,0,5372.6807 -1737,2122,3887,-9,3886,3889,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-925.57416,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,5,1,773,583819,0,0,5372.6807 -1737,2122,3888,-9,3886,3889,3,1,1,17,2,0,1,0,2,-9,7,2,0,0,4,6.7207041,6.4965053,0,2,0,0,0,-9,0,-1026.2025,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,13,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.900002,56.66,-9,-9,4,1,1,0,0,12,5,1,773,583819,0,0,5372.6807 -1737,2122,3889,3886,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,5,9.4061947,9.3141975,0,2,0,-9,8,0,3,-136.32628,0,0,0,48,1,4,1,2,2,2019,1,2,9,0,47,46,15,1,0,1,0,28.171215,28.171215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,51.240002,58.84,1,1,1,0,0,12,5,1,773,583819,0,0,5372.6807 -1738,2123,3890,3894,-9,-9,2,1,0,36,1,1,3,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,8,0,-2,0,0,0,1,38,3,1,3,3,3,2019,4,1,36,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.45596,2,10.11,37.75,41.470001,19.01,1,1,1,0,0,9,1,0,816.20001,46984.133,0,0,2172.6396 -1738,2123,3891,-9,3890,3894,4,1,1,14,2,1,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-923.02295,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,1,0,816.20001,46984.133,0,0,2172.6396 -1738,2123,3892,-9,3890,3894,5,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.15216,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,816.20001,46984.133,0,0,2172.6396 -1738,2123,3893,-9,3890,3894,6,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.45734,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,816.20001,46984.133,0,0,2172.6396 -1738,2123,3894,3890,-9,-9,1,1,1,38,1,1,3,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,17,0,2,0,0,0,0,36,2,1,3,3,3,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.55948,2,41.470001,19.01,10.11,37.75,3,1,1,0,0,9,1,0,816.20001,46984.133,0,0,2172.6396 -1738,2124,3895,-9,3890,3894,3,1,1,19,2,1,3,0,2,-9,7,2,0,0,3,7.1870732,6.8513913,0,3,0,0,0,-9,0,-1039.2926,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,22,10,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.037083,3,43.709999,56.91,-9,-9,1,1,1,0,1,9,2,0,313,-88906.344,0,0,834.14301 -1739,2125,3896,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1092.7568,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,37,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.77,64.339996,-9,-9,2,1,1,0,1,11,1,0,138,48218.625,0,0,8.5421762 -1740,2126,3897,3898,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.3386931,7.4937463,0,1,0,-9,6,0,-2,3.842515,0,0,0,53,2,4,1,3,3,2019,1,1,12,0,23,23,15,1,0,1,0,7.3511171,7.3511171,0,0,0,0,0,0,0,7,0,0,0,0,0,7.2812181,3,57.16,56.150002,53,54,6,1,1,0,0,13,4,1,1090.5,366259.5,0,0,2147.7173 -1740,2126,3898,3897,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.636672,8.5342932,0,1,0,-9,6,0,2,-11.307102,-9,0,0,51,2,4,1,3,3,2019,1,2,9,1,25,0,15,1,0,1,0,24.199228,24.199228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,57.16,56.150002,6,1,1,0,0,13,4,1,1090.5,366259.5,0,0,2147.7173 -1741,2127,3899,3900,-9,-9,1,1,0,59,1,0,0,0,1,-9,1,1,0,0,4,9.7095785,9.3193817,0,1,0,-9,32,0,0,-46.258083,0,0,0,59,1,4,1,2,2,2019,1,2,11,0,24,24,15,1,0,1,0,79.98288,79.98288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,57.16,56.150002,6,1,1,0,0,12,5,1,749,4026286.3,0,0,9505.5596 -1741,2127,3900,3899,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,0,4,9.1697369,9.3747425,0,1,0,-9,32,0,0,-50.317719,0,0,0,59,1,4,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,32.412086,32.412086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,48.869999,58.549999,6,1,1,0,0,12,5,1,749,4026286.3,0,0,9505.5596 -1742,2128,3901,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1023.0358,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.040001,41.310001,-9,-9,6,1,1,0,0,12,1,1,1243,-46173.316,0,0,-83.389488 -1743,2129,3902,-9,-9,-9,1,1,0,41,3,1,3,0,2,-9,1,1,0,0,4,7.1492171,7.0305367,0,4,0,0,0,-9,0,-996.76935,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,35,15,1,0,-9,0,2.5189281,2.5189281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,7,1,1,0,0,13,2,1,398.25,153872.39,0,0,932.63232 -1743,2129,3903,-9,3902,-9,3,1,1,12,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1017.8137,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,2,1,398.25,153872.39,0,0,932.63232 -1743,2129,3904,-9,3902,-9,2,1,1,15,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1049.7397,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,1,398.25,153872.39,0,0,932.63232 -1743,2129,3905,-9,3902,-9,4,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1054.5718,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,1,398.25,153872.39,0,0,932.63232 -1744,2130,3906,3907,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,2,9.0675354,9.2019453,0,2,0,-9,7,0,2,43.748779,0,0,0,51,2,2,3,2,2,2019,2,2,16,4,39,42,15,1,1,3,0,27.8664,27.8664,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.498009,3,38.939999,36.549999,9.8299999,55.549999,3,1,1,0,1,11,4,1,1155.5,1038776.6,0,0,3134.6987 -1744,2130,3907,3906,-9,-9,2,1,0,51,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,7,0,-2,-84.308891,0,0,0,53,1,2,1,2,2,2019,3,1,27,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.749237,3,9.8299999,55.549999,38.939999,36.549999,3,1,1,0,1,11,4,1,1155.5,1038776.6,0,0,3134.6987 -1744,2131,3908,-9,3907,3906,3,1,0,19,2,0,1,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-904.61865,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,27,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.099998,15.93,-9,-9,1,1,1,0,0,11,1,1,248,-37150.184,0,0,270.58673 -1744,2132,3909,-9,3907,3906,4,1,1,18,2,0,1,1,2,0,7,2,0,0,2,4.7491097,4.7608404,0,3,0,0,0,-9,0,-988.43433,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,27,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,.98189169,0,116.87702,3,29.74,47.290001,-9,-9,4,1,1,0,0,11,4,1,774,79657.656,0,0,-840.74286 -1745,2133,3910,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,2,7.0456266,8.2720366,7.8465195,3,0,0,0,-9,0,-925.86542,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,15,0,15,1,0,-9,0,10.844657,10.844657,0,0,0,0,0,0,0,0,1,1,0,7.7107477,7.6598058,0,0,50.959999,24.42,-9,-9,2,1,1,0,1,9,4,0,3200,1051445.5,0,0,3685.5159 -1746,2134,3911,-9,3912,-9,2,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1069.5658,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,1,0,416,74684.422,0,0,844.39886 -1746,2134,3912,-9,-9,-9,1,1,0,24,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,4,0,-9,0,-9,0,-1056.6072,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.610001,52.369999,-9,-9,4,1,1,1,1,6,1,0,416,74684.422,0,0,844.39886 -1746,2134,3913,-9,3912,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-951.10486,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,1,0,416,74684.422,0,0,844.39886 -1747,2135,3914,-9,3917,3915,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.90271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,811.75,266677.19,0,0,1786.7245 -1747,2135,3915,3917,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,23,0,1,57.048462,0,0,0,44,2,4,1,2,2,2019,1,1,20,8,35,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9140987,0,0,0,46.630001,47.57,54.790001,55.860001,3,1,1,0,0,10,2,1,811.75,266677.19,0,0,1786.7245 -1747,2135,3916,-9,3917,3915,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.151,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,2,1,811.75,266677.19,0,0,1786.7245 -1747,2135,3917,3915,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.8941388,8.1540289,0,2,0,-9,26,0,-1,90.055923,0,0,1,45,2,3,1,3,3,2019,1,2,11,0,14,14,15,1,0,1,0,19.978088,19.978088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,46.630001,47.57,6,1,1,0,0,10,2,1,811.75,266677.19,0,0,1786.7245 -1748,2136,3918,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-894.65094,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.900002,18.76,-9,-9,5,1,1,0,0,13,1,1,173,-33427.039,0,0,1156.4817 -1749,2137,3919,-9,3920,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-897.25989,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,2,0,501,54928.227,0,0,1245.6036 -1749,2137,3920,-9,-9,-9,1,1,0,24,2,0,1,0,2,0,7,2,0,1,2,0,6.295454,6.1989107,4,0,0,0,-9,0,-1059.9049,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1322136,0,0,0,38,43,-9,-9,4,1,1,0,0,13,2,0,501,54928.227,0,0,1245.6036 -1750,2138,3921,-9,3924,3923,5,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.8016,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,7,3,1,537.5,143200.95,0,0,2895.9509 -1750,2138,3922,-9,3924,3923,3,1,0,12,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.14801,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,7,3,1,537.5,143200.95,0,0,2895.9509 -1750,2138,3923,3924,-9,-9,1,1,1,35,1,1,4,0,2,-9,2,1,0,0,5,8.5137196,8.3491716,0,2,0,-9,16,0,-1,-60.056515,0,0,0,36,1,4,1,3,3,2019,1,2,15,3,60,40,15,1,0,1,0,7.7915869,7.7915869,0,0,0,0,0,0,0,2,1,1,0,0,0,.62185061,3,33.459999,49.490002,49,56,5,2,3,0,1,7,3,1,537.5,143200.95,0,0,2895.9509 -1750,2138,3924,3923,-9,-9,2,1,0,36,1,1,4,0,1,-9,2,1,0,0,4,6.5325341,6.4574676,0,2,0,-9,15,0,1,-15.74715,0,0,1,35,2,5,1,-9,-9,2019,1,1,11,2,20,16,15,1,0,1,0,3.4901645,3.4901645,0,0,0,0,0,0,0,0,1,1,0,3.4964595,0,0,0,49,56,33.459999,49.490002,5,2,3,0,0,7,3,1,537.5,143200.95,0,0,2895.9509 -1750,2138,3925,-9,3924,3923,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-854.99957,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,3,1,537.5,143200.95,0,0,2895.9509 -1750,2138,3926,-9,3924,3923,4,1,1,10,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1020.835,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,7,3,1,537.5,143200.95,0,0,2895.9509 -1751,2139,3927,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,5.0603013,5.1944237,3,0,0,0,-9,0,-1053.9381,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,16.734245,0,0,0,1,1,0,2.3394256,4.8765149,0,0,41.740002,42.32,-9,-9,7,1,1,0,0,9,2,1,988,32373.18,0,0,1067.0474 -1752,2140,3928,-9,3930,3929,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-963.97876,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,888.66669,291828.88,0,0,5065.7456 -1752,2140,3929,3930,-9,-9,2,1,1,45,1,1,1,0,1,-9,2,1,0,0,5,9.2124815,9.3462763,0,2,0,-9,7,0,10,-34.642582,0,0,0,35,1,4,1,2,2,2019,1,1,8,0,38,39,15,1,0,1,0,30.560921,30.560921,0,0,0,0,0,0,0,0,1,1,0,7.1745119,0,0,0,57.060001,57.759998,55.759998,52.639999,6,1,1,0,0,5,5,1,888.66669,291828.88,0,0,5065.7456 -1752,2140,3930,3929,-9,-9,1,1,0,35,1,1,1,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,7,0,-10,53.426834,0,0,1,45,1,5,1,2,2,2019,1,2,8,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2600671,0,0,0,55.759998,52.639999,57.060001,57.759998,6,1,1,0,0,5,5,1,888.66669,291828.88,0,0,5065.7456 -1753,2141,3931,-9,3932,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1081.8544,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,1,0,683.5,139651.86,0,0,307.24637 -1753,2141,3932,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1042.2869,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,20.691063,3,49,55,-9,-9,5,2,3,0,1,6,1,0,683.5,139651.86,0,0,307.24637 -1754,2142,3933,3934,-9,-9,2,1,0,53,1,0,0,0,1,-9,1,1,0,0,5,9.5563164,9.996419,0,1,0,-9,30,0,1,0,0,0,0,52,1,3,1,2,2,2019,1,1,13,1,40,30,15,1,0,1,0,48.66526,48.66526,0,0,0,0,0,0,0,7,1,1,0,0,0,6.2079339,3,38.59,63.369999,43.119999,58.549999,3,1,1,0,0,2,5,1,2119,2551834.5,0,0,31445.775 -1754,2142,3934,3933,3937,-9,1,1,1,52,1,0,0,0,1,-9,1,1,0,0,3,9.6660814,9.5416069,0,1,0,-9,30,0,-1,0,0,0,0,53,1,5,1,2,2,2019,1,2,13,1,40,36,15,1,0,1,0,44.077595,44.077595,0,0,0,0,0,0,0,2,1,1,0,9.4826183,0,1.5115426,3,43.119999,58.549999,38.59,63.369999,5,1,1,0,0,2,5,1,2119,2551834.5,0,0,31445.775 -1754,2143,3935,-9,3933,3934,3,1,0,21,2,0,0,0,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-987.0332,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.958504,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,2,1,1,1028,-155199.69,0,0,167.03351 -1754,2144,3936,-9,3933,3934,4,1,0,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1046.9984,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3103158,0,3.2698674,3,49.040001,55.860001,-9,-9,5,1,1,0,0,2,1,1,3189,0,0,0,587.01953 -1754,2145,3937,-9,-9,-9,5,1,0,83,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-974.44403,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,4.1579261,8.0167923,0,0,0,1,1,0,0,0,0,0,37.439999,22.67,-9,-9,5,1,1,0,0,2,1,1,733,-71442.188,0,0,-603.16058 -1755,2146,3938,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,0,5,0,8.288868,8.5413246,3,0,0,0,-9,0,-1136.5518,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.1296587,8.9000454,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,2,5,1,1562,558736.19,0,0,4037.9248 -1756,2147,3939,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,1,1,0,0,3,4.7578235,4.8830218,0,3,0,0,0,-9,0,-1011.8138,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,3,14,15,1,0,-9,0,4.9213929,4.9213929,0,0,0,0,0,0,0,0,1,1,0,6.4187794,0,0,0,49.52,56.950001,-9,-9,6,1,1,0,0,12,2,1,831,429433.94,0,0,580.56799 -1757,2148,3940,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,5.4680915,5.3605285,3,0,0,0,-9,0,-1026.7415,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3141656,0,0,52.799999,24.85,-9,-9,6,1,1,0,0,12,2,1,1255,402909.78,0,0,888.3172 -1758,2149,3941,3942,-9,-9,1,1,1,39,1,0,0,0,2,-9,1,1,0,0,3,6.7796011,7.0216975,0,1,0,-9,7,0,-8,-.65051335,0,0,0,47,2,5,1,3,2,2019,1,2,9,0,70,80,15,1,0,1,0,1.123492,1.123492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,45.810001,61.509998,6,1,1,0,0,12,2,1,377,33983.332,0,0,1066.6023 -1758,2149,3942,3941,-9,-9,2,1,0,47,1,0,0,0,2,-9,1,1,0,0,5,6.7755675,6.6112652,0,1,0,-9,7,0,8,-.0097461464,0,0,0,39,2,3,1,3,-9,2019,1,1,10,0,40,45,15,1,0,1,0,2.2050307,2.2050307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,61.509998,54.369999,54.799999,7,1,1,0,0,12,2,1,377,33983.332,0,0,1066.6023 -1758,2149,3943,-9,3942,3941,4,1,1,16,2,0,0,0,2,-9,2,2,0,0,3,7.3023229,6.8092036,0,1,0,0,0,-9,0,-985.97168,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,-9,-9,1,1,1,0,0,12,2,1,377,33983.332,0,0,1066.6023 -1758,2150,3944,-9,3942,3941,3,1,1,18,2,0,0,0,2,-9,1,1,0,0,3,7.3788795,7.322722,0,3,0,0,0,-9,0,-1008.576,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,50,0,15,1,0,-9,1,3.4920273,3.4920273,0,0,0,0,0,0,0,0,0,0,0,4.6578178,0,0,0,60.060001,34.279999,-9,-9,6,1,1,0,0,12,3,1,581,-10335.445,0,0,998.91736 -1759,2151,3945,-9,3948,-9,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1045.694,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,12,3,1,714.75,420751.53,0,0,3326.2251 -1759,2151,3946,-9,3948,-9,2,1,1,17,2,0,2,0,2,-9,7,2,0,0,4,7.1637959,6.986186,0,4,0,0,0,-9,0,-984.97571,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,20,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.74240398,0,0,0,50.25,54.040001,-9,-9,5,1,1,0,1,12,3,1,714.75,420751.53,0,0,3326.2251 -1759,2151,3947,-9,3948,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1167.9872,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,12,3,1,714.75,420751.53,0,0,3326.2251 -1759,2151,3948,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,1,1,0,0,4,7.438673,7.9806848,7.5584016,4,0,-9,0,1,0,-1167.4939,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,2,0,38,60,15,1,0,-9,0,5.5853362,5.5853362,0,0,0,0,0,0,0,7,1,1,0,7.2574492,0,14.653935,3,51.080002,49.240002,-9,-9,5,1,1,0,0,12,3,1,714.75,420751.53,0,0,3326.2251 -1760,2152,3949,3950,-9,-9,2,1,1,62,1,0,0,0,3,-9,4,3,0,0,2,0,7.7070112,7.7315073,1,0,-9,44,0,1,57.746468,0,0,0,61,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.4758844,7.8586502,.9809714,3,55.200001,49.400002,41.299999,54.48,5,1,1,0,0,6,3,1,320,1285669.6,0,0,858.32605 -1760,2152,3950,3949,-9,-9,1,1,0,61,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,44,0,-1,-70.376205,0,0,0,62,3,2,3,3,3,2019,4,2,21,6,0,38,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,74.426651,3,41.299999,54.48,55.200001,49.400002,5,1,1,0,0,6,3,1,320,1285669.6,0,0,858.32605 -1761,2153,3951,3952,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.5918388,8.7475595,1,0,-9,3,0,1,2.1146708,0,0,0,68,2,4,3,-9,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,9.1118336,128.31105,3,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,12,5,1,950.5,1850811.8,0,0,5153.1816 -1761,2153,3952,3951,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.6469665,7.3948784,1,0,-9,3,0,-1,-3.4183068,0,0,0,69,2,3,3,-9,-9,2019,4,1,3,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.2463861,7.3933253,122.97378,3,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,12,5,1,950.5,1850811.8,0,0,5153.1816 -1762,2154,3953,3954,-9,-9,1,1,0,53,1,0,0,0,3,-9,1,1,0,0,4,7.506711,7.2990108,0,1,0,-9,19,0,7,-40.452801,0,0,0,46,2,4,1,2,3,2019,1,2,9,0,18,20,15,1,0,1,0,8.8747692,8.8747692,0,0,0,0,0,0,0,0,0,0,0,1.0296831,0,0,0,57.169998,50.610001,54.790001,55.860001,7,1,1,0,0,1,4,1,361,80792.391,0,0,2572.5442 -1762,2154,3954,3953,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.2761059,8.4361506,0,1,0,-9,9,0,-7,38.854584,0,0,0,53,3,4,1,-9,-9,2019,1,1,6,0,44,44,15,1,0,1,0,9.0606718,9.0606718,0,0,0,0,0,0,0,0,0,0,0,6.9561243,0,0,0,54.790001,55.860001,57.169998,50.610001,7,1,1,0,0,1,4,1,361,80792.391,0,0,2572.5442 -1762,2155,3955,-9,3953,3954,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.9491034,7.5992584,0,3,0,0,0,-9,0,-996.5719,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,25,9,45,35,15,1,1,-9,1,7.3107362,7.3107362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.030001,67.290001,-9,-9,3,1,1,0,0,1,4,1,1206,100753.86,0,0,1861.4211 -1763,2156,3956,3957,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,8.5645847,8.1221838,0,1,0,-9,28,0,2,-6.8313222,0,0,0,47,2,4,1,2,3,2019,1,1,10,1,39,45,15,1,0,1,0,17.164024,17.164024,0,0,0,0,0,0,0,2,1,1,0,3.4060581,0,0,3,54.790001,55.860001,53.459999,53.93,2,1,1,0,0,7,5,1,1945,21555.848,0,0,3923.3047 -1763,2156,3957,3956,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.6968908,8.5291834,0,1,0,-9,28,0,-2,30.805588,0,0,0,49,2,4,1,3,3,2019,1,2,7,0,40,40,15,1,0,1,0,13.13915,13.13915,0,0,0,0,0,0,0,2,1,1,0,3.2514224,0,4.4907732,3,53.459999,53.93,54.790001,55.860001,7,1,1,0,0,7,5,1,1945,21555.848,0,0,3923.3047 -1763,2157,3958,-9,3956,3957,4,1,1,22,2,0,0,0,1,-9,2,1,0,0,4,7.9698787,8.1447983,0,3,0,0,0,-9,0,-1015.6323,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,44,48,15,1,0,-9,1,6.3842874,6.3842874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,3,1,651,-34146.902,0,0,1236.4532 -1764,2158,3959,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,1,1,0,0,5,9.0241842,9.1333561,0,1,0,-9,7,0,18,0,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,9,0,40,55,15,1,0,-9,0,21.801641,21.801641,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.060001,57.759998,55.759998,52.639999,6,1,1,0,0,4,5,1,662,253358.14,0,0,4199.0923 -1764,2159,3960,-9,-9,-9,2,1,1,40,2,0,0,0,1,-9,1,1,0,0,4,9.3083057,8.9571152,0,1,0,-9,7,0,-18,0,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,9,0,40,50,15,1,0,-9,0,19.021008,19.021008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,52.639999,57.060001,57.759998,6,1,1,0,0,4,5,1,62,-77155.383,0,0,3751.0583 -1765,2160,3961,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-924.58508,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.9,50.759998,-9,-9,1,1,1,1,0,7,1,1,664,-98046.438,0,0,0 -1766,2161,3962,3963,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,3,8.3020382,8.4244232,0,1,0,1,1,-9,-1,-15.391647,0,1,0,27,1,3,1,1,1,2019,1,2,5,0,55,55,15,1,0,1,0,11.551847,11.551847,0,0,0,0,0,0,0,0,0,0,0,6.5586157,0,0,0,58.889999,48.599998,52,54.509998,6,1,1,0,0,8,5,0,326.5,-5340.96,0,0,3504.3989 -1766,2161,3963,3962,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.4229336,8.8135157,0,1,0,-9,1,-9,1,-166.96729,-9,1,1,26,1,3,1,-9,-9,2019,1,1,11,1,41,0,15,1,0,1,0,15.073634,15.073634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,58.889999,48.599998,6,1,1,0,0,8,5,0,326.5,-5340.96,0,0,3504.3989 -1767,2162,3964,3965,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,5,9.146349,9.2369261,0,1,0,-9,10,0,0,-32.821121,0,0,0,56,1,4,1,2,3,2019,1,2,8,0,40,42,15,1,0,1,0,34.065868,34.065868,0,0,0,0,0,0,0,0,1,1,0,2.255579,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,2,5,1,1445,1472835.6,0,0,6167.5903 -1767,2162,3965,3964,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.5438414,8.2979689,0,1,0,-9,29,0,0,81.946274,0,0,0,56,2,5,1,2,3,2019,1,1,8,0,26,25,15,1,0,1,0,23.202919,23.202919,0,0,0,0,0,0,0,0,1,1,0,1.8779958,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,2,5,1,1445,1472835.6,0,0,6167.5903 -1767,2162,3966,-9,3965,3964,4,1,0,17,2,0,0,1,2,0,7,2,0,0,3,6.2680001,6.1706228,0,1,0,0,0,-9,0,-953.59375,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.23,45.509998,-9,-9,7,1,1,0,0,2,5,1,1445,1472835.6,0,0,6167.5903 -1767,2163,3967,-9,3965,3964,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,5,7.7653608,7.9850502,0,3,0,0,0,-9,0,-1006.5879,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,38,15,1,0,-9,1,10.227365,10.227365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,2,4,1,467,111059.77,0,0,1434.7826 -1768,2164,3968,-9,3972,3971,6,1,0,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1010.2689,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,6,2,1,734,24178.99,0,0,1657.1803 -1768,2164,3969,-9,3972,3971,5,1,0,14,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-961.00415,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,6,2,1,734,24178.99,0,0,1657.1803 -1768,2164,3970,-9,3972,3971,7,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.05176,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,2,1,734,24178.99,0,0,1657.1803 -1768,2164,3971,3972,-9,-9,2,1,1,51,1,0,4,0,3,-9,2,1,0,0,3,7.5071273,7.4409232,0,2,0,-9,7,0,5,148.58936,0,0,0,46,3,3,3,-9,-9,2019,2,1,11,1,35,86,15,1,0,3,0,4.9467564,4.9467564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,57.330002,53.459999,5,2,3,0,0,6,2,1,734,24178.99,0,0,1657.1803 -1768,2164,3972,3971,-9,-9,1,1,0,46,1,0,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,-5,54.278214,0,0,0,51,3,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,49,50,6,2,3,0,0,6,2,1,734,24178.99,0,0,1657.1803 -1768,2164,3973,-9,3972,3971,3,1,1,13,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-996.85864,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,6,2,1,734,24178.99,0,0,1657.1803 -1769,2165,3974,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,3,8.565527,8.491663,0,3,0,0,0,-9,0,-1091.8218,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,42,15,1,0,-9,0,13.675277,13.675277,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.099998,39.619999,-9,-9,6,1,1,0,0,12,5,1,251,1042280.3,0,0,1636.795 -1770,2166,3975,-9,3977,3976,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1074.8839,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1431822,0,0,0,45,59,-9,-9,5,1,1,0,0,13,3,1,532.66669,53557.105,0,0,5148.6772 -1770,2166,3976,3977,-9,-9,1,1,1,45,1,0,2,0,3,-9,2,1,0,0,4,8.1929808,8.3559389,0,2,0,-9,13,-9,1,-16.65835,-9,0,0,44,2,3,1,2,3,2019,1,2,9,1,37,0,15,1,0,1,0,14.050942,14.050942,0,0,0,0,0,0,0,0,1,1,0,7.7657924,0,0,0,52,55,30.6,62.02,6,1,1,0,0,13,3,1,532.66669,53557.105,0,0,5148.6772 -1770,2166,3977,3976,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,7.7229328,7.6421199,0,2,0,-9,1,-9,-1,97.773308,-9,0,1,45,3,4,1,-9,-9,2019,1,1,18,7,26,0,15,1,1,1,0,11.27885,11.27885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,62.02,52,55,5,1,1,0,0,13,3,1,532.66669,53557.105,0,0,5148.6772 -1771,2167,3978,3979,-9,-9,2,1,0,60,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,36,0,-5,-6.8431835,0,0,0,65,3,2,3,3,3,2019,4,1,17,5,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.34,33.369999,50.290001,23.1,4,1,1,0,0,13,1,1,587.5,-64690.871,0,0,2472.0342 -1771,2167,3979,3978,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,1,2,0,4.641655,4.5452247,1,0,-9,7,0,5,16.298286,0,0,0,60,3,2,3,-9,-9,2019,4,2,13,1,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.5916824,0,0,50.290001,23.1,25.34,33.369999,1,1,1,0,0,13,1,1,587.5,-64690.871,0,0,2472.0342 -1772,2168,3980,-9,3983,3982,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.89996,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,2,3,1,1290.25,-54775.457,0,0,1591.051 -1772,2168,3981,-9,3983,3982,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.6754,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,3,1,1290.25,-54775.457,0,0,1591.051 -1772,2168,3982,3983,-9,-9,2,1,1,30,1,1,2,0,2,-9,2,1,0,0,4,8.2388582,8.1756163,0,2,0,-9,7,0,4,32.88612,0,0,0,26,2,4,3,-9,-9,2019,2,1,10,1,35,35,15,1,0,3,0,11.071548,11.071548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,23.91,64.5,5,2,3,0,0,2,3,1,1290.25,-54775.457,0,0,1591.051 -1772,2168,3983,3982,-9,-9,1,1,0,26,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-4,-35.422405,0,1,1,30,2,4,1,3,2,2019,3,2,18,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2675323,0,0,0,23.91,64.5,50,57,2,2,3,0,0,2,3,1,1290.25,-54775.457,0,0,1591.051 -1773,2169,3984,3986,-9,-9,2,1,0,33,1,0,2,0,1,-9,1,1,0,0,4,7.5366292,7.6283631,0,2,0,-9,10,0,-2,35.060398,0,0,1,35,2,3,1,2,2,2019,1,1,8,0,35,24,15,1,0,1,0,8.5203609,8.5203609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,59.220001,37.52,4,1,1,0,0,13,3,1,943.75,181598.52,0,0,2991.6533 -1773,2169,3985,-9,3984,3986,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.1727,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,943.75,181598.52,0,0,2991.6533 -1773,2169,3986,3984,-9,-9,1,1,1,35,1,0,2,0,2,-9,1,1,0,0,3,6.9752488,7.9210148,7.4290881,2,0,-9,10,0,2,140.09538,0,0,0,33,1,4,1,3,2,2019,1,2,11,0,10,40,15,1,0,1,0,11.546612,11.546612,0,0,0,0,0,0,0,0,1,1,0,0,7.5808396,0,0,59.220001,37.52,48.279999,60.18,5,1,1,0,0,13,3,1,943.75,181598.52,0,0,2991.6533 -1773,2169,3987,-9,3984,3986,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-847.46338,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,943.75,181598.52,0,0,2991.6533 -1774,2170,3988,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-959.77118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,13,1,0,845,93329.414,0,0,304.90182 -1775,2171,3989,3990,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,7.6436896,7.7677979,6.3517327,1,0,-9,5,0,-5,-50.556473,0,0,1,47,2,4,1,-9,-9,2019,1,3,3,1,35,30,15,1,0,1,0,5.593647,5.593647,0,0,0,0,0,0,0,0,1,1,0,6.4209375,0,0,0,41.169998,59.310001,52,55,4,1,1,0,0,5,4,0,435.66666,108093.2,0,0,3389.9136 -1775,2171,3990,3989,-9,-9,3,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.1082239,8.0997353,0,1,0,-9,5,0,5,85.618286,0,0,0,42,2,4,1,-9,-9,2019,1,1,9,1,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,41.169998,59.310001,6,4,1,0,0,5,4,0,435.66666,108093.2,0,0,3389.9136 -1775,2171,3991,-9,3989,-9,2,1,1,17,2,0,0,0,2,1,2,3,0,0,5,6.267065,7.0991073,6.5185647,1,0,0,0,-9,0,-890.81128,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,5,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3561416,0,0,0,50.540001,62.09,-9,-9,7,1,1,0,0,5,4,0,435.66666,108093.2,0,0,3389.9136 -1776,2172,3992,3993,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,0,3,0,7.9320655,8.0425215,1,0,-9,57,0,-1,102.73085,0,0,0,81,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.46561,7.650425,0,0,54,46,53.169998,27.09,6,1,1,0,0,7,3,1,799,938827.38,0,0,2512.1006 -1776,2172,3993,3992,-9,-9,1,1,0,81,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,1,153.97293,0,0,0,80,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4246488,0,0,0,53.169998,27.09,54,46,6,1,1,0,0,7,3,1,799,938827.38,0,0,2512.1006 -1777,2173,3994,3995,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,1,7.7686634,7.8706851,0,1,0,-9,2,0,-2,-230.71176,0,0,0,48,3,4,1,2,3,2019,1,2,20,8,60,60,15,1,1,1,0,5.2068257,5.2068257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.219999,39.419998,26.76,61.810001,3,1,1,0,0,2,4,1,249,409462.06,0,0,1871.8215 -1777,2173,3995,3994,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,4,8.0057821,7.6821628,0,1,0,-9,2,0,2,-72.847,0,0,0,46,2,1,1,-9,-9,2019,1,1,17,6,39,39,15,1,1,1,0,8.9907551,8.9907551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.76,61.810001,26.219999,39.419998,3,1,1,0,0,2,4,1,249,409462.06,0,0,1871.8215 -1778,2174,3996,3997,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,0,3,9.5767651,9.3324614,0,1,0,-9,10,0,1,58.862732,0,0,0,63,1,4,1,2,2,2019,1,1,5,0,40,38,15,1,0,1,0,30.832735,30.832735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.540001,54.240002,54.790001,55.860001,6,1,1,0,0,11,5,0,973.5,2005814.5,0,0,7090.0879 -1778,2174,3997,3996,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,8.8688507,9.2094011,0,1,0,-9,10,0,-1,-48.835648,0,0,0,64,1,3,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,22.847727,22.847727,0,0,0,0,0,0,0,14.5,0,0,0,2.4151313,0,8.8770723,3,54.790001,55.860001,52.540001,54.240002,6,1,1,0,0,11,5,0,973.5,2005814.5,0,0,7090.0879 -1779,2175,3998,3999,-9,-9,2,1,0,67,1,0,0,0,1,-9,1,1,0,0,5,5.1902385,5.3606343,0,1,0,-9,7,0,0,86.379852,0,0,0,67,1,2,3,-9,-9,2019,2,1,6,0,8,0,15,1,0,4,0,3.583472,3.583472,0,0,0,0,0,0,0,0,1,1,0,3.4543083,0,0,1,57.060001,57.759998,64.790001,21.969999,6,1,1,0,0,2,3,1,306.5,684774.88,0,0,2907.3894 -1779,2175,3999,3998,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,1,2,4.3127398,7.650928,7.3529081,1,0,-9,37,0,0,-73.505165,0,0,0,67,1,5,1,3,3,2019,3,2,9,0,1,0,15,4,0,1,0,0,0,1,0,2.3408396,0,0,2.5107861,0,0,1,1,0,3.7816179,7.715508,0,0,64.790001,21.969999,57.060001,57.759998,6,1,1,0,0,2,3,1,306.5,684774.88,0,0,2907.3894 -1780,2176,4000,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-894.98114,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,9,1,1,1076,865850.19,0,0,0 -1780,2177,4001,-9,4000,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,9.7094755,9.7528276,0,3,0,0,0,-9,0,-1070.2041,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,39,0,15,1,0,-9,1,42.325096,42.325096,0,0,0,0,0,0,0,0,0,0,0,1.1463983,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,9,5,1,933,95016.828,0,0,4928.9883 -1781,2178,4002,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,5,8.8385086,8.9680719,0,3,0,0,0,-9,0,-960.67773,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,45,59,15,1,0,-9,0,25.036793,25.036793,0,0,0,0,0,0,0,0,0,0,0,3.1056504,0,0,0,42.34,59.150002,-9,-9,6,1,1,0,0,8,5,1,894,113621.8,0,0,2581.7012 -1782,2179,4003,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,0,2,0,4.6218128,4.4491825,3,0,-9,0,-9,0,-1030.5411,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,4.754602,2.9022431,3,47.560001,48.93,-9,-9,5,1,1,0,0,12,2,1,699,-188789.2,0,0,1020.8499 -1783,2180,4004,-9,4006,4007,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.61188,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,1246.75,335077.19,0,0,3625.8789 -1783,2180,4005,-9,4006,4007,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.0932,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,1246.75,335077.19,0,0,3625.8789 -1783,2180,4006,4007,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,0,4,8.801877,8.2873859,0,2,0,-9,10,0,0,31.031761,0,0,0,49,2,3,1,2,1,2019,1,2,9,0,35,31,15,1,0,1,0,20.630363,20.630363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.41,56.150002,6,1,1,0,0,7,5,1,1246.75,335077.19,0,0,3625.8789 -1783,2180,4007,4006,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,3,8.3413706,8.3984776,0,2,0,-9,10,0,0,153.53712,0,0,0,49,1,4,1,-9,3,2019,1,1,12,0,40,48,15,1,0,1,0,15.858521,15.858521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,51.830002,57.200001,3,1,1,0,0,7,5,1,1246.75,335077.19,0,0,3625.8789 -1784,2181,4008,-9,4009,4010,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-999.24066,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,4,1,659.33331,249777.22,0,0,3160.9648 -1784,2181,4009,4010,-9,-9,1,1,0,29,1,1,1,0,1,-9,5,1,0,0,4,7.9624877,7.9620562,0,2,0,-9,6,0,0,-140.17239,0,1,1,29,1,4,1,-9,-9,2019,1,2,9,0,37,37,15,1,0,1,0,8.6035032,8.6035032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,57.16,56.150002,7,1,1,0,0,13,4,1,659.33331,249777.22,0,0,3160.9648 -1784,2181,4010,4009,-9,-9,2,1,1,29,1,1,1,0,1,-9,2,1,0,0,4,8.4335079,8.3842583,0,2,0,-9,6,0,0,3.9644334,0,1,0,29,1,4,1,-9,-9,2019,1,1,3,0,40,40,15,1,0,1,0,15.215619,15.215619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.73,54.529999,6,1,1,0,0,13,4,1,659.33331,249777.22,0,0,3160.9648 -1785,2182,4011,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-933.16528,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.4590278,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,1,0,260,-76907.242,0,0,700.93298 -1786,2183,4012,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,0,3,8.0394163,7.9988904,0,3,0,0,0,-9,0,-873.20563,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,33,32,15,1,0,-9,0,10.268709,10.268709,0,0,0,0,0,0,0,42,0,0,0,0,0,38.305099,3,41.23,59.349998,-9,-9,5,2,3,0,0,8,4,1,266,862526.75,0,0,1722.6748 -1786,2184,4013,-9,4012,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,6.9859867,7.3553519,0,3,0,0,0,-9,0,-956.39203,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,31,10,22,22,15,1,1,-9,1,7.2584567,7.2584567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.139999,62.220001,-9,-9,1,4,2,0,0,8,2,1,380,-166188.36,0,0,207.06194 -1787,2185,4014,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,5,8.2501974,7.628839,0,3,0,-9,0,0,0,-922.33582,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,39,39,15,1,0,-9,0,9.3558226,9.3558226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.529999,61.330002,-9,-9,6,1,1,0,0,11,4,0,565,-26866.037,0,0,949.68304 -1788,2186,4015,4016,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.3988008,8.247241,0,1,0,-9,38,0,-2,-80.013153,0,0,0,61,3,2,1,3,3,2019,1,1,8,0,37,37,15,1,0,1,0,13.116108,13.116108,0,0,0,0,0,0,0,2,0,0,0,4.506475,0,13.021048,3,57.16,56.150002,63.5,41.470001,2,1,1,0,0,6,5,1,313.5,387139.06,0,0,3240.677 -1788,2186,4016,4015,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,0,2,8.3090076,8.0504112,0,1,0,-9,37,0,2,22.668188,0,0,0,59,2,4,1,3,2,2019,1,2,7,0,30,35,15,1,0,1,0,12.013618,12.013618,0,0,0,0,0,0,0,0,0,0,0,3.4329493,0,0,0,63.5,41.470001,57.16,56.150002,6,1,1,0,0,6,5,1,313.5,387139.06,0,0,3240.677 -1789,2187,4017,4018,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,0,0,0,1,0,-9,11,0,-12,-61.583672,0,0,1,43,2,3,1,3,2,2019,1,2,4,0,5,5,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,46.099998,59.990002,56.599998,47.060001,6,1,1,0,0,10,4,1,258.5,224763.88,0,0,2059.8687 -1789,2187,4018,4017,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,0,3,8.6969709,8.6383181,0,1,0,-9,11,0,12,-31.72086,0,0,0,31,1,4,1,2,2,2019,1,1,11,1,48,48,15,1,0,1,0,13.725656,13.725656,0,0,0,0,0,0,0,0,0,0,0,3.5912671,0,0,0,56.599998,47.060001,46.099998,59.990002,4,1,1,0,0,10,4,1,258.5,224763.88,0,0,2059.8687 -1790,2188,4019,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,7.3793216,7.7106333,0,3,0,0,0,-9,0,-1121.1663,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,2,17,18,15,1,0,-9,0,11.252506,11.252506,0,0,0,0,0,0,0,0,0,0,0,5.1690865,0,0,0,39.869999,58.610001,-9,-9,5,1,1,0,0,2,3,1,607,332172.88,0,0,311.67535 -1791,2189,4020,4021,-9,-9,1,1,1,44,1,0,0,0,1,-9,1,1,0,0,4,9.9085999,9.5563364,0,1,0,-9,7,0,5,-89.852524,0,0,0,39,2,3,1,2,2,2019,1,3,7,0,30,40,15,1,0,1,0,65.0513,65.0513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.689999,55.66,47.150002,56.66,6,1,1,0,0,11,5,1,2351.5,232635.19,0,0,22114.406 -1791,2189,4021,4020,-9,-9,3,1,0,39,1,0,0,0,2,-9,1,1,0,0,3,7.9108744,7.8619022,0,1,0,-9,7,0,-5,-25.953279,0,0,1,44,1,4,1,-9,-9,2019,1,1,12,0,5,20,15,1,0,1,0,51.838173,51.838173,0,0,0,0,0,0,0,0,0,0,0,3.1093202,0,0,0,47.150002,56.66,49.689999,55.66,7,1,1,0,0,11,5,1,2351.5,232635.19,0,0,22114.406 -1792,2190,4022,4023,-9,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,0,3,8.199975,8.6288013,0,2,0,-9,10,0,2,75.714272,0,0,0,31,3,4,1,2,2,2019,1,1,12,2,36,36,15,1,0,1,0,11.885704,11.885704,0,0,0,0,0,0,0,0,1,1,0,5.0734634,0,0,0,31.24,50.59,46.48,58.279999,5,1,1,0,1,8,3,0,693,67020.305,0,0,2515.7197 -1792,2190,4023,4022,-9,-9,1,1,0,31,1,0,2,0,3,-9,1,1,0,0,4,7.3804779,7.3374591,0,2,0,-9,14,0,-2,-7.386045,0,0,1,33,2,3,1,2,2,2019,1,2,12,1,30,50,15,1,0,1,0,5.6090097,5.6090097,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.279999,31.24,50.59,6,1,1,0,0,8,3,0,693,67020.305,0,0,2515.7197 -1792,2190,4024,-9,4023,4022,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-838.41907,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,3,0,693,67020.305,0,0,2515.7197 -1792,2190,4025,-9,4023,4022,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-862.76788,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,3,0,693,67020.305,0,0,2515.7197 -1793,2191,4026,4027,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,7.4767189,7.5372047,0,1,0,-9,8,0,2,43.457642,0,0,0,65,3,3,3,-9,-9,2019,2,1,10,1,43,40,15,1,0,4,0,5.4230285,5.4230285,0,0,0,0,0,0,0,0,1,1,0,4.3921418,0,0,0,52,48,58.5,12.36,5,1,1,0,0,4,2,1,558.5,392081.06,0,0,1290.5227 -1793,2191,4027,4026,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,-2,-111.99827,0,0,0,67,2,3,1,3,3,2019,3,2,9,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.1135274,0,28.939453,3,58.5,12.36,52,48,6,1,1,0,0,4,2,1,558.5,392081.06,0,0,1290.5227 -1794,2192,4028,-9,4029,-9,1,1,1,50,2,0,0,0,3,-9,2,1,0,0,2,8.6640902,8.2810059,0,3,0,0,0,-9,0,-1002.1128,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,38,40,15,1,0,-9,1,17.926321,17.926321,0,0,0,0,0,0,0,0,1,1,0,3.2041774,0,0,0,49.869999,50.459999,-9,-9,6,1,1,0,0,9,5,1,595,296612,0,0,493.58713 -1794,2193,4029,-9,-9,-9,2,1,0,90,3,0,0,0,3,-9,4,3,0,0,2,0,5.0404425,4.7614222,3,0,0,0,-9,0,-1130.2732,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,.84776467,0,0,4.4329925,0,0,0,1,1,0,7.9808521,4.8802919,0,0,62.509998,33.970001,-9,-9,5,1,1,0,0,9,2,1,612,-45401.285,0,0,2274.0396 -1795,2194,4030,4031,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,0,4,7.1742911,6.9795098,0,2,0,-9,16,0,-1,78.380318,0,0,1,36,1,4,1,1,-9,2019,1,1,10,0,20,44,15,1,0,1,0,6.6318765,6.6318765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,54.200001,57.490002,5,1,1,0,1,4,4,1,238.66667,4582.7559,0,0,1818.0271 -1795,2194,4031,4030,-9,-9,1,1,1,36,1,0,1,0,1,-9,2,1,0,0,4,8.4737644,8.3698158,0,2,0,-9,16,0,1,72.583176,0,0,0,35,1,4,1,2,1,2019,1,2,11,0,45,40,15,1,0,1,0,14.737887,14.737887,0,0,0,0,0,0,0,0,1,1,0,.21919283,0,0,0,54.200001,57.490002,62.490002,55.09,5,1,1,0,1,4,4,1,238.66667,4582.7559,0,0,1818.0271 -1795,2194,4032,-9,4030,4031,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.7805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,1,238.66667,4582.7559,0,0,1818.0271 -1796,2195,4033,-9,4036,4035,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.15533,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,3,1,574.25,-69267.211,0,0,2445.1125 -1796,2195,4034,-9,4036,4035,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1121.4548,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,1,574.25,-69267.211,0,0,2445.1125 -1796,2195,4035,4036,-9,-9,2,1,1,39,1,1,2,0,2,-9,2,1,0,0,5,7.8559556,7.6536865,0,2,0,-9,15,0,7,14.866841,0,0,0,32,2,4,1,3,2,2019,1,1,16,4,34,35,15,1,1,1,0,7.9893813,7.9893813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.060001,60.240002,33.049999,57.869999,3,1,1,0,1,13,3,1,574.25,-69267.211,0,0,2445.1125 -1796,2195,4036,4035,-9,-9,1,1,0,32,1,1,2,0,2,-9,2,1,0,0,4,7.37644,7.7323813,0,2,0,-9,15,0,-7,35.72929,0,0,1,39,2,5,1,2,2,2019,1,2,12,0,18,18,15,1,0,1,0,13.095879,13.095879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.049999,57.869999,46.060001,60.240002,4,1,1,0,1,13,3,1,574.25,-69267.211,0,0,2445.1125 -1797,2196,4037,-9,-9,-9,1,1,1,77,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-964.04596,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.240002,-9,-9,6,3,4,0,0,8,1,0,197,177767.61,0,0,-134.68481 -1798,2197,4038,4040,-9,-9,1,1,0,61,1,0,1,0,2,-9,2,1,0,0,5,6.6998515,6.8056369,0,2,0,-9,15,0,1,-169.69972,0,0,0,60,1,4,1,-9,-9,2019,1,2,11,0,13,9,15,1,0,1,0,8.0512772,8.0512772,0,0,0,0,0,0,0,5.48,1,1,0,0,0,12.608232,3,51.73,58.82,58.900002,45.740002,6,1,1,0,0,8,3,1,1632.6666,1037919.9,0,0,2256.0603 -1798,2197,4039,-9,4038,4040,3,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,6.726645,7.1704621,0,2,0,0,0,-9,0,-1035.8177,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2788864,0,0,3,46,58,-9,-9,5,1,1,0,0,8,3,1,1632.6666,1037919.9,0,0,2256.0603 -1798,2197,4040,4038,-9,-9,2,1,1,60,1,0,1,0,1,-9,2,1,0,0,4,8.1764212,8.3516655,0,2,0,-9,15,0,-1,37.996933,0,0,0,61,2,5,1,3,3,2019,1,1,7,0,36,40,15,1,0,1,0,12.768307,12.768307,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.8129673,3,58.900002,45.740002,51.73,58.82,6,4,5,0,0,8,3,1,1632.6666,1037919.9,0,0,2256.0603 -1798,2198,4041,-9,4038,4040,4,1,1,28,2,0,1,0,2,-9,2,1,0,0,4,7.6777964,7.9066887,0,3,0,-9,0,-9,0,-913.67578,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,35,0,15,1,0,-9,1,7.6166773,7.6166773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,4,5,0,0,8,3,1,911,-22390.08,0,0,560.23761 -1799,2199,4042,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,5.2911458,5.445663,3,0,0,0,-9,0,-999.28607,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.3121796,0,0,36.369999,45.439999,-9,-9,6,1,1,0,0,5,2,1,145,173606.13,0,0,98.498436 -1800,2200,4043,4044,-9,-9,1,1,0,46,1,0,3,0,1,-9,2,1,0,0,3,9.0086279,8.7676287,0,2,0,-9,19,0,-3,-13.722882,0,0,0,49,1,5,1,3,3,2019,1,2,9,0,38,38,15,1,0,1,0,21.783695,21.783695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.380001,47,48.84,47.98,6,2,3,0,0,9,5,1,451,388133.53,0,0,8188.8838 -1800,2200,4044,4043,-9,4048,2,1,1,49,1,0,3,0,1,-9,2,1,0,0,5,8.8333435,8.5105801,0,2,0,-9,19,0,3,-.57010514,0,0,0,46,1,3,1,3,2,2019,1,1,10,0,40,40,15,1,0,1,0,18.836954,18.836954,0,0,0,0,0,0,0,2,1,1,0,9.6835127,0,1.4656644,3,48.84,47.98,46.380001,47,6,2,3,0,1,9,5,1,451,388133.53,0,0,8188.8838 -1800,2200,4045,-9,4043,4044,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-967.32843,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,9,5,1,451,388133.53,0,0,8188.8838 -1800,2200,4046,-9,4043,4044,3,1,1,17,2,0,3,1,3,0,7,2,0,0,5,5.8846741,5.9982252,0,2,0,0,0,-9,0,-899.3233,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.290001,44.610001,-9,-9,6,2,3,0,0,9,5,1,451,388133.53,0,0,8188.8838 -1800,2200,4047,-9,4043,4044,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.8582,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,5,1,451,388133.53,0,0,8188.8838 -1800,2201,4048,-9,-9,-9,6,1,1,86,3,0,3,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-973.63361,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,4,6,0,0,9,1,1,369,630475.44,0,0,0 -1801,2202,4049,-9,-9,-9,1,1,0,38,2,0,3,0,2,-9,2,1,0,0,3,7.2119665,7.1886773,0,4,0,0,0,-9,0,-1028.5125,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,20,20,15,1,0,-9,0,7.0423636,7.0423636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.139999,42.509998,-9,-9,5,1,1,0,0,9,2,0,995,133678.73,0,0,3195.6194 -1801,2202,4050,-9,4049,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1010.6667,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,995,133678.73,0,0,3195.6194 -1801,2202,4051,-9,4049,-9,2,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-956.04877,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,2,0,995,133678.73,0,0,3195.6194 -1801,2202,4052,-9,4049,-9,3,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1140.861,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,995,133678.73,0,0,3195.6194 -1802,2203,4053,-9,4055,4054,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1034.3483,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,1833.5,214338,0,0,15398.554 -1802,2203,4054,4055,-9,-9,1,1,1,38,1,1,2,0,1,-9,1,1,0,0,5,9.631093,9.6989985,0,2,0,-9,7,0,0,96.804535,0,0,0,38,1,4,1,1,2,2019,1,2,8,1,40,55,15,1,0,1,0,53.433426,53.433426,0,0,0,0,0,0,0,0,0,0,0,8.532423,0,0,0,55.09,55.869999,58.150002,52.91,6,1,1,0,0,9,5,1,1833.5,214338,0,0,15398.554 -1802,2203,4055,4054,-9,-9,2,1,0,38,1,1,2,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,7,0,0,-19.056517,0,0,1,38,1,5,1,2,3,2019,1,1,7,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9805365,0,0,0,58.150002,52.91,55.09,55.869999,6,1,1,0,0,9,5,1,1833.5,214338,0,0,15398.554 -1802,2203,4056,-9,4055,4054,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.01471,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1833.5,214338,0,0,15398.554 -1803,2204,4057,4058,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,6.2407722,6.3617744,1,0,-9,48,0,3,34.866917,0,0,0,69,2,2,3,2,3,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.9123478,6.2647848,113.80892,1,36.540001,41.810001,47.830002,24.52,3,1,1,0,0,2,3,1,630,721126,0,0,2194.2368 -1803,2204,4058,4057,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.6451359,7.8605871,1,0,-9,48,0,-3,-74.054657,0,0,0,72,2,2,3,3,3,2019,4,2,19,9,0,0,15,4,1,4,0,0,0,1,0,129.30357,0,0,0,0,0,1,1,0,4.0776792,7.2563605,0,0,47.830002,24.52,36.540001,41.810001,6,1,1,0,0,2,3,1,630,721126,0,0,2194.2368 -1804,2205,4059,-9,4061,4060,3,1,0,17,2,0,1,1,2,0,7,2,0,0,3,3.1841052,2.9564462,0,2,0,0,0,-9,0,-1036.019,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1.5671877,3,49.630001,54.349998,-9,-9,4,1,1,0,0,1,4,0,916.33331,-61330.664,0,0,2726.3435 -1804,2205,4060,4061,-9,-9,2,1,1,47,1,0,1,0,3,-9,2,1,0,0,3,8.4525137,8.7808361,0,2,0,-9,2,0,6,43.738712,0,0,0,41,1,2,1,-9,2,2019,1,1,6,0,50,48,15,1,0,1,0,7.5759583,7.5759583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,45.650002,45.330002,5,1,1,0,0,1,4,0,916.33331,-61330.664,0,0,2726.3435 -1804,2205,4061,4060,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,2,7.3795686,7.3686833,0,2,0,-9,2,0,-6,-90.898933,0,0,1,47,3,3,1,2,2,2019,1,2,12,1,50,37,15,1,0,1,0,3.5378411,3.5378411,0,0,0,0,0,0,0,14.5,0,0,0,0,0,6.7799587,3,45.650002,45.330002,57.330002,53.459999,6,1,1,0,0,1,4,0,916.33331,-61330.664,0,0,2726.3435 -1805,2206,4062,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,3,0,7.539434,7.5141621,3,0,0,0,-9,0,-969.57819,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,41.180794,0,0,0,0,1,1,0,5.8093109,7.3240361,0,0,60.91,31.290001,-9,-9,7,1,1,0,0,5,3,1,1090,253202.66,0,0,2150.1292 -1806,2207,4063,-9,-9,-9,2,1,0,63,3,0,1,0,3,-9,2,1,0,0,3,6.8492355,7.2969708,0,4,0,0,0,-9,0,-1089.037,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,21,24,15,1,0,-9,0,5.29247,5.29247,0,0,0,0,0,0,0,7,1,1,0,4.1573467,0,6.159236,3,54.369999,54.799999,-9,-9,6,1,1,0,0,9,2,1,254,198846.06,0,0,1028.9276 -1806,2208,4064,4066,-9,-9,4,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.847147,9.3353205,0,2,0,-9,2,0,16,51.817917,-9,0,0,36,2,4,1,-9,-9,2019,1,1,10,0,71,0,15,1,0,1,0,14.635879,14.635879,0,0,0,0,0,0,0,0,1,1,0,8.1798515,0,0,0,51.240002,58.84,28.5,64.959999,6,1,1,0,0,9,5,1,1010,1640226.6,0,0,5608.7402 -1806,2208,4065,-9,4066,-9,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.63031,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,1010,1640226.6,0,0,5608.7402 -1806,2208,4066,4064,4063,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,0,4,8.640913,8.9056892,0,2,0,-9,2,0,-16,-47.238583,0,0,1,52,2,4,1,3,-9,2019,1,4,17,7,40,40,15,1,1,1,0,15.221199,15.221199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.5,64.959999,51.240002,58.84,6,1,1,0,0,9,5,1,1010,1640226.6,0,0,5608.7402 -1807,2209,4067,4069,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,8.7641687,8.6620932,0,2,0,-9,8,0,7,81.699066,0,0,0,43,3,2,1,-9,-9,2019,1,1,7,0,42,37,15,1,0,1,0,18.675745,18.675745,0,0,0,0,0,0,0,0,1,1,0,1.4632375,0,0,0,54.610001,39.830002,58.709999,40.919998,6,1,1,0,0,4,4,1,272.33334,1706098.5,0,0,3000.9023 -1807,2209,4068,-9,4069,4067,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.67908,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,272.33334,1706098.5,0,0,3000.9023 -1807,2209,4069,4067,-9,-9,1,1,0,43,1,0,1,0,3,-9,2,1,0,0,2,7.2684917,7.4526358,0,2,0,-9,18,0,-7,-60.018505,0,0,1,50,2,4,1,3,3,2019,1,2,12,0,7,19,15,1,0,1,0,22.62479,22.62479,0,0,0,0,0,0,0,0,1,1,0,5.196897,0,0,0,58.709999,40.919998,54.610001,39.830002,6,1,1,0,0,4,4,1,272.33334,1706098.5,0,0,3000.9023 -1808,2210,4070,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,6.2073169,6.2482119,3,0,0,0,-9,0,-914.5351,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2310796,0,0,0,33.830002,63.900002,-9,-9,5,1,1,0,0,12,2,0,189,-119965.06,0,0,-84.369347 -1809,2211,4071,4072,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,8.7072554,8.9597673,0,1,0,-9,16,0,0,-16.900593,0,0,0,45,2,4,1,2,2,2019,1,1,7,0,37,39,15,1,0,1,0,17.432013,17.432013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,6,5,1,1206,802211.5,0,0,4794.4526 -1809,2211,4072,4071,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.100894,8.4637346,0,1,0,-9,16,0,0,-105.90744,0,0,0,45,1,4,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,11.117328,11.117328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,6,5,1,1206,802211.5,0,0,4794.4526 -1810,2212,4073,4074,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.3595891,6.2698903,1,0,-9,50,0,2,-1.4532266,0,0,0,68,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2822142,6.3629446,0,0,60.200001,39.82,49.860001,55.310001,7,1,1,0,0,12,2,1,696,319366.88,0,0,2244.7976 -1810,2212,4074,4073,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-2,-112.51743,0,0,0,70,2,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4495616,0,0,0,49.860001,55.310001,60.200001,39.82,5,1,1,0,0,12,2,1,696,319366.88,0,0,2244.7976 -1811,2213,4075,4076,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.7650385,8.872962,0,1,0,-9,1,-9,8,-7.7995772,-9,0,0,49,2,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,22.498602,22.498602,0,0,0,0,0,0,0,0,0,0,0,4.3798442,0,0,0,51,49,57.16,56.150002,5,4,1,0,0,4,5,1,269,456229.94,0,0,3298.2671 -1811,2213,4076,4075,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,0,4,6.0421734,5.690218,0,1,0,1,1,-9,-8,32.189796,0,0,0,57,2,3,1,2,-9,2019,1,2,6,0,40,50,15,1,0,1,0,1.3192302,1.3192302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51,49,6,1,1,0,0,4,5,1,269,456229.94,0,0,3298.2671 -1812,2214,4077,4078,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,3,7.7657461,9.0229988,8.4510946,1,0,-9,6,0,-2,45.097874,0,0,0,70,1,3,3,1,1,2019,2,1,6,0,30,8,15,1,0,4,0,9.3715906,9.3715906,0,0,0,0,0,0,0,0,1,1,0,2.9634421,8.2148886,0,0,54.959999,53.169998,51,46,6,4,2,0,0,4,5,1,626.5,2986931.3,0,0,3997.6924 -1812,2214,4078,4077,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,7.228827,7.3742404,1,0,-9,50,0,2,-2.2077966,0,0,0,68,1,3,1,-9,-9,2019,3,2,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4045281,7.2163496,0,0,51,46,54.959999,53.169998,5,1,1,0,0,4,5,1,626.5,2986931.3,0,0,3997.6924 -1813,2215,4079,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,1,1,0,0,4,7.0444789,6.7412996,0,3,0,0,0,-9,0,-938.11041,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,10,0,15,1,0,-9,0,9.9664469,9.9664469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,12,2,1,925,277342.47,0,0,1205.843 -1814,2216,4080,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1148.0872,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.9623878,0,0,3,50.889999,46.799999,-9,-9,4,1,1,0,0,12,1,0,902,0,0,0,731.56891 -1815,2217,4081,4082,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,8.7056322,9.0175982,7.7349014,1,0,-9,32,0,-3,19.279583,0,0,0,57,2,2,3,3,-9,2019,2,2,6,0,35,35,15,1,0,4,0,17.723198,17.723198,0,0,0,0,0,0,0,0,0,0,0,0,8.1119957,0,0,55.959999,49.93,36.630001,38.639999,6,1,1,0,0,12,5,1,1487.5,1037740.6,0,0,3834.333 -1815,2217,4082,4081,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,0,2,0,6.9052639,6.9319596,1,0,-9,32,0,3,61.812584,0,0,0,54,1,3,1,3,3,2019,3,1,16,4,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0421224,0,0,36.630001,38.639999,55.959999,49.93,6,1,1,0,0,12,5,1,1487.5,1037740.6,0,0,3834.333 -1815,2218,4083,-9,4082,4081,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,2,7.5769396,7.5631051,0,3,0,0,0,-9,0,-800.08984,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,34,38,15,1,1,-9,1,7.9498515,7.9498515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.439999,48.18,-9,-9,4,1,1,0,1,12,3,1,1361,-311156.31,0,0,925.40308 -1816,2219,4084,4085,-9,-9,1,1,1,46,1,0,0,0,3,-9,2,1,0,0,4,8.1111002,8.3252993,0,1,0,-9,4,0,16,46.852425,0,0,0,30,2,3,1,2,2,2019,1,2,6,0,45,43,15,1,0,1,0,9.0240345,9.0240345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.759998,54.509998,30.940001,61.650002,7,1,1,0,0,4,4,1,235,451323.16,0,0,1532.5634 -1816,2219,4085,4084,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,7.426187,7.4546437,0,1,0,-9,4,0,-16,53.78751,0,0,1,46,3,4,1,-9,-9,2019,1,1,11,0,20,20,15,1,0,1,0,6.8520503,6.8520503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.940001,61.650002,57.759998,54.509998,6,1,1,0,0,4,4,1,235,451323.16,0,0,1532.5634 -1817,2220,4086,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,5,0,6.1093645,5.8407969,3,0,-9,0,1,0,-1071.8326,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0132122,6.0396271,12.501252,3,48.369999,61.889999,-9,-9,4,1,1,0,0,9,2,1,2827,243378.02,0,0,1122.0996 -1818,2221,4087,-9,-9,-9,1,1,1,21,2,0,0,1,2,-9,7,2,0,0,3,7.5385714,7.0408716,0,3,0,-9,0,-9,0,-1048.9758,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7521562,0,0,0,54.369999,54.799999,-9,-9,6,2,3,0,0,9,2,1,868,75779.625,0,0,-1039.4031 -1819,2222,4088,4089,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,0,4,0,7.9742317,7.6254582,1,0,-9,11,0,18,-105.74315,0,0,0,40,3,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.1713238,7.5755973,9.378191,3,57.16,56.150002,56.700001,30.57,6,2,3,0,0,2,3,1,873.5,254098.53,0,0,1654.7766 -1819,2222,4089,4088,-9,-9,2,1,0,40,1,0,0,0,3,-9,2,1,0,0,3,6.9578242,6.9093709,0,1,0,-9,11,0,-18,-6.3990188,0,0,1,58,2,4,3,3,3,2019,2,1,9,0,16,16,15,1,0,4,0,8.0041132,8.0041132,0,0,0,0,0,0,0,7,0,0,0,0,0,8.5906887,3,56.700001,30.57,57.16,56.150002,6,2,3,0,0,2,3,1,873.5,254098.53,0,0,1654.7766 -1820,2223,4090,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,0,3,6.0959663,7.1279979,6.6364884,3,0,0,0,-9,0,-923.84833,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,2,8,8,15,1,0,-9,0,7.9869356,7.9869356,1,0,0,6.2032695,0,0,0,0,1,1,0,3.4978371,6.8948622,0,0,52.049999,26.5,-9,-9,6,1,1,0,0,6,3,1,1245,336408.59,0,0,1705.1097 -1821,2224,4091,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,0,2,0,7.7925262,7.8655095,3,0,0,0,-9,0,-927.84766,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,2,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1179094,8.1465244,0,0,60.689999,39.98,-9,-9,6,1,1,0,0,7,4,1,875,2015774,0,0,2195.3872 -1822,2225,4092,-9,4093,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,0,5,6.4846034,6.4158645,0,4,0,0,0,-9,0,-1045.3918,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.369999,42.380001,-9,-9,7,3,4,0,0,8,2,0,1000.6667,-105982.63,0,0,2243.896 -1822,2225,4093,-9,-9,-9,1,1,0,47,2,0,2,0,3,-9,2,1,0,0,4,7.0358605,7.4131918,0,4,0,0,0,-9,0,-880.14722,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,16,16,15,1,0,-9,0,10.013544,10.013544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,3,4,0,1,8,2,0,1000.6667,-105982.63,0,0,2243.896 -1822,2225,4094,-9,4093,-9,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-913.34302,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,3,4,0,0,8,2,0,1000.6667,-105982.63,0,0,2243.896 -1823,2226,4095,-9,4098,-9,2,1,0,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.7749,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,2,0,969.25,-6688.375,0,0,2429.0259 -1823,2226,4096,-9,4098,-9,3,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.67377,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,969.25,-6688.375,0,0,2429.0259 -1823,2226,4097,-9,4098,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-985.6651,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,969.25,-6688.375,0,0,2429.0259 -1823,2226,4098,-9,-9,-9,1,1,0,32,2,1,3,0,2,-9,2,1,0,0,4,6.7845125,7.008925,5.9617472,4,0,0,0,-9,0,-1003.6296,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,31,0,15,1,0,-9,0,4.6436486,4.6436486,0,0,0,0,0,0,0,7,1,1,0,6.3706732,0,0,3,27.809999,65.690002,-9,-9,4,1,1,0,0,2,2,0,969.25,-6688.375,0,0,2429.0259 -1824,2227,4099,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,8.0745573,8.2740211,0,3,0,0,0,-9,0,-983.91968,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,0,8.2425117,8.2425117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.369999,40.209999,-9,-9,5,1,1,0,0,12,4,1,949,-51745.563,0,0,1409.1589 -1825,2228,4100,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,1,0,6.1690812,6.6174679,3,0,0,0,-9,0,-1010.4229,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7364101,0,0,21.09,35.040001,-9,-9,2,1,1,0,0,8,2,1,182,715186.19,0,0,1336.9803 -1825,2229,4101,-9,4100,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,7.8101606,7.6002979,0,3,0,0,0,-9,0,-1134.9858,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,48,40,15,1,0,-9,1,6.8005848,6.8005848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,8,3,1,899,-73772.438,0,0,1009.6376 -1825,2230,4102,-9,4100,-9,3,1,1,27,3,0,0,0,2,-9,2,1,0,0,4,7.5991678,7.7284312,0,3,0,0,0,-9,0,-1017.0398,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,30,45,15,1,0,-9,1,7.5417981,7.5417981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,8,3,1,1852,-31724.756,0,0,799.00714 -1826,2231,4103,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,3.50598,3.4271698,3,0,0,0,-9,0,-1011.1682,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,3.5691507,6.5217333,3,57.639999,35.360001,-9,-9,6,1,1,0,0,7,2,0,280,655280.19,0,0,256.15723 -1827,2232,4104,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,7.0589981,7.436594,3,0,0,0,-9,0,-998.34534,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,1,0,0,13.107265,0,0,0,0,1,1,0,0,7.0418277,0,0,39.939999,34.349998,-9,-9,5,1,1,0,0,5,3,1,703,481284.56,0,0,2283.5151 -1828,2233,4105,4106,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,41,0,-2,5.6497283,0,0,0,60,3,3,1,3,3,2019,1,1,13,1,0,41,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5977645,0,0,0,54.689999,39.970001,44.450001,47.380001,6,1,1,0,0,2,2,1,843.5,-5404.8594,0,0,908.4325 -1828,2233,4106,4105,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,6.6973729,6.5827928,0,1,0,-9,42,0,2,13.332353,0,0,0,58,2,2,1,3,3,2019,1,2,11,0,3,15,15,1,0,1,0,27.042908,27.042908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.450001,47.380001,54.689999,39.970001,6,1,1,0,0,2,2,1,843.5,-5404.8594,0,0,908.4325 -1829,2234,4107,4108,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,3,7.6534591,7.6091785,0,1,0,-9,5,0,0,-135.46812,0,1,1,25,2,5,1,-9,-9,2019,1,2,15,3,36,38,15,1,0,1,0,6.6195035,6.6195035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.330002,59.23,43.630001,61.310001,5,1,1,0,0,10,4,0,1442,-609.35938,0,0,2204.7925 -1829,2234,4108,4107,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,5,8.1336155,8.3467464,0,1,0,-9,5,0,0,-8.6873007,0,1,0,25,1,3,1,-9,-9,2019,1,1,6,0,42,38,15,1,0,1,0,10.221167,10.221167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.630001,61.310001,36.330002,59.23,6,1,1,0,0,10,4,0,1442,-609.35938,0,0,2204.7925 -1830,2235,4109,4110,-9,-9,1,1,0,21,1,0,0,0,2,0,7,2,0,0,4,6.4795051,6.5307641,0,1,0,-9,2,0,0,13.39451,-9,1,1,21,2,4,1,-9,-9,2019,3,2,13,4,12,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28,65.779999,59.529999,56.439999,6,1,1,0,1,5,3,0,777.5,-44395.25,0,0,1882.2324 -1830,2235,4110,4109,-9,-9,2,1,1,21,1,0,0,0,2,-9,2,1,0,0,4,7.5054007,7.8230882,0,1,0,-9,2,0,0,-12.58622,0,1,0,21,2,4,2,-9,-9,2019,2,1,4,0,41,40,15,1,0,2,0,5.7645726,5.7645726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,28,65.779999,7,1,1,0,0,5,3,0,777.5,-44395.25,0,0,1882.2324 -1831,2236,4111,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,1,1,0,0,4,5.1543908,4.9277129,0,3,0,0,0,-9,0,-977.8418,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,8,0,30,0,15,1,0,-9,0,.57700557,.57700557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,0,10,2,0,1764,169086.42,0,0,-311.11325 -1832,2237,4112,4113,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,8.8679581,9.0740032,0,1,0,-9,30,0,-3,-69.999603,0,0,0,54,2,5,1,2,3,2019,1,1,10,0,42,40,15,1,0,1,0,18.038507,18.038507,0,0,0,0,0,0,0,0,0,0,0,3.2387996,0,0,0,49.73,53.970001,64.959999,43.189999,6,1,1,0,0,12,5,1,598.5,625342.88,0,0,5066.6816 -1832,2237,4113,4112,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,5,9.1999922,9.431675,0,1,0,-9,30,0,3,-80.398033,0,0,0,51,2,4,1,3,3,2019,1,2,9,0,94,70,15,1,0,1,0,13.106371,13.106371,0,0,0,0,0,0,0,14.5,0,0,0,2.9650471,0,11.216473,3,64.959999,43.189999,49.73,53.970001,7,1,1,0,0,12,5,1,598.5,625342.88,0,0,5066.6816 -1833,2238,4114,4116,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,0,4,8.7099485,9.0300341,0,2,0,-9,15,0,9,24.930128,0,0,0,44,1,4,1,2,1,2019,1,2,11,0,37,37,15,1,0,1,0,20.370911,20.370911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.330002,51.02,54.200001,57.490002,6,2,3,0,0,8,4,0,667.75,538428.75,0,0,2396.3784 -1833,2238,4115,-9,4116,4114,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.6628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,4,0,667.75,538428.75,0,0,2396.3784 -1833,2238,4116,4114,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,15,0,0,-46.601513,-9,0,1,53,1,4,1,3,2,2019,1,1,12,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.849488,0,0,0,54.200001,57.490002,56.330002,51.02,6,2,3,0,0,8,4,0,667.75,538428.75,0,0,2396.3784 -1833,2238,4117,-9,4116,4114,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-949.80536,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,8,4,0,667.75,538428.75,0,0,2396.3784 -1834,2239,4118,4119,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,0,3,6.9701333,6.7163754,0,1,0,-9,35,0,0,41.612049,0,0,0,54,2,3,1,3,3,2019,1,2,15,3,47,45,15,1,0,1,0,2.3005209,2.3005209,0,0,0,0,0,0,0,0,0,0,0,4.7942634,0,0,0,44.98,55.139999,52,54.509998,5,1,1,0,0,7,4,1,1825,441850.28,0,0,2938.697 -1834,2239,4119,4118,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.5883856,8.6143427,0,1,0,-9,35,0,0,-87.976227,0,0,0,54,3,3,1,3,2,2019,1,1,10,0,37,37,15,1,0,1,0,15.219534,15.219534,0,0,0,0,0,0,0,0,0,0,0,7.1759491,0,0,0,52,54.509998,44.98,55.139999,6,1,1,0,0,7,4,1,1825,441850.28,0,0,2938.697 -1835,2240,4120,4121,-9,-9,2,1,0,62,1,0,0,0,3,-9,8,3,1,1,2,0,6.3667355,6.2851882,1,0,-9,8,0,1,-194.04024,0,0,0,61,3,2,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3398156,6.1587796,0,0,53.970001,19.68,45.419998,40.27,5,1,1,0,0,12,4,1,399.5,1248260.8,0,0,2955.5391 -1835,2240,4121,4120,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,0,2,8.1025667,8.1842546,0,1,0,-9,8,0,-1,-28.728067,0,0,0,62,3,2,3,3,3,2019,2,2,12,0,39,40,15,1,0,3,0,11.252684,11.252684,0,0,0,0,0,0,0,7,1,1,0,1.0327208,0,3.6024673,1,45.419998,40.27,53.970001,19.68,4,1,1,0,0,12,4,1,399.5,1248260.8,0,0,2955.5391 -1836,2241,4122,4123,-9,-9,3,1,1,45,1,0,0,0,2,-9,2,1,0,0,3,8.6460123,8.6038103,0,1,0,-9,9,0,-4,1.393182,0,0,0,49,2,3,1,-9,-9,2019,1,1,11,0,48,53,15,1,0,1,0,14.988182,14.988182,0,0,0,0,0,0,0,0,0,0,0,.078476079,0,0,0,48,51,47,50,7,1,1,0,0,9,5,1,395,459642.47,0,0,3901.1216 -1836,2241,4123,4122,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.8138094,8.5608683,0,1,0,-9,9,0,4,-55.242252,0,0,0,45,2,3,1,-9,-9,2019,1,3,9,0,67,46,15,1,0,1,0,8.210268,8.210268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,48,51,7,1,1,0,0,9,5,1,395,459642.47,0,0,3901.1216 -1836,2242,4124,-9,4123,4122,2,1,1,19,2,0,0,0,2,-9,2,1,0,0,5,8.1220255,8.0559072,0,3,0,0,0,-9,0,-1145.9119,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,25,60,15,1,0,-9,1,9.644681,9.644681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,9,4,1,575,31128.199,0,0,377.09442 -1836,2243,4125,-9,4123,4122,4,1,0,18,2,0,0,0,2,1,2,1,0,0,5,7.3537345,7.0203958,0,3,0,0,0,-9,0,-956.13654,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,1,0,32,0,15,1,0,-9,1,5.4663181,5.4663181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,7,1,1,0,0,9,3,1,223,-16769.354,0,0,1285.2325 -1837,2244,4126,4127,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,0,1,0,7.1190782,6.9728594,1,0,-9,41,0,-8,-10.817657,0,0,0,70,1,4,3,3,2,2019,4,2,25,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0995026,0,0,35.459999,16.379999,54.200001,57.490002,2,1,1,0,0,7,4,1,1621,1707619.8,0,0,2960.5715 -1837,2244,4127,4126,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.219739,8.1527109,1,0,-9,41,0,8,-6.0001693,0,0,0,62,1,1,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.845417,8.2188959,0,0,54.200001,57.490002,35.459999,16.379999,6,1,1,0,0,7,4,1,1621,1707619.8,0,0,2960.5715 -1838,2245,4128,4130,-9,-9,2,1,1,46,1,1,2,0,2,-9,2,1,0,0,5,8.7034998,8.7856417,0,2,0,-9,22,0,4,82.762611,0,0,0,42,2,5,1,2,2,2019,1,1,3,0,43,51,15,1,0,1,0,15.909532,15.909532,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.602139,3,58.049999,54.52,57.060001,57.759998,6,1,1,0,0,5,4,1,866,286197.94,0,0,4288.9902 -1838,2245,4129,-9,4130,4128,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.9573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,866,286197.94,0,0,4288.9902 -1838,2245,4130,4128,-9,-9,1,1,0,42,1,1,2,0,2,-9,2,1,0,1,5,7.8900232,8.2800827,0,2,0,-9,22,0,-4,-121.44602,0,0,1,46,2,5,1,2,2,2019,1,2,8,0,23,21,15,1,0,1,0,16.081644,16.081644,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.679466,3,57.060001,57.759998,58.049999,54.52,6,1,1,0,0,5,4,1,866,286197.94,0,0,4288.9902 -1839,2246,4131,-9,4132,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.75659,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,4,3,0,703.33331,-48312.121,0,0,2685.2378 -1839,2246,4132,-9,-9,-9,1,1,0,29,2,0,2,0,1,-9,2,1,0,0,4,7.9783716,8.0488691,5.9164786,4,0,0,0,-9,0,-1022.6319,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,39,33,15,1,0,-9,0,7.628015,7.628015,0,0,0,0,0,0,0,0,1,1,0,6.6816988,0,0,0,41.34,59.43,-9,-9,3,4,2,0,0,4,3,0,703.33331,-48312.121,0,0,2685.2378 -1839,2246,4133,-9,4132,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1214.2927,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,4,3,0,703.33331,-48312.121,0,0,2685.2378 -1840,2247,4134,-9,4137,4135,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.9257,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,867,255662.05,0,0,2386.9038 -1840,2247,4135,4137,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,0,2,8.4832354,8.7385368,0,2,0,-9,20,0,8,15.998185,0,0,0,37,2,1,3,2,2,2019,2,1,11,0,41,41,15,1,0,3,0,18.897078,18.897078,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.431244,3,43.84,47.84,53.720001,39.27,5,1,1,0,0,10,4,1,867,255662.05,0,0,2386.9038 -1840,2247,4136,-9,4137,4135,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.6986,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,1,867,255662.05,0,0,2386.9038 -1840,2247,4137,4135,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,20,0,-8,-46.654259,0,0,1,45,2,2,1,-9,-9,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,131.1053,3,53.720001,39.27,43.84,47.84,6,1,1,0,0,10,4,1,867,255662.05,0,0,2386.9038 -1840,2247,4138,-9,4137,4135,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.80713,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,4,1,867,255662.05,0,0,2386.9038 -1841,2248,4139,-9,4141,4140,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.31445,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,870.66669,191067.14,0,0,3030.5396 -1841,2248,4140,4141,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,0,3,8.430603,8.4906836,0,2,0,-9,7,0,3,21.648708,0,0,0,29,1,4,1,-9,-9,2019,1,1,11,3,48,64,15,1,0,1,0,10.166129,10.166129,0,0,0,0,0,0,0,0,1,1,0,1.6395425,0,0,0,37.259998,57.360001,49.349998,59.639999,5,1,1,0,0,5,4,1,870.66669,191067.14,0,0,3030.5396 -1841,2248,4141,4140,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,0,4,8.2389975,8.1745768,0,2,0,-9,7,0,-3,-68.989616,0,1,1,32,1,3,1,3,3,2019,1,2,8,1,32,32,15,1,0,1,0,13.904408,13.904408,0,0,0,0,0,0,0,0,1,1,0,2.5447693,0,0,0,49.349998,59.639999,37.259998,57.360001,6,1,1,0,0,5,4,1,870.66669,191067.14,0,0,3030.5396 -1842,2249,4142,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,0,4,8.396987,8.0656452,0,3,0,0,0,-9,0,-1082.3082,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,39,39,15,1,0,-9,0,13.487479,13.487479,0,0,0,0,0,0,0,0,0,0,0,.77802867,0,0,0,44.610001,59.060001,-9,-9,4,1,1,0,0,9,5,1,589,582267.94,0,0,89.317146 -1843,2250,4143,4144,-9,-9,2,1,0,35,1,0,0,0,1,-9,7,2,0,0,5,8.0355368,8.1916399,0,1,0,-9,4,0,2,19.220058,1,0,1,33,1,5,2,-9,-9,2019,4,1,6,0,40,28,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1408105,0,0,0,57.060001,57.759998,57.060001,57.759998,6,2,3,0,0,9,5,0,687.5,197573.89,0,0,4440.3809 -1843,2250,4144,4143,-9,-9,1,1,1,33,1,0,0,0,1,-9,7,2,0,0,5,8.1848974,8.3279409,0,1,0,-9,4,0,-2,-138.73105,1,0,0,35,1,5,2,2,2,2019,4,2,6,0,38,38,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,9,5,0,687.5,197573.89,0,0,4440.3809 -1844,2251,4145,4146,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.3441157,6.2213521,1,0,-9,42,0,4,68.802208,0,0,0,62,3,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7848148,0,0,56.259998,53.709999,58.32,50.220001,6,2,3,0,0,2,3,1,822.5,567574.06,0,0,1407.3517 -1844,2251,4146,4145,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,3,7.8159785,7.8018012,0,1,0,-9,9,0,-4,-32.364891,0,0,0,66,2,4,3,-9,-9,2019,2,1,7,0,37,37,15,1,0,4,0,6.6607342,6.6607342,0,0,0,0,0,0,0,0,1,1,0,1.4900551,0,0,0,58.32,50.220001,56.259998,53.709999,6,2,3,0,0,2,3,1,822.5,567574.06,0,0,1407.3517 -1845,2252,4147,4148,-9,-9,1,1,1,35,1,1,1,0,2,-9,2,1,0,0,5,8.2083912,8.3238649,0,2,0,-9,12,0,6,25.079437,0,0,0,29,2,5,1,2,2,2019,1,2,24,12,47,45,15,1,1,1,0,9.5486078,9.5486078,0,0,0,0,0,0,0,0,1,1,0,3.3698184,0,0,0,35.75,66.169998,44.389999,63.400002,6,1,1,0,0,10,4,1,508.33334,397437.81,0,0,3102.0693 -1845,2252,4148,4147,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,5,8.047368,8.0432711,0,2,0,-9,12,0,-6,69.430939,0,1,1,35,2,5,1,2,2,2019,1,1,13,3,34,34,15,1,0,1,0,10.739488,10.739488,0,0,0,0,0,0,0,2,1,1,0,4.0831513,0,3.2196784,3,44.389999,63.400002,35.75,66.169998,5,1,1,0,0,10,4,1,508.33334,397437.81,0,0,3102.0693 -1845,2252,4149,-9,4148,4147,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.3655,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,508.33334,397437.81,0,0,3102.0693 -1846,2253,4150,-9,4151,4152,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.94153,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,0,581.33331,80290.336,0,0,2027.4537 -1846,2253,4151,4152,-9,-9,1,1,0,24,1,1,1,0,2,-9,2,1,0,0,5,7.805398,7.8638201,0,2,0,-9,4,0,-2,9.4376898,0,1,1,26,2,3,1,-9,-9,2019,1,2,8,1,40,40,15,1,0,1,0,6.2430425,6.2430425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,45.650002,42.439999,6,1,1,0,0,5,4,0,581.33331,80290.336,0,0,2027.4537 -1846,2253,4152,4151,-9,-9,2,1,1,26,1,1,1,0,2,-9,1,1,0,0,3,8.0009098,8.1868029,0,2,0,-9,4,0,2,137.60182,0,1,0,24,2,5,1,-9,-9,2019,1,1,28,8,52,49,15,1,1,1,0,7.2031054,7.2031054,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.650002,42.439999,51.73,58.82,4,1,1,0,0,5,4,0,581.33331,80290.336,0,0,2027.4537 -1847,2254,4153,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1050.4102,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.18,51.889999,-9,-9,3,1,1,0,1,8,1,0,570,0,0,0,1830.3562 -1848,2255,4154,4155,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,1,0,7.7922049,7.5604224,1,0,-9,16,0,6,-36.703712,0,0,0,73,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0424092,7.5998712,0,0,47.48,39.810001,52,54.509998,5,1,1,0,0,2,3,0,847,454382.06,0,0,2467.1143 -1848,2255,4155,4154,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.2728605,5.1789017,1,0,-9,16,0,-6,-78.889915,0,0,0,79,2,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5099854,5.0731483,117.84645,1,52,54.509998,47.48,39.810001,6,1,1,0,0,2,3,0,847,454382.06,0,0,2467.1143 -1849,2256,4156,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,4,8.2052164,8.3418055,0,3,0,0,0,-9,0,-936.83929,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,37,15,1,0,-9,0,12.560389,12.560389,0,0,0,0,0,0,0,0,0,0,0,.2476951,0,0,0,50,55,-9,-9,5,3,4,0,0,6,4,0,2141,232552.31,0,0,711.84808 -1850,2257,4157,-9,4159,-9,3,1,0,16,2,0,3,0,2,-9,3,2,0,0,3,0,0,0,4,0,0,0,-9,0,-944.1095,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.85,55.16,-9,-9,4,1,1,1,0,12,2,0,1917.5,271974.97,0,0,1359.0038 -1850,2257,4158,-9,4159,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-990.47101,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,0,1917.5,271974.97,0,0,1359.0038 -1850,2257,4159,-9,-9,-9,1,1,0,41,2,0,3,0,2,-9,2,1,0,0,3,7.0939455,7.2282271,0,4,0,0,0,-9,0,-920.14673,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,18,6,20,16,15,1,1,-9,0,7.5051861,7.5051861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,-9,-9,4,1,1,0,1,12,2,0,1917.5,271974.97,0,0,1359.0038 -1850,2257,4160,-9,4159,-9,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1059.6317,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,2,0,1917.5,271974.97,0,0,1359.0038 -1850,2258,4161,-9,4159,-9,2,1,0,19,2,0,3,0,2,-9,7,2,0,0,4,6.2236457,6.627666,0,3,0,0,0,-9,0,-915.49707,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,3,11,12,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.400002,60.75,-9,-9,6,1,1,0,0,12,2,0,498,21141.715,0,0,-931.47156 -1851,2259,4162,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,6.9124432,6.539412,3,0,0,0,-9,0,-992.27594,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5049469,6.6991572,0,0,41.650002,60.41,-9,-9,7,1,1,0,0,7,2,1,370,334746.84,0,0,944.60638 -1852,2260,4163,4165,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,0,4,8.8097706,8.5922289,0,2,0,-9,10,0,7,-18.754614,0,0,0,46,2,1,1,2,2,2019,1,1,7,0,40,60,15,1,0,1,0,16.387991,16.387991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.700001,52.349998,49.419998,2,1,1,0,0,2,3,1,431.5,316688.75,0,0,2309.8032 -1852,2260,4164,-9,4165,4163,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-950.67566,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,2,3,1,431.5,316688.75,0,0,2309.8032 -1852,2260,4165,4163,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,1,5.9661651,5.5735517,0,2,0,-9,10,0,-7,46.424454,0,0,0,53,1,4,1,3,2,2019,1,2,12,0,5,5,15,1,0,1,0,7.0391946,7.0391946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.349998,49.419998,44.02,60.700001,5,1,1,0,0,2,3,1,431.5,316688.75,0,0,2309.8032 -1852,2260,4166,-9,4165,4163,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.2551,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,431.5,316688.75,0,0,2309.8032 -1853,2261,4167,4170,-9,-9,3,1,1,36,1,0,2,0,2,-9,1,1,0,0,3,8.1644526,8.2660694,0,2,0,-9,8,0,0,28.931152,0,0,0,36,2,4,1,-9,-9,2019,1,1,23,9,55,50,15,1,1,1,0,6.7733607,6.7733607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,59.939999,41.299999,60.77,3,1,1,0,0,12,3,1,384.75,57275.137,0,0,2303.2256 -1853,2261,4168,-9,4170,4167,2,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.4907,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,3,1,384.75,57275.137,0,0,2303.2256 -1853,2261,4169,-9,4170,4167,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.10114,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,3,1,384.75,57275.137,0,0,2303.2256 -1853,2261,4170,4167,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,7.6132293,7.7612638,0,2,0,-9,8,0,0,15.717103,0,0,1,36,2,3,1,3,3,2019,1,3,13,1,18,18,15,1,0,1,0,10.840769,10.840769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,60.77,28.25,59.939999,5,1,1,0,0,12,3,1,384.75,57275.137,0,0,2303.2256 -1854,2262,4171,4172,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.5800972,7.714467,1,0,-9,50,0,5,.70748281,0,0,0,67,3,4,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4155016,0,0,45.610001,54.5,58.900002,45.740002,4,1,1,0,0,5,3,1,732,817982.25,0,0,1984.2262 -1854,2262,4172,4171,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,6.5601459,6.4029455,1,0,-9,50,0,-5,-102.89667,0,0,0,72,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7953832,6.4540873,0,0,58.900002,45.740002,45.610001,54.5,6,1,1,0,0,5,3,1,732,817982.25,0,0,1984.2262 -1855,2263,4173,4174,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,4,0,6.474514,6.415535,1,0,-9,28,0,2,58.582993,0,0,0,76,3,2,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.973732,6.4328041,0,0,44.529999,56.369999,55.77,27.120001,7,1,1,0,0,9,3,1,566,1006764,0,0,3143.6392 -1855,2263,4174,4173,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,7.6701212,7.5330372,1,0,-9,28,0,-2,17.485519,0,0,0,78,3,4,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9054232,7.738512,0,0,55.77,27.120001,44.529999,56.369999,6,1,1,0,0,9,3,1,566,1006764,0,0,3143.6392 -1856,2264,4175,4176,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,9.1130772,9.1753197,0,1,0,-9,30,0,2,-139.11496,0,0,0,53,1,4,1,-9,-9,2019,1,1,8,0,2,0,15,1,0,1,0,408.48434,408.48434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,54.200001,57.490002,6,1,1,0,0,2,5,1,817.5,3136967,0,0,6328.4492 -1856,2264,4176,4175,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,9.3986235,9.083374,0,1,0,-9,30,0,-2,-133.45485,0,0,0,55,1,3,1,-9,-9,2019,1,2,8,0,38,38,15,1,0,1,0,30.45392,30.45392,0,0,0,0,0,0,0,7,0,0,0,2.8343244,0,10.597841,3,54.200001,57.490002,52,54.509998,6,1,1,0,0,2,5,1,817.5,3136967,0,0,6328.4492 -1857,2265,4177,-9,4178,4179,4,1,0,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-979.51654,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,2,3,0,0,2,4,1,383,561824.5,0,0,2327.4653 -1857,2265,4178,4179,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,3,8.7437868,8.7071238,0,2,0,-9,21,0,0,-137.08664,0,0,1,50,3,3,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,18.047983,18.047983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,52,54.509998,6,2,3,0,0,2,4,1,383,561824.5,0,0,2327.4653 -1857,2265,4179,4178,-9,-9,2,1,1,50,1,0,1,0,3,-9,1,1,0,0,3,0,0,0,2,0,-9,21,0,9,138.22247,0,0,0,41,1,3,1,-9,-9,2019,1,1,8,0,20,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,54.959999,53.169998,2,2,3,0,0,2,4,1,383,561824.5,0,0,2327.4653 -1857,2266,4180,-9,4178,4179,3,1,1,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-969.76147,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,2,1,1,188,0,0,0,0 -1858,2267,4181,-9,4182,-9,8,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-917.53949,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,4,6,0,0,8,1,0,595,-42000.539,0,0,1121.1403 -1858,2267,4182,-9,-9,-9,6,1,0,22,2,0,2,0,1,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-909.59155,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.120001,63.98,-9,-9,5,2,3,1,0,8,1,0,595,-42000.539,0,0,1121.1403 -1859,2268,4183,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,5,7.8809156,8.3222437,3.7425482,3,0,0,0,-9,0,-1080.5115,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,37,15,1,0,-9,0,11.60873,11.60873,0,0,0,0,0,0,0,0,0,0,0,4.6922941,4.0677958,0,0,64.279999,40.77,-9,-9,6,1,1,0,0,9,4,1,160,717526.69,0,0,1769.8669 -1860,2269,4184,4185,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,0,4,0,6.9428291,7.0633698,1,0,-9,58,0,7,-23.031267,0,0,0,79,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1345186,7.0962267,0,0,57,50,63.169998,32.939999,6,1,1,0,0,10,2,1,969,532535.25,0,0,2263.9692 -1860,2269,4185,4184,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,1,3,0,5.8504691,5.8452077,1,0,-9,58,0,-7,-7.6147208,0,0,0,86,3,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8447766,0,0,63.169998,32.939999,57,50,3,1,1,0,0,10,2,1,969,532535.25,0,0,2263.9692 -1861,2270,4186,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,7.6140862,7.7764549,3,0,0,0,-9,0,-1123.8582,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.0407257,0,0,51.5,24.610001,-9,-9,5,1,1,0,0,9,3,1,381,1557028.8,0,0,744.70496 -1862,2271,4187,4188,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,52,0,-2,-127.38448,0,0,0,73,2,3,1,3,3,2019,3,1,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.029999,38.130001,61.279999,24.6,6,1,1,0,0,2,3,1,326.5,516283.31,0,0,2104.2661 -1862,2271,4188,4187,-9,-9,1,1,1,73,1,0,0,0,2,-9,1,1,0,0,3,6.4047585,7.6506486,7.5699592,1,0,-9,52,0,2,79.410957,0,0,0,71,3,2,3,3,3,2019,2,2,11,0,30,0,15,1,0,4,0,1.6759988,1.6759988,1,0,0,0,0,0,0,0,1,1,0,5.006731,7.5094767,0,0,61.279999,24.6,47.029999,38.130001,6,1,1,0,0,2,3,1,326.5,516283.31,0,0,2104.2661 -1863,2272,4189,4191,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,0,4,8.1133022,8.4678221,0,2,0,-9,18,0,0,-91.003716,0,0,0,50,2,2,1,-9,-9,2019,1,1,11,0,37,36,15,1,0,1,0,10.116543,10.116543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.959999,50.73,51.34,48.310001,5,1,1,0,0,13,4,1,504.33334,435807.09,0,0,3810.5559 -1863,2272,4190,-9,4189,4191,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1090.3655,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,13,4,1,504.33334,435807.09,0,0,3810.5559 -1863,2272,4191,4189,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,2,8.4359055,8.165019,0,2,0,-9,23,0,0,-103.64849,0,0,0,50,2,4,1,-9,-9,2019,1,2,7,0,37,37,15,1,0,1,0,15.696283,15.696283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.34,48.310001,53.959999,50.73,6,1,1,0,0,13,4,1,504.33334,435807.09,0,0,3810.5559 -1863,2273,4192,-9,4189,4191,3,1,0,18,2,0,2,0,2,1,97,3,0,0,3,6.9969163,7.035079,0,3,0,0,0,-9,0,-1156.2888,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,13,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.529999,51.549999,-9,-9,6,1,1,0,0,13,4,1,699,-27452.449,0,0,-352.48868 -1864,2274,4193,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,0,4,8.905673,9.577096,8.6468019,3,0,0,0,-9,0,-905.21051,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,15,15,15,1,0,-9,0,62.745014,62.745014,0,0,0,0,0,0,0,0,0,0,0,5.1599536,8.4948997,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,2,5,1,472,839205.31,0,0,6186.1826 -1865,2275,4194,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,0,2,8.2951689,8.3547029,0,3,0,0,0,-9,0,-987.26569,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,6,35,28,15,1,1,-9,0,15.538387,15.538387,0,0,0,0,0,0,0,0,0,0,0,2.8316948,0,0,0,43.84,47.84,-9,-9,5,1,1,0,0,6,5,0,175,61711.398,0,0,1297.826 -1866,2276,4195,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,2,0,7.2798743,7.5344834,3,0,0,0,-9,0,-958.07813,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5953388,7.6287737,0,0,55.209999,43.869999,-9,-9,6,1,1,0,0,13,3,0,645,162077.81,0,0,1738.1763 -1867,2277,4196,-9,-9,-9,1,1,0,33,2,0,3,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-872.11328,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.740002,16.459999,-9,-9,2,1,1,0,0,13,1,0,711,189965.88,0,0,2253.7998 -1867,2277,4197,-9,4196,-9,2,1,1,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-970.38293,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,13,1,0,711,189965.88,0,0,2253.7998 -1867,2277,4198,-9,4196,-9,4,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-834.91193,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,711,189965.88,0,0,2253.7998 -1868,2278,4199,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-930.29425,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.950001,41.689999,-9,-9,6,1,1,0,0,10,1,1,244,206495.25,0,0,384.22253 -1869,2279,4200,4201,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.6718249,7.526866,1,0,-9,3,0,-2,80.883728,0,0,0,76,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.979509,7.2522035,0,0,49.5,54.110001,47.77,33.459999,6,1,1,0,0,13,3,1,167,1187470.8,0,0,3212.271 -1869,2279,4201,4200,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,1,2,0,7.4923902,7.7523437,1,0,-9,3,0,2,-4.3340302,0,0,0,74,2,4,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,2.1324508,0,0,0,0,11.572082,0,1,1,0,2.6649513,7.6058745,0,0,47.77,33.459999,49.5,54.110001,4,1,1,0,0,13,3,1,167,1187470.8,0,0,3212.271 -1870,2280,4202,-9,4203,4204,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.68982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,1,4,1,1232.75,351276.78,0,0,4072.2522 -1870,2280,4203,4204,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,0,4,7.7922721,7.7815356,0,2,0,-9,16,0,-7,84.636581,0,0,1,47,2,4,1,2,3,2019,1,2,23,10,37,37,15,1,1,1,0,7.1450686,7.1450686,0,0,0,0,0,0,0,89,1,1,0,0,0,123.46719,3,36.759998,43.82,43.860001,55.299999,3,1,1,0,0,1,4,1,1232.75,351276.78,0,0,4072.2522 -1870,2280,4204,4203,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,1,4,8.2842741,8.3298321,0,2,0,-9,8,0,7,-47.396305,0,0,0,40,2,4,1,-9,-9,2019,1,1,11,0,37,41,15,1,0,1,0,13.581701,13.581701,0,0,0,0,0,0,0,89,1,1,0,0,0,115.39691,3,43.860001,55.299999,36.759998,43.82,5,1,1,0,0,1,4,1,1232.75,351276.78,0,0,4072.2522 -1870,2280,4205,-9,4203,4204,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.0652,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,1232.75,351276.78,0,0,4072.2522 -1871,2281,4206,-9,4207,4209,6,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.06921,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,659.66669,80735.016,0,0,2993.3779 -1871,2281,4207,4209,-9,-9,1,1,0,40,1,0,4,0,2,-9,2,1,0,0,3,7.2495651,7.2470851,0,2,0,-9,18,0,3,81.180252,0,0,1,37,2,4,1,2,3,2019,1,2,10,0,20,0,15,1,0,1,0,9.4945898,9.4945898,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.709999,56.91,42.599998,61.599998,4,1,1,0,0,13,3,1,659.66669,80735.016,0,0,2993.3779 -1871,2281,4208,-9,4207,4209,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1158.5385,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,659.66669,80735.016,0,0,2993.3779 -1871,2281,4209,4207,-9,-9,2,1,1,37,1,0,4,0,2,-9,2,1,0,0,4,8.1763639,7.9430718,0,2,0,-9,18,0,-3,-65.938042,0,0,0,40,2,3,1,2,2,2019,1,1,13,1,58,56,15,1,0,1,0,8.4876747,8.4876747,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.599998,61.599998,43.709999,56.91,3,1,1,0,0,13,3,1,659.66669,80735.016,0,0,2993.3779 -1871,2281,4210,-9,4207,4209,4,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.76965,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,659.66669,80735.016,0,0,2993.3779 -1871,2281,4211,-9,4207,4209,5,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.89569,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,659.66669,80735.016,0,0,2993.3779 -1872,2282,4212,4215,-9,-9,1,1,1,32,1,1,2,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,6,0,-3,0,0,0,0,35,1,4,3,3,3,2019,2,2,6,0,55,45,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,55.189999,54.259998,6,1,1,0,0,12,1,1,199.5,-29832.004,0,0,577.13428 -1872,2282,4213,-9,4215,4212,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.99615,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,12,1,1,199.5,-29832.004,0,0,577.13428 -1872,2282,4214,-9,4215,4212,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.8112,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,1,1,199.5,-29832.004,0,0,577.13428 -1872,2282,4215,4212,-9,-9,2,1,0,35,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,3,0,0,0,1,32,2,5,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,57.060001,57.759998,6,1,1,0,0,12,1,1,199.5,-29832.004,0,0,577.13428 -1873,2283,4216,4217,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,7.2724619,7.2370729,4.9046206,1,0,-9,35,0,1,82.019188,0,0,0,64,2,2,3,-9,-9,2019,2,1,8,0,10,0,15,1,0,4,0,12.345241,12.345241,0,0,0,0,0,0,0,0,1,1,0,3.2381029,5.3730044,0,0,57.16,56.150002,61.279999,35.650002,7,1,1,0,0,6,3,1,448.5,628294.13,0,0,2130.7456 -1873,2283,4217,4216,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,0,7.2639832,6.9520569,1,0,-9,35,0,-1,-53.793549,0,0,0,65,2,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4353309,0,0,61.279999,35.650002,57.16,56.150002,6,1,1,0,0,6,3,1,448.5,628294.13,0,0,2130.7456 -1874,2284,4218,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,5.026412,7.7129984,7.7968559,3,0,0,0,-9,0,-1072.6033,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3226132,8.003583,3.5261736,3,55.959999,49.93,-9,-9,2,1,1,0,0,9,3,1,1331,903611.44,0,0,1529.7603 -1875,2285,4219,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,0,3,0,6.3582091,6.9386892,3,0,0,0,-9,0,-1086.8741,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0628824,5.0550032,0,0,50.169998,53.950001,-9,-9,6,1,1,0,0,6,2,1,1202,619715.56,0,0,1164.6719 -1876,2286,4220,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.9624739,7.9278393,3,0,0,0,-9,0,-1151.8739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8178158,0,0,57.900002,51.84,-9,-9,6,1,1,0,0,11,3,0,452,101188.05,0,0,2276.4595 -1877,2287,4221,4222,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,9,0,0,0,0,69,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,1,8.8264465,15.874717,0,0,0,44.769081,0,1,1,0,0,0,0,0,38.990002,39.259998,48.459999,30.360001,4,1,1,0,0,13,1,1,619,-76325.672,0,0,546.62524 -1877,2287,4222,4221,-9,-9,2,1,0,69,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,6,0,0,0,0,0,0,78,3,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,1.0376488,2,48.459999,30.360001,38.990002,39.259998,5,1,1,0,0,13,1,1,619,-76325.672,0,0,546.62524 -1878,2288,4223,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,3,3,0,1,4,0,0,0,3,0,-9,0,-9,0,-1000.1004,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,6,1,1,1,0,13,1,0,707,186877.03,0,0,625.89569 -1879,2289,4224,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1002.5949,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.619999,60.23,-9,-9,3,1,1,1,0,6,1,1,2227,-9734.8291,0,0,1054.6432 -1880,2290,4225,4226,-9,-9,1,1,0,72,1,0,0,0,2,-9,2,1,0,0,3,6.776114,7.0841174,5.1269245,1,0,-9,9,0,-4,-24.262617,0,0,0,76,1,3,1,2,2,2019,1,2,11,1,8,8,15,1,0,1,0,11.224382,11.224382,1,0,0,0,0,0,0,0,1,1,0,0,5.2578969,0,0,50,47,52,47,5,3,4,0,0,8,5,1,292.5,2334080,0,0,5353.5947 -1880,2290,4226,4225,-9,-9,2,1,1,76,1,0,0,0,1,-9,2,1,0,0,3,8.0761776,8.4796047,7.5227127,1,0,-9,9,0,4,84.555077,0,0,0,72,2,3,1,-9,-9,2019,1,1,10,1,0,22,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0197878,7.6210241,0,0,52,47,50,47,5,3,4,0,0,8,5,1,292.5,2334080,0,0,5353.5947 -1881,2291,4227,4228,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,0,5,8.571703,8.5969687,6.7836809,1,0,-9,4,0,11,132.69247,0,0,0,55,2,4,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,20.355259,20.355259,0,0,0,0,0,0,0,0,1,1,0,7.0893116,6.491416,0,0,49.759998,56.93,52.07,48.830002,6,1,1,0,0,2,5,1,460.5,255258.91,0,0,6794.1748 -1881,2291,4228,4227,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.4728174,8.4585075,0,1,0,-9,4,0,-11,41.020767,-9,0,0,66,2,5,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,13.179462,13.179462,0,0,0,0,0,0,0,2,1,1,0,7.1942449,0,0,3,52.07,48.830002,49.759998,56.93,6,2,3,0,0,2,5,1,460.5,255258.91,0,0,6794.1748 -1881,2292,4229,-9,4227,-9,3,1,0,32,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-966.11835,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,2,1,1,1694,-54015.871,0,0,-276.01529 -1882,2293,4230,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,3,8.8915691,8.9530964,0,3,0,0,0,-9,0,-893.86786,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,37,42,15,1,0,-9,0,17.774096,17.774096,0,0,0,0,0,0,0,0,0,0,0,1.7529392,0,0,0,54.91,49,-9,-9,6,1,1,0,0,4,5,0,516,354144.84,0,0,2185.0137 -1882,2294,4231,-9,4230,-9,2,1,0,20,2,0,0,0,2,-9,3,3,0,0,4,7.2067504,6.8104682,0,3,0,0,0,-9,0,-988.51587,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,32,37,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,1,0,4,2,0,573,0,0,0,1581.4847 -1883,2295,4232,-9,4233,4234,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-883.1181,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,11,4,1,543,87343.625,0,0,2305.7227 -1883,2295,4233,4234,-9,-9,2,1,0,54,1,0,1,0,3,-9,2,1,0,0,3,7.2535853,7.5206771,0,2,0,-9,9,0,1,-8.8149786,0,0,0,53,3,3,1,3,3,2019,1,1,21,9,25,20,15,1,1,1,0,7.3702941,7.3702941,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.029999,55.700001,35.889999,56.790001,4,1,1,0,0,11,4,1,543,87343.625,0,0,2305.7227 -1883,2295,4234,4233,-9,-9,1,1,1,53,1,0,1,0,3,-9,1,1,0,0,3,8.5302572,8.5729332,0,2,0,-9,9,0,-1,-25.269621,0,0,0,54,3,3,1,2,2,2019,1,2,11,2,50,60,15,1,0,1,0,9.5151482,9.5151482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.889999,56.790001,32.029999,55.700001,5,1,1,0,0,11,4,1,543,87343.625,0,0,2305.7227 -1884,2296,4235,-9,-9,-9,1,1,1,34,3,0,2,0,1,-9,2,1,0,0,3,8.5756016,8.2262564,0,4,0,-9,0,1,0,-882.80402,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,46,40,15,1,0,-9,0,11.58387,11.58387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,-9,-9,4,1,1,0,0,2,4,1,552.66669,-16445.527,0,0,2299.2148 -1884,2296,4236,-9,-9,4235,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.44684,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,552.66669,-16445.527,0,0,2299.2148 -1884,2296,4237,-9,-9,4235,2,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-950.83435,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,552.66669,-16445.527,0,0,2299.2148 -1885,2297,4238,-9,4239,4240,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.20746,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,5,2,3,0,0,8,2,0,314.66666,263080.31,0,0,2185.0098 -1885,2297,4239,4240,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-6,-119.6861,0,0,1,45,3,4,1,3,2,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,5,2,3,0,0,8,2,0,314.66666,263080.31,0,0,2185.0098 -1885,2297,4240,4239,-9,-9,2,1,1,45,1,0,3,0,3,-9,2,1,0,0,4,6.8590579,6.7079439,0,2,0,-9,20,0,6,-14.997866,0,0,0,39,2,4,3,3,3,2019,2,1,9,1,25,35,15,1,0,3,0,3.8608158,3.8608158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,55,5,2,3,0,0,8,2,0,314.66666,263080.31,0,0,2185.0098 -1886,2298,4241,4242,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.6798277,7.6602788,0,1,0,-9,17,0,-1,-91.777908,0,0,0,56,2,4,1,3,3,2019,1,1,12,0,36,36,15,1,0,1,0,8.7014093,8.7014093,0,0,0,0,0,0,0,0,0,0,0,3.7347164,0,0,0,49.200001,47.5,55.91,47.110001,5,1,1,0,0,6,5,1,620.5,195613.08,0,0,3925.6323 -1886,2298,4242,4241,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,9.4027672,9.1794939,0,1,0,-9,30,0,1,82.214401,0,0,0,55,2,3,1,3,3,2019,1,2,8,0,55,45,15,1,0,1,0,18.564556,18.564556,0,0,0,0,0,0,0,0,0,0,0,4.8659358,0,0,0,55.91,47.110001,49.200001,47.5,4,1,1,0,0,6,5,1,620.5,195613.08,0,0,3925.6323 -1887,2299,4243,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-907.20477,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,55,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,1,1,2,1,0,537,193734.45,0,0,862.0694 -1888,2300,4244,4247,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,0,3,8.6796408,8.2401533,0,2,0,-9,8,0,0,-28.589949,0,0,0,47,1,5,1,-9,3,2019,1,1,11,0,40,48,15,1,0,1,0,12.356318,12.356318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,55.060001,51.73,58.82,5,1,1,0,0,7,4,1,1010,330843.34,0,0,4525.0039 -1888,2300,4245,-9,4247,4244,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.8419,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,1010,330843.34,0,0,4525.0039 -1888,2300,4246,-9,4247,4244,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.9492,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,1010,330843.34,0,0,4525.0039 -1888,2300,4247,4244,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,0,5,8.5636005,9.0008402,6.0716987,2,0,-9,8,0,0,-192.58694,0,0,0,47,2,3,1,2,1,2019,1,2,6,0,40,35,15,1,0,1,0,20.978489,20.978489,0,0,0,0,0,0,0,0,1,1,0,7.08565,0,0,0,51.73,58.82,47.549999,55.060001,6,1,1,0,0,7,4,1,1010,330843.34,0,0,4525.0039 -1888,2300,4248,-9,4247,4244,3,1,0,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.98071,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0455973,0,0,0,38.34,62.119999,-9,-9,6,1,1,0,0,7,4,1,1010,330843.34,0,0,4525.0039 -1889,2301,4249,4250,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,7.9993763,8.107233,6.7101536,1,0,-9,4,0,0,85.428925,0,0,0,56,1,4,1,-9,-9,2019,1,1,9,0,32,30,15,1,0,1,0,8.498065,8.498065,0,0,0,0,0,0,0,0,0,0,0,0,6.7932839,0,0,57.16,56.150002,54.209999,49.459999,7,1,1,0,0,4,4,1,1578.5,476876.94,0,0,1878.5698 -1889,2301,4250,4249,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,7.3004193,7.9210787,6.6836152,1,0,-9,4,0,0,-45.910782,0,0,0,56,3,4,1,3,2,2019,1,2,10,0,16,4,15,1,0,1,0,10.934847,10.934847,0,0,0,0,0,0,0,0,0,0,0,0,7.0870023,0,0,54.209999,49.459999,57.16,56.150002,5,1,1,0,0,4,4,1,1578.5,476876.94,0,0,1878.5698 -1890,2302,4251,4252,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.4540982,7.6091809,1,0,-9,7,0,2,-45.78075,-9,0,0,72,2,2,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9191895,7.5210371,0,0,53,46,57.52,26.309999,6,1,1,0,0,9,3,1,516,794727.38,0,0,2329.6143 -1890,2302,4252,4251,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.1657729,6.9562597,1,0,-9,51,0,-2,-70.61499,0,0,0,74,3,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.9685884,0,0,57.52,26.309999,53,46,5,1,1,0,0,9,3,1,516,794727.38,0,0,2329.6143 -1891,2303,4253,4254,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,5.7787995,5.6314783,1,0,-9,8,0,1,30.938309,0,0,0,72,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3249917,5.6442966,0,0,57.919998,51.82,46.080002,57.200001,7,1,1,0,0,2,2,1,3106,96725.203,0,0,1817.1718 -1891,2303,4254,4253,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,5.9886208,5.9857812,1,0,-9,8,0,-1,147.57735,0,0,0,73,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8723683,5.9442372,0,0,46.080002,57.200001,57.919998,51.82,6,1,1,0,0,2,2,1,3106,96725.203,0,0,1817.1718 -1892,2304,4255,4256,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.6663656,8.7743044,0,1,0,-9,1,-9,-1,-11.960854,-9,0,0,50,1,4,1,-9,-9,2019,1,1,10,1,35,0,15,1,0,1,0,20.222809,20.222809,0,0,0,0,0,0,0,0,0,0,0,4.0631456,0,0,0,50,55,57.16,56.150002,6,4,1,0,0,9,5,0,370,1580758.3,0,0,4409.2695 -1892,2304,4256,4255,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,9.1472893,9.4525318,0,1,0,1,1,-9,1,163.48196,0,0,0,49,1,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,27.576071,27.576071,0,0,0,0,0,0,0,0,0,0,0,6.591516,0,0,0,57.16,56.150002,50,55,6,1,1,0,0,9,5,0,370,1580758.3,0,0,4409.2695 -1893,2305,4257,4258,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,7.9431152,7.9599643,1,0,-9,9,0,-6,-92.978432,0,0,0,80,2,4,3,3,2,2019,4,1,16,4,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.311379,8.0584278,0,0,45.529999,52.349998,53.779999,53.580002,6,1,1,0,0,10,4,1,1633,1343661.3,0,0,4948.9873 -1893,2305,4258,4257,-9,-9,1,1,0,80,1,0,0,0,2,-9,6,3,0,0,4,0,7.4951725,7.12854,1,0,-9,9,0,6,-41.128948,0,0,0,74,2,2,3,2,1,2019,4,2,9,0,0,0,15,3,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1017051,7.509644,0,0,53.779999,53.580002,45.529999,52.349998,6,1,1,0,0,10,4,1,1633,1343661.3,0,0,4948.9873 -1894,2306,4259,4260,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,1,3,0,7.1776781,6.7776031,1,0,-9,7,0,-5,21.173574,0,0,0,61,2,1,1,-9,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8452048,0,0,47.759998,42.619999,42.34,25.5,5,1,1,0,0,1,3,1,337,298172.38,0,0,1735.8231 -1894,2306,4260,4259,-9,-9,2,1,0,61,1,0,0,0,2,-9,1,1,0,0,1,0,6.9287357,6.9360518,1,0,-9,7,0,5,-29.761936,0,0,0,56,2,3,3,-9,-9,2019,2,1,12,0,0,36,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6472883,0,0,42.34,25.5,47.759998,42.619999,5,1,1,0,0,1,3,1,337,298172.38,0,0,1735.8231 -1895,2307,4261,4262,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.3962917,8.3555002,6.3041081,1,0,-9,9,0,-4,-59.004555,0,0,0,64,2,2,1,2,2,2019,1,1,8,0,38,38,15,1,0,1,0,15.396661,15.396661,0,0,0,0,0,0,0,0,0,0,0,6.0234871,6.4917641,0,0,52.990002,51.279999,53.650002,40.689999,6,1,1,0,0,10,5,1,2739,1764151.6,0,0,2852.4277 -1895,2307,4262,4261,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,7.6749883,8.2006626,5.4761834,1,0,-9,9,0,4,44.950783,0,0,0,60,2,3,1,3,2,2019,1,2,7,0,30,30,15,1,0,1,0,10.798499,10.798499,0,0,0,0,0,0,0,0,0,0,0,5.9165421,5.9920835,0,0,53.650002,40.689999,52.990002,51.279999,5,1,1,0,0,10,5,1,2739,1764151.6,0,0,2852.4277 -1896,2308,4263,4264,-9,-9,3,1,0,27,1,0,0,0,2,0,7,2,0,0,4,0,0,0,1,0,-9,4,0,-6,1.298829,-9,1,1,33,1,3,1,-9,-9,2019,3,1,9,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8269348,3,52.82,53.970001,37.360001,54.650002,5,2,3,0,0,8,5,0,823.5,203849.56,0,0,5023.2207 -1896,2308,4264,4263,4265,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,3,9.2422647,9.0765562,0,1,0,-9,4,0,6,53.995094,0,0,0,27,2,4,2,3,2,2019,2,3,19,7,41,45,15,1,1,2,0,26.272694,26.272694,0,0,0,0,0,0,0,0,1,1,0,7.7491479,0,0,0,37.360001,54.650002,52.82,53.970001,5,2,3,0,0,8,5,0,823.5,203849.56,0,0,5023.2207 -1896,2309,4265,-9,-9,-9,2,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-949.73535,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,8,1,0,112,372707.16,0,0,1439.9767 -1897,2310,4266,4267,-9,-9,2,1,1,69,1,0,1,0,2,-9,2,1,0,0,4,0,7.7514157,7.7791438,2,0,-9,9,0,5,48.915939,0,0,0,64,2,4,3,3,2,2019,2,1,13,1,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9724798,7.5794168,0,0,45.720001,55.84,52,52,6,1,1,0,0,11,3,1,410.5,650724.5,0,0,2511.2097 -1897,2310,4267,4266,-9,-9,1,1,0,64,1,0,1,0,2,-9,4,3,0,0,4,0,5.0186257,4.7220144,2,0,-9,9,0,-5,-94.851257,0,0,0,69,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7092376,4.9572892,4.5195112,3,52,52,45.720001,55.84,6,1,1,0,0,11,3,1,410.5,650724.5,0,0,2511.2097 -1897,2311,4268,-9,-9,4269,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1022.9574,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,4,1,1584.5,119593.62,0,0,1219.0632 -1897,2311,4269,-9,4267,4266,3,1,1,41,2,0,1,0,3,-9,2,1,0,0,3,8.1925802,7.914465,5.9846478,3,0,0,0,-9,0,-1003.5177,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,0,15,1,0,-9,1,7.2294307,7.2294307,0,0,0,0,0,0,0,0,1,1,0,5.4928145,0,0,0,57.330002,53.459999,-9,-9,4,1,1,0,0,11,4,1,1584.5,119593.62,0,0,1219.0632 -1898,2312,4270,-9,4272,-9,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1065.3159,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,1,1,0,0,7,2,0,366.66666,-104666.91,0,0,2027.7318 -1898,2312,4271,-9,4272,-9,2,1,0,17,2,0,1,0,2,-9,2,3,0,0,4,7.2515216,7.2915649,0,4,0,0,0,-9,0,-1011.3041,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,16,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.790001,52.619999,-9,-9,3,1,1,0,0,7,2,0,366.66666,-104666.91,0,0,2027.7318 -1898,2312,4272,-9,-9,-9,1,1,0,47,3,0,1,0,3,-9,6,3,0,0,2,0,5.7425909,5.7533889,4,0,0,0,-9,0,-999.97406,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,5.7601647,8.5738859,3,58.02,20.860001,-9,-9,4,1,1,0,1,7,2,0,366.66666,-104666.91,0,0,2027.7318 -1898,2313,4273,-9,4272,-9,4,1,1,22,2,0,1,0,2,-9,1,1,0,0,4,6.8016005,7.2400837,0,3,0,0,0,-9,0,-1060.2195,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,20,0,15,1,0,-9,1,5.8071151,5.8071151,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,7,2,0,1084,91618.477,0,0,2107.7866 -1899,2314,4274,4278,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,0,5,8.7646074,8.5572958,0,2,0,-9,3,0,1,13.781412,0,0,0,49,1,3,1,1,1,2019,1,5,7,0,38,38,15,1,0,1,0,21.622259,21.622259,0,0,0,0,0,0,0,0,0,0,0,6.922749,0,0,0,57.060001,57.759998,56.16,35.130001,6,1,1,0,0,9,4,1,1076.2,737863.56,0,0,5036.1362 -1899,2314,4275,-9,4278,4274,2,1,1,16,2,0,3,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1024.7794,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.0401363,0,0,0,40.669998,62.66,-9,-9,5,1,1,0,0,9,4,1,1076.2,737863.56,0,0,5036.1362 -1899,2314,4276,-9,4278,4274,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.93274,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,1076.2,737863.56,0,0,5036.1362 -1899,2314,4277,-9,4278,4274,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-980.80286,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,9,4,1,1076.2,737863.56,0,0,5036.1362 -1899,2314,4278,4274,-9,-9,5,1,0,49,1,0,3,0,1,-9,2,1,0,0,3,8.1107759,8.1630211,0,2,0,-9,3,0,-1,112.75306,0,0,0,50,1,5,1,-9,-9,2019,1,1,12,1,30,38,15,1,0,1,0,14.51553,14.51553,0,0,0,0,0,0,0,0,0,0,0,7.4119587,0,0,0,56.16,35.130001,57.060001,57.759998,5,1,1,0,0,9,4,1,1076.2,737863.56,0,0,5036.1362 -1900,2315,4279,4280,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,56,0,-2,56.418686,0,0,0,75,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5124624,0,0,0,57.16,56.150002,62.57,40.110001,7,1,1,0,0,6,2,1,1817,131467.31,0,0,740.7594 -1900,2315,4280,4279,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,6.5727787,6.753386,1,0,-9,56,0,2,63.513844,0,0,0,73,3,4,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.7858357,0,0,62.57,40.110001,57.16,56.150002,6,1,1,0,0,6,2,1,1817,131467.31,0,0,740.7594 -1901,2316,4281,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,0,4,8.0534849,8.0884075,0,3,0,0,0,-9,0,-1025.2389,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,40,39,15,1,0,-9,0,7.9352098,7.9352098,0,0,0,0,0,0,0,7,0,0,0,0,0,14.091388,3,22.540001,65.379997,-9,-9,3,1,1,0,1,11,3,0,403,112520.67,0,0,1293.2423 -1902,2317,4282,-9,-9,-9,1,1,0,73,2,0,0,0,1,-9,4,3,0,0,4,0,5.8062377,5.4515023,3,0,0,0,-9,0,-943.70947,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5428443,5.3806362,0,0,55.939999,47.09,-9,-9,6,3,4,0,0,8,2,1,1285,1288464.4,0,0,1638.0585 -1903,2318,4283,4286,-9,-9,2,1,0,47,1,0,3,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,24,0,-2,54.762028,0,0,0,49,2,3,1,3,3,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.099998,45.200001,33.91,54.450001,3,2,3,0,1,2,2,1,967.75,402702.5,0,0,1759.344 -1903,2318,4284,-9,4283,4286,5,1,1,15,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1029.2506,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,2,2,1,967.75,402702.5,0,0,1759.344 -1903,2318,4285,-9,4283,4286,6,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.0625,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,2,1,967.75,402702.5,0,0,1759.344 -1903,2318,4286,4283,-9,-9,1,1,1,49,1,0,3,0,2,-9,2,1,0,0,3,7.2539134,7.3812809,0,2,0,-9,24,0,2,-17.402239,0,0,0,47,3,2,3,3,3,2019,2,2,12,0,30,24,15,1,0,3,0,5.3952084,5.3952084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.91,54.450001,46.099998,45.200001,3,2,3,0,0,2,2,1,967.75,402702.5,0,0,1759.344 -1903,2319,4287,-9,4283,4286,3,1,1,20,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1005.3413,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.049999,-9,-9,3,2,3,0,0,2,1,1,357,0,0,0,968.56982 -1903,2320,4288,-9,4283,4286,4,1,1,18,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-951.17657,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.869999,-9,-9,6,2,3,0,0,2,2,1,1457,0,0,0,-239.76341 -1904,2321,4289,4290,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,0,4,8.7246332,8.6561232,0,1,0,-9,6,0,2,3.7228608,0,0,0,32,2,3,1,-9,-9,2019,1,1,13,1,44,55,15,1,0,1,0,11.34307,11.34307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.790001,44.639999,42.040001,26.65,5,1,1,0,0,4,5,1,276.5,94983.773,0,0,3819.1665 -1904,2321,4290,4289,-9,-9,1,1,0,32,1,0,0,0,2,-9,1,1,0,0,3,8.207159,8.1107473,0,1,0,-9,6,0,-2,-38.504532,0,0,1,34,2,4,1,-9,-9,2019,1,2,17,5,40,40,15,1,1,1,0,8.8076153,8.8076153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.040001,26.65,34.790001,44.639999,4,1,1,0,0,4,5,1,276.5,94983.773,0,0,3819.1665 -1905,2322,4291,4292,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,5,8.7013559,8.9367647,0,1,0,1,1,-9,-4,93.494179,0,0,1,41,1,5,1,2,1,2019,1,2,10,0,43,40,15,1,0,1,0,25.258366,25.258366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.380001,59.889999,57.060001,57.759998,6,1,1,0,0,8,5,1,1317,207538.03,0,0,7164.2822 -1905,2322,4292,4291,-9,-9,2,1,1,41,1,0,0,0,1,-9,2,1,0,0,5,9.0598059,9.0110178,0,1,0,-9,1,-9,4,-54.540066,-9,0,0,37,1,5,1,-9,-9,2019,1,1,3,0,58,0,15,1,0,1,0,18.735867,18.735867,0,0,0,0,0,0,0,0,1,1,0,8.215971,0,0,0,57.060001,57.759998,46.380001,59.889999,7,1,1,0,0,8,5,1,1317,207538.03,0,0,7164.2822 -1906,2323,4293,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,5,8.2505074,8.2399492,0,3,0,0,0,-9,0,-1141.0078,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,37,38,15,1,0,-9,0,14.807251,14.807251,0,0,0,0,0,0,0,0,0,0,0,3.9769471,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,11,4,1,380,229968.63,0,0,1774.9438 -1907,2324,4294,4295,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,0,3,8.1271048,7.9046812,0,1,0,-9,3,0,0,55.523281,0,1,1,29,2,4,1,3,2,2019,1,2,6,0,36,37,15,1,0,1,0,10.970466,10.970466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.919998,51.82,55.189999,54.259998,6,1,1,0,0,13,4,0,586,162805.55,0,0,3053.5972 -1907,2324,4295,4294,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,0,4,8.2958832,7.9124126,0,1,0,-9,3,0,0,-14.584563,0,1,0,29,2,3,1,-9,-9,2019,1,1,11,0,52,37,15,1,0,1,0,8.8269625,8.8269625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,57.919998,51.82,6,1,1,0,0,13,4,0,586,162805.55,0,0,3053.5972 -1908,2325,4296,4297,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.5166297,7.8139343,6.5439334,1,0,-9,4,0,-2,47.720188,0,0,0,54,2,3,1,-9,-9,2019,1,1,12,2,22,37,15,1,0,1,0,8.6232462,8.6232462,0,0,0,0,0,0,0,0,1,1,0,0,6.7028437,0,0,48,49,50,50,5,1,1,0,0,1,5,1,423,595511.69,0,0,5573.5342 -1908,2325,4297,4296,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,9.8681803,9.5825462,0,1,0,-9,27,0,2,63.015884,0,0,0,52,2,3,1,2,2,2019,1,2,11,1,41,37,15,1,0,1,0,38.802826,38.802826,0,0,0,0,0,0,0,0,1,1,0,6.2462406,0,0,0,50,50,48,49,5,1,1,0,0,1,5,1,423,595511.69,0,0,5573.5342 -1909,2326,4298,-9,-9,-9,4,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,8.3751888,8.3619738,0,3,0,-9,0,-9,0,-949.23633,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,14,4,42,0,15,1,1,-9,1,8.5101309,8.5101309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,-9,-9,6,1,1,0,0,8,4,1,230,-170676.47,0,0,1888.2247 -1910,2327,4299,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1085.4067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.830002,53.860001,-9,-9,5,1,1,1,0,13,1,0,687,-88024.688,0,0,619.66406 -1911,2328,4300,4301,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,9.1320314,8.9538851,0,1,0,-9,10,0,-7,-14.528266,0,0,0,60,1,4,1,2,1,2019,1,1,7,0,40,48,15,1,0,1,0,24.341228,24.341228,0,0,0,0,0,0,0,0,0,0,0,1.236202,0,0,0,57.16,56.150002,55.360001,54.240002,6,1,1,0,0,10,5,1,964,1062037.1,0,0,4745.0371 -1911,2328,4301,4300,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,4,8.2897539,8.1400385,0,1,0,-9,10,0,7,200.69724,0,0,0,53,2,4,1,2,1,2019,1,2,8,1,55,60,15,1,0,1,0,6.916769,6.916769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,54.240002,57.16,56.150002,6,1,1,0,0,10,5,1,964,1062037.1,0,0,4745.0371 -1912,2329,4302,4304,-9,-9,1,1,1,31,1,0,2,0,1,-9,2,1,0,0,4,8.6745348,8.6090593,0,2,0,-9,6,0,-14,-153.60094,0,0,0,45,2,4,1,2,2,2019,1,2,6,0,40,50,15,1,0,1,0,12.129003,12.129003,0,0,0,0,0,0,0,0,1,1,0,5.4060173,0,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,2,3,0,839.33331,66979.305,0,0,2562.3384 -1912,2329,4303,-9,4304,4302,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.43195,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,839.33331,66979.305,0,0,2562.3384 -1912,2329,4304,4302,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,7.0993543,7.0249882,0,2,0,-9,6,0,14,57.023766,0,0,0,31,1,4,1,2,3,2019,1,1,6,0,28,32,15,1,0,1,0,5.2580681,5.2580681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,2,3,0,839.33331,66979.305,0,0,2562.3384 -1912,2330,4305,-9,4304,4302,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1050.0529,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,3,0,300,0,0,0,0 -1913,2331,4306,4307,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.816782,9.0991039,0,1,0,-9,1,-9,0,-53.44698,-9,1,1,29,1,4,1,1,1,2019,1,2,8,0,55,0,15,1,0,1,0,13.259116,13.259116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,50.799999,52.439999,6,1,1,0,0,10,5,1,235,427442.19,0,0,5493.3218 -1913,2331,4307,4306,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.9321709,8.7436333,0,1,0,-9,1,-9,0,-10.171891,-9,1,0,29,1,4,1,-9,-9,2019,1,1,12,0,51,0,15,1,0,1,0,13.473518,13.473518,0,0,0,0,0,0,0,0,0,0,0,7.8158107,0,0,0,50.799999,52.439999,57.16,56.150002,5,1,1,0,0,10,5,1,235,427442.19,0,0,5493.3218 -1914,2332,4308,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,0,4,0,7.7523623,8.0768509,3,0,0,0,-9,0,-902.44696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9171715,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,11,4,1,72,760372.31,0,0,2866.2744 -1914,2333,4309,-9,-9,4308,2,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1032.4952,-9,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6196247,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,11,1,1,62,194333.23,0,0,12.138511 -1915,2334,4310,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-950.36591,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.360001,26.15,-9,-9,4,1,1,0,0,11,1,0,317,3873.1877,0,0,1442.6599 -1916,2335,4311,-9,-9,-9,1,1,0,38,3,0,3,0,2,-9,2,1,0,0,4,7.3499932,8.3773527,8.069685,4,0,0,0,-9,0,-887.69171,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,20,37,15,1,0,-9,0,10.848244,10.848244,0,0,0,0,0,0,0,0,1,1,0,7.918273,0,0,0,45.91,59.889999,-9,-9,6,1,1,0,1,9,3,1,1790.5,64070.148,0,0,3029.1938 -1916,2335,4312,-9,4311,-9,2,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-960.79065,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,3,1,1790.5,64070.148,0,0,3029.1938 -1916,2335,4313,-9,4311,-9,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1007.2325,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,9,3,1,1790.5,64070.148,0,0,3029.1938 -1916,2335,4314,-9,4311,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1085.1306,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,1790.5,64070.148,0,0,3029.1938 -1917,2336,4315,4318,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,7.286746,7.5607548,0,2,0,-9,6,0,-4,62.852123,0,0,1,40,1,2,1,2,3,2019,1,1,6,0,18,22,15,1,0,1,0,11.167156,11.167156,0,0,0,0,0,0,0,0,0,0,0,8.0123196,0,0,0,61.43,43.34,49.849998,44.939999,6,1,1,0,0,5,5,1,1457.75,311739.84,0,0,7260.8916 -1917,2336,4316,-9,4315,4318,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.04279,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,5,1,1457.75,311739.84,0,0,7260.8916 -1917,2336,4317,-9,4315,4318,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.20453,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,1457.75,311739.84,0,0,7260.8916 -1917,2336,4318,4315,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,2,9.7404995,9.6417618,0,2,0,-9,6,0,4,5.2652636,0,0,0,36,1,3,1,2,2,2019,1,2,13,2,52,60,15,1,0,1,0,40.150955,40.150955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.849998,44.939999,61.43,43.34,5,1,1,0,0,5,5,1,1457.75,311739.84,0,0,7260.8916 -1918,2337,4319,4321,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,7.8307791,7.873837,0,2,0,-9,25,0,-5,-2.8074543,0,0,0,57,1,4,1,2,2,2019,1,2,8,0,30,25,15,1,0,1,0,9.2714777,9.2714777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,55.310001,41.82,54.98,6,1,1,0,0,9,4,1,982,1344398.9,0,0,3207.0867 -1918,2337,4320,-9,4319,4321,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1165.4429,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.169998,45.07,-9,-9,6,1,1,0,0,9,4,1,982,1344398.9,0,0,3207.0867 -1918,2337,4321,4319,-9,-9,2,1,1,57,1,0,1,0,1,-9,2,1,0,0,4,8.6894693,8.3580666,0,2,0,-9,27,0,5,101.63648,0,0,0,52,2,3,1,2,2,2019,1,1,12,1,40,44,15,1,0,1,0,16.539335,16.539335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,54.98,47.18,55.310001,5,1,1,0,0,9,4,1,982,1344398.9,0,0,3207.0867 -1918,2338,4322,-9,4319,4321,3,1,1,21,2,0,1,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1138.3622,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.529999,60.439999,-9,-9,6,1,1,0,0,9,1,1,430,0,0,0,0 -1919,2339,4323,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,4,8.3891144,8.7686472,7.7245884,3,0,0,0,-9,0,-1015.2812,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6877165,7.5997252,0,0,61.130001,43.200001,-9,-9,6,1,1,0,0,7,5,1,947,2719106.3,0,0,4515.8184 -1920,2340,4324,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1103.7609,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,42.18,18.389999,-9,-9,6,1,1,0,1,7,1,0,410,-118179.63,0,0,36.700062 -1921,2341,4325,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,1,1,0,0,3,7.7849894,8.0494308,5.5518146,3,0,0,0,-9,0,-1022.9213,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,40,15,1,0,-9,0,10.654563,10.654563,0,0,0,0,0,0,0,0,1,1,0,6.0475111,5.7500076,0,0,61.52,40.5,-9,-9,2,1,1,0,0,6,4,1,1103,251638.88,0,0,1575.9583 -1922,2342,4326,4327,-9,-9,1,1,1,51,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,7,0,-15,-123.76251,0,0,0,66,2,3,1,1,1,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9953728,0,0,0,51.490002,32.639999,39.740002,43.740002,3,4,2,1,0,7,3,0,256.5,801049.75,0,0,3840.9121 -1922,2342,4327,4326,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,0,3,7.9314327,8.1421003,5.885006,1,0,-9,7,0,15,99.189728,0,0,0,51,2,3,3,2,3,2019,2,1,6,2,37,50,15,1,0,3,0,7.6483059,7.6483059,1,0,6.1657839,0,0,0,0,0,1,1,0,7.2815137,6.0948839,0,0,39.740002,43.740002,51.490002,32.639999,6,1,1,0,0,7,3,0,256.5,801049.75,0,0,3840.9121 -1923,2343,4328,4329,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,0,5,7.7157731,7.2688022,0,1,0,-9,10,0,1,-52.113045,0,0,0,58,2,4,1,-9,-9,2019,1,1,7,0,32,9,15,1,0,1,0,5.9757733,5.9757733,0,0,0,0,0,0,0,0,0,0,0,3.6476376,0,0,0,58.049999,54.52,57.16,56.150002,7,1,1,0,0,4,5,1,418,481704.47,0,0,4611.7344 -1923,2343,4329,4328,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,9.1810389,9.1887598,0,1,0,-9,36,0,-1,-88.520454,0,0,0,59,2,5,1,2,2,2019,1,2,7,0,38,48,15,1,0,1,0,24.331232,24.331232,0,0,0,0,0,0,0,0,0,0,0,3.49084,0,0,0,57.16,56.150002,58.049999,54.52,7,1,1,0,0,4,5,1,418,481704.47,0,0,4611.7344 -1924,2344,4330,-9,-9,-9,1,1,0,61,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1062.7024,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,6,2,3,0,0,8,1,0,653,18186.934,0,0,748.64166 -1924,2345,4331,-9,4330,-9,2,1,1,26,2,0,0,0,2,-9,1,1,0,0,3,6.7447066,6.8824496,0,3,0,0,0,-9,0,-1176.493,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,25,9,45,40,15,1,1,-9,1,2.0239146,2.0239146,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.752481,3,35.540001,38.990002,-9,-9,3,2,3,0,0,8,2,0,99,10.985363,0,0,-161.34804 -1925,2346,4332,4333,-9,-9,2,1,1,72,1,0,0,0,1,-9,1,1,0,0,4,8.351655,9.4352303,8.3200207,1,0,-9,41,0,0,-14.340684,0,0,0,72,2,5,3,3,2,2019,2,1,6,0,35,50,15,1,0,4,0,14.873299,14.873299,0,0,0,0,0,0,0,0,1,1,0,2.8989186,8.0217314,0,0,58.150002,52.91,41.43,64.75,6,1,1,0,0,12,5,1,463.5,3861060,0,0,7767.729 -1925,2346,4333,4332,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,5,0,8.4906435,8.1034718,1,0,-9,41,0,0,-15.872462,0,0,0,72,1,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.1576596,8.3464766,0,0,41.43,64.75,58.150002,52.91,7,1,1,0,0,12,5,1,463.5,3861060,0,0,7767.729 -1926,2347,4334,4335,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,7.0079985,7.1668115,1,0,-9,50,0,1,-108.43735,0,0,0,69,1,4,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0460734,6.7161303,0,0,61.43,43.34,59.259998,51.02,6,1,1,0,0,6,4,1,2148,1210954.5,0,0,3026.387 -1926,2347,4335,4334,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.9133763,7.708632,1,0,-9,50,0,-1,-46.35215,0,0,0,70,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9466887,8.0301037,0,0,59.259998,51.02,61.43,43.34,7,1,1,0,0,6,4,1,2148,1210954.5,0,0,3026.387 -1927,2348,4336,4338,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,7.5169086,7.6073542,0,2,0,-9,6,0,-4,22.521883,0,0,1,46,2,4,1,3,2,2019,1,1,17,5,28,25,15,1,1,1,0,7.4537253,7.4537253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.220001,59.959999,60.119999,54.799999,5,1,1,0,0,7,5,1,314.33334,584477.75,0,0,4627.2056 -1927,2348,4337,-9,4336,4338,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,5.6765747,5.4952393,0,2,0,0,0,-9,0,-1142.1538,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,7,5,1,314.33334,584477.75,0,0,4627.2056 -1927,2348,4338,4336,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,9.2240229,9.2751131,0,2,0,-9,6,0,4,-76.187447,0,0,0,42,2,3,1,3,3,2019,1,2,6,0,39,34,15,1,0,1,0,31.172955,31.172955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,34.220001,59.959999,7,1,1,0,0,7,5,1,314.33334,584477.75,0,0,4627.2056 -1928,2349,4339,4340,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,5,8.6303577,8.5507278,0,1,0,-9,5,0,-1,-50.006931,0,1,0,30,2,4,1,-9,-9,2019,1,2,7,0,45,46,15,1,0,1,0,13.611895,13.611895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,54.200001,57.490002,6,1,1,0,0,4,4,1,280.5,63034.168,0,0,1079.3485 -1928,2349,4340,4339,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,4.375577,4.4989867,0,1,0,-9,5,0,1,-65.781639,0,0,1,29,1,5,1,-9,-9,2019,1,1,7,2,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,41.07,60.93,7,1,1,0,0,4,4,1,280.5,63034.168,0,0,1079.3485 -1929,2350,4341,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,4,9.7436619,9.6936121,0,3,0,0,0,-9,0,-960.6828,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,1,52,58,15,1,0,-9,0,37.932499,37.932499,0,0,0,0,0,0,0,2,1,1,0,6.9807105,0,0,3,52.23,55.599998,-9,-9,5,1,1,0,0,9,5,1,167,1034306.5,0,0,2873.9546 -1930,2351,4342,4343,-9,-9,2,1,0,49,1,2,4,0,3,-9,2,1,0,0,5,6.5164156,6.690907,0,2,0,-9,7,0,-7,32.501732,0,0,0,56,3,4,1,3,3,2019,1,1,14,2,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.610001,50.880001,40.919998,47.349998,6,2,3,0,0,4,2,1,594.5,-11223.396,0,0,1553.3771 -1930,2351,4343,4342,-9,-9,1,1,1,56,1,2,4,0,3,-9,1,1,0,0,4,7.6498809,7.6718364,0,2,0,-9,33,0,7,3.2742333,0,0,0,49,3,5,1,3,3,2019,1,2,15,3,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.919998,47.349998,39.610001,50.880001,7,2,3,0,0,4,2,1,594.5,-11223.396,0,0,1553.3771 -1930,2352,4344,-9,4347,4345,8,1,0,5,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.4235,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,3,1,1584.3334,219700.52,0,0,2296.2056 -1930,2352,4345,4347,4342,4343,3,1,1,31,1,2,4,0,1,-9,2,1,0,0,4,8.8037786,8.3338032,0,2,0,-9,7,0,0,37.142151,0,0,0,31,1,4,3,3,3,2019,2,6,11,0,0,41,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.139999,48.189999,42.419998,39.790001,7,2,3,0,0,4,3,1,1584.3334,219700.52,0,0,2296.2056 -1930,2352,4346,-9,4347,4345,9,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-808.59912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,3,1,1584.3334,219700.52,0,0,2296.2056 -1930,2352,4347,4345,-9,-9,6,1,0,31,1,2,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,0,-29.949257,0,0,1,31,1,4,1,3,3,2019,3,3,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8635771,0,0,0,42.419998,39.790001,48.139999,48.189999,6,2,3,0,0,4,3,1,1584.3334,219700.52,0,0,2296.2056 -1930,2352,4348,-9,4347,4345,10,1,0,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-941.0592,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,3,1,1584.3334,219700.52,0,0,2296.2056 -1930,2352,4349,-9,4347,4345,7,1,0,6,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.5033,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,3,1,1584.3334,219700.52,0,0,2296.2056 -1930,2353,4350,-9,4342,4343,4,1,1,27,2,2,4,0,1,-9,2,1,0,0,5,7.8556471,7.9061317,0,3,0,0,0,-9,0,-1002.8393,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.759998,55.450001,-9,-9,7,2,3,0,0,4,3,1,880,87472.008,0,0,421.93253 -1930,2354,4351,-9,4342,4343,5,1,1,25,2,2,4,0,2,-9,2,1,0,0,5,7.7152863,7.3407254,0,3,0,0,0,-9,0,-1098.3792,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,20,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0463734,0,0,0,48.959999,56.299999,-9,-9,7,2,3,0,0,4,3,1,845,-21710.867,0,0,409.63977 -1931,2355,4352,4353,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,0,3,8.0495548,8.0197716,0,2,0,-9,22,0,-3,-32.618595,0,0,1,47,1,3,1,3,3,2019,1,2,13,2,33,32,15,1,0,1,0,9.6746778,9.6746778,0,0,0,0,0,0,0,0,1,1,0,2.0492425,0,0,0,38.259998,60.700001,54.279999,42.509998,4,1,1,0,0,7,4,1,630.79999,414246.94,0,0,3688.0959 -1931,2355,4353,4352,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,3,8.8152857,8.9818525,0,2,0,-9,22,0,3,-23.798136,0,0,0,44,1,3,1,2,2,2019,1,1,12,1,35,35,15,1,0,1,0,27.902399,27.902399,0,0,0,0,0,0,0,0,1,1,0,4.8528872,0,0,0,54.279999,42.509998,38.259998,60.700001,6,1,1,0,0,7,4,1,630.79999,414246.94,0,0,3688.0959 -1931,2355,4354,-9,4352,4353,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.52625,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,630.79999,414246.94,0,0,3688.0959 -1931,2355,4355,-9,4352,4353,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.7512,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,630.79999,414246.94,0,0,3688.0959 -1931,2355,4356,-9,4352,4353,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-975.54578,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2527695,0,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,7,4,1,630.79999,414246.94,0,0,3688.0959 -1932,2356,4357,4358,-9,-9,2,1,0,54,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,34,0,-1,-15.192505,0,0,0,55,2,4,1,3,2,2019,3,1,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7985754,0,0,0,37.02,23.959999,42.299999,57.540001,1,1,1,0,0,11,4,1,266,419508.56,0,0,2496.3977 -1932,2356,4358,4357,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.3717785,8.3192558,0,1,0,-9,34,0,1,2.547389,0,0,0,54,2,1,3,3,2,2019,2,2,10,1,47,38,15,1,0,3,0,11.230965,11.230965,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,42.299999,57.540001,37.02,23.959999,2,1,1,0,0,11,4,1,266,419508.56,0,0,2496.3977 -1932,2357,4359,-9,4357,4358,4,1,0,28,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1191.7793,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,31.290001,42.139999,-9,-9,2,1,1,0,1,11,1,1,819,0,0,0,1072.2731 -1933,2358,4360,-9,4362,-9,3,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-844.96527,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,341.75,66190.563,0,0,2363.6204 -1933,2358,4361,-9,4362,-9,4,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-956.34424,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,2,0,341.75,66190.563,0,0,2363.6204 -1933,2358,4362,-9,-9,-9,1,1,0,34,3,0,4,0,2,-9,3,3,0,0,2,0,6.3569236,6.3790989,4,0,0,0,-9,0,-1114.9531,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,0,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.161797,0,0,0,41.18,54.59,-9,-9,3,1,1,1,0,2,2,0,341.75,66190.563,0,0,2363.6204 -1933,2358,4363,-9,4362,-9,5,1,0,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-911.04541,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,341.75,66190.563,0,0,2363.6204 -1934,2359,4364,4365,-9,-9,1,1,1,84,1,0,1,0,2,-9,4,3,0,0,2,0,7.4793544,7.7927465,2,0,-9,4,0,23,30.386129,0,0,0,61,2,4,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.1334848,0,0,41.360001,39.549999,57.16,56.150002,5,1,1,0,0,7,4,1,569,932331.88,0,0,2856.6519 -1934,2359,4365,4364,-9,-9,2,1,0,61,1,0,1,0,2,-9,2,1,0,0,4,7.7573247,7.6314697,5.5256343,2,0,-9,4,0,-23,-114.0545,0,0,0,84,2,2,3,-9,-9,2019,2,1,9,0,25,25,15,1,0,4,0,8.6672735,8.6672735,0,0,0,0,0,0,0,0,1,1,0,0,5.7604389,0,0,57.16,56.150002,41.360001,39.549999,6,1,1,0,0,7,4,1,569,932331.88,0,0,2856.6519 -1934,2360,4366,-9,4365,4364,3,1,0,34,2,0,1,0,2,-9,2,1,0,0,4,8.1829233,8.1816626,0,3,0,0,0,-9,0,-1086.5466,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,50,47,15,1,0,-9,1,9.5219975,9.5219975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,-9,-9,6,1,1,0,0,7,4,1,477.5,15919.479,0,0,998.32434 -1934,2360,4367,-9,4366,-9,4,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-943.23206,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,1,477.5,15919.479,0,0,998.32434 -1935,2361,4368,4369,-9,-9,1,1,1,59,1,0,0,0,2,-9,3,3,0,1,1,0,0,0,1,0,-9,40,0,3,0,0,0,0,56,2,1,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.865505,1,31.84,27.719999,30.360001,19.799999,4,1,1,1,0,4,1,1,748,89015.633,0,0,1317.488 -1935,2361,4369,4368,-9,-9,2,1,0,56,1,0,0,0,2,-9,3,3,0,1,1,0,0,0,1,0,-9,40,0,-3,0,0,0,0,59,2,1,3,3,2,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.117607,1,30.360001,19.799999,31.84,27.719999,2,1,1,1,0,4,1,1,748,89015.633,0,0,1317.488 -1936,2362,4370,4371,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,7.3219862,7.3975821,0,2,0,-9,10,0,-12,-2.8872483,0,0,1,46,2,3,1,3,2,2019,1,2,11,2,20,0,15,1,0,1,0,8.5672998,8.5672998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.509998,54.509998,53.389999,44.470001,5,1,1,0,1,10,3,0,478,104198.49,0,0,2900.7046 -1936,2362,4371,4370,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,3,7.5764165,7.3031826,0,2,0,-9,10,0,12,-109.92221,0,0,0,34,2,4,1,-9,-9,2019,1,1,9,0,30,30,15,1,0,1,0,6.9731712,6.9731712,0,0,0,0,0,0,0,0,1,1,0,2.9709103,0,0,0,53.389999,44.470001,48.509998,54.509998,4,1,1,0,0,10,3,0,478,104198.49,0,0,2900.7046 -1936,2362,4372,-9,4370,4371,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.4907,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,478,104198.49,0,0,2900.7046 -1937,2363,4373,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,4,3,0,0,1,0,7.2852554,7.3982458,3,0,0,0,-9,0,-1029.7378,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4195437,0,0,30.799999,21.25,-9,-9,2,1,1,0,0,12,3,0,665,541167.25,0,0,996.19482 -1938,2364,4374,-9,-9,-9,1,1,1,101,3,0,0,0,2,-9,4,3,0,1,2,0,8.3406477,8.0947886,3,0,0,0,-9,0,-917.93182,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,41.395847,0,0,0,1,1,0,7.2389779,7.7307281,0,0,53.09,42.310001,-9,-9,6,1,1,0,0,8,4,1,587,1021573.8,0,0,2030.769 -1939,2365,4375,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,0,2,0,7.1593194,7.0564399,3,0,0,0,-9,0,-938.91083,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.6677585,7.3120313,31.650366,3,52.93,36.91,-9,-9,6,1,1,0,0,13,2,1,378,212094.3,0,0,1217.981 -1940,2366,4376,4377,-9,-9,1,1,1,59,1,0,0,0,2,-9,4,3,0,0,3,0,6.5398989,6.5729733,1,0,-9,33,0,1,-95.037926,0,0,0,58,2,3,1,3,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1125116,6.024044,0,0,34.32,57.25,49,48,6,2,3,0,0,8,5,1,463.5,370053.38,0,0,3175.4858 -1940,2366,4377,4376,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.8858643,8.8693209,0,1,0,-9,35,0,-1,-13.053782,0,0,0,59,2,3,3,3,3,2019,2,1,11,2,37,40,15,1,0,4,0,20.073683,20.073683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,34.32,57.25,5,4,5,0,0,8,5,1,463.5,370053.38,0,0,3175.4858 -1940,2367,4378,-9,4377,4376,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.6196499,7.7394161,0,3,0,0,0,-9,0,-962.68579,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,35,0,15,1,0,-9,1,5.7270689,5.7270689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,8,3,1,749,-30797.697,0,0,183.42436 -1941,2368,4379,4380,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.4694357,8.3188448,0,1,0,-9,7,0,-1,160.56384,0,0,0,58,2,4,1,2,1,2019,1,1,9,0,35,37,15,1,0,1,0,13.584483,13.584483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54.790001,55.860001,6,1,1,0,0,12,4,0,292.5,220017.47,0,0,2302.2969 -1941,2368,4380,4379,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.5966969,7.5151629,0,1,0,-9,39,0,1,118.09361,0,0,0,57,1,4,1,2,1,2019,1,2,6,0,31,33,15,1,0,1,0,7.0060906,7.0060906,0,0,0,0,0,0,0,0,0,0,0,1.793437,0,0,0,54.790001,55.860001,54,54,6,1,1,0,0,12,4,0,292.5,220017.47,0,0,2302.2969 -1942,2369,4381,-9,-9,-9,1,1,1,80,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1081.4229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.720001,54.93,-9,-9,2,1,1,0,0,5,1,0,731,292597.47,0,0,1588.285 -1943,2370,4382,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,4,3,0,0,3,0,4.3070807,4.5406799,3,0,0,0,-9,0,-1072.1134,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,6.9574471,4.0096302,19.07062,3,54.959999,53.169998,-9,-9,6,1,1,0,0,11,1,1,497,-24726.543,0,0,1075.4598 -1944,2371,4383,4384,-9,-9,2,1,1,36,1,0,0,0,1,-9,2,1,0,0,3,8.7884493,8.9956636,0,1,0,-9,7,0,0,0,0,0,0,36,1,4,1,2,2,2019,1,1,5,1,40,40,15,1,0,1,0,22.139862,22.139862,0,0,0,0,0,0,0,0,0,0,0,2.8350024,0,0,0,54.189999,38.77,54.060001,46.759998,6,1,1,0,0,8,5,1,1239,49838.688,0,0,5112.541 -1944,2371,4384,4383,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,8.8807783,8.6147509,0,1,0,-9,13,0,0,0,0,0,1,36,1,3,1,2,2,2019,1,2,13,3,43,45,15,1,0,1,0,17.817074,17.817074,0,0,0,0,0,0,0,0,0,0,0,.16846797,0,0,0,54.060001,46.759998,54.189999,38.77,6,1,1,0,0,8,5,1,1239,49838.688,0,0,5112.541 -1945,2372,4385,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,0,4,8.3316584,8.440012,5.8131242,4,0,0,0,-9,0,-1060.2688,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,70,60,15,1,0,-9,0,7.5989614,7.5989614,0,0,0,0,0,0,0,0,1,1,0,5.823422,0,0,0,34.400002,62.279999,-9,-9,5,1,1,0,0,4,4,1,767,189487.17,0,0,2041.6912 -1945,2373,4386,-9,4385,-9,2,1,1,19,3,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1142.8195,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3461208,0,0,3,54.200001,57.490002,-9,-9,6,1,1,0,0,4,1,1,1196,0,0,0,1207.4841 -1946,2374,4387,4388,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,7.6073852,7.537436,0,1,0,-9,17,0,-3,104.3714,0,0,0,55,3,3,1,3,3,2019,1,2,13,2,28,32,15,1,0,1,0,8.4657974,8.4657974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.450001,52.349998,58.32,50.220001,6,1,1,0,0,2,4,1,351,1291333.5,0,0,1738.9364 -1946,2374,4388,4387,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,0,3,7.895144,8.0207043,0,1,0,-9,17,0,3,112.94141,0,0,0,52,2,2,1,3,3,2019,1,1,6,0,40,40,15,1,0,1,0,7.9158473,7.9158473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,42.450001,52.349998,7,1,1,0,0,2,4,1,351,1291333.5,0,0,1738.9364 -1947,2375,4389,4390,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,8.0240812,8.144845,0,1,0,-9,8,0,-2,-92.607903,0,0,1,46,2,4,1,3,3,2019,1,1,12,2,43,39,15,1,0,1,0,8.3554583,8.3554583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.77,61.099998,55.189999,54.259998,4,1,1,0,1,10,4,1,571,150172.73,0,0,2613.2134 -1947,2375,4390,4389,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,7.9590278,7.9751654,0,1,0,-9,8,0,2,-50.727898,0,0,0,44,2,4,1,-9,-9,2019,1,2,11,0,39,39,15,1,0,1,0,8.7946014,8.7946014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,31.77,61.099998,6,1,1,0,0,10,4,1,571,150172.73,0,0,2613.2134 -1947,2376,4391,-9,4389,4390,3,1,1,18,2,0,0,0,2,1,2,1,0,0,4,7.9592681,7.5165854,0,3,0,0,0,-9,0,-985.44769,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,30,0,15,1,0,-9,1,6.0109172,6.0109172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.040001,54.630001,-9,-9,5,1,1,0,1,10,3,1,215,-111943.12,0,0,1376.6095 -1948,2377,4392,4393,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.9195967,9.1199656,0,1,0,-9,24,0,0,62.342464,0,0,0,52,2,4,1,3,3,2019,1,2,12,0,60,60,15,1,0,1,0,15.01378,15.01378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.189999,50.330002,36.880001,54.77,5,1,1,0,0,13,5,1,1537,314743.59,0,0,3554.3289 -1948,2377,4393,4392,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.0512428,7.6491485,0,1,0,-9,24,0,0,-127.13004,0,0,0,52,2,3,1,2,2,2019,1,1,12,0,36,39,15,1,0,1,0,9.0157795,9.0157795,0,0,0,0,0,0,0,2,0,0,0,0,0,8.6094208,3,36.880001,54.77,49.189999,50.330002,5,1,1,0,0,13,5,1,1537,314743.59,0,0,3554.3289 -1948,2378,4394,-9,4393,4392,4,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.9971657,8.2344208,0,3,0,0,0,-9,0,-872.53729,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,39,15,1,0,-9,1,7.5418015,7.5418015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.400002,-9,-9,6,1,1,0,0,13,4,1,367,-79524.703,0,0,1301.7469 -1949,2379,4395,-9,4396,4397,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.6032,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,525,424710.75,0,0,3852.4309 -1949,2379,4396,4397,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,0,5,8.3528929,8.3106508,0,2,0,-9,7,0,-13,10.385788,0,0,1,47,2,4,1,1,3,2019,1,2,5,0,40,39,15,1,0,1,0,12.272564,12.272564,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8116932,3,54.689999,57.470001,52,55,6,1,1,0,0,11,4,1,525,424710.75,0,0,3852.4309 -1949,2379,4397,4396,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,7.8564591,7.921257,0,2,0,-9,7,0,13,-5.7004256,0,0,0,34,2,5,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,6.8207283,6.8207283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,54.689999,57.470001,6,4,1,0,0,11,4,1,525,424710.75,0,0,3852.4309 -1950,2380,4398,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,1,1,0,0,2,8.2432261,8.2691574,0,3,0,0,0,-9,0,-1062.0645,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,25,0,15,1,0,-9,0,12.378867,12.378867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.790001,40.560001,-9,-9,5,4,2,0,0,6,4,0,494,69216.008,0,0,725.50201 -1951,2381,4399,4400,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,0,3,8.1943274,8.2344666,0,2,0,-9,9,0,8,37.885914,-9,0,0,46,1,3,1,-9,-9,2019,1,2,11,0,49,0,15,1,0,1,0,9.2246437,9.2246437,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.852459,3,39.73,54.810001,48.93,39.82,3,1,1,0,0,11,4,1,450.33334,413080.16,0,0,2603.1775 -1951,2381,4400,4399,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,3,8.3835011,8.5051041,0,2,0,-9,9,0,-8,-25.871428,0,0,0,54,2,3,1,2,2,2019,1,1,9,0,42,46,15,1,0,1,0,10.402727,10.402727,0,0,0,0,0,0,0,2,1,1,0,0,0,4.5298948,3,48.93,39.82,39.73,54.810001,6,1,1,0,0,11,4,1,450.33334,413080.16,0,0,2603.1775 -1951,2381,4401,-9,4400,4399,4,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1036.4552,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,11,4,1,450.33334,413080.16,0,0,2603.1775 -1951,2382,4402,-9,4400,4399,3,1,0,19,2,0,1,1,2,-9,7,2,0,0,4,5.9163785,6.2124047,0,3,0,0,0,-9,0,-938.49738,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,56.130001,-9,-9,6,1,1,0,0,11,2,1,1383,-110048.88,0,0,454.35126 -1952,2383,4403,-9,4404,4405,1,1,0,26,3,0,0,0,1,-9,2,1,0,0,4,7.9683475,7.7952175,0,3,0,0,0,-9,0,-975.93793,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,48,43,15,1,0,-9,1,7.1027498,7.1027498,0,0,0,0,0,0,0,2,0,0,0,3.0826745,0,0,3,59.139999,52.5,-9,-9,6,1,1,0,0,8,4,1,300,28858.914,0,0,1357.3466 -1952,2384,4404,4405,-9,-9,2,1,0,59,1,0,0,0,1,-9,6,3,0,0,5,0,0,0,1,0,-9,4,0,0,-134.8414,0,0,0,59,2,3,1,-9,-9,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.3926814,0,6.1972814,3,62.389999,56.709999,60.290001,52.110001,7,1,1,0,0,8,5,1,890.5,3266142.5,0,0,8819.7822 -1952,2384,4405,4404,-9,-9,3,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,9.6946716,9.5820436,0,1,0,-9,4,0,0,57.065651,-9,0,0,59,1,5,3,-9,-9,2019,2,2,8,0,50,0,15,1,0,3,0,37.688778,37.688778,0,0,0,0,0,0,0,2,0,0,0,7.6086607,0,0,3,60.290001,52.110001,62.389999,56.709999,7,1,1,0,0,8,5,1,890.5,3266142.5,0,0,8819.7822 -1953,2385,4406,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,2,0,6.2496433,6.3206434,3,0,0,0,-9,0,-880.8399,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,1,0,0,1.1816722,1.3455715,0,0,0,1,1,0,1.5777535,6.3914328,0,0,40.389999,15.66,-9,-9,3,1,1,0,0,4,2,1,215,372199.28,0,0,378.00229 -1954,2386,4407,4408,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.8458042,7.999969,1,0,-9,46,0,0,-1.6164742,0,0,0,65,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9304318,7.5208092,0,0,59.290001,49.68,67.510002,35.119999,6,1,1,0,0,9,3,1,2785,2428827,0,0,2808.9121 -1954,2386,4408,4407,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,5.9803915,5.9933023,1,0,-9,46,0,0,-28.017712,0,0,0,65,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1956377,5.8287153,0,0,67.510002,35.119999,59.290001,49.68,7,1,1,0,0,9,3,1,2785,2428827,0,0,2808.9121 -1955,2387,4409,4412,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,8.9554052,9.1058254,0,2,0,-9,19,0,6,3.6223714,0,0,0,42,2,4,1,2,2,2019,1,2,16,5,45,45,15,1,1,1,0,25.650715,25.650715,0,0,0,0,0,0,0,0,0,0,0,3.2703133,0,0,0,44.189999,48.860001,49.349998,59.639999,5,1,1,0,0,2,5,1,394.75,104259.74,0,0,3654.0552 -1955,2387,4410,-9,4412,4409,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-988.84387,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,2,5,1,394.75,104259.74,0,0,3654.0552 -1955,2387,4411,-9,4412,4409,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.25299,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,394.75,104259.74,0,0,3654.0552 -1955,2387,4412,4409,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.0331912,7.1934681,0,2,0,-9,19,0,-6,-101.49416,0,0,1,48,2,3,1,-9,2,2019,1,1,17,6,20,20,15,1,1,1,0,7.9347992,7.9347992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,44.189999,48.860001,6,1,1,0,0,2,5,1,394.75,104259.74,0,0,3654.0552 -1956,2388,4413,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,1,1,0,0,3,7.2608819,7.4944353,0,3,0,0,0,-9,0,-991.82971,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,20,20,15,1,0,-9,0,6.9118629,6.9118629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.869999,56.48,-9,-9,5,4,5,0,1,8,3,1,408,88599.719,0,0,1169.1292 -1957,2389,4414,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,3,8.4066153,8.1420107,0,3,0,0,0,-9,0,-1047.2802,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,55,51,15,1,0,-9,0,9.0581188,9.0581188,0,0,0,0,0,0,0,0,1,1,0,1.0065769,0,0,0,50.43,45.82,-9,-9,4,1,1,0,0,6,4,0,2574,114106.19,0,0,1074.162 -1958,2390,4415,-9,-9,-9,1,1,0,48,3,0,2,0,1,-9,1,1,0,0,4,8.7826729,8.924531,0,4,0,0,0,-9,0,-924.3291,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,40,15,1,0,-9,0,21.552176,21.552176,0,0,0,0,0,0,0,0,0,0,0,.78585035,0,0,0,51.830002,57.200001,-9,-9,5,4,2,0,0,6,4,1,754,299462.78,0,0,1916.8064 -1959,2391,4416,4417,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,0,3,6.5531154,6.8098016,0,1,0,-9,6,0,3,96.896561,0,0,0,61,2,3,1,3,3,2019,1,2,10,1,40,50,15,1,0,1,0,2.242821,2.242821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,61.279999,46.169998,5,1,1,0,0,13,3,1,594.5,764929.69,0,0,1145.9917 -1959,2391,4417,4416,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.0970521,7.1781831,0,1,0,-9,6,0,-3,47.874329,0,0,0,64,2,3,1,3,2,2019,1,1,8,0,31,32,15,1,0,1,0,5.143867,5.143867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,52,48,6,1,1,0,0,13,3,1,594.5,764929.69,0,0,1145.9917 -1959,2392,4418,-9,4417,4416,3,1,1,33,2,0,0,0,2,-9,1,1,0,0,4,7.3308377,7.0938601,0,3,0,0,0,-9,0,-1040.8772,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,50,15,1,0,-9,1,3.1642687,3.1642687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,13,2,1,365,99883.352,0,0,536.6983 -1959,2393,4419,-9,4417,4416,4,1,1,29,2,0,0,0,3,-9,1,1,0,0,4,7.6789608,7.9838343,0,3,0,0,0,-9,0,-1004.1206,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,37,0,15,1,0,-9,1,8.7962542,8.7962542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,5,1,1,0,0,13,4,1,2210,-28211.436,0,0,1259.6265 -1960,2394,4420,-9,-9,-9,1,1,1,28,3,0,0,0,1,-9,2,1,0,0,4,9.4571867,9.5295248,0,3,0,-9,0,1,0,-1093.6558,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,56,53,15,1,1,-9,0,29.372595,29.372595,0,0,0,0,0,0,0,0,1,1,0,1.506099,0,0,0,35.900002,55.18,-9,-9,5,1,1,0,0,6,5,1,1295,0,0,0,4070.9751 -1961,2395,4421,4422,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.6085339,8.331584,0,1,0,-9,7,0,9,56.616436,0,0,0,50,2,3,1,-9,2,2019,1,2,23,11,36,42,15,1,1,1,0,15.335125,15.335125,0,0,0,0,0,0,0,7,0,0,0,3.5174608,0,0,3,43.23,42.23,41.34,56.619999,3,1,1,0,0,4,4,1,2016,429213.25,0,0,3023.3005 -1961,2395,4422,4421,-9,-9,2,1,0,50,1,0,0,0,2,-9,1,1,0,0,3,7.8025608,7.3409739,0,1,0,-9,28,0,0,6.9683385,0,0,0,59,2,4,1,3,3,2019,1,1,16,4,35,45,15,1,1,1,0,7.0467205,7.0467205,0,0,0,0,0,0,0,0,0,0,0,3.2048619,0,0,0,41.34,56.619999,43.23,42.23,6,1,1,0,0,4,4,1,2016,429213.25,0,0,3023.3005 -1961,2396,4423,-9,4422,4421,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.9168854,7.7061462,0,3,0,0,0,-9,0,-1117.1543,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,42,40,15,1,1,-9,1,6.5583177,6.5583177,0,0,0,0,0,0,0,0,0,0,0,.7430492,0,0,0,25.27,63.07,-9,-9,3,1,1,0,0,4,3,1,229,-129670.41,0,0,547.68256 -1962,2397,4424,4425,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,48,0,-8,53.353947,0,0,0,80,3,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2868962,0,0,0,54.360001,46.43,48.009998,45.279999,7,1,1,0,0,10,4,1,1013,1042635,0,0,4615.5459 -1962,2397,4425,4424,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,4,0,8.2810831,8.5557833,1,0,-9,48,0,8,-83.893547,0,0,0,72,2,4,3,1,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8414831,0,0,48.009998,45.279999,54.360001,46.43,5,1,1,0,0,10,4,1,1013,1042635,0,0,4615.5459 -1963,2398,4426,4429,-9,-9,2,1,0,47,1,0,1,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,3,0,0,0,-9,0,0,56,2,1,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0824177,0,0,0,53.860001,32.34,34.169998,26.65,5,2,3,1,0,6,1,0,890,20690.117,0,0,1754.3041 -1963,2398,4427,-9,4426,4429,6,1,0,17,2,0,1,0,-9,1,2,3,0,0,4,6.5653944,6.4243236,0,2,0,0,0,-9,0,-887.18719,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,16,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,5,2,3,0,0,6,1,0,890,20690.117,0,0,1754.3041 -1963,2398,4428,-9,4426,4429,7,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-934.08301,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,6,1,0,890,20690.117,0,0,1754.3041 -1963,2398,4429,4426,-9,-9,1,1,1,56,1,0,1,0,2,-9,3,3,0,0,1,0,0,0,2,0,-9,3,0,9,0,-9,0,0,47,3,2,3,-9,-9,2019,4,2,21,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.169998,26.65,53.860001,32.34,3,2,3,1,1,6,1,0,890,20690.117,0,0,1754.3041 -1963,2399,4430,-9,4426,4429,3,1,0,27,2,0,1,0,1,-9,2,1,0,0,4,7.9452729,7.9692998,0,3,0,0,0,-9,0,-1008.7663,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,45,0,15,1,0,-9,1,7.3077459,7.3077459,0,0,0,0,0,0,0,0,1,1,0,3.2741392,0,0,0,47.310001,53.720001,-9,-9,6,2,3,0,1,6,4,0,2519,203993.09,0,0,1334.4943 -1963,2400,4431,-9,4426,4429,4,1,0,24,2,0,1,0,1,-9,2,1,0,0,4,7.9600916,7.9005075,0,3,0,0,0,-9,0,-1105.8308,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,37,37,15,1,0,-9,1,8.7769165,8.7769165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.080002,58.060001,-9,-9,5,2,3,0,0,6,4,0,703,67631.609,0,0,1207.373 -1963,2401,4432,-9,4426,4429,5,1,0,19,2,0,1,1,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1002.8949,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,53.509998,-9,-9,3,2,3,0,0,6,1,0,1391,-215314.25,0,0,0 -1964,2402,4433,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,3,0,5.9857402,6.1371155,3,0,0,0,-9,0,-1025.1656,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2548132,0,0,49,48,-9,-9,5,2,3,0,1,2,2,1,126,929652.69,0,0,614.20984 -1964,2403,4434,-9,-9,-9,2,1,1,42,2,0,0,0,1,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-932.77606,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.331558,3,16.040001,23.99,-9,-9,1,2,3,1,1,2,1,1,1170,195877.73,0,0,1152.7708 -1965,2404,4435,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-942.0412,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.08639627,0,0,0,62.66,52.400002,-9,-9,7,1,1,0,0,6,1,0,838,23540.762,0,0,100.75428 -1966,2405,4436,4437,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,7.5889821,7.5868611,0,1,0,-9,30,0,-1,42.388401,0,0,0,57,2,1,3,3,3,2019,2,2,17,5,23,35,15,1,1,3,0,9.5539017,9.5539017,0,0,0,0,0,0,0,2,1,1,0,0,0,4.6456604,3,41.07,23.08,31.73,23.33,3,1,1,0,0,2,3,0,946,95769.016,0,0,1090.4983 -1966,2405,4437,4436,-9,-9,2,1,1,57,1,0,0,0,2,-9,3,3,0,1,1,0,7.0171456,6.8243761,1,0,-9,30,0,1,44.89917,0,0,0,56,2,2,1,3,3,2019,3,1,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5025597,0,0,31.73,23.33,41.07,23.08,2,1,1,1,0,2,3,0,946,95769.016,0,0,1090.4983 -1967,2406,4438,-9,4440,4439,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-846.30426,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,632,480395.13,0,0,3687.0132 -1967,2406,4439,4440,-9,-9,2,1,1,41,1,0,1,0,2,-9,1,1,0,0,3,8.2418537,8.2973633,0,2,0,-9,12,0,0,-40.92664,0,0,0,41,1,4,1,3,-9,2019,1,1,12,0,35,40,15,1,0,1,0,12.665972,12.665972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,52.619999,57.16,56.150002,5,1,1,0,0,12,5,1,632,480395.13,0,0,3687.0132 -1967,2406,4440,4439,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,4,8.3497677,8.2460194,0,2,0,-9,12,0,0,-45.440239,0,0,1,41,2,3,1,2,2,2019,1,2,10,0,31,30,15,1,0,1,0,19.441145,19.441145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50.029999,52.619999,6,1,1,0,0,12,5,1,632,480395.13,0,0,3687.0132 -1968,2407,4441,4442,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,3,0,7.8413372,7.4711504,1,0,-9,50,0,-11,29.850525,0,0,0,83,1,2,3,2,2,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.8107162,7.7615633,4.8747458,3,51.209999,44.279999,44.330002,41.950001,6,1,1,0,0,2,4,1,714,2820193,0,0,3491.8147 -1968,2407,4442,4441,-9,-9,2,1,1,83,1,0,0,0,1,-9,4,3,0,0,2,0,7.9881692,7.8300295,1,0,-9,50,0,11,-163.71539,0,0,0,72,1,3,3,2,3,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4484086,6.591167,3,44.330002,41.950001,51.209999,44.279999,6,1,1,0,0,2,4,1,714,2820193,0,0,3491.8147 -1969,2408,4443,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-915.60016,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,1,1,0,0,7,1,0,814,225664.98,0,0,618.49371 -1970,2409,4444,-9,4445,4446,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.34216,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,3,1,502,374157.38,0,0,2236.2268 -1970,2409,4445,4446,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,8.1005716,8.4198275,0,2,0,-9,9,0,-5,19.322659,0,0,1,46,3,1,3,2,1,2019,2,1,13,1,44,49,15,1,0,3,0,11.057926,11.057926,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.531502,1,40.98,57.509998,15.05,27.23,5,1,1,0,1,6,3,1,502,374157.38,0,0,2236.2268 -1970,2409,4446,4445,-9,-9,1,1,1,46,1,0,2,0,3,-9,3,3,0,1,1,0,0,0,2,0,-9,9,0,5,-66.437706,0,0,0,41,2,4,1,2,3,2019,3,2,29,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.05,27.23,40.98,57.509998,1,1,1,1,1,6,3,1,502,374157.38,0,0,2236.2268 -1970,2409,4447,-9,4445,4446,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.077,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,6,3,1,502,374157.38,0,0,2236.2268 -1971,2410,4448,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,5,0,7.2466106,7.0510917,3,0,-9,0,1,0,-1003.2763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3547764,0,0,55.240002,55.869999,-9,-9,6,1,1,0,0,5,3,1,700,539371.25,0,0,1071.3522 -1972,2411,4449,-9,4450,4452,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.9258,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,0,1146.5,643404.88,0,0,4978.854 -1972,2411,4450,4452,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.2669907,8.5349445,0,2,0,-9,17,0,-5,68.979744,-9,0,1,45,1,3,1,2,2,2019,1,2,11,0,40,0,15,1,0,1,0,14.043437,14.043437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.169998,49.389999,5,1,1,0,0,7,5,0,1146.5,643404.88,0,0,4978.854 -1972,2411,4451,-9,4450,4452,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.0699,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,0,1146.5,643404.88,0,0,4978.854 -1972,2411,4452,4450,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,8.6866903,8.5318184,0,2,0,-9,20,0,5,-5.4283047,0,0,0,40,1,4,1,1,2,2019,1,1,8,0,40,42,15,1,0,1,0,16.859663,16.859663,0,0,0,0,0,0,0,0,1,1,0,8.3918676,0,0,0,51.169998,49.389999,51.830002,57.200001,6,1,1,0,0,7,5,0,1146.5,643404.88,0,0,4978.854 -1973,2412,4453,4454,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,10,0,0,0,0,62,3,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,9.49331,1,38.849998,57.91,36.810001,30.5,3,1,1,0,0,2,1,0,2271,119406.03,0,0,1366.0144 -1973,2412,4454,4453,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,43,0,-10,0,0,0,0,72,3,4,3,3,3,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.810001,30.5,38.849998,57.91,7,1,1,0,0,2,1,0,2271,119406.03,0,0,1366.0144 -1974,2413,4455,4456,-9,-9,1,1,1,50,1,0,0,0,1,-9,1,1,0,0,5,9.8602982,9.5147562,0,1,0,-9,23,0,2,41.74297,0,0,0,48,1,4,1,2,2,2019,1,2,11,0,42,45,15,1,0,1,0,40.803745,40.803745,0,0,0,0,0,0,0,0,0,0,0,5.9313502,0,0,0,49.639999,54.450001,57.16,56.150002,6,2,3,0,0,10,5,1,1725.5,686757.63,0,0,13441.658 -1974,2413,4456,4455,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,9.5132656,9.9771156,0,1,0,-9,7,0,-2,-40.643028,0,0,0,50,1,5,1,3,1,2019,1,1,7,0,45,45,15,1,0,1,0,36.783676,36.783676,0,0,0,0,0,0,0,0,0,0,0,7.4005547,0,0,0,57.16,56.150002,49.639999,54.450001,7,2,3,0,0,10,5,1,1725.5,686757.63,0,0,13441.658 -1975,2414,4457,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,6.2937965,6.3244882,3,0,0,0,-9,0,-998.63513,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3404264,5.8751087,0,0,53,44,-9,-9,6,1,1,0,0,12,2,1,810,35892.152,0,0,1840.9615 -1976,2415,4458,4459,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,8.0837078,8.3411179,0,1,0,-9,11,0,12,-127.39439,0,0,0,38,2,4,1,2,2,2019,1,1,18,6,41,37,15,1,1,1,0,11.663508,11.663508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,56.400002,51.830002,57.200001,5,1,1,0,0,1,4,1,799.5,164370.23,0,0,2668.79 -1976,2415,4459,4458,-9,-9,1,1,1,38,1,0,0,0,2,-9,1,1,0,0,4,7.5150776,7.3198929,0,1,0,-9,11,0,-12,31.799051,0,0,0,50,1,3,1,2,2,2019,1,2,7,0,35,30,15,1,0,1,0,5.7140942,5.7140942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,44.59,56.400002,6,1,1,0,0,1,4,1,799.5,164370.23,0,0,2668.79 -1976,2416,4460,-9,4458,4459,3,1,0,22,2,0,0,0,1,1,2,1,0,0,3,6.9432278,7.098928,0,3,0,0,0,-9,0,-955.89105,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,25,11,30,0,15,1,1,-9,1,5.912055,5.912055,0,0,0,0,0,0,0,0,0,0,0,.22172715,0,0,0,30.940001,61.650002,-9,-9,3,1,1,0,0,1,2,1,653,8715.417,0,0,1869.9866 -1977,2417,4461,-9,-9,4462,2,1,0,14,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-929.18628,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,2,3,1,1040,479088.84,0,0,2248.6624 -1977,2417,4462,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,2,0,7.4146295,7.0805583,3,0,0,0,-9,0,-1144.3108,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7252874,6.7900705,11.391461,3,48.299999,39.27,-9,-9,6,1,1,0,0,2,3,1,1040,479088.84,0,0,2248.6624 -1978,2418,4463,4464,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,0,3,7.4818892,7.2344031,0,1,0,-9,1,-9,-1,68.253326,-9,0,0,57,2,4,1,-9,-9,2019,1,3,11,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,57.16,56.150002,5,1,1,0,0,12,4,1,405.5,119643.51,0,0,1487.9962 -1978,2418,4464,4463,4466,-9,3,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.8488216,7.7522745,0,1,0,-9,1,-9,1,44.484653,-9,0,0,56,3,3,1,2,-9,2019,1,2,7,0,30,0,15,1,0,1,0,9.3396912,9.3396912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49,50,6,1,1,0,0,12,4,1,405.5,119643.51,0,0,1487.9962 -1978,2419,4465,-9,4464,4463,4,1,0,22,2,0,0,1,1,-9,7,2,0,0,4,9.2005014,9.3937988,6.7156711,3,0,-9,0,-9,0,-1083.3324,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9716616,0,0,0,55.73,53.98,-9,-9,6,1,1,0,0,12,5,1,206,205063.88,0,0,3893.9133 -1978,2420,4466,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,1,1,0,7.2715712,7.1046352,3,0,0,0,-9,0,-861.55048,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,125.0826,0,0,0,0,1,1,0,.63881242,7.1645451,0,0,44.93,18.74,-9,-9,7,1,1,0,0,12,3,1,234,390262.47,0,0,1671.0276 -1979,2421,4467,-9,4468,4469,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1004.8418,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,2,0,674.66669,54191.707,0,0,579.10529 -1979,2421,4468,4469,-9,-9,1,1,0,26,1,0,1,0,1,-9,1,1,0,0,4,6.6118422,6.5793033,0,2,0,-9,4,0,-1,-14.86728,0,1,1,27,2,1,3,2,-9,2019,2,2,14,2,45,40,15,1,0,3,0,1.4647011,1.4647011,0,0,0,0,0,0,0,2,1,1,0,0,0,7.804522,1,43.419998,62.330002,35.310001,28.620001,5,1,1,0,0,1,2,0,674.66669,54191.707,0,0,579.10529 -1979,2421,4469,4468,-9,-9,2,1,1,27,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,4,0,1,104.57478,0,1,0,26,1,4,1,-9,-9,2019,3,1,26,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.310001,28.620001,43.419998,62.330002,2,1,1,0,0,1,2,0,674.66669,54191.707,0,0,579.10529 -1980,2422,4470,-9,4471,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1150.4045,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,3,0,908,222890.86,0,0,1003.2825 -1980,2422,4471,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,0,3,8.2779894,8.2945786,0,4,0,0,0,-9,0,-1000.9773,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,38,15,1,0,-9,0,9.7196856,9.7196856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,33.599998,-9,-9,5,1,1,0,0,5,3,0,908,222890.86,0,0,1003.2825 -1980,2423,4472,-9,4471,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,0,5,7.0811362,7.0071149,0,3,0,0,0,-9,0,-915.33771,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,-9,-9,7,1,1,0,0,5,3,0,414,-145081,0,0,1513.0875 -1981,2424,4473,-9,4475,4474,5,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.0544,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,4,1,1313.6666,153223.94,0,0,2748.4954 -1981,2424,4474,4475,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.321496,8.4416199,0,2,0,-9,9,0,1,68.392296,0,0,0,49,2,3,1,3,2,2019,1,2,8,0,40,37,15,1,0,1,0,13.199491,13.199491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,48.84,48.450001,57.490002,2,1,1,0,0,13,4,1,1313.6666,153223.94,0,0,2748.4954 -1981,2424,4475,4474,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,1,3,7.2375541,7.3959188,0,2,0,-9,9,0,-1,70.905289,0,0,0,50,2,3,1,3,2,2019,1,1,8,0,25,22,15,1,0,1,0,7.8678412,7.8678412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,52.240002,48.84,6,1,1,0,0,13,4,1,1313.6666,153223.94,0,0,2748.4954 -1981,2425,4476,-9,4475,4474,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,8.1310616,8.4047003,0,3,0,0,0,-9,0,-1002.8334,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3450327,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,4,1,411,-62289.148,0,0,1513.421 -1981,2426,4477,-9,4475,4474,4,1,1,20,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1150.1208,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8075669,0,0,0,54.630001,58.830002,-9,-9,6,1,1,0,0,13,1,1,88,104915.95,0,0,354.72641 -1982,2427,4478,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,-9,0,-9,0,-1126.0594,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.780001,17.809999,-9,-9,1,1,1,0,0,5,1,0,406,-42145.246,0,0,1546.7822 -1983,2428,4479,4480,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,1,4,7.6153126,8.0020046,8.1080561,1,0,-9,8,0,5,82.438591,0,0,0,53,2,2,3,1,2,2019,2,2,11,0,35,35,15,1,0,3,0,5.7994885,5.7994885,0,0,0,0,0,0,0,2,1,1,0,3.2351794,8.2925062,6.1300297,3,43.91,47.360001,50.91,20.120001,5,1,1,0,0,5,4,1,596,1071008.1,0,0,5096.2598 -1983,2428,4480,4479,-9,-9,2,1,0,53,1,0,0,0,2,-9,8,3,1,1,2,0,6.6886415,6.6303129,1,0,-9,8,0,-5,-100.09234,0,0,0,58,2,4,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5959449,0,0,50.91,20.120001,43.91,47.360001,6,1,1,0,0,5,4,1,596,1071008.1,0,0,5096.2598 -1983,2429,4481,-9,4480,4479,3,1,1,22,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-938.3244,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.422703,0,0,0,44.549999,60.419998,-9,-9,4,1,1,1,0,5,1,1,295,-32543.689,0,0,1832.6631 -1983,2430,4482,-9,4480,4479,4,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,7.3610296,7.1419563,0,3,0,0,0,-9,0,-938.9754,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,23,0,15,1,0,-9,1,7.4473944,7.4473944,0,0,0,0,0,0,0,0,1,1,0,.32682085,0,0,0,51.66,54.880001,-9,-9,5,1,1,0,0,5,3,1,167,-32438.424,0,0,239.04549 -1984,2431,4483,4484,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,4,9.4428892,9.5091944,0,1,0,-9,28,0,12,-40.002934,0,0,0,50,1,4,1,3,2,2019,1,2,6,0,38,38,15,1,0,1,0,42.133446,42.133446,0,0,0,0,0,0,0,0,0,0,0,6.0240793,0,0,0,51.830002,57.200001,41.759998,57.810001,6,1,1,0,0,12,5,1,786.5,1923203.3,0,0,7863.4121 -1984,2431,4484,4483,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,9.1229811,9.1289682,0,1,0,-9,28,0,-12,12.998923,0,0,0,62,1,4,1,2,2,2019,1,1,9,0,41,43,15,1,0,1,0,30.64867,30.64867,0,0,0,0,0,0,0,0,0,0,0,1.8364224,0,0,0,41.759998,57.810001,51.830002,57.200001,5,1,1,0,0,12,5,1,786.5,1923203.3,0,0,7863.4121 -1985,2432,4485,4488,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,9.5463696,9.753499,0,2,0,-9,19,0,2,59.797104,0,0,0,44,2,4,3,-9,-9,2019,2,2,8,0,50,50,15,1,0,3,0,41.664394,41.664394,0,0,0,0,0,0,0,0,0,0,0,6.0725307,0,0,0,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,7,5,1,563.75,558731.44,0,0,4354.1289 -1985,2432,4486,-9,4488,4485,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-971.14478,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,7,5,1,563.75,558731.44,0,0,4354.1289 -1985,2432,4487,-9,4488,4485,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.76697,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,5,1,563.75,558731.44,0,0,4354.1289 -1985,2432,4488,4485,-9,-9,2,1,0,44,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-2,60.396305,0,0,1,46,1,5,1,2,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.060001,57.759998,6,1,1,0,0,7,5,1,563.75,558731.44,0,0,4354.1289 -1986,2433,4489,4490,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,1,3,8.2844543,8.9416962,0,1,0,-9,31,-9,-3,-42.539894,-9,0,0,59,2,3,1,3,3,2019,1,1,6,0,37,0,15,1,0,1,0,18.072828,18.072828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.239998,44.830002,62,47.259998,6,1,1,0,0,7,5,0,603,680408.75,0,0,3460.1338 -1986,2433,4490,4489,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.9812951,7.9941669,0,1,0,-9,31,-9,3,33.532707,-9,0,0,56,1,3,1,3,3,2019,1,2,7,0,37,0,15,1,0,1,0,10.603103,10.603103,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.19075,2,62,47.259998,64.239998,44.830002,6,1,1,0,0,7,5,0,603,680408.75,0,0,3460.1338 -1987,2434,4491,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,3,3,0,0,2,5.6294384,5.4962354,0,3,0,0,0,-9,0,-997.4765,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.63853401,3,36.139999,38,-9,-9,3,1,1,1,1,7,2,0,528,145831.5,0,0,21.829399 -1988,2435,4492,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,5,8.9221697,9.057374,0,3,0,0,0,-9,0,-910.20764,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,38,38,15,1,0,-9,0,24.230457,24.230457,0,0,0,0,0,0,0,0,0,0,0,2.2171533,0,0,0,46.400002,59.869999,-9,-9,7,1,1,0,0,9,5,1,458,270127.19,0,0,2861.1558 -1989,2436,4493,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,6.285305,6.268189,3,0,0,0,-9,0,-930.11804,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3308101,0,0,47.91,53.860001,-9,-9,6,1,1,0,0,4,2,0,291,108275.93,0,0,2036.3678 -1990,2437,4494,-9,-9,-9,1,1,0,77,3,1,1,0,2,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1022.0292,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,29.43,-9,-9,4,4,2,0,0,8,1,0,871,0,0,0,-194.03061 -1990,2438,4495,-9,4494,-9,2,1,0,47,2,1,1,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-806.43658,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.310001,24.969999,-9,-9,6,3,4,0,0,8,1,0,259,-120240.45,0,0,2372.1121 -1990,2439,4496,-9,4495,-9,3,1,0,28,2,1,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-967.83008,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.68,41.709999,-9,-9,1,4,2,1,0,8,1,0,349,0,0,0,778.05371 -1990,2439,4497,-9,4496,-9,5,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-933.05298,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,1,0,349,0,0,0,778.05371 -1990,2440,4498,-9,4495,-9,4,1,1,24,2,1,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-950.93219,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,2,0,25,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.65,58.16,-9,-9,2,4,2,1,1,8,1,0,656,0,0,0,238.68532 -1991,2441,4499,-9,-9,-9,1,1,0,44,2,0,1,0,1,-9,2,1,0,0,5,7.3147588,7.1863332,0,4,0,0,0,-9,0,-849.50208,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,3,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,3,4,0,0,8,2,0,455.5,-62395.57,0,0,975.43359 -1991,2441,4500,-9,4499,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1069.99,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,8,2,0,455.5,-62395.57,0,0,975.43359 -1992,2442,4501,4502,-9,-9,1,1,0,40,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,11,0,-12,0,0,0,1,52,3,2,3,-9,-9,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.610001,50.970001,48.689999,40.5,5,1,1,0,0,10,1,0,338.5,-51358.363,0,0,791.14996 -1992,2442,4502,4501,-9,-9,2,1,1,52,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,11,0,12,0,0,0,0,40,3,2,3,-9,2,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.689999,40.5,39.610001,50.970001,6,1,1,0,0,10,1,0,338.5,-51358.363,0,0,791.14996 -1993,2443,4503,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,8.1601725,8.5593338,0,3,0,0,0,-9,0,-950.92468,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,40,15,1,0,-9,0,10.884348,10.884348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,12,4,1,813,60540.086,0,0,1444.7747 -1994,2444,4504,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,2,7.9896593,8.0316601,0,3,0,0,0,-9,0,-770.35168,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,39,38,15,1,0,-9,0,8.3723564,8.3723564,0,0,0,0,0,0,0,2,0,0,0,0,0,4.6377363,3,47.560001,48.93,-9,-9,4,1,1,0,0,9,4,1,1838,235720.3,0,0,2364.5967 -1995,2445,4505,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-952.0932,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,9.3814182,9.2313032,0,0,1,1,0,0,0,0,0,27.99,30.67,-9,-9,4,1,1,0,0,9,1,1,146,-62012.445,0,0,2232.7451 -1996,2446,4506,4507,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,0,4,9.0458126,9.0960464,0,1,0,-9,4,0,1,133.93785,0,0,1,36,1,4,1,-9,-9,2019,1,1,11,2,42,30,15,1,0,1,0,26.354836,26.354836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,50,57,5,1,1,0,0,8,5,1,3501.5,290786.72,0,0,7016.1338 -1996,2446,4507,4506,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,0,4,9.3943443,8.9682732,0,1,0,-9,4,0,-1,-3.8065817,0,0,0,37,1,4,1,1,1,2019,1,2,10,1,48,51,15,1,0,1,0,26.85281,26.85281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,49,56,5,1,1,0,0,8,5,1,3501.5,290786.72,0,0,7016.1338 -1997,2447,4508,4509,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,9.5307713,9.619422,0,1,0,-9,10,0,-1,-32.491177,0,0,0,31,1,4,1,2,2,2019,1,2,7,0,56,62,15,1,0,1,0,29.86305,29.86305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,55.34,54.259998,6,1,1,0,0,8,5,1,534.5,19557.305,0,0,5629.6694 -1997,2447,4509,4508,-9,-9,2,1,0,31,1,0,0,0,1,-9,5,1,0,0,4,0,0,0,1,0,-9,10,0,1,-44.203609,0,0,1,30,1,5,1,3,1,2019,1,1,6,0,0,70,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1606722,0,0,0,55.34,54.259998,57.060001,57.759998,6,1,1,0,0,8,5,1,534.5,19557.305,0,0,5629.6694 -1998,2448,4510,4511,-9,-9,2,1,0,34,1,0,0,0,2,-9,2,1,0,0,4,7.603219,7.9463787,0,1,0,-9,8,0,-2,-16.35685,-9,0,1,36,2,3,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,8.1659613,8.1659613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.630001,59.720001,49.040001,55.860001,6,1,1,0,0,2,3,1,680,135122.92,0,0,2692.0225 -1998,2448,4511,4510,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,0,3,6.857698,6.9909325,0,1,0,-9,8,0,2,-41.164772,0,0,0,34,2,4,1,-9,-9,2019,1,2,10,0,63,64,15,1,0,1,0,1.8307419,1.8307419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,46.630001,59.720001,5,1,1,0,0,2,3,1,680,135122.92,0,0,2692.0225 -1999,2449,4512,4513,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,1,3,0,5.138793,5.1113648,1,0,-9,30,0,3,46.324127,0,0,0,70,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.9208379,0,0,56.189999,36.360001,57.68,42.360001,6,1,1,0,0,11,2,0,283.5,73631.352,0,0,1317.1272 -1999,2449,4513,4512,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,33,0,-3,78.524384,0,0,0,73,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.68,42.360001,56.189999,36.360001,7,1,1,0,0,11,2,0,283.5,73631.352,0,0,1317.1272 -2000,2450,4514,-9,4515,-9,2,1,0,11,2,1,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1042.3892,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,2,2,0,322.33334,34851.895,0,0,1476.2721 -2000,2450,4515,-9,-9,-9,1,1,0,34,2,1,2,0,2,-9,2,1,0,0,3,6.7843285,6.8565845,0,4,0,0,0,-9,0,-871.66492,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,16,16,15,1,1,-9,0,9.0887661,9.0887661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.740002,51.07,-9,-9,4,1,1,0,0,2,2,0,322.33334,34851.895,0,0,1476.2721 -2000,2450,4516,-9,4515,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1003.1171,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,2,2,0,322.33334,34851.895,0,0,1476.2721 -2001,2451,4517,4518,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.9600697,8.1880264,1,0,-9,44,0,-1,-26.174814,0,0,0,67,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5795884,8.2978611,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,9,3,1,632,1524073.4,0,0,3073.6279 -2001,2451,4518,4517,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,5.3434043,5.3520026,1,0,-9,44,0,1,27.83976,0,0,0,66,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.329917,5.1640906,2.8418362,3,58.150002,52.91,57.16,56.150002,6,1,1,0,0,9,3,1,632,1524073.4,0,0,3073.6279 -2002,2452,4519,-9,4521,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1171.3146,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,9,2,0,1263.3334,-109253.1,0,0,986.974 -2002,2452,4520,-9,4521,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-998.72925,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,9,2,0,1263.3334,-109253.1,0,0,986.974 -2002,2452,4521,-9,-9,-9,1,1,0,45,2,0,2,0,2,-9,2,1,0,0,1,8.1213522,7.5898447,0,4,0,0,0,-9,0,-958.672,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,25,29,15,1,1,-9,0,8.1891422,8.1891422,0,0,0,0,0,0,0,0,1,1,0,1.8526973,0,0,0,36.650002,34.950001,-9,-9,3,1,1,0,0,9,2,0,1263.3334,-109253.1,0,0,986.974 -2002,2453,4522,-9,-9,-9,4,1,0,22,2,0,2,0,2,-9,2,1,0,0,3,7.8118734,7.8433304,0,4,0,0,0,-9,0,-1008.5748,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,45,52,15,1,0,-9,0,7.8275561,7.8275561,0,0,0,0,0,0,0,0,1,1,0,2.6604598,0,0,0,28.139999,58.580002,-9,-9,5,1,1,0,0,9,3,0,2936,-25097.467,0,0,2401.4431 -2003,2454,4523,4525,-9,-9,1,1,0,22,1,1,1,0,2,-9,2,1,0,0,5,7.7271051,7.6310568,0,2,0,1,1,-9,-3,-109.64785,0,1,1,25,1,4,1,1,2,2019,1,3,20,7,42,12,15,1,1,1,0,6.1675296,6.1675296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.42,67.220001,49,58,6,1,1,0,0,2,4,1,3214.3333,45418.68,0,0,2616.2922 -2003,2454,4524,-9,4523,4525,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.80688,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,3214.3333,45418.68,0,0,2616.2922 -2003,2454,4525,4523,-9,-9,3,1,1,25,1,1,1,0,1,-9,2,1,0,0,4,8.3106327,8.2513561,0,2,0,-9,1,-9,3,-53.539463,-9,1,0,22,2,5,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,11.357586,11.357586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,30.42,67.220001,5,4,1,0,0,2,4,1,3214.3333,45418.68,0,0,2616.2922 -2004,2455,4526,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,8.3630772,8.5371771,0,3,0,0,0,-9,0,-894.39709,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,38,37,15,1,1,-9,0,10.696522,10.696522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.919998,51.240002,-9,-9,5,1,1,0,0,11,4,1,1339,444949.5,0,0,1943.2568 -2004,2456,4527,-9,4526,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.7546625,7.6778307,0,3,0,0,0,-9,0,-915.98895,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,40,40,15,1,0,-9,1,6.9559879,6.9559879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.42,53.549999,-9,-9,5,1,1,0,0,11,3,1,179,88204.531,0,0,618.28644 -2004,2457,4528,-9,4526,-9,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.4702568,7.2834048,0,3,0,0,0,-9,0,-874.15356,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,9,46,30,15,1,1,-9,1,3.4020948,3.4020948,0,0,0,0,0,0,0,0,0,0,0,1.9938681,0,0,0,35.98,56.290001,-9,-9,5,1,1,0,0,11,3,1,335,125102.7,0,0,491.84372 -2005,2458,4529,-9,4531,4530,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,4.6801214,4.6220808,0,2,0,0,0,-9,0,-975.89978,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.049999,39.66,-9,-9,5,3,4,0,0,8,5,1,816.66669,1525688.1,0,0,3924.615 -2005,2458,4530,4531,-9,-9,2,1,1,57,1,0,1,0,1,1,2,1,0,0,4,8.5005884,8.4753847,0,2,0,-9,25,0,5,-81.448242,-9,0,0,52,1,5,1,1,1,2019,1,1,5,0,8,0,15,1,0,1,0,63.284668,63.284668,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,62.389999,56.709999,6,3,4,0,0,8,5,1,816.66669,1525688.1,0,0,3924.615 -2005,2458,4531,4530,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,5,8.8139009,8.7123222,0,2,0,-9,25,0,-5,45.525848,0,0,0,57,1,4,1,1,1,2019,1,2,2,0,45,48,15,1,0,1,0,13.263878,13.263878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,60.119999,54.799999,7,3,4,0,0,8,5,1,816.66669,1525688.1,0,0,3924.615 -2005,2459,4532,-9,4531,4530,3,1,1,23,2,0,1,0,1,-9,2,1,0,0,4,8.3496447,8.5563831,0,3,0,0,0,-9,0,-917.06171,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,47,37,15,1,0,-9,1,8.0941553,8.0941553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.220001,46.599998,-9,-9,4,4,2,0,0,8,4,1,496,-85089.875,0,0,2877.9319 -2005,2460,4533,-9,4531,4530,5,1,0,21,2,0,1,1,2,0,7,2,0,0,3,7.1818638,7.1364236,0,3,0,0,0,-9,0,-1074.7234,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,0,0,19,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,7,3,4,0,0,8,3,1,644,-136142.42,0,0,-297.23666 -2006,2461,4534,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,0,5,5.1646037,5.3220615,0,3,0,0,0,-9,0,-985.45239,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,42,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,6,4,2,0,0,8,2,1,2291,158438,0,0,299.22604 -2006,2462,4535,-9,4534,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,4,7.1238656,7.5299091,5.1609035,3,0,0,0,-9,0,-985.836,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,21,0,15,1,0,-9,1,6.722497,6.722497,0,0,0,0,0,0,0,0,1,1,0,5.1536827,0,0,0,43.540001,59.599998,-9,-9,6,4,2,0,0,8,2,1,1356,120736.36,0,0,2770.2915 -2007,2463,4536,-9,4537,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1056.6837,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,5,1,669.66669,888670.56,0,0,5713.1851 -2007,2463,4537,-9,-9,-9,1,1,0,40,2,0,2,0,1,-9,2,1,0,0,5,9.8173342,9.6232958,7.0964627,4,0,-9,0,0,0,-1195.2535,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,48,36,15,1,1,-9,0,35.707306,35.707306,0,0,0,0,0,0,0,0,0,0,0,6.8543553,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,8,5,1,669.66669,888670.56,0,0,5713.1851 -2007,2463,4538,-9,4537,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-961.55267,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,5,1,669.66669,888670.56,0,0,5713.1851 -2008,2464,4539,4540,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,5,8.5381632,8.6888924,0,1,0,-9,6,0,1,-33.454422,0,0,0,60,2,4,1,3,3,2019,1,2,7,0,48,48,15,1,0,1,0,16.95237,16.95237,0,0,0,0,0,0,0,0,0,0,0,2.7624054,0,0,0,51.73,58.82,57.16,56.150002,7,1,1,0,0,9,5,1,587.5,1782505.3,0,0,3739.9746 -2008,2464,4540,4539,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,8.3062725,8.4396954,0,1,0,-9,6,0,-1,-65.784523,0,0,0,61,2,5,1,3,2,2019,1,1,11,0,20,20,15,1,0,1,0,20.150227,20.150227,0,0,0,0,0,0,0,0,0,0,0,2.9283926,0,0,0,57.16,56.150002,51.73,58.82,6,1,1,0,0,9,5,1,587.5,1782505.3,0,0,3739.9746 -2009,2465,4541,4542,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.0370469,6.7684975,1,0,-9,7,0,2,-132.36954,0,0,0,67,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1332469,6.9448462,0,0,50.82,36.52,53.779999,48.41,4,1,1,0,0,7,3,1,742,1389714.3,0,0,1521.3629 -2009,2465,4542,4541,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.021451,7.4223089,1,0,-9,7,0,-2,138.60501,0,0,0,69,2,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.083076,7.6790757,0,0,53.779999,48.41,50.82,36.52,6,1,1,0,0,7,3,1,742,1389714.3,0,0,1521.3629 -2010,2466,4543,4544,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,44,0,-2,-131.03992,0,0,0,64,1,4,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5070591,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,1,3,1,831,1183393.3,0,0,1991.0098 -2010,2466,4544,4543,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.3113279,8.5886068,1,0,-9,44,0,2,30.306944,0,0,0,62,2,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.866478,8.0245285,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,1,3,1,831,1183393.3,0,0,1991.0098 -2011,2467,4545,4546,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,9.5302277,9.2102108,0,2,0,-9,25,0,2,37.760006,0,0,0,46,2,4,3,2,2,2019,2,1,9,0,36,0,15,1,0,3,0,32.78046,32.78046,0,0,0,0,0,0,0,42,1,1,0,0,0,35.413631,3,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,12,4,1,2171,735213.13,0,0,3498.8499 -2011,2467,4546,4545,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,1,4,5.1950073,5.5394192,0,2,0,-9,25,0,-2,174.66388,0,0,0,48,1,4,1,1,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,84.057465,3,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,12,4,1,2171,735213.13,0,0,3498.8499 -2011,2468,4547,-9,4546,4545,3,1,1,20,2,0,2,0,2,0,7,2,0,0,5,6.2838631,6.353826,0,3,0,0,0,-9,0,-1034.0758,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,12,2,1,638,-26719.326,0,0,44.625256 -2011,2469,4548,-9,4546,4545,5,1,1,18,2,0,2,0,2,1,2,1,0,0,4,6.8508291,7.1225405,0,3,0,0,0,-9,0,-1091.0596,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,21,0,15,1,1,-9,1,7.4333839,7.4333839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.4,60.82,-9,-9,2,1,1,0,0,12,2,1,656,55172.504,0,0,1576.4204 -2012,2470,4549,-9,-9,-9,1,1,0,29,2,0,3,0,2,-9,2,1,0,0,4,6.9009199,7.2998729,5.5041084,4,0,0,0,-9,0,-920.91693,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,16,0,15,1,0,-9,0,8.1441317,8.1441317,0,0,0,0,0,0,0,14.5,1,1,0,5.0416594,0,12.495673,3,45.91,59.889999,-9,-9,6,1,1,0,0,7,2,0,434.75,-31417.816,0,0,2272.1077 -2012,2470,4550,-9,4549,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-956.61267,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,2,0,434.75,-31417.816,0,0,2272.1077 -2012,2470,4551,-9,4549,-9,2,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.3246,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,2,0,434.75,-31417.816,0,0,2272.1077 -2012,2470,4552,-9,4549,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1021.8478,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,434.75,-31417.816,0,0,2272.1077 -2013,2471,4553,-9,4555,-9,5,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-957.40179,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,1714,72052.578,0,0,2711.4658 -2013,2471,4554,-9,4555,-9,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-909.14532,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,1714,72052.578,0,0,2711.4658 -2013,2471,4555,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,6,3,0,1,1,0,0,0,4,0,0,0,-9,0,-898.80194,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.559166,3,59.540001,11.06,-9,-9,4,1,1,0,0,9,1,0,1714,72052.578,0,0,2711.4658 -2013,2471,4556,-9,4555,-9,3,1,1,16,2,0,2,0,3,-9,2,2,0,0,3,5.0867977,5.0928588,0,4,0,0,0,-9,0,-883.35358,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.943937,3,46.080002,57.200001,-9,-9,4,1,1,0,0,9,1,0,1714,72052.578,0,0,2711.4658 -2013,2472,4557,-9,4555,-9,2,1,1,22,2,0,2,0,2,-9,2,1,0,0,3,8.3056593,8.1133699,0,3,0,0,0,-9,0,-1119.3413,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,36,50,15,1,0,-9,1,10.408772,10.408772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.310001,-9,-9,5,1,1,0,0,9,4,0,1433,87151.984,0,0,1557.7369 -2014,2473,4558,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,3,7.7077875,7.7290826,3.4826279,3,0,0,0,-9,0,-956.37866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,34,40,15,1,1,-9,0,8.9594936,8.9594936,0,0,0,0,0,0,0,7,0,0,0,4.5323172,3.8374209,9.7303791,3,35.240002,45.77,-9,-9,5,1,1,0,0,13,3,1,823,222854.77,0,0,1895.4163 -2015,2474,4559,4561,-9,-9,1,1,0,47,1,0,3,0,2,-9,2,1,0,0,4,7.4576659,7.7793155,0,2,0,-9,21,0,5,10.645846,0,0,0,42,2,4,1,-9,-9,2019,1,2,7,1,40,40,15,1,0,1,0,7.1346169,7.1346169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,35.619999,47.060001,6,1,1,0,0,1,3,1,398.79999,300320.03,0,0,2623.106 -2015,2474,4560,-9,4559,4561,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.4275,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,1,3,1,398.79999,300320.03,0,0,2623.106 -2015,2474,4561,4559,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,7.8493505,8.1627951,0,2,0,-9,3,0,-5,-89.482506,0,0,0,47,2,4,1,-9,-9,2019,1,1,14,2,43,42,15,1,0,1,0,8.559659,8.559659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.619999,47.060001,58.150002,52.91,5,1,1,0,0,1,3,1,398.79999,300320.03,0,0,2623.106 -2015,2474,4562,-9,4559,4561,4,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.7662,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,1,3,1,398.79999,300320.03,0,0,2623.106 -2015,2474,4563,-9,4559,4561,3,1,1,17,2,0,3,0,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-876.50555,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,3,1,398.79999,300320.03,0,0,2623.106 -2016,2475,4564,-9,-9,-9,1,1,1,43,3,0,0,0,1,-9,2,1,0,0,3,8.3763027,8.6051006,0,3,0,0,0,-9,0,-1051.3785,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,37,77,15,1,1,-9,0,16.491329,16.491329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.540001,58.139999,-9,-9,3,1,1,0,0,13,5,0,1154,658708.94,0,0,2803.3269 -2017,2476,4565,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,3,7.849021,8.1128578,0,3,0,0,0,-9,0,-1033.7112,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,37,15,1,0,-9,0,9.9987602,9.9987602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,10,4,1,370,-163862.2,0,0,2578.7268 -2017,2477,4566,-9,4565,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.983923,7.8895583,0,3,0,0,0,-9,0,-870.77246,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,44,40,15,1,0,-9,1,7.1148891,7.1148891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.599998,52.880001,-9,-9,5,1,1,0,0,10,4,1,396,-11217.08,0,0,1096.6532 -2018,2478,4567,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,2,0,6.598814,6.5957108,3,0,0,0,-9,0,-962.41193,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6177268,6.7418075,0,0,43.220001,41.549999,-9,-9,4,1,1,0,0,6,2,1,924,332628.09,0,0,687.3847 -2019,2479,4568,4569,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.2930007,7.6322551,1,0,-9,47,0,5,-104.47061,0,0,0,67,2,5,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1917223,7.1766148,0,0,52,46,58.049999,54.52,5,1,1,0,0,12,2,1,407.5,600483.25,0,0,1875.55 -2019,2479,4569,4568,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,47,0,-5,84.985756,0,0,0,72,3,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.2187219,3,58.049999,54.52,52,46,6,1,1,0,0,12,2,1,407.5,600483.25,0,0,1875.55 -2020,2480,4570,4571,-9,-9,1,1,1,53,1,0,0,0,3,-9,1,1,0,0,3,9.5288687,9.954195,0,1,0,-9,1,0,0,-20.988424,0,0,0,53,3,4,1,-9,-9,2019,1,2,10,0,40,40,15,1,0,1,0,47.924095,47.924095,0,0,0,0,0,0,0,0,0,0,0,4.6041279,0,0,0,61.279999,46.169998,40.139999,60.41,6,1,1,0,0,11,5,1,822,206334.2,0,0,6028.4307 -2020,2480,4571,4570,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,7.2499695,6.8663626,0,1,0,1,1,-9,0,-42.325886,0,0,0,53,3,3,1,-9,-9,2019,1,1,10,0,19,18,15,1,0,1,0,6.1176939,6.1176939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.139999,60.41,61.279999,46.169998,7,1,1,0,0,11,5,1,822,206334.2,0,0,6028.4307 -2021,2481,4572,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,0,3,8.271575,8.2566786,0,3,0,0,0,-9,0,-1081.3169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,60,60,15,1,0,-9,0,7.5382347,7.5382347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.91,53.549999,-9,-9,5,1,1,0,0,13,4,1,158,147548.94,0,0,243.05396 -2022,2482,4573,4574,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,3,0,6.7181735,6.4908185,1,0,-9,53,0,0,-16.534285,0,0,0,80,3,3,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,7.0263581,23.290392,3,35.790001,44.369999,51,45,5,1,1,0,0,5,2,1,331.5,202855.78,0,0,1727.4794 -2022,2482,4574,4573,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,4.1071086,3.928951,1,0,-9,53,0,0,73.400429,0,0,0,80,3,3,3,3,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0253868,4.272347,0,0,51,45,35.790001,44.369999,6,1,1,0,0,5,2,1,331.5,202855.78,0,0,1727.4794 -2023,2483,4575,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.2344675,8.1394939,0,3,0,0,0,-9,0,-1030.629,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,48,80,15,1,0,-9,0,10.451243,10.451243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.73,44.220001,-9,-9,6,1,1,0,0,12,5,1,1132,149764.45,0,0,595.92151 -2024,2484,4576,-9,-9,-9,1,1,0,53,3,0,1,0,2,-9,2,1,0,0,3,7.6670089,7.9729033,0,4,0,0,0,-9,0,-1030.4697,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,35,35,15,1,0,-9,0,9.3377457,9.3377457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.32,53.849998,-9,-9,4,2,3,0,0,2,3,0,1490.5,255679.64,0,0,1771.4753 -2024,2484,4577,-9,4576,-9,5,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1016.3731,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,2,3,0,1490.5,255679.64,0,0,1771.4753 -2024,2485,4578,-9,4576,-9,4,1,1,18,2,0,1,1,2,0,7,2,0,0,4,7.0729227,7.4308968,0,3,0,0,0,-9,0,-1002.6899,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,6,20,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.700001,-9,-9,5,2,3,0,0,2,3,0,519,-128992.22,0,0,920.30316 -2025,2486,4579,-9,4581,4582,3,1,1,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1144.2079,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,784.16669,416543.69,0,0,4238.7188 -2025,2486,4580,-9,4581,4582,4,1,1,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1006.1682,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,5,4,1,784.16669,416543.69,0,0,4238.7188 -2025,2486,4581,4582,-9,-9,1,1,0,42,1,0,4,0,1,-9,1,1,0,0,5,8.2818308,8.3780012,0,2,0,-9,16,0,-5,22.886866,0,0,1,47,3,3,1,3,1,2019,1,2,7,0,30,35,15,1,0,1,0,19.377388,19.377388,0,0,0,0,0,0,0,0,1,1,0,.17265229,0,0,0,57.060001,57.759998,34.110001,58.610001,6,1,1,0,0,5,4,1,784.16669,416543.69,0,0,4238.7188 -2025,2486,4582,4581,-9,-9,2,1,1,47,1,0,4,0,3,-9,1,1,0,0,3,8.7092896,8.6194372,0,2,0,-9,16,0,5,-25.695591,0,0,0,42,1,5,1,2,3,2019,1,1,10,1,35,40,15,1,0,1,0,15.725819,15.725819,0,0,0,0,0,0,0,0,1,1,0,.081631042,0,0,0,34.110001,58.610001,57.060001,57.759998,5,1,1,0,0,5,4,1,784.16669,416543.69,0,0,4238.7188 -2025,2486,4583,-9,4581,4582,5,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.3655,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,784.16669,416543.69,0,0,4238.7188 -2025,2486,4584,-9,4581,4582,6,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.91638,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,784.16669,416543.69,0,0,4238.7188 -2026,2487,4585,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,3,8.8385668,9.2827187,5.8143845,3,0,0,0,-9,0,-1143.8037,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,53,41,15,1,1,-9,0,20.282946,20.282946,0,0,0,0,0,0,0,2,1,1,0,7.2458878,0,.38041341,3,20.969999,63.16,-9,-9,2,1,1,0,0,5,5,1,386,390114.56,0,0,3935.2683 -2026,2487,4586,-9,4585,-9,2,1,0,17,2,0,0,0,2,-9,2,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1096.0287,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.0527763,3,2.4300001,60.259998,-9,-9,4,1,1,0,1,5,5,1,386,390114.56,0,0,3935.2683 -2027,2488,4587,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,8.5006456,8.6538963,4.9142551,3,0,0,0,-9,0,-1011.941,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,36,35,15,1,0,-9,0,18.718338,18.718338,0,0,0,0,0,0,0,0,0,0,0,5.4620171,0,0,0,48.25,53.5,-9,-9,6,1,1,0,0,8,5,0,706,582342.81,0,0,1635.9904 -2027,2489,4588,-9,-9,4589,3,1,0,16,2,0,0,0,2,-9,3,2,0,0,3,5.0095215,4.7999396,0,3,0,0,0,-9,0,-933.71112,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9455807,0,0,0,30.65,58.619999,-9,-9,7,4,2,1,0,8,4,0,247.5,90976.813,0,0,1728.2446 -2027,2489,4589,-9,4587,-9,2,1,1,28,2,0,0,0,1,-9,2,1,0,0,2,8.4929838,7.9745297,0,3,0,0,0,-9,0,-994.5744,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,54,51,15,1,0,-9,1,11.667188,11.667188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.860001,47.830002,-9,-9,5,1,1,0,0,8,4,0,247.5,90976.813,0,0,1728.2446 -2028,2490,4590,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,4,9.0596056,9.0936356,0,1,0,-9,1,-9,6,87.438683,-9,0,0,-9,-9,-9,-9,2,2,2019,1,2,8,0,41,0,15,1,0,-9,0,20.903507,20.903507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,39.16,62.84,6,1,1,0,0,5,5,1,1364,-86172.906,0,0,1819.363 -2028,2491,4591,-9,-9,-9,2,1,1,34,2,0,0,0,2,-9,2,1,0,0,4,8.5476761,8.0966883,0,1,0,-9,1,-9,-6,-77.27639,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,12,2,37,0,15,1,0,-9,0,13.113141,13.113141,0,0,0,0,0,0,0,0,0,0,0,.75508934,0,0,0,39.16,62.84,51.490002,57.57,4,1,1,0,0,5,5,1,114,-2997.3057,0,0,1681.7397 -2029,2492,4592,-9,-9,-9,1,1,1,34,2,0,0,0,3,-9,2,1,0,0,2,7.5930548,7.5870705,0,3,0,0,0,-9,0,-1130.2926,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,8,37,57,15,1,1,-9,0,6.4600725,6.4600725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.84,51.470001,-9,-9,3,1,1,0,0,12,3,0,726,-47520.727,0,0,1327.7343 -2030,2493,4593,4594,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,5.6481709,6.3143144,1,0,-9,41,0,-10,101.18031,0,0,0,86,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3879385,5.9114957,0,0,52,46,48.889999,36.77,6,1,1,0,0,9,2,1,806.5,799101,0,0,3374.6125 -2030,2493,4594,4593,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,1,3,0,7.2485375,6.8398676,1,0,-9,41,0,10,-6.1884871,0,0,0,76,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,7.4597478,0,0,0,0,0,120,1,1,0,5.2696261,7.4596653,123.01173,1,48.889999,36.77,52,46,4,1,1,0,0,9,2,1,806.5,799101,0,0,3374.6125 -2031,2494,4595,4596,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,6.8731647,6.6537595,1,0,-9,52,0,0,25.161028,0,0,0,77,2,3,3,2,2,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,2.5303266,6.4066124,123.38132,1,36.77,38.639999,53,46,3,1,1,0,0,4,2,1,712.5,695877.69,0,0,3292.2178 -2031,2494,4596,4595,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.250731,7.0876498,1,0,-9,52,0,0,88.297653,-9,0,0,77,3,2,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,76.192192,0,0,0,0,0,1,1,0,1.0269972,7.0741267,0,0,53,46,36.77,38.639999,5,1,1,0,0,4,2,1,712.5,695877.69,0,0,3292.2178 -2032,2495,4597,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,1,0,7.2589593,7.3145161,3,0,0,0,-9,0,-916.87573,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,42.161671,0,0,0,1,1,0,0,7.1627831,0,0,64.580002,4.48,-9,-9,6,1,1,0,0,2,2,0,569,251922.06,0,0,1267.701 -2033,2496,4598,4599,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,0,4,6.9405527,6.8600192,0,1,0,-9,39,0,-2,6.6501079,0,0,0,60,3,3,1,3,2,2019,1,2,8,1,15,27,15,1,0,1,0,6.3142076,6.3142076,0,0,0,0,0,0,0,0,0,0,0,2.7236366,0,0,0,58.869999,45.759998,55.93,49.950001,6,1,1,0,0,7,4,1,1259,761055.25,0,0,1733.7603 -2033,2496,4599,4598,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.0919218,7.8356795,0,1,0,-9,10,0,2,-130.17906,0,0,0,58,2,4,1,-9,-9,2019,1,1,11,0,35,38,15,1,0,1,0,12.385798,12.385798,0,0,0,0,0,0,0,0,0,0,0,3.1003456,0,0,0,55.93,49.950001,58.869999,45.759998,6,1,1,0,0,7,4,1,1259,761055.25,0,0,1733.7603 -2034,2497,4600,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1059.8883,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,1.6678405,3,48.279999,60.18,-9,-9,7,1,1,0,0,11,1,0,2722,0,0,0,1082.7352 -2035,2498,4601,4602,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,4,8.4917164,8.434453,0,1,0,-9,8,0,0,122.71297,0,0,0,56,3,3,1,-9,-9,2019,1,1,8,0,38,48,15,1,0,1,0,13.295115,13.295115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,57.330002,53.459999,6,1,1,0,0,13,4,1,912.5,250097.16,0,0,2749.6577 -2035,2498,4602,4601,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,0,3,7.7181678,7.1950893,0,1,0,-9,8,0,0,15.388196,0,0,0,56,3,4,1,3,3,2019,1,2,7,0,25,20,15,1,0,1,0,6.1619921,6.1619921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,60.119999,54.799999,6,1,1,0,0,13,4,1,912.5,250097.16,0,0,2749.6577 -2036,2499,4603,-9,4604,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-778.29047,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,347,150350.41,0,0,1231.5375 -2036,2499,4604,-9,-9,-9,1,1,0,36,3,0,1,0,1,-9,2,1,0,0,2,8.1396561,8.7249355,0,4,0,0,0,-9,0,-1083.3729,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,37,37,15,1,1,-9,0,10.730246,10.730246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.450001,15.28,-9,-9,4,1,1,0,0,11,4,1,347,150350.41,0,0,1231.5375 -2037,2500,4605,4606,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,7.780735,7.559114,0,2,0,-9,8,0,2,-118.15846,0,0,0,47,2,3,1,2,2,2019,1,2,2,0,38,0,15,1,0,1,0,7.0848017,7.0848017,0,0,0,0,0,0,0,0,1,1,0,5.3942251,0,0,0,43.709999,56.91,29.030001,58.400002,5,1,1,0,0,13,4,1,487,432183.88,0,0,2717.7983 -2037,2500,4606,4605,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.613657,8.4821072,0,2,0,-9,8,0,-2,76.299881,0,0,0,49,2,3,1,2,2,2019,1,1,24,11,38,37,15,1,1,1,0,18.187267,18.187267,0,0,0,0,0,0,0,0,1,1,0,4.9864764,0,0,0,29.030001,58.400002,43.709999,56.91,6,1,1,0,0,13,4,1,487,432183.88,0,0,2717.7983 -2037,2500,4607,-9,4606,4605,4,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.28259,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.939999,45.549999,-9,-9,7,1,1,0,1,13,4,1,487,432183.88,0,0,2717.7983 -2037,2501,4608,-9,4606,4605,3,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-826.24091,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,1,13,1,1,1387,-70962.109,0,0,0 -2038,2502,4609,4610,-9,-9,1,1,1,88,1,0,0,0,1,-9,4,3,0,1,2,0,7.964035,7.8095012,1,0,-9,67,0,-3,-4.4622879,0,0,0,91,3,2,1,1,1,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1514587,0,0,52.66,22.35,54.77,21.209999,6,1,1,0,0,9,3,1,847,1103998,0,0,3580.4404 -2038,2502,4610,4609,-9,-9,2,1,0,91,1,0,0,0,3,-9,1,1,0,1,2,5.9896588,6.1860166,0,1,0,-9,67,0,3,-72.901497,0,0,0,88,1,2,3,3,3,2019,2,1,16,4,0,32,15,1,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,21.209999,52.66,22.35,5,1,1,0,0,9,3,1,847,1103998,0,0,3580.4404 -2039,2503,4611,-9,4614,4613,6,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.6724,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,0,1010.5,96199.961,0,0,1608.2324 -2039,2503,4612,-9,4614,4613,7,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1099.2483,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,3,0,1010.5,96199.961,0,0,1608.2324 -2039,2503,4613,4614,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,9,0,5,-35.899784,-9,0,0,42,1,4,1,-9,-9,2019,1,1,12,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4499383,0,0,0,43.470001,50.150002,39.599998,55.82,5,1,1,0,0,9,3,0,1010.5,96199.961,0,0,1608.2324 -2039,2503,4614,4613,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.1199055,8.5878391,0,2,0,-9,24,0,-5,37.270905,-9,0,1,47,2,3,1,2,2,2019,1,2,17,3,50,0,15,1,0,1,0,10.956964,10.956964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.599998,55.82,43.470001,50.150002,4,1,1,0,0,9,3,0,1010.5,96199.961,0,0,1608.2324 -2039,2504,4615,-9,4614,4613,3,1,0,20,2,0,2,1,2,-9,7,2,0,0,3,6.7148433,6.6213899,0,3,0,0,0,-9,0,-1025.3435,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,4,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.459999,58.790001,-9,-9,6,1,1,0,0,9,2,0,547,9937.9268,0,0,415.72931 -2039,2505,4616,-9,4614,4613,4,1,0,19,2,0,2,0,2,-9,2,1,0,0,4,7.2223158,7.6434197,0,3,0,0,0,-9,0,-923.20227,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,32,0,15,1,0,-9,1,6.6579604,6.6579604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.060001,56.130001,-9,-9,4,1,1,0,1,9,3,0,1573,241393.22,0,0,791.81824 -2040,2506,4617,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,8.8734121,8.7724304,0,3,0,0,0,-9,0,-991.60236,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,62,50,15,1,0,-9,0,12.268,12.268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.939999,45.860001,-9,-9,6,3,4,0,0,6,5,1,112,-15021.533,0,0,2010.7469 -2041,2507,4618,-9,4620,4619,4,1,1,9,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-885.75354,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,11,3,0,366.66666,958157.31,0,0,1331.433 -2041,2507,4619,4620,-9,-9,2,1,1,59,1,0,0,0,2,-9,6,3,0,0,3,0,6.4313745,6.1869111,1,0,-9,42,0,2,-111.92186,0,0,0,57,2,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0678449,22.632576,3,60.060001,37.110001,37.34,55.419998,6,1,1,0,0,11,3,0,366.66666,958157.31,0,0,1331.433 -2041,2507,4620,4619,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.5150495,7.5488853,0,1,0,-9,42,0,-2,-2.6742923,0,0,0,59,2,3,3,3,-9,2019,2,2,10,0,38,40,15,1,0,3,0,6.9606113,6.9606113,0,0,0,0,0,0,0,7,1,1,0,0,0,14.12513,3,37.34,55.419998,60.060001,37.110001,6,1,1,0,0,11,3,0,366.66666,958157.31,0,0,1331.433 -2042,2508,4621,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,2,8.3809385,8.6505413,0,3,0,0,0,-9,0,-964.5946,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,3,38,38,15,1,0,-9,0,14.127726,14.127726,0,0,0,0,0,0,0,0,0,0,0,3.3539317,0,0,0,49.580002,38.07,-9,-9,5,4,5,0,0,8,4,0,1146,66346.977,0,0,1389.8549 -2043,2509,4622,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,1,0,4.9806256,4.41365,3,0,-9,0,1,0,-886.27948,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4720812,4.8826032,0,0,52.349998,38.689999,-9,-9,6,1,1,0,0,8,2,1,343,-930.34631,0,0,1115.4429 -2044,2510,4623,-9,4626,4625,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1094.0258,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,4,1,691.75,469820.91,0,0,3796.7556 -2044,2510,4624,-9,4626,4625,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1029.9503,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,4,1,691.75,469820.91,0,0,3796.7556 -2044,2510,4625,4626,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.6583147,8.8522749,0,2,0,-9,8,0,-2,62.425201,0,0,0,44,2,3,1,1,1,2019,1,2,17,5,42,43,15,1,1,1,0,17.530277,17.530277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.099998,39.290001,46.709999,3,1,1,0,0,6,4,1,691.75,469820.91,0,0,3796.7556 -2044,2510,4626,4625,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,7.8206034,7.7600675,0,2,0,-9,8,0,2,-2.49804,0,0,1,42,2,4,1,3,3,2019,1,1,17,5,26,36,15,1,1,1,0,13.804301,13.804301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.290001,46.709999,31.77,61.099998,6,1,1,0,1,6,4,1,691.75,469820.91,0,0,3796.7556 -2045,2511,4627,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,5,8.2691422,8.0916672,6.9993644,3,0,0,0,-9,0,-1016.6685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,29,15,1,0,-9,0,14.36364,14.36364,0,0,0,0,0,0,0,0,1,1,0,6.2638931,6.6278434,0,0,51.73,58.82,-9,-9,6,1,1,0,0,1,5,1,394,-70853.625,0,0,2110.7954 -2046,2512,4628,4631,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,4,8.8358116,8.7776079,0,2,0,-9,9,0,1,20.90737,0,0,0,33,2,4,1,2,3,2019,1,1,9,0,47,40,15,1,0,1,0,15.49346,15.49346,0,0,0,0,0,0,0,0,1,1,0,6.8485594,0,0,0,40.009998,58.610001,48.279999,60.18,6,1,1,0,0,6,4,1,430,99102.516,0,0,2916.6074 -2046,2512,4629,-9,4631,4628,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.38086,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,430,99102.516,0,0,2916.6074 -2046,2512,4630,-9,4631,4628,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.1539,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,430,99102.516,0,0,2916.6074 -2046,2512,4631,4628,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,4,6.9675736,7.158061,0,2,0,-9,9,0,-1,-22.957727,0,0,1,34,2,4,1,2,2,2019,1,2,8,0,18,17,15,1,0,1,0,6.9734006,6.9734006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,40.009998,58.610001,6,1,1,0,0,6,4,1,430,99102.516,0,0,2916.6074 -2047,2513,4632,4634,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,0,2,7.8815637,8.0155506,0,2,0,-9,17,0,4,-35.101761,-9,0,0,36,2,2,3,3,2,2019,2,2,13,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.029999,52.5,28.719999,46.889999,3,2,3,0,0,2,2,1,506.5,180610.86,0,0,2266.6128 -2047,2513,4633,-9,4634,4632,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.8154,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,2,2,1,506.5,180610.86,0,0,2266.6128 -2047,2513,4634,4632,-9,-9,2,1,0,36,1,0,3,0,2,-9,97,3,0,0,2,0,0,0,2,0,-9,17,0,-4,50.954185,0,0,1,40,2,2,1,3,3,2019,3,1,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.719999,46.889999,37.029999,52.5,4,2,3,0,0,2,2,1,506.5,180610.86,0,0,2266.6128 -2047,2513,4635,-9,4634,4632,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.59729,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,1,506.5,180610.86,0,0,2266.6128 -2048,2514,4636,-9,4637,4638,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.3668,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,4,1,570,661254.19,0,0,3980.3669 -2048,2514,4637,4638,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.4657574,8.0481205,0,2,0,-9,7,0,2,-125.09682,0,0,1,41,2,2,1,3,3,2019,1,1,7,0,35,0,15,1,0,1,0,11.662783,11.662783,0,0,0,0,0,0,0,0,1,1,0,2.7614872,0,0,0,53.810001,53.560001,51.080002,45.970001,6,1,1,0,0,1,4,1,570,661254.19,0,0,3980.3669 -2048,2514,4638,4637,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,2,8.4902401,8.2967768,0,2,0,-9,7,0,-2,112.73769,0,0,0,43,1,4,1,3,3,2019,1,2,7,0,39,0,15,1,0,1,0,16.128803,16.128803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.080002,45.970001,53.810001,53.560001,6,1,1,0,0,1,4,1,570,661254.19,0,0,3980.3669 -2049,2515,4639,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,3,9.0601788,9.0092735,0,3,0,0,0,-9,0,-1004.0272,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,45,15,1,0,-9,0,21.907236,21.907236,0,0,0,0,0,0,0,0,0,0,0,3.1584418,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,8,5,1,928,142504.84,0,0,2726.3628 -2050,2516,4640,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,3,9.7020798,9.7637777,0,3,0,0,0,-9,0,-1143.2434,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,47,47,15,1,0,-9,0,41.248489,41.248489,0,0,0,0,0,0,0,0,0,0,0,4.6177201,0,0,0,60.290001,52.110001,-9,-9,2,1,1,0,0,7,5,1,108,147957.39,0,0,3842.7017 -2051,2517,4641,-9,4643,4644,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.6652,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,1,1281.75,104612.05,0,0,954.72791 -2051,2517,4642,-9,4643,4644,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-854.25824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,2,1,1281.75,104612.05,0,0,954.72791 -2051,2517,4643,4644,-9,-9,2,1,0,32,1,1,2,0,2,-9,2,1,0,0,4,7.0022802,7.0119805,0,2,0,-9,9,0,-1,76.37442,0,0,1,33,2,5,1,-9,-9,2019,1,1,8,0,8,15,15,1,0,1,0,16.053181,16.053181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,59.43,58.049999,7,1,1,0,0,5,2,1,1281.75,104612.05,0,0,954.72791 -2051,2517,4644,4643,-9,-9,1,1,1,33,1,1,2,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,9,0,1,-3.1912432,0,0,0,32,2,4,1,2,2,2019,1,2,6,0,60,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,51.240002,58.84,7,1,1,0,0,5,2,1,1281.75,104612.05,0,0,954.72791 -2052,2518,4645,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,0,3,0,6.4079208,6.2490311,3,0,0,0,-9,0,-1028.7336,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,7,1,1,0,3.5390551,6.2806697,13.318857,3,58.349998,33.740002,-9,-9,4,1,1,0,0,9,2,1,790,348625.59,0,0,371.13907 -2053,2519,4646,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,8.2808876,8.5051928,6.3876524,3,0,0,0,-9,0,-992.31696,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,47,45,15,1,0,-9,0,11.413777,11.413777,0,0,0,0,0,0,0,0,0,0,0,6.2291536,0,0,0,61.119999,51.57,-9,-9,5,1,1,0,0,5,5,1,428,367260.44,0,0,2237.7151 -2053,2520,4647,-9,4646,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.1517372,7.4117117,0,3,0,0,0,-9,0,-983.3562,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,27,9,37,37,15,1,1,-9,1,5.0151348,5.0151348,0,0,0,0,0,0,0,0,0,0,0,1.0552911,0,0,0,14.24,69.18,-9,-9,4,1,1,0,0,5,2,1,44,182068.36,0,0,-777.61224 -2053,2521,4648,-9,4646,-9,3,1,0,19,2,0,0,0,2,0,7,2,0,0,3,5.7336912,5.8309174,0,3,0,0,0,-9,0,-1077.0378,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0337,0,0,0,40.130001,53.209999,-9,-9,6,1,1,0,0,5,2,1,113,70899.953,0,0,260.77463 -2054,2522,4649,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-974.88269,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.040001,12.47,-9,-9,1,1,1,1,1,13,1,1,824,250731.42,0,0,318.5159 -2055,2523,4650,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1016.4875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,5,0,0,15,4,1,-9,0,0,0,1,0,0,18.068489,0,0,0,0,1,1,0,4.1674819,0,0,0,41.349998,51.09,-9,-9,5,1,1,0,0,5,1,1,2041,77751.219,0,0,991.92139 -2056,2524,4651,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,3,8.4362946,8.5965948,0,3,0,0,0,-9,0,-980.66394,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,38,38,15,1,1,-9,0,17.563133,17.563133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.25,59.939999,-9,-9,6,1,1,0,0,11,5,1,518,32847.773,0,0,1695.2349 -2057,2525,4652,-9,4655,4658,4,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.52625,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2057,2525,4653,-9,4655,4658,2,1,1,17,2,1,4,0,2,1,2,3,0,0,4,7.804481,7.6085024,0,2,0,0,0,-9,0,-1064.2059,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,25,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.14424999,0,0,0,48,59,-9,-9,5,4,2,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2057,2525,4654,-9,4655,4658,5,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.62811,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2057,2525,4655,4658,-9,-9,1,1,0,39,1,1,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,4,60.104748,0,0,1,35,2,4,1,2,-9,2019,3,6,14,2,0,17,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.290001,61.290001,50,57,4,4,2,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2057,2525,4656,-9,4655,4658,7,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.88287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2057,2525,4657,-9,4655,4658,3,1,0,13,2,1,4,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-999.01093,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,4,2,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2057,2525,4658,4655,-9,-9,6,1,1,35,1,1,4,0,2,-9,2,1,0,0,4,8.5283184,8.2456074,0,2,0,-9,2,0,-4,85.253593,0,0,0,39,2,3,3,-9,-9,2019,2,1,10,1,40,37,15,1,0,3,0,12.69935,12.69935,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,31.290001,61.290001,5,1,1,0,0,9,3,0,445.71429,68362.453,0,0,4659.4229 -2058,2526,4659,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,2,1,0,0,2,7.7976847,7.4475212,0,3,0,0,0,-9,0,-890.43512,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,25,22,15,1,1,-9,0,7.6113672,7.6113672,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.740002,40.529999,-9,-9,4,1,1,0,0,6,3,0,159,1589093.6,0,0,670.68207 -2059,2527,4660,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,2,1,0,0,4,7.1260266,7.0156655,0,3,0,0,0,-9,0,-1012.267,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,20,20,15,1,0,-9,0,6.3876691,6.3876691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.25,59.59,-9,-9,3,1,1,0,0,11,2,0,602,313781.16,0,0,1414.2856 -2060,2528,4661,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,2,8.0551901,7.6839671,0,3,0,0,0,-9,0,-950.59955,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,30,25,15,1,0,-9,1,7.5292845,7.5292845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.530001,57.52,-9,-9,3,1,1,0,0,12,3,1,336,-28521.508,0,0,1408.3181 -2061,2529,4662,-9,-9,-9,1,1,0,49,3,0,1,0,3,-9,3,3,0,1,2,0,0,0,4,0,-9,0,-9,0,-1106.9663,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.599998,20.73,-9,-9,2,2,3,1,0,8,1,0,247.5,-53097.602,0,0,838.59692 -2061,2529,4663,-9,4662,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,-9,0,-9,0,-983.63934,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,8,1,0,247.5,-53097.602,0,0,838.59692 -2062,2530,4664,4665,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,0,4,8.4326334,8.3348656,0,1,0,-9,31,0,3,-116.81947,0,0,0,50,2,2,1,2,2,2019,1,2,7,0,34,34,15,1,0,1,0,11.574577,11.574577,0,0,0,0,0,0,0,0,0,0,0,3.1626852,0,0,0,41.169998,59.310001,43,39,2,1,1,0,0,10,4,1,310,562892.75,0,0,3709.9905 -2062,2530,4665,4664,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,7.7763772,7.6549888,0,1,0,-9,27,0,-3,-57.926624,0,0,0,53,2,4,1,-9,-9,2019,1,1,15,3,25,16,15,1,0,1,0,9.0420284,9.0420284,0,0,0,0,0,0,0,2,0,0,0,0,0,2.0228024,3,43,39,41.169998,59.310001,6,1,1,0,0,10,4,1,310,562892.75,0,0,3709.9905 -2063,2531,4666,4667,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,6.8190851,6.9736638,0,1,0,-9,25,0,-23,-73.868225,0,0,0,75,2,3,3,3,1,2019,2,2,13,1,11,9,15,1,0,4,0,9.5928068,9.5928068,0,0,0,0,0,0,0,7,1,1,0,1.1048635,0,13.175152,1,32.93,61.75,48.560001,53.310001,3,1,1,0,0,9,2,1,360.5,488160.63,0,0,936.70605 -2063,2531,4667,4666,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,6.9852595,7.009551,1,0,-9,25,0,23,17.343372,0,0,0,52,2,3,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7857623,7.0811348,0,0,48.560001,53.310001,32.93,61.75,7,1,1,0,0,9,2,1,360.5,488160.63,0,0,936.70605 -2064,2532,4668,4669,-9,-9,2,1,0,49,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-1,-104.34488,0,0,0,50,1,4,1,3,3,2019,3,1,6,0,0,30,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5415959,0,0,0,62.490002,55.09,57.16,56.150002,6,1,1,0,0,13,4,1,370,833192.81,0,0,6128.0693 -2064,2532,4669,4668,-9,-9,1,1,1,50,1,0,0,0,1,-9,1,1,0,0,4,6.7026401,8.3041801,8.3565779,1,0,-9,7,0,1,87.886253,0,0,0,49,3,4,3,3,3,2019,2,2,6,0,35,50,15,1,0,4,0,2.7753696,2.7753696,0,0,0,0,0,0,0,0,0,0,0,8.3148365,8.1939201,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,13,4,1,370,833192.81,0,0,6128.0693 -2065,2533,4670,4672,-9,-9,2,1,0,36,1,1,3,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,13,0,-1,-39.639404,0,0,1,37,1,4,1,2,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,43.09,54.669998,5,2,3,0,0,6,4,1,941.79999,152349.94,0,0,2911.3438 -2065,2533,4671,-9,4670,4672,3,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.8615,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,4,1,941.79999,152349.94,0,0,2911.3438 -2065,2533,4672,4670,-9,-9,1,1,1,37,1,1,3,0,1,-9,2,1,0,0,4,8.8690367,9.3863087,0,2,0,-9,13,0,1,7.5027304,0,0,0,36,1,4,3,2,1,2019,2,2,15,5,62,60,15,1,1,3,0,14.25987,14.25987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,54.669998,49,56,6,2,3,0,0,6,4,1,941.79999,152349.94,0,0,2911.3438 -2065,2533,4673,-9,4670,4672,4,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.40826,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,4,1,941.79999,152349.94,0,0,2911.3438 -2065,2533,4674,-9,4670,4672,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1013.9207,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,4,1,941.79999,152349.94,0,0,2911.3438 -2066,2534,4675,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,4,0,8.5235147,8.2086983,3,0,0,0,-9,0,-1015.2725,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.16742069,8.5595226,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,5,4,1,1225,642175.44,0,0,3611.9775 -2067,2535,4676,4677,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,1,0,4.3245263,4.2932653,1,0,-9,3,0,-2,0,-9,0,0,81,2,1,3,-9,-9,2019,4,1,32,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0251679,0,0,34.919998,16.66,23.940001,23.190001,1,1,1,0,1,9,2,1,620.5,57143.828,0,0,314.8103 -2067,2535,4677,4676,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,1,1,0,3.7699442,4.0946474,1,0,-9,3,0,2,0,0,0,0,79,2,1,3,-9,-9,2019,4,2,26,9,0,0,15,4,1,4,0,0,0,1,4.5093737,5.6392331,0,0,5.3361106,0,120,1,1,0,2.41693,4.3310981,115.76978,1,23.940001,23.190001,34.919998,16.66,1,1,1,0,1,9,2,1,620.5,57143.828,0,0,314.8103 -2068,2536,4678,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1005.1091,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.860001,47.25,-9,-9,6,1,1,0,0,6,1,1,2275,61115.559,0,0,1505.6907 -2069,2537,4679,4680,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.42768,8.0400248,0,1,0,-9,2,0,4,-24.016687,-9,0,0,26,2,4,1,-9,-9,2019,1,1,11,0,43,0,15,1,0,1,0,14.023369,14.023369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,55.580002,54.200001,57.490002,6,1,1,0,0,2,4,1,569.5,51078.414,0,0,2602.3013 -2069,2537,4680,4679,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,2,0,-4,51.088783,0,1,1,30,2,4,1,2,2,2019,1,2,6,0,0,41,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52.400002,55.580002,6,1,1,0,0,2,4,1,569.5,51078.414,0,0,2602.3013 -2070,2538,4681,-9,4684,4682,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1172.2295,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,800,242103.75,0,0,3276.2322 -2070,2538,4682,4684,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,9.0486383,9.1489124,0,2,0,-9,5,0,10,121.13019,0,0,0,27,2,3,1,3,2,2019,1,2,8,0,40,42,15,1,0,1,0,21.960253,21.960253,0,0,0,0,0,0,0,0,1,1,0,.71478879,0,0,0,55.439999,52.990002,52,54.509998,6,1,1,0,0,12,4,1,800,242103.75,0,0,3276.2322 -2070,2538,4683,-9,4684,4682,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.15631,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,800,242103.75,0,0,3276.2322 -2070,2538,4684,4682,-9,-9,2,1,0,27,1,1,2,0,2,-9,2,1,0,0,3,7.2880511,7.1399884,0,2,0,-9,5,0,-10,-2.2350619,0,1,1,37,1,4,1,-9,-9,2019,1,1,12,0,21,22,15,1,0,1,0,6.0742855,6.0742855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,55.439999,52.990002,6,1,1,0,0,12,4,1,800,242103.75,0,0,3276.2322 -2071,2539,4685,4686,-9,-9,1,1,1,63,1,1,2,0,2,-9,4,3,0,0,3,0,8.1620436,7.9347544,2,0,-9,32,0,0,-56.915497,0,0,0,63,3,4,3,-9,-9,2019,4,2,14,2,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6925716,0,0,43.759998,55.68,54.200001,57.490002,5,1,1,0,0,9,2,1,428,1085159.4,0,0,1883.1162 -2071,2539,4686,4685,-9,-9,2,1,0,63,1,1,2,0,3,-9,4,3,0,0,4,0,5.5385342,5.3922491,2,0,-9,32,0,0,-132.39227,0,0,0,63,2,3,3,2,2,2019,4,1,8,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1242032,5.3156796,0,0,54.200001,57.490002,43.759998,55.68,6,1,1,0,0,9,2,1,428,1085159.4,0,0,1883.1162 -2072,2540,4687,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,4,8.2165499,8.3226452,5.1607256,3,0,0,0,-9,0,-1015.649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,38,36,15,1,1,-9,0,13.339124,13.339124,0,0,0,0,0,0,0,27.5,0,0,0,5.1452727,0,32.920525,3,35.41,58.16,-9,-9,4,1,1,0,1,13,4,1,207,-33093.152,0,0,714.09583 -2072,2541,4688,-9,4687,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,0,5,7.231607,7.3318038,0,3,0,0,0,-9,0,-1015.0955,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,27,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,3,1,309,-8039.7949,0,0,1345.2346 -2072,2542,4689,-9,4687,-9,3,1,0,20,2,0,0,0,2,1,2,1,0,0,4,7.3761954,7.2336788,0,3,0,0,0,-9,0,-1063.7152,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,30,0,15,1,0,-9,1,4.5072188,4.5072188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.810001,57.220001,-9,-9,6,1,1,0,0,13,3,1,709,89947.5,0,0,815.53473 -2073,2543,4690,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,2,1,0,0,3,5.8952584,7.0110307,6.5892935,3,0,0,0,-9,0,-979.33075,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,1,0,-9,0,0,0,1,0,0,0,0,2.0029182,0,0,1,1,0,6.0775557,6.5104251,0,0,42.669998,41.290001,-9,-9,6,1,1,0,0,7,2,1,273,721016.44,0,0,1334.0181 -2074,2544,4691,4692,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,0,4,8.3221884,8.3013868,0,1,0,-9,13,0,-3,-76.284332,0,0,1,40,2,4,1,2,2,2019,1,1,8,0,37,37,15,1,0,1,0,17.325098,17.325098,0,0,0,0,0,0,0,0,0,0,0,2.9811289,0,0,0,51,52.080002,57.16,56.150002,6,1,1,0,0,6,5,1,1856.5,677199.63,0,0,3427.5479 -2074,2544,4692,4691,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.3833961,8.3339577,0,1,0,-9,13,0,3,217.6286,0,0,0,37,1,4,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,11.86449,11.86449,0,0,0,0,0,0,0,0,0,0,0,3.1613834,0,0,0,57.16,56.150002,51,52.080002,6,1,1,0,0,6,5,1,1856.5,677199.63,0,0,3427.5479 -2075,2545,4693,-9,-9,-9,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,5,8.222147,8.1189823,0,3,0,0,0,-9,0,-1007.9235,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,50,50,15,1,0,-9,1,7.6450367,7.6450367,0,0,0,0,0,0,0,0,1,1,0,2.2597635,0,0,0,46.880001,60.959999,-9,-9,6,1,1,0,0,2,4,1,819,-138643.8,0,0,1836.4493 -2076,2546,4694,4695,-9,-9,1,1,0,39,1,0,2,0,1,-9,6,3,0,1,4,0,0,0,2,0,-9,6,0,2,8.5490084,0,0,1,37,2,3,1,3,3,2019,3,3,17,7,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.84382,3,30.24,64.610001,55.959999,49.93,3,1,1,0,0,4,3,1,796.75,113477.34,0,0,1980.4193 -2076,2546,4695,4694,-9,-9,3,1,1,37,1,0,2,0,2,-9,2,1,0,0,3,8.2970963,7.9024925,0,2,0,-9,6,0,-2,18.948112,0,0,0,39,1,4,3,-9,-9,2019,2,1,7,0,40,40,15,1,0,3,0,8.8640203,8.8640203,0,0,0,0,0,0,0,42,1,1,0,2.4794362,0,43.744602,3,55.959999,49.93,30.24,64.610001,4,1,1,0,0,4,3,1,796.75,113477.34,0,0,1980.4193 -2076,2546,4696,-9,4694,4695,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.0885,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,1,796.75,113477.34,0,0,1980.4193 -2076,2546,4697,-9,4694,4695,2,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.19226,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,1,796.75,113477.34,0,0,1980.4193 -2077,2547,4698,4700,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,0,4,8.5636415,8.5421667,0,2,0,-9,13,0,-5,-29.841326,0,0,1,40,2,4,1,2,2,2019,1,2,10,0,37,37,15,1,0,1,0,16.271244,16.271244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.700001,46.279999,42.25,6,1,1,0,0,12,5,1,270.66666,449673.5,0,0,3267.0757 -2077,2547,4699,-9,4698,4700,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.1564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,270.66666,449673.5,0,0,3267.0757 -2077,2547,4700,4698,-9,-9,2,1,1,40,1,0,1,0,2,-9,2,1,0,0,4,8.4289417,8.3658142,0,2,0,-9,13,0,5,-2.1940727,0,0,0,35,2,4,1,2,2,2019,1,1,17,4,35,35,15,1,1,1,0,11.192609,11.192609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.279999,42.25,43.73,59.700001,6,1,1,0,0,12,5,1,270.66666,449673.5,0,0,3267.0757 -2078,2548,4701,4702,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,41,0,-1,0,0,0,0,64,2,4,3,3,2,2019,4,1,24,11,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.530001,48.27,47.75,2,1,1,0,0,2,1,1,278.5,-42331.559,0,0,1950.0432 -2078,2548,4702,4701,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,1,4,0,0,0,1,0,-9,41,0,1,0,0,0,0,63,2,1,3,3,3,2019,4,2,12,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.25625,1,48.27,47.75,30.6,18.530001,6,1,1,0,0,2,1,1,278.5,-42331.559,0,0,1950.0432 -2079,2549,4703,-9,4705,4704,1,1,1,33,3,0,0,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1031.8173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,1,1,1,0,1,1,0,846,0,0,0,456.5484 -2079,2550,4704,4705,-9,-9,3,1,1,50,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,4,0,-3,0,0,0,0,53,3,2,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.169998,56.080002,42.869999,47.119999,4,1,1,1,1,1,1,0,1677.5,100812.02,0,0,103.2072 -2079,2550,4705,4704,-9,-9,2,1,0,53,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,4,0,3,0,0,0,0,50,3,4,3,-9,-9,2019,4,3,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.869999,47.119999,42.169998,56.080002,4,1,1,1,1,1,1,0,1677.5,100812.02,0,0,103.2072 -2080,2551,4706,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,4,0,5.469708,5.3561845,3,0,0,0,-9,0,-925.30371,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,10,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.526042,5.7971048,0,0,45.810001,58.990002,-9,-9,6,1,1,0,0,1,2,1,466,300854.03,0,0,1665.4917 -2081,2552,4707,-9,4708,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,0,2,5.7160854,5.5919886,0,3,0,0,0,-9,0,-1008.6179,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,4,7,15,1,0,-9,1,10.474742,10.474742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.25,48.169998,-9,-9,2,1,1,0,1,5,2,1,1483,-105634.63,0,0,-199.94884 -2081,2553,4708,4709,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,5,8.1307106,7.7616467,0,1,0,-9,6,0,-4,-46.838188,0,0,0,54,2,2,1,2,3,2019,1,3,5,0,40,37,15,1,0,1,0,7.578928,7.578928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.400002,59.869999,48.290001,47.299999,6,1,1,0,0,5,4,1,859.5,-25916.91,0,0,2903.6821 -2081,2553,4709,4708,-9,-9,3,1,1,54,1,0,0,0,2,-9,2,1,0,0,2,7.8094172,7.6766596,0,1,0,-9,6,0,4,7.3846827,0,0,0,50,2,5,1,-9,-9,2019,1,1,9,1,37,37,15,1,0,1,0,6.4664063,6.4664063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.290001,47.299999,46.400002,59.869999,6,1,1,0,0,5,4,1,859.5,-25916.91,0,0,2903.6821 -2082,2554,4710,4714,-9,-9,1,1,1,33,1,1,3,0,3,-9,2,1,0,1,4,7.7781224,7.9945359,0,2,0,-9,9,0,0,-38.908226,0,0,0,33,1,3,1,3,2,2019,1,2,12,0,45,37,15,1,0,1,0,7.2651858,7.2651858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,41.23,59.349998,5,1,1,0,0,13,3,0,305.39999,37967.961,0,0,2368.9324 -2082,2554,4711,-9,4714,4710,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.825,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,0,305.39999,37967.961,0,0,2368.9324 -2082,2554,4712,-9,4714,4710,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.1971,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,0,305.39999,37967.961,0,0,2368.9324 -2082,2554,4713,-9,4714,4710,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.27411,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,0,305.39999,37967.961,0,0,2368.9324 -2082,2554,4714,4710,-9,-9,2,1,0,33,1,1,3,0,1,-9,2,1,0,1,3,5.8196721,6.0236149,0,2,0,-9,9,0,0,45.346191,0,0,1,33,3,4,1,2,3,2019,1,1,12,0,3,2,15,1,0,1,0,16.268017,16.268017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,51.240002,58.84,4,1,1,0,0,13,3,0,305.39999,37967.961,0,0,2368.9324 -2083,2555,4715,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1007.7807,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.669998,31.33,-9,-9,6,1,1,0,0,10,1,0,596,76813.961,0,0,624.1283 -2084,2556,4716,4717,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,0,4,0,8.4272165,8.5392122,1,0,-9,39,0,1,-65.597916,0,0,0,57,2,3,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.112299,8.3777933,0,3,57.16,56.150002,49,48,6,1,1,0,0,11,4,1,1225,240550.95,0,0,3378.9902 -2084,2556,4717,4716,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.3918056,7.7729411,6.6674252,1,0,-9,39,0,-1,14.621819,0,0,0,58,2,4,3,3,3,2019,2,1,12,4,24,37,15,1,1,4,0,8.8918419,8.8918419,0,0,0,0,0,0,0,2,0,0,0,5.0114779,6.9966946,10.934756,3,49,48,57.16,56.150002,6,1,1,0,0,11,4,1,1225,240550.95,0,0,3378.9902 -2085,2557,4718,-9,4719,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-898.57501,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,532.5,-83192.953,0,0,2686.9939 -2085,2557,4719,-9,-9,-9,1,1,0,39,3,0,1,0,1,-9,2,1,0,0,4,8.8283129,8.9601583,0,4,0,0,0,-9,0,-980.45221,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,47,44,15,1,1,-9,0,15.966759,15.966759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,-9,-9,6,1,1,0,0,5,5,1,532.5,-83192.953,0,0,2686.9939 -2086,2558,4720,-9,4723,4722,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1100.4825,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,2,0,533.25,67060.031,0,0,1838.6949 -2086,2558,4721,-9,4723,4722,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.5292,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,2,0,533.25,67060.031,0,0,1838.6949 -2086,2558,4722,4723,-9,-9,1,1,1,32,1,2,2,0,1,-9,1,1,0,0,5,7.7168665,7.6897006,0,2,0,-9,6,0,-4,20.062525,0,0,0,36,2,4,1,-9,-9,2019,1,2,9,1,60,65,15,1,0,1,0,4.3229356,4.3229356,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.602909,3,48.18,61.799999,42.189999,58.810001,5,4,2,0,0,8,2,0,533.25,67060.031,0,0,1838.6949 -2086,2558,4723,4722,-9,-9,2,1,0,36,1,2,2,0,2,-9,5,1,0,0,4,0,0,0,2,0,-9,6,0,4,104.81343,0,0,1,32,1,5,1,-9,-9,2019,1,1,13,3,0,18,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.189999,58.810001,48.18,61.799999,5,1,1,0,1,8,2,0,533.25,67060.031,0,0,1838.6949 -2087,2559,4724,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,4,8.8566351,8.7475986,6.1878014,3,0,0,0,-9,0,-1044.2725,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,44,15,1,0,-9,0,18.151308,18.151308,0,0,0,0,0,0,0,0,1,1,0,7.1032863,0,0,0,58.150002,52.91,-9,-9,4,1,1,0,0,2,5,1,1560,1527542.6,0,0,2413.2061 -2087,2560,4725,-9,4724,-9,2,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-965.70721,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.35164666,0,0,0,49.509998,39.110001,-9,-9,5,1,1,0,0,2,1,1,872,60518.609,0,0,-666.87006 -2088,2561,4726,-9,4727,4728,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1118.2728,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,5,1,699.66669,373141.13,0,0,3488.6372 -2088,2561,4727,4728,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,0,4,8.8155575,8.926712,0,2,0,-9,8,0,-2,26.1581,0,0,1,34,1,3,1,3,3,2019,1,1,15,4,37,37,15,1,1,1,0,19.105112,19.105112,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.837608,1,43.279999,57.130001,50.380001,39.150002,6,1,1,0,0,13,5,1,699.66669,373141.13,0,0,3488.6372 -2088,2561,4728,4727,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,0,3,8.5841427,8.6443529,0,2,0,-9,8,0,2,100.37785,0,0,0,32,1,4,1,2,1,2019,1,2,11,3,44,43,15,1,0,1,0,16.026354,16.026354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.380001,39.150002,43.279999,57.130001,6,1,1,0,0,13,5,1,699.66669,373141.13,0,0,3488.6372 -2089,2562,4729,4730,-9,-9,2,1,0,49,1,0,1,0,2,-9,1,1,0,0,4,7.4351664,7.4096451,0,2,0,-9,16,0,0,-57.512596,0,0,0,49,1,4,1,2,2,2019,1,1,11,0,16,17,15,1,0,1,0,11.452943,11.452943,0,0,0,0,0,0,0,2,1,1,0,.11921907,0,1.7945429,3,50,55,57.16,56.150002,6,1,1,0,0,12,5,1,633,114711.63,0,0,3634.5803 -2089,2562,4730,4729,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,9.0396624,8.8950691,0,2,0,-9,17,0,0,-110.63065,0,0,0,49,2,4,1,2,2,2019,1,2,7,0,52,45,15,1,0,1,0,20.434464,20.434464,0,0,0,0,0,0,0,0,1,1,0,.25319228,0,0,0,57.16,56.150002,50,55,6,1,1,0,0,12,5,1,633,114711.63,0,0,3634.5803 -2089,2562,4731,-9,4729,4730,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1095.6107,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,633,114711.63,0,0,3634.5803 -2090,2563,4732,4735,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,8.5593128,8.7958021,0,2,0,-9,12,0,11,-37.866993,0,0,0,36,2,4,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,14.882749,14.882749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,38.34,62.119999,6,1,1,0,0,12,4,1,575.5,69020.031,0,0,3081.1526 -2090,2563,4733,-9,4732,4735,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-974.3208,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,12,4,1,575.5,69020.031,0,0,3081.1526 -2090,2563,4734,-9,4732,4735,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.25287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,575.5,69020.031,0,0,3081.1526 -2090,2563,4735,4732,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,4,8.0713291,7.9231105,0,2,0,-9,12,0,-11,-10.999616,0,0,0,47,2,4,1,-9,2,2019,1,1,13,2,34,36,15,1,0,1,0,8.5316706,8.5316706,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.34,62.119999,59.43,49.68,6,1,1,0,0,12,4,1,575.5,69020.031,0,0,3081.1526 -2091,2564,4736,-9,4737,4738,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1151.9149,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,5,1,1442.3334,111430.23,0,0,3465.8921 -2091,2564,4737,4738,-9,-9,2,1,0,28,1,1,1,0,2,-9,5,1,0,0,4,7.5875621,7.6071639,0,2,0,-9,6,0,-3,76.992897,0,1,1,31,2,4,1,-9,-9,2019,1,1,3,0,10,18,15,1,0,1,0,20.962065,20.962065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.869999,58.549999,7,1,1,0,0,7,5,1,1442.3334,111430.23,0,0,3465.8921 -2091,2564,4738,4737,-9,-9,1,1,1,31,1,1,1,0,2,-9,1,1,0,0,4,8.7226381,8.7298584,0,2,0,-9,6,0,3,-35.175549,0,0,0,28,2,4,1,1,1,2019,1,2,11,1,40,40,15,1,0,1,0,20.521418,20.521418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.16,56.150002,6,1,1,0,0,7,5,1,1442.3334,111430.23,0,0,3465.8921 -2092,2565,4739,4740,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,3,8.1250992,8.1578093,0,1,0,-9,2,0,0,-3.4890177,0,0,1,31,1,4,1,2,3,2019,1,2,13,4,40,37,15,1,1,1,0,12.88461,12.88461,0,0,0,0,0,0,0,0,0,0,0,.76033843,0,0,0,46.91,41.66,50,57,6,1,1,0,0,8,5,0,557.5,9111.3535,0,0,4267.6631 -2092,2565,4740,4739,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,9.0265722,8.7110243,0,1,0,-9,2,0,0,-109.39993,-9,0,0,31,1,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,18.54117,18.54117,0,0,0,0,0,0,0,0,0,0,0,.71407038,0,0,0,50,57,46.91,41.66,5,4,1,0,0,8,5,0,557.5,9111.3535,0,0,4267.6631 -2093,2566,4741,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,1,1,0,0,4,8.0441885,7.9840384,0,3,0,0,0,-9,0,-959.30475,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,36,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0136468,0,0,0,51.830002,57.200001,-9,-9,4,1,1,0,0,8,4,1,875,516691.97,0,0,1622.2539 -2094,2567,4742,4743,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,0,8.2737131,8.3548689,1,0,-9,57,0,1,-50.487942,0,0,0,78,2,3,3,2,3,2019,4,2,18,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.9242201,0,0,55.23,32.919998,44.880001,46.669998,6,1,1,0,0,9,4,1,631.5,1259555.1,0,0,3007.0405 -2094,2567,4743,4742,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-1,30.220615,0,0,0,79,2,2,3,3,2,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0098836,0,0,0,44.880001,46.669998,55.23,32.919998,6,1,1,0,0,9,4,1,631.5,1259555.1,0,0,3007.0405 -2095,2568,4744,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,2,0,5.4062839,5.3753781,3,0,0,0,-9,0,-942.53076,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1451201,0,0,49.279999,52.09,-9,-9,6,1,1,0,0,1,2,1,879,-33409.879,0,0,341.95178 -2096,2569,4745,4746,-9,-9,2,1,0,58,1,0,0,0,3,-9,1,1,0,0,3,7.5682473,7.7395511,0,1,0,-9,8,0,-4,-78.053146,0,0,0,62,2,3,1,2,3,2019,1,1,14,3,30,12,15,1,0,1,0,8.7294321,8.7294321,0,0,0,0,0,0,0,2,0,0,0,0,0,4.0897851,3,49,48,52,54.509998,6,1,1,0,0,11,4,1,408,1300956.5,0,0,3590.0693 -2096,2569,4746,4745,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.5748062,8.594614,3.5027792,1,0,-9,8,0,4,-.49327409,0,0,0,58,3,3,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,12.194068,12.194068,0,0,0,0,0,0,0,0,0,0,0,4.2938919,0,0,0,52,54.509998,49,48,6,1,1,0,0,11,4,1,408,1300956.5,0,0,3590.0693 -2096,2570,4747,-9,4745,4746,3,1,0,21,2,0,0,0,1,-9,2,1,0,0,4,6.2981415,6.2599907,0,3,0,0,0,-9,0,-1007.6508,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,10,0,15,1,0,-9,1,7.4934745,7.4934745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.790001,47.689999,-9,-9,6,1,1,0,0,11,2,1,106,51081.391,0,0,-959.83356 -2097,2571,4748,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,2,1,0,0,3,7.0953045,7.3253312,5.8443384,3,0,0,0,-9,0,-997.60474,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,22,30,15,1,0,-9,0,6.2675009,6.2675009,0,0,0,0,0,0,0,0,0,0,0,5.1919765,5.3051524,0,0,47.77,43.07,-9,-9,6,1,1,0,0,4,3,0,478,102645.91,0,0,1181.8668 -2098,2572,4749,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,3,0,7.3398104,6.9949007,3,0,0,0,-9,0,-956.38794,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6508317,7.7005882,0,0,50.91,46.91,-9,-9,6,1,1,0,0,13,3,1,1264,972192.13,0,0,611.15308 -2099,2573,4750,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,1,3,0,7.2050676,6.9034848,3,0,0,0,-9,0,-984.97388,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8193243,7.2173357,0,0,55.529999,51.549999,-9,-9,7,1,1,0,0,4,2,1,912,306049.91,0,0,1534.7277 -2100,2574,4751,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,8,3,1,1,1,0,4.5939412,4.431941,3,0,0,0,-9,0,-1061.4478,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6928349,0,0,0,42.189999,35.23,-9,-9,2,3,4,0,1,8,2,1,521,-69577.102,0,0,1284.8359 -2101,2575,4752,4753,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,2,7.1102819,7.6139064,6.9777889,1,0,-9,25,0,1,82.802513,0,0,0,52,1,3,3,3,3,2019,2,1,11,3,15,15,15,1,0,4,0,9.6330318,9.6330318,0,0,0,0,0,0,0,2,1,1,0,6.5141411,0,0,2,53.610001,21.959999,54.369999,54.799999,6,1,1,0,0,6,5,1,996.5,604678,0,0,4330.3105 -2101,2575,4753,4752,-9,-9,1,1,1,52,1,0,0,0,1,-9,4,3,0,0,3,0,9.0369329,8.6188021,1,0,-9,25,0,-1,-81.309959,0,0,0,53,1,2,1,2,-9,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8483973,0,0,0,54.369999,54.799999,53.610001,21.959999,6,1,1,0,0,6,5,1,996.5,604678,0,0,4330.3105 -2102,2576,4754,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,1,0,8.2590904,8.1679153,3,0,0,0,-9,0,-982.92938,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2242484,8.1353722,0,0,43.5,28.950001,-9,-9,6,1,1,0,0,11,4,1,2880,623999.06,0,0,2246.9231 -2103,2577,4755,4756,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.8163328,8.4047775,0,1,0,-9,7,0,8,-68.240547,0,0,0,51,2,4,1,2,2,2019,1,1,6,0,46,46,15,1,0,1,0,10.558719,10.558719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.310001,49.810001,45.799999,54.59,6,1,1,0,0,12,5,1,262,1098650.9,0,0,3676.8076 -2103,2577,4756,4755,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,7.9263434,8.2800636,0,1,0,-9,7,0,-8,-98.041855,0,0,0,59,2,3,1,3,3,2019,1,2,12,1,40,40,15,1,0,1,0,11.427865,11.427865,0,0,0,0,0,0,0,7,0,0,0,0,0,10.633806,3,45.799999,54.59,59.310001,49.810001,6,1,1,0,0,12,5,1,262,1098650.9,0,0,3676.8076 -2103,2578,4757,-9,4755,4756,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,8.1005287,7.932631,0,3,0,0,0,-9,0,-1152.7076,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,37,15,1,0,-9,1,10.55439,10.55439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.82,55.869999,-9,-9,6,1,1,0,0,12,4,1,804,173693.56,0,0,1978.7213 -2104,2579,4758,4759,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,47,0,-14,-48.491135,0,0,0,78,2,3,3,3,3,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.07,39.470001,40.900002,50.549999,4,1,1,0,0,1,2,1,1031.5,275263.66,0,0,2388.6946 -2104,2579,4759,4758,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.3918328,7.3155136,1,0,-9,47,0,14,-31.063726,0,0,0,64,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2355652,0,0,40.900002,50.549999,44.07,39.470001,6,1,1,0,0,1,2,1,1031.5,275263.66,0,0,2388.6946 -2105,2580,4760,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,4,3,0,0,5,4.7937145,7.8204851,7.8235598,3,0,0,0,-9,0,-980.36206,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6731696,7.5667286,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,10,3,1,1560,1318066.1,0,0,1218.8981 -2106,2581,4761,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,1,1,0,0,3,7.9788175,7.8814707,0,3,0,0,0,-9,0,-995.49652,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,36,30,15,1,1,-9,0,9.4190207,9.4190207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.18,63.880001,-9,-9,2,1,1,0,0,2,4,1,291,1062302.4,0,0,2745.4666 -2107,2582,4762,4765,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,7.8414817,7.9587746,0,2,0,-9,10,0,1,-20.541977,0,0,0,47,2,3,1,1,2,2019,1,2,8,0,39,41,15,1,0,1,0,12.141082,12.141082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.610001,51.099998,45.490002,50.810001,6,1,1,0,0,1,4,1,759,291677.31,0,0,2418.4565 -2107,2582,4763,-9,4762,4765,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.5474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,759,291677.31,0,0,2418.4565 -2107,2582,4764,-9,4762,4765,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.12469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,4,1,759,291677.31,0,0,2418.4565 -2107,2582,4765,4762,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,0,3,8.0099154,7.9974575,0,2,0,-9,10,0,-1,-135.58337,-9,0,0,48,2,4,1,2,2,2019,1,1,10,0,40,0,15,1,0,1,0,8.4355392,8.4355392,0,0,0,0,0,0,0,0,0,0,0,6.163765,0,0,0,45.490002,50.810001,53.610001,51.099998,6,1,1,0,0,1,4,1,759,291677.31,0,0,2418.4565 -2108,2583,4766,4767,-9,-9,2,1,0,59,1,0,0,0,1,-9,6,3,0,1,3,0,0,0,1,0,-9,8,0,2,40.36697,-9,0,0,57,1,3,3,-9,-9,2019,4,1,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.51344,3,49,48,51,49,5,3,4,0,1,11,3,1,1268.5,22474.105,0,0,2625.739 -2108,2583,4767,4766,-9,-9,1,1,1,57,1,0,0,0,1,-9,97,3,0,0,3,0,7.7141633,7.8255787,1,0,-9,30,0,-2,-29.727676,0,0,0,59,1,3,3,3,2,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2290359,7.5554333,0,2,51,49,49,48,5,3,4,0,0,11,3,1,1268.5,22474.105,0,0,2625.739 -2109,2584,4768,4769,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,1,-50.775887,0,0,0,69,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.360001,45.470001,62.849998,38.459999,7,1,1,0,0,7,2,1,1079.5,386987.69,0,0,856.68115 -2109,2584,4769,4768,-9,-9,2,1,1,69,1,0,0,0,2,-9,1,1,0,0,4,6.1276493,5.9318109,0,1,0,-9,9,0,-1,-14.966878,0,0,0,70,3,4,3,-9,-9,2019,2,1,7,0,38,40,15,1,0,4,0,1.4248835,1.4248835,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.849998,38.459999,56.360001,45.470001,6,1,1,0,0,7,2,1,1079.5,386987.69,0,0,856.68115 -2109,2585,4770,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.0103321,6.8371658,0,3,0,0,0,-9,0,-890.50269,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,40,15,1,0,-9,0,2.7438374,2.7438374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.629997,39.959999,-9,-9,7,1,1,0,0,7,2,1,615,30140.781,0,0,-53.128849 -2110,2586,4771,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,7.9771924,8.0833435,0,3,0,0,0,-9,0,-993.88745,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,40,43,15,1,0,-9,0,9.1990328,9.1990328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,1,3,4,0,0,8,4,0,313,404533.69,0,0,2519.6965 -2110,2587,4772,-9,-9,4771,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,7.2750759,7.4639473,0,3,0,0,0,-9,0,-1043.7552,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,4,22,0,15,1,1,-9,1,7.6637225,7.6637225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,-9,-9,5,3,4,0,0,8,3,0,326,80670.914,0,0,1010.1007 -2110,2588,4773,-9,-9,4771,3,1,1,18,2,0,0,0,2,1,2,1,0,0,4,6.7184649,7.1161857,0,3,0,0,0,-9,0,-855.62537,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,1,17,0,15,1,0,-9,1,7.0138998,7.0138998,0,0,0,0,0,0,0,0,1,1,0,.96617776,0,0,0,41.060001,62.040001,-9,-9,5,3,4,0,0,8,2,0,106,55603.719,0,0,917.29816 -2111,2589,4774,-9,-9,-9,1,1,0,39,3,0,0,0,2,-9,2,1,0,0,3,7.671824,7.7481256,0,3,0,-9,0,-9,0,-1009.4988,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,0,5.9715362,5.9715362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.950001,49.709999,-9,-9,6,1,1,0,0,5,3,1,1652,-105168.99,0,0,2016.504 -2112,2590,4775,4776,-9,-9,2,1,1,74,1,0,0,0,1,-9,1,1,0,0,3,4.6442103,6.5746107,6.2845044,1,0,-9,8,0,0,-26.571693,0,0,0,74,2,5,1,-9,-9,2019,1,1,9,1,20,20,15,1,0,1,0,.54269242,.54269242,0,0,0,0,0,0,0,0,1,1,0,4.2286077,6.2260413,0,0,53,47,46.82,62.330002,6,1,1,0,0,11,5,1,790.5,3214950.8,0,0,8426.3037 -2112,2590,4776,4775,-9,-9,1,1,0,74,1,0,0,0,2,-9,1,1,0,0,5,9.6022243,9.5799122,0,1,0,-9,49,0,0,78.381493,0,0,0,74,1,3,1,3,3,2019,1,2,11,0,1,2,15,1,0,1,0,1829.6821,1829.6821,0,0,0,0,0,0,0,0,1,1,0,8.3030653,0,0,0,46.82,62.330002,53,47,6,1,1,0,0,11,5,1,790.5,3214950.8,0,0,8426.3037 -2113,2591,4777,-9,-9,-9,1,1,0,40,3,0,2,0,1,1,2,1,0,0,4,0,0,0,4,0,0,0,-9,0,-989.84436,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,3,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.639999,53.77,-9,-9,6,3,4,0,0,7,1,0,1185.6666,-5487.9478,0,0,1580.1968 -2113,2591,4778,-9,4777,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-867.27838,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,7,1,0,1185.6666,-5487.9478,0,0,1580.1968 -2113,2591,4779,-9,4777,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1089.1428,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,3,4,0,0,7,1,0,1185.6666,-5487.9478,0,0,1580.1968 -2114,2592,4780,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,6.4088311,5.7571163,3,0,0,0,-9,0,-1013.6461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5239391,6.1061935,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,9,2,1,148,136632.75,0,0,-10.948052 -2115,2593,4781,4782,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.1234522,6.8587308,1,0,-9,51,0,0,-33.500851,0,0,0,68,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.7862825,5.3572493,1,57.73,54.529999,58.07,15.1,5,1,1,0,0,7,2,1,429,982434,0,0,1881.2299 -2115,2593,4782,4781,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,51,0,0,-30.380892,0,0,0,68,2,4,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,14.138314,0,0,0,0,0,1,1,0,2.7866085,0,0,0,58.07,15.1,57.73,54.529999,5,1,1,0,0,7,2,1,429,982434,0,0,1881.2299 -2116,2594,4783,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-979.04755,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,29.1,-9,-9,4,1,1,0,0,13,1,1,583,-50554.359,0,0,1078.1946 -2117,2595,4784,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,3,0,5.8968806,5.7707047,3,0,-9,0,1,0,-971.14197,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,20.991255,0,0,0,0,1,1,0,0,5.8122478,0,0,30.360001,40.25,-9,-9,2,1,1,0,0,7,2,1,414,360627.06,0,0,1759.0042 -2118,2596,4785,-9,4786,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-939.72162,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,1,0,705.5,-16660.723,0,0,2093.688 -2118,2596,4786,-9,-9,-9,1,1,0,37,2,0,1,0,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.3745,-9,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.339996,-9,-9,6,4,2,0,1,8,1,0,705.5,-16660.723,0,0,2093.688 -2119,2597,4787,4788,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,2,8.3895159,8.5881414,0,1,0,-9,7,0,-1,4.447444,0,0,1,33,1,5,1,2,1,2019,1,1,7,2,40,0,15,1,0,1,0,12.599514,12.599514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.43,52.369999,51.139999,60.450001,7,1,1,0,0,4,5,1,867,70675.438,0,0,3086.8242 -2119,2597,4788,4787,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,5,8.411027,8.5106287,0,1,0,-9,7,0,1,19.062956,0,0,0,32,1,2,1,2,2,2019,1,2,8,2,49,0,15,1,0,1,0,9.6008329,9.6008329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,48.43,52.369999,6,1,1,0,0,4,5,1,867,70675.438,0,0,3086.8242 -2120,2598,4789,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,1,1,0,0,4,8.5871239,8.6795835,0,3,0,0,0,-9,0,-1068.8353,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,12,22,15,1,0,-9,0,50.690987,50.690987,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53,55,-9,-9,6,1,1,0,0,13,5,0,152,72590.047,0,0,1956.1685 -2121,2599,4790,4793,-9,-9,2,1,1,55,1,1,2,0,3,-9,2,1,0,0,4,8.8912582,8.4815903,0,2,0,-9,6,0,23,2.248867,-9,0,0,32,2,5,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,19.379486,19.379486,0,0,0,0,0,0,0,0,1,1,0,4.4332051,0,0,0,54,53,46.299999,58.970001,6,4,5,0,0,2,4,0,648.75,677040.94,0,0,3405.5071 -2121,2599,4791,-9,4793,4790,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.2299,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,2,4,0,648.75,677040.94,0,0,3405.5071 -2121,2599,4792,-9,4793,4790,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.25018,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,2,4,0,648.75,677040.94,0,0,3405.5071 -2121,2599,4793,4790,-9,-9,1,1,0,32,1,1,2,0,2,-9,2,1,0,0,5,5.427309,5.5002894,0,2,0,-9,11,0,-23,-33.007961,0,0,1,55,3,4,1,3,1,2019,1,2,11,4,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.299999,58.970001,54,53,7,3,4,0,0,2,4,0,648.75,677040.94,0,0,3405.5071 -2122,2600,4794,4795,-9,-9,2,1,0,72,1,0,0,0,2,-9,2,1,0,0,5,7.3570766,7.9910917,7.6925774,1,0,-9,43,0,0,-22.878479,0,0,0,72,1,3,3,2,2,2019,2,1,6,0,4,4,15,1,0,4,0,43.169853,43.169853,0,0,0,0,0,0,0,7,1,1,0,0,7.6194797,13.777787,3,59.43,58.049999,59.459999,46.990002,7,1,1,0,0,9,5,1,408,1494098.3,0,0,5185.6147 -2122,2600,4795,4794,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,8.4717474,8.5905666,1,0,-9,41,0,0,51.513084,0,0,0,72,2,5,1,2,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.084002,8.4832449,8.7180014,3,59.459999,46.990002,59.43,58.049999,6,1,1,0,0,9,5,1,408,1494098.3,0,0,5185.6147 -2123,2601,4796,4797,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,6.1523027,6.2223697,1,0,-9,57,0,-1,-96.656876,0,0,0,76,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,9.8217487,0,0,0,0,0,1,1,0,0,6.2534862,0,0,57.73,54.529999,57.029999,48.060001,6,1,1,0,0,10,2,1,186,490444.34,0,0,1879.1299 -2123,2601,4797,4796,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,1,24.889126,0,0,0,75,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.029999,48.060001,57.73,54.529999,5,1,1,0,0,10,2,1,186,490444.34,0,0,1879.1299 -2124,2602,4798,4799,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.575026,6.8166308,1,0,-9,44,0,6,31.231218,0,0,0,65,2,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.2863736,6.9327092,6.4562426,3,49.02,55.869999,58.32,50.220001,6,1,1,0,0,12,3,1,428,838003,0,0,3738.1685 -2124,2602,4799,4798,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.72505,7.9250259,1,0,-9,44,0,-6,217.79654,0,0,0,71,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5929832,7.6192966,21.133081,3,58.32,50.220001,49.02,55.869999,7,1,1,0,0,12,3,1,428,838003,0,0,3738.1685 -2125,2603,4800,4801,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,-1,0,0,0,0,75,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.84829021,0,0,0,63.66,22.370001,62,41.73,6,1,1,0,0,7,1,1,251,30791.428,0,0,1762.2694 -2125,2603,4801,4800,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,1,0,0,0,0,74,3,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.4648192,0,1.9248412,1,62,41.73,63.66,22.370001,6,1,1,0,0,7,1,1,251,30791.428,0,0,1762.2694 -2126,2604,4802,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,2,8.5941296,8.8997736,0,3,0,0,0,-9,0,-948.46655,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,45,47,15,1,0,-9,0,17.558884,17.558884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.330002,35.66,-9,-9,3,1,1,0,0,2,5,1,134,1151346.1,0,0,2015.5117 -2127,2605,4803,4804,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,9.0032902,8.8570662,0,1,0,-9,4,0,-1,47.454266,0,0,0,32,1,5,1,-9,-9,2019,1,2,8,0,58,57,15,1,0,1,0,13.186654,13.186654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,59.43,58.049999,6,1,1,0,0,8,5,1,761.5,497195.72,0,0,5060.0732 -2127,2605,4804,4803,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,5,8.3515081,8.7147493,0,1,0,-9,4,0,1,-120.94038,0,0,1,31,1,4,1,-9,-9,2019,1,1,11,0,38,38,15,1,0,1,0,15.037354,15.037354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,57.16,56.150002,6,2,3,0,0,8,5,1,761.5,497195.72,0,0,5060.0732 -2128,2606,4805,4806,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.5184679,8.3196058,1,0,-9,42,0,3,97.194496,0,0,0,66,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2180467,8.2034073,0,0,54.790001,55.860001,63.240002,39.689999,7,1,1,0,0,5,4,1,847,1953005,0,0,4196.9795 -2128,2606,4806,4805,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.3614149,7.830637,1,0,-9,42,0,-3,22.91713,0,0,0,69,1,4,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8780699,7.4402332,0,0,63.240002,39.689999,54.790001,55.860001,7,1,1,0,0,5,4,1,847,1953005,0,0,4196.9795 -2129,2607,4807,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1002.1127,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,8.5391493,0,0,0,1,1,0,0,0,0,0,58.560001,6.27,-9,-9,7,1,1,0,0,5,1,0,1405,0,0,0,2978.3418 -2130,2608,4808,4809,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,6.465847,6.8229709,1,0,-9,53,0,0,-51.279675,0,0,0,71,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5862889,7.1648088,0,0,62.099998,51.16,43.209999,38.25,7,1,1,0,0,10,2,1,388,561280.38,0,0,816.96088 -2130,2608,4809,4808,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,1,4,0,7.0739174,6.8614016,1,0,-9,53,0,0,-116.09822,0,0,0,71,3,4,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,30.296837,0,0,0,0,0,1,1,0,0,6.8450761,0,0,43.209999,38.25,62.099998,51.16,6,1,1,0,0,10,2,1,388,561280.38,0,0,816.96088 -2131,2609,4810,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,1,1,0,0,2,7.9178748,7.4905071,0,1,0,-9,9,0,0,2.6041541,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,14,2,36,30,15,1,0,-9,0,8.2251291,8.2251291,0,0,0,0,0,0,0,0,0,0,0,4.0818267,0,0,0,43.25,41.450001,59.139999,52.5,6,1,1,0,0,4,5,1,1231,-100972.02,0,0,1007.3538 -2132,2610,4811,4812,-9,-9,2,1,0,59,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,32,0,-7,15.032592,0,0,0,66,2,2,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.59123027,0,0,0,57.330002,53.459999,62.66,41.869999,6,2,3,0,0,9,4,1,484,1703810,0,0,2939.2051 -2132,2610,4812,4811,-9,-9,1,1,1,66,1,0,0,0,2,-9,1,1,0,0,2,7.4755373,8.6135435,8.0569248,1,0,-9,32,0,7,-133.71933,0,0,0,59,3,3,3,2,2,2019,2,2,7,0,25,15,15,1,0,3,0,7.6885924,7.6885924,0,0,0,0,0,0,0,0,1,1,0,4.1298542,8.0844364,0,0,62.66,41.869999,57.330002,53.459999,6,1,1,0,0,9,4,1,484,1703810,0,0,2939.2051 -2133,2611,4813,-9,-9,-9,1,1,0,42,3,0,2,0,3,-9,2,1,0,0,4,6.3404379,6.5450878,0,4,0,0,0,-9,0,-899.2876,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,20,21,15,1,0,-9,0,3.5016191,3.5016191,0,0,0,0,0,0,0,7,1,1,0,0,0,3.6449139,3,57.16,56.150002,-9,-9,7,1,1,0,0,10,2,0,335,-27061.359,0,0,1460.4824 -2134,2612,4814,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,2,1,0,0,3,8.6794481,8.7477655,0,3,0,0,0,-9,0,-948.62164,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,36,0,15,1,0,-9,0,20.796005,20.796005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,-9,-9,4,1,1,0,1,11,5,0,65,340512.78,0,0,3112.0071 -2134,2613,4815,-9,4814,-9,2,1,1,21,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-924.85065,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.810001,47.490002,-9,-9,5,1,1,1,1,11,1,0,422,-94226.398,0,0,101.95567 -2134,2614,4816,-9,4814,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.1163983,7.5205941,0,3,0,0,0,-9,0,-907.00391,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,36,36,15,1,0,-9,1,6.9647598,6.9647598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.93,59.669998,-9,-9,4,1,1,0,0,11,3,0,174,0,0,0,1224.8488 -2135,2615,4817,4818,-9,-9,1,1,0,27,1,0,1,0,1,-9,2,1,0,0,4,8.0350046,8.0950079,0,2,0,-9,6,0,-1,-25.053059,0,1,1,28,2,3,1,2,2,2019,1,2,13,2,56,63,15,1,0,1,0,7.1928282,7.1928282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.380001,58.290001,48.84,49.189999,6,1,1,0,0,9,4,0,1003,348984.94,0,0,3830.9377 -2135,2615,4818,4817,-9,-9,2,1,1,28,1,0,1,0,2,-9,2,1,0,0,3,8.6313972,8.3182955,0,2,0,-9,6,0,1,111.97739,0,1,0,27,1,4,1,-9,-9,2019,1,1,9,0,45,45,15,1,0,1,0,13.49002,13.49002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.84,49.189999,49.380001,58.290001,4,1,1,0,0,9,4,0,1003,348984.94,0,0,3830.9377 -2135,2615,4819,-9,4817,4818,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.07611,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,0,1003,348984.94,0,0,3830.9377 -2136,2616,4820,4821,-9,-9,2,1,1,77,1,0,0,0,3,-9,2,1,0,0,4,7.9212723,8.6667309,7.7134862,1,0,-9,6,0,-2,-33.726044,0,0,0,79,2,2,3,3,3,2019,2,1,9,0,22,25,15,1,0,4,0,14.593321,14.593321,0,0,0,0,0,0,0,0,1,1,0,.582192,7.6447816,0,0,57.16,56.150002,59.400002,29.59,6,1,1,0,0,7,4,1,390,810688.25,0,0,4582.5977 -2136,2616,4821,4820,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,2,0,5.8189192,5.4635553,1,0,-9,6,0,2,-35.065041,0,0,0,77,3,4,1,3,3,2019,3,2,13,3,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6096931,0,0,59.400002,29.59,57.16,56.150002,6,1,1,0,0,7,4,1,390,810688.25,0,0,4582.5977 -2137,2617,4822,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,5.6653848,6.0414329,3,0,0,0,-9,0,-982.39862,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.8575807,0,3,62.799999,41.869999,-9,-9,1,1,1,0,0,9,2,0,745,64496.539,0,0,1725.7682 -2138,2618,4823,-9,4825,4824,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-943.37891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,13,2,1,331.33334,311736.72,0,0,1955.5825 -2138,2618,4824,4825,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,4,7.4435143,7.4452047,0,2,0,-9,8,0,1,-13.508398,0,0,0,43,2,3,3,-9,-9,2019,2,1,9,1,65,50,15,1,0,3,0,3.4709611,3.4709611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,39.650002,48.16,5,4,1,0,0,13,2,1,331.33334,311736.72,0,0,1955.5825 -2138,2618,4825,4824,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,8,0,-1,28.164808,0,0,1,44,2,4,1,2,2,2019,3,2,20,8,0,16,15,3,1,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,.41967887,0,71.51432,3,39.650002,48.16,51,56,5,1,1,0,0,13,2,1,331.33334,311736.72,0,0,1955.5825 -2139,2619,4826,4827,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,8.0600872,7.944941,5.6796684,1,0,-9,46,0,-8,-20.352217,0,0,0,73,3,3,3,3,3,2019,2,2,16,6,26,0,15,1,1,4,0,13.891539,13.891539,0,0,0,0,0,0,0,0,1,1,0,2.0502751,6.0209298,0,0,49.349998,59.639999,53,47,6,1,1,0,0,7,3,1,319.5,943000.5,0,0,1545.0001 -2139,2619,4827,4826,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,8,80.036385,0,0,0,65,2,4,1,3,2,2019,3,1,11,1,0,10,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,49.349998,59.639999,6,1,1,0,0,7,3,1,319.5,943000.5,0,0,1545.0001 -2140,2620,4828,4829,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,4.7075019,4.7694998,1,0,-9,48,0,-4,-96.653152,0,0,0,71,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9112091,0,0,61.119999,51.57,57.330002,53.459999,7,1,1,0,0,2,2,1,923.5,1067025.6,0,0,1861.3868 -2140,2620,4829,4828,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.7201118,7.6090322,1,0,-9,48,0,4,52.449135,0,0,0,67,2,4,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5655465,7.4115057,0,0,57.330002,53.459999,61.119999,51.57,7,1,1,0,0,2,2,1,923.5,1067025.6,0,0,1861.3868 -2141,2621,4830,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,9.0480881,8.8836603,0,3,0,0,0,-9,0,-939.50061,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,48,53,15,1,0,-9,0,21.183935,21.183935,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.330002,53.459999,-9,-9,6,1,1,0,0,4,5,1,722,2208890.5,0,0,3956.4458 -2141,2622,4831,-9,4830,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.4083357,8.080533,0,3,0,0,0,-9,0,-996.89465,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,43,0,15,1,0,-9,1,12.051009,12.051009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,4,4,1,590,164935.64,0,0,2389.2505 -2142,2623,4832,-9,4833,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1006.3897,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,686.5,79236.227,0,0,1667.6145 -2142,2623,4833,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,0,4,7.0949869,7.0080175,4.8892612,4,0,-9,0,-9,0,-909.51996,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,20,0,15,1,1,-9,0,6.7223206,6.7223206,0,0,0,0,0,0,0,0,1,1,0,4.8418241,0,0,0,34.48,61.029999,-9,-9,5,1,1,0,0,2,2,0,686.5,79236.227,0,0,1667.6145 -2143,2624,4834,-9,-9,-9,1,1,0,22,2,0,0,0,2,0,7,2,0,0,4,6.3242898,6.276144,0,3,0,0,0,-9,0,-995.46259,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.70612586,0,0,0,34.360001,54.290001,-9,-9,6,1,1,0,0,9,2,0,185,54601.469,0,0,-187.80998 -2144,2625,4835,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,7.7519498,7.9078455,0,3,0,0,0,-9,0,-916.37909,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,40,15,1,0,-9,0,7.6003385,7.6003385,0,0,0,0,0,0,0,0,0,0,0,1.009724,0,0,0,44.810001,57.830002,-9,-9,6,1,1,0,0,9,4,1,220,214457.44,0,0,1938.4178 -2145,2626,4836,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,7.5500312,6.9086132,3,0,0,0,-9,0,-1039.8022,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0721235,7.4270186,0,0,55.709999,37.759998,-9,-9,5,1,1,0,0,2,3,1,480,302122,0,0,1941.985 -2146,2627,4837,4838,-9,-9,2,1,1,45,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,5,0,15,-4.8992519,-9,0,0,30,2,3,1,-9,-9,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.040001,58.330002,43.709999,56.91,4,1,1,1,0,12,2,0,379,24341.855,0,0,192.07986 -2146,2627,4838,4837,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,7.1319008,7.370048,0,1,0,-9,5,0,-15,-72.522148,0,0,1,45,2,3,3,2,2,2019,2,2,12,3,21,22,15,1,0,3,0,7.0631204,7.0631204,0,0,0,0,0,0,0,0,1,1,0,2.6131792,0,0,0,43.709999,56.91,38.040001,58.330002,5,1,1,0,0,12,2,0,379,24341.855,0,0,192.07986 -2147,2628,4839,4840,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,7.652133,8.1964884,6.0707211,1,0,-9,3,0,-4,26.984587,0,0,0,64,2,4,3,-9,-9,2019,2,1,6,0,40,48,15,1,0,4,0,6.5157413,6.5157413,0,0,0,0,0,0,0,0,1,1,0,7.0553837,6.1266413,0,0,62.66,52.400002,58.150002,52.91,5,1,1,0,0,5,4,1,506,1175315.8,0,0,3487.1147 -2147,2628,4840,4839,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.4495697,7.5513921,1,0,-9,3,0,4,54.975243,0,0,0,60,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6519837,7.5955043,11.93038,3,58.150002,52.91,62.66,52.400002,6,1,1,0,0,5,4,1,506,1175315.8,0,0,3487.1147 -2148,2629,4841,4842,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,3,8.2057886,8.275013,0,2,0,-9,6,0,-7,114.70448,0,0,1,48,1,2,1,2,2,2019,1,1,8,0,26,28,15,1,0,1,0,14.053679,14.053679,0,0,0,0,0,0,0,2,1,1,0,0,0,4.1361699,3,60.200001,39.82,36.759998,46.669998,6,1,1,0,0,11,5,1,425.66666,206932.19,0,0,3814.1304 -2148,2629,4842,4841,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,0,2,8.4955626,8.5451021,0,2,0,-9,6,0,7,-55.733967,0,0,0,41,2,3,1,2,2,2019,1,2,24,10,38,37,15,1,1,1,0,19.34437,19.34437,0,0,0,0,0,0,0,2,1,1,0,3.7316146,0,0,3,36.759998,46.669998,60.200001,39.82,4,1,1,0,0,11,5,1,425.66666,206932.19,0,0,3814.1304 -2148,2629,4843,-9,4841,4842,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.04974,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,425.66666,206932.19,0,0,3814.1304 -2149,2630,4844,-9,4846,4845,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.1522,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,5,1,1066,299558.56,0,0,3597.7478 -2149,2630,4845,4846,-9,-9,3,1,1,36,1,0,1,0,1,-9,2,1,0,0,4,8.9782934,8.8990726,0,2,0,-9,3,0,7,-98.817734,0,0,0,29,2,5,1,-9,-9,2019,1,1,7,0,50,50,15,1,0,1,0,20.795683,20.795683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50.540001,62.09,6,1,1,0,0,6,5,1,1066,299558.56,0,0,3597.7478 -2149,2630,4846,4845,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,0,5,7.4568677,7.1891365,0,2,0,-9,3,0,-7,-42.12228,0,0,1,36,1,4,1,-9,-9,2019,1,3,6,0,25,26,15,1,0,1,0,7.5294571,7.5294571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.540001,62.09,57.16,56.150002,6,1,1,0,0,6,5,1,1066,299558.56,0,0,3597.7478 -2150,2631,4847,-9,-9,-9,1,1,0,81,2,0,0,0,3,-9,4,3,0,0,2,0,5.9485335,6.0433998,3,0,0,0,-9,0,-986.43231,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.116106,0,0,40.919998,29.99,-9,-9,6,1,1,0,0,6,2,0,322,389920.69,0,0,1470.7921 -2151,2632,4848,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,0,5,8.6866722,8.6498671,0,3,0,0,0,-9,0,-1030.1248,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,8,6,15,1,0,-9,0,69.832199,69.832199,0,0,0,0,0,0,0,2,0,0,0,0,0,3.2718601,3,51.73,58.82,-9,-9,6,1,1,0,0,6,5,1,1480,-48415.93,0,0,2421.4348 -2152,2633,4849,-9,4851,4852,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1053.5111,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,10,5,1,855,2616014.5,0,0,8709.7842 -2152,2633,4850,-9,4851,4852,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,7.5988684,7.6987948,0,2,0,0,0,-9,0,-837.69574,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7808657,0,0,0,50.049999,55.41,-9,-9,7,1,1,0,0,10,5,1,855,2616014.5,0,0,8709.7842 -2152,2633,4851,4852,-9,-9,1,1,0,45,1,0,2,0,1,-9,1,1,0,0,5,9.3428926,9.291688,0,2,0,-9,10,0,-7,-93.092529,0,0,0,52,1,2,1,2,3,2019,1,2,6,0,28,28,15,1,0,1,0,40.327213,40.327213,0,0,0,0,0,0,0,0,0,0,0,5.9203634,0,0,0,57.060001,57.759998,47.009998,44.799999,6,1,1,0,0,10,5,1,855,2616014.5,0,0,8709.7842 -2152,2633,4852,4851,-9,-9,2,1,1,52,1,0,2,0,1,-9,1,1,0,0,2,9.0806551,8.7612009,0,2,0,-9,10,0,7,22.355068,0,0,0,45,1,5,1,2,1,2019,1,1,14,4,21,20,15,1,1,1,0,41.130165,41.130165,0,0,0,0,0,0,0,0,0,0,0,5.9245024,0,0,0,47.009998,44.799999,57.060001,57.759998,5,1,1,0,0,10,5,1,855,2616014.5,0,0,8709.7842 -2153,2634,4853,-9,-9,-9,1,1,0,97,3,0,0,0,3,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1009.1014,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.075290777,0,0,0,55.919998,34.790001,-9,-9,6,1,1,0,0,5,1,1,198,-112736.4,0,0,923.49072 -2154,2635,4854,4855,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,0,3,8.9384489,8.9420252,0,2,0,-9,7,0,0,-20.647291,0,0,0,36,1,4,1,-9,-9,2019,1,1,10,0,38,38,15,1,0,1,0,18.580257,18.580257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.84,51.610001,48.869999,58.549999,6,4,2,0,0,12,5,1,872.33331,384158.47,0,0,4100.2808 -2154,2635,4855,4854,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,0,4,8.8442354,8.8761244,0,2,0,-9,7,0,0,-49.40913,0,0,1,36,2,3,1,2,1,2019,1,2,15,3,43,48,15,1,0,1,0,17.111746,17.111746,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.869999,58.549999,52.84,51.610001,6,1,1,0,0,12,5,1,872.33331,384158.47,0,0,4100.2808 -2154,2635,4856,-9,4855,4854,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.441,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,4,2,0,0,12,5,1,872.33331,384158.47,0,0,4100.2808 -2155,2636,4857,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,1,1,0,0,5,8.6256876,8.7140884,7.2345681,3,0,0,0,-9,0,-1058.5103,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,20,15,1,0,-9,0,16.762896,16.762896,0,0,0,0,0,0,0,0,1,1,0,4.5710464,6.9078236,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,7,5,1,1381,163090.92,0,0,4443.7798 -2156,2637,4858,4859,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,0,4,8.4754705,8.1868277,0,1,0,1,10,-9,2,236.56085,0,0,0,36,2,5,1,3,1,2019,1,2,6,0,37,37,15,1,0,1,0,14.227509,14.227509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,50.900002,45.66,6,1,1,0,0,13,5,0,696,-33424.113,0,0,3877.8477 -2156,2637,4859,4858,-9,-9,2,1,0,36,1,0,0,0,2,-9,5,1,0,0,5,8.3376417,8.2502499,0,1,0,-9,10,-9,-2,-6.8836641,-9,0,1,38,2,4,1,3,3,2019,1,1,11,2,40,0,15,1,0,1,0,12.98474,12.98474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.900002,45.66,57.16,56.150002,6,1,1,0,0,13,5,0,696,-33424.113,0,0,3877.8477 -2157,2638,4860,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,4,7.9986205,7.596149,0,3,0,0,0,-9,0,-1009.494,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,38,38,15,1,0,-9,0,7.9634724,7.9634724,0,0,0,0,0,0,0,42,0,0,0,0,0,36.377647,3,44.25,55.029999,-9,-9,7,1,1,0,0,13,4,1,519,388226.44,0,0,1988.4058 -2158,2639,4861,4862,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,3,8.6216831,8.7532072,0,1,0,-9,40,0,-4,-68.996712,0,0,0,65,3,3,3,3,3,2019,2,1,9,0,15,20,15,1,0,4,0,37.391033,37.391033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,35.669998,58.049999,6,2,3,0,0,8,4,1,762.5,454648.41,0,0,2928.3772 -2158,2639,4862,4861,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,6.2982006,6.610136,1,0,-9,40,0,4,-152.3231,0,0,0,61,1,3,1,3,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0704417,6.6321845,0,0,35.669998,58.049999,57.330002,53.459999,6,2,3,0,0,8,4,1,762.5,454648.41,0,0,2928.3772 -2158,2640,4863,-9,4861,4862,3,1,0,36,2,0,0,0,1,-9,2,1,0,0,4,8.8905687,9.244276,0,3,0,0,0,-9,0,-1080.6895,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,45,41,15,1,0,-9,1,23.470768,23.470768,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1766427,3,54.200001,57.490002,-9,-9,6,2,3,0,0,8,5,1,791,68963.398,0,0,2178.5808 -2158,2641,4864,-9,4861,4862,4,1,1,33,2,0,0,0,1,-9,2,1,0,0,5,8.9507513,8.8435469,0,3,0,0,0,-9,0,-1014.2017,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,45,40,15,1,0,-9,1,19.422354,19.422354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,6,2,3,0,0,8,5,1,550,519198.97,0,0,1191.8455 -2158,2642,4865,-9,4861,4862,5,1,1,28,2,0,0,0,1,-9,2,1,0,0,3,8.1708107,8.3502655,0,3,0,0,0,-9,0,-1000.0419,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,1,40,45,15,1,0,-9,1,11.354272,11.354272,0,0,0,0,0,0,0,0,1,1,0,5.1726751,0,0,0,36.369999,61.5,-9,-9,4,2,3,0,0,8,4,1,235,-87760.469,0,0,1353.1213 -2159,2643,4866,4867,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,5.873529,5.8033061,1,0,-9,39,0,1,65.523163,0,0,0,62,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9359226,5.5139461,0,0,48.279999,53.419998,55.93,52.619999,4,1,1,0,0,11,3,1,303.5,819515.69,0,0,1571.4575 -2159,2643,4867,4866,-9,-9,2,1,1,62,1,0,0,0,3,-9,4,3,0,0,4,0,7.6558552,7.4632754,1,0,-9,4,0,-1,77.88723,0,0,0,63,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7509832,0,0,55.93,52.619999,48.279999,53.419998,6,1,1,0,0,11,3,1,303.5,819515.69,0,0,1571.4575 -2160,2644,4868,-9,4871,4869,3,1,0,17,2,0,3,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-960.15503,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,58.549999,-9,-9,6,2,3,0,0,8,1,0,990.25,-16003.424,0,0,1587.2659 -2160,2644,4869,4871,-9,-9,1,1,1,50,1,0,3,0,3,-9,97,3,0,1,4,0,0,0,2,0,-9,24,0,5,0,0,0,0,45,3,4,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.122177,3,53,55,50,55,6,2,3,0,0,8,1,0,990.25,-16003.424,0,0,1587.2659 -2160,2644,4870,-9,4871,4869,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.33221,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,990.25,-16003.424,0,0,1587.2659 -2160,2644,4871,4869,-9,-9,2,1,0,45,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,24,0,-5,0,0,0,0,50,3,4,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,55,6,2,3,0,0,8,1,0,990.25,-16003.424,0,0,1587.2659 -2161,2645,4872,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-836.48364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,18.759928,0,0,0,0,1,1,0,0,0,0,0,32.740002,24.49,-9,-9,5,1,1,0,0,8,1,0,1671,0,0,0,1381.5635 -2161,2646,4873,-9,4872,-9,2,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,8.2013731,8.1939735,0,3,0,-9,0,-9,0,-958.72003,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,54,-9,-9,6,1,1,0,0,8,4,0,499,-32225.486,0,0,1428.8982 -2162,2647,4874,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-876.9776,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.919998,29.16,-9,-9,5,4,5,0,1,5,1,1,143,155100.14,0,0,1230.4955 -2163,2648,4875,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,2,1,0,0,4,8.5070601,8.4954319,0,3,0,0,0,-9,0,-930.69843,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,55,55,15,1,0,-9,0,9.6470585,9.6470585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.290001,49.68,-9,-9,6,2,3,0,0,6,4,1,103,477143.44,0,0,3122.8469 -2163,2649,4876,-9,4875,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.1296597,8.0184345,0,3,0,0,0,-9,0,-1028.1107,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,48,48,15,1,0,-9,1,7.8066969,7.8066969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,6,4,1,894,69937.078,0,0,1143.1621 -2163,2650,4877,-9,4875,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.1959829,8.2526293,0,3,0,0,0,-9,0,-1035.098,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,40,40,15,1,0,-9,1,10.301214,10.301214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,4,1,1703,61679.539,0,0,848.86353 -2164,2651,4878,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1036.1705,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.053201,0,0,0,12.36,55.98,-9,-9,3,3,4,0,0,2,1,0,506,-176067.23,0,0,2033.4261 -2165,2652,4879,4880,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,7.9009199,7.5761676,0,1,0,-9,39,0,-3,-23.435907,0,0,0,59,2,3,1,2,2,2019,1,2,11,0,45,44,15,1,0,1,0,6.464993,6.464993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,46.439999,48.439999,17.02,6,1,1,0,0,2,4,1,182,584647.5,0,0,2731.9646 -2165,2652,4880,4879,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.0671158,8.240942,4.006381,1,0,-9,10,0,3,-113.02979,0,0,0,56,2,4,1,-9,-9,2019,1,1,15,3,37,37,15,1,0,1,0,13.323568,13.323568,0,0,0,0,0,0,0,0,0,0,0,4.2605147,0,0,0,48.439999,17.02,60.43,46.439999,6,1,1,0,0,2,4,1,182,584647.5,0,0,2731.9646 -2165,2653,4881,-9,4880,4879,3,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,8.0611439,8.1045446,0,3,0,0,0,-9,0,-1068.892,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,47,43,15,1,0,-9,1,8.6140041,8.6140041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.119999,51.57,-9,-9,6,1,1,0,0,2,4,1,526,47325.469,0,0,712.65997 -2166,2654,4882,4883,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.2649775,8.4616499,0,1,0,-9,36,0,-5,-94.211151,0,0,0,63,2,4,1,-9,-9,2019,1,1,13,2,40,50,15,1,0,1,0,11.144474,11.144474,0,0,0,0,0,0,0,0,0,0,0,2.7238865,0,0,0,43.200001,59.970001,57.16,56.150002,6,1,1,0,0,2,5,1,255,819272.69,0,0,4058.6343 -2166,2654,4883,4882,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.3799858,8.5161428,7.2176504,1,0,-9,37,0,5,143.67921,0,0,0,58,2,4,1,3,2,2019,1,2,8,0,39,39,15,1,0,1,0,10.033689,10.033689,0,0,0,0,0,0,0,0,0,0,0,6.9472475,7.226563,0,0,57.16,56.150002,43.200001,59.970001,6,1,1,0,0,2,5,1,255,819272.69,0,0,4058.6343 -2166,2655,4884,-9,4882,4883,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.6549196,8.7357712,0,3,0,0,0,-9,0,-882.37512,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,39,15,1,0,-9,1,13.714262,13.714262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,2,5,1,525,127310.64,0,0,1549.4891 -2167,2656,4885,4886,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,0,5,8.607234,8.4461288,0,1,0,-9,4,0,3,-1.9077525,0,0,0,36,2,4,1,-9,-9,2019,1,1,18,6,58,55,15,1,1,1,0,10.811728,10.811728,0,0,0,0,0,0,0,2,0,0,0,0,0,2.353451,3,37.419998,63,49.799999,56.68,6,1,1,0,0,11,5,1,346.5,329543.94,0,0,3386.7659 -2167,2656,4886,4885,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,0,4,8.226181,8.0032558,0,1,0,-9,4,0,-3,29.306993,0,0,1,39,2,5,1,2,2,2019,1,2,11,0,42,44,15,1,0,1,0,10.876101,10.876101,0,0,0,0,0,0,0,2,0,0,0,0,0,2.9586341,3,49.799999,56.68,37.419998,63,5,1,1,0,0,11,5,1,346.5,329543.94,0,0,3386.7659 -2168,2657,4887,4888,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,0,3,8.4719639,8.8805828,8.0322266,1,0,-9,34,0,4,54.111355,0,0,0,60,2,5,3,-9,-9,2019,2,2,9,0,55,50,15,1,0,3,0,12.18539,12.18539,0,0,0,0,0,0,0,0,0,0,0,2.9760118,8.3589163,0,0,54.369999,54.799999,52.220001,50.549999,7,1,1,0,0,13,5,0,738,1333504.5,0,0,3650.3833 -2168,2657,4888,4887,-9,-9,2,1,0,60,1,0,0,0,2,-9,6,3,0,0,5,0,6.3623009,6.6951122,1,0,-9,34,0,-4,45.889351,0,0,0,64,1,3,1,-9,-9,2019,3,1,12,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3083587,6.2933526,0,0,52.220001,50.549999,54.369999,54.799999,6,1,1,0,0,13,5,0,738,1333504.5,0,0,3650.3833 -2168,2658,4889,-9,4888,4887,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,8.0652924,8.3382015,0,3,0,0,0,-9,0,-1058.3651,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,3,0,37,37,15,1,0,-9,1,8.5454187,8.5454187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.330002,45.860001,-9,-9,7,1,1,0,0,13,4,0,4469,168902.39,0,0,1774.3419 -2168,2659,4890,-9,4888,4887,4,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.7658281,7.425281,0,3,0,0,0,-9,0,-1052.8242,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,8,0,15,1,0,-9,1,30.355701,30.355701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,13,3,0,630,17848.969,0,0,1244.2194 -2169,2660,4891,-9,4892,-9,1,1,1,26,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1011.0136,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1852877,0,0,0,50,57,-9,-9,5,2,3,1,0,8,1,0,598,0,0,0,-233.92766 -2169,2661,4892,-9,-9,-9,2,1,0,47,3,0,1,0,3,-9,6,3,0,0,5,0,0,0,4,0,0,0,-9,0,-945.57312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.68,45.09,-9,-9,7,2,3,0,0,8,1,0,1622,89573.805,0,0,2739.96 -2169,2662,4893,-9,4892,-9,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1044.001,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.959999,55.09,-9,-9,5,2,3,0,0,8,5,0,434,146189.61,0,0,0 -2169,2663,4894,-9,4892,-9,4,1,0,27,2,0,1,0,1,-9,2,1,0,0,5,8.9542189,8.8398037,0,3,0,0,0,-9,0,-1077.7935,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,18,7,35,38,15,1,1,-9,1,27.328934,27.328934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.669998,59.259998,-9,-9,5,2,3,0,0,8,5,0,1565,-61619.797,0,0,3594.6504 -2170,2664,4895,4900,-9,-9,1,1,0,42,1,0,4,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,6,-9,0,12.325727,-9,0,1,42,1,2,1,-9,-9,2019,3,2,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,61.849998,36.73,6,1,1,0,0,8,4,1,867.5,498286.81,0,0,3506.8828 -2170,2664,4896,-9,4895,4900,5,1,0,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-916.6073,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,4,1,867.5,498286.81,0,0,3506.8828 -2170,2664,4897,-9,4895,4900,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1018.9736,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,4,1,867.5,498286.81,0,0,3506.8828 -2170,2664,4898,-9,4895,4900,4,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1051.5602,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,4,1,867.5,498286.81,0,0,3506.8828 -2170,2664,4899,-9,4895,4900,3,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1223.6783,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,4,1,867.5,498286.81,0,0,3506.8828 -2170,2664,4900,4895,-9,-9,2,1,1,42,1,0,4,0,1,-9,2,1,0,0,2,8.9447441,9.2324705,0,2,0,-9,6,-9,0,87.507271,-9,0,0,42,1,5,3,2,2,2019,2,1,9,1,35,0,15,1,0,3,0,29.620039,29.620039,0,0,0,0,0,0,0,0,1,1,0,2.1369569,0,0,0,61.849998,36.73,57.060001,57.759998,6,2,3,0,0,8,4,1,867.5,498286.81,0,0,3506.8828 -2171,2665,4901,-9,-9,-9,1,1,0,67,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-904.00946,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,12,1,0,618,217359.25,0,0,631.92834 -2172,2666,4902,4903,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,5,0,7.0115581,7.1337395,1,0,-9,6,0,12,4.8196211,0,0,0,62,2,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9038177,7.1139302,0,0,60.02,56.419998,46.709999,52.610001,6,1,1,0,0,12,2,1,1234,835082.13,0,0,1539.9713 -2172,2666,4903,4902,-9,-9,2,1,0,62,1,0,0,0,2,-9,1,1,0,0,4,0,5.2455735,4.9752088,1,0,-9,6,0,-12,3.2649174,0,0,0,74,2,5,3,3,3,2019,2,1,10,2,16,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3644457,0,0,46.709999,52.610001,60.02,56.419998,6,1,1,0,0,12,2,1,1234,835082.13,0,0,1539.9713 -2173,2667,4904,4905,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,3,8.9498749,8.732729,0,1,0,-9,15,0,-2,44.732628,0,0,0,56,1,3,3,1,2,2019,2,2,6,0,39,41,15,1,0,4,0,20.777605,20.777605,0,0,0,0,0,0,0,0,0,0,0,1.093663,0,0,0,54.32,48.130001,54.959999,53.169998,6,1,1,0,0,1,5,1,531,1495245.5,0,0,6890.9805 -2173,2667,4905,4904,-9,-9,2,1,1,56,1,0,0,0,1,-9,4,3,0,0,3,0,7.4250851,7.7981668,1,0,-9,16,0,2,-78.130753,0,0,0,54,1,3,1,3,3,2019,3,1,8,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.2293663,7.5653296,0,0,54.959999,53.169998,54.32,48.130001,6,1,1,0,0,1,5,1,531,1495245.5,0,0,6890.9805 -2174,2668,4906,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,3,0,4.499136,4.5499382,3,0,0,0,-9,0,-931.26276,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.8638906,0,0,51,46,-9,-9,5,1,1,0,0,1,2,0,919,405650.22,0,0,1160.0901 -2175,2669,4907,4908,-9,-9,2,1,0,26,1,0,0,0,1,0,7,2,0,0,4,0,0,0,1,0,-9,4,0,-1,-39.369175,-9,1,1,27,1,5,1,-9,-9,2019,3,1,6,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.73,58.82,6,1,1,0,0,1,3,0,2277.5,49490.5,0,0,1996.8533 -2175,2669,4908,4907,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,5,8.1775417,8.2526312,0,1,0,-9,4,0,1,92.143181,0,1,0,26,1,4,2,-9,-9,2019,2,2,7,0,48,43,15,1,0,2,0,10.681679,10.681679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.16,56.150002,6,1,1,0,0,1,3,0,2277.5,49490.5,0,0,1996.8533 -2176,2670,4909,4910,-9,-9,2,1,1,37,1,0,3,0,2,-9,2,1,0,0,5,7.6655779,7.503233,0,2,0,-9,18,0,4,-44.697571,0,0,0,33,3,4,1,3,3,2019,1,1,8,0,40,40,15,1,0,1,0,6.516511,6.516511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,60.119999,54.799999,5,1,1,0,0,12,3,1,607.59998,59494.684,0,0,2560.0305 -2176,2670,4910,4909,-9,-9,1,1,0,33,1,0,3,0,3,-9,2,1,0,0,4,7.386384,7.8583131,0,2,0,-9,18,0,-4,51.687576,0,0,1,37,2,5,1,2,2,2019,1,2,6,0,20,20,15,1,0,1,0,9.4000502,9.4000502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,54.099998,59.110001,5,1,1,0,0,12,3,1,607.59998,59494.684,0,0,2560.0305 -2176,2670,4911,-9,4910,4909,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-926.80542,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,3,1,607.59998,59494.684,0,0,2560.0305 -2176,2670,4912,-9,4910,4909,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-884.32324,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,607.59998,59494.684,0,0,2560.0305 -2176,2670,4913,-9,4910,4909,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.0435,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,3,1,607.59998,59494.684,0,0,2560.0305 -2177,2671,4914,4915,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-3,-44.376476,0,0,0,72,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6288695,0,9.809,3,57.16,56.150002,58.470001,50.220001,7,1,1,0,0,5,3,1,1019,949313.25,0,0,2635.9612 -2177,2671,4915,4914,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.0626287,8.1217918,1,0,-9,50,0,3,18.783377,0,0,0,69,2,4,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0465326,0,0,58.470001,50.220001,57.16,56.150002,6,1,1,0,0,5,3,1,1019,949313.25,0,0,2635.9612 -2178,2672,4916,4917,-9,-9,1,1,1,55,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,8,0,9,0,0,0,0,46,2,3,3,2,2,2019,4,2,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.419998,21.4,36.700001,47.59,5,1,1,0,0,10,1,0,628.5,7558.7988,0,0,1854.949 -2178,2672,4917,4916,-9,-9,2,1,0,46,1,0,0,0,2,-9,97,3,0,1,3,0,0,0,1,0,-9,8,0,0,0,0,0,0,55,3,1,3,2,2,2019,4,1,15,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,36.700001,47.59,55.419998,21.4,3,1,1,0,0,10,1,0,628.5,7558.7988,0,0,1854.949 -2179,2673,4918,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,4,0,0,0,4,0,0,0,-9,0,-801.57025,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,28,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,2.9592478,3,57.16,56.150002,-9,-9,6,1,1,0,0,2,1,0,319,908.97656,0,0,444.82516 -2180,2674,4919,4920,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,5,0,7.1021876,7.2867913,1,0,-9,45,0,4,-76.614296,0,0,0,64,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3269172,7.0646434,0,0,57.060001,57.759998,58.459999,25.940001,7,1,1,0,0,10,3,1,624,1124377.5,0,0,2482.0798 -2180,2674,4920,4919,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,0,6.9592152,7.1994085,1,0,-9,45,0,-4,-8.3193007,0,0,0,68,1,5,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3388705,0,0,58.459999,25.940001,57.060001,57.759998,6,1,1,0,0,10,3,1,624,1124377.5,0,0,2482.0798 -2181,2675,4921,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,4,9.3330507,8.9275093,0,3,0,-9,0,-9,0,-998.97565,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,0,26.469076,26.469076,0,0,0,0,0,0,0,2,1,1,0,0,0,6.815557,3,57.16,56.150002,-9,-9,6,1,1,0,0,7,5,0,686,217517.94,0,0,2923.2131 -2182,2676,4922,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,0,4,8.2954178,8.2179317,0,4,0,0,0,-9,0,-874.84778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,36,35,15,1,0,-9,0,8.5431719,8.5431719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.59,60.849998,-9,-9,3,1,1,0,1,4,3,1,566,9113.0693,0,0,2396.2527 -2183,2677,4923,4925,-9,-9,2,1,1,41,1,0,1,0,2,-9,1,1,0,0,4,9.5639505,9.8426876,0,2,0,-9,7,0,5,58.198067,0,0,0,36,2,5,1,-9,-9,2019,1,1,9,1,50,50,15,1,0,1,0,33.067184,33.067184,0,0,0,0,0,0,0,0,1,1,0,5.8742995,0,0,0,51,56,66.339996,49.419998,6,4,2,0,0,8,5,1,792.33331,3796243.5,0,0,15102.276 -2183,2677,4924,-9,4925,4923,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1142.0656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,5,1,792.33331,3796243.5,0,0,15102.276 -2183,2677,4925,4923,-9,-9,1,1,0,36,1,0,1,0,2,-9,1,1,0,0,5,9.6914206,9.5991678,0,2,0,-9,14,0,-5,59.394314,0,0,1,41,2,4,1,2,2,2019,1,2,7,1,20,44,15,1,0,1,0,100.84152,100.84152,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.339996,49.419998,51,56,7,1,1,0,0,8,5,1,792.33331,3796243.5,0,0,15102.276 -2184,2678,4926,-9,4927,4929,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.21411,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,665.75,304104.03,0,0,2819.2607 -2184,2678,4927,4929,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,0,3,8.3520794,8.5175953,0,2,0,-9,9,0,-13,-11.306862,0,0,1,45,2,4,1,2,2,2019,1,2,12,1,45,50,15,1,0,1,0,12.224724,12.224724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,58.009998,57.16,56.150002,5,1,1,0,0,4,4,0,665.75,304104.03,0,0,2819.2607 -2184,2678,4928,-9,4927,4929,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.31909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,0,665.75,304104.03,0,0,2819.2607 -2184,2678,4929,4927,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,6.7342396,6.5878997,0,2,0,-9,9,0,13,-50.806587,0,0,0,32,2,3,1,-9,-9,2019,1,1,8,0,70,60,15,1,0,1,0,1.600158,1.600158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,44.189999,58.009998,6,1,1,0,0,4,4,0,665.75,304104.03,0,0,2819.2607 -2185,2679,4930,-9,4931,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1077.1178,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,3,1,604,330731.41,0,0,1307.887 -2185,2679,4931,-9,-9,-9,1,1,0,62,2,0,2,0,2,-9,2,1,0,1,2,7.9170837,8.0872345,0,4,0,0,0,-9,0,-1050.7705,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,37,37,15,1,1,-9,0,8.2746897,8.2746897,0,0,0,0,0,0,0,27.5,1,1,0,0,0,17.511522,3,52.450001,15.28,-9,-9,1,3,4,0,0,8,3,1,604,330731.41,0,0,1307.887 -2185,2679,4932,-9,4931,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1030.3821,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,3,4,0,0,8,3,1,604,330731.41,0,0,1307.887 -2186,2680,4933,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1032.3521,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.310001,-9,-9,6,1,1,0,0,11,1,0,187,140331.09,0,0,1533.1091 -2187,2681,4934,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,0,3,0,6.8888454,6.7020912,3,0,0,0,-9,0,-996.94922,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,1.7562437,0,0,0,0,49.797371,0,1,1,0,2.2338154,7.0370164,0,0,57.740002,33.09,-9,-9,6,1,1,0,0,9,2,1,1213,-6338.8062,0,0,903.05896 -2188,2682,4935,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,1,2,0,6.9460268,7.0572629,3,0,0,0,-9,0,-915.49084,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7301373,6.882556,0,0,49.610001,37.25,-9,-9,5,1,1,0,0,13,2,0,596,270779.38,0,0,2314.6965 -2189,2683,4936,-9,-9,-9,1,1,0,43,3,0,1,0,3,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1032.936,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.009998,34.130001,-9,-9,3,2,3,0,1,4,1,1,1139,-235045.95,0,0,1888.8438 -2189,2684,4937,-9,4936,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1034.0171,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.230633,3,50.799999,47.25,-9,-9,3,2,3,0,1,4,1,1,564,0,0,0,0 -2190,2685,4938,-9,4940,4939,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.68494,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,1124.3334,281890.53,0,0,4987.3809 -2190,2685,4939,4940,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.7475929,9.1677666,0,2,0,-9,6,0,6,153.74246,-9,0,0,43,2,5,1,-9,-9,2019,1,1,9,1,38,0,15,1,0,1,0,22.422213,22.422213,0,0,0,0,0,0,0,0,1,1,0,1.5283951,0,0,0,53,54,54.630001,58.830002,6,1,1,0,0,7,5,1,1124.3334,281890.53,0,0,4987.3809 -2190,2685,4940,4939,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,5,8.3872232,8.3585072,0,2,0,-9,19,0,-6,30.770321,0,0,1,49,2,4,1,2,2,2019,1,2,8,1,31,29,15,1,0,1,0,18.371656,18.371656,0,0,0,0,0,0,0,2,1,1,0,4.1821589,0,0,3,54.630001,58.830002,53,54,7,1,1,0,0,7,5,1,1124.3334,281890.53,0,0,4987.3809 -2191,2686,4941,4942,-9,-9,2,1,0,70,1,0,0,0,3,-9,2,1,0,0,3,7.734766,7.6383023,5.7500815,1,0,-9,38,0,8,-42.343117,0,0,0,62,1,3,1,3,2,2019,1,1,9,0,25,30,15,1,0,1,0,10.02291,10.02291,0,0,0,0,0,0,0,0,1,1,0,5.4263668,5.425323,0,0,58.91,45.880001,58.900002,40.369999,6,1,1,0,0,6,5,1,873,2115831.5,0,0,4529.3735 -2191,2686,4942,4941,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,8.7884617,8.6800718,0,1,0,-9,38,0,-8,-30.854244,0,0,0,70,3,3,1,2,2,2019,1,2,11,1,42,43,15,1,0,1,0,17.139441,17.139441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.900002,40.369999,58.91,45.880001,5,1,1,0,1,6,5,1,873,2115831.5,0,0,4529.3735 -2192,2687,4943,4944,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,4,8.1514616,8.1204729,5.1965108,1,0,-9,38,0,0,-178.28792,0,0,0,60,2,4,1,3,3,2019,1,1,11,0,56,55,15,1,0,1,0,7.2318959,7.2318959,0,0,0,0,0,0,0,0,0,0,0,5.1500735,5.4300852,0,0,56.779999,49.380001,45.650002,49.389999,6,1,1,0,0,4,4,1,340.5,893676,0,0,1145.3809 -2192,2687,4944,4943,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,0,4,6.8101182,6.8455925,0,1,0,-9,38,0,0,106.27181,0,0,0,60,3,4,1,3,3,2019,1,2,13,1,10,12,15,1,0,1,0,9.7911892,9.7911892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.650002,49.389999,56.779999,49.380001,6,1,1,0,0,4,4,1,340.5,893676,0,0,1145.3809 -2192,2688,4945,-9,4944,4943,3,1,0,30,2,0,0,0,1,-9,2,1,0,0,4,8.3274784,8.3869791,0,3,0,0,0,-9,0,-999.68121,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,38,40,15,1,0,-9,1,11.951797,11.951797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,4,4,1,421,22309.98,0,0,1480.6134 -2193,2689,4946,-9,-9,-9,1,1,0,23,3,0,1,0,2,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-996.25494,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.740002,55.32,-9,-9,6,1,1,1,0,13,1,0,738.5,12262,0,0,-431.74109 -2193,2689,4947,-9,4946,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-985.88623,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,1,0,738.5,12262,0,0,-431.74109 -2194,2690,4948,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,4.1265035,4.5008883,3,0,0,0,-9,0,-902.52051,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,21,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4141269,0,0,56.52,45.610001,-9,-9,6,1,1,0,0,11,1,1,348,181575.84,0,0,1505.6436 -2195,2691,4949,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,5.7485399,5.7664375,3,0,0,0,-9,0,-967.12372,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.8656425,0,0,53.919998,52.23,-9,-9,6,1,1,0,0,12,2,1,269,361510.88,0,0,55.753197 -2196,2692,4950,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,0,4,8.5697832,8.7122078,0,3,0,0,0,-9,0,-969.72644,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,44,41,15,1,0,-9,0,15.890585,15.890585,0,0,0,0,0,0,0,5.48,1,1,0,0,0,.60262781,3,46.400002,57.349998,-9,-9,5,1,1,0,0,12,5,0,595,406784.81,0,0,1450.7189 -2197,2693,4951,-9,4953,4952,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.67987,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,690,286412.13,0,0,3748.9822 -2197,2693,4952,4953,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,0,5,8.9757347,8.9752026,0,2,0,-9,7,0,1,-3.6294041,0,0,0,34,1,5,1,2,2,2019,1,1,7,0,45,50,15,1,0,1,0,18.718538,18.718538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,6,4,1,690,286412.13,0,0,3748.9822 -2197,2693,4953,4952,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,5,7.5257964,7.5829515,0,2,0,-9,7,0,-1,75.680168,0,0,1,35,1,5,1,2,1,2019,1,2,6,0,12,20,15,1,0,1,0,16.60335,16.60335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,57.060001,57.759998,7,1,1,0,0,6,4,1,690,286412.13,0,0,3748.9822 -2197,2693,4954,-9,4953,4952,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.2175,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,690,286412.13,0,0,3748.9822 -2198,2694,4955,4956,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,1,1,0,7.6391745,7.7829828,1,0,-9,56,0,1,4.9771786,0,0,0,74,3,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,7.5798969,69.032921,2,53.82,13.72,57.91,9.1400003,6,1,1,0,0,11,2,1,1861.5,712661.5,0,0,1544.8218 -2198,2694,4956,4955,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,56,0,-1,-85.34124,0,0,0,75,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,9.1400003,53.82,13.72,4,1,1,0,0,11,2,1,1861.5,712661.5,0,0,1544.8218 -2199,2695,4957,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-927.11182,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,55.23,57.200001,-9,-9,6,1,1,1,0,2,1,0,301,-90943.961,0,0,1381.045 -2199,2696,4958,-9,4957,-9,2,1,0,19,2,0,0,0,2,1,2,1,0,0,3,5.6785359,5.5420713,0,3,0,0,0,-9,0,-995.57129,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,6,0,15,1,0,-9,1,5.2099862,5.2099862,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.18,48.060001,-9,-9,6,4,2,0,0,2,2,0,592,58494.691,0,0,1541.1335 -2200,2697,4959,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,3,7.8378878,7.6683497,0,3,0,0,0,-9,0,-971.8811,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,39,38,15,1,0,-9,0,8.0210962,8.0210962,0,0,0,0,0,0,0,0,0,0,0,.21573509,0,0,0,33.43,41.25,-9,-9,5,1,1,0,1,11,3,1,124,28096.893,0,0,1395.1737 -2201,2698,4960,-9,4962,-9,3,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-917.83496,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,2,0,690.20001,28869.832,0,0,1699.8488 -2201,2698,4961,-9,4962,-9,5,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1067.077,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,8,2,0,690.20001,28869.832,0,0,1699.8488 -2201,2698,4962,-9,-9,-9,1,1,0,42,2,0,4,0,2,-9,2,1,0,0,5,6.7228107,6.850863,0,4,0,0,0,-9,0,-934.47113,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,24,22,15,1,0,-9,0,5.3399787,5.3399787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,3,4,0,0,8,2,0,690.20001,28869.832,0,0,1699.8488 -2201,2698,4963,-9,4962,-9,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.001,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,2,0,690.20001,28869.832,0,0,1699.8488 -2201,2698,4964,-9,4962,-9,2,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1011.6431,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,8,2,0,690.20001,28869.832,0,0,1699.8488 -2202,2699,4965,-9,-9,-9,1,1,0,30,3,0,0,0,1,-9,2,1,0,0,5,9.0006571,8.787879,0,3,0,0,0,-9,0,-1017.5004,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,43,43,15,1,0,-9,0,17.730196,17.730196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,9,5,1,202,182501.28,0,0,1339.1965 -2203,2700,4966,-9,4967,4968,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.4423,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.772212,0,0,0,33.889999,54.630001,-9,-9,2,2,3,0,0,9,5,1,1055.3334,1890206.1,0,0,5661.0952 -2203,2700,4967,4968,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,24,0,-5,73.267677,0,0,0,54,1,4,1,2,1,2019,1,2,13,2,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8765254,0,0,0,50.619999,53.790001,17.190001,61.169998,6,2,3,0,0,9,5,1,1055.3334,1890206.1,0,0,5661.0952 -2203,2700,4968,4967,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,0,4,9.7022476,9.6525583,0,2,0,-9,24,0,5,91.173523,0,0,0,49,2,4,1,2,2,2019,1,1,33,11,40,40,15,1,1,1,0,40.067074,40.067074,0,0,0,0,0,0,0,0,0,0,0,3.3767624,0,0,0,17.190001,61.169998,50.619999,53.790001,2,2,3,0,1,9,5,1,1055.3334,1890206.1,0,0,5661.0952 -2203,2701,4969,-9,4967,4968,3,1,0,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1083.6555,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3314662,0,0,0,28.190001,68.389999,-9,-9,5,2,3,0,0,9,1,1,321,-10654.823,0,0,1738.6101 -2204,2702,4970,-9,4972,-9,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-962.59186,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,9,1,0,432.66666,0,0,0,1279.8083 -2204,2702,4971,-9,4972,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1006.3965,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,432.66666,0,0,0,1279.8083 -2204,2702,4972,-9,-9,-9,1,1,0,38,2,0,3,0,2,-9,97,3,0,1,2,0,0,0,4,0,0,0,-9,0,-865.21136,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,29,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.13516,3,23.530001,42.279999,-9,-9,4,1,1,0,0,9,1,0,432.66666,0,0,0,1279.8083 -2205,2703,4973,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,4,8.9005766,8.6884546,0,3,0,0,0,-9,0,-982.05426,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,40,40,15,1,0,-9,0,18.352743,18.352743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,1,1170,1141357.9,0,0,1992.1498 -2206,2704,4974,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,0,5,8.8357573,8.7620115,0,1,0,-9,8,0,-3,20.999989,0,0,0,-9,-9,-9,-9,1,1,2019,1,2,6,0,38,38,15,1,0,-9,0,24.145746,24.145746,0,0,0,0,0,0,0,2,0,0,0,5.8002138,0,5.0432487,3,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,4,5,1,234,12491.412,0,0,3636.9094 -2206,2705,4975,-9,-9,-9,2,1,0,51,2,0,0,0,1,-9,1,1,0,0,4,5.3529625,5.0480056,0,1,0,-9,8,0,3,-103.5731,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,11,0,20,40,15,1,0,-9,0,1.0734293,1.0734293,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,4,5,1,212,539128.19,0,0,-636.30017 -2207,2706,4976,-9,4979,4977,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-890.10138,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,4,1,273,365724.97,0,0,2504.7561 -2207,2706,4977,4979,-9,-9,1,1,1,34,1,0,2,0,1,-9,1,1,0,0,4,7.8747463,8.1070614,0,2,0,-9,14,0,0,-103.16755,0,0,0,34,1,5,1,2,2,2019,1,2,10,1,37,35,15,1,0,1,0,11.365951,11.365951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.099998,59.110001,5,1,1,0,0,9,4,1,273,365724.97,0,0,2504.7561 -2207,2706,4978,-9,4979,4977,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.47015,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,273,365724.97,0,0,2504.7561 -2207,2706,4979,4977,-9,-9,2,1,0,34,1,0,2,0,1,-9,2,1,0,0,5,8.2609262,8.1867876,0,2,0,-9,14,0,0,-172.37994,0,0,1,34,1,4,1,1,1,2019,1,1,7,0,25,25,15,1,0,1,0,16.264305,16.264305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,51,56,6,1,1,0,0,9,4,1,273,365724.97,0,0,2504.7561 -2208,2707,4980,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-984.00769,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.310001,51.41,-9,-9,3,1,1,0,0,10,1,0,395,-53737.457,0,0,-21.602989 -2209,2708,4981,-9,4984,4983,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.1292,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,784.75,348033.25,0,0,3795.8711 -2209,2708,4982,-9,4984,4983,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.521,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,784.75,348033.25,0,0,3795.8711 -2209,2708,4983,4984,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,4,9.2401733,9.0369272,0,2,0,-9,6,0,2,-42.888126,-9,0,0,35,1,2,1,2,3,2019,1,1,10,1,38,0,15,1,0,1,0,31.638796,31.638796,0,0,0,0,0,0,0,0,1,1,0,.19610672,0,0,0,51,56,15.68,42.849998,5,1,1,0,0,5,5,1,784.75,348033.25,0,0,3795.8711 -2209,2708,4984,4983,-9,-9,1,1,0,35,1,0,2,0,1,-9,1,1,0,0,2,6.7364068,7.0585723,0,2,0,-9,6,0,-2,-156.98579,0,0,1,37,1,4,1,2,2,2019,1,2,35,12,5,3,15,1,1,1,0,27.154453,27.154453,0,0,0,0,0,0,0,0,1,1,0,.8102209,0,0,0,15.68,42.849998,51,56,3,1,1,0,0,5,5,1,784.75,348033.25,0,0,3795.8711 -2210,2709,4985,-9,4987,4986,4,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.03583,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,2,3,0,0,8,4,1,1315,1048051.8,0,0,3467.2593 -2210,2709,4986,4987,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,7.8800173,7.6693392,0,2,0,-9,29,0,1,-6.7903171,0,0,0,53,2,3,1,2,2,2019,1,1,9,1,48,48,15,1,0,1,0,6.2624059,6.2624059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,48,49,6,2,3,0,0,8,4,1,1315,1048051.8,0,0,3467.2593 -2210,2709,4987,4986,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,0,3,8.6395578,8.6024427,0,2,0,-9,29,0,-1,112.38589,0,0,0,54,2,4,1,3,3,2019,1,2,12,2,37,37,15,1,0,1,0,24.019526,24.019526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,53,54,5,2,3,0,0,8,4,1,1315,1048051.8,0,0,3467.2593 -2210,2710,4988,4989,4987,4986,3,1,0,26,1,0,1,0,2,-9,2,1,0,0,4,8.0060091,8.0614281,0,2,0,-9,2,0,-8,-2.7355514,0,1,1,34,1,4,1,1,1,2019,1,5,7,0,37,0,15,1,0,1,0,10.627832,10.627832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,56.299999,61.110001,48.860001,6,2,3,0,0,8,4,1,553,216402.8,0,0,2963.9482 -2210,2710,4989,4988,-9,-9,5,1,1,34,1,0,1,0,1,-9,2,1,0,0,4,8.7474976,8.8089218,0,2,0,-9,2,0,8,-37.363415,0,0,0,26,2,4,1,-9,-9,2019,1,3,10,1,50,0,15,1,0,1,0,12.748177,12.748177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.110001,48.860001,51.73,56.299999,6,2,3,0,0,8,4,1,553,216402.8,0,0,2963.9482 -2211,2711,4990,4992,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,4,8.1991434,8.4150543,0,2,0,-9,8,0,-6,-12.680678,0,0,1,39,1,5,1,1,1,2019,1,1,11,2,50,50,15,1,0,1,0,9.6509371,9.6509371,0,0,0,0,0,0,0,0,1,1,0,2.1356163,0,0,0,48,57,54.099998,59.110001,5,1,1,0,0,8,5,1,384.33334,521217.66,0,0,6887.2183 -2211,2711,4991,-9,4990,4992,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-886.12543,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,5,1,384.33334,521217.66,0,0,6887.2183 -2211,2711,4992,4990,-9,-9,1,1,1,39,1,1,1,0,1,-9,1,1,0,0,5,9.1788406,8.771595,0,2,0,-9,8,0,6,9.1054373,0,0,0,33,1,4,1,1,1,2019,1,2,10,0,60,70,15,1,0,1,0,14.914689,14.914689,0,0,0,0,0,0,0,0,1,1,0,8.9361486,0,0,0,54.099998,59.110001,48,57,6,1,1,0,0,8,5,1,384.33334,521217.66,0,0,6887.2183 -2212,2712,4993,4994,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,3,0,7.1320691,7.2206268,1,0,-9,6,0,-2,-100.70457,0,0,0,60,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,9.6844997,7.2599058,8.8663588,3,66.370003,38.360001,67.190002,35.110001,7,1,1,0,0,4,5,1,2382.5,2153182.8,0,0,8719.9512 -2212,2712,4994,4993,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,8.7371769,8.7796764,0,1,0,-9,6,0,2,6.3399973,0,0,0,58,2,3,3,-9,-9,2019,2,2,10,0,30,0,15,1,0,4,0,31.327457,31.327457,0,0,0,0,0,0,0,0,0,0,0,5.0894122,0,0,0,67.190002,35.110001,66.370003,38.360001,5,1,1,0,0,4,5,1,2382.5,2153182.8,0,0,8719.9512 -2213,2713,4995,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,4,8.5891838,8.9941263,0,3,0,0,0,-9,0,-964.77167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,59,55,15,1,0,-9,0,13.628648,13.628648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,12,5,1,86,64860.566,0,0,3224.4482 -2214,2714,4996,4997,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.7637749,9.0780525,0,1,0,-9,27,0,4,96.252312,0,0,0,51,2,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,18.861568,18.861568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,57.16,56.150002,6,2,3,0,0,8,5,1,215.5,621728.88,0,0,3718.1353 -2214,2714,4997,4996,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.7590094,7.6417494,0,1,0,-9,27,0,-4,-78.239578,0,0,0,55,2,4,1,2,2,2019,1,2,7,0,50,50,15,1,0,1,0,5.5484886,5.5484886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,59.529999,56.439999,6,2,3,0,0,8,5,1,215.5,621728.88,0,0,3718.1353 -2214,2715,4998,-9,4997,4996,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,7.7946429,8.0796213,0,3,0,0,0,-9,0,-1094.0322,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,57,42,15,1,0,-9,1,5.2239094,5.2239094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.5,49.200001,-9,-9,6,2,3,0,0,8,3,1,1634,-219803.06,0,0,478.15488 -2214,2716,4999,-9,4997,4996,4,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.6276803,7.5343614,0,3,0,0,0,-9,0,-945.74988,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,43,0,15,1,0,-9,1,6.8405294,6.8405294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.619999,-9,-9,6,4,2,0,0,8,3,1,1065,-135285.7,0,0,-1093.7911 -2214,2717,5000,-9,4997,4996,5,1,0,26,2,0,0,0,1,-9,2,1,0,0,2,8.2716341,8.5330925,0,3,0,0,0,-9,0,-838.45331,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,54,53,15,1,0,-9,1,8.5148859,8.5148859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.189999,46.16,-9,-9,6,3,4,0,0,8,5,1,659,-95184.555,0,0,2327.1484 -2215,2718,5001,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,0,3,0,7.0640583,7.1061072,3,0,0,0,-9,0,-894.49573,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.067276,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,1,2,0,1136,336849.38,0,0,-693.70569 -2216,2719,5002,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,0,4,8.5570107,9.0172091,6.6183014,3,0,0,0,-9,0,-1054.9563,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,55,0,15,1,0,-9,0,12.896633,12.896633,0,0,0,0,0,0,0,0,0,0,0,0,6.541615,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,5,1,508,817708.38,0,0,2303.3049 -2216,2720,5003,-9,-9,5002,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,7.6025929,7.5506144,0,3,0,0,0,-9,0,-880.1228,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,1,40,40,15,1,0,-9,1,5.8053956,5.8053956,0,0,0,0,0,0,0,0,0,0,0,2.4428613,0,0,0,52.720001,55.580002,-9,-9,6,1,1,0,0,10,3,1,300,2953.46,0,0,1444.1171 -2217,2721,5004,5005,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.611341,6.5774412,1,0,-9,9,0,5,194.57664,0,0,0,63,1,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2818787,6.6080828,0,0,57.330002,53.459999,46.560001,42.23,7,1,1,0,0,4,2,1,671.5,508247.97,0,0,1257.4736 -2217,2721,5005,5004,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,2,0,6.270432,6.4718704,1,0,-9,9,0,-5,-.28848004,0,0,0,68,2,3,3,2,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9701896,6.4420471,0,0,46.560001,42.23,57.330002,53.459999,5,1,1,0,0,4,2,1,671.5,508247.97,0,0,1257.4736 -2218,2722,5006,5007,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,6.8572078,6.8186378,0,1,0,-9,8,0,1,-53.818287,0,0,0,57,2,3,1,2,2,2019,1,1,11,1,12,12,15,1,0,1,0,8.0397215,8.0397215,0,0,0,0,0,0,0,2,1,1,0,0,0,6.8581901,1,49.040001,55.860001,45.459999,52.150002,6,1,1,0,0,10,3,1,1597.5,577984,0,0,933.90558 -2218,2722,5007,5006,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,1,3,7.9170427,7.8759785,0,1,0,-9,39,0,-1,-24.332344,0,0,0,58,2,3,1,2,2,2019,1,2,10,0,36,35,15,1,0,1,0,9.7890835,9.7890835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.459999,52.150002,49.040001,55.860001,6,1,1,0,0,10,3,1,1597.5,577984,0,0,933.90558 -2219,2723,5008,5009,-9,-9,1,1,0,57,1,0,1,0,1,-9,2,1,0,0,2,8.7932501,8.979147,0,2,0,-9,19,0,5,22.748285,0,0,0,52,1,3,1,3,3,2019,1,2,6,0,38,36,15,1,0,1,0,25.340611,25.340611,0,0,0,0,0,0,0,0,0,0,0,4.4358382,0,0,0,55.200001,49.400002,57.330002,53.459999,6,1,1,0,0,8,5,1,1459,5238564.5,0,0,8197.6025 -2219,2723,5009,5008,-9,-9,2,1,1,52,1,0,1,0,1,-9,1,1,0,0,3,9.4726515,9.5385427,0,2,0,-9,9,0,-5,-49.123726,0,0,0,57,1,2,1,-9,-9,2019,1,1,7,0,42,40,15,1,0,1,0,40.936752,40.936752,0,0,0,0,0,0,0,0,0,0,0,4.4935813,0,0,0,57.330002,53.459999,55.200001,49.400002,6,1,1,0,0,8,5,1,1459,5238564.5,0,0,8197.6025 -2220,2724,5010,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,0,5,8.1756411,8.5960951,0,3,0,-9,0,-9,0,-992.26794,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,48,0,15,1,0,-9,0,8.8265533,8.8265533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,6,4,0,548,21204.703,0,0,2135.1257 -2221,2725,5011,-9,-9,-9,1,1,0,45,3,0,0,0,3,-9,2,1,0,0,2,7.0095296,7.2445078,0,3,0,0,0,-9,0,-901.72101,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,7,17,35,15,1,1,-9,0,7.1647897,7.1647897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.009998,34.130001,-9,-9,6,4,5,0,0,8,2,0,190,-47956.535,0,0,480.56848 -2221,2726,5012,-9,5011,-9,2,1,1,24,2,0,0,0,1,-9,7,2,0,0,4,6.0348768,6.3059134,0,3,0,0,0,-9,0,-931.13324,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,20,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,60.470001,-9,-9,6,4,5,0,0,8,2,0,1523,45051.188,0,0,152.40231 -2221,2727,5013,-9,5011,-9,3,1,1,23,2,0,0,0,2,-9,11,3,0,0,4,7.8321452,7.525207,0,3,0,0,0,-9,0,-1084.2166,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.529999,49.720001,-9,-9,5,4,5,0,0,8,3,0,43,-28219.463,0,0,2030.213 -2221,2728,5014,-9,5011,-9,4,1,0,23,2,0,0,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1004.0012,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.490002,59.98,-9,-9,6,4,5,0,0,8,1,0,964,136551.84,0,0,0 -2221,2729,5015,-9,5011,-9,5,1,0,21,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1142.3568,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,58.09,-9,-9,6,4,5,0,0,8,1,0,249,31070.496,0,0,1635.8175 -2222,2730,5016,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1030.9163,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.6342402,3,44.66,22.370001,-9,-9,4,1,1,0,0,4,1,1,838,41150.52,0,0,1157.0665 -2223,2731,5017,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,6.1617646,6.3148298,3,0,0,0,-9,0,-1078.4547,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.0086255,5.9645796,116.49866,3,43.950001,49.639999,-9,-9,5,1,1,0,0,5,2,1,959,72992.75,0,0,1171.8149 -2224,2732,5018,-9,5020,5021,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.0775,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,3,1,720.5,185043.8,0,0,2898.1501 -2224,2732,5019,-9,5020,5021,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.97595,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,720.5,185043.8,0,0,2898.1501 -2224,2732,5020,5021,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,0,4,6.921124,6.8534546,0,2,0,-9,5,0,-3,-126.98926,0,0,1,34,2,4,1,-9,-9,2019,1,2,9,0,18,18,15,1,0,1,0,6.8530068,6.8530068,0,0,0,0,0,0,0,0,1,1,0,.16571839,0,0,0,57.16,56.150002,43.439999,58.700001,6,1,1,0,0,1,3,1,720.5,185043.8,0,0,2898.1501 -2224,2732,5021,5020,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,4,8.3226166,8.7442789,0,2,0,-9,5,0,3,87.073952,0,0,0,31,2,4,1,-9,-9,2019,1,1,12,0,46,49,15,1,0,1,0,10.413675,10.413675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,58.700001,57.16,56.150002,6,1,1,0,0,1,3,1,720.5,185043.8,0,0,2898.1501 -2225,2733,5022,5023,-9,-9,2,1,0,29,1,0,1,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,9,0,-2,0,0,1,1,31,3,3,3,-9,-9,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.370001,51.369999,35.450001,59.869999,5,4,1,1,0,13,1,0,322.33334,26375.203,0,0,690.58026 -2225,2733,5023,5022,-9,-9,1,1,1,31,1,0,1,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,9,0,2,0,0,0,0,29,3,3,3,3,-9,2019,4,2,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.450001,59.869999,26.370001,51.369999,5,1,1,1,0,13,1,0,322.33334,26375.203,0,0,690.58026 -2225,2733,5024,-9,5022,5023,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.92645,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,13,1,0,322.33334,26375.203,0,0,690.58026 -2226,2734,5025,5026,-9,-9,1,1,1,64,1,0,2,0,1,-9,1,1,0,0,2,7.2014203,7.4589443,0,2,0,-9,51,0,0,25.063414,0,0,0,64,3,1,3,3,2,2019,2,2,16,5,30,0,15,1,1,3,0,9.1981249,9.1981249,1,0,0,6.0249639,0,0,0,0,1,1,0,0,0,0,0,38.52,53.299999,45.48,32.279999,6,2,3,0,0,4,2,1,473.5,1680844.5,0,0,1089.5165 -2226,2734,5026,5025,-9,-9,2,1,0,64,1,0,2,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,8,0,0,63.417587,0,0,0,64,1,2,1,3,3,2019,3,1,19,7,0,0,15,3,1,1,0,0,0,1,0,0,28.845285,0,0,0,27.5,1,1,0,1.6647099,0,19.600679,3,45.48,32.279999,38.52,53.299999,4,2,3,0,0,4,2,1,473.5,1680844.5,0,0,1089.5165 -2226,2735,5027,-9,5028,-9,4,1,0,17,2,0,2,1,2,-9,7,2,0,0,1,0,0,0,3,0,0,0,-9,0,-1061.7157,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.22615403,0,2.7500966,3,40.400002,31.73,-9,-9,5,2,3,0,0,4,3,1,657.33331,148433.92,0,0,1635.5652 -2226,2735,5028,-9,5026,5025,3,1,0,44,3,0,2,0,1,-9,2,1,0,0,2,7.9232044,7.7792268,0,3,0,0,0,-9,0,-1146.0148,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,29,12,28,30,15,1,1,-9,1,8.9616108,8.9616108,0,0,0,0,0,0,0,27.5,1,1,0,.82423842,0,25.606913,3,31.09,45.59,-9,-9,3,2,3,0,0,4,3,1,657.33331,148433.92,0,0,1635.5652 -2226,2735,5029,-9,5028,-9,5,1,0,17,2,0,2,1,3,-9,7,2,0,1,2,0,0,0,3,0,0,0,-9,0,-1093.0477,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1541524,0,0,0,60.279999,19.799999,-9,-9,5,2,3,0,0,4,3,1,657.33331,148433.92,0,0,1635.5652 -2227,2736,5030,5031,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,5,9.0403814,9.3114595,0,1,0,-9,21,-9,-2,38.9086,-9,0,0,56,1,5,3,2,2,2019,2,2,11,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8589926,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,9,5,1,1966.5,6492348,0,0,8476.7227 -2227,2736,5031,5030,-9,-9,2,1,0,56,1,0,0,0,1,-9,4,3,0,0,5,8.1475716,8.534976,8.0223522,1,0,-9,1,-9,2,10.771642,-9,0,0,54,1,5,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4963455,8.1627836,0,0,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,9,5,1,1966.5,6492348,0,0,8476.7227 -2228,2737,5032,5034,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,6.8645611,7.2095866,0,2,0,-9,7,0,-3,73.806808,0,0,0,51,3,3,1,3,3,2019,1,2,13,1,18,20,15,1,0,1,0,7.3089447,7.3089447,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,54.259998,54.959999,53.169998,6,1,1,0,0,12,3,0,1332,385305.47,0,0,1906.5802 -2228,2737,5033,-9,5032,5034,4,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.03107,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.380001,57.75,-9,-9,6,1,1,0,0,12,3,0,1332,385305.47,0,0,1906.5802 -2228,2737,5034,5032,-9,-9,2,1,1,51,1,0,1,0,3,-9,2,1,0,0,3,8.2423258,8.1306429,0,2,0,-9,7,0,3,-88.84243,0,0,0,48,2,3,1,2,2,2019,1,1,10,1,62,67,15,1,0,1,0,6.9831185,6.9831185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,49.439999,54.259998,3,1,1,0,1,12,3,0,1332,385305.47,0,0,1906.5802 -2228,2738,5035,-9,5032,5034,3,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,7.6176229,7.9335403,0,3,0,0,0,-9,0,-876.01245,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,1,33,47,15,1,0,-9,1,6.3937645,6.3937645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,50.73,-9,-9,5,1,1,0,0,12,3,0,465,-33092.402,0,0,1162.7378 -2229,2739,5036,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,4,3,0,0,1,0,7.2572021,7.292521,3,0,0,0,-9,0,-977.51898,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1773257,7.372931,0,0,35.709999,29.719999,-9,-9,3,1,1,0,0,6,2,1,202,0,0,0,826.42645 -2230,2740,5037,5039,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,0,2,8.3839045,8.1831217,0,2,0,-9,10,0,0,-18.546083,0,1,0,29,2,3,1,1,1,2019,1,2,7,0,37,42,15,1,0,1,0,12.945436,12.945436,0,0,0,0,0,0,0,7,1,1,0,3.6144948,0,0,3,47.459999,39.130001,49.040001,55.860001,4,1,1,0,0,9,3,1,1161,-7061.1597,0,0,2157.2363 -2230,2740,5038,-9,5039,5037,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.63617,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,1,1161,-7061.1597,0,0,2157.2363 -2230,2740,5039,5037,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,3,5.9623833,5.8583798,0,2,0,-9,10,0,0,74.254539,0,1,1,29,2,2,1,2,2,2019,1,1,11,0,6,6,15,1,0,1,0,8.0609703,8.0609703,0,0,0,0,0,0,0,7,1,1,0,0,0,5.1855154,3,49.040001,55.860001,47.459999,39.130001,6,1,1,0,0,9,3,1,1161,-7061.1597,0,0,2157.2363 -2231,2741,5040,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,6,3,0,0,3,0,8.5565062,8.6957483,3,0,0,0,-9,0,-1030.9241,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8639541,8.6376953,2.2759192,3,33.369999,60.580002,-9,-9,6,1,1,0,0,7,5,1,547,1189953.3,0,0,4140.1675 -2231,2742,5041,-9,5040,-9,2,1,0,43,2,0,0,0,2,-9,97,3,0,1,5,0,0,0,3,0,0,0,-9,0,-925.78247,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.57,42.919998,-9,-9,7,1,1,0,0,7,1,1,1849,104977.05,0,0,-423.6676 -2232,2743,5042,-9,-9,-9,1,1,0,23,2,0,0,1,1,0,7,2,0,0,5,6.7293468,6.5962949,0,3,0,0,0,-9,0,-1002.6972,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.939999,58.68,-9,-9,6,4,2,0,0,9,2,0,480,-75191.188,0,0,1093.0786 -2233,2744,5043,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,5,7.4701638,7.944355,0,3,0,0,0,-9,0,-987.0918,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,24,21,15,1,0,-9,0,8.0466251,8.0466251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,6,3,4,0,0,8,3,1,553,275101.5,0,0,2179.9417 -2233,2745,5044,-9,5043,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.6393456,7.4760284,0,3,0,0,0,-9,0,-1083.5096,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,45,37,15,1,0,-9,1,4.91923,4.91923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,8,3,1,3976,0,0,0,-351.52658 -2234,2746,5045,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,2,1,0,0,5,8.1005096,8.3014488,0,1,0,-9,2,0,-2,33.258614,0,0,0,-9,-9,-9,-9,2,1,2019,-9,2,5,0,48,48,15,1,0,-9,0,8.2021503,8.2021503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,50,57,6,1,1,0,0,7,3,0,651,101961.3,0,0,-183.91806 -2235,2747,5046,5047,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.9827638,7.8136392,1,0,-9,41,-9,5,-53.780609,-9,0,0,62,2,2,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.963768,0,3,55.360001,46.369999,34.049999,45.830002,6,1,1,0,0,2,3,1,274.5,880235.13,0,0,2246.8169 -2235,2747,5047,5046,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,2,7.2169147,7.0703602,0,1,0,-9,41,-9,-5,137.02768,-9,0,0,67,2,3,3,3,3,2019,2,2,21,8,17,0,15,1,1,4,0,8.3064699,8.3064699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.049999,45.830002,55.360001,46.369999,4,1,1,0,0,2,3,1,274.5,880235.13,0,0,2246.8169 -2236,2748,5048,5049,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,7.7989745,7.9742398,0,1,0,-9,4,0,3,65.109299,0,0,0,55,2,4,1,3,3,2019,1,2,7,0,38,38,15,1,0,1,0,9.841979,9.841979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.119999,51.57,35.990002,58.200001,6,1,1,0,0,13,4,1,118.5,609167.5,0,0,1774.4945 -2236,2748,5049,5048,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.9151931,7.9626904,0,1,0,-9,4,0,-3,-134.31383,0,0,0,58,2,4,1,2,2,2019,1,1,10,0,38,37,15,1,0,1,0,7.2634201,7.2634201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.990002,58.200001,61.119999,51.57,6,1,1,0,0,13,4,1,118.5,609167.5,0,0,1774.4945 -2236,2749,5050,-9,5049,5048,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,8.0339899,7.8092313,0,3,0,0,0,-9,0,-1028.3179,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,38,15,1,0,-9,1,7.3739052,7.3739052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,60.549999,-9,-9,7,1,1,0,0,13,3,1,279,-40296.328,0,0,442.42123 -2237,2750,5051,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,1,1,0,1,1,7.3479185,7.2985802,0,4,0,0,0,-9,0,-896.09113,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,20,7,32,30,15,1,1,-9,0,4.7522368,4.7522368,0,0,0,0,0,0,0,0,1,1,0,.29659373,0,0,0,29.959999,25.93,-9,-9,4,1,1,0,0,12,2,1,706.5,4984.626,0,0,4456.3687 -2237,2750,5052,-9,5051,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-800.2868,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.1796455,3,44.060001,49.09,-9,-9,4,1,1,0,0,12,2,1,706.5,4984.626,0,0,4456.3687 -2238,2751,5053,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,0,5,8.5507622,8.7744303,0,1,0,-9,4,0,-4,-56.367584,0,1,1,-9,-9,-9,-9,2,2,2019,1,2,8,1,35,41,15,1,0,-9,0,18.579088,18.579088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.389999,65.879997,49,60,6,1,1,0,0,9,5,0,211,615730.88,0,0,3606.8821 -2238,2752,5054,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,5,7.7897687,7.6012702,0,1,0,-9,4,0,4,-.4091807,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,2,0,38,30,15,1,0,-9,0,7.0034361,7.0034361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,60,33.389999,65.879997,7,1,1,0,0,9,5,0,171,-137557.19,0,0,1297.9886 -2239,2753,5055,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.9690657,7.8560596,0,3,0,0,0,-9,0,-1002.9849,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,45,45,15,1,0,-9,0,9.036561,9.036561,0,0,0,0,0,0,0,0,0,0,0,.15176865,0,0,0,43.82,46.150002,-9,-9,6,3,4,0,1,9,4,1,644,102094.53,0,0,-236.85681 -2240,2754,5056,5057,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,2,36.860962,0,0,0,74,3,4,3,2,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.439999,37.790001,56,52,6,1,1,0,0,5,2,1,951,332462.88,0,0,880.1214 -2240,2754,5057,5056,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,4,0,5.8014612,6.0001216,1,0,-9,48,0,-2,67.411148,0,0,0,76,3,3,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5711761,0,0,56,52,50.439999,37.790001,7,1,1,0,0,5,2,1,951,332462.88,0,0,880.1214 -2241,2755,5058,5059,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.5832586,7.2439895,0,1,0,-9,29,0,0,138.7066,0,0,0,52,2,4,1,3,3,2019,1,1,17,5,16,15,15,1,1,1,0,14.141887,14.141887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,53,54,5,1,1,0,0,5,4,1,561.5,1150568.6,0,0,2403.7351 -2241,2755,5059,5058,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,7.9923258,8.4096861,7.1188736,1,0,-9,8,0,0,-13.159252,0,0,0,52,2,4,1,-9,-9,2019,1,2,9,1,50,70,15,1,0,1,0,6.7168231,6.7168231,0,0,0,0,0,0,0,0,0,0,0,0,7.360786,0,0,53,54,51.240002,58.84,6,1,1,0,0,5,4,1,561.5,1150568.6,0,0,2403.7351 -2242,2756,5060,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,5.96246,5.3642278,3,0,0,0,-9,0,-969.46118,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.7668452,0,0,1,1,0,0,5.6945529,0,0,47.029999,42.299999,-9,-9,6,1,1,0,0,6,2,1,4487,94731.078,0,0,1688.2909 -2243,2757,5061,5062,-9,-9,1,1,1,67,1,0,0,0,3,-9,2,1,0,0,3,7.6840887,7.6293597,0,1,0,-9,43,0,4,2.4117751,-9,0,0,63,2,4,3,3,3,2019,2,2,10,1,40,0,15,1,0,3,0,6.7909527,6.7909527,0,0,0,0,0,0,0,0,1,1,0,2.2979224,0,0,0,51,48,51.830002,57.200001,5,1,1,0,0,13,3,1,418,511537.94,0,0,2881.6282 -2243,2757,5062,5061,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,43,0,-4,-159.99658,0,0,0,67,3,3,1,2,3,2019,3,1,8,0,0,10,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2519302,0,0,0,51.830002,57.200001,51,48,6,1,1,0,0,13,3,1,418,511537.94,0,0,2881.6282 -2244,2758,5063,5064,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,6.9603763,7.3604732,0,1,0,-9,40,0,0,-58.333614,-9,0,0,60,2,4,1,2,2,2019,1,1,12,0,20,0,15,1,0,1,0,6.6513057,6.6513057,0,0,0,0,0,0,0,0,0,0,0,3.0021486,0,0,0,45.84,53.119999,51.830002,57.200001,6,1,1,0,0,5,4,1,1084,420679,0,0,2807.3652 -2244,2758,5064,5063,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,8.3543253,8.3065863,0,1,0,-9,40,0,0,5.0874767,0,0,0,60,2,4,1,2,1,2019,1,2,10,1,55,55,15,1,0,1,0,8.4772701,8.4772701,0,0,0,0,0,0,0,0,0,0,0,1.2244173,0,0,0,51.830002,57.200001,45.84,53.119999,6,1,1,0,0,5,4,1,1084,420679,0,0,2807.3652 -2245,2759,5065,-9,5067,5066,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1007.8666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,4,1,1055.3334,395321,0,0,2393.7583 -2245,2759,5066,5067,-9,-9,2,1,1,32,1,1,1,0,2,-9,1,1,0,0,3,8.8059978,8.4833794,0,2,0,-9,5,0,3,130.41403,0,0,0,29,2,4,1,-9,-9,2019,1,1,12,0,40,45,15,1,0,1,0,16.846947,16.846947,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.310001,57.720001,54.77,55.869999,4,1,1,0,0,10,4,1,1055.3334,395321,0,0,2393.7583 -2245,2759,5067,5066,-9,-9,1,1,0,29,1,1,1,0,2,-9,5,1,0,0,4,0,0,0,2,0,-9,5,0,-3,31.953619,0,1,1,32,2,3,1,1,2,2019,1,2,11,3,0,43,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.7759092,0,0,0,54.77,55.869999,40.310001,57.720001,6,1,1,0,0,10,4,1,1055.3334,395321,0,0,2393.7583 -2246,2760,5068,-9,5071,5069,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.43622,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,5,1,714.75,350254.69,0,0,3870.2944 -2246,2760,5069,5071,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,5,9.1973381,9.0710258,0,2,0,-9,22,0,1,-26.056341,0,0,0,46,1,3,1,-9,-9,2019,1,2,7,0,60,60,15,1,0,1,0,16.419842,16.419842,0,0,0,0,0,0,0,2,1,1,0,2.7197402,0,7.6633334,3,53.75,59.470001,52.970001,51.290001,6,1,1,0,0,6,5,1,714.75,350254.69,0,0,3870.2944 -2246,2760,5070,-9,5071,5069,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.5934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,5,1,714.75,350254.69,0,0,3870.2944 -2246,2760,5071,5069,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,3,7.5474911,7.6105723,0,2,0,-9,22,0,-1,-53.034519,0,0,0,47,1,5,1,2,2,2019,1,1,11,0,16,17,15,1,0,1,0,12.664932,12.664932,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.970001,51.290001,53.75,59.470001,5,1,1,0,0,6,5,1,714.75,350254.69,0,0,3870.2944 -2247,2761,5072,5073,-9,-9,2,1,1,28,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,3,0,6,0,0,1,0,22,2,3,3,-9,-9,2019,4,1,9,0,0,40,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.400002,43,53,5,1,1,1,0,11,1,1,4388.5,-28832.621,0,0,1484.0806 -2247,2761,5073,5072,-9,-9,1,1,0,22,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,3,0,-6,0,0,1,1,28,2,4,3,-9,-9,2019,4,2,22,7,0,29,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,50.48,56.400002,4,1,1,0,0,11,1,1,4388.5,-28832.621,0,0,1484.0806 -2248,2762,5074,-9,-9,-9,1,1,1,26,2,0,0,0,3,-9,2,1,0,0,2,7.9541492,8.3024187,0,3,0,0,0,-9,0,-1086.6418,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,52,16,15,1,0,-9,0,8.3859091,8.3859091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.43,57.470001,-9,-9,5,1,1,0,0,2,4,0,567,57395.273,0,0,320.8494 -2249,2763,5075,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,2,0,6.5752392,6.7587166,3,0,0,0,-9,0,-1080.7578,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,7.5260682,0,5.1886053,31.097172,0,1,1,0,0,6.9237466,0,0,30.209999,31.290001,-9,-9,6,1,1,0,0,4,2,1,842,389246.91,0,0,1799.917 -2250,2764,5076,5079,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,9.4324417,9.3663111,0,2,0,-9,22,0,3,85.193207,0,0,0,44,1,4,1,3,2,2019,1,1,12,0,48,48,15,1,0,1,0,26.220211,26.220211,0,0,0,0,0,0,0,0,0,0,0,.92556131,0,0,0,46.630001,59.720001,57.16,56.150002,6,1,1,0,0,4,5,1,1056.25,516436.09,0,0,3512.02 -2250,2764,5077,-9,5079,5076,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.7202,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,4,5,1,1056.25,516436.09,0,0,3512.02 -2250,2764,5078,-9,5079,5076,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-840.51947,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,5,1,1056.25,516436.09,0,0,3512.02 -2250,2764,5079,5076,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,6.7406263,6.9214244,0,2,0,-9,22,0,-3,-14.097516,0,0,1,47,1,4,1,2,2,2019,1,2,12,0,11,4,15,1,0,1,0,11.063807,11.063807,0,0,0,0,0,0,0,0,0,0,0,1.5876541,0,0,0,57.16,56.150002,46.630001,59.720001,6,1,1,0,0,4,5,1,1056.25,516436.09,0,0,3512.02 -2251,2765,5080,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,1,0,7.1042075,6.7861376,3,0,0,0,-9,0,-941.88293,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0710144,6.4965758,0,0,27.07,21.49,-9,-9,2,1,1,0,0,11,2,1,779,205210.94,0,0,2741.0859 -2252,2766,5081,5083,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,28,0,4,63.665901,0,0,0,56,1,5,1,3,3,2019,3,1,4,0,0,45,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.09,55.869999,6,1,1,0,0,7,5,1,702.33331,1867409.3,0,0,2302.0234 -2252,2766,5082,-9,5083,5081,4,1,0,17,2,0,0,1,2,0,7,2,0,0,3,0,0,0,1,0,0,0,-9,0,-1100.3254,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,7,5,1,702.33331,1867409.3,0,0,2302.0234 -2252,2766,5083,5081,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,5,9.0237789,8.8868332,0,1,0,-9,28,0,-4,4.7239127,0,0,0,60,2,4,3,2,2,2019,2,2,14,2,40,60,15,1,0,4,0,21.374037,21.374037,0,0,0,0,0,0,0,0,0,0,0,4.3938894,0,0,0,55.09,55.869999,57.16,56.150002,7,1,1,0,0,7,5,1,702.33331,1867409.3,0,0,2302.0234 -2252,2767,5084,-9,5083,5081,3,1,0,20,2,0,0,1,2,0,7,2,0,0,4,6.9217534,6.7122908,0,3,0,0,0,-9,0,-908.60651,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,7,2,1,599,132145.22,0,0,826.77734 -2253,2768,5085,5086,-9,-9,1,1,1,48,1,0,0,0,3,-9,1,1,0,0,5,8.2349176,8.0185261,0,1,0,-9,27,0,-1,-56.796684,0,0,0,49,2,3,1,3,3,2019,1,2,7,0,54,40,15,1,0,1,0,8.6257038,8.6257038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,52.509998,54.259998,6,1,1,0,0,12,4,1,531.5,210266.16,0,0,2841.2949 -2253,2768,5086,5085,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.1902585,7.6471252,0,1,0,-9,27,0,1,56.569077,0,0,0,48,3,5,1,2,3,2019,1,1,7,0,24,32,15,1,0,1,0,11.527633,11.527633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.509998,54.259998,55.09,55.869999,6,1,1,0,0,12,4,1,531.5,210266.16,0,0,2841.2949 -2253,2769,5087,-9,5086,5085,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.3333941,8.0694904,0,3,0,0,0,-9,0,-1018.7563,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,37,15,1,0,-9,1,8.8141546,8.8141546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.459999,56.91,-9,-9,6,1,1,0,0,12,3,1,516,118720.76,0,0,1210.1566 -2253,2770,5088,-9,5086,5085,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,7.3794513,7.3896985,0,3,0,0,0,-9,0,-1031.099,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,36,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,12,3,1,110,20480.055,0,0,1381.1033 -2254,2771,5089,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,0,4,8.4777765,8.4559174,0,3,0,0,0,-9,0,-1035.6483,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,38,15,1,0,-9,0,12.639587,12.639587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,-9,-9,6,1,1,0,0,11,4,1,909,-110907.48,0,0,2204.582 -2255,2772,5090,5091,5092,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,7.9119773,8.0379524,0,2,0,-9,25,0,1,-6.4344068,0,0,0,43,2,4,3,3,-9,2019,2,1,9,1,0,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,50,55,5,2,3,0,0,7,2,1,1109,474202,0,0,2091.2136 -2255,2772,5091,5090,-9,-9,1,1,0,43,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-1,2.6961763,0,0,1,44,2,4,1,-9,-9,2019,3,2,10,1,0,6,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,55,52,55,6,2,3,0,0,7,2,1,1109,474202,0,0,2091.2136 -2255,2773,5092,-9,-9,-9,3,1,0,74,3,0,3,0,3,-9,4,3,0,0,3,0,6.9473529,6.9045424,4,0,0,0,-9,0,-1051.8075,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7905569,6.7926912,0,0,52,45,-9,-9,5,2,3,0,0,7,2,1,193,899230.25,0,0,717.69189 -2255,2774,5093,-9,5091,5090,4,1,0,22,2,0,3,0,1,1,2,1,0,0,2,7.7460871,7.3763847,0,3,0,0,0,-9,0,-1023.7827,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,32,11,38,0,15,1,1,-9,1,5.156076,5.156076,0,0,0,0,0,0,0,2,1,1,0,0,0,1.0773332,3,32.669998,34.07,-9,-9,6,2,3,0,1,7,3,1,218,-109177.79,0,0,571.53229 -2255,2775,5094,-9,5091,5090,5,1,1,18,2,0,3,1,2,0,7,2,0,0,2,6.6019521,6.4995394,0,3,0,0,0,-9,0,-965.2392,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.07,25.5,-9,-9,5,2,3,0,0,7,3,1,917,-7492.875,0,0,30.144594 -2256,2776,5095,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,6.203258,6.89185,3,0,0,0,-9,0,-943.32233,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.5148664,8.5495415,3,40.299999,46.200001,-9,-9,6,1,1,0,0,6,2,1,208,215710.09,0,0,2018.4094 -2257,2777,5096,-9,5099,5098,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.5192,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,1,1254.25,133644.86,0,0,2226.332 -2257,2777,5097,-9,5099,5098,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.4783,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,3,1,1254.25,133644.86,0,0,2226.332 -2257,2777,5098,5099,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,0,5,8.8045187,8.9266605,0,2,0,-9,19,0,0,48.819698,0,0,0,36,1,3,3,1,1,2019,2,1,8,1,70,55,15,1,0,3,0,6.4916725,6.4916725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,28.25,55.98,7,1,1,0,0,11,3,1,1254.25,133644.86,0,0,2226.332 -2257,2777,5099,5098,-9,-9,1,1,0,36,1,1,2,0,1,-9,6,3,0,0,3,4.5686226,4.3199267,0,2,0,-9,19,0,0,23.012009,0,0,1,36,1,5,1,2,2,2019,3,2,23,11,1,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,55.98,51.139999,60.450001,2,1,1,0,1,11,3,1,1254.25,133644.86,0,0,2226.332 -2258,2778,5100,-9,-9,-9,1,1,0,36,2,0,2,0,1,-9,2,1,0,0,4,8.6022234,8.9856892,0,2,0,-9,9,0,2,-20.555561,0,0,1,-9,-9,-9,-9,2,1,2019,1,2,19,7,42,37,15,1,1,-9,0,18.932177,18.932177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.880001,61.849998,57.16,56.150002,6,1,1,0,0,2,4,1,542.33331,158585.16,0,0,2592.5537 -2258,2778,5101,-9,5100,-9,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-865.68427,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,542.33331,158585.16,0,0,2592.5537 -2258,2778,5102,-9,5100,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-823.78394,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,542.33331,158585.16,0,0,2592.5537 -2258,2779,5103,-9,-9,-9,2,1,0,34,2,0,2,0,1,-9,2,1,0,0,4,7.8427596,7.6046243,0,2,0,-9,9,0,-2,-22.564632,0,0,1,-9,-9,-9,-9,3,3,2019,1,1,5,0,22,0,15,1,0,-9,0,10.255534,10.255534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,38.880001,61.849998,7,1,1,0,0,2,4,1,170,35466.184,0,0,725.17383 -2259,2780,5104,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,7.5742116,7.0181088,3,0,0,0,-9,0,-945.47827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.76096237,7.3041997,23.912743,3,62.490002,55.09,-9,-9,7,1,1,0,0,12,3,1,205,228854.53,0,0,814.14709 -2260,2781,5105,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1017.9804,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.880001,24.780001,-9,-9,5,1,1,0,0,12,1,0,224,6050.3125,0,0,1220.2424 -2260,2781,5106,-9,5105,-9,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1072.2111,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.998035,3,55.130001,34.07,-9,-9,7,1,1,0,0,12,1,0,224,6050.3125,0,0,1220.2424 -2260,2782,5107,-9,5105,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-975.21643,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,0,27,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.60482204,3,54.959999,53.169998,-9,-9,5,1,1,0,0,12,1,0,1004,-53916.746,0,0,0 -2260,2783,5108,-9,5105,-9,4,1,1,26,2,0,1,0,2,-9,2,1,0,0,3,7.7624197,7.8347487,0,3,0,0,0,-9,0,-1003.0054,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,39,0,15,1,0,-9,1,6.9994187,6.9994187,0,0,0,0,0,0,0,7,1,1,0,0,0,7.551868,3,49.970001,53.990002,-9,-9,5,1,1,0,1,12,3,0,171,-12716.525,0,0,718.65509 -2261,2784,5109,5110,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,3,8.3425608,8.0890017,0,2,0,-9,6,0,1,97.029816,0,0,0,37,1,4,1,-9,-9,2019,1,1,17,5,42,43,15,1,1,1,0,11.459662,11.459662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,58.549999,49.41,58.279999,4,1,1,0,0,13,4,1,290.66666,392821.97,0,0,2506.6133 -2261,2784,5110,5109,-9,-9,1,1,0,37,1,1,1,0,1,-9,2,1,0,0,4,7.6879277,7.7471952,0,2,0,-9,6,0,-1,-83.484871,0,0,1,38,1,3,1,2,2,2019,1,2,12,0,40,18,15,1,0,1,0,6.6468945,6.6468945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,43.119999,58.549999,5,1,1,0,0,13,4,1,290.66666,392821.97,0,0,2506.6133 -2261,2784,5111,-9,5110,5109,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.3137,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,290.66666,392821.97,0,0,2506.6133 -2262,2785,5112,5113,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,5,7.9370461,8.8872147,8.284318,1,0,-9,40,0,-1,88.792908,0,0,0,62,1,4,3,2,2,2019,4,2,6,0,20,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7980804,7.8049493,0,0,62.389999,56.709999,59.290001,49.68,7,1,1,0,0,6,5,1,611.5,2331827.3,0,0,4367.9961 -2262,2785,5113,5112,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,6.8943062,7.0000429,1,0,-9,40,0,1,-32.914581,0,0,0,61,1,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6040115,0,0,59.290001,49.68,62.389999,56.709999,6,1,1,0,0,6,5,1,611.5,2331827.3,0,0,4367.9961 -2263,2786,5114,5115,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,0,3,7.6209655,7.4305353,0,1,0,-9,7,0,0,-14.873165,0,0,1,31,1,4,1,2,2,2019,1,1,10,1,30,30,15,1,0,1,0,5.9980354,5.9980354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,55.57,57.16,56.150002,4,1,1,0,0,9,5,0,648.5,73452.969,0,0,519.45837 -2263,2786,5115,5114,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,8.866044,8.6122637,0,1,0,-9,7,0,0,-35.454906,0,0,0,31,2,3,1,2,2,2019,1,2,6,0,40,45,15,1,0,1,0,17.289482,17.289482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,46.669998,55.57,6,1,1,0,0,9,5,0,648.5,73452.969,0,0,519.45837 -2264,2787,5116,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,4,0,5.7315488,5.5698481,3,0,0,0,-9,0,-967.77106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,10.366885,0,10.513279,15.767895,0,92.374321,0,1,1,0,0,5.7689729,0,0,65.519997,25.190001,-9,-9,5,1,1,0,0,5,2,1,752,85102.836,0,0,1152.5681 -2265,2788,5117,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,0,4,0,7.3820038,7.2577667,3,0,0,0,-9,0,-1039.3051,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8073628,7.4489689,0,0,49.060001,58.639999,-9,-9,6,2,3,0,0,8,3,1,4110,759094.88,0,0,2560.575 -2266,2789,5118,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,1,2,0,6.6868591,6.8246646,3,0,0,0,-9,0,-1066.5696,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,3.7467542,0,0,0,3.326618,0,0,1,1,0,0,6.8377562,0,0,61.439999,16.549999,-9,-9,5,1,1,0,0,9,2,1,1449,836267.38,0,0,276.87177 -2267,2790,5119,5120,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.7225738,7.640645,1,0,-9,43,0,0,20.111334,0,0,0,61,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5746193,0,0,50.330002,50.450001,46.080002,57.200001,4,1,1,0,0,11,3,1,704.5,1459760.6,0,0,1573.8501 -2267,2790,5120,5119,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,4.2346501,4.1988473,1,0,-9,43,0,0,-139.74774,0,0,0,61,2,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.4679737,10.67907,2,46.080002,57.200001,50.330002,50.450001,4,1,1,0,0,11,3,1,704.5,1459760.6,0,0,1573.8501 -2267,2791,5121,-9,5120,5119,3,1,1,36,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-923.81091,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,1,1,0,0,11,1,1,857,26455.883,0,0,1255.3027 -2268,2792,5122,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,0,8.3146744,8.3044825,3,0,0,0,-9,0,-955.89233,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.31006,8.23985,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,2,4,1,517,2084122,0,0,1919.934 -2269,2793,5123,-9,5126,5124,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.08002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,564.25,210686.03,0,0,2969.2388 -2269,2793,5124,5126,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,7.989943,8.3852863,0,2,0,-9,15,0,3,-99.934814,0,0,0,41,2,5,1,2,2,2019,1,1,9,0,48,43,15,1,0,1,0,9.758378,9.758378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,51,40.669998,62.66,6,1,1,0,0,2,4,1,564.25,210686.03,0,0,2969.2388 -2269,2793,5125,-9,5126,5124,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.7137,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,564.25,210686.03,0,0,2969.2388 -2269,2793,5126,5124,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,8.6654778,8.3742924,0,2,0,-9,17,0,-3,-15.862602,0,0,1,44,2,3,1,1,1,2019,1,2,12,3,37,40,15,1,0,1,0,13.34316,13.34316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.669998,62.66,48,51,2,1,1,0,0,2,4,1,564.25,210686.03,0,0,2969.2388 -2270,2794,5127,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,1,2,0,6.92065,7.0714455,3,0,-9,0,1,0,-1002.6514,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2225323,6.8345122,0,0,32.389999,40.630001,-9,-9,2,1,1,0,0,2,2,1,171,44388.789,0,0,-1050.8772 -2270,2795,5128,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1111.6512,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1241848,0,0,3,48,59,-9,-9,5,1,1,1,0,2,1,1,175,108080.92,0,0,-773.7901 -2271,2796,5129,5130,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,4,6.8273582,6.9832001,0,2,0,-9,11,0,2,-76.330139,0,0,1,34,1,5,1,3,2,2019,1,1,11,2,19,18,15,1,0,1,0,5.8860092,5.8860092,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,60.02,56.419998,5,1,1,0,0,8,3,0,1319,148795.58,0,0,1914.7303 -2271,2796,5130,5129,-9,-9,1,1,1,34,1,0,2,0,1,-9,2,1,0,0,5,8.0683537,8.0143461,0,2,0,-9,11,0,-2,155.4673,0,0,0,36,1,4,1,1,1,2019,1,2,9,0,60,56,15,1,0,1,0,5.5322685,5.5322685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,49,56,6,1,1,0,0,8,3,0,1319,148795.58,0,0,1914.7303 -2271,2796,5131,-9,5129,5130,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.31317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,3,0,1319,148795.58,0,0,1914.7303 -2271,2796,5132,-9,5129,5130,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-875.66016,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,3,0,1319,148795.58,0,0,1914.7303 -2272,2797,5133,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1081.4366,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.780001,17.809999,-9,-9,2,1,1,0,1,10,1,0,2766,-13711.515,0,0,-87.234337 -2272,2798,5134,-9,5133,-9,2,1,1,20,2,0,0,0,2,-9,11,3,0,0,5,6.9780197,6.4222398,0,3,0,0,0,-9,0,-966.9762,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,32,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58.049999,54.52,-9,-9,6,1,1,0,0,10,2,0,3991,-31583.486,0,0,-530.68286 -2273,2799,5135,5136,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,2,0,7.2385883,7.7119107,1,0,-9,6,0,-1,-2.7995138,0,0,0,60,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5095062,7.0561666,0,0,60.150002,41.580002,54.77,55.869999,7,1,1,0,0,9,5,1,491,1485131.6,0,0,5082.1143 -2273,2799,5136,5135,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.9819717,9.2496729,0,1,0,-9,6,0,1,8.03228,0,0,0,59,2,2,3,3,2,2019,2,2,6,0,44,50,15,1,0,4,0,24.361044,24.361044,0,0,0,0,0,0,0,0,0,0,0,3.6446235,0,0,0,54.77,55.869999,60.150002,41.580002,6,1,1,0,0,9,5,1,491,1485131.6,0,0,5082.1143 -2274,2800,5137,5138,-9,-9,1,1,0,50,1,0,2,0,1,-9,2,1,0,0,3,7.4849072,7.8502326,0,2,0,-9,16,0,0,44.91888,0,0,0,50,2,4,1,2,1,2019,1,2,11,0,32,24,15,1,0,1,0,6.7868633,6.7868633,0,0,0,0,0,0,0,0,1,1,0,.16772173,0,0,0,55.68,46.02,53,54,3,4,2,0,0,10,4,1,516.66669,1165195.8,0,0,3866.718 -2274,2800,5138,5137,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.7317772,8.6257801,0,2,0,-9,6,0,0,-34.273785,0,0,0,50,1,3,1,2,2,2019,1,1,9,1,40,48,15,1,0,1,0,21.998423,21.998423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,55.68,46.02,6,1,1,0,0,10,4,1,516.66669,1165195.8,0,0,3866.718 -2274,2800,5139,-9,5137,5138,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.06348,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,4,1,516.66669,1165195.8,0,0,3866.718 -2275,2801,5140,5141,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,2,0,4.3323722,4.1811976,1,0,-9,48,0,-2,-8.3803463,0,0,0,69,3,2,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,4.0915337,16.675993,1,50.509998,32.450001,57.740002,22.559999,6,1,1,0,0,12,2,0,398.5,231004.66,0,0,2461.1174 -2275,2801,5141,5140,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,2,0,5.9866629,6.2396526,1,0,-9,9,0,2,-92.955986,0,0,0,67,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7961617,0,0,57.740002,22.559999,50.509998,32.450001,6,1,1,0,0,12,2,0,398.5,231004.66,0,0,2461.1174 -2276,2802,5142,5143,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.3108091,8.2748737,0,1,0,-9,7,0,-1,25.219606,0,0,0,56,1,5,1,2,1,2019,1,1,13,2,43,30,15,1,0,1,0,9.6792736,9.6792736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.169998,17.700001,49.169998,56.720001,5,1,1,0,0,5,5,1,160.5,623266.5,0,0,4400.6753 -2276,2802,5143,5142,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,5,9.3362093,9.0540409,0,1,0,-9,7,0,1,76.008224,0,0,0,55,2,3,1,1,2,2019,1,2,9,0,50,55,15,1,0,1,0,20.345938,20.345938,0,0,0,0,0,0,0,0,0,0,0,6.5692778,0,0,0,49.169998,56.720001,55.169998,17.700001,6,1,1,0,0,5,5,1,160.5,623266.5,0,0,4400.6753 -2276,2803,5144,-9,5142,5143,3,1,1,23,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-897.04523,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,1,1,163,0,0,0,0 -2276,2804,5145,-9,5142,5143,4,1,1,20,2,0,0,1,2,0,7,2,0,0,5,6.6986189,6.7481823,0,3,0,0,0,-9,0,-1126.6482,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,1,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.630001,56.139999,-9,-9,7,1,1,0,0,5,2,1,104,0,0,0,-36.342369 -2277,2805,5146,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-951.92389,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,10.427083,0,0,1,1,0,0,0,0,0,59.549999,17.35,-9,-9,5,1,1,0,0,6,1,0,899,24232.57,0,0,504.62848 -2278,2806,5147,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,3,8.1102657,8.3847885,0,4,0,0,0,-9,0,-991.86505,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,37,36,15,1,0,-9,0,13.666059,13.666059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.610001,50.580002,-9,-9,5,1,1,0,0,5,4,1,145,78167.32,0,0,1730.0334 -2279,2807,5148,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,0,4,8.1544647,7.9700203,0,3,0,0,0,-9,0,-1118.9309,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,7,25,15,1,0,-9,0,39.677166,39.677166,0,0,0,0,0,0,0,0,1,1,0,2.390141,0,0,0,52.91,51.130001,-9,-9,6,1,1,0,0,12,3,1,536,-37356.445,0,0,2586.1367 -2279,2808,5149,-9,5148,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-953.4259,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1181641,0,0,0,44.259998,59.43,-9,-9,6,1,1,0,0,12,1,1,1114,-27706.465,0,0,282.09253 -2280,2809,5150,5151,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,7.0334978,7.1205816,1,0,-9,7,0,2,-51.126179,0,0,0,64,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.8381759,7.2351704,0,0,59.310001,49.810001,60.119999,54.799999,7,1,1,0,0,6,2,1,832.5,740050.25,0,0,2450.4536 -2280,2809,5151,5150,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,5.2342758,5.6204314,1,0,-9,13,0,-2,107.19799,0,0,0,66,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1555097,5.3883247,0,0,60.119999,54.799999,59.310001,49.810001,7,1,1,0,0,6,2,1,832.5,740050.25,0,0,2450.4536 -2281,2810,5152,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1078.6287,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,7,0,40,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.940001,61.650002,-9,-9,5,1,1,0,1,4,1,0,465,-34065.445,0,0,0 -2282,2811,5153,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,4,3,0,0,4,0,8.1286869,8.0469179,3,0,0,0,-9,0,-1070.5275,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0337954,8.21383,0,0,53.330002,53.709999,-9,-9,6,1,1,0,0,4,4,1,1593,529439.13,0,0,2516.7488 -2283,2812,5154,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,0,3,8.0433607,7.8462334,0,4,0,0,0,-9,0,-987.67908,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,12,6,15,1,0,-9,0,26.180937,26.180937,0,0,0,0,0,0,0,2,0,0,0,0,0,3.8577445,3,42.799999,49.41,-9,-9,5,3,4,0,1,8,3,0,2426,61058.145,0,0,1406.0205 -2284,2813,5155,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,7.5857706,7.6138411,3,0,0,0,-9,0,-1023.6721,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9201534,7.640337,0,0,51.240002,58.84,-9,-9,6,3,4,0,0,6,3,1,750,546302.69,0,0,1703.0707 -2285,2814,5156,5157,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,6.8279743,7.9301429,7.3107567,1,0,-9,41,0,-3,-23.227531,0,0,0,65,3,3,3,2,3,2019,2,2,8,0,14,16,15,1,0,4,0,9.0266647,9.0266647,0,0,0,0,0,0,0,0,1,1,0,0,7.807807,0,0,59.07,43.049999,52,48,6,1,1,0,0,7,4,1,482,1154157,0,0,3789.7173 -2285,2814,5157,5156,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,7.473227,6.9008846,1,0,-9,7,0,3,-45.591175,0,0,0,62,2,3,1,-9,-9,2019,3,1,10,1,0,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9047165,0,0,52,48,59.07,43.049999,5,1,1,0,0,7,4,1,482,1154157,0,0,3789.7173 -2286,2815,5158,5159,-9,-9,1,1,0,57,1,0,1,0,3,-9,2,1,0,0,3,7.4951162,7.7249088,7.0344005,2,0,-9,6,0,-4,-96.605873,0,0,0,61,3,3,1,2,2,2019,1,2,10,2,38,22,15,1,0,1,0,5.321847,5.321847,0,0,0,0,0,0,0,0,1,1,0,0,7.2547102,0,0,46.669998,55.57,50,49,4,1,1,0,0,9,4,1,582.5,728815,0,0,4184.8047 -2286,2815,5159,5158,-9,-9,2,1,1,61,1,0,1,0,3,-9,2,1,0,0,3,8.4577856,8.4248552,0,2,0,-9,6,0,4,69.314857,0,0,0,57,3,3,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,10.271008,10.271008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,46.669998,55.57,5,1,1,0,0,9,4,1,582.5,728815,0,0,4184.8047 -2286,2816,5160,-9,5161,-9,4,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-944.80347,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,1,1940,121329.02,0,0,2303.0845 -2286,2816,5161,-9,5158,5159,3,1,0,23,2,0,1,0,2,-9,2,1,0,0,2,7.5112028,7.9340544,0,3,0,0,0,-9,0,-925.86047,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,47,0,15,1,0,-9,1,4.7362933,4.7362933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.02,48.650002,-9,-9,3,1,1,0,0,9,3,1,1940,121329.02,0,0,2303.0845 -2287,2817,5162,5163,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,5,0,7.0674872,6.6934896,1,0,-9,25,0,-10,-18.488829,0,0,0,81,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.048009474,7.248939,0,0,57.060001,57.759998,54,46,6,1,1,0,0,11,2,1,1443,437512.16,0,0,1042.7484 -2287,2817,5163,5162,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,10,-48.004375,0,0,0,71,3,5,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0203724,0,0,0,54,46,57.060001,57.759998,6,1,1,0,0,11,2,1,1443,437512.16,0,0,1042.7484 -2288,2818,5164,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,0,4,8.0381374,7.5453482,0,3,0,0,0,-9,0,-1071.0321,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,12,31,25,15,1,1,-9,0,8.0425854,8.0425854,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,61.389999,-9,-9,4,1,1,0,1,13,3,0,1034,344267.69,0,0,2048.8591 -2288,2819,5165,-9,5164,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1068.8,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6507065,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,13,1,0,1401,113779.65,0,0,-215.98796 -2289,2820,5166,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,6.7281537,6.6507721,0,3,0,0,0,-9,0,-1005.4258,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,24,20,15,1,0,-9,0,3.7176182,3.7176182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.330002,51.02,-9,-9,2,1,1,0,0,6,2,0,880,-47283.309,0,0,754.72241 -2290,2821,5167,5168,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.6035156,7.7072544,0,1,0,-9,19,0,-1,18.607573,0,0,0,58,2,3,1,3,3,2019,1,1,12,0,36,36,15,1,0,1,0,7.2246509,7.2246509,0,0,0,0,0,0,0,0,0,0,0,3.1165137,0,0,0,43.459999,51.610001,35.5,48.57,5,1,1,0,0,6,5,1,634.5,584031.25,0,0,6649.4146 -2290,2821,5168,5167,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,9.7630024,9.76439,0,1,0,-9,32,0,1,-5.6040907,0,0,0,57,2,3,1,3,3,2019,1,2,19,8,55,60,15,1,1,1,0,27.664537,27.664537,0,0,0,0,0,0,0,0,0,0,0,4.3832889,0,0,0,35.5,48.57,43.459999,51.610001,3,1,1,0,0,6,5,1,634.5,584031.25,0,0,6649.4146 -2291,2822,5169,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.3775549,8.137929,0,3,0,0,0,-9,0,-988.93103,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,50,69,15,1,1,-9,0,10.152882,10.152882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.65,64.050003,-9,-9,3,1,1,0,0,12,4,0,1870,17659.357,0,0,924.96277 -2292,2823,5170,5172,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,0,4,8.3444977,8.2739277,0,2,0,-9,9,0,-6,197.00565,0,0,0,59,2,3,1,2,-9,2019,1,2,9,0,21,44,15,1,0,1,0,22.208065,22.208065,0,0,0,0,0,0,0,0,1,1,0,2.9991364,0,0,0,54.200001,57.490002,57.330002,53.459999,5,1,1,0,0,12,5,1,400.66666,865315.13,0,0,4249.9087 -2292,2823,5171,-9,5170,5172,3,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,5.4017391,5.3459582,0,2,0,0,0,-9,0,-922.46655,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,12,5,1,400.66666,865315.13,0,0,4249.9087 -2292,2823,5172,5170,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,0,3,8.9426575,8.9471998,0,2,0,-9,9,0,6,-231.09401,0,0,0,53,1,4,1,3,3,2019,1,1,6,0,104,48,15,1,0,1,0,8.7091179,8.7091179,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,12,5,1,400.66666,865315.13,0,0,4249.9087 -2293,2824,5173,5174,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,6.4214349,6.046464,1,0,-9,44,0,-2,47.416306,0,0,0,65,1,4,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.382549,6.4935374,6.4280581,3,51.830002,57.200001,58.310001,44.549999,6,1,1,0,0,4,3,1,1197,1282306.5,0,0,691.45398 -2293,2824,5174,5173,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.4287543,7.4648886,1,0,-9,44,0,2,27.431566,0,0,0,63,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6942663,8.1818638,5.1930447,3,58.310001,44.549999,51.830002,57.200001,6,1,1,0,0,4,3,1,1197,1282306.5,0,0,691.45398 -2294,2825,5175,5176,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,3,8.7241087,8.7438145,0,1,0,-9,3,0,3,66.902191,0,0,0,29,2,5,1,-9,-9,2019,1,2,12,0,45,45,15,1,0,1,0,21.04627,21.04627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,45.220001,63.139999,5,1,1,0,0,1,5,1,1182,284510.22,0,0,4124.3159 -2294,2825,5176,5175,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,5,7.6652665,7.8655877,0,1,0,-9,3,0,-3,97.3507,0,1,1,32,1,3,1,-9,-9,2019,1,1,10,1,42,39,15,1,0,1,0,6.0659795,6.0659795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.220001,63.139999,51.41,56.150002,6,1,1,0,0,1,5,1,1182,284510.22,0,0,4124.3159 -2295,2826,5177,5178,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,0,3,8.1779957,8.064846,0,1,0,-9,4,0,2,38.646721,0,1,0,23,2,3,1,-9,-9,2019,1,2,17,5,38,38,15,1,1,1,0,10.718349,10.718349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.629999,60.919998,32.200001,58.189999,2,1,1,0,1,5,4,0,274.5,8709.4893,0,0,2253.3328 -2295,2826,5178,5177,-9,-9,2,1,0,23,1,0,0,0,2,-9,2,1,0,0,3,8.2095184,8.0638189,0,1,0,-9,4,0,-2,131.80367,0,1,1,25,2,3,1,-9,-9,2019,1,1,23,10,41,40,15,1,1,1,0,7.4152865,7.4152865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.200001,58.189999,31.629999,60.919998,4,1,1,0,0,5,4,0,274.5,8709.4893,0,0,2253.3328 -2296,2827,5179,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,0,4,0,6.5472131,7.037498,3,0,0,0,-9,0,-1049.9674,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6703849,6.8565116,0,0,58.150002,52.91,-9,-9,5,1,1,0,0,8,2,1,1497,258182.39,0,0,358.58273 -2297,2828,5180,5182,-9,-9,2,1,0,26,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,-12,-82.900673,0,1,1,38,2,5,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.139999,46.439999,38.259998,60.099998,6,2,3,0,0,5,3,0,562.66669,163216.81,0,0,2119.7764 -2297,2828,5181,-9,5180,5182,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1072.8954,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,5,3,0,562.66669,163216.81,0,0,2119.7764 -2297,2828,5182,5180,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,0,5,8.1326866,8.128336,0,2,0,-9,4,0,12,9.4415617,0,0,0,26,2,4,3,3,2,2019,2,2,11,1,51,37,15,1,0,3,0,7.6024947,7.6024947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.259998,60.099998,60.139999,46.439999,1,2,3,0,0,5,3,0,562.66669,163216.81,0,0,2119.7764 -2298,2829,5183,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,7.1408534,7.2249393,3,0,0,0,-9,0,-980.61035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6320968,6.900579,0,0,52.200001,48.950001,-9,-9,6,1,1,0,0,2,3,1,429,716648.13,0,0,-10.457442 -2299,2830,5184,5185,-9,-9,1,1,0,32,1,0,0,0,1,1,2,1,0,0,5,8.475153,8.4367781,0,1,0,-9,8,0,0,18.226742,-9,0,1,32,2,4,1,2,3,2019,1,2,6,0,37,0,15,1,0,1,0,16.537354,16.537354,0,0,0,0,0,0,0,0,0,0,0,3.1316068,0,0,0,59.43,58.049999,51.830002,57.200001,7,1,1,0,0,12,5,0,163.5,-104198.81,0,0,2707.344 -2299,2830,5185,5184,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,4,7.8688722,7.8110962,0,1,0,-9,8,0,0,-65.86219,0,0,0,32,1,5,1,1,2,2019,1,1,11,1,41,41,15,1,0,1,0,9.201292,9.201292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,59.43,58.049999,6,1,1,0,0,12,5,0,163.5,-104198.81,0,0,2707.344 -2300,2831,5186,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-960.23053,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1992829,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,6,1,0,1726,150123.52,0,0,2733.9678 -2301,2832,5187,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-986.29919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.869999,25.469999,-9,-9,5,1,1,0,0,12,1,0,885,-105718.63,0,0,2920.7646 -2302,2833,5188,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,8.2698078,7.9571605,3,0,0,0,-9,0,-991.76587,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0467882,8.1112061,0,3,59.880001,45.34,-9,-9,7,1,1,0,0,2,4,1,1992,683276.25,0,0,2648.3298 -2303,2834,5189,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,3,8.3708,8.5019445,0,3,0,0,0,-9,0,-888.73816,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,1,38,38,15,1,0,-9,0,16.184492,16.184492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,43.040001,-9,-9,6,3,4,0,0,8,5,0,478,369605.81,0,0,1967.5331 -2304,2835,5190,-9,5191,5192,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.2566,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,5,1,1065,-16023.71,0,0,3433.5005 -2304,2835,5191,5192,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,7.7150745,7.9683719,0,2,0,-9,5,0,3,115.17516,0,0,1,35,1,4,1,3,2,2019,1,1,11,0,44,47,15,1,0,1,0,5.3336263,5.3336263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.060001,58.639999,51.490002,57.57,6,2,3,0,0,6,5,1,1065,-16023.71,0,0,3433.5005 -2304,2835,5192,5191,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,0,4,8.8394308,9.2064867,0,2,0,-9,5,0,-3,-35.774277,0,0,0,38,1,4,1,3,3,2019,1,2,9,1,48,46,15,1,0,1,0,24.168451,24.168451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,49.060001,58.639999,7,2,3,0,0,6,5,1,1065,-16023.71,0,0,3433.5005 -2304,2835,5193,-9,5191,5192,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.4907,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,5,1,1065,-16023.71,0,0,3433.5005 -2305,2836,5194,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,0,3,7.5115504,7.7027702,0,3,0,0,0,-9,0,-1091.2841,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,37,40,15,1,0,-9,0,6.7064114,6.7064114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,13,3,1,297,494102.06,0,0,-99.294991 -2306,2837,5195,5196,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,7.6675987,7.5284362,1,0,-9,50,0,1,-22.42448,0,0,0,72,2,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3693247,0,0,62.490002,55.09,57.16,56.150002,7,1,1,0,0,5,2,1,556,353824.19,0,0,2073.5945 -2306,2837,5196,5195,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,5.5530744,5.9041295,1,0,-9,51,0,-1,-56.17902,0,0,0,73,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7522631,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,5,2,1,556,353824.19,0,0,2073.5945 -2307,2838,5197,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-998.44983,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.950001,47.23,-9,-9,6,1,1,0,0,13,1,1,1389,42205.797,0,0,211.29398 -2307,2839,5198,-9,5197,-9,2,1,0,45,2,0,0,0,3,-9,2,1,0,0,4,8.1700525,8.2626991,0,3,0,0,0,-9,0,-1067.6677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,60,0,15,1,0,-9,1,6.2502546,6.2502546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,4,1,465,149652.78,0,0,697.41357 -2308,2840,5199,5202,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,7,0,-14,73.986977,0,0,0,62,2,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1840758,0,0,0,46.400002,59.869999,42.389999,54.77,5,1,1,0,0,7,2,1,655,988709.19,0,0,1831.6249 -2308,2840,5200,-9,5199,5202,3,1,0,17,2,0,2,1,2,0,7,2,0,0,5,5.7323952,5.5638018,0,2,0,0,0,-9,0,-1242.2416,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,3,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8685026,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,7,2,1,655,988709.19,0,0,1831.6249 -2308,2840,5201,-9,5199,5202,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-930.72266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,7,2,1,655,988709.19,0,0,1831.6249 -2308,2840,5202,5199,-9,-9,2,1,1,62,1,0,2,0,2,-9,1,1,0,0,3,7.9241095,8.0510616,0,2,0,-9,7,0,14,35.923359,0,0,0,48,2,5,3,-9,-9,2019,2,1,20,7,50,25,15,1,1,3,0,6.5515232,6.5515232,0,0,0,0,0,0,0,0,1,1,0,7.3529992,0,0,0,42.389999,54.77,46.400002,59.869999,4,1,1,0,0,7,2,1,655,988709.19,0,0,1831.6249 -2309,2841,5203,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,0,2,0,8.1989651,8.2064734,3,0,0,0,-9,0,-1022.6674,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2407684,6.5427194,3,45.189999,14.87,-9,-9,5,1,1,0,0,9,4,1,223,1105220,0,0,3403.8003 -2310,2842,5204,5205,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.0125284,7.7675323,0,1,0,-9,4,0,6,4.5363841,0,0,0,40,1,4,1,-9,-9,2019,1,1,9,0,45,45,15,1,0,1,0,8.3274632,8.3274632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.290001,52.369999,60.700001,47.650002,4,1,1,0,0,11,5,1,1874,492896.69,0,0,3885.9326 -2310,2842,5205,5204,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,0,4,8.3521566,8.754652,0,1,0,-9,4,0,-6,-31.060984,0,0,1,46,2,4,1,2,2,2019,1,2,6,0,43,42,15,1,0,1,0,10.16665,10.16665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.700001,47.650002,56.290001,52.369999,6,1,1,0,0,11,5,1,1874,492896.69,0,0,3885.9326 -2311,2843,5206,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,4,8.4255943,8.6071186,0,3,0,-9,0,-9,0,-1005.9523,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,48,0,15,1,0,-9,0,13.33354,13.33354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.200001,57.490002,-9,-9,2,1,1,0,0,7,5,0,668,179665.69,0,0,1914.9 -2312,2844,5207,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1092.6333,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,0,39,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.40919992,0,0,0,57.060001,57.759998,-9,-9,7,1,1,1,0,2,1,1,440,553698.5,0,0,-499.55441 -2313,2845,5208,5209,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,6.7576799,8.5599985,8.5087337,1,0,-9,37,0,2,74.341286,0,0,0,61,2,5,1,-9,-9,2019,3,2,11,0,15,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0631304,8.4054308,0,0,39.220001,43.209999,46.990002,58.369999,6,2,3,0,0,6,5,1,1026.5,1585802.5,0,0,4823.0977 -2313,2845,5209,5208,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,5,8.5630398,8.6197567,0,1,0,-9,3,0,-2,-82.880096,0,0,0,63,2,3,3,-9,-9,2019,2,1,21,8,48,53,15,1,1,4,0,15.990249,15.990249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.990002,58.369999,39.220001,43.209999,5,2,3,0,0,6,5,1,1026.5,1585802.5,0,0,4823.0977 -2313,2846,5210,-9,5209,5208,3,1,0,34,2,0,0,0,1,-9,2,1,0,0,4,8.8641043,8.8672123,0,3,0,0,0,-9,0,-819.48792,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,25,10,37,37,15,1,1,-9,1,22.948145,22.948145,0,0,0,0,0,0,0,0,0,0,0,6.2327724,0,0,0,25.200001,66.669998,-9,-9,3,2,3,0,0,6,5,1,385,414165.09,0,0,2465.4729 -2314,2847,5211,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-854.18024,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,6.7682014,0,0,0,0,52.697315,0,1,1,0,0,0,0,0,65.650002,21.23,-9,-9,7,1,1,0,0,12,1,1,111,386325.5,0,0,-39.465252 -2315,2848,5212,5213,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,7.528738,7.3693428,1,0,-9,51,0,-1,22.769753,0,0,0,71,1,2,3,1,1,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,9.3886299,0,0,0,0,14.5,1,1,0,0,7.6768188,21.961103,3,56.349998,51.16,63.799999,22.370001,5,1,1,0,0,1,3,1,376,861674.13,0,0,2463.8071 -2315,2848,5213,5212,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,2,0,7.2065802,6.9503641,1,0,-9,49,0,1,-19.090498,0,0,0,70,1,3,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2665813,6.9516416,0,0,63.799999,22.370001,56.349998,51.16,6,1,1,0,0,1,3,1,376,861674.13,0,0,2463.8071 -2316,2849,5214,5215,-9,-9,3,1,1,52,1,0,0,0,3,-9,2,1,0,0,3,7.8233328,8.0618544,0,1,0,-9,2,0,2,-85.754089,0,0,0,50,2,3,1,-9,-9,2019,1,1,11,1,40,0,15,1,0,1,0,7.3031783,7.3031783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,52.240002,48.84,5,4,1,0,0,11,3,0,1966,1308216,0,0,1332.3323 -2316,2849,5215,5214,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,6.593256,6.5933337,0,1,0,-9,2,0,-2,-86.135384,0,0,0,52,3,3,1,3,-9,2019,1,3,9,0,12,23,15,1,0,1,0,7.7094445,7.7094445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,48.84,49,50,7,1,1,0,0,11,3,0,1966,1308216,0,0,1332.3323 -2316,2850,5216,-9,5215,-9,2,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.0263758,8.4914694,0,3,0,0,0,-9,0,-968.44989,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,37,0,15,1,0,-9,1,11.837237,11.837237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,4,0,406,212475.3,0,0,2688.7625 -2317,2851,5217,5218,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,0,31.612061,0,0,0,70,3,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.689197,3,61.689999,36.540001,34.209999,51.580002,7,1,1,0,0,9,2,1,317.5,779103.88,0,0,2168.3657 -2317,2851,5218,5217,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.9917116,7.0351434,1,0,-9,47,0,0,170.23393,0,0,0,70,3,3,3,3,3,2019,4,1,24,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1152678,7.4925036,8.8024435,3,34.209999,51.580002,61.689999,36.540001,4,1,1,0,0,9,2,1,317.5,779103.88,0,0,2168.3657 -2318,2852,5219,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,5,8.7728062,8.6708059,0,3,0,-9,0,1,0,-994.84851,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,53,15,1,0,-9,0,10.376265,10.376265,0,0,0,0,0,0,0,0,0,0,0,4.186275,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,5,5,1,851,1428794,0,0,1528.9622 -2319,2853,5220,5221,-9,-9,1,1,0,29,1,0,0,0,1,-9,1,1,0,0,4,9.7549696,9.5331087,0,1,0,-9,9,0,-12,171.8022,0,1,1,41,2,4,1,3,2,2019,1,2,1,0,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5.2658143,3,58.150002,52.91,60.52,53.200001,5,1,1,0,0,10,5,1,273.5,1923405.1,0,0,7956.2939 -2319,2853,5221,5220,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,4,8.6939821,8.6583195,0,1,0,-9,9,0,12,69.143791,0,0,0,29,1,4,1,2,2,2019,1,1,7,0,45,44,15,1,0,1,0,12.543037,12.543037,0,0,0,0,0,0,0,0,0,0,0,4.2278194,0,0,0,60.52,53.200001,58.150002,52.91,5,1,1,0,0,10,5,1,273.5,1923405.1,0,0,7956.2939 -2320,2854,5222,5223,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,6.8438563,7.5816288,6.9657335,1,0,-9,10,0,3,-46.669128,0,0,0,60,2,3,1,3,-9,2019,1,1,11,1,10,10,15,1,0,1,0,12.815833,12.815833,0,0,0,0,0,0,0,0,0,0,0,.94152945,6.8699117,0,0,50.349998,47.07,43.790001,54.07,5,1,1,0,0,11,4,1,447.5,-1275.2754,0,0,3590.8691 -2320,2854,5223,5222,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.168766,8.1731548,6.2895908,1,0,-9,10,0,-3,-22.18721,0,0,0,63,2,3,1,2,-9,2019,1,2,19,7,40,45,15,1,1,1,0,8.3070202,8.3070202,0,0,0,0,0,0,0,0,0,0,0,7.6556597,6.3250241,0,0,43.790001,54.07,50.349998,47.07,3,1,1,0,0,11,4,1,447.5,-1275.2754,0,0,3590.8691 -2320,2855,5224,-9,5222,5223,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,7.8089356,8.1403303,0,3,0,0,0,-9,0,-895.24261,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,0,-9,1,8.6790848,8.6790848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.02,48.450001,-9,-9,4,1,1,0,0,11,4,1,869,61278.703,0,0,200.32738 -2321,2856,5225,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,0,4,8.7917881,8.650197,0,3,0,0,0,-9,0,-1002.9653,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,35,40,15,1,0,-9,0,22.99011,22.99011,0,0,0,0,0,0,0,0,0,0,0,1.0799627,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,8,5,0,710,-100547.77,0,0,3213.6211 -2322,2857,5226,5228,-9,-9,1,1,0,39,1,0,3,0,1,-9,8,3,1,1,2,0,0,0,2,0,-9,19,0,-1,56.421719,0,0,1,40,1,3,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.7517853,3,57.310001,27.01,47.98,42.709999,6,1,1,0,0,10,3,1,1013.4,152597.09,0,0,2642.1963 -2322,2857,5227,-9,5226,5228,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.25,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,1013.4,152597.09,0,0,2642.1963 -2322,2857,5228,5226,-9,-9,2,1,1,40,1,0,3,0,1,-9,2,1,0,0,3,8.6384087,8.6566172,0,2,0,-9,7,0,1,-99.644875,0,0,0,39,1,2,3,-9,-9,2019,2,1,16,4,45,45,15,1,1,3,0,14.933319,14.933319,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.382039,1,47.98,42.709999,57.310001,27.01,6,1,1,0,0,10,3,1,1013.4,152597.09,0,0,2642.1963 -2322,2857,5229,-9,5226,5228,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.36945,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,10,3,1,1013.4,152597.09,0,0,2642.1963 -2322,2857,5230,-9,5226,5228,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.2562,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,1013.4,152597.09,0,0,2642.1963 -2323,2858,5231,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,2,0,7.8914819,7.6548238,3,0,-9,0,1,0,-1070.3978,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3118789,7.4577723,0,0,48.98,35.959999,-9,-9,4,1,1,0,0,7,3,1,142,685351.19,0,0,3184.2131 -2324,2859,5232,5233,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.4864025,8.5443583,0,1,0,-9,7,0,-4,40.600391,0,0,0,55,2,2,1,2,3,2019,1,1,14,2,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,4.1973333,3,41.279999,54.029999,49.799999,36.689999,5,1,1,0,0,12,5,1,877,840101,0,0,3052.2046 -2324,2859,5233,5232,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,8.19841,8.213623,0,1,0,-9,7,0,4,-60.493,0,0,0,51,2,3,1,3,2,2019,1,2,11,2,40,40,15,1,0,1,0,8.6366653,8.6366653,0,0,0,0,0,0,0,2,0,0,0,0,0,.7430836,3,49.799999,36.689999,41.279999,54.029999,3,1,1,0,0,12,5,1,877,840101,0,0,3052.2046 -2324,2860,5234,-9,5232,5233,3,1,0,21,2,0,0,0,1,1,2,1,0,0,3,7.9145961,7.7575946,0,3,0,0,0,-9,0,-1137.9968,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,0,15,1,0,-9,1,5.3294158,5.3294158,0,0,0,0,0,0,0,2,0,0,0,2.882201,0,3.1710522,3,49.040001,55.860001,-9,-9,6,1,1,0,0,12,3,1,144,-34038.297,0,0,2160.2227 -2325,2861,5235,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,3,7.420578,7.5613379,0,3,0,-9,0,-9,0,-1034.0743,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,30,0,15,1,0,-9,0,6.378191,6.378191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,2,3,1,262,272824,0,0,756.63379 -2326,2862,5236,-9,5237,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-950.68463,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,6,4,1,286.5,234201.72,0,0,2828.502 -2326,2862,5237,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,0,4,9.0075798,8.6676702,0,4,0,0,0,-9,0,-977.93243,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,60,60,15,1,0,-9,0,13.527039,13.527039,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,41.360001,59.41,-9,-9,3,3,4,0,1,6,4,1,286.5,234201.72,0,0,2828.502 -2326,2863,5238,-9,5237,-9,2,1,0,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-967.55536,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,6,1,1,318,259819.73,0,0,0 -2326,2864,5239,-9,5237,-9,3,1,0,19,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1061.3047,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.860001,55.66,-9,-9,5,4,2,0,0,6,1,1,2021,0,0,0,159.94299 -2327,2865,5240,5241,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.293961,7.3141894,1,0,-9,56,0,2,.19101466,0,0,0,73,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.044529,7.0618014,0,0,59.34,46.939999,51,46,7,1,1,0,0,7,2,1,1379.5,363765.75,0,0,2545.8459 -2327,2865,5241,5240,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.9263406,5.9862719,1,0,-9,7,0,-2,-17.744614,0,0,0,75,3,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0060282,0,0,51,46,59.34,46.939999,6,1,1,0,0,7,2,1,1379.5,363765.75,0,0,2545.8459 -2328,2866,5242,5243,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,1,0,6.644578,6.5976686,1,0,-9,64,0,1,98.958359,0,0,0,83,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6789603,0,0,55.82,17.879999,64.690002,26.73,6,1,1,0,0,1,2,1,514.5,176196.53,0,0,733.45343 -2328,2866,5243,5242,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,64,0,-1,8.2332258,0,0,0,84,3,1,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.690002,26.73,55.82,17.879999,6,1,1,0,0,1,2,1,514.5,176196.53,0,0,733.45343 -2329,2867,5244,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,6.9172187,7.0944071,3,0,0,0,-9,0,-977.12952,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2826514,0,0,66.610001,45.119999,-9,-9,6,1,1,0,0,12,2,1,1882,447694.59,0,0,404.3967 -2330,2868,5245,5246,-9,-9,1,1,0,51,1,0,1,0,1,-9,97,3,0,0,4,5.9712925,6.091424,0,2,0,-9,29,0,-2,56.05854,0,0,0,53,1,4,1,2,1,2019,3,2,10,0,4,12,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,51.830002,57.200001,6,1,1,0,0,10,4,1,494.66666,1041621.5,0,0,2647.6458 -2330,2868,5246,5245,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,8.8278933,8.9377108,0,2,0,-9,29,0,2,47.02795,0,0,0,51,1,4,3,2,2,2019,2,1,7,0,30,30,15,1,0,3,0,30.335791,30.335791,0,0,0,0,0,0,0,0,1,1,0,4.7226791,0,0,0,51.830002,57.200001,54.790001,55.860001,6,1,1,0,0,10,4,1,494.66666,1041621.5,0,0,2647.6458 -2330,2868,5247,-9,5245,5246,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,3.6682699,3.8150682,0,2,0,0,0,-9,0,-989.94379,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.189999,-9,-9,6,1,1,0,0,10,4,1,494.66666,1041621.5,0,0,2647.6458 -2331,2869,5248,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,0,3,4.7108455,7.8960032,7.9828024,3,0,0,0,-9,0,-929.40356,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6990056,8.0237799,8.5955324,3,50.18,52.619999,-9,-9,5,1,1,0,0,13,4,1,647,1181002.4,0,0,490.047 -2332,2870,5249,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,3,8.4865599,8.4224672,0,3,0,0,0,-9,0,-967.35931,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,30,15,1,0,-9,0,15.918023,15.918023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.860001,55.66,-9,-9,6,1,1,0,0,7,4,1,506,610620.19,0,0,1960.1324 -2333,2871,5250,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,0,3,8.1003408,7.966711,0,3,0,0,0,-9,0,-1037.4408,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,9,41,78,15,1,1,-9,0,9.2509165,9.2509165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.469999,60.560001,-9,-9,5,1,1,0,0,10,4,1,841,210934.55,0,0,1299.5698 -2334,2872,5251,5252,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.5961161,8.9925938,0,1,0,-9,29,0,-3,37.130157,0,0,0,57,2,3,1,2,1,2019,1,1,7,0,37,37,15,1,0,1,0,17.593096,17.593096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.630001,41.439999,57.330002,53.459999,6,1,1,0,0,11,5,1,779.5,184417.67,0,0,2916.687 -2334,2872,5252,5251,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.3153114,8.2363243,0,1,0,-9,29,0,3,-90.633408,0,0,0,54,2,3,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,10.481387,10.481387,0,0,0,0,0,0,0,0,0,0,0,1.8403724,0,0,0,57.330002,53.459999,59.630001,41.439999,6,1,1,0,0,11,5,1,779.5,184417.67,0,0,2916.687 -2335,2873,5253,5254,-9,-9,2,1,1,49,1,0,0,0,3,-9,2,1,0,0,2,8.8096514,8.8626261,0,1,0,-9,1,-9,6,-9.3502607,-9,0,0,43,1,1,3,-9,2,2019,2,1,7,0,40,0,15,1,0,3,0,22.045219,22.045219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.509998,46.419998,42.279999,26.860001,5,1,1,0,0,1,5,0,1208.5,809293.75,0,0,3078.4897 -2335,2873,5254,5253,-9,-9,1,1,0,43,1,0,0,0,1,-9,8,3,1,1,1,0,0,0,1,0,-9,1,-9,-6,18.850466,-9,0,1,49,3,2,1,2,2,2019,3,2,15,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,42.279999,26.860001,49.509998,46.419998,4,1,1,0,0,1,5,0,1208.5,809293.75,0,0,3078.4897 -2335,2874,5255,-9,5254,5253,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,7.522758,7.2879953,0,3,0,-9,0,-9,0,-943.66302,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,10,0,50,0,15,1,0,-9,1,4.0082045,4.0082045,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.66,52.400002,-9,-9,4,1,1,0,0,1,3,0,353,81007.414,0,0,-72.328941 -2336,2875,5256,5257,-9,-9,2,1,1,36,1,2,2,0,1,-9,2,1,0,0,5,9.3602276,9.2051926,0,2,0,-9,10,0,0,-90.092041,0,0,0,36,1,4,1,-9,-9,2019,1,1,12,0,37,37,15,1,0,1,0,29.785707,29.785707,0,0,0,0,0,0,0,0,0,0,0,4.3940144,0,0,0,54.099998,59.110001,54.77,55.869999,2,1,1,0,0,9,5,1,433.5,274141.66,0,0,5009.9644 -2336,2875,5257,5256,-9,-9,1,1,0,36,1,2,2,0,1,-9,5,1,0,0,4,8.6292734,8.9091768,0,2,0,-9,10,0,0,-88.84185,0,0,1,36,1,5,1,2,1,2019,1,2,12,0,37,39,15,1,0,1,0,17.076008,17.076008,0,0,0,0,0,0,0,0,0,0,0,4.0150337,0,0,0,54.77,55.869999,54.099998,59.110001,6,1,1,0,0,9,5,1,433.5,274141.66,0,0,5009.9644 -2336,2875,5258,-9,5257,5256,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1057.8297,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,5,1,433.5,274141.66,0,0,5009.9644 -2336,2875,5259,-9,5257,5256,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.9346,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,433.5,274141.66,0,0,5009.9644 -2337,2876,5260,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,1,0,7.7398195,7.9171753,3,0,0,0,-9,0,-1010.9499,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.823122,0,0,1,1,0,0,7.6187863,0,0,45.029999,16.49,-9,-9,7,1,1,0,0,4,3,0,894,245291.7,0,0,3228.6631 -2338,2877,5261,5262,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,1,1,6.321404,7.8843622,7.1448002,1,0,-9,10,0,-5,-17.743408,0,0,0,66,2,3,1,-9,-9,2019,1,2,25,7,40,23,15,1,1,1,0,1.8997076,1.8997076,0,0,0,0,0,0,0,0,1,1,0,0,6.9770355,0,0,28.709999,18.35,45.650002,34.279999,1,1,1,0,0,4,3,1,298,857207,0,0,2685.7629 -2338,2877,5262,5261,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,0,3,0,7.5037723,7.214304,1,0,-9,10,0,5,8.2149534,0,0,0,61,1,1,1,-9,-9,2019,1,1,10,0,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3032269,7.631104,0,0,45.650002,34.279999,28.709999,18.35,4,1,1,0,0,4,3,1,298,857207,0,0,2685.7629 -2339,2878,5263,5264,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.4621511,7.3004208,5.1999345,1,0,-9,13,0,12,18.248158,0,0,0,51,2,4,1,3,3,2019,1,2,12,0,35,32,15,1,0,1,0,5.5081859,5.5081859,0,0,0,0,0,0,0,7,0,0,0,0,5.8137655,0,3,60.279999,43.740002,52,55,6,1,1,0,0,9,5,1,504.5,9772.1484,0,0,3658.1526 -2339,2878,5264,5263,-9,-9,2,1,1,51,1,0,0,0,2,-9,1,1,0,0,4,8.7583561,9.0541077,0,1,0,-9,13,0,-12,-79.092781,0,0,0,63,2,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,19.195076,19.195076,0,0,0,0,0,0,0,0,0,0,0,.83630741,0,0,0,52,55,60.279999,43.740002,6,1,1,0,0,9,5,1,504.5,9772.1484,0,0,3658.1526 -2340,2879,5265,-9,-9,-9,2,1,1,66,2,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-981.04327,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,1,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,116.71847,3,51,48,-9,-9,5,1,1,0,1,5,1,1,400,123017.21,0,0,776.34332 -2341,2880,5266,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,1,3,0,6.5314755,6.1519499,3,0,0,0,-9,0,-968.96619,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,.21506248,0,0,14.690196,20.073736,20.692783,0,1,1,0,5.1620846,5.7353702,0,0,61.860001,30.99,-9,-9,6,1,1,0,0,8,2,0,1159,423580.5,0,0,2253.4121 -2341,2881,5267,-9,5266,-9,2,1,1,55,2,0,0,0,1,-9,2,1,0,0,3,9.1503687,9.1904135,0,3,0,0,0,-9,0,-1018.1806,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,71,61,15,1,0,-9,1,15.19171,15.19171,0,0,0,0,0,0,0,14.5,1,1,0,4.2656279,0,20.317322,3,52.540001,52.91,-9,-9,4,1,1,0,0,8,5,0,627,956360.13,0,0,1832.0083 -2342,2882,5268,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,2,8.0578423,8.1760683,0,3,0,0,0,-9,0,-1043.0446,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,40,40,15,1,1,-9,0,11.146289,11.146289,0,0,0,0,0,0,0,0,0,0,0,3.2328997,0,0,0,43.110001,41.450001,-9,-9,3,1,1,0,0,4,4,1,197,348266.56,0,0,1022.5636 -2343,2883,5269,5270,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,1,-9,-2,0,-9,0,0,81,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,70.559998,37.830002,6,2,3,0,0,7,1,1,776.5,141438.97,0,0,584.49292 -2343,2883,5270,5269,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,1,-9,2,0,-9,0,0,79,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,0,1,70.559998,37.830002,52,45,7,2,3,0,0,7,1,1,776.5,141438.97,0,0,584.49292 -2344,2884,5271,5272,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,3,8.4310217,8.8294086,0,1,0,-9,3,0,1,52.499943,0,1,0,24,2,4,1,-9,-9,2019,1,1,30,10,60,65,15,1,1,1,0,8.9618311,8.9618311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.220001,58.43,43.939999,58,3,1,1,0,0,9,5,1,547.5,208272.78,0,0,3089.635 -2344,2884,5272,5271,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,4,7.6406279,7.2853789,0,1,0,-9,3,0,-1,-9.8975439,0,1,1,25,2,3,1,2,1,2019,1,2,16,4,33,28,15,1,1,1,0,6.4171915,6.4171915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.939999,58,38.220001,58.43,6,1,1,0,0,9,5,1,547.5,208272.78,0,0,3089.635 -2345,2885,5273,5274,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.5759706,8.9308853,7.8671732,1,0,-9,23,0,7,41.225975,0,0,0,46,2,4,1,3,3,2019,1,1,10,0,37,40,15,1,0,1,0,17.766201,17.766201,0,0,0,0,0,0,0,0,1,1,0,4.0013514,8.4418888,0,0,54.790001,55.860001,41.07,43.279999,6,1,1,0,0,6,5,0,707,494934.19,0,0,4440.5635 -2345,2885,5274,5273,-9,-9,1,1,0,46,1,0,0,0,2,-9,1,1,0,0,4,6.4625478,7.7626166,6.8714433,1,0,-9,23,0,-7,-22.133244,0,0,0,53,2,4,1,2,2,2019,1,2,11,1,32,50,15,1,0,1,0,3.1114306,3.1114306,0,0,0,0,0,0,0,0,1,1,0,0,6.7751274,0,0,41.07,43.279999,54.790001,55.860001,5,1,1,0,0,6,5,0,707,494934.19,0,0,4440.5635 -2345,2886,5275,-9,5274,5273,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,5,7.574152,7.5392895,0,3,0,0,0,-9,0,-1014.3828,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,41,37,15,1,0,-9,1,4.9164729,4.9164729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,6,3,0,337,0,0,0,1306.3549 -2346,2887,5276,-9,5277,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-968.51312,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,2,1,0,333,-17983.932,0,0,470.70218 -2346,2887,5277,-9,-9,-9,1,1,0,26,3,0,2,0,3,-9,6,3,0,0,5,0,0,0,4,0,0,0,-9,0,-938.28552,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,3,4,0,1,2,1,0,333,-17983.932,0,0,470.70218 -2346,2887,5278,-9,5277,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.3216,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,2,1,0,333,-17983.932,0,0,470.70218 -2347,2888,5279,5280,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.5221615,8.1619682,0,1,0,-9,44,0,0,50.173672,0,0,0,62,2,3,1,3,3,2019,1,1,6,0,39,39,15,1,0,1,0,16.547426,16.547426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,48.77,49.110001,7,1,1,0,0,12,4,1,654.5,411437.13,0,0,1339.9369 -2347,2888,5280,5279,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,6.1696486,6.3792253,0,1,0,-9,44,0,0,-56.006702,0,0,0,62,2,3,1,3,2,2019,1,2,10,0,20,30,15,1,0,1,0,3.4946744,3.4946744,0,0,0,0,0,0,0,0,0,0,0,3.9962001,0,0,0,48.77,49.110001,57.330002,53.459999,6,1,1,0,0,12,4,1,654.5,411437.13,0,0,1339.9369 -2348,2889,5281,-9,5282,5284,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.1577,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,2,1,783.75,-17921.428,0,0,1773.5605 -2348,2889,5282,5284,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.4153128,7.2366152,0,2,0,-9,7,0,-5,-14.715763,0,0,1,49,3,4,3,3,3,2019,2,1,12,0,20,20,15,1,0,3,0,9.622571,9.622571,0,0,0,0,0,0,0,2,1,0,1,6.3014612,0,16.551643,3,46.630001,59.720001,43.389999,42.299999,6,1,1,0,0,6,2,1,783.75,-17921.428,0,0,1773.5605 -2348,2889,5283,-9,5282,5284,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.7517,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,1,783.75,-17921.428,0,0,1773.5605 -2348,2889,5284,5282,-9,-9,1,1,1,49,1,0,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,7,0,5,-72.979935,0,0,0,44,2,4,1,-9,-9,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.0424612,0,0,0,43.389999,42.299999,46.630001,59.720001,5,1,1,1,0,6,2,1,783.75,-17921.428,0,0,1773.5605 -2349,2890,5285,5286,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.9469085,7.708354,1,0,-9,43,0,1,6.1888995,0,0,0,65,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7848592,7.9772663,0,0,64.230003,39.150002,63.41,39.700001,6,1,1,0,0,2,3,1,1881.5,1051097.5,0,0,2819.8579 -2349,2890,5286,5285,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,-1,29.347935,0,0,0,66,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1876698,0,0,0,63.41,39.700001,64.230003,39.150002,6,1,1,0,0,2,3,1,1881.5,1051097.5,0,0,2819.8579 -2350,2891,5287,-9,5288,5289,5,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.04968,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,2,1,489.66666,135085.08,0,0,1016.9443 -2350,2891,5288,5289,-9,-9,2,1,0,48,1,0,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,8,0,0,116.05773,0,0,0,48,2,5,1,2,2,2019,1,1,14,4,45,60,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,56.73,57.060001,57.759998,4,1,1,0,0,13,2,1,489.66666,135085.08,0,0,1016.9443 -2350,2891,5289,5288,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,5,7.9425426,7.9512463,0,2,0,-9,8,0,0,20.875666,0,0,0,48,2,4,1,1,2,2019,1,2,6,0,45,40,15,1,0,1,0,6.4736805,6.4736805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,44.189999,56.73,5,1,1,0,0,13,2,1,489.66666,135085.08,0,0,1016.9443 -2350,2892,5290,-9,5288,5289,3,1,0,22,2,0,2,0,1,1,2,1,0,0,3,7.3661981,7.1342912,0,3,0,0,0,-9,0,-966.36353,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,26,0,15,1,0,-9,1,6.8923135,6.8923135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,51.16,-9,-9,6,1,1,0,0,13,3,1,268,78505.93,0,0,-44.421967 -2350,2893,5291,-9,5288,5289,4,1,0,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-986.18201,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.34,61.240002,-9,-9,5,1,1,0,1,13,3,1,65,6984.5181,0,0,0 -2351,2894,5292,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,5.6723647,5.9013252,3,0,0,0,-9,0,-959.47736,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0429072,5.7532668,0,0,42.630001,47.860001,-9,-9,6,1,1,0,0,10,2,1,612,106124.37,0,0,923.29535 -2352,2895,5293,5295,-9,-9,1,1,0,39,1,0,0,0,2,-9,2,1,0,0,2,8.0961494,7.7584658,0,1,0,-9,8,0,-2,136.10783,0,0,1,41,2,4,1,3,3,2019,1,2,12,0,24,24,15,1,0,1,0,12.068611,12.068611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,44.200001,55.189999,54.259998,6,1,1,0,0,7,4,1,175,288950.06,0,0,2688.4946 -2352,2895,5294,-9,5293,5295,4,1,0,17,2,0,0,0,2,1,2,3,0,0,4,6.8129835,6.2922201,0,1,0,0,0,-9,0,-1081.4219,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,31,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,7,4,1,175,288950.06,0,0,2688.4946 -2352,2895,5295,5293,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,4,7.3122268,7.1112905,0,1,0,-9,8,0,2,-67.68821,0,0,0,39,2,2,1,2,-9,2019,1,1,10,0,20,5,15,1,0,1,0,8.6563692,8.6563692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,45.810001,44.200001,6,1,1,0,0,7,4,1,175,288950.06,0,0,2688.4946 -2352,2896,5296,-9,5293,5295,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.6341863,7.6101532,0,3,0,0,0,-9,0,-944.42377,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,48,15,15,1,0,-9,1,4.8140726,4.8140726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,7,3,1,2993,-99257.133,0,0,990.94098 -2353,2897,5297,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,2,7.8528337,7.684957,0,3,0,0,0,-9,0,-853.64832,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,11,40,35,15,1,1,-9,0,10.092512,10.092512,0,0,0,0,0,0,0,0,0,0,0,1.7612736,0,0,0,36.939999,49.349998,-9,-9,2,1,1,0,0,9,4,1,240,672922.5,0,0,1598.5811 -2354,2898,5298,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1058.1038,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,24,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,55.57,-9,-9,5,1,1,0,0,1,1,0,343,0,0,0,1504.8859 -2355,2899,5299,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1011.2681,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.700001,56.220001,-9,-9,3,4,5,0,0,11,1,0,1111,-206734.42,0,0,0 -2356,2900,5300,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,6.7260523,6.9141798,3,0,0,0,-9,0,-1117.4603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.2420552,6.8552737,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,2,2,1,412,758835.06,0,0,601.46222 -2357,2901,5301,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,6.0298076,6.4881926,3,0,-9,0,-9,0,-914.88556,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9993458,.38860604,3,38.82,63.209999,-9,-9,6,1,1,0,0,7,2,1,123,813190.06,0,0,886.8833 -2358,2902,5302,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,8.7103624,8.3580742,3,0,0,0,-9,0,-1084.7346,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.1380854,8.5460911,0,3,45.259998,56.130001,-9,-9,6,1,1,0,0,8,5,1,1675,4128595.8,0,0,3586.7258 -2359,2903,5303,-9,5305,5304,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.66119,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,10,5,1,1080.4,593690.94,0,0,4864.0283 -2359,2903,5304,5305,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,8.3276634,8.4715052,0,2,0,-9,7,0,8,31.080603,-9,0,0,38,1,4,1,2,2,2019,1,1,9,1,40,0,15,1,0,1,0,10.114823,10.114823,0,0,0,0,0,0,0,0,1,1,0,6.1037602,0,0,0,52,55,31.690001,62.360001,6,3,4,0,0,10,5,1,1080.4,593690.94,0,0,4864.0283 -2359,2903,5305,5304,-9,-9,1,1,0,38,1,0,3,0,1,-9,2,1,0,0,4,9.1515446,9.0640268,0,2,0,-9,16,0,-8,139.30215,0,0,1,46,1,4,1,1,1,2019,1,2,12,1,50,43,15,1,0,1,0,15.710469,15.710469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.690001,62.360001,52,55,6,1,1,0,0,10,5,1,1080.4,593690.94,0,0,4864.0283 -2359,2903,5306,-9,5305,5304,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.89246,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,10,5,1,1080.4,593690.94,0,0,4864.0283 -2359,2903,5307,-9,5305,5304,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.6339,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,5,1,1080.4,593690.94,0,0,4864.0283 -2360,2904,5308,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,2,7.8205004,7.9276671,0,3,0,0,0,-9,0,-956.82794,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,39,39,15,1,0,-9,0,7.1233878,7.1233878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.18,30.52,-9,-9,4,1,1,0,0,4,3,0,1006,-270696.91,0,0,1245.314 -2361,2905,5309,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1031.5305,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.029999,51.080002,-9,-9,2,1,1,0,0,5,1,0,340,-107248.06,0,0,-381.94476 -2362,2906,5310,-9,5311,5312,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.007,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,693.66669,-62870.953,0,0,2583.8523 -2362,2906,5311,5312,-9,-9,2,1,0,24,1,0,1,0,2,-9,2,1,0,0,2,7.2157645,7.1417308,0,2,0,-9,7,0,-3,24.507956,0,1,1,27,2,4,1,-9,-9,2019,1,1,11,0,20,0,15,1,0,1,0,8.1128397,8.1128397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.080002,45.970001,57.16,56.150002,4,1,1,0,0,10,4,1,693.66669,-62870.953,0,0,2583.8523 -2362,2906,5312,5311,-9,-9,1,1,1,27,1,0,1,0,2,-9,2,1,0,0,4,8.4582977,8.3503752,0,2,0,-9,7,0,3,-31.575443,0,1,0,24,2,2,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,10.257187,10.257187,0,0,0,0,0,0,0,0,1,1,0,2.3568144,0,0,0,57.16,56.150002,51.080002,45.970001,3,1,1,0,0,10,4,1,693.66669,-62870.953,0,0,2583.8523 -2363,2907,5313,5315,-9,-9,1,1,1,53,1,0,1,0,3,-9,2,1,0,0,4,7.0844865,6.9844456,0,2,0,-9,28,0,4,-120.11378,-9,0,0,49,3,4,3,-9,-9,2019,2,2,9,1,20,0,15,1,0,3,0,7.1410165,7.1410165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50,54,6,2,3,0,1,8,2,0,1587,652876.81,0,0,1396.3234 -2363,2907,5314,-9,5315,5313,6,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1039.5646,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,8,2,0,1587,652876.81,0,0,1396.3234 -2363,2907,5315,5313,-9,-9,2,1,0,49,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,30,0,-4,-118.7095,-9,0,0,53,3,4,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,53,54,6,2,3,0,1,8,2,0,1587,652876.81,0,0,1396.3234 -2363,2908,5316,-9,5315,5313,3,1,0,27,2,0,1,0,1,-9,2,1,0,0,4,8.284421,8.2781696,0,3,0,0,0,-9,0,-897.96307,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,39,38,15,1,0,-9,1,9.6464195,9.6464195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,8,4,0,591,0,0,0,1658.197 -2363,2909,5317,-9,5315,5313,4,1,0,32,2,0,1,0,1,-9,2,1,0,0,4,8.851532,8.998332,2.3815222,3,0,0,0,-9,0,-1032.0347,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,36,42,15,1,0,-9,1,27.676788,27.676788,0,0,0,0,0,0,0,0,1,1,0,3.2327118,2.9006712,0,0,48,57,-9,-9,5,2,3,0,0,8,5,0,280,20795.334,0,0,3476.9253 -2363,2910,5318,-9,5315,5313,5,1,1,20,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-955.54449,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,2,3,0,0,8,1,0,347,0,0,0,0 -2364,2911,5319,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,1,1,0,0,3,7.3446217,8.7317219,8.3455009,3,0,0,0,-9,0,-986.79034,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,4,4,15,1,0,-9,0,45.174221,45.174221,0,0,0,0,0,0,0,0,0,0,0,8.9345675,0,0,0,47.720001,47.009998,-9,-9,5,1,1,0,0,13,5,1,251,675146.94,0,0,4554.3789 -2365,2912,5320,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,3,0,4.9222426,4.7669864,3,0,0,0,-9,0,-895.84833,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6702638,4.1745582,0,0,56.02,27.23,-9,-9,6,1,1,0,1,5,2,0,2237,78229.703,0,0,1900.3333 -2366,2913,5321,5324,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,0,5,7.5768962,7.6344523,6.2255664,2,0,-9,7,0,0,-34.70586,0,0,1,34,1,3,1,2,2,2019,1,2,13,2,14,0,15,1,0,1,0,13.280091,13.280091,0,0,0,0,0,0,0,0,1,1,0,6.3348145,0,0,0,38.299999,62.369999,62.450001,40.09,6,1,1,0,0,10,5,1,819,343448.69,0,0,4545.2861 -2366,2913,5322,-9,5321,5324,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.96112,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,819,343448.69,0,0,4545.2861 -2366,2913,5323,-9,5321,5324,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.671,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,819,343448.69,0,0,4545.2861 -2366,2913,5324,5321,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,3,9.1185503,9.3018713,0,2,0,-9,7,0,0,-92.316025,0,0,0,34,1,5,1,1,1,2019,1,1,8,0,41,41,15,1,0,1,0,25.558731,25.558731,0,0,0,0,0,0,0,0,1,1,0,1.6755052,0,0,0,62.450001,40.09,38.299999,62.369999,6,1,1,0,0,10,5,1,819,343448.69,0,0,4545.2861 -2367,2914,5325,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,4,3,0,0,4,0,7.0714068,7.1075115,3,0,0,0,-9,0,-999.46777,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6700974,6.8926444,0,0,41.400002,58.060001,-9,-9,6,2,3,0,0,7,2,0,528,169907.88,0,0,449.95874 -2368,2915,5326,5327,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,7.155684,7.6593995,6.8901958,1,0,-9,46,0,10,23.52404,0,0,0,65,2,4,3,2,2,2019,4,2,7,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5962601,7.2721953,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,331.5,975603.81,0,0,2636.2773 -2368,2915,5327,5326,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,6.340364,6.3803139,0,1,0,-9,46,0,-10,-22.961319,0,0,0,75,2,4,3,2,2,2019,4,1,6,0,14,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3592143,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,331.5,975603.81,0,0,2636.2773 -2369,2916,5328,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,0,3,8.6702747,8.9636097,0,3,0,0,0,-9,0,-942.62433,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,45,15,1,0,-9,0,19.578579,19.578579,0,0,0,0,0,0,0,7,0,0,0,6.3015084,0,5.0082164,3,52.939999,41.91,-9,-9,6,1,1,0,0,6,5,0,1785,128623.83,0,0,2922.2427 -2370,2917,5329,5330,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.1119766,6.0716357,1,0,-9,55,0,-3,-74.254349,0,0,0,74,3,1,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.1913834,127.63816,1,52.650002,51.639999,50.419998,20.76,5,1,1,0,0,9,2,1,841,356663.13,0,0,1793.1948 -2370,2917,5330,5329,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,1,1,0,5.7004309,5.9281507,1,0,-9,55,0,3,55.301231,0,0,0,71,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,117.75735,0,0,0,0,0,1,1,0,6.2952313,6.1484838,0,0,50.419998,20.76,52.650002,51.639999,6,1,1,0,0,9,2,1,841,356663.13,0,0,1793.1948 -2371,2918,5331,5333,-9,-9,2,1,0,24,1,1,2,0,2,-9,2,1,0,0,2,7.2968497,7.3132949,0,2,0,-9,4,0,-3,27.492273,0,1,1,27,2,2,1,-9,-9,2019,1,1,19,5,36,21,15,1,1,1,0,5.0714989,5.0714989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.93,59.150002,52.16,35.619999,6,1,1,0,0,6,4,0,920.5,197348.55,0,0,2477.3137 -2371,2918,5332,-9,5331,5333,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.71301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,0,920.5,197348.55,0,0,2477.3137 -2371,2918,5333,5331,-9,-9,1,1,1,27,1,1,2,0,2,-9,2,1,0,0,2,8.5220222,8.4868231,0,2,0,-9,4,0,3,112.96079,0,1,0,24,2,2,1,2,2,2019,1,2,15,3,42,42,15,1,0,1,0,14.471954,14.471954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.16,35.619999,30.93,59.150002,5,1,1,0,0,6,4,0,920.5,197348.55,0,0,2477.3137 -2371,2918,5334,-9,5331,5333,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.60272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,920.5,197348.55,0,0,2477.3137 -2372,2919,5335,-9,5337,5336,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.9883,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,5,1,525.66669,354246.75,0,0,4323.3018 -2372,2919,5336,5337,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,3,9.2013893,9.002368,0,2,0,-9,6,0,2,20.419035,0,0,0,34,1,3,1,-9,-9,2019,1,1,13,1,35,40,15,1,0,1,0,34.484303,34.484303,0,0,0,0,0,0,0,0,1,1,0,7.6164064,0,0,0,37.189999,58.610001,45.060001,52.299999,5,1,1,0,0,9,5,1,525.66669,354246.75,0,0,4323.3018 -2372,2919,5337,5336,-9,-9,1,1,0,34,1,1,1,0,1,-9,5,1,0,0,3,0,0,0,2,0,-9,6,0,-2,39.892941,0,0,1,36,1,3,1,3,3,2019,1,2,16,4,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.060001,52.299999,37.189999,58.610001,5,2,3,0,0,9,5,1,525.66669,354246.75,0,0,4323.3018 -2373,2920,5338,-9,-9,-9,1,1,1,45,2,0,0,0,1,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1106.119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.669998,49.540001,-9,-9,6,3,4,1,1,8,1,0,475,-33980.918,0,0,1167.726 -2374,2921,5339,5340,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,4,0,0,0,0,70,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,31.74,49.139999,6,1,1,0,0,12,1,0,650,125095.86,0,0,1111.0564 -2374,2921,5340,5339,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,9,0,-4,0,0,0,0,74,3,3,3,3,3,2019,4,2,20,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.06456,1,31.74,49.139999,57.330002,53.459999,5,1,1,0,0,12,1,0,650,125095.86,0,0,1111.0564 -2375,2922,5341,-9,5343,5342,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.89838,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,633.66669,2226554.8,0,0,5431.2588 -2375,2922,5342,5343,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,9.2260695,8.8767538,0,2,0,-9,21,0,4,-143.16493,0,0,0,41,2,4,1,2,2,2019,1,2,16,4,40,42,15,1,1,1,0,23.186853,23.186853,0,0,0,0,0,0,0,0,1,1,0,2.0186687,0,0,0,35.610001,65.82,33.830002,63.900002,3,1,1,0,0,10,5,1,633.66669,2226554.8,0,0,5431.2588 -2375,2922,5343,5342,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.9598026,9.0344877,0,2,0,-9,21,0,-4,115.38234,0,0,1,45,1,4,1,2,-9,2019,1,1,14,2,35,35,15,1,0,1,0,29.266405,29.266405,0,0,0,0,0,0,0,0,1,1,0,1.5181185,0,0,0,33.830002,63.900002,35.610001,65.82,6,1,1,0,0,10,5,1,633.66669,2226554.8,0,0,5431.2588 -2376,2923,5344,5345,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,0,3,9.411191,9.5719271,0,1,0,-9,16,0,-8,53.269592,0,0,0,53,1,3,1,2,1,2019,1,2,9,0,41,42,15,1,0,1,0,35.079266,35.079266,0,0,0,0,0,0,0,0,0,0,0,3.2191825,0,0,0,49.040001,55.860001,44.950001,52.41,5,1,1,0,0,10,5,1,612.5,2400245.5,0,0,5344.5986 -2376,2923,5345,5344,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,8.6266737,8.8616104,0,1,0,-9,16,0,8,-61.011116,0,0,0,45,1,3,1,2,2,2019,1,1,11,0,38,37,15,1,0,1,0,24.659737,24.659737,0,0,0,0,0,0,0,0,0,0,0,3.085444,0,0,3,44.950001,52.41,49.040001,55.860001,6,1,1,0,0,10,5,1,612.5,2400245.5,0,0,5344.5986 -2377,2924,5346,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,1,1,0,0,3,7.5220976,7.0560131,0,3,0,0,0,-9,0,-1028.5358,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,9,35,25,15,1,1,-9,0,5.0791717,5.0791717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.07,58.82,-9,-9,1,3,4,0,0,6,2,0,3962,39561.805,0,0,35.663872 -2377,2925,5347,-9,5346,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,0,2,7.4868197,7.5731959,0,3,0,0,0,-9,0,-974.1535,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,33,12,35,0,15,1,1,-9,1,7.4821134,7.4821134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.74,49.419998,-9,-9,2,4,2,0,0,6,3,0,1383,-121545.3,0,0,991.39984 -2377,2926,5348,-9,5346,-9,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.9621744,8.1784525,0,3,0,0,0,-9,0,-974.48682,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,55,0,15,1,1,-9,1,7.2865214,7.2865214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.439999,58.700001,-9,-9,4,4,2,0,0,6,4,0,511,-90121.563,0,0,1143.6558 -2378,2927,5349,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,0,3,0,6.8148766,7.1474853,3,0,-9,0,1,0,-999.99323,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0418777,0,0,43.259998,44.860001,-9,-9,4,1,1,0,0,6,2,1,2866,468795.44,0,0,667.00299 -2379,2928,5350,5351,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,3,8.551239,8.9885244,0,1,0,-9,8,0,-2,79.560745,0,0,0,46,2,4,1,2,3,2019,1,2,9,1,103,48,15,1,0,1,0,6.3910027,6.3910027,0,0,0,0,0,0,0,0,0,0,0,3.5958772,0,0,0,55.169998,43.900002,55.439999,52.990002,6,1,1,0,0,1,5,1,376,619495.13,0,0,2913.5068 -2379,2928,5351,5350,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,8.2311945,8.8690338,0,1,0,-9,8,0,2,-158.00598,0,0,0,44,2,3,1,1,2,2019,1,1,8,0,35,35,15,1,0,1,0,16.929585,16.929585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.439999,52.990002,55.169998,43.900002,2,1,1,0,0,1,5,1,376,619495.13,0,0,2913.5068 -2380,2929,5352,-9,5353,5354,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1125.7083,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,4,1,717.33331,783093.81,0,0,1899.2367 -2380,2929,5353,5354,-9,-9,2,1,0,39,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-8,239.10313,0,0,1,47,2,3,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,22.460041,3,36.369999,57.889999,51.41,56.150002,6,1,1,0,0,9,4,1,717.33331,783093.81,0,0,1899.2367 -2380,2929,5354,5353,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,8.7358599,8.5277166,0,2,0,-9,7,0,8,13.109039,0,0,0,39,2,3,3,-9,-9,2019,2,2,12,0,43,43,15,1,0,3,0,16.030972,16.030972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,36.369999,57.889999,6,1,1,0,0,9,4,1,717.33331,783093.81,0,0,1899.2367 -2381,2930,5355,-9,-9,5356,4,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.89612,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,487,452759.59,0,0,3879.2324 -2381,2930,5356,5357,-9,-9,1,1,1,47,1,0,1,0,2,-9,1,1,0,0,4,9.0143061,9.1243362,0,2,0,-9,2,0,2,-104.96041,0,0,0,45,2,4,1,1,3,2019,1,5,11,0,60,60,15,1,0,1,0,16.51886,16.51886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,55.790001,52.619999,6,1,1,0,0,12,5,1,487,452759.59,0,0,3879.2324 -2381,2930,5357,5356,-9,-9,5,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.2029119,6.9957962,0,2,0,-9,2,0,-2,54.358482,0,0,0,47,2,4,1,-9,-9,2019,1,1,6,0,22,30,15,1,0,1,0,8.2307701,8.2307701,0,0,0,0,0,0,0,0,0,0,0,6.6113,0,0,0,55.790001,52.619999,55.189999,54.259998,7,1,1,0,0,12,5,1,487,452759.59,0,0,3879.2324 -2382,2931,5358,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,0,4,0,7.3285031,6.9490352,3,0,0,0,-9,0,-973.33295,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.7594137,30.937075,3,58.549999,45.900002,-9,-9,1,1,1,0,0,10,2,1,942,1310.2006,0,0,2709.0657 -2383,2932,5359,5360,-9,-9,1,1,1,55,1,0,0,0,1,-9,1,1,0,0,3,7.878252,8.1275797,6.9036231,1,0,-9,17,0,-5,64.94841,0,0,0,60,1,3,3,2,1,2019,2,2,10,0,90,70,15,1,0,3,0,2.8223622,2.8223622,0,0,0,0,0,0,0,0,1,1,0,0,7.287776,0,0,49.169998,42.310001,56.099998,49.93,6,1,1,0,0,4,3,1,717,1693667.3,0,0,2903.8218 -2383,2932,5360,5359,-9,-9,2,1,0,60,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,19,0,5,47.993603,0,0,0,55,1,3,1,3,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.099998,49.93,49.169998,42.310001,6,1,1,0,0,4,3,1,717,1693667.3,0,0,2903.8218 -2383,2933,5361,-9,5360,5359,3,1,1,27,2,0,0,0,2,-9,1,1,0,0,3,7.6303201,7.4187455,0,3,0,0,0,-9,0,-900.02942,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,60,80,15,1,0,-9,1,3.9156685,3.9156685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,-9,-9,5,1,1,0,0,4,3,1,662,94053.648,0,0,1574.4391 -2384,2934,5362,-9,5363,5365,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1007.3666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,9,4,0,391,230218.13,0,0,3923.5913 -2384,2934,5363,5365,-9,-9,2,1,0,35,1,1,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,8,0,-1,141.31909,0,0,1,36,2,3,1,-9,-9,2019,1,1,11,0,0,9,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.950001,46.689999,52,54.509998,6,1,1,0,0,9,4,0,391,230218.13,0,0,3923.5913 -2384,2934,5364,-9,5363,5365,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.34882,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,0,391,230218.13,0,0,3923.5913 -2384,2934,5365,5363,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,0,3,9.1575928,9.0280132,0,2,0,-9,8,0,1,64.545494,0,0,0,35,2,3,1,2,-9,2019,1,2,7,0,42,37,15,1,0,1,0,24.064947,24.064947,0,0,0,0,0,0,0,0,1,1,0,.95090139,0,0,0,52,54.509998,56.950001,46.689999,6,1,1,0,0,9,4,0,391,230218.13,0,0,3923.5913 -2385,2935,5366,5368,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.2847662,8.2248707,0,2,0,-9,5,0,3,48.569412,0,0,0,32,2,5,1,-9,-9,2019,1,1,10,1,50,45,15,1,0,1,0,9.6357193,9.6357193,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,62.389999,56.709999,5,1,1,0,0,10,3,1,589,-40925.148,0,0,2514.698 -2385,2935,5367,-9,5368,5366,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.458,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,589,-40925.148,0,0,2514.698 -2385,2935,5368,5366,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,0,5,7.368247,7.1186843,0,2,0,-9,14,0,-3,88.790039,0,0,1,35,2,4,1,1,2,2019,1,2,6,0,20,20,15,1,0,1,0,9.9143782,9.9143782,0,0,0,0,0,0,0,0,1,1,0,.40840027,0,0,0,62.389999,56.709999,51,56,7,1,1,0,0,10,3,1,589,-40925.148,0,0,2514.698 -2385,2935,5369,-9,5368,5366,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.35193,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,1,589,-40925.148,0,0,2514.698 -2386,2936,5370,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,1,0,6.8672833,6.7571921,3,0,0,0,-9,0,-1030.7991,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,1,1.3071204,0,0,0,0,55.840069,0,1,1,0,0,6.6272774,0,0,49.279999,11.91,-9,-9,5,1,1,0,0,5,2,1,447,153680.09,0,0,2485.9824 -2387,2937,5371,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,8.8378057,8.4749842,0,3,0,0,0,-9,0,-1038.722,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,16.677794,16.677794,0,0,0,0,0,0,0,0,0,0,0,1.2511617,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,971,552426.06,0,0,2836.748 -2388,2938,5372,5373,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,7.5661244,7.5007362,0,1,0,-9,12,0,-2,27.572981,0,0,0,64,2,2,1,3,2,2019,1,1,8,0,24,24,15,1,0,1,0,7.6598425,7.6598425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,51.290001,59.450001,39.290001,7,1,1,0,0,11,4,0,857,333523.38,0,0,2270.4614 -2388,2938,5373,5372,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,7.7673988,8.2283678,6.7145157,1,0,-9,19,0,2,42.423943,0,0,0,62,2,4,1,3,3,2019,1,2,6,0,27,27,15,1,0,1,0,10.155995,10.155995,0,0,0,0,0,0,0,0,0,0,0,1.7452544,6.880682,0,0,59.450001,39.290001,58.720001,51.290001,6,1,1,0,0,11,4,0,857,333523.38,0,0,2270.4614 -2389,2939,5374,-9,-9,-9,1,1,1,60,2,0,1,0,1,-9,2,1,0,0,4,8.0434389,8.5023346,7.990623,4,0,0,0,-9,0,-960.97931,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,0,15,1,0,-9,0,6.7934837,6.7934837,0,0,0,0,0,0,0,0,1,1,0,8.5755424,8.437315,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,8,4,1,654.5,1563900.8,0,0,4045.9473 -2389,2939,5375,-9,-9,5374,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1018.6945,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,4,1,654.5,1563900.8,0,0,4045.9473 -2390,2940,5376,5377,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,4,-5.3741059,0,0,0,66,2,3,3,3,3,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8717099,0,0,0,40.07,54.57,52.990002,51.279999,4,1,1,0,0,4,2,1,737.5,733831.75,0,0,1047.6863 -2390,2940,5377,5376,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.8665619,7.437645,1,0,-9,7,0,-4,14.572248,0,0,0,70,3,3,3,3,3,2019,4,1,12,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5773678,7.086297,0,0,52.990002,51.279999,40.07,54.57,2,1,1,0,0,4,2,1,737.5,733831.75,0,0,1047.6863 -2391,2941,5378,5379,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,7.7452598,8.2388754,0,1,0,-9,7,0,-5,15.72836,0,0,1,37,2,4,1,3,2,2019,1,2,14,5,27,27,15,1,1,1,0,14.181316,14.181316,0,0,0,0,0,0,0,0,0,0,0,1.96931,0,0,0,41.360001,53.68,48.869999,58.549999,5,1,1,0,1,5,4,1,317,-91211.219,0,0,2934.7158 -2391,2941,5379,5378,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,0,4,8.30334,8.0009022,0,1,0,-9,7,0,5,-84.649712,0,0,0,32,1,4,1,3,3,2019,1,1,11,0,38,36,15,1,0,1,0,13.761041,13.761041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,41.360001,53.68,6,1,1,0,0,5,4,1,317,-91211.219,0,0,2934.7158 -2392,2942,5380,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,1,1,0,0,4,6.7659817,6.9837379,0,3,0,0,0,-9,0,-918.1579,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,20,15,1,0,-9,0,6.5981684,6.5981684,0,0,0,0,0,0,0,0,0,0,0,3.2176738,0,0,3,57.16,56.150002,-9,-9,7,1,1,0,0,9,2,0,813,610123.19,0,0,728.33002 -2393,2943,5381,-9,5384,5385,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.25366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,282.39999,124284.96,0,0,3672.6057 -2393,2943,5382,-9,5384,5385,4,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1130.0868,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,282.39999,124284.96,0,0,3672.6057 -2393,2943,5383,-9,5384,5385,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.25409,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,282.39999,124284.96,0,0,3672.6057 -2393,2943,5384,5385,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,0,4,0,6.422822,6.0420327,2,0,-9,8,0,2,20.507492,0,0,1,35,2,4,1,1,2,2019,3,2,11,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1738787,0,0,0,62.490002,55.09,46.5,58.259998,2,1,1,0,0,9,5,1,282.39999,124284.96,0,0,3672.6057 -2393,2943,5385,5384,-9,-9,2,1,1,35,1,0,3,0,2,-9,2,1,0,0,4,9.5732861,9.5857,0,2,0,-9,8,0,-2,-65.390182,0,0,0,37,2,4,3,3,3,2019,2,1,10,1,100,55,15,1,0,3,0,16.935242,16.935242,0,0,0,0,0,0,0,0,0,0,0,4.671104,0,0,0,46.5,58.259998,62.490002,55.09,6,1,1,0,0,9,5,1,282.39999,124284.96,0,0,3672.6057 -2394,2944,5386,5387,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,5.0331659,7.8231339,7.9475827,1,0,-9,34,0,3,179.81732,0,0,0,62,1,4,1,2,2,2019,3,1,6,0,0,12,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.7198815,18.056265,3,57.330002,53.459999,57.16,56.150002,5,1,1,0,0,11,3,1,429.5,1032182.6,0,0,2860.8743 -2394,2944,5387,5386,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,0,4,6.8362985,6.7309709,0,1,0,-9,36,0,-3,59.020741,0,0,0,65,1,3,3,2,2,2019,2,2,10,0,20,25,15,1,0,4,0,4.9768443,4.9768443,0,0,0,0,0,0,0,2,1,1,0,.93806142,0,3.4577887,3,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,11,3,1,429.5,1032182.6,0,0,2860.8743 -2395,2945,5388,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,5,8.7571058,8.8105679,0,3,0,0,0,-9,0,-1053.5841,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,42,44,15,1,1,-9,0,19.301962,19.301962,0,0,0,0,0,0,0,0,1,1,0,6.4083729,0,0,0,43.860001,63.669998,-9,-9,5,1,1,0,0,9,5,1,115,79329.594,0,0,4515.085 -2396,2946,5389,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,3,8.3795452,8.7976036,0,3,0,-9,0,0,0,-911.30994,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,45,70,15,1,0,-9,0,13.63287,13.63287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.82,42.48,-9,-9,5,1,1,0,0,9,5,0,691,3186.2773,0,0,1342.5833 -2397,2947,5390,5391,-9,-9,2,1,1,64,1,0,0,0,3,-9,8,3,1,1,5,0,0,0,1,0,-9,7,0,13,0,0,0,0,51,3,4,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.74,48.740002,46.900002,56.66,1,1,1,0,0,11,1,0,437.5,-64872.613,0,0,1311.8048 -2397,2947,5391,5390,-9,-9,1,1,0,51,1,0,0,0,3,-9,6,3,0,1,4,0,0,0,1,0,-9,7,0,-13,0,0,0,0,64,3,5,3,2,2,2019,4,2,17,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,63.361153,1,46.900002,56.66,26.74,48.740002,5,1,1,0,1,11,1,0,437.5,-64872.613,0,0,1311.8048 -2397,2948,5392,-9,5391,5390,3,1,1,26,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-841.3288,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.07,60.970001,-9,-9,1,1,1,1,1,11,1,0,774,174771.02,0,0,-747.12927 -2398,2949,5393,-9,-9,5394,1,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.7168064,8.2768641,0,3,0,0,0,-9,0,-903.74261,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,40,40,15,1,0,-9,1,7.2380037,7.2380037,0,0,0,0,0,0,0,0,0,0,0,2.2175562,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,2,4,1,847,-126678.8,0,0,2183.6411 -2398,2950,5394,-9,-9,-9,2,1,1,46,3,0,0,0,2,-9,2,1,0,0,4,7.9489999,8.0677824,0,3,0,0,0,-9,0,-1035.2009,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,40,15,1,0,-9,0,6.9747725,6.9747725,0,0,0,0,0,0,0,0,0,0,0,2.1302619,0,0,0,52,55,-9,-9,6,4,6,0,0,2,3,1,256,19022.094,0,0,2201.5552 -2399,2951,5395,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-977.745,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,-9,-9,5,1,1,0,1,13,1,0,450,324034.03,0,0,240.57635 -2399,2952,5396,-9,-9,-9,2,1,1,41,2,0,0,0,3,-9,2,1,0,0,3,8.2389498,8.2572241,0,3,0,0,0,-9,0,-1106.0256,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,11.907073,11.907073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.650002,55.59,-9,-9,5,1,1,0,0,13,4,0,290,-111656.96,0,0,2555.1816 -2399,2953,5397,-9,-9,-9,3,1,1,45,2,0,0,0,2,-9,2,1,0,0,4,8.2233601,7.9716697,0,3,0,0,0,-9,0,-1077.2599,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,40,15,1,0,-9,0,6.1291428,6.1291428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,13,3,0,381,77797.359,0,0,1097.4944 -2399,2954,5398,-9,-9,-9,4,1,1,43,2,0,0,0,2,-9,2,1,0,0,4,8.6077604,8.5964279,0,3,0,0,0,-9,0,-984.19104,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,45,40,15,1,0,-9,0,10.105955,10.105955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,13,5,0,407,145083.33,0,0,770.4931 -2400,2955,5399,5401,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,4,8.9409008,9.0480919,0,2,0,-9,20,0,3,-76.468735,0,0,0,47,1,3,1,3,2,2019,1,1,8,0,38,40,15,1,0,1,0,22.342279,22.342279,0,0,0,0,0,0,0,0,1,1,0,7.2442021,0,0,0,58.150002,52.91,47.240002,53.950001,6,2,3,0,0,9,5,1,1730.25,1324085.1,0,0,6688.3916 -2400,2955,5400,-9,5401,5399,5,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-929.23035,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,9,5,1,1730.25,1324085.1,0,0,6688.3916 -2400,2955,5401,5399,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.8954983,9.0563383,0,2,0,-9,20,0,-3,-93.452377,0,0,0,50,1,4,1,3,3,2019,1,2,12,1,38,38,15,1,0,1,0,19.913794,19.913794,0,0,0,0,0,0,0,2,1,1,0,7.9129691,0,.37034771,3,47.240002,53.950001,58.150002,52.91,6,2,3,0,0,9,5,1,1730.25,1324085.1,0,0,6688.3916 -2400,2955,5402,-9,5401,5399,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.9614,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,9,5,1,1730.25,1324085.1,0,0,6688.3916 -2400,2956,5403,-9,5401,5399,3,1,1,18,2,0,2,0,2,1,2,1,0,0,5,6.480526,6.7957382,0,3,0,0,0,-9,0,-1036.661,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,18,0,15,1,0,-9,1,5.6808195,5.6808195,0,0,0,0,0,0,0,7,1,1,0,1.3574995,0,2.5486748,3,61.009998,50.48,-9,-9,7,2,3,0,0,9,2,1,1078,-157148.66,0,0,224.24586 -2401,2957,5404,5405,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,5,9.6849499,9.6081009,0,2,0,-9,18,0,-1,51.152248,0,0,0,46,1,3,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,35.546612,35.546612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,41.130001,58.450001,7,1,1,0,0,9,5,1,844.5,798323.25,0,0,3608.1169 -2401,2957,5405,5404,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,1,3,5.9664721,6.4519515,0,2,0,-9,18,0,1,-73.399002,0,0,0,45,1,5,1,2,2,2019,1,1,11,1,5,7,15,1,0,1,0,12.258773,12.258773,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.078705,3,41.130001,58.450001,59.43,58.049999,4,1,1,0,1,9,5,1,844.5,798323.25,0,0,3608.1169 -2401,2958,5406,-9,5405,5404,3,1,0,21,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-901.38086,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,9,1,1,852,-19352.248,0,0,0 -2401,2959,5407,-9,5405,5404,4,1,0,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-986.16162,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,9,5,1,916,75834.531,0,0,0 -2402,2960,5408,5409,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,1,8.0786057,8.1122894,0,1,0,-9,7,0,-7,-115.45048,0,0,0,52,1,3,1,2,1,2019,1,1,19,7,40,0,15,1,1,1,0,9.8914108,9.8914108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.440001,24.209999,39.779999,53.580002,1,1,1,0,0,11,5,1,207,158101.19,0,0,3157.103 -2402,2960,5409,5408,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.3834743,8.0970545,0,1,0,-9,7,0,7,75.685997,0,0,0,45,2,1,1,3,1,2019,1,2,14,3,37,37,15,1,0,1,0,12.477612,12.477612,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.692434,1,39.779999,53.580002,30.440001,24.209999,5,1,1,0,0,11,5,1,207,158101.19,0,0,3157.103 -2403,2961,5410,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,2,0,7.4281096,7.6717,3,0,0,0,-9,0,-921.40765,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,3.071579,0,0,0,0,0,0,1,1,0,4.4814839,7.1895585,0,0,48.43,30.459999,-9,-9,5,1,1,0,0,9,3,0,455,309627.69,0,0,725.40875 -2404,2962,5411,-9,-9,-9,1,1,1,19,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1068.5803,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.799999,47.080002,-9,-9,2,4,2,1,0,10,1,0,54,-129456.13,0,0,3.6859264 -2405,2963,5412,5413,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,9.0975828,9.3358955,0,1,0,-9,10,0,-3,-19.698597,0,0,0,64,3,4,3,3,-9,2019,2,1,12,1,38,41,15,1,0,3,0,28.139194,28.139194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.5,44.669998,52.310001,58.290001,5,1,1,0,0,9,5,1,852,3561112.5,0,0,3324.9165 -2405,2963,5413,5412,-9,-9,1,1,0,64,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,10,0,3,-14.649639,0,0,0,61,2,3,1,2,2,2019,3,2,7,0,0,24,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.310001,58.290001,58.5,44.669998,2,1,1,0,0,9,5,1,852,3561112.5,0,0,3324.9165 -2406,2964,5414,5417,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,8.0564289,7.8499575,0,2,0,-9,20,0,-1,84.814346,0,0,1,43,2,3,1,-9,-9,2019,1,2,8,0,37,40,15,1,0,1,0,9.7568521,9.7568521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52.41,44.880001,7,1,1,0,0,2,5,1,1073.5,1355295.3,0,0,4624.0479 -2406,2964,5415,-9,5414,5417,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.2034,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,1073.5,1355295.3,0,0,4624.0479 -2406,2964,5416,-9,5414,5417,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.88745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,5,1,1073.5,1355295.3,0,0,4624.0479 -2406,2964,5417,5414,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.9387627,9.0165939,0,2,0,-9,22,0,1,42.055191,0,0,0,42,2,4,1,-9,-9,2019,1,1,13,2,46,44,15,1,0,1,0,24.572641,24.572641,0,0,0,0,0,0,0,0,0,0,0,4.7328491,0,0,0,52.41,44.880001,54.200001,57.490002,6,1,1,0,0,2,5,1,1073.5,1355295.3,0,0,4624.0479 -2407,2965,5418,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,0,3,7.4508634,7.7155957,0,3,0,-9,0,-9,0,-998.33191,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,4,1,33,0,15,1,0,-9,0,8.1339598,8.1339598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,5,3,0,61,-69495.477,0,0,1053.3191 -2408,2966,5419,5420,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,2,7.9890604,7.9139419,0,1,0,-9,28,0,-6,-87.613426,0,0,0,66,3,3,3,3,3,2019,2,2,24,11,35,35,15,1,1,4,0,7.7458191,7.7458191,0,0,0,0,0,0,0,2,1,1,0,0,0,4.3299327,3,32,42.490002,52,48,4,1,1,0,0,6,3,1,696,117641.23,0,0,1573.6429 -2408,2966,5420,5419,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,6,-90.465492,0,0,0,60,3,2,1,-9,-9,2019,3,1,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0449324,0,0,0,52,48,32,42.490002,5,1,1,0,0,6,3,1,696,117641.23,0,0,1573.6429 -2408,2967,5421,-9,5419,5420,3,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,7.6241989,7.7918849,0,3,0,0,0,-9,0,-1106.2781,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,20,20,15,1,0,-9,1,13.259837,13.259837,0,0,0,0,0,0,0,0,1,1,0,3.183269,0,0,0,48,57,-9,-9,5,1,1,0,0,6,3,1,276,185686.56,0,0,-53.08419 -2409,2968,5422,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,0,4,7.7470088,7.4769816,6.0083895,3,0,0,0,-9,0,-987.948,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,39,39,15,1,0,-9,0,7.1167078,7.1167078,0,0,0,0,0,0,0,0,0,0,0,2.6139545,5.9741049,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,1,3,1,1165,484372,0,0,1292.0264 -2410,2969,5423,-9,-9,-9,3,1,1,38,2,0,0,0,1,-9,2,1,0,0,2,8.9179907,8.9484243,0,3,0,0,0,-9,0,-994.27673,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,48,37,15,1,1,-9,1,16.478003,16.478003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.16,63.07,-9,-9,2,1,1,0,0,12,5,1,185,30351.742,0,0,2689.3435 -2411,2970,5424,5425,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,9.375308,9.1264248,0,1,0,-9,7,0,-4,10.216963,0,0,0,63,3,4,3,3,3,2019,2,2,8,0,60,55,15,1,0,4,0,19.027739,19.027739,0,0,0,0,0,0,0,2,1,1,0,2.5269885,0,0,3,41.549999,52.869999,57.16,56.150002,5,1,1,0,0,5,5,1,276,900709,0,0,4880.6787 -2411,2970,5425,5424,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,4,-140.09323,0,0,0,59,2,2,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7672825,0,0,0,57.16,56.150002,41.549999,52.869999,6,1,1,0,0,5,5,1,276,900709,0,0,4880.6787 -2412,2971,5426,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,2,1,0,0,4,8.3703108,8.4888048,0,4,0,0,0,-9,0,-989.20917,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,36,36,15,1,0,-9,0,17.467093,17.467093,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,52.080002,-9,-9,6,3,4,0,0,8,4,0,630.5,617842.25,0,0,2337.4241 -2412,2971,5427,-9,5426,-9,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1011.7816,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,4,0,630.5,617842.25,0,0,2337.4241 -2412,2972,5428,-9,5426,-9,2,1,0,22,2,0,1,0,3,-9,2,1,0,0,3,6.6178732,6.5845013,0,3,0,0,0,-9,0,-1086.5366,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,22,40,15,1,0,-9,1,4.7411666,4.7411666,0,0,0,0,0,0,0,0,1,1,0,2.9097857,0,0,0,34.509998,51.810001,-9,-9,4,3,4,0,0,8,2,0,758,8532.8086,0,0,114.70745 -2413,2973,5429,5430,-9,-9,2,1,1,67,1,0,0,0,3,-9,1,1,0,0,3,8.8722839,8.9346046,7.2682505,1,0,-9,40,0,-1,-63.870148,0,0,0,68,3,2,3,3,3,2019,2,1,12,1,40,40,15,1,0,3,0,16.517315,16.517315,0,0,0,0,0,0,0,0,1,1,0,7.4186077,7.6280303,0,0,62.27,48.470001,37.5,53.59,5,1,1,0,0,10,5,0,342.5,953253.94,0,0,4342.8174 -2413,2973,5430,5429,-9,-9,1,1,0,68,1,0,0,0,3,-9,6,3,0,0,2,3.6582608,3.377641,0,1,0,-9,40,0,1,-17.474131,0,0,0,67,3,3,1,3,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.5,53.59,62.27,48.470001,5,1,1,0,0,10,5,0,342.5,953253.94,0,0,4342.8174 -2414,2974,5431,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,1,0,7.1405196,7.2132697,3,0,0,0,-9,0,-960.87164,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0249796,0,0,46.869999,27.309999,-9,-9,4,1,1,0,0,2,2,1,2478,227252.94,0,0,821.31006 -2415,2975,5432,-9,5434,5433,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1052.2301,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.1125913,3,51.73,58.82,-9,-9,6,1,1,0,0,1,5,1,1538.6666,325491.5,0,0,3540.3792 -2415,2975,5433,5434,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,8.7200642,9.0063944,0,2,0,-9,20,0,8,37.4641,0,0,0,42,2,4,1,2,2,2019,1,1,7,0,52,60,15,1,0,1,0,16.258099,16.258099,0,0,0,0,0,0,0,74,1,1,0,0,0,74.138763,3,61.119999,46.029999,46.689999,58.349998,7,1,1,0,0,1,5,1,1538.6666,325491.5,0,0,3540.3792 -2415,2975,5434,5433,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,8.1105309,8.201252,0,2,0,-9,23,0,-8,67.010429,0,0,1,50,2,4,1,2,2,2019,1,2,9,0,39,37,15,1,0,1,0,10.621566,10.621566,0,0,0,0,0,0,0,42,1,1,0,0,0,39.861385,3,46.689999,58.349998,61.119999,46.029999,5,1,1,0,0,1,5,1,1538.6666,325491.5,0,0,3540.3792 -2416,2976,5435,5436,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,1,1,6.8748698,6.527185,0,1,0,-9,9,0,0,-34.12508,0,0,0,57,3,4,3,3,3,2019,2,2,10,1,4,25,15,1,0,4,0,24.534632,24.534632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.830002,22.98,60.119999,54.799999,5,1,1,0,0,13,2,1,1003,421901,0,0,683.76404 -2416,2976,5436,5435,-9,-9,2,1,1,57,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,0,-46.989975,0,0,0,57,3,1,1,-9,-9,2019,3,1,6,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.894728,1,60.119999,54.799999,53.830002,22.98,6,1,1,0,0,13,2,1,1003,421901,0,0,683.76404 -2417,2977,5437,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,0,5,9.7566681,9.446867,0,3,0,-9,0,1,0,-970.36041,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,60,60,15,1,0,-9,0,27.497656,27.497656,0,0,0,0,0,0,0,0,0,0,0,2.4518471,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,5,5,1,2795,7292002,0,0,5667.7227 -2418,2978,5438,5439,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,3,9.6040716,9.8024712,0,1,0,-9,22,0,4,-69.891747,-9,0,0,45,1,3,1,-9,-9,2019,1,2,11,2,40,0,15,1,0,1,0,33.675823,33.675823,0,0,0,0,0,0,0,0,0,0,0,7.0101366,0,0,0,42.52,57.560001,50.080002,51.720001,6,2,3,0,0,8,5,1,742,240369.44,0,0,8271.3008 -2418,2978,5439,5438,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,3,9.3027239,9.2357979,0,1,0,-9,7,0,-4,-10.625947,0,0,0,49,1,3,1,1,1,2019,1,1,13,1,46,48,15,1,0,1,0,35.803303,35.803303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.080002,51.720001,42.52,57.560001,5,2,3,0,0,8,5,1,742,240369.44,0,0,8271.3008 -2419,2979,5440,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,6,3,0,1,5,0,0,0,3,0,0,0,-9,0,-927.94318,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.12821,3,40.610001,64.019997,-9,-9,4,2,3,0,0,2,1,1,1844,31174.391,0,0,612.6535 -2419,2980,5441,-9,-9,-9,2,1,1,46,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-979.57233,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,-9,-9,6,2,3,1,0,2,1,1,1038,0,0,0,1751.7323 -2419,2981,5442,-9,-9,-9,3,1,0,42,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1125.7665,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,2,3,1,0,2,1,1,396,0,0,0,542.8858 -2420,2982,5443,5444,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,0,8.0238037,8.1911526,1,0,-9,46,0,0,23.705648,0,0,0,64,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,20.319641,0,0,0,0,0,1,1,0,0,7.9341087,0,0,49.73,45.169998,30.459999,50.029999,5,1,1,0,0,11,3,1,380.5,789633.63,0,0,1394.9799 -2420,2982,5444,5443,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,2,0,3.9461796,3.830358,1,0,-9,46,0,0,-77.499924,0,0,0,64,2,2,3,3,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.2688189,3.9981809,10.471167,3,30.459999,50.029999,49.73,45.169998,4,1,1,0,0,11,3,1,380.5,789633.63,0,0,1394.9799 -2421,2983,5445,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-982.4491,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,11,1,0,901,13215.188,0,0,-1203.2456 -2422,2984,5446,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1112.5306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,13,1,1,362,10798.886,0,0,-89.001717 -2423,2985,5447,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,3,0,5.7070255,5.7871518,3,0,0,0,-9,0,-966.32635,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,7.8392653,0,0,0,0,1,1,0,1.8440284,5.8835678,0,0,53,44,-9,-9,5,1,1,0,0,9,2,1,713,23746.172,0,0,483.95297 -2424,2986,5448,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,3,8.2193613,8.0955744,4.9411092,3,0,0,0,-9,0,-1052.8018,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,43,50,15,1,0,-9,0,8.5887737,8.5887737,0,0,0,0,0,0,0,7,1,1,0,0,5.5494075,.15549068,3,49.720001,50.049999,-9,-9,6,1,1,0,0,9,4,0,2000,354066.47,0,0,2541.8882 -2425,2987,5449,5450,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,7,0,-5,0,0,0,0,75,1,3,3,-9,-9,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,.65067267,0,0,0,0,0,1,1,0,0,0,0,0,35.16,23.42,41.639999,54.119999,3,2,3,0,0,8,1,1,323,739894.88,0,0,1110.0371 -2425,2987,5450,5449,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,5,0,0,0,0,70,2,1,3,3,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,3.7156174,1,41.639999,54.119999,35.16,23.42,4,2,3,0,0,8,1,1,323,739894.88,0,0,1110.0371 -2426,2988,5451,-9,-9,-9,1,1,0,53,2,0,2,0,1,-9,2,1,0,0,2,8.3000898,8.0348949,0,4,0,0,0,-9,0,-924.14862,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,42,15,1,0,-9,0,9.8449106,9.8449106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.209999,47.099998,-9,-9,6,1,1,0,0,8,3,0,545,407.27975,0,0,849.14771 -2426,2989,5452,-9,5453,-9,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1051.0522,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,4,0,239,-38019.063,0,0,1853.552 -2426,2989,5453,-9,5451,-9,2,1,0,36,2,0,2,0,2,-9,2,1,0,0,2,8.1906939,8.4086227,0,3,0,0,0,-9,0,-1024.6027,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,29,31,15,1,0,-9,1,12.626531,12.626531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.970001,53.740002,-9,-9,3,4,2,0,0,8,4,0,239,-38019.063,0,0,1853.552 -2427,2990,5454,5455,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,8.0180883,8.3197803,6.9827185,1,0,1,1,-9,11,21.189615,0,0,0,51,1,3,1,2,2,2019,1,1,19,8,45,50,15,1,1,1,0,5.8114514,5.8114514,0,0,0,0,0,0,0,0,0,0,0,3.045248,6.8894639,0,0,31.690001,59.68,29.870001,47.060001,4,1,1,0,0,10,5,1,274.5,839307.38,0,0,4698.4941 -2427,2990,5455,5454,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,8.0572996,8.2522726,0,1,0,1,1,-9,-11,44.105167,0,0,0,62,3,3,1,-9,2,2019,1,2,24,11,37,38,15,1,1,1,0,13.481565,13.481565,0,0,0,0,0,0,0,2,0,0,0,7.178371,0,2.2336388,3,29.870001,47.060001,31.690001,59.68,2,1,1,0,1,10,5,1,274.5,839307.38,0,0,4698.4941 -2428,2991,5456,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,7.4041505,7.561995,0,3,0,-9,0,-9,0,-867.82483,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,30,0,15,1,0,-9,0,7.1154408,7.1154408,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.060001,39.82,-9,-9,3,1,1,0,0,9,3,1,425,602854.88,0,0,596.01703 -2429,2992,5457,5458,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,8.1018162,8.0728617,1,0,-9,50,0,0,27.379242,0,0,0,71,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8699784,7.7069798,0,0,57.330002,53.459999,27.57,58.919998,6,1,1,0,0,9,3,1,350.5,1332685,0,0,2988.8516 -2429,2992,5458,5457,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,0,135.4427,-9,0,0,71,1,3,3,3,2,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.6137972,0,0,0,27.57,58.919998,57.330002,53.459999,4,1,1,0,0,9,3,1,350.5,1332685,0,0,2988.8516 -2430,2993,5459,-9,5461,5462,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.0817,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,669,198376.31,0,0,4609.8408 -2430,2993,5460,-9,5461,5462,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.72131,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,669,198376.31,0,0,4609.8408 -2430,2993,5461,5462,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.6709538,8.7825317,0,2,0,-9,20,0,2,-52.689144,0,0,1,38,1,4,1,1,1,2019,1,1,9,0,44,0,15,1,0,1,0,21.038836,21.038836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.610001,55.040001,46.389999,60.990002,6,1,1,0,0,8,5,1,669,198376.31,0,0,4609.8408 -2430,2993,5462,5461,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,8.6491766,8.8766766,0,2,0,-9,20,0,-2,70.774345,0,0,0,40,1,4,1,2,1,2019,1,2,14,2,40,0,15,1,0,1,0,22.197054,22.197054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,47.610001,55.040001,5,1,1,0,0,8,5,1,669,198376.31,0,0,4609.8408 -2431,2994,5463,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,7.0930762,7.2123322,3,0,0,0,-9,0,-1044.6865,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.951539,0,0,55.34,54.259998,-9,-9,6,1,1,0,0,9,2,1,564,548219.88,0,0,417.479 -2431,2995,5464,5465,5463,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,0,4,8.9084034,8.6748686,0,1,0,-9,3,0,0,74.757378,0,0,0,51,2,5,1,3,-9,2019,1,3,11,0,37,44,15,1,0,1,0,21.692959,21.692959,0,0,0,0,0,0,0,0,1,1,0,1.7561467,0,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,9,5,1,1248.5,1040802,0,0,3936.1211 -2431,2995,5465,5464,-9,-9,3,1,0,51,1,0,0,0,2,-9,2,1,0,0,5,8.7554893,8.3601017,0,1,0,-9,3,0,0,-2.0011246,0,0,0,51,3,4,1,-9,-9,2019,1,2,12,0,39,39,15,1,0,1,0,12.34314,12.34314,0,0,0,0,0,0,0,2,1,1,0,3.1423049,0,1.0501992,3,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,9,5,1,1248.5,1040802,0,0,3936.1211 -2432,2996,5466,5468,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,0,2,6.9142289,6.7522674,0,2,0,-9,2,0,1,94.660164,0,0,1,32,2,2,1,2,2,2019,1,2,11,0,14,20,15,1,0,1,0,7.1643291,7.1643291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.889999,48.16,35.110001,38.32,5,1,1,0,0,5,4,1,353,117023.98,0,0,2302.1443 -2432,2996,5467,-9,5466,5468,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.05261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,353,117023.98,0,0,2302.1443 -2432,2996,5468,5466,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,2,8.4342299,8.5051565,0,2,0,-9,2,0,-1,58.10643,0,0,0,33,2,2,1,3,-9,2019,1,1,22,10,44,42,15,1,1,1,0,13.141775,13.141775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.110001,38.32,48.889999,48.16,3,1,1,0,0,5,4,1,353,117023.98,0,0,2302.1443 -2433,2997,5469,5470,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,7,0,-4,83.830437,0,0,0,55,1,4,1,2,2,2019,3,1,9,2,0,4,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.290001,54.59,59.049999,42.91,4,1,1,0,0,12,4,1,953.5,113307.02,0,0,2285.009 -2433,2997,5470,5469,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,8.580122,8.9977922,0,1,0,-9,31,0,4,-66.50383,0,0,0,51,2,3,3,2,2,2019,2,2,12,1,60,60,15,1,0,3,0,11.43488,11.43488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.049999,42.91,49.290001,54.59,6,1,1,0,0,12,4,1,953.5,113307.02,0,0,2285.009 -2434,2998,5471,5472,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,5,0,6.2570138,5.8855996,1,0,-9,6,0,-3,28.234331,0,0,0,78,3,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5295472,0,0,47.389999,56.639999,41.07,60.93,6,1,1,0,0,12,2,1,269,586735.75,0,0,1251.9038 -2434,2998,5472,5471,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,5,0,6.3519278,6.3499012,1,0,-9,6,0,3,34.690468,0,0,0,75,3,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.344893,6.1133332,0,0,41.07,60.93,47.389999,56.639999,1,1,1,0,0,12,2,1,269,586735.75,0,0,1251.9038 -2435,2999,5473,5474,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,0,-7.9807816,0,0,0,64,1,4,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3923008,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,5,4,1,611.5,2253962,0,0,2553.5786 -2435,2999,5474,5473,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.4289246,8.699769,1,0,-9,44,0,0,-7.6615996,0,0,0,64,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3771403,8.5681372,0,0,57.16,56.150002,54.200001,57.490002,7,1,1,0,0,5,4,1,611.5,2253962,0,0,2553.5786 -2436,3000,5475,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,2,1,0,0,3,8.3462,8.7557364,0,3,0,0,0,-9,0,-1026.6641,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,40,15,1,0,-9,0,12.680711,12.680711,0,0,0,0,0,0,0,2,1,1,0,3.4705012,0,5.8273911,3,57.330002,53.459999,-9,-9,7,1,1,0,0,7,5,1,692,558550.44,0,0,1307.3022 -2437,3001,5476,5477,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,0,3,9.3594389,9.7915354,0,1,0,-9,23,0,-1,-48.223591,0,0,0,50,1,5,1,3,3,2019,1,1,12,0,85,40,15,1,0,1,0,18.957705,18.957705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.080002,45.939999,45.810001,61.509998,4,1,1,0,0,12,5,1,409,267987.81,0,0,5923.2847 -2437,3001,5477,5476,-9,-9,1,1,0,50,1,0,0,0,1,-9,1,1,0,0,5,7.8572917,7.9282131,0,1,0,-9,23,0,1,-70.8144,0,0,0,49,1,3,1,1,1,2019,1,2,10,0,20,20,15,1,0,1,0,17.988611,17.988611,0,0,0,0,0,0,0,0,0,0,0,4.444675,0,0,0,45.810001,61.509998,47.080002,45.939999,6,1,1,0,1,12,5,1,409,267987.81,0,0,5923.2847 -2438,3002,5478,-9,5479,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-884.58032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,378.66666,-43367.801,0,0,3062.9832 -2438,3002,5479,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,2,1,0,0,3,6.6466641,7.3212185,5.2800317,4,0,0,0,-9,0,-989.51794,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,15,0,15,1,0,-9,0,6.6984849,6.6984849,0,0,0,0,0,0,0,2,1,1,0,5.5473905,0,9.4903336,3,44.189999,52.470001,-9,-9,4,1,1,0,0,4,2,0,378.66666,-43367.801,0,0,3062.9832 -2438,3002,5480,-9,5479,-9,2,1,0,17,2,0,2,1,3,0,7,2,0,0,4,5.5477796,5.745688,0,4,0,0,0,-9,0,-1044.4094,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,4,2,0,378.66666,-43367.801,0,0,3062.9832 -2439,3003,5481,5483,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,0,5,9.2670364,8.999856,0,2,0,-9,10,0,3,-27.77788,0,0,0,33,1,4,1,-9,-9,2019,1,2,6,0,41,45,15,1,0,1,0,29.262323,29.262323,0,0,0,0,0,0,0,0,0,0,0,1.6387329,0,0,0,59.43,58.049999,51.830002,57.200001,7,1,1,0,0,7,5,1,697.66669,675607.94,0,0,6093.2256 -2439,3003,5482,-9,5483,5481,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.5829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,7,5,1,697.66669,675607.94,0,0,6093.2256 -2439,3003,5483,5481,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,4,9.2182531,9.2041807,0,2,0,-9,10,0,-3,-35.078545,0,0,1,36,2,5,1,1,1,2019,1,1,8,0,35,35,15,1,0,1,0,37.520027,37.520027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,59.43,58.049999,6,2,3,0,0,7,5,1,697.66669,675607.94,0,0,6093.2256 -2440,3004,5484,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,4,0,7.1005669,7.1617627,3,0,0,0,-9,0,-1145.8842,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.219434,7.6708112,10.485201,3,57.16,56.150002,-9,-9,6,1,1,0,0,11,3,1,329,734062.19,0,0,2297.7793 -2441,3005,5485,-9,5487,5488,3,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.92157,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,7,4,1,1739.75,43859.98,0,0,3075.041 -2441,3005,5486,-9,5487,5488,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-973.13129,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,7,4,1,1739.75,43859.98,0,0,3075.041 -2441,3005,5487,5488,-9,-9,1,1,0,41,1,1,2,0,2,-9,2,1,0,0,4,7.9348149,8.2731419,0,2,0,-9,16,0,2,25.752077,0,0,1,39,1,4,1,2,1,2019,1,2,3,0,38,38,15,1,0,1,0,12.30351,12.30351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51,56,7,2,3,0,0,7,4,1,1739.75,43859.98,0,0,3075.041 -2441,3005,5488,5487,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,0,4,8.0068493,8.0011606,0,2,0,-9,7,0,-2,-84.05072,0,0,0,41,2,4,1,-9,-9,2019,1,1,9,1,38,37,15,1,0,1,0,8.8195887,8.8195887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.16,56.150002,6,2,3,0,0,7,4,1,1739.75,43859.98,0,0,3075.041 -2442,3006,5489,5490,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,8.6449804,8.8311996,0,2,0,-9,6,0,0,-15.314875,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,19.103031,19.103031,0,0,0,0,0,0,0,0,1,1,0,1.905304,0,0,0,52,55,51.240002,58.84,5,1,1,0,0,10,4,1,894.66669,494980.56,0,0,3161.1973 -2442,3006,5490,5489,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,0,4,7.1744318,6.9358125,0,2,0,-9,16,0,9,54.979622,0,0,0,41,1,4,1,1,2,2019,1,2,6,0,20,20,15,1,0,1,0,7.3048315,7.3048315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,52,55,6,1,1,0,0,10,4,1,894.66669,494980.56,0,0,3161.1973 -2442,3006,5491,-9,5490,5489,5,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-961.86414,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,4,1,894.66669,494980.56,0,0,3161.1973 -2442,3007,5492,-9,5490,5489,3,1,0,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1062.8646,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.720001,55.84,-9,-9,6,1,1,0,0,10,1,1,1185,34421.727,0,0,1160.7831 -2443,3008,5493,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,3,3,0,0,3,0,6.0471625,6.1762323,3,0,0,0,-9,0,-1034.864,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,18,7,0,23,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7027102,6.4178648,0,0,34.650002,58.34,-9,-9,4,1,1,1,0,9,2,1,494,705747.25,0,0,629.13141 -2443,3009,5494,-9,5493,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.6446924,8.4669437,0,3,0,0,0,-9,0,-849.71729,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,40,63,15,1,1,-9,1,11.140646,11.140646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,-9,-9,6,1,1,0,0,9,5,1,1539,-30524.039,0,0,994.73547 -2444,3010,5495,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,0,4,7.4329329,7.2562513,0,3,0,0,0,-9,0,-1051.0253,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,5.822237,5.822237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,7,3,1,600,35719.438,0,0,1478.0559 -2445,3011,5496,-9,-9,-9,1,1,1,25,2,0,0,0,1,1,2,1,0,0,5,8.2762518,8.3388653,0,3,0,0,0,-9,0,-902.98041,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,45,0,15,1,0,-9,0,9.0182667,9.0182667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,0,3878,-123888.72,0,0,277.10471 -2446,3012,5497,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,3,0,6.9803157,7.1851611,3,0,0,0,-9,0,-1032.2682,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0283399,7.1298141,0,0,42.849998,38.110001,-9,-9,2,1,1,0,0,1,2,1,419,155631.61,0,0,616.60211 -2447,3013,5498,5499,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.0112963,7.8857503,0,1,0,-9,6,0,1,-23.019026,-9,0,0,44,2,4,1,-9,-9,2019,1,1,10,1,36,0,15,1,0,1,0,9.0968695,9.0968695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,52.970001,53.970001,6,4,1,0,0,13,4,1,1563.5,22585.377,0,0,3006.6204 -2447,3013,5499,5498,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.1965485,8.138135,0,1,0,-9,6,0,-1,15.537727,0,0,0,45,2,4,1,3,3,2019,1,2,7,0,37,36,15,1,0,1,0,12.480219,12.480219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.970001,53.970001,50,55,5,1,1,0,0,13,4,1,1563.5,22585.377,0,0,3006.6204 -2448,3014,5500,-9,5502,5501,4,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1040.7571,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,-9,-9,5,1,1,0,0,4,5,0,1123.3334,791765.56,0,0,5847.8257 -2448,3014,5501,5502,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,9.0000534,8.8614521,0,2,0,-9,10,0,1,24.596472,-9,0,0,46,1,2,1,3,1,2019,1,1,8,0,43,0,15,1,0,1,0,21.305256,21.305256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,35.360001,46.189999,6,1,1,0,0,4,5,0,1123.3334,791765.56,0,0,5847.8257 -2448,3014,5502,5501,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,2,8.9405642,8.9975395,0,2,0,-9,10,0,-1,141.69138,-9,0,0,47,2,3,1,2,2,2019,1,2,14,2,49,0,15,1,0,1,0,13.73473,13.73473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.360001,46.189999,55.959999,49.93,5,1,1,0,0,4,5,0,1123.3334,791765.56,0,0,5847.8257 -2448,3015,5503,-9,5502,5501,3,1,0,18,2,0,2,0,2,1,2,1,0,0,3,7.2458892,7.0371571,0,3,0,0,0,-9,0,-969.16455,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,36,0,15,1,0,-9,1,3.7826056,3.7826056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.529999,51.549999,-9,-9,6,1,1,0,0,4,2,0,952,-2406.8845,0,0,246.16969 -2449,3016,5504,5507,-9,-9,1,1,0,39,1,1,2,0,1,-9,2,1,0,0,3,9.2295961,8.9379473,0,2,0,-9,5,0,-5,-109.03564,0,0,1,44,1,2,1,1,2,2019,1,3,6,1,44,35,15,1,0,1,0,17.612463,17.612463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,25.540001,57.959999,7,1,1,0,0,4,5,1,664.75,401641.81,0,0,5215.2241 -2449,3016,5505,-9,5504,5507,2,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.48517,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,664.75,401641.81,0,0,5215.2241 -2449,3016,5506,-9,5504,5507,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.7085,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,5,1,664.75,401641.81,0,0,5215.2241 -2449,3016,5507,5504,-9,-9,3,1,1,44,1,1,2,0,1,-9,2,1,0,0,2,9.0259581,8.8448458,0,2,0,-9,5,0,5,-40.011177,0,0,0,39,1,3,1,-9,-9,2019,1,1,24,12,55,50,15,1,1,1,0,13.857001,13.857001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.540001,57.959999,52,54.509998,1,1,1,0,1,4,5,1,664.75,401641.81,0,0,5215.2241 -2450,3017,5508,-9,-9,-9,1,1,0,52,3,0,1,0,1,-9,2,1,0,0,4,8.0880623,8.237812,0,4,0,0,0,-9,0,-1021.4625,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,38,0,15,1,0,-9,0,8.3545923,8.3545923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,5,3,4,0,1,8,3,0,675.5,795413.69,0,0,1495.9991 -2450,3017,5509,-9,5508,-9,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1050.3794,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,8,3,0,675.5,795413.69,0,0,1495.9991 -2450,3018,5510,-9,5508,-9,2,1,1,20,2,0,1,0,2,-9,7,2,0,0,4,6.8855171,6.5896978,0,3,0,0,0,-9,0,-966.80414,1,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.560001,54.549999,-9,-9,6,3,4,0,0,8,2,0,186,-32537.584,0,0,2279.5574 -2450,3019,5511,-9,5508,-9,3,1,0,19,2,0,1,1,2,0,7,2,0,0,5,8.0845423,7.7958093,0,3,0,0,0,-9,0,-989.86353,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,24,11,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.610001,50.810001,-9,-9,6,3,4,0,0,8,3,0,96,164374.98,0,0,79.020798 -2451,3020,5512,5513,-9,-9,2,1,1,55,1,0,1,0,1,-9,1,1,0,0,4,7.3733039,7.3933825,0,2,0,-9,8,0,15,35.237297,0,0,0,40,1,4,1,3,3,2019,1,1,8,0,30,24,15,1,0,1,0,6.5452571,6.5452571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.860001,57.860001,45.560001,60.259998,6,3,4,0,0,8,4,0,324,1609044.8,0,0,2810.6343 -2451,3020,5513,5512,-9,-9,1,1,0,40,1,0,1,0,1,-9,2,1,0,0,4,8.5057812,8.8105927,0,2,0,-9,8,0,-15,5.1601243,0,0,1,55,1,4,1,-9,-9,2019,1,2,9,0,38,38,15,1,0,1,0,12.64142,12.64142,0,0,0,0,0,0,0,0,1,1,0,1.4265354,0,0,0,45.560001,60.259998,53.860001,57.860001,6,1,1,0,0,8,4,0,324,1609044.8,0,0,2810.6343 -2452,3021,5514,-9,5519,5516,4,1,1,13,2,0,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-888.62268,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2452,3021,5515,-9,5519,5516,2,1,1,16,2,0,5,1,2,-9,7,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-1114.9534,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.73,46.02,-9,-9,7,2,3,0,0,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2452,3021,5516,5519,-9,-9,7,1,1,41,1,0,5,0,3,-9,3,3,0,1,4,0,0,0,2,0,-9,1,-9,4,0,-9,0,0,37,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.581539,1,48.279999,60.18,28.610001,45.470001,5,2,3,1,0,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2452,3021,5517,-9,5519,5516,6,1,0,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-955.57227,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2452,3021,5518,-9,5519,5516,3,1,1,14,2,0,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-1031.4181,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2452,3021,5519,5516,-9,-9,1,1,0,37,1,0,5,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,1,-9,-4,0,-9,0,1,41,3,4,3,3,3,2019,4,7,19,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.610001,45.470001,48.279999,60.18,3,2,3,0,1,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2452,3021,5520,-9,5519,5516,5,1,1,11,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1076.504,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,2,1,1,1188.4286,64352.039,0,0,1991.5032 -2453,3022,5521,5522,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,2,9.0192766,8.6565542,0,1,0,-9,13,0,-2,-47.231613,0,0,0,54,2,3,1,3,3,2019,1,1,13,3,40,40,15,1,0,1,0,16.637186,16.637186,0,0,0,0,0,0,0,2,0,0,0,3.3474414,0,4.2016273,3,56.169998,46.18,32.279999,58.049999,6,1,1,0,0,2,5,1,459,993945.81,0,0,4238.2437 -2453,3022,5522,5521,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.6809368,8.7098141,0,1,0,-9,13,0,2,-112.58403,0,0,0,52,1,2,1,3,2,2019,1,2,14,2,42,42,15,1,0,1,0,14.305012,14.305012,0,0,0,0,0,0,0,2,0,0,0,5.3333874,0,0,3,32.279999,58.049999,56.169998,46.18,6,1,1,0,0,2,5,1,459,993945.81,0,0,4238.2437 -2454,3023,5523,-9,5524,5526,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.20135,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,2,3,1,554.75,31927.324,0,0,3308.2622 -2454,3023,5524,5526,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,0,4,6.6731911,6.7642107,0,2,0,-9,21,0,-1,-136.68399,0,0,0,51,2,4,1,3,3,2019,1,1,10,2,10,10,15,1,0,1,0,12.093939,12.093939,0,0,0,0,0,0,0,0,1,1,0,7.0528698,0,0,0,49.349998,59.639999,57.16,56.150002,7,1,1,0,0,2,3,1,554.75,31927.324,0,0,3308.2622 -2454,3023,5525,-9,5524,5526,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.8783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,554.75,31927.324,0,0,3308.2622 -2454,3023,5526,5524,-9,-9,1,1,1,51,1,0,2,0,2,-9,1,1,0,0,4,8.3433294,8.5776768,0,2,0,-9,21,0,1,22.688131,-9,0,0,50,2,4,1,2,2,2019,1,2,6,0,30,0,15,1,0,1,0,17.521231,17.521231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49.349998,59.639999,6,1,1,0,0,2,3,1,554.75,31927.324,0,0,3308.2622 -2455,3024,5527,5528,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,8.9877024,9.1931868,0,1,0,-9,10,0,1,5.8892665,0,0,0,48,2,4,1,1,1,2019,1,2,6,0,40,41,15,1,0,1,0,25.638878,25.638878,0,0,0,0,0,0,0,0,0,0,0,4.055994,0,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,9,5,1,879,313823.44,0,0,7024.2266 -2455,3024,5528,5527,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,9.2515154,9.263319,0,1,0,-9,10,0,-1,-6.1304851,0,0,0,49,1,4,1,1,3,2019,1,1,11,0,44,50,15,1,0,1,0,27.564995,27.564995,0,0,0,0,0,0,0,0,0,0,0,3.7598388,0,0,0,57.16,56.150002,60.119999,54.799999,7,1,1,0,0,9,5,1,879,313823.44,0,0,7024.2266 -2456,3025,5529,5530,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,2,0,6.6653199,6.903357,1,0,-9,11,0,5,22.383181,0,0,0,57,2,4,3,-9,-9,2019,4,2,7,0,0,44,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3627758,6.9436707,0,0,50.98,33.549999,62.490002,55.09,6,1,1,0,0,7,2,1,208,1333064.8,0,0,197.50012 -2456,3025,5530,5529,-9,-9,2,1,0,57,1,0,0,0,2,-9,97,3,0,0,4,0,5.4700069,5.3062677,1,0,-9,35,0,-5,10.768776,0,0,0,62,1,2,3,2,2,2019,4,1,5,0,0,40,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5223742,0,0,62.490002,55.09,50.98,33.549999,7,1,1,0,0,7,2,1,208,1333064.8,0,0,197.50012 -2457,3026,5531,-9,5532,5533,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-933.89716,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,2,4,1,709,47701.645,0,0,3511.0237 -2457,3026,5532,5533,-9,-9,1,1,0,31,1,1,1,0,2,-9,1,1,0,0,4,7.60076,7.8123522,0,2,0,1,1,-9,3,-10.203394,0,0,1,28,2,4,1,3,2,2019,1,2,13,3,30,45,15,1,0,1,0,6.1989145,6.1989145,0,0,0,0,0,0,0,0,1,1,0,2.1206563,0,0,0,49.119999,57.279999,49,58,4,2,3,0,0,2,4,1,709,47701.645,0,0,3511.0237 -2457,3026,5533,5532,-9,-9,2,1,1,28,1,1,1,0,2,-9,1,1,0,0,4,8.6407442,9.0499182,0,2,0,-9,1,-9,-3,211.2926,-9,1,0,31,2,4,1,-9,-9,2019,1,1,10,1,38,0,15,1,0,1,0,15.460084,15.460084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,49.119999,57.279999,5,1,1,0,0,2,4,1,709,47701.645,0,0,3511.0237 -2458,3027,5534,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,1,3,0,5.3223977,4.9964147,3,0,0,0,-9,0,-968.59576,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6233444,5.3009214,0,0,35.419998,44.619999,-9,-9,7,1,1,0,0,8,2,0,380,143130.52,0,0,510.13388 -2459,3028,5535,-9,-9,-9,1,1,0,37,3,0,2,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-952.12262,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,21,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,48.039772,3,35.299999,31.450001,-9,-9,2,4,5,0,0,9,1,0,836.33331,0,0,0,1434.343 -2459,3028,5536,-9,5535,-9,3,1,1,17,2,0,2,0,3,-9,97,3,0,0,2,0,0,0,4,0,0,0,-9,0,-979.91437,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.9571853,0,0,0,26.709999,56.990002,-9,-9,3,4,5,0,1,9,1,0,836.33331,0,0,0,1434.343 -2459,3028,5537,-9,5535,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1000.3047,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,4,5,0,0,9,1,0,836.33331,0,0,0,1434.343 -2459,3029,5538,-9,5535,-9,2,1,1,19,2,0,2,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-964.66913,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25,48.900002,-9,-9,1,4,5,0,1,9,1,0,1468,26973.855,0,0,1218.464 -2460,3030,5539,5540,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.9533968,9.1454096,0,2,0,-9,24,0,-3,-36.007504,0,0,0,48,2,4,1,2,2,2019,1,2,10,1,38,38,15,1,0,1,0,22.955488,22.955488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,63.09,47.919998,6,1,1,0,0,10,5,1,595.5,451039.63,0,0,4640.8374 -2460,3030,5540,5539,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.3020811,8.1330271,0,2,0,-9,24,0,3,-12.84563,0,0,0,45,2,4,1,2,2,2019,1,1,7,0,38,42,15,1,0,1,0,10.596315,10.596315,0,0,0,0,0,0,0,2,1,1,0,0,0,9.2627077,3,63.09,47.919998,51,54,6,1,1,0,0,10,5,1,595.5,451039.63,0,0,4640.8374 -2461,3031,5541,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,1,1,0,0,3,9.4562654,9.6858377,0,3,0,0,0,-9,0,-1011.0463,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,50,45,15,1,0,-9,1,27.273638,27.273638,0,0,0,0,0,0,0,2,1,1,0,7.3158751,0,3.9860768,3,49.439999,54.259998,-9,-9,6,1,1,0,0,7,5,1,304,272664.19,0,0,5755.9121 -2462,3032,5542,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,3,8.6250935,8.9256668,0,3,0,0,0,-9,0,-1144.6991,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,47,50,15,1,0,-9,0,16.42561,16.42561,0,0,0,0,0,0,0,0,0,0,0,7.3069453,0,0,0,63.48,43.98,-9,-9,6,4,2,0,0,8,5,0,359,263192.88,0,0,3354.0229 -2462,3033,5543,-9,-9,-9,2,1,1,35,2,0,0,0,1,-9,2,1,0,0,2,8.9755239,8.7270689,0,3,0,0,0,-9,0,-996.48859,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,35,35,15,1,1,-9,0,18.676416,18.676416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.530001,51.990002,-9,-9,3,1,1,0,0,8,5,0,198,434174.69,0,0,1291.5237 -2463,3034,5544,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,9.0455256,8.8006535,0,3,0,0,0,-9,0,-1110.8632,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,70,57,15,1,0,-9,0,15.766454,15.766454,0,0,0,0,0,0,0,0,1,1,0,4.0992775,0,0,0,49.41,56.950001,-9,-9,5,1,1,0,0,9,5,1,602,834492.19,0,0,4679.4761 -2464,3035,5545,5546,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.0079303,7.2256856,1,0,-9,42,0,0,10.26066,0,0,0,66,1,3,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0767255,6.9154153,0,0,54.77,55.869999,55.360001,51.57,6,1,1,0,0,7,3,1,626,2141202.5,0,0,2722.9893 -2464,3035,5546,5545,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.1672368,7.4804082,1,0,-9,42,0,0,-26.925661,0,0,0,66,1,4,3,3,-9,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0535064,7.67904,0,0,55.360001,51.57,54.77,55.869999,6,1,1,0,0,7,3,1,626,2141202.5,0,0,2722.9893 -2465,3036,5547,-9,5548,5550,7,1,1,13,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1041.2845,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,5,1,921,46351.523,0,0,3226.8164 -2465,3036,5548,5550,-9,-9,8,1,0,21,1,0,0,0,2,-9,2,1,0,0,4,8.8077869,8.49543,0,1,0,-9,3,0,0,22.078623,0,1,1,21,2,3,1,-9,-9,2019,1,3,15,4,52,50,15,1,1,1,0,11.921423,11.921423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.09,55.27,33.279999,48.279999,5,1,1,0,0,11,5,1,921,46351.523,0,0,3226.8164 -2465,3036,5549,-9,5548,5550,6,1,1,14,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,1,0,0,0,-9,0,-1006.1061,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,11,5,1,921,46351.523,0,0,3226.8164 -2465,3036,5550,5548,5553,5551,3,1,1,21,1,0,0,0,2,-9,1,1,0,0,3,8.2182884,8.1203527,0,1,0,-9,3,0,0,-121.08788,0,1,0,21,2,4,1,2,3,2019,1,8,12,2,40,38,15,1,0,1,0,7.5896764,7.5896764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.279999,48.279999,36.09,55.27,2,1,1,0,0,11,5,1,921,46351.523,0,0,3226.8164 -2465,3037,5551,5553,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,0,5,7.0775795,7.0347257,0,1,0,-9,9,0,-1,36.613956,0,0,0,53,2,4,1,2,3,2019,1,2,7,0,40,38,15,1,0,1,0,2.9772365,2.9772365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.380001,53.470001,57.740002,49,7,1,1,0,0,11,4,1,980,423022.22,0,0,6695.6167 -2465,3037,5552,-9,-9,5551,9,1,0,17,2,0,0,1,2,0,7,2,0,0,3,4.9440222,4.7108669,0,1,0,0,0,-9,0,-847.40112,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.16,43.02,-9,-9,6,1,1,0,0,11,4,1,980,423022.22,0,0,6695.6167 -2465,3037,5553,5551,5554,5555,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.9680657,7.8356814,0,1,0,-9,9,0,1,-81.507927,0,0,0,52,3,5,1,2,1,2019,1,1,7,0,17,35,15,1,0,1,0,23.328556,23.328556,0,0,0,0,0,0,0,7,1,1,0,0,0,10.083385,3,57.740002,49,63.380001,53.470001,6,1,1,0,0,11,4,1,980,423022.22,0,0,6695.6167 -2465,3038,5554,5555,-9,-9,5,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,3.9124196,4.3518167,1,0,-9,9,0,-3,-36.880512,0,0,0,85,1,3,3,-9,-9,2019,4,4,18,6,0,0,15,4,1,4,0,0,0,1,0,4.2426138,0,0,0,0,0,1,1,0,0,4.2977219,0,0,48.599998,26.620001,54.360001,39.669998,4,1,1,0,0,11,3,1,311.5,901571.88,0,0,2934.625 -2465,3038,5555,5554,-9,-9,4,1,1,85,1,0,0,0,1,-9,4,3,0,0,3,0,8.1170263,8.3188734,1,0,-9,9,0,3,-84.869553,0,0,0,82,2,3,3,-9,-9,2019,4,5,12,0,0,0,15,4,0,4,0,0,0,1,.85112959,0,127.79203,0,0,74.049011,0,1,1,0,0,8.0792627,0,0,54.360001,39.669998,48.599998,26.620001,6,1,1,0,0,11,3,1,311.5,901571.88,0,0,2934.625 -2466,3039,5556,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,4,3,0,1,3,0,7.6997466,7.9295254,3,0,0,0,-9,0,-985.52393,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9918303,7.416975,0,0,57.919998,51.82,-9,-9,6,1,1,0,0,8,3,1,185,-47097.086,0,0,1128.3387 -2467,3040,5557,5558,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,5,0,7.9519906,8.3913469,1,0,-9,49,0,3,-131.32088,0,0,0,67,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.4545774,7.9794941,0,3,62.389999,56.709999,57.630001,56.139999,7,1,1,0,0,7,4,1,982,2166647.5,0,0,3697.3362 -2467,3040,5558,5557,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,5,0,7.1426587,6.9484825,1,0,-9,49,0,-3,-22.576693,0,0,0,70,1,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9357829,0,0,57.630001,56.139999,62.389999,56.709999,7,1,1,0,0,7,4,1,982,2166647.5,0,0,3697.3362 -2468,3041,5559,5560,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.5206804,8.7346382,0,2,0,-9,5,0,0,39.453117,0,0,0,50,2,3,1,2,2,2019,1,1,11,0,44,44,15,1,0,1,0,11.68895,11.68895,0,0,0,0,0,0,0,7,1,1,0,0,0,8.3945694,3,41.82,57.720001,45.389999,52.080002,6,1,1,0,1,12,5,1,498,654974.75,0,0,2959.645 -2468,3041,5560,5559,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,3,8.3949413,7.9791999,0,2,0,-9,5,0,0,-26.16053,0,0,0,50,2,3,1,3,3,2019,1,2,16,5,35,35,15,1,1,1,0,14.491559,14.491559,0,0,0,0,0,0,0,7,1,1,0,0,0,5.0351615,3,45.389999,52.080002,41.82,57.720001,4,1,1,0,1,12,5,1,498,654974.75,0,0,2959.645 -2468,3042,5561,-9,5560,5559,3,1,0,19,2,0,1,1,2,0,7,2,0,0,2,6.6807294,6.5707116,0,3,0,0,0,-9,0,-1090.4128,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.27,57.049999,-9,-9,2,1,1,0,0,12,2,1,130,7072.7739,0,0,-498.40955 -2469,3043,5562,5563,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.7320037,6.7998114,1,0,-9,10,0,0,-149.98564,0,0,0,70,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,18.39072,0,0,0,0,0,1,1,0,8.8399563,7.014832,0,0,64.379997,39.16,49.860001,55.310001,6,1,1,0,0,4,2,1,221,457183.44,0,0,4375.8477 -2469,3043,5563,5562,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.6097136,6.0895014,1,0,-9,10,0,0,-20.266199,0,0,0,70,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8300211,6.3265638,0,0,49.860001,55.310001,64.379997,39.16,6,1,1,0,0,4,2,1,221,457183.44,0,0,4375.8477 -2470,3044,5564,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,7.9432993,7.8117175,0,3,0,0,0,-9,0,-1072.6301,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,38,35,15,1,0,-9,0,8.9914494,8.9914494,0,0,0,0,0,0,0,0,0,0,0,1.5243682,0,0,0,50.200001,55.41,-9,-9,6,1,1,0,0,1,3,1,1778,89281.445,0,0,1978.0878 -2471,3045,5565,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,0,4,9.2412128,9.2962275,0,3,0,0,0,-9,0,-975.65277,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,52,42,15,1,0,-9,0,35.975719,35.975719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,64.480003,-9,-9,6,1,1,0,0,6,5,0,201,123364.06,0,0,4652.5103 -2472,3046,5566,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,3,8.7709875,8.6755905,0,3,0,-9,0,-9,0,-969.42566,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,41,0,15,1,0,-9,0,14.576174,14.576174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.470001,58.080002,-9,-9,5,1,1,0,0,2,5,0,383,316601.25,0,0,2705.6394 -2473,3047,5567,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,4,8.6974611,9.2999878,0,3,0,0,0,-9,0,-992.23486,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,39,15,1,0,-9,0,21.915083,21.915083,0,0,0,0,0,0,0,0,1,1,0,1.630975,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,5,0,1195,343626.19,0,0,2074.0867 -2474,3048,5568,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-935.73999,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1331735,0,0,0,35.799999,24.049999,-9,-9,4,2,3,0,1,6,1,1,1356,0,0,0,672.33228 -2474,3049,5569,-9,5568,-9,2,1,1,32,2,0,0,0,2,-9,10,3,0,0,5,6.1638775,6.4049296,0,3,0,0,0,-9,0,-1114.0027,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,40,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7515383,0,10.467271,3,50.549999,54.060001,-9,-9,6,2,3,0,0,6,2,1,374,168188.69,0,0,300.54681 -2475,3050,5570,-9,5571,-9,1,1,1,58,2,0,0,0,2,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1101.3461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.221554,3,54.369999,54.799999,-9,-9,5,1,1,0,0,5,1,1,519,145315.16,0,0,1164.3521 -2475,3051,5571,-9,-9,-9,2,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1014.4901,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,5,1,1,360,-26096.518,0,0,1092.7289 -2476,3052,5572,-9,5573,5574,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.79803,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,2,0,631.5,411482.47,0,0,2143.521 -2476,3052,5573,5574,-9,-9,2,1,0,38,1,0,2,0,2,0,7,2,0,0,5,0,0,0,2,0,-9,16,0,-11,-103.86181,-9,0,1,49,1,5,2,3,1,2019,4,1,12,0,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.470001,52.68,57.060001,57.759998,3,3,4,0,0,8,2,0,631.5,411482.47,0,0,2143.521 -2476,3052,5574,5573,-9,-9,1,1,1,49,1,0,2,0,1,0,7,2,0,0,5,7.5944009,8.0326729,0,2,0,-9,16,0,11,-27.719252,-9,0,0,38,2,5,2,3,3,2019,4,2,9,0,22,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,44.470001,52.68,5,3,4,0,0,8,2,0,631.5,411482.47,0,0,2143.521 -2476,3052,5575,-9,5573,5574,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.045,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,631.5,411482.47,0,0,2143.521 -2477,3053,5576,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,1,2,0,6.9404502,6.9083276,3,0,0,0,-9,0,-1044.8446,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,8.9557295,0,0,0,0,69.022171,0,1,1,0,0,7.1947207,0,0,57.740002,11.83,-9,-9,6,1,1,0,0,12,2,1,577,273442.03,0,0,919.40875 -2478,3054,5577,5578,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,1,5,0,6.0703301,6.4357076,1,0,-9,49,0,0,-28.279238,0,0,0,72,3,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.33734787,6.0764413,19.359604,1,50.540001,62.09,51,47,7,1,1,0,0,6,3,1,379,708415.88,0,0,3415.8403 -2478,3054,5578,5577,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.4262657,7.6884727,1,0,-9,9,0,0,47.076057,0,0,0,72,3,5,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3729234,7.0002823,0,0,51,47,50.540001,62.09,5,1,1,0,0,6,3,1,379,708415.88,0,0,3415.8403 -2479,3055,5579,-9,5581,5582,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.0527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,5,1,584,497699.38,0,0,4566.9253 -2479,3055,5580,-9,5581,5582,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.3575,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,5,1,584,497699.38,0,0,4566.9253 -2479,3055,5581,5582,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,8.7663431,8.841877,0,2,0,-9,10,0,2,-46.99493,0,0,1,36,2,5,1,-9,-9,2019,1,2,8,0,43,40,15,1,0,1,0,16.553596,16.553596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,62.389999,56.709999,6,3,4,0,0,8,5,1,584,497699.38,0,0,4566.9253 -2479,3055,5582,5581,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,5,8.6020336,8.737915,0,2,0,-9,10,0,-2,121.20567,0,0,0,38,2,3,1,2,2,2019,1,1,7,0,48,50,15,1,0,1,0,14.029084,14.029084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,49.040001,55.860001,4,3,4,0,0,8,5,1,584,497699.38,0,0,4566.9253 -2480,3056,5583,5584,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,9.1108503,9.3441038,0,1,0,-9,30,0,0,138.19969,0,0,0,60,2,2,3,3,3,2019,2,1,11,0,41,40,15,1,0,3,0,30.960968,30.960968,0,0,0,0,0,0,0,2,0,0,0,3.2645979,0,0,3,48.720001,53.150002,18.01,53.299999,5,1,1,0,0,8,5,1,235,3428845.5,0,0,3506.498 -2480,3056,5584,5583,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,31,0,0,-96.703217,0,0,0,60,1,4,1,3,3,2019,3,2,29,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.01,53.299999,48.720001,53.150002,1,4,5,0,1,8,5,1,235,3428845.5,0,0,3506.498 -2480,3057,5585,-9,5584,5583,3,1,0,21,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-982.38342,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.459999,53.5,-9,-9,3,4,2,1,0,8,1,1,1101,-153001.58,0,0,0 -2481,3058,5586,5587,-9,-9,2,1,0,48,1,0,0,0,2,-9,3,3,0,0,2,6.4670067,6.7717891,0,1,0,-9,3,0,-1,-52.68486,0,0,0,49,2,3,1,-9,-9,2019,3,1,24,12,16,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.880001,49.189999,57.330002,53.459999,5,1,1,1,0,11,4,1,1006.3333,433962.19,0,0,3656.6597 -2481,3058,5587,5586,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.8759956,9.0845728,0,1,0,-9,3,0,1,46.787853,0,0,0,48,2,2,3,3,3,2019,2,2,7,0,76,48,15,1,0,3,0,8.509573,8.509573,0,0,0,0,0,0,0,0,1,1,0,6.0322809,0,0,0,57.330002,53.459999,40.880001,49.189999,6,1,1,0,0,11,4,1,1006.3333,433962.19,0,0,3656.6597 -2481,3058,5588,-9,5586,-9,3,1,0,17,2,0,0,0,2,1,2,3,0,0,5,5.8166432,5.9656215,0,1,0,0,0,-9,0,-1000.3992,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,30,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.48,54.060001,-9,-9,7,1,1,0,0,11,4,1,1006.3333,433962.19,0,0,3656.6597 -2482,3059,5589,-9,-9,-9,1,1,0,83,2,0,0,0,2,-9,4,3,0,0,3,0,5.231967,5.1386642,3,0,0,0,-9,0,-944.41559,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.84491092,5.0342121,0,0,52.16,30.219999,-9,-9,6,1,1,0,0,10,2,1,89,289938.56,0,0,1518.5736 -2482,3060,5590,-9,-9,-9,2,1,0,81,2,0,0,0,2,-9,4,3,0,0,4,0,5.3377848,5.4163327,3,0,0,0,-9,0,-962.64539,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3379726,5.242043,0,0,54.099998,50.73,-9,-9,6,1,1,0,0,10,2,1,1087,-45022.457,0,0,1019.0954 -2483,3061,5591,-9,5593,5592,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.1566,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,1196.6,765642.38,0,0,5940.2666 -2483,3061,5592,5593,-9,-9,1,1,1,43,1,0,3,0,2,-9,2,1,0,0,4,8.7332716,8.7598286,0,2,0,-9,7,0,-2,-10.955196,0,0,0,45,1,3,1,-9,-9,2019,1,2,9,1,50,48,15,1,0,1,0,19.834412,19.834412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,53.919998,52.23,6,1,1,0,0,7,5,1,1196.6,765642.38,0,0,5940.2666 -2483,3061,5593,5592,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,0,3,9.3495979,9.0891676,0,2,0,-9,13,0,2,-64.272758,0,0,0,43,2,4,1,2,3,2019,1,1,11,0,49,49,15,1,0,1,0,19.95656,19.95656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.919998,52.23,52,56,6,1,1,0,0,7,5,1,1196.6,765642.38,0,0,5940.2666 -2483,3061,5594,-9,5593,5592,3,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.4491,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,1196.6,765642.38,0,0,5940.2666 -2483,3061,5595,-9,5593,5592,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.6029,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,1196.6,765642.38,0,0,5940.2666 -2484,3062,5596,-9,-9,-9,1,1,1,38,3,0,0,0,3,-9,2,1,0,0,4,8.1409388,7.9268126,0,3,0,0,0,-9,0,-1077.4473,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,20,15,1,0,-9,0,9.6636906,9.6636906,0,0,0,0,0,0,0,2,0,0,0,0,0,2.2048085,3,51,57,-9,-9,5,2,3,0,0,8,4,0,2088,134263.64,0,0,1755.4965 -2485,3063,5597,5598,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,3,8.4861956,8.6578665,0,1,0,-9,7,0,1,-131.90407,0,0,0,50,2,4,1,3,2,2019,1,2,8,0,42,45,15,1,0,1,0,17.371447,17.371447,0,0,0,0,0,0,0,0,0,0,0,2.3106859,0,0,0,54.959999,53.169998,57.16,56.150002,4,1,1,0,0,7,5,1,125,1001792.6,0,0,4232.6855 -2485,3063,5598,5597,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.7053356,8.6436634,0,1,0,-9,7,0,-1,239.45544,0,0,0,51,1,3,1,-9,-9,2019,1,1,7,0,41,41,15,1,0,1,0,17.478111,17.478111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.959999,53.169998,6,1,1,0,0,7,5,1,125,1001792.6,0,0,4232.6855 -2486,3064,5599,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,2,1,0,0,4,7.7110405,7.5520511,0,3,0,0,0,-9,0,-874.94183,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,30,15,1,0,-9,0,8.0047703,8.0047703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.110001,66.449997,-9,-9,2,1,1,0,1,10,3,0,78,357239.88,0,0,55.103516 -2486,3065,5600,-9,5599,-9,2,1,1,23,2,0,0,0,1,1,2,1,0,0,3,7.474791,7.0093117,0,3,0,0,0,-9,0,-1033.396,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,24,9,25,0,15,1,1,-9,1,6.6608868,6.6608868,0,0,0,0,0,0,0,0,1,1,0,.5858357,0,0,0,23.190001,63.779999,-9,-9,2,1,1,0,1,10,3,0,898,-141383.8,0,0,477.59808 -2487,3066,5601,5602,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,0,3,8.2266474,8.4265728,0,2,0,-9,9,0,-2,113.10477,0,0,1,39,1,4,1,-9,-9,2019,1,1,15,4,22,23,15,1,1,1,0,19.658478,19.658478,0,0,0,0,0,0,0,0,1,1,0,2.9658544,0,0,0,43.650002,58.279999,51.490002,57.57,6,1,1,0,0,2,5,1,482.66666,164054.98,0,0,3411.3181 -2487,3066,5602,5601,-9,-9,1,1,1,39,1,1,1,0,1,-9,2,1,0,0,4,8.5163155,8.557641,0,2,0,-9,9,0,2,17.149754,0,0,0,37,1,3,1,2,3,2019,1,2,10,0,50,50,15,1,0,1,0,12.811607,12.811607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,43.650002,58.279999,6,1,1,0,0,2,5,1,482.66666,164054.98,0,0,3411.3181 -2487,3066,5603,-9,5601,5602,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-781.03516,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,482.66666,164054.98,0,0,3411.3181 -2488,3067,5604,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1027.3246,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.809999,37.91,-9,-9,3,1,1,0,1,2,1,1,223,0,0,0,-78.823746 -2489,3068,5605,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.7581024,7.0338693,3,0,0,0,-9,0,-1067.1038,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.9918475,50.289593,3,47.060001,38.830002,-9,-9,5,1,1,0,0,7,2,0,1011,812830.63,0,0,940.15106 -2490,3069,5606,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,0,3,8.2652521,8.1691532,6.6092606,3,0,0,0,-9,0,-1051.9728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,58,52,15,1,0,-9,1,9.5471392,9.5471392,0,0,0,0,0,0,0,0,1,1,0,6.1900215,0,0,0,56.52,48.310001,-9,-9,6,1,1,0,0,11,5,1,800,-146007.22,0,0,1303.7909 -2491,3070,5607,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,4,8.8149948,8.8049059,0,3,0,0,0,-9,0,-934.42755,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,48,50,15,1,0,-9,0,17.016943,17.016943,0,0,0,0,0,0,0,0,1,1,0,6.8725414,0,0,0,47.290001,55.389999,-9,-9,6,4,5,0,0,5,5,1,693,-58001.137,0,0,4289.645 -2492,3071,5608,5610,-9,-9,1,1,0,27,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-27,0,0,1,1,54,3,1,3,-9,-9,2019,4,2,23,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.381584,1,37.189999,46.110001,30.629999,25.219999,3,1,1,0,0,2,1,0,840.5,15504.267,0,0,1815.7366 -2492,3071,5609,-9,5608,5610,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.355,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,840.5,15504.267,0,0,1815.7366 -2492,3071,5610,5608,-9,-9,2,1,1,54,1,0,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,27,0,0,0,0,27,2,3,3,-9,-9,2019,4,1,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.629999,25.219999,37.189999,46.110001,4,1,1,0,0,2,1,0,840.5,15504.267,0,0,1815.7366 -2492,3071,5611,-9,5608,5610,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-824.49695,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,840.5,15504.267,0,0,1815.7366 -2493,3072,5612,5613,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.0505629,8.0451221,0,1,0,-9,14,0,8,-151.2016,0,0,0,47,2,4,1,2,2,2019,1,2,18,6,45,45,15,1,1,1,0,9.5538588,9.5538588,0,0,0,0,0,0,0,0,0,0,0,.97323573,0,0,0,41.290001,56.369999,51.240002,58.84,6,1,1,0,0,7,5,1,429,1491890.8,0,0,2349.5845 -2493,3072,5613,5612,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,8.1548281,8.2258701,0,1,0,-9,15,0,-8,62.756954,0,0,0,55,2,4,1,2,2,2019,1,1,8,1,40,38,15,1,0,1,0,10.687925,10.687925,0,0,0,0,0,0,0,0,0,0,0,4.2052851,0,0,0,51.240002,58.84,41.290001,56.369999,6,1,1,0,0,7,5,1,429,1491890.8,0,0,2349.5845 -2494,3073,5614,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1014.0494,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,9,1,1,928,21386.529,0,0,0 -2495,3074,5615,-9,5618,5616,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.60114,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,567,369622.38,0,0,6661.1812 -2495,3074,5616,5618,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,3,8.7504683,9.1215525,0,2,0,-9,9,0,8,26.617743,0,0,0,43,1,5,1,2,3,2019,1,1,8,0,1,40,15,1,0,1,0,995.15387,995.15387,0,0,0,0,0,0,0,0,1,1,0,6.8823733,0,0,0,57.330002,53.459999,46.400002,59.869999,6,1,1,0,0,2,5,1,567,369622.38,0,0,6661.1812 -2495,3074,5617,-9,5618,5616,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.3162,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,567,369622.38,0,0,6661.1812 -2495,3074,5618,5616,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,5,9.1089649,9.1766615,0,2,0,-9,9,0,-8,29.601522,0,0,1,51,2,3,1,1,2,2019,1,2,11,0,40,37,15,1,0,1,0,21.96715,21.96715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.400002,59.869999,57.330002,53.459999,6,1,1,0,0,2,5,1,567,369622.38,0,0,6661.1812 -2496,3075,5619,5622,-9,-9,4,1,1,32,1,1,3,0,3,-9,1,1,0,0,3,6.9803247,7.4965072,0,2,0,-9,4,0,4,108.27129,0,0,0,28,2,3,3,-9,-9,2019,2,1,12,0,20,20,15,1,0,3,0,7.2051449,7.2051449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.610001,50.299999,47.32,52.700001,4,2,3,0,0,9,2,0,561.20001,108758.73,0,0,2527.8223 -2496,3075,5620,-9,5622,5619,2,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.2971,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,9,2,0,561.20001,108758.73,0,0,2527.8223 -2496,3075,5621,-9,5622,5619,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.07385,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,9,2,0,561.20001,108758.73,0,0,2527.8223 -2496,3075,5622,5619,-9,-9,1,1,0,28,1,1,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-4,-62.921253,0,1,1,32,3,3,1,3,3,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.700001,55.610001,50.299999,5,2,3,0,0,9,2,0,561.20001,108758.73,0,0,2527.8223 -2496,3075,5623,-9,5622,5619,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.0051,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,9,2,0,561.20001,108758.73,0,0,2527.8223 -2497,3076,5624,5626,-9,-9,1,1,0,34,1,0,2,0,2,-9,1,1,0,0,4,7.4261222,7.9656343,0,2,0,-9,17,0,-4,63.214035,0,0,1,38,2,4,1,3,2,2019,1,2,13,1,25,33,15,1,0,1,0,12.018188,12.018188,0,0,0,0,0,0,0,0,1,1,0,1.911499,0,0,0,48.869999,58.549999,54.200001,57.490002,6,1,1,0,0,6,5,1,570.75,1243794.6,0,0,5004.0664 -2497,3076,5625,-9,5624,5626,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1050.5393,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,6,5,1,570.75,1243794.6,0,0,5004.0664 -2497,3076,5626,5624,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,9.2642317,9.0724096,0,2,0,-9,17,0,4,59.545094,0,0,0,34,2,4,1,2,1,2019,1,1,12,0,60,0,15,1,0,1,0,17.093122,17.093122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,6,5,1,570.75,1243794.6,0,0,5004.0664 -2497,3076,5627,-9,5624,5626,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.4108,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,570.75,1243794.6,0,0,5004.0664 -2498,3077,5628,-9,5629,5631,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.3871,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,781.75,112583.42,0,0,4213.5361 -2498,3077,5629,5631,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,7.8844228,7.7349401,0,2,0,-9,7,0,0,72.324043,0,0,1,41,2,5,1,2,3,2019,1,1,1,0,29,10,15,1,0,1,0,7.6980696,7.6980696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,57.060001,57.759998,7,1,1,0,0,4,4,0,781.75,112583.42,0,0,4213.5361 -2498,3077,5630,-9,5629,5631,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.25458,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,781.75,112583.42,0,0,4213.5361 -2498,3077,5631,5629,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,5,8.9130955,8.7642622,0,2,0,-9,7,0,0,118.44764,0,0,0,41,2,5,1,3,2,2019,1,2,7,0,38,37,15,1,0,1,0,18.938736,18.938736,0,0,0,0,0,0,0,0,1,1,0,6.4434476,0,0,0,57.060001,57.759998,56.470001,59.400002,6,1,1,0,0,4,4,0,781.75,112583.42,0,0,4213.5361 -2499,3078,5632,-9,5633,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-952.5376,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,8,5,0,305,15364.63,0,0,3319.3662 -2499,3078,5633,-9,-9,-9,1,1,0,22,2,1,1,0,2,-9,2,1,0,0,4,8.44767,8.1420717,7.1302838,4,0,0,0,-9,0,-868.40448,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,40,41,15,1,0,-9,0,13.623144,13.623144,0,0,0,0,0,0,0,0,1,1,0,7.1815891,0,0,0,46,58,-9,-9,5,3,4,0,0,8,5,0,305,15364.63,0,0,3319.3662 -2500,3079,5634,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,3,7.568882,7.8584762,0,3,0,-9,0,-9,0,-1061.4598,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,3,0,15,1,0,-9,0,87.543396,87.543396,0,0,0,0,0,0,0,0,1,1,0,5.9736013,0,0,0,49.630001,54.220001,-9,-9,5,1,1,0,0,6,3,1,2018,49536.086,0,0,2176.8872 -2501,3080,5635,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,6.5773053,6.7768126,3,0,0,0,-9,0,-1036.73,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2834949,0,0,51.32,43.57,-9,-9,7,3,4,0,0,8,2,1,367,416644.97,0,0,52.458084 -2502,3081,5636,5638,-9,-9,2,1,1,28,1,0,1,0,2,-9,1,1,0,0,5,5.5955839,5.4734917,0,2,0,-9,5,0,4,42.312386,0,1,0,24,2,4,1,-9,-9,2019,1,1,12,0,45,50,15,1,0,1,0,.49201801,.49201801,0,0,0,0,0,0,0,0,1,1,0,7.7580676,0,0,0,51.360001,59.200001,40.700001,49.98,4,1,1,0,0,7,3,1,432,5423.8989,0,0,3683.9351 -2502,3081,5637,-9,5638,5636,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.1409,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,1,432,5423.8989,0,0,3683.9351 -2502,3081,5638,5636,-9,-9,1,1,0,24,1,0,1,0,2,-9,2,1,0,0,4,8.5615416,8.4487171,0,2,0,-9,5,0,-4,46.456902,0,1,1,28,2,5,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,11.384835,11.384835,0,0,0,0,0,0,0,0,1,1,0,2.7884135,0,0,0,40.700001,49.98,51.360001,59.200001,6,1,1,0,0,7,3,1,432,5423.8989,0,0,3683.9351 -2503,3082,5639,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,2,1,0,0,3,8.8559179,9.1957664,0,3,0,0,0,-9,0,-1061.1207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,40,15,1,0,-9,0,28.510126,28.510126,0,0,0,0,0,0,0,0,0,0,0,6.8741488,0,0,0,43.709999,56.91,-9,-9,5,1,1,0,0,9,5,1,206,469802.22,0,0,4061.178 -2503,3083,5640,-9,5639,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,0,3,7.8600769,7.4717536,0,3,0,0,0,-9,0,-997.10901,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,1,42,37,15,1,0,-9,1,7.8674021,7.8674021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.639999,57.52,-9,-9,6,1,1,0,0,9,3,1,422,153618.5,0,0,1569.4513 -2504,3084,5641,5642,-9,-9,1,1,0,58,1,0,0,0,3,-9,2,1,0,0,4,8.132617,8.3773518,0,1,0,-9,5,0,7,69.563683,0,0,0,51,2,3,1,3,2,2019,1,2,8,0,37,37,15,1,0,1,0,9.2696724,9.2696724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,25.780001,58.740002,6,1,1,0,0,11,4,0,403,197588.72,0,0,2087.2742 -2504,3084,5642,5641,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,7.7908139,7.8240666,0,1,0,-9,5,0,-7,2.892451,0,0,0,58,3,4,1,-9,-9,2019,1,1,11,1,41,30,15,1,0,1,0,5.1221395,5.1221395,0,0,0,0,0,0,0,0,0,0,0,5.1254001,0,0,0,25.780001,58.740002,51.830002,57.200001,6,1,1,0,0,11,4,0,403,197588.72,0,0,2087.2742 -2505,3085,5643,5644,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,5,4.9673972,7.1322131,7.0672526,1,0,-9,52,0,1,97.818932,0,0,0,68,3,3,3,3,3,2019,4,1,6,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7989721,0,0,62.389999,56.709999,63.310001,32.939999,6,1,1,0,0,1,2,1,843.5,473607.19,0,0,2494.9658 -2505,3085,5644,5643,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,5.7325068,5.3362842,1,0,-9,52,0,-1,-77.566772,0,0,0,69,3,5,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4119105,0,0,63.310001,32.939999,62.389999,56.709999,6,1,1,0,0,1,2,1,843.5,473607.19,0,0,2494.9658 -2506,3086,5645,5646,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,8.541563,8.6355982,0,2,0,-9,18,0,-7,114.95208,0,0,1,45,1,5,1,2,2,2019,1,2,8,1,40,40,15,1,0,1,0,12.870343,12.870343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,54.099998,59.110001,6,1,1,0,0,11,5,1,1495.5,704165.88,0,0,3983.335 -2506,3086,5646,5645,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,5,8.7254696,8.9885826,0,2,0,-9,18,0,7,22.108078,0,0,0,38,1,4,1,2,1,2019,1,1,9,0,44,45,15,1,0,1,0,18.836887,18.836887,0,0,0,0,0,0,0,0,1,1,0,4.0104828,0,0,0,54.099998,59.110001,55.189999,54.259998,6,1,1,0,0,11,5,1,1495.5,704165.88,0,0,3983.335 -2506,3086,5647,-9,5645,5646,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.5487,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,5,1,1495.5,704165.88,0,0,3983.335 -2506,3086,5648,-9,5645,5646,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.13733,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1495.5,704165.88,0,0,3983.335 -2507,3087,5649,-9,5650,5651,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.0705,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,4,1,791,703873.81,0,0,4957.2544 -2507,3087,5650,5651,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,0,4,7.7216468,7.9621859,0,2,0,-9,18,0,-14,-5.8327436,0,0,1,58,2,4,1,2,3,2019,1,1,1,0,27,21,15,1,0,1,0,12.16135,12.16135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.849998,57.16,56.150002,7,3,4,0,0,8,4,1,791,703873.81,0,0,4957.2544 -2507,3087,5651,5650,-9,-9,1,1,1,58,1,0,3,0,2,-9,1,1,0,0,4,8.8607836,8.9116383,0,2,0,-9,18,0,14,52.303028,0,0,0,44,1,4,1,2,2,2019,1,2,6,0,45,30,15,1,0,1,0,16.434185,16.434185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,63.48,51.849998,5,3,4,0,0,8,4,1,791,703873.81,0,0,4957.2544 -2508,3088,5652,-9,5653,5655,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.6936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,643.75,181917.72,0,0,5172.2583 -2508,3088,5653,5655,-9,-9,1,1,0,29,1,0,2,0,2,-9,2,1,0,0,4,8.3299665,8.4333601,0,2,0,-9,7,0,-4,-22.468452,0,1,1,33,2,4,1,2,2,2019,1,2,5,0,46,38,15,1,0,1,0,10.608585,10.608585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.330002,51.02,48.869999,58.549999,6,1,1,0,0,10,5,1,643.75,181917.72,0,0,5172.2583 -2508,3088,5654,-9,5653,5655,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.1932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,643.75,181917.72,0,0,5172.2583 -2508,3088,5655,5653,-9,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,0,4,9.5214138,9.3569374,0,2,0,-9,7,0,4,10.015938,0,0,0,29,2,4,1,2,2,2019,1,1,10,0,45,45,15,1,0,1,0,26.018675,26.018675,0,0,0,0,0,0,0,0,1,1,0,7.0253882,0,0,0,48.869999,58.549999,56.330002,51.02,6,1,1,0,0,10,5,1,643.75,181917.72,0,0,5172.2583 -2509,3089,5656,5657,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,1,2,0,6.4996457,6.5029483,1,0,-9,10,0,-13,86.962479,0,0,0,86,2,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,6.0040011,0,0,0,0,0,1,1,0,3.4298096,6.5886621,0,0,49.419998,19.32,61.689999,15.28,6,1,1,0,0,1,2,0,769.5,1237049.8,0,0,2947.1135 -2509,3089,5657,5656,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,1,2,0,6.6803489,6.3769445,1,0,-9,10,0,13,-48.94735,0,0,0,73,1,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3679166,6.4049063,0,0,61.689999,15.28,49.419998,19.32,6,1,1,0,0,1,2,0,769.5,1237049.8,0,0,2947.1135 -2510,3090,5658,5659,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,5,9.3186855,9.5904179,7.59342,1,0,-9,41,0,2,36.188519,0,0,0,60,3,4,1,3,3,2019,1,2,7,0,42,45,15,1,0,1,0,26.517347,26.517347,0,0,0,0,0,0,0,0,0,0,0,0,7.813386,0,0,57.060001,57.759998,60.119999,54.799999,1,1,1,0,0,9,5,1,298,1404025.3,0,0,5322.0273 -2510,3090,5659,5658,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,0,4,7.0137625,7.1788936,0,1,0,-9,41,0,-2,-40.275227,0,0,0,62,2,5,1,3,3,2019,1,1,6,0,24,20,15,1,0,1,0,5.5365887,5.5365887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,57.060001,57.759998,6,1,1,0,0,9,5,1,298,1404025.3,0,0,5322.0273 -2511,3091,5660,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,0,4,7.9123225,8.070817,5.3517046,3,0,0,0,-9,0,-1023.7208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,55,0,15,1,0,-9,0,4.4213724,4.4213724,0,0,0,0,0,0,0,0,0,0,0,5.5965438,4.895391,0,0,59.139999,52.5,-9,-9,7,1,1,0,0,10,3,1,614,476544.59,0,0,1044.0033 -2512,3092,5661,5662,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,1,3,0,5.7775955,5.8401151,1,0,-9,59,0,0,79.734039,0,0,0,77,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,5.084106,0,0,0,0,0,1,1,0,0,6.1365528,0,0,56.25,21.559999,58.919998,48.59,6,1,1,0,0,10,3,1,1336.5,1211003.3,0,0,2229.6892 -2512,3092,5662,5661,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.8021874,7.8536229,1,0,-9,59,0,0,159.05901,0,0,0,77,3,3,3,-9,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.6027246,0,1,58.919998,48.59,56.25,21.559999,6,1,1,0,0,10,3,1,1336.5,1211003.3,0,0,2229.6892 -2513,3093,5663,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,1,2,0,7.0477729,6.8711309,3,0,0,0,-9,0,-991.23737,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5204763,0,0,56.990002,27.030001,-9,-9,5,1,1,0,0,11,2,1,658,186612.48,0,0,1566.1255 -2514,3094,5664,5665,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,14,0,0,0,0,63,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,3.1926277,.85292655,0,0,0,4.7875209,0,1,1,0,0,0,0,0,53.990002,26.440001,61.189999,42.110001,6,1,1,0,0,4,1,0,944,-45105.41,0,0,1798.0283 -2514,3094,5665,5664,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,22,0,-14,0,0,0,0,77,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.0074327,0,0,1,61.189999,42.110001,53.990002,26.440001,6,1,1,0,0,4,1,0,944,-45105.41,0,0,1798.0283 -2515,3095,5666,5667,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,5,0,5.6835508,5.5835981,1,0,-9,40,0,8,83.695259,0,0,0,64,2,3,3,3,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5431857,5.6217241,0,0,49.169998,58.560001,57.330002,53.459999,7,1,1,0,0,5,3,1,626,608662.5,0,0,2118.4746 -2515,3095,5667,5666,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,7.9770861,7.9399199,1,0,-9,40,0,-8,104.83978,0,0,0,72,3,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3692083,7.6000347,0,0,57.330002,53.459999,49.169998,58.560001,6,1,1,0,0,5,3,1,626,608662.5,0,0,2118.4746 -2516,3096,5668,5669,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,6.8888674,7.0771208,1,0,-9,25,0,2,65.470238,0,0,0,73,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0702009,6.9838409,0,0,52.810001,49.130001,57.709999,38.639999,6,1,1,0,0,9,3,1,665.5,820084.44,0,0,2535.7314 -2516,3096,5669,5668,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,7.7381601,7.6961622,1,0,-9,25,0,-2,21.293661,0,0,0,75,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7679949,0,0,57.709999,38.639999,52.810001,49.130001,7,1,1,0,0,9,3,1,665.5,820084.44,0,0,2535.7314 -2517,3097,5670,5671,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.6759701,8.4916515,1,0,-9,34,0,1,34.259525,0,0,0,70,2,2,3,-9,-9,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1262941,8.4880714,0,0,59.84,29.309999,47.610001,26.9,6,1,1,0,0,5,5,1,1203.5,2076847.8,0,0,5576.0596 -2517,3097,5671,5670,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,8.3199224,7.9072313,1,0,-9,34,0,-1,79.078056,0,0,0,71,1,4,3,-9,-9,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,7.0493121,0,0,0,0,0,1,1,0,3.7036421,7.8163276,0,0,47.610001,26.9,59.84,29.309999,5,1,1,0,0,5,5,1,1203.5,2076847.8,0,0,5576.0596 -2518,3098,5672,5673,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,3,8.2411108,8.0876312,0,1,0,-9,25,0,-1,18.199427,0,0,0,47,3,2,1,3,3,2019,1,2,12,1,38,37,15,1,0,1,0,10.648349,10.648349,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.32,50.220001,44.939999,49.91,4,1,1,0,0,6,4,1,509.5,528105.06,0,0,3112.3386 -2518,3098,5673,5672,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,0,2,8.1225672,8.1695852,0,1,0,-9,25,0,1,-140.082,0,0,0,46,3,3,1,3,3,2019,1,1,12,0,47,44,15,1,0,1,0,9.9887009,9.9887009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.939999,49.91,58.32,50.220001,5,1,1,0,1,6,4,1,509.5,528105.06,0,0,3112.3386 -2518,3099,5674,-9,5672,5673,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.7702465,7.8790565,0,3,0,0,0,-9,0,-1013.7597,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,37,36,15,1,1,-9,1,8.1549139,8.1549139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,-9,-9,5,1,1,0,0,6,3,1,94,-59567.574,0,0,1508.4043 -2518,3100,5675,-9,5672,5673,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.9590077,7.8912225,0,3,0,0,0,-9,0,-929.30487,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,42,43,15,1,0,-9,1,6.1832352,6.1832352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,6,1,1,0,0,6,3,1,123,-27692.457,0,0,1005.6794 -2519,3101,5676,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,2,0,5.636107,5.5871992,3,0,0,0,-9,0,-1013.2003,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.6100364,5.7470398,0,0,47.259998,32.799999,-9,-9,5,1,1,0,0,2,2,0,1430,195100.94,0,0,1390.1798 -2520,3102,5677,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,1,1,0,0,4,8.2467766,8.5103607,7.9667573,3,0,0,0,-9,0,-1054.442,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,22,24,15,1,0,-9,0,20.218653,20.218653,0,0,0,0,0,0,0,0,0,0,0,8.0632505,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,5,1,182,1525357.6,0,0,3179.8157 -2521,3103,5678,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,8,3,1,1,2,0,3.6228924,3.4809487,3,0,0,0,-9,0,-1029.3489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2891967,4.0323939,0,0,38.639999,32.389999,-9,-9,4,1,1,0,0,6,1,0,1017,270673.25,0,0,1144.2896 -2522,3104,5679,5680,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,8.8788214,8.752964,0,1,0,-9,28,0,-5,-67.283577,0,0,0,53,2,3,1,3,3,2019,1,1,8,0,37,37,15,1,0,1,0,17.699892,17.699892,0,0,0,0,0,0,0,0,0,0,0,7.3427601,0,0,0,57.16,56.150002,61.279999,46.169998,6,1,1,0,0,2,5,1,381.5,942971.75,0,0,3883.7773 -2522,3104,5680,5679,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.3640242,8.4013357,0,1,0,-9,28,0,5,41.183868,0,0,0,48,1,4,1,2,3,2019,1,2,6,0,52,40,15,1,0,1,0,8.6403732,8.6403732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,57.16,56.150002,6,1,1,0,0,2,5,1,381.5,942971.75,0,0,3883.7773 -2522,3105,5681,-9,5679,5680,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,5,7.6898665,7.5629773,0,3,0,0,0,-9,0,-975.48547,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,3,0,37,37,15,1,0,-9,1,7.2219253,7.2219253,0,0,0,0,0,0,0,0,0,0,0,4.4159613,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,2,3,1,357,-125909.88,0,0,1229.1151 -2523,3106,5682,-9,5685,5683,6,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1093.2799,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,3,1,1385,551920.69,0,0,2148.5796 -2523,3106,5683,5685,-9,-9,1,1,1,43,1,2,2,0,1,-9,2,1,0,0,5,8.5991545,8.3835735,0,2,0,-9,4,0,15,117.99464,0,0,0,28,1,3,3,2,3,2019,2,4,7,0,16,48,15,1,0,3,0,33.285667,33.285667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.279999,62.599998,51.900002,53.610001,2,2,3,0,0,4,3,1,1385,551920.69,0,0,2148.5796 -2523,3106,5684,-9,5685,5683,5,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.9442,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,3,1,1385,551920.69,0,0,2148.5796 -2523,3106,5685,5683,-9,-9,4,1,0,28,1,2,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-15,48.180008,0,1,1,43,1,5,1,-9,-9,2019,3,1,6,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.900002,53.610001,46.279999,62.599998,6,2,3,0,0,4,3,1,1385,551920.69,0,0,2148.5796 -2524,3107,5686,5687,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,0,4,8.2321186,7.9939923,0,1,0,-9,3,0,5,-46.955101,0,0,0,29,2,3,1,2,2,2019,1,2,13,1,42,38,15,1,0,1,0,11.028517,11.028517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,56.700001,49.630001,54.220001,4,1,1,0,0,9,4,1,849.5,160344.38,0,0,2158.3782 -2524,3107,5687,5686,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,3,7.7382231,7.4095087,0,1,0,-9,3,0,-5,80.115189,0,1,1,34,2,4,1,-9,-9,2019,1,1,11,0,38,38,15,1,0,1,0,7.282897,7.282897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,54.220001,35,56.700001,6,1,1,0,0,9,4,1,849.5,160344.38,0,0,2158.3782 -2525,3108,5688,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,0,3,7.6731949,7.5111904,0,4,0,0,0,-9,0,-940.54858,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,6,6,15,1,0,-9,0,42.517708,42.517708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,47.919998,-9,-9,6,3,4,0,1,8,2,0,598.5,1078920.3,0,0,2323.073 -2525,3108,5689,-9,5688,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1037.152,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.360001,58.529999,-9,-9,5,4,2,0,0,8,2,0,598.5,1078920.3,0,0,2323.073 -2526,3109,5690,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,2,6.8475118,6.7657642,0,3,0,0,0,-9,0,-1005.3907,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,15,15,15,1,0,-9,0,6.34272,6.34272,0,0,0,0,0,0,0,2,1,1,0,4.5383525,0,.58077848,3,55.02,25.139999,-9,-9,5,1,1,0,1,7,2,1,155,129443.99,0,0,-659.38354 -2527,3110,5691,-9,-9,-9,1,1,1,22,2,0,0,1,1,-9,7,2,0,0,5,0,7.6387806,8.1588469,3,0,-9,0,-9,0,-1060.807,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3120546,0,0,0,49.650002,51.619999,-9,-9,7,1,1,0,0,11,3,0,1132,-126580.25,0,0,2109.3447 -2528,3111,5692,5693,-9,-9,2,1,0,61,1,0,0,0,2,-9,1,1,0,0,2,8.1238136,8.3735924,6.3689542,1,0,-9,10,0,1,-50.506062,0,0,0,60,2,5,1,2,-9,2019,1,1,15,4,0,45,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7738152,6.5725021,0,0,50.07,43.689999,35.57,66.07,6,1,1,0,0,7,5,1,558.5,1266015,0,0,5746.4658 -2528,3111,5693,5692,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,9.2309942,9.3113689,0,1,0,-9,34,0,-1,14.237905,0,0,0,61,2,2,1,2,2,2019,1,2,20,8,40,40,15,1,1,1,0,27.305597,27.305597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.57,66.07,50.07,43.689999,5,1,1,0,0,7,5,1,558.5,1266015,0,0,5746.4658 -2528,3112,5694,-9,5692,5693,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.1350145,7.8970704,0,3,0,0,0,-9,0,-951.5556,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,2,47,0,15,1,0,-9,1,6.4894314,6.4894314,0,0,0,0,0,0,0,0,0,0,0,3.408972,0,0,0,47.150002,56.66,-9,-9,6,1,1,0,0,7,4,1,724,1566.4491,0,0,1321.0769 -2529,3113,5695,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,0,4,8.2367992,8.2129698,0,1,0,-9,3,0,-5,-22.246456,0,0,0,-9,-9,-9,-9,1,2,2019,1,3,11,0,78,42,15,1,0,-9,0,5.2305961,5.2305961,0,0,0,0,0,0,0,0,0,0,0,2.0375082,0,0,0,51.77,58.57,55.790001,52.619999,6,1,1,0,0,9,5,1,401,727850.38,0,0,1745.9254 -2529,3114,5696,-9,5695,-9,2,1,0,21,2,0,0,0,2,1,2,1,0,0,4,7.8180766,8.4518471,7.1689057,3,0,0,0,-9,0,-943.62982,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,38,0,15,1,0,-9,1,7.7063551,7.7063551,0,0,0,0,0,0,0,0,0,0,0,7.8036366,0,0,0,49.41,58.279999,-9,-9,6,1,1,0,1,9,4,1,948,130510.25,0,0,1827.7832 -2529,3115,5697,-9,-9,-9,3,1,0,50,2,0,0,0,2,-9,2,1,0,0,4,8.2184515,8.0074749,0,1,0,-9,3,0,5,46.982422,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,8,0,41,42,15,1,0,-9,0,13.309738,13.309738,0,0,0,0,0,0,0,2,0,0,0,0,0,2.7027531,3,55.790001,52.619999,51.77,58.57,6,1,1,0,0,9,5,1,257,148358.09,0,0,2709.1118 -2530,3116,5698,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-991.36444,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.889999,31.969999,-9,-9,2,1,1,0,1,13,1,0,691,0,0,0,1550.1648 -2531,3117,5699,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,2,1,0,0,4,8.1628294,8.9005499,7.9672894,3,0,0,0,-9,0,-856.57245,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,27,29,15,1,0,-9,0,11.944883,11.944883,0,0,0,0,0,0,0,0,0,0,0,6.2985263,7.9111929,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,5,1,455,1799062.4,0,0,1187.6758 -2532,3118,5700,5701,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,6.8802085,6.5540476,1,0,-9,55,0,1,56.823677,0,0,0,74,3,3,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8108709,6.5333719,0,0,51.650002,44.349998,40.040001,45.189999,6,1,1,0,0,6,2,1,583.5,571368.88,0,0,1274.7114 -2532,3118,5701,5700,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,6.0789967,6.5757442,1,0,-9,55,0,-1,-1.258172,0,0,0,75,2,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3304119,0,0,40.040001,45.189999,51.650002,44.349998,6,1,1,0,0,6,2,1,583.5,571368.88,0,0,1274.7114 -2533,3119,5702,5703,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,0,4,7.4428535,7.3544955,0,1,0,-9,27,0,-1,20.715345,0,0,0,49,2,3,1,2,3,2019,1,2,10,0,24,24,15,1,0,1,0,7.7080956,7.7080956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.369999,54.799999,6,1,1,0,0,7,4,1,997.5,14461.498,0,0,2060.8752 -2533,3119,5703,5702,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.1194296,7.9240351,0,1,0,-9,27,0,1,-75.543083,0,0,0,48,3,4,1,3,3,2019,1,1,11,0,45,0,15,1,0,1,0,7.6901393,7.6901393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,57.16,56.150002,6,1,1,0,0,7,4,1,997.5,14461.498,0,0,2060.8752 -2533,3120,5704,-9,5702,5703,3,1,1,24,2,0,0,0,2,-9,1,1,0,0,4,8.2013216,8.1070204,0,3,0,0,0,-9,0,-1064.0393,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,7,4,1,188,27992.004,0,0,1036.3452 -2533,3121,5705,-9,5702,5703,4,1,1,22,2,0,0,0,3,-9,2,1,0,0,5,7.8378549,7.4621348,0,3,0,0,0,-9,0,-998.43414,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,40,15,1,0,-9,1,7.5015078,7.5015078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.66,54.860001,-9,-9,6,1,1,0,0,7,3,1,444,193287,0,0,539.48193 -2534,3122,5706,-9,5707,5708,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.6442,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,3,0,708,6825.7349,0,0,2712.3579 -2534,3122,5707,5708,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,7.7753859,7.8461847,0,2,0,-9,13,0,-1,-90.198151,0,0,1,39,1,3,1,3,3,2019,1,2,6,0,40,45,15,1,0,1,0,9.0585699,9.0585699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.900002,51.84,67.849998,37.91,7,2,3,0,0,5,3,0,708,6825.7349,0,0,2712.3579 -2534,3122,5708,5707,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,0,3,7.8920584,7.7191796,0,2,0,-9,13,0,1,-59.447788,0,0,0,38,1,3,1,2,2,2019,1,1,7,0,37,39,15,1,0,1,0,7.8729901,7.8729901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.849998,37.91,57.900002,51.84,6,2,3,0,0,5,3,0,708,6825.7349,0,0,2712.3579 -2535,3123,5709,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,2,7.8469262,7.6940737,0,3,0,0,0,-9,0,-927.93976,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,7.7343817,7.7343817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.619999,42.990002,-9,-9,6,1,1,0,0,10,3,1,268,85035.781,0,0,716.24182 -2536,3124,5710,5711,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.40133,8.7004232,0,1,0,-9,10,0,-2,-99.221054,0,0,0,57,2,3,1,2,3,2019,1,1,11,0,55,58,15,1,0,1,0,12.098008,12.098008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,49.459999,26.5,60.740002,5,1,1,0,0,7,5,0,533.5,1136096.5,0,0,3422.4072 -2536,3124,5711,5710,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.1970968,8.0808258,0,1,0,-9,37,0,2,25.855972,0,0,0,55,2,3,1,3,3,2019,1,2,27,12,44,47,15,1,1,1,0,10.701771,10.701771,0,0,0,0,0,0,0,7,0,0,0,0,0,8.3226833,3,26.5,60.740002,48.450001,49.459999,5,1,1,0,0,7,5,0,533.5,1136096.5,0,0,3422.4072 -2537,3125,5712,5713,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.9344311,9.1809683,0,1,0,-9,4,0,-4,-.29083654,0,0,0,59,2,4,1,-9,-9,2019,1,2,17,5,49,38,15,1,1,1,0,17.469704,17.469704,0,0,0,0,0,0,0,0,0,0,0,7.3710084,0,0,0,40.82,41.869999,50.650002,60.470001,3,1,1,0,0,5,5,1,441.5,1251656.5,0,0,4312.8496 -2537,3125,5713,5712,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.7336569,8.9940739,0,1,0,-9,4,0,4,88.996414,0,0,0,55,2,3,1,-9,-9,2019,1,1,12,3,50,51,15,1,0,1,0,13.999941,13.999941,0,0,0,0,0,0,0,2,0,0,0,2.8709004,0,0,3,50.650002,60.470001,40.82,41.869999,5,1,1,0,0,5,5,1,441.5,1251656.5,0,0,4312.8496 -2538,3126,5714,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,4,3,0,0,1,0,7.6031365,7.8666992,1,0,-9,34,0,1,107.30946,0,0,0,-9,-9,-9,-9,3,3,2019,3,2,32,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8468976,0,0,27.959999,43.029999,51,48,3,1,1,0,1,7,4,1,647,1013871.6,0,0,1740.0925 -2538,3127,5715,-9,-9,-9,2,1,1,62,2,0,0,0,2,-9,2,1,0,0,3,8.0833282,8.6321125,0,1,0,-9,36,0,-1,38.471188,0,0,0,-9,-9,-9,-9,-9,-9,2019,2,1,10,1,41,35,15,1,0,-9,0,10.056965,10.056965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,27.959999,43.029999,5,1,1,0,0,7,4,1,186,59330.723,0,0,1794.7324 -2539,3128,5716,-9,5718,5717,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,3,7.9606667,8.0562773,0,3,0,0,0,-9,0,-974.87476,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,18,18,15,1,0,-9,1,15.967064,15.967064,0,0,0,0,0,0,0,0,1,1,0,2.8375449,0,0,0,47,53,-9,-9,5,1,1,0,0,11,3,1,1931,20072.262,0,0,1292.8049 -2539,3129,5717,5718,-9,-9,3,1,1,59,1,0,0,0,2,-9,2,1,0,1,2,7.5405078,7.5374727,0,1,0,-9,9,0,-1,-94.776115,0,0,0,60,3,2,3,3,3,2019,2,2,12,0,30,31,15,1,0,4,0,8.9622097,8.9622097,0,0,0,0,0,0,0,96,1,1,0,6.1033573,0,121.12765,3,57.130001,32.560001,53.580002,25.809999,6,1,1,0,0,11,3,1,473.5,-9676.9648,0,0,3643.6157 -2539,3129,5718,5717,-9,-9,2,1,0,60,1,0,0,0,3,-9,4,3,0,0,2,0,7.4059744,7.3301206,1,0,-9,9,0,1,-79.878952,0,0,0,59,2,2,1,3,3,2019,3,3,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9715538,117.13058,3,53.580002,25.809999,57.130001,32.560001,7,1,1,0,0,11,3,1,473.5,-9676.9648,0,0,3643.6157 -2540,3130,5719,-9,-9,-9,1,1,0,34,3,0,0,0,1,-9,2,1,0,0,1,7.2491484,7.1408606,0,3,0,-9,0,-9,0,-1020.6268,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,20,0,15,1,1,-9,0,7.5892639,7.5892639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,50.689999,-9,-9,1,1,1,0,1,2,2,0,907,14583.249,0,0,791.21741 -2541,3131,5720,5721,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.5260916,8.4266033,0,1,0,-9,40,0,0,-21.401739,0,0,0,60,1,5,1,3,3,2019,1,1,15,4,30,32,15,1,1,1,0,18.988962,18.988962,0,0,0,0,0,0,0,0,0,0,0,9.1632786,0,0,0,35.25,55.369999,54.689999,57.470001,5,1,1,0,0,7,5,1,694.5,2597621,0,0,7210.2959 -2541,3131,5721,5720,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,5,7.9572587,8.2465277,0,1,0,-9,40,0,0,72.062653,0,0,0,60,2,3,1,3,3,2019,1,2,6,0,32,43,15,1,0,1,0,16.038652,16.038652,0,0,0,0,0,0,0,0,0,0,0,8.0987597,0,0,0,54.689999,57.470001,35.25,55.369999,6,1,1,0,0,7,5,1,694.5,2597621,0,0,7210.2959 -2542,3132,5722,-9,5724,5723,1,1,0,70,2,0,0,0,3,-9,4,3,0,0,3,0,8.4173498,8.1826582,3,0,0,0,-9,0,-1025.1028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,1,0,0,1,4.1033964,0,0,0,0,63.668381,74.5,1,1,0,1.4189936,8.0644979,71.446243,3,32.830002,45.720001,-9,-9,4,1,1,0,0,8,4,1,1033,1486664.5,0,0,3604.3027 -2542,3133,5723,5724,-9,-9,3,1,1,90,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-1,0,0,0,0,91,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5564547,0,0,0,55,45,53,44,6,1,1,0,0,8,1,1,1202.5,232243.8,0,0,752.52606 -2542,3133,5724,5723,-9,-9,2,1,0,91,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,1,0,0,0,0,90,3,3,3,-9,-9,2019,4,3,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,0,8,1,1,1202.5,232243.8,0,0,752.52606 -2543,3134,5725,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,5,8.9696379,9.1494226,0,3,0,0,0,-9,0,-966.29816,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,45,52,15,1,0,-9,0,19.722103,19.722103,0,0,0,0,0,0,0,2,0,0,0,7.1422977,0,6.6587887,3,57.060001,57.759998,-9,-9,6,1,1,0,0,6,5,1,382,21208.658,0,0,3533.3518 -2544,3135,5726,5727,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,9.3113031,8.9889612,0,1,0,-9,29,0,-4,-37.187382,0,0,0,66,2,4,3,2,2,2019,2,2,8,0,45,48,15,1,0,4,0,30.327431,30.327431,0,0,0,0,0,0,0,7,1,1,0,3.0063434,0,5.0017905,3,54.200001,57.490002,59.540001,48.41,6,1,1,0,0,4,5,1,848.5,380354.13,0,0,6509.1855 -2544,3135,5727,5726,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,8.3609333,8.1906919,1,0,-9,29,0,4,-24.56806,0,0,0,62,2,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1597147,8.4157171,0,3,59.540001,48.41,54.200001,57.490002,7,1,1,0,0,4,5,1,848.5,380354.13,0,0,6509.1855 -2545,3136,5728,5729,-9,-9,1,1,0,62,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,7,0,8,62.312557,0,0,0,54,2,2,1,3,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.57224,3,33.27,27.15,41.580002,52.860001,5,1,1,0,0,12,2,1,1270.5,262002.75,0,0,1074.072 -2545,3136,5729,5728,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,1,2,6.7567444,6.5780621,0,1,0,-9,7,0,-8,26.472128,0,0,0,62,3,2,3,3,2,2019,2,1,12,0,25,24,15,1,0,3,0,3.0088222,3.0088222,0,0,0,0,0,0,0,42,1,1,0,0,0,53.019741,3,41.580002,52.860001,33.27,27.15,5,1,1,0,0,12,2,1,1270.5,262002.75,0,0,1074.072 -2545,3137,5730,-9,5728,5729,3,1,1,38,2,0,0,0,1,-9,2,1,0,0,4,8.0006351,7.6356053,0,3,0,0,0,-9,0,-1011.6633,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,46,40,15,1,1,-9,1,7.6240296,7.6240296,0,0,0,0,0,0,0,2,1,1,0,0,0,4.8421297,3,32.490002,48.419998,-9,-9,3,1,1,0,0,12,3,1,570,190215.45,0,0,1200.8433 -2545,3138,5731,-9,5728,5729,4,1,1,37,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-971.24597,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,75.199997,21.120001,-9,-9,7,1,1,0,0,12,1,1,1325,9087.4473,0,0,464.48245 -2545,3139,5732,-9,5728,5729,5,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.9165974,8.2678957,0,3,0,0,0,-9,0,-1013.2465,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,26,11,50,37,15,1,1,-9,1,7.648663,7.648663,0,0,0,0,0,0,0,2,1,1,0,0,0,6.3058033,3,17.450001,66.57,-9,-9,3,1,1,0,0,12,4,1,49,-198258.73,0,0,1488.684 -2546,3140,5733,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-960.1582,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,30.9,-9,-9,5,1,1,0,0,6,1,1,1443,531757.13,0,0,2359.9458 -2547,3141,5734,5735,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,6,0,6,0,0,0,0,57,3,4,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,54,53,5,4,5,0,0,8,1,0,641,62354.535,0,0,1803.8818 -2547,3141,5735,5734,-9,-9,1,1,1,57,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-6,0,0,0,0,63,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.699495,1,54,53,50,47,6,4,5,0,0,8,1,0,641,62354.535,0,0,1803.8818 -2548,3142,5736,5737,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.7807436,8.6108656,0,1,0,-9,6,0,2,22.008726,0,0,0,49,2,4,1,3,2,2019,1,2,7,0,37,45,15,1,0,1,0,18.573631,18.573631,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.4814558,3,64.690002,31.799999,44.59,59.080002,6,1,1,0,0,6,5,1,2078.5,447273.44,0,0,2959.283 -2548,3142,5737,5736,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.9010735,7.8030343,0,1,0,-9,6,0,-2,-6.1931133,0,0,0,51,2,2,1,2,3,2019,1,1,10,0,23,23,15,1,0,1,0,14.269481,14.269481,0,0,0,0,0,0,0,7,0,0,0,0,0,10.777822,3,44.59,59.080002,64.690002,31.799999,6,1,1,0,0,6,5,1,2078.5,447273.44,0,0,2959.283 -2548,3143,5738,-9,5737,5736,3,1,0,21,2,0,0,0,2,-9,3,3,0,0,3,6.3082418,6.4932737,0,3,0,0,0,-9,0,-1006.9876,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.20129779,0,13.092004,3,34.34,28.66,-9,-9,3,1,1,1,1,6,2,1,144,0,0,0,-22.550188 -2549,3144,5739,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-939.40369,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,40,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,-9,-9,6,1,1,0,0,9,1,0,286,6765.1846,0,0,2458.4016 -2550,3145,5740,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,1,3,6.8489532,7.4971275,6.5703764,4,0,0,0,-9,0,-862.02319,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,6,0,15,1,0,-9,0,20.695944,20.695944,0,0,0,0,0,0,0,120,1,1,0,6.2193613,0,110.07814,3,58.32,50.220001,-9,-9,6,1,1,0,0,1,2,0,1581,406525.75,0,0,2970.488 -2550,3146,5741,-9,5740,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-992.07947,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,39.73,-9,-9,6,1,1,0,0,1,2,0,189,33973.789,0,0,0 -2551,3147,5742,5743,-9,-9,2,1,0,47,1,0,0,0,1,-9,1,1,0,0,3,0,0,0,1,0,-9,1,-9,-12,-115.57219,-9,0,0,59,2,4,1,2,2,2019,1,1,6,0,39,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1902947,0,0,0,63.66,32.900002,36.790001,62.549999,7,1,1,0,0,10,5,1,774.5,996621.31,0,0,4215.5283 -2551,3147,5743,5742,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,9.2785769,9.1388245,0,1,0,-9,1,-9,12,57.157143,-9,0,0,47,1,3,1,2,3,2019,1,2,18,7,50,0,15,1,1,1,0,19.609926,19.609926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.790001,62.549999,63.66,32.900002,4,1,1,0,0,10,5,1,774.5,996621.31,0,0,4215.5283 -2552,3148,5744,-9,-9,-9,1,1,0,90,2,0,0,0,3,-9,4,3,0,0,1,0,3.9599526,4.0931644,3,0,0,0,-9,0,-1130.0278,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,8.9518404,0,0,0,2.6727562,107.68229,0,1,1,0,4.3819132,4.1183896,0,0,45.450001,13.09,-9,-9,3,1,1,0,0,2,2,0,467,-125435.19,0,0,852.01312 -2553,3149,5745,-9,5746,5748,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.53467,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,9,4,0,1249,413688.28,0,0,3674.2981 -2553,3149,5746,5748,-9,-9,1,1,0,33,1,1,2,0,2,-9,2,1,0,0,4,7.7812982,7.8530273,0,2,0,-9,5,0,-3,-119.16203,0,0,1,36,1,4,1,-9,-9,2019,1,2,6,0,22,20,15,1,0,1,0,13.803619,13.803619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,9,4,0,1249,413688.28,0,0,3674.2981 -2553,3149,5747,-9,5746,5748,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.49469,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,4,0,1249,413688.28,0,0,3674.2981 -2553,3149,5748,5746,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,8.2942562,8.5273056,0,2,0,-9,5,0,3,-28.467379,0,0,0,33,2,4,1,-9,-9,2019,1,1,9,0,40,46,15,1,0,1,0,17.261511,17.261511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,58.150002,52.91,5,3,4,0,0,9,4,0,1249,413688.28,0,0,3674.2981 -2554,3150,5749,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,4,8.0055637,8.1366978,0,3,0,0,0,-9,0,-846.29297,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,4,39,39,15,1,1,-9,0,10.181279,10.181279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.34,56.400002,-9,-9,5,1,1,0,0,11,4,1,993,90995.438,0,0,1895.8936 -2555,3151,5750,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1002.2248,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,12.242523,0,0,1,1,0,0,0,0,0,52.040001,19.74,-9,-9,5,1,1,0,0,6,1,0,399,187163.34,0,0,-100.66704 -2556,3152,5751,-9,-9,-9,1,1,0,77,2,0,0,0,2,-9,4,3,0,0,3,0,7.2794003,6.97686,3,0,0,0,-9,0,-941.66669,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8537574,7.3623466,0,0,63.029999,32.939999,-9,-9,6,1,1,0,0,13,2,1,714,306428.03,0,0,1437.9108 -2557,3153,5752,5755,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,0,5,8.8395844,8.9368372,6.4524994,2,0,-9,20,0,-3,31.486155,0,0,0,51,1,4,1,1,1,2019,1,1,19,8,30,25,15,1,1,1,0,31.752132,31.752132,0,0,0,0,0,0,0,0,1,1,0,6.7439456,0,0,0,46.849998,60.98,54.200001,57.490002,5,1,1,0,0,8,5,1,1203.75,5235891,0,0,6015.9912 -2557,3153,5753,-9,5752,5755,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.4286,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,1203.75,5235891,0,0,6015.9912 -2557,3153,5754,-9,5752,5755,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1135.6791,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,5,1,1203.75,5235891,0,0,6015.9912 -2557,3153,5755,5752,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,9.0088291,9.3103638,0,2,0,-9,20,0,3,-21.529551,0,0,0,48,1,5,1,1,1,2019,1,2,9,0,85,40,15,1,0,1,0,13.440078,13.440078,0,0,0,0,0,0,0,0,1,1,0,6.3124571,0,0,0,54.200001,57.490002,46.849998,60.98,6,1,1,0,0,8,5,1,1203.75,5235891,0,0,6015.9912 -2558,3154,5756,5760,-9,-9,1,1,0,48,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,13,0,3,-21.550486,0,0,0,45,1,5,1,1,1,2019,3,2,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.23,57.099998,57.060001,57.759998,6,2,3,0,0,9,4,1,455.20001,427084.28,0,0,10002.897 -2558,3154,5757,-9,5756,5760,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-830.50861,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,4,1,455.20001,427084.28,0,0,10002.897 -2558,3154,5758,-9,5756,5760,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.8042,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,4,1,455.20001,427084.28,0,0,10002.897 -2558,3154,5759,-9,5756,5760,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.8909,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,9,4,1,455.20001,427084.28,0,0,10002.897 -2558,3154,5760,5756,-9,-9,2,1,1,45,1,0,3,0,1,-9,2,1,0,0,5,8.8270473,8.8888788,0,2,0,-9,13,0,-3,51.815853,0,0,0,48,2,3,3,3,2,2019,2,1,9,0,37,39,15,1,0,3,0,20.517885,20.517885,0,0,0,0,0,0,0,0,1,1,0,9.320673,0,0,0,57.060001,57.759998,38.23,57.099998,6,2,3,0,0,9,4,1,455.20001,427084.28,0,0,10002.897 -2559,3155,5761,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,0,3,7.9124689,8.4386663,4.8211789,2,0,-9,6,0,-1,125.82705,0,0,1,-9,-9,-9,-9,2,2,2019,1,3,14,1,40,45,15,1,0,-9,0,10.826013,10.826013,0,0,0,0,0,0,0,0,1,1,0,5.3411312,0,0,0,33.099998,55.16,40.830002,59.68,6,1,1,0,0,5,4,0,214,304007.72,0,0,2276.9705 -2559,3156,5762,-9,-9,-9,3,1,0,35,2,0,1,0,2,-9,2,1,0,0,4,8.4080887,8.3361216,0,2,0,-9,6,0,1,93.025352,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,16,5,45,44,15,1,1,-9,0,11.367129,11.367129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.830002,59.68,33.099998,55.16,5,1,1,0,0,5,4,0,5980,93652.422,0,0,2521.1279 -2560,3157,5763,5764,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,1,2,7.9079876,7.7771773,0,1,0,-9,10,0,1,-145.08659,0,0,0,61,2,3,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,7.2279663,7.2279663,0,0,0,0,0,0,0,0,1,1,0,4.5094967,0,0,0,52.52,29.959999,44.189999,58.009998,5,1,1,0,0,7,4,1,874,-38653.41,0,0,2619.9619 -2560,3157,5764,5763,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.9772739,8.0791912,0,1,0,-9,10,0,-1,-44.258492,0,0,0,62,2,2,1,3,3,2019,1,1,11,0,38,38,15,1,0,1,0,9.9000454,9.9000454,0,0,0,0,0,0,0,2,1,1,0,4.9181652,0,.9693628,2,44.189999,58.009998,52.52,29.959999,5,1,1,0,0,7,4,1,874,-38653.41,0,0,2619.9619 -2561,3158,5765,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,2,0,6.2149773,6.1025915,3,0,0,0,-9,0,-1101.1145,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.6143513,0,9.567584,0,0,1,1,0,0,6.377357,0,0,50.330002,26.15,-9,-9,5,1,1,0,0,9,2,0,138,159986.5,0,0,378.17215 -2562,3159,5766,5767,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,52,0,-1,0,0,0,0,78,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,7.7940335,125.5781,0,0,0,62.148705,0,1,1,0,0,0,0,0,53.060001,21.66,60.68,35.380001,5,1,1,0,0,7,1,1,1011,763532.25,0,0,2478.0664 -2562,3159,5767,5766,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,1,0,0,0,0,77,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,.010832431,9.0267811,0,0,0,37.522469,71.5,1,1,0,0,0,81.539406,2,60.68,35.380001,53.060001,21.66,5,1,1,0,1,7,1,1,1011,763532.25,0,0,2478.0664 -2563,3160,5768,-9,-9,5769,1,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.8796792,7.7994213,0,3,0,0,0,-9,0,-904.9173,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,39,0,15,1,0,-9,1,6.2389169,6.2389169,0,0,0,0,0,0,0,0,1,1,0,2.9572878,0,0,0,18.84,56.529999,-9,-9,6,1,1,0,0,4,3,0,386,29510.123,0,0,689.00604 -2563,3161,5769,-9,-9,-9,2,1,1,70,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-894.68976,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,3.2455914,0,0,0,7,1,1,0,6.298758,0,8.7785559,3,38.98,30.91,-9,-9,4,1,1,0,0,4,1,0,828,-72679.531,0,0,2380.7529 -2564,3162,5770,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,14,0,-2,-100.60091,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,19,7,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.831811,0,0,0,35.57,66.07,46.799999,57.029999,5,1,1,0,0,8,5,1,731,73300.641,0,0,11.434139 -2564,3163,5771,-9,-9,-9,2,1,1,49,2,0,0,0,1,-9,1,1,0,0,3,9.7238665,9.9642944,0,1,0,-9,2,0,2,31.651697,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,15,3,60,55,15,1,0,-9,0,31.367876,31.367876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.799999,57.029999,35.57,66.07,4,1,1,0,0,8,5,1,65,512102.38,0,0,9794.54 -2565,3164,5772,5773,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,9,0,0,0,0,61,1,4,3,-9,3,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,40.369999,51.380001,7,1,1,0,0,10,1,1,556.5,190127.94,0,0,824.53638 -2565,3164,5773,5772,-9,-9,1,1,0,61,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,36,0,0,0,0,0,0,70,3,4,3,3,2,2019,4,2,14,2,0,45,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.369999,51.380001,60.119999,54.799999,5,1,1,1,1,10,1,1,556.5,190127.94,0,0,824.53638 -2566,3165,5774,5775,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,5.4330125,5.8688154,1,0,-9,8,0,-4,37.129978,0,0,0,73,2,2,3,2,2,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7394526,5.4651399,0,0,44.619999,57.73,35.740002,39.610001,6,1,1,0,0,9,4,1,515.5,2139227.3,0,0,3807.8403 -2566,3165,5775,5774,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,8.5586987,8.7382202,1,0,-9,8,0,4,147.95523,0,0,0,69,2,4,3,2,2,2019,4,2,24,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9200487,8.5965319,0,0,35.740002,39.610001,44.619999,57.73,3,1,1,0,0,9,4,1,515.5,2139227.3,0,0,3807.8403 -2567,3166,5776,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-998.22632,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,28.475647,0,0,0,0,0,0,1,1,0,4.1973505,0,0,0,32.849998,40.939999,-9,-9,5,1,1,0,0,9,1,0,253,-73466.875,0,0,176.27542 -2568,3167,5777,-9,-9,-9,1,1,1,89,3,0,0,0,1,-9,4,3,0,0,3,0,5.5405312,5.3012285,3,0,0,0,-9,0,-1084.1119,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4840961,5.1766033,0,0,46.580002,47.540001,-9,-9,6,2,3,0,0,8,2,1,390,473973.97,0,0,684.3808 -2568,3168,5778,5779,-9,-9,3,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,8.1384821,8.0700779,6.9184499,1,0,-9,6,0,12,67.567284,0,0,0,59,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1684113,6.6731901,0,0,58.150002,52.91,40.830002,59.68,6,2,3,0,0,8,4,1,1173,1706452.8,0,0,3346.1748 -2568,3168,5779,5778,-9,5777,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,6.8234916,6.8506064,0,1,0,-9,6,0,-12,-65.12291,0,0,0,71,1,4,3,-9,1,2019,2,3,16,5,14,16,15,1,1,4,0,6.6709795,6.6709795,0,0,0,0,0,0,0,14.5,1,1,0,4.4960856,0,18.820082,3,40.830002,59.68,58.150002,52.91,5,4,2,0,0,8,4,1,1173,1706452.8,0,0,3346.1748 -2569,3169,5780,5781,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,0,8.5155144,8.5590563,1,0,-9,38,0,1,-52.537418,0,0,0,59,1,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2940173,8.2886953,0,0,54.200001,57.490002,54.790001,55.860001,6,1,1,0,0,11,4,1,705,1741639.1,0,0,2598.448 -2569,3169,5781,5780,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,38,0,-1,180.73521,0,0,0,60,1,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3209548,0,0,0,54.790001,55.860001,54.200001,57.490002,6,1,1,0,0,11,4,1,705,1741639.1,0,0,2598.448 -2569,3170,5782,-9,5780,5781,3,1,0,22,2,0,0,0,1,1,2,1,0,0,4,7.0158043,6.9555163,0,3,0,0,0,-9,0,-849.67719,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,25,0,15,1,0,-9,1,5.8207192,5.8207192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,11,2,1,818,45391.418,0,0,73.886017 -2569,3171,5783,-9,5780,5781,4,1,0,21,2,0,0,0,2,0,7,2,0,0,1,6.0136199,6.2365813,0,3,0,0,0,-9,0,-1062.502,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,29,11,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.24,48.66,-9,-9,2,1,1,0,0,11,2,1,599,150946.52,0,0,81.714561 -2570,3172,5784,-9,5786,5787,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.9762,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,5,1,620,142335.78,0,0,4226.54 -2570,3172,5785,-9,5786,5787,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.18921,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,5,1,620,142335.78,0,0,4226.54 -2570,3172,5786,5787,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,0,3,8.8052082,9.2724924,0,2,0,-9,13,0,-1,-34.596233,0,0,1,34,2,5,1,3,2,2019,1,1,23,9,46,37,15,1,1,1,0,22.153526,22.153526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,43.580002,40.27,50.5,4,2,3,0,0,6,5,1,620,142335.78,0,0,4226.54 -2570,3172,5787,5786,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,0,5,8.2819052,8.5517616,0,2,0,-9,13,0,1,173.65121,0,0,0,33,1,3,1,3,2,2019,1,2,8,1,43,41,15,1,0,1,0,14.746995,14.746995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.27,50.5,37.75,43.580002,7,2,3,0,0,6,5,1,620,142335.78,0,0,4226.54 -2571,3173,5788,5789,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,2,8.2584028,8.3039045,0,1,0,-9,6,0,-12,77.500755,0,1,1,40,2,4,1,2,2,2019,1,2,17,6,39,39,15,1,1,1,0,10.781821,10.781821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.200001,46.330002,43.419998,62.330002,5,1,1,0,0,2,5,1,177,2382499,0,0,4394.0229 -2571,3173,5789,5788,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.9861231,8.9068823,0,1,0,-9,6,0,12,14.907603,0,0,0,28,1,2,1,-9,-9,2019,1,1,9,0,40,38,15,1,0,1,0,22.62464,22.62464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.419998,62.330002,38.200001,46.330002,5,1,1,0,0,2,5,1,177,2382499,0,0,4394.0229 -2572,3174,5790,5791,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.3640795,8.6802025,0,1,0,-9,28,0,-10,-178.46158,0,0,0,65,2,3,1,2,2,2019,1,1,10,1,40,50,15,1,0,1,0,17.549622,17.549622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,49,58.470001,44.689999,5,1,1,0,0,11,5,1,1805,656518.06,0,0,3947.1265 -2572,3174,5791,5790,5792,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,3,7.7073879,8.1142035,0,1,0,-9,28,0,10,86.85379,0,0,0,55,2,3,1,2,1,2019,1,2,11,0,50,48,15,1,0,1,0,6.1659455,6.1659455,0,0,0,0,0,0,0,2,1,1,0,7.0366869,0,1.7387092,3,58.470001,44.689999,50,49,6,1,1,0,0,11,5,1,1805,656518.06,0,0,3947.1265 -2572,3175,5792,-9,-9,-9,3,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-955.54169,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,11,1,1,438,-122281.33,0,0,501.09592 -2573,3176,5793,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,5,0,6.5716238,6.7391663,3,0,0,0,-9,0,-1044.9254,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2422676,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,10,2,0,416,122978.97,0,0,-507.01782 -2574,3177,5794,5795,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.6628084,6.7032571,1,0,-9,49,0,0,130.70288,0,0,0,67,2,4,3,2,2,2019,4,2,23,11,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8261275,0,0,38.5,44.290001,55.59,47.450001,3,1,1,0,0,6,2,1,220.5,513185.31,0,0,1556.9175 -2574,3177,5795,5794,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,5.6758528,5.4173303,1,0,-9,49,0,0,-83.946022,0,0,0,67,2,3,3,2,1,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4202156,0,0,55.59,47.450001,38.5,44.290001,6,1,1,0,0,6,2,1,220.5,513185.31,0,0,1556.9175 -2575,3178,5796,5797,-9,-9,1,1,0,54,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,20,0,6,-58.357788,0,0,0,48,3,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.0893159,3,57.330002,53.459999,52.380001,47.57,6,1,1,0,0,5,3,1,557,-6108.9873,0,0,2217.8765 -2575,3178,5797,5796,-9,-9,2,1,1,48,1,0,1,0,3,-9,2,1,0,0,4,8.559432,8.3789263,0,2,0,-9,9,0,-6,62.614967,0,0,0,54,2,3,3,-9,-9,2019,2,1,7,0,48,43,15,1,0,3,0,10.856569,10.856569,0,0,0,0,0,0,0,7,1,1,0,3.3087523,0,0,3,52.380001,47.57,57.330002,53.459999,5,1,1,0,0,5,3,1,557,-6108.9873,0,0,2217.8765 -2575,3178,5798,-9,5796,5797,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,5,6.6449022,6.8758636,0,2,0,0,0,-9,0,-983.16058,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.66,56.939999,-9,-9,7,1,1,0,0,5,3,1,557,-6108.9873,0,0,2217.8765 -2575,3179,5799,-9,5796,5797,4,1,0,24,2,0,1,0,2,-9,2,1,0,0,4,8.0400152,7.6949077,0,3,0,-9,0,-9,0,-1099.9198,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,0,15,1,0,-9,1,6.4367957,6.4367957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,3,1,222,-39015.438,0,0,10.596413 -2576,3180,5800,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,0,4,0,7.024395,6.6853895,3,0,0,0,-9,0,-927.52301,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3645015,0,0,52.830002,48.43,-9,-9,6,1,1,0,0,1,2,1,707,853624.81,0,0,2820.7908 -2577,3181,5801,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,2,1,0,0,2,7.922039,8.1421013,0,3,0,0,0,-9,0,-1097.7708,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,37,37,15,1,0,-9,0,9.6937447,9.6937447,0,0,0,0,0,0,0,7,0,0,0,2.6349471,0,6.8380742,3,58.970001,26.09,-9,-9,6,1,1,0,0,13,4,1,530,-102935.17,0,0,1508.506 -2578,3182,5802,5803,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,1,3,0,6.4119091,6.0840693,1,0,-9,58,0,1,59.056591,0,0,0,76,2,4,3,-9,-9,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1046443,6.342701,0,0,58.150002,12.73,50.259998,51.869999,6,1,1,0,0,10,3,1,614.5,1164904.3,0,0,4433.1714 -2578,3182,5803,5802,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,8.3687267,8.1240349,1,0,-9,58,0,-1,75.144997,0,0,0,77,3,3,3,-9,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,0,1.7488668,0,0,0,0,14.5,1,1,0,7.245151,8.5564547,18.443842,1,50.259998,51.869999,58.150002,12.73,7,1,1,0,0,10,3,1,614.5,1164904.3,0,0,4433.1714 -2579,3183,5804,-9,5807,5806,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.9462,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,0,585.75,486030.81,0,0,2605.1746 -2579,3183,5805,-9,5807,5806,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.2054,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,2,0,585.75,486030.81,0,0,2605.1746 -2579,3183,5806,5807,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,0,4,7.6792736,7.7194023,0,2,0,-9,19,0,5,-28.173323,0,0,0,36,3,5,3,2,2,2019,2,2,9,1,40,60,15,1,0,3,0,6.7214503,6.7214503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,62.389999,56.709999,5,2,3,0,0,8,2,0,585.75,486030.81,0,0,2605.1746 -2579,3183,5807,5806,-9,-9,2,1,0,36,1,0,2,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,19,0,-5,140.86005,0,0,1,41,2,4,1,3,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,52,55,7,2,3,0,0,8,2,0,585.75,486030.81,0,0,2605.1746 -2580,3184,5808,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,5,0,5.3315353,5.3468833,3,0,0,0,-9,0,-960.039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.190515,0,0,66.639999,46.59,-9,-9,7,1,1,0,0,2,2,1,412,0,0,0,989.70819 -2581,3185,5809,5810,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.299798,7.8393655,5.520988,1,0,-9,10,-9,12,-56.61903,-9,0,0,48,2,4,1,3,3,2019,1,2,9,0,27,0,15,1,0,1,0,7.6992555,7.6992555,0,0,0,0,0,0,0,5.48,1,1,0,0,5.6761351,8.4163179,3,61.43,43.34,52,55,6,1,1,0,0,9,5,1,648.5,120588.57,0,0,2902.5127 -2581,3185,5810,5809,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,0,4,8.8695269,8.7520552,0,1,0,-9,10,-9,-12,-26.234112,-9,0,0,60,2,3,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,12.965938,12.965938,0,0,0,0,0,0,0,0,1,1,0,1.1499102,0,0,0,52,55,61.43,43.34,6,1,1,0,0,9,5,1,648.5,120588.57,0,0,2902.5127 -2582,3186,5811,-9,-9,-9,1,1,1,39,3,0,0,0,1,-9,2,1,0,0,3,8.3259649,8.4635153,0,3,0,-9,0,-9,0,-1136.7948,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,0,15,1,0,-9,0,15.921579,15.921579,0,0,0,0,0,0,0,0,0,0,0,.3587414,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,9,5,1,60,364317.41,0,0,1392.4393 -2583,3187,5812,5813,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.5265884,8.6634455,0,1,0,-9,7,0,1,1.6146227,0,0,0,48,2,2,1,2,2,2019,1,2,10,0,39,55,15,1,0,1,0,14.251192,14.251192,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.048512,3,54.369999,54.799999,33.470001,32.32,6,1,1,0,0,11,4,1,582,374882.56,0,0,3121.8442 -2583,3187,5813,5812,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,2,7.0598583,7.2177753,0,1,0,-9,7,0,-1,71.735344,0,0,0,49,2,3,1,3,3,2019,1,1,23,10,24,30,15,1,1,1,0,5.8453326,5.8453326,0,0,0,0,0,0,0,7,0,0,0,3.5558152,0,.99029809,3,33.470001,32.32,54.369999,54.799999,2,1,1,0,0,11,4,1,582,374882.56,0,0,3121.8442 -2583,3188,5814,-9,5813,5812,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,5,6.8888068,7.0565319,0,3,0,0,0,-9,0,-995.06067,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,0,15,1,0,-9,1,3.9328284,3.9328284,0,0,0,0,0,0,0,0,0,0,0,1.1938329,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,11,2,1,1306,-177888.25,0,0,899.40277 -2584,3189,5815,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,0,4,0,7.8377614,7.5807261,3,0,0,0,-9,0,-1012.853,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.816318,7.1648965,11.727979,3,42.950001,61.240002,-9,-9,5,1,1,0,0,12,3,1,197,563305.81,0,0,1402.8513 -2585,3190,5816,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,9.3551292,9.002758,0,3,0,0,0,-9,0,-1054.0372,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,43,42,15,1,0,-9,0,33.668213,33.668213,0,0,0,0,0,0,0,0,0,0,0,6.0738063,0,0,0,50.91,54.790001,-9,-9,5,1,1,0,0,9,5,1,353,2327550.3,0,0,3069.7029 -2586,3191,5817,-9,-9,5818,1,1,1,36,2,0,0,0,2,-9,1,1,0,0,3,8.3572817,8.0613594,0,3,0,0,0,-9,0,-996.32214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,60,40,15,1,0,-9,1,10.002681,10.002681,0,0,0,0,0,0,0,0,0,0,0,7.0336633,0,0,0,52.490002,46.240002,-9,-9,5,1,1,0,0,7,4,1,1638,65653.328,0,0,1873.6942 -2586,3192,5818,-9,-9,-9,2,1,1,63,2,0,0,0,3,-9,2,1,0,0,3,8.2956018,8.2209616,0,3,0,0,0,-9,0,-914.82813,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,60,60,15,1,0,-9,0,7.8353047,7.8353047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,-9,-9,5,4,6,0,0,7,4,1,535,223435.08,0,0,2526.8237 -2587,3193,5819,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,0,4,8.5443354,8.3850422,0,3,0,-9,0,1,0,-974.65558,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,65,50,15,1,0,-9,0,9.2385292,9.2385292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,5,1,292,215569.05,0,0,2773.5422 -2588,3194,5820,5821,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,8.2985859,8.1190157,5.4173808,1,0,-9,3,0,0,39.977337,0,0,0,61,2,3,1,2,2,2019,1,2,7,0,51,51,15,1,0,1,0,7.3565307,7.3565307,0,0,0,0,0,0,0,0,0,0,0,6.2828493,5.8961277,0,0,58.169998,42.52,62.66,52.400002,6,1,1,0,0,10,4,1,500.5,707736.69,0,0,3570.1084 -2588,3194,5821,5820,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,7.7538705,7.9780293,5.0267153,1,0,-9,3,0,9,-142.42249,0,0,0,52,2,2,1,-9,-9,2019,1,1,2,0,39,48,15,1,0,1,0,8.5127487,8.5127487,0,0,0,0,0,0,0,0,0,0,0,5.6302943,5.5823817,0,0,62.66,52.400002,58.169998,42.52,7,1,1,0,0,10,4,1,500.5,707736.69,0,0,3570.1084 -2589,3195,5822,5823,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,8.2615318,8.3015232,0,1,0,-9,34,0,6,-81.946304,0,0,0,49,1,3,1,3,2,2019,1,2,10,1,38,38,15,1,0,1,0,12.589476,12.589476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.68,26.01,45.43,53.5,4,1,1,0,0,11,5,1,513,344066.88,0,0,3842.8618 -2589,3195,5823,5822,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,8.4898243,8.7640495,0,1,0,-9,34,0,-6,-16.098116,0,0,0,55,2,2,1,3,1,2019,1,1,4,0,38,37,15,1,0,1,0,18.365156,18.365156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,61.68,26.01,5,1,1,0,0,11,5,1,513,344066.88,0,0,3842.8618 -2590,3196,5824,5827,-9,-9,2,1,0,47,1,0,3,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,30,0,-6,0,0,0,0,53,3,2,3,3,3,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.369999,30.93,41.25,38.200001,4,2,3,0,0,2,1,0,543.75,-42494.965,0,0,3034.0579 -2590,3196,5825,-9,5824,5827,7,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.5985,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,1,0,543.75,-42494.965,0,0,3034.0579 -2590,3196,5826,-9,5824,5827,6,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.60522,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,14.09,53.110001,-9,-9,7,2,3,0,0,2,1,0,543.75,-42494.965,0,0,3034.0579 -2590,3196,5827,5824,-9,-9,1,1,1,53,1,0,3,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,30,0,6,0,0,0,0,47,3,1,3,3,3,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,1,41.25,38.200001,45.369999,30.93,3,2,3,0,0,2,1,0,543.75,-42494.965,0,0,3034.0579 -2590,3197,5828,-9,5824,5827,3,1,1,25,2,0,3,0,2,-9,2,1,0,0,2,7.3596058,7.2919393,0,3,0,0,0,-9,0,-874.31128,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,36,0,15,1,1,-9,1,4.9407978,4.9407978,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.169998,42.700001,-9,-9,5,2,3,0,0,2,3,0,462,-202873.09,0,0,-561.57733 -2590,3198,5829,-9,5824,5827,4,1,1,21,2,0,3,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-948.25696,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.580002,52.860001,-9,-9,7,2,3,1,0,2,1,0,972,0,0,0,1117.3281 -2590,3199,5830,-9,5824,5827,5,1,1,18,2,0,3,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1011.4093,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.84,40.790001,-9,-9,7,2,3,1,1,2,3,0,937,131741.39,0,0,0 -2590,3200,5831,-9,-9,-9,8,1,0,22,2,0,3,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1058.5497,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.959999,49.93,-9,-9,4,1,1,1,0,2,1,0,465,-124218.3,0,0,848.56927 -2591,3201,5832,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1008.0901,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.599998,31.870001,-9,-9,4,1,1,1,1,5,1,0,633,142174.39,0,0,496.29883 -2592,3202,5833,-9,5834,-9,2,1,0,16,2,0,1,0,2,1,2,2,0,0,5,6.4316583,6.5970588,0,4,0,0,0,-9,0,-944.18738,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,3,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.009998,53.580002,-9,-9,6,1,1,0,0,10,2,0,999.33331,-20233.834,0,0,2064.9917 -2592,3202,5834,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,1,1,0,0,4,0,7.420959,7.3563042,4,0,0,0,-9,0,-807.68524,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,16,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4478793,0,0,0,56.57,57.779999,-9,-9,6,1,1,0,0,10,2,0,999.33331,-20233.834,0,0,2064.9917 -2592,3202,5835,-9,5834,-9,3,1,0,16,2,0,1,0,-9,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1059.9972,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,10,2,0,999.33331,-20233.834,0,0,2064.9917 -2593,3203,5836,5837,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.0192947,7.2007298,0,1,0,-9,9,0,2,45.354748,0,0,0,50,2,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,5.077292,5.077292,0,0,0,0,0,0,0,0,0,0,0,6.9640799,0,0,0,54.200001,57.490002,42.110001,53.48,1,1,1,0,0,6,2,1,2628.5,303215.75,0,0,5254.2559 -2593,3203,5837,5836,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,9,0,-2,-33.65247,0,0,0,52,2,4,1,2,2,2019,1,1,12,1,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6234264,0,0,0,42.110001,53.48,54.200001,57.490002,6,1,1,0,0,6,2,1,2628.5,303215.75,0,0,5254.2559 -2594,3204,5838,-9,5839,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.9967,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,555,331495.81,0,0,1941.0671 -2594,3204,5839,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,3,7.4828277,7.9553552,6.8261709,4,0,0,0,-9,0,-866.28174,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,12,16,15,1,0,-9,0,14.222099,14.222099,0,0,0,0,0,0,0,0,1,1,0,0,6.5563293,0,0,42.610001,54.849998,-9,-9,5,1,1,0,0,9,3,1,555,331495.81,0,0,1941.0671 -2594,3204,5840,-9,5839,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1049.1292,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,555,331495.81,0,0,1941.0671 -2595,3205,5841,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,0,4,8.3524666,8.4823828,0,3,0,0,0,-9,0,-1134.0331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,80,0,15,1,0,-9,0,8.3903713,8.3903713,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,11,5,1,249,315430.63,0,0,2167.6467 -2596,3206,5842,5844,-9,-9,1,1,1,66,1,0,1,0,1,-9,4,3,0,0,4,0,8.6689091,8.4109192,2,0,-9,10,0,20,-5.3733711,0,0,0,46,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.9980235,8.5981579,7.4533014,3,58.150002,52.91,57.060001,57.759998,6,1,1,0,0,8,5,1,645,2558146.3,0,0,14750.117 -2596,3206,5843,-9,5844,5842,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.7019,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,1,645,2558146.3,0,0,14750.117 -2596,3206,5844,5842,-9,-9,2,1,0,46,1,0,1,0,1,-9,6,3,0,0,5,0,9.8587074,9.7940311,2,0,-9,10,0,-20,95.229462,0,0,0,66,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4465179,9.637723,0,0,57.060001,57.759998,58.150002,52.91,7,1,1,0,0,8,5,1,645,2558146.3,0,0,14750.117 -2597,3207,5845,-9,5848,5847,5,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-941.26337,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,2,0,615,347172.06,0,0,2390.1128 -2597,3207,5846,-9,5848,5847,4,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.48138,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,0,615,347172.06,0,0,2390.1128 -2597,3207,5847,5848,-9,-9,1,1,1,46,1,1,2,0,3,-9,97,3,0,1,3,5.87712,5.6134973,0,2,0,-9,6,0,11,53.479553,0,0,0,35,3,1,3,3,3,2019,4,2,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.04818,2,39.82,48.029999,19.01,22.639999,4,1,1,0,0,11,2,0,615,347172.06,0,0,2390.1128 -2597,3207,5848,5847,-9,-9,2,1,0,35,1,1,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,-11,-8.3036137,0,0,1,46,3,3,3,-9,-9,2019,4,1,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,39.82,48.029999,4,1,1,0,0,11,2,0,615,347172.06,0,0,2390.1128 -2597,3208,5849,-9,5848,5847,3,1,0,19,2,1,2,0,2,-9,11,3,0,0,4,7.2409596,7.3942361,0,3,0,0,0,-9,0,-959.72827,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,6,1,1,0,0,11,3,0,1078,-180494.95,0,0,737.54553 -2598,3209,5850,5851,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.7157097,7.0645795,1,0,-9,42,0,4,151.86133,0,0,0,63,1,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3174901,7.2510438,0,0,54.200001,57.490002,46.099998,59.990002,6,1,1,0,0,8,3,1,1061.5,1321960.3,0,0,2596.146 -2598,3209,5851,5850,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.25315,7.2835498,1,0,-9,42,0,-4,56.366379,0,0,0,67,1,4,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1874995,0,0,46.099998,59.990002,54.200001,57.490002,6,1,1,0,0,8,3,1,1061.5,1321960.3,0,0,2596.146 -2599,3210,5852,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,0,5,9.2964487,8.867672,0,3,0,0,0,-9,0,-1085.2499,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,44,45,15,1,0,-9,0,20.477163,20.477163,0,0,0,0,0,0,0,0,0,0,0,2.9266887,0,0,0,48.77,60.16,-9,-9,5,1,1,0,0,9,5,1,681,662349.81,0,0,2860.3472 -2600,3211,5853,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,0,3,7.8430047,7.8123765,0,3,0,0,0,-9,0,-880.1532,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,38,38,15,1,0,-9,0,6.5349259,6.5349259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.790001,50.48,-9,-9,6,1,1,0,0,9,3,0,396,-13514.621,0,0,1925.5415 -2600,3212,5854,-9,5853,-9,2,1,1,26,2,0,0,0,2,0,7,2,0,0,4,6.6374207,6.2203965,0,3,0,0,0,-9,0,-1043.2159,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.950001,57.900002,-9,-9,3,1,1,0,0,9,2,0,163,-18535.158,0,0,133.76657 -2601,3213,5855,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,4,8.9162712,9.2796421,0,3,0,0,0,-9,0,-936.57526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,40,15,1,0,-9,0,23.023603,23.023603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,5,1,272,-96047.758,0,0,4070.793 -2602,3214,5856,-9,5858,5857,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.7248,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,706.66669,219036.64,0,0,2993.3918 -2602,3214,5857,5858,-9,-9,1,1,1,33,1,1,1,0,1,-9,2,1,0,0,4,8.8336525,9.3344135,0,2,0,-9,7,0,1,-101.88916,0,0,0,32,1,3,1,2,2,2019,1,2,12,0,60,55,15,1,0,1,0,16.340942,16.340942,0,0,0,0,0,0,0,0,0,0,0,.62155759,0,0,0,46.5,58.259998,49.630001,54.220001,5,1,1,0,0,9,5,1,706.66669,219036.64,0,0,2993.3918 -2602,3214,5858,5857,-9,-9,2,1,0,32,1,1,1,0,1,-9,5,1,0,0,3,0,0,0,2,0,-9,7,0,-1,130.68944,0,0,1,33,1,4,1,-9,-9,2019,1,1,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,120,0,0,0,.77421188,0,129.45755,3,49.630001,54.220001,46.5,58.259998,6,1,1,0,1,9,5,1,706.66669,219036.64,0,0,2993.3918 -2603,3215,5859,5860,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,7.1216559,6.7700324,1,0,-9,42,0,4,30.596584,0,0,0,64,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7235665,7.1724544,0,0,60.689999,50.509998,53.150002,37.709999,7,1,1,0,0,10,2,1,576,1554994.4,0,0,2958.7573 -2603,3215,5860,5859,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,6.8455153,6.155117,1,0,-9,44,0,-4,143.24191,0,0,0,68,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2275305,6.4145803,0,0,53.150002,37.709999,60.689999,50.509998,6,1,1,0,0,10,2,1,576,1554994.4,0,0,2958.7573 -2604,3216,5861,5862,-9,-9,2,1,0,51,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,32,0,1,-20.233593,0,0,0,50,2,3,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.790001,43.73,51.82,6,1,1,0,0,10,4,1,2253.5,2416533.8,0,0,4694.7031 -2604,3216,5862,5861,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,0,3,7.2676945,8.632494,8.783411,1,0,-9,32,0,-1,15.052776,0,0,0,51,1,4,3,2,2,2019,2,2,7,0,15,0,15,1,0,3,0,9.640048,9.640048,0,0,0,0,0,0,0,0,0,0,0,7.3460498,8.65833,0,0,43.73,51.82,50.91,54.790001,5,1,1,0,0,10,4,1,2253.5,2416533.8,0,0,4694.7031 -2604,3217,5863,-9,5861,5862,3,1,0,23,2,0,0,0,1,1,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-926.61981,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,56.560001,-9,-9,5,1,1,0,0,10,1,1,1279,84529.797,0,0,0 -2604,3218,5864,-9,5861,5862,4,1,1,21,2,0,0,0,1,-9,2,1,0,0,3,7.9319744,8.0212069,0,3,0,0,0,-9,0,-1030.6235,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,18,7,37,38,15,1,1,-9,1,11.800248,11.800248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,60.290001,-9,-9,3,1,1,0,0,10,4,1,878,52429.723,0,0,205.00769 -2605,3219,5865,-9,5866,-9,1,1,0,59,3,0,0,0,2,-9,4,3,0,0,5,0,7.7585082,7.945447,3,0,0,0,-9,0,-986.5835,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5473943,0,3,57.060001,57.759998,-9,-9,7,1,1,0,0,5,3,1,675,58558.305,0,0,279.37494 -2605,3220,5866,-9,-9,-9,2,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,7.7378821,7.9427361,3,0,0,0,-9,0,-1017.4766,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,.22750324,0,0,0,0,1,1,0,8.5401449,7.8525462,0,0,65,29.299999,-9,-9,7,1,1,0,0,5,4,1,424,457454.53,0,0,2809.2249 -2606,3221,5867,5868,-9,-9,1,1,0,61,1,0,0,0,3,-9,97,3,0,1,3,0,1.9643795,2.0535746,1,0,-9,8,0,3,-93.52903,0,0,0,58,2,3,1,3,3,2019,3,2,11,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.760432,2.252974,.12366746,3,52.310001,40.939999,36.610001,38.650002,5,1,1,0,0,2,5,1,567,226679,0,0,4280.1641 -2606,3221,5868,5867,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.7787485,9.2422466,7.282423,1,0,-9,8,0,-3,81.98082,0,0,0,61,3,3,3,3,3,2019,2,1,21,9,37,39,15,1,1,3,0,24.277325,24.277325,0,0,0,0,0,0,0,0,1,1,0,6.6115665,7.653193,0,0,36.610001,38.650002,52.310001,40.939999,3,1,1,0,0,2,5,1,567,226679,0,0,4280.1641 -2607,3222,5869,5870,-9,-9,2,1,0,35,1,0,0,0,1,-9,1,1,0,0,4,8.0351458,7.9333649,0,1,0,-9,4,0,1,0,0,0,1,34,2,4,1,-9,-9,2019,1,1,11,1,25,60,15,1,0,1,0,11.881377,11.881377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.040001,42.689999,69.559998,38.099998,6,1,1,0,0,9,4,0,2810.5,167883.22,0,0,2822.1111 -2607,3222,5870,5869,-9,-9,1,1,1,34,1,0,0,0,2,-9,1,1,0,1,4,7.8775945,7.8131671,0,1,0,-9,4,0,-1,0,0,0,0,35,1,4,1,2,2,2019,1,2,5,0,45,65,15,1,0,1,0,6.5567479,6.5567479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.559998,38.099998,48.040001,42.689999,6,1,1,0,0,9,4,0,2810.5,167883.22,0,0,2822.1111 -2608,3223,5871,5872,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,3,0,7.0673852,7.4678955,1,0,-9,9,0,2,-15.890638,0,0,0,69,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7181787,7.34972,0,0,60.599998,43.75,59.459999,46.990002,6,1,1,0,0,10,3,1,756,1471270.4,0,0,2002.6174 -2608,3223,5872,5871,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.88341,6.9815497,1,0,-9,9,0,-2,62.515438,0,0,0,71,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9602389,5.4682546,0,0,59.459999,46.990002,60.599998,43.75,6,1,1,0,0,10,3,1,756,1471270.4,0,0,2002.6174 -2609,3224,5873,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1016.6838,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.9461355,0,0,0,54.439999,13.54,-9,-9,6,1,1,0,0,12,1,1,835,335840.28,0,0,957.01581 -2610,3225,5874,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,2,1,0,0,3,7.8145552,7.8001175,0,4,0,0,0,-9,0,-1067.032,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,32,32,15,1,1,-9,0,8.4054775,8.4054775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.940001,61.650002,-9,-9,4,4,2,0,1,8,3,0,654.66669,15727.79,0,0,1942.7183 -2610,3225,5875,-9,5874,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.6542,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,8,3,0,654.66669,15727.79,0,0,1942.7183 -2610,3225,5876,-9,5874,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-986.96552,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,3,0,654.66669,15727.79,0,0,1942.7183 -2611,3226,5877,-9,5878,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-844.00488,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,0,319.5,63646.672,0,0,886.42847 -2611,3226,5878,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,1,1,0,0,3,8.1026392,8.3245506,5.4277225,4,0,0,0,-9,0,-943.69031,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,30,15,1,0,-9,0,10.167428,10.167428,0,0,0,0,0,0,0,0,1,1,0,5.9152923,0,0,0,49.52,56.950001,-9,-9,6,1,1,0,0,11,4,0,319.5,63646.672,0,0,886.42847 -2612,3227,5879,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,0,2,7.1883564,7.6188302,5.600697,4,0,0,0,-9,0,-1089.75,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,33,12,16,16,15,1,1,-9,0,9.4901524,9.4901524,0,0,0,0,0,0,0,0,1,1,0,5.3589683,0,0,0,15.47,56.98,-9,-9,2,1,1,0,0,12,2,1,1169.3334,131169.95,0,0,2170.1035 -2612,3227,5880,-9,5879,-9,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.5646,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,2,1,1169.3334,131169.95,0,0,2170.1035 -2612,3227,5881,-9,5879,-9,3,1,1,17,2,0,1,1,2,-9,7,2,0,0,4,5.9959226,5.9358096,0,4,0,0,0,-9,0,-860.05322,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.05585175,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,1,1169.3334,131169.95,0,0,2170.1035 -2612,3228,5882,-9,5879,-9,2,1,0,27,2,0,1,0,2,-9,2,1,0,0,3,7.8458533,7.7479534,0,3,0,0,0,-9,0,-939.01373,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,36,38,15,1,0,-9,1,8.7507143,8.7507143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.459999,54.849998,-9,-9,5,1,1,0,0,12,4,1,1083,258639.64,0,0,1542.2258 -2613,3229,5883,-9,5884,5888,2,1,1,20,2,0,3,0,2,-9,3,3,0,0,4,7.6203227,7.3934107,0,3,0,0,0,-9,0,-1051.9204,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,47,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.59362817,0,0,0,38.049999,52.650002,-9,-9,4,1,1,1,0,10,3,1,430,195017.84,0,0,1589.7455 -2613,3230,5884,5888,-9,-9,1,1,0,45,1,0,3,0,2,-9,2,1,0,0,5,7.8564963,7.4963465,0,2,0,-9,7,0,-2,-2.0520489,0,0,0,47,2,3,1,3,2,2019,1,3,7,0,12,10,15,1,0,1,0,22.16888,22.16888,0,0,0,0,0,0,0,0,1,1,0,5.4414773,0,0,0,62.389999,56.709999,55.93,39.209999,7,1,1,0,0,10,3,1,762.79999,221891.03,0,0,4113.9673 -2613,3230,5885,-9,5884,5888,5,1,1,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-966.54156,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,3,1,762.79999,221891.03,0,0,4113.9673 -2613,3230,5886,-9,5884,5888,4,1,0,16,2,0,3,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-955.8371,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,10,3,1,762.79999,221891.03,0,0,4113.9673 -2613,3230,5887,-9,5884,5888,6,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-862.26636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,762.79999,221891.03,0,0,4113.9673 -2613,3230,5888,5884,-9,-9,3,1,1,47,1,0,3,0,2,-9,2,1,0,0,3,8.3962421,8.1972113,0,2,0,-9,7,0,2,-76.471603,0,0,0,45,2,5,1,2,2,2019,1,1,12,0,50,50,15,1,0,1,0,12.508929,12.508929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,39.209999,62.389999,56.709999,6,1,1,0,0,10,3,1,762.79999,221891.03,0,0,4113.9673 -2614,3231,5889,-9,-9,-9,1,1,1,22,2,0,0,0,1,-9,3,3,0,0,5,0,6.3807063,6.3672748,3,0,0,0,-9,0,-991.18488,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,0,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1133666,0,0,0,43.82,61.41,-9,-9,3,1,1,1,0,6,2,0,2514,44840.965,0,0,240.23129 -2615,3232,5890,5894,-9,-9,1,1,1,51,1,0,3,0,1,-9,2,1,0,0,4,8.2933521,8.5140524,0,2,0,-9,5,0,5,63.140667,0,0,0,46,1,4,1,3,2,2019,1,2,8,0,50,45,15,1,0,1,0,9.2232294,9.2232294,0,0,0,0,0,0,0,0,1,1,0,1.519828,0,0,0,57.34,50.599998,54.200001,57.490002,5,1,1,0,0,10,3,1,353.39999,673070.81,0,0,3326.1816 -2615,3232,5891,-9,5894,5890,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.177,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,3,1,353.39999,673070.81,0,0,3326.1816 -2615,3232,5892,-9,5894,5890,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.64105,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,10,3,1,353.39999,673070.81,0,0,3326.1816 -2615,3232,5893,-9,5894,5890,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.81586,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,10,3,1,353.39999,673070.81,0,0,3326.1816 -2615,3232,5894,5890,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,0,4,7.8002424,8.0554724,0,2,0,-9,5,0,-5,89.355461,0,0,0,51,1,4,1,2,2,2019,1,1,8,0,43,40,15,1,0,1,0,10.264367,10.264367,0,0,0,0,0,0,0,2,1,1,0,3.2189579,0,4.6198792,3,54.200001,57.490002,57.34,50.599998,5,1,1,0,0,10,3,1,353.39999,673070.81,0,0,3326.1816 -2616,3233,5895,-9,5899,5898,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.58606,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,1875.8,27731.938,0,0,2978.7295 -2616,3233,5896,-9,5899,5898,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1029.7173,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,3,1,1875.8,27731.938,0,0,2978.7295 -2616,3233,5897,-9,5899,5898,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1039.1254,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,3,1,1875.8,27731.938,0,0,2978.7295 -2616,3233,5898,5899,-9,-9,2,1,1,36,1,0,3,0,1,-9,2,1,0,0,2,8.5698586,8.6663437,0,2,0,-9,13,0,3,-108.60297,0,0,0,33,2,4,3,2,2,2019,2,1,13,3,37,0,15,1,0,3,0,14.88411,14.88411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.119999,51.259998,41.740002,56.240002,2,1,1,0,1,2,3,1,1875.8,27731.938,0,0,2978.7295 -2616,3233,5899,5898,-9,-9,1,1,0,33,1,0,3,0,2,-9,3,3,0,0,4,0,6.0413809,6.0836406,2,0,-9,13,0,-3,34.899014,0,0,1,36,1,2,1,2,2,2019,3,2,14,3,0,15,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.828907,0,0,0,41.740002,56.240002,42.119999,51.259998,2,1,1,1,0,2,3,1,1875.8,27731.938,0,0,2978.7295 -2617,3234,5900,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,0,3,0,7.1415653,7.6060967,3,0,0,0,-9,0,-1011.2344,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,8.8788671,0,0,0,0,0,0,1,1,0,0,7.7608976,0,0,62.93,23.48,-9,-9,6,1,1,0,0,11,3,1,727,599434,0,0,1992.7024 -2618,3235,5901,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,5.5355883,5.6075759,3,0,0,0,-9,0,-1101.5514,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.55442,0,0,0,3.6328003,13.072363,0,1,1,0,4.8011346,5.5438952,0,0,58.560001,41.849998,-9,-9,6,1,1,0,0,10,2,1,1156,-10082.492,0,0,1408.4138 -2619,3236,5902,5903,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.089139,7.8964171,0,1,0,-9,8,0,-7,-152.18987,0,0,0,64,2,3,3,2,2,2019,2,1,6,0,38,38,15,1,0,4,0,11.391656,11.391656,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,57.330002,53.459999,52.639999,47.240002,6,1,1,0,0,4,3,1,1006,640986.06,0,0,1150.9423 -2619,3236,5903,5902,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,7,13.91019,0,0,0,57,2,3,1,3,3,2019,3,2,11,1,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.9355652,0,5.9605989,3,52.639999,47.240002,57.330002,53.459999,5,1,1,0,0,4,3,1,1006,640986.06,0,0,1150.9423 -2620,3237,5904,-9,5906,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-918.6189,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,2,0,1051.6666,-66529.875,0,0,1400.4862 -2620,3237,5905,-9,5906,-9,2,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1070.7946,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,2,0,1051.6666,-66529.875,0,0,1400.4862 -2620,3237,5906,-9,-9,-9,1,1,0,21,2,1,2,0,2,-9,5,1,0,0,3,5.7420936,6.2564311,0,4,0,0,0,-9,0,-852.49634,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,8,0,15,1,0,-9,0,5.6958752,5.6958752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.919998,53.029999,-9,-9,5,1,1,0,0,13,2,0,1051.6666,-66529.875,0,0,1400.4862 -2621,3238,5907,5908,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,3,6.8400717,6.5944757,0,1,0,-9,5,0,-2,-43.609951,0,1,0,29,3,4,3,3,2,2019,2,2,14,2,15,0,15,1,0,3,0,5.9496298,5.9496298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.98,48.98,48,57,7,2,3,0,0,6,2,0,946.5,6550.4336,0,0,897.03125 -2621,3238,5908,5907,-9,-9,2,1,0,29,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,5,0,2,-23.311586,-9,1,1,27,1,3,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,40.98,48.98,5,2,3,1,0,6,2,0,946.5,6550.4336,0,0,897.03125 -2622,3239,5909,5910,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,6.680522,6.7733936,1,0,-9,7,0,1,2.841609,0,0,0,67,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7441769,0,0,57.16,56.150002,57.650002,56.130001,5,1,1,0,0,12,2,1,671,552019.25,0,0,705.57336 -2622,3239,5910,5909,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,17,0,-1,-1.7524401,0,0,0,68,3,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7328625,0,0,0,57.650002,56.130001,57.16,56.150002,6,1,1,0,0,12,2,1,671,552019.25,0,0,705.57336 -2623,3240,5911,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,3,0,5.5952759,5.6814041,3,0,0,0,-9,0,-989.71729,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,6.552206,45.428196,0,1,1,0,4.3213973,5.7023892,0,0,54.790001,15.67,-9,-9,5,1,1,0,0,10,2,0,529,143677.92,0,0,315.17896 -2624,3241,5912,5913,-9,-9,2,1,0,52,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,37,0,-15,0,0,0,0,67,3,3,3,-9,-9,2019,4,1,12,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,52,48,5,2,3,0,0,8,1,0,900.33331,34917.727,0,0,628.98413 -2624,3241,5913,5912,-9,-9,1,1,1,67,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,28,0,15,0,0,0,0,52,3,3,3,-9,-9,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,48,49,5,2,3,0,0,8,1,0,900.33331,34917.727,0,0,628.98413 -2624,3241,5914,-9,5912,5913,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.6733,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,1,0,900.33331,34917.727,0,0,628.98413 -2624,3242,5915,-9,5912,5913,3,1,1,24,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1056.6761,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,1,0,8,1,0,274,0,0,0,0 -2625,3243,5916,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,2,9.0094986,9.2567854,0,3,0,0,0,-9,0,-989.45862,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,46,41,15,1,0,-9,0,17.830376,17.830376,0,0,0,0,0,0,0,0,0,0,0,3.4417145,0,0,0,34.5,54.84,-9,-9,5,1,1,0,0,13,5,1,859,2294579.8,0,0,4437.0088 -2626,3244,5917,-9,5919,5918,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.40216,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,3,1,609,-127119.19,0,0,2511.425 -2626,3244,5918,5919,-9,-9,3,1,1,28,1,1,2,0,2,-9,2,1,0,0,4,8.0959873,7.8747129,0,2,0,-9,2,0,1,-92.343719,-9,1,0,27,2,4,1,-9,-9,2019,1,1,10,1,36,0,15,1,0,1,0,13.470582,13.470582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,57.16,56.150002,5,4,1,0,0,5,3,1,609,-127119.19,0,0,2511.425 -2626,3244,5919,5918,-9,-9,1,1,0,27,1,1,2,0,2,-9,2,1,0,0,4,7.1977334,7.138751,0,2,0,-9,2,0,-1,-23.355616,0,1,1,28,2,4,1,-9,-9,2019,1,3,10,1,25,23,15,1,0,1,0,6.150548,6.150548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48,58,6,1,1,0,0,5,3,1,609,-127119.19,0,0,2511.425 -2626,3244,5920,-9,5919,5918,2,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.3761,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,1,609,-127119.19,0,0,2511.425 -2627,3245,5921,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,0,4,7.5924373,7.750247,6.3804789,3,0,0,0,-9,0,-1150.9359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,30,8,15,1,0,-9,0,7.3472738,7.3472738,0,0,0,0,0,0,0,27.5,1,1,0,0,6.3722367,31.572319,3,41.560001,61.790001,-9,-9,6,1,1,0,0,2,3,1,248,40075.883,0,0,833.22162 -2628,3246,5922,-9,5924,5923,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.8606,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,337.5,2369293.5,0,0,5263.9771 -2628,3246,5923,5924,-9,-9,1,1,1,47,1,0,3,0,2,-9,2,1,0,0,5,8.4144926,8.9145002,0,2,0,-9,2,0,1,-57.279778,0,0,0,46,2,2,1,2,2,2019,1,2,6,0,40,55,15,1,0,1,0,17.836897,17.836897,0,0,0,0,0,0,0,2,1,1,0,1.2778972,0,4.1572361,3,51.139999,60.450001,24.469999,55.41,6,1,1,0,0,12,4,1,337.5,2369293.5,0,0,5263.9771 -2628,3246,5924,5923,-9,-9,2,1,0,46,1,0,3,0,2,-9,2,1,0,0,2,8.6165838,8.6623344,0,2,0,-9,2,0,-1,-42.479816,0,0,0,47,2,5,1,2,-9,2019,1,1,14,3,38,37,15,1,0,1,0,17.674801,17.674801,0,0,0,0,0,0,0,2,1,1,0,7.1327147,0,0,3,24.469999,55.41,51.139999,60.450001,4,1,1,0,0,12,4,1,337.5,2369293.5,0,0,5263.9771 -2628,3246,5925,-9,5924,5923,4,1,1,16,2,0,3,1,2,0,7,2,0,0,3,5.3529792,5.2861562,0,2,0,0,0,-9,0,-1077.9657,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,12,4,1,337.5,2369293.5,0,0,5263.9771 -2628,3247,5926,-9,5924,5923,3,1,0,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1010.0818,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,25,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3971367,0,0,0,17.860001,64.839996,-9,-9,4,1,1,0,0,12,4,1,269,-147096.47,0,0,-179.68414 -2629,3248,5927,5928,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,7.1662974,7.0325994,1,0,-9,56,0,-1,-120.78633,0,0,0,74,3,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.1451979,0,0,57.779999,38.59,53.610001,52.369999,3,1,1,0,0,6,2,1,464.5,528873.25,0,0,1537.1517 -2629,3248,5928,5927,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,1,80.170418,0,0,0,73,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,52.369999,57.779999,38.59,6,1,1,0,0,6,2,1,464.5,528873.25,0,0,1537.1517 -2630,3249,5929,-9,-9,-9,1,1,0,45,2,0,1,0,1,-9,2,1,0,0,3,8.1323147,8.2774467,0,4,0,0,0,-9,0,-967.73059,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,7,32,40,15,1,1,-9,0,15.736249,15.736249,0,0,0,0,0,0,0,7,1,1,0,0,0,8.2845583,3,32.650002,56.799999,-9,-9,4,1,1,0,1,9,3,1,257,477863.56,0,0,2173.0437 -2631,3250,5930,-9,-9,-9,1,1,0,18,2,0,0,1,2,0,7,2,0,0,4,0,6.0402951,5.6264853,3,0,0,0,-9,0,-1006.6046,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.474515,0,0,0,39.220001,61.48,-9,-9,2,1,1,0,0,4,2,0,1492,-8996.7607,0,0,-378.46613 -2632,3251,5931,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,5.9136157,5.8850598,3.8871598,3,0,0,0,-9,0,-921.26001,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,10,30,15,1,0,-9,0,5.3644552,5.3644552,0,0,0,0,0,0,0,0,0,0,0,3.718621,0,0,0,55.779999,49.919998,-9,-9,6,1,1,0,0,6,2,0,639,44724.328,0,0,946.86005 -2633,3252,5932,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-975.44891,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,-9,-9,1,1,1,0,0,2,1,0,668,33012.469,0,0,1849.0548 -2634,3253,5933,5934,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,8.0265951,8.1828976,0,1,0,-9,46,0,-3,32.574203,0,0,0,66,1,5,3,2,1,2019,2,2,11,2,36,6,15,1,0,4,0,9.3782358,9.3782358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,54.099998,59.110001,6,1,1,0,0,10,3,1,640,1928545.8,0,0,2270.6045 -2634,3253,5934,5933,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,5,0,6.6187663,6.5851068,1,0,-9,46,0,3,-23.594736,0,0,0,63,1,4,1,1,1,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9382906,6.6777353,0,0,54.099998,59.110001,46.16,58.619999,6,1,1,0,0,10,3,1,640,1928545.8,0,0,2270.6045 -2635,3254,5935,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,4.485714,4.8479099,3,0,0,0,-9,0,-1032.2494,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2487724,4.5095005,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,5,1,1,1153,183222.3,0,0,1450.0696 -2636,3255,5936,-9,-9,5937,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-901.40607,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,3,0,297.5,-34006.867,0,0,1848.2959 -2636,3255,5937,-9,-9,-9,1,1,1,26,3,0,1,0,2,-9,2,1,0,0,3,8.2459068,8.0853138,0,4,0,0,0,-9,0,-914.86261,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,9,45,45,15,1,1,-9,0,7.0108919,7.0108919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.669998,29.129999,-9,-9,3,1,1,0,0,11,3,0,297.5,-34006.867,0,0,1848.2959 -2637,3256,5938,5941,-9,-9,2,1,1,34,1,2,2,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,5,0,-2,-30.070885,0,0,0,36,1,4,1,-9,-9,2019,1,1,10,1,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,42.049999,58.799999,5,1,1,0,0,4,3,0,303,556142.88,0,0,2572.1919 -2637,3256,5939,-9,5941,5938,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1020.9089,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,303,556142.88,0,0,2572.1919 -2637,3256,5940,-9,5941,5938,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.9001,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,0,303,556142.88,0,0,2572.1919 -2637,3256,5941,5938,-9,-9,1,1,0,36,1,2,2,0,1,-9,2,1,0,0,4,8.2263308,8.3388891,0,2,0,-9,5,0,2,53.068947,0,0,1,34,1,4,1,2,1,2019,1,2,7,0,22,26,15,1,0,1,0,28.030821,28.030821,0,0,0,0,0,0,0,0,1,1,0,8.2578878,0,0,0,42.049999,58.799999,50,57,6,1,1,0,0,4,3,0,303,556142.88,0,0,2572.1919 -2638,3257,5942,5943,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,8.2618475,8.3492813,0,2,0,-9,9,0,0,-15.320866,0,0,0,49,2,4,1,1,2,2019,1,2,6,0,60,45,15,1,0,1,0,7.4441652,7.4441652,0,0,0,0,0,0,0,0,0,0,0,5.2059102,0,0,0,53.189999,51.240002,43.939999,54.049999,6,1,1,0,0,13,4,1,835,120885.8,0,0,1577.2932 -2638,3257,5943,5942,-9,-9,2,1,0,49,1,0,1,0,2,-9,1,1,0,0,4,7.1021614,6.9925799,0,2,0,-9,9,0,0,61.611507,0,0,0,49,2,3,1,2,2,2019,1,1,13,2,45,45,15,1,0,1,0,3.0192459,3.0192459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.939999,54.049999,53.189999,51.240002,6,1,1,0,0,13,4,1,835,120885.8,0,0,1577.2932 -2638,3258,5944,-9,5943,5942,3,1,0,23,2,0,1,0,1,-9,2,1,0,0,3,7.5023537,7.723021,0,3,0,0,0,-9,0,-843.62073,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,32,26,15,1,0,-9,1,9.5802794,9.5802794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.630001,51.240002,-9,-9,6,1,1,0,0,13,3,1,378,-119798.73,0,0,1506.1825 -2638,3259,5945,-9,5943,5942,4,1,0,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-911.61047,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,13,1,1,192,123676.45,0,0,0 -2639,3260,5946,5947,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,0,2,9.3860607,9.2222862,0,1,0,-9,13,0,-8,14.189438,0,0,0,50,1,2,1,2,1,2019,1,2,7,0,43,42,15,1,0,1,0,28.44873,28.44873,0,0,0,0,0,0,0,0,0,0,0,4.9879394,0,0,0,52.240002,50.75,55.189999,30.32,6,1,1,0,0,10,5,1,598.5,1862867.5,0,0,6174.436 -2639,3260,5947,5946,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,2,8.9266939,8.818655,0,1,0,-9,13,0,8,-103.42293,0,0,0,42,1,2,1,2,2,2019,1,1,17,6,37,37,15,1,1,1,0,18.408218,18.408218,0,0,0,0,0,0,0,2,0,0,0,5.8208818,0,0,3,55.189999,30.32,52.240002,50.75,6,1,1,0,0,10,5,1,598.5,1862867.5,0,0,6174.436 -2640,3261,5948,5951,-9,-9,1,1,1,34,1,0,3,0,2,-9,2,1,0,0,5,8.9451275,8.5729742,0,2,0,-9,11,0,0,-141.14851,0,0,0,34,2,4,1,3,-9,2019,1,2,5,0,40,60,15,1,0,1,0,22.109024,22.109024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,60.119999,54.799999,1,1,1,0,0,2,4,1,1111.2,190660,0,0,3632.2029 -2640,3261,5949,-9,5951,5948,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.071,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1111.2,190660,0,0,3632.2029 -2640,3261,5950,-9,5951,5948,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.6827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,1111.2,190660,0,0,3632.2029 -2640,3261,5951,5948,-9,-9,2,1,0,34,1,0,3,0,2,-9,2,1,0,1,4,6.2540259,6.6576662,0,2,0,-9,11,0,0,-22.176268,0,0,1,34,2,5,1,3,2,2019,1,1,6,0,10,0,15,1,0,1,0,7.7012935,7.7012935,0,0,0,0,0,0,0,42,1,1,0,1.0696087,0,47.681484,3,60.119999,54.799999,62.389999,56.709999,1,1,1,0,0,2,4,1,1111.2,190660,0,0,3632.2029 -2640,3261,5952,-9,5951,5948,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.5732,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1111.2,190660,0,0,3632.2029 -2641,3262,5953,5954,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,0,5,0,6.3622384,6.1170373,1,0,-9,51,0,-3,-41.853275,0,0,0,77,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7464581,6.1965804,0,0,60.599998,49.259998,61.68,47.240002,7,1,1,0,0,2,2,1,1589,612771,0,0,1249.4907 -2641,3262,5954,5953,-9,-9,1,1,1,77,1,0,0,0,2,-9,2,1,0,0,4,7.3342628,6.8957181,0,1,0,-9,53,0,3,11.664168,0,0,0,74,1,5,3,3,3,2019,2,2,6,0,24,25,15,1,0,4,0,7.3441415,7.3441415,0,0,0,0,0,0,0,0,1,1,0,4.6616817,0,0,0,61.68,47.240002,60.599998,49.259998,6,1,1,0,0,2,2,1,1589,612771,0,0,1249.4907 -2642,3263,5955,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1066.6471,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.549999,33.189999,-9,-9,5,1,1,0,0,4,1,0,613,119870.14,0,0,1002.2344 -2643,3264,5956,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,7,2,0,0,5,6.629972,7.196198,5.57481,3,0,0,0,-9,0,-976.91058,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,15,56,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5445852,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,2,0,336,115570.34,0,0,1318.8746 -2643,3265,5957,-9,-9,-9,5,1,1,21,2,0,0,1,2,-9,7,2,0,0,2,5.8130937,6.3363137,5.6076212,3,0,-9,0,-9,0,-1041.8031,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1550412,0,0,0,42.810001,52.43,-9,-9,6,1,1,0,0,9,2,0,1730,-873.75726,0,0,900.98114 -2644,3266,5958,5959,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-2,-13.948294,0,0,0,78,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,43.66,46.560001,50.259998,6,1,1,0,0,6,3,1,484,781929.63,0,0,2249.6655 -2644,3266,5959,5958,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.8459277,8.1340857,1,0,-9,58,0,2,67.819992,0,0,0,76,3,3,3,-9,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8890445,8.25278,0,0,46.560001,50.259998,52.07,43.66,6,1,1,0,0,6,3,1,484,781929.63,0,0,2249.6655 -2645,3267,5960,5962,-9,-9,1,1,1,39,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,4,.17875485,0,0,0,35,2,3,1,2,2,2019,3,2,13,2,0,37,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.040001,53.77,45.43,53.5,6,1,1,1,0,11,2,0,934.33331,-57506.883,0,0,1199.1918 -2645,3267,5961,-9,5962,5960,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.68188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,2,0,934.33331,-57506.883,0,0,1199.1918 -2645,3267,5962,5960,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,0,3,7.7805648,7.3802323,0,2,0,-9,7,0,-4,89.738823,0,0,1,39,2,3,3,3,-9,2019,2,1,11,0,33,36,15,1,0,3,0,7.0776677,7.0776677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,45.040001,53.77,5,4,2,0,0,11,2,0,934.33331,-57506.883,0,0,1199.1918 -2646,3268,5963,5965,-9,-9,4,1,1,43,1,0,1,0,2,-9,1,1,0,0,3,8.0072422,8.2976913,0,2,0,1,1,-9,0,-39.569725,0,0,0,43,2,4,1,2,2,2019,1,1,12,0,21,65,15,1,0,1,0,16.142061,16.142061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,57.16,56.150002,5,1,1,0,0,4,5,1,1552.6666,1170138,0,0,4543.7617 -2646,3268,5964,-9,5965,5963,2,1,0,16,2,0,1,0,2,-9,11,2,0,0,4,6.8324499,7.0233188,0,2,0,0,0,-9,0,-881.74255,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,54.240002,-9,-9,6,1,1,0,0,4,5,1,1552.6666,1170138,0,0,4543.7617 -2646,3268,5965,5963,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,4,8.7608547,8.9124422,0,2,0,1,1,-9,0,15.846899,0,0,1,43,2,3,1,2,2,2019,1,4,7,0,52,52,15,1,0,1,0,11.646788,11.646788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,4,5,1,1552.6666,1170138,0,0,4543.7617 -2647,3269,5966,-9,-9,-9,1,1,1,83,3,0,0,0,1,-9,4,3,0,0,2,0,7.7647257,7.5938115,3,0,0,0,-9,0,-1038.2882,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8950438,7.9184732,0,0,61.93,22.040001,-9,-9,6,1,1,0,0,7,3,1,532,706833.5,0,0,1810.234 -2648,3270,5967,-9,5969,5971,4,1,0,12,2,2,6,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-946.38715,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5968,-9,5969,5971,5,1,1,10,2,2,6,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1154.6484,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5969,5971,-9,-9,1,1,0,34,1,2,6,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,0,-9.2070799,0,0,1,34,2,4,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,57.16,56.150002,7,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5970,-9,5969,5971,7,1,1,2,2,2,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.63562,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5971,5969,-9,-9,2,1,1,34,1,2,6,0,2,-9,2,1,0,0,4,7.9683332,7.7400641,0,2,0,-9,16,0,0,-183.59138,0,0,0,34,3,4,3,3,3,2019,2,1,6,0,40,55,15,1,0,3,0,7.8639894,7.8639894,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,41.169998,59.310001,6,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5972,-9,5969,5971,8,1,0,1,2,2,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.9395,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5973,-9,5969,5971,6,1,0,6,2,2,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-868.0152,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2648,3270,5974,-9,5969,5971,3,1,0,14,2,2,6,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-913.76019,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,2,3,0,0,2,2,1,1003.75,-29750.172,0,0,2030.1492 -2649,3271,5975,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,7.5697274,7.6900325,3,0,0,0,-9,0,-1043.1265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.794271,0,0,48.91,43.450001,-9,-9,5,1,1,0,0,12,3,1,466,475405.06,0,0,1530.4785 -2650,3272,5976,-9,-9,-9,1,1,1,95,3,0,0,0,3,-9,4,3,0,0,3,0,6.5509567,6.0313325,3,0,0,0,-9,0,-745.7243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,15.60452,0,19.412401,0,1.3682829,186.45813,0,1,1,0,0,6.2892227,0,0,56,44,-9,-9,6,1,1,0,0,10,2,1,472,676380.88,0,0,1837.1111 -2651,3273,5977,5978,-9,-9,1,1,1,61,1,0,1,0,1,-9,2,1,0,0,2,8.9932432,9.4523468,7.3108306,2,0,-9,8,0,4,52.562561,0,0,0,57,2,4,1,3,2,2019,1,2,26,11,37,44,15,1,1,1,0,32.733234,32.733234,0,0,0,0,0,0,0,0,1,1,0,6.1666679,7.5546727,0,0,22.620001,53.540001,54.790001,55.860001,2,1,1,0,0,7,5,1,398,2544582.8,0,0,4816.1118 -2651,3273,5978,5977,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,0,4,5.3579235,7.1699538,6.7780576,2,0,-9,8,0,-4,-.95118845,0,0,0,61,1,2,1,-9,2,2019,1,1,6,0,5,5,15,1,0,1,0,5.1462011,5.1462011,0,0,0,0,0,0,0,0,1,1,0,0,6.872963,0,0,54.790001,55.860001,22.620001,53.540001,6,1,1,0,0,7,5,1,398,2544582.8,0,0,4816.1118 -2651,3273,5979,-9,5978,5977,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1077.9689,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,7,5,1,398,2544582.8,0,0,4816.1118 -2651,3274,5980,-9,5978,5977,3,1,0,22,2,0,1,0,2,0,7,2,0,0,3,6.4013543,5.9685268,0,3,0,0,0,-9,0,-1040.7091,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,21,9,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4438059,0,0,0,38.380001,57.970001,-9,-9,4,1,1,0,0,7,2,1,359,76073.906,0,0,631.02716 -2652,3275,5981,5982,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.9992418,8.0818424,1,0,-9,6,0,3,145.44145,0,0,0,69,3,4,1,2,2,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7395945,8.2054472,0,0,45.040001,52.16,70.389999,40.52,6,1,1,0,0,13,5,1,2070.5,2425867,0,0,6248.769 -2652,3275,5982,5981,-9,-9,1,1,1,69,1,0,0,0,3,-9,2,1,0,0,4,8.5572929,8.2436657,6.2730231,1,0,-9,6,0,-3,-93.034378,0,0,0,72,2,4,3,3,3,2019,2,2,6,0,42,48,15,1,0,4,0,8.8089952,8.8089952,0,0,0,0,0,0,0,0,1,1,0,7.2836652,6.6850996,0,0,70.389999,40.52,45.040001,52.16,6,1,1,0,0,13,5,1,2070.5,2425867,0,0,6248.769 -2653,3276,5983,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,2,1,0,0,3,8.7136469,8.447938,5.7344384,3,0,0,0,-9,0,-1097.9989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,19.532858,19.532858,0,0,0,0,0,0,0,0,0,0,0,1.4268205,6.1870284,0,0,51.540001,36.810001,-9,-9,5,1,1,0,0,4,5,0,795,1337149.6,0,0,2981.6106 -2654,3277,5984,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-966.18878,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2892454,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,8,1,1,1061,1167650.6,0,0,-70.174271 -2655,3278,5985,5986,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,0,2,0,8.5960636,8.3077641,1,0,-9,10,0,0,-6.9566593,0,0,0,83,3,3,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2184534,8.3889484,0,0,45.259998,42.900002,61.849998,44.549999,5,1,1,0,0,7,4,1,1177.5,1107131,0,0,3413.8433 -2655,3278,5986,5985,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,0,-2.5329168,0,0,0,83,2,2,3,2,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.849998,44.549999,45.259998,42.900002,7,1,1,0,0,7,4,1,1177.5,1107131,0,0,3413.8433 -2656,3279,5987,-9,-9,-9,1,1,1,40,3,0,0,0,1,-9,2,1,0,0,2,9.5681229,9.0495987,0,3,0,0,0,-9,0,-1076.2664,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,45,41,15,1,0,-9,0,40.452358,40.452358,0,0,0,0,0,0,0,0,0,0,0,5.1015391,0,0,0,50.57,40.490002,-9,-9,4,2,3,0,0,7,5,1,582,1309374.4,0,0,5350.1929 -2657,3280,5988,-9,5990,5989,3,1,1,17,2,0,0,0,2,1,2,3,0,0,4,6.7001657,6.650826,0,1,0,0,0,-9,0,-1076.6876,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,32,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.7380217,3,44.68,54.189999,-9,-9,6,1,1,0,0,8,3,0,1029.6666,720398.25,0,0,2795.499 -2657,3280,5989,5990,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.0457792,7.6284652,1,0,-9,8,0,22,-28.814081,0,0,0,45,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8329473,.41134116,3,49.759998,40.549999,31.799999,53.099998,6,1,1,0,0,8,3,0,1029.6666,720398.25,0,0,2795.499 -2657,3280,5990,5989,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,7.3493552,7.5382118,0,1,0,-9,8,0,-22,44.813381,0,0,0,67,2,3,3,2,3,2019,2,1,12,0,30,30,15,1,0,4,0,5.5303245,5.5303245,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8097386,3,31.799999,53.099998,49.759998,40.549999,2,1,1,0,0,8,3,0,1029.6666,720398.25,0,0,2795.499 -2658,3281,5991,-9,-9,-9,1,1,0,53,3,0,1,0,2,-9,2,1,0,0,4,8.65133,8.7231274,0,4,0,0,0,-9,0,-931.44519,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,37,37,15,1,0,-9,0,17.723785,17.723785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.389999,55.43,-9,-9,5,1,1,0,0,9,4,1,848.5,235071.44,0,0,2385.7341 -2658,3281,5992,-9,5991,-9,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-990.98022,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.42,59.98,-9,-9,3,1,1,0,0,9,4,1,848.5,235071.44,0,0,2385.7341 -2659,3282,5993,-9,5994,-9,2,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-905.85944,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,442.25,-9832.0801,0,0,5057.103 -2659,3282,5994,-9,-9,-9,1,1,0,37,3,0,3,0,2,-9,2,1,0,0,4,8.4318485,8.8291349,7.952497,4,0,-9,0,1,0,-916.62067,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,22,15,1,0,-9,0,10.216805,10.216805,0,0,0,0,0,0,0,0,1,1,0,8.2319651,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,9,4,1,442.25,-9832.0801,0,0,5057.103 -2659,3282,5995,-9,5994,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-970.81586,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,4,1,442.25,-9832.0801,0,0,5057.103 -2659,3282,5996,-9,5994,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-883.04565,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,442.25,-9832.0801,0,0,5057.103 -2660,3283,5997,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,8.1963072,8.2665186,0,3,0,0,0,-9,0,-954.33771,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,6,15,1,0,-9,0,11.874524,11.874524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.669998,61.060001,-9,-9,6,1,1,0,0,2,4,0,1764,96565.727,0,0,1754.4879 -2661,3284,5998,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-898.43353,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,-9,-9,5,1,1,0,0,4,1,1,270,154258.06,0,0,555.25836 -2662,3285,5999,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,1,0,6.442615,6.2424321,3,0,0,0,-9,0,-973.04822,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4166632,0,0,54.880001,36.02,-9,-9,7,1,1,0,0,4,2,1,152,114030.8,0,0,498.36664 -2663,3286,6000,-9,-9,6001,2,1,0,17,2,0,1,1,2,0,7,2,0,0,3,5.6384249,5.6466289,0,4,0,0,0,-9,0,-996.63,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,25,11,7,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.599998,55.32,-9,-9,4,2,3,0,0,4,2,1,770,111749.84,0,0,6829.0273 -2663,3286,6001,-9,-9,-9,1,1,1,53,3,0,1,0,2,-9,1,1,0,0,3,5.4147096,5.4547358,0,4,0,0,0,-9,0,-944.39313,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,50,15,1,0,-9,0,.61848629,.61848629,0,0,0,0,0,0,0,0,1,1,0,9.585268,0,0,0,50.630001,50.990002,-9,-9,4,1,1,0,0,4,2,1,770,111749.84,0,0,6829.0273 -2664,3287,6002,6003,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,9.0345898,9.1238022,1,0,-9,47,0,0,113.61407,0,0,0,69,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,9.0513897,8.902874,76.093132,3,55.189999,54.259998,49.349998,59.639999,6,1,1,0,0,12,5,1,485,1523426.8,0,0,5497.2891 -2664,3287,6003,6002,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,5.4331007,5.1261292,1,0,-9,7,0,0,-103.07029,0,0,0,69,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.5719008,77.856293,3,49.349998,59.639999,55.189999,54.259998,6,1,1,0,0,12,5,1,485,1523426.8,0,0,5497.2891 -2664,3288,6004,-9,-9,-9,3,1,0,61,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1021.5023,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,12,1,1,338,52635.375,0,0,1555.6479 -2665,3289,6005,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1082.5454,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.4925489,0,0,0,0,1,1,0,0,0,0,0,54,45,-9,-9,6,1,1,0,0,13,1,0,785,83328.563,0,0,343.6438 -2666,3290,6006,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,0,3,0,7.0283875,7.0583019,3,0,-9,0,-9,0,-906.2171,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.872716,6.7021718,120.91499,3,51,45,-9,-9,6,1,1,0,0,13,2,1,726,450190.41,0,0,571.70099 -2666,3291,6007,-9,-9,-9,2,1,0,80,2,0,0,0,2,-9,4,3,0,0,3,0,3.7630699,3.3942461,3,0,-9,0,-9,0,-991.09613,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,6.3891058,0,0,0,128.01208,82.717957,0,1,1,0,0,3.6019869,0,0,51,45,-9,-9,6,1,1,0,0,13,2,1,556,244218.19,0,0,1756.1488 -2667,3292,6008,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,3,8.3731756,8.4420967,3.781745,3,0,-9,0,1,0,-1028.4788,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,39,36,15,1,1,-9,0,13.340441,13.340441,0,0,0,0,0,0,0,0,0,0,0,.3271046,3.887922,0,0,42.82,48.950001,-9,-9,4,1,1,0,0,12,4,1,347,674998.81,0,0,1968.7706 -2667,3293,6009,-9,6008,-9,2,1,1,22,2,0,0,1,2,-9,7,2,0,0,4,6.5030203,5.9109039,0,3,0,0,0,-9,0,-1135.2897,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,5,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,12,2,1,282,-14024.006,0,0,1239.5432 -2668,3294,6010,6011,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,5,7.8576055,8.2515554,6.0643802,1,0,-9,18,0,7,107.48481,0,0,0,51,2,5,1,3,3,2019,1,1,7,0,44,39,15,1,0,1,0,9.2516527,9.2516527,0,0,0,0,0,0,0,0,0,0,0,3.3975708,6.0950594,0,0,60.02,56.419998,59.529999,43.34,7,1,1,0,0,5,4,1,259.5,330752.5,0,0,2549.6001 -2668,3294,6011,6010,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,5,6.7241864,7.4110818,6.0675774,1,0,-9,23,0,-7,-77.487587,0,0,0,58,3,5,1,3,-9,2019,1,2,8,0,28,17,15,1,0,1,0,5.0127826,5.0127826,0,0,0,0,0,0,0,0,0,0,0,0,5.7154536,0,0,59.529999,43.34,60.02,56.419998,6,1,1,0,0,5,4,1,259.5,330752.5,0,0,2549.6001 -2668,3295,6012,-9,6011,6010,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,7.3798656,7.6076593,0,3,0,0,0,-9,0,-891.43701,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,0,15,1,0,-9,1,5.8275585,5.8275585,0,0,0,0,0,0,0,0,0,0,0,2.6812954,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,5,3,1,269,-248781.77,0,0,1580.3169 -2669,3296,6013,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,3,0,4.5898714,4.6655927,3,0,0,0,-9,0,-1062.5834,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1748967,0,0,0,54.369999,54.799999,-9,-9,5,4,2,0,0,5,1,1,228,-14444.17,0,0,-190.98828 -2670,3297,6014,6015,-9,-9,2,1,0,75,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,8,0,-1,161.25128,0,0,0,76,2,3,3,3,3,2019,4,1,24,9,0,0,15,3,1,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,2.2236202,0,7.2289338,3,26.690001,44.77,63.16,35.77,3,1,1,0,0,4,3,1,1108.5,750920.19,0,0,2266.1545 -2670,3297,6015,6014,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,8.1143913,7.8265953,1,0,-9,57,0,1,-115.49988,0,0,0,75,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3612022,7.6891823,0,0,63.16,35.77,26.690001,44.77,6,1,1,0,0,4,3,1,1108.5,750920.19,0,0,2266.1545 -2671,3298,6016,6018,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,4,8.3579416,8.7408762,0,2,0,-9,24,0,-1,49.013863,0,0,1,44,1,4,1,2,2,2019,1,2,7,0,38,33,15,1,0,1,0,19.59638,19.59638,0,0,0,0,0,0,0,0,0,0,0,6.6327286,0,0,0,52.400002,55.580002,57.16,56.150002,6,1,1,0,0,6,5,1,403,869133.13,0,0,9127.6855 -2671,3298,6017,-9,6016,6018,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.83508,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,403,869133.13,0,0,9127.6855 -2671,3298,6018,6016,-9,-9,2,1,1,44,1,0,1,0,1,-9,2,1,0,0,4,9.9346657,9.7492647,0,2,0,-9,24,0,1,15.253002,0,0,0,43,2,4,1,2,2,2019,1,1,8,2,37,41,15,1,0,1,0,48.041813,48.041813,0,0,0,0,0,0,0,0,0,0,0,3.5686831,0,0,0,57.16,56.150002,52.400002,55.580002,6,1,1,0,0,6,5,1,403,869133.13,0,0,9127.6855 -2672,3299,6019,6020,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,5.3687391,5.6595492,1,0,-9,51,0,0,-36.373749,0,0,0,68,2,2,1,3,3,2019,3,1,16,4,0,0,15,4,1,1,0,0,0,1,0,32.694271,0,0,0,0,0,1,1,0,0,5.3154087,0,0,34.650002,37.080002,50.860001,47.220001,4,1,1,0,0,9,3,0,649,1472504.3,0,0,2897.0825 -2672,3299,6020,6019,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,0,2,7.8789282,8.1802425,6.3330541,1,0,-9,51,0,0,141.76297,0,0,0,68,3,2,3,3,3,2019,2,2,11,0,45,40,15,1,0,4,0,6.8347316,6.8347316,0,0,0,0,0,0,0,71.5,1,1,0,4.0306144,6.3029757,66.767395,3,50.860001,47.220001,34.650002,37.080002,5,1,1,0,0,9,3,0,649,1472504.3,0,0,2897.0825 -2673,3300,6021,6022,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,5,0,7.9635677,7.4920354,1,0,-9,8,0,5,36.415379,-9,0,0,60,1,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.394821,7.6033478,0,0,57.060001,57.759998,58.150002,52.91,7,1,1,0,0,9,5,1,446,5714755,0,0,4658.4268 -2673,3300,6022,6021,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,8.1906643,9.0082664,7.9586611,1,0,-9,8,0,-5,16.364855,0,0,0,65,2,5,3,3,2,2019,2,1,2,0,20,41,15,1,0,4,0,36.221134,36.221134,0,0,0,0,0,0,0,0,1,1,0,5.3198376,8.5645094,0,0,58.150002,52.91,57.060001,57.759998,6,1,1,0,0,9,5,1,446,5714755,0,0,4658.4268 -2674,3301,6023,6024,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,0,3,8.0248575,7.8919787,0,1,0,-9,2,0,-12,-9.7182159,0,0,1,52,2,3,1,-9,-9,2019,1,1,9,0,36,44,15,1,0,1,0,8.9053812,8.9053812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,48.330002,58.470001,50.220001,6,1,1,0,0,5,5,0,839,1170401.3,0,0,3316.877 -2674,3301,6024,6023,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.5336723,8.6987848,0,1,0,-9,2,0,12,15.550409,0,0,0,40,2,3,1,2,2,2019,1,2,10,0,60,65,15,1,0,1,0,8.3486319,8.3486319,0,0,0,0,0,0,0,2,0,0,0,0,0,10.110947,3,58.470001,50.220001,56.5,48.330002,6,1,1,0,0,5,5,0,839,1170401.3,0,0,3316.877 -2674,3302,6025,-9,6023,6024,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,6.9703541,7.0989137,0,3,0,0,0,-9,0,-957.22003,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,30,15,1,0,-9,1,2.7677922,2.7677922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,2,0,838,218356.47,0,0,351.2027 -2675,3303,6026,6027,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,0,5,9.7158031,9.526823,0,1,0,-9,36,0,-1,-67.666977,0,0,0,58,1,3,3,2,2,2019,2,2,9,0,50,47,15,1,0,4,0,38.037315,38.037315,0,0,0,0,0,0,0,0,0,0,0,6.9045897,0,0,0,59.43,58.049999,64.550003,36.470001,6,1,1,0,0,7,5,1,1095,1818790.6,0,0,10380.662 -2675,3303,6027,6026,-9,-9,2,1,0,58,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,36,0,1,-27.077333,0,0,0,57,1,5,1,2,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,.40260464,0,20.657402,3,64.550003,36.470001,59.43,58.049999,6,1,1,0,0,7,5,1,1095,1818790.6,0,0,10380.662 -2676,3304,6028,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-963.77704,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.07,28.92,-9,-9,5,1,1,0,1,9,1,0,890,755876.81,0,0,-436.79282 -2677,3305,6029,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,4,8.5070992,8.7961063,0,3,0,0,0,-9,0,-1063.3534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,40,15,1,0,-9,0,14.973842,14.973842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,1,53,352187.97,0,0,3510.4907 -2677,3306,6030,-9,6029,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,0,5,8.1321115,8.3688507,0,3,0,-9,0,-9,0,-1122.453,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,40,0,15,1,0,-9,1,12.533929,12.533929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,2,1,1,0,0,2,4,1,304,-41182.18,0,0,1564.7723 -2678,3307,6031,6032,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,0,5,8.3582344,8.2443838,0,1,0,-9,6,0,0,-16.878397,0,0,1,32,2,3,1,3,2,2019,1,2,13,1,40,55,15,1,0,1,0,10.971036,10.971036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.5,63.150002,62.43,34.57,6,1,1,0,0,13,4,0,431.5,-31524.148,0,0,2741.113 -2678,3307,6032,6031,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,3,7.7000594,7.664257,0,1,0,-9,6,0,0,-82.244644,0,0,0,32,2,5,1,-9,-9,2019,1,1,12,0,33,30,15,1,0,1,0,8.1062174,8.1062174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.43,34.57,33.5,63.150002,6,1,1,0,0,13,4,0,431.5,-31524.148,0,0,2741.113 -2679,3308,6033,-9,6035,6034,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.2545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,0,591,-67215.156,0,0,1925.5625 -2679,3308,6034,6035,-9,-9,2,1,1,28,1,0,1,0,2,-9,2,1,0,1,4,8.287365,8.2527027,0,2,0,-9,7,0,-2,-19.200233,0,1,0,30,2,1,3,-9,-9,2019,2,1,14,3,45,45,15,1,0,3,0,9.4531441,9.4531441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,38.59,60.849998,30.76,28.129999,4,1,1,0,0,5,3,0,591,-67215.156,0,0,1925.5625 -2679,3308,6035,6034,-9,-9,1,1,0,30,1,0,1,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,7,0,2,-80.994003,0,0,1,28,2,4,1,3,3,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,30.76,28.129999,38.59,60.849998,3,1,1,0,0,5,3,0,591,-67215.156,0,0,1925.5625 -2680,3309,6036,-9,6037,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-951.24274,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,0,257.5,124740.13,0,0,1509.6107 -2680,3309,6037,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,1,1,0,0,4,8.0002127,7.9372325,5.3617558,4,0,0,0,-9,0,-1110.3577,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,40,37,15,1,0,-9,0,8.1698027,8.1698027,0,0,0,0,0,0,0,0,1,1,0,5.5849996,0,0,0,51.150002,49.900002,-9,-9,6,1,1,0,0,11,3,0,257.5,124740.13,0,0,1509.6107 -2681,3310,6038,-9,-9,6039,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,5.7570491,5.6054735,0,4,0,0,0,-9,0,-1072.4052,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,23,7,6,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.8318782,3,12.3,69.949997,-9,-9,2,1,1,0,0,5,4,1,986,143610.95,0,0,3014.0667 -2681,3310,6039,-9,-9,-9,1,1,1,39,3,0,1,0,2,-9,2,1,0,0,4,8.3910732,8.5040045,5.5815282,4,0,0,0,-9,0,-891.31836,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,64,47,15,1,0,-9,0,9.3335247,9.3335247,0,0,0,0,0,0,0,0,1,1,0,5.5461402,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,4,1,986,143610.95,0,0,3014.0667 -2681,3311,6040,-9,-9,-9,2,1,1,42,3,0,1,0,2,-9,2,1,0,0,3,8.3987999,8.2945337,0,4,0,0,0,-9,0,-871.5,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,43,50,15,1,0,-9,0,13.524349,13.524349,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.209999,53.419998,-9,-9,5,1,1,0,0,5,4,1,659,323731.88,0,0,1553.3057 -2681,3312,6041,-9,-9,6039,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,3,7.7959251,7.916481,0,3,0,0,0,-9,0,-1067.3489,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,29,11,35,39,15,1,1,-9,1,8.265728,8.265728,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.469999,55.630001,-9,-9,2,1,1,0,1,5,3,1,346,292277.34,0,0,1575.759 -2682,3313,6042,6043,-9,-9,1,1,0,46,1,0,1,0,3,-9,2,1,0,0,5,8.0529099,7.8973069,0,2,0,-9,2,0,-2,25.902519,0,0,0,48,2,3,1,-9,-9,2019,1,2,7,0,30,30,15,1,0,1,0,10.180944,10.180944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,58.32,50.220001,6,1,1,0,0,2,5,1,437.5,754640.56,0,0,2578.229 -2682,3313,6043,6042,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,3,8.948101,8.8228197,0,2,0,-9,2,0,2,93.35199,0,0,0,46,3,5,1,-9,-9,2019,1,1,9,0,55,60,15,1,0,1,0,16.228655,16.228655,0,0,0,0,0,0,0,0,1,1,0,3.1901135,0,0,0,58.32,50.220001,57.060001,57.759998,6,1,1,0,0,2,5,1,437.5,754640.56,0,0,2578.229 -2683,3314,6044,6047,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,5,9.4828768,9.5678816,0,2,0,-9,5,0,-3,-2.2668083,0,0,0,48,2,4,1,-9,-9,2019,1,1,5,0,43,0,15,1,0,1,0,30.47114,30.47114,0,0,0,0,0,0,0,0,1,1,0,2.7056365,0,0,0,57.060001,57.759998,52.400002,55.580002,6,1,1,0,0,5,5,1,2750.5,1159113.3,0,0,7075.7676 -2683,3314,6045,-9,6044,6047,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.25,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,2750.5,1159113.3,0,0,7075.7676 -2683,3314,6046,-9,6044,6047,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.88135,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,2750.5,1159113.3,0,0,7075.7676 -2683,3314,6047,6044,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,8.9095993,8.5719461,0,2,0,-9,5,0,3,-93.953575,0,0,0,45,1,5,1,2,2,2019,1,2,11,0,41,40,15,1,0,1,0,17.676474,17.676474,0,0,0,0,0,0,0,0,1,1,0,6.4720879,0,0,0,52.400002,55.580002,57.060001,57.759998,3,1,1,0,0,5,5,1,2750.5,1159113.3,0,0,7075.7676 -2684,3315,6048,6049,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,1,3,0,2.7906387,2.369236,1,0,-9,56,0,0,-20.131941,0,0,0,77,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,2.889663,113.61234,1,60.299999,35.849998,44.169998,23.07,6,1,1,0,0,5,1,1,313,146911.59,0,0,2163.0225 -2684,3315,6049,6048,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,56,0,0,74.21431,0,0,0,77,2,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,1.0109231,0,0,0,0,0,1,1,0,0,0,0,0,44.169998,23.07,60.299999,35.849998,7,1,1,0,0,5,1,1,313,146911.59,0,0,2163.0225 -2685,3316,6050,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,3,0,6.0987806,6.2254925,3,0,0,0,-9,0,-1146.578,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9513612,0,0,54,44,-9,-9,6,1,1,0,0,4,2,0,405,4.8081641,0,0,1133.2716 -2686,3317,6051,-9,-9,-9,1,1,0,32,2,1,3,0,3,-9,6,3,0,1,1,0,0,0,4,0,-9,0,-9,0,-890.95074,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,29,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.82,19.15,-9,-9,3,1,1,0,0,13,1,0,182,-170.76953,0,0,1164.214 -2686,3317,6052,-9,6051,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1138.0144,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,182,-170.76953,0,0,1164.214 -2687,3318,6053,-9,-9,-9,1,1,1,84,3,0,0,0,1,-9,4,3,0,0,4,0,6.4977741,6.4117937,3,0,0,0,-9,0,-1015.6803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.071876,6.6912489,0,0,40.810001,50.080002,-9,-9,3,1,1,0,0,9,2,1,240,402033.31,0,0,1155.7303 -2687,3319,6054,-9,-9,6053,2,1,1,50,2,0,0,0,1,-9,2,1,0,0,3,8.8009863,8.5379353,0,3,0,0,0,-9,0,-995.33551,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,38,37,15,1,0,-9,1,18.053289,18.053289,0,0,0,0,0,0,0,0,1,1,0,5.349587,0,0,0,35.360001,60.68,-9,-9,2,1,1,0,0,9,5,1,333,137281.44,0,0,2079.5081 -2687,3320,6055,-9,-9,6053,3,1,1,48,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-924.70825,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.540001,56.369999,-9,-9,3,1,1,1,0,9,1,1,938,396229.75,0,0,0 -2688,3321,6056,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,5.151547,5.1350675,3,0,0,0,-9,0,-982.53223,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2961009,5.4019747,0,0,56.25,40.200001,-9,-9,4,1,1,0,0,4,2,0,765,217161.3,0,0,301.95364 -2689,3322,6057,6059,-9,-9,1,1,0,31,1,1,3,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,1,-9,5,2.5921774,-9,0,1,26,2,4,1,2,-9,2019,1,4,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,52.619999,52.82,53.970001,6,1,1,0,0,6,2,0,664,159235.42,0,0,1493.6725 -2689,3322,6058,-9,6057,6059,3,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1043.5778,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,6,2,0,664,159235.42,0,0,1493.6725 -2689,3322,6059,6057,-9,-9,4,1,1,26,1,1,3,0,2,-9,2,1,0,0,4,7.8162856,7.9537573,0,2,0,-9,1,-9,-5,70.647514,-9,1,0,31,2,3,1,-9,-9,2019,1,1,11,2,37,0,15,1,0,1,0,5.8720732,5.8720732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,50.029999,52.619999,6,4,2,0,0,6,2,0,664,159235.42,0,0,1493.6725 -2689,3322,6060,-9,6057,6059,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1107.1997,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,6,2,0,664,159235.42,0,0,1493.6725 -2689,3322,6061,-9,6057,6059,2,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1118.3911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,6,2,0,664,159235.42,0,0,1493.6725 -2690,3323,6062,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,1,0,7.371563,7.1937881,3,0,0,0,-9,0,-868.6897,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,1,5.6623802,0,8.6691132,0,0,0,0,1,1,0,2.0860887,7.01508,0,0,25.74,25.1,-9,-9,2,1,1,0,0,5,2,1,814,432729.22,0,0,2135.4893 -2691,3324,6063,6066,-9,-9,2,1,0,39,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,16,0,-6,24.776613,0,0,1,45,1,4,1,2,2,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.8693094,0,0,0,43.650002,58.279999,57.16,56.150002,6,1,1,0,0,10,4,0,607,792644.44,0,0,3382.0356 -2691,3324,6064,-9,6063,6066,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.99799,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,0,607,792644.44,0,0,3382.0356 -2691,3324,6065,-9,6063,6066,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.09552,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,0,607,792644.44,0,0,3382.0356 -2691,3324,6066,6063,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.1036949,9.0882883,0,2,0,-9,16,0,6,-41.018494,0,0,0,39,1,3,3,-9,2,2019,2,2,12,1,45,45,15,1,0,3,0,27.869238,27.869238,0,0,0,0,0,0,0,0,1,0,1,1.5132657,0,0,0,57.16,56.150002,43.650002,58.279999,6,1,1,0,0,10,4,0,607,792644.44,0,0,3382.0356 -2692,3325,6067,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,4,0,7.4074955,7.3085299,3,0,0,0,-9,0,-888.07532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8541698,7.6305351,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,11,3,1,425,217040.19,0,0,1509.2959 -2693,3326,6068,6069,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,5,9.7709513,9.6666765,6.6578665,1,0,-9,20,0,1,44.284546,0,0,0,45,1,4,1,3,2,2019,1,1,7,0,30,30,15,1,0,1,0,66.161209,66.161209,0,0,0,0,0,0,0,0,0,0,0,7.1249385,7.3367829,0,0,52.720001,55.580002,51.830002,57.200001,6,1,1,0,0,6,5,1,2457.5,714893.13,0,0,10400.684 -2693,3326,6069,6068,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,9.2437754,9.8207092,0,1,0,-9,20,0,-1,108.34695,0,0,0,46,1,5,1,2,1,2019,1,2,8,0,80,50,15,1,0,1,0,23.638689,23.638689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,52.720001,55.580002,4,1,1,0,0,6,5,1,2457.5,714893.13,0,0,10400.684 -2694,3327,6070,6071,-9,-9,1,1,0,49,1,0,2,0,1,0,7,2,0,0,3,5.6703658,6.0940075,0,2,0,-9,16,0,2,56.299595,-9,0,0,47,1,3,1,2,1,2019,3,2,21,8,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.2787409,3,42.450001,49.200001,58.32,50.220001,3,1,1,0,1,9,3,1,747.5,360158.28,0,0,2430.6426 -2694,3327,6071,6070,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,8.1140356,8.3197794,0,2,0,-9,16,0,-2,84.525627,-9,0,0,49,1,3,2,2,2,2019,2,1,11,0,38,0,15,1,0,2,0,13.524487,13.524487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,42.450001,49.200001,6,1,1,0,1,9,3,1,747.5,360158.28,0,0,2430.6426 -2694,3327,6072,-9,6070,6071,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1025.8904,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,9,3,1,747.5,360158.28,0,0,2430.6426 -2694,3327,6073,-9,6070,6071,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.7226,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,1,747.5,360158.28,0,0,2430.6426 -2695,3328,6074,6075,-9,-9,1,1,0,62,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,44,0,-20,-54.966259,0,0,0,82,1,4,3,2,2,2019,4,2,15,3,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,25.09,58.150002,52.91,4,1,1,0,0,10,2,1,2084,1344797.5,0,0,1075.8501 -2695,3328,6075,6074,-9,-9,2,1,1,82,1,0,0,0,1,-9,4,3,0,0,4,0,5.5584645,5.45749,1,0,-9,44,0,20,-41.924522,0,0,0,62,3,1,3,3,2,2019,4,1,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.6075177,111.54744,1,58.150002,52.91,43.18,25.09,6,1,1,0,0,10,2,1,2084,1344797.5,0,0,1075.8501 -2696,3329,6076,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,3,7.4771342,7.8142424,0,3,0,0,0,-9,0,-1065.309,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,32,30,15,1,0,-9,0,7.4645414,7.4645414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,52.639999,-9,-9,5,1,1,0,0,5,3,0,850,51600.875,0,0,1626.8285 -2697,3330,6077,6078,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,8.4780674,8.1992702,0,1,0,-9,32,0,4,-132.03838,0,0,0,50,2,2,1,2,2,2019,1,2,7,0,35,34,15,1,0,1,0,11.267346,11.267346,0,0,0,0,0,0,0,0,0,0,0,2.3307624,0,0,0,56.259998,53.709999,35.459999,42.220001,6,1,1,0,0,10,4,1,492.5,1640034.9,0,0,3331.8174 -2697,3330,6078,6077,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,7.432332,7.4740272,0,1,0,-9,28,0,-4,-30.106056,0,0,0,54,2,4,1,-9,-9,2019,1,1,15,3,22,25,15,1,0,1,0,6.5858498,6.5858498,0,0,0,0,0,0,0,2,0,0,0,0,0,5.9672318,3,35.459999,42.220001,56.259998,53.709999,6,1,1,0,0,10,4,1,492.5,1640034.9,0,0,3331.8174 -2698,3331,6079,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-980.39166,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.93,48.900002,-9,-9,4,1,1,0,1,4,1,0,385,41310.105,0,0,-701.27563 -2699,3332,6080,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,1,0,6.9388976,7.1543832,3,0,0,0,-9,0,-920.8407,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,7.0410337,0,0,1,1,0,0,7.0583334,0,0,36.25,17.469999,-9,-9,2,3,4,0,1,8,2,0,601,143440.17,0,0,1127.536 -2699,3333,6081,-9,-9,-9,2,1,0,66,3,0,0,0,3,-9,4,3,0,0,2,0,6.1064615,6.1892309,3,0,0,0,-9,0,-1003.1943,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,6.2668519,10.859596,0,0,1,1,0,0,6.0990496,0,0,40.68,39.82,-9,-9,5,4,2,0,0,8,2,0,753,142406.14,0,0,1546.8845 -2700,3334,6082,6083,-9,-9,1,1,1,68,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,13,-114.5747,-9,0,0,55,3,4,3,3,3,2019,4,2,18,6,0,0,15,3,1,3,0,0,0,1,0,69.200584,0,0,0,0,0,1,1,0,0,0,0,0,36.529999,14.85,56.57,57.779999,2,2,3,0,0,4,2,1,642,153282.41,0,0,1782.0273 -2700,3334,6083,6082,-9,-9,2,1,0,55,1,0,0,0,3,-9,6,3,0,0,4,6.676755,6.4769888,0,1,0,-9,7,0,-13,100.65902,-9,0,0,68,3,1,3,2,2,2019,4,1,8,0,16,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,110,1,1,0,0,0,120.74715,1,56.57,57.779999,36.529999,14.85,5,2,3,0,0,4,2,1,642,153282.41,0,0,1782.0273 -2700,3335,6084,-9,6083,6082,3,1,0,25,2,0,0,0,2,-9,2,1,0,1,1,7.6317644,7.7702837,0,3,0,0,0,-9,0,-1037.605,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,26,8,35,0,15,1,1,-9,1,7.376133,7.376133,0,0,0,0,0,0,0,2,1,1,0,0,0,4.9801455,3,33.720001,26.790001,-9,-9,3,2,3,0,0,4,3,1,74,62088.652,0,0,2056.2163 -2700,3336,6085,-9,6083,6082,4,1,1,22,3,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1119.657,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.828079,3,61.130001,53.200001,-9,-9,5,2,3,1,0,4,1,1,1531,0,0,0,1313.573 -2700,3337,6086,-9,6083,6082,5,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.7019072,8.3669662,0,3,0,0,0,-9,0,-985.75372,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,3,12,53,15,1,0,-9,1,49.539227,49.539227,0,0,0,0,0,0,0,27.5,1,1,0,0,0,36.518818,3,34.41,56.099998,-9,-9,4,2,3,0,0,4,5,1,897,84967.984,0,0,1454.3765 -2701,3338,6087,6088,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,6.2155504,5.6692252,1,0,-9,6,0,-10,-107.96687,0,0,0,80,3,3,3,2,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,5.8499193,0,0,0,0,0,1,1,0,4.3067575,6.3417964,0,0,60.09,28.540001,58.77,32.119999,6,1,1,0,0,10,2,1,641.5,323358.66,0,0,1730.6248 -2701,3338,6088,6087,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,5.9657874,6.3312211,1,0,-9,6,0,10,64.031403,0,0,0,70,2,1,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,7.5253882,0,0,0,0,0,1,1,0,0,6.2180734,0,0,58.77,32.119999,60.09,28.540001,6,1,1,0,0,10,2,1,641.5,323358.66,0,0,1730.6248 -2702,3339,6089,-9,6090,-9,1,1,1,25,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-991.72113,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,1,4,1,0,1266,237053.39,0,0,-341.70172 -2702,3340,6090,-9,-9,-9,2,1,0,53,3,0,1,0,3,-9,2,1,0,0,3,7.5563717,7.4311981,0,4,0,0,0,-9,0,-872.47382,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,30,32,15,1,0,-9,0,5.9387417,5.9387417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.48,57.360001,-9,-9,3,1,1,0,1,4,2,0,1377,32996.375,0,0,1603.0913 -2702,3341,6091,-9,6090,-9,3,1,1,18,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-900.03333,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,1,4,2,0,289,-5403.8462,0,0,-708.70978 -2703,3342,6092,6093,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,5,7.6337781,7.6682472,0,2,0,-9,29,0,0,25.424984,0,0,0,48,2,3,1,2,2,2019,1,1,8,0,24,20,15,1,0,1,0,13.738356,13.738356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.869999,49.040001,55.860001,5,1,1,0,0,10,4,1,593,28704.252,0,0,3596.0393 -2703,3342,6093,6092,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,3,8.2863989,8.3333244,0,2,0,-9,29,0,0,58.604,0,0,0,48,2,5,1,2,1,2019,1,2,12,0,49,48,15,1,0,1,0,8.8072748,8.8072748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,55.09,55.869999,4,1,1,0,0,10,4,1,593,28704.252,0,0,3596.0393 -2703,3342,6094,-9,6092,6093,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.94733,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,593,28704.252,0,0,3596.0393 -2704,3343,6095,-9,6097,6096,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.94409,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,1,934.33331,1115107.3,0,0,3472.3657 -2704,3343,6096,6097,-9,-9,1,1,1,39,1,0,1,0,1,-9,2,1,0,0,3,9.3700171,9.568903,0,2,0,-9,13,0,4,15.945604,0,0,0,35,1,5,2,-9,-9,2019,2,2,10,0,42,40,15,1,0,2,0,35.813606,35.813606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.509998,55.110001,50.540001,62.09,5,2,3,0,0,8,5,1,934.33331,1115107.3,0,0,3472.3657 -2704,3343,6097,6096,-9,-9,2,1,0,35,1,0,1,0,1,0,7,2,0,0,5,0,4.9646611,4.9156709,2,0,-9,13,0,-4,57.254681,-9,0,1,39,1,3,1,1,1,2019,3,1,12,3,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8401971,0,0,0,50.540001,62.09,43.509998,55.110001,6,2,3,0,0,8,5,1,934.33331,1115107.3,0,0,3472.3657 -2705,3344,6098,6099,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,4,6.3203588,7.3362656,6.548172,1,0,-9,42,0,1,52.098217,0,0,0,59,2,3,1,-9,-9,2019,1,1,7,0,10,0,15,1,0,1,0,5.6795774,5.6795774,0,0,0,0,0,0,0,0,0,0,0,0,6.4765277,0,0,51.240002,58.84,55.959999,49.93,2,1,1,0,0,7,3,1,287.5,810115.13,0,0,1562.1499 -2705,3344,6099,6098,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.2193909,7.2807751,0,1,0,-9,42,0,-1,-26.937904,0,0,0,60,3,4,1,-9,-9,2019,1,2,7,0,18,30,15,1,0,1,0,7.4531107,7.4531107,0,0,0,0,0,0,0,0,0,0,0,.38031691,0,0,0,55.959999,49.93,51.240002,58.84,6,1,1,0,0,7,3,1,287.5,810115.13,0,0,1562.1499 -2706,3345,6100,6101,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.5948963,7.4484415,1,0,-9,50,0,0,59.707874,0,0,0,70,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0322325,7.4876347,0,0,54.959999,53.169998,54.369999,54.799999,6,1,1,0,0,2,2,1,807,161363.17,0,0,2659.0759 -2706,3345,6101,6100,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,0,-48.396847,0,0,0,70,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.72231513,0,0,0,54.369999,54.799999,54.959999,53.169998,6,1,1,0,0,2,2,1,807,161363.17,0,0,2659.0759 -2707,3346,6102,6103,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,5.1872454,5.6775594,1,0,-9,8,0,11,-138.66531,0,0,0,55,2,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1879883,0,0,57.330002,53.459999,57.330002,53.459999,6,1,1,0,0,6,5,1,264,-13280.906,0,0,3485.4771 -2707,3346,6103,6102,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.7103882,8.6051922,0,1,0,-9,8,0,-11,63.298901,0,0,0,66,3,3,3,2,1,2019,2,2,7,0,60,60,15,1,0,4,0,13.366585,13.366585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.330002,53.459999,6,1,1,0,0,6,5,1,264,-13280.906,0,0,3485.4771 -2708,3347,6104,6105,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,7.4039621,7.5823593,1,0,-9,8,0,-2,-49.020237,0,0,0,62,2,4,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4865789,7.3173246,0,0,59.220001,37.52,48.279999,60.18,4,1,1,0,0,10,5,1,1522.5,542934.69,0,0,5610.0361 -2708,3347,6105,6104,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,7.7134409,8.7352295,8.0904722,1,0,-9,8,0,2,55.105907,0,0,0,60,1,3,3,3,1,2019,2,2,11,2,20,18,15,1,0,4,0,17.836544,17.836544,0,0,0,0,0,0,0,0,0,0,0,7.6878529,8.1779537,0,0,48.279999,60.18,59.220001,37.52,6,1,1,0,0,10,5,1,1522.5,542934.69,0,0,5610.0361 -2709,3348,6106,6108,-9,-9,4,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,9.3353739,9.0450211,0,2,0,-9,6,0,-2,-13.285333,0,0,0,45,2,3,1,-9,-9,2019,1,1,9,1,38,40,15,1,0,1,0,30.324806,30.324806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.91,35.57,5,1,1,0,0,12,5,1,223.66667,1407084.5,0,0,4551.5078 -2709,3348,6107,-9,6108,6106,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.0765,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,5,1,223.66667,1407084.5,0,0,4551.5078 -2709,3348,6108,6106,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,8.1826534,8.1865778,0,2,0,-9,6,0,2,16.827662,0,0,0,43,2,4,1,2,2,2019,1,4,8,1,34,33,15,1,0,1,0,11.771404,11.771404,0,0,0,0,0,0,0,0,1,1,0,6.8965597,0,0,0,57.91,35.57,52,55,6,1,1,0,0,12,5,1,223.66667,1407084.5,0,0,4551.5078 -2709,3349,6109,-9,6108,6106,3,1,0,18,2,0,1,0,2,1,2,1,0,0,4,7.4847836,7.5078087,0,3,0,0,0,-9,0,-971.55688,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,12,0,15,1,0,-9,1,10.56636,10.56636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,12,3,1,831,-155856.95,0,0,2319.4133 -2710,3350,6110,6111,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,2,0,4.2685623,4.4868026,1,0,-9,59,0,-5,129.60956,0,0,0,82,3,2,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,4.1044288,40.325047,1,47.799999,47.66,52.310001,38.310001,6,1,1,0,0,2,2,1,645,455351.28,0,0,1758.1326 -2710,3350,6111,6110,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,1,2,0,7.6080399,7.4900155,1,0,-9,59,0,5,.38170561,0,0,0,77,3,2,3,3,3,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2664542,0,0,52.310001,38.310001,47.799999,47.66,4,1,1,0,0,2,2,1,645,455351.28,0,0,1758.1326 -2711,3351,6112,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,3,8.7088413,8.6445065,0,3,0,0,0,-9,0,-943.83069,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,37,15,1,0,-9,1,19.528496,19.528496,0,0,0,0,0,0,0,2,1,1,0,3.527715,0,.69475949,3,27.74,56.23,-9,-9,5,1,1,0,0,2,5,1,748,-19039.799,0,0,2169.3271 -2712,3352,6113,6114,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,4,8.6478405,8.6217966,0,2,0,-9,2,0,3,121.47717,0,0,0,30,2,4,1,-9,-9,2019,1,1,10,1,50,50,15,1,0,1,0,14.188912,14.188912,0,0,0,0,0,0,0,0,1,1,0,6.5897646,0,0,0,50,57,51.830002,57.200001,5,3,4,0,0,9,5,0,1393.3334,369434.06,0,0,4924.2227 -2712,3352,6114,6113,-9,-9,1,1,0,30,1,1,1,0,2,-9,5,1,0,0,4,8.6457748,8.7570877,0,2,0,-9,2,0,-3,100.50041,0,0,1,33,1,4,1,-9,-9,2019,1,2,5,1,52,52,15,1,0,1,0,10.761656,10.761656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,50,57,6,1,1,0,0,9,5,0,1393.3334,369434.06,0,0,4924.2227 -2712,3352,6115,-9,6114,6113,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1058.6416,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,5,0,1393.3334,369434.06,0,0,4924.2227 -2713,3353,6116,6117,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,6.7343359,6.7798581,0,2,0,-9,2,0,1,-28.364023,0,0,1,42,2,5,1,-9,-9,2019,1,1,10,0,20,20,15,1,0,1,0,6.1658902,6.1658902,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,57.060001,57.759998,6,1,1,0,0,7,4,0,623.25,351432.19,0,0,2608.5906 -2713,3353,6117,6116,-9,-9,1,1,1,42,1,0,2,0,2,-9,1,1,0,0,5,8.5982246,8.6282263,0,2,0,-9,2,0,-1,189.16479,0,0,0,43,2,4,1,2,2,2019,1,2,7,0,40,45,15,1,0,1,0,20.382381,20.382381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,59.529999,56.439999,6,1,1,0,0,7,4,0,623.25,351432.19,0,0,2608.5906 -2713,3353,6118,-9,6116,6117,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.28192,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,7,4,0,623.25,351432.19,0,0,2608.5906 -2713,3353,6119,-9,6116,6117,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.4602,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,0,623.25,351432.19,0,0,2608.5906 -2714,3354,6120,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,0,4,7.1863518,7.3580203,5.2440543,3,0,0,0,-9,0,-1002.6111,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,20,20,15,1,0,-9,0,6.0292716,6.0292716,0,0,0,0,0,0,0,0,0,0,0,0,5.1034527,0,0,55.939999,47.09,-9,-9,5,1,1,0,0,12,3,1,200,38006.188,0,0,891.16315 -2715,3355,6121,-9,-9,-9,1,1,0,33,2,1,2,0,2,-9,3,3,0,0,3,0,5.1880322,5.1817861,4,0,0,0,-9,0,-982.54205,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9702816,0,0,0,53.810001,48.389999,-9,-9,6,1,1,1,0,11,1,0,895.66669,48586.09,0,0,1345.1472 -2715,3355,6122,-9,6121,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1108.3782,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,1,0,895.66669,48586.09,0,0,1345.1472 -2715,3355,6123,-9,6121,-9,2,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1078.3351,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,1,0,895.66669,48586.09,0,0,1345.1472 -2716,3356,6124,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1072.7321,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.0187179,0,0,0,0,1,1,0,3.617054,0,0,0,61.09,22.450001,-9,-9,6,1,1,0,0,11,1,1,294,-5545.1631,0,0,895.37756 -2717,3357,6125,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,0,4,9.1101398,9.0347433,0,3,0,0,0,-9,0,-1072.6991,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,38,40,15,1,0,-9,0,25.645218,25.645218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,5,1,602,139896.33,0,0,3340.1702 -2718,3358,6126,-9,6127,-9,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.5723,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,1,642,68006.516,0,0,3753.0178 -2718,3358,6127,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,0,5,9.2402821,9.5639067,6.2375646,4,0,0,0,-9,0,-1081.0079,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,35,40,15,1,0,-9,0,40.797665,40.797665,0,0,0,0,0,0,0,0,0,0,0,6.3497238,0,0,0,42.849998,62.849998,-9,-9,4,1,1,0,0,4,5,1,642,68006.516,0,0,3753.0178 -2718,3359,6128,-9,6127,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,0,5,7.3122978,7.2298965,0,3,0,0,0,-9,0,-895.36731,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,40,0,15,1,1,-9,1,4.7742348,4.7742348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.450001,54.669998,-9,-9,3,1,1,0,0,4,3,1,405,149870.95,0,0,1672.3895 -2719,3360,6129,6130,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,1,4,8.3281727,8.26898,0,2,0,-9,18,0,-4,154.9046,0,0,0,50,2,4,1,2,2,2019,1,2,10,1,30,32,15,1,0,1,0,18.957361,18.957361,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.779933,3,57.16,56.150002,38.939999,60.48,6,1,1,0,0,5,4,1,804.5,1106640.1,0,0,3964.8989 -2719,3360,6130,6129,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.6272831,8.8503561,0,2,0,-9,18,0,4,45.882992,0,0,0,46,2,4,1,2,2,2019,1,1,6,0,60,54,15,1,0,1,0,12.828915,12.828915,0,0,0,0,0,0,0,14.5,1,1,0,0,0,27.895426,3,38.939999,60.48,57.16,56.150002,5,1,1,0,0,5,4,1,804.5,1106640.1,0,0,3964.8989 -2719,3360,6131,-9,6129,6130,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.7283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,5,4,1,804.5,1106640.1,0,0,3964.8989 -2719,3360,6132,-9,6129,6130,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.1285,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,804.5,1106640.1,0,0,3964.8989 -2720,3361,6133,6134,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,0,4,8.0551758,7.7972898,0,1,0,-9,2,0,6,55.895676,-9,1,0,21,2,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,0,1,0,7.7815657,7.7815657,0,0,0,0,0,0,0,0,0,0,0,2.0412908,0,0,0,54.200001,57.490002,45.810001,58.990002,4,1,1,0,0,10,4,0,879,91429.469,0,0,2294.0298 -2720,3361,6134,6133,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,0,4,7.1936431,7.357904,0,1,0,-9,2,0,-6,-69.62532,-9,1,1,27,2,4,1,-9,-9,2019,1,2,8,0,29,0,15,1,0,1,0,5.0302105,5.0302105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,58.990002,54.200001,57.490002,5,1,1,0,0,10,4,0,879,91429.469,0,0,2294.0298 -2721,3362,6135,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,1,1,0,0,4,8.0514526,7.7865586,0,3,0,0,0,-9,0,-989.96265,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,30,40,15,1,0,-9,0,13.512105,13.512105,0,0,0,0,0,0,0,14.5,0,0,0,0,0,14.236183,3,47.380001,57.75,-9,-9,6,1,1,0,0,1,4,1,3266,502031.66,0,0,1757.0625 -2722,3363,6136,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,1,3,0,7.4741669,7.3807917,3,0,0,0,-9,0,-979.34344,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9924638,7.7057056,0,0,45.43,47.970001,-9,-9,5,1,1,0,0,7,3,1,524,534851.38,0,0,1407.6858 -2723,3364,6137,6138,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,4,0,7.3476195,7.5092759,1,0,-9,2,0,-15,46.403473,0,0,0,80,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7785606,7.089499,0,0,57.16,56.150002,54.099998,50.73,7,1,1,0,0,9,2,1,666,546606.5,0,0,3044.7939 -2723,3364,6138,6137,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,0,4,0,5.4693632,5.8240113,1,0,-9,2,0,15,58.231808,0,0,0,65,3,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1836948,5.20506,0,0,54.099998,50.73,57.16,56.150002,6,1,1,0,0,9,2,1,666,546606.5,0,0,3044.7939 -2724,3365,6139,-9,6141,6142,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1140.736,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,384,74792.469,0,0,1067.8933 -2724,3365,6140,-9,6141,6142,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1135.9147,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,0,384,74792.469,0,0,1067.8933 -2724,3365,6141,6142,-9,-9,2,1,0,31,1,0,2,0,2,-9,2,1,0,0,5,7.3010621,7.5431252,0,2,0,-9,13,0,-10,-2.4578865,0,0,1,41,1,4,3,3,3,2019,2,1,6,0,30,38,15,1,0,3,0,6.5955572,6.5955572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,52,55,6,2,3,0,0,8,2,0,384,74792.469,0,0,1067.8933 -2724,3365,6142,6141,-9,-9,1,1,1,41,1,0,2,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,13,0,10,-6.5469556,0,0,0,31,2,5,1,2,2,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.060001,57.759998,5,2,3,1,0,8,2,0,384,74792.469,0,0,1067.8933 -2725,3366,6143,-9,6146,6145,1,1,1,25,2,0,2,0,1,-9,2,1,0,0,4,8.4030094,7.8999696,0,3,0,0,0,-9,0,-978.36163,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,41,38,15,1,0,-9,1,12.202017,12.202017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,4,0,604,-17811.209,0,0,1270.6997 -2725,3367,6144,-9,6146,6145,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-986.33289,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,1,1,0,580.5,-63877.988,0,0,0 -2725,3367,6145,6146,-9,-9,3,1,1,53,1,0,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,27,0,10,0,-9,0,0,43,2,5,3,-9,-9,2019,4,2,18,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,27,52,57,4,2,3,0,0,1,1,0,580.5,-63877.988,0,0,0 -2725,3367,6146,6145,-9,-9,2,1,0,43,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,27,0,-10,0,0,0,1,53,3,1,3,2,3,2019,4,3,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,124.01372,1,52,57,39,27,6,2,3,0,0,1,1,0,580.5,-63877.988,0,0,0 -2725,3367,6147,-9,6146,6145,6,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.72833,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,1,1,0,580.5,-63877.988,0,0,0 -2725,3368,6148,-9,6146,6145,4,1,1,21,2,0,2,1,2,0,7,2,0,0,4,6.3087196,6.3099756,0,3,0,0,0,-9,0,-962.28418,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,2,0,430,-116270.46,0,0,1535.4418 -2726,3369,6149,-9,6150,6152,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.4047,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,596.75,155597.92,0,0,2088.5334 -2726,3369,6150,6152,-9,-9,1,1,0,28,1,0,2,0,2,-9,2,1,0,0,2,7.2988,6.9041576,0,2,0,-9,10,0,-2,-9.2747087,0,1,1,30,2,4,1,2,2,2019,1,2,24,11,30,12,15,1,1,1,0,5.3811665,5.3811665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.89,60.889999,60.119999,54.799999,4,1,1,0,0,4,3,0,596.75,155597.92,0,0,2088.5334 -2726,3369,6151,-9,6150,6152,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.84784,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,596.75,155597.92,0,0,2088.5334 -2726,3369,6152,6150,-9,-9,2,1,1,30,1,0,2,0,2,-9,2,1,0,0,4,8.168786,7.9382992,0,2,0,-9,10,0,2,22.943264,0,0,0,28,2,2,1,2,2,2019,1,1,3,0,48,48,15,1,0,1,0,7.1802416,7.1802416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,15.89,60.889999,7,1,1,0,0,4,3,0,596.75,155597.92,0,0,2088.5334 -2727,3370,6153,6154,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,5,0,8.3382683,8.0123606,1,0,-9,6,0,1,-71.360657,0,0,0,74,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3864388,8.425046,0,0,59.43,58.049999,57.16,56.150002,7,1,1,0,0,11,4,1,902,899885.25,0,0,3954.6328 -2727,3370,6154,6153,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,6.6543531,6.8032289,1,0,-9,6,0,-1,-69.426216,0,0,0,75,2,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0573983,6.9796185,0,0,57.16,56.150002,59.43,58.049999,7,1,1,0,0,11,4,1,902,899885.25,0,0,3954.6328 -2728,3371,6155,6156,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,44,-9,0,-10.012345,-9,0,0,72,3,4,3,3,-9,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6687101,0,0,0,39.419998,60.240002,47.830002,54.779999,4,1,1,0,0,9,2,1,963.5,3029794,0,0,952.38416 -2728,3371,6156,6155,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,7.2294998,7.0262618,1,0,-9,44,-9,0,10.007098,-9,0,0,72,3,4,3,-9,-9,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0327778,7.0261531,0,0,47.830002,54.779999,39.419998,60.240002,5,1,1,0,0,9,2,1,963.5,3029794,0,0,952.38416 -2729,3372,6157,-9,6160,6159,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.3714,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,936.5,322193.94,0,0,2912.4719 -2729,3372,6158,-9,6160,6159,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.16071,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,4,1,936.5,322193.94,0,0,2912.4719 -2729,3372,6159,6160,-9,-9,1,1,1,48,1,0,2,0,3,-9,1,1,0,0,3,8.257659,8.3549328,0,2,0,-9,18,0,6,-3.7976332,0,0,0,42,2,4,1,3,2,2019,1,2,10,0,38,40,15,1,0,1,0,20.14575,20.14575,0,0,0,0,0,0,0,0,1,1,0,1.8188236,0,0,0,49.52,56.950001,52.82,53.970001,5,1,1,0,0,9,4,1,936.5,322193.94,0,0,2912.4719 -2729,3372,6160,6159,-9,-9,2,1,0,42,1,0,2,0,2,-9,1,1,0,0,4,7.706357,7.6981783,0,2,0,-9,18,0,-6,43.118496,0,0,1,48,3,3,1,2,2,2019,1,1,12,1,46,36,15,1,0,1,0,5.4996462,5.4996462,0,0,0,0,0,0,0,0,1,1,0,2.1936128,0,0,0,52.82,53.970001,49.52,56.950001,5,1,1,0,1,9,4,1,936.5,322193.94,0,0,2912.4719 -2730,3373,6161,6162,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,2,8.6236734,8.7422361,0,1,0,-9,33,0,3,-.14832017,0,0,0,54,1,4,1,2,-9,2019,1,2,13,1,38,38,15,1,0,1,0,14.507924,14.507924,0,0,0,0,0,0,0,0,0,0,0,2.264637,0,0,0,47.91,37.830002,58.720001,51.290001,5,1,1,0,0,13,5,1,751,977585,0,0,5143.8467 -2730,3373,6162,6161,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.777647,9.0660191,0,1,0,-9,32,0,-3,45.813801,0,0,0,57,1,2,1,2,3,2019,1,1,8,0,38,38,15,1,0,1,0,22.900213,22.900213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,51.290001,47.91,37.830002,6,1,1,0,0,13,5,1,751,977585,0,0,5143.8467 -2730,3374,6163,-9,6162,6161,3,1,1,20,2,0,0,0,3,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1063.9615,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.990002,-9,-9,6,1,1,0,1,13,1,1,264,-174752.69,0,0,0 -2731,3375,6164,-9,-9,-9,1,1,0,69,2,0,0,0,1,-9,4,3,0,0,3,0,7.6738572,7.8920655,3,0,0,0,-9,0,-1027.5677,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7418332,0,0,43.07,51.880001,-9,-9,7,1,1,0,0,12,4,1,1254,721823.56,0,0,2077.6125 -2732,3376,6165,6166,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,0,3,8.1319847,8.1240587,0,1,0,-9,45,0,-2,55.81118,0,0,0,66,2,2,3,3,3,2019,2,1,11,0,20,25,15,1,0,4,0,24.047426,24.047426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.310001,53.470001,18.41,56.759998,5,1,1,0,0,7,4,1,1073,1950018.3,0,0,2281.7236 -2732,3376,6166,6165,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,2,-15.128201,0,0,0,64,2,3,1,3,2,2019,3,2,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.41,56.759998,57.310001,53.470001,7,1,1,0,0,7,4,1,1073,1950018.3,0,0,2281.7236 -2733,3377,6167,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,1,1,0,0,5,9.7455015,9.7591105,0,3,0,0,0,-9,0,-1094.0026,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,60,37,15,1,0,-9,0,31.67985,31.67985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.66,56.93,-9,-9,6,1,1,0,0,9,5,1,770,444386.56,0,0,7567.3652 -2734,3378,6168,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,1,7.7926393,8.1265316,0,3,0,0,0,-9,0,-1069.8728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,10,38,37,15,1,1,-9,1,7.437181,7.437181,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.533831,3,38,27,-9,-9,2,1,1,0,1,11,4,0,740,99399.828,0,0,202.11771 -2735,3379,6169,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,1,1,0,0,4,7.8664765,8.1831217,7.2015018,3,0,0,0,-9,0,-994.32703,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,30,15,1,0,-9,0,13.429293,13.429293,0,0,0,0,0,0,0,0,1,1,0,6.4644675,7.0785823,0,0,61.68,49.950001,-9,-9,7,1,1,0,0,9,4,0,205,1919019.1,0,0,1250.5593 -2736,3380,6170,6171,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,4,6.1866517,6.2507091,0,1,0,-9,44,0,6,88.762421,0,0,0,61,3,2,3,3,3,2019,2,1,1,0,40,21,15,1,0,4,0,1.3720374,1.3720374,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.240002,49.09,39.389999,37.66,6,1,1,0,0,7,2,0,322.5,544252.31,0,0,896.37134 -2736,3380,6171,6170,-9,-9,1,1,0,61,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,44,0,-6,-1.5704609,0,0,0,67,2,4,1,-9,-9,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.9386935,0,0,3,39.389999,37.66,45.240002,49.09,5,1,1,0,0,7,2,0,322.5,544252.31,0,0,896.37134 -2737,3381,6172,-9,-9,-9,1,1,0,41,3,0,1,0,1,-9,2,1,0,0,3,8.1693821,8.2584124,0,4,0,0,0,-9,0,-991.67065,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,33,34,15,1,0,-9,0,9.2279587,9.2279587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,2,1,1,0,1,8,3,0,167,242811.55,0,0,2343.6768 -2738,3382,6173,6174,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,8.6367788,8.3330612,1,0,-9,36,0,1,89.039848,0,0,0,61,2,5,3,3,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.9898033,8.449193,18.253147,3,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,1,4,1,1127,1643331,0,0,3315.1274 -2738,3382,6174,6173,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,5,0,6.2045202,6.1533914,1,0,-9,36,0,-1,52.46909,0,0,0,62,2,4,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9570198,6.3853855,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,1,4,1,1127,1643331,0,0,3315.1274 -2738,3383,6175,-9,6174,6173,3,1,0,32,2,0,0,0,1,-9,3,3,0,0,4,0,6.0274153,6.0412426,3,0,-9,0,-9,0,-933.93329,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.1200218,0,2.7360787,3,51.77,58.57,-9,-9,6,1,1,1,0,1,2,1,599,-217207.95,0,0,-69.958458 -2739,3384,6176,6177,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,2,4.662817,4.7130165,0,1,0,-9,38,0,-2,-96.53614,0,0,0,58,2,4,1,2,2,2019,1,1,18,6,34,29,15,1,1,1,0,.37049267,.37049267,0,0,0,0,0,0,0,2,0,0,0,0,0,1.9051825,3,49.549999,20.99,40.380001,59.139999,3,1,1,0,0,5,4,1,343,498897.44,0,0,2436.5662 -2739,3384,6177,6176,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,9.0427866,8.8437109,0,1,0,-9,38,0,2,-112.09132,0,0,0,56,1,2,1,2,2,2019,1,2,10,0,48,38,15,1,0,1,0,16.785688,16.785688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.380001,59.139999,49.549999,20.99,5,1,1,0,0,5,4,1,343,498897.44,0,0,2436.5662 -2740,3385,6178,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,4,0,5.0157075,5.6508822,3,0,0,0,-9,0,-1009.118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3302822,5.5422378,0,0,45.91,59.889999,-9,-9,7,1,1,0,0,12,2,0,267,255256.31,0,0,1706.9811 -2741,3386,6179,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1056.1575,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,56.509998,-9,-9,7,1,1,0,0,12,1,0,141,228445.09,0,0,322.55127 -2742,3387,6180,6181,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,0,4,0,8.2125158,8.6017532,1,0,-9,58,0,5,-96.396271,0,0,0,78,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2287645,0,0,60.540001,42.25,55.900002,51.290001,7,1,1,0,0,1,4,1,500,1854259.1,0,0,2860.1152 -2742,3387,6181,6180,-9,-9,2,1,0,78,1,0,0,0,1,-9,4,3,0,0,3,4.3331385,4.4170556,0,1,0,-9,58,0,-5,-146.50253,0,0,0,83,1,4,3,3,2,2019,4,1,6,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.5256922,0,24.342979,1,55.900002,51.290001,60.540001,42.25,7,1,1,0,0,1,4,1,500,1854259.1,0,0,2860.1152 -2743,3388,6182,-9,6185,6183,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.56079,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,1074.5,319539.91,0,0,5005.207 -2743,3388,6183,6185,-9,-9,1,1,1,43,1,1,2,0,1,-9,2,1,0,0,5,9.436903,9.2870922,0,2,0,-9,10,0,5,-22.698891,0,0,0,38,1,4,3,2,1,2019,2,2,7,0,47,50,15,1,0,3,0,33.549339,33.549339,0,0,0,0,0,0,0,0,0,0,0,7.7515097,0,0,0,57.060001,57.759998,35.91,63.189999,7,1,1,0,0,9,5,1,1074.5,319539.91,0,0,5005.207 -2743,3388,6184,-9,6185,6183,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.73358,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,1074.5,319539.91,0,0,5005.207 -2743,3388,6185,6183,-9,-9,2,1,0,38,1,1,2,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,10,0,-5,-53.421474,0,0,1,43,1,5,1,-9,-9,2019,3,1,11,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.189999,57.060001,57.759998,6,1,1,1,0,9,5,1,1074.5,319539.91,0,0,5005.207 -2744,3389,6186,-9,6187,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1071.9,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,0,635.66669,50766.527,0,0,2190.3357 -2744,3389,6187,-9,-9,-9,1,1,0,43,2,0,2,0,2,-9,2,1,0,0,4,6.9836426,7.1114941,0,4,0,0,0,-9,0,-913.05719,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,16,23,15,1,0,-9,0,9.7757339,9.7757339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.060001,61.119999,-9,-9,3,1,1,0,0,10,2,0,635.66669,50766.527,0,0,2190.3357 -2744,3389,6188,-9,6187,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-947.77991,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,0,635.66669,50766.527,0,0,2190.3357 -2745,3390,6189,-9,6191,6192,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1011.9738,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,5,2,1,931.5,571951,0,0,2391.6606 -2745,3390,6190,-9,6191,6192,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1070.533,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,5,2,1,931.5,571951,0,0,2391.6606 -2745,3390,6191,6192,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,17,0,0,-5.969954,0,0,1,47,2,4,1,3,3,2019,1,2,12,0,0,31,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,5,2,1,931.5,571951,0,0,2391.6606 -2745,3390,6192,6191,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,0,4,7.4954515,7.5470695,0,2,0,-9,17,0,9,-13.166875,0,0,0,38,2,4,1,2,2,2019,1,1,8,1,50,0,15,1,0,1,0,3.9994807,3.9994807,0,0,0,0,0,0,0,0,1,1,0,7.7445326,0,0,0,54.200001,57.490002,54.200001,57.490002,5,1,1,0,0,5,2,1,931.5,571951,0,0,2391.6606 -2746,3391,6193,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1152.4701,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,3.6089931,0,7.5856009,0,0,53.881939,0,1,1,0,0,0,0,0,18.74,32.279999,-9,-9,2,1,1,0,0,10,1,0,749,-59642.926,0,0,722.92047 -2747,3392,6194,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,0,5,0,6.968256,6.3236465,3,0,0,0,-9,0,-893.48035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0352697,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,6,2,1,463,442931.53,0,0,1739.9335 -2748,3393,6195,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1093.1118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.669998,31.370001,-9,-9,6,1,1,0,0,12,1,0,698,-209931.59,0,0,1183.1274 -2749,3394,6196,6197,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,4,8.3180304,8.2396822,0,1,0,-9,41,0,1,99.468178,0,0,0,60,1,3,3,2,1,2019,2,1,12,0,25,25,15,1,0,4,0,24.879374,24.879374,0,0,0,0,0,0,0,0,0,0,0,3.4894419,0,0,0,49.41,58.279999,38.639999,55.029999,6,1,1,0,0,9,5,1,652.5,3438234.5,0,0,3234.5554 -2749,3394,6197,6196,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,0,3,0,8.2842417,8.1107769,1,0,-9,41,0,-1,115.08648,0,0,0,61,1,4,1,3,3,2019,3,2,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2346716,8.3317394,0,0,38.639999,55.029999,49.41,58.279999,6,1,1,0,0,9,5,1,652.5,3438234.5,0,0,3234.5554 -2750,3395,6198,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,0,4,0,8.1054535,7.5600095,3,0,0,0,-9,0,-974.71875,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.4857943,8.0852652,.95160472,3,52.880001,56.68,-9,-9,6,1,1,0,0,10,4,1,4432,540833.13,0,0,2312.0999 -2751,3396,6199,6202,-9,-9,1,1,1,33,1,0,2,0,1,-9,2,1,0,0,5,9.2234106,9.2350845,0,2,0,-9,13,0,1,28.586733,0,0,0,32,2,3,1,2,3,2019,1,2,10,0,36,46,15,1,0,1,0,29.195404,29.195404,0,0,0,0,0,0,0,2,1,1,0,0,0,2.1740828,3,45.810001,61.509998,40.189999,50.389999,6,1,1,0,0,9,5,1,641.25,316720.22,0,0,3692.103 -2751,3396,6200,-9,6202,6199,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.22632,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,641.25,316720.22,0,0,3692.103 -2751,3396,6201,-9,6202,6199,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.2843,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,641.25,316720.22,0,0,3692.103 -2751,3396,6202,6199,-9,-9,2,1,0,32,1,0,2,0,2,-9,2,1,0,0,3,8.1565342,8.2111254,0,2,0,-9,13,0,-1,-1.8706913,0,0,1,33,1,5,1,2,1,2019,1,1,11,1,40,32,15,1,0,1,0,9.1319942,9.1319942,0,0,0,0,0,0,0,2,1,1,0,0,0,.61205411,3,40.189999,50.389999,45.810001,61.509998,5,1,1,0,0,9,5,1,641.25,316720.22,0,0,3692.103 -2752,3397,6203,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,2,1,0,1,2,5.0172715,5.0974288,0,3,0,0,0,-9,0,-987.45441,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,8,8,15,1,0,-9,0,2.5778065,2.5778065,0,0,0,0,0,0,0,0,1,1,0,2.8295555,0,0,0,52.299999,38.779999,-9,-9,1,1,1,0,0,13,2,0,684,-58268.367,0,0,1132.7329 -2753,3398,6204,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,0,2,0,0,0,3,0,0,0,-9,0,-962.71478,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,0,12,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,28.75,-9,-9,5,1,1,0,1,10,1,1,413,139901.27,0,0,199.73691 -2754,3399,6205,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,1,0,6.4237547,6.2586665,3,0,0,0,-9,0,-1037.9417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3060284,0,0,41.759998,17.84,-9,-9,5,1,1,0,0,2,2,1,658,248703.25,0,0,-273.8457 -2755,3400,6206,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,0,3,0,6.737062,6.8061037,3,0,0,0,-9,0,-993.66119,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3414232,7.1184602,0,0,53,46,-9,-9,6,1,1,0,0,5,2,1,596,223326.58,0,0,765.80823 -2755,3401,6207,-9,-9,6206,2,1,1,43,2,0,0,0,1,-9,1,1,0,0,4,7.0931969,6.9627872,0,3,0,0,0,-9,0,-1002.1523,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,2.6570842,2.6570842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,2,1,834,648387.94,0,0,1649.8615 -2756,3402,6208,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,2,0,6.8040724,6.9151835,3,0,0,0,-9,0,-967.46796,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6876116,0,0,48.77,22.190001,-9,-9,6,1,1,0,0,9,2,1,955,417138.63,0,0,1343.9746 -2757,3403,6209,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,4,0,8.0228081,8.1337204,3,0,0,0,-9,0,-981.00647,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1824179,8.3900375,0,0,59.139999,52.5,-9,-9,7,1,1,0,0,9,4,1,1885,1053781.1,0,0,3556.8728 -2758,3404,6210,-9,6212,6211,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.41199,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,3,0,321.5,104299.78,0,0,2860.2346 -2758,3404,6211,6212,-9,-9,1,1,1,37,1,0,3,0,3,-9,2,1,0,0,4,8.015152,7.8697677,0,2,0,-9,12,0,1,-180.98865,0,0,0,36,1,3,1,-9,2,2019,1,2,7,0,40,40,15,1,0,1,0,8.5352316,8.5352316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,61.279999,46.169998,6,1,1,0,0,1,3,0,321.5,104299.78,0,0,2860.2346 -2758,3404,6212,6211,-9,-9,2,1,0,36,1,0,3,0,1,1,2,1,0,0,3,7.4362025,7.9750528,0,2,0,-9,12,0,-1,-28.010586,-9,0,1,37,3,4,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,7.3393741,7.3393741,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,46.169998,57.16,56.150002,5,1,1,0,0,1,3,0,321.5,104299.78,0,0,2860.2346 -2758,3404,6213,-9,6212,6211,4,1,1,16,2,0,3,0,2,-9,11,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.10101,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,1,3,0,321.5,104299.78,0,0,2860.2346 -2758,3405,6214,-9,6212,6211,3,1,0,18,2,0,3,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-921.83246,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,14,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.610001,49.02,-9,-9,5,1,1,0,0,1,3,0,1256,-195268.2,0,0,0 -2759,3406,6215,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,5,0,7.7725677,7.6558533,3,0,0,0,-9,0,-1002.0626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.44645655,7.5850029,0,0,48.18,61.799999,-9,-9,7,1,1,0,0,11,3,1,875,428449.47,0,0,2132.4565 -2760,3407,6216,6217,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.7503066,7.8735886,1,0,-9,8,0,3,29.680647,0,0,0,66,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.0925932,7.6555824,8.4445715,3,57.330002,53.459999,37.169998,47.900002,6,1,1,0,0,9,3,1,698,1220781.3,0,0,3494.5708 -2760,3407,6217,6216,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.8924918,6.9112415,1,0,-9,8,0,-3,-38.894913,0,0,0,69,2,3,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0576928,6.5961785,0,0,37.169998,47.900002,57.330002,53.459999,6,1,1,0,0,9,3,1,698,1220781.3,0,0,3494.5708 -2761,3408,6218,6219,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,-2,-45.91544,0,0,0,66,2,2,1,2,3,2019,3,2,15,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.7505283,3,36.200001,60.580002,31.209999,38.91,6,1,1,0,0,9,3,1,427,1154614.1,0,0,2329.7798 -2761,3408,6219,6218,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,0,2,7.185874,7.4575353,7.2231274,1,0,-9,43,0,2,71.209679,0,0,0,64,2,4,3,3,3,2019,2,1,19,8,8,15,15,1,1,4,0,15.932649,15.932649,0,0,0,0,0,0,0,0,1,1,0,6.5062118,7.086678,0,0,31.209999,38.91,36.200001,60.580002,2,1,1,0,0,9,3,1,427,1154614.1,0,0,2329.7798 -2762,3409,6220,-9,6222,6221,4,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.67053,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,3,1,1123.6666,157645,0,0,1758.5404 -2762,3409,6221,6222,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,8.5487461,8.5773134,0,2,0,-9,7,0,3,103.69598,0,0,0,43,2,4,3,-9,-9,2019,2,1,6,0,37,37,15,1,0,3,0,15.397054,15.397054,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,48.77,57.639999,6,1,1,0,0,1,3,1,1123.6666,157645,0,0,1758.5404 -2762,3409,6222,6221,-9,-9,1,1,0,43,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-3,75.668854,0,0,1,46,2,4,1,2,-9,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.639999,48.279999,60.18,6,1,1,0,0,1,3,1,1123.6666,157645,0,0,1758.5404 -2762,3410,6223,-9,6222,6221,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,3.8237531,3.8910644,0,3,0,0,0,-9,0,-860.27869,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,1,1,1,536,20342.201,0,0,764.94897 -2763,3411,6224,6225,-9,-9,2,1,0,28,1,0,0,0,2,-9,5,1,0,0,4,7.5171075,7.6294217,0,1,0,-9,7,0,-7,11.414646,0,1,1,35,1,5,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,7.5088463,7.5088463,0,0,0,0,0,0,0,0,1,1,0,3.4740953,0,0,0,53.549999,51.09,53,59,7,2,3,0,0,8,5,1,1225.5,431382.81,0,0,4897.7988 -2763,3411,6225,6224,-9,-9,1,1,1,35,1,0,0,0,1,-9,1,1,0,0,5,8.4178648,8.7359037,0,1,0,-9,7,0,7,6.0853047,0,0,0,28,2,4,1,-9,-9,2019,1,2,0,0,40,35,15,1,0,1,0,17.479364,17.479364,0,0,0,0,0,0,0,0,1,1,0,3.9679527,0,0,0,53,59,53.549999,51.09,7,4,5,0,0,8,5,1,1225.5,431382.81,0,0,4897.7988 -2764,3412,6226,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-940.33167,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.889999,24.959999,-9,-9,4,1,1,0,0,2,1,0,609,61697.34,0,0,636.50885 -2765,3413,6227,6228,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,8.3420868,8.3745756,0,1,0,-9,15,0,0,41.228298,0,0,1,44,1,4,1,2,2,2019,1,2,7,0,37,37,15,1,0,1,0,13.542134,13.542134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,6,5,1,509.5,440360.06,0,0,4391.5513 -2765,3413,6228,6227,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,0,4,8.9593086,9.0861454,0,1,0,-9,15,0,0,-229.1368,0,0,0,44,2,4,1,2,2,2019,1,1,7,0,39,38,15,1,0,1,0,20.455366,20.455366,0,0,0,0,0,0,0,0,0,0,0,3.0652919,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,6,5,1,509.5,440360.06,0,0,4391.5513 -2766,3414,6229,6230,-9,-9,2,1,0,41,1,0,2,0,3,-9,2,1,0,0,4,7.1435013,7.4321046,0,2,0,-9,1,-9,-1,25.078024,-9,0,1,42,1,4,1,3,2,2019,1,1,6,0,32,0,15,1,0,1,0,4.8421731,4.8421731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.150002,49.669998,6,1,1,0,0,13,4,1,2203.3333,192318.64,0,0,4101.9702 -2766,3414,6230,6229,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.0564594,9.0795774,0,2,0,-9,1,-9,1,37.117943,-9,0,0,41,3,4,1,2,2,2019,1,2,13,2,60,0,15,1,0,1,0,16.596779,16.596779,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,49.669998,57.16,56.150002,6,1,1,0,0,13,4,1,2203.3333,192318.64,0,0,4101.9702 -2766,3414,6231,-9,6229,6230,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1026.5411,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,4,1,2203.3333,192318.64,0,0,4101.9702 -2767,3415,6232,6233,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,5.3368454,5.1904802,1,0,-9,10,0,-1,17.849873,0,0,0,79,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.7513852,5.2164154,8.9067039,1,43.439999,48.709999,44.52,23.15,1,1,1,0,0,11,2,1,568,-42293.531,0,0,1647.321 -2767,3415,6233,6232,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,1,2,0,6.8333578,6.4160047,1,0,-9,10,0,1,184.58479,0,0,0,78,3,3,3,3,3,2019,4,2,16,3,0,0,15,4,0,4,0,0,0,1,0,119.32246,0,0,0,0,0,1,1,0,0,6.8774896,0,0,44.52,23.15,43.439999,48.709999,5,1,1,0,0,11,2,1,568,-42293.531,0,0,1647.321 -2768,3416,6234,6235,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,7.527637,7.0315909,1,0,-9,35,0,13,154.08235,0,0,0,63,2,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.016305,7.4931846,0,0,62.66,52.400002,57.330002,53.459999,6,1,1,0,0,2,2,1,1109,669261.63,0,0,1196.1877 -2768,3416,6235,6234,-9,-9,1,1,0,63,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,35,0,-13,-52.950226,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,62.66,52.400002,6,1,1,0,0,2,2,1,1109,669261.63,0,0,1196.1877 -2769,3417,6236,6237,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,9.9519539,10.180772,0,1,0,-9,6,0,0,3.1302326,-9,0,0,52,2,4,1,3,2,2019,1,2,7,0,45,0,15,1,0,1,0,47.588699,47.588699,0,0,0,0,0,0,0,0,0,0,0,2.4461975,0,0,0,58.150002,52.91,47.799999,52.52,6,1,1,0,0,11,5,1,449,912905.63,0,0,8891.7549 -2769,3417,6237,6236,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,6.2969356,6.4462099,0,1,0,-9,6,0,0,46.031525,0,0,0,52,2,4,1,-9,-9,2019,1,1,15,6,21,0,15,1,1,1,0,4.120203,4.120203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.799999,52.52,58.150002,52.91,7,1,1,0,0,11,5,1,449,912905.63,0,0,8891.7549 -2769,3418,6238,-9,6237,6236,3,1,1,24,2,0,0,0,1,-9,1,1,0,0,4,6.6698136,6.2689514,0,3,0,0,0,-9,0,-1152.2811,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,60,20,15,1,0,-9,1,1.3249198,1.3249198,0,0,0,0,0,0,0,0,0,0,0,2.4144387,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,11,2,1,282,-28000.479,0,0,126.06322 -2770,3419,6239,6240,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.1435246,6.11764,1,0,-9,51,0,-3,-22.453098,0,0,0,74,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0061595,6.2875037,0,0,53.639999,46.82,58.650002,39.139999,6,1,1,0,0,10,3,1,264.5,685359.06,0,0,2246.3657 -2770,3419,6240,6239,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.7831721,7.8881269,1,0,-9,51,0,3,-28.954519,0,0,0,71,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1824808,7.7375612,0,0,58.650002,39.139999,53.639999,46.82,7,1,1,0,0,10,3,1,264.5,685359.06,0,0,2246.3657 -2771,3420,6241,6242,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.0503321,7.892766,0,1,0,-9,9,0,-2,20.891516,0,0,0,52,2,3,1,2,2,2019,1,2,7,0,29,37,15,1,0,1,0,13.339067,13.339067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,39.220001,55.189999,6,1,1,0,0,12,5,1,461,1255552.1,0,0,2419.9404 -2771,3420,6242,6241,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.5654936,8.6788836,0,1,0,-9,9,0,2,-21.540905,0,0,0,50,1,4,1,2,2,2019,1,1,18,7,42,40,15,1,1,1,0,13.658813,13.658813,0,0,0,0,0,0,0,0,1,1,0,3.0149307,0,0,0,39.220001,55.189999,57.16,56.150002,4,1,1,0,0,12,5,1,461,1255552.1,0,0,2419.9404 -2771,3421,6243,-9,6241,6242,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,8.2539864,7.9606371,0,3,0,0,0,-9,0,-895.729,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,27,35,15,1,0,-9,1,14.337158,14.337158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.450001,54.09,-9,-9,2,1,1,0,0,12,4,1,511,0,0,0,450.03528 -2771,3422,6244,-9,6241,6242,4,1,0,18,2,0,0,1,2,0,7,2,0,0,2,7.1729298,6.9547129,0,3,0,0,0,-9,0,-1022.3433,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,21,7,14,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.25398782,0,0,0,31.059999,46.939999,-9,-9,3,1,1,0,0,12,2,1,557,-20748.287,0,0,369.11441 -2772,3423,6245,-9,6247,6246,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.5358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,1321,36694.652,0,0,3160.25 -2772,3423,6246,6247,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,3,8.7329874,8.6394062,0,2,0,-9,9,0,3,26.416834,0,0,0,33,2,2,1,1,2,2019,1,2,12,2,50,48,15,1,0,1,0,13.001955,13.001955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.330002,12.91,33.560001,4,1,1,0,0,1,4,1,1321,36694.652,0,0,3160.25 -2772,3423,6247,6246,-9,-9,2,1,0,33,1,0,1,0,2,-9,2,1,0,0,2,7.1692276,7.000206,0,2,0,-9,9,0,-3,-144.58559,0,0,1,36,2,3,1,1,1,2019,1,1,36,12,27,28,15,1,1,1,0,4.2027378,4.2027378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.91,33.560001,47.66,52.330002,2,1,1,0,0,1,4,1,1321,36694.652,0,0,3160.25 -2773,3424,6248,-9,-9,-9,2,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,8.3015471,7.9056697,0,3,0,0,0,-9,0,-979.29767,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,37,15,1,0,-9,1,8.9474716,8.9474716,0,0,0,0,0,0,0,0,0,0,0,3.2423692,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,12,4,1,519,-219721.8,0,0,1831.3011 -2774,3425,6249,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,2,1,0,0,4,8.763442,8.5893841,0,3,0,0,0,-9,0,-921.72992,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,40,15,1,0,-9,0,17.301796,17.301796,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.574623,3,46.98,53.82,-9,-9,6,1,1,0,0,11,5,1,1223,561730.81,0,0,1449.1974 -2774,3426,6250,-9,-9,-9,2,1,0,51,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1079.6923,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,20.629999,-9,-9,5,1,1,0,0,11,1,1,465,-112612.36,0,0,1020.9273 -2775,3427,6251,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,4,7.8848763,7.565937,0,3,0,0,0,-9,0,-966.42297,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,32,32,15,1,0,-9,0,8.787878,8.787878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.049999,55.389999,-9,-9,5,1,1,0,0,13,3,0,377,184526.17,0,0,467.77518 -2775,3428,6252,-9,6251,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,0,5,6.9629407,7.3237395,0,3,0,0,0,-9,0,-1046.8928,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,20,0,15,1,0,-9,1,7.1093302,7.1093302,0,0,0,0,0,0,0,0,0,0,0,3.0732715,0,0,0,62.389999,56.709999,-9,-9,5,1,1,0,0,13,2,0,920,36928.344,0,0,-383.96417 -2776,3429,6253,6254,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,5.4517708,5.6062813,0,1,0,-9,47,0,-3,68.594887,0,0,0,71,2,3,3,3,3,2019,4,2,10,0,4,5,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5275826,0,0,0,50.080002,55.330002,52,47,6,1,1,0,0,10,2,1,1073.5,881349.75,0,0,1600.4188 -2776,3429,6254,6253,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.5709171,6.3239012,1,0,-9,10,0,3,-94.330162,0,0,0,68,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4321442,0,0,52,47,50.080002,55.330002,5,1,1,0,0,10,2,1,1073.5,881349.75,0,0,1600.4188 -2776,3430,6255,-9,6253,6254,3,1,0,32,2,0,0,0,2,-9,2,1,0,0,4,7.8700929,7.8682971,0,3,0,0,0,-9,0,-950.31067,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,40,40,15,1,0,-9,1,9.2379122,9.2379122,0,0,0,0,0,0,0,0,1,1,0,5.4084239,0,0,0,47,57,-9,-9,5,1,1,0,0,10,3,1,709,-52716.246,0,0,1050.5645 -2777,3431,6256,6257,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,4,6.5218148,7.6342616,7.4901929,1,0,-9,47,0,-3,47.35947,0,0,0,71,1,3,3,3,3,2019,2,1,9,0,20,38,15,1,0,4,0,4.4498677,4.4498677,0,0,0,0,0,0,0,0,1,1,0,7.6178842,7.2923551,0,0,53.860001,57.860001,46.450001,42.259998,6,3,4,0,0,8,3,1,364,1229294.8,0,0,3210.5671 -2777,3431,6257,6256,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,3,0,7.2310014,7.0907207,1,0,-9,47,0,3,-132.60217,0,0,0,68,1,4,1,-9,-9,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1568797,7.1643462,0,0,46.450001,42.259998,53.860001,57.860001,5,3,4,0,0,8,3,1,364,1229294.8,0,0,3210.5671 -2778,3432,6258,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,1,2,0,5.875823,6.2414947,3,0,0,0,-9,0,-1073.1349,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,1,1.3985425,0,3.0263615,0,3.8249545,26.870472,0,1,1,0,0,6.2635031,0,0,63.07,10.78,-9,-9,7,1,1,0,0,10,2,1,257,232085.39,0,0,1726.7511 -2779,3433,6259,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,2,1,0,0,5,7.9781389,8.1974573,7.2865725,3,0,0,0,-9,0,-855.57526,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,37,15,1,0,-9,0,10.229207,10.229207,0,0,0,0,0,0,0,0,1,1,0,6.5808511,7.2462492,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,4,1,1096,175841.89,0,0,3355.311 -2780,3434,6260,6261,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,9.1741934,8.5951796,0,1,0,-9,24,0,-2,111.22475,0,0,0,55,2,3,1,2,2,2019,1,2,7,0,38,47,15,1,0,1,0,20.251677,20.251677,0,0,0,0,0,0,0,2,0,0,0,0,0,1.3131591,3,58.150002,52.91,46.91,49.900002,6,1,1,0,0,4,5,1,537.5,1318171.3,0,0,4129.5786 -2780,3434,6261,6260,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.4694262,8.2743635,0,1,0,-9,24,0,2,41.39563,0,0,0,53,2,4,1,2,2,2019,1,1,8,0,42,42,15,1,0,1,0,15.127512,15.127512,0,0,0,0,0,0,0,2,0,0,0,0,0,3.4010324,3,46.91,49.900002,58.150002,52.91,6,1,1,0,0,4,5,1,537.5,1318171.3,0,0,4129.5786 -2781,3435,6262,-9,6263,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-842.73303,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.610001,54.5,-9,-9,2,1,1,0,1,12,2,0,778.66669,-42023.43,0,0,1867.2192 -2781,3435,6263,-9,-9,-9,1,1,0,53,3,0,2,0,3,-9,8,3,1,1,2,0,5.9218669,5.9924564,4,0,0,0,-9,0,-1068.4337,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9090009,0,0,0,29.02,51.939999,-9,-9,4,1,1,0,0,12,2,0,778.66669,-42023.43,0,0,1867.2192 -2781,3435,6264,-9,6263,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-937.53723,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,778.66669,-42023.43,0,0,1867.2192 -2782,3436,6265,-9,6267,6266,4,1,1,17,2,0,2,1,2,0,7,2,0,0,4,4.2912989,4.5227842,0,2,0,0,0,-9,0,-989.80542,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.330002,-9,-9,6,1,1,0,0,12,4,1,857.66669,597764.69,0,0,4028.2231 -2782,3436,6266,6267,-9,-9,2,1,1,49,1,0,2,0,1,-9,1,1,0,0,4,9.215559,9.1197176,0,2,0,-9,8,0,-4,-78.852509,0,0,0,53,2,3,1,1,1,2019,1,1,9,0,50,40,15,1,0,1,0,22.751947,22.751947,0,0,0,0,0,0,0,0,1,1,0,5.7790723,0,0,0,49.349998,59.639999,43.52,52.860001,6,1,1,0,0,12,4,1,857.66669,597764.69,0,0,4028.2231 -2782,3436,6267,6266,-9,-9,1,1,0,53,1,0,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,8,0,4,-73.278908,0,0,0,49,1,4,1,2,2,2019,1,2,12,0,0,5,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.52,52.860001,49.349998,59.639999,4,1,1,0,0,12,4,1,857.66669,597764.69,0,0,4028.2231 -2782,3437,6268,-9,6267,6266,3,1,0,20,2,0,2,0,2,0,7,2,0,0,2,7.4865766,7.1691122,0,3,0,0,0,-9,0,-1125.4686,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,1,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8617207,0,0,0,38.299999,50.599998,-9,-9,5,1,1,0,0,12,3,1,332,48265.426,0,0,544.84717 -2783,3438,6269,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,0,1,0,7.6674252,7.6098123,3,0,0,0,-9,0,-878.66779,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5622435,0,0,45.77,25.24,-9,-9,4,1,1,0,0,5,3,1,3314,291167.56,0,0,1061.9408 -2784,3439,6270,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,3,0,4.2546926,4.1823902,3,0,0,0,-9,0,-1208.9795,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4644041,0,0,52,45,-9,-9,5,1,1,0,0,1,1,0,415,-30709.049,0,0,1972.4202 -2785,3440,6271,-9,6274,6272,3,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.0379,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,787.79999,-40098.527,0,0,1252.342 -2785,3440,6272,6274,-9,-9,2,1,1,34,1,0,3,0,2,-9,2,1,0,0,1,8.0511065,7.6922011,0,2,0,-9,7,0,5,-22.46166,0,0,0,29,2,3,3,2,2,2019,2,1,15,3,50,40,15,1,0,3,0,6.6656208,6.6656208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.98,43.380001,54.619999,53.529999,4,1,1,0,1,6,2,0,787.79999,-40098.527,0,0,1252.342 -2785,3440,6273,-9,6274,6272,4,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.98419,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,787.79999,-40098.527,0,0,1252.342 -2785,3440,6274,6272,-9,-9,1,1,0,29,1,0,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,-5,-32.100292,0,1,1,34,2,1,1,2,2,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.619999,53.529999,41.98,43.380001,6,1,1,1,1,6,2,0,787.79999,-40098.527,0,0,1252.342 -2785,3440,6275,-9,6274,6272,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.3455,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,2,0,787.79999,-40098.527,0,0,1252.342 -2786,3441,6276,6277,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,0,3,8.6919813,8.5655518,0,1,0,-9,10,0,-5,-72.821884,0,0,1,44,2,3,1,-9,-9,2019,1,1,11,0,50,41,15,1,0,1,0,11.951698,11.951698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.119999,42.709999,58.32,50.220001,6,1,1,0,0,9,5,1,339.5,51763.73,0,0,4831.0854 -2786,3441,6277,6276,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,3,8.6772785,8.7935801,0,1,0,-9,10,0,5,65.598167,0,0,0,39,2,3,1,2,2,2019,1,2,12,0,50,40,15,1,0,1,0,13.608744,13.608744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,48.119999,42.709999,6,1,1,0,0,9,5,1,339.5,51763.73,0,0,4831.0854 -2787,3442,6278,-9,-9,-9,1,1,0,75,2,0,0,0,1,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-990.26782,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,12.96308,0,0,0,0,0,0,1,1,0,0,0,0,0,42.200001,18.969999,-9,-9,4,1,1,0,0,9,1,0,1392,310030.41,0,0,905.6311 -2788,3443,6279,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,3,7.1988716,7.1665597,0,3,0,0,0,-9,0,-1057.1708,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,36,20,15,1,0,-9,0,5.2055945,5.2055945,0,0,0,0,0,0,0,0,1,1,0,4.2417531,0,0,0,52.57,52.889999,-9,-9,5,1,1,0,0,9,2,1,950,300200.19,0,0,790.10583 -2789,3444,6280,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,2,1,0,0,3,7.0648246,6.8894396,0,3,0,-9,0,-9,0,-934.31793,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,20,0,15,1,1,-9,0,6.2853398,6.2853398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.610001,56.93,-9,-9,2,1,1,0,0,4,2,0,602,-34999.699,0,0,-515.29962 -2790,3445,6281,6282,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,50,0,2,0,0,0,0,67,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.16,48.060001,62.040001,31.32,6,1,1,0,0,6,1,0,639.5,-19889.926,0,0,871.14117 -2790,3445,6282,6281,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,50,0,-2,0,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.040001,31.32,58.16,48.060001,7,1,1,0,0,6,1,0,639.5,-19889.926,0,0,871.14117 -2791,3446,6283,6285,-9,-9,4,1,1,39,1,0,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,8,0,0,0,-9,0,0,39,2,3,1,-9,-9,2019,1,1,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.130001,44.07,69.629997,31.48,5,2,3,0,0,6,1,1,343,209472.91,0,0,757.26105 -2791,3446,6284,-9,6285,6283,2,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.44366,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1981053,0,0,0,51.950001,33.25,-9,-9,5,2,3,0,0,6,1,1,343,209472.91,0,0,757.26105 -2791,3446,6285,6283,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,8,0,0,0,0,0,1,39,2,3,1,-9,-9,2019,1,4,8,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.629997,31.48,51.130001,44.07,6,2,3,0,0,6,1,1,343,209472.91,0,0,757.26105 -2792,3447,6286,6287,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.7414641,7.8667474,0,1,0,-9,41,0,-4,-4.5027323,0,0,0,62,2,3,3,2,-9,2019,2,2,7,0,26,29,15,1,0,3,0,9.1127357,9.1127357,0,0,0,0,0,0,0,7,0,0,0,4.6935925,0,8.7787457,3,58.32,50.220001,51,48,6,1,1,0,0,10,3,1,731,992991.13,0,0,1253.7761 -2792,3447,6287,6286,-9,-9,2,1,1,62,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,8,0,4,-4.8018384,0,0,0,58,2,3,1,-9,-9,2019,3,1,10,1,0,37,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,58.32,50.220001,5,1,1,1,0,10,3,1,731,992991.13,0,0,1253.7761 -2792,3448,6288,-9,6286,6287,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,6.3901882,6.481071,0,3,0,0,0,-9,0,-989.81702,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,2.1806519,2.1806519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,10,2,1,248,-48526.223,0,0,343.53735 -2793,3449,6289,6290,-9,-9,2,1,0,54,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,3,0,-19,-169.20061,0,0,0,73,3,3,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,53,47,5,1,1,0,0,13,2,1,161.5,213746.88,0,0,888.45526 -2793,3449,6290,6289,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,5.7419457,5.9575338,1,0,-9,3,0,19,41.764492,0,0,0,54,3,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8792405,6.2653871,0,0,53,47,48,49,6,1,1,0,0,13,2,1,161.5,213746.88,0,0,888.45526 -2794,3450,6291,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1023.5358,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,36,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,-9,-9,4,1,1,0,0,11,1,1,863,30750.475,0,0,0 -2795,3451,6292,-9,6293,-9,2,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1069.4697,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,2,1,0,1784.25,9551.6797,0,0,994.50555 -2795,3451,6293,-9,-9,-9,1,1,0,28,3,1,3,0,3,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1061.2574,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,6,3,4,0,1,2,1,0,1784.25,9551.6797,0,0,994.50555 -2795,3451,6294,-9,6293,-9,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-985.25983,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,2,1,0,1784.25,9551.6797,0,0,994.50555 -2795,3451,6295,-9,6293,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1029.2604,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,2,1,0,1784.25,9551.6797,0,0,994.50555 -2796,3452,6296,6297,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.0566821,7.4709492,1,0,-9,46,0,5,46.198231,0,0,0,68,2,5,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9658197,7.2870622,5.4267707,3,58.720001,51.290001,66.099998,42.66,6,1,1,0,0,7,2,1,610,388510.31,0,0,2513.6663 -2796,3452,6297,6296,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,46,0,-5,-54.126476,0,0,0,73,2,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.055535,0,0,3,66.099998,42.66,58.720001,51.290001,7,1,1,0,0,7,2,1,610,388510.31,0,0,2513.6663 -2797,3453,6298,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,7.3926206,7.5549779,6.1951809,3,0,0,0,-9,0,-1002.0451,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,16,20,15,1,0,-9,0,13.451653,13.451653,0,0,0,0,0,0,0,0,1,1,0,3.8935964,6.2266536,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,1,3,1,227,42548.477,0,0,2168.6238 -2797,3454,6299,-9,6298,-9,2,1,1,31,3,0,0,0,2,-9,1,1,0,0,5,8.6322451,8.6145601,0,3,0,0,0,-9,0,-870.88647,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,70,50,15,1,0,-9,1,8.8041496,8.8041496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.400002,59.869999,-9,-9,5,1,1,0,0,1,5,1,925,33018.016,0,0,2195.802 -2797,3455,6300,-9,6298,-9,3,1,1,29,2,0,0,0,1,-9,1,1,0,0,2,8.0405474,8.0901184,0,3,0,0,0,-9,0,-1090.5699,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,32,39,15,1,1,-9,1,12.903785,12.903785,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.709498,3,43.84,47.84,-9,-9,5,1,1,0,0,1,4,1,790,-70349.609,0,0,1208.6824 -2798,3456,6301,6304,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.3327723,8.5092211,0,2,0,-9,14,0,4,-34.882782,0,0,0,39,2,5,1,2,2,2019,1,1,6,0,43,42,15,1,0,1,0,11.55256,11.55256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.889999,48.599998,55.240002,55.869999,6,1,1,0,0,2,5,1,706,115272.84,0,0,3723.2576 -2798,3456,6302,-9,6304,6301,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-772.93304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,706,115272.84,0,0,3723.2576 -2798,3456,6303,-9,6304,6301,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.5993,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,706,115272.84,0,0,3723.2576 -2798,3456,6304,6301,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,5,8.4511061,8.5197334,0,2,0,-9,16,0,-4,20.283171,0,0,1,43,2,3,1,1,1,2019,1,2,10,2,40,42,15,1,0,1,0,17.112442,17.112442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.240002,55.869999,58.889999,48.599998,6,1,1,0,0,2,5,1,706,115272.84,0,0,3723.2576 -2799,3457,6305,-9,6308,6306,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.2969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,0,1280.75,362374.03,0,0,4514.6118 -2799,3457,6306,6308,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,0,4,9.0554008,9.0027151,0,2,0,-9,7,0,3,131.5155,0,0,0,36,2,4,1,3,-9,2019,1,2,10,0,40,48,15,1,0,1,0,23.173473,23.173473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,49.459999,56.91,6,1,1,0,0,9,5,0,1280.75,362374.03,0,0,4514.6118 -2799,3457,6307,-9,6308,6306,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.8017,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,0,1280.75,362374.03,0,0,4514.6118 -2799,3457,6308,6306,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,8.6010628,8.5419626,0,2,0,-9,7,0,-3,64.380051,0,0,1,39,2,4,1,2,3,2019,1,1,14,2,40,40,15,1,0,1,0,14.544913,14.544913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,51.240002,58.84,6,1,1,0,0,9,5,0,1280.75,362374.03,0,0,4514.6118 -2800,3458,6309,6310,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,-8,0,0,0,0,81,3,2,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9281211,0,0,0,57.16,56.150002,50.759998,37.759998,6,1,1,0,0,6,1,1,752.5,197836.06,0,0,1149.7798 -2800,3458,6310,6309,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,8,0,0,0,0,73,3,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3381801,0,0,0,50.759998,37.759998,57.16,56.150002,6,1,1,0,0,6,1,1,752.5,197836.06,0,0,1149.7798 -2800,3459,6311,-9,6309,6310,3,1,1,48,2,0,0,0,2,-9,2,1,0,0,5,8.7198448,8.6732349,0,3,0,0,0,-9,0,-1032.1744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,48,50,15,1,0,-9,1,13.613291,13.613291,0,0,0,0,0,0,0,0,1,1,0,.93281204,0,0,0,54.099998,59.110001,-9,-9,4,1,1,0,0,6,5,1,176,248756.17,0,0,3096.5032 -2801,3460,6312,6314,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,5,7.6749496,7.6736727,0,2,0,-9,30,0,-5,-15.707545,0,0,0,55,1,3,1,2,2,2019,1,2,9,1,29,24,15,1,0,1,0,8.2129145,8.2129145,0,0,0,0,0,0,0,7,1,1,0,6.2740707,0,.29092541,3,57.060001,57.759998,35.549999,60.77,7,1,1,0,0,6,5,1,1751,631822.19,0,0,5448.5923 -2801,3460,6313,-9,6312,6314,5,1,0,16,2,0,1,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1145.5414,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,6,5,1,1751,631822.19,0,0,5448.5923 -2801,3460,6314,6312,-9,-9,2,1,1,55,1,0,1,0,1,-9,2,1,0,0,3,9.0108452,9.2754669,0,2,0,-9,30,0,5,-168.96989,0,0,0,50,1,5,1,2,2,2019,1,1,12,4,40,40,15,1,1,1,0,32.065636,32.065636,0,0,0,0,0,0,0,2,1,1,0,3.9923673,0,8.3548946,3,35.549999,60.77,57.060001,57.759998,6,1,1,0,0,6,5,1,1751,631822.19,0,0,5448.5923 -2801,3461,6315,-9,6312,6314,3,1,1,21,2,0,1,1,2,0,7,2,0,0,4,4.8776298,5.2558084,0,3,0,0,0,-9,0,-813.51459,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,6,2,1,98,58455.625,0,0,-1335.6766 -2801,3462,6316,-9,6312,6314,4,1,0,19,2,0,1,1,2,0,7,2,0,0,4,7.1016684,7.2257552,0,3,0,0,0,-9,0,-1014.4124,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,3,0,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.16586332,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,6,2,1,599,11827.282,0,0,-1329.1566 -2802,3463,6317,-9,6321,6319,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.218,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,1,0,418,85051.531,0,0,1857.2856 -2802,3463,6318,-9,6321,6319,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.8036,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,1,0,418,85051.531,0,0,1857.2856 -2802,3463,6319,6321,-9,-9,1,1,1,36,1,0,4,0,3,-9,3,3,0,1,1,0,0,0,2,0,-9,19,0,4,0,0,0,0,32,3,5,3,3,3,2019,4,2,28,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.292521,3,31.08,37.799999,54.099998,59.110001,1,2,3,1,0,2,1,0,418,85051.531,0,0,1857.2856 -2802,3463,6320,-9,6321,6319,3,1,1,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.4775,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,1,0,418,85051.531,0,0,1857.2856 -2802,3463,6321,6319,-9,-9,2,1,0,32,1,0,4,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,19,0,-4,0,0,0,1,36,3,1,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.045967,3,54.099998,59.110001,31.08,37.799999,5,2,3,0,0,2,1,0,418,85051.531,0,0,1857.2856 -2802,3463,6322,-9,6321,6319,4,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.41901,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,1,0,418,85051.531,0,0,1857.2856 -2803,3464,6323,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,2,7.8866916,7.8139248,0,3,0,0,0,-9,0,-1159.338,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,30,0,15,1,0,-9,0,8.6410751,8.6410751,0,0,0,0,0,0,0,0,1,1,0,6.2228069,0,0,0,52.400002,31.65,-9,-9,3,1,1,0,0,11,3,1,173,368404.34,0,0,1933.7307 -2804,3465,6324,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,4,3,0,0,4,0,7.1233921,7.3236084,3,0,0,0,-9,0,-1020.2018,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6376657,7.117979,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,11,3,1,136,385778.91,0,0,626.95172 -2804,3466,6325,-9,6324,-9,2,1,1,29,2,0,0,0,2,-9,1,1,0,0,4,9.6139965,9.5072021,0,3,0,0,0,-9,0,-1085.2354,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,45,0,15,1,0,-9,1,46.286541,46.286541,0,0,0,0,0,0,0,0,0,0,0,7.6424985,0,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,11,5,1,506,29264.953,0,0,5412.272 -2805,3467,6326,6327,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-2,-35.488064,0,0,0,71,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2219117,0,0,0,56.939999,49.529999,60.290001,52.110001,6,1,1,0,0,2,2,1,184.5,375629.25,0,0,2285.3486 -2805,3467,6327,6326,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.2146192,7.090642,1,0,-9,46,0,2,29.818745,0,0,0,69,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8739893,7.0727096,0,0,60.290001,52.110001,56.939999,49.529999,6,1,1,0,0,2,2,1,184.5,375629.25,0,0,2285.3486 -2806,3468,6328,6329,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,1,3,0,6.5341482,6.7012024,1,0,-9,44,0,2,98.760811,0,0,0,73,2,1,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.7366031,6.4554787,12.137547,1,60.900002,39.41,33.07,19.719999,6,1,1,0,0,2,2,1,244,132438.92,0,0,2094.9709 -2806,3468,6329,6328,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,1,1,0,4.9284964,4.5824122,1,0,-9,44,0,-2,45.952221,0,0,0,75,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.6962458,4.7030525,0,0,33.07,19.719999,60.900002,39.41,5,1,1,0,0,2,2,1,244,132438.92,0,0,2094.9709 -2807,3469,6330,6331,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,3,7.9683323,7.6876316,0,2,0,-9,4,0,-1,-4.4720688,0,0,0,47,1,4,1,3,2,2019,1,1,13,2,38,38,15,1,0,1,0,8.4980526,8.4980526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.610001,56.009998,52.82,53.970001,5,1,1,0,0,13,5,1,331.25,509156.5,0,0,4411.0317 -2807,3469,6331,6330,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,9.3921623,9.0286961,0,2,0,-9,4,0,1,120.46233,0,0,0,46,2,3,1,2,2,2019,1,2,8,0,65,55,15,1,0,1,0,15.690405,15.690405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,43.610001,56.009998,5,1,1,0,0,13,5,1,331.25,509156.5,0,0,4411.0317 -2807,3469,6332,-9,6330,6331,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-877.25476,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,5,1,331.25,509156.5,0,0,4411.0317 -2807,3469,6333,-9,6330,6331,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-879.57788,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,13,5,1,331.25,509156.5,0,0,4411.0317 -2808,3470,6334,6335,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,0,4,8.1305323,8.237278,5.7947588,1,0,-9,7,0,1,89.873459,0,0,0,61,2,4,1,3,3,2019,1,2,14,2,41,40,15,1,0,1,0,8.0596619,8.0596619,0,0,0,0,0,0,0,0,0,0,0,4.9519911,5.994988,0,0,45.009998,57.459999,54,53,5,1,1,0,0,10,5,1,446,461404.56,0,0,3118.1348 -2808,3470,6335,6334,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.4705582,8.9020901,7.6617188,1,0,-9,7,0,-1,-180.29678,0,0,0,62,3,4,1,3,2,2019,1,1,6,0,40,38,15,1,0,1,0,13.26278,13.26278,0,0,0,0,0,0,0,0,0,0,0,0,8.0611067,0,0,54,53,45.009998,57.459999,6,1,1,0,0,10,5,1,446,461404.56,0,0,3118.1348 -2809,3471,6336,6339,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,8.7619438,9.0780344,0,2,0,-9,20,0,-1,6.0155058,0,0,0,48,1,3,1,3,3,2019,1,1,13,1,39,38,15,1,0,1,0,22.264059,22.264059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.060001,62.040001,43.119999,58.549999,4,1,1,0,0,12,5,1,893,610334.19,0,0,4938.6001 -2809,3471,6337,-9,6339,6336,3,1,1,17,2,0,2,0,2,-9,7,2,0,0,4,6.9029317,7.1097341,0,2,0,0,0,-9,0,-1003.1033,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.46818289,0,6.2780104,3,54.599998,55.889999,-9,-9,6,1,1,0,0,12,5,1,893,610334.19,0,0,4938.6001 -2809,3471,6338,-9,6339,6336,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.28156,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,893,610334.19,0,0,4938.6001 -2809,3471,6339,6336,-9,-9,1,1,0,48,1,0,2,0,1,-9,1,1,0,0,3,7.9088049,8.2971125,7.9312081,2,0,-9,20,0,1,-38.110977,0,0,0,47,1,4,1,1,1,2019,1,2,15,4,12,9,15,1,1,1,0,17.527916,17.527916,0,0,0,0,0,0,0,14.5,1,1,0,7.8935604,0,21.19902,3,43.119999,58.549999,41.060001,62.040001,4,1,1,0,0,12,5,1,893,610334.19,0,0,4938.6001 -2810,3472,6340,6341,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,1,-9,7,0,-9,0,0,50,2,5,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,57.060001,57.759998,6,1,1,0,0,12,1,1,608,384446.75,0,0,0 -2810,3472,6341,6340,-9,-9,2,1,1,50,1,0,0,0,2,-9,1,1,0,0,5,0,0,0,1,0,-9,1,-9,-7,0,-9,0,0,57,2,4,3,-9,-9,2019,2,1,6,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,62.490002,55.09,7,1,1,0,0,12,1,1,608,384446.75,0,0,0 -2811,3473,6342,6343,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,7.8349085,7.6940145,0,1,0,-9,9,0,-18,-140.37035,0,0,0,73,3,2,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,6.5982838,6.5982838,0,0,0,0,0,0,0,2,1,1,0,0,0,3.2673063,1,57.18,45.759998,31.17,42.75,5,1,1,0,0,7,4,0,1578,769393.38,0,0,2852.8052 -2811,3473,6343,6342,-9,-9,2,1,1,73,1,0,0,0,3,-9,2,1,0,0,2,7.2420654,7.9417429,7.1027017,1,0,-9,9,0,18,-40.68594,0,0,0,55,2,2,1,3,3,2019,1,1,17,5,23,24,15,1,1,1,0,6.9316325,6.9316325,0,0,0,0,0,0,0,0,1,1,0,6.7179036,6.7734923,0,0,31.17,42.75,57.18,45.759998,5,1,1,0,0,7,4,0,1578,769393.38,0,0,2852.8052 -2812,3474,6344,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,1,0,6.7325969,7.1166101,3,0,0,0,-9,0,-1030.5601,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.877696,6.7884617,0,0,26.49,35.68,-9,-9,2,1,1,0,0,5,2,1,566,114532.59,0,0,277.10846 -2813,3475,6345,-9,6347,6346,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.55579,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,2,3,0,849.33331,23174.787,0,0,1965.5533 -2813,3475,6346,6347,-9,-9,2,1,1,26,1,0,1,0,1,-9,3,3,0,0,3,6.8410139,6.3544893,0,2,0,-9,6,0,-2,19.245001,0,1,0,28,1,3,1,-9,-9,2019,3,1,32,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.599998,43.450001,39.560001,54.830002,4,2,3,1,1,2,3,0,849.33331,23174.787,0,0,1965.5533 -2813,3475,6347,6346,-9,-9,1,1,0,28,1,0,1,0,1,-9,2,1,0,0,3,7.1724553,7.5436258,0,2,0,-9,6,0,2,-35.159645,0,1,1,26,1,3,3,2,-9,2019,2,2,15,3,20,0,15,1,0,3,0,8.7515965,8.7515965,0,0,0,0,0,0,0,0,1,1,0,2.4286904,0,0,0,39.560001,54.830002,37.599998,43.450001,4,2,3,0,0,2,3,0,849.33331,23174.787,0,0,1965.5533 -2814,3476,6348,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,5,8.0740356,8.256917,0,3,0,0,0,-9,0,-1057.8119,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,38,38,15,1,0,-9,0,11.257954,11.257954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.919998,58.91,-9,-9,6,1,1,0,0,4,4,1,555,-81980.867,0,0,1126.3625 -2815,3477,6349,6350,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,5,0,7.2496562,7.2218103,1,0,-9,49,0,-5,-112.34266,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,0,39,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9318557,0,0,57.060001,57.759998,49.869999,50.459999,7,1,1,0,0,7,2,1,1182.5,670506.5,0,0,2565.9114 -2815,3477,6350,6349,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,5.0674868,4.8981171,1,0,-9,49,0,5,56.978016,0,0,0,64,3,5,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9675636,4.8892727,0,0,49.869999,50.459999,57.060001,57.759998,6,1,1,0,0,7,2,1,1182.5,670506.5,0,0,2565.9114 -2816,3478,6351,-9,6353,-9,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1120.9774,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,549,227530.08,0,0,1363.0437 -2816,3478,6352,-9,6353,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-920.86957,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,1,0,549,227530.08,0,0,1363.0437 -2816,3478,6353,-9,-9,-9,1,1,0,42,2,0,2,0,3,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-907.54956,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.122349,3,45.349998,57.209999,-9,-9,5,1,1,0,0,9,1,0,549,227530.08,0,0,1363.0437 -2816,3479,6354,-9,6353,-9,2,1,0,23,2,0,2,0,3,1,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1055.0857,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.790001,46.389999,-9,-9,5,1,1,1,0,9,1,0,2028,-171754.39,0,0,321.56525 -2817,3480,6355,6358,-9,-9,1,1,0,37,1,0,2,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,3,0,1,-105.20411,0,0,1,36,3,4,1,3,-9,2019,3,4,30,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.690001,33.509998,50,57,3,1,1,0,1,6,2,0,488.25,-113587.5,0,0,2262.7749 -2817,3480,6356,-9,6355,6358,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.6886,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,0,488.25,-113587.5,0,0,2262.7749 -2817,3480,6357,-9,6355,6358,2,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-866.07513,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,7,4,2,0,0,6,2,0,488.25,-113587.5,0,0,2262.7749 -2817,3480,6358,6355,-9,-9,4,1,1,36,1,0,2,0,3,-9,2,1,0,0,4,7.2379537,7.4667926,0,2,0,-9,3,0,-1,-47.644466,0,0,0,37,3,2,3,-9,-9,2019,2,1,10,1,16,30,15,1,0,3,0,10.149049,10.149049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,27.690001,33.509998,5,1,1,0,0,6,2,0,488.25,-113587.5,0,0,2262.7749 -2818,3481,6359,6360,-9,-9,2,1,1,44,1,1,1,0,1,-9,2,1,0,0,5,8.8996382,8.8820353,0,2,0,-9,2,0,6,0,0,0,0,38,1,5,1,-9,-9,2019,1,1,5,0,35,35,15,1,0,1,0,24.664177,24.664177,0,0,0,0,0,0,0,0,1,1,0,4.8073425,0,0,0,57.060001,57.759998,54.689999,57.470001,7,4,2,0,0,8,5,1,585,1679937.3,0,0,5182.5449 -2818,3481,6360,6359,-9,-9,1,1,0,38,1,1,1,0,1,-9,2,1,0,0,5,8.8020935,8.8884687,0,2,0,-9,2,0,-6,0,0,0,1,44,1,5,1,2,2,2019,1,2,7,0,35,40,15,1,0,1,0,26.98834,26.98834,0,0,0,0,0,0,0,0,1,1,0,7.3719511,0,0,0,54.689999,57.470001,57.060001,57.759998,7,4,2,0,0,8,5,1,585,1679937.3,0,0,5182.5449 -2818,3481,6361,-9,6360,6359,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1109.1163,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,5,1,585,1679937.3,0,0,5182.5449 -2819,3482,6362,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,5,8.2173119,8.1735935,0,3,0,-9,0,-9,0,-921.67957,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,30,0,15,1,0,-9,0,12.619476,12.619476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.720001,58.130001,-9,-9,7,1,1,0,0,13,4,1,228,-109756.95,0,0,883.86407 -2820,3483,6363,6364,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.7231154,6.7086506,1,0,-9,4,0,7,-15.988875,-9,0,0,65,1,4,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0470948,7.0335646,0,0,52.470001,40.470001,59.040001,45.740002,6,1,1,0,0,13,2,1,864.5,649648.75,0,0,1566.3306 -2820,3483,6364,6363,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,0,4,6.7600718,6.8379984,0,1,0,-9,4,0,-7,56.827873,0,0,0,72,3,3,3,3,-9,2019,2,2,3,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9869559,0,0,0,59.040001,45.740002,52.470001,40.470001,2,1,1,0,0,13,2,1,864.5,649648.75,0,0,1566.3306 -2821,3484,6365,-9,-9,-9,1,1,0,45,2,0,0,0,1,-9,2,1,0,0,2,8.3042049,8.5699005,0,3,0,0,0,-9,0,-960.52484,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,16,4,42,42,15,1,1,-9,0,11.309391,11.309391,0,0,0,0,0,0,0,0,0,0,0,1.318795,0,0,0,43.27,38.73,-9,-9,3,1,1,0,0,11,4,1,2322,165178,0,0,2022.4623 -2822,3485,6366,-9,-9,-9,2,1,1,18,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-914.12048,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.330002,51.02,-9,-9,6,1,1,0,0,1,1,0,1272,163341.41,0,0,434.13223 -2823,3486,6367,6370,-9,-9,2,1,0,37,1,0,2,0,3,-9,2,1,0,0,5,7.7833443,7.648016,0,2,0,-9,20,0,-5,-124.43111,0,0,1,42,2,2,1,3,1,2019,1,1,5,0,22,0,15,1,0,1,0,10.80689,10.80689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,54.98,39.919998,7,2,3,0,0,8,3,0,717.75,-5077.0195,0,0,2270.769 -2823,3486,6368,-9,6367,6370,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.3445,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,2,3,0,0,8,3,0,717.75,-5077.0195,0,0,2270.769 -2823,3486,6369,-9,6367,6370,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.4805,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,3,0,717.75,-5077.0195,0,0,2270.769 -2823,3486,6370,6367,-9,-9,1,1,1,42,1,0,2,0,2,-9,1,1,0,0,2,7.6707087,7.8674994,0,2,0,-9,20,0,5,50.292969,0,0,0,37,3,5,1,2,2,2019,1,2,11,0,55,40,15,1,0,1,0,4.7605124,4.7605124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.98,39.919998,62.389999,56.709999,4,2,3,0,0,8,3,0,717.75,-5077.0195,0,0,2270.769 -2824,3487,6371,6373,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.9927197,8.8836126,0,2,0,-9,18,0,4,99.95092,0,0,0,38,2,4,1,2,2,2019,1,2,19,7,40,42,15,1,1,1,0,20.746429,20.746429,0,0,0,0,0,0,0,0,1,1,0,.88699132,0,0,0,35.380001,63.459999,33.299999,64.169998,5,1,1,0,0,10,5,1,1069.3334,2460687,0,0,5148.7588 -2824,3487,6372,-9,6373,6371,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.1351,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,1069.3334,2460687,0,0,5148.7588 -2824,3487,6373,6371,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,9.0341644,9.0010843,0,2,0,-9,18,0,-4,30.462551,0,0,1,42,1,4,1,2,-9,2019,1,1,14,2,37,36,15,1,0,1,0,22.054062,22.054062,0,0,0,0,0,0,0,0,1,1,0,.45727661,0,0,0,33.299999,64.169998,35.380001,63.459999,6,1,1,0,0,10,5,1,1069.3334,2460687,0,0,5148.7588 -2825,3488,6374,6376,-9,-9,2,1,1,54,1,0,1,0,3,-9,2,1,0,0,4,8.7185335,8.5018349,0,2,0,-9,9,0,5,49.44923,0,0,0,49,2,3,1,2,2,2019,1,1,7,0,58,51,15,1,0,1,0,10.274425,10.274425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,36.950001,51.849998,6,1,1,0,0,7,4,1,1216.3334,-52922.598,0,0,2616.5381 -2825,3488,6375,-9,6376,6374,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1052.9492,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,20,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2784796,0,0,0,27.68,65.629997,-9,-9,4,1,1,0,0,7,4,1,1216.3334,-52922.598,0,0,2616.5381 -2825,3488,6376,6374,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,7.4039702,7.1737123,0,2,0,-9,32,0,-5,41.155632,0,0,0,54,3,4,1,2,1,2019,1,2,8,0,22,16,15,1,0,1,0,8.188859,8.188859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.950001,51.849998,54.790001,55.860001,6,1,1,0,0,7,4,1,1216.3334,-52922.598,0,0,2616.5381 -2826,3489,6377,-9,6380,6379,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.27917,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,1,621,-20193.232,0,0,2272.894 -2826,3489,6378,-9,6380,6379,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1063.8457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,-9,-9,4,1,1,0,0,7,3,1,621,-20193.232,0,0,2272.894 -2826,3489,6379,6380,-9,-9,3,1,1,31,1,0,2,0,2,-9,2,1,0,0,3,7.961009,7.805778,0,2,0,-9,9,0,-3,80.397408,0,0,0,34,2,2,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,11.778139,11.778139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,57.720001,25.33,48.139999,4,1,1,0,0,7,3,1,621,-20193.232,0,0,2272.894 -2826,3489,6380,6379,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,2,7.5308251,7.5560217,0,2,0,-9,9,0,3,-7.8856139,0,0,1,31,2,3,1,2,-9,2019,1,3,20,7,30,25,15,1,1,1,0,7.476047,7.476047,0,0,0,0,0,0,0,0,1,1,0,2.9036369,0,0,0,25.33,48.139999,41.82,57.720001,6,1,1,0,0,7,3,1,621,-20193.232,0,0,2272.894 -2827,3490,6381,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,2,1,0,0,4,7.4724526,7.4642386,6.4157324,3,0,0,0,-9,0,-969.87347,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,20,15,1,0,-9,0,6.5631642,6.5631642,0,0,0,0,0,0,0,7,1,1,0,1.7193041,6.4175453,1.297164,3,51.080002,54.77,-9,-9,6,1,1,0,0,12,3,1,175,258071.64,0,0,2419.5715 -2828,3491,6382,6383,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,7.7492919,7.9432278,6.1027937,1,0,-9,4,0,19,-13.390478,0,0,0,44,1,4,1,-9,-9,2019,1,2,19,6,24,23,15,1,1,1,0,12.214995,12.214995,0,0,0,0,0,0,0,0,0,0,0,4.3181663,6.4842463,0,0,36.189999,48.139999,52,55,5,1,1,0,0,4,5,1,233,826880,0,0,3993.6235 -2828,3491,6383,6382,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,0,4,8.5408545,9.0280342,0,1,0,-9,4,0,-19,48.253311,0,0,0,63,1,4,1,-9,-9,2019,1,1,9,1,38,40,15,1,0,1,0,20.224718,20.224718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,36.189999,48.139999,5,1,1,0,0,4,5,1,233,826880,0,0,3993.6235 -2829,3492,6384,6385,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,-4,0,0,0,0,70,2,1,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,62.509998,39.169998,63.200001,8.9899998,1,1,1,0,0,9,1,1,343.5,497741.56,0,0,2026.3604 -2829,3492,6385,6384,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,45,0,4,0,0,0,0,66,3,2,3,2,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,16.334967,0,0,0,0,0,1,1,0,0,0,0,0,63.200001,8.9899998,62.509998,39.169998,6,1,1,0,0,9,1,1,343.5,497741.56,0,0,2026.3604 -2830,3493,6386,-9,-9,-9,2,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,7.3937945,7.4953327,3,0,0,0,-9,0,-1117.0623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,7.1735058,26.494255,3,56.23,26.65,-9,-9,6,1,1,0,0,5,3,1,696,708554.88,0,0,234.28987 -2831,3494,6387,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,0,3,0,8.9817715,8.8925657,3,0,0,0,-9,0,-885.79938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.16186,8.9833536,3.0007863,3,50.549999,42.75,-9,-9,6,1,1,0,0,4,5,1,623,7223883.5,0,0,4824.0723 -2832,3495,6388,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,0,4,6.6458526,7.0822659,0,3,0,0,0,-9,0,-1034.2677,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,2,0,8857,-23857.074,0,0,429.32547 -2833,3496,6389,-9,6394,-9,1,1,1,31,2,1,1,0,1,-9,2,1,0,0,4,8.9735641,8.8922176,0,3,0,0,0,-9,0,-1012.7298,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,35,50,15,1,0,-9,1,22.997177,22.997177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,8,5,1,552,-57764.801,0,0,1435.3978 -2833,3497,6390,-9,6394,-9,2,1,1,33,2,1,1,0,2,-9,2,1,0,0,4,8.6200294,8.6114254,0,3,0,0,0,-9,0,-1029.6049,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,43,44,15,1,0,-9,1,17.609659,17.609659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,8,5,1,1356,131907.02,0,0,1934.3512 -2833,3498,6391,-9,6393,6392,6,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-956.16754,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,4,1,1040,433674.63,0,0,2658.8088 -2833,3498,6392,6393,6394,-9,3,1,1,30,1,1,1,0,1,-9,2,1,0,0,4,8.7816153,8.4836521,0,2,0,-9,3,0,3,-89.226067,0,0,0,27,1,4,1,3,-9,2019,1,5,10,1,40,45,15,1,0,1,0,15.685288,15.685288,0,0,0,0,0,0,0,2,1,1,0,0,0,9.4726849,3,50,57,47,57,5,2,3,0,0,8,4,1,1040,433674.63,0,0,2658.8088 -2833,3498,6393,6392,-9,-9,5,1,0,27,1,1,1,0,1,-9,5,1,0,0,4,7.1893587,6.7299395,0,2,0,-9,3,0,-3,5.2969608,0,1,1,30,1,4,1,-9,-9,2019,1,3,11,2,35,35,15,1,0,1,0,3.404654,3.404654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,50,57,5,2,3,0,0,8,4,1,1040,433674.63,0,0,2658.8088 -2833,3499,6394,-9,-9,-9,4,1,0,52,2,1,1,0,3,-9,4,3,0,1,4,0,0,0,4,0,0,0,-9,0,-994.29218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,2,3,0,0,8,1,1,813,11522.497,0,0,494.23209 -2834,3500,6395,6396,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,36,0,10,-23.067036,0,0,0,70,2,2,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.34,28,57.009998,13.47,5,1,1,0,0,9,2,0,780.5,401901.56,0,0,581.95471 -2834,3500,6396,6395,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,2,0,5.5848498,5.3464208,1,0,-9,36,0,-10,25.040817,0,0,0,80,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2199411,5.2429361,0,0,57.009998,13.47,56.34,28,7,1,1,0,0,9,2,0,780.5,401901.56,0,0,581.95471 -2835,3501,6397,6398,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,4,0,5.797019,6.1519332,1,0,-9,45,0,-2,55.26936,0,0,0,66,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8347077,0,0,59.139999,52.5,57.16,56.150002,6,1,1,0,0,12,3,1,958.5,882560,0,0,1639.2083 -2835,3501,6398,6397,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.0225744,7.4537392,1,0,-9,46,0,2,-49.315998,0,0,0,64,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4940248,0,0,57.16,56.150002,59.139999,52.5,6,1,1,0,0,12,3,1,958.5,882560,0,0,1639.2083 -2836,3502,6399,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,2,0,7.7838001,8.0864315,3,0,0,0,-9,0,-841.09003,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.7799182,0,0,0,1,0,1,2.5707977,7.6811786,0,0,55.93,23.02,-9,-9,5,1,1,0,0,6,3,1,3161,423876.91,0,0,3603.6086 -2836,3503,6400,-9,-9,6399,2,1,1,51,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1006.0591,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.549999,21,-9,-9,3,1,1,1,0,6,1,1,1384,76161.031,0,0,608.82977 -2837,3504,6401,6402,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,42,0,2,-128.21504,0,0,0,66,2,2,3,3,2,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,43.39106,0,0,0,0,0,1,1,0,0,0,0,0,61.189999,18.15,58.700001,46.459999,7,1,1,0,0,1,2,0,261.5,88610.117,0,0,2664.6152 -2837,3504,6402,6401,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,6.2679658,5.7972856,1,0,-9,42,0,-2,121.81441,0,0,0,68,3,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.2287335,24.255362,1,58.700001,46.459999,61.189999,18.15,7,1,1,0,0,1,2,0,261.5,88610.117,0,0,2664.6152 -2838,3505,6403,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,5,8.5259924,8.3564434,0,3,0,0,0,-9,0,-1046.0403,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,38,38,15,1,0,-9,0,15.984322,15.984322,0,0,0,0,0,0,0,0,0,0,0,3.4070089,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,10,5,0,951,-12010.866,0,0,1535.1313 -2839,3506,6404,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,6.8437901,7.2092791,3,0,0,0,-9,0,-997.23602,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7750683,7.2291508,0,0,39.98,36.02,-9,-9,5,1,1,0,0,6,2,1,651,266633.25,0,0,1206.8854 -2840,3507,6405,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,2,1,0,0,5,7.7858143,7.8228493,0,3,0,0,0,-9,0,-901.40985,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,33,38,15,1,0,-9,0,8.8288813,8.8288813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.339996,49.419998,-9,-9,4,1,1,0,0,1,3,1,2548,99320.539,0,0,715.59631 -2840,3508,6406,-9,6405,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.2926025,8.1674623,0,3,0,0,0,-9,0,-1120.1055,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,3,53,44,15,1,0,-9,1,8.3077507,8.3077507,0,0,0,0,0,0,0,0,0,0,0,6.7668858,0,0,0,56.18,42.450001,-9,-9,1,1,1,0,0,1,4,1,737,-10468.098,0,0,1620.92 -2841,3509,6407,6408,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,0,3,9.6507168,9.7984438,6.8388205,1,0,-9,27,0,9,62.7444,0,0,0,55,1,5,3,2,2,2019,2,1,6,0,49,52,15,1,0,3,0,39.179581,39.179581,0,0,0,0,0,0,0,0,0,0,0,4.393322,7.1213226,0,0,54.369999,54.799999,55.68,54.240002,6,1,1,0,0,10,5,1,467.5,5875948.5,0,0,6037.6201 -2841,3509,6408,6407,-9,-9,1,1,0,55,1,0,0,0,1,-9,6,3,0,0,5,0,0,0,1,0,-9,29,0,0,38.515621,0,0,0,64,1,3,1,1,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.68,54.240002,54.369999,54.799999,6,1,1,0,0,10,5,1,467.5,5875948.5,0,0,6037.6201 -2841,3510,6409,-9,6408,6407,3,1,1,20,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1029.2861,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,1,0,10,1,1,1100,346803.03,0,0,0 -2842,3511,6410,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,4,8.982769,8.764781,0,1,0,-9,2,0,-6,-44.836807,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,11,0,38,61,15,1,0,-9,0,22.45014,22.45014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.919998,57.310001,59.880001,48.200001,6,1,1,0,0,5,5,1,265,172772.42,0,0,3928.9744 -2842,3512,6411,-9,-9,-9,2,1,0,57,2,0,0,0,2,-9,2,1,0,0,3,9.0526733,9.1561327,0,1,0,-9,2,0,6,12.02153,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,8,0,42,48,15,1,0,-9,0,22.200792,22.200792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.880001,48.200001,48.919998,57.310001,6,1,1,0,0,5,5,1,422,681932.75,0,0,3974.1008 -2843,3513,6412,-9,-9,-9,1,1,1,40,3,0,0,0,2,-9,2,1,0,0,3,8.2275295,7.842351,0,3,0,0,0,-9,0,-923.97467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,46,63,15,1,0,-9,0,7.6839066,7.6839066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,-9,-9,4,1,1,0,0,5,4,1,722,273459.19,0,0,673.573 -2843,3514,6413,-9,-9,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.0701532,8.6507854,0,3,0,0,0,-9,0,-939.59387,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,39,49,15,1,0,-9,0,11.758173,11.758173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,5,4,1,374,-11274.56,0,0,589.41315 -2844,3515,6414,-9,-9,6415,3,1,1,16,2,0,1,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1083.6722,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,-9,-9,7,1,1,0,0,13,4,1,854,-14441.021,0,0,2460.1802 -2844,3515,6415,-9,-9,-9,1,1,1,47,3,0,1,0,2,-9,2,1,0,0,2,8.5902958,8.8334579,0,4,0,-9,0,1,0,-943.72717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,10,40,44,15,1,1,-9,0,16.10763,16.10763,0,0,0,0,0,0,0,0,1,1,0,3.1985972,0,0,0,22.299999,61.919998,-9,-9,3,1,1,0,0,13,4,1,854,-14441.021,0,0,2460.1802 -2844,3516,6416,-9,-9,6415,2,1,1,20,2,0,1,0,2,1,2,1,0,0,5,7.7456083,7.5024705,0,3,0,0,0,-9,0,-1062.9034,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,4,0,25,0,15,1,0,-9,1,6.8423753,6.8423753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,13,3,1,517,0,0,0,-806.68488 -2845,3517,6417,6418,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,5,4.7879467,7.1402168,7.2457008,1,0,-9,47,0,-3,44.943752,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,20,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7521868,7.1879387,0,0,60.02,56.419998,54.959999,53.169998,7,1,1,0,0,6,4,1,235.5,1681389.4,0,0,2307.9683 -2845,3517,6418,6417,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,4.8403149,8.1592035,7.9172468,1,0,-9,47,0,3,30.920826,0,0,0,65,1,5,3,2,1,2019,4,1,8,0,20,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.99295634,7.8148766,0,0,54.959999,53.169998,60.02,56.419998,6,1,1,0,0,6,4,1,235.5,1681389.4,0,0,2307.9683 -2846,3518,6419,6420,-9,-9,1,1,0,54,1,0,1,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,28,0,1,127.98261,0,0,0,53,2,4,1,2,3,2019,3,2,23,10,0,3,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.853702,3,42.959999,19.780001,40.380001,59.139999,6,1,1,0,0,2,4,1,363.5,495729.81,0,0,2807.9629 -2846,3518,6420,6419,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.5148735,8.7335396,6.6521344,2,0,-9,28,0,-1,58.655266,0,0,0,54,3,2,3,2,3,2019,2,1,15,4,37,48,15,1,1,3,0,17.178408,17.178408,0,0,0,0,0,0,0,0,1,1,0,0,6.9636679,0,0,40.380001,59.139999,42.959999,19.780001,3,1,1,0,0,2,4,1,363.5,495729.81,0,0,2807.9629 -2846,3519,6421,-9,6419,6420,3,1,1,21,2,0,1,0,2,-9,2,1,0,0,5,7.6814938,7.4039955,0,3,0,0,0,-9,0,-1005.5197,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,60,60,15,1,0,-9,1,4.4009471,4.4009471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,4,1,1,0,0,2,3,1,614,229673.19,0,0,-371.65665 -2846,3520,6422,-9,6419,6420,4,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,7.8439479,7.459497,0,3,0,0,0,-9,0,-970.70026,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,30,40,15,1,0,-9,1,9.4785538,9.4785538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,2,3,1,389,110532.85,0,0,3072.4011 -2846,3521,6423,-9,6419,6420,5,1,0,18,2,0,1,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1111.9441,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,1,0,2,4,1,588,0,0,0,0 -2847,3522,6424,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,9.9039488,9.8173227,0,3,0,0,0,-9,0,-1131.0439,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,4,42,49,15,1,1,-9,0,44.723686,44.723686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.700001,60.439999,-9,-9,5,1,1,0,0,8,5,1,376,1224430.8,0,0,4514.5137 -2848,3523,6425,-9,-9,-9,1,1,1,92,3,0,0,0,1,-9,4,3,0,0,4,0,4.4653573,4.2861209,3,0,0,0,-9,0,-1007.9167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8524113,4.2844939,0,0,62.57,42.779999,-9,-9,6,1,1,0,0,10,2,1,381,135037.34,0,0,807.3042 -2849,3524,6426,-9,6427,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,-9,0,-9,0,-894.2132,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,5,3,1,2183,-66353.375,0,0,2151.1777 -2849,3524,6427,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,0,5,7.2699347,8.1070127,6.3816948,4,0,-9,0,-9,0,-896.30933,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,25,0,15,1,0,-9,0,9.1610546,9.1610546,0,0,0,0,0,0,0,2,1,1,0,6.4797044,0,8.3604441,3,45.459999,61.869999,-9,-9,4,1,1,0,0,5,3,1,2183,-66353.375,0,0,2151.1777 -2850,3525,6428,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1040.6556,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.950001,54.360001,-9,-9,3,1,1,0,0,13,1,0,3301,142995.36,0,0,1338.0573 -2851,3526,6429,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,4,7.5231481,7.9045854,7.1332693,3,0,0,0,-9,0,-1054.4049,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,10,0,15,1,0,-9,0,32.615005,32.615005,0,0,0,0,0,0,0,0,1,1,0,4.0429907,7.4467702,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,10,4,1,507,166334.77,0,0,2847.8252 -2852,3527,6430,6431,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,8.298234,8.0267153,0,2,0,-9,19,0,3,-4.0125623,0,0,0,41,2,5,1,2,-9,2019,1,2,9,0,38,38,15,1,0,1,0,10.094485,10.094485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.759998,54.41,57.060001,57.759998,6,1,1,0,0,6,4,1,732.5,128163.13,0,0,1407.2532 -2852,3527,6431,6430,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,5,7.5350122,7.6159015,0,2,0,-9,19,0,-3,-55.845455,0,0,1,44,2,4,1,2,-9,2019,1,1,7,0,30,25,15,1,0,1,0,7.5294352,7.5294352,0,0,0,0,0,0,0,0,1,1,0,.6741519,0,0,0,57.060001,57.759998,49.759998,54.41,7,1,1,0,0,6,4,1,732.5,128163.13,0,0,1407.2532 -2853,3528,6432,6433,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.5014868,8.2203665,1,0,-9,44,0,6,8.6040077,0,0,0,64,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.409296,8.3885365,0,0,60.279999,43.740002,55.439999,52.990002,6,1,1,0,0,13,3,1,868.5,2281379,0,0,4210.8315 -2853,3528,6433,6432,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,-6,26.257481,0,0,0,70,1,4,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.566452,0,0,0,55.439999,52.990002,60.279999,43.740002,7,1,1,0,0,13,3,1,868.5,2281379,0,0,4210.8315 -2854,3529,6434,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,1,1,0,0,4,7.2329245,7.7877584,6.916853,3,0,0,0,-9,0,-994.84143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,80,70,15,1,0,-9,0,1.5901688,1.5901688,0,0,0,0,0,0,0,0,1,1,0,0,6.5715609,0,0,52.990002,53.950001,-9,-9,6,1,1,0,0,6,3,1,230,120997.91,0,0,1306.0011 -2855,3530,6435,6436,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.2039318,8.4362326,0,1,0,-9,8,0,-2,37.311089,0,0,0,53,2,2,1,2,3,2019,1,1,14,4,35,35,15,1,1,1,0,16.911154,16.911154,0,0,0,0,0,0,0,7,1,1,0,4.0063748,0,5.3101287,3,51.639999,50.48,51.889999,26.83,6,1,1,0,0,12,5,1,658,513335.31,0,0,4518.5239 -2855,3530,6436,6435,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,1,2,8.1129675,8.3196306,7.4061475,1,0,-9,8,0,2,-43.944675,0,0,0,51,2,3,1,3,3,2019,1,2,10,2,45,40,15,1,0,1,0,9.1137743,9.1137743,0,0,0,0,0,0,0,14.5,1,1,0,4.2117839,7.349987,21.161901,3,51.889999,26.83,51.639999,50.48,4,1,1,0,0,12,5,1,658,513335.31,0,0,4518.5239 -2856,3531,6437,-9,6440,6439,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.07922,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,3,0,1094.25,331959.09,0,0,3000.5825 -2856,3531,6438,-9,6440,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.70203,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,3,0,1094.25,331959.09,0,0,3000.5825 -2856,3531,6439,6440,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,0,2,8.3940601,8.5112391,0,2,0,-9,7,0,-3,19.993561,0,0,0,38,1,2,3,2,2,2019,2,2,15,4,55,55,15,1,1,3,0,9.9835443,9.9835443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.240002,51.959999,47.02,19.049999,3,1,1,0,0,6,3,0,1094.25,331959.09,0,0,3000.5825 -2856,3531,6440,6439,-9,-9,2,1,0,38,1,0,2,0,1,1,6,3,0,1,2,0,0,0,2,0,-9,7,0,3,-25.545769,-9,0,1,35,2,2,1,2,2,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7540364,0,0,0,47.02,19.049999,32.240002,51.959999,4,1,1,0,0,6,3,0,1094.25,331959.09,0,0,3000.5825 -2857,3532,6441,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,2,0,7.4734664,7.6739779,3,0,0,0,-9,0,-919.56018,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,1,2.326823,0,0,0,0,84.029228,0,1,1,0,6.5542169,7.464519,0,0,48.299999,29.57,-9,-9,4,1,1,0,0,9,3,1,286,526359.81,0,0,861.44965 -2858,3533,6442,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,6.2844267,6.0295439,3,0,0,0,-9,0,-1137.8793,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6781688,0,3,61.43,43.34,-9,-9,6,1,1,0,1,10,2,1,961,103279.87,0,0,1444.0898 -2859,3534,6443,6444,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.8466549,8.7340145,0,1,0,-9,32,0,-3,4.8799376,0,0,0,59,1,4,1,1,3,2019,1,1,11,0,39,42,15,1,0,1,0,22.802729,22.802729,0,0,0,0,0,0,0,7,0,0,0,0,0,9.9300346,3,49.349998,59.639999,57.16,56.150002,6,1,1,0,0,13,5,1,309.5,2129972.5,0,0,3389.2471 -2859,3534,6444,6443,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,8.7145224,8.4984293,0,1,0,-9,32,0,3,8.5487242,0,0,0,56,1,4,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,21.112226,21.112226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,49.349998,59.639999,7,1,1,0,0,13,5,1,309.5,2129972.5,0,0,3389.2471 -2859,3535,6445,-9,6443,6444,3,1,1,21,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-999.51984,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1128848,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,1,1,269,-68236.445,0,0,-79.498466 -2860,3536,6446,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,5,0,7.1998744,7.6083965,3,0,-9,0,1,0,-1067.7428,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4651854,7.5725861,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,5,3,1,2833,465678,0,0,2220.8113 -2861,3537,6447,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,8.5935163,8.3884115,3,0,0,0,-9,0,-1009.4176,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0001707,0,3,54.200001,57.490002,-9,-9,6,1,1,0,0,11,5,1,500,1457109.4,0,0,3722.0222 -2862,3538,6448,6449,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,4,0,9.1566534,8.6603193,1,0,-9,23,0,-1,88.865448,0,0,0,62,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6447473,8.4895344,0,0,56.580002,49.75,43.860001,48.880001,6,1,1,0,0,4,5,1,840,2599757,0,0,4109.5449 -2862,3538,6449,6448,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,3,0,7.5106072,7.689662,1,0,-9,23,0,1,26.668901,0,0,0,61,1,4,3,2,2,2019,4,1,10,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3531594,7.6339278,0,0,43.860001,48.880001,56.580002,49.75,6,1,1,0,0,4,5,1,840,2599757,0,0,4109.5449 -2863,3539,6450,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,0,3,8.7817278,8.2666254,0,3,0,0,0,-9,0,-1016.8572,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,38,37,15,1,0,-9,0,14.873274,14.873274,0,0,0,0,0,0,0,0,0,0,0,4.7742801,0,0,0,37.279999,55.900002,-9,-9,5,1,1,0,0,1,5,1,429,137873.06,0,0,1806.3859 -2863,3540,6451,-9,-9,-9,2,1,1,35,2,0,0,0,2,-9,1,1,0,0,2,7.4612412,7.1243281,0,3,0,0,0,-9,0,-1063.8927,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,25,35,15,1,1,-9,0,7.8320327,7.8320327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.630001,55.02,-9,-9,2,1,1,0,1,1,3,1,2864,-166498.59,0,0,954.65851 -2864,3541,6452,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,3,0,7.227982,7.0592914,3,0,0,0,-9,0,-1102.6936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,5.7965465,0,0,0,0,29.008547,0,1,1,0,0,7.1287589,0,0,51.09,30.629999,-9,-9,6,1,1,0,0,4,2,1,754,439049.44,0,0,1394.744 -2865,3542,6453,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-984.37189,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.099998,23.549999,-9,-9,3,1,1,0,0,10,1,0,88,-105433.72,0,0,1608.0048 -2865,3543,6454,-9,6453,-9,2,1,1,21,2,0,0,0,2,-9,11,3,0,0,4,7.6241155,7.6185884,0,3,0,0,0,-9,0,-951.02972,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.92924994,3,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,0,121,-53372.852,0,0,1196.4768 -2866,3544,6455,6457,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,0,3,7.1646094,7.2348409,0,2,0,-9,7,0,-1,-84.056366,0,0,1,32,2,3,1,2,3,2019,1,2,14,4,25,25,15,1,1,1,0,5.7378011,5.7378011,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,39.650002,56.189999,49.630001,54.220001,4,1,1,0,0,2,4,1,346,208039.36,0,0,3405.7065 -2866,3544,6456,-9,6455,6457,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-866.11865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,346,208039.36,0,0,3405.7065 -2866,3544,6457,6455,-9,-9,2,1,1,32,1,0,2,0,2,-9,2,1,0,0,3,8.4555883,8.846055,0,2,0,-9,7,0,1,-71.81073,0,0,0,31,2,3,1,2,3,2019,1,1,10,1,52,53,15,1,0,1,0,11.587659,11.587659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,39.650002,56.189999,5,1,1,0,0,2,4,1,346,208039.36,0,0,3405.7065 -2866,3544,6458,-9,6455,6457,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.30853,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,346,208039.36,0,0,3405.7065 -2867,3545,6459,-9,6461,6460,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.0289,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,1,3,1,410.60001,486030.38,0,0,1209.4501 -2867,3545,6460,6461,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,9,0,-2,5.047461,0,0,0,46,1,1,1,3,3,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6744355,0,0,0,53.139999,51.279999,21.25,42.139999,6,1,1,0,1,1,3,1,410.60001,486030.38,0,0,1209.4501 -2867,3545,6461,6460,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,0,1,8.1691685,8.1382532,0,2,0,-9,9,0,2,-105.48955,0,0,0,44,2,3,1,-9,-9,2019,1,1,30,12,20,12,15,1,1,1,0,20.846014,20.846014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.25,42.139999,53.139999,51.279999,3,1,1,0,1,1,3,1,410.60001,486030.38,0,0,1209.4501 -2867,3545,6462,-9,6461,6460,3,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.4078,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,1,410.60001,486030.38,0,0,1209.4501 -2867,3545,6463,-9,6461,6460,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.9825,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,1,3,1,410.60001,486030.38,0,0,1209.4501 -2868,3546,6464,6465,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,5.9087248,7.451282,7.2417622,1,0,-9,39,0,0,47.189838,0,0,0,61,2,3,1,3,3,2019,1,1,6,0,5,0,15,1,0,1,0,8.9237366,8.9237366,0,0,0,0,0,0,0,0,0,0,0,0,6.8004079,0,0,57.16,56.150002,50.18,52.619999,6,1,1,0,0,2,5,1,619.5,433948.06,0,0,3746.9785 -2868,3546,6465,6464,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,9.0175009,9.31987,5.9479752,1,0,-9,9,0,0,-81.497116,0,0,0,61,2,4,1,3,3,2019,1,2,9,0,40,40,15,1,0,1,0,28.813757,28.813757,0,0,0,0,0,0,0,0,0,0,0,5.4170599,6.4233227,0,0,50.18,52.619999,57.16,56.150002,6,1,1,0,0,2,5,1,619.5,433948.06,0,0,3746.9785 -2869,3547,6466,6467,-9,-9,2,1,0,23,1,0,0,0,2,-9,2,1,0,0,4,7.789237,8.0303383,0,1,0,-9,1,-9,-1,-4.6505361,-9,1,1,24,2,3,1,-9,-9,2019,1,1,12,2,43,0,15,1,0,1,0,6.8966751,6.8966751,0,0,0,0,0,0,0,0,0,0,0,.9505533,0,0,0,46,58,57.330002,53.459999,5,1,1,0,0,2,5,1,1447,25928.195,0,0,2610.6743 -2869,3547,6467,6466,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,0,3,8.1481323,8.4467535,0,1,0,-9,1,-9,1,50.430523,-9,1,0,23,2,4,1,-9,-9,2019,1,2,6,0,40,0,15,1,0,1,0,11.008564,11.008564,0,0,0,0,0,0,0,0,0,0,0,2.2157073,0,0,0,57.330002,53.459999,46,58,6,1,1,0,0,2,5,1,1447,25928.195,0,0,2610.6743 -2870,3548,6468,6469,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,0,3,8.6815805,8.8361664,0,2,0,-9,5,0,-7,-11.43407,0,0,0,44,2,3,1,2,2,2019,1,2,17,4,46,54,15,1,1,1,0,16.901886,16.901886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.490002,58.84,61.299999,40.509998,5,1,1,0,0,12,4,1,1140.5,316460.63,0,0,3404.4614 -2870,3548,6469,6468,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,8.0215302,7.5553455,0,2,0,-9,5,0,7,-136.44989,0,0,1,37,1,3,1,-9,-9,2019,1,1,7,0,39,37,15,1,0,1,0,7.4086599,7.4086599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.299999,40.509998,45.490002,58.84,6,1,1,0,0,12,4,1,1140.5,316460.63,0,0,3404.4614 -2871,3549,6470,6472,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,0,3,8.4719934,8.4345512,0,2,0,-9,12,0,2,171.92505,0,0,0,39,2,3,1,2,3,2019,1,1,14,2,30,48,15,1,0,1,0,18.104662,18.104662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.970001,51.720001,34.220001,3,1,1,0,1,11,4,1,602.33331,437679.66,0,0,4568.5278 -2871,3549,6471,-9,6472,6470,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.9138,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,602.33331,437679.66,0,0,4568.5278 -2871,3549,6472,6470,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,0,3,8.5158682,8.3900404,0,2,0,-9,13,0,-2,5.9600005,0,0,1,41,1,3,1,2,2,2019,1,2,13,2,30,40,15,1,0,1,0,20.403,20.403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.720001,34.220001,47.07,53.970001,6,1,1,0,1,11,4,1,602.33331,437679.66,0,0,4568.5278 -2872,3550,6473,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,5,8.2553329,8.0364571,0,3,0,0,0,-9,0,-968.63733,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,43,42,15,1,0,-9,0,6.9086437,6.9086437,0,0,0,0,0,0,0,0,0,0,0,1.3650501,0,0,0,41.200001,62.389999,-9,-9,6,1,1,0,0,1,4,1,1777,-55530.723,0,0,145.66312 -2873,3551,6474,6475,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.056036,8.5945091,7.3378921,1,0,-9,7,0,-3,77.287216,0,0,0,60,2,3,1,2,1,2019,1,1,10,0,37,37,15,1,0,1,0,11.804948,11.804948,0,0,0,0,0,0,0,0,0,0,0,2.8628449,7.2107329,0,0,49.610001,54.240002,48.580002,46.389999,6,1,1,0,0,4,4,1,306,165260.47,0,0,1962.9402 -2873,3551,6475,6474,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.0233331,7.0080962,5.8323784,1,0,-9,7,0,3,45.199245,0,0,0,57,2,3,1,2,2,2019,1,2,7,0,15,15,15,1,0,1,0,8.6984329,8.6984329,0,0,0,0,0,0,0,0,0,0,0,0,5.5139084,0,0,48.580002,46.389999,49.610001,54.240002,6,1,1,0,0,4,4,1,306,165260.47,0,0,1962.9402 -2874,3552,6476,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,5.4760432,5.1216989,3,0,0,0,-9,0,-931.44104,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2613664,0,0,54,43,-9,-9,6,1,1,0,0,9,2,1,303,1951.1545,0,0,433.57843 -2874,3553,6477,-9,6476,-9,2,1,1,63,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1119.7963,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,-9,-9,6,1,1,0,0,9,1,1,186,-14271.306,0,0,828.9845 -2874,3554,6478,-9,6476,-9,3,1,1,61,2,0,0,0,2,-9,6,3,0,1,1,0,0,0,3,0,0,0,-9,0,-988.82471,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,61.787704,3,25.91,25.08,-9,-9,3,1,1,0,0,9,1,1,775,112135.37,0,0,1503.5281 -2875,3555,6479,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,2,6.8907485,6.8471398,0,3,0,0,0,-9,0,-1014.2262,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,7,8,12,15,1,1,-9,0,16.028368,16.028368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.219999,53.68,-9,-9,4,1,1,0,1,7,2,0,327,-109862.45,0,0,-253.74577 -2876,3556,6480,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,3,3,0,0,2,0,5.1704679,5.3723745,3,0,0,0,-9,0,-987.67267,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,4.9991641,0,16.13019,3,64.300003,16.469999,-9,-9,6,1,1,1,1,2,2,0,63,501489.56,0,0,1090.766 -2877,3557,6481,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,2,1,0,0,3,7.6106753,7.8633866,0,3,0,0,0,-9,0,-898.39447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,84,15,1,0,-9,0,7.744977,7.744977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.040001,37.939999,-9,-9,6,3,4,0,0,2,3,1,893,1115079.1,0,0,1262.489 -2878,3558,6482,-9,6483,6484,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.964,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,0,514.33331,620412.5,0,0,3642.8523 -2878,3558,6483,6484,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,0,3,7.5807333,7.6164908,5.4902458,2,0,-9,2,0,-3,-13.993203,0,1,1,32,2,3,1,-9,-9,2019,1,3,12,0,30,30,15,1,0,1,0,7.6126556,7.6126556,0,0,0,0,0,0,0,0,1,1,0,5.919837,0,0,0,29.35,54.09,35.189999,51.540001,6,1,1,0,0,5,5,0,514.33331,620412.5,0,0,3642.8523 -2878,3558,6484,6483,-9,-9,3,1,1,32,1,0,1,0,2,-9,2,1,0,0,3,8.7882299,8.6357784,0,2,0,-9,2,0,3,161.43964,-9,0,0,29,2,3,1,-9,-9,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.189999,51.540001,29.35,54.09,5,1,1,0,0,5,5,0,514.33331,620412.5,0,0,3642.8523 -2879,3559,6485,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-935.0733,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,4,1,-9,0,0,0,1,17.803782,0,26.32868,39.349117,0,0,0,1,1,0,.54720867,0,0,0,30.43,21.219999,-9,-9,3,1,1,0,0,13,1,1,652,-27165.471,0,0,1067.5367 -2880,3560,6486,6487,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,0,2,7.5422783,7.6310391,0,1,0,-9,3,0,-2,-49.816483,0,1,1,28,1,4,1,-9,-9,2019,1,1,10,0,28,45,15,1,0,1,0,7.4022684,7.4022684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.200001,49.400002,57.16,56.150002,2,1,1,0,0,1,3,0,1053,26683.795,0,0,2022.8398 -2880,3560,6487,6486,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,7.5803399,7.2931757,0,1,0,-9,3,0,2,113.64734,0,1,0,26,2,2,1,2,2,2019,1,2,10,0,34,30,15,1,0,1,0,6.0688429,6.0688429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.200001,49.400002,2,1,1,0,0,1,3,0,1053,26683.795,0,0,2022.8398 -2881,3561,6488,6489,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,9.1485271,9.1575155,0,1,0,-9,10,0,-1,68.392975,0,0,1,34,1,5,1,2,2,2019,1,1,10,1,50,20,15,1,0,1,0,17.762268,17.762268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,50.73,57.060001,57.759998,6,1,1,0,0,4,5,1,730,230371.94,0,0,5141.4292 -2881,3561,6489,6488,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,0,5,8.8202515,9.1261559,0,1,0,-9,10,0,1,-91.867355,0,0,0,33,1,4,1,2,2,2019,1,2,10,0,40,44,15,1,0,1,0,23.199406,23.199406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54.099998,50.73,7,1,1,0,0,4,5,1,730,230371.94,0,0,5141.4292 -2882,3562,6490,6491,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,8.8617401,8.6439428,0,1,0,-9,2,0,1,150.8739,-9,1,0,24,2,2,1,-9,-9,2019,1,1,11,2,50,0,15,1,0,1,0,15.731317,15.731317,0,0,0,0,0,0,0,0,0,0,0,1.8948516,0,0,0,48,59,35.66,51.59,5,4,1,0,0,11,5,1,400,37028.316,0,0,3432.29 -2882,3562,6491,6490,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,2,7.7709951,7.3454275,0,1,0,-9,2,0,-1,20.957373,0,1,1,25,2,4,1,-9,-9,2019,1,2,14,3,39,37,15,1,0,1,0,6.5702987,6.5702987,0,0,0,0,0,0,0,0,0,0,0,2.8890297,0,0,0,35.66,51.59,48,59,5,1,1,0,0,11,5,1,400,37028.316,0,0,3432.29 -2883,3563,6492,-9,-9,-9,1,1,1,52,2,0,0,0,3,-9,1,1,0,0,2,7.6927395,7.8987751,0,3,0,0,0,-9,0,-1073.4149,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,45,45,15,1,0,-9,0,6.7079763,6.7079763,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.728813,3,46,39,-9,-9,4,1,1,0,0,5,3,1,1714,48723.586,0,0,1465.15 -2884,3564,6493,6494,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,9.1267681,9.4385462,0,1,0,-9,6,0,-2,23.16917,0,0,1,32,2,5,1,1,1,2019,1,1,9,0,35,35,15,1,0,1,0,34.794861,34.794861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,60.02,56.419998,6,2,3,0,0,7,5,1,526.5,645963.75,0,0,5893.6338 -2884,3564,6494,6493,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,0,5,9.2171955,9.4855518,0,1,0,-9,6,0,2,43.464317,0,0,0,30,1,4,1,-9,-9,2019,1,2,6,0,43,50,15,1,0,1,0,26.261616,26.261616,0,0,0,0,0,0,0,0,0,0,0,1.8309791,0,0,0,60.02,56.419998,51.240002,58.84,7,1,1,0,0,7,5,1,526.5,645963.75,0,0,5893.6338 -2885,3565,6495,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-979.56177,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,37,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3188405,0,0,0,30.65,69.589996,-9,-9,5,1,1,1,0,11,1,1,298,0,0,0,1351.9167 -2886,3566,6496,-9,-9,-9,3,1,1,21,2,0,1,0,2,0,7,2,0,0,5,7.3845115,7.4145846,0,3,0,0,0,-9,0,-894.07697,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,7,3,1,566,99828.313,0,0,1971.0106 -2887,3567,6497,-9,-9,-9,1,1,0,44,2,0,2,0,2,-9,2,1,0,0,3,7.1670747,6.9294806,0,4,0,0,0,-9,0,-1072.5648,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,7,16,16,15,1,1,-9,0,7.728363,7.728363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,58.41,-9,-9,4,1,1,0,1,10,2,0,923,319131.59,0,0,1245.9731 -2888,3568,6498,6499,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,8.3110819,8.3605719,1,0,-9,46,0,2,52.96608,0,0,0,69,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1771355,7.7000937,0,0,57.060001,57.759998,57.060001,57.759998,7,1,1,0,0,12,3,1,667,876144.38,0,0,2286.3569 -2888,3568,6499,6498,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,46,0,-2,68.201767,0,0,0,71,2,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0317068,0,0,0,57.060001,57.759998,57.060001,57.759998,1,1,1,0,0,12,3,1,667,876144.38,0,0,2286.3569 -2889,3569,6500,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-836.99329,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.75,19.700001,-9,-9,6,1,1,0,1,6,1,0,1064,123038.45,0,0,547.02032 -2890,3570,6501,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,0,3,6.225987,7.924408,7.4636302,3,0,0,0,-9,0,-1080.8842,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,18,18,15,1,0,-9,0,3.0630567,3.0630567,0,0,0,0,0,0,0,14.5,0,0,0,0,7.4050555,17.272079,3,61.040001,39.41,-9,-9,6,1,1,0,0,4,3,1,190,189398.8,0,0,1169.0101 -2891,3571,6502,-9,6504,-9,1,1,1,44,2,0,0,0,2,-9,2,1,0,0,4,7.8958788,7.6181192,0,3,0,0,0,-9,0,-1068.4403,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,30,15,1,0,-9,1,7.0730085,7.0730085,0,0,0,0,0,0,0,0,1,1,0,.36356327,0,0,0,58.150002,52.91,-9,-9,5,1,1,0,0,7,3,0,474,-39531.18,0,0,641.36316 -2891,3572,6503,-9,6504,-9,2,1,1,38,2,0,0,0,1,-9,2,1,0,0,3,7.3618417,7.8396749,0,3,0,0,0,-9,0,-1045.7433,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,40,15,1,0,-9,1,6.9386868,6.9386868,0,0,0,0,0,0,0,0,1,1,0,2.4972019,0,0,0,54.040001,50.75,-9,-9,5,1,1,0,0,7,3,0,133,201348.06,0,0,1015.9584 -2891,3573,6504,-9,-9,-9,3,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1040.8993,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,13.630263,0,0,0,1,1,0,0,0,0,0,67.75,25.82,-9,-9,5,1,1,0,0,7,1,0,664,23551.889,0,0,897.47125 -2892,3574,6505,6506,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.616262,7.3304601,1,0,-9,30,0,0,53.770031,0,0,0,65,1,3,3,2,2,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4525714,0,0,51.439999,54.509998,21.110001,59.549999,6,1,1,0,0,10,2,1,473,313585.97,0,0,2461.1904 -2892,3574,6506,6505,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,5.689569,5.9351988,1,0,-9,30,0,0,109.73807,0,0,0,65,1,4,3,3,2,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3671904,6.0230598,0,0,21.110001,59.549999,51.439999,54.509998,3,1,1,0,0,10,2,1,473,313585.97,0,0,2461.1904 -2893,3575,6507,6508,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,4,-9.8898907,0,0,0,67,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.05684,1,60.84,39.779999,53,47,7,1,1,0,0,8,2,0,456,394716.06,0,0,2861.9397 -2893,3575,6508,6507,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.1363268,6.8872008,1,0,-9,6,0,-4,-75.569046,0,0,0,71,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7424006,0,0,53,47,60.84,39.779999,5,1,1,0,0,8,2,0,456,394716.06,0,0,2861.9397 -2894,3576,6509,6510,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.9270902,8.1526766,1,0,-9,42,0,5,-59.312111,0,0,0,63,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.79913,8.0833807,0,0,52.82,53.970001,47.299999,53.209999,6,1,1,0,0,5,4,1,206.5,2261304.5,0,0,4085.1782 -2894,3576,6510,6509,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.4416556,7.8604527,1,0,-9,42,0,-5,-77.825516,0,0,0,68,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.317749,7.8144588,0,0,47.299999,53.209999,52.82,53.970001,7,1,1,0,0,5,4,1,206.5,2261304.5,0,0,4085.1782 -2895,3577,6511,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,0,4,7.7422342,7.3392687,0,3,0,0,0,-9,0,-1114.6824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,22,22,15,1,0,-9,0,7.3649349,7.3649349,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.34,54.259998,-9,-9,6,1,1,0,1,2,3,0,1113,593145.06,0,0,871.34399 -2895,3578,6512,-9,-9,-9,2,1,1,45,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1083.2548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.93,58.41,-9,-9,5,1,1,1,1,2,1,0,236,-129798.99,0,0,1259.0405 -2896,3579,6513,6514,-9,-9,1,1,0,23,1,0,0,0,2,-9,7,2,0,1,3,0,0,0,1,0,1,1,-9,-3,-16.414211,1,1,1,26,2,4,1,1,3,2019,3,2,32,12,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.4,64.459999,54.790001,55.860001,3,1,1,0,1,12,3,0,983,-37926.441,0,0,424.43124 -2896,3579,6514,6513,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,4,7.9984093,7.9773712,0,1,0,-9,1,-9,3,29.655903,-9,1,0,23,2,3,2,-9,-9,2019,2,1,5,0,45,0,15,1,0,2,0,6.8624721,6.8624721,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,10.4,64.459999,7,1,1,0,0,12,3,0,983,-37926.441,0,0,424.43124 -2897,3580,6515,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,0,4,8.5170403,8.4017544,0,4,0,0,0,-9,0,-868.80145,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,39,38,15,1,0,-9,0,13.236697,13.236697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,5,1,1,0,0,6,4,1,1859.5,37764.211,0,0,1106.3132 -2897,3580,6516,-9,6515,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1032.1622,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,4,1,1859.5,37764.211,0,0,1106.3132 -2897,3581,6517,-9,6515,-9,2,1,0,20,2,0,1,0,3,-9,2,1,0,0,4,7.9471412,8.2454939,0,3,0,0,0,-9,0,-931.46411,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,50,36,15,1,0,-9,1,7.1418533,7.1418533,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4232748,3,40.580002,60.950001,-9,-9,6,1,1,0,0,6,4,1,396,42411.555,0,0,1218.1691 -2898,3582,6518,6520,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.517457,8.5887957,0,2,0,-9,6,0,-7,-44.161736,0,0,1,47,1,5,1,1,1,2019,1,1,16,4,30,31,15,1,1,1,0,21.388998,21.388998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,62.84,51.139999,60.450001,6,1,1,0,0,12,4,1,869.25,353519.5,0,0,2120.2595 -2898,3582,6519,-9,6518,6520,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.9483,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,869.25,353519.5,0,0,2120.2595 -2898,3582,6520,6518,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,5,7.8809733,7.8050265,0,2,0,-9,6,0,7,95.382271,0,0,0,40,1,4,1,2,2,2019,1,2,8,0,33,22,15,1,0,1,0,9.1024952,9.1024952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,39.16,62.84,5,1,1,0,0,12,4,1,869.25,353519.5,0,0,2120.2595 -2898,3582,6521,-9,6518,6520,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.03357,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,869.25,353519.5,0,0,2120.2595 -2899,3583,6522,6524,-9,-9,1,1,0,35,1,0,4,0,2,-9,2,1,0,0,3,7.6949372,7.626092,0,2,0,-9,7,0,-7,-21.789047,0,0,1,42,2,4,1,3,3,2019,1,3,9,2,36,27,15,1,0,1,0,6.1208825,6.1208825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.130001,48.650002,42,52.139999,7,1,1,0,0,12,3,0,984.83331,381393.47,0,0,2696.6938 -2899,3583,6523,-9,6522,6524,4,1,1,12,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.44299,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,12,3,0,984.83331,381393.47,0,0,2696.6938 -2899,3583,6524,6522,-9,-9,3,1,1,42,1,0,4,0,2,-9,2,1,0,0,4,7.3570275,7.5419254,0,2,0,-9,7,0,7,20.567642,0,0,0,35,2,3,1,3,3,2019,1,1,11,0,40,40,15,1,0,1,0,6.2621732,6.2621732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,52.139999,47.130001,48.650002,5,1,1,0,0,12,3,0,984.83331,381393.47,0,0,2696.6938 -2899,3583,6525,-9,6522,6524,2,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.6647,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,3,0,984.83331,381393.47,0,0,2696.6938 -2899,3583,6526,-9,6522,6524,5,1,1,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-982.90741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,3,0,984.83331,381393.47,0,0,2696.6938 -2899,3583,6527,-9,6522,6524,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.93665,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,0,984.83331,381393.47,0,0,2696.6938 -2900,3584,6528,6529,-9,-9,2,1,1,51,1,1,0,0,2,-9,2,1,0,0,3,8.60567,8.7472429,0,1,0,-9,10,0,-2,-26.131586,0,0,0,53,2,4,3,2,3,2019,2,1,15,3,57,57,15,1,0,3,0,12.520402,12.520402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.259998,58.610001,57.16,56.150002,3,1,1,0,0,9,5,1,389.66666,1564927.6,0,0,5969.7559 -2900,3584,6529,6528,-9,-9,1,1,0,53,1,1,0,0,2,-9,97,3,0,0,4,7.6861973,7.4702177,0,1,0,-9,10,0,2,-82.525276,0,0,0,51,2,3,1,2,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.14383,3,57.16,56.150002,34.259998,58.610001,5,1,1,0,0,9,5,1,389.66666,1564927.6,0,0,5969.7559 -2900,3584,6530,-9,-9,6528,4,1,0,1,2,1,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1021.4052,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,6,0,0,9,5,1,389.66666,1564927.6,0,0,5969.7559 -2901,3585,6531,6534,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,7.8485608,8.0069265,0,2,0,-9,6,0,0,203.09763,0,0,1,35,1,4,1,3,2,2019,1,2,7,0,34,40,15,1,0,1,0,8.9417686,8.9417686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,48.529999,58.91,6,1,1,0,0,10,5,1,1736,529695.5,0,0,4937.2451 -2901,3585,6532,-9,6531,6534,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.20087,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,1736,529695.5,0,0,4937.2451 -2901,3585,6533,-9,6531,6534,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1112.5302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,5,1,1736,529695.5,0,0,4937.2451 -2901,3585,6534,6531,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,0,4,9.3344612,9.2061272,0,2,0,-9,6,0,0,-14.864617,0,0,0,35,1,4,1,2,2,2019,1,1,12,0,55,45,15,1,0,1,0,20.468782,20.468782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,54.790001,55.860001,3,1,1,0,0,10,5,1,1736,529695.5,0,0,4937.2451 -2902,3586,6535,6537,-9,-9,1,1,0,43,1,0,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,22,0,1,59.105316,0,0,1,42,2,4,1,3,2,2019,1,2,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,41.02,59.77,6,1,1,0,0,10,3,0,578.33331,76907.656,0,0,2063.3093 -2902,3586,6536,-9,6535,6537,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.62878,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.82,63.209999,-9,-9,6,1,1,0,0,10,3,0,578.33331,76907.656,0,0,2063.3093 -2902,3586,6537,6535,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,0,4,8.6908474,8.4536924,0,2,0,-9,22,0,-1,-109.10163,0,0,0,43,2,4,1,2,3,2019,1,1,14,2,45,55,15,1,0,1,0,13.087686,13.087686,0,0,0,0,0,0,0,7,0,0,0,0,0,13.905153,1,41.02,59.77,50,55,5,1,1,0,0,10,3,0,578.33331,76907.656,0,0,2063.3093 -2903,3587,6538,-9,6539,6541,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.7184,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,3,1,544.75,96716.625,0,0,1978.6782 -2903,3587,6539,6541,-9,-9,2,1,0,31,1,1,2,0,2,-9,1,1,0,0,4,2.1859105,2.3271532,0,2,0,-9,8,0,-2,-86.574799,0,0,1,33,2,4,1,2,2,2019,1,1,7,0,45,35,15,1,0,1,0,.019300906,.019300906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,36.139999,57.860001,6,1,1,0,0,2,3,1,544.75,96716.625,0,0,1978.6782 -2903,3587,6540,-9,6539,6541,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,544.75,96716.625,0,0,1978.6782 -2903,3587,6541,6539,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,0,4,8.2705307,8.5319233,0,2,0,-9,8,0,2,12.609518,0,0,0,31,2,4,1,2,2,2019,1,2,17,6,50,45,15,1,1,1,0,11.1572,11.1572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.139999,57.860001,54.790001,55.860001,4,1,1,0,0,2,3,1,544.75,96716.625,0,0,1978.6782 -2904,3588,6542,-9,-9,-9,1,1,1,72,2,0,0,0,1,-9,4,3,0,0,2,0,7.5373707,7.5063958,3,0,0,0,-9,0,-869.26929,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.860023,7.4976587,0,0,52.529999,41.009998,-9,-9,4,1,1,0,0,9,3,1,1322,1718413.9,0,0,2440.1035 -2905,3589,6543,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,0,5,8.5909376,8.4315805,0,4,0,0,0,-9,0,-1086.1923,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,3,0,40,40,15,1,0,-9,0,9.1376286,9.1376286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,-9,-9,6,3,4,0,0,8,4,0,1091.5,131524.44,0,0,1942.9662 -2905,3589,6544,-9,6543,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-989.85303,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,8,4,0,1091.5,131524.44,0,0,1942.9662 -2905,3590,6545,-9,-9,-9,3,1,1,22,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1082.6506,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,8,1,0,109,0,0,0,1734.8984 -2906,3591,6546,6547,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,9.221158,9.0183916,0,1,0,-9,6,0,6,36.907799,0,0,0,50,2,5,3,-9,-9,2019,2,1,9,1,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8634424,0,0,0,54,53,56.630001,53.720001,6,3,4,0,0,8,5,1,444.5,3052087.5,0,0,4235.1802 -2906,3591,6547,6546,-9,-9,1,1,0,50,1,0,0,0,2,-9,6,3,0,0,5,0,0,0,1,0,-9,6,0,-6,72.372566,0,0,0,56,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.630001,53.720001,54,53,5,3,4,0,0,8,5,1,444.5,3052087.5,0,0,4235.1802 -2906,3592,6548,-9,6547,6546,3,1,0,21,2,0,0,0,2,1,97,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1017.2,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,28,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.450001,33.75,-9,-9,3,3,4,0,0,8,1,1,299,0,0,0,0 -2907,3593,6549,6550,-9,-9,1,1,0,44,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,27,0,-3,0,0,0,1,47,3,1,3,3,3,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.360001,42.25,29.889999,33.84,4,1,1,1,0,5,1,0,544,163577.19,0,0,1371.0565 -2907,3593,6550,6549,-9,-9,2,1,1,47,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,27,0,3,0,0,0,0,44,3,2,3,-9,-9,2019,4,1,23,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.889999,33.84,41.360001,42.25,1,1,1,0,0,5,1,0,544,163577.19,0,0,1371.0565 -2907,3594,6551,-9,6549,6550,3,1,1,20,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1133.849,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.869999,58.549999,-9,-9,2,1,1,1,0,5,1,0,617,141212.52,0,0,-1043.3386 -2908,3595,6552,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,4,9.3145161,9.1718559,0,3,0,0,0,-9,0,-1104.2383,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,41,15,1,0,-9,0,25.266552,25.266552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,8,5,1,66,290250.97,0,0,2874.209 -2909,3596,6553,6554,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,9.3228807,9.3740158,0,2,0,-9,19,0,4,-150.51915,0,0,0,37,1,5,1,2,3,2019,1,1,9,0,55,20,15,1,0,1,0,16.968115,16.968115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,38.59,63.369999,6,1,1,0,0,6,5,1,472.66666,894707.56,0,0,6106.4805 -2909,3596,6554,6553,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,5,9.2634468,9.0640697,0,2,0,-9,19,0,-4,149.41164,0,0,1,41,1,4,1,1,1,2019,1,2,8,0,50,47,15,1,0,1,0,20.011581,20.011581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,63.369999,57.16,56.150002,6,1,1,0,0,6,5,1,472.66666,894707.56,0,0,6106.4805 -2909,3596,6555,-9,6554,6553,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.20642,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,472.66666,894707.56,0,0,6106.4805 -2910,3597,6556,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-942.56622,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.900002,32.119999,-9,-9,6,1,1,0,0,2,1,0,301,100417.01,0,0,1085.347 -2911,3598,6557,6558,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,3,6.1717744,6.2931576,0,1,0,-9,37,0,3,-75.655952,0,0,0,62,3,2,1,3,3,2019,1,2,7,0,6,8,15,1,0,1,0,10.747256,10.747256,0,0,0,0,0,0,0,7,1,1,0,2.6322441,0,5.9237266,3,58.470001,50.220001,48.099998,47.330002,6,1,1,0,0,10,4,0,221.5,629452.56,0,0,2206.5471 -2911,3598,6558,6557,-9,-9,2,1,1,62,1,0,0,0,3,-9,1,1,0,0,2,8.6182537,9.0419741,0,1,0,-9,37,0,-3,-15.5793,0,0,0,65,2,3,1,3,3,2019,1,1,13,1,40,50,15,1,0,1,0,16.042269,16.042269,0,0,0,0,0,0,0,0,1,1,0,2.9582875,0,0,0,48.099998,47.330002,58.470001,50.220001,3,1,1,0,0,10,4,0,221.5,629452.56,0,0,2206.5471 -2912,3599,6559,6562,-9,-9,1,1,0,32,1,1,2,0,2,-9,2,1,0,0,3,8.288763,8.2675037,0,2,0,-9,8,0,-2,-98.338531,0,0,1,34,1,2,1,1,2,2019,1,2,8,0,45,37,15,1,0,1,0,8.2691984,8.2691984,0,0,0,0,0,0,0,0,1,1,0,.32344416,0,0,0,52,54.509998,32.200001,51.52,6,1,1,0,0,10,3,1,890,239635.8,0,0,2562.4194 -2912,3599,6560,-9,6559,6562,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.30664,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,890,239635.8,0,0,2562.4194 -2912,3599,6561,-9,6559,6562,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-877.84406,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,1,890,239635.8,0,0,2562.4194 -2912,3599,6562,6559,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,2,7.4540615,7.3558612,0,2,0,-9,8,0,2,24.003714,0,0,0,32,2,3,1,-9,-9,2019,1,1,7,1,50,20,15,1,0,1,0,4.9588094,4.9588094,0,0,0,0,0,0,0,0,1,1,0,3.9256523,0,0,0,32.200001,51.52,52,54.509998,2,1,1,0,0,10,3,1,890,239635.8,0,0,2562.4194 -2913,3600,6563,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,3,0,8.0116262,8.2364874,3,0,0,0,-9,0,-975.15228,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0534182,7.9508286,0,0,51.939999,40.740002,-9,-9,3,1,1,0,0,9,4,1,211,1056124.9,0,0,2712.3369 -2914,3601,6564,-9,6567,6566,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.28278,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,1244.25,595559.81,0,0,3678.3359 -2914,3601,6565,-9,6567,6566,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-900.74109,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,1244.25,595559.81,0,0,3678.3359 -2914,3601,6566,6567,-9,-9,1,1,1,56,1,0,2,0,2,-9,2,1,0,0,2,8.0652876,8.4145508,0,2,0,-9,10,0,8,59.127441,0,0,0,48,2,2,1,-9,-9,2019,1,2,33,11,36,36,15,1,1,1,0,11.525046,11.525046,0,0,0,0,0,0,0,0,1,1,0,6.3022895,0,0,0,23.34,42.189999,37.849998,23.41,3,1,1,0,1,13,3,1,1244.25,595559.81,0,0,3678.3359 -2914,3601,6567,6566,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,2,7.4102516,7.1680183,0,2,0,-9,10,0,-8,39.61684,0,0,0,56,2,2,1,3,3,2019,1,1,22,8,28,28,15,1,1,1,0,7.2223835,7.2223835,0,0,0,0,0,0,0,0,1,1,0,6.2648492,0,0,0,37.849998,23.41,23.34,42.189999,3,1,1,0,0,13,3,1,1244.25,595559.81,0,0,3678.3359 -2915,3602,6568,6569,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,7.9527788,7.815681,0,1,0,-9,12,0,7,46.360912,0,0,0,45,2,4,1,2,2,2019,1,2,9,0,45,0,15,1,0,1,0,8.1393337,8.1393337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,7,4,1,824.5,821063.75,0,0,3848.1357 -2915,3602,6569,6568,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.2901144,8.2122726,0,1,0,-9,13,0,-7,-21.971384,0,0,0,52,2,4,1,2,2,2019,1,1,7,0,45,0,15,1,0,1,0,10.293729,10.293729,0,0,0,0,0,0,0,0,0,0,0,6.1741042,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,7,4,1,824.5,821063.75,0,0,3848.1357 -2916,3603,6570,6571,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.3688307,8.1283016,0,1,0,-9,31,0,-5,-90.649124,0,0,0,58,2,3,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,10.256942,10.256942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,52.91,51,49,6,1,1,0,0,8,5,1,2264.5,1619404,0,0,2598.573 -2916,3603,6571,6570,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,8.6916199,8.6439295,0,1,0,-9,31,0,5,-37.021351,0,0,0,53,2,3,1,2,3,2019,1,1,10,1,45,55,15,1,0,1,0,13.991695,13.991695,0,0,0,0,0,0,0,0,0,0,0,.34875241,0,0,0,51,49,52.400002,52.91,5,1,1,0,0,8,5,1,2264.5,1619404,0,0,2598.573 -2916,3604,6572,-9,6570,6571,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.0674953,8.1856947,0,3,0,0,0,-9,0,-953.29926,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,37,15,1,0,-9,1,8.6166353,8.6166353,0,0,0,0,0,0,0,0,0,0,0,1.4499844,0,0,0,47,58,-9,-9,5,1,1,0,0,8,4,1,724,-245407.11,0,0,1185.2515 -2917,3605,6573,-9,6575,-9,1,1,0,51,3,0,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-972.53754,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,34,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.612797,3,25.610001,34.799999,-9,-9,1,1,1,1,1,10,1,1,507,47508.176,0,0,-1147.3868 -2917,3606,6574,-9,6573,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,1,1,0,0,0,3,0,0,0,-9,0,-880.53937,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,29,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.54,46.98,-9,-9,2,1,1,0,0,10,1,1,124,-112126.02,0,0,124.71437 -2917,3607,6575,-9,-9,-9,3,1,0,90,3,0,1,0,3,-9,4,3,0,1,1,0,0,0,4,0,0,0,-9,0,-1120.717,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,9,0,0,15,4,1,-9,0,0,0,1,0,0,44.049484,0,0,0,0,1,1,0,0,0,0,0,25.059999,33.73,-9,-9,6,1,1,0,0,10,1,1,238,251614.55,0,0,669.88049 -2918,3608,6576,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,2,1,0,0,3,8.1191616,7.9643264,0,3,0,0,0,-9,0,-896.86713,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,37,15,1,0,-9,0,8.5317135,8.5317135,0,0,0,0,0,0,0,0,0,0,0,2.3141165,0,0,0,57.099998,41.16,-9,-9,6,1,1,0,0,4,4,1,724,58688.598,0,0,1959.3121 -2919,3609,6577,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,1,1,0,0,4,8.1401672,8.3269806,0,3,0,-9,0,-9,0,-878.94971,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,60,0,15,1,1,-9,0,6.7587438,6.7587438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,1,4,4,0,74,-83455.641,0,0,1272.4019 -2920,3610,6578,-9,6581,6580,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.00513,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,338,204815.91,0,0,4761.5918 -2920,3610,6579,-9,6581,6580,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.60608,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,338,204815.91,0,0,4761.5918 -2920,3610,6580,6581,-9,-9,1,1,1,37,1,1,2,0,1,-9,1,1,0,0,4,9.3320408,9.2280617,0,2,0,-9,7,0,1,-199.1492,0,0,0,36,1,5,1,2,2,2019,1,2,11,0,48,40,15,1,0,1,0,25.031649,25.031649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,52.439999,48.709999,61.529999,5,1,1,0,0,9,5,1,338,204815.91,0,0,4761.5918 -2920,3610,6581,6580,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,0,5,7.931241,8.3393459,0,2,0,-9,7,0,-1,.85217386,0,0,1,37,1,4,1,2,2,2019,1,1,8,0,21,0,15,1,0,1,0,19.705935,19.705935,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.709999,61.529999,50.650002,52.439999,6,1,1,0,0,9,5,1,338,204815.91,0,0,4761.5918 -2921,3611,6582,6583,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.9460502,7.3473969,1,0,-9,43,0,-2,-28.134909,0,0,0,77,1,2,3,-9,2,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5304453,7.3048234,0,0,30.77,64.339996,53.630001,40.709999,6,1,1,0,0,4,3,1,1175,1506702,0,0,2877.365 -2921,3611,6583,6582,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,2,0,7.8561134,7.5101762,1,0,-9,44,0,2,-112.35344,0,0,0,75,2,4,3,2,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0925629,7.7755766,0,0,53.630001,40.709999,30.77,64.339996,6,1,1,0,0,4,3,1,1175,1506702,0,0,2877.365 -2922,3612,6584,6585,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.0518656,8.3839092,0,1,0,-9,22,0,-1,-57.041046,0,0,0,52,2,4,1,2,2,2019,1,2,11,1,38,38,15,1,0,1,0,12.423678,12.423678,0,0,0,0,0,0,0,0,0,0,0,3.5727448,0,0,0,57.779999,35.759998,55.759998,52.639999,4,1,1,0,0,11,4,1,814,562461.81,0,0,1448.9189 -2922,3612,6585,6584,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.4754272,7.5898423,4.2270255,1,0,-9,22,0,1,-127.37281,0,0,0,51,2,2,1,2,2,2019,1,1,9,0,36,28,15,1,0,1,0,5.6840196,5.6840196,0,0,0,0,0,0,0,0,0,0,0,3.9650846,4.117281,0,0,55.759998,52.639999,57.779999,35.759998,5,1,1,0,0,11,4,1,814,562461.81,0,0,1448.9189 -2922,3613,6586,-9,6585,6584,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.1366825,8.0767145,0,3,0,0,0,-9,0,-965.62378,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,45,50,15,1,0,-9,1,7.4249778,7.4249778,0,0,0,0,0,0,0,0,0,0,0,2.9472282,0,0,0,35.860001,64.550003,-9,-9,6,1,1,0,0,11,3,1,683,127912.38,0,0,301.89566 -2922,3614,6587,-9,6585,6584,4,1,0,20,2,0,0,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-999.56372,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,25,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.59261698,0,0,0,30.530001,41.68,-9,-9,3,1,1,0,0,11,1,1,207,-62086.09,0,0,1003.4248 -2923,3615,6588,6589,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.3030777,8.5108376,0,1,0,-9,35,0,-4,-3.351258,0,0,0,62,2,3,1,2,3,2019,1,2,9,3,39,40,15,1,0,1,0,14.394069,14.394069,0,0,0,0,0,0,0,2,1,1,0,2.9948659,0,6.833128,3,47.200001,21.530001,41.619999,52.549999,7,1,1,0,0,10,4,1,572,396496.78,0,0,4361.0693 -2923,3615,6589,6588,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.8406816,8.1891918,0,1,0,-9,6,0,4,-82.769112,0,0,0,58,2,3,1,3,2,2019,1,1,17,7,37,38,15,1,1,1,0,7.8599348,7.8599348,0,0,0,0,0,0,0,2,1,1,0,2.3472137,0,0,3,41.619999,52.549999,47.200001,21.530001,6,1,1,0,0,10,4,1,572,396496.78,0,0,4361.0693 -2924,3616,6590,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,4,0,5.5795217,5.6300845,3,0,0,0,-9,0,-1044.9507,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5348887,0,0,48.709999,48.950001,-9,-9,6,1,1,0,0,12,2,1,790,588304.69,0,0,1442.2726 -2925,3617,6591,-9,6593,6592,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-982.37634,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,921.66669,423198.56,0,0,3880.2856 -2925,3617,6592,6593,-9,-9,1,1,1,33,1,1,1,0,2,-9,1,1,0,0,3,8.9692068,9.1811686,0,2,0,-9,7,0,-1,4.0121527,0,0,0,34,1,4,1,3,2,2019,1,2,10,1,60,55,15,1,0,1,0,14.701533,14.701533,0,0,0,0,0,0,0,0,1,1,0,6.9970293,0,0,0,55.610001,50.299999,47.23,58.080002,6,1,1,0,0,7,5,1,921.66669,423198.56,0,0,3880.2856 -2925,3617,6593,6592,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,7,0,1,3.7584779,0,0,1,33,2,3,1,1,1,2019,1,1,8,0,0,47,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.64268988,0,0,0,47.23,58.080002,55.610001,50.299999,6,1,1,0,0,7,5,1,921.66669,423198.56,0,0,3880.2856 -2926,3618,6594,6595,-9,-9,1,1,1,47,1,0,0,0,3,-9,2,1,0,1,3,6.8798037,6.7619724,0,1,0,-9,28,0,-16,62.54808,0,0,0,63,3,2,3,-9,-9,2019,2,2,12,0,15,15,15,1,0,4,0,6.0264282,6.0264282,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.07127,2,44,39.279999,42.200001,21.18,4,1,1,0,0,7,2,0,569,88003.18,0,0,1739.6664 -2926,3618,6595,6594,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,28,0,16,-106.48157,0,0,0,47,3,3,1,3,3,2019,3,1,17,6,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.200001,21.18,44,39.279999,7,1,1,0,0,7,2,0,569,88003.18,0,0,1739.6664 -2927,3619,6596,6597,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,2,0,7.6508369,7.4501104,1,0,-9,58,0,5,-89.309601,0,0,0,80,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.6405509,7.7379098,0,1,48.889999,38.669998,46.849998,27.299999,5,1,1,0,0,7,3,1,626.5,775749.63,0,0,2711.6384 -2927,3619,6597,6596,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,2,0,6.854218,6.8963518,1,0,-9,58,0,-5,60.603477,0,0,0,85,2,2,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.4991026,6.6520596,0,0,46.849998,27.299999,48.889999,38.669998,4,1,1,0,0,7,3,1,626.5,775749.63,0,0,2711.6384 -2928,3620,6598,-9,-9,-9,1,1,1,46,3,0,1,0,2,-9,1,1,0,0,3,4.9828749,5.5809054,0,4,0,0,0,-9,0,-961.68054,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,7,0,15,1,0,-9,0,2.6982791,2.6982791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.970001,57.610001,-9,-9,4,1,1,0,0,2,2,0,456,23389.865,0,0,1338.8347 -2928,3620,6599,-9,-9,6598,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.2603,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,456,23389.865,0,0,1338.8347 -2929,3621,6600,-9,-9,6601,2,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-937.02216,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,659,31762.363,0,0,7300.9785 -2929,3621,6601,-9,-9,-9,1,1,1,40,2,0,2,0,2,-9,2,1,0,0,5,8.8418789,9.1306391,6.3135161,4,0,0,0,-9,0,-1181.5891,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,45,40,15,1,0,-9,0,33.675323,33.675323,0,0,0,0,0,0,0,0,1,1,0,8.7111292,6.8374929,0,0,49.360001,58.529999,-9,-9,5,1,1,0,0,7,5,1,659,31762.363,0,0,7300.9785 -2929,3621,6602,-9,-9,6601,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-896.31781,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,659,31762.363,0,0,7300.9785 -2930,3622,6603,6604,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,8.099103,7.9552059,0,1,0,-9,42,0,4,-45.186863,0,0,0,60,2,4,1,3,3,2019,1,2,11,0,31,6,15,1,0,1,0,10.14988,10.14988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,57.16,56.150002,5,1,1,0,0,7,5,1,532,5849239,0,0,2884.7041 -2930,3622,6604,6603,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.2764463,8.3677015,0,1,0,-9,42,0,-4,122.56509,0,0,0,64,2,3,1,2,3,2019,1,1,6,0,41,44,15,1,0,1,0,18.485254,18.485254,0,0,0,0,0,0,0,0,0,0,0,6.5321126,0,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,7,5,1,532,5849239,0,0,2884.7041 -2930,3623,6605,-9,6603,6604,3,1,1,33,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-998.51599,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,3,35,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.369999,61.5,-9,-9,3,1,1,0,1,7,1,1,782,42876.578,0,0,0 -2931,3624,6606,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,3,8.0740271,8.1647329,0,3,0,0,0,-9,0,-1030.2704,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,37,37,15,1,0,-9,0,11.607488,11.607488,0,0,0,0,0,0,0,0,1,1,0,2.3098662,0,0,0,34.959999,54.380001,-9,-9,6,1,1,0,0,4,4,1,1999,-104597.49,0,0,-185.14731 -2932,3625,6607,6608,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,32,0,-5,171.25729,0,0,0,79,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6386609,0,7.4904122,1,35.619999,52.939999,54.75,49.130001,6,1,1,0,0,10,3,1,558,1274323.4,0,0,2202.0989 -2932,3625,6608,6607,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.6284246,7.8456187,1,0,-9,32,0,5,-111.90216,0,0,0,74,2,2,3,3,3,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.590064,7.3947811,0,0,54.75,49.130001,35.619999,52.939999,6,1,1,0,0,10,3,1,558,1274323.4,0,0,2202.0989 -2933,3626,6609,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1114.1295,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.48,28.24,-9,-9,1,1,1,0,1,2,1,0,1047,35818.387,0,0,1338.811 -2934,3627,6610,6612,-9,-9,1,1,1,37,1,0,3,0,2,-9,2,1,0,0,4,8.4698439,8.4032698,0,2,0,-9,8,0,2,-50.898342,0,0,0,35,2,4,1,2,2,2019,1,2,8,0,42,50,15,1,0,1,0,14.774259,14.774259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,46.98,59.349998,6,1,1,0,0,12,4,1,630,133613.97,0,0,4119.3198 -2934,3627,6611,-9,6612,6610,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.9492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,630,133613.97,0,0,4119.3198 -2934,3627,6612,6610,-9,-9,2,1,0,35,1,0,3,0,2,-9,2,1,0,0,4,8.9279175,8.7948828,0,2,0,-9,8,0,-2,-54.344509,0,0,1,37,2,4,1,-9,-9,2019,1,1,11,0,37,32,15,1,0,1,0,22.405348,22.405348,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,57.16,56.150002,6,1,1,0,0,12,4,1,630,133613.97,0,0,4119.3198 -2934,3627,6613,-9,6612,6610,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.92151,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,630,133613.97,0,0,4119.3198 -2934,3627,6614,-9,6612,6610,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.44354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,630,133613.97,0,0,4119.3198 -2935,3628,6615,-9,6617,6618,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.4253,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,13,5,1,937.25,530138.81,0,0,5058.4019 -2935,3628,6616,-9,6617,6618,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.43317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,2,0,0,13,5,1,937.25,530138.81,0,0,5058.4019 -2935,3628,6617,6618,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,7.7342086,8.1251564,0,2,0,-9,14,0,-2,-120.10611,0,0,1,46,1,3,1,2,3,2019,1,1,11,0,32,35,15,1,0,1,0,10.033901,10.033901,0,0,0,0,0,0,0,0,1,1,0,1.7388563,0,0,0,52,54.509998,47.43,54.040001,6,4,2,0,0,13,5,1,937.25,530138.81,0,0,5058.4019 -2935,3628,6618,6617,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,9.2977066,9.1455975,0,2,0,-9,15,0,2,-63.981518,0,0,0,44,1,3,1,2,2,2019,1,2,11,0,50,50,15,1,0,1,0,25.518257,25.518257,0,0,0,0,0,0,0,0,1,1,0,2.888346,0,0,0,47.43,54.040001,52,54.509998,5,1,1,0,0,13,5,1,937.25,530138.81,0,0,5058.4019 -2936,3629,6619,6620,-9,-9,2,1,1,53,1,0,0,0,3,-9,1,1,0,0,4,7.7176776,7.6082621,0,1,0,-9,7,0,1,-26.293871,0,0,0,52,2,3,1,-9,-9,2019,1,1,9,1,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4379463,0,0,0,53,54,46.48,53.759998,6,1,1,0,0,8,4,1,1218.5,1192185.5,0,0,2454.7122 -2936,3629,6620,6619,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.6674709,7.3903384,0,1,0,-9,34,0,-1,-33.859707,0,0,0,53,3,4,1,2,2,2019,1,2,9,0,21,21,15,1,0,1,0,9.3813257,9.3813257,0,0,0,0,0,0,0,0,0,0,0,2.8645957,0,0,0,46.48,53.759998,53,54,5,4,2,0,0,8,4,1,1218.5,1192185.5,0,0,2454.7122 -2937,3630,6621,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,4,0,7.3378983,7.4436517,3,0,0,0,-9,0,-1019.6632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.45999,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,5,3,1,113,415674,0,0,1838.98 -2938,3631,6622,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-947.28619,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,52,-9,-9,6,1,1,0,1,9,1,0,876,144064.16,0,0,17.679413 -2939,3632,6623,6624,-9,-9,2,1,0,30,1,1,1,0,1,-9,2,1,0,0,4,8.1952038,8.3201256,0,2,0,-9,5,0,0,-17.590508,0,0,1,30,1,4,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,10.799812,10.799812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.959999,50.73,54.450001,56.220001,7,1,1,0,0,1,5,1,1062.6666,1027943.1,0,0,4513.9282 -2939,3632,6624,6623,-9,-9,1,1,1,30,1,1,1,0,1,-9,1,1,0,0,4,9.2249937,9.1027088,0,2,0,-9,5,0,0,56.0056,0,0,0,30,1,4,1,-9,-9,2019,1,2,5,0,37,37,15,1,0,1,0,29.747959,29.747959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,53.959999,50.73,6,1,1,0,0,1,5,1,1062.6666,1027943.1,0,0,4513.9282 -2939,3632,6625,-9,6623,6624,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1120.545,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,1,5,1,1062.6666,1027943.1,0,0,4513.9282 -2940,3633,6626,6627,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,5,8.1807804,8.308054,6.7490277,1,0,-9,29,0,7,83.607536,0,0,0,54,2,2,1,-9,-9,2019,1,1,9,2,47,42,15,1,0,1,0,10.302776,10.302776,0,0,0,0,0,0,0,0,0,0,0,0,6.8380742,0,0,57.060001,57.759998,48.119999,15,5,1,1,0,0,7,4,0,395.5,695306.75,0,0,2686.1304 -2940,3633,6627,6626,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,7.1995115,7.4923868,6.4761529,1,0,-9,29,0,-7,161.87379,0,0,0,61,2,5,1,-9,-9,2019,1,2,21,8,24,20,15,1,1,1,0,5.9650917,5.9650917,0,0,0,0,0,0,0,0,0,0,0,0,6.9814153,0,0,48.119999,15,57.060001,57.759998,3,1,1,0,0,7,4,0,395.5,695306.75,0,0,2686.1304 -2940,3634,6628,-9,6627,6626,3,1,1,25,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-834.258,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.330002,51.080002,-9,-9,7,1,1,1,0,7,1,0,79,0,0,0,0 -2941,3635,6629,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,5,0,7.5254645,7.5816035,3,0,0,0,-9,0,-978.06354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2037358,7.4805822,0,0,60.02,56.419998,-9,-9,6,1,1,0,1,11,3,0,727,413965.78,0,0,1095.3113 -2942,3636,6630,-9,-9,-9,1,1,0,23,2,0,0,0,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1050.8562,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.200001,59.970001,-9,-9,6,1,1,0,0,5,1,0,144,-142323.05,0,0,-454.09579 -2943,3637,6631,6632,-9,-9,2,1,1,64,1,0,0,0,3,-9,1,1,0,0,3,6.579432,6.5311284,0,1,0,-9,45,0,-4,92.254723,-9,0,0,68,2,3,3,-9,3,2019,2,1,11,0,35,0,15,1,0,4,0,2.4055014,2.4055014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.049999,36.560001,49.540001,53.32,7,1,1,0,0,9,2,1,700.5,383166.88,0,0,1967.9182 -2943,3637,6632,6631,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,5.6480031,5.6507044,1,0,-9,46,0,4,6.8938007,-9,0,0,64,3,3,1,3,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6332684,0,0,49.540001,53.32,52.049999,36.560001,6,1,1,0,0,9,2,1,700.5,383166.88,0,0,1967.9182 -2944,3638,6633,-9,6636,6634,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1162.4297,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,515.25,680.57568,0,0,2256.4404 -2944,3638,6634,6636,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,8.7255211,8.4062624,0,2,0,-9,10,0,0,-91.305489,0,0,0,37,1,3,3,2,2,2019,2,2,9,0,38,37,15,1,0,3,0,19.540497,19.540497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,45,52,5,1,1,0,0,7,4,1,515.25,680.57568,0,0,2256.4404 -2944,3638,6635,-9,6636,6634,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.80585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,4,1,515.25,680.57568,0,0,2256.4404 -2944,3638,6636,6634,-9,-9,2,1,0,37,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,10,0,0,-41.947498,0,0,1,37,1,4,1,-9,-9,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,54.790001,55.860001,5,1,1,0,1,7,4,1,515.25,680.57568,0,0,2256.4404 -2945,3639,6637,6638,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.4999046,8.708333,0,1,0,-9,10,0,2,62.544716,0,0,0,47,3,4,1,3,3,2019,1,2,11,0,38,38,15,1,0,1,0,17.600555,17.600555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.189999,58.009998,41.59,61.77,2,1,1,0,0,5,5,1,832.5,198867.48,0,0,2903.8965 -2945,3639,6638,6637,-9,-9,2,1,0,47,1,0,0,0,3,-9,2,1,0,0,4,7.8877993,7.4764609,0,1,0,-9,10,0,-2,-16.672516,0,0,0,49,2,3,1,3,3,2019,1,1,11,1,30,35,15,1,0,1,0,9.3167858,9.3167858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,61.77,44.189999,58.009998,6,1,1,0,0,5,5,1,832.5,198867.48,0,0,2903.8965 -2945,3640,6639,-9,6638,6637,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,5,7.6055055,7.7519164,0,3,0,0,0,-9,0,-1100.7001,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,37,37,15,1,0,-9,1,8.2305727,8.2305727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.799999,56.389999,-9,-9,6,1,1,0,0,5,3,1,506,126346.73,0,0,1360.6704 -2945,3641,6640,-9,6638,6637,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,6.6648159,6.5799541,0,3,0,0,0,-9,0,-940.33838,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,17,5,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.869999,59.57,-9,-9,5,1,1,0,0,5,2,1,239,121390.13,0,0,1171.5121 -2946,3642,6641,6643,-9,-9,1,1,1,39,1,0,1,0,1,-9,2,1,0,0,5,8.2696514,8.0707951,0,2,0,-9,5,0,-2,-28.852915,0,0,0,41,1,3,1,1,1,2019,1,2,8,0,45,0,15,1,0,1,0,10.734495,10.734495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.25,38.330002,7,1,1,0,0,2,4,0,924,69530.086,0,0,3202.1284 -2946,3642,6642,-9,6643,6641,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.62347,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,0,924,69530.086,0,0,3202.1284 -2946,3642,6643,6641,-9,-9,2,1,0,41,1,0,1,0,1,1,2,1,0,0,3,7.8504262,8.2828827,0,2,0,-9,5,0,2,13.966009,-9,0,1,39,1,5,1,-9,-9,2019,1,1,8,0,38,0,15,1,0,1,0,10.068431,10.068431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.25,38.330002,57.060001,57.759998,6,1,1,0,0,2,4,0,924,69530.086,0,0,3202.1284 -2947,3643,6644,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1047.9813,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.139999,44.009998,-9,-9,7,1,1,0,0,5,1,0,324,72860.266,0,0,623.96613 -2948,3644,6645,6646,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,0,5,0,0,0,1,0,-9,34,0,0,-75.051407,0,0,0,57,1,3,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0528622,0,0,0,59.040001,54.119999,50,49,1,1,1,0,0,6,5,1,821,431178.13,0,0,6327.2695 -2948,3644,6646,6645,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,3,9.8120031,9.7567968,8.1875677,1,0,-9,10,0,0,18.551369,-9,0,0,57,2,5,3,-9,-9,2019,2,1,10,1,45,0,15,1,0,3,0,27.662142,27.662142,0,0,0,0,0,0,0,0,0,0,0,6.6486883,7.9702544,0,0,50,49,59.040001,54.119999,5,1,1,0,0,6,5,1,821,431178.13,0,0,6327.2695 -2948,3645,6647,-9,6645,6646,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.9305062,8.160676,0,3,0,0,0,-9,0,-1061.2399,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,38,0,15,1,0,-9,1,9.2302551,9.2302551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,6,4,1,507,169372.95,0,0,986.63129 -2949,3646,6648,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,5,8.2074347,8.2904673,0,3,0,0,0,-9,0,-994.47943,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,47,39,15,1,0,-9,0,8.9649191,8.9649191,0,0,0,0,0,0,0,0,0,0,0,1.3760974,0,0,0,62.389999,56.709999,-9,-9,5,1,1,0,0,10,4,0,2484,114394.77,0,0,2106.5366 -2950,3647,6649,6650,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.4494047,7.03125,1,0,-9,27,-9,0,-187.8235,-9,0,0,63,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1282735,6.0903487,3,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,4,3,1,1004.5,895886,0,0,2020.0137 -2950,3647,6650,6649,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,6.7739573,7.0610051,1,0,-9,28,-9,0,76.980949,-9,0,0,63,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1029565,6.8344669,0,0,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,4,3,1,1004.5,895886,0,0,2020.0137 -2950,3648,6651,-9,6650,6649,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.905324,9.0035152,0,3,0,-9,0,-9,0,-882.51129,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,52,0,15,1,0,-9,1,17.709866,17.709866,0,0,0,0,0,0,0,0,1,1,0,1.516777,0,0,0,52.150002,52.900002,-9,-9,6,1,1,0,0,4,5,1,574,-98879.352,0,0,4230.0176 -2951,3649,6652,6653,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,2,7.9302912,7.7866807,0,1,0,-9,8,0,10,-14.000145,0,0,0,46,2,3,1,-9,-9,2019,1,1,9,0,42,45,15,1,0,1,0,7.4476414,7.4476414,0,0,0,0,0,0,0,2,0,0,0,0,0,.28437021,3,49.279999,52.09,54.369999,54.799999,5,1,1,0,0,12,4,0,1224,300737.84,0,0,1624.5288 -2951,3649,6653,6652,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,7.9766207,7.9895759,0,1,0,-9,8,0,-10,-165.61575,0,0,0,56,2,2,1,-9,-9,2019,1,2,6,0,42,40,15,1,0,1,0,8.6061707,8.6061707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,49.279999,52.09,2,1,1,0,0,12,4,0,1224,300737.84,0,0,1624.5288 -2952,3650,6654,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,5,0,6.9103627,7.1290331,3,0,0,0,-9,0,-1142.8772,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0790453,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,9,2,1,336,228544.14,0,0,756.17188 -2953,3651,6655,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,3,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-926.9967,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.52,21.99,-9,-9,4,1,1,1,0,9,1,0,1000,284278.31,0,0,263.14069 -2954,3652,6656,-9,-9,-9,1,1,0,70,3,0,1,0,3,-9,6,3,0,0,3,0,0,0,4,0,-9,0,-9,0,-1053.4613,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.33,50.07,-9,-9,5,3,4,0,0,8,1,0,439,0,0,0,3169.7087 -2954,3652,6657,-9,6656,-9,5,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1109.9365,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,1,0,439,0,0,0,3169.7087 -2954,3653,6658,-9,6656,-9,3,1,1,26,3,0,1,0,2,-9,2,1,0,0,3,8.3766041,8.0953445,0,3,0,-9,0,-9,0,-1011.7681,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,35,0,15,1,0,-9,1,14.200727,14.200727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,5,3,4,0,0,8,4,0,654,109660.84,0,0,1387.2601 -2954,3654,6659,6660,-9,-9,6,1,1,34,1,0,1,0,2,-9,2,1,0,0,4,8.1072855,8.3566723,0,2,0,-9,1,-9,7,-67.672981,-9,0,0,27,2,5,3,-9,-9,2019,2,2,6,0,35,0,15,1,0,3,0,13.166222,13.166222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,45.610001,59.700001,6,3,4,0,0,8,3,0,220,191621.44,0,0,2252.0308 -2954,3654,6660,6659,6656,-9,2,1,0,27,1,0,1,0,2,-9,3,3,0,1,5,0,0,0,2,0,-9,1,-9,-7,-69.461296,-9,1,1,34,2,4,1,3,-9,2019,3,6,11,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,16.754503,3,45.610001,59.700001,62.490002,55.09,5,3,4,1,0,8,3,0,220,191621.44,0,0,2252.0308 -2955,3655,6661,6662,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.4414945,7.7683969,1,0,-9,50,0,2,14.417676,0,0,0,72,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7447248,0,0,58.299999,52.91,60.630001,27.469999,6,1,1,0,0,7,3,1,472.5,867061.63,0,0,1610.2496 -2955,3655,6662,6661,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,3,0,7.1371961,6.8866882,1,0,-9,50,0,-2,-7.8988471,0,0,0,74,2,4,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,1.5973865,0,0,0,0,0,1,1,0,0,7.0739646,0,0,60.630001,27.469999,58.299999,52.91,6,1,1,0,0,7,3,1,472.5,867061.63,0,0,1610.2496 -2956,3656,6663,6664,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,5,7.6733694,7.3927774,0,2,0,-9,2,0,3,.58834267,0,0,0,44,1,4,1,2,3,2019,1,4,6,0,18,18,15,1,0,1,0,11.698761,11.698761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,52,55,6,1,1,0,0,12,4,1,280,165071.5,0,0,3568.7239 -2956,3656,6664,6663,-9,-9,4,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,9.1063347,9.0669222,0,2,0,-9,2,0,-3,101.02946,-9,0,0,47,2,5,1,-9,-9,2019,1,1,9,1,48,0,15,1,0,1,0,21.398134,21.398134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.060001,57.759998,5,1,1,0,0,12,4,1,280,165071.5,0,0,3568.7239 -2956,3656,6665,-9,6663,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.05432,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,280,165071.5,0,0,3568.7239 -2957,3657,6666,6667,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.9348249,8.8239565,0,1,0,-9,27,0,1,-7.4332733,0,0,0,49,1,4,1,2,2,2019,1,1,12,1,47,45,15,1,0,1,0,20.668888,20.668888,0,0,0,0,0,0,0,0,0,0,0,3.2698996,0,0,0,54.950001,39.619999,54.740002,51.689999,6,1,1,0,0,5,5,1,279,415740,0,0,5127.5684 -2957,3657,6667,6666,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.8017445,8.6906986,0,1,0,-9,27,0,-1,102.64516,0,0,0,50,2,3,1,2,2,2019,1,2,9,0,45,50,15,1,0,1,0,14.322304,14.322304,0,0,0,0,0,0,0,2,0,0,0,.47366211,0,0,3,54.740002,51.689999,54.950001,39.619999,6,1,1,0,0,5,5,1,279,415740,0,0,5127.5684 -2958,3658,6668,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,1,1,0,0,4,9.5186491,9.4748411,0,3,0,0,0,-9,0,-1062.2782,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,19,8,35,35,15,1,1,-9,0,49.243889,49.243889,0,0,0,0,0,0,0,0,1,1,0,7.029089,0,0,0,33.009998,63.169998,-9,-9,3,1,1,0,0,8,5,1,273,248232.25,0,0,4657.5103 -2959,3659,6669,6670,-9,-9,2,1,1,50,1,0,0,0,3,-9,1,1,0,0,4,7.9568849,8.3924875,0,1,0,-9,2,0,0,-18.605534,0,0,0,50,2,4,1,-9,-9,2019,1,1,7,0,45,40,15,1,0,1,0,10.344038,10.344038,0,0,0,0,0,0,0,7,1,1,0,2.6653507,0,3.715162,3,55.189999,54.259998,54.790001,55.860001,7,1,1,0,0,9,5,1,802,105589.03,0,0,2930.606 -2959,3659,6670,6669,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.5520496,8.2426081,0,1,0,-9,24,0,0,-55.712151,0,0,0,50,3,4,1,2,2,2019,1,2,7,0,24,23,15,1,0,1,0,20.07074,20.07074,0,0,0,0,0,0,0,5.48,1,1,0,.98590976,0,8.8813334,3,54.790001,55.860001,55.189999,54.259998,7,1,1,0,0,9,5,1,802,105589.03,0,0,2930.606 -2959,3660,6671,-9,6670,6669,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,6.7065334,6.9238548,0,3,0,0,0,-9,0,-863.60638,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,4,0,15,16,15,1,0,-9,1,8.0185108,8.0185108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.989998,32.509998,-9,-9,7,1,1,0,0,9,2,1,104,-21071.721,0,0,1236.5002 -2960,3661,6672,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,5,8.7946606,8.6847982,0,3,0,0,0,-9,0,-903.79553,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,40,15,1,0,-9,0,16.598034,16.598034,0,0,0,0,0,0,0,0,0,0,0,2.5683975,0,0,0,45.459999,61.869999,-9,-9,3,1,1,0,0,8,5,1,289,-30769.848,0,0,1389.6995 -2961,3662,6673,-9,6676,6677,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1194.4896,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,1,826,47457.891,0,0,5811.4053 -2961,3662,6674,-9,6676,6677,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.11127,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,1,826,47457.891,0,0,5811.4053 -2961,3662,6675,-9,6676,6677,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1140.4429,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,11,3,1,826,47457.891,0,0,5811.4053 -2961,3662,6676,6677,-9,-9,2,1,0,43,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,8,0,-3,-47.627975,0,0,1,46,2,4,1,2,2,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.2087998,0,121.24849,3,42.610001,49.310001,54.200001,57.490002,5,1,1,0,0,11,3,1,826,47457.891,0,0,5811.4053 -2961,3662,6677,6676,-9,-9,1,1,1,46,1,0,3,0,2,-9,2,1,0,0,4,8.4285898,8.7495394,0,2,0,-9,8,0,3,-101.56289,0,0,0,43,2,3,3,2,2,2019,2,2,8,0,49,49,15,1,0,3,0,11.576609,11.576609,0,0,0,0,0,0,0,42,1,1,0,0,0,41.455688,3,54.200001,57.490002,42.610001,49.310001,6,1,1,0,0,11,3,1,826,47457.891,0,0,5811.4053 -2962,3663,6678,-9,6680,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.7292,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,13,2,0,323.66666,-37425.133,0,0,2054.675 -2962,3663,6679,-9,6680,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-867.50879,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,13,2,0,323.66666,-37425.133,0,0,2054.675 -2962,3663,6680,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,2,1,0,0,5,6.3079076,6.726923,0,4,0,0,0,-9,0,-1008.036,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,12,12,15,1,0,-9,0,5.9434252,5.9434252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,2,0,323.66666,-37425.133,0,0,2054.675 -2963,3664,6681,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1089.9127,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,24,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.09,47.889999,-9,-9,1,1,1,1,1,10,1,0,137,53848.68,0,0,1548.6049 -2964,3665,6682,6683,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,55,0,-3,-54.004196,0,0,0,75,3,4,3,-9,-9,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,5.4286714,43.826412,0,0,0,33.546394,0,1,1,0,0,0,0,0,47.189999,19.030001,30.32,59.619999,3,1,1,0,0,12,2,1,287,665940.5,0,0,2398.4697 -2964,3665,6683,6682,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.4639888,7.2393589,1,0,-9,9,0,3,44.664677,0,0,0,72,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4632201,6.3042598,2,30.32,59.619999,47.189999,19.030001,7,1,1,0,0,12,2,1,287,665940.5,0,0,2398.4697 -2965,3666,6684,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,5.1901412,5.0155697,3,0,0,0,-9,0,-1075.7714,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.9878006,4.8668222,0,0,47.02,52.470001,-9,-9,6,1,1,0,0,12,2,1,351,115637.97,0,0,-741.8808 -2966,3667,6685,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,0,2,0,8.1718349,7.837688,3,0,0,0,-9,0,-938.19232,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4948521,7.976943,0,0,35.779999,41.869999,-9,-9,5,1,1,0,0,9,3,1,1184,512507.06,0,0,1279.8507 -2967,3668,6686,-9,6687,-9,2,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1041.2928,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,982.66669,32317.299,0,0,864.07544 -2967,3668,6687,-9,-9,-9,1,1,0,24,2,1,2,0,2,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-911.91144,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.91,59.889999,-9,-9,5,1,1,1,0,2,1,0,982.66669,32317.299,0,0,864.07544 -2967,3668,6688,-9,6687,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.5266,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,982.66669,32317.299,0,0,864.07544 -2968,3669,6689,6690,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,4.9413457,4.8914003,1,0,-9,64,0,-2,37.731701,0,0,0,85,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9148507,4.9378819,0,0,55.959999,49.93,39.509998,40.130001,6,1,1,0,0,4,2,1,1075.5,63204.414,0,0,1297.5593 -2968,3669,6690,6689,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,64,0,2,98.749306,0,0,0,83,3,3,3,3,2,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.509998,40.130001,55.959999,49.93,6,1,1,0,0,4,2,1,1075.5,63204.414,0,0,1297.5593 -2969,3670,6691,-9,6692,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-997.7981,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,0,875,324382.56,0,0,2357.1125 -2969,3670,6692,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,3,8.6695309,8.8377638,6.8341565,4,0,0,0,-9,0,-875.20569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,9,76,49,15,1,1,-9,0,5.7592077,5.7592077,0,0,0,0,0,0,0,0,1,1,0,7.0930543,0,0,0,32.84,60.849998,-9,-9,4,1,1,0,1,12,5,0,875,324382.56,0,0,2357.1125 -2970,3671,6693,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,6.7957444,6.5046816,3,0,0,0,-9,0,-1161.2717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7314105,6.8106771,0,0,51.080002,49.240002,-9,-9,6,1,1,0,0,10,2,1,109,354605.09,0,0,137.01439 -2971,3672,6694,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,8,3,1,1,1,0,6.3009777,5.9812799,3,0,0,0,-9,0,-913.44794,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3727317,5.9721599,0,0,32.299999,24.82,-9,-9,5,3,4,0,0,7,2,1,390,366970.97,0,0,369.17206 -2972,3673,6695,6696,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,0,4,8.4198771,8.3711519,5.7477918,1,0,-9,17,0,6,-60.960701,0,0,0,73,2,4,3,-9,1,2019,4,1,7,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.362309,6.367074,0,0,59.139999,52.5,51.240002,58.84,6,1,1,0,0,10,4,1,691.5,2178804.5,0,0,5841.1045 -2972,3673,6696,6695,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,5.3275099,5.7143025,1,0,-9,32,0,-6,-44.540771,0,0,0,79,1,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3647938,5.6712084,0,0,51.240002,58.84,59.139999,52.5,6,1,1,0,0,10,4,1,691.5,2178804.5,0,0,5841.1045 -2973,3674,6697,6700,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,0,3,7.6587248,7.8603168,0,2,0,-9,8,0,-19,56.249245,0,0,1,56,2,2,1,2,2,2019,1,2,12,2,32,27,15,1,0,1,0,10.93033,10.93033,0,0,0,0,0,0,0,0,1,1,0,2.2477889,0,0,0,45.5,43.689999,34.919998,42.490002,5,1,1,0,0,5,4,1,428.5,423805.84,0,0,3239.8647 -2973,3674,6698,-9,6697,6700,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-872.7608,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,428.5,423805.84,0,0,3239.8647 -2973,3674,6699,-9,6697,6700,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1168.3038,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,428.5,423805.84,0,0,3239.8647 -2973,3674,6700,6697,-9,-9,2,1,1,56,1,1,2,0,2,-9,2,1,0,0,2,8.3548079,8.6666651,6.879456,2,0,-9,8,0,19,-28.894058,0,0,0,37,1,3,1,2,3,2019,1,1,16,4,50,48,15,1,1,1,0,7.9222193,7.9222193,0,0,0,0,0,0,0,0,1,1,0,1.9665277,6.8600388,0,0,34.919998,42.490002,45.5,43.689999,3,1,1,0,0,5,4,1,428.5,423805.84,0,0,3239.8647 -2974,3675,6701,6702,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-5,0,0,0,0,80,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.97066,1,51,46,54,46,6,1,1,0,1,13,1,1,864,11985.598,0,0,1370.3173 -2974,3675,6702,6701,-9,-9,1,1,1,80,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,57,0,5,0,0,0,0,75,3,3,3,3,3,2019,4,2,9,1,0,0,15,3,0,4,0,0,0,1,0,133.04112,0,0,0,0,0,1,1,0,0,0,0,0,54,46,51,46,6,1,1,0,0,13,1,1,864,11985.598,0,0,1370.3173 -2975,3676,6703,-9,-9,-9,1,1,0,43,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,-9,0,-9,0,-939.72131,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.878853,3,24.73,25.52,-9,-9,5,1,1,0,0,7,1,0,451,0,0,0,2565.1177 -2976,3677,6704,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,8.0799713,8.1062298,3,0,0,0,-9,0,-1012.3255,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2031965,7.8740406,0,0,61.040001,39.41,-9,-9,6,1,1,0,0,11,4,1,489,1015097.1,0,0,1558.203 -2977,3678,6705,6706,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,5,9.1714096,9.2429714,0,1,0,-9,8,0,0,.19898471,0,0,0,34,1,5,1,-9,-9,2019,1,1,7,0,48,51,15,1,0,1,0,19.98237,19.98237,0,0,0,0,0,0,0,0,0,0,0,3.5337632,0,0,0,56.470001,59.400002,54.689999,57.470001,6,1,1,0,0,10,5,1,2918.5,234660.38,0,0,5607.0605 -2977,3678,6706,6705,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,5,8.7400379,9.1337433,0,1,0,-9,8,0,0,88.908745,0,0,1,34,1,5,1,1,1,2019,1,2,3,0,45,52,15,1,0,1,0,21.023722,21.023722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,56.470001,59.400002,6,1,1,0,0,10,5,1,2918.5,234660.38,0,0,5607.0605 -2978,3679,6707,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,2,1,0,0,3,8.0918045,8.3366804,0,3,0,0,0,-9,0,-1056.5249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,50,48,15,1,0,-9,0,9.6007442,9.6007442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.41,51.52,-9,-9,3,1,1,0,0,5,4,1,436,82149.016,0,0,857.34058 -2979,3680,6708,6709,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,7.4407687,7.4043465,0,1,0,-9,31,0,2,167.09238,0,0,0,55,2,4,1,2,2,2019,1,2,6,0,15,15,15,1,0,1,0,11.935683,11.935683,0,0,0,0,0,0,0,0,0,0,0,1.8415143,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,8,5,1,616,652586.63,0,0,5562.0029 -2979,3680,6709,6708,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,9.5490961,9.5586309,0,1,0,-9,10,0,-2,-26.09724,0,0,0,57,1,4,1,2,3,2019,1,1,8,0,45,45,15,1,0,1,0,33.061729,33.061729,0,0,0,0,0,0,0,2,0,0,0,3.7694325,0,10.639846,3,57.16,56.150002,57.16,56.150002,7,1,1,0,0,8,5,1,616,652586.63,0,0,5562.0029 -2979,3681,6710,-9,6708,6709,3,1,1,24,2,0,0,0,1,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1034.1926,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,72,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9233599,0,0,0,43.73,59.700001,-9,-9,6,1,1,0,1,8,1,1,749,68255.227,0,0,-236.03284 -2980,3682,6711,6712,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,7.6467681,7.7336226,0,2,0,-9,24,0,-13,-30.267017,0,0,1,54,2,5,1,2,2,2019,1,2,6,0,24,24,15,1,0,1,0,10.296532,10.296532,0,0,0,0,0,0,0,0,1,0,1,4.302238,0,0,0,54.790001,55.860001,57.540001,58.849998,6,1,1,0,0,2,3,0,771.33331,461774.56,0,0,1401.4036 -2980,3682,6712,6711,-9,-9,2,1,1,54,1,0,1,0,2,-9,1,1,0,0,5,5.6942101,6.0089946,0,2,0,-9,7,0,13,70.886856,0,0,0,41,2,4,1,-9,-9,2019,1,1,8,0,91,10,15,1,0,1,0,.44930482,.44930482,0,0,0,0,0,0,0,0,1,0,1,6.1961451,0,0,0,57.540001,58.849998,54.790001,55.860001,7,1,1,0,0,2,3,0,771.33331,461774.56,0,0,1401.4036 -2980,3682,6713,-9,6711,6712,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.6879,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,3,0,771.33331,461774.56,0,0,1401.4036 -2980,3683,6714,-9,6711,6712,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,6.6183028,7.0530844,0,3,0,0,0,-9,0,-908.14685,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,84,70,15,1,0,-9,1,1.1069359,1.1069359,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,2,2,0,548,20386.211,0,0,359.78622 -2981,3684,6715,6716,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,9.1584702,9.1094971,0,1,0,-9,8,0,-7,26.861734,0,0,0,66,2,4,3,1,1,2019,2,2,18,6,57,57,15,1,1,4,0,14.908048,14.908048,0,0,0,0,0,0,0,0,0,0,0,6.857336,0,0,0,51.189999,52.169998,61.119999,51.57,6,1,1,0,0,7,5,1,608,1257318.1,0,0,4374.9551 -2981,3684,6716,6715,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,8.2431765,7.9806552,1,0,-9,8,0,7,41.618187,0,0,0,59,1,4,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5000601,8.1244173,0,0,61.119999,51.57,51.189999,52.169998,7,1,1,0,0,7,5,1,608,1257318.1,0,0,4374.9551 -2982,3685,6717,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,4,6.0057755,8.6740246,8.4116364,3,0,0,0,-9,0,-1135.1442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4718752,8.3555803,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,5,1,179,1041844.3,0,0,3457.7981 -2983,3686,6718,-9,-9,-9,1,1,0,22,2,0,0,0,2,1,2,1,0,0,2,6.5455956,6.5331674,5.8246431,3,0,0,0,-9,0,-1019.8687,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,23,0,15,1,1,-9,0,4.8651538,4.8651538,0,0,0,0,0,0,0,0,0,0,0,5.6271672,0,0,0,26.120001,51.919998,-9,-9,5,1,1,0,1,5,2,0,1764,102533.64,0,0,432.3497 -2984,3687,6719,6720,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.3967896,8.4928093,5.7674441,1,0,-9,5,0,1,1.2698165,0,0,0,59,2,4,1,3,3,2019,1,2,7,0,40,45,15,1,0,1,0,12.560334,12.560334,0,0,0,0,0,0,0,0,0,0,0,0,6.6157303,0,0,52.080002,51.669998,47.439999,56.389999,2,1,1,0,0,9,4,0,688,518788.94,0,0,3503.0762 -2984,3687,6720,6719,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.0722995,7.4269614,0,1,0,-9,5,0,-1,-71.53669,0,0,0,60,2,3,1,3,3,2019,1,1,11,0,20,20,15,1,0,1,0,8.3676233,8.3676233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.439999,56.389999,52.080002,51.669998,5,1,1,0,0,9,4,0,688,518788.94,0,0,3503.0762 -2984,3688,6721,-9,6720,6719,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,7.9086485,7.9262028,0,3,0,0,0,-9,0,-955.78711,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,1,42,46,15,1,0,-9,1,6.2032804,6.2032804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,4,1,1,0,0,9,3,0,296,-17321.557,0,0,616.2879 -2985,3689,6722,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,3,9.2280302,9.4577312,0,3,0,0,0,-9,0,-886.30157,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,50,55,15,1,0,-9,0,22.927889,22.927889,0,0,0,0,0,0,0,0,0,0,0,2.2449355,0,0,0,49.52,56.950001,-9,-9,6,4,2,0,0,8,5,1,137,262030.48,0,0,5332.9126 -2986,3690,6723,6724,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,3,8.5743828,8.6621609,0,1,0,-9,8,0,6,72.615936,0,0,0,53,2,3,1,-9,2,2019,1,2,12,2,44,43,15,1,0,1,0,14.562453,14.562453,0,0,0,0,0,0,0,0,0,0,0,4.3346214,0,0,0,54.299999,42.490002,54.369999,54.799999,5,1,1,0,0,6,5,1,564,419371.88,0,0,6433.8457 -2986,3690,6724,6723,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,9.2048435,9.4632692,0,1,0,-9,8,0,-6,85.691978,0,0,0,59,1,3,1,3,2,2019,1,1,12,0,45,42,15,1,0,1,0,33.125378,33.125378,0,0,0,0,0,0,0,0,0,0,0,7.9316506,0,0,0,54.369999,54.799999,54.299999,42.490002,6,1,1,0,0,6,5,1,564,419371.88,0,0,6433.8457 -2986,3691,6725,-9,6724,6723,3,1,0,20,2,0,0,1,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-982.23566,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,41.580002,-9,-9,5,1,1,0,0,6,1,1,245,0,0,0,0 -2987,3692,6726,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,3,3,0,0,3,8.7570953,8.585989,0,3,0,0,0,-9,0,-942.64172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,50,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.23,50.779999,-9,-9,6,3,4,1,0,8,5,1,649,1032756.6,0,0,2784.6997 -2988,3693,6727,6728,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.1459103,6.1062016,1,0,-9,10,0,2,96.460037,0,0,0,68,1,4,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2007966,5.8884273,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,7,4,1,720.5,3042112.5,0,0,3646.5347 -2988,3693,6728,6727,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.4438848,8.5021172,1,0,-9,10,0,-2,-70.396111,0,0,0,70,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7196195,8.1439819,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,7,4,1,720.5,3042112.5,0,0,3646.5347 -2989,3694,6729,6730,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,59,0,-5,101.68483,0,0,0,83,3,2,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4404702,1,49.630001,54.220001,47.66,34.23,6,1,1,0,0,4,2,1,668,202006.72,0,0,1363.3743 -2989,3694,6730,6729,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,0,2,0,3.0612605,2.9425731,1,0,-9,10,0,5,28.202368,0,0,0,78,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,14.354938,0,0,0,0,0,1,1,0,2.4956441,2.4691195,0,0,47.66,34.23,49.630001,54.220001,6,1,1,0,0,4,2,1,668,202006.72,0,0,1363.3743 -2990,3695,6731,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-871.87396,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,36,12,0,48,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.440001,39.990002,-9,-9,1,1,1,0,1,11,1,0,935,0,0,0,1017.0118 -2991,3696,6732,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,0,5,7.5361118,7.5952168,0,3,0,-9,0,-9,0,-1051.3417,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,20,0,15,1,0,-9,0,10.827846,10.827846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.029999,51.060001,-9,-9,6,3,4,0,0,8,3,1,560,-126350.38,0,0,2217.0078 -2991,3697,6733,6734,-9,-9,3,1,0,33,1,0,0,0,1,-9,2,1,0,0,5,8.5572348,8.6541433,0,1,0,-9,1,-9,-7,-185.93297,-9,0,1,40,1,5,1,-9,-9,2019,1,2,7,0,45,0,15,1,0,1,0,13.039959,13.039959,0,0,0,0,0,0,0,0,0,0,0,.72885484,0,0,0,57.060001,57.759998,60.02,56.419998,7,3,4,0,0,8,5,1,869.5,574092.88,0,0,4100.77 -2991,3697,6734,6733,-9,-9,2,1,1,40,1,0,0,0,1,-9,2,1,0,0,5,8.5755119,8.8681393,0,1,0,-9,1,-9,7,-24.138586,-9,0,0,33,1,5,1,-9,-9,2019,1,3,8,1,46,0,15,1,0,1,0,14.598544,14.598544,0,0,0,0,0,0,0,0,0,0,0,1.6963495,0,0,0,60.02,56.419998,57.060001,57.759998,6,3,4,0,0,8,5,1,869.5,574092.88,0,0,4100.77 -2992,3698,6735,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,0,5,6.9897919,8.1078196,7.7996001,3,0,0,0,-9,0,-1019.1838,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.4792767,7.8491044,1.6201333,3,56.91,52.360001,-9,-9,6,1,1,0,0,13,4,1,140,465039.84,0,0,1886.3739 -2993,3699,6736,6737,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,9.2931147,9.3613253,0,1,0,-9,9,0,0,18.96871,0,0,0,35,1,4,1,-9,-9,2019,1,1,8,0,38,48,15,1,0,1,0,30.171852,30.171852,0,0,0,0,0,0,0,0,0,0,0,5.8902297,0,0,0,57.16,56.150002,46.5,58.259998,5,1,1,0,0,10,5,0,391,145928.88,0,0,7590.21 -2993,3699,6737,6736,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,4,9.2116432,8.9702301,0,1,0,-9,9,0,0,-71.110031,0,0,1,35,1,4,1,1,1,2019,1,2,8,1,23,45,15,1,0,1,0,61.25071,61.25071,0,0,0,0,0,0,0,0,0,0,0,5.0744162,0,0,0,46.5,58.259998,57.16,56.150002,4,1,1,0,0,10,5,0,391,145928.88,0,0,7590.21 -2994,3700,6738,-9,-9,-9,1,1,1,61,3,0,1,0,1,-9,2,1,0,0,4,7.7703567,8.6755314,8.0068378,4,0,0,0,-9,0,-1012.3762,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,50,15,1,0,-9,0,7.3043256,7.3043256,0,0,0,0,0,0,0,0,1,1,0,8.9746227,8.4736557,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,8,4,1,577,2194695,0,0,3527.6309 -2994,3700,6739,-9,-9,6738,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1031.6082,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,8,4,1,577,2194695,0,0,3527.6309 -2995,3701,6740,6741,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.8582535,5.5883484,1,0,-9,6,0,-5,45.195366,0,0,0,78,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3307076,5.9681573,0,0,52,54.509998,47.73,32.330002,5,1,1,0,0,4,2,0,711.5,532709.88,0,0,1288.2378 -2995,3701,6741,6740,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,7.1716051,7.2504764,1,0,-9,6,0,5,16.261517,0,0,0,73,2,3,3,-9,-9,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0983057,0,0,47.73,32.330002,52,54.509998,7,1,1,0,0,4,2,0,711.5,532709.88,0,0,1288.2378 -2996,3702,6742,-9,6743,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.1146,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,1672.5,-25657.611,0,0,1090.084 -2996,3702,6743,-9,-9,-9,1,1,0,24,2,0,1,0,2,-9,2,1,0,0,4,6.9152761,6.9511261,0,4,0,0,0,-9,0,-913.12701,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,16,15,1,0,-9,0,7.0697269,7.0697269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,4,1,1,0,0,4,2,0,1672.5,-25657.611,0,0,1090.084 -2997,3703,6744,-9,6747,6745,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1038.3356,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,4,2,0,0,2,3,1,497.5,412169.63,0,0,2430.0647 -2997,3703,6745,6747,-9,-9,2,1,1,55,1,0,2,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,10,0,2,-40.211704,0,0,0,53,1,4,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4438152,0,0,0,46.080002,57.200001,48.869999,58.549999,4,1,1,1,0,2,3,1,497.5,412169.63,0,0,2430.0647 -2997,3703,6746,-9,6747,6745,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.28754,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,3,1,497.5,412169.63,0,0,2430.0647 -2997,3703,6747,6745,-9,-9,1,1,0,53,1,0,2,0,1,-9,2,1,0,0,4,8.567605,8.8431787,0,2,0,-9,10,0,-2,-63.930134,0,0,0,55,1,3,3,2,2,2019,2,2,14,1,32,40,15,1,0,3,0,21.332291,21.332291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,46.080002,57.200001,3,3,4,0,0,2,3,1,497.5,412169.63,0,0,2430.0647 -2998,3704,6748,6749,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,4,0,8.0754719,7.764822,1,0,-9,57,0,0,-53.129513,0,0,0,76,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9571953,8.2079372,0,0,57.16,56.150002,51.77,58.57,7,4,2,0,0,7,5,1,960.5,2751722.3,0,0,5728.9277 -2998,3704,6749,6748,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,0,4,0,8.4334726,8.3931236,1,0,-9,54,0,0,62.465752,0,0,0,76,1,4,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4400644,8.7163677,0,0,51.77,58.57,57.16,56.150002,6,1,1,0,0,7,5,1,960.5,2751722.3,0,0,5728.9277 -2999,3705,6750,6752,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,8.4402771,8.5687027,0,2,0,-9,26,0,-3,11.032199,0,0,0,50,2,2,1,2,-9,2019,1,1,7,0,36,26,15,1,0,1,0,14.802002,14.802002,0,0,0,0,0,0,0,0,1,1,0,.62579387,0,0,0,54.790001,55.860001,43.299999,48.119999,6,1,1,0,0,13,4,1,1029.3334,437128.97,0,0,3653.0781 -2999,3705,6751,-9,6750,6752,5,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-945.50903,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.360001,59.82,-9,-9,4,1,1,0,0,13,4,1,1029.3334,437128.97,0,0,3653.0781 -2999,3705,6752,6750,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,2,8.2342701,8.3051453,0,2,0,-9,26,0,3,1.2746748,0,0,0,47,2,4,1,2,2,2019,1,2,15,4,38,38,15,1,1,1,0,12.085577,12.085577,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8413384,3,43.299999,48.119999,54.790001,55.860001,3,1,1,0,0,13,4,1,1029.3334,437128.97,0,0,3653.0781 -2999,3706,6753,-9,6750,6752,3,1,1,20,2,0,2,1,2,0,7,2,0,0,5,7.6834979,7.7084217,3.9062057,3,0,0,0,-9,0,-828.94806,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3339086,0,1.0487152,3,51.73,58.82,-9,-9,7,1,1,0,0,13,3,1,152,-135152.38,0,0,534.17047 -2999,3707,6754,-9,6750,6752,4,1,0,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1004.4703,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.219999,60.560001,-9,-9,6,1,1,0,0,13,4,1,1434,-10260.48,0,0,0 -3000,3708,6755,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,2,0,5.8889079,6.0950089,3,0,0,0,-9,0,-1096.3087,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.8772669,1.9682223,3,59.299999,44.82,-9,-9,6,1,1,0,0,13,2,1,104,106144.75,0,0,848.40979 -3001,3709,6756,6757,-9,-9,1,1,0,76,1,0,0,0,3,-9,2,1,0,0,4,6.6058197,6.5641561,3.9305382,1,0,-9,53,0,-1,-20.284065,0,0,0,77,2,3,1,-9,-9,2019,1,2,6,1,12,8,15,1,0,1,0,8.1515255,8.1515255,0,0,0,0,0,0,0,0,1,1,0,3.8360753,4.123672,0,0,54.790001,55.860001,67.480003,40.669998,6,1,1,0,0,9,2,1,352.5,801307.5,0,0,1622.9321 -3001,3709,6757,6756,-9,-9,2,1,1,77,1,0,0,0,2,-9,1,1,0,0,3,0,6.2995858,5.9971504,1,0,-9,53,0,1,-3.8153706,0,0,0,76,3,4,1,2,2,2019,1,1,6,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4860706,5.9995461,0,0,67.480003,40.669998,54.790001,55.860001,7,1,1,0,0,9,2,1,352.5,801307.5,0,0,1622.9321 -3002,3710,6758,6759,-9,-9,1,1,1,38,1,0,3,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,18,0,1,-62.798492,0,0,0,37,2,3,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.110001,22.85,33.880001,60.32,6,1,1,1,0,2,2,0,721,21849.277,0,0,1471.5081 -3002,3710,6759,6758,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,0,3,7.5076227,7.345408,5.1335802,2,0,-9,19,0,-1,-125.68895,0,0,1,38,2,2,3,3,2,2019,2,1,23,10,24,24,15,1,1,3,0,6.4666638,6.4666638,0,0,0,0,0,0,0,5.48,1,0,1,4.4372153,0,5.3569512,3,33.880001,60.32,60.110001,22.85,2,1,1,0,0,2,2,0,721,21849.277,0,0,1471.5081 -3002,3710,6760,-9,6759,6758,3,1,0,17,2,0,3,0,2,1,3,3,0,0,2,0,0,0,2,0,0,0,-9,0,-993.35699,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.619999,52.330002,-9,-9,3,1,1,1,0,2,2,0,721,21849.277,0,0,1471.5081 -3002,3710,6761,-9,6759,6758,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.20538,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,721,21849.277,0,0,1471.5081 -3003,3711,6762,-9,-9,-9,1,1,0,24,2,0,1,0,2,-9,2,1,0,0,3,8.4978046,8.275404,0,4,0,0,0,-9,0,-997.70093,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,7,55,23,15,1,1,-9,0,9.9667559,9.9667559,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.349998,48.09,-9,-9,5,1,1,0,1,12,4,0,1742.5,-102987.15,0,0,1780.8047 -3003,3711,6763,-9,6762,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1038.8429,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,0,1742.5,-102987.15,0,0,1780.8047 -3004,3712,6764,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,0,3,0,7.1960244,7.2274261,3,0,0,0,-9,0,-896.28851,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3320589,0,0,55.560001,51.529999,-9,-9,7,1,1,0,0,1,2,0,1350,786948.19,0,0,2627.6313 -3005,3713,6765,6766,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,8.8247881,9.0358038,1,0,-9,51,0,1,-6.096312,0,0,0,71,3,3,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7239406,8.5989275,0,0,51.41,56.150002,57.900002,51.84,6,1,1,0,0,1,5,1,657,1417168.5,0,0,4838.5635 -3005,3713,6766,6765,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.1203413,6.5821371,1,0,-9,51,0,-1,-201.34601,0,0,0,72,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5901194,0,0,57.900002,51.84,51.41,56.150002,7,1,1,0,0,1,5,1,657,1417168.5,0,0,4838.5635 -3006,3714,6767,-9,-9,-9,2,1,0,22,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1110.0581,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,28,9,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.72,65.989998,-9,-9,2,2,3,0,1,8,1,0,999,151348.28,0,0,0 -3007,3715,6768,-9,-9,-9,1,1,0,52,2,0,2,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-906.47382,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.719999,22.57,-9,-9,1,3,4,0,1,8,1,0,328.5,-21179.555,0,0,2087.2979 -3007,3715,6769,-9,6768,-9,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1032.5845,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,8,1,0,328.5,-21179.555,0,0,2087.2979 -3007,3716,6770,-9,6768,-9,2,1,0,25,2,0,2,0,1,-9,2,1,0,0,4,7.9202838,7.5274396,0,3,0,0,0,-9,0,-850.34314,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,8,3,0,322,60727.375,0,0,3316.1299 -3007,3717,6771,-9,6768,-9,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1160.7516,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,8,3,0,455,-19607.533,0,0,0 -3008,3718,6772,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,8.7786551,8.5142727,0,3,0,0,0,-9,0,-1137.4557,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,43,37,15,1,0,-9,0,18.283081,18.283081,0,0,0,0,0,0,0,0,0,0,0,2.615396,0,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,4,5,1,881,177808.67,0,0,2948.8184 -3009,3719,6773,6774,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,7.2306933,7.0254822,1,0,-9,6,0,2,-56.832848,0,0,0,72,2,4,3,2,2,2019,4,2,6,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1777325,0,0,55.380001,43.849998,53.060001,45.59,6,1,1,0,0,12,3,1,324,706626.13,0,0,2312.2515 -3009,3719,6774,6773,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.5500922,7.402987,1,0,-9,6,0,-2,-5.411901,0,0,0,74,2,2,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4250662,7.0372982,15.167525,3,53.060001,45.59,55.380001,43.849998,5,1,1,0,0,12,3,1,324,706626.13,0,0,2312.2515 -3010,3720,6775,6776,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,1,3,0,5.205617,5.0604095,1,0,-9,46,0,-1,4.7038908,0,0,0,68,1,4,1,3,2,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,1,12.500691,38.272137,0,0,0,84.337341,0,1,1,0,2.4513493,4.5490808,0,0,50,47,52.880001,56.68,5,1,1,0,0,4,4,1,239.5,2240208,0,0,3565.5857 -3010,3720,6776,6775,-9,-9,1,1,1,68,1,0,0,0,1,-9,1,1,0,0,4,7.6673975,8.6661358,7.8947291,1,0,-9,45,0,1,10.12788,0,0,0,67,3,3,3,3,3,2019,2,2,9,0,20,22,15,1,0,4,0,13.915674,13.915674,0,0,0,0,0,0,0,42,1,1,0,8.6315289,7.8285093,40.460278,1,52.880001,56.68,50,47,2,1,1,0,0,4,4,1,239.5,2240208,0,0,3565.5857 -3011,3721,6777,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,2,0,5.5675087,5.6961617,3,0,0,0,-9,0,-959.59869,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4931092,0,0,36.57,34.799999,-9,-9,4,1,1,0,0,9,2,1,238,138186.98,0,0,753.21045 -3012,3722,6778,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1001.4863,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.9811304,3,55.360001,54.240002,-9,-9,7,1,1,0,0,12,1,0,413,12431.117,0,0,1167.6603 -3013,3723,6779,6780,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,6.2100167,6.4113774,4.3218088,1,0,-9,55,0,0,-51.32386,0,0,0,75,2,3,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1817474,4.5017505,0,0,52.459999,52.759998,53.529999,51,7,1,1,0,0,12,4,1,337.5,1014727.2,0,0,2368.1831 -3013,3723,6780,6779,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.8364882,8.3540936,1,0,-9,55,0,0,32.874481,0,0,0,75,2,4,3,-9,-9,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6776359,7.9622264,0,0,53.529999,51,52.459999,52.759998,6,1,1,0,0,12,4,1,337.5,1014727.2,0,0,2368.1831 -3014,3724,6781,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,1,2,0,7.481307,7.4126472,3,0,0,0,-9,0,-975.94025,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2958355,0,0,43.189999,50.709999,-9,-9,5,1,1,0,0,2,2,0,1570,422061.38,0,0,1269.1927 -3015,3725,6782,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,2,1,0,0,3,5.533741,6.8298492,6.8689218,3,0,0,0,-9,0,-849.56409,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,5,5,15,1,0,-9,0,7.1637535,7.1637535,0,0,0,0,0,0,0,27.5,1,1,0,3.1483147,6.7426701,33.5662,3,45.880001,50.540001,-9,-9,6,1,1,0,0,11,2,1,652,30746.688,0,0,460.50717 -3016,3726,6783,6784,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,1,2,0,4.1614866,3.8766975,1,0,-9,21,0,11,-58.621323,0,0,0,68,3,2,3,3,3,2019,4,2,15,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9380245,0,0,48.360001,28.209999,62.919998,12.95,3,1,1,0,0,5,1,0,707,254408.34,0,0,2347.3752 -3016,3726,6784,6783,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,2,0,3.7885301,3.9137895,1,0,-9,22,0,-11,-40.594406,0,0,0,79,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.2279477,3.4259255,112.9243,1,62.919998,12.95,48.360001,28.209999,7,1,1,0,0,5,1,0,707,254408.34,0,0,2347.3752 -3017,3727,6785,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,4,0,5.6252651,5.706923,3,0,0,0,-9,0,-1077.7281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6454821,0,0,45.810001,38.32,-9,-9,5,1,1,0,0,11,2,0,1008,-2227.3989,0,0,925.33337 -3018,3728,6786,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.0785046,7.7670941,0,3,0,0,0,-9,0,-1055.4935,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,40,39,15,1,1,-9,0,8.2468939,8.2468939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.130001,58.099998,-9,-9,5,2,3,0,0,8,4,0,625,191555.86,0,0,294.7821 -3019,3729,6787,6788,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,3,0,8.1258221,8.3607311,1,0,-9,6,0,3,43.470818,0,0,0,79,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6654382,8.2744055,0,0,54.959999,53.169998,39.93,57.189999,7,1,1,0,0,12,3,1,992,1349241.5,0,0,2346.7639 -3019,3729,6788,6787,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-3,113.18206,0,0,0,82,2,3,3,3,2,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0950599,0,0,0,39.93,57.189999,54.959999,53.169998,5,1,1,0,0,12,3,1,992,1349241.5,0,0,2346.7639 -3020,3730,6789,6790,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,1,8.0703392,7.842977,6.8556275,1,0,-9,7,0,5,123.06807,0,0,0,58,1,1,1,-9,-9,2019,1,1,6,0,34,39,15,1,0,1,0,8.4805832,8.4805832,0,0,0,0,0,0,0,0,1,1,0,0,7.1024933,0,0,63.669998,35.950001,13.08,33.57,4,1,1,0,0,4,5,1,1000,1338879.3,0,0,4192.814 -3020,3730,6790,6789,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,1,1,7.9949341,8.2947855,6.7021794,1,0,-9,7,0,-5,-94.938637,0,0,0,63,2,1,1,-9,-9,2019,1,2,32,11,37,37,15,1,1,1,0,9.4592161,9.4592161,0,0,0,0,0,0,0,0,1,1,0,0,7.454845,0,0,13.08,33.57,63.669998,35.950001,1,1,1,0,0,4,5,1,1000,1338879.3,0,0,4192.814 -3021,3731,6791,6792,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.2069025,8.1434307,0,1,0,-9,2,0,1,-16.41383,0,1,1,25,1,3,1,2,2,2019,1,2,16,4,45,42,15,1,1,1,0,9.5895872,9.5895872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.959999,61.139999,47.369999,55.41,7,1,1,0,0,4,5,1,512,21706.496,0,0,2931.3459 -3021,3731,6792,6791,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,3,8.3870449,8.0093346,0,1,0,-9,2,0,-1,-182.69051,-9,1,0,26,1,4,1,-9,-9,2019,1,1,11,0,37,0,15,1,0,1,0,13.783782,13.783782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.369999,55.41,40.959999,61.139999,6,1,1,0,0,4,5,1,512,21706.496,0,0,2931.3459 -3022,3732,6793,6794,-9,-9,1,1,0,59,1,0,0,0,2,-9,1,1,0,1,2,7.2595015,6.9126272,0,1,0,-9,44,0,-4,-176.01897,0,0,0,63,1,3,3,3,2,2019,2,2,26,12,56,98,15,1,1,4,0,2.7376616,2.7376616,0,0,0,0,0,0,0,0,1,1,0,1.496084,0,0,0,36.77,35.02,57.919998,51.82,2,1,1,0,0,9,4,1,1834,967787.31,0,0,3864.0078 -3022,3732,6794,6793,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,7.5940619,8.3744831,8.1044416,1,0,-9,44,0,4,-1.6582546,0,0,0,59,2,2,1,3,3,2019,3,1,6,0,10,16,15,4,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,8.0163441,69.170082,1,57.919998,51.82,36.77,35.02,5,1,1,0,0,9,4,1,1834,967787.31,0,0,3864.0078 -3023,3733,6795,6796,-9,-9,1,1,1,54,1,0,0,0,2,-9,4,3,0,0,5,0,8.2400131,8.2072611,1,0,-9,8,0,-1,-64.339165,0,0,0,55,2,3,1,3,2,2019,3,2,5,0,0,48,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7037396,7.7596922,0,0,60.02,56.419998,46.669998,55.57,6,1,1,0,0,7,5,1,421.5,1185853.1,0,0,4150.6782 -3023,3733,6796,6795,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.2435818,8.3863583,0,1,0,-9,8,0,1,96.628983,0,0,0,54,2,5,3,-9,-9,2019,2,1,9,0,37,43,15,1,0,4,0,8.4901104,8.4901104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,55.57,60.02,56.419998,6,1,1,0,0,7,5,1,421.5,1185853.1,0,0,4150.6782 -3024,3734,6797,6798,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.3601646,8.6597824,1,0,-9,49,0,-1,-97.801758,0,0,0,72,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6263132,8.4550667,0,0,60.119999,54.799999,38.689999,61.75,7,1,1,0,0,9,4,1,847.5,1412679.9,0,0,12642.987 -3024,3734,6798,6797,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,49,0,1,153.63171,0,0,0,71,2,4,3,3,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.207654,0,0,0,38.689999,61.75,60.119999,54.799999,6,1,1,0,0,9,4,1,847.5,1412679.9,0,0,12642.987 -3025,3735,6799,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1121.5295,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.05,27.23,-9,-9,1,1,1,0,1,1,1,0,490,25923.146,0,0,2032.6874 -3026,3736,6800,6801,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.1947227,6.2314272,1,0,-9,7,0,4,-20.638939,0,0,0,65,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0446672,6.3212824,0,0,57.330002,53.459999,53.610001,59.130001,7,1,1,0,0,4,2,1,1309.5,27831.492,0,0,1877.0935 -3026,3736,6801,6800,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-4,39.108505,0,0,0,69,3,3,3,3,3,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,59.130001,57.330002,53.459999,7,1,1,0,0,4,2,1,1309.5,27831.492,0,0,1877.0935 -3027,3737,6802,6803,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,40,0,0,0,0,0,0,74,3,1,3,3,2,2019,4,2,20,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.053143,1,39.77,46.470001,33.220001,17.549999,3,1,1,0,1,10,1,1,575,-10663.795,0,0,-307.0834 -3027,3737,6803,6802,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,10,0,9,0,0,0,0,65,1,3,3,-9,3,2019,4,1,22,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.220001,17.549999,39.77,46.470001,1,1,1,0,1,10,1,1,575,-10663.795,0,0,-307.0834 -3028,3738,6804,-9,6805,6807,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-876.67462,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,3,1,973.5,87513.641,0,0,3378.3152 -3028,3738,6805,6807,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,0,5,6.6022029,6.6720443,0,2,0,-9,16,0,2,142.55028,0,0,1,39,2,3,1,2,3,2019,1,1,10,3,17,16,15,1,0,1,0,4.4637947,4.4637947,0,0,0,0,0,0,0,0,1,1,0,7.1472926,0,0,0,42.759998,57.529999,58.32,50.220001,5,1,1,0,0,9,3,1,973.5,87513.641,0,0,3378.3152 -3028,3738,6806,-9,6805,6807,3,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.42157,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,1,973.5,87513.641,0,0,3378.3152 -3028,3738,6807,6805,-9,-9,1,1,1,39,1,1,2,0,2,-9,1,1,0,0,3,8.7192316,8.4590979,0,2,0,-9,16,0,-2,26.540518,0,0,0,41,2,5,1,-9,2,2019,1,2,7,0,38,48,15,1,0,1,0,13.685666,13.685666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,42.759998,57.529999,6,1,1,0,0,9,3,1,973.5,87513.641,0,0,3378.3152 -3029,3739,6808,-9,6809,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,7.8238187,7.9149342,0,3,0,0,0,-9,0,-1060.6934,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,35,35,15,1,0,-9,1,8.2098532,8.2098532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.700001,-9,-9,3,4,2,0,1,7,4,0,55,-53411.902,0,0,452.14957 -3029,3740,6809,-9,-9,-9,2,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,6.044744,6.429606,3,0,0,0,-9,0,-1024.3306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.829916,0,0,59.310001,49.810001,-9,-9,6,1,1,0,0,7,2,0,140,155623.03,0,0,627.31067 -3029,3741,6810,-9,6809,-9,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,7.6481705,7.1688519,0,3,0,0,0,-9,0,-969.08044,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,40,42,15,1,0,-9,1,6.7118845,6.7118845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,7,3,0,668,118262.4,0,0,373.40207 -3029,3742,6811,-9,-9,-9,4,1,0,48,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-857.74103,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.77,42.240002,-9,-9,3,1,1,1,1,7,1,0,1281,138846.45,0,0,1219.3669 -3030,3743,6812,-9,6814,6815,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.9651,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,562.75,186658.67,0,0,3483.4966 -3030,3743,6813,-9,6814,6815,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.849,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,562.75,186658.67,0,0,3483.4966 -3030,3743,6814,6815,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,5,7.4285593,7.2540021,0,2,0,-9,19,0,-5,-12.791901,0,0,1,44,3,4,1,-9,3,2019,1,2,10,1,23,22,15,1,0,1,0,8.8073883,8.8073883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,58.09,51,56,6,1,1,0,0,7,4,1,562.75,186658.67,0,0,3483.4966 -3030,3743,6815,6814,-9,-9,2,1,1,44,1,0,2,0,3,-9,1,1,0,0,4,8.8051624,8.5816898,0,2,0,-9,9,0,5,-101.13283,0,0,0,39,2,5,1,-9,-9,2019,1,1,9,1,48,50,15,1,0,1,0,12.617731,12.617731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47.52,58.09,5,1,1,0,0,7,4,1,562.75,186658.67,0,0,3483.4966 -3031,3744,6816,6817,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,41,0,1,75.338081,0,0,0,59,3,3,1,3,3,2019,1,1,9,0,50,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52,54.509998,4,1,1,0,0,9,3,1,1107,396217.41,0,0,486.75549 -3031,3744,6817,6816,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,8.0450029,7.8066583,0,1,0,-9,41,0,-1,-56.463146,0,0,0,60,2,4,1,2,2,2019,1,2,11,0,35,37,15,1,0,1,0,7.1824212,7.1824212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,54.200001,57.490002,4,1,1,0,0,9,3,1,1107,396217.41,0,0,486.75549 -3032,3745,6818,-9,6819,6820,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1079.704,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.315828,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,2,4,1,353,784446.06,0,0,3627.2625 -3032,3745,6819,6820,-9,-9,2,1,0,53,1,0,1,0,1,-9,1,1,0,0,5,6.6718383,6.5359917,0,2,0,-9,7,0,0,-38.264473,0,0,0,53,1,4,1,3,2,2019,1,1,11,0,30,8,15,1,0,1,0,3.3817258,3.3817258,0,0,0,0,0,0,0,0,1,1,0,2.7974997,0,0,0,54.040001,60.470001,58.150002,52.91,5,1,1,0,0,2,4,1,353,784446.06,0,0,3627.2625 -3032,3745,6820,6819,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,9.0600214,8.7705736,0,2,0,-9,7,0,0,-14.295026,0,0,0,53,1,5,1,2,2,2019,1,2,5,0,40,42,15,1,0,1,0,21.514406,21.514406,0,0,0,0,0,0,0,0,1,1,0,1.2558038,0,0,0,58.150002,52.91,54.040001,60.470001,6,1,1,0,0,2,4,1,353,784446.06,0,0,3627.2625 -3032,3746,6821,-9,-9,-9,4,1,1,21,2,0,1,0,2,-9,2,1,0,0,5,0,0,0,4,0,-9,0,-9,0,-991.16907,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9402759,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,2,1,1,507,22208.764,0,0,-296.17969 -3033,3747,6822,6823,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,8.5735502,8.4693003,1,0,-9,54,0,4,108.82377,0,0,0,72,3,3,3,3,3,2019,4,2,7,1,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9550319,8.3284473,0,0,62.990002,38.490002,51.189999,45.41,6,1,1,0,0,2,4,1,439.5,1329442.5,0,0,3090.7603 -3033,3747,6823,6822,-9,-9,2,1,0,72,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,54,0,-4,-93.818596,0,0,0,76,2,3,3,3,3,2019,4,1,9,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.417058,0,0,0,51.189999,45.41,62.990002,38.490002,6,1,1,0,0,2,4,1,439.5,1329442.5,0,0,3090.7603 -3034,3748,6824,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,0,3,7.7324467,8.1161633,4.8396583,3,0,0,0,-9,0,-1014.9271,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,36,36,15,1,0,-9,0,8.5159435,8.5159435,0,0,0,0,0,0,0,0,0,0,0,0,5.0142722,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,13,4,1,230,-6384.0386,0,0,-272.21667 -3035,3749,6825,6826,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,9.7737141,9.4564114,0,1,0,-9,7,0,1,-44.184643,0,0,0,46,1,5,1,-9,-9,2019,1,1,10,1,35,35,15,1,0,1,0,60.987862,60.987862,0,0,0,0,0,0,0,0,0,0,0,1.0614915,0,0,0,50,55,50.540001,62.09,6,1,1,0,0,4,5,1,688,522727.47,0,0,11021.422 -3035,3749,6826,6825,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,0,5,8.9908314,9.0139494,0,1,0,-9,7,0,-1,57.431408,0,0,0,47,2,4,1,2,2,2019,1,2,10,0,40,32,15,1,0,1,0,21.60817,21.60817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,50,55,7,1,1,0,0,4,5,1,688,522727.47,0,0,11021.422 -3036,3750,6827,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,2,1,0,0,4,6.8704867,7.1140084,0,3,0,0,0,-9,0,-1082.8339,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,8,0,15,1,0,-9,0,17.207888,17.207888,0,0,0,0,0,0,0,0,1,1,0,.64050025,0,0,0,42.049999,44.110001,-9,-9,6,1,1,0,0,10,2,1,561,-54487.797,0,0,364.33331 -3037,3751,6828,6829,-9,-9,2,1,0,54,1,0,1,0,1,-9,2,1,0,0,5,8.5836573,8.2947054,0,2,0,-9,27,0,0,-26.850998,0,0,0,54,2,3,1,2,3,2019,1,1,8,0,32,37,15,1,0,1,0,10.76872,10.76872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,50,49,7,1,1,0,0,2,4,1,892.66669,816853.69,0,0,3195.7368 -3037,3751,6829,6828,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,0,3,8.6221695,8.3062859,0,2,0,-9,8,0,0,-6.754344,0,0,0,54,1,5,1,2,3,2019,1,2,10,1,40,40,15,1,0,1,0,15.458709,15.458709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,57.060001,57.759998,5,1,1,0,0,2,4,1,892.66669,816853.69,0,0,3195.7368 -3037,3751,6830,-9,6828,6829,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.3107,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,892.66669,816853.69,0,0,3195.7368 -3038,3752,6831,-9,6832,6834,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1177.3444,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,1246.5,493508.84,0,0,3569.4634 -3038,3752,6832,6834,-9,-9,1,1,0,36,1,0,2,0,1,-9,6,3,0,0,4,6.1682611,5.9494915,0,2,0,-9,18,0,-2,91.384689,0,0,1,38,1,5,1,2,2,2019,3,2,8,0,7,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.68247563,0,0,0,43.540001,59.599998,57.060001,57.759998,6,1,1,0,0,8,5,1,1246.5,493508.84,0,0,3569.4634 -3038,3752,6833,-9,6832,6834,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.05615,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1246.5,493508.84,0,0,3569.4634 -3038,3752,6834,6832,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,5,9.3553295,9.0436878,0,2,0,-9,8,0,2,-31.498005,0,0,0,36,1,4,3,-9,-9,2019,2,1,7,0,40,39,15,1,0,3,0,30.374359,30.374359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,43.540001,59.599998,6,1,1,0,0,8,5,1,1246.5,493508.84,0,0,3569.4634 -3039,3753,6835,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,2,1,0,0,5,7.6176238,7.9425893,6.5179787,3,0,0,0,-9,0,-1101.5615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,20,0,15,1,0,-9,0,10.69342,10.69342,0,0,0,0,0,0,0,0,1,1,0,5.5334039,6.3670173,0,0,49.169998,56.720001,-9,-9,7,1,1,0,0,2,3,1,183,458070.59,0,0,780.85217 -3040,3754,6836,6837,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,8.2829885,8.1433754,0,1,0,-9,2,0,0,20.247942,0,0,0,59,2,2,3,-9,-9,2019,2,1,11,0,42,42,15,1,0,3,0,9.0955982,9.0955982,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.216798,1,43.25,38.75,37.400002,44.130001,3,1,1,0,0,6,3,0,635,344162.38,0,0,1902.2227 -3040,3754,6837,6836,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,1,2,0,6.2815328,5.8341827,1,0,-9,35,0,0,57.214642,0,0,0,59,2,2,1,3,3,2019,3,2,18,6,0,39,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9743862,0,0,0,37.400002,44.130001,43.25,38.75,5,1,1,0,0,6,3,0,635,344162.38,0,0,1902.2227 -3041,3755,6838,6839,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,5.1667557,5.4889297,1,0,-9,37,0,-4,13.355059,0,0,0,65,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,5.1380486,5.2574902,3.5708981,3,51.02,52.060001,51.830002,57.200001,6,1,1,0,0,9,4,1,589.5,2245310.8,0,0,2386.0652 -3041,3755,6839,6838,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,8.4703484,8.5715055,1,0,-9,37,0,4,-24.32724,0,0,0,61,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.5744138,8.1938009,5.4732447,3,51.830002,57.200001,51.02,52.060001,6,1,1,0,0,9,4,1,589.5,2245310.8,0,0,2386.0652 -3042,3756,6840,6841,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,41,0,-16,-179.39249,0,0,0,93,3,1,3,-9,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.254625,1,55.959999,49.93,62.93,18.620001,6,1,1,0,0,6,1,1,350,188529.06,0,0,859.4256 -3042,3756,6841,6840,-9,-9,1,1,1,93,1,0,0,0,3,-9,4,3,0,0,1,0,2.9628224,3.075316,1,0,-9,41,0,16,-114.43834,0,0,0,77,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,1,0,37.432484,0,0,0,0,0,1,1,0,2.4922421,2.5971074,0,0,62.93,18.620001,55.959999,49.93,6,1,1,0,0,6,1,1,350,188529.06,0,0,859.4256 -3043,3757,6842,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,6.5559516,6.7131433,3,0,0,0,-9,0,-994.72137,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9312272,0,0,42.84,39.779999,-9,-9,5,1,1,0,0,12,2,0,90,401479.19,0,0,148.88237 -3044,3758,6843,6844,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,3,7.3287473,7.5796165,5.1311159,1,0,-9,1,-9,0,52.187073,-9,1,1,23,2,4,1,-9,-9,2019,1,1,15,3,36,0,15,1,0,1,0,4.3066597,4.3066597,0,0,0,0,0,0,0,0,0,0,0,6.0614185,0,0,0,33.66,61.57,51.830002,57.200001,6,1,1,0,0,10,3,0,741,-33007.047,0,0,1403.9961 -3044,3758,6844,6843,-9,-9,1,1,1,23,1,0,0,0,2,1,2,1,0,0,4,7.1305003,7.5489802,6.0212317,1,0,1,1,-9,0,54.332539,-9,1,0,23,1,3,1,1,1,2019,1,2,10,1,17,0,15,1,0,1,0,6.6044002,6.6044002,0,0,0,0,0,0,0,0,0,0,0,6.0762982,0,0,0,51.830002,57.200001,33.66,61.57,6,1,1,0,0,10,3,0,741,-33007.047,0,0,1403.9961 -3045,3759,6845,6846,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.499136,7.710741,0,1,0,-9,17,0,1,-59.725639,0,0,0,48,3,3,1,2,-9,2019,1,2,9,0,50,50,15,1,0,1,0,5.3635936,5.3635936,0,0,0,0,0,0,0,0,0,0,0,5.8171043,0,0,0,54.200001,57.490002,50.029999,49.919998,1,1,1,0,0,6,4,0,281,112300.59,0,0,2763.7222 -3045,3759,6846,6845,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,3,7.7436523,7.8631253,0,1,0,-9,15,0,-1,-9.2197552,0,0,0,49,2,4,1,3,3,2019,1,1,10,0,45,0,15,1,0,1,0,10.194644,10.194644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,49.919998,54.200001,57.490002,5,1,1,0,0,6,4,0,281,112300.59,0,0,2763.7222 -3046,3760,6847,6848,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,3,8.6943359,8.499588,0,1,0,-9,3,0,0,-58.703449,0,1,0,25,2,5,1,-9,-9,2019,1,1,13,2,39,39,15,1,0,1,0,13.520758,13.520758,0,0,0,0,0,0,0,0,0,0,0,3.8953955,0,0,0,40.049999,46.560001,33.389999,65.879997,6,1,1,0,0,9,5,1,1663,48235.852,0,0,2572.8042 -3046,3760,6848,6847,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,0,5,8.5772171,8.1579876,0,1,0,-9,3,0,0,-13.607512,0,1,1,25,2,3,1,1,1,2019,1,2,12,2,39,43,15,1,0,1,0,13.536614,13.536614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.389999,65.879997,40.049999,46.560001,6,1,1,0,0,9,5,1,1663,48235.852,0,0,2572.8042 -3047,3761,6849,6850,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,2,0,7.9646254,8.0934982,1,0,-9,50,0,2,13.740049,0,0,0,66,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2368512,8.0150166,0,0,57.57,49.689999,57.16,42.950001,6,1,1,0,0,11,3,1,1161,1477013.1,0,0,3232.3662 -3047,3761,6850,6849,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,4.6302996,4.6729822,1,0,-9,10,0,-2,-54.649437,0,0,0,68,2,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2576489,0,0,0,57.16,42.950001,57.57,49.689999,6,1,1,0,0,11,3,1,1161,1477013.1,0,0,3232.3662 -3048,3762,6851,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,0,4,7.9750414,7.9540262,5.5790133,3,0,0,0,-9,0,-1009.2314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,36,36,15,1,1,-9,0,11.528867,11.528867,0,0,0,0,0,0,0,0,0,0,0,1.1806157,5.2838554,0,0,45.849998,61.259998,-9,-9,5,1,1,0,0,8,4,0,401,352111.03,0,0,1196.6013 -3049,3763,6852,-9,-9,-9,3,1,0,25,2,0,2,0,2,-9,2,1,0,0,3,7.4897752,7.3610053,0,3,0,-9,0,-9,0,-1075.1563,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,25,9,43,0,15,1,1,-9,1,4.5298505,4.5298505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.3999996,63.299999,-9,-9,2,2,3,0,0,8,3,0,531,-216600.91,0,0,210.91539 -3050,3764,6853,6856,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.4467373,8.5712986,0,2,0,-9,8,0,3,-8.4755058,0,0,0,39,2,5,1,-9,-9,2019,1,1,9,1,42,43,15,1,0,1,0,11.562595,11.562595,0,0,0,0,0,0,0,0,1,1,0,4.7579446,0,0,0,51,56,57.060001,57.759998,6,1,1,0,0,2,3,1,449,337514.41,0,0,3024.0386 -3050,3764,6854,-9,6856,6853,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.86292,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,3,1,449,337514.41,0,0,3024.0386 -3050,3764,6855,-9,6856,6853,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-916.30328,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,2,3,1,449,337514.41,0,0,3024.0386 -3050,3764,6856,6853,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,5,7.2681012,7.418221,0,2,0,-9,20,0,-3,-5.1810441,0,0,1,42,2,4,1,3,3,2019,1,2,7,0,36,48,15,1,0,1,0,6.6356788,6.6356788,0,0,0,0,0,0,0,14.5,1,1,0,2.777952,0,10.767087,3,57.060001,57.759998,51,56,6,1,1,0,0,2,3,1,449,337514.41,0,0,3024.0386 -3051,3765,6857,6858,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.9652371,7.1024704,1,0,-9,37,0,-4,-14.02631,0,0,0,70,3,3,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.8594084,6.9057636,6.1425791,2,47.860001,48.110001,52,47,6,3,4,0,0,8,2,1,436,706996.69,0,0,1628.0928 -3051,3765,6858,6857,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,4,80.137833,0,0,0,66,2,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,47.860001,48.110001,5,3,4,0,0,8,2,1,436,706996.69,0,0,1628.0928 -3052,3766,6859,-9,6861,6863,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1029.8633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,1,2,0,959.40002,206018.45,0,0,2577.4709 -3052,3766,6860,-9,6861,6863,3,1,1,16,2,0,3,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1000.1722,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.169998,50.959999,-9,-9,6,1,1,0,0,1,2,0,959.40002,206018.45,0,0,2577.4709 -3052,3766,6861,6863,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,0,3,7.8643274,8.2276478,0,2,0,-9,9,0,-1,-18.560305,0,0,1,36,2,2,3,2,2,2019,2,2,9,0,37,25,15,1,0,3,0,8.6123714,8.6123714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,46.580002,39.889999,41.689999,6,1,1,0,0,1,2,0,959.40002,206018.45,0,0,2577.4709 -3052,3766,6862,-9,6861,6863,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-970.44507,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,1,2,0,959.40002,206018.45,0,0,2577.4709 -3052,3766,6863,6861,-9,-9,2,1,1,36,1,0,3,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,9,0,1,-17.461058,0,0,0,35,2,3,1,2,2,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.889999,41.689999,60.299999,46.580002,4,1,1,1,0,1,2,0,959.40002,206018.45,0,0,2577.4709 -3053,3767,6864,6865,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,0,5,8.9200897,9.1624622,0,1,0,-9,26,0,-2,96.7146,0,0,0,50,2,3,1,2,1,2019,1,1,8,0,39,42,15,1,0,1,0,21.226135,21.226135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.27,58.549999,50.57,52.349998,6,1,1,0,0,9,5,1,1138.5,1604390.8,0,0,4942.8789 -3053,3767,6865,6864,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.8281336,8.4652138,0,1,0,-9,25,0,2,-39.85762,0,0,0,48,1,5,1,2,2,2019,1,2,8,0,36,40,15,1,0,1,0,19.98855,19.98855,0,0,0,0,0,0,0,2,0,0,0,.32304141,0,0,3,50.57,52.349998,52.27,58.549999,6,1,1,0,0,9,5,1,1138.5,1604390.8,0,0,4942.8789 -3053,3768,6866,-9,6865,6864,3,1,0,21,2,0,0,1,1,0,7,2,0,0,4,6.2199244,6.4577651,0,3,0,0,0,-9,0,-1007.196,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,3,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,6,1,1,0,0,9,2,1,540,-200260.36,0,0,-828.18292 -3054,3769,6867,6868,-9,-9,1,1,0,25,1,1,1,0,1,-9,3,3,0,0,5,0,0,0,2,0,-9,5,0,-6,-23.973372,0,1,1,31,1,4,1,2,2,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.869999,55.580002,49.41,58.279999,7,1,1,1,0,1,4,1,1323,145801.25,0,0,2796.3635 -3054,3769,6868,6867,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,0,4,8.94944,8.6670961,0,2,0,-9,5,0,6,18.341698,0,0,0,25,1,5,3,-9,-9,2019,2,1,10,0,37,38,15,1,0,3,0,24.982639,24.982639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,52.869999,55.580002,5,1,1,0,0,1,4,1,1323,145801.25,0,0,2796.3635 -3054,3769,6869,-9,6867,6868,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-970.04834,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,4,1,1323,145801.25,0,0,2796.3635 -3055,3770,6870,-9,-9,-9,1,1,0,89,2,0,0,0,3,-9,4,3,0,0,2,0,4.236609,3.9260571,3,0,0,0,-9,0,-999.18719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,5.3639178,0,0,0,1.0472093,68.870224,0,1,1,0,0,4.6799154,0,0,53.869999,18.77,-9,-9,5,1,1,0,0,2,2,0,299,-53490.477,0,0,375.89523 -3056,3771,6871,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1041.608,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.310001,10.02,-9,-9,2,1,1,0,0,4,1,0,500,77178.836,0,0,156.84625 -3057,3772,6872,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,0,3,7.9842267,8.1986599,6.7507949,3,0,0,0,-9,0,-931.98096,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,23,27,15,1,0,-9,0,14.221449,14.221449,1,0,0,0,0,0,0,0,1,1,0,1.0023701,6.6783686,0,0,39.360001,55.189999,-9,-9,6,1,1,0,0,2,4,1,213,1138362.6,0,0,1853.0647 -3058,3773,6873,6874,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,3,7.8385701,8.0035181,0,1,0,-9,1,-9,2,127.36304,-9,1,1,23,1,4,1,-9,-9,2019,1,1,9,0,50,0,15,1,0,1,0,8.6659918,8.6659918,0,0,0,0,0,0,0,0,0,0,0,.72943276,0,0,0,42.330002,57.459999,52.23,55.599998,6,1,1,0,0,5,4,1,794.5,473331.19,0,0,1784.4139 -3058,3773,6874,6873,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,0,4,8.0708637,7.523438,0,1,0,-9,1,-9,-2,7.599494,-9,1,0,25,1,3,1,2,2,2019,1,2,16,4,45,0,15,1,1,1,0,7.1806531,7.1806531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,42.330002,57.459999,4,1,1,0,0,5,4,1,794.5,473331.19,0,0,1784.4139 -3059,3774,6875,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,3,0,5.8651624,5.5372329,3,0,0,0,-9,0,-1011.1165,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3545547,6.3555436,0,0,67.959999,27.950001,-9,-9,6,1,1,0,0,13,2,0,562,272628.84,0,0,400.99814 -3060,3775,6876,6877,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,5.1656046,4.9714961,1,0,-9,6,0,-3,79.475075,0,0,0,79,2,3,3,3,-9,2019,4,1,23,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.0736389,4.6649795,115.6479,1,36.540001,57.540001,54,46,3,1,1,0,0,11,2,1,892.5,364518.25,0,0,1524.4349 -3060,3775,6877,6876,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,4.3585591,4.3732247,1,0,-9,6,0,3,-129.9859,0,0,0,76,3,3,3,3,1,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7741575,4.2988596,0,0,54,46,36.540001,57.540001,6,1,1,0,0,11,2,1,892.5,364518.25,0,0,1524.4349 -3061,3776,6878,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1026.8949,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,7.8651428,6.4224176,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,7,1,0,392,142314.92,0,0,1974.6187 -3061,3777,6879,-9,6878,-9,2,1,1,52,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-887.61432,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.2715816,0,10.609997,3,53,55,-9,-9,6,1,1,0,0,7,1,0,1266,197380.92,0,0,-138.22688 -3061,3778,6880,-9,6878,-9,3,1,0,48,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1057.4304,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.0546665,0,30.525171,3,50,55,-9,-9,6,1,1,1,0,7,1,0,1457,0,0,0,-226.45345 -3062,3779,6881,6882,-9,-9,1,1,0,53,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,28,0,-6,-7.4068508,0,0,0,59,2,4,1,3,2,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,10.310264,3,41.939999,42.77,52.23,55.599998,4,2,3,0,0,4,5,1,490,1041671.5,0,0,2793.6245 -3062,3779,6882,6881,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,9.3461809,9.2329102,0,1,0,-9,28,0,6,54.445251,0,0,0,53,3,4,3,3,3,2019,2,1,12,0,40,40,15,1,0,3,0,32.588917,32.588917,0,0,0,0,0,0,0,0,0,0,0,6.0904174,0,0,0,52.23,55.599998,41.939999,42.77,4,1,1,0,0,4,5,1,490,1041671.5,0,0,2793.6245 -3062,3780,6883,-9,6881,6882,3,1,0,22,2,0,0,1,2,0,7,2,0,0,3,6.169364,6.2959194,0,3,0,0,0,-9,0,-1105.4316,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.86265928,0,0,0,34.200001,49.240002,-9,-9,4,4,2,0,0,4,2,1,480,81481.828,0,0,1025.3976 -3063,3781,6884,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,3,0,6.4522381,6.5828981,3,0,0,0,-9,0,-1129.6433,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.9637403,6.4469728,16.101782,3,46.080002,57.200001,-9,-9,6,1,1,0,0,11,2,1,150,272417.97,0,0,724.7467 -3064,3782,6885,-9,6887,6886,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.54858,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,433,1168225.4,0,0,4713.0923 -3064,3782,6886,6887,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,2,8.8051958,8.5395956,0,2,0,-9,24,0,4,-31.299656,0,0,0,44,2,5,1,3,3,2019,1,2,7,0,50,50,15,1,0,1,0,16.097376,16.097376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.5,38.759998,58.049999,54.52,6,1,1,0,0,13,4,1,433,1168225.4,0,0,4713.0923 -3064,3782,6887,6886,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,5,7.8993196,7.7944512,0,2,0,-9,24,0,-4,204.74495,0,0,1,48,1,2,1,2,2,2019,1,1,6,0,21,21,15,1,0,1,0,11.609179,11.609179,0,0,0,0,0,0,0,2,1,1,0,0,0,11.349531,3,58.049999,54.52,63.5,38.759998,6,1,1,0,0,13,4,1,433,1168225.4,0,0,4713.0923 -3065,3783,6888,6889,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.7222776,8.6045437,0,1,0,-9,13,0,3,33.573883,0,0,0,51,1,3,1,2,2,2019,1,2,8,0,38,40,15,1,0,1,0,18.163609,18.163609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.860001,49.950001,55.77,31.200001,6,1,1,0,0,6,5,1,567,659045.94,0,0,6073.9614 -3065,3783,6889,6888,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,9.3182344,9.0942039,0,1,0,-9,13,0,-3,-31.211483,0,0,0,54,2,3,1,2,2,2019,1,1,11,0,32,32,15,1,0,1,0,41.200359,41.200359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,31.200001,58.860001,49.950001,6,1,1,0,0,6,5,1,567,659045.94,0,0,6073.9614 -3065,3784,6890,-9,6889,6888,3,1,0,22,2,0,0,0,3,-9,2,1,0,0,4,7.1256237,7.0260277,0,3,0,0,0,-9,0,-1029.437,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,36,15,1,0,-9,1,9.3265867,9.3265867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,62.459999,-9,-9,5,1,1,0,0,6,2,1,2116,-86250.539,0,0,681.90369 -3066,3785,6891,6892,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,37,0,-4,8.2084703,0,0,0,80,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,21.226274,0,0,0,0,0,1,1,0,1.7422096,0,0,0,54.400002,51.93,55.34,54.259998,7,1,1,0,0,4,2,1,257.5,545541.63,0,0,2230.865 -3066,3785,6892,6891,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,7.0394444,7.1033955,1,0,-9,37,0,4,-44.359238,0,0,0,76,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90037072,6.7627039,0,0,55.34,54.259998,54.400002,51.93,6,1,1,0,0,4,2,1,257.5,545541.63,0,0,2230.865 -3067,3786,6893,6894,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.1496181,8.0470972,0,1,0,-9,8,0,-5,-16.334991,0,0,1,49,2,3,1,2,-9,2019,1,1,2,0,40,40,15,1,0,1,0,9.5222044,9.5222044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,48.529999,49.040001,55.860001,6,1,1,0,0,4,3,1,276.5,-45731.238,0,0,871.92957 -3067,3786,6894,6893,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,0,0,0,1,0,-9,11,0,5,77.523705,0,0,0,44,2,3,1,3,3,2019,1,2,16,4,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,50.34,48.529999,3,1,1,0,0,4,3,1,276.5,-45731.238,0,0,871.92957 -3068,3787,6895,-9,6896,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1016.314,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,1,956.33331,0,0,0,1472.8711 -3068,3787,6896,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,2,6.9325867,7.0002742,0,4,0,0,0,-9,0,-1038.2495,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,16,16,15,1,1,-9,0,9.109375,9.109375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.629999,51.669998,-9,-9,4,1,1,0,0,12,2,1,956.33331,0,0,0,1472.8711 -3068,3787,6897,-9,6896,-9,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-906.33411,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,1,956.33331,0,0,0,1472.8711 -3068,3788,6898,-9,6896,-9,2,1,0,23,2,0,2,0,2,-9,2,1,0,0,3,8.0870199,8.2745619,0,3,0,0,0,-9,0,-989.01819,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,18,5,38,0,15,1,1,-9,1,10.589725,10.589725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.620001,60.830002,-9,-9,3,1,1,0,0,12,4,1,463,-59097.285,0,0,429.41589 -3069,3789,6899,6900,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,1,3,0,6.2428155,6.0505915,1,0,-9,49,0,-3,-141.96342,0,0,0,69,3,1,3,3,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,6.0810447,127.81887,1,31.59,52.919998,37.560001,19.73,5,1,1,0,0,4,2,1,309.5,154134.69,0,0,1560.8889 -3069,3789,6900,6899,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,49,0,3,38.259472,0,0,0,66,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,123.95352,0,0,0,0,0,1,1,0,0,0,0,0,37.560001,19.73,31.59,52.919998,5,1,1,0,0,4,2,1,309.5,154134.69,0,0,1560.8889 -3070,3790,6901,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-995.27179,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.83832604,0,0,0,51.830002,57.200001,-9,-9,6,1,1,1,0,1,1,0,1435,-268239.25,0,0,81.478363 -3070,3791,6902,-9,-9,-9,3,1,1,22,2,0,0,1,2,-9,7,2,0,0,5,6.4669585,6.7485304,0,3,0,-9,0,-9,0,-963.6507,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,1,2,0,469,-14786.863,0,0,-866.51392 -3070,3792,6903,-9,-9,-9,4,1,1,22,2,0,0,1,2,-9,7,2,0,0,4,9.2888374,9.3130693,0,3,0,-9,0,-9,0,-975.68622,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,6,0,0,1,5,0,3319,-130327.95,0,0,2352.613 -3070,3793,6904,-9,-9,-9,2,1,1,23,2,0,0,1,1,-9,7,2,0,0,4,0,6.8703876,6.7057552,3,0,-9,0,-9,0,-854.09937,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4888163,0,0,0,41.529999,63.130001,-9,-9,5,1,1,0,0,1,2,0,231,-150469.84,0,0,366.46649 -3071,3794,6905,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,0,2,0,7.1349711,6.5993977,3,0,0,0,-9,0,-918.86621,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1965413,6.8992906,0,0,35.279999,32.639999,-9,-9,5,1,1,0,0,9,2,1,1381,27333.021,0,0,2251.7568 -3072,3795,6906,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,8.3408451,8.3605919,0,3,0,0,0,-9,0,-990.54041,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,55,45,15,1,1,-9,0,10.159168,10.159168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.889999,46.150002,-9,-9,4,3,4,0,1,8,4,0,1843,154955.89,0,0,1839.5067 -3073,3796,6907,6908,-9,-9,2,1,1,70,1,1,2,0,1,-9,4,3,0,0,3,0,7.7714834,8.0187035,2,0,-9,49,0,-1,42.712463,0,0,0,71,1,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.2079,7.893301,26.452398,3,59.009998,44.419998,55.209999,43.869999,6,1,1,0,0,9,3,1,1855.5,379007.63,0,0,2624.2769 -3073,3796,6908,6907,-9,-9,1,1,0,71,1,1,2,0,1,-9,4,3,0,0,2,0,6.7791581,6.787818,2,0,-9,49,0,1,7.3366151,0,0,0,70,1,3,3,2,1,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.8765173,44.594467,3,55.209999,43.869999,59.009998,44.419998,5,1,1,0,0,9,3,1,1855.5,379007.63,0,0,2624.2769 -3073,3797,6909,-9,6911,6910,6,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.40002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,2,1,394,-55923.531,0,0,3514.4165 -3073,3797,6910,6911,-9,-9,5,1,1,33,1,1,2,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,6,0,-5,-90.134933,0,0,0,38,2,1,1,-9,-9,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.919998,38.849998,14.34,28.84,4,1,1,0,0,9,2,1,394,-55923.531,0,0,3514.4165 -3073,3797,6911,6910,6908,6907,4,1,0,38,1,1,2,0,2,-9,2,1,0,0,1,7.8074841,7.8096828,0,2,0,-9,6,0,5,38.914124,0,0,1,33,2,2,3,1,1,2019,2,5,36,12,18,18,15,1,1,3,0,15.355493,15.355493,0,0,0,0,0,0,0,5.48,1,1,0,0,0,.36864623,3,14.34,28.84,44.919998,38.849998,2,1,1,0,1,9,2,1,394,-55923.531,0,0,3514.4165 -3073,3797,6912,-9,6911,6910,7,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1059.4799,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,9,2,1,394,-55923.531,0,0,3514.4165 -3074,3798,6913,6914,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-3,166.50974,0,0,0,66,1,2,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.788897,0,0,0,46.610001,56.93,39.490002,48.490002,6,1,1,0,0,11,3,1,976,1425741.5,0,0,2605.4482 -3074,3798,6914,6913,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,2,0,7.7764058,7.9183192,1,0,-9,7,0,3,-45.085106,0,0,0,63,1,3,3,3,3,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6505461,7.9061236,0,0,39.490002,48.490002,46.610001,56.93,6,1,1,0,0,11,3,1,976,1425741.5,0,0,2605.4482 -3075,3799,6915,-9,6916,6918,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.00446,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,1,999.75,189246.22,0,0,3276.8369 -3075,3799,6916,6918,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,5,7.1433282,7.4261408,0,2,0,-9,16,0,1,-109.7648,0,0,1,37,1,3,1,1,2,2019,1,2,4,0,48,0,15,1,0,1,0,3.3004954,3.3004954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,46.080002,57.200001,7,1,1,0,0,4,4,1,999.75,189246.22,0,0,3276.8369 -3075,3799,6917,-9,6916,6918,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.37366,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,999.75,189246.22,0,0,3276.8369 -3075,3799,6918,6916,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,3,8.7009954,9.0866556,0,2,0,-9,15,0,-1,-10.389132,0,0,0,38,1,5,1,2,2,2019,1,1,11,1,40,45,15,1,0,1,0,16.443195,16.443195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,57.060001,57.759998,4,1,1,0,0,4,4,1,999.75,189246.22,0,0,3276.8369 -3076,3800,6919,6920,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,7.3793902,7.2805529,1,0,-9,48,0,5,18.631277,0,0,0,64,3,3,1,3,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3495593,0,0,63.41,39.700001,56.5,42.799999,5,1,1,0,0,9,3,1,403,1301254.3,0,0,2940.5085 -3076,3800,6920,6919,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,0,3,6.9242773,7.0205522,0,1,0,-9,48,0,-5,86.540207,0,0,0,69,3,3,3,3,3,2019,2,1,17,5,15,15,15,1,1,4,0,9.2081985,9.2081985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,42.799999,63.41,39.700001,5,1,1,0,0,9,3,1,403,1301254.3,0,0,2940.5085 -3077,3801,6921,6922,-9,-9,3,1,1,30,1,0,1,0,2,-9,2,1,0,0,5,8.649662,8.3977365,0,2,0,-9,10,0,-6,23.351582,0,0,0,36,1,2,1,-9,-9,2019,1,1,12,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.2240038,0,8.0403099,3,57.060001,57.759998,44.630001,45.970001,6,1,1,0,0,9,4,0,449,-10610.23,0,0,3397.7163 -3077,3801,6922,6921,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,0,2,8.1265917,7.8477459,0,2,0,-9,10,0,6,30.718601,0,0,1,30,2,5,1,2,2,2019,1,3,13,1,35,0,15,1,0,1,0,11.330861,11.330861,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.511459,3,44.630001,45.970001,57.060001,57.759998,5,1,1,0,0,9,4,0,449,-10610.23,0,0,3397.7163 -3077,3802,6923,-9,6922,6921,2,1,1,18,2,0,1,0,3,-9,3,3,0,1,2,7.7433209,7.6718087,0,3,0,0,0,-9,0,-997.98669,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,1,1,9,4,0,255,-135.85205,0,0,437.42941 -3078,3803,6924,-9,6926,6925,1,1,1,25,2,0,1,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1009.2882,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.130001,58.16,-9,-9,6,1,1,1,1,4,1,1,369,117881.37,0,0,0 -3078,3804,6925,6926,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.197566,8.3454494,0,2,0,-9,4,0,1,105.28324,0,0,0,44,3,4,1,2,2,2019,1,3,11,0,40,40,15,1,0,1,0,9.6189747,9.6189747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.540001,60.209999,41.470001,56.810001,2,1,1,0,0,4,4,1,1199.5,681664.75,0,0,2148.2129 -3078,3804,6926,6925,-9,-9,3,1,0,44,1,0,1,0,3,-9,2,1,0,0,4,8.0470543,7.9580622,0,2,0,-9,4,0,-1,18.199331,0,0,1,45,2,4,1,2,2,2019,1,2,11,0,37,37,15,1,0,1,0,7.5781803,7.5781803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.470001,56.810001,36.540001,60.209999,6,1,1,0,0,4,4,1,1199.5,681664.75,0,0,2148.2129 -3078,3805,6927,-9,6926,6925,4,1,0,18,2,0,1,0,3,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1079.4365,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,58.990002,-9,-9,2,1,1,1,0,4,4,1,938,59205.508,0,0,0 -3079,3806,6928,6929,-9,-9,1,1,0,22,1,0,0,0,1,1,3,3,0,1,2,0,0,0,1,0,-9,1,0,-4,0,-9,1,1,26,2,2,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.52,44.169998,42.639999,30.780001,4,1,1,1,0,11,1,0,324,-1226.9727,0,0,504.35034 -3079,3806,6929,6928,-9,-9,2,1,1,26,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,1,-9,4,0,-9,1,0,22,1,2,3,-9,-9,2019,4,1,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.639999,30.780001,46.52,44.169998,3,1,1,0,0,11,1,0,324,-1226.9727,0,0,504.35034 -3080,3807,6930,6931,-9,-9,1,1,1,47,1,0,0,0,2,-9,1,1,0,0,3,6.7707386,6.8504782,0,1,0,-9,1,-9,-4,-54.713551,-9,0,0,51,3,3,1,3,3,2019,1,2,8,0,40,0,15,1,0,1,0,2.1631918,2.1631918,0,0,0,0,0,0,0,0,0,0,0,.91101718,0,0,0,50.82,57.779999,53.09,51.310001,6,1,1,0,0,13,2,1,832,-28696.357,0,0,1111.6432 -3080,3807,6931,6930,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,0,3,0,0,0,1,0,-9,1,-9,4,58.406307,-9,0,0,47,2,3,1,3,3,2019,1,1,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7476931,0,0,0,53.09,51.310001,50.82,57.779999,6,1,1,0,0,13,2,1,832,-28696.357,0,0,1111.6432 -3080,3808,6932,-9,6931,-9,3,1,1,25,2,0,0,0,3,-9,2,1,0,0,4,8.0254955,7.9489098,0,3,0,-9,0,-9,0,-1033.4629,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,45,0,15,1,0,-9,1,7.8345761,7.8345761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,1041,-12652.53,0,0,1482.5667 -3081,3809,6933,6935,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,7.9778223,8.1893482,0,2,0,-9,6,0,-8,-2.4682226,0,0,1,46,1,4,1,-9,-9,2019,1,1,11,0,36,35,15,1,0,1,0,10.94253,10.94253,0,0,0,0,0,0,0,0,1,1,0,2.1779466,0,0,0,39.009998,55.619999,51.830002,57.200001,5,1,1,0,0,7,5,1,916.33331,130928.41,0,0,5564.9321 -3081,3809,6934,-9,6933,6935,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1184.5212,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,916.33331,130928.41,0,0,5564.9321 -3081,3809,6935,6933,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,8.8407879,9.1175451,0,2,0,-9,6,0,8,14.230185,0,0,0,38,1,4,1,3,2,2019,1,2,11,0,42,45,15,1,0,1,0,23.630241,23.630241,0,0,0,0,0,0,0,0,1,1,0,4.9975753,0,0,0,51.830002,57.200001,39.009998,55.619999,6,1,1,0,0,7,5,1,916.33331,130928.41,0,0,5564.9321 -3082,3810,6936,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,6.647769,7.029942,3,0,0,0,-9,0,-981.3587,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8895717,0,0,55.529999,51.549999,-9,-9,6,1,1,0,0,10,2,0,2988,377806.47,0,0,1483.041 -3083,3811,6937,6939,-9,-9,2,1,1,32,1,1,2,0,1,-9,2,1,0,0,1,8.1580544,8.0269394,0,2,0,-9,6,0,0,20.311075,0,0,0,32,1,4,3,-9,-9,2019,2,1,20,7,34,0,15,1,1,3,0,11.657439,11.657439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.360001,30.709999,51.240002,58.84,4,1,1,0,0,9,3,0,495.25,85292.391,0,0,2242.8057 -3083,3811,6938,-9,6939,6937,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.8688,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,0,495.25,85292.391,0,0,2242.8057 -3083,3811,6939,6937,-9,-9,1,1,0,32,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,0,48.335636,0,0,1,32,1,1,1,2,2,2019,3,2,13,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2417538,0,0,0,51.240002,58.84,37.360001,30.709999,6,1,1,0,0,9,3,0,495.25,85292.391,0,0,2242.8057 -3083,3811,6940,-9,6939,6937,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.07904,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,495.25,85292.391,0,0,2242.8057 -3084,3812,6941,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,1,0,4.8979316,4.7422681,3,0,0,0,-9,0,-1163.5316,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,21.282463,0,0,0,0,212.64236,0,1,1,0,0,4.6755447,0,0,48.560001,24.17,-9,-9,4,1,1,0,0,5,2,1,2035,149077.64,0,0,432.23474 -3085,3813,6942,6943,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.518199,8.5803909,0,1,0,-9,27,0,-1,-37.919746,0,0,0,53,2,4,1,2,1,2019,1,2,11,0,20,25,15,1,0,1,0,25.373613,25.373613,0,0,0,0,0,0,0,0,1,1,0,7.9586377,0,0,0,40.360001,47.639999,54,54,2,2,3,0,0,8,4,1,806,372499.47,0,0,3188.9431 -3085,3813,6943,6942,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,0,4,6.7024112,6.3837571,0,1,0,-9,6,0,1,11.591124,0,0,0,52,2,4,1,-9,-9,2019,1,1,9,1,40,36,15,1,0,1,0,2.7748389,2.7748389,0,0,0,0,0,0,0,0,1,1,0,4.7579699,0,0,0,54,54,40.360001,47.639999,6,2,3,0,0,8,4,1,806,372499.47,0,0,3188.9431 -3085,3814,6944,-9,6942,6943,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-909.96783,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,8,1,1,1705,-41544.004,0,0,1007.5948 -3085,3815,6945,-9,6942,6943,4,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.0975647,8.2736092,0,3,0,0,0,-9,0,-984.33154,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,40,15,1,0,-9,1,13.893357,13.893357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,4,1,307,-244817.17,0,0,2438.801 -3086,3816,6946,-9,6948,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-950.2215,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.650002,56.73,-9,-9,7,1,1,0,0,9,2,1,432,106698.06,0,0,1880.9807 -3086,3816,6947,-9,6948,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1144.6465,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,2,1,432,106698.06,0,0,1880.9807 -3086,3816,6948,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,2,1,0,0,4,7.5366521,7.7951159,6.661252,4,0,0,0,-9,0,-1003.5825,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,25,25,15,1,0,-9,0,7.8393579,7.8393579,0,0,0,0,0,0,0,0,1,1,0,6.2796407,0,0,0,43.990002,60.709999,-9,-9,6,1,1,0,0,9,2,1,432,106698.06,0,0,1880.9807 -3087,3817,6949,6950,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.1043024,7.6171083,4.1109414,1,0,-9,5,0,-8,116.60865,0,0,0,62,2,2,1,-9,-9,2019,1,1,7,0,35,35,15,1,0,1,0,6.7618089,6.7618089,0,0,0,0,0,0,0,0,0,0,0,6.4899211,0,0,0,48.389999,50.880001,52.439999,20.809999,7,1,1,0,0,10,4,0,495,463760.13,0,0,3082.0488 -3087,3817,6950,6949,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,8.1532249,8.1815472,0,1,0,-9,5,0,8,-41.121819,0,0,0,54,2,4,1,3,3,2019,1,2,21,9,55,51,15,1,1,1,0,7.5686336,7.5686336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.439999,20.809999,48.389999,50.880001,5,1,1,0,0,10,4,0,495,463760.13,0,0,3082.0488 -3088,3818,6951,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,7.2406211,7.4099069,3,0,0,0,-9,0,-1089.9612,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8636665,7.558105,0,0,48.360001,52.169998,-9,-9,6,1,1,0,0,9,2,1,66,377747.38,0,0,1619.4474 -3089,3819,6952,6953,-9,-9,2,1,1,59,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,2,0,0,0,0,57,3,1,3,3,3,2019,4,1,33,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.01,25.879999,39.880001,34.619999,1,1,1,0,1,5,1,0,536,-14074.104,0,0,1490.0991 -3089,3819,6953,6952,-9,-9,1,1,0,57,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,41,0,-2,0,0,0,0,59,2,1,3,3,2,2019,4,2,19,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.80395,1,39.880001,34.619999,18.01,25.879999,2,1,1,0,1,5,1,0,536,-14074.104,0,0,1490.0991 -3090,3820,6954,6955,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,5.9395499,6.0983253,1,0,-9,59,0,-2,-5.4304876,0,0,0,78,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.91816,0,0,51,46,54,46,5,1,1,0,0,11,3,1,1560,1013404.4,0,0,3438.1951 -3090,3820,6955,6954,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,8.0864954,7.6650181,1,0,-9,59,0,2,16.858072,0,0,0,76,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,42.242657,0,1,1,0,0,7.9507966,0,0,54,46,51,46,6,1,1,0,0,11,3,1,1560,1013404.4,0,0,3438.1951 -3091,3821,6956,-9,-9,-9,1,1,0,44,3,0,3,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1025.3428,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,0,1,0,0,67.904655,3,41.700001,39.18,-9,-9,6,1,1,0,0,10,1,0,550,-29592.885,0,0,2591.4026 -3091,3821,6957,-9,6956,-9,2,1,0,17,2,0,3,0,3,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-974.34613,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.58,56.889999,-9,-9,6,1,1,0,0,10,1,0,550,-29592.885,0,0,2591.4026 -3091,3821,6958,-9,6956,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.5142,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,4,6,0,0,10,1,0,550,-29592.885,0,0,2591.4026 -3091,3821,6959,-9,6956,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1061.5396,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,62,-9,-9,5,4,6,0,0,10,1,0,550,-29592.885,0,0,2591.4026 -3092,3822,6960,-9,-9,-9,3,1,0,21,2,0,0,1,2,0,7,2,0,0,3,6.73873,7.3884287,0,3,0,0,0,-9,0,-1013.3936,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,12,2,1,612,272988.56,0,0,813.95105 -3093,3823,6961,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,1,2,0,7.0100288,7.1900883,3,0,0,0,-9,0,-973.24158,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,5.6571121,0,.13567877,0,0,70.429024,0,1,1,0,0,7.2806978,0,0,48.860001,40.02,-9,-9,7,1,1,0,0,13,3,1,724,320753.41,0,0,2173.499 -3094,3824,6962,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,7.9933515,7.7664542,0,3,0,-9,0,-9,0,-1015.6488,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,35,0,15,1,0,-9,0,10.186036,10.186036,0,0,0,0,0,0,0,0,0,0,0,7.4130731,0,0,0,44.66,59.099998,-9,-9,5,1,1,0,0,7,3,1,1649,94106.656,0,0,1533.6965 -3095,3825,6963,6964,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,7.9707093,7.8628163,0,1,0,-9,25,0,5,-3.4269264,0,0,0,52,3,4,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,8.7059393,8.7059393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,54,54,51,54,6,1,1,0,0,7,3,0,937,333817.88,0,0,1803.7041 -3095,3825,6964,6963,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,4,6.6070604,6.5972877,0,1,0,-9,27,0,-5,50.452354,0,0,0,57,2,4,1,3,3,2019,1,2,10,1,10,10,15,1,0,1,0,5.6921759,5.6921759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,54,54,6,1,1,0,0,7,3,0,937,333817.88,0,0,1803.7041 -3095,3826,6965,-9,6964,6963,3,1,1,24,3,0,0,0,2,-9,2,1,0,0,4,7.8476439,8.0521631,0,3,0,0,0,-9,0,-1018.5745,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,40,15,1,0,-9,1,6.8389373,6.8389373,0,0,0,0,0,0,0,0,1,1,0,3.1757002,0,0,0,49,58,-9,-9,5,1,1,0,0,7,3,0,530,70058.93,0,0,1866.584 -3096,3827,6966,-9,6967,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.60541,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,0,404.66666,36534.211,0,0,5970.8091 -3096,3827,6967,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,0,5,9.3222227,9.5664349,5.9573255,4,0,0,0,-9,0,-1020.4183,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,1,40,40,15,1,0,-9,0,37.572136,37.572136,0,0,0,0,0,0,0,0,0,0,0,8.276186,0,0,0,37.240002,62.57,-9,-9,4,1,1,0,0,4,5,0,404.66666,36534.211,0,0,5970.8091 -3096,3827,6968,-9,6967,-9,2,1,1,17,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-942.11023,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6111016,0,0,0,40.830002,59.68,-9,-9,3,1,1,0,0,4,5,0,404.66666,36534.211,0,0,5970.8091 -3097,3828,6969,6970,-9,-9,1,1,1,50,1,0,1,0,1,-9,1,1,0,0,5,8.1568203,8.4536686,0,2,0,-9,11,0,-8,.28779331,0,0,0,58,2,2,1,2,2,2019,1,2,11,1,45,60,15,1,0,1,0,12.997569,12.997569,0,0,0,0,0,0,0,0,0,0,0,3.6223869,0,0,0,45.700001,56.200001,44.959999,44.82,3,1,1,0,0,9,5,1,402,3498137,0,0,7004.6724 -3097,3828,6970,6969,-9,-9,2,1,0,58,1,0,1,0,2,-9,2,1,0,0,2,9.4726696,8.9964619,0,2,0,-9,11,0,8,-17.117958,0,0,0,50,1,5,1,-9,-9,2019,1,1,10,0,55,67,15,1,0,1,0,29.702524,29.702524,0,0,0,0,0,0,0,0,0,0,0,7.752861,0,0,0,44.959999,44.82,45.700001,56.200001,5,1,1,0,0,9,5,1,402,3498137,0,0,7004.6724 -3097,3828,6971,-9,6970,6969,3,1,0,17,2,0,1,0,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-886.37146,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.20103742,0,0,0,51.139999,60.450001,-9,-9,7,1,1,0,0,9,5,1,402,3498137,0,0,7004.6724 -3098,3829,6972,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,1,1,0,0,5,5.5584989,5.5458188,0,3,0,-9,0,-9,0,-1033.6316,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,30,35,15,1,0,-9,0,.96608001,.96608001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,-9,-9,6,1,1,0,0,2,2,0,502,134439.56,0,0,130.25464 -3099,3830,6973,-9,6975,6974,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-896.06476,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,54.52,-9,-9,4,1,1,0,1,2,2,1,503.66666,91671.875,0,0,1070.7549 -3099,3830,6974,6975,-9,-9,2,1,1,59,1,0,1,0,3,-9,1,1,0,0,2,6.5725226,6.7023325,0,2,0,-9,40,0,2,52.951736,0,0,0,57,2,3,1,3,3,2019,1,1,10,0,50,45,15,1,0,1,0,1.2163823,1.2163823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.950001,41.59,35.799999,59.5,3,1,1,0,1,2,2,1,503.66666,91671.875,0,0,1070.7549 -3099,3830,6975,6974,-9,-9,1,1,0,57,1,0,1,0,2,-9,2,1,0,0,3,7.1244173,7.2472229,0,2,0,-9,41,0,-2,-23.207964,0,0,0,59,3,2,1,3,3,2019,1,2,13,3,16,7,15,1,0,1,0,7.6693358,7.6693358,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.76532,3,35.799999,59.5,45.950001,41.59,3,1,1,0,0,2,2,1,503.66666,91671.875,0,0,1070.7549 -3100,3831,6976,-9,-9,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,0,2,8.3876972,7.9693418,0,3,0,0,0,-9,0,-897.32275,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,35,14,15,1,0,-9,1,12.195775,12.195775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.799999,54.419998,-9,-9,6,3,4,0,0,8,4,0,627,104985.37,0,0,1886.9312 -3100,3832,6977,-9,-9,-9,3,1,1,19,2,0,0,0,2,1,1,1,0,1,3,7.9087734,7.8627872,0,3,0,0,0,-9,0,-1174.4788,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,4,26,0,15,1,1,-9,1,10.090816,10.090816,0,0,0,0,0,0,0,7,1,1,0,0,0,9.0142727,3,40.939999,58.349998,-9,-9,5,4,2,0,0,8,4,0,981,-233250.61,0,0,1332.1351 -3101,3833,6978,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,1,1,0,0,2,7.1835451,7.5527635,6.6740694,3,0,0,0,-9,0,-905.21094,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,12,0,15,1,0,-9,0,10.928452,10.928452,0,0,0,0,0,0,0,114,1,1,0,6.2121277,6.7236834,124.65069,3,54.799999,22.43,-9,-9,7,1,1,0,0,6,3,1,2206,467653.31,0,0,3064.9128 -3101,3834,6979,-9,-9,-9,2,1,0,44,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1054.6346,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,-9,-9,6,1,1,0,0,6,1,1,507,-200132.13,0,0,781.92682 -3102,3835,6980,6983,-9,-9,2,1,0,40,1,0,3,0,3,-9,2,1,0,0,4,7.5624642,7.6133971,0,2,0,-9,20,0,-19,-33.757179,0,0,1,59,3,3,3,3,3,2019,2,1,11,1,24,32,15,1,0,3,0,7.8355269,7.8355269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,50,49,5,2,3,0,1,8,2,0,509.25,232276.03,0,0,1760.8615 -3102,3835,6981,-9,6980,6983,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-872.82196,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,509.25,232276.03,0,0,1760.8615 -3102,3835,6982,-9,6980,6983,3,1,1,16,2,0,3,1,-9,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-935.55859,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7274919,0,0,0,57.060001,57.759998,-9,-9,6,2,3,0,0,8,2,0,509.25,232276.03,0,0,1760.8615 -3102,3835,6983,6980,-9,-9,1,1,1,59,1,0,3,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,20,0,19,-8.6187315,0,0,0,40,3,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,48,56,5,2,3,1,1,8,2,0,509.25,232276.03,0,0,1760.8615 -3103,3836,6984,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,0,2,7.4968033,7.9037771,0,3,0,0,0,-9,0,-1013.9867,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,33,0,15,1,1,-9,0,7.5264201,7.5264201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.75,57.43,-9,-9,1,1,1,0,1,1,3,0,483,-2520.3013,0,0,1427.3948 -3104,3837,6985,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,7.807364,8.1814022,0,3,0,0,0,-9,0,-957.03436,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,38,30,15,1,0,-9,0,10.03421,10.03421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.77,60.77,-9,-9,6,1,1,0,0,9,3,1,339,9871.1992,0,0,1081.8687 -3105,3838,6986,-9,-9,-9,1,1,0,50,3,0,0,0,3,-9,2,1,0,0,3,7.0602102,6.8334942,0,3,0,0,0,-9,0,-968.30432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,32,43,15,1,0,-9,0,3.6984613,3.6984613,0,0,0,0,0,0,0,0,0,0,0,2.4522178,0,0,0,54.959999,53.169998,-9,-9,4,1,1,0,0,10,2,1,928,-66716.852,0,0,1008.7756 -3105,3839,6987,-9,6986,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.7746696,7.6101999,0,3,0,0,0,-9,0,-1018.889,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,35,17,15,1,0,-9,1,6.294919,6.294919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.939999,60.48,-9,-9,4,1,1,0,0,10,3,1,440,12047.444,0,0,1294.6857 -3105,3840,6988,-9,6986,-9,3,1,1,21,2,0,0,0,2,1,2,1,0,0,4,7.228384,6.722867,0,3,0,0,0,-9,0,-1071.947,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,27,0,15,1,0,-9,1,6.2183323,6.2183323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,5,1,1,0,0,10,2,1,186,10974.819,0,0,335.73761 -3106,3841,6989,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,4.3154922,4.5326667,3,0,0,0,-9,0,-1088.4031,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4876003,0,0,42.82,46.490002,-9,-9,6,1,1,0,0,7,1,0,503,407061.94,0,0,1323.8694 -3107,3842,6990,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,1,1,0,6.3562346,6.4460917,3,0,0,0,-9,0,-831.44757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6744127,0,0,61.43,24.940001,-9,-9,4,1,1,0,0,5,2,1,108,200820.06,0,0,1546.9445 -3108,3843,6991,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,97,3,0,0,2,6.6154852,6.5108471,0,3,0,-9,0,1,0,-993.68182,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,2,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0941024,0,0,0,37.779999,39.799999,-9,-9,6,1,1,0,0,6,2,1,1782,336496.91,0,0,1085.2379 -3108,3844,6992,-9,6991,-9,3,1,1,24,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1018.7234,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.09,48.709999,-9,-9,2,1,1,1,0,6,1,1,1332,-74425.945,0,0,0 -3109,3845,6993,6994,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,7.4802003,7.5057693,1,0,-9,4,0,4,-75.963036,0,0,0,67,2,5,1,2,2,2019,3,1,20,9,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.486105,0,0,37.16,37.369999,51.139999,60.450001,6,1,1,0,0,12,3,1,701.5,606143.44,0,0,2588.751 -3109,3845,6994,6993,-9,-9,1,1,0,67,1,0,0,0,2,-9,2,1,0,0,5,6.5449891,7.0685859,6.7329774,1,0,-9,4,0,-4,51.560078,0,0,0,71,3,2,3,2,3,2019,2,2,11,0,13,13,15,1,0,4,0,6.1745148,6.1745148,0,0,0,0,0,0,0,0,1,1,0,0,6.4527683,0,0,51.139999,60.450001,37.16,37.369999,7,1,1,0,0,12,3,1,701.5,606143.44,0,0,2588.751 -3110,3846,6995,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,2,1,0,0,4,8.5215969,8.5694427,0,3,0,0,0,-9,0,-927.22205,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,13.87226,13.87226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,4,1,1,0,0,4,5,1,540,90555.211,0,0,2332.8435 -3111,3847,6996,-9,-9,-9,1,1,1,22,2,0,0,0,2,0,7,2,0,0,4,0,5.4819598,5.0685625,3,0,0,0,-9,0,-977.62744,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6980047,0,0,3,58.720001,51.290001,-9,-9,6,1,1,0,0,8,2,0,418,354697.03,0,0,-8.1736193 -3112,3848,6997,6999,-9,-9,1,1,1,34,1,0,1,0,1,-9,2,1,0,0,4,8.4389553,8.5305223,0,2,0,-9,7,0,1,6.5299039,0,0,0,33,1,4,1,1,1,2019,1,2,7,0,47,47,15,1,0,1,0,13.712517,13.712517,0,0,0,0,0,0,0,0,1,1,0,7.0325069,0,0,0,52.02,57.299999,48.529999,58.91,7,1,1,0,0,1,4,1,1648.3334,17656.016,0,0,3962.3228 -3112,3848,6998,-9,6999,6997,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.72919,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,1648.3334,17656.016,0,0,3962.3228 -3112,3848,6999,6997,-9,-9,2,1,0,33,1,0,1,0,1,-9,2,1,0,0,4,7.9948087,8.0567789,0,2,0,-9,7,0,-1,38.318771,0,0,1,34,1,4,1,2,2,2019,1,1,9,2,24,25,15,1,0,1,0,18.192993,18.192993,0,0,0,0,0,0,0,0,1,1,0,1.0840526,0,0,0,48.529999,58.91,52.02,57.299999,6,1,1,0,0,1,4,1,1648.3334,17656.016,0,0,3962.3228 -3113,3849,7000,7001,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,4.8063521,5.2827477,1,0,-9,9,0,-3,-33.307964,0,0,0,71,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4360662,5.2375908,0,3,56.799999,35.759998,57.66,45.080002,6,1,1,0,0,12,3,1,1172,1137989.3,0,0,2915.6953 -3113,3849,7001,7000,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.8684325,8.2220812,1,0,-9,9,0,3,22.921202,0,0,0,68,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5563736,7.8148322,0,0,57.66,45.080002,56.799999,35.759998,6,1,1,0,0,12,3,1,1172,1137989.3,0,0,2915.6953 -3114,3850,7002,-9,7003,7004,3,1,0,17,2,0,1,0,2,-9,7,2,0,0,4,5.9213214,5.4880352,0,2,0,0,0,-9,0,-990.89087,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.44771257,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,5,1,667.5,1342082.6,0,0,4143.8638 -3114,3850,7003,7004,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,7.5049467,7.2923336,0,2,0,-9,25,0,3,-64.571922,0,0,0,45,1,4,1,2,2,2019,1,2,8,0,8,10,15,1,0,1,0,28.74094,28.74094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,43.939999,58,6,1,1,0,0,9,5,1,667.5,1342082.6,0,0,4143.8638 -3114,3850,7004,7003,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,9.1525059,9.1891012,0,2,0,-9,25,0,-3,79.03492,0,0,0,48,2,4,1,2,2,2019,1,1,11,0,47,40,15,1,0,1,0,24.569847,24.569847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.939999,58,55.790001,52.619999,4,1,1,0,0,9,5,1,667.5,1342082.6,0,0,4143.8638 -3114,3850,7005,-9,7003,7004,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-956.09155,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,9,5,1,667.5,1342082.6,0,0,4143.8638 -3115,3851,7006,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,3,8.8359613,8.893259,0,3,0,0,0,-9,0,-1029.9989,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,18.544243,18.544243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.560001,49.66,-9,-9,5,1,1,0,0,6,5,0,273,125525.55,0,0,2148.1958 -3116,3852,7007,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-923.64594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,3.8240526,0,0,0,0,0,0,1,1,0,0,0,0,0,29.610001,21.77,-9,-9,4,1,1,0,0,13,1,0,312,-126786.11,0,0,1763.4208 -3117,3853,7008,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,1,1,0,0,5,9.5241404,9.8984852,9.0229845,3,0,0,0,-9,0,-953.20825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,35,15,1,0,-9,0,39.069454,39.069454,0,0,0,0,0,0,0,0,1,1,0,7.2231307,8.5854559,0,0,54.669998,57.490002,-9,-9,6,1,1,0,0,11,5,1,591,1127767.4,0,0,9902.1143 -3118,3854,7009,-9,-9,-9,1,1,0,88,2,0,0,0,2,-9,4,3,0,0,4,0,3.9887276,3.9089074,3,0,0,0,-9,0,-973.90436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5017867,4.2984381,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,2,1,200,364572.34,0,0,109.93464 -3119,3855,7010,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,1,2,0,7.1337614,7.1342573,3,0,-9,0,-9,0,-825.94055,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,3.8684437,0,0,0,.91202354,29.391062,0,1,1,0,1.4191462,7.2407069,0,0,53.419998,20.41,-9,-9,6,1,1,0,0,11,3,1,1142,158008.45,0,0,1498.0782 -3120,3856,7011,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,3,0,6.5153055,6.7410688,3,0,0,0,-9,0,-1052.4614,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,21.855661,0,0,0,0,1,1,0,0,6.6446958,0,0,49.599998,21.799999,-9,-9,6,1,1,0,0,13,2,1,618,61309.078,0,0,2541.6719 -3121,3857,7012,7013,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,2,0,0,0,0,71,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.560001,36.869999,53.450001,36.119999,6,2,3,0,0,5,1,1,838.5,252083.31,0,0,0 -3121,3857,7013,7012,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-2,0,0,0,0,73,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.450001,36.119999,63.560001,36.869999,6,2,3,0,0,5,1,1,838.5,252083.31,0,0,0 -3122,3858,7014,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1091.1459,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,55,50,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.439999,53.810001,-9,-9,3,1,1,0,0,6,1,1,3101,123555.7,0,0,0 -3123,3859,7015,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,3,8.654624,8.3468895,0,3,0,0,0,-9,0,-1089.7841,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,41,44,15,1,0,-9,0,17.263672,17.263672,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,3,1,1,0,1,10,5,1,1038,1196901.5,0,0,3214.2498 -3124,3860,7016,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1034.1113,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.639999,45.700001,-9,-9,7,1,1,0,0,2,1,0,182,1981.5028,0,0,-66.306053 -3125,3861,7017,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1060.047,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9143624,0,0,0,46.220001,45.099998,-9,-9,5,1,1,0,0,5,1,0,306,0,0,0,172.12663 -3126,3862,7018,7019,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.3125625,7.2665114,0,2,0,-9,28,0,-1,40.929298,0,0,0,49,2,4,1,3,3,2019,1,2,11,0,22,21,15,1,0,1,0,7.7070923,7.7070923,0,0,0,0,0,0,0,0,1,1,0,4.4749012,0,0,0,42.360001,56.119999,56.580002,49.75,5,1,1,0,0,10,4,1,1074.6666,91682.828,0,0,3249.8083 -3126,3862,7019,7018,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.3886566,8.8821287,7.3911624,2,0,-9,28,0,1,-56.382053,0,0,0,48,2,3,1,-9,2,2019,1,1,12,0,38,38,15,1,0,1,0,14.29717,14.29717,0,0,0,0,0,0,0,0,1,1,0,3.1670277,7.3105235,0,0,56.580002,49.75,42.360001,56.119999,6,1,1,0,0,10,4,1,1074.6666,91682.828,0,0,3249.8083 -3126,3862,7020,-9,7018,7019,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,5.8284979,6.1536021,0,2,0,0,0,-9,0,-923.21814,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84326982,0,0,0,49.799999,54.330002,-9,-9,5,1,1,0,0,10,4,1,1074.6666,91682.828,0,0,3249.8083 -3126,3863,7021,-9,7018,7019,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,5,7.7403021,7.7961378,0,3,0,0,0,-9,0,-841.81177,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,0,15,1,0,-9,1,7.8222575,7.8222575,0,0,0,0,0,0,0,0,1,1,0,1.0962284,0,0,0,54.099998,59.110001,-9,-9,1,1,1,0,0,10,3,1,606,-25457.301,0,0,1085.8065 -3127,3864,7022,-9,-9,-9,1,1,1,40,3,0,0,0,2,-9,2,1,0,0,4,8.9794197,8.8240805,0,3,0,0,0,-9,0,-853.59998,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,37,42,15,1,0,-9,0,21.022585,21.022585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.799999,56.68,-9,-9,6,1,1,0,0,10,5,0,917,91344.508,0,0,2314.8926 -3128,3865,7023,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,1,1,0,0,2,8.5300369,8.9011936,8.2377405,3,0,0,0,-9,0,-1012.9908,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,23,11,8,5,15,1,1,-9,0,63.638599,63.638599,0,0,0,0,0,0,0,0,0,0,0,3.2961416,8.5193129,0,0,45.389999,45.82,-9,-9,6,1,1,0,0,2,5,1,1497,882156.88,0,0,5247.1665 -3129,3866,7024,7025,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,7.9554882,8.6716413,7.7475338,1,0,-9,9,0,1,11.569325,0,0,0,58,2,2,1,3,2,2019,1,2,6,0,56,60,15,1,0,1,0,5.5672765,5.5672765,0,0,0,0,0,0,0,0,0,0,0,7.8061328,8.3086519,0,0,57.09,43.990002,44.639999,44.509998,6,1,1,0,0,5,4,1,638.5,415443.94,0,0,4769.9839 -3129,3866,7025,7024,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,0,2,6.2564497,6.1928802,0,1,0,-9,9,0,-1,9.4559956,0,0,0,59,2,3,1,-9,-9,2019,1,1,12,0,56,70,15,1,0,1,0,.94172156,.94172156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.639999,44.509998,57.09,43.990002,5,1,1,0,0,5,4,1,638.5,415443.94,0,0,4769.9839 -3129,3867,7026,-9,7025,7024,3,1,0,34,2,0,0,0,2,-9,2,1,0,0,3,6.4798732,6.4822321,0,3,0,0,0,-9,0,-1114.6592,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,35,40,15,1,0,-9,1,2.7411137,2.7411137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.549999,44.93,-9,-9,4,1,1,0,0,5,2,1,1173,-102312.5,0,0,152.54485 -3130,3868,7027,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,1,1,0,0,4,8.1247082,8.3810759,0,3,0,0,0,-9,0,-964.6604,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,48,50,15,1,0,-9,0,9.4804573,9.4804573,0,0,0,0,0,0,0,0,1,1,0,.42805156,0,0,0,44.02,60.700001,-9,-9,6,1,1,0,0,8,4,0,137,0,0,0,1772.9137 -3131,3869,7028,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,4,8.0497427,8.5211935,0,3,0,0,0,-9,0,-993.78021,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,55,55,15,1,0,-9,0,8.2278318,8.2278318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.130001,49.27,-9,-9,6,1,1,0,1,6,4,0,1239,189746.8,0,0,1889.4027 -3132,3870,7029,-9,-9,-9,1,1,1,82,3,0,0,0,1,-9,4,3,0,0,4,0,7.4241991,7.8207378,3,0,0,0,-9,0,-896.0437,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.52496,0,0,0,0,4.2218213,0,1,1,0,8.9000797,7.8659754,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,11,3,1,4374,187331.61,0,0,2727.6462 -3133,3871,7030,7031,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,5.6130381,5.4033518,1,0,-9,8,0,1,11.18956,0,0,0,71,2,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.90658,5.8514862,0,0,63.02,35.77,57.68,45.060001,6,1,1,0,0,9,2,1,641,815588.5,0,0,1723.2606 -3133,3871,7031,7030,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.4494643,6.3697982,1,0,-9,8,0,-1,9.5725403,0,0,0,72,3,3,3,3,1,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7368269,6.4613862,0,0,57.68,45.060001,63.02,35.77,6,1,1,0,0,9,2,1,641,815588.5,0,0,1723.2606 -3134,3872,7032,7033,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,2,0,6.4118471,6.210484,1,0,-9,66,0,-1,93.632896,0,0,0,86,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1681075,6.4724336,0,0,45.73,39.34,48.939999,30.52,4,1,1,0,0,2,2,1,1269,395534.81,0,0,2071.6865 -3134,3872,7033,7032,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,0,4,0,6.3875327,6.6168532,1,0,-9,66,0,1,-45.183086,0,0,0,85,2,2,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,1.3374559,0,0,0,1,1,0,4.2234912,6.1933279,0,0,48.939999,30.52,45.73,39.34,4,1,1,0,0,2,2,1,1269,395534.81,0,0,2071.6865 -3134,3873,7034,-9,7033,7032,3,1,1,54,2,0,0,0,1,-9,2,1,0,0,3,7.8742394,7.9931159,0,3,0,0,0,-9,0,-1071.917,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,47,40,15,1,0,-9,1,7.0829778,7.0829778,0,0,0,0,0,0,0,2,1,1,0,.50607681,0,0,3,52.150002,48.98,-9,-9,3,1,1,0,0,2,3,1,246,361780.81,0,0,698.86914 -3135,3874,7035,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,3,6.1235061,10.129621,10.206161,4,0,0,0,-9,0,-1155.8397,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,26,26,15,1,0,-9,0,2.2719679,2.2719679,0,0,0,0,0,0,0,0,1,1,0,0,9.800436,0,0,48.540001,46.619999,-9,-9,6,1,1,0,0,5,5,1,1126.5,144556.66,0,0,13862.141 -3135,3874,7036,-9,7035,-9,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1073.8521,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.07,55.119999,-9,-9,2,1,1,0,0,5,5,1,1126.5,144556.66,0,0,13862.141 -3135,3875,7037,-9,7035,-9,2,1,1,18,2,0,1,0,2,-9,2,1,0,0,4,8.0748281,8.1106396,0,3,0,0,0,-9,0,-1018.7025,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,40,0,15,1,1,-9,1,12.585047,12.585047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,60.259998,-9,-9,3,1,1,0,1,5,4,1,357,-80370.875,0,0,1851.2333 -3136,3876,7038,-9,-9,-9,1,1,0,75,2,0,0,0,2,-9,4,3,0,1,1,0,6.489408,6.5459065,3,0,0,0,-9,0,-958.86639,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.5551891,0,0,41.139999,30.1,-9,-9,2,1,1,0,0,1,2,1,1684,334085.09,0,0,835.46124 -3137,3877,7039,-9,7041,7040,4,1,1,17,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1038.261,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73586076,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,2,1,458.25,442115.25,0,0,2465.0542 -3137,3877,7040,7041,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,0,4,7.0265279,6.9341617,0,2,0,-9,1,-9,3,-191.75705,-9,0,0,51,2,3,1,1,2,2019,1,2,10,0,20,0,15,1,0,1,0,5.942585,5.942585,0,0,0,0,0,0,0,0,1,1,0,7.1721687,0,0,0,52.41,50.049999,52,54.509998,6,1,1,0,0,13,2,1,458.25,442115.25,0,0,2465.0542 -3137,3877,7041,7040,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,0,3,7.6161599,7.4750886,0,2,0,-9,1,-9,-3,53.418705,-9,0,0,54,1,4,1,2,2,2019,1,1,2,0,18,0,15,1,0,1,0,12.231382,12.231382,0,0,0,0,0,0,0,14.5,1,1,0,6.6293516,0,6.0815887,3,52,54.509998,52.41,50.049999,6,1,1,0,0,13,2,1,458.25,442115.25,0,0,2465.0542 -3137,3877,7042,-9,7041,7040,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-965.43024,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,1,458.25,442115.25,0,0,2465.0542 -3138,3878,7043,7044,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,8.5942049,8.1858912,0,1,0,-9,6,0,-4,96.813705,0,0,0,51,2,2,1,-9,-9,2019,1,1,7,0,37,35,15,1,0,1,0,16.743,16.743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,38.509998,48.900002,6,1,1,0,0,9,5,1,227.5,472582.47,0,0,3502.2114 -3138,3878,7044,7043,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.4254904,8.2749443,0,1,0,-9,6,0,4,-25.088556,0,0,0,47,2,4,1,3,3,2019,1,2,12,0,54,59,15,1,0,1,0,9.123538,9.123538,0,0,0,0,0,0,0,0,0,0,0,6.6226521,0,0,0,38.509998,48.900002,51.830002,57.200001,3,1,1,0,0,9,5,1,227.5,472582.47,0,0,3502.2114 -3139,3879,7045,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,0,5,6.9418368,7.3267126,5.4731627,4,0,-9,0,1,0,-1109.7738,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,20,45,15,1,0,-9,0,5.3169622,5.3169622,0,0,0,0,0,0,0,0,1,1,0,6.1204925,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,2,0,1533,-66424.531,0,0,1775.5293 -3139,3879,7046,-9,7045,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.73572,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,2,0,1533,-66424.531,0,0,1775.5293 -3140,3880,7047,7048,-9,-9,1,1,1,59,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,2,0,3,140.0076,0,0,0,56,3,2,1,-9,-9,2019,3,2,10,0,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.07,16.26,49.48,46.529999,6,1,1,1,1,4,2,1,86.5,159197,0,0,797.97778 -3140,3880,7048,7047,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,2,7.0758739,7.7740526,5.414084,1,0,-9,2,0,-3,-51.21312,0,0,0,59,3,2,3,-9,-9,2019,2,1,6,0,30,31,15,1,0,3,0,6.1890955,6.1890955,0,0,0,0,0,0,0,0,1,1,0,5.1331697,5.3492103,0,0,49.48,46.529999,59.07,16.26,7,1,1,0,0,4,2,1,86.5,159197,0,0,797.97778 -3141,3881,7049,7050,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,5.8182526,5.9217834,1,0,-9,56,0,-2,-2.5202713,0,0,0,79,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,6.2695122,4.7729464,0,0,0,0,1,1,0,.5764364,5.9374375,0,0,56.5,29.77,48.130001,38.290001,6,1,1,0,0,2,2,1,232.5,460191.31,0,0,2572.125 -3141,3881,7050,7049,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,5.7161651,6.1985154,1,0,-9,56,0,2,-49.715847,0,0,0,77,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,42,1,1,0,5.9143081,5.9841809,40.223724,1,48.130001,38.290001,56.5,29.77,5,1,1,0,0,2,2,1,232.5,460191.31,0,0,2572.125 -3142,3882,7051,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,0,2,8.5773382,8.55721,0,3,0,0,0,-9,0,-991.35797,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,50,50,15,1,1,-9,0,12.108667,12.108667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.89,63.580002,-9,-9,3,1,1,0,0,8,5,0,314,15183.249,0,0,2406.4675 -3143,3883,7052,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-858.74768,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.639999,52.959999,-9,-9,4,1,1,0,0,10,1,0,479,29213.074,0,0,2754.45 -3144,3884,7053,7054,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,0,5,8.1601963,8.0795374,0,1,0,-9,1,-9,-2,-31.04431,-9,0,0,59,1,4,1,3,3,2019,1,1,6,0,45,0,15,1,0,1,0,11.312398,11.312398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,55,53,7,2,3,0,0,7,5,1,179,1759728.1,0,0,14129.945 -3144,3884,7054,7053,7055,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,0,4,9.6900616,10.402025,9.6826782,1,0,-9,31,-9,2,-129.16322,-9,0,0,57,2,5,1,3,2,2019,1,2,8,0,70,0,15,1,0,1,0,30.473589,30.473589,0,0,0,0,0,0,0,0,1,1,0,4.77493,9.2368822,0,0,55,53,54.099998,59.110001,6,2,3,0,0,7,5,1,179,1759728.1,0,0,14129.945 -3144,3885,7055,-9,-9,-9,3,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,6.1948986,6.0290837,3,0,-9,0,-9,0,-951.30603,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8568149,0,0,53.630001,28.07,-9,-9,5,2,3,0,0,7,2,1,698,453014.91,0,0,341.32773 -3144,3886,7056,-9,7053,7054,4,1,1,29,3,0,0,0,1,-9,2,1,0,0,4,8.7334042,8.8307428,0,3,0,-9,0,-9,0,-1047.9482,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,63,0,15,1,0,-9,1,12.021179,12.021179,0,0,0,0,0,0,0,0,1,1,0,4.0172348,0,0,0,55.189999,54.259998,-9,-9,5,2,3,0,0,7,5,1,1292,-111057.72,0,0,2423.9917 -3145,3887,7057,7058,-9,-9,1,1,0,83,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,63,0,1,44.457199,0,0,0,82,2,4,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.79050797,0,0,0,46.68,40.549999,52.52,51.400002,7,1,1,0,0,6,2,1,689.5,442825.97,0,0,1862.1848 -3145,3887,7058,7057,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,4,0,7.5899162,7.8056622,1,0,-9,6,0,-1,61.82148,0,0,0,83,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7105951,7.2955837,0,0,52.52,51.400002,46.68,40.549999,6,1,1,0,0,6,2,1,689.5,442825.97,0,0,1862.1848 -3146,3888,7059,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-715.8371,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.162407,3,38.009998,34.130001,-9,-9,4,1,1,0,0,5,1,1,310,-144008.08,0,0,156.14044 -3146,3889,7060,-9,7059,-9,2,1,1,43,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1106.6052,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,5,1,1,73,74126.375,0,0,789.54797 -3147,3890,7061,-9,7063,7062,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.83716,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,899.33331,587769.31,0,0,2210.7908 -3147,3890,7062,7063,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,4,8.3733339,8.4168053,0,2,0,-9,9,0,4,88.191689,0,0,0,47,2,1,1,-9,-9,2019,1,1,12,0,40,37,15,1,0,1,0,13.443551,13.443551,0,0,0,0,0,0,0,7,1,1,0,0,0,16.773687,3,39.43,52.209999,52.970001,16.629999,4,1,1,0,0,4,4,1,899.33331,587769.31,0,0,2210.7908 -3147,3890,7063,7062,7064,-9,1,1,0,47,1,0,1,0,2,-9,1,1,0,0,1,6.7683263,7.3919811,0,2,0,-9,16,0,-4,-21.651701,0,0,0,51,1,4,1,3,-9,2019,1,2,12,2,40,40,15,1,0,1,0,3.7338479,3.7338479,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.882545,3,52.970001,16.629999,39.43,52.209999,6,1,1,0,0,4,4,1,899.33331,587769.31,0,0,2210.7908 -3147,3891,7064,-9,-9,-9,4,1,0,86,3,0,1,0,3,-9,4,3,0,0,3,0,5.8662124,5.7177997,4,0,-9,0,-9,0,-924.17334,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9863882,0,0,53,45,-9,-9,6,1,1,0,0,4,2,1,408,242893.53,0,0,844.91418 -3148,3892,7065,7066,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,6.4077234,6.4638252,0,1,0,-9,32,0,-1,-26.89558,0,0,0,56,1,4,1,2,2,2019,1,2,7,0,10,7,15,1,0,1,0,8.6845703,8.6845703,0,0,0,0,0,0,0,7,0,0,0,1.1782194,0,11.168722,3,57.16,56.150002,52.34,56.950001,6,1,1,0,0,6,5,1,403.5,398756.47,0,0,2315.7739 -3148,3892,7066,7065,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,8.7056274,8.6314602,0,1,0,-9,32,0,1,7.1219907,0,0,0,55,2,4,1,3,3,2019,1,1,9,0,40,42,15,1,0,1,0,16.221962,16.221962,0,0,0,0,0,0,0,0,0,0,0,6.2176499,0,0,0,52.34,56.950001,57.16,56.150002,6,1,1,0,0,6,5,1,403.5,398756.47,0,0,2315.7739 -3149,3893,7067,7068,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,5,0,7.8413405,7.3552833,1,0,-9,49,0,8,-17.993025,0,0,0,76,2,3,3,3,2,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8344855,7.7855744,0,0,51.669998,60.18,55.529999,51.549999,7,1,1,0,0,9,3,1,877.5,780285.56,0,0,2732.2007 -3149,3893,7068,7067,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.9043965,6.2008572,1,0,-9,49,0,-8,-44.157558,0,0,0,84,3,5,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1704376,6.8994007,0,0,55.529999,51.549999,51.669998,60.18,6,1,1,0,0,9,3,1,877.5,780285.56,0,0,2732.2007 -3150,3894,7069,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,0,4,8.2702923,8.3395405,0,3,0,0,0,-9,0,-1037.8607,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,10,71,38,15,1,1,-9,0,5.8178401,5.8178401,0,0,0,0,0,0,0,2,0,0,0,0,0,8.2380524,3,39.09,60.150002,-9,-9,2,1,1,0,0,9,4,0,309,1331789.8,0,0,1795.3268 -3151,3895,7070,7071,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,0,3,8.1902552,8.3621826,6.5686626,1,0,-9,6,0,-3,-135.73036,0,0,0,50,2,4,1,-9,-9,2019,1,1,12,2,26,30,15,1,0,1,0,15.452765,15.452765,0,0,0,0,0,0,0,0,0,0,0,6.3635817,0,0,0,41.93,55.119999,57.16,56.150002,6,1,1,0,0,10,5,1,447.5,668610.75,0,0,2914.5488 -3151,3895,7071,7070,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,7.9548564,7.9751706,0,1,0,-9,6,0,3,-39.463543,0,0,0,47,1,3,1,2,2,2019,1,2,9,0,38,38,15,1,0,1,0,10.565631,10.565631,0,0,0,0,0,0,0,0,0,0,0,1.8664464,0,0,0,57.16,56.150002,41.93,55.119999,6,1,1,0,0,10,5,1,447.5,668610.75,0,0,2914.5488 -3152,3896,7072,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,3,0,4.8856664,4.6638823,3,0,0,0,-9,0,-918.41937,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,28,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.3845916,4.7500343,80.351074,3,57.330002,53.459999,-9,-9,6,1,1,0,0,11,1,1,123,1661812.5,0,0,1098.9994 -3153,3897,7073,7074,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,2,8.6485023,8.5548315,0,1,0,-9,24,0,1,-83.831963,0,0,0,54,2,1,1,-9,-9,2019,1,1,6,0,56,8,15,1,0,1,0,10.318635,10.318635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.380001,47.509998,22.92,33.099998,6,1,1,0,0,9,5,1,282.5,922674.63,0,0,3605.3533 -3153,3897,7074,7073,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,1,8.2646179,8.1233234,0,1,0,-9,23,0,-1,22.185295,-9,0,0,55,1,2,1,-9,-9,2019,1,2,19,7,37,0,15,1,1,1,0,10.613303,10.613303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.92,33.099998,53.380001,47.509998,4,1,1,0,0,9,5,1,282.5,922674.63,0,0,3605.3533 -3154,3898,7075,7076,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,0,3,0,7.9122844,8.1229286,1,0,-9,61,0,0,-83.342575,0,0,0,83,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7239151,8.4232836,0,0,55,45,53,45,6,1,1,0,0,9,4,1,1821,1005629.8,0,0,3347.9976 -3154,3898,7076,7075,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,3,0,7.1755009,7.5474277,1,0,-9,61,0,0,-107.99406,0,0,0,83,1,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4582286,7.3767452,0,0,53,45,55,45,6,1,1,0,0,9,4,1,1821,1005629.8,0,0,3347.9976 -3155,3899,7077,-9,7078,-9,3,1,0,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-989.93933,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,6,0,0,9,1,0,375.5,0,0,0,1332.2246 -3155,3899,7078,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1011.3308,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.73038,3,43.099998,36.84,-9,-9,5,1,1,0,0,9,1,0,375.5,0,0,0,1332.2246 -3156,3900,7079,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,2,0,7.2964973,7.3504553,3,0,0,0,-9,0,-958.75549,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.3627615,0,0,69.43,16.780001,-9,-9,6,1,1,0,0,12,2,1,415,540761.75,0,0,1974.4425 -3157,3901,7080,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,7.7709184,7.807519,0,3,0,0,0,-9,0,-1093.2681,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,45,38,15,1,0,-9,0,6.5537648,6.5537648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.130001,49.27,-9,-9,6,1,1,0,0,4,3,1,538,342860.13,0,0,2015.4526 -3158,3902,7081,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,5,0,7.7805719,7.6476727,3,0,0,0,-9,0,-988.18549,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7141232,0,0,54.669998,57.490002,-9,-9,6,1,1,0,0,11,3,1,1892,505057.13,0,0,1536.8134 -3159,3903,7082,7083,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,0,3,9.0990162,8.5955563,0,2,0,-9,9,0,-1,118.6667,0,0,0,37,1,3,1,2,2,2019,1,2,18,6,44,55,15,1,1,1,0,18.246279,18.246279,0,0,0,0,0,0,0,0,1,1,0,7.1657805,0,0,0,47.32,33.189999,46.669998,55.57,3,1,1,0,0,7,5,1,382.66666,1424873.4,0,0,5084.7583 -3159,3903,7083,7082,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,0,3,8.617691,8.193512,0,2,0,-9,9,0,1,91.720917,0,0,1,36,2,3,1,-9,-9,2019,1,1,9,2,37,37,15,1,0,1,0,16.522987,16.522987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,47.32,33.189999,6,1,1,0,0,7,5,1,382.66666,1424873.4,0,0,5084.7583 -3159,3903,7084,-9,7083,7082,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.76483,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,5,1,382.66666,1424873.4,0,0,5084.7583 -3160,3904,7085,7086,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,2,8.5573301,8.1968517,0,1,0,-9,35,0,6,-106.22119,0,0,0,61,2,2,3,3,3,2019,2,2,9,1,35,0,15,1,0,4,0,9.2505617,9.2505617,0,0,0,0,0,0,0,0,1,1,0,4.3283315,0,0,0,62.419998,32.41,46.5,38.400002,6,1,1,0,0,2,4,1,2380.5,513833.06,0,0,4421.2666 -3160,3904,7086,7085,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,1,2,0,7.7146149,7.253015,1,0,-9,35,0,-6,-31.925343,0,0,0,67,2,2,1,3,3,2019,3,1,12,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.0674276,7.6272283,20.035345,3,46.5,38.400002,62.419998,32.41,6,1,1,0,0,2,4,1,2380.5,513833.06,0,0,4421.2666 -3161,3905,7087,-9,7090,7088,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.7604,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,653.75,447315.53,0,0,3737.5684 -3161,3905,7088,7090,-9,-9,1,1,1,42,1,0,2,0,1,-9,1,1,0,0,5,0,0,0,2,0,-9,20,0,0,21.939867,0,0,0,42,1,4,1,2,2,2019,1,2,26,9,0,50,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5477357,0,0,0,38.93,63.130001,43.48,60.970001,3,1,1,0,0,9,5,1,653.75,447315.53,0,0,3737.5684 -3161,3905,7089,-9,7090,7088,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.3601,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,653.75,447315.53,0,0,3737.5684 -3161,3905,7090,7088,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,9.5142517,9.4446411,0,2,0,-9,20,0,0,-10.420376,0,0,1,42,1,5,1,2,1,2019,1,1,20,7,42,40,15,1,1,1,0,30.839998,30.839998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.48,60.970001,38.93,63.130001,3,1,1,0,0,9,5,1,653.75,447315.53,0,0,3737.5684 -3162,3906,7091,7092,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,7.9872212,8.0310221,0,1,0,-9,15,0,-5,18.034786,0,0,0,51,1,3,1,2,3,2019,1,2,10,1,35,30,15,1,0,1,0,9.2289505,9.2289505,0,0,0,0,0,0,0,2,0,0,0,2.225301,0,2.9966974,3,57.16,56.150002,51.130001,50.73,6,1,1,0,0,13,4,1,286.5,336474.47,0,0,1467.9119 -3162,3906,7092,7091,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,7.0600991,7.1915212,0,1,0,-9,16,0,5,-29.732124,0,0,0,46,1,4,1,3,2,2019,1,1,12,0,18,17,15,1,0,1,0,9.1311255,9.1311255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.130001,50.73,57.16,56.150002,6,1,1,0,0,13,4,1,286.5,336474.47,0,0,1467.9119 -3163,3907,7093,-9,7095,7098,3,1,1,15,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.75732,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,2,1,1364.8334,17430.707,0,0,1142.246 -3163,3907,7094,-9,7095,7098,2,1,1,17,2,1,3,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-984.09521,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.110001,37.610001,-9,-9,6,2,3,0,0,8,2,1,1364.8334,17430.707,0,0,1142.246 -3163,3907,7095,7098,-9,-9,1,1,0,41,1,1,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,1,-146.65321,0,0,1,40,3,4,1,3,3,2019,3,5,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,51,56,6,2,3,0,0,8,2,1,1364.8334,17430.707,0,0,1142.246 -3163,3907,7096,-9,7095,7098,4,1,0,12,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.60974,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,1,1364.8334,17430.707,0,0,1142.246 -3163,3907,7097,-9,7095,7098,6,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.4566,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,2,1,1364.8334,17430.707,0,0,1142.246 -3163,3907,7098,7095,-9,-9,5,1,1,40,1,1,3,0,3,-9,2,1,0,0,4,7.0108833,7.1764221,0,2,0,-9,6,0,-1,19.607391,0,0,0,41,3,4,3,-9,-9,2019,2,1,9,1,25,25,15,1,0,3,0,7.6907682,7.6907682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,55,6,2,3,0,0,8,2,1,1364.8334,17430.707,0,0,1142.246 -3164,3908,7099,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,7.0248423,6.8318114,3,0,0,0,-9,0,-1014.6666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1915259,6.9940262,0,0,52,45,-9,-9,6,1,1,0,0,4,2,0,926,575742.25,0,0,1083.5792 -3165,3909,7100,7101,-9,-9,2,1,0,63,1,0,0,0,2,-9,1,1,0,0,4,6.078311,6.1262674,4.5340028,1,0,-9,43,0,-2,-53.1637,0,0,0,65,2,3,1,3,3,2019,1,1,25,10,10,5,15,1,1,1,0,4.6161675,4.6161675,0,0,0,0,0,0,0,42,1,1,0,1.8711317,4.1332583,47.910439,3,43.990002,60.709999,62.66,52.400002,4,1,1,0,0,7,2,1,215,153008.84,0,0,688.28442 -3165,3909,7101,7100,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,0,3,5.6123447,6.8283901,7.0260549,1,0,-9,43,0,2,90.045418,0,0,0,63,2,4,1,3,-9,2019,1,2,6,0,45,50,15,1,0,1,0,.98975658,.98975658,0,0,0,0,0,0,0,0,1,1,0,0,6.7744875,0,0,62.66,52.400002,43.990002,60.709999,7,1,1,0,0,7,2,1,215,153008.84,0,0,688.28442 -3166,3910,7102,7103,-9,-9,2,1,1,35,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,5,0,0,0,0,30,3,1,3,-9,-9,2019,4,1,36,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.970001,31.92,9.7200003,48.950001,3,4,2,0,0,4,1,0,931.5,-53432.063,0,0,2533.8342 -3166,3910,7103,7102,-9,-9,1,1,0,30,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,4,0,-5,0,0,0,1,35,3,1,3,3,3,2019,4,2,31,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.52164,1,9.7200003,48.950001,32.970001,31.92,1,1,1,0,0,4,1,0,931.5,-53432.063,0,0,2533.8342 -3167,3911,7104,-9,7106,7105,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.61841,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,749,58483.785,0,0,6049.3965 -3167,3911,7105,7106,-9,-9,2,1,1,33,1,0,1,0,1,-9,2,1,0,0,4,8.8425646,9.0674076,0,2,0,-9,7,0,-1,-70.023689,0,0,0,34,1,4,1,-9,-9,2019,1,1,10,1,38,38,15,1,0,1,0,22.292471,22.292471,0,0,0,0,0,0,0,0,1,1,0,.73344433,0,0,0,50,57,49.459999,56.91,5,1,1,0,0,2,5,1,749,58483.785,0,0,6049.3965 -3167,3911,7106,7105,-9,-9,1,1,0,34,1,0,1,0,1,-9,2,1,0,0,4,8.9491844,9.1818151,0,2,0,-9,7,0,1,56.394527,0,0,1,33,1,4,1,-9,-9,2019,1,2,7,0,25,10,15,1,0,1,0,42.093182,42.093182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,50,57,6,1,1,0,0,2,5,1,749,58483.785,0,0,6049.3965 -3168,3912,7107,7108,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,2,8.2178154,8.3084974,0,1,0,-9,36,0,-2,28.71114,0,0,0,56,2,4,1,2,2,2019,1,2,12,1,31,32,15,1,0,1,0,15.197448,15.197448,0,0,0,0,0,0,0,0,0,0,0,4.5417986,0,0,0,47.119999,46.150002,54.799999,50.32,6,1,1,0,0,5,5,1,564,525202.69,0,0,4117.8369 -3168,3912,7108,7107,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.028923,7.9661474,0,1,0,-9,35,0,2,46.455723,0,0,0,54,1,2,1,2,1,2019,1,1,6,0,40,42,15,1,0,1,0,8.5598841,8.5598841,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.799999,50.32,47.119999,46.150002,6,1,1,0,0,5,5,1,564,525202.69,0,0,4117.8369 -3169,3913,7109,7110,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,0,2,8.6136217,8.4284658,0,1,0,-9,3,0,4,-45.722,0,0,0,51,2,3,1,2,2,2019,1,1,12,0,51,57,15,1,0,1,0,14.162662,14.162662,0,0,0,0,0,0,0,0,0,0,0,4.5503469,0,0,0,47.310001,50.200001,52,54.509998,5,1,1,0,0,9,5,1,657,400866.28,0,0,3168.2898 -3169,3913,7110,7109,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.9385796,8.0951242,0,1,0,-9,3,0,-4,25.435938,0,0,0,55,3,2,1,2,2,2019,1,2,10,0,76,42,15,1,0,1,0,3.7788181,3.7788181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,47.310001,50.200001,5,1,1,0,0,9,5,1,657,400866.28,0,0,3168.2898 -3170,3914,7111,7112,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,7.2408943,7.1345415,1,0,-9,49,0,3,59.171089,0,0,0,70,1,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7413764,7.3195119,0,0,46.560001,37.029999,57.09,46.700001,6,1,1,0,0,4,2,1,601.5,886102.5,0,0,2354.6787 -3170,3914,7112,7111,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,5.2721224,5.4956245,1,0,-9,8,0,-3,49.648907,0,0,0,73,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8192878,5.3118763,0,0,57.09,46.700001,46.560001,37.029999,6,1,1,0,0,4,2,1,601.5,886102.5,0,0,2354.6787 -3171,3915,7113,7114,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,0,0,0,0,0,69,2,3,3,2,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,1,0,4.7639132,0,0,0,0,0,1,1,0,0,0,0,0,40.380001,34.419998,52,48,6,1,1,0,0,7,1,1,223,106347.31,0,0,1384.6538 -3171,3915,7114,7113,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,0,0,-9,0,0,69,2,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,40.380001,34.419998,5,1,1,0,0,7,1,1,223,106347.31,0,0,1384.6538 -3172,3916,7115,7116,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.1359301,6.8687692,1,0,-9,9,0,0,27.127108,0,0,0,65,3,4,3,3,3,2019,4,2,5,0,0,39,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4815636,7.2045527,0,0,58.150002,52.91,51.830002,57.200001,7,1,1,0,0,5,2,1,751,283268.81,0,0,1496.0261 -3172,3916,7116,7115,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,0,36.941208,0,0,0,65,2,4,3,2,3,2019,4,1,11,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8304653,0,0,0,51.830002,57.200001,58.150002,52.91,6,1,1,0,0,5,2,1,751,283268.81,0,0,1496.0261 -3173,3917,7117,7119,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,5,7.5857215,7.339498,0,2,0,-9,27,0,0,61.552834,0,0,0,48,1,4,1,3,2,2019,1,2,9,0,15,37,15,1,0,1,0,10.27214,10.27214,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.944511,3,45.959999,59.330002,52,55,7,2,3,0,0,4,2,1,463.66666,209826.98,0,0,2395.4829 -3173,3917,7118,-9,7117,7119,6,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.47296,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,4,2,1,463.66666,209826.98,0,0,2395.4829 -3173,3917,7119,7117,7120,-9,2,1,1,48,1,0,1,0,1,-9,1,1,0,0,4,7.2184405,7.0302401,0,2,0,-9,7,0,0,10.543902,-9,0,0,48,2,5,1,3,-9,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,45.959999,59.330002,6,2,3,0,0,4,2,1,463.66666,209826.98,0,0,2395.4829 -3173,3918,7120,-9,-9,-9,3,1,0,71,3,0,1,0,3,-9,6,3,0,0,3,0,5.3470197,5.1026912,4,0,0,0,-9,0,-894.48102,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6145282,0,3,51,46,-9,-9,5,2,3,0,0,4,2,1,671,-84849.945,0,0,1230.691 -3173,3919,7121,-9,7117,7119,5,1,1,21,2,0,1,0,2,-9,97,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1028.5569,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,2,3,0,0,4,1,1,525,0,0,0,0 -3173,3920,7122,7123,7117,7119,4,1,1,24,1,0,1,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,2,0,-5,0,0,1,0,29,3,4,3,1,2,2019,4,7,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,46.16,58.619999,5,2,3,0,0,4,1,1,913,-43366.082,0,0,804.4574 -3173,3920,7123,7122,-9,-9,7,1,0,29,1,0,1,0,3,-9,3,3,0,1,4,0,0,0,2,0,-9,2,0,5,0,0,1,1,24,2,4,3,-9,-9,2019,4,4,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.465118,1,46.16,58.619999,49,58,7,2,3,1,0,4,1,1,913,-43366.082,0,0,804.4574 -3174,3921,7124,-9,-9,-9,1,1,0,35,2,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1068.915,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.328667,3,38.400002,32.860001,-9,-9,2,1,1,0,0,4,1,0,348,-18934.156,0,0,841.81604 -3174,3921,7125,-9,7124,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.7816,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,348,-18934.156,0,0,841.81604 -3175,3922,7126,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,0,3,8.2587528,8.0181046,0,3,0,0,0,-9,0,-941.22894,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,39,45,15,1,0,-9,0,14.575694,14.575694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,49,-9,-9,5,1,1,0,0,6,4,0,892,25715.424,0,0,1925.6193 -3176,3923,7127,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,2,7.9361234,8.0360365,0,3,0,0,0,-9,0,-944.93494,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,4,38,38,15,1,1,-9,0,7.6140642,7.6140642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.84,49.93,-9,-9,5,1,1,0,0,11,4,0,849,470977.81,0,0,1169.8311 -3177,3924,7128,7131,-9,-9,1,1,0,33,1,1,2,0,2,-9,2,1,0,0,5,8.3485374,8.4758968,0,2,0,-9,6,0,-1,34.132061,0,0,1,34,2,4,1,2,1,2019,1,2,9,1,44,42,15,1,0,1,0,11.035266,11.035266,0,0,0,0,0,0,0,0,1,1,0,7.5209274,0,0,0,48.77,60.16,50,57,5,1,1,0,0,4,4,1,571.75,39304.656,0,0,4790.4365 -3177,3924,7129,-9,7128,7131,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.51593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,571.75,39304.656,0,0,4790.4365 -3177,3924,7130,-9,7128,7131,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.3162,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,1,571.75,39304.656,0,0,4790.4365 -3177,3924,7131,7128,-9,-9,2,1,1,34,1,1,2,0,2,-9,1,1,0,0,4,8.5467548,8.7442141,0,2,0,-9,6,0,1,21.637505,0,0,0,33,2,5,1,-9,-9,2019,1,1,10,1,48,40,15,1,0,1,0,10.144803,10.144803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,48.77,60.16,5,1,1,0,0,4,4,1,571.75,39304.656,0,0,4790.4365 -3178,3925,7132,7133,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,8,0,-1,-73.133492,0,0,0,59,2,2,1,2,2,2019,1,2,3,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0210967,0,0,0,58.150002,52.91,55.849998,46.529999,6,1,1,0,0,10,2,1,700.5,324297.63,0,0,1038.0193 -3178,3925,7133,7132,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,2,6.9642644,7.2476315,0,1,0,-9,8,0,1,76.478134,0,0,0,58,2,4,1,-9,-9,2019,1,1,2,0,20,25,15,1,0,1,0,7.3523221,7.3523221,0,0,0,0,0,0,0,0,0,0,0,.74017704,0,0,0,55.849998,46.529999,58.150002,52.91,5,1,1,0,0,10,2,1,700.5,324297.63,0,0,1038.0193 -3179,3926,7134,7135,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,21,-9,1,1.8426478,-9,0,0,68,3,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.169998,49.389999,41.09,20.73,6,1,1,0,0,6,2,0,442.5,106443.19,0,0,2488.5806 -3179,3926,7135,7134,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,1,1,0,6.1691456,6.2205267,1,0,-9,21,-9,-1,-73.049217,-9,0,0,69,3,3,3,2,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,31.996754,8.5537643,0,0,0,0,1,1,0,6.51893,6.130074,0,0,41.09,20.73,51.169998,49.389999,4,1,1,0,0,6,2,0,442.5,106443.19,0,0,2488.5806 -3180,3927,7136,7137,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,6.9215946,6.9627337,0,1,0,-9,37,0,0,.25526139,0,0,0,59,1,3,1,3,2,2019,1,2,7,0,15,15,15,1,0,1,0,6.5144777,6.5144777,0,0,0,0,0,0,0,0,0,0,0,9.5145035,0,0,0,54.200001,57.490002,51,49,6,4,2,0,0,7,5,1,613,440901.63,0,0,10401.913 -3180,3927,7137,7136,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,3,9.0256491,9.2777147,0,1,0,-9,8,0,0,80.515686,0,0,0,59,2,4,1,-9,-9,2019,1,1,10,1,30,24,15,1,0,1,0,38.169933,38.169933,0,0,0,0,0,0,0,0,0,0,0,4.066771,0,0,0,51,49,54.200001,57.490002,5,1,1,0,0,7,5,1,613,440901.63,0,0,10401.913 -3181,3928,7138,-9,-9,-9,2,1,0,64,3,0,1,0,3,-9,2,1,0,0,3,6.616138,6.9374104,0,4,0,0,0,-9,0,-853.31897,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,21,21,15,1,0,-9,0,4.5777521,4.5777521,0,0,0,0,0,0,0,2,1,1,0,4.0949321,0,1.4627488,3,54.369999,54.799999,-9,-9,6,1,1,0,0,9,2,1,299,307057.03,0,0,1450.8556 -3181,3929,7139,7141,-9,-9,4,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,9.0177965,8.998745,0,2,0,-9,3,0,16,73.559677,0,0,0,37,2,5,1,-9,-9,2019,1,1,9,0,45,71,15,1,0,1,0,20.634771,20.634771,0,0,0,0,0,0,0,0,1,1,0,4.4190726,0,0,0,54.200001,57.490002,48.77,60.16,6,1,1,0,0,9,5,1,347.66666,1219813.1,0,0,5267.6025 -3181,3929,7140,-9,7141,7139,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.8408,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,347.66666,1219813.1,0,0,5267.6025 -3181,3929,7141,7139,7138,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,0,5,8.7774849,8.4506922,0,2,0,-9,3,0,-16,43.023411,0,0,1,53,2,4,1,3,-9,2019,1,4,9,0,45,40,15,1,0,1,0,15.307199,15.307199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,54.200001,57.490002,6,1,1,0,0,9,5,1,347.66666,1219813.1,0,0,5267.6025 -3182,3930,7142,7143,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,0,4,8.3333101,8.2559586,0,1,0,-9,31,0,9,-8.2361097,0,0,0,54,2,5,1,1,-9,2019,1,2,7,0,20,20,15,1,0,1,0,23.548399,23.548399,0,0,0,0,0,0,0,0,0,0,0,3.6693039,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,6,4,1,1069,1755423.8,0,0,1520.998 -3182,3930,7143,7142,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,6.8146887,6.9117584,0,1,0,-9,31,0,0,73.474251,0,0,0,63,1,4,1,3,-9,2019,1,1,6,0,15,0,15,1,0,1,0,7.9536223,7.9536223,0,0,0,0,0,0,0,0,0,0,0,.29542443,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,6,4,1,1069,1755423.8,0,0,1520.998 -3183,3931,7144,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,8,3,1,1,1,0,6.6001873,6.3701797,3,0,0,0,-9,0,-941.93469,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,1,8.217123,0,0,0,27.265785,110.02457,0,1,1,0,0,6.598968,0,0,43.439999,20.91,-9,-9,5,1,1,0,0,12,2,0,187,352816.03,0,0,671.52905 -3184,3932,7145,7146,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,1,1,0,6.5804005,6.7792821,1,0,-9,63,0,0,-14.741923,0,0,0,84,3,2,3,-9,-9,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,8.6416245,0,7.493803,0,0,0,1,1,0,0,6.5055232,0,0,24.93,19.950001,43.029999,26.889999,4,1,1,0,0,9,2,1,265,49864.563,0,0,1436.4141 -3184,3932,7146,7145,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,2,0,3.9797213,3.8950508,1,0,-9,8,0,0,2.426338,0,0,0,84,2,1,3,-9,-9,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,19.512209,8.2567902,.93763191,0,0,120,1,1,0,4.7660012,3.9394112,127.73905,1,43.029999,26.889999,24.93,19.950001,4,1,1,0,0,9,2,1,265,49864.563,0,0,1436.4141 -3185,3933,7147,7148,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,50,0,-2,-19.187128,0,0,0,73,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,.32709455,0,75.795052,3,53.869999,18.77,57.16,56.150002,4,1,1,0,0,12,3,1,527,611663.75,0,0,2491.3745 -3185,3933,7148,7147,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.1803789,7.8927159,1,0,-9,50,0,2,-22.20101,0,0,0,71,2,2,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.963387,0,0,57.16,56.150002,53.869999,18.77,5,1,1,0,0,12,3,1,527,611663.75,0,0,2491.3745 -3186,3934,7149,7150,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,2,0,7.5515189,7.5981588,1,0,-9,10,0,1,70.573776,0,0,0,75,1,3,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.7143993,8.0893793,0,0,42.84,30.41,50,47,5,1,1,0,0,11,3,1,2918.5,1016134.9,0,0,1933.3557 -3186,3934,7150,7149,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,0,3,0,6.0008731,6.3845253,1,0,-9,10,0,-1,60.809578,0,0,0,76,1,2,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3408561,6.1185999,.068279415,2,50,47,42.84,30.41,5,1,1,0,0,11,3,1,2918.5,1016134.9,0,0,1933.3557 -3187,3935,7151,-9,-9,-9,1,1,0,42,3,0,0,0,1,-9,2,1,0,0,5,8.1762276,8.0297308,0,3,0,0,0,-9,0,-1035.0278,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,44,24,15,1,0,-9,0,9.0557041,9.0557041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,13,4,0,398,-41500.105,0,0,2220.1099 -3188,3936,7152,7153,-9,-9,2,1,0,60,1,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,39,0,-2,53.047035,0,0,0,62,3,5,1,3,3,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.27,52.669998,57,55,6,1,1,0,0,13,2,1,697,504909.81,0,0,356.28699 -3188,3936,7153,7152,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,0,5,6.8804216,7.0287738,0,1,0,-9,39,0,2,-17.504543,0,0,0,60,3,3,1,3,3,2019,1,2,6,0,70,60,15,1,0,1,0,1.4506353,1.4506353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,55,38.27,52.669998,7,1,1,0,0,13,2,1,697,504909.81,0,0,356.28699 -3189,3937,7154,-9,7155,-9,1,1,1,50,2,0,0,0,3,-9,2,1,0,0,4,7.8484378,7.9926858,0,3,0,0,0,-9,0,-1074.5673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,56,50,15,1,0,-9,1,6.8820705,6.8820705,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,56.380001,53.73,-9,-9,6,1,1,0,0,8,4,0,651,676301.75,0,0,2368.7146 -3189,3938,7155,-9,-9,-9,2,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1061.272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,8,1,0,334,-90428.844,0,0,1231.135 -3190,3939,7156,-9,7158,7157,4,1,0,17,2,0,1,1,2,0,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1251.8389,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.66142797,0,0,0,30.67,44.380001,-9,-9,4,1,1,0,0,12,4,1,1345.6666,261133.22,0,0,3307.989 -3190,3939,7157,7158,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,8.6274309,8.7855091,0,2,0,-9,8,0,2,-21.655365,0,0,0,49,1,4,1,2,2,2019,1,1,11,1,40,40,15,1,0,1,0,16.357746,16.357746,0,0,0,0,0,0,0,0,1,1,0,2.0661185,0,0,0,41.23,59.349998,57.16,56.150002,3,1,1,0,0,12,4,1,1345.6666,261133.22,0,0,3307.989 -3190,3939,7158,7157,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,8.0677814,8.1492691,0,2,0,-9,8,0,-2,31.453585,0,0,0,51,2,3,1,2,2,2019,1,2,6,0,37,36,15,1,0,1,0,8.2539902,8.2539902,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,41.23,59.349998,6,1,1,0,0,12,4,1,1345.6666,261133.22,0,0,3307.989 -3190,3940,7159,-9,7158,7157,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,4,7.8926115,7.8832688,0,3,0,0,0,-9,0,-1189.7747,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,35,37,15,1,0,-9,1,8.492321,8.492321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.16,65.32,-9,-9,3,1,1,0,0,12,4,1,668,177255.55,0,0,951.07526 -3191,3941,7160,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,0,3,6.75425,6.8790727,0,3,0,0,0,-9,0,-982.61133,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,20,15,15,1,0,-9,0,4.7511353,4.7511353,0,0,0,0,0,0,0,0,1,1,0,6.5402255,0,0,0,51.509998,43.950001,-9,-9,3,1,1,0,0,12,2,1,160,81266.68,0,0,168.47308 -3192,3942,7161,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,2,1,0,0,3,7.6206446,7.7666488,0,4,0,0,0,-9,0,-987.90094,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,38,43,15,1,0,-9,0,7.2768197,7.2768197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.98,55.139999,-9,-9,2,1,1,0,0,11,3,0,1123,-173133.36,0,0,1217.2848 -3192,3942,7162,-9,7161,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1067.1427,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,0,1123,-173133.36,0,0,1217.2848 -3193,3943,7163,-9,-9,-9,1,1,0,52,3,0,2,0,2,-9,2,1,0,1,3,8.4350758,8.1890182,0,4,0,0,0,-9,0,-878.6264,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,32,34,15,1,0,-9,0,12.442879,12.442879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.580002,47.360001,-9,-9,5,1,1,0,0,9,3,1,958.5,733204.88,0,0,2302.8115 -3193,3943,7164,-9,7163,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.8021,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,3,1,958.5,733204.88,0,0,2302.8115 -3193,3944,7165,-9,7163,-9,2,1,0,25,2,0,2,0,2,-9,5,1,0,0,4,8.2095003,8.3364868,0,3,0,0,0,-9,0,-1021.3488,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,40,15,1,0,-9,1,9.7746124,9.7746124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,57.099998,-9,-9,7,4,2,0,0,9,4,1,1046,-216051.86,0,0,2698.4089 -3193,3945,7166,-9,7163,-9,3,1,1,18,2,0,2,0,2,-9,7,2,0,0,5,7.6158109,7.3742957,0,3,0,0,0,-9,0,-1113.3496,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,4,2,0,0,9,4,1,491,254793.58,0,0,775.91364 -3194,3946,7167,7169,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,8.6954947,8.9128942,0,2,0,-9,7,0,0,37.332302,0,0,0,48,2,4,1,3,2,2019,1,1,9,0,50,42,15,1,0,1,0,13.834296,13.834296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,30.32,59.619999,6,1,1,0,0,10,5,1,530,525022.94,0,0,3890.8899 -3194,3946,7168,-9,7169,7167,4,1,1,17,2,0,1,0,2,1,2,3,0,0,5,6.6913295,6.8055215,0,2,0,0,0,-9,0,-989.4809,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,17,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.339996,49.419998,-9,-9,6,1,1,0,0,10,5,1,530,525022.94,0,0,3890.8899 -3194,3946,7169,7167,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,7.7820487,7.5802178,0,2,0,-9,7,0,0,84.586563,0,0,0,48,1,4,1,3,2,2019,1,2,3,0,35,42,15,1,0,1,0,9.5053778,9.5053778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.32,59.619999,57.16,56.150002,7,1,1,0,0,10,5,1,530,525022.94,0,0,3890.8899 -3194,3946,7170,-9,7169,7167,5,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.0043,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,5,1,530,525022.94,0,0,3890.8899 -3194,3947,7171,-9,7169,7167,3,1,0,18,2,0,1,0,2,-9,2,1,0,0,4,6.5670657,6.8791924,0,3,0,0,0,-9,0,-930.65082,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,30,0,15,1,0,-9,1,3.2406197,3.2406197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,10,2,1,83,0,0,0,736.96436 -3195,3948,7172,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1092.9661,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3321555,0,0,0,44,53.950001,-9,-9,6,1,1,0,0,10,1,1,150,115373.02,0,0,1610.0533 -3196,3949,7173,7174,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,0,4,7.9876475,8.0283756,0,1,0,-9,2,0,-3,-56.833248,0,1,0,27,1,4,2,1,1,2019,2,2,7,0,35,38,15,1,0,2,0,13.080523,13.080523,0,0,0,0,0,0,0,0,0,0,0,2.5053945,0,0,0,54.200001,57.490002,39.48,58.880001,4,1,1,0,0,4,4,0,357,39022.805,0,0,2346.032 -3196,3949,7174,7173,-9,-9,2,1,0,27,1,0,0,0,1,0,7,2,0,0,4,0,7.5427146,7.7085409,1,0,-9,2,0,3,10.911556,-9,1,1,24,1,4,1,-9,-9,2019,3,1,17,5,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3394551,0,0,0,39.48,58.880001,54.200001,57.490002,4,1,1,0,0,4,4,0,357,39022.805,0,0,2346.032 -3197,3950,7175,-9,-9,-9,1,1,0,54,2,0,1,0,2,-9,2,1,0,0,2,7.2674584,7.1316638,0,4,0,0,0,-9,0,-928.7182,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,21,21,15,1,0,-9,0,8.9664736,8.9664736,0,0,0,0,0,0,0,2,1,1,0,0,0,1.7487288,3,38.599998,40.529999,-9,-9,4,1,1,0,1,12,2,0,2042,118149.64,0,0,2153.5588 -3198,3951,7176,-9,-9,-9,1,1,0,54,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1063.1877,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.59,34.57,-9,-9,1,1,1,1,0,6,1,0,247,0,0,0,1513.3833 -3199,3952,7177,7178,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,6.7040009,7.5447788,7.6489224,1,0,-9,39,0,-2,73.648033,0,0,0,63,3,3,1,3,3,2019,1,1,13,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4127159,0,0,42.360001,46.68,52,48,5,1,1,0,0,13,5,1,986.5,278408.06,0,0,1949.3002 -3199,3952,7178,7177,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,3,8.1209946,8.2883282,7.0444098,1,0,-9,7,0,2,-53.985065,-9,0,0,61,2,4,1,-9,-9,2019,1,2,10,1,42,0,15,1,0,1,0,10.803181,10.803181,0,0,0,0,0,0,0,0,0,0,0,1.4640121,7.1609445,0,0,52,48,42.360001,46.68,5,1,1,0,0,13,5,1,986.5,278408.06,0,0,1949.3002 -3200,3953,7179,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,2,0,2.4961095,2.4592292,3,0,0,0,-9,0,-1106.5566,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,26.411507,0,0,0,0,1,1,0,0,2.7443571,0,0,67.709999,13.49,-9,-9,7,1,1,0,0,9,2,1,122,321783.78,0,0,2413.7986 -3201,3954,7180,7181,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,26,0,-3,-20.552237,0,0,0,54,1,4,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9.8443642,0,3.7687492,3,54.790001,55.860001,48.279999,60.18,7,1,1,0,0,8,4,1,1041.5,532709.5,0,0,10050.76 -3201,3954,7181,7180,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.1046629,8.5724163,0,1,0,-9,26,0,3,-43.738609,0,0,0,51,2,4,3,3,3,2019,2,2,9,0,24,50,15,1,0,3,0,32.515453,32.515453,0,0,0,0,0,0,0,0,0,0,0,5.4360409,0,0,0,48.279999,60.18,54.790001,55.860001,6,1,1,0,0,8,4,1,1041.5,532709.5,0,0,10050.76 -3202,3955,7182,7183,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.6021395,8.5821753,0,1,0,-9,3,0,-1,-49.132809,0,1,1,27,2,5,1,-9,-9,2019,1,2,6,0,46,52,15,1,0,1,0,12.124651,12.124651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,54.099998,59.110001,5,1,1,0,0,11,4,1,281,-21125.992,0,0,2480.2083 -3202,3955,7183,7182,-9,-9,2,1,1,27,1,0,0,0,2,-9,1,1,0,0,5,7.8323288,7.7731442,0,1,0,-9,3,0,1,128.18994,0,1,0,26,1,4,1,-9,-9,2019,1,1,6,0,40,55,15,1,0,1,0,7.273972,7.273972,0,0,0,0,0,0,0,0,0,0,0,.13604029,0,0,0,54.099998,59.110001,54.790001,55.860001,7,1,1,0,0,11,4,1,281,-21125.992,0,0,2480.2083 -3203,3956,7184,7186,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,0,4,8.0575466,8.2625198,0,2,0,-9,6,0,11,67.298149,0,0,0,27,2,3,1,-9,-9,2019,1,1,13,3,0,44,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1588559,3,42.950001,61.240002,57.330002,53.459999,5,1,1,0,0,12,4,0,988,129124.4,0,0,2988.6343 -3203,3956,7185,-9,7186,7184,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.05621,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,0,988,129124.4,0,0,2988.6343 -3203,3956,7186,7184,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,0,3,7.5240927,7.1733866,0,2,0,-9,6,0,-11,-120.69501,0,1,1,38,2,4,1,-9,-9,2019,1,2,7,0,30,0,15,1,0,1,0,6.8751221,6.8751221,0,0,0,0,0,0,0,2,1,1,0,.60851669,0,3.2518058,3,57.330002,53.459999,42.950001,61.240002,5,1,1,0,0,12,4,0,988,129124.4,0,0,2988.6343 -3204,3957,7187,7189,-9,-9,2,1,1,43,1,1,2,0,2,-9,2,1,0,0,4,8.4850502,8.6692743,0,2,0,-9,3,0,2,-36.445164,0,0,0,41,1,3,1,1,1,2019,1,1,4,0,45,0,15,1,0,1,0,13.435301,13.435301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.959999,49.93,7,3,4,0,0,8,5,0,1530,357423,0,0,4374.4243 -3204,3957,7188,-9,7189,7187,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.95197,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,5,0,1530,357423,0,0,4374.4243 -3204,3957,7189,7187,-9,-9,1,1,0,41,1,1,2,0,1,-9,2,1,0,0,3,8.6221018,8.4114428,0,2,0,-9,3,0,-2,-5.4372807,0,0,1,43,2,4,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,16.260544,16.260544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,57.16,56.150002,6,1,1,0,0,8,5,0,1530,357423,0,0,4374.4243 -3204,3957,7190,-9,7189,7187,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1154.2871,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,5,0,1530,357423,0,0,4374.4243 -3205,3958,7191,-9,-9,-9,1,1,1,97,3,0,0,0,3,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-916.95764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.6979162,0,0,0,60.869999,42.099998,-9,-9,6,1,1,0,0,7,1,0,724,94739.227,0,0,1736.4634 -3206,3959,7192,7196,-9,-9,4,1,1,35,1,0,3,0,2,-9,2,1,0,0,3,7.2259746,6.9047771,0,2,0,-9,6,0,5,27.806787,0,0,0,30,2,4,1,-9,-9,2019,1,1,4,0,19,24,15,1,0,1,0,7.7377625,7.7377625,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.860001,40.43,58.150002,52.91,7,1,1,0,0,4,2,0,589.40002,54270.906,0,0,2074.7627 -3206,3959,7193,-9,7196,7192,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.4935,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,2,0,589.40002,54270.906,0,0,2074.7627 -3206,3959,7194,-9,7196,7192,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1107.089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,2,0,589.40002,54270.906,0,0,2074.7627 -3206,3959,7195,-9,7196,7192,2,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1022.098,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,4,2,0,589.40002,54270.906,0,0,2074.7627 -3206,3959,7196,7192,-9,-9,1,1,0,30,1,0,3,0,2,-9,2,1,0,0,4,6.0349727,6.2331023,0,2,0,-9,6,0,-5,25.27347,0,0,1,35,2,3,1,2,2,2019,1,4,9,0,6,0,15,1,0,1,0,7.5628343,7.5628343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,38.860001,40.43,6,1,1,0,0,4,2,0,589.40002,54270.906,0,0,2074.7627 -3207,3960,7197,7198,-9,-9,2,1,1,70,1,0,0,0,2,-9,2,1,0,0,3,5.3186436,7.7728357,7.4364567,1,0,-9,47,0,3,40.040966,0,0,0,67,2,2,3,3,2,2019,2,1,17,3,5,0,15,1,0,4,0,5.1113939,5.1113939,1,0,0,0,0,0,0,0,1,1,0,5.3450975,7.2528305,0,0,58.200001,43.48,57.98,23.790001,5,1,1,0,0,4,3,1,862,461112.25,0,0,2884.7559 -3207,3960,7198,7197,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,6.1744733,6.5828781,1,0,-9,47,0,-3,-8.6594782,0,0,0,70,2,3,1,3,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3013849,6.2665601,0,0,57.98,23.790001,58.200001,43.48,5,1,1,0,0,4,3,1,862,461112.25,0,0,2884.7559 -3208,3961,7199,7200,-9,-9,2,1,1,22,1,0,0,0,2,-9,2,1,0,0,5,8.1502647,8.1392078,0,1,0,-9,3,0,0,-103.5319,0,1,0,22,2,5,1,-9,-9,2019,1,1,7,0,47,42,15,1,0,1,0,10.419554,10.419554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,59.040001,54.119999,6,1,1,0,0,4,4,1,2002,20297.336,0,0,1947.5334 -3208,3961,7200,7199,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,5,8.038537,7.750391,0,1,0,-9,3,0,0,120.06907,0,1,1,22,2,5,1,2,2,2019,1,2,8,0,35,35,15,1,0,1,0,8.1164188,8.1164188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.040001,54.119999,57.060001,57.759998,6,1,1,0,0,4,4,1,2002,20297.336,0,0,1947.5334 -3209,3962,7201,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,7,2,0,0,4,0,7.1542444,7.1585412,3,0,0,0,-9,0,-1085.4933,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,39,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3649492,0,0,0,21.34,64.900002,-9,-9,5,1,1,0,0,4,2,0,961,-9565.0762,0,0,1342.8951 -3210,3963,7202,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,5,9.5276556,9.5198011,0,3,0,0,0,-9,0,-1010.7525,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,50,15,1,0,-9,0,31.031906,31.031906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.200001,54.529999,-9,-9,7,1,1,0,0,2,5,1,400,-171131.19,0,0,4082.469 -3211,3964,7203,-9,-9,7204,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1084.2295,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,11,2,1,936.5,23860.209,0,0,2644.9988 -3211,3964,7204,-9,-9,-9,1,1,1,46,2,0,1,0,2,-9,2,1,0,0,3,7.1725702,7.3364024,0,4,0,0,0,-9,0,-1028.9567,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,40,15,1,0,-9,0,4.744493,4.744493,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.400002,42,-9,-9,5,1,1,0,0,11,2,1,936.5,23860.209,0,0,2644.9988 -3211,3965,7205,-9,-9,7204,2,1,0,18,2,0,1,0,2,-9,7,2,0,0,4,7.360487,7.288209,0,3,0,0,0,-9,0,-1027.5116,1,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.53480828,0,0,0,51.490002,57.57,-9,-9,7,1,1,0,0,11,3,1,332,-156092.13,0,0,41.300941 -3212,3966,7206,-9,-9,-9,1,1,0,21,2,0,0,0,2,0,7,2,0,0,5,0,6.0448999,5.9369035,3,0,0,0,-9,0,-1035.8949,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7003913,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,5,2,0,841,25.364944,0,0,49.813766 -3213,3967,7207,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,5,6.638063,6.9011421,0,3,0,-9,0,-9,0,-984.12103,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,24,0,15,1,0,-9,1,4.6450276,4.6450276,0,0,0,0,0,0,0,0,0,0,0,.11462136,0,0,0,43.32,63.939999,-9,-9,6,1,1,0,0,9,2,1,331,-12266.056,0,0,775.70392 -3214,3968,7208,7209,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,5.3334785,5.6150808,1,0,-9,49,0,0,-105.53388,0,0,0,80,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8621221,5.6457624,0,0,60.130001,49.27,61.189999,39.41,7,1,1,0,0,9,3,1,693.5,1284769.1,0,0,2111.542 -3214,3968,7209,7208,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,0,3,0,8.0416117,8.1704655,1,0,-9,49,0,9,-135.17941,0,0,0,71,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7172432,7.8756065,0,0,61.189999,39.41,60.130001,49.27,6,1,1,0,0,9,3,1,693.5,1284769.1,0,0,2111.542 -3215,3969,7210,7211,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,9.2001905,9.286418,0,1,0,-9,18,0,3,-7.5582647,0,0,0,48,3,3,3,1,1,2019,2,2,6,0,48,50,15,1,0,3,0,18.554077,18.554077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.09,32.73,39.5,56.189999,4,4,2,0,0,9,5,0,384,1293168.9,0,0,2973.2734 -3215,3969,7211,7210,-9,-9,2,1,1,48,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,9,0,-3,-181.217,0,0,0,51,1,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,56.189999,58.09,32.73,4,4,2,1,1,9,5,0,384,1293168.9,0,0,2973.2734 -3216,3970,7212,7213,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,8.6211777,8.3385525,0,1,0,-9,7,0,-3,-50.077065,0,0,0,44,2,3,1,2,2,2019,1,1,7,0,39,39,15,1,0,1,0,16.27244,16.27244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,28.52,55.040001,6,1,1,0,0,4,5,1,474,758062.13,0,0,3474.3958 -3216,3970,7213,7212,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.4519119,8.6924839,0,1,0,-9,7,0,3,-17.557041,0,0,1,41,2,3,1,-9,-9,2019,1,2,12,0,37,49,15,1,0,1,0,14.317165,14.317165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,55.040001,55.959999,49.93,7,1,1,0,0,4,5,1,474,758062.13,0,0,3474.3958 -3217,3971,7214,-9,7215,7216,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.9065,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,5,1,481.75,298843.34,0,0,4094.6719 -3217,3971,7215,7216,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,2,8.8692083,8.7751532,0,2,0,-9,15,0,-1,-84.473106,0,0,1,39,2,3,1,3,-9,2019,1,1,9,2,40,38,15,1,0,1,0,16.148262,16.148262,0,0,0,0,0,0,0,0,1,1,0,3.2862637,0,0,0,53.77,47.240002,38.509998,59.43,5,1,1,0,0,13,5,1,481.75,298843.34,0,0,4094.6719 -3217,3971,7216,7215,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,0,3,8.8141375,8.6588364,0,2,0,-9,15,0,1,50.904057,0,0,0,38,1,2,1,2,-9,2019,1,2,14,3,42,45,15,1,0,1,0,16.735058,16.735058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,53.77,47.240002,5,1,1,0,0,13,5,1,481.75,298843.34,0,0,4094.6719 -3217,3971,7217,-9,7215,7216,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.38232,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,5,1,481.75,298843.34,0,0,4094.6719 -3218,3972,7218,-9,7220,7221,5,1,0,16,2,0,5,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.5778,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,3,4,0,0,8,2,0,1883.75,48432.809,0,0,3489.7627 -3218,3972,7219,-9,7220,7221,8,1,1,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.62793,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,1883.75,48432.809,0,0,3489.7627 -3218,3972,7220,7221,-9,-9,1,1,0,43,1,0,5,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,9,0,-5,2.8857405,0,0,1,48,3,5,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,57,62.389999,56.709999,7,3,4,1,0,8,2,0,1883.75,48432.809,0,0,3489.7627 -3218,3972,7221,7220,-9,-9,2,1,1,48,1,0,5,0,3,-9,2,1,0,0,5,7.2784414,7.2052279,0,2,0,-9,9,0,5,-72.185768,0,0,0,43,2,5,3,2,2,2019,2,1,6,0,25,25,15,1,0,3,0,8.9358807,8.9358807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,52,57,7,3,4,0,1,8,2,0,1883.75,48432.809,0,0,3489.7627 -3218,3973,7222,-9,7220,7221,3,1,0,20,2,0,5,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1085.7211,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,3,4,0,0,8,1,0,350,-57702.059,0,0,0 -3218,3974,7223,-9,7220,7221,4,1,1,18,2,0,5,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-954.03436,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,3,4,0,0,8,2,0,283,0,0,0,0 -3219,3975,7224,-9,7227,7225,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-872.7146,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,0,1135.8,-10150.569,0,0,2637.7744 -3219,3975,7225,7227,-9,-9,2,1,1,30,1,0,3,0,2,-9,2,1,0,0,4,8.0009203,8.0449171,0,2,0,-9,6,0,3,-14.680414,0,0,0,27,2,4,1,-9,-9,2019,1,1,6,0,37,43,15,1,0,1,0,8.4168119,8.4168119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,13,3,0,1135.8,-10150.569,0,0,2637.7744 -3219,3975,7226,-9,7227,7225,4,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.4813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,0,1135.8,-10150.569,0,0,2637.7744 -3219,3975,7227,7225,-9,-9,1,1,0,27,1,0,3,0,2,-9,2,1,0,0,4,7.4675441,7.4004564,0,2,0,-9,6,0,-3,-162.62903,0,1,1,30,2,4,1,2,3,2019,1,2,19,7,20,0,15,1,1,1,0,8.3778696,8.3778696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,5,1,1,0,0,13,3,0,1135.8,-10150.569,0,0,2637.7744 -3219,3975,7228,-9,7227,7225,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.84888,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,0,1135.8,-10150.569,0,0,2637.7744 -3220,3976,7229,7230,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,1,4,8.4274263,8.5127392,7.0395145,1,0,-9,7,0,6,9.5185328,0,0,0,38,2,1,3,-9,-9,2019,2,1,15,3,52,0,15,1,0,3,0,11.25047,11.25047,0,0,0,0,0,0,0,71.5,1,1,0,7.0691137,0,64.255341,2,23.950001,64.599998,45.700001,11.82,5,1,1,0,0,12,4,0,799.5,765819.63,0,0,3888.7275 -3220,3976,7230,7229,-9,-9,1,1,0,38,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,-6,-10.984461,0,0,1,44,2,4,1,2,2,2019,3,2,16,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.700001,11.82,23.950001,64.599998,6,1,1,0,0,12,4,0,799.5,765819.63,0,0,3888.7275 -3221,3977,7231,7232,-9,-9,2,1,1,55,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,28,0,1,35.682472,0,0,0,54,2,2,1,3,3,2019,3,1,10,0,0,89,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,46.48,28.68,5,1,1,1,0,2,3,0,1984.5,292126.44,0,0,1093.0198 -3221,3977,7232,7231,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,7.9439549,8.039957,0,1,0,-9,28,0,-1,36.22543,0,0,0,55,2,4,3,3,3,2019,2,2,10,1,22,39,15,1,0,3,0,13.364447,13.364447,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.48,28.68,57.73,54.529999,4,1,1,0,0,2,3,0,1984.5,292126.44,0,0,1093.0198 -3221,3978,7233,-9,7234,-9,4,1,0,9,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-900.85254,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,2,2,0,1391,-76092.188,0,0,114.22217 -3221,3978,7234,-9,7232,7231,3,1,0,34,2,0,0,0,2,-9,2,1,0,0,4,6.3133759,6.1913085,0,3,0,-9,0,-9,0,-884.66699,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,45,0,15,1,0,-9,1,1.4155396,1.4155396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,2,2,0,1391,-76092.188,0,0,114.22217 -3222,3979,7235,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,4,7.6718507,7.3959341,0,3,0,0,0,-9,0,-997.93988,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,35,30,15,1,0,-9,0,6.4186864,6.4186864,0,0,0,0,0,0,0,7,0,0,0,0,0,2.7900343,3,58.150002,52.91,-9,-9,6,1,1,0,0,12,3,0,401,66532.086,0,0,1126.4823 -3222,3980,7236,-9,7235,-9,2,1,1,21,2,0,0,0,3,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1030.4774,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,45,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.779999,-9,-9,6,1,1,0,0,12,1,0,86,0,0,0,157.65439 -3223,3981,7237,7238,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,6.2949805,6.2797103,1,0,-9,9,0,-2,110.59238,0,0,0,76,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6355906,6.6220813,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,6,2,1,294,623151.75,0,0,540.27637 -3223,3981,7238,7237,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,5.3160787,5.693603,1,0,-9,9,0,2,-85.47049,0,0,0,74,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8709564,5.3101144,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,6,2,1,294,623151.75,0,0,540.27637 -3224,3982,7239,-9,7242,7241,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.06885,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,711.5,317332.13,0,0,3082.2524 -3224,3982,7240,-9,7242,7241,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.567,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,4,4,1,711.5,317332.13,0,0,3082.2524 -3224,3982,7241,7242,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.365489,8.4599552,0,2,0,-9,7,0,5,86.570976,0,0,0,35,1,2,1,2,2,2019,1,1,8,0,41,42,15,1,0,1,0,11.484659,11.484659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,55.599998,37.07,6,1,1,0,0,4,4,1,711.5,317332.13,0,0,3082.2524 -3224,3982,7242,7241,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,2,8.1340132,8.2838402,0,2,0,-9,7,0,-5,-27.943789,0,0,1,40,2,3,1,2,3,2019,1,2,12,0,34,32,15,1,0,1,0,12.585037,12.585037,0,0,0,0,0,0,0,2,1,1,0,0,0,5.3678837,3,55.599998,37.07,57.330002,53.459999,6,1,1,0,0,4,4,1,711.5,317332.13,0,0,3082.2524 -3225,3983,7243,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,2,0,6.0587873,6.1408811,3,0,0,0,-9,0,-980.47028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,3.8268073,0,0,0,6.0456977,29.162718,0,1,1,0,0,6.3402905,0,0,40.240002,23.690001,-9,-9,6,1,1,0,0,8,2,1,58,-159311.39,0,0,611.48248 -3226,3984,7244,7246,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,4,7.7820201,8.0378456,0,2,0,-9,21,0,0,5.6844072,0,0,0,46,1,4,1,2,2,2019,1,2,12,2,19,19,15,1,0,1,0,14.511065,14.511065,0,0,0,0,0,0,0,0,1,1,0,1.7528498,0,0,0,55.189999,54.259998,55.759998,52.639999,6,1,1,0,0,10,4,1,1264.25,531295.69,0,0,3334.0601 -3226,3984,7245,-9,7244,7246,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1093.8778,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,10,4,1,1264.25,531295.69,0,0,3334.0601 -3226,3984,7246,7244,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,8.4636564,8.5395269,0,2,0,-9,21,0,0,85.427284,0,0,0,46,1,4,1,2,2,2019,1,1,8,0,43,39,15,1,0,1,0,15.194767,15.194767,0,0,0,0,0,0,0,0,1,1,0,2.5940945,0,0,0,55.759998,52.639999,55.189999,54.259998,6,1,1,0,0,10,4,1,1264.25,531295.69,0,0,3334.0601 -3226,3984,7247,-9,7244,7246,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.7423,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,1264.25,531295.69,0,0,3334.0601 -3227,3985,7248,-9,7250,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1029.9448,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,10,1,0,612.33331,-96910.656,0,0,1745.7357 -3227,3985,7249,-9,7250,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1067.156,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,10,1,0,612.33331,-96910.656,0,0,1745.7357 -3227,3985,7250,-9,-9,-9,1,1,0,37,2,0,2,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-977.5097,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,29,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15496065,0,0,0,20.969999,24.530001,-9,-9,1,3,4,0,1,10,1,0,612.33331,-96910.656,0,0,1745.7357 -3228,3986,7251,7252,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,5,0,7.3868499,7.2075262,1,0,-9,39,0,-21,-88.144432,0,0,0,92,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0275822,7.3937917,0,0,57.060001,57.759998,65.959999,42.66,7,1,1,0,0,7,4,1,839,1757394.4,0,0,4042.4829 -3228,3986,7252,7251,-9,-9,2,1,1,92,1,0,0,0,1,-9,4,3,0,0,5,0,8.2208109,8.1063128,1,0,-9,39,0,21,-68.969223,0,0,0,71,1,5,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2663603,7.8589401,0,0,65.959999,42.66,57.060001,57.759998,7,1,1,0,0,7,4,1,839,1757394.4,0,0,4042.4829 -3229,3987,7253,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,4,8.9388371,9.1960831,0,3,0,0,0,-9,0,-990.02808,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,36,37,15,1,0,-9,0,29.925522,29.925522,0,0,0,0,0,0,0,0,0,0,0,4.136538,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,8,5,0,143,-176550.61,0,0,1476.5997 -3230,3988,7254,7255,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,5,8.9922848,8.7216396,0,1,0,-9,6,0,0,94.191795,0,0,0,57,1,3,1,2,1,2019,1,1,12,3,42,35,15,1,0,1,0,22.360788,22.360788,0,0,0,0,0,0,0,0,0,0,0,7.879427,0,0,0,43.32,63.939999,34.32,51.709999,3,1,1,0,0,9,5,0,493.5,1109543.9,0,0,3753.8394 -3230,3988,7255,7254,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,3,7.4386592,7.2477713,0,1,0,-9,6,0,0,-87.965027,0,0,0,57,1,5,1,-9,3,2019,1,2,28,12,22,21,15,1,1,1,0,8.7357931,8.7357931,0,0,0,0,0,0,0,0,0,0,0,4.0570707,0,0,0,34.32,51.709999,43.32,63.939999,2,1,1,0,0,9,5,0,493.5,1109543.9,0,0,3753.8394 -3231,3989,7256,7258,-9,-9,3,1,1,34,1,1,2,0,1,0,7,2,0,1,2,0,0,0,2,0,-9,5,0,2,47.059525,-9,0,0,32,1,2,1,-9,-9,2019,3,1,21,6,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.860001,56.639999,18.040001,62.43,5,1,1,0,0,7,2,0,593.25,741223.5,0,0,1867.0806 -3231,3989,7257,-9,7258,7256,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.16809,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,2,0,593.25,741223.5,0,0,1867.0806 -3231,3989,7258,7256,-9,-9,1,1,0,32,1,1,2,0,1,-9,2,1,0,0,2,6.4573298,6.4008822,0,2,0,-9,5,0,-2,-54.034508,0,0,1,34,1,2,2,2,1,2019,2,3,21,8,22,12,15,1,1,2,0,3.5867174,3.5867174,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,18.040001,62.43,24.860001,56.639999,6,1,1,0,0,7,2,0,593.25,741223.5,0,0,1867.0806 -3231,3989,7259,-9,7258,7256,2,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.8016,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,0,593.25,741223.5,0,0,1867.0806 -3232,3990,7260,7261,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,6.4179239,8.0483189,7.8748169,1,0,-9,44,0,-3,-56.582134,0,0,0,70,2,3,3,1,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.815094,8.2101002,0,0,54.939999,53.18,59.880001,48.200001,6,1,1,0,0,12,4,1,459,1658306,0,0,3948.9932 -3232,3990,7261,7260,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.679657,6.6224532,1,0,-9,44,0,3,-98.826355,0,0,0,67,1,3,3,1,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1655893,6.1433625,10.021563,3,59.880001,48.200001,54.939999,53.18,6,1,1,0,0,12,4,1,459,1658306,0,0,3948.9932 -3233,3991,7262,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,3,3,0,1,3,0,5.011487,5.6662288,3,0,0,0,-9,0,-955.71338,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3773274,0,0,27.969999,47.860001,-9,-9,2,1,1,1,1,12,2,0,84,180693.58,0,0,654.8739 -3234,3992,7263,7264,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,-3,95.418617,0,0,0,77,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6921153,0,0,0,48.759998,53.240002,47.52,57.75,7,1,1,0,0,5,2,1,1153,470948.91,0,0,1135.7732 -3234,3992,7264,7263,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,4,0,5.9610233,6.6296329,1,0,-9,54,0,3,81.763214,0,0,0,74,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.382756,6.3251333,0,0,47.52,57.75,48.759998,53.240002,6,1,1,0,0,5,2,1,1153,470948.91,0,0,1135.7732 -3235,3993,7265,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,0,5,8.21665,7.919745,0,3,0,0,0,-9,0,-937.68616,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,44,0,15,1,0,-9,0,9.5856009,9.5856009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.150002,52.32,-9,-9,6,1,1,0,0,12,4,0,832,200451.92,0,0,598.70313 -3236,3994,7266,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,4,0,6.7660975,6.7383018,3,0,0,0,-9,0,-992.81848,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0215492,6.8092022,0,0,72.279999,27.290001,-9,-9,7,1,1,0,0,10,2,1,232,259973.33,0,0,1352.1759 -3237,3995,7267,7268,-9,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,0,3,9.5288782,9.7422056,0,1,0,-9,32,0,-1,14.680215,0,0,0,55,1,2,3,2,2,2019,2,2,7,0,36,36,15,1,0,3,0,42.649155,42.649155,0,0,0,0,0,0,0,2,0,0,0,7.2543793,0,0,3,49.290001,54.59,26.84,55.700001,5,1,1,0,0,9,5,1,387,3803087,0,0,6490.6641 -3237,3995,7268,7267,-9,-9,2,1,1,55,1,0,0,0,1,-9,3,3,0,0,2,0,0,0,1,0,-9,32,0,1,66.727585,0,0,0,54,1,3,1,2,2,2019,3,1,26,12,0,52,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2138367,0,0,0,26.84,55.700001,49.290001,54.59,3,1,1,1,0,9,5,1,387,3803087,0,0,6490.6641 -3237,3996,7269,-9,7267,7268,3,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,6.7993841,6.6446471,3,0,0,0,-9,0,-1041.9365,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4865713,0,0,0,26.690001,60.830002,-9,-9,4,1,1,0,0,9,2,1,1020,1079.3129,0,0,1569.8982 -3238,3997,7270,7271,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-6,-27.468555,0,0,0,80,3,3,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.80585587,0,0,3,45.57,45.470001,55.610001,50.299999,4,1,1,0,0,12,2,1,2058,257156.83,0,0,1895.6375 -3238,3997,7271,7270,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,3,0,7.0743008,7.1302652,1,0,-9,6,0,6,16.721802,0,0,0,74,2,2,3,1,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3973966,7.324388,0,0,55.610001,50.299999,45.57,45.470001,5,1,1,0,0,12,2,1,2058,257156.83,0,0,1895.6375 -3239,3998,7272,7273,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,2,7.1343408,7.1569848,0,1,0,-9,15,0,-1,242.14316,0,0,0,54,3,4,1,2,2,2019,1,2,16,5,10,25,15,1,1,1,0,14.841921,14.841921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.349998,32.049999,57.16,56.150002,5,1,1,0,0,7,4,1,350.5,117428.32,0,0,1770.9004 -3239,3998,7273,7272,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,4,8.3285809,8.3367262,0,1,0,-9,17,0,1,38.94371,0,0,0,53,3,2,1,-9,-9,2019,1,1,13,1,39,39,15,1,0,1,0,10.456335,10.456335,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.74523,2,57.16,56.150002,51.349998,32.049999,6,1,1,0,0,7,4,1,350.5,117428.32,0,0,1770.9004 -3240,3999,7274,-9,7276,7278,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.67719,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,8,3,1,718,75662.766,0,0,2326.7908 -3240,3999,7275,-9,7276,7278,5,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.36334,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,3,1,718,75662.766,0,0,2326.7908 -3240,3999,7276,7278,-9,-9,2,1,0,38,1,1,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,-7,-13.938263,0,0,1,45,1,4,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,59.080002,40.639999,55.630001,4,2,3,0,1,8,3,1,718,75662.766,0,0,2326.7908 -3240,3999,7277,-9,7276,7278,4,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.9932,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,3,1,718,75662.766,0,0,2326.7908 -3240,3999,7278,7276,-9,-9,1,1,1,45,1,1,4,0,1,-9,2,1,0,0,4,8.7875328,8.8473444,0,2,0,-9,11,0,7,-25.570864,0,0,0,38,2,4,3,2,2,2019,2,2,9,0,48,40,15,1,0,3,0,16.096266,16.096266,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.639999,55.630001,44.59,59.080002,4,2,3,0,1,8,3,1,718,75662.766,0,0,2326.7908 -3241,4000,7279,7281,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,9.2431145,8.8739424,0,1,0,-9,22,0,4,-43.855568,0,0,0,42,2,3,3,1,1,2019,2,1,6,0,40,45,15,1,0,3,0,31.875616,31.875616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,40.639999,52.959999,6,1,1,0,0,9,5,1,728.66669,335095.44,0,0,4783.7432 -3241,4000,7280,-9,7281,7279,4,1,0,17,2,0,0,0,3,-9,2,3,0,0,4,5.9764099,5.9908094,0,1,0,0,0,-9,0,-986.59357,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,8,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7416401,0,0,0,62.490002,55.09,-9,-9,5,1,1,0,0,9,5,1,728.66669,335095.44,0,0,4783.7432 -3241,4000,7281,7279,-9,-9,1,1,0,42,1,0,0,0,2,-9,6,3,0,0,3,8.0873899,7.9774203,0,1,0,-9,22,0,-4,-81.601845,0,0,1,46,1,4,1,2,3,2019,3,2,7,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.639999,52.959999,62.490002,55.09,7,1,1,0,0,9,5,1,728.66669,335095.44,0,0,4783.7432 -3241,4001,7282,-9,7281,7279,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.5492883,7.656795,0,3,0,0,0,-9,0,-968.23138,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,40,40,15,1,1,-9,1,7.3374271,7.3374271,0,0,0,0,0,0,0,0,0,0,0,2.6503162,0,0,0,34.23,49.220001,-9,-9,5,1,1,0,0,9,3,1,586,169556.75,0,0,386.39819 -3242,4002,7283,-9,7284,-9,1,1,1,60,2,0,0,0,1,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1161.3754,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.23618,3,36.919998,38.299999,-9,-9,1,1,1,0,1,11,1,1,833,547010.5,0,0,0 -3242,4003,7284,-9,-9,-9,2,1,0,83,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1086.8248,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,21.540001,-9,-9,1,1,1,0,1,11,1,1,620,-186100.45,0,0,933.94897 -3243,4004,7285,-9,7286,7287,3,1,1,17,2,0,1,1,2,-9,7,2,0,0,5,3.2632003,3.0724452,0,2,0,0,0,-9,0,-896.99622,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,13,4,1,3141.6667,1176764.3,0,0,2799.5122 -3243,4004,7286,7287,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,0,3,7.1661015,7.3055878,0,2,0,-9,19,0,4,41.788876,0,0,0,53,1,4,1,2,3,2019,1,1,9,0,15,14,15,1,0,1,0,10.04178,10.04178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,40.23,58.150002,52.91,6,1,1,0,0,13,4,1,3141.6667,1176764.3,0,0,2799.5122 -3243,4004,7287,7286,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,8.8715181,8.7583857,0,2,0,-9,22,0,-4,50.78101,0,0,0,57,2,3,1,2,2,2019,1,2,9,0,45,42,15,1,0,1,0,18.415598,18.415598,0,0,0,0,0,0,0,2,1,1,0,0,0,1.029552,3,58.150002,52.91,62.27,40.23,6,1,1,0,0,13,4,1,3141.6667,1176764.3,0,0,2799.5122 -3244,4005,7288,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,0,4,0,8.0297813,7.8179197,3,0,0,0,-9,0,-1091.3656,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5691342,8.0188103,0,0,56.580002,49.75,-9,-9,7,1,1,0,0,8,3,1,674,1602042.6,0,0,1786.6871 -3245,4006,7289,7290,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,0,3,6.9811249,7.5114918,6.6723599,2,0,-9,35,0,0,15.982561,0,0,0,55,2,4,1,3,3,2019,1,2,13,1,30,30,15,1,0,1,0,4.2111835,4.2111835,0,0,0,0,0,0,0,0,1,1,0,2.2453568,7.0503778,0,0,26.639999,54.169998,45.380001,56.209999,5,1,1,0,0,5,2,1,479.5,812579.63,0,0,2090.9922 -3245,4006,7290,7289,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,4,6.4216847,6.3124747,0,2,0,-9,35,0,0,-72.027618,0,0,0,55,3,3,1,3,2,2019,1,1,13,3,15,15,15,1,0,1,0,3.9857855,3.9857855,0,0,0,0,0,0,0,0,1,1,0,3.9657989,0,0,0,45.380001,56.209999,26.639999,54.169998,7,1,1,0,0,5,2,1,479.5,812579.63,0,0,2090.9922 -3245,4007,7291,-9,7290,7289,3,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-963.89337,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,20,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.200001,67.269997,-9,-9,3,1,1,0,0,5,2,1,2762,33171.539,0,0,0 -3246,4008,7292,7293,-9,-9,1,1,0,45,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,11,0,-2,0,0,0,0,47,2,4,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,7.3299999,51.830002,57.200001,5,1,1,0,0,12,1,0,431,-28806.258,0,0,1140.1394 -3246,4008,7293,7292,-9,-9,2,1,1,47,1,0,0,0,2,-9,97,3,0,1,4,0,0,0,1,0,-9,11,0,2,0,0,0,0,45,2,1,3,2,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.74442,1,51.830002,57.200001,53.23,7.3299999,6,1,1,0,0,12,1,0,431,-28806.258,0,0,1140.1394 -3247,4009,7294,-9,7295,7296,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-961.73346,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,9,2,1,410,121736.73,0,0,806.5564 -3247,4009,7295,7296,-9,-9,1,1,0,52,1,0,1,0,3,-9,2,1,0,0,4,6.6237168,5.9548454,0,2,0,-9,7,0,3,-216.22118,0,0,0,49,1,3,1,3,3,2019,1,2,12,0,11,11,15,1,0,1,0,6.8450518,6.8450518,0,0,0,0,0,0,0,7,1,1,0,0,0,.59447819,3,43.349998,46.41,35.799999,59.5,3,2,3,0,0,9,2,1,410,121736.73,0,0,806.5564 -3247,4009,7296,7295,-9,-9,2,1,1,49,1,0,1,0,1,-9,1,1,0,0,3,6.8618746,6.8667293,0,2,0,-9,7,0,-3,-102.03158,0,0,0,52,3,4,1,3,1,2019,1,1,14,2,80,70,15,1,0,1,0,1.0076644,1.0076644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.799999,59.5,43.349998,46.41,4,2,3,0,1,9,2,1,410,121736.73,0,0,806.5564 -3247,4010,7297,-9,7295,7296,3,1,0,19,2,0,1,0,2,1,2,1,0,0,4,7.4298606,7.209856,0,3,0,0,0,-9,0,-925.05927,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,12,2,38,0,15,1,0,-9,1,7.1589923,7.1589923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.470001,37.709999,-9,-9,2,2,3,0,0,9,3,1,561,-181340.55,0,0,-97.885643 -3248,4011,7298,7299,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.2710342,8.1978569,0,1,0,-9,6,0,1,-83.88871,0,0,0,52,2,4,1,1,2,2019,1,2,8,0,32,32,15,1,0,1,0,10.840355,10.840355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,55.189999,54.259998,6,1,1,0,0,11,5,1,438.5,359404.75,0,0,2547.2695 -3248,4011,7299,7298,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.2063885,8.3909683,0,1,0,-9,6,0,-1,67.695869,0,0,0,53,2,4,1,2,2,2019,1,1,7,0,37,38,15,1,0,1,0,13.835863,13.835863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,52.82,53.970001,6,1,1,0,0,11,5,1,438.5,359404.75,0,0,2547.2695 -3249,4012,7300,7301,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,10,0,19,-106.16926,0,0,0,58,1,3,1,2,2,2019,3,2,14,2,0,0,15,4,0,1,0,0,0,1,0,16.524515,0,0,9.3981266,0,0,1,1,0,0,0,0,0,52.560001,13.83,38.759998,58.16,6,1,1,0,0,2,2,1,604,207150.09,0,0,2598.4958 -3249,4012,7301,7300,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,1,3,6.710012,6.9302454,0,1,0,-9,10,0,-19,55.649597,0,0,0,77,3,1,3,3,3,2019,2,1,14,3,4,0,15,1,0,4,0,29.327202,29.327202,0,0,0,0,0,0,0,27.5,1,1,0,.36747867,0,29.59388,1,38.759998,58.16,52.560001,13.83,4,1,1,0,1,2,2,1,604,207150.09,0,0,2598.4958 -3250,4013,7302,7303,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,5,0,7.232995,7.1086445,1,0,-9,49,0,5,74.595673,0,0,0,65,3,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.95331877,7.450489,0,0,62.389999,56.709999,60.860001,37.259998,7,1,1,0,0,2,3,1,390.5,763157.13,0,0,2294.3745 -3250,4013,7303,7302,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,2,0,7.1042542,7.0652699,1,0,-9,49,0,-5,-20.791294,0,0,0,70,3,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4821312,7.3350787,0,0,60.860001,37.259998,62.389999,56.709999,6,1,1,0,0,2,3,1,390.5,763157.13,0,0,2294.3745 -3251,4014,7304,7305,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,6,0,-1,0,0,0,0,80,3,5,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,6.6931334,126.53249,0,0,0,0,0,1,1,0,0,0,0,0,54,46,54.099998,59.110001,6,1,1,0,0,1,1,1,1872.5,309942,0,0,2463.3394 -3251,4014,7305,7304,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,6,0,1,0,0,0,0,79,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.66949,1,54.099998,59.110001,54,46,7,1,1,0,0,1,1,1,1872.5,309942,0,0,2463.3394 -3252,4015,7306,7307,-9,-9,2,1,0,52,1,0,2,0,1,-9,2,1,0,0,3,9.0056629,9.3334455,0,2,0,-9,28,0,-1,-25.606987,0,0,0,53,2,4,1,2,-9,2019,1,1,30,12,56,50,15,1,1,1,0,14.745142,14.745142,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.040001,62.549999,30.33,45.18,3,4,2,0,1,2,4,1,289.5,473215.56,0,0,3213.1816 -3252,4015,7307,7306,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,28,0,1,-3.1311963,0,0,0,52,1,3,1,2,2,2019,1,2,21,8,0,46,15,1,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.4766254,0,3.4118774,3,30.33,45.18,31.040001,62.549999,5,1,1,0,0,2,4,1,289.5,473215.56,0,0,3213.1816 -3253,4016,7308,7309,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,4,0,1,0,0,0,0,63,3,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.28023,1,52,48,35.009998,31.790001,6,1,1,0,0,12,1,1,981.5,-91704.898,0,0,2474.7002 -3253,4016,7309,7308,-9,-9,2,1,0,63,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,-1,0,0,0,0,64,3,3,3,-9,3,2019,4,1,24,9,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.009998,31.790001,52,48,4,1,1,0,0,12,1,1,981.5,-91704.898,0,0,2474.7002 -3254,4017,7310,7312,-9,-9,2,1,1,42,1,0,2,0,1,-9,1,1,0,0,4,9.3644142,9.391861,0,2,0,-9,18,0,3,21.564953,0,0,0,39,1,3,1,2,2,2019,1,1,11,0,45,45,15,1,0,1,0,26.513851,26.513851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,56.52,48.310001,6,1,1,0,0,12,5,1,530.75,1085854.1,0,0,6076.1641 -3254,4017,7311,-9,7312,7310,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.3327,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,530.75,1085854.1,0,0,6076.1641 -3254,4017,7312,7310,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,8.0412865,8.0794477,0,2,0,-9,18,0,-3,-35.466274,0,0,1,42,1,4,1,1,1,2019,1,2,8,0,21,20,15,1,0,1,0,15.256816,15.256816,0,0,0,0,0,0,0,0,0,0,0,7.2109981,0,0,0,56.52,48.310001,54.200001,57.490002,6,1,1,0,0,12,5,1,530.75,1085854.1,0,0,6076.1641 -3254,4017,7313,-9,7312,7310,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.72534,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,5,1,530.75,1085854.1,0,0,6076.1641 -3255,4018,7314,-9,-9,-9,1,1,0,75,2,0,0,0,3,-9,4,3,0,0,3,0,6.3262262,6.2186866,3,0,0,0,-9,0,-1023.4525,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.1034268,6.7997847,0,0,62.66,52.400002,-9,-9,7,1,1,0,0,13,2,1,90,-8479.2686,0,0,2314.5474 -3256,4019,7315,-9,7317,7316,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.09796,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,12,5,1,388.33334,2570242.3,0,0,5321.2007 -3256,4019,7316,7317,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,0,5,8.9745579,8.8810091,0,2,0,-9,9,0,-3,-182.90482,0,0,0,57,1,5,1,3,1,2019,1,1,13,3,46,45,15,1,0,1,0,23.409954,23.409954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.380001,60.5,54.099998,59.110001,6,1,1,0,0,12,5,1,388.33334,2570242.3,0,0,5321.2007 -3256,4019,7317,7316,-9,-9,1,1,0,57,1,0,1,0,1,-9,2,1,0,0,5,8.6242914,8.8016472,0,2,0,-9,9,0,3,-53.214592,0,0,0,54,1,5,1,2,2,2019,1,2,9,0,35,35,15,1,0,1,0,17.041773,17.041773,0,0,0,0,0,0,0,0,1,1,0,.55421543,0,0,0,54.099998,59.110001,39.380001,60.5,5,1,1,0,0,12,5,1,388.33334,2570242.3,0,0,5321.2007 -3256,4020,7318,-9,7317,7316,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,6.6686358,6.7376981,0,3,0,0,0,-9,0,-918.12714,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,1,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.87646002,0,0,0,41.060001,62.040001,-9,-9,6,1,1,0,0,12,2,1,503,82511.977,0,0,840.4024 -3257,4021,7319,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,8.0516911,8.2249918,3,0,0,0,-9,0,-1092.2811,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.9112713,8.0558329,5.8927288,3,66.370003,38.360001,-9,-9,7,1,1,0,0,11,4,1,1080,939117.25,0,0,2649.6096 -3258,4022,7320,7321,-9,-9,2,1,0,29,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,-21,-109.00162,0,1,1,50,2,2,1,-9,-9,2019,3,1,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.1280687,1,26.57,25.950001,44.59,27.110001,4,1,1,0,0,13,3,0,366,-6165.4688,0,0,1944.9678 -3258,4022,7321,7320,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,7.6437087,7.8446593,0,1,0,-9,4,0,21,-13.224646,0,0,0,29,2,1,3,3,3,2019,2,2,18,6,45,45,15,1,1,3,0,6.4320898,6.4320898,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.847542,1,44.59,27.110001,26.57,25.950001,3,1,1,0,0,13,3,0,366,-6165.4688,0,0,1944.9678 -3259,4023,7322,7325,-9,-9,1,1,1,27,1,1,2,0,2,-9,2,1,0,0,4,8.2807703,8.2713985,0,2,0,-9,3,0,1,3.5331519,0,1,0,26,3,3,3,2,2,2019,2,3,11,1,55,60,15,1,0,3,0,7.7395926,7.7395926,0,0,0,0,0,0,0,2,1,1,0,.29845953,0,0,3,48.290001,52.150002,31.299999,51.93,6,1,1,0,0,12,3,0,785.75,14216.424,0,0,2022.6521 -3259,4023,7323,-9,7325,7322,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-842.81445,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,3,0,785.75,14216.424,0,0,2022.6521 -3259,4023,7324,-9,7325,7322,2,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.7223,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,0,785.75,14216.424,0,0,2022.6521 -3259,4023,7325,7322,-9,-9,3,1,0,26,1,1,2,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,3,0,-1,65.702774,0,1,1,27,2,4,1,2,2,2019,3,1,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.804307,3,31.299999,51.93,48.290001,52.150002,3,1,1,1,0,12,3,0,785.75,14216.424,0,0,2022.6521 -3260,4024,7326,7327,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,5,6.3069382,7.3333158,6.6063628,1,0,-9,44,0,0,62.049171,0,0,0,63,2,4,1,-9,-9,2019,1,2,7,0,10,9,15,1,0,1,0,6.7527933,6.7527933,0,0,0,0,0,0,0,0,0,0,0,3.788769,6.656271,0,0,60.02,56.419998,51.77,58.57,7,1,1,0,0,5,4,1,904.5,98064.297,0,0,2549.2314 -3260,4024,7327,7326,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,8.0103111,8.586237,7.2560081,1,0,-9,44,0,0,76.125328,0,0,0,63,2,5,1,3,3,2019,1,1,9,0,33,35,15,1,0,1,0,14.241644,14.241644,0,0,0,0,0,0,0,0,0,0,0,6.4718022,6.3384485,0,0,51.77,58.57,60.02,56.419998,6,1,1,0,0,5,4,1,904.5,98064.297,0,0,2549.2314 -3261,4025,7328,-9,7332,7330,8,1,0,7,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-868.11224,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7329,-9,7332,7330,5,1,1,14,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.0229,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7330,7332,-9,-9,2,1,1,32,1,0,7,0,2,-9,2,1,0,0,3,8.1755028,8.4131527,0,2,0,-9,7,0,-8,-68.596634,0,0,0,40,2,3,3,3,2,2019,2,1,8,0,50,55,15,1,0,3,0,7.4132748,7.4132748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,53.200001,48.380001,45.18,6,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7331,-9,7332,7330,10,1,1,4,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.98108,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7332,7330,-9,-9,1,1,0,40,1,0,7,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,8,-103.76687,0,0,1,32,2,3,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.380001,45.18,54.77,53.200001,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7333,-9,7332,7330,9,1,0,6,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.27588,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7334,-9,7332,7330,11,1,0,3,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.66852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4025,7335,-9,7332,7330,7,1,0,12,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.9266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,0,1100.625,64983.457,0,0,3649.3669 -3261,4026,7336,-9,7332,7330,3,1,1,22,2,0,7,0,2,-9,2,1,0,0,3,7.2265453,7.4220142,0,4,0,0,0,-9,0,-1036.9498,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,20,15,1,0,-9,0,5.8824668,5.8824668,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.630001,50.990002,-9,-9,5,1,1,0,0,12,2,0,663,0,0,0,72.452385 -3261,4027,7337,-9,7332,7330,4,1,1,21,2,0,7,0,2,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-1059.5052,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,1,0,12,1,0,1362,-70852.055,0,0,0 -3262,4028,7338,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-970.39917,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.0752053,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,-9,-9,7,4,2,0,0,8,1,1,399,82732.406,0,0,763.79669 -3263,4029,7339,7340,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,7.9978166,8.123867,0,1,0,-9,21,0,-2,-4.3491578,0,0,0,54,2,4,1,3,3,2019,1,2,6,0,38,0,15,1,0,1,0,8.5330544,8.5330544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.009998,38.869999,52,54,5,2,3,0,0,8,5,1,288.5,733908.63,0,0,2797.2488 -3263,4029,7340,7339,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,8.3499498,8.0069418,0,1,0,-9,4,0,2,-77.069809,0,0,0,52,1,4,1,3,-9,2019,1,1,6,0,70,43,15,1,0,1,0,7.9329004,7.9329004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54,62.009998,38.869999,6,2,3,0,0,8,5,1,288.5,733908.63,0,0,2797.2488 -3263,4030,7341,-9,7339,7340,3,1,0,21,2,0,0,0,1,1,2,1,0,0,4,7.6048317,7.9718614,0,3,0,0,0,-9,0,-1074.5854,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,42,0,15,1,0,-9,1,6.6575589,6.6575589,0,0,0,0,0,0,0,0,1,1,0,1.0559689,0,0,0,54.200001,57.490002,-9,-9,7,2,3,0,0,8,3,1,753,76075.875,0,0,1304.5522 -3264,4031,7342,7343,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.4116569,7.7364202,0,1,0,-9,9,0,-11,70.066307,0,0,0,69,3,3,3,3,3,2019,2,1,8,1,30,30,15,1,0,4,0,8.155077,8.155077,0,0,0,0,0,0,0,0,1,1,0,4.1162453,0,0,0,55.790001,52.619999,62,47.259998,1,1,1,0,0,12,3,1,413,238894.38,0,0,1718.0684 -3264,4031,7343,7342,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,5.7954535,5.9014673,0,1,0,-9,9,0,11,94.951225,0,0,0,58,2,4,1,2,3,2019,3,2,8,0,20,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.4494338,0,0,0,62,47.259998,55.790001,52.619999,6,1,1,0,0,12,3,1,413,238894.38,0,0,1718.0684 -3265,4032,7344,7347,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,3,7.9184585,8.2994146,0,2,0,-9,6,0,-2,141.48961,0,0,1,43,2,4,1,2,2,2019,1,2,19,7,43,38,15,1,1,1,0,8.6875172,8.6875172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.629999,55.43,51.240002,58.84,3,1,1,0,0,2,4,1,509.5,246397.38,0,0,3197.9937 -3265,4032,7345,-9,7344,7347,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.7722,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,509.5,246397.38,0,0,3197.9937 -3265,4032,7346,-9,7344,7347,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.69885,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,4,1,509.5,246397.38,0,0,3197.9937 -3265,4032,7347,7344,-9,-9,2,1,1,43,1,0,2,0,2,-9,1,1,0,0,4,8.3028097,8.00387,0,2,0,-9,6,0,2,81.081505,0,0,0,41,2,3,1,2,-9,2019,1,1,12,0,40,0,15,1,0,1,0,7.2914839,7.2914839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,29.629999,55.43,6,1,1,0,0,2,4,1,509.5,246397.38,0,0,3197.9937 -3266,4033,7348,7352,-9,-9,1,1,0,36,1,0,3,0,1,-9,2,1,0,0,4,8.2587433,8.4567842,0,2,0,-9,10,0,0,13.718297,0,0,1,45,2,3,1,-9,-9,2019,1,2,19,6,35,0,15,1,1,1,0,16.38751,16.38751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.33,62.509998,47.709999,25.23,3,3,4,0,0,8,4,1,892.79999,1097229.6,0,0,3867.1467 -3266,4033,7349,-9,7348,7352,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.46057,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,4,1,892.79999,1097229.6,0,0,3867.1467 -3266,4033,7350,-9,7348,7352,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.2357,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,4,1,892.79999,1097229.6,0,0,3867.1467 -3266,4033,7351,-9,7348,7352,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-964.82721,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,-9,-9,5,3,4,0,0,8,4,1,892.79999,1097229.6,0,0,3867.1467 -3266,4033,7352,7348,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,0,3,8.5166626,8.1770649,0,2,0,-9,11,0,9,15.853884,0,0,0,36,1,4,1,-9,-9,2019,1,1,18,5,70,0,15,1,1,1,0,6.5838571,6.5838571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.709999,25.23,23.33,62.509998,6,3,4,0,0,8,4,1,892.79999,1097229.6,0,0,3867.1467 -3267,4034,7353,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-961.10565,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.10208,3,14.2,35.720001,-9,-9,2,1,1,0,1,4,1,0,446,0,0,0,328.08093 -3267,4035,7354,-9,7353,-9,2,1,0,20,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-918.1239,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.130001,24.799999,-9,-9,4,1,1,0,0,4,1,0,382,-12568.376,0,0,1170.0199 -3268,4036,7355,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,5,0,7.1683044,7.0862536,3,0,0,0,-9,0,-1047.233,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.6852257,7.1108594,0,3,58,52,-9,-9,7,1,1,0,0,6,2,1,539,335104.88,0,0,242.88144 -3269,4037,7356,7357,-9,-9,1,1,1,52,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,4,0,10,0,0,0,0,42,2,2,3,-9,-9,2019,4,2,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.009998,43.880001,51.650002,44.349998,4,1,1,1,0,13,1,0,504.5,3987.7073,0,0,1650.0759 -3269,4037,7357,7356,-9,-9,2,1,0,42,1,0,0,0,2,-9,6,3,0,1,2,0,0,0,1,0,-9,4,0,-10,0,0,0,1,52,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.986832,3,51.650002,44.349998,44.009998,43.880001,5,1,1,0,0,13,1,0,504.5,3987.7073,0,0,1650.0759 -3270,4038,7358,-9,7360,7359,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.23395,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,922.25,-89606.289,0,0,1527.106 -3270,4038,7359,7360,-9,-9,2,1,1,25,1,1,2,0,2,-9,97,3,0,0,4,5.6478972,5.4696822,0,2,0,-9,5,0,2,-99.071915,0,1,0,23,2,4,1,-9,-9,2019,3,1,19,6,0,45,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.43,54.900002,24.610001,60.27,3,1,1,0,0,5,2,0,922.25,-89606.289,0,0,1527.106 -3270,4038,7360,7359,-9,-9,1,1,0,23,1,1,2,0,2,-9,2,1,0,0,4,6.2627335,6.2844739,0,2,0,-9,5,0,-2,-76.331268,0,1,1,25,2,4,3,2,2,2019,2,2,20,8,10,10,15,1,1,3,0,6.9422073,6.9422073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.610001,60.27,30.43,54.900002,6,1,1,0,0,5,2,0,922.25,-89606.289,0,0,1527.106 -3270,4038,7361,-9,7360,7359,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.9754,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,922.25,-89606.289,0,0,1527.106 -3271,4039,7362,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,0,3,8.8253746,8.9150858,5.3670392,4,0,0,0,-9,0,-1001.6157,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,50,55,15,1,0,-9,0,14.046364,14.046364,0,0,0,0,0,0,0,0,1,1,0,5.5266771,0,0,0,48.049999,53.560001,-9,-9,3,1,1,0,0,13,5,1,686,-192788,0,0,3349.9128 -3272,4040,7363,7364,-9,-9,1,1,0,38,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,8,0,-13,0,0,0,1,51,3,1,3,3,3,2019,4,2,21,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.014938,2,34.860001,26.049999,37.48,27.77,4,1,1,1,1,5,1,1,1286.5,0,0,0,1032.2524 -3272,4040,7364,7363,-9,-9,2,1,1,51,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,8,0,13,0,0,0,0,38,2,1,3,-9,-9,2019,4,1,30,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.48,27.77,34.860001,26.049999,1,1,1,0,0,5,1,1,1286.5,0,0,0,1032.2524 -3273,4041,7365,-9,7367,7368,4,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-859.23041,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,0,572.25,227814.16,0,0,4591.9844 -3273,4041,7366,-9,7367,-9,3,1,0,16,2,0,1,0,2,-9,2,2,0,0,3,6.0958319,6.9195938,6.3833671,2,0,0,0,-9,0,-1051.4949,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,28,11,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4386811,0,0,0,28.049999,56.099998,-9,-9,3,1,1,0,0,6,4,0,572.25,227814.16,0,0,4591.9844 -3273,4041,7367,7368,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,1,1,8.2474689,8.1224842,0,2,0,-9,10,0,3,38.187069,0,0,1,38,2,2,1,2,2,2019,1,1,10,1,38,39,15,1,0,1,0,10.953197,10.953197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,20.809999,45.59,47.040001,5,1,1,0,0,6,4,0,572.25,227814.16,0,0,4591.9844 -3273,4041,7368,7367,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,2,8.2182112,8.4190474,0,2,0,-9,10,0,-3,-29.507767,0,0,0,41,1,1,1,2,2,2019,1,2,12,0,60,55,15,1,0,1,0,7.623879,7.623879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.59,47.040001,55.93,20.809999,5,1,1,0,0,6,4,0,572.25,227814.16,0,0,4591.9844 -3274,4042,7369,-9,-9,-9,4,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1035.3322,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,2,3,0,0,4,1,1,751,8537.8984,0,0,116.84394 -3275,4043,7370,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1006.5516,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,2.6202557,3,59.32,46.98,-9,-9,5,1,1,0,0,12,1,0,669,-92259.945,0,0,963.95135 -3276,4044,7371,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,7.391016,7.3924308,0,3,0,0,0,-9,0,-949.48401,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,38,33,15,1,0,-9,0,6.9709015,6.9709015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,10,3,0,141,-73624.281,0,0,1949.902 -3277,4045,7372,7373,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,0,3,6.1149526,5.903616,0,1,0,-9,29,0,-6,32.707832,0,0,0,58,3,2,1,3,3,2019,1,1,8,0,7,0,15,1,0,1,0,6.4386377,6.4386377,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,35.470001,48.919998,36.77,38.639999,4,1,1,0,0,5,3,1,830,492210.13,0,0,1358.053 -3277,4045,7373,7372,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,0,2,7.8168817,7.9399199,0,1,0,-9,30,0,6,154.28954,0,0,0,52,3,3,1,3,3,2019,1,2,12,0,40,40,15,1,0,1,0,7.0129008,7.0129008,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.77,38.639999,35.470001,48.919998,3,1,1,0,0,5,3,1,830,492210.13,0,0,1358.053 -3277,4046,7374,-9,7372,7373,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,5.9234204,6.2862153,0,3,0,0,0,-9,0,-969.34814,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,2,10,0,15,1,0,-9,1,6.7815127,6.7815127,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.150002,54.82,-9,-9,7,1,1,0,0,5,2,1,1130,59020.141,0,0,358.46265 -3278,4047,7375,-9,7376,7377,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-909.23395,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,35,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,7,1,1,1901,-78269.547,0,0,0 -3278,4048,7376,7377,-9,-9,2,1,0,56,1,0,0,0,1,-9,1,1,0,0,3,7.0405903,7.0048532,0,1,0,-9,29,0,-3,-6.1826439,0,0,0,59,1,3,1,3,1,2019,1,3,7,0,30,36,15,1,0,1,0,4.8586335,4.8586335,0,0,0,0,0,0,0,0,0,0,0,.1030672,0,0,0,55.93,49.950001,48.790001,53.169998,6,3,4,0,0,7,3,1,330,1166630.3,0,0,1976.6096 -3278,4048,7377,7376,-9,-9,3,1,1,59,1,0,0,0,1,-9,2,1,0,0,3,7.9991512,7.7161083,0,1,0,-9,29,0,3,32.810745,0,0,0,56,1,3,1,3,3,2019,1,2,11,0,48,49,15,1,0,1,0,6.4515901,6.4515901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.790001,53.169998,55.93,49.950001,2,3,4,0,0,7,3,1,330,1166630.3,0,0,1976.6096 -3278,4049,7378,-9,7376,7377,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.131978,8.0653257,0,3,0,0,0,-9,0,-1027.3575,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,4,53,0,15,1,1,-9,1,6.6076932,6.6076932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,57.639999,-9,-9,2,3,4,0,0,7,4,1,1695,-52910.477,0,0,730.03284 -3278,4050,7379,-9,7376,7377,5,1,0,22,2,0,0,0,1,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-888.50708,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,57.299999,-9,-9,5,3,4,1,0,7,1,1,291,-83746.867,0,0,0 -3279,4051,7380,7381,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,0,5,8.3731422,8.0688353,0,1,0,-9,2,0,-2,-18.158068,0,1,1,23,2,5,1,1,2,2019,1,2,6,0,50,48,15,1,0,1,0,9.4521914,9.4521914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,50.540001,62.09,6,1,1,0,0,9,5,0,467,59478.031,0,0,3498.7412 -3279,4051,7381,7380,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,0,5,8.0695496,8.5254841,0,1,0,-9,2,0,2,-7.0095367,0,1,0,21,2,5,1,-9,-9,2019,1,1,8,0,40,30,15,1,0,1,0,11.949848,11.949848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,51.139999,60.450001,6,1,1,0,0,9,5,0,467,59478.031,0,0,3498.7412 -3280,4052,7382,7383,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,-3,-34.477192,0,0,0,78,2,4,3,2,2,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8061619,0,0,0,39.139999,52.209999,50.549999,53.709999,6,1,1,0,0,4,3,1,734,667224.63,0,0,2387.5679 -3280,4052,7383,7382,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.7538714,7.720645,1,0,-9,54,0,3,.10275233,0,0,0,75,3,4,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4202871,0,0,50.549999,53.709999,39.139999,52.209999,6,1,1,0,0,4,3,1,734,667224.63,0,0,2387.5679 -3281,4053,7384,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,2,1,0,0,1,8.0105467,8.0749636,0,3,0,0,0,-9,0,-1053.1146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,37,39,15,1,0,-9,0,10.583524,10.583524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.040001,30.969999,-9,-9,6,1,1,0,0,13,4,1,475,58061.824,0,0,1101.7687 -3282,4054,7385,7386,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,4.622324,4.9552622,1,0,-9,46,0,-6,-31.79632,0,0,0,69,1,5,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2962685,4.3710046,16.68688,3,52.400002,52.91,59.43,58.049999,7,1,1,0,0,10,5,1,463.5,2040335.9,0,0,4804.4512 -3282,4054,7386,7385,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,5,0,8.6837568,9.0830479,1,0,-9,46,0,6,-17.017344,0,0,0,63,2,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2806659,8.5505533,0,0,59.43,58.049999,52.400002,52.91,7,1,1,0,0,10,5,1,463.5,2040335.9,0,0,4804.4512 -3283,4055,7387,-9,7388,-9,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-934.93921,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,3,4,0,0,8,3,0,1099.3334,90644.219,0,0,2653.6516 -3283,4055,7388,-9,-9,-9,1,1,0,55,3,0,2,0,1,-9,1,1,0,0,4,8.2959909,8.3231621,0,4,0,-9,0,1,0,-975.2934,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,35,37,15,1,0,-9,0,14.101454,14.101454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.200001,55.41,-9,-9,5,3,4,0,0,8,3,0,1099.3334,90644.219,0,0,2653.6516 -3283,4055,7389,-9,7388,-9,5,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1119.0637,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,3,0,1099.3334,90644.219,0,0,2653.6516 -3284,4056,7390,7391,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.9585476,9.100174,0,1,0,-9,5,0,6,-58.379025,0,0,0,42,2,3,1,2,2,2019,1,2,9,0,42,42,15,1,0,1,0,29.460796,29.460796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,52.990002,51.279999,5,1,1,0,0,9,5,1,644,52953.988,0,0,5695.3047 -3284,4056,7391,7390,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,3,8.7791452,8.7464867,0,1,0,-9,5,0,-6,30.47957,0,0,1,48,2,3,1,2,2,2019,1,1,10,0,45,40,15,1,0,1,0,17.728952,17.728952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,49.040001,55.860001,5,1,1,0,0,9,5,1,644,52953.988,0,0,5695.3047 -3285,4057,7392,-9,-9,-9,1,1,0,88,3,0,0,0,1,-9,4,3,0,0,3,0,6.5277929,6.9190726,3,0,0,0,-9,0,-1152.4816,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0310488,6.5884275,0,0,54,43,-9,-9,6,1,1,0,0,9,2,1,2130,326795.47,0,0,1021.0543 -3285,4058,7393,7394,7392,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,2,6.6340489,7.0425305,0,1,0,-9,26,0,-2,-18.691057,0,0,0,60,1,4,1,1,-9,2019,1,3,16,5,1,0,15,1,1,1,0,99.23027,99.23027,0,0,0,0,0,0,0,2,1,1,0,0,0,6.6580658,3,25.59,53.110001,57.16,56.150002,3,1,1,0,0,9,5,1,2497,1697188,0,0,4922.7744 -3285,4058,7394,7393,-9,-9,3,1,1,60,1,0,0,0,1,-9,1,1,0,1,4,8.7510624,8.8407049,7.761826,1,0,-9,26,0,2,-55.267551,0,0,0,58,1,2,1,2,2,2019,1,2,8,0,30,25,15,1,0,1,0,23.552622,23.552622,0,0,0,0,0,0,0,2,1,1,0,0,8.664422,0,3,57.16,56.150002,25.59,53.110001,6,1,1,0,0,9,5,1,2497,1697188,0,0,4922.7744 -3285,4059,7395,-9,7393,7394,4,1,0,21,2,0,0,1,2,-9,7,2,0,0,3,0,6.8165331,6.6805296,3,0,0,0,-9,0,-1064.3848,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0329771,0,8.6890717,3,36.009998,53.849998,-9,-9,5,1,1,0,0,9,2,1,66,351811.81,0,0,1628.0579 -3286,4060,7396,7397,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,7.3221488,7.0600863,0,1,0,-9,2,0,0,-14.007093,0,0,0,50,2,4,1,3,3,2019,1,2,15,3,13,13,15,1,0,1,0,14.132709,14.132709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.75,58.52,52.77,55.330002,6,1,1,0,0,6,5,1,862,381080.78,0,0,4423.4814 -3286,4060,7397,7396,-9,-9,2,1,1,50,1,0,0,0,2,-9,1,1,0,0,4,9.2997341,9.5499048,0,1,0,-9,2,0,0,2.7068267,-9,0,0,50,2,4,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,35.985584,35.985584,0,0,0,0,0,0,0,0,0,0,0,2.8951225,0,0,0,52.77,55.330002,42.75,58.52,7,1,1,0,0,6,5,1,862,381080.78,0,0,4423.4814 -3287,4061,7398,7399,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,0,2,9.0381794,8.6342087,0,1,0,-9,8,0,1,-10.925134,0,0,0,44,1,2,1,2,3,2019,1,2,12,0,44,12,15,1,0,1,0,19.712584,19.712584,0,0,0,0,0,0,0,0,0,0,0,1.2240375,0,0,0,45.970001,53.799999,25.43,37.060001,3,1,1,0,0,9,5,1,450.5,353884.5,0,0,5349.585 -3287,4061,7399,7398,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,0,2,8.5713472,8.3352032,0,1,0,-9,8,0,-1,-56.769836,0,0,1,45,2,2,1,3,3,2019,1,1,24,10,20,12,15,1,1,1,0,28.020931,28.020931,0,0,0,0,0,0,0,0,0,0,0,1.4278699,0,0,0,25.43,37.060001,45.970001,53.799999,2,1,1,0,1,9,5,1,450.5,353884.5,0,0,5349.585 -3288,4062,7400,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1028.5848,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.4136758,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,1,1,1,0,0,9,1,1,531,127864.24,0,0,39.933319 -3289,4063,7401,-9,7408,7406,3,1,1,13,2,2,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.6826,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7402,-9,7408,7406,10,1,1,0,2,2,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1099.7085,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7403,-9,7408,7406,9,1,0,2,2,2,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.1428,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7404,-9,7408,7406,5,1,0,7,2,2,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.1403,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7405,-9,7408,7406,6,1,0,5,2,2,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-866.58417,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7406,7408,-9,-9,1,1,1,44,1,2,7,0,1,-9,2,1,0,0,4,8.528573,8.2836256,0,2,0,-9,12,0,12,-72.620811,0,0,0,32,2,5,3,2,3,2019,2,2,6,0,22,23,15,1,0,3,0,25.648911,25.648911,0,0,0,0,0,0,0,0,1,1,0,2.9437463,0,0,0,57.16,56.150002,57.060001,57.759998,6,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7407,-9,7408,7406,4,1,1,8,2,2,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-834.46765,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7408,7406,-9,-9,2,1,0,32,1,2,7,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,9,0,-12,70.417824,0,0,1,44,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,7,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4063,7409,-9,7408,7406,8,1,0,17,2,2,7,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.26208,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.439999,56.990002,-9,-9,2,2,3,0,0,4,2,1,998.77777,36439.871,0,0,3306.1687 -3289,4064,7410,-9,7408,7406,7,1,0,19,2,2,7,0,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1171.9055,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.599998,59.470001,-9,-9,5,2,3,0,0,4,1,1,291,127840.11,0,0,249.06436 -3290,4065,7411,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,2,7.9328551,8.5465078,0,3,0,0,0,-9,0,-1044.2354,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,35,47,15,1,0,-9,0,11.084197,11.084197,0,0,0,0,0,0,0,0,0,0,0,4.6011009,0,0,0,43,39,-9,-9,5,2,3,0,0,8,4,1,1234,-16574.006,0,0,1220.8086 -3291,4066,7412,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,0,4,7.5608792,7.8241353,0,3,0,0,0,-9,0,-1034.4858,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,22,27,15,1,0,-9,0,11.364349,11.364349,0,0,0,0,0,0,0,0,0,0,0,5.4026093,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,4,3,1,466,-201439.31,0,0,1505.5403 -3292,4067,7413,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,1,1,0,0,3,9.9895763,10.244168,8.6922197,3,0,0,0,-9,0,-1215.5269,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,12,50,50,15,1,1,-9,0,35.309811,35.309811,0,0,0,0,0,0,0,0,0,0,0,8.5788555,8.8482971,0,0,25.42,36.869999,-9,-9,3,1,1,0,0,10,5,1,326,2817585.5,0,0,10213.039 -3293,4068,7414,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,8,3,1,1,2,0,7.8780365,7.755537,3,0,0,0,-9,0,-1109.6959,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4361434,7.8794947,0,0,47.490002,24.43,-9,-9,5,1,1,0,0,6,3,1,231,929849.69,0,0,1325.0653 -3294,4069,7415,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,9.2881117,9.3033333,6.9722686,3,0,0,0,-9,0,-930.31921,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,38,38,15,1,0,-9,0,37.574417,37.574417,0,0,0,0,0,0,0,0,0,0,0,7.8293972,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,8,5,1,1136,319373.56,0,0,4210.603 -3295,4070,7416,-9,7419,7418,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.7837,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,5,4,1,476.79999,1002375.1,0,0,4635.6797 -3295,4070,7417,-9,7419,7418,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1096.2098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,476.79999,1002375.1,0,0,4635.6797 -3295,4070,7418,7419,-9,-9,2,1,1,49,1,0,3,0,1,-9,2,1,0,0,2,9.193367,9.2785301,0,2,0,-9,24,0,4,-12.160202,0,0,0,45,1,3,1,3,3,2019,1,1,14,3,54,58,15,1,0,1,0,19.166489,19.166489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.099998,51.900002,47.810001,52.330002,3,1,1,0,1,5,4,1,476.79999,1002375.1,0,0,4635.6797 -3295,4070,7419,7418,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,0,3,8.1680307,7.8090711,0,2,0,-9,24,0,-4,80.612099,-9,0,0,49,1,2,1,2,2,2019,1,2,8,0,23,0,15,1,0,1,0,12.183084,12.183084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.810001,52.330002,47.099998,51.900002,4,1,1,0,1,5,4,1,476.79999,1002375.1,0,0,4635.6797 -3295,4070,7420,-9,7419,7418,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.58826,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,5,4,1,476.79999,1002375.1,0,0,4635.6797 -3296,4071,7421,7422,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,8.1804886,8.1008492,1,0,-9,39,0,-6,45.852737,0,0,0,71,3,5,3,2,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9724007,8.3537836,0,0,56.16,45.84,56.669998,53.830002,6,1,1,0,0,12,4,1,2011,1207722.5,0,0,4135.6973 -3296,4071,7422,7421,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,5,0,7.8587794,7.5544953,1,0,-9,39,0,6,-67.052368,0,0,0,65,2,4,3,2,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8203664,7.3347411,0,0,56.669998,53.830002,56.16,45.84,6,1,1,0,0,12,4,1,2011,1207722.5,0,0,4135.6973 -3296,4072,7423,-9,7421,7422,3,1,1,35,2,0,0,0,2,-9,2,1,0,0,5,8.0283546,8.1951084,0,3,0,0,0,-9,0,-894.23712,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,38,38,15,1,0,-9,1,9.2043114,9.2043114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,4,1,1,0,0,12,4,1,313,65295.387,0,0,2225.1511 -3297,4073,7424,7425,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,4.8127146,4.9502244,1,0,-9,50,0,-4,4.3791924,0,0,0,74,3,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7055047,4.5966344,0,0,59.549999,38.610001,46.549999,38.619999,6,1,1,0,0,7,2,1,616.5,709168.63,0,0,514.37201 -3297,4073,7425,7424,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,5.0729766,5.0861783,1,0,-9,50,0,4,-163.28981,0,0,0,70,3,3,3,-9,2,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.9315578,5.1964993,0,0,46.549999,38.619999,59.549999,38.610001,6,1,1,0,0,7,2,1,616.5,709168.63,0,0,514.37201 -3298,4074,7426,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,0,3,9.0175695,9.0780067,0,3,0,0,0,-9,0,-1190.1906,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,60,80,15,1,0,-9,0,18.829613,18.829613,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.220001,56.110001,-9,-9,5,1,1,0,0,10,5,1,833,204287.7,0,0,3180.73 -3299,4075,7427,7428,-9,-9,1,1,0,34,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,1,-9,-1,-21.944258,-9,0,1,35,1,2,1,2,2,2019,3,2,13,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.330002,55.93,38.759998,42.099998,5,2,3,0,0,8,3,0,707.25,380609.81,0,0,1619.2621 -3299,4075,7428,7427,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,0,2,8.3008699,8.3940983,0,2,0,-9,1,-9,1,-60.335228,-9,0,0,34,1,3,3,-9,-9,2019,2,1,13,2,38,0,15,1,0,3,0,13.469053,13.469053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.759998,42.099998,46.330002,55.93,2,2,3,0,0,8,3,0,707.25,380609.81,0,0,1619.2621 -3299,4075,7429,-9,7427,7428,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-896.91925,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,0,707.25,380609.81,0,0,1619.2621 -3299,4075,7430,-9,7427,7428,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-909.54358,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,0,707.25,380609.81,0,0,1619.2621 -3300,4076,7431,7433,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,9.1808615,9.1050568,0,2,0,-9,14,0,8,32.456539,0,0,0,37,2,5,1,3,3,2019,1,2,6,0,41,38,15,1,0,1,0,25.461533,25.461533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,56.369999,52.639999,4,1,1,0,0,9,5,0,1541.3334,1286356.3,0,0,5032.6733 -3300,4076,7432,-9,7433,7431,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-899.84656,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,9,5,0,1541.3334,1286356.3,0,0,5032.6733 -3300,4076,7433,7431,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,5,7.3607616,7.2037458,0,2,0,-9,15,0,-8,-74.984138,0,0,1,45,1,4,1,3,3,2019,1,1,8,1,12,34,15,1,0,1,0,19.342916,19.342916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.369999,52.639999,51.830002,57.200001,7,2,3,0,0,9,5,0,1541.3334,1286356.3,0,0,5032.6733 -3301,4077,7434,-9,7437,7435,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.7938,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,4,1,941,552023.38,0,0,3381.3362 -3301,4077,7435,7437,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.1747236,8.0791121,0,2,0,-9,13,0,3,-60.206261,0,0,0,37,1,2,1,3,-9,2019,1,1,7,0,37,37,15,1,0,1,0,11.070197,11.070197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.139999,53.970001,47.419998,51.549999,7,1,1,0,0,1,4,1,941,552023.38,0,0,3381.3362 -3301,4077,7436,-9,7437,7435,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.47375,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,4,1,941,552023.38,0,0,3381.3362 -3301,4077,7437,7435,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,2,8.7939157,9.042448,0,2,0,-9,13,0,-3,-40.760208,0,0,1,40,2,3,1,2,2,2019,1,2,11,2,50,60,15,1,0,1,0,15.149442,15.149442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.419998,51.549999,50.139999,53.970001,6,1,1,0,0,1,4,1,941,552023.38,0,0,3381.3362 -3302,4078,7438,-9,-9,-9,1,1,0,59,3,0,3,0,3,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1045.4359,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,2,3,0,0,8,1,1,351,0,0,0,0 -3302,4079,7439,7440,7438,-9,2,1,1,40,1,0,3,0,2,-9,2,1,0,0,4,7.5637946,7.3853874,0,2,0,-9,17,0,4,14.46436,0,0,0,36,2,4,1,3,3,2019,1,4,12,0,38,39,15,1,0,1,0,6.0506029,6.0506029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.990002,47.349998,48,57,4,2,3,0,0,8,3,1,826,85505.938,0,0,3518.9214 -3302,4079,7440,7439,-9,-9,4,1,0,36,1,0,3,0,2,-9,2,1,0,0,4,7.707027,7.7847223,0,2,0,-9,17,0,-4,31.630196,0,0,1,40,2,4,1,3,3,2019,1,2,11,2,37,20,15,1,0,1,0,7.5365887,7.5365887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,37.990002,47.349998,5,2,3,0,0,8,3,1,826,85505.938,0,0,3518.9214 -3302,4079,7441,-9,7440,7439,7,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.46326,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,1,826,85505.938,0,0,3518.9214 -3302,4079,7442,-9,7440,7439,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.78821,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,3,1,826,85505.938,0,0,3518.9214 -3302,4079,7443,-9,7440,7439,6,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.9212,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,1,826,85505.938,0,0,3518.9214 -3302,4080,7444,-9,7438,-9,3,1,0,37,2,0,3,0,1,-9,2,1,0,0,4,8.1283007,8.1429958,0,3,0,0,0,-9,0,-1059.4146,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,38,40,15,1,0,-9,1,10.400656,10.400656,0,0,0,0,0,0,0,0,1,1,0,7.7929478,0,0,0,48,57,-9,-9,5,2,3,0,0,8,4,1,1234,-236440.39,0,0,3277.8044 -3303,4081,7445,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,3,8.9982672,9.0094118,0,3,0,0,0,-9,0,-967.35138,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,63,50,15,1,0,-9,0,15.477654,15.477654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,-9,-9,6,3,4,0,0,6,5,1,320,313330.59,0,0,4285.416 -3304,4082,7446,7447,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.2695723,7.9897738,0,2,0,-9,13,0,-1,111.5638,0,0,0,47,1,5,1,1,2,2019,1,2,9,0,20,28,15,1,0,1,0,17.329138,17.329138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,46.970001,60.02,56.419998,6,1,1,0,0,12,4,1,441.5,884819.13,0,0,3033.7166 -3304,4082,7447,7446,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,5,8.7071314,8.3498383,0,2,0,-9,5,0,1,-101.48212,0,0,0,46,2,4,1,-9,-9,2019,1,1,7,0,61,35,15,1,0,1,0,9.4046774,9.4046774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,59.139999,46.970001,7,1,1,0,0,12,4,1,441.5,884819.13,0,0,3033.7166 -3304,4082,7448,-9,7446,7447,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.25183,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,441.5,884819.13,0,0,3033.7166 -3304,4082,7449,-9,7446,7447,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.62427,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,441.5,884819.13,0,0,3033.7166 -3305,4083,7450,7451,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,4.9280767,4.9445477,1,0,-9,50,0,-3,-162.61623,0,0,0,76,1,1,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.4152679,4.6047568,49.925747,1,46.299999,29.030001,27.889999,18.610001,5,1,1,0,0,1,2,1,1322,323778.69,0,0,2535.0588 -3305,4083,7451,7450,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,1,1,0,6.2971973,6.2136884,1,0,-9,50,0,3,93.33271,0,0,0,73,3,2,3,3,2,2019,4,2,24,11,0,0,15,4,1,4,0,0,0,1,0,27.513575,0,0,0,0,0,1,1,0,5.9413385,6.086966,0,0,27.889999,18.610001,46.299999,29.030001,4,1,1,0,0,1,2,1,1322,323778.69,0,0,2535.0588 -3306,4084,7452,-9,7456,7457,3,1,1,9,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.44647,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3306,4084,7453,-9,7456,7457,4,1,0,7,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.85138,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3306,4084,7454,-9,7456,7457,6,1,1,2,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1204.6881,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3306,4084,7455,-9,7456,7457,7,1,1,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.99567,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3306,4084,7456,7457,-9,-9,1,1,0,31,1,2,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,2,-85.490776,0,0,1,29,2,4,1,2,2,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,54.790001,55.860001,6,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3306,4084,7457,7456,-9,-9,2,1,1,29,1,2,5,0,2,-9,2,1,0,0,4,7.9410458,8.3437872,0,2,0,-9,8,0,-2,69.217522,0,1,0,31,2,4,3,-9,-9,2019,2,1,11,1,55,60,15,1,0,3,0,8.9391489,8.9391489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,51.240002,58.84,6,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3306,4084,7458,-9,7456,7457,5,1,0,5,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.4178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,1014.5714,107347.2,0,0,2447.2935 -3307,4085,7459,-9,7460,7461,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1033.4496,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,9,4,1,917,1905452,0,0,3441.2087 -3307,4085,7460,7461,-9,-9,2,1,0,58,1,0,1,0,1,-9,2,1,0,0,3,8.8417435,8.6101751,0,2,0,-9,21,0,-4,-2.0818822,0,0,0,62,2,4,1,2,2,2019,1,1,10,1,50,50,15,1,0,1,0,11.767161,11.767161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.91,49.540001,57.16,56.150002,7,1,1,0,0,9,4,1,917,1905452,0,0,3441.2087 -3307,4085,7461,7460,-9,-9,1,1,1,62,1,0,1,0,2,-9,1,1,0,0,4,8.04778,7.9686494,0,2,0,-9,20,0,4,-4.4235926,0,0,0,58,1,3,1,3,3,2019,1,2,7,0,25,30,15,1,0,1,0,13.967105,13.967105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,56.91,49.540001,6,1,1,0,0,9,4,1,917,1905452,0,0,3441.2087 -3308,4086,7462,7463,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,3,0,5.4710221,5.628057,1,0,-9,11,0,-1,-106.78008,0,0,0,60,1,2,3,1,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0197706,0,0,0,54.700001,46.419998,42.02,40.419998,5,1,1,0,0,1,3,1,3036.5,880609.5,0,0,1459.2314 -3308,4086,7463,7462,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,0,2,6.6180806,7.577703,7.1860323,1,0,-9,11,0,1,-73.982567,0,0,0,59,1,3,3,3,3,2019,4,1,22,10,5,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9708776,7.711267,0,0,42.02,40.419998,54.700001,46.419998,3,1,1,0,0,1,3,1,3036.5,880609.5,0,0,1459.2314 -3309,4087,7464,7465,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,3,0,8.1201429,8.2540321,1,0,-9,36,0,-16,-76.274651,0,0,0,76,3,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1716418,8.4486036,0,0,49.5,48.939999,41.169998,59.310001,6,1,1,0,0,10,4,1,1876,1675071.3,0,0,3337.438 -3309,4087,7465,7464,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,7.5873842,7.2018824,1,0,-9,36,0,16,.75997835,0,0,0,60,2,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.295239,7.3938656,0,0,41.169998,59.310001,49.5,48.939999,7,1,1,0,0,10,4,1,1876,1675071.3,0,0,3337.438 -3310,4088,7466,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,1,1,0,6.1378231,6.056633,3,0,0,0,-9,0,-826.83917,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,3.2130694,0,0,0,0,0,0,1,1,0,0,5.9400921,0,0,32.82,19.15,-9,-9,6,1,1,0,0,2,2,1,809,277184.56,0,0,363.34872 -3311,4089,7467,7469,-9,-9,2,1,1,38,1,0,1,0,1,-9,2,1,0,0,2,8.8958521,8.4268684,0,2,0,-9,10,0,5,1.6271747,0,0,0,33,2,2,1,-9,-9,2019,1,1,17,5,42,42,15,1,1,1,0,16.450544,16.450544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.73,50.330002,32.09,36.82,5,1,1,0,0,12,4,1,1290,217154.94,0,0,4264.7227 -3311,4089,7468,-9,7469,7467,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.44611,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,12,4,1,1290,217154.94,0,0,4264.7227 -3311,4089,7469,7467,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,0,2,7.4495826,7.3000293,0,2,0,-9,10,0,-5,25.760418,0,0,1,38,1,2,1,2,2,2019,1,2,16,4,22,23,15,1,1,1,0,9.0031271,9.0031271,0,0,0,0,0,0,0,0,1,1,0,.050437335,0,0,0,32.09,36.82,29.73,50.330002,4,1,1,0,0,12,4,1,1290,217154.94,0,0,4264.7227 -3312,4090,7470,7471,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,1,3,0,5.882617,6.0245509,1,0,-9,8,0,-2,23.469004,0,0,0,93,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,20.285606,0,0,0,0,243.39577,7,1,1,0,3.5439951,5.807868,8.6184864,1,56,44,54,44,6,1,1,0,0,5,2,1,1288,175264.91,0,0,2084.769 -3312,4090,7471,7470,-9,-9,1,1,0,93,1,0,0,0,2,-9,4,3,0,1,3,0,6.3938818,6.0265365,1,0,-9,8,0,2,107.77979,0,0,0,91,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,3.6251376,0,0,0,0,21.537266,2,1,1,0,4.976685,6.1941066,0,1,54,44,56,44,6,1,1,0,0,5,2,1,1288,175264.91,0,0,2084.769 -3313,4091,7472,-9,-9,-9,1,1,0,38,3,0,0,0,2,-9,2,1,0,0,3,8.1841707,8.4475918,0,3,0,-9,0,1,0,-961.38354,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,38,38,15,1,1,-9,0,12.171302,12.171302,0,0,0,0,0,0,0,0,0,0,0,4.1679492,0,0,0,41.23,51.32,-9,-9,3,1,1,0,0,9,4,1,864,667426.13,0,0,1796.855 -3314,4092,7473,-9,7474,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-911.21606,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,12,1,0,218.5,-29604.164,0,0,1161.7078 -3314,4092,7474,-9,-9,-9,1,1,0,37,2,0,1,0,3,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-1293.0527,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,59,-9,-9,3,1,1,1,0,12,1,0,218.5,-29604.164,0,0,1161.7078 -3315,4093,7475,7476,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,8.3370419,8.2215519,1,0,-9,43,0,1,-42.044571,0,0,0,66,1,4,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5890393,8.2645531,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,7,4,1,875.5,1730589.3,0,0,3357.6177 -3315,4093,7476,7475,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.266036,7.2391515,1,0,-9,43,0,-1,-23.619085,0,0,0,67,1,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7855363,7.3121409,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,7,4,1,875.5,1730589.3,0,0,3357.6177 -3316,4094,7477,7478,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,0,2,0,8.2783318,8.0787554,1,0,-9,50,0,-5,27.105833,0,0,0,82,1,3,3,-9,-9,2019,4,1,22,9,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7152567,8.4287825,0,0,44.669998,23.16,61.830002,36.540001,6,1,1,0,0,8,5,1,1648,0,0,0,5113.104 -3316,4094,7478,7477,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,3,0,8.5115175,8.6739435,1,0,-9,50,0,5,-88.980431,0,0,0,77,1,2,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3780584,8.5149384,0,0,61.830002,36.540001,44.669998,23.16,7,2,3,0,0,8,5,1,1648,0,0,0,5113.104 -3317,4095,7479,-9,-9,-9,1,1,0,39,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1049.7128,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,23,11,0,37,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.51,47.630001,-9,-9,1,1,1,1,1,2,1,0,1178,148307.92,0,0,402.33856 -3318,4096,7480,7481,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,5,0,0,0,0,67,2,1,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.617156,1,56.939999,39,43.52,11.62,6,1,1,0,0,7,1,1,527,574643.38,0,0,1790.361 -3318,4096,7481,7480,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,48,0,-5,0,0,0,0,72,3,2,3,3,3,2019,4,1,25,11,0,0,15,4,1,4,0,0,0,1,0,48.896675,0,0,0,0,0,1,1,0,3.2421296,0,0,0,43.52,11.62,56.939999,39,4,1,1,0,0,7,1,1,527,574643.38,0,0,1790.361 -3319,4097,7482,-9,7483,7484,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,8.321207,8.1949062,0,3,0,0,0,-9,0,-909.4411,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,36,0,15,1,0,-9,1,14.644835,14.644835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,4,0,459,87565.563,0,0,1733.6044 -3319,4098,7483,7484,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,9.0429878,8.7705936,0,1,0,-9,7,0,-4,103.52422,0,0,0,60,2,5,1,3,3,2019,1,3,9,0,36,38,15,1,0,1,0,19.618923,19.618923,0,0,0,0,0,0,0,0,0,0,0,.022948559,0,0,0,51.830002,57.200001,54.689999,57.470001,2,1,1,0,0,9,5,0,614.5,3637820,0,0,4219.2129 -3319,4098,7484,7483,-9,-9,3,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,8.9138708,9.0336304,0,1,0,-9,7,0,4,34.033569,0,0,0,56,2,4,1,-9,-9,2019,1,1,10,0,45,43,15,1,0,1,0,18.716393,18.716393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,51.830002,57.200001,5,1,1,0,0,9,5,0,614.5,3637820,0,0,4219.2129 -3320,4099,7485,7486,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,3,0,3.5435286,3.5992746,1,0,-9,6,0,-2,-51.50071,0,0,0,86,2,3,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.1882415,3.6045806,8.8361073,1,50.91,41.380001,61.189999,39.41,5,3,4,0,0,11,2,1,659.5,734784,0,0,802.37439 -3320,4099,7486,7485,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,0,3,0,5.3078599,5.2294054,1,0,-9,6,0,2,3.9531476,0,0,0,84,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,8.6435528,5.5984159,0,0,0,0,0,1,1,0,5.4467902,5.329865,0,0,61.189999,39.41,50.91,41.380001,6,1,1,0,0,11,2,1,659.5,734784,0,0,802.37439 -3320,4100,7487,-9,7485,7486,3,1,1,43,2,0,0,0,2,-9,1,1,0,0,4,9.6296291,9.7015114,0,3,0,0,0,-9,0,-938.66028,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8947706,0,0,0,52,56,-9,-9,6,1,1,0,0,11,5,1,1021,-20433.115,0,0,9190.8994 -3321,4101,7488,7489,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,6.9914789,7.0400128,0,1,0,-9,7,0,3,5.0268602,0,0,0,58,1,3,1,2,2,2019,1,2,21,7,31,47,15,1,1,1,0,5.3835464,5.3835464,0,0,0,0,0,0,0,14.5,0,0,0,0,0,18.2684,3,34.07,25.15,57.330002,53.459999,4,1,1,0,0,10,4,1,1980,526585.88,0,0,1533.1169 -3321,4101,7489,7488,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,7.976954,8.4458656,0,1,0,-9,7,0,-3,-19.846819,0,0,0,61,2,2,1,-9,-9,2019,1,1,10,0,40,52,15,1,0,1,0,10.851153,10.851153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,34.07,25.15,5,1,1,0,0,10,4,1,1980,526585.88,0,0,1533.1169 -3322,4102,7490,7492,-9,-9,2,1,1,49,1,0,1,0,1,-9,1,1,0,0,3,8.4965439,8.8553467,0,2,0,-9,30,0,1,0,0,0,0,48,1,5,1,2,2,2019,1,3,7,0,50,40,15,1,0,1,0,12.571824,12.571824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,59.43,58.049999,6,1,1,0,0,9,5,1,851,397953.25,0,0,3719.821 -3322,4102,7491,-9,7492,7490,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-936.2572,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,9,5,1,851,397953.25,0,0,3719.821 -3322,4102,7492,7490,-9,-9,3,1,0,48,1,0,1,0,1,-9,1,1,0,0,5,8.5618429,8.5407324,0,2,0,-9,29,0,-1,0,0,0,0,49,1,3,1,2,2,2019,1,2,6,0,35,30,15,1,0,1,0,15.587626,15.587626,0,0,0,0,0,0,0,0,1,1,0,5.1787019,0,0,0,59.43,58.049999,57.330002,53.459999,7,1,1,0,0,9,5,1,851,397953.25,0,0,3719.821 -3323,4103,7493,7494,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,9.8077765,9.4960728,0,1,0,-9,8,0,0,68.765869,0,0,0,50,1,4,1,-9,-9,2019,1,1,10,0,50,50,15,1,0,1,0,39.674614,39.674614,0,0,0,0,0,0,0,2,0,0,0,2.5029898,0,8.1725206,3,54.200001,57.490002,51.130001,53.41,7,1,1,0,0,12,5,1,2550.5,1334569.8,0,0,11940.337 -3323,4103,7494,7493,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,8.9867945,8.8940773,0,1,0,-9,14,0,0,-4.493515,0,0,0,50,1,4,1,2,2,2019,1,2,6,0,45,40,15,1,0,1,0,24.973711,24.973711,0,0,0,0,0,0,0,14.5,0,0,0,5.1751699,0,19.284492,3,51.130001,53.41,54.200001,57.490002,6,1,1,0,0,12,5,1,2550.5,1334569.8,0,0,11940.337 -3324,4104,7495,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,0,5,8.3199387,8.1529799,0,3,0,0,0,-9,0,-1089.8909,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,70,60,15,1,0,-9,0,9.6703768,9.6703768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,7,4,0,110,475348.84,0,0,2303.9775 -3325,4105,7496,7497,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.6827693,6.6946578,1,0,-9,11,0,-1,64.938103,0,0,0,71,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3907039,6.3640127,0,0,51.470001,53.169998,47.790001,53.790001,6,1,1,0,0,12,2,1,1119.5,1909334,0,0,1837.8446 -3325,4105,7497,7496,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.6100726,7.1121297,1,0,-9,50,0,1,-104.85104,0,0,0,70,2,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3312142,7.0783639,0,0,47.790001,53.790001,51.470001,53.169998,6,1,1,0,0,12,2,1,1119.5,1909334,0,0,1837.8446 -3326,4106,7498,7499,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,5,8.0989847,8.1621914,0,1,0,-9,6,0,-2,-101.49801,0,0,0,53,2,4,1,2,2,2019,1,2,5,0,38,37,15,1,0,1,0,7.8967371,7.8967371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,37.419998,60.490002,6,1,1,0,0,13,3,1,538.5,977643.75,0,0,495.92316 -3326,4106,7499,7498,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,6.2849131,6.2845278,0,1,0,-9,6,0,2,-156.04234,0,0,0,51,1,5,1,3,3,2019,1,1,8,0,12,14,15,1,0,1,0,5.9548893,5.9548893,0,0,0,0,0,0,0,7,0,0,0,2.9650581,0,8.583744,3,37.419998,60.490002,57.060001,57.759998,6,1,1,0,0,13,3,1,538.5,977643.75,0,0,495.92316 -3327,4107,7500,7501,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.3981838,8.5724125,0,1,0,-9,3,0,1,-26.376087,0,1,0,27,2,2,3,-9,-9,2019,2,1,19,7,40,18,15,1,1,3,0,15.247231,15.247231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.209999,61.330002,34.900002,46.209999,5,1,1,0,0,2,4,0,1205.5,340595.25,0,0,1133.7188 -3327,4107,7501,7500,-9,-9,1,1,0,27,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,3,0,-1,10.054614,0,1,1,28,2,4,1,-9,-9,2019,3,2,13,2,0,60,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.900002,46.209999,40.209999,61.330002,4,1,1,1,0,2,4,0,1205.5,340595.25,0,0,1133.7188 -3328,4108,7502,7503,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,8.2180662,7.9909534,0,2,0,-9,30,0,-3,-112.99378,0,0,0,55,1,4,1,2,2,2019,1,2,7,0,29,27,15,1,0,1,0,10.354952,10.354952,0,0,0,0,0,0,0,0,1,1,0,3.8761899,0,0,0,60.98,40.77,59.290001,49.68,6,1,1,0,0,4,4,1,321,1855159.8,0,0,3110.8274 -3328,4108,7503,7502,-9,-9,2,1,1,55,1,0,1,0,1,-9,2,1,0,0,4,8.9053564,8.6378088,0,2,0,-9,32,0,3,54.198162,0,0,0,52,2,3,1,2,2,2019,1,1,8,0,38,38,15,1,0,1,0,20.468592,20.468592,0,0,0,0,0,0,0,0,1,1,0,2.4319067,0,0,0,59.290001,49.68,60.98,40.77,6,1,1,0,0,4,4,1,321,1855159.8,0,0,3110.8274 -3328,4109,7504,-9,7502,7503,3,1,0,18,2,0,1,1,2,0,7,2,0,0,3,2.9335816,3.0282528,0,3,0,0,0,-9,0,-960.15778,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.310001,61.939999,-9,-9,4,1,1,0,0,4,4,1,1100,49551.98,0,0,266.44012 -3329,4110,7505,7506,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,60,0,-1,-45.044346,0,0,0,79,3,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,9.4446039,0,0,0,0,0,1,1,0,4.5625496,0,0,0,43.849998,31.58,56,51,6,1,1,0,0,7,2,1,1042,540408.75,0,0,313.14984 -3329,4110,7506,7505,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,4,0,6.5256138,6.8534417,1,0,-9,60,0,1,39.249989,0,0,0,78,3,2,3,-9,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2953019,6.7851357,0,0,56,51,43.849998,31.58,7,1,1,0,0,7,2,1,1042,540408.75,0,0,313.14984 -3330,4111,7507,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,2,7.8176117,7.8248439,5.8418207,3,0,0,0,-9,0,-1084.51,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,20,20,15,1,1,-9,0,11.675819,11.675819,0,0,0,0,0,0,0,0,1,0,1,5.3359966,0,0,0,20.290001,57.759998,-9,-9,1,1,1,0,1,6,3,1,1084,405609.84,0,0,480.75198 -3330,4112,7508,-9,7507,-9,2,1,0,18,2,0,0,1,2,0,7,2,0,0,4,5.8585515,5.9631596,0,3,0,0,0,-9,0,-1060.0402,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.209999,60.790001,-9,-9,5,1,1,0,0,6,2,1,104,120940.56,0,0,-392.29395 -3331,4113,7509,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,0,4,9.0042343,8.9512749,0,3,0,0,0,-9,0,-925.1767,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,35,0,15,1,0,-9,0,28.49955,28.49955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,6,1,1,0,0,7,5,1,355,999736.56,0,0,3590.5452 -3332,4114,7510,-9,7511,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1043.6019,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,2,1,450,57653.727,0,0,700.10736 -3332,4114,7511,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,2,1,0,0,4,7.3302279,7.2198396,0,4,0,-9,0,1,0,-1006.4192,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,23,15,15,1,0,-9,0,8.5933743,8.5933743,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,10,2,1,450,57653.727,0,0,700.10736 -3333,4115,7512,7513,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,0,2,8.1478062,8.201539,2.8619645,1,0,1,1,-9,6,-26.32789,0,0,0,55,3,1,3,-9,-9,2019,2,1,7,0,54,48,15,1,0,3,0,7.8660817,7.8660817,0,0,0,0,0,0,0,0,1,1,0,0,2.9386749,0,0,50.759998,46.32,53.029999,15.05,6,1,1,0,0,4,3,0,795.5,1937193.5,0,0,2581.8013 -3333,4115,7513,7512,-9,-9,1,1,0,55,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,1,1,-9,-6,40.944717,0,0,0,61,3,2,1,3,3,2019,3,2,26,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.029999,15.05,50.759998,46.32,2,1,1,0,0,4,3,0,795.5,1937193.5,0,0,2581.8013 -3333,4116,7514,-9,7513,7512,3,1,1,31,2,0,0,0,3,-9,3,3,0,1,5,0,0,0,3,0,0,0,-9,0,-957.88885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.330002,51.360001,-9,-9,2,1,1,1,0,4,1,0,552,0,0,0,1032.1847 -3334,4117,7515,-9,-9,-9,1,1,0,19,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1132.2173,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.110001,47.470001,-9,-9,2,1,1,0,0,6,1,0,428,-10955.963,0,0,1155.3821 -3335,4118,7516,7517,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,0,3,7.4493966,7.6591506,0,1,0,-9,7,0,-5,57.560921,0,0,0,52,2,2,3,-9,-9,2019,2,1,12,0,65,60,15,1,0,3,0,3.2556472,3.2556472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.220001,44.43,32.02,43.720001,3,1,1,0,0,6,3,1,749,-16902.365,0,0,2216.1963 -3335,4118,7517,7516,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,0,2,0,6.8427424,6.8742332,1,0,-9,7,0,5,1.6966882,0,0,0,47,3,3,1,3,-9,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.2972159,0,16.959717,3,32.02,43.720001,44.220001,44.43,2,1,1,0,0,6,3,1,749,-16902.365,0,0,2216.1963 -3336,4119,7518,7519,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,9.5297117,9.1714144,0,1,0,-9,10,0,-8,-110.43412,0,0,1,42,2,2,1,2,2,2019,1,1,14,4,50,55,15,1,1,1,0,23.526087,23.526087,0,0,0,0,0,0,0,0,0,0,0,4.7807202,0,0,0,40.580002,60.950001,37.43,57.470001,4,1,1,0,0,2,5,1,533,2219100,0,0,2901.0254 -3336,4119,7519,7518,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,10,0,8,61.697208,0,0,0,34,1,4,1,-9,-9,2019,1,2,23,8,0,60,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.43,57.470001,40.580002,60.950001,3,1,1,0,1,2,5,1,533,2219100,0,0,2901.0254 -3337,4120,7520,7521,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,5,0,7.2147026,7.8108263,1,0,-9,4,0,-2,115.04281,0,0,0,71,2,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3988748,0,0,46.880001,60.959999,59.43,58.049999,1,1,1,0,0,10,5,1,720,2163610,0,0,6668.6133 -3337,4120,7521,7520,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,9.0688305,8.972127,1,0,-9,4,0,2,-42.352962,0,0,0,69,3,5,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8994589,8.9962397,0,0,59.43,58.049999,46.880001,60.959999,7,1,1,0,0,10,5,1,720,2163610,0,0,6668.6133 -3338,4121,7522,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,4,8.3394718,8.1397982,0,3,0,0,0,-9,0,-1024.506,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,39,23,15,1,0,-9,0,12.217806,12.217806,0,0,0,0,0,0,0,27.5,1,1,0,8.4487629,0,32.247047,3,57.759998,54.509998,-9,-9,7,1,1,0,0,10,4,1,737,238603.05,0,0,2521.7732 -3339,4122,7523,7524,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,23,0,11,-128.68604,0,0,0,49,2,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1928823,0,0,0,60.869999,44.959999,57.330002,53.459999,6,1,1,0,0,7,4,1,2309,-21233.742,0,0,1567.1978 -3339,4122,7524,7523,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.5645046,8.429389,0,1,0,-9,23,0,-11,-12.512798,0,0,0,60,1,3,3,2,2,2019,2,1,6,0,37,37,15,1,0,4,0,14.372993,14.372993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,60.869999,44.959999,6,1,1,0,0,7,4,1,2309,-21233.742,0,0,1567.1978 -3340,4123,7525,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,1,1,0,0,3,8.3748789,8.7878714,7.6628599,3,0,0,0,-9,0,-960.54993,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,20,30,15,1,0,-9,0,20.080753,20.080753,0,0,0,0,0,0,0,0,0,0,0,7.6485157,7.9581571,0,0,50.709999,52.349998,-9,-9,6,1,1,0,0,5,5,1,1483,764323.5,0,0,3851.188 -3341,4124,7526,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,1,1,0,0,4,0,6.7118983,6.591907,3,0,0,0,-9,0,-988.18951,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,48,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4267373,0,0,54.470001,46.27,-9,-9,6,1,1,0,0,11,2,0,165,321540.47,0,0,649.75519 -3342,4125,7527,-9,-9,-9,1,1,1,93,3,0,0,0,3,-9,4,3,0,0,2,0,5.8106117,5.6770697,3,0,0,0,-9,0,-921.6546,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,32.276772,0,0,0,0,1,1,0,0,5.5649333,0,0,29.440001,39.919998,-9,-9,5,3,4,0,0,6,2,1,393,312061.09,0,0,777.79431 -3343,4126,7528,7529,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.5827122,8.5162821,0,1,0,-9,5,0,-1,66.328743,0,1,1,29,1,5,1,2,2,2019,1,2,10,0,43,45,15,1,0,1,0,16.064962,16.064962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,57.060001,57.759998,5,1,1,0,0,8,5,0,784,-5238.5742,0,0,4891.7905 -3343,4126,7529,7528,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,5,8.7833605,8.8481483,0,1,0,-9,5,0,1,36.2132,0,1,0,28,1,4,1,-9,-9,2019,1,1,7,0,48,52,15,1,0,1,0,16.025564,16.025564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54.200001,57.490002,6,1,1,0,0,8,5,0,784,-5238.5742,0,0,4891.7905 -3344,4127,7530,-9,7534,7531,2,1,0,8,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,908.66669,59403.652,0,0,1954.6517 -3344,4127,7531,7534,-9,-9,4,1,1,37,1,2,4,0,2,-9,1,1,0,0,4,7.5469341,7.7274809,0,2,0,-9,6,0,3,-36.562851,0,0,0,34,2,3,3,-9,-9,2019,2,1,10,1,40,55,15,1,0,3,0,5.4879384,5.4879384,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,57,48.939999,54.950001,5,1,1,0,0,9,2,0,908.66669,59403.652,0,0,1954.6517 -3344,4127,7532,-9,7534,7531,3,1,0,7,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.76373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,908.66669,59403.652,0,0,1954.6517 -3344,4127,7533,-9,7534,7531,6,1,1,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-986.55872,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,2,0,908.66669,59403.652,0,0,1954.6517 -3344,4127,7534,7531,-9,-9,1,1,0,34,1,2,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-3,78.373657,0,0,1,37,2,4,1,2,3,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.939999,54.950001,51,57,5,1,1,0,1,9,2,0,908.66669,59403.652,0,0,1954.6517 -3344,4127,7535,-9,7534,7531,5,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.55823,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,2,0,908.66669,59403.652,0,0,1954.6517 -3345,4128,7536,-9,7539,-9,1,1,0,38,2,0,3,0,2,-9,2,1,0,0,4,7.9580064,7.7224236,0,3,0,0,0,-9,0,-999.26855,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,31,0,15,1,1,-9,1,8.8265982,8.8265982,0,0,0,0,0,0,0,27.5,1,1,0,0,0,13.023294,3,40.950001,46,-9,-9,5,1,1,0,0,4,3,0,315,92834.43,0,0,1770.3181 -3345,4129,7537,-9,7539,-9,2,1,1,32,2,0,3,0,2,-9,2,1,0,0,3,6.749074,6.8014646,0,3,0,0,0,-9,0,-941.10999,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,12,40,37,15,1,1,-9,1,2.8559809,2.8559809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,41.419998,-9,-9,4,1,1,0,0,4,2,0,638,-12910.668,0,0,1119.6345 -3345,4130,7538,-9,7539,-9,3,1,1,34,2,0,3,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1020.7213,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.95041966,0,0,0,46.970001,28.34,-9,-9,4,1,1,0,0,4,1,0,3755,0,0,0,295.17313 -3345,4131,7539,-9,-9,-9,4,1,0,61,3,0,3,0,2,-9,4,3,0,1,1,0,6.2635751,6.380362,4,0,0,0,-9,0,-959.25281,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4748006,0,0,36.029999,18.379999,-9,-9,1,1,1,0,0,4,2,0,562,410269.25,0,0,1745.7037 -3345,4132,7540,-9,-9,7541,6,1,0,16,2,0,3,0,-9,-9,-9,2,0,0,1,0,0,0,3,0,0,0,-9,0,-982.71063,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,4,3,0,1169.75,-59189.449,0,0,45.131279 -3345,4132,7541,-9,7539,-9,5,1,1,36,2,0,3,0,2,-9,2,1,0,0,4,7.5408854,7.2788396,0,3,0,0,0,-9,0,-1172.4163,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,4,1,1,0,0,4,3,0,1169.75,-59189.449,0,0,45.131279 -3345,4132,7542,-9,-9,7541,7,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1036.9219,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,1169.75,-59189.449,0,0,45.131279 -3345,4132,7543,-9,-9,7541,8,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-920.95044,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,1169.75,-59189.449,0,0,45.131279 -3345,4133,7544,-9,-9,-9,9,1,1,64,2,0,3,0,3,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1113.6108,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,1,1,1,1,4,1,0,290,38396.043,0,0,1148.9744 -3346,4134,7545,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,4,0,7.7031088,7.1586428,3,0,0,0,-9,0,-1095.6781,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1663346,7.1499486,0,0,63.09,47.919998,-9,-9,6,1,1,0,0,4,3,1,170,721050.44,0,0,1264.8872 -3347,4135,7546,-9,-9,-9,1,1,1,84,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1090.9585,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,8,1,0,271,3566.6011,0,0,1156.0736 -3348,4136,7547,7550,-9,7552,2,1,1,53,1,0,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,7,-22.209332,0,0,0,46,1,4,1,-9,3,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,54,51.490002,57.57,6,2,3,1,0,8,2,1,897,484006.03,0,0,1648.6129 -3348,4136,7548,-9,7550,7547,4,1,0,16,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.71991,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,2,1,897,484006.03,0,0,1648.6129 -3348,4136,7549,-9,7550,7547,6,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.5107,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,1,897,484006.03,0,0,1648.6129 -3348,4136,7550,7547,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,4,7.8960581,8.0059233,0,2,0,-9,25,0,-7,-48.150288,0,0,0,53,3,4,3,-9,-9,2019,2,2,11,0,17,17,15,1,0,3,0,19.719673,19.719673,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.142412,3,51.490002,57.57,53,54,6,2,3,0,0,8,2,1,897,484006.03,0,0,1648.6129 -3348,4137,7551,-9,7550,7547,3,1,0,21,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1038.6346,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,14,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.189999,39.41,-9,-9,6,2,3,1,0,8,1,1,360,39625,0,0,0 -3348,4138,7552,-9,-9,-9,5,1,1,84,3,0,2,0,3,-9,4,3,0,0,3,0,7.5523367,7.676888,4,0,0,0,-9,0,-938.1474,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0685734,7.9397593,0,0,55,45,-9,-9,6,2,3,0,0,8,2,1,225,686827.56,0,0,1660.7003 -3349,4139,7553,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-881.75269,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,11.2,-9,-9,4,1,1,0,0,1,1,0,503,-12377.324,0,0,1178.3669 -3350,4140,7554,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,0,4,5.7871022,6.8777952,6.51826,3,0,0,0,-9,0,-1013.9398,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3393087,0,0,0,48.810001,59.91,-9,-9,6,2,3,0,0,10,2,0,175,-179904.39,0,0,234.62529 -3351,4141,7555,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-864.41034,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8294454,0,0,0,59.450001,33.75,-9,-9,3,1,1,0,0,5,1,1,66,-299836.63,0,0,516.04755 -3352,4142,7556,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1016.9012,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.989821,0,0,0,0,1,1,0,0,0,0,0,54.509998,36.040001,-9,-9,7,1,1,0,0,11,1,0,546,-22871.994,0,0,2266.4358 -3353,4143,7557,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,1,3,6.9500327,6.4499211,0,3,0,0,0,-9,0,-1120.9349,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,10,6,15,1,0,-9,0,8.4612551,8.4612551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.689999,46.48,-9,-9,6,1,1,0,0,11,2,0,263,96411.273,0,0,1617.5896 -3354,4144,7558,7559,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.5171657,6.2394605,1,0,-9,50,0,1,-73.642731,0,0,0,70,1,1,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.126936,6.3333588,0,0,64.400002,25.940001,53.68,21.540001,6,1,1,0,0,7,2,1,802.5,838321.63,0,0,3444.9839 -3354,4144,7559,7558,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,1,1,0,6.8008642,6.7948656,1,0,-9,50,0,-1,105.40411,0,0,0,71,3,2,3,3,2,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6679869,6.6718755,0,0,53.68,21.540001,64.400002,25.940001,5,1,1,0,0,7,2,1,802.5,838321.63,0,0,3444.9839 -3355,4145,7560,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-935.71216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,10.08248,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,2,1,0,473,68151.57,0,0,569.69958 -3356,4146,7561,7562,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,3,0,7.4094038,7.9165077,1,0,-9,33,0,-1,-75.22319,0,0,0,62,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.7394557,7.620822,16.769808,3,58.32,50.220001,36.93,56.27,6,1,1,0,0,4,3,1,1217.5,844037.06,0,0,3467.2163 -3356,4146,7562,7561,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,33,0,1,-45.758591,0,0,0,61,1,3,3,3,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.6877565,0,8.1030607,3,36.93,56.27,58.32,50.220001,4,1,1,0,0,4,3,1,1217.5,844037.06,0,0,3467.2163 -3356,4147,7563,-9,7561,7562,3,1,1,21,2,0,0,0,1,1,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-888.53552,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.93900633,0,0,0,30.940001,61.650002,-9,-9,3,1,1,0,0,4,1,1,1504,-229338.64,0,0,-130.75748 -3357,4148,7564,7565,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,1,0,6.3436518,6.1758175,1,0,-9,61,0,2,-10.327898,0,0,0,83,2,2,3,3,3,2019,4,2,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3999562,0,0,44.759998,21.719999,53.48,32.810001,3,1,1,0,0,2,2,1,1322,72492.953,0,0,2186.0486 -3357,4148,7565,7564,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,1,2,0,5.3115549,5.1542912,1,0,-9,61,0,-2,-84.593834,0,0,0,85,2,1,3,-9,-9,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.8326912,80.722412,1,53.48,32.810001,44.759998,21.719999,5,1,1,0,0,2,2,1,1322,72492.953,0,0,2186.0486 -3357,4149,7566,-9,7565,7564,3,1,1,49,2,0,0,0,2,-9,1,1,0,0,5,3.430655,3.7834811,0,3,0,0,0,-9,0,-1032.7847,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,.11125866,.11125866,0,0,0,0,0,0,0,14.5,1,1,0,0,0,0,3,54.689999,57.470001,-9,-9,5,1,1,0,0,2,1,1,1082,22656.496,0,0,405.25046 -3358,4150,7567,7568,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.7049713,8.7999477,0,1,0,-9,10,0,9,-35.405739,0,0,0,40,2,3,1,2,2,2019,1,2,12,1,44,43,15,1,0,1,0,16.193989,16.193989,0,0,0,0,0,0,0,2,0,0,0,3.9408612,0,8.9458179,3,42.529999,52.150002,42.57,37.110001,3,1,1,0,0,6,5,1,1391.5,53656.844,0,0,1972.2668 -3358,4150,7568,7567,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,0,3,7.569201,7.646246,0,1,0,-9,10,0,0,107.85526,0,0,1,49,2,3,1,2,3,2019,1,1,14,2,0,46,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7.8559904,3,42.57,37.110001,42.529999,52.150002,3,1,1,0,0,6,5,1,1391.5,53656.844,0,0,1972.2668 -3359,4151,7569,7570,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.5355806,8.6655445,0,1,0,-9,29,0,0,248.04965,0,0,0,51,1,4,1,2,2,2019,1,1,12,0,44,50,15,1,0,1,0,18.94252,18.94252,0,0,0,0,0,0,0,0,0,0,0,3.8647459,0,0,0,51.919998,47.919998,57.16,56.150002,6,1,1,0,0,2,5,1,230.5,208494.22,0,0,4059.2029 -3359,4151,7570,7569,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,4,8.4439535,8.2620335,0,1,0,-9,29,0,0,96.605728,0,0,0,51,1,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,11.952544,11.952544,0,0,0,0,0,0,0,0,0,0,0,6.1486869,0,0,0,57.16,56.150002,51.919998,47.919998,6,1,1,0,0,2,5,1,230.5,208494.22,0,0,4059.2029 -3359,4152,7571,-9,7569,7570,3,1,0,21,2,0,0,1,1,0,7,2,0,0,5,7.7981682,8.0717106,0,3,0,0,0,-9,0,-1068.1028,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.43712848,0,0,0,53.75,59.470001,-9,-9,7,1,1,0,0,2,3,1,224,-132335.3,0,0,677.03485 -3359,4153,7572,-9,7569,7570,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,7.8541679,7.6652446,0,3,0,0,0,-9,0,-1012.0586,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3746397,0,0,0,41.299999,60.77,-9,-9,7,1,1,0,0,2,4,1,902,584.54449,0,0,1998.2499 -3360,4154,7573,-9,-9,-9,1,1,0,25,2,0,1,0,2,-9,6,3,0,0,4,0,5.7709351,5.7699828,4,0,0,0,-9,0,-846.96924,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6797643,0,0,0,55.439999,52.990002,-9,-9,6,1,1,0,1,13,2,0,614.5,327581.19,0,0,766.94128 -3360,4154,7574,-9,7573,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1107.2833,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,0,614.5,327581.19,0,0,766.94128 -3361,4155,7575,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,2,1,0,0,3,8.2200804,8.3300524,0,3,0,0,0,-9,0,-1146.0107,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,42,15,1,0,-9,0,10.872098,10.872098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.700001,56.220001,-9,-9,3,1,1,0,0,13,4,0,558,-79132.578,0,0,1588.7595 -3362,4156,7576,7577,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,8.8736639,8.8075037,0,1,0,-9,3,0,17,20.285313,0,0,0,45,2,3,1,3,3,2019,1,2,9,0,70,60,15,1,0,1,0,11.127206,11.127206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.689999,50.509998,65.199997,47.139999,6,1,1,0,0,10,5,1,678.5,884220,0,0,3831.1006 -3362,4156,7577,7576,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,7.6943927,7.8276978,0,1,0,-9,3,0,-17,-53.331596,0,0,0,62,2,3,1,-9,-9,2019,1,1,1,0,63,0,15,1,0,1,0,4.7234716,4.7234716,0,0,0,0,0,0,0,0,1,1,0,.7273978,0,0,0,65.199997,47.139999,60.689999,50.509998,6,1,1,0,0,10,5,1,678.5,884220,0,0,3831.1006 -3362,4157,7578,-9,7577,-9,3,1,1,23,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-981.36237,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,33,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.08,40.880001,-9,-9,1,1,1,1,0,10,1,1,2014,167019.52,0,0,1355.386 -3363,4158,7579,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,3,0,7.1906762,7.1658158,3,0,0,0,-9,0,-961.63245,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,27.018984,0,0,0,1,1,0,5.4678941,7.0507312,0,0,48.759998,43.779999,-9,-9,5,1,1,0,0,9,2,1,1466,325215.78,0,0,3047.1035 -3364,4159,7580,-9,7582,7581,2,1,0,16,2,0,2,1,2,-9,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1129.1465,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.70634305,0,0,0,32.52,54.279999,-9,-9,3,1,1,0,0,7,3,0,475,1374088.3,0,0,1882.8608 -3364,4159,7581,7582,-9,-9,4,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.2803173,7.971231,0,2,0,-9,3,0,-7,-35.240128,0,0,0,50,2,2,3,-9,-9,2019,2,1,12,0,42,35,15,1,0,3,0,11.425008,11.425008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,51.32,42.700001,30.41,5,1,1,0,0,7,3,0,475,1374088.3,0,0,1882.8608 -3364,4159,7582,7581,-9,-9,1,1,0,50,1,0,2,0,2,-9,6,3,0,0,2,0,5.8639154,6.559814,2,0,-9,3,0,7,20.434135,0,0,0,43,2,3,1,-9,3,2019,3,4,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.9756184,0,9.7249565,3,42.700001,30.41,41.23,51.32,3,1,1,0,0,7,3,0,475,1374088.3,0,0,1882.8608 -3364,4159,7583,-9,7582,7581,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.6776,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,3,0,475,1374088.3,0,0,1882.8608 -3365,4160,7584,7585,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.6449943,7.1198735,1,0,-9,8,0,4,27.28826,0,0,0,72,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8044667,7.067112,0,0,57.16,56.150002,61.27,46.029999,7,1,1,0,0,13,3,1,1451.5,965643.75,0,0,3213.8833 -3365,4160,7585,7584,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,8.0969172,7.7135062,1,0,-9,8,0,-4,51.640125,0,0,0,76,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1936817,0,0,61.27,46.029999,57.16,56.150002,7,1,1,0,0,13,3,1,1451.5,965643.75,0,0,3213.8833 -3366,4161,7586,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,4,8.745244,8.6597729,0,3,0,0,0,-9,0,-948.21802,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,36,43,15,1,0,-9,0,18.153664,18.153664,0,0,0,0,0,0,0,0,0,0,0,6.9229665,0,0,0,52.080002,55.93,-9,-9,6,1,1,0,0,9,5,1,348,281351.94,0,0,3722.8083 -3367,4162,7587,7588,-9,-9,1,1,0,27,1,1,2,0,2,-9,2,1,0,0,3,7.51651,7.1835265,0,2,0,-9,2,0,-3,-40.076965,0,1,1,30,2,5,1,2,2,2019,1,3,12,0,47,32,15,1,0,1,0,5.2621775,5.2621775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.52,51.400002,60.990002,53.200001,2,1,1,0,0,7,4,0,910.25,134608.2,0,0,3628.6753 -3367,4162,7588,7587,-9,-9,3,1,1,30,1,1,2,0,2,-9,2,1,0,0,5,8.5247259,8.5544119,0,2,0,-9,2,0,3,81.86232,-9,0,0,27,2,3,1,-9,-9,2019,1,1,12,0,40,0,15,1,0,1,0,14.472303,14.472303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.990002,53.200001,38.52,51.400002,6,1,1,0,0,7,4,0,910.25,134608.2,0,0,3628.6753 -3367,4162,7589,-9,7587,7588,2,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.66455,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,0,910.25,134608.2,0,0,3628.6753 -3367,4162,7590,-9,7587,7588,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.24597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,7,4,0,910.25,134608.2,0,0,3628.6753 -3368,4163,7591,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,7.7031007,7.9045696,0,3,0,0,0,-9,0,-963.34448,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,14,9,15,1,0,-9,0,16.242899,16.242899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,1,5,3,0,278,-76685.484,0,0,2150.8088 -3369,4164,7592,7593,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,0,4.5752125,4.3846397,1,0,-9,10,0,0,80.760338,0,0,0,78,3,1,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4247174,4.6644173,0,0,62.419998,32.41,44.639999,17.75,6,2,3,0,0,8,2,1,1740.5,549216,0,0,1147.2607 -3369,4164,7593,7592,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,10,0,0,75.543945,0,0,0,78,2,2,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,0,0,1.6153938,0,0,2,1,1,0,7.2645063,0,7.729876,3,44.639999,17.75,62.419998,32.41,5,2,3,0,0,8,2,1,1740.5,549216,0,0,1147.2607 -3369,4165,7594,-9,7593,7592,3,1,1,54,3,0,0,0,1,-9,2,1,0,0,2,9.3375826,9.1352234,0,3,0,-9,0,1,0,-1066.7345,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,50,55,15,1,1,-9,1,26.498886,26.498886,0,0,0,0,0,0,0,0,1,1,0,4.5180817,0,0,0,35.040001,49.040001,-9,-9,3,2,3,0,0,8,5,1,117,1820222.6,0,0,4180.7432 -3370,4166,7595,7596,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.4903936,7.475801,1,0,-9,8,0,2,-20.168987,0,0,0,67,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7530365,0,0,54.959999,53.169998,55.950001,36.700001,6,1,1,0,0,1,2,1,647.5,1504701,0,0,1649.7397 -3370,4166,7596,7595,-9,-9,1,1,0,67,1,0,0,0,3,-9,6,3,0,0,2,0,1.5053506,1.5679346,1,0,-9,50,0,-2,-42.95319,0,0,0,69,2,3,3,3,3,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,1,0,1.7668924,0,0,0,0,0,1,1,0,0,1.2861102,0,0,55.950001,36.700001,54.959999,53.169998,6,1,1,0,0,1,2,1,647.5,1504701,0,0,1649.7397 -3371,4167,7597,7598,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,2.1509943,2.0895722,1,0,-9,18,0,17,-4.4558272,0,0,0,55,2,3,1,3,3,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4698942,2.2395797,0,0,42.830002,46.68,46.080002,57.200001,6,3,4,0,0,6,3,1,333.5,429869.19,0,0,860.65039 -3371,4167,7598,7597,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.2068224,8.288125,0,1,0,-9,17,0,-17,62.884621,0,0,0,72,3,2,3,2,3,2019,2,2,10,0,47,47,15,1,0,4,0,12.458157,12.458157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,42.830002,46.68,5,3,4,0,0,6,3,1,333.5,429869.19,0,0,860.65039 -3372,4168,7599,7600,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,5,0,-6,50.267082,0,0,0,65,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0767598,0,0,0,45.259998,57.459999,52,54.509998,7,1,1,0,0,6,2,1,246.5,491027.63,0,0,2111.6545 -3372,4168,7600,7599,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.3941116,7.0596819,1,0,-9,5,0,6,79.338211,0,0,0,59,2,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6321802,7.3257999,0,0,52,54.509998,45.259998,57.459999,6,1,1,0,0,6,2,1,246.5,491027.63,0,0,2111.6545 -3373,4169,7601,7602,-9,-9,2,1,1,71,1,0,0,0,1,-9,1,1,0,0,5,8.2523327,8.0893602,4.9697456,1,0,-9,47,0,3,83.223267,0,0,0,68,2,4,1,3,2,2019,1,1,6,0,50,60,15,1,0,1,0,8.9920921,8.9920921,0,0,0,0,0,0,0,0,1,1,0,0,5.2543631,0,0,59.43,58.049999,51.240002,58.84,3,1,1,0,0,10,4,1,689.5,1773783.5,0,0,3280.6738 -3373,4169,7602,7601,-9,-9,1,1,0,68,1,0,0,0,2,-9,1,1,0,0,4,6.824585,6.903954,0,1,0,-9,47,0,-3,91.169106,0,0,0,71,1,5,1,2,-9,2019,1,2,18,6,24,15,15,1,1,1,0,3.3739228,3.3739228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,59.43,58.049999,6,1,1,0,0,10,4,1,689.5,1773783.5,0,0,3280.6738 -3374,4170,7603,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-974.91913,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,28,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.190001,33.41,-9,-9,2,1,1,0,0,1,1,0,887,73274.969,0,0,290.30899 -3375,4171,7604,7606,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,0,3,8.2798662,7.9841433,0,2,0,-9,2,0,6,-26.350752,0,1,0,22,2,3,3,-9,-9,2019,2,2,13,2,38,40,15,1,0,3,0,14.022526,14.022526,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.1504493,3,52.939999,41.91,51.360001,29.01,3,3,4,0,0,8,3,0,442,-47516.465,0,0,2296.0896 -3375,4171,7605,-9,7606,7604,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.20862,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,8,3,0,442,-47516.465,0,0,2296.0896 -3375,4171,7606,7604,-9,-9,2,1,0,22,1,1,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,-6,172.41676,0,1,1,28,2,3,1,-9,-9,2019,3,1,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.360001,29.01,52.939999,41.91,6,3,4,0,0,8,3,0,442,-47516.465,0,0,2296.0896 -3376,4172,7607,7608,-9,-9,1,1,1,60,1,0,1,0,1,-9,2,1,0,0,2,8.9963198,8.9270821,0,2,0,-9,28,0,9,-33.608402,0,0,0,51,1,3,3,3,2,2019,2,2,6,0,40,42,15,1,0,3,0,20.532434,20.532434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.119999,41.580002,36.529999,25.1,6,4,2,0,0,8,4,1,512.5,3270209.5,0,0,2676.0554 -3376,4172,7608,7607,-9,-9,2,1,0,51,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,28,0,0,-72.201744,0,0,0,60,1,2,1,3,-9,2019,3,1,15,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.529999,25.1,51.119999,41.580002,6,2,3,0,0,8,4,1,512.5,3270209.5,0,0,2676.0554 -3377,4173,7609,7610,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,0,4,8.3366184,8.471776,0,1,0,-9,10,0,13,-125.79408,0,0,0,50,1,4,1,3,3,2019,1,1,7,0,40,35,15,1,0,1,0,8.7007456,8.7007456,0,0,0,0,0,0,0,0,0,0,0,2.0553286,0,0,0,57.16,56.150002,49.41,58.279999,6,1,1,0,0,7,4,1,710,606067.88,0,0,4320.6421 -3377,4173,7610,7609,-9,-9,1,1,0,50,1,0,0,0,1,-9,1,1,0,0,4,6.3680077,6.7274132,0,1,0,-9,10,0,-13,-71.237434,0,0,0,63,3,4,1,2,3,2019,1,2,9,0,42,40,15,1,0,1,0,2.1981013,2.1981013,0,0,0,0,0,0,0,0,0,0,0,8.968174,0,0,0,49.41,58.279999,57.16,56.150002,5,1,1,0,0,7,4,1,710,606067.88,0,0,4320.6421 -3378,4174,7611,7613,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,0,4,8.8876171,8.9498596,0,2,0,-9,11,0,0,190.73225,0,0,0,38,1,4,1,-9,-9,2019,1,1,7,0,42,40,15,1,0,1,0,23.266956,23.266956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.080002,54.77,57.16,56.150002,6,1,1,0,0,2,5,1,678.33331,19548.686,0,0,5177.2622 -3378,4174,7612,-9,7613,7611,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.87384,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,678.33331,19548.686,0,0,5177.2622 -3378,4174,7613,7611,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.8143406,8.8439407,0,2,0,-9,11,0,0,11.703064,0,0,1,38,2,4,1,2,1,2019,1,2,9,0,41,38,15,1,0,1,0,16.957819,16.957819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.080002,54.77,6,1,1,0,0,2,5,1,678.33331,19548.686,0,0,5177.2622 -3379,4175,7614,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,7.9363499,7.7684679,0,3,0,0,0,-9,0,-930.74939,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,38,15,1,0,-9,0,8.7454605,8.7454605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,4,0,2844,38738.012,0,0,1586.4865 -3380,4176,7615,7616,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,8.5538397,8.5309229,0,1,0,-9,29,0,4,0,0,0,0,49,1,4,1,2,1,2019,1,2,9,0,65,65,15,1,0,1,0,8.6209869,8.6209869,0,0,0,0,0,0,0,0,0,0,0,3.9257264,0,0,0,57.330002,53.459999,55.189999,54.259998,6,1,1,0,0,4,5,1,404.5,874249.56,0,0,4532.4912 -3380,4176,7616,7615,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.5070763,8.4151535,0,1,0,-9,29,0,-4,0,0,0,0,53,1,3,1,2,2,2019,1,1,10,0,41,37,15,1,0,1,0,18.510824,18.510824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,57.330002,53.459999,6,1,1,0,0,4,5,1,404.5,874249.56,0,0,4532.4912 -3380,4177,7617,-9,7616,7615,3,1,0,19,2,0,0,0,2,-9,7,2,0,0,5,0,6.1610584,6.5278597,3,0,0,0,-9,0,-1023.868,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1808925,0,0,0,46.599998,58.639999,-9,-9,6,1,1,0,0,4,2,1,1208,-45131.336,0,0,-200.9967 -3381,4178,7618,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,1,2,0,6.1013565,6.0107307,3,0,0,0,-9,0,-951.1546,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9193358,0,0,45.82,33.470001,-9,-9,4,1,1,0,0,10,2,0,307,309950.72,0,0,704.71155 -3382,4179,7619,7620,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,0,4,7.8152037,7.5033097,5.1595907,2,0,-9,9,0,5,-5.2736974,0,0,0,39,1,4,1,2,1,2019,1,2,6,0,39,0,15,1,0,1,0,6.880631,6.880631,0,0,0,0,0,0,0,0,1,1,0,5.058846,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,10,5,1,2152.6667,605688.19,0,0,3135.4451 -3382,4179,7620,7619,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,4,8.6894016,9.1125898,0,2,0,-9,9,0,-5,151.92345,0,0,1,44,1,4,1,-9,-9,2019,1,1,9,0,40,38,15,1,0,1,0,18.335756,18.335756,0,0,0,0,0,0,0,0,1,1,0,3.5678205,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,10,5,1,2152.6667,605688.19,0,0,3135.4451 -3382,4179,7621,-9,7620,7619,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.42316,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,2152.6667,605688.19,0,0,3135.4451 -3383,4180,7622,7625,-9,-9,2,1,0,33,1,1,3,0,2,-9,2,1,0,0,4,8.6748276,8.6306171,0,2,0,-9,6,0,-2,-136.87381,0,0,1,35,2,4,1,-9,-9,2019,1,1,11,0,35,34,15,1,0,1,0,23.524185,23.524185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,12,4,1,1340.4,-7261.6289,0,0,3488.4333 -3383,4180,7623,-9,7622,7625,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.9525,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,1340.4,-7261.6289,0,0,3488.4333 -3383,4180,7624,-9,7622,7625,4,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.97034,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,1340.4,-7261.6289,0,0,3488.4333 -3383,4180,7625,7622,-9,-9,1,1,1,35,1,1,3,0,2,-9,2,1,0,0,4,7.8967066,8.1655464,0,2,0,-9,6,0,2,-79.045418,0,0,0,33,2,4,1,2,2,2019,1,2,7,0,47,48,15,1,0,1,0,8.6288013,8.6288013,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,12,4,1,1340.4,-7261.6289,0,0,3488.4333 -3383,4180,7626,-9,7622,7625,3,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.9615,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,1340.4,-7261.6289,0,0,3488.4333 -3384,4181,7627,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,5.1771536,5.0876579,3,0,0,0,-9,0,-1086.4742,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5149207,4.9564261,0,0,57.07,46.709999,-9,-9,6,1,1,0,0,7,2,1,376,188869.86,0,0,1360.6476 -3385,4182,7628,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-923.18103,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.099998,35.07,-9,-9,3,1,1,0,0,10,1,0,184,-76412.688,0,0,628.79633 -3386,4183,7629,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1013.1758,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,8,1,0,578,96582.672,0,0,677.66974 -3387,4184,7630,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,3,0,7.1776509,7.0619841,3,0,0,0,-9,0,-881.64722,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,15.827393,0,0,1,1,0,5.1579089,7.4167476,0,0,47.869999,37.529999,-9,-9,6,1,1,0,0,1,2,1,213,183138.02,0,0,1139.5322 -3388,4185,7631,7632,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,0,3,0,5.8020802,6.3305492,1,0,-9,60,0,3,15.987357,0,0,0,81,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6976433,6.0181775,0,0,53,45,54,46,6,1,1,0,0,13,2,1,1426.5,146971.77,0,0,4105.6777 -3388,4185,7632,7631,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,4.895401,4.8196406,1,0,-9,8,0,-3,96.140594,0,0,0,84,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0017958,4.5880861,0,0,54,46,53,45,6,1,1,0,0,13,2,1,1426.5,146971.77,0,0,4105.6777 -3389,4186,7633,7634,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,6.58112,6.7416115,0,1,0,-9,35,0,-5,157.0679,0,0,0,61,2,3,1,2,3,2019,1,1,8,0,16,16,15,1,0,1,0,7.2726803,7.2726803,0,0,0,0,0,0,0,2,0,0,0,0,0,1.2076712,3,60.880001,31.4,56.470001,44.139999,5,1,1,0,0,10,4,0,468,800995,0,0,1178.6482 -3389,4186,7634,7633,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.3820658,8.0343332,0,1,0,-9,6,0,5,-79.080116,0,0,0,56,2,3,1,2,2,2019,1,2,11,1,44,40,15,1,0,1,0,8.958827,8.958827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,44.139999,60.880001,31.4,6,1,1,0,0,10,4,0,468,800995,0,0,1178.6482 -3389,4187,7635,-9,7633,7634,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,3,8.2942133,8.2661657,0,3,0,0,0,-9,0,-857.42706,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,30,0,15,1,0,-9,1,11.42224,11.42224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.150002,41.419998,-9,-9,5,1,1,0,0,10,4,0,470,86198.617,0,0,1891.5541 -3390,4188,7636,7637,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.6739841,7.9200087,1,0,-9,37,0,-4,0,0,0,0,71,2,4,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1841669,7.67665,0,0,51.080002,54.77,56.009998,49.779999,6,1,1,0,0,9,4,1,290.5,2871666.5,0,0,3137.7729 -3390,4188,7637,7636,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.1497097,7.6694922,1,0,-9,37,0,4,0,0,0,0,67,2,4,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8054042,0,0,56.009998,49.779999,51.080002,54.77,6,1,1,0,0,9,4,1,290.5,2871666.5,0,0,3137.7729 -3391,4189,7638,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,5,9.0462408,8.6885939,0,3,0,0,0,-9,0,-825.54279,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,43,41,15,1,0,-9,0,16.783895,16.783895,0,0,0,0,0,0,0,0,0,0,0,1.4033998,0,0,0,52.970001,54.310001,-9,-9,6,3,4,0,0,8,5,0,154,-67267.281,0,0,1724.3345 -3392,4190,7639,7640,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,8.1479235,7.6773467,1,0,-9,15,0,5,-19.163546,0,0,0,59,3,1,3,2,2,2019,4,2,16,5,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.6921759,10.105435,2,38.16,44.66,39.32,17.469999,3,1,1,0,0,4,3,1,628.5,916315.75,0,0,1583.3878 -3392,4190,7640,7639,-9,-9,2,1,0,59,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,15,0,-5,-14.418151,0,0,0,64,3,3,3,2,2,2019,4,1,14,3,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,17.469999,38.16,44.66,4,1,1,0,0,4,3,1,628.5,916315.75,0,0,1583.3878 -3393,4191,7641,-9,-9,-9,1,1,0,59,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-924.17395,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.23,13.68,-9,-9,6,1,1,0,0,8,1,0,354,-6991.1313,0,0,468.32315 -3394,4192,7642,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,4,6.8377309,7.9712381,6.0052576,4,0,0,0,-9,0,-957.75342,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,28,44,15,1,0,-9,0,5.9871631,5.9871631,0,0,0,0,0,0,0,0,1,1,0,5.7949481,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,4,3,0,564,-106269.92,0,0,1950.0092 -3395,4193,7643,7644,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,7.9749765,7.8505001,0,1,0,-9,7,0,3,-27.912477,0,0,0,57,2,4,3,3,3,2019,2,2,12,0,35,25,15,1,0,3,0,8.0351744,8.0351744,0,0,0,0,0,0,0,0,0,0,0,2.7700453,0,0,0,55.189999,54.259998,54.200001,57.490002,3,1,1,0,0,8,5,1,697.5,1216838.5,0,0,3416.6086 -3395,4193,7644,7643,-9,-9,2,1,0,57,1,0,0,0,2,-9,3,3,0,0,4,0,8.4547415,8.4252348,1,0,-9,7,0,-3,143.52434,0,0,0,60,2,4,1,3,3,2019,3,1,5,0,0,44,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6270676,8.4542341,0,0,54.200001,57.490002,55.189999,54.259998,5,1,1,1,0,8,5,1,697.5,1216838.5,0,0,3416.6086 -3396,4194,7645,-9,7646,7647,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.2081,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,0,1131,286582.44,0,0,2983.3225 -3396,4194,7646,7647,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,0,2,8.0539303,8.1386585,0,2,0,-9,7,0,1,-36.385155,0,0,0,44,3,4,1,-9,-9,2019,1,2,10,0,42,0,15,1,0,1,0,6.8678088,6.8678088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.610001,43.009998,52,55,5,1,1,0,0,9,4,0,1131,286582.44,0,0,2983.3225 -3396,4194,7647,7646,-9,-9,2,1,1,44,1,0,1,0,3,-9,1,1,0,0,4,8.2832794,8.4682541,0,2,0,-9,7,0,-1,-9.7282372,0,0,0,45,3,2,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,11.425743,11.425743,0,0,0,0,0,0,0,0,1,1,0,1.8581234,0,0,0,52,55,54.610001,43.009998,6,1,1,0,0,9,4,0,1131,286582.44,0,0,2983.3225 -3397,4195,7648,-9,7650,7649,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.84222,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,657.66669,1427918.6,0,0,2223.4199 -3397,4195,7649,7650,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.5030708,8.5948305,0,2,0,-9,10,0,2,2.7229164,0,0,0,45,2,1,1,2,2,2019,1,1,17,5,45,37,15,1,1,1,0,13.3506,13.3506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.09,61.299999,36.619999,25.559999,6,1,1,0,0,12,4,1,657.66669,1427918.6,0,0,2223.4199 -3397,4195,7650,7649,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,1,8.1027842,7.9721789,0,2,0,-9,10,0,-2,23.120985,0,0,0,47,2,4,1,3,2,2019,1,2,12,0,45,40,15,1,0,1,0,9.7934847,9.7934847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.619999,25.559999,34.09,61.299999,3,1,1,0,0,12,4,1,657.66669,1427918.6,0,0,2223.4199 -3397,4196,7651,-9,7650,7649,3,1,0,18,2,0,1,1,2,0,7,2,0,0,3,7.3548493,7.3206573,0,3,0,0,0,-9,0,-1114.3339,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,20,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,54.040001,-9,-9,5,1,1,0,0,12,3,1,587,56299.156,0,0,1089.4519 -3398,4197,7652,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,0,4,7.4766111,7.5747714,0,4,0,0,0,-9,0,-956.48114,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,24,20,15,1,0,-9,0,6.862916,6.862916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,60.330002,-9,-9,6,1,1,0,0,5,2,1,402,-58405.086,0,0,1031.9705 -3398,4197,7653,-9,7652,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1035.2328,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,1,402,-58405.086,0,0,1031.9705 -3399,4198,7654,7655,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,6.3327584,6.1842446,1,0,-9,8,0,-11,-97.474861,0,0,0,76,3,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.179101,5.5647125,0,0,53.619999,46.84,66.519997,32.82,6,1,1,0,0,9,2,1,738.5,555427.88,0,0,1087.3796 -3399,4198,7655,7654,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,6.5416422,6.7170382,1,0,-9,8,0,11,37.173512,0,0,0,65,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,12.803388,0,0,0,0,0,1,1,0,0,6.5474272,0,0,66.519997,32.82,53.619999,46.84,7,1,1,0,0,9,2,1,738.5,555427.88,0,0,1087.3796 -3400,4199,7656,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.2850475,6.2205462,3,0,0,0,-9,0,-951.70264,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0891929,6.234107,0,0,58.889999,48.599998,-9,-9,7,1,1,0,0,13,2,1,392,240173.67,0,0,617.52222 -3401,4200,7657,7658,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,0,3,8.0489082,8.2758331,0,1,0,-9,9,0,-12,16.80917,0,0,0,75,2,4,3,-9,-9,2019,2,1,11,2,16,16,15,1,0,4,0,25.443808,25.443808,0,0,0,0,0,0,0,0,1,1,0,1.1655235,0,0,0,49,48,55.759998,52.639999,5,1,1,0,0,9,3,1,338.5,125127.11,0,0,4006.9431 -3401,4200,7658,7657,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,32,0,12,-16.934919,0,0,0,63,1,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2261152,0,0,0,55.759998,52.639999,49,48,6,1,1,0,0,9,3,1,338.5,125127.11,0,0,4006.9431 -3402,4201,7659,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,7.4422431,7.2937651,0,3,0,0,0,-9,0,-1016.3071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,26,30,15,1,0,-9,0,7.153975,7.153975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.290001,-9,-9,6,1,1,0,0,9,3,0,342,-183110.78,0,0,-273.49103 -3403,4202,7660,-9,7661,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1112.8424,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,1,787.66669,448095.44,0,0,2663.5044 -3403,4202,7661,-9,-9,-9,1,1,0,46,3,0,2,0,3,-9,1,1,0,0,3,8.3265123,8.2832899,0,4,0,0,0,-9,0,-1091.3741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,1,0,-9,0,20.933262,20.933262,0,0,0,0,0,0,0,0,1,1,0,7.5322537,0,0,0,45.490002,50.810001,-9,-9,6,1,1,0,0,4,3,1,787.66669,448095.44,0,0,2663.5044 -3403,4202,7662,-9,7661,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1124.3225,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,4,3,1,787.66669,448095.44,0,0,2663.5044 -3404,4203,7663,7664,-9,-9,1,1,0,25,1,0,0,0,1,-9,7,2,0,0,4,7.7648897,7.9150906,0,1,0,-9,4,0,0,-37.026001,1,1,1,25,1,5,1,-9,-9,2019,3,2,9,1,15,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68187153,0,0,0,54.32,47.77,36.93,54.549999,6,1,1,0,0,7,5,0,594.5,109925.39,0,0,3966.4946 -3404,4203,7664,7663,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,8.6079922,8.4206457,0,1,0,-9,4,0,0,76.209137,0,1,0,25,1,4,2,1,1,2019,2,1,12,2,41,40,15,1,0,2,0,10.975528,10.975528,0,0,0,0,0,0,0,2,1,1,0,3.1115339,0,7.0937805,3,36.93,54.549999,54.32,47.77,6,1,1,0,0,7,5,0,594.5,109925.39,0,0,3966.4946 -3405,4204,7665,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,1,2,8.143652,8.3990345,5.7755227,3,0,0,0,-9,0,-929.00378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,11,17,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5138817,6.1072068,0,0,46.299999,37.259998,-9,-9,5,1,1,0,0,13,4,1,1568,828387.63,0,0,3041.1177 -3406,4205,7666,-9,7667,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.3338,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.639999,54.360001,-9,-9,3,1,1,0,0,10,3,1,243.5,-24516.793,0,0,1915.5118 -3406,4205,7667,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,0,3,7.5054631,7.6997051,6.4646525,4,0,0,0,-9,0,-1114.9117,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,30,0,15,1,0,-9,0,6.8159146,6.8159146,0,0,0,0,0,0,0,0,1,1,0,5.8377032,0,0,0,47.84,45.32,-9,-9,5,1,1,0,0,10,3,1,243.5,-24516.793,0,0,1915.5118 -3407,4206,7668,-9,7669,7670,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.4631,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,2,1,376.75,-32110.209,0,0,1284.0116 -3407,4206,7669,7670,-9,-9,2,1,0,27,1,2,2,0,2,-9,2,1,0,0,3,7.0710349,7.1553283,0,2,0,-9,4,0,-6,160.02362,0,1,1,33,2,4,1,-9,-9,2019,1,1,11,0,21,25,15,1,0,1,0,6.2427349,6.2427349,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,58.150002,52.91,4,1,1,0,0,5,2,1,376.75,-32110.209,0,0,1284.0116 -3407,4206,7670,7669,-9,-9,1,1,1,33,1,2,2,0,2,-9,1,1,0,0,4,6.4530101,6.5521221,0,2,0,-9,4,0,6,-1.2627484,0,0,0,27,2,3,1,-9,-9,2019,1,2,10,0,40,45,15,1,0,1,0,1.9625167,1.9625167,0,0,0,0,0,0,0,0,1,1,0,7.8973746,0,0,0,58.150002,52.91,49.040001,55.860001,6,1,1,0,0,5,2,1,376.75,-32110.209,0,0,1284.0116 -3407,4206,7671,-9,7669,7670,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-920.01166,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,2,1,376.75,-32110.209,0,0,1284.0116 -3408,4207,7672,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,4,8.8539829,8.872077,0,3,0,0,0,-9,0,-1083.252,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,43,43,15,1,0,-9,0,18.820631,18.820631,0,0,0,0,0,0,0,0,0,0,0,7.3072968,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,4,5,1,520,167533.47,0,0,3266.0862 -3409,4208,7673,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-988.51379,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.83,36.360001,-9,-9,1,1,1,0,0,8,1,1,911,79125.5,0,0,243.24947 -3410,4209,7674,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,2,1,0,0,2,6.1535077,6.1044846,0,3,0,-9,0,-9,0,-1132.5099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,12,16,16,15,1,1,-9,0,2.8764944,2.8764944,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6600156,3,20.93,44.830002,-9,-9,1,1,1,0,1,7,2,0,673,-56847.016,0,0,565.45715 -3410,4210,7675,-9,7674,-9,2,1,0,28,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-1033.3817,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.73,30.02,-9,-9,3,4,2,0,1,7,1,0,359,-29207.814,0,0,686.57727 -3410,4211,7676,-9,7674,-9,3,1,1,19,2,0,0,0,2,1,2,1,0,0,4,8.2542229,7.931056,0,3,0,-9,0,-9,0,-998.68518,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,37,0,15,1,0,-9,1,10.866166,10.866166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,7,4,0,393,-109750.52,0,0,2891.626 -3411,4212,7677,-9,7678,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-982.05115,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,13,1,0,500.5,-21350.703,0,0,587.07739 -3411,4212,7678,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1036.1543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,13,1,0,500.5,-21350.703,0,0,587.07739 -3412,4213,7679,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-823.28937,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.102234,3,38.23,54.110001,-9,-9,6,1,1,0,1,9,1,1,849,-209008.78,0,0,1516.2568 -3413,4214,7680,-9,7681,7682,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-897.54187,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,5,3,1,860.66669,-36715.414,0,0,1151.0637 -3413,4214,7681,7682,-9,-9,1,1,0,28,1,1,1,0,2,-9,2,1,0,0,3,7.2209187,7.3110518,0,2,0,-9,4,0,1,-146.69814,0,1,1,27,1,5,1,-9,-9,2019,1,2,5,2,6,20,15,1,0,1,0,21.854572,21.854572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,50.540001,62.09,7,2,3,0,0,5,3,1,860.66669,-36715.414,0,0,1151.0637 -3413,4214,7682,7681,-9,-9,2,1,1,27,1,1,1,0,1,-9,1,1,0,0,5,7.4889688,7.1741261,0,2,0,-9,4,0,-1,29.54612,0,1,0,28,2,3,1,-9,-9,2019,1,1,0,0,32,0,15,1,0,1,0,5.9765997,5.9765997,0,0,0,0,0,0,0,0,1,1,0,3.2860553,0,0,0,50.540001,62.09,43,53,1,2,3,0,0,5,3,1,860.66669,-36715.414,0,0,1151.0637 -3414,4215,7683,-9,-9,-9,1,1,0,21,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-874.79535,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.509998,52.299999,-9,-9,3,2,3,0,0,4,1,0,532,-124687.88,0,0,0 -3415,4216,7684,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-983.16064,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,4,1,1,0,0,1,1,0,308,-22882.83,0,0,1192.0154 -3416,4217,7685,7688,-9,-9,1,1,1,49,1,0,2,0,3,-9,1,1,0,0,2,6.8035569,6.7532291,0,2,0,-9,19,0,7,-6.9885783,0,0,0,42,2,4,1,3,2,2019,1,2,9,0,40,38,15,1,0,1,0,2.2889183,2.2889183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,54.790001,55.860001,2,1,1,0,0,9,2,1,934,131570.23,0,0,1749.3925 -3416,4217,7686,-9,7688,7685,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1053.9445,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,9,2,1,934,131570.23,0,0,1749.3925 -3416,4217,7687,-9,7688,7685,3,1,1,16,2,0,2,0,2,-9,11,2,0,0,5,5.5265303,5.6133213,0,2,0,0,0,-9,0,-982.34192,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,6,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.450001,58.639999,-9,-9,5,1,1,0,0,9,2,1,934,131570.23,0,0,1749.3925 -3416,4217,7688,7685,-9,-9,2,1,0,42,1,0,2,0,2,-9,1,1,0,0,4,7.7724805,7.5612245,0,2,0,-9,19,0,-7,96.623085,0,0,1,49,3,2,1,2,2,2019,1,1,7,0,40,46,15,1,0,1,0,6.0088058,6.0088058,0,0,0,0,0,0,0,0,1,1,0,2.3694866,0,0,0,54.790001,55.860001,52.240002,50.75,6,1,1,0,0,9,2,1,934,131570.23,0,0,1749.3925 -3417,4218,7689,7690,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.8157024,8.1299286,1,0,-9,10,0,8,-73.304123,0,0,0,57,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1970201,8.102849,0,0,56.919998,49.389999,62.389999,56.709999,6,1,1,0,0,2,4,1,2450.5,1262553,0,0,4676.3481 -3417,4218,7690,7689,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,0,5,0,7.4732585,7.7421837,1,0,-9,9,0,-8,139.82198,0,0,0,65,1,4,3,1,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2366824,7.6305113,0,0,62.389999,56.709999,56.919998,49.389999,7,1,1,0,0,2,4,1,2450.5,1262553,0,0,4676.3481 -3418,4219,7691,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,7.9529305,7.8583713,0,3,0,0,0,-9,0,-987.60541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,56,38,15,1,0,-9,0,5.858098,5.858098,0,0,0,0,0,0,0,0,0,0,0,1.3838454,0,0,0,61.119999,51.57,-9,-9,6,1,1,0,0,11,3,1,386,21947.191,0,0,398.97025 -3419,4220,7692,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,5,6.6631737,7.5217586,6.8820825,3,0,-9,0,-9,0,-1049.5781,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,1,0,16,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0420189,6.8880057,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,9,3,1,806,1800782.4,0,0,456.42996 -3420,4221,7693,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.3611851,8.1793299,0,3,0,0,0,-9,0,-1084.7504,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,11,60,33,15,1,1,-9,0,8.3201551,8.3201551,0,0,0,0,0,0,0,0,0,0,0,1.4017485,0,0,0,12.37,66.349998,-9,-9,3,1,1,0,0,10,4,0,648,-132729.86,0,0,1053.7794 -3421,4222,7694,7695,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,5,7.9550643,7.7793918,0,1,0,-9,26,0,1,42.351357,0,0,0,61,3,4,1,2,3,2019,1,2,12,1,45,60,15,1,0,1,0,6.1267877,6.1267877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,48.279999,60.18,2,1,1,0,0,6,3,0,440,772204,0,0,1879.5764 -3421,4222,7695,7694,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,4,6.8244929,6.7411928,0,1,0,-9,26,0,-1,74.786171,0,0,0,62,1,5,1,3,3,2019,1,1,10,0,20,20,15,1,0,1,0,6.0159616,6.0159616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,48.18,61.799999,4,1,1,0,1,6,3,0,440,772204,0,0,1879.5764 -3422,4223,7696,7697,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,7.1647377,7.7099962,0,1,0,-9,3,0,5,32.610912,0,0,0,28,2,4,1,2,3,2019,1,2,18,8,50,45,15,1,1,1,0,3.8744135,3.8744135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,58.369999,51.02,56.130001,2,1,1,0,0,2,3,1,665.5,69758.359,0,0,2034.1643 -3422,4223,7697,7696,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,0,4,7.4021463,7.3336964,0,1,0,-9,3,0,-5,-5.5534983,0,1,1,33,1,4,1,-9,-9,2019,1,1,6,0,20,30,15,1,0,1,0,9.0390949,9.0390949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,56.130001,43.59,58.369999,6,1,1,0,0,2,3,1,665.5,69758.359,0,0,2034.1643 -3423,4224,7698,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.3058991,7.2796755,3,0,0,0,-9,0,-1043.4266,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0070066,7.1243639,0,0,35.790001,44.369999,-9,-9,6,1,1,0,0,4,3,1,782,454877.75,0,0,467.9668 -3424,4225,7699,7700,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,4.6638422,4.8222976,1,0,-9,6,0,1,-3.2516654,0,0,0,75,2,5,3,3,3,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0687838,4.5802279,0,0,36.169998,57.919998,54.689999,57.470001,4,1,1,0,0,11,4,1,849,1095275.1,0,0,5126.1348 -3424,4225,7700,7699,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,5,0,8.8958912,8.6156492,1,0,-9,6,0,-1,96.092224,0,0,0,76,3,3,3,-9,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3916297,8.5162344,0,0,54.689999,57.470001,36.169998,57.919998,6,1,1,0,0,11,4,1,849,1095275.1,0,0,5126.1348 -3425,4226,7701,7702,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,7.3688698,7.4972458,1,0,-9,36,0,0,134.01416,0,0,0,75,1,2,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.6715655,7.390501,0,0,54.970001,37.110001,57.18,45.759998,5,1,1,0,0,10,2,1,210,654959.38,0,0,2248.7896 -3425,4226,7702,7701,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,36,0,0,78.569611,0,0,0,75,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7844272,0,0,0,57.18,45.759998,54.970001,37.110001,5,1,1,0,0,10,2,1,210,654959.38,0,0,2248.7896 -3426,4227,7703,7705,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,7.2221761,7.0835381,0,2,0,-9,17,0,3,66.58445,0,0,0,44,2,4,1,2,2,2019,1,2,9,0,15,15,15,1,0,1,0,10.310714,10.310714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.209999,55.299999,57.16,56.150002,6,1,1,0,0,2,3,1,243.66667,99766.313,0,0,1586.77 -3426,4227,7704,-9,7703,7705,5,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1133.0977,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,2,3,1,243.66667,99766.313,0,0,1586.77 -3426,4227,7705,7703,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,7.9800882,7.8992968,0,2,0,-9,17,0,-3,-53.908474,0,0,0,47,2,3,1,-9,-9,2019,1,1,6,0,45,45,15,1,0,1,0,8.604104,8.604104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,47.209999,55.299999,6,1,1,0,0,2,3,1,243.66667,99766.313,0,0,1586.77 -3426,4228,7706,-9,7703,7705,3,1,0,18,2,0,1,0,2,1,2,1,0,0,3,7.5728326,7.7023139,0,3,0,0,0,-9,0,-1074.4543,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,0,15,1,0,-9,1,6.350163,6.350163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,2,3,1,788,-130680.86,0,0,939.76715 -3426,4229,7707,-9,7703,7705,4,1,1,21,2,0,1,0,2,-9,2,1,0,0,2,7.4144716,7.1046433,0,3,0,0,0,-9,0,-1096.3633,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,44,15,1,0,-9,1,5.2952738,5.2952738,0,0,0,0,0,0,0,0,1,1,0,3.1167452,0,0,0,57.57,49.689999,-9,-9,4,1,1,0,0,2,3,1,866,51461.93,0,0,1261.8224 -3427,4230,7708,7709,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,6.4408479,6.6555262,1,0,-9,52,0,-4,32.810524,0,0,0,71,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5550261,4.9135904,0,0,55.529999,51.549999,47.290001,52.709999,7,1,1,0,0,5,2,1,474.5,536039.38,0,0,7168.791 -3427,4230,7709,7708,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,6.9020944,6.8100405,1,0,-9,52,0,4,-158.50952,0,0,0,67,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,1.8851107,0,0,0,0,0,1,1,0,7.9137969,7.159277,0,0,47.290001,52.709999,55.529999,51.549999,6,1,1,0,0,5,2,1,474.5,536039.38,0,0,7168.791 -3428,4231,7710,-9,-9,-9,1,1,1,46,3,0,2,0,2,-9,6,3,0,1,5,0,0,0,4,0,-9,0,-9,0,-873.29224,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.564257,3,54.099998,59.110001,-9,-9,6,3,4,0,0,8,1,1,961,54522.77,0,0,2123.1506 -3428,4231,7711,-9,-9,7710,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1043.4861,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,1,1,961,54522.77,0,0,2123.1506 -3428,4231,7712,-9,-9,7710,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1001.8665,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,1,1,961,54522.77,0,0,2123.1506 -3429,4232,7713,-9,-9,-9,1,1,0,64,3,0,1,0,2,-9,4,3,0,0,3,0,5.9676514,5.9724517,4,0,0,0,-9,0,-889.91949,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0076046,3.4510541,3,56.75,41.529999,-9,-9,7,1,1,0,0,2,2,1,197,72145.789,0,0,-898.1698 -3429,4233,7714,-9,7715,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-993.70404,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,1,1,710,-44001.773,0,0,473.2496 -3429,4233,7715,-9,7713,-9,2,1,0,38,3,0,1,0,1,-9,6,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1016.3877,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,2,1,1,710,-44001.773,0,0,473.2496 -3430,4234,7716,7717,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,7.0390425,6.8047185,0,1,0,-9,2,0,9,48.380245,0,0,0,30,2,4,1,-9,-9,2019,1,1,9,1,45,35,15,1,0,1,0,2.956012,2.956012,0,0,0,0,0,0,0,0,0,0,0,7.6912112,0,0,0,51,56,51.830002,57.200001,6,1,1,0,0,9,3,0,626.5,-63615.035,0,0,1991.8242 -3430,4234,7717,7716,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,8.0116444,7.9017386,0,1,0,-9,2,0,0,195.71159,0,0,1,39,2,4,1,2,3,2019,1,2,8,2,40,55,15,1,0,1,0,6.6648345,6.6648345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,51,56,6,1,1,0,0,9,3,0,626.5,-63615.035,0,0,1991.8242 -3431,4235,7718,-9,-9,-9,2,1,0,26,2,0,1,0,1,-9,2,1,0,0,2,8.103898,7.9610877,0,3,0,0,0,-9,0,-970.4079,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,28,11,54,36,15,1,1,-9,1,9.6006565,9.6006565,0,0,0,0,0,0,0,5.48,1,1,0,0,0,9.8054476,3,15.87,53.869999,-9,-9,3,1,1,0,1,13,4,1,897,48149.07,0,0,538.9212 -3432,4236,7719,7720,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,5,0,4.8192878,4.5488119,1,0,-9,2,0,2,-52.63224,0,0,0,69,2,3,3,3,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,0,1,4.7759628,4.5311112,14.449967,3,60.02,56.419998,61.849998,47.259998,2,1,1,0,0,9,2,1,1450,1175586.8,0,0,1981.2823 -3432,4236,7720,7719,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,4.5039201,6.0696249,5.3678865,1,0,-9,2,0,-2,-26.739458,-9,0,0,71,1,5,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.6090503,0,0,61.849998,47.259998,60.02,56.419998,6,1,1,0,0,9,2,1,1450,1175586.8,0,0,1981.2823 -3433,4237,7721,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,1,2,0,4.4679899,4.9157419,3,0,0,0,-9,0,-936.55865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,4.5284257,0,0,0,.707232,47.643986,0,1,1,0,0,4.8920469,0,0,50.130001,38.119999,-9,-9,5,1,1,0,0,13,2,1,422,64229.348,0,0,1726.7097 -3434,4238,7722,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,5.4987626,5.7842789,3,0,0,0,-9,0,-1096.0206,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.008221,5.4643307,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,1,2,1,722,-36407.215,0,0,1699.615 -3435,4239,7723,7724,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,5.0915904,4.977262,1,0,-9,7,0,13,35.968884,0,0,0,63,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3750548,0,0,62.490002,55.09,44.75,31.040001,7,3,4,0,0,9,2,1,1697.5,860776.25,0,0,878.41156 -3435,4239,7724,7723,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,4,0,1.7461966,2.1258476,1,0,-9,7,0,-13,56.129318,0,0,0,76,3,4,3,-9,-9,2019,4,1,10,1,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0327086,1.9980627,0,0,44.75,31.040001,62.490002,55.09,6,1,1,0,0,9,2,1,1697.5,860776.25,0,0,878.41156 -3436,4240,7725,7726,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.6507549,8.8236761,0,2,0,-9,8,0,0,-31.083462,0,0,0,38,2,4,1,-9,-9,2019,1,1,10,0,90,87,15,1,0,1,0,9.8172436,9.8172436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,48.48,54.619999,5,1,1,0,0,1,4,1,635.5,78643.18,0,0,3142.9214 -3436,4240,7726,7725,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,7.9563751,7.8339038,0,2,0,-9,8,0,0,45.644348,0,0,1,38,2,4,1,2,2,2019,1,2,12,0,50,32,15,1,0,1,0,6.1486588,6.1486588,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.48,54.619999,51.830002,57.200001,6,1,1,0,0,1,4,1,635.5,78643.18,0,0,3142.9214 -3436,4240,7727,-9,7726,7725,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.23169,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,635.5,78643.18,0,0,3142.9214 -3436,4240,7728,-9,7726,7725,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.7369,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,635.5,78643.18,0,0,3142.9214 -3437,4241,7729,7730,-9,-9,2,1,1,56,1,0,1,0,1,-9,4,3,0,0,4,0,0,0,2,0,-9,31,0,3,0,0,0,0,53,2,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.753787,0,.45447567,1,58.150002,52.91,43.720001,24.700001,6,1,1,0,0,10,1,1,1389,664903.13,0,0,760.98267 -3437,4241,7730,7729,-9,-9,1,1,0,53,1,0,1,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,31,0,-3,0,0,0,0,56,1,4,3,2,2,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.720001,24.700001,58.150002,52.91,7,1,1,0,0,10,1,1,1389,664903.13,0,0,760.98267 -3437,4242,7731,-9,7730,7729,3,1,0,18,2,0,1,0,2,1,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-946.80298,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.940358,3,51.830002,57.200001,-9,-9,6,1,1,0,0,10,1,1,757,-119656.43,0,0,0 -3438,4243,7732,-9,-9,-9,1,1,0,72,2,0,0,0,1,-9,4,3,0,0,3,0,8.0458078,7.5355897,3,0,0,0,-9,0,-838.91315,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2732544,7.5799303,0,0,59.880001,48.200001,-9,-9,6,1,1,0,0,13,3,1,406,324865.41,0,0,1458.2062 -3439,4244,7733,7734,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,9.4519777,9.6515503,0,1,0,-9,7,0,10,36.473728,0,0,0,50,2,3,1,3,3,2019,1,1,3,0,62,50,15,1,0,1,0,32.398335,32.398335,0,0,0,0,0,0,0,0,0,0,0,5.5994716,0,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,10,5,0,1582,556063.13,0,0,7552.1748 -3439,4244,7734,7733,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,0,3,6.3731413,6.758882,0,1,0,-9,7,0,-10,-3.500231,0,0,0,60,1,4,1,3,3,2019,1,2,9,1,3,10,15,1,0,1,0,39.079224,39.079224,0,0,0,0,0,0,0,0,0,0,0,6.284389,0,0,0,58.32,50.220001,57.16,56.150002,6,1,1,0,0,10,5,0,1582,556063.13,0,0,7552.1748 -3440,4245,7735,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,0,3,0,8.3724451,7.9856734,3,0,0,0,-9,0,-946.23254,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1961732,8.0509748,8.4865398,3,48.939999,43.43,-9,-9,7,1,1,0,0,11,4,1,420,855939.31,0,0,1568.2308 -3441,4246,7736,7739,-9,-9,1,1,1,30,1,0,2,0,2,-9,2,1,0,0,5,8.73001,8.8716879,0,2,0,-9,7,0,1,45.998703,0,0,0,29,2,5,1,-9,-9,2019,1,2,8,0,48,50,15,1,0,1,0,15.187259,15.187259,0,0,0,0,0,0,0,0,1,1,0,2.7858543,0,0,0,46.150002,57.189999,46.400002,59.869999,6,1,1,0,0,6,4,1,1005,762588.63,0,0,3293.3899 -3441,4246,7737,-9,7739,7736,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.9569,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,1005,762588.63,0,0,3293.3899 -3441,4246,7738,-9,7739,7736,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.40259,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,1005,762588.63,0,0,3293.3899 -3441,4246,7739,7736,-9,-9,2,1,0,29,1,0,2,0,2,-9,2,1,0,0,5,7.3307028,7.276741,0,2,0,-9,7,0,-1,-31.007904,0,1,1,30,2,5,1,-9,-9,2019,1,1,13,1,32,25,15,1,0,1,0,4.9813776,4.9813776,0,0,0,0,0,0,0,0,1,1,0,2.1714406,0,0,0,46.400002,59.869999,46.150002,57.189999,7,1,1,0,0,6,4,1,1005,762588.63,0,0,3293.3899 -3442,4247,7740,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,8.0257769,7.8208327,3,0,0,0,-9,0,-956.24036,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5044665,7.9284449,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,9,3,1,604,681449.25,0,0,3096.1377 -3443,4248,7741,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,6,3,0,0,3,0,0,0,3,0,0,0,-9,0,-994.49945,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.418446,3,57.580002,31.52,-9,-9,6,1,1,0,0,13,1,1,77,146884.31,0,0,186.42282 -3443,4249,7742,-9,7741,-9,2,1,0,50,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-990.27136,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6948927,0,0,0,51,54,-9,-9,6,1,1,0,0,13,1,1,66,-64180.465,0,0,-77.815002 -3444,4250,7743,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,6.1003723,6.1438866,3,0,0,0,-9,0,-939.57111,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,2.4464519,0,2.7564294,0,0,1,1,0,0,6.2563028,0,0,51,46,-9,-9,5,1,1,0,0,6,2,1,324,74759.234,0,0,243.77823 -3445,4251,7744,7745,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,0,-70.537384,0,0,0,79,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.09,43.110001,63.560001,32.669998,6,1,1,0,0,12,2,1,651,-41547.246,0,0,1560.3181 -3445,4251,7745,7744,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,6.0557523,5.7122874,1,0,-9,7,0,0,43.767105,0,0,0,79,2,2,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,103.03897,0,0,0,0,0,1,1,0,0,5.9674397,0,0,63.560001,32.669998,42.09,43.110001,7,1,1,0,0,12,2,1,651,-41547.246,0,0,1560.3181 -3446,4252,7746,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,2,1,0,0,4,8.5005503,8.6633511,0,3,0,0,0,-9,0,-1066.5887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,40,15,1,0,-9,0,13.794431,13.794431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,1,298,-156598.5,0,0,1837.1654 -3447,4253,7747,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,1,0,7.4690237,7.2125735,3,0,0,0,-9,0,-965.44061,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,7.0678759,0,0,1,1,0,3.9909556,6.8487387,0,0,33.540001,21.16,-9,-9,3,1,1,0,0,11,3,1,1066,674874,0,0,2475.6958 -3448,4254,7748,7749,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,3,8.9924612,8.9518833,0,2,0,-9,28,0,-6,2.791676,0,0,0,53,1,4,1,3,3,2019,1,1,13,1,30,30,15,1,0,1,0,28.879692,28.879692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,55.66,24.030001,67.290001,6,1,1,0,0,4,5,1,664,1744943.8,0,0,3932.8835 -3448,4254,7749,7748,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,8.4897089,8.4820547,0,2,0,-9,28,0,6,155.80829,0,0,0,47,1,3,1,2,2,2019,1,2,21,9,40,38,15,1,1,1,0,22.260775,22.260775,0,0,0,0,0,0,0,0,1,1,0,5.0056739,0,0,0,24.030001,67.290001,43.93,55.66,6,1,1,0,0,4,5,1,664,1744943.8,0,0,3932.8835 -3448,4255,7750,-9,7748,7749,3,1,0,20,3,0,1,1,1,0,7,2,0,0,3,5.7827559,8.3513737,8.5483332,3,0,0,0,-9,0,-968.33282,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,5,6,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9713788,0,0,0,31.860001,55.720001,-9,-9,6,1,1,0,0,4,5,1,331,134574.77,0,0,2653.9458 -3449,4256,7751,-9,7752,-9,1,1,1,27,2,0,1,0,2,-9,2,1,0,0,4,7.9782057,7.6902657,0,3,0,0,0,-9,0,-959.71283,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,37,15,1,0,-9,1,9.4088459,9.4088459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,1,3,0,139,-138012.05,0,0,1597.6013 -3449,4257,7752,-9,-9,-9,2,1,0,50,3,0,1,0,3,-9,2,1,0,0,3,7.9282188,7.7366595,0,4,0,0,0,-9,0,-1092.0629,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,38,37,15,1,0,-9,0,6.718688,6.718688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.209999,49.470001,-9,-9,6,1,1,0,0,1,3,0,1070.5,286656.31,0,0,1820.0352 -3449,4257,7753,-9,7752,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1009.0097,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,1,3,0,1070.5,286656.31,0,0,1820.0352 -3450,4258,7754,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,2,7.1064363,7.1542859,0,3,0,0,0,-9,0,-1132.1879,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,30,18,15,1,1,-9,0,4.7426219,4.7426219,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.403379,3,40.759998,41.18,-9,-9,3,1,1,0,0,12,2,0,224,185120.33,0,0,981.03815 -3450,4259,7755,-9,7754,-9,2,1,1,20,2,0,0,0,3,1,2,1,0,0,4,7.8476753,7.7291365,0,3,0,0,0,-9,0,-1081.0415,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,45,0,15,1,0,-9,1,6.2288022,6.2288022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,3,0,324,99110.477,0,0,738.04944 -3451,4260,7756,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-974.50165,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.209999,53.09,-9,-9,4,1,1,0,1,11,1,0,211,-273183.09,0,0,1758.9644 -3452,4261,7757,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,3,0,7.4761524,7.4336443,3,0,-9,0,-9,0,-1134.7537,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,7.8638005,0,0,0,1.2749356,70.940933,0,1,1,0,5.1520019,7.5185614,0,0,52,47,-9,-9,5,1,1,0,0,4,3,0,588,889344.56,0,0,2314.7075 -3453,4262,7758,7759,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,2,9.0102596,8.7631969,0,1,0,-9,11,0,1,-33.301651,0,0,0,47,1,3,1,2,3,2019,1,2,13,1,90,45,15,1,0,1,0,12.646593,12.646593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.700001,55.02,41.689999,46.77,3,1,1,0,0,9,5,1,886.5,2152904.5,0,0,5189.2578 -3453,4262,7759,7758,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,0,3,8.3607445,8.3874855,0,1,0,-9,11,0,-1,-92.98085,0,0,0,48,2,2,1,3,3,2019,1,1,19,7,20,45,15,1,1,1,0,21.905424,21.905424,0,0,0,0,0,0,0,0,0,0,0,2.101723,0,0,0,41.689999,46.77,36.700001,55.02,3,1,1,0,1,9,5,1,886.5,2152904.5,0,0,5189.2578 -3454,4263,7760,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,2,1,0,0,4,8.6412172,8.7382565,0,3,0,-9,0,-9,0,-1021.7032,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,46,45,15,1,0,-9,0,17.070747,17.070747,0,0,0,0,0,0,0,0,0,0,0,3.4406307,0,0,0,45.07,52.139999,-9,-9,3,3,4,0,0,8,5,1,138,100567.74,0,0,2214.3391 -3454,4264,7761,-9,-9,-9,2,1,0,38,2,0,0,0,2,-9,2,1,0,0,3,8.2908821,7.9627328,0,3,0,0,0,-9,0,-1076.0281,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,9.7948904,9.7948904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,47.209999,-9,-9,5,3,4,0,0,8,4,1,357,393598.03,0,0,279.0155 -3455,4265,7762,7763,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.559783,8.6963615,0,1,0,-9,10,0,6,-29.459864,0,0,0,45,2,5,1,2,2,2019,1,2,12,0,39,78,15,1,0,1,0,19.740765,19.740765,0,0,0,0,0,0,0,0,0,0,0,2.636548,0,0,0,34.630001,50.330002,62.959999,55.09,5,1,1,0,0,13,5,1,336.5,70894.781,0,0,3709.6296 -3455,4265,7763,7762,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,5,8.4866018,8.4583511,0,1,0,-9,10,0,-6,18.637228,0,0,0,51,2,3,1,2,2,2019,1,1,7,0,38,38,15,1,0,1,0,11.926563,11.926563,0,0,0,0,0,0,0,0,0,0,0,7.3635774,0,0,0,62.959999,55.09,34.630001,50.330002,6,1,1,0,0,13,5,1,336.5,70894.781,0,0,3709.6296 -3455,4266,7764,-9,7763,7762,3,1,1,22,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1089.188,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,1,1,1824,64465.914,0,0,0 -3455,4267,7765,-9,7763,7762,4,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.7833204,7.650485,0,3,0,0,0,-9,0,-996.17139,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,40,15,1,0,-9,1,5.7342763,5.7342763,0,0,0,0,0,0,0,0,0,0,0,.11258087,0,0,0,56.580002,49.75,-9,-9,6,1,1,0,0,13,3,1,356,43284.391,0,0,1680.2684 -3456,4268,7766,-9,7767,7768,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.47064,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,1248.6666,229889.09,0,0,2250.0828 -3456,4268,7767,7768,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,0,3,7.8564777,7.858614,0,2,0,-9,6,0,1,-64.005051,0,0,1,35,2,3,1,-9,-9,2019,1,1,10,1,48,28,15,1,0,1,0,7.4913454,7.4913454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.439999,40.509998,52.310001,43.98,6,1,1,0,0,5,4,1,1248.6666,229889.09,0,0,2250.0828 -3456,4268,7768,7767,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,0,3,7.9775577,8.537015,0,2,0,-9,6,0,-1,-144.92448,0,0,0,36,2,3,1,2,2,2019,1,2,5,1,44,45,15,1,0,1,0,8.2854738,8.2854738,0,0,0,0,0,0,0,0,1,1,0,4.6439247,0,0,0,52.310001,43.98,61.439999,40.509998,6,1,1,0,0,5,4,1,1248.6666,229889.09,0,0,2250.0828 -3457,4269,7769,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1008.6364,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3.4504671,0,0,0,43.84,37.110001,-9,-9,5,1,1,0,0,5,1,1,346,67992.109,0,0,-658.44287 -3458,4270,7770,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,0,2,7.9920526,8.3303299,0,3,0,0,0,-9,0,-945.87311,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,42,41,15,1,1,-9,0,9.7188883,9.7188883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.52,32.700001,-9,-9,4,1,1,0,0,12,4,0,347,-45986.188,0,0,1080.2898 -3458,4271,7771,-9,7770,-9,2,1,1,18,2,0,0,0,2,-9,2,1,0,0,3,6.2952347,6.2962279,0,3,0,0,0,-9,0,-1102.5458,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,12,0,15,1,1,-9,1,6.9138641,6.9138641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8200002,60.139999,-9,-9,3,1,1,0,0,12,2,0,3640,0,0,0,1446.5513 -3459,4272,7772,7773,-9,-9,1,1,0,66,1,0,0,0,1,-9,2,1,0,0,4,7.7572932,7.8190217,0,1,0,-9,10,0,3,5.775003,0,0,0,63,3,4,1,2,2,2019,1,2,8,0,24,24,15,1,0,1,0,10.395155,10.395155,0,0,0,0,0,0,0,0,0,0,0,2.6576712,0,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,10,3,1,744,665036.5,0,0,1281.8684 -3459,4272,7773,7772,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,0,4,0,0,0,1,0,-9,10,0,-3,69.36438,0,0,0,66,1,4,1,2,3,2019,1,1,10,0,30,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,10,3,1,744,665036.5,0,0,1281.8684 -3460,4273,7774,-9,7776,7777,4,1,0,26,2,0,0,0,2,-9,1,1,0,0,4,9.5261545,9.5056229,0,3,0,0,0,-9,0,-910.28003,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,50,30,15,1,0,-9,1,35.657665,35.657665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,4,5,1,305,112607.13,0,0,18263.246 -3460,4274,7775,-9,7776,7777,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.2846241,7.5874906,0,3,0,0,0,-9,0,-1044.2039,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,45,20,15,1,0,-9,1,3.7254725,3.7254725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,2,1,1,0,0,4,3,1,305,93212.641,0,0,597.38287 -3460,4275,7776,7777,-9,-9,1,1,0,51,1,0,0,0,2,-9,1,1,0,0,4,6.3529887,6.7851129,0,1,0,-9,5,0,-1,-11.136807,0,0,0,52,2,4,1,-9,-9,2019,1,3,12,2,30,24,15,1,0,1,0,2.5773737,2.5773737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.830002,57.200001,6,1,1,0,0,4,5,1,2489,755484.31,0,0,3102.0969 -3460,4275,7777,7776,-9,-9,3,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.7983122,9.0983725,0,1,0,-9,5,0,1,-142.44421,0,0,0,51,2,4,1,-9,-9,2019,1,1,12,0,37,40,15,1,0,1,0,21.75631,21.75631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,51.77,58.57,6,1,1,0,0,4,5,1,2489,755484.31,0,0,3102.0969 -3461,4276,7778,7779,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,8.6955976,8.5461187,0,1,0,-9,12,0,-3,-122.40612,0,0,1,39,2,4,1,2,2,2019,1,1,8,0,37,41,15,1,0,1,0,17.169395,17.169395,0,0,0,0,0,0,0,0,0,0,0,3.0046494,0,0,0,53.610001,51.099998,57.16,56.150002,6,1,1,0,0,6,5,1,376,8732.2188,0,0,3414.2297 -3461,4276,7779,7778,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,8.4964476,8.4095592,0,1,0,-9,12,0,3,-74.388756,0,0,0,36,1,4,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,14.032626,14.032626,0,0,0,0,0,0,0,0,0,0,0,4.7925997,0,0,0,57.16,56.150002,53.610001,51.099998,6,1,1,0,0,6,5,1,376,8732.2188,0,0,3414.2297 -3462,4277,7780,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.4108505,8.5306644,0,1,0,-9,3,0,-2,81.984665,0,1,1,-9,-9,-9,-9,2,2,2019,1,2,10,1,37,38,15,1,0,-9,0,12.41342,12.41342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.900002,60.310001,27.59,59.060001,5,1,1,0,0,9,5,0,1277,95045.586,0,0,2090.2002 -3462,4278,7781,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,8.1048851,8.4539204,0,1,0,-9,3,0,2,-138.76038,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,19,8,73,48,15,1,1,-9,0,7.031569,7.031569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.59,59.060001,33.900002,60.310001,3,1,1,0,0,9,5,0,548,72924.789,0,0,775.43793 -3463,4279,7782,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,0,3,0,6.4645438,6.3965263,3,0,0,0,-9,0,-997.60236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5571361,0,0,55.360001,51.57,-9,-9,7,1,1,0,0,12,2,0,721,422355.22,0,0,-1225.1957 -3463,4280,7783,-9,-9,-9,2,1,0,70,2,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-978.69507,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,1,0,336,-96476.664,0,0,-531.14398 -3464,4281,7784,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1038.5051,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.44146439,0,0,0,41.84,60.5,-9,-9,6,1,1,0,0,5,1,0,303,259187.55,0,0,407.32928 -3465,4282,7785,-9,7787,7786,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-945.11176,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,555,1255122.6,0,0,2806.4397 -3465,4282,7786,7787,-9,-9,1,1,1,52,1,1,1,0,1,-9,4,3,0,0,4,0,0,0,2,0,-9,3,0,5,14.749781,0,0,0,47,1,5,1,2,2,2019,3,2,8,0,0,36,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4854507,0,0,0,53.419998,52.330002,40.310001,58.619999,7,1,1,0,0,12,4,1,555,1255122.6,0,0,2806.4397 -3465,4282,7787,7786,-9,-9,2,1,0,47,1,1,1,0,1,-9,2,1,0,0,5,8.9047623,8.6171227,0,2,0,-9,3,0,-5,80.95118,0,0,0,52,1,4,3,-9,-9,2019,2,1,25,12,45,43,15,1,1,4,0,12.799329,12.799329,0,0,0,0,0,0,0,0,1,1,0,1.5837426,0,0,0,40.310001,58.619999,53.419998,52.330002,3,1,1,0,0,12,4,1,555,1255122.6,0,0,2806.4397 -3466,4283,7788,7789,-9,-9,2,1,0,33,1,1,1,0,1,-9,5,1,0,0,4,5.4346385,5.8751726,0,2,0,-9,8,0,-1,4.3898997,0,0,1,34,1,3,1,2,1,2019,1,1,19,8,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.024703,0,0,0,30.77,64.339996,57.330002,53.459999,6,1,1,0,0,4,4,1,376,23545.217,0,0,2745.4678 -3466,4283,7789,7788,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,0,3,8.5973082,8.675643,0,2,0,-9,8,0,1,17.851805,0,0,0,33,1,4,1,2,2,2019,1,2,7,0,37,49,15,1,0,1,0,15.770995,15.770995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,30.77,64.339996,6,1,1,0,0,4,4,1,376,23545.217,0,0,2745.4678 -3466,4283,7790,-9,7788,7789,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1137.5577,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,376,23545.217,0,0,2745.4678 -3467,4284,7791,7792,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,5.8236046,6.0188842,1,0,-9,48,0,0,39.104553,0,0,0,68,2,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2530341,5.7643876,0,0,40.119999,41.220001,51.41,56.150002,6,1,1,0,0,8,2,1,371.5,1175742.3,0,0,2892.3462 -3467,4284,7792,7791,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.8146625,7.0534229,1,0,-9,48,0,0,94.345688,0,0,0,68,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8448179,6.4975262,0,0,51.41,56.150002,40.119999,41.220001,6,1,1,0,0,8,2,1,371.5,1175742.3,0,0,2892.3462 -3468,4285,7793,7794,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,6.3293619,6.7504554,4.3176556,1,0,-9,40,0,-1,39.978508,0,0,0,60,3,4,1,2,2,2019,1,2,11,2,13,13,15,1,0,1,0,5.823966,5.823966,0,0,0,0,0,0,0,0,1,1,0,4.4009576,4.4000039,0,0,50,47,55,53,6,1,1,0,0,9,3,1,756,1163001.3,0,0,1553.6265 -3468,4285,7794,7793,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,0,4,7.8684583,8.1827383,0,1,0,-9,6,0,1,40.297997,0,0,0,59,3,3,1,-9,-9,2019,1,1,8,0,30,30,15,1,0,1,0,11.806718,11.806718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,50,47,6,1,1,0,0,9,3,1,756,1163001.3,0,0,1553.6265 -3469,4286,7795,-9,-9,-9,1,1,1,47,3,0,0,0,3,-9,2,1,0,0,4,7.0309439,7.1017189,0,3,0,-9,0,1,0,-1027.6525,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,16,16,15,1,0,-9,0,7.1497712,7.1497712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.950001,59.369999,-9,-9,5,1,1,0,0,11,2,0,1209,-122110.26,0,0,584.25525 -3470,4287,7796,7797,-9,-9,2,1,0,29,1,2,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,1,-73.919769,0,1,1,28,2,4,1,2,2,2019,3,1,8,0,0,12,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,54.259998,42.049999,58.799999,6,1,1,0,0,10,2,0,838.66669,18723.494,0,0,1721.5466 -3470,4287,7797,7796,-9,-9,1,1,1,28,1,2,4,0,2,-9,1,1,0,0,4,7.8268099,7.8802991,0,2,0,-9,7,0,-1,41.642853,0,1,0,29,2,3,3,2,2,2019,2,2,11,1,70,40,15,1,0,3,0,3.2023778,3.2023778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.049999,58.799999,49.580002,54.259998,4,1,1,0,0,10,2,0,838.66669,18723.494,0,0,1721.5466 -3470,4287,7798,-9,7796,7797,5,1,0,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.2755,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,0,838.66669,18723.494,0,0,1721.5466 -3470,4287,7799,-9,7796,7797,3,1,0,11,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.83875,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,2,0,838.66669,18723.494,0,0,1721.5466 -3470,4287,7800,-9,7796,7797,4,1,1,8,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.4381,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,2,0,838.66669,18723.494,0,0,1721.5466 -3470,4287,7801,-9,7796,7797,6,1,0,1,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.52673,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,0,838.66669,18723.494,0,0,1721.5466 -3471,4288,7802,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,8.0444527,8.2020473,0,3,0,0,0,-9,0,-838.25159,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,30,30,15,1,0,-9,0,15.124291,15.124291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.349998,-9,-9,6,1,1,0,0,7,4,1,1092,421096.16,0,0,986.06683 -3471,4289,7803,-9,7802,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.3202286,7.406951,0,3,0,0,0,-9,0,-925.04358,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,40,38,15,1,0,-9,1,7.0730095,7.0730095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,7,3,1,757,0,0,0,235.89101 -3472,4290,7804,-9,-9,-9,1,1,1,75,2,0,0,0,1,-9,4,3,0,0,3,0,6.9345427,7.0992751,3,0,0,0,-9,0,-951.22595,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9959917,6.7869725,0,0,51.419998,48.119999,-9,-9,6,1,1,0,0,9,2,1,687,557174.06,0,0,1872.0344 -3473,4291,7805,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1008.0093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.299999,28.52,-9,-9,6,1,1,0,0,2,1,1,178,881960.31,0,0,528.01294 -3474,4292,7806,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,2,1,0,0,1,8.1622343,7.9526052,5.8262372,3,0,0,0,-9,0,-1018.3093,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,40,40,15,1,1,-9,0,8.9780264,8.9780264,0,0,0,0,0,0,0,0,0,0,0,4.5743752,5.4782343,0,0,29.35,38.189999,-9,-9,5,1,1,0,0,8,4,0,708,484032,0,0,1893.5847 -3475,4293,7807,-9,7810,7812,4,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1010.7585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,635,919290.19,0,0,3237.0884 -3475,4293,7808,-9,7810,7812,5,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-928.66901,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,635,919290.19,0,0,3237.0884 -3475,4293,7809,-9,7810,7812,3,1,1,11,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1156.8538,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,4,1,635,919290.19,0,0,3237.0884 -3475,4293,7810,7812,-9,-9,1,1,0,40,1,1,4,0,1,-9,2,1,0,0,3,7.9295139,7.9399638,0,2,0,-9,1,-9,-1,27.867432,-9,0,1,41,1,3,1,2,3,2019,1,2,12,2,25,0,15,1,0,1,0,13.5624,13.5624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,52.939999,44.700001,53.68,3,1,1,0,0,5,4,1,635,919290.19,0,0,3237.0884 -3475,4293,7811,-9,7810,7812,6,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-982.20056,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,4,1,635,919290.19,0,0,3237.0884 -3475,4293,7812,7810,-9,-9,2,1,1,41,1,1,4,0,1,-9,2,1,0,0,3,8.7313452,8.7012806,0,2,0,-9,1,-9,1,40.509899,-9,0,0,40,1,3,1,-9,-9,2019,1,1,10,0,47,0,15,1,0,1,0,14.284352,14.284352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.700001,53.68,40.66,52.939999,6,1,1,0,0,5,4,1,635,919290.19,0,0,3237.0884 -3476,4294,7813,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,0,4,0,7.5093989,7.8083615,3,0,0,0,-9,0,-990.49298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.429882,7.832623,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,8,3,1,1049,962826.63,0,0,2503.5139 -3477,4295,7814,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-886.7287,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.720001,36.150002,-9,-9,3,1,1,0,0,11,1,0,1297.5,0,0,0,905.40735 -3477,4295,7815,-9,7814,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1061.0787,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,1,0,1297.5,0,0,0,905.40735 -3478,4296,7816,7818,-9,-9,1,1,0,42,1,0,2,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,14,0,1,134.60802,0,0,1,41,1,5,1,2,2,2019,3,2,9,0,0,21,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.040001,53.419998,54.099998,59.110001,5,1,1,1,0,10,5,1,743.5,1285912.1,0,0,3159.0559 -3478,4296,7817,-9,7816,7818,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.10706,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,743.5,1285912.1,0,0,3159.0559 -3478,4296,7818,7816,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,5,9.1464071,9.3709917,0,2,0,-9,14,0,-1,97.988365,-9,0,0,42,1,4,3,2,1,2019,2,1,6,0,38,0,15,1,0,3,0,31.030228,31.030228,0,0,0,0,0,0,0,0,0,0,0,2.8543403,0,0,0,54.099998,59.110001,48.040001,53.419998,5,1,1,0,0,10,5,1,743.5,1285912.1,0,0,3159.0559 -3478,4296,7819,-9,7816,7818,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-836.23389,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,1,743.5,1285912.1,0,0,3159.0559 -3479,4297,7820,7821,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,1,3,0,5.8409858,5.7147346,1,0,-9,7,0,-1,13.079076,0,0,0,84,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0883265,0,0,62.029999,36.18,55,45,7,1,1,0,0,4,3,1,747.5,423227.38,0,0,2375.7297 -3479,4297,7821,7820,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,0,3,0,7.2352476,7.6410165,1,0,-9,7,0,1,17.142723,0,0,0,83,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0542622,7.4000192,0,0,55,45,62.029999,36.18,6,4,1,0,0,4,3,1,747.5,423227.38,0,0,2375.7297 -3480,4298,7822,7823,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,0,5,8.2103386,8.7397976,0,2,0,-9,9,0,-1,-82.066483,0,0,0,35,2,3,1,2,2,2019,1,2,5,0,40,40,15,1,0,1,0,14.075449,14.075449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,57.939999,43.459999,7,1,1,0,0,7,4,0,822.5,-22919.441,0,0,3033.4353 -3480,4298,7823,7822,-9,-9,2,1,0,35,1,1,2,0,2,-9,5,1,0,0,3,7.9208488,8.022995,0,2,0,-9,9,0,1,-29.094297,0,0,1,34,2,5,1,2,2,2019,1,1,7,0,18,17,15,1,0,1,0,16.768896,16.768896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.939999,43.459999,60.02,56.419998,7,1,1,0,0,7,4,0,822.5,-22919.441,0,0,3033.4353 -3480,4298,7824,-9,7823,7822,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-976.52301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,0,822.5,-22919.441,0,0,3033.4353 -3480,4298,7825,-9,7823,7822,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.19202,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,0,822.5,-22919.441,0,0,3033.4353 -3481,4299,7826,-9,-9,-9,1,1,0,77,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-955.11035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.07,52.700001,-9,-9,6,1,1,0,0,2,1,0,61,-20218.396,0,0,660.4433 -3482,4300,7827,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,2,1,0,0,3,8.7330627,8.4742908,0,3,0,-9,0,-9,0,-1085.1595,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,32,12,44,0,15,1,1,-9,0,15.053074,15.053074,0,0,0,0,0,0,0,0,0,0,0,5.4821754,0,0,0,11.88,60.860001,-9,-9,3,1,1,0,0,12,5,1,343,916549.69,0,0,4097.2402 -3483,4301,7828,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,8.2282515,7.7544055,0,3,0,0,0,-9,0,-987.82343,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,3,1,45,40,15,1,0,-9,0,8.6213531,8.6213531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.509998,51.57,-9,-9,6,1,1,0,0,4,4,0,718,200053.52,0,0,660.88531 -3483,4302,7829,-9,-9,-9,2,1,1,45,2,0,0,0,2,-9,1,1,0,0,4,6.2825866,6.0189385,0,3,0,0,0,-9,0,-924.88092,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,45,15,1,0,-9,0,1.6409595,1.6409595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.299999,55.599998,-9,-9,5,1,1,0,0,4,2,0,563,11772.678,0,0,745.08337 -3484,4303,7830,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,2,0,7.7194901,7.6658945,3,0,0,0,-9,0,-1028.2552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,10.054241,0,0,0,0,1,1,0,7.1450415,7.0362086,0,0,57.889999,17.030001,-9,-9,6,1,1,0,0,2,3,1,1435,627240.13,0,0,842.29224 -3485,4304,7831,-9,-9,-9,1,1,0,101,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1001.146,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.4429798,0,0,0,0,0,0,1,1,0,5.3743863,0,0,0,55,42,-9,-9,6,1,1,0,0,4,1,1,1485,-19002.117,0,0,437.16547 -3486,4305,7832,-9,-9,-9,1,1,0,27,3,1,3,0,3,-9,6,3,0,1,3,0,6.5380168,6.4176483,4,0,0,0,-9,0,-948.77496,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,6.3377323,0,75.811768,3,52.810001,38.080002,-9,-9,4,1,1,0,0,10,2,0,800.25,0,0,0,2684.6172 -3486,4305,7833,-9,7832,-9,4,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1013.9075,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,2,0,800.25,0,0,0,2684.6172 -3486,4305,7834,-9,7832,-9,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-901.61627,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,0,800.25,0,0,0,2684.6172 -3486,4305,7835,-9,7832,-9,2,1,1,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-928.23785,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,0,800.25,0,0,0,2684.6172 -3487,4306,7836,-9,-9,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,0,5,8.2617464,8.0040226,0,3,0,0,0,-9,0,-954.15399,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,40,0,15,1,0,-9,0,7.3978839,7.3978839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.209999,58.07,-9,-9,7,1,1,0,0,4,4,0,412,-14666.566,0,0,1705.3961 -3487,4307,7837,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,0,4,8.067234,8.0824299,0,3,0,0,0,-9,0,-986.84766,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,46,15,1,0,-9,0,7.927247,7.927247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,4,4,0,327,3760.3474,0,0,1647.9615 -3488,4308,7838,-9,-9,-9,1,1,1,78,2,0,0,0,1,-9,4,3,0,0,3,0,8.4466743,8.0751419,3,0,0,0,-9,0,-1021.5881,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4662805,8.0751629,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,8,4,1,528,1540117.3,0,0,3652.6936 -3489,4309,7839,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,1,1,0,0,4,0,8.3858757,7.9143047,3,0,0,0,-9,0,-930.1214,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,25,10,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9983344,8.2864437,0,0,52.18,46.23,-9,-9,6,1,1,0,0,5,4,1,390,813471.44,0,0,2345.897 -3489,4310,7840,-9,7839,-9,2,1,1,23,2,0,0,0,1,-9,1,1,0,0,4,0,5.9513874,6.0033064,3,0,0,0,-9,0,-936.4068,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,10,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4117422,0,0,0,18.16,68.620003,-9,-9,6,1,1,0,0,5,2,1,1082,36644.227,0,0,-38.940189 -3490,4311,7841,7843,-9,-9,2,1,0,44,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-5,0,0,0,1,49,2,3,3,2,3,2019,4,1,30,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.67,60.060001,35.189999,51.540001,1,1,1,0,0,13,1,1,509.33334,0,0,0,509.82037 -3490,4311,7842,-9,7841,7843,5,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.8172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,13,1,1,509.33334,0,0,0,509.82037 -3490,4311,7843,7841,-9,-9,1,1,1,49,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,6,0,5,0,0,0,0,44,2,4,3,3,3,2019,4,2,19,7,0,46,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.189999,51.540001,19.67,60.060001,3,1,1,1,0,13,1,1,509.33334,0,0,0,509.82037 -3490,4312,7844,-9,7841,7843,4,1,1,20,2,0,1,0,2,1,2,1,0,0,4,7.5719609,7.395195,0,3,0,0,0,-9,0,-1000.6372,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,18,0,15,1,0,-9,1,11.500225,11.500225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,1323,194593.78,0,0,502.92514 -3491,4313,7845,-9,7847,7846,3,1,0,16,2,0,2,0,3,-9,3,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.6862,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.049999,54.790001,-9,-9,5,2,3,1,0,6,3,1,575.75,47049.555,0,0,2291.4536 -3491,4313,7846,7847,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,7.8437667,7.9431629,0,2,0,-9,21,0,1,-35.268337,0,0,0,47,2,2,1,3,3,2019,1,2,1,0,37,37,15,1,0,1,0,8.5603962,8.5603962,0,0,0,0,0,0,0,2,1,1,0,0,0,2.4055111,3,54.610001,49.130001,37.919998,39.799999,5,2,3,0,0,6,3,1,575.75,47049.555,0,0,2291.4536 -3491,4313,7847,7846,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,2,7.2990255,7.4118819,0,2,0,-9,21,0,-1,76.138168,0,0,0,48,2,3,1,-9,-9,2019,1,1,23,10,20,20,15,1,1,1,0,12.507662,12.507662,0,0,0,0,0,0,0,2,1,1,0,2.3515584,0,0,3,37.919998,39.799999,54.610001,49.130001,4,2,3,0,0,6,3,1,575.75,47049.555,0,0,2291.4536 -3491,4313,7848,-9,7847,7846,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1023.1267,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,6,3,1,575.75,47049.555,0,0,2291.4536 -3492,4314,7849,7850,-9,-9,2,1,1,59,1,0,0,0,3,-9,3,3,0,0,1,0,0,0,1,0,-9,7,0,4,0,0,0,0,55,2,2,3,-9,-9,2019,4,1,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.879999,38.459999,36.84,40.209999,6,1,1,1,0,2,1,0,809,-32670.293,0,0,892.12299 -3492,4314,7850,7849,-9,-9,1,1,0,55,1,0,0,0,2,-9,6,3,0,1,2,0,0,0,1,0,-9,7,0,-4,0,0,0,0,59,3,1,3,2,2,2019,4,2,25,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.84,40.209999,31.879999,38.459999,3,1,1,0,0,2,1,0,809,-32670.293,0,0,892.12299 -3492,4315,7851,-9,7850,7849,4,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.2025299,8.1533813,0,3,0,0,0,-9,0,-979.50269,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,7.8217096,7.8217096,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,2,4,0,2759,78641.547,0,0,1162.8483 -3493,4316,7852,7855,-9,-9,1,1,0,41,1,0,3,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,26,0,-5,-46.143799,0,0,1,46,3,4,1,3,3,2019,3,2,34,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3.5899999,61.209999,44.080002,58,1,2,3,1,1,2,2,0,1466.75,53973.172,0,0,1112.7438 -3493,4316,7853,-9,7852,7855,6,1,1,13,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-961.3335,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,46,-9,-9,4,2,3,0,0,2,2,0,1466.75,53973.172,0,0,1112.7438 -3493,4316,7854,-9,7852,7855,5,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1008.1332,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,2,2,0,1466.75,53973.172,0,0,1112.7438 -3493,4316,7855,7852,-9,-9,2,1,1,46,1,0,3,0,3,-9,2,1,0,0,4,7.4754171,7.3046455,0,2,0,-9,26,0,5,-12.21701,0,0,0,41,2,2,3,3,3,2019,2,1,26,9,22,20,15,1,1,3,0,8.7789421,8.7789421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.080002,58,3.5899999,61.209999,1,2,3,0,1,2,2,0,1466.75,53973.172,0,0,1112.7438 -3493,4317,7856,-9,7852,7855,3,1,1,22,2,0,3,0,1,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-948.81464,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.869999,61.029999,-9,-9,5,2,3,1,0,2,1,0,627,-161046.88,0,0,0 -3493,4318,7857,-9,7852,7855,4,1,1,18,2,0,3,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1107.3623,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,2,2,3,0,1,2,2,0,1320,238717.52,0,0,0 -3494,4319,7858,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,3,7.6586027,7.7324901,0,3,0,0,0,-9,0,-974.35229,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,21,21,15,1,0,-9,1,11.190311,11.190311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.459999,49.110001,-9,-9,6,1,1,0,0,10,3,1,821,30758.939,0,0,1143.7136 -3495,4320,7859,7860,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,6.519094,6.8464971,1,0,-9,10,0,3,-4.3742533,0,0,0,66,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4703736,6.6070094,0,0,49.25,52.110001,49.52,56.950001,7,1,1,0,0,11,2,1,675.5,771322.25,0,0,711.38599 -3495,4320,7860,7859,-9,-9,2,1,0,66,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,10,0,-3,-156.85565,0,0,0,69,2,2,3,3,3,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.950001,49.25,52.110001,6,1,1,0,0,11,2,1,675.5,771322.25,0,0,711.38599 -3496,4321,7861,-9,7862,7864,3,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.51746,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,972,81774.914,0,0,2283.9778 -3496,4321,7862,7864,-9,-9,1,1,0,25,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-2,-9.3849735,0,1,1,27,1,3,1,2,2,2019,3,4,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,50.580002,51.02,7,1,1,0,0,2,3,0,972,81774.914,0,0,2283.9778 -3496,4321,7863,-9,7862,7864,2,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.06647,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,972,81774.914,0,0,2283.9778 -3496,4321,7864,7862,-9,-9,4,1,1,27,1,1,2,0,1,-9,2,1,0,0,3,7.9357715,7.7275591,0,2,0,-9,2,0,2,82.694611,0,1,0,25,2,4,3,-9,-9,2019,2,1,8,1,52,40,15,1,0,3,0,7.4355197,7.4355197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.580002,51.02,54.790001,55.860001,5,1,1,0,0,2,3,0,972,81774.914,0,0,2283.9778 -3497,4322,7865,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,0,4,7.8976531,8.1452112,0,3,0,0,0,-9,0,-816.74677,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,43,15,1,0,-9,0,8.4362516,8.4362516,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.056061,3,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,256,593474.69,0,0,1986.7256 -3498,4323,7866,7867,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,4.3024344,4.5117664,1,0,-9,10,0,1,89.283966,0,0,0,70,2,2,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,2.5700853,0,0,0,0,0,1,1,0,0,4.7055302,0,0,53.23,42.900002,55.200001,49.400002,7,1,1,0,0,2,2,1,930,216270.38,0,0,2270.427 -3498,4323,7867,7866,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,6.1267791,6.2965879,1,0,-9,10,0,-1,53.999134,0,0,0,71,3,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8862972,6.028038,0,0,55.200001,49.400002,53.23,42.900002,2,1,1,0,0,2,2,1,930,216270.38,0,0,2270.427 -3499,4324,7868,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-936.82208,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,40,37,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.799999,57.970001,-9,-9,2,1,1,0,0,6,1,1,633,-84591.234,0,0,0 -3500,4325,7869,-9,7871,-9,2,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1051.9948,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,1402.6666,-29380.072,0,0,2163.3818 -3500,4325,7870,-9,7871,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.4697,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,3,0,1402.6666,-29380.072,0,0,2163.3818 -3500,4325,7871,-9,-9,-9,1,1,0,28,3,1,2,0,2,-9,2,1,0,0,3,7.6986718,7.4101372,6.0131283,4,0,-9,0,1,0,-1008.3898,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,27,11,41,0,15,1,1,-9,0,7.1564488,7.1564488,0,0,0,0,0,0,0,0,1,0,1,5.8667884,0,0,0,16.98,65.470001,-9,-9,3,1,1,0,0,4,3,0,1402.6666,-29380.072,0,0,2163.3818 -3501,4326,7872,7873,-9,-9,2,1,0,23,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,2,0,-4,35.130787,0,1,1,27,2,5,1,-9,-9,2019,3,1,14,3,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,43.73,59.700001,33.73,65.510002,6,1,1,1,0,11,3,0,462,-112295.59,0,0,885.03259 -3501,4326,7873,7872,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,5,7.7420783,7.9313636,0,1,0,-9,2,0,4,48.823254,0,1,0,23,2,4,3,-9,-9,2019,2,2,14,2,37,35,15,1,0,3,0,7.2894692,7.2894692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.73,65.510002,43.73,59.700001,5,1,1,0,0,11,3,0,462,-112295.59,0,0,885.03259 -3502,4327,7874,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,3,8.6846609,9.0262213,0,3,0,0,0,-9,0,-927.51013,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,42,41,15,1,0,-9,0,21.099627,21.099627,0,0,0,0,0,0,0,0,0,0,0,7.013833,0,0,0,42.189999,50.93,-9,-9,6,1,1,0,0,13,5,1,334,320987.34,0,0,2714.7744 -3503,4328,7875,7878,-9,-9,2,1,0,49,1,0,2,0,2,-9,2,1,0,0,3,7.6498094,7.599648,0,2,0,-9,24,0,-4,-7.6113663,0,0,0,53,2,4,1,2,-9,2019,1,1,8,0,40,10,15,1,0,1,0,6.995831,6.995831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,45.18,51.91,6,1,1,0,0,7,5,1,458.5,2456499.8,0,0,8063.0029 -3503,4328,7876,-9,7875,7878,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.81561,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,5,1,458.5,2456499.8,0,0,8063.0029 -3503,4328,7877,-9,7875,7878,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.96155,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,7,5,1,458.5,2456499.8,0,0,8063.0029 -3503,4328,7878,7875,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,0,4,7.5963192,9.3258533,8.9870501,2,0,-9,24,0,4,17.356222,0,0,0,49,2,3,1,2,1,2019,1,2,16,5,50,50,15,1,1,1,0,4.0605531,4.0605531,0,0,0,0,0,0,0,0,1,1,0,9.4744062,0,0,0,45.18,51.91,57.330002,53.459999,4,1,1,0,0,7,5,1,458.5,2456499.8,0,0,8063.0029 -3503,4329,7879,-9,7875,7878,3,1,0,20,2,0,2,1,2,0,7,2,0,0,4,5.9235144,6.133204,0,3,0,0,0,-9,0,-1023.3141,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,1,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,7,2,1,674,-13046.893,0,0,769.23108 -3504,4330,7880,7881,-9,-9,2,1,1,55,1,0,1,0,2,-9,1,1,0,0,4,8.9189501,8.8777761,0,2,0,-9,9,0,6,25.894108,0,0,0,49,2,3,1,2,2,2019,1,1,11,0,75,70,15,1,0,1,0,13.503409,13.503409,0,0,0,0,0,0,0,0,1,1,0,6.8874578,0,0,0,53.330002,53.709999,49.939999,50.130001,6,1,1,0,0,12,5,1,1248,552051.5,0,0,3486.3169 -3504,4330,7881,7880,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,0,3,6.3623304,6.592792,0,2,0,-9,9,0,-6,-49.264679,0,0,0,55,2,4,1,2,2,2019,1,2,7,0,45,55,15,1,0,1,0,1.9417503,1.9417503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.939999,50.130001,53.330002,53.709999,6,1,1,0,0,12,5,1,1248,552051.5,0,0,3486.3169 -3505,4331,7882,-9,7883,7885,6,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.8553,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,2,0,1020.1667,58945.125,0,0,1030.7692 -3505,4331,7883,7885,-9,-9,1,1,0,35,1,1,4,0,2,-9,2,1,0,0,4,8.0030422,8.2420206,0,2,0,-9,11,0,-3,-76.899391,0,0,1,38,1,4,2,3,3,2019,2,2,6,0,45,41,15,1,0,2,0,8.4439125,8.4439125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,5,3,4,0,0,4,2,0,1020.1667,58945.125,0,0,1030.7692 -3505,4331,7884,-9,7883,7885,7,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1137.3013,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,4,2,0,1020.1667,58945.125,0,0,1030.7692 -3505,4331,7885,7883,-9,-9,2,1,1,38,1,1,4,0,1,0,7,2,0,0,4,0,0,0,2,0,-9,8,0,3,53.23159,-9,0,0,35,2,4,1,3,3,2019,3,1,7,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,3,4,0,0,4,2,0,1020.1667,58945.125,0,0,1030.7692 -3505,4331,7886,-9,7883,7885,4,1,1,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.9872,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,2,0,1020.1667,58945.125,0,0,1030.7692 -3505,4331,7887,-9,7883,7885,3,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-864.53223,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,2,0,1020.1667,58945.125,0,0,1030.7692 -3505,4332,7888,-9,7883,7885,5,1,1,19,2,1,4,1,2,0,7,2,0,0,5,7.2815895,7.3316779,0,3,0,0,0,-9,0,-1059.2008,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,7,3,4,0,0,4,2,0,463,99301.586,0,0,296.99988 -3506,4333,7889,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,0,2,8.5609484,8.642952,0,4,0,0,0,-9,0,-1027.2196,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,35,35,15,1,0,-9,0,15.931156,15.931156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.450001,42.599998,-9,-9,4,2,3,0,0,7,3,1,442,60652.34,0,0,937.44666 -3507,4334,7890,7891,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,0,4,8.1321344,8.3674879,0,1,0,-9,2,0,6,-166.54677,0,0,0,54,3,1,3,-9,-9,2019,2,1,10,0,20,0,15,1,0,3,0,31.698891,31.698891,0,0,0,0,0,0,0,42,1,1,0,0,0,44.624477,1,47.380001,57.75,27.889999,18.610001,7,1,1,0,0,11,3,1,390.5,1164789.5,0,0,2164.3306 -3507,4334,7891,7890,-9,-9,1,1,0,54,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,2,0,-6,69.043053,0,0,0,60,3,4,1,3,3,2019,3,2,15,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1047645,0,0,0,27.889999,18.610001,47.380001,57.75,4,1,1,0,0,11,3,1,390.5,1164789.5,0,0,2164.3306 -3508,4335,7892,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,7.475306,7.2913823,3,0,0,0,-9,0,-1085.8475,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8159432,7.4325113,0,0,43.419998,62.330002,-9,-9,6,1,1,0,0,8,3,1,1048,1050621.1,0,0,1463.092 -3509,4336,7893,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1014.1124,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.470001,28.24,-9,-9,7,1,1,0,0,12,1,0,762,-44466.473,0,0,717.65369 -3510,4337,7894,7895,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,0,3,1.0248508,.93743998,0,2,0,-9,6,0,1,8.9547567,0,0,0,47,1,2,1,3,3,2019,1,2,12,0,36,40,15,1,0,1,0,.0078936834,.0078936834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,41.779999,43.59,2,1,1,0,0,13,4,1,603,234386.5,0,0,1858.6855 -3510,4337,7895,7894,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,2,8.7127371,8.9757977,0,2,0,-9,6,0,-1,38.630806,0,0,0,48,3,3,1,-9,-9,2019,1,1,13,1,30,28,15,1,0,1,0,33.21703,33.21703,0,0,0,0,0,0,0,2,1,1,0,3.4873862,0,0,3,41.779999,43.59,54.369999,54.799999,5,1,1,0,0,13,4,1,603,234386.5,0,0,1858.6855 -3510,4337,7896,-9,7895,7894,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.37329,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,603,234386.5,0,0,1858.6855 -3511,4338,7897,7898,-9,-9,2,1,0,47,1,0,2,0,3,-9,1,1,0,0,4,7.2360396,7.3363523,0,2,0,-9,18,0,-7,-11.87275,0,0,0,54,2,4,1,-9,-9,2019,1,1,13,1,20,18,15,1,0,1,0,8.1075277,8.1075277,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.081269,3,53.389999,52.349998,54.200001,57.490002,6,1,1,0,0,9,3,1,472.5,-80059.531,0,0,2650.5684 -3511,4338,7898,7897,-9,-9,1,1,1,54,1,0,2,0,2,-9,1,1,0,0,4,7.3553119,7.3649378,0,2,0,-9,18,0,7,14.137454,0,0,0,47,3,4,1,-9,-9,2019,1,2,6,0,40,60,15,1,0,1,0,4.0824833,4.0824833,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,53.389999,52.349998,3,1,1,0,0,9,3,1,472.5,-80059.531,0,0,2650.5684 -3511,4338,7899,-9,7897,7898,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-998.99396,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,9,3,1,472.5,-80059.531,0,0,2650.5684 -3511,4338,7900,-9,7897,7898,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1001.6579,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,9,3,1,472.5,-80059.531,0,0,2650.5684 -3512,4339,7901,7904,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,7.7815633,7.6273627,0,2,0,-9,8,0,7,85.277351,0,0,1,36,2,5,1,2,3,2019,1,2,12,1,32,46,15,1,0,1,0,7.1607566,7.1607566,0,0,0,0,0,0,0,0,1,1,0,.87206674,0,0,0,48.990002,49.189999,51.73,58.82,6,1,1,0,1,7,3,1,881,100780.23,0,0,2070.5791 -3512,4339,7902,-9,7901,7904,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-872.24219,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,1,881,100780.23,0,0,2070.5791 -3512,4339,7903,-9,7901,7904,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-949.58942,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,3,1,881,100780.23,0,0,2070.5791 -3512,4339,7904,7901,-9,-9,2,1,1,36,1,0,2,0,2,-9,1,1,0,0,5,7.8926625,7.4808526,0,2,0,-9,8,0,-7,-32.784134,0,0,0,43,1,3,1,-9,-9,2019,1,1,7,0,60,55,15,1,0,1,0,6.080524,6.080524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,48.990002,49.189999,5,1,1,0,0,7,3,1,881,100780.23,0,0,2070.5791 -3513,4340,7905,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1004.5317,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,-9,-9,2,3,4,0,1,4,1,0,804,83141.273,0,0,2255.3499 -3514,4341,7906,7908,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,0,4,7.5395999,7.664752,0,2,0,-9,7,0,-2,41.703373,0,0,1,35,2,3,1,2,3,2019,1,2,9,2,35,40,15,1,0,1,0,5.382473,5.382473,0,0,0,0,0,0,0,7,1,1,0,0,0,3.2467456,3,52.970001,53.970001,52.990002,51.279999,6,1,1,0,1,10,3,0,862.66669,172437.97,0,0,1731.61 -3514,4341,7907,-9,7906,7908,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.0048,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,3,0,862.66669,172437.97,0,0,1731.61 -3514,4341,7908,7906,-9,-9,2,1,1,35,1,1,1,0,2,-9,2,1,0,0,3,8.0822859,7.884511,0,2,0,-9,7,0,2,-70.355545,0,0,0,33,2,4,1,-9,-9,2019,1,1,9,0,60,52,15,1,0,1,0,5.8270521,5.8270521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,52.970001,53.970001,6,1,1,0,0,10,3,0,862.66669,172437.97,0,0,1731.61 -3515,4342,7909,7910,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,7.4894629,7.9145889,6.4278278,1,0,-9,4,0,2,-47.521641,0,1,0,25,1,4,2,-9,-9,2019,2,1,8,0,37,44,15,1,0,2,0,5.1457982,5.1457982,0,0,0,0,0,0,0,0,1,1,0,6.978951,0,0,0,57.16,56.150002,55.34,54.259998,2,1,1,0,0,10,3,0,224,12091.541,0,0,3445.6208 -3515,4342,7910,7909,-9,-9,1,1,0,25,1,0,0,1,1,0,7,2,0,0,4,0,7.0638657,7.1770663,1,0,-9,4,0,-2,146.08023,-9,1,1,27,1,4,1,-9,-9,2019,3,2,5,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3283,0,0,0,55.34,54.259998,57.16,56.150002,6,1,1,0,0,10,3,0,224,12091.541,0,0,3445.6208 -3516,4343,7911,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,4,3,0,1,2,0,7.4363394,7.6878409,3,0,0,0,-9,0,-1003.9017,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7148185,0,3,48.529999,33.389999,-9,-9,4,1,1,0,0,7,3,1,1081,295300.5,0,0,2038.7113 -3517,4344,7912,7913,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.5290585,8.7300701,0,1,0,-9,6,0,-4,-66.071808,0,0,0,52,2,3,1,2,3,2019,1,1,8,0,42,44,15,1,0,1,0,15.333552,15.333552,0,0,0,0,0,0,0,2,0,0,0,0,0,2.5146766,3,53.889999,38.580002,61.279999,48.880001,5,1,1,0,0,12,5,1,429.5,-24488.852,0,0,3246.4995 -3517,4344,7913,7912,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.5643425,8.7708569,0,1,0,-9,6,0,4,3.4235725,0,0,0,48,2,3,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,12.92732,12.92732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,48.880001,53.889999,38.580002,6,1,1,0,0,12,5,1,429.5,-24488.852,0,0,3246.4995 -3518,4345,7914,7916,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,7.4199276,7.7233253,0,2,0,-9,23,0,-4,19.322275,0,0,0,52,2,3,1,2,2,2019,1,2,7,0,30,29,15,1,0,1,0,8.1758556,8.1758556,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.009998,48.98,6,1,1,0,0,4,4,1,938.66669,618372.94,0,0,4110.2334 -3518,4345,7915,-9,7914,7916,4,1,1,16,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.48651,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2914939,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,4,4,1,938.66669,618372.94,0,0,4110.2334 -3518,4345,7916,7914,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,3,8.7400703,8.4506559,0,2,0,-9,21,0,4,108.31839,0,0,0,48,2,4,1,2,2,2019,1,1,10,0,45,51,15,1,0,1,0,14.046471,14.046471,0,0,0,0,0,0,0,0,1,1,0,6.9049067,0,0,0,52.009998,48.98,57.16,56.150002,6,1,1,0,0,4,4,1,938.66669,618372.94,0,0,4110.2334 -3518,4346,7917,-9,7914,7916,3,1,1,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-874.02942,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,5,1,1,0,0,4,4,1,487,54570.5,0,0,0 -3519,4347,7918,7919,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,5,6.4111142,7.4449544,7.34582,1,0,-9,46,0,-3,30.783085,0,0,0,67,2,4,3,3,3,2019,4,2,6,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5901132,7.5179572,6.6301174,3,59.43,58.049999,55.34,54.259998,7,1,1,0,0,6,4,1,172.5,323521.03,0,0,3836.7664 -3519,4347,7919,7918,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,5.2257299,8.0550547,7.981276,1,0,-9,46,0,3,-85.255714,0,0,0,64,1,5,3,2,1,2019,4,1,11,0,4,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,2.9021988,8.2187185,0,3,55.34,54.259998,59.43,58.049999,5,1,1,0,0,6,4,1,172.5,323521.03,0,0,3836.7664 -3520,4348,7920,7924,-9,-9,1,1,0,63,1,0,0,0,2,-9,6,3,0,1,4,0,6.0626187,5.9483175,1,0,-9,8,0,1,-31.273775,0,0,0,62,2,2,3,3,3,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.5479808,6.1654844,36.894192,3,54.790001,55.860001,47.580002,37.650002,6,1,1,0,0,10,2,1,757.59998,297539.19,0,0,2863.7615 -3520,4348,7921,-9,-9,7924,4,1,0,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1158.9935,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,757.59998,297539.19,0,0,2863.7615 -3520,4348,7922,-9,-9,7924,5,1,1,7,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-955.11615,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,1,757.59998,297539.19,0,0,2863.7615 -3520,4348,7923,-9,-9,7924,3,1,0,10,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,1,0,0,0,-9,0,-907.94482,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,10,2,1,757.59998,297539.19,0,0,2863.7615 -3520,4348,7924,7920,-9,-9,2,1,1,62,1,0,0,0,2,-9,6,3,0,1,2,0,5.6040597,5.4223084,1,0,-9,8,0,-1,-10.532811,0,0,0,63,2,4,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.5690448,5.9055948,14.859799,3,47.580002,37.650002,54.790001,55.860001,4,1,1,0,0,10,2,1,757.59998,297539.19,0,0,2863.7615 -3521,4349,7925,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,1,1,0,0,5,7.935473,8.0774012,0,3,0,0,0,-9,0,-1125.9833,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,30,15,1,0,-9,0,15.097682,15.097682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,-9,-9,5,1,1,0,0,8,4,1,1262,-272484.72,0,0,849.11383 -3522,4350,7926,7927,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,3,8.2360992,8.1353245,0,1,0,-9,2,0,2,49.892826,-9,1,1,24,2,2,1,-9,-9,2019,1,1,8,0,38,0,15,1,0,1,0,11.138768,11.138768,0,0,0,0,0,0,0,0,0,0,0,5.6247125,0,0,0,44,53,44.669998,52.970001,6,1,1,0,0,2,4,1,1032,-12063.006,0,0,2455.8145 -3522,4350,7927,7926,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,0,2,7.83814,8.0565853,0,1,0,-9,2,0,-2,-113.43885,0,1,0,26,1,3,1,1,1,2019,1,2,12,1,30,39,15,1,0,1,0,8.481348,8.481348,0,0,0,0,0,0,0,0,0,0,0,.66465348,0,0,0,44.669998,52.970001,44,53,4,1,1,0,1,2,4,1,1032,-12063.006,0,0,2455.8145 -3523,4351,7928,7929,-9,-9,2,1,0,43,1,0,1,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,9,0,-4,0,0,0,1,47,1,4,1,-9,-9,2019,3,1,0,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.470001,51.450001,59.529999,56.439999,7,2,3,1,1,8,1,1,660,44796.715,0,0,829.86719 -3523,4351,7929,7928,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,25,0,4,0,0,0,0,43,1,4,3,2,2,2019,2,2,0,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6232553,0,0,0,59.529999,56.439999,64.470001,51.450001,7,2,3,0,0,8,1,1,660,44796.715,0,0,829.86719 -3523,4352,7930,-9,7928,7929,3,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-736.73254,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,2,3,0,0,8,1,1,745,0,0,0,0 -3524,4353,7931,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,1,1,0,0,4,6.1093774,8.836194,8.8454342,3,0,0,0,-9,0,-906.85052,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6387091,9.0619669,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,12,5,1,434,850822.63,0,0,4169.6079 -3525,4354,7932,7933,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,4,0,7.6054363,7.5023193,1,0,-9,30,0,7,-78.84021,0,0,0,71,1,4,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0087843,7.8846021,0,0,59.139999,52.5,57.16,56.150002,7,1,1,0,0,12,3,1,1163,815024.5,0,0,3780.5845 -3525,4354,7933,7932,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,4,0,6.5684662,6.8824186,1,0,-9,30,0,-7,-43.311443,0,0,0,78,3,4,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.93925,6.5916028,0,0,57.16,56.150002,59.139999,52.5,7,1,1,0,0,12,3,1,1163,815024.5,0,0,3780.5845 -3526,4355,7934,7935,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,1,0,6.6601229,6.6296821,1,0,-9,6,0,10,-111.2671,0,0,0,59,1,2,1,-9,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,11.023158,0,0,0,0,0,1,1,0,.39574599,6.6955309,0,0,37.360001,19.77,50.27,48.860001,3,1,1,0,0,10,4,1,494.5,417967.81,0,0,2883.856 -3526,4355,7935,7934,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,2,8.400012,8.2758131,0,1,0,-9,6,0,-10,-74.432915,0,0,0,69,3,1,3,3,3,2019,2,2,9,0,37,40,15,1,0,4,0,13.83087,13.83087,0,0,0,0,0,0,0,14.5,1,1,0,6.6532316,0,23.160635,2,50.27,48.860001,37.360001,19.77,5,1,1,0,0,10,4,1,494.5,417967.81,0,0,2883.856 -3527,4356,7936,-9,7937,7938,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.5038,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,1669.75,331928.75,0,0,4395.353 -3527,4356,7937,7938,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,0,4,7.820663,7.5021253,0,2,0,-9,2,0,0,-108.74812,0,0,1,43,2,4,1,-9,-9,2019,1,1,11,2,24,0,15,1,0,1,0,11.312368,11.312368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,43.439999,58.700001,5,1,1,0,1,12,4,1,1669.75,331928.75,0,0,4395.353 -3527,4356,7938,7937,-9,-9,1,1,1,43,1,1,2,0,2,-9,2,1,0,0,4,9.0616131,9.0057144,0,2,0,-9,2,0,9,-159.13083,0,0,0,34,1,4,1,2,2,2019,1,2,14,2,10,0,15,1,0,1,0,71.819405,71.819405,0,0,0,0,0,0,0,0,0,0,0,1.2904594,0,0,0,43.439999,58.700001,48,57,6,1,1,0,0,12,4,1,1669.75,331928.75,0,0,4395.353 -3527,4356,7939,-9,7937,7938,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.6497,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,1669.75,331928.75,0,0,4395.353 -3528,4357,7940,-9,7941,-9,2,1,1,17,2,0,0,1,2,0,7,2,0,0,3,6.5650449,6.4623899,0,3,0,0,0,-9,0,-1104.48,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,11,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2384121,0,0,0,49.970001,53.990002,-9,-9,6,1,1,0,0,7,3,1,2822,59642.422,0,0,2851.678 -3528,4357,7941,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,2,7.4296374,7.4219337,4.0458322,3,0,0,0,-9,0,-984.18982,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,38,35,15,1,1,-9,0,4.5162053,4.5162053,0,0,0,0,0,0,0,0,1,1,0,4.148139,0,0,0,42.779999,32.119999,-9,-9,3,1,1,0,0,7,3,1,2822,59642.422,0,0,2851.678 -3529,4358,7942,7943,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,9.7658825,9.626543,0,1,0,-9,32,0,-1,-161.41212,0,0,0,56,1,4,1,2,1,2019,1,1,11,1,55,50,15,1,0,1,0,30.24461,30.24461,0,0,0,0,0,0,0,2,0,0,0,3.9700134,0,1.1246674,3,52.23,55.599998,54.200001,57.490002,6,1,1,0,0,9,5,1,1554.5,3546010.5,0,0,6485.7271 -3529,4358,7943,7942,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.1850681,7.8740115,0,1,0,-9,32,0,1,7.4628439,0,0,0,55,1,4,1,1,2,2019,1,2,12,1,26,26,15,1,0,1,0,15.024995,15.024995,0,0,0,0,0,0,0,7,0,0,0,0,0,2.5823483,3,54.200001,57.490002,52.23,55.599998,6,1,1,0,0,9,5,1,1554.5,3546010.5,0,0,6485.7271 -3529,4359,7944,-9,7943,7942,3,1,1,23,2,0,0,0,1,1,1,1,0,0,4,7.4650297,7.819531,0,3,0,0,0,-9,0,-1024.2028,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,45,0,15,1,0,-9,1,6.0656548,6.0656548,0,0,0,0,0,0,0,7,0,0,0,0,0,.48317209,3,45.400002,56.189999,-9,-9,5,1,1,0,0,9,3,1,407,35196.469,0,0,970.58649 -3530,4360,7945,7946,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,1,4,0,0,0,1,0,-9,37,0,1,0,0,0,0,59,2,1,3,3,3,2019,4,2,23,10,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.122826,1,38.959999,46.830002,19.01,22.639999,5,1,1,0,1,2,1,1,148.5,-90528.984,0,0,1385.0012 -3530,4360,7946,7945,-9,-9,2,1,0,59,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,37,0,-1,0,0,0,0,60,2,4,3,3,2,2019,4,1,36,12,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,38.959999,46.830002,1,1,1,0,1,2,1,1,148.5,-90528.984,0,0,1385.0012 -3531,4361,7947,7948,-9,-9,1,1,0,57,1,0,0,0,1,-9,1,1,0,0,5,7.1499891,9.0227337,8.7402601,1,0,-9,25,0,1,-3.4252734,0,0,0,56,1,3,3,2,2,2019,2,2,14,2,30,35,15,1,0,4,0,5.6792126,5.6792126,0,0,0,0,0,0,0,0,0,0,0,8.7947206,0,0,0,43.630001,61.310001,49.630001,54.220001,3,1,1,0,0,8,5,1,311.5,515882,0,0,6564.5371 -3531,4361,7948,7947,-9,-9,2,1,1,56,1,0,0,0,1,-9,4,3,0,0,3,6.9779897,8.2184839,8.2567635,1,0,-9,10,0,-1,92.937737,0,0,0,57,1,5,1,-9,-9,2019,3,1,12,0,5,60,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.0802417,8.2122612,5.8913574,3,49.630001,54.220001,43.630001,61.310001,6,1,1,0,0,8,5,1,311.5,515882,0,0,6564.5371 -3532,4362,7949,7951,-9,-9,2,1,1,53,1,0,3,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,19,0,9,0,0,0,0,44,3,3,3,2,2,2019,4,1,9,1,0,24,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6266651,0,0,0,53,54,47.639999,38.66,6,2,3,1,0,8,1,0,339.39999,-7711.1606,0,0,2109.3938 -3532,4362,7950,-9,7951,7949,6,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.8038,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,1,0,339.39999,-7711.1606,0,0,2109.3938 -3532,4362,7951,7949,-9,-9,1,1,0,44,1,0,3,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,19,0,0,0,0,0,1,53,3,4,3,3,-9,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.101593,3,47.639999,38.66,53,54,5,2,3,0,0,8,1,0,339.39999,-7711.1606,0,0,2109.3938 -3532,4362,7952,-9,7951,7949,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.3663,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,339.39999,-7711.1606,0,0,2109.3938 -3532,4362,7953,-9,7951,7949,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.43042,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,339.39999,-7711.1606,0,0,2109.3938 -3532,4363,7954,-9,7951,7949,3,1,1,25,2,0,3,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-883.81799,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,1,0,8,1,0,914,0,0,0,1304.8546 -3533,4364,7955,-9,-9,-9,1,1,0,32,3,0,2,0,1,-9,2,1,0,0,4,8.6149759,9.0850258,0,4,0,-9,0,-9,0,-983.73676,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,42,0,15,1,0,-9,0,13.268085,13.268085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,5,1,1,0,0,12,4,1,395,173872.7,0,0,1390.8732 -3533,4364,7956,-9,7955,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1133.0941,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,395,173872.7,0,0,1390.8732 -3533,4364,7957,-9,7955,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1083.528,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,395,173872.7,0,0,1390.8732 -3534,4365,7958,7960,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,0,3,8.0020943,8.0632534,0,2,0,-9,7,0,-7,31.189817,0,0,1,43,1,3,1,1,1,2019,1,2,9,0,24,24,15,1,0,1,0,20.274136,20.274136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.459999,36.25,52.599998,52.880001,6,1,1,0,0,10,3,1,810.33331,162959.97,0,0,5289.355 -3534,4365,7959,-9,7958,7960,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.10583,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,810.33331,162959.97,0,0,5289.355 -3534,4365,7960,7958,-9,-9,2,1,1,43,1,1,1,0,1,-9,1,1,0,0,3,0,.22873041,0,2,0,-9,7,0,7,101.04724,0,0,0,36,1,3,1,2,2,2019,1,1,12,0,37,40,15,1,0,1,0,.00063358631,.00063358631,0,0,0,0,0,0,0,0,0,0,0,8.7698154,0,0,0,52.599998,52.880001,59.459999,36.25,6,1,1,0,0,10,3,1,810.33331,162959.97,0,0,5289.355 -3535,4366,7961,-9,7962,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-982.68719,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,1,0,310,36619.672,0,0,1955.3578 -3535,4366,7962,-9,-9,-9,1,1,0,27,2,1,1,0,3,-9,5,1,0,0,2,0,0,0,4,0,0,0,-9,0,-969.89496,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.88,41.810001,-9,-9,4,1,1,0,0,13,1,0,310,36619.672,0,0,1955.3578 -3536,4367,7963,7964,-9,-9,2,1,0,61,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,6,0,-3,-56.104824,0,0,0,64,2,3,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,60.290001,52.110001,7,2,3,1,0,8,4,1,704,1454163.5,0,0,1147.5048 -3536,4367,7964,7963,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,8.4156446,8.6480532,0,1,0,-9,6,0,3,44.023445,0,0,0,61,3,4,3,3,3,2019,2,2,8,0,47,43,15,1,0,3,0,15.960757,15.960757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,57.16,56.150002,6,2,3,0,0,8,4,1,704,1454163.5,0,0,1147.5048 -3537,4368,7965,-9,7969,7966,7,1,1,4,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.12732,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4368,7966,7969,-9,-9,1,1,1,46,1,0,6,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,18,0,4,-13.249693,0,0,0,42,1,3,1,3,3,2019,1,2,12,0,12,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.509998,40.540001,46,50,4,3,4,0,0,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4368,7967,-9,7969,7966,3,1,0,13,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.83405,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4368,7968,-9,7969,7966,4,1,0,16,2,0,6,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-976.32391,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,3,4,0,0,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4368,7969,7966,-9,-9,2,1,0,42,1,0,6,0,1,-9,2,1,0,0,3,7.2695484,7.2175469,0,2,0,-9,17,0,-4,-99.734505,0,0,1,46,2,4,1,2,2,2019,1,1,9,3,16,16,15,1,0,1,0,9.2993937,9.2993937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,50,49.509998,40.540001,2,3,4,0,1,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4368,7970,-9,7969,7966,5,1,1,11,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.72675,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4368,7971,-9,7969,7966,8,1,1,7,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.1972,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,1545.4286,167942.69,0,0,3322.9194 -3537,4369,7972,-9,7969,7966,6,1,1,18,2,0,6,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-995.94989,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,8,2,0,657,199136.89,0,0,0 -3538,4370,7973,7975,-9,-9,1,1,1,45,1,1,2,0,2,-9,2,1,0,0,3,9.3154306,9.0698709,0,2,0,-9,24,0,4,-37.257305,0,0,0,41,2,4,1,2,2,2019,1,2,11,1,48,48,15,1,0,1,0,24.747353,24.747353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,54.790001,55.860001,5,1,1,0,0,5,5,1,218,610238.44,0,0,5138.8779 -3538,4370,7974,-9,7975,7973,5,1,1,14,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.21417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,5,1,218,610238.44,0,0,5138.8779 -3538,4370,7975,7973,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,0,4,8.3883934,8.2157249,0,2,0,-9,24,0,-4,24.419556,0,0,1,45,2,3,1,2,3,2019,1,1,6,0,37,37,15,1,0,1,0,13.768034,13.768034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,54.369999,54.799999,6,1,1,0,0,5,5,1,218,610238.44,0,0,5138.8779 -3538,4371,7976,-9,7977,-9,6,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1024.6096,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,1,1,356.5,10411.328,0,0,95.60849 -3538,4371,7977,-9,7975,7973,3,1,0,19,3,1,2,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-896.10339,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,1,1,5,1,1,356.5,10411.328,0,0,95.60849 -3538,4372,7978,-9,7975,7973,4,1,0,18,2,1,2,1,2,0,7,2,0,0,4,7.2244239,7.1018367,0,3,0,0,0,-9,0,-1028.3666,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,20,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,5,1,1,0,0,5,2,1,691,84918.258,0,0,-16.020294 -3539,4373,7979,7980,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.3405046,8.3598928,0,1,0,-9,2,0,-4,-27.023491,0,1,0,32,1,4,1,-9,-9,2019,1,1,11,2,40,40,15,1,0,1,0,12.280616,12.280616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.66,51.130001,32.48,59.490002,6,1,1,0,0,6,5,1,667.5,21417.645,0,0,4115.2349 -3539,4373,7980,7979,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.3670578,8.2473516,0,1,0,-9,2,0,4,181.3488,0,0,1,28,2,4,1,2,2,2019,1,2,18,6,42,44,15,1,1,1,0,13.24637,13.24637,0,0,0,0,0,0,0,0,0,0,0,2.3078566,0,0,0,32.48,59.490002,43.66,51.130001,6,1,1,0,0,6,5,1,667.5,21417.645,0,0,4115.2349 -3540,4374,7981,7982,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,47,0,4,0,0,0,0,69,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,4.6376858,3,62.389999,56.709999,57.330002,53.459999,1,1,1,0,0,4,1,1,410,246432.27,0,0,783.51086 -3540,4374,7982,7981,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,-4,0,0,0,0,73,3,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.886469,3,57.330002,53.459999,62.389999,56.709999,2,1,1,0,0,4,1,1,410,246432.27,0,0,783.51086 -3541,4375,7983,7984,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-3,-56.319298,0,0,0,75,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.894877,0,0,0,64.639999,48.759998,54.790001,55.860001,6,1,1,0,0,8,2,1,742,501931.75,0,0,2424.6235 -3541,4375,7984,7983,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.1887565,7.3988299,1,0,-9,54,0,3,35.73634,0,0,0,72,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.055891,7.0802417,0,0,54.790001,55.860001,64.639999,48.759998,6,1,1,0,0,8,2,1,742,501931.75,0,0,2424.6235 -3542,4376,7985,7986,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,46,0,3,-12.059867,0,0,0,63,2,2,1,3,2,2019,3,2,24,10,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2601192,0,0,0,36.580002,22.77,52.709999,32.759998,2,1,1,0,0,6,4,1,192,298550.59,0,0,3577.9019 -3542,4376,7986,7985,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,8.2158194,8.7795153,8.0212364,1,0,-9,46,0,-3,93.665657,0,0,0,66,3,1,3,3,2,2019,2,1,12,3,38,37,15,1,0,4,0,9.5787401,9.5787401,0,0,0,0,0,0,0,2,1,1,0,3.7441082,7.7618904,1.7700516,3,52.709999,32.759998,36.580002,22.77,6,1,1,0,0,6,4,1,192,298550.59,0,0,3577.9019 -3543,4377,7987,7988,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,58,0,-3,-127.56582,0,0,0,78,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.6309336,0,0,1,50.560001,43.32,54.619999,38.740002,6,1,1,0,0,4,1,1,1669.5,131211.55,0,0,3225.9194 -3543,4377,7988,7987,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,1,1,0,2.6430085,2.8063099,1,0,-9,58,0,3,-65.702766,0,0,0,75,3,2,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.0001619,0,0,54.619999,38.740002,50.560001,43.32,6,1,1,0,0,4,1,1,1669.5,131211.55,0,0,3225.9194 -3543,4378,7989,-9,-9,-9,3,1,1,24,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1089.8003,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.72639114,3,21.5,56.41,-9,-9,7,1,1,0,0,4,1,1,286,0,0,0,1213.1119 -3543,4379,7990,-9,-9,-9,4,1,0,20,3,0,0,0,2,-9,2,1,0,0,3,7.4693537,7.6817493,0,3,0,0,0,-9,0,-1099.8024,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,36,0,15,1,0,-9,0,7.1200829,7.1200829,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,3,1,1,0,0,4,3,1,318,63712.395,0,0,590.30737 -3544,4380,7991,-9,7993,7994,4,1,0,17,2,0,2,1,2,-9,7,2,0,0,2,0,0,0,2,0,-9,0,-9,0,-923.38922,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,27,12,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.200001,50.049999,-9,-9,4,1,1,0,0,9,5,1,620.5,967633.38,0,0,5126.4824 -3544,4380,7992,-9,7993,7994,5,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-905.85016,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,620.5,967633.38,0,0,5126.4824 -3544,4380,7993,7994,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,1,3,6.3575978,6.4793773,0,2,0,-9,17,-9,1,-159.0267,-9,0,0,44,1,5,1,2,2,2019,1,1,10,0,7,0,15,1,0,1,0,10.296063,10.296063,0,0,0,0,0,0,0,14.5,1,1,0,1.1387913,0,9.6299076,3,49.630001,54.220001,57.060001,57.759998,5,1,1,0,1,9,5,1,620.5,967633.38,0,0,5126.4824 -3544,4380,7994,7993,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,0,5,9.5326023,9.5831833,0,2,0,-9,17,-9,-1,-3.5788116,-9,0,0,45,1,3,1,2,2,2019,1,2,6,0,40,0,15,1,0,1,0,42.303799,42.303799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,49.630001,54.220001,7,1,1,0,0,9,5,1,620.5,967633.38,0,0,5126.4824 -3544,4381,7995,-9,7993,7994,3,1,0,19,2,0,2,1,2,-9,7,2,0,0,4,7.1240792,7.303309,0,3,0,-9,0,-9,0,-997.79553,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,29,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.7133834,3,43.73,59.700001,-9,-9,6,1,1,0,0,9,2,1,484,8478.6279,0,0,137.31242 -3545,4382,7996,7997,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,2,0,7.1409926,6.7182322,1,0,-9,46,0,3,-59.256813,0,0,0,62,1,1,3,3,3,2019,4,2,15,4,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.525692,6.9712276,26.208624,1,54.040001,23.959999,25.35,23.870001,6,1,1,0,0,7,3,1,704,2150063.5,0,0,3570.0811 -3545,4382,7997,7996,-9,-9,2,1,1,62,1,0,0,0,1,-9,8,3,1,1,1,0,7.2407541,7.0782027,1,0,-9,46,0,-3,4.910358,0,0,0,65,2,2,3,-9,-9,2019,4,1,31,11,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4147987,0,1,25.35,23.870001,54.040001,23.959999,2,1,1,0,0,7,3,1,704,2150063.5,0,0,3570.0811 -3546,4383,7998,-9,8000,7999,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1046.5221,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,4,1,435.33334,-18945.592,0,0,4258.3481 -3546,4383,7999,8000,-9,-9,1,1,1,37,1,1,1,0,2,-9,2,1,0,0,1,8.7182531,8.7764206,0,2,0,-9,2,0,6,153.32686,0,0,0,31,2,3,1,2,3,2019,1,2,9,0,45,58,15,1,0,1,0,18.621124,18.621124,0,0,0,0,0,0,0,0,1,1,0,6.9739799,0,0,0,48.23,25.65,52,54.509998,5,1,1,0,0,1,4,1,435.33334,-18945.592,0,0,4258.3481 -3546,4383,8000,7999,-9,-9,2,1,0,31,1,1,1,0,2,-9,5,1,0,0,3,7.7810211,7.9489498,0,2,0,-9,2,0,-6,-7.5789552,-9,0,1,37,2,1,1,-9,-9,2019,1,1,8,1,38,0,15,1,0,1,0,7.167419,7.167419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,48.23,25.65,6,1,1,0,0,1,4,1,435.33334,-18945.592,0,0,4258.3481 -3547,4384,8001,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,7.3337135,7.6477785,3,0,0,0,-9,0,-1110.0897,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4930072,7.5157208,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,2,3,1,415,560499.81,0,0,1137.1753 -3548,4385,8002,-9,-9,-9,1,1,0,27,2,1,2,0,2,-9,3,3,0,1,4,0,0,0,4,0,0,0,-9,0,-925.34186,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.009998,33.330002,-9,-9,2,1,1,1,0,13,1,0,351,-9212.1563,0,0,2549.469 -3548,4385,8003,-9,8002,-9,2,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1027.6958,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,13,1,0,351,-9212.1563,0,0,2549.469 -3548,4385,8004,-9,8002,-9,3,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1030.3115,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,13,1,0,351,-9212.1563,0,0,2549.469 -3549,4386,8005,8006,-9,-9,1,1,0,45,1,0,1,0,1,-9,2,1,0,0,3,8.483984,8.6928186,0,2,0,-9,24,0,-2,34.131466,0,0,0,47,2,3,1,2,2,2019,1,2,15,3,42,40,15,1,0,1,0,13.801714,13.801714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.75,60.630001,51.66,54.880001,3,1,1,0,0,4,4,1,987,987529.31,0,0,3864.0747 -3549,4386,8006,8005,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,8.3871183,8.3618116,0,2,0,-9,10,0,2,-177.29008,0,0,0,45,1,3,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,18.957546,18.957546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,27.75,60.630001,6,1,1,0,0,4,4,1,987,987529.31,0,0,3864.0747 -3549,4386,8007,-9,8005,8006,4,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.20245,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.830002,45.419998,-9,-9,6,1,1,0,0,4,4,1,987,987529.31,0,0,3864.0747 -3549,4387,8008,-9,8005,8006,3,1,0,20,2,0,1,0,2,-9,7,2,0,0,4,7.1986432,6.8843508,0,3,0,0,0,-9,0,-1086.5237,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,1,16,36,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1889969,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,4,2,1,546,-1575.5031,0,0,646.47046 -3550,4388,8009,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,6.7706499,6.8948607,3,0,0,0,-9,0,-1027.8594,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.0007334,6.5368595,23.853926,3,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,1,74,503157.41,0,0,1316.6897 -3551,4389,8010,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,4,8.9232931,8.3420534,0,3,0,0,0,-9,0,-992.255,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,42,15,1,0,-9,0,19.698629,19.698629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,5,5,1,518,632108,0,0,1822.8506 -3551,4390,8011,-9,-9,8010,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.5297832,8.9482546,0,3,0,-9,0,-9,0,-1084.4021,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,1,70,0,15,1,0,-9,1,10.810117,10.810117,0,0,0,0,0,0,0,0,0,0,0,4.1860046,0,0,0,46.630001,59.720001,-9,-9,6,1,1,0,0,5,5,1,1046,117184.35,0,0,2553.5884 -3552,4391,8012,-9,8014,8013,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.432,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,5,1,374.75,169878.81,0,0,5829.7593 -3552,4391,8013,8014,-9,-9,2,1,1,39,1,1,2,0,2,-9,1,1,0,0,4,9.4581223,9.320755,0,2,0,-9,6,0,4,2.6498067,0,0,0,35,1,5,1,-9,-9,2019,1,1,5,0,60,50,15,1,0,1,0,21.466499,21.466499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.82,46.150002,51.669998,60.18,7,1,1,0,0,13,5,1,374.75,169878.81,0,0,5829.7593 -3552,4391,8014,8013,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,0,5,8.1380758,8.1806688,0,2,0,-9,6,0,-4,38.091888,0,0,1,39,2,4,1,3,3,2019,1,2,19,8,21,22,15,1,1,1,0,21.686691,21.686691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.669998,60.18,54.82,46.150002,6,1,1,0,0,13,5,1,374.75,169878.81,0,0,5829.7593 -3552,4391,8015,-9,8014,8013,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.97662,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,5,1,374.75,169878.81,0,0,5829.7593 -3553,4392,8016,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,1,0,6.8077402,6.8455338,3,0,0,0,-9,0,-1030.0391,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,6.7114224,0,0,0,1,1,0,0,6.8206758,0,0,42.369999,15,-9,-9,4,1,1,0,0,10,2,1,198,775383.25,0,0,1399.3307 -3554,4393,8017,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,97,3,0,0,2,0,0,0,3,0,0,0,-9,0,-945.26044,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,26,9,0,16,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.8315051,0,0,0,37.639999,49.080002,-9,-9,1,1,1,0,1,6,1,0,255,196212.48,0,0,774.75702 -3555,4394,8018,-9,-9,-9,1,1,1,102,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1117.5785,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,7.8477674,0,0,0,1,1,0,0,0,0,0,57,43,-9,-9,6,1,1,0,0,13,1,0,516,7996.1978,0,0,1110.2363 -3556,4395,8019,8020,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,5,6.8271012,6.7338152,0,1,0,-9,29,0,-3,-124.89655,0,0,0,50,2,4,1,3,2,2019,1,2,7,0,20,21,15,1,0,1,0,5.4995871,5.4995871,0,0,0,0,0,0,0,0,0,0,0,6.2937431,0,0,0,49.25,61.25,53,55,7,1,1,0,0,9,4,1,329.5,327508.22,0,0,3509.0193 -3556,4395,8020,8019,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.6094675,8.5703802,0,1,0,-9,7,0,3,48.266861,0,0,0,47,2,5,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,19.7509,19.7509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,49.25,61.25,6,1,1,0,0,9,4,1,329.5,327508.22,0,0,3509.0193 -3556,4396,8021,-9,8019,8020,3,1,1,19,2,0,0,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-931.44629,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.610001,56.93,-9,-9,6,1,1,0,0,9,1,1,1509,-8510.3291,0,0,0 -3557,4397,8022,8023,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.0917625,8.096385,1,0,-9,50,0,-1,-30.30331,0,0,0,70,1,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,8.0522518,17.125111,3,61.259998,51.57,50.540001,62.09,7,1,1,0,0,11,4,1,1242,2890657.5,0,0,2176.8291 -3557,4397,8023,8022,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,5,0,7.3671184,7.476284,1,0,-9,50,0,1,-118.46926,0,0,0,69,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.7933002,7.5234013,26.710546,3,50.540001,62.09,61.259998,51.57,7,1,1,0,0,11,4,1,1242,2890657.5,0,0,2176.8291 -3557,4398,8024,-9,8023,8022,3,1,1,42,2,0,0,0,2,-9,2,1,0,1,3,7.6278872,7.5702329,0,3,0,0,0,-9,0,-1061.7184,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,3,1,37,37,15,1,0,-9,1,7.2020655,7.2020655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.949997,34.439999,-9,-9,4,1,1,0,0,11,3,1,2807,-419.43469,0,0,2599.0042 -3558,4399,8025,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,6.646615,6.8166819,3,0,0,0,-9,0,-1060.9464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.894804,0,0,52.830002,49.110001,-9,-9,7,1,1,0,0,11,2,1,389,171719.92,0,0,1815.6139 -3559,4400,8026,-9,-9,-9,1,1,0,28,2,1,3,0,2,-9,6,3,0,0,4,0,0,0,4,0,-9,0,0,0,-1006.8892,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.900002,56.66,-9,-9,6,1,1,0,0,4,1,0,346.5,0,0,0,1348.8438 -3559,4400,8027,-9,8026,-9,2,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1122.6429,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,1,0,346.5,0,0,0,1348.8438 -3559,4400,8028,-9,8026,-9,3,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1099.3402,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,346.5,0,0,0,1348.8438 -3559,4400,8029,-9,8026,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.9774,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,1,0,346.5,0,0,0,1348.8438 -3560,4401,8030,8031,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.0933313,8.4287834,1,0,-9,44,0,2,17.715668,0,0,0,69,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0437775,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,9,4,1,529,1407517.4,0,0,4042.3286 -3560,4401,8031,8030,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.8965316,7.2696295,1,0,-9,44,0,-2,-62.522701,0,0,0,71,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.902149,7.5652161,0,0,57.16,56.150002,54.790001,55.860001,7,1,1,0,0,9,4,1,529,1407517.4,0,0,4042.3286 -3561,4402,8032,-9,-9,-9,1,1,0,39,2,0,2,0,2,0,7,2,0,0,5,0,6.1815724,6.0570173,4,0,0,0,-9,0,-978.84515,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5513773,0,0,0,46.990002,58.369999,-9,-9,6,1,1,0,0,5,2,0,528.33331,-22820.1,0,0,1811.0823 -3561,4402,8033,-9,8032,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.6865,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,2,0,528.33331,-22820.1,0,0,1811.0823 -3561,4402,8034,-9,8032,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1186.8291,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,528.33331,-22820.1,0,0,1811.0823 -3562,4403,8035,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,2.8684609,2.7542028,3,0,0,0,-9,0,-894.2478,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.0281425,0,0,55.529999,51.549999,-9,-9,6,1,1,0,0,1,1,1,633,229373.22,0,0,551.43585 -3563,4404,8036,8038,-9,-9,2,1,0,41,1,0,1,0,2,-9,8,3,1,1,1,0,4.6717715,4.4539833,2,0,-9,20,0,-6,-125.77891,0,0,1,47,2,4,1,2,-9,2019,3,1,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,4.7464461,5.6732841,3,41.889999,17.4,58.720001,51.290001,5,1,1,0,0,13,2,1,427.33334,62810.563,0,0,1614.9524 -3563,4404,8037,-9,8036,8038,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.13123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,2,1,427.33334,62810.563,0,0,1614.9524 -3563,4404,8038,8036,-9,-9,1,1,1,47,1,0,1,0,2,-9,1,1,0,0,4,7.2182202,7.2910323,0,2,0,-9,20,0,6,76.475578,0,0,0,41,2,1,3,2,2,2019,2,2,9,0,40,40,15,1,0,3,0,4.1039557,4.1039557,0,0,0,0,0,0,0,7,1,1,0,0,0,13.343865,2,58.720001,51.290001,41.889999,17.4,6,1,1,0,0,13,2,1,427.33334,62810.563,0,0,1614.9524 -3564,4405,8039,8040,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,5,0,7.6705065,7.5010619,1,0,-9,36,0,3,-1.328379,0,0,0,73,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5625327,7.4561319,0,0,54.099998,59.110001,54.360001,46.43,6,1,1,0,0,9,2,1,433,849286.75,0,0,1774.9448 -3564,4405,8040,8039,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,5.9848289,6.1951389,1,0,-9,36,0,-3,-65.332703,0,0,0,76,2,5,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,12.074777,0,0,0,0,0,1,1,0,0,6.1004953,0,0,54.360001,46.43,54.099998,59.110001,6,1,1,0,0,9,2,1,433,849286.75,0,0,1774.9448 -3565,4406,8041,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.9851971,6.8260484,3,0,0,0,-9,0,-962.88068,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1143818,7.2985687,10.670466,3,54.77,48,-9,-9,6,1,1,0,0,1,2,1,151,415444.47,0,0,791.00793 -3566,4407,8042,8044,-9,-9,2,1,0,32,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-3,-141.88231,0,0,1,35,3,3,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.349998,44.889999,42.849998,38.110001,6,2,3,0,0,8,2,1,985,77836.656,0,0,1841.6896 -3566,4407,8043,-9,8042,8044,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.40887,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,1,985,77836.656,0,0,1841.6896 -3566,4407,8044,8042,-9,-9,1,1,1,35,1,0,2,0,3,-9,2,1,0,0,3,7.6743464,7.3731179,0,2,0,-9,7,0,3,140.11919,0,0,0,32,2,4,3,3,3,2019,2,2,5,0,44,50,15,1,0,3,0,3.7978444,3.7978444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,38.110001,52.349998,44.889999,7,2,3,0,0,8,2,1,985,77836.656,0,0,1841.6896 -3567,4408,8045,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,4,3,0,0,4,0,9.4995203,9.6162815,3,0,0,0,-9,0,-967.20416,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9.8918571,8.6838675,0,3,35.970001,61.830002,-9,-9,6,1,1,0,0,9,5,1,634,2626939.5,0,0,8579.3154 -3568,4409,8046,8047,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.8869019,7.6078305,0,1,0,-9,28,0,1,12.386818,0,0,0,58,1,3,1,3,3,2019,1,1,10,0,35,30,15,1,0,1,0,7.8026237,7.8026237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.439999,54.259998,45.98,56.299999,3,4,2,0,0,8,5,1,1038,1356079.8,0,0,7589.5381 -3568,4409,8047,8046,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,10.233826,9.9945831,0,1,0,-9,26,0,-1,34.849739,0,0,0,59,2,3,1,2,2,2019,1,2,13,3,40,40,15,1,0,1,0,63.968056,63.968056,0,0,0,0,0,0,0,2,0,0,0,0,0,4.4648299,3,45.98,56.299999,49.439999,54.259998,5,3,4,0,0,8,5,1,1038,1356079.8,0,0,7589.5381 -3568,4410,8048,-9,8046,8047,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.9464278,7.9260712,0,3,0,0,0,-9,0,-1056.9047,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,37,20,15,1,1,-9,1,7.6622829,7.6622829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.77,51.849998,-9,-9,3,3,4,0,0,8,3,1,1801,47684.098,0,0,1300.4614 -3569,4411,8049,8050,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,1,0,7.1697898,6.9325809,1,0,-9,10,0,6,66.137184,0,0,0,63,2,3,1,-9,-9,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2568398,0,0,40.150002,33.330002,50.18,52.619999,5,1,1,0,0,2,3,0,774,149936.39,0,0,2020.7905 -3569,4411,8050,8049,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,6.9493699,6.7921844,0,1,0,-9,18,0,-6,6.9342513,0,0,0,69,3,1,3,2,2,2019,2,1,8,0,16,18,15,1,0,4,0,6.559433,6.559433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.619999,40.150002,33.330002,4,1,1,0,0,2,3,0,774,149936.39,0,0,2020.7905 -3570,4412,8051,8052,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.130908,8.1935492,1,0,-9,50,0,3,26.13887,0,0,0,68,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0381436,8.0073538,0,0,47.41,56.400002,49.810001,59.639999,6,1,1,0,0,10,4,1,358,2193627.5,0,0,5043.8975 -3570,4412,8052,8051,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,5,0,7.7452235,7.6144114,1,0,-9,50,0,-3,89.135231,0,0,0,71,1,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0402269,7.5122061,0,0,49.810001,59.639999,47.41,56.400002,6,1,1,0,0,10,4,1,358,2193627.5,0,0,5043.8975 -3571,4413,8053,8054,-9,-9,2,1,1,35,1,1,1,0,1,-9,2,1,0,0,5,8.9082146,8.9411688,0,2,0,-9,9,0,-3,-66.104996,0,0,0,38,2,4,1,2,2,2019,1,1,9,2,47,50,15,1,0,1,0,16.951441,16.951441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,62.400002,42.799999,6,1,1,0,0,12,5,1,728.33331,311726.19,0,0,4335.6235 -3571,4413,8054,8053,-9,-9,1,1,0,38,1,1,1,0,2,-9,5,1,0,0,4,9.3086863,8.7727089,0,2,0,-9,9,0,3,68.013489,0,0,1,35,1,5,1,2,1,2019,1,2,6,0,45,55,15,1,0,1,0,17.126488,17.126488,0,0,0,0,0,0,0,0,1,1,0,3.0402813,0,0,0,62.400002,42.799999,57.060001,57.759998,6,1,1,0,0,12,5,1,728.33331,311726.19,0,0,4335.6235 -3571,4413,8055,-9,8054,8053,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-949.38831,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,5,1,728.33331,311726.19,0,0,4335.6235 -3572,4414,8056,-9,-9,-9,2,1,0,26,3,0,0,0,1,-9,1,1,0,0,2,0,0,0,3,0,-9,0,-9,0,-1022.4738,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.200001,34.16,-9,-9,6,3,4,0,0,6,1,0,524,-110359.47,0,0,0 -3572,4415,8057,-9,-9,-9,1,1,0,22,2,0,0,1,1,0,7,2,0,0,4,6.2012167,6.0894723,0,3,0,0,0,-9,0,-1041.1963,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,11,27,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,50.880001,-9,-9,5,3,4,0,0,6,2,0,528,0,0,0,689.30518 -3573,4416,8058,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,8,3,1,1,1,0,6.886806,7.1886716,3,0,0,0,-9,0,-959.84692,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1399388,0,0,16.040001,23.99,-9,-9,3,1,1,0,0,1,2,0,768,331080.56,0,0,1569.3495 -3574,4417,8059,8060,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,9.0690317,9.0581703,0,1,0,-9,7,0,1,-94.899681,0,0,0,57,1,4,1,2,2,2019,1,2,8,0,40,45,15,1,0,1,0,26.855556,26.855556,0,0,0,0,0,0,0,0,0,0,0,3.1125536,0,0,0,54,54,39.029999,61.509998,6,1,1,0,0,8,5,1,528,2396846.5,0,0,4920.7871 -3574,4417,8060,8059,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,8.5591612,8.4386158,0,1,0,-9,30,0,-1,-274.89597,0,0,0,58,1,4,1,2,1,2019,1,1,17,5,52,0,15,1,1,1,0,9.0350981,9.0350981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.029999,61.509998,54,54,6,1,1,0,0,8,5,1,528,2396846.5,0,0,4920.7871 -3574,4418,8061,-9,8060,8059,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,6.7272105,6.7927384,0,3,0,0,0,-9,0,-930.71588,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,35,0,15,1,0,-9,1,2.5680139,2.5680139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,8,2,1,460,36734.719,0,0,1406.4003 -3574,4419,8062,-9,8060,8059,5,1,1,22,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1069.7339,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.75,61.27,-9,-9,6,1,1,0,0,8,1,1,1392,-43823.902,0,0,-24.286478 -3574,4420,8063,-9,8060,8059,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1059.5323,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,8,1,1,1131,-100279.59,0,0,0 -3575,4421,8064,8065,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,0,3,8.592452,8.3600883,0,1,0,-9,2,0,1,-130.82152,0,0,0,31,1,2,1,2,2,2019,1,2,18,6,43,40,15,1,1,1,0,15.741191,15.741191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.450001,63.27,39.82,34.580002,3,1,1,0,0,1,5,1,453,113376.89,0,0,4208.9443 -3575,4421,8065,8064,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,1,2,8.1426487,8.2512131,0,1,0,-9,2,0,-1,5.0467668,0,0,1,32,2,3,1,-9,-9,2019,1,1,18,6,20,38,15,1,1,1,0,25.313782,25.313782,0,0,0,0,0,0,0,0,1,1,0,6.6981769,0,0,0,39.82,34.580002,27.450001,63.27,4,1,1,0,0,1,5,1,453,113376.89,0,0,4208.9443 -3576,4422,8066,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,7.3994145,7.2023497,3,0,0,0,-9,0,-1089.4846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5584421,0,0,63.759998,31.299999,-9,-9,7,1,1,0,0,10,3,1,2185,-17778.771,0,0,1494.0492 -3577,4423,8067,8068,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,6.5662451,6.5170035,1,0,-9,46,0,7,94.77887,0,0,0,61,2,4,3,3,3,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.6165843,6.5753684,0,3,32.830002,48.419998,54.200001,57.490002,2,1,1,0,0,6,2,1,334.5,553024.13,0,0,735.22644 -3577,4423,8068,8067,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,5.9656286,6.229826,1,0,-9,46,0,-7,-61.111557,0,0,0,68,3,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.9681638,6.1567035,9.5819836,3,54.200001,57.490002,32.830002,48.419998,6,1,1,0,0,6,2,1,334.5,553024.13,0,0,735.22644 -3578,4424,8069,-9,8071,8070,4,1,1,16,2,0,2,1,-9,-9,7,2,0,0,4,5.5008082,5.3820314,0,2,0,0,0,-9,0,-1050.0122,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.360001,54.650002,-9,-9,5,1,1,0,0,1,4,1,852.33331,197812.19,0,0,4999.9097 -3578,4424,8070,8071,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,8.5727863,8.177681,0,2,0,-9,4,0,4,-56.263119,0,0,0,47,1,3,1,2,2,2019,1,2,11,1,32,37,15,1,0,1,0,16.710299,16.710299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.950001,49.970001,53.990002,5,1,1,0,0,1,4,1,852.33331,197812.19,0,0,4999.9097 -3578,4424,8071,8070,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,9.2191792,8.7166891,0,2,0,-9,4,0,-4,-159.95926,0,0,0,51,1,4,1,2,2,2019,1,1,10,0,53,52,15,1,0,1,0,16.352938,16.352938,0,0,0,0,0,0,0,7,1,1,0,6.8754435,0,0,3,49.970001,53.990002,49.27,56.950001,6,1,1,0,0,1,4,1,852.33331,197812.19,0,0,4999.9097 -3578,4425,8072,-9,8071,8070,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,5.4711165,5.3891802,0,3,0,0,0,-9,0,-932.98315,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.07,56.41,-9,-9,6,1,1,0,0,1,4,1,354,0,0,0,703.08533 -3579,4426,8073,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,1,3,0,7.0637398,7.0361738,3,0,0,0,-9,0,-1003.0945,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.9789605,0,0,1,1,0,0,6.6860986,0,0,35.650002,44.369999,-9,-9,5,1,1,0,0,12,2,1,247,79067.164,0,0,1877.4568 -3580,4427,8074,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,0,5,8.522193,8.4958363,0,3,0,0,0,-9,0,-936.41339,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,40,15,1,0,-9,0,19.38015,19.38015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,4,1,1,0,0,12,5,1,194,596284.06,0,0,1446.7983 -3581,4428,8075,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1036.809,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.43,52.779999,-9,-9,4,4,2,1,0,10,1,0,384,43621.785,0,0,669.59546 -3582,4429,8076,8078,-9,-9,1,1,0,48,1,0,4,0,1,-9,2,1,0,0,4,7.93712,7.7270846,0,2,0,-9,5,0,-5,106.87641,0,0,0,53,2,4,3,3,3,2019,2,6,11,5,40,11,15,1,1,3,0,9.37082,9.37082,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.169998,56.080002,53,54,5,3,4,0,1,8,2,0,636.83331,327629.41,0,0,2656.7471 -3582,4429,8077,-9,8076,8078,5,1,1,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.5857,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,3,4,0,0,8,2,0,636.83331,327629.41,0,0,2656.7471 -3582,4429,8078,8076,-9,-9,6,1,1,53,1,0,4,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,5,5.3469372,-9,0,0,48,1,4,1,-9,-9,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53,54,42.169998,56.080002,6,4,4,1,0,8,2,0,636.83331,327629.41,0,0,2656.7471 -3582,4429,8079,-9,8076,8078,3,1,0,13,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-953.83081,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,-9,-9,5,3,4,0,0,8,2,0,636.83331,327629.41,0,0,2656.7471 -3582,4429,8080,-9,8076,8078,4,1,1,12,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-864.80115,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,3,4,0,0,8,2,0,636.83331,327629.41,0,0,2656.7471 -3582,4429,8081,-9,8076,8078,2,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.7841,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,636.83331,327629.41,0,0,2656.7471 -3583,4430,8082,8083,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,-1,30.011198,0,0,0,75,2,4,3,3,3,2019,4,1,31,12,0,0,15,4,1,4,0,0,0,1,0,11.114366,0,0,0,0,0,1,1,0,0,0,0,0,29.950001,27.25,52.43,55.57,4,1,1,0,0,6,4,1,616,1123643.4,0,0,3802.2717 -3583,4430,8083,8082,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,8.9204016,8.5769396,1,0,-9,54,0,1,-57.598515,0,0,0,74,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.592433,8.7344904,0,0,52.43,55.57,29.950001,27.25,6,1,1,0,0,6,4,1,616,1123643.4,0,0,3802.2717 -3584,4431,8084,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,0,5,7.9255557,8.0045862,6.630394,3,0,0,0,-9,0,-1055.8679,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,39,43,15,1,0,-9,0,9.2406092,9.2406092,0,0,0,0,0,0,0,0,1,1,0,5.6970677,6.5047855,0,0,55.630001,55.599998,-9,-9,6,1,1,0,0,6,4,1,549,547203.19,0,0,2262.5496 -3585,4432,8085,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,1,0,1.9523659,2.0484748,3,0,-9,0,-9,0,-1136.2111,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,30,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2.2891684,0,0,33.639999,18.889999,-9,-9,2,1,1,0,0,9,1,1,1734,89266.102,0,0,1129.1085 -3586,4433,8086,8087,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,1,-42.669987,0,0,0,76,2,3,3,3,-9,2019,4,2,23,11,0,0,15,4,1,4,0,0,0,1,0,3.0459955,0,0,0,0,0,1,1,0,1.3446814,0,0,0,50.91,20.120001,61.610001,37.790001,4,1,1,0,0,10,2,1,756,1271645.8,0,0,2517.1411 -3586,4433,8087,8086,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.4406266,7.7668853,1,0,-9,54,0,-1,102.63485,0,0,0,77,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.0234005,7.1406617,69.639015,1,61.610001,37.790001,50.91,20.120001,6,1,1,0,0,10,2,1,756,1271645.8,0,0,2517.1411 -3587,4434,8088,-9,8089,8090,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-884.36786,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,4,2,1,1060.8,2487599.5,0,0,795.02362 -3587,4434,8089,8090,-9,-9,1,1,0,38,1,0,3,0,1,-9,2,1,0,0,4,7.5276074,7.8926673,0,2,0,-9,12,0,-8,47.508575,0,0,1,46,1,4,1,2,2,2019,1,2,5,0,38,0,15,1,0,1,0,5.8985243,5.8985243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.029999,40.23,51,56,5,3,4,0,0,4,2,1,1060.8,2487599.5,0,0,795.02362 -3587,4434,8090,8089,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,6,0,8,-19.967176,-9,0,0,38,1,4,1,-9,-9,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6782275,0,0,0,51,56,68.029999,40.23,5,3,4,0,0,4,2,1,1060.8,2487599.5,0,0,795.02362 -3587,4434,8091,-9,8089,8090,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-979.37018,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,3,4,0,0,4,2,1,1060.8,2487599.5,0,0,795.02362 -3587,4434,8092,-9,8089,8090,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.62366,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,4,2,1,1060.8,2487599.5,0,0,795.02362 -3588,4435,8093,8094,-9,-9,1,1,0,53,1,0,1,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,4,0,-6,4.3043251,0,0,0,59,2,3,1,3,3,2019,3,3,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.990002,42.310001,65.230003,38.889999,5,2,3,0,1,5,2,1,589.5,2184.0146,0,0,1916.0498 -3588,4435,8094,8093,-9,-9,3,1,1,59,1,0,1,0,2,-9,2,1,0,0,3,7.4035087,7.5609856,0,2,0,-9,4,0,6,117.18552,0,0,0,53,3,2,3,-9,-9,2019,2,1,8,1,35,40,15,1,0,3,0,5.6909919,5.6909919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.230003,38.889999,43.990002,42.310001,2,2,3,0,1,5,2,1,589.5,2184.0146,0,0,1916.0498 -3589,4436,8095,-9,8099,8100,6,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-825.49615,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,972.83331,90293.328,0,0,2661.4639 -3589,4436,8096,-9,8099,-9,4,1,1,13,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1035.3199,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,4,3,0,972.83331,90293.328,0,0,2661.4639 -3589,4436,8097,-9,8099,8100,5,1,0,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.3591,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,3,0,972.83331,90293.328,0,0,2661.4639 -3589,4436,8098,-9,8099,-9,3,1,0,17,2,0,4,0,2,1,3,3,0,0,3,0,0,0,2,0,0,0,-9,0,-914.05975,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.110001,58.599998,-9,-9,3,1,1,1,0,4,3,0,972.83331,90293.328,0,0,2661.4639 -3589,4436,8099,8100,-9,-9,2,1,0,37,1,0,4,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,7,0,2,17.261578,0,0,1,35,2,3,1,-9,-9,2019,3,1,20,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.169998,26.059999,62.720001,37.279999,4,1,1,0,1,4,3,0,972.83331,90293.328,0,0,2661.4639 -3589,4436,8100,8099,-9,-9,1,1,1,35,1,0,4,0,2,-9,2,1,0,0,3,8.1169853,7.8877892,0,2,0,-9,7,0,-2,-32.314247,0,0,0,37,2,1,3,2,3,2019,2,2,12,0,48,43,15,1,0,3,0,10.366037,10.366037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.720001,37.279999,44.169998,26.059999,4,1,1,0,0,4,3,0,972.83331,90293.328,0,0,2661.4639 -3590,4437,8101,8102,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.4330263,7.2663527,0,1,0,-9,30,0,1,-77.423431,0,0,0,48,2,4,1,2,2,2019,1,2,10,0,20,18,15,1,0,1,0,8.4836349,8.4836349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.310001,46.75,51,55,5,2,3,0,0,2,5,1,1229,529349.13,0,0,8223.7979 -3590,4437,8102,8101,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,0,4,9.5114574,9.374691,0,1,0,-9,30,0,-1,-102.0043,0,0,0,49,2,3,1,2,2,2019,1,1,9,1,35,35,15,1,0,1,0,63.028416,63.028416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,55,42.310001,46.75,6,2,3,0,0,2,5,1,1229,529349.13,0,0,8223.7979 -3590,4438,8103,-9,8101,8102,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,7.4653878,7.5277419,0,3,0,0,0,-9,0,-1094.657,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,23,7,10,37,15,1,1,-9,1,34.713673,34.713673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.5,43.139999,-9,-9,4,2,3,0,0,2,3,1,194,-120520.36,0,0,400.96082 -3590,4439,8104,-9,8101,8102,4,1,1,22,2,0,0,0,1,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1176.0801,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.990002,39.169998,-9,-9,4,2,3,0,0,2,2,1,339,-73497.352,0,0,0 -3591,4440,8105,-9,8108,-9,2,1,1,17,2,0,3,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-972.95844,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,2,1,347.75,-116801.75,0,0,1190.0553 -3591,4440,8106,-9,8108,-9,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-987.58948,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,1,347.75,-116801.75,0,0,1190.0553 -3591,4440,8107,-9,8108,-9,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1009.3787,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,12,2,1,347.75,-116801.75,0,0,1190.0553 -3591,4440,8108,-9,-9,-9,1,1,0,39,3,0,3,0,2,-9,1,1,0,0,5,5.2977276,5.4243836,0,4,0,-9,0,1,0,-1156.1001,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,0,0,16,35,15,1,0,-9,0,1.2678899,1.2678899,0,0,0,0,0,0,0,5.48,1,1,0,0,0,11.227257,3,62.389999,56.709999,-9,-9,7,1,1,0,0,12,2,1,347.75,-116801.75,0,0,1190.0553 -3592,4441,8109,8110,-9,-9,1,1,0,57,1,0,2,0,2,-9,2,1,0,0,1,7.8759966,7.9472413,0,2,0,-9,3,0,1,93.641899,0,0,0,56,2,2,1,2,-9,2019,1,2,13,3,30,30,15,1,0,1,0,8.1369371,8.1369371,0,0,0,0,0,0,0,0,1,1,0,3.0559518,0,0,0,41.060001,50.900002,61.790001,35.389999,4,1,1,0,0,9,4,0,985.5,-21090.82,0,0,2497.0925 -3592,4441,8110,8109,-9,-9,2,1,1,56,1,0,2,0,2,-9,1,1,0,0,2,8.1966248,8.0379171,0,2,0,-9,3,0,-1,-55.917351,0,0,0,57,2,1,1,2,2,2019,1,1,9,0,50,0,15,1,0,1,0,6.839767,6.839767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.790001,35.389999,41.060001,50.900002,4,1,1,0,0,9,4,0,985.5,-21090.82,0,0,2497.0925 -3592,4442,8111,-9,8112,-9,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1039.8761,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,1,0,536.66669,-25799.229,0,0,924.51129 -3592,4442,8112,-9,8109,-9,3,1,0,30,2,0,2,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1036.9156,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,30,25,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,49.389999,-9,-9,6,1,1,0,0,9,1,0,536.66669,-25799.229,0,0,924.51129 -3592,4442,8113,-9,8112,-9,5,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1073.6514,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,536.66669,-25799.229,0,0,924.51129 -3593,4443,8114,-9,-9,-9,1,1,0,60,2,0,1,0,2,-9,2,1,0,0,2,7.8194327,7.7504644,0,4,0,0,0,-9,0,-993.86957,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,1,40,40,15,1,0,-9,0,6.7794695,6.7794695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.689999,42.040001,-9,-9,4,1,1,0,0,2,3,0,864,128846.73,0,0,2197.6704 -3593,4444,8115,-9,8116,-9,4,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-998.28406,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,1201.5,60131.133,0,0,1165.1453 -3593,4444,8116,-9,8114,-9,2,1,0,31,2,0,1,0,2,-9,6,3,0,0,3,0,5.2676611,5.1979246,3,0,0,0,-9,0,-992.69604,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,33,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,5.4932714,0,119.27226,3,21.360001,62.23,-9,-9,1,1,1,0,1,2,2,0,1201.5,60131.133,0,0,1165.1453 -3593,4445,8117,-9,8114,-9,3,1,0,26,2,0,1,0,1,-9,2,1,0,0,2,7.6807799,7.5602951,0,3,0,0,0,-9,0,-839.01428,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,42,40,15,1,0,-9,1,5.5262961,5.5262961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.400002,43.040001,-9,-9,4,1,1,0,0,2,3,0,448,-36805.383,0,0,630.59058 -3594,4446,8118,8119,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,0,5,8.086504,8.1363325,0,2,0,-9,5,0,-8,-140.75058,0,0,1,43,1,4,1,2,2,2019,1,2,8,0,17,11,15,1,0,1,0,29.148136,29.148136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.040001,51.290001,54.200001,57.490002,7,1,1,0,0,7,5,1,670,524596,0,0,4295.8828 -3594,4446,8119,8118,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.2424612,9.3421278,0,2,0,-9,5,0,8,58.826145,0,0,0,35,2,5,1,1,1,2019,1,1,12,0,50,45,15,1,0,1,0,23.219873,23.219873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,59.040001,51.290001,6,1,1,0,0,7,5,1,670,524596,0,0,4295.8828 -3594,4446,8120,-9,8118,8119,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.5479,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,670,524596,0,0,4295.8828 -3594,4446,8121,-9,8118,8119,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.22137,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,670,524596,0,0,4295.8828 -3595,4447,8122,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1006.9957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,-9,-9,6,1,1,0,0,13,1,1,131,-18266.58,0,0,457.91638 -3596,4448,8123,-9,-9,-9,1,1,1,35,3,0,0,0,2,-9,2,1,0,0,2,8.8176746,8.8332663,0,3,0,0,0,-9,0,-940.4184,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,60,60,15,1,1,-9,0,8.513936,8.513936,0,0,0,0,0,0,0,0,0,0,0,3.5998068,0,0,0,23.77,28.58,-9,-9,1,1,1,0,0,12,4,0,324,32663.666,0,0,1898.2753 -3597,4449,8124,8125,-9,-9,2,1,1,35,1,1,1,0,1,-9,2,1,0,0,4,7.887229,7.8471084,0,2,0,-9,6,0,3,40.822071,0,0,0,32,1,4,1,-9,-9,2019,1,1,11,0,38,30,15,1,0,1,0,8.4944897,8.4944897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.830002,57.200001,5,1,1,0,0,11,5,1,782.66669,125899.06,0,0,5534.3267 -3597,4449,8125,8124,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,0,4,9.5349178,9.5790892,0,2,0,-9,6,0,-3,-24.705059,0,0,1,35,1,4,1,2,2,2019,1,2,14,2,40,40,15,1,0,1,0,33.605713,33.605713,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.830002,57.200001,4,1,1,0,0,11,5,1,782.66669,125899.06,0,0,5534.3267 -3597,4449,8126,-9,8125,8124,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.0824,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,782.66669,125899.06,0,0,5534.3267 -3598,4450,8127,-9,8128,8129,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.1746,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,1,518.75,256536.2,0,0,2832.8413 -3598,4450,8128,8129,-9,-9,2,1,0,32,1,0,2,0,1,-9,2,1,0,0,3,7.8065643,7.9215002,0,2,0,-9,11,0,2,-145.61607,0,0,1,30,2,4,1,2,2,2019,1,1,11,1,24,22,15,1,0,1,0,13.904545,13.904545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,57.16,56.150002,6,1,1,0,0,11,3,1,518.75,256536.2,0,0,2832.8413 -3598,4450,8129,8128,-9,-9,1,1,1,30,1,0,2,0,2,-9,2,1,0,0,4,8.02071,8.1194544,0,2,0,-9,11,0,-2,-68.869034,0,0,0,32,1,3,1,3,2,2019,1,2,8,1,28,30,15,1,0,1,0,15.003213,15.003213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,46.080002,57.200001,6,1,1,0,0,11,3,1,518.75,256536.2,0,0,2832.8413 -3598,4450,8130,-9,8128,8129,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.67041,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,1,518.75,256536.2,0,0,2832.8413 -3599,4451,8131,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1024.7102,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2602377,0,0,0,43.470001,50.150002,-9,-9,5,1,1,0,0,8,1,1,727,-83102.07,0,0,2130.1555 -3600,4452,8132,-9,-9,8133,4,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-966.5199,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,5,4,1,1744.6666,301787.34,0,0,1097.3472 -3600,4452,8133,-9,8136,8135,1,1,1,49,3,0,2,0,2,-9,2,1,0,0,3,8.1308413,8.2330513,0,3,0,0,0,-9,0,-1084.8088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,38,43,15,1,0,-9,1,12.179358,12.179358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.84,49.18,-9,-9,5,2,3,0,0,5,4,1,1744.6666,301787.34,0,0,1097.3472 -3600,4452,8134,-9,-9,8133,5,1,0,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1005.4915,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,5,4,1,1744.6666,301787.34,0,0,1097.3472 -3600,4453,8135,8136,-9,-9,2,1,1,75,1,0,2,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,2,0,6,0,-9,0,0,69,3,3,3,3,3,2019,4,3,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,50,47,5,2,3,0,0,5,1,1,584,251024.69,0,0,1870.6544 -3600,4453,8136,8135,8137,-9,3,1,0,69,1,0,2,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,2,0,-6,0,0,0,0,75,3,3,3,3,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,47,53,47,5,2,3,0,0,5,1,1,584,251024.69,0,0,1870.6544 -3600,4454,8137,-9,-9,-9,6,1,0,97,3,0,2,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-884.93036,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,43,-9,-9,6,4,6,0,0,5,1,1,3021,6081.1997,0,0,0 -3601,4455,8138,8139,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,5,0,7.2513518,7.4293637,1,0,-9,43,0,-2,27.295084,0,0,0,65,1,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.538995,7.348124,0,0,38.240002,63.73,47.939999,53.790001,5,1,1,0,0,9,3,1,299,1676776.5,0,0,2359.4878 -3601,4455,8139,8138,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,0,6.1028328,6.1882858,1,0,-9,43,0,2,-61.215004,0,0,0,63,1,5,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4808183,6.2406993,0,0,47.939999,53.790001,38.240002,63.73,6,1,1,0,0,9,3,1,299,1676776.5,0,0,2359.4878 -3602,4456,8140,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,2,8.5642214,8.2181549,0,3,0,0,0,-9,0,-976.36725,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,40,40,15,1,1,-9,0,16.187059,16.187059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,25.83,-9,-9,7,3,4,0,0,8,5,1,259,-83311.961,0,0,2717.2534 -3603,4457,8141,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,0,3,0,8.0426569,8.1555662,3,0,0,0,-9,0,-1052.4109,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0913315,6.0540662,0,0,41.349998,47.130001,-9,-9,6,1,1,0,0,7,4,1,76,995490.75,0,0,2111.7104 -3603,4458,8142,-9,8141,-9,2,1,0,27,2,0,0,0,1,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-929.87299,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2113147,0,0,0,45.23,46.75,-9,-9,6,1,1,0,0,7,1,1,427,-19761.492,0,0,919.10797 -3604,4459,8143,8144,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,33,0,0,0,0,0,0,56,3,2,3,3,2,2019,4,2,16,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.70154,1,44.25,23.219999,39,28.190001,3,1,1,0,0,13,1,0,1719.5,-44072.727,0,0,1603.1158 -3604,4459,8144,8143,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,37,0,0,0,0,0,0,56,2,1,3,3,3,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.057524,2,39,28.190001,44.25,23.219999,3,1,1,0,0,13,1,0,1719.5,-44072.727,0,0,1603.1158 -3605,4460,8145,8148,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,5,8.6608915,9.2304049,0,2,0,-9,7,0,3,-33.819519,0,0,0,37,2,4,1,2,2,2019,1,2,16,5,54,66,15,1,1,1,0,15.921614,15.921614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.669998,60.18,49,56,6,1,1,0,0,9,4,1,536,755879.81,0,0,3752.625 -3605,4460,8146,-9,8148,8145,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.08209,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,536,755879.81,0,0,3752.625 -3605,4460,8147,-9,8148,8145,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.9717,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,9,4,1,536,755879.81,0,0,3752.625 -3605,4460,8148,8145,-9,-9,2,1,0,37,1,0,2,0,2,-9,1,1,0,0,4,7.4478045,7.3568931,0,2,0,-9,7,0,-3,79.285049,0,0,1,40,1,5,1,-9,-9,2019,1,1,11,2,54,66,15,1,0,1,0,2.8729122,2.8729122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51.669998,60.18,5,1,1,0,0,9,4,1,536,755879.81,0,0,3752.625 -3606,4461,8149,-9,-9,-9,1,1,0,37,2,0,1,0,1,-9,2,1,0,0,3,8.4181376,8.8910503,0,4,0,0,0,-9,0,-987.78918,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,31,12,60,41,15,1,1,-9,0,11.521535,11.521535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.79,64.110001,-9,-9,5,3,4,0,0,8,4,0,770,-11268.07,0,0,2539.6968 -3606,4461,8150,-9,8149,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1018.3542,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,8,4,0,770,-11268.07,0,0,2539.6968 -3607,4462,8151,-9,-9,-9,1,1,0,97,3,0,0,0,3,-9,4,3,0,0,3,0,6.5018678,6.7915068,3,0,0,0,-9,0,-1020.643,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6091189,0,0,54,43,-9,-9,6,1,1,0,0,11,2,1,1168,285796.38,0,0,1922.01 -3608,4463,8152,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,5,8.3787727,8.2680216,0,3,0,0,0,-9,0,-1016.8281,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,35,35,15,1,0,-9,0,13.228204,13.228204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,2,4,0,582,6592.5771,0,0,2340.9409 -3609,4464,8153,-9,8156,8154,3,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.5096,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,1,473.25,86387.109,0,0,2212.9392 -3609,4464,8154,8156,-9,-9,1,1,1,42,1,1,2,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,21,0,0,5.5081406,0,0,0,42,1,5,1,3,-9,2019,1,2,20,7,0,70,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.25,55.369999,54.689999,57.470001,5,1,1,0,1,6,3,1,473.25,86387.109,0,0,2212.9392 -3609,4464,8155,-9,8156,8154,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.27863,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,473.25,86387.109,0,0,2212.9392 -3609,4464,8156,8154,-9,-9,2,1,0,42,1,1,2,0,1,-9,2,1,0,0,5,8.4697914,8.4370794,0,2,0,-9,21,0,0,-16.765736,0,0,1,42,1,3,1,3,2,2019,1,1,7,0,47,48,15,1,0,1,0,11.338317,11.338317,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,35.25,55.369999,6,1,1,0,0,6,3,1,473.25,86387.109,0,0,2212.9392 -3610,4465,8157,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,4.5407386,4.5156784,3,0,0,0,-9,0,-1030.5306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5658669,0,0,46.259998,42.16,-9,-9,4,1,1,0,0,2,2,0,262,174321.14,0,0,1235.4766 -3611,4466,8158,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,0,2,0,6.5878534,6.9568095,3,0,0,0,-9,0,-1112.479,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,.95454341,0,0,0,2.9206264,60.955154,0,1,1,0,2.802016,6.9256144,0,0,59.66,25.4,-9,-9,5,1,1,0,0,12,2,1,1864,338613.03,0,0,722.54498 -3612,4467,8159,8160,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.3331122,7.3991966,0,1,0,-9,15,0,-3,-69.429886,0,0,0,53,3,4,1,3,3,2019,1,2,9,1,32,32,15,1,0,1,0,7.9384174,7.9384174,0,0,0,0,0,0,0,0,0,0,0,3.8494167,0,0,0,49.07,50.549999,43.830002,52.700001,6,1,1,0,0,2,4,1,846.5,747873.44,0,0,2149.6104 -3612,4467,8160,8159,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,0,4,8.3845291,7.9804173,0,1,0,-9,15,0,3,-35.588146,0,0,0,50,2,3,1,3,3,2019,1,1,10,0,44,40,15,1,0,1,0,7.915215,7.915215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.830002,52.700001,49.07,50.549999,7,1,1,0,0,2,4,1,846.5,747873.44,0,0,2149.6104 -3613,4468,8161,8162,-9,-9,2,1,0,48,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,19,0,-4,60.571426,0,0,0,52,2,3,1,-9,-9,2019,3,1,17,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.529999,50.080002,32,54.529999,7,2,3,0,0,8,3,0,1335.5,465605.53,0,0,3349.6748 -3613,4468,8162,8161,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.1733255,8.0631428,0,1,0,-9,19,0,4,14.550422,0,0,0,48,2,3,3,-9,-9,2019,2,2,11,3,60,40,15,1,0,3,0,6.8670726,6.8670726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,54.529999,50.529999,50.080002,5,2,3,0,0,8,3,0,1335.5,465605.53,0,0,3349.6748 -3613,4469,8163,-9,8161,8162,3,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-947.89551,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,2,3,0,0,8,1,0,313,-9540.0068,0,0,-57.090927 -3613,4470,8164,-9,8161,8162,4,1,1,20,2,0,0,1,2,0,7,2,0,0,4,5.6631355,6.1275411,0,3,0,0,0,-9,0,-1064.4215,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,5,2,3,0,0,8,2,0,1196,19828.254,0,0,543.021 -3614,4471,8165,8167,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.0193739,8.6533518,0,2,0,-9,14,0,6,24.07559,0,0,0,36,1,5,1,1,2,2019,1,1,8,0,50,55,15,1,0,1,0,15.440663,15.440663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.869999,33.43,60.459999,6,1,1,0,0,12,5,1,1719.75,1376109.3,0,0,5602.6147 -3614,4471,8166,-9,8167,8165,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.9612,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,1719.75,1376109.3,0,0,5602.6147 -3614,4471,8167,8165,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,5,8.9967775,8.8817749,0,2,0,-9,14,0,-6,-130.45477,0,0,1,42,1,4,1,2,-9,2019,1,2,11,0,55,55,15,1,0,1,0,12.85344,12.85344,0,0,0,0,0,0,0,7,1,1,0,0,0,9.0319643,3,33.43,60.459999,54.77,55.869999,5,1,1,0,0,12,5,1,1719.75,1376109.3,0,0,5602.6147 -3614,4471,8168,-9,8167,8165,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.41785,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,5,1,1719.75,1376109.3,0,0,5602.6147 -3615,4472,8169,8171,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,0,4,7.9250312,8.0654116,0,2,0,-9,7,0,9,90.963806,0,0,1,28,3,3,1,-9,-9,2019,1,1,23,11,30,30,15,1,1,1,0,11.175589,11.175589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.599998,49.16,45.490002,50.810001,6,1,1,0,0,13,4,1,958.25,824.40674,0,0,2033.756 -3615,4472,8170,-9,8169,8171,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-946.14105,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,958.25,824.40674,0,0,2033.756 -3615,4472,8171,8169,-9,-9,1,1,1,28,1,1,2,0,3,-9,2,1,0,0,3,8.2401972,7.9537625,0,2,0,-9,7,0,0,11.703899,0,1,0,37,1,4,1,3,3,2019,1,2,12,0,39,40,15,1,0,1,0,9.6199703,9.6199703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.490002,50.810001,39.599998,49.16,3,1,1,0,0,13,4,1,958.25,824.40674,0,0,2033.756 -3615,4472,8172,-9,8169,8171,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.47742,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,4,1,958.25,824.40674,0,0,2033.756 -3616,4473,8173,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-937.04535,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.08,55.139999,-9,-9,4,1,1,1,0,13,1,0,236,13894.283,0,0,2849.9607 -3616,4474,8174,-9,8173,-9,2,1,1,20,2,0,1,0,2,-9,2,1,0,0,4,7.0747571,7.2161832,0,3,0,0,0,-9,0,-974.58038,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,21,30,15,1,0,-9,1,5.5661402,5.5661402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,2,0,516,-172375.64,0,0,389.69846 -3617,4475,8175,8176,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,49,0,-2,-130.72643,0,0,0,67,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6088057,0,0,3,64.029999,42.220001,68.330002,31.870001,7,1,1,0,0,10,4,1,116,1995371.1,0,0,4298.8711 -3617,4475,8176,8175,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,8.5290785,8.8178492,1,0,-9,49,0,2,28.578424,0,0,0,65,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4247379,8.5480862,7.8321142,3,68.330002,31.870001,64.029999,42.220001,7,1,1,0,0,10,4,1,116,1995371.1,0,0,4298.8711 -3618,4476,8177,-9,-9,-9,1,1,0,24,3,0,0,0,2,-9,2,1,0,0,4,6.6886153,6.5983286,0,3,0,0,0,-9,0,-923.23102,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,1,13,12,15,1,0,-9,0,5.7377982,5.7377982,0,0,0,0,0,0,0,42,1,1,0,0,0,49.408695,3,49.360001,50.279999,-9,-9,6,2,3,0,1,1,2,1,718,-152192.34,0,0,363.25012 -3619,4477,8178,8179,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,5,9.4354095,9.2073755,0,1,0,-9,8,0,1,32.017376,0,0,0,57,1,3,1,2,2,2019,1,2,5,0,58,60,15,1,0,1,0,19.182735,19.182735,0,0,0,0,0,0,0,0,0,0,0,6.8394566,0,0,0,54.099998,59.110001,54.970001,47.630001,6,1,1,0,0,7,5,1,1118,1127057.5,0,0,11417.959 -3619,4477,8179,8178,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,0,3,9.4751253,9.8677435,0,1,0,-9,8,0,-1,-46.316959,0,0,0,58,1,5,1,2,3,2019,1,1,10,0,45,47,15,1,0,1,0,39.173817,39.173817,0,0,0,0,0,0,0,0,0,0,0,3.7776897,0,0,0,54.970001,47.630001,54.099998,59.110001,6,1,1,0,0,7,5,1,1118,1127057.5,0,0,11417.959 -3620,4478,8180,8181,-9,-9,2,1,0,57,1,0,0,0,2,-9,97,3,0,0,4,0,0,0,1,0,-9,4,0,3,42.406757,0,0,0,54,1,4,1,-9,-9,2019,3,1,10,1,0,12,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7697673,0,0,0,50.049999,55.41,54.200001,57.490002,7,1,1,0,0,7,5,1,552,37049.703,0,0,12584.771 -3620,4478,8181,8180,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.6210842,9.9761095,0,1,0,-9,4,0,-3,-8.6308136,0,0,0,57,2,4,3,2,2,2019,2,2,7,0,40,40,15,1,0,3,0,40.559944,40.559944,0,0,0,0,0,0,0,0,0,0,0,8.5601006,0,0,0,54.200001,57.490002,50.049999,55.41,6,1,1,0,0,7,5,1,552,37049.703,0,0,12584.771 -3621,4479,8182,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,0,2,7.6580486,8.0759668,6.6290026,3,0,0,0,-9,0,-926.29602,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,22,23,15,1,0,-9,0,11.048863,11.048863,0,0,0,0,0,0,0,0,1,1,0,0,7.0424228,0,0,61.099998,41.189999,-9,-9,6,1,1,0,0,9,4,1,1761,1165044.6,0,0,2240.2808 -3622,4480,8183,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,8.3648586,8.3063221,4.0674086,3,0,0,0,-9,0,-996.72003,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,42,44,15,1,1,-9,0,13.51611,13.51611,0,0,0,0,0,0,0,0,1,1,0,4.6166687,4.1027689,0,0,47.080002,47.150002,-9,-9,4,1,1,0,0,9,5,1,437,185144.55,0,0,1513.718 -3623,4481,8184,8185,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,2,7.9276447,7.900588,0,1,0,-9,9,0,0,-146.68948,0,0,0,60,3,2,1,3,2,2019,1,2,10,1,60,40,15,1,0,1,0,5.5702643,5.5702643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.57,35.720001,55.299999,31.67,6,1,1,0,0,1,5,0,731,209388.16,0,0,2159.8394 -3623,4481,8185,8184,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,2,8.3050098,8.4938679,0,1,0,-9,9,0,0,-32.686714,0,0,0,60,2,2,1,3,3,2019,1,1,11,1,96,72,15,1,0,1,0,4.3054771,4.3054771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.299999,31.67,58.57,35.720001,4,1,1,0,0,1,5,0,731,209388.16,0,0,2159.8394 -3624,4482,8186,-9,-9,-9,2,1,0,32,2,0,0,0,2,-9,2,1,0,0,5,8.5620375,9.0673084,0,1,0,-9,1,-9,-5,-80.949982,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,1,9,0,44,0,15,1,0,-9,0,17.542812,17.542812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,49,56,5,1,1,0,0,2,4,1,778,63829.852,0,0,2568.2629 -3625,4483,8187,8189,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,3,8.1339703,8.4604836,0,2,0,-9,8,0,10,-36.870625,0,0,0,41,2,4,1,-9,-9,2019,1,1,6,0,45,40,15,1,0,1,0,11.977516,11.977516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,9,3,1,979.66669,294575.41,0,0,2572.5679 -3625,4483,8188,-9,8189,8187,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.43848,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,979.66669,294575.41,0,0,2572.5679 -3625,4483,8189,8187,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.0064907,6.8128057,0,2,0,-9,15,0,-10,-7.1671338,0,0,1,51,2,3,1,3,3,2019,1,2,7,0,18,18,15,1,0,1,0,6.8367763,6.8367763,0,0,0,0,0,0,0,0,1,1,0,2.0449891,0,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,9,3,1,979.66669,294575.41,0,0,2572.5679 -3626,4484,8190,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1113.4673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.77,22.540001,-9,-9,3,2,3,0,1,8,1,0,1502,268537.66,0,0,510.62958 -3627,4485,8191,8192,-9,-9,1,1,1,54,1,0,1,0,1,-9,1,1,0,0,4,7.2833533,7.2482738,0,2,0,-9,22,0,9,53.298119,-9,0,0,45,1,4,1,2,2,2019,1,2,18,6,20,0,15,1,1,1,0,6.7274232,6.7274232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,16.809999,68.160004,5,1,1,0,1,10,5,1,1198.6666,627265.13,0,0,3580.7229 -3627,4485,8192,8191,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,4,8.976923,9.0149345,0,2,0,-9,22,0,0,28.564844,0,0,0,54,1,4,1,2,2,2019,1,1,29,11,55,57,15,1,1,1,0,15.900124,15.900124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.809999,68.160004,51.240002,58.84,2,1,1,0,1,10,5,1,1198.6666,627265.13,0,0,3580.7229 -3627,4485,8193,-9,8192,8191,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.8458,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,1,1198.6666,627265.13,0,0,3580.7229 -3628,4486,8194,8195,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.3711081,8.0281086,1,0,-9,42,0,1,-72.151169,0,0,0,62,1,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8158216,7.4516225,0,0,38.689999,61.75,60.119999,54.799999,6,1,1,0,0,4,5,1,160,1981242.8,0,0,3793.5959 -3628,4486,8195,8194,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,0,4,6.0060153,8.3667278,8.1501865,1,0,-9,42,0,-1,-37.41666,0,0,0,63,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3774595,8.4244947,0,0,60.119999,54.799999,38.689999,61.75,6,1,1,0,0,4,5,1,160,1981242.8,0,0,3793.5959 -3629,4487,8196,8197,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,7.8972816,8.1113262,0,1,0,-9,29,0,2,-78.105064,0,0,0,57,2,3,1,2,2,2019,1,2,9,0,37,35,15,1,0,1,0,9.895956,9.895956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,45.880001,53.369999,6,1,1,0,0,2,4,1,315.5,-56218.164,0,0,2445.1455 -3629,4487,8197,8196,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.1852293,8.3012581,0,1,0,-9,10,0,-2,-31.117355,0,0,0,59,2,3,1,-9,-9,2019,1,1,18,6,46,44,15,1,1,1,0,10.904228,10.904228,0,0,0,0,0,0,0,7,0,0,0,2.0140421,0,13.528223,3,45.880001,53.369999,52,54.509998,5,1,1,0,0,2,4,1,315.5,-56218.164,0,0,2445.1455 -3630,4488,8198,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,5,0,6.9049954,7.0165753,3,0,0,0,-9,0,-940.37903,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9082503,6.9100375,0,3,57.060001,57.759998,-9,-9,6,1,1,0,0,12,2,1,140,317850.81,0,0,1504.2168 -3631,4489,8199,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,2,0,7.3862729,7.4489527,3,0,0,0,-9,0,-966.29468,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.799109,0,0,46.75,31.6,-9,-9,6,1,1,0,0,9,3,1,1568,427492.66,0,0,2637.3098 -3631,4490,8200,-9,-9,-9,2,1,1,75,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-842.13141,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.439999,43.73,-9,-9,6,1,1,0,0,9,1,1,448,159872.47,0,0,1309.3591 -3632,4491,8201,-9,8202,8203,3,1,0,15,2,0,0,1,3,-9,-9,2,0,0,5,0,0,0,1,0,0,0,-9,0,-1104.3582,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,13,5,1,407.33334,1036300.8,0,0,6766.4268 -3632,4491,8202,8203,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.9856949,8.180789,1,0,-9,8,0,-6,17.795702,0,0,0,69,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2045083,7.7143288,0,3,57.16,56.150002,59.529999,56.439999,6,1,1,0,0,13,5,1,407.33334,1036300.8,0,0,6766.4268 -3632,4491,8203,8202,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.8987017,8.8458786,1,0,-9,8,0,6,125.18159,0,0,0,63,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3270693,8.8829842,0,0,59.529999,56.439999,57.16,56.150002,6,1,1,0,0,13,5,1,407.33334,1036300.8,0,0,6766.4268 -3633,4492,8204,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,2,1,0,0,3,8.1488876,8.4125309,0,3,0,0,0,-9,0,-986.53424,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,39,40,15,1,0,-9,0,11.141344,11.141344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,6,4,1,157,1315668,0,0,2349.1152 -3634,4493,8205,8206,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,0,5,8.0592937,8.0866528,0,1,0,-9,9,0,-6,-97.866493,0,0,0,39,2,4,1,3,3,2019,1,1,21,9,37,38,15,1,1,1,0,10.170341,10.170341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,61.580002,51.240002,58.84,6,1,1,0,0,5,5,1,276.5,247510.88,0,0,4903.1753 -3634,4493,8206,8205,8207,-9,1,1,0,39,1,0,0,0,2,-9,2,1,0,0,4,8.8571796,8.6663694,0,1,0,-9,9,0,6,37.389271,0,0,1,33,2,5,1,3,2,2019,1,2,9,0,39,38,15,1,0,1,0,17.587349,17.587349,0,0,0,0,0,0,0,0,1,1,0,3.354728,0,0,0,51.240002,58.84,43.09,61.580002,6,1,1,0,0,5,5,1,276.5,247510.88,0,0,4903.1753 -3634,4494,8207,-9,-9,-9,3,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,8.0075645,8.3199205,3,0,0,0,-9,0,-868.28638,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.7965016,0,0,0,0,1,1,0,0,7.8721199,0,0,51.419998,37.380001,-9,-9,5,1,1,0,0,5,4,1,196,471366.75,0,0,2090.7031 -3635,4495,8208,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,4,0,7.5911484,7.5107813,3,0,0,0,-9,0,-1128.2379,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6545188,7.7704387,0,3,49.349998,59.639999,-9,-9,6,1,1,0,0,11,3,1,146,688068.06,0,0,2867.5557 -3636,4496,8209,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,97,3,0,0,5,0,0,0,3,0,0,0,-9,0,-988.60492,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6305714,0,0,0,48.419998,60.529999,-9,-9,6,4,2,0,0,6,1,1,630,-955.25116,0,0,1629.8685 -3637,4497,8210,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,0,3,8.69491,8.5848112,0,3,0,0,0,-9,0,-1150.9054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,42,37,15,1,0,-9,0,18.077194,18.077194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,44.400002,-9,-9,4,1,1,0,0,13,5,1,248,768003.63,0,0,2353.5667 -3638,4498,8211,8212,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,0,2,8.5600805,8.7916203,0,1,0,-9,4,0,2,.83844984,0,0,0,28,1,3,1,3,3,2019,1,2,10,0,44,38,15,1,0,1,0,17.120543,17.120543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.360001,48.900002,47.68,56.389999,3,1,1,0,0,5,5,1,271,408855.75,0,0,4260.168 -3638,4498,8212,8211,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,3,7.9239411,8.0128698,0,1,0,-9,4,0,-2,-22.584276,0,1,1,30,2,2,1,-9,-9,2019,1,1,15,3,39,39,15,1,0,1,0,9.5364561,9.5364561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,56.389999,38.360001,48.900002,6,1,1,0,0,5,5,1,271,408855.75,0,0,4260.168 -3639,4499,8213,-9,8216,8217,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.9041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,7,3,0,740.20001,1645206.8,0,0,2516.7363 -3639,4499,8214,-9,8216,8217,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.40283,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,7,3,0,740.20001,1645206.8,0,0,2516.7363 -3639,4499,8215,-9,8216,8217,3,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.68317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,7,3,0,740.20001,1645206.8,0,0,2516.7363 -3639,4499,8216,8217,-9,-9,2,1,0,34,1,1,3,0,1,-9,3,3,0,0,1,0,0,0,2,0,-9,14,0,-5,81.941391,0,0,1,39,1,4,1,2,1,2019,3,1,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.81941408,0,0,0,40.939999,43.57,38.990002,48.509998,5,2,3,1,1,7,3,0,740.20001,1645206.8,0,0,2516.7363 -3639,4499,8217,8216,-9,-9,1,1,1,39,1,1,3,0,1,-9,2,1,0,0,4,8.7585974,8.6708288,0,2,0,-9,14,0,5,77.247581,0,0,0,34,1,1,3,3,1,2019,2,2,16,4,37,38,15,1,1,3,0,18.543217,18.543217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.990002,48.509998,40.939999,43.57,5,2,3,0,0,7,3,0,740.20001,1645206.8,0,0,2516.7363 -3640,4500,8218,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,5.3301296,5.3528352,3,0,0,0,-9,0,-1042.2382,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3364921,0,0,55.110001,47.630001,-9,-9,7,1,1,0,0,10,2,1,871,-81159.594,0,0,1441.2104 -3641,4501,8219,-9,8222,-9,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-858.40216,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,1355,40165.258,0,0,1959.3011 -3641,4501,8220,-9,8222,-9,2,1,0,17,2,0,3,1,3,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.2735,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,35.970001,61.830002,-9,-9,3,1,1,0,0,12,2,0,1355,40165.258,0,0,1959.3011 -3641,4501,8221,-9,8222,-9,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-943.06525,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,1355,40165.258,0,0,1959.3011 -3641,4501,8222,-9,-9,-9,1,1,0,46,3,0,3,0,3,-9,2,1,0,0,3,7.1396661,6.8562312,0,4,0,0,0,-9,0,-891.63904,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,18,16,15,1,0,-9,0,7.4331379,7.4331379,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4164414,3,32.82,51.25,-9,-9,2,1,1,0,0,12,2,0,1355,40165.258,0,0,1959.3011 -3642,4502,8223,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,0,4,0,6.7886338,6.7038188,3,0,0,0,-9,0,-1010.2748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6076612,6.3960605,0,0,63.240002,42.389999,-9,-9,6,1,1,0,0,6,2,1,418,441161.28,0,0,447.32407 -3643,4503,8224,8226,-9,-9,2,1,1,39,1,0,2,0,1,0,7,2,0,0,5,5.1033869,5.4829383,0,2,0,-9,9,0,-1,60.950912,-9,0,0,40,1,5,2,-9,-9,2019,4,1,6,0,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5568404,0,0,0,51.73,58.82,55.09,55.869999,7,1,1,0,0,6,2,1,1197.75,164782.61,0,0,2502.6318 -3643,4503,8225,-9,8226,8224,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.13818,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,6,2,1,1197.75,164782.61,0,0,2502.6318 -3643,4503,8226,8224,-9,-9,1,1,0,40,1,0,2,0,1,-9,7,2,0,0,5,0,0,0,2,0,-9,9,0,1,-67.949944,1,0,1,39,1,5,2,1,1,2019,4,2,5,0,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1266863,0,0,0,55.09,55.869999,51.73,58.82,6,4,2,0,0,6,2,1,1197.75,164782.61,0,0,2502.6318 -3643,4503,8227,-9,8226,8224,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.23151,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,6,2,1,1197.75,164782.61,0,0,2502.6318 -3644,4504,8228,-9,8230,8229,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.57434,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,10,4,1,994.66669,1967477.4,0,0,3338.7234 -3644,4504,8229,8230,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,5,8.9457769,8.9620914,0,2,0,-9,10,0,1,12.887585,0,0,0,48,2,4,1,-9,-9,2019,1,1,7,1,40,38,15,1,0,1,0,17.61573,17.61573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.869999,54.740002,57.220001,6,1,1,0,0,10,4,1,994.66669,1967477.4,0,0,3338.7234 -3644,4504,8230,8229,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,8.137639,8.2841177,0,2,0,-9,26,0,-1,-51.621464,0,0,0,49,1,5,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,8.950798,8.950798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,55.09,55.869999,6,1,1,0,0,10,4,1,994.66669,1967477.4,0,0,3338.7234 -3644,4505,8231,-9,8230,8229,3,1,0,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1035.892,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,21,8,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,-9,-9,3,1,1,0,0,10,4,1,893,178380.94,0,0,0 -3645,4506,8232,8233,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,6.0524344,6.092093,1,0,-9,46,0,-1,30.870111,0,0,0,75,1,4,3,3,-9,2019,4,1,21,8,0,0,15,4,1,4,0,0,0,1,0,23.308167,0,0,0,0,0,1,1,0,2.5941381,5.9887147,0,0,46.610001,32.5,53.5,53.700001,5,1,1,0,0,10,3,1,436,1081396.5,0,0,2687.3525 -3645,4506,8233,8232,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,4,0,7.6825824,7.8912072,1,0,-9,46,0,1,54.952515,0,0,0,74,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.979651,7.9221363,15.242125,1,53.5,53.700001,46.610001,32.5,6,1,1,0,0,10,3,1,436,1081396.5,0,0,2687.3525 -3646,4507,8234,8235,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,5,-13.137922,0,0,0,69,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,1.5443962,0,0,0,0,0,1,1,0,4.5199723,0,0,0,49.919998,44.02,52,54.509998,5,1,1,0,0,6,2,1,819.5,194317.3,0,0,1921.7004 -3646,4507,8235,8234,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,5.960259,5.9150648,1,0,-9,9,0,-5,-138.87234,0,0,0,74,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6016984,5.9627829,0,0,52,54.509998,49.919998,44.02,6,1,1,0,0,6,2,1,819.5,194317.3,0,0,1921.7004 -3647,4508,8236,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,2,1,0,0,3,7.4249973,7.2408848,0,3,0,0,0,-9,0,-944.37604,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,30,20,15,1,0,-9,0,4.717351,4.717351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.790001,41.889999,-9,-9,6,1,1,0,0,1,2,1,569,-40345.906,0,0,651.24255 -3648,4509,8237,-9,8238,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-925.73071,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,799.5,46485.918,0,0,1533.299 -3648,4509,8238,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,2,1,0,0,4,8.2335176,7.952311,0,4,0,0,0,-9,0,-862.91455,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,23,30,15,1,0,-9,0,21.318747,21.318747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,55.110001,-9,-9,6,1,1,0,1,2,3,1,799.5,46485.918,0,0,1533.299 -3648,4510,8239,-9,8238,-9,2,1,1,22,2,0,1,0,2,-9,2,1,0,0,4,8.9917078,8.8145609,0,3,0,0,0,-9,0,-1035.2728,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,66,0,15,1,0,-9,1,11.872591,11.872591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.080002,49.279999,-9,-9,6,1,1,0,0,2,5,1,321,-66402.297,0,0,2959.3586 -3649,4511,8240,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1004.9989,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.01,54.290001,-9,-9,5,1,1,1,0,13,1,0,252,-21170.674,0,0,1352.4937 -3650,4512,8241,-9,-9,-9,3,1,1,21,2,0,1,0,2,-9,2,1,0,0,4,7.2738824,7.4650846,0,3,0,0,0,-9,0,-961.5625,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,31,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3117186,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,3,1,416,-114391.56,0,0,708.66876 -3651,4513,8242,8243,-9,-9,1,1,0,50,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,23,0,2,-78.698532,0,0,0,48,2,3,1,2,2,2019,3,2,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,46.5,58.32,50.220001,6,1,1,0,0,6,2,1,619,103328.41,0,0,1626.5057 -3651,4513,8243,8242,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,8.1024771,8.2472248,0,2,0,-9,7,0,-2,46.861881,0,0,0,50,2,3,3,3,3,2019,2,1,7,0,40,45,15,1,0,3,0,9.4943981,9.4943981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,51.98,46.5,6,1,1,0,0,6,2,1,619,103328.41,0,0,1626.5057 -3652,4514,8244,8245,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.9828992,8.4609528,0,1,0,-9,7,0,-2,-161.96101,0,0,0,58,2,3,1,-9,-9,2019,1,1,17,5,44,0,15,1,1,1,0,11.207814,11.207814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.84,30.07,54.959999,53.169998,3,1,1,0,0,11,4,1,1045.5,261436,0,0,2612.1304 -3652,4514,8245,8244,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.1422253,8.1035423,0,1,0,-9,7,0,2,48.033512,0,0,0,56,2,3,1,3,3,2019,1,2,7,0,45,38,15,1,0,1,0,7.9287724,7.9287724,0,0,0,0,0,0,0,0,0,0,0,7.2469683,0,0,0,54.959999,53.169998,52.84,30.07,5,1,1,0,0,11,4,1,1045.5,261436,0,0,2612.1304 -3653,4515,8246,-9,8248,8249,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.8036,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,5,1,490.39999,680678.38,0,0,14066.095 -3653,4515,8247,-9,8248,8249,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.3358,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,490.39999,680678.38,0,0,14066.095 -3653,4515,8248,8249,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,0,4,7.8137827,7.9247704,0,2,0,-9,4,0,-3,82.098831,-9,0,1,43,1,4,1,2,2,2019,1,1,8,0,20,0,15,1,0,1,0,12.867352,12.867352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,54.200001,57.490002,6,1,1,0,0,8,5,1,490.39999,680678.38,0,0,14066.095 -3653,4515,8249,8248,-9,-9,1,1,1,43,1,0,3,0,1,-9,1,1,0,0,4,9.8532476,9.7132587,0,2,0,-9,4,0,3,-81.764832,0,0,0,40,2,4,1,2,2,2019,1,2,10,0,42,40,15,1,0,1,0,48.853401,48.853401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,51.830002,57.200001,5,1,1,0,0,8,5,1,490.39999,680678.38,0,0,14066.095 -3653,4515,8250,-9,8248,8249,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.393,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,490.39999,680678.38,0,0,14066.095 -3654,4516,8251,8252,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,4,6.8948402,8.385066,8.2934151,1,0,-9,42,0,2,-3.5396411,0,0,0,60,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1834059,7.8360057,0,0,41.169998,59.310001,47.099998,56.619999,7,1,1,0,0,1,3,1,451,955803.69,0,0,2680.46 -3654,4516,8252,8251,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,42,0,-2,24.252914,0,0,0,62,1,4,3,3,1,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.099998,56.619999,41.169998,59.310001,7,1,1,0,0,1,3,1,451,955803.69,0,0,2680.46 -3655,4517,8253,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,2,0,8.1073322,7.925365,3,0,0,0,-9,0,-1049.0769,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,8.6326189,0,0,0,0,4.1951222,2,1,1,0,4.4487672,7.7899995,0,3,56.580002,29.43,-9,-9,6,1,1,0,0,2,4,1,776,1066643,0,0,2740.158 -3656,4518,8254,8255,-9,-9,2,1,1,51,1,0,0,0,2,-9,1,1,0,0,4,8.9067698,8.7847958,0,1,0,-9,6,0,-1,-98.437759,-9,0,0,52,1,3,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,16.36352,16.36352,0,0,0,0,0,0,0,0,0,0,0,7.7749925,0,0,0,53,54,50.139999,53.970001,6,1,1,0,0,10,5,1,332.5,2192678.5,0,0,5095.563 -3656,4518,8255,8254,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.1635838,8.3229094,0,1,0,-9,6,0,1,-66.950226,0,0,0,51,2,4,1,2,2,2019,1,2,9,1,39,37,15,1,0,1,0,13.893679,13.893679,0,0,0,0,0,0,0,2,0,0,0,1.2564507,0,0,3,50.139999,53.970001,53,54,5,1,1,0,0,10,5,1,332.5,2192678.5,0,0,5095.563 -3657,4519,8256,8257,-9,-9,2,1,0,60,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,44,0,-2,134.1559,0,0,0,62,2,1,1,3,3,2019,3,1,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,20.440001,39.970001,14.6,5,1,1,0,0,11,3,0,485.5,538736.44,0,0,1926.8518 -3657,4519,8257,8256,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,1,7.8171968,8.0193377,6.4619684,1,0,-9,44,0,2,-14.536117,0,0,0,60,3,1,3,2,2,2019,2,2,26,12,40,40,15,1,1,3,0,6.297483,6.297483,0,0,0,0,0,0,0,7,1,1,0,0,6.6219196,5.0589042,1,39.970001,14.6,35.790001,20.440001,2,1,1,0,0,11,3,0,485.5,538736.44,0,0,1926.8518 -3658,4520,8258,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,4,0,7.1985583,6.9659839,3,0,0,0,-9,0,-998.82904,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.4563789,6.7374148,0,0,45.549999,55.860001,-9,-9,6,1,1,0,0,11,2,1,334,554950.75,0,0,972.49371 -3659,4521,8259,8260,-9,-9,1,1,0,35,1,0,0,0,2,-9,3,3,0,1,5,0,0,0,1,0,-9,6,0,3,-60.292961,0,0,1,32,2,5,1,2,2,2019,3,2,11,1,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,1,0,12,4,1,769.5,-147102.75,0,0,2439.7085 -3659,4521,8260,8259,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,5,8.4728413,8.5794153,0,1,0,-9,6,0,-3,-25.108532,0,0,0,35,2,5,3,-9,-9,2019,2,1,6,0,37,44,15,1,0,3,0,15.806685,15.806685,0,0,0,0,0,0,0,0,1,1,0,4.6307149,0,0,0,57.060001,57.759998,54.099998,59.110001,7,1,1,0,0,12,4,1,769.5,-147102.75,0,0,2439.7085 -3660,4522,8261,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,1,1,8.1302309,7.9306173,0,3,0,0,0,-9,0,-950.39374,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,37,37,15,1,1,-9,0,9.779335,9.779335,0,0,0,0,0,0,0,0,1,1,0,2.1889985,0,0,0,23.860001,20.5,-9,-9,2,1,1,0,0,9,4,0,403,-92300.961,0,0,4106.0962 -3661,4523,8262,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.8805618,7.6618395,0,3,0,0,0,-9,0,-900.8396,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,1,0,-9,0,7.6006751,7.6006751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,6,3,1,563,90050.078,0,0,492.69785 -3662,4524,8263,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,0,3,7.3761067,7.0963812,0,3,0,0,0,-9,0,-992.72235,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,37,15,1,0,-9,0,9.3387403,9.3387403,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,3,0,1493,83423.469,0,0,1324.0992 -3663,4525,8264,8265,-9,-9,2,1,1,60,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,35,0,-8,-66.959694,0,0,0,68,3,3,3,2,2,2019,4,1,9,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,11.36,58.02,44.82,6,1,1,0,0,4,2,1,465.5,143706.42,0,0,933.37433 -3663,4525,8265,8264,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,1,3,0,5.9884629,5.9823861,1,0,-9,35,0,8,18.782621,0,0,0,60,2,1,3,-9,-9,2019,4,2,5,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7641948,6.3277426,0,0,58.02,44.82,50.34,11.36,6,1,1,0,0,4,2,1,465.5,143706.42,0,0,933.37433 -3664,4526,8266,8267,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,0,3,0,7.0536256,6.9628186,1,0,-9,31,0,11,-45.319916,0,0,0,50,3,3,3,-9,-9,2019,4,2,15,3,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.4430845,6.8847737,7.4539809,1,45.73,42.439999,47,49,5,2,3,0,0,6,2,1,1299.5,445399.44,0,0,321.42673 -3664,4526,8267,8266,-9,-9,2,1,0,50,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,31,0,-11,25.031176,0,0,0,61,3,3,3,-9,-9,2019,4,1,12,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,45.73,42.439999,5,2,3,0,0,6,2,1,1299.5,445399.44,0,0,321.42673 -3665,4527,8268,8269,-9,-9,2,1,1,37,1,0,4,0,1,-9,2,1,0,0,2,8.9943161,9.0387287,0,2,0,-9,13,0,2,-13.989018,0,0,0,35,2,4,1,3,3,2019,1,1,26,11,45,46,15,1,1,1,0,18.421869,18.421869,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.219999,47.959999,58.150002,52.91,2,2,3,0,0,8,4,0,738.40002,524402.19,0,0,3796.7068 -3665,4527,8269,8268,-9,-9,1,1,0,35,1,0,4,0,2,-9,2,1,0,0,4,7.4092808,7.4323874,0,2,0,-9,13,0,-2,92.57708,0,0,1,37,1,2,1,2,3,2019,1,2,8,0,20,19,15,1,0,1,0,12.125504,12.125504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,29.219999,47.959999,6,2,3,0,0,8,4,0,738.40002,524402.19,0,0,3796.7068 -3665,4527,8270,-9,8269,8268,4,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.1232,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,0,738.40002,524402.19,0,0,3796.7068 -3665,4527,8271,-9,8269,8268,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.20654,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,0,738.40002,524402.19,0,0,3796.7068 -3665,4527,8272,-9,8269,8268,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1123.8381,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,0,738.40002,524402.19,0,0,3796.7068 -3666,4528,8273,8274,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,4,8.7175303,8.7248402,0,1,0,-9,6,0,-1,-31.314192,0,0,1,42,2,5,1,2,2,2019,1,1,12,0,45,41,15,1,0,1,0,12.46453,12.46453,0,0,0,0,0,0,0,0,0,0,0,3.517442,0,0,0,48,54.77,49.25,61.25,6,1,1,0,0,11,5,1,964,444581.75,0,0,5207.2695 -3666,4528,8274,8273,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,0,5,9.0551004,8.7040014,0,1,0,-9,6,0,1,-120.20912,0,0,0,41,2,4,1,2,2,2019,1,2,10,0,40,47,15,1,0,1,0,18.992613,18.992613,0,0,0,0,0,0,0,0,0,0,0,3.8044102,0,0,0,49.25,61.25,48,54.77,6,1,1,0,0,11,5,1,964,444581.75,0,0,5207.2695 -3667,4529,8275,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,5.3699579,5.6244388,3,0,0,0,-9,0,-872.88562,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.896677,0,0,53,44,-9,-9,6,1,1,0,0,6,2,1,567,874082.69,0,0,113.97645 -3668,4530,8276,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,0,4,0,8.8632793,9.1141014,3,0,0,0,-9,0,-1043.1243,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9989948,8.7614336,0,0,56.110001,47.07,-9,-9,6,1,1,0,0,11,5,1,275,1998808.8,0,0,4838.2012 -3669,4531,8277,8278,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,8.8684568,8.8155718,0,1,0,-9,7,0,5,97.214973,0,0,0,48,1,3,1,-9,-9,2019,1,1,9,1,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2830901,0,0,0,53,54,61.279999,48.880001,6,1,1,0,0,7,5,1,1075.5,518261.75,0,0,4524.9585 -3669,4531,8278,8277,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,7.3185792,7.2892137,0,1,0,-9,10,0,-5,-144.82394,0,0,0,53,1,4,1,2,1,2019,1,2,7,0,5,0,15,1,0,1,0,40.968719,40.968719,0,0,0,0,0,0,0,0,0,0,0,8.5018654,0,0,0,61.279999,48.880001,53,54,7,2,3,0,0,7,5,1,1075.5,518261.75,0,0,4524.9585 -3670,4532,8279,8280,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.2293482,5.9194245,1,0,-9,51,0,-5,-1.6870492,0,0,0,73,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7661338,6.4371166,0,0,63.02,35.77,55.959999,49.93,6,1,1,0,0,2,2,1,375.5,581633.25,0,0,1948.0116 -3670,4532,8280,8279,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.5969481,6.1103864,1,0,-9,49,0,5,-112.78667,0,0,0,68,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9780226,6.2572484,0,0,55.959999,49.93,63.02,35.77,7,1,1,0,0,2,2,1,375.5,581633.25,0,0,1948.0116 -3671,4533,8281,-9,8283,8282,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.7231,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,324,56249.879,0,0,1447.7578 -3671,4533,8282,8283,-9,-9,2,1,1,27,1,1,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,3,0,1,-22.986937,0,1,0,26,1,3,1,-9,-9,2019,1,1,12,2,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0573115,0,0,0,46,53,50.029999,52.619999,5,1,1,0,0,6,3,1,324,56249.879,0,0,1447.7578 -3671,4533,8283,8282,-9,-9,1,1,0,26,1,1,1,0,1,-9,2,1,0,0,3,8.4683037,8.4590454,0,2,0,-9,3,0,-1,-5.1813087,0,1,1,27,2,3,1,1,1,2019,1,2,9,0,37,38,15,1,0,1,0,12.996525,12.996525,0,0,0,0,0,0,0,0,1,1,0,1.521879,0,0,0,50.029999,52.619999,46,53,6,1,1,0,0,6,3,1,324,56249.879,0,0,1447.7578 -3672,4534,8284,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,2,1,0,0,3,8.0588064,8.0442648,0,3,0,0,0,-9,0,-1052.2574,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,39,15,1,0,-9,0,10.147817,10.147817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,-9,-9,6,1,1,0,0,6,4,0,576,405292.19,0,0,454.27673 -3673,4535,8285,-9,-9,-9,1,1,0,56,3,0,2,0,2,-9,2,1,0,0,4,7.533617,8.2791252,7.1856804,4,0,0,0,-9,0,-976.49243,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,32,32,15,1,0,-9,0,14.912872,14.912872,0,0,0,0,0,0,0,0,1,1,0,7.124794,0,0,0,63.07,39.91,-9,-9,6,1,1,0,0,2,3,1,249.66667,-97713.031,0,0,3320.4658 -3673,4535,8286,-9,8285,-9,4,1,0,17,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1015.7361,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.919998,55.529999,-9,-9,4,1,1,0,0,2,3,1,249.66667,-97713.031,0,0,3320.4658 -3673,4535,8287,-9,8285,-9,3,1,0,17,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1035.467,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,11,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.130001,45.84,-9,-9,3,1,1,0,0,2,3,1,249.66667,-97713.031,0,0,3320.4658 -3674,4536,8288,-9,8290,8289,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.45416,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,725.5,415562.16,0,0,4422.6411 -3674,4536,8289,8290,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,9.5226135,9.7337809,0,2,0,-9,9,0,0,-1.7861279,0,0,0,44,1,4,1,1,1,2019,1,2,12,2,39,39,15,1,0,1,0,36.104206,36.104206,0,0,0,0,0,0,0,0,0,0,0,4.9294343,0,0,0,41.470001,58.080002,41.869999,59.150002,6,1,1,0,0,9,5,1,725.5,415562.16,0,0,4422.6411 -3674,4536,8290,8289,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.4682503,8.3392382,0,2,0,-9,9,0,0,35.605789,0,0,1,44,2,3,1,-9,-9,2019,1,1,9,0,26,25,15,1,0,1,0,24.007887,24.007887,0,0,0,0,0,0,0,0,0,0,0,5.7346516,0,0,0,41.869999,59.150002,41.470001,58.080002,5,4,2,0,0,9,5,1,725.5,415562.16,0,0,4422.6411 -3674,4536,8291,-9,8290,8289,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-931.09357,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,9,5,1,725.5,415562.16,0,0,4422.6411 -3675,4537,8292,8293,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,10,0,-7,-81.770035,0,0,0,68,1,3,3,3,3,2019,4,2,23,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,25.690001,58.32,50.220001,3,1,1,0,0,12,3,1,404,1444919,0,0,2203.0078 -3675,4537,8293,8292,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,7.8405309,8.1859865,1,0,-9,10,0,7,-16.534157,0,0,0,61,2,2,3,3,3,2019,4,1,10,0,0,42,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8124928,7.9861002,0,0,58.32,50.220001,39,25.690001,6,1,1,0,0,12,3,1,404,1444919,0,0,2203.0078 -3676,4538,8294,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1084.354,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.970001,36,-9,-9,7,1,1,0,0,12,1,0,178,-49393.121,0,0,354.05029 -3676,4539,8295,-9,-9,8294,2,1,1,24,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-922.95465,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,5,1,0,12,1,0,1470,0,0,0,0 -3676,4540,8296,-9,-9,8294,3,1,1,20,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1005.9971,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.259998,46.68,-9,-9,5,1,1,0,0,12,1,0,2030,-89197.219,0,0,730.30249 -3677,4541,8297,8298,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,41,0,-2,0,0,0,0,58,3,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3413963,0,0,0,59.310001,49.810001,52.880001,45.970001,7,2,3,0,0,11,1,1,600,-21964.324,0,0,2267.6157 -3677,4541,8298,8297,-9,-9,1,1,1,58,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,40,0,2,0,0,0,0,56,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0061617,0,0,0,52.880001,45.970001,59.310001,49.810001,6,2,3,0,0,11,1,1,600,-21964.324,0,0,2267.6157 -3677,4542,8299,-9,8297,8298,3,1,0,32,2,0,0,0,1,-9,1,1,0,0,5,9.9910002,9.8304234,0,3,0,0,0,-9,0,-1046.9728,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,1,0,9,30,15,1,0,-9,1,178.47188,178.47188,0,0,0,0,0,0,0,0,0,0,0,7.7252302,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,11,5,1,1001,233901.77,0,0,9773.5254 -3678,4543,8300,-9,8302,8303,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.54694,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,295.25,196221.44,0,0,2278.7034 -3678,4543,8301,-9,8302,8303,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.07904,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,295.25,196221.44,0,0,2278.7034 -3678,4543,8302,8303,-9,-9,2,1,0,36,1,0,2,0,1,-9,1,1,0,0,4,6.6498942,7.1919136,0,2,0,-9,7,0,-1,12.274706,0,0,1,37,1,2,1,1,1,2019,1,1,9,0,22,32,15,1,0,1,0,7.1642385,7.1642385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,29.110001,49.23,6,1,1,0,0,2,4,1,295.25,196221.44,0,0,2278.7034 -3678,4543,8303,8302,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,0,2,8.5860281,8.0856943,0,2,0,-9,7,0,1,15.142608,0,0,0,36,1,4,1,2,2,2019,1,2,17,6,43,43,15,1,1,1,0,11.715181,11.715181,0,0,0,0,0,0,0,0,1,1,0,4.7202554,0,0,0,29.110001,49.23,51.240002,58.84,4,1,1,0,0,2,4,1,295.25,196221.44,0,0,2278.7034 -3679,4544,8304,-9,-9,-9,2,1,0,23,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1127.4769,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,30,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2082212,0,0,0,18.870001,71.089996,-9,-9,2,4,2,0,1,8,1,0,307,-23789.877,0,0,-340.76602 -3680,4545,8305,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,0,3,7.9620194,7.8199582,0,3,0,0,0,-9,0,-978.22504,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,9,37,38,15,1,1,-9,0,9.5563765,9.5563765,0,0,0,0,0,0,0,0,0,0,0,1.7097176,0,0,0,37.41,38.150002,-9,-9,6,1,1,0,1,5,4,1,190,535210.56,0,0,2493.991 -3681,4546,8306,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,4,7.8814168,7.7058272,0,3,0,0,0,-9,0,-939.46869,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,56,44,15,1,0,-9,0,3.8813686,3.8813686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.310001,55.560001,-9,-9,7,1,1,0,0,1,3,0,1378,189409.17,0,0,1899.5704 -3681,4547,8307,-9,-9,-9,2,1,0,62,2,0,0,0,2,-9,2,1,0,0,2,7.6869845,7.7479963,2.2831626,3,0,0,0,-9,0,-1054.2393,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,40,15,1,0,-9,0,7.4929299,7.4929299,0,0,0,0,0,0,0,0,0,0,0,0,2.518007,0,0,63.209999,19.799999,-9,-9,5,1,1,0,0,1,3,0,461,275673.09,0,0,1958.8297 -3682,4548,8308,8310,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,4,8.6288157,8.5570297,0,2,0,-9,5,0,4,-68.204071,0,0,0,37,2,2,1,2,1,2019,1,2,6,0,42,50,15,1,0,1,0,16.422689,16.422689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,36.490002,52.77,6,1,1,0,0,4,4,1,1397,336260.69,0,0,3033.5593 -3682,4548,8309,-9,8310,8308,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-822.39319,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,4,4,1,1397,336260.69,0,0,3033.5593 -3682,4548,8310,8308,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,2,8.0555229,7.9112401,0,2,0,-9,5,0,-4,76.23481,0,0,1,41,2,4,1,1,2,2019,1,1,10,1,43,37,15,1,0,1,0,6.9776082,6.9776082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.490002,52.77,57.16,56.150002,2,1,1,0,0,4,4,1,1397,336260.69,0,0,3033.5593 -3683,4549,8311,8312,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.9241219,6.4830718,1,0,-9,50,0,0,54.661827,0,0,0,72,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.480298,0,0,54.959999,53.169998,52,54.509998,5,1,1,0,0,2,3,1,1459.5,946964.75,0,0,3104.7615 -3683,4549,8312,8311,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.0500345,7.5541973,1,0,-9,50,0,0,-93.23333,0,0,0,72,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.083066,7.0520711,0,0,52,54.509998,54.959999,53.169998,7,1,1,0,0,2,3,1,1459.5,946964.75,0,0,3104.7615 -3684,4550,8313,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,2,0,5.8609962,5.722229,3,0,0,0,-9,0,-1130.9281,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7898273,6.1013594,0,0,62.509998,44.700001,-9,-9,6,1,1,0,0,7,2,1,499,27269.139,0,0,1666.5236 -3685,4551,8314,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,-9,0,0,0,-1064.0488,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,22,10,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.790001,56.27,-9,-9,4,1,1,1,0,1,1,0,828,19693.709,0,0,-41.015625 -3686,4552,8315,8316,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,5,8.4569159,8.3335247,0,1,0,-9,5,0,-11,6.5215702,0,0,1,41,1,3,1,2,2,2019,1,2,13,1,45,46,15,1,0,1,0,12.776943,12.776943,0,0,0,0,0,0,0,0,0,0,0,6.9281197,0,0,0,43.09,61.580002,57.330002,53.459999,6,1,1,0,0,9,5,1,495.5,797422.69,0,0,6256.4375 -3686,4552,8316,8315,-9,-9,2,1,1,41,1,0,0,0,1,-9,2,1,0,0,3,9.2231522,9.0167856,0,1,0,-9,5,0,11,-89.042625,0,0,0,30,2,5,1,-9,-9,2019,1,1,10,0,43,45,15,1,0,1,0,32.957794,32.957794,0,0,0,0,0,0,0,0,0,0,0,4.1614747,0,0,0,57.330002,53.459999,43.09,61.580002,6,1,1,0,0,9,5,1,495.5,797422.69,0,0,6256.4375 -3687,4553,8317,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,6.3899755,6.6252756,3,0,0,0,-9,0,-1059.1871,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43178093,6.5786562,0,0,56.700001,37.23,-9,-9,4,1,1,0,0,6,2,1,1850,304555.91,0,0,-441.4686 -3688,4554,8318,-9,8320,8321,2,1,1,10,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-844.95813,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,45,-9,-9,4,1,1,0,0,7,3,0,484,84273.789,0,0,2300.3071 -3688,4554,8319,-9,8320,8321,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.3511,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,3,0,484,84273.789,0,0,2300.3071 -3688,4554,8320,8321,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,2,8.1459293,8.3326893,0,2,0,-9,7,0,-2,-78.105843,0,0,1,36,1,2,3,2,1,2019,2,3,15,3,39,15,15,1,0,3,0,9.5971069,9.5971069,0,0,0,0,0,0,0,2,1,1,0,0,0,3.0321293,3,26.09,44.119999,24.41,51.049999,4,1,1,0,0,7,3,0,484,84273.789,0,0,2300.3071 -3688,4554,8321,8320,-9,-9,3,1,1,36,1,0,2,0,1,-9,3,3,0,1,2,0,0,0,2,0,-9,7,0,2,-96.749298,0,0,0,34,1,2,1,-9,-9,2019,3,1,28,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.41,51.049999,26.09,44.119999,3,1,1,1,0,7,3,0,484,84273.789,0,0,2300.3071 -3689,4555,8322,8323,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,0,5,9.3899355,9.0846548,0,1,0,-9,8,0,3,-61.51519,0,0,0,43,2,3,1,-9,-9,2019,1,1,7,0,55,39,15,1,0,1,0,22.363256,22.363256,0,0,0,0,0,0,0,0,0,0,0,2.9034271,0,0,0,45.810001,61.509998,58.23,37.93,6,1,1,0,0,8,5,1,391.5,694788.81,0,0,5033.668 -3689,4555,8323,8322,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,3,8.1720228,8.2660103,0,1,0,-9,8,0,-3,-61.6982,0,0,0,46,1,5,1,2,2,2019,1,2,8,1,41,41,15,1,0,1,0,12.152214,12.152214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.23,37.93,45.810001,61.509998,6,4,2,0,0,8,5,1,391.5,694788.81,0,0,5033.668 -3690,4556,8324,-9,-9,-9,1,1,0,43,3,0,0,0,3,-9,3,3,0,1,3,0,5.4874506,5.3112502,3,0,0,0,-9,0,-966.68384,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,32,12,0,39,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5541444,5.1710844,0,0,32.470001,38.98,-9,-9,2,1,1,1,0,12,2,0,3156,-79194.25,0,0,-163.84323 -3690,4557,8325,-9,8324,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,7.7848387,8.1892567,0,3,0,0,0,-9,0,-987.828,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,9,0,15,1,0,-9,1,28.539192,28.539192,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,1,12,3,0,441,64127.68,0,0,124.14396 -3691,4558,8326,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,0,2,8.7481012,8.4682693,0,4,0,0,0,-9,0,-951.64526,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,35,15,1,0,-9,0,20.966312,20.966312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,33.689999,-9,-9,4,1,1,0,0,6,4,1,585.5,358267.06,0,0,2648.6641 -3691,4558,8327,-9,8326,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1100.8164,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,6,4,1,585.5,358267.06,0,0,2648.6641 -3692,4559,8328,8329,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,0,4,8.37714,8.2513771,0,1,0,-9,7,0,6,-116.21735,0,0,0,50,2,3,1,-9,-9,2019,1,1,9,0,25,28,15,1,0,1,0,19.78434,19.78434,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,42.389999,52.150002,6,1,1,0,0,4,5,1,646,1427995.4,0,0,4389.3691 -3692,4559,8329,8328,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,0,3,9.1512794,8.9750586,0,1,0,-9,33,0,-6,78.710289,0,0,0,56,3,4,1,3,-9,2019,1,2,21,8,23,21,15,1,1,1,0,39.317623,39.317623,0,0,0,0,0,0,0,0,1,1,0,6.5205626,0,0,0,42.389999,52.150002,54,54,6,1,1,0,0,4,5,1,646,1427995.4,0,0,4389.3691 -3693,4560,8330,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-945.12286,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.540001,21.1,-9,-9,2,4,2,0,0,10,1,0,272,885896.75,0,0,332.60587 -3694,4561,8331,8332,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.754694,9.0899286,7.3939528,1,0,-9,6,0,4,175.60135,-9,0,0,49,2,3,3,3,3,2019,2,1,9,1,40,0,15,1,0,3,0,13.563997,13.563997,0,0,0,0,0,0,0,0,1,1,0,1.0198069,7.8168879,0,3,54,54,52,54.509998,6,1,1,0,0,9,5,1,2486.5,1612351.5,0,0,2905.5596 -3694,4561,8332,8331,-9,-9,1,1,0,49,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,35,0,-4,-39.15139,0,0,0,53,2,4,1,3,3,2019,3,2,9,0,0,2,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.762901,3,52,54.509998,54,54,6,1,1,0,0,9,5,1,2486.5,1612351.5,0,0,2905.5596 -3694,4562,8333,-9,8332,8331,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,8.0993214,8.7568359,0,3,0,0,0,-9,0,-1053.7505,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,12.825874,12.825874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,9,4,1,1292,-66563.93,0,0,1157.7994 -3694,4563,8334,-9,8332,8331,4,1,0,24,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1022.0637,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.560001,44.16,-9,-9,4,1,1,1,0,9,1,1,919,-73330.523,0,0,959.22498 -3695,4564,8335,-9,-9,-9,1,1,1,42,3,0,0,0,1,-9,2,1,0,0,4,8.3353796,8.4683771,0,3,0,0,0,-9,0,-963.9184,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,18.49826,18.49826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,4,4,0,820,341639.06,0,0,877.0061 -3696,4565,8336,8337,-9,-9,1,1,1,70,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,2,0,0,0,0,0,0,70,2,2,3,-9,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,26.818941,2,52,47,25.51,33.110001,5,1,1,0,0,13,1,1,350,225254.5,0,0,2263.0203 -3696,4565,8337,8336,-9,-9,2,1,0,70,1,0,1,0,2,-9,4,3,0,1,2,0,0,0,2,0,-9,2,0,0,0,0,0,0,70,3,3,3,3,3,2019,4,1,27,12,0,0,15,4,1,4,0,0,0,1,0,31.920002,13.907739,0,0,0,27.5,1,1,0,0,0,28.463547,3,25.51,33.110001,52,47,6,1,1,0,0,13,1,1,350,225254.5,0,0,2263.0203 -3696,4566,8338,-9,8337,8336,3,1,1,40,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-992.73773,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,13,1,1,586,0,0,0,332.01227 -3697,4567,8339,8340,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,3,7.9957027,8.0645628,0,1,0,-9,6,0,0,-1.9551892,0,0,0,62,2,3,1,2,3,2019,1,1,10,0,40,40,15,1,0,1,0,9.3365517,9.3365517,0,0,0,0,0,0,0,0,0,0,0,2.063972,0,0,0,56.099998,49.93,51,48,5,1,1,0,0,5,5,1,1256,322351.03,0,0,2835.5747 -3697,4567,8340,8339,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.5771742,8.4846516,0,1,0,-9,6,0,0,-66.286331,0,0,0,62,3,3,1,3,3,2019,1,2,10,1,40,24,15,1,0,1,0,13.732153,13.732153,0,0,0,0,0,0,0,0,0,0,0,3.0183098,0,0,0,51,48,56.099998,49.93,5,1,1,0,0,5,5,1,1256,322351.03,0,0,2835.5747 -3698,4568,8341,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,0,4,7.0029397,7.2966886,0,3,0,0,0,-9,0,-1115.9349,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,4,16,22,15,1,1,-9,0,9.6079435,9.6079435,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.181639,3,49.509998,40.540001,-9,-9,2,2,3,0,0,8,3,0,179,5833.6128,0,0,-1283.5614 -3699,4569,8342,8344,-9,-9,3,1,1,48,1,0,2,0,1,-9,2,1,0,0,3,8.1971226,8.2193222,0,2,0,-9,8,0,11,45.309689,0,0,0,37,2,5,1,-9,-9,2019,1,1,0,0,54,49,15,1,0,1,0,9.1900291,9.1900291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.310001,32.150002,62.389999,56.709999,6,2,3,0,0,8,4,0,492.25,372539.06,0,0,3253.1948 -3699,4569,8343,-9,8344,8342,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.79187,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,4,0,492.25,372539.06,0,0,3253.1948 -3699,4569,8344,8342,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,5,8.1737757,8.3301325,0,2,0,-9,13,0,-11,-34.595753,0,0,1,48,1,3,1,2,2,2019,1,3,6,0,40,45,15,1,0,1,0,11.355747,11.355747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,47.310001,32.150002,6,2,3,0,0,8,4,0,492.25,372539.06,0,0,3253.1948 -3699,4569,8345,-9,8344,8342,5,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.0436,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,4,0,492.25,372539.06,0,0,3253.1948 -3700,4570,8346,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,0,2,8.4256697,8.6101646,0,3,0,0,0,-9,0,-1011.9528,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,2,27,36,15,1,0,-9,0,17.84495,17.84495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.719999,52,-9,-9,3,3,4,0,0,8,4,1,1152,245964.13,0,0,1773.9193 -3701,4571,8347,8348,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.7801094,7.9250178,1,0,-9,8,0,9,-.86858445,0,0,0,55,1,3,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3907602,7.6792569,3.4646268,3,54.200001,57.490002,48,49,6,1,1,0,0,10,3,1,498.5,1098564,0,0,1646.3198 -3701,4571,8348,8347,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,3,7.2240782,6.8232474,0,1,0,-9,8,0,0,-66.69162,0,0,0,64,2,4,3,-9,-9,2019,2,1,12,2,16,20,15,1,0,4,0,5.9825063,5.9825063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,54.200001,57.490002,5,1,1,0,0,10,3,1,498.5,1098564,0,0,1646.3198 -3702,4572,8349,8350,-9,-9,1,1,0,71,1,0,0,0,2,-9,10,3,0,0,4,0,0,0,1,0,-9,6,0,1,-37.557156,0,0,0,70,3,3,3,3,1,2019,4,2,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.290001,49.68,55.439999,30.76,7,1,1,0,0,10,2,0,274.5,262030.66,0,0,2369.6846 -3702,4572,8350,8349,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.6382909,6.1070871,1,0,-9,6,0,-1,126.07655,0,0,0,71,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6611295,0,0,55.439999,30.76,59.290001,49.68,6,1,1,0,0,10,2,0,274.5,262030.66,0,0,2369.6846 -3703,4573,8351,8352,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.7990847,7.8191361,1,0,-9,6,0,7,179.07225,0,0,0,59,2,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5205665,7.9016008,0,0,49.91,50.150002,52.369999,56.93,5,1,1,0,0,6,3,1,89,1506340.8,0,0,2586.4121 -3703,4573,8352,8351,-9,-9,2,1,0,59,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,6,0,-7,51.302464,0,0,0,66,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.522264,0,0,0,52.369999,56.93,49.91,50.150002,7,1,1,1,0,6,3,1,89,1506340.8,0,0,2586.4121 -3704,4574,8353,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,3,0,5.3293123,5.4569731,3,0,0,0,-9,0,-1050.0002,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,6.336175,0,6.6941381,0,0,48.137859,0,1,1,0,0,5.48458,0,0,53,44,-9,-9,6,1,1,0,0,4,2,0,1066,392625,0,0,649.2923 -3705,4575,8354,8355,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,5,0,8.2232666,8.0793409,1,0,-9,29,0,10,26.681175,0,0,0,72,1,5,3,3,2,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,1,1.2959383,2.7070925,0,0,0,3.6857197,7,1,1,0,6.6708913,8.0720177,7.8946347,3,42.580002,60.380001,56.470001,59.400002,6,1,1,0,0,7,4,1,347.5,4012017,0,0,4723.939 -3705,4575,8355,8354,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,5,0,7.7283015,7.6743202,1,0,-9,33,0,-10,32.569775,0,0,0,82,1,5,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6260605,7.7179203,3.5351946,3,56.470001,59.400002,42.580002,60.380001,6,1,1,0,0,7,4,1,347.5,4012017,0,0,4723.939 -3706,4576,8356,8357,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,0,2,0,6.8119287,7.0822511,1,0,-9,51,-9,7,11.213412,-9,0,0,76,2,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8837616,7.0461159,0,0,49.529999,50.82,36.57,29.629999,6,3,4,0,0,8,3,1,332,1401864.3,0,0,2475.2766 -3706,4576,8357,8356,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,1,0,6.8582702,7.0735803,1,0,-9,1,-9,-7,-12.33334,-9,0,0,83,2,2,3,-9,-9,2019,4,1,19,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.2526536,0,0,36.57,29.629999,49.529999,50.82,5,3,4,0,1,8,3,1,332,1401864.3,0,0,2475.2766 -3706,4577,8358,-9,8357,8356,5,1,1,47,2,0,0,0,2,-9,2,1,0,0,4,8.7440643,8.8520985,0,3,0,-9,0,-9,0,-1058.5466,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,21.211329,21.211329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,5,3,4,0,0,8,5,1,2278,660471.19,0,0,1987.764 -3706,4578,8359,-9,-9,-9,3,1,1,31,2,0,0,0,2,-9,2,1,0,1,2,7.7134452,7.4212999,0,3,0,-9,0,-9,0,-967.88354,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,38,0,15,1,0,-9,0,7.2024293,7.2024293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,47.84,-9,-9,4,4,2,0,0,8,3,1,1698,167135.94,0,0,770.85876 -3706,4579,8360,-9,-9,-9,4,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,7.8671846,8.277523,0,3,0,-9,0,-9,0,-955.66211,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,36,0,15,1,0,-9,0,9.9352512,9.9352512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.240002,50.009998,-9,-9,5,4,2,0,0,8,4,1,190,44694.234,0,0,1311.8302 -3707,4580,8361,8362,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.9129901,8.0461454,6.9209127,1,0,-9,6,0,2,-25.867939,0,0,0,57,1,3,1,-9,-9,2019,1,1,6,0,40,30,15,1,0,1,0,8.4773245,8.4773245,0,0,0,0,0,0,0,2,0,0,0,0,6.9121995,5.8616467,3,60.290001,52.110001,54.369999,54.799999,6,1,1,0,0,4,4,1,135.5,496419.19,0,0,2122.6619 -3707,4580,8362,8361,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,3,7.0928464,7.8353486,6.8239193,1,0,-9,6,0,-2,-29.115707,0,0,0,59,3,3,1,3,2,2019,1,2,11,0,12,8,15,1,0,1,0,14.292089,14.292089,0,0,0,0,0,0,0,2,0,0,0,0,6.9219856,.59344763,3,54.369999,54.799999,60.290001,52.110001,5,1,1,0,0,4,4,1,135.5,496419.19,0,0,2122.6619 -3708,4581,8363,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,2,0,8.1256599,7.9139838,3,0,0,0,-9,0,-1013.2183,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7625618,8.015893,2.6711397,3,67,38.52,-9,-9,7,1,1,0,0,9,4,1,288,743329.06,0,0,3815.5933 -3709,4582,8364,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,4,7.3528085,8.0848465,7.5385346,3,0,0,0,-9,0,-1012.2515,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8535514,7.1760149,0,0,56.330002,51.02,-9,-9,4,1,1,0,0,11,4,1,177,1198250.3,0,0,2655.4277 -3710,4583,8365,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,4,3,0,1,1,0,6.2500014,5.8852301,3,0,0,0,-9,0,-1034.3344,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9190903,0,0,38,25,-9,-9,1,1,1,0,0,13,2,1,259,58172.141,0,0,1031.6643 -3710,4584,8366,-9,8365,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.2680988,7.9684553,0,3,0,0,0,-9,0,-823.02026,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,30,35,15,1,0,-9,1,10.479001,10.479001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,13,3,1,279,5260.5376,0,0,2132.1479 -3711,4585,8367,8368,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,6.7385492,6.9275765,5.6163349,1,0,-9,7,0,-2,52.617226,0,0,0,61,1,3,1,-9,-9,2019,1,1,11,0,13,14,15,1,0,1,0,7.839612,7.839612,0,0,0,0,0,0,0,0,0,0,0,5.5429182,5.7279654,0,0,55.799999,31.18,54.369999,54.799999,6,1,1,0,0,12,4,1,365,634486.5,0,0,2811.147 -3711,4585,8368,8367,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,0,3,0,8.4596605,8.2226563,1,0,-9,7,0,2,59.876804,0,0,0,59,2,3,1,2,2,2019,1,2,9,0,0,2,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2867818,8.3255043,0,0,54.369999,54.799999,55.799999,31.18,6,1,1,0,0,12,4,1,365,634486.5,0,0,2811.147 -3712,4586,8369,-9,8370,8371,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1079.0797,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.790001,64.220001,-9,-9,6,3,4,0,0,6,3,1,568.75,46987.125,0,0,2658.8423 -3712,4586,8370,8371,-9,-9,2,1,0,54,1,0,2,0,2,-9,2,1,0,1,3,8.3166676,8.2104549,0,2,0,-9,6,0,-2,11.877004,0,0,0,56,2,2,3,2,2,2019,2,1,9,1,36,30,15,1,0,3,0,10.576698,10.576698,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.628057,2,45.75,53.150002,50.169998,27.290001,5,3,4,0,0,6,3,1,568.75,46987.125,0,0,2658.8423 -3712,4586,8371,8370,-9,-9,1,1,1,56,1,0,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,6,0,2,43.675354,0,0,0,54,2,3,1,-9,3,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.169998,27.290001,45.75,53.150002,5,3,4,0,0,6,3,1,568.75,46987.125,0,0,2658.8423 -3712,4586,8372,-9,8370,8371,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1076.0266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,3,4,0,0,6,3,1,568.75,46987.125,0,0,2658.8423 -3713,4587,8373,-9,-9,-9,1,1,1,67,3,1,2,0,2,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-1041.0076,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,1,0,0,27.47875,17.534773,0,0,0,1,1,0,0,0,0,0,32.5,36.130001,-9,-9,3,3,4,0,0,8,1,0,315,169741.05,0,0,476.54495 -3713,4588,8374,-9,8375,8377,4,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.60309,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,2,0,740.5,63642.734,0,0,2219.8757 -3713,4588,8375,8377,-9,8373,3,1,0,30,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,3,0,-1,37.182159,0,0,1,31,2,4,1,-9,2,2019,3,5,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.4657421,3,34.68,56.990002,43.790001,58.330002,5,3,4,0,0,8,2,0,740.5,63642.734,0,0,2219.8757 -3713,4588,8376,-9,8375,8377,6,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.9204,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,2,0,740.5,63642.734,0,0,2219.8757 -3713,4588,8377,8375,-9,-9,5,1,1,31,1,1,2,0,2,-9,2,1,0,0,4,7.7182903,7.9659233,0,2,0,-9,3,0,1,46.887619,0,0,0,30,2,3,3,-9,-9,2019,2,3,12,2,39,32,15,1,0,3,0,7.6981268,7.6981268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.790001,58.330002,34.68,56.990002,5,3,4,0,1,8,2,0,740.5,63642.734,0,0,2219.8757 -3714,4589,8378,8379,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,2,8.8126831,8.5664587,0,1,0,-9,10,0,0,73.179993,0,0,0,67,3,2,3,3,3,2019,2,2,12,1,60,65,15,1,0,4,0,10.228476,10.228476,0,0,0,0,0,0,0,27.5,1,1,0,4.6554546,0,30.551235,2,41.459999,55.580002,38.189999,19.09,4,1,1,0,0,11,4,1,905,186377.83,0,0,3392.522 -3714,4589,8379,8378,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,1,2,0,2.082381,2.3796377,1,0,-9,10,0,0,41.978622,0,0,0,67,2,2,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,27.120649,0,0,14.015817,0,0,1,1,0,2.9408915,2.2198319,0,0,38.189999,19.09,41.459999,55.580002,5,1,1,0,0,11,4,1,905,186377.83,0,0,3392.522 -3715,4590,8380,8381,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.0050468,8.2482977,0,1,0,-9,1,-9,0,1.9542145,-9,0,0,30,1,4,1,-9,-9,2019,1,1,10,1,35,0,15,1,0,1,0,10.477514,10.477514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,47.049999,56.66,5,4,1,0,0,4,4,1,564,10257.088,0,0,2041.0354 -3715,4590,8381,8380,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.3823185,8.4217329,0,1,0,1,1,-9,0,-63.003075,0,0,1,30,2,4,1,-9,-9,2019,1,2,8,0,35,41,15,1,0,1,0,10.675981,10.675981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.049999,56.66,50,57,6,1,1,0,0,4,4,1,564,10257.088,0,0,2041.0354 -3716,4591,8382,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-985.19739,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,-9,-9,6,1,1,0,0,10,1,0,748,267405,0,0,0 -3717,4592,8383,-9,8384,8385,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1069.011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,0,461.66666,-110476.13,0,0,2561.208 -3717,4592,8384,8385,-9,-9,2,1,0,29,1,0,1,0,2,-9,1,1,0,0,3,6.2929826,6.7910361,0,2,0,-9,1,-9,1,17.78257,-9,1,1,28,2,4,1,-9,-9,2019,1,1,12,4,10,0,15,1,1,1,0,4.645246,4.645246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.639999,52.959999,49,58,5,2,3,0,0,8,4,0,461.66666,-110476.13,0,0,2561.208 -3717,4592,8385,8384,-9,-9,1,1,1,28,1,0,1,0,2,-9,2,1,0,0,4,8.9875774,8.7132607,0,2,0,-9,1,-9,-1,8.959733,-9,1,0,29,2,3,1,3,2,2019,1,2,10,1,35,0,15,1,0,1,0,20.756695,20.756695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,40.639999,52.959999,5,2,3,0,0,8,4,0,461.66666,-110476.13,0,0,2561.208 -3718,4593,8386,8387,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,0,2,0,6.2090197,6.435236,1,0,-9,9,0,-1,57.293255,0,0,0,86,1,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.9148197,0,0,64.629997,17.57,54,45,7,1,1,0,0,4,2,1,708,351568.06,0,0,1716.2324 -3718,4593,8387,8386,-9,-9,1,1,1,86,1,0,0,0,1,-9,4,3,0,0,3,0,7.115273,7.5011816,1,0,-9,9,0,1,-36.827389,0,0,0,85,2,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5453906,0,1,54,45,64.629997,17.57,6,4,1,0,0,4,2,1,708,351568.06,0,0,1716.2324 -3719,4594,8388,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,0,3,8.7511339,8.9863977,0,3,0,0,0,-9,0,-992.75421,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,40,15,1,0,-9,0,12.080956,12.080956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.330002,55.93,-9,-9,5,1,1,0,0,9,5,0,249,298408.47,0,0,508.5116 -3720,4595,8389,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-952.44946,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,27.25,43.369999,-9,-9,1,1,1,0,1,7,1,0,705,-33402.734,0,0,6.7377787 -3721,4596,8390,8391,-9,-9,2,1,0,54,1,0,0,0,2,-9,1,1,0,0,5,7.5457344,7.5507693,0,1,0,-9,7,0,0,-84.903526,0,0,0,54,2,4,1,2,2,2019,1,1,12,0,30,36,15,1,0,1,0,7.7890091,7.7890091,0,0,0,0,0,0,0,0,0,0,0,.5606792,0,0,0,48.66,54.860001,57.16,56.150002,6,1,1,0,0,7,5,1,915.5,984781.38,0,0,2298.4119 -3721,4596,8391,8390,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.4233246,8.8552656,0,1,0,-9,7,0,0,70.065193,0,0,0,54,2,5,1,3,2,2019,1,2,6,0,45,39,15,1,0,1,0,13.820035,13.820035,0,0,0,0,0,0,0,0,0,0,0,.92971629,0,0,0,57.16,56.150002,48.66,54.860001,6,1,1,0,0,7,5,1,915.5,984781.38,0,0,2298.4119 -3721,4597,8392,-9,8390,8391,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.8720188,7.6281133,0,3,0,0,0,-9,0,-1025.2472,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,44,0,15,1,1,-9,1,6.5500402,6.5500402,0,0,0,0,0,0,0,0,0,0,0,.81156272,0,0,0,30.83,62.98,-9,-9,5,1,1,0,0,7,3,1,1646,-81682.367,0,0,1603.7339 -3722,4598,8393,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,8.3643446,8.292922,3,0,0,0,-9,0,-1098.2155,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3122807,0,0,0,41.52,43.169998,-9,-9,6,1,1,0,0,4,4,1,566,910646.81,0,0,2853.1147 -3723,4599,8394,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,2,0,7.3188539,7.3914332,3,0,0,0,-9,0,-1067.8219,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,26.292883,0,0,0,1,1,0,0,7.318398,0,0,38.799999,20.530001,-9,-9,5,1,1,0,0,12,3,0,431,348141.72,0,0,3493.5349 -3723,4600,8395,-9,8394,-9,2,1,1,62,2,0,0,0,3,-9,2,1,0,0,3,6.7605667,7.6656642,7.2644305,3,0,0,0,-9,0,-1077.1962,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,12,20,15,1,0,-9,1,10.223731,10.223731,0,0,0,0,0,0,0,27.5,1,1,0,0,7.202662,29.074415,3,49.040001,55.860001,-9,-9,2,1,1,0,0,12,3,0,417,422945.97,0,0,1824.5881 -3724,4601,8396,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.9337854,7.5576754,0,3,0,0,0,-9,0,-1101.2352,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,45,37,15,1,0,-9,0,7.8422775,7.8422775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.310001,50.07,-9,-9,5,1,1,0,0,11,3,1,939,-179624.77,0,0,1317.7585 -3725,4602,8397,-9,-9,-9,1,1,0,21,3,0,1,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-945.74738,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.281898,0,46.080002,57.200001,-9,-9,6,1,1,0,0,11,1,0,430,-77777.984,0,0,1656.1141 -3725,4602,8398,-9,8397,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-916.0849,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,1,0,430,-77777.984,0,0,1656.1141 -3726,4603,8399,8402,-9,-9,1,1,0,44,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-12,0,0,0,1,56,3,4,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.990002,53.75,54,54,4,1,1,0,0,11,1,1,1133,-52678.734,0,0,966.24805 -3726,4603,8400,-9,8399,8402,6,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.50977,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,1,1,1133,-52678.734,0,0,966.24805 -3726,4603,8401,-9,8399,8402,5,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-886.34882,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,11,1,1,1133,-52678.734,0,0,966.24805 -3726,4603,8402,8399,-9,-9,2,1,1,56,1,0,2,0,3,-9,4,3,0,0,4,0,0,0,2,0,-9,4,0,12,0,0,0,0,44,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,41.990002,53.75,6,1,1,0,0,11,1,1,1133,-52678.734,0,0,966.24805 -3726,4604,8403,-9,8399,8402,3,1,0,23,2,0,2,0,2,-9,2,1,0,0,2,7.3928256,7.177258,0,3,0,0,0,-9,0,-889.75665,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,22,22,15,1,0,-9,1,6.6408534,6.6408534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.709999,41.169998,-9,-9,4,1,1,0,0,11,2,1,413,219658.53,0,0,1298.0665 -3726,4605,8404,-9,8399,8402,4,1,0,19,2,0,2,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-899.80286,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2990975,0,0,0,46,58,-9,-9,5,1,1,0,0,11,1,1,1405,-173284.7,0,0,733.32025 -3727,4606,8405,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,0,2,8.2245779,8.4113111,0,3,0,0,0,-9,0,-1010.4871,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,45,45,15,1,0,-9,0,10.686241,10.686241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.790001,26.809999,-9,-9,3,1,1,0,0,5,4,1,202,115471.07,0,0,1450.7092 -3728,4607,8406,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,0,5,8.6222506,8.7859144,0,4,0,0,0,-9,0,-1024.1351,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,18,0,15,1,0,-9,0,37.936241,37.936241,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,8,4,1,1060.6666,0,0,0,2929.5725 -3728,4607,8407,-9,8406,-9,5,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-979.50745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,8,4,1,1060.6666,0,0,0,2929.5725 -3728,4607,8408,-9,8406,-9,4,1,0,17,2,0,2,1,2,0,7,2,0,0,3,6.474988,6.7107534,0,4,0,0,0,-9,0,-920.19965,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,16,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.639999,56.25,-9,-9,5,4,2,0,0,8,4,1,1060.6666,0,0,0,2929.5725 -3728,4608,8409,-9,8406,-9,3,1,0,21,2,0,2,0,2,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1063.4229,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,24,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.639999,46.59,-9,-9,7,4,2,0,0,8,1,1,702,147341.19,0,0,0 -3729,4609,8410,-9,8412,8411,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.3218,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,5,0,810,242511.88,0,0,3817.6553 -3729,4609,8411,8412,-9,-9,2,1,1,38,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,-1,-70.218857,0,0,0,39,2,5,1,2,-9,2019,3,1,9,0,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,8,5,0,810,242511.88,0,0,3817.6553 -3729,4609,8412,8411,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,0,5,9.2874165,9.1675549,0,2,0,-9,9,0,1,150.59557,0,0,1,38,2,4,3,-9,-9,2019,2,2,8,0,39,41,15,1,0,3,0,31.193661,31.193661,0,0,0,0,0,0,0,0,0,0,0,4.7458682,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,8,5,0,810,242511.88,0,0,3817.6553 -3729,4609,8413,-9,8412,8411,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1282.0706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,0,810,242511.88,0,0,3817.6553 -3730,4610,8414,8415,-9,-9,2,1,1,88,1,0,0,0,3,-9,4,3,0,0,3,0,7.508677,7.2683692,1,0,-9,66,0,3,60.886883,0,0,0,85,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1515512,7.4874482,0,0,55.330002,42.18,59.139999,52.5,6,1,1,0,0,5,2,1,810.5,523789.94,0,0,1298.0652 -3730,4610,8415,8414,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,66,0,-3,81.817093,0,0,0,88,3,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6185384,0,0,0,59.139999,52.5,55.330002,42.18,5,1,1,0,0,5,2,1,810.5,523789.94,0,0,1298.0652 -3731,4611,8416,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,0,2,8.1604376,8.2091169,0,3,0,0,0,-9,0,-903.53235,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,32,32,15,1,0,-9,0,12.397132,12.397132,0,0,0,0,0,0,0,0,0,0,0,4.011971,0,0,0,55.200001,49.400002,-9,-9,6,1,1,0,0,10,4,1,515,179645.66,0,0,1842.7783 -3732,4612,8417,8418,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,29,0,0,0,0,0,0,68,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.15292,1,49,47,51,48,5,1,1,0,0,5,1,0,295,102410.88,0,0,3061.5994 -3732,4612,8418,8417,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,29,0,0,0,0,0,0,68,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,4.7391005,.21933335,0,0,0,92.067337,0,1,1,0,0,0,0,0,51,48,49,47,5,1,1,0,0,5,1,0,295,102410.88,0,0,3061.5994 -3733,4613,8419,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,1,1,0,0,4,4.0087976,5.9623446,6.1724415,3,0,0,0,-9,0,-1118.1532,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,30,15,1,0,-9,0,.1221567,.1221567,0,0,0,0,0,0,0,0,1,1,0,6.4099822,5.925827,0,0,55.189999,54.259998,-9,-9,6,3,4,0,0,8,2,1,1549,135951.81,0,0,687.27789 -3734,4614,8420,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,0,3,8.7540016,8.5691891,0,1,0,-9,6,0,-5,-102.87422,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,11,1,38,53,15,1,0,-9,0,18.557812,18.557812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,41.23,51.32,5,1,1,0,0,7,5,1,420,10258.153,0,0,2638.616 -3734,4615,8421,-9,-9,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,0,3,8.2140808,8.3943892,0,1,0,-9,6,0,5,148.59657,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,23,11,38,44,15,1,1,-9,0,9.2690773,9.2690773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,60.290001,52.110001,5,1,1,0,0,7,5,1,319,69225.047,0,0,1857.3427 -3735,4616,8422,-9,-9,-9,2,1,1,22,2,0,0,0,1,1,2,1,0,0,2,8.5067949,8.5968847,0,3,0,0,0,-9,0,-1047.3877,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,2,0,80,0,15,1,0,-9,1,6.9889584,6.9889584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.610001,51.040001,-9,-9,6,4,2,0,0,8,5,1,306,0,0,0,3027.2793 -3736,4617,8423,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,0,4,0,7.5568337,7.4796643,3,0,0,0,-9,0,-967.89703,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.2244811,0,0,0,1,1,0,4.1927161,7.5953174,0,0,55.439999,42.25,-9,-9,6,1,1,0,0,12,3,1,220,389464.53,0,0,2361.8328 -3737,4618,8424,8425,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,6.5895009,6.7920113,1,0,-9,8,0,1,130.32118,0,0,0,64,3,5,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3131559,7.2740369,0,0,52,48,51.389999,59.18,5,1,1,0,0,2,2,1,272.5,638383.5,0,0,1866.3417 -3737,4618,8425,8424,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,5,0,5.8218803,6.2072825,1,0,-9,38,0,-1,-24.922079,0,0,0,65,2,3,3,-9,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9936233,5.690464,0,0,51.389999,59.18,52,48,6,1,1,0,0,2,2,1,272.5,638383.5,0,0,1866.3417 -3737,4619,8426,-9,8425,8424,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.1812506,8.2473717,0,3,0,0,0,-9,0,-1056.3627,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,37,38,15,1,0,-9,1,7.3724375,7.3724375,0,0,0,0,0,0,0,0,1,1,0,2.0741107,0,0,0,49,58,-9,-9,5,1,1,0,0,2,3,1,751,210236.16,0,0,1030.2266 -3738,4620,8427,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,7.3198328,7.3675637,3,0,-9,0,-9,0,-864.6076,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.2146425,0,0,42.32,40.619999,-9,-9,5,1,1,0,0,2,3,1,1200,516505.75,0,0,588.83649 -3739,4621,8428,8429,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,5.4329128,5.301312,1,0,-9,7,0,-4,34.963699,0,0,0,75,3,3,3,1,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4724188,0,0,50.25,51.369999,54.720001,46.41,5,1,1,0,0,4,2,1,1425.5,252053.22,0,0,2166.1919 -3739,4621,8429,8428,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,5.1487803,4.5539885,1,0,-9,7,0,4,44.21743,0,0,0,71,2,3,3,-9,-9,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9328799,4.7720737,0,0,54.720001,46.41,50.25,51.369999,6,1,1,0,0,4,2,1,1425.5,252053.22,0,0,2166.1919 -3740,4622,8430,-9,8432,8431,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.23181,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,5,1,1067,1676442.4,0,0,5576.9194 -3740,4622,8431,8432,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,9.1382189,8.7876358,0,2,0,-9,25,0,6,94.139893,0,0,0,45,2,4,1,-9,-9,2019,1,2,9,1,45,40,15,1,0,1,0,20.159702,20.159702,0,0,0,0,0,0,0,0,1,1,0,4.1836061,0,0,0,53,54,57.16,56.150002,6,1,1,0,0,2,5,1,1067,1676442.4,0,0,5576.9194 -3740,4622,8432,8431,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,8.813035,8.7196913,0,2,0,-9,25,0,-6,-136.12021,0,0,0,51,1,4,1,2,2,2019,1,1,4,0,45,30,15,1,0,1,0,13.141227,13.141227,0,0,0,0,0,0,0,0,1,1,0,5.0509162,0,0,0,57.16,56.150002,53,54,7,1,1,0,0,2,5,1,1067,1676442.4,0,0,5576.9194 -3741,4623,8433,-9,8434,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.8945,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,0,1907.5,-86947.094,0,0,2498.7153 -3741,4623,8434,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,2,1,0,0,4,8.6072979,8.6642342,5.4532642,4,0,0,0,-9,0,-865.06482,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,39,37,15,1,0,-9,0,13.054894,13.054894,0,0,0,0,0,0,0,0,1,1,0,4.8044538,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,7,4,0,1907.5,-86947.094,0,0,2498.7153 -3742,4624,8435,8437,-9,-9,1,1,1,59,1,0,2,0,2,-9,4,3,0,0,3,0,8.5676594,8.1593714,2,0,-9,6,0,3,113.42624,0,0,0,56,2,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2859344,8.4648438,0,0,51,49,49,48,5,1,1,0,0,4,3,1,1702,175385.84,0,0,3207.0891 -3742,4624,8436,-9,8437,8435,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.88287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,1,1702,175385.84,0,0,3207.0891 -3742,4624,8437,8435,-9,-9,2,1,0,56,1,0,2,0,2,-9,4,3,0,0,3,0,0,0,2,0,-9,6,0,-3,-117.49851,0,0,0,59,2,3,3,2,1,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,49,5,1,1,0,0,4,3,1,1702,175385.84,0,0,3207.0891 -3742,4625,8438,-9,8437,8435,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,4.1178656,4.7017879,0,3,0,0,0,-9,0,-1012.9289,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,1,4,3,1,161,-137219.33,0,0,-871.3606 -3743,4626,8439,8440,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,0,4,7.234334,8.8504648,8.122592,1,0,-9,19,0,2,10.143475,0,0,0,61,2,3,1,3,2,2019,1,2,13,1,18,20,15,1,0,1,0,9.7168865,9.7168865,0,0,0,0,0,0,0,0,1,1,0,7.7801843,8.4507437,0,0,45.880001,59.91,49,48,5,1,1,0,0,9,5,1,1577.5,2185644.3,0,0,6857.1982 -3743,4626,8440,8439,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,8.0953894,8.5581694,6.7080431,1,0,-9,7,0,-2,42.899548,0,0,0,63,1,4,1,-9,-9,2019,1,1,11,2,40,35,15,1,0,1,0,9.9592714,9.9592714,0,0,0,0,0,0,0,0,1,1,0,0,7.1457357,0,0,49,48,45.880001,59.91,5,1,1,0,0,9,5,1,1577.5,2185644.3,0,0,6857.1982 -3744,4627,8441,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,8,3,1,1,1,0,7.8954153,7.619606,3,0,0,0,-9,0,-949.96136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7269263,7.4848719,0,0,57.439999,22.4,-9,-9,5,1,1,0,0,7,3,0,288,48050.652,0,0,1253.4833 -3745,4628,8442,-9,8444,8445,6,1,1,31,2,0,0,0,2,-9,1,1,0,0,4,6.0316043,6.0499806,0,3,0,0,0,-9,0,-878.98425,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,1.2815275,1.2815275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,13,2,1,1312,-42694.898,0,0,1055.7798 -3745,4629,8443,-9,8444,8445,5,1,0,30,2,0,0,0,2,-9,2,1,0,0,5,7.6714201,7.588532,0,3,0,0,0,-9,0,-961.0202,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,40,15,1,0,-9,1,6.8587818,6.8587818,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.540001,62.09,-9,-9,5,1,1,0,0,13,3,1,422,-134731.19,0,0,1184.8252 -3745,4630,8444,8445,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,5,6.8878512,7.1458483,0,1,0,-9,6,0,-6,37.469795,0,0,0,65,3,4,3,3,3,2019,2,1,11,0,19,19,15,1,0,4,0,6.8245645,6.8245645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,46.740002,52.59,4,1,1,0,0,13,2,1,779.5,441504.53,0,0,-1369.7347 -3745,4630,8445,8444,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,6,-67.366348,0,0,0,59,3,5,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.740002,52.59,54.099998,59.110001,5,1,1,0,1,13,2,1,779.5,441504.53,0,0,-1369.7347 -3745,4631,8446,-9,8444,8445,3,1,1,28,2,0,0,0,2,-9,1,1,0,0,5,7.1887426,7.363966,0,3,0,0,0,-9,0,-1037.7672,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,3.5508111,3.5508111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,13,2,1,726,-15097.747,0,0,1430.6625 -3745,4632,8447,-9,8444,8445,4,1,1,19,2,0,0,1,2,0,7,2,0,0,5,0,7.0908399,6.7332311,3,0,0,0,-9,0,-991.64301,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9759831,0,0,0,48.77,60.16,-9,-9,2,1,1,0,1,13,2,1,592,13330.88,0,0,351.15701 -3746,4633,8448,-9,8449,8450,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.3606,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,4,1,722,-99557.477,0,0,3833.7947 -3746,4633,8449,8450,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.164526,8.5606985,0,2,0,-9,7,0,9,22.911144,0,0,0,36,2,2,1,2,2,2019,1,2,24,12,23,23,15,1,1,1,0,20.255718,20.255718,0,0,0,0,0,0,0,0,1,1,0,1.1754023,0,0,0,31.690001,62.360001,41.27,42.389999,6,1,1,0,0,6,4,1,722,-99557.477,0,0,3833.7947 -3746,4633,8450,8449,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,0,2,7.9921641,8.3088083,7.0931859,2,0,-9,7,0,0,-27.232622,0,0,0,45,2,4,1,-9,-9,2019,1,1,12,0,70,65,15,1,0,1,0,5.4463091,5.4463091,0,0,0,0,0,0,0,0,1,1,0,0,7.4312863,0,0,41.27,42.389999,31.690001,62.360001,5,1,1,0,0,6,4,1,722,-99557.477,0,0,3833.7947 -3747,4634,8451,-9,8452,8453,4,1,1,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.06543,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,2,1,1005.8,363560.22,0,0,1511.6375 -3747,4634,8452,8453,-9,-9,2,1,0,40,1,1,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,0,63.378548,0,0,1,49,1,4,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.68,58.52,62.490002,55.09,6,2,3,0,0,8,2,1,1005.8,363560.22,0,0,1511.6375 -3747,4634,8453,8452,-9,-9,1,1,1,49,1,1,4,0,1,-9,2,1,0,0,4,8.0063276,8.0154543,0,2,0,-9,6,0,9,-6.7250628,0,0,0,40,1,4,3,2,2,2019,2,2,6,0,30,30,15,1,0,3,0,11.034819,11.034819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,45.68,58.52,5,2,3,0,0,8,2,1,1005.8,363560.22,0,0,1511.6375 -3747,4634,8454,-9,8452,8453,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.9767,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,2,1,1005.8,363560.22,0,0,1511.6375 -3747,4634,8455,-9,8452,8453,5,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.6101,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,1,1005.8,363560.22,0,0,1511.6375 -3748,4635,8456,-9,8457,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1107.8485,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,4,1,808,704952,0,0,2419.1169 -3748,4635,8457,-9,-9,-9,1,1,0,44,2,0,2,0,1,-9,2,1,0,0,3,8.969799,8.9728394,0,4,0,-9,0,-9,0,-1036.7545,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,42,0,15,1,0,-9,0,17.00808,17.00808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.43,56.740002,-9,-9,6,1,1,0,0,8,4,1,808,704952,0,0,2419.1169 -3749,4636,8458,-9,8459,-9,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1110.905,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,0,1033.5,265979.16,0,0,1687.4822 -3749,4636,8459,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,2,1,0,0,4,7.2737365,6.9806962,0,4,0,0,0,-9,0,-1065.5055,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,20,0,15,1,1,-9,0,8.9445915,8.9445915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,-9,-9,3,1,1,0,1,9,2,0,1033.5,265979.16,0,0,1687.4822 -3749,4637,8460,-9,8459,-9,2,1,0,22,2,0,1,0,2,-9,2,1,0,0,4,7.7633724,7.6646414,0,3,0,0,0,-9,0,-945.65594,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,43,0,15,1,0,-9,1,6.6620398,6.6620398,0,0,0,0,0,0,0,0,1,1,0,.47448394,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,0,820,8812.3477,0,0,1398.9869 -3749,4638,8461,-9,8459,-9,3,1,1,20,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1086.7654,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,16,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,9,1,0,899,163387.33,0,0,-161.78293 -3750,4639,8462,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,0,4,8.7406921,8.5141993,0,3,0,0,0,-9,0,-1071.6421,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,37,15,1,0,-9,0,15.141999,15.141999,0,0,0,0,0,0,0,0,0,0,0,3.0441434,0,0,0,48.189999,54.860001,-9,-9,6,1,1,0,0,4,5,1,3185,1317699.5,0,0,3180.5979 -3751,4640,8463,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,5,7.9178872,8.419817,0,3,0,0,0,-9,0,-1008.6432,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,47,45,15,1,0,-9,0,8.4465017,8.4465017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.419998,57.290001,-9,-9,5,1,1,0,0,11,4,1,786,229124.39,0,0,947.53223 -3752,4641,8464,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,2,1,0,0,2,8.2109957,8.3673735,7.0297804,3,0,0,0,-9,0,-895.63953,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,40,15,1,0,-9,0,9.7589884,9.7589884,0,0,0,0,0,0,0,0,0,0,0,0,7.2494597,0,0,53.209999,47.529999,-9,-9,6,1,1,0,0,8,4,0,1284,985262.31,0,0,79.239128 -3753,4642,8465,8466,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,7.579721,7.6180811,0,1,0,-9,41,0,-3,-54.393234,0,0,0,63,1,4,3,2,2,2019,2,2,12,0,32,32,15,1,0,4,0,7.5727277,7.5727277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,54.200001,57.490002,6,1,1,0,0,2,4,1,907,833809.13,0,0,2170.8125 -3753,4642,8466,8465,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,0,4,4.9475179,7.9958415,7.7906866,1,0,-9,41,0,3,17.436344,0,0,0,60,1,4,1,3,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1733165,7.6382051,0,0,54.200001,57.490002,45.82,54.57,6,1,1,0,0,2,4,1,907,833809.13,0,0,2170.8125 -3753,4643,8467,-9,8465,8466,3,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.3267059,8.4574604,0,3,0,0,0,-9,0,-1017.17,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,37,40,15,1,0,-9,1,16.911549,16.911549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.120001,62.099998,-9,-9,5,1,1,0,0,2,5,1,655,118618.65,0,0,1953.4965 -3754,4644,8468,8469,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,3,8.5418262,8.8123903,0,2,0,-9,25,0,0,-39.348827,0,0,0,51,2,4,1,2,2,2019,1,1,15,3,53,48,15,1,0,1,0,13.654104,13.654104,0,0,0,0,0,0,0,0,1,1,0,4.6863322,0,0,0,30.02,57.990002,57.16,56.150002,5,1,1,0,0,7,5,1,1151.5,931891.25,0,0,3457.1982 -3754,4644,8469,8468,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,9.0616236,9.000452,0,2,0,-9,24,0,0,-67.978455,0,0,0,51,1,3,1,2,2,2019,1,2,8,1,35,39,15,1,0,1,0,24.695309,24.695309,0,0,0,0,0,0,0,0,1,1,0,4.6422572,0,0,0,57.16,56.150002,30.02,57.990002,5,1,1,0,0,7,5,1,1151.5,931891.25,0,0,3457.1982 -3754,4645,8470,-9,8468,8469,3,1,0,20,2,0,1,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1001.6332,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4496288,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,7,1,1,3759,84512.813,0,0,-335.12863 -3755,4646,8471,8472,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,6.0834565,6.3951921,1,0,-9,7,0,-3,-126.05349,0,0,0,79,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,12.625065,0,0,0,0,0,1,1,0,0,6.289979,0,0,52,46,54,46,6,1,1,0,0,11,2,1,1662.5,607105.5,0,0,439.87769 -3755,4646,8472,8471,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.2083368,7.1218743,1,0,-9,57,0,3,43.9519,0,0,0,76,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,7.4064159,15.039588,1,54,46,52,46,6,1,1,0,0,11,2,1,1662.5,607105.5,0,0,439.87769 -3755,4647,8473,-9,-9,-9,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.9973903,7.9352479,0,3,0,0,0,-9,0,-1078.8031,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,35,40,15,1,0,-9,0,8.727129,8.727129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,4,1,391,-84356.563,0,0,2270.5085 -3756,4648,8474,8475,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,1,0,6.436079,6.3401074,1,0,-9,15,0,-14,-150.86577,0,0,0,70,2,1,3,-9,-9,2019,4,1,13,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3737741,0,2,41.889999,17.4,19.01,22.639999,5,1,1,0,0,5,2,1,245.5,202967.56,0,0,1595.2856 -3756,4648,8475,8474,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,15,0,14,-90.261078,0,0,0,56,3,1,3,3,2,2019,4,2,26,11,0,0,15,4,1,3,0,0,0,1,0,29.438181,16.223642,0,30.427742,0,0,1,1,0,.2551429,0,0,0,19.01,22.639999,41.889999,17.4,2,1,1,0,0,5,2,1,245.5,202967.56,0,0,1595.2856 -3757,4649,8476,8477,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,6.7948494,6.4651332,0,1,0,-9,6,0,-1,-40.154667,0,0,0,72,2,4,3,3,3,2019,4,1,10,0,14,8,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4292297,0,0,0,55.959999,49.93,54.200001,57.490002,6,1,1,0,0,7,2,1,726.5,382854.88,0,0,3235.3779 -3757,4649,8477,8476,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.090044,6.0777783,1,0,-9,6,0,1,9.3466825,0,0,0,71,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1743646,6.1592927,0,0,54.200001,57.490002,55.959999,49.93,7,1,1,0,0,7,2,1,726.5,382854.88,0,0,3235.3779 -3758,4650,8478,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,0,3,9.601037,9.8906631,7.869029,3,0,0,0,-9,0,-1027.5812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,3,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.8963518,8.2183809,21.426966,3,53,47,-9,-9,6,1,1,0,0,4,5,1,752,6103744.5,0,0,9792.5684 -3759,4651,8479,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1128.0297,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,5,1,1,124,-25844.949,0,0,856.76819 -3760,4652,8480,8481,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.6163545,7.3622828,1,0,-9,42,0,3,-55.806908,0,0,0,62,3,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.4926786,7.5823927,3,56.02,36.380001,57.16,56.150002,6,1,1,0,0,5,3,1,648,878403.63,0,0,2979.656 -3760,4652,8481,8480,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,4,7.462605,8.0632811,0,1,0,-9,42,0,-3,-101.62145,0,0,0,65,2,3,3,3,-9,2019,2,1,7,0,29,29,15,1,0,4,0,8.8657093,8.8657093,0,0,0,0,0,0,0,2,1,1,0,5.3962679,0,0,3,57.16,56.150002,56.02,36.380001,6,1,1,0,0,5,3,1,648,878403.63,0,0,2979.656 -3760,4653,8482,-9,8481,8480,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,5,7.5344963,7.3156142,0,3,0,0,0,-9,0,-1054.6812,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,24,15,1,0,-9,1,7.4330382,7.4330382,0,0,0,0,0,0,0,0,1,1,0,4.1918025,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,5,3,1,118,-4350.5806,0,0,474.9003 -3761,4654,8483,8484,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,3,8.8612585,8.4763174,0,1,0,-9,31,0,-1,-42.582211,0,0,0,52,1,4,1,2,2,2019,1,2,9,0,89,47,15,1,0,1,0,7.0860848,7.0860848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,51.720001,51.900002,5,1,1,0,0,5,5,1,588.5,1127543,0,0,4514.0098 -3761,4654,8484,8483,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,9.0073051,8.8152065,0,1,0,-9,10,0,1,136.71712,0,0,0,51,1,3,1,-9,-9,2019,1,1,11,0,67,55,15,1,0,1,0,10.54437,10.54437,0,0,0,0,0,0,0,0,0,0,0,2.1126761,0,0,0,51.720001,51.900002,55.360001,51.57,6,1,1,0,0,5,5,1,588.5,1127543,0,0,4514.0098 -3761,4655,8485,-9,8484,8483,3,1,0,21,2,0,0,0,1,1,3,3,0,0,4,4.7120543,5.0849981,0,3,0,0,0,-9,0,-1083.2312,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,16,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.889999,59.549999,-9,-9,5,1,1,1,0,5,2,1,974,-150324.98,0,0,56.800514 -3762,4656,8486,8487,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,2,7.4201384,8.2286263,7.1680369,1,0,-9,2,0,-3,132.26469,0,0,0,56,3,4,1,2,2,2019,1,2,15,5,30,20,15,1,1,1,0,6.85671,6.85671,0,0,0,0,0,0,0,0,1,1,0,0,7.0234151,0,0,35.299999,51.509998,54,53,6,1,1,0,0,9,5,1,993.5,444631.5,0,0,2873.7905 -3762,4656,8487,8486,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,4,8.3960037,8.7414532,6.8682256,1,0,-9,2,0,3,-45.382904,0,0,0,53,3,2,1,-9,-9,2019,1,1,9,1,40,45,15,1,0,1,0,10.341343,10.341343,0,0,0,0,0,0,0,0,1,1,0,3.7826254,7.0937991,0,0,54,53,35.299999,51.509998,6,1,1,0,0,9,5,1,993.5,444631.5,0,0,2873.7905 -3762,4657,8488,-9,8486,-9,3,1,0,19,2,0,0,0,2,-9,5,1,0,0,3,6.4415383,6.2480345,0,3,0,0,0,-9,0,-1054.4438,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,13,21,15,1,0,-9,1,5.0370488,5.0370488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,-9,-9,2,1,1,0,0,9,2,1,281,-12872.574,0,0,1144.4379 -3763,4658,8489,8490,-9,-9,2,1,0,24,1,0,1,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,5,0,-1,-61.252171,0,1,1,25,3,4,1,-9,-9,2019,3,1,29,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.190001,49.860001,27.32,60.189999,4,1,1,0,1,5,3,0,668.33331,67799.602,0,0,2192.3643 -3763,4658,8490,8489,-9,-9,1,1,1,25,1,0,1,0,3,-9,2,1,0,0,4,8.2655706,8.1257324,0,2,0,-9,5,0,1,15.770989,0,1,0,24,2,1,3,-9,-9,2019,2,2,15,3,45,44,15,1,0,3,0,9.9480743,9.9480743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.32,60.189999,22.190001,49.860001,3,1,1,0,0,5,3,0,668.33331,67799.602,0,0,2192.3643 -3763,4658,8491,-9,8489,8490,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.58197,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,3,0,668.33331,67799.602,0,0,2192.3643 -3764,4659,8492,8495,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,3,7.5832663,7.6727662,0,2,0,-9,9,0,6,124.189,0,0,0,45,1,2,3,2,3,2019,2,2,11,0,31,30,15,1,0,3,0,7.4963017,7.4963017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.330002,32.990002,49.060001,4,1,1,0,0,12,2,1,408.5,491666.78,0,0,1578.7834 -3764,4659,8493,-9,8495,8492,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.0934,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,1,408.5,491666.78,0,0,1578.7834 -3764,4659,8494,-9,8495,8492,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.8461,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,1,408.5,491666.78,0,0,1578.7834 -3764,4659,8495,8492,-9,-9,2,1,0,45,1,0,2,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,9,0,-6,-40.236668,0,0,0,51,2,3,1,2,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.990002,49.060001,47.66,52.330002,4,1,1,0,0,12,2,1,408.5,491666.78,0,0,1578.7834 -3765,4660,8496,-9,8498,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1054.0052,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,8,2,0,407,-56628.855,0,0,2561.856 -3765,4660,8497,-9,8498,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1099.183,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,2,0,407,-56628.855,0,0,2561.856 -3765,4660,8498,-9,-9,-9,1,1,0,39,2,0,2,0,2,1,2,1,0,1,4,7.4906626,7.6014099,0,4,0,0,0,-9,0,-969.16626,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,4,18,0,15,1,1,-9,0,12.410351,12.410351,0,0,0,0,0,0,0,108,1,1,0,0,0,112.43816,3,32.290001,57.220001,-9,-9,6,1,1,0,0,8,2,0,407,-56628.855,0,0,2561.856 -3766,4661,8499,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,5,8.9788532,9.092392,7.4424748,3,0,0,0,-9,0,-903.42157,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,55,50,15,1,0,-9,0,20.81496,20.81496,0,0,0,0,0,0,0,0,0,0,0,0,7.2132087,0,0,55.09,55.869999,-9,-9,5,1,1,0,0,13,5,1,3354,319128.22,0,0,2520.0576 -3767,4662,8500,-9,-9,-9,1,1,1,18,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1047.1348,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.1776942,0,0,0,36.099998,65.800003,-9,-9,6,1,1,0,0,6,1,0,98,6272.5156,0,0,-203.30782 -3768,4663,8501,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,6.691668,6.8234954,3,0,0,0,-9,0,-889.34058,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8696885,6.8220973,0,0,48.529999,58.91,-9,-9,5,1,1,0,0,2,2,0,2736,386243.75,0,0,540.06897 -3769,4664,8502,-9,-9,-9,1,1,0,79,3,0,0,0,1,-9,4,3,0,0,3,0,6.541256,6.6367059,3,0,0,0,-9,0,-896.12341,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2838302,6.6587105,0,0,46.16,54.360001,-9,-9,6,1,1,0,0,7,2,0,2588,140992.55,0,0,824.48431 -3770,4665,8503,8504,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.5380392,8.675478,0,1,0,-9,25,0,-10,88.238022,0,0,0,62,2,3,1,2,2,2019,1,1,13,1,70,50,15,1,0,1,0,7.1679153,7.1679153,0,0,0,0,0,0,0,0,1,1,0,7.369626,0,0,0,54.369999,54.799999,52.509998,54.259998,6,1,1,0,0,11,4,1,1146,701833.5,0,0,3051.0977 -3770,4665,8504,8503,8505,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.4831624,7.5894885,0,1,0,-9,25,0,10,-19.957239,0,0,0,52,2,3,1,2,1,2019,1,2,12,0,55,50,15,1,0,1,0,4.2205596,4.2205596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.509998,54.259998,54.369999,54.799999,6,1,1,0,0,11,4,1,1146,701833.5,0,0,3051.0977 -3770,4666,8505,-9,-9,-9,3,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,5.3762398,5.1597896,3,0,0,0,-9,0,-979.258,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2582998,0,0,53,44,-9,-9,5,1,1,0,0,11,2,1,218,281487.38,0,0,2387.0317 -3771,4667,8506,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,6,3,0,1,3,0,7.6438131,7.8147416,4,0,-9,0,-9,0,-1079.1343,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.5134215,0,34.269325,3,27.85,57.580002,-9,-9,3,1,1,0,0,6,2,1,877,196218.95,0,0,1930.2188 -3771,4668,8507,-9,8506,-9,2,1,1,18,2,0,2,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-811.12408,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,-9,-9,5,1,1,1,0,6,2,1,424,-162113.34,0,0,0 -3772,4669,8508,8509,-9,-9,2,1,1,71,1,0,0,0,1,-9,1,1,0,0,2,0,6.5132899,6.7086954,1,0,-9,49,0,-1,-34.267441,0,0,0,72,2,3,3,2,2,2019,2,1,10,0,60,5,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6775045,6.7742453,0,0,58.32,36.990002,61.709999,25.59,6,1,1,0,0,2,2,1,553.5,858714.06,0,0,2522.1423 -3772,4669,8509,8508,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,1,-36.793549,0,0,0,71,1,2,1,2,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7311232,0,0,0,61.709999,25.59,58.32,36.990002,5,1,1,0,0,2,2,1,553.5,858714.06,0,0,2522.1423 -3773,4670,8510,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,2,0,7.1563945,6.7782221,3,0,0,0,-9,0,-936.45203,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,4.4739757,0,0,0,0,18.172121,0,1,1,0,0,6.9032998,0,0,62.02,28.48,-9,-9,6,1,1,0,0,12,2,1,2195,128827.96,0,0,2183.9341 -3774,4671,8511,8512,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.3838511,8.3701563,0,1,0,-9,5,0,-1,7.6685781,0,0,0,47,2,3,1,2,2,2019,1,2,11,0,42,52,15,1,0,1,0,9.745965,9.745965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,56.299999,46.549999,58.299999,6,1,1,0,0,4,5,1,1340,170014.16,0,0,3538.1094 -3774,4671,8512,8511,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,8.226841,8.4790592,0,1,0,-9,5,0,1,34.013252,0,0,0,46,2,4,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,12.796158,12.796158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.549999,58.299999,51.73,56.299999,6,1,1,0,0,4,5,1,1340,170014.16,0,0,3538.1094 -3774,4672,8513,-9,8512,8511,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,5,8.4428339,8.4739647,0,3,0,0,0,-9,0,-1070.4639,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,37,15,1,0,-9,1,14.524506,14.524506,0,0,0,0,0,0,0,0,0,0,0,.54900062,0,0,0,44.77,51.040001,-9,-9,6,1,1,0,0,4,5,1,1075,52110.074,0,0,1857.9501 -3775,4673,8514,-9,8517,8515,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.8895,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,2,0,468.25,90712.453,0,0,1793.7456 -3775,4673,8515,8517,-9,-9,1,1,1,30,1,0,2,0,2,-9,2,1,0,0,3,7.7066355,7.5910783,0,2,0,-9,6,0,1,-72.977692,-9,0,0,29,3,3,3,2,2,2019,2,2,11,0,55,0,15,1,0,3,0,4.1327472,4.1327472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.099998,42.369999,41.279999,34.950001,4,1,1,0,0,12,2,0,468.25,90712.453,0,0,1793.7456 -3775,4673,8516,-9,8517,8515,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.21735,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,2,0,468.25,90712.453,0,0,1793.7456 -3775,4673,8517,8515,-9,-9,2,1,0,29,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-1,56.881611,0,1,1,30,2,3,1,2,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.279999,34.950001,43.099998,42.369999,6,1,1,0,0,12,2,0,468.25,90712.453,0,0,1793.7456 -3776,4674,8518,8520,-9,-9,2,1,1,25,1,0,1,0,2,-9,2,1,0,0,3,8.3677769,8.4373302,0,2,0,-9,5,0,-2,-61.401165,0,1,0,27,2,2,1,-9,-9,2019,1,1,9,0,39,39,15,1,0,1,0,13.422376,13.422376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,40.130001,33.189999,5,1,1,0,0,2,4,0,802.66669,-29768.115,0,0,2128.9216 -3776,4674,8519,-9,8520,8518,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.66803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,0,802.66669,-29768.115,0,0,2128.9216 -3776,4674,8520,8518,-9,-9,1,1,0,27,1,0,1,0,2,-9,1,1,0,0,2,7.6533046,7.569272,0,2,0,-9,5,0,2,-38.193695,0,1,1,25,2,3,1,2,3,2019,1,2,13,1,15,16,15,1,0,1,0,18.55356,18.55356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.130001,33.189999,49.630001,54.220001,5,1,1,0,0,2,4,0,802.66669,-29768.115,0,0,2128.9216 -3777,4675,8521,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,1,1,0,0,3,0,8.2261763,8.5997038,3,0,0,0,-9,0,-941.6933,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,9,0,4,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3232546,0,0,0,34.360001,57.34,-9,-9,5,1,1,0,0,13,5,1,350,700940.75,0,0,2095.3291 -3778,4676,8522,8523,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,7,0,-10,-41.535114,0,0,0,78,3,2,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,6.6033812,0,0,0,0,0,1,1,0,4.6273813,0,0,0,32.580002,31.35,50.02,26.959999,4,1,1,0,0,4,2,1,652,-45961.664,0,0,1227.0513 -3778,4676,8523,8522,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,2,0,5.0937343,4.3865347,1,0,-9,7,0,10,55.166744,0,0,0,68,3,1,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0808611,4.5490966,0,0,50.02,26.959999,32.580002,31.35,3,1,1,0,0,4,2,1,652,-45961.664,0,0,1227.0513 -3779,4677,8524,-9,-9,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,7.9707046,7.7571006,0,3,0,0,0,-9,0,-964.55017,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,42,0,15,1,0,-9,0,8.089035,8.089035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,-9,-9,5,1,1,0,0,10,4,0,281,103149.41,0,0,931.56287 -3779,4678,8525,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.7351837,8.611268,0,3,0,0,0,-9,0,-831.92474,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,37,45,15,1,0,-9,0,14.778119,14.778119,0,0,0,0,0,0,0,0,0,0,0,2.9245231,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,10,5,0,902,84814.57,0,0,2348.4988 -3780,4679,8526,8527,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,0,3,7.3896165,7.1664114,0,2,0,-9,1,-9,0,-90.942085,-9,0,0,39,2,4,3,3,3,2019,2,2,19,7,16,0,15,1,1,3,0,9.2824125,9.2824125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.689999,58.700001,51.240002,58.84,4,1,1,0,0,11,2,1,762,-45754.25,0,0,1352.3206 -3780,4679,8527,8526,-9,-9,2,1,0,39,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,0,-25.60218,-9,0,1,39,2,3,1,-9,3,2019,3,1,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,37.689999,58.700001,6,1,1,0,0,11,2,1,762,-45754.25,0,0,1352.3206 -3780,4679,8528,-9,8527,8526,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-977.6814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,11,2,1,762,-45754.25,0,0,1352.3206 -3780,4679,8529,-9,8527,8526,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-987.22589,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,2,1,762,-45754.25,0,0,1352.3206 -3781,4680,8530,-9,8534,8532,4,1,1,17,2,0,3,1,2,0,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-942.56451,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.759998,48.200001,-9,-9,6,2,3,0,0,8,2,1,922.59998,762681.06,0,0,2746.4546 -3781,4680,8531,-9,8534,8532,5,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.7464,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,1,922.59998,762681.06,0,0,2746.4546 -3781,4680,8532,8534,-9,-9,1,1,1,51,1,0,3,0,1,-9,2,1,0,0,3,7.9223704,7.8949585,0,2,0,-9,23,0,2,-31.451666,0,0,0,49,3,5,3,3,1,2019,2,2,7,0,32,35,15,1,0,3,0,8.3528252,8.3528252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.419998,42.939999,47.389999,53.93,4,2,3,0,0,8,2,1,922.59998,762681.06,0,0,2746.4546 -3781,4680,8533,-9,8534,8532,6,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.10309,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,1,922.59998,762681.06,0,0,2746.4546 -3781,4680,8534,8532,-9,-9,2,1,0,49,1,0,3,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,23,0,-2,-66.049011,0,0,0,51,1,3,1,3,1,2019,3,1,10,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.389999,53.93,62.419998,42.939999,6,2,3,0,0,8,2,1,922.59998,762681.06,0,0,2746.4546 -3781,4681,8535,-9,8534,8532,3,1,0,19,2,0,3,1,2,0,7,2,0,0,4,6.8095889,6.7794003,0,3,0,0,0,-9,0,-1059.1257,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.68,51.810001,-9,-9,3,2,3,0,0,8,2,1,58,52723.031,0,0,1083.9012 -3782,4682,8536,8537,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,4,8.6397982,8.6600657,0,2,0,-9,2,0,5,-34.4734,0,0,0,47,1,4,1,3,3,2019,1,3,27,10,60,60,15,1,1,1,0,9.0870304,9.0870304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.419998,64.809998,53,55,6,1,1,0,0,4,3,1,472.5,403824.66,0,0,3436.4856 -3782,4682,8537,8536,-9,-9,3,1,1,47,1,0,1,0,1,-9,1,1,0,0,4,0,5.0670733,4.8136687,2,0,-9,2,0,-5,20.094955,-9,0,0,52,1,4,1,-9,-9,2019,1,1,9,1,70,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.326158,0,0,53,55,32.419998,64.809998,6,4,1,0,0,4,3,1,472.5,403824.66,0,0,3436.4856 -3783,4683,8538,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,1,1,0,0,4,7.5455499,7.5945697,0,4,0,0,0,-9,0,-1103.5334,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,2,3,0,0,8,2,0,614,193771.86,0,0,1798.8145 -3784,4684,8539,8540,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,0,5,8.0088711,8.4690628,0,2,0,-9,2,0,0,51.72554,0,1,0,26,2,4,1,-9,-9,2019,1,1,11,1,36,38,15,1,0,1,0,11.517111,11.517111,0,0,0,0,0,0,0,0,1,1,0,.88294822,0,0,0,59.43,58.049999,51.830002,57.200001,4,1,1,0,0,7,4,1,305.33334,34590.406,0,0,3335.9807 -3784,4684,8540,8539,-9,-9,1,1,0,26,1,1,1,0,2,-9,5,1,0,0,4,7.1437998,7.137918,0,2,0,-9,2,0,0,71.917267,0,1,1,26,2,5,1,2,2,2019,1,2,10,1,40,40,15,1,0,1,0,3.1828661,3.1828661,0,0,0,0,0,0,0,0,1,1,0,1.2699749,0,0,0,51.830002,57.200001,59.43,58.049999,6,1,1,0,0,7,4,1,305.33334,34590.406,0,0,3335.9807 -3784,4684,8541,-9,8540,8539,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1095.5662,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,1,305.33334,34590.406,0,0,3335.9807 -3785,4685,8542,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,4,3,0,0,3,0,8.4152174,7.8404078,3,0,0,0,-9,0,-1038.2147,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,80,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9936624,8.2270098,0,0,51.66,54.880001,-9,-9,6,1,1,0,0,5,4,1,1066,0,0,0,1797.6492 -3785,4686,8543,-9,-9,-9,2,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,7.4824352,7.8643866,0,3,0,0,0,-9,0,-990.33032,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,27,27,15,1,0,-9,0,9.2729788,9.2729788,0,0,0,0,0,0,0,0,0,0,0,3.7658856,0,0,0,47.220001,51.790001,-9,-9,6,1,1,0,0,5,3,1,707,6498.6719,0,0,1035.3556 -3786,4687,8544,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,1,2,0,7.6570024,7.7350903,3,0,-9,0,-9,0,-1031.3351,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0804501,7.771512,0,0,30.67,27.98,-9,-9,6,1,1,0,0,6,3,1,1261,137000.48,0,0,1522.0729 -3787,4688,8545,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,0,4,0,6.0011024,6.2447748,3,0,0,0,-9,0,-1012.5773,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8800664,0,0,60.689999,53.18,-9,-9,6,1,1,0,0,2,2,0,647,51898.641,0,0,1692.0957 -3788,4689,8546,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,0,3,0,5.4642587,5.6340437,3,0,0,0,-9,0,-1023.1448,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2830515,5.6277981,0,0,49.290001,54.59,-9,-9,4,1,1,0,0,8,2,1,309,201320.27,0,0,1654.0034 -3789,4690,8547,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,1,1,6.7531719,7.0382066,4.0758204,3,0,0,0,-9,0,-991.04333,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,16,16,15,1,0,-9,0,7.710134,7.710134,0,0,0,0,0,0,0,0,1,1,0,0,3.9050045,0,0,53.23,10.94,-9,-9,4,1,1,0,0,9,2,0,1536,711627.75,0,0,869.30927 -3790,4691,8548,8549,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,2,7.9637046,7.7443414,0,2,0,-9,24,0,-6,-56.460178,0,0,1,49,1,3,1,3,3,2019,1,1,6,0,24,24,15,1,0,1,0,14.360404,14.360404,0,0,0,0,0,0,0,7,1,1,0,7.102365,0,4.2554431,3,52.830002,49.110001,45.580002,47.970001,6,1,1,0,0,12,4,1,1440.6666,635163.63,0,0,3535.6616 -3790,4691,8549,8548,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,3,8.8352137,8.3523903,0,2,0,-9,24,0,6,-14.735539,0,0,0,43,2,2,1,-9,-9,2019,1,2,19,8,30,30,15,1,1,1,0,24.810312,24.810312,0,0,0,0,0,0,0,0,1,1,0,.97543645,0,0,0,45.580002,47.970001,52.830002,49.110001,4,1,1,0,0,12,4,1,1440.6666,635163.63,0,0,3535.6616 -3790,4691,8550,-9,8548,8549,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.4019,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,1440.6666,635163.63,0,0,3535.6616 -3791,4692,8551,8552,-9,-9,2,1,1,49,1,0,3,0,1,-9,2,1,0,0,4,9.6564684,9.5474739,0,2,0,-9,28,0,4,56.874981,0,0,0,45,1,5,1,1,1,2019,1,1,7,0,48,46,15,1,0,1,0,40.251137,40.251137,0,0,0,0,0,0,0,0,0,0,0,6.8778396,0,0,0,54.200001,57.490002,29.889999,67.5,6,1,1,0,0,6,5,1,586,1553423.6,0,0,10293.539 -3791,4692,8552,8551,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,0,5,9.5801754,9.6765509,0,2,0,-9,29,0,-4,-60.242886,0,0,0,49,1,4,1,1,1,2019,1,2,22,8,50,53,15,1,1,1,0,30.522509,30.522509,0,0,0,0,0,0,0,0,0,0,0,7.0545683,0,0,0,29.889999,67.5,54.200001,57.490002,2,1,1,0,0,6,5,1,586,1553423.6,0,0,10293.539 -3791,4692,8553,-9,8552,8551,5,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1054.5103,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,6,5,1,586,1553423.6,0,0,10293.539 -3791,4692,8554,-9,8552,8551,4,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,6.2501893,6.0231714,0,2,0,0,0,-9,0,-978.03619,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.809999,65.690002,-9,-9,6,1,1,0,0,6,5,1,586,1553423.6,0,0,10293.539 -3791,4693,8555,-9,8552,8551,3,1,0,18,2,0,3,1,2,0,7,2,0,0,2,5.3318005,5.5092244,0,3,0,0,0,-9,0,-883.55182,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.209999,44.099998,-9,-9,3,1,1,0,0,6,5,1,1335,0,0,0,118.38948 -3792,4694,8556,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-962.46698,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.1306577,0,0,0,0,78.96508,0,1,1,0,0,0,0,0,63.41,23.969999,-9,-9,5,1,1,0,0,4,1,1,955,-36227.191,0,0,258.59467 -3793,4695,8557,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,1,1,0,0,3,7.4873152,7.7893538,0,3,0,0,0,-9,0,-1071.1194,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,25,30,15,1,0,-9,0,9.9411707,9.9411707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,11,3,1,1483,-101923.45,0,0,563.4436 -3794,4696,8558,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,8.1079092,8.1918211,0,3,0,0,0,-9,0,-973.7962,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,37,0,15,1,0,-9,0,9.879426,9.879426,0,0,0,0,0,0,0,0,0,0,0,3.3721287,0,0,0,25.790001,57.16,-9,-9,3,1,1,0,0,2,4,0,239,-67949.43,0,0,1080.7485 -3795,4697,8559,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,4,8.5776243,8.6374969,0,3,0,0,0,-9,0,-936.59631,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,37,15,1,0,-9,0,13.020282,13.020282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,10,5,1,563,175106.91,0,0,1451.2128 -3796,4698,8560,-9,-9,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.6571031,7.3518782,0,3,0,0,0,-9,0,-974.70227,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,40,15,1,0,-9,0,5.6889672,5.6889672,0,0,0,0,0,0,0,0,1,1,0,3.9038017,0,0,0,48,59,-9,-9,5,4,6,0,0,12,3,0,408,58323.133,0,0,1803.0377 -3796,4699,8561,8562,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.3200727,6.8356004,1,0,-9,10,0,1,125.71724,0,0,0,75,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,6.4414277,109.5304,1,55.779999,49.919998,46.049999,35.009998,6,1,1,0,0,12,2,0,535,326269.72,0,0,3838.8591 -3796,4699,8562,8561,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,10,0,-1,-52.543591,0,0,0,76,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,26.152122,125.55188,4.509315,0,0,354.57162,0,1,1,0,0,0,0,0,46.049999,35.009998,55.779999,49.919998,7,1,1,0,0,12,2,0,535,326269.72,0,0,3838.8591 -3797,4700,8563,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,5.9885607,6.4390726,3,0,0,0,-9,0,-957.36041,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5556846,6.3167205,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,9,2,1,261,456543.22,0,0,1614.4547 -3798,4701,8564,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1037.9739,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.5,46.02,-9,-9,5,1,1,0,0,1,1,1,1779,218515.2,0,0,854.63989 -3799,4702,8565,8567,-9,-9,3,1,0,39,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,4,0,-3,67.831024,0,0,1,42,1,4,1,-9,-9,2019,3,1,10,1,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,57.16,56.150002,6,1,1,1,0,12,5,1,388.33334,279063.44,0,0,7996.0791 -3799,4702,8566,-9,8565,8567,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-857.21582,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,5,1,388.33334,279063.44,0,0,7996.0791 -3799,4702,8567,8565,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,9.4364824,9.4133425,0,2,0,-9,4,0,3,-109.45692,0,0,0,39,2,4,3,2,1,2019,2,3,7,0,40,42,15,1,0,3,0,54.135937,54.135937,0,0,0,0,0,0,0,0,1,1,0,3.6878674,0,0,0,57.16,56.150002,49,56,6,1,1,0,0,12,5,1,388.33334,279063.44,0,0,7996.0791 -3800,4703,8568,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,3,8.1170053,8.1991558,6.3075027,3,0,0,0,-9,0,-1054.3621,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,45,45,15,1,0,-9,0,8.7470531,8.7470531,0,0,0,0,0,0,0,0,1,1,0,7.1552501,0,0,0,43.59,59.639999,-9,-9,5,1,1,0,1,5,4,1,414,1458257.5,0,0,1184.9757 -3800,4704,8569,-9,8568,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.6250978,7.7461977,0,3,0,0,0,-9,0,-1002.6653,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,1,37,40,15,1,0,-9,1,5.9355006,5.9355006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.12,67.620003,-9,-9,3,1,1,0,0,5,3,1,117,-226888.53,0,0,1667.8947 -3800,4705,8570,-9,8568,-9,3,1,0,18,2,0,0,0,2,-9,7,2,0,0,4,6.262156,6.245923,0,3,0,0,0,-9,0,-1126.4817,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,5,2,1,2383,-64256.055,0,0,.84242296 -3801,4706,8571,8572,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-7,78.505859,0,0,0,88,2,4,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,5.4716735,0,0,0,0,0,1,1,0,4.0900598,0,0,0,47.200001,34.16,58.889999,51.279999,6,1,1,0,0,1,3,1,1700.5,684069.69,0,0,3430.7251 -3801,4706,8572,8571,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,0,4,0,8.0057259,8.0141153,1,0,-9,6,0,7,-62.674149,0,0,0,81,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.1168623,0,0,58.889999,51.279999,47.200001,34.16,6,1,1,0,0,1,3,1,1700.5,684069.69,0,0,3430.7251 -3802,4707,8573,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-970.60657,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.560001,49.130001,-9,-9,6,1,1,1,0,11,1,0,216,59345.938,0,0,0 -3803,4708,8574,8575,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.0450935,8.3452139,0,1,0,-9,4,0,1,0,0,0,0,48,2,4,1,2,2,2019,1,1,6,0,37,37,15,1,0,1,0,8.9140911,8.9140911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,49.860001,55.310001,6,1,1,0,0,11,4,1,259,62694.883,0,0,3628.8882 -3803,4708,8575,8574,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.2694082,8.302433,0,1,0,-9,4,0,-1,0,0,0,0,49,2,4,1,3,3,2019,1,2,7,0,38,39,15,1,0,1,0,9.3214607,9.3214607,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.860001,55.310001,59.529999,56.439999,7,1,1,0,0,11,4,1,259,62694.883,0,0,3628.8882 -3803,4708,8576,-9,8575,8574,4,1,0,17,2,0,0,0,2,1,2,3,0,0,4,6.9288797,6.824398,0,1,0,0,0,-9,0,-1044.7695,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,10,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,7,1,1,0,0,11,4,1,259,62694.883,0,0,3628.8882 -3803,4709,8577,-9,8575,8574,3,1,0,18,2,0,0,0,2,1,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-909.47009,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,-9,-9,6,1,1,0,0,11,1,1,393,0,0,0,0 -3804,4710,8578,8579,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,8.5164757,8.4965887,0,1,0,-9,2,0,-2,76.304726,0,1,1,29,2,3,1,2,3,2019,1,2,10,0,35,35,15,1,0,1,0,19.588617,19.588617,0,0,0,0,0,0,0,0,0,0,0,4.9522943,0,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,11,5,1,667,21908.971,0,0,1205.1311 -3804,4710,8579,8578,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,0,3,8.4353685,8.5766983,0,1,0,-9,2,0,2,-84.603409,0,1,0,27,2,4,1,-9,-9,2019,1,1,10,1,45,40,15,1,0,1,0,11.059086,11.059086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,57.16,56.150002,6,1,1,0,0,11,5,1,667,21908.971,0,0,1205.1311 -3805,4711,8580,8581,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,0,5,8.2213583,8.0172052,0,1,0,-9,7,0,-4,4.0434327,0,0,0,51,2,4,1,-9,-9,2019,1,2,7,0,40,40,15,1,0,1,0,9.9046421,9.9046421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,55.759998,52.639999,6,1,1,0,0,12,5,1,441.5,322308.22,0,0,4253.7964 -3805,4711,8581,8580,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,9.0615396,8.9532776,0,1,0,-9,7,0,4,-113.40491,0,0,0,47,1,5,1,-9,-9,2019,1,1,9,0,38,43,15,1,0,1,0,29.351152,29.351152,0,0,0,0,0,0,0,0,0,0,0,2.6952655,0,0,0,55.759998,52.639999,57.060001,57.759998,6,1,1,0,0,12,5,1,441.5,322308.22,0,0,4253.7964 -3806,4712,8582,8583,-9,-9,2,1,1,62,1,0,1,0,1,-9,4,3,0,0,4,0,8.211524,8.3130169,2,0,-9,26,0,2,-76.982201,0,0,0,60,2,2,3,1,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5416439,8.5737915,0,0,44.59,59.080002,39.52,43.189999,5,1,1,0,0,9,3,1,215.5,2013654.8,0,0,3262.1011 -3806,4712,8583,8582,-9,-9,1,1,0,60,1,0,1,0,2,-9,4,3,0,1,2,0,7.2101665,7.3430762,2,0,-9,26,0,-2,-17.291103,0,0,0,62,1,4,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5778635,7.2247467,0,0,39.52,43.189999,44.59,59.080002,6,1,1,0,0,9,3,1,215.5,2013654.8,0,0,3262.1011 -3806,4713,8584,-9,8583,8582,3,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-929.35022,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,-9,-9,6,1,1,0,0,9,1,1,102,-74717.813,0,0,0 -3807,4714,8585,8586,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,-6,-54.273434,0,0,0,85,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9327384,0,0,0,58.32,50.220001,58,50,6,1,1,0,0,1,2,1,737,364948.81,0,0,1833.9802 -3807,4714,8586,8585,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,4,0,6.9631553,7.2318211,1,0,-9,61,0,6,-28.329273,0,0,0,79,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88565767,7.1694589,0,0,58,50,58.32,50.220001,6,1,1,0,0,1,2,1,737,364948.81,0,0,1833.9802 -3808,4715,8587,8588,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.7915955,9.0875826,0,1,0,-9,4,0,-3,-17.55368,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,1,55,44,15,1,0,1,0,20.834185,20.834185,0,0,0,0,0,0,0,2,0,0,0,1.7689021,0,.46460626,3,52.240002,50.75,43.919998,53.939999,7,1,1,0,0,7,5,1,384.5,817728.75,0,0,3568.6462 -3808,4715,8588,8587,-9,-9,1,1,0,47,1,0,0,0,1,-9,1,1,0,0,4,5.8672638,5.7149224,0,1,0,-9,4,0,3,16.207661,0,0,0,44,2,2,1,-9,-9,2019,1,2,14,4,10,30,15,1,1,1,0,3.9264119,3.9264119,0,0,0,0,0,0,0,0,0,0,0,1.1050919,0,0,0,43.919998,53.939999,52.240002,50.75,6,1,1,0,0,7,5,1,384.5,817728.75,0,0,3568.6462 -3809,4716,8589,-9,-9,-9,1,1,0,55,2,0,1,0,1,-9,1,1,0,0,2,7.3370337,7.5168777,0,4,0,0,0,-9,0,-1036.703,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1001108,0,0,0,56,32.970001,-9,-9,4,3,4,0,0,7,3,1,235,746041.75,0,0,1324.2227 -3810,4717,8590,8591,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.9375896,8.7689905,0,1,0,-9,25,0,-6,56.505127,0,0,0,59,2,4,1,3,3,2019,1,2,10,1,43,39,15,1,0,1,0,18.88484,18.88484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,53,54,53,5,1,1,0,0,5,5,1,510.5,707844.88,0,0,4842.5894 -3810,4717,8591,8590,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.3062458,8.7829752,0,1,0,-9,5,0,6,-21.966413,0,0,0,53,2,4,1,3,3,2019,1,1,9,1,43,0,15,1,0,1,0,11.622624,11.622624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,51,53,5,1,1,0,0,5,5,1,510.5,707844.88,0,0,4842.5894 -3811,4718,8592,8593,-9,-9,1,1,0,57,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,36,0,0,0,0,0,0,57,1,4,3,2,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3471103,0,0,0,40.650002,57.360001,51.830002,57.200001,4,1,1,0,0,9,1,1,993.5,2740412.5,0,0,4007.5129 -3811,4718,8593,8592,-9,-9,2,1,1,57,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,36,0,0,0,0,0,0,57,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.45193,0,0,0,51.830002,57.200001,40.650002,57.360001,6,1,1,0,0,9,1,1,993.5,2740412.5,0,0,4007.5129 -3812,4719,8594,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,2,0,6.6950355,6.7237558,3,0,0,0,-9,0,-943.09705,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6201415,0,0,54.57,33.18,-9,-9,5,1,1,0,0,9,2,1,2002,562421.56,0,0,738.35712 -3813,4720,8595,8596,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,9.2057123,8.7362499,0,1,0,-9,16,0,-1,-1.0861434,0,0,0,54,2,4,1,-9,-9,2019,1,2,11,0,40,43,15,1,0,1,0,21.99095,21.99095,0,0,0,0,0,0,0,0,0,0,0,.87694627,0,0,0,47.150002,51.130001,43.43,54.299999,4,1,1,0,0,6,5,1,2308,1586227.8,0,0,5982.6924 -3813,4720,8596,8595,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.5344315,8.582592,0,1,0,-9,16,0,1,-71.469215,0,0,0,53,2,3,1,2,1,2019,1,1,12,0,72,37,15,1,0,1,0,8.6372528,8.6372528,0,0,0,0,0,0,0,0,0,0,0,5.136445,0,0,0,43.43,54.299999,47.150002,51.130001,4,1,1,0,1,6,5,1,2308,1586227.8,0,0,5982.6924 -3814,4721,8597,-9,8599,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-821.32562,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,8,3,0,312.66666,372767.78,0,0,1533.9486 -3814,4721,8598,-9,8599,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1007.1797,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,3,4,0,0,8,3,0,312.66666,372767.78,0,0,1533.9486 -3814,4721,8599,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,5,8.3683462,8.4318008,0,4,0,-9,0,1,0,-1075.972,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,40,49,15,1,0,-9,0,12.658062,12.658062,0,0,0,0,0,0,0,2,1,1,0,0,0,8.6116352,3,54.040001,60.470001,-9,-9,7,4,2,0,0,8,3,0,312.66666,372767.78,0,0,1533.9486 -3815,4722,8600,8601,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,5,9.0190687,8.8422461,0,1,0,-9,24,0,2,63.491852,0,0,0,56,1,4,1,2,3,2019,1,2,6,0,30,30,15,1,0,1,0,21.886505,21.886505,0,0,0,0,0,0,0,0,0,0,0,7.1148791,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,9,4,1,731.5,3414502.3,0,0,4324.8447 -3815,4722,8601,8600,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,24,0,-2,-29.087929,0,0,0,58,1,5,1,2,2,2019,1,1,6,0,14,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3790569,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,9,4,1,731.5,3414502.3,0,0,4324.8447 -3816,4723,8602,8603,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,1,2,0,6.0460157,6.5409012,1,0,-9,41,0,-4,-4.269908,0,0,0,67,2,3,3,3,3,2019,4,2,11,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6160121,6.3318682,0,0,53.139999,20.41,58.32,50.220001,5,1,1,0,0,1,2,0,273,977331.56,0,0,3119.7947 -3816,4723,8603,8602,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.8848805,7.1598215,1,0,-9,10,0,4,89.23214,0,0,0,63,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0867405,7.2873058,10.019967,1,58.32,50.220001,53.139999,20.41,6,1,1,0,0,1,2,0,273,977331.56,0,0,3119.7947 -3817,4724,8604,-9,8605,8606,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.0051,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,265,143035.03,0,0,4099.0156 -3817,4724,8605,8606,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,0,4,8.7903442,8.7794619,0,2,0,-9,9,0,1,12.299182,0,0,1,36,2,4,1,2,1,2019,1,2,7,0,40,37,15,1,0,1,0,18.792742,18.792742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,52.049999,55.950001,6,1,1,0,0,2,5,1,265,143035.03,0,0,4099.0156 -3817,4724,8606,8605,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.7127619,8.5642767,0,2,0,-9,9,0,-1,60.354195,0,0,0,37,1,4,1,-9,-9,2019,1,1,9,0,40,39,15,1,0,1,0,19.362005,19.362005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.049999,55.950001,58.299999,52.91,6,1,1,0,0,2,5,1,265,143035.03,0,0,4099.0156 -3818,4725,8607,-9,8610,8608,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.93152,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,2,1,641.25,133737.83,0,0,21.440353 -3818,4725,8608,8610,-9,-9,2,1,1,49,1,0,2,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,11,0,6,155.10254,0,0,0,43,1,3,1,-9,-9,2019,1,1,10,0,55,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,46.669998,55.57,5,1,1,0,0,5,2,1,641.25,133737.83,0,0,21.440353 -3818,4725,8609,-9,8610,8608,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1081.9166,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,26,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1495117,0,0,0,18.77,54.950001,-9,-9,3,1,1,0,0,5,2,1,641.25,133737.83,0,0,21.440353 -3818,4725,8610,8608,-9,-9,1,1,0,43,1,0,2,0,1,-9,1,1,0,0,3,5.0870523,4.6117358,0,2,0,-9,21,0,-6,45.008205,0,0,1,49,1,3,1,2,3,2019,1,2,12,0,0,18,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.23519354,0,0,0,46.669998,55.57,54.369999,54.799999,4,1,1,0,0,5,2,1,641.25,133737.83,0,0,21.440353 -3819,4726,8611,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1048.7931,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,1,0,0,8.4924831,0,0,0,0,1,1,0,0,0,0,0,26.25,20.77,-9,-9,7,1,1,0,1,7,1,0,492,0,0,0,3678.4434 -3819,4727,8612,-9,8611,-9,3,1,0,44,2,0,0,0,3,-9,6,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1012.6447,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,33,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,33.268814,3,30.83,21.24,-9,-9,1,1,1,0,1,7,1,0,686,46747.074,0,0,1495.7533 -3820,4728,8613,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1005.5955,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.9,55.389999,-9,-9,5,1,1,0,1,2,1,0,1257,-119650.2,0,0,1296.0632 -3821,4729,8614,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,4,0,4.2796407,4.2344322,3,0,0,0,-9,0,-1060.0354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1934085,4.5308695,0,0,46.169998,51.5,-9,-9,7,1,1,0,0,6,2,1,661,210426.45,0,0,1658.1747 -3822,4730,8615,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,0,2,0,7.4698644,7.3821349,3,0,0,0,-9,0,-980.86292,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5005767,7.6194024,0,0,43.07,33.119999,-9,-9,3,1,1,0,0,1,3,1,69,104325.95,0,0,1444.1799 -3823,4731,8616,8617,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.7089787,6.653194,1,0,-9,36,0,3,9.7665453,0,0,0,64,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0166509,6.6039124,0,0,62.099998,51.16,58.150002,52.91,7,1,1,0,0,7,2,1,440.5,663409.5,0,0,1959.7063 -3823,4731,8617,8616,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,36,0,-3,-91.273643,0,0,0,67,2,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0806022,0,0,0,58.150002,52.91,62.099998,51.16,6,1,1,0,0,7,2,1,440.5,663409.5,0,0,1959.7063 -3824,4732,8618,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,3,0,6.4146814,7.276475,3,0,0,0,-9,0,-1015.694,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9980092,6.8873992,10.986113,3,53.639999,46.82,-9,-9,6,1,1,0,0,7,2,1,245,165827.03,0,0,1429.3342 -3825,4733,8619,-9,8621,8620,3,1,1,16,2,0,0,0,2,-9,2,2,0,0,5,6.4269004,6.4687557,0,1,0,0,0,-9,0,-973.10162,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0394068,0,0,0,62.59,42.900002,-9,-9,6,1,1,0,0,13,5,1,832.66669,25435.818,0,0,3551.689 -3825,4733,8620,8621,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,0,4,8.2899084,8.3470764,0,1,0,-9,23,0,0,-14.120873,0,0,0,48,2,3,1,3,2,2019,1,2,20,8,43,45,15,1,1,1,0,9.2359219,9.2359219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.860001,64.550003,53.98,50.869999,3,1,1,0,0,13,5,1,832.66669,25435.818,0,0,3551.689 -3825,4733,8621,8620,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.9437695,7.9524102,0,1,0,-9,23,0,0,46.154099,-9,0,0,48,3,4,1,2,2,2019,1,1,8,0,30,0,15,1,0,1,0,12.356637,12.356637,0,0,0,0,0,0,0,0,1,1,0,6.2347021,0,0,0,53.98,50.869999,35.860001,64.550003,6,1,1,0,0,13,5,1,832.66669,25435.818,0,0,3551.689 -3826,4734,8622,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,7.7955608,7.629559,0,3,0,0,0,-9,0,-1088.8854,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,7.1733742,7.1733742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,13,3,1,1841,-174980.94,0,0,1891.8678 -3827,4735,8623,-9,8624,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1181.2932,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,0,2274,-24081.383,0,0,1598.5947 -3827,4735,8624,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,0,3,8.3067789,8.1389217,0,4,0,-9,0,0,0,-898.7207,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,35,35,15,1,0,-9,0,9.9061489,9.9061489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.080002,49.580002,-9,-9,4,1,1,0,1,10,3,0,2274,-24081.383,0,0,1598.5947 -3828,4736,8625,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-982.7533,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,2.4162989,0,2.2922757,0,0,10.062227,0,1,1,0,0,0,0,0,38.549999,16.5,-9,-9,1,1,1,0,0,5,1,0,2006,-88402.438,0,0,1478.1846 -3829,4737,8626,-9,-9,-9,1,1,0,45,2,0,0,0,1,-9,2,1,0,0,4,8.9373865,8.683424,0,3,0,0,0,-9,0,-975.64294,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,45,55,15,1,0,-9,0,18.600527,18.600527,0,0,0,0,0,0,0,0,0,0,0,4.8472691,0,0,0,43.419998,62.330002,-9,-9,6,1,1,0,0,7,5,1,233,448924.72,0,0,2812.6914 -3830,4738,8627,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,2,1,0,0,3,8.3413067,8.4740095,3.8270814,3,0,0,0,-9,0,-1016.6442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,45,41,15,1,0,-9,0,11.772746,11.772746,0,0,0,0,0,0,0,7,1,1,0,4.304039,4.4842243,.96874726,3,30.280001,56.509998,-9,-9,2,3,4,0,1,8,5,0,978,1121560.6,0,0,1958.9697 -3830,4739,8628,-9,8627,-9,2,1,0,41,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-1065.3751,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.690001,33.25,-9,-9,2,3,4,0,0,8,1,0,1114,-126807.51,0,0,3225.1462 -3831,4740,8629,8630,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,8.6036873,8.5144548,0,1,0,-9,6,0,-4,-44.045345,0,0,0,65,2,4,3,2,1,2019,2,1,8,0,49,54,15,1,0,4,0,14.821581,14.821581,0,0,0,0,0,0,0,0,0,0,0,.82212943,0,0,0,56.939999,49.529999,57.73,54.529999,5,1,1,0,0,7,4,1,610,2238353,0,0,2602.1567 -3831,4740,8630,8629,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,5.9248099,6.0544419,1,0,-9,6,0,4,39.643841,0,0,0,61,1,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.163651,5.8918843,0,0,57.73,54.529999,56.939999,49.529999,6,1,1,0,0,7,4,1,610,2238353,0,0,2602.1567 -3832,4741,8631,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1001.9773,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,3.0716901,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,9,1,1,816,376939.09,0,0,1089.3372 -3832,4742,8632,-9,-9,8631,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.3091536,8.0716267,0,3,0,0,0,-9,0,-879.2793,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,44,39,15,1,0,-9,1,10.49699,10.49699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,58.700001,-9,-9,4,1,1,0,0,9,4,1,155,0,0,0,2161.4187 -3833,4743,8633,-9,8634,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1025.5812,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,2,2,0,2005,-66652.234,0,0,2382.5112 -3833,4743,8634,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,1,1,0,0,3,6.058404,6.2333717,0,4,0,0,0,-9,0,-938.32959,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,16,18,15,1,1,-9,0,3.413882,3.413882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.830002,57.610001,-9,-9,3,1,1,0,1,2,2,0,2005,-66652.234,0,0,2382.5112 -3833,4743,8635,-9,8634,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,0,3,0,5.4887323,5.1251655,4,0,0,0,-9,0,-1010.3746,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,26,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5319085,0,0,0,36.439999,35.970001,-9,-9,5,1,1,0,0,2,2,0,2005,-66652.234,0,0,2382.5112 -3834,4744,8636,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,2,0,5.2571015,5.2321758,3,0,0,0,-9,0,-1179.7163,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,13.967133,0,0,0,0,1,0,1,0,5.2287765,0,0,58.799999,20.91,-9,-9,6,1,1,0,0,13,2,1,621,63202.371,0,0,1009.6018 -3835,4745,8637,8638,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,0,3,8.8202,8.9733744,0,1,0,-9,28,0,8,15.864951,0,0,0,49,2,3,1,2,2,2019,1,1,6,0,70,100,15,1,0,1,0,11.173524,11.173524,0,0,0,0,0,0,0,0,0,0,0,2.6549489,0,0,0,55.529999,51.549999,50.290001,32.59,6,1,1,0,0,6,5,1,541,171619.03,0,0,3605.2434 -3835,4745,8638,8637,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.9215517,7.9301214,0,1,0,-9,25,0,-8,38.996456,0,0,0,57,3,3,1,2,2,2019,1,2,11,2,42,43,15,1,0,1,0,9.4772682,9.4772682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.290001,32.59,55.529999,51.549999,6,1,1,0,0,6,5,1,541,171619.03,0,0,3605.2434 -3835,4746,8639,-9,8638,8637,3,1,0,29,2,0,0,0,2,-9,2,1,0,0,3,7.7405519,7.6902838,0,3,0,0,0,-9,0,-1176.2799,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,0,15,1,0,-9,1,6.6811042,6.6811042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.169998,57.25,-9,-9,6,1,1,0,0,6,3,1,362,2813.7834,0,0,1386.8666 -3836,4747,8640,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1095.6404,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9692004,0,0,0,42.200001,14.42,-9,-9,3,1,1,0,0,2,1,1,2982,-118455.08,0,0,-249.73671 -3837,4748,8641,8642,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.302464,7.3990722,0,1,0,-9,6,0,0,-74.999397,0,0,0,57,3,3,1,-9,-9,2019,1,2,11,0,40,0,15,1,0,1,0,4.4036355,4.4036355,0,0,0,0,0,0,0,0,1,1,0,2.9175479,0,0,0,48.450001,57.490002,55.360001,51.57,6,1,1,0,0,2,3,1,1318.5,184156.81,0,0,1264.874 -3837,4748,8642,8641,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,1,3,0,6.5274277,6.624877,1,0,-9,6,0,0,40.453465,0,0,0,57,2,3,1,3,2,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1797338,0,0,55.360001,51.57,48.450001,57.490002,5,1,1,0,0,2,3,1,1318.5,184156.81,0,0,1264.874 -3838,4749,8643,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,4,0,7.7412319,7.5893488,3,0,0,0,-9,0,-953.27539,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7282147,0,0,45.91,59.889999,-9,-9,7,1,1,0,0,11,3,1,652,753857.88,0,0,1430.8989 -3839,4750,8644,8645,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,9.0484257,8.5202169,0,1,0,-9,24,0,6,-67.255844,0,0,0,47,3,3,1,2,2,2019,1,1,11,0,50,42,15,1,0,1,0,13.715979,13.715979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.389999,32.68,61.049999,36.580002,4,1,1,0,0,10,5,1,1106.5,1065109.1,0,0,2801.1421 -3839,4750,8645,8644,-9,-9,1,1,0,47,1,0,0,0,3,-9,2,1,0,0,3,6.8723779,7.1492519,0,1,0,-9,24,0,-6,124.57244,0,0,0,53,2,2,1,3,3,2019,1,2,8,0,21,22,15,1,0,1,0,5.5461931,5.5461931,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.706223,3,61.049999,36.580002,44.389999,32.68,4,1,1,0,0,10,5,1,1106.5,1065109.1,0,0,2801.1421 -3840,4751,8646,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1004.1788,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.279999,45.259998,-9,-9,7,1,1,0,0,8,1,0,290,-29857.391,0,0,1815.6637 -3841,4752,8647,8648,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.2976971,8.5289068,0,1,0,-9,7,0,3,-17.993631,0,0,0,49,1,4,1,3,2,2019,1,1,9,0,30,30,15,1,0,1,0,14.540797,14.540797,0,0,0,0,0,0,0,0,0,0,0,3.7673986,0,0,0,60.290001,52.110001,45.91,59.889999,5,1,1,0,0,8,5,1,849,1614367.5,0,0,4274.1294 -3841,4752,8648,8647,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,9.0513353,9.4209633,0,1,0,-9,7,0,-3,32.075687,0,0,0,52,1,3,1,3,2,2019,1,2,16,5,45,44,15,1,1,1,0,19.305326,19.305326,0,0,0,0,0,0,0,0,0,0,0,5.8752003,0,0,0,45.91,59.889999,60.290001,52.110001,6,1,1,0,0,8,5,1,849,1614367.5,0,0,4274.1294 -3842,4753,8649,-9,8650,8651,4,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.5416,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,0,458,2017991.4,0,0,1793.5114 -3842,4753,8650,8651,-9,-9,1,1,0,49,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-4,132.10332,0,0,0,53,1,3,1,2,3,2019,3,2,24,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.720001,44.91,50.029999,52.619999,2,1,1,0,1,9,3,0,458,2017991.4,0,0,1793.5114 -3842,4753,8651,8650,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,3,8.0855093,8.0458479,0,2,0,-9,7,0,4,-4.1033731,0,0,0,49,2,3,3,2,2,2019,2,1,11,0,37,37,15,1,0,3,0,10.308794,10.308794,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.029999,52.619999,34.720001,44.91,5,1,1,0,0,9,3,0,458,2017991.4,0,0,1793.5114 -3842,4754,8652,-9,8650,8651,3,1,1,18,2,0,1,0,2,-9,2,1,0,0,3,6.3069425,6.6671968,0,3,0,0,0,-9,0,-882.06366,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,20,0,15,1,0,-9,1,5.5499506,5.5499506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.939999,53.18,-9,-9,6,1,1,0,0,9,2,0,1092,100843.2,0,0,562.68781 -3843,4755,8653,8655,-9,-9,2,1,1,59,1,0,4,0,3,-9,2,1,0,0,3,8.115778,8.304451,0,2,0,-9,17,0,14,-33.48732,0,0,0,45,3,3,3,-9,-9,2019,2,1,10,1,44,40,15,1,0,3,0,8.5642319,8.5642319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,49.470001,36.509998,5,2,3,0,0,5,2,1,536.40002,106912.5,0,0,2338.9534 -3843,4755,8654,-9,8655,8653,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-942.38263,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,5,2,1,536.40002,106912.5,0,0,2338.9534 -3843,4755,8655,8653,-9,-9,1,1,0,45,1,0,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,17,0,-14,38.57814,0,0,0,59,3,3,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.470001,36.509998,51,49,6,2,3,0,1,5,2,1,536.40002,106912.5,0,0,2338.9534 -3843,4755,8656,-9,8655,8653,5,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.255,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,5,2,1,536.40002,106912.5,0,0,2338.9534 -3843,4755,8657,-9,8655,8653,3,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.64276,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,5,2,1,536.40002,106912.5,0,0,2338.9534 -3844,4756,8658,-9,-9,-9,1,1,0,85,3,0,2,0,2,-9,4,3,0,0,2,0,7.1140962,7.4436541,4,0,0,0,-9,0,-966.49323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,3.344588,0,0,0,0,1,1,0,0,7.7505407,0,0,56.009998,33.880001,-9,-9,4,1,1,0,0,7,2,1,289,503821,0,0,1145.0964 -3844,4757,8659,-9,8661,8660,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.9525,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,5,1,302.5,220596.13,0,0,4785.3818 -3844,4757,8660,8661,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,1,1,8.8893166,8.4734221,0,2,0,-9,2,0,-3,74.390442,0,0,0,48,2,2,1,-9,-9,2019,1,3,13,4,38,37,15,1,1,1,0,19.18951,19.18951,0,0,0,0,0,0,0,2,1,1,0,0,0,10.748449,3,36.209999,26.85,39.470001,40.48,6,1,1,0,0,7,5,1,302.5,220596.13,0,0,4785.3818 -3844,4757,8661,8660,8658,-9,3,1,0,48,1,0,2,0,2,-9,2,1,0,0,2,8.3585691,8.1627159,0,2,0,-9,2,0,3,-132.39896,0,0,0,45,2,1,1,2,-9,2019,1,2,21,8,29,34,15,1,1,1,0,20.133425,20.133425,0,0,0,0,0,0,0,71.5,1,1,0,0,0,64.726685,1,39.470001,40.48,36.209999,26.85,3,1,1,0,0,7,5,1,302.5,220596.13,0,0,4785.3818 -3844,4757,8662,-9,8661,8660,6,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.1652,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,302.5,220596.13,0,0,4785.3818 -3844,4758,8663,-9,8661,8660,4,1,0,20,2,0,2,1,2,0,7,2,0,0,1,7.4268041,7.4752049,0,3,0,0,0,-9,0,-1100.074,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8072808,0,1.7663165,3,37.099998,34.810001,-9,-9,4,1,1,0,0,7,3,1,351,137136.81,0,0,1392.9918 -3845,4759,8664,8665,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,1,1,0,6.2172117,5.9670506,1,0,-9,38,0,2,89.562607,0,0,0,58,2,3,3,2,2,2019,4,2,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3086376,6.1082864,0,0,25.35,32.029999,43.119999,58.549999,3,1,1,0,0,9,2,1,421.5,739110.88,0,0,834.61267 -3845,4759,8665,8664,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,38,0,-2,-84.65799,0,0,0,60,2,1,3,2,2,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.25564,2,43.119999,58.549999,25.35,32.029999,5,1,1,0,0,9,2,1,421.5,739110.88,0,0,834.61267 -3846,4760,8666,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,5.8319354,5.9886165,3,0,0,0,-9,0,-890.52716,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9236693,6.033277,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,9,2,1,472,613278.25,0,0,-1.4910935 -3847,4761,8667,8668,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,8.015974,8.0915403,0,1,0,-9,9,0,-4,-101.25206,0,0,1,46,2,3,3,-9,-9,2019,2,1,13,2,52,0,15,1,0,3,0,6.2521801,6.2521801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,48.27,26.530001,4,1,1,0,0,4,3,0,431,583991.5,0,0,1268.3522 -3847,4761,8668,8667,-9,-9,1,1,1,46,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,9,0,4,-131.34602,0,0,0,42,2,4,1,3,3,2019,3,2,19,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.27,26.530001,51.830002,57.200001,1,1,1,1,1,4,3,0,431,583991.5,0,0,1268.3522 -3848,4762,8669,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,5,0,8.236208,8.1604424,3,0,0,0,-9,0,-1026.8883,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0847726,8.0755844,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,12,4,1,467,681280.81,0,0,2989.2708 -3849,4763,8670,8671,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,8.7694368,8.8651276,0,1,0,-9,4,0,16,7.2535453,0,0,0,31,1,3,1,-9,-9,2019,1,1,28,12,60,56,15,1,1,1,0,9.5478764,9.5478764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.78,60.880001,35.779999,63.130001,3,1,1,0,0,2,5,1,1423.5,859935.75,0,0,4888.1084 -3849,4763,8671,8670,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,3,8.8519621,8.8439207,0,1,0,-9,4,0,-16,-82.714134,0,0,1,47,2,3,1,2,3,2019,1,2,12,0,65,60,15,1,0,1,0,8.2263565,8.2263565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.779999,63.130001,14.78,60.880001,6,1,1,0,0,2,5,1,1423.5,859935.75,0,0,4888.1084 -3850,4764,8672,-9,8674,8675,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.65381,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,1343.75,16886.816,0,0,3957.1665 -3850,4764,8673,-9,8674,8675,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.44727,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,1,1343.75,16886.816,0,0,3957.1665 -3850,4764,8674,8675,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,4,8.6494207,8.6719894,0,2,0,-9,8,0,-2,-73.195442,0,0,1,36,2,4,1,2,2,2019,1,2,12,0,50,52,15,1,0,1,0,14.716743,14.716743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,50,57,6,1,1,0,0,11,4,1,1343.75,16886.816,0,0,3957.1665 -3850,4764,8675,8674,-9,-9,2,1,1,36,1,0,2,0,2,-9,1,1,0,0,4,7.9473343,7.7278762,0,2,0,-9,8,0,2,96.429199,-9,0,0,34,1,4,1,-9,-9,2019,1,1,10,1,55,0,15,1,0,1,0,5.8543081,5.8543081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,51.240002,58.84,5,1,1,0,0,11,4,1,1343.75,16886.816,0,0,3957.1665 -3851,4765,8676,-9,8678,8677,6,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1017.3024,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,2,1,0,1199,101450.52,0,0,146.84897 -3851,4765,8677,8678,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,3,0,6,0,0,0,0,45,3,3,1,-9,-9,2019,1,1,17,7,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.939999,67.080002,36.740002,2,1,1,0,0,2,1,0,1199,101450.52,0,0,146.84897 -3851,4765,8678,8677,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,0,3,0,0,0,2,0,-9,3,0,-6,0,0,0,0,51,2,3,1,-9,-9,2019,1,2,13,3,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7273831,0,0,0,67.080002,36.740002,62.27,42.939999,3,1,1,0,0,2,1,0,1199,101450.52,0,0,146.84897 -3851,4766,8679,-9,8678,8677,3,1,1,24,2,0,1,0,3,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-973.23877,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5352094,0,0,0,65.230003,38.889999,-9,-9,1,1,1,0,0,2,1,0,1420,0,0,0,681.05731 -3851,4767,8680,-9,8678,8677,4,1,1,23,3,0,1,0,3,-9,2,1,0,0,3,8.0456657,7.7429047,0,3,0,0,0,-9,0,-870.52661,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.84,55.009998,-9,-9,2,1,1,0,0,2,4,0,373,180521.48,0,0,1642.2627 -3851,4768,8681,-9,8678,8677,5,1,0,19,2,0,1,0,2,1,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1064.8632,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5863125,0,0,0,38.169998,59.790001,-9,-9,2,1,1,0,0,2,1,0,558,-168974.16,0,0,-86.751503 -3852,4769,8682,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1038.6697,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.944836,3,43.68,32.360001,-9,-9,4,1,1,0,0,4,1,0,537,4799.9517,0,0,1687.6891 -3853,4770,8683,8684,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,9.2239647,9.036252,0,1,0,-9,4,0,3,19.610884,0,0,0,32,2,3,1,-9,-9,2019,1,2,11,0,50,49,15,1,0,1,0,23.141218,23.141218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,39.5,56.189999,5,1,1,0,0,8,5,1,836.5,235734.14,0,0,5812.9668 -3853,4770,8684,8683,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,3,8.6968384,8.3432245,0,1,0,-9,4,0,-3,-22.521147,0,0,1,35,1,4,1,-9,-9,2019,1,1,21,9,38,48,15,1,1,1,0,14.934551,14.934551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,56.189999,54.200001,57.490002,3,1,1,0,0,8,5,1,836.5,235734.14,0,0,5812.9668 -3854,4771,8685,8686,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,2,9.6147413,9.7037163,0,1,0,-9,7,0,1,13.169271,0,0,0,56,1,5,1,3,2,2019,1,2,8,1,63,58,15,1,0,1,0,27.610939,27.610939,0,0,0,0,0,0,0,0,0,0,0,5.4102383,0,0,0,58.400002,35.740002,62.389999,56.709999,5,1,1,0,0,9,5,1,398,8538257,0,0,6496.8716 -3854,4771,8686,8685,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,5,8.1450367,8.001277,0,1,0,-9,7,0,-1,43.228527,0,0,0,57,1,2,1,1,1,2019,1,1,6,0,36,36,15,1,0,1,0,12.676962,12.676962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,58.400002,35.740002,6,1,1,0,0,9,5,1,398,8538257,0,0,6496.8716 -3854,4772,8687,-9,8686,8685,3,1,1,21,2,0,0,0,2,0,7,2,0,0,5,5.4489636,6.1957836,5.2132316,3,0,0,0,-9,0,-876.96747,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,5,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7058268,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,2,1,377,-76925.313,0,0,-392.78549 -3855,4773,8688,8689,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,8.2443409,8.1731634,1,0,-9,6,0,2,17.984392,0,0,0,74,3,3,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.17845303,7.7053595,0,1,44.060001,41.990002,51,46,5,1,1,0,0,9,3,1,689.5,1006026.6,0,0,3285.1812 -3855,4773,8689,8688,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,5.8995337,5.8057785,1,0,-9,6,0,-2,47.630825,0,0,0,76,2,3,3,-9,3,2019,4,1,25,12,0,0,15,4,1,4,0,0,0,1,0,13.558278,0,0,0,0,2,1,1,0,0,5.7155457,.38146093,1,51,46,44.060001,41.990002,3,1,1,0,0,9,3,1,689.5,1006026.6,0,0,3285.1812 -3856,4774,8690,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1009.1097,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,37,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6845148,0,0,0,54.200001,57.490002,-9,-9,7,1,1,1,0,7,1,1,1184,1105056.9,0,0,-70.304848 -3857,4775,8691,8693,-9,-9,2,1,0,34,1,0,1,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,13,0,1,100.57074,0,0,1,33,1,4,1,1,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.23,61.310001,41.169998,59.310001,6,2,3,1,0,8,5,1,398.33334,665702.25,0,0,6074.6997 -3857,4775,8692,-9,8691,8693,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.6053,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,1,398.33334,665702.25,0,0,6074.6997 -3857,4775,8693,8691,-9,-9,1,1,1,33,1,0,1,0,1,-9,2,1,0,0,4,9.5419617,9.7641783,0,2,0,-9,13,0,-1,114.27815,0,0,0,34,1,4,3,1,1,2019,2,2,12,0,50,50,15,1,0,3,0,29.869123,29.869123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,40.23,61.310001,6,2,3,0,0,8,5,1,398.33334,665702.25,0,0,6074.6997 -3858,4776,8694,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,2,0,4.2005844,4.0692115,3,0,0,0,-9,0,-934.21802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.2533545,0,0,41.630001,28.459999,-9,-9,3,3,4,0,0,8,2,1,548,-43273.824,0,0,461.7724 -3859,4777,8695,8696,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.283042,8.1255016,0,1,0,-9,7,0,-7,39.266022,0,0,0,51,3,3,1,-9,-9,2019,1,1,7,1,44,40,15,1,0,1,0,9.9729528,9.9729528,0,0,0,0,0,0,0,0,1,1,0,6.2319951,0,0,0,52.43,55.57,38.849998,53.990002,6,1,1,0,0,1,4,0,266.5,30783.637,0,0,2668.0957 -3859,4777,8696,8695,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,0,3,7.4608393,7.3606653,0,1,0,-9,17,0,7,19.902151,0,0,0,44,2,4,1,2,3,2019,1,2,11,2,20,25,15,1,0,1,0,9.2397919,9.2397919,0,0,0,0,0,0,0,0,1,1,0,1.4876232,0,0,0,38.849998,53.990002,52.43,55.57,2,1,1,0,0,1,4,0,266.5,30783.637,0,0,2668.0957 -3859,4778,8697,-9,8696,8695,3,1,0,18,2,0,0,0,2,-9,2,1,0,0,4,5.5024991,5.3870173,0,3,0,0,0,-9,0,-802.19006,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,12,0,15,1,0,-9,1,2.1305742,2.1305742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,59.110001,-9,-9,6,1,1,0,0,1,2,0,396,75103.953,0,0,850.75757 -3860,4779,8698,8699,-9,-9,2,1,0,65,1,0,0,0,1,-9,2,1,0,0,4,8.799922,8.959446,0,1,0,-9,36,0,0,-.88018233,0,0,0,74,1,3,3,3,1,2019,2,1,12,1,52,45,15,1,0,4,0,12.167345,12.167345,0,0,0,0,0,0,0,0,1,1,0,1.0571166,0,0,0,45.32,53.5,53,47,5,4,5,0,0,10,4,1,625.5,1681494,0,0,3875.7148 -3860,4779,8699,8698,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,9,-43.101295,0,0,0,65,1,4,1,-9,-9,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9762428,0,0,0,53,47,45.32,53.5,6,4,5,0,0,10,4,1,625.5,1681494,0,0,3875.7148 -3861,4780,8700,8701,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,1,1,0,6.959218,7.096981,1,0,-9,66,0,2,-4.1419277,0,0,0,84,3,1,3,3,3,2019,4,2,23,11,0,0,15,4,1,4,0,0,0,1,12.325446,23.534252,0,0,0,70.158325,42,1,1,0,0,7.0424418,43.211895,1,29.27,22.129999,49.669998,10.31,3,1,1,0,0,11,2,0,1204.5,298464.97,0,0,2666.4224 -3861,4780,8701,8700,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,1,1,0,4.5506706,4.8495636,1,0,-9,66,0,-2,-.14094648,0,0,0,86,3,1,3,3,-9,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,1,.8870222,10.942752,0,0,0,61.579304,71.5,1,1,0,0,4.853292,76.860214,1,49.669998,10.31,29.27,22.129999,3,1,1,0,0,11,2,0,1204.5,298464.97,0,0,2666.4224 -3862,4781,8702,8704,-9,-9,4,1,1,37,1,1,5,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,8,0,0,0,0,29,1,3,2,-9,-9,2019,4,1,10,1,0,0,15,3,0,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.96475,3,51,57,60.740002,43.75,5,4,5,0,1,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3862,4781,8703,-9,8704,8702,6,1,1,4,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.027,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3862,4781,8704,8702,-9,-9,1,1,0,29,1,1,5,0,1,-9,7,2,0,1,3,0,0,0,2,0,-9,7,0,-8,0,1,1,1,37,1,4,3,2,1,2019,4,4,9,0,0,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.84962,3,60.740002,43.75,51,57,6,4,5,0,0,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3862,4781,8705,-9,8704,8702,3,1,0,8,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.61774,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3862,4781,8706,-9,8704,8702,5,1,1,5,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.8258,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3862,4781,8707,-9,8704,8702,7,1,0,0,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.27582,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,5,0,0,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3862,4781,8708,-9,8704,8702,2,1,0,9,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.0769,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,8,1,0,1035.1428,221371.3,0,0,4063.6243 -3863,4782,8709,-9,8711,8712,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.42871,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,569.5,78100.109,0,0,4959.6465 -3863,4782,8710,-9,8711,8712,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.91418,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,569.5,78100.109,0,0,4959.6465 -3863,4782,8711,8712,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,5,8.1995869,8.3279867,0,2,0,-9,10,0,0,3.5179281,0,0,1,39,1,4,1,2,2,2019,1,1,14,3,42,24,15,1,0,1,0,7.8025365,7.8025365,0,0,0,0,0,0,0,0,0,0,0,1.1431785,0,0,0,46.279999,62.599998,51.240002,58.84,6,1,1,0,0,9,5,1,569.5,78100.109,0,0,4959.6465 -3863,4782,8712,8711,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,9.5713873,9.10639,0,2,0,-9,10,0,0,-68.865555,0,0,0,39,1,5,1,2,2,2019,1,2,12,1,50,48,15,1,0,1,0,28.614349,28.614349,0,0,0,0,0,0,0,0,0,0,0,3.3977766,0,0,0,51.240002,58.84,46.279999,62.599998,6,1,1,0,0,9,5,1,569.5,78100.109,0,0,4959.6465 -3864,4783,8713,8714,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,1,0,5.4071107,5.3354568,1,0,-9,55,0,13,24.592308,0,0,0,71,2,3,1,2,2,2019,3,2,17,5,0,0,15,4,1,1,0,0,0,1,0,18.527813,0,.37590903,0,17.155626,0,1,1,0,0,5.524013,0,0,36.610001,17.549999,35.200001,48.709999,6,1,1,0,0,7,3,1,620.5,342675.59,0,0,3699.9849 -3864,4783,8714,8713,-9,-9,2,1,0,71,1,0,0,0,2,-9,2,1,0,1,3,8.040884,7.9152441,0,1,0,-9,9,0,-13,-9.1786118,0,0,0,84,3,1,3,3,3,2019,2,1,14,5,32,35,15,1,1,4,0,7.5855789,7.5855789,0,0,0,0,0,0,0,42,1,1,0,4.5774965,0,39.205296,1,35.200001,48.709999,36.610001,17.549999,3,1,1,0,0,7,3,1,620.5,342675.59,0,0,3699.9849 -3865,4784,8715,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,2,0,8.335247,8.269002,3,0,0,0,-9,0,-1049.6483,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.2373013,8.4821415,21.852083,3,54.220001,39.07,-9,-9,3,1,1,0,0,10,4,1,3094,145507.33,0,0,2963.157 -3866,4785,8716,8717,-9,-9,1,1,1,26,1,0,1,0,1,-9,2,1,0,0,4,8.528883,8.441741,0,2,0,-9,4,0,-2,-9.8785639,0,1,0,28,1,4,1,-9,-9,2019,1,2,18,6,35,35,15,1,1,1,0,15.591937,15.591937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.580002,60.950001,48,57,3,1,1,0,0,10,4,1,1518,31850.885,0,0,2149.3618 -3866,4785,8717,8716,-9,-9,2,1,0,28,1,0,1,0,1,-9,2,1,0,0,4,6.5514197,6.3588305,0,2,0,-9,4,0,2,47.488815,0,1,1,26,1,4,1,-9,-9,2019,1,1,11,2,12,15,15,1,0,1,0,6.2824368,6.2824368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,40.580002,60.950001,5,1,1,0,0,10,4,1,1518,31850.885,0,0,2149.3618 -3866,4785,8718,-9,8717,8716,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.6236,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,1518,31850.885,0,0,2149.3618 -3867,4786,8719,8720,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.1713657,7.8101702,0,2,0,-9,17,0,3,105.94548,0,0,0,40,2,3,1,3,3,2019,1,1,11,0,37,38,15,1,0,1,0,9.1500597,9.1500597,0,0,0,0,0,0,0,0,1,1,0,.6251564,0,0,0,47.32,52.700001,57.330002,53.459999,5,2,3,0,0,4,3,1,717.5,229556.39,0,0,3035.3447 -3867,4786,8720,8719,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,0,3,8.065918,7.9046974,0,2,0,-9,17,0,-3,71.454979,0,0,1,43,2,3,1,3,3,2019,1,2,10,0,37,37,15,1,0,1,0,8.7544327,8.7544327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,47.32,52.700001,5,2,3,0,0,4,3,1,717.5,229556.39,0,0,3035.3447 -3867,4787,8721,-9,8720,8719,3,1,1,18,2,0,2,0,2,-9,2,1,0,0,4,7.5690436,7.4485984,0,3,0,0,0,-9,0,-993.97241,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,42,0,15,1,0,-9,1,5.7098832,5.7098832,0,0,0,0,0,0,0,0,1,1,0,1.686995,0,0,0,48.279999,60.18,-9,-9,6,2,3,0,0,4,3,1,347,143844.2,0,0,1815.4247 -3868,4788,8722,8723,-9,-9,1,1,0,45,1,0,0,0,3,-9,6,3,0,0,5,0,0,0,1,0,-9,28,0,-8,0,0,0,0,53,3,4,3,-9,3,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.060001,57.759998,52,55,6,2,3,0,1,8,1,0,465.5,465769.63,0,0,2240.1389 -3868,4788,8723,8722,-9,-9,2,1,1,53,1,0,0,0,3,-9,8,3,1,1,4,0,0,0,1,0,-9,10,0,8,0,0,0,0,45,3,5,3,-9,-9,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,55,57.060001,57.759998,6,2,3,0,0,8,1,0,465.5,465769.63,0,0,2240.1389 -3868,4789,8724,-9,8722,8723,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,5,8.2824278,8.4628744,0,3,0,0,0,-9,0,-967.79932,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,41,54,15,1,0,-9,1,13.047525,13.047525,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.689999,39.150002,-9,-9,1,2,3,0,0,8,5,0,1104,182459.66,0,0,3097.4817 -3868,4790,8725,-9,8722,8723,4,1,0,19,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-967.56659,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.200001,48.990002,-9,-9,6,2,3,0,1,8,1,0,1159,11681.767,0,0,0 -3869,4791,8726,8727,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,2,-104.35422,0,0,0,77,2,3,3,3,-9,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3976011,0,0,0,52.41,34.150002,49.959999,44.380001,6,1,1,0,0,2,2,1,735,268113.91,0,0,1541.6184 -3869,4791,8727,8726,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.7799344,6.7073474,1,0,-9,51,0,-2,84.493546,0,0,0,79,3,3,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4410553,11.658102,3,49.959999,44.380001,52.41,34.150002,7,1,1,0,0,2,2,1,735,268113.91,0,0,1541.6184 -3870,4792,8728,-9,-9,-9,1,1,1,87,3,0,0,0,1,-9,4,3,0,0,3,0,6.5426846,6.5525947,3,0,0,0,-9,0,-1059.8446,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,1.6864711,0,0,0,0,0,0,1,1,0,6.6035089,6.4193006,0,0,57.32,38.32,-9,-9,6,1,1,0,0,4,2,1,587,232553.94,0,0,1194.2864 -3871,4793,8729,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,2,1,0,0,5,0,6.9258957,7.6654425,3,0,0,0,-9,0,-1051.2167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,50,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9027615,7.0886106,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,2,1,343,100586.91,0,0,2089.5835 -3872,4794,8730,-9,-9,-9,1,1,0,26,2,2,2,0,1,-9,2,1,0,0,4,7.4488645,7.3737807,0,4,0,0,0,-9,0,-1040.9666,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,10,3,31,20,15,1,0,-9,0,5.1250048,5.1250048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.490002,48.450001,-9,-9,6,3,4,0,0,8,2,0,809.66669,-129923.91,0,0,2290.9023 -3872,4794,8731,-9,8730,-9,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-988.97577,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,809.66669,-129923.91,0,0,2290.9023 -3872,4794,8732,-9,8730,-9,2,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-931.43134,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,809.66669,-129923.91,0,0,2290.9023 -3873,4795,8733,8735,-9,-9,1,1,1,52,1,0,1,0,1,-9,1,1,0,0,3,7.024559,7.566082,0,2,0,-9,7,0,-2,112.05277,0,0,0,54,2,1,1,2,2,2019,1,2,5,0,37,28,15,1,0,1,0,4.3540182,4.3540182,0,0,0,0,0,0,0,5.48,0,0,0,0,0,8.5753422,3,51.130001,50.73,41.200001,28.73,6,4,2,0,0,10,2,0,246,726264.44,0,0,791.19104 -3873,4795,8734,-9,8735,8733,3,1,1,17,2,0,1,0,2,1,3,3,0,0,4,0,0,0,2,0,0,0,-9,0,-1143.5527,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.32,64.830002,-9,-9,3,1,1,1,0,10,2,0,246,726264.44,0,0,791.19104 -3873,4795,8735,8733,-9,-9,2,1,0,54,1,0,1,0,2,-9,1,1,0,0,1,6.8820939,7.0544815,0,2,0,-9,7,0,2,-103.43037,0,0,0,52,1,3,1,-9,-9,2019,1,1,19,7,6,0,15,1,1,1,0,20.60182,20.60182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.200001,28.73,51.130001,50.73,6,4,5,0,0,10,2,0,246,726264.44,0,0,791.19104 -3874,4796,8736,8737,-9,-9,2,1,1,28,1,0,0,0,2,-9,11,3,0,0,3,7.1792598,7.4965281,0,1,0,-9,4,0,-5,-30.217291,0,1,0,33,1,2,1,-9,-9,2019,3,1,21,8,37,41,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.439999,50.849998,50.27,38.119999,4,1,1,0,0,10,4,0,665.5,55934.93,0,0,3126.061 -3874,4796,8737,8736,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,2,7.8488235,8.1766253,0,1,0,-9,4,0,5,-8.790513,0,0,1,28,2,3,3,2,2,2019,2,2,12,0,29,31,15,1,0,3,0,12.715141,12.715141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,38.119999,33.439999,50.849998,4,1,1,0,0,10,4,0,665.5,55934.93,0,0,3126.061 -3875,4797,8738,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,2,0,5.3225861,5.5835915,3,0,0,0,-9,0,-978.47693,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.208436,5.3460579,0,0,63.549999,29.17,-9,-9,5,1,1,0,0,9,2,0,2163,671858.81,0,0,640.81384 -3876,4798,8739,-9,-9,-9,1,1,1,44,3,0,0,0,1,-9,2,1,0,0,4,8.9790077,9.4685621,0,3,0,-9,0,1,0,-1020.6118,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,45,50,15,1,0,-9,0,25.029243,25.029243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.459999,47.779999,-9,-9,6,1,1,0,0,7,5,1,408,871230.19,0,0,2079.5828 -3877,4799,8740,8741,-9,-9,1,1,1,55,1,0,0,0,1,-9,1,1,0,0,4,0,9.1494427,9.2784204,1,0,-9,14,0,-13,-126.21262,0,0,0,68,1,4,3,3,3,2019,2,2,11,0,0,7,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.2781,8.9515791,0,0,58.150002,52.91,51.830002,57.200001,6,1,1,0,0,1,5,1,164,381106.56,0,0,5914.6064 -3877,4799,8741,8740,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,14,0,13,71.248184,0,0,0,55,1,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1582565,0,0,0,51.830002,57.200001,58.150002,52.91,7,1,1,0,0,1,5,1,164,381106.56,0,0,5914.6064 -3878,4800,8742,8743,-9,-9,2,1,0,47,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-12,103.17902,0,0,0,59,3,2,1,3,2,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,45.119999,41.529999,6,2,3,0,0,1,2,1,994.66669,-63303.676,0,0,1636.6346 -3878,4800,8743,8742,-9,-9,1,1,1,59,1,0,1,0,3,-9,2,1,0,0,2,7.611712,7.8218102,0,2,0,-9,32,0,12,-15.119894,0,0,0,47,3,4,3,3,2,2019,2,2,13,1,32,32,15,1,0,3,0,5.5203962,5.5203962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.119999,41.529999,50,54,2,2,3,0,1,1,2,1,994.66669,-63303.676,0,0,1636.6346 -3878,4800,8744,-9,8742,8743,6,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.87146,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,1,2,1,994.66669,-63303.676,0,0,1636.6346 -3878,4801,8745,-9,8742,8743,3,1,1,23,2,0,1,0,1,-9,2,1,0,0,4,7.6947498,7.6232605,0,3,0,0,0,-9,0,-1023.0107,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,36,30,15,1,0,-9,1,7.9834614,7.9834614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.259998,59.43,-9,-9,6,2,3,0,0,1,3,1,283,-6754.6309,0,0,1033.3584 -3878,4802,8746,-9,8742,8743,4,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1028.8441,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,6,2,3,0,0,1,1,1,7326,87157.789,0,0,420.31009 -3878,4803,8747,-9,8742,8743,5,1,0,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-993.03418,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1999862,0,0,0,50.34,56.400002,-9,-9,7,2,3,0,0,1,1,1,402,15864.696,0,0,1177.764 -3879,4804,8748,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,4,8.0941,8.2697105,0,3,0,0,0,-9,0,-1029.593,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,10,10,15,1,1,-9,0,47.211292,47.211292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.759998,55.720001,-9,-9,4,1,1,0,0,9,4,1,721,409975.72,0,0,1806.626 -3879,4805,8749,-9,8748,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,8.0676651,8.0539637,0,3,0,0,0,-9,0,-917.66516,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,30,30,15,1,0,-9,1,11.335222,11.335222,0,0,0,0,0,0,0,0,0,0,0,.9146204,0,0,0,39.48,58.880001,-9,-9,6,1,1,0,0,9,4,1,873,-135272.81,0,0,734.94263 -3880,4806,8750,-9,-9,8751,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-903.0849,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,1577.5,214601.31,0,0,1290.3788 -3880,4806,8751,-9,-9,-9,1,1,1,50,3,0,1,0,2,-9,2,1,0,0,2,8.1870317,8.1157503,0,4,0,0,0,-9,0,-1010.8636,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,45,40,15,1,0,-9,0,9.4864283,9.4864283,0,0,0,0,0,0,0,0,1,1,0,.63081014,0,0,0,45,40,-9,-9,5,1,1,0,0,9,3,1,1577.5,214601.31,0,0,1290.3788 -3881,4807,8752,8753,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-1,28.159456,0,0,0,82,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9177969,0,0,0,53.630001,38.810001,57.400002,50.48,5,1,1,0,0,9,3,1,353.5,2393864.3,0,0,3861.917 -3881,4807,8753,8752,-9,-9,2,1,1,82,1,0,0,0,1,-9,4,3,0,0,4,0,8.0874481,7.8480244,1,0,-9,58,0,1,-74.972961,0,0,0,81,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2222731,8.0978765,0,0,57.400002,50.48,53.630001,38.810001,6,1,1,0,0,9,3,1,353.5,2393864.3,0,0,3861.917 -3882,4808,8754,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,2,1,0,0,4,8.6762142,8.7273064,0,1,0,-9,6,0,17,-14.525245,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,6,0,49,39,15,1,0,-9,0,16.957499,16.957499,0,0,0,0,0,0,0,0,0,0,0,6.5081906,0,0,0,57.16,56.150002,54.790001,28.9,7,1,1,0,0,11,5,1,2342,1027974.4,0,0,2494.231 -3882,4809,8755,-9,-9,-9,2,1,1,48,2,0,0,0,2,-9,1,1,0,0,3,8.4794807,8.3269348,0,1,0,-9,6,0,-17,64.467163,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,1,38,40,15,1,0,-9,0,13.457325,13.457325,0,0,0,0,0,0,0,0,0,0,0,.65890515,0,0,0,54.790001,28.9,57.16,56.150002,6,1,1,0,0,11,5,1,626,365525.53,0,0,3105.9355 -3882,4810,8756,-9,-9,8755,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.7680159,7.8708172,0,3,0,0,0,-9,0,-1002.7014,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,43,0,15,1,0,-9,1,7.2033854,7.2033854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,11,3,1,1027,87084.297,0,0,1426.879 -3883,4811,8757,8758,-9,-9,2,1,0,39,1,0,2,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,19,0,-5,-129.27229,0,0,1,44,1,4,1,2,1,2019,1,1,6,0,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,48.16,56.209999,6,2,3,0,0,8,4,1,287,601837.56,0,0,3385.8188 -3883,4811,8758,8757,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,9.239727,8.9749384,0,2,0,-9,19,0,5,33.682697,0,0,0,39,1,4,1,3,2,2019,1,2,6,0,35,35,15,1,0,1,0,33.96159,33.96159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,56.209999,48.279999,60.18,6,2,3,0,0,8,4,1,287,601837.56,0,0,3385.8188 -3883,4811,8759,-9,8757,8758,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.2067,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,4,1,287,601837.56,0,0,3385.8188 -3883,4811,8760,-9,8757,8758,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.60736,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,1,287,601837.56,0,0,3385.8188 -3884,4812,8761,8763,-9,-9,2,1,1,35,1,1,3,0,2,-9,2,1,0,0,3,8.7038822,9.1555805,0,2,0,-9,8,0,0,9.7481318,0,0,0,35,1,4,1,-9,-9,2019,1,1,8,0,48,50,15,1,0,1,0,23.862881,23.862881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.060001,52.59,57.16,56.150002,7,1,1,0,0,6,4,1,472,205620.34,0,0,4142.4492 -3884,4812,8762,-9,8763,8761,3,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.5894,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,472,205620.34,0,0,4142.4492 -3884,4812,8763,8761,-9,-9,1,1,0,35,1,1,3,0,1,-9,2,1,0,0,4,7.6969733,7.7605157,0,2,0,-9,13,0,0,-59.774082,-9,0,1,35,2,3,1,3,3,2019,1,2,7,0,20,0,15,1,0,1,0,12.064264,12.064264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,44.060001,52.59,7,1,1,0,0,6,4,1,472,205620.34,0,0,4142.4492 -3884,4812,8764,-9,8763,8761,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.13104,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,4,1,472,205620.34,0,0,4142.4492 -3884,4812,8765,-9,8763,8761,4,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.9314,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,472,205620.34,0,0,4142.4492 -3885,4813,8766,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1001.2374,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.2084924,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,8,1,1,925,56620.813,0,0,773.22333 -3886,4814,8767,-9,-9,-9,1,1,0,54,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1069.9578,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.970001,16.629999,-9,-9,5,1,1,0,0,2,1,0,628,-83619.633,0,0,1400.1584 -3886,4815,8768,-9,8767,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.9031706,7.8477812,0,3,0,0,0,-9,0,-981.52948,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,40,40,15,1,0,-9,1,7.1347928,7.1347928,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,47,59,-9,-9,5,1,1,0,0,2,4,0,98,-16634.152,0,0,2059.5603 -3887,4816,8769,-9,-9,-9,1,1,1,77,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-927.034,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9697495,0,0,0,57.48,47.919998,-9,-9,6,1,1,0,0,5,1,0,996,98839.594,0,0,922.05194 -3888,4817,8770,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,6.2054381,6.2541876,3,0,-9,0,1,0,-1067.7386,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3169208,0,0,20.83,51.560001,-9,-9,4,1,1,0,0,11,2,0,2926,104880.32,0,0,-69.298363 -3889,4818,8771,8772,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,0,3,7.6189742,7.3302603,0,2,0,-9,8,0,0,7.8271556,0,0,0,50,2,3,1,3,2,2019,1,1,7,0,45,42,15,1,0,1,0,4.0977759,4.0977759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,52.619999,45.150002,54.790001,4,1,1,0,0,7,4,1,350.33334,164548,0,0,3336.1899 -3889,4818,8772,8771,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.4614096,8.0828342,0,2,0,-9,8,0,0,118.28784,0,0,0,50,2,3,1,2,3,2019,1,2,10,0,60,50,15,1,0,1,0,7.6404252,7.6404252,0,0,0,0,0,0,0,0,1,1,0,8.1583414,0,0,0,45.150002,54.790001,50.029999,52.619999,4,1,1,0,0,7,4,1,350.33334,164548,0,0,3336.1899 -3889,4818,8773,-9,8771,8772,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.7233,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,350.33334,164548,0,0,3336.1899 -3889,4819,8774,-9,8771,8772,3,1,0,21,2,0,1,0,2,-9,2,1,0,0,3,7.5989976,7.5227551,0,3,0,0,0,-9,0,-1095.1052,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,40,56,15,1,1,-9,1,3.6679516,3.6679516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.939999,49.779999,-9,-9,5,1,1,0,0,7,3,1,144,86926.102,0,0,-12.888098 -3890,4820,8775,8776,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.634481,7.1700644,1,0,-9,39,-9,1,99.950134,-9,0,0,66,2,2,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7090521,7.7412825,0,0,58.32,50.220001,51.060001,35.25,7,1,1,0,0,8,3,1,605.5,871328.88,0,0,2603.1953 -3890,4820,8776,8775,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,5.9292016,6.2794251,1,0,-9,1,-9,-1,15.885012,-9,0,0,67,2,3,3,3,2,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3724442,0,0,51.060001,35.25,58.32,50.220001,6,1,1,0,0,8,3,1,605.5,871328.88,0,0,2603.1953 -3891,4821,8777,-9,8778,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1103.823,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,0,426,-168616.72,0,0,751.00708 -3891,4821,8778,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,1,1,0,0,3,7.5643387,7.5677609,0,4,0,0,0,-9,0,-906.89685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,20,15,1,0,-9,0,7.8902349,7.8902349,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.52,52.860001,-9,-9,5,1,1,0,0,9,2,0,426,-168616.72,0,0,751.00708 -3892,4822,8779,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1014.1099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.380001,20.940001,-9,-9,5,1,1,0,0,4,1,1,467,15374.391,0,0,466.19977 -3893,4823,8780,8781,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.2190189,8.271596,0,2,0,-9,18,0,-4,-101.48282,0,0,1,45,2,4,1,2,2,2019,1,2,11,1,40,35,15,1,0,1,0,11.886515,11.886515,0,0,0,0,0,0,0,2,1,1,0,0,0,.40467519,3,46.16,58.619999,52,55,6,1,1,0,0,6,5,1,1423.6666,637043.13,0,0,5080.4668 -3893,4823,8781,8780,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.5509958,8.9770937,0,2,0,-9,18,0,4,-43.18214,0,0,0,41,2,4,1,-9,-9,2019,1,1,9,1,38,38,15,1,0,1,0,18.886282,18.886282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.16,58.619999,6,1,1,0,0,6,5,1,1423.6666,637043.13,0,0,5080.4668 -3893,4823,8782,-9,8780,8781,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.625,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,6,5,1,1423.6666,637043.13,0,0,5080.4668 -3894,4824,8783,-9,-9,8784,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-925.07581,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,534.5,114359.69,0,0,1480.5583 -3894,4824,8784,-9,-9,-9,1,1,1,49,3,0,2,0,2,-9,2,1,0,0,3,8.1475201,8.2929668,0,4,0,0,0,-9,0,-1056.0488,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,58,15,1,0,-9,0,9.9905891,9.9905891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.860001,46.5,-9,-9,4,1,1,0,0,9,3,1,534.5,114359.69,0,0,1480.5583 -3895,4825,8785,8786,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.691329,7.6000624,1,0,-9,49,0,0,104.73765,0,0,0,72,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5786202,7.97504,0,0,54.450001,30.389999,41.98,41.77,5,1,1,0,0,12,3,1,584,708959.94,0,0,2281.929 -3895,4825,8786,8785,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,0,-40.542988,0,0,0,72,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.526759,3,41.98,41.77,54.450001,30.389999,4,1,1,0,0,12,3,1,584,708959.94,0,0,2281.929 -3896,4826,8787,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,1,2,5.6965432,8.4329319,8.089488,3,0,0,0,-9,0,-874.34595,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,5,5,15,1,0,-9,0,6.9053378,6.9053378,0,0,0,0,0,0,0,0,1,1,0,6.8041239,8.0124187,0,0,45.169998,19.959999,-9,-9,5,1,1,0,0,11,4,1,74,412433.75,0,0,2977.874 -3897,4827,8788,8789,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,9.0553875,9.4286613,0,2,0,-9,21,0,0,-135.89293,0,0,0,46,2,4,1,2,2,2019,1,4,12,0,68,70,15,1,0,1,0,14.111099,14.111099,0,0,0,0,0,0,0,0,1,1,0,5.9788251,0,0,0,46.450001,46.209999,51,54,4,1,1,0,0,10,5,1,331.5,525104.88,0,0,5667.7666 -3897,4827,8789,8788,-9,-9,4,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,8.3614559,8.4013643,0,2,0,-9,6,0,0,-44.797802,0,0,0,46,2,3,1,-9,-9,2019,1,1,10,1,30,37,15,1,0,1,0,18.118372,18.118372,0,0,0,0,0,0,0,0,1,1,0,6.2463503,0,0,0,51,54,46.450001,46.209999,6,1,1,0,0,10,5,1,331.5,525104.88,0,0,5667.7666 -3898,4828,8790,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,1,0,7.0130167,7.1942711,3,0,0,0,-9,0,-1148.2517,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,17.264885,0,0,1,1,0,2.8434837,7.1445351,0,0,54.099998,19.92,-9,-9,5,1,1,0,0,2,2,1,383,146118.08,0,0,106.11649 -3898,4829,8791,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-911.01581,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.9027294,3,27.459999,58.849998,-9,-9,4,1,1,1,0,2,1,1,480,15428.303,0,0,446.58392 -3899,4830,8792,8793,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,1,7.7826982,7.4694653,0,1,0,-9,2,0,-2,112.72434,0,0,1,32,2,3,1,-9,-9,2019,1,1,13,1,40,42,15,1,0,1,0,8.4579258,8.4579258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.389999,39.5,46,53,4,1,1,0,0,10,5,1,452.5,206302.59,0,0,3286.9888 -3899,4830,8793,8792,-9,-9,1,1,1,32,1,0,0,0,2,-9,1,1,0,0,3,8.4144373,8.6075621,0,1,0,-9,2,0,2,-72.102158,0,0,0,30,2,1,1,2,2,2019,1,2,16,5,42,62,15,1,1,1,0,12.075832,12.075832,0,0,0,0,0,0,0,5.48,0,0,0,1.0857321,0,8.1666393,1,46,53,50.389999,39.5,7,1,1,0,0,10,5,1,452.5,206302.59,0,0,3286.9888 -3900,4831,8794,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,5,7.7939911,8.2356424,0,3,0,0,0,-9,0,-1008.266,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,50,50,15,1,0,-9,0,6.4415703,6.4415703,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,9,3,0,210,-86381.945,0,0,821.97052 -3901,4832,8795,-9,8797,8796,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.28888,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,322.33334,457236.03,0,0,2751.2417 -3901,4832,8796,8797,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,2,8.3458109,8.3465099,0,2,0,-9,19,0,0,63.195759,0,0,0,47,2,4,1,2,2,2019,1,2,11,0,47,48,15,1,0,1,0,11.041953,11.041953,0,0,0,0,0,0,0,0,1,1,0,.52983564,0,0,0,40.23,52.060001,45.560001,60.259998,5,1,1,0,0,7,4,1,322.33334,457236.03,0,0,2751.2417 -3901,4832,8797,8796,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,7.4367375,7.6600852,0,2,0,-9,20,0,0,-23.247021,0,0,0,47,2,2,1,2,1,2019,1,1,11,0,22,24,15,1,0,1,0,11.587889,11.587889,0,0,0,0,0,0,0,2,1,1,0,1.5199606,0,11.925759,3,45.560001,60.259998,40.23,52.060001,5,1,1,0,0,7,4,1,322.33334,457236.03,0,0,2751.2417 -3902,4833,8798,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-881.77246,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.938456,3,46.799999,17.959999,-9,-9,4,1,1,0,0,12,1,0,296,52083.617,0,0,1263.3998 -3903,4834,8799,8800,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,3,8.4401579,8.375124,0,1,0,-9,6,0,0,-64.402756,0,0,1,33,1,4,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,12.543932,12.543932,0,0,0,0,0,0,0,0,0,0,0,2.8834367,0,0,0,47.66,52.330002,57.16,56.150002,6,1,1,0,0,2,5,1,237.5,332870.63,0,0,3889.4658 -3903,4834,8800,8799,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,9.4516535,9.1364517,0,1,0,-9,6,0,0,-53.614418,0,0,0,33,1,3,1,2,2,2019,1,2,6,0,37,38,15,1,0,1,0,29.394726,29.394726,0,0,0,0,0,0,0,0,0,0,0,4.3206754,0,0,0,57.16,56.150002,47.66,52.330002,6,1,1,0,0,2,5,1,237.5,332870.63,0,0,3889.4658 -3904,4835,8801,-9,-9,-9,1,1,1,48,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-817.89545,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9961385,0,0,0,55.279999,31.709999,-9,-9,5,1,1,0,0,11,1,1,353,0,0,0,1347.5776 -3905,4836,8802,8803,-9,-9,2,1,0,53,1,1,1,0,2,-9,2,1,0,0,3,8.6049681,9.0969934,0,2,0,-9,9,0,-6,-90.567047,0,0,0,59,2,3,1,2,2,2019,1,1,15,4,45,50,15,1,1,1,0,16.024647,16.024647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.129999,65.139999,60.290001,52.110001,3,1,1,0,0,8,5,1,276,2228123.3,0,0,4792.729 -3905,4836,8803,8802,-9,-9,1,1,1,59,1,1,1,0,2,-9,1,1,0,0,3,8.6009302,8.8263226,0,2,0,-9,9,0,6,-177.46465,0,0,0,53,2,3,1,3,2,2019,1,2,9,0,40,35,15,1,0,1,0,18.84668,18.84668,0,0,0,0,0,0,0,0,1,1,0,1.6512576,0,0,0,60.290001,52.110001,23.129999,65.139999,5,3,4,0,0,8,5,1,276,2228123.3,0,0,4792.729 -3906,4837,8804,8806,-9,-9,2,1,1,33,1,2,2,0,1,-9,2,1,0,0,4,8.5440035,8.6368599,0,2,0,-9,7,0,-3,-18.936214,0,0,0,36,1,5,1,2,1,2019,1,1,4,0,40,42,15,1,0,1,0,18.302122,18.302122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.93,44.119999,7,1,1,0,0,2,4,1,670,323235.5,0,0,2936.8115 -3906,4837,8805,-9,8806,8804,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1030.9071,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,670,323235.5,0,0,2936.8115 -3906,4837,8806,8804,-9,-9,1,1,0,36,1,2,2,0,1,-9,5,1,0,0,5,8.2555761,8.0513439,0,2,0,-9,7,0,3,-49.312962,0,0,1,33,1,4,1,2,2,2019,1,2,5,1,32,24,15,1,0,1,0,14.540281,14.540281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.93,44.119999,57.16,56.150002,7,1,1,0,0,2,4,1,670,323235.5,0,0,2936.8115 -3906,4837,8807,-9,8806,8804,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.80957,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,670,323235.5,0,0,2936.8115 -3907,4838,8808,-9,8809,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1073.1608,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.549999,59.610001,-9,-9,3,1,1,0,1,11,3,0,373.5,104651.91,0,0,2388.5735 -3907,4838,8809,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,0,3,7.9498243,7.9117804,0,4,0,0,0,-9,0,-918.49579,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,39,39,15,1,1,-9,0,8.8465118,8.8465118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.639999,50.880001,-9,-9,2,1,1,0,1,11,3,0,373.5,104651.91,0,0,2388.5735 -3908,4839,8810,8812,-9,-9,1,1,1,50,1,1,1,0,2,-9,2,1,0,0,3,8.4145832,8.1668739,0,2,0,-9,5,0,24,47.165718,0,0,0,26,3,4,3,3,3,2019,2,2,10,0,41,100,15,1,0,3,0,14.176417,14.176417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.200001,48.709999,46.630001,59.720001,5,1,1,0,0,8,3,0,946,-146620.38,0,0,2577.2712 -3908,4839,8811,-9,8812,8810,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.65973,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,3,0,946,-146620.38,0,0,2577.2712 -3908,4839,8812,8810,-9,-9,2,1,0,26,1,1,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-24,-18.075735,0,1,1,50,2,3,1,-9,-9,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.494367,3,46.630001,59.720001,35.200001,48.709999,6,1,1,0,0,8,3,0,946,-146620.38,0,0,2577.2712 -3909,4840,8813,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,8,3,1,1,2,0,4.3532648,4.3670526,3,0,0,0,-9,0,-966.51563,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.1540213,0,0,41.419998,53.32,-9,-9,6,1,1,0,0,9,1,0,2010,43272.066,0,0,594.30798 -3910,4841,8814,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1102.9805,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.3873956,0,2.6784728,0,0,1,1,0,1.1767864,0,0,0,48.189999,15.79,-9,-9,6,1,1,0,0,1,1,0,1035,-137882.36,0,0,1573.0431 -3911,4842,8815,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,1,1,0,0,4,8.7602711,8.8059111,0,3,0,0,0,-9,0,-925.68646,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,38,35,15,1,1,-9,0,26.072601,26.072601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.75,57.049999,-9,-9,3,1,1,0,0,9,5,1,509,813983.69,0,0,3817.1279 -3912,4843,8816,8817,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,7.702004,8.2499437,7.7185903,1,0,-9,8,0,5,55.316067,0,0,0,55,2,4,1,2,2,2019,1,2,7,0,33,32,15,1,0,1,0,7.0437012,7.0437012,0,0,0,0,0,0,0,2,0,0,0,4.882123,7.8546743,0,3,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,11,4,1,430.5,191780.11,0,0,3351.0264 -3912,4843,8817,8816,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,6.8392682,6.7571001,0,1,0,-9,8,0,-5,-189.4342,0,0,0,60,2,3,1,2,2,2019,1,1,8,0,33,33,15,1,0,1,0,3.3700516,3.3700516,0,0,0,0,0,0,0,7,0,0,0,1.4882798,0,.15562119,3,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,11,4,1,430.5,191780.11,0,0,3351.0264 -3913,4844,8818,-9,-9,-9,1,1,0,75,2,0,0,0,3,-9,4,3,0,1,2,0,5.4115343,5.3233042,3,0,0,0,-9,0,-1025.1552,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,25.504827,0,0,0,0,279.61197,0,1,1,0,0,5.4134431,0,0,24.219999,22.91,-9,-9,3,1,1,0,0,12,2,1,137,-32857.652,0,0,2657.4368 -3914,4845,8819,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,0,3,0,5.2706122,5.5688577,3,0,0,0,-9,0,-857.53076,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5357718,5.3978372,5.1029449,3,63.830002,43.619999,-9,-9,6,1,1,0,0,8,2,1,327,847755.88,0,0,408.85742 -3915,4846,8820,8821,-9,-9,2,1,1,69,1,0,0,0,2,-9,1,1,0,0,3,7.9588213,8.4340601,6.244133,1,0,-9,6,0,9,14.735599,0,0,0,60,1,4,3,-9,-9,2019,2,1,10,1,20,0,15,1,0,4,0,20.185034,20.185034,0,0,0,0,0,0,0,0,1,1,0,0,6.832859,0,0,53,47,51.240002,58.84,5,1,1,0,0,12,4,1,457.5,1185238.9,0,0,3755.3232 -3915,4846,8821,8820,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,0,7.2699318,7.5615053,1,0,-9,6,0,0,66.179085,0,0,0,69,2,3,1,3,3,2019,3,2,11,1,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2852905,7.6776876,0,0,51.240002,58.84,53,47,6,1,1,0,0,12,4,1,457.5,1185238.9,0,0,3755.3232 -3916,4847,8822,8823,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,4.6695857,4.4643288,1,0,-9,41,0,-4,-8.9054031,0,0,0,67,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1743808,4.6784,0,0,58.470001,50.220001,53,47,6,1,1,0,0,4,2,1,2499.5,377300.25,0,0,1235.8275 -3916,4847,8823,8822,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.0196743,6.9109316,1,0,-9,6,0,4,46.005928,-9,0,0,63,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8578267,0,0,53,47,58.470001,50.220001,5,1,1,0,0,4,2,1,2499.5,377300.25,0,0,1235.8275 -3917,4848,8824,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,2,1,0,0,3,7.8829117,8.1436434,0,3,0,-9,0,1,0,-977.76141,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,40,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,50.610001,-9,-9,4,1,1,0,0,2,3,1,545,306376.47,0,0,716.0351 -3918,4849,8825,-9,-9,-9,1,1,1,87,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1014.968,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.5404012,0,0,0,38.990002,36.560001,-9,-9,6,1,1,0,0,10,1,1,264,217146.33,0,0,1646.4512 -3919,4850,8826,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,1,2,0,6.5753589,6.6283722,3,0,0,0,-9,0,-1000.8177,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5905514,0,0,47.860001,24.17,-9,-9,6,4,2,0,0,8,2,1,838,704009.19,0,0,849.85358 -3919,4851,8827,-9,8826,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,0,3,6.8242483,6.9864101,4.5806108,3,0,0,0,-9,0,-1059.5906,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6267672,0,0,60.990002,34.25,-9,-9,6,4,2,0,0,8,2,1,379,205977.81,0,0,-840.25507 -3920,4852,8828,8830,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,8.411623,8.5510092,0,2,0,-9,18,-9,-2,-14.618657,-9,0,0,51,2,4,1,3,3,2019,1,2,6,0,41,0,15,1,0,1,0,12.115223,12.115223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,55.110001,62.490002,55.09,7,2,3,0,0,8,4,1,682.66669,480959.19,0,0,3418.9543 -3920,4852,8829,-9,8828,8830,4,1,1,17,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-910.29828,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.529999,57.009998,-9,-9,7,2,3,0,0,8,4,1,682.66669,480959.19,0,0,3418.9543 -3920,4852,8830,8828,8832,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.0860825,8.054781,0,2,0,-9,1,-9,2,-18.457933,-9,0,0,49,1,4,1,3,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,49.27,55.110001,7,2,3,0,0,8,4,1,682.66669,480959.19,0,0,3418.9543 -3920,4853,8831,-9,8828,8830,3,1,0,19,2,0,1,1,2,-9,7,2,0,0,4,6.9488506,7.1705003,0,3,0,-9,0,-9,0,-1031.0093,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,2,3,0,0,8,2,1,834,-95038.227,0,0,394.78363 -3920,4854,8832,-9,-9,-9,5,1,0,76,3,0,1,0,3,-9,6,3,0,0,4,0,0,0,4,0,-9,0,-9,0,-1013.9869,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,5,2,3,0,0,8,1,1,377,0,0,0,0 -3921,4855,8833,8834,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.1099386,8.2542038,0,1,0,-9,3,0,-14,-13.235468,0,1,1,41,1,4,1,-9,-9,2019,1,1,12,0,35,35,15,1,0,1,0,9.8305988,9.8305988,0,0,0,0,0,0,0,0,0,0,0,1.6754844,0,0,0,44,53,43.540001,59.599998,4,2,3,0,0,9,5,1,208,1935032.8,0,0,8544.0654 -3921,4855,8834,8833,-9,-9,1,1,1,41,1,0,0,0,1,-9,1,1,0,0,4,9.7545023,9.8981075,0,1,0,-9,3,0,14,89.678619,0,0,0,27,1,3,1,1,1,2019,1,2,12,0,45,43,15,1,0,1,0,42.648735,42.648735,0,0,0,0,0,0,0,0,0,0,0,2.7260249,0,0,0,43.540001,59.599998,44,53,5,1,1,0,0,9,5,1,208,1935032.8,0,0,8544.0654 -3922,4856,8835,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,1,1,0,0,5,6.7516174,7.6881704,7.5036283,3,0,0,0,-9,0,-1045.108,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,12,12,15,1,0,-9,0,6.8133078,6.8133078,0,0,0,0,0,0,0,7,1,1,0,6.4700232,7.1542435,6.5571671,3,54.099998,59.110001,-9,-9,7,1,1,0,0,5,3,1,797,511678.59,0,0,2058.0684 -3923,4857,8836,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1068.3965,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,52.880001,-9,-9,6,1,1,0,0,7,1,1,94,0,0,0,769.12939 -3924,4858,8837,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1057.0753,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,48,-9,-9,5,2,3,0,0,8,1,0,169,54707.773,0,0,1238.3959 -3924,4859,8838,-9,8837,-9,2,1,0,20,2,0,0,1,3,0,7,2,0,0,4,7.0504804,6.8225961,0,3,0,0,0,-9,0,-959.79327,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,3,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.440001,62.16,-9,-9,2,2,3,0,0,8,2,0,153,149476.97,0,0,1618.0326 -3925,4860,8839,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-972.00592,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.120003,38.080002,-9,-9,5,1,1,0,0,6,1,0,913,-9148.29,0,0,1774.0497 -3926,4861,8840,8841,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,7.0244389,8.9283371,8.2230282,1,0,-9,10,0,1,161.03677,0,0,0,64,1,4,3,-9,-9,2019,4,1,6,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4174521,8.1490269,0,0,58.150002,52.91,51.240002,58.84,6,1,1,0,0,7,5,1,1065,2793903.5,0,0,13052.053 -3926,4861,8841,8840,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,9.2718954,9.7792606,8.9102154,1,0,-9,36,0,-1,22.977753,-9,0,0,65,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.2840238,8.5212374,4.5212998,3,51.240002,58.84,58.150002,52.91,6,1,1,0,0,7,5,1,1065,2793903.5,0,0,13052.053 -3927,4862,8842,-9,8843,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1129.4955,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,55,-9,-9,5,1,1,0,0,9,2,1,1004,485002.22,0,0,985.21704 -3927,4862,8843,-9,-9,-9,1,1,0,51,3,0,1,0,1,-9,2,1,0,0,3,7.0099559,6.9569545,0,4,0,0,0,-9,0,-857.41284,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,21,28,15,1,0,-9,0,7.0041833,7.0041833,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.369999,41.66,-9,-9,5,1,1,0,0,9,2,1,1004,485002.22,0,0,985.21704 -3927,4863,8844,-9,8843,-9,2,1,0,20,2,0,1,0,2,-9,2,1,0,0,3,7.6095228,7.5758872,0,3,0,0,0,-9,0,-1007.2885,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,33,24,15,1,0,-9,1,6.3547382,6.3547382,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.639999,55.650002,-9,-9,3,1,1,0,0,9,3,1,197,-70218.625,0,0,1252.4738 -3928,4864,8845,-9,-9,-9,1,1,0,45,3,0,0,0,3,-9,2,1,0,0,5,7.6927047,7.5726824,0,3,0,-9,0,1,0,-985.97937,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,36,0,15,1,0,-9,0,6.1386018,6.1386018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.189999,51.290001,-9,-9,7,1,1,0,0,13,3,1,704,64221.109,0,0,2885.0581 -3929,4865,8846,8849,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,8.5012026,8.2646141,0,2,0,-9,14,0,-2,110.31429,0,0,1,41,1,3,1,2,2,2019,1,2,10,0,41,42,15,1,0,1,0,12.68766,12.68766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,58.32,50.220001,5,1,1,0,0,9,5,1,479.5,1003577.6,0,0,5862.6797 -3929,4865,8847,-9,8846,8849,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.1452,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,479.5,1003577.6,0,0,5862.6797 -3929,4865,8848,-9,8846,8849,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.7212,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,479.5,1003577.6,0,0,5862.6797 -3929,4865,8849,8846,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,3,9.143755,9.108367,0,2,0,-9,14,0,2,-79.565582,0,0,0,39,1,4,1,2,3,2019,1,1,7,0,45,47,15,1,0,1,0,26.012274,26.012274,0,0,0,0,0,0,0,0,0,0,0,7.9514656,0,0,0,58.32,50.220001,48.529999,58.91,6,1,1,0,0,9,5,1,479.5,1003577.6,0,0,5862.6797 -3930,4866,8850,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,0,3,0,8.4051561,8.1670742,3,0,0,0,-9,0,-1023.6039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4274855,8.0450926,0,0,49.52,56.950001,-9,-9,6,1,1,0,0,11,4,1,187,681439.75,0,0,2066.1938 -3931,4867,8851,-9,8852,8853,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.14777,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,3,0,539,39339.438,0,0,1490.4706 -3931,4867,8852,8853,-9,-9,1,1,0,28,1,1,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,-2,136.41446,0,1,1,30,2,3,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,49.630001,34.799999,5,1,1,0,0,8,3,0,539,39339.438,0,0,1490.4706 -3931,4867,8853,8852,-9,-9,2,1,1,30,1,1,2,0,2,-9,2,1,0,0,3,8.1244698,8.3229036,0,2,0,-9,7,0,2,96.230858,-9,0,0,28,3,4,3,2,2,2019,2,1,18,7,43,0,15,1,1,3,0,11.087916,11.087916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,34.799999,38.34,62.119999,2,1,1,0,0,8,3,0,539,39339.438,0,0,1490.4706 -3931,4867,8854,-9,8852,8853,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.38928,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,3,0,539,39339.438,0,0,1490.4706 -3932,4868,8855,8858,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,0,4,9.297554,9.6511202,0,2,0,-9,22,0,11,-109.22192,0,0,0,43,1,4,1,2,2,2019,1,2,12,2,42,42,15,1,0,1,0,37.284512,37.284512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,55.759998,52.639999,6,1,1,0,0,9,5,1,1050.25,2848421,0,0,6160.1431 -3932,4868,8856,-9,8858,8855,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.1083,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,1050.25,2848421,0,0,6160.1431 -3932,4868,8857,-9,8858,8855,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.46271,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,9,5,1,1050.25,2848421,0,0,6160.1431 -3932,4868,8858,8855,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.3925982,8.5274239,0,2,0,-9,22,0,-11,162.59108,0,0,1,54,1,4,1,2,2,2019,1,1,11,0,46,40,15,1,0,1,0,9.1749296,9.1749296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,52.639999,54.200001,57.490002,6,1,1,0,0,9,5,1,1050.25,2848421,0,0,6160.1431 -3933,4869,8859,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,1,0,7.8403935,7.3592935,3,0,0,0,-9,0,-1061.1329,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.1582725,7.2327209,0,0,34.630001,23.690001,-9,-9,4,1,1,0,0,6,3,1,177,554997.94,0,0,2586.4993 -3934,4870,8860,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,7.4052796,7.6644149,6.748086,3,0,-9,0,-9,0,-997.69934,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,22,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2992878,7.2932553,0,0,47.380001,41.84,-9,-9,6,4,2,0,0,7,3,0,252,1093868,0,0,1743.8383 -3935,4871,8861,-9,8862,8863,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-874.8064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,5,1,698,355383.06,0,0,4803.1494 -3935,4871,8862,8863,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,8.2930861,8.3290901,0,2,0,-9,10,0,-3,0,0,0,1,37,1,3,1,1,1,2019,1,1,10,3,40,35,15,1,0,1,0,16.888029,16.888029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.580002,52.990002,60.290001,52.110001,6,2,3,0,0,2,5,1,698,355383.06,0,0,4803.1494 -3935,4871,8863,8862,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,0,3,8.3650255,8.1021748,0,2,0,-9,10,0,3,0,0,0,0,34,1,4,1,2,1,2019,1,2,9,1,45,45,15,1,0,1,0,13.890834,13.890834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,55.580002,52.990002,5,2,3,0,0,2,5,1,698,355383.06,0,0,4803.1494 -3936,4872,8864,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-969.65057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,32.790001,-9,-9,6,1,1,0,0,5,1,1,3420,54365.477,0,0,1182.2369 -3937,4873,8865,8866,-9,-9,1,1,1,48,1,0,0,0,1,-9,1,1,0,0,4,8.2089481,8.2665529,0,1,0,-9,18,0,15,-50.463764,0,0,0,33,2,4,1,2,2,2019,1,2,12,0,65,50,15,1,0,1,0,9.0059786,9.0059786,0,0,0,0,0,0,0,0,0,0,0,2.6661863,0,0,0,52.23,55.599998,57.16,56.150002,5,1,1,0,0,7,5,0,696,915254,0,0,2634.9331 -3937,4873,8866,8865,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,0,4,8.3196115,8.2492285,0,1,0,-9,10,0,-15,-.49559817,0,0,1,48,1,4,1,-9,-9,2019,1,1,10,1,37,38,15,1,0,1,0,9.8891935,9.8891935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,52.23,55.599998,6,3,4,0,0,7,5,0,696,915254,0,0,2634.9331 -3938,4874,8867,-9,-9,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,8.1756859,7.9441543,0,3,0,-9,0,-9,0,-906.90948,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,2,39,38,15,1,0,-9,1,10.534758,10.534758,0,0,0,0,0,0,0,0,0,0,0,1.3185668,0,0,0,41.09,48.619999,-9,-9,4,1,1,0,0,7,4,1,530,16125.049,0,0,1647.0232 -3938,4875,8868,-9,-9,-9,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,8.0934763,8.0409021,0,3,0,0,0,-9,0,-1037.1909,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,38,39,15,1,0,-9,1,6.6765018,6.6765018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.869999,58.959999,-9,-9,3,1,1,0,0,7,4,1,211,130203.88,0,0,1851.4065 -3939,4876,8869,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,8.6049643,8.7016983,0,3,0,0,0,-9,0,-1097.9788,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,16.239105,16.239105,0,0,0,0,0,0,0,0,1,1,0,3.0675159,0,0,0,44.299999,55.279999,-9,-9,5,1,1,0,0,12,5,1,570,491561.28,0,0,2873.5164 -3940,4877,8870,8871,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.4452715,7.7172461,1,0,-9,2,0,-5,141.25957,0,0,0,67,3,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5483665,0,0,48.869999,58.549999,54.740002,57.220001,6,1,1,0,0,10,3,1,376.5,1256347,0,0,2539.5625 -3940,4877,8871,8870,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,2,0,5,-60.048126,0,0,0,62,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4688821,0,1.7606767,3,54.740002,57.220001,48.869999,58.549999,7,1,1,0,0,10,3,1,376.5,1256347,0,0,2539.5625 -3941,4878,8872,8873,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.1558485,8.2979069,0,1,0,-9,10,0,0,-18.382458,0,0,0,60,2,4,1,3,3,2019,1,1,30,12,38,38,15,1,1,1,0,11.387699,11.387699,0,0,0,0,0,0,0,2,0,0,0,6.5618963,0,3.1629138,3,26.780001,58.119999,54.950001,47.490002,5,1,1,0,0,12,4,1,436.5,1515389.5,0,0,2552.3247 -3941,4878,8873,8872,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,7.431632,7.8771524,7.258883,1,0,-9,10,0,0,34.075264,0,0,0,60,2,3,1,3,3,2019,1,2,3,0,30,30,15,1,0,1,0,5.7639737,5.7639737,0,0,0,0,0,0,0,0,0,0,0,0,7.1268964,0,0,54.950001,47.490002,26.780001,58.119999,4,1,1,0,0,12,4,1,436.5,1515389.5,0,0,2552.3247 -3942,4879,8874,-9,-9,-9,1,1,0,45,3,0,1,0,1,-9,2,1,0,0,3,8.7322712,8.713212,5.8718448,4,0,0,0,-9,0,-1205.6084,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,85,0,15,1,1,-9,0,10.684333,10.684333,0,0,0,0,0,0,0,0,1,1,0,6.6112294,0,0,0,16.08,63.040001,-9,-9,3,1,1,0,0,6,5,1,1112,652725.38,0,0,3133.5532 -3943,4880,8875,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-998.4375,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.969181,3,43.07,51.880001,-9,-9,4,1,1,1,1,13,1,0,1728,-176811.92,0,0,-1.8407234 -3944,4881,8876,-9,-9,-9,1,1,0,77,2,0,0,0,1,-9,4,3,0,0,2,0,7.6546264,7.4847097,3,0,0,0,-9,0,-1132.7144,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8091092,7.4578514,0,0,56.360001,24.02,-9,-9,6,1,1,0,0,13,3,1,700,485713.81,0,0,1962.2018 -3945,4882,8877,-9,8880,-9,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-797.70685,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,327.25,18858.029,0,0,1541.1021 -3945,4882,8878,-9,8880,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1003.8446,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,2,0,327.25,18858.029,0,0,1541.1021 -3945,4882,8879,-9,8880,-9,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-954.71002,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,327.25,18858.029,0,0,1541.1021 -3945,4882,8880,-9,-9,-9,1,1,0,35,3,0,3,0,2,-9,2,1,0,0,1,6.5887704,7.0717158,0,4,0,0,0,-9,0,-916.47864,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,8,26,12,15,1,1,-9,0,5.036263,5.036263,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.047287,3,44.93,17.76,-9,-9,5,1,1,0,0,4,2,0,327.25,18858.029,0,0,1541.1021 -3946,4883,8881,8882,-9,-9,2,1,1,69,1,0,0,0,2,-9,1,1,0,0,3,8.1564636,7.9928489,0,1,0,-9,10,0,3,-114.9409,-9,0,0,66,2,3,3,-9,-9,2019,2,1,10,1,80,0,15,1,0,4,0,4.0365553,4.0365553,0,0,0,0,0,0,0,0,1,1,0,7.38272,0,0,0,52,48,57.09,46.700001,5,1,1,0,0,5,4,0,391.5,412058.69,0,0,4697.4424 -3946,4883,8882,8881,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.8173213,6.8586287,1,0,-9,10,0,-3,46.284176,0,0,0,69,2,3,1,3,3,2019,3,2,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6227741,7.1876345,0,0,57.09,46.700001,52,48,4,1,1,0,0,5,4,0,391.5,412058.69,0,0,4697.4424 -3947,4884,8883,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,0,3,0,7.4981189,7.3516393,3,0,0,0,-9,0,-1062.6086,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0296102,7.4935532,0,0,50.040001,41.889999,-9,-9,6,1,1,0,0,9,3,0,549,625509.5,0,0,2740.4189 -3948,4885,8884,8885,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,1,3,.82626313,.87587774,0,1,0,-9,11,0,-1,88.14064,0,0,0,64,2,3,1,3,3,2019,1,1,6,0,30,30,15,1,0,1,0,.0075045037,.0075045037,0,0,0,0,0,0,0,7,1,1,0,0,0,8.3461428,3,61.189999,33.880001,49.84,39.419998,6,1,1,0,0,9,4,1,431,215911.59,0,0,3370.3232 -3948,4885,8885,8884,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,8.4628849,8.8310328,5.3217087,1,0,-9,11,0,1,47.439827,0,0,0,63,2,3,1,3,3,2019,1,2,12,2,41,41,15,1,0,1,0,12.194013,12.194013,0,0,0,0,0,0,0,5.48,1,1,0,0,5.627121,6.8652167,3,49.84,39.419998,61.189999,33.880001,5,1,1,0,0,9,4,1,431,215911.59,0,0,3370.3232 -3949,4886,8886,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,1,2,8.258357,8.6942024,0,3,0,0,0,-9,0,-932.93079,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,29,29,15,1,1,-9,0,19.098194,19.098194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.82,39.82,-9,-9,3,1,1,0,0,9,4,1,2097,168148.73,0,0,1231.0043 -3950,4887,8887,8888,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,5.1822209,5.4897642,1,0,-9,36,0,5,19.519421,0,0,0,61,2,2,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1948481,0,0,49.439999,43.52,25.42,41.48,6,1,1,0,0,13,3,1,383,736195.75,0,0,1466.1328 -3950,4887,8888,8887,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,2,0,7.3784814,7.7038403,1,0,-9,36,0,-5,-27.964666,0,0,0,66,2,3,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5920806,0,0,25.42,41.48,49.439999,43.52,3,1,1,0,0,13,3,1,383,736195.75,0,0,1466.1328 -3951,4888,8889,8890,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,4,0,7.9372416,7.8074889,1,0,-9,9,0,-14,-55.591511,0,0,0,72,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.9742975,7.6718969,8.3662825,3,53.049999,52.709999,50.139999,53.970001,6,1,1,0,0,10,3,1,323.5,1369812.8,0,0,2884.9492 -3951,4888,8890,8889,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.8022051,6.1256833,1,0,-9,9,0,14,36.109623,0,0,0,58,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3544559,6.1170058,0,3,50.139999,53.970001,53.049999,52.709999,6,1,1,0,0,10,3,1,323.5,1369812.8,0,0,2884.9492 -3952,4889,8891,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,2,0,6.9410844,6.9730444,3,0,-9,0,1,0,-947.48444,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,9,0,0,15,4,1,-9,0,0,0,1,5.6751146,0,0,0,0,34.235004,0,1,1,0,2.6241863,7.0934978,0,0,39.52,35.040001,-9,-9,6,1,1,0,0,11,2,1,635,271127.28,0,0,773.91339 -3953,4890,8892,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-880.89374,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,38,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.420372,3,42.18,36.200001,-9,-9,3,1,1,0,1,12,1,0,656,63962.867,0,0,363.13379 -3954,4891,8893,8894,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-1,33.179707,0,0,0,66,2,4,1,3,2,2019,3,1,3,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.0768476,0,5.8304191,3,58.549999,51.639999,54.200001,57.490002,7,1,1,0,0,13,4,1,576,267795.56,0,0,3665.3252 -3954,4891,8894,8893,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,4,8.3521423,8.532382,6.6772914,1,0,-9,9,0,1,-62.801212,0,0,0,65,2,4,3,3,3,2019,2,2,8,0,38,37,15,1,0,4,0,12.700211,12.700211,0,0,0,0,0,0,0,7,1,1,0,5.2946005,6.6931725,13.804734,3,54.200001,57.490002,58.549999,51.639999,5,1,1,0,0,13,4,1,576,267795.56,0,0,3665.3252 -3955,4892,8895,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-866.36432,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.83,54.459999,-9,-9,4,4,2,1,0,4,1,0,351,57652.961,0,0,1166.0314 -3955,4893,8896,-9,-9,-9,2,1,0,35,3,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-885.60138,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4670179,0,0,0,33,29,-9,-9,5,1,1,1,0,4,1,0,551,8640.4229,0,0,558.68634 -3956,4894,8897,-9,-9,-9,1,1,0,36,3,0,2,0,1,-9,2,1,0,0,4,0,6.1711535,5.4902463,4,0,0,0,-9,0,-1094.547,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.273097,0,0,0,39.330002,58.880001,-9,-9,5,1,1,0,0,6,2,0,842,102620.79,0,0,1144.6282 -3956,4894,8898,-9,8897,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1106.5734,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,842,102620.79,0,0,1144.6282 -3957,4895,8899,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,8.3228254,8.0716476,3,0,0,0,-9,0,-926.7843,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9184484,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,4,1,787,1253169.8,0,0,1601.1158 -3957,4896,8900,-9,8899,-9,2,1,0,58,3,0,0,0,1,-9,2,1,0,0,4,8.7113495,8.5307074,3.883486,3,0,0,0,-9,0,-1071.0126,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,55,58,15,1,0,-9,1,10.546962,10.546962,0,0,0,0,0,0,0,0,1,1,0,0,4.3267174,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,7,5,1,622,233394.08,0,0,1960.8672 -3958,4897,8901,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1075.3977,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,20.592789,0,24.950392,0,0,1,1,0,0,0,0,0,35.82,28.889999,-9,-9,5,1,1,0,0,6,1,0,375,19304.689,0,0,2453.8499 -3959,4898,8902,-9,-9,-9,1,1,0,51,3,2,2,0,2,-9,2,1,0,0,3,7.9949427,8.3039122,0,4,0,0,0,-9,0,-1076.1036,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,38,37,15,1,0,-9,0,9.7330074,9.7330074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.689999,30.99,-9,-9,5,1,1,0,0,10,3,1,1214,58811.09,0,0,1634.3741 -3959,4899,8903,-9,8905,-9,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-966.86115,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,1,1413,-36389.75,0,0,2680.25 -3959,4899,8904,-9,8905,-9,3,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1116.6337,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,1413,-36389.75,0,0,2680.25 -3959,4899,8905,-9,8902,-9,2,1,0,25,2,2,2,0,2,-9,5,1,0,0,4,8.5779724,8.3704185,0,3,0,0,0,-9,0,-919.68817,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,48,45,15,1,0,-9,1,8.728837,8.728837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.189999,54.860001,-9,-9,5,1,1,0,1,10,4,1,1413,-36389.75,0,0,2680.25 -3960,4900,8906,-9,-9,-9,3,1,1,49,3,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-968.60242,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,46.169998,-9,-9,2,1,1,0,0,6,1,1,151,-52433.59,0,0,-437.38773 -3961,4901,8907,8908,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,8.0855608,8.0191031,0,2,0,-9,16,0,-5,-72.963272,0,0,0,50,2,3,1,3,3,2019,1,1,20,7,38,38,15,1,1,1,0,10.361777,10.361777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.280001,63.759998,33.43,53.68,3,2,3,0,0,6,5,1,689.66669,136472.17,0,0,4437.9023 -3961,4901,8908,8907,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,0,3,8.676405,8.8919182,0,2,0,-9,16,0,5,69.77018,0,0,0,45,2,3,1,3,3,2019,1,2,13,2,55,60,15,1,0,1,0,11.857233,11.857233,0,0,0,0,0,0,0,7,1,1,0,3.5945673,0,13.395054,3,33.43,53.68,20.280001,63.759998,3,2,3,0,0,6,5,1,689.66669,136472.17,0,0,4437.9023 -3961,4901,8909,-9,8907,8908,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.08899,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,5,1,689.66669,136472.17,0,0,4437.9023 -3962,4902,8910,8913,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,5,7.5490527,7.5380139,0,2,0,-9,9,0,4,127.26296,0,0,0,44,2,4,1,2,3,2019,1,2,10,0,22,23,15,1,0,1,0,11.276191,11.276191,0,0,0,0,0,0,0,0,1,1,0,4.0331478,0,0,0,57.060001,57.759998,51,56,7,1,1,0,0,10,4,1,430.5,504033.78,0,0,3747.0847 -3962,4902,8911,-9,8910,8913,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.38019,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,430.5,504033.78,0,0,3747.0847 -3962,4902,8912,-9,8910,8913,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1051.0359,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,1,430.5,504033.78,0,0,3747.0847 -3962,4902,8913,8910,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,4,8.6222153,8.6131039,0,2,0,-9,9,0,-4,-159.70518,0,0,0,48,2,5,1,-9,-9,2019,1,1,9,1,35,40,15,1,0,1,0,21.623631,21.623631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.060001,57.759998,5,1,1,0,0,10,4,1,430.5,504033.78,0,0,3747.0847 -3963,4903,8914,-9,8915,8916,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.5364,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,3,1,1273.25,431489.72,0,0,2388.6592 -3963,4903,8915,8916,-9,-9,1,1,0,31,1,0,2,0,1,-9,2,1,0,0,4,7.0919056,7.0949545,0,2,0,-9,9,0,-2,27.300425,0,0,1,33,2,5,1,-9,-9,2019,1,2,9,1,26,16,15,1,0,1,0,6.1211243,6.1211243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,54.689999,57.470001,5,1,1,0,0,1,3,1,1273.25,431489.72,0,0,2388.6592 -3963,4903,8916,8915,-9,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,0,5,8.1438322,8.4297867,0,2,0,-9,10,0,2,-26.840864,0,0,0,31,1,4,1,-9,-9,2019,1,1,5,0,60,42,15,1,0,1,0,7.2110009,7.2110009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,57.759998,54.509998,7,1,1,0,0,1,3,1,1273.25,431489.72,0,0,2388.6592 -3963,4903,8917,-9,8915,8916,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.23578,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,1273.25,431489.72,0,0,2388.6592 -3964,4904,8918,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,0,3,0,7.7147965,7.4859285,3,0,0,0,-9,0,-1079.2826,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9531466,7.8191361,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,5,3,1,1353,611496.88,0,0,1251.077 -3965,4905,8919,8920,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,8.8775969,8.825964,6.107852,1,0,-9,42,0,1,38.158894,0,0,0,60,3,3,1,3,3,2019,1,1,7,0,40,50,15,1,0,1,0,17.863228,17.863228,0,0,0,0,0,0,0,2,0,0,0,0,6.2637076,0,3,57.16,56.150002,60.299999,46.580002,4,1,1,0,0,9,5,1,1013,1658606.8,0,0,3854.436 -3965,4905,8920,8919,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,7.807158,7.5318694,0,1,0,-9,42,0,-1,76.658066,0,0,0,61,2,4,1,2,2,2019,1,2,10,0,36,35,15,1,0,1,0,7.3652,7.3652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.299999,46.580002,57.16,56.150002,4,1,1,0,0,9,5,1,1013,1658606.8,0,0,3854.436 -3966,4906,8921,-9,8922,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-997.8446,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,0,762,1245598.6,0,0,2279.9624 -3966,4906,8922,-9,-9,-9,1,1,0,40,3,0,3,0,1,-9,2,1,0,0,4,7.8077726,8.2397738,6.976109,4,0,-9,0,-9,0,-980.78735,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,4,38,0,15,1,1,-9,0,7.8240185,7.8240185,0,0,0,0,0,0,0,88,1,1,0,7.098875,0,119.38447,3,30.77,64.339996,-9,-9,3,1,1,0,0,10,3,0,762,1245598.6,0,0,2279.9624 -3967,4907,8923,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,0,2,0,8.1507053,8.4174566,3,0,0,0,-9,0,-922.08289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,1.2059273,0,0,0,0,0,0,1,1,0,3.3483446,8.3402185,0,0,63.16,19.709999,-9,-9,3,1,1,0,0,2,4,1,391,1036254.8,0,0,1704.7539 -3968,4908,8924,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1002.8368,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.282913,0,0,0,48.619999,22.809999,-9,-9,3,1,1,0,0,9,1,0,600,133697.64,0,0,968.87994 -3969,4909,8925,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,6.8803802,6.9310937,3,0,0,0,-9,0,-969.06421,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4998879,0,0,61.580002,43.34,-9,-9,7,1,1,0,0,2,2,1,3787,284373.78,0,0,-301.89941 -3970,4910,8926,8927,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,8.2272234,8.0154724,0,1,0,-9,2,0,3,-60.2052,0,1,0,22,1,4,1,1,2,2019,1,2,16,4,45,35,15,1,1,1,0,8.6835365,8.6835365,0,0,0,0,0,0,0,0,0,0,0,1.1856602,0,0,0,43.919998,62.310001,40.009998,58.610001,6,1,1,0,0,1,5,0,817.5,7044.6484,0,0,2711.554 -3970,4910,8927,8926,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,0,4,8.5755606,8.2157879,0,1,0,-9,2,0,-3,-63.826496,0,1,1,25,1,5,1,-9,-9,2019,1,1,12,0,42,41,15,1,0,1,0,9.0807562,9.0807562,0,0,0,0,0,0,0,0,0,0,0,1.5024096,0,0,0,40.009998,58.610001,43.919998,62.310001,6,1,1,0,0,1,5,0,817.5,7044.6484,0,0,2711.554 -3971,4911,8928,8929,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,7.5913968,7.2786565,0,1,0,-9,36,0,-2,50.456081,0,0,0,60,2,2,1,2,3,2019,1,2,9,0,23,23,15,1,0,1,0,8.383544,8.383544,0,0,0,0,0,0,0,14.5,0,0,0,0,0,20.81555,3,55.509998,51.57,37.240002,49.220001,6,1,1,0,0,5,4,1,391.5,425852.25,0,0,2143.4182 -3971,4911,8929,8928,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,2,8.4217882,8.4574251,0,1,0,-9,36,0,2,-16.802893,0,0,0,58,1,3,1,-9,-9,2019,1,1,25,12,42,40,15,1,1,1,0,14.096704,14.096704,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.806475,3,37.240002,49.220001,55.509998,51.57,4,1,1,0,0,5,4,1,391.5,425852.25,0,0,2143.4182 -3971,4912,8930,-9,8929,8928,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,9.7135773,9.4468203,0,3,0,0,0,-9,0,-1132.7678,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,42,42,15,1,0,-9,1,41.432152,41.432152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,5,5,1,2013,-54624.898,0,0,7886.2295 -3972,4913,8931,8932,-9,-9,1,1,0,21,1,0,0,1,2,0,7,2,0,0,4,0,0,0,1,0,-9,2,0,-7,-21.221394,-9,1,1,28,1,5,1,2,2,2019,3,2,23,7,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.23,45.540001,54.099998,59.110001,2,1,1,0,1,2,4,0,1035.5,-78710.906,0,0,2314.7185 -3972,4913,8932,8931,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,5,8.2809763,8.5646725,0,1,0,-9,2,0,7,-71.472443,-9,1,0,21,2,4,2,-9,-9,2019,2,1,7,0,45,0,15,1,0,2,0,10.456071,10.456071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,33.23,45.540001,6,1,1,0,0,2,4,0,1035.5,-78710.906,0,0,2314.7185 -3973,4914,8933,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-999.67194,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.9405634,0,0,1,1,0,5.6171055,0,0,0,43.610001,40.279999,-9,-9,4,1,1,0,0,10,1,1,486,183258.88,0,0,4.4355154 -3974,4915,8934,8935,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,8.1122856,8.1860256,0,2,0,-9,29,0,0,-46.471184,0,0,0,48,2,3,1,-9,-9,2019,1,2,9,1,38,0,15,1,0,1,0,11.765215,11.765215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,52.990002,51.279999,6,2,3,0,0,9,3,1,644,190635.22,0,0,3241.323 -3974,4915,8935,8934,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,7.3898501,7.6218543,0,2,0,-9,29,0,0,-83.416985,0,0,0,48,2,4,1,3,3,2019,1,1,2,0,20,25,15,1,0,1,0,9.9638805,9.9638805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,52,55,6,2,3,0,0,9,3,1,644,190635.22,0,0,3241.323 -3974,4916,8936,-9,8935,8934,3,1,0,25,2,0,2,0,1,-9,2,1,0,0,4,7.5601702,7.5273128,0,3,0,0,0,-9,0,-997.70709,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,41,15,1,0,-9,1,5.8292503,5.8292503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,2,3,0,0,9,3,1,825,194953.22,0,0,1064.142 -3975,4917,8937,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,1,1,0,0,5,6.993288,6.9029002,0,4,0,0,0,-9,0,-991.88556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,18,16,15,1,0,-9,0,8.2554722,8.2554722,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.220181,3,54.099998,59.110001,-9,-9,3,1,1,0,0,9,2,0,392.5,-68592.953,0,0,1252.0945 -3975,4917,8938,-9,8937,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.01154,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,392.5,-68592.953,0,0,1252.0945 -3976,4918,8939,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1014.225,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.99,47.110001,-9,-9,1,1,1,0,0,9,1,0,648,16914.1,0,0,2299.3962 -3977,4919,8940,8941,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,0,4,8.4953232,8.8646345,0,1,0,-9,7,0,-5,-55.343452,0,0,1,44,2,4,1,2,2,2019,1,2,8,0,39,37,15,1,0,1,0,15.006235,15.006235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.630001,59.720001,60.119999,54.799999,6,1,1,0,0,6,5,1,854,209949.28,0,0,4120.0664 -3977,4919,8941,8940,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.1904268,7.6644759,0,1,0,-9,7,0,5,-203.4922,0,0,0,39,1,4,1,2,2,2019,1,1,6,0,39,40,15,1,0,1,0,9.5596733,9.5596733,0,0,0,0,0,0,0,0,0,0,0,3.6413577,0,0,0,60.119999,54.799999,46.630001,59.720001,6,1,1,0,0,6,5,1,854,209949.28,0,0,4120.0664 -3978,4920,8942,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,7.3807526,7.8473325,0,3,0,0,0,-9,0,-1110.9795,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,37,0,15,1,0,-9,0,8.1315517,8.1315517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.07,55.169998,-9,-9,4,1,1,0,0,2,3,0,920,-67221.586,0,0,1638.0085 -3979,4921,8943,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,3,7.6844678,7.617662,0,3,0,0,0,-9,0,-1013.5498,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,39,39,15,1,0,-9,0,8.1793261,8.1793261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.349998,51.16,-9,-9,5,1,1,0,1,12,3,1,1491,529768.81,0,0,2078.533 -3980,4922,8944,8945,-9,-9,1,1,1,54,1,0,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,5,0,0,0,0,49,3,3,3,3,3,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.959999,42.080002,52,54.509998,6,1,1,0,0,13,1,0,816.66669,625621.94,0,0,2811.4429 -3980,4922,8945,8944,-9,-9,2,1,0,49,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-5,0,0,0,0,54,3,2,3,3,3,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,49.959999,42.080002,6,1,1,0,0,13,1,0,816.66669,625621.94,0,0,2811.4429 -3980,4922,8946,-9,8945,8944,5,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1034.8945,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,13,1,0,816.66669,625621.94,0,0,2811.4429 -3980,4923,8947,-9,8945,8944,3,1,0,22,2,0,2,0,3,-9,2,1,0,0,4,7.6923771,7.6592278,0,3,0,0,0,-9,0,-933.47412,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,36,15,1,0,-9,1,5.0757771,5.0757771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.650002,56.09,-9,-9,6,1,1,0,0,13,3,0,1007,-124240.29,0,0,548.06586 -3980,4924,8948,-9,8945,8944,4,1,1,18,2,0,2,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1033.3979,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,13,3,0,170,9779.5879,0,0,0 -3981,4925,8949,8950,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,-2,0,0,0,0,67,3,3,3,3,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.75,41.869999,59.48,46.970001,6,1,1,0,0,7,1,1,247,534713.25,0,0,1845.2532 -3981,4925,8950,8949,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,2,0,0,0,0,65,3,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.48,46.970001,43.75,41.869999,6,1,1,0,0,7,1,1,247,534713.25,0,0,1845.2532 -3982,4926,8951,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,1,2,7.6671438,7.3260989,0,3,0,0,0,-9,0,-1073.0482,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,40,45,15,1,1,-9,0,5.0725098,5.0725098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,22.74,-9,-9,2,1,1,0,0,13,3,0,828,-145787.81,0,0,2370.5659 -3983,4927,8952,8953,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.4433002,6.3772864,1,0,-9,10,0,1,-36.892365,0,0,0,69,3,2,3,3,3,2019,4,2,9,0,0,13,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.5464419,6.3997288,2.200568,1,59.130001,41.580002,32.57,19.15,6,1,1,0,0,6,2,0,549.5,484526.38,0,0,1905.8665 -3983,4927,8953,8952,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,2,0,5.136476,5.2193947,1,0,-9,10,0,-1,13.781367,0,0,0,70,3,4,3,3,3,2019,4,1,17,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,6.1869521,0,0,1,1,0,0,5.198905,0,0,32.57,19.15,59.130001,41.580002,4,1,1,0,0,6,2,0,549.5,484526.38,0,0,1905.8665 -3984,4928,8954,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,0,5,9.9557419,9.6174002,0,3,0,0,0,-9,0,-966.64069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,53,50,15,1,0,-9,0,35.059509,35.059509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,8,5,1,1215,341129.09,0,0,4077.6563 -3985,4929,8955,8956,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,5,7.6044931,7.9048243,0,1,0,-9,39,0,1,-101.22229,0,0,0,56,2,4,1,3,3,2019,1,2,9,0,36,30,15,1,0,1,0,6.1597471,6.1597471,0,0,0,0,0,0,0,0,0,0,0,3.2043278,0,0,0,59.439999,50.02,57.16,56.150002,7,1,1,0,0,4,5,1,367,855299,0,0,3040.3911 -3985,4929,8956,8955,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.8767586,8.9442453,0,1,0,-9,6,0,-1,-76.144867,0,0,0,57,2,5,1,3,3,2019,1,1,8,0,48,48,15,1,0,1,0,16.994419,16.994419,0,0,0,0,0,0,0,0,0,0,0,1.5282797,0,0,0,57.16,56.150002,59.439999,50.02,6,1,1,0,0,4,5,1,367,855299,0,0,3040.3911 -3985,4930,8957,-9,8955,8956,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.7604322,7.7594028,0,3,0,0,0,-9,0,-969.65784,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,36,38,15,1,0,-9,1,7.7266388,7.7266388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.549999,57.369999,-9,-9,6,1,1,0,0,4,3,1,113,214628.91,0,0,1137.4589 -3986,4931,8958,-9,-9,-9,1,1,0,20,2,0,0,1,1,0,7,2,0,0,3,6.2768655,7.5827169,7.542367,3,0,0,0,-9,0,-942.13025,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,11,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9365354,0,0,0,40.73,47.290001,-9,-9,4,1,1,0,0,8,3,0,220,-15900.373,0,0,961.16125 -3987,4932,8959,8961,-9,-9,1,1,0,36,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,2,30.780745,0,0,1,34,2,4,1,2,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,56.43,49.75,51,56,6,1,1,0,0,9,4,0,599.25,137465.34,0,0,3912.6187 -3987,4932,8960,-9,8959,8961,3,1,0,17,2,0,1,1,2,-9,7,2,0,0,3,6.4861879,6.1774564,0,2,0,0,0,-9,0,-935.78186,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.799999,59.5,-9,-9,6,1,1,0,0,9,4,0,599.25,137465.34,0,0,3912.6187 -3987,4932,8961,8959,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,0,4,8.6529083,8.6104021,0,2,0,-9,6,0,-2,216.66205,-9,0,0,36,1,4,3,-9,-9,2019,2,1,10,1,45,0,15,1,0,3,0,13.19161,13.19161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,56.43,49.75,5,1,1,0,0,9,4,0,599.25,137465.34,0,0,3912.6187 -3987,4932,8962,-9,8959,8961,4,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.51929,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,0,599.25,137465.34,0,0,3912.6187 -3988,4933,8963,8964,-9,-9,1,1,0,40,1,0,1,0,2,-9,1,1,0,0,4,7.4265337,7.0961256,0,2,0,-9,24,0,-5,-119.91059,0,0,1,45,2,3,1,3,3,2019,1,2,12,1,32,0,15,1,0,1,0,6.4522052,6.4522052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,53.689999,49.580002,55.59,5,1,1,0,0,5,4,1,301.33334,24348.943,0,0,2796.3718 -3988,4933,8964,8963,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,8.9705143,8.8899508,0,2,0,-9,24,0,5,-96.322159,0,0,0,40,2,4,1,3,3,2019,1,1,8,0,53,0,15,1,0,1,0,13.590642,13.590642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,55.59,50.43,53.689999,4,1,1,0,0,5,4,1,301.33334,24348.943,0,0,2796.3718 -3988,4933,8965,-9,8963,8964,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.57635,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,301.33334,24348.943,0,0,2796.3718 -3989,4934,8966,-9,8969,8967,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.6761,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,3,1,1168.5,45495.875,0,0,1060.9396 -3989,4934,8967,8969,-9,-9,2,1,1,32,1,1,2,0,1,-9,2,1,0,0,3,7.4180665,7.8299422,0,2,0,-9,6,0,1,-65.360977,0,0,0,31,2,3,1,-9,-9,2019,1,1,12,0,35,50,15,1,0,1,0,6.3636928,6.3636928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,46.080002,57.200001,4,2,3,0,0,4,3,1,1168.5,45495.875,0,0,1060.9396 -3989,4934,8968,-9,8969,-9,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.07703,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,4,3,1,1168.5,45495.875,0,0,1060.9396 -3989,4934,8969,8967,-9,-9,1,1,0,31,1,1,2,0,2,-9,2,1,0,0,3,6.8223906,6.9018097,0,2,0,-9,6,0,-1,-8.1367588,0,0,1,32,1,3,1,3,3,2019,1,2,12,0,25,40,15,1,0,1,0,4.5962081,4.5962081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,41.34,56.619999,4,2,3,0,0,4,3,1,1168.5,45495.875,0,0,1060.9396 -3990,4935,8970,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,0,4,0,7.3638868,7.3448157,3,0,0,0,-9,0,-1099.5797,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5215244,7.6926198,0,0,53.029999,51.139999,-9,-9,6,1,1,0,0,12,3,1,337,613134,0,0,1476.9678 -3991,4936,8971,8973,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,3,8.3674927,8.4675121,0,2,0,-9,22,0,5,-10.146187,0,0,0,41,1,2,1,2,2,2019,1,2,15,3,46,0,15,1,0,1,0,11.638638,11.638638,0,0,0,0,0,0,0,0,1,1,0,3.2205985,0,0,0,34.5,42.209999,50.639999,47.599998,3,2,3,0,0,6,5,1,973.66669,1080070.9,0,0,3613.4438 -3991,4936,8972,-9,8973,8971,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.55737,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,5,1,973.66669,1080070.9,0,0,3613.4438 -3991,4936,8973,8971,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,0,2,8.7183504,8.9175062,0,2,0,-9,22,0,-5,-2.1532865,0,0,1,46,1,3,1,1,2,2019,1,1,10,0,50,37,15,1,0,1,0,13.012856,13.012856,0,0,0,0,0,0,0,0,1,1,0,.79716051,0,0,0,50.639999,47.599998,34.5,42.209999,6,2,3,0,0,6,5,1,973.66669,1080070.9,0,0,3613.4438 -3991,4937,8974,-9,8973,8971,3,1,0,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1143.2828,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2387934,0,0,0,46.349998,58.720001,-9,-9,6,2,3,0,0,6,1,1,113,188191.95,0,0,521.60559 -3992,4938,8975,8976,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,30,0,-8,-120.99792,0,0,0,61,2,4,1,2,3,2019,1,1,11,2,40,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.200001,57.490002,59.740002,41.310001,6,1,1,0,0,12,3,1,423.5,-77480.359,0,0,1144.4795 -3992,4938,8976,8975,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,7.654129,7.6916432,0,1,0,-9,30,0,8,-120.84042,0,0,0,53,2,4,1,2,2,2019,1,2,9,0,60,80,15,1,0,1,0,4.1153278,4.1153278,0,0,0,0,0,0,0,7,0,0,0,0,0,10.603809,3,59.740002,41.310001,54.200001,57.490002,2,1,1,0,0,12,3,1,423.5,-77480.359,0,0,1144.4795 -3992,4939,8977,-9,8975,8976,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.2735977,8.4244299,0,3,0,0,0,-9,0,-1043.3303,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,44,15,1,0,-9,1,12.304707,12.304707,0,0,0,0,0,0,0,0,0,0,0,.65030873,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,12,4,1,431,-87628.758,0,0,2914.5825 -3993,4940,8978,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,0,5,6.4488378,6.6882558,0,3,0,0,0,-9,0,-1009.9072,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,3,4,0,0,8,2,0,658,100811.73,0,0,1133.5353 -3994,4941,8979,-9,-9,-9,1,1,0,87,2,0,0,0,2,-9,4,3,0,0,1,0,8.3729076,8.6061726,3,0,0,0,-9,0,-938.00305,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.9804707,0,0,29.540001,35.450001,-9,-9,4,1,1,0,0,11,5,1,683,413712.59,0,0,3339.9656 -3995,4942,8980,-9,8985,8983,6,1,0,12,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.6641,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,4,1,392.33334,755284.5,0,0,5474.7178 -3995,4942,8981,-9,8985,8983,7,1,0,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.09241,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,392.33334,755284.5,0,0,5474.7178 -3995,4942,8982,-9,8985,8983,5,1,1,15,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.11572,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,6,4,1,392.33334,755284.5,0,0,5474.7178 -3995,4942,8983,8985,-9,-9,2,1,1,47,1,0,5,0,1,-9,2,1,0,0,4,9.730896,9.7968931,0,2,0,-9,20,0,1,132.82635,0,0,0,46,2,4,1,-9,2,2019,1,1,7,0,50,50,15,1,0,1,0,42.522076,42.522076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.540001,57.189999,57.16,56.150002,6,1,1,0,0,6,4,1,392.33334,755284.5,0,0,5474.7178 -3995,4942,8984,-9,8985,8983,4,1,1,17,2,0,5,1,2,0,7,2,0,0,5,7.2843847,6.9896264,0,2,0,0,0,-9,0,-809.20038,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,13,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.33952245,0,0,0,46.82,62.330002,-9,-9,6,1,1,0,0,6,4,1,392.33334,755284.5,0,0,5474.7178 -3995,4942,8985,8983,-9,-9,1,1,0,46,1,0,5,0,2,-9,2,1,0,0,4,6.2694788,6.1888018,0,2,0,-9,20,0,-1,-22.738476,0,0,0,47,1,4,1,3,3,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.35571927,0,0,0,57.16,56.150002,45.540001,57.189999,6,1,1,0,0,6,4,1,392.33334,755284.5,0,0,5474.7178 -3995,4943,8986,-9,8985,8983,3,1,1,18,2,0,5,1,2,0,7,2,0,0,5,7.3462796,6.8574543,0,3,0,0,0,-9,0,-944.0166,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,36,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.61752808,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,6,4,1,440,12818.337,0,0,204.97771 -3996,4944,8987,8988,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,2,0,6.8173709,7.0855012,1,0,-9,39,0,0,30.972742,0,0,0,76,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,29.572004,0,0,0,0,0,1,1,0,.2711421,7.0499625,0,0,59.470001,20.190001,54.200001,57.490002,4,1,1,0,0,2,2,1,889.5,480986.31,0,0,2075.3618 -3996,4944,8988,8987,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.1466913,5.9052052,1,0,-9,39,0,0,6.3128462,0,0,0,76,3,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.1309087,5.8933167,18.934948,2,54.200001,57.490002,59.470001,20.190001,6,1,1,0,0,2,2,1,889.5,480986.31,0,0,2075.3618 -3997,4945,8989,-9,8992,8990,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-969.55682,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,0,1363.6,158892.59,0,0,4344.7134 -3997,4945,8990,8992,-9,-9,1,1,1,25,1,1,3,0,2,-9,2,1,0,0,4,8.1266832,8.330678,0,2,0,-9,6,0,-12,-13.691616,0,1,0,37,2,5,1,2,3,2019,1,2,8,1,44,43,15,1,0,1,0,8.4045763,8.4045763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,48.669998,59.259998,5,1,1,0,0,2,3,0,1363.6,158892.59,0,0,4344.7134 -3997,4945,8991,-9,8992,8990,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.95111,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,1363.6,158892.59,0,0,4344.7134 -3997,4945,8992,8990,-9,-9,2,1,0,37,1,1,3,0,2,-9,5,1,0,0,5,7.2175727,7.3169475,6.3702102,2,0,-9,6,0,12,28.690771,0,0,1,25,2,4,1,-9,-9,2019,1,1,8,0,16,16,15,1,0,1,0,9.2711706,9.2711706,0,0,0,0,0,0,0,0,1,1,0,6.0975928,0,0,0,48.669998,59.259998,51.830002,57.200001,7,1,1,0,0,2,3,0,1363.6,158892.59,0,0,4344.7134 -3997,4945,8993,-9,8992,-9,3,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1139.0858,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,3,0,1363.6,158892.59,0,0,4344.7134 -3998,4946,8994,8995,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.4660511,8.4117002,0,1,0,-9,7,0,-10,-21.974533,0,0,0,68,3,3,3,3,2,2019,2,2,18,6,38,38,15,1,1,4,0,12.809628,12.809628,0,0,0,0,0,0,0,0,1,1,0,3.1016309,0,0,0,34.740002,55.630001,58.09,35.220001,3,1,1,0,0,5,5,1,1013.5,1302902.8,0,0,10673.628 -3998,4946,8995,8994,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,8.5195217,8.4641409,1,0,-9,7,0,10,57.214062,0,0,0,58,1,3,1,-9,-9,2019,3,1,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.4051685,8.5165529,0,0,58.09,35.220001,34.740002,55.630001,4,1,1,0,0,5,5,1,1013.5,1302902.8,0,0,10673.628 -3999,4947,8996,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,0,3,0,6.0722828,5.8078065,3,0,0,0,-9,0,-903.51129,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7397165,0,0,49,48,-9,-9,5,2,3,0,1,2,2,1,585,875843.06,0,0,120.68709 -3999,4948,8997,-9,-9,-9,2,1,1,41,2,0,0,0,1,-9,6,3,0,0,1,0,0,0,3,0,-9,0,-9,0,-1063.9401,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.969999,21.299999,-9,-9,1,2,3,0,1,2,1,1,1063,-19713.445,0,0,368.3197 -4000,4949,8998,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,2,1,0,0,4,8.4311533,8.2355738,0,3,0,0,0,-9,0,-1013.7059,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,39,15,1,0,-9,0,15.419077,15.419077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.470001,55.040001,-9,-9,6,1,1,0,0,13,4,1,811,-22153.633,0,0,479.34241 -4001,4950,8999,9000,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,0,3,9.3986988,9.0612659,0,1,0,-9,7,0,10,-59.626106,0,0,0,44,2,4,1,2,3,2019,1,2,6,0,65,70,15,1,0,1,0,19.323483,19.323483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,48.880001,52.93,55.310001,6,1,1,0,0,9,5,1,339.5,2059512.8,0,0,5099.3828 -4001,4950,9000,8999,-9,-9,2,1,0,44,1,0,0,0,2,-9,1,1,0,0,4,8.4286041,7.995831,4.4419198,1,0,-9,7,0,-10,-81.970772,0,0,1,54,3,3,1,2,2,2019,1,1,7,0,50,45,15,1,0,1,0,6.8106742,6.8106742,0,0,0,0,0,0,0,0,0,0,0,4.3888659,0,0,0,52.93,55.310001,61.279999,48.880001,6,1,1,0,0,9,5,1,339.5,2059512.8,0,0,5099.3828 -4002,4951,9001,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1150.751,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3362492,0,0,0,62.27,48.470001,-9,-9,6,1,1,0,0,2,1,0,175,376741.47,0,0,2882.4302 -4003,4952,9002,-9,-9,-9,1,1,0,23,2,0,0,0,2,0,7,2,0,0,4,7.2264824,7.6982427,0,1,0,1,1,-9,0,30.649776,-9,1,1,-9,-9,-9,-9,-9,-9,2019,3,2,25,11,20,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.29,67.25,51.73,58.82,5,1,1,0,0,2,4,0,3463,98510.07,0,0,1620.0669 -4003,4953,9003,-9,-9,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,0,5,7.9947267,8.0918236,0,1,0,-9,1,-9,0,61.546124,-9,1,1,-9,-9,-9,-9,-9,-9,2019,2,1,8,0,43,0,15,1,0,-9,0,9.4113121,9.4113121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,15.29,67.25,6,1,1,0,0,2,4,0,869,-54474.77,0,0,1354.8588 -4004,4954,9004,9006,-9,-9,2,1,0,27,1,0,2,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,6,0,-5,64.280235,0,1,1,32,2,3,1,-9,-9,2019,3,1,30,12,0,16,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,23.73427,3,21.59,40.32,41.209999,51.34,4,1,1,0,1,12,2,0,651.66669,10995.622,0,0,1730.4155 -4004,4954,9005,-9,9004,9006,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.4121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,2,0,651.66669,10995.622,0,0,1730.4155 -4004,4954,9006,9004,-9,-9,1,1,1,32,1,0,2,0,2,-9,2,1,0,0,3,6.2710543,6.865272,0,2,0,-9,6,0,5,104.29053,-9,0,0,27,2,1,3,3,2,2019,2,2,22,9,32,0,15,1,1,3,0,3.426378,3.426378,0,0,0,0,0,0,0,2,1,0,1,0,0,11.78125,3,41.209999,51.34,21.59,40.32,3,1,1,0,1,12,2,0,651.66669,10995.622,0,0,1730.4155 -4005,4955,9007,9008,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.7347412,8.8280125,0,1,0,-9,9,0,-6,-20.401068,0,0,0,54,2,3,1,3,2,2019,1,1,8,0,45,45,15,1,0,1,0,16.70624,16.70624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,41.470001,58.080002,6,1,1,0,0,1,5,1,1168,273411.06,0,0,4536.3721 -4005,4955,9008,9007,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.8982258,8.9930573,0,1,0,-9,9,0,6,13.645217,0,0,0,48,2,3,1,3,3,2019,1,2,11,0,35,40,15,1,0,1,0,21.97838,21.97838,0,0,0,0,0,0,0,0,1,1,0,1.9418784,0,0,0,41.470001,58.080002,55.959999,49.93,6,1,1,0,0,1,5,1,1168,273411.06,0,0,4536.3721 -4005,4956,9009,-9,9008,9007,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.8816671,7.6374307,0,3,0,0,0,-9,0,-1103.0308,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,40,15,1,0,-9,1,8.0301647,8.0301647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.700001,56.48,-9,-9,6,1,1,0,0,1,3,1,249,106711.18,0,0,775.58215 -4005,4957,9010,-9,9008,9007,4,1,0,18,2,0,0,0,2,1,2,1,0,0,3,6.8061805,6.8137631,0,3,0,0,0,-9,0,-901.28986,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,0,15,1,0,-9,1,6.3734689,6.3734689,0,0,0,0,0,0,0,0,1,1,0,6.1602106,0,0,0,58.889999,48.599998,-9,-9,6,1,1,0,0,1,2,1,250,-146849.45,0,0,925.09814 -4006,4958,9011,9012,-9,-9,1,1,0,39,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,17,0,1,-114.78613,0,0,1,38,2,3,1,3,3,2019,3,2,30,11,0,35,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.297726,3,18.73,52.799999,46.080002,57.200001,2,2,3,1,0,12,3,0,667.5,474459.06,0,0,919.44519 -4006,4958,9012,9011,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,0,3,7.7882886,7.448195,0,1,0,-9,17,0,-1,29.230236,0,0,0,39,2,2,3,3,2,2019,2,1,9,0,35,22,15,1,0,3,0,6.7585354,6.7585354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,18.73,52.799999,4,2,3,0,0,12,3,0,667.5,474459.06,0,0,919.44519 -4007,4959,9013,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,8.2185926,7.8728805,0,3,0,0,0,-9,0,-1026.8003,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,38,38,15,1,0,-9,0,8.9800673,8.9800673,0,0,0,0,0,0,0,0,0,0,0,4.4606366,0,0,0,50.419998,51.349998,-9,-9,5,1,1,0,1,8,4,0,1939,-2347.7637,0,0,2213.3652 -4008,4960,9014,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,9.174798,8.9453192,3,0,0,0,-9,0,-946.17303,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3717909,9.0481262,0,0,57.419998,38.610001,-9,-9,7,1,1,0,0,12,5,1,188,709571.44,0,0,9731.0908 -4009,4961,9015,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,2,0,6.5358596,6.5786252,3,0,0,0,-9,0,-1000.2822,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2210088,6.5476403,0,0,44.59,35.139999,-9,-9,3,1,1,0,1,2,2,0,1201,342316.13,0,0,-61.40667 -4010,4962,9016,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,8.7088413,8.8579702,0,3,0,0,0,-9,0,-961.64105,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,35,15,1,0,-9,0,19.073826,19.073826,0,0,0,0,0,0,0,0,0,0,0,5.6246996,0,0,0,51.240002,58.84,-9,-9,5,1,1,0,0,4,5,1,1228,184848.88,0,0,3510.4233 -4011,4963,9017,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,1,3,0,7.3544197,7.5883083,3,0,0,0,-9,0,-879.02899,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.1831479,0,0,0,0,27.035801,0,1,1,0,3.1330967,7.7456203,0,0,59.790001,18.139999,-9,-9,6,1,1,0,0,12,3,0,310,827552,0,0,2420.5134 -4012,4964,9018,9019,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,25,0,-8,0,0,0,0,67,1,2,3,3,1,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.375587,1,25.4,42.610001,48.869999,26.450001,4,1,1,0,0,2,1,1,394,217102.73,0,0,3415.5688 -4012,4964,9019,9018,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,1,2,0,0,0,1,0,-9,25,0,8,0,0,0,0,59,2,2,3,1,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,12.835662,24.588449,0,0,0,93.65963,0,1,1,0,0,0,0,0,48.869999,26.450001,25.4,42.610001,6,1,1,0,0,2,1,1,394,217102.73,0,0,3415.5688 -4013,4965,9020,9023,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,0,1,0,0,0,2,0,-9,11,0,0,5.9274054,0,0,0,39,2,3,1,2,2,2019,1,1,8,0,50,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.860001,37.290001,45.27,52.060001,6,2,3,0,0,11,2,1,2565,146036.95,0,0,2444.7747 -4013,4965,9021,-9,9023,9020,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.69476,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,11,2,1,2565,146036.95,0,0,2444.7747 -4013,4965,9022,-9,9023,9020,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-957.9223,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.66421831,0,0,0,51.650002,52.380001,-9,-9,6,2,3,0,0,11,2,1,2565,146036.95,0,0,2444.7747 -4013,4965,9023,9020,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,3,8.0214005,7.9979334,0,2,0,-9,20,0,0,25.782721,0,0,1,39,2,1,1,2,3,2019,1,2,17,6,20,20,15,1,1,1,0,13.984769,13.984769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,52.060001,60.860001,37.290001,3,2,3,0,0,11,2,1,2565,146036.95,0,0,2444.7747 -4014,4966,9024,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,5.6573453,5.7793684,3,0,0,0,-9,0,-1067.9152,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.627984,5.8104744,0,0,59.150002,44.139999,-9,-9,6,1,1,0,0,10,2,1,1291,-140687.45,0,0,226.24901 -4015,4967,9025,9026,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.733593,8.8641443,0,1,0,-9,33,0,3,73.520851,0,0,0,54,2,3,1,3,3,2019,1,1,9,0,36,48,15,1,0,1,0,18.253494,18.253494,0,0,0,0,0,0,0,2,0,0,0,2.790344,0,0,3,63.240002,42.389999,57.919998,51.82,6,1,1,0,0,6,5,1,289.5,391928,0,0,3762.3662 -4015,4967,9026,9025,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.2814665,8.3653793,0,1,0,-9,33,0,-3,-37.784874,0,0,0,57,2,4,1,2,3,2019,1,2,13,1,38,37,15,1,0,1,0,15.311783,15.311783,0,0,0,0,0,0,0,14.5,0,0,0,0,0,22.686644,3,57.919998,51.82,63.240002,42.389999,5,1,1,0,0,6,5,1,289.5,391928,0,0,3762.3662 -4016,4968,9027,-9,9029,9028,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.34961,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,0,541.75,-119003.88,0,0,1683.9979 -4016,4968,9028,9029,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,5,8.0013351,7.8932199,0,2,0,-9,2,0,13,254.78482,0,0,0,31,2,2,3,2,3,2019,2,2,8,0,39,45,15,1,0,3,0,9.2686157,9.2686157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,57.830002,40.060001,7,1,1,0,0,11,3,0,541.75,-119003.88,0,0,1683.9979 -4016,4968,9029,9028,-9,-9,2,1,0,31,1,0,2,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,2,0,-13,12.858379,0,0,1,44,2,5,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.830002,40.060001,62.389999,56.709999,6,1,1,1,0,11,3,0,541.75,-119003.88,0,0,1683.9979 -4016,4968,9030,-9,9029,9028,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.4121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,3,0,541.75,-119003.88,0,0,1683.9979 -4017,4969,9031,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,0,4,0,8.2666445,7.8089733,3,0,0,0,-9,0,-925.41211,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3499393,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,4,4,1,545,386828.47,0,0,2841.9192 -4018,4970,9032,-9,9033,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-869.93738,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,591.33331,52212.512,0,0,2093.8962 -4018,4970,9033,9034,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,2,7.1723762,7.343102,0,2,0,-9,2,0,-18,82.613297,0,0,1,57,3,1,3,2,2,2019,2,3,23,11,17,20,15,1,1,3,0,10.621558,10.621558,0,0,0,0,0,0,0,7,1,1,0,0,0,2.4834404,2,33.16,36.279999,45.220001,18.41,4,1,1,0,0,2,2,0,591.33331,52212.512,0,0,2093.8962 -4018,4970,9034,9033,-9,-9,3,1,1,57,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,2,0,18,-91.557625,0,0,0,39,2,2,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.220001,18.41,33.16,36.279999,5,1,1,0,0,2,2,0,591.33331,52212.512,0,0,2093.8962 -4019,4971,9035,-9,9037,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1031.5341,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,760.66669,0,0,0,1350.5082 -4019,4971,9036,-9,9037,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-943.9129,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,760.66669,0,0,0,1350.5082 -4019,4971,9037,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,4,0,-9,0,-9,0,-1126.5265,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,1,0,9,1,0,760.66669,0,0,0,1350.5082 -4020,4972,9038,-9,9041,9040,2,1,1,17,2,0,2,1,2,0,7,2,0,0,4,6.4928226,6.4823227,0,2,0,0,0,-9,0,-992.80023,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,15,3,22,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6534522,3,41.509998,59.080002,-9,-9,5,2,3,0,0,9,5,1,484,1887401,0,0,4889.6958 -4020,4972,9039,-9,9041,9040,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.76648,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,9,5,1,484,1887401,0,0,4889.6958 -4020,4972,9040,9041,-9,-9,5,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,8.9072208,8.851819,0,2,0,-9,5,0,-7,68.75621,0,0,0,45,3,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,23.150793,23.150793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,43.419998,62.330002,6,2,3,0,0,9,5,1,484,1887401,0,0,4889.6958 -4020,4972,9041,9040,-9,-9,1,1,0,45,1,0,2,0,3,-9,2,1,0,0,4,8.0405283,8.1362286,0,2,0,-9,5,0,7,-67.942184,0,0,0,38,1,4,1,3,3,2019,1,5,13,2,27,27,15,1,0,1,0,12.665956,12.665956,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.253302,3,43.419998,62.330002,51,56,4,2,3,0,0,9,5,1,484,1887401,0,0,4889.6958 -4020,4972,9042,-9,9041,9040,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.61523,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,5,1,484,1887401,0,0,4889.6958 -4021,4973,9043,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,4,5.7227259,6.6877279,6.6364493,3,0,0,0,-9,0,-991.29486,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,3,0,15,4,0,-9,0,0,0,1,.8888787,0,0,0,0,21.965456,0,1,1,0,6.0085015,6.3442016,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,2,0,308,308998.91,0,0,1754.0765 -4022,4974,9044,9045,-9,-9,2,1,0,77,1,0,0,0,2,-9,2,1,0,0,3,5.1142316,5.3179817,0,1,0,-9,52,0,-4,67.729958,0,0,0,81,2,3,3,-9,-9,2019,2,1,10,0,16,0,15,1,0,4,0,1.5117741,1.5117741,0,0,0,0,0,0,0,7,1,1,0,5.4333963,0,11.025214,3,52,45,57.330002,53.459999,6,1,1,0,0,7,1,1,318,669036.63,0,0,1693.8285 -4022,4974,9045,9044,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,4,21.396698,0,0,0,77,2,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,52,45,6,1,1,0,0,7,1,1,318,669036.63,0,0,1693.8285 -4023,4975,9046,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,0,4,9.2197895,9.1196632,0,3,0,0,0,-9,0,-1031.584,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,40,50,15,1,0,-9,0,25.639282,25.639282,0,0,0,0,0,0,0,0,1,1,0,4.2882628,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,8,5,1,490,480933.63,0,0,3033.8262 -4024,4976,9047,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,2,1,0,0,4,7.4254489,7.2046618,0,4,0,-9,0,0,0,-913.23035,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,24,30,15,1,0,-9,0,6.3113151,6.3113151,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.279999,43.740002,-9,-9,6,1,1,0,0,2,2,0,902.33331,82755.375,0,0,1618.4595 -4024,4976,9048,-9,9047,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-932.99731,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,0,902.33331,82755.375,0,0,1618.4595 -4024,4976,9049,-9,9047,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1052.2612,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,902.33331,82755.375,0,0,1618.4595 -4025,4977,9050,-9,9051,9053,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.0225,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,255.5,713109.25,0,0,6271.1914 -4025,4977,9051,9053,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,0,4,7.8105516,7.8739657,0,2,0,-9,12,0,2,-53.062664,0,0,1,31,2,4,1,2,2,2019,1,1,12,0,22,24,15,1,0,1,0,16.609735,16.609735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,2,1,1,0,0,11,5,1,255.5,713109.25,0,0,6271.1914 -4025,4977,9052,-9,9051,9053,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.41675,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,255.5,713109.25,0,0,6271.1914 -4025,4977,9053,9051,-9,-9,1,1,1,31,1,0,2,0,2,-9,2,1,0,0,4,9.2847748,9.5382366,0,2,0,-9,12,0,-2,.33555144,0,0,0,33,1,4,1,3,2,2019,1,2,10,0,23,28,15,1,0,1,0,64.508354,64.508354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,11,5,1,255.5,713109.25,0,0,6271.1914 -4026,4978,9054,9055,-9,-9,1,1,0,31,1,1,2,0,2,-9,2,1,0,0,3,7.0473289,6.8487344,0,2,0,-9,6,0,-1,-144.77676,0,0,1,32,2,3,1,2,2,2019,1,2,21,10,24,24,15,1,1,1,0,5.6962223,5.6962223,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8645291,3,28.52,55.040001,49.630001,54.220001,6,1,1,0,0,10,4,0,469.75,152748.73,0,0,3101.2876 -4026,4978,9055,9054,-9,-9,2,1,1,32,1,1,2,0,2,-9,1,1,0,0,3,8.631856,8.7625866,0,2,0,-9,6,0,1,-26.536024,0,0,0,31,2,3,1,-9,-9,2019,1,1,12,1,80,80,15,1,0,1,0,6.5151944,6.5151944,0,0,0,0,0,0,0,0,1,1,0,4.743443,0,0,0,49.630001,54.220001,28.52,55.040001,5,1,1,0,0,10,4,0,469.75,152748.73,0,0,3101.2876 -4026,4978,9056,-9,9054,9055,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.423,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,469.75,152748.73,0,0,3101.2876 -4026,4978,9057,-9,9054,9055,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.51099,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,0,469.75,152748.73,0,0,3101.2876 -4027,4979,9058,9061,-9,-9,1,1,1,45,1,1,2,0,1,-9,2,1,0,0,4,9.3440161,9.4131174,0,2,0,-9,12,0,5,12.583083,0,0,0,40,1,4,3,2,1,2019,2,2,11,0,45,45,15,1,0,3,0,30.654387,30.654387,0,0,0,0,0,0,0,0,0,0,0,7.0131903,0,0,0,51.830002,57.200001,33.200001,63.27,6,1,1,0,0,9,5,1,1865,148560.05,0,0,5011.6973 -4027,4979,9059,-9,9061,9058,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.4623,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1865,148560.05,0,0,5011.6973 -4027,4979,9060,-9,9061,9058,3,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.9544,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,1865,148560.05,0,0,5011.6973 -4027,4979,9061,9058,-9,-9,2,1,0,40,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,12,0,-5,14.800861,0,0,1,45,1,4,1,-9,-9,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.148386,0,0,0,33.200001,63.27,51.830002,57.200001,6,1,1,0,0,9,5,1,1865,148560.05,0,0,5011.6973 -4028,4980,9062,9063,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,7.8142385,8.1063471,0,1,0,-9,10,0,3,-32.030777,0,0,0,59,2,2,3,3,3,2019,2,2,9,0,37,37,15,1,0,4,0,8.7104702,8.7104702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.389999,36.060001,46.5,34.32,6,1,1,0,0,4,4,1,981,596303.38,0,0,1904.562 -4028,4980,9063,9062,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,2,0,7.5555124,8.2163372,1,0,-9,10,0,-3,-105.63454,0,0,0,62,2,3,1,2,1,2019,3,1,18,6,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4526601,0,0,46.5,34.32,65.389999,36.060001,4,1,1,0,0,4,4,1,981,596303.38,0,0,1904.562 -4028,4981,9064,-9,9063,9062,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.7334509,7.6610074,0,3,0,0,0,-9,0,-963.38055,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,42,46,15,1,0,-9,1,6.8840766,6.8840766,0,0,0,0,0,0,0,0,0,0,0,3.7063394,0,0,0,48.700001,54.610001,-9,-9,5,1,1,0,0,4,3,1,174,114399.03,0,0,2136.3806 -4028,4982,9065,-9,9063,9062,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,8.2495975,8.1130171,0,3,0,0,0,-9,0,-994.84705,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,42,42,15,1,1,-9,1,10.301909,10.301909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.440001,55.75,-9,-9,5,1,1,0,0,4,4,1,188,-75302.242,0,0,414.17184 -4029,4983,9066,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,1,1,0,0,3,4.0108929,3.9577365,0,3,0,0,0,-9,0,-987.51978,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7290831,0,0,0,59.470001,33.419998,-9,-9,7,1,1,0,0,6,2,1,969,171791.05,0,0,457.02292 -4030,4984,9067,9068,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,47,0,0,-175.0743,0,0,0,69,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1305289,0,0,0,57.060001,57.759998,60.119999,54.799999,7,1,1,0,0,4,2,1,805,253564.72,0,0,840.04694 -4030,4984,9068,9067,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.9275827,6.7683821,1,0,-9,3,0,0,-39.31781,0,0,0,69,3,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.19444792,6.5248394,0,0,60.119999,54.799999,57.060001,57.759998,6,1,1,0,0,4,2,1,805,253564.72,0,0,840.04694 -4031,4985,9069,-9,9070,-9,2,1,0,17,2,0,1,1,3,0,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-915.43848,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.389999,50.439999,-9,-9,3,1,1,0,0,2,2,1,1583,64294.051,0,0,473.85147 -4031,4985,9070,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,3,7.4670591,7.6873932,0,4,0,0,0,-9,0,-1099.1036,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,30,40,15,1,0,-9,0,8.7849073,8.7849073,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.450001,49.459999,-9,-9,3,1,1,0,0,2,2,1,1583,64294.051,0,0,473.85147 -4032,4986,9071,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1042.0526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.810001,40.77,-9,-9,5,3,4,0,0,8,1,1,440,-42332.832,0,0,702.69489 -4033,4987,9072,9073,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,4.4554853,4.8415027,1,0,-9,52,0,-5,4.7799454,-9,0,0,74,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2605124,0,0,45.439999,37.23,47.810001,52.330002,6,1,1,0,0,6,2,1,153.5,135325.69,0,0,962.40894 -4033,4987,9073,9072,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,5,-11.448112,0,0,0,69,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1603832,0,0,0,47.810001,52.330002,45.439999,37.23,6,1,1,0,0,6,2,1,153.5,135325.69,0,0,962.40894 -4034,4988,9074,9075,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,8.9086084,8.9712286,1,0,-9,7,0,2,-11.364472,0,0,0,65,1,5,1,-9,-9,2019,3,1,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9771986,8.4379673,0,0,56.330002,51.02,54.099998,59.110001,6,1,1,0,0,11,5,1,1029,1516531.4,0,0,5202.8115 -4034,4988,9075,9074,-9,-9,1,1,0,65,1,0,0,0,1,-9,2,1,0,0,5,5.2223811,7.8455715,7.5943127,1,0,-9,19,0,-2,212.82225,0,0,0,67,3,4,3,3,3,2019,2,2,8,0,4,0,15,1,0,4,0,5.1181793,5.1181793,0,0,0,0,0,0,0,0,1,1,0,3.7622111,7.3975949,0,0,54.099998,59.110001,56.330002,51.02,7,1,1,0,0,11,5,1,1029,1516531.4,0,0,5202.8115 -4035,4989,9076,-9,-9,-9,1,1,1,73,2,0,0,0,2,-9,4,3,0,0,5,0,7.4400768,7.4500017,3,0,0,0,-9,0,-994.69312,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2891107,7.923152,.49455467,3,57.060001,57.759998,-9,-9,6,1,1,0,0,7,3,1,754,641977.88,0,0,1701.3475 -4036,4990,9077,9078,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,0,4,9.2123985,9.2602606,0,2,0,-9,7,0,-3,10.108811,0,0,1,38,1,3,3,-9,-9,2019,2,1,10,0,42,25,15,1,0,3,0,26.467354,26.467354,0,0,0,0,0,0,0,0,1,1,0,3.5864472,0,0,0,54.200001,57.490002,26.389999,55.439999,5,1,1,0,0,12,4,1,936.5,588004.81,0,0,4229.729 -4036,4990,9078,9077,-9,-9,1,1,1,38,1,1,2,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,3,-67.795258,0,0,0,35,1,4,1,2,2,2019,3,2,29,10,0,42,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.389999,55.439999,54.200001,57.490002,2,1,1,1,1,12,4,1,936.5,588004.81,0,0,4229.729 -4036,4990,9079,-9,9077,9078,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.49707,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,936.5,588004.81,0,0,4229.729 -4036,4990,9080,-9,9077,9078,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.141,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,936.5,588004.81,0,0,4229.729 -4037,4991,9081,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,2,0,7.857007,7.8663979,3,0,-9,0,1,0,-836.71313,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.7633824,0,0,26.23,27.07,-9,-9,4,1,1,0,0,2,3,1,1274,182726.31,0,0,1958.9529 -4038,4992,9082,-9,9083,9085,6,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-794.53644,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,1,0,873,6238.8994,0,0,1443.8025 -4038,4992,9083,9085,-9,-9,2,1,0,42,1,0,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,-2,0,0,0,1,44,3,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.16,48.810001,39.389999,29.629999,4,1,1,1,1,13,1,0,873,6238.8994,0,0,1443.8025 -4038,4992,9084,-9,9083,9085,5,1,0,16,2,0,2,1,3,-9,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-948.13287,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.650002,36.790001,-9,-9,4,1,1,0,0,13,1,0,873,6238.8994,0,0,1443.8025 -4038,4992,9085,9083,-9,-9,1,1,1,44,1,0,2,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,6,0,2,0,0,0,0,42,3,4,3,3,3,2019,4,2,19,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,29.629999,49.16,48.810001,3,1,1,1,0,13,1,0,873,6238.8994,0,0,1443.8025 -4038,4993,9086,-9,9083,9085,4,1,1,21,2,0,2,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1132.209,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,1,0,13,1,0,333,-141817.63,0,0,-3.5111799 -4039,4994,9087,9088,-9,-9,2,1,1,51,1,0,3,0,2,-9,2,1,0,0,2,7.16429,7.6641684,0,2,0,-9,10,0,7,8.8711967,0,0,0,44,2,4,1,-9,-9,2019,1,1,9,0,60,54,15,1,0,1,0,2.4303536,2.4303536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.900002,46.48,49.41,58.279999,4,2,3,0,0,9,3,1,811.59998,254328.34,0,0,2432.1348 -4039,4994,9088,9087,-9,-9,1,1,0,44,1,0,3,0,2,-9,2,1,0,0,4,7.8850646,8.1627874,0,2,0,-9,25,0,-7,-47.618786,0,0,1,51,2,2,1,3,2,2019,1,2,6,0,38,22,15,1,0,1,0,8.1425104,8.1425104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,43.900002,46.48,6,2,3,0,0,9,3,1,811.59998,254328.34,0,0,2432.1348 -4039,4994,9089,-9,9088,9087,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-853.35913,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.98540473,0,0,0,52.82,51.630001,-9,-9,4,2,3,0,0,9,3,1,811.59998,254328.34,0,0,2432.1348 -4039,4994,9090,-9,9088,9087,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1029.3103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,2,3,0,0,9,3,1,811.59998,254328.34,0,0,2432.1348 -4039,4994,9091,-9,9088,9087,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.3932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,3,1,811.59998,254328.34,0,0,2432.1348 -4040,4995,9092,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.3299856,7.072947,3,0,0,0,-9,0,-935.39294,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4563608,7.5408602,0,0,53.77,41.299999,-9,-9,6,1,1,0,0,6,3,1,418,495311.81,0,0,1470.7334 -4041,4996,9093,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1049.2518,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,26.3888,0,0,0,3.4475009,244.50533,0,1,1,0,.84413648,0,0,0,62.209999,29.17,-9,-9,6,1,1,0,0,4,1,0,907,-125108.42,0,0,1140.0798 -4042,4997,9094,9095,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,2,0,-2,0,0,0,0,82,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,46.669998,55.57,6,2,3,0,0,7,1,1,6028.5,-9004.6943,0,0,-6.1069336 -4042,4997,9095,9094,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,2,0,2,0,0,0,0,80,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,0,1,46.669998,55.57,52,45,6,2,3,0,0,7,1,1,6028.5,-9004.6943,0,0,-6.1069336 -4043,4998,9096,9097,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,2,9.376297,9.3877506,0,1,0,-9,17,0,3,-37.69928,0,0,0,58,2,3,3,3,3,2019,2,1,12,2,37,45,15,1,0,4,0,34.620789,34.620789,0,0,0,0,0,0,0,0,0,0,0,2.6281929,0,0,0,51.25,48.450001,49.52,56.950001,6,1,1,0,0,4,5,1,1112.5,1961784.3,0,0,3235.0801 -4043,4998,9097,9096,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,18,0,-3,34.629704,0,0,0,61,2,2,1,3,3,2019,3,2,2,0,0,34,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.70709,0,0,0,49.52,56.950001,51.25,48.450001,7,1,1,0,0,4,5,1,1112.5,1961784.3,0,0,3235.0801 -4043,4999,9098,-9,9097,9096,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,8.299427,8.0124197,0,3,0,0,0,-9,0,-975.56982,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,50,35,15,1,0,-9,1,7.9939656,7.9939656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,1,1,1,0,0,4,4,1,588,-59787.965,0,0,669.87274 -4044,5000,9099,-9,9102,9101,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.9981,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,487,482033.63,0,0,2434.0225 -4044,5000,9100,-9,9102,9101,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.9285,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,0,487,482033.63,0,0,2434.0225 -4044,5000,9101,9102,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,0,3,8.524663,8.6435175,0,2,0,-9,5,0,3,43.804878,0,0,0,39,1,3,3,-9,-9,2019,2,1,17,7,47,49,15,1,1,3,0,10.537958,10.537958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.470001,52.369999,46.23,51.669998,3,1,1,0,0,7,3,0,487,482033.63,0,0,2434.0225 -4044,5000,9102,9101,-9,-9,1,1,0,39,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,-3,-126.70949,0,0,1,42,2,3,1,2,2,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.23,51.669998,47.470001,52.369999,5,1,1,0,0,7,3,0,487,482033.63,0,0,2434.0225 -4045,5001,9103,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.2199402,8.1386843,0,3,0,0,0,-9,0,-1093.1621,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,42,15,1,0,-9,0,9.0768642,9.0768642,0,0,0,0,0,0,0,2,1,1,0,0,0,1.0739995,3,54.200001,57.490002,-9,-9,6,1,1,0,0,5,4,1,978,144234.94,0,0,1112.453 -4046,5002,9104,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1010.9378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.9860766,0,0,1,1,0,3.8204827,0,0,0,52.599998,24.620001,-9,-9,5,1,1,0,0,4,1,1,968,-128572.41,0,0,2006.3053 -4047,5003,9105,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1022.7739,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.255491,3,29.48,62.18,-9,-9,2,4,5,1,0,6,1,0,1336,-194517.02,0,0,524.02515 -4048,5004,9106,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-736.11078,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,37.400002,-9,-9,5,1,1,0,0,7,1,0,1787,-136058.11,0,0,470.96924 -4049,5005,9107,9108,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,2,8.4270468,8.51966,0,2,0,-9,10,0,12,-141.38818,0,0,0,38,2,4,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,13.81597,13.81597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.950001,53.150002,36.75,54.560001,6,1,1,0,0,2,4,1,478.66666,263663.59,0,0,3813.5789 -4049,5005,9108,9107,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,8.3586817,8.257864,0,2,0,-9,10,0,-12,-109.57289,0,0,1,50,2,2,1,-9,-9,2019,1,1,13,1,30,17,15,1,0,1,0,16.256145,16.256145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.75,54.560001,43.950001,53.150002,6,1,1,0,0,2,4,1,478.66666,263663.59,0,0,3813.5789 -4049,5005,9109,-9,9108,9107,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1176.6868,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,4,1,478.66666,263663.59,0,0,3813.5789 -4050,5006,9110,9111,-9,-9,1,1,0,67,1,0,0,0,1,-9,2,1,0,0,3,6.8812752,7.4695134,6.4273071,1,0,-9,8,0,2,12.048503,0,0,0,65,2,3,3,2,1,2019,2,2,8,0,20,15,15,1,0,4,0,4.4247651,4.4247651,0,0,0,0,0,0,0,0,1,1,0,3.1136167,6.7238092,0,0,61.43,48.880001,58.610001,40.490002,6,1,1,0,0,4,3,1,228,519146.97,0,0,3363.6631 -4050,5006,9111,9110,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.7677388,7.8505797,1,0,-9,8,0,-2,-107.23734,0,0,0,67,1,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1841154,7.4525986,0,0,58.610001,40.490002,61.43,48.880001,6,1,1,0,0,4,3,1,228,519146.97,0,0,3363.6631 -4051,5007,9112,-9,9113,-9,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.31628,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,933,39328.523,0,0,1827.3158 -4051,5007,9113,-9,-9,-9,1,1,0,39,2,0,2,0,1,-9,2,1,0,0,5,8.3894005,8.7875271,0,2,0,-9,12,0,2,84.196495,0,0,1,-9,-9,-9,-9,2,1,2019,1,2,11,0,43,0,15,1,0,-9,0,13.350301,13.350301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.67,65.949997,41.169998,59.310001,6,1,1,0,0,2,4,1,933,39328.523,0,0,1827.3158 -4051,5007,9114,-9,9113,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.9554,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,933,39328.523,0,0,1827.3158 -4051,5008,9115,-9,-9,-9,2,1,0,37,2,0,2,0,1,-9,2,1,0,0,4,8.0347519,7.9598851,0,2,0,-9,12,0,-2,39.405724,0,0,1,-9,-9,-9,-9,3,3,2019,1,1,5,0,20,19,15,1,0,-9,0,19.601381,19.601381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,30.67,65.949997,6,1,1,0,0,2,4,1,1502,-79704.813,0,0,379.63083 -4052,5009,9116,9117,-9,-9,1,1,0,36,1,0,0,0,1,-9,1,1,0,0,3,7.7109246,7.3871756,0,1,0,-9,10,0,-2,-119.83278,0,0,1,38,1,4,1,2,2,2019,1,2,4,0,40,16,15,1,0,1,0,4.255311,4.255311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.299999,46.580002,55,34.150002,6,2,3,0,0,8,4,0,288.5,592791,0,0,1602.1381 -4052,5009,9117,9116,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,0,4,8.3324823,8.0451832,0,1,0,-9,2,0,2,-61.563156,0,0,0,36,1,3,1,2,2,2019,1,1,13,1,40,55,15,1,0,1,0,10.111797,10.111797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,34.150002,60.299999,46.580002,5,2,3,0,0,8,4,0,288.5,592791,0,0,1602.1381 -4053,5010,9118,9119,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,8.3088083,8.2639437,1,0,-9,43,0,2,47.995781,0,0,0,63,1,3,3,2,2,2019,4,2,8,0,0,42,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9475498,0,0,55,53,57.880001,43.830002,6,1,1,0,0,10,3,1,658.5,1629877.5,0,0,2359.6775 -4053,5010,9119,9118,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,3,0,5.7665949,5.3988624,1,0,-9,42,0,-2,-20.654894,0,0,0,65,1,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5179627,5.5793777,0,0,57.880001,43.830002,55,53,2,1,1,0,0,10,3,1,658.5,1629877.5,0,0,2359.6775 -4054,5011,9120,9122,-9,-9,2,1,0,32,1,0,2,0,2,-9,1,1,0,0,4,7.7321134,7.2948055,0,2,0,-9,14,0,-15,73.785934,0,0,1,47,1,4,1,2,2,2019,1,1,4,0,25,60,15,1,0,1,0,10.675413,10.675413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.68,55.119999,59.779999,55.169998,6,2,3,0,0,8,2,1,378,212898.94,0,0,1661.4615 -4054,5011,9121,-9,9120,9122,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.8916,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,1,378,212898.94,0,0,1661.4615 -4054,5011,9122,9120,-9,-9,1,1,1,47,1,0,2,0,1,-9,1,1,0,0,4,5.1721148,5.0010314,0,2,0,-9,14,0,15,17.93202,0,0,0,32,2,4,1,2,2,2019,1,2,5,0,30,16,15,1,0,1,0,.63561225,.63561225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.779999,55.169998,47.68,55.119999,6,2,3,0,0,8,2,1,378,212898.94,0,0,1661.4615 -4055,5012,9123,9124,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,4,0,2,0,0,0,0,71,1,2,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.970001,42.889999,56.740002,33.830002,7,1,1,0,0,7,1,1,916,1615775.8,0,0,1591.9973 -4055,5012,9124,9123,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,-2,0,0,0,0,73,1,2,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,18.670839,0,1,1,0,0,0,0,0,56.740002,33.830002,57.970001,42.889999,6,1,1,0,0,7,1,1,916,1615775.8,0,0,1591.9973 -4056,5013,9125,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,1,5,0,5.7862816,6.0232749,3,0,0,0,-9,0,-877.23987,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.8270383,0,0,37.509998,54.630001,-9,-9,4,1,1,0,0,9,2,0,1000,427410.19,0,0,844.09326 -4057,5014,9126,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,1,0,5.7718534,5.945076,3,0,0,0,-9,0,-1011.2033,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6285295,0,0,41.259998,16.42,-9,-9,4,1,1,0,1,8,2,1,234,35676.414,0,0,813.43469 -4058,5015,9127,9128,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,0,2,8.0453997,7.7549548,0,2,0,-9,2,0,-5,-92.369659,-9,0,0,47,2,3,1,2,3,2019,1,1,12,2,34,0,15,1,0,1,0,9.6924686,9.6924686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.150002,32.689999,33,46.02,5,1,1,0,0,2,4,1,1295,55694.133,0,0,2621.4041 -4058,5015,9128,9127,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.0654716,8.4550705,0,2,0,-9,2,0,5,78.909645,0,0,0,42,2,2,1,2,2,2019,1,2,13,4,43,41,15,1,1,1,0,8.9801807,8.9801807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,46.02,44.150002,32.689999,6,1,1,0,0,2,4,1,1295,55694.133,0,0,2621.4041 -4059,5016,9129,-9,9131,9132,4,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.96265,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.055095013,0,0,0,55.189999,54.259998,-9,-9,2,1,1,0,0,7,4,1,958.75,411273.53,0,0,4385.4526 -4059,5016,9130,-9,9131,9132,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1020.1708,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,7,4,1,958.75,411273.53,0,0,4385.4526 -4059,5016,9131,9132,-9,-9,1,1,0,46,1,0,3,0,1,-9,2,1,0,0,3,7.9291182,8.2991486,0,2,0,-9,24,0,-3,69.450706,0,0,0,49,1,3,1,3,3,2019,1,2,17,6,34,33,15,1,1,1,0,9.7532892,9.7532892,0,0,0,0,0,0,0,0,1,1,0,4.0659981,0,0,0,39.849998,55.830002,49.040001,55.860001,4,1,1,0,0,7,4,1,958.75,411273.53,0,0,4385.4526 -4059,5016,9132,9131,-9,-9,2,1,1,49,1,0,3,0,1,-9,2,1,0,0,3,8.891614,8.5999575,0,2,0,-9,24,0,3,63.146778,0,0,0,46,1,3,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,23.653515,23.653515,0,0,0,0,0,0,0,0,1,1,0,4.4562235,0,0,0,49.040001,55.860001,39.849998,55.830002,6,1,1,0,0,7,4,1,958.75,411273.53,0,0,4385.4526 -4059,5017,9133,-9,9131,9132,3,1,1,18,2,0,3,1,2,0,7,2,0,0,4,0,4.0653558,3.8444571,3,0,0,0,-9,0,-951.64709,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5465302,0,0,0,39.619999,59.880001,-9,-9,6,1,1,0,0,7,4,1,2003,107150.64,0,0,459.6965 -4060,5018,9134,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-958.01831,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,6,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87812692,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,1,1,226,9103.999,0,0,-246.94464 -4061,5019,9135,9136,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,5,8.5757999,8.6871147,0,1,0,-9,4,0,0,-97.584869,0,1,1,28,1,5,1,-9,-9,2019,1,2,9,1,41,39,15,1,0,1,0,13.214574,13.214574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.630001,58.830002,59.43,58.049999,5,2,3,0,0,12,5,1,158,668858.31,0,0,5288.1758 -4061,5019,9136,9135,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,5,8.8564377,8.5572023,0,1,0,-9,4,0,0,-121.70235,0,1,0,28,1,5,1,-9,-9,2019,1,1,7,0,44,40,15,1,0,1,0,20.889853,20.889853,0,0,0,0,0,0,0,0,0,0,0,6.6120267,0,0,0,59.43,58.049999,54.630001,58.830002,6,2,3,0,0,12,5,1,158,668858.31,0,0,5288.1758 -4062,5020,9137,9138,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,0,2,8.9216471,9.3764458,0,2,0,-9,10,0,8,111.69865,0,0,0,34,2,3,1,-9,-9,2019,1,2,11,1,20,55,15,1,0,1,0,53.507465,53.507465,0,0,0,0,0,0,0,14.5,1,1,0,0,0,4.5323453,3,46.189999,48.02,36.529999,47.939999,5,2,3,0,0,8,4,1,299,100673.21,0,0,4388.8848 -4062,5020,9138,9137,-9,-9,2,1,0,34,1,0,3,0,2,-9,2,1,0,1,3,7.3835568,7.4501834,0,2,0,-9,10,0,-8,54.415794,0,0,1,42,2,2,1,-9,-9,2019,1,1,10,0,7,40,15,1,0,1,0,33.407867,33.407867,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.996767,3,36.529999,47.939999,46.189999,48.02,6,2,3,0,0,8,4,1,299,100673.21,0,0,4388.8848 -4063,5021,9139,9140,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,5.6959515,5.7365565,1,0,-9,48,0,-4,-45.292854,0,0,0,72,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1513681,5.8636217,0,0,63.169998,32.939999,54.02,37.200001,5,1,1,0,0,9,2,1,400,1058014.3,0,0,1870.3438 -4063,5021,9140,9139,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.6777101,6.6427727,1,0,-9,6,0,4,82.582283,0,0,0,68,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5618682,6.8005385,0,0,54.02,37.200001,63.169998,32.939999,6,1,1,0,0,9,2,1,400,1058014.3,0,0,1870.3438 -4063,5022,9141,-9,9139,9140,3,1,1,41,3,0,0,0,2,-9,2,1,0,0,4,8.014431,8.3524313,0,3,0,0,0,-9,0,-1092.9174,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,37,37,15,1,0,-9,1,12.183586,12.183586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,9,4,1,698,0,0,0,1930.201 -4064,5023,9142,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,0,4,9.7059679,9.3419132,0,3,0,0,0,-9,0,-1015.4142,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,35,39,15,1,0,-9,0,37.373356,37.373356,0,0,0,0,0,0,0,0,1,1,0,.5544709,0,0,0,42.310001,56.080002,-9,-9,6,1,1,0,0,11,5,1,1238,1140622.8,0,0,4102.3916 -4065,5024,9143,9144,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,67,0,1,0,0,0,0,87,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,4.4453893,0,0,0,0,61.741764,120,1,1,0,2.6958342,0,109.37914,1,66.550003,16.75,53,44,7,1,1,0,0,9,1,1,1638,673152.44,0,0,2436.8003 -4065,5024,9144,9143,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,67,0,-1,0,0,0,0,88,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6017938,0,0,0,53,44,66.550003,16.75,6,1,1,0,0,9,1,1,1638,673152.44,0,0,2436.8003 -4066,5025,9145,9146,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,63,0,-6,81.846451,0,0,0,86,3,1,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,0,1,48.48,49.080002,42.310001,28.01,5,1,1,0,0,7,2,1,490,1151119.1,0,0,1471.6594 -4066,5025,9146,9145,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,0,1,0,7.4371858,7.1744266,1,0,-9,63,0,6,126.57093,0,0,0,80,3,4,3,3,1,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0858059,0,0,42.310001,28.01,48.48,49.080002,4,1,1,0,0,7,2,1,490,1151119.1,0,0,1471.6594 -4067,5026,9147,9148,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,9.3491936,9.0875988,0,1,0,-9,43,0,-4,-13.488772,0,0,0,65,3,4,1,3,3,2019,1,2,11,2,50,63,15,1,0,1,0,32.964287,32.964287,0,0,0,0,0,0,0,2,1,1,0,3.9385412,0,4.8598266,3,50.970001,53.419998,58.400002,51.639999,6,1,1,0,0,9,5,1,1212.5,3561929.5,0,0,10337.951 -4067,5026,9148,9147,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,0,4,8.3267183,8.4680252,0,1,0,-9,43,0,4,61.855534,0,0,0,61,2,4,1,3,3,2019,1,1,8,0,20,20,15,1,0,1,0,22.394833,22.394833,0,0,0,0,0,0,0,2,1,1,0,3.7280395,0,0,3,58.400002,51.639999,50.970001,53.419998,6,1,1,0,0,9,5,1,1212.5,3561929.5,0,0,10337.951 -4068,5027,9149,9150,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.3614416,8.4520264,0,1,0,-9,9,0,-5,-43.258545,0,0,1,38,1,4,1,1,1,2019,1,2,12,1,42,47,15,1,0,1,0,13.27077,13.27077,0,0,0,0,0,0,0,0,0,0,0,3.057148,0,0,0,43.48,60.970001,51.830002,57.200001,5,1,1,0,0,7,5,1,728,102308.09,0,0,4030.2139 -4068,5027,9150,9149,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,0,4,8.3208485,8.2883244,0,1,0,-9,9,0,5,33.117439,0,0,0,33,1,4,1,-9,-9,2019,1,1,9,2,38,40,15,1,0,1,0,11.163416,11.163416,0,0,0,0,0,0,0,0,0,0,0,3.3521621,0,0,0,51.830002,57.200001,43.48,60.970001,6,1,1,0,0,7,5,1,728,102308.09,0,0,4030.2139 -4069,5028,9151,9152,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,8.3655634,8.2771387,1,0,-9,51,0,3,-105.55914,0,0,0,69,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.9081626,8.5311909,0,3,62.490002,55.09,58.049999,54.52,6,1,1,0,0,7,4,1,764,1222828,0,0,3988.658 -4069,5028,9152,9151,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,5,0,6.9371362,6.7425828,1,0,-9,51,0,-3,2.6044116,0,0,0,72,1,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2350707,0,0,58.049999,54.52,62.490002,55.09,7,1,1,0,0,7,4,1,764,1222828,0,0,3988.658 -4070,5029,9153,9154,-9,-9,2,1,0,30,1,0,0,0,1,-9,5,1,0,0,5,8.3017569,8.6821804,0,1,0,-9,4,0,3,-76.706856,0,0,1,27,2,4,1,-9,-9,2019,1,1,12,0,41,41,15,1,0,1,0,11.332436,11.332436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,11,5,1,450,230456.91,0,0,3184.3596 -4070,5029,9154,9153,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,4,8.3369284,8.7201576,0,1,0,-9,4,0,-3,43.035824,0,1,0,30,1,5,1,2,2,2019,1,2,13,2,65,55,15,1,0,1,0,8.0975208,8.0975208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,11,5,1,450,230456.91,0,0,3184.3596 -4071,5030,9155,9156,-9,-9,3,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.7371531,7.7585721,3.0651131,1,0,-9,3,0,-2,29.851139,0,0,0,57,1,5,1,-9,-9,2019,1,1,8,1,19,19,15,1,0,1,0,14.496784,14.496784,0,0,0,0,0,0,0,0,0,0,0,3.4155605,3.4909179,0,0,53.119999,33.529999,59.43,58.049999,6,1,1,0,0,12,5,1,427,2390822,0,0,4187.8184 -4071,5030,9156,9155,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,0,5,7.9787951,8.8890305,7.9986229,1,0,-9,3,0,2,-36.366901,0,0,0,55,2,3,1,2,2,2019,1,3,6,0,7,5,15,1,0,1,0,50.077908,50.077908,0,0,0,0,0,0,0,0,0,0,0,3.1560678,8.1863613,0,0,59.43,58.049999,53.119999,33.529999,7,1,1,0,0,12,5,1,427,2390822,0,0,4187.8184 -4071,5031,9157,-9,9155,9156,4,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,8.0848541,8.3675327,0,3,0,0,0,-9,0,-973.89026,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,21,8,39,42,15,1,1,-9,1,12.286687,12.286687,0,0,0,0,0,0,0,0,0,0,0,1.4865241,0,0,0,36.040001,32.389999,-9,-9,4,1,1,0,1,12,4,1,264,221413.47,0,0,1573.8495 -4071,5032,9158,-9,9155,9156,2,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.6145811,8.7094412,0,3,0,0,0,-9,0,-996.14423,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,37,40,15,1,0,-9,1,15.085473,15.085473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,57.549999,-9,-9,6,1,1,0,0,12,5,1,595,-70809.211,0,0,2414.8872 -4072,5033,9159,9160,-9,-9,2,1,1,56,1,0,0,0,1,-9,4,3,0,0,3,0,8.4523191,8.1083899,1,0,-9,8,0,-1,-57.149479,0,0,0,57,1,4,3,2,3,2019,4,1,7,0,0,37,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8512123,8.6018047,0,0,48.450001,57.490002,35.48,51.259998,5,1,1,0,0,1,5,1,502.5,5361614,0,0,5019.8174 -4072,5033,9160,9159,-9,-9,1,1,0,57,1,0,0,0,1,-9,3,3,0,0,4,8.7800684,8.7458754,0,1,0,-9,8,0,1,-9.5566988,0,0,0,56,1,3,3,2,2,2019,4,2,18,7,38,40,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.48,51.259998,48.450001,57.490002,5,1,1,1,0,1,5,1,502.5,5361614,0,0,5019.8174 -4073,5034,9161,-9,9162,-9,1,1,1,49,2,0,0,0,3,-9,2,1,0,0,3,8.1081638,8.2646198,0,3,0,0,0,-9,0,-1085.6229,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,2,39,46,15,1,0,-9,1,13.436982,13.436982,0,0,0,0,0,0,0,7,1,1,0,0,0,10.651932,3,38.630001,56.700001,-9,-9,4,1,1,0,0,8,4,1,229,402350.19,0,0,2314.4248 -4073,5035,9162,-9,-9,-9,2,1,0,75,3,0,0,0,3,-9,4,3,0,1,3,0,5.795228,6.1239738,3,0,0,0,-9,0,-1000.6066,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,4.6469622,0,0,12.37987,0,0,0,1,1,0,0,5.6647253,0,0,51,46,-9,-9,6,1,1,0,0,8,2,1,883,548741.88,0,0,356.983 -4074,5036,9163,9164,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,0,4,8.9008408,9.2617321,0,1,0,-9,14,0,-5,45.77438,0,0,1,42,2,4,1,2,3,2019,1,1,8,0,45,41,15,1,0,1,0,20.081146,20.081146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,60.119999,54.799999,5,1,1,0,0,10,5,1,852,1801833,0,0,4839.0415 -4074,5036,9164,9163,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,0,4,8.2551298,7.8651061,0,1,0,-9,14,0,5,122.98301,0,0,0,37,1,4,1,2,3,2019,1,2,6,0,45,41,15,1,0,1,0,8.4677601,8.4677601,0,0,0,0,0,0,0,0,0,0,0,3.8099871,0,0,0,60.119999,54.799999,57.16,56.150002,5,1,1,0,0,10,5,1,852,1801833,0,0,4839.0415 -4075,5037,9165,9166,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,0,4,7.8298845,7.5624595,0,1,0,-9,5,0,2,51.864548,-9,0,0,48,2,3,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,5.9682746,5.9682746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,48.98,57.220001,6,4,1,0,0,13,5,1,1524.5,89645.672,0,0,3638.2463 -4075,5037,9166,9165,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.9970722,9.158289,0,1,0,-9,5,0,-2,-12.405438,0,0,0,50,3,4,1,3,3,2019,1,2,9,0,37,40,15,1,0,1,0,21.57403,21.57403,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.307717,3,48.98,57.220001,53,54,5,1,1,0,0,13,5,1,1524.5,89645.672,0,0,3638.2463 -4075,5038,9167,-9,9166,9165,3,1,1,23,2,0,0,0,2,-9,7,2,0,0,4,7.3851223,7.1531143,0,3,0,0,0,-9,0,-910.98181,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,14,38,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,13,3,1,798,10221.816,0,0,-405.59647 -4075,5039,9168,-9,9166,9165,4,1,1,18,3,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1037.5957,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,1,1,626,-78183.289,0,0,511.9588 -4076,5040,9169,9170,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.2674708,6.2479396,1,0,-9,58,0,-3,-6.2711434,0,0,0,79,1,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8165107,6.4294252,.48938322,3,57.09,46.700001,61.43,48.880001,6,1,1,0,0,2,3,1,1883.5,1653003,0,0,4060.7158 -4076,5040,9170,9169,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,8.2646866,7.8089833,1,0,-9,58,0,3,43.417473,0,0,0,76,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1681132,7.8795686,0,3,61.43,48.880001,57.09,46.700001,7,1,1,0,0,2,3,1,1883.5,1653003,0,0,4060.7158 -4077,5041,9171,9172,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-2,-61.740772,0,0,0,74,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3214889,0,0,0,50.07,47.32,52,54.509998,7,1,1,0,0,2,3,1,1467,2116029,0,0,2553.1831 -4077,5041,9172,9171,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,3,0,7.6032343,7.9365902,1,0,-9,6,0,2,-145.27783,0,0,0,72,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8668144,8.0828342,0,0,52,54.509998,50.07,47.32,6,1,1,0,0,2,3,1,1467,2116029,0,0,2553.1831 -4078,5042,9173,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,4,3,0,0,4,0,8.3277988,8.3784847,3,0,0,0,-9,0,-978.7489,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,8.7798891,7.6742611,8.743104,3,58.150002,52.91,-9,-9,7,1,1,0,0,9,5,1,1049,1279224.9,0,0,3135.4109 -4079,5043,9174,9175,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,5,0,3,0,0,0,0,69,2,2,3,3,-9,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.8839998,1,43.990002,36.779999,52.060001,34.720001,3,1,1,0,0,5,1,1,1121.5,-26738.09,0,0,1563.6984 -4079,5043,9175,9174,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,5,0,-3,0,0,0,0,72,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2627088,0,0,0,52.060001,34.720001,43.990002,36.779999,6,1,1,0,0,5,1,1,1121.5,-26738.09,0,0,1563.6984 -4080,5044,9176,9177,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.1628227,6.9022002,1,0,-9,7,0,0,-4.8282948,0,0,0,65,1,4,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0820942,0,0,50,47,57.16,56.150002,5,1,1,0,0,10,3,1,1296.5,1512386.8,0,0,5222.8164 -4080,5044,9177,9176,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.9005694,8.0728045,1,0,-9,39,0,0,7.0932865,0,0,0,65,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1309743,7.7632923,2.7267768,3,57.16,56.150002,50,47,5,1,1,0,0,10,3,1,1296.5,1512386.8,0,0,5222.8164 -4081,5045,9178,9179,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,0,4,8.1308804,8.1045637,0,2,0,-9,7,0,0,-39.370682,0,0,0,30,1,3,1,1,1,2019,1,2,10,0,27,37,15,1,0,1,0,16.239794,16.239794,0,0,0,0,0,0,0,0,1,1,0,1.4383082,0,0,0,54.740002,57.220001,41.470001,58.080002,6,1,1,0,0,2,4,1,777.66669,-8863.4463,0,0,3373.6431 -4081,5045,9179,9178,-9,-9,2,1,0,30,1,1,1,0,1,-9,2,1,0,0,3,8.290329,8.1976471,0,2,0,-9,7,0,0,-128.88811,0,0,1,30,1,4,1,-9,-9,2019,1,1,15,4,60,60,15,1,1,1,0,7.4261532,7.4261532,0,0,0,0,0,0,0,0,1,1,0,2.0692492,0,0,0,41.470001,58.080002,54.740002,57.220001,6,1,1,0,0,2,4,1,777.66669,-8863.4463,0,0,3373.6431 -4081,5045,9180,-9,9179,9178,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.1321,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,777.66669,-8863.4463,0,0,3373.6431 -4082,5046,9181,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,5,0,5.512115,5.7617421,3,0,0,0,-9,0,-1019.6014,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6571569,5.7825494,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,13,2,1,647,187847.2,0,0,832.25726 -4083,5047,9182,-9,9187,9183,5,1,1,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.9527,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,1,633.5,160370.27,0,0,3962.5281 -4083,5047,9183,9187,-9,-9,3,1,1,41,1,1,4,0,1,-9,8,3,1,1,1,0,0,0,2,0,-9,7,0,3,79.412354,0,0,0,38,1,3,3,-9,-9,2019,4,1,19,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.152288,3,48.959999,15.87,44.130001,51.34,3,1,1,0,0,2,2,1,633.5,160370.27,0,0,3962.5281 -4083,5047,9184,-9,9187,9183,2,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.52319,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,1,633.5,160370.27,0,0,3962.5281 -4083,5047,9185,-9,9187,9183,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.4421,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,2,1,633.5,160370.27,0,0,3962.5281 -4083,5047,9186,-9,9187,9183,4,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.91425,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,1,633.5,160370.27,0,0,3962.5281 -4083,5047,9187,9183,-9,-9,1,1,0,38,1,1,4,0,1,-9,6,3,0,1,3,0,4.9427743,5.4831104,2,0,-9,7,0,-3,-11.814436,0,0,1,41,1,1,3,2,1,2019,4,3,12,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.5839381,0,75.881554,2,44.130001,51.34,48.959999,15.87,5,1,1,0,0,2,2,1,633.5,160370.27,0,0,3962.5281 -4084,5048,9188,-9,9190,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-873.57556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,11,1,0,510.25,59541.609,0,0,1552.0645 -4084,5048,9189,-9,9190,-9,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1049.7123,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,11,1,0,510.25,59541.609,0,0,1552.0645 -4084,5048,9190,-9,-9,-9,1,1,0,36,2,0,3,0,2,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-990.87274,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.49,49.119999,-9,-9,4,1,1,1,0,11,1,0,510.25,59541.609,0,0,1552.0645 -4084,5048,9191,-9,9190,-9,2,1,1,17,2,0,3,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1080.6335,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,-9,-9,5,1,1,0,0,11,1,0,510.25,59541.609,0,0,1552.0645 -4085,5049,9192,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,2,1,0,0,4,8.7357635,8.6213551,0,3,0,-9,0,-9,0,-905.08026,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,0,15,1,0,-9,0,12.616772,12.616772,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,608,254708.22,0,0,3499.26 -4086,5050,9193,-9,9195,9194,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.55396,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,942.66669,84281.031,0,0,2837.2083 -4086,5050,9194,9195,-9,-9,1,1,1,51,1,0,1,0,3,-9,2,1,0,0,3,8.1328278,7.9956126,0,2,0,-9,11,0,-3,4.8311272,0,0,0,54,1,4,3,3,3,2019,2,2,9,0,40,40,15,1,0,3,0,9.3842278,9.3842278,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.41,56.150002,54.790001,55.860001,5,1,1,0,0,2,3,1,942.66669,84281.031,0,0,2837.2083 -4086,5050,9195,9194,-9,-9,2,1,0,54,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,3,76.042618,0,0,0,51,3,3,1,1,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.790001,55.860001,51.41,56.150002,6,1,1,0,0,2,3,1,942.66669,84281.031,0,0,2837.2083 -4087,5051,9196,-9,-9,-9,1,1,1,47,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1014.3128,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,31,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.869999,28.33,-9,-9,1,1,1,0,1,10,1,0,153,0,0,0,555.99878 -4088,5052,9197,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,0,3,0,6.8256884,6.9154491,3,0,-9,0,-9,0,-995.19684,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7997851,0,0,63.759998,31.299999,-9,-9,6,1,1,0,0,12,2,0,891,393260.31,0,0,189.60323 -4089,5053,9198,9202,-9,-9,1,1,1,41,1,0,3,0,2,-9,2,1,0,0,3,9.1582661,8.8944826,0,2,0,1,1,-9,1,135.36908,0,0,0,40,2,4,1,-9,2,2019,1,2,17,5,42,42,15,1,1,1,0,26.624084,26.624084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.970001,41.169998,49,55,4,1,1,0,1,5,4,0,505.39999,407700.47,0,0,4768.9634 -4089,5053,9199,-9,9202,9198,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1017.2827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,0,505.39999,407700.47,0,0,4768.9634 -4089,5053,9200,-9,9202,9198,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1080.4528,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,5,4,0,505.39999,407700.47,0,0,4768.9634 -4089,5053,9201,-9,9202,9198,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1072.0549,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,5,4,0,505.39999,407700.47,0,0,4768.9634 -4089,5053,9202,9198,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,0,4,7.5674448,7.5296831,0,2,0,-9,1,-9,-1,-102.59818,-9,0,1,41,2,3,1,-9,-9,2019,1,1,10,1,30,0,15,1,0,1,0,9.4137001,9.4137001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,45.970001,41.169998,6,4,1,0,0,5,4,0,505.39999,407700.47,0,0,4768.9634 -4090,5054,9203,9204,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,2,-20.650011,0,0,0,69,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,49,47,5,1,1,0,0,13,2,1,332.5,567865.13,0,0,2379.7437 -4090,5054,9204,9203,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.7453103,6.5236712,1,0,-9,10,0,-2,-26.870626,0,0,0,71,2,4,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4167347,0,0,49,47,49.459999,56.91,5,1,1,0,0,13,2,1,332.5,567865.13,0,0,2379.7437 -4091,5055,9205,-9,9206,-9,2,1,1,17,2,0,1,0,2,-9,7,2,0,0,3,5.5049577,5.6724162,4.606823,4,0,0,0,-9,0,-994.05969,1,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7088251,0,0,0,46.889999,54.32,-9,-9,4,1,1,0,0,2,5,1,718.5,331329.09,0,0,2777.271 -4091,5055,9206,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,0,4,8.7967491,8.7672434,7.196126,4,0,0,0,-9,0,-1052.4419,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,42,15,1,0,-9,0,17.381559,17.381559,0,0,0,0,0,0,0,2,1,1,0,6.9240375,0,4.6712065,3,54.450001,56.220001,-9,-9,6,1,1,0,0,2,5,1,718.5,331329.09,0,0,2777.271 -4092,5056,9207,9210,-9,-9,1,1,0,30,1,0,2,0,2,-9,2,1,0,0,3,7.2659755,7.108542,0,2,0,-9,9,0,-2,128.04333,0,0,1,32,2,5,1,-9,-9,2019,1,2,15,3,24,25,15,1,0,1,0,9.1260529,9.1260529,0,0,0,0,0,0,0,0,1,1,0,1.3125997,0,0,0,36.869999,58.959999,59.43,58.049999,6,1,1,0,0,9,4,1,659.75,277527.63,0,0,3699.2595 -4092,5056,9208,-9,9207,9210,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.0959,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,659.75,277527.63,0,0,3699.2595 -4092,5056,9209,-9,9207,9210,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1130.4142,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,659.75,277527.63,0,0,3699.2595 -4092,5056,9210,9207,-9,-9,2,1,1,32,1,0,2,0,2,-9,2,1,0,0,5,8.9143295,9.1581001,0,2,0,-9,9,0,2,13.956369,0,0,0,30,2,3,1,-9,-9,2019,1,1,6,0,37,40,15,1,0,1,0,26.567713,26.567713,0,0,0,0,0,0,0,0,1,1,0,.3600612,0,0,0,59.43,58.049999,36.869999,58.959999,2,1,1,0,0,9,4,1,659.75,277527.63,0,0,3699.2595 -4093,5057,9211,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,5.8554907,6.1697025,3,0,0,0,-9,0,-945.56323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.0478272,32.693939,3,42.16,46.740002,-9,-9,6,1,1,0,1,10,2,0,308,197708.09,0,0,498.20175 -4094,5058,9212,9213,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,8.2176619,8.2490377,1,0,-9,8,0,-1,-4.0808344,0,0,0,72,1,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6603556,7.8981233,0,0,53.98,50.869999,46.099998,59.990002,6,1,1,0,0,8,4,1,584,1362326.3,0,0,3623.4482 -4094,5058,9213,9212,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,4,0,7.2242479,7.2904429,1,0,-9,8,0,1,88.67382,0,0,0,71,1,3,3,3,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.7570963,7.6304555,39.709122,3,46.099998,59.990002,53.98,50.869999,7,1,1,0,0,8,4,1,584,1362326.3,0,0,3623.4482 -4095,5059,9214,-9,9220,9216,7,1,1,1,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1024.5638,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,1,0,480.85715,315660.41,0,0,2137.9568 -4095,5059,9215,-9,9220,9216,6,1,1,13,2,1,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-986.38879,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,8,1,0,480.85715,315660.41,0,0,2137.9568 -4095,5059,9216,9220,-9,-9,1,1,1,44,1,1,5,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,21,0,7,0,0,0,0,37,3,4,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.544086,1,52,55,49,55,5,2,3,1,1,8,1,0,480.85715,315660.41,0,0,2137.9568 -4095,5059,9217,-9,9220,9216,3,1,1,17,2,1,5,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-866.6076,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,6,2,3,0,0,8,1,0,480.85715,315660.41,0,0,2137.9568 -4095,5059,9218,-9,9220,9216,5,1,0,14,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.7,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,1,0,480.85715,315660.41,0,0,2137.9568 -4095,5059,9219,-9,9220,9216,4,1,0,16,2,1,5,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1011.9049,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,2,3,0,0,8,1,0,480.85715,315660.41,0,0,2137.9568 -4095,5059,9220,9216,-9,-9,2,1,0,37,1,1,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-7,0,0,0,1,44,3,4,3,3,3,2019,4,1,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,5,2,3,0,0,8,1,0,480.85715,315660.41,0,0,2137.9568 -4096,5060,9221,-9,9222,9225,3,1,1,17,2,0,3,1,2,0,7,2,0,0,5,0,5.2109432,5.0404525,2,0,0,0,-9,0,-882.96674,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3691554,0,0,0,54.099998,59.110001,-9,-9,6,2,3,0,0,6,4,1,693,1646779.4,0,0,5815.9067 -4096,5060,9222,9225,-9,-9,2,1,0,49,1,0,3,0,3,-9,2,1,0,0,4,8.7341099,8.8013859,0,2,0,-9,21,0,-1,42.10347,0,0,0,50,3,4,1,2,2,2019,1,1,13,1,33,23,15,1,0,1,0,20.938658,20.938658,0,0,0,0,0,0,0,2,1,1,0,8.4746084,0,8.5783663,3,44.669998,47.09,48.990002,44.869999,6,2,3,0,0,6,4,1,693,1646779.4,0,0,5815.9067 -4096,5060,9223,-9,9222,9225,5,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-905.11237,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,6,4,1,693,1646779.4,0,0,5815.9067 -4096,5060,9224,-9,9222,9225,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1040.005,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,6,4,1,693,1646779.4,0,0,5815.9067 -4096,5060,9225,9222,-9,-9,1,1,1,50,1,0,3,0,3,-9,2,1,0,0,4,8.3785658,7.9164076,0,2,0,-9,21,0,1,-49.240974,0,0,0,49,3,4,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,10.090831,10.090831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.990002,44.869999,44.669998,47.09,5,2,3,0,0,6,4,1,693,1646779.4,0,0,5815.9067 -4097,5061,9226,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,8.0612049,7.911345,0,3,0,0,0,-9,0,-1047.4902,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,15,38,15,1,0,-9,0,27.542719,27.542719,0,0,0,0,0,0,0,0,0,0,0,.23190437,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,9,4,0,1022,-117521.13,0,0,752.75433 -4098,5062,9227,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,3,8.6271315,8.6912107,0,4,0,0,0,-9,0,-931.2309,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,15.178535,15.178535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,3,4,0,0,7,4,1,336.5,624148.13,0,0,1907.9873 -4098,5062,9228,-9,9227,-9,3,1,0,17,2,0,1,0,2,-9,7,2,0,0,4,6.0652747,6.3209429,0,4,0,0,0,-9,0,-1014.0734,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,7,4,1,336.5,624148.13,0,0,1907.9873 -4098,5063,9229,-9,9227,-9,2,1,1,24,2,0,1,0,2,-9,2,1,0,0,3,7.8563957,7.6255255,0,3,0,0,0,-9,0,-1021.3798,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,46,34,15,1,0,-9,1,5.4995203,5.4995203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,3,4,0,0,7,3,1,137,50567.473,0,0,1157.3357 -4099,5064,9230,9231,-9,-9,2,1,0,59,1,0,1,0,1,-9,2,1,0,0,4,8.1344995,8.0958586,0,2,0,-9,39,0,-1,-167.44301,0,0,0,60,1,4,3,3,2,2019,2,1,9,0,30,43,15,1,0,4,0,14.383862,14.383862,0,0,0,0,0,0,0,0,0,0,0,4.725812,0,0,0,50.110001,54.040001,61.119999,51.57,6,1,1,0,0,5,4,1,536,1615223.3,0,0,3591.999 -4099,5064,9231,9230,-9,-9,1,1,1,60,1,0,1,0,1,-9,4,3,0,0,4,0,8.3817205,8.4916277,2,0,-9,8,0,1,-6.784904,0,0,0,59,1,4,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4126797,0,0,61.119999,51.57,50.110001,54.040001,6,1,1,0,0,5,4,1,536,1615223.3,0,0,3591.999 -4099,5065,9232,-9,9230,9231,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-994.49939,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.279999,65.080002,-9,-9,5,1,1,0,1,5,4,1,203,183142.3,0,0,0 -4100,5066,9233,-9,9234,9236,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.2439,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,973.75,-23283.736,0,0,2231.8838 -4100,5066,9234,9236,-9,-9,1,1,0,40,1,1,2,0,2,-9,2,1,0,0,4,7.6968112,8.0477028,0,2,0,-9,7,0,7,-165.29172,0,0,1,33,3,5,1,2,2,2019,1,2,12,0,30,30,15,1,0,1,0,8.8072987,8.8072987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.599998,53.740002,44.060001,60.139999,6,1,1,0,0,7,4,1,973.75,-23283.736,0,0,2231.8838 -4100,5066,9235,-9,9234,9236,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.111,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,1,973.75,-23283.736,0,0,2231.8838 -4100,5066,9236,9234,-9,-9,2,1,1,33,1,1,2,0,3,-9,2,1,0,0,5,8.2286959,7.9459014,0,2,0,-9,7,0,-7,-167.46129,0,0,0,40,2,4,1,2,2,2019,1,1,10,0,55,50,15,1,0,1,0,7.5104985,7.5104985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.060001,60.139999,41.599998,53.740002,6,1,1,0,0,7,4,1,973.75,-23283.736,0,0,2231.8838 -4101,5067,9237,-9,-9,-9,1,1,0,40,3,0,4,0,1,-9,2,1,0,0,5,8.7872934,8.9997768,7.2572236,4,0,0,0,-9,0,-1044.7915,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,45,45,15,1,0,-9,0,15.449619,15.449619,0,0,0,0,0,0,0,0,1,1,0,7.2631564,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,12,4,1,609.20001,418530.44,0,0,3231.8877 -4101,5067,9238,-9,9237,-9,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1223.8542,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,12,4,1,609.20001,418530.44,0,0,3231.8877 -4101,5067,9239,-9,9237,-9,5,1,1,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-975.05341,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,4,1,609.20001,418530.44,0,0,3231.8877 -4101,5067,9240,-9,9237,-9,2,1,0,16,2,0,4,1,2,-9,7,2,0,0,5,4.7623792,4.2090864,0,4,0,0,0,-9,0,-1004.2896,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,4,1,609.20001,418530.44,0,0,3231.8877 -4101,5067,9241,-9,9237,-9,4,1,1,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-910.04559,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,4,1,609.20001,418530.44,0,0,3231.8877 -4102,5068,9242,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-989.44745,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,3,3,4,0,1,9,1,0,296,-2497.5457,0,0,1159.3214 -4103,5069,9243,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,4,7.0209608,7.2681074,0,4,0,0,0,-9,0,-1041.6555,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,16,0,15,1,0,-9,0,9.4861574,9.4861574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,8,2,1,229.5,-32447.508,0,0,1409.9857 -4103,5069,9244,-9,9243,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1015.518,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,2,1,229.5,-32447.508,0,0,1409.9857 -4104,5070,9245,9246,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,6.4926209,6.2993102,1,0,-9,6,0,2,14.242742,0,0,0,73,3,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.618597,0,0,43.5,52.880001,57.779999,40.889999,6,1,1,0,0,4,2,1,383.5,318761.88,0,0,1405.0359 -4104,5070,9246,9245,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-2,14.737737,0,0,0,75,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.779999,40.889999,43.5,52.880001,7,1,1,0,0,4,2,1,383.5,318761.88,0,0,1405.0359 -4105,5071,9247,9248,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.3378572,8.7711964,7.019125,1,0,-9,37,0,1,31.171497,0,0,0,56,2,3,1,3,3,2019,1,1,8,0,40,40,15,1,0,1,0,15.903707,15.903707,0,0,0,0,0,0,0,0,0,0,0,3.7079403,7.2702098,0,0,51.830002,57.200001,43.950001,51.240002,6,1,1,0,0,5,5,1,958.5,2457073.5,0,0,3125.3828 -4105,5071,9248,9247,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.6339078,7.4953504,5.628469,1,0,-9,37,0,-1,4.5133605,0,0,0,57,1,4,1,2,2,2019,1,2,17,5,25,27,15,1,1,1,0,7.8150101,7.8150101,0,0,0,0,0,0,0,0,0,0,0,1.968895,5.6381841,0,0,43.950001,51.240002,51.830002,57.200001,5,1,1,0,0,5,5,1,958.5,2457073.5,0,0,3125.3828 -4105,5072,9249,-9,9248,9247,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,7.9663253,8.2228451,0,3,0,0,0,-9,0,-1120.0934,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,0,15,1,0,-9,1,11.751049,11.751049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.630001,59.720001,-9,-9,6,1,1,0,0,5,4,1,260,-32482.279,0,0,1843.9551 -4105,5073,9250,-9,9248,9247,4,1,0,19,2,0,0,0,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-959.63635,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,39.169998,-9,-9,6,1,1,0,0,5,1,1,323,0,0,0,1192.8073 -4106,5074,9251,-9,9253,-9,2,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-866.62518,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,2,3,1,334,-46262.645,0,0,2728.2556 -4106,5074,9252,-9,9253,-9,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-840.28076,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,3,1,334,-46262.645,0,0,2728.2556 -4106,5074,9253,-9,-9,-9,1,1,0,41,3,0,3,0,1,-9,2,1,0,0,3,8.1530714,7.9740815,6.2361937,4,0,0,0,-9,0,-907.12616,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,24,27,15,1,0,-9,0,13.788608,13.788608,0,0,0,0,0,0,0,0,1,1,0,6.4995656,0,0,0,40.889999,46.150002,-9,-9,6,1,1,0,0,2,3,1,334,-46262.645,0,0,2728.2556 -4106,5074,9254,-9,9253,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1016.6555,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,334,-46262.645,0,0,2728.2556 -4107,5075,9255,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,2,0,15,0,0,0,0,-9,-9,-9,-9,2,2,2019,4,2,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,40.360001,54.200001,57.490002,5,1,1,0,0,13,2,0,183,-83315.953,0,0,587.11365 -4108,5076,9256,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1005.5421,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5321407,0,0,0,52,44,-9,-9,6,1,1,0,0,6,1,1,774,15528.394,0,0,1261.5492 -4109,5077,9257,9258,-9,-9,1,1,1,39,1,1,2,0,2,-9,2,1,0,0,4,8.18717,8.6281185,0,2,0,-9,6,0,-1,92.54261,0,0,0,40,1,4,1,2,-9,2019,1,2,13,2,65,60,15,1,0,1,0,9.7855396,9.7855396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.759998,55.720001,34.130001,61.389999,6,1,1,0,0,10,4,1,836,86535.453,0,0,2484.4287 -4109,5077,9258,9257,-9,-9,2,1,0,40,1,1,2,0,1,-9,1,1,0,0,4,7.256433,7.6067548,0,2,0,-9,6,0,1,-86.505287,0,0,1,39,2,4,1,2,2,2019,1,1,11,2,14,20,15,1,0,1,0,15.373742,15.373742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.130001,61.389999,37.759998,55.720001,6,1,1,0,1,10,4,1,836,86535.453,0,0,2484.4287 -4109,5077,9259,-9,9258,9257,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.6338,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,836,86535.453,0,0,2484.4287 -4109,5077,9260,-9,9258,9257,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.56116,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,836,86535.453,0,0,2484.4287 -4110,5078,9261,9262,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,2,9.5967655,9.2975874,0,1,0,-9,31,0,5,4.4479337,0,0,0,58,2,5,1,2,2,2019,1,1,11,1,45,52,15,1,0,1,0,28.088909,28.088909,0,0,0,0,0,0,0,2,0,0,0,4.7356172,0,11.503513,3,59.560001,21.75,57.060001,57.759998,5,1,1,0,0,6,5,1,606,665501.88,0,0,5323.0713 -4110,5078,9262,9261,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,5,7.9756026,8.2017374,0,1,0,-9,31,0,-5,-26.561039,0,0,0,63,1,2,1,2,2,2019,1,2,6,0,38,40,15,1,0,1,0,8.3615227,8.3615227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,59.560001,21.75,6,1,1,0,0,6,5,1,606,665501.88,0,0,5323.0713 -4111,5079,9263,9264,-9,-9,2,1,1,62,1,0,1,0,3,-9,2,1,0,1,3,6.1356163,7.0852661,6.9210877,2,0,-9,19,0,8,-135.6787,0,0,0,54,2,1,3,2,3,2019,2,1,14,2,8,8,15,1,0,3,0,6.8667302,6.8667302,0,0,0,0,0,0,0,118,1,1,0,4.9196534,6.5810738,124.26212,1,39.25,53.849998,23.690001,24.459999,3,1,1,0,0,4,2,0,1265.5,362351.63,0,0,2023.2802 -4111,5079,9264,9263,-9,-9,1,1,0,54,1,0,1,0,2,-9,8,3,1,1,1,0,6.0099459,6.3117905,2,0,-9,19,0,-8,-125.54309,0,0,0,62,3,3,1,2,2,2019,3,2,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90219319,6.4217119,0,0,23.690001,24.459999,39.25,53.849998,3,1,1,0,0,4,2,0,1265.5,362351.63,0,0,2023.2802 -4112,5080,9265,9266,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,5,8.2674417,8.4102983,0,1,0,-9,6,0,-4,-114.60815,0,0,0,37,1,5,1,-9,-9,2019,1,1,5,0,41,0,15,1,0,1,0,10.689399,10.689399,0,0,0,0,0,0,0,0,0,0,0,3.2536922,0,0,0,57.060001,57.759998,39.080002,60.830002,7,1,1,0,0,6,4,1,777.5,88700.344,0,0,3253.0857 -4112,5080,9266,9265,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,5,7.7165952,7.6059189,0,1,0,-9,6,0,4,57.98288,0,0,1,33,1,5,1,2,2,2019,1,2,11,2,31,32,15,1,0,1,0,7.7263422,7.7263422,0,0,0,0,0,0,0,0,0,0,0,3.4015758,0,0,0,39.080002,60.830002,57.060001,57.759998,6,1,1,0,0,6,4,1,777.5,88700.344,0,0,3253.0857 -4113,5081,9267,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,7.1195469,6.6979656,3,0,0,0,-9,0,-1005.6554,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7577324,0,0,34.049999,44.25,-9,-9,3,1,1,0,0,9,2,1,91,717988.38,0,0,2338.2788 -4114,5082,9268,9269,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,0,3,8.7633743,8.9286909,0,1,0,-9,35,0,5,-33.538212,0,0,0,54,3,3,1,3,3,2019,1,1,10,1,40,40,15,1,0,1,0,23.248285,23.248285,0,0,0,0,0,0,0,0,0,0,0,7.9508519,0,0,0,50,49,54.959999,53.169998,5,1,1,0,0,2,5,1,965,1785270.3,0,0,5240.1387 -4114,5082,9269,9268,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,3,8.710248,8.7537775,0,1,0,-9,35,0,-5,16.890789,0,0,0,59,3,3,1,3,3,2019,1,2,9,1,35,35,15,1,0,1,0,20.955179,20.955179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,50,49,5,1,1,0,0,2,5,1,965,1785270.3,0,0,5240.1387 -4115,5083,9270,9271,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,5.7074866,6.0897017,1,0,-9,47,0,5,-27.339479,0,0,0,63,2,3,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7325544,5.8920884,0,0,62.66,52.400002,50,47,7,2,3,0,0,5,3,1,528.5,428837.78,0,0,1537.0464 -4115,5083,9271,9270,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,7.4835634,7.601263,0,1,0,-9,47,0,-5,116.21999,0,0,0,68,3,3,3,3,3,2019,2,1,11,2,35,36,15,1,0,4,0,6.0527549,6.0527549,0,0,0,0,0,0,0,0,1,1,0,5.1487446,0,0,0,50,47,62.66,52.400002,5,2,3,0,0,5,3,1,528.5,428837.78,0,0,1537.0464 -4116,5084,9272,9273,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.5291157,8.2743587,0,1,0,-9,5,0,-5,-27.911682,0,0,0,51,2,3,1,-9,-9,2019,1,1,11,0,35,37,15,1,0,1,0,14.423131,14.423131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,23.51,55.400002,6,1,1,0,0,9,5,1,461,626631.19,0,0,4660.5923 -4116,5084,9273,9272,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.402647,8.619565,0,1,0,-9,5,0,5,7.6331367,0,0,0,46,2,3,1,3,3,2019,1,2,19,7,59,48,15,1,1,1,0,7.5300746,7.5300746,0,0,0,0,0,0,0,0,0,0,0,7.534534,0,0,0,23.51,55.400002,54.959999,53.169998,3,1,1,0,0,9,5,1,461,626631.19,0,0,4660.5923 -4116,5085,9274,-9,9272,9273,3,1,0,22,2,0,0,1,2,0,7,2,0,0,4,7.2479072,7.5355783,6.2038746,3,0,0,0,-9,0,-965.59216,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4189243,0,0,0,50.110001,54.040001,-9,-9,6,1,1,0,0,9,3,1,778,-14452.004,0,0,-223.75027 -4117,5086,9275,9276,-9,-9,2,1,0,40,1,0,0,0,1,-9,2,1,0,0,3,8.3941927,8.4126587,0,1,0,-9,11,0,-3,33.078991,0,0,1,43,2,2,1,3,3,2019,1,1,13,1,53,53,15,1,0,1,0,9.9905615,9.9905615,0,0,0,0,0,0,0,0,0,0,0,4.4386444,0,0,0,40.650002,57.360001,40.310001,50.810001,4,2,3,0,0,9,4,1,1166.5,245635,0,0,925.22247 -4117,5086,9276,9275,-9,-9,1,1,1,43,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,11,0,3,-20.690077,0,0,0,40,1,3,1,2,1,2019,1,2,13,2,40,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.310001,50.810001,40.650002,57.360001,4,1,1,0,1,9,4,1,1166.5,245635,0,0,925.22247 -4118,5087,9277,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,4,3,0,0,3,0,8.1179571,8.1485128,3,0,0,0,-9,0,-1051.7129,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.111351,0,0,57.330002,53.459999,-9,-9,6,3,4,0,0,4,4,1,656,1491749.4,0,0,1762.3102 -4118,5088,9278,-9,9277,-9,2,1,0,22,2,0,0,0,1,1,2,1,0,0,4,7.8674049,7.7491589,0,3,0,0,0,-9,0,-1037.2365,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,38,0,15,1,0,-9,1,7.7999325,7.7999325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.130001,54.419998,-9,-9,5,4,2,0,0,4,3,1,85,102407.58,0,0,1300.8029 -4119,5089,9279,9280,-9,-9,1,1,0,19,1,0,0,1,2,0,7,2,0,0,1,0,5.6883025,5.0867872,1,0,-9,4,0,-5,5.3155513,-9,1,1,24,2,3,3,-9,-9,2019,4,2,16,6,0,0,15,2,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0883603,0,0,0,40.459999,31.870001,49.279999,50.189999,3,1,1,0,1,6,2,0,1203.5,-5397.6807,0,0,410.17413 -4119,5089,9280,9279,-9,-9,2,1,1,24,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,4,0,5,64.562645,0,1,0,19,2,1,2,-9,-9,2019,4,1,13,1,0,0,15,3,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4637687,0,0,0,49.279999,50.189999,40.459999,31.870001,6,1,1,1,1,6,2,0,1203.5,-5397.6807,0,0,410.17413 -4120,5090,9281,-9,9283,9282,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1072.0814,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,5,1,617.33331,664897.56,0,0,5287.1548 -4120,5090,9282,9283,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,5,9.569128,9.8279514,0,2,0,-9,26,0,1,-81.119026,0,0,0,44,2,5,3,2,2,2019,2,1,9,0,41,0,15,1,0,3,0,43.494637,43.494637,0,0,0,0,0,0,0,0,0,0,0,7.9946685,0,0,0,51.73,58.82,49.810001,59.639999,5,1,1,0,0,6,5,1,617.33331,664897.56,0,0,5287.1548 -4120,5090,9283,9282,-9,-9,1,1,0,44,1,0,1,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,26,0,-1,113.31985,0,0,1,45,1,5,1,2,2,2019,3,2,6,0,0,34,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8128686,0,0,0,49.810001,59.639999,51.73,58.82,7,1,1,1,0,6,5,1,617.33331,664897.56,0,0,5287.1548 -4121,5091,9284,9287,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,4,7.9754663,7.4689293,0,2,0,-9,8,0,8,-122.26945,0,0,0,39,1,4,1,2,2,2019,1,1,9,1,39,40,15,1,0,1,0,6.5883307,6.5883307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,30.59,64.25,6,3,4,0,0,10,4,1,701,708865.19,0,0,3516.7903 -4121,5091,9285,-9,9287,9284,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1000.3579,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,10,4,1,701,708865.19,0,0,3516.7903 -4121,5091,9286,-9,9287,9284,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-851.6322,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,4,1,701,708865.19,0,0,3516.7903 -4121,5091,9287,9284,-9,-9,1,1,0,39,1,0,3,0,1,-9,2,1,0,0,4,9.061121,9.1850605,0,2,0,-9,17,0,-8,-24.485167,0,0,1,47,1,4,1,1,1,2019,1,2,14,4,48,50,15,1,1,1,0,21.088598,21.088598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.59,64.25,52,55,6,1,1,0,0,10,4,1,701,708865.19,0,0,3516.7903 -4121,5091,9288,-9,9287,9284,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1170.1034,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,10,4,1,701,708865.19,0,0,3516.7903 -4122,5092,9289,-9,9290,-9,2,1,1,9,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-951.09906,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,6,4,0,306.5,432794.25,0,0,1912.3257 -4122,5092,9290,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,8,3,1,1,2,8.1395206,8.139163,0,3,0,0,0,-9,0,-1146.2996,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,18,18,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.4332395,3,15.69,40.59,-9,-9,3,4,2,0,0,6,4,0,306.5,432794.25,0,0,1912.3257 -4123,5093,9291,-9,-9,-9,1,1,0,53,2,0,1,0,3,-9,2,1,0,0,4,8.3273525,8.7059984,6.3120022,4,0,0,0,-9,0,-1159.834,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,40,40,15,1,1,-9,0,13.326396,13.326396,0,0,0,0,0,0,0,0,1,1,0,6.1171579,0,0,0,45.610001,47.59,-9,-9,5,1,1,0,0,2,4,1,458.5,3324901,0,0,2326.8647 -4123,5093,9292,-9,9291,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1065.58,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,2,4,1,458.5,3324901,0,0,2326.8647 -4123,5094,9293,-9,9291,-9,2,1,0,23,2,0,1,0,1,-9,2,1,0,0,4,5.5488772,5.6386251,0,3,0,0,0,-9,0,-1056.3793,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,15,0,15,1,0,-9,1,1.9961082,1.9961082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,-9,-9,3,1,1,0,0,2,2,1,698,52151.25,0,0,286.49054 -4123,5095,9294,-9,-9,-9,4,1,0,50,2,0,1,0,2,-9,1,1,0,0,3,4.3848472,4.3069344,0,4,0,-9,0,-9,0,-941.5824,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,16,0,15,1,1,-9,0,.62611908,.62611908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.01,51.630001,-9,-9,4,1,1,0,1,2,1,1,738,-157308.61,0,0,689.41669 -4124,5096,9295,9296,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,3,7.8703699,7.9700031,0,2,0,-9,8,0,0,-106.73273,0,0,1,39,2,4,1,1,1,2019,1,2,9,1,27,25,15,1,0,1,0,10.489799,10.489799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.599998,58.150002,52.91,4,1,1,0,0,5,4,1,497.66666,61940.43,0,0,2511.9695 -4124,5096,9296,9295,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,0,4,8.5372429,8.1171932,0,2,0,-9,8,0,0,21.932747,0,0,0,39,2,3,1,-9,-9,2019,1,1,7,0,44,48,15,1,0,1,0,13.634979,13.634979,0,0,0,0,0,0,0,2,1,1,0,0,0,3.8777232,3,58.150002,52.91,52.48,55.599998,7,1,1,0,0,5,4,1,497.66666,61940.43,0,0,2511.9695 -4124,5096,9297,-9,9295,9296,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.62866,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,497.66666,61940.43,0,0,2511.9695 -4125,5097,9298,9299,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,5.7857232,6.2546225,1,0,-9,49,0,-4,-8.8408508,0,0,0,75,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,3.8690927,0,0,0,0,0,1,1,0,4.0421848,5.7807345,0,0,60.290001,52.110001,62.169998,41.709999,7,1,1,0,0,12,2,1,354.5,661727.13,0,0,2212.1494 -4125,5097,9299,9298,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.011764,6.9753451,1,0,-9,49,0,4,94.1465,0,0,0,71,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0583172,7.2203007,0,0,62.169998,41.709999,60.290001,52.110001,6,1,1,0,0,12,2,1,354.5,661727.13,0,0,2212.1494 -4126,5098,9300,9301,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-8,0,0,0,0,84,3,2,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1822249,0,0,1,61.259998,51.57,30.1,30.860001,6,1,1,0,0,8,1,1,351.5,1601825.3,0,0,1082.1033 -4126,5098,9301,9300,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,8,0,0,0,0,76,2,4,3,-9,-9,2019,4,1,27,10,0,0,15,4,1,4,0,0,0,1,0,7.1098523,0,0,0,0,0,1,1,0,0,0,0,0,30.1,30.860001,61.259998,51.57,6,1,1,0,0,8,1,1,351.5,1601825.3,0,0,1082.1033 -4127,5099,9302,9304,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,2,7.1231999,7.6803422,6.8244104,2,0,-9,8,0,6,-95.603134,0,0,0,40,3,3,1,-9,-9,2019,1,1,8,3,30,10,15,1,0,1,0,5.439549,5.439549,0,0,0,0,0,0,0,0,1,1,0,6.5300465,0,0,0,68.889999,19.75,46,51,2,4,2,0,0,8,3,0,1449.75,87879.203,0,0,3078.1338 -4127,5099,9303,-9,9304,9302,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-986.15741,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,3,4,0,0,8,3,0,1449.75,87879.203,0,0,3078.1338 -4127,5099,9304,9302,-9,-9,1,1,0,40,1,0,2,0,3,-9,2,1,0,0,3,7.6852922,7.4781313,0,2,0,-9,21,0,-6,128.93835,0,0,1,46,2,2,1,3,2,2019,1,2,16,6,28,28,15,1,1,1,0,8.0470896,8.0470896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,68.889999,19.75,5,3,4,0,0,8,3,0,1449.75,87879.203,0,0,3078.1338 -4127,5099,9305,-9,9304,9302,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-961.76495,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,8,3,0,1449.75,87879.203,0,0,3078.1338 -4127,5100,9306,-9,9304,9302,3,1,0,19,2,0,2,1,2,0,7,2,0,0,3,0,7.2539444,7.1516514,3,0,0,0,-9,0,-1089.2815,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,28,9,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4133549,0,0,0,34.98,58.779999,-9,-9,2,3,4,0,0,8,3,0,450,230529.38,0,0,664.21893 -4128,5101,9307,9308,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,0,4,7.9270706,7.5980449,0,1,0,-9,7,0,-7,-105.9473,0,1,1,35,2,3,1,3,3,2019,1,2,12,0,40,50,15,1,0,1,0,7.5464907,7.5464907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.540001,52.959999,47,52,5,1,1,0,0,11,4,0,550.5,-25912.318,0,0,2315.4724 -4128,5101,9308,9307,-9,-9,2,1,1,35,1,0,0,0,2,-9,1,1,0,0,3,7.842494,7.998147,0,1,0,-9,7,0,7,29.690611,0,0,0,28,2,4,1,3,3,2019,1,1,20,6,50,40,15,1,1,1,0,5.7942643,5.7942643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,52,46.540001,52.959999,5,1,1,0,0,11,4,0,550.5,-25912.318,0,0,2315.4724 -4129,5102,9309,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,7.2693801,7.4997439,3,0,-9,0,-9,0,-1096.8291,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0388844,6.9707832,0,0,60.57,46.439999,-9,-9,6,1,1,0,0,1,2,1,793,374136.91,0,0,1227.6604 -4130,5103,9310,9311,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,1,0,4.6720371,5.1586642,1,0,-9,62,0,-2,97.980362,0,0,0,78,3,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.691463,0,0,50.189999,15.12,33.599998,39.919998,6,1,1,0,0,9,1,1,707.5,59097.5,0,0,1175.0225 -4130,5103,9311,9310,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,62,0,2,17.152599,0,0,0,76,3,1,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.599998,39.919998,50.189999,15.12,6,1,1,0,0,9,1,1,707.5,59097.5,0,0,1175.0225 -4131,5104,9312,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-956.74274,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,3,0,0,15,4,0,-9,0,0,0,1,0,0,13.989791,0,3.3010426,0,0,1,1,0,0,0,0,0,38.490002,24.49,-9,-9,3,1,1,0,0,2,1,0,583,-85570.93,0,0,2235.9395 -4132,5105,9313,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,0,2,8.1799402,8.3917532,0,3,0,0,0,-9,0,-917.81311,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,38,38,15,1,0,-9,0,13.584587,13.584587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.220001,41.549999,-9,-9,3,1,1,0,0,12,4,0,3480,-13987.499,0,0,1691.0671 -4133,5106,9314,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,7.8277464,8.2667246,3,0,0,0,-9,0,-947.94958,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7194405,8.0557919,0,0,59.150002,49.669998,-9,-9,7,1,1,0,0,1,4,1,329,784850.06,0,0,1593.549 -4134,5107,9315,9316,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,6.9937744,7.0704961,0,1,0,-9,33,0,-2,74.124458,0,0,0,61,1,5,1,2,2,2019,1,1,9,0,35,35,15,1,0,1,0,4.1000423,4.1000423,0,0,0,0,0,0,0,0,0,0,0,4.7318063,0,0,0,54,53,54.27,53.560001,6,1,1,0,0,9,3,1,497.5,448074.25,0,0,1470.8267 -4134,5107,9316,9315,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,5,7.1982837,7.0485864,0,1,0,-9,33,0,2,11.744442,0,0,0,59,2,4,1,2,2,2019,1,2,6,0,17,15,15,1,0,1,0,8.0204306,8.0204306,0,0,0,0,0,0,0,0,0,0,0,4.221364,0,0,0,54.27,53.560001,54,53,6,1,1,0,0,9,3,1,497.5,448074.25,0,0,1470.8267 -4134,5108,9317,-9,9316,9315,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,7.7266226,7.6932449,0,3,0,0,0,-9,0,-928.20117,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,35,0,15,1,0,-9,1,8.2426023,8.2426023,0,0,0,0,0,0,0,0,0,0,0,1.1924007,0,0,0,49,58,-9,-9,5,1,1,0,0,9,3,1,860,101836.27,0,0,524.43591 -4134,5109,9318,-9,9316,9315,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1075.851,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6677864,0,0,0,44.080002,59.330002,-9,-9,6,1,1,0,0,9,1,1,908,-154646.02,0,0,991.61151 -4135,5110,9319,9320,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,1,3,8.5688877,8.2252798,0,1,0,-9,9,0,-8,79.660057,0,0,0,58,1,2,1,-9,-9,2019,1,1,34,12,20,0,15,1,1,1,0,23.001459,23.001459,0,0,0,0,0,0,0,42,1,1,0,0,0,34.698833,3,37.099998,60.34,26.58,48.959999,1,1,1,0,1,6,5,1,686.5,511674.25,0,0,4947.6396 -4135,5110,9320,9319,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,1,2,8.9428444,9.1316099,0,1,0,-9,31,0,8,125.83852,0,0,0,50,2,3,1,2,2,2019,1,2,28,10,50,55,15,1,1,1,0,19.271627,19.271627,0,0,0,0,0,0,0,42,1,1,0,0,0,39.319695,3,26.58,48.959999,37.099998,60.34,2,1,1,0,0,6,5,1,686.5,511674.25,0,0,4947.6396 -4136,5111,9321,9323,-9,-9,3,1,1,39,1,1,3,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,1,-9,1,0,-9,0,0,38,2,3,3,3,3,2019,4,1,35,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.76,25.08,44.43,56.740002,1,1,1,0,0,13,1,0,765.66669,117976.15,0,0,3347.0774 -4136,5111,9322,-9,9323,9321,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1087.9432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,765.66669,117976.15,0,0,3347.0774 -4136,5111,9323,9321,-9,-9,1,1,0,38,1,1,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,-1,0,-9,0,1,39,2,1,3,2,2,2019,4,3,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.6931756,1,44.43,56.740002,19.76,25.08,3,1,1,1,1,13,1,0,765.66669,117976.15,0,0,3347.0774 -4137,5112,9324,9325,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,8.4212284,8.5701542,1,0,-9,3,0,-7,35.135704,0,0,0,72,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6898069,8.4726152,7.5845222,3,54.619999,53.529999,58.700001,46.459999,6,1,1,0,0,5,4,1,1102.5,1005456.4,0,0,3347.7202 -4137,5112,9325,9324,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,3,0,7,-73.639961,0,0,0,65,1,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.700001,46.459999,54.619999,53.529999,6,1,1,0,0,5,4,1,1102.5,1005456.4,0,0,3347.7202 -4138,5113,9326,9327,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.1290417,8.3802681,0,1,0,-9,7,0,3,32.187164,0,0,0,47,3,2,1,3,3,2019,1,1,13,1,42,47,15,1,0,1,0,11.842239,11.842239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.169998,39.639999,39.860001,38.75,4,1,1,0,0,9,4,1,768,1272616.6,0,0,2917.0408 -4138,5113,9327,9326,-9,-9,1,1,0,47,1,0,0,0,3,-9,2,1,0,0,2,7.8205128,7.8451748,0,1,0,-9,7,0,-3,-20.319756,0,0,0,50,2,3,1,2,3,2019,1,2,17,5,38,35,15,1,1,1,0,6.5605593,6.5605593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.860001,38.75,45.169998,39.639999,2,1,1,0,0,9,4,1,768,1272616.6,0,0,2917.0408 -4138,5114,9328,-9,9327,9326,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.7413769,8.204628,7.9406672,3,0,0,0,-9,0,-1058.6683,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,1,38,18,15,1,0,-9,1,5.2831678,5.2831678,0,0,0,0,0,0,0,0,0,0,0,8.8969164,0,0,0,40.130001,59.619999,-9,-9,6,1,1,0,0,9,5,1,531,-118617.66,0,0,1907.8864 -4139,5115,9329,9330,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,-11,-1.2548896,0,0,0,77,2,3,3,3,3,2019,4,2,18,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.404582,2,40.139999,38.189999,54,46,6,2,3,0,0,8,2,1,952.5,355052,0,0,2278.2119 -4139,5115,9330,9329,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.2342176,6.8125858,1,0,-9,6,0,11,31.601225,0,0,0,66,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8103771,6.5164695,0,0,54,46,40.139999,38.189999,3,2,3,0,0,8,2,1,952.5,355052,0,0,2278.2119 -4140,5116,9331,9332,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,9.0339727,9.166276,0,2,0,-9,8,0,2,-22.360357,0,0,0,37,1,1,3,2,3,2019,2,1,10,1,37,38,15,1,0,3,0,35.92646,35.92646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,41.119999,24.58,5,1,1,0,0,5,5,1,571,2896944,0,0,4440.8096 -4140,5116,9332,9331,-9,-9,1,1,0,37,1,0,2,0,1,-9,6,3,0,0,1,0,0,0,2,0,-9,8,0,-2,-99.847145,0,0,1,39,1,4,1,2,2,2019,3,2,16,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.23343694,1,41.119999,24.58,51,57,4,1,1,0,0,5,5,1,571,2896944,0,0,4440.8096 -4140,5116,9333,-9,9332,9331,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.93805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,571,2896944,0,0,4440.8096 -4140,5116,9334,-9,9332,9331,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.71924,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,5,1,571,2896944,0,0,4440.8096 -4141,5117,9335,-9,-9,-9,1,1,0,47,3,0,0,0,1,-9,2,1,0,0,5,9.0601349,9.1948128,0,3,0,0,0,-9,0,-1066.0172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,40,43,15,1,1,-9,0,27.453688,27.453688,0,0,0,0,0,0,0,0,1,1,0,6.5532074,0,0,0,45.810001,61.509998,-9,-9,4,1,1,0,0,2,5,1,613,121060.61,0,0,3873.9873 -4142,5118,9336,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,6.5081596,6.6419325,0,3,0,0,0,-9,0,-947.57996,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,20,0,15,1,0,-9,0,5.4816761,5.4816761,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,48,-9,-9,5,1,1,0,0,11,2,1,84,-249579.7,0,0,-627.91608 -4142,5119,9337,-9,9336,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,7.4301667,7.4293599,0,3,0,0,0,-9,0,-1030.1621,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,30,24,15,1,0,-9,1,5.3368535,5.3368535,0,0,0,0,0,0,0,5.48,1,0,1,0,0,1.4308308,3,35.220001,56.720001,-9,-9,4,1,1,0,0,11,3,1,402,173098.75,0,0,645.42474 -4143,5120,9338,9339,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,2,7.4714522,7.3483052,0,1,0,-9,9,0,-8,65.554131,0,0,0,61,3,2,3,-9,-9,2019,2,1,12,1,30,25,15,1,0,4,0,7.2250123,7.2250123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.869999,50.459999,33.709999,44.610001,6,1,1,0,0,4,3,0,728.5,601378.81,0,0,1963.8843 -4143,5120,9339,9338,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,1,2,0,5.7411532,6.0346818,1,0,-9,9,0,8,37.527096,0,0,0,53,2,2,1,3,3,2019,3,2,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7836995,0,0,33.709999,44.610001,49.869999,50.459999,4,1,1,0,0,4,3,0,728.5,601378.81,0,0,1963.8843 -4144,5121,9340,9341,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,4,0,-4,-10.613305,0,0,0,68,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.795771,3,49.360001,58.529999,57.330002,53.459999,6,1,1,0,0,11,2,1,283.5,409293.5,0,0,1072.2867 -4144,5121,9341,9340,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,5.0278592,4.8683586,1,0,-9,4,0,4,62.537727,0,0,0,64,2,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5152092,5.0854015,0,0,57.330002,53.459999,49.360001,58.529999,6,1,1,0,0,11,2,1,283.5,409293.5,0,0,1072.2867 -4145,5122,9342,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,1,1,0,0,4,8.2460289,8.0793524,0,3,0,0,0,-9,0,-925.89655,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,70,70,15,1,0,-9,0,6.3442216,6.3442216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.610001,59.130001,-9,-9,1,1,1,0,0,13,4,1,965,418137.25,0,0,2674.7295 -4146,5123,9343,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,2,9.6944714,9.9505854,0,3,0,0,0,-9,0,-1008.894,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,24,11,40,40,15,1,1,-9,0,33.546005,33.546005,0,0,0,0,0,0,0,2,0,0,0,4.7034712,0,7.4985547,3,26.969999,42.16,-9,-9,5,1,1,0,0,12,5,1,973,2363616.3,0,0,4507.4199 -4147,5124,9344,-9,-9,-9,1,1,0,76,3,1,1,0,2,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-899.79993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,9.104332,3,39.990002,30.49,-9,-9,5,4,2,0,1,8,1,0,1353,0,0,0,-390.0101 -4147,5125,9345,-9,9344,-9,2,1,0,46,2,1,1,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1126.757,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.349998,31.75,-9,-9,3,3,4,1,1,8,1,0,76,-136578.28,0,0,388.3627 -4147,5126,9346,-9,9345,-9,3,1,0,27,2,1,1,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-981.56897,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.42,67.220001,-9,-9,7,4,2,1,1,8,1,0,480,41237.797,0,0,11.881363 -4147,5126,9347,-9,9346,-9,5,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-952.61664,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,1,0,480,41237.797,0,0,11.881363 -4147,5127,9348,-9,9345,-9,4,1,1,23,2,1,1,0,2,-9,2,1,0,0,2,6.845746,7.0793967,0,3,0,0,0,-9,0,-895.1449,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,25,16,15,1,0,-9,1,7.0974727,7.0974727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.169998,48.860001,-9,-9,4,4,2,0,0,8,2,0,906,0,0,0,695.60132 -4148,5128,9349,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,5,7.8094044,7.9709358,0,3,0,0,0,-9,0,-1003.2653,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,40,40,15,1,0,-9,0,8.1062717,8.1062717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,11,4,0,1784,123469.45,0,0,965.2019 -4149,5129,9350,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1086.5254,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,4.7585182,0,0,0,0,0,0,1,1,0,0,0,0,0,51.52,32.75,-9,-9,6,1,1,0,0,11,1,1,255,251395.11,0,0,881.93353 -4150,5130,9351,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1183.4271,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.23,18.91,-9,-9,4,1,1,0,0,12,1,0,332,-189117.44,0,0,1660.4086 -4151,5131,9352,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,2,1,0,0,4,7.5581288,8.0030394,0,3,0,0,0,-9,0,-1042.6588,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,36,36,15,1,0,-9,0,8.2534361,8.2534361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,58.990002,-9,-9,6,1,1,0,0,13,3,1,372,150473.83,0,0,1907.4762 -4152,5132,9353,9354,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,6.2599688,6.6647496,1,0,-9,7,0,-1,-63.711414,0,0,0,66,1,2,1,-9,-9,2019,3,1,8,0,0,22,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4544709,6.3795443,0,0,51.580002,50.599998,47.419998,51.549999,6,1,1,0,0,9,4,0,380,908875.69,0,0,3185.0078 -4152,5132,9354,9353,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,0,2,8.2910233,8.217927,6.2736874,1,0,-9,47,0,1,84.37075,0,0,0,65,2,3,3,2,2,2019,2,2,11,0,50,40,15,1,0,4,0,8.5244856,8.5244856,0,0,0,0,0,0,0,0,1,1,0,5.9134808,6.7005634,0,0,47.419998,51.549999,51.580002,50.599998,2,1,1,0,0,9,4,0,380,908875.69,0,0,3185.0078 -4153,5133,9355,9356,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,6.8383436,6.9279413,1,0,-9,44,0,-2,90.855568,0,0,0,67,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5094576,6.9495549,0,0,60.130001,49.27,57.16,56.150002,7,1,1,0,0,9,3,1,577.5,1231280.3,0,0,2834.6489 -4153,5133,9356,9355,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,7.3616381,7.6135879,1,0,-9,44,0,2,47.247688,0,0,0,65,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7939057,7.5545468,0,0,57.16,56.150002,60.130001,49.27,6,1,1,0,0,9,3,1,577.5,1231280.3,0,0,2834.6489 -4154,5134,9357,-9,9358,9360,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.30402,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,4,1,1018.25,541761.38,0,0,4543.1128 -4154,5134,9358,9360,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,1,4,8.2198,7.9296613,0,2,0,-9,7,0,-2,180.53671,0,0,0,50,2,4,1,2,2,2019,1,1,12,0,19,19,15,1,0,1,0,19.133881,19.133881,0,0,0,0,0,0,0,107,1,1,0,0,0,128.58093,3,49.060001,58.639999,49.349998,59.639999,6,1,1,0,0,6,4,1,1018.25,541761.38,0,0,4543.1128 -4154,5134,9359,-9,9358,9360,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1148.7684,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,4,1,1018.25,541761.38,0,0,4543.1128 -4154,5134,9360,9358,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.840764,8.9204321,0,2,0,-9,7,0,2,-32.511444,0,0,0,48,2,4,1,2,2,2019,1,2,13,1,40,40,15,1,0,1,0,19.313452,19.313452,0,0,0,0,0,0,0,86,1,1,0,0,0,121.45203,3,49.349998,59.639999,49.060001,58.639999,6,1,1,0,0,6,4,1,1018.25,541761.38,0,0,4543.1128 -4155,5135,9361,9362,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.7270021,8.5287542,1,0,-9,41,0,-3,-19.751812,0,0,0,72,1,5,3,2,2,2019,4,1,14,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.5819182,8.5843468,13.148349,3,54.599998,55.889999,51.139999,60.450001,3,1,1,0,0,9,5,1,956.5,13267527,0,0,14253.037 -4155,5135,9362,9361,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,5,0,9.8354301,9.9584723,1,0,-9,41,0,3,-44.910011,0,0,0,69,1,4,3,1,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.330018,9.9654293,0,0,51.139999,60.450001,54.599998,55.889999,6,1,1,0,0,9,5,1,956.5,13267527,0,0,14253.037 -4156,5136,9363,-9,-9,-9,1,1,1,87,2,0,0,0,2,-9,4,3,0,1,2,0,5.9890313,5.7137022,3,0,0,0,-9,0,-1021.9354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,2.0729222,0,0,0,6.0858765,54.127892,0,1,1,0,2.5827632,5.8574195,0,0,36.200001,35.049999,-9,-9,5,1,1,0,0,13,2,1,2207,156919.88,0,0,1888.2064 -4157,5137,9364,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,0,3,7.3681083,7.4860511,0,3,0,0,0,-9,0,-946.49133,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,50,50,15,1,0,-9,0,2.8549669,2.8549669,0,0,0,0,0,0,0,0,0,0,0,2.6526532,0,0,0,33.369999,60.580002,-9,-9,3,1,1,0,0,12,2,1,65,229031.38,0,0,156.91008 -4158,5138,9365,-9,9366,9367,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1016.8076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,0,564,1604.0022,0,0,2323.3188 -4158,5138,9366,9367,-9,-9,2,1,0,28,1,1,3,0,2,-9,6,3,0,0,3,5.6114039,5.7182913,0,2,0,-9,1,-9,-1,-188.19778,-9,1,1,29,2,4,1,-9,-9,2019,3,1,19,7,16,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.139999,49.43,55.189999,54.259998,3,1,1,0,1,2,2,0,564,1604.0022,0,0,2323.3188 -4158,5138,9367,9366,-9,-9,1,1,1,29,1,1,3,0,2,-9,2,1,0,0,4,7.8163791,7.6236629,0,2,0,-9,1,-9,1,-35.307644,-9,1,0,28,2,3,3,2,2,2019,2,2,7,0,52,0,15,1,0,3,0,6.0256529,6.0256529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,28.139999,49.43,5,1,1,0,0,2,2,0,564,1604.0022,0,0,2323.3188 -4158,5138,9368,-9,9366,9367,4,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1046.1365,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,564,1604.0022,0,0,2323.3188 -4158,5138,9369,-9,9366,9367,3,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-962.17603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,564,1604.0022,0,0,2323.3188 -4159,5139,9370,-9,-9,-9,1,1,0,34,2,1,2,0,2,-9,3,3,0,0,5,0,5.2850742,5.8051357,4,0,0,0,-9,0,-990.54205,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,16,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1595454,0,0,0,42.400002,62.310001,-9,-9,1,1,1,1,1,5,2,1,507,-86128.914,0,0,600.33032 -4159,5139,9371,-9,9370,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1032.0125,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,1,507,-86128.914,0,0,600.33032 -4160,5140,9372,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-878.27948,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2.5497401,0,0,0,51,46,-9,-9,5,1,1,0,0,11,1,1,450,917928.38,0,0,-1492.8767 -4161,5141,9373,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,2,1,0,0,2,8.4190874,8.8220806,3.1039736,3,0,0,0,-9,0,-1071.3467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,42,47,15,1,0,-9,0,10.908293,10.908293,0,0,0,0,0,0,0,2,1,1,0,3.1289201,3.2528811,8.4256849,3,44.939999,49.91,-9,-9,6,1,1,0,0,9,4,0,1085,1517763.8,0,0,1329.873 -4162,5142,9374,-9,9375,9377,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.37439,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,1,598.25,946295,0,0,16169.523 -4162,5142,9375,9377,-9,-9,2,1,0,47,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,2,-65.534508,0,0,0,45,2,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3410873,0,0,0,36.490002,58.77,58.459999,44.549999,6,1,1,0,0,4,5,1,598.25,946295,0,0,16169.523 -4162,5142,9376,-9,9375,9377,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.01324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,1,598.25,946295,0,0,16169.523 -4162,5142,9377,9375,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,0,4,9.4208603,9.7761526,0,2,0,-9,6,0,-2,-177.78285,0,0,0,47,2,3,3,1,1,2019,2,2,9,0,50,50,15,1,0,3,0,41.158367,41.158367,0,0,0,0,0,0,0,0,0,0,0,7.0198097,0,0,0,58.459999,44.549999,36.490002,58.77,6,1,1,0,0,4,5,1,598.25,946295,0,0,16169.523 -4163,5143,9378,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,4,8.2752886,7.8685856,0,3,0,0,0,-9,0,-969.41858,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,39,39,15,1,0,-9,0,9.8850431,9.8850431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,0,11,4,1,592,34200.211,0,0,2040.4121 -4164,5144,9379,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-934.94482,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.209999,-9,-9,3,1,1,1,0,8,1,0,1724,30872.418,0,0,878.38361 -4164,5145,9380,-9,9379,-9,2,1,0,21,2,0,0,0,1,-9,7,2,0,0,5,7.6402736,7.4299645,0,3,0,0,0,-9,0,-900.45007,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,24,16,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.119999,59.07,-9,-9,3,4,2,0,0,8,3,0,729,105693.1,0,0,1172.1964 -4165,5146,9381,-9,9383,9382,1,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,9.0698156,9.0305891,0,3,0,0,0,-9,0,-1061.4844,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,40,15,1,0,-9,1,18.153416,18.153416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.189999,56.73,-9,-9,4,1,1,0,0,4,5,1,1057,-33091.145,0,0,2487.1357 -4165,5147,9382,9383,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.6786566,8.5863266,0,1,0,-9,34,0,-1,-72.398232,0,0,0,56,2,4,1,3,3,2019,1,3,6,0,37,37,15,1,0,1,0,22.093855,22.093855,0,0,0,0,0,0,0,0,0,0,0,3.3939373,0,0,0,57.16,56.150002,58.330002,47.360001,2,1,1,0,0,4,5,1,720,1138028.5,0,0,3614.3701 -4165,5147,9383,9382,-9,-9,3,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.4888387,7.4699192,0,1,0,-9,34,0,1,115.64293,0,0,0,55,2,4,1,3,3,2019,1,2,8,0,14,17,15,1,0,1,0,13.270511,13.270511,0,0,0,0,0,0,0,0,0,0,0,5.2705593,0,0,0,58.330002,47.360001,57.16,56.150002,7,1,1,0,0,4,5,1,720,1138028.5,0,0,3614.3701 -4166,5148,9384,9385,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,1,1,8.0164366,7.8624811,0,1,0,-9,29,0,-5,-136.63243,0,0,0,61,2,4,3,3,-9,2019,2,1,7,0,28,27,15,1,0,4,0,10.08355,10.08355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.790001,21.040001,61.27,46.029999,6,1,1,0,0,8,4,1,880,1009776.5,0,0,3410.6389 -4166,5148,9385,9384,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,4,0,8.4426336,8.3259916,1,0,-9,29,0,5,-140.28587,0,0,0,56,3,1,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.5416846,8.2825356,21.362932,1,61.27,46.029999,34.790001,21.040001,6,1,1,0,0,8,4,1,880,1009776.5,0,0,3410.6389 -4167,5149,9386,9387,-9,-9,2,1,1,38,1,0,2,0,1,-9,1,1,0,0,5,7.6004353,7.6555676,0,2,0,-9,8,0,-5,85.483948,0,0,0,43,1,3,1,-9,-9,2019,1,1,6,0,40,50,15,1,0,1,0,6.190105,6.190105,0,0,0,0,0,0,0,0,1,1,0,3.8132651,0,0,0,60.669998,53.549999,60.900002,39.41,6,2,3,0,0,2,3,0,870.66669,117080.38,0,0,2226.4561 -4167,5149,9387,9386,-9,-9,1,1,0,43,1,0,2,0,1,-9,1,1,0,0,3,7.4111867,7.5954337,0,2,0,-9,14,0,5,114.82454,0,0,1,38,1,5,1,2,2,2019,1,2,5,0,37,35,15,1,0,1,0,5.2535243,5.2535243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.900002,39.41,60.669998,53.549999,5,2,3,0,0,2,3,0,870.66669,117080.38,0,0,2226.4561 -4167,5149,9388,-9,9387,9386,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.3391,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,0,870.66669,117080.38,0,0,2226.4561 -4168,5150,9389,9391,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,8.0008736,7.8762155,0,2,0,-9,17,0,-2,202.38808,0,0,1,40,2,2,1,2,2,2019,1,2,10,1,40,38,15,1,0,1,0,8.1753521,8.1753521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,46.880001,51.82,6,1,1,0,1,9,4,0,898.5,16547.367,0,0,2821.522 -4168,5150,9390,-9,9389,9391,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.86896,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,4,0,898.5,16547.367,0,0,2821.522 -4168,5150,9391,9389,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,2,7.9437337,8.2418289,0,2,0,-9,16,0,2,-28.514112,0,0,0,38,2,3,1,1,3,2019,1,1,10,1,30,30,15,1,0,1,0,10.570794,10.570794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.880001,51.82,43.709999,56.91,6,1,1,0,1,9,4,0,898.5,16547.367,0,0,2821.522 -4168,5150,9392,-9,9389,9391,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.49933,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,0,898.5,16547.367,0,0,2821.522 -4169,5151,9393,9394,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,0,0,0,1,0,-9,18,0,8,-33.133144,0,0,0,45,1,4,1,2,2,2019,1,2,6,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69.779999,25.950001,46.5,58.259998,2,1,1,0,0,9,5,1,663.5,1469338.8,0,0,2934.3101 -4169,5151,9394,9393,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,9.0829,9.153471,0,1,0,-9,18,0,-8,31.243713,0,0,0,53,2,3,1,2,2,2019,1,1,8,0,43,50,15,1,0,1,0,18.919649,18.919649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.259998,69.779999,25.950001,6,1,1,0,0,9,5,1,663.5,1469338.8,0,0,2934.3101 -4169,5152,9395,-9,9394,9393,3,1,0,18,2,0,0,0,2,-9,2,1,0,0,2,8.146637,8.2668295,0,3,0,0,0,-9,0,-969.0434,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,23,11,40,0,15,1,1,-9,1,7.3106456,7.3106456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.889999,41.98,-9,-9,2,1,1,0,0,9,4,1,758,-66489.633,0,0,1917.4785 -4169,5153,9396,-9,9394,9393,4,1,1,18,2,0,0,0,2,-9,2,1,0,0,3,7.0140171,7.6233802,0,3,0,0,0,-9,0,-1077.4271,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,35,0,15,1,1,-9,1,4.0540118,4.0540118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.82,51.669998,-9,-9,3,1,1,0,1,9,3,1,509,74991.336,0,0,-366.21249 -4170,5154,9397,9398,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,58,0,-1,0,0,0,0,79,2,2,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.629997,32.349998,47.34,29.959999,7,1,1,0,0,12,1,1,907.5,11826.045,0,0,-486.41339 -4170,5154,9398,9397,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,1,0,0,0,0,78,3,4,3,-9,-9,2019,4,1,11,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.56201041,0,0,0,47.34,29.959999,64.629997,32.349998,6,1,1,0,0,12,1,1,907.5,11826.045,0,0,-486.41339 -4171,5155,9399,9400,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.4183998,8.8999987,0,1,0,-9,30,0,-1,105.57701,0,0,0,53,1,5,1,2,1,2019,1,2,9,0,20,20,15,1,0,1,0,38.738785,38.738785,0,0,0,0,0,0,0,0,0,0,0,5.9362965,0,0,0,51.939999,55.880001,55.240002,55.869999,6,1,1,0,0,4,5,1,1391.5,1088219.1,0,0,4537.2246 -4171,5155,9400,9399,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,5,8.862339,8.979291,0,1,0,-9,30,0,1,48.108479,0,0,0,52,1,3,1,1,2,2019,1,1,14,4,42,40,15,1,1,1,0,19.609434,19.609434,0,0,0,0,0,0,0,0,0,0,0,5.7837825,0,0,0,55.240002,55.869999,51.939999,55.880001,6,1,1,0,0,4,5,1,1391.5,1088219.1,0,0,4537.2246 -4172,5156,9401,9402,-9,-9,2,1,0,50,1,1,4,0,3,-9,2,1,0,0,5,6.5146093,6.4275146,0,2,0,-9,8,0,-7,93.132034,0,0,0,57,3,2,1,3,3,2019,1,1,8,0,10,0,15,1,0,1,0,7.4881401,7.4881401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,52.639999,38.41,4,2,3,0,0,4,3,1,462.5,508024.81,0,0,1761.7341 -4172,5156,9402,9401,-9,-9,1,1,1,57,1,1,4,0,3,-9,1,1,0,0,2,8.1537685,8.016428,0,2,0,-9,34,0,7,-32.131214,0,0,0,50,3,5,1,3,3,2019,1,2,9,0,35,0,15,1,0,1,0,8.2686195,8.2686195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.639999,38.41,51.389999,59.18,4,2,3,0,0,4,3,1,462.5,508024.81,0,0,1761.7341 -4172,5157,9403,-9,9401,9402,4,1,1,28,2,1,4,0,1,-9,2,1,0,0,5,6.9665227,7.1993632,0,3,0,0,0,-9,0,-1081.0173,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,37,0,15,1,0,-9,1,3.4042592,3.4042592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,6,2,3,0,0,4,2,1,197,102054.26,0,0,1173.6345 -4172,5158,9404,-9,9401,9402,5,1,1,26,2,1,4,0,2,-9,2,1,0,0,3,8.2499571,7.9872541,0,3,0,0,0,-9,0,-988.34692,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.09,57.099998,-9,-9,3,2,3,0,1,4,4,1,385,-120538.77,0,0,452.00021 -4172,5159,9405,-9,9410,9409,7,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.21558,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,3,1,919.33331,172500.48,0,0,3240.1108 -4172,5159,9406,-9,9410,9409,8,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.91425,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,3,1,919.33331,172500.48,0,0,3240.1108 -4172,5159,9407,-9,9410,9409,10,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.4808,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,3,1,919.33331,172500.48,0,0,3240.1108 -4172,5159,9408,-9,9410,9409,9,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.1852,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,3,1,919.33331,172500.48,0,0,3240.1108 -4172,5159,9409,9410,9401,9402,3,1,1,32,1,1,4,0,1,-9,2,1,0,0,3,8.7731771,8.9867411,0,2,0,-9,8,0,0,81.711639,0,0,0,32,1,4,3,3,3,2019,2,6,8,1,33,0,15,1,0,3,0,17.571356,17.571356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,49.119999,57.279999,6,2,3,0,0,4,3,1,919.33331,172500.48,0,0,3240.1108 -4172,5159,9410,9409,-9,-9,6,1,0,32,1,1,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,0,31.390965,0,0,1,32,1,3,1,3,3,2019,3,3,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.119999,57.279999,49.040001,55.860001,4,2,3,0,0,4,3,1,919.33331,172500.48,0,0,3240.1108 -4173,5160,9411,-9,9412,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-979.29492,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,4,2,0,453.66666,-78349.242,0,0,1640.6293 -4173,5160,9412,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,0,5,6.7252011,6.881001,0,4,0,0,0,-9,0,-845.71472,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,1,20,0,15,1,0,-9,0,5.8044224,5.8044224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.169998,59.169998,-9,-9,5,1,1,0,0,4,2,0,453.66666,-78349.242,0,0,1640.6293 -4173,5160,9413,-9,9412,-9,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.1162,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,453.66666,-78349.242,0,0,1640.6293 -4174,5161,9414,9415,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,6.6434765,6.6394482,1,0,-9,10,0,3,-108.00923,0,0,0,76,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8450141,6.9405088,0,0,64.470001,51.450001,70.080002,24.309999,7,1,1,0,0,7,2,1,604.5,209477.97,0,0,3950.8789 -4174,5161,9415,9414,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.5600586,6.0595365,1,0,-9,10,0,-3,43.509964,0,0,0,79,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.5075703,6.2569413,0,0,70.080002,24.309999,64.470001,51.450001,7,1,1,0,0,7,2,1,604.5,209477.97,0,0,3950.8789 -4174,5162,9416,-9,9415,9414,3,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,7.6041908,7.6182256,0,3,0,0,0,-9,0,-955.8858,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,15,15,15,1,0,-9,1,11.404463,11.404463,0,0,0,0,0,0,0,0,1,1,0,7.9416718,0,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,7,3,1,189,92415.047,0,0,1147.3584 -4175,5163,9417,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,2,1,0,0,4,9.0661478,9.2518644,7.303555,3,0,0,0,-9,0,-946.15857,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,45,39,15,1,0,-9,0,19.954166,19.954166,0,0,0,0,0,0,0,0,1,1,0,4.8743558,7.6258922,0,0,60.130001,49.27,-9,-9,5,1,1,0,0,8,5,0,182,486651.72,0,0,4284.6553 -4176,5164,9418,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,1,0,6.477612,6.4356561,3,0,0,0,-9,0,-884.84283,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6535406,0,0,66.720001,14.06,-9,-9,6,1,1,0,0,12,2,0,1009,166983.7,0,0,930.74469 -4177,5165,9419,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,1,1,0,0,4,5.0482831,7.6674805,7.3571973,3,0,0,0,-9,0,-973.56757,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,40,45,15,1,1,-9,0,.54080111,.54080111,0,0,0,0,0,0,0,0,1,1,0,0,7.2328506,0,0,44.130001,47.360001,-9,-9,5,1,1,0,0,9,3,1,796,-25959.193,0,0,-96.777855 -4178,5166,9420,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-924.35303,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,6,1,1,1,0,9,1,0,152,299272.28,0,0,0 -4179,5167,9421,-9,9422,9423,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-857.07355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,0,1341,-50411.816,0,0,1640.4673 -4179,5167,9422,9423,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,6.3757596,6.4403143,0,2,0,-9,7,0,8,-7.0957317,0,0,0,39,2,4,1,3,2,2019,1,1,7,0,14,31,15,1,0,1,0,5.1853061,5.1853061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.459999,40.889999,51,56,7,1,1,0,0,4,3,0,1341,-50411.816,0,0,1640.4673 -4179,5167,9423,9422,-9,-9,1,1,1,39,1,0,1,0,2,-9,2,1,0,0,4,8.5672493,8.1820841,0,2,0,-9,7,0,-8,-52.55954,0,0,0,47,2,4,1,2,2,2019,1,2,9,1,40,65,15,1,0,1,0,8.9097795,8.9097795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,60.459999,40.889999,6,1,1,0,0,4,3,0,1341,-50411.816,0,0,1640.4673 -4179,5168,9424,-9,9422,9423,4,1,1,22,2,0,1,0,2,-9,2,1,0,0,5,7.6697865,7.8053193,0,3,0,0,0,-9,0,-952.91229,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,4,41,40,15,1,1,-9,1,6.9963388,6.9963388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.610001,42.950001,-9,-9,7,1,1,0,0,4,3,0,96,4294.5845,0,0,2169.3508 -4180,5169,9425,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1010.5578,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,4,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1011226,0,0,0,54.349998,57.84,-9,-9,5,1,1,0,1,4,1,1,564,-22697.811,0,0,20.514217 -4181,5170,9426,9428,-9,-9,2,1,0,27,1,1,2,0,2,-9,2,1,0,0,5,7.5727954,7.5545917,0,2,0,-9,5,0,-1,136.49765,0,1,1,28,2,5,1,-9,-9,2019,1,1,24,10,26,26,15,1,1,1,0,6.2437844,6.2437844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25,67.379997,54.689999,57.470001,7,1,1,0,0,6,4,1,341.25,144932.77,0,0,2322.4155 -4181,5170,9427,-9,9426,9428,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.19043,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,341.25,144932.77,0,0,2322.4155 -4181,5170,9428,9426,-9,-9,1,1,1,28,1,1,2,0,2,-9,2,1,0,0,5,8.7474661,8.9084473,0,2,0,-9,5,0,1,-16.333223,0,1,0,27,2,5,1,-9,-9,2019,1,2,6,0,60,44,15,1,0,1,0,10.827375,10.827375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,25,67.379997,7,1,1,0,0,6,4,1,341.25,144932.77,0,0,2322.4155 -4181,5170,9429,-9,9426,9428,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.11658,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,341.25,144932.77,0,0,2322.4155 -4182,5171,9430,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,2,1,0,0,4,7.7787805,7.8667774,0,3,0,-9,0,1,0,-999.51599,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,9,30,30,15,1,1,-9,0,11.396029,11.396029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.65,57.599998,-9,-9,3,1,1,0,0,2,3,1,378,23943.803,0,0,895.28937 -4183,5172,9431,-9,9432,9434,2,1,0,17,2,0,3,0,2,-9,7,2,0,0,4,4.3477626,4.1347318,0,2,0,0,0,-9,0,-936.9118,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,11,3,1,1195.4,-5739.8267,0,0,3103.9944 -4183,5172,9432,9434,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,0,4,6.7019863,7.1255484,0,2,0,-9,6,0,-2,117.83685,0,0,1,45,2,4,1,3,-9,2019,1,4,9,0,8,6,15,1,0,1,0,14.472686,14.472686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.439999,51.82,43.540001,59.599998,4,1,1,0,0,11,3,1,1195.4,-5739.8267,0,0,3103.9944 -4183,5172,9433,-9,9432,9434,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.20642,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,3,1,1195.4,-5739.8267,0,0,3103.9944 -4183,5172,9434,9432,-9,-9,4,1,1,45,1,0,3,0,2,-9,2,1,0,0,4,8.1404448,8.1359777,0,2,0,-9,6,0,2,-94.95005,0,0,0,43,2,4,1,3,2,2019,1,1,11,0,42,46,15,1,0,1,0,8.3405905,8.3405905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,54.439999,51.82,5,1,1,0,0,11,3,1,1195.4,-5739.8267,0,0,3103.9944 -4183,5172,9435,-9,9432,9434,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-882.16779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,3,1,1195.4,-5739.8267,0,0,3103.9944 -4184,5173,9436,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,6.6667151,6.6953087,3,0,-9,0,-9,0,-994.38367,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8550196,8.8735552,3,47.790001,53.790001,-9,-9,3,1,1,0,0,12,2,1,135,765325.88,0,0,2957.645 -4185,5174,9437,9438,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,63,0,-1,0,0,0,0,83,3,2,3,3,3,2019,4,2,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.6310768,1,40.57,25.84,51.25,33.32,4,1,1,0,0,11,1,0,2130,413232.19,0,0,2098.0496 -4185,5174,9438,9437,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,1,0,0,0,0,82,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.780693,1,51.25,33.32,40.57,25.84,6,1,1,0,0,11,1,0,2130,413232.19,0,0,2098.0496 -4186,5175,9439,9440,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,5,9.6200809,9.447526,0,1,0,-9,7,0,0,-20.470737,0,0,0,57,1,5,1,3,2,2019,1,2,6,0,46,44,15,1,0,1,0,31.001705,31.001705,0,0,0,0,0,0,0,0,0,0,0,8.26509,0,0,0,57.060001,57.759998,54.689999,57.470001,6,1,1,0,0,9,5,1,1999.5,1038605.5,0,0,6914.668 -4186,5175,9440,9439,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,5,6.132597,5.8852415,0,1,0,-9,7,0,0,-26.884624,0,0,0,57,1,5,1,2,2,2019,1,1,7,0,15,15,15,1,0,1,0,3.1512239,3.1512239,0,0,0,0,0,0,0,0,0,0,0,8.0436754,0,0,0,54.689999,57.470001,57.060001,57.759998,7,1,1,0,0,9,5,1,1999.5,1038605.5,0,0,6914.668 -4186,5176,9441,-9,9440,9439,3,1,1,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1111.4901,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,1,1,552,0,0,0,0 -4186,5177,9442,-9,9440,9439,4,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1059.9156,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,1,1,858,0,0,0,0 -4187,5178,9443,9445,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,0,3,8.3962879,8.3087578,0,2,0,-9,23,0,0,-113.40053,0,0,1,42,2,3,1,2,3,2019,1,1,13,2,53,53,15,1,0,1,0,8.4140272,8.4140272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,30.4,54.810001,34.419998,5,1,1,0,0,4,4,1,1729,1259204,0,0,2883.4946 -4187,5178,9444,-9,9443,9445,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.76178,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,4,4,1,1729,1259204,0,0,2883.4946 -4187,5178,9445,9443,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.1673594,7.9385109,0,2,0,-9,23,0,0,140.35329,0,0,0,42,1,3,1,1,2,2019,1,2,7,0,38,40,15,1,0,1,0,12.521399,12.521399,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.810001,34.419998,47.91,30.4,6,1,1,0,0,4,4,1,1729,1259204,0,0,2883.4946 -4188,5179,9446,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,0,4,0,8.9208279,8.9208574,3,0,-9,0,1,0,-1153.4214,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.4545817,8.8765888,1.2624234,3,31.18,54.709999,-9,-9,5,1,1,0,0,6,5,1,908,0,0,0,4614.4321 -4189,5180,9447,9449,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,8.8181009,8.9965353,0,2,0,-9,18,0,1,-127.07332,0,0,0,45,1,3,1,2,2,2019,1,2,10,0,65,60,15,1,0,1,0,13.22,13.22,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,46.549999,58.299999,4,1,1,0,0,8,5,1,438.25,1461041.1,0,0,6374.1411 -4189,5180,9448,-9,9449,9447,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-868.61328,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,438.25,1461041.1,0,0,6374.1411 -4189,5180,9449,9447,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,3,8.9694586,9.1963425,0,2,0,-9,8,0,-1,7.2540445,0,0,0,46,1,3,1,-9,-9,2019,1,1,14,2,46,44,15,1,0,1,0,21.483957,21.483957,0,0,0,0,0,0,0,0,1,1,0,1.8878927,0,0,0,46.549999,58.299999,46.080002,57.200001,6,1,1,0,0,8,5,1,438.25,1461041.1,0,0,6374.1411 -4189,5180,9450,-9,9449,9447,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.4298,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,438.25,1461041.1,0,0,6374.1411 -4190,5181,9451,-9,-9,-9,1,1,0,30,3,0,1,0,2,-9,8,3,1,1,2,7.9655895,7.8097296,0,4,0,0,0,-9,0,-1107.1254,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,23,19,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.719999,35.27,-9,-9,2,1,1,0,1,9,3,0,1329,235445.94,0,0,330.45532 -4191,5182,9452,9453,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.0052986,8.2552223,4.5651722,1,0,-9,28,0,-3,20.881052,0,0,0,63,2,3,1,-9,-9,2019,1,1,10,1,1,40,15,1,0,1,0,360.01306,360.01306,0,0,0,0,0,0,0,0,0,0,0,4.5663714,4.6138954,0,0,43.369999,57.279999,49,48,4,1,1,0,0,11,4,1,655.5,969240.75,0,0,1925.4116 -4191,5182,9453,9452,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,7.181087,7.8710685,6.647943,1,0,-9,28,0,3,94.582603,0,0,0,60,3,3,1,3,3,2019,1,2,10,0,28,36,15,1,0,1,0,6.3457594,6.3457594,0,0,0,0,0,0,0,0,0,0,0,0,7.0245957,0,0,49,48,43.369999,57.279999,4,1,1,0,0,11,4,1,655.5,969240.75,0,0,1925.4116 -4192,5183,9454,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,4,9.3805046,9.3846827,0,3,0,0,0,-9,0,-1006.3751,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,57,75,15,1,0,-9,0,19.754673,19.754673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,7,5,0,501,-44228.047,0,0,2522.9001 -4193,5184,9455,9457,-9,-9,1,1,0,36,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-4,4.036407,0,0,1,40,2,4,1,2,2,2019,3,2,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,56.720001,54.790001,55.860001,6,1,1,0,0,9,4,1,235.66667,683781.81,0,0,2558.76 -4193,5184,9456,-9,9455,9457,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-864.21539,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,235.66667,683781.81,0,0,2558.76 -4193,5184,9457,9455,-9,-9,2,1,1,40,1,1,1,0,2,-9,2,1,0,0,4,9.0543776,8.838563,0,2,0,-9,6,0,4,26.284157,0,0,0,36,1,4,3,2,2,2019,2,1,6,0,60,60,15,1,0,3,0,15.993695,15.993695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,44.360001,56.720001,6,1,1,0,0,9,4,1,235.66667,683781.81,0,0,2558.76 -4194,5185,9458,9459,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,5,0,7.8906431,8.1863155,1,0,-9,10,0,-6,-38.454601,0,0,0,72,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.173419,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,12,4,1,277,1962773.8,0,0,4044.2627 -4194,5185,9459,9458,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,8.0875568,7.9780564,1,0,-9,10,0,6,-46.590061,0,0,0,66,1,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4835086,7.7736297,8.4299755,3,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,12,4,1,277,1962773.8,0,0,4044.2627 -4195,5186,9460,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,4,8.6624756,8.5211115,7.2461686,3,0,0,0,-9,0,-1129.2787,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,29,29,15,1,0,-9,0,24.067541,24.067541,0,0,0,0,0,0,0,0,1,1,0,6.6964192,7.3518949,0,0,61.27,43.200001,-9,-9,6,1,1,0,0,12,5,1,284,-11332.908,0,0,3101.7166 -4196,5187,9461,9462,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,0,4,7.5689931,7.3411899,0,1,0,-9,31,0,1,-76.730713,0,0,0,51,1,4,1,-9,-9,2019,1,1,8,0,38,40,15,1,0,1,0,5.8847523,5.8847523,0,0,0,0,0,0,0,0,0,0,0,5.6542048,0,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,5,4,1,2158.5,1174397.5,0,0,4417.3428 -4196,5187,9462,9461,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.4742889,8.7622242,0,1,0,-9,31,0,-1,31.417246,0,0,0,52,2,4,1,2,3,2019,1,2,9,0,38,45,15,1,0,1,0,12.967517,12.967517,0,0,0,0,0,0,0,0,0,0,0,.64773184,0,0,0,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,5,4,1,2158.5,1174397.5,0,0,4417.3428 -4197,5188,9463,9464,-9,-9,2,1,0,31,1,1,2,0,1,-9,2,1,0,0,3,8.6390257,8.6106834,0,2,0,-9,6,0,-4,-88.99247,0,0,1,35,2,4,1,-9,-9,2019,1,1,12,0,34,30,15,1,0,1,0,19.975082,19.975082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,57.73,58.150002,52.91,6,1,1,0,0,7,5,1,536.25,811922.25,0,0,5568.1436 -4197,5188,9464,9463,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,4,9.0221176,8.9499207,0,2,0,-9,6,0,4,18.779964,0,0,0,31,1,3,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,24.434296,24.434296,0,0,0,0,0,0,0,0,1,1,0,3.6570368,0,0,0,58.150002,52.91,44.720001,57.73,6,1,1,0,0,7,5,1,536.25,811922.25,0,0,5568.1436 -4197,5188,9465,-9,9463,9464,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.80444,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,536.25,811922.25,0,0,5568.1436 -4197,5188,9466,-9,9463,9464,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.2555,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,536.25,811922.25,0,0,5568.1436 -4198,5189,9467,-9,-9,-9,4,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,8.2773218,8.1095505,0,3,0,-9,0,0,0,-941.03027,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,37,0,15,1,0,-9,0,10.913159,10.913159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,4,6,0,0,12,4,1,513,66577.023,0,0,2213.9829 -4198,5190,9468,9469,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,7.5351863,7.4603992,0,1,0,-9,6,0,2,-68.04039,0,0,0,52,2,4,1,3,-9,2019,1,1,10,1,21,21,15,1,0,1,0,9.1557293,9.1557293,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,51,53,53,54,6,1,1,0,0,12,5,1,473.5,436768.63,0,0,4463.9121 -4198,5190,9469,9468,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.5641127,8.7619019,7.6830907,1,0,-9,6,0,-2,62.046967,-9,0,0,54,3,4,1,3,3,2019,1,2,9,1,36,0,15,1,0,1,0,22.131365,22.131365,0,0,0,0,0,0,0,0,0,0,0,7.2465067,7.7312064,0,0,53,54,51,53,6,1,1,0,0,12,5,1,473.5,436768.63,0,0,4463.9121 -4198,5191,9470,-9,9468,9469,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.3129253,8.3867712,0,3,0,-9,0,0,0,-811.06885,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,37,0,15,1,0,-9,1,12.635827,12.635827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,12,4,1,557,67664.734,0,0,1163.6848 -4199,5192,9471,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,8.035223,8.0128965,0,3,0,0,0,-9,0,-901.94843,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,38,38,15,1,0,-9,0,8.7754574,8.7754574,0,0,0,0,0,0,0,0,0,0,0,1.0825429,0,0,0,59.639999,38.580002,-9,-9,6,1,1,0,0,5,4,1,673,439094.34,0,0,1909.2887 -4200,5193,9472,9473,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,5,7.9156485,7.9014769,0,1,0,-9,8,0,-7,-98.384583,0,1,1,36,2,4,1,-9,-9,2019,1,1,8,0,41,44,15,1,0,1,0,7.7390428,7.7390428,0,0,0,0,0,0,0,0,0,0,0,3.2873132,0,0,0,48.77,60.16,41.619999,56.810001,6,1,1,0,0,4,5,1,373,1079761.3,0,0,3994.1238 -4200,5193,9473,9472,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,0,4,8.7137337,8.6230965,0,1,0,-9,8,0,7,-19.695833,0,0,0,29,2,5,1,2,2,2019,1,2,16,4,97,67,15,1,1,1,0,7.909348,7.909348,0,0,0,0,0,0,0,0,0,0,0,5.2931175,0,0,0,41.619999,56.810001,48.77,60.16,6,1,1,0,0,4,5,1,373,1079761.3,0,0,3994.1238 -4201,5194,9474,-9,-9,-9,1,1,0,90,3,0,0,0,1,-9,4,3,0,0,4,0,6.8644295,6.8049712,3,0,0,0,-9,0,-1004.4299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2830663,0,0,52.43,55.57,-9,-9,6,1,1,0,0,9,2,1,435,428224.78,0,0,1595.4121 -4201,5195,9475,-9,9474,-9,2,1,1,61,2,0,0,0,3,-9,2,1,0,0,3,7.4855523,7.6546307,0,3,0,0,0,-9,0,-889.64813,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,39,39,15,1,1,-9,1,7.8970609,7.8970609,0,0,0,0,0,0,0,7,1,1,0,.88326401,0,1.5092235,3,39.369999,58.810001,-9,-9,3,1,1,0,0,9,3,1,652,282824.81,0,0,628.49872 -4202,5196,9476,9477,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,7.2655578,7.4231119,1,0,-9,50,0,3,-46.128868,0,0,0,67,3,1,3,3,3,2019,4,2,24,11,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.4768863,111.34961,1,27.32,39.119999,34.029999,28.360001,1,1,1,0,0,4,2,1,514,608811.06,0,0,912.49573 -4202,5196,9477,9476,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,50,0,-3,-84.067146,0,0,0,70,2,1,3,3,3,2019,4,1,21,8,0,0,15,4,1,4,0,0,0,1,16.016634,128.23668,0,0,0,153.73308,74.5,1,1,0,2.394016,0,80.622772,1,34.029999,28.360001,27.32,39.119999,5,1,1,0,0,4,2,1,514,608811.06,0,0,912.49573 -4203,5197,9478,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1041.9865,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.360001,17.32,-9,-9,4,1,1,0,0,6,1,1,369,-229272.95,0,0,1612.8623 -4204,5198,9479,-9,9483,9480,7,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1005.1263,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.02,57.639999,-9,-9,5,2,3,0,0,6,1,1,1136.6,-40903.359,0,0,1992.3966 -4204,5198,9480,9483,-9,-9,1,1,1,53,1,0,3,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,8,0,8,0,0,0,0,45,3,2,3,3,3,2019,2,2,11,1,20,16,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6883712,0,0,0,50,50,38.509998,48.900002,5,2,3,0,0,6,1,1,1136.6,-40903.359,0,0,1992.3966 -4204,5198,9481,-9,9483,9480,9,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1060.0406,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,1,1,1136.6,-40903.359,0,0,1992.3966 -4204,5198,9482,-9,9483,9480,8,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-913.61292,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,6,1,1,1136.6,-40903.359,0,0,1992.3966 -4204,5198,9483,9480,-9,-9,2,1,0,45,1,0,3,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,8,0,-8,0,0,0,0,53,2,3,1,3,3,2019,3,1,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.575222,3,38.509998,48.900002,50,50,2,2,3,0,1,6,1,1,1136.6,-40903.359,0,0,1992.3966 -4204,5199,9484,-9,9483,9480,4,1,0,25,2,0,3,0,1,-9,1,1,0,0,5,8.5726223,8.8799858,0,3,0,0,0,-9,0,-964.43298,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,1,40,45,15,1,0,-9,1,12.135419,12.135419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,61.950001,-9,-9,5,2,3,0,0,6,4,1,248,198031.42,0,0,2482.7361 -4204,5200,9485,-9,9483,9480,6,1,0,21,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1015.4416,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.8662682,3,41,55.369999,-9,-9,7,2,3,0,0,6,1,1,1282,0,0,0,724.70178 -4205,5201,9486,9487,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,4.6502471,4.3426476,1,0,-9,7,0,-3,-91.205658,0,0,0,71,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0535455,4.8176675,0,0,43.369999,57.279999,57.66,45.080002,6,1,1,0,0,11,3,1,628,1465584.8,0,0,3072.835 -4205,5201,9487,9486,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,8.5024633,8.2811146,1,0,-9,7,0,3,34.211784,0,0,0,68,3,3,3,2,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2228565,0,0,57.66,45.080002,43.369999,57.279999,6,2,3,0,0,11,3,1,628,1465584.8,0,0,3072.835 -4206,5202,9488,-9,-9,-9,1,1,0,88,2,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1008.3474,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,44,-9,-9,6,1,1,0,0,12,1,1,410,-27649.203,0,0,1210.928 -4206,5203,9489,-9,9488,-9,2,1,0,49,2,0,0,0,1,-9,2,1,0,0,4,8.3461151,8.5740681,0,3,0,0,0,-9,0,-963.5141,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,28,28,15,1,0,-9,1,16.385061,16.385061,0,0,0,0,0,0,0,42,1,1,0,0,0,32.926743,3,57.16,56.150002,-9,-9,6,4,2,0,0,12,4,1,915,172561.53,0,0,886.47437 -4207,5204,9490,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,3,7.5420265,7.8009663,0,3,0,0,0,-9,0,-944.87915,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,38,40,15,1,0,-9,0,7.7664695,7.7664695,0,0,0,0,0,0,0,0,0,0,0,2.8586214,0,0,0,49,41.16,-9,-9,4,1,1,0,0,2,4,1,408,18497.074,0,0,1498.601 -4208,5205,9491,-9,9493,9492,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,5,8.4398222,8.4417696,0,3,0,0,0,-9,0,-1013.6329,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,2,44,38,15,1,0,-9,1,10.270893,10.270893,0,0,0,0,0,0,0,7,0,0,0,2.1280351,0,6.3502798,3,40.599998,48.889999,-9,-9,5,1,1,0,0,9,4,1,325,107850.85,0,0,2957.9631 -4208,5206,9492,9493,-9,-9,3,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.9664078,8.8644533,0,1,0,-9,5,0,0,62.143467,0,0,0,53,2,3,1,-9,-9,2019,1,2,11,0,48,48,15,1,0,1,0,17.650036,17.650036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.189999,58.009998,46.98,43.240002,6,1,1,0,0,9,5,1,1285.5,491604.56,0,0,9841.5664 -4208,5206,9493,9492,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,9.06738,9.211463,0,1,0,-9,5,0,0,125.67452,0,0,0,53,2,3,1,-9,-9,2019,1,3,15,3,54,50,15,1,0,1,0,17.639637,17.639637,0,0,0,0,0,0,0,14.5,0,0,0,9.6041584,0,15.158184,3,46.98,43.240002,44.189999,58.009998,5,1,1,0,0,9,5,1,1285.5,491604.56,0,0,9841.5664 -4209,5207,9494,9496,-9,-9,1,1,0,27,1,0,1,0,1,-9,1,1,0,0,4,7.2453914,7.300909,0,2,0,-9,5,0,-1,-9.2223196,0,1,1,28,2,1,3,2,-9,2019,2,2,8,0,30,45,15,1,0,3,0,6.0605068,6.0605068,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.368261,1,45.91,59.889999,48.490002,18.52,6,1,1,0,0,1,2,0,1554,-30567.975,0,0,1637.4537 -4209,5207,9495,-9,9494,9496,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.34045,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,2,0,1554,-30567.975,0,0,1637.4537 -4209,5207,9496,9494,-9,-9,2,1,1,28,1,0,1,0,2,-9,3,3,0,0,1,0,0,0,2,0,-9,5,0,1,30.570866,0,1,0,27,1,4,1,-9,-9,2019,3,1,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.490002,18.52,45.91,59.889999,4,1,1,1,1,1,2,0,1554,-30567.975,0,0,1637.4537 -4210,5208,9497,9498,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,1,3,8.3544455,8.2705193,0,1,0,-9,35,0,3,33.632736,0,0,0,61,2,2,1,2,3,2019,1,1,14,4,37,37,15,1,1,1,0,9.5526581,9.5526581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.419998,48.119999,38.16,28.6,6,1,1,0,0,12,5,1,148,242285.94,0,0,3002.5381 -4210,5208,9498,9497,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,8.329566,8.3004923,0,1,0,-9,35,0,-3,82.56292,0,0,0,64,3,3,1,2,3,2019,1,2,19,7,38,38,15,1,1,1,0,12.818128,12.818128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,28.6,51.419998,48.119999,3,1,1,0,0,12,5,1,148,242285.94,0,0,3002.5381 -4211,5209,9499,9500,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,6.0501785,5.8621178,1,0,-9,43,0,-1,-18.305275,0,0,0,64,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3622975,6.1537704,0,0,57.330002,53.459999,56.57,57.779999,6,1,1,0,0,7,4,1,9053.5,1622417,0,0,2566.7783 -4211,5209,9500,9499,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.3288212,8.3445444,1,0,-9,43,0,1,46.445618,0,0,0,63,2,3,3,2,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3899078,8.5701828,0,0,56.57,57.779999,57.330002,53.459999,6,1,1,0,0,7,4,1,9053.5,1622417,0,0,2566.7783 -4212,5210,9501,9502,-9,-9,1,1,1,49,1,0,0,0,3,-9,1,1,0,0,3,5.8122549,5.7332015,0,1,0,-9,32,0,0,-72.83252,0,0,0,49,2,4,1,2,2,2019,1,2,7,0,35,39,15,1,0,1,0,1.0129344,1.0129344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,58.150002,52.91,6,1,1,0,0,4,4,1,614.5,367203.06,0,0,518.41949 -4212,5210,9502,9501,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,8.489893,8.6942167,0,1,0,-9,32,0,0,-57.391682,0,0,0,49,3,3,1,2,2,2019,1,1,6,0,35,35,15,1,0,1,0,21.256136,21.256136,0,0,0,0,0,0,0,0,0,0,0,4.0190945,0,0,0,58.150002,52.91,59.32,46.98,7,1,1,0,0,4,4,1,614.5,367203.06,0,0,518.41949 -4213,5211,9503,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,0,4,9.0089006,8.9185877,0,3,0,0,0,-9,0,-1050.7687,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,55,60,15,1,0,-9,0,17.604,17.604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.709999,62.41,-9,-9,6,1,1,0,0,9,5,0,396,-118891.71,0,0,2990.5601 -4214,5212,9504,9505,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,4.7502179,4.6597171,0,1,0,-9,49,0,-1,-39.372467,0,0,0,69,2,2,3,3,2,2019,4,1,12,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2735167,0,.39047477,1,52.48,54.330002,56.349998,35.099998,6,1,1,0,0,11,2,1,1201.5,111373.14,0,0,480.64737 -4214,5212,9505,9504,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,1,-101.22598,0,0,0,68,3,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,35.099998,52.48,54.330002,6,1,1,0,0,11,2,1,1201.5,111373.14,0,0,480.64737 -4215,5213,9506,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,8,3,1,1,1,0,5.1810193,5.1987815,3,0,0,0,-9,0,-964.39734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,1,26.769985,0,0,0,0,216.7007,0,1,1,0,0,5.1279049,0,0,31.370001,25.360001,-9,-9,3,1,1,0,0,4,2,0,288,-70766.906,0,0,1510.5641 -4216,5214,9507,9508,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,7.4028039,7.5934763,0,1,0,-9,8,0,-1,-48.271515,0,0,0,49,2,3,1,-9,-9,2019,1,1,9,1,80,75,15,1,0,1,0,2.6935084,2.6935084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,33.830002,57.610001,6,1,1,0,0,6,3,1,1930.5,189216.52,0,0,387.46393 -4216,5214,9508,9507,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.5979767,7.6071815,0,1,0,-9,27,0,1,-1.6935737,0,0,0,48,2,4,1,1,2,2019,1,2,14,2,50,45,15,1,0,1,0,4.0387788,4.0387788,0,0,0,0,0,0,0,0,0,0,0,1.2485846,0,0,0,33.830002,57.610001,52,55,5,1,1,0,0,6,3,1,1930.5,189216.52,0,0,387.46393 -4216,5215,9509,-9,9508,9507,4,1,1,18,2,0,0,0,2,-9,2,1,0,0,4,7.948153,7.7161779,0,3,0,0,0,-9,0,-1008.0403,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,0,15,1,0,-9,1,6.25493,6.25493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,3,1,1179,-34430.785,0,0,1851.0491 -4217,5216,9510,-9,9514,9512,7,1,0,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.5782,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,2,3,0,0,2,2,1,1047.6,273951.81,0,0,1964.7037 -4217,5216,9511,-9,9514,9512,4,1,0,16,2,0,5,0,2,-9,3,2,0,0,5,0,0,0,2,0,0,0,-9,0,-995.80554,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,1,0,2,2,1,1047.6,273951.81,0,0,1964.7037 -4217,5216,9512,9514,-9,-9,2,1,1,45,1,0,5,0,2,-9,2,1,0,0,4,6.9460263,7.3502684,0,2,0,-9,7,0,0,-39.323238,0,0,0,45,2,2,3,3,3,2019,2,1,9,1,24,20,15,1,0,3,0,5.7611022,5.7611022,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,55,40.119999,41.220001,6,2,3,0,0,2,2,1,1047.6,273951.81,0,0,1964.7037 -4217,5216,9513,-9,9514,9512,8,1,1,3,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.1127,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,2,1,1047.6,273951.81,0,0,1964.7037 -4217,5216,9514,9512,-9,-9,1,1,0,45,1,0,5,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,24,0,0,-107.00914,0,0,0,45,2,4,1,3,3,2019,3,2,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.119999,41.220001,52,55,5,2,3,1,0,2,2,1,1047.6,273951.81,0,0,1964.7037 -4217,5217,9515,-9,9514,9512,3,1,1,18,2,0,5,0,2,1,2,1,0,0,4,6.7940445,6.9813046,0,3,0,0,0,-9,0,-971.88544,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,24,0,15,1,0,-9,1,4.5583539,4.5583539,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,2,2,1,451,-5836.1113,0,0,1195.9733 -4218,5218,9516,9517,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,0,3,7.2719288,6.9795313,0,1,0,-9,34,0,6,40.88089,0,0,0,50,1,4,1,1,1,2019,1,1,19,7,30,30,15,1,1,1,0,4.7878737,4.7878737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.93,32.259998,55.43,45.880001,1,2,3,0,1,2,4,1,731,193855.61,0,0,1512.0027 -4218,5218,9517,9516,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.0437775,8.2134657,0,1,0,-9,34,0,-6,-10.480857,0,0,0,56,3,3,1,3,3,2019,1,2,11,0,57,40,15,1,0,1,0,8.542243,8.542243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.43,45.880001,35.93,32.259998,6,2,3,0,0,2,4,1,731,193855.61,0,0,1512.0027 -4218,5219,9518,-9,9517,9516,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,5,8.1465483,7.700407,0,3,0,0,0,-9,0,-781.93976,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,39,35,15,1,0,-9,1,8.3312283,8.3312283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,2,3,1,212,28017.408,0,0,1184.0636 -4218,5220,9519,-9,9517,9516,4,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1032.3325,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,2,3,0,0,2,1,1,669,99124.438,0,0,-128.17586 -4218,5221,9520,-9,9517,9516,5,1,1,20,3,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-926.60681,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,5,2,3,0,1,2,1,1,1061,-271966.56,0,0,1157.3286 -4219,5222,9521,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-979.02203,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.4,32.380001,-9,-9,4,3,4,0,1,8,1,0,1003,-25257.996,0,0,2018.2623 -4220,5223,9522,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-960.85199,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1687026,3,51.66,28.08,-9,-9,4,4,2,1,0,8,1,0,159,67549.016,0,0,1739.8795 -4220,5224,9523,-9,9522,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-979.91577,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.459999,58.18,-9,-9,5,4,2,0,0,8,1,0,411,94513.43,0,0,-609.46136 -4221,5225,9524,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,7.1923184,7.4823818,0,3,0,0,0,-9,0,-983.76532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,22,22,15,1,0,-9,0,7.6163793,7.6163793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,3,4,0,0,8,3,0,301,60579.43,0,0,1344.7234 -4222,5226,9525,9526,-9,-9,2,1,0,35,1,0,1,0,2,-9,5,1,0,0,3,8.2702875,7.9675484,0,2,0,-9,6,0,3,54.624718,0,0,1,32,2,3,1,2,3,2019,1,1,13,1,34,37,15,1,0,1,0,10.382166,10.382166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.689999,49.509998,57.330002,53.459999,5,1,1,0,0,2,5,1,680.66669,287019.72,0,0,3500.7019 -4222,5226,9526,9525,-9,-9,1,1,1,32,1,0,1,0,2,-9,2,1,0,0,3,8.9648323,8.2117157,0,2,0,-9,6,0,-3,208.62186,0,0,0,35,2,3,1,3,2,2019,1,2,8,0,41,46,15,1,0,1,0,21.032911,21.032911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,36.689999,49.509998,5,1,1,0,0,2,5,1,680.66669,287019.72,0,0,3500.7019 -4222,5226,9527,-9,9525,9526,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.5468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,680.66669,287019.72,0,0,3500.7019 -4223,5227,9528,9529,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,42,0,5,25.337538,0,0,0,66,2,5,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.240002,42.389999,57.060001,57.759998,6,2,3,0,0,8,3,1,310.5,1389466.3,0,0,3057.5146 -4223,5227,9529,9528,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,5,0,7.8711686,7.9850225,1,0,-9,42,0,-5,37.624126,0,0,0,71,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1138389,8.0242004,0,0,57.060001,57.759998,63.240002,42.389999,6,1,1,0,0,8,3,1,310.5,1389466.3,0,0,3057.5146 -4224,5228,9530,9532,-9,-9,2,1,0,29,1,0,1,0,2,-9,2,1,0,0,4,8.2651443,7.8525434,0,2,0,-9,5,0,-11,82.985695,0,1,1,40,1,4,1,-9,-9,2019,1,1,16,4,37,37,15,1,1,1,0,9.4263439,9.4263439,0,0,0,0,0,0,0,7,1,1,0,0,0,8.6504107,3,46.5,58.259998,57.16,56.150002,6,1,1,0,0,12,5,1,452,1007937.1,0,0,3826.9565 -4224,5228,9531,-9,9530,-9,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-919.21875,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,12,5,1,452,1007937.1,0,0,3826.9565 -4224,5228,9532,9530,-9,-9,1,1,1,40,1,0,1,0,1,-9,2,1,0,0,4,9.1669092,9.1418447,0,2,0,-9,5,0,11,-106.03724,0,0,0,29,2,4,1,-9,-9,2019,1,2,7,0,42,42,15,1,0,1,0,23.567368,23.567368,0,0,0,0,0,0,0,0,1,1,0,1.1631902,0,0,0,57.16,56.150002,46.5,58.259998,6,1,1,0,0,12,5,1,452,1007937.1,0,0,3826.9565 -4225,5229,9533,-9,9536,9535,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.7603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,1273.6,190830.3,0,0,2552.2139 -4225,5229,9534,-9,9536,9535,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.54181,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,1273.6,190830.3,0,0,2552.2139 -4225,5229,9535,9536,-9,-9,2,1,1,40,1,0,3,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,11,0,6,-68.704643,0,0,0,34,2,5,1,2,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.04151,3,51.240002,58.84,48.18,61.799999,5,4,5,0,0,9,3,1,1273.6,190830.3,0,0,2552.2139 -4225,5229,9536,9535,-9,-9,1,1,0,34,1,0,3,0,2,-9,2,1,0,0,5,8.512043,8.3824444,0,2,0,-9,11,0,-6,43.939846,0,0,1,40,2,4,3,1,2,2019,2,2,20,6,40,40,15,1,1,3,0,11.904952,11.904952,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.648075,3,48.18,61.799999,51.240002,58.84,6,1,1,0,0,9,3,1,1273.6,190830.3,0,0,2552.2139 -4225,5229,9537,-9,9536,9535,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1056.8802,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,3,1,1273.6,190830.3,0,0,2552.2139 -4226,5230,9538,9539,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,0,-48.652424,0,0,0,66,3,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.759998,32.119999,49.200001,47.5,6,1,1,0,0,13,3,1,1912.5,1136978,0,0,2830.2046 -4226,5230,9539,9538,-9,-9,1,1,1,66,1,0,0,0,3,-9,2,1,0,0,3,7.9594831,8.0950069,4.5150809,1,0,-9,45,0,0,-84.606323,0,0,0,66,2,2,3,3,3,2019,2,2,8,1,39,40,15,1,0,4,0,8.8473825,8.8473825,0,0,0,0,0,0,0,0,1,1,0,4.8436737,5.1302681,0,0,49.200001,47.5,59.759998,32.119999,6,1,1,0,0,13,3,1,1912.5,1136978,0,0,2830.2046 -4227,5231,9540,9541,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.6068726,8.2193537,5.3478451,1,0,-9,7,0,-3,-80.771774,0,0,0,61,3,4,3,3,3,2019,2,2,11,0,37,37,15,1,0,4,0,12.752086,12.752086,0,0,0,0,0,0,0,0,0,0,0,5.5139675,5.5057373,0,0,51.639999,44.009998,54.200001,57.490002,6,1,1,0,0,12,4,1,137.5,1138723.5,0,0,2991.0442 -4227,5231,9541,9540,-9,-9,2,1,1,61,1,0,0,0,3,-9,4,3,0,0,4,0,7.5238047,7.6765676,1,0,-9,7,0,3,-72.082939,0,0,0,58,2,4,1,-9,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8144507,7.4394555,0,0,54.200001,57.490002,51.639999,44.009998,6,1,1,0,0,12,4,1,137.5,1138723.5,0,0,2991.0442 -4228,5232,9542,-9,9543,9545,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1054.4603,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,5,1,1,1453,331644.78,0,0,1191.3623 -4228,5232,9543,9545,-9,-9,2,1,0,46,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,-26,0,0,0,0,72,3,4,3,3,3,2019,4,1,7,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.490002,56.029999,56.330002,51.68,7,2,3,0,0,5,1,1,1453,331644.78,0,0,1191.3623 -4228,5232,9544,-9,9543,9545,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.5434,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,2,3,0,0,5,1,1,1453,331644.78,0,0,1191.3623 -4228,5232,9545,9543,-9,-9,1,1,1,72,1,0,2,0,3,-9,4,3,0,0,4,0,0,0,2,0,-9,15,0,26,0,0,0,0,46,3,3,3,3,3,2019,4,2,6,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.330002,51.68,37.490002,56.029999,7,2,3,0,0,5,1,1,1453,331644.78,0,0,1191.3623 -4229,5233,9546,9547,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,8.3760824,8.1457052,1,0,-9,48,0,0,45.877186,0,0,0,66,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7780824,8.327116,0,0,60.450001,43.75,55.360001,51.57,6,1,1,0,0,10,3,1,631.5,1105370.8,0,0,2515.272 -4229,5233,9547,9546,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,0,22.519268,0,0,0,66,2,3,3,2,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,60.450001,43.75,6,1,1,0,0,10,3,1,631.5,1105370.8,0,0,2515.272 -4230,5234,9548,9549,-9,-9,1,1,1,21,1,0,0,0,2,-9,2,1,0,0,5,7.9188213,8.0225296,0,1,0,-9,2,0,2,166.54349,0,1,0,19,2,4,1,2,2,2019,1,2,13,3,50,40,15,1,0,1,0,8.7527275,8.7527275,0,0,0,0,0,0,0,2,1,1,0,0,0,4.8210063,3,42.849998,62.849998,40.830002,59.68,5,1,1,0,0,5,4,0,349.5,-67220.188,0,0,2617.0503 -4230,5234,9549,9548,-9,-9,2,1,0,19,1,0,0,0,2,-9,2,1,0,0,4,8.0275059,7.7766047,0,1,0,-9,2,0,-2,-36.123409,0,1,1,21,2,5,1,-9,-9,2019,1,1,13,2,45,40,15,1,0,1,0,6.645977,6.645977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.830002,59.68,42.849998,62.849998,5,1,1,0,0,5,4,0,349.5,-67220.188,0,0,2617.0503 -4231,5235,9550,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,5.7518001,5.7544522,3,0,0,0,-9,0,-987.60236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8588004,0,0,50.610001,35.98,-9,-9,5,1,1,0,0,9,2,1,607,122898.75,0,0,346.57251 -4232,5236,9551,-9,9553,9552,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1015.825,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,10,2,0,472.83334,1216657.3,0,0,2571.303 -4232,5236,9552,9553,-9,-9,1,1,1,41,1,0,4,0,2,-9,2,1,0,0,4,8.2068768,8.1594515,0,2,0,-9,11,0,5,98.339996,0,0,0,36,2,3,3,2,2,2019,2,2,11,1,43,50,15,1,0,3,0,10.684929,10.684929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.169998,50.259998,52,54.509998,5,1,1,0,0,10,2,0,472.83334,1216657.3,0,0,2571.303 -4232,5236,9553,9552,-9,-9,2,1,0,36,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,11,0,-5,102.04484,0,0,1,41,2,4,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,46.169998,50.259998,6,1,1,0,0,10,2,0,472.83334,1216657.3,0,0,2571.303 -4232,5236,9554,-9,9553,9552,5,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.60718,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,0,472.83334,1216657.3,0,0,2571.303 -4232,5236,9555,-9,9553,9552,6,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.9041,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,2,0,472.83334,1216657.3,0,0,2571.303 -4232,5236,9556,-9,9553,9552,4,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-868.41492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,0,472.83334,1216657.3,0,0,2571.303 -4233,5237,9557,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,5,7.8776598,8.397193,7.6308327,3,0,0,0,-9,0,-1027.5923,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,29,15,1,0,-9,0,8.9335947,8.9335947,0,0,0,0,0,0,0,0,1,1,0,0,7.8253074,0,0,54.099998,59.110001,-9,-9,6,3,4,0,0,8,4,1,913,-133630.27,0,0,2611.9709 -4234,5238,9558,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,0,4,8.2831059,8.2252607,0,3,0,0,0,-9,0,-977.73199,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,36,36,15,1,0,-9,0,11.308558,11.308558,0,0,0,0,0,0,0,0,1,1,0,.89953142,0,0,0,57.16,56.150002,-9,-9,5,4,2,0,0,9,4,1,363,707888.69,0,0,1050.8901 -4235,5239,9559,9560,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,0,3,8.2086248,8.3459959,0,1,0,1,1,-9,0,161.99084,0,1,1,23,2,4,1,1,1,2019,1,2,15,4,35,14,15,1,1,1,0,9.136261,9.136261,0,0,0,0,0,0,0,0,0,0,0,2.3233006,0,0,0,44.34,49.98,49,58,6,1,1,0,0,9,5,1,341.5,6434.3242,0,0,3954.3308 -4235,5239,9560,9559,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,0,4,8.2113895,8.3313198,0,1,0,-9,1,-9,0,13.940531,-9,1,0,23,2,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,13.021844,13.021844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,44.34,49.98,5,1,1,0,0,9,5,1,341.5,6434.3242,0,0,3954.3308 -4236,5240,9561,9563,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.498107,8.3532658,0,2,0,-9,27,0,0,-24.864323,0,0,0,47,2,3,1,2,2,2019,1,1,9,0,47,43,15,1,0,1,0,10.676238,10.676238,0,0,0,0,0,0,0,0,1,1,0,3.6581571,0,0,0,54.790001,55.860001,46.59,56.950001,6,1,1,0,0,5,4,1,382.33334,425352.22,0,0,2679.0303 -4236,5240,9562,-9,9563,9561,4,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-868.00793,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,382.33334,425352.22,0,0,2679.0303 -4236,5240,9563,9561,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.0015221,8.2452497,0,2,0,-9,28,0,0,-49.791428,0,0,0,47,2,4,1,2,3,2019,1,2,12,0,34,33,15,1,0,1,0,16.568539,16.568539,0,0,0,0,0,0,0,0,1,1,0,3.6083927,0,0,0,46.59,56.950001,54.790001,55.860001,5,1,1,0,0,5,4,1,382.33334,425352.22,0,0,2679.0303 -4236,5241,9564,-9,9563,9561,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,3,7.5437512,7.7692904,0,3,0,0,0,-9,0,-1076.9098,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,5,44,40,15,1,1,-9,1,5.6449556,5.6449556,0,0,0,0,0,0,0,0,1,1,0,.1618166,0,0,0,37.439999,59.970001,-9,-9,2,1,1,0,0,5,3,1,231,-14662.597,0,0,1587.3326 -4237,5242,9565,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-980.13275,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.790001,39,-9,-9,6,1,1,0,0,7,1,0,581,23490.604,0,0,1502.4229 -4238,5243,9566,9567,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,5,8.3310652,8.1984501,0,2,0,-9,23,0,6,-2.4184346,0,0,0,39,3,3,1,1,1,2019,1,1,4,0,45,42,15,1,0,1,0,12.901127,12.901127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,55.27,44.810001,6,2,3,0,0,5,3,1,359,424794.94,0,0,1413.0129 -4238,5243,9567,9566,-9,-9,1,1,0,39,1,0,1,0,3,-9,2,1,0,0,3,7.1772718,7.3550749,0,2,0,-9,23,0,-6,-82.325027,0,0,1,45,1,5,1,2,2,2019,1,2,12,2,20,25,15,1,0,1,0,9.4461088,9.4461088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,44.810001,60.02,56.419998,5,2,3,0,1,5,3,1,359,424794.94,0,0,1413.0129 -4238,5244,9568,-9,9567,9566,3,1,0,18,2,0,1,0,2,1,2,1,0,0,3,5.918643,5.6497803,0,3,0,0,0,-9,0,-779.24634,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,16,5,6,0,15,1,1,-9,1,5.4759583,5.4759583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.110001,44.639999,-9,-9,5,2,3,0,0,5,2,1,1068,26170.859,0,0,620.07397 -4239,5245,9569,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,7.2832518,7.7309489,0,1,0,-9,2,0,-16,-30.713108,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,2,2,0,38,80,15,1,0,-9,0,5.3294826,5.3294826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,30.49,46.07,6,1,1,0,0,12,4,0,312,45100.781,0,0,1409.0131 -4239,5246,9570,-9,-9,-9,2,1,1,40,2,0,0,0,2,-9,2,1,0,0,2,8.4880447,8.5050898,0,1,0,-9,2,0,16,-36.304478,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,18,5,37,96,15,1,1,-9,0,13.475121,13.475121,0,0,0,0,0,0,0,0,0,0,0,7.0746694,0,0,0,30.49,46.07,57.060001,57.759998,4,1,1,0,0,12,4,0,107,-39216.207,0,0,3160.7278 -4240,5247,9571,9572,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,2,0,8.1613817,7.5077696,1,0,-9,44,0,0,32.544109,0,0,0,62,2,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0365217,7.8272285,0,0,36.32,49.16,30.940001,51.119999,5,1,1,0,0,11,3,1,557.5,1543371.9,0,0,1790.1589 -4240,5247,9572,9571,-9,-9,1,1,0,62,1,0,0,0,2,-9,6,3,0,0,2,0,3.9144154,4.4239669,1,0,-9,44,0,0,2.4509163,0,0,0,62,2,2,3,3,2,2019,4,2,21,9,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,2.8506742,3.896693,11.701541,2,30.940001,51.119999,36.32,49.16,3,1,1,0,0,11,3,1,557.5,1543371.9,0,0,1790.1589 -4241,5248,9573,-9,-9,-9,1,1,1,32,2,1,5,0,1,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.6969,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,2,3,1,0,8,1,0,275,-88125.117,0,0,0 -4242,5249,9574,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-981.98859,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.719999,22.57,-9,-9,2,1,1,0,0,10,1,0,1036,-75030.352,0,0,1577.0708 -4243,5250,9575,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,5,0,7.3133483,7.2311916,3,0,0,0,-9,0,-831.83826,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0373631,7.3123722,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,7,2,1,684,-54557.965,0,0,705.1308 -4244,5251,9576,9577,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,3,0,7.0319223,7.4131155,1,0,-9,53,0,2,127.38974,0,0,0,75,2,2,3,3,2,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.413548,6.9094172,19.849024,1,60.049999,37.77,30.709999,26.639999,7,4,5,0,0,4,2,1,337.5,637281.38,0,0,1163.2145 -4244,5251,9577,9576,-9,-9,2,1,0,75,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,53,0,-2,-61.264057,0,0,0,77,1,3,3,3,2,2019,4,1,21,8,0,0,15,3,1,4,0,0,0,1,0,68.682213,0,0,0,1.3400452,0,1,1,0,1.7003202,0,0,0,30.709999,26.639999,60.049999,37.77,3,1,1,0,0,4,2,1,337.5,637281.38,0,0,1163.2145 -4245,5252,9578,-9,-9,-9,1,1,0,51,3,0,1,0,3,-9,2,1,0,0,3,8.1689997,8.0540075,0,4,0,0,0,-9,0,-1082.793,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,38,70,15,1,0,-9,0,8.941618,8.941618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.740002,55.09,-9,-9,7,1,1,0,1,9,3,0,809,24363.254,0,0,3138.4583 -4246,5253,9579,9580,-9,-9,1,1,0,62,1,0,0,0,3,-9,1,1,0,0,3,7.2760634,7.508903,2.6117692,1,0,-9,36,0,0,92.486252,-9,0,0,71,2,4,3,-9,-9,2019,2,2,11,2,15,0,15,1,0,4,0,12.453506,12.453506,0,0,0,0,0,0,0,0,1,1,0,5.9781742,2.649436,0,0,49,48,57.16,56.150002,5,1,1,0,0,12,3,1,743.5,400138.63,0,0,1507.3469 -4246,5253,9580,9579,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.1092577,6.681952,1,0,-9,36,0,9,138.30336,0,0,0,62,3,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.0693092,0,0,57.16,56.150002,49,48,6,1,1,0,0,12,3,1,743.5,400138.63,0,0,1507.3469 -4247,5254,9581,9582,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,0,3,9.4470148,9.9079981,0,2,0,-9,11,0,1,-61.054832,0,0,0,43,1,5,3,3,3,2019,2,1,11,1,48,46,15,1,0,3,0,48.977535,48.977535,0,0,0,0,0,0,0,0,0,0,0,2.5886459,0,0,0,39.669998,56.169998,54.099998,59.110001,6,2,3,0,0,9,5,1,856.20001,5658883,0,0,4901.0269 -4247,5254,9582,9581,-9,-9,1,1,0,43,1,0,3,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,11,0,-1,-95.699448,0,0,1,44,1,3,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3379505,0,0,0,54.099998,59.110001,39.669998,56.169998,6,1,1,0,0,9,5,1,856.20001,5658883,0,0,4901.0269 -4247,5254,9583,-9,9582,9581,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1127.9336,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,5,1,856.20001,5658883,0,0,4901.0269 -4247,5254,9584,-9,9582,9581,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.24316,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,5,1,856.20001,5658883,0,0,4901.0269 -4247,5254,9585,-9,9582,9581,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.5469,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,5,1,856.20001,5658883,0,0,4901.0269 -4248,5255,9586,9587,-9,-9,2,1,0,54,1,0,1,0,1,-9,2,1,0,0,4,8.9049187,8.8310633,0,2,0,-9,26,0,-3,-97.209999,0,0,0,57,1,4,1,1,1,2019,1,1,8,0,26,29,15,1,0,1,0,27.28022,27.28022,0,0,0,0,0,0,0,0,1,1,0,6.3782735,0,0,0,57.16,56.150002,54.599998,55.889999,6,1,1,0,0,6,5,1,395.33334,862792.06,0,0,5954.2827 -4248,5255,9587,9586,-9,-9,1,1,1,57,1,0,1,0,1,-9,2,1,0,0,4,8.882987,8.9630919,0,2,0,-9,23,0,3,51.385418,-9,0,0,54,1,4,1,2,2,2019,1,2,11,0,37,0,15,1,0,1,0,18.256945,18.256945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.599998,55.889999,57.16,56.150002,3,1,1,0,0,6,5,1,395.33334,862792.06,0,0,5954.2827 -4248,5255,9588,-9,9586,9587,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.264,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,395.33334,862792.06,0,0,5954.2827 -4248,5256,9589,-9,9586,9587,3,1,0,18,2,0,1,1,2,0,7,2,0,0,3,4.8455729,5.0166669,0,3,0,0,0,-9,0,-1023.9457,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,8,3,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,55.599998,-9,-9,5,1,1,0,1,6,2,1,2229,-4136.9048,0,0,1367.2418 -4249,5257,9590,9591,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,8.2485552,8.5394449,1,0,-9,55,0,1,11.460215,0,0,0,78,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71988761,8.2972612,0,0,61.279999,48.880001,59.07,43.049999,6,1,1,0,0,9,3,1,643,1503734.8,0,0,3460.2468 -4249,5257,9591,9590,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,-1,-1.5886722,0,0,0,79,1,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.9453952,0,0,0,59.07,43.049999,61.279999,48.880001,5,1,1,0,0,9,3,1,643,1503734.8,0,0,3460.2468 -4250,5258,9592,9594,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,0,4,8.8082743,8.7948923,0,2,0,-9,5,0,2,-89.449989,-9,1,0,26,2,4,1,-9,-9,2019,1,1,10,1,80,0,15,1,0,1,0,9.7270498,9.7270498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,51.830002,57.200001,5,1,1,0,0,13,4,0,932,465106.94,0,0,3878.3499 -4250,5258,9593,-9,9594,9592,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1120.6262,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,0,932,465106.94,0,0,3878.3499 -4250,5258,9594,9592,-9,-9,1,1,0,26,1,1,1,0,2,-9,2,1,0,0,4,7.4220805,7.4801197,0,2,0,-9,5,0,-2,48.569683,0,1,1,28,2,4,1,2,-9,2019,1,2,15,3,15,30,15,1,0,1,0,12.755422,12.755422,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,49,58,6,1,1,0,0,13,4,0,932,465106.94,0,0,3878.3499 -4251,5259,9595,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1004.384,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,52.5,-9,-9,5,1,1,0,0,7,1,1,392,50280.504,0,0,565.60809 -4252,5260,9596,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,8.1148577,7.9699888,3,0,0,0,-9,0,-1060.6522,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,5.3819413,0,0,1,1,0,5.1349287,8.1791992,0,0,34.049999,30.49,-9,-9,4,1,1,0,0,8,4,1,337,228300.08,0,0,3324.7458 -4253,5261,9597,-9,9598,9600,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.21814,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,4,1,786.75,102367.72,0,0,3333.2898 -4253,5261,9598,9600,-9,-9,1,1,0,49,1,0,3,0,2,-9,1,1,0,0,3,7.4014945,7.4038997,0,2,0,-9,8,0,-2,84.16745,0,0,0,51,3,4,1,-9,-9,2019,1,2,6,0,30,22,15,1,0,1,0,7.3854175,7.3854175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,53,55,6,1,1,0,0,8,4,1,786.75,102367.72,0,0,3333.2898 -4253,5261,9599,-9,9598,9600,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.3264,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,4,1,786.75,102367.72,0,0,3333.2898 -4253,5261,9600,9598,-9,-9,2,1,1,51,1,0,3,0,3,-9,2,1,0,0,4,8.8671465,8.4660101,0,2,0,-9,8,0,2,-58.023308,0,0,0,49,2,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,15.609284,15.609284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,57.330002,53.459999,6,4,1,0,0,8,4,1,786.75,102367.72,0,0,3333.2898 -4254,5262,9601,9602,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.4984484,8.9167767,7.7367802,1,0,-9,35,0,1,-37.882343,0,0,0,54,2,5,1,1,1,2019,1,2,10,0,37,37,15,1,0,1,0,14.449672,14.449672,0,0,0,0,0,0,0,0,0,0,0,4.0706773,8.2258539,0,0,57.330002,53.459999,58.049999,54.52,6,1,1,0,0,4,5,1,391,134624.98,0,0,5858.752 -4254,5262,9602,9601,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,7.6388664,8.4086065,7.7153287,1,0,-9,9,0,-1,29.014139,0,0,0,55,2,3,1,-9,-9,2019,1,1,8,1,24,24,15,1,0,1,0,8.7071123,8.7071123,0,0,0,0,0,0,0,0,0,0,0,6.2471433,7.8960395,0,0,58.049999,54.52,57.330002,53.459999,2,1,1,0,0,4,5,1,391,134624.98,0,0,5858.752 -4255,5263,9603,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,0,5,0,6.7705812,7.0171623,3,0,0,0,-9,0,-1100.9808,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9905913,6.5189047,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,7,2,0,1328,710728.56,0,0,-800.32471 -4256,5264,9604,9606,-9,-9,2,1,0,41,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,-2,8.3514328,0,0,1,43,1,3,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9632268,0,0,0,51.41,56.150002,50.18,52.619999,6,1,1,0,0,8,3,1,693.5,760909.25,0,0,2161.8616 -4256,5264,9605,-9,9604,9606,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.55304,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,3,1,693.5,760909.25,0,0,2161.8616 -4256,5264,9606,9604,-9,-9,1,1,1,43,1,0,2,0,1,-9,1,1,0,0,3,8.6806231,8.3083477,0,2,0,-9,15,0,2,-11.664912,0,0,0,41,1,3,3,2,2,2019,2,2,12,0,38,45,15,1,0,3,0,13.694324,13.694324,0,0,0,0,0,0,0,0,0,0,0,3.5746944,0,0,0,50.18,52.619999,51.41,56.150002,6,1,1,0,0,8,3,1,693.5,760909.25,0,0,2161.8616 -4256,5264,9607,-9,9604,9606,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.59894,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,3,1,693.5,760909.25,0,0,2161.8616 -4257,5265,9608,9609,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,2,0,6.8212609,6.872304,1,0,-9,9,0,4,-155.06265,0,0,0,68,1,2,1,2,1,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5826623,6.764802,0,3,44.970001,44.610001,61.68,28.84,6,1,1,0,0,7,3,1,474.5,2145142.5,0,0,3321.1045 -4257,5265,9609,9608,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,2,7.5886846,8.1743727,6.002378,1,0,-9,9,0,-4,-196.76242,0,0,0,72,1,2,3,3,2,2019,2,1,7,0,19,18,15,1,0,4,0,16.364452,16.364452,1,0,0,0,0,0,0,0,1,1,0,3.7771802,6.1649652,0,0,61.68,28.84,44.970001,44.610001,6,1,1,0,0,7,3,1,474.5,2145142.5,0,0,3321.1045 -4258,5266,9610,-9,-9,-9,1,1,0,65,2,1,2,0,2,-9,2,1,0,0,3,7.6162324,7.6421685,4.1324792,4,0,0,0,-9,0,-1101.2386,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,30,15,1,0,-9,0,7.8108525,7.8108525,0,0,0,0,0,0,0,0,1,1,0,0,4.1201696,0,0,54.610001,49.130001,-9,-9,5,1,1,0,0,9,3,1,122,424383.03,0,0,1041.4525 -4258,5267,9611,9612,9610,-9,2,1,1,35,1,1,2,0,2,-9,1,1,0,0,3,7.8135171,7.8788738,0,2,0,-9,1,-9,5,183.4998,-9,0,0,30,1,3,1,2,-9,2019,1,3,12,0,40,0,15,1,0,1,0,5.7218499,5.7218499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,49.18,51.650002,5,1,1,0,0,9,3,1,1424.25,468469.56,0,0,2401.5554 -4258,5267,9612,9611,-9,-9,3,1,0,30,1,1,2,0,1,-9,5,1,0,0,3,7.450357,7.6436324,0,2,0,-9,1,-9,-5,-72.445007,-9,0,1,35,2,3,1,-9,-9,2019,1,2,12,2,42,0,15,1,0,1,0,5.2982774,5.2982774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.18,51.650002,41.34,56.619999,6,1,1,0,0,9,3,1,1424.25,468469.56,0,0,2401.5554 -4258,5267,9613,-9,9612,9611,4,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-947.63843,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,3,1,1424.25,468469.56,0,0,2401.5554 -4258,5267,9614,-9,9612,9611,5,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-973.54364,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,3,1,1424.25,468469.56,0,0,2401.5554 -4259,5268,9615,9616,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.3703518,7.1299481,1,0,-9,48,0,-3,-117.5079,0,0,0,71,2,3,3,2,2,2019,4,2,6,0,0,25,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.061189774,7.0924683,0,0,58.150002,52.91,57.330002,53.459999,7,1,1,0,0,2,3,1,805.5,779230.81,0,0,3696.3652 -4259,5268,9616,9615,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.4332142,7.6137595,1,0,-9,48,0,3,-24.938757,0,0,0,68,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4803228,0,0,57.330002,53.459999,58.150002,52.91,6,1,1,0,0,2,3,1,805.5,779230.81,0,0,3696.3652 -4260,5269,9617,-9,-9,-9,1,1,1,41,3,0,2,0,2,-9,1,1,0,0,4,7.1941023,7.1266103,0,4,0,-9,0,-9,0,-925.06476,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,48,0,15,1,0,-9,0,4.9134722,4.9134722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,8,2,1,285,16425.441,0,0,362.3284 -4261,5270,9618,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,8.0902605,8.4337263,0,3,0,-9,0,-9,0,-1062.5383,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,0,15,1,0,-9,0,10.398796,10.398796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,48.32,-9,-9,6,1,1,0,0,4,4,1,542,325140.59,0,0,1028.8066 -4262,5271,9619,9620,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,-6,-33.751343,0,0,0,83,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.9202243,0,7.1478562,1,42.849998,40.939999,51.139999,36.950001,4,1,1,0,0,8,2,1,173.5,925238.13,0,0,1012.3445 -4262,5271,9620,9619,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,6.2693181,6.5311832,1,0,-9,61,0,6,-24.3512,0,0,0,77,3,3,3,2,3,2019,4,2,10,3,0,0,15,4,0,4,0,0,0,1,0,7.7803574,0,0,0,0,0,1,1,0,0,6.3335447,0,0,51.139999,36.950001,42.849998,40.939999,6,1,1,0,0,8,2,1,173.5,925238.13,0,0,1012.3445 -4263,5272,9621,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,0,3,0,7.5789843,7.5577922,3,0,0,0,-9,0,-983.53656,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1348724,7.6384206,0,0,59.459999,46.990002,-9,-9,6,1,1,0,0,9,3,1,427,690051,0,0,4049.0691 -4264,5273,9622,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-940.05444,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.189999,58.610001,-9,-9,5,1,1,0,0,9,1,0,376,0,0,0,854.81976 -4265,5274,9623,-9,9624,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1059.2675,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,1,744.66669,63355.41,0,0,1149.3838 -4265,5274,9624,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,1,1,0,0,4,7.0274224,7.0427556,0,4,0,0,0,-9,0,-1000.0751,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,35,37,15,1,0,-9,0,3.8913705,3.8913705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,2,1,744.66669,63355.41,0,0,1149.3838 -4265,5274,9625,-9,9624,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-947.81409,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,1,744.66669,63355.41,0,0,1149.3838 -4266,5275,9626,-9,-9,-9,1,1,1,50,3,0,1,0,3,-9,1,1,0,0,3,6.3553782,6.2784934,0,4,0,0,0,-9,0,-961.53009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,35,15,1,0,-9,0,1.3994758,1.3994758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,2,2,0,348,-21311.83,0,0,793.56317 -4267,5276,9627,9628,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,5.2054977,5.2630177,1,0,-9,43,0,-2,-37.950108,0,0,0,65,1,2,3,-9,-9,2019,4,1,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1196327,4.3280272,12.644866,3,60.439999,46.580002,52.040001,27.620001,6,1,1,0,0,2,3,1,1468,1426647,0,0,3853.657 -4267,5276,9628,9627,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,2,0,8.2805071,7.9182596,1,0,-9,43,0,2,73.43679,0,0,0,63,2,3,3,2,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1367054,0,0,52.040001,27.620001,60.439999,46.580002,5,1,1,0,0,2,3,1,1468,1426647,0,0,3853.657 -4268,5277,9629,9630,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,1,4,0,2.1664436,2.5695655,1,0,-9,57,0,1,-154.19554,0,0,0,78,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,.5974164,2.4203274,.10278603,1,67.910004,36.189999,45.009998,22.790001,6,1,1,0,0,5,1,1,751,153909.28,0,0,2458.5986 -4268,5277,9630,9629,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,57,0,-1,49.397232,0,0,0,79,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,.1771652,0,15.476265,1,45.009998,22.790001,67.910004,36.189999,7,1,1,0,0,5,1,1,751,153909.28,0,0,2458.5986 -4269,5278,9631,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1005.0663,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.150002,32.66,-9,-9,6,1,1,0,0,1,1,1,175,-40935.184,0,0,2239.4888 -4270,5279,9632,9633,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,4.7922521,4.5445085,1,0,-9,52,0,4,23.353952,0,0,0,65,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0288153,5.0905275,3.9256763,3,51.889999,51.110001,58.830002,30.76,7,1,1,0,0,4,2,1,346.5,659492.5,0,0,2054.3193 -4270,5279,9633,9632,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,6.8848572,7.0711322,1,0,-9,7,0,-4,-61.966686,0,0,0,69,3,2,3,-9,-9,2019,4,1,11,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.4081578,7.3813019,1.7339478,3,58.830002,30.76,51.889999,51.110001,7,1,1,0,0,4,2,1,346.5,659492.5,0,0,2054.3193 -4270,5280,9634,-9,-9,-9,3,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,8.1452551,8.6685085,0,3,0,0,0,-9,0,-1098.0148,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,37,15,1,0,-9,0,11.6113,11.6113,0,0,0,0,0,0,0,0,1,1,0,4.5727496,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,4,4,1,466,255910,0,0,379.04797 -4271,5281,9635,-9,9636,9637,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.158,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,3,1,469.66666,557675.5,0,0,3083.4541 -4271,5281,9636,9637,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,7.4517379,7.9372211,0,2,0,-9,18,0,-1,-59.328461,0,0,1,37,1,4,1,2,2,2019,1,2,7,0,30,45,15,1,0,1,0,8.6723356,8.6723356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,62.490002,55.09,6,1,1,0,0,8,3,1,469.66666,557675.5,0,0,3083.4541 -4271,5281,9637,9636,-9,-9,2,1,1,37,1,0,2,0,1,-9,1,1,0,0,4,8.1641502,8.5216007,0,2,0,-9,18,0,1,-2.5652664,0,0,0,36,1,3,1,2,2,2019,1,1,6,0,50,60,15,1,0,1,0,7.0374584,7.0374584,0,0,0,0,0,0,0,0,1,1,0,1.4510162,0,0,0,62.490002,55.09,54.959999,53.169998,6,1,1,0,0,8,3,1,469.66666,557675.5,0,0,3083.4541 -4272,5282,9638,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,3,0,6.4002228,6.4098306,3,0,-9,0,-9,0,-1072.6356,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.285727,6.1064487,0,0,57.029999,48.060001,-9,-9,6,1,1,0,0,6,2,1,321,237582.38,0,0,687.35565 -4273,5283,9639,9640,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,0,3,4.1478443,6.8304567,7.3878651,1,0,-9,38,0,1,-26.731918,0,0,0,56,1,5,1,2,-9,2019,3,1,16,4,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9750991,0,0,48.450001,57.490002,57.060001,57.759998,4,1,1,0,0,6,4,1,531.5,-29602.609,0,0,3039.4199 -4273,5283,9640,9639,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,0,5,8.4072371,8.6317863,0,1,0,-9,35,0,-1,71.021835,0,0,0,57,2,3,3,1,2,2019,2,2,8,0,40,45,15,1,0,4,0,17.035238,17.035238,0,0,0,0,0,0,0,0,0,0,0,6.6139755,0,0,0,57.060001,57.759998,48.450001,57.490002,6,1,1,0,0,6,4,1,531.5,-29602.609,0,0,3039.4199 -4273,5284,9641,-9,9639,9640,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-949.89642,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,37,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,-9,-9,4,1,1,0,0,6,1,1,299,-33466.086,0,0,0 -4274,5285,9642,9643,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,5,7.4866672,7.8922219,0,1,0,-9,10,0,-3,-80.958237,0,0,0,63,3,2,1,2,2,2019,1,1,10,2,28,22,15,1,0,1,0,8.4352903,8.4352903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.119999,63.16,46.080002,46.68,7,1,1,0,0,11,4,1,282.5,661637.38,0,0,2022.7949 -4274,5285,9643,9642,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,0,2,7.641614,7.8978801,5.3614831,1,0,-9,10,0,3,49.884102,0,0,0,60,2,5,1,3,3,2019,1,2,12,0,60,60,15,1,0,1,0,4.0920634,4.0920634,0,0,0,0,0,0,0,0,0,0,0,0,5.5282688,0,0,46.080002,46.68,48.119999,63.16,4,1,1,0,0,11,4,1,282.5,661637.38,0,0,2022.7949 -4275,5286,9644,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,8.8169765,8.6836147,0,3,0,0,0,-9,0,-1088.229,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,57,57,15,1,1,-9,0,12.915988,12.915988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.629999,68.889999,-9,-9,6,1,1,0,0,11,5,1,1166,104827.91,0,0,1440.1478 -4276,5287,9645,-9,9647,9646,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.22089,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,5,1,411.66666,3074816.5,0,0,4069.0396 -4276,5287,9646,9647,-9,-9,1,1,1,58,1,0,1,0,1,-9,2,1,0,0,4,8.7438297,9.1651869,0,2,0,-9,24,0,10,-65.448837,0,0,0,48,1,3,1,2,2,2019,1,2,8,0,45,50,15,1,0,1,0,23.639551,23.639551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,38.380001,52.549999,6,2,3,0,0,8,5,1,411.66666,3074816.5,0,0,4069.0396 -4276,5287,9647,9646,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,3,7.9908566,7.6361098,0,2,0,-9,24,0,-10,-90.007393,0,0,0,58,1,4,1,2,1,2019,1,1,12,2,33,35,15,1,0,1,0,7.8664718,7.8664718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.380001,52.549999,54,54,3,2,3,0,1,8,5,1,411.66666,3074816.5,0,0,4069.0396 -4276,5288,9648,-9,9647,9646,3,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1034.7706,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,1,1,668,-1252.65,0,0,0 -4277,5289,9649,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,8,3,1,1,2,6.8297563,6.907733,0,3,0,0,0,-9,0,-1047.6626,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,16,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.07,54.950001,-9,-9,5,1,1,0,0,11,2,1,112,147133.39,0,0,2034.7756 -4278,5290,9650,9651,-9,-9,1,1,0,50,1,0,0,0,3,-9,1,1,0,0,4,6.5280604,6.9675879,6.8439045,1,0,-9,10,0,-10,117.63381,0,0,0,60,2,4,1,2,3,2019,1,3,7,0,30,25,15,1,0,1,0,2.5682628,2.5682628,0,0,0,0,0,0,0,0,1,1,0,6.1557751,0,0,0,57.16,56.150002,45.91,59.889999,3,1,1,0,0,7,5,1,461.5,6111686,0,0,4331.0615 -4278,5290,9651,9650,-9,-9,3,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,9.1083012,8.7444115,0,1,0,-9,10,0,10,-34.484497,0,0,0,50,3,4,1,-9,-9,2019,1,1,9,0,40,44,15,1,0,1,0,20.476576,20.476576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,57.16,56.150002,5,1,1,0,0,7,5,1,461.5,6111686,0,0,4331.0615 -4279,5291,9652,9653,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,0,71.641579,0,0,0,60,1,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2290921,0,0,0,58.32,50.220001,51.169998,49.389999,6,1,1,0,0,9,3,1,1009.5,1684078,0,0,872.06769 -4279,5291,9653,9652,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,8.2985983,8.2350206,1,0,-9,39,0,0,72.24054,0,0,0,60,1,3,3,2,2,2019,4,1,8,0,0,17,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6863356,8.3119459,0,0,51.169998,49.389999,58.32,50.220001,6,1,1,0,0,9,3,1,1009.5,1684078,0,0,872.06769 -4280,5292,9654,9655,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.1523123,7.9229641,0,1,0,-9,3,0,-1,-3.1319454,0,0,0,45,2,4,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,8.5114517,8.5114517,0,0,0,0,0,0,0,0,0,0,0,2.1242881,0,0,0,57.16,56.150002,51.959999,40.950001,6,1,1,0,0,4,4,1,180.5,384923.53,0,0,2655.1584 -4280,5292,9655,9654,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.1053972,8.4478683,0,1,0,-9,3,0,1,-118.87627,0,0,0,44,2,4,1,-9,-9,2019,1,1,11,0,40,39,15,1,0,1,0,10.31586,10.31586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.959999,40.950001,57.16,56.150002,5,1,1,0,0,4,4,1,180.5,384923.53,0,0,2655.1584 -4280,5293,9656,-9,9655,9654,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,8.2712135,8.3123646,0,3,0,0,0,-9,0,-1007.0254,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,1,0,-9,1,10.318686,10.318686,0,0,0,0,0,0,0,0,0,0,0,2.7789221,0,0,0,43.790001,42.189999,-9,-9,6,1,1,0,0,4,4,1,658,33364.008,0,0,2175.1289 -4281,5294,9657,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,0,3,8.7539988,8.7433205,0,3,0,0,0,-9,0,-921.44574,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,43,15,1,0,-9,0,14.44183,14.44183,0,0,0,0,0,0,0,0,0,0,0,1.4989076,0,0,0,41.470001,58.080002,-9,-9,5,1,1,0,0,6,5,1,448,1097779.8,0,0,2081.0957 -4282,5295,9658,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,7.3808088,7.4390864,3,0,0,0,-9,0,-1018.8418,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0692234,7.3646483,0,0,50,47,-9,-9,5,1,1,0,0,4,3,1,1750,675235.19,0,0,1973.4039 -4283,5296,9659,9660,-9,-9,2,1,0,52,1,0,1,0,1,-9,1,1,0,0,2,7.8637924,7.7225924,0,2,0,-9,14,0,-23,28.775255,0,0,0,75,1,4,1,3,2,2019,1,1,13,3,40,15,15,1,0,1,0,6.0806856,6.0806856,0,0,0,0,0,0,0,0,1,1,0,7.4830122,0,0,0,50.459999,29.74,44.529999,52.41,4,1,1,0,0,10,3,1,939,1323574,0,0,5150.2686 -4283,5296,9660,9659,-9,-9,1,1,1,75,1,0,1,0,1,-9,1,1,0,0,4,7.584785,7.7538242,6.6592388,2,0,-9,14,0,23,25.46002,0,0,0,52,1,2,1,3,3,2019,1,2,11,0,36,35,15,1,0,1,0,6.1452794,6.1452794,0,0,0,0,0,0,0,0,1,1,0,7.9164953,6.5796518,0,0,44.529999,52.41,50.459999,29.74,6,1,1,0,0,10,3,1,939,1323574,0,0,5150.2686 -4283,5296,9661,-9,9659,9660,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.56604,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,939,1323574,0,0,5150.2686 -4284,5297,9662,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1032.1794,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.935783,3,36.689999,19.91,-9,-9,2,1,1,1,0,9,1,0,956,49035.934,0,0,1580.5863 -4284,5298,9663,-9,-9,-9,2,1,1,65,3,0,0,0,3,-9,4,3,0,0,1,0,6.0679984,6.4990883,3,0,0,0,-9,0,-989.27106,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.022144746,6.4875917,31.13702,3,38.049999,23.32,-9,-9,3,1,1,0,1,9,2,0,819,404240.72,0,0,1106.2163 -4285,5299,9664,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1076.9392,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9558489,0,0,0,51.080002,49.240002,-9,-9,5,1,1,0,0,8,1,1,2638,49321.109,0,0,-102.79314 -4286,5300,9665,9666,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,0,3,7.7357674,8.5100479,7.9704967,1,0,-9,8,0,0,-109.68044,0,0,0,57,2,4,3,2,3,2019,2,2,12,2,45,40,15,1,0,3,0,5.4921641,5.4921641,0,0,0,0,0,0,0,0,0,0,0,8.2529802,0,0,0,55.119999,44.799999,54.790001,55.860001,5,1,1,0,0,9,4,1,2844.5,1592473.8,0,0,2019.2283 -4286,5300,9666,9665,-9,-9,2,1,0,57,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,8,0,0,113.22913,0,0,0,57,2,3,1,2,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.148468,0,0,0,54.790001,55.860001,55.119999,44.799999,6,1,1,0,0,9,4,1,2844.5,1592473.8,0,0,2019.2283 -4286,5301,9667,-9,9666,9665,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,7.7264338,7.4950995,0,3,0,0,0,-9,0,-1076.8162,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,42,42,15,1,0,-9,1,6.2476845,6.2476845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,-9,-9,3,1,1,0,0,9,3,1,514,-56788.535,0,0,1016.1524 -4286,5302,9668,-9,9666,9665,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.5579104,7.4966197,0,3,0,0,0,-9,0,-1095.4526,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,48,36,15,1,1,-9,1,3.7508192,3.7508192,0,0,0,0,0,0,0,0,0,0,0,2.2367468,0,0,0,30.5,56.25,-9,-9,3,1,1,0,0,9,3,1,441,39754.953,0,0,833.80804 -4287,5303,9669,9670,-9,-9,2,1,1,52,1,0,3,0,3,-9,2,1,0,0,3,7.1464963,7.4301171,0,2,0,-9,25,0,8,-140.75645,0,0,0,44,2,3,3,3,3,2019,2,1,8,0,24,24,15,1,0,3,0,5.1650367,5.1650367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,58.369999,43.459999,6,2,3,0,0,8,2,0,334.66666,1090497.8,0,0,1999.6301 -4287,5303,9670,9669,-9,-9,1,1,0,44,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,-8,104.7302,0,0,1,52,3,3,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.369999,43.459999,54.959999,53.169998,6,2,3,0,0,8,2,0,334.66666,1090497.8,0,0,1999.6301 -4287,5303,9671,-9,9670,9669,3,1,0,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.1969,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,7,2,3,0,0,8,2,0,334.66666,1090497.8,0,0,1999.6301 -4288,5304,9672,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,0,3,0,8.1891899,8.5942764,3,0,0,0,-9,0,-956.77374,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4340501,8.4089899,0,0,62.09,29.74,-9,-9,6,1,1,0,0,1,4,1,723,1292669.3,0,0,2639.2319 -4289,5305,9673,9674,-9,-9,2,1,0,52,1,0,1,0,2,-9,1,1,0,0,4,7.1464639,7.0725183,0,2,0,-9,8,0,0,-67.772781,0,0,0,52,1,4,1,3,3,2019,1,1,20,8,15,9,15,1,1,1,0,7.6693835,7.6693835,0,0,0,0,0,0,0,0,0,0,0,6.9248405,0,0,0,31.540001,58.740002,53,54,4,1,1,0,0,9,5,1,294.5,1170354,0,0,5971.2515 -4289,5305,9674,9673,-9,-9,1,1,1,52,1,0,1,0,1,-9,1,1,0,0,4,9.3696012,9.5766945,7.8475327,2,0,-9,8,0,0,65.484901,0,0,0,52,2,4,1,2,2,2019,1,2,9,1,50,0,15,1,0,1,0,26.46459,26.46459,0,0,0,0,0,0,0,0,0,0,0,7.4532013,7.9309826,0,0,53,54,31.540001,58.740002,6,1,1,0,0,9,5,1,294.5,1170354,0,0,5971.2515 -4289,5306,9675,-9,9673,9674,3,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-858.74329,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.64774019,0,0,0,53.389999,52.349998,-9,-9,6,1,1,0,0,9,5,1,553,-126286.55,0,0,-1025.9117 -4289,5307,9676,-9,9673,9674,4,1,0,22,2,0,1,0,1,1,2,1,0,0,5,4.8947287,4.5557895,0,3,0,0,0,-9,0,-992.13733,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,15,3,30,0,15,1,0,-9,1,.45541325,.45541325,0,0,0,0,0,0,0,0,0,0,0,3.4338796,0,0,0,36.779999,44.189999,-9,-9,3,1,1,0,0,9,2,1,124,52075.875,0,0,1457.6592 -4290,5308,9677,9678,-9,-9,2,1,0,65,1,0,0,0,3,-9,97,3,0,1,3,0,0,0,1,0,-9,46,0,0,0,0,0,0,65,3,3,3,3,3,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,51,48,5,2,3,0,0,6,1,1,698,-13420.336,0,0,1017.7655 -4290,5308,9678,9677,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,46,0,0,0,0,0,0,65,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,47,5,2,3,0,0,6,1,1,698,-13420.336,0,0,1017.7655 -4290,5309,9679,-9,9677,9678,3,1,1,42,3,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-854.84949,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,2,3,0,0,6,1,1,149,0,0,0,705.32831 -4290,5310,9680,-9,9677,9678,4,1,1,36,3,0,0,0,2,-9,2,1,0,0,4,6.9741631,7.1195579,0,3,0,0,0,-9,0,-905.80554,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,20,15,1,0,-9,1,7.6580496,7.6580496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,6,2,1,335,-107295.65,0,0,-118.61094 -4290,5311,9681,-9,9677,9678,5,1,1,26,3,0,0,0,2,-9,2,1,0,0,4,7.7909641,8.0246859,0,3,0,0,0,-9,0,-863.30518,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,40,15,1,0,-9,1,5.9523048,5.9523048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,2,3,0,0,6,3,1,317,-6870.896,0,0,706.17139 -4291,5312,9682,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,6.0877376,5.9252105,3,0,0,0,-9,0,-1012.3926,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.793035,5.9430027,0,0,58.5,44.669998,-9,-9,6,1,1,0,0,12,2,1,364,-66839.469,0,0,884.97192 -4292,5313,9683,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.4082212,8.4817505,6.7347865,3,0,-9,0,-9,0,-1121.3909,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,60,0,15,1,0,-9,0,9.5108366,9.5108366,0,0,0,0,0,0,0,0,1,1,0,6.5670161,0,0,0,53.619999,43.07,-9,-9,6,1,1,0,0,4,5,1,871,94887.344,0,0,2789.4885 -4293,5314,9684,9685,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.4056869,7.6288905,0,2,0,-9,24,0,-4,-19.453691,0,0,1,48,2,3,1,2,3,2019,1,1,11,0,20,20,15,1,0,1,0,7.6931176,7.6931176,0,0,0,0,0,0,0,0,0,0,0,1.0952446,0,0,0,51.240002,58.84,58.470001,50.220001,6,1,1,0,0,5,4,1,620.25,408008.94,0,0,4021.686 -4293,5314,9685,9684,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,9.2118006,8.9812279,0,2,0,-9,24,0,4,-65.917236,0,0,0,44,2,4,1,2,3,2019,1,2,10,0,45,48,15,1,0,1,0,19.160631,19.160631,0,0,0,0,0,0,0,0,0,0,0,4.3981338,0,0,0,58.470001,50.220001,51.240002,58.84,6,1,1,0,0,5,4,1,620.25,408008.94,0,0,4021.686 -4293,5314,9686,-9,9684,9685,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.2833,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,4,1,620.25,408008.94,0,0,4021.686 -4293,5314,9687,-9,9684,9685,5,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1168.3516,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,620.25,408008.94,0,0,4021.686 -4293,5315,9688,-9,9684,9685,3,1,1,18,2,0,2,0,2,1,2,1,0,0,4,6.5081625,6.3692069,0,3,0,0,0,-9,0,-961.54486,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,9,0,15,1,0,-9,1,7.1298938,7.1298938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.48,59.490002,-9,-9,4,1,1,0,0,5,2,1,1190,34389.18,0,0,168.55783 -4294,5316,9689,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,1,1,0,0,3,0,7.7199059,7.1666951,3,0,0,0,-9,0,-995.36414,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.217598,7.5149612,4.6901841,3,58.57,48.950001,-9,-9,6,1,1,0,0,9,3,0,1261,223562.34,0,0,4102.0713 -4295,5317,9690,-9,9692,9691,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,4.8883615,5.1864676,0,2,0,0,0,-9,0,-888.78357,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.91,68.970001,-9,-9,2,3,4,0,0,6,3,1,715.25,681363.75,0,0,3379.9236 -4295,5317,9691,9692,-9,-9,1,1,1,57,1,0,2,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,7,0,2,70.251953,0,0,0,55,2,2,1,-9,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,40.790001,52.689999,5,3,4,0,0,6,3,1,715.25,681363.75,0,0,3379.9236 -4295,5317,9692,9691,-9,-9,2,1,0,55,1,0,2,0,2,-9,2,1,0,0,2,7.4882178,8.2825356,7.2344317,2,0,-9,7,0,-2,-57.327358,0,0,0,57,2,3,3,2,2,2019,2,1,7,0,15,36,15,1,0,3,0,16.831926,16.831926,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4162374,11.594076,2,40.790001,52.689999,51,49,6,3,4,0,0,6,3,1,715.25,681363.75,0,0,3379.9236 -4295,5317,9693,-9,9692,9691,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1135.5001,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,6,3,1,715.25,681363.75,0,0,3379.9236 -4296,5318,9694,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,0,2,7.4066501,7.2099605,6.0570517,3,0,0,0,-9,0,-1033.6145,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,31,26,15,1,0,-9,0,4.3180771,4.3180771,0,0,0,0,0,0,0,0,0,0,0,6.762671,5.564189,0,0,37.509998,31.469999,-9,-9,4,1,1,0,0,4,3,1,490,421106.81,0,0,2423.3608 -4297,5319,9695,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,3,3,0,0,4,8.6619911,9.3541641,8.4451656,3,0,0,0,-9,0,-1046.0873,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,38,39,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9708424,0,0,0,41.060001,62.040001,-9,-9,6,4,2,1,0,7,5,1,2373,1000845.3,0,0,3836.0024 -4298,5320,9696,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-851.66736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.68,42.360001,-9,-9,6,1,1,0,0,12,1,0,968,310166.72,0,0,1110.7543 -4298,5321,9697,-9,9696,-9,2,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,8.1430044,7.9449167,0,3,0,0,0,-9,0,-1215.2595,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,1,14.731006,14.731006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.009998,53.439999,-9,-9,6,1,1,0,0,12,4,0,216,328412.94,0,0,1083.4531 -4299,5322,9698,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,0,2,0,7.1629395,7.4384189,3,0,0,0,-9,0,-1032.782,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,2.8371611,0,0,0,0,1,1,0,0,7.0804667,0,0,51.580002,21.299999,-9,-9,6,1,1,0,0,4,3,0,1040,323423.41,0,0,396.93768 -4300,5323,9699,9700,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.6273088,8.6486568,6.6039581,1,0,-9,28,0,3,75.566185,0,0,0,53,2,5,1,3,3,2019,1,1,14,3,45,50,15,1,0,1,0,14.027014,14.027014,0,0,0,0,0,0,0,0,0,0,0,0,7.0204086,0,0,42.849998,60.330002,51.669998,60.18,6,1,1,0,0,2,5,1,1077,768648,0,0,4234.8276 -4300,5323,9700,9699,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,8.35991,8.2177095,0,1,0,-9,28,0,-3,5.9090314,0,0,0,56,2,4,1,2,3,2019,1,2,16,5,35,41,15,1,1,1,0,14.992188,14.992188,0,0,0,0,0,0,0,0,0,0,0,3.650991,0,0,0,51.669998,60.18,42.849998,60.330002,6,1,1,0,0,2,5,1,1077,768648,0,0,4234.8276 -4300,5324,9701,-9,9700,9699,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,5,8.1436577,8.4361582,0,3,0,0,0,-9,0,-946.33075,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,45,40,15,1,0,-9,1,10.605805,10.605805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,2,4,1,514,-9874.9609,0,0,1708.5642 -4300,5325,9702,-9,9700,9699,4,1,1,20,2,0,0,0,2,-9,1,1,0,0,4,7.6841192,7.1744199,0,3,0,0,0,-9,0,-850.77374,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,5.5981035,5.5981035,0,0,0,0,0,0,0,0,0,0,0,1.0135397,0,0,0,50.290001,52.349998,-9,-9,5,1,1,0,0,2,3,1,974,16301.314,0,0,1605.5641 -4301,5326,9703,9704,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,7.5614076,7.5899911,1,0,-9,9,0,4,-18.155684,0,0,0,75,3,2,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,.079432741,7.1923723,11.041702,1,51.77,58.57,51.91,32.349998,6,1,1,0,0,10,2,1,441,686512.94,0,0,1455.0927 -4301,5326,9704,9703,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,-4,-29.203711,0,0,0,79,2,4,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.71264809,0,0,0,51.91,32.349998,51.77,58.57,5,1,1,0,0,10,2,1,441,686512.94,0,0,1455.0927 -4302,5327,9705,9706,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,0,4,7.1605172,7.2781835,0,2,0,-9,7,0,1,-4.1715803,0,0,0,53,2,4,1,2,2,2019,1,2,12,0,5,2,15,1,0,1,0,32.093193,32.093193,0,0,0,0,0,0,0,0,1,1,0,6.1011167,0,0,0,49.27,56.950001,53,54,6,1,1,0,0,9,4,1,363,289023.44,0,0,2758.9634 -4302,5327,9706,9705,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.4056768,8.7502928,0,2,0,-9,7,0,-1,69.430794,0,0,0,54,1,4,1,-9,-9,2019,1,1,9,1,55,65,15,1,0,1,0,10.736748,10.736748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49.27,56.950001,6,1,1,0,0,9,4,1,363,289023.44,0,0,2758.9634 -4302,5327,9707,-9,9705,9706,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.1648,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,363,289023.44,0,0,2758.9634 -4303,5328,9708,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,2,8.0612316,8.189043,0,3,0,0,0,-9,0,-1018.7604,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,4,55,52,15,1,1,-9,0,8.1617584,8.1617584,0,0,0,0,0,0,0,27.5,0,0,0,0,0,21.385101,3,34.709999,42.419998,-9,-9,2,1,1,0,0,4,4,1,236,666952.94,0,0,2199.6775 -4304,5329,9709,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-967.52039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,6,1,0,311,-148755.61,0,0,610.19629 -4305,5330,9710,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,6.3778782,6.6081009,3,0,-9,0,-9,0,-974.81177,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4187045,6.3340745,0,0,43.59,38.380001,-9,-9,6,1,1,0,0,4,2,0,1274,36541.09,0,0,1530.9487 -4306,5331,9711,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,0,5,8.2531385,7.9501591,0,3,0,0,0,-9,0,-1137.0961,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,0,15,1,0,-9,0,7.5651011,7.5651011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,2,4,0,574,-39575.898,0,0,1091.4548 -4307,5332,9712,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,4,0,8.202836,7.9809585,3,0,0,0,-9,0,-1025.5283,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7960138,8.0483751,0,0,50.400002,55.040001,-9,-9,6,1,1,0,0,8,4,1,941,1500569.8,0,0,1420.1604 -4308,5333,9713,9715,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,8.2138586,7.8144441,0,2,0,-9,21,0,0,-15.120277,0,0,0,46,3,4,3,2,2,2019,2,1,6,0,30,30,15,1,0,3,0,13.255614,13.255614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.18,36.18,60.119999,54.799999,6,1,1,0,0,13,4,1,1466.6666,163422.88,0,0,3167.4529 -4308,5333,9714,-9,9713,9715,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1071.5129,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,13,4,1,1466.6666,163422.88,0,0,3167.4529 -4308,5333,9715,9713,-9,-9,1,1,1,46,1,0,1,0,3,-9,3,3,0,0,4,8.2350645,8.4682016,0,2,0,-9,21,0,0,29.954313,0,0,0,46,2,3,1,3,2,2019,3,2,0,0,43,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7341483,0,0,0,60.119999,54.799999,62.18,36.18,6,1,1,1,0,13,4,1,1466.6666,163422.88,0,0,3167.4529 -4309,5334,9716,9717,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,49,0,1,37.22945,0,0,0,74,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.900002,45.740002,62.599998,37.23,6,1,1,0,0,6,4,1,541,1172288.3,0,0,2908.7192 -4309,5334,9717,9716,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,7.2597947,8.3261547,7.9766884,1,0,-9,49,0,-1,205.0681,0,0,0,75,3,4,3,3,2,2019,4,2,6,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3470869,7.6358914,0,0,62.599998,37.23,58.900002,45.740002,7,1,1,0,0,6,4,1,541,1172288.3,0,0,2908.7192 -4310,5335,9718,9719,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,8,-77.917831,0,0,0,68,3,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7705092,0,4.4243917,3,61.279999,48.880001,50.540001,62.09,7,1,1,0,0,1,2,1,1109.5,348006.5,0,0,2568.189 -4310,5335,9719,9718,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,5,0,7.1245146,7.5021758,1,0,-9,49,0,-8,21.245184,0,0,0,76,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9682794,7.5930214,0,3,50.540001,62.09,61.279999,48.880001,6,1,1,0,0,1,2,1,1109.5,348006.5,0,0,2568.189 -4311,5336,9720,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,5,0,6.0594573,6.0924611,3,0,0,0,-9,0,-945.72595,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6149478,6.0511971,0,0,57.650002,56.130001,-9,-9,6,1,1,0,0,12,2,1,218,227098.98,0,0,1406.4832 -4312,5337,9721,-9,-9,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,0,4,0,6.9454188,6.7568822,3,0,0,0,-9,0,-994.7865,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.46978772,7.0943632,23.850588,3,54.950001,44.790001,-9,-9,5,1,1,0,0,8,2,1,285,303725.53,0,0,1507.535 -4313,5338,9722,-9,9723,9725,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.73773,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,0,479,385935.47,0,0,2131.1772 -4313,5338,9723,9725,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,3,-54.288361,0,0,1,38,1,4,1,2,3,2019,3,2,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.860001,53.23,48.540001,54.5,7,1,1,0,0,11,3,0,479,385935.47,0,0,2131.1772 -4313,5338,9724,-9,9723,9725,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.2719,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,0,479,385935.47,0,0,2131.1772 -4313,5338,9725,9723,-9,-9,2,1,1,38,1,0,3,0,1,-9,2,1,0,0,4,8.1557493,8.1319151,0,2,0,-9,10,0,-3,-36.237293,0,0,0,41,2,4,3,-9,-9,2019,2,1,11,0,47,45,15,1,0,3,0,12.570934,12.570934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.540001,54.5,45.860001,53.23,6,1,1,0,0,11,3,0,479,385935.47,0,0,2131.1772 -4313,5338,9726,-9,9723,9725,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.796,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,3,0,479,385935.47,0,0,2131.1772 -4314,5339,9727,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,1,1,0,0,4,8.1502819,8.0671196,0,3,0,0,0,-9,0,-908.86121,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,55,50,15,1,0,-9,0,7.2151117,7.2151117,0,0,0,0,0,0,0,7,0,0,0,6.3341341,0,7.6472154,3,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,742,273639.97,0,0,-64.610527 -4315,5340,9728,9729,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.0692282,8.3320503,7.5845027,1,0,-9,37,0,3,135.20433,0,0,0,57,1,4,1,3,3,2019,1,1,10,0,3,23,15,1,0,1,0,156.27834,156.27834,0,0,0,0,0,0,0,0,0,0,0,3.1046948,7.6770277,0,0,49.040001,55.860001,57.16,56.150002,6,1,1,0,0,10,5,1,409,4384881,0,0,8567.2998 -4315,5340,9729,9728,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,9.1899233,9.6086817,8.8719225,1,0,-9,39,0,-3,38.80999,0,0,0,60,2,3,1,2,1,2019,1,2,6,0,85,65,15,1,0,1,0,15.836942,15.836942,0,0,0,0,0,0,0,0,0,0,0,0,8.6624985,0,0,57.16,56.150002,49.040001,55.860001,7,1,1,0,0,10,5,1,409,4384881,0,0,8567.2998 -4316,5341,9730,9734,-9,-9,2,1,0,37,1,0,3,0,1,-9,2,1,0,0,4,7.0300288,7.0284538,0,2,0,-9,5,0,-2,34.967106,-9,0,1,39,1,3,1,2,2,2019,1,1,11,2,20,0,15,1,0,1,0,5.692554,5.692554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,54.23,46.77,5,1,1,0,0,2,5,1,627.20001,658144.31,0,0,6967.8413 -4316,5341,9731,-9,9730,9734,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.75732,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,627.20001,658144.31,0,0,6967.8413 -4316,5341,9732,-9,9730,9734,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.92566,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,5,1,627.20001,658144.31,0,0,6967.8413 -4316,5341,9733,-9,9730,9734,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.0784,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,627.20001,658144.31,0,0,6967.8413 -4316,5341,9734,9730,-9,-9,1,1,1,39,1,0,3,0,1,-9,2,1,0,0,3,9.8464251,9.5602589,0,2,0,-9,15,0,2,-21.900438,0,0,0,37,1,4,1,2,1,2019,1,2,11,0,46,47,15,1,0,1,0,44.315422,44.315422,0,0,0,0,0,0,0,0,1,1,0,3.7403793,0,0,0,54.23,46.77,49,55,6,1,1,0,0,2,5,1,627.20001,658144.31,0,0,6967.8413 -4317,5342,9735,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,2,1,0,0,4,6.3783503,6.4929118,4.4353447,3,0,0,0,-9,0,-944.0802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,8,8,15,1,0,-9,0,8.4513063,8.4513063,1,0,0,0,0,0,0,0,1,1,0,0,4.4837289,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,10,2,1,374,270731.25,0,0,2308.1018 -4318,5343,9736,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1155.8599,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.120001,28.17,-9,-9,2,1,1,0,1,4,1,0,916,251458.84,0,0,1015.1934 -4319,5344,9737,9738,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,2,8.5893221,8.4302731,0,2,0,-9,10,0,6,51.564701,0,0,0,49,1,3,1,3,2,2019,1,1,20,6,35,35,15,1,1,1,0,15.587351,15.587351,0,0,0,0,0,0,0,14.5,0,0,0,0,0,10.183011,3,29.860001,36.529999,27.73,64.269997,1,1,1,0,1,12,3,1,1508.3334,80656.672,0,0,1268.2999 -4319,5344,9738,9737,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,10,0,-6,66.688133,0,0,0,55,2,2,1,3,3,2019,1,2,17,4,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.73,64.269997,29.860001,36.529999,2,1,1,0,0,12,3,1,1508.3334,80656.672,0,0,1268.2999 -4319,5344,9739,-9,9738,9737,4,1,0,17,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1071.2109,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.15,54.82,-9,-9,3,1,1,0,1,12,3,1,1508.3334,80656.672,0,0,1268.2999 -4320,5345,9740,9741,-9,-9,2,1,0,43,1,0,0,0,1,-9,1,1,0,0,3,7.5994153,7.7511082,0,1,0,-9,13,0,6,73.457489,0,0,1,37,1,3,1,2,2,2019,1,1,14,3,50,45,15,1,0,1,0,6.5209885,6.5209885,0,0,0,0,0,0,0,0,0,0,0,1.0130361,0,0,0,34.060001,51.939999,50.029999,52.619999,3,1,1,0,0,8,3,0,856,151330.83,0,0,400.12854 -4320,5345,9741,9740,-9,-9,1,1,1,37,1,0,0,0,1,-9,1,1,0,0,3,0,0,0,1,0,-9,13,0,-6,-9.5210314,0,0,0,43,1,3,1,2,2,2019,1,2,8,1,50,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,.19981864,0,8.0421801,3,50.029999,52.619999,34.060001,51.939999,5,1,1,0,0,8,3,0,856,151330.83,0,0,400.12854 -4321,5346,9742,9743,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.6593418,8.2658644,1,0,-9,40,0,-3,8.8573036,0,0,0,71,1,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2144785,8.3781223,2.669956,3,54.200001,57.490002,60.419998,54.810001,6,1,1,0,0,9,5,1,466.5,13381474,0,0,8851.0225 -4321,5346,9743,9742,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,5,0,9.2748365,8.8811607,1,0,-9,40,0,3,74.772453,0,0,0,68,1,4,3,1,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8604183,9.3914824,0,0,60.419998,54.810001,54.200001,57.490002,6,1,1,0,0,9,5,1,466.5,13381474,0,0,8851.0225 -4322,5347,9744,9745,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,2,7.9187031,8.0076103,0,1,0,-9,42,0,1,-139.63443,0,0,0,60,2,4,1,2,2,2019,1,2,23,11,35,35,15,1,1,1,0,9.1717606,9.1717606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.950001,34.889999,59.290001,49.68,3,1,1,0,0,2,3,1,962.5,433323.88,0,0,1708.6174 -4322,5347,9745,9744,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.6190772,7.5709906,0,1,0,-9,42,0,-1,-31.649128,0,0,0,61,2,2,1,2,3,2019,1,1,6,0,30,31,15,1,0,1,0,6.0977631,6.0977631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.290001,49.68,44.950001,34.889999,7,1,1,0,0,2,3,1,962.5,433323.88,0,0,1708.6174 -4323,5348,9746,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,5,8.3060246,8.4056358,0,3,0,0,0,-9,0,-1081.053,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,52,39,15,1,0,-9,0,8.6928644,8.6928644,0,0,0,0,0,0,0,0,0,0,0,.30552459,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,5,4,1,138,142946.45,0,0,1449.7799 -4324,5349,9747,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,5.1651516,5.277741,3,0,0,0,-9,0,-1001.2603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8852139,4.9228439,0,0,57.330002,53.459999,-9,-9,2,1,1,0,0,7,2,0,1876,111782.97,0,0,2123.3564 -4325,5350,9748,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,3,8.8345461,8.7802019,6.5928464,3,0,0,0,-9,0,-983.14459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,38,15,1,0,-9,0,17.698816,17.698816,0,0,0,0,0,0,0,0,1,1,0,4.0123906,7.1826606,0,0,56.349998,51.16,-9,-9,6,1,1,0,0,10,5,1,857,1573096.1,0,0,1747.0958 -4326,5351,9749,9751,-9,-9,1,1,0,32,1,0,1,0,1,-9,2,1,0,0,4,7.6716638,7.7948675,0,2,0,-9,7,0,-3,67.697113,0,0,1,35,2,1,3,3,3,2019,2,2,10,0,30,30,15,1,0,3,0,9.1860209,9.1860209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,56.52,24.379999,5,1,1,0,0,13,2,1,516.66669,146420.92,0,0,1882.8541 -4326,5351,9750,-9,9749,9751,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.892,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,1,516.66669,146420.92,0,0,1882.8541 -4326,5351,9751,9749,-9,-9,2,1,1,35,1,0,1,0,2,-9,3,3,0,0,1,0,0,0,2,0,-9,7,0,3,142.16919,0,0,0,32,1,4,1,-9,-9,2019,3,1,14,2,0,32,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,24.379999,57.16,56.150002,4,1,1,1,1,13,2,1,516.66669,146420.92,0,0,1882.8541 -4327,5352,9752,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,4,0,5.8464518,5.6615162,3,0,0,0,-9,0,-1061.8088,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3917212,6.0379586,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,8,2,1,237,343657.47,0,0,971.13806 -4328,5353,9753,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,1,8.6618795,8.7666225,7.1391253,3,0,0,0,-9,0,-901.15198,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,50,45,15,1,1,-9,0,16.005001,16.005001,0,0,0,0,0,0,0,0,0,0,0,3.3628888,7.8243728,0,0,28.559999,23.879999,-9,-9,2,1,1,0,0,12,5,1,302,395309.78,0,0,3227.3328 -4329,5354,9754,-9,-9,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.5267181,8.6049719,0,3,0,0,0,-9,0,-997.74054,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,40,42,15,1,0,-9,1,17.440372,17.440372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,6,2,3,0,0,6,5,1,962,-2048.6548,0,0,2136.2375 -4330,5355,9755,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1037.0604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.209999,25.309999,-9,-9,2,4,2,0,1,10,1,0,990,-191114.02,0,0,1408.606 -4331,5356,9756,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,0,4,8.8062286,9.0105734,0,3,0,0,0,-9,0,-1021.4915,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,47,15,1,0,-9,0,19.332695,19.332695,0,0,0,0,0,0,0,0,0,0,0,.8068617,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,712,255649.23,0,0,2758.7219 -4332,5357,9757,9758,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,8.4008017,8.4146652,0,2,0,-9,32,0,0,-79.639,0,0,0,52,2,4,1,2,1,2019,1,2,13,1,37,37,15,1,0,1,0,13.953642,13.953642,0,0,0,0,0,0,0,0,1,1,0,1.4272637,0,0,0,38.689999,53.880001,43.09,54.669998,6,1,1,0,0,7,5,1,5339,1243875.9,0,0,4704.0747 -4332,5357,9758,9757,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.7628927,8.4341974,0,2,0,-9,7,0,0,167.20779,0,0,0,52,2,3,1,1,2,2019,1,1,21,9,43,47,15,1,1,1,0,16.206917,16.206917,0,0,0,0,0,0,0,0,1,1,0,7.5797873,0,0,0,43.09,54.669998,38.689999,53.880001,5,1,1,0,0,7,5,1,5339,1243875.9,0,0,4704.0747 -4332,5358,9759,-9,9757,9758,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,6.8763433,6.8366351,3.5864651,3,0,0,0,-9,0,-1046.3163,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1776605,0,0,0,28.620001,62.360001,-9,-9,5,1,1,0,0,7,5,1,676,195219.25,0,0,-551.45825 -4333,5359,9760,9761,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,7.9713793,7.9028673,1,0,-9,8,0,-1,-203.87775,0,0,0,75,3,2,3,3,2,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4872098,0,0,49.52,35.689999,46.59,21.99,6,1,1,0,0,13,3,1,578.5,713750.81,0,0,3431.8835 -4333,5359,9761,9760,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,1,95.467514,0,0,0,74,2,2,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,21.99,49.52,35.689999,6,1,1,0,0,13,3,1,578.5,713750.81,0,0,3431.8835 -4334,5360,9762,-9,9763,9765,5,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.87958,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,1,0,622.5,409405.16,0,0,2044.7483 -4334,5360,9763,9765,-9,-9,1,1,0,42,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-11,-195.78862,0,0,1,53,2,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,54,54,6,2,3,0,0,8,1,0,622.5,409405.16,0,0,2044.7483 -4334,5360,9764,-9,9763,9765,6,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.9495,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,622.5,409405.16,0,0,2044.7483 -4334,5360,9765,9763,-9,-9,2,1,1,53,1,0,3,0,2,-9,1,1,0,0,4,2.8031139,2.8200214,0,2,0,-9,6,0,11,-10.95013,0,0,0,42,3,4,3,3,3,2019,2,1,9,1,40,40,15,1,0,3,0,.048623942,.048623942,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,50,55,6,2,3,0,0,8,1,0,622.5,409405.16,0,0,2044.7483 -4334,5361,9766,-9,9763,9765,3,1,0,22,2,0,3,0,2,-9,2,1,0,0,4,7.8760867,7.7092957,0,3,0,0,0,-9,0,-979.2085,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,35,24,15,1,0,-9,1,7.812458,7.812458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,8,3,0,234,-40622.934,0,0,1613.3715 -4334,5362,9767,-9,9763,9765,4,1,1,18,2,0,3,0,2,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-968.64203,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,2,3,1,0,8,3,0,480,-73648.367,0,0,0 -4335,5363,9768,9769,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.7545357,8.5165806,0,1,0,-9,5,0,2,7.8959103,0,0,0,52,1,3,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,16.412664,16.412664,0,0,0,0,0,0,0,7,0,0,0,1.426859,0,9.5533457,3,49.040001,55.860001,33.73,50.849998,6,1,1,0,0,9,5,1,964,1112190.3,0,0,3993.814 -4335,5363,9769,9768,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,8.6486187,8.4865341,0,1,0,-9,5,0,-2,-84.131027,0,0,0,54,2,3,1,-9,-9,2019,1,1,15,4,37,37,15,1,1,1,0,16.368576,16.368576,0,0,0,0,0,0,0,0,0,0,0,5.1679363,0,0,0,33.73,50.849998,49.040001,55.860001,3,1,1,0,0,9,5,1,964,1112190.3,0,0,3993.814 -4336,5364,9770,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1142.3313,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.1084893,0,4.6083951,0,0,1,1,0,0,0,0,0,37.66,34.5,-9,-9,7,4,5,0,0,9,1,0,856,67555.242,0,0,800.31555 -4337,5365,9771,9773,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,8.9030628,8.9894447,0,2,0,-9,6,0,0,-115.1158,0,0,0,45,2,4,1,2,2,2019,1,1,14,2,50,51,15,1,0,1,0,14.188418,14.188418,0,0,0,0,0,0,0,0,1,1,0,7.4555988,0,0,0,46.330002,55.93,57.16,56.150002,5,1,1,0,0,12,5,1,717.33331,580046.38,0,0,4959.3071 -4337,5365,9772,-9,9773,9771,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.72229,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,717.33331,580046.38,0,0,4959.3071 -4337,5365,9773,9771,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,8.430521,8.153017,0,2,0,-9,6,0,0,2.2593908,0,0,0,45,1,3,1,3,2,2019,1,2,7,0,20,25,15,1,0,1,0,27.394794,27.394794,0,0,0,0,0,0,0,0,1,1,0,6.4486651,0,0,0,57.16,56.150002,46.330002,55.93,6,1,1,0,0,12,5,1,717.33331,580046.38,0,0,4959.3071 -4338,5366,9774,9775,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,2,7.8569689,8.1240625,0,1,0,-9,9,0,4,-12.182135,0,0,0,45,1,4,1,1,1,2019,1,2,12,0,43,45,15,1,0,1,0,8.5507393,8.5507393,0,0,0,0,0,0,0,0,0,0,0,2.6388478,0,0,0,31.700001,53.560001,55.779999,49.919998,4,1,1,0,0,12,5,1,1189,248778.09,0,0,3646.0762 -4338,5366,9775,9774,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,9.1376019,8.7945471,0,1,0,-9,9,0,-4,-41.240299,0,0,0,49,1,2,1,-9,-9,2019,1,1,12,0,45,45,15,1,0,1,0,16.942329,16.942329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.779999,49.919998,31.700001,53.560001,6,1,1,0,0,12,5,1,1189,248778.09,0,0,3646.0762 -4339,5367,9776,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-971.52063,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.980907,0,6.6925154,0,0,1,1,0,0,0,0,0,65.809998,8.0100002,-9,-9,7,1,1,0,0,12,1,0,2606,-122009.23,0,0,779.36456 -4340,5368,9777,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1048.0024,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.919998,51.82,-9,-9,6,1,1,0,0,13,1,0,204,-82281.32,0,0,1314.5024 -4341,5369,9778,9779,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.0639105,6.6434369,1,0,-9,43,0,-1,25.690464,0,0,0,72,1,4,3,2,1,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.5359776,6.85426,81.211624,3,43.200001,55.709999,52.380001,55.599998,6,1,1,0,0,12,4,1,1059.5,1140629,0,0,3231.5347 -4341,5369,9779,9778,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,8.3887815,8.4985714,1,0,-9,43,0,1,47.634499,0,0,0,71,2,3,3,3,3,2019,4,1,8,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8204598,8.226409,10.919315,3,52.380001,55.599998,43.200001,55.709999,6,1,1,0,0,12,4,1,1059.5,1140629,0,0,3231.5347 -4342,5370,9780,9781,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,9.283473,9.4263525,8.1123714,1,0,-9,15,0,1,-41.041283,0,0,0,57,1,4,1,3,3,2019,1,1,7,0,15,36,15,1,0,1,0,75.10984,75.10984,0,0,0,0,0,0,0,2,0,0,0,4.0050602,8.1142979,3.2863028,3,58.150002,52.91,55.73,53.98,6,1,1,0,0,2,5,1,1517.5,1197482.9,0,0,13282.584 -4342,5370,9781,9780,-9,-9,1,1,0,57,1,0,0,0,1,-9,1,1,0,0,4,9.6660061,9.7543678,0,1,0,-9,15,0,-1,67.32415,0,0,0,58,2,4,1,3,2,2019,1,2,10,1,50,37,15,1,0,1,0,42.488308,42.488308,0,0,0,0,0,0,0,0,0,0,0,3.7953389,0,0,0,55.73,53.98,58.150002,52.91,6,1,1,0,0,2,5,1,1517.5,1197482.9,0,0,13282.584 -4343,5371,9782,9783,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,4,7.8707652,8.4725237,0,2,0,-9,6,0,4,-134.29074,0,0,0,34,2,3,1,2,2,2019,1,2,6,0,37,0,15,1,0,1,0,10.075904,10.075904,0,0,0,0,0,0,0,0,1,1,0,2.0605032,0,0,0,48.869999,58.549999,46.41,53.09,2,1,1,0,0,11,4,0,345.66666,325195.19,0,0,2027.345 -4343,5371,9783,9782,-9,-9,2,1,0,34,1,0,1,0,2,-9,2,1,0,0,3,7.9843888,8.5041313,0,2,0,-9,6,0,-4,-81.988586,0,0,1,38,2,4,1,3,-9,2019,1,1,15,4,36,37,15,1,1,1,0,7.027236,7.027236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.41,53.09,48.869999,58.549999,5,4,2,0,0,11,4,0,345.66666,325195.19,0,0,2027.345 -4343,5371,9784,-9,9783,9782,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1161.0038,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,11,4,0,345.66666,325195.19,0,0,2027.345 -4344,5372,9785,-9,9788,9786,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-882.66388,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,242.25,225057.52,0,0,3491.0442 -4344,5372,9786,9788,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,4,8.7059908,8.6706038,0,2,0,-9,3,0,0,62.293678,0,0,0,37,1,4,1,2,2,2019,1,1,10,0,50,52,15,1,0,1,0,12.456631,12.456631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.599998,49.27,56.950001,6,1,1,0,0,4,4,1,242.25,225057.52,0,0,3491.0442 -4344,5372,9787,-9,9788,9786,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.08051,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,242.25,225057.52,0,0,3491.0442 -4344,5372,9788,9786,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.1219406,8.0473938,0,2,0,-9,3,0,0,49.447433,0,0,1,37,1,4,1,3,3,2019,1,2,12,2,38,40,15,1,0,1,0,10.851004,10.851004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.950001,52.23,55.599998,6,1,1,0,0,4,4,1,242.25,225057.52,0,0,3491.0442 -4345,5373,9789,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,4,7.8635235,7.7830749,0,3,0,-9,0,-9,0,-1129.6234,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,46,0,15,1,0,-9,0,6.9913015,6.9913015,0,0,0,0,0,0,0,0,0,0,0,2.8398712,0,0,0,44.299999,58.080002,-9,-9,5,1,1,0,0,10,3,0,898,0,0,0,722.71478 -4346,5374,9790,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.2268658,7.1010294,3,0,0,0,-9,0,-1050.4891,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0214286,0,0,60.450001,41.049999,-9,-9,6,1,1,0,0,10,2,1,145,-47745.59,0,0,2364.8884 -4347,5375,9791,9792,-9,-9,2,1,0,52,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,7,0,-13,-94.640823,0,0,0,65,2,2,3,3,3,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,30.17,40.740002,38.459999,4,2,3,0,0,6,2,1,441,507128.5,0,0,1645.2434 -4347,5375,9792,9791,-9,-9,1,1,1,65,1,0,1,0,2,-9,4,3,0,0,2,0,5.0626569,5.2325859,2,0,-9,7,0,13,-136.14687,0,0,0,52,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0616403,4.7693968,0,0,40.740002,38.459999,52.43,30.17,4,2,3,0,0,6,2,1,441,507128.5,0,0,1645.2434 -4347,5376,9793,-9,9791,9792,3,1,1,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1048.6208,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.380001,53.470001,-9,-9,7,2,3,0,0,6,1,1,765,98255.367,0,0,0 -4347,5377,9794,-9,9791,9792,4,1,1,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1075.6929,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,2,3,0,0,6,2,1,793,106609.42,0,0,0 -4348,5378,9795,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,4,8.2664394,8.1198177,6.2061515,3,0,0,0,-9,0,-919.16809,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,32,40,15,1,0,-9,0,16.33642,16.33642,0,0,0,0,0,0,0,0,1,1,0,0,6.5852842,0,0,42.279999,47.939999,-9,-9,5,1,1,0,0,1,5,1,254,288096.81,0,0,1774.8706 -4349,5379,9796,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,4,0,5.5373497,5.7108564,3,0,0,0,-9,0,-952.06744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3817272,5.5145617,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,5,2,1,315,129572.95,0,0,307.93796 -4350,5380,9797,-9,-9,-9,1,1,1,38,3,0,3,0,2,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-912.70135,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,27,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.11,49.25,-9,-9,2,1,1,0,0,10,1,0,1394.5,8099.5122,0,0,2920.1877 -4350,5380,9798,-9,-9,9797,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1103.2443,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,1,0,1394.5,8099.5122,0,0,2920.1877 -4350,5380,9799,-9,-9,9797,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-968.05164,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,1394.5,8099.5122,0,0,2920.1877 -4350,5380,9800,-9,-9,9797,2,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-944.24908,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,1,0,1394.5,8099.5122,0,0,2920.1877 -4351,5381,9801,9802,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,0,3,8.0870352,8.6082926,0,1,0,-9,5,0,-3,-118.97471,0,0,1,40,2,4,1,2,2,2019,1,2,10,0,44,42,15,1,0,1,0,9.2984076,9.2984076,0,0,0,0,0,0,0,2,0,0,0,0,0,9.2146568,3,44.360001,54.040001,51,56,5,1,1,0,0,11,5,1,522.5,559090.75,0,0,3597.0068 -4351,5381,9802,9801,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.3140841,8.2635994,0,1,0,-9,5,0,3,20.316833,0,0,0,37,2,3,1,-9,-9,2019,1,1,9,1,61,58,15,1,0,1,0,7.167541,7.167541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,44.360001,54.040001,6,1,1,0,0,11,5,1,522.5,559090.75,0,0,3597.0068 -4352,5382,9803,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,1,1,0,0,4,8.4320068,8.4397001,0,3,0,0,0,-9,0,-888.03729,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,54,-9,-9,6,1,1,0,0,11,5,1,225,151085.23,0,0,3773.6904 -4352,5383,9804,-9,-9,9803,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,5.4263034,5.3135471,0,3,0,0,0,-9,0,-1005.9666,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,10,0,15,1,0,-9,1,2.9573219,2.9573219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.759998,39.810001,-9,-9,3,1,1,0,0,11,2,1,1121,44199.051,0,0,-845.06073 -4352,5384,9805,9806,-9,-9,4,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,8.6144476,8.4260874,0,1,0,-9,5,0,2,102.27174,0,1,0,23,2,3,1,-9,-9,2019,1,3,10,1,0,54,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.72199917,0,0,0,49,58,60.59,41.049999,5,4,1,0,0,11,4,1,484,-12551.637,0,0,2895.5374 -4352,5384,9806,9805,-9,9803,3,1,0,23,1,0,0,0,2,-9,2,1,0,0,3,7.7409635,7.7085199,0,1,0,-9,5,0,-2,-63.485016,0,1,1,25,2,4,1,2,2,2019,1,4,8,0,40,35,15,1,0,1,0,6.0855856,6.0855856,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.6260567,3,60.59,41.049999,49,58,5,1,1,0,0,11,4,1,484,-12551.637,0,0,2895.5374 -4353,5385,9807,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,8.2891331,8.171689,0,3,0,0,0,-9,0,-977.71655,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,44,35,15,1,0,-9,0,8.7969942,8.7969942,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.560001,35.689999,-9,-9,5,1,1,0,0,1,4,1,481,178972.72,0,0,2301.2461 -4353,5386,9808,-9,-9,9807,2,1,1,20,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-928.12268,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.150002,54.82,-9,-9,5,1,1,1,1,1,1,1,1289,179971.31,0,0,1006.3259 -4354,5387,9809,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,3,7.271049,7.0025005,0,3,0,0,0,-9,0,-996.15991,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,0,3.6371677,3.6371677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,8,2,1,1954,73095.484,0,0,222.18848 -4355,5388,9810,9811,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.708024,7.6794639,1,0,-9,9,0,2,-90.437027,0,0,0,67,1,3,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3256412,7.584578,0,0,52.82,53.970001,49.84,36.720001,6,1,1,0,0,9,5,1,212.5,2582894.5,0,0,5093.3687 -4355,5388,9811,9810,-9,-9,1,1,1,67,1,0,0,0,1,-9,1,1,0,0,3,5.1818004,9.0475922,8.8036003,1,0,-9,9,0,-2,64.836929,0,0,0,69,1,4,3,2,3,2019,2,2,12,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2558289,8.7882252,0,0,49.84,36.720001,52.82,53.970001,2,1,1,0,0,9,5,1,212.5,2582894.5,0,0,5093.3687 -4356,5389,9812,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,0,3,0,4.8180876,4.7675481,3,0,0,0,-9,0,-997.336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5883664,4.7089429,0,0,35.200001,46,-9,-9,4,1,1,0,0,4,2,1,355,65523.992,0,0,2059.54 -4357,5390,9813,9815,-9,-9,2,1,0,25,1,2,2,0,2,-9,2,1,0,0,5,7.063632,6.714983,3.4160154,2,0,-9,4,0,-7,-27.143236,0,1,1,32,2,4,1,-9,-9,2019,1,1,17,6,16,12,15,1,1,1,0,8.9897947,8.9897947,0,0,0,0,0,0,0,0,1,1,0,2.8018503,0,0,0,46.060001,60.240002,51.240002,58.84,5,1,1,0,0,10,4,1,586.75,272503.72,0,0,3200.7803 -4357,5390,9814,-9,9813,9815,3,1,1,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.3641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,586.75,272503.72,0,0,3200.7803 -4357,5390,9815,9813,-9,-9,1,1,1,32,1,2,2,0,2,-9,1,1,0,0,4,8.5404863,8.2992086,0,2,0,-9,4,0,7,-16.455328,0,0,0,25,2,5,1,2,2,2019,1,2,7,0,60,80,15,1,0,1,0,9.947629,9.947629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,46.060001,60.240002,5,1,1,0,0,10,4,1,586.75,272503.72,0,0,3200.7803 -4357,5390,9816,-9,9813,9815,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-928.39984,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,1,586.75,272503.72,0,0,3200.7803 -4358,5391,9817,9818,-9,-9,1,1,0,43,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,1,1,-9,3,0,0,0,1,40,2,4,3,2,3,2019,4,2,22,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,37.66,51.830002,57.200001,4,1,1,1,0,2,1,0,251.5,3675.9883,0,0,1275.5094 -4358,5391,9818,9817,-9,-9,2,1,1,40,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,1,-9,-3,0,-9,0,0,43,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,39.389999,37.66,3,1,1,1,0,2,1,0,251.5,3675.9883,0,0,1275.5094 -4359,5392,9819,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1013.1309,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,7,0,37,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.41,56.150002,-9,-9,1,1,1,1,1,4,1,0,2381,48061.598,0,0,546.41327 -4360,5393,9820,-9,9821,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.7275,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,1,954,34429.945,0,0,246.6066 -4360,5393,9821,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,2,1,0,0,3,7.4139233,7.1781068,0,4,0,-9,0,1,0,-978.76801,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,15,15,15,1,0,-9,0,10.653519,10.653519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.529999,47.939999,-9,-9,3,1,1,0,0,13,2,1,954,34429.945,0,0,246.6066 -4360,5394,9822,-9,9821,-9,2,1,0,19,2,0,2,0,2,-9,2,1,0,0,4,7.3858013,7.1798716,0,3,0,0,0,-9,0,-873.30145,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,25,35,15,1,0,-9,1,6.2785525,6.2785525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,-9,-9,5,1,1,0,0,13,3,1,116,-29790.031,0,0,457.25464 -4360,5395,9823,-9,9821,-9,3,1,1,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-990.32672,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,1,13,3,1,1444,16719.154,0,0,0 -4361,5396,9824,-9,-9,-9,1,1,0,40,3,0,3,0,1,-9,2,1,0,0,4,8.060317,7.9993143,6.3498306,4,0,0,0,-9,0,-1084.1125,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,27,23,15,1,0,-9,0,8.3151579,8.3151579,0,0,0,0,0,0,0,0,1,1,0,6.347538,0,0,0,50.169998,51.220001,-9,-9,3,1,1,0,1,2,3,1,559.75,58995.863,0,0,2021.4137 -4361,5396,9825,-9,9824,-9,2,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-975.54071,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,1,559.75,58995.863,0,0,2021.4137 -4361,5396,9826,-9,9824,-9,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1151.2391,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,559.75,58995.863,0,0,2021.4137 -4361,5396,9827,-9,9824,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1100.33,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,3,1,559.75,58995.863,0,0,2021.4137 -4362,5397,9828,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,0,3,8.7925386,8.9541025,0,3,0,0,0,-9,0,-991.42041,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,20,40,15,1,0,-9,0,30.249189,30.249189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.849998,50.34,-9,-9,4,1,1,0,0,2,5,1,272,837736.44,0,0,2720.7068 -4363,5398,9829,9830,-9,-9,2,1,1,43,1,0,2,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,16,0,10,0,0,0,0,33,2,4,3,3,3,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48,56,5,2,3,0,0,8,1,0,289.5,3143.0645,0,0,2005.6396 -4363,5398,9830,9829,-9,-9,1,1,0,33,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,-10,0,0,0,1,43,2,4,3,2,3,2019,4,2,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,52,55,5,2,3,0,0,8,1,0,289.5,3143.0645,0,0,2005.6396 -4364,5399,9831,-9,9832,9833,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1068.8783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,0,613.5,215568.3,0,0,1402.2339 -4364,5399,9832,9833,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.252789,7.4248796,0,2,0,-9,13,-9,-3,-20.570093,-9,0,1,47,2,4,1,3,3,2019,1,1,10,1,49,0,15,1,0,1,0,2.9002762,2.9002762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,6,2,3,0,0,8,3,0,613.5,215568.3,0,0,1402.2339 -4364,5399,9833,9832,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,7.7482486,7.7341266,0,2,0,-9,13,-9,3,-124.10638,-9,0,0,44,2,4,1,3,3,2019,1,2,9,1,42,0,15,1,0,1,0,7.8141327,7.8141327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,0,8,3,0,613.5,215568.3,0,0,1402.2339 -4364,5399,9834,-9,9832,9833,3,1,0,17,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-864.5047,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,3,0,613.5,215568.3,0,0,1402.2339 -4365,5400,9835,-9,-9,-9,1,1,1,80,2,0,0,0,2,-9,4,3,0,0,2,0,5.4229856,5.6634269,3,0,0,0,-9,0,-1006.2887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2251973,5.8992243,0,0,54.209999,47.099998,-9,-9,7,1,1,0,0,8,2,1,482,142242.77,0,0,1228.6012 -4366,5401,9836,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,6.5883627,6.2409515,3,0,0,0,-9,0,-1071.2458,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0826449,0,0,50,47,-9,-9,5,1,1,0,0,13,2,1,273,47187.797,0,0,1662.5891 -4367,5402,9837,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,3,7.9144616,8.2887545,0,3,0,-9,0,1,0,-966.43524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,35,35,15,1,1,-9,0,10.505665,10.505665,0,0,0,0,0,0,0,0,0,0,0,.12911813,0,0,0,55.59,36.880001,-9,-9,3,2,3,0,0,8,4,1,276,433982.31,0,0,1050.8942 -4367,5403,9838,-9,9837,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.0189867,8.2702332,0,3,0,0,0,-9,0,-1047.4279,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,40,35,15,1,0,-9,1,10.38208,10.38208,0,0,0,0,0,0,0,0,0,0,0,.24976632,0,0,0,49,58,-9,-9,5,2,3,0,0,8,4,1,329,123737.46,0,0,-302.99213 -4368,5404,9839,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1086.312,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,16.039839,0,0,0,0,1,1,0,0,0,0,0,40.959999,25.68,-9,-9,2,1,1,0,0,10,1,0,1216,-83081.273,0,0,1826.5966 -4369,5405,9840,-9,-9,-9,1,1,0,52,3,0,3,0,3,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-846.56653,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,22,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.43,35.66,-9,-9,4,1,1,0,0,11,1,0,1143.5,69111.563,0,0,757.67755 -4369,5405,9841,-9,9840,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-976.98816,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,1,0,1143.5,69111.563,0,0,757.67755 -4370,5406,9842,-9,9843,9844,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.80017,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,936.33331,286985.13,0,0,7778.0054 -4370,5406,9843,9844,-9,-9,1,1,0,28,1,0,1,0,1,-9,1,1,0,0,4,8.621973,8.6062422,0,2,0,-9,3,0,-2,133.42932,0,1,1,30,1,4,1,2,1,2019,1,2,7,0,37,38,15,1,0,1,0,17.488348,17.488348,0,0,0,0,0,0,0,0,0,0,0,8.2023935,0,0,0,52.970001,53.970001,57.16,56.150002,6,1,1,0,0,2,5,1,936.33331,286985.13,0,0,7778.0054 -4370,5406,9844,9843,-9,-9,2,1,1,30,1,0,1,0,1,-9,2,1,0,0,4,9.2228012,9.4977102,0,2,0,-9,3,0,2,-27.543848,0,0,0,28,1,4,1,-9,-9,2019,1,1,6,0,40,38,15,1,0,1,0,30.49135,30.49135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,52.970001,53.970001,6,1,1,0,0,2,5,1,936.33331,286985.13,0,0,7778.0054 -4371,5407,9845,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,0,4,8.8138018,8.6145391,0,3,0,0,0,-9,0,-932.96094,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,46,43,15,1,0,-9,0,17.703842,17.703842,0,0,0,0,0,0,0,7,1,1,0,6.0347576,0,6.6868067,3,60.52,53.200001,-9,-9,6,1,1,0,0,12,5,1,254,663686.88,0,0,1763.0183 -4372,5408,9846,9847,-9,-9,2,1,0,59,1,0,0,0,3,-9,10,3,0,0,4,0,0,0,1,0,-9,38,0,-2,-42.065063,0,0,0,61,3,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.810001,48.029999,48.279999,60.18,6,1,1,0,0,13,3,1,984.5,528932.19,0,0,1209.1713 -4372,5408,9847,9846,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,0,4,7.7140174,7.8176436,0,1,0,-9,38,0,2,-18.277027,0,0,0,59,3,4,3,3,3,2019,2,2,8,0,60,75,15,1,0,3,0,4.2247839,4.2247839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,53.810001,48.029999,1,1,1,0,0,13,3,1,984.5,528932.19,0,0,1209.1713 -4373,5409,9848,9849,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.6197748,7.6464314,1,0,-9,8,0,-5,243.68188,0,0,0,68,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.8190751,27.856405,1,54.200001,57.490002,54.619999,26.74,6,1,1,0,0,12,3,1,950,650073.75,0,0,2023.0166 -4373,5409,9849,9848,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,5,33.973091,0,0,0,63,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,19.893347,0,0,0,0,0,1,1,0,0,0,0,0,54.619999,26.74,54.200001,57.490002,4,1,1,0,0,12,3,1,950,650073.75,0,0,2023.0166 -4374,5410,9850,9851,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,5,8.845521,8.7264891,0,1,0,-9,14,0,2,44.505932,0,0,0,47,2,2,1,3,3,2019,1,1,9,0,47,43,15,1,0,1,0,16.831028,16.831028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,41.369999,42.700001,6,3,4,0,1,7,5,1,486,217630.39,0,0,2392.3904 -4374,5410,9851,9850,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,2,6.3198557,6.6386075,0,1,0,-9,14,0,-2,-75.581863,0,0,0,49,1,5,1,3,3,2019,1,2,13,2,15,18,15,1,0,1,0,5.0458937,5.0458937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.369999,42.700001,43.57,62.68,3,1,1,0,1,7,5,1,486,217630.39,0,0,2392.3904 -4375,5411,9852,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,1,0,5.9733129,6.3123994,3,0,0,0,-9,0,-1028.6316,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.6070566,6.1374664,0,0,37.509998,34.330002,-9,-9,5,1,1,0,0,2,2,1,627,212959.72,0,0,1174.2961 -4376,5412,9853,9854,-9,-9,2,1,0,32,1,0,0,0,1,1,1,1,0,0,3,5.6237035,5.7121997,0,1,0,-9,5,0,-13,-11.72576,-9,0,1,45,3,2,1,-9,-9,2019,1,1,18,5,16,0,15,1,1,1,0,2.0284774,2.0284774,0,0,0,0,0,0,0,0,0,0,0,5.9823213,0,0,0,35.630001,51.490002,56.34,40.630001,3,1,1,0,0,2,3,0,590.5,116261.81,0,0,854.50549 -4376,5412,9854,9853,-9,-9,1,1,1,45,1,0,0,0,3,-9,1,1,0,0,2,7.8823757,7.5429006,0,1,0,-9,5,0,13,46.137241,0,0,0,32,1,3,1,-9,-9,2019,1,2,7,0,36,30,15,1,0,1,0,6.6895242,6.6895242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.34,40.630001,35.630001,51.490002,5,1,1,0,0,2,3,0,590.5,116261.81,0,0,854.50549 -4377,5413,9855,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,7.4317722,7.1642866,3,0,-9,0,1,0,-867.41528,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.255125,7.4479618,0,0,46.34,48.810001,-9,-9,4,1,1,0,0,12,3,1,784,372085.34,0,0,1472.2009 -4378,5414,9856,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,0,1,8.4817219,8.4934225,0,3,0,0,0,-9,0,-1129.2521,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,38,37,15,1,0,-9,1,16.164675,16.164675,0,0,0,0,0,0,0,2,1,1,0,1.5967124,0,0,3,45.310001,44.400002,-9,-9,3,4,2,0,0,9,5,1,304,401757.59,0,0,2245.0669 -4379,5415,9857,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,5,0,8.1331291,7.9610043,3,0,0,0,-9,0,-1017.5989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,28,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9665875,0,0,60.419998,54.810001,-9,-9,6,1,1,0,0,12,4,1,336,769188.5,0,0,3156.5662 -4380,5416,9858,-9,9859,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1050.256,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,5,4,1,447.5,26336.986,0,0,1499.9047 -4380,5416,9859,-9,-9,-9,1,1,0,30,3,0,1,0,1,-9,2,1,0,0,3,8.0515594,8.1942282,6.6432924,4,0,0,0,-9,0,-930.77704,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,6,18,15,1,0,-9,0,61.264732,61.264732,0,0,0,0,0,0,0,0,1,1,0,6.8114452,0,0,0,57.330002,53.459999,-9,-9,6,2,3,0,0,5,4,1,447.5,26336.986,0,0,1499.9047 -4380,5417,9860,-9,-9,-9,3,1,0,33,3,0,1,0,1,-9,2,1,0,0,1,8.52349,8.2021694,0,4,0,0,0,-9,0,-1011.6661,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,4,37,48,15,1,1,-9,0,13.623047,13.623047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.209999,31.27,-9,-9,5,2,3,0,0,5,4,1,8218,21552.908,0,0,1458.6791 -4381,5418,9861,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-997.58551,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2385368,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,10,1,1,683,110094.94,0,0,1000.1907 -4382,5419,9862,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,3,3,0,0,2,0,6.1785898,5.9375973,3,0,0,0,-9,0,-1072.7673,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,21,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0362101,0,0,27.879999,30.9,-9,-9,2,3,4,1,1,8,2,1,688,108842.93,0,0,1278.5748 -4382,5420,9863,-9,9862,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,5.974587,5.8645797,0,3,0,0,0,-9,0,-1006.9827,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,25,0,15,1,1,-9,1,2.0040069,2.0040069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.619999,54.509998,-9,-9,5,3,4,0,1,8,2,1,689,68677.969,0,0,260.94885 -4383,5421,9864,9865,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,4,-44.465023,0,0,0,63,2,2,1,-9,-9,2019,3,1,20,8,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6233141,0,0,0,38.5,55.029999,54.91,38.470001,4,1,1,0,0,13,4,1,743.5,884582.75,0,0,1709.735 -4383,5421,9865,9864,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,8.2322893,8.2982225,0,1,0,-9,7,0,-4,54.316414,0,0,0,67,2,3,3,2,2,2019,2,2,11,1,54,56,15,1,0,4,0,9.1426582,9.1426582,0,0,0,0,0,0,0,0,1,1,0,3.5273435,0,0,0,54.91,38.470001,38.5,55.029999,4,1,1,0,0,13,4,1,743.5,884582.75,0,0,1709.735 -4384,5422,9866,-9,-9,-9,2,1,1,36,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1082.3411,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.6656986,3,25.950001,58.73,-9,-9,4,1,1,0,1,13,1,1,2750,178190.06,0,0,1196.8785 -4384,5423,9867,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-972.88483,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,3.8355672,0,17.646208,0,0,46.353542,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,13,1,1,409,-63870.469,0,0,2362.6396 -4385,5424,9868,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.848834,7.9277005,0,3,0,0,0,-9,0,-1031.6687,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,42,38,15,1,0,-9,0,7.6766682,7.6766682,0,0,0,0,0,0,0,2,1,1,0,0,0,10.656986,3,55.189999,54.259998,-9,-9,6,1,1,0,0,5,4,1,921,-40247,0,0,1040.7059 -4386,5425,9869,-9,9872,9870,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.1713,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,0,846.5,586854.69,0,0,2964.425 -4386,5425,9870,9872,-9,-9,1,1,1,40,1,0,2,0,2,-9,1,1,0,0,3,4.7252665,4.5020633,0,2,0,-9,7,0,1,-132.50844,0,0,0,39,1,4,1,2,2,2019,1,2,12,0,24,0,15,1,0,1,0,.42573211,.42573211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.07,54.57,48.75,61.27,4,1,1,0,0,10,4,0,846.5,586854.69,0,0,2964.425 -4386,5425,9871,-9,9872,9870,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.7695,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,846.5,586854.69,0,0,2964.425 -4386,5425,9872,9870,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,8.6599464,8.6342411,0,2,0,-9,7,0,-1,118.14471,0,0,1,40,2,3,1,-9,-9,2019,1,1,3,0,40,38,15,1,0,1,0,17.243696,17.243696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,61.27,40.07,54.57,6,1,1,0,0,10,4,0,846.5,586854.69,0,0,2964.425 -4387,5426,9873,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,2,1,0,0,4,7.6154623,8.2537136,7.4794092,3,0,0,0,-9,0,-1109.7046,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,48,15,1,0,-9,0,7.3595867,7.3595867,0,0,0,0,0,0,0,0,1,1,0,6.9368258,7.5193548,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,504,255058.22,0,0,1671.1104 -4388,5427,9874,-9,-9,-9,2,1,0,33,2,0,1,0,1,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1024.9655,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.51,49.130001,-9,-9,1,4,2,0,0,7,1,1,470,-56276.117,0,0,1634.6738 -4388,5427,9875,-9,9874,-9,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1122.1212,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,7,1,1,470,-56276.117,0,0,1634.6738 -4389,5428,9876,9877,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,3,9.075036,9.1999121,0,2,0,-9,10,0,7,-76.316956,0,0,0,46,2,4,1,-9,-9,2019,1,1,11,0,44,46,15,1,0,1,0,19.932508,19.932508,0,0,0,0,0,0,0,0,0,0,0,1.9585679,0,0,0,44.380001,58.099998,48.869999,58.549999,6,1,1,0,0,5,5,1,867.66669,1487205,0,0,17430.885 -4389,5428,9877,9876,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,9.6517887,9.7188692,0,2,0,-9,28,0,-7,.09035743,0,0,0,53,2,3,1,2,2,2019,1,2,10,0,46,43,15,1,0,1,0,41.488831,41.488831,0,0,0,0,0,0,0,7,0,0,0,3.2176299,0,15.298962,3,48.869999,58.549999,44.380001,58.099998,5,1,1,0,0,5,5,1,867.66669,1487205,0,0,17430.885 -4389,5428,9878,-9,9877,9876,4,1,1,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1132.1089,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.4032153,0,6.8654909,3,51.950001,49.200001,-9,-9,7,1,1,0,0,5,5,1,867.66669,1487205,0,0,17430.885 -4389,5429,9879,-9,9877,9876,3,1,1,19,2,0,1,1,2,0,7,2,0,0,4,0,6.6131763,7.0172396,3,0,0,0,-9,0,-1161.2384,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7397861,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,5,2,1,432,0,0,0,-22.171665 -4390,5430,9880,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,5.7906156,5.7327256,3,0,0,0,-9,0,-1024.0271,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3078036,5.6768656,0,0,46.84,47.650002,-9,-9,6,1,1,0,0,12,2,1,99,60903.336,0,0,1067.5284 -4390,5431,9881,-9,9880,-9,2,1,0,58,2,0,0,0,1,-9,2,1,0,0,4,7.7116699,7.4692903,0,3,0,0,0,-9,0,-1103.1147,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,35,0,15,1,0,-9,1,6.7745428,6.7745428,0,0,0,0,0,0,0,0,1,1,0,3.4522166,0,0,0,52.43,55.57,-9,-9,6,1,1,0,0,12,3,1,2875,56494.527,0,0,1784.3217 -4391,5432,9882,-9,9884,9885,3,1,1,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-956.72852,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,48.470001,-9,-9,6,2,3,0,0,6,2,1,712.40002,167482.98,0,0,1574.9071 -4391,5432,9883,-9,9884,9885,4,1,0,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.57251,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4058821,0,0,0,44.810001,57.830002,-9,-9,6,2,3,0,0,6,2,1,712.40002,167482.98,0,0,1574.9071 -4391,5432,9884,9885,-9,-9,2,1,0,53,1,0,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,28,0,-3,109.82754,0,0,0,56,3,3,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,41.91,43.490002,43.599998,3,2,3,0,0,6,2,1,712.40002,167482.98,0,0,1574.9071 -4391,5432,9885,9884,-9,-9,1,1,1,56,1,0,2,0,3,-9,2,1,0,0,3,7.2275362,7.5238085,0,2,0,-9,28,0,3,67.327141,0,0,0,53,2,2,3,3,3,2019,2,2,12,0,24,24,15,1,0,3,0,9.2484179,9.2484179,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.490002,43.599998,38.509998,41.91,4,2,3,0,0,6,2,1,712.40002,167482.98,0,0,1574.9071 -4391,5432,9886,-9,9884,9885,5,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-891.0575,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,6,2,1,712.40002,167482.98,0,0,1574.9071 -4392,5433,9887,-9,-9,-9,1,1,0,28,2,1,1,0,2,-9,2,1,0,0,4,7.2514257,7.423811,0,2,0,-9,4,0,-10,-89.581879,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,2,6,0,25,25,15,1,0,-9,0,10.17553,10.17553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.099998,45.09,48,56,7,1,1,0,0,9,2,1,486,126658.08,0,0,-407.24695 -4393,5434,9888,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,0,3,8.7648907,8.6652021,0,3,0,0,0,-9,0,-961.77271,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,40,44,15,1,0,-9,0,22.16469,22.16469,0,0,0,0,0,0,0,0,1,1,0,2.95894,0,0,0,41.790001,57.73,-9,-9,4,1,1,0,0,13,5,1,637,322648.25,0,0,2274.7246 -4393,5434,9889,-9,9888,-9,2,1,0,17,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-883.77094,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,5,1,637,322648.25,0,0,2274.7246 -4394,5435,9890,9891,-9,-9,1,1,1,53,1,0,0,0,1,-9,4,3,0,1,5,0,0,0,1,0,-9,29,0,1,-6.3921857,0,0,0,52,1,5,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.05408,3,62.389999,56.709999,59.43,58.049999,7,1,1,0,0,9,3,1,512,1760755.3,0,0,1156.2788 -4394,5435,9891,9890,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,5,7.8008676,8.200779,0,1,0,-9,29,0,-1,-110.74136,0,0,0,53,1,5,3,-9,-9,2019,2,1,8,0,60,90,15,1,0,4,0,4.9102783,4.9102783,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.459763,3,59.43,58.049999,62.389999,56.709999,6,1,1,0,0,9,3,1,512,1760755.3,0,0,1156.2788 -4394,5436,9892,-9,9891,9890,3,1,1,21,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1051.9984,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.779999,-9,-9,7,1,1,0,0,9,1,1,919,-182054.31,0,0,940.7851 -4395,5437,9893,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,4,3,0,1,1,0,6.1466599,6.0461655,3,0,0,0,-9,0,-955.25067,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.1854801,127.70073,3,40.549999,21,-9,-9,2,1,1,0,0,11,2,0,1705,-22763.67,0,0,-1056.2584 -4395,5438,9894,-9,9893,-9,2,1,1,34,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1060.007,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.120001,36.200001,-9,-9,2,1,1,0,1,11,1,0,235,72696.758,0,0,189.86812 -4396,5439,9895,-9,9896,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.68951,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.41,60.029999,-9,-9,4,1,1,0,0,7,2,1,513,-114618.7,0,0,924.18909 -4396,5439,9896,-9,-9,-9,1,1,0,48,2,0,1,0,3,-9,1,1,0,0,4,6.8483434,6.8116903,0,4,0,0,0,-9,0,-965.35522,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,15,15,1,0,-9,0,5.6969719,5.6969719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,57.48,-9,-9,6,1,1,0,0,7,2,1,513,-114618.7,0,0,924.18909 -4396,5440,9897,-9,9896,-9,2,1,1,22,2,0,1,0,2,-9,1,1,0,0,4,5.5027709,5.7190175,0,3,0,0,0,-9,0,-1073.7938,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,60,58,15,1,1,-9,1,.44281903,.44281903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.889999,64.980003,-9,-9,5,1,1,0,1,7,2,1,687,-140861.2,0,0,915.84442 -4397,5441,9898,-9,9899,9900,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.48962,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,4,1,1,0,0,9,4,1,823.66669,578259.5,0,0,3494.0295 -4397,5441,9899,9900,-9,-9,1,1,0,51,1,0,1,0,3,-9,2,1,0,0,4,8.0821648,7.9401207,0,2,0,-9,22,0,3,-50.199375,0,0,0,48,2,4,1,-9,-9,2019,1,2,5,0,16,6,15,1,0,1,0,30.349739,30.349739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,57.16,56.150002,7,1,1,0,0,9,4,1,823.66669,578259.5,0,0,3494.0295 -4397,5441,9900,9899,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.5053186,8.6279049,0,2,0,-9,22,0,-3,-59.559998,0,0,0,51,3,4,1,-9,-9,2019,1,1,8,0,46,44,15,1,0,1,0,14.911119,14.911119,0,0,0,0,0,0,0,0,1,1,0,.5929597,0,0,0,57.16,56.150002,51.77,58.57,6,1,1,0,0,9,4,1,823.66669,578259.5,0,0,3494.0295 -4397,5442,9901,-9,9899,9900,4,1,1,19,2,0,1,0,2,1,2,1,0,0,4,7.9115152,7.9417729,0,3,0,0,0,-9,0,-1142.0713,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,0,15,1,0,-9,1,7.5737729,7.5737729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.330002,-9,-9,6,1,1,0,0,9,3,1,385,-118926.34,0,0,1170.139 -4398,5443,9902,9905,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,0,4,7.3898921,7.422998,0,2,0,-9,8,0,0,48.309105,0,0,1,33,3,4,1,2,-9,2019,1,2,13,1,18,19,15,1,0,1,0,9.1384697,9.1384697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.59,60.849998,54.200001,57.490002,6,1,1,0,0,10,4,1,959.75,433593.84,0,0,3868.488 -4398,5443,9903,-9,9902,9905,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.001,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,959.75,433593.84,0,0,3868.488 -4398,5443,9904,-9,9902,9905,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.4132,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,959.75,433593.84,0,0,3868.488 -4398,5443,9905,9902,-9,-9,2,1,1,33,1,0,2,0,3,-9,2,1,0,0,4,8.6164188,8.3419886,0,2,0,-9,8,0,0,8.234973,0,0,0,33,1,4,1,-9,-9,2019,1,1,11,0,45,50,15,1,0,1,0,14.772878,14.772878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,38.59,60.849998,6,1,1,0,0,10,4,1,959.75,433593.84,0,0,3868.488 -4399,5444,9906,9907,-9,-9,1,1,0,45,1,0,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,22,0,-2,-2.1877084,0,0,0,47,1,5,1,3,3,2019,3,2,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.200001,48.66,48.959999,60.259998,6,3,4,0,0,8,4,1,248.66667,365415.88,0,0,3696.2654 -4399,5444,9907,9906,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,5,9.0722904,9.0392475,0,2,0,-9,22,0,2,-28.832621,0,0,0,45,1,3,3,-9,-9,2019,2,1,15,3,45,44,15,1,0,3,0,26.785057,26.785057,0,0,0,0,0,0,0,0,1,1,0,2.169888,0,0,0,48.959999,60.259998,56.200001,48.66,6,1,1,0,0,8,4,1,248.66667,365415.88,0,0,3696.2654 -4399,5444,9908,-9,9906,9907,6,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.5193,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,4,1,248.66667,365415.88,0,0,3696.2654 -4399,5445,9909,-9,9906,9907,3,1,1,20,2,0,3,1,2,0,7,2,0,0,5,6.1800194,6.6910553,6.279357,3,0,0,0,-9,0,-1065.916,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7779236,0,0,0,46.490002,55.700001,-9,-9,6,4,2,0,0,8,2,1,1260,-124118.96,0,0,645.13928 -4399,5446,9910,-9,9906,9907,4,1,1,18,2,0,3,1,2,0,7,2,0,0,4,5.5130296,6.5375605,6.4826365,3,0,0,0,-9,0,-1138.2499,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,1,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6427727,0,0,0,33.790001,55.900002,-9,-9,5,4,2,0,0,8,4,1,783,-160073.39,0,0,-663.20233 -4400,5447,9911,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,2,1,0,0,2,8.6769447,8.9012871,0,3,0,0,0,-9,0,-998.56812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,43,39,15,1,0,-9,0,13.200882,13.200882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,41.869999,-9,-9,2,1,1,0,0,13,5,0,521,-45096.973,0,0,1247.9558 -4401,5448,9912,9913,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,5,8.9359732,8.9966707,0,2,0,-9,8,0,-7,-159.53461,-9,0,0,53,1,3,1,3,2,2019,1,2,8,0,44,0,15,1,0,1,0,22.351736,22.351736,0,0,0,0,0,0,0,0,1,1,0,4.2267466,0,0,0,57.060001,57.759998,46.080002,57.200001,6,1,1,0,0,9,5,1,653,1800151,0,0,7300.0439 -4401,5448,9913,9912,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,3,8.9758368,9.2921085,0,2,0,-9,8,0,7,-28.371799,0,0,0,46,1,5,1,3,3,2019,1,1,10,0,47,85,15,1,0,1,0,25.302101,25.302101,0,0,0,0,0,0,0,0,1,1,0,2.848,0,0,0,46.080002,57.200001,57.060001,57.759998,5,1,1,0,0,9,5,1,653,1800151,0,0,7300.0439 -4402,5449,9914,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1121.05,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.790001,22.280001,-9,-9,3,1,1,0,0,2,1,0,258,4634.1577,0,0,1624.1951 -4403,5450,9915,-9,9916,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.57916,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,0,503.5,184651.59,0,0,2576.4463 -4403,5450,9916,-9,-9,-9,1,1,0,35,2,0,1,0,2,-9,2,1,0,0,4,8.5853109,8.7356691,6.0271425,4,0,0,0,-9,0,-947.35126,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,21,8,38,38,15,1,1,-9,0,17.438618,17.438618,0,0,0,0,0,0,0,0,1,1,0,6.3143888,0,0,0,33.490002,64.260002,-9,-9,6,1,1,0,0,2,5,0,503.5,184651.59,0,0,2576.4463 -4404,5451,9917,-9,-9,-9,2,1,0,56,2,0,0,0,2,-9,2,1,0,0,4,8.0588627,8.0455894,0,3,0,0,0,-9,0,-1031.3829,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,36,15,1,0,-9,1,9.2118282,9.2118282,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.982384,3,62.490002,55.09,-9,-9,6,1,1,0,0,13,4,1,102,-20761.125,0,0,706.51031 -4405,5452,9918,-9,-9,-9,1,1,0,83,2,0,0,0,3,-9,4,3,0,0,4,0,7.3523464,7.0089736,3,0,0,0,-9,0,-984.54919,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.280654,6.9497933,0,0,60.529999,42.470001,-9,-9,6,1,1,0,0,8,2,0,504,-38050.129,0,0,1803.4812 -4406,5453,9919,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,2,8.2181091,8.2732525,0,3,0,0,0,-9,0,-1016.9953,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,37,40,15,1,1,-9,0,11.970035,11.970035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.879999,51.849998,-9,-9,3,1,1,0,0,2,4,0,642,357221.91,0,0,2150.2749 -4407,5454,9920,9921,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.4175758,7.6450825,1,0,-9,9,0,-7,55.332993,0,0,0,76,2,1,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5101357,0,0,57.16,56.150002,49.07,22.42,6,1,1,0,0,2,3,1,278,843295.94,0,0,3159.0251 -4407,5454,9921,9920,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,1,1,0,6.395391,6.3457031,1,0,-9,9,0,7,-29.327244,0,0,0,69,2,4,3,2,2,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,1,0,2.4648738,0,0,0,0,0,1,1,0,6.4395151,6.1295066,0,0,49.07,22.42,57.16,56.150002,6,1,1,0,0,2,3,1,278,843295.94,0,0,3159.0251 -4408,5455,9922,9923,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.1865468,7.2434487,0,1,0,-9,39,0,2,-12.324084,0,0,0,58,2,3,1,2,2,2019,1,1,10,0,24,24,15,1,0,1,0,6.3552308,6.3552308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.110001,47.630001,57.330002,53.459999,6,1,1,0,0,9,4,1,1661,691782.13,0,0,2585.7537 -4408,5455,9923,9922,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.4719086,8.3809004,0,1,0,-9,39,0,-2,-2.0516033,0,0,0,60,2,3,1,3,2,2019,1,2,7,0,60,50,15,1,0,1,0,9.6363468,9.6363468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,55.110001,47.630001,6,1,1,0,0,9,4,1,1661,691782.13,0,0,2585.7537 -4409,5456,9924,9925,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,8.2150059,8.0777578,0,1,0,-9,4,0,2,-111.08887,0,1,1,24,2,4,1,-9,-9,2019,1,2,12,1,40,38,15,1,0,1,0,8.6549826,8.6549826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.440001,65.400002,60.119999,54.799999,6,1,1,0,0,2,4,0,705,305947.44,0,0,3367.5198 -4409,5456,9925,9924,-9,-9,2,1,1,24,1,0,0,0,2,-9,2,1,0,0,4,8.1146536,8.3127823,0,1,0,-9,4,0,-2,123.02122,0,1,0,26,2,4,1,-9,-9,2019,1,1,4,0,60,0,15,1,0,1,0,5.8903556,5.8903556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,25.440001,65.400002,7,1,1,0,0,2,4,0,705,305947.44,0,0,3367.5198 -4410,5457,9926,9927,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,0,4,8.5366087,7.9233413,0,2,0,-9,9,0,-5,-35.267452,0,0,0,58,1,4,1,2,2,2019,1,1,9,0,40,42,15,1,0,1,0,14.728077,14.728077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.189999,54.259998,6,1,1,0,0,8,4,0,1301,268913.5,0,0,2664.8247 -4410,5457,9927,9926,-9,-9,1,1,1,58,1,0,1,0,1,-9,2,1,0,0,4,7.9897594,7.8625889,0,2,0,-9,29,0,5,140.89783,0,0,0,53,2,4,1,-9,-9,2019,1,2,8,0,38,40,15,1,0,1,0,8.4123487,8.4123487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,57.16,56.150002,6,1,1,0,0,8,4,0,1301,268913.5,0,0,2664.8247 -4410,5458,9928,-9,9926,9927,3,1,1,20,2,0,1,0,2,0,7,2,0,0,5,4.9325809,4.8449869,0,3,0,0,0,-9,0,-908.02332,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,3,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,6,4,2,0,0,8,2,0,2472,-211526.7,0,0,-471.16565 -4410,5459,9929,-9,9926,9927,4,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1137.6892,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.060001,58.639999,-9,-9,6,1,1,0,0,8,4,0,528,0,0,0,0 -4411,5460,9930,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1070.3278,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.860001,55.310001,-9,-9,6,1,1,0,1,1,1,1,270,-122125.93,0,0,0 -4412,5461,9931,9934,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,0,4,7.1729765,7.8173585,0,2,0,-9,6,-9,3,109.09881,-9,0,0,38,1,2,1,1,2,2019,1,2,12,1,60,0,15,1,0,1,0,2.5550344,2.5550344,0,0,0,0,0,0,0,0,1,1,0,4.063942,0,0,0,48.759998,53.240002,35.279999,47.77,6,1,1,0,0,5,5,1,1013.75,622554.56,0,0,3420.4529 -4412,5461,9932,-9,9934,9931,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1026.2968,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,1013.75,622554.56,0,0,3420.4529 -4412,5461,9933,-9,9934,9931,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1058.9523,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,1013.75,622554.56,0,0,3420.4529 -4412,5461,9934,9931,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,2,8.9797554,9.0989561,0,2,0,-9,6,-9,-3,104.97295,-9,0,1,41,2,4,1,1,1,2019,1,1,22,10,40,0,15,1,1,1,0,33.134289,33.134289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.279999,47.77,48.759998,53.240002,4,1,1,0,0,5,5,1,1013.75,622554.56,0,0,3420.4529 -4413,5462,9935,-9,-9,-9,1,1,0,71,2,0,0,0,1,-9,4,3,0,0,3,0,8.01548,8.1350422,3,0,0,0,-9,0,-1042.077,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0994406,8.1662617,0,0,55.779999,44.75,-9,-9,6,1,1,0,0,13,3,1,1518,522304.38,0,0,2141.321 -4414,5463,9936,9938,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,0,2,9.0458498,9.2341776,0,2,0,-9,5,0,2,40.096706,0,0,0,37,1,4,1,2,2,2019,1,2,8,1,80,48,15,1,0,1,0,10.573425,10.573425,0,0,0,0,0,0,0,0,1,1,0,1.1924371,0,0,0,52.240002,50.75,49.349998,59.639999,6,1,1,0,0,4,5,0,740.66669,-22470.248,0,0,5748.7896 -4414,5463,9937,-9,9938,9936,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1131.4589,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,5,0,740.66669,-22470.248,0,0,5748.7896 -4414,5463,9938,9936,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,0,4,8.6470413,9.0815573,0,2,0,-9,5,0,-2,83.073639,0,0,1,39,2,2,1,-9,-9,2019,1,1,11,0,40,52,15,1,0,1,0,19.743919,19.743919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,52.240002,50.75,6,1,1,0,0,4,5,0,740.66669,-22470.248,0,0,5748.7896 -4415,5464,9939,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,4,0,7.1111088,6.8968954,3,0,-9,0,1,0,-1052.0375,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50847697,7.0100398,0,0,60.279999,43.740002,-9,-9,7,1,1,0,0,2,2,1,188,438599.78,0,0,1042.9514 -4416,5465,9940,-9,-9,-9,1,1,0,43,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-987.73755,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,5,1,0,605,0,0,0,659.51727 -4416,5466,9941,-9,9940,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-918.10925,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,1,0,195,120828.09,0,0,0 -4417,5467,9942,9945,-9,-9,2,1,0,43,1,0,2,0,2,-9,1,1,0,0,5,8.0030413,8.1079798,0,2,0,-9,9,0,-6,21.808924,0,0,1,49,2,4,1,2,2,2019,1,1,8,0,30,32,15,1,0,1,0,9.0111971,9.0111971,0,0,0,0,0,0,0,0,1,1,0,4.1791582,0,0,0,56.470001,59.400002,54.200001,57.490002,6,1,1,0,0,10,4,1,426.5,548790.44,0,0,4091.8022 -4417,5467,9943,-9,9942,9945,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-857.86395,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,426.5,548790.44,0,0,4091.8022 -4417,5467,9944,-9,9942,9945,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-877.36261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,1,426.5,548790.44,0,0,4091.8022 -4417,5467,9945,9942,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.5948114,8.5872307,0,2,0,-9,9,0,6,-45.756134,0,0,0,43,2,5,1,2,2,2019,1,2,7,0,38,37,15,1,0,1,0,16.423958,16.423958,0,0,0,0,0,0,0,0,1,1,0,7.3440709,0,0,0,54.200001,57.490002,56.470001,59.400002,5,1,1,0,0,10,4,1,426.5,548790.44,0,0,4091.8022 -4418,5468,9946,9947,-9,-9,2,1,1,61,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,7,0,4,0,0,0,0,57,3,3,3,3,3,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,84.059662,3,62.110001,40.77,49,48,6,1,1,1,0,4,1,0,368.5,0,0,0,0 -4418,5468,9947,9946,-9,-9,1,1,0,57,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,7,0,-4,0,0,0,0,61,3,2,3,3,3,2019,4,2,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,48,62.110001,40.77,5,1,1,1,0,4,1,0,368.5,0,0,0,0 -4418,5469,9948,-9,9947,9946,3,1,1,20,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-844.13501,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,4,1,0,1301,9696.7256,0,0,0 -4418,5470,9949,-9,9947,9946,4,1,1,20,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1128.718,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,1,0,153,160143.58,0,0,893.97797 -4419,5471,9950,9951,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,49,0,5,122.01591,0,0,0,69,3,3,3,-9,-9,2019,4,2,13,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4006903,0,0,0,36.57,31.620001,64,35.360001,4,2,3,0,0,8,2,1,539,501000.22,0,0,212.70746 -4419,5471,9951,9950,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,5.958672,5.9066148,0,1,0,-9,49,0,-5,56.223896,0,0,0,74,2,4,3,-9,-9,2019,4,1,7,0,7,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64,35.360001,36.57,31.620001,6,2,3,0,0,8,2,1,539,501000.22,0,0,212.70746 -4420,5472,9952,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,4,0,6.5046601,6.7299466,3,0,0,0,-9,0,-978.04193,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9344926,6.7786613,0,0,61.029999,33.740002,-9,-9,5,1,1,0,0,8,2,1,293,279299.88,0,0,-120.16856 -4421,5473,9953,9954,-9,-9,2,1,0,52,1,0,0,0,3,-9,97,3,0,1,3,0,0,0,1,0,-9,25,0,-1,37.6054,0,0,0,53,3,1,3,2,3,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.005203,2,47,49,44.84,24.08,6,1,1,0,0,5,2,1,452,-19304.742,0,0,1879.1268 -4421,5473,9954,9953,-9,-9,1,1,1,53,1,0,0,0,3,-9,8,3,1,1,1,0,4.5400848,4.9255915,1,0,-9,25,0,1,56.413849,0,0,0,52,3,3,3,3,3,2019,4,2,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5098205,0,0,44.84,24.08,47,49,4,1,1,0,0,5,2,1,452,-19304.742,0,0,1879.1268 -4421,5474,9955,-9,9953,9954,3,1,1,21,2,0,0,0,2,-9,1,1,0,0,4,8.2496796,8.544817,0,3,0,0,0,-9,0,-957.71429,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,42,45,15,1,0,-9,1,12.367875,12.367875,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.763432,3,57.639999,57.240002,-9,-9,7,1,1,0,0,5,4,1,437,-163667.77,0,0,1426.6217 -4422,5475,9956,9958,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,4,7.6726475,7.7719131,0,2,0,-9,9,0,4,-1.2320009,-9,0,0,42,3,4,3,-9,-9,2019,2,1,9,1,15,0,15,1,0,3,0,13.119029,13.119029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,49,56,6,2,3,0,0,8,2,0,783.5,322558.25,0,0,2957.3508 -4422,5475,9957,-9,9958,9956,7,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.9601,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,783.5,322558.25,0,0,2957.3508 -4422,5475,9958,9956,-9,-9,1,1,0,42,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-4,-64.649284,0,0,1,46,3,4,1,3,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,56,5,2,3,0,0,8,2,0,783.5,322558.25,0,0,2957.3508 -4422,5475,9959,-9,9958,9956,6,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.34033,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,0,783.5,322558.25,0,0,2957.3508 -4422,5476,9960,-9,9958,9956,3,1,1,23,2,0,2,0,1,1,3,3,0,0,4,6.7170682,6.856267,0,3,0,0,0,-9,0,-1008.0283,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,-9,-9,6,2,3,1,0,8,2,0,1445,67471.844,0,0,219.62263 -4422,5477,9961,-9,9958,9956,4,1,1,21,2,0,2,0,1,-9,2,1,0,0,4,7.3141184,6.8964539,0,3,0,0,0,-9,0,-1010.2844,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,20,0,15,1,0,-9,1,6.6107044,6.6107044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,0,162,142252.56,0,0,-355.08478 -4422,5478,9962,-9,9958,9956,5,1,0,19,2,0,2,0,2,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-983.27008,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.400002,40.43,-9,-9,7,2,3,1,0,8,1,0,278,-142850.39,0,0,0 -4423,5479,9963,9964,9965,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,0,4,8.7548475,8.9825754,0,1,0,-9,6,0,4,-120.97187,0,0,0,43,2,4,1,2,-9,2019,1,1,9,1,40,42,15,1,0,1,0,14.130381,14.130381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,58.240002,41.84,6,2,3,0,0,8,5,1,526.5,733960.25,0,0,3817.4795 -4423,5479,9964,9963,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,8.5622826,8.7922735,0,1,0,-9,24,0,-4,-63.500069,0,0,1,47,1,4,1,3,3,2019,1,2,11,0,44,42,15,1,0,1,0,13.652099,13.652099,0,0,0,0,0,0,0,0,1,1,0,5.1871252,0,0,0,58.240002,41.84,53,55,6,2,3,0,0,8,5,1,526.5,733960.25,0,0,3817.4795 -4423,5480,9965,-9,-9,-9,3,1,0,77,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1014.6997,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,8,1,1,484,-190608.44,0,0,285.35757 -4424,5481,9966,9967,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,0,3,0,7.6232224,7.4450645,1,0,-9,6,0,0,0,0,0,0,59,1,5,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.5375404,7.4581547,.12934834,3,54.349998,46.790001,59.43,58.049999,6,1,1,0,0,12,3,1,480,988333.13,0,0,2287.1753 -4424,5481,9967,9966,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,5,0,7.5901508,7.6721478,1,0,-9,6,0,0,0,0,0,0,59,2,3,3,3,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.621068,7.664041,0,3,59.43,58.049999,54.349998,46.790001,6,1,1,0,0,12,3,1,480,988333.13,0,0,2287.1753 -4425,5482,9968,-9,9969,9970,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.34796,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,579.33331,385452.31,0,0,5880.5015 -4425,5482,9969,9970,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,0,5,8.8789339,8.8660564,0,2,0,-9,6,0,-11,-8.7227888,0,0,1,45,1,4,1,2,2,2019,1,2,12,0,56,0,15,1,0,1,0,16.395058,16.395058,0,0,0,0,0,0,0,0,1,1,0,.036333546,0,0,0,54.099998,59.110001,51.77,58.57,6,1,1,0,0,9,5,1,579.33331,385452.31,0,0,5880.5015 -4425,5482,9970,9969,-9,-9,2,1,1,45,1,1,1,0,1,-9,2,1,0,0,4,8.7280483,8.9126778,0,2,0,-9,6,0,11,110.77583,0,0,0,34,1,5,1,1,2,2019,1,1,13,4,40,40,15,1,1,1,0,20.971033,20.971033,0,0,0,0,0,0,0,0,1,1,0,.12977751,0,0,0,51.77,58.57,54.099998,59.110001,7,1,1,0,0,9,5,1,579.33331,385452.31,0,0,5880.5015 -4426,5483,9971,-9,9973,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1023.5463,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,1,452,49691.789,0,0,2601.5479 -4426,5483,9972,-9,9973,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,4,0,0,0,-9,0,-976.87988,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,9,2,1,452,49691.789,0,0,2601.5479 -4426,5483,9973,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,6,3,0,1,2,0,6.4266057,6.4417529,4,0,0,0,-9,0,-953.22058,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,3,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.3353701,0,113.9355,3,44.939999,39.18,-9,-9,5,1,1,0,0,9,2,1,452,49691.789,0,0,2601.5479 -4427,5484,9974,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,1,1,0,0,3,5.4106317,6.08566,5.4049244,3,0,0,0,-9,0,-895.08923,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,2,20,18,15,1,0,-9,0,1.0439847,1.0439847,0,0,0,0,0,0,0,0,0,0,0,3.6038599,5.4076061,0,0,33.299999,56.299999,-9,-9,4,1,1,0,1,10,2,1,1378,345449.38,0,0,-795.09375 -4427,5485,9975,-9,9974,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.8491364,7.8548403,0,3,0,0,0,-9,0,-1017.7656,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,32,38,15,1,1,-9,1,12.097829,12.097829,0,0,0,0,0,0,0,0,0,0,0,1.0767964,0,0,0,35.970001,61.830002,-9,-9,5,1,1,0,0,10,4,1,385,-72016.82,0,0,905.36395 -4427,5486,9976,-9,9974,-9,3,1,0,22,2,0,0,0,1,1,2,1,0,0,4,7.6711893,7.7494946,0,3,0,0,0,-9,0,-865.72766,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,35,0,15,1,0,-9,1,7.7030196,7.7030196,0,0,0,0,0,0,0,0,0,0,0,5.0426579,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,3,1,1404,-38415.605,0,0,991.8089 -4428,5487,9977,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,7.2360492,7.4754596,3,0,0,0,-9,0,-999.21075,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6431055,0,0,62.669998,49.540001,-9,-9,6,1,1,0,0,13,3,1,160,474741.81,0,0,1633.4794 -4429,5488,9978,9979,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.5838146,8.6489801,0,1,0,-9,35,0,3,26.328894,0,0,0,55,1,5,1,3,3,2019,1,1,12,0,37,37,15,1,0,1,0,15.274917,15.274917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.599998,48.919998,57.060001,57.759998,6,1,1,0,0,1,5,1,1093.5,658255.25,0,0,3518.0786 -4429,5488,9979,9978,-9,-9,1,1,0,55,1,0,0,0,1,-9,1,1,0,0,5,7.5950918,7.1558986,0,1,0,-9,35,0,-3,-109.64983,0,0,0,58,2,3,1,3,2,2019,1,2,6,0,15,20,15,1,0,1,0,16.493256,16.493256,0,0,0,0,0,0,0,0,0,0,0,3.0243185,0,0,0,57.060001,57.759998,46.599998,48.919998,7,1,1,0,0,1,5,1,1093.5,658255.25,0,0,3518.0786 -4430,5489,9980,9981,-9,-9,2,1,1,66,1,0,1,0,2,-9,1,1,0,0,3,5.8814921,6.4763284,5.3536854,2,0,-9,17,0,16,3.3141277,0,0,0,50,1,4,1,2,2,2019,1,1,9,0,20,18,15,1,0,1,0,1.7702011,1.7702011,0,0,0,0,0,0,0,0,1,1,0,5.0138993,5.2392793,0,0,60.860001,50.490002,54.380001,51.939999,6,1,1,0,0,7,2,1,875,1371868.8,0,0,1711.7115 -4430,5489,9981,9980,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,7.3936148,7.5972428,0,2,0,-9,17,0,-16,12.047758,0,0,0,66,2,3,1,1,1,2019,1,2,8,0,5,21,15,1,0,1,0,35.430721,35.430721,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.380001,51.939999,60.860001,50.490002,6,1,1,0,0,7,2,1,875,1371868.8,0,0,1711.7115 -4430,5489,9982,-9,9981,9980,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-883.64203,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,1,875,1371868.8,0,0,1711.7115 -4431,5490,9983,9984,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,2,8.9698439,8.7300577,0,1,0,-9,10,0,-2,-100.86871,0,0,0,61,2,1,3,-9,-9,2019,2,1,7,0,35,0,15,1,0,3,0,25.070704,25.070704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.889999,31.709999,37.939999,21.98,6,1,1,0,0,4,5,1,549.5,200008,0,0,2516.6274 -4431,5490,9984,9983,-9,-9,1,1,0,61,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,10,0,2,-77.502129,0,0,0,59,3,2,1,2,2,2019,3,2,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.939999,21.98,60.889999,31.709999,6,1,1,0,0,4,5,1,549.5,200008,0,0,2516.6274 -4432,5491,9985,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.148634,8.3259058,0,3,0,0,0,-9,0,-981.40399,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,35,15,1,0,-9,0,16.806511,16.806511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,6,3,4,0,0,8,4,0,192,0,0,0,1930.6697 -4433,5492,9986,-9,9987,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1045.9301,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,6,1,0,334.5,-10344.615,0,0,2641.2168 -4433,5492,9987,-9,-9,-9,1,1,0,28,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-907.74445,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.459999,27.629999,-9,-9,1,1,1,0,0,6,1,0,334.5,-10344.615,0,0,2641.2168 -4434,5493,9988,-9,9989,9991,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.47961,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1040.75,429792.16,0,0,2786.0564 -4434,5493,9989,9991,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,8.0646534,7.914803,0,2,0,-9,22,0,-2,-19.941788,0,0,0,49,2,4,1,-9,-9,2019,1,2,11,0,8,8,15,1,0,1,0,29.101425,29.101425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,8,4,1,1040.75,429792.16,0,0,2786.0564 -4434,5493,9990,-9,9989,9991,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.96594,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1040.75,429792.16,0,0,2786.0564 -4434,5493,9991,9989,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.6151438,8.3609524,0,2,0,-9,22,0,2,-86.061752,0,0,0,47,2,4,1,-9,-9,2019,1,1,6,0,49,49,15,1,0,1,0,10.607009,10.607009,0,0,0,0,0,0,0,0,1,1,0,3.1769977,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,8,4,1,1040.75,429792.16,0,0,2786.0564 -4435,5494,9992,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,0,3,9.0527401,8.8772631,0,3,0,0,0,-9,0,-1015.3542,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,0,15,1,0,-9,0,24.220592,24.220592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.349998,-9,-9,2,1,1,0,0,12,5,1,2112,10553.228,0,0,2467.0811 -4436,5495,9993,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,0,5,8.0835571,8.1663361,0,3,0,0,0,-9,0,-874.44543,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,18,15,1,0,-9,0,8.3497028,8.3497028,0,0,0,0,0,0,0,0,0,0,0,.83595985,0,0,0,43.919998,62.310001,-9,-9,5,1,1,0,0,5,4,1,1731,86720.867,0,0,346.27856 -4437,5496,9994,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,7.9883289,7.8628731,0,3,0,0,0,-9,0,-1187.04,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,25,40,15,1,0,-9,0,16.345903,16.345903,0,0,0,0,0,0,0,0,0,0,0,2.8773558,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,1264,73770.469,0,0,1036.9116 -4438,5497,9995,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1003.3345,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.189999,43.099998,-9,-9,5,1,1,1,1,10,1,0,220,224652.42,0,0,1226.6597 -4439,5498,9996,9997,-9,-9,1,1,0,32,1,0,0,0,1,-9,1,1,0,0,4,9.4796638,9.5429392,0,1,0,-9,11,0,-19,0,0,0,1,51,1,5,1,3,1,2019,1,2,14,3,40,52,15,1,0,1,0,44.871624,44.871624,0,0,0,0,0,0,0,2,0,0,0,8.9372797,0,0,3,44.02,60.700001,52.720001,55.580002,6,1,1,0,0,10,5,1,861,1357036.1,0,0,46764.406 -4439,5498,9997,9996,-9,-9,2,1,1,51,1,0,0,0,1,-9,1,1,0,0,5,9.7078915,9.6686058,0,1,0,-9,11,0,19,0,0,0,0,32,1,4,1,1,2,2019,1,1,11,0,40,40,15,1,0,1,0,47.109985,47.109985,0,0,0,0,0,0,0,2,0,0,0,8.9838772,0,0,3,52.720001,55.580002,44.02,60.700001,6,1,1,0,0,10,5,1,861,1357036.1,0,0,46764.406 -4440,5499,9998,10000,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,3,8.6430407,8.3522635,0,2,0,-9,16,0,2,-17.034239,0,0,0,45,1,3,1,3,2,2019,1,2,11,0,39,33,15,1,0,1,0,10.162218,10.162218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.93,42.869999,42.459999,54.849998,6,2,3,0,0,8,5,1,449.66666,289443.47,0,0,3835.1755 -4440,5499,9999,-9,9998,10000,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.0668,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,5,1,449.66666,289443.47,0,0,3835.1755 -4440,5499,10000,9998,-9,10001,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,3,8.4301062,8.8605928,0,2,0,-9,16,0,-2,22.780294,0,0,0,47,1,3,1,3,2,2019,1,1,12,0,46,46,15,1,0,1,0,15.886002,15.886002,0,0,0,0,0,0,0,7,1,1,0,7.238029,0,21.579308,3,42.459999,54.849998,53.93,42.869999,4,2,3,0,0,8,5,1,449.66666,289443.47,0,0,3835.1755 -4440,5500,10001,-9,-9,-9,3,1,1,80,3,0,1,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1011.7219,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5131661,0,0,0,54,46,-9,-9,6,2,3,0,0,8,1,1,199,25584.949,0,0,-357.70374 -4441,5501,10002,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,2,8.1918211,8.0153484,0,3,0,0,0,-9,0,-1100.2783,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,11,34,34,15,1,1,-9,0,10.443039,10.443039,0,0,0,0,0,0,0,0,0,0,0,2.2122364,0,0,0,31.58,45.549999,-9,-9,3,3,4,0,0,8,4,0,398,-149163.86,0,0,1735.5586 -4442,5502,10003,-9,10006,10004,6,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.47266,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,941.59998,631265.13,0,0,2140.4417 -4442,5502,10004,10006,-9,-9,1,1,1,41,1,0,4,0,2,-9,2,1,0,0,4,8.0203629,7.8922,0,2,0,-9,17,0,3,96.823578,0,0,0,38,3,4,3,-9,-9,2019,2,2,10,1,38,45,15,1,0,3,0,8.2612667,8.2612667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,5,2,3,0,0,8,2,0,941.59998,631265.13,0,0,2140.4417 -4442,5502,10005,-9,10006,10004,5,1,1,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.9585,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,0,941.59998,631265.13,0,0,2140.4417 -4442,5502,10006,10004,-9,-9,2,1,0,38,1,0,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,17,0,-3,-2.7427368,0,0,1,41,2,4,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,0,8,2,0,941.59998,631265.13,0,0,2140.4417 -4442,5502,10007,-9,10006,10004,4,1,1,15,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1045.7008,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,8,2,0,941.59998,631265.13,0,0,2140.4417 -4442,5503,10008,-9,10006,10004,3,1,1,18,2,0,4,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1137.5502,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,1,0,8,2,0,649,0,0,0,0 -4443,5504,10009,-9,10010,10011,3,1,0,13,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-936.38226,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,297.75,450703.41,0,0,3281.5234 -4443,5504,10010,10011,-9,-9,1,1,0,36,1,1,2,0,2,-9,2,1,0,0,4,7.5578694,7.2835979,0,2,0,1,1,-9,0,59.845104,0,0,1,36,2,3,1,2,2,2019,1,5,6,0,18,22,15,1,0,1,0,11.444839,11.444839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,33.900002,60.310001,5,1,1,0,0,9,5,1,297.75,450703.41,0,0,3281.5234 -4443,5504,10011,10010,-9,-9,5,1,1,36,1,1,2,0,2,-9,2,1,0,0,3,9.1195421,8.8034248,0,2,0,-9,1,-9,0,-185.33066,-9,0,0,36,2,4,1,-9,-9,2019,1,1,20,5,55,0,15,1,1,1,0,19.332708,19.332708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.900002,60.310001,57.16,56.150002,6,1,1,0,0,9,5,1,297.75,450703.41,0,0,3281.5234 -4443,5504,10012,-9,10010,10011,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.4154,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,297.75,450703.41,0,0,3281.5234 -4444,5505,10013,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,4,0,7.3795972,7.0285854,3,0,0,0,-9,0,-938.34857,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8454933,7.6467099,0,0,59.880001,45.34,-9,-9,6,1,1,0,0,5,3,1,2129,88968.523,0,0,1658.8083 -4445,5506,10014,10015,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,3,0,0,0,0,75,1,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,48.830002,56.57,37.790001,6,1,1,0,0,12,1,1,890,166582.36,0,0,1020.9917 -4445,5506,10015,10014,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,-3,0,0,0,0,78,2,4,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,37.790001,52.07,48.830002,5,1,1,0,0,12,1,1,890,166582.36,0,0,1020.9917 -4446,5507,10016,10017,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.8299713,6.7719769,1,0,-9,30,0,6,103.06938,0,0,0,61,2,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9566031,6.4854417,0,0,54.790001,55.860001,59.450001,33.75,6,1,1,0,0,1,2,1,674,290759.06,0,0,1644.135 -4446,5507,10017,10016,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,30,0,-6,102.01687,0,0,0,67,2,4,3,-9,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8070145,0,0,0,59.450001,33.75,54.790001,55.860001,6,1,1,0,0,1,2,1,674,290759.06,0,0,1644.135 -4446,5508,10018,-9,10017,10016,3,1,0,23,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-991.5564,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,1,0,1,1,1,1837,27952.752,0,0,0 -4446,5509,10019,-9,10017,10016,4,1,1,20,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-968.46271,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.630001,58.830002,-9,-9,7,1,1,0,0,1,1,1,187,64385.164,0,0,1245.412 -4447,5510,10020,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,0,4,7.6386657,7.5638509,5.0118952,3,0,0,0,-9,0,-1138.3734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,34,27,15,1,0,-9,0,6.3119164,6.3119164,0,0,0,0,0,0,0,0,0,0,0,5.3965869,0,0,0,58.150002,50.209999,-9,-9,6,1,1,0,0,9,3,1,315,361223.72,0,0,991.41125 -4447,5511,10021,-9,10020,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,7.8725405,8.0796719,0,3,0,0,0,-9,0,-996.28204,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,40,43,15,1,0,-9,1,8.7826576,8.7826576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.610001,62.709999,-9,-9,3,1,1,0,1,9,4,1,451,63006.988,0,0,.5960952 -4448,5512,10022,-9,10023,10024,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1046.5251,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,6,4,1,263.75,1225258.8,0,0,3378.1775 -4448,5512,10023,10024,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,8.0901184,8.0079384,0,2,0,-9,19,0,-2,-31.646408,0,0,1,39,2,3,1,2,2,2019,1,2,13,1,37,37,15,1,0,1,0,13.052685,13.052685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.419998,62.330002,36.889999,57.169998,5,1,1,0,0,6,4,1,263.75,1225258.8,0,0,3378.1775 -4448,5512,10024,10023,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,3,8.6397343,8.4888363,0,2,0,-9,19,0,2,74.511902,0,0,0,37,2,4,1,3,3,2019,1,1,11,0,38,38,15,1,0,1,0,19.361437,19.361437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.889999,57.169998,43.419998,62.330002,4,1,1,0,0,6,4,1,263.75,1225258.8,0,0,3378.1775 -4448,5512,10025,-9,10023,10024,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.55255,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,263.75,1225258.8,0,0,3378.1775 -4449,5513,10026,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,4,0,7.3112206,7.2446122,3,0,0,0,-9,0,-1106.0887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8819106,7.0636892,5.7320523,3,57.450001,46.41,-9,-9,6,1,1,0,0,5,2,1,1420,538628.81,0,0,498.07306 -4450,5514,10027,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,1,1,0,0,4,8.0698757,7.7248917,0,4,0,0,0,-9,0,-1083.4263,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,29,15,1,0,-9,0,8.4212399,8.4212399,0,0,0,0,0,0,0,0,1,1,0,.082207568,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,7,3,1,281.5,1374.7373,0,0,1619.2065 -4450,5514,10028,-9,10027,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1089.6316,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,3,1,281.5,1374.7373,0,0,1619.2065 -4451,5515,10029,10031,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,8.2335911,8.5700607,0,2,0,-9,15,0,-5,-7.5110803,0,0,1,44,2,3,1,2,3,2019,1,1,12,1,46,48,15,1,0,1,0,15.037028,15.037028,0,0,0,0,0,0,0,7,1,1,0,0,0,6.282124,3,35,55.700001,33.369999,60.580002,6,2,3,0,0,8,4,1,288.75,442299.03,0,0,3985.052 -4451,5515,10030,-9,10029,10031,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.2569,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,1,288.75,442299.03,0,0,3985.052 -4451,5515,10031,10029,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.4678783,8.570507,0,2,0,-9,15,0,5,32.038818,0,0,0,39,1,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,15.105145,15.105145,0,0,0,0,0,0,0,2,1,1,0,.27585486,0,14.727795,3,33.369999,60.580002,35,55.700001,6,2,3,0,0,8,4,1,288.75,442299.03,0,0,3985.052 -4451,5515,10032,-9,10029,10031,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1097.252,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,8,4,1,288.75,442299.03,0,0,3985.052 -4452,5516,10033,10034,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,8.8877048,8.57794,0,1,0,-9,3,0,-1,-129.1028,0,0,0,31,1,5,1,-9,-9,2019,1,2,7,0,57,62,15,1,0,1,0,11.9435,11.9435,0,0,0,0,0,0,0,0,0,0,0,1.0728654,0,0,0,60.02,56.419998,56.470001,59.400002,6,1,1,0,0,8,5,1,936.5,58063.945,0,0,3855.4685 -4452,5516,10034,10033,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,5,8.1280088,7.9879551,0,1,0,-9,3,0,1,-26.889738,0,0,1,30,1,5,1,-9,-9,2019,1,1,8,0,38,37,15,1,0,1,0,11.514491,11.514491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,59.400002,60.02,56.419998,6,2,3,0,0,8,5,1,936.5,58063.945,0,0,3855.4685 -4453,5517,10035,10037,-9,-9,3,1,0,50,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,23,0,-1,0,0,0,0,51,2,2,3,3,3,2019,4,2,19,6,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,27,33.709999,39.080002,4,2,3,0,0,8,1,1,452,8815.79,0,0,2305.8164 -4453,5517,10036,-9,10035,10037,5,1,1,16,2,0,1,0,-9,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.51123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,1,1,452,8815.79,0,0,2305.8164 -4453,5517,10037,10035,-9,-9,2,1,1,51,1,0,1,0,2,-9,4,3,0,0,2,0,0,0,2,0,-9,23,0,1,0,0,0,0,50,2,1,3,2,3,2019,4,3,23,11,0,39,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1858673,0,0,0,33.709999,39.080002,36,27,1,2,3,0,0,8,1,1,452,8815.79,0,0,2305.8164 -4453,5518,10038,-9,10035,10037,4,1,1,22,2,0,1,0,1,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-983.67389,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62,44.540001,-9,-9,7,2,3,1,0,8,1,1,864,104945.74,0,0,0 -4454,5519,10039,10040,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,3,0,6.8049259,7.0838461,1,0,-9,18,0,0,27.424412,0,0,0,71,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5119619,6.4667673,0,0,48.880001,46.259998,64.239998,34.299999,6,1,1,0,0,1,2,1,817,22914.98,0,0,673.27661 -4454,5519,10040,10039,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,18,0,0,31.205465,0,0,0,71,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.5863392,0,0,0,64.239998,34.299999,48.880001,46.259998,6,1,1,0,0,1,2,1,817,22914.98,0,0,673.27661 -4455,5520,10041,10042,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.9859481,7.8714218,1,0,-9,7,0,0,44.419594,0,0,0,69,2,3,3,2,1,2019,4,1,14,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5573006,8.0752945,0,0,21.93,45.580002,62.66,52.400002,3,1,1,0,0,13,4,1,773.5,1212873,0,0,3823.1582 -4455,5520,10042,10041,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.6172285,7.8714333,1,0,-9,7,0,0,-111.88505,0,0,0,69,1,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.630168,7.8515463,0,0,62.66,52.400002,21.93,45.580002,6,1,1,0,0,13,4,1,773.5,1212873,0,0,3823.1582 -4456,5521,10043,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1033.1625,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.490002,21.389999,-9,-9,5,1,1,0,1,5,1,0,465,-68217.594,0,0,766.6944 -4456,5522,10044,-9,10043,-9,2,1,1,37,2,0,0,0,2,-9,2,1,0,0,4,9.2435493,9.3163252,6.7169223,3,0,0,0,-9,0,-847.77881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,47,45,15,1,0,-9,1,25.227371,25.227371,0,0,0,0,0,0,0,0,1,1,0,6.2816138,0,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,5,5,0,126,211981.77,0,0,5112.4053 -4457,5523,10045,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.9638205,8.8750887,0,3,0,0,0,-9,0,-998.5047,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,55,55,15,1,1,-9,0,14.879942,14.879942,0,0,0,0,0,0,0,0,0,0,0,3.5112412,0,0,0,38.27,59.419998,-9,-9,6,1,1,0,0,8,5,0,571,96906.906,0,0,2573.2034 -4458,5524,10046,10047,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,3,9.2569408,9.5675068,0,2,0,-9,8,0,7,97.95977,0,0,0,40,1,3,1,-9,-9,2019,1,1,9,0,35,37,15,1,0,1,0,32.06834,32.06834,0,0,0,0,0,0,0,0,0,0,0,2.127871,0,0,0,57.330002,53.459999,46.080002,57.200001,6,1,1,0,0,8,5,1,1839.3334,898905.25,0,0,5873.1299 -4458,5524,10047,10046,-9,-9,1,1,0,40,1,0,1,0,1,-9,2,1,0,0,3,8.6038752,8.3742809,0,2,0,-9,8,0,-7,-38.780834,0,0,1,47,1,3,1,2,1,2019,1,2,11,2,30,25,15,1,0,1,0,22.871769,22.871769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,57.330002,53.459999,6,1,1,0,0,8,5,1,1839.3334,898905.25,0,0,5873.1299 -4458,5524,10048,-9,10047,10046,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.6816,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,1839.3334,898905.25,0,0,5873.1299 -4459,5525,10049,-9,10051,10050,1,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.2001047,8.251524,0,3,0,0,0,-9,0,-1017.6024,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,1,11.529562,11.529562,0,0,0,0,0,0,0,0,0,0,0,3.4595187,0,0,0,45.259998,56.189999,-9,-9,6,1,1,0,0,4,5,1,248,199735.7,0,0,2427.3994 -4459,5526,10050,10051,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.6406622,8.5169468,0,1,0,-9,33,0,-1,.65484011,0,0,0,55,2,4,1,3,3,2019,1,3,7,0,37,37,15,1,0,1,0,17.121336,17.121336,0,0,0,0,0,0,0,0,0,0,0,4.2383347,0,0,0,57.91,46.310001,51.060001,32.080002,7,1,1,0,0,4,5,1,1414.5,1162942.9,0,0,3199.6172 -4459,5526,10051,10050,-9,-9,3,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.5666013,7.5679359,0,1,0,-9,33,0,1,-6.9096498,0,0,0,54,2,3,1,3,3,2019,1,2,11,2,17,17,15,1,0,1,0,14.031272,14.031272,0,0,0,0,0,0,0,0,0,0,0,6.0297365,0,0,0,51.060001,32.080002,57.91,46.310001,6,1,1,0,0,4,5,1,1414.5,1162942.9,0,0,3199.6172 -4460,5527,10052,10053,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.9062786,9.4308138,0,2,0,-9,8,0,1,14.548635,0,0,0,47,2,3,1,2,2,2019,1,2,10,1,55,53,15,1,0,1,0,29.348444,29.348444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,43.959999,55.639999,6,1,1,0,0,5,5,1,379.66666,615669.13,0,0,4770.3022 -4460,5527,10053,10052,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,7.9974003,8.4314117,0,2,0,-9,8,0,-1,32.957783,0,0,0,48,2,4,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,8.9983053,8.9983053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.959999,55.639999,57.16,56.150002,6,1,1,0,0,5,5,1,379.66666,615669.13,0,0,4770.3022 -4460,5527,10054,-9,10053,10052,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.8506,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,5,5,1,379.66666,615669.13,0,0,4770.3022 -4460,5528,10055,-9,10053,10052,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,4,7.667788,7.598824,0,3,0,0,0,-9,0,-1124.0117,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,0,15,1,0,-9,1,6.5716219,6.5716219,0,0,0,0,0,0,0,0,0,0,0,.62668002,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,5,3,1,308,-66113.961,0,0,-17.35148 -4461,5529,10056,-9,-9,-9,1,1,0,21,2,0,0,1,2,-9,7,2,0,0,3,5.0461812,5.9892578,5.3979783,3,0,-9,0,-9,0,-920.04962,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2645378,0,0,0,29.709999,58.130001,-9,-9,5,1,1,0,0,4,2,0,631,-68289.875,0,0,255.87358 -4462,5530,10057,-9,10058,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-903.7428,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,1,0,297,38039.465,0,0,-141.74059 -4462,5530,10058,-9,-9,-9,1,1,0,36,3,0,2,0,3,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1023.8226,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.740002,43.450001,-9,-9,4,1,1,0,0,10,1,0,297,38039.465,0,0,-141.74059 -4462,5531,10059,-9,10058,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,0,3,6.1495371,6.208859,0,3,0,0,0,-9,0,-937.09155,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,6,17,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.400002,55.389999,-9,-9,5,1,1,0,0,10,1,0,1342,74161.047,0,0,1806.0076 -4463,5532,10060,-9,10063,10061,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1160.4105,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,0,1120.25,1430679.1,0,0,4979.4194 -4463,5532,10061,10063,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,3,8.6789055,8.8341722,0,2,0,-9,13,0,9,4.8363762,0,0,0,42,1,4,1,2,1,2019,1,2,23,9,41,37,15,1,1,1,0,12.930279,12.930279,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.700001,36.419998,43.43,54.299999,6,2,3,0,0,8,5,0,1120.25,1430679.1,0,0,4979.4194 -4463,5532,10062,-9,10063,10061,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1042.3561,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,8,5,0,1120.25,1430679.1,0,0,4979.4194 -4463,5532,10063,10061,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.7200603,8.5852156,0,2,0,-9,13,0,0,139.50002,0,0,1,51,1,3,1,3,2,2019,1,1,12,2,70,60,15,1,0,1,0,11.179692,11.179692,0,0,0,0,0,0,0,2,1,1,0,1.9085078,0,0,1,43.43,54.299999,23.700001,36.419998,5,2,3,0,0,8,5,0,1120.25,1430679.1,0,0,4979.4194 -4464,5533,10064,10065,-9,-9,1,1,1,60,1,0,0,0,2,-9,3,3,0,0,5,0,0,0,1,0,-9,7,0,0,39.556179,0,0,0,60,3,3,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.68,56.779999,49,48,4,1,1,1,0,13,3,1,174.5,260605.59,0,0,1315.0315 -4464,5533,10065,10064,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,8.1980648,8.0092468,0,1,0,-9,7,0,0,-37.931553,0,0,0,60,2,5,3,2,2,2019,2,1,11,2,40,40,15,1,0,3,0,8.3848238,8.3848238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,59.68,56.779999,5,1,1,0,0,13,3,1,174.5,260605.59,0,0,1315.0315 -4465,5534,10066,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,4,7.5554061,8.096117,0,3,0,0,0,-9,0,-902.88391,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,10,40,15,1,0,-9,0,27.391863,27.391863,0,0,0,0,0,0,0,0,1,1,0,5.8680048,0,0,0,49.66,55.68,-9,-9,5,1,1,0,0,5,3,1,371,-43745.004,0,0,1099.3582 -4466,5535,10067,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.5986738,7.3298869,3.6067545,3,0,0,0,-9,0,-922.02704,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,39,15,1,0,-9,0,5.6439638,5.6439638,0,0,0,0,0,0,0,7,0,0,0,2.9769549,0,7.720315,3,54.529999,46.439999,-9,-9,7,3,4,0,1,8,3,0,948,542469.5,0,0,449.48358 -4466,5536,10068,-9,10067,-9,2,1,1,22,2,0,0,0,3,1,2,1,0,0,4,6.2170177,6.4214478,0,3,0,0,0,-9,0,-1078.7471,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,7,0,15,1,0,-9,1,6.999907,6.999907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,6,3,4,0,0,8,2,0,714,126203,0,0,-559.41791 -4467,5537,10069,10070,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,0,5,8.3045416,8.5198851,0,1,0,-9,7,0,0,-100.78146,0,0,0,34,2,3,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,14.328397,14.328397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,25.889999,50.16,6,1,1,0,0,2,5,1,623.5,21238.842,0,0,3377.519 -4467,5537,10070,10069,-9,-9,2,1,0,34,1,0,0,0,2,-9,2,1,0,0,3,8.2447443,8.1162109,0,1,0,-9,7,0,0,39.511784,0,0,1,34,2,5,1,-9,-9,2019,1,1,19,7,40,41,15,1,1,1,0,8.6384592,8.6384592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.889999,50.16,57.060001,57.759998,6,1,1,0,0,2,5,1,623.5,21238.842,0,0,3377.519 -4468,5538,10071,-9,10072,10073,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1038.4504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,1,1,0,0,4,5,0,1503,779533.63,0,0,5273.1685 -4468,5538,10072,10073,-9,-9,1,1,0,49,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,-5,-24.897358,0,0,0,54,2,3,1,3,-9,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.150002,52.91,45.290001,49.34,6,1,1,0,0,4,5,0,1503,779533.63,0,0,5273.1685 -4468,5538,10073,10072,-9,-9,2,1,1,54,1,0,2,0,2,-9,1,1,0,0,3,9.6868715,9.7466164,0,2,0,-9,18,0,5,-21.182491,0,0,0,49,2,4,3,-9,-9,2019,2,1,7,1,50,25,15,1,0,3,0,25.57247,25.57247,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.290001,49.34,58.150002,52.91,4,1,1,0,0,4,5,0,1503,779533.63,0,0,5273.1685 -4468,5538,10074,-9,10072,10073,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1068.88,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,4,5,0,1503,779533.63,0,0,5273.1685 -4469,5539,10075,-9,10078,10076,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.27783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,0,673.5,30715.359,0,0,1789.6321 -4469,5539,10076,10078,-9,-9,1,1,1,32,1,0,3,0,2,-9,1,1,0,0,4,5.5501637,5.7744136,0,2,0,-9,4,0,2,57.290115,0,0,0,30,2,4,3,2,2,2019,2,2,10,0,40,48,15,1,0,3,0,.79389471,.79389471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.029999,46.630001,59.720001,6,1,1,0,0,1,1,0,673.5,30715.359,0,0,1789.6321 -4469,5539,10077,-9,10078,10076,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.0415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,0,673.5,30715.359,0,0,1789.6321 -4469,5539,10078,10076,-9,-9,2,1,0,30,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,-2,126.7466,0,0,1,32,2,4,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.630001,59.720001,61.27,46.029999,6,1,1,0,0,1,1,0,673.5,30715.359,0,0,1789.6321 -4470,5540,10079,-9,10080,10081,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.3693,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,5,1,357.33334,-122926.39,0,0,3831.8149 -4470,5540,10080,10081,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,0,4,8.3442259,8.6294985,0,2,0,-9,5,0,5,-4.3248601,0,0,1,27,1,4,1,-9,-9,2019,1,1,7,0,30,38,15,1,0,1,0,19.113796,19.113796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,57.16,56.150002,6,1,1,0,0,11,5,1,357.33334,-122926.39,0,0,3831.8149 -4470,5540,10081,10080,-9,-9,1,1,1,27,1,1,1,0,1,-9,2,1,0,0,4,8.4445314,8.2517853,0,2,0,-9,5,0,-5,-47.429043,0,1,0,32,1,4,1,1,2,2019,1,2,13,1,44,40,15,1,0,1,0,11.978085,11.978085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.82,53.970001,6,1,1,0,0,11,5,1,357.33334,-122926.39,0,0,3831.8149 -4471,5541,10082,-9,10084,10083,1,1,0,28,3,0,5,0,1,-9,2,1,0,0,4,8.2803192,8.2060156,0,3,0,0,0,-9,0,-899.35217,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,38,31,15,1,0,-9,1,9.2357807,9.2357807,0,0,0,0,0,0,0,14.5,1,1,0,1.7939761,0,7.4406662,3,47,57,-9,-9,5,2,3,0,0,8,4,0,3445,0,0,0,2341.2029 -4471,5542,10083,10084,-9,-9,2,1,1,57,1,0,5,0,3,-9,3,3,0,1,3,0,0,0,2,0,-9,8,0,8,0,0,0,0,49,3,4,3,-9,-9,2019,4,3,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.172512,3,51,49,50,54,5,2,3,1,1,8,1,0,375.5,3659.9902,0,0,2077.5269 -4471,5542,10084,10083,-9,-9,3,1,0,49,1,0,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,36,0,-8,0,0,0,0,57,3,3,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.927319,3,50,54,51,49,6,2,3,0,1,8,1,0,375.5,3659.9902,0,0,2077.5269 -4471,5543,10085,10088,10084,10083,4,1,1,32,1,0,5,0,2,-9,2,1,0,0,4,7.0151758,7.6472821,0,2,0,-9,8,0,3,-.96210563,0,0,0,29,2,4,3,3,3,2019,2,5,10,1,33,28,15,1,0,3,0,4.75213,4.75213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,47,57,5,2,3,0,0,8,2,0,522.5,6488.3262,0,0,931.78668 -4471,5543,10086,-9,10088,10085,11,1,0,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.9951,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,2,0,522.5,6488.3262,0,0,931.78668 -4471,5543,10087,-9,10088,10085,10,1,0,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.8324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,522.5,6488.3262,0,0,931.78668 -4471,5543,10088,10085,-9,-9,5,1,0,29,1,0,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-3,28.219452,0,1,1,32,2,4,1,-9,-9,2019,3,4,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,50,57,5,2,3,0,1,8,2,0,522.5,6488.3262,0,0,931.78668 -4471,5544,10089,-9,10084,10083,6,1,0,23,2,0,5,0,2,-9,2,1,0,0,4,7.3799415,7.1468015,0,3,0,0,0,-9,0,-1030.8802,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,35,35,15,1,0,-9,1,3.9266739,3.9266739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,3,0,458,-26628.174,0,0,2386.5173 -4471,5545,10090,-9,10084,10083,7,1,1,18,2,0,5,1,2,0,7,2,0,0,4,5.660821,5.8742223,0,3,0,0,0,-9,0,-1048.0469,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,4,0,797,-16871.682,0,0,1954.4111 -4472,5546,10091,10092,-9,-9,1,1,0,29,1,0,2,0,1,1,2,1,0,0,4,8.5321207,8.2130585,0,2,0,-9,6,0,-4,-56.263969,-9,1,1,33,2,5,1,2,2,2019,1,2,14,4,43,0,15,1,1,1,0,11.772075,11.772075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.970001,56.110001,52.720001,55.580002,6,1,1,0,0,9,5,0,513.75,456299.88,0,0,7073.2773 -4472,5546,10092,10091,-9,-9,2,1,1,33,1,0,2,0,2,-9,1,1,0,0,5,9.4803953,9.5209951,0,2,0,-9,6,0,4,-31.212749,0,0,0,29,1,4,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,43.795944,43.795944,0,0,0,0,0,0,0,2,1,1,0,0,0,12.312395,3,52.720001,55.580002,47.970001,56.110001,6,1,1,0,0,9,5,0,513.75,456299.88,0,0,7073.2773 -4472,5546,10093,-9,10091,10092,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-823.67493,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,5,0,513.75,456299.88,0,0,7073.2773 -4472,5546,10094,-9,10091,10092,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.72577,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,0,513.75,456299.88,0,0,7073.2773 -4473,5547,10095,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,1,1,0,0,2,7.6474299,7.7671409,6.6675534,3,0,0,0,-9,0,-1049.3185,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,35,30,15,1,0,-9,0,6.0768342,6.0768342,0,0,0,0,0,0,0,0,0,0,0,0,6.3488894,0,0,53.400002,47.490002,-9,-9,6,1,1,0,0,8,3,1,1154,1734381.3,0,0,1468.9373 -4474,5548,10096,10097,-9,-9,1,1,1,72,1,0,0,0,1,-9,2,1,0,0,3,5.6567774,8.0026312,7.7453246,1,0,-9,35,0,14,77.558075,0,0,0,58,1,3,1,3,3,2019,1,2,7,0,4,0,15,1,0,1,0,7.9941545,7.9941545,0,0,0,0,0,0,0,0,1,1,0,0,7.8035531,0,0,51.98,43.799999,52.580002,47.360001,6,1,1,0,0,12,4,1,340,2297033.5,0,0,3107.2888 -4474,5548,10097,10096,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,7.8798018,8.2703533,0,1,0,-9,8,0,-14,-92.815788,0,0,0,72,1,3,1,-9,-9,2019,1,1,11,0,24,26,15,1,0,1,0,15.418364,15.418364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.580002,47.360001,51.98,43.799999,6,4,2,0,0,12,4,1,340,2297033.5,0,0,3107.2888 -4474,5549,10098,-9,10097,10096,3,1,1,20,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1014.1857,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2945352,0,0,0,20.99,65.940002,-9,-9,3,4,2,0,1,12,1,1,1011,0,0,0,-193.6512 -4474,5550,10099,-9,10097,10096,4,1,1,27,2,0,0,0,1,-9,2,1,0,0,1,8.0415707,7.8605766,0,3,0,-9,0,-9,0,-1107.0765,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,33,12,40,0,15,1,1,-9,1,7.2590747,7.2590747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.719999,42.689999,-9,-9,6,4,2,0,0,12,3,1,1555,16336.964,0,0,167.98209 -4475,5551,10100,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,4.5320172,4.462111,3,0,0,0,-9,0,-1000.4451,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4591875,4.3427038,0,3,42.220001,45.380001,-9,-9,6,1,1,0,0,9,2,1,784,120140.02,0,0,1468.6287 -4476,5552,10101,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,5,0,7.0316176,6.9458256,3,0,0,0,-9,0,-899.14368,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4905028,6.9481459,0,0,30.139999,66.230003,-9,-9,5,1,1,0,0,7,2,1,736,756923.94,0,0,1478.9302 -4477,5553,10102,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,4.4324584,4.4422088,3,0,0,0,-9,0,-917.41376,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4146657,3.9205148,0,0,60.700001,47.650002,-9,-9,2,1,1,0,0,2,2,1,323,228288.69,0,0,-151.2823 -4478,5554,10103,10104,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,0,5,8.0201283,7.8979802,0,2,0,-9,16,0,0,-23.660286,0,0,1,36,1,5,1,2,2,2019,1,2,8,0,23,23,15,1,0,1,0,13.258462,13.258462,0,0,0,0,0,0,0,0,1,1,0,2.1577168,0,0,0,51.139999,60.450001,56.470001,59.400002,6,1,1,0,0,11,4,1,622.66669,-42482.84,0,0,2788.1846 -4478,5554,10104,10103,-9,-9,2,1,1,36,1,0,1,0,1,-9,2,1,0,0,5,8.3659782,8.5494843,0,2,0,-9,7,0,0,-116.43743,0,0,0,36,1,5,1,-9,-9,2019,1,1,8,0,40,36,15,1,0,1,0,12.857339,12.857339,0,0,0,0,0,0,0,0,1,1,0,4.0250354,0,0,0,56.470001,59.400002,51.139999,60.450001,6,1,1,0,0,11,4,1,622.66669,-42482.84,0,0,2788.1846 -4478,5554,10105,-9,10103,10104,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.27924,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,622.66669,-42482.84,0,0,2788.1846 -4479,5555,10106,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-978.51282,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,32,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.82,19.15,-9,-9,2,1,1,0,0,7,1,0,454,4324.9341,0,0,1056.0792 -4480,5556,10107,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-984.77734,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.389999,57.630001,-9,-9,5,1,1,1,0,4,1,0,367,-168531.64,0,0,1722.2325 -4481,5557,10108,10109,-9,-9,2,1,0,41,1,0,0,0,1,-9,2,1,0,0,2,8.3977518,8.2189226,0,1,0,-9,7,0,-5,54.271229,0,0,1,46,2,4,1,2,2,2019,1,1,7,1,48,55,15,1,0,1,0,8.8692884,8.8692884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.849998,37.689999,57.16,56.150002,6,1,1,0,0,2,5,1,998,728837,0,0,4092.0322 -4481,5557,10109,10108,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,9.225358,9.3129702,0,1,0,-9,7,0,5,-27.915113,0,0,0,41,1,2,1,3,3,2019,1,2,8,0,39,53,15,1,0,1,0,32.464798,32.464798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,59.849998,37.689999,6,1,1,0,0,2,5,1,998,728837,0,0,4092.0322 -4481,5558,10110,-9,10108,10109,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,6.8340192,6.8577671,0,3,0,0,0,-9,0,-1058.8451,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,31,15,15,1,0,-9,1,4.5073538,4.5073538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.080002,60.5,-9,-9,6,1,1,0,0,2,2,1,1569,-452.22678,0,0,1041.3823 -4481,5559,10111,-9,10108,10109,4,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,7.5911269,7.7713981,0,3,0,0,0,-9,0,-1053.2343,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,37,34,15,1,0,-9,1,7.9142413,7.9142413,0,0,0,0,0,0,0,0,0,0,0,1.4108663,0,0,0,52.27,47.5,-9,-9,6,1,1,0,0,2,3,1,244,17480.877,0,0,914.90894 -4482,5560,10112,10113,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,2,8.935215,8.6028109,0,1,0,-9,8,0,7,117.28566,0,0,0,39,1,2,1,3,2,2019,1,2,7,0,50,40,15,1,0,1,0,15.884146,15.884146,0,0,0,0,0,0,0,7,0,0,0,0,0,4.5932155,3,55.200001,49.400002,54.299999,35.119999,5,1,1,0,0,6,5,1,460.5,162247.97,0,0,4623.9639 -4482,5560,10113,10112,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,0,2,8.6478672,8.6209755,0,1,0,-9,8,0,-7,-92.232025,0,0,1,46,2,2,1,2,1,2019,1,1,9,0,47,45,15,1,0,1,0,17.758511,17.758511,0,0,0,0,0,0,0,2,0,0,0,0,0,4.2583375,3,54.299999,35.119999,55.200001,49.400002,6,1,1,0,0,6,5,1,460.5,162247.97,0,0,4623.9639 -4483,5561,10114,-9,-9,-9,2,1,1,55,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1076.2192,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.4325323,3,56.98,40.59,-9,-9,3,1,1,1,0,13,1,0,642,-4021.6472,0,0,422.98056 -4483,5562,10115,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1067.1272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.4,46.23,-9,-9,2,1,1,0,0,13,1,0,927,-6235.3667,0,0,1698.7163 -4484,5563,10116,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-908.31989,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4085014,0,0,0,43.200001,51.939999,-9,-9,3,1,1,1,0,9,1,1,346,74870.867,0,0,534.78986 -4485,5564,10117,10118,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,5.1880612,5.3489661,0,1,0,-9,52,0,-3,42.451988,0,0,0,75,2,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2441559,0,0,0,54.790001,55.860001,55.360001,51.57,6,1,1,0,0,10,2,1,1137.5,372260.94,0,0,1466.4775 -4485,5564,10118,10117,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.5623221,7.7205176,1,0,-9,52,0,3,88.452003,0,0,0,72,2,4,3,1,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9627471,0,0,55.360001,51.57,54.790001,55.860001,6,1,1,0,0,10,2,1,1137.5,372260.94,0,0,1466.4775 -4486,5565,10119,10120,-9,-9,2,1,0,57,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,29,0,-16,93.66053,0,0,0,73,3,2,1,3,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.55936,0,0,0,55.720001,48.59,56.189999,40.959999,7,4,2,0,0,5,3,1,533,712053.5,0,0,2790.0413 -4486,5565,10120,10119,-9,-9,1,1,1,73,1,0,0,0,3,-9,2,1,0,0,2,5.2071981,7.8848691,7.6548977,1,0,-9,30,0,16,169.57504,0,0,0,57,3,4,3,3,3,2019,2,2,7,0,5,0,15,1,0,3,0,3.4518363,3.4518363,0,0,0,0,0,0,0,0,1,1,0,5.0041833,7.5841084,0,0,56.189999,40.959999,55.720001,48.59,6,1,1,0,0,5,3,1,533,712053.5,0,0,2790.0413 -4487,5566,10121,10124,-9,-9,2,1,0,35,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-2,-113.24694,0,0,1,37,2,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.65403849,0,0,0,45.380001,56.209999,52.650002,54.32,6,1,1,0,0,9,5,1,1244.5,269282.31,0,0,4094.5288 -4487,5566,10122,-9,10121,10124,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.5291,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1244.5,269282.31,0,0,4094.5288 -4487,5566,10123,-9,10121,10124,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.6624,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1244.5,269282.31,0,0,4094.5288 -4487,5566,10124,10121,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,4,9.7418861,9.60676,0,2,0,-9,7,0,2,-1.4123325,0,0,0,35,2,4,3,2,-9,2019,2,2,7,0,50,48,15,1,0,3,0,37.929272,37.929272,0,0,0,0,0,0,0,0,0,0,0,7.2583704,0,0,0,52.650002,54.32,45.380001,56.209999,6,1,1,0,0,9,5,1,1244.5,269282.31,0,0,4094.5288 -4488,5567,10125,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-859.44794,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,4,1,0,826,24914.555,0,0,969.42224 -4489,5568,10126,10127,-9,-9,2,1,0,62,1,0,0,0,2,-9,3,3,0,1,2,0,6.5364842,6.5754333,1,0,-9,9,0,-1,-67.298347,0,0,0,63,2,4,1,3,3,2019,3,1,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2533956,0,0,27.98,47.27,57.16,56.150002,6,1,1,1,0,5,3,1,729,248336.78,0,0,2595.5449 -4489,5568,10127,10126,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,7.7473502,8.2852831,7.2217736,1,0,-9,9,0,1,-24.820721,0,0,0,62,2,2,3,3,3,2019,2,2,6,0,37,37,15,1,0,3,0,6.6793675,6.6793675,0,0,0,0,0,0,0,71.5,1,1,0,2.8146591,7.1452594,66.641792,1,57.16,56.150002,27.98,47.27,6,1,1,0,0,5,3,1,729,248336.78,0,0,2595.5449 -4490,5569,10128,10129,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,1,4,7.5470366,7.6793666,4.0043111,2,0,-9,28,0,-1,71.564796,0,0,0,51,2,2,1,2,2,2019,1,2,12,1,31,30,15,1,0,1,0,5.6724348,5.6724348,0,0,0,0,0,0,0,2,1,1,0,5.828629,0,0,3,46.98,59.349998,38.400002,43.599998,6,1,1,0,0,9,4,1,1548,1399488.6,0,0,2276.698 -4490,5569,10129,10128,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,8.6425753,8.2022524,0,2,0,-9,28,0,1,-44.871353,0,0,0,50,2,4,1,2,3,2019,1,1,12,2,37,37,15,1,0,1,0,15.04051,15.04051,0,0,0,0,0,0,0,2,1,1,0,3.427449,0,0,3,38.400002,43.599998,46.98,59.349998,5,1,1,0,0,9,4,1,1548,1399488.6,0,0,2276.698 -4490,5569,10130,-9,10128,10129,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.5929,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,1548,1399488.6,0,0,2276.698 -4491,5570,10131,10132,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,1,3,0,4.7299209,5.0945477,1,0,-9,6,0,3,-48.661781,0,0,0,78,3,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,5.4770603,0,0,0,0,0,1,1,0,1.8256066,4.9161992,0,0,54,45,36.93,49.009998,6,1,1,0,0,7,1,1,1096,-12136.39,0,0,2077.49 -4491,5570,10132,10131,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-3,-118.35326,0,0,0,81,3,3,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.2025828,0,2.4184659,1,36.93,49.009998,54,45,6,1,1,0,0,7,1,1,1096,-12136.39,0,0,2077.49 -4492,5571,10133,-9,10134,-9,1,1,0,26,2,0,0,0,1,0,7,2,0,0,4,4.7849793,4.9291,0,3,0,0,0,-9,0,-1013.3004,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.347302,0,0,0,57.169998,50.610001,-9,-9,6,3,4,0,0,8,2,0,864,1867.6909,0,0,383.11658 -4492,5572,10134,-9,-9,-9,2,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.254159,8.3683224,0,3,0,0,0,-9,0,-900.46729,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,38,38,15,1,0,-9,0,15.746258,15.746258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,-9,-9,5,3,4,0,1,8,4,0,152,737692.13,0,0,911.70508 -4492,5573,10135,-9,10134,-9,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,2,8.4931459,8.456686,0,3,0,0,0,-9,0,-904.32593,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,45,0,15,1,0,-9,1,13.007496,13.007496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.02,43.459999,-9,-9,5,3,4,0,0,8,4,0,392,173354.95,0,0,1731.9707 -4493,5574,10136,10137,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,4,0,8.3782864,8.25035,1,0,-9,59,0,-4,-82.65834,0,0,0,88,3,5,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.5709324,8.244977,9.3506784,3,57.07,49.389999,57.060001,57.759998,7,1,1,0,0,2,4,1,1035.5,894191.75,0,0,2665.7383 -4493,5574,10137,10136,-9,-9,2,1,0,88,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,59,0,4,-18.478903,0,0,0,84,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5953045,0,0,3,57.060001,57.759998,57.07,49.389999,7,1,1,0,0,2,4,1,1035.5,894191.75,0,0,2665.7383 -4494,5575,10138,10139,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,4,7.4969583,7.7193246,0,1,0,-9,26,0,8,61.430698,0,0,0,55,2,2,1,3,3,2019,1,2,5,0,42,58,15,1,0,1,0,6.811491,6.811491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.549999,32.139999,48.189999,30.93,6,1,1,0,0,4,3,0,415,218511.19,0,0,2009.5259 -4494,5575,10139,10138,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,7.4204679,7.4847631,0,1,0,-9,26,0,-8,-137.42068,0,0,0,63,3,4,1,3,3,2019,1,1,6,0,42,30,15,1,0,1,0,4.0805969,4.0805969,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.520718,3,48.189999,30.93,59.549999,32.139999,6,1,1,0,0,4,3,0,415,218511.19,0,0,2009.5259 -4495,5576,10140,10141,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,2,0,8.4722328,8.3779697,1,0,-9,9,0,2,-37.464108,0,0,0,63,2,4,3,2,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.764502,8.4541931,0,0,52.049999,37.549999,60.119999,54.799999,7,1,1,0,0,11,4,1,402.5,303865.38,0,0,3507.5752 -4495,5576,10141,10140,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,6.5047283,6.4814806,1,0,-9,9,0,-2,67.303192,0,0,0,65,1,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4091816,13.413315,3,60.119999,54.799999,52.049999,37.549999,6,1,1,0,0,11,4,1,402.5,303865.38,0,0,3507.5752 -4496,5577,10142,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1111.3461,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.83,24.530001,-9,-9,1,1,1,0,0,10,1,0,457,166822.2,0,0,2070.9153 -4497,5578,10143,10144,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.3672304,8.5087996,0,1,0,-9,10,0,2,-.4711951,0,0,0,60,3,3,3,3,3,2019,2,2,6,0,36,36,15,1,0,4,0,14.294443,14.294443,0,0,0,0,0,0,0,7,1,0,1,6.0142837,0,5.0387383,3,57.09,46.700001,57.330002,53.459999,5,1,1,0,0,13,4,1,376.5,1626546.6,0,0,2681.8909 -4497,5578,10144,10143,-9,-9,2,1,0,60,1,0,0,0,3,-9,4,3,0,0,3,0,7.1302137,7.1011157,1,0,-9,39,0,-2,-11.821648,0,0,0,62,2,3,1,3,3,2019,3,1,11,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,3.7802019,7.4495468,.95979404,3,57.330002,53.459999,57.09,46.700001,6,1,1,0,0,13,4,1,376.5,1626546.6,0,0,2681.8909 -4497,5579,10145,-9,10144,10143,3,1,0,25,2,0,0,0,1,-9,5,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1010.7909,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,33,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,0,1,.57509154,0,2.9965549,3,45.349998,50.810001,-9,-9,1,1,1,0,0,13,1,1,1076,25007.646,0,0,-714.22266 -4498,5580,10146,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,1,1,0,5.0889516,4.8441467,3,0,0,0,-9,0,-1075.7913,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,33,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.4624782,24.510538,3,20.959999,46.34,-9,-9,2,1,1,0,1,9,2,0,251,423165.81,0,0,566.97516 -4499,5581,10147,-9,10148,10151,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.84851,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,1,1425.8,-44739.508,0,0,2941.2065 -4499,5581,10148,10151,-9,-9,1,1,0,42,1,0,3,0,1,-9,6,3,0,1,4,0,0,0,2,0,-9,22,0,1,-36.662449,0,0,1,41,2,4,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,71.711143,3,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,12,3,1,1425.8,-44739.508,0,0,2941.2065 -4499,5581,10149,-9,10148,10151,3,1,1,16,2,0,3,0,3,-9,97,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1102.5496,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3756216,0,0,0,47.669998,58.09,-9,-9,6,1,1,0,0,12,3,1,1425.8,-44739.508,0,0,2941.2065 -4499,5581,10150,-9,10148,10151,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-839.01318,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,3,1,1425.8,-44739.508,0,0,2941.2065 -4499,5581,10151,10148,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,0,4,8.1139059,8.343461,0,2,0,-9,22,0,-1,20.201525,0,0,0,42,1,4,3,3,-9,2019,2,1,11,0,50,50,15,1,0,3,0,8.8417778,8.8417778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,54.200001,57.490002,6,1,1,0,0,12,3,1,1425.8,-44739.508,0,0,2941.2065 -4500,5582,10152,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,0,4,7.9646926,7.9835453,0,4,0,0,0,-9,0,-869.46606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,33,36,15,1,0,-9,0,10.990642,10.990642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,-9,-9,6,1,1,0,1,4,3,1,1144,-33924.027,0,0,1068.8237 -4501,5583,10153,10154,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,7.5532455,7.4556799,0,1,0,-9,9,0,1,7.8540101,0,0,0,47,1,5,1,-9,-9,2019,1,1,14,3,22,21,15,1,0,1,0,10.803567,10.803567,0,0,0,0,0,0,0,0,0,0,0,2.4412978,0,0,0,50.25,54.040001,58.740002,52.919998,6,1,1,0,0,13,5,1,321.5,645492.38,0,0,3920.5349 -4501,5583,10154,10153,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,0,5,8.6103029,8.7381887,0,1,0,-9,26,0,-1,11.852414,0,0,0,48,1,4,1,3,3,2019,1,2,18,6,50,53,15,1,1,1,0,18.613808,18.613808,0,0,0,0,0,0,0,0,0,0,0,4.6380749,0,0,0,58.740002,52.919998,50.25,54.040001,6,1,1,0,0,13,5,1,321.5,645492.38,0,0,3920.5349 -4501,5584,10155,-9,10153,10154,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.9230032,8.0554914,0,3,0,0,0,-9,0,-1058.7305,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,56,48,15,1,0,-9,1,7.1437011,7.1437011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.650002,60.470001,-9,-9,7,1,1,0,0,13,4,1,897,101383.82,0,0,945.71997 -4501,5585,10156,-9,10153,10154,4,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.3801122,7.4442196,0,3,0,0,0,-9,0,-1006.1694,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,39,40,15,1,0,-9,1,3.8598337,3.8598337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,3,1,489,44773.813,0,0,-222.33534 -4502,5586,10157,-9,-9,-9,1,1,1,89,2,0,0,0,1,-9,4,3,0,0,3,0,5.944212,6.3464251,3,0,0,0,-9,0,-1062.3136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.2327371,0,0,55,45,-9,-9,6,3,4,0,1,6,2,0,1540,276357.13,0,0,-105.51262 -4503,5587,10158,10159,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,3,0,8.4838409,8.0103226,1,0,-9,46,0,5,48.67207,0,0,0,69,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2382512,8.5023661,0,0,54.959999,53.169998,54.200001,57.490002,7,1,1,0,0,6,4,1,852.5,1756795.4,0,0,3443.6353 -4503,5587,10159,10158,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.3298669,7.4637461,1,0,-9,46,0,-5,7.6160679,0,0,0,74,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6636128,7.2302785,0,0,54.200001,57.490002,54.959999,53.169998,7,1,1,0,0,6,4,1,852.5,1756795.4,0,0,3443.6353 -4504,5588,10160,-9,10162,10161,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.4575,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,1,545.75,-86212.461,0,0,466.85577 -4504,5588,10161,10162,-9,-9,2,1,1,49,1,0,2,0,2,-9,1,1,0,0,4,6.6759982,7.0682402,0,2,0,-9,23,0,4,-.93785399,0,0,0,45,2,5,1,2,2,2019,1,1,8,0,50,40,15,1,0,1,0,1.8795612,1.8795612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,62.389999,56.709999,5,1,1,0,0,9,2,1,545.75,-86212.461,0,0,466.85577 -4504,5588,10162,10161,-9,-9,1,1,0,45,1,0,2,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,23,0,-4,69.231415,0,0,0,49,2,4,1,2,2,2019,1,2,6,0,12,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2987986,0,0,0,62.389999,56.709999,54.790001,55.860001,7,1,1,0,0,9,2,1,545.75,-86212.461,0,0,466.85577 -4504,5588,10163,-9,10162,10161,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,3.8592136,4.1678872,2,0,0,0,-9,0,-1015.4069,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3837967,0,0,0,49.580002,55.59,-9,-9,3,1,1,0,0,9,2,1,545.75,-86212.461,0,0,466.85577 -4505,5589,10164,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-991.59113,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.889999,31.370001,-9,-9,3,1,1,0,1,5,1,0,582,-45543.484,0,0,2178.6702 -4506,5590,10165,10167,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.53578,8.2180548,0,2,0,-9,4,0,3,59.476162,0,0,0,31,1,3,1,2,2,2019,1,2,12,0,42,42,15,1,0,1,0,14.17023,14.17023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,43.09,45.48,52.139999,5,1,1,0,0,2,4,1,371.33334,77797.953,0,0,2736.8171 -4506,5590,10166,-9,10167,10165,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.0672,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,371.33334,77797.953,0,0,2736.8171 -4506,5590,10167,10165,-9,-9,2,1,0,31,1,1,1,0,1,-9,2,1,0,0,3,7.257874,7.5974717,0,2,0,-9,4,0,-3,-55.931229,0,0,1,34,2,4,1,-9,-9,2019,1,1,16,5,34,39,15,1,1,1,0,6.3517447,6.3517447,0,0,0,0,0,0,0,0,1,1,0,7.4184699,0,0,0,45.48,52.139999,46.91,43.09,6,1,1,0,0,2,4,1,371.33334,77797.953,0,0,2736.8171 -4507,5591,10168,10169,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-1,-83.367767,0,0,0,73,3,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.619999,50.740002,60.119999,54.799999,7,1,1,0,0,13,1,1,1375.5,43133.945,0,0,1104.3831 -4507,5591,10169,10168,-9,-9,1,1,1,73,1,0,0,0,3,-9,1,1,0,0,4,4.407505,4.4466701,0,1,0,-9,7,0,1,-101.72749,0,0,0,72,3,4,3,3,3,2019,2,2,7,0,8,0,15,1,0,4,0,1.3471243,1.3471243,0,0,0,0,0,0,0,0,1,1,0,1.5441918,0,0,0,60.119999,54.799999,47.619999,50.740002,6,1,1,0,0,13,1,1,1375.5,43133.945,0,0,1104.3831 -4508,5592,10170,10172,-9,-9,1,1,1,48,1,1,3,0,2,-9,2,1,0,0,4,9.3444881,9.0374174,0,2,0,-9,13,0,12,98.143875,0,0,0,36,2,5,1,-9,-9,2019,1,2,9,1,40,60,15,1,0,1,0,34.227692,34.227692,0,0,0,0,0,0,0,0,0,0,0,6.2691131,0,0,0,53,54,49.759998,54.220001,5,4,2,0,0,9,5,1,883,461687.69,0,0,4734.5073 -4508,5592,10171,-9,10172,10170,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.3591,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,5,1,883,461687.69,0,0,4734.5073 -4508,5592,10172,10170,-9,-9,2,1,0,36,1,1,3,0,2,-9,2,1,0,0,5,7.8232427,7.9386964,0,2,0,-9,13,0,-12,109.99334,0,0,1,48,2,4,1,2,2,2019,1,1,14,4,20,16,15,1,1,1,0,15.567589,15.567589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.759998,54.220001,53,54,2,2,3,0,0,9,5,1,883,461687.69,0,0,4734.5073 -4508,5592,10173,-9,10172,10170,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.9117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,5,1,883,461687.69,0,0,4734.5073 -4508,5592,10174,-9,10172,10170,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.98743,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,9,5,1,883,461687.69,0,0,4734.5073 -4509,5593,10175,10176,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,0,2,7.4229064,7.6461844,0,1,0,-9,6,0,-4,28.590487,0,0,0,71,3,3,3,3,3,2019,2,1,12,0,28,0,15,1,0,4,0,7.7667398,7.7667398,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.230949,1,52.279999,39.91,53,47,5,1,1,0,0,8,3,0,371.5,517609.16,0,0,2637.4241 -4509,5593,10176,10175,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,6.1329703,5.8443909,1,0,-9,6,0,4,-60.061108,0,0,0,67,2,2,1,3,3,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1532555,0,0,53,47,52.279999,39.91,6,1,1,0,0,8,3,0,371.5,517609.16,0,0,2637.4241 -4509,5594,10177,-9,10175,10176,3,1,1,41,2,0,0,0,2,-9,2,1,0,0,4,8.0498896,7.8721414,0,3,0,0,0,-9,0,-959.52356,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,48,60,15,1,0,-9,1,8.2653294,8.2653294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,1,1,0,0,8,4,0,382,53994.668,0,0,2544.2549 -4509,5595,10178,-9,10175,10176,4,1,1,32,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1082.3735,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,1,0,8,1,0,847,-22111.074,0,0,537.96069 -4510,5596,10179,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-985.04669,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.1822805,4.2270617,0,0,0,1,1,0,0,0,0,0,55.52,16.74,-9,-9,6,1,1,0,0,7,1,0,211,-81568.984,0,0,-31.488653 -4511,5597,10180,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,-9,0,0,0,-934.5318,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,1,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.58780152,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,1,1,1,1,364,-109109.09,0,0,-116.40565 -4512,5598,10181,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1016.1313,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,1,7.1375594,0,0,0,0,39.238628,0,1,1,0,0,0,0,0,36.529999,14.85,-9,-9,1,1,1,0,0,13,1,0,663,-11771.721,0,0,1914.5243 -4513,5599,10182,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,0,4,0,6.6271939,6.3217669,3,0,0,0,-9,0,-905.50348,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2316895,0,0,55.360001,54.240002,-9,-9,6,1,1,0,0,2,2,1,71,156669.14,0,0,1824.2042 -4514,5600,10183,10184,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.627934,7.1166792,1,0,-9,3,0,-1,-97.680313,0,0,0,69,1,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3849335,7.0866089,0,0,59.709999,50.889999,58.150002,52.91,7,1,1,0,0,8,5,1,690.5,2056275.8,0,0,4837.7139 -4514,5600,10184,10183,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.6060753,8.6762648,1,0,-9,3,0,1,-44.080399,0,0,0,68,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7021403,8.937315,0,0,58.150002,52.91,59.709999,50.889999,6,1,1,0,0,8,5,1,690.5,2056275.8,0,0,4837.7139 -4515,5601,10185,-9,10187,-9,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-832.64624,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,387.66666,55217.977,0,0,2495.8064 -4515,5601,10186,-9,10187,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-931.42694,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,2,2,0,387.66666,55217.977,0,0,2495.8064 -4515,5601,10187,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,2,1,0,1,2,5.9692216,5.8274202,3.998256,4,0,0,0,-9,0,-1052.1102,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,16,20,15,1,1,-9,0,2.0575862,2.0575862,0,0,0,0,0,0,0,0,1,1,0,3.3561819,0,0,0,40.110001,36.490002,-9,-9,4,1,1,0,0,2,2,0,387.66666,55217.977,0,0,2495.8064 -4515,5602,10188,-9,10187,-9,2,1,0,20,2,0,2,1,2,0,7,2,0,0,3,6.554162,6.74019,0,3,0,0,0,-9,0,-1080.1802,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.32,53.849998,-9,-9,5,1,1,0,0,2,2,0,432,134086.13,0,0,475.95258 -4516,5603,10189,10190,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,6.1747112,6.1979189,0,1,0,-9,6,0,-2,67.464172,0,0,0,63,2,1,3,3,3,2019,2,1,7,0,10,10,15,1,0,4,0,4.5533071,4.5533071,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.959999,53.169998,27.889999,18.610001,6,1,1,0,0,6,2,1,347,109185.58,0,0,1154.2241 -4516,5603,10190,10189,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,6,0,2,5.9083314,0,0,0,61,3,3,1,3,3,2019,3,2,36,12,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.889999,18.610001,54.959999,53.169998,2,1,1,0,0,6,2,1,347,109185.58,0,0,1154.2241 -4517,5604,10191,-9,-9,-9,1,1,0,59,2,0,0,0,3,-9,2,1,0,0,3,7.6134653,7.4649811,0,3,0,-9,0,0,0,-952.64825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,43,37,15,1,0,-9,0,5.3829999,5.3829999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,-9,-9,4,1,1,0,1,13,3,1,263,401502.38,0,0,1657.0083 -4518,5605,10192,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,1,1,0,0,4,7.9928818,8.5170879,7.389327,3,0,0,0,-9,0,-1011.8326,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,25,42,15,1,0,-9,0,11.778726,11.778726,0,0,0,0,0,0,0,0,1,1,0,7.7416296,7.2845731,0,0,41.700001,59.169998,-9,-9,4,1,1,0,0,7,4,1,1520,603025.25,0,0,3499.4998 -4519,5606,10193,10195,-9,-9,2,1,1,39,1,0,1,0,2,-9,1,1,0,0,3,8.6715422,8.4466715,0,2,0,-9,10,0,3,-.43477005,0,0,0,36,1,3,1,-9,-9,2019,1,1,9,0,70,70,15,1,0,1,0,8.1172199,8.1172199,0,0,0,0,0,0,0,0,0,0,0,5.3214598,0,0,0,44.700001,53.68,48.48,49.450001,4,1,1,0,0,9,5,0,1503,137886.5,0,0,4402.1367 -4519,5606,10194,-9,10195,10193,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-886.9339,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,0,1503,137886.5,0,0,4402.1367 -4519,5606,10195,10193,-9,-9,1,1,0,36,1,0,1,0,1,-9,1,1,0,0,3,8.1942902,8.1420364,0,2,0,-9,10,0,-3,6.8155441,0,0,1,39,2,3,1,2,2,2019,1,2,14,4,21,22,15,1,1,1,0,18.094217,18.094217,0,0,0,0,0,0,0,14.5,0,0,0,7.0769858,0,11.070769,3,48.48,49.450001,44.700001,53.68,3,1,1,0,0,9,5,0,1503,137886.5,0,0,4402.1367 -4520,5607,10196,-9,10197,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-976.87201,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.8321996,3,49.41,58.279999,-9,-9,5,1,1,0,0,8,1,0,686,284969.31,0,0,2018.1934 -4520,5607,10197,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1024.8834,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.719999,22.57,-9,-9,1,1,1,0,1,8,1,0,686,284969.31,0,0,2018.1934 -4521,5608,10198,10199,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,3,0,8.1457024,7.9859424,1,0,-9,10,0,-6,32.276131,0,0,0,74,1,4,3,1,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,8.1621799,76.390785,1,45.59,31.700001,52.689999,52.630001,7,1,1,0,0,13,4,1,1077,2080914.1,0,0,5752.3867 -4521,5608,10199,10198,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,1,4,0,7.929112,8.2100306,1,0,-9,10,0,6,-2.168052,0,0,0,68,1,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,2.1640015,0,0,0,0,0,1,1,0,0,8.5364971,0,0,52.689999,52.630001,45.59,31.700001,7,1,1,0,0,13,4,1,1077,2080914.1,0,0,5752.3867 -4522,5609,10200,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,1,1,9.0167685,8.8328171,0,3,0,0,0,-9,0,-926.59106,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,38,43,15,1,0,-9,0,25.326611,25.326611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.759998,25.129999,-9,-9,5,1,1,0,0,9,5,0,332,122075.02,0,0,3807.8132 -4523,5610,10201,10202,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,1,1,0,7.0212016,7.4468007,1,0,-9,8,0,-3,21.540432,0,0,0,76,2,2,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,37.02948,37.750839,0,0,0,375.93378,0,1,1,0,4.716238,7.4971299,0,0,45.18,16.49,55.450001,27.469999,6,1,1,0,0,4,2,1,447.5,413115.63,0,0,1897.4102 -4523,5610,10202,10201,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,6.4557981,6.3513455,1,0,-9,8,0,3,-48.631134,0,0,0,73,3,1,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,1.4519535,6.3580813,7.5624127,1,55.450001,27.469999,45.18,16.49,6,1,1,0,0,4,2,1,447.5,413115.63,0,0,1897.4102 -4524,5611,10203,-9,10204,10205,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-941.10553,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,4,1,529.5,998102.06,0,0,2366.751 -4524,5611,10204,10205,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.4568925,7.4967117,0,2,0,-9,7,0,-1,-14.999964,0,0,1,43,2,4,1,2,2,2019,1,2,6,0,27,27,15,1,0,1,0,8.2077589,8.2077589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,54.200001,57.490002,6,1,1,0,0,12,4,1,529.5,998102.06,0,0,2366.751 -4524,5611,10205,10204,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,8.7349768,8.823308,0,2,0,-9,7,0,1,67.224083,0,0,0,42,2,4,1,2,1,2019,1,1,6,0,48,55,15,1,0,1,0,13.125972,13.125972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,12,4,1,529.5,998102.06,0,0,2366.751 -4524,5611,10206,-9,10204,10205,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.04608,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,529.5,998102.06,0,0,2366.751 -4525,5612,10207,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,4,7.8410478,7.5777059,0,3,0,0,0,-9,0,-957.10516,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,42,33,15,1,0,-9,0,6.6651149,6.6651149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.470001,59.650002,-9,-9,6,1,1,0,0,1,3,1,368,3869.5781,0,0,1056.1154 -4526,5613,10208,-9,-9,-9,1,1,0,35,2,0,0,0,3,-9,2,1,0,0,2,7.6164737,7.676682,0,3,0,0,0,-9,0,-972.29742,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,30,35,15,1,0,-9,0,8.1059618,8.1059618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.67,34.68,-9,-9,2,2,3,0,1,8,3,0,1153,-48485.441,0,0,471.60956 -4526,5614,10209,-9,-9,-9,3,1,0,43,3,0,0,0,2,-9,2,1,0,0,2,6.8345566,6.9501805,0,3,0,0,0,-9,0,-951.00049,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,16,0,15,1,0,-9,0,7.2597651,7.2597651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.360001,45.889999,-9,-9,3,2,3,0,1,8,2,0,609,-100277.59,0,0,784.63708 -4527,5615,10210,10211,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,3.9591095,3.9756117,1,0,-9,10,0,1,-196.24911,0,0,0,73,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9740729,3.9780354,0,0,41.049999,36.200001,57.16,56.150002,6,1,1,0,0,2,2,1,485,99740.641,0,0,1369.0189 -4527,5615,10211,10210,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,5.8133488,5.9959922,1,0,-9,10,0,-1,-61.33387,0,0,0,74,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3918982,0,0,0,57.16,56.150002,41.049999,36.200001,5,1,1,0,0,2,2,1,485,99740.641,0,0,1369.0189 -4528,5616,10212,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,1,1,0,7.8370004,7.9132895,3,0,0,0,-9,0,-1005.0161,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2105927,7.8239121,0,0,18.469999,22.91,-9,-9,2,1,1,0,0,2,3,0,319,833321.63,0,0,2630.0046 -4529,5617,10213,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,0,3,7.8530455,7.6737652,0,3,0,0,0,-9,0,-1089.7568,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,33,30,15,1,0,-9,0,8.7434483,8.7434483,0,0,0,0,0,0,0,0,0,0,0,4.0806909,0,0,0,53.560001,49.66,-9,-9,6,1,1,0,0,4,3,1,215,191748.88,0,0,1196.076 -4530,5618,10214,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,0,3,8.6876955,8.6535311,0,3,0,0,0,-9,0,-957.71204,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.779999,51.790001,-9,-9,3,2,3,0,0,8,5,0,819,565394.13,0,0,2509.8481 -4531,5619,10215,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,5,8.5718927,8.3901796,0,3,0,0,0,-9,0,-920.82166,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,50,48,15,1,0,-9,0,11.050778,11.050778,0,0,0,0,0,0,0,0,0,0,0,1.8333262,0,0,0,58.759998,52.91,-9,-9,6,1,1,0,0,1,5,0,98,-20817.52,0,0,1534.2605 -4532,5620,10216,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-906.47302,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6600041,0,0,0,56.040001,51.299999,-9,-9,4,1,1,0,0,5,1,1,2345,-93286.18,0,0,1130.5085 -4533,5621,10217,10219,-9,-9,2,1,1,38,1,0,1,0,1,-9,2,1,0,0,3,9.5124865,9.603714,0,2,0,-9,7,0,-7,79.79258,0,0,0,45,1,3,1,-9,-9,2019,1,1,16,5,50,55,15,1,1,1,0,34.446815,34.446815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.619999,60.23,45.43,53.5,3,1,1,0,0,9,5,1,614,994607.81,0,0,3932.2339 -4533,5621,10218,-9,10219,10217,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.4506,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,614,994607.81,0,0,3932.2339 -4533,5621,10219,10217,-9,-9,1,1,0,45,1,0,1,0,1,-9,2,1,0,0,3,7.1278081,6.9030418,0,2,0,-9,7,0,7,15.058406,0,0,0,38,1,3,1,3,1,2019,1,2,11,0,16,16,15,1,0,1,0,8.6187019,8.6187019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,36.619999,60.23,6,1,1,0,0,9,5,1,614,994607.81,0,0,3932.2339 -4534,5622,10220,-9,10221,10224,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.58368,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,0,657.20001,45766.281,0,0,4073.1958 -4534,5622,10221,10224,-9,-9,2,1,0,36,1,0,3,0,2,-9,2,1,0,0,4,8.0261145,8.0121155,0,2,0,-9,10,0,-3,-2.0789411,0,0,1,39,2,4,1,-9,-9,2019,1,1,13,3,21,21,15,1,0,1,0,14.261841,14.261841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,54.200001,57.490002,6,1,1,0,1,2,4,0,657.20001,45766.281,0,0,4073.1958 -4534,5622,10222,-9,10221,10224,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.4028,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,0,657.20001,45766.281,0,0,4073.1958 -4534,5622,10223,-9,10221,10224,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-812.76379,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,0,657.20001,45766.281,0,0,4073.1958 -4534,5622,10224,10221,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,0,4,8.9060011,8.9896431,0,2,0,-9,10,0,3,59.469147,0,0,0,36,2,4,1,2,2,2019,1,2,12,2,35,55,15,1,0,1,0,21.179628,21.179628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,42.950001,61.240002,5,1,1,0,1,2,4,0,657.20001,45766.281,0,0,4073.1958 -4535,5623,10225,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-951.29883,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.639999,45.060001,-9,-9,5,1,1,1,0,2,1,1,2280,33058.422,0,0,277.49524 -4536,5624,10226,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,8.2421665,8.237112,0,3,0,0,0,-9,0,-1168.8047,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,58,60,15,1,0,-9,0,9.8200989,9.8200989,0,0,0,0,0,0,0,0,0,0,0,6.7412448,0,0,0,57.169998,50.610001,-9,-9,4,1,1,0,0,10,4,0,1142,344791.97,0,0,2428.8621 -4537,5625,10227,10228,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,0,3,0,8.0680246,7.5809135,1,0,-9,39,0,-1,94.292755,0,0,0,61,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5799413,7.7415709,0,0,52,54.509998,54.200001,57.490002,6,1,1,0,0,11,5,1,756.5,2074424.1,0,0,5173.6973 -4537,5625,10228,10227,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,0,4,0,8.5642271,8.5494909,1,0,-9,39,0,1,-159.56265,0,0,0,60,1,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6835647,8.7535925,0,0,54.200001,57.490002,52,54.509998,6,1,1,0,0,11,5,1,756.5,2074424.1,0,0,5173.6973 -4537,5626,10229,-9,10228,10227,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.365469,8.6449957,0,3,0,0,0,-9,0,-869.9494,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,38,25,15,1,0,-9,1,17.799047,17.799047,0,0,0,0,0,0,0,0,0,0,0,2.58689,0,0,0,48.189999,54.860001,-9,-9,6,1,1,0,0,11,4,1,394,219622.31,0,0,556.29846 -4537,5627,10230,-9,10228,10227,4,1,0,22,2,0,0,0,1,0,7,2,0,0,3,6.5080719,6.3150673,0,3,0,0,0,-9,0,-877.03156,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,16,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.68,55.459999,-9,-9,4,1,1,0,1,11,2,1,1484,47407.594,0,0,-21.138849 -4538,5628,10231,-9,10233,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1070.9634,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,2,0,980.33331,-19750.705,0,0,2515.3989 -4538,5628,10232,-9,10233,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.4717,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,980.33331,-19750.705,0,0,2515.3989 -4538,5628,10233,-9,-9,-9,1,1,0,27,2,0,2,0,2,-9,2,1,0,0,4,4.8760962,6.1240697,5.527225,4,0,-9,0,0,0,-1125.1322,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,3,12,15,1,1,-9,0,6.1713395,6.1713395,0,0,0,0,0,0,0,0,1,1,0,6.2538533,0,0,0,16.049999,65.730003,-9,-9,6,1,1,0,0,2,2,0,980.33331,-19750.705,0,0,2515.3989 -4539,5629,10234,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,0,2,8.8655443,8.9961224,7.9462585,3,0,-9,0,1,0,-940.8316,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,40,15,1,0,-9,0,21.955896,21.955896,0,0,0,0,0,0,0,0,0,0,0,5.1178145,8.1275129,0,0,62.279999,29.58,-9,-9,7,1,1,0,0,12,5,1,1776,2700583.3,0,0,3902.2769 -4540,5630,10235,10236,-9,-9,2,1,1,58,1,0,0,0,3,-9,1,1,0,0,4,7.4438486,7.8758254,7.0484161,1,0,-9,34,0,5,-105.31775,0,0,0,53,3,3,1,3,3,2019,1,1,8,0,40,40,15,1,0,1,0,6.4170728,6.4170728,0,0,0,0,0,0,0,0,0,0,0,7.278049,0,0,0,57.16,56.150002,46.080002,57.200001,6,1,1,0,0,2,5,1,378,1119182.9,0,0,3000.0664 -4540,5630,10236,10235,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,8.7428789,8.7586155,0,1,0,-9,34,0,-5,9.6052017,0,0,0,58,3,4,1,3,3,2019,1,2,20,8,35,33,15,1,1,1,0,17.27631,17.27631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,57.16,56.150002,5,1,1,0,0,2,5,1,378,1119182.9,0,0,3000.0664 -4541,5631,10237,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,4,0,7.5154395,7.3776455,3,0,0,0,-9,0,-880.60107,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9496422,7.4799585,0,0,61.27,46.029999,-9,-9,6,1,1,0,0,8,3,1,204,1558103.1,0,0,937.64722 -4542,5632,10238,10239,-9,-9,4,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.2354031,8.1803761,0,2,0,-9,7,0,10,-41.170063,-9,0,0,42,2,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,12.347766,12.347766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,38.91,60.5,6,1,1,0,0,7,4,1,678.33331,898197.31,0,0,4089.6616 -4542,5632,10239,10238,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,8.5658131,8.6916227,0,2,0,-9,7,0,-10,28.287422,-9,0,1,52,2,3,1,2,2,2019,1,4,9,0,38,0,15,1,0,1,0,13.074271,13.074271,0,0,0,0,0,0,0,0,1,1,0,1.415478,0,0,0,38.91,60.5,57.330002,53.459999,6,1,1,0,0,7,4,1,678.33331,898197.31,0,0,4089.6616 -4542,5632,10240,-9,10239,10238,2,1,1,17,2,0,1,0,2,-9,2,3,0,0,5,6.5947161,6.2515965,0,2,0,0,0,-9,0,-997.75531,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,10,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,-9,-9,6,1,1,0,0,7,4,1,678.33331,898197.31,0,0,4089.6616 -4542,5633,10241,-9,10239,10238,5,1,0,19,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1006.3401,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,1,1,272,137805.7,0,0,0 -4543,5634,10242,10243,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,8.3803196,7.9776807,0,1,0,-9,37,0,0,110.39959,0,0,0,61,2,4,1,3,3,2019,1,1,11,0,39,0,15,1,0,1,0,8.2042446,8.2042446,0,0,0,0,0,0,0,2,0,0,0,0,0,4.8093119,3,37.919998,53.029999,59.290001,49.68,6,1,1,0,0,6,4,1,214.5,171902.61,0,0,723.51892 -4543,5634,10243,10242,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,7.8239422,7.9330864,5.7653699,1,0,-9,37,0,0,6.3152633,0,0,0,61,3,3,1,3,-9,2019,1,2,12,0,40,0,15,1,0,1,0,7.6674819,7.6674819,0,0,0,0,0,0,0,7,0,0,0,3.5051439,5.9480534,7.9974818,3,59.290001,49.68,37.919998,53.029999,6,1,1,0,0,6,4,1,214.5,171902.61,0,0,723.51892 -4544,5635,10244,-9,10245,10246,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1019.3076,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,4,0,819,167912.47,0,0,1715.047 -4544,5635,10245,10246,-9,-9,2,1,0,29,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,0,-45.4347,0,1,1,29,1,4,1,-9,-9,2019,3,1,11,2,0,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,38.860001,53.830002,5,2,3,0,0,8,4,0,819,167912.47,0,0,1715.047 -4544,5635,10246,10245,-9,-9,1,1,1,29,1,1,1,0,1,-9,2,1,0,0,4,8.7982473,8.7742395,0,2,0,-9,2,0,0,-51.825569,0,1,0,29,1,4,3,-9,-9,2019,2,2,12,4,50,40,15,1,1,3,0,10.847529,10.847529,0,0,0,0,0,0,0,0,0,0,0,1.0201728,0,0,0,38.860001,53.830002,48,57,6,2,3,0,0,8,4,0,819,167912.47,0,0,1715.047 -4545,5636,10247,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,0,4,9.5408945,9.3461723,0,3,0,0,0,-9,0,-1041.6548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,50,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,62.490002,55.09,-9,-9,6,1,1,0,0,7,5,1,97,1673326.3,0,0,4457.6206 -4546,5637,10248,10249,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,4,8.249938,8.485549,0,1,0,-9,7,0,-3,-.17045267,0,0,1,43,2,4,1,1,1,2019,1,2,9,0,40,38,15,1,0,1,0,13.163557,13.163557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.869999,43.790001,58.330002,2,1,1,0,0,13,4,1,566,331163.25,0,0,2341.7886 -4546,5637,10249,10248,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,0,4,7.8571172,7.8236876,0,1,0,-9,7,0,3,47.088264,0,0,0,40,2,4,1,-9,-9,2019,1,1,10,0,38,38,15,1,0,1,0,8.1217241,8.1217241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.790001,58.330002,54.77,55.869999,6,1,1,0,0,13,4,1,566,331163.25,0,0,2341.7886 -4547,5638,10250,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,8.5876732,8.4873152,0,3,0,0,0,-9,0,-1004.8823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,47,49,15,1,0,-9,0,10.678481,10.678481,0,0,0,0,0,0,0,7,1,1,0,0,0,9.6177225,3,56.5,29.75,-9,-9,6,1,1,0,0,5,5,1,427,785749.94,0,0,1426.5316 -4548,5639,10251,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,4,3,0,0,3,0,7.0503001,7.4174972,3,0,0,0,-9,0,-1010.9666,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.97686,0,0,55.02,50.34,-9,-9,5,1,1,0,0,7,3,1,581,496566.81,0,0,859.69067 -4549,5640,10252,-9,10253,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-975.51294,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,242.5,157233.13,0,0,2906.353 -4549,5640,10253,-9,-9,-9,1,1,0,40,3,1,1,0,2,-9,2,1,0,0,3,8.6127787,8.6219578,6.0810118,4,0,0,0,-9,0,-1137.75,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,38,38,15,1,0,-9,0,14.122291,14.122291,0,0,0,0,0,0,0,0,1,1,0,6.7201939,0,0,0,49.630001,54.220001,-9,-9,5,1,1,0,0,5,4,1,242.5,157233.13,0,0,2906.353 -4550,5641,10254,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,3,8.2419128,8.2671576,0,3,0,0,0,-9,0,-1140.5924,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,20,0,15,1,0,-9,0,29.310133,29.310133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.209999,55.18,-9,-9,6,2,3,0,0,6,4,1,234,199166.41,0,0,2978.6196 -4551,5642,10255,10256,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,7.9991927,8.0887756,0,1,0,-9,5,0,2,7.2993016,0,1,0,26,2,1,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,9.0667982,9.0667982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.860001,57.790001,32.439999,42.130001,3,1,1,0,0,2,4,1,373,-8015.6914,0,0,2791.2632 -4551,5642,10256,10255,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,1,8.5301275,7.8804026,0,1,0,-9,5,0,-2,6.9681902,0,1,1,28,2,4,1,-9,-9,2019,1,2,16,4,39,45,15,1,1,1,0,11.436009,11.436009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.439999,42.130001,38.860001,57.790001,3,1,1,0,0,2,4,1,373,-8015.6914,0,0,2791.2632 -4552,5643,10257,-9,10258,10259,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.0956,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,991.33331,259016.95,0,0,3095.1975 -4552,5643,10258,10259,-9,-9,1,1,0,44,1,0,1,0,2,-9,1,1,0,0,4,8.4228487,8.0949955,0,2,0,-9,8,0,-4,5.2741508,0,0,1,48,2,4,1,2,1,2019,1,2,1,0,5,8,15,1,0,1,0,79.645981,79.645981,0,0,0,0,0,0,0,0,1,1,0,3.715642,0,0,0,45.009998,57.459999,64.480003,48.619999,7,1,1,0,0,9,4,1,991.33331,259016.95,0,0,3095.1975 -4552,5643,10259,10258,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,7.9436159,8.2115784,0,2,0,-9,8,0,4,-24.418118,0,0,0,44,2,4,1,-9,-9,2019,1,1,6,0,30,25,15,1,0,1,0,12.022741,12.022741,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.480003,48.619999,45.009998,57.459999,4,1,1,0,0,9,4,1,991.33331,259016.95,0,0,3095.1975 -4552,5644,10260,-9,10258,10259,3,1,0,19,2,0,1,0,2,-9,1,1,0,0,4,7.1908765,7.0898905,0,3,0,0,0,-9,0,-997.72949,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,10,10,15,1,0,-9,1,16.666067,16.666067,0,0,0,0,0,0,0,0,1,1,0,1.3603787,0,0,0,40.709999,62.41,-9,-9,7,1,1,0,0,9,3,1,110,-146074.05,0,0,304.73486 -4553,5645,10261,-9,10262,10263,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.5286,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,649.20001,514472.19,0,0,2534.3916 -4553,5645,10262,10263,-9,-9,2,1,0,35,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,14,0,-13,0,0,0,1,48,2,2,3,2,2,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.9155855,2,46.200001,43.529999,53.84,25.91,4,1,1,0,0,10,1,0,649.20001,514472.19,0,0,2534.3916 -4553,5645,10263,10262,-9,-9,1,1,1,48,1,0,3,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,13,0,13,0,0,0,0,35,2,3,3,3,3,2019,4,2,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.84,25.91,46.200001,43.529999,4,1,1,0,0,10,1,0,649.20001,514472.19,0,0,2534.3916 -4553,5645,10264,-9,10262,10263,3,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.94165,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,1,0,649.20001,514472.19,0,0,2534.3916 -4553,5645,10265,-9,10262,10263,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.09631,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,1,0,649.20001,514472.19,0,0,2534.3916 -4554,5646,10266,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,2,1,0,0,3,8.0188265,8.1707087,0,3,0,-9,0,-9,0,-1058.3899,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,6,48,0,15,1,1,-9,0,7.1387277,7.1387277,0,0,0,0,0,0,0,5.48,1,1,0,0,0,3.5434113,3,29.719999,56.799999,-9,-9,5,3,4,0,0,10,4,0,330,68494.547,0,0,1283.3646 -4555,5647,10267,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,2,0,6.9292421,6.7345433,3,0,0,0,-9,0,-954.44373,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.0734017,0,0,1,1,0,0,6.682776,0,0,59,36.720001,-9,-9,7,1,1,0,0,11,2,0,1273,437417.69,0,0,861.42371 -4556,5648,10268,10269,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,9.0940924,9.2747202,0,1,0,-9,7,0,-3,-74.242073,0,0,1,33,2,5,1,1,1,2019,1,1,5,0,35,35,15,1,0,1,0,33.055298,33.055298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.060001,57.759998,6,2,3,0,0,7,5,1,736,65537.664,0,0,6106.5449 -4556,5648,10269,10268,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,0,5,8.8640652,9.2353945,0,1,0,-9,7,0,3,109.23307,0,0,0,30,1,4,1,-9,-9,2019,1,2,5,0,45,43,15,1,0,1,0,19.033422,19.033422,0,0,0,0,0,0,0,0,0,0,0,.94412363,0,0,0,57.060001,57.759998,54.790001,55.860001,7,1,1,0,0,7,5,1,736,65537.664,0,0,6106.5449 -4557,5649,10270,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,3,0,3.9441981,3.8992507,3,0,0,0,-9,0,-1003.5186,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2958598,3.6414297,14.16651,3,49.540001,53.32,-9,-9,6,1,1,0,0,6,2,0,1006,558557.06,0,0,1614.5991 -4558,5650,10271,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1069.7335,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.49,54.91,-9,-9,3,1,1,0,1,13,1,0,954,-22705.387,0,0,319.18442 -4559,5651,10272,10273,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,0,4,8.4942665,8.7242622,0,2,0,-9,12,0,-4,-183.44792,0,0,1,39,2,4,1,2,2,2019,1,1,11,2,38,37,15,1,0,1,0,13.774147,13.774147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,48.869999,58.549999,5,1,1,0,0,10,4,0,457.66666,184538.94,0,0,2721.4082 -4559,5651,10273,10272,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,0,4,7.842586,7.5967264,0,2,0,-9,12,0,4,-179.2236,0,0,0,35,1,4,1,2,2,2019,1,2,11,0,30,44,15,1,0,1,0,7.6521487,7.6521487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,48,56,4,1,1,0,0,10,4,0,457.66666,184538.94,0,0,2721.4082 -4559,5651,10274,-9,10272,10273,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.5597,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,0,457.66666,184538.94,0,0,2721.4082 -4560,5652,10275,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,5.3930178,5.462492,3,0,-9,0,1,0,-1017.4579,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4823079,5.7614765,0,0,51.549999,51.939999,-9,-9,6,1,1,0,0,1,2,1,3267,170717.61,0,0,926.76794 -4561,5653,10276,10277,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,0,5,6.344821,8.2124996,7.876214,1,0,-9,39,0,3,-9.5876522,0,0,0,58,1,4,1,3,2,2019,3,1,7,0,0,29,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1088474,8.0147066,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,2,4,1,268.5,1245704.3,0,0,1971.842 -4561,5653,10277,10276,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,7.7162561,7.5836968,5.5714536,1,0,-9,39,0,-3,66.061989,0,0,0,61,1,5,3,2,2,2019,2,2,7,0,32,32,15,1,0,4,0,7.2537851,7.2537851,0,0,0,0,0,0,0,0,0,0,0,5.0550294,0,0,0,57.16,56.150002,57.060001,57.759998,2,1,1,0,0,2,4,1,268.5,1245704.3,0,0,1971.842 -4561,5654,10278,-9,10277,10276,3,1,1,27,2,0,0,0,1,-9,2,1,0,0,3,7.9619961,7.5546856,0,3,0,0,0,-9,0,-926.3728,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,35,0,15,1,1,-9,1,9.0456486,9.0456486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.639999,41.689999,-9,-9,5,1,1,0,0,2,4,1,634,-141885.83,0,0,339.57581 -4562,5655,10279,-9,10280,10282,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.6473,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,582.25,315070.25,0,0,4779.6978 -4562,5655,10280,10282,-9,-9,1,1,0,44,1,0,2,0,1,-9,1,1,0,0,4,7.9630694,8.0859241,0,2,0,-9,14,0,0,-94.294128,0,0,1,44,2,3,1,1,1,2019,1,2,10,1,14,14,15,1,0,1,0,20.413929,20.413929,0,0,0,0,0,0,0,0,1,1,0,7.0216846,0,0,0,56.009998,51.369999,24.889999,58.93,6,1,1,0,0,6,5,1,582.25,315070.25,0,0,4779.6978 -4562,5655,10281,-9,10280,10282,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.771,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,582.25,315070.25,0,0,4779.6978 -4562,5655,10282,10280,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,3,8.1956005,8.808404,7.9766455,2,0,-9,13,0,0,-45.173828,0,0,0,44,1,4,1,2,2,2019,1,1,21,8,80,70,15,1,1,1,0,6.0149183,6.0149183,0,0,0,0,0,0,0,0,1,1,0,0,8.1925631,0,0,24.889999,58.93,56.009998,51.369999,3,1,1,0,1,6,5,1,582.25,315070.25,0,0,4779.6978 -4563,5656,10283,10284,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,4.9447846,5.2082653,1,0,-9,6,0,-2,-115.08762,0,0,0,80,1,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9234562,4.9403753,4.7859998,1,50.220001,32.049999,56.349998,24.700001,6,1,1,0,0,9,4,1,750.5,1328864,0,0,9060.8135 -4563,5656,10284,10283,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,0,2,0,8.9298611,8.9046268,1,0,-9,6,0,2,23.23386,0,0,0,78,3,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,7.9574609,0,0,0,0,0,1,1,0,7.5558844,8.8492575,0,0,56.349998,24.700001,50.220001,32.049999,6,1,1,0,0,9,4,1,750.5,1328864,0,0,9060.8135 -4564,5657,10285,10286,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,3,8.9592848,9.2123156,0,1,0,-9,3,0,1,-109.74686,0,0,1,36,1,3,1,1,2,2019,1,2,11,3,42,48,15,1,0,1,0,22.532995,22.532995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.880001,56.349998,57.330002,53.459999,5,4,2,0,0,8,5,1,149.5,-91629.297,0,0,4292.3169 -4564,5657,10286,10285,-9,-9,2,1,1,36,1,0,0,0,1,-9,2,1,0,0,3,7.5916438,7.805171,0,1,0,-9,3,0,-1,-7.0240145,0,0,0,37,1,3,1,-9,-9,2019,1,1,7,0,50,60,15,1,0,1,0,4.9599142,4.9599142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,41.880001,56.349998,5,3,4,0,0,8,5,1,149.5,-91629.297,0,0,4292.3169 -4565,5658,10287,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,0,4,9.1411238,8.9511557,0,3,0,0,0,-9,0,-1018.2448,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,39,38,15,1,0,-9,0,27.906731,27.906731,0,0,0,0,0,0,0,0,0,0,0,3.6700211,0,0,0,46.349998,58.720001,-9,-9,6,1,1,0,0,7,5,1,512,438605.81,0,0,3122.0117 -4566,5659,10288,10289,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,3,8.0244656,7.9477673,0,1,0,-9,36,0,4,-69.775024,0,0,0,52,2,3,1,3,3,2019,1,1,11,2,40,50,15,1,0,1,0,11.37791,11.37791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.240002,56.130001,45.73,57.57,1,3,4,0,0,9,5,0,409,317805.91,0,0,2781.197 -4566,5659,10289,10288,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.2382841,8.2067099,0,1,0,-9,34,0,-4,-41.497242,0,0,0,56,3,3,1,2,3,2019,1,2,9,0,60,20,15,1,0,1,0,7.2217755,7.2217755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,37.240002,56.130001,6,3,4,0,0,9,5,0,409,317805.91,0,0,2781.197 -4566,5660,10290,-9,10289,10288,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,8.2290506,8.2460651,0,3,0,0,0,-9,0,-1014.0671,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,38,38,15,1,0,-9,1,10.403934,10.403934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.810001,52.330002,-9,-9,5,3,4,0,0,9,4,0,1731,49374.246,0,0,563.73926 -4566,5661,10291,-9,10289,10288,4,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,8.2933378,8.047225,0,3,0,0,0,-9,0,-997.29041,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,3,37,45,15,1,0,-9,1,10.168863,10.168863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.200001,-9,-9,7,3,4,0,0,9,4,0,490,-174079.2,0,0,2758.6931 -4567,5662,10292,-9,-9,-9,1,1,1,54,3,0,1,0,2,-9,2,1,0,0,4,8.1406193,8.5826788,0,4,0,-9,0,1,0,-964.93622,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,35,40,15,1,0,-9,0,12.055063,12.055063,0,0,0,0,0,0,0,0,1,1,0,3.1383338,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,4,1,453,-85739.508,0,0,1290.1451 -4568,5663,10293,10294,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.186779,7.9914365,0,1,0,-9,34,0,1,-17.940704,0,0,0,57,2,4,1,-9,2,2019,1,2,14,2,30,38,15,1,0,1,0,9.8606119,9.8606119,0,0,0,0,0,0,0,2,0,0,0,4.3649669,0,0,3,43.040001,50.369999,60.529999,42.470001,5,1,1,0,0,7,4,1,2490,222609.28,0,0,1656.2651 -4568,5663,10294,10293,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,0,4,7.9063849,7.804606,0,1,0,-9,34,0,-1,126.23602,0,0,0,58,2,4,1,2,2,2019,1,1,9,0,45,50,15,1,0,1,0,6.6538854,6.6538854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.529999,42.470001,43.040001,50.369999,6,1,1,0,0,7,4,1,2490,222609.28,0,0,1656.2651 -4569,5664,10295,10296,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,0,5,9.5322475,9.2084599,0,1,0,-9,20,-9,2,87.077156,-9,0,0,54,2,4,1,-9,2,2019,1,1,8,0,40,0,15,1,0,1,0,36.454472,36.454472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.439999,58.799999,51.77,58.57,6,1,1,0,0,2,5,1,378,745988.13,0,0,4756.0518 -4569,5664,10296,10295,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,0,4,7.6071701,7.9168024,0,1,0,-9,20,-9,-2,64.601067,-9,0,0,56,1,5,1,2,2,2019,1,2,6,1,8,0,15,1,0,1,0,28.549393,28.549393,0,0,0,0,0,0,0,0,0,0,0,5.4207001,0,0,0,51.77,58.57,45.439999,58.799999,6,1,1,0,0,2,5,1,378,745988.13,0,0,4756.0518 -4570,5665,10297,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,8.2500877,8.148735,0,3,0,0,0,-9,0,-1097.8666,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,37,15,1,0,-9,0,14.89692,14.89692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.18,54.77,-9,-9,6,4,2,0,0,8,4,0,364,-23478.58,0,0,1316.8884 -4571,5666,10298,10299,-9,-9,1,1,1,80,1,0,0,0,2,-9,2,1,0,1,3,6.1466618,6.7188911,5.170361,1,0,-9,10,0,3,-22.777565,0,0,0,77,2,4,3,3,3,2019,2,2,12,0,4,10,15,1,0,4,0,13.602114,13.602114,1,0,10.198696,0,0,0,0,0,1,1,0,5.131381,5.160809,0,0,37.75,36.330002,49.98,55.330002,6,1,1,0,0,11,3,1,213.5,721823.69,0,0,2344.1199 -4571,5666,10299,10298,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.0053821,7.2522998,1,0,-9,10,0,-3,130.39867,0,0,0,80,2,3,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5550115,7.2182298,1.1615114,1,49.98,55.330002,37.75,36.330002,6,1,1,0,0,11,3,1,213.5,721823.69,0,0,2344.1199 -4572,5667,10300,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,3,0,5.7808719,5.8788481,3,0,-9,0,1,0,-1030.8208,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4220042,5.9724278,0,0,54,46,-9,-9,6,1,1,0,0,13,2,1,418,185156.81,0,0,430.79846 -4573,5668,10301,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,0,3,8.3733006,8.7352552,0,3,0,0,0,-9,0,-968.92529,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,0,15,1,0,-9,0,13.176999,13.176999,0,0,0,0,0,0,0,0,0,0,0,5.2309394,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,11,5,1,419,127053.83,0,0,834.64612 -4574,5669,10302,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,4,0,7.7474031,7.9426122,3,0,0,0,-9,0,-1002.6727,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4945347,7.7335839,0,0,35.630001,62.189999,-9,-9,5,1,1,0,0,9,3,1,351,484647.22,0,0,1894.5123 -4574,5670,10303,-9,-9,10302,2,1,1,39,2,0,0,0,1,-9,1,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1006.909,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7963865,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,1,1,184,99211.32,0,0,421.16235 -4575,5671,10304,10305,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,5,0,9.4950075,9.2001057,1,0,-9,50,0,2,2.330327,0,0,0,68,3,5,3,2,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7821603,9.5120687,0,0,57.060001,57.759998,57.060001,57.759998,7,1,1,0,0,7,5,1,957,772138.13,0,0,6144.8896 -4575,5671,10305,10304,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,6,0,-2,47.683609,0,0,0,70,3,5,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3977919,0,0,0,57.060001,57.759998,57.060001,57.759998,7,1,1,0,0,7,5,1,957,772138.13,0,0,6144.8896 -4576,5672,10306,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,0,4,6.7112455,7.2173681,6.2874451,3,0,0,0,-9,0,-1096.728,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,6,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1534138,6.6512451,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,2,0,891,367256.69,0,0,449.78726 -4577,5673,10307,10308,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,0,4,9.020668,8.7480984,0,2,0,-9,7,0,4,-12.380875,0,0,0,33,1,4,1,2,2,2019,1,2,7,0,38,37,15,1,0,1,0,23.591124,23.591124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,46.98,59.349998,6,1,1,0,0,9,5,1,1032.6666,297839.28,0,0,3262.2563 -4577,5673,10308,10307,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,4,8.3218775,8.1231833,0,2,0,-9,7,0,-4,28.871746,0,0,1,37,1,4,1,-9,-9,2019,1,1,9,0,26,0,15,1,0,1,0,17.175941,17.175941,0,0,0,0,0,0,0,0,1,1,0,4.7895651,0,0,0,46.98,59.349998,54.200001,57.490002,6,1,1,0,0,9,5,1,1032.6666,297839.28,0,0,3262.2563 -4577,5673,10309,-9,10308,10307,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-935.50476,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,1032.6666,297839.28,0,0,3262.2563 -4578,5674,10310,-9,-9,-9,2,1,1,65,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,-9,0,1,0,-1006.2575,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.869999,36.259998,-9,-9,6,1,1,0,0,2,1,1,299,-198159.56,0,0,0 -4579,5675,10311,10312,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.6071653,8.5524921,0,2,0,-9,6,0,0,52.310101,0,0,0,47,3,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,18.382925,18.382925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,57.900002,22.030001,6,1,1,0,0,7,4,1,802.66669,188758.69,0,0,2794.2686 -4579,5675,10312,10311,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,0,3,7.1858258,7.5892553,0,2,0,-9,23,0,0,-18.92811,0,0,0,47,2,4,1,2,2,2019,1,2,13,3,22,20,15,1,0,1,0,8.0299711,8.0299711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.900002,22.030001,53,55,4,1,1,0,0,7,4,1,802.66669,188758.69,0,0,2794.2686 -4579,5675,10313,-9,10312,10311,4,1,1,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1061.4434,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.849998,45.169998,-9,-9,3,1,1,0,0,7,4,1,802.66669,188758.69,0,0,2794.2686 -4579,5676,10314,-9,10312,10311,3,1,0,19,2,0,1,0,2,1,2,1,0,0,3,7.8335199,8.0653496,0,3,0,0,0,-9,0,-902.21442,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,38,0,15,1,0,-9,1,8.2500458,8.2500458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.219999,61.830002,-9,-9,5,1,1,0,0,7,3,1,1129,-47673.469,0,0,1526.098 -4580,5677,10315,10316,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,8.3034239,8.4792786,0,1,0,-9,26,0,7,-53.497696,0,0,0,55,2,4,3,3,3,2019,2,1,11,0,39,30,15,1,0,4,0,13.133951,13.133951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,54.790001,55.860001,6,1,1,0,0,2,4,1,465,126750.59,0,0,2425.2698 -4580,5677,10316,10315,-9,-9,1,1,0,55,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,27,0,-7,22.115229,0,0,0,62,3,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1727319,0,0,0,54.790001,55.860001,54,53,6,1,1,0,0,2,4,1,465,126750.59,0,0,2425.2698 -4580,5678,10317,-9,10316,10315,3,1,1,28,2,0,0,0,2,-9,2,1,0,0,3,8.0883827,7.804307,0,3,0,0,0,-9,0,-1066.3685,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,41,40,15,1,0,-9,1,9.2529106,9.2529106,0,0,0,0,0,0,0,0,0,0,0,1.6790724,0,0,0,49.09,54.619999,-9,-9,5,1,1,0,0,2,4,1,352,-3928.0994,0,0,405.90869 -4580,5679,10318,-9,10316,10315,4,1,1,20,2,0,0,1,2,0,7,2,0,0,3,5.9520731,5.9170008,0,3,0,0,0,-9,0,-940.28625,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3919259,0,0,0,45,55.119999,-9,-9,6,1,1,0,0,2,2,1,366,33886.203,0,0,-532.97205 -4581,5680,10319,10320,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,0,5,9.0813389,8.5752859,0,1,0,-9,27,0,-5,-14.562773,0,0,0,52,2,4,1,3,3,2019,1,1,12,3,37,41,15,1,0,1,0,19.160116,19.160116,0,0,0,0,0,0,0,0,0,0,0,3.2359848,0,0,0,28.299999,65.669998,50.060001,55.279999,6,1,1,0,0,2,5,1,444.5,921380.38,0,0,3540.5356 -4581,5680,10320,10319,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,7.5752115,7.6456132,0,1,0,-9,27,0,5,-94.314499,0,0,0,47,1,5,1,2,3,2019,1,2,13,3,40,40,15,1,0,1,0,4.9634342,4.9634342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.060001,55.279999,28.299999,65.669998,5,1,1,0,0,2,5,1,444.5,921380.38,0,0,3540.5356 -4581,5681,10321,-9,10319,10320,3,1,0,18,2,0,0,0,2,1,2,1,0,0,4,7.811193,7.6308432,0,3,0,0,0,-9,0,-1022.5765,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,3,0,37,0,15,1,0,-9,1,6.851851,6.851851,0,0,0,0,0,0,0,0,0,0,0,2.1307054,0,0,0,56.470001,46.82,-9,-9,2,1,1,0,0,2,3,1,68,122159.59,0,0,809.27704 -4582,5682,10322,10324,-9,-9,2,1,1,37,1,0,4,0,1,-9,2,1,0,0,3,8.3585806,8.202527,5.4215078,2,0,-9,12,0,-6,-58.985451,0,0,0,43,2,3,1,1,2,2019,1,1,11,1,37,38,15,1,0,1,0,13.282897,13.282897,0,0,0,0,0,0,0,0,1,1,0,5.968348,0,0,0,45.689999,53.27,50.18,52.619999,4,1,1,0,0,6,4,1,582.5,189775.75,0,0,2914.396 -4582,5682,10323,-9,10324,10322,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.03,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,582.5,189775.75,0,0,2914.396 -4582,5682,10324,10322,-9,-9,1,1,0,43,1,0,4,0,2,-9,2,1,0,0,3,8.0035696,8.0576239,0,2,0,-9,12,0,6,28.60037,0,0,1,37,1,3,1,2,2,2019,1,2,8,0,44,37,15,1,0,1,0,11.884596,11.884596,0,0,0,0,0,0,0,0,1,1,0,1.3445734,0,0,0,50.18,52.619999,45.689999,53.27,5,1,1,0,0,6,4,1,582.5,189775.75,0,0,2914.396 -4582,5682,10325,-9,10324,10322,3,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.5932,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,582.5,189775.75,0,0,2914.396 -4582,5682,10326,-9,10324,10322,6,1,0,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.8813,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,582.5,189775.75,0,0,2914.396 -4582,5682,10327,-9,10324,10322,4,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.1187,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,582.5,189775.75,0,0,2914.396 -4583,5683,10328,-9,-9,-9,1,1,1,95,3,0,0,0,3,-9,4,3,0,1,4,0,6.501452,6.5536904,3,0,0,0,-9,0,-1033.6481,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,6.0140877,0,0,0,0,16.487144,0,1,1,0,3.9009135,6.3029857,0,0,37.200001,47.720001,-9,-9,5,1,1,0,0,4,2,1,242,327316.5,0,0,2602.4966 -4584,5684,10329,10330,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.2707353,6.878839,1,0,-9,7,0,-6,-20.582747,0,0,0,68,2,4,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1397219,6.981288,0,0,49,48,60.119999,54.799999,4,1,1,0,0,11,2,1,621,996479.88,0,0,2855.5103 -4584,5684,10330,10329,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,5.3020086,5.1967378,1,0,-9,7,0,6,25.505365,0,0,0,62,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.64746,5.3837762,0,0,60.119999,54.799999,49,48,6,1,1,0,0,11,2,1,621,996479.88,0,0,2855.5103 -4585,5685,10331,-9,-9,-9,1,1,0,30,2,1,3,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-939.83807,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.09,56.740002,-9,-9,2,1,1,0,0,13,1,0,1100.5,-5982.7227,0,0,1604.2131 -4585,5685,10332,-9,10331,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-941.13544,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,1100.5,-5982.7227,0,0,1604.2131 -4585,5685,10333,-9,10331,-9,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-853.26025,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,1100.5,-5982.7227,0,0,1604.2131 -4585,5685,10334,-9,10331,-9,2,1,0,10,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1029.6888,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,13,1,0,1100.5,-5982.7227,0,0,1604.2131 -4586,5686,10335,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,8.3814735,8.1591921,0,3,0,0,0,-9,0,-917.49762,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,42,15,1,0,-9,1,14.654493,14.654493,0,0,0,0,0,0,0,0,0,0,0,4.7240591,0,0,0,48.07,37.470001,-9,-9,4,1,1,0,0,6,4,1,1817,114444.08,0,0,843.43927 -4587,5687,10336,-9,10338,10339,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.87537,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,719.75,157508.67,0,0,5490.7339 -4587,5687,10337,-9,10338,10339,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.9495,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,5,1,719.75,157508.67,0,0,5490.7339 -4587,5687,10338,10339,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,8.8250074,8.9863949,0,2,0,-9,13,0,-1,12.22629,0,0,1,42,2,4,1,-9,-9,2019,1,2,6,0,35,30,15,1,0,1,0,23.757753,23.757753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,51,56,6,1,1,0,0,7,5,1,719.75,157508.67,0,0,5490.7339 -4587,5687,10339,10338,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,9.0083704,9.1268177,0,2,0,-9,7,0,1,-55.962437,0,0,0,41,2,5,1,-9,-9,2019,1,1,9,1,35,35,15,1,0,1,0,31.050402,31.050402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.689999,57.470001,6,1,1,0,0,7,5,1,719.75,157508.67,0,0,5490.7339 -4588,5688,10340,-9,-9,-9,1,1,1,87,3,0,0,0,1,-9,4,3,0,1,3,0,6.8477139,6.7659578,3,0,0,0,-9,0,-1098.8856,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.80034512,6.9866967,0,0,58.09,32.73,-9,-9,4,1,1,0,0,9,2,1,127,347835.31,0,0,523.1366 -4589,5689,10341,10342,-9,-9,2,1,0,48,1,0,1,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,4,0,-7,0,0,0,0,55,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,46,39,7,1,1,1,0,1,1,0,1935,109983.37,0,0,1243.905 -4589,5689,10342,10341,-9,-9,1,1,1,55,1,0,1,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,4,0,7,0,0,0,0,48,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,62.66,52.400002,7,1,1,0,0,1,1,0,1935,109983.37,0,0,1243.905 -4589,5689,10343,-9,10341,-9,5,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.99109,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,1,1,0,1935,109983.37,0,0,1243.905 -4589,5690,10344,-9,10341,-9,3,1,0,22,2,0,1,0,2,-9,2,1,0,0,3,6.4145627,6.2051473,0,3,0,0,0,-9,0,-998.59344,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,20,0,15,1,0,-9,1,4.6265049,4.6265049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,1,2,0,332,-118431.38,0,0,-697.63538 -4589,5691,10345,-9,10341,-9,4,1,0,19,2,0,1,0,2,1,2,1,0,0,4,7.6710863,7.7805595,0,3,0,0,0,-9,0,-948.49432,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,101,0,15,1,0,-9,1,2.3955634,2.3955634,0,0,0,0,0,0,0,25,1,1,0,6.6972442,0,40.683781,3,49.27,56.950001,-9,-9,6,1,1,0,0,1,3,0,3822,-53312.66,0,0,249.08574 -4590,5692,10346,10348,-9,-9,2,1,0,42,1,1,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-2,-38.039761,0,0,1,44,1,4,1,2,2,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,41.970001,56.110001,5,1,1,0,1,1,2,0,517.83331,192789.25,0,0,2421.3472 -4590,5692,10347,-9,10346,10348,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.65234,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,2,0,517.83331,192789.25,0,0,2421.3472 -4590,5692,10348,10346,-9,-9,1,1,1,44,1,1,4,0,1,-9,2,1,0,0,4,7.9751902,7.6810136,0,2,0,-9,24,0,2,117.93919,0,0,0,42,2,3,3,2,2,2019,2,2,19,6,45,44,15,1,1,3,0,7.0024042,7.0024042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.970001,56.110001,46.080002,57.200001,2,1,1,0,1,1,2,0,517.83331,192789.25,0,0,2421.3472 -4590,5692,10349,-9,10346,10348,3,1,1,14,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.9777,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,2,0,517.83331,192789.25,0,0,2421.3472 -4590,5692,10350,-9,10346,10348,4,1,0,12,2,1,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1042.098,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,1,2,0,517.83331,192789.25,0,0,2421.3472 -4590,5692,10351,-9,10346,10348,5,1,1,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.5388,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,2,0,517.83331,192789.25,0,0,2421.3472 -4591,5693,10352,-9,-9,-9,2,1,1,37,2,0,0,0,2,-9,97,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1075.8699,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,4,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,18.392006,3,48.93,50.549999,-9,-9,4,2,3,0,0,6,1,1,681,73577.719,0,0,493.9772 -4591,5694,10353,-9,-9,-9,3,1,1,55,2,0,0,0,2,-9,6,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-942.1958,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.55707,3,57.330002,53.459999,-9,-9,6,3,4,0,0,6,1,1,4234,-200807.02,0,0,362.03467 -4591,5695,10354,-9,-9,-9,5,1,0,42,2,0,0,0,2,-9,2,1,0,0,3,8.5824623,8.5743914,0,3,0,-9,0,-9,0,-925.72516,-9,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,17,5,39,0,15,1,1,-9,1,16.516958,16.516958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.09,54.970001,-9,-9,2,3,4,0,1,6,5,1,947,-205190.53,0,0,2670.5371 -4592,5696,10355,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,0,4,8.5915442,8.4581175,0,3,0,0,0,-9,0,-836.25433,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,43,35,15,1,0,-9,0,15.962134,15.962134,0,0,0,0,0,0,0,0,1,1,0,3.4117265,0,0,0,55.759998,52.639999,-9,-9,5,1,1,0,0,4,5,1,393,188612.58,0,0,2173.2644 -4593,5697,10356,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1052.2808,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.7411957,3,43.990002,23.42,-9,-9,4,1,1,0,0,6,1,1,3864,127967.16,0,0,507.96506 -4593,5698,10357,-9,10356,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.1491413,8.0904913,0,3,0,0,0,-9,0,-995.8371,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,78,38,15,1,0,-9,1,3.7710083,3.7710083,0,0,0,0,0,0,0,2,1,1,0,1.8582721,0,0,3,53.220001,55.200001,-9,-9,5,1,1,0,0,6,4,1,655,-89732.922,0,0,1316.7181 -4593,5699,10358,-9,10356,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,0,4,6.1224356,6.0237336,0,3,0,0,0,-9,0,-835.52881,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,4,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5105217,0,0,0,46.73,57.009998,-9,-9,5,1,1,0,0,6,2,1,228,34458.766,0,0,319.44897 -4594,5700,10359,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,0,4,8.5660543,8.3258104,0,3,0,0,0,-9,0,-954.19354,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,36,49,15,1,0,-9,0,18.412458,18.412458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,2,5,1,372,379607.97,0,0,1895.0391 -4595,5701,10360,10361,-9,-9,1,1,1,65,1,0,0,0,1,-9,2,1,0,0,4,8.3078947,9.7777357,9.5557089,1,0,-9,39,0,-2,166.52461,0,0,0,67,1,3,3,2,2,2019,2,2,7,0,5,5,15,1,0,4,0,92.309624,92.309624,0,0,0,0,0,0,0,0,1,1,0,10.158786,9.7382641,0,0,49.970001,56.66,30.34,50.860001,6,1,1,0,0,9,5,0,1095.5,3585895.5,0,0,15179.137 -4595,5701,10361,10360,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,38,0,2,-86.954086,0,0,0,65,1,4,1,3,2,2019,3,1,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9215944,0,0,0,30.34,50.860001,49.970001,56.66,5,2,3,0,0,9,5,0,1095.5,3585895.5,0,0,15179.137 -4596,5702,10362,10363,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,0,3,7.8435302,8.0056505,0,2,0,-9,19,0,-4,68.120544,0,0,0,48,1,2,1,2,1,2019,1,2,9,1,37,40,15,1,0,1,0,9.8924389,9.8924389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.18,41.360001,43.860001,45.119999,5,1,1,0,1,1,5,0,629.66669,304736.69,0,0,4181.999 -4596,5702,10363,10362,-9,-9,2,1,0,48,1,0,1,0,1,-9,1,1,0,0,2,8.7276163,8.256135,0,2,0,-9,10,0,4,40.406982,0,0,0,44,1,3,1,1,1,2019,1,1,14,4,12,55,15,1,1,1,0,63.381096,63.381096,0,0,0,0,0,0,0,0,1,1,0,.21181776,0,0,0,43.860001,45.119999,51.18,41.360001,3,1,1,0,1,1,5,0,629.66669,304736.69,0,0,4181.999 -4596,5702,10364,-9,10363,10362,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.597,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,5,0,629.66669,304736.69,0,0,4181.999 -4597,5703,10365,10366,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.6232891,8.4974184,0,1,0,-9,33,0,-4,139.79385,0,0,0,54,2,4,1,2,2,2019,1,2,14,3,41,43,15,1,0,1,0,15.985023,15.985023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.709999,62.41,53,54,5,1,1,0,0,10,5,1,1015.5,1168328.1,0,0,4125.3413 -4597,5703,10366,10365,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.282649,8.0495567,0,1,0,-9,33,0,4,-5.3235817,-9,0,0,50,1,4,1,3,2,2019,1,1,9,1,38,0,15,1,0,1,0,11.194805,11.194805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,40.709999,62.41,6,1,1,0,0,10,5,1,1015.5,1168328.1,0,0,4125.3413 -4597,5704,10367,-9,10365,10366,3,1,0,28,2,0,0,0,2,-9,2,1,0,0,3,8.3215885,8.4122458,0,3,0,0,0,-9,0,-1087.791,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,45,15,1,0,-9,1,10.597795,10.597795,0,0,0,0,0,0,0,0,1,1,0,3.383517,0,0,0,56.32,27.1,-9,-9,6,1,1,0,0,10,4,1,270,-146202.63,0,0,1445.668 -4598,5705,10368,10369,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,7.8533955,7.8615422,0,2,0,-9,29,0,-2,1.5255609,-9,0,0,51,1,3,1,2,2,2019,1,1,12,2,32,0,15,1,0,1,0,9.7816486,9.7816486,0,0,0,0,0,0,0,14.5,1,1,0,1.3032153,0,6.7883692,3,44.189999,52.470001,32.709999,59.389999,6,1,1,0,1,2,5,1,804.5,715676.88,0,0,3410.0642 -4598,5705,10369,10368,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,8.9898109,8.8793631,0,2,0,-9,29,0,2,-53.882099,-9,0,0,49,2,3,1,3,3,2019,1,2,11,0,47,0,15,1,0,1,0,18.128607,18.128607,0,0,0,0,0,0,0,14.5,1,1,0,1.462688,0,20.405556,3,32.709999,59.389999,44.189999,52.470001,3,1,1,0,0,2,5,1,804.5,715676.88,0,0,3410.0642 -4599,5706,10370,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,0,3,9.8358545,9.5948906,0,3,0,0,0,-9,0,-953.59985,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,38,15,1,0,-9,0,49.632267,49.632267,0,0,0,0,0,0,0,0,0,0,0,4.3613005,0,0,0,59.32,46.98,-9,-9,6,1,1,0,0,11,5,1,1116,522084.47,0,0,8475.6475 -4600,5707,10371,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,4,0,6.925632,7.1638923,3,0,0,0,-9,0,-1034.6022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1069846,6.6852303,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,2,1,238,573241.38,0,0,1041.6145 -4601,5708,10372,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,4,7.0961742,7.4913363,0,3,0,0,0,-9,0,-1089.2582,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,20,20,15,1,1,-9,0,6.8588791,6.8588791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.23,61.310001,-9,-9,3,1,1,0,0,2,2,1,59,616011,0,0,454.12958 -4601,5709,10373,-9,10372,-9,2,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.2235537,8.1407652,0,3,0,0,0,-9,0,-950.60376,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,38,35,15,1,0,-9,1,8.8738251,8.8738251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,2,3,1,498,113986.98,0,0,-75.740143 -4602,5710,10374,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,4,0,7.5300336,7.9323239,3,0,0,0,-9,0,-913.7915,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3918929,7.7509522,0,0,61.119999,51.57,-9,-9,6,1,1,0,0,5,3,1,440,598335.19,0,0,2095.6946 -4603,5711,10375,10376,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,7.9235649,8.1199503,0,1,0,-9,41,0,1,-98.874969,0,0,0,58,2,5,3,3,3,2019,2,2,6,0,50,60,15,1,0,4,0,8.8214016,8.8214016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.5,48.259998,62.389999,56.709999,6,1,1,0,0,10,3,1,2063,75559.336,0,0,2166.6582 -4603,5711,10376,10375,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,41,0,-1,-157.87321,0,0,0,59,2,3,1,2,3,2019,3,1,1,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.2446804,0,0,3,62.389999,56.709999,47.5,48.259998,7,1,1,0,0,10,3,1,2063,75559.336,0,0,2166.6582 -4604,5712,10377,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,3,7.9025474,7.6604176,0,3,0,0,0,-9,0,-1108.931,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,0,6.4740577,6.4740577,0,0,0,0,0,0,0,0,1,1,0,4.485528,0,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,12,3,1,352,23629.045,0,0,447.29517 -4605,5713,10378,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,0,3,7.2167192,7.3454447,0,3,0,0,0,-9,0,-1148.1555,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,45,38,15,1,0,-9,0,4.2277384,4.2277384,0,0,0,0,0,0,0,7,1,1,0,0,0,9.7970324,3,46.330002,50.400002,-9,-9,4,1,1,0,0,6,3,1,160,86963.906,0,0,1472.6113 -4606,5714,10379,10380,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,1,0,5.7505035,5.5876532,1,0,-9,8,0,3,121.08439,0,0,0,55,2,2,3,2,3,2019,4,1,25,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3205638,5.6745415,0,1,39.779999,30.969999,44.900002,25.52,3,1,1,0,0,12,2,0,296.5,194239.69,0,0,2543.4771 -4606,5714,10380,10379,-9,-9,1,1,0,55,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,8,0,-3,113.98222,0,0,0,58,2,1,3,2,3,2019,4,2,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.28035,1,44.900002,25.52,39.779999,30.969999,2,1,1,0,0,12,2,0,296.5,194239.69,0,0,2543.4771 -4607,5715,10381,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1006.2621,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,35.779999,-9,-9,7,1,1,0,0,13,1,0,775,262535,0,0,639.54236 -4607,5716,10382,-9,10381,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.9389119,8.0655794,0,3,0,0,0,-9,0,-990.59467,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,41,47,15,1,0,-9,1,6.2878098,6.2878098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.23,54.419998,-9,-9,6,1,1,0,0,13,3,0,420,-170527.52,0,0,685.31659 -4608,5717,10383,10385,-9,-9,1,1,1,59,1,0,1,0,2,-9,2,1,0,0,4,8.6254444,8.6069374,0,2,0,-9,7,0,22,56.155651,0,0,0,37,2,1,1,3,3,2019,1,2,8,0,39,38,15,1,0,1,0,16.298407,16.298407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,32.720001,20.43,6,1,1,0,0,6,4,1,751.33331,1111747.1,0,0,3027.4854 -4608,5717,10384,-9,10385,10383,3,1,0,16,2,0,1,1,-9,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1010.8537,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.28340092,3,37.869999,54.389999,-9,-9,3,1,1,0,1,6,4,1,751.33331,1111747.1,0,0,3027.4854 -4608,5717,10385,10383,-9,-9,2,1,0,37,1,0,1,0,2,-9,1,1,0,1,1,5.6719761,5.6513295,0,2,0,-9,7,0,-22,12.329972,0,0,1,59,2,4,1,-9,-9,2019,1,1,26,8,12,10,15,1,1,1,0,2.7068915,2.7068915,0,0,0,0,0,0,0,7,1,1,0,0,0,2.2076733,3,32.720001,20.43,57.759998,54.509998,1,1,1,0,0,6,4,1,751.33331,1111747.1,0,0,3027.4854 -4609,5718,10386,10387,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,0,5,8.6027594,8.6109562,0,2,0,-9,4,0,-1,-102.13097,0,0,1,37,2,4,1,-9,-9,2019,1,1,9,0,30,38,15,1,0,1,0,18.982237,18.982237,0,0,0,0,0,0,0,0,1,1,0,7.1061411,0,0,0,51.139999,60.450001,51.830002,57.200001,6,1,1,0,0,11,5,1,497,172898.56,0,0,3518.1108 -4609,5718,10387,10386,-9,-9,1,1,1,37,1,1,1,0,2,-9,2,1,0,0,4,8.2495098,8.6415834,0,2,0,-9,4,0,1,59.637215,0,0,0,36,1,5,1,2,2,2019,1,2,14,3,75,70,15,1,0,1,0,5.8118873,5.8118873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.139999,60.450001,5,1,1,0,0,11,5,1,497,172898.56,0,0,3518.1108 -4609,5718,10388,-9,10386,10387,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.7339,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,497,172898.56,0,0,3518.1108 -4610,5719,10389,10390,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,1,1,0,7.4630599,7.1112399,1,0,-9,9,0,6,-51.011715,0,0,0,73,3,2,3,2,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,28.707058,0,0,0,0,5.48,1,1,0,0,7.0456338,.3512117,1,39.23,20.18,61.040001,26.18,6,1,1,0,0,11,2,1,657,533535.75,0,0,1692.1279 -4610,5719,10390,10389,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,3.553273,3.480989,1,0,-9,9,0,-6,86.415833,0,0,0,79,3,1,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,5.6055231,0,0,0,0,17.747637,71.5,1,1,0,0,3.2744906,69.689659,1,61.040001,26.18,39.23,20.18,6,1,1,0,0,11,2,1,657,533535.75,0,0,1692.1279 -4611,5720,10391,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,6.8108573,7.0423155,3,0,0,0,-9,0,-926.26514,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9812529,6.7100515,0,0,50.029999,47.419998,-9,-9,6,1,1,0,0,10,2,1,530,-165156.73,0,0,362.67361 -4612,5721,10392,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,1,1,0,0,4,8.7305794,8.374752,0,3,0,0,0,-9,0,-904.11902,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,0,15,1,0,-9,0,17.582607,17.582607,0,0,0,0,0,0,0,0,0,0,0,.69225836,0,0,0,39.439999,60.23,-9,-9,6,1,1,0,0,4,5,1,1197,346539.56,0,0,2210.5916 -4613,5722,10393,10394,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,3,8.1180305,8.4345474,0,1,0,-9,4,0,-2,0,0,1,1,26,2,3,1,2,-9,2019,1,2,13,1,55,55,15,1,0,1,0,7.5481067,7.5481067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.07,50.91,56.349998,51.16,6,1,1,0,0,9,4,0,978,32878.613,0,0,3127.8809 -4613,5722,10394,10393,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,3,8.3949623,8.2431889,0,1,0,-9,4,0,2,0,0,1,0,24,1,3,1,-9,-9,2019,1,1,9,0,47,46,15,1,0,1,0,10.167477,10.167477,0,0,0,0,0,0,0,0,0,0,0,2.5414305,0,0,0,56.349998,51.16,42.07,50.91,5,1,1,0,0,9,4,0,978,32878.613,0,0,3127.8809 -4614,5723,10395,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,0,3,7.7927551,7.8526092,0,3,0,0,0,-9,0,-869.77399,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,45,48,15,1,0,-9,0,5.9675789,5.9675789,0,0,0,0,0,0,0,0,0,0,0,.79053336,0,0,0,58.91,45.880001,-9,-9,6,3,4,0,0,2,3,1,643,402338.25,0,0,1792.844 -4615,5724,10396,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,4,0,6.4646096,6.002656,3,0,0,0,-9,0,-1003.0298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1037998,6.0120387,0,3,55.759998,49.939999,-9,-9,1,1,1,0,0,1,2,1,191,366381.94,0,0,290.39624 -4616,5725,10397,10399,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.8481312,7.9834161,0,2,0,-9,8,0,13,24.883957,0,0,1,29,2,3,1,2,2,2019,1,1,11,0,19,22,15,1,0,1,0,15.343244,15.343244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,43.709999,56.91,6,1,1,0,0,5,4,1,1165.75,103204.19,0,0,3122.0322 -4616,5725,10398,-9,10397,10399,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.36237,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,1165.75,103204.19,0,0,3122.0322 -4616,5725,10399,10397,-9,-9,1,1,1,29,1,0,2,0,2,-9,2,1,0,0,3,8.6192303,8.943552,0,2,0,-9,8,0,-13,15.369125,0,1,0,42,2,4,1,2,2,2019,1,2,12,1,37,40,15,1,0,1,0,15.253379,15.253379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,48.869999,58.549999,6,1,1,0,0,5,4,1,1165.75,103204.19,0,0,3122.0322 -4616,5725,10400,-9,10397,10399,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.4763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,1165.75,103204.19,0,0,3122.0322 -4617,5726,10401,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,4,0,6.4650102,6.4833531,3,0,0,0,-9,0,-1119.6661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94767046,6.5377984,0,0,52.48,52.75,-9,-9,6,1,1,0,0,12,2,1,1404,306993.41,0,0,577.44592 -4618,5727,10402,10404,-9,-9,2,1,0,23,1,1,1,0,2,-9,2,1,0,0,2,7.0664463,7.160871,0,2,0,-9,5,0,-6,46.328606,0,1,1,29,2,4,1,-9,-9,2019,1,1,25,9,34,29,15,1,1,1,0,5.5005555,5.5005555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.41,43.439999,48.759998,53.240002,5,1,1,0,0,4,4,0,530,99373.906,0,0,2343.9773 -4618,5727,10403,-9,10402,10404,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1058.8359,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,0,530,99373.906,0,0,2343.9773 -4618,5727,10404,10402,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,0,4,8.4722586,8.3885698,0,2,0,-9,5,0,6,-21.55014,0,1,0,23,2,2,1,3,3,2019,1,2,12,0,50,49,15,1,0,1,0,13.229172,13.229172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.759998,53.240002,27.41,43.439999,5,1,1,0,0,4,4,0,530,99373.906,0,0,2343.9773 -4619,5728,10405,-9,10406,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1094.6675,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,0,227,-8293.3994,0,0,1491.8241 -4619,5728,10406,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,0,5,6.8758278,7.1054788,0,4,0,0,0,-9,0,-1161.4225,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,18,20,15,1,0,-9,0,6.2818303,6.2818303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,2,2,0,227,-8293.3994,0,0,1491.8241 -4620,5729,10407,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,5,0,5.3096309,5.4201674,3,0,0,0,-9,0,-896.30695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4178085,0,0,49.360001,58.529999,-9,-9,6,1,1,0,1,13,2,1,182,420520.97,0,0,518.59509 -4621,5730,10408,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-975.28918,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,2.6833515,0,0,0,0,91.838913,2,1,1,0,3.4789324,0,6.646071,3,56.380001,25.59,-9,-9,5,1,1,0,0,2,1,1,370,0,0,0,1349.6609 -4622,5731,10409,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,1,1,0,0,4,7.9722753,8.8674917,8.5394268,3,0,0,0,-9,0,-891.31372,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,50,60,15,1,0,-9,0,6.1305647,6.1305647,0,0,0,0,0,0,0,0,1,1,0,8.82055,8.9092674,0,0,58.720001,51.290001,-9,-9,6,1,1,0,0,10,5,1,1857,772248.19,0,0,3982.4294 -4623,5732,10410,10411,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.3311872,7.1679549,0,1,0,-9,25,0,3,-22.501511,0,0,0,48,2,2,1,3,3,2019,1,2,11,0,33,23,15,1,0,1,0,6.5480838,6.5480838,0,0,0,0,0,0,0,0,0,0,0,2.995976,0,0,0,57.330002,53.459999,39.919998,46.880001,6,1,1,0,0,7,5,1,454.5,1228357,0,0,3405.1167 -4623,5732,10411,10410,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,2,8.8807516,8.8684921,0,1,0,-9,25,0,-3,-55.376114,0,0,0,51,2,3,1,2,-9,2019,1,1,22,10,53,48,15,1,1,1,0,17.506828,17.506828,0,0,0,0,0,0,0,0,0,0,0,2.9837644,0,0,0,39.919998,46.880001,57.330002,53.459999,4,1,1,0,0,7,5,1,454.5,1228357,0,0,3405.1167 -4624,5733,10412,-9,10414,10415,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.4856,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,4,1,690.25,353536.25,0,0,3331.8379 -4624,5733,10413,-9,10414,10415,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.1343,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,4,1,690.25,353536.25,0,0,3331.8379 -4624,5733,10414,10415,-9,-9,1,1,0,39,1,1,2,0,1,-9,2,1,0,0,2,0,0,0,2,0,-9,14,0,0,-113.79044,0,0,1,39,1,3,1,2,2,2019,1,2,29,10,0,38,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2045181,0,0,0,32.110001,51.150002,57.330002,53.459999,2,2,3,0,0,8,4,1,690.25,353536.25,0,0,3331.8379 -4624,5733,10415,10414,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,0,3,9.1940784,8.7415361,0,2,0,-9,14,0,0,52.74284,0,0,0,39,1,2,1,3,1,2019,1,1,8,0,35,37,15,1,0,1,0,27.357729,27.357729,0,0,0,0,0,0,0,2,1,1,0,0,0,3.2751067,3,57.330002,53.459999,32.110001,51.150002,2,2,3,0,0,8,4,1,690.25,353536.25,0,0,3331.8379 -4625,5734,10416,10417,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,-3,-172.23494,0,0,0,77,2,4,3,2,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8170006,0,0,0,58.299999,42.18,59.529999,56.439999,5,1,1,0,0,10,2,1,2707,731373.63,0,0,2149.0518 -4625,5734,10417,10416,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.2809849,7.5807357,1,0,-9,54,0,3,-81.593842,0,0,0,74,2,4,3,1,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3492248,7.04216,0,0,59.529999,56.439999,58.299999,42.18,7,1,1,0,0,10,2,1,2707,731373.63,0,0,2149.0518 -4626,5735,10418,10419,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,2,8.4652729,8.359663,0,1,0,-9,31,0,7,45.789085,0,0,0,50,2,3,1,2,2,2019,1,1,11,0,100,45,15,1,0,1,0,5.8021646,5.8021646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,48.860001,49.279999,46.240002,5,1,1,0,0,4,5,1,640.5,1377036.3,0,0,2629.3994 -4626,5735,10419,10418,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.0842562,7.9166684,0,1,0,-9,21,0,-7,-108.31153,0,0,0,57,2,2,1,3,2,2019,1,2,13,1,44,43,15,1,0,1,0,9.5614557,9.5614557,0,0,0,0,0,0,0,0,0,0,0,3.682951,0,0,0,49.279999,46.240002,50.27,48.860001,5,1,1,0,0,4,5,1,640.5,1377036.3,0,0,2629.3994 -4626,5736,10420,-9,10419,10418,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,7.8895373,8.1192312,0,3,0,0,0,-9,0,-1049.2604,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,42,15,1,0,-9,1,8.6302872,8.6302872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,4,4,1,125,0,0,0,950.03223 -4627,5737,10421,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,5,1,0,0,3,0,0,0,3,0,-9,0,0,0,-980.06165,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.099998,35.630001,-9,-9,6,1,1,0,1,9,1,0,184,242984.38,0,0,638.64221 -4628,5738,10422,-9,10424,10423,2,1,0,17,2,0,3,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1079.3392,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.64472,3,22.629999,51.830002,-9,-9,4,1,1,0,0,12,1,0,551.75,427245.5,0,0,3668.3564 -4628,5738,10423,10424,-9,-9,5,1,1,47,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,2,0,1,0,0,0,0,46,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.606937,3,55.830002,37.52,36.490002,50.869999,7,1,1,0,0,12,1,0,551.75,427245.5,0,0,3668.3564 -4628,5738,10424,10423,-9,-9,1,1,0,46,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,2,0,-1,0,0,0,0,47,2,3,3,3,3,2019,4,5,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.691647,3,36.490002,50.869999,55.830002,37.52,4,1,1,0,0,12,1,0,551.75,427245.5,0,0,3668.3564 -4628,5738,10425,-9,10424,10423,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.3193,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,0,551.75,427245.5,0,0,3668.3564 -4629,5739,10426,-9,-9,-9,1,1,0,54,3,0,1,0,2,-9,2,1,0,0,4,7.1080732,7.5611153,6.2747817,4,0,0,0,-9,0,-958.60883,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,46,23,15,1,0,-9,0,3.1255698,3.1255698,0,0,0,0,0,0,0,0,1,1,0,5.9132204,0,0,0,58.720001,51.290001,-9,-9,5,1,1,0,1,10,2,0,305.5,126269.64,0,0,1393.4684 -4629,5739,10427,-9,10426,-9,2,1,1,16,2,0,1,1,2,0,7,2,0,0,5,4.724194,5.0517387,0,4,0,0,0,-9,0,-953.6637,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.240002,58.02,-9,-9,7,1,1,0,0,10,2,0,305.5,126269.64,0,0,1393.4684 -4630,5740,10428,10429,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,7.4530253,7.6655393,0,1,0,-9,4,0,-3,-34.938248,-9,1,1,29,2,3,1,-9,-9,2019,1,1,15,3,37,0,15,1,0,1,0,7.5299325,7.5299325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.43,54.299999,43.59,59.639999,5,1,1,0,0,11,4,0,816.5,-101515.45,0,0,2750.7861 -4630,5740,10429,10428,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,0,3,8.2860384,7.8745937,0,1,0,-9,4,0,3,-13.491735,0,1,0,26,2,4,1,2,3,2019,1,2,10,1,39,37,15,1,0,1,0,10.131887,10.131887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,59.639999,43.43,54.299999,4,1,1,0,0,11,4,0,816.5,-101515.45,0,0,2750.7861 -4631,5741,10430,10432,-9,-9,2,1,0,47,1,1,2,0,1,-9,2,1,0,0,3,8.4002066,8.1638117,0,2,0,-9,9,0,7,-78.667793,0,0,0,40,1,2,1,2,2,2019,1,1,1,0,35,30,15,1,0,1,0,13.661613,13.661613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,35.380001,54.209999,6,1,1,0,0,9,5,1,573,659599.5,0,0,3408.7637 -4631,5741,10431,-9,10430,10432,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.4917,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,573,659599.5,0,0,3408.7637 -4631,5741,10432,10430,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,0,2,8.6757593,8.9393873,0,2,0,-9,9,0,-7,-22.785875,0,0,0,47,1,3,1,2,1,2019,1,2,10,0,38,39,15,1,0,1,0,19.83217,19.83217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.380001,54.209999,55.959999,49.93,6,1,1,0,0,9,5,1,573,659599.5,0,0,3408.7637 -4631,5741,10433,-9,10430,10432,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.5575,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,5,1,573,659599.5,0,0,3408.7637 -4632,5742,10434,10435,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,5.6676974,5.4200668,1,0,-9,57,0,5,-80.552063,0,0,0,75,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2177,5.7463336,0,0,61.189999,36.580002,57.16,56.150002,6,1,1,0,0,11,2,1,579,110443.45,0,0,2194.3457 -4632,5742,10435,10434,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,4.8464479,5.3643069,1,0,-9,57,0,-5,-8.2140026,0,0,0,80,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1562457,4.8763781,0,0,57.16,56.150002,61.189999,36.580002,7,1,1,0,0,11,2,1,579,110443.45,0,0,2194.3457 -4633,5743,10436,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.2539825,8.2047167,0,3,0,0,0,-9,0,-1019.139,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,40,40,15,1,1,-9,0,12.283132,12.283132,0,0,0,0,0,0,0,0,0,0,0,.065898821,0,0,0,27.809999,65.690002,-9,-9,3,1,1,0,0,6,4,0,2504,-18610.27,0,0,2196.9766 -4634,5744,10437,10440,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,8.8067865,9.1790495,0,2,0,-9,6,0,-1,71.443138,0,0,0,48,1,3,1,-9,-9,2019,1,1,11,3,36,38,15,1,0,1,0,23.231237,23.231237,0,0,0,0,0,0,0,0,1,1,0,.93546081,0,0,0,45.32,61.529999,51.02,52.220001,5,1,1,0,0,1,5,1,950.5,1138398.3,0,0,5085.7979 -4634,5744,10438,-9,10440,10437,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1096.2325,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,5,1,950.5,1138398.3,0,0,5085.7979 -4634,5744,10439,-9,10440,10437,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.8667,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,950.5,1138398.3,0,0,5085.7979 -4634,5744,10440,10437,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,0,3,8.9404335,8.7942753,0,2,0,-9,6,0,1,10.36428,0,0,0,47,1,4,1,2,1,2019,1,2,9,0,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.32437891,0,0,0,51.02,52.220001,45.32,61.529999,5,1,1,0,0,1,5,1,950.5,1138398.3,0,0,5085.7979 -4635,5745,10441,-9,-9,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-918.69739,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.110001,66.449997,-9,-9,3,4,2,0,0,8,1,0,404,44014.883,0,0,1054.7816 -4636,5746,10442,-9,10448,10446,8,1,1,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.0469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4636,5746,10443,-9,10448,-9,5,1,0,6,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.9057,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4636,5746,10444,-9,10448,-9,3,1,0,10,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.38422,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4636,5746,10445,-9,10448,-9,4,1,0,8,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.2457,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4636,5746,10446,10448,-9,-9,6,1,1,47,1,2,5,0,2,-9,2,1,0,0,4,7.7568593,8.38379,0,2,0,-9,4,0,7,-15.824412,0,0,0,40,2,4,3,-9,-9,2019,2,1,9,1,45,40,15,1,0,3,0,8.3686743,8.3686743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.16,56.150002,6,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4636,5746,10447,-9,10448,10446,7,1,0,2,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-890.2135,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4636,5746,10448,10446,-9,-9,1,1,0,40,1,2,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,-7,-130.17897,0,0,1,47,2,4,1,3,2,2019,3,6,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52,55,5,1,1,0,0,6,2,0,689.57141,584484.25,0,0,2928.4209 -4637,5747,10449,10450,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,1,104.59273,0,0,0,86,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0915074,0,0,1,56,44,54,44,6,1,1,0,0,5,2,1,1096,852772,0,0,1439.3743 -4637,5747,10450,10449,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,0,3,0,6.0997028,6.0901208,1,0,-9,6,0,-1,75.601006,0,0,0,87,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.853879,6.178905,0,0,54,44,56,44,6,1,1,0,0,5,2,1,1096,852772,0,0,1439.3743 -4637,5748,10451,-9,10450,10449,3,1,1,64,2,0,0,0,3,-9,6,3,0,1,3,0,6.3292851,6.3864927,3,0,0,0,-9,0,-1006.7473,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.8937466,6.6013322,65.216202,3,54.959999,53.169998,-9,-9,6,1,1,0,0,5,2,1,452,2335.125,0,0,907.24786 -4638,5749,10452,-9,10458,10454,7,1,0,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.28656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4638,5749,10453,-9,10458,-9,4,1,0,7,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.58789,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4638,5749,10454,10458,-9,-9,6,1,1,46,1,2,5,0,2,-9,2,1,0,0,4,7.9254861,7.3148122,0,2,0,-9,3,0,7,56.012451,-9,0,0,39,2,4,3,-9,-9,2019,2,1,9,1,40,0,15,1,0,3,0,7.3343258,7.3343258,0,0,0,0,0,0,0,0,1,0,1,4.763308,0,0,0,53,55,54.790001,55.860001,6,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4638,5749,10455,-9,10458,-9,3,1,0,9,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.9827,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4638,5749,10456,-9,10458,10454,8,1,1,0,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-997.87457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4638,5749,10457,-9,10458,-9,5,1,0,5,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.24921,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4638,5749,10458,10454,-9,-9,1,1,0,39,1,2,5,0,2,-9,6,3,0,0,4,0,6.299459,6.4055252,2,0,-9,3,0,-7,103.55066,0,0,1,46,2,4,1,3,2,2019,3,6,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.3455467,0,0,0,54.790001,55.860001,53,55,5,1,1,0,0,6,2,0,440,38738.836,0,0,3478.9565 -4639,5750,10459,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-952.60999,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,74.548798,3,28.25,35.09,-9,-9,1,1,1,1,1,8,1,0,172,24090.047,0,0,786.54974 -4639,5751,10460,-9,10459,-9,2,1,0,20,2,0,0,0,2,-9,1,1,0,0,5,7.2722449,7.2377357,0,3,0,0,0,-9,0,-1173.2345,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,45,40,15,1,0,-9,1,3.3945143,3.3945143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,7,1,1,0,0,8,3,0,523,-173371.81,0,0,817.82983 -4640,5752,10461,10462,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,5,7.6911216,7.6939578,0,1,0,-9,27,0,0,8.8753023,0,0,0,46,1,4,1,3,3,2019,1,2,6,0,36,32,15,1,0,1,0,7.5492134,7.5492134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,53,55,6,1,1,0,0,10,5,1,595.5,93218.953,0,0,3384.5112 -4640,5752,10462,10461,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,8.5862246,8.7796488,0,1,0,-9,27,0,0,44.548523,0,0,0,46,2,5,1,3,3,2019,1,1,9,1,60,70,15,1,0,1,0,12.160869,12.160869,0,0,0,0,0,0,0,0,0,0,0,2.6866891,0,0,0,53,55,57.060001,57.759998,6,1,1,0,0,10,5,1,595.5,93218.953,0,0,3384.5112 -4640,5753,10463,-9,10461,10462,3,1,0,18,2,0,0,0,2,1,2,1,0,0,4,7.9773836,7.8227329,0,3,0,0,0,-9,0,-953.12732,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,37,0,15,1,0,-9,1,10.286747,10.286747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,151,68801.453,0,0,1830.4026 -4641,5754,10464,10465,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,1,1,0,7.1956615,7.2920389,1,0,-9,8,0,2,18.124283,-9,0,0,82,3,3,3,3,2,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,6.3279643,7.3060741,20.169981,1,50.02,23.360001,33.720001,44.279999,3,1,1,0,0,11,2,0,360,638808.25,0,0,3076.2695 -4641,5754,10465,10464,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,3,0,6.216464,6.1461706,1,0,-9,8,0,-2,-18.649696,-9,0,0,84,3,1,3,3,3,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,1,0,6.4935551,0,0,0,0,0,1,1,0,5.4203062,5.8889728,0,0,33.720001,44.279999,50.02,23.360001,5,1,1,0,0,11,2,0,360,638808.25,0,0,3076.2695 -4642,5755,10466,10467,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.4573421,8.5805368,0,1,0,-9,6,0,-1,-51.860512,0,0,0,51,2,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,12.945871,12.945871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,49.040001,55.860001,6,4,1,0,0,4,4,1,256.5,684310.75,0,0,2930.8398 -4642,5755,10467,10466,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.7830362,7.2716746,0,1,0,-9,6,0,1,-58.644283,0,0,0,50,2,4,1,3,2,2019,1,2,11,0,28,26,15,1,0,1,0,7.5534697,7.5534697,0,0,0,0,0,0,0,7,0,0,0,0,0,14.735741,3,49.040001,55.860001,53,55,6,1,1,0,0,4,4,1,256.5,684310.75,0,0,2930.8398 -4643,5756,10468,-9,10469,10471,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-991.60419,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,13,5,1,542,910570.88,0,0,4755.6914 -4643,5756,10469,10471,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,0,4,8.6038008,8.7172937,0,2,0,-9,4,0,-2,127.04083,0,0,0,51,2,4,1,2,3,2019,1,1,11,0,43,50,15,1,0,1,0,13.83777,13.83777,0,0,0,0,0,0,0,0,1,1,0,4.2431498,0,0,0,58.389999,44.540001,48.849998,58.560001,6,1,1,0,0,13,5,1,542,910570.88,0,0,4755.6914 -4643,5756,10470,-9,10469,10471,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.9392,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,542,910570.88,0,0,4755.6914 -4643,5756,10471,10469,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,4,8.568574,8.5356503,0,2,0,-9,4,0,2,-119.73999,0,0,0,49,1,4,1,2,3,2019,1,2,7,0,40,40,15,1,0,1,0,18.547363,18.547363,0,0,0,0,0,0,0,0,1,1,0,4.3099208,0,0,0,48.849998,58.560001,58.389999,44.540001,6,1,1,0,0,13,5,1,542,910570.88,0,0,4755.6914 -4644,5757,10472,-9,10473,10474,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1046.3558,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,8,3,0,589.33331,316265.84,0,0,1568.7484 -4644,5757,10473,10474,-9,-9,1,1,0,34,1,1,1,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,6,0,-2,12.813864,0,0,1,36,1,4,1,1,1,2019,3,2,19,6,0,23,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.200001,30.139999,35.630001,62.189999,4,1,1,0,1,8,3,0,589.33331,316265.84,0,0,1568.7484 -4644,5757,10474,10473,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,4,8.5045271,8.4858236,0,2,0,-9,6,0,2,129.57063,0,0,0,34,1,2,3,2,2,2019,2,1,23,11,35,36,15,1,1,3,0,16.111498,16.111498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.630001,62.189999,32.200001,30.139999,3,3,4,0,1,8,3,0,589.33331,316265.84,0,0,1568.7484 -4645,5758,10475,-9,-9,-9,1,1,0,84,2,0,0,0,1,-9,4,3,0,0,3,0,7.6354399,7.7130618,3,0,0,0,-9,0,-907.5141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2190614,7.267488,0,0,48.450001,57.490002,-9,-9,7,1,1,0,0,10,3,1,742,784732.88,0,0,2003.7982 -4646,5759,10476,-9,10477,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1019.8726,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,1,0,937.33331,-93117.547,0,0,1520.1217 -4646,5759,10477,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1043.1954,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.220001,55.740002,-9,-9,4,3,4,0,0,8,1,0,937.33331,-93117.547,0,0,1520.1217 -4646,5759,10478,-9,10477,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.1437,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,1,0,937.33331,-93117.547,0,0,1520.1217 -4647,5760,10479,10480,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,0,3,8.4383535,8.4943352,0,1,0,-9,6,0,-6,-19.046104,0,0,0,65,2,5,3,2,3,2019,2,1,6,0,43,40,15,1,0,4,0,9.8433638,9.8433638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,46.580002,57.060001,57.759998,6,1,1,0,0,12,4,0,499.5,1293135.3,0,0,2696.9612 -4647,5760,10480,10479,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,5,0,7.5190573,7.3334389,1,0,-9,6,0,6,-74.970078,0,0,0,59,1,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2440348,0,0,57.060001,57.759998,60.299999,46.580002,7,1,1,0,0,12,4,0,499.5,1293135.3,0,0,2696.9612 -4648,5761,10481,10482,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,8.4676962,8.5344744,0,1,0,-9,27,0,5,-4.890614,0,0,0,53,1,4,1,3,2,2019,1,2,12,0,37,37,15,1,0,1,0,11.975527,11.975527,0,0,0,0,0,0,0,0,0,0,0,6.134973,0,0,0,49.91,58.02,28.41,64.050003,6,1,1,0,0,13,5,1,3656.5,2600483.5,0,0,3789.1455 -4648,5761,10482,10481,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,8.4762583,8.4469395,0,1,0,-9,27,0,-5,61.713326,0,0,0,58,1,4,1,2,2,2019,1,1,16,5,37,37,15,1,1,1,0,14.496438,14.496438,0,0,0,0,0,0,0,0,0,0,0,6.4515529,0,0,0,28.41,64.050003,49.91,58.02,5,1,1,0,0,13,5,1,3656.5,2600483.5,0,0,3789.1455 -4649,5762,10483,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,3,0,6.3749008,6.3406167,3,0,0,0,-9,0,-958.81348,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.3552084,0,0,0,1,1,0,0,6.7292147,0,0,44.939999,28.129999,-9,-9,6,1,1,0,0,10,2,1,975,203837.09,0,0,1089.0975 -4650,5763,10484,10485,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,3,4.9849992,5.0596428,0,1,0,-9,64,0,3,-31.22599,0,0,0,81,3,4,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1143594,0,0,0,55,45,52.400002,47.349998,6,1,1,0,0,9,1,1,431,100223.24,0,0,1709.7473 -4650,5763,10485,10484,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,64,0,-3,93.276009,0,0,0,84,3,3,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.6536374,0,118.49014,1,52.400002,47.349998,55,45,5,1,1,0,0,9,1,1,431,100223.24,0,0,1709.7473 -4651,5764,10486,10487,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,2,0,5.7473717,5.9980783,1,0,-9,6,0,0,37.226307,0,0,0,63,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7632918,5.9856625,0,0,60.259998,11.79,39.200001,53.619999,6,1,1,0,0,5,2,1,535.5,40921.223,0,0,2691.4346 -4651,5764,10487,10486,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,0,-25.754301,0,0,0,63,2,2,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.200001,53.619999,60.259998,11.79,5,1,1,0,0,5,2,1,535.5,40921.223,0,0,2691.4346 -4652,5765,10488,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,4,7.3906937,7.2582822,0,3,0,0,0,-9,0,-932.81091,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,39,45,15,1,0,-9,0,5.5304055,5.5304055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.720001,49.75,-9,-9,7,1,1,0,0,2,3,0,1152,226357.7,0,0,2232.0615 -4653,5766,10489,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-836.02606,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,1,13,1,0,228,41993.215,0,0,1646.8789 -4653,5767,10490,-9,10489,-9,2,1,0,34,2,0,0,0,2,-9,2,1,0,0,3,7.9682307,7.8223438,0,3,0,0,0,-9,0,-930.45361,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,40,40,15,1,1,-9,1,8.8913031,8.8913031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.290001,61.290001,-9,-9,3,1,1,0,0,13,4,0,1463,74974.664,0,0,729.14044 -4654,5768,10491,10492,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,0,0,0,0,0,72,3,2,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.5,33.16,59.869999,37.669998,6,1,1,0,0,5,1,1,1683.5,348041.5,0,0,-63.622139 -4654,5768,10492,10491,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,0,0,0,0,0,72,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.869999,37.669998,45.5,33.16,7,1,1,0,0,5,1,1,1683.5,348041.5,0,0,-63.622139 -4655,5769,10493,10494,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,5,9.1437988,9.5537767,0,2,0,-9,20,0,2,-16.769583,0,0,0,46,1,4,1,2,1,2019,1,1,9,0,77,55,15,1,0,1,0,17.458899,17.458899,0,0,0,0,0,0,0,2,0,0,0,5.7315478,0,4.1960797,3,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,4,5,1,1291.6666,885242.44,0,0,6721.5361 -4655,5769,10494,10493,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,8.8586664,8.4008522,0,2,0,-9,21,0,-2,136.11298,0,0,0,48,1,5,1,2,2,2019,1,2,9,0,41,40,15,1,0,1,0,16.044041,16.044041,0,0,0,0,0,0,0,0,0,0,0,6.6120596,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,4,5,1,1291.6666,885242.44,0,0,6721.5361 -4655,5769,10495,-9,10493,10494,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-910.53577,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,4,5,1,1291.6666,885242.44,0,0,6721.5361 -4656,5770,10496,10497,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,5,7.9335542,7.9974599,0,1,0,-9,38,0,3,-80.514465,0,0,0,57,1,3,1,3,2,2019,1,1,9,0,29,33,15,1,0,1,0,11.355512,11.355512,0,0,0,0,0,0,0,0,1,1,0,1.7975278,0,0,0,57.060001,57.759998,59.459999,46.990002,5,1,1,0,0,2,4,1,382.5,897748.44,0,0,2120.7065 -4656,5770,10497,10496,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,3,7.792737,7.4785981,0,1,0,-9,38,0,-3,-59.913979,0,0,0,60,1,5,1,2,2,2019,1,2,12,0,32,32,15,1,0,1,0,9.0984964,9.0984964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.459999,46.990002,57.060001,57.759998,6,1,1,0,0,2,4,1,382.5,897748.44,0,0,2120.7065 -4657,5771,10498,10500,-9,-9,1,1,1,52,1,0,1,0,3,-9,2,1,0,1,4,6.6230597,6.3604236,0,2,0,-9,26,0,4,78.559662,0,0,0,48,1,5,1,-9,-9,2019,1,2,6,0,10,9,15,1,0,1,0,6.7795138,6.7795138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,41.599998,60.779999,4,1,1,0,0,2,2,1,1012,312720.78,0,0,3079.0002 -4657,5771,10499,-9,10500,10498,4,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.11609,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,2,1,1012,312720.78,0,0,3079.0002 -4657,5771,10500,10498,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,1,5,0,0,0,2,0,-9,4,0,-4,9.7075586,0,0,0,52,3,4,1,-9,-9,2019,1,1,13,1,40,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.949677,3,41.599998,60.779999,58.150002,52.91,6,1,1,0,0,2,2,1,1012,312720.78,0,0,3079.0002 -4657,5772,10501,-9,10500,10498,3,1,0,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1044.8502,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,15,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.200001,63.27,-9,-9,6,1,1,0,1,2,1,1,616,-102504.3,0,0,841.81354 -4658,5773,10502,-9,10504,10505,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1038.6664,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,4,1,206.75,147076.7,0,0,4562.834 -4658,5773,10503,-9,10504,10505,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.0719,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,206.75,147076.7,0,0,4562.834 -4658,5773,10504,10505,-9,-9,2,1,0,34,1,0,2,0,3,-9,2,1,0,0,4,7.6905594,7.4759645,0,2,0,-9,3,0,0,9.1112089,0,0,1,43,2,4,1,3,3,2019,1,1,6,0,18,0,15,1,0,1,0,15.169017,15.169017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,4,1,206.75,147076.7,0,0,4562.834 -4658,5773,10505,10504,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,8.9244137,8.7948322,0,2,0,-9,3,0,9,67.909744,0,0,0,34,3,4,1,2,3,2019,1,2,7,0,46,44,15,1,0,1,0,15.659472,15.659472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,4,1,206.75,147076.7,0,0,4562.834 -4659,5774,10506,10507,-9,-9,2,1,0,30,1,1,3,0,2,-9,1,1,0,0,4,6.7828221,6.7296023,0,2,0,-9,11,0,-2,75.975273,0,0,1,32,2,5,1,2,-9,2019,1,1,6,0,16,24,15,1,0,1,0,8.0421143,8.0421143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.099998,59.110001,6,1,1,0,0,6,4,1,875.5,6834.5127,0,0,4448.8638 -4659,5774,10507,10506,-9,-9,1,1,1,32,1,1,3,0,2,-9,2,1,0,0,5,9.3059998,9.1637745,0,2,0,-9,8,0,2,-37.872761,0,0,0,30,2,4,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,28.496384,28.496384,0,0,0,0,0,0,0,0,1,1,0,6.9714274,0,0,0,54.099998,59.110001,54.200001,57.490002,6,1,1,0,0,6,4,1,875.5,6834.5127,0,0,4448.8638 -4659,5774,10508,-9,10506,10507,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1121.5652,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,875.5,6834.5127,0,0,4448.8638 -4659,5774,10509,-9,10506,10507,4,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.93683,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,875.5,6834.5127,0,0,4448.8638 -4660,5775,10510,10511,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.0808544,8.1122713,0,1,0,-9,35,0,1,-27.380163,0,0,0,52,2,3,1,3,2,2019,1,2,12,0,45,45,15,1,0,1,0,8.8430767,8.8430767,0,0,0,0,0,0,0,14.5,0,0,0,4.8097668,0,11.423788,3,49.689999,52.990002,55.130001,34.07,5,1,1,0,0,5,4,0,284.5,293447.69,0,0,2073.7234 -4660,5775,10511,10510,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.3373904,7.12889,0,1,0,-9,35,0,-1,20.570274,0,0,0,53,2,3,1,3,-9,2019,1,1,11,0,20,26,15,1,0,1,0,7.9475451,7.9475451,0,0,0,0,0,0,0,27.5,0,0,0,3.8817072,0,26.383165,3,55.130001,34.07,49.689999,52.990002,5,1,1,0,0,5,4,0,284.5,293447.69,0,0,2073.7234 -4661,5776,10512,-9,10514,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-886.27637,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,2,4,1,614.33331,399195.63,0,0,4323.9023 -4661,5776,10513,10514,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.8097057,9.0830393,0,2,0,-9,10,0,-5,-14.949959,0,0,0,41,2,4,1,-9,-9,2019,1,1,12,0,42,48,15,1,0,1,0,16.949646,16.949646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.529999,57.16,56.150002,6,1,1,0,0,2,4,1,614.33331,399195.63,0,0,4323.9023 -4661,5776,10514,10513,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,7.4360089,7.2899575,4.9858751,2,0,-9,10,0,5,-132.24335,0,0,1,36,2,4,1,2,2,2019,1,2,8,0,26,25,15,1,0,1,0,7.7050529,7.7050529,0,0,0,0,0,0,0,0,0,0,0,5.652648,0,0,0,57.16,56.150002,57.73,54.529999,7,1,1,0,0,2,4,1,614.33331,399195.63,0,0,4323.9023 -4662,5777,10515,10518,-9,-9,1,1,0,37,1,0,2,0,1,-9,1,1,0,0,3,7.6595192,7.6113787,0,2,0,-9,20,0,0,53.729046,0,0,1,37,1,5,1,2,2,2019,1,2,21,9,15,0,15,1,1,1,0,10.954845,10.954845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.129999,56.509998,51.139999,60.450001,4,1,1,0,0,11,4,1,877.5,248313.66,0,0,2663.76 -4662,5777,10516,-9,10515,10518,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.63098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,4,1,877.5,248313.66,0,0,2663.76 -4662,5777,10517,-9,10515,10518,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.55536,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,877.5,248313.66,0,0,2663.76 -4662,5777,10518,10515,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,5,8.0910292,8.5201359,0,2,0,-9,20,0,0,74.813354,0,0,0,37,1,3,1,1,1,2019,1,1,8,1,60,70,15,1,0,1,0,7.6268678,7.6268678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,30.129999,56.509998,6,1,1,0,0,11,4,1,877.5,248313.66,0,0,2663.76 -4663,5778,10519,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,7.9542212,8.0269117,3,0,0,0,-9,0,-979.41638,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8008237,7.7648821,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,4,1,597,703962.44,0,0,3089.5269 -4664,5779,10520,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-952.30481,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,24.111721,0,0,1,1,0,0,0,0,0,40.299999,29.02,-9,-9,5,1,1,0,0,9,1,1,1012,-61762.086,0,0,1140.1927 -4665,5780,10521,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,3,0,5.3189473,4.9558706,3,0,0,0,-9,0,-1038.1068,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0108523,0,0,45,36.040001,-9,-9,4,1,1,0,0,4,2,1,656,210468.16,0,0,860.73285 -4666,5781,10522,10523,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.9723854,8.1367311,1,0,-9,49,0,0,-84.031464,0,0,0,67,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1067243,8.236146,0,0,62.419998,45.639999,57.330002,53.459999,6,1,1,0,0,10,3,1,287,935791.56,0,0,3048.72 -4666,5781,10523,10522,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,0,1.9949232,0,0,0,67,2,3,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.526001,0,0,0,57.330002,53.459999,62.419998,45.639999,7,1,1,0,0,10,3,1,287,935791.56,0,0,3048.72 -4667,5782,10524,-9,10526,10527,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.9104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,3,0,1247,162794.63,0,0,3426.3889 -4667,5782,10525,-9,10526,10527,3,1,1,12,2,1,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1054.6644,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,-9,-9,4,4,2,0,0,7,3,0,1247,162794.63,0,0,3426.3889 -4667,5782,10526,10527,-9,-9,2,1,0,34,1,1,3,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,6,0,-3,-58.906059,0,0,1,37,2,4,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.6622,3,54.959999,53.169998,37.209999,51.59,4,1,1,1,0,7,3,0,1247,162794.63,0,0,3426.3889 -4667,5782,10527,10526,-9,-9,1,1,1,37,1,1,3,0,2,-9,2,1,0,0,4,8.0744934,8.3129683,0,2,0,-9,6,0,3,78.394257,0,0,0,34,2,3,3,2,2,2019,2,2,11,0,42,0,15,1,0,3,0,10.919031,10.919031,0,0,0,0,0,0,0,27.5,1,1,0,0,0,38.934357,3,37.209999,51.59,54.959999,53.169998,5,1,1,0,1,7,3,0,1247,162794.63,0,0,3426.3889 -4667,5782,10528,-9,10526,10527,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1135.8518,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,1247,162794.63,0,0,3426.3889 -4668,5783,10529,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,4,3,0,0,1,0,5.9783349,6.0219154,3,0,0,0,-9,0,-1100.2101,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.059906,6.3482637,0,0,33.880001,36.389999,-9,-9,2,1,1,0,0,6,2,1,252,43583.227,0,0,1990.1191 -4669,5784,10530,-9,-9,-9,1,1,0,94,3,0,0,0,1,-9,4,3,0,0,3,0,8.1255865,8.0316105,3,0,0,0,-9,0,-938.88385,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.1103859,0,0,0,0,4.8005142,0,1,1,0,4.1384273,7.869679,0,0,61.630001,27.17,-9,-9,6,1,1,0,0,7,3,1,1509,1043826.1,0,0,2152.3772 -4670,5785,10531,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,3,3,0,0,3,0,8.8724337,8.7792988,3,0,0,0,-9,0,-775.89893,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,41,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.555625,0,23.693911,3,34.650002,58.34,-9,-9,4,1,1,1,0,7,5,1,1328,1110226.5,0,0,3134.4985 -4671,5786,10532,10533,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.0683966,6.1406226,1,0,-9,44,0,1,-29.563454,0,0,0,69,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4812653,5.9860129,0,0,62.490002,55.09,57.630001,45.09,7,1,1,0,0,6,2,1,267,465764.66,0,0,2454.1418 -4671,5786,10533,10532,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,5.3883758,7.0033488,6.2988906,1,0,-9,44,0,-1,99.348824,0,0,0,70,3,4,3,2,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,2.8566704,6.5373464,0,3,57.630001,45.09,62.490002,55.09,6,1,1,0,0,6,2,1,267,465764.66,0,0,2454.1418 -4672,5787,10534,10535,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,8.3582907,8.3311653,1,0,-9,50,0,9,130.69781,0,0,0,70,2,1,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2230129,8.1973419,1.3587984,2,48.599998,53.130001,32.25,19,5,1,1,0,0,6,3,1,470.5,939884.88,0,0,2560.5176 -4672,5787,10535,10534,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,50,0,0,-183.07263,0,0,0,79,2,4,3,2,2,2019,4,2,33,11,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,5.7814121,3,32.25,19,48.599998,53.130001,2,1,1,0,0,6,3,1,470.5,939884.88,0,0,2560.5176 -4673,5788,10536,10537,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,2,7.5136967,7.4496479,0,1,0,-9,6,0,9,16.396551,0,0,0,37,2,4,1,2,2,2019,1,2,25,11,37,28,15,1,1,1,0,7.0936551,7.0936551,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.7476349,3,35.09,47.68,53.549999,41.279999,2,1,1,0,0,5,4,0,513,77240.914,0,0,2523.5342 -4673,5788,10537,10536,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,0,4,7.9831161,8.1603861,5.7301502,1,0,-9,6,0,0,145.26028,0,0,0,46,3,2,1,3,2,2019,1,1,15,3,40,50,15,1,0,1,0,7.9468045,7.9468045,0,0,0,0,0,0,0,2,1,1,0,5.5336394,0,2.110378,3,53.549999,41.279999,35.09,47.68,3,1,1,0,1,5,4,0,513,77240.914,0,0,2523.5342 -4673,5789,10538,-9,10536,10537,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,2,7.4368105,7.5701113,0,3,0,0,0,-9,0,-875.04767,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,42,29,15,1,0,-9,0,5.4348059,5.4348059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.09,47.5,-9,-9,6,1,1,0,0,5,3,0,522,60936.914,0,0,-104.57253 -4674,5790,10539,10540,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,8.437911,8.1921053,7.3421116,1,0,-9,38,0,-6,2.6768324,0,0,0,63,1,4,3,2,2,2019,2,2,7,0,16,21,15,1,0,4,0,27.668785,27.668785,0,0,0,0,0,0,0,0,0,0,0,3.915375,7.5548792,0,0,57.16,56.150002,48.279999,60.18,7,1,1,0,0,10,5,1,1037.5,3281108,0,0,3385.2041 -4674,5790,10540,10539,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,0,4,4.7421613,8.1472263,8.6259422,1,0,-9,37,0,6,-72.531952,0,0,0,57,1,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6441584,0,0,48.279999,60.18,57.16,56.150002,7,1,1,0,0,10,5,1,1037.5,3281108,0,0,3385.2041 -4675,5791,10541,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,1,8.2111607,8.5569019,6.5227427,3,0,0,0,-9,0,-1016.4697,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,26,25,15,1,1,-9,0,12.527207,12.527207,0,0,0,0,0,0,0,0,1,1,0,6.8189406,0,0,0,33.189999,27.059999,-9,-9,1,2,3,0,1,8,4,1,516,660989.31,0,0,1047.4406 -4676,5792,10542,-9,10544,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1077.645,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,4,2,0,0,7,3,1,476.33334,-23960.316,0,0,2818.7544 -4676,5792,10543,-9,10544,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1012.2159,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,1,476.33334,-23960.316,0,0,2818.7544 -4676,5792,10544,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,0,3,7.4398913,8.0188847,6.9943562,4,0,0,0,-9,0,-1114.6179,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,21,20,15,1,0,-9,0,6.8903713,6.8903713,0,0,0,0,0,0,0,105,1,1,0,7.3917818,0,126.04812,3,58.470001,44.689999,-9,-9,6,1,1,0,0,7,3,1,476.33334,-23960.316,0,0,2818.7544 -4677,5793,10545,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,2,7.6296501,7.4226499,0,3,0,0,0,-9,0,-1060.2878,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,22,30,15,1,0,-9,0,9.9652519,9.9652519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.450001,30.52,-9,-9,5,1,1,0,0,9,3,1,506,561681.56,0,0,991.18878 -4678,5794,10546,10547,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,9.2804632,9.3423395,0,2,0,-9,6,0,2,49.399345,0,0,0,45,2,4,1,3,2,2019,1,2,7,0,49,47,15,1,0,1,0,25.356958,25.356958,0,0,0,0,0,0,0,0,0,0,0,4.5630798,0,0,0,58.720001,51.290001,50,55,6,1,1,0,0,10,5,1,446,712717.5,0,0,3804.6519 -4678,5794,10547,10546,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,6.4301977,6.4702616,0,2,0,-9,6,0,-2,13.291693,0,0,0,47,1,4,1,-9,-9,2019,1,1,10,1,15,0,15,1,0,1,0,5.3683867,5.3683867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,58.720001,51.290001,6,4,1,0,0,10,5,1,446,712717.5,0,0,3804.6519 -4678,5794,10548,-9,10547,10546,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.11,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,446,712717.5,0,0,3804.6519 -4679,5795,10549,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,0,4,0,6.8784924,6.9378114,3,0,0,0,-9,0,-916.2395,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.0230002,0,0,0,0,0,0,1,1,0,5.8730946,6.7463999,0,0,63,35.630001,-9,-9,7,1,1,0,0,10,2,1,2904,535399.56,0,0,2791.4924 -4680,5796,10550,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,2,1,0,0,2,6.8131719,6.9687567,0,3,0,0,0,-9,0,-901.92096,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,3,15,1,0,-9,0,6.6962318,6.6962318,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.07,29.17,-9,-9,5,1,1,0,1,13,2,0,419,-7081.1743,0,0,486.21759 -4680,5797,10551,-9,10550,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,6.8111463,6.9618363,0,3,0,0,0,-9,0,-994.98859,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,20,8,16,8,15,1,1,-9,1,6.3337951,6.3337951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.759998,55.68,-9,-9,4,1,1,0,1,13,2,0,122,90564.734,0,0,1883.9539 -4681,5798,10552,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,0,3,0,8.9205723,9.0885324,3,0,0,0,-9,0,-956.27161,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4277644,8.8025064,0,0,61.189999,33.880001,-9,-9,6,1,1,0,0,9,5,1,838,1284240.4,0,0,4504.2358 -4682,5799,10553,-9,10555,10554,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1029.8694,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,4,2,0,0,10,3,1,229.25,1616403.5,0,0,3116.4827 -4682,5799,10554,10555,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,2,7.8334293,7.9421473,4.8445177,2,0,-9,20,0,5,19.83452,0,0,0,46,1,3,1,3,3,2019,1,2,21,9,42,41,15,1,1,1,0,7.0743012,7.0743012,0,0,0,0,0,0,0,0,1,0,1,0,5.2013159,0,0,38.98,46.380001,53.139999,51.279999,3,1,1,0,1,10,3,1,229.25,1616403.5,0,0,3116.4827 -4682,5799,10555,10554,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,3,7.5481372,7.5269828,0,2,0,-9,20,0,-5,96.381828,0,0,0,51,1,2,1,2,2,2019,1,1,12,0,28,28,15,1,0,1,0,7.1970944,7.1970944,0,0,0,0,0,0,0,0,1,0,1,7.2117243,0,0,0,53.139999,51.279999,38.98,46.380001,5,2,3,0,1,10,3,1,229.25,1616403.5,0,0,3116.4827 -4682,5799,10556,-9,10555,10554,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.91675,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,4,2,0,0,10,3,1,229.25,1616403.5,0,0,3116.4827 -4683,5800,10557,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1071.905,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.150002,32.41,-9,-9,7,1,1,0,0,4,1,0,827,102822.86,0,0,915.82001 -4684,5801,10558,10559,-9,-9,2,1,1,50,1,0,2,0,2,-9,1,1,0,0,4,7.0239034,6.720902,0,2,0,-9,17,0,8,-9.7065067,0,0,0,42,1,5,1,2,2,2019,1,1,8,0,72,60,15,1,0,1,0,1.567331,1.567331,0,0,0,0,0,0,0,0,1,1,0,1.7179765,0,0,0,51.240002,58.84,57.060001,57.759998,6,1,1,0,0,12,4,1,779.33331,759429.25,0,0,3240.397 -4684,5801,10559,10558,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,8.9301538,8.6900311,0,2,0,-9,18,0,-8,5.7734637,0,0,1,50,2,4,1,1,1,2019,1,2,7,0,35,38,15,1,0,1,0,16.714201,16.714201,0,0,0,0,0,0,0,0,1,1,0,2.1357703,0,0,0,57.060001,57.759998,51.240002,58.84,6,1,1,0,0,12,4,1,779.33331,759429.25,0,0,3240.397 -4684,5801,10560,-9,10559,10558,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.21954,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,4,1,779.33331,759429.25,0,0,3240.397 -4685,5802,10561,10562,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,0,2,8.7590303,8.3367682,0,1,0,-9,29,0,1,8.3109846,0,0,0,50,2,3,1,2,-9,2019,1,1,15,3,50,50,15,1,0,1,0,9.2273445,9.2273445,0,0,0,0,0,0,0,0,0,0,0,4.2571015,0,0,0,34.07,43.110001,42.700001,46.470001,2,1,1,0,0,2,5,1,636.5,1431410.3,0,0,3417.1519 -4685,5802,10562,10561,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.2073727,8.3647413,0,1,0,-9,28,0,-1,-1.5638644,0,0,0,51,1,2,1,2,2,2019,1,2,13,2,37,30,15,1,0,1,0,10.748655,10.748655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.700001,46.470001,34.07,43.110001,5,1,1,0,0,2,5,1,636.5,1431410.3,0,0,3417.1519 -4685,5803,10563,-9,10562,10561,3,1,1,19,2,0,0,0,2,1,97,3,0,0,2,0,0,0,3,0,0,0,-9,0,-916.37421,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,27,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.23608407,0,0,0,18.09,61.07,-9,-9,2,1,1,0,0,2,1,1,960,0,0,0,-882.71967 -4686,5804,10564,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,4,9.2972879,9.4443569,0,3,0,0,0,-9,0,-1049.8269,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,70,96,15,1,0,-9,0,20.410484,20.410484,0,0,0,0,0,0,0,0,0,0,0,7.7345939,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,8,5,1,217,2925220,0,0,4157.3364 -4687,5805,10565,-9,10567,10566,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-848.85107,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,770.25,211473.19,0,0,4482.0313 -4687,5805,10566,10567,-9,-9,2,1,1,34,1,0,2,0,1,-9,2,1,0,0,2,9.1664572,8.9063177,0,2,0,-9,9,0,3,6.527112,0,0,0,31,1,2,1,-9,-9,2019,1,1,14,2,40,38,15,1,0,1,0,21.666576,21.666576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.560001,43.389999,39.740002,50.84,5,1,1,0,0,5,5,1,770.25,211473.19,0,0,4482.0313 -4687,5805,10567,10566,-9,-9,1,1,0,31,1,0,2,0,1,-9,2,1,0,1,2,8.3418093,8.4607735,0,2,0,-9,9,0,-3,26.63212,0,0,1,34,1,2,1,1,1,2019,1,2,12,1,28,29,15,1,0,1,0,17.913162,17.913162,0,0,0,0,0,0,0,74.5,1,1,0,0,0,71.636765,3,39.740002,50.84,41.560001,43.389999,5,1,1,0,0,5,5,1,770.25,211473.19,0,0,4482.0313 -4687,5805,10568,-9,10567,10566,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.16248,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,5,1,770.25,211473.19,0,0,4482.0313 -4688,5806,10569,10570,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,3,8.0433912,7.9480028,0,1,0,1,1,-9,-3,-79.541138,0,0,0,43,2,5,1,2,2,2019,1,2,7,0,88,54,15,1,0,1,0,4.2814388,4.2814388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,50.540001,62.09,6,1,1,0,0,5,4,0,1286.5,300796.25,0,0,2211.9993 -4688,5806,10570,10569,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,5,7.8765106,8.1937361,0,1,0,-9,1,-9,3,36.548519,-9,0,1,40,2,3,1,-9,-9,2019,1,1,9,0,38,0,15,1,0,1,0,7.2238169,7.2238169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,62.66,52.400002,6,1,1,0,1,5,4,0,1286.5,300796.25,0,0,2211.9993 -4689,5807,10571,10572,-9,-9,2,1,0,34,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-8,-56.395481,0,0,1,42,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.23,53.52,7,2,3,0,0,11,5,1,415.33334,495120.75,0,0,3389.3784 -4689,5807,10572,10571,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,9.5234251,9.1917257,0,2,0,-9,13,0,8,-119.15224,0,0,0,34,2,4,3,-9,-9,2019,2,2,14,3,38,43,15,1,0,3,0,34.359165,34.359165,0,0,0,0,0,0,0,0,1,1,0,3.1196642,0,0,0,48.23,53.52,57.16,56.150002,6,2,3,0,0,11,5,1,415.33334,495120.75,0,0,3389.3784 -4689,5807,10573,-9,10571,10572,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.4379,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,11,5,1,415.33334,495120.75,0,0,3389.3784 -4690,5808,10574,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,8.9678736,8.7233391,0,3,0,0,0,-9,0,-1024.7349,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,43,43,15,1,0,-9,0,19.903156,19.903156,0,0,0,0,0,0,0,0,1,1,0,7.2696705,0,0,0,65.059998,41.580002,-9,-9,6,1,1,0,0,9,5,1,1542,-122689.92,0,0,2694.7402 -4691,5809,10575,10576,-9,-9,2,1,0,58,1,0,0,0,1,-9,6,3,0,0,5,0,0,0,1,0,-9,2,0,0,0,0,0,0,58,2,3,1,3,3,2019,3,1,10,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5314736,0,0,0,51.139999,60.450001,51,49,7,1,1,0,0,13,1,1,521,-73134.172,0,0,827.29254 -4691,5809,10576,10575,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,2,0,0,0,0,0,0,58,1,5,3,3,3,2019,2,2,10,1,45,50,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8834724,0,0,0,51,49,51.139999,60.450001,5,1,1,0,0,13,1,1,521,-73134.172,0,0,827.29254 -4692,5810,10577,10578,-9,-9,3,1,0,46,1,0,0,0,2,-9,1,1,0,0,4,7.6688046,7.5970006,0,1,0,-9,13,0,-2,201.33322,0,0,0,48,2,4,1,3,3,2019,1,1,11,0,10,5,15,1,0,1,0,24.732365,24.732365,0,0,0,0,0,0,0,0,0,0,0,7.1901612,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,5,3,1,1272,76782.352,0,0,2032.2445 -4692,5810,10578,10577,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,0,4,5.682755,6.1439185,0,1,0,-9,13,0,2,-146.23586,-9,0,0,46,2,4,1,3,3,2019,1,3,12,0,40,0,15,1,0,1,0,.89433485,.89433485,0,0,0,0,0,0,0,0,0,0,0,5.8822074,0,0,0,57.16,56.150002,54.200001,57.490002,4,1,1,0,0,5,3,1,1272,76782.352,0,0,2032.2445 -4693,5811,10579,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,7.8644514,7.7617264,0,3,0,0,0,-9,0,-955.44257,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,17,37,15,1,0,-9,0,24.462502,24.462502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.639999,52.959999,-9,-9,6,1,1,0,0,12,4,0,161,19944.598,0,0,427.46527 -4694,5812,10580,10581,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,2,0,6.6038938,6.5207081,1,0,-9,10,0,3,-28.597471,0,0,0,75,3,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.9013577,6.3085485,23.594646,1,65.379997,25.530001,50.380001,13.63,6,1,1,0,0,4,2,1,750.5,155297.34,0,0,3239.3672 -4694,5812,10581,10580,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,1,1,0,7.1781073,6.9040337,1,0,-9,10,0,-3,-8.0205584,0,0,0,78,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,32.423233,0,0,0,0,0,1,1,0,5.3453994,7.1805272,0,0,50.380001,13.63,65.379997,25.530001,6,1,1,0,0,4,2,1,750.5,155297.34,0,0,3239.3672 -4695,5813,10582,10583,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,0,5,8.8530483,8.6459303,0,2,0,-9,7,0,-4,-30.822006,0,0,1,41,2,4,1,2,1,2019,1,1,7,0,32,32,15,1,0,1,0,18.847309,18.847309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,55.189999,54.259998,7,1,1,0,0,9,5,1,349.75,520265.13,0,0,3857.7175 -4695,5813,10583,10582,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,8.89223,8.7408247,0,2,0,-9,7,0,4,-81.942268,0,0,0,37,2,5,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,16.744038,16.744038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,62.389999,56.709999,6,1,1,0,0,9,5,1,349.75,520265.13,0,0,3857.7175 -4695,5813,10584,-9,10582,10583,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.06848,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,349.75,520265.13,0,0,3857.7175 -4695,5813,10585,-9,10582,10583,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.06207,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,349.75,520265.13,0,0,3857.7175 -4696,5814,10586,10587,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,9.3924522,9.4533796,0,2,0,-9,22,0,-3,90.426544,0,0,1,45,1,4,1,1,1,2019,1,2,8,0,40,40,15,1,0,1,0,31.603951,31.603951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.200001,57.490002,6,2,3,0,0,9,5,1,808.33331,1581759.4,0,0,9347.1699 -4696,5814,10587,10586,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.1539602,9.2659092,0,2,0,-9,8,0,3,-219.07951,0,0,0,42,1,4,1,-9,-9,2019,1,1,9,0,60,55,15,1,0,1,0,21.665762,21.665762,0,0,0,0,0,0,0,0,0,0,0,7.7264819,0,0,0,54.200001,57.490002,57.16,56.150002,6,2,3,0,0,9,5,1,808.33331,1581759.4,0,0,9347.1699 -4696,5814,10588,-9,10586,10587,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-993.03839,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,7,2,3,0,0,9,5,1,808.33331,1581759.4,0,0,9347.1699 -4697,5815,10589,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,3,8.3446999,8.3837214,3.2053063,3,0,0,0,-9,0,-988.83997,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,42,41,15,1,0,-9,0,13.96567,13.96567,0,0,0,0,0,0,0,0,1,1,0,7.5879731,3.130971,0,0,42.099998,45.610001,-9,-9,6,1,1,0,0,12,4,1,353,543508.88,0,0,1828.769 -4698,5816,10590,10591,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,6.5540128,6.375401,1,0,-9,44,0,0,183.51044,0,0,0,66,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5093012,6.9446588,0,0,57.330002,53.459999,48.240002,41.220001,6,1,1,0,0,5,3,1,464.5,1286519.3,0,0,2965.6799 -4698,5816,10591,10590,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.6479731,7.5060353,1,0,-9,44,0,0,-145.3701,0,0,0,66,1,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.8009419,7.6108398,10.422669,3,48.240002,41.220001,57.330002,53.459999,6,1,1,0,0,5,3,1,464.5,1286519.3,0,0,2965.6799 -4699,5817,10592,10593,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,2,7.9066935,8.1861238,0,1,0,1,1,-9,-4,141.66763,0,1,1,30,2,4,1,2,2,2019,1,2,25,9,37,37,15,1,1,1,0,10.916319,10.916319,0,0,0,0,0,0,0,0,0,0,0,2.2772589,0,0,0,17.309999,55.040001,53.330002,53.709999,3,1,1,0,0,11,4,0,2405,178447.2,0,0,3318.7129 -4699,5817,10593,10592,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.0561514,8.0435572,0,1,0,1,1,-9,4,3.7039182,0,0,0,26,2,2,1,-9,-9,2019,1,1,10,0,40,60,15,1,0,1,0,8.581955,8.581955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.330002,53.709999,17.309999,55.040001,6,1,1,0,0,11,4,0,2405,178447.2,0,0,3318.7129 -4700,5818,10594,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,0,3,8.5747709,8.7096529,0,3,0,0,0,-9,0,-1022.5282,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,51,47,15,1,0,-9,0,12.942535,12.942535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.240002,50.009998,-9,-9,6,3,4,0,0,4,5,1,84,207010.09,0,0,2969.343 -4701,5819,10595,10596,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,3,7.6057873,8.3748789,7.926342,1,0,-9,10,0,0,-23.000776,0,0,0,66,3,3,3,-9,2,2019,2,2,6,0,31,32,15,1,0,4,0,6.7579436,6.7579436,0,0,0,0,0,0,0,0,1,1,0,6.5085311,8.3850842,0,0,58.32,50.220001,54.380001,49.27,6,1,1,0,0,9,4,1,888,369109.81,0,0,4839.125 -4701,5819,10596,10595,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,6.3677564,6.430119,1,0,-9,10,0,0,-75.368149,0,0,0,66,2,3,1,3,3,2019,3,1,13,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7670994,0,0,54.380001,49.27,58.32,50.220001,6,1,1,0,0,9,4,1,888,369109.81,0,0,4839.125 -4702,5820,10597,10598,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,8.3251934,7.8675361,0,1,0,-9,30,0,-1,-167.52487,0,0,0,54,2,3,1,-9,-9,2019,1,2,10,2,35,38,15,1,0,1,0,9.0359402,9.0359402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,57.330002,53.459999,5,1,1,0,0,12,4,1,289.5,479002.44,0,0,2417.8462 -4702,5820,10598,10597,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,7.6787858,8.1314154,0,1,0,-9,30,0,1,112.69559,0,0,0,53,3,3,1,-9,-9,2019,1,1,8,0,42,40,15,1,0,1,0,9.5010958,9.5010958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,48.450001,57.490002,5,1,1,0,0,12,4,1,289.5,479002.44,0,0,2417.8462 -4703,5821,10599,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,0,3,8.1724567,8.381669,0,3,0,0,0,-9,0,-1024.7102,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,16.804665,16.804665,0,0,0,0,0,0,0,7,1,1,0,1.899966,0,7.4174919,3,57.91,35.57,-9,-9,6,1,1,0,0,12,5,1,144,896594.31,0,0,2874.4272 -4704,5822,10600,10601,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,52,0,-2,25.396578,0,0,0,72,2,3,3,3,2,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.999892,0,0,0,55.939999,23.15,60.599998,38.220001,4,1,1,0,0,12,2,1,115.5,284979.47,0,0,1975.3149 -4704,5822,10601,10600,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,6.5555019,6.4836655,1,0,-9,52,0,2,41.280403,0,0,0,70,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4582357,6.4195986,0,0,60.599998,38.220001,55.939999,23.15,7,1,1,0,0,12,2,1,115.5,284979.47,0,0,1975.3149 -4705,5823,10602,10603,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,5.2659445,7.0333781,6.8580337,1,0,-9,20,0,6,68.380829,0,0,0,67,3,4,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.0682552,6.582551,0,0,57.330002,53.459999,64.230003,41.860001,6,1,1,0,0,5,2,1,665,178125.33,0,0,1513.9988 -4705,5823,10603,10602,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,19,0,-6,90.007294,0,0,0,73,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0167227,0,0,0,64.230003,41.860001,57.330002,53.459999,7,1,1,0,0,5,2,1,665,178125.33,0,0,1513.9988 -4706,5824,10604,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,1,3,8.1042881,7.6015615,0,3,0,-9,0,-9,0,-1035.7354,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,40,0,15,1,0,-9,0,7.4945612,7.4945612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,36.959999,-9,-9,2,4,5,0,1,12,4,0,767,-6065.1475,0,0,1537.1877 -4706,5825,10605,-9,10604,-9,2,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,7.2070932,7.4250927,0,3,0,-9,0,-9,0,-981.01007,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,35,0,15,1,0,-9,1,4.5611458,4.5611458,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6499236,3,50.119999,49.779999,-9,-9,6,1,1,0,1,12,3,0,2708,-63080.125,0,0,1794.3352 -4707,5826,10606,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-992.6084,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,13,1,1,2540,-26861.953,0,0,1616.4301 -4708,5827,10607,10608,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,2,7.7391882,7.6376443,0,1,0,-9,5,0,1,-24.531157,0,1,0,27,1,3,1,-9,-9,2019,1,2,16,5,50,50,15,1,1,1,0,4.7337813,4.7337813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.650002,52.310001,17.389999,54.25,5,1,1,0,0,9,5,1,899.5,-90793.477,0,0,2738.8704 -4708,5827,10608,10607,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.5059061,8.4891472,0,1,0,-9,5,0,-1,19.433096,0,1,1,28,2,2,1,-9,-9,2019,1,1,26,11,55,50,15,1,1,1,0,9.4246607,9.4246607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.389999,54.25,36.650002,52.310001,5,1,1,0,0,9,5,1,899.5,-90793.477,0,0,2738.8704 -4709,5828,10609,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-947.54968,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,8.1831207,0,5.3608294,0,0,0,0,1,1,0,0,0,0,0,54.369999,33.540001,-9,-9,5,1,1,0,0,12,1,0,193,-155881.39,0,0,-376.65579 -4710,5829,10610,-9,10611,10612,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.44073,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,887,484507.16,0,0,3841.7332 -4710,5829,10611,10612,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,0,3,8.3414669,8.1568489,0,2,0,-9,6,0,-2,-35.573639,0,0,1,45,2,3,1,2,2,2019,1,1,14,4,28,28,15,1,1,1,0,16.204639,16.204639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,45.560001,49.099998,6,1,1,0,0,12,5,1,887,484507.16,0,0,3841.7332 -4710,5829,10612,10611,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,8.7382679,8.9379873,0,2,0,-9,6,0,2,124.07584,0,0,0,43,1,3,1,2,3,2019,1,2,12,2,40,40,15,1,0,1,0,19.479845,19.479845,0,0,0,0,0,0,0,0,1,1,0,4.2743835,0,0,0,45.560001,49.099998,52,54.509998,5,1,1,0,0,12,5,1,887,484507.16,0,0,3841.7332 -4711,5830,10613,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,1,0,5.5366435,5.4473977,3,0,0,0,-9,0,-1049.3452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,4,1,-9,0,0,0,1,80.554359,0,0,5.6903596,17.240343,825.14886,0,1,1,0,4.7555466,5.7441597,0,0,17.889999,38.299999,-9,-9,3,1,1,0,0,9,2,1,2172,573098.13,0,0,839.57037 -4712,5831,10614,10615,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,1,2,0,6.8812132,6.7844195,1,0,-9,32,0,3,-29.611412,0,0,0,65,2,4,1,3,2,2019,3,1,22,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6208544,6.8707666,0,0,46.16,21,59.290001,49.68,5,1,1,0,0,2,5,1,612,302470.63,0,0,4916.4199 -4712,5831,10615,10614,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,1,4,8.6468954,8.9191961,7.8999376,1,0,-9,32,0,-3,93.812981,0,0,0,68,1,2,3,3,2,2019,2,2,5,0,43,37,15,1,0,4,0,14.20394,14.20394,0,0,0,0,0,0,0,14.5,1,1,0,5.741961,7.9384236,16.585848,1,59.290001,49.68,46.16,21,7,1,1,0,0,2,5,1,612,302470.63,0,0,4916.4199 -4713,5832,10616,-9,10617,10618,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.1307,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,6,2,1,944,340875.94,0,0,2176.5466 -4713,5832,10617,10618,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.7610316,8.005743,0,2,0,-9,15,0,-5,-24.635874,0,0,1,47,3,3,3,2,2,2019,2,1,7,0,32,34,15,1,0,3,0,7.2642894,7.2642894,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,59.310001,49.810001,6,2,3,0,0,6,2,1,944,340875.94,0,0,2176.5466 -4713,5832,10618,10617,-9,-9,1,1,1,47,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,5,-5.0542531,0,0,0,42,2,3,1,3,2,2019,3,2,6,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,57.330002,53.459999,6,2,3,0,0,6,2,1,944,340875.94,0,0,2176.5466 -4713,5832,10619,-9,10617,10618,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.38849,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,2,1,944,340875.94,0,0,2176.5466 -4714,5833,10620,10621,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,45,0,2,0,0,0,0,66,3,3,3,3,2,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8983114,0,0,0,51.389999,59.18,60.299999,46.580002,6,1,1,0,0,12,1,0,853.5,85012.203,0,0,1713.4272 -4714,5833,10621,10620,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,-2,0,0,0,0,68,3,5,3,3,3,2019,4,2,6,0,0,35,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,46.580002,51.389999,59.18,6,1,1,0,0,12,1,0,853.5,85012.203,0,0,1713.4272 -4715,5834,10622,10623,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.2639465,7.5655131,1,0,-9,34,0,-2,87.484093,0,0,0,74,3,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4219398,7.4570947,0,0,44.57,52.34,44.02,60.700001,6,1,1,0,0,7,2,1,438.5,702178.63,0,0,2728.3489 -4715,5834,10623,10622,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,34,0,2,-77.107239,0,0,0,72,2,3,3,2,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6149931,0,0,0,44.02,60.700001,44.57,52.34,6,1,1,0,0,7,2,1,438.5,702178.63,0,0,2728.3489 -4716,5835,10624,10625,-9,-9,1,1,1,47,1,0,0,0,1,-9,1,1,0,0,4,8.7794876,8.7542486,0,1,0,-9,4,0,-14,48.366547,0,0,0,61,1,3,1,3,2,2019,1,2,9,1,27,20,15,1,0,1,0,24.107534,24.107534,0,0,0,0,0,0,0,0,0,0,0,3.0179789,0,0,0,57.73,54.529999,52.060001,51.689999,6,1,1,0,0,8,5,1,623,2270862,0,0,7695.0283 -4716,5835,10625,10624,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,3,9.5062771,9.3831568,0,1,0,-9,4,0,14,51.403042,0,0,0,47,1,4,1,-9,-9,2019,1,1,13,2,59,43,15,1,0,1,0,32.805756,32.805756,0,0,0,0,0,0,0,0,0,0,0,7.743989,0,0,0,52.060001,51.689999,57.73,54.529999,4,1,1,0,0,8,5,1,623,2270862,0,0,7695.0283 -4717,5836,10626,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,6.6427464,6.6629806,3,0,0,0,-9,0,-1044.5292,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5019808,6.4203062,0,0,46.18,39.470001,-9,-9,4,1,1,0,0,4,2,1,804,75762.055,0,0,376.88144 -4718,5837,10627,10629,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,8.9289789,9.045846,0,2,0,-9,16,0,7,-3.5777445,0,0,0,44,2,4,1,2,2,2019,1,1,8,0,45,40,15,1,0,1,0,12.931644,12.931644,0,0,0,0,0,0,0,0,1,1,0,8.5984793,0,0,0,47.689999,55.060001,57.16,56.150002,6,1,1,0,0,4,5,1,572.66669,1322756.8,0,0,6832.7588 -4718,5837,10628,-9,10629,10627,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-873.10089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,5,1,572.66669,1322756.8,0,0,6832.7588 -4718,5837,10629,10627,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,7.5714307,7.519608,0,2,0,-9,15,0,-7,119.02623,0,0,1,51,2,3,1,2,2,2019,1,2,6,0,18,18,15,1,0,1,0,12.170937,12.170937,0,0,0,0,0,0,0,0,1,1,0,3.3598328,0,0,0,57.16,56.150002,47.689999,55.060001,6,1,1,0,0,4,5,1,572.66669,1322756.8,0,0,6832.7588 -4719,5838,10630,10631,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,8.7256298,8.7898312,0,1,0,-9,33,0,-2,-7.5003653,0,0,0,52,2,2,1,3,2,2019,1,1,8,0,46,40,15,1,0,1,0,13.432107,13.432107,0,0,0,0,0,0,0,0,0,0,0,4.9342756,0,0,0,57.16,56.150002,59.130001,44.84,5,1,1,0,0,9,5,0,301,863338.88,0,0,2967.9241 -4719,5838,10631,10630,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,7.3495831,7.5892658,0,1,0,-9,33,0,2,-40.065098,0,0,0,50,1,4,1,-9,-9,2019,1,2,12,0,38,35,15,1,0,1,0,6.5165033,6.5165033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.130001,44.84,57.16,56.150002,6,1,1,0,0,9,5,0,301,863338.88,0,0,2967.9241 -4719,5839,10632,-9,10631,10630,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.5875559,8.7657709,0,3,0,0,0,-9,0,-943.8031,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,35,15,1,0,-9,1,12.818995,12.818995,0,0,0,0,0,0,0,0,0,0,0,3.7958236,0,0,0,40.580002,60.950001,-9,-9,4,1,1,0,0,9,5,0,422,204956.09,0,0,2605.6616 -4720,5840,10633,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,97,3,0,1,5,0,0,0,3,0,-9,0,-9,0,-903.75781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.660004,50.23,-9,-9,7,3,4,0,0,8,1,0,216,273476.81,0,0,1524.8331 -4721,5841,10634,-9,10636,10635,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.46008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,944.5,225445.06,0,0,3357.2874 -4721,5841,10635,10636,-9,-9,1,1,1,52,1,1,2,0,2,-9,2,1,0,0,3,8.484849,8.6277876,0,2,0,-9,9,0,12,143.7657,0,0,0,40,2,4,1,1,2,2019,1,2,15,3,50,45,15,1,0,1,0,11.465516,11.465516,0,0,0,0,0,0,0,0,1,1,0,5.4196262,0,0,0,43.599998,51.610001,49.119999,57.279999,3,1,1,0,0,5,4,1,944.5,225445.06,0,0,3357.2874 -4721,5841,10636,10635,-9,-9,2,1,0,40,1,1,2,0,2,-9,2,1,0,0,4,7.5967207,7.7938628,0,2,0,-9,9,0,-12,-83.449272,0,0,1,52,2,3,1,2,2,2019,1,1,7,0,13,0,15,1,0,1,0,15.306491,15.306491,0,0,0,0,0,0,0,0,1,1,0,.58276314,0,0,0,49.119999,57.279999,43.599998,51.610001,6,1,1,0,0,5,4,1,944.5,225445.06,0,0,3357.2874 -4721,5841,10637,-9,10636,10635,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.2826,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,944.5,225445.06,0,0,3357.2874 -4722,5842,10638,-9,10639,10642,3,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1142.0902,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,598.79999,-23194.111,0,0,3108.1541 -4722,5842,10639,10642,-9,-9,1,1,0,40,1,1,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,26,0,-4,-60.881428,0,0,1,44,2,4,1,3,-9,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2875528,0,0,0,50.610001,30.32,32.630001,45.459999,1,2,3,0,1,8,3,1,598.79999,-23194.111,0,0,3108.1541 -4722,5842,10640,-9,10639,10642,6,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.11859,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,1,598.79999,-23194.111,0,0,3108.1541 -4722,5842,10641,-9,10639,10642,4,1,0,16,2,1,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1030.0103,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.439999,36.259998,-9,-9,5,2,3,0,0,8,3,1,598.79999,-23194.111,0,0,3108.1541 -4722,5842,10642,10639,-9,-9,2,1,1,44,1,1,3,0,2,-9,2,1,0,0,4,8.1392975,8.0404663,0,2,0,-9,24,0,4,40.699791,0,0,0,40,3,3,3,-9,-9,2019,2,1,15,5,40,42,15,1,1,3,0,11.405814,11.405814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.630001,45.459999,50.610001,30.32,7,2,3,0,0,8,3,1,598.79999,-23194.111,0,0,3108.1541 -4723,5843,10643,10644,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,7.929781,8.0792904,0,1,0,-9,2,0,1,-18.845406,0,1,0,25,2,3,1,-9,-9,2019,1,2,13,1,37,38,15,1,0,1,0,8.9102964,8.9102964,0,0,0,0,0,0,0,0,0,0,0,.70844179,0,0,0,34.459999,61.830002,49.630001,54.220001,5,1,1,0,0,11,4,1,1301.5,-66460.75,0,0,2609.6865 -4723,5843,10644,10643,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,0,3,7.8308268,8.020854,0,1,0,-9,2,0,-1,-87.63343,-9,1,1,26,1,4,1,-9,-9,2019,1,1,6,0,50,0,15,1,0,1,0,7.6026182,7.6026182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,54.220001,34.459999,61.830002,6,1,1,0,0,11,4,1,1301.5,-66460.75,0,0,2609.6865 -4724,5844,10645,10646,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,7.4502721,7.2646465,1,0,-9,8,0,-3,-3.7010899,0,0,0,67,2,3,3,-9,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.465734,7.7036576,0,3,57.330002,53.459999,57.09,43.990002,6,1,1,0,0,2,3,1,1232,858240,0,0,2263.8433 -4724,5844,10646,10645,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.0304265,6.1149087,1,0,-9,38,0,3,-171.30014,0,0,0,64,2,3,3,2,3,2019,4,2,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.207406,5.6395984,0,0,57.09,43.990002,57.330002,53.459999,6,1,1,0,0,2,3,1,1232,858240,0,0,2263.8433 -4725,5845,10647,10648,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,9.0499525,9.2166033,0,2,0,-9,9,0,2,-15.572583,0,0,0,43,2,2,1,3,2,2019,1,2,9,0,38,40,15,1,0,1,0,25.064302,25.064302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.610001,51.040001,5,1,1,0,0,9,5,1,1120.5,458365.09,0,0,4328.6006 -4725,5845,10648,10647,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,2,8.0813007,7.6399837,0,2,0,-9,9,0,-2,2.7429461,0,0,1,45,2,3,1,-9,-9,2019,1,1,12,0,26,20,15,1,0,1,0,10.926841,10.926841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.610001,51.040001,54.959999,53.169998,6,1,1,0,0,9,5,1,1120.5,458365.09,0,0,4328.6006 -4726,5846,10649,-9,10651,10650,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.4343,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,601,502249.13,0,0,4470.749 -4726,5846,10650,10651,-9,-9,2,1,1,46,1,1,1,0,2,-9,1,1,0,0,4,.19391406,.20558365,0,2,0,-9,13,0,3,33.076958,0,0,0,43,1,4,1,2,1,2019,1,1,5,0,20,10,15,1,0,1,0,.00094446144,.00094446144,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.91,58.630001,57.16,56.150002,6,1,1,0,0,8,5,1,601,502249.13,0,0,4470.749 -4726,5846,10651,10650,-9,-9,1,1,0,43,1,1,1,0,1,-9,2,1,0,0,4,9.5748901,9.8908834,0,2,0,-9,13,0,-3,110.09666,0,0,1,46,2,4,1,1,1,2019,1,2,13,1,50,50,15,1,0,1,0,38.635662,38.635662,0,0,0,0,0,0,0,0,0,0,0,7.1815147,0,0,0,57.16,56.150002,42.91,58.630001,6,1,1,0,0,8,5,1,601,502249.13,0,0,4470.749 -4727,5847,10652,10653,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,5,9.1886511,9.2079344,0,1,0,-9,38,0,0,14.942984,0,0,0,56,1,4,1,2,2,2019,1,1,14,5,45,50,15,1,1,1,0,23.314861,23.314861,0,0,0,0,0,0,0,0,0,0,0,8.3920212,0,0,0,50.860001,52.330002,41,63.400002,5,2,3,0,0,8,5,1,965,1699194.6,0,0,6270.5591 -4727,5847,10653,10652,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,8.1630535,8.4489431,0,1,0,-9,38,0,0,-47.601055,0,0,0,56,1,5,1,-9,-9,2019,1,2,23,11,30,28,15,1,1,1,0,19.407713,19.407713,0,0,0,0,0,0,0,0,0,0,0,.58542019,0,0,0,41,63.400002,50.860001,52.330002,3,1,1,0,0,8,5,1,965,1699194.6,0,0,6270.5591 -4727,5848,10654,-9,10652,10653,3,1,1,22,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1116.5681,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,8,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.439999,64.519997,-9,-9,6,4,2,0,0,8,1,1,1168,-29429.105,0,0,0 -4728,5849,10655,10658,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,2,8.3223362,8.3545113,0,2,0,-9,10,0,-19,102.37373,0,0,1,58,2,2,1,2,2,2019,1,2,12,2,32,0,15,1,0,1,0,12.286239,12.286239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.299999,46.959999,37.66,44.23,5,1,1,0,0,5,4,1,722.75,915581.5,0,0,4553.3799 -4728,5849,10656,-9,10655,10658,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.09424,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,722.75,915581.5,0,0,4553.3799 -4728,5849,10657,-9,10655,10658,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.88971,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,722.75,915581.5,0,0,4553.3799 -4728,5849,10658,10655,-9,-9,2,1,1,58,1,0,2,0,2,-9,2,1,0,0,2,8.3767586,8.6325569,7.1254101,2,0,-9,10,0,19,-47.321617,0,0,0,39,1,2,1,2,3,2019,1,1,17,5,45,46,15,1,1,1,0,11.400565,11.400565,0,0,0,0,0,0,0,0,1,1,0,0,7.0944681,0,0,37.66,44.23,48.299999,46.959999,3,1,1,0,1,5,4,1,722.75,915581.5,0,0,4553.3799 -4729,5850,10659,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,7.7934818,7.3495121,3,0,0,0,-9,0,-880.68628,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.16555068,7.5654716,0,0,58.48,36.66,-9,-9,6,1,1,0,0,8,3,1,238,709372,0,0,1161.0348 -4730,5851,10660,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,0,4,8.9568501,9.021081,0,3,0,0,0,-9,0,-1023.0468,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,39,43,15,1,0,-9,0,24.235449,24.235449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,56.950001,-9,-9,5,1,1,0,0,4,5,0,461,77001.961,0,0,2152.7686 -4731,5852,10661,10662,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,4,8.0294285,8.794796,7.9109797,1,0,-9,7,0,5,13.77595,0,0,0,59,2,4,1,3,3,2019,1,2,6,0,35,35,15,1,0,1,0,10.856812,10.856812,1,0,0,0,0,0,0,0,0,0,0,2.4418406,8.1263781,0,0,54.200001,57.490002,46.98,59.349998,6,1,1,0,0,11,5,1,572,108976.2,0,0,4458.6626 -4731,5852,10662,10661,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.8770995,7.5025554,0,1,0,-9,7,0,-5,-21.14357,0,0,0,64,2,4,1,3,3,2019,1,1,9,0,28,28,15,1,0,1,0,8.3808222,8.3808222,0,0,0,0,0,0,0,0,0,0,0,6.0935631,0,0,0,46.98,59.349998,54.200001,57.490002,6,1,1,0,0,11,5,1,572,108976.2,0,0,4458.6626 -4731,5853,10663,-9,10662,10661,3,1,1,22,2,0,0,1,2,0,7,2,0,0,3,7.4647875,7.5334086,0,3,0,0,0,-9,0,-1030.7916,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,18,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.080002,57.259998,-9,-9,3,1,1,0,0,11,3,1,1254,35489.813,0,0,497.42188 -4731,5854,10664,-9,10662,10661,4,1,0,33,2,0,0,0,1,-9,2,1,0,0,3,8.2393732,8.4890881,0,3,0,0,0,-9,0,-936.97705,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,36,39,15,1,1,-9,1,14.927282,14.927282,0,0,0,0,0,0,0,0,0,0,0,2.8872182,0,0,0,35.599998,45.52,-9,-9,3,1,1,0,0,11,4,1,2286,116244.9,0,0,2945.5354 -4732,5855,10665,10666,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,0,4,0,7.9070401,8.2672844,1,0,-9,37,0,1,34.67432,0,0,0,56,3,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.007381,7.7309856,.38895413,3,57.16,56.150002,58.75,48.57,6,1,1,0,0,7,3,1,1072,2534960.5,0,0,1142.0537 -4732,5855,10666,10665,-9,-9,1,1,0,56,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,37,0,-1,37.883316,0,0,0,57,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,12.812381,3,58.75,48.57,57.16,56.150002,5,1,1,0,0,7,3,1,1072,2534960.5,0,0,1142.0537 -4733,5856,10667,10668,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,4.653379,4.923501,1,0,-9,6,0,-1,-9.3264084,0,0,0,75,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.5970321,0,0,54,51,57.16,56.150002,6,1,1,0,0,8,2,1,454.5,520333.44,0,0,1083.6987 -4733,5856,10668,10667,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,6.2500954,6.5176754,1,0,-9,6,0,1,89.725693,0,0,0,74,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9440687,6.20117,0,0,57.16,56.150002,54,51,2,1,1,0,0,8,2,1,454.5,520333.44,0,0,1083.6987 -4734,5857,10669,10670,-9,-9,1,1,1,32,1,0,1,0,2,-9,2,1,0,0,4,8.2885303,8.2596388,0,2,0,-9,17,0,0,-30.151052,0,0,0,32,2,3,1,2,2,2019,1,2,10,0,37,38,15,1,0,1,0,13.767456,13.767456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,41.639999,54.119999,6,1,1,0,0,4,4,1,1307.6666,94089.914,0,0,1989.7644 -4734,5857,10670,10669,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,0,3,7.0510097,7.0860634,0,2,0,-9,17,0,0,41.430016,0,0,1,32,2,4,1,2,2,2019,1,1,14,2,24,15,15,1,0,1,0,6.0025253,6.0025253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,54.119999,54.200001,57.490002,5,1,1,0,0,4,4,1,1307.6666,94089.914,0,0,1989.7644 -4734,5857,10671,-9,10670,10669,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-865.28101,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,1307.6666,94089.914,0,0,1989.7644 -4735,5858,10672,10673,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.2095327,8.1030464,0,1,0,-9,1,-9,-3,-48.741138,-9,0,0,60,2,3,1,3,3,2019,1,1,7,0,43,0,15,1,0,1,0,8.6535196,8.6535196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,50.68,49.75,6,1,1,0,0,1,4,1,539,374968.28,0,0,1833.804 -4735,5858,10673,10672,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.756947,7.6834507,0,1,0,-9,1,-9,3,-2.2907488,-9,0,0,57,2,4,1,3,3,2019,1,2,12,1,38,0,15,1,0,1,0,6.2636843,6.2636843,0,0,0,0,0,0,0,0,0,0,0,3.2195148,0,0,0,50.68,49.75,57.16,56.150002,5,1,1,0,0,1,4,1,539,374968.28,0,0,1833.804 -4736,5859,10674,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,8.4071674,7.9589233,0,3,0,0,0,-9,0,-938.4491,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,42,42,15,1,1,-9,0,9.8161497,9.8161497,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.469219,3,43.240002,46.299999,-9,-9,2,1,1,0,0,12,4,0,495,468298.69,0,0,912.95093 -4737,5860,10675,-9,-9,-9,1,1,0,60,3,0,2,0,3,-9,2,1,0,0,3,7.0043354,6.9033732,0,4,0,0,0,-9,0,-1009.8452,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,18,16,15,1,1,-9,0,6.7789636,6.7789636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.799999,47.189999,-9,-9,6,1,1,0,0,12,2,0,178,60926.789,0,0,1552.0061 -4738,5861,10676,10677,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,7.1064472,6.9649715,0,1,0,-9,10,0,2,-70.534897,0,0,0,60,2,3,3,2,2,2019,2,2,13,2,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.900002,52.639999,39.950001,53.560001,6,1,1,0,0,2,2,1,977,464083,0,0,-628.28186 -4738,5861,10677,10676,-9,-9,2,1,0,60,1,0,0,0,2,-9,10,3,0,0,3,5.0088744,4.9006748,0,1,0,-9,10,0,-2,41.035938,0,0,0,62,3,4,1,3,3,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8208551,0,0,0,39.950001,53.560001,55.900002,52.639999,5,1,1,0,0,2,2,1,977,464083,0,0,-628.28186 -4739,5862,10678,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,1,1,0,0,4,9.0499334,8.903573,5.7968807,3,0,0,0,-9,0,-932.58832,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,20,15,1,0,-9,0,58.122448,58.122448,0,0,0,0,0,0,0,2,1,1,0,8.2674055,0,6.3666177,3,44.119999,48.5,-9,-9,6,1,1,0,0,4,5,1,784,853671.38,0,0,4566.9941 -4740,5863,10679,10680,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.6864357,8.6392565,0,1,0,-9,9,0,-3,-90.308868,0,0,0,63,2,2,3,2,2,2019,2,1,7,0,19,37,15,1,0,4,0,37.806591,37.806591,0,0,0,0,0,0,0,0,0,0,0,4.1238899,0,0,0,57.73,54.529999,41.080002,27.16,6,1,1,0,0,9,4,1,501,1594241.3,0,0,1607.8452 -4740,5863,10680,10679,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,3,-128.76866,0,0,0,60,2,4,1,2,2,2019,3,2,23,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7054067,0,0,0,41.080002,27.16,57.73,54.529999,4,1,1,0,0,9,4,1,501,1594241.3,0,0,1607.8452 -4740,5864,10681,-9,10680,10679,3,1,1,36,2,0,0,0,2,-9,2,1,0,0,4,7.9728341,7.7058225,0,3,0,0,0,-9,0,-904.34064,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,7,0,15,1,0,-9,1,45.393543,45.393543,0,0,0,0,0,0,0,0,0,0,0,5.4443164,0,0,0,47.860001,53.77,-9,-9,5,1,1,0,0,9,3,1,1139,-6792.6582,0,0,41.361702 -4741,5865,10682,10683,-9,-9,1,1,1,53,1,0,1,0,3,-9,3,3,0,1,2,0,0,0,2,0,-9,33,0,1,0,0,0,0,52,3,1,3,-9,-9,2019,4,5,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.50179005,0,24.694939,1,41.720001,30.82,24.93,19.950001,5,2,3,1,0,9,1,1,1904,-57863.223,0,0,3340.9961 -4741,5865,10683,10682,-9,-9,5,1,0,52,1,0,1,0,3,-9,6,3,0,1,1,0,0,0,2,0,-9,33,0,-1,0,0,0,0,53,3,2,3,3,-9,2019,4,1,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.950001,41.720001,30.82,4,2,3,0,1,9,1,1,1904,-57863.223,0,0,3340.9961 -4741,5866,10684,-9,10683,10682,2,1,0,22,2,0,1,0,1,-9,2,1,0,0,2,0,0,0,3,0,0,0,-9,0,-1051.3169,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,6,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.919998,37.400002,-9,-9,4,2,3,0,0,9,1,1,718,-134719.02,0,0,0 -4741,5867,10685,-9,10683,10682,6,1,1,19,2,0,1,0,2,1,2,1,0,0,5,8.5288372,8.3781624,0,3,0,0,0,-9,0,-1081.873,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,47,0,15,1,0,-9,1,11.211809,11.211809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,7,2,3,0,0,9,5,1,559,57879.949,0,0,407.40494 -4741,5868,10686,10688,10683,10682,4,1,0,25,1,0,1,0,2,-9,2,1,0,0,3,6.8285313,6.7766504,0,2,0,-9,3,0,-1,-65.4394,0,1,1,26,3,5,1,3,3,2019,1,10,13,3,20,28,15,1,0,1,0,4.2222219,4.2222219,0,0,0,0,0,0,0,5.48,1,1,0,0,0,13.080222,3,39.630001,51.790001,50.540001,62.09,4,2,3,0,0,9,2,1,926.33331,24624.338,0,0,515.59778 -4741,5868,10687,-9,-9,10688,7,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.1492,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,9,2,1,926.33331,24624.338,0,0,515.59778 -4741,5868,10688,10686,-9,-9,10,1,1,26,1,0,1,0,3,-9,2,1,0,0,5,0,0,0,2,0,-9,3,0,1,-74.044815,0,1,0,25,2,3,1,-9,-9,2019,1,4,10,0,0,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1896361,0,0,0,50.540001,62.09,39.630001,51.790001,6,2,3,0,0,9,2,1,926.33331,24624.338,0,0,515.59778 -4741,5869,10689,10690,-9,-9,9,1,1,28,1,0,1,0,2,-9,2,1,0,0,5,0,0,0,2,0,-9,5,0,2,0,0,1,0,26,3,4,1,-9,-9,2019,1,8,9,1,0,104,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.645225,0,0,0,42.080002,49.330002,40.84,51.099998,7,2,3,0,0,9,1,1,497.5,43451.863,0,0,369.00281 -4741,5869,10690,10689,10683,10682,8,1,0,26,1,0,1,0,3,-9,2,1,0,0,4,0,0,0,2,0,-9,5,0,-2,0,0,1,1,28,2,5,1,3,3,2019,1,9,12,4,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8199649,0,0,0,40.84,51.099998,42.080002,49.330002,7,2,3,0,0,9,1,1,497.5,43451.863,0,0,369.00281 -4742,5870,10691,10692,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,1,2,0,0,0,1,0,-9,24,0,8,0,0,0,0,58,2,2,3,1,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,1,13.539915,33.259922,0,0,0,140.81412,14.5,1,1,0,0,0,14.119472,1,56.130001,32.400002,32.169998,54.650002,6,1,1,0,0,2,1,1,714.5,89272.492,0,0,1385.9824 -4742,5870,10692,10691,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,24,0,-8,0,0,0,0,66,1,2,3,3,1,2019,4,1,14,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.220449,1,32.169998,54.650002,56.130001,32.400002,4,1,1,0,0,2,1,1,714.5,89272.492,0,0,1385.9824 -4743,5871,10693,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-996.30817,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,27,-9,-9,7,1,1,0,0,4,1,0,709,-14406.185,0,0,2019.3839 -4744,5872,10694,-9,10695,10698,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-991.7851,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,9,3,1,801.40002,581956.25,0,0,1332.2732 -4744,5872,10695,10698,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,0,4,8.2053108,8.3182621,0,2,0,-9,9,0,-5,-73.394638,0,0,0,51,2,3,1,-9,-9,2019,1,1,12,0,39,50,15,1,0,1,0,10.577677,10.577677,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.200001,57.490002,49,50,6,1,1,0,0,9,3,1,801.40002,581956.25,0,0,1332.2732 -4744,5872,10696,-9,10695,10698,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-865.03021,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,9,3,1,801.40002,581956.25,0,0,1332.2732 -4744,5872,10697,-9,10695,10698,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1032.4265,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,9,3,1,801.40002,581956.25,0,0,1332.2732 -4744,5872,10698,10695,-9,-9,1,1,1,51,1,0,3,0,2,-9,2,1,0,0,3,6.4626122,6.7861462,0,2,0,-9,9,0,5,135.04189,0,0,0,46,1,4,1,-9,-9,2019,1,2,12,2,40,40,15,1,0,1,0,2.9855442,2.9855442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,54.200001,57.490002,6,1,1,0,0,9,3,1,801.40002,581956.25,0,0,1332.2732 -4744,5873,10699,-9,-9,-9,6,1,0,82,3,0,3,0,3,-9,4,3,0,0,3,0,8.5218801,8.4950962,4,0,0,0,-9,0,-995.35297,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7665806,8.5646191,0,0,52,45,-9,-9,6,1,1,0,0,9,3,1,1050,1699261.6,0,0,3117.8877 -4745,5874,10700,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,2,1,0,0,3,9.0646057,9.358861,0,3,0,0,0,-9,0,-901.38,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,37,37,15,1,1,-9,0,32.670994,32.670994,0,0,0,0,0,0,0,2,0,0,0,7.5088062,0,6.3914351,3,42.619999,54.509998,-9,-9,3,1,1,0,0,2,5,0,1745,1516669.8,0,0,4952.312 -4746,5875,10701,10702,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,0,4,7.0962558,7.324975,0,1,0,-9,26,0,8,-140.11459,0,0,0,55,2,3,1,2,2,2019,1,2,9,0,50,50,15,1,0,1,0,2.9436839,2.9436839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,36.799999,51.849998,6,1,1,0,0,6,3,1,1561.5,167575.91,0,0,1275.8811 -4746,5875,10702,10701,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.7644658,7.6834869,0,1,0,-9,26,0,-8,126.74551,0,0,0,63,3,4,1,3,3,2019,1,1,22,8,25,25,15,1,1,1,0,9.4840946,9.4840946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.799999,51.849998,54.200001,57.490002,4,1,1,0,0,6,3,1,1561.5,167575.91,0,0,1275.8811 -4746,5876,10703,-9,10702,10701,3,1,0,19,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1016.9613,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.060001,58.639999,-9,-9,6,1,1,0,0,6,1,1,823,129976.33,0,0,0 -4747,5877,10704,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,0,4,6.5137267,6.5558081,5.3450599,3,0,0,0,-9,0,-1039.9232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,9,10,15,1,0,-9,0,7.9852643,7.9852643,0,0,0,0,0,0,0,0,1,1,0,5.3160934,5.3522534,0,0,59.139999,52.5,-9,-9,6,1,1,0,0,10,2,0,454,192725.14,0,0,2051.2288 -4747,5878,10705,-9,-9,-9,2,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,5.5477509,5.6637096,3,0,0,0,-9,0,-1043.3025,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9285789,0,0,61.880001,44.540001,-9,-9,7,1,1,0,0,10,2,0,531,477602.78,0,0,2053.0112 -4748,5879,10706,10707,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,4,0,8.4511652,8.1945229,1,0,-9,9,0,-1,-64.332108,0,0,0,79,1,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1696777,8.3305502,0,0,55.189999,54.259998,54.360001,39.669998,6,1,1,0,0,9,4,1,800,1000634.6,0,0,4002.958 -4748,5879,10707,10706,-9,-9,2,1,0,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.625174,7.4932837,1,0,-9,9,0,1,48.667088,0,0,0,78,1,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4707851,7.4124603,0,0,54.360001,39.669998,55.189999,54.259998,6,1,1,0,0,9,4,1,800,1000634.6,0,0,4002.958 -4749,5880,10708,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,0,3,8.2989454,8.2160931,0,3,0,0,0,-9,0,-959.23657,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,43,39,15,1,0,-9,0,11.08497,11.08497,0,0,0,0,0,0,0,7,0,0,0,0,0,12.011427,3,46.049999,44.790001,-9,-9,6,1,1,0,0,6,4,0,749,165501.77,0,0,1168.6675 -4750,5881,10709,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,1,1,0,0,4,8.9427824,9.0328579,0,3,0,0,0,-9,0,-903.03809,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,12,15,15,1,0,-9,0,81.897499,81.897499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.279999,42.779999,-9,-9,6,1,1,0,0,13,5,1,597,8342227,0,0,4162.7837 -4751,5882,10710,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-951.22607,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.610001,28.48,-9,-9,3,3,4,0,1,8,1,0,324,134724.94,0,0,186.1344 -4751,5883,10711,-9,10710,-9,2,1,0,31,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1042.5708,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,57,-9,-9,5,3,4,0,0,8,1,0,384,447.207,0,0,-427.80725 -4751,5884,10712,-9,10710,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.941083,8.0223818,0,3,0,0,0,-9,0,-969.59058,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,35,0,15,1,0,-9,1,9.7796707,9.7796707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45,58,-9,-9,5,4,2,0,0,8,4,0,1159,193359.55,0,0,2082.2656 -4752,5885,10713,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,4,0,6.8384447,6.5688138,3,0,0,0,-9,0,-896.38043,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3990917,0,0,54.200001,57.490002,-9,-9,1,1,1,0,0,1,2,1,368,18003.582,0,0,1898.136 -4753,5886,10714,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1031.2529,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.360001,30.91,-9,-9,3,1,1,0,1,12,1,0,600,-99910.953,0,0,1363.0376 -4754,5887,10715,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1072.6879,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,28.18088,0,0,0,0,1,1,0,0,0,0,0,49.16,28.950001,-9,-9,7,1,1,0,0,13,1,0,1378,31389.791,0,0,2044.3301 -4755,5888,10716,-9,-9,-9,1,1,1,82,3,0,0,0,1,-9,4,3,0,0,3,0,7.2250705,7.6146688,3,0,0,0,-9,0,-888.78821,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.9292088,7.6345768,0,0,54,45,-9,-9,6,2,3,0,0,8,3,1,937,605679,0,0,2691.2344 -4756,5889,10717,10718,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,4,0,7.7114267,7.6400561,1,0,-9,41,0,-21,95.661636,0,0,0,94,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.9912472,7.887248,2.0875909,1,57.16,56.150002,63.389999,42.389999,6,1,1,0,0,7,3,1,715.5,0,0,0,3047.6157 -4756,5889,10718,10717,-9,-9,2,1,1,94,1,0,0,0,1,-9,4,3,0,0,4,0,7.680963,7.6312003,1,0,-9,41,0,21,-17.959082,0,0,0,73,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,10.739984,0,0,0,0,0,1,1,0,.15750417,7.8771448,0,0,63.389999,42.389999,57.16,56.150002,7,1,1,0,0,7,3,1,715.5,0,0,0,3047.6157 -4757,5890,10719,10720,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,8.2167854,8.2879343,1,0,-9,8,0,-3,27.027647,0,0,0,72,2,4,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,10.240386,0,0,0,0,0,1,1,0,0,7.7821603,0,0,57.419998,32.779999,57.16,56.150002,4,1,1,0,0,11,3,1,210.5,1531074.6,0,0,1766.2477 -4757,5890,10720,10719,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,3,34.467377,0,0,0,69,1,3,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,11.347383,3,57.16,56.150002,57.419998,32.779999,6,1,1,0,0,11,3,1,210.5,1531074.6,0,0,1766.2477 -4758,5891,10721,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,0,3,8.9136505,8.8824224,0,1,0,-9,14,0,-4,37.523907,0,0,1,-9,-9,-9,-9,2,3,2019,1,2,19,7,63,45,15,1,1,-9,0,10.587156,10.587156,0,0,0,0,0,0,0,2,0,0,0,4.5369372,0,5.5121741,3,46.849998,51.259998,54.200001,57.490002,6,1,1,0,0,4,5,1,796,-48680.086,0,0,1826.1414 -4758,5892,10722,-9,-9,-9,2,1,0,47,2,0,0,0,2,-9,2,1,0,0,4,7.9828949,8.155673,0,1,0,-9,14,0,4,-84.641258,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,0,44,41,15,1,0,-9,0,12.354919,12.354919,0,0,0,0,0,0,0,2,0,0,0,0,0,5.7085633,3,54.200001,57.490002,46.849998,51.259998,5,1,1,0,0,4,5,1,187,494705.03,0,0,1578.7599 -4759,5893,10723,-9,10724,10725,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.08362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,5,1,335,2130992.3,0,0,7903.9243 -4759,5893,10724,10725,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,9.2687302,8.9558096,0,2,0,-9,8,0,-10,46.375473,0,0,0,55,1,4,1,2,2,2019,1,2,12,0,38,33,15,1,0,1,0,31.260569,31.260569,0,0,0,0,0,0,0,0,0,0,0,2.3771298,0,0,0,57.16,56.150002,38.82,63.209999,6,1,1,0,0,8,5,1,335,2130992.3,0,0,7903.9243 -4759,5893,10725,10724,-9,-9,2,1,1,55,1,0,2,0,1,-9,1,1,0,0,4,9.2277575,9.4866638,0,2,0,-9,8,0,10,-52.860249,0,0,0,45,1,4,1,3,3,2019,1,1,11,1,40,0,15,1,0,1,0,38.025249,38.025249,0,0,0,0,0,0,0,0,0,0,0,8.1292534,0,0,0,38.82,63.209999,57.16,56.150002,6,1,1,0,0,8,5,1,335,2130992.3,0,0,7903.9243 -4759,5893,10726,-9,10724,10725,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.901,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,335,2130992.3,0,0,7903.9243 -4760,5894,10727,-9,-9,-9,1,1,1,25,2,0,1,0,2,1,2,1,0,0,5,6.4519734,6.446125,0,3,0,0,0,-9,0,-1037.6617,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,12,0,15,1,1,-9,1,6.8475761,6.8475761,0,0,0,0,0,0,0,27.5,1,1,0,0,0,16.154703,3,49.029999,50.529999,-9,-9,3,2,3,0,0,6,2,1,393,0,0,0,285.1528 -4761,5895,10728,10729,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,0,5,8.2398052,8.2864161,0,2,0,-9,3,0,-6,61.527519,0,0,1,36,2,4,1,-9,-9,2019,1,2,6,0,26,40,15,1,0,1,0,14.159366,14.159366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,57.16,56.150002,6,1,1,0,1,8,5,1,1187.3334,397393.56,0,0,4857.7837 -4761,5895,10729,10728,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,8.9803801,8.8606577,0,2,0,-9,3,0,6,-65.577934,0,0,0,30,1,5,1,-9,-9,2019,1,1,6,0,42,45,15,1,0,1,0,20.891312,20.891312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.73,58.82,6,1,1,0,0,8,5,1,1187.3334,397393.56,0,0,4857.7837 -4761,5895,10730,-9,10728,10729,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.5383,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,5,1,1187.3334,397393.56,0,0,4857.7837 -4762,5896,10731,10732,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,9.4091663,9.6447859,0,1,0,-9,6,0,3,45.762592,0,0,0,57,2,4,1,-9,-9,2019,1,1,10,1,36,36,15,1,0,1,0,37.161278,37.161278,0,0,0,0,0,0,0,0,0,0,0,6.7775669,0,0,0,51,48,60.119999,54.799999,5,1,1,0,0,11,5,1,1438.5,1866372,0,0,7199.5391 -4762,5896,10732,10731,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,6.8067904,7.5205355,6.3541088,1,0,-9,6,0,-3,173.83452,0,0,0,60,2,3,1,3,3,2019,1,2,1,0,7,18,15,1,0,1,0,23.170982,23.170982,0,0,0,0,0,0,0,0,0,0,0,7.3273058,6.2349672,0,0,60.119999,54.799999,51,48,6,1,1,0,0,11,5,1,1438.5,1866372,0,0,7199.5391 -4763,5897,10733,-9,10735,10736,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.40228,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,1,0,548.5,59269.074,0,0,2361.915 -4763,5897,10734,-9,10735,10736,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1018.2487,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,1,0,548.5,59269.074,0,0,2361.915 -4763,5897,10735,10736,-9,-9,2,1,0,32,1,1,2,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,5,0,-19,0,0,0,1,51,3,2,3,-9,-9,2019,4,1,17,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.703349,1,44.740002,15.29,47.459999,35.18,6,1,1,0,0,2,1,0,548.5,59269.074,0,0,2361.915 -4763,5897,10736,10735,-9,-9,1,1,1,51,1,1,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,5,0,19,0,0,0,0,32,2,1,3,-9,3,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.4186635,2,47.459999,35.18,44.740002,15.29,2,1,1,0,0,2,1,0,548.5,59269.074,0,0,2361.915 -4764,5898,10737,-9,-9,-9,1,1,0,55,3,0,1,0,2,-9,1,1,0,0,4,6.8896742,7.4704032,6.8763576,4,0,0,0,-9,0,-967.58167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,27,30,15,1,0,-9,0,4.5310569,4.5310569,0,0,0,0,0,0,0,0,1,0,1,7.2872863,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,2,1,421,27293.078,0,0,193.11133 -4764,5899,10738,-9,10737,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,0,4,6.8656673,7.0788212,0,3,0,0,0,-9,0,-920.23193,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,59,-9,-9,6,1,1,0,0,9,2,1,2045,-4866.7754,0,0,1373.2433 -4765,5900,10739,10740,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,7.3912764,6.8003559,1,0,-9,38,0,1,-51.283871,0,0,0,60,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7422605,6.6047254,0,0,60.119999,54.799999,60.119999,54.799999,6,1,1,0,0,2,5,1,670,1474919.9,0,0,3989.8579 -4765,5900,10740,10739,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,9.2900505,9.2928352,7.0687757,1,0,-9,8,0,-1,-55.163322,0,0,0,61,2,4,3,3,3,2019,2,2,7,0,40,40,15,1,0,4,0,28.028248,28.028248,0,0,0,0,0,0,0,0,0,0,0,0,7.5752521,0,0,60.119999,54.799999,60.119999,54.799999,6,1,1,0,0,2,5,1,670,1474919.9,0,0,3989.8579 -4766,5901,10741,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,0,2,0,8.0051956,8.2465286,3,0,0,0,-9,0,-948.97858,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9305983,7.8398581,0,0,44.77,35.240002,-9,-9,5,1,1,0,0,2,4,1,951,394717.84,0,0,3561.0171 -4767,5902,10742,10744,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,6.870553,6.8115573,0,2,0,-9,7,0,-1,92.72139,0,0,0,46,2,2,3,2,2,2019,2,1,13,2,19,18,15,1,0,3,0,6.4764848,6.4764848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,53.150002,48.689999,42.990002,5,1,1,0,1,6,2,0,918.66669,-81561.281,0,0,846.8512 -4767,5902,10743,-9,10742,10744,4,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.3208,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,0,6,2,0,918.66669,-81561.281,0,0,846.8512 -4767,5902,10744,10742,-9,-9,1,1,1,46,1,0,1,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,7,0,1,54.057838,0,0,0,45,2,3,1,-9,-9,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.689999,42.990002,45.75,53.150002,4,1,1,1,1,6,2,0,918.66669,-81561.281,0,0,846.8512 -4767,5903,10745,-9,10742,10744,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,2,6.4528093,6.5189724,0,3,0,0,0,-9,0,-930.95996,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,17,16,15,1,0,-9,1,4.5546718,4.5546718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.439999,-9,-9,6,1,1,0,0,6,2,0,1165,130489,0,0,-63.697742 -4768,5904,10746,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1027.9713,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,-9,-9,4,1,1,0,0,13,1,0,1322,2902.8914,0,0,1748.4575 -4768,5905,10747,-9,10746,-9,2,1,0,26,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-917.52954,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.10282,3,30.469999,60.560001,-9,-9,5,1,1,1,1,13,1,0,445,-170141,0,0,1459.7904 -4769,5906,10748,-9,10750,10751,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.52405,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,0,595,496639.31,0,0,2569.1038 -4769,5906,10749,-9,10750,10751,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.5756,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,595,496639.31,0,0,2569.1038 -4769,5906,10750,10751,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,0,4,8.7149582,8.6163378,0,2,0,-9,6,0,-1,-45.766399,0,0,1,39,2,3,3,-9,-9,2019,2,1,14,3,38,38,15,1,0,3,0,20.997929,20.997929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,61.27,46.080002,57.200001,6,1,1,0,0,10,3,0,595,496639.31,0,0,2569.1038 -4769,5906,10751,10750,-9,-9,1,1,1,39,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,1,14.185632,0,0,0,38,1,4,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,48.75,61.27,5,1,1,0,0,10,3,0,595,496639.31,0,0,2569.1038 -4770,5907,10752,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,0,3,7.0644135,7.2503972,5.0572376,4,0,0,0,-9,0,-859.61584,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,27,28,15,1,0,-9,0,4.7364593,4.7364593,0,0,0,0,0,0,0,0,1,1,0,5.3511376,0,0,0,46.259998,42.16,-9,-9,5,1,1,0,0,13,2,0,450,91511.266,0,0,979.05328 -4770,5907,10753,-9,10752,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1040.2493,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,13,2,0,450,91511.266,0,0,979.05328 -4771,5908,10754,-9,-9,-9,1,1,1,77,2,0,0,0,1,-9,4,3,0,0,4,5.9866266,8.1843338,7.8445392,1,0,-9,6,0,18,-32.637318,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,10,2,4,7,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9915128,7.6099849,0,0,44.580002,55.459999,51.41,56.150002,6,1,1,0,0,10,4,1,1222,929722.5,0,0,2196.3569 -4771,5909,10755,-9,-9,-9,2,1,1,59,2,0,0,0,2,-9,2,1,0,0,3,8.0012846,7.8599362,0,1,0,-9,6,0,-18,1.7960813,0,0,0,-9,-9,-9,-9,3,2,2019,2,1,5,0,28,52,15,1,0,-9,0,9.5362902,9.5362902,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,44.580002,55.459999,6,1,1,0,0,10,4,1,2220,200660.44,0,0,380.40564 -4772,5910,10756,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,3,8.711874,8.7901564,0,3,0,0,0,-9,0,-990.7171,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,35,41,15,1,0,-9,0,21.561817,21.561817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,-9,-9,3,4,2,0,0,7,5,1,1512,109554.01,0,0,1377.2186 -4773,5911,10757,10758,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,8.300581,7.9894614,0,1,0,-9,3,0,-4,37.590687,0,0,0,49,2,3,1,-9,-9,2019,1,1,10,0,18,22,15,1,0,1,0,24.891916,24.891916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,38.5,55.029999,7,1,1,0,0,10,5,1,249.5,707235.94,0,0,4896.416 -4773,5911,10758,10757,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,0,3,8.9735775,9.1348581,0,1,0,-9,3,0,4,36.451694,0,0,0,45,2,3,1,2,2,2019,1,2,10,0,40,44,15,1,0,1,0,26.695675,26.695675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,55.029999,57.330002,53.459999,5,1,1,0,0,10,5,1,249.5,707235.94,0,0,4896.416 -4774,5912,10759,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,3,9.1331053,9.0433884,0,3,0,0,0,-9,0,-1012.7037,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,41,37,15,1,0,-9,0,21.434856,21.434856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.419998,59.310001,-9,-9,3,1,1,0,0,12,5,1,261,321366.34,0,0,4197.6323 -4775,5913,10760,10761,-9,-9,1,1,1,74,1,0,2,0,2,-9,4,3,0,0,2,0,7.7675991,7.4483795,2,0,-9,53,0,3,162.70174,0,0,0,71,2,3,1,3,3,2019,3,2,17,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7439366,7.6287503,0,0,49,36,47.759998,48.16,6,1,1,0,0,7,3,1,517,2430798,0,0,3523.6582 -4775,5913,10761,10760,-9,-9,2,1,0,71,1,0,2,0,2,-9,1,1,0,0,3,8.1640902,8.3125572,0,2,0,-9,53,0,-3,2.5652843,0,0,0,74,2,2,3,-9,-9,2019,2,1,15,4,10,7,15,1,1,4,0,38.69479,38.69479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.759998,48.16,49,36,6,1,1,0,0,7,3,1,517,2430798,0,0,3523.6582 -4776,5914,10762,-9,-9,-9,3,1,0,22,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1017.6776,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.470001,48.389999,-9,-9,7,1,1,0,0,13,1,1,1909,117496.38,0,0,77.514694 -4776,5915,10763,-9,-9,-9,4,1,0,20,2,0,1,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1128.4242,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,1,0,13,1,1,163,-10079.761,0,0,0 -4777,5916,10764,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1063.4564,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.529999,23.690001,-9,-9,4,1,1,0,0,7,1,0,308,-63193.105,0,0,2121.116 -4778,5917,10765,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1004.4321,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,38,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6563339,0,0,0,45.75,62.869999,-9,-9,6,1,1,1,0,9,1,1,1117,7421.0791,0,0,925.4436 -4778,5918,10766,-9,-9,-9,2,1,1,33,2,0,0,0,1,-9,2,1,0,0,4,8.6713505,8.7850838,0,3,0,-9,0,-9,0,-917.3194,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,40,0,15,1,1,-9,0,16.454357,16.454357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,49.389999,-9,-9,6,1,1,0,0,9,5,1,1442,100680.88,0,0,3331.8469 -4779,5919,10767,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,7,2,0,0,3,6.5123134,6.9333944,0,4,0,0,0,-9,0,-964.56097,1,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,6,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.09,44.849998,-9,-9,1,3,4,0,1,8,2,0,978,0,0,0,513.85364 -4779,5919,10768,-9,10767,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1103.9199,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,43.25,-9,-9,5,3,4,0,0,8,2,0,978,0,0,0,513.85364 -4779,5920,10769,-9,10767,-9,2,1,1,21,2,0,1,0,2,1,2,1,0,0,5,6.996932,7.1703124,0,3,0,0,0,-9,0,-916.78345,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,1,50,0,15,1,0,-9,1,3.315181,3.315181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.16,52.619999,-9,-9,7,3,4,0,0,8,2,0,430,-108282.21,0,0,-486.52625 -4780,5921,10770,-9,10772,10773,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.26556,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,1,0,491.79999,-64091.234,0,0,2454.6729 -4780,5921,10771,-9,10772,10773,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-978.70715,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,2,1,0,491.79999,-64091.234,0,0,2454.6729 -4780,5921,10772,10773,-9,-9,1,1,0,42,1,0,3,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,8,0,5,0,0,0,1,37,2,4,3,3,3,2019,4,2,27,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.150002,18.09,35.630001,62.189999,1,1,1,0,0,2,1,0,491.79999,-64091.234,0,0,2454.6729 -4780,5921,10773,10772,-9,-9,2,1,1,37,1,0,3,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,8,0,-5,0,0,0,0,42,2,1,3,3,2,2019,4,1,22,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,17.56711,1,35.630001,62.189999,32.150002,18.09,3,1,1,1,0,2,1,0,491.79999,-64091.234,0,0,2454.6729 -4780,5921,10774,-9,10772,10773,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1071.4781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,1,0,491.79999,-64091.234,0,0,2454.6729 -4781,5922,10775,-9,-9,-9,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,2,7.3693423,7.4348135,0,3,0,0,0,-9,0,-1037.1447,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,25,10,19,0,15,1,1,-9,1,8.4571714,8.4571714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,34.240002,-9,-9,3,3,4,0,1,4,3,0,1213,-92826.094,0,0,1738.4436 -4782,5923,10776,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.2372036,8.4690943,0,3,0,0,0,-9,0,-971.5224,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,37,15,1,0,-9,0,11.804852,11.804852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.049999,-9,-9,5,1,1,0,0,2,4,1,283,141837.38,0,0,-122.99204 -4783,5924,10777,10778,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,1,57.958649,0,0,0,65,2,2,3,3,2,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,1,0,2.2352953,0,0,0,0,0,1,1,0,5.421423,0,0,0,29.93,46.939999,37.02,37.369999,6,1,1,0,0,9,2,1,623.5,1039869.1,0,0,1181.4377 -4783,5924,10778,10777,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,2,0,7.470881,7.1149659,1,0,-9,6,0,-1,-31.220005,0,0,0,66,3,3,3,3,2,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4698162,7.1194224,0,1,37.02,37.369999,29.93,46.939999,6,1,1,0,0,9,2,1,623.5,1039869.1,0,0,1181.4377 -4784,5925,10779,10780,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,9.4634771,9.2949476,0,2,0,-9,27,0,2,8.2796621,0,0,0,48,2,4,3,2,2,2019,2,1,12,1,43,40,15,1,0,3,0,30.011412,30.011412,0,0,0,0,0,0,0,2,1,1,0,3.1189942,0,3.2858341,3,45.009998,57.459999,54.200001,57.490002,6,1,1,0,0,12,5,1,288,318884.81,0,0,3394.8608 -4784,5925,10780,10779,-9,-9,1,1,0,48,1,0,1,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,27,0,-2,-82.911095,0,0,0,50,1,4,1,1,2,2019,3,2,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,132.22232,3,54.200001,57.490002,45.009998,57.459999,5,1,1,0,0,12,5,1,288,318884.81,0,0,3394.8608 -4784,5926,10781,-9,10780,10779,5,1,1,20,2,0,1,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-969.86017,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,21,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4820027,0,0,3,31.540001,60.02,-9,-9,2,1,1,0,1,12,1,1,282,-77482.961,0,0,-1372.2568 -4785,5927,10782,10783,-9,-9,2,1,1,45,1,0,0,0,3,-9,2,1,0,0,2,7.7757754,7.9612417,0,1,0,-9,30,0,0,0,0,0,0,45,2,2,1,2,3,2019,1,1,8,0,40,40,15,1,0,1,0,6.6534872,6.6534872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.400002,41.419998,39.48,44.09,5,1,1,0,0,7,4,0,641,343473.28,0,0,1636.9391 -4785,5927,10783,10782,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,2,8.0680141,7.9941516,0,1,0,-9,30,0,0,0,0,0,0,45,3,2,1,3,3,2019,1,2,11,0,40,38,15,1,0,1,0,7.8845181,7.8845181,0,0,0,0,0,0,0,2,0,0,0,0,0,2.166563,3,39.48,44.09,51.400002,41.419998,6,1,1,0,0,7,4,0,641,343473.28,0,0,1636.9391 -4785,5928,10784,-9,10783,10782,3,1,1,22,2,0,0,0,2,0,7,2,0,0,3,7.9833808,7.6912103,4.6664181,3,0,0,0,-9,0,-1062.0524,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7638049,0,0,0,52.57,52.889999,-9,-9,6,1,1,0,0,7,4,0,2036,119221.36,0,0,1335.6595 -4785,5929,10785,-9,10783,10782,4,1,0,19,2,0,0,0,2,1,2,1,0,0,1,6.6089149,6.7663546,4.3230195,3,0,0,0,-9,0,-985.34155,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,3,30,0,15,1,0,-9,1,3.3059158,3.3059158,0,0,0,0,0,0,0,0,0,0,0,3.9521422,0,0,0,45.669998,29.559999,-9,-9,4,1,1,0,0,7,2,0,898,-95092.516,0,0,217.19916 -4786,5930,10786,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1089.9106,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.68,11.24,-9,-9,6,3,4,0,0,8,1,0,1569,1754252.5,0,0,2169.6978 -4786,5931,10787,-9,-9,-9,2,1,0,58,2,0,0,0,3,-9,6,3,0,0,3,0,0,0,3,0,0,0,-9,0,-939.21582,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,48,-9,-9,5,3,4,0,0,8,1,0,618,121450.51,0,0,639.61737 -4787,5932,10788,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,2,1,0,0,3,7.6171536,8.3150034,7.6775475,3,0,0,0,-9,0,-1119.2179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,19,19,15,1,0,-9,0,17.026236,17.026236,0,0,0,0,0,0,0,0,1,1,0,0,7.8355327,0,0,53.98,50.869999,-9,-9,5,1,1,0,0,9,4,1,1719,2998180.5,0,0,1996.1792 -4788,5933,10789,-9,-9,-9,1,1,1,39,3,0,2,0,2,-9,2,1,0,0,4,8.4034119,8.2113428,0,4,0,-9,0,1,0,-1051.2986,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,10,48,48,15,1,1,-9,0,9.1034412,9.1034412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.990002,60.169998,-9,-9,1,1,1,0,1,1,3,1,325.66666,-16121.551,0,0,2204.3567 -4788,5933,10790,-9,10792,10789,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-962.16803,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,325.66666,-16121.551,0,0,2204.3567 -4788,5933,10791,-9,10792,10789,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-938.12177,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,3,1,325.66666,-16121.551,0,0,2204.3567 -4788,5934,10792,-9,-9,-9,2,1,0,38,3,0,2,0,1,-9,2,1,0,0,5,8.2892075,8.3351736,0,4,0,-9,0,1,0,-898.84485,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,30,1,15,1,1,-9,0,15.933781,15.933781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.709999,60.599998,-9,-9,4,1,1,0,1,1,4,1,831,131459.75,0,0,1660.4794 -4789,5935,10793,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1095.0188,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.68,32.5,-9,-9,3,1,1,0,1,9,1,0,762,241797.09,0,0,-293.48489 -4789,5935,10794,-9,10793,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1057.556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,762,241797.09,0,0,-293.48489 -4790,5936,10795,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,0,3,8.1399536,8.2429276,0,2,0,-9,2,0,2,77.925232,0,0,1,-9,-9,-9,-9,2,-9,2019,1,2,11,0,50,60,15,1,0,-9,0,7.2859025,7.2859025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.16,42.18,11.62,63.59,6,1,1,0,0,2,3,1,94,115417.73,0,0,1005.4615 -4790,5937,10796,-9,10797,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1022.2837,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,2,3,1,270.5,-149138.02,0,0,702.76569 -4790,5937,10797,-9,-9,-9,2,1,0,37,2,0,1,0,2,-9,2,1,0,0,3,7.7450356,7.9057231,0,2,0,-9,2,0,-2,-207.24707,-9,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,33,12,23,0,15,1,1,-9,0,15.089088,15.089088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.62,63.59,49.16,42.18,4,1,1,0,0,2,3,1,270.5,-149138.02,0,0,702.76569 -4791,5938,10798,10799,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,8.797389,8.5040588,0,2,0,-9,11,0,6,-.2257763,0,0,0,43,1,5,1,2,1,2019,1,2,22,8,45,47,15,1,1,1,0,13.883017,13.883017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.16,49.779999,45.25,53.639999,3,1,1,0,0,7,4,1,788.66669,284764.13,0,0,2736.2847 -4791,5938,10799,10798,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,0,5,7.4356041,7.4121337,0,2,0,-9,11,0,-6,45.221821,0,0,1,49,2,3,1,2,1,2019,1,1,15,5,25,20,15,1,1,1,0,6.9939613,6.9939613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.25,53.639999,36.16,49.779999,3,1,1,0,1,7,4,1,788.66669,284764.13,0,0,2736.2847 -4791,5938,10800,-9,10799,10798,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.5555,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,788.66669,284764.13,0,0,2736.2847 -4792,5939,10801,10802,-9,-9,1,1,1,54,1,0,2,0,3,-9,2,1,0,0,3,7.9991918,8.1388121,0,2,0,-9,28,0,2,21.088898,0,0,0,52,3,2,1,3,3,2019,1,2,7,0,37,37,15,1,0,1,0,9.6834373,9.6834373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,43.02,47.119999,5,1,1,0,0,13,3,1,220.75,2314322.5,0,0,1871.8914 -4792,5939,10802,10801,-9,-9,2,1,0,52,1,0,2,0,3,-9,2,1,0,0,2,5.5570617,5.5766129,0,2,0,-9,27,0,-2,17.331993,0,0,0,54,3,3,1,3,3,2019,1,1,19,7,5,5,15,1,1,1,0,6.6920686,6.6920686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.02,47.119999,60.290001,52.110001,2,1,1,0,0,13,3,1,220.75,2314322.5,0,0,1871.8914 -4792,5939,10803,-9,10802,10801,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.2128,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,220.75,2314322.5,0,0,1871.8914 -4792,5939,10804,-9,10802,10801,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-900.55908,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,13,3,1,220.75,2314322.5,0,0,1871.8914 -4792,5940,10805,-9,10802,10801,3,1,0,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1161.3258,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.830002,57.259998,-9,-9,5,1,1,0,0,13,1,1,1662,-180484.58,0,0,0 -4793,5941,10806,10807,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-2,0,0,0,0,77,1,4,3,1,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.439999,44.509998,60.119999,54.799999,6,1,1,0,0,12,1,1,493.5,601104.56,0,0,1406.6232 -4793,5941,10807,10806,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,2,0,0,0,0,75,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,43.439999,44.509998,6,1,1,0,0,12,1,1,493.5,601104.56,0,0,1406.6232 -4794,5942,10808,10809,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,4,0,7.0593848,6.5514436,1,0,-9,41,0,-6,62.860497,0,0,0,65,1,2,3,2,1,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8493774,6.4739313,0,0,48.540001,42.849998,59.150002,44.82,6,1,1,0,0,2,3,1,752,1474246,0,0,2406.4866 -4794,5942,10809,10808,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,2,0,8.2066755,8.2483673,1,0,-9,40,0,6,-36.36964,0,0,0,59,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3991935,7.8332558,0,0,59.150002,44.82,48.540001,42.849998,6,1,1,0,0,2,3,1,752,1474246,0,0,2406.4866 -4795,5943,10810,10811,-9,-9,1,1,0,38,1,0,0,0,2,1,2,1,0,0,4,8.2357626,8.2019854,0,1,0,-9,10,0,1,-34.469826,-9,0,1,37,2,4,1,3,3,2019,1,2,2,0,43,0,15,1,0,1,0,8.5517187,8.5517187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,35.610001,65.82,7,1,1,0,0,2,5,1,496,65557.531,0,0,3236.4858 -4795,5943,10811,10810,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,0,4,8.7287979,8.962244,0,1,0,-9,10,0,-1,97.194916,0,0,0,38,2,4,1,2,2,2019,1,1,12,0,41,43,15,1,0,1,0,19.973839,19.973839,0,0,0,0,0,0,0,0,0,0,0,4.372189,0,0,0,35.610001,65.82,58.150002,52.91,5,1,1,0,0,2,5,1,496,65557.531,0,0,3236.4858 -4796,5944,10812,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,3,0,6.2690167,6.778686,3,0,0,0,-9,0,-862.55688,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2612977,0,0,51.759998,47.75,-9,-9,6,1,1,0,0,7,2,1,455,347229.41,0,0,714.56335 -4797,5945,10813,10814,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,6.6328773,7.8337355,7.2286782,1,0,-9,34,0,14,-103.78288,0,0,0,53,3,2,1,3,-9,2019,1,1,9,0,16,0,15,1,0,1,0,6.4889507,6.4889507,0,0,0,0,0,0,0,2,1,1,0,0,7.3335967,1.117813,3,55.959999,49.93,46.57,46.630001,6,1,1,0,0,9,3,1,1857.5,367181.72,0,0,2988.5107 -4797,5945,10814,10813,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,2,6.7653246,6.7785378,4.7910581,1,0,-9,34,0,-14,-16.059093,0,0,0,67,2,3,1,2,2,2019,1,2,13,2,35,6,15,1,0,1,0,2.9432008,2.9432008,0,0,0,0,0,0,0,0,1,1,0,5.0746765,4.8041172,0,0,46.57,46.630001,55.959999,49.93,5,1,1,0,0,9,3,1,1857.5,367181.72,0,0,2988.5107 -4798,5946,10815,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,1,4,0,5.7545519,5.884613,3,0,0,0,-9,0,-942.08154,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.6027126,0,0,0,0,63.827175,2,1,1,0,3.1354256,6.0402451,10.236756,3,61.299999,29.75,-9,-9,7,1,1,0,0,5,2,0,224,108682,0,0,834.46283 -4799,5947,10816,-9,-9,-9,1,1,0,26,2,0,2,0,2,-9,2,1,0,0,4,8.6244154,8.607069,0,4,0,0,0,-9,0,-938.83453,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,15.176031,15.176031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,6,4,0,1052.3334,-14619.426,0,0,1734.0103 -4799,5947,10817,-9,10816,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-921.88074,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,0,1052.3334,-14619.426,0,0,1734.0103 -4799,5947,10818,-9,10816,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-924.34656,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,0,1052.3334,-14619.426,0,0,1734.0103 -4800,5948,10819,10820,-9,-9,2,1,0,62,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,46,0,-2,-29.16181,0,0,0,64,3,3,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.685387,2,49,48,51,48,5,1,1,0,0,6,3,1,451.5,577875.94,0,0,1722.0757 -4800,5948,10820,10819,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,0,3,7.834022,7.5603414,0,1,0,-9,46,0,2,-45.493835,0,0,0,62,3,3,3,3,3,2019,2,2,10,1,38,38,15,1,0,3,0,6.6082649,6.6082649,0,0,0,0,0,0,0,71.5,1,1,0,.13360639,0,85.07373,2,51,48,49,48,5,1,1,0,0,6,3,1,451.5,577875.94,0,0,1722.0757 -4801,5949,10821,-9,-9,-9,1,1,0,33,2,1,3,0,2,-9,3,3,0,1,4,0,0,0,4,0,0,0,-9,0,-956.80743,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,25,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.9048591,3,18.870001,64.379997,-9,-9,5,1,1,1,1,2,1,0,1162.5,-24522.727,0,0,1813.4822 -4801,5949,10822,-9,10821,-9,4,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.255,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,1162.5,-24522.727,0,0,1813.4822 -4802,5950,10823,10825,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,5,9.7075319,9.4843512,0,2,0,-9,7,0,-1,-113.99486,0,0,0,48,2,5,1,3,3,2019,1,1,13,3,83,43,15,1,0,1,0,18.812494,18.812494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,51.91,53.27,6,1,1,0,0,1,5,1,1350.3334,1483571.4,0,0,6951.4072 -4802,5950,10824,-9,10823,10825,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.7171,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,5,1,1350.3334,1483571.4,0,0,6951.4072 -4802,5950,10825,10823,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,5,9.2098436,8.9967594,0,2,0,-9,7,0,1,4.8097816,0,0,0,47,1,5,1,2,3,2019,1,2,6,0,37,37,15,1,0,1,0,23.400116,23.400116,0,0,0,0,0,0,0,0,0,0,0,1.2417892,0,0,0,51.91,53.27,54.099998,59.110001,7,1,1,0,0,1,5,1,1350.3334,1483571.4,0,0,6951.4072 -4803,5951,10826,10827,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,8.4186077,8.3725166,0,1,0,-9,37,0,2,66.389343,0,0,0,60,2,3,3,3,3,2019,2,1,10,0,35,35,15,1,0,4,0,13.842838,13.842838,0,0,0,0,0,0,0,2,0,0,0,2.2619445,0,7.2582026,3,48.259998,50.700001,60.200001,39.82,4,1,1,0,0,9,4,1,794.5,960562.5,0,0,2183.0791 -4803,5951,10827,10826,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,0,3,0,6.3518682,5.9864278,1,0,-9,37,0,-2,-38.605721,0,0,0,62,2,3,1,2,1,2019,3,2,7,0,0,23,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5270696,6.3125286,0,0,60.200001,39.82,48.259998,50.700001,6,1,1,0,0,9,4,1,794.5,960562.5,0,0,2183.0791 -4803,5952,10828,-9,10827,10826,3,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,7.7627926,8.0269957,0,3,0,0,0,-9,0,-1038.5962,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,38,15,1,0,-9,1,9.0821915,9.0821915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.490002,55.369999,-9,-9,4,1,1,0,0,9,3,1,477,357974.78,0,0,1736.2917 -4804,5953,10829,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,7.2919579,7.2594976,3,0,0,0,-9,0,-1029.3597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6124578,7.2710276,0,0,53.07,45.73,-9,-9,5,1,1,0,0,6,2,1,166,240909.14,0,0,1324.0278 -4805,5954,10830,-9,10831,10832,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.7451,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,2,1,970.25,524086.22,0,0,3669.5127 -4805,5954,10831,10832,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,7.197598,7.2477369,0,2,0,-9,16,0,0,43.172089,0,0,1,46,2,4,1,3,3,2019,1,2,12,0,31,37,15,1,0,1,0,6.6284709,6.6284709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,54.200001,57.490002,5,1,1,0,0,5,2,1,970.25,524086.22,0,0,3669.5127 -4805,5954,10832,10831,-9,-9,2,1,1,46,1,0,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,16,0,9,-11.209068,0,0,0,37,2,4,1,2,2,2019,1,1,7,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9123487,0,0,0,54.200001,57.490002,48.279999,60.18,3,1,1,0,0,5,2,1,970.25,524086.22,0,0,3669.5127 -4805,5954,10833,-9,10831,10832,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.7192,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,2,1,970.25,524086.22,0,0,3669.5127 -4806,5955,10834,10835,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,1,1,0,0,0,2,0,-9,12,0,-1,63.783379,0,0,1,37,1,4,1,2,3,2019,1,1,23,10,0,24,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.369999,19.65,47.290001,55.389999,5,2,3,0,0,13,2,1,2077.25,149507.41,0,0,2094.0984 -4806,5955,10835,10834,-9,-9,1,1,1,37,1,0,2,0,1,-9,1,1,0,0,4,7.4832025,7.7067704,0,2,0,-9,11,0,1,21.203863,0,0,0,36,2,1,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,6.2670989,6.2670989,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.290001,55.389999,43.369999,19.65,6,2,3,0,0,13,2,1,2077.25,149507.41,0,0,2094.0984 -4806,5955,10836,-9,10834,10835,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.57831,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,2,3,0,0,13,2,1,2077.25,149507.41,0,0,2094.0984 -4806,5955,10837,-9,10834,10835,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-831.94135,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,13,2,1,2077.25,149507.41,0,0,2094.0984 -4807,5956,10838,-9,-9,-9,1,1,0,45,2,0,0,0,1,-9,2,1,0,0,4,8.8642044,8.6930237,0,3,0,0,0,-9,0,-1150.1636,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,45,48,15,1,0,-9,0,20.552715,20.552715,0,0,0,0,0,0,0,2,0,0,0,2.3533225,0,10.222579,3,49.52,55.68,-9,-9,5,1,1,0,0,8,5,1,446,1031782.9,0,0,2626.6724 -4808,5957,10839,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,4,8.4241772,8.6921587,0,3,0,0,0,-9,0,-969.06677,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,41,40,15,1,1,-9,0,13.395502,13.395502,0,0,0,0,0,0,0,0,0,0,0,7.1758785,0,0,0,36.040001,53.470001,-9,-9,6,1,1,0,0,9,5,0,1312,387330.5,0,0,1954.2607 -4809,5958,10840,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,6.2004418,6.2542925,3,0,0,0,-9,0,-1042.3367,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4612088,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,10,2,1,153,358698.44,0,0,352.12347 -4810,5959,10841,-9,-9,-9,1,1,1,28,2,0,1,0,2,-9,2,1,0,0,3,8.283639,8.2859917,0,4,0,0,0,-9,0,-1034.2942,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,38,15,1,0,-9,0,12.67007,12.67007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.720001,40.360001,-9,-9,6,1,1,0,0,8,4,0,429.5,49160.148,0,0,1184.5933 -4810,5959,10842,-9,-9,10841,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1116.6587,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,4,0,429.5,49160.148,0,0,1184.5933 -4811,5960,10843,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,0,4,8.3288336,7.954577,0,3,0,0,0,-9,0,-993.75476,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,80,40,15,1,0,-9,0,4.7336798,4.7336798,0,0,0,0,0,0,0,0,0,0,0,.9420166,0,0,0,60.57,46.439999,-9,-9,2,1,1,0,0,11,4,1,107,28060.273,0,0,1024.026 -4812,5961,10844,-9,-9,-9,1,1,0,27,2,0,2,0,2,-9,2,1,0,0,3,8.164669,7.8970113,0,4,0,0,0,-9,0,-971.20428,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,70,40,15,1,1,-9,0,5.2227979,5.2227979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.459999,55.18,-9,-9,5,1,1,0,0,6,3,0,823.33331,67645.414,0,0,2016.9401 -4812,5961,10845,-9,10844,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-941.66248,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,3,0,823.33331,67645.414,0,0,2016.9401 -4812,5961,10846,-9,10844,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.49133,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,3,0,823.33331,67645.414,0,0,2016.9401 -4813,5962,10847,10848,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,2,0,7.2457056,7.0097337,1,0,-9,9,0,5,70.812897,0,0,0,77,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3099535,6.7246909,0,0,55.200001,49.400002,28.67,51.66,4,1,1,0,0,10,2,1,1360.5,904870.75,0,0,2706.7351 -4813,5962,10848,10847,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-5,-130.47769,0,0,0,82,3,2,3,-9,2,2019,4,1,23,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1845794,0,0,0,28.67,51.66,55.200001,49.400002,2,1,1,0,0,10,2,1,1360.5,904870.75,0,0,2706.7351 -4814,5963,10849,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1058.9569,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,51.16,-9,-9,6,1,1,0,0,9,1,0,1387,-98717.086,0,0,1426.1005 -4815,5964,10850,10851,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,2,8.3390179,8.33426,0,1,0,1,1,-9,2,-13.266664,0,0,0,50,2,1,3,3,3,2019,2,2,11,0,30,30,15,1,0,3,0,16.733526,16.733526,0,0,0,0,0,0,0,0,1,1,0,6.7017679,0,0,0,53.240002,36.779999,32.09,30.059999,3,1,1,0,0,12,4,0,1074,212373.75,0,0,3177.446 -4815,5964,10851,10850,-9,-9,2,1,1,50,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,1,1,-9,-2,39.621284,0,0,0,52,1,2,1,2,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.09,30.059999,53.240002,36.779999,4,1,1,0,1,12,4,0,1074,212373.75,0,0,3177.446 -4816,5965,10852,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,0,3,8.6073341,8.4165649,0,3,0,0,0,-9,0,-1102.8202,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,44,46,15,1,0,-9,0,13.861531,13.861531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,-9,-9,4,1,1,0,0,4,5,1,1348,-39897.547,0,0,687.41052 -4817,5966,10853,-9,-9,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.8148794,7.9432092,0,3,0,0,0,-9,0,-1048.5973,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,40,15,1,0,-9,0,7.6195307,7.6195307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,4,6,0,0,12,3,0,516,-11581.595,0,0,743.83966 -4817,5967,10854,10855,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,9,0,-1,7.3197575,0,0,0,75,2,4,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,31.253317,120.65824,7.4285827,0,0,225.2769,0,1,1,0,0,0,0,0,52.779999,39.59,57.16,56.150002,7,1,1,0,0,12,2,0,533,450134.5,0,0,2460.3994 -4817,5967,10855,10854,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.4075909,6.6975546,1,0,-9,9,0,1,-25.909588,0,0,0,74,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,6.2841673,117.35184,1,57.16,56.150002,52.779999,39.59,7,1,1,0,0,12,2,0,533,450134.5,0,0,2460.3994 -4818,5968,10856,10857,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,3,8.5661678,8.958746,7.1475229,1,0,-9,35,0,5,57.742462,0,0,0,58,1,4,1,3,3,2019,1,2,11,1,42,37,15,1,0,1,0,12.018519,12.018519,0,0,0,0,0,0,0,0,0,0,0,0,7.1625013,0,0,58.73,37.889999,27.93,62.959999,6,1,1,0,0,10,5,1,328.5,1172348.5,0,0,5206.4136 -4818,5968,10857,10856,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,8.7628002,8.5638046,0,1,0,-9,34,0,-5,10.479815,0,0,0,63,1,3,1,2,-9,2019,1,1,21,7,43,45,15,1,1,1,0,14.960193,14.960193,0,0,0,0,0,0,0,0,0,0,0,2.2707541,0,0,0,27.93,62.959999,58.73,37.889999,3,1,1,0,0,10,5,1,328.5,1172348.5,0,0,5206.4136 -4819,5969,10858,10859,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,2,7.9038663,7.9566031,0,2,0,-9,10,0,4,18.614126,0,0,0,43,2,3,1,2,2,2019,1,1,11,2,44,38,15,1,0,1,0,8.9161806,8.9161806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.380001,47.509998,37.310001,54.560001,4,1,1,0,0,12,4,0,437.5,185891.27,0,0,2390.3777 -4819,5969,10859,10858,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,8.0805321,8.1047144,0,2,0,-9,10,0,-4,.51132208,0,0,1,47,2,2,1,2,2,2019,1,2,15,3,28,22,15,1,0,1,0,15.043139,15.043139,0,0,0,0,0,0,0,7,1,1,0,0,0,9.5174732,3,37.310001,54.560001,53.380001,47.509998,5,1,1,0,1,12,4,0,437.5,185891.27,0,0,2390.3777 -4820,5970,10860,10861,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,2,8.1187992,8.0098495,0,1,0,-9,9,0,5,-62.393753,0,0,0,53,3,3,1,3,3,2019,1,1,18,6,35,35,15,1,1,1,0,10.079481,10.079481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.370001,21.76,31.690001,51.650002,3,1,1,0,0,12,4,1,1218,260139.7,0,0,1909.5195 -4820,5970,10861,10860,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,6.632864,7.7635608,6.8591285,1,0,-9,9,0,-5,23.488287,0,0,0,58,2,2,1,2,2,2019,1,2,15,3,15,15,15,1,0,1,0,7.4134603,7.4134603,0,0,0,0,0,0,0,2,0,0,0,3.8474696,6.8011637,.14232545,3,31.690001,51.650002,29.370001,21.76,3,1,1,0,0,12,4,1,1218,260139.7,0,0,1909.5195 -4821,5971,10862,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-989.58789,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,13,1,0,1299,60107.98,0,0,1115.5903 -4822,5972,10863,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.6964808,7.939374,6.1600666,3,0,0,0,-9,0,-996.83258,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,3,0,44,40,15,1,0,-9,0,5.6080503,5.6080503,0,0,0,0,0,0,0,0,0,0,0,6.9824815,0,0,0,38.82,63.209999,-9,-9,7,4,2,0,0,5,3,0,1273,45238.777,0,0,1964.7876 -4823,5973,10864,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,1,0,4.5682631,4.7371445,3,0,0,0,-9,0,-995.09174,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.789957,4.7153029,0,0,64.809998,30.01,-9,-9,7,1,1,0,0,12,1,1,379,-43209.691,0,0,830.9021 -4824,5974,10865,10866,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,0,2,8.7208624,8.8302574,0,2,0,-9,16,0,3,-13.967074,0,0,0,35,2,4,3,2,2,2019,2,2,11,0,40,38,15,1,0,3,0,12.995304,12.995304,0,0,0,0,0,0,0,0,1,1,0,2.7676499,0,0,0,45.119999,44.360001,51.240002,58.84,3,1,1,0,0,7,3,1,1231,26397.117,0,0,1427.0109 -4824,5974,10866,10865,-9,-9,2,1,0,35,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,-3,28.591234,0,0,1,38,2,2,1,2,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,45.119999,44.360001,6,1,1,0,0,7,3,1,1231,26397.117,0,0,1427.0109 -4824,5974,10867,-9,10866,10865,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.6011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,3,1,1231,26397.117,0,0,1427.0109 -4824,5974,10868,-9,10866,10865,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.85669,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,3,1,1231,26397.117,0,0,1427.0109 -4825,5975,10869,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,2,0,4.9181623,4.9343834,3,0,0,0,-9,0,-950.30353,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.0366392,0,0,1,1,0,4.3127284,4.906909,0,0,64.199997,15.57,-9,-9,5,1,1,0,0,9,2,1,1193,134962.89,0,0,1763.3057 -4826,5976,10870,10871,-9,-9,5,1,1,24,1,0,0,0,1,-9,2,1,0,0,5,7.5947948,7.6796155,0,1,0,-9,1,-9,2,-69.866409,-9,1,0,22,2,4,1,-9,-9,2019,1,2,6,0,36,0,15,1,0,1,0,5.3918819,5.3918819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,50.790001,56.27,6,1,1,0,0,6,3,0,580,-33617.855,0,0,784.4798 -4826,5976,10871,10870,-9,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,0,4,7.5027552,7.6182547,0,1,0,1,1,-9,-2,184.91551,-9,1,1,24,1,5,1,-9,-9,2019,1,5,9,1,30,0,15,1,0,1,0,6.3666863,6.3666863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.790001,56.27,62.389999,56.709999,6,4,2,0,0,6,3,0,580,-33617.855,0,0,784.4798 -4827,5977,10872,10873,-9,-9,2,1,0,55,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,8,0,-3,-47.739326,0,0,0,58,2,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,10.442276,3,44.02,60.700001,51.830002,57.200001,6,1,1,0,0,8,3,0,646,489146.16,0,0,1353.9395 -4827,5977,10873,10872,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.2522001,8.3368282,5.9352288,1,0,-9,8,0,3,46.453411,0,0,0,55,3,4,3,3,2,2019,2,2,7,0,48,50,15,1,0,3,0,6.4827895,6.4827895,0,0,0,0,0,0,0,0,0,0,0,0,6.1885729,0,0,51.830002,57.200001,44.02,60.700001,6,1,1,0,0,8,3,0,646,489146.16,0,0,1353.9395 -4828,5978,10874,-9,10875,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1012.8475,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,3,0,519,76106.328,0,0,2530.6074 -4828,5978,10875,-9,-9,-9,1,1,0,42,2,0,2,0,3,-9,2,1,0,0,3,7.6850438,8.0332804,5.5349097,4,0,0,0,-9,0,-936.43433,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,35,29,15,1,0,-9,0,7.2711873,7.2711873,0,0,0,0,0,0,0,0,1,1,0,5.544116,0,0,0,44.279999,55.299999,-9,-9,6,1,1,0,0,6,3,0,519,76106.328,0,0,2530.6074 -4828,5979,10876,-9,10875,-9,2,1,0,23,2,0,2,0,2,-9,2,1,0,0,3,8.2757111,7.9759955,0,3,0,0,0,-9,0,-1076.3411,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,25,0,15,1,0,-9,1,9.4397888,9.4397888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.220001,36.970001,-9,-9,5,1,1,0,0,6,3,0,515.5,186086.75,0,0,2021.8545 -4828,5979,10877,-9,10876,-9,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1028.7905,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,3,0,515.5,186086.75,0,0,2021.8545 -4829,5980,10878,-9,10879,-9,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-990.49512,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,0,400.5,-62751.855,0,0,2247.782 -4829,5980,10879,-9,-9,-9,1,1,0,39,3,0,1,0,3,-9,2,1,0,0,4,7.3706694,7.5284643,0,4,0,0,0,-9,0,-1150.8744,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,24,30,15,1,0,-9,0,8.0774965,8.0774965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,-9,-9,5,1,1,0,0,13,2,0,400.5,-62751.855,0,0,2247.782 -4829,5981,10880,-9,10879,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,0,5,6.9472523,6.989284,5.4212871,3,0,0,0,-9,0,-958.69366,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5624433,0,0,0,57.650002,56.130001,-9,-9,2,1,1,0,0,13,2,0,605,-35942.027,0,0,1324.2662 -4830,5982,10881,-9,-9,-9,1,1,1,39,3,0,0,0,1,-9,2,1,0,0,4,8.1985235,8.3138885,0,3,0,-9,0,-9,0,-1042.7142,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,2,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.68,41.549999,-9,-9,6,2,3,0,0,8,4,0,533,44290.055,0,0,-198.9422 -4831,5983,10882,10883,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,0,4,8.3723946,8.5714149,0,1,0,-9,2,0,0,-63.907631,-9,0,0,31,1,3,1,-9,-9,2019,1,1,5,0,48,0,15,1,0,1,0,10.146689,10.146689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,43.77,51.59,7,1,1,0,0,12,5,1,857,96995.047,0,0,3196.353 -4831,5983,10883,10882,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,3,8.5003738,8.332799,0,1,0,-9,2,0,0,80.324669,0,0,1,31,2,4,1,1,2,2019,1,2,11,2,35,35,15,1,0,1,0,10.973481,10.973481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.77,51.59,62.490002,55.09,6,1,1,0,0,12,5,1,857,96995.047,0,0,3196.353 -4832,5984,10884,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,7.6930065,7.9277339,3,0,0,0,-9,0,-967.55304,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2401481,7.8193097,0,0,48.919998,42.18,-9,-9,6,1,1,0,0,9,3,1,158,900604.94,0,0,1163.7618 -4833,5985,10885,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,8.3419018,8.1421652,0,3,0,0,0,-9,0,-1000.8613,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,14.950212,14.950212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.77,32.549999,-9,-9,3,3,4,0,0,4,4,0,511,673629.25,0,0,1914.5039 -4834,5986,10886,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,9.1713896,8.8112516,0,3,0,0,0,-9,0,-1032.9501,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,40,15,1,0,-9,0,22.767004,22.767004,0,0,0,0,0,0,0,0,1,1,0,8.0943222,0,0,0,51.830002,57.200001,-9,-9,3,1,1,0,0,7,5,1,702,302659.31,0,0,3323.0793 -4835,5987,10887,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1014.8918,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.6441393,0,0,0,0,1,1,0,0,0,0,0,51.450001,42.880001,-9,-9,5,1,1,0,0,10,1,1,455,-57869.941,0,0,1088.9905 -4836,5988,10888,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,2,0,7.8154998,8.1884422,3,0,0,0,-9,0,-905.51379,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2178674,7.6856365,0,0,61.68,31.549999,-9,-9,6,1,1,0,0,9,4,1,413,804282.75,0,0,342.0206 -4837,5989,10889,10891,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,9.2335796,8.6956081,0,2,0,-9,24,0,-1,-28.551535,0,0,0,50,1,3,1,3,3,2019,1,2,12,0,60,70,15,1,0,1,0,15.188334,15.188334,0,0,0,0,0,0,0,7,1,1,0,0,0,6.3656325,3,55.189999,54.259998,50.830002,42.630001,6,1,1,0,0,13,5,0,979.33331,789866.81,0,0,5404.4238 -4837,5989,10890,-9,10891,10889,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.2654,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,5,0,979.33331,789866.81,0,0,5404.4238 -4837,5989,10891,10889,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,3,8.9283867,8.6137381,0,2,0,-9,24,0,1,15.23451,0,0,0,49,1,4,1,2,2,2019,1,1,6,0,36,41,15,1,0,1,0,20.651791,20.651791,0,0,0,0,0,0,0,14.5,1,1,0,7.7549005,0,22.534826,3,50.830002,42.630001,55.189999,54.259998,4,1,1,0,0,13,5,0,979.33331,789866.81,0,0,5404.4238 -4838,5990,10892,10893,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.0528564,6.505517,1,0,-9,9,0,-1,97.198448,0,0,0,70,3,2,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8655629,6.092485,0,0,52,54.509998,42.93,42.709999,1,1,1,0,0,2,2,1,366,303291.28,0,0,1963.1577 -4838,5990,10893,10892,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,4.4738698,4.5597701,1,0,-9,9,0,1,57.282108,0,0,0,69,2,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,4.7123284,0,0,0,0,0,1,1,0,0,4.7836456,0,0,42.93,42.709999,52,54.509998,7,1,1,0,0,2,2,1,366,303291.28,0,0,1963.1577 -4839,5991,10894,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1107.7427,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.842752,3,37.279999,26.299999,-9,-9,5,3,4,0,0,8,1,0,278,409927.81,0,0,1673.4292 -4840,5992,10895,10896,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,62,0,3,0,0,0,0,80,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9736767,0,0,0,54,46,41.169998,52.68,6,1,1,0,0,5,1,1,931,-74831.453,0,0,1762.9747 -4840,5992,10896,10895,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,62,0,-3,0,0,0,0,83,3,3,3,3,3,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.9469228,0,77.370438,1,41.169998,52.68,54,46,4,1,1,0,0,5,1,1,931,-74831.453,0,0,1762.9747 -4841,5993,10897,-9,10899,10898,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.2712,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,879,158403.23,0,0,2883.572 -4841,5993,10898,10899,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,0,3,8.7223215,8.5845222,0,2,0,-9,10,0,16,-171.03444,0,0,0,41,1,3,1,3,2,2019,1,2,13,3,42,43,15,1,0,1,0,16.032293,16.032293,0,0,0,0,0,0,0,0,1,1,0,2.1698956,0,0,0,31.23,54.959999,51.25,46.549999,5,1,1,0,0,9,4,1,879,158403.23,0,0,2883.572 -4841,5993,10899,10898,-9,-9,2,1,0,41,1,0,1,0,1,-9,1,1,0,1,3,0,0,0,2,0,-9,10,0,-16,46.398846,0,0,1,57,2,3,1,-9,-9,2019,1,1,10,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,46.549999,31.23,54.959999,4,1,1,0,0,9,4,1,879,158403.23,0,0,2883.572 -4842,5994,10900,10901,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,5.6589971,5.7325377,1,0,-9,6,0,-5,62.740459,0,0,0,82,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,5.3126483,15.617336,1,52,45,54,45,6,1,1,0,0,11,2,1,864,230673.45,0,0,2087.166 -4842,5994,10901,10900,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,6.5484838,6.6419611,1,0,-9,6,0,5,-97.231743,0,0,0,77,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,35.770672,0,0,0,0,0,1,1,0,0,6.4984941,0,0,54,45,52,45,6,1,1,0,0,11,2,1,864,230673.45,0,0,2087.166 -4843,5995,10902,-9,-9,-9,3,1,1,21,2,0,0,1,2,-9,7,2,0,0,2,6.6300569,6.7611136,0,3,0,0,0,-9,0,-946.47101,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.189999,49.810001,-9,-9,6,1,1,0,1,2,2,1,1358,134228.39,0,0,1640.184 -4844,5996,10903,-9,-9,-9,1,1,1,43,3,0,0,0,1,-9,2,1,0,0,4,9.2298574,9.1500072,0,3,0,0,0,-9,0,-1030.8804,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,0,15,1,0,-9,0,29.275471,29.275471,0,0,0,0,0,0,0,0,0,0,0,6.9367075,0,0,0,57.16,56.150002,-9,-9,6,4,2,0,0,9,5,1,426,502501.75,0,0,3737.1111 -4845,5997,10904,10906,-9,-9,2,1,1,40,1,0,3,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,8,0,4,0,0,0,0,36,3,1,3,2,2,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.13466422,3,43.599998,53.509998,23.780001,23.34,3,1,1,0,0,4,1,0,688.79999,76861.469,0,0,1495.8407 -4845,5997,10905,-9,10906,10904,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.3716,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,1,0,688.79999,76861.469,0,0,1495.8407 -4845,5997,10906,10904,-9,-9,1,1,0,36,1,0,3,0,3,-9,3,3,0,0,1,0,0,0,2,0,-9,8,0,-4,0,0,0,1,40,2,2,3,2,2,2019,4,2,36,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.780001,23.34,43.599998,53.509998,1,1,1,1,1,4,1,0,688.79999,76861.469,0,0,1495.8407 -4845,5997,10907,-9,10906,10904,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.6933,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,1,0,688.79999,76861.469,0,0,1495.8407 -4845,5997,10908,-9,10906,10904,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.94006,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,1,0,688.79999,76861.469,0,0,1495.8407 -4846,5998,10909,10910,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,7.494586,7.5706377,0,1,0,-9,9,0,3,-27.899519,0,0,0,57,3,2,1,3,3,2019,1,2,7,0,29,0,15,1,0,1,0,8.5664558,8.5664558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,51.34,37.580002,7,1,1,0,0,5,3,1,360,609.64453,0,0,694.54175 -4846,5998,10910,10909,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,0,2,7.4921608,7.8034592,0,1,0,-9,9,0,-3,6.7624011,0,0,0,60,2,3,1,2,3,2019,1,1,7,0,36,31,15,1,0,1,0,6.5139589,6.5139589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.34,37.580002,41.34,56.619999,4,1,1,0,0,5,3,1,360,609.64453,0,0,694.54175 -4847,5999,10911,-9,10912,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1103.736,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,13,2,0,538.66669,52805.434,0,0,2080.385 -4847,5999,10912,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,0,5,7.1530256,7.6102133,0,4,0,0,0,-9,0,-973.02643,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,25,16,15,1,0,-9,0,9.1262617,9.1262617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.299999,57.200001,-9,-9,2,1,1,0,0,13,2,0,538.66669,52805.434,0,0,2080.385 -4847,5999,10913,-9,10912,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.8268,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,0,538.66669,52805.434,0,0,2080.385 -4848,6000,10914,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,0,5,9.528286,9.6203403,0,3,0,0,0,-9,0,-1096.9679,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,60,55,15,1,0,-9,0,22.13118,22.13118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,8,5,0,591,99325.367,0,0,5454.5791 -4848,6001,10915,-9,-9,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,8.7015171,8.7356863,6.152236,3,0,0,0,-9,0,-1049.7059,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,42,15,1,0,-9,0,19.429176,19.429176,0,0,0,0,0,0,0,0,0,0,0,6.5346808,0,0,0,28.08,63.900002,-9,-9,5,1,1,0,0,8,5,0,616,169234.81,0,0,2113.9932 -4849,6002,10916,-9,10919,10917,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-919.1488,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,4,1,854,945236.38,0,0,4777.2065 -4849,6002,10917,10919,-9,-9,1,1,1,51,1,0,2,0,1,-9,1,1,0,0,5,8.2829399,8.5255642,0,2,0,-9,27,0,2,23.136951,0,0,0,49,1,5,1,2,2,2019,1,2,8,0,48,40,15,1,0,1,0,8.6455841,8.6455841,0,0,0,0,0,0,0,0,1,1,0,7.2142372,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,12,4,1,854,945236.38,0,0,4777.2065 -4849,6002,10918,-9,10919,10917,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.1857,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,854,945236.38,0,0,4777.2065 -4849,6002,10919,10917,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,0,5,8.6181669,8.7667189,0,2,0,-9,27,0,-2,16.087513,0,0,0,51,1,5,1,2,1,2019,1,1,7,0,28,27,15,1,0,1,0,25.130104,25.130104,0,0,0,0,0,0,0,0,1,1,0,3.6980116,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,12,4,1,854,945236.38,0,0,4777.2065 -4850,6003,10920,10921,-9,-9,2,1,1,88,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,64,0,2,99.400963,0,0,0,86,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,9.7465277,0,2.8624542,0,0,104.86774,0,1,1,0,2.0026186,0,0,0,55,45,60.950001,17.25,6,1,1,0,0,2,2,1,741.5,557961.5,0,0,1815.5083 -4850,6003,10921,10920,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,1,2,0,5.6953473,5.6477094,1,0,-9,64,0,-2,100.54633,0,0,0,88,2,3,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,25.58913,0,48.806381,0,0,198.89767,27.5,1,1,0,5.2290077,5.7576618,24.842093,1,60.950001,17.25,55,45,6,1,1,0,0,2,2,1,741.5,557961.5,0,0,1815.5083 -4851,6004,10922,10925,-9,-9,2,1,0,44,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,27,0,-2,-5.0407176,0,0,1,46,1,4,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,4,2,1,269,100098.08,0,0,1683.4651 -4851,6004,10923,-9,10922,10925,6,1,1,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.26001,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.779999,-9,-9,4,2,3,0,0,4,2,1,269,100098.08,0,0,1683.4651 -4851,6004,10924,-9,10922,10925,5,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1172.5127,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,2,3,0,0,4,2,1,269,100098.08,0,0,1683.4651 -4851,6004,10925,10922,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,8.2655649,8.3690405,0,2,0,-9,27,0,2,-6.8597012,0,0,0,44,3,4,3,2,3,2019,2,2,6,0,37,37,15,1,0,3,0,11.322972,11.322972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,4,2,1,269,100098.08,0,0,1683.4651 -4851,6005,10926,-9,10922,10925,3,1,0,20,2,0,3,1,2,0,7,2,0,0,4,6.7441993,6.8883104,0,3,0,0,0,-9,0,-969.815,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,0,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,6,2,3,0,0,4,2,1,479,42524.836,0,0,284.90094 -4851,6006,10927,-9,10922,10925,4,1,1,18,2,0,3,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-910.91522,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,1,0,4,2,1,341,0,0,0,0 -4852,6007,10928,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,1,3,0,6.7110391,6.4494061,3,0,0,0,-9,0,-981.72174,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9136529,5.1993999,3,61.439999,32.610001,-9,-9,6,1,1,0,0,2,2,0,383,268376.16,0,0,864.85126 -4853,6008,10929,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,0,3,0,6.756166,6.884181,3,0,0,0,-9,0,-971.02332,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5054727,6.913578,0,0,41.09,37.34,-9,-9,4,1,1,0,0,7,2,1,2414,558451.69,0,0,256.133 -4854,6009,10930,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,1,3,9.0219984,8.8221216,0,3,0,0,0,-9,0,-995.31885,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,61,0,15,1,0,-9,0,12.549553,12.549553,0,0,0,0,0,0,0,27.5,1,1,0,3.2658012,0,27.893343,3,26.01,61.110001,-9,-9,5,1,1,0,0,2,5,1,233,92662.07,0,0,1415.4274 -4855,6010,10931,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1136.7395,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.919998,38.279999,-9,-9,5,2,3,0,0,8,1,0,164,128624.75,0,0,1924.3333 -4856,6011,10932,-9,10934,-9,2,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-996.20941,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,0,796.66669,-63611.598,0,0,2448.4851 -4856,6011,10933,-9,10934,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1076.5029,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,2,0,796.66669,-63611.598,0,0,2448.4851 -4856,6011,10934,-9,-9,-9,1,1,0,42,2,0,3,0,2,-9,1,1,0,0,4,6.7821279,7.1875019,5.1867485,4,0,-9,0,0,0,-1042.9165,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,25,0,15,1,0,-9,0,3.6978362,3.6978362,0,0,0,0,0,0,0,0,1,1,0,5.3738737,0,0,0,32.68,59.119999,-9,-9,5,1,1,0,1,10,2,0,796.66669,-63611.598,0,0,2448.4851 -4857,6012,10935,10936,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.3555846,7.446332,0,1,0,-9,8,0,-1,-57.720951,0,0,0,55,2,4,1,-9,-9,2019,1,1,7,0,30,37,15,1,0,1,0,9.7376032,9.7376032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,65.459999,48.209999,6,1,1,0,0,10,5,1,1370,1346839.9,0,0,3593.406 -4857,6012,10936,10935,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.7247801,8.6856909,0,1,0,-9,34,0,1,77.25576,0,0,0,54,2,3,1,2,-9,2019,1,2,10,0,48,48,15,1,0,1,0,14.733032,14.733032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.459999,48.209999,59.310001,49.810001,7,1,1,0,0,10,5,1,1370,1346839.9,0,0,3593.406 -4857,6013,10937,-9,10935,10936,4,1,0,32,2,0,0,0,2,-9,2,1,0,0,4,7.9181476,7.6365952,0,3,0,0,0,-9,0,-933.80023,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,39,40,15,1,1,-9,1,9.4974041,9.4974041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,-9,-9,5,1,1,0,0,10,4,1,1366,-35566.93,0,0,1325.0583 -4858,6014,10938,10939,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.9998875,9.3108168,0,1,0,-9,32,0,1,-36.397793,0,0,0,51,2,3,3,2,3,2019,2,1,11,0,41,43,15,1,0,3,0,23.106926,23.106926,0,0,0,0,0,0,0,0,0,0,0,4.6025124,0,0,0,54.200001,57.490002,54.959999,53.169998,6,1,1,0,0,9,5,1,1598.5,2438173.5,0,0,4228.2251 -4858,6014,10939,10938,-9,-9,1,1,0,51,1,0,0,0,2,-9,97,3,0,0,3,0,0,0,1,0,-9,32,0,-1,-35.405598,0,0,0,52,2,4,1,2,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2864975,0,0,0,54.959999,53.169998,54.200001,57.490002,6,1,1,0,0,9,5,1,1598.5,2438173.5,0,0,4228.2251 -4858,6015,10940,-9,10939,10938,3,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,9.0383139,9.3369522,0,3,0,0,0,-9,0,-1025.2958,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,39,38,15,1,1,-9,1,25.5369,25.5369,0,0,0,0,0,0,0,0,0,0,0,4.4692101,0,0,0,30.77,64.339996,-9,-9,5,1,1,0,0,9,5,1,748,161826.66,0,0,2601.7192 -4858,6016,10941,-9,10939,10938,4,1,0,22,2,0,0,0,1,-9,1,1,0,0,3,6.4026904,6.3756571,1.1787757,3,0,0,0,-9,0,-957.07159,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,10,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.95414573,0,0,0,38.860001,53.529999,-9,-9,4,1,1,0,1,9,2,1,389,27571.762,0,0,206.87912 -4859,6017,10942,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,1,1,0,6.789773,7.444242,3,0,0,0,-9,0,-917.01685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,4.631145,0,0,0,0,72.82711,0,1,1,0,4.3346663,7.1993046,0,0,71.379997,7.8600001,-9,-9,6,1,1,0,0,12,2,1,761,327423.75,0,0,2485.3508 -4860,6018,10943,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,2,7.2929144,7.471159,0,3,0,0,0,-9,0,-1126.2966,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,16,16,15,1,0,-9,0,12.473324,12.473324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.43,46.209999,-9,-9,6,1,1,0,1,6,3,0,1736,327142.38,0,0,538.61084 -4861,6019,10944,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,7.5775623,7.7964835,3,0,0,0,-9,0,-974.96332,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3581395,7.7503986,0,0,53.220001,52.369999,-9,-9,6,1,1,0,0,9,3,1,1040,480311.31,0,0,3421.354 -4862,6020,10945,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,7.3837223,7.4693112,0,3,0,0,0,-9,0,-1059.8458,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,30,0,15,1,0,-9,0,5.3957496,5.3957496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,42.490002,-9,-9,3,1,1,0,0,4,3,0,1130,-116424.7,0,0,-321.20782 -4863,6021,10946,-9,10947,-9,2,1,1,16,2,0,2,0,-9,-9,2,2,0,0,4,4.3118668,4.2870674,0,4,0,0,0,-9,0,-1037.3571,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,28,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.3848953,3,54.200001,57.490002,-9,-9,5,1,1,0,0,2,1,0,928.33331,101646.85,0,0,1780.1602 -4863,6021,10947,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1154.6327,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,26,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.370001,30.549999,-9,-9,2,1,1,0,0,2,1,0,928.33331,101646.85,0,0,1780.1602 -4863,6021,10948,-9,10947,-9,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1065.6558,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,928.33331,101646.85,0,0,1780.1602 -4864,6022,10949,10950,-9,-9,1,1,0,56,1,0,0,0,2,-9,4,3,0,1,4,0,6.4398942,6.6301322,1,0,-9,7,0,6,-75.54586,0,0,0,50,2,4,1,3,3,2019,3,2,14,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5570674,0,0,41.759998,24.040001,53,55,6,1,1,0,0,5,4,1,677.5,1343410,0,0,4592.0928 -4864,6022,10950,10949,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.6324606,8.2829227,0,1,0,-9,7,0,-6,45.349625,0,0,0,56,2,4,3,-9,-9,2019,2,1,9,1,40,58,15,1,0,4,0,14.149171,14.149171,0,0,0,0,0,0,0,0,1,1,0,8.2453957,0,0,1,53,55,41.759998,24.040001,6,1,1,0,0,5,4,1,677.5,1343410,0,0,4592.0928 -4865,6023,10951,-9,10954,10953,5,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.7478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,905.59998,2811931.3,0,0,14907.684 -4865,6023,10952,-9,10954,10953,6,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-865.54376,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,9,5,1,905.59998,2811931.3,0,0,14907.684 -4865,6023,10953,10954,-9,-9,1,1,1,51,1,0,3,0,1,-9,2,1,0,0,4,9.777277,9.7117586,0,2,0,-9,22,0,3,1.6281564,0,0,0,48,1,5,1,1,1,2019,1,2,14,4,50,80,15,1,1,1,0,34.057003,34.057003,0,0,0,0,0,0,0,0,0,0,0,6.1361704,0,0,0,45.560001,60.259998,51.669998,60.18,5,1,1,0,0,9,5,1,905.59998,2811931.3,0,0,14907.684 -4865,6023,10954,10953,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,0,5,8.7524004,8.7017488,0,2,0,-9,22,0,-3,43.147976,0,0,0,51,1,4,1,2,2,2019,1,1,16,6,26,36,15,1,1,1,0,32.302692,32.302692,0,0,0,0,0,0,0,0,0,0,0,7.2054305,0,0,0,51.669998,60.18,45.560001,60.259998,6,1,1,0,0,9,5,1,905.59998,2811931.3,0,0,14907.684 -4865,6023,10955,-9,10954,10953,4,1,1,17,2,0,3,1,3,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-939.771,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7603488,0,0,0,57.599998,56.16,-9,-9,4,1,1,0,0,9,5,1,905.59998,2811931.3,0,0,14907.684 -4865,6024,10956,-9,10954,10953,3,1,0,19,2,0,3,1,2,0,7,2,0,0,3,7.0276275,6.8550406,4.2838087,3,0,0,0,-9,0,-1008.9318,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6469464,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,9,2,1,156,98195.961,0,0,921.52765 -4866,6025,10957,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,3,8.8750496,9.1951256,6.1999621,3,0,0,0,-9,0,-1007.9148,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,48,36,15,1,0,-9,0,14.038817,14.038817,0,0,0,0,0,0,0,0,1,1,0,0,6.1187582,0,0,51.52,46.849998,-9,-9,4,3,4,0,0,8,5,1,1529,654068.94,0,0,3474.0801 -4867,6026,10958,-9,10960,10959,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.9417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,4,1,406.33334,79541.836,0,0,3208.261 -4867,6026,10959,10960,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,5,8.6122789,8.7901917,0,2,0,-9,6,0,3,-43.579433,0,0,0,34,2,4,1,2,2,2019,1,1,14,3,62,53,15,1,0,1,0,10.206303,10.206303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.610001,67.32,46.389999,60.990002,5,1,1,0,0,6,4,1,406.33334,79541.836,0,0,3208.261 -4867,6026,10960,10959,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,7.3943167,7.4193764,0,2,0,-9,6,0,-3,-54.18034,0,0,1,37,2,5,1,2,2,2019,1,2,13,3,24,25,15,1,0,1,0,7.0686188,7.0686188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,30.610001,67.32,5,1,1,0,0,6,4,1,406.33334,79541.836,0,0,3208.261 -4868,6027,10961,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,0,2,0,7.6267681,7.4939976,3,0,0,0,-9,0,-1053.8088,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3428149,7.4999914,0,0,44.720001,38.060001,-9,-9,4,1,1,0,0,9,3,1,798,244969.17,0,0,2439.3455 -4868,6028,10962,-9,-9,-9,2,1,0,77,2,0,0,0,2,-9,4,3,0,0,3,0,6.3712878,6.5536661,3,0,0,0,-9,0,-1004.4069,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7105155,0,0,57.48,47.919998,-9,-9,6,1,1,0,0,9,2,1,267,377704.72,0,0,656.88501 -4869,6029,10963,10964,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,5,0,7.8646698,8.1552,1,0,-9,3,0,3,-9.3182192,0,0,0,63,2,1,3,-9,-9,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.7208614,3.5133677,1,57.060001,57.759998,52.73,9.8599997,7,1,1,0,0,2,3,0,1497.5,1130487.1,0,0,3472.9629 -4869,6029,10964,10963,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,3,0,-3,-109.04887,0,0,0,66,2,5,3,3,2,2019,4,2,24,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.73,9.8599997,57.060001,57.759998,6,1,1,0,0,2,3,0,1497.5,1130487.1,0,0,3472.9629 -4870,6030,10965,-9,10969,10967,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.7267,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,6,3,1,837.79999,654468.94,0,0,2583.0063 -4870,6030,10966,-9,10969,10967,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-999.68439,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,6,3,1,837.79999,654468.94,0,0,2583.0063 -4870,6030,10967,10969,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,8.461566,8.8320522,0,2,0,-9,19,0,6,32.497162,0,0,0,38,3,1,3,3,2,2019,2,2,9,1,37,37,15,1,0,3,0,16.587479,16.587479,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.920902,3,52,55,36.080002,21.43,5,2,3,0,0,6,3,1,837.79999,654468.94,0,0,2583.0063 -4870,6030,10968,-9,10969,10967,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-932.20221,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,6,3,1,837.79999,654468.94,0,0,2583.0063 -4870,6030,10969,10967,-9,-9,2,1,0,38,1,0,3,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,19,0,-6,-59.149994,0,0,1,44,1,4,1,3,2,2019,3,1,17,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.345257,3,36.080002,21.43,52,55,4,2,3,0,0,6,3,1,837.79999,654468.94,0,0,2583.0063 -4871,6031,10970,-9,-9,-9,1,1,0,51,3,0,2,0,1,-9,6,3,0,0,3,0,7.0317187,6.7139959,4,0,0,0,-9,0,-1030.4166,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.6067443,0,0,0,60.869999,44.959999,-9,-9,6,1,1,0,0,10,2,1,5026,324745.06,0,0,619.57947 -4872,6032,10971,10974,-9,-9,1,1,1,39,1,1,3,0,1,-9,2,1,0,0,4,8.9489899,8.7117767,0,2,0,-9,15,0,1,-160.16991,0,0,0,38,1,4,1,2,1,2019,1,2,9,0,35,35,15,1,0,1,0,16.18885,16.18885,0,0,0,0,0,0,0,0,1,1,0,1.334968,0,0,0,48.869999,58.549999,51.830002,57.200001,6,1,1,0,0,2,4,1,1359.6,439322.91,0,0,3047.2158 -4872,6032,10972,-9,10974,10971,4,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.98218,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,1359.6,439322.91,0,0,3047.2158 -4872,6032,10973,-9,10974,10971,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.32288,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,1359.6,439322.91,0,0,3047.2158 -4872,6032,10974,10971,-9,-9,2,1,0,38,1,1,3,0,1,-9,2,1,0,0,4,8.1905174,8.0696154,0,2,0,-9,15,0,-1,143.7744,0,0,1,39,1,4,1,1,2,2019,1,1,7,0,23,23,15,1,0,1,0,16.024715,16.024715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,48.869999,58.549999,6,1,1,0,0,2,4,1,1359.6,439322.91,0,0,3047.2158 -4872,6032,10975,-9,10974,10971,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.63202,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,4,1,1359.6,439322.91,0,0,3047.2158 -4873,6033,10976,10977,-9,-9,2,1,0,47,1,0,0,0,1,-9,1,1,0,0,4,1.2060167,1.4407424,0,1,0,-9,8,0,6,-87.530548,0,0,0,41,1,4,1,2,2,2019,1,1,8,1,20,25,15,1,0,1,0,.018173313,.018173313,0,0,0,0,0,0,0,0,0,0,0,.8176837,0,0,0,39.68,58.52,38.040001,56.720001,5,1,1,0,0,8,5,0,376,994528.19,0,0,4247.2451 -4873,6033,10977,10976,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,0,4,9.2663641,9.2481527,5.3757906,1,0,-9,8,0,-6,-94.193253,-9,0,0,47,1,4,1,2,2,2019,1,2,8,2,80,0,15,1,0,1,0,17.718487,17.718487,0,0,0,0,0,0,0,0,0,0,0,5.3789902,5.7216463,0,0,38.040001,56.720001,39.68,58.52,3,1,1,0,0,8,5,0,376,994528.19,0,0,4247.2451 -4874,6034,10978,-9,-9,-9,1,1,0,41,3,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1018.3591,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.889999,11.91,-9,-9,5,1,1,0,0,2,1,0,333,2693.3047,0,0,2301.8599 -4874,6034,10979,-9,10978,-9,4,1,0,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-885.37433,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.9754539,3,61.830002,44.57,-9,-9,7,1,1,0,0,2,1,0,333,2693.3047,0,0,2301.8599 -4874,6035,10980,-9,10978,-9,2,1,1,21,2,0,1,0,2,-9,2,1,0,0,5,7.5255089,7.1270757,0,3,0,0,0,-9,0,-937.64148,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,45,26,15,1,0,-9,1,3.9538856,3.9538856,0,0,0,0,0,0,0,2,1,1,0,0,0,11.461491,3,59.43,58.049999,-9,-9,7,1,1,0,0,2,3,0,1200,14845.963,0,0,1079.8351 -4874,6036,10981,-9,10978,-9,3,1,1,19,2,0,1,0,3,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-903.3562,1,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,2,1,0,442,0,0,0,1223.7668 -4875,6037,10982,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,7.9994683,8.391222,0,3,0,-9,0,-9,0,-1118.2095,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,16,0,15,1,0,-9,0,27.710104,27.710104,0,0,0,0,0,0,0,0,1,1,0,1.243721,0,0,0,49.939999,58.009998,-9,-9,6,4,2,0,0,9,4,1,634,85213.336,0,0,881.1853 -4875,6038,10983,-9,10982,-9,2,1,0,20,2,0,0,1,2,-9,7,2,0,0,3,7.7794843,7.5822244,0,3,0,-9,0,-9,0,-993.63855,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,35,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.970001,53.349998,-9,-9,5,4,2,0,0,9,4,1,505,-24385.881,0,0,673.72778 -4876,6039,10984,-9,10985,10986,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.6027,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,702.25,495778.56,0,0,5043.3062 -4876,6039,10985,10986,-9,-9,1,1,0,36,1,0,2,0,1,-9,1,1,0,0,3,8.1347246,8.1891527,0,2,0,-9,9,0,0,-56.378483,0,0,1,36,1,4,1,2,2,2019,1,2,16,6,12,15,15,1,1,1,0,38.208237,38.208237,0,0,0,0,0,0,0,0,1,1,0,2.4207935,0,0,0,37.740002,52.939999,53.389999,52.349998,6,1,1,0,0,10,5,1,702.25,495778.56,0,0,5043.3062 -4876,6039,10986,10985,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,0,4,8.7298279,9.0728197,0,2,0,-9,9,0,0,23.671047,0,0,0,36,1,3,1,1,1,2019,1,1,9,1,50,40,15,1,0,1,0,15.800449,15.800449,0,0,0,0,0,0,0,0,1,1,0,2.4198544,0,0,0,53.389999,52.349998,37.740002,52.939999,6,1,1,0,0,10,5,1,702.25,495778.56,0,0,5043.3062 -4876,6039,10987,-9,10985,10986,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.17334,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,702.25,495778.56,0,0,5043.3062 -4877,6040,10988,10991,-9,-9,1,1,0,41,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,4,0,-2,21.938818,0,0,1,43,2,4,1,-9,2,2019,3,4,30,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.969999,21.299999,54.200001,57.490002,4,1,1,0,0,2,3,1,294,152726.53,0,0,3704.7361 -4877,6040,10989,-9,10988,10991,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1065.5967,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,2,3,1,294,152726.53,0,0,3704.7361 -4877,6040,10990,-9,10988,10991,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.3284,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,1,294,152726.53,0,0,3704.7361 -4877,6040,10991,10988,-9,-9,4,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,8.1662455,8.0333614,0,2,0,-9,4,0,2,150.09746,0,0,0,41,2,1,3,-9,-9,2019,2,1,11,0,60,44,15,1,0,3,0,6.5326385,6.5326385,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.612371,1,54.200001,57.490002,21.969999,21.299999,7,1,1,0,0,2,3,1,294,152726.53,0,0,3704.7361 -4878,6041,10992,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,7.9171133,8.0015974,0,3,0,0,0,-9,0,-1076.3629,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,0,9.8352823,9.8352823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,-9,-9,5,1,1,0,0,2,4,1,500,-90125.836,0,0,-83.093475 -4879,6042,10993,-9,-9,-9,1,1,0,22,2,0,0,1,2,-9,7,2,0,0,4,0,9.8725138,9.6493187,3,0,0,0,-9,0,-1003.4183,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6223698,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,6,5,0,460,255642.77,0,0,8586.5947 -4880,6043,10994,10995,-9,-9,2,1,1,55,1,0,2,0,2,-9,2,1,0,0,1,9.2658854,9.0383654,0,2,0,-9,7,0,4,95.083832,0,0,0,51,2,5,3,3,3,2019,2,1,22,11,60,84,15,1,1,3,0,20.407734,20.407734,0,0,0,0,0,0,0,0,1,1,0,2.9330482,0,0,0,34.619999,34.75,62.389999,56.709999,6,1,1,0,0,12,4,1,580.5,110797.7,0,0,4967.5991 -4880,6043,10995,10994,-9,-9,1,1,0,51,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,7,0,-4,-4.6739936,0,0,0,55,2,1,1,2,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9644947,0,0,0,62.389999,56.709999,34.619999,34.75,7,1,1,0,0,12,4,1,580.5,110797.7,0,0,4967.5991 -4880,6043,10996,-9,10995,10994,5,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.64642,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,580.5,110797.7,0,0,4967.5991 -4880,6043,10997,-9,10995,10994,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-974.44305,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,12,4,1,580.5,110797.7,0,0,4967.5991 -4880,6044,10998,-9,10995,10994,3,1,1,19,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1000.0052,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,12,1,1,823,-80015.016,0,0,0 -4881,6045,10999,-9,11000,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.0964,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,512,140100.08,0,0,1152.5909 -4881,6045,11000,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,0,3,7.6854897,7.6160398,0,4,0,0,0,-9,0,-1091.5974,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,26,12,24,24,15,1,1,-9,0,9.4140587,9.4140587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.41,55.189999,-9,-9,2,1,1,0,1,4,3,0,512,140100.08,0,0,1152.5909 -4882,6046,11001,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,5,8.1635742,8.0882483,0,3,0,0,0,-9,0,-1049.0824,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,58,60,15,1,0,-9,0,8.0042048,8.0042048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.98,54.209999,-9,-9,6,1,1,0,1,13,4,1,1392,249598.05,0,0,1914.6934 -4883,6047,11002,11004,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,8.3628845,8.5770693,0,2,0,-9,15,0,-5,-.60305631,0,0,1,49,2,3,1,3,3,2019,1,1,14,2,38,38,15,1,0,1,0,12.284347,12.284347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.200001,55.689999,18.540001,60.619999,3,2,3,0,0,6,3,1,377.66666,476045.63,0,0,1507.3497 -4883,6047,11003,-9,11002,11004,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.4775,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,3,1,377.66666,476045.63,0,0,1507.3497 -4883,6047,11004,11002,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,0,3,6.1377978,6.3894525,0,2,0,-9,15,0,5,-50.449013,0,0,0,44,2,3,1,3,3,2019,1,2,22,10,60,40,15,1,1,1,0,.88579655,.88579655,0,0,0,0,0,0,0,7,1,1,0,0,0,.14461337,3,18.540001,60.619999,32.200001,55.689999,4,2,3,0,0,6,3,1,377.66666,476045.63,0,0,1507.3497 -4884,6048,11005,11007,-9,-9,2,1,1,41,1,1,2,0,1,-9,2,1,0,0,4,8.9562721,9.496438,0,2,0,-9,13,0,3,75.849136,0,0,0,38,1,4,1,2,1,2019,1,1,9,0,37,39,15,1,0,1,0,37.313251,37.313251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,49.349998,59.639999,4,1,1,0,0,12,5,1,287.5,625248.5,0,0,4001.9985 -4884,6048,11006,-9,11007,11005,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.9007,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,287.5,625248.5,0,0,4001.9985 -4884,6048,11007,11005,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,0,4,7.9747357,7.8903222,0,2,0,-9,13,0,-3,-103.92206,0,0,1,41,1,4,1,2,2,2019,1,2,9,0,22,20,15,1,0,1,0,18.019495,18.019495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,49.349998,59.639999,6,1,1,0,0,12,5,1,287.5,625248.5,0,0,4001.9985 -4884,6048,11008,-9,11007,11005,3,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1143.3793,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,287.5,625248.5,0,0,4001.9985 -4885,6049,11009,11010,-9,-9,2,1,1,36,1,1,3,0,2,-9,1,1,0,0,3,6.0879569,5.8415861,0,2,0,-9,7,0,1,-69.973381,0,0,0,35,2,4,3,-9,-9,2019,2,1,10,1,60,35,15,1,0,3,0,.82957923,.82957923,0,0,0,0,0,0,0,0,1,1,0,7.7456689,0,0,0,49.970001,53.990002,38.689999,61.75,5,1,1,0,1,6,2,1,910.20001,0,0,0,1156.9462 -4885,6049,11010,11009,-9,-9,1,1,0,35,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-1,-141.00403,0,0,1,36,2,3,1,3,2,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.689999,61.75,49.970001,53.990002,5,1,1,0,0,6,2,1,910.20001,0,0,0,1156.9462 -4885,6049,11011,-9,11010,11009,4,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.44885,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,2,1,910.20001,0,0,0,1156.9462 -4885,6049,11012,-9,11010,11009,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.39075,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,1,910.20001,0,0,0,1156.9462 -4885,6049,11013,-9,11010,11009,3,1,1,11,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.74,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,2,1,910.20001,0,0,0,1156.9462 -4886,6050,11014,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,3,8.3482933,8.3145685,0,3,0,0,0,-9,0,-996.15967,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,48,43,15,1,0,-9,0,9.2475424,9.2475424,0,0,0,0,0,0,0,0,1,1,0,1.4984615,0,0,0,50.459999,45.799999,-9,-9,5,1,1,0,0,9,4,1,1365,1598247.3,0,0,2289.0896 -4886,6051,11015,-9,11014,-9,2,1,1,20,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1139.1959,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.13195887,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,0,9,1,1,633,0,0,0,386.16223 -4887,6052,11016,11017,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,0,4,0,7.2075858,7.0053506,1,0,-9,55,0,2,-11.012131,0,0,0,83,3,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.840137,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,7,2,1,755,798606.19,0,0,3117.646 -4887,6052,11017,11016,-9,-9,1,1,0,83,1,0,0,0,3,-9,2,1,0,0,4,5.6375837,5.578722,0,1,0,-9,55,0,-2,.4048686,0,0,0,85,3,4,3,2,2,2019,2,2,6,0,9,8,15,1,0,4,0,3.897836,3.897836,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,60.119999,54.799999,7,1,1,0,0,7,2,1,755,798606.19,0,0,3117.646 -4888,6053,11018,11019,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.644062,7.5595164,1,0,-9,6,0,4,-93.272919,0,0,0,65,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.477531,7.77316,0,0,58.150002,52.91,38.349998,55.029999,7,1,1,0,0,1,3,1,1502,1039452.4,0,0,2199.8167 -4888,6053,11019,11018,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,6.8698368,6.8783655,1,0,-9,6,0,-4,85.855011,0,0,0,69,2,4,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.0880105,7.4643712,29.936378,3,38.349998,55.029999,58.150002,52.91,6,1,1,0,0,1,3,1,1502,1039452.4,0,0,2199.8167 -4889,6054,11020,11021,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,0,5,8.7932482,8.6431828,0,2,0,-9,6,0,-1,0,0,0,1,33,1,4,1,2,1,2019,1,2,6,2,37,37,15,1,0,1,0,15.027026,15.027026,0,0,0,0,0,0,0,0,1,1,0,4.5182791,0,0,0,49.91,56.93,41.720001,57.709999,6,1,1,0,0,11,5,1,566.66669,170695.78,0,0,5693.5405 -4889,6054,11021,11020,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,4,8.6651745,8.7876053,0,2,0,-9,6,0,1,0,0,0,0,32,1,5,1,1,1,2019,1,1,12,2,38,38,15,1,0,1,0,18.454914,18.454914,0,0,0,0,0,0,0,0,1,1,0,4.9757137,0,0,0,41.720001,57.709999,49.91,56.93,2,1,1,0,0,11,5,1,566.66669,170695.78,0,0,5693.5405 -4889,6054,11022,-9,11020,11021,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-992.27271,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,566.66669,170695.78,0,0,5693.5405 -4890,6055,11023,11024,-9,-9,2,1,0,46,1,0,1,0,1,-9,6,3,0,1,1,0,0,0,2,0,-9,6,0,0,-121.83823,0,0,0,46,2,4,1,-9,2,2019,3,1,26,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,20.620001,46.560001,57.02,4,1,1,0,0,13,4,1,730,1217861.1,0,0,4139.0361 -4890,6055,11024,11023,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,9.1717987,8.9602394,0,2,0,-9,6,0,0,142.29536,0,0,0,46,1,1,3,3,2,2019,2,2,15,4,60,48,15,1,1,3,0,15.279622,15.279622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.560001,57.02,31.68,20.620001,5,1,1,0,1,13,4,1,730,1217861.1,0,0,4139.0361 -4890,6055,11025,-9,11023,11024,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.61426,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,3,1,1,0,0,13,4,1,730,1217861.1,0,0,4139.0361 -4891,6056,11026,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,4,8.1566973,8.0444269,0,3,0,-9,0,-9,0,-1001.2314,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,42,0,15,1,1,-9,0,8.9367237,8.9367237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.27,60.240002,-9,-9,5,1,1,0,0,5,4,1,1065,125327.22,0,0,2055.6299 -4892,6057,11027,11028,-9,-9,2,1,0,37,1,0,1,0,3,-9,3,3,0,1,2,0,0,0,2,0,-9,1,-9,3,21.004442,-9,0,1,34,3,2,1,-9,2,2019,3,1,33,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20,47.950001,55.599998,47.799999,1,1,1,1,0,5,3,0,626,-35459.348,0,0,3903.2302 -4892,6057,11028,11027,-9,-9,1,1,1,34,1,0,1,0,3,-9,2,1,0,0,2,8.141263,8.1001787,0,2,0,-9,1,-9,-3,-7.7984681,-9,0,0,37,3,2,3,-9,-9,2019,2,2,7,0,60,0,15,1,0,3,0,7.698791,7.698791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.599998,47.799999,20,47.950001,6,1,1,0,0,5,3,0,626,-35459.348,0,0,3903.2302 -4893,6058,11029,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,1,0,6.5373478,6.5772228,3,0,0,0,-9,0,-1041.8468,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8013802,0,0,61.189999,15.48,-9,-9,5,1,1,0,0,10,2,0,664,207206.56,0,0,2310.4321 -4894,6059,11030,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,7.3997364,7.3865733,3,0,0,0,-9,0,-969.7038,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5433297,7.0637279,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,8,2,1,902,388800.94,0,0,549.23267 -4895,6060,11031,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,1,1,0,7.079905,7.2660913,3,0,0,0,-9,0,-1023.9717,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,8.1323404,0,0,1,1,0,0,6.6509213,0,0,23.540001,24.459999,-9,-9,3,3,4,0,1,8,2,0,2265,366641.81,0,0,1494.9716 -4895,6061,11032,-9,-9,-9,2,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,5.8351736,6.2046876,3,0,0,0,-9,0,-847.27747,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,9.1265221,5.264698,0,2,1,1,0,0,6.4750438,0,3,38.23,32.880001,-9,-9,5,4,2,0,0,8,2,0,2361,61356.754,0,0,1621.5226 -4896,6062,11033,11034,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,0,3,6.9296646,7.2425418,0,1,0,-9,10,0,12,118.00371,0,0,0,43,2,3,1,2,2,2019,1,1,11,0,10,10,15,1,0,1,0,14.438824,14.438824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.310001,51.529999,54.369999,54.799999,6,1,1,0,0,11,3,1,711.5,86471.031,0,0,1642.0604 -4896,6062,11034,11033,-9,-9,1,1,1,43,1,0,0,0,2,-9,1,1,0,0,3,7.1530442,7.257019,0,1,0,-9,10,0,-12,-110.20547,0,0,0,55,3,3,1,2,2,2019,1,2,10,0,50,50,15,1,0,1,0,3.1201031,3.1201031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,46.310001,51.529999,6,1,1,0,0,11,3,1,711.5,86471.031,0,0,1642.0604 -4896,6063,11035,-9,11033,11034,3,1,1,20,2,0,0,1,2,0,7,2,0,0,4,6.5003052,6.3386807,0,3,0,0,0,-9,0,-977.31934,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,11,2,1,177,-156141.97,0,0,203.2393 -4897,6064,11036,-9,-9,-9,1,1,1,18,2,0,0,0,2,1,11,3,0,0,5,7.1739626,6.8204322,0,3,0,0,0,-9,0,-973.61298,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,2,3,0,0,6,2,0,397,142042.11,0,0,648.11603 -4898,6065,11037,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,8.4548941,8.3071766,0,3,0,0,0,-9,0,-950.23914,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,42,41,15,1,0,-9,0,13.278119,13.278119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,57.189999,-9,-9,6,1,1,0,0,7,4,0,503,129652.42,0,0,1590.4982 -4898,6066,11038,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,8.5345898,8.862545,6.2998405,3,0,-9,0,-9,0,-1027.1982,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,0,15,1,0,-9,0,16.87208,16.87208,0,0,0,0,0,0,0,0,0,0,0,6.1357617,0,0,0,48.169998,52.080002,-9,-9,5,2,3,0,0,7,5,0,309,-28728.756,0,0,2179.4971 -4899,6067,11039,-9,11040,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1012.7703,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,386,108769.34,0,0,2815.124 -4899,6067,11040,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,0,2,6.6556826,6.8805904,5.9000468,4,0,0,0,-9,0,-885.83636,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,16,16,15,1,1,-9,0,7.2005458,7.2005458,0,0,0,0,0,0,0,0,1,1,0,5.4370971,0,0,0,31.530001,57.52,-9,-9,5,1,1,0,1,9,2,0,386,108769.34,0,0,2815.124 -4900,6068,11041,11042,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,7.3884611,7.4989724,0,1,0,-9,5,0,-2,-37.258099,0,0,0,57,2,1,3,3,2,2019,2,2,32,12,26,26,15,1,1,3,0,8.2673712,8.2673712,0,0,0,0,0,0,0,14.5,1,1,0,2.0155468,0,23.095455,3,11.23,48.130001,5.02,48.27,3,1,1,0,0,2,2,0,239,457961.38,0,0,1814.4063 -4900,6068,11042,11041,-9,-9,2,1,1,57,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,5,0,2,95.772667,0,0,0,55,2,2,1,-9,-9,2019,3,1,27,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.63141,3,5.02,48.27,11.23,48.130001,1,1,1,0,1,2,2,0,239,457961.38,0,0,1814.4063 -4901,6069,11043,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,0,4,6.3464251,6.2597604,0,3,0,0,0,-9,0,-958.42462,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,10,16,15,1,0,-9,0,8.4490995,8.4490995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,2,0,947,-5524.5063,0,0,-647.33563 -4902,6070,11044,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1045.5436,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,5,1,1,0,0,2,1,1,525,48470.965,0,0,207.7894 -4903,6071,11045,11046,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.682364,6.7676754,1,0,-9,54,0,-3,58.303356,0,0,0,76,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.6611209,6.6110001,0,3,54.959999,53.169998,57.09,46.700001,7,1,1,0,0,5,3,1,1108.5,801919.63,0,0,1548.0795 -4903,6071,11046,11045,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.0367541,7.1986957,1,0,-9,54,0,3,27.795786,0,0,0,73,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6089821,6.8211222,0,0,57.09,46.700001,54.959999,53.169998,7,1,1,0,0,5,3,1,1108.5,801919.63,0,0,1548.0795 -4904,6072,11047,-9,-9,-9,1,1,1,44,3,0,0,0,2,0,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-956.47028,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,11,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.568,3,28.35,37.130001,-9,-9,1,1,1,0,1,12,1,0,719,-134928.52,0,0,1944.4781 -4905,6073,11048,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,7.4772539,7.6251569,0,3,0,0,0,-9,0,-1059.7853,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,0,15,1,0,-9,0,6.5756693,6.5756693,0,0,0,0,0,0,0,0,0,0,0,6.4180951,0,0,0,41.34,56.619999,-9,-9,4,2,3,0,0,9,3,1,1085,-39218.285,0,0,221.08134 -4906,6074,11049,-9,11053,11052,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.04,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,4,1,626.79999,115935.41,0,0,2998.9692 -4906,6074,11050,-9,11053,11052,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-876.36908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,9,4,1,626.79999,115935.41,0,0,2998.9692 -4906,6074,11051,-9,11053,11052,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.0809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,9,4,1,626.79999,115935.41,0,0,2998.9692 -4906,6074,11052,11053,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,0,3,7.8101816,7.8528113,0,2,0,-9,17,0,-2,-106.67258,0,0,0,44,2,3,1,2,2,2019,1,2,6,0,32,32,15,1,0,1,0,9.3190651,9.3190651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,43.599998,51.610001,6,2,3,0,0,9,4,1,626.79999,115935.41,0,0,2998.9692 -4906,6074,11053,11052,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,0,3,8.2096519,8.4014482,0,2,0,-9,17,0,2,-30.310402,0,0,1,42,2,3,1,-9,-9,2019,1,1,5,0,30,40,15,1,0,1,0,14.171791,14.171791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,51.66,54.880001,6,2,3,0,0,9,4,1,626.79999,115935.41,0,0,2998.9692 -4907,6075,11054,11057,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,8.0091362,8.0697355,0,2,0,-9,4,0,-10,-21.878286,0,0,1,48,2,4,1,2,3,2019,1,1,6,0,37,27,15,1,0,1,0,8.1026058,8.1026058,0,0,0,0,0,0,0,2,1,1,0,3.5654008,0,1.5718378,3,57.900002,51.84,50.34,56.400002,6,1,1,0,0,5,3,1,973.5,118121.48,0,0,2424.6169 -4907,6075,11055,-9,11054,11057,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.3298,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,3,1,973.5,118121.48,0,0,2424.6169 -4907,6075,11056,-9,11054,11057,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.13812,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,973.5,118121.48,0,0,2424.6169 -4907,6075,11057,11054,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,7.8693104,8.03654,0,2,0,-9,4,0,10,75.7481,0,0,0,38,2,3,1,2,2,2019,1,2,11,1,31,40,15,1,0,1,0,9.4281445,9.4281445,0,0,0,0,0,0,0,7,1,1,0,3.2117929,0,1.0118258,3,50.34,56.400002,57.900002,51.84,6,1,1,0,0,5,3,1,973.5,118121.48,0,0,2424.6169 -4908,6076,11058,11059,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,4,7.5964699,7.989347,6.9329405,1,0,-9,9,0,26,-58.740643,0,0,0,34,2,2,1,-9,-9,2019,1,1,6,0,20,16,15,1,0,1,0,12.192897,12.192897,0,0,0,0,0,0,0,0,0,0,0,0,6.8523946,0,0,61.119999,51.57,35.32,46.419998,6,1,1,0,0,11,3,0,972,323705.81,0,0,1937.9232 -4908,6076,11059,11058,-9,-9,1,1,0,34,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,9,0,-26,157.05161,0,0,1,60,3,4,1,3,2,2019,1,2,18,6,15,35,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.32,46.419998,61.119999,51.57,3,1,1,0,0,11,3,0,972,323705.81,0,0,1937.9232 -4909,6077,11060,11061,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,44,0,3,0,0,0,0,81,3,4,3,3,2,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,2.6418447,.16297907,0,0,0,69.406532,0,1,1,0,0,0,0,0,38.77,27.1,60.119999,54.799999,3,1,1,0,0,6,1,1,435,172606.11,0,0,1108.1516 -4909,6077,11061,11060,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,-3,0,0,0,0,84,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,60.119999,54.799999,38.77,27.1,7,1,1,0,0,6,1,1,435,172606.11,0,0,1108.1516 -4910,6078,11062,11065,-9,-9,2,1,0,37,1,1,2,0,1,-9,1,1,0,0,5,8.9982891,8.1899643,0,2,0,-9,12,0,-3,-47.818226,0,0,1,40,1,5,1,3,3,2019,1,1,6,1,10,10,15,1,0,1,0,57.539116,57.539116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,62.389999,56.709999,7,2,3,0,0,7,5,1,1938,920442.88,0,0,8492.3965 -4910,6078,11063,-9,11062,11065,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.83148,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,7,5,1,1938,920442.88,0,0,8492.3965 -4910,6078,11064,-9,11062,11065,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-849.30408,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,7,5,1,1938,920442.88,0,0,8492.3965 -4910,6078,11065,11062,-9,-9,1,1,1,40,1,1,2,0,1,-9,1,1,0,0,5,9.8351049,9.7886457,0,2,0,-9,12,0,3,19.751505,0,0,0,37,1,5,1,1,1,2019,1,2,9,0,50,50,15,1,0,1,0,39.918098,39.918098,0,0,0,0,0,0,0,0,0,0,0,8.1883812,0,0,0,62.389999,56.709999,54.099998,59.110001,6,2,3,0,0,7,5,1,1938,920442.88,0,0,8492.3965 -4911,6079,11066,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,0,4,7.7586741,7.4892583,0,3,0,0,0,-9,0,-1041.5229,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,23,9,21,22,15,1,1,-9,0,8.2566576,8.2566576,0,0,0,0,0,0,0,0,0,0,0,6.3709393,0,0,0,29.01,64.699997,-9,-9,3,1,1,0,0,7,3,1,163,201607.69,0,0,372.35004 -4912,6080,11067,-9,11068,11069,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.1212,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,1,1244,787199.38,0,0,1445.33 -4912,6080,11068,11069,-9,-9,1,1,0,53,1,0,1,0,3,-9,2,1,0,0,5,6.854404,6.9922419,0,2,0,-9,18,0,3,-36.0686,0,0,0,50,2,4,1,3,3,2019,1,2,7,0,26,0,15,1,0,1,0,4.7994823,4.7994823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.240002,59.41,53,55,6,1,1,0,0,4,3,1,1244,787199.38,0,0,1445.33 -4912,6080,11069,11068,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,7.9428091,8.0374117,0,2,0,-9,7,0,-3,-.012989958,0,0,0,53,3,5,1,-9,-9,2019,1,1,9,1,40,70,15,1,0,1,0,7.8938193,7.8938193,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,43.240002,59.41,6,1,1,0,0,4,3,1,1244,787199.38,0,0,1445.33 -4913,6081,11070,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,6.0228004,6.2763195,3,0,0,0,-9,0,-1004.0871,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1816564,0,0,50,47,-9,-9,6,1,1,0,0,6,2,0,440,-75515.969,0,0,879.3963 -4914,6082,11071,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,4,8.6785011,8.775527,0,3,0,0,0,-9,0,-940.13086,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,35,0,15,1,0,-9,0,24.914223,24.914223,0,0,0,0,0,0,0,0,0,0,0,8.530385,0,0,0,51.830002,57.200001,-9,-9,5,2,3,0,0,8,5,1,354,56653.891,0,0,4895.8306 -4915,6083,11072,11073,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,8.2668867,8.0831232,0,1,0,-9,8,0,1,-53.139301,0,0,0,63,2,3,1,2,3,2019,1,2,11,0,16,16,15,1,0,1,0,26.213711,26.213711,0,0,0,0,0,0,0,0,0,0,0,3.6734555,0,0,0,64.400002,25.940001,54.900002,54.529999,4,1,1,0,0,13,5,1,917,477070.5,0,0,1473.3904 -4915,6083,11073,11072,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,8.4442301,7.9175906,0,1,0,-9,8,0,-1,-7.7562718,0,0,0,64,2,2,1,3,3,2019,1,1,9,0,37,40,15,1,0,1,0,9.9663353,9.9663353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.900002,54.529999,64.400002,25.940001,2,1,1,0,0,13,5,1,917,477070.5,0,0,1473.3904 -4916,6084,11074,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,0,4,0,8.2974949,8.0167055,3,0,0,0,-9,0,-895.23114,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6231356,8.4248552,0,0,64.470001,51.450001,-9,-9,6,1,1,0,0,4,5,1,526,3211.188,0,0,4085.9226 -4917,6085,11075,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,2,1,0,0,1,7.7953744,8.191062,0,3,0,0,0,-9,0,-980.39771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,45,15,1,0,-9,0,8.2912836,8.2912836,0,0,0,0,0,0,0,0,0,0,0,5.1328321,0,0,0,61.18,28.91,-9,-9,6,1,1,0,0,10,4,1,1296,37163.832,0,0,1292.8604 -4918,6086,11076,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,0,4,0,3.9405928,4.1641107,3,0,-9,0,1,0,-964.48102,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.656549,3.936794,7.5277309,3,59.709999,50.889999,-9,-9,6,1,1,0,0,4,2,0,303,127444.09,0,0,1022.9612 -4919,6087,11077,11078,-9,-9,1,1,1,60,1,1,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,7,0,5,0,0,0,0,55,3,2,3,3,3,2019,4,2,30,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.190001,27,32.310001,33.98,1,1,1,0,1,11,1,1,1102,152192.05,0,0,1493.8899 -4919,6087,11078,11077,-9,-9,2,1,0,55,1,1,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,7,0,-5,0,0,0,0,60,3,1,3,3,3,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.425987,1,32.310001,33.98,23.190001,27,1,1,1,0,1,11,1,1,1102,152192.05,0,0,1493.8899 -4919,6088,11079,-9,11080,11081,7,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.93445,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,1,1,286.66666,83749.906,0,0,969.5177 -4919,6088,11080,11081,11078,11077,3,1,0,25,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,3,19.098581,0,1,1,22,3,4,1,3,3,2019,3,5,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,45.73,33.599998,61.669998,4,1,1,0,0,11,1,1,286.66666,83749.906,0,0,969.5177 -4919,6088,11081,11080,-9,-9,5,1,1,22,1,1,2,0,3,-9,1,1,0,0,4,4.5939398,4.4576516,0,2,0,-9,5,0,-3,-142.03891,0,1,0,25,2,4,3,-9,-9,2019,2,3,15,3,40,0,15,1,0,3,0,.25964323,.25964323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.599998,61.669998,52.830002,45.73,5,1,1,0,0,11,1,1,286.66666,83749.906,0,0,969.5177 -4919,6089,11082,-9,11078,11077,4,1,0,21,2,1,2,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1058.8633,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,26,9,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.77,63.419998,-9,-9,1,1,1,0,1,11,1,1,575.5,-89428.977,0,0,396.01825 -4919,6089,11083,-9,11082,-9,6,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1109.3588,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,1,1,575.5,-89428.977,0,0,396.01825 -4920,6090,11084,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-965.94354,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.099998,46.23,-9,-9,7,1,1,0,0,7,1,1,244,105711.1,0,0,132.26357 -4921,6091,11085,-9,11086,11088,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-840.27008,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,7,3,0,1396.75,499337,0,0,2606.3247 -4921,6091,11086,11088,-9,-9,1,1,0,37,1,0,2,0,2,0,7,2,0,0,4,0,0,0,2,0,-9,16,0,-2,49.820663,-9,0,1,39,1,4,1,2,2,2019,3,2,18,6,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.34,62.18,50.619999,53.790001,5,3,4,0,0,7,3,0,1396.75,499337,0,0,2606.3247 -4921,6091,11087,-9,11086,11088,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.8267,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,7,3,0,1396.75,499337,0,0,2606.3247 -4921,6091,11088,11086,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,8.5962534,8.9158783,0,2,0,-9,14,0,2,-14.195593,0,0,0,37,2,4,2,-9,-9,2019,2,1,7,0,40,52,15,1,0,2,0,21.531492,21.531492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.619999,53.790001,29.34,62.18,5,3,4,0,0,7,3,0,1396.75,499337,0,0,2606.3247 -4922,6092,11089,11090,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.4764366,8.6958771,0,2,0,-9,6,0,1,70.899193,0,0,0,49,1,4,1,3,2,2019,1,2,8,0,45,42,15,1,0,1,0,16.3468,16.3468,0,0,0,0,0,0,0,2,1,1,0,0,0,2.9689994,3,59.139999,52.5,42.77,58.630001,6,1,1,0,0,12,5,1,303.66666,1656788.8,0,0,5263.4155 -4922,6092,11090,11089,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,8.8227978,8.8998461,0,2,0,-9,6,0,-1,-7.8621302,0,0,0,50,1,4,1,3,2,2019,1,1,12,0,50,50,15,1,0,1,0,16.475012,16.475012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.77,58.630001,59.139999,52.5,3,1,1,0,0,12,5,1,303.66666,1656788.8,0,0,5263.4155 -4922,6092,11091,-9,11089,11090,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.33472,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,303.66666,1656788.8,0,0,5263.4155 -4922,6093,11092,-9,11089,11090,3,1,0,20,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1026.6663,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.720001,60.209999,-9,-9,6,1,1,0,0,12,1,1,586,58272.125,0,0,0 -4923,6094,11093,11094,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,5,7.8545718,8.5064564,7.7261357,1,0,-9,39,0,-3,-53.442768,0,0,0,60,3,4,1,3,3,2019,1,2,7,0,18,18,15,1,0,1,0,14.794812,14.794812,0,0,0,0,0,0,0,0,0,0,0,8.1925468,7.7949452,0,0,57.060001,57.759998,55,53,7,1,1,0,0,4,5,1,524,624074.56,0,0,4981.7695 -4923,6094,11094,11093,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,0,4,7.8714957,7.9077091,0,1,0,-9,6,0,3,-43.772041,0,0,0,57,2,5,1,-9,-9,2019,1,1,8,0,30,30,15,1,0,1,0,10.944061,10.944061,0,0,0,0,0,0,0,0,0,0,0,1.7478585,0,0,0,55,53,57.060001,57.759998,6,1,1,0,0,4,5,1,524,624074.56,0,0,4981.7695 -4924,6095,11095,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,3,7.6730142,7.9884801,0,3,0,0,0,-9,0,-1062.6005,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,36,28,15,1,1,-9,0,7.7283173,7.7283173,0,0,0,0,0,0,0,2,1,1,0,0,0,7.4352412,3,31.690001,59.68,-9,-9,6,1,1,0,0,6,3,1,265,41048.574,0,0,2406.5811 -4925,6096,11096,-9,11099,11098,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.6228,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,1,0,463.20001,18550.781,0,0,1036.0299 -4925,6096,11097,-9,11099,11098,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.8877,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,1,0,463.20001,18550.781,0,0,1036.0299 -4925,6096,11098,11099,-9,-9,1,1,1,48,1,0,3,0,3,-9,8,3,1,1,3,0,0,0,2,0,-9,17,0,14,0,0,0,0,34,2,5,3,3,2,2019,4,2,14,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,39.619999,53.459999,41.07,60.93,1,2,3,0,1,7,1,0,463.20001,18550.781,0,0,1036.0299 -4925,6096,11099,11098,-9,-9,2,1,0,34,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,18,0,-14,0,0,0,1,48,3,3,3,3,2,2019,4,1,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.750298,1,41.07,60.93,39.619999,53.459999,7,2,3,0,1,7,1,0,463.20001,18550.781,0,0,1036.0299 -4925,6096,11100,-9,11099,11098,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.34045,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,1,0,463.20001,18550.781,0,0,1036.0299 -4926,6097,11101,-9,11102,11104,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.78217,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,4,1,642.5,95827.953,0,0,3471.6262 -4926,6097,11102,11104,-9,-9,2,1,0,29,1,1,2,0,2,-9,2,1,0,0,4,7.4007106,7.5163331,0,2,0,-9,4,0,-2,5.1430135,0,1,1,31,2,3,1,-9,-9,2019,1,1,7,0,36,32,15,1,0,1,0,5.7120047,5.7120047,0,0,0,0,0,0,0,7,1,1,0,0,0,13.904726,3,58.150002,52.91,15.12,55.119999,6,1,1,0,0,13,4,1,642.5,95827.953,0,0,3471.6262 -4926,6097,11103,-9,11102,11104,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.94489,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,642.5,95827.953,0,0,3471.6262 -4926,6097,11104,11102,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,0,3,9.0543594,8.9319839,0,2,0,-9,4,0,2,-56.01038,0,0,0,29,2,4,1,2,2,2019,1,2,9,0,47,52,15,1,0,1,0,13.384597,13.384597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.12,55.119999,58.150002,52.91,5,1,1,0,0,13,4,1,642.5,95827.953,0,0,3471.6262 -4927,6098,11105,-9,-9,-9,1,1,1,88,2,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1115.5063,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.959999,22.219999,-9,-9,5,1,1,0,0,7,1,0,192,59286.375,0,0,782.91534 -4928,6099,11106,-9,11107,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1047.7156,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1053,154733.89,0,0,3868.3213 -4928,6099,11107,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,0,4,8.84554,8.9687319,6.3651495,4,0,-9,0,-9,0,-1084.141,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,37,0,15,1,1,-9,0,15.480872,15.480872,0,0,0,0,0,0,0,0,1,1,0,8.341301,0,0,0,49,55,-9,-9,5,1,1,0,0,8,5,1,1053,154733.89,0,0,3868.3213 -4929,6100,11108,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1060.1528,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.4130609,0,11.494509,3,46.32,53.439999,-9,-9,5,1,1,0,0,9,1,0,372,134629.2,0,0,-259.58444 -4930,6101,11109,11110,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,8.290678,8.2652826,0,1,0,-9,8,0,-1,90.620659,0,0,0,54,1,4,1,2,2,2019,1,1,13,4,20,18,15,1,1,1,0,22.759901,22.759901,0,0,0,0,0,0,0,0,0,0,0,3.4935427,0,0,0,54.200001,57.490002,57.73,54.529999,6,1,1,0,0,12,5,1,1800.5,1168488,0,0,3554.0151 -4930,6101,11110,11109,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,8.3207245,8.2536211,0,1,0,-9,8,0,1,8.9413462,0,0,0,53,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,12.126146,12.126146,0,0,0,0,0,0,0,0,0,0,0,7.586535,0,0,0,57.73,54.529999,54.200001,57.490002,7,1,1,0,0,12,5,1,1800.5,1168488,0,0,3554.0151 -4931,6102,11111,-9,11112,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,4,0,0,0,-9,0,-1127.161,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,3,4,0,0,9,3,1,508.5,494236.81,0,0,1509.9617 -4931,6102,11112,-9,-9,-9,1,1,0,53,3,0,1,0,1,-9,2,1,0,0,4,8.1442585,8.5770054,0,4,0,0,0,-9,0,-1002.752,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,4,0,35,40,15,1,0,-9,0,12.303806,12.303806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.259998,51.57,-9,-9,6,3,4,0,0,9,3,1,508.5,494236.81,0,0,1509.9617 -4932,6103,11113,-9,11115,-9,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1160.1786,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,553.33331,-44947.078,0,0,2211.6333 -4932,6103,11114,-9,11115,-9,3,1,1,16,2,0,1,0,2,-9,2,2,0,0,4,6.2557187,6.5445209,0,4,0,0,0,-9,0,-1097.1788,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,11,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,8,2,0,553.33331,-44947.078,0,0,2211.6333 -4932,6103,11115,-9,-9,-9,1,1,0,53,2,0,1,0,2,-9,2,1,0,0,4,7.0809236,6.9061055,0,4,0,0,0,-9,0,-1043.9924,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,16,16,15,1,0,-9,0,9.7615318,9.7615318,0,0,0,0,0,0,0,42,1,1,0,1.5537883,0,45.367653,3,55.790001,52.619999,-9,-9,7,3,4,0,0,8,2,0,553.33331,-44947.078,0,0,2211.6333 -4932,6104,11116,-9,11115,-9,2,1,1,27,2,0,1,0,2,-9,2,1,0,0,3,7.4331098,7.8640523,0,3,0,0,0,-9,0,-872.93207,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,40,35,15,1,0,-9,1,6.1948838,6.1948838,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,-9,-9,5,1,1,0,0,8,3,0,547,-84557.07,0,0,54.253689 -4933,6105,11117,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,0,5,7.9545803,7.9945588,0,3,0,0,0,-9,0,-985.0542,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,38,15,1,0,-9,0,10.683857,10.683857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.669998,59.259998,-9,-9,6,1,1,0,0,1,3,1,1289,213174.95,0,0,543.38586 -4933,6106,11118,-9,11117,-9,2,1,0,19,2,0,0,1,2,-9,7,2,0,0,4,6.1190987,6.3891306,0,3,0,0,0,-9,0,-982.48486,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,2,1,1227,36630.012,0,0,1419.4739 -4934,6107,11119,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,4,0,7.8794003,7.9308968,3,0,0,0,-9,0,-995.25208,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.98837531,8.2402,0,0,62.849998,41.16,-9,-9,6,1,1,0,0,10,3,1,919,593618.81,0,0,2426.396 -4935,6108,11120,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,0,3,8.1238718,8.2717476,0,3,0,0,0,-9,0,-1068.4069,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,37,15,1,0,-9,0,9.2020025,9.2020025,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,63.259998,42.529999,-9,-9,6,3,4,0,0,4,4,0,883,-131622.7,0,0,1447.6766 -4936,6109,11121,11122,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.000483,6.0926018,1,0,-9,44,0,2,53.240879,0,0,0,69,3,4,3,-9,-9,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8943491,5.949861,0,0,54.610001,45.5,55.189999,54.259998,6,1,1,0,0,11,2,1,232.5,547876.75,0,0,2008.3694 -4936,6109,11122,11121,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,7.4458013,7.0235524,1,0,-9,44,0,-2,-3.6404092,0,0,0,71,3,2,3,2,1,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5067801,7.2949705,0,0,55.189999,54.259998,54.610001,45.5,6,1,1,0,0,11,2,1,232.5,547876.75,0,0,2008.3694 -4937,6110,11123,-9,-9,-9,1,1,0,49,2,1,3,0,2,-9,2,1,0,0,3,7.1573663,6.934813,0,4,0,0,0,-9,0,-988.08466,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,16,16,15,1,0,-9,0,8.5523605,8.5523605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,-9,-9,4,1,1,0,0,2,2,0,557,-78264.617,0,0,2583.1484 -4937,6111,11124,-9,11126,-9,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-926.17334,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,2,1,0,440,-19861.152,0,0,664.69214 -4937,6111,11125,-9,11126,-9,4,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1130.7269,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,1,0,440,-19861.152,0,0,664.69214 -4937,6111,11126,-9,11123,-9,3,1,0,20,2,1,3,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-904.18079,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,1,0,440,-19861.152,0,0,664.69214 -4938,6112,11127,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,4,8.1969032,7.8287997,0,3,0,0,0,-9,0,-881.2738,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,41,15,1,0,-9,0,9.3909664,9.3909664,0,0,0,0,0,0,0,0,1,1,0,2.1565101,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,4,1,214,10723.139,0,0,2544.48 -4939,6113,11128,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1050.8248,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.240002,35.509998,-9,-9,6,1,1,0,0,13,1,1,1784,-111817.83,0,0,1425.0341 -4940,6114,11129,11130,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,35,0,-3,57.460522,-9,0,0,56,2,4,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.2888341,3,51,54,54,54,6,2,3,0,1,5,2,1,1214,278716.97,0,0,973.06909 -4940,6114,11130,11129,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,4,7.4495368,7.3438458,0,1,0,-9,35,0,3,-54.071022,0,0,0,53,2,4,3,3,3,2019,2,2,9,0,40,30,15,1,0,3,0,5.1124296,5.1124296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51,54,6,2,3,0,1,5,2,1,1214,278716.97,0,0,973.06909 -4940,6115,11131,-9,11129,11130,4,1,0,31,3,0,0,0,2,-9,2,1,0,0,3,7.3340855,7.8101859,0,3,0,-9,0,-9,0,-940.32172,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,23,0,15,1,1,-9,1,8.4644756,8.4644756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.529999,43.029999,-9,-9,3,2,3,0,0,5,3,1,108,-38309.934,0,0,1838.4565 -4941,6116,11132,11133,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,1,3,7.1372805,7.0777903,0,1,0,-9,8,0,4,24.059923,0,0,0,52,3,2,3,-9,-9,2019,2,1,8,0,16,0,15,1,0,3,0,9.898098,9.898098,0,0,0,0,0,0,0,110,1,1,0,0,0,113.54469,1,54.959999,53.169998,42.939999,31.969999,6,1,1,0,0,13,2,0,1236,-76027.883,0,0,2748.7998 -4941,6116,11133,11132,-9,-9,1,1,0,52,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,8,0,-4,45.899307,0,0,0,56,2,3,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.939999,31.969999,54.959999,53.169998,5,1,1,0,0,13,2,0,1236,-76027.883,0,0,2748.7998 -4942,6117,11134,11135,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,0,2,8.9176273,8.6980267,0,1,0,-9,24,0,0,168.79752,0,0,0,48,2,4,1,2,-9,2019,1,1,11,0,42,47,15,1,0,1,0,16.325787,16.325787,0,0,0,0,0,0,0,0,0,0,0,2.6652689,0,0,0,35.549999,50.240002,60.119999,54.799999,6,1,1,0,0,2,5,1,748.5,747910.5,0,0,2077.6567 -4942,6117,11135,11134,-9,-9,1,1,0,48,1,0,0,0,2,-9,1,1,0,0,4,7.2776971,7.1135154,0,1,0,-9,24,0,0,1.9989944,0,0,0,48,1,2,1,3,2,2019,1,2,1,0,45,40,15,1,0,1,0,5.0566602,5.0566602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,35.549999,50.240002,7,1,1,0,0,2,5,1,748.5,747910.5,0,0,2077.6567 -4943,6118,11136,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-957.59515,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.150002,18.09,-9,-9,1,1,1,0,1,4,1,0,285,-77425.789,0,0,227.25046 -4944,6119,11137,11138,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.106945,6.8525443,1,0,-9,56,0,-1,-157.36703,0,0,0,78,2,3,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6523938,7.2200675,5.8581624,1,58.32,50.220001,38.57,54.110001,6,1,1,0,0,7,3,1,594,956117.25,0,0,2966.7441 -4944,6119,11138,11137,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.5046625,7.4874325,1,0,-9,56,0,1,35.01775,0,0,0,77,2,3,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.7984189,7.2401447,0,0,38.57,54.110001,58.32,50.220001,5,1,1,0,0,7,3,1,594,956117.25,0,0,2966.7441 -4945,6120,11139,11140,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.8647451,8.9005985,0,1,0,-9,5,0,-4,52.18222,0,0,0,56,2,4,1,3,2,2019,1,2,3,0,37,55,15,1,0,1,0,24.668945,24.668945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,7,1,1,0,0,13,5,1,776.5,1996877.3,0,0,4188.7988 -4945,6120,11140,11139,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.2913523,8.242548,0,1,0,-9,5,0,4,5.1092572,0,0,0,52,1,4,1,-9,-9,2019,1,1,6,0,42,40,15,1,0,1,0,11.925204,11.925204,0,0,0,0,0,0,0,0,0,0,0,4.7013788,0,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,13,5,1,776.5,1996877.3,0,0,4188.7988 -4946,6121,11141,-9,-9,-9,1,1,0,52,3,0,1,0,1,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-1142.025,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50.353424,3,44.130001,57.970001,-9,-9,5,1,1,0,1,9,1,0,870.5,171230.55,0,0,2207.6531 -4946,6121,11142,-9,11141,-9,2,1,1,16,2,0,1,1,-9,-9,7,2,0,0,2,0,3.5495701,3.1957979,4,0,0,0,-9,0,-934.13586,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0904381,0,0,0,41.959999,53.049999,-9,-9,5,1,1,0,0,9,1,0,870.5,171230.55,0,0,2207.6531 -4947,6122,11143,11144,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,0,4,8.3175602,8.4421444,0,1,0,-9,1,-9,4,-22.853676,-9,0,0,40,1,3,1,-9,-9,2019,1,1,9,1,38,0,15,1,0,1,0,15.800521,15.800521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,33.07,55.18,5,1,1,0,0,11,4,1,1439.5,115119.94,0,0,2567.9861 -4947,6122,11144,11143,-9,-9,1,1,0,40,1,0,0,0,1,-9,1,1,0,0,3,3.956641,3.6898992,0,1,0,1,1,-9,-4,53.567493,0,0,1,44,1,4,1,2,2,2019,1,2,20,8,37,40,15,1,1,1,0,.12789194,.12789194,0,0,0,0,0,0,0,0,0,0,0,4.8986945,0,0,0,33.07,55.18,51,56,4,2,3,0,0,11,4,1,1439.5,115119.94,0,0,2567.9861 -4948,6123,11145,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,3,0,6.4524679,6.7255287,3,0,0,0,-9,0,-1002.6518,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2098584,6.6625695,0,3,56.369999,29.57,-9,-9,6,1,1,0,0,8,2,1,1336,601833.81,0,0,2171.085 -4949,6124,11146,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,4,7.8250403,7.8567553,0,3,0,-9,0,-9,0,-1038.584,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,35,0,15,1,0,-9,0,6.7191687,6.7191687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,1,3,0,63,-155592.8,0,0,614.02466 -4950,6125,11147,11148,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.4336987,8.3860569,0,1,0,-9,4,0,0,-21.197704,0,1,1,28,2,4,1,-9,-9,2019,1,1,12,1,38,43,15,1,0,1,0,11.131741,11.131741,0,0,0,0,0,0,0,0,0,0,0,.4527179,0,0,0,51.84,51.669998,27.74,62.650002,6,4,4,0,0,6,4,0,1258,60350.277,0,0,1901.1682 -4950,6125,11148,11147,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,7.4028134,7.5100026,0,1,0,-9,4,0,0,-30.638573,0,1,0,28,1,4,1,1,-9,2019,1,2,26,10,37,0,15,1,1,1,0,5.0833898,5.0833898,0,0,0,0,0,0,0,0,0,0,0,2.1858239,0,0,0,27.74,62.650002,51.84,51.669998,2,3,4,0,1,6,4,0,1258,60350.277,0,0,1901.1682 -4951,6126,11149,11152,-9,-9,2,1,0,37,1,0,3,0,1,-9,2,1,0,0,5,8.7461624,8.5044384,0,2,0,-9,5,0,-15,-20.750254,0,0,1,52,2,5,1,-9,-9,2019,1,1,14,2,53,60,15,1,0,1,0,12.086069,12.086069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.419998,57.290001,62.389999,56.709999,6,1,1,0,0,6,5,1,383.39999,655129.19,0,0,5007.8486 -4951,6126,11150,-9,11149,11152,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-877.38879,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,383.39999,655129.19,0,0,5007.8486 -4951,6126,11151,-9,11149,11152,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.63434,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,383.39999,655129.19,0,0,5007.8486 -4951,6126,11152,11149,-9,-9,1,1,1,52,1,0,3,0,2,-9,2,1,0,0,5,9.0980215,8.4737949,6.3637643,2,0,-9,5,0,15,-15.647683,0,0,0,37,1,5,1,2,3,2019,1,2,5,0,39,38,15,1,0,1,0,15.785821,15.785821,0,0,0,0,0,0,0,0,1,1,0,6.358573,0,0,0,62.389999,56.709999,49.419998,57.290001,1,1,1,0,0,6,5,1,383.39999,655129.19,0,0,5007.8486 -4951,6126,11153,-9,11149,11152,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.10791,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,5,1,383.39999,655129.19,0,0,5007.8486 -4952,6127,11154,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,2,0,6.8526945,6.47086,3,0,0,0,-9,0,-940.33972,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5902483,6.6845694,0,0,58.98,15.36,-9,-9,6,1,1,0,0,10,2,1,2478,146084.17,0,0,2257.3203 -4953,6128,11155,11156,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,0,5,9.0619011,9.0829105,0,2,0,-9,7,0,1,-53.256126,0,0,0,30,2,4,1,2,2,2019,1,2,4,0,68,62,15,1,0,1,0,18.467457,18.467457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,57.16,56.150002,6,1,1,0,0,4,5,0,342.33334,301087.78,0,0,4125.7681 -4953,6128,11156,11155,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,0,4,7.8457241,7.8168049,0,2,0,-9,7,0,-1,39.438831,0,0,1,31,1,5,1,2,2,2019,1,1,8,0,27,27,15,1,0,1,0,11.481494,11.481494,0,0,0,0,0,0,0,0,1,1,0,3.130609,0,0,0,57.16,56.150002,51.139999,60.450001,7,1,1,0,0,4,5,0,342.33334,301087.78,0,0,4125.7681 -4953,6128,11157,-9,11156,11155,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.14691,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,5,0,342.33334,301087.78,0,0,4125.7681 -4954,6129,11158,11160,-9,-9,1,1,0,35,1,0,3,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,10,0,3,-35.298897,0,0,1,32,3,5,1,3,3,2019,3,4,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.43,58.049999,62.389999,56.709999,6,2,3,1,0,9,2,0,1256.2,23120.406,0,0,3178.1016 -4954,6129,11159,-9,11158,11160,2,1,1,16,2,0,3,0,2,-9,97,2,0,0,2,0,0,0,2,0,0,0,-9,0,-927.10663,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.130001,36.860001,-9,-9,6,2,3,0,0,9,2,0,1256.2,23120.406,0,0,3178.1016 -4954,6129,11160,11158,-9,-9,4,1,1,32,1,0,3,0,3,-9,1,1,0,0,5,7.6628714,7.6279202,0,2,0,-9,10,0,-3,-10.696502,0,0,0,35,2,5,3,-9,-9,2019,2,1,6,0,40,50,15,1,0,3,0,5.2609768,5.2609768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,59.43,58.049999,7,2,3,0,0,9,2,0,1256.2,23120.406,0,0,3178.1016 -4954,6129,11161,-9,11158,11160,6,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.0872,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,9,2,0,1256.2,23120.406,0,0,3178.1016 -4954,6129,11162,-9,11158,11160,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.4348,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,9,2,0,1256.2,23120.406,0,0,3178.1016 -4955,6130,11163,11164,-9,-9,1,1,1,29,1,0,2,0,2,-9,1,1,0,0,5,7.3465099,7.5759563,0,2,0,-9,7,0,-2,18.983122,0,1,0,31,2,4,1,-9,-9,2019,1,2,7,0,60,50,15,1,0,1,0,2.8887484,2.8887484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,13,3,1,499,-113417.82,0,0,1177.8286 -4955,6130,11164,11163,-9,-9,2,1,0,31,1,0,2,0,2,-9,2,1,0,0,4,7.0739927,7.3856583,0,2,0,-9,7,0,2,119.40269,0,0,1,29,2,5,1,-9,-9,2019,1,1,8,0,22,30,15,1,0,1,0,6.375237,6.375237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,4,1,0,0,13,3,1,499,-113417.82,0,0,1177.8286 -4955,6130,11165,-9,11164,11163,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.04218,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,499,-113417.82,0,0,1177.8286 -4956,6131,11166,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,0,5,0,6.994019,7.1286902,3,0,0,0,-9,0,-1090.0844,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8351755,6.9837475,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,2,1,1180,539001.88,0,0,1167.4445 -4957,6132,11167,-9,-9,11168,1,1,0,35,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1084.6627,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,14,2,0,25,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.400002,-9,-9,6,1,1,0,0,13,1,1,435,-225521.75,0,0,0 -4957,6133,11168,-9,-9,-9,2,1,1,64,3,0,0,0,1,-9,1,1,0,0,4,8.5316887,8.3623447,4.2333164,3,0,0,0,-9,0,-1055.4789,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,25,15,15,1,0,-9,0,23.256174,23.256174,0,0,0,0,0,0,0,0,0,0,0,4.0118251,4.4525118,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,5,1,1285,684551.5,0,0,3572.3435 -4958,6134,11169,11170,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,0,5,9.6017504,9.3704767,0,1,0,-9,33,0,-1,-145.97003,-9,0,0,61,2,5,3,3,3,2019,2,1,10,2,44,0,15,1,0,3,0,33.729176,33.729176,0,0,0,0,0,0,0,0,1,1,0,3.4007516,0,0,0,52.810001,51.41,57,59.119999,5,1,1,0,0,7,5,1,546,2246829,0,0,4430.0273 -4958,6134,11170,11169,-9,-9,1,1,1,61,1,0,0,0,2,-9,97,3,0,0,5,6.864924,6.9319754,0,1,0,-9,33,0,1,199.65688,-9,0,0,60,1,5,1,2,3,2019,3,2,9,0,15,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57,59.119999,52.810001,51.41,5,1,1,0,0,7,5,1,546,2246829,0,0,4430.0273 -4959,6135,11171,-9,11172,11173,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1064.4803,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,6,4,0,1018.5,140801.22,0,0,3231.5339 -4959,6135,11172,11173,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,3,7.1518393,6.9694433,0,2,0,-9,17,0,-2,-107.49663,0,0,1,38,1,3,1,2,2,2019,1,1,17,5,25,25,15,1,1,1,0,5.5051656,5.5051656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.830002,45.720001,43.599998,51.610001,4,1,1,0,0,6,4,0,1018.5,140801.22,0,0,3231.5339 -4959,6135,11173,11172,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,0,3,8.8669243,8.7619905,0,2,0,-9,17,0,2,-17.512302,0,0,0,36,2,3,1,2,2,2019,1,2,21,9,50,47,15,1,1,1,0,13.426497,13.426497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,32.830002,45.720001,5,1,1,0,0,6,4,0,1018.5,140801.22,0,0,3231.5339 -4959,6135,11174,-9,11172,11173,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1003.1744,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,4,0,1018.5,140801.22,0,0,3231.5339 -4960,6136,11175,-9,-9,-9,1,1,0,60,3,0,1,0,2,-9,4,3,0,1,3,0,6.755971,6.8803868,4,0,0,0,-9,0,-1006.4351,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6388006,0,0,46.209999,29.959999,-9,-9,6,4,2,0,0,8,2,1,626,438476.44,0,0,1772.7924 -4960,6137,11176,-9,11175,-9,2,1,0,18,2,0,1,1,3,0,7,2,0,0,2,6.123682,6.2776875,4.701746,3,0,0,0,-9,0,-939.1651,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3077226,4.2485275,0,0,45.049999,39.07,-9,-9,5,4,2,0,0,8,2,1,242,110799.84,0,0,502.19092 -4961,6138,11177,11178,-9,-9,2,1,1,21,1,0,0,0,2,-9,2,1,0,0,5,8.2323542,8.0696926,0,1,0,-9,1,-9,-3,-114.87822,-9,1,0,24,2,3,1,-9,-9,2019,1,1,8,0,45,0,15,1,0,1,0,9.3261404,9.3261404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,58.32,50.220001,6,1,1,0,0,12,4,0,425.5,212731.22,0,0,2076.9053 -4961,6138,11178,11177,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,3,7.8978577,8.0202427,0,1,0,1,1,-9,3,-240.83064,0,1,1,21,2,5,1,-9,-9,2019,1,2,7,0,45,48,15,1,0,1,0,9.2570019,9.2570019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,54.099998,59.110001,6,1,1,0,0,12,4,0,425.5,212731.22,0,0,2076.9053 -4962,6139,11179,11180,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,8.4027281,7.6737828,1,0,-9,54,0,4,.95471537,0,0,0,74,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6150227,8.0878925,0,0,51.380001,43.73,47.599998,40.470001,6,1,1,0,0,8,3,1,328,790674.31,0,0,3854.2485 -4962,6139,11180,11179,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,-4,-66.837326,0,0,0,78,3,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1453404,0,0,0,47.599998,40.470001,51.380001,43.73,6,1,1,0,0,8,3,1,328,790674.31,0,0,3854.2485 -4963,6140,11181,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,2,6.8571553,7.0621085,0,4,0,0,0,-9,0,-1008.6885,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,21,9,16,16,15,1,1,-9,0,6.458406,6.458406,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.380001,55.369999,-9,-9,2,4,2,0,1,12,2,0,1386.5,5506.2939,0,0,898.9624 -4963,6140,11182,-9,11181,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.7034,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,1386.5,5506.2939,0,0,898.9624 -4964,6141,11183,11184,-9,-9,2,1,0,51,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,14,0,-2,16.715105,0,0,0,53,2,5,1,2,2,2019,3,1,25,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.259998,18.290001,58.049999,54.52,1,1,1,0,1,9,3,0,284,100902.98,0,0,875.37085 -4964,6141,11184,11183,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.3140182,7.8023062,0,1,0,-9,14,0,2,-12.863701,0,0,0,51,2,1,3,2,2,2019,2,2,6,0,40,40,15,1,0,3,0,9.1348343,9.1348343,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.30415,1,58.049999,54.52,37.259998,18.290001,3,1,1,0,0,9,3,0,284,100902.98,0,0,875.37085 -4964,6142,11185,-9,11183,11184,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,8.1368599,7.8602767,0,3,0,0,0,-9,0,-952.34003,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,37,15,1,0,-9,1,8.3835258,8.3835258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.389999,57.869999,-9,-9,7,1,1,0,0,9,4,0,83,23084.582,0,0,2682.4866 -4965,6143,11186,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,1,1,0,0,3,8.2378826,8.395731,0,3,0,-9,0,0,0,-1078.9607,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,10,40,15,1,0,-9,0,42.890949,42.890949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.560001,51.529999,-9,-9,7,1,1,0,0,4,4,0,568,4681.8213,0,0,2986.2366 -4966,6144,11187,11188,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,4,7.0951381,7.7649913,6.958869,1,0,-9,6,0,-5,-30.24321,0,0,0,70,3,3,3,3,3,2019,2,2,9,0,16,37,15,1,0,4,0,12.63982,12.63982,0,0,0,0,0,0,0,0,1,1,0,0,6.8208661,0,0,59.150002,49.669998,51,46,7,1,1,0,0,13,3,1,173,738943.88,0,0,3919.3777 -4966,6144,11188,11187,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.0516267,6.1066375,1,0,-9,6,0,5,-12.985435,0,0,0,65,2,4,1,3,3,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5921044,0,0,51,46,59.150002,49.669998,5,1,1,0,0,13,3,1,173,738943.88,0,0,3919.3777 -4967,6145,11189,11190,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,5,0,8.8959742,8.4736881,1,0,-9,41,0,-1,-122.85451,0,0,0,64,1,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5229025,8.1907253,0,0,60.02,56.419998,55.790001,52.619999,6,1,1,0,0,9,4,1,494.5,2446102.3,0,0,2871.792 -4967,6145,11190,11189,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,4.8070989,4.9305134,0,1,0,-9,41,0,1,-8.3567181,0,0,0,63,1,5,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.20209557,0,0,0,55.790001,52.619999,60.02,56.419998,6,1,1,0,0,9,4,1,494.5,2446102.3,0,0,2871.792 -4968,6146,11191,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,3,0,6.7974353,7.0064001,3,0,0,0,-9,0,-1016.9469,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3392079,6.7098584,0,0,56.939999,49.529999,-9,-9,6,1,1,0,0,4,2,1,1444,283834.81,0,0,-235.74289 -4969,6147,11192,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,0,3,8.1331272,8.0509987,0,3,0,0,0,-9,0,-942.59369,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,11.976203,11.976203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.950001,-9,-9,5,3,4,0,0,6,4,0,63,-181191.19,0,0,1073.0767 -4970,6148,11193,11194,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,4,8.0829544,7.5783544,5.8067932,2,0,-9,13,0,-8,88.579185,0,0,1,52,2,5,1,2,3,2019,1,1,10,0,23,19,15,1,0,1,0,14.865641,14.865641,0,0,0,0,0,0,0,0,1,1,0,5.8255773,0,0,0,50.509998,56.389999,54.099998,59.110001,7,1,1,0,0,5,4,1,235,926879.31,0,0,3461.2925 -4970,6148,11194,11193,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,5,8.2074022,8.0724449,6.0641503,2,0,-9,13,0,8,-55.12817,0,0,0,44,1,4,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,16.608635,16.608635,0,0,0,0,0,0,0,0,1,1,0,6.5118799,0,0,0,54.099998,59.110001,50.509998,56.389999,6,1,1,0,0,5,4,1,235,926879.31,0,0,3461.2925 -4970,6148,11195,-9,11193,11194,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.6664,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,235,926879.31,0,0,3461.2925 -4971,6149,11196,11197,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.3085213,7.572618,4.6759171,1,0,-9,41,0,-4,64.352821,0,0,0,65,2,3,1,-9,2,2019,1,1,9,0,23,20,15,1,0,1,0,8.4401684,8.4401684,0,0,0,0,0,0,0,0,1,1,0,8.1394129,4.883543,0,0,58.040001,34.290001,57.330002,53.459999,6,1,1,0,0,1,4,1,1364,556503.5,0,0,5103.752 -4971,6149,11197,11196,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,8.3542089,8.344552,4.8953714,1,0,-9,41,0,4,6.9535303,0,0,0,61,2,3,1,3,2,2019,1,2,6,0,40,40,15,1,0,1,0,9.3572321,9.3572321,0,0,0,0,0,0,0,0,1,1,0,3.9023314,5.2480555,0,0,57.330002,53.459999,58.040001,34.290001,6,1,1,0,0,1,4,1,1364,556503.5,0,0,5103.752 -4971,6150,11198,-9,11196,11197,3,1,1,32,2,0,0,0,2,-9,97,3,0,1,5,0,0,0,3,0,0,0,-9,0,-1005.6647,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6967978,0,0,0,17.459999,58.439999,-9,-9,5,1,1,0,0,1,1,1,1196,-16636.211,0,0,-528.30725 -4972,6151,11199,11200,-9,-9,2,1,1,37,1,0,1,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,7,0,2,-55.670132,0,0,0,35,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,34.98,53.240002,5,1,1,1,0,2,2,0,792,78806.258,0,0,3203.3975 -4972,6151,11200,11199,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,0,3,7.463068,7.652544,0,2,0,-9,7,0,-2,100.61363,0,0,1,37,3,4,3,-9,2,2019,2,2,20,8,39,39,15,1,1,3,0,7.4468513,7.4468513,0,0,0,0,0,0,0,2,1,1,0,0,0,6.8401608,3,34.98,53.240002,51,56,3,1,1,0,0,2,2,0,792,78806.258,0,0,3203.3975 -4972,6151,11201,-9,11200,11199,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.65625,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,2,0,792,78806.258,0,0,3203.3975 -4973,6152,11202,11203,-9,-9,1,1,1,39,1,0,3,0,2,-9,1,1,0,0,4,6.8417788,6.4853878,0,2,0,-9,8,0,5,77.169724,0,0,0,34,2,5,3,-9,-9,2019,2,2,10,1,38,40,15,1,0,3,0,2.8941338,2.8941338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,39.740002,59,5,2,3,0,0,2,2,0,624.33331,235919.16,0,0,2651.6985 -4973,6152,11203,11202,-9,-9,2,1,0,34,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,19,0,-5,-57.260441,0,0,1,39,2,4,1,3,2,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,59,51,56,4,2,3,0,0,2,2,0,624.33331,235919.16,0,0,2651.6985 -4973,6152,11204,-9,11203,11202,3,1,0,17,2,0,3,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-960.3429,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,2,2,0,624.33331,235919.16,0,0,2651.6985 -4974,6153,11205,11206,-9,-9,1,1,1,58,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,32,0,0,96.943794,0,0,0,58,2,2,1,2,2,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.599998,41.68,46.560001,31.5,2,1,1,0,1,9,3,1,683.5,635431.94,0,0,57.698029 -4974,6153,11206,11205,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,7.367455,7.4880919,0,1,0,-9,34,0,0,-68.71653,0,0,0,58,3,2,3,3,3,2019,2,1,19,6,28,29,15,1,1,3,0,10.662402,10.662402,0,0,0,0,0,0,0,7,1,1,0,0,0,14.73083,3,46.560001,31.5,33.599998,41.68,3,1,1,0,1,9,3,1,683.5,635431.94,0,0,57.698029 -4974,6154,11207,-9,11206,11205,3,1,1,25,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-938.49591,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,-9,-9,6,1,1,1,0,9,1,1,417,67354.875,0,0,22.118029 -4974,6155,11208,-9,11206,11205,4,1,1,22,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-993.8877,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,29,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.46,42.889999,-9,-9,1,1,1,1,0,9,1,1,1273,-26472.725,0,0,191.76917 -4974,6156,11209,-9,-9,-9,5,1,0,21,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1017.9402,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.509998,53.709999,-9,-9,6,1,1,1,1,9,1,1,1066,-19539.764,0,0,1741.9413 -4975,6157,11210,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1088.5837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.619999,37.759998,-9,-9,6,1,1,0,0,13,1,0,535,-167364.8,0,0,-261.20578 -4976,6158,11211,11212,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,6.7078056,6.7254066,1,0,-9,51,0,9,0,0,0,0,69,3,5,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5956197,0,0,51.32,37.599998,57.060001,57.759998,6,1,1,0,0,6,2,1,563.5,382175.63,0,0,2181.0281 -4976,6158,11212,11211,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,5,0,6.7222385,7.0095253,1,0,-9,26,0,0,0,0,0,0,78,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2373919,6.6687946,0,0,57.060001,57.759998,51.32,37.599998,6,1,1,0,0,6,2,1,563.5,382175.63,0,0,2181.0281 -4977,6159,11213,11215,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.622714,8.759738,0,2,0,-9,26,0,3,125.78608,0,0,0,47,1,3,1,3,2,2019,1,2,11,0,37,0,15,1,0,1,0,21.152237,21.152237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,37.360001,54.650002,6,1,1,0,0,6,5,1,936.66669,382765.22,0,0,4399.7949 -4977,6159,11214,-9,11215,11213,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.7051,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,5,1,936.66669,382765.22,0,0,4399.7949 -4977,6159,11215,11213,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.6332397,8.3681192,0,2,0,-9,4,0,-3,-28.716896,0,0,0,50,2,4,1,-9,-9,2019,1,1,22,11,86,51,15,1,1,1,0,8.9050274,8.9050274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.360001,54.650002,49.860001,55.310001,5,1,1,0,0,6,5,1,936.66669,382765.22,0,0,4399.7949 -4977,6160,11216,-9,11215,11213,3,1,1,18,2,0,2,1,2,0,7,2,0,0,3,0,4.7554598,4.3883824,3,0,0,0,-9,0,-999.68982,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8789377,0,0,0,48.209999,50.73,-9,-9,6,1,1,0,0,6,5,1,1270,22952.74,0,0,1136.0553 -4978,6161,11217,-9,11219,11218,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1068.099,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,4,5,1,983.33331,831074.25,0,0,6237.0542 -4978,6161,11218,11219,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,8.9664907,8.9980211,0,2,0,-9,22,0,-2,1.0160842,0,0,0,49,1,5,1,2,2,2019,1,2,11,2,40,41,15,1,0,1,0,22.20986,22.20986,0,0,0,0,0,0,0,2,0,0,0,5.3754787,0,9.3509026,3,59.290001,49.68,57.060001,57.759998,6,1,1,0,0,4,5,1,983.33331,831074.25,0,0,6237.0542 -4978,6161,11219,11218,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,5,9.4616289,9.6868582,0,2,0,-9,21,0,2,-13.790888,0,0,0,47,1,4,1,2,1,2019,1,1,8,0,56,77,15,1,0,1,0,24.568899,24.568899,0,0,0,0,0,0,0,0,0,0,0,7.1547232,0,0,3,57.060001,57.759998,59.290001,49.68,6,1,1,0,0,4,5,1,983.33331,831074.25,0,0,6237.0542 -4979,6162,11220,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,1,1,0,0,4,6.891439,6.9034538,0,3,0,0,0,-9,0,-1036.0908,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,50,51,15,1,0,-9,0,2.3981473,2.3981473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,4,1,1,0,0,6,2,1,795,258001.92,0,0,945.4986 -4980,6163,11221,11222,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,7.1336813,7.4738998,0,1,0,-9,8,0,4,-69.951233,0,0,0,58,2,3,1,3,3,2019,1,1,4,0,30,40,15,1,0,1,0,6.1048889,6.1048889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.560001,45.639999,50.029999,52.619999,7,1,1,0,0,1,5,1,507.5,642081.56,0,0,3305.0664 -4980,6163,11222,11221,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,9.1656475,9.0527611,0,1,0,-9,8,0,-4,-33.799057,0,0,0,62,2,3,1,3,2,2019,1,2,11,0,48,50,15,1,0,1,0,18.137945,18.137945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,62.560001,45.639999,6,1,1,0,0,1,5,1,507.5,642081.56,0,0,3305.0664 -4980,6164,11223,-9,11222,11221,3,1,0,22,2,0,0,0,2,-9,1,1,0,0,4,8.5987997,8.8307791,0,3,0,0,0,-9,0,-936.64142,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,19.18298,19.18298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.650002,60.470001,-9,-9,5,1,1,0,0,1,5,1,532,50714.066,0,0,2312.8828 -4981,6165,11224,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,4,3,0,0,3,7.9296417,8.2437639,7.4794006,3,0,0,0,-9,0,-1005.9169,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,15,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.66404325,7.4500046,0,3,55.540001,46.02,-9,-9,5,3,4,0,0,8,4,1,73,-68250.727,0,0,1175.9458 -4982,6166,11225,11226,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.7154417,8.7460423,0,1,0,-9,27,0,0,-37.682076,0,0,0,54,2,3,1,-9,-9,2019,1,2,7,0,39,49,15,1,0,1,0,15.215957,15.215957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,54.130001,48.040001,6,1,1,0,0,4,5,1,903,384197.81,0,0,3174.5186 -4982,6166,11226,11225,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.917068,7.8741279,0,1,0,-9,27,0,0,-.20519225,0,0,0,54,2,4,1,2,1,2019,1,1,8,0,40,40,15,1,0,1,0,6.3259888,6.3259888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.130001,48.040001,60.119999,54.799999,6,1,1,0,0,4,5,1,903,384197.81,0,0,3174.5186 -4983,6167,11227,11228,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,3,7.6682439,7.8892679,0,1,0,-9,7,0,-5,-8.4878092,0,1,1,30,1,1,1,1,1,2019,1,2,30,12,41,35,15,1,1,1,0,10.108602,10.108602,0,0,0,0,0,0,0,5.48,0,0,0,0,0,15.606765,1,21.34,53.880001,6.0100002,45.029999,2,1,1,0,0,10,5,1,229.5,263131.41,0,0,3049.8452 -4983,6167,11228,11227,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,1,8.1954536,8.6452208,0,1,0,-9,7,0,5,46.599438,0,0,0,25,1,3,1,-9,-9,2019,1,1,32,10,84,44,15,1,1,1,0,6.322711,6.322711,0,0,0,0,0,0,0,0,0,0,0,1.5640162,0,0,0,6.0100002,45.029999,21.34,53.880001,1,1,1,0,0,10,5,1,229.5,263131.41,0,0,3049.8452 -4984,6168,11229,11230,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,8.2517672,8.4474297,1,0,-9,45,0,0,-173.93013,0,0,0,75,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6179914,8.2859011,0,0,47.77,53.810001,49.040001,55.860001,4,1,1,0,0,2,5,1,502,1815802.6,0,0,5844.0625 -4984,6168,11230,11229,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,8.4276686,8.8011789,1,0,-9,45,0,0,-78.480408,0,0,0,75,2,3,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9606497,8.4099426,0,0,49.040001,55.860001,47.77,53.810001,6,1,1,0,0,2,5,1,502,1815802.6,0,0,5844.0625 -4985,6169,11231,11232,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,5,8.3581181,8.2253065,0,1,0,-9,1,-9,0,-28.826021,-9,0,1,31,2,5,2,-9,-9,2019,2,1,7,0,37,0,15,1,0,2,0,13.371488,13.371488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,51.139999,60.450001,6,1,1,0,0,4,3,1,1544,62592.496,0,0,2190.4189 -4985,6169,11232,11231,-9,-9,1,1,1,31,1,0,0,0,2,0,7,2,0,0,5,0,0,0,1,0,1,1,-9,0,-29.208752,-9,0,0,31,1,5,1,-9,-9,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,57.060001,57.759998,7,1,1,0,0,4,3,1,1544,62592.496,0,0,2190.4189 -4986,6170,11233,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,7.7174916,7.8068423,3,0,0,0,-9,0,-1031.14,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4803014,0,0,51.880001,42.110001,-9,-9,6,1,1,0,0,10,3,1,452,406140.09,0,0,2265.9358 -4987,6171,11234,11236,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,0,4,7.6935143,7.9007072,0,2,0,-9,11,0,-16,32.348396,0,0,1,52,2,4,1,3,3,2019,1,2,8,0,36,30,15,1,0,1,0,7.7723303,7.7723303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,2,4,1,627.66669,302306.94,0,0,3714.0156 -4987,6171,11235,-9,11234,11236,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.3617,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,627.66669,302306.94,0,0,3714.0156 -4987,6171,11236,11234,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.2714033,8.4681883,0,2,0,-9,7,0,16,-77.541962,0,0,0,36,2,4,1,-9,-9,2019,1,1,8,0,47,50,15,1,0,1,0,10.665924,10.665924,0,0,0,0,0,0,0,0,1,1,0,4.0119247,0,0,0,57.16,56.150002,54.200001,57.490002,7,1,1,0,0,2,4,1,627.66669,302306.94,0,0,3714.0156 -4988,6172,11237,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,4,0,3.0071683,2.9949422,3,0,0,0,-9,0,-1004.3584,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.749462,0,0,1,1,0,.7789669,3.0184965,0,0,65.059998,41.580002,-9,-9,7,1,1,0,0,6,1,1,646,-162563.08,0,0,73.901711 -4989,6173,11238,11239,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,5.4769707,5.075346,1,0,-9,56,0,-5,-48.3997,0,0,0,79,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,8.5243492,0,0,0,0,2,1,1,0,.67703831,5.3626008,.2975184,3,62.380001,25.08,66.519997,38.360001,6,1,1,0,0,5,2,1,467.5,305326.56,0,0,761.53857 -4989,6173,11239,11238,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,5,-53.420132,0,0,0,74,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.519997,38.360001,62.380001,25.08,6,1,1,0,0,5,2,1,467.5,305326.56,0,0,761.53857 -4989,6174,11240,-9,-9,-9,3,1,1,66,3,0,0,0,3,-9,4,3,0,0,3,0,5.2951012,5.6266603,3,0,0,0,-9,0,-972.65906,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.438478,5.5143342,0,0,52,48,-9,-9,5,4,6,0,0,5,2,1,348,166787.69,0,0,1621.0774 -4990,6175,11241,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1083.6698,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.030001,30.51,-9,-9,4,1,1,0,0,7,1,0,394,-33471.973,0,0,935.90839 -4991,6176,11242,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,8.5839949,8.671072,0,3,0,0,0,-9,0,-1028.0033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,41,42,15,1,0,-9,0,15.196404,15.196404,0,0,0,0,0,0,0,7,0,0,0,.88079017,0,14.965474,3,54.209999,46.790001,-9,-9,6,1,1,0,0,7,5,1,598,1165976.6,0,0,1207.7535 -4991,6177,11243,-9,11242,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,8.1093235,7.9887452,0,3,0,0,0,-9,0,-1012.8344,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,45,36,15,1,0,-9,1,8.0792742,8.0792742,0,0,0,0,0,0,0,2,0,0,0,0,0,9.2226667,3,40.240002,54.560001,-9,-9,4,1,1,0,0,7,4,1,188,54110.77,0,0,1015.0652 -4992,6178,11244,-9,11246,11247,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.9132,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,1,628.75,289335.47,0,0,1183.3215 -4992,6178,11245,-9,11246,11247,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1015.1077,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,5,1,1,0,0,7,2,1,628.75,289335.47,0,0,1183.3215 -4992,6178,11246,11247,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,3,7.6073418,7.7063651,6.924552,2,0,-9,17,0,2,251.62624,0,0,0,43,3,3,1,2,2,2019,1,2,12,0,36,40,15,1,0,1,0,6.657795,6.657795,0,0,0,0,0,0,0,0,1,1,0,7.135242,0,0,0,52,54.509998,54.959999,53.169998,5,1,1,0,1,7,2,1,628.75,289335.47,0,0,1183.3215 -4992,6178,11247,11246,-9,-9,2,1,1,43,1,0,2,0,3,-9,1,1,0,0,3,2.0994885,2.2978687,0,2,0,-9,17,0,-2,86.48616,0,0,0,45,2,3,1,2,2,2019,1,1,6,0,40,50,15,1,0,1,0,.027534233,.027534233,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,52,54.509998,6,1,1,0,0,7,2,1,628.75,289335.47,0,0,1183.3215 -4993,6179,11248,11249,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,8.6445942,8.5261812,0,1,0,-9,11,0,-21,126.01295,0,0,0,66,1,3,3,3,3,2019,2,1,9,1,40,0,15,1,0,4,0,13.470711,13.470711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,66.370003,38.360001,6,2,3,0,0,7,4,1,1353.5,555332.94,0,0,2668.0854 -4993,6179,11249,11248,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,4.6884089,4.6125493,1,0,-9,11,0,21,39.872627,0,0,0,45,1,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4325986,4.7161126,0,0,66.370003,38.360001,52,55,4,2,3,0,0,7,4,1,1353.5,555332.94,0,0,2668.0854 -4994,6180,11250,-9,-9,-9,1,1,0,101,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1025.2097,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,14.35197,0,0,0,1,1,0,.50230443,0,0,0,63.41,34.5,-9,-9,2,1,1,0,0,2,1,0,780,52704.273,0,0,796.78802 -4995,6181,11251,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,2,1,0,0,4,8.0211887,8.896101,7.4225726,3,0,0,0,-9,0,-940.17938,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,19,19,15,1,0,-9,0,17.232794,17.232794,0,0,0,0,0,0,0,0,0,0,0,0,7.4294696,0,0,49.650002,51.279999,-9,-9,6,1,1,0,0,4,5,1,283,597220.5,0,0,3785.0083 -4996,6182,11252,11253,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.6370502,7.8087206,0,1,0,-9,32,0,0,38.063877,0,0,0,48,2,3,1,3,2,2019,1,2,9,0,27,27,15,1,0,1,0,9.558691,9.558691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,53.98,50.869999,7,1,1,0,0,12,5,1,1438,408871.63,0,0,2889.0442 -4996,6182,11253,11252,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.8234825,8.6197615,0,1,0,-9,7,0,0,134.44864,0,0,0,48,2,3,1,-9,-9,2019,1,1,11,0,50,42,15,1,0,1,0,15.264785,15.264785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.98,50.869999,58.32,50.220001,5,1,1,0,0,12,5,1,1438,408871.63,0,0,2889.0442 -4997,6183,11254,11255,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,3,9.1324692,9.2315702,0,1,0,-9,4,0,-1,-35.38282,0,0,0,35,1,1,1,-9,-9,2019,1,1,12,4,40,50,15,1,1,1,0,25.047283,25.047283,0,0,0,0,0,0,0,5.48,1,1,0,6.454432,0,10.94274,1,32.529999,56.779999,57.59,25.34,4,1,1,0,0,2,5,1,1264.5,91246.75,0,0,5515.3613 -4997,6183,11255,11254,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,1,1,8.7177286,8.7327852,0,1,0,-9,4,0,1,-31.013449,0,0,1,34,1,3,1,2,2,2019,1,2,9,1,40,41,15,1,0,1,0,15.628366,15.628366,0,0,0,0,0,0,0,0,1,1,0,.98237318,0,0,0,57.59,25.34,32.529999,56.779999,6,1,1,0,0,2,5,1,1264.5,91246.75,0,0,5515.3613 -4998,6184,11256,-9,-9,-9,1,1,0,22,2,0,0,1,2,0,7,2,0,0,4,6.8576059,7.0479183,0,3,0,0,0,-9,0,-985.25555,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,4,2,0,1078,0,0,0,-334.47083 -4999,6185,11257,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,6.0222821,6.3366332,3,0,-9,0,1,0,-917.01514,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,27,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4674435,6.224072,0,0,27.15,57.869999,-9,-9,2,1,1,0,0,10,2,1,1268,528762.81,0,0,911.67914 -5000,6186,11258,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,2,0,7.0834613,6.8306751,3,0,0,0,-9,0,-1075.6776,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.7010651,0,0,0,1,1,0,0,6.679637,0,0,47.599998,24.27,-9,-9,5,1,1,0,0,7,2,1,430,-88273.594,0,0,-422.48163 -5001,6187,11259,-9,-9,-9,1,1,1,76,3,0,1,0,3,-9,4,3,0,1,3,0,0,0,4,0,0,0,-9,0,-975.32648,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.6157207,0,0,0,0,1,1,0,0,0,0,0,60.709999,26.209999,-9,-9,6,1,1,0,0,12,1,1,315,73082.852,0,0,1812.0675 -5001,6188,11260,-9,11261,-9,3,1,0,17,2,0,1,0,2,1,97,3,0,0,4,2.4519589,2.5578868,0,3,0,0,0,-9,0,-944.40222,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4183358,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,1,12,3,1,1031,37911.449,0,0,1344.585 -5001,6188,11261,-9,-9,11259,2,1,0,36,2,0,1,0,2,-9,2,1,0,0,5,7.8990769,7.5012574,0,3,0,0,0,-9,0,-1086.8783,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,39,15,1,0,-9,1,6.3948483,6.3948483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,3,1,1031,37911.449,0,0,1344.585 -5002,6189,11262,11263,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.8829412,8.7514143,6.0325346,1,0,-9,7,0,-2,-25.250504,0,0,0,53,1,3,1,1,2,2019,1,2,13,1,24,2,15,1,0,1,0,25.34779,25.34779,0,0,0,0,0,0,0,0,0,0,0,9.2502747,0,0,0,39.889999,61.68,50,49,6,1,1,0,0,6,5,1,458.5,1310202.1,0,0,10967.851 -5002,6189,11263,11262,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,9.3142624,9.6112604,7.97543,1,0,-9,7,0,2,-62.304207,0,0,0,51,1,4,1,2,2,2019,1,1,10,1,60,40,15,1,0,1,0,19.408033,19.408033,0,0,0,0,0,0,0,0,0,0,0,0,8.3122501,0,0,50,49,39.889999,61.68,5,1,1,0,0,6,5,1,458.5,1310202.1,0,0,10967.851 -5002,6190,11264,-9,11262,11263,3,1,0,19,2,0,0,0,2,1,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-930.20496,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.330002,58.880001,-9,-9,6,1,1,0,0,6,1,1,1648,0,0,0,0 -5003,6191,11265,-9,11268,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-998.61029,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,285.75,-4888.1826,0,0,1619.3523 -5003,6191,11266,-9,11268,-9,2,1,0,13,2,1,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-998.50604,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,4,2,0,285.75,-4888.1826,0,0,1619.3523 -5003,6191,11267,-9,11268,-9,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-905.94836,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,285.75,-4888.1826,0,0,1619.3523 -5003,6191,11268,-9,-9,-9,1,1,0,29,3,1,3,0,2,-9,6,3,0,0,2,0,6.5393243,6.2579222,4,0,-9,0,1,0,-1150.3011,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.971436,0,0,0,49.279999,52.09,-9,-9,4,1,1,0,0,4,2,0,285.75,-4888.1826,0,0,1619.3523 -5004,6192,11269,11270,-9,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,0,1,7.4242921,7.3680539,0,1,0,-9,4,0,-6,39.860264,0,1,1,28,2,4,1,-9,-9,2019,1,1,15,4,29,25,15,1,1,1,0,7.2455444,7.2455444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.560001,37.950001,47.150002,55.389999,4,1,1,0,0,4,4,0,486,-27459.195,0,0,2757.3467 -5004,6192,11270,11269,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.191535,8.5091534,0,1,0,-9,4,0,6,-64.17968,0,1,0,22,2,1,1,3,3,2019,1,2,13,1,49,57,15,1,0,1,0,10.641902,10.641902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,55.389999,35.560001,37.950001,5,1,1,0,0,4,4,0,486,-27459.195,0,0,2757.3467 -5005,6193,11271,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,5,8.5841703,8.6869984,4.2733722,3,0,-9,0,1,0,-1076.4083,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,43,15,1,0,-9,0,16.285271,16.285271,0,0,0,0,0,0,0,0,0,0,0,4.4957538,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,5,5,1,538,812008,0,0,1421.2469 -5005,6194,11272,-9,11271,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,8.1108103,7.662251,0,3,0,0,0,-9,0,-1076.0767,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,38,36,15,1,0,-9,1,9.8483973,9.8483973,0,0,0,0,0,0,0,0,0,0,0,.4026047,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,5,4,1,289,327133.03,0,0,2225.7913 -5006,6195,11273,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-978.57843,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,13,1,1,510,7921.3535,0,0,1014.0753 -5007,6196,11274,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,4,7.891407,7.8927722,0,3,0,0,0,-9,0,-1051.9832,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,35,15,1,0,-9,0,8.9636087,8.9636087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.830002,61.209999,-9,-9,5,1,1,0,0,7,4,1,640,569731.69,0,0,1597.2102 -5008,6197,11275,11276,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,5,8.5203104,8.5298452,0,2,0,-9,28,0,0,40.649014,0,0,0,49,1,4,1,2,2,2019,1,1,11,4,37,35,15,1,1,1,0,16.63629,16.63629,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.279999,62.599998,48.810001,59.91,6,1,1,0,0,9,4,1,793,423621.59,0,0,3530.0701 -5008,6197,11276,11275,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,7.3054123,7.5190978,0,2,0,-9,29,0,0,66.130379,0,0,0,49,2,5,1,2,2,2019,1,2,8,1,33,29,15,1,0,1,0,6.482574,6.482574,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.810001,59.91,46.279999,62.599998,3,1,1,0,1,9,4,1,793,423621.59,0,0,3530.0701 -5008,6197,11277,-9,11276,11275,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1111.9504,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,4,1,793,423621.59,0,0,3530.0701 -5008,6198,11278,-9,11276,11275,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,5.8436613,6.0422649,0,3,0,0,0,-9,0,-1045.7991,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.07,56.349998,-9,-9,6,1,1,0,0,9,2,1,212,48845.488,0,0,1057.572 -5009,6199,11279,11280,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,1,0,7.2661662,7.5597453,1,0,-9,62,0,1,-82.590515,0,0,0,81,2,2,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,1,0,14.062605,0,0,0,45.943447,0,1,1,0,4.5190172,7.2120795,0,0,34.220001,20.889999,33.060001,26.82,4,1,1,0,0,7,2,1,1565,1149992.4,0,0,1379.4036 -5009,6199,11280,11279,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,0,2,0,4.8529081,4.8417983,1,0,-9,62,0,-1,50.775402,0,0,0,82,1,1,3,3,3,2019,4,1,24,9,0,0,15,4,1,4,0,0,0,1,0,2.7552879,1.9577185,0,0,0,0,1,1,0,5.6754389,4.5901613,0,0,33.060001,26.82,34.220001,20.889999,4,1,1,0,0,7,2,1,1565,1149992.4,0,0,1379.4036 -5009,6200,11281,-9,11280,11279,3,1,1,58,3,0,0,0,1,-9,8,3,1,1,1,0,7.3693643,7.6471133,3,0,0,0,-9,0,-1061.5956,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,26,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5511212,0,0,26.65,23.110001,-9,-9,3,1,1,0,0,7,3,1,388,550182.44,0,0,846.86414 -5009,6201,11282,-9,-9,-9,4,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-981.84009,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,38,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.5148547,0,38.896832,3,38.16,47.360001,-9,-9,5,1,1,0,0,7,1,1,1809,3782.8887,0,0,988.85327 -5010,6202,11283,-9,11284,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1007.4903,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,4,1,0,743,47347.043,0,0,482.38818 -5010,6202,11284,-9,-9,-9,1,1,0,38,2,0,2,0,1,-9,6,3,0,0,4,0,0,0,4,0,-9,0,-9,0,-925.34259,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,6,3,4,0,1,4,1,0,743,47347.043,0,0,482.38818 -5010,6202,11285,-9,11284,-9,2,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-907.64392,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,4,1,0,743,47347.043,0,0,482.38818 -5011,6203,11286,11287,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,3,7.7410445,8.0487995,0,1,0,-9,6,0,2,-45.714821,0,0,1,38,3,4,1,3,3,2019,1,2,8,0,44,52,15,1,0,1,0,7.0978446,7.0978446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,57.16,56.150002,6,1,1,0,0,12,4,1,695.5,542671.5,0,0,3693.1777 -5011,6203,11287,11286,-9,-9,2,1,1,38,1,0,0,0,3,-9,2,1,0,0,4,8.0623722,8.1019287,0,1,0,-9,6,0,-2,-47.148617,0,0,0,40,2,3,1,-9,-9,2019,1,1,7,0,37,49,15,1,0,1,0,9.6733122,9.6733122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.369999,54.799999,7,1,1,0,0,12,4,1,695.5,542671.5,0,0,3693.1777 -5012,6204,11288,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,7.4102163,7.3156185,3,0,0,0,-9,0,-870.36951,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8269913,7.3958764,0,0,62.27,48.470001,-9,-9,7,1,1,0,0,9,3,1,780,1120877.4,0,0,867.83636 -5013,6205,11289,11290,-9,-9,3,1,1,61,1,0,0,0,2,-9,1,1,0,0,3,7.9238453,8.0309582,0,1,0,-9,8,0,-7,.75916898,0,0,0,68,3,3,1,-9,-9,2019,1,1,9,0,35,35,15,1,0,1,0,8.7627563,8.7627563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.630001,45.09,6,1,1,0,0,10,3,1,502.5,822812.94,0,0,2412.4771 -5013,6205,11290,11289,-9,-9,1,1,0,68,1,0,0,0,3,-9,1,1,0,0,3,6.634973,6.7531848,2.2782519,1,0,-9,8,0,7,-5.5289779,0,0,0,61,2,3,1,3,3,2019,1,3,10,0,12,15,15,1,0,1,0,7.2088771,7.2088771,0,0,0,0,0,0,0,2,1,1,0,0,1.8338101,4.2535615,3,57.630001,45.09,57.330002,53.459999,6,1,1,0,0,10,3,1,502.5,822812.94,0,0,2412.4771 -5013,6206,11291,-9,11290,11289,2,1,0,40,2,0,0,0,2,-9,2,1,0,0,4,7.9877,7.6209798,0,3,0,0,0,-9,0,-993.68567,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,40,15,1,0,-9,1,7.8811636,7.8811636,0,0,0,0,0,0,0,0,1,1,0,1.1082578,0,0,0,41.23,58.080002,-9,-9,4,1,1,0,0,10,3,1,485,226297.16,0,0,-65.809921 -5014,6207,11292,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,1,1,0,0,3,6.7443027,6.6660776,0,3,0,0,0,-9,0,-945.14246,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,30,30,15,1,0,-9,0,3.9707723,3.9707723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,55.59,-9,-9,3,1,1,0,1,11,2,0,218,0,0,0,1878.0044 -5015,6208,11293,-9,-9,-9,2,1,0,65,3,0,1,0,3,-9,4,3,0,0,4,7.5032306,8.430232,7.5990338,4,0,0,0,-9,0,-897.47992,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,21,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7232935,7.5865326,0,3,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,603,245440.17,0,0,2577.8657 -5015,6209,11294,-9,11296,11295,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.7272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,747,1426944,0,0,5918.9463 -5015,6209,11295,11296,-9,-9,4,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,8.9057178,8.7602787,0,2,0,-9,4,0,16,16.179424,0,0,0,38,2,4,1,-9,-9,2019,1,1,11,1,60,45,15,1,0,1,0,17.44639,17.44639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,52.43,55.57,3,1,1,0,0,9,5,1,747,1426944,0,0,5918.9463 -5015,6209,11296,11295,11293,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,8.5022793,8.5021267,0,2,0,-9,4,0,-16,-81.316185,0,0,1,54,2,4,1,3,-9,2019,1,4,7,0,52,45,15,1,0,1,0,10.779791,10.779791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,54.200001,57.490002,6,1,1,0,0,9,5,1,747,1426944,0,0,5918.9463 -5016,6210,11297,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,0,3,0,5.841013,5.475296,3,0,0,0,-9,0,-1003.2346,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.6275239,5.3105931,0,0,42.860001,27.379999,-9,-9,4,1,1,0,0,2,2,1,816,-38354.602,0,0,956.10016 -5017,6211,11298,11299,-9,-9,2,1,0,45,1,0,1,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,2,104.70955,0,0,0,43,3,5,1,2,2,2019,3,1,5,0,0,37,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.57,41.560001,57.060001,57.759998,6,1,1,1,0,9,2,1,964.66669,11854.026,0,0,480.125 -5017,6211,11299,11298,-9,-9,1,1,1,43,1,0,1,0,3,-9,2,1,0,0,5,6.3322654,6.3855124,0,2,0,-9,21,0,-2,-33.086246,-9,0,0,45,1,4,3,1,1,2019,2,2,6,0,8,0,15,1,0,3,0,7.3322487,7.3322487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,60.57,41.560001,6,1,1,0,0,9,2,1,964.66669,11854.026,0,0,480.125 -5017,6211,11300,-9,11298,11299,5,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.33716,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,1,964.66669,11854.026,0,0,480.125 -5017,6212,11301,-9,11298,11299,3,1,1,23,2,0,1,0,1,-9,2,1,0,0,5,5.5552912,5.836844,0,3,0,0,0,-9,0,-1057.8765,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,5,0,15,1,0,-9,1,8.6189337,8.6189337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.949997,39.959999,-9,-9,4,1,1,0,0,9,2,1,359,90644.82,0,0,-129.63264 -5017,6213,11302,-9,11298,11299,4,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,7.1246123,7.0624084,0,3,0,0,0,-9,0,-1094.5128,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,9,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.029999,62.02,-9,-9,7,1,1,0,0,9,3,1,417,130878.91,0,0,314.63968 -5018,6214,11303,11305,-9,-9,2,1,1,49,1,0,1,0,1,-9,3,3,0,0,5,8.9482708,8.8145418,0,2,0,-9,24,0,-3,-20.36108,0,0,0,52,1,1,3,3,3,2019,4,1,6,0,37,41,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3705186,0,0,0,49.959999,56.889999,9.3299999,55.75,6,1,1,1,0,6,5,1,598.66669,918855.88,0,0,4439.4209 -5018,6214,11304,-9,11305,11303,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.1817,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,6,5,1,598.66669,918855.88,0,0,4439.4209 -5018,6214,11305,11303,-9,-9,1,1,0,52,1,0,1,0,1,-9,3,3,0,0,1,7.9284554,8.1028795,0,2,0,-9,24,0,3,-13.50013,0,0,0,49,1,5,3,3,3,2019,4,2,32,12,45,17,15,3,1,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.7831244,0,10.236437,3,9.3299999,55.75,49.959999,56.889999,2,1,1,1,0,6,5,1,598.66669,918855.88,0,0,4439.4209 -5018,6215,11306,-9,11305,11303,3,1,0,20,2,0,1,1,2,0,7,2,0,0,5,7.4878092,7.3882904,0,3,0,0,0,-9,0,-966.7041,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.93325394,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,1,6,3,1,178,45204.137,0,0,1516.1323 -5019,6216,11307,-9,-9,-9,1,1,0,47,2,0,2,0,2,-9,2,1,0,0,1,7.2224193,7.064394,5.4096189,4,0,0,0,-9,0,-1175.4392,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,12,19,24,15,1,1,-9,0,8.5033302,8.5033302,0,0,0,0,0,0,0,0,1,1,0,4.9771132,0,0,0,15.86,44.560001,-9,-9,1,1,1,0,1,9,2,0,343.5,44380.258,0,0,2717.3247 -5019,6216,11308,-9,11307,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1104.5485,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,2,0,343.5,44380.258,0,0,2717.3247 -5020,6217,11309,-9,11311,11310,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1020.9243,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,6,5,1,643,1387495.1,0,0,4662.083 -5020,6217,11310,11311,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.5036411,8.4959002,0,2,0,-9,7,0,6,98.202431,0,0,0,37,1,4,1,3,2,2019,1,2,0,0,38,48,15,1,0,1,0,15.397237,15.397237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,19.52,68.089996,6,1,1,0,0,6,5,1,643,1387495.1,0,0,4662.083 -5020,6217,11311,11310,-9,-9,2,1,0,37,1,0,1,0,1,-9,2,1,0,0,4,8.6115198,8.509407,0,2,0,-9,7,0,-6,-89.827164,0,0,1,43,2,4,1,-9,-9,2019,1,1,24,10,48,55,15,1,1,1,0,12.639091,12.639091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.52,68.089996,57.16,56.150002,6,1,1,0,0,6,5,1,643,1387495.1,0,0,4662.083 -5021,6218,11312,-9,11313,11316,5,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.6938,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,0,691.33331,62785.227,0,0,3183.8467 -5021,6218,11313,11316,-9,-9,2,1,0,32,1,1,4,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,7,0,-3,77.313484,0,0,1,35,2,4,1,-9,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.830002,62.16,54.790001,55.860001,1,1,1,0,0,7,3,0,691.33331,62785.227,0,0,3183.8467 -5021,6218,11314,-9,11313,11316,4,1,1,10,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-914.72754,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,3,0,691.33331,62785.227,0,0,3183.8467 -5021,6218,11315,-9,11313,11316,6,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.8564,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,691.33331,62785.227,0,0,3183.8467 -5021,6218,11316,11313,-9,-9,1,1,1,35,1,1,4,0,2,-9,2,1,0,0,4,8.4020758,8.5102654,0,2,0,-9,7,0,3,-1.9355035,0,0,0,32,3,5,3,2,3,2019,2,2,6,0,38,40,15,1,0,3,0,12.318271,12.318271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,47.830002,62.16,7,1,1,0,0,7,3,0,691.33331,62785.227,0,0,3183.8467 -5021,6218,11317,-9,11313,11316,3,1,1,13,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.96594,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,3,0,691.33331,62785.227,0,0,3183.8467 -5022,6219,11318,11319,-9,-9,1,1,1,65,1,0,0,0,3,-9,1,1,0,0,3,7.9767461,7.9221315,0,1,0,-9,42,0,3,106.25251,0,0,0,62,2,5,3,2,2,2019,2,2,8,0,60,60,15,1,0,3,0,6.2583699,6.2583699,0,0,0,0,0,0,0,0,0,0,0,.54479849,0,0,0,54.939999,53.18,57.060001,57.759998,6,1,1,0,0,10,3,1,210,744040.38,0,0,1111.4795 -5022,6219,11319,11318,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,0,5,0,0,0,1,0,-9,42,0,-3,-19.836071,0,0,0,65,3,3,1,2,3,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.13903065,0,10.606942,3,57.060001,57.759998,54.939999,53.18,7,1,1,0,0,10,3,1,210,744040.38,0,0,1111.4795 -5022,6220,11320,-9,11319,11318,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.5501595,8.5577335,0,3,0,0,0,-9,0,-984.82825,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,44,42,15,1,0,-9,1,12.740866,12.740866,0,0,0,0,0,0,0,0,0,0,0,2.5669236,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,5,1,1211,-84442.484,0,0,1555.5736 -5023,6221,11321,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,0,3,8.3242722,7.812953,0,3,0,-9,0,-9,0,-1105.8972,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,36,0,15,1,0,-9,0,9.8035622,9.8035622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.02,45.709999,-9,-9,6,1,1,0,0,8,4,0,465,63285.746,0,0,543.78729 -5024,6222,11322,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-911.62958,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,26,-9,-9,1,1,1,0,1,6,1,0,2713,-45639.035,0,0,445.1145 -5024,6223,11323,-9,11322,-9,2,1,0,37,2,0,0,0,2,-9,2,1,0,0,4,7.4182835,7.4769993,0,3,0,0,0,-9,0,-1050.8387,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,38,0,15,1,0,-9,1,5.8994336,5.8994336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,6,3,0,710,25859.705,0,0,2646.4514 -5025,6224,11324,11325,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,52,0,0,-25.889862,0,0,0,75,3,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.110001,40.82,53.240002,30.15,6,1,1,0,0,12,3,1,445.5,1352062.3,0,0,2240.3464 -5025,6224,11325,11324,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,1,0,7.9379191,8.3144436,1,0,-9,52,0,0,67.570518,0,0,0,75,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.917943,0,0,53.240002,30.15,41.110001,40.82,3,1,1,0,0,12,3,1,445.5,1352062.3,0,0,2240.3464 -5026,6225,11326,11327,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,53,0,1,0,0,0,0,72,3,1,3,3,-9,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,10.385692,0,0,0,0,71.5,1,1,0,0,0,69.177498,1,36.009998,39.060001,36.459999,17.549999,4,1,1,0,0,12,1,1,274,461959.63,0,0,643.27283 -5026,6225,11327,11326,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,53,0,-1,0,0,0,0,73,2,1,3,3,3,2019,4,1,26,10,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.459999,17.549999,36.009998,39.060001,3,1,1,0,0,12,1,1,274,461959.63,0,0,643.27283 -5027,6226,11328,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,6,3,0,0,3,0,7.6428056,7.2981892,3,0,0,0,-9,0,-1083.4919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3666277,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,3,1,933,428238.53,0,0,1933.0265 -5027,6227,11329,-9,11328,-9,2,1,1,46,2,0,0,0,2,-9,1,1,0,0,3,8.0418167,8.2307863,0,3,0,0,0,-9,0,-1157.7986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,45,45,15,1,0,-9,1,6.1254463,6.1254463,0,0,0,0,0,0,0,0,1,1,0,7.331974,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,4,1,301,124839.77,0,0,1584.95 -5027,6228,11330,-9,11328,-9,3,1,1,45,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-925.54675,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3170462,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,13,1,1,330,144060.13,0,0,570.64661 -5028,6229,11331,-9,-9,-9,1,1,0,29,3,0,0,0,1,-9,1,1,0,0,4,9.1582613,9.1136646,0,3,0,-9,0,1,0,-1033.2649,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,4,96,30,15,1,1,-9,0,11.200873,11.200873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.779999,48.119999,-9,-9,5,2,3,0,1,8,5,0,371,68983.094,0,0,3064.062 -5029,6230,11332,11333,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.6366205,8.5681267,0,1,0,-9,8,0,-1,45.22015,0,0,0,60,2,3,3,2,3,2019,2,1,8,0,44,46,15,1,0,4,0,13.523698,13.523698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,54.959999,53.169998,6,1,1,0,0,1,4,1,977,880611.69,0,0,2795.2207 -5029,6230,11333,11332,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,0,3,0,6.452951,6.3280802,1,0,-9,18,0,1,-78.288239,0,0,0,59,2,4,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.991272,0,0,54.959999,53.169998,54.200001,57.490002,5,1,1,0,0,1,4,1,977,880611.69,0,0,2795.2207 -5030,6231,11334,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,1,1,0,0,3,8.3223753,8.3611832,0,3,0,0,0,-9,0,-930.85364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,12,0,15,1,0,-9,0,39.172798,39.172798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,6,3,4,0,0,9,4,1,1314,1328099.9,0,0,2509.9348 -5031,6232,11335,11336,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,46,0,4,39.759079,0,0,0,66,1,3,3,3,3,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,1,0,11.739652,0,0,0,0,0,1,1,0,0,0,0,0,49.52,18.67,57.330002,53.459999,7,1,1,0,0,8,3,1,712,709115.56,0,0,3170.5122 -5031,6232,11336,11335,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.6256914,8.0406008,1,0,-9,46,0,-4,49.990845,0,0,0,70,3,1,3,2,2,2019,4,2,7,0,0,20,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.9221973,7.8026862,32.067551,1,57.330002,53.459999,49.52,18.67,6,1,1,0,0,8,3,1,712,709115.56,0,0,3170.5122 -5032,6233,11337,11338,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,8.3832378,8.4096823,1,0,-9,49,0,-3,-50.135815,0,0,0,73,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1601605,8.3490248,0,0,54.619999,53.529999,58.32,50.220001,6,1,1,0,0,4,4,1,483.5,1582660.3,0,0,2949.4617 -5032,6233,11338,11337,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.0413857,5.820682,1,0,-9,49,0,3,-114.61897,0,0,0,70,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6813111,5.6679406,0,0,58.32,50.220001,54.619999,53.529999,6,1,1,0,0,4,4,1,483.5,1582660.3,0,0,2949.4617 -5033,6234,11339,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,2,1,0,0,4,7.8591161,8.2256041,6.2507772,1,0,-9,26,0,23,-20.20932,0,0,0,-9,-9,-9,-9,2,2,2019,-9,2,9,0,24,9,15,1,0,-9,0,11.430004,11.430004,0,0,0,0,0,0,0,0,1,1,0,5.1283607,6.6654992,0,0,55.189999,54.259998,51,55,6,1,1,0,0,9,3,0,2158,1617828.6,0,0,2749.4832 -5034,6235,11340,-9,11343,11342,4,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1120.2428,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,1,1456.75,142817.89,0,0,2610.7041 -5034,6235,11341,-9,11343,11342,2,1,1,17,2,0,1,1,2,-9,7,2,0,0,5,6.7286119,7.0043316,0,2,0,-9,0,-9,0,-878.80164,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,2,3,1,1456.75,142817.89,0,0,2610.7041 -5034,6235,11342,11343,-9,-9,3,1,1,34,1,0,1,0,2,-9,2,1,0,0,2,8.4050932,8.2817478,0,2,0,-9,1,-9,-3,143.55125,-9,0,0,37,2,3,3,-9,-9,2019,2,1,7,0,35,0,15,1,0,3,0,15.19238,15.19238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,39,50.630001,50.990002,5,1,1,0,0,2,3,1,1456.75,142817.89,0,0,2610.7041 -5034,6235,11343,11342,-9,-9,1,1,0,37,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,1,-9,3,-1.51186,-9,0,1,34,2,2,1,2,2,2019,3,3,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.630001,50.990002,56.939999,39,5,1,1,0,0,2,3,1,1456.75,142817.89,0,0,2610.7041 -5035,6236,11344,11345,-9,-9,1,1,0,60,1,0,2,0,1,-9,2,1,0,0,4,8.3487282,8.4325781,0,2,0,-9,24,0,-6,86.373047,0,0,0,66,1,4,1,-9,-9,2019,1,2,6,0,55,40,15,1,0,1,0,10.787538,10.787538,0,0,0,0,0,0,0,0,1,1,0,2.8540661,0,0,0,54.200001,57.490002,49.41,58.279999,6,1,1,0,0,7,4,1,375,1186347.5,0,0,5622.9634 -5035,6236,11345,11344,-9,-9,2,1,1,66,1,0,2,0,1,-9,1,1,0,0,4,8.4178724,8.5887556,5.1421404,2,0,-9,24,0,6,129.59747,0,0,0,60,1,4,1,2,2,2019,1,1,8,0,55,50,15,1,0,1,0,10.216984,10.216984,0,0,0,0,0,0,0,0,1,1,0,4.0975204,6.0657291,0,0,49.41,58.279999,54.200001,57.490002,5,1,1,0,0,7,4,1,375,1186347.5,0,0,5622.9634 -5035,6237,11346,-9,11344,11345,3,1,1,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1111.0389,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0028725,0,0,0,25.33,61.709999,-9,-9,5,1,1,0,0,7,4,1,582,0,0,0,-364.80313 -5035,6238,11347,-9,11344,11345,4,1,0,18,2,0,2,1,2,0,7,2,0,0,5,6.0147123,6.2772021,0,3,0,0,0,-9,0,-932.50067,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,4,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.01363666,0,0,0,39.060001,64.459999,-9,-9,6,1,1,0,0,7,4,1,1514,-3316.8638,0,0,2600.2954 -5036,6239,11348,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,2,8.7844915,8.6008511,0,3,0,0,0,-9,0,-974.82635,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,39,37,15,1,0,-9,0,17.545204,17.545204,0,0,0,0,0,0,0,0,0,0,0,3.192904,0,0,0,46.950001,35.43,-9,-9,5,1,1,0,0,9,5,1,307,502288.91,0,0,2169.2029 -5036,6240,11349,-9,11348,-9,2,1,1,20,2,0,0,0,2,1,3,3,0,0,5,0,3.7932665,3.5575342,3,0,0,0,-9,0,-938.03882,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,22,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,74.5,0,0,0,4.3577108,0,74.46273,3,40.470001,55.990002,-9,-9,5,1,1,1,0,9,1,1,2075,72418.922,0,0,-132.31148 -5037,6241,11350,-9,-9,-9,1,1,0,21,2,1,1,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-953.38934,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,10,1,0,670,-185381.81,0,0,595.65851 -5037,6241,11351,-9,11350,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.6556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,670,-185381.81,0,0,595.65851 -5038,6242,11352,11353,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,0,3,8.8541384,8.9380608,0,2,0,-9,17,0,2,214.80466,0,0,0,45,1,4,1,3,2,2019,1,2,19,8,44,0,15,1,1,1,0,17.580109,17.580109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.990002,41.57,59.290001,49.68,3,2,3,0,0,4,4,1,454.5,1309150.3,0,0,4200.6509 -5038,6242,11353,11352,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,0,4,8.1716738,8.4226923,0,2,0,-9,17,0,-2,18.984131,-9,0,0,47,1,3,1,3,3,2019,1,1,8,0,23,0,15,1,0,1,0,17.773849,17.773849,0,0,0,0,0,0,0,0,1,1,0,6.6955919,0,0,0,59.290001,49.68,44.990002,41.57,7,2,3,0,0,4,4,1,454.5,1309150.3,0,0,4200.6509 -5039,6243,11354,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,0,4,0,6.8822756,6.836174,3,0,0,0,-9,0,-945.00177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4205035,7.1831417,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,2,1,1256,364844.56,0,0,1595.7922 -5040,6244,11355,11356,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,7.9601731,7.5422773,0,1,0,-9,28,0,-2,-22.135725,0,0,0,56,3,5,1,3,3,2019,1,2,7,0,40,50,15,1,0,1,0,5.7982297,5.7982297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,57.060001,57.759998,5,1,1,0,0,7,3,1,1230,315347.13,0,0,1526.3716 -5040,6244,11356,11355,-9,-9,2,1,0,56,1,0,0,0,3,-9,1,1,0,0,5,7.2739677,7.4091616,0,1,0,-9,28,0,2,-45.82338,0,0,0,54,2,4,1,3,-9,2019,1,1,6,0,30,30,15,1,0,1,0,6.0918961,6.0918961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,58.150002,52.91,6,1,1,0,0,7,3,1,1230,315347.13,0,0,1526.3716 -5040,6245,11357,-9,11356,11355,3,1,1,35,2,0,0,0,3,-9,2,1,0,0,4,8.6956568,8.5118608,0,3,0,0,0,-9,0,-1038.4203,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,14.705884,14.705884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,7,5,1,805,143672.17,0,0,2504.2458 -5041,6246,11358,11359,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,9.2081251,9.084816,0,1,0,-9,37,0,1,-32.253872,0,0,0,55,3,4,1,3,2,2019,1,1,12,0,47,45,15,1,0,1,0,20.513376,20.513376,0,0,0,0,0,0,0,0,0,0,0,1.0379809,0,0,0,51.41,56.150002,32.900002,57.869999,3,1,1,0,0,6,5,1,1597,1151235.1,0,0,4963.2056 -5041,6246,11359,11358,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,0,4,8.378624,8.2582407,0,1,0,-9,37,0,-1,64.054268,0,0,0,56,2,3,1,-9,-9,2019,1,2,21,9,48,44,15,1,1,1,0,8.0320807,8.0320807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.900002,57.869999,51.41,56.150002,5,1,1,0,0,6,5,1,1597,1151235.1,0,0,4963.2056 -5041,6247,11360,-9,11359,11358,3,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,7.8318319,8.4008417,0,3,0,0,0,-9,0,-914.1413,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,39,0,15,1,0,-9,1,9.8305588,9.8305588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,5,1,1,0,0,6,4,1,726,85671.734,0,0,2522.7505 -5041,6248,11361,-9,11359,11358,4,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,7.9773006,8.0943031,0,3,0,0,0,-9,0,-834.38818,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,42,0,15,1,0,-9,1,9.3625898,9.3625898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.259998,-9,-9,4,1,1,0,0,6,4,1,699,-213908.8,0,0,1894.886 -5042,6249,11362,11363,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.1819572,7.4387479,5.7938538,1,0,-9,5,0,12,16.10634,0,0,0,50,2,5,1,3,3,2019,1,2,7,0,25,25,15,1,0,1,0,5.8803091,5.8803091,0,0,0,0,0,0,0,0,1,1,0,5.6164718,5.2491045,0,0,56.939999,43.990002,55.68,54.240002,2,1,1,0,0,6,5,1,587,350742.34,0,0,4048.9917 -5042,6249,11363,11362,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,5,8.8781404,8.8836355,0,1,0,-9,5,0,-12,108.42864,0,0,0,62,2,3,1,3,2,2019,1,1,7,0,47,47,15,1,0,1,0,16.869764,16.869764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.240002,56.939999,43.990002,6,1,1,0,0,6,5,1,587,350742.34,0,0,4048.9917 -5043,6250,11364,11365,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.798264,7.8157792,0,1,0,-9,30,0,-7,-52.445801,0,0,0,63,2,4,1,-9,-9,2019,1,2,9,0,32,30,15,1,0,1,0,7.2566285,7.2566285,0,0,0,0,0,0,0,0,0,0,0,3.8441234,0,0,0,47.130001,48.650002,21.879999,64.760002,5,1,1,0,0,11,5,1,1060.5,1387711.6,0,0,2322.6746 -5043,6250,11365,11364,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.3826876,8.2794914,0,1,0,-9,2,0,7,-35.095394,0,0,0,56,2,3,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,16.029232,16.029232,0,0,0,0,0,0,0,0,0,0,0,4.5164146,0,0,0,21.879999,64.760002,47.130001,48.650002,5,1,1,0,0,11,5,1,1060.5,1387711.6,0,0,2322.6746 -5043,6251,11366,-9,11364,11365,4,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.9663997,7.9148417,0,3,0,0,0,-9,0,-991.83258,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,38,15,1,0,-9,1,9.0822716,9.0822716,0,0,0,0,0,0,0,0,0,0,0,2.2018986,0,0,0,35.540001,59.049999,-9,-9,4,1,1,0,0,11,4,1,392,-144984.47,0,0,1311.5594 -5044,6252,11367,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,3,3,0,0,2,0,6.489275,6.5186095,3,0,0,0,-9,0,-849.1449,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1312468,6.1351705,0,0,33.07,39.119999,-9,-9,3,1,1,1,0,2,2,1,126,1341206.8,0,0,-62.606178 -5045,6253,11368,11369,-9,-9,1,1,1,34,1,0,0,0,2,-9,1,1,0,0,5,9.580224,9.8110638,0,1,0,-9,7,0,1,0,0,0,0,33,1,5,1,2,2,2019,1,2,14,3,30,30,15,1,0,1,0,52.899887,52.899887,0,0,0,0,0,0,0,0,0,0,0,5.9107919,0,0,0,40.77,59.599998,37.799999,60.950001,5,1,1,0,0,6,5,1,656,322407.75,0,0,19098.557 -5045,6253,11369,11368,-9,-9,2,1,0,33,1,0,0,0,1,-9,1,1,0,0,5,9.6896906,9.485321,0,1,0,-9,7,0,-1,0,0,0,1,34,2,5,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,48.562069,48.562069,0,0,0,0,0,0,0,0,0,0,0,6.5285654,0,0,0,37.799999,60.950001,40.77,59.599998,3,3,4,0,0,6,5,1,656,322407.75,0,0,19098.557 -5046,6254,11370,11371,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,7.8939085,8.1225719,0,1,0,-9,36,0,0,-3.7119744,0,0,0,54,2,3,3,3,2,2019,2,2,8,0,35,33,15,1,0,3,0,11.392829,11.392829,0,0,0,0,0,0,0,7,0,0,0,0,0,7.0274539,3,51.830002,57.200001,46.02,58.57,5,1,1,0,0,1,3,1,347,103422.14,0,0,2553.9722 -5046,6254,11371,11370,-9,-9,2,1,1,54,1,0,0,0,2,-9,3,3,0,0,3,0,6.6927404,7.025207,1,0,-9,36,0,0,72.741226,0,0,0,54,2,4,1,2,2,2019,3,1,15,3,0,50,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9636426,0,0,46.02,58.57,51.830002,57.200001,5,1,1,1,0,1,3,1,347,103422.14,0,0,2553.9722 -5046,6255,11372,-9,11370,11371,3,1,0,31,2,0,0,0,2,-9,2,1,0,0,3,8.1949558,8.0655813,0,3,0,0,0,-9,0,-1029.3156,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,47,15,1,0,-9,1,8.4066038,8.4066038,0,0,0,0,0,0,0,0,0,0,0,3.019809,0,0,0,49.630001,54.220001,-9,-9,6,1,1,0,0,1,4,1,174,93261.102,0,0,2036.2971 -5047,6256,11373,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,4,0,8.0185251,7.7499118,3,0,0,0,-9,0,-1010.1787,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.423492,8.1238804,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,4,1,1277,717627,0,0,2452.9763 -5048,6257,11374,-9,11377,11375,3,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.93652,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,3,0,1476.75,113364.63,0,0,3819.1528 -5048,6257,11375,11377,-9,-9,4,1,1,39,1,1,3,0,1,-9,2,1,0,0,4,8.4656429,8.5204906,0,2,0,-9,2,0,3,98.13266,0,0,0,36,2,4,1,-9,-9,2019,1,1,9,1,45,38,15,1,0,1,0,12.792742,12.792742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,49,56,5,3,4,0,0,8,3,0,1476.75,113364.63,0,0,3819.1528 -5048,6257,11376,-9,11377,11375,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-967.25946,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,3,0,1476.75,113364.63,0,0,3819.1528 -5048,6257,11377,11375,-9,-9,1,1,0,36,1,1,3,0,2,-9,5,1,0,0,4,6.7837458,6.8730712,0,2,0,-9,2,0,-3,-66.340546,0,0,1,39,1,4,1,2,1,2019,1,4,11,2,17,18,15,1,0,1,0,7.5141473,7.5141473,0,0,0,0,0,0,0,42,1,1,0,0,0,40.058426,3,49,56,52,56,5,3,4,0,0,8,3,0,1476.75,113364.63,0,0,3819.1528 -5049,6258,11378,11379,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,6,17.199585,0,0,0,59,3,2,1,-9,-9,2019,3,1,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7002048,0,0,0,52,48,40.689999,38.360001,5,1,1,0,0,6,5,1,630.5,1512787.8,0,0,3503.6777 -5049,6258,11379,11378,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,0,2,8.9572258,8.7691402,0,1,0,-9,27,0,-6,99.397202,0,0,0,65,3,3,3,3,3,2019,2,2,17,5,35,35,15,1,1,4,0,18.824028,18.824028,0,0,0,0,0,0,0,42,1,1,0,0,0,41.308784,2,40.689999,38.360001,52,48,3,1,1,0,0,6,5,1,630.5,1512787.8,0,0,3503.6777 -5049,6259,11380,-9,11379,11378,3,1,0,30,2,0,0,0,1,-9,2,1,0,0,4,7.7426791,7.8234925,0,3,0,0,0,-9,0,-1049.3737,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,20,20,15,1,0,-9,1,11.844335,11.844335,0,0,0,0,0,0,0,0,1,1,0,1.7589681,0,0,0,48,57,-9,-9,5,1,1,0,0,6,3,1,304,-43395.758,0,0,961.7923 -5050,6260,11381,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,4,0,6.994947,6.7873659,3,0,0,0,-9,0,-923.55615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9566803,6.4487538,0,0,39.73,52.080002,-9,-9,5,1,1,0,0,6,2,1,175,292505.38,0,0,766.70013 -5051,6261,11382,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.8014517,7.9962258,0,3,0,-9,0,0,0,-939.46735,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,39,39,15,1,0,-9,0,8.5667257,8.5667257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,2,4,0,169,-3643.7751,0,0,-413.67218 -5052,6262,11383,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,3.6084263,3.4450774,3,0,0,0,-9,0,-887.71857,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2731545,3.8884606,0,0,36.27,39.93,-9,-9,4,1,1,0,0,8,1,1,1759,-23215.406,0,0,1804.1388 -5053,6263,11384,-9,11385,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1000.8616,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,1,1,0,0,6,2,1,903.5,234659.19,0,0,1231.2444 -5053,6263,11385,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,3,7.4873929,7.3374033,0,4,0,-9,0,1,0,-1069.2609,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,1,25,29,15,1,0,-9,0,7.5365224,7.5365224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,6,2,1,903.5,234659.19,0,0,1231.2444 -5054,6264,11386,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-990.14166,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21254872,0,0,0,30.07,43.18,-9,-9,3,1,1,0,1,1,1,0,496,23078.588,0,0,1606.4238 -5055,6265,11387,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,3,0,4.5204921,5.2449412,3,0,0,0,-9,0,-951.54315,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,4.5790429,0,0,0,120,1,1,0,0,5.16992,110.28514,3,56.689999,18.48,-9,-9,7,1,1,0,0,10,2,1,457,24291.939,0,0,1305.6178 -5055,6266,11388,-9,11387,-9,2,1,1,58,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1069.5801,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,-9,-9,5,1,1,0,0,10,1,1,862,199961.64,0,0,833.95172 -5056,6267,11389,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,5,9.1604872,8.8462029,0,3,0,0,0,-9,0,-1118.4955,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,50,45,15,1,0,-9,0,15.26449,15.26449,0,0,0,0,0,0,0,7,1,1,0,2.3656313,0,10.424176,3,60.02,56.419998,-9,-9,6,1,1,0,0,6,5,1,1378,975174,0,0,2739.6672 -5056,6268,11390,-9,11389,-9,2,1,1,20,2,0,0,0,2,1,2,1,0,0,4,7.0545826,7.2177949,0,3,0,0,0,-9,0,-975.63513,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,1,0,15,1,0,-9,1,153.40186,153.40186,0,0,0,0,0,0,0,2,1,1,0,0,0,.69978416,3,60.52,53.200001,-9,-9,6,1,1,0,0,6,3,1,136,-77938.078,0,0,99.921738 -5056,6269,11391,-9,11389,-9,3,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-916.25891,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.529999,56.439999,-9,-9,7,1,1,0,0,6,1,1,485,-62054.66,0,0,0 -5057,6270,11392,-9,11395,11396,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1165.5011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,13,4,1,474.39999,338611.03,0,0,3550.9297 -5057,6270,11393,-9,11395,11396,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-899.75623,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,4,1,474.39999,338611.03,0,0,3550.9297 -5057,6270,11394,-9,11395,11396,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.38562,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,13,4,1,474.39999,338611.03,0,0,3550.9297 -5057,6270,11395,11396,-9,-9,2,1,0,35,1,0,3,0,2,-9,2,1,0,0,3,7.4862022,7.2716374,0,2,0,-9,14,0,-1,72.488525,0,0,1,36,2,4,1,2,1,2019,1,1,10,0,28,28,15,1,0,1,0,8.1433182,8.1433182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,51.380001,46.41,6,1,1,0,0,13,4,1,474.39999,338611.03,0,0,3550.9297 -5057,6270,11396,11395,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,0,4,8.8804235,8.9600515,0,2,0,-9,14,0,1,-89.566147,0,0,0,35,2,3,1,3,3,2019,1,2,9,0,38,51,15,1,0,1,0,22.675726,22.675726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.380001,46.41,49.040001,55.860001,5,1,1,0,0,13,4,1,474.39999,338611.03,0,0,3550.9297 -5058,6271,11397,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-958.01038,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,-9,-9,5,3,4,0,0,8,1,1,239,-26535.063,0,0,-664.48749 -5058,6272,11398,-9,-9,-9,2,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1145.8925,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,3,4,0,0,8,1,1,264,-45828.883,0,0,725.04541 -5058,6273,11399,-9,11398,11397,3,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,8.1101923,8.294836,0,3,0,0,0,-9,0,-1014.265,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,48,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8708351,0,0,0,50,57,-9,-9,5,3,4,0,0,8,4,1,1125,-58245.574,0,0,2314.3521 -5059,6274,11400,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,7.1445899,6.9648104,3,0,0,0,-9,0,-940.0799,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,1.4996518,7.2097206,0,3,60.290001,52.110001,-9,-9,7,1,1,0,0,10,2,0,777,262850.66,0,0,1160.2083 -5060,6275,11401,11403,-9,-9,1,1,1,49,1,1,1,0,2,-9,2,1,0,0,5,8.3834305,8.4067001,0,2,0,-9,10,0,8,143.4072,0,0,0,41,1,4,1,2,2,2019,1,2,11,0,38,37,15,1,0,1,0,12.741637,12.741637,0,0,0,0,0,0,0,0,1,1,0,1.1933103,0,0,0,51.669998,60.18,57.73,54.529999,6,1,1,0,0,5,4,1,1095.3334,-64393.035,0,0,3377.5347 -5060,6275,11402,-9,11403,11401,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.6319,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,1095.3334,-64393.035,0,0,3377.5347 -5060,6275,11403,11401,-9,-9,2,1,0,41,1,1,1,0,1,-9,2,1,0,0,4,7.648294,8.2820816,6.4713721,2,0,-9,10,0,-8,38.134087,0,0,1,49,2,5,1,2,3,2019,1,1,7,0,22,0,15,1,0,1,0,12.967953,12.967953,0,0,0,0,0,0,0,0,1,1,0,6.3913713,0,0,0,57.73,54.529999,51.669998,60.18,6,1,1,0,0,5,4,1,1095.3334,-64393.035,0,0,3377.5347 -5061,6276,11404,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,3,0,7.5290823,7.6111045,3,0,0,0,-9,0,-1132.8756,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,53.640755,2,1,1,0,5.2855649,7.5132842,7.7964783,3,58.25,43.439999,-9,-9,4,1,1,0,0,12,3,0,392,702885.5,0,0,572.42462 -5062,6277,11405,-9,11406,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1047.1255,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,1,491.66666,-64129.957,0,0,2611.7239 -5062,6277,11406,-9,-9,-9,1,1,0,28,3,0,2,0,2,-9,2,1,0,0,2,7.1150727,7.7063899,6.3212776,4,0,0,0,-9,0,-991.67285,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,30,15,1,0,-9,0,5.7537436,5.7537436,0,0,0,0,0,0,0,0,1,1,0,6.4331722,0,0,0,54.700001,34.630001,-9,-9,6,1,1,0,0,2,2,1,491.66666,-64129.957,0,0,2611.7239 -5062,6277,11407,-9,11406,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-971.8725,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,1,491.66666,-64129.957,0,0,2611.7239 -5063,6278,11408,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,0,4,0,7.6807389,7.5963979,3,0,0,0,-9,0,-1107.6515,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6474123,7.7318802,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,6,3,1,492,286746.16,0,0,1093.8356 -5064,6279,11409,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-898.45532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,31,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1400001,61.5,-9,-9,1,1,1,0,1,13,1,1,568,0,0,0,0 -5065,6280,11410,11412,-9,-9,3,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,4,0,0,0,0,70,3,4,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,61.900002,41.790001,6,3,4,0,0,9,1,1,582.66669,530222.94,0,0,3132.6462 -5065,6280,11411,-9,11412,11410,2,1,0,15,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1141.7526,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,9,1,1,582.66669,530222.94,0,0,3132.6462 -5065,6280,11412,11410,-9,-9,1,1,0,70,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,44,0,-4,0,0,0,0,74,2,3,3,-9,-9,2019,4,3,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2853607,0,0,0,61.900002,41.790001,53,46,6,3,4,0,0,9,1,1,582.66669,530222.94,0,0,3132.6462 -5066,6281,11413,11414,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,9.1777945,8.9053278,0,1,0,-9,34,0,0,18.125208,0,0,0,61,2,4,1,-9,-9,2019,1,1,7,0,35,45,15,1,0,1,0,25.039557,25.039557,0,0,0,0,0,0,0,7,0,0,0,4.1167946,0,3.0572453,3,54.209999,51.959999,57.16,56.150002,6,1,1,0,0,13,5,1,803,1521984.8,0,0,5272.9346 -5066,6281,11414,11413,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.823348,8.4890127,5.8034739,1,0,-9,4,0,0,-72.508881,0,0,0,61,2,4,1,-9,-9,2019,1,2,6,0,40,35,15,1,0,1,0,15.914217,15.914217,0,0,0,0,0,0,0,7,0,0,0,5.5307999,6.0916271,9.2470417,3,57.16,56.150002,54.209999,51.959999,7,1,1,0,0,13,5,1,803,1521984.8,0,0,5272.9346 -5067,6282,11415,11416,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.0530419,6.93435,0,1,0,-9,21,0,-2,-111.47805,0,0,0,60,2,3,1,2,2,2019,1,1,9,0,16,20,15,1,0,1,0,8.4429903,8.4429903,0,0,0,0,0,0,0,2,0,0,0,0,0,5.2525897,3,62.57,40.110001,57.330002,53.459999,6,1,1,0,0,12,3,0,766,188420.77,0,0,1513.4448 -5067,6282,11416,11415,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.084301,8.0416861,0,1,0,-9,29,0,2,13.449329,0,0,0,58,2,3,1,3,3,2019,1,2,12,1,55,49,15,1,0,1,0,6.6725903,6.6725903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,62.57,40.110001,6,1,1,0,0,12,3,0,766,188420.77,0,0,1513.4448 -5068,6283,11417,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,0,3,7.9749279,8.3187551,0,3,0,0,0,-9,0,-1071.5171,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,45,36,15,1,1,-9,0,9.1155672,9.1155672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.27,55.75,-9,-9,2,1,1,0,0,8,4,0,183,-114434.58,0,0,2228.9106 -5069,6284,11418,-9,11419,11421,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.8792,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,0,516,38903.574,0,0,1471.0182 -5069,6284,11419,11421,-9,-9,2,1,0,23,1,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,-9,2,0,-1,-22.893467,-9,1,1,24,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.959999,49.93,6,1,1,0,0,10,2,0,516,38903.574,0,0,1471.0182 -5069,6284,11420,-9,11419,11421,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.30426,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,2,0,516,38903.574,0,0,1471.0182 -5069,6284,11421,11419,-9,-9,1,1,1,24,1,0,2,0,2,-9,2,1,0,0,3,7.346365,7.5341935,0,2,0,-9,2,0,1,-59.656399,0,1,0,23,2,4,2,2,3,2019,2,2,5,0,50,0,15,1,0,2,0,3.8943772,3.8943772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,57.16,56.150002,6,1,1,0,0,10,2,0,516,38903.574,0,0,1471.0182 -5070,6285,11422,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,6.3653021,6.2080545,3,0,0,0,-9,0,-969.54944,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.069869,6.1482282,0,0,42.279999,42.560001,-9,-9,6,1,1,0,0,7,2,1,287,-54863.242,0,0,992.77808 -5071,6286,11423,11424,-9,-9,1,1,0,57,1,0,1,0,1,-9,2,1,0,0,4,8.4433508,8.4983816,0,2,0,-9,8,0,-1,-38.002666,0,0,0,58,1,4,1,2,2,2019,1,2,7,0,32,33,15,1,0,1,0,20.223614,20.223614,0,0,0,0,0,0,0,0,0,0,0,4.6776028,0,0,0,53.810001,53.560001,49.439999,56.93,6,1,1,0,0,12,5,0,572,2363534.3,0,0,5182.9395 -5071,6286,11424,11423,-9,-9,2,1,1,58,1,0,1,0,1,-9,2,1,0,0,4,8.9507027,8.7685356,0,2,0,-9,8,0,1,-11.233479,0,0,0,57,1,4,1,2,2,2019,1,1,7,0,50,55,15,1,0,1,0,15.576109,15.576109,0,0,0,0,0,0,0,0,0,0,0,2.6990333,0,0,0,49.439999,56.93,53.810001,53.560001,5,1,1,0,0,12,5,0,572,2363534.3,0,0,5182.9395 -5071,6287,11425,-9,11423,11424,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-881.02228,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,12,5,0,716,182578.73,0,0,0 -5072,6288,11426,-9,11427,11428,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-855.31732,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,7,3,0,257,643539.81,0,0,3039.498 -5072,6288,11427,11428,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.4619789,8.47896,0,2,0,-9,19,0,0,-34.167351,0,0,1,49,2,4,1,2,2,2019,1,2,8,0,38,33,15,1,0,1,0,13.57601,13.57601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52,55,6,3,4,0,0,7,3,0,257,643539.81,0,0,3039.498 -5072,6288,11428,11427,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,7.3766985,7.3869729,0,2,0,-9,8,0,9,38.322193,0,0,0,40,1,4,1,3,3,2019,1,1,9,1,60,40,15,1,0,1,0,3.3425331,3.3425331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.16,56.150002,6,3,4,0,0,7,3,0,257,643539.81,0,0,3039.498 -5072,6289,11429,-9,11427,11428,3,1,1,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1011.3521,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.799999,-9,-9,6,3,4,0,0,7,3,0,196,0,0,0,0 -5072,6290,11430,-9,-9,-9,5,1,0,37,3,0,2,0,1,-9,2,1,0,0,3,7.9440117,8.2157965,0,4,0,0,0,-9,0,-1012.9425,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,20,15,1,0,-9,0,9.5673389,9.5673389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,5,3,4,0,0,7,3,0,2040,232086.88,0,0,1695.2147 -5073,6291,11431,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,4,7.9842548,8.1154308,0,3,0,0,0,-9,0,-936.17847,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,12,1,39,37,15,1,0,-9,0,8.9500122,8.9500122,0,0,0,0,0,0,0,0,0,0,0,2.316123,0,0,0,38.689999,61.75,-9,-9,3,1,1,0,0,1,4,1,892,-57088.672,0,0,1211.494 -5074,6292,11432,11433,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,4,-19.948908,0,0,0,75,2,3,3,3,3,2019,4,1,12,4,0,0,15,4,1,4,0,0,0,1,0,2.3972678,0,0,0,0,2,1,1,0,3.0945652,0,0,3,46.529999,23.360001,55.049999,44.790001,7,1,1,0,0,10,2,1,2445,643885.94,0,0,2201.5173 -5074,6292,11433,11432,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,1,3,0,7.0582867,7.1891541,1,0,-9,49,0,-4,-62.811783,0,0,0,79,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,3.5435233,7.2205553,5.0029192,2,55.049999,44.790001,46.529999,23.360001,6,1,1,0,0,10,2,1,2445,643885.94,0,0,2201.5173 -5075,6293,11434,11435,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,0,4,7.9842701,7.4349217,0,1,0,-9,7,0,-1,-75.834167,0,0,0,58,2,5,1,-9,-9,2019,1,1,4,0,38,0,15,1,0,1,0,9.2668037,9.2668037,0,0,0,0,0,0,0,0,0,0,0,.21247526,0,0,0,52.77,33.41,55,55,7,1,1,0,0,5,4,1,556,1167312.3,0,0,2793.2705 -5075,6293,11435,11434,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,5,8.2308979,8.1610518,0,1,0,-9,28,0,1,91.356453,0,0,0,57,3,4,1,3,2,2019,1,2,17,7,45,14,15,1,1,1,0,14.407084,14.407084,0,0,0,0,0,0,0,0,0,0,0,.56310886,0,0,0,55,55,52.77,33.41,5,1,1,0,0,5,4,1,556,1167312.3,0,0,2793.2705 -5076,6294,11436,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,5,8.2612143,8.1691132,0,3,0,0,0,-9,0,-978.87323,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,36,36,15,1,0,-9,0,12.088361,12.088361,0,0,0,0,0,0,0,0,0,0,0,2.7202508,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,8,4,0,386,117912.05,0,0,2143.106 -5077,6295,11437,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1020.1724,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,-9,-9,4,1,1,0,0,12,1,0,58,-42638.891,0,0,796.9726 -5078,6296,11438,11439,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,1,0,5.6910982,5.8826289,1,0,-9,43,0,2,47.533451,0,0,0,77,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,123.31782,0,0,0,0,0,1,1,0,0,6.1264701,0,0,38.259998,26.1,58.470001,50.220001,5,1,1,0,0,8,2,1,566,185743.66,0,0,1178.7607 -5078,6296,11439,11438,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,-2,-1.9420726,0,0,0,79,2,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.703781,2,58.470001,50.220001,38.259998,26.1,7,1,1,0,0,8,2,1,566,185743.66,0,0,1178.7607 -5078,6297,11440,-9,11439,11438,3,1,0,49,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1040.9065,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,1,1,0,0,8,1,1,1196,84700.773,0,0,526.55951 -5079,6298,11441,11442,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.1019325,7.6497641,0,1,0,-9,3,0,6,-38.156914,0,0,0,39,1,4,1,-9,-9,2019,1,1,11,0,45,45,15,1,0,1,0,7.9576092,7.9576092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.490002,27.959999,57.700001,50.34,5,1,1,0,0,11,4,1,1053.5,570612.25,0,0,3126.8325 -5079,6298,11442,11441,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,0,4,8.6152058,8.4245415,0,1,0,-9,3,0,-6,59.618294,0,0,1,45,2,4,1,2,2,2019,1,2,11,2,42,42,15,1,0,1,0,10.032353,10.032353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.700001,50.34,53.490002,27.959999,6,1,1,0,0,11,4,1,1053.5,570612.25,0,0,3126.8325 -5080,6299,11443,11445,-9,-9,3,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.6503639,9.0239067,0,1,0,-9,7,0,10,-92.456245,0,0,0,41,1,4,1,-9,-9,2019,1,1,7,0,44,44,15,1,0,1,0,15.234092,15.234092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,40.48,60.049999,5,1,1,0,0,12,5,1,896.33331,1168587.4,0,0,4810.1733 -5080,6299,11444,-9,11445,11443,2,1,0,17,2,0,0,0,2,-9,2,3,0,0,5,6.556469,6.5022173,0,1,0,0,0,-9,0,-1037.4453,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,15,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.139999,63.75,-9,-9,5,1,1,0,0,12,5,1,896.33331,1168587.4,0,0,4810.1733 -5080,6299,11445,11443,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,0,4,8.2708502,8.157774,0,1,0,-9,7,0,-10,-78.220695,0,0,1,51,2,3,1,2,2,2019,1,3,21,9,38,31,15,1,1,1,0,12.516961,12.516961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.049999,55.959999,49.93,6,1,1,0,0,12,5,1,896.33331,1168587.4,0,0,4810.1733 -5081,6300,11446,-9,-9,-9,1,1,1,90,2,0,0,0,2,-9,4,3,0,0,2,0,7.4158635,7.8661251,3,0,0,0,-9,0,-1098.7484,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8372345,8.1736326,0,0,59.740002,40.48,-9,-9,5,1,1,0,0,5,3,1,704,167745.14,0,0,249.75957 -5082,6301,11447,11448,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,1,2,0,4.5235806,4.4893584,1,0,-9,14,0,-8,-8.8597822,0,0,0,58,2,2,3,-9,-9,2019,4,2,12,1,0,44,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.8154893,4.6589894,28.949671,1,61.290001,32.810001,44.77,20.1,5,1,1,0,0,12,2,0,1763,63329.621,0,0,2483.6128 -5082,6301,11448,11447,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,14,0,8,-133.55269,0,0,0,50,2,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,20.1,61.290001,32.810001,5,1,1,0,0,12,2,0,1763,63329.621,0,0,2483.6128 -5083,6302,11449,11451,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,9.1391191,9.2089462,0,1,0,-9,6,0,-2,14.740331,0,0,0,49,2,4,3,2,3,2019,2,1,23,9,60,60,15,1,1,4,0,19.735518,19.735518,0,0,0,0,0,0,0,0,0,0,0,5.9904013,0,0,0,40.860001,55.369999,53.02,53.93,5,1,1,0,0,9,5,1,968.33331,3411109.5,0,0,5172.0854 -5083,6302,11450,-9,11451,11449,4,1,1,17,2,0,0,0,2,-9,2,3,0,0,5,7.9858484,7.8392282,0,1,0,0,0,-9,0,-936.15399,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,43,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.23,48.389999,-9,-9,6,1,1,0,0,9,5,1,968.33331,3411109.5,0,0,5172.0854 -5083,6302,11451,11449,-9,-9,1,1,0,49,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,2,-11.613178,0,0,0,47,2,4,1,2,-9,2019,3,2,6,0,0,15,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.02,53.93,40.860001,55.369999,5,1,1,0,0,9,5,1,968.33331,3411109.5,0,0,5172.0854 -5083,6303,11452,-9,11451,11449,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.9975891,7.7868719,0,3,0,0,0,-9,0,-1018.2443,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,35,0,15,1,0,-9,1,7.7752213,7.7752213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,9,3,1,318,-13161.756,0,0,812.73236 -5084,6304,11453,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,1,1,0,0,4,9.0813065,8.9583778,0,3,0,0,0,-9,0,-1046.3766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,98,0,15,1,0,-9,0,7.758996,7.758996,0,0,0,0,0,0,0,28,1,1,0,7.4387903,0,123.62776,3,57.16,56.150002,-9,-9,6,1,1,0,0,11,5,1,1713,576084.13,0,0,5258.2695 -5084,6305,11454,-9,11453,-9,4,1,1,29,2,0,0,0,1,-9,1,1,0,0,4,7.8805614,7.7671418,0,3,0,0,0,-9,0,-1066.5145,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,30,30,15,1,0,-9,1,11.100817,11.100817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,11,3,1,823,-84979.625,0,0,1566.0084 -5084,6306,11455,-9,-9,-9,3,1,0,49,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-985.02386,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.02,53.93,-9,-9,6,1,1,0,0,11,1,1,406,18850.6,0,0,580.38556 -5084,6307,11456,-9,-9,-9,2,1,1,26,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-963.04724,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,-9,-9,6,1,1,0,0,11,1,1,857,-163236.47,0,0,1846.199 -5085,6308,11457,11458,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,8.6143866,8.1670141,0,1,0,-9,38,0,-2,114.26096,0,0,0,56,2,3,1,2,2,2019,1,2,8,0,30,31,15,1,0,1,0,19.281494,19.281494,0,0,0,0,0,0,0,0,0,0,0,.8902992,0,0,0,57.060001,57.759998,38.040001,58.330002,6,1,1,0,0,9,5,1,431,751888.5,0,0,5772.8433 -5085,6308,11458,11457,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,9.0345974,9.2176151,0,1,0,-9,38,0,2,74.651596,0,0,0,54,2,5,1,2,1,2019,1,1,17,5,45,45,15,1,1,1,0,25.446615,25.446615,0,0,0,0,0,0,0,0,0,0,0,5.1893425,0,0,0,38.040001,58.330002,57.060001,57.759998,3,1,1,0,0,9,5,1,431,751888.5,0,0,5772.8433 -5085,6309,11459,-9,11457,11458,3,1,0,30,2,0,0,0,1,-9,2,1,0,0,4,8.7233067,8.4287434,0,3,0,0,0,-9,0,-1017.2056,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,37,35,15,1,0,-9,1,20.463726,20.463726,0,0,0,0,0,0,0,0,0,0,0,5.233572,0,0,0,46.799999,55.75,-9,-9,6,1,1,0,0,9,5,1,380,-160437.09,0,0,2526.4646 -5085,6310,11460,-9,11457,11458,4,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,8.3578358,8.4240675,0,3,0,0,0,-9,0,-912.16528,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,35,35,15,1,0,-9,1,16.505585,16.505585,0,0,0,0,0,0,0,0,0,0,0,5.0324726,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,9,5,1,1119,25719.188,0,0,1558.84 -5086,6311,11461,11462,-9,-9,2,1,1,23,1,0,0,0,1,-9,2,1,0,0,3,6.773366,6.718636,0,1,0,-9,2,0,-2,-44.637772,0,1,0,25,1,3,1,-9,-9,2019,1,1,26,9,23,23,15,1,1,1,0,4.155797,4.155797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.860001,37.200001,34.889999,36.400002,4,2,3,0,0,2,2,1,243.5,-85576.727,0,0,997.72858 -5086,6311,11462,11461,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,3,6.7188506,6.9001088,0,1,0,-9,2,0,2,99.904305,0,1,1,23,1,3,1,2,-9,2019,1,2,15,3,14,0,15,1,0,1,0,6.9793978,6.9793978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.889999,36.400002,44.860001,37.200001,6,2,3,0,0,2,2,1,243.5,-85576.727,0,0,997.72858 -5087,6312,11463,11464,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,0,1,0,6.2251625,6.3014607,1,0,-9,9,0,8,7.7490416,0,0,0,74,2,3,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.472753,0,0,60.610001,17.43,52.400002,47.709999,6,1,1,0,0,11,2,1,1032.5,458664.47,0,0,1133.6912 -5087,6312,11464,11463,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,9,0,-8,44.248409,0,0,0,82,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.8871255,0,116.62602,1,52.400002,47.709999,60.610001,17.43,4,1,1,0,0,11,2,1,1032.5,458664.47,0,0,1133.6912 -5088,6313,11465,-9,11467,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.69904,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,1,551.33331,286291.72,0,0,2608.7471 -5088,6313,11466,-9,11467,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.37231,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,1,551.33331,286291.72,0,0,2608.7471 -5088,6313,11467,-9,-9,-9,1,1,0,36,2,0,2,0,1,-9,2,1,0,0,4,8.644412,8.5356541,0,4,0,0,0,-9,0,-952.2478,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,12,0,52,47,15,1,0,-9,0,11.751963,11.751963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.060001,62.040001,-9,-9,5,1,1,0,0,2,3,1,551.33331,286291.72,0,0,2608.7471 -5089,6314,11468,11469,-9,-9,2,1,0,33,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,-12,-77.58168,0,0,1,45,1,3,1,2,1,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,41.52,41.709999,5,2,3,0,0,7,2,0,341,1919092.1,0,0,2922.4893 -5089,6314,11469,11468,-9,-9,1,1,1,45,1,1,2,0,1,-9,2,1,0,0,3,7.676722,7.3566484,0,2,0,-9,14,0,12,40.446945,0,0,0,33,2,4,3,2,2,2019,2,2,13,1,24,50,15,1,0,3,0,10.250002,10.250002,0,0,0,0,0,0,0,0,1,1,0,2.2909091,0,0,0,41.52,41.709999,48,57,4,2,3,0,0,7,2,0,341,1919092.1,0,0,2922.4893 -5089,6314,11470,-9,11468,11469,3,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.35455,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,2,0,341,1919092.1,0,0,2922.4893 -5089,6314,11471,-9,11468,11469,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.29773,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,7,2,0,341,1919092.1,0,0,2922.4893 -5090,6315,11472,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1055.1436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.02,23.4,-9,-9,2,1,1,1,1,1,1,0,373,120932.76,0,0,-181.79843 -5091,6316,11473,-9,11475,11474,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,5,1,2411.3333,388464.09,0,0,4475.4292 -5091,6316,11474,11475,-9,-9,2,1,1,46,1,1,1,0,2,-9,2,1,0,0,3,8.4917831,8.3194647,0,2,0,-9,3,0,0,-10.28592,0,0,0,46,2,5,1,-9,-9,2019,1,1,9,2,36,38,15,1,0,1,0,14.341562,14.341562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55.830002,40.23,60.02,56.419998,7,1,1,0,0,4,5,1,2411.3333,388464.09,0,0,4475.4292 -5091,6316,11475,11474,-9,-9,1,1,0,46,1,1,1,0,2,-9,2,1,0,0,5,8.5971489,8.2730799,0,2,0,-9,3,0,0,-8.2648859,0,0,0,46,2,3,1,-9,-9,2019,1,2,8,0,30,30,15,1,0,1,0,16.033405,16.033405,0,0,0,0,0,0,0,0,1,1,0,3.8571959,0,0,0,60.02,56.419998,55.830002,40.23,6,1,1,0,0,4,5,1,2411.3333,388464.09,0,0,4475.4292 -5092,6317,11476,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-971.3869,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4168785,0,0,0,37.509998,58.259998,-9,-9,3,1,1,1,0,2,1,1,2432,0,0,0,463.65448 -5093,6318,11477,11478,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,0,2,6.9663596,6.8626652,0,1,0,1,1,-9,-13,81.228157,0,0,0,63,2,2,1,-9,3,2019,1,1,12,0,28,0,15,1,0,1,0,4.4373384,4.4373384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,49.400002,58.43,30.190001,4,1,1,0,0,6,3,0,2610,306638.13,0,0,1352.4729 -5093,6318,11478,11477,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,2,7.3865232,7.4478545,0,1,0,1,1,-9,13,161.55882,0,0,0,50,3,2,1,2,3,2019,1,2,12,0,29,19,15,1,0,1,0,6.8804045,6.8804045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.43,30.190001,45.810001,49.400002,6,1,1,0,0,6,3,0,2610,306638.13,0,0,1352.4729 -5094,6319,11479,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,0,4,8.024641,7.8483806,0,3,0,0,0,-9,0,-951.3407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,12,15,1,0,-9,0,13.658757,13.658757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,13,4,0,369,-99167.82,0,0,1230.2406 -5095,6320,11480,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,0,3,7.9387093,8.0871105,0,3,0,0,0,-9,0,-1088.6633,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,43,41,15,1,0,-9,0,8.3957682,8.3957682,0,0,0,0,0,0,0,0,0,0,0,6.9394603,0,0,0,41,56.990002,-9,-9,5,1,1,0,0,2,4,1,530,64814.531,0,0,2302.2727 -5096,6321,11481,11482,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.5532856,7.8136954,1,0,-9,7,0,2,135.72185,0,0,0,64,1,4,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9388518,8.0224218,0,0,44.130001,48.639999,36.369999,60.23,5,1,1,0,0,4,4,1,438.5,2089011.3,0,0,4453.1973 -5096,6321,11482,11481,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.3705511,8.353838,1,0,-9,7,0,-2,-6.2241831,0,0,0,66,2,3,3,3,2,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0274663,8.3263302,0,0,36.369999,60.23,44.130001,48.639999,7,1,1,0,0,4,4,1,438.5,2089011.3,0,0,4453.1973 -5097,6322,11483,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,2,1,0,0,4,8.4352503,8.2548523,0,3,0,0,0,-9,0,-1088.6825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,70,15,1,0,-9,0,11.529078,11.529078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,4,4,1,159,245034.38,0,0,1608.6949 -5098,6323,11484,11485,-9,-9,2,1,1,89,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,3,147.25035,0,0,0,86,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,62.02,28.48,6,1,1,0,0,11,2,1,1000,355523.31,0,0,1404.4657 -5098,6323,11485,11484,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,0,2,0,7.1602592,7.2711496,1,0,-9,6,0,-3,73.204224,0,0,0,89,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8486748,7.4253626,0,0,62.02,28.48,60.290001,52.110001,6,1,1,0,0,11,2,1,1000,355523.31,0,0,1404.4657 -5099,6324,11486,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1126.0034,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,11.291724,0,5.7511821,0,0,14.981791,0,1,1,0,0,0,0,0,33.080002,24.120001,-9,-9,3,1,1,0,0,11,1,0,785,13983.307,0,0,1208.7208 -5100,6325,11487,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,0,2,0,7.6368084,7.4727678,3,0,0,0,-9,0,-1007.0084,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6048627,7.1551604,0,0,48.34,25.4,-9,-9,3,1,1,0,0,7,2,1,903,794277.75,0,0,1252.2422 -5101,6326,11488,11489,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,4.4710793,4.6014514,1,0,-9,8,0,4,-135.1819,0,0,0,75,3,5,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.2307367,4.6423426,2.3428869,3,55.029999,44.810001,49.900002,58.259998,6,1,1,0,0,12,2,1,690.5,191946.91,0,0,163.95609 -5101,6326,11489,11488,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,5,0,6.5404196,6.4611025,1,0,-9,8,0,-4,-6.677062,0,0,0,79,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.7110524,6.6467605,10.171457,3,49.900002,58.259998,55.029999,44.810001,6,1,1,0,0,12,2,1,690.5,191946.91,0,0,163.95609 -5102,6327,11490,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,0,4,0,5.7140589,5.638114,3,0,0,0,-9,0,-1097.6167,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6997824,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,2,0,584,745791.63,0,0,1654.8209 -5103,6328,11491,11492,-9,-9,1,1,0,83,1,0,0,0,2,-9,4,3,0,0,3,0,7.938056,7.7839832,1,0,-9,37,0,-4,26.718296,0,0,0,87,1,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.9329305,114.11808,2,50.880001,45.34,55,45,6,1,1,0,0,6,3,1,276.5,288487.09,0,0,1908.2498 -5103,6328,11492,11491,-9,-9,2,1,1,87,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,4,19.403173,0,0,0,83,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,50.880001,45.34,6,1,1,0,0,6,3,1,276.5,288487.09,0,0,1908.2498 -5104,6329,11493,11494,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,1,0,7.6889482,7.7581172,1,0,-9,42,0,4,-128.29669,0,0,0,63,3,3,3,2,-9,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.45763716,7.7277398,11.990351,3,47.360001,16.34,60.59,36.84,5,1,1,0,0,9,3,1,379.5,1383293,0,0,2330.6685 -5104,6329,11494,11493,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,-4,-50.934544,0,0,0,67,2,1,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1973224,0,0,3,60.59,36.84,47.360001,16.34,7,1,1,0,0,9,3,1,379.5,1383293,0,0,2330.6685 -5105,6330,11495,11496,-9,-9,2,1,0,60,1,0,2,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,1,-9,-2,102.45903,-9,0,0,62,3,4,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.259998,44.639999,58.150002,52.91,5,2,3,0,0,2,2,1,1115,206834.13,0,0,1701.3811 -5105,6330,11496,11495,-9,-9,1,1,1,62,1,0,2,0,3,-9,2,1,0,0,4,6.667943,7.0797353,0,2,0,-9,1,-9,2,59.570408,-9,0,0,60,3,3,3,-9,-9,2019,2,2,11,0,25,0,15,1,0,3,0,4.350698,4.350698,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.150002,52.91,35.259998,44.639999,6,2,3,0,0,2,2,1,1115,206834.13,0,0,1701.3811 -5105,6331,11497,11498,11495,11496,3,1,1,38,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,4,-9,-1,0,-9,0,0,39,2,5,3,3,3,2019,4,4,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.970001,61.830002,40.900002,56.990002,5,2,3,1,0,2,1,1,451,73271.625,0,0,-316.53436 -5105,6331,11498,11497,-9,-9,4,1,0,39,1,0,2,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,6,-9,1,0,-9,0,1,38,2,4,3,-9,-9,2019,4,3,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,1.9514211,3,40.900002,56.990002,35.970001,61.830002,6,2,3,1,0,2,1,1,451,73271.625,0,0,-316.53436 -5105,6331,11499,-9,11498,11497,6,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1117.2081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,2,3,0,0,2,1,1,451,73271.625,0,0,-316.53436 -5106,6332,11500,-9,-9,-9,1,1,1,89,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1070.2173,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,44,-9,-9,6,1,1,0,0,13,1,1,1274,89737.375,0,0,264.16763 -5106,6333,11501,-9,-9,11500,2,1,0,54,3,0,0,0,2,-9,2,1,0,0,5,8.2017841,8.0632544,0,3,0,0,0,-9,0,-939.82166,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,36,15,1,0,-9,1,9.2471151,9.2471151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,13,4,1,999,-76664.891,0,0,1080.2484 -5107,6334,11502,11503,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,2,8.0865736,8.0055618,0,2,0,-9,22,0,3,38.946804,0,0,0,43,1,3,1,2,2,2019,1,1,10,2,47,45,15,1,0,1,0,7.8233209,7.8233209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.799999,39.799999,33.41,52.110001,4,2,3,0,0,10,4,1,429.66666,1477929.6,0,0,3956.491 -5107,6334,11503,11502,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,8.8147583,8.8548651,0,2,0,-9,22,0,-3,-54.312645,0,0,1,46,1,2,1,1,1,2019,1,2,18,7,54,37,15,1,1,1,0,12.801782,12.801782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.41,52.110001,45.799999,39.799999,5,2,3,0,0,10,4,1,429.66666,1477929.6,0,0,3956.491 -5107,6334,11504,-9,11503,11502,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-939.45654,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,2,3,0,0,10,4,1,429.66666,1477929.6,0,0,3956.491 -5107,6335,11505,-9,11503,11502,3,1,0,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-960.48547,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.209999,52.5,-9,-9,4,2,3,0,0,10,4,1,1120,196735.92,0,0,0 -5108,6336,11506,11507,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,3,0,8.1696644,7.853477,1,0,-9,57,0,3,68.27034,0,0,0,82,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.6074066,121.05189,1,55,45,52,45,6,1,1,0,0,13,3,1,410,322334.34,0,0,2330.6582 -5108,6336,11507,11506,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,1,3,0,6.6465673,6.5706916,1,0,-9,57,0,-3,-84.821869,0,0,0,85,2,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,48.813404,0,0,0,0,0,1,1,0,.60345644,6.6285138,0,0,52,45,55,45,6,1,1,0,0,13,3,1,410,322334.34,0,0,2330.6582 -5109,6337,11508,11509,-9,-9,1,1,0,64,1,0,0,0,3,-9,1,1,0,0,5,7.6422634,7.7756305,0,1,0,-9,47,0,-2,3.8992867,0,0,0,66,2,4,3,2,3,2019,2,2,6,0,40,40,15,1,0,4,0,7.0004878,7.0004878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,55.790001,52.619999,6,1,1,0,0,1,4,1,158,398717.66,0,0,3752.2661 -5109,6337,11509,11508,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.9601665,8.1667089,1,0,-9,47,0,2,-17.607193,0,0,0,64,3,5,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2736368,7.8967781,0,0,55.790001,52.619999,59.43,58.049999,6,1,1,0,0,1,4,1,158,398717.66,0,0,3752.2661 -5110,6338,11510,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,0,5,7.4825578,7.0638819,0,3,0,-9,0,-9,0,-1017.6141,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,23,0,15,1,0,-9,0,6.1527028,6.1527028,0,0,0,0,0,0,0,2,1,1,0,8.086463,0,0,3,57.060001,57.759998,-9,-9,6,1,1,0,0,9,2,1,422,-70386.063,0,0,2695.603 -5110,6339,11511,-9,11510,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,5,8.5285711,8.3172302,0,3,0,-9,0,-9,0,-1040.8423,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,2,53,0,15,1,0,-9,1,9.8019428,9.8019428,0,0,0,0,0,0,0,0,1,1,0,5.5616264,0,0,0,51.139999,60.450001,-9,-9,5,1,1,0,0,9,4,1,1435,-93681.711,0,0,1799.7186 -5110,6340,11512,-9,11510,-9,3,1,1,22,2,0,0,0,1,-9,2,1,0,0,5,7.7317328,7.6326151,0,3,0,-9,0,-9,0,-928.59399,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,45,0,15,1,0,-9,1,6.4951973,6.4951973,0,0,0,0,0,0,0,0,1,1,0,5.9462895,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,9,3,1,759,-10377.282,0,0,1539.3186 -5110,6341,11513,-9,11510,-9,4,1,0,20,2,0,0,1,2,-9,7,2,0,0,1,6.4464288,6.2703404,0,3,0,-9,0,-9,0,-1001.9777,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,23,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.379999,47.130001,-9,-9,6,1,1,0,0,9,2,1,404,-77700.914,0,0,504.16266 -5111,6342,11514,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1098.1891,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.09,57.900002,-9,-9,7,3,4,0,0,8,1,0,248,92132.789,0,0,1417.9342 -5112,6343,11515,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,0,2,8.2216425,8.3518324,0,3,0,0,0,-9,0,-1089.9005,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,44,15,1,0,-9,0,11.581379,11.581379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.23,49.990002,-9,-9,4,1,1,0,0,6,4,0,334,485415.78,0,0,445.94522 -5113,6344,11516,11519,-9,-9,2,1,0,33,1,0,3,0,2,-9,2,1,0,0,3,8.3614616,8.5303907,0,2,0,-9,7,0,0,31.423929,0,0,1,33,2,4,1,-9,-9,2019,1,1,10,0,38,32,15,1,0,1,0,13.163946,13.163946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.790001,57.73,48.119999,52.169998,6,1,1,0,0,2,4,0,892.79999,-81792.359,0,0,3425.4626 -5113,6344,11517,-9,11516,-9,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.77271,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,0,892.79999,-81792.359,0,0,3425.4626 -5113,6344,11518,-9,11516,11519,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.9114,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,0,892.79999,-81792.359,0,0,3425.4626 -5113,6344,11519,11516,-9,-9,1,1,1,33,1,0,3,0,2,-9,2,1,0,0,4,8.0373755,8.0166998,0,2,0,-9,7,0,0,-24.457462,0,0,0,33,2,3,1,2,2,2019,1,2,11,1,39,39,15,1,0,1,0,9.5284815,9.5284815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.119999,52.169998,41.790001,57.73,6,1,1,0,0,2,4,0,892.79999,-81792.359,0,0,3425.4626 -5113,6344,11520,-9,11516,11519,4,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.69067,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,0,892.79999,-81792.359,0,0,3425.4626 -5114,6345,11521,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,1,1,0,0,4,8.1346426,7.9875708,3.8203969,3,0,0,0,-9,0,-1019.6523,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,50,15,1,0,-9,0,10.004904,10.004904,0,0,0,0,0,0,0,2,0,0,0,9.2709684,3.664485,3.8786163,3,53.610001,51.099998,-9,-9,6,1,1,0,0,7,4,1,226,2909.2129,0,0,5965.7422 -5115,6346,11522,11523,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.519619,8.4377403,6.954134,1,0,-9,25,0,0,29.82519,0,0,0,45,2,3,1,2,2,2019,1,2,7,0,39,37,15,1,0,1,0,13.992653,13.992653,0,0,0,0,0,0,0,0,0,0,0,0,7.0598187,0,0,48.279999,60.18,49.040001,55.860001,6,1,1,0,0,10,5,1,1568,852359.31,0,0,2951.6523 -5115,6346,11523,11522,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,7.8752446,8.2577524,0,1,0,-9,25,0,0,25.107138,0,0,0,45,2,4,1,3,2,2019,1,1,14,3,38,37,15,1,0,1,0,7.934442,7.934442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,48.279999,60.18,6,1,1,0,0,10,5,1,1568,852359.31,0,0,2951.6523 -5115,6347,11524,-9,11523,11522,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,2,7.1279483,7.1802745,0,3,0,0,0,-9,0,-924.86053,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,19,28,15,1,0,-9,1,9.6515236,9.6515236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.209999,46.799999,-9,-9,3,1,1,0,0,10,3,1,1797,68989.086,0,0,-208.35872 -5116,6348,11525,11526,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.9531469,6.8865972,1,0,-9,6,0,-1,60.662766,0,0,0,67,2,5,3,3,3,2019,4,1,9,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.916882,0,0,61.580002,37.810001,59.43,58.049999,6,1,1,0,0,13,2,1,2056,350822,0,0,1390.8658 -5116,6348,11526,11525,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,6,0,1,27.705667,0,0,0,66,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,61.580002,37.810001,7,4,1,0,0,13,2,1,2056,350822,0,0,1390.8658 -5117,6349,11527,-9,11529,11528,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-891.57654,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,11,4,1,539.33331,378563.66,0,0,3691.5305 -5117,6349,11528,11529,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.5143414,8.4966602,0,2,0,-9,5,0,11,-36.403225,0,0,0,40,2,5,1,3,3,2019,1,1,4,0,56,49,15,1,0,1,0,10.16445,10.16445,0,0,0,0,0,0,0,0,1,1,0,.86450809,0,0,0,59.139999,52.5,51.139999,60.450001,6,1,1,0,0,11,4,1,539.33331,378563.66,0,0,3691.5305 -5117,6349,11529,11528,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,5,8.0650606,8.0120897,0,2,0,-9,5,0,-11,29.627029,0,0,1,51,2,4,1,2,2,2019,1,2,12,2,39,39,15,1,0,1,0,8.4264984,8.4264984,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,59.139999,52.5,7,1,1,0,0,11,4,1,539.33331,378563.66,0,0,3691.5305 -5118,6350,11530,-9,-9,-9,1,1,0,77,2,0,0,0,1,-9,4,3,0,1,4,0,8.0221682,7.7951961,3,0,0,0,-9,0,-983.87445,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1992412,8.0851164,0,0,63.25,23.629999,-9,-9,6,1,1,0,0,7,4,1,255,123814.02,0,0,2942.616 -5119,6351,11531,11532,-9,-9,2,1,0,53,1,0,1,0,1,-9,8,3,1,1,3,6.6864443,6.6043162,0,2,0,-9,15,0,-23,31.172613,0,0,0,76,1,3,1,3,2,2019,3,1,10,3,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1184387,0,0,0,58.02,47.650002,42.610001,54.849998,6,1,1,0,0,10,4,1,387,159962.42,0,0,4449.7632 -5119,6351,11532,11531,-9,-9,1,1,1,76,1,0,1,0,1,-9,1,1,0,0,3,8.2847815,8.1314678,7.0477276,2,0,-9,15,0,23,37.618061,0,0,0,53,1,3,3,3,3,2019,2,2,13,1,36,36,15,1,0,3,0,10.116705,10.116705,0,0,0,0,0,0,0,7,1,1,0,8.2830067,6.8318582,2.4417465,1,42.610001,54.849998,58.02,47.650002,5,1,1,0,0,10,4,1,387,159962.42,0,0,4449.7632 -5119,6351,11533,-9,11531,11532,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1110.6617,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,4,1,387,159962.42,0,0,4449.7632 -5120,6352,11534,-9,11535,11536,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.85236,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,2,3,0,0,8,1,0,2700.6667,-24784.051,0,0,2322.8562 -5120,6352,11535,11536,-9,-9,1,1,0,43,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-8,0,0,0,1,51,3,4,3,-9,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,55,6,2,3,0,0,8,1,0,2700.6667,-24784.051,0,0,2322.8562 -5120,6352,11536,11535,-9,-9,2,1,1,51,1,0,1,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,8,0,8,0,0,0,0,43,3,4,3,-9,-9,2019,4,1,9,1,0,20,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,50,55,6,2,3,1,1,8,1,0,2700.6667,-24784.051,0,0,2322.8562 -5120,6353,11537,-9,11535,11536,3,1,1,21,2,0,1,0,2,-9,2,1,0,0,4,8.3698807,8.1188469,0,3,0,0,0,-9,0,-1005.7368,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,35,40,15,1,0,-9,1,12.202854,12.202854,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,4,0,576,-123146.9,0,0,1468.1504 -5121,6354,11538,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,6,3,0,1,4,0,0,0,3,0,-9,0,1,0,-968.29938,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.560001,62.740002,-9,-9,7,1,1,0,0,8,1,0,1657,0,0,0,-141.03635 -5122,6355,11539,-9,11540,11541,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-865.59045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,1,3,0,868.33331,24204.963,0,0,2022.9861 -5122,6355,11540,11541,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,0,4,7.867043,7.7157078,0,2,0,-9,2,0,-3,60.30439,0,1,1,32,2,3,1,-9,-9,2019,1,2,2,0,41,0,15,1,0,1,0,7.1852088,7.1852088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,47.18,55.310001,6,1,1,0,0,1,3,0,868.33331,24204.963,0,0,2022.9861 -5122,6355,11541,11540,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,0,3,6.3280783,6.3962674,0,2,0,-9,2,0,3,148.73752,-9,0,0,29,2,4,1,-9,-9,2019,1,1,8,0,20,0,15,1,0,1,0,3.8518944,3.8518944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,55.310001,54.200001,57.490002,5,1,1,0,1,1,3,0,868.33331,24204.963,0,0,2022.9861 -5123,6356,11542,11543,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,3,9.0132236,8.7353554,0,1,0,-9,41,0,1,-46.176674,0,0,0,58,2,4,1,3,3,2019,1,1,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4499249,0,0,0,51,49,60.139999,46.439999,5,1,1,0,0,5,5,1,833.5,1319471.3,0,0,3793.1602 -5123,6356,11543,11542,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.4056215,7.7331805,0,1,0,-9,41,0,-1,62.694996,0,0,0,59,3,3,1,3,3,2019,1,2,8,0,32,32,15,1,0,1,0,5.7640767,5.7640767,0,0,0,0,0,0,0,0,0,0,0,5.0637331,0,0,0,60.139999,46.439999,51,49,7,1,1,0,0,5,5,1,833.5,1319471.3,0,0,3793.1602 -5124,6357,11544,-9,-9,-9,1,1,0,39,3,0,0,0,1,-9,6,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-929.4458,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.23,58.080002,-9,-9,6,1,1,0,0,7,1,1,1247,37859.055,0,0,0 -5125,6358,11545,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,1,0,7.2365136,7.370883,3,0,0,0,-9,0,-1018.0277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,0,16.971775,0,0,0,0,0,1,1,0,.75299227,7.0005884,0,0,42.240002,21.559999,-9,-9,3,1,1,0,0,9,3,1,101,917363.25,0,0,683.77228 -5126,6359,11546,11547,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,7.9916401,7.9253273,1,0,-9,48,0,-2,29.560596,0,0,0,69,1,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1842961,7.9455805,0,0,57.330002,53.459999,61.849998,34.029999,7,1,1,0,0,6,4,1,690,1793751,0,0,2672.4019 -5126,6359,11547,11546,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.310163,7.8113508,1,0,-9,48,0,2,-102.78391,0,0,0,67,1,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8366232,7.3550801,0,0,61.849998,34.029999,57.330002,53.459999,6,1,1,0,0,6,4,1,690,1793751,0,0,2672.4019 -5127,6360,11548,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,0,3,0,7.642694,7.4440041,3,0,0,0,-9,0,-956.91956,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.2068839,7.5063143,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,12,3,1,810,666877.56,0,0,2515.573 -5128,6361,11549,-9,11553,11550,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.2311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,941.20001,137668.52,0,0,2866.7278 -5128,6361,11550,11553,-9,-9,4,1,1,37,1,1,3,0,2,-9,2,1,0,0,4,7.944541,7.6934376,0,2,0,-9,8,0,8,-22.247576,0,0,0,29,2,4,1,-9,-9,2019,1,1,9,0,41,0,15,1,0,1,0,7.8343987,7.8343987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,17.34,67.889999,5,1,1,0,0,10,3,0,941.20001,137668.52,0,0,2866.7278 -5128,6361,11551,-9,11553,11550,3,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-830.54358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,0,941.20001,137668.52,0,0,2866.7278 -5128,6361,11552,-9,11553,11550,2,1,0,10,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1026.8506,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,3,0,941.20001,137668.52,0,0,2866.7278 -5128,6361,11553,11550,-9,-9,1,1,0,29,1,1,3,0,2,-9,2,1,0,0,4,7.4492402,7.1430149,4.4034348,2,0,-9,8,0,-8,16.524992,0,1,1,37,2,4,1,2,3,2019,1,4,26,11,23,22,15,1,1,1,0,8.5409842,8.5409842,0,0,0,0,0,0,0,0,1,1,0,4.0437636,0,0,0,17.34,67.889999,51.240002,58.84,4,1,1,0,0,10,3,0,941.20001,137668.52,0,0,2866.7278 -5129,6362,11554,11555,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,7.8353634,7.661447,0,2,0,-9,23,0,-2,-30.062799,0,0,1,42,2,3,1,3,2,2019,1,2,5,0,38,32,15,1,0,1,0,6.5303397,6.5303397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,58.619999,44.689999,7,1,1,0,0,10,5,1,958,165964.78,0,0,3171.9644 -5129,6362,11555,11554,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.9683352,8.6832628,0,2,0,-9,24,0,2,-40.299866,0,0,0,40,2,4,1,2,2,2019,1,1,10,0,40,40,15,1,0,1,0,24.483578,24.483578,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.619999,44.689999,58.150002,52.91,6,1,1,0,0,10,5,1,958,165964.78,0,0,3171.9644 -5129,6363,11556,-9,11554,11555,4,1,0,18,2,0,1,0,2,1,2,1,0,0,4,7.0169101,6.8113699,0,3,0,0,0,-9,0,-1207.5281,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,25,0,15,1,0,-9,1,5.1925807,5.1925807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,-9,-9,5,1,1,0,0,10,2,1,59,0,0,0,1073.8585 -5130,6364,11557,-9,11558,11560,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.70416,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,0,1205,435114.44,0,0,2514.4443 -5130,6364,11558,11560,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.0412588,7.2650909,0,2,0,-9,7,0,-5,-27.034498,0,0,1,47,3,2,1,3,3,2019,1,2,12,2,20,16,15,1,0,1,0,7.5671124,7.5671124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.220001,52.720001,60.529999,48.349998,6,1,1,0,0,9,4,0,1205,435114.44,0,0,2514.4443 -5130,6364,11559,-9,11558,11560,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.54578,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,0,1205,435114.44,0,0,2514.4443 -5130,6364,11560,11558,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,0,2,8.5468092,8.5921917,0,2,0,-9,7,0,5,-129.67747,0,0,0,42,2,3,1,2,-9,2019,1,1,3,0,46,48,15,1,0,1,0,13.240497,13.240497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,48.349998,50.220001,52.720001,7,1,1,0,1,9,4,0,1205,435114.44,0,0,2514.4443 -5131,6365,11561,-9,11564,-9,2,1,1,7,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1104.3237,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,2,0,1262,-6921.8008,0,0,1722.0647 -5131,6365,11562,-9,11564,-9,3,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-902.31708,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,2,0,1262,-6921.8008,0,0,1722.0647 -5131,6365,11563,-9,11564,-9,4,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-990.711,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,2,0,1262,-6921.8008,0,0,1722.0647 -5131,6365,11564,-9,-9,-9,1,1,0,28,2,2,3,0,2,-9,2,1,0,0,3,7.0026507,7.2563586,0,4,0,-9,0,-9,0,-898.01471,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,18,0,15,1,0,-9,0,7.3444061,7.3444061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,5,2,0,1262,-6921.8008,0,0,1722.0647 -5132,6366,11565,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,2,1,0,0,2,7.4188557,7.649148,6.6891303,3,0,0,0,-9,0,-930.25269,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,23,35,15,1,1,-9,0,7.6947427,7.6947427,0,0,0,0,0,0,0,0,0,0,0,7.5771508,6.9486699,0,0,31.120001,40.040001,-9,-9,3,1,1,0,0,13,3,1,172,506974.38,0,0,2126.6543 -5133,6367,11566,11567,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,8.0152178,7.8650689,0,1,0,-9,5,0,6,-57.87928,0,0,0,41,1,4,1,-9,-9,2019,1,1,13,1,42,45,15,1,0,1,0,8.8736563,8.8736563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.580002,42.990002,59.139999,52.5,4,1,1,0,0,11,5,1,430,610311.75,0,0,2515.606 -5133,6367,11567,11566,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,0,4,8.3465519,8.5785437,0,1,0,-9,5,0,-6,-21.649105,0,0,1,47,2,3,1,2,2,2019,1,2,10,2,40,43,15,1,0,1,0,13.864519,13.864519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.139999,52.5,50.580002,42.990002,6,1,1,0,0,11,5,1,430,610311.75,0,0,2515.606 -5134,6368,11568,-9,11570,-9,3,1,0,17,2,0,1,0,2,1,2,3,0,0,3,6.1096849,5.8985057,0,4,0,0,0,-9,0,-963.25385,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,2,13,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.309999,64.419998,-9,-9,6,1,1,0,1,5,3,1,658,327898.03,0,0,2903.106 -5134,6368,11569,-9,11570,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-989.185,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,1,658,327898.03,0,0,2903.106 -5134,6368,11570,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,4,8.0952873,8.0625753,6.2204747,4,0,0,0,-9,0,-959.3999,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,9.3577385,9.3577385,0,0,0,0,0,0,0,7,1,0,1,6.0048394,0,3.5698202,3,50.110001,54.040001,-9,-9,4,1,1,0,0,5,3,1,658,327898.03,0,0,2903.106 -5134,6369,11571,-9,11570,-9,2,1,1,19,2,0,1,1,2,0,7,2,0,0,4,7.052752,7.0202923,0,3,0,0,0,-9,0,-940.57794,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.38849393,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,5,2,1,1166,0,0,0,1239.5126 -5135,6370,11572,11573,-9,-9,2,1,0,38,1,0,0,0,2,-9,1,1,0,0,5,5.3148532,5.1744008,0,1,0,-9,9,0,-7,112.47234,0,0,1,45,2,5,1,2,2,2019,1,1,6,0,40,20,15,1,0,1,0,.63045752,.63045752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,5,3,1,534,-140687.98,0,0,2973.4346 -5135,6370,11573,11572,-9,-9,1,1,1,45,1,0,0,0,2,-9,1,1,0,0,5,7.5041552,7.9580107,6.9528122,1,0,-9,9,0,7,-14.735629,0,0,0,38,2,5,1,2,2,2019,1,2,5,0,40,30,15,1,0,1,0,5.9939966,5.9939966,0,0,0,0,0,0,0,0,0,0,0,8.1290522,7.0014939,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,5,3,1,534,-140687.98,0,0,2973.4346 -5136,6371,11574,11576,-9,-9,1,1,0,24,1,1,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,5,0,-1,16.046316,0,1,1,25,2,5,1,-9,-9,2019,3,2,17,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.439999,57.060001,57.759998,7,1,1,0,0,7,2,0,301,39212.223,0,0,1971.1892 -5136,6371,11575,-9,11574,11576,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.4817,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,301,39212.223,0,0,1971.1892 -5136,6371,11576,11574,-9,-9,2,1,1,25,1,1,3,0,2,-9,2,1,0,0,5,7.853056,7.8338151,0,2,0,-9,5,0,1,99.14521,0,1,0,24,2,2,3,-9,-9,2019,2,1,5,0,35,42,15,1,0,3,0,9.9404879,9.9404879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,46.32,53.439999,7,1,1,0,0,7,2,0,301,39212.223,0,0,1971.1892 -5136,6371,11577,-9,11574,11576,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.35895,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,301,39212.223,0,0,1971.1892 -5136,6371,11578,-9,11574,11576,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.3393,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,301,39212.223,0,0,1971.1892 -5137,6372,11579,-9,-9,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,5,7.5088658,7.5457001,0,3,0,-9,0,-9,0,-959.07312,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,15,2,39,0,15,1,0,-9,1,7.8801227,7.8801227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.400002,29.469999,-9,-9,2,1,1,0,0,1,3,1,160,40294.617,0,0,1734.9233 -5138,6373,11580,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-933.4613,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.249535,3,35.77,22.66,-9,-9,3,1,1,0,1,13,1,0,1550,-35324.965,0,0,916.18414 -5139,6374,11581,11582,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.5172014,5.7925711,1,0,-9,7,0,1,-27.974977,0,0,0,72,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5417314,5.4566746,0,0,62.27,48.470001,62.389999,56.709999,6,1,1,0,0,8,4,1,662.5,1742142.1,0,0,2883.0581 -5139,6374,11582,11581,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,5,5.3322124,7.9676614,8.1128931,1,0,-9,51,0,-1,70.837479,0,0,0,73,2,3,3,2,1,2019,4,2,6,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1629634,8.4094219,0,0,62.389999,56.709999,62.27,48.470001,7,1,1,0,0,8,4,1,662.5,1742142.1,0,0,2883.0581 -5140,6375,11583,11584,-9,-9,1,1,0,38,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,2,103.37442,0,0,1,36,3,3,1,2,3,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,52.32,35.080002,6,1,1,0,0,12,3,0,632.79999,-13386.768,0,0,2718.5327 -5140,6375,11584,11583,-9,-9,3,1,1,36,1,1,3,0,3,-9,2,1,0,0,3,8.1905231,8.0158691,0,2,0,-9,8,0,-2,48.355259,0,0,0,38,2,4,3,-9,-9,2019,2,1,4,0,36,36,15,1,0,3,0,9.9409952,9.9409952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.32,35.080002,55.34,54.259998,6,1,1,0,0,12,3,0,632.79999,-13386.768,0,0,2718.5327 -5140,6375,11585,-9,11583,11584,4,1,1,12,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1005.0787,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,3,0,632.79999,-13386.768,0,0,2718.5327 -5140,6375,11586,-9,11583,11584,5,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.87836,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,0,632.79999,-13386.768,0,0,2718.5327 -5140,6375,11587,-9,11583,11584,6,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.84235,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,0,632.79999,-13386.768,0,0,2718.5327 -5140,6376,11588,-9,11583,11584,2,1,1,18,2,1,3,0,2,-9,2,1,0,0,4,5.0813265,4.9299183,0,3,0,0,0,-9,0,-1150.0994,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,3,0,15,1,0,-9,1,4.7303944,4.7303944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.07,52.700001,-9,-9,6,1,1,0,0,12,2,0,742,-100031.82,0,0,-20.356586 -5141,6377,11589,-9,-9,-9,1,1,1,83,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1022.6039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,8,1,0,234,-63825.531,0,0,-340.51862 -5142,6378,11590,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,1,1,0,6.4943752,6.682807,3,0,0,0,-9,0,-1041.2079,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3081427,6.5922422,3,52.91,19.32,-9,-9,4,1,1,0,0,7,2,0,369,862497.19,0,0,836.3382 -5143,6379,11591,-9,11592,11594,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.88623,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,776,112059.3,0,0,2378.6731 -5143,6379,11592,11594,-9,-9,2,1,0,31,1,0,2,0,1,-9,2,1,0,0,3,8.7736025,9.02174,0,2,0,-9,8,0,-6,56.33601,0,0,1,37,1,3,3,2,2,2019,2,1,14,3,51,47,15,1,0,3,0,14.715887,14.715887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.610001,56.990002,46.080002,57.200001,4,1,1,0,1,1,3,1,776,112059.3,0,0,2378.6731 -5143,6379,11593,-9,11592,11594,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1182.8073,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,1,776,112059.3,0,0,2378.6731 -5143,6379,11594,11592,-9,-9,1,1,1,37,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,6,-12.140714,0,0,0,31,1,3,1,2,3,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,37.610001,56.990002,6,1,1,0,0,1,3,1,776,112059.3,0,0,2378.6731 -5144,6380,11595,11596,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,0,4,8.3736668,8.0458574,0,1,0,-9,2,0,6,18.476387,0,0,1,33,1,4,1,-9,-9,2019,1,1,10,1,35,37,15,1,0,1,0,9.3302326,9.3302326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,51.77,58.57,6,1,1,0,0,4,4,1,236.5,115704.75,0,0,1500.0632 -5144,6380,11596,11595,-9,-9,1,1,1,33,1,0,0,0,1,-9,1,1,0,0,4,7.0647058,7.0484138,0,1,0,-9,2,0,-6,-26.485357,0,0,0,39,2,4,1,2,2,2019,1,2,12,2,50,50,15,1,0,1,0,3.3516417,3.3516417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49,56,6,1,1,0,0,4,4,1,236.5,115704.75,0,0,1500.0632 -5145,6381,11597,-9,-9,-9,1,1,0,39,3,0,2,0,1,-9,2,1,0,0,5,8.2233334,8.2653675,6.0432949,4,0,0,0,-9,0,-978.20276,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,26,51,15,1,0,-9,0,18.240551,18.240551,0,0,0,0,0,0,0,0,1,1,0,6.7935123,0,0,0,36.950001,61.57,-9,-9,4,1,1,0,0,11,4,0,1558,15424.762,0,0,1840.8795 -5145,6381,11598,-9,11597,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1027.9956,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,4,0,1558,15424.762,0,0,1840.8795 -5146,6382,11599,11600,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-8,0,0,0,0,72,3,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.099998,35.959999,62.490002,55.09,6,1,1,0,0,9,1,1,964,-8292.4844,0,0,602.24524 -5146,6382,11600,11599,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,8,0,0,0,0,64,2,3,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,57.099998,35.959999,5,1,1,0,0,9,1,1,964,-8292.4844,0,0,602.24524 -5147,6383,11601,11602,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,2,9.0048275,8.8740463,0,1,0,-9,10,0,5,30.462864,-9,0,0,56,2,4,1,-9,-9,2019,1,2,7,0,44,0,15,1,0,1,0,17.985737,17.985737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.239998,31.6,51.529999,51.799999,6,1,1,0,0,7,5,1,739.5,1576613.9,0,0,3692.8633 -5147,6383,11602,11601,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.2911243,8.1347923,0,1,0,-9,34,0,-5,90.557152,0,0,0,61,1,2,1,2,2,2019,1,1,14,4,40,38,15,1,1,1,0,14.677645,14.677645,0,0,0,0,0,0,0,0,1,1,0,.7413581,0,0,0,51.529999,51.799999,64.239998,31.6,6,1,1,0,0,7,5,1,739.5,1576613.9,0,0,3692.8633 -5148,6384,11603,11604,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,7.8578343,7.6120887,1,0,-9,46,0,4,28.48313,0,0,0,69,3,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8683343,8.289299,0,0,57.330002,53.459999,45.220001,43.93,6,1,1,0,0,5,3,1,448.5,501353.75,0,0,2189.3257 -5148,6384,11604,11603,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-4,-57.931553,0,0,0,73,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.220001,43.93,57.330002,53.459999,6,1,1,0,0,5,3,1,448.5,501353.75,0,0,2189.3257 -5149,6385,11605,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,1,1,0,0,3,0,5.9237785,5.6342845,3,0,0,0,-9,0,-945.93353,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,35,35,15,1,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.5675411,5.8425622,0,0,50.27,46.950001,-9,-9,6,1,1,0,0,10,2,1,769,249849.27,0,0,960.24011 -5150,6386,11606,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,1,3,5.2975736,4.9588871,0,3,0,0,0,-9,0,-905.5575,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,1,6,6,15,1,0,-9,0,3.3338051,3.3338051,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.200001,55.360001,-9,-9,2,1,1,0,0,7,2,1,324,23646.973,0,0,374.59778 -5151,6387,11607,-9,11610,-9,3,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-964.67914,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,576.25,-23858.459,0,0,1427.8721 -5151,6387,11608,-9,11610,-9,4,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-874.18842,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,1,0,576.25,-23858.459,0,0,1427.8721 -5151,6387,11609,-9,11610,-9,2,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1031.8539,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,576.25,-23858.459,0,0,1427.8721 -5151,6387,11610,-9,-9,-9,1,1,0,27,2,1,3,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1050.5879,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,1,1,1,0,0,13,1,0,576.25,-23858.459,0,0,1427.8721 -5152,6388,11611,11612,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.2677984,8.8388939,7.8411098,1,0,-9,31,0,-3,-15.73726,0,0,0,61,2,2,1,2,3,2019,1,1,16,5,15,0,15,1,1,1,0,31.887915,31.887915,0,0,0,0,0,0,0,0,0,0,0,.81340051,8.1504889,0,3,46.080002,57.200001,42.5,51.450001,5,1,1,0,0,9,5,1,549.5,3211163.3,0,0,5787.4253 -5152,6388,11612,11611,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,2,8.5720444,8.7087784,7.5037565,1,0,-9,33,0,3,-8.9312229,0,0,0,58,1,3,1,2,3,2019,1,2,7,0,44,44,15,1,0,1,0,17.390862,17.390862,0,0,0,0,0,0,0,0,0,0,0,0,7.847393,0,0,42.5,51.450001,46.080002,57.200001,5,1,1,0,0,9,5,1,549.5,3211163.3,0,0,5787.4253 -5153,6389,11613,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,3,3,0,1,5,0,0,0,3,0,0,0,-9,0,-1025.9445,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.119999,62.240002,-9,-9,7,1,1,1,0,8,1,0,297,45304.926,0,0,1583.9385 -5154,6390,11614,-9,11616,11615,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-982.17065,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,12,3,0,866,0,0,0,1733.8381 -5154,6390,11615,11616,-9,-9,1,1,1,45,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,7,0,6,43.217674,0,0,0,39,2,3,1,2,1,2019,3,2,21,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,39,49.919998,5,1,1,0,0,12,3,0,866,0,0,0,1733.8381 -5154,6390,11616,11615,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,0,3,8.0205097,7.8756132,0,2,0,-9,7,0,-6,-195.78955,0,0,1,45,2,1,3,-9,-9,2019,2,1,15,3,37,41,15,1,0,3,0,8.3668308,8.3668308,0,0,0,0,0,0,0,7,1,1,0,0,0,13.3618,2,39,49.919998,16.040001,23.99,4,1,1,0,0,12,3,0,866,0,0,0,1733.8381 -5155,6391,11617,11618,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,6.5689826,6.358252,1,0,-9,44,0,-5,5.8708382,0,0,0,69,2,4,3,-9,2,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8986907,6.6101556,0,0,66.139999,26.059999,60.119999,54.799999,6,1,1,0,0,1,2,1,1983.5,427781.19,0,0,1414.9849 -5155,6391,11618,11617,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,5.3327541,5.0937572,1,0,-9,44,0,5,63.567505,0,0,0,64,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9907907,5.1264586,0,3,60.119999,54.799999,66.139999,26.059999,7,1,1,0,0,1,2,1,1983.5,427781.19,0,0,1414.9849 -5155,6392,11619,-9,11617,11618,3,1,1,35,2,0,0,0,2,-9,2,1,0,0,4,7.1307516,7.2118802,0,3,0,0,0,-9,0,-1028.4668,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,17,9,15,1,0,-9,1,8.8695612,8.8695612,0,0,0,0,0,0,0,0,1,1,0,1.7290035,0,0,0,49,58,-9,-9,5,1,1,0,0,1,3,1,531,68117.578,0,0,-398.24478 -5156,6393,11620,11621,-9,-9,2,1,1,49,1,0,4,0,1,-9,2,1,0,0,4,9.0054245,9.2304659,0,2,0,-9,20,0,6,51.677776,0,0,0,43,2,4,1,2,2,2019,1,1,17,5,45,45,15,1,1,1,0,21.544474,21.544474,0,0,0,0,0,0,0,0,1,1,0,3.4654725,0,0,0,47.970001,56.110001,57.16,56.150002,6,1,1,0,0,2,4,1,1567.8334,2682655.8,0,0,3586.5273 -5156,6393,11621,11620,-9,-9,1,1,0,43,1,0,4,0,2,-9,2,1,0,0,4,8.2605343,8.4521055,0,2,0,-9,20,0,-6,43.247463,0,0,1,49,1,4,1,2,2,2019,1,2,8,0,14,17,15,1,0,1,0,38.775627,38.775627,0,0,0,0,0,0,0,27.5,1,1,0,4.8130789,0,30.615536,3,57.16,56.150002,47.970001,56.110001,6,1,1,0,0,2,4,1,1567.8334,2682655.8,0,0,3586.5273 -5156,6393,11622,-9,11621,11620,3,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.95758,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,4,1,1567.8334,2682655.8,0,0,3586.5273 -5156,6393,11623,-9,11621,11620,5,1,1,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-901.138,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,1,1567.8334,2682655.8,0,0,3586.5273 -5156,6393,11624,-9,11621,11620,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.7428,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,1567.8334,2682655.8,0,0,3586.5273 -5156,6393,11625,-9,11621,11620,4,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.2434,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1567.8334,2682655.8,0,0,3586.5273 -5157,6394,11626,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,7.9784021,8.3026285,6.6917062,3,0,-9,0,-9,0,-967.96936,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,50,0,15,1,0,-9,0,5.5060744,5.5060744,0,0,0,0,0,0,0,0,0,0,0,0,6.8040423,0,0,62.43,34.57,-9,-9,7,1,1,0,0,9,4,0,90,-68179.078,0,0,2266.6025 -5158,6395,11627,11628,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.530508,7.5238385,1,0,-9,40,0,-2,0,0,0,0,65,1,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6871991,7.7207098,0,3,59.200001,23.969999,57.509998,42.369999,3,1,1,0,0,9,3,1,877.5,1322302.3,0,0,1821.1592 -5158,6395,11628,11627,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,7.5817213,7.6793599,1,0,-9,40,0,2,0,0,0,0,63,2,3,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.6155133,16.175486,3,57.509998,42.369999,59.200001,23.969999,6,1,1,0,0,9,3,1,877.5,1322302.3,0,0,1821.1592 -5159,6396,11629,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,0,2,0,10.514011,10.547635,3,0,0,0,-9,0,-974.40759,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7075686,9.8506279,0,0,56.740002,44.560001,-9,-9,6,1,1,0,0,13,5,1,1073,-52882.305,0,0,20191.285 -5160,6397,11630,11631,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,1,0,0,0,0,79,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.939999,48.619999,54,46,7,1,1,0,0,2,1,0,633,128040.23,0,0,1812.1301 -5160,6397,11631,11630,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,-1,0,0,0,0,80,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,61.939999,48.619999,4,1,1,0,0,2,1,0,633,128040.23,0,0,1812.1301 -5161,6398,11632,11634,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,0,3,7.8472953,7.9880228,0,2,0,-9,12,0,1,-61.930126,0,0,0,46,2,3,1,2,2,2019,1,1,12,0,45,35,15,1,0,1,0,7.7013907,7.7013907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.41,46.950001,50.599998,51,5,1,1,0,0,9,3,0,1086.3334,231708.41,0,0,2800.8301 -5161,6398,11633,-9,11634,11632,4,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.8641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,3,0,1086.3334,231708.41,0,0,2800.8301 -5161,6398,11634,11632,-9,-9,1,1,0,46,1,0,1,0,2,-9,1,1,0,0,3,7.7444229,7.5688982,0,2,0,-9,14,0,-1,105.9515,0,0,0,47,2,3,1,3,3,2019,1,2,12,1,45,30,15,1,0,1,0,6.4590211,6.4590211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.599998,51,50.41,46.950001,2,1,1,0,0,9,3,0,1086.3334,231708.41,0,0,2800.8301 -5161,6399,11635,-9,11634,11632,3,1,0,27,2,0,1,0,1,-9,2,1,0,0,4,8.4680281,8.1633215,0,3,0,0,0,-9,0,-956.07855,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,48,46,15,1,1,-9,1,10.253436,10.253436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.4,60.82,-9,-9,6,4,2,0,0,9,4,0,213,-111784.27,0,0,2033.4347 -5162,6400,11636,-9,-9,-9,1,1,0,20,2,0,0,1,2,0,7,2,0,0,4,6.7394614,7.4859333,6.0763593,3,0,0,0,-9,0,-1055.2659,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,11,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.418488,0,0,0,41.59,61.77,-9,-9,6,1,1,0,0,10,2,0,342,-42750.156,0,0,32.335464 -5163,6401,11637,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1070.9669,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.5,24.74,-9,-9,2,1,1,1,1,6,1,0,238,149786.95,0,0,793.12561 -5164,6402,11638,11640,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,0,5,7.6585617,7.6910486,0,2,0,-9,12,0,-4,52.488064,0,0,0,41,2,4,1,2,2,2019,1,2,8,0,45,44,15,1,0,1,0,6.8341336,6.8341336,0,0,0,0,0,0,0,14.5,1,1,0,7.0512252,0,17.549557,3,54.099998,59.110001,41.060001,62.040001,5,1,1,0,1,10,3,1,556.5,67498.852,0,0,3151.4907 -5164,6402,11639,-9,11640,11638,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.86743,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,556.5,67498.852,0,0,3151.4907 -5164,6402,11640,11638,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.1151385,7.0663729,0,2,0,-9,9,0,4,-85.400139,0,0,1,37,2,5,1,2,1,2019,1,1,15,5,30,15,15,1,1,1,0,4.4817958,4.4817958,0,0,0,0,0,0,0,14.5,1,1,0,6.7328253,0,5.7002969,3,41.060001,62.040001,54.099998,59.110001,6,1,1,0,0,10,3,1,556.5,67498.852,0,0,3151.4907 -5164,6402,11641,-9,11640,11638,5,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1188.5824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,1,556.5,67498.852,0,0,3151.4907 -5165,6403,11642,11643,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,8.190877,7.6555748,1,0,-9,43,0,1,-169.00226,0,0,0,64,1,1,3,-9,-9,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8621244,0,0,57.16,56.150002,27.27,21.719999,6,1,1,0,0,1,3,1,605,1829714.8,0,0,2348.917 -5165,6403,11643,11642,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,1,5.3108592,7.1619711,7.169095,1,0,-9,43,0,-1,25.119122,0,0,0,65,1,4,3,2,2,2019,4,2,30,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0192976,0,0,27.27,21.719999,57.16,56.150002,2,1,1,0,0,1,3,1,605,1829714.8,0,0,2348.917 -5166,6404,11644,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,4,0,5.2883544,5.2550602,3,0,0,0,-9,0,-938.61517,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.868451,5.6818905,0,0,49.349998,59.639999,-9,-9,7,1,1,0,0,2,2,1,390,148611.91,0,0,930.53571 -5167,6405,11645,11646,-9,-9,1,1,0,71,1,0,0,0,2,-9,2,1,0,0,5,6.672554,8.0993214,8.0977573,1,0,-9,49,0,-4,16.724762,0,0,0,75,2,5,3,2,2,2019,2,2,6,0,8,9,15,1,0,4,0,14.242442,14.242442,0,0,0,0,0,0,0,2,1,1,0,4.2843237,7.9464307,4.3762884,3,59.43,58.049999,62.389999,56.709999,7,1,1,0,0,8,5,1,123,1789403.8,0,0,25232.672 -5167,6405,11646,11645,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,5,0,10.677496,10.672862,1,0,-9,9,0,4,-7.1502604,0,0,0,71,2,5,1,-9,-9,2019,3,1,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.55999482,9.9924393,4.5299459,3,62.389999,56.709999,59.43,58.049999,7,1,1,0,0,8,5,1,123,1789403.8,0,0,25232.672 -5168,6406,11647,11648,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,9,0,4,11.176448,0,0,0,56,2,3,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,52.16,46.150002,6,1,1,0,0,2,2,1,696,509872.25,0,0,1088.5862 -5168,6406,11648,11647,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.2759318,7.0814476,0,1,0,-9,9,0,-4,28.783596,0,0,0,60,2,5,3,-9,-9,2019,2,1,10,0,16,16,15,1,0,4,0,8.613246,8.613246,0,0,0,0,0,0,0,2,0,0,0,.27541813,0,0,3,52.16,46.150002,54.099998,59.110001,6,1,1,0,0,2,2,1,696,509872.25,0,0,1088.5862 -5169,6407,11649,11650,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,8.3331623,8.4532413,0,1,0,-9,34,0,-1,47.840801,0,0,0,57,2,5,1,2,2,2019,1,1,25,12,35,41,15,1,1,1,0,15.683033,15.683033,0,0,0,0,0,0,0,0,0,0,0,6.7971845,0,0,0,27.530001,54.099998,57.060001,57.759998,1,1,1,0,0,4,4,1,825.5,536175.75,0,0,3065.8669 -5169,6407,11650,11649,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,5,7.7837405,8.0385714,0,1,0,-9,34,0,1,-148.96048,0,0,0,56,2,2,1,3,2,2019,1,2,6,0,40,1,15,1,0,1,0,6.0030565,6.0030565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,27.530001,54.099998,6,1,1,0,0,4,4,1,825.5,536175.75,0,0,3065.8669 -5169,6408,11651,-9,11649,11650,3,1,0,23,2,0,0,0,1,-9,1,1,0,0,4,7.6087008,7.9931073,0,3,0,0,0,-9,0,-953.0365,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,25,15,1,0,-9,1,6.097939,6.097939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,-9,-9,6,1,1,0,0,4,4,1,798,83493.531,0,0,1218.1691 -5170,6409,11652,-9,-9,-9,3,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,7.2012925,6.9817319,0,3,0,0,0,-9,0,-981.92651,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,41,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.18,56.790001,-9,-9,5,3,4,0,0,8,3,0,284,89534.398,0,0,-50.981625 -5171,6410,11653,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,5,0,6.4524126,6.9334154,3,0,0,0,-9,0,-1022.2429,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3929782,6.6341033,0,3,35.490002,59.299999,-9,-9,6,1,1,0,1,9,2,1,100,-32525.885,0,0,922.29694 -5171,6411,11654,-9,11653,-9,2,1,1,36,2,0,0,0,2,-9,2,1,0,0,3,9.3739319,9.4088411,0,3,0,0,0,-9,0,-1042.8613,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,68,67,15,1,0,-9,1,15.985637,15.985637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.209999,34.509998,-9,-9,3,1,1,0,1,9,5,1,345,2001524.5,0,0,3509.7463 -5172,6412,11655,11656,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,3,8.7317848,8.4973049,0,2,0,-9,15,0,1,-44.87249,0,0,0,43,1,3,1,2,2,2019,1,1,12,1,35,35,15,1,0,1,0,20.805975,20.805975,0,0,0,0,0,0,0,0,1,1,0,1.7615763,0,0,0,42.869999,53.119999,39.099998,57.790001,5,1,1,0,0,8,4,1,982,437638.88,0,0,3095.9585 -5172,6412,11656,11655,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,7.6984367,7.7721086,0,2,0,-9,15,0,-1,200.81311,0,0,1,44,1,3,1,3,3,2019,1,2,14,2,26,28,15,1,0,1,0,11.755295,11.755295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,39.099998,57.790001,42.869999,53.119999,6,1,1,0,0,8,4,1,982,437638.88,0,0,3095.9585 -5172,6412,11657,-9,11656,11655,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.83557,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,4,1,982,437638.88,0,0,3095.9585 -5172,6412,11658,-9,11656,11655,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.4867,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,4,1,982,437638.88,0,0,3095.9585 -5173,6413,11659,11660,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,9.2437572,8.995079,0,1,0,-9,28,0,2,133.3914,0,0,0,51,2,2,1,2,-9,2019,1,1,14,2,35,40,15,1,0,1,0,33.840107,33.840107,0,0,0,0,0,0,0,0,0,0,0,3.7469501,0,0,0,48.349998,50.73,13.09,57.490002,5,1,1,0,0,10,5,1,1214,1353690.3,0,0,5610.7153 -5173,6413,11660,11659,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.4009285,9.0780325,0,1,0,-9,28,0,-2,124.62959,0,0,0,53,2,3,1,2,2,2019,1,2,29,12,50,45,15,1,1,1,0,21.299627,21.299627,0,0,0,0,0,0,0,2,0,0,0,0,0,2.2027926,3,13.09,57.490002,48.349998,50.73,3,1,1,0,0,10,5,1,1214,1353690.3,0,0,5610.7153 -5173,6414,11661,-9,11659,11660,3,1,1,23,2,0,0,0,2,0,7,2,0,0,4,0,6.5143924,6.4248023,3,0,0,0,-9,0,-1052.355,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3005157,0,0,0,34.830002,60.66,-9,-9,5,1,1,0,0,10,2,1,629,-173580.2,0,0,-727.35199 -5173,6415,11662,-9,11659,11660,4,1,0,22,2,0,0,1,2,0,7,2,0,0,5,6.0815506,8.2225475,8.2888088,3,0,0,0,-9,0,-937.20288,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2210264,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,10,4,1,318,-2847.9568,0,0,778.0799 -5174,6416,11663,-9,11665,11666,3,1,1,17,2,0,0,0,2,-9,11,3,0,0,4,0,0,0,1,0,0,0,-9,0,-935.49133,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,2,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.779999,-9,-9,7,1,1,0,0,11,5,1,738,929175.88,0,0,3451.0806 -5174,6416,11664,-9,11665,11666,4,1,1,16,2,0,0,1,3,-9,7,2,0,0,4,5.0066495,4.827754,0,1,0,0,0,-9,0,-959.13428,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,9,1,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,5,1,738,929175.88,0,0,3451.0806 -5174,6416,11665,11666,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,7.9486589,7.9381652,0,1,0,-9,22,0,-1,63.397919,0,0,0,54,3,3,1,3,3,2019,1,2,13,2,28,27,15,1,0,1,0,10.462375,10.462375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.830002,55.130001,53.639999,48.41,5,1,1,0,0,11,5,1,738,929175.88,0,0,3451.0806 -5174,6416,11666,11665,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,8.7005749,8.7061663,0,1,0,-9,22,0,1,84.264175,0,0,0,53,1,3,1,3,3,2019,1,1,9,1,62,44,15,1,0,1,0,10.749242,10.749242,0,0,0,0,0,0,0,0,1,1,0,4.2810979,0,0,0,53.639999,48.41,44.830002,55.130001,6,1,1,0,0,11,5,1,738,929175.88,0,0,3451.0806 -5175,6417,11667,11668,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,7.0224442,7.2223978,0,1,0,-9,4,0,-4,-105.25269,0,1,1,31,2,4,1,-9,-9,2019,1,1,6,0,24,22,15,1,0,1,0,5.5925703,5.5925703,0,0,0,0,0,0,0,0,1,1,0,6.9624062,0,0,0,63.240002,42.389999,61.119999,51.57,7,1,1,0,0,7,3,0,447,-25830.375,0,0,554.43127 -5175,6417,11668,11667,-9,-9,1,1,1,31,1,0,0,0,2,-9,1,1,0,0,4,6.8452849,6.7464275,0,1,0,-9,4,0,4,101.99883,0,0,0,27,1,4,1,1,1,2019,1,2,5,0,37,35,15,1,0,1,0,2.8424165,2.8424165,0,0,0,0,0,0,0,0,1,1,0,1.5424483,0,0,0,61.119999,51.57,63.240002,42.389999,6,1,1,0,0,7,3,0,447,-25830.375,0,0,554.43127 -5176,6418,11669,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-997.40454,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.82,50.959999,-9,-9,4,1,1,0,0,2,1,0,203,93306.188,0,0,661.06335 -5177,6419,11670,11671,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,1,1,8.5848312,8.6483116,0,1,0,-9,7,0,-2,39.515648,0,0,0,50,2,4,1,2,2,2019,1,2,20,9,40,40,15,1,1,1,0,16.181522,16.181522,0,0,0,0,0,0,0,2,1,1,0,0,0,4.8895917,3,52.639999,12.57,30.620001,49.209999,2,1,1,0,1,10,4,1,327,313428.81,0,0,2392.9993 -5177,6419,11671,11670,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,7.6435342,7.5607057,0,1,0,-9,7,0,2,41.077934,0,0,0,48,1,1,1,-9,-9,2019,1,1,17,5,46,50,15,1,1,1,0,5.9455671,5.9455671,0,0,0,0,0,0,0,7,1,1,0,0,0,11.750448,1,30.620001,49.209999,52.639999,12.57,5,1,1,0,0,10,4,1,327,313428.81,0,0,2392.9993 -5178,6420,11672,-9,-9,-9,1,1,0,35,2,0,2,0,3,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1013.0848,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,53.93,-9,-9,2,1,1,0,0,5,1,0,983,10327.406,0,0,1880.5245 -5178,6420,11673,-9,11672,-9,2,1,0,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-919.83179,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.369999,57.279999,-9,-9,7,1,1,0,0,5,1,0,983,10327.406,0,0,1880.5245 -5178,6420,11674,-9,11672,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1030.5408,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,1,0,983,10327.406,0,0,1880.5245 -5179,6421,11675,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,2,0,7.5296469,7.4477634,3,0,0,0,-9,0,-956.30206,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6751194,7.6965928,0,0,57.73,36.130001,-9,-9,6,1,1,0,0,12,3,1,3092,8649.4326,0,0,1084.4407 -5180,6422,11676,11677,-9,-9,1,1,1,56,1,1,2,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,33,0,6,0,-9,0,0,50,3,2,3,3,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,25.34511,1,37.130001,42.669998,37.07,33.43,4,2,3,1,1,2,1,0,285.66666,224682.33,0,0,3821.2161 -5180,6422,11677,11676,-9,-9,2,1,0,50,1,1,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,33,0,-6,0,0,0,0,56,3,2,3,3,3,2019,4,1,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.07,33.43,37.130001,42.669998,3,2,3,0,1,2,1,0,285.66666,224682.33,0,0,3821.2161 -5180,6422,11678,-9,11677,11676,5,1,1,16,2,1,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.42322,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.130001,53.529999,-9,-9,6,2,3,0,1,2,1,0,285.66666,224682.33,0,0,3821.2161 -5180,6423,11679,11680,11677,11676,3,1,1,24,1,1,2,0,2,-9,3,3,0,1,4,0,0,0,2,0,-9,2,0,2,28.437929,0,1,0,22,2,3,1,3,3,2019,3,6,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,34.476971,3,47.240002,45.68,50.529999,50.080002,5,2,3,1,0,2,2,0,412.33334,-43698.082,0,0,965.65649 -5180,6423,11680,11679,-9,-9,6,1,0,22,1,1,2,0,2,-9,2,1,0,0,3,6.3127055,6.4228859,0,2,0,-9,2,0,-2,89.843277,0,1,1,24,2,4,3,-9,-9,2019,2,3,11,1,10,10,15,1,0,3,0,8.272912,8.272912,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.529999,50.080002,47.240002,45.68,7,2,3,0,0,2,2,0,412.33334,-43698.082,0,0,965.65649 -5180,6423,11681,-9,11680,11679,7,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.61432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,2,3,0,0,2,2,0,412.33334,-43698.082,0,0,965.65649 -5181,6424,11682,11683,-9,-9,2,1,0,64,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,44,0,-3,0,0,0,0,67,3,1,3,3,2,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.74838,1,60.290001,52.110001,45.720001,15.87,7,2,3,0,1,7,1,1,1035,-96995.758,0,0,1142.924 -5181,6424,11683,11682,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,44,0,3,0,0,0,0,64,3,3,3,3,3,2019,4,2,29,10,0,0,15,4,1,3,0,0,0,1,0,123.54803,0,0,0,0,0,1,1,0,0,0,0,0,45.720001,15.87,60.290001,52.110001,2,2,3,0,1,7,1,1,1035,-96995.758,0,0,1142.924 -5182,6425,11684,-9,11686,11685,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.8154,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,260.33334,410819.66,0,0,2827.7683 -5182,6425,11685,11686,-9,-9,2,1,1,40,1,1,1,0,2,-9,2,1,0,0,4,8.669075,8.8749981,0,2,0,-9,3,0,7,-10.464724,0,0,0,33,2,3,1,-9,-9,2019,1,1,6,0,45,45,15,1,0,1,0,12.676122,12.676122,0,0,0,0,0,0,0,0,1,1,0,4.37357,0,0,0,66.050003,43.880001,38.82,51.259998,7,1,1,0,0,2,4,1,260.33334,410819.66,0,0,2827.7683 -5182,6425,11686,11685,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,1,3,6.0396552,6.2365909,0,2,0,-9,3,0,-7,-85.203491,0,0,1,40,2,4,1,2,2,2019,1,2,12,2,9,0,15,1,0,1,0,6.5918355,6.5918355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,51.259998,66.050003,43.880001,6,1,1,0,0,2,4,1,260.33334,410819.66,0,0,2827.7683 -5183,6426,11687,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,0,5,9.175499,9.3831062,0,3,0,0,0,-9,0,-993.88953,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,42,54,15,1,0,-9,0,30.822115,30.822115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.509998,60.68,-9,-9,7,4,2,0,0,8,5,1,364,590136.06,0,0,3306.6814 -5184,6427,11688,11689,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,3,9.0806551,8.7088642,0,1,0,-9,10,0,1,53.824993,0,0,0,56,2,2,1,2,2,2019,1,2,8,0,42,38,15,1,0,1,0,19.835674,19.835674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.279999,51.349998,53.700001,33.470001,4,1,1,0,0,11,5,1,360.5,134385.98,0,0,2164.1296 -5184,6427,11689,11688,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,6.4183726,6.5282531,0,1,0,-9,10,0,-1,95.242798,0,0,0,57,1,3,1,3,2,2019,1,1,9,0,16,0,15,1,0,1,0,5.5939279,5.5939279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.700001,33.470001,50.279999,51.349998,5,1,1,0,0,11,5,1,360.5,134385.98,0,0,2164.1296 -5185,6428,11690,11691,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.262012,7.2762599,0,1,0,-9,7,0,0,-101.17578,0,0,0,61,2,5,1,-9,2,2019,1,1,21,10,15,15,15,1,1,1,0,12.706838,12.706838,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.315154,3,31.98,51.650002,48.77,60.16,3,1,1,0,0,12,4,1,582.5,572583.88,0,0,2138.3638 -5185,6428,11691,11690,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,5,8.6703711,8.6649981,0,1,0,-9,7,0,0,54.719997,0,0,0,61,2,3,1,2,2,2019,1,2,11,0,37,37,15,1,0,1,0,14.700601,14.700601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,31.98,51.650002,6,1,1,0,0,12,4,1,582.5,572583.88,0,0,2138.3638 -5186,6429,11692,11693,-9,-9,2,1,1,59,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,25,0,7,-54.767117,0,0,0,52,2,3,1,3,2,2019,3,1,27,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.959999,26.57,60.689999,50.509998,1,1,1,1,1,1,2,0,400.5,125449.77,0,0,1534.4761 -5186,6429,11693,11692,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.7800651,7.1893497,0,1,0,-9,25,0,-7,-10.171684,0,0,0,59,2,1,3,2,2,2019,2,2,8,0,30,30,15,1,0,3,0,7.0001884,7.0001884,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,60.689999,50.509998,36.959999,26.57,6,1,1,0,0,1,2,0,400.5,125449.77,0,0,1534.4761 -5187,6430,11694,11695,-9,-9,3,1,0,26,1,0,0,0,1,-9,2,1,0,0,3,7.3875008,7.2549472,0,1,0,-9,3,0,1,30.581087,0,1,1,25,1,4,1,-9,-9,2019,1,2,8,0,25,30,15,1,0,1,0,6.7367172,6.7367172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.720001,60.209999,30.77,64.339996,5,1,1,0,0,11,3,0,768,10781.964,0,0,1746.8247 -5187,6430,11695,11694,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,4,7.450984,7.6972542,0,1,0,-9,3,0,-1,-3.9337656,0,1,0,26,1,3,1,-9,-9,2019,1,3,22,10,28,30,15,1,1,1,0,7.8443737,7.8443737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.339996,33.720001,60.209999,3,1,1,0,0,11,3,0,768,10781.964,0,0,1746.8247 -5187,6431,11696,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,5,7.3836093,7.5404291,0,3,0,0,0,-9,0,-1010.7003,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,30,30,15,1,0,-9,0,5.7390633,5.7390633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,11,3,0,2281,223257.44,0,0,1138.8149 -5188,6432,11697,11698,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,0,3,0,8.1411753,7.9769187,1,0,-9,40,0,2,111.81374,0,0,0,56,2,5,1,2,1,2019,3,1,11,2,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5330009,8.197051,0,0,52.990002,51.279999,57.060001,57.759998,6,1,1,0,0,9,5,1,1947,1245674.8,0,0,3488.3979 -5188,6432,11698,11697,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,8.3752155,8.4400644,0,1,0,-9,40,0,-2,.74028277,0,0,0,58,2,3,3,2,2,2019,2,2,6,0,30,30,15,1,0,4,0,14.936823,14.936823,0,0,0,0,0,0,0,0,0,0,0,3.7337029,0,0,0,57.060001,57.759998,52.990002,51.279999,6,1,1,0,0,9,5,1,1947,1245674.8,0,0,3488.3979 -5189,6433,11699,11700,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-1,-34.67683,0,0,0,72,2,3,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.639091,0,0,0,69.470001,23.780001,55.360001,51.57,7,1,1,0,0,7,2,1,1351.5,603053.13,0,0,2031.4449 -5189,6433,11700,11699,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.631145,7.5777564,1,0,-9,51,0,1,19.137405,0,0,0,71,3,2,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3919859,7.3312111,0,1,55.360001,51.57,69.470001,23.780001,6,1,1,0,0,7,2,1,1351.5,603053.13,0,0,2031.4449 -5190,6434,11701,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,2,1,0,0,4,7.8677187,7.8716941,0,3,0,0,0,-9,0,-1090.4879,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,38,15,1,0,-9,0,7.4831481,7.4831481,0,0,0,0,0,0,0,2,0,0,0,.86109942,0,10.637158,3,57.16,56.150002,-9,-9,5,1,1,0,0,7,4,1,412,658057.06,0,0,1852.9325 -5191,6435,11702,11703,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,9.0260344,8.5254288,0,1,0,-9,6,0,2,-65.017296,0,0,0,28,1,5,1,2,1,2019,1,2,6,0,38,41,15,1,0,1,0,15.844518,15.844518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,57.060001,57.759998,6,1,1,0,0,4,5,1,738,222299,0,0,3965.6692 -5191,6435,11703,11702,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,5,8.0633259,8.31106,0,1,0,-9,6,0,-2,-49.502804,0,1,1,30,1,5,1,-9,-9,2019,1,1,6,0,35,35,15,1,0,1,0,12.323964,12.323964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54.689999,57.470001,6,1,1,0,0,4,5,1,738,222299,0,0,3965.6692 -5192,6436,11704,11705,-9,-9,1,1,1,67,1,0,0,0,3,-9,1,1,0,0,3,7.4906788,7.3370385,0,1,0,-9,44,0,3,5.0413547,0,0,0,64,2,4,3,2,2,2019,2,2,8,0,55,0,15,1,0,3,0,2.7679744,2.7679744,1,0,6.3077259,0,0,0,0,0,1,1,0,.9385469,0,0,0,58.32,50.220001,57.16,56.150002,2,1,1,0,0,10,2,1,368,117427.55,0,0,2113.593 -5192,6436,11705,11704,-9,-9,2,1,0,64,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,44,0,-3,.80866909,0,0,0,67,3,3,1,2,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.45235306,0,11.955502,3,57.16,56.150002,58.32,50.220001,6,1,1,0,0,10,2,1,368,117427.55,0,0,2113.593 -5193,6437,11706,11707,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.3586192,5.9160633,1,0,-9,48,0,0,-75.179901,0,0,0,72,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5168428,5.3577938,0,0,56.610001,49.68,43.48,60.970001,4,1,1,0,0,10,4,1,502.5,2156498.5,0,0,4053.9097 -5193,6437,11707,11706,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,8.3333397,8.4255104,1,0,-9,48,0,0,-20.880505,0,0,0,72,2,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9973207,8.2002068,0,0,43.48,60.970001,56.610001,49.68,6,1,1,0,0,10,4,1,502.5,2156498.5,0,0,4053.9097 -5194,6438,11708,-9,11710,-9,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1043.173,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,1,1185.6,34652.441,0,0,2528.6299 -5194,6438,11709,-9,11710,-9,4,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-935.35168,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,1,1185.6,34652.441,0,0,2528.6299 -5194,6438,11710,-9,-9,-9,1,1,0,40,3,0,4,0,2,-9,2,1,0,0,3,7.6304321,7.6147375,0,4,0,0,0,-9,0,-1041.8658,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,19,17,15,1,0,-9,0,14.418961,14.418961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.779999,-9,-9,6,1,1,0,0,2,2,1,1185.6,34652.441,0,0,2528.6299 -5194,6438,11711,-9,11710,-9,3,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-991.76593,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,1,1185.6,34652.441,0,0,2528.6299 -5194,6438,11712,-9,11710,-9,2,1,1,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-930.74329,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,1,1185.6,34652.441,0,0,2528.6299 -5195,6439,11713,11714,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-3,38.182171,0,0,0,78,1,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2599642,0,0,0,54.720001,43.669998,54.369999,54.799999,6,1,1,0,0,1,3,1,1381.5,822176.44,0,0,2879.7454 -5195,6439,11714,11713,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,8.2242327,8.0892067,1,0,-9,55,0,3,34.37973,0,0,0,75,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2886496,8.1654205,0,0,54.369999,54.799999,54.720001,43.669998,6,1,1,0,0,1,3,1,1381.5,822176.44,0,0,2879.7454 -5196,6440,11715,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,6,3,0,0,3,0,8.090292,8.2126245,3,0,0,0,-9,0,-1005.5595,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3559029,8.1836052,0,0,48.220001,34.779999,-9,-9,7,2,3,0,0,11,3,1,231,791410.56,0,0,1505.1022 -5197,6441,11716,11717,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,4.7778335,5.1333346,1,0,-9,53,0,0,-75.357422,0,0,0,78,3,1,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0869808,4.7001357,6.1696219,1,56.5,48.330002,41.43,24.559999,6,1,1,0,0,2,2,1,865.5,886928.75,0,0,-425.29614 -5197,6441,11717,11716,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,52,0,0,15.963196,0,0,0,78,1,3,3,-9,-9,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,24.559999,56.5,48.330002,3,1,1,0,0,2,2,1,865.5,886928.75,0,0,-425.29614 -5198,6442,11718,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,2,0,5.940002,5.8119788,3,0,0,0,-9,0,-931.54333,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7446465,0,0,36.869999,37.369999,-9,-9,6,2,3,0,0,6,2,1,147,105378.28,0,0,-94.159866 -5199,6443,11719,-9,11720,11721,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1165.0631,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,275,559740.56,0,0,3243.8142 -5199,6443,11720,11721,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.0943775,8.2723351,0,2,0,-9,11,0,-5,5.9230876,0,0,0,50,2,3,1,3,3,2019,1,2,6,0,50,56,15,1,0,1,0,9.2088881,9.2088881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,46.790001,41.889999,6,1,1,0,0,8,5,1,275,559740.56,0,0,3243.8142 -5199,6443,11721,11720,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.6592665,8.876214,0,2,0,-9,11,0,5,-107.09174,0,0,0,45,2,4,1,-9,-9,2019,1,1,10,0,40,28,15,1,0,1,0,14.066636,14.066636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.790001,41.889999,62.490002,55.09,6,1,1,0,0,8,5,1,275,559740.56,0,0,3243.8142 -5200,6444,11722,-9,-9,-9,1,1,0,76,2,0,0,0,1,-9,4,3,0,1,2,0,8.3307419,8.2420473,3,0,0,0,-9,0,-1179.0283,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9731002,8.3433218,0,0,23.52,27.15,-9,-9,3,1,1,0,0,10,4,1,1115,626341.44,0,0,1791.5522 -5201,6445,11723,-9,-9,-9,1,1,0,36,3,1,1,0,1,-9,2,1,0,0,3,8.3960819,8.4191685,0,4,0,0,0,-9,0,-952.4765,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,1,30,40,15,1,0,-9,0,20.820047,20.820047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.279999,50.369999,-9,-9,2,1,1,0,0,13,4,1,346,229854.13,0,0,1134.0989 -5201,6445,11724,-9,11723,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-990.50562,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,346,229854.13,0,0,1134.0989 -5202,6446,11725,11726,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,5,-20.262691,0,0,0,73,2,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,52.82,51.259998,6,1,1,0,0,11,2,1,1204.5,865213.75,0,0,2996.0134 -5202,6446,11726,11725,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.7254615,7.4350176,1,0,-9,6,0,-5,-68.394646,0,0,0,78,3,3,3,3,3,2019,4,1,17,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.5073736,7.6141458,126.21422,1,52.82,51.259998,54,46,4,1,1,0,0,11,2,1,1204.5,865213.75,0,0,2996.0134 -5203,6447,11727,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1199.4677,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,7.5582628,0,0,0,0,51.016727,0,1,1,0,0,0,0,0,39.619999,40.759998,-9,-9,4,1,1,0,0,7,1,0,435,456348.09,0,0,861.33777 -5204,6448,11728,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,4,8.1704264,7.9831362,0,3,0,0,0,-9,0,-995.21539,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,37,15,1,0,-9,0,11.597872,11.597872,0,0,0,0,0,0,0,0,1,1,0,3.1441586,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,2,4,1,661,289045.91,0,0,2302.7339 -5205,6449,11729,11730,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,61,0,-5,21.296377,0,0,0,87,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,9.5540752,0,0,0,0,0,1,1,0,.9316166,0,0,0,45.419998,32.369999,53.459999,44.669998,6,1,1,0,0,7,2,1,662,444801.5,0,0,2449.8354 -5205,6449,11730,11729,-9,-9,2,1,1,87,1,0,0,0,3,-9,4,3,0,0,2,0,7.6291609,7.5569263,1,0,-9,61,0,5,35.144604,0,0,0,82,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4043078,0,0,53.459999,44.669998,45.419998,32.369999,6,1,1,0,0,7,2,1,662,444801.5,0,0,2449.8354 -5206,6450,11731,11732,-9,-9,1,1,0,34,1,0,4,0,2,-9,2,1,0,1,3,6.2595544,6.2243142,0,2,0,-9,3,0,-2,-19.038349,0,0,1,36,2,4,1,2,2,2019,1,6,15,3,10,10,15,1,0,1,0,6.3326159,6.3326159,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.905098,3,48.700001,56.220001,49.389999,52.759998,4,1,1,0,0,4,2,0,524.33331,101806.09,0,0,2392.6306 -5206,6450,11732,11731,-9,-9,6,1,1,36,1,0,4,0,2,-9,2,1,0,0,4,7.3949828,7.5412903,0,2,0,-9,3,0,2,-63.279896,0,0,0,34,2,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,5.7811427,5.7811427,0,0,0,0,0,0,0,42,1,1,0,0,0,39.398003,3,49.389999,52.759998,48.700001,56.220001,5,1,1,0,0,4,2,0,524.33331,101806.09,0,0,2392.6306 -5206,6450,11733,-9,11731,11732,4,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.4602,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,524.33331,101806.09,0,0,2392.6306 -5206,6450,11734,-9,11731,11732,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.72479,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,2,0,524.33331,101806.09,0,0,2392.6306 -5206,6450,11735,-9,11731,-9,3,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.0964,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,4,2,0,524.33331,101806.09,0,0,2392.6306 -5206,6450,11736,-9,11731,-9,2,1,0,14,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-868.67865,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,4,2,0,524.33331,101806.09,0,0,2392.6306 -5207,6451,11737,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-927.57025,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.599998,14.63,-9,-9,3,1,1,0,0,2,1,1,1645,-27133.893,0,0,982.47406 -5208,6452,11738,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,8.276288,8.6587715,0,3,0,0,0,-9,0,-1067.0537,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,74,15,1,0,-9,0,15.065428,15.065428,0,0,0,0,0,0,0,0,0,0,0,4.7236476,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,5,1,1476,376605.13,0,0,1994.6781 -5209,6453,11739,-9,-9,-9,1,1,0,18,2,0,0,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1176.6963,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.969999,56.540001,-9,-9,4,1,1,0,1,7,1,0,637,-92246.445,0,0,364.38492 -5210,6454,11740,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,5,0,7.722775,7.5437059,3,0,0,0,-9,0,-885.21313,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5989857,7.6047859,0,0,49.25,61.25,-9,-9,5,1,1,0,0,9,3,1,1255,247846.78,0,0,1606.2286 -5211,6455,11741,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,4,0,4.5483136,4.660018,3,0,0,0,-9,0,-1106.9618,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6745429,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,1,1,619,-43343.832,0,0,2049.7871 -5212,6456,11742,-9,-9,-9,1,1,0,38,2,0,1,0,3,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-990.40326,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,3,4,1,0,2,1,0,968.5,35075.613,0,0,1237.0894 -5212,6456,11743,-9,11742,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.3148,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,2,1,0,968.5,35075.613,0,0,1237.0894 -5213,6457,11744,11745,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,7.3660293,7.4208083,0,2,0,-9,8,0,-5,146.17096,0,0,1,43,1,1,1,2,3,2019,1,1,8,1,17,19,15,1,0,1,0,10.173226,10.173226,0,0,0,0,0,0,0,0,0,0,0,7.3834491,0,0,0,58.84,39.23,43.02,42.860001,6,1,1,0,0,5,5,1,1118,461710.28,0,0,8093.8833 -5213,6457,11745,11744,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,1,9.7276525,9.6501837,0,2,0,-9,8,0,5,-18.876783,0,0,0,38,1,3,1,2,2,2019,1,2,21,7,57,48,15,1,1,1,0,34.774666,34.774666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,42.860001,58.84,39.23,3,1,1,0,0,5,5,1,1118,461710.28,0,0,8093.8833 -5213,6457,11746,-9,11744,11745,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1084.8557,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,5,5,1,1118,461710.28,0,0,8093.8833 -5213,6457,11747,-9,11744,11745,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.8387,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,5,1,1118,461710.28,0,0,8093.8833 -5214,6458,11748,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,4,0,7.8065405,7.3859739,3,0,0,0,-9,0,-949.08954,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.7735944,.12623714,3,38.419998,51.049999,-9,-9,6,1,1,0,0,11,3,1,413,875788.13,0,0,3096.1724 -5215,6459,11749,11750,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,4,7.7946515,8.1030626,5.4685702,1,0,-9,45,0,1,-8.8836164,0,0,0,63,3,3,1,3,-9,2019,1,2,10,0,37,42,15,1,0,1,0,8.3190365,8.3190365,0,0,0,0,0,0,0,0,1,1,0,2.2072966,5.4553666,0,0,46.389999,60.990002,58.82,39.119999,6,1,1,0,0,5,5,1,467,373740.75,0,0,3369.7388 -5215,6459,11750,11749,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,0,3,7.6890197,8.2547894,8.0268812,1,0,-9,45,0,-1,23.935461,0,0,0,64,2,4,1,3,3,2019,1,1,11,2,30,30,15,1,0,1,0,6.9471021,6.9471021,0,0,0,0,0,0,0,0,1,1,0,1.982718,7.9423604,0,0,58.82,39.119999,46.389999,60.990002,6,1,1,0,0,5,5,1,467,373740.75,0,0,3369.7388 -5216,6460,11751,11752,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,8.0316267,7.8742929,0,1,0,-9,17,0,8,48.556808,0,0,0,38,1,4,1,2,2,2019,1,2,13,1,36,37,15,1,0,1,0,10.138719,10.138719,0,0,0,0,0,0,0,0,0,0,0,1.808549,0,0,0,39.049999,57.880001,44.830002,56.689999,5,1,1,0,0,2,5,1,296,937404.25,0,0,4520.9663 -5216,6460,11752,11751,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,0,4,8.5707369,9.0272722,0,1,0,-9,17,0,-8,-85.905067,0,0,1,46,1,4,1,2,2,2019,1,1,22,11,43,40,15,1,1,1,0,21.564342,21.564342,0,0,0,0,0,0,0,0,0,0,0,.81667745,0,0,0,44.830002,56.689999,39.049999,57.880001,5,1,1,0,0,2,5,1,296,937404.25,0,0,4520.9663 -5217,6461,11753,11754,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,3,7.9755564,7.5773325,0,1,0,-9,31,0,-5,126.91446,0,0,0,57,2,3,1,3,-9,2019,1,2,8,0,32,34,15,1,0,1,0,8.6860962,8.6860962,0,0,0,0,0,0,0,7,0,0,0,5.4014387,0,.04735494,3,58.75,37.869999,37.169998,47.900002,5,1,1,0,0,6,5,1,623.5,477806.31,0,0,3380.3928 -5217,6461,11754,11753,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.9076672,8.759469,0,1,0,-9,31,0,5,-16.917059,0,0,0,52,3,3,1,3,3,2019,1,1,12,0,52,48,15,1,0,1,0,14.163979,14.163979,0,0,0,0,0,0,0,2,0,0,0,0,0,4.2819614,3,37.169998,47.900002,58.75,37.869999,5,1,1,0,0,6,5,1,623.5,477806.31,0,0,3380.3928 -5218,6462,11755,11757,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,0,4,7.388967,7.1477394,0,2,0,-9,19,0,-3,-106.30686,0,0,1,39,2,4,1,2,2,2019,1,2,9,0,15,14,15,1,0,1,0,10.156966,10.156966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.82,53.970001,6,1,1,0,0,1,4,1,691.33331,45803.719,0,0,1919.5636 -5218,6462,11756,-9,11755,11757,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.99524,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,1,4,1,691.33331,45803.719,0,0,1919.5636 -5218,6462,11757,11755,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,0,4,8.6089611,8.2050476,0,2,0,-9,17,0,3,6.7058449,0,0,0,36,2,4,1,2,2,2019,1,1,14,2,44,44,15,1,0,1,0,11.637143,11.637143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,51.830002,57.200001,4,1,1,0,0,1,4,1,691.33331,45803.719,0,0,1919.5636 -5219,6463,11758,-9,-9,-9,1,1,0,32,3,0,1,0,2,-9,2,1,0,0,4,6.9575939,6.6552291,0,4,0,0,0,-9,0,-1032.9061,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,16,16,15,1,0,-9,0,8.7462301,8.7462301,0,0,0,0,0,0,0,71.5,1,0,1,0,0,72.235329,3,52.080002,55.93,-9,-9,5,1,1,0,1,13,2,0,552,91488.859,0,0,1119.1893 -5220,6464,11759,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,2,1,0,0,5,7.8328652,8.0373602,5.833045,4,0,0,0,-9,0,-1091.8795,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,34,28,15,1,0,-9,0,10.256246,10.256246,0,0,0,0,0,0,0,0,1,0,1,6.1112247,0,0,0,48.18,61.799999,-9,-9,7,1,1,0,0,9,3,1,461.5,16516.098,0,0,2508.856 -5220,6464,11760,-9,11759,-9,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,4.8909111,4.5615888,4,0,0,0,-9,0,-982.57733,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.2602863,0,0,0,49.34,53.349998,-9,-9,6,1,1,0,1,9,3,1,461.5,16516.098,0,0,2508.856 -5220,6465,11761,-9,11759,-9,2,1,0,19,2,0,1,0,2,-9,7,2,0,0,3,7.0215521,7.1113243,0,3,0,0,0,-9,0,-1051.073,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,18,10,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,9,2,1,752,-51252.316,0,0,1737.8712 -5221,6466,11762,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,0,3,0,6.1801314,6.1821313,3,0,0,0,-9,0,-1003.8408,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,1.9269373,0,0,3.0252435,0,23.114349,0,1,1,0,0,6.0343256,0,0,43.099998,36.84,-9,-9,2,1,1,0,0,10,2,1,962,741394.63,0,0,1010.7034 -5222,6467,11763,11764,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,8.285593,8.1293879,0,1,0,-9,8,0,11,31.623014,0,0,0,49,2,4,1,3,2,2019,1,2,7,0,32,37,15,1,0,1,0,11.531275,11.531275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,40.709999,62.41,6,1,1,0,0,5,5,1,731.5,66057.641,0,0,3889.3154 -5222,6467,11764,11763,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.4536085,8.1431856,0,1,0,-9,8,0,-11,231.98672,0,0,0,60,3,3,1,2,2,2019,1,1,5,0,40,0,15,1,0,1,0,18.841181,18.841181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.709999,62.41,55.959999,49.93,7,1,1,0,0,5,5,1,731.5,66057.641,0,0,3889.3154 -5223,6468,11765,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,1,0,6.4052906,6.2467332,3,0,0,0,-9,0,-1017.8977,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9799833,6.1620784,0,0,30,25.700001,-9,-9,4,1,1,0,0,12,2,0,505,-86481.594,0,0,1780.3479 -5224,6469,11766,11767,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.5326805,8.8260365,0,1,0,-9,3,0,4,-100.77592,0,0,0,31,1,4,1,-9,-9,2019,1,1,12,0,35,35,15,1,0,1,0,22.183632,22.183632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,2,5,1,497.5,256282.77,0,0,3614.1855 -5224,6469,11767,11766,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,7.9686313,8.2865095,0,1,0,-9,3,0,-4,-57.602901,0,0,1,35,1,4,1,2,2,2019,1,2,6,0,37,35,15,1,0,1,0,10.453284,10.453284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,7,1,1,0,0,2,5,1,497.5,256282.77,0,0,3614.1855 -5225,6470,11768,11769,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.8446712,8.3850212,0,1,0,-9,27,0,-6,-57.882534,0,0,0,52,2,2,1,2,3,2019,1,1,17,6,35,35,15,1,1,1,0,10.087295,10.087295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.299999,63.25,51.419998,29.35,6,1,1,0,0,11,5,1,1345,1460298.5,0,0,4639.4185 -5225,6470,11769,11768,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,2,8.9815483,8.6951313,0,1,0,-9,27,0,6,-28.444561,0,0,0,46,2,4,1,3,3,2019,1,2,12,3,40,40,15,1,0,1,0,24.451778,24.451778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.419998,29.35,30.299999,63.25,5,1,1,0,0,11,5,1,1345,1460298.5,0,0,4639.4185 -5225,6471,11770,-9,11768,11769,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,7.8996267,7.8437667,0,3,0,0,0,-9,0,-1003.0979,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,40,15,1,0,-9,1,6.7945457,6.7945457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.880001,-9,-9,6,1,1,0,0,11,3,1,146,412.95538,0,0,1581.7825 -5225,6472,11771,-9,11768,11769,4,1,1,20,2,0,0,0,3,-9,2,1,0,0,4,8.2372732,7.9033508,0,3,0,0,0,-9,0,-981.06488,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,45,15,1,0,-9,1,12.727324,12.727324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,11,4,1,125,37985.445,0,0,1808.9924 -5226,6473,11772,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,6.5523663,6.448863,3,0,0,0,-9,0,-1017.416,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4354601,6.8394485,0,0,52,45,-9,-9,6,1,1,0,0,4,2,1,312,-3979.3296,0,0,751.15387 -5227,6474,11773,-9,-9,-9,1,1,0,44,3,0,0,0,2,-9,2,1,0,0,2,8.8601265,8.9012899,0,3,0,-9,0,-9,0,-947.41498,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,25,10,80,0,15,1,1,-9,0,7.1571517,7.1571517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.490002,33.889999,-9,-9,3,1,1,0,0,7,5,1,378,-149683.39,0,0,2717.1563 -5228,6475,11774,11775,-9,-9,1,1,0,47,1,0,3,0,2,-9,2,1,0,0,4,7.4560399,7.4292383,0,2,0,-9,6,0,-2,-12.032478,0,0,0,49,3,4,1,-9,-9,2019,1,2,6,0,21,18,15,1,0,1,0,9.6119165,9.6119165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,53,55,6,1,1,0,0,8,3,1,936.59998,1134210.8,0,0,2991.6477 -5228,6475,11775,11774,-9,-9,2,1,1,49,1,0,3,0,3,-9,2,1,0,0,4,8.6835461,8.6364985,0,2,0,-9,6,0,2,-35.242706,0,0,0,47,2,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,17.801497,17.801497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,57.16,56.150002,6,4,1,0,0,8,3,1,936.59998,1134210.8,0,0,2991.6477 -5228,6475,11776,-9,11774,11775,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.3292,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,3,1,936.59998,1134210.8,0,0,2991.6477 -5228,6475,11777,-9,11774,11775,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.33215,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,3,1,936.59998,1134210.8,0,0,2991.6477 -5228,6475,11778,-9,11774,11775,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.5922,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,3,1,936.59998,1134210.8,0,0,2991.6477 -5229,6476,11779,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,2,1,0,0,3,8.7113352,9.32446,8.0778055,3,0,0,0,-9,0,-1076.4833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,40,15,1,0,-9,0,20.88793,20.88793,0,0,0,0,0,0,0,2,1,1,0,0,8.0047312,.46760291,3,46.080002,57.200001,-9,-9,3,1,1,0,0,4,5,0,1067,676634.69,0,0,5959.0962 -5230,6477,11780,-9,-9,-9,2,1,0,20,2,0,2,0,2,0,7,2,0,0,4,6.8671002,6.820868,0,3,0,0,0,-9,0,-1028.813,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,-9,-9,0,0,0,0,0,36.009998,56.52,-9,-9,3,1,1,0,0,12,2,0,539,-19989.25,0,0,118.25676 -5231,6478,11781,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1013.6606,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,26,-9,-9,2,1,1,0,1,12,1,0,842,0,0,0,552.6236 -5232,6479,11782,-9,11784,11783,4,1,1,17,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1088.9268,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.02,60.939999,-9,-9,3,2,3,0,0,8,2,1,588.66669,6803.8159,0,0,2191.0425 -5232,6479,11783,11784,-9,-9,1,1,1,48,1,0,2,0,2,-9,1,1,0,0,3,7.8236709,7.7767415,0,2,0,-9,14,-9,8,94.121727,-9,0,0,40,2,3,1,-9,-9,2019,1,2,5,0,30,0,15,1,0,1,0,9.4090862,9.4090862,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.650002,34.57,56.040001,51.299999,4,2,3,0,0,8,2,1,588.66669,6803.8159,0,0,2191.0425 -5232,6479,11784,11783,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,3,6.4230251,5.9479933,0,2,0,-9,14,-9,-8,-7.5622625,-9,0,1,48,2,3,1,-9,-9,2019,1,1,12,0,18,0,15,1,0,1,0,3.3435626,3.3435626,0,0,0,0,0,0,0,0,1,1,0,4.6683064,0,0,0,56.040001,51.299999,62.650002,34.57,4,2,3,0,0,8,2,1,588.66669,6803.8159,0,0,2191.0425 -5232,6480,11785,-9,11784,11783,3,1,1,18,2,0,2,0,2,-9,3,3,0,0,5,0,0,0,3,0,-9,0,-9,0,-1031.2667,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,-9,-9,6,2,3,1,0,8,2,1,274,123061.65,0,0,0 -5233,6481,11786,11789,-9,-9,2,1,0,42,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,23,0,-3,55.359592,0,0,1,45,2,2,1,2,2,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.169998,50.599998,37.689999,51.790001,4,1,1,0,0,4,3,1,992.25,36411.867,0,0,2490.0635 -5233,6481,11787,-9,11786,11789,4,1,0,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1035.3882,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,7,1,1,0,0,4,3,1,992.25,36411.867,0,0,2490.0635 -5233,6481,11788,-9,11786,11789,5,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.4448,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,992.25,36411.867,0,0,2490.0635 -5233,6481,11789,11786,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,2,8.3525677,7.9810286,0,2,0,-9,23,0,3,69.561356,0,0,0,42,2,3,3,2,2,2019,2,2,8,1,32,37,15,1,0,3,0,13.276593,13.276593,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.689999,51.790001,37.169998,50.599998,6,1,1,0,1,4,3,1,992.25,36411.867,0,0,2490.0635 -5233,6482,11790,-9,11786,11789,3,1,0,19,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-920.94,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,-9,-9,6,1,1,0,0,4,1,1,524,0,0,0,0 -5234,6483,11791,11792,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,0,2,7.5737209,8.0234346,6.0194836,1,0,-9,9,0,3,142.66312,-9,0,0,59,2,5,1,3,3,2019,1,2,11,0,60,0,15,1,0,1,0,3.9642081,3.9642081,0,0,0,0,0,0,0,0,0,0,0,0,6.0124016,0,0,50.439999,43.310001,52.330002,50.779999,4,1,1,0,0,11,4,1,1221,671206.38,0,0,1790.3735 -5234,6483,11792,11791,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,5,7.4892812,7.4521341,0,1,0,-9,9,0,-3,-71.57766,-9,0,0,62,3,2,1,2,2,2019,1,1,6,0,22,0,15,1,0,1,0,11.156205,11.156205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.330002,50.779999,50.439999,43.310001,6,1,1,0,0,11,4,1,1221,671206.38,0,0,1790.3735 -5235,6484,11793,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-902.55542,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,16.261217,0,0,1,1,0,0,0,0,0,46.310001,13.25,-9,-9,6,1,1,0,0,2,1,0,362,161041.77,0,0,1074.2152 -5236,6485,11794,11795,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,0,4,7.8181648,7.8144488,0,1,0,-9,35,0,-8,3.6875753,-9,0,0,57,2,4,1,3,3,2019,1,2,10,1,35,0,15,1,0,1,0,10.078344,10.078344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,62.490002,55.09,6,3,4,0,1,7,4,0,571,660946,0,0,2786.7678 -5236,6485,11795,11794,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.316308,8.040864,0,1,0,-9,8,0,8,-37.422718,0,0,0,49,3,4,1,3,3,2019,1,1,9,1,60,42,15,1,0,1,0,9.4914799,9.4914799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,50,54,7,3,4,0,1,7,4,0,571,660946,0,0,2786.7678 -5237,6486,11796,11797,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,3,8.5378685,8.0812435,0,2,0,-9,2,0,4,54.979656,0,0,0,34,1,4,1,-9,-9,2019,1,1,11,0,33,37,15,1,0,1,0,14.386449,14.386449,0,0,0,0,0,0,0,0,1,1,0,2.0709412,0,0,0,41.93,55.119999,58.299999,52.91,5,1,1,0,0,13,5,1,1125,130227.97,0,0,3529.5437 -5237,6486,11797,11796,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,8.5386372,8.9123573,0,2,0,-9,2,0,-4,-59.634026,0,0,1,38,1,3,1,2,2,2019,1,2,1,0,41,37,15,1,0,1,0,13.308015,13.308015,0,0,0,0,0,0,0,0,1,1,0,1.0817865,0,0,0,58.299999,52.91,41.93,55.119999,6,1,1,0,0,13,5,1,1125,130227.97,0,0,3529.5437 -5237,6486,11798,-9,11797,11796,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.0812,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,5,1,1125,130227.97,0,0,3529.5437 -5238,6487,11799,11800,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.1743631,8.8668976,1,0,-9,30,0,8,16.228888,0,0,0,63,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7822456,0,0,57.16,56.150002,50,47,7,1,1,0,0,1,5,1,321.5,1202767.8,0,0,4470.8853 -5238,6487,11800,11799,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,7.5789928,8.0474949,7.1283965,1,0,-9,6,0,-8,-13.760168,-9,0,0,71,2,4,3,-9,-9,2019,2,1,11,2,24,0,15,1,0,4,0,9.2741575,9.2741575,0,0,0,0,0,0,0,0,1,1,0,4.8969655,7.1548662,0,0,50,47,57.16,56.150002,5,1,1,0,0,1,5,1,321.5,1202767.8,0,0,4470.8853 -5239,6488,11801,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,0,3,6.7284203,6.8882422,0,3,0,0,0,-9,0,-1182.6128,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,16,16,15,1,0,-9,0,8.4706717,8.4706717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,6,1,1,0,0,12,2,0,407,348505.28,0,0,1081.972 -5239,6489,11802,-9,11801,-9,2,1,0,19,2,0,0,0,3,0,7,2,0,0,4,6.312305,5.9018149,0,3,0,0,0,-9,0,-1005.4335,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,12,2,0,852.5,14808.499,0,0,323.65637 -5239,6489,11803,-9,11802,-9,5,1,0,9,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-921.0332,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,2,0,852.5,14808.499,0,0,323.65637 -5239,6490,11804,-9,11801,-9,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.4209437,7.4200501,0,3,0,0,0,-9,0,-1011.7734,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,45,60,15,1,0,-9,1,4.6730065,4.6730065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,12,3,0,198,71593,0,0,-202.50192 -5240,6491,11805,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,7.8579311,7.8809247,0,3,0,0,0,-9,0,-1011.9689,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,35,37,15,1,0,-9,0,8.3504953,8.3504953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.66,45.93,-9,-9,5,1,1,0,0,13,3,1,841,-71183.609,0,0,1128.4142 -5240,6492,11806,-9,11805,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.6879997,7.6648469,0,3,0,0,0,-9,0,-981.29327,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,0,15,1,0,-9,1,6.7713099,6.7713099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,3,1,582,7246.4648,0,0,2022.9072 -5241,6493,11807,-9,11808,11809,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1023.0911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,4,0,493.66666,222247.23,0,0,2783.9939 -5241,6493,11808,11809,11810,-9,2,1,0,40,1,0,1,0,2,0,7,2,0,0,4,0,0,0,2,0,-9,8,0,2,-10.592448,-9,0,1,38,2,3,1,3,3,2019,3,1,14,2,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.580002,55.459999,58.32,50.220001,2,1,1,0,0,4,4,0,493.66666,222247.23,0,0,2783.9939 -5241,6493,11809,11808,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,3,8.531312,8.6505165,0,2,0,-9,8,0,-2,-90.537819,0,0,0,40,2,4,2,3,3,2019,2,2,5,0,38,35,15,1,0,2,0,15.97359,15.97359,0,0,0,0,0,0,0,0,1,1,0,.98071086,0,0,0,58.32,50.220001,44.580002,55.459999,6,1,1,0,0,4,4,0,493.66666,222247.23,0,0,2783.9939 -5241,6494,11810,-9,-9,-9,4,1,0,69,3,0,1,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-868.1814,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.939999,41.91,-9,-9,2,1,1,0,0,4,1,0,1183,-75393.977,0,0,-23.341812 -5242,6495,11811,-9,11814,11813,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.4025,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,5,0,876.5,4913.269,0,0,4177.3486 -5242,6495,11812,-9,11814,11813,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.0088,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,0,876.5,4913.269,0,0,4177.3486 -5242,6495,11813,11814,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,0,4,8.9973612,9.0450172,0,2,0,-9,8,0,4,43.397045,0,0,0,30,2,4,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,21.619728,21.619728,0,0,0,0,0,0,0,0,1,1,0,7.3052578,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,11,5,0,876.5,4913.269,0,0,4177.3486 -5242,6495,11814,11813,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,0,4,8.0228758,7.8905749,0,2,0,-9,8,0,-4,113.3612,0,0,1,34,2,4,1,-9,-9,2019,1,1,11,0,24,20,15,1,0,1,0,19.124947,19.124947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.16,56.150002,7,1,1,0,0,11,5,0,876.5,4913.269,0,0,4177.3486 -5243,6496,11815,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,6.1069121,5.9227309,3,0,0,0,-9,0,-1057.6934,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.9397812,19.029716,3,46.389999,60.990002,-9,-9,6,1,1,0,0,7,2,1,185,-13841.349,0,0,653.32965 -5244,6497,11816,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-916.96899,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,33.290001,-9,-9,5,1,1,0,0,4,1,0,340,146221.59,0,0,1690.6926 -5245,6498,11817,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,6.0061488,6.2254252,3,0,0,0,-9,0,-886.84393,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.2322178,0,3,54.200001,57.490002,-9,-9,6,1,1,0,0,1,2,1,1059,436887.69,0,0,2124.335 -5246,6499,11818,-9,11819,11820,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-815.95441,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,1,1294,6139.979,0,0,6111.8242 -5246,6499,11819,11820,-9,-9,2,1,0,37,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,12,0,-2,40.932014,0,0,1,39,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,49.759998,54.41,6,1,1,0,0,7,3,1,1294,6139.979,0,0,6111.8242 -5246,6499,11820,11819,-9,-9,1,1,1,39,1,1,2,0,2,-9,1,1,0,0,4,8.1412563,8.19098,0,2,0,-9,12,0,2,-27.977716,0,0,0,37,2,4,3,2,3,2019,2,2,14,2,40,40,15,1,0,3,0,13.797885,13.797885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.759998,54.41,54.790001,55.860001,6,1,1,0,0,7,3,1,1294,6139.979,0,0,6111.8242 -5246,6499,11821,-9,11819,11820,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.0287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,1,1294,6139.979,0,0,6111.8242 -5247,6500,11822,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,1,2,0,6.4336543,6.3972521,3,0,-9,0,-9,0,-1031.8494,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3628168,0,0,50.290001,23.1,-9,-9,6,1,1,0,0,11,2,1,141,-61208.023,0,0,2462.1311 -5248,6501,11823,11824,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,8.4130411,8.4136972,0,1,0,-9,8,0,-5,-68.968636,0,0,0,58,1,4,1,2,2,2019,1,1,8,0,42,40,15,1,0,1,0,15.476709,15.476709,0,0,0,0,0,0,0,2,0,0,0,7.9162865,0,0,3,52.610001,47.23,59.860001,48.060001,5,1,1,0,0,6,5,1,401,1109874.8,0,0,5496.3486 -5248,6501,11824,11823,-9,-9,1,1,1,58,1,0,0,0,1,-9,1,1,0,0,4,8.6961575,8.8008661,0,1,0,-9,8,0,5,109.30676,0,0,0,53,1,4,1,2,2,2019,1,2,8,0,55,40,15,1,0,1,0,12.291808,12.291808,0,0,0,0,0,0,0,7,0,0,0,3.7833326,0,4.2215042,3,59.860001,48.060001,52.610001,47.23,6,1,1,0,0,6,5,1,401,1109874.8,0,0,5496.3486 -5249,6502,11825,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,1,2,0,4.0422401,4.3196845,3,0,0,0,-9,0,-980.4436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.4532666,0,0,0,0,1,1,0,0,4.1315365,0,0,48.490002,40.209999,-9,-9,6,1,1,0,0,11,1,0,262,488932.25,0,0,1254.7809 -5250,6503,11826,-9,11828,11827,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1170.4171,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,1255.6666,546664.81,0,0,2941.7786 -5250,6503,11827,11828,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.7037563,8.5272121,0,2,0,-9,9,0,0,-8.9532242,0,0,0,42,2,2,1,2,2,2019,1,1,9,1,45,44,15,1,0,1,0,13.715731,13.715731,0,0,0,0,0,0,0,7,1,1,0,3.0455191,0,22.36689,3,49.060001,58.639999,52.830002,49.110001,5,1,1,0,0,13,4,1,1255.6666,546664.81,0,0,2941.7786 -5250,6503,11828,11827,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,2,7.7723708,7.7557263,0,2,0,-9,9,0,0,-11.332248,0,0,1,42,1,4,1,-9,-9,2019,1,2,9,0,30,30,15,1,0,1,0,6.4166832,6.4166832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,49.110001,49.060001,58.639999,2,1,1,0,0,13,4,1,1255.6666,546664.81,0,0,2941.7786 -5251,6504,11829,11832,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,3,8.3209295,7.8375592,0,2,0,-9,16,0,3,85.08683,0,0,0,31,2,4,3,2,2,2019,2,1,11,0,40,40,15,1,0,3,0,7.4157071,7.4157071,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,40.77,61.040001,4,1,1,0,0,6,3,0,428.25,4350.4902,0,0,1688.0184 -5251,6504,11830,-9,11832,11829,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.9907,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,428.25,4350.4902,0,0,1688.0184 -5251,6504,11831,-9,11832,11829,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1189.9823,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,428.25,4350.4902,0,0,1688.0184 -5251,6504,11832,11829,-9,-9,1,1,0,31,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,-3,77.949875,0,0,1,34,2,3,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.040001,49.040001,55.860001,5,1,1,0,0,6,3,0,428.25,4350.4902,0,0,1688.0184 -5252,6505,11833,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,8.2725601,7.8261929,0,3,0,0,0,-9,0,-1033.218,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,80,70,15,1,0,-9,0,4.6179223,4.6179223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.16,65.32,-9,-9,6,1,1,0,0,9,4,0,442,109900.26,0,0,1546.5935 -5253,6506,11834,11835,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-2,76.516479,0,0,0,76,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2068775,0,0,0,42.349998,52.220001,62.490002,55.09,7,1,1,0,0,7,3,1,1187.5,774941.38,0,0,2421.3936 -5253,6506,11835,11834,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,4,0,7.7240763,7.7003021,1,0,-9,55,0,2,143.84674,0,0,0,74,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8027554,0,0,62.490002,55.09,42.349998,52.220001,7,1,1,0,0,7,3,1,1187.5,774941.38,0,0,2421.3936 -5254,6507,11836,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,3,0,4.3669105,4.2733216,3,0,0,0,-9,0,-985.50543,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8044772,4.1405039,0,0,54,46,-9,-9,5,1,1,0,0,8,1,1,742,1060275.4,0,0,1586.301 -5255,6508,11837,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,8.4581318,8.7724237,0,1,0,-9,3,0,-16,-24.716362,0,1,0,-9,-9,-9,-9,2,2,2019,1,2,8,2,40,37,15,1,0,-9,0,11.432297,11.432297,0,0,0,0,0,0,0,0,0,0,0,2.7164304,0,0,0,44.209999,60.790001,51.73,58.82,6,1,1,0,0,9,5,0,324,93634.984,0,0,2305.6443 -5255,6509,11838,-9,-9,-9,2,1,1,39,2,0,0,0,1,-9,2,1,0,0,5,7.8445497,7.9026785,0,1,0,-9,3,0,16,-36.715046,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,0,0,37,37,15,1,0,-9,0,11.542497,11.542497,0,0,0,0,0,0,0,0,0,0,0,7.5621772,0,0,0,51.73,58.82,44.209999,60.790001,6,1,1,0,0,9,5,0,428,-75025.234,0,0,1787.8157 -5256,6510,11839,11840,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,8.2493391,8.3592672,4.9369206,1,0,-9,25,0,2,74.411461,0,0,0,60,1,3,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,11.173439,11.173439,0,0,0,0,0,0,0,7,0,0,0,0,5.2248607,13.12454,3,57.16,56.150002,46.080002,57.200001,7,1,1,0,0,5,5,1,713,559057.63,0,0,3689.7676 -5256,6510,11840,11839,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,3,8.567564,8.6188383,4.980248,1,0,-9,25,0,-2,.64999169,0,0,0,62,3,4,1,3,3,2019,1,2,7,0,34,35,15,1,0,1,0,21.58007,21.58007,0,0,0,0,0,0,0,0,0,0,0,0,5.3257279,0,0,46.080002,57.200001,57.16,56.150002,6,1,1,0,0,5,5,1,713,559057.63,0,0,3689.7676 -5257,6511,11841,11842,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.4120388,8.5795879,0,1,0,-9,8,0,2,65.690231,0,0,0,50,1,5,1,2,3,2019,1,1,10,2,30,32,15,1,0,1,0,20.378344,20.378344,0,0,0,0,0,0,0,2,0,0,0,3.2848418,0,0,3,51.77,58.57,60.02,56.419998,6,1,1,0,0,9,4,1,522.5,279651.22,0,0,4332.7969 -5257,6511,11842,11841,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,5,7.136322,7.3779697,0,1,0,-9,8,0,-2,57.645096,0,0,0,52,2,4,1,2,2,2019,1,2,7,0,40,35,15,1,0,1,0,3.711345,3.711345,0,0,0,0,0,0,0,0,0,0,0,8.7293634,0,0,0,60.02,56.419998,51.77,58.57,5,1,1,0,0,9,4,1,522.5,279651.22,0,0,4332.7969 -5258,6512,11843,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,6.0808883,5.522881,3,0,0,0,-9,0,-979.10919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8636107,0,0,51,46,-9,-9,5,1,1,0,0,11,2,1,747,138244.06,0,0,920.50385 -5259,6513,11844,11845,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,51,0,-3,0,0,0,0,70,2,1,3,3,3,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,1,0,9.7259073,5.3168039,0,0,0,0,1,1,0,0,0,0,0,49.290001,19.129999,46.450001,19.780001,2,1,1,0,1,4,1,0,623.5,-67696.992,0,0,957.1123 -5259,6513,11845,11844,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,51,0,3,0,0,0,0,67,2,1,3,3,3,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,13.596676,0,0,0,0,27.5,1,1,0,0,0,28.096502,1,46.450001,19.780001,49.290001,19.129999,4,1,1,0,1,4,1,0,623.5,-67696.992,0,0,957.1123 -5260,6514,11846,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,4,0,6.5754867,6.4959803,3,0,0,0,-9,0,-977.72229,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5965157,0,0,48.810001,59.91,-9,-9,7,1,1,0,0,12,2,0,998,641109.88,0,0,1491.4979 -5261,6515,11847,-9,11849,11848,3,1,0,17,2,0,0,1,2,0,7,2,0,0,4,6.4624252,6.735507,0,1,0,0,0,-9,0,-880.99719,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,7,3,1,268,422175.91,0,0,1660.1501 -5261,6515,11848,11849,-9,-9,2,1,1,55,1,0,0,0,3,-9,1,1,0,0,3,7.536665,7.3550854,0,1,0,-9,8,0,0,-105.44837,0,0,0,55,3,3,1,3,3,2019,1,1,9,0,45,43,15,1,0,1,0,3.6452074,3.6452074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.529999,42.400002,58.669998,39.119999,6,1,1,0,0,7,3,1,268,422175.91,0,0,1660.1501 -5261,6515,11849,11848,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,0,3,7.0573182,6.9385247,0,1,0,-9,23,0,0,68.635857,0,0,0,55,3,3,1,-9,-9,2019,1,2,8,0,20,20,15,1,0,1,0,4.5686674,4.5686674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.669998,39.119999,36.529999,42.400002,6,1,1,0,0,7,3,1,268,422175.91,0,0,1660.1501 -5262,6516,11850,11851,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,7.027873,7.1515093,0,1,0,-9,2,0,-2,33.69421,0,0,0,53,1,3,1,3,1,2019,1,1,12,0,16,17,15,1,0,1,0,8.7396011,8.7396011,0,0,0,0,0,0,0,14.5,0,0,0,0,0,14.285229,3,49.41,24.85,39.970001,51.639999,5,1,1,0,0,6,3,1,790.5,98019.781,0,0,889.5791 -5262,6516,11851,11850,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,7.9465132,7.7602754,0,1,0,-9,2,0,2,100.68626,0,0,0,51,2,2,1,3,1,2019,1,2,15,3,37,37,15,1,0,1,0,6.045783,6.045783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.970001,51.639999,49.41,24.85,4,1,1,0,0,6,3,1,790.5,98019.781,0,0,889.5791 -5263,6517,11852,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,4,8.4964819,8.6476717,0,3,0,-9,0,-9,0,-944.90222,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,0,15,1,0,-9,0,17.882053,17.882053,0,0,0,0,0,0,0,0,0,0,0,1.6353618,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,5,1,1288,-175117.63,0,0,2508.2434 -5264,6518,11853,11854,-9,-9,3,1,1,74,1,0,0,0,1,-9,4,3,0,1,3,0,5.9947262,6.0294361,1,0,-9,36,0,13,20.222517,0,0,0,61,2,2,3,3,3,2019,4,2,12,3,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.2982278,65.562737,1,46.720001,39.200001,34.84,42.369999,5,3,4,0,1,8,2,1,626.5,2684593.5,0,0,1507.6667 -5264,6518,11854,11853,-9,-9,2,1,0,61,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,36,0,-13,-103.09902,0,0,0,74,1,3,3,2,1,2019,4,3,23,11,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.84,42.369999,46.720001,39.200001,3,3,4,0,1,8,2,1,626.5,2684593.5,0,0,1507.6667 -5264,6519,11855,-9,11854,11853,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,2,7.9963183,8.202692,0,3,0,0,0,-9,0,-957.72864,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,10,3,38,40,15,1,0,-9,1,9.7247334,9.7247334,0,0,0,0,0,0,0,2,1,1,0,3.5474827,0,0,3,47.549999,33.799999,-9,-9,3,3,4,0,0,8,4,1,1080,27639.514,0,0,2336.9822 -5265,6520,11856,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.7571182,8.7530422,0,3,0,0,0,-9,0,-877.4198,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,37,15,1,0,-9,0,13.986743,13.986743,0,0,0,0,0,0,0,0,1,1,0,2.1165853,0,0,0,51.77,58.57,-9,-9,5,1,1,0,0,12,5,1,267,111096.09,0,0,248.52806 -5266,6521,11857,11858,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,3,8.193243,8.4455223,0,2,0,-9,3,0,8,43.1973,0,0,1,31,1,4,1,2,2,2019,1,3,8,0,30,28,15,1,0,1,0,15.24995,15.24995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,62.490002,55.09,6,1,1,0,0,2,5,1,488.33334,1253652.5,0,0,3024.3538 -5266,6521,11858,11857,-9,-9,3,1,1,31,1,0,1,0,1,-9,2,1,0,0,4,8.681757,8.5223999,0,2,0,-9,3,0,-8,18.863422,0,0,0,39,2,3,1,-9,-9,2019,1,1,7,0,35,37,15,1,0,1,0,19.137106,19.137106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,57.330002,53.459999,6,1,1,0,0,2,5,1,488.33334,1253652.5,0,0,3024.3538 -5266,6521,11859,-9,11857,11858,4,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.61707,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,488.33334,1253652.5,0,0,3024.3538 -5266,6522,11860,-9,11857,11858,2,1,0,19,2,0,1,1,2,0,7,2,0,0,3,6.4479089,6.327949,0,4,0,0,0,-9,0,-934.38184,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.75,47.060001,-9,-9,6,1,1,0,0,2,2,1,670,-66544.602,0,0,-37.308659 -5267,6523,11861,11862,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,0,5,8.3407516,8.5631504,0,1,0,-9,23,0,-4,25.746838,0,0,0,50,1,5,1,3,3,2019,1,2,9,0,34,50,15,1,0,1,0,19.167015,19.167015,0,0,0,0,0,0,0,0,0,0,0,3.3539259,0,0,0,51.139999,60.450001,57.060001,57.759998,6,1,1,0,0,2,5,1,254,1785632.3,0,0,4928.4663 -5267,6523,11862,11861,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,0,5,9.1413221,9.0864811,0,1,0,-9,6,0,4,31.004601,0,0,0,46,1,5,1,-9,-9,2019,1,1,5,0,44,47,15,1,0,1,0,25.285168,25.285168,0,0,0,0,0,0,0,2,0,0,0,0,0,2.8285189,3,57.060001,57.759998,51.139999,60.450001,6,1,1,0,0,2,5,1,254,1785632.3,0,0,4928.4663 -5268,6524,11863,11865,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,3,8.4648027,8.2647333,0,2,0,-9,17,0,4,67.491219,0,0,0,42,2,5,1,2,2,2019,1,1,7,0,42,58,15,1,0,1,0,10.641468,10.641468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,50.220001,55.09,55.869999,5,1,1,0,0,2,5,0,580.25,349375.44,0,0,4496.9922 -5268,6524,11864,-9,11865,11863,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.28107,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,0,580.25,349375.44,0,0,4496.9922 -5268,6524,11865,11863,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,5,8.5835762,8.6656713,5.9983597,2,0,-9,19,0,-4,-74.849236,-9,0,1,46,2,3,1,1,1,2019,1,2,14,2,42,0,15,1,0,1,0,14.1465,14.1465,0,0,0,0,0,0,0,0,1,1,0,6.5828266,0,0,0,55.09,55.869999,58.470001,50.220001,6,1,1,0,0,2,5,0,580.25,349375.44,0,0,4496.9922 -5268,6524,11866,-9,11865,11863,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-847.36029,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,2,5,0,580.25,349375.44,0,0,4496.9922 -5269,6525,11867,-9,11869,11871,4,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.84387,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,3,0,498.60001,39796.598,0,0,4858.2798 -5269,6525,11868,-9,11869,11871,5,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.22211,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,0,498.60001,39796.598,0,0,4858.2798 -5269,6525,11869,11871,-9,-9,1,1,0,37,1,0,4,0,2,-9,2,1,0,1,4,7.562254,7.9598503,0,2,0,-9,7,0,-2,85.415367,0,0,1,39,2,2,1,2,3,2019,1,2,7,0,30,42,15,1,0,1,0,6.3886809,6.3886809,0,0,0,0,0,0,0,74.5,1,1,0,0,0,88.68647,3,42.919998,54.549999,37.68,56.200001,6,1,1,0,0,9,3,0,498.60001,39796.598,0,0,4858.2798 -5269,6525,11870,-9,11869,11871,6,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.67474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,0,498.60001,39796.598,0,0,4858.2798 -5269,6525,11871,11869,-9,-9,2,1,1,39,1,0,4,0,2,-9,2,1,0,0,2,8.3628111,8.3506079,0,2,0,-9,7,0,2,93.849518,0,0,0,37,2,4,1,2,-9,2019,1,1,11,2,36,42,15,1,0,1,0,15.981605,15.981605,0,0,0,0,0,0,0,7,1,1,0,0,0,8.5686293,3,37.68,56.200001,42.919998,54.549999,5,1,1,0,0,9,3,0,498.60001,39796.598,0,0,4858.2798 -5270,6526,11872,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,1,0,6.0333424,6.0299697,3,0,0,0,-9,0,-906.86096,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.2872634,0,0,51.84,19.52,-9,-9,3,1,1,0,0,7,2,0,359,318997.22,0,0,644.73572 -5271,6527,11873,-9,-9,-9,1,1,0,29,2,0,0,0,3,-9,2,1,0,1,4,7.6067605,7.3494353,0,3,0,0,0,-9,0,-960.3728,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,4,40,0,15,1,1,-9,0,4.4854269,4.4854269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.830002,63.900002,-9,-9,2,1,1,0,0,7,3,0,270,160017.55,0,0,2384.2415 -5272,6528,11874,-9,11876,11875,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.00818,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,1,392.66666,4430.646,0,0,2145.3303 -5272,6528,11875,11876,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,0,4,7.950182,8.0159712,0,2,0,-9,10,0,0,-39.450081,0,0,0,36,2,4,1,2,2,2019,1,2,12,0,80,0,15,1,0,1,0,3.832864,3.832864,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.580002,60.950001,26.23,62.529999,3,1,1,0,1,4,3,1,392.66666,4430.646,0,0,2145.3303 -5272,6528,11876,11875,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,7.344624,7.272923,0,2,0,-9,10,0,0,6.2601352,0,0,1,36,1,4,1,1,-9,2019,1,1,13,1,23,0,15,1,0,1,0,9.165802,9.165802,0,0,0,0,0,0,0,0,1,1,0,1.976402,0,0,0,26.23,62.529999,40.580002,60.950001,5,1,1,0,0,4,3,1,392.66666,4430.646,0,0,2145.3303 -5273,6529,11877,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,-9,0,-9,0,-984.40833,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,17,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.849998,51.139999,-9,-9,6,3,4,1,1,8,1,0,447,851592.94,0,0,1010.951 -5273,6530,11878,-9,11877,-9,3,1,1,19,2,0,0,0,2,-9,3,3,0,0,5,0,5.2524323,5.0536456,3,0,-9,0,-9,0,-918.65735,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.9579473,0,0,0,57.060001,57.759998,-9,-9,6,3,4,1,0,8,2,0,275,-64546.609,0,0,-801.7951 -5274,6531,11879,11880,-9,-9,1,1,1,49,1,0,0,0,3,-9,1,1,0,0,4,7.6009731,7.2615323,0,1,0,-9,36,0,-7,-82.176437,0,0,0,56,2,2,3,3,3,2019,2,2,17,6,38,28,15,1,1,3,0,5.055944,5.055944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.650002,52.490002,43.720001,29.9,5,2,3,0,1,5,2,1,710.5,486155.5,0,0,461.02051 -5274,6531,11880,11879,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,7,0,7,34.643505,0,0,0,49,3,4,1,3,3,2019,3,1,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.720001,29.9,38.650002,52.490002,1,2,3,0,1,5,2,1,710.5,486155.5,0,0,461.02051 -5274,6532,11881,-9,11880,11879,3,1,1,23,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1018.7001,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.76704866,0,0,0,60.119999,54.799999,-9,-9,5,2,3,1,0,5,1,1,1214,55045.043,0,0,1391.9762 -5274,6533,11882,-9,11880,11879,4,1,0,20,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1057.7781,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,58.990002,-9,-9,6,2,3,0,0,5,1,1,909,233505.56,0,0,1118.9508 -5274,6534,11883,-9,11880,11879,5,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-992.25543,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,.86509722,0,5.6120501,3,49.849998,43.330002,-9,-9,6,2,3,0,0,5,1,1,608,156750.69,0,0,118.43247 -5275,6535,11884,11885,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,6.1413059,6.3387222,1,0,-9,53,0,1,-75.967941,0,0,0,72,3,3,3,2,3,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.1144767,5.9488602,123.69888,1,41.66,36.919998,52,46,4,1,1,0,0,7,2,1,825.5,148729.13,0,0,2358.5254 -5275,6535,11885,11884,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-1,46.237164,0,0,0,73,2,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,41.66,36.919998,5,1,1,0,0,7,2,1,825.5,148729.13,0,0,2358.5254 -5276,6536,11886,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,4,7.4728155,7.3230391,0,3,0,0,0,-9,0,-1051.6335,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,27,26,15,1,1,-9,0,8.6055708,8.6055708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,56.439999,-9,-9,3,1,1,0,0,10,3,0,2732,-53938.16,0,0,1403.2205 -5277,6537,11887,-9,11888,-9,4,1,1,17,2,0,1,1,2,0,7,2,0,0,3,6.6970892,6.8987837,4.7153044,4,0,0,0,-9,0,-1062.8527,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5180488,0,0,0,49.040001,55.860001,-9,-9,5,2,3,0,0,2,3,0,1621,349198.81,0,0,1014.1119 -5277,6537,11888,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,3,7.8615046,8.0540495,0,4,0,0,0,-9,0,-1032.2112,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,35,35,15,1,0,-9,0,8.2464333,8.2464333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,-9,-9,3,2,3,0,0,2,3,0,1621,349198.81,0,0,1014.1119 -5278,6538,11889,11890,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,9.0838575,8.9041805,6.0757747,1,0,-9,34,0,-1,-78.304543,0,0,0,61,2,3,1,3,3,2019,1,2,7,0,40,55,15,1,0,1,0,27.146635,27.146635,0,0,0,0,0,0,0,2,0,0,0,0,6.7632751,.34041512,3,51.150002,37.610001,49,48,6,1,1,0,0,1,5,1,272,630900.25,0,0,2697.3931 -5278,6538,11890,11889,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,6.8204017,6.7584629,0,1,0,-9,9,0,1,-70.95034,-9,0,0,60,2,2,1,-9,-9,2019,1,1,11,2,16,0,15,1,0,1,0,6.7912726,6.7912726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,51.150002,37.610001,5,1,1,0,0,1,5,1,272,630900.25,0,0,2697.3931 -5279,6539,11891,-9,-9,-9,1,1,0,43,3,0,2,0,3,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-979.8689,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,13,1,1,922,81054.813,0,0,1371.0607 -5280,6540,11892,-9,11894,11893,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.6857,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,407.20001,233708.59,0,0,3649.0559 -5280,6540,11893,11894,-9,-9,1,1,1,35,1,1,3,0,1,-9,2,1,0,0,5,9.0444937,8.8474894,0,2,0,-9,13,0,3,-97.675072,0,0,0,32,1,4,1,2,2,2019,1,2,6,0,37,39,15,1,0,1,0,21.657001,21.657001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,54.200001,57.490002,6,1,1,0,0,9,4,1,407.20001,233708.59,0,0,3649.0559 -5280,6540,11894,11893,-9,-9,2,1,0,32,1,1,3,0,1,-9,2,1,0,0,4,7.7321358,7.571311,0,2,0,-9,13,0,-3,69.263252,0,0,1,35,1,5,1,2,2,2019,1,1,7,0,20,21,15,1,0,1,0,13.686527,13.686527,0,0,0,0,0,0,0,0,1,1,0,3.0557041,0,0,0,54.200001,57.490002,54.689999,57.470001,6,1,1,0,0,9,4,1,407.20001,233708.59,0,0,3649.0559 -5280,6540,11895,-9,11894,11893,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.5715,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,407.20001,233708.59,0,0,3649.0559 -5280,6540,11896,-9,11894,11893,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.9932,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,4,1,407.20001,233708.59,0,0,3649.0559 -5281,6541,11897,11898,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,3,9.364974,9.732337,0,1,0,-9,31,0,-3,104.54004,0,0,0,58,1,4,1,3,1,2019,1,2,10,0,35,43,15,1,0,1,0,41.691811,41.691811,0,0,0,0,0,0,0,7,0,0,0,6.3914504,0,7.4549804,3,57.330002,53.459999,60.130001,49.27,6,4,2,0,0,9,5,1,1806.5,3752443.3,0,0,9788.1934 -5281,6541,11898,11897,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,9.6514835,9.9849358,0,1,0,-9,31,0,3,-118.26916,0,0,0,55,1,3,1,-9,-9,2019,1,1,9,0,50,48,15,1,0,1,0,36.213146,36.213146,0,0,0,0,0,0,0,0,0,0,0,7.7976723,0,0,0,60.130001,49.27,57.330002,53.459999,7,1,1,0,0,9,5,1,1806.5,3752443.3,0,0,9788.1934 -5282,6542,11899,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,5,7.6004601,7.5728683,0,3,0,0,0,-9,0,-1076.2493,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,37,41,15,1,0,-9,0,6.783978,6.783978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,-9,-9,3,1,1,0,1,8,3,0,303,-69194.016,0,0,805.91254 -5283,6543,11900,-9,-9,-9,1,1,0,39,2,0,1,0,3,-9,2,1,0,0,4,7.0358992,6.9878044,5.8102088,4,0,0,0,-9,0,-1081.0267,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,4,16,16,15,1,1,-9,0,6.7744126,6.7744126,0,0,0,0,0,0,0,0,1,1,0,5.9449439,0,0,0,38.689999,61.75,-9,-9,2,1,1,0,1,5,2,0,452.5,141968.5,0,0,2362.3665 -5283,6543,11901,-9,11900,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1025.3905,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,2,0,452.5,141968.5,0,0,2362.3665 -5284,6544,11902,-9,11904,11905,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-958.56848,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,5,1,398.75,496666.63,0,0,3917.0906 -5284,6544,11903,-9,11904,11905,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.0659,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,5,1,398.75,496666.63,0,0,3917.0906 -5284,6544,11904,11905,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,0,2,8.2450027,8.6676855,0,2,0,-9,7,0,0,-72.058617,0,0,1,35,1,3,1,-9,-9,2019,1,1,11,0,47,55,15,1,0,1,0,9.869874,9.869874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.32,50.380001,52,54.509998,6,1,1,0,0,10,5,1,398.75,496666.63,0,0,3917.0906 -5284,6544,11905,11904,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,0,3,8.9966917,9.2057323,0,2,0,-9,7,0,0,137.97044,0,0,0,35,1,2,1,-9,-9,2019,1,2,10,0,60,50,15,1,0,1,0,13.832951,13.832951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,41.32,50.380001,6,1,1,0,0,10,5,1,398.75,496666.63,0,0,3917.0906 -5285,6545,11906,11907,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.1632128,8.2454805,0,1,0,-9,41,0,-1,2.8899329,0,0,0,59,3,5,3,-9,-9,2019,2,2,9,0,30,20,15,1,0,3,0,10.364964,10.364964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.790001,50.75,56.48,51.029999,6,1,1,0,0,7,3,1,307.5,104728.86,0,0,1871.9089 -5285,6545,11907,11906,-9,-9,2,1,1,59,1,0,0,0,3,-9,3,3,0,1,5,0,0,0,1,0,-9,41,0,1,-16.453026,0,0,0,58,2,4,1,-9,-9,2019,3,1,10,1,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.48,51.029999,53.790001,50.75,6,1,1,1,0,7,3,1,307.5,104728.86,0,0,1871.9089 -5286,6546,11908,11909,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.1990995,8.2612906,0,1,0,-9,26,0,5,-42.042568,0,0,0,46,3,2,1,-9,-9,2019,1,2,11,0,48,51,15,1,0,1,0,11.161383,11.161383,0,0,0,0,0,0,0,0,1,1,0,.030479679,0,0,0,40.73,36.549999,44.830002,41.900002,4,1,1,0,0,9,4,0,1041,730615.88,0,0,1879.2202 -5286,6546,11909,11908,-9,-9,2,1,0,46,1,0,0,0,3,-9,2,1,0,0,2,7.7947984,7.529973,0,1,0,-9,26,0,-5,23.064415,0,0,0,51,2,3,1,-9,3,2019,1,1,14,2,39,37,15,1,0,1,0,6.5727148,6.5727148,0,0,0,0,0,0,0,0,1,1,0,1.7395567,0,0,3,44.830002,41.900002,40.73,36.549999,5,1,1,0,0,9,4,0,1041,730615.88,0,0,1879.2202 -5287,6547,11910,-9,11912,11911,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1002.0034,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,6,5,1,936.25,514206.31,0,0,4760.1802 -5287,6547,11911,11912,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,8.900878,8.8305445,0,2,0,-9,9,0,2,-36.574265,0,0,0,46,1,5,1,2,2,2019,1,1,10,0,43,40,15,1,0,1,0,20.934326,20.934326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.099998,59.110001,6,1,1,0,0,6,5,1,936.25,514206.31,0,0,4760.1802 -5287,6547,11912,11911,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,5,8.403265,8.436677,0,2,0,-9,9,0,-2,25.167315,0,0,0,48,2,4,1,2,2,2019,1,2,7,0,36,28,15,1,0,1,0,15.525374,15.525374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,54.200001,57.490002,6,1,1,0,0,6,5,1,936.25,514206.31,0,0,4760.1802 -5287,6547,11913,-9,11912,11911,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.4431,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,936.25,514206.31,0,0,4760.1802 -5288,6548,11914,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,3,8.2818108,8.2479591,0,3,0,0,0,-9,0,-964.10754,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,35,15,1,0,-9,0,10.424002,10.424002,0,0,0,0,0,0,0,0,0,0,0,3.1751833,0,0,0,46.669998,55.57,-9,-9,5,1,1,0,0,9,4,0,765,47822.844,0,0,2171.5576 -5289,6549,11915,-9,-9,-9,1,1,0,41,2,0,2,0,1,-9,2,1,0,1,4,7.0585918,6.847549,0,4,0,0,0,-9,0,-1128.1355,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,20,25,15,1,0,-9,0,6.4457526,6.4457526,0,0,0,0,0,0,0,106,1,1,0,0,0,117.13784,3,57.16,56.150002,-9,-9,6,1,1,0,0,13,2,1,713.66669,351352.63,0,0,1738.6643 -5289,6549,11916,-9,11915,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1098.2522,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,4,2,0,0,13,2,1,713.66669,351352.63,0,0,1738.6643 -5289,6549,11917,-9,11915,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-876.24316,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,13,2,1,713.66669,351352.63,0,0,1738.6643 -5290,6550,11918,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,2,0,7.1879935,6.9739361,3,0,0,0,-9,0,-1116.4532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5009384,6.8421469,0,0,63.009998,28.07,-9,-9,5,1,1,0,0,11,2,0,326,632332.56,0,0,1630.9623 -5291,6551,11919,11920,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,1,1,5.6656241,5.84164,0,2,0,-9,25,0,0,9.1093407,0,0,1,43,2,3,1,2,2,2019,1,2,10,1,12,6,15,1,0,1,0,3.8913581,3.8913581,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.98896,3,46.279999,25.33,40.349998,51.959999,6,1,1,0,0,4,4,1,696,265964.31,0,0,3659.4194 -5291,6551,11920,11919,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.7473345,8.8313971,0,2,0,-9,11,0,0,36.466953,0,0,0,43,2,1,1,-9,-9,2019,1,1,20,7,42,46,15,1,1,1,0,22.905569,22.905569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,40.349998,51.959999,46.279999,25.33,5,1,1,0,0,4,4,1,696,265964.31,0,0,3659.4194 -5292,6552,11921,-9,11922,11924,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1027.4384,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,2,5,1,525.5,1513109.8,0,0,3713.4792 -5292,6552,11922,11924,-9,-9,1,1,0,46,1,0,2,0,3,-9,2,1,0,0,5,8.0361576,8.0313482,0,2,0,-9,9,0,1,-2.0185797,0,0,0,45,2,4,1,-9,2,2019,1,3,12,0,45,34,15,1,0,1,0,6.762979,6.762979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,45.91,59.889999,4,1,1,0,0,2,5,1,525.5,1513109.8,0,0,3713.4792 -5292,6552,11923,-9,11922,11924,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1038.6232,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,2,5,1,525.5,1513109.8,0,0,3713.4792 -5292,6552,11924,11922,-9,-9,3,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.8832006,8.9857969,0,2,0,-9,9,0,-1,-56.27837,0,0,0,46,3,5,1,1,1,2019,1,1,11,0,37,48,15,1,0,1,0,22.12801,22.12801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,54.349998,57.84,5,1,1,0,0,2,5,1,525.5,1513109.8,0,0,3713.4792 -5292,6553,11925,-9,11922,11924,2,1,0,22,2,0,2,0,2,-9,2,1,0,0,4,8.0104551,8.0082836,0,3,0,0,0,-9,0,-1065.1089,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,38,38,15,1,0,-9,1,6.5371351,6.5371351,0,0,0,0,0,0,0,0,1,1,0,.59729767,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,2,3,1,494,34902.816,0,0,914.35992 -5293,6554,11926,11927,-9,-9,1,1,0,36,1,0,1,0,3,-9,2,1,0,0,4,8.0674324,7.902658,0,2,0,-9,12,0,1,26.367954,0,0,1,35,2,3,1,2,2,2019,1,2,12,1,21,20,15,1,0,1,0,18.37438,18.37438,0,0,0,0,0,0,0,0,1,1,0,.12458562,0,0,0,48.5,36.68,39.150002,41.419998,6,1,1,0,0,9,5,0,560.33331,116865.63,0,0,5376.7183 -5293,6554,11927,11926,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,0,3,8.9617128,9.2423906,0,2,0,-9,12,0,-1,40.634655,0,0,0,36,3,4,1,2,2,2019,1,1,5,0,45,50,15,1,0,1,0,22.245308,22.245308,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,48.5,36.68,3,1,1,0,0,9,5,0,560.33331,116865.63,0,0,5376.7183 -5293,6554,11928,-9,11926,11927,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1186.4832,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,0,560.33331,116865.63,0,0,5376.7183 -5294,6555,11929,-9,-9,-9,1,1,0,35,3,0,0,0,1,-9,2,1,0,0,3,8.5669489,8.6778193,0,3,0,0,0,-9,0,-952.29974,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,60,60,15,1,1,-9,0,10.479211,10.479211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.619999,55.66,-9,-9,5,1,1,0,0,4,5,0,1036,84902.773,0,0,1886.7487 -5295,6556,11930,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,2,0,7.195941,7.180284,3,0,0,0,-9,0,-903.43628,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9433765,7.2869706,0,0,39.59,36.290001,-9,-9,6,1,1,0,0,13,3,1,138,195095.06,0,0,1388.2319 -5296,6557,11931,11932,-9,-9,2,1,1,92,1,0,0,0,3,-9,4,3,0,0,4,0,7.5352631,7.7670369,1,0,-9,67,0,2,-52.770126,0,0,0,90,3,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4439354,0,0,60.119999,54.799999,59.43,58.049999,7,1,1,0,0,10,3,1,629,604546.38,0,0,2069.2583 -5296,6557,11932,11931,-9,-9,1,1,0,90,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,67,0,-2,-42.555367,0,0,0,92,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0327735,0,0,0,59.43,58.049999,60.119999,54.799999,7,1,1,0,0,10,3,1,629,604546.38,0,0,2069.2583 -5297,6558,11933,11934,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.3933072,6.629508,1,0,-9,44,0,4,34.49815,0,0,0,65,3,3,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3609352,0,0,46.799999,55.75,29.59,43.23,6,1,1,0,0,9,2,1,532.5,855840.88,0,0,1778.3612 -5297,6558,11934,11933,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,4.1162438,3.9168801,1,0,-9,9,0,-4,-44.798843,0,0,0,69,3,4,3,-9,-9,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8243699,3.9181285,0,0,29.59,43.23,46.799999,55.75,5,1,1,0,1,9,2,1,532.5,855840.88,0,0,1778.3612 -5298,6559,11935,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,6.4229207,5.929719,3,0,0,0,-9,0,-992.46912,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21540767,5.8776011,0,0,38.540001,47.43,-9,-9,7,1,1,0,0,4,2,1,649,134983.95,0,0,1206.6563 -5299,6560,11936,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,0,3,8.8986206,9.4580965,0,3,0,0,0,-9,0,-1057.0619,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,21.807863,21.807863,0,0,0,0,0,0,0,0,1,1,0,2.9711366,0,0,0,52.18,43.43,-9,-9,4,1,1,0,0,6,5,0,304,198356.11,0,0,2690.9084 -5300,6561,11937,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-960.19928,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,1,0,2,1,0,1300,0,0,0,-116.43306 -5301,6562,11938,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,3.894419,4.1577287,3,0,0,0,-9,0,-918.27069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.885617,4.0142636,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,7,2,1,280,-85400.352,0,0,-219.43909 -5302,6563,11939,11940,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.5337639,8.4343567,0,1,0,-9,33,0,-1,34.83268,0,0,0,51,2,5,1,3,3,2019,1,2,6,0,30,30,15,1,0,1,0,19.619755,19.619755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.139999,46.439999,61.029999,44.82,7,1,1,0,0,12,5,1,279,2296337,0,0,5658.8164 -5302,6563,11940,11939,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,5,9.3917465,9.166153,0,1,0,-9,7,0,1,130.11209,-9,0,0,50,1,4,1,-9,-9,2019,1,1,7,0,60,0,15,1,0,1,0,14.245594,14.245594,0,0,0,0,0,0,0,0,0,0,0,4.8250847,0,0,0,61.029999,44.82,60.139999,46.439999,6,1,1,0,0,12,5,1,279,2296337,0,0,5658.8164 -5303,6564,11941,11942,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,29,0,11,0,0,0,0,69,3,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.580002,15.75,37.169998,37.040001,7,1,1,0,0,10,1,0,654.5,215220.92,0,0,1104.9434 -5303,6564,11942,11941,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,29,0,-11,0,0,0,0,80,3,1,3,3,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.169998,37.040001,63.580002,15.75,4,1,1,0,0,10,1,0,654.5,215220.92,0,0,1104.9434 -5304,6565,11943,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,5.6154375,5.2346692,3,0,0,0,-9,0,-954.75146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.3444705,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,4,2,1,576,244892.94,0,0,1833.5514 -5305,6566,11944,-9,11945,11948,4,1,0,17,2,0,3,1,2,0,7,2,0,0,5,5.4748135,5.5054936,0,2,0,0,0,-9,0,-951.64307,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.470001,59.400002,-9,-9,6,2,3,0,0,10,2,0,520.40002,315153.53,0,0,2540.3862 -5305,6566,11945,11948,-9,-9,2,1,0,50,1,0,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,34,0,-3,-81.324821,0,0,0,53,2,2,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.599998,52.880001,45,40,7,2,3,0,0,10,2,0,520.40002,315153.53,0,0,2540.3862 -5305,6566,11946,-9,11945,11948,5,1,1,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.47198,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,10,2,0,520.40002,315153.53,0,0,2540.3862 -5305,6566,11947,-9,11945,11948,6,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.0854,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,10,2,0,520.40002,315153.53,0,0,2540.3862 -5305,6566,11948,11945,-9,-9,1,1,1,53,1,0,3,0,2,-9,2,1,0,0,2,7.9611735,8.0823755,0,2,0,-9,34,0,3,2.5361433,0,0,0,50,3,3,3,-9,-9,2019,2,2,10,0,30,0,15,1,0,3,0,10.888851,10.888851,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,40,52.599998,52.880001,6,2,3,0,0,10,2,0,520.40002,315153.53,0,0,2540.3862 -5305,6567,11949,-9,11945,11948,3,1,1,25,2,0,3,0,1,-9,2,1,0,0,4,8.2150612,8.5329046,0,3,0,0,0,-9,0,-1042.7869,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,38,35,15,1,0,-9,1,11.029536,11.029536,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,-9,-9,1,2,3,0,0,10,4,0,415,38569.168,0,0,2247.9578 -5306,6568,11950,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,5,0,4.4779363,4.6089516,3,0,0,0,-9,0,-1066.7902,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,4.0788512,40.623638,3,54.099998,59.110001,-9,-9,7,1,1,0,0,12,2,0,606,386782.78,0,0,-563.33862 -5307,6569,11951,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,2,0,6.9202061,7.4490104,3,0,0,0,-9,0,-1016.8588,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7535882,6.841579,0,0,56.939999,39,-9,-9,5,1,1,0,0,4,2,1,837,300308.56,0,0,32.150726 -5308,6570,11952,11955,-9,-9,2,1,1,42,1,1,4,0,1,-9,2,1,0,0,4,8.7608929,8.9650574,0,2,0,-9,2,0,1,41.251472,0,0,0,41,1,3,1,-9,-9,2019,1,1,9,1,46,47,15,1,0,1,0,17.209066,17.209066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.130001,57.970001,46.650002,55.59,5,1,1,0,0,5,4,1,688.33331,314909.41,0,0,3347.5232 -5308,6570,11953,-9,11955,11952,3,1,1,12,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-938.25348,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,5,4,1,688.33331,314909.41,0,0,3347.5232 -5308,6570,11954,-9,11955,11952,4,1,1,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.10156,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,688.33331,314909.41,0,0,3347.5232 -5308,6570,11955,11952,-9,-9,1,1,0,41,1,1,4,0,1,-9,2,1,0,0,3,7.755322,7.5957255,0,2,0,-9,2,0,-1,-28.988487,0,0,1,42,1,4,1,2,3,2019,1,2,12,0,25,25,15,1,0,1,0,11.378078,11.378078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.650002,55.59,44.130001,57.970001,5,1,1,0,1,5,4,1,688.33331,314909.41,0,0,3347.5232 -5308,6570,11956,-9,11955,11952,5,1,1,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.6017,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,688.33331,314909.41,0,0,3347.5232 -5308,6570,11957,-9,11955,11952,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.226,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,5,4,1,688.33331,314909.41,0,0,3347.5232 -5309,6571,11958,11959,-9,-9,1,1,1,47,1,0,2,0,1,-9,7,2,0,0,3,7.7199678,7.6398129,0,2,0,-9,18,0,7,-12.665585,1,0,0,40,1,4,1,-9,1,2019,3,2,9,0,25,42,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.119999,53.990002,51.240002,58.84,4,1,1,0,0,12,4,1,474.75,739413.38,0,0,2341.5742 -5309,6571,11959,11958,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.3556242,8.1815214,0,2,0,-9,18,0,-7,27.381659,0,0,1,47,1,3,2,-9,-9,2019,2,1,12,0,28,28,15,1,0,2,0,13.78868,13.78868,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,50.119999,53.990002,6,1,1,0,0,12,4,1,474.75,739413.38,0,0,2341.5742 -5309,6571,11960,-9,11959,11958,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.7523,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,474.75,739413.38,0,0,2341.5742 -5309,6571,11961,-9,11959,11958,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.7786,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,4,1,474.75,739413.38,0,0,2341.5742 -5310,6572,11962,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,7.6265163,7.5067635,3,0,0,0,-9,0,-1079.9771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8906941,7.4150519,0,0,46.84,58.02,-9,-9,6,1,1,0,0,10,3,1,968,1425154,0,0,812.4859 -5311,6573,11963,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,3,0,6.2924075,5.9788647,3,0,0,0,-9,0,-1068.1422,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1001406,6.2378483,0,0,53.98,50.869999,-9,-9,6,1,1,0,0,2,2,1,306,194878.83,0,0,921.10742 -5312,6574,11964,-9,11967,11965,5,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.32568,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,12,4,1,1012.25,444675.78,0,0,3117.5159 -5312,6574,11965,11967,-9,-9,1,1,1,50,1,0,2,0,2,-9,1,1,0,0,3,6.6113067,6.7739315,0,2,0,-9,7,0,-2,-6.7597318,0,0,0,52,2,4,1,3,3,2019,1,2,11,1,60,90,15,1,0,1,0,1.2753385,1.2753385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.5,55.029999,60.130001,49.27,6,3,4,0,0,12,4,1,1012.25,444675.78,0,0,3117.5159 -5312,6574,11966,-9,11967,11965,4,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.13269,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.32702023,0,0,0,56.43,44.349998,-9,-9,6,3,4,0,0,12,4,1,1012.25,444675.78,0,0,3117.5159 -5312,6574,11967,11965,-9,-9,2,1,0,52,1,0,2,0,2,-9,2,1,0,0,4,8.7044353,8.770134,0,2,0,-9,7,0,2,39.481544,0,0,0,50,2,3,1,2,2,2019,1,1,9,0,35,38,15,1,0,1,0,24.326841,24.326841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.130001,49.27,38.5,55.029999,6,3,4,0,1,12,4,1,1012.25,444675.78,0,0,3117.5159 -5313,6575,11968,-9,11969,11971,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-867.41589,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,1,781,228778.83,0,0,2912.7915 -5313,6575,11969,11971,-9,-9,1,1,0,40,1,0,3,0,1,-9,6,3,0,1,3,0,0,0,2,0,-9,20,0,1,-37.911797,0,0,1,39,2,5,1,3,3,2019,3,2,15,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.534413,3,35.950001,36.009998,51.389999,59.18,5,1,1,0,0,12,3,1,781,228778.83,0,0,2912.7915 -5313,6575,11970,-9,11969,11971,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.17712,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,1,781,228778.83,0,0,2912.7915 -5313,6575,11971,11969,-9,-9,2,1,1,39,1,0,3,0,2,-9,2,1,0,0,5,8.4140959,8.4657564,0,2,0,-9,20,0,-1,-100.34474,0,0,0,40,1,3,3,3,-9,2019,2,1,12,0,65,39,15,1,0,3,0,6.8293018,6.8293018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,35.950001,36.009998,7,1,1,0,0,12,3,1,781,228778.83,0,0,2912.7915 -5313,6575,11972,-9,11969,11971,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-956.52277,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,12,3,1,781,228778.83,0,0,2912.7915 -5314,6576,11973,11974,-9,-9,1,1,1,44,1,0,0,0,2,-9,1,1,0,0,4,8.3628359,8.4492893,0,1,0,-9,7,0,-4,96.90741,0,0,0,48,1,2,1,-9,-9,2019,1,2,8,0,40,35,15,1,0,1,0,10.685525,10.685525,0,0,0,0,0,0,0,0,0,0,0,6.1102815,0,0,0,60.119999,54.799999,39.560001,31.200001,6,1,1,0,0,10,5,1,416.5,882820,0,0,4716.2793 -5314,6576,11974,11973,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,2,8.2184544,8.0603628,0,1,0,-9,7,0,4,10.165378,0,0,0,44,2,4,1,-9,-9,2019,1,1,12,0,21,45,15,1,0,1,0,20.483543,20.483543,0,0,0,0,0,0,0,0,0,0,0,8.0531015,0,0,0,39.560001,31.200001,60.119999,54.799999,6,1,1,0,0,10,5,1,416.5,882820,0,0,4716.2793 -5315,6577,11975,11976,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.9194479,8.3027458,6.5125475,1,0,-9,34,0,-4,-2.4951146,0,0,0,62,2,2,1,3,-9,2019,1,2,9,0,38,40,15,1,0,1,0,9.7808628,9.7808628,0,0,0,0,0,0,0,0,0,0,0,0,6.3230801,0,0,38.990002,60.52,54.119999,29.15,5,1,1,0,0,2,5,1,655.5,1849070.4,0,0,4251.1201 -5315,6577,11976,11975,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,8.6413507,8.9472494,7.1607981,1,0,-9,34,0,4,-174.54102,0,0,0,58,2,3,1,3,3,2019,1,1,11,0,40,41,15,1,0,1,0,17.158363,17.158363,0,0,0,0,0,0,0,0,0,0,0,0,7.7522035,0,0,54.119999,29.15,38.990002,60.52,4,1,1,0,0,2,5,1,655.5,1849070.4,0,0,4251.1201 -5316,6578,11977,11978,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,5.7036052,8.4739304,8.475462,1,0,-9,5,0,1,-120.63334,0,0,0,59,2,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5383663,8.4645166,0,0,58.150002,52.91,57.330002,53.459999,6,1,1,0,0,6,5,1,1228,888346.38,0,0,4999.5723 -5316,6578,11978,11977,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,9.1625776,8.857028,0,1,0,-9,5,0,-1,-37.850883,0,0,0,60,2,4,3,2,3,2019,2,2,9,0,42,40,15,1,0,4,0,18.181862,18.181862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,58.150002,52.91,4,4,2,0,0,6,5,1,1228,888346.38,0,0,4999.5723 -5317,6579,11979,11980,-9,-9,1,1,0,47,1,0,0,0,1,-9,6,3,0,0,2,0,0,0,1,0,-9,27,0,-4,0,0,0,0,51,2,2,3,2,-9,2019,4,2,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.1973646,0,0,0,45.98,45.77,47.43,36.529999,4,1,1,0,0,2,1,1,923.5,85476.781,0,0,-507.8407 -5317,6579,11980,11979,-9,-9,2,1,1,51,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,27,0,4,0,0,0,0,47,1,2,3,3,3,2019,4,1,12,0,0,55,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.43,36.529999,45.98,45.77,4,1,1,1,1,2,1,1,923.5,85476.781,0,0,-507.8407 -5317,6580,11981,-9,11979,11980,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.3079767,8.3030348,0,3,0,0,0,-9,0,-1044.8881,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,51,43,15,1,1,-9,1,9.974227,9.974227,0,0,0,0,0,0,0,0,1,0,1,1.2264849,0,0,0,25.84,63.799999,-9,-9,3,1,1,0,0,2,4,1,641,160470.14,0,0,477.93066 -5317,6581,11982,-9,11979,11980,3,1,1,22,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-968.01849,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,22,9,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.213352,0,0,0,44,55,-9,-9,3,1,1,0,1,2,1,1,2280,-161024.28,0,0,-441.99896 -5318,6582,11983,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-790.64539,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.23,52.900002,-9,-9,4,1,1,1,0,4,1,0,1472,73453.695,0,0,1873.5767 -5319,6583,11984,11985,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.4220586,6.6771584,1,0,-9,8,0,0,-26.267204,0,0,0,72,3,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.5031176,0,1,57.189999,42.720001,51,47,6,1,1,0,0,13,2,1,291,232788.31,0,0,1958.1702 -5319,6583,11985,11984,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,0,-38.371944,0,0,0,72,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,10.656652,0,0,0,0,0,1,1,0,0,0,0,0,51,47,57.189999,42.720001,5,1,1,0,0,13,2,1,291,232788.31,0,0,1958.1702 -5320,6584,11986,11987,-9,-9,1,1,1,91,1,0,0,0,1,-9,4,3,0,0,2,0,6.570015,6.5734015,1,0,-9,5,0,24,-44.937458,0,0,0,67,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.9325757,6.8339381,0,0,63.700001,29.17,61.279999,48.880001,7,1,1,0,0,9,2,1,2279.5,905998.5,0,0,2233.1616 -5320,6584,11987,11986,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,5,0,-24,-176.90482,0,0,0,91,1,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,48.880001,63.700001,29.17,7,2,3,0,0,9,2,1,2279.5,905998.5,0,0,2233.1616 -5321,6585,11988,-9,11989,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.3098,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,8,2,0,512,-81083.133,0,0,2446.9629 -5321,6585,11989,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,1,3,6.9431009,6.7530818,0,4,0,0,0,-9,0,-1026.0922,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,2,16,0,15,1,0,-9,0,8.2911491,8.2911491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,19.709999,-9,-9,6,3,4,0,0,8,2,0,512,-81083.133,0,0,2446.9629 -5321,6586,11990,-9,11989,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,0,4,7.9976926,8.2189169,0,3,0,0,0,-9,0,-1092.2391,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,16,0,15,1,0,-9,1,31.64963,31.64963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,3,4,0,0,8,4,0,1655,173387.03,0,0,2125.6079 -5322,6587,11991,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-983.42511,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.27,50.490002,-9,-9,7,1,1,0,0,11,1,1,335,-46880.672,0,0,1864.4674 -5323,6588,11992,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,0,3,0,6.7200551,6.8987556,3,0,0,0,-9,0,-1050.9945,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1567106,6.7748432,0,0,48.290001,47.889999,-9,-9,5,1,1,0,0,10,2,0,174,1769575.6,0,0,854.00024 -5324,6589,11993,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-849.39191,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.450001,24.42,-9,-9,4,3,4,0,1,8,1,0,620,38787.348,0,0,2138.3413 -5325,6590,11994,11995,-9,-9,2,1,0,64,1,0,0,0,2,-9,3,3,0,0,2,0,6.9718838,6.8434277,1,0,-9,45,0,-5,-21.074499,0,0,0,69,2,4,3,3,3,2019,4,1,21,8,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6472261,7.2007751,0,0,44.84,49.009998,57.16,56.150002,4,1,1,1,0,1,3,1,2145,1040198.3,0,0,2822.8755 -5325,6590,11995,11994,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.5179477,7.9148712,1,0,-9,45,0,5,97.73996,0,0,0,64,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.520107,7.5530763,0,0,57.16,56.150002,44.84,49.009998,7,1,1,0,0,1,3,1,2145,1040198.3,0,0,2822.8755 -5326,6591,11996,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,2,7.2186627,7.3755574,0,3,0,-9,0,1,0,-1078.5579,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,20,6,60,57,15,1,1,-9,0,3.0983269,3.0983269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.130001,33.560001,-9,-9,3,1,1,0,0,4,3,0,1078,154499.67,0,0,373.16122 -5327,6592,11997,11998,-9,-9,2,1,0,73,1,0,1,0,3,-9,4,3,0,1,1,0,0,0,2,0,-9,9,0,-10,40.550732,0,0,0,83,3,5,3,3,2,2019,4,1,20,6,0,0,15,4,1,4,0,0,0,1,0,11.622269,11.231303,0,0,0,0,1,1,0,1.0213259,0,0,0,39.610001,30.9,64.279999,40.77,4,2,3,0,0,8,2,1,280.5,462063.81,0,0,2049.1689 -5327,6592,11998,11997,-9,-9,1,1,1,83,1,0,1,0,3,-9,4,3,0,0,5,0,6.3703685,6.6442313,2,0,-9,9,0,10,-28.916477,0,0,0,73,3,1,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.6000881,3.8703122,1,64.279999,40.77,39.610001,30.9,6,2,3,0,0,8,2,1,280.5,462063.81,0,0,2049.1689 -5327,6593,11999,12000,11997,11998,4,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,8.218133,8.020319,0,2,0,-9,9,0,-7,-97.75811,0,0,0,55,2,3,1,3,3,2019,1,3,13,1,41,40,15,1,0,1,0,8.4386454,8.4386454,0,0,0,0,0,0,0,0,1,1,0,4.0300064,0,0,0,45.18,44.040001,41.400002,34.040001,5,2,3,0,0,8,5,1,676.33331,-695.92773,0,0,3551.0276 -5327,6593,12000,11999,-9,-9,3,1,1,55,1,0,1,0,2,-9,2,1,0,0,3,8.6684046,8.5152893,0,2,0,-9,9,0,7,46.941292,0,0,0,48,2,3,1,2,2,2019,1,4,12,2,58,55,15,1,0,1,0,9.1079588,9.1079588,0,0,0,0,0,0,0,0,1,1,0,4.2436399,0,0,0,41.400002,34.040001,45.18,44.040001,5,2,3,0,0,8,5,1,676.33331,-695.92773,0,0,3551.0276 -5327,6593,12001,-9,11999,12000,6,1,1,17,2,0,1,1,2,0,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1002.7094,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7896992,0,2.7365303,3,26.379999,58.669998,-9,-9,5,2,3,0,0,8,5,1,676.33331,-695.92773,0,0,3551.0276 -5327,6594,12002,-9,11999,12000,5,1,1,23,2,0,1,0,1,-9,2,1,0,0,3,8.2891626,8.2922211,0,3,0,0,0,-9,0,-978.81329,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,40,40,15,1,0,-9,1,11.561328,11.561328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.439999,59.970001,-9,-9,6,4,2,0,0,8,4,1,1037,123889.77,0,0,472.31534 -5328,6595,12003,12004,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,2,0,6.3277359,6.6449394,1,0,-9,8,0,2,-48.989246,0,0,0,72,2,2,3,3,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4453554,0,0,37.02,31.83,40.959999,40.82,5,1,1,0,0,12,2,1,629,223782.98,0,0,2333.0056 -5328,6595,12004,12003,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,8,0,-2,149.43735,0,0,0,74,2,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.4482656,0,128.44112,1,40.959999,40.82,37.02,31.83,4,1,1,0,0,12,2,1,629,223782.98,0,0,2333.0056 -5329,6596,12005,12006,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.3935952,7.541399,1,0,-9,10,0,6,-6.9238749,0,0,0,60,1,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9780946,6.8470173,23.96904,3,60.869999,44.959999,57.16,56.150002,6,1,1,0,0,12,4,1,474,797220.31,0,0,2843.9114 -5329,6596,12006,12005,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,7.3747053,8.2063799,6.6089296,1,0,-9,10,0,-6,83.109474,0,0,0,66,2,3,3,3,3,2019,2,2,8,0,18,37,15,1,0,4,0,11.717508,11.717508,0,0,0,0,0,0,0,14.5,1,1,0,0,6.6866536,13.846546,3,57.16,56.150002,60.869999,44.959999,6,1,1,0,0,12,4,1,474,797220.31,0,0,2843.9114 -5330,6597,12007,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,0,3,0,5.9269447,5.8999677,3,0,0,0,-9,0,-1073.0231,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6260595,0,0,54,43,-9,-9,6,1,1,0,0,11,2,1,1747,361488.91,0,0,1855.2855 -5331,6598,12008,12010,-9,-9,1,1,0,28,1,1,1,0,1,-9,2,1,0,0,5,8.0947247,8.065938,0,2,0,-9,6,0,-3,78.006569,0,1,1,31,1,3,1,3,3,2019,1,2,7,0,32,32,15,1,0,1,0,11.090497,11.090497,0,0,0,0,0,0,0,0,1,1,0,2.2540762,0,0,0,57.060001,57.759998,47.150002,56.66,6,1,1,0,0,5,4,1,424.33334,256138.38,0,0,2907.0999 -5331,6598,12009,-9,12008,12010,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.2401,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,424.33334,256138.38,0,0,2907.0999 -5331,6598,12010,12008,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,0,3,8.4908142,8.0298996,0,2,0,-9,6,0,3,-135.19218,0,0,0,28,1,5,1,-9,-9,2019,1,1,7,0,64,45,15,1,0,1,0,8.1382332,8.1382332,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,56.66,57.060001,57.759998,6,1,1,0,0,5,4,1,424.33334,256138.38,0,0,2907.0999 -5332,6599,12011,12012,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,0,2,8.6650257,8.6837521,0,2,0,-9,6,0,-3,57.999439,0,0,0,47,2,3,1,2,2,2019,1,2,27,9,37,37,15,1,1,1,0,21.973335,21.973335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.52,49.700001,36.080002,60.5,5,1,1,0,0,1,5,1,804.33331,616725.81,0,0,3604.0068 -5332,6599,12012,12011,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.5871458,7.9549665,0,2,0,-9,6,0,3,98.922165,0,0,0,44,2,2,1,2,2,2019,1,1,15,4,37,37,15,1,1,1,0,11.837833,11.837833,0,0,0,0,0,0,0,7,0,0,0,0,0,16.039532,3,36.080002,60.5,27.52,49.700001,5,1,1,0,0,1,5,1,804.33331,616725.81,0,0,3604.0068 -5332,6599,12013,-9,12012,12011,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1004.22,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,5,1,804.33331,616725.81,0,0,3604.0068 -5333,6600,12014,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,2,7.5818825,7.9282265,3.1386201,3,0,0,0,-9,0,-936.09729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,39,39,15,1,0,-9,0,6.1528664,6.1528664,0,0,0,0,0,0,0,0,1,1,0,2.8002119,3.1608753,0,0,50.43,29.76,-9,-9,4,1,1,0,0,4,3,1,647,296244.91,0,0,1614.521 -5334,6601,12015,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.4156227,8.2477531,0,3,0,0,0,-9,0,-1018.7057,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,45,40,15,1,0,-9,0,9.4624796,9.4624796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.25,58.669998,-9,-9,7,1,1,0,0,11,4,0,811,215495.63,0,0,3097.8215 -5334,6602,12016,-9,-9,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,7.7694335,7.8073239,0,3,0,0,0,-9,0,-1040.144,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,37,15,1,0,-9,0,7.9344268,7.9344268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,3,0,1645,27689.756,0,0,1487.5779 -5335,6603,12017,12018,-9,-9,2,1,1,83,1,0,0,0,1,-9,4,3,0,0,3,0,7.7993054,7.2244968,1,0,-9,2,0,6,67.056526,0,0,0,77,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6967447,7.2688713,0,0,42.599998,50.450001,57.700001,55.880001,6,1,1,0,0,2,3,1,441.5,848363.38,0,0,2934.5566 -5335,6603,12018,12017,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,6.1669378,6.1761847,1,0,-9,2,0,-6,-117.60418,0,0,0,83,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3654368,6.2452602,0,0,57.700001,55.880001,42.599998,50.450001,6,1,1,0,0,2,3,1,441.5,848363.38,0,0,2934.5566 -5336,6604,12019,12020,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,4.8443933,4.9642243,1,0,-9,52,0,-4,-147.38707,0,0,0,75,3,2,3,3,3,2019,4,2,25,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8709478,0,0,33.91,44.25,49.099998,21.969999,5,1,1,0,0,4,2,1,574,421844.06,0,0,2311.7556 -5336,6604,12020,12019,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,2,0,7.085825,6.7619724,1,0,-9,52,0,4,-22.821228,0,0,0,71,2,2,3,3,3,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4361291,7.3077297,0,0,49.099998,21.969999,33.91,44.25,3,1,1,0,0,4,2,1,574,421844.06,0,0,2311.7556 -5336,6605,12021,-9,-9,12022,3,1,1,13,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-950.26654,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,1,1,901,89558.055,0,0,0 -5336,6605,12022,-9,-9,-9,4,1,1,24,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-955.39435,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,4,1,1,901,89558.055,0,0,0 -5337,6606,12023,-9,-9,-9,3,1,1,61,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-897.16455,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,-9,-9,5,1,1,0,0,1,1,1,597,148453.34,0,0,1351.9457 -5337,6607,12024,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,2,7.575316,7.6450043,0,3,0,0,0,-9,0,-980.79688,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,33,39,15,1,0,-9,0,7.4559932,7.4559932,0,0,0,0,0,0,0,93,1,1,0,0,0,118.40228,3,41.279999,39.560001,-9,-9,3,1,1,0,0,1,3,1,239,339060.16,0,0,997.185 -5337,6608,12025,-9,12024,12023,2,1,1,35,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-946.85162,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.3999996,65.199997,-9,-9,4,1,1,1,0,1,1,1,1190,-40865.344,0,0,561.84546 -5338,6609,12026,-9,12029,12028,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-874.86304,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,813.59998,440285.63,0,0,4068.1907 -5338,6609,12027,-9,12029,12028,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.05194,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,813.59998,440285.63,0,0,4068.1907 -5338,6609,12028,12029,-9,-9,1,1,1,42,1,0,3,0,1,-9,2,1,0,0,4,9.0426083,8.9539948,0,2,0,-9,10,0,0,60.822136,0,0,0,42,1,4,1,2,2,2019,1,2,11,2,43,37,15,1,0,1,0,24.352386,24.352386,0,0,0,0,0,0,0,0,1,1,0,.71556568,0,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,4,4,1,813.59998,440285.63,0,0,4068.1907 -5338,6609,12029,12028,-9,-9,2,1,0,42,1,0,3,0,1,-9,2,1,0,0,4,6.5862088,6.2465892,0,2,0,-9,10,0,0,-63.673843,0,0,1,42,1,4,1,2,2,2019,1,1,7,0,10,6,15,1,0,1,0,9.6405268,9.6405268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,4,4,1,813.59998,440285.63,0,0,4068.1907 -5338,6609,12030,-9,12029,12028,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1064.3259,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,4,4,1,813.59998,440285.63,0,0,4068.1907 -5339,6610,12031,12032,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,0,3,7.7965255,7.7819185,0,1,0,-9,27,0,-5,37.439823,0,0,0,54,2,4,1,2,2,2019,1,1,17,5,50,55,15,1,1,1,0,6.716393,6.716393,0,0,0,0,0,0,0,2,0,0,0,7.8889723,0,7.9841938,3,46.259998,52.900002,47.009998,58,5,1,1,0,0,7,4,1,624,468882,0,0,3130.1128 -5339,6610,12032,12031,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,7.0903869,7.0778699,0,1,0,-9,27,0,5,166.72314,0,0,0,49,2,3,1,2,2,2019,1,2,9,0,16,6,15,1,0,1,0,9.7450981,9.7450981,0,0,0,0,0,0,0,7,0,0,0,0,0,5.1554227,3,47.009998,58,46.259998,52.900002,4,1,1,0,0,7,4,1,624,468882,0,0,3130.1128 -5339,6611,12033,-9,12032,12031,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.510191,7.3253045,0,3,0,0,0,-9,0,-1023.3927,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,63,30,15,1,1,-9,1,3.0153306,3.0153306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.799999,66.199997,-9,-9,3,1,1,0,0,7,3,1,658,1031.8912,0,0,155.60054 -5340,6612,12034,12035,-9,-9,1,1,1,43,1,0,0,0,3,-9,1,1,0,0,4,6.6567602,7.0002217,0,1,0,-9,8,0,-3,47.382908,-9,0,0,46,3,4,3,-9,-9,2019,2,2,9,1,40,0,15,1,0,3,0,2.5490623,2.5490623,0,0,0,0,0,0,0,0,0,0,0,1.2572267,0,0,0,51,56,55.299999,55.599998,6,4,1,0,0,13,2,1,301.5,20835.27,0,0,-26.511444 -5340,6612,12035,12034,-9,-9,2,1,0,46,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,8,0,3,-7.0046687,0,0,0,43,3,4,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,9.5457573,3,55.299999,55.599998,51,56,6,1,1,0,0,13,2,1,301.5,20835.27,0,0,-26.511444 -5340,6613,12036,-9,12035,12034,3,1,0,23,2,0,0,1,1,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-897.92377,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.279999,57.43,-9,-9,6,1,1,0,0,13,1,1,760,0,0,0,1386.9315 -5341,6614,12037,-9,12039,12038,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.11212,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,3,0,895,240857.61,0,0,2280.3787 -5341,6614,12038,12039,-9,-9,1,1,1,49,1,1,2,0,2,-9,2,1,0,0,4,8.6731081,8.4038754,0,2,0,-9,4,0,24,28.994596,0,0,0,25,3,4,3,3,3,2019,2,2,10,0,100,0,15,1,0,3,0,5.984417,5.984417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,48.529999,58.91,5,1,1,0,0,8,3,0,895,240857.61,0,0,2280.3787 -5341,6614,12039,12038,-9,-9,2,1,0,25,1,1,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,-24,-26.793499,0,1,1,49,2,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.529999,58.91,62.490002,55.09,6,1,1,0,0,8,3,0,895,240857.61,0,0,2280.3787 -5341,6615,12040,-9,-9,12038,4,1,0,18,2,1,2,1,2,-9,7,2,0,1,2,0,0,0,3,0,-9,0,-9,0,-1055.2518,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,22,8,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2671556,0,0,0,33.029999,48.830002,-9,-9,4,4,2,0,0,8,3,0,798,219862.98,0,0,2140.0154 -5342,6616,12041,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1024.2924,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1214252,0,0,0,46.619999,55.32,-9,-9,6,1,1,0,0,4,1,0,371,0,0,0,842.27557 -5343,6617,12042,12043,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.3999448,7.0813394,1,0,-9,35,0,-4,-8.7132359,0,0,0,68,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2533922,7.0392666,0,2,53.279999,44.34,53,47,6,3,4,0,0,8,2,1,729,1586095.9,0,0,2383.6074 -5343,6617,12043,12042,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,4,-105.28104,0,0,0,64,2,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,53.279999,44.34,5,3,4,0,0,8,2,1,729,1586095.9,0,0,2383.6074 -5344,6618,12044,-9,-9,-9,1,1,0,93,3,0,0,0,2,-9,4,3,0,0,4,0,7.4388366,7.3620872,3,0,0,0,-9,0,-1012.7181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1876378,7.3264771,0,0,59.880001,48.040001,-9,-9,7,1,1,0,0,12,3,1,676,228330.7,0,0,149.41837 -5345,6619,12045,12046,-9,-9,1,1,0,54,1,0,2,0,2,-9,2,1,0,0,3,8.0812759,7.9632449,0,2,0,-9,8,0,2,-48.907085,0,0,0,52,2,3,1,3,3,2019,1,2,12,2,36,38,15,1,0,1,0,9.6831512,9.6831512,0,0,0,0,0,0,0,0,0,0,0,1.9385219,0,0,0,47,49,49,50,5,3,4,0,0,4,3,1,1055.5,62887.43,0,0,2017.4751 -5345,6619,12046,12045,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,3,7.199347,7.1405101,0,2,0,-9,8,0,-2,-174.79961,-9,0,0,54,2,3,1,3,2,2019,1,1,11,1,38,0,15,1,0,1,0,4.1262755,4.1262755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,47,49,5,3,4,0,0,4,3,1,1055.5,62887.43,0,0,2017.4751 -5345,6620,12047,-9,12045,12046,3,1,0,18,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-975.43451,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.389999,55.84,-9,-9,7,3,4,0,0,4,3,1,2933,0,0,0,0 -5345,6621,12048,-9,12045,12046,4,1,1,18,2,0,2,0,2,-9,3,3,0,0,4,8.28685,7.9538116,0,3,0,0,0,-9,0,-908.34375,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.39382008,0,0,0,47,59,-9,-9,5,4,2,1,0,4,3,1,1044,6845.1206,0,0,2205.0955 -5346,6622,12049,-9,-9,-9,1,1,0,35,3,0,3,0,1,-9,97,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1104.5046,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.95599,3,59.299999,39.290001,-9,-9,6,3,4,0,0,5,1,0,1214,19474.609,0,0,2099.9817 -5346,6622,12050,-9,12049,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-938.3316,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,5,1,0,1214,19474.609,0,0,2099.9817 -5346,6622,12051,-9,12049,-9,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.44702,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,5,1,0,1214,19474.609,0,0,2099.9817 -5346,6622,12052,-9,12049,-9,2,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-950.76025,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,5,1,0,1214,19474.609,0,0,2099.9817 -5347,6623,12053,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,0,2,0,5.9388647,5.2909045,3,0,0,0,-9,0,-996.05646,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7520099,0,0,60.439999,36.049999,-9,-9,6,1,1,0,0,6,2,0,918,544275.81,0,0,509.08279 -5348,6624,12054,12055,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,5.6212564,5.3301468,1,0,-9,9,0,-2,-144.62094,0,0,0,74,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9675422,5.587944,0,0,56.919998,49.389999,52,47,6,1,1,0,0,2,2,1,508.5,395345.69,0,0,882.73792 -5348,6624,12055,12054,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,5.6989708,5.91152,1,0,-9,9,0,2,-10.798173,0,0,0,72,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0961766,6.2676873,0,0,52,47,56.919998,49.389999,5,1,1,0,0,2,2,1,508.5,395345.69,0,0,882.73792 -5349,6625,12056,12061,-9,-9,2,1,1,60,1,0,4,0,3,-9,2,1,0,0,3,7.4574995,7.4970994,0,2,0,-9,19,0,13,170.0667,0,0,0,47,3,2,3,-9,-9,2019,2,1,10,1,40,38,15,1,0,3,0,6.958569,6.958569,0,0,0,0,0,0,0,0,1,1,0,1.7086768,0,0,0,50,49,46.82,45.369999,5,2,3,0,0,5,2,1,1195.8334,866686.38,0,0,1702.5747 -5349,6625,12057,-9,12061,12056,5,1,0,13,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1083.1063,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,5,2,1,1195.8334,866686.38,0,0,1702.5747 -5349,6625,12058,-9,12061,12056,6,1,1,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.0482,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,5,2,1,1195.8334,866686.38,0,0,1702.5747 -5349,6625,12059,-9,12061,12056,3,1,0,16,2,0,4,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-964.7085,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.630001,57.93,-9,-9,4,2,3,0,0,5,2,1,1195.8334,866686.38,0,0,1702.5747 -5349,6625,12060,-9,12061,12056,4,1,0,14,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-993.01532,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,2,3,0,0,5,2,1,1195.8334,866686.38,0,0,1702.5747 -5349,6625,12061,12056,-9,-9,1,1,0,47,1,0,4,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,19,0,-13,-91.702477,0,0,0,60,3,3,1,3,3,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.82,45.369999,50,49,6,2,3,0,0,5,2,1,1195.8334,866686.38,0,0,1702.5747 -5350,6626,12062,-9,12064,12063,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1119.2759,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,12,4,1,261.66666,887912.38,0,0,2236.5586 -5350,6626,12063,12064,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.2014399,7.8459215,0,2,0,-9,9,0,0,-34.836369,0,0,0,50,1,4,1,3,3,2019,1,1,12,1,30,30,15,1,0,1,0,12.00376,12.00376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.290001,41.419998,41.869999,59.150002,5,1,1,0,0,12,4,1,261.66666,887912.38,0,0,2236.5586 -5350,6626,12064,12063,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.2659426,8.4554815,0,2,0,-9,9,0,0,-25.802778,0,0,0,50,2,3,1,3,3,2019,1,2,12,0,30,30,15,1,0,1,0,14.300285,14.300285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.869999,59.150002,39.290001,41.419998,5,1,1,0,0,12,4,1,261.66666,887912.38,0,0,2236.5586 -5351,6627,12065,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,2.40205,2.0180218,3,0,0,0,-9,0,-1097.3896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,1.9750035,21.834322,3,56.740002,55.09,-9,-9,6,1,1,0,0,1,2,1,740,142676.78,0,0,693.56854 -5352,6628,12066,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,8.6342115,8.2557831,0,3,0,0,0,-9,0,-1001.6378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,45,38,15,1,0,-9,0,12.860813,12.860813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,6,3,4,0,0,8,5,0,3121,1129712.4,0,0,2221.4495 -5353,6629,12067,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,4,0,7.7026978,7.6249619,3,0,0,0,-9,0,-1003.6815,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,7.7579403,0,0,0,0,0,0,1,1,0,0,7.4055943,0,0,54.939999,50.330002,-9,-9,6,1,1,0,0,5,3,0,4011,299445.19,0,0,2441.0012 -5354,6630,12068,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,2,1,0,0,3,7.7585392,7.7743635,0,3,0,0,0,-9,0,-1063.9135,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,43,37,15,1,0,-9,0,7.0442791,7.0442791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.939999,49.529999,-9,-9,4,1,1,0,0,10,3,1,2653,-131903.13,0,0,-85.857864 -5354,6631,12069,-9,12068,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,6.7345014,6.8146095,0,3,0,0,0,-9,0,-994.41199,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,17,14,15,1,0,-9,1,5.542273,5.542273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.490002,55.02,-9,-9,5,1,1,0,0,10,2,1,1985,123909.04,0,0,-219.47786 -5354,6632,12070,-9,12068,-9,3,1,1,20,2,0,0,0,2,0,7,2,0,0,4,5.9403176,6.2927136,0,3,0,0,0,-9,0,-1026.3434,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,10,2,1,422,-124082.39,0,0,1456.7579 -5355,6633,12071,12072,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,3,0,6.5787392,6.9724979,1,0,-9,49,0,2,-16.248724,0,0,0,67,1,3,1,-9,-9,2019,3,2,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4097743,6.9136567,0,0,51,46,54.549999,49.25,5,1,1,0,0,4,5,1,563.5,2101775,0,0,3277.4849 -5355,6633,12072,12071,-9,-9,2,1,1,67,1,0,0,0,1,-9,2,1,0,0,3,7.3770585,9.1293859,8.7281532,1,0,-9,5,0,-2,4.7617035,0,0,0,69,1,3,3,1,1,2019,2,1,9,1,8,35,15,1,0,4,0,27.850712,27.850712,0,0,0,0,0,0,0,0,1,1,0,3.6604366,8.4729776,0,0,54.549999,49.25,51,46,6,4,2,0,0,4,5,1,563.5,2101775,0,0,3277.4849 -5356,6634,12073,-9,12077,12075,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.5612,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,0,717.59998,12372.53,0,0,2033.3999 -5356,6634,12074,-9,12077,12075,2,1,1,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1055.0416,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,-9,-9,5,1,1,0,0,4,3,0,717.59998,12372.53,0,0,2033.3999 -5356,6634,12075,12077,-9,-9,5,1,1,34,1,0,3,0,2,-9,2,1,0,0,4,7.6193256,7.739007,0,2,0,1,1,-9,1,80.063019,0,0,0,33,2,4,1,2,2,2019,1,1,10,1,40,46,15,1,0,1,0,6.7803655,6.7803655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,54.200001,57.490002,5,1,1,0,0,4,3,0,717.59998,12372.53,0,0,2033.3999 -5356,6634,12076,-9,12077,12075,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.67627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,717.59998,12372.53,0,0,2033.3999 -5356,6634,12077,12075,-9,-9,1,1,0,33,1,0,3,0,2,-9,2,1,0,0,4,7.0800128,6.998138,0,2,0,1,1,-9,-1,78.840477,0,0,1,34,2,4,1,2,2,2019,1,5,12,0,30,0,15,1,0,1,0,4.3327103,4.3327103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,49,58,6,1,1,0,0,4,3,0,717.59998,12372.53,0,0,2033.3999 -5357,6635,12078,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,1,5,6.6654582,6.7518187,0,3,0,0,0,-9,0,-866.54095,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,10,36,15,1,0,-9,0,8.8053188,8.8053188,0,0,0,0,0,0,0,2,1,1,0,0,0,8.5231447,3,63.98,29.5,-9,-9,7,1,1,0,0,10,2,1,365,-4281.127,0,0,384.66187 -5358,6636,12079,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1082.9131,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,33.360001,-9,-9,5,1,1,0,0,8,1,0,225,12111.378,0,0,-94.350578 -5359,6637,12080,12081,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,1,1,0,7.0171728,6.395164,1,0,-9,8,0,7,30.116072,0,0,0,57,2,3,1,3,3,2019,3,2,15,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8837867,0,0,40.540001,16.6,48.650002,51.93,5,1,1,0,0,11,3,1,1238,707437.75,0,0,2338.6484 -5359,6637,12081,12080,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.8657994,8.308217,0,1,0,-9,8,0,-7,138.96869,0,0,0,64,2,1,3,3,3,2019,2,1,16,4,35,27,15,1,1,4,0,10.431363,10.431363,0,0,0,0,0,0,0,7,1,1,0,0,0,8.3616524,1,48.650002,51.93,40.540001,16.6,4,1,1,0,0,11,3,1,1238,707437.75,0,0,2338.6484 -5360,6638,12082,12084,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,9.0402937,9.024972,0,2,0,-9,13,0,-2,-22.079744,0,0,0,47,1,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,22.417601,22.417601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,47.759998,48.16,6,1,1,0,0,7,5,1,1118.3334,68263.805,0,0,5321.1636 -5360,6638,12083,-9,12084,12082,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.7816,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,1118.3334,68263.805,0,0,5321.1636 -5360,6638,12084,12082,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,3,8.5429926,8.7256203,0,2,0,-9,13,0,2,24.49523,0,0,0,45,1,4,1,2,1,2019,1,2,12,0,37,42,15,1,0,1,0,17.838169,17.838169,0,0,0,0,0,0,0,2,0,0,0,5.337903,0,0,3,47.759998,48.16,52,55,4,1,1,0,0,7,5,1,1118.3334,68263.805,0,0,5321.1636 -5361,6639,12085,12088,-9,-9,1,1,0,54,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,5,103.25063,0,0,0,49,2,4,1,3,3,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.5,18.889999,53,55,5,1,1,0,0,5,3,1,1628.25,20362.029,0,0,2594.4585 -5361,6639,12086,-9,12085,12088,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.5299,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,5,3,1,1628.25,20362.029,0,0,2594.4585 -5361,6639,12087,-9,12085,12088,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.17468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,3,1,1628.25,20362.029,0,0,2594.4585 -5361,6639,12088,12085,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.2934542,8.2478848,0,2,0,-9,6,0,-5,58.934025,0,0,0,54,2,1,3,-9,-9,2019,2,1,9,1,40,39,15,1,0,3,0,10.770198,10.770198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,33.5,18.889999,6,1,1,0,0,5,3,1,1628.25,20362.029,0,0,2594.4585 -5362,6640,12089,-9,12092,-9,4,1,0,8,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-975.1051,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,6,2,1,401.25,91644.398,0,0,2760.9014 -5362,6640,12090,-9,12092,-9,5,1,1,5,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-917.7146,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,6,2,1,401.25,91644.398,0,0,2760.9014 -5362,6640,12091,-9,12092,-9,6,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-914.72968,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,6,2,1,401.25,91644.398,0,0,2760.9014 -5362,6640,12092,-9,-9,-9,2,1,0,57,3,1,1,0,2,-9,6,3,0,0,3,7.2535253,7.585577,0,4,0,0,0,-9,0,-1029.8538,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,20,30,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,3,4,0,1,6,2,1,401.25,91644.398,0,0,2760.9014 -5363,6641,12093,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,11,3,0,1,2,7.3382511,7.3219728,0,4,0,0,0,-9,0,-952.42542,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,7,41,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.942044,3,16.049999,52.529999,-9,-9,3,1,1,0,1,7,2,0,782,-57079.516,0,0,719.2995 -5363,6641,12094,-9,12093,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1047.8525,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,0,782,-57079.516,0,0,719.2995 -5364,6642,12095,-9,12097,12096,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.3299,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,568.66669,275392.88,0,0,4539.4238 -5364,6642,12096,12097,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,8.932992,8.7890224,0,2,0,-9,16,0,3,-49.80957,0,0,0,40,2,3,1,2,1,2019,1,1,9,1,48,48,15,1,0,1,0,17.286581,17.286581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49.290001,54.59,6,1,1,0,0,11,4,1,568.66669,275392.88,0,0,4539.4238 -5364,6642,12097,12096,-9,-9,1,1,0,40,1,0,3,0,2,-9,1,1,0,0,3,7.5336862,7.4403052,0,2,0,-9,17,0,-3,67.880104,0,0,1,43,1,4,1,-9,3,2019,1,2,12,0,30,30,15,1,0,1,0,6.3314948,6.3314948,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,51,56,6,1,1,0,0,11,4,1,568.66669,275392.88,0,0,4539.4238 -5365,6643,12098,12099,-9,-9,3,1,1,56,1,0,0,0,2,-9,8,3,1,1,1,0,8.1710453,8.027319,1,0,-9,2,0,5,121.04292,-9,0,0,51,2,5,3,-9,-9,2019,4,2,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,8.400774,7.9024653,43.030685,3,59.540001,11.06,33.040001,66.239998,6,1,1,0,0,1,3,1,122.5,-46589.648,0,0,2907.4172 -5365,6643,12099,12098,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,1,5,6.0217061,6.0166578,0,1,0,-9,2,0,-5,69.046761,0,0,0,56,2,1,3,-9,-9,2019,4,3,22,10,8,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.755203,2,33.040001,66.239998,59.540001,11.06,5,1,1,0,0,1,3,1,122.5,-46589.648,0,0,2907.4172 -5365,6644,12100,12101,-9,-9,1,1,0,23,1,0,0,0,2,-9,7,2,0,0,5,0,0,0,1,0,-9,2,0,0,0,1,1,1,23,2,1,3,-9,-9,2019,4,4,7,0,0,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,40.150002,58.509998,12.92,55.689999,5,3,4,0,0,1,1,1,821,-15047.684,0,0,-5.5949707 -5365,6644,12101,12100,12099,12098,4,1,1,23,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,2,0,0,0,0,1,0,23,2,5,2,2,2,2019,4,1,18,5,0,38,15,3,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.92,55.689999,40.150002,58.509998,3,1,1,0,0,1,1,1,821,-15047.684,0,0,-5.5949707 -5366,6645,12102,-9,12103,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.02191,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,6,2,0,2244.5,-26548.77,0,0,1192.1855 -5366,6645,12103,-9,-9,-9,1,1,0,38,2,1,1,0,2,-9,2,1,0,0,3,7.4613442,6.8853045,0,4,0,-9,0,0,0,-1089.0067,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,40,22,15,1,0,-9,0,3.895931,3.895931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,55.59,-9,-9,6,4,2,0,0,6,2,0,2244.5,-26548.77,0,0,1192.1855 -5367,6646,12104,12105,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.7332363,7.7299743,1,0,-9,52,0,2,66.644402,0,0,0,73,2,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1677108,7.8068128,0,0,57.73,54.529999,69.489998,15.42,7,1,1,0,0,12,3,1,507.5,706695.31,0,0,2489.2959 -5367,6646,12105,12104,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,52,0,-2,76.657173,0,0,0,75,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,3.9178481,0,0,0,0,14.5,1,1,0,0,0,10.442817,1,69.489998,15.42,57.73,54.529999,6,1,1,0,0,12,3,1,507.5,706695.31,0,0,2489.2959 -5368,6647,12106,-9,12107,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,0,2,0,0,0,4,0,-9,0,-9,0,-919.48022,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,46.380001,-9,-9,6,1,1,0,0,13,3,0,308,185948.63,0,0,1876.0525 -5368,6647,12107,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,0,4,7.960043,7.9433126,4.850244,4,0,-9,0,-9,0,-1136.9459,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,39,0,15,1,0,-9,0,7.9810901,7.9810901,0,0,0,0,0,0,0,0,1,1,0,5.0251112,0,0,0,52,43.310001,-9,-9,5,1,1,0,0,13,3,0,308,185948.63,0,0,1876.0525 -5369,6648,12108,12110,-9,-9,2,1,0,25,1,0,1,0,1,-9,2,1,0,0,4,8.0885181,7.9761152,0,2,0,-9,4,0,1,-108.13573,0,1,1,24,1,4,1,-9,-9,2019,1,1,19,6,35,35,15,1,1,1,0,11.176737,11.176737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.43,62.490002,48.869999,58.549999,6,1,1,0,0,1,4,1,385.66666,-68996.063,0,0,4208.4219 -5369,6648,12109,-9,12108,12110,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.6277,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,4,1,385.66666,-68996.063,0,0,4208.4219 -5369,6648,12110,12108,-9,-9,1,1,1,24,1,0,1,0,1,-9,2,1,0,0,4,8.2334166,8.1749392,0,2,0,-9,4,0,-1,46.517464,0,1,0,25,1,4,1,2,2,2019,1,2,11,1,40,35,15,1,0,1,0,8.1110191,8.1110191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,20.43,62.490002,4,1,1,0,0,1,4,1,385.66666,-68996.063,0,0,4208.4219 -5370,6649,12111,12113,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,4,9.3243818,9.0643473,0,2,0,-9,6,0,2,87.342575,0,0,0,38,1,5,1,-9,-9,2019,1,1,9,1,38,41,15,1,0,1,0,39.044014,39.044014,0,0,0,0,0,0,0,0,0,0,0,1.235636,0,0,0,52,56,57.060001,57.759998,5,1,1,0,0,9,5,1,494.25,1116968.4,0,0,4335.2397 -5370,6649,12112,-9,12113,12111,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.44714,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,494.25,1116968.4,0,0,4335.2397 -5370,6649,12113,12111,-9,-9,1,1,0,38,1,0,2,0,1,-9,1,1,0,0,5,6.8267879,6.8398767,0,2,0,-9,18,0,-2,-88.873192,0,0,1,40,1,4,1,3,2,2019,1,2,8,0,16,8,15,1,0,1,0,5.2361255,5.2361255,0,0,0,0,0,0,0,0,0,0,0,2.5500088,0,0,0,57.060001,57.759998,52,56,6,1,1,0,0,9,5,1,494.25,1116968.4,0,0,4335.2397 -5370,6649,12114,-9,12113,12111,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.71021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,494.25,1116968.4,0,0,4335.2397 -5371,6650,12115,-9,-9,-9,1,1,0,78,2,0,0,0,1,-9,4,3,0,0,3,0,3.5041449,3.5134847,3,0,0,0,-9,0,-921.98291,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.5839497,0,0,1,1,0,0,3.5466835,0,0,54.130001,42.84,-9,-9,6,1,1,0,0,4,1,1,592,498959.38,0,0,285.87973 -5372,6651,12116,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,4,8.1356993,8.3535042,0,3,0,0,0,-9,0,-958.13416,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,41,15,1,0,-9,0,10.359303,10.359303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,2,4,1,1377,36071.418,0,0,2454.5586 -5373,6652,12117,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,5,0,6.9841752,6.7300553,3,0,0,0,-9,0,-1070.3781,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8959827,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,12,2,1,466,135649.11,0,0,2145.0527 -5374,6653,12118,12120,-9,-9,2,1,1,45,1,0,1,0,3,-9,1,1,0,0,4,8.0663462,8.461297,0,2,0,-9,5,0,3,-69.806671,0,0,0,42,2,3,1,-9,-9,2019,1,1,9,1,35,40,15,1,0,1,0,13.631003,13.631003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,45.459999,52.150002,6,1,1,0,0,2,3,1,459.66666,237239.08,0,0,2106.4448 -5374,6653,12119,-9,12120,12118,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.85577,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,459.66666,237239.08,0,0,2106.4448 -5374,6653,12120,12118,-9,-9,1,1,0,42,1,0,1,0,2,-9,1,1,0,0,3,6.8641572,6.7208991,0,2,0,-9,10,0,-3,-35.412655,0,0,1,45,3,4,1,-9,-9,2019,1,2,6,0,30,14,15,1,0,1,0,2.5442736,2.5442736,0,0,0,0,0,0,0,7,1,1,0,0,0,4.5392199,3,45.459999,52.150002,52,55,6,1,1,0,0,2,3,1,459.66666,237239.08,0,0,2106.4448 -5375,6654,12121,12122,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,5.8405886,6.0954185,0,1,0,-9,44,0,-10,117.22855,0,0,0,73,2,4,3,2,2,2019,4,1,6,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2985535,0,0,0,57.060001,57.759998,41.169998,59.310001,7,1,1,0,0,10,2,1,744.5,798315,0,0,2388.0981 -5375,6654,12122,12121,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,6.1811261,7.2491202,6.5846329,1,0,-9,44,0,10,38.927982,0,0,0,63,2,5,3,2,2,2019,4,2,9,0,4,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8599081,0,0,41.169998,59.310001,57.060001,57.759998,6,1,1,0,0,10,2,1,744.5,798315,0,0,2388.0981 -5376,6655,12123,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,4,3,0,0,5,0,8.2187729,7.9694448,3,0,0,0,-9,0,-1156.2737,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.707211,0,0,53.509998,60.740002,-9,-9,6,2,3,0,0,8,4,1,472,1050051.6,0,0,944.76465 -5377,6656,12124,-9,12125,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,7.9783697,8.1859026,0,3,0,0,0,-9,0,-986.22632,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,37,15,1,0,-9,1,8.2130575,8.2130575,0,0,0,0,0,0,0,2,1,1,0,0,0,2.7164435,3,44.209999,60.790001,-9,-9,3,1,1,0,0,4,3,1,175,88092.68,0,0,786.0329 -5377,6657,12125,-9,-9,-9,2,1,0,59,3,0,0,0,2,-9,8,3,1,1,2,0,5.1494288,5.6597323,3,0,0,0,-9,0,-1012.9622,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2910769,5.109694,0,0,35.439999,36.709999,-9,-9,3,1,1,0,0,4,2,1,444,-24610.439,0,0,754.65613 -5378,6658,12126,12127,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.5096574,7.3613453,0,2,0,-9,9,0,-6,163.59483,0,0,1,44,2,3,1,2,-9,2019,1,2,10,0,27,0,15,1,0,1,0,7.4988632,7.4988632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,55.360001,51.57,6,1,1,0,0,4,3,1,1080.5,221385.16,0,0,1972.269 -5378,6658,12127,12126,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.4598761,8.2760487,0,2,0,-9,9,0,6,-49.433453,0,0,0,38,2,3,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,9.0026979,9.0026979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,49.290001,54.59,3,1,1,0,0,4,3,1,1080.5,221385.16,0,0,1972.269 -5378,6658,12128,-9,12126,12127,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.4902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,1,1080.5,221385.16,0,0,1972.269 -5378,6658,12129,-9,12126,12127,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1121.5482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,1,1080.5,221385.16,0,0,1972.269 -5379,6659,12130,12131,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.0507903,7.3799477,1,0,-9,10,0,4,56.074688,0,0,0,74,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4152737,7.5205803,0,0,49.119999,57.279999,56.75,49.400002,7,1,1,0,0,13,4,1,380.5,1564093.9,0,0,3719.9673 -5379,6659,12131,12130,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,8.160635,8.3366098,1,0,-9,10,0,-4,-55.97797,0,0,0,78,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.755852,8.0453796,0,0,56.75,49.400002,49.119999,57.279999,6,1,1,0,0,13,4,1,380.5,1564093.9,0,0,3719.9673 -5380,6660,12132,12133,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,8.6066465,8.591157,1,0,-9,36,0,6,11.952607,0,0,0,60,1,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9296608,8.5844231,6.5632482,3,49.040001,55.860001,54.200001,57.490002,6,1,1,0,0,8,5,1,445,3254570,0,0,5861.9971 -5380,6660,12133,12132,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,7.0418425,8.3212118,7.9276781,1,0,-9,43,0,-6,-121.34309,0,0,0,66,1,3,3,3,3,2019,4,1,6,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2908821,8.4355192,2.1912744,3,54.200001,57.490002,49.040001,55.860001,6,1,1,0,0,8,5,1,445,3254570,0,0,5861.9971 -5381,6661,12134,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,3,0,6.4841757,6.2579541,3,0,0,0,-9,0,-1002.7181,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,17.34519,0,5.1403089,0,0,171.52094,0,1,1,0,0,5.8223062,0,0,53,46,-9,-9,5,1,1,0,0,10,2,1,906,745546.25,0,0,1314.3062 -5382,6662,12135,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,0,4,7.7356057,7.5257077,0,4,0,0,0,-9,0,-885.05957,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,23,23,15,1,0,-9,0,10.840423,10.840423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,3,0,1470.5,54270.574,0,0,2407.1563 -5382,6662,12136,-9,12135,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1021.602,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,0,1470.5,54270.574,0,0,2407.1563 -5383,6663,12137,-9,-9,-9,1,1,0,28,2,1,4,0,2,-9,6,3,0,0,4,0,5.4728417,5.7687807,4,0,-9,0,-9,0,-919.05719,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1501918,0,0,0,46,58,-9,-9,5,1,1,0,0,4,2,0,866.59998,-28757.145,0,0,2053.1128 -5383,6663,12138,-9,12137,-9,3,1,1,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1040.7357,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,2,0,866.59998,-28757.145,0,0,2053.1128 -5383,6663,12139,-9,12137,-9,2,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-955.81665,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,2,0,866.59998,-28757.145,0,0,2053.1128 -5383,6663,12140,-9,12137,-9,5,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1063.2494,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,2,0,866.59998,-28757.145,0,0,2053.1128 -5383,6663,12141,-9,12137,-9,4,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1002.4191,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,2,0,866.59998,-28757.145,0,0,2053.1128 -5384,6664,12142,12143,-9,-9,1,1,0,41,1,1,1,0,1,-9,5,1,0,0,4,7.1207685,7.1728849,0,2,0,-9,7,0,9,67.744278,0,0,1,32,1,4,1,2,2,2019,1,2,7,0,28,30,15,1,0,1,0,4.8512087,4.8512087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.310001,58.290001,43.540001,59.599998,7,1,1,0,0,7,3,0,296,-127535.61,0,0,3412.624 -5384,6664,12143,12142,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,0,4,7.8184056,7.8939137,0,2,0,-9,7,0,0,112.24316,0,0,0,41,1,4,1,1,2,2019,1,1,10,3,40,40,15,1,0,1,0,5.4920897,5.4920897,0,0,0,0,0,0,0,0,1,1,0,3.1797898,0,0,0,43.540001,59.599998,52.310001,58.290001,5,1,1,0,0,7,3,0,296,-127535.61,0,0,3412.624 -5384,6664,12144,-9,12142,12143,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.5895,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,296,-127535.61,0,0,3412.624 -5385,6665,12145,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,1,1,0,0,4,8.2010965,8.2531681,0,3,0,0,0,-9,0,-1046.7562,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.259998,59.43,-9,-9,5,1,1,0,0,8,4,0,828,-156545.23,0,0,1323.7202 -5386,6666,12146,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,0,3,0,7.170763,6.9273357,3,0,0,0,-9,0,-880.68799,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.856534,0,0,63.029999,32.939999,-9,-9,6,1,1,0,0,11,2,1,160,390143,0,0,1174.2504 -5387,6667,12147,-9,-9,-9,1,1,0,79,2,0,0,0,3,-9,4,3,0,0,3,0,6.3369589,6.5861468,3,0,0,0,-9,0,-1163.0723,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.4743378,6.7896633,0,0,55.650002,41.830002,-9,-9,6,1,1,0,0,10,2,1,2069,150246.34,0,0,-512.30096 -5387,6668,12148,-9,12147,-9,2,1,1,53,2,0,0,0,2,-9,2,1,0,0,2,8.2795458,8.2906256,0,3,0,0,0,-9,0,-989.90704,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,35,35,15,1,0,-9,1,10.976067,10.976067,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.678543,3,45,40,-9,-9,5,1,1,0,0,10,4,1,796,266288.41,0,0,1262.1957 -5388,6669,12149,-9,12151,12150,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1179.7512,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,601.66669,636750.69,0,0,4457.2104 -5388,6669,12150,12151,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.5990009,8.9480972,0,2,0,-9,18,0,0,37.937229,0,0,0,42,1,4,1,3,2,2019,1,2,9,0,48,51,15,1,0,1,0,11.86495,11.86495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.130001,48.919998,54.790001,55.860001,6,1,1,0,0,12,5,1,601.66669,636750.69,0,0,4457.2104 -5388,6669,12151,12150,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,0,4,8.9845324,8.698658,0,2,0,-9,18,0,0,-6.087832,0,0,1,42,1,4,1,2,2,2019,1,1,6,0,35,35,15,1,0,1,0,26.7395,26.7395,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,49.130001,48.919998,6,1,1,0,0,12,5,1,601.66669,636750.69,0,0,4457.2104 -5389,6670,12152,12153,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.6700439,8.8600359,0,1,0,-9,33,0,3,70.303215,0,0,0,53,1,5,1,3,3,2019,1,1,12,0,37,38,15,1,0,1,0,22.358362,22.358362,0,0,0,0,0,0,0,0,0,0,0,4.09196,0,0,0,45,55.119999,57.060001,57.759998,5,1,1,0,0,1,5,1,752.5,1062399.3,0,0,3853.8582 -5389,6670,12153,12152,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,0,5,7.23419,7.2943182,0,1,0,-9,33,0,-3,-75.673027,0,0,0,56,2,3,1,3,2,2019,1,2,6,0,18,20,15,1,0,1,0,9.6511793,9.6511793,0,0,0,0,0,0,0,0,0,0,0,2.5839386,0,0,0,57.060001,57.759998,45,55.119999,6,1,1,0,0,1,5,1,752.5,1062399.3,0,0,3853.8582 -5390,6671,12154,12155,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,1,2,0,5.6694546,5.6552005,1,0,-9,6,0,-3,-33.847908,0,0,0,75,2,4,3,2,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,18.351049,0,0,0,0,0,1,1,0,5.5003324,6.1479869,0,0,38.580002,36.130001,57.16,56.150002,6,1,1,0,0,12,2,1,1726,474712.38,0,0,1922.5142 -5390,6671,12155,12154,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.7963858,6.7195754,1,0,-9,6,0,3,197.37688,0,0,0,72,2,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5334702,0,0,57.16,56.150002,38.580002,36.130001,7,1,1,0,0,12,2,1,1726,474712.38,0,0,1922.5142 -5391,6672,12156,12157,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,4,8.00877,8.1968088,0,1,0,-9,9,0,2,-22.820782,0,0,0,30,2,2,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,10.089452,10.089452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.779999,53.93,10.93,37.200001,5,1,1,0,0,5,4,0,960.5,686072.38,0,0,2300.4617 -5391,6672,12157,12156,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,2,7.8602214,7.8211474,0,1,0,-9,9,0,-2,-37.424915,0,0,1,32,2,4,1,1,2,2019,1,2,33,11,23,47,15,1,1,1,0,10.899638,10.899638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.93,37.200001,43.779999,53.93,1,1,1,0,1,5,4,0,960.5,686072.38,0,0,2300.4617 -5392,6673,12158,-9,12160,12159,2,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.28857,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,1,775,115250.17,0,0,2586.0342 -5392,6673,12159,12160,-9,-9,4,1,1,43,1,0,3,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,6,0,3,16.42658,0,0,0,40,2,5,1,-9,-9,2019,1,1,7,0,45,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,51.389999,59.18,6,1,1,0,0,2,2,1,775,115250.17,0,0,2586.0342 -5392,6673,12160,12159,-9,-9,1,1,0,40,1,0,3,0,2,-9,2,1,0,0,5,7.9981122,7.9435973,5.864677,2,0,-9,6,0,-3,-13.955032,0,0,1,43,2,4,1,2,2,2019,1,4,12,2,40,32,15,1,0,1,0,9.8717928,9.8717928,0,0,0,0,0,0,0,7,1,1,0,6.2838612,0,17.828413,3,51.389999,59.18,55.189999,54.259998,6,1,1,0,0,2,2,1,775,115250.17,0,0,2586.0342 -5392,6673,12161,-9,12160,12159,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-855.1087,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,1,775,115250.17,0,0,2586.0342 -5392,6673,12162,-9,12160,12159,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.2052,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,1,775,115250.17,0,0,2586.0342 -5393,6674,12163,12164,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,5,7.0044174,6.7909026,0,1,0,-9,28,0,-2,-105.9655,0,0,0,54,2,4,1,3,3,2019,1,2,6,0,17,0,15,1,0,1,0,8.2233915,8.2233915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,62.490002,55.09,7,1,1,0,0,2,3,1,885.5,308960.5,0,0,1095.6426 -5393,6674,12164,12163,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,7.6617942,7.5971804,0,1,0,-9,27,0,2,.79678762,0,0,0,52,2,5,1,-9,-9,2019,1,1,6,0,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,62.389999,56.709999,6,1,1,0,0,2,3,1,885.5,308960.5,0,0,1095.6426 -5393,6675,12165,-9,12163,12164,3,1,1,19,2,0,0,1,2,0,7,2,0,0,5,6.9011884,7.0350108,0,3,0,0,0,-9,0,-921.64789,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,2,2,1,333,40134.867,0,0,-75.891869 -5394,6676,12166,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,0,4,7.2246852,7.4045429,0,4,0,-9,0,-9,0,-928.48914,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,16,16,15,1,0,-9,0,10.849152,10.849152,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,1,13,2,0,213,186320.42,0,0,549.16504 -5395,6677,12167,-9,-9,-9,1,1,0,87,2,0,0,0,2,-9,4,3,0,0,5,0,7.3834052,7.1353574,3,0,0,0,-9,0,-929.47968,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21770541,7.0923181,0,0,56.669998,53.830002,-9,-9,7,1,1,0,0,7,2,0,707,80211.422,0,0,1991.7484 -5396,6678,12168,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,1,7.6745815,7.8185577,6.6885076,3,0,0,0,-9,0,-996.36108,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,8,30,35,15,1,1,-9,0,7.7475758,7.7475758,0,0,0,0,0,0,0,0,1,1,0,7.7597718,0,0,0,47.060001,11.29,-9,-9,4,1,1,0,1,2,4,0,643,508179.5,0,0,1161.278 -5397,6679,12169,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,3,7.7240839,7.6977181,0,3,0,-9,0,-9,0,-1021.439,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,26,29,15,1,0,-9,0,13.305553,13.305553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.939999,-9,-9,6,1,1,0,0,11,3,1,1799,242503.58,0,0,1242.772 -5398,6680,12170,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,-9,0,1,0,-960.591,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,24.220789,0,0,0,1,1,0,0,0,0,0,27.459999,30.959999,-9,-9,4,1,1,0,0,4,1,1,662,10799.498,0,0,834.63812 -5398,6681,12171,-9,-9,12170,2,1,1,23,2,0,0,0,2,1,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1112.9113,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.747247,3,27.139999,47.34,-9,-9,2,1,1,0,1,4,1,1,212,-132700,0,0,315.06705 -5398,6682,12172,-9,-9,12170,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.9748583,8.0627851,0,3,0,0,0,-9,0,-990.47638,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,44,38,15,1,0,-9,1,5.3423705,5.3423705,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.098196,3,29.5,45.939999,-9,-9,4,1,1,0,0,4,3,1,1237,-197964.8,0,0,354.73248 -5399,6683,12173,12174,-9,-9,2,1,1,58,1,0,1,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,29,0,5,-78.254318,0,0,0,53,3,5,1,1,1,2019,1,1,6,1,42,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6019773,0,0,0,57.060001,57.759998,41.950001,46.639999,6,4,2,0,0,8,2,1,724,594497.19,0,0,1740.0493 -5399,6683,12174,12173,-9,-9,1,1,0,53,1,0,1,0,3,-9,2,1,0,0,5,7.4598284,7.9248171,0,2,0,-9,29,0,-5,-72.899658,0,0,0,58,2,5,1,2,3,2019,1,2,9,1,16,15,15,1,0,1,0,12.727953,12.727953,0,0,0,0,0,0,0,0,1,1,0,3.9391661,0,0,0,41.950001,46.639999,57.060001,57.759998,7,1,1,0,0,8,2,1,724,594497.19,0,0,1740.0493 -5399,6683,12175,-9,12174,12173,4,1,0,17,2,0,1,1,2,0,7,2,0,0,5,5.8020082,5.9621005,0,2,0,0,0,-9,0,-998.0481,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.099998,59.709999,-9,-9,7,1,1,0,0,8,2,1,724,594497.19,0,0,1740.0493 -5400,6684,12176,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,2,0,6.9709287,7.2967877,3,0,0,0,-9,0,-1054.5282,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4825854,0,0,60.830002,37.279999,-9,-9,6,1,1,0,0,13,3,1,2484,76350.273,0,0,2472.0657 -5401,6685,12177,12178,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,5.6656656,5.6305175,1,0,-9,33,0,13,154.0983,0,0,0,65,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.495697,5.7540331,0,0,57.509998,47.91,52,48,6,1,1,0,0,9,2,1,411,55583.09,0,0,2484.3511 -5401,6685,12178,12177,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-13,-78.584656,0,0,0,78,2,3,3,-9,-9,2019,4,1,10,1,0,25,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,57.509998,47.91,5,1,1,0,0,9,2,1,411,55583.09,0,0,2484.3511 -5402,6686,12179,-9,12181,-9,2,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1091.835,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,628.33331,-27453.014,0,0,2337.3042 -5402,6686,12180,-9,12181,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1144.4324,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,628.33331,-27453.014,0,0,2337.3042 -5402,6686,12181,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,6,3,0,0,2,0,4.9730697,4.6345677,4,0,0,0,-9,0,-999.4007,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7336068,0,0,0,44.959999,53.970001,-9,-9,4,1,1,0,0,10,1,0,628.33331,-27453.014,0,0,2337.3042 -5403,6687,12182,12183,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,0,2,7.5280223,7.4657578,0,2,0,-9,21,0,-4,13.838202,0,0,1,43,2,3,1,2,2,2019,1,1,11,0,23,24,15,1,0,1,0,9.6617537,9.6617537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.799999,41.610001,48.150002,4,1,1,0,0,8,4,1,1280.5,303315.63,0,0,3884.1162 -5403,6687,12183,12182,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.6973324,8.6916637,0,2,0,-9,21,0,4,-71.150124,0,0,0,39,2,2,1,-9,-9,2019,1,2,12,0,40,40,15,1,0,1,0,17.398712,17.398712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.610001,48.150002,46.91,51.799999,4,1,1,0,0,8,4,1,1280.5,303315.63,0,0,3884.1162 -5403,6687,12184,-9,12182,12183,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.42017,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,4,1,1280.5,303315.63,0,0,3884.1162 -5403,6687,12185,-9,12182,12183,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.1833,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1280.5,303315.63,0,0,3884.1162 -5404,6688,12186,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,2,1,0,0,5,7.5099859,7.4813819,0,4,0,0,0,-9,0,-880.00378,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,36,27,15,1,0,-9,0,6.4145985,6.4145985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,7,2,1,281.66666,189131.09,0,0,2043.1505 -5404,6688,12187,-9,12186,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,5.6879754,5.5795264,0,4,0,0,0,-9,0,-1210.7063,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,7,2,1,281.66666,189131.09,0,0,2043.1505 -5404,6688,12188,-9,12186,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-907.71857,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,7,2,1,281.66666,189131.09,0,0,2043.1505 -5405,6689,12189,-9,-9,-9,1,1,0,42,3,0,0,0,1,-9,2,1,0,0,1,8.0428305,7.8530188,0,3,0,0,0,-9,0,-865.23535,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,9,19,0,15,1,1,-9,0,12.917922,12.917922,0,0,0,0,0,0,0,2,0,0,0,2.283742,0,5.7598119,3,35.470001,20.780001,-9,-9,2,1,1,0,0,12,3,1,279,114333.29,0,0,1878.3231 -5406,6690,12190,12191,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,3,7.3465385,7.974864,0,1,0,-9,8,0,3,123.49461,0,0,0,58,2,3,1,3,3,2019,1,2,13,1,45,40,15,1,0,1,0,5.3787498,5.3787498,0,0,0,0,0,0,0,0,0,0,0,2.7465184,0,0,0,56.5,48.330002,54.959999,53.169998,6,1,1,0,0,13,4,1,702,27013.168,0,0,2400.6245 -5406,6690,12191,12190,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.081687,7.9135838,0,1,0,-9,8,0,-3,-17.417725,0,0,0,61,2,3,1,3,3,2019,1,1,7,0,37,37,15,1,0,1,0,8.9231834,8.9231834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,56.5,48.330002,6,1,1,0,0,13,4,1,702,27013.168,0,0,2400.6245 -5407,6691,12192,12193,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,31,0,16,-31.06296,0,0,0,50,3,2,1,3,3,2019,3,1,13,5,0,0,15,4,1,1,0,0,0,1,0,28.765245,0,5.4695129,0,0,2,1,1,0,0,0,.14747912,3,47.59,17.43,48.450001,36.23,7,1,1,0,1,7,2,0,489.5,367382.63,0,0,1708.3188 -5407,6691,12193,12192,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,1,2,6.8963404,7.1524434,0,1,0,-9,31,0,-16,-47.774132,0,0,0,66,3,2,3,-9,-9,2019,2,2,20,8,15,15,15,1,1,4,0,7.4778371,7.4778371,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.9128761,2,48.450001,36.23,47.59,17.43,4,1,1,0,0,7,2,0,489.5,367382.63,0,0,1708.3188 -5408,6692,12194,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,2,0,6.0305486,5.9367366,3,0,0,0,-9,0,-1121.1294,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1301084,0,0,39.439999,41.830002,-9,-9,5,1,1,0,0,13,2,1,441,259080.95,0,0,474.2514 -5409,6693,12195,12196,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,11,0,5,0,0,0,0,61,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,30.985199,1,48.529999,36.099998,36.779999,30.610001,5,1,1,0,0,10,1,0,537.5,104839.11,0,0,2179.1387 -5409,6693,12196,12195,-9,-9,2,1,0,61,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,11,0,-5,0,0,0,0,66,3,2,3,3,2,2019,4,1,14,3,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.779999,30.610001,48.529999,36.099998,6,1,1,0,0,10,1,0,537.5,104839.11,0,0,2179.1387 -5410,6694,12197,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-965.9751,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.689999,23.75,-9,-9,4,2,3,0,0,6,1,0,146,94113.195,0,0,538.78821 -5411,6695,12198,12199,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,0,4,8.3864193,8.449625,0,1,0,-9,32,0,-13,-54.585487,0,0,0,71,3,2,1,3,3,2019,1,1,8,0,60,77,15,1,0,1,0,9.75214,9.75214,0,0,0,0,0,0,0,0,0,0,0,2.6772466,0,0,0,60.119999,54.799999,44.07,39.470001,7,1,1,0,0,5,5,1,1750.5,650744.88,0,0,6723.5176 -5411,6695,12199,12198,-9,-9,1,1,1,71,1,0,0,0,3,-9,1,1,0,0,2,9.4078074,9.7471304,0,1,0,-9,32,0,13,64.972084,0,0,0,58,2,4,1,3,3,2019,1,2,9,0,60,50,15,1,0,1,0,24.874231,24.874231,0,0,0,0,0,0,0,0,0,0,0,2.137502,0,0,0,44.07,39.470001,60.119999,54.799999,5,1,1,0,0,5,5,1,1750.5,650744.88,0,0,6723.5176 -5411,6696,12200,-9,12198,12199,3,1,1,22,2,0,0,0,1,-9,7,2,0,0,4,7.1646943,7.2718067,0,3,0,0,0,-9,0,-1058.9106,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,16,24,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,5,3,1,2579,149468.58,0,0,1775.4015 -5412,6697,12201,12202,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.8293381,7.7891326,1,0,-9,50,0,-1,160.67583,0,0,0,71,2,4,3,3,3,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5425901,8.0031929,0,0,48.880001,50.52,55.93,52.619999,6,1,1,0,0,6,4,1,670.5,1342815.3,0,0,4351.377 -5412,6697,12202,12201,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.245182,8.2942352,1,0,-9,50,0,1,-84.442162,0,0,0,70,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5057688,8.1454239,0,0,55.93,52.619999,48.880001,50.52,6,1,1,0,0,6,4,1,670.5,1342815.3,0,0,4351.377 -5413,6698,12203,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,0,4,9.0606394,9.4361973,0,3,0,0,0,-9,0,-1026.8531,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,65,70,15,1,0,-9,0,19.17174,19.17174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.139999,52.5,-9,-9,6,1,1,0,0,7,5,0,524,239128.72,0,0,3402.9871 -5414,6699,12204,12205,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,1,3,0,6.6097488,6.9531178,1,0,-9,62,0,5,53.060966,0,0,0,81,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1106262,0,0,49.02,42.18,52,45,5,1,1,0,0,11,2,1,661,670283.63,0,0,1783.7155 -5414,6699,12205,12204,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,62,0,-5,-116.92445,0,0,0,86,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,6.7396717,4.2603922,0,0,0,0,1,1,0,0,0,0,0,52,45,49.02,42.18,6,1,1,0,0,11,2,1,661,670283.63,0,0,1783.7155 -5415,6700,12206,-9,-9,-9,1,1,1,71,2,0,0,0,1,-9,4,3,0,0,4,0,7.5870337,7.7881198,3,0,-9,0,0,0,-1071.8623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.0528774,7.2945151,16.887098,3,57.73,54.529999,-9,-9,6,1,1,0,0,10,3,1,2663,463939.59,0,0,1549.5447 -5416,6701,12207,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-923.69177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,1,0,13,1,0,821,0,0,0,646.56213 -5417,6702,12208,12209,-9,-9,2,1,1,36,1,0,3,0,2,-9,2,1,0,0,4,8.4219065,8.6611996,0,2,0,-9,9,0,1,-14.766066,0,0,0,35,2,3,1,-9,-9,2019,1,1,8,0,44,40,15,1,0,1,0,10.273898,10.273898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,40.25,39.529999,5,1,1,0,0,5,4,1,584.25,304974.28,0,0,3568.0654 -5417,6702,12209,12208,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,0,3,8.0383873,8.2108669,0,2,0,-9,14,0,-1,-141.60301,-9,0,1,36,2,4,1,2,2,2019,1,2,13,2,45,0,15,1,0,1,0,10.119645,10.119645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.25,39.529999,45.91,59.889999,5,1,1,0,0,5,4,1,584.25,304974.28,0,0,3568.0654 -5417,6702,12210,-9,12209,12208,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.4127,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,584.25,304974.28,0,0,3568.0654 -5417,6702,12211,-9,12209,12208,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.5331,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,584.25,304974.28,0,0,3568.0654 -5418,6703,12212,-9,12213,-9,4,1,0,16,2,0,3,1,2,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-921.1496,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.16,48.060001,-9,-9,2,3,4,0,0,6,1,0,249,54874.348,0,0,2469.9465 -5418,6703,12213,-9,-9,-9,1,1,0,45,2,0,3,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-906.22095,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.049999,19.030001,-9,-9,1,4,2,0,1,6,1,0,249,54874.348,0,0,2469.9465 -5418,6703,12214,-9,12213,-9,5,1,0,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-983.24414,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,4,2,0,0,6,1,0,249,54874.348,0,0,2469.9465 -5418,6704,12215,-9,12213,-9,2,1,1,25,2,0,3,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1016.3598,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.9632697,3,47.959999,36.599998,-9,-9,3,4,2,1,1,6,1,0,245,70099.266,0,0,-1402.0958 -5419,6705,12216,12217,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.4538002,8.6797323,0,1,0,-9,31,0,0,-11.72472,0,0,0,58,2,3,1,3,3,2019,1,2,8,1,38,40,15,1,0,1,0,18.154114,18.154114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.630001,45.169998,62.990002,44.02,6,1,1,0,0,4,5,1,1112,1035971.8,0,0,2861.5166 -5419,6705,12217,12216,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.7525053,7.9540334,0,1,0,-9,31,0,0,-214.24837,0,0,0,58,2,3,1,3,3,2019,1,1,6,0,32,32,15,1,0,1,0,10.289064,10.289064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.990002,44.02,54.630001,45.169998,6,1,1,0,0,4,5,1,1112,1035971.8,0,0,2861.5166 -5420,6706,12218,12219,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.9952459,8.4644012,0,1,0,-9,34,0,3,-2.5174408,0,0,0,54,2,3,1,2,2,2019,1,1,11,1,45,48,15,1,0,1,0,19.607252,19.607252,0,0,0,0,0,0,0,0,1,1,0,2.3340774,0,0,0,50.91,54.790001,55.950001,34.799999,6,1,1,0,0,4,5,1,202,1459822.8,0,0,2922.6133 -5420,6706,12219,12218,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.8376899,8.1961155,0,1,0,-9,32,0,-3,103.77146,0,0,0,57,1,4,1,2,2,2019,1,2,10,0,24,26,15,1,0,1,0,14.429983,14.429983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.950001,34.799999,50.91,54.790001,6,1,1,0,0,4,5,1,202,1459822.8,0,0,2922.6133 -5420,6707,12220,-9,12219,12218,3,1,0,20,2,0,0,0,2,-9,7,2,0,0,4,6.8652878,7.0244489,5.372457,3,0,-9,0,-9,0,-841.83215,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,24,9,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6901093,0,0,0,38.490002,54.09,-9,-9,4,1,1,0,0,4,2,1,857,-3683.1819,0,0,890.96094 -5421,6708,12221,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,1,2,0,6.7410531,6.4004188,3,0,0,0,-9,0,-943.88104,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2222786,0,0,52.77,35.34,-9,-9,6,1,1,0,0,12,2,0,111,332298.06,0,0,1514.6489 -5422,6709,12222,12224,-9,-9,1,1,0,36,1,0,3,0,2,0,7,2,0,1,2,0,0,0,2,0,-9,8,0,1,28.569738,-9,0,1,35,1,3,1,3,-9,2019,3,2,25,11,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.290001,50.990002,38.27,52.669998,2,1,1,0,0,11,3,1,682,-10446.687,0,0,3081.6909 -5422,6709,12223,-9,12222,12224,6,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1119.9249,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,1,682,-10446.687,0,0,3081.6909 -5422,6709,12224,12222,-9,-9,2,1,1,35,1,0,3,0,1,-9,2,1,0,0,3,8.1328602,8.0559578,0,2,0,-9,8,0,-1,-43.951733,0,0,0,36,2,2,2,3,3,2019,2,1,14,2,50,40,15,1,0,2,0,8.8964329,8.8964329,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.175949,1,38.27,52.669998,23.290001,50.990002,2,1,1,0,0,11,3,1,682,-10446.687,0,0,3081.6909 -5422,6709,12225,-9,12222,12224,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.21973,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,1,682,-10446.687,0,0,3081.6909 -5422,6709,12226,-9,12222,12224,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.436,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,1,682,-10446.687,0,0,3081.6909 -5422,6710,12227,-9,12222,12224,3,1,0,18,2,0,3,1,2,0,7,2,0,0,3,6.7426867,6.7823887,0,3,0,0,0,-9,0,-906.45093,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,11,2,1,429,-116054.45,0,0,481.2352 -5423,6711,12228,-9,12230,12229,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.61761,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,565.25,175939.39,0,0,3697.6646 -5423,6711,12229,12230,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,8.6843519,8.7294064,0,2,0,-9,7,0,4,56.053711,0,0,0,34,1,4,1,2,1,2019,1,2,7,0,38,37,15,1,0,1,0,18.223616,18.223616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,51,48.869999,58.549999,6,1,1,0,0,11,4,1,565.25,175939.39,0,0,3697.6646 -5423,6711,12230,12229,-9,-9,2,1,0,34,1,0,2,0,1,-9,2,1,0,0,4,7.9581418,8.1664543,0,2,0,-9,7,0,-4,180.61887,0,0,1,38,1,4,1,2,2,2019,1,1,12,1,30,37,15,1,0,1,0,11.803582,11.803582,0,0,0,0,0,0,0,0,1,1,0,1.9903294,0,0,0,48.869999,58.549999,56.349998,51,6,1,1,0,0,11,4,1,565.25,175939.39,0,0,3697.6646 -5423,6711,12231,-9,12230,12229,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1099.4922,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,11,4,1,565.25,175939.39,0,0,3697.6646 -5424,6712,12232,12233,-9,-9,2,1,1,29,1,1,1,0,2,-9,2,1,0,0,2,8.6085262,8.2279816,0,2,0,-9,4,0,1,-21.944723,0,1,0,28,2,2,1,-9,-9,2019,1,1,6,0,47,41,15,1,0,1,0,11.995978,11.995978,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.5201316,2,54.610001,51.040001,44.07,39.470001,4,1,1,0,0,9,4,1,475,326095.13,0,0,2558.5449 -5424,6712,12233,12232,-9,-9,1,1,0,28,1,1,1,0,2,-9,2,1,0,0,2,7.4938803,7.4732451,0,2,0,-9,4,0,-1,52.971722,0,1,1,29,2,2,1,2,2,2019,1,2,23,11,24,24,15,1,1,1,0,8.0766125,8.0766125,0,0,0,0,0,0,0,0,1,1,0,4.8674078,0,0,0,44.07,39.470001,54.610001,51.040001,4,1,1,0,0,9,4,1,475,326095.13,0,0,2558.5449 -5424,6712,12234,-9,12233,12232,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1162.079,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,475,326095.13,0,0,2558.5449 -5425,6713,12235,-9,-9,-9,1,1,1,89,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1033.1345,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,7,1,0,292,110381.96,0,0,1540.1859 -5426,6714,12236,12237,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,0,3,0,7.3324199,7.70399,1,0,-9,39,0,-1,3.2177281,0,0,0,61,2,2,3,3,3,2019,4,2,8,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.77454108,7.3164735,4.4246387,3,58.080002,40.759998,60.93,41.540001,6,1,1,0,0,2,2,1,930.5,136412.13,0,0,734.284 -5426,6714,12237,12236,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,39,0,1,62.958023,0,0,0,60,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.93,41.540001,58.080002,40.759998,7,1,1,0,0,2,2,1,930.5,136412.13,0,0,734.284 -5426,6715,12238,-9,12236,12237,3,1,0,34,2,0,0,0,1,-9,2,1,0,0,2,8.3084736,8.5465078,0,3,0,0,0,-9,0,-916.17377,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,7,41,40,15,1,1,-9,1,13.743613,13.743613,0,0,0,0,0,0,0,0,0,0,0,2.2562952,0,0,0,20.66,53.09,-9,-9,2,1,1,0,0,2,4,1,357,25383.668,0,0,928.77057 -5427,6716,12239,12240,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,4,6.2296925,5.8413749,0,1,0,-9,18,0,-3,-46.359112,0,0,0,64,2,4,1,2,3,2019,1,1,3,1,20,24,15,1,0,1,0,4.0433946,4.0433946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.68,34.799999,7,1,1,0,0,5,5,1,427,482238.28,0,0,3290.1494 -5427,6716,12240,12239,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,1,4,8.9142065,9.1318922,0,1,0,-9,18,0,3,32.944035,-9,0,0,61,1,4,1,-9,-9,2019,1,2,7,0,36,0,15,1,0,1,0,27.259304,27.259304,1,0,1.4776661,0,0,0,0,0,1,1,0,0,0,0,0,58.68,34.799999,57.16,56.150002,6,1,1,0,0,5,5,1,427,482238.28,0,0,3290.1494 -5428,6717,12241,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,3,8.8021889,8.8111,0,3,0,0,0,-9,0,-965.43817,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,42,41,15,1,1,-9,0,17.115034,17.115034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.889999,54.919998,-9,-9,5,1,1,0,0,7,5,0,709,-84092.203,0,0,3034.5562 -5429,6718,12242,-9,-9,-9,1,1,1,37,3,0,3,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-902.53595,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.51,34.27,-9,-9,3,1,1,0,0,10,1,0,604.25,31261.008,0,0,1982.0829 -5429,6718,12243,-9,-9,12242,2,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-905.41772,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,1,0,604.25,31261.008,0,0,1982.0829 -5429,6718,12244,-9,-9,12242,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-890.14746,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,604.25,31261.008,0,0,1982.0829 -5429,6718,12245,-9,-9,12242,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1077.0472,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,1,0,604.25,31261.008,0,0,1982.0829 -5430,6719,12246,-9,12248,12247,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.6382,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,3,1,900.33331,55348.207,0,0,937.66809 -5430,6719,12247,12248,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,9,0,3,-100.86485,-9,0,0,48,2,3,1,-9,-9,2019,1,1,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,49.439999,43.52,6,1,1,0,0,5,3,1,900.33331,55348.207,0,0,937.66809 -5430,6719,12248,12247,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,1,3,8.2188005,8.4211836,0,2,0,-9,26,0,-3,-66.308456,0,0,0,51,2,3,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,12.286171,12.286171,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.889908,3,49.439999,43.52,58.32,50.220001,6,1,1,0,0,5,3,1,900.33331,55348.207,0,0,937.66809 -5431,6720,12249,12251,-9,-9,1,1,1,48,1,0,3,0,1,-9,2,1,0,0,4,8.0241442,7.9221568,0,2,0,-9,21,0,9,-49.239193,0,0,0,39,2,3,3,3,3,2019,2,2,11,1,40,37,15,1,0,3,0,7.6845164,7.6845164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,49.450001,40.279999,54.650002,5,2,3,0,0,2,2,0,604.33331,436181.03,0,0,2430.2756 -5431,6720,12250,-9,12251,12249,3,1,0,17,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.1781,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,17,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,64.480003,-9,-9,5,2,3,0,0,2,2,0,604.33331,436181.03,0,0,2430.2756 -5431,6720,12251,12249,-9,-9,2,1,0,39,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,0,23.377762,0,0,1,48,1,4,1,3,3,2019,3,1,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.279999,54.650002,48.279999,49.450001,5,2,3,0,0,2,2,0,604.33331,436181.03,0,0,2430.2756 -5432,6721,12252,-9,12253,12255,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.9952,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,789.75,9271.5254,0,0,5413.7656 -5432,6721,12253,12255,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,0,4,9.2800207,9.2408504,0,2,0,-9,6,0,-2,-4.8551097,0,0,1,37,1,4,1,2,2,2019,1,2,7,0,34,33,15,1,0,1,0,30.421329,30.421329,0,0,0,0,0,0,0,0,1,1,0,2.210525,0,0,0,51.240002,58.84,48.869999,58.549999,6,1,1,0,0,12,5,1,789.75,9271.5254,0,0,5413.7656 -5432,6721,12254,-9,12253,12255,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.24127,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,5,1,789.75,9271.5254,0,0,5413.7656 -5432,6721,12255,12253,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,9.3555422,9.1383286,0,2,0,-9,6,0,2,59.490822,0,0,0,35,1,4,1,-9,-9,2019,1,1,9,1,37,39,15,1,0,1,0,29.126074,29.126074,0,0,0,0,0,0,0,0,1,1,0,3.0565784,0,0,0,48.869999,58.549999,51.240002,58.84,6,1,1,0,0,12,5,1,789.75,9271.5254,0,0,5413.7656 -5433,6722,12256,12257,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,3,8.7924337,8.9263296,0,1,0,-9,9,0,-6,-83.852997,0,0,1,41,2,4,1,-9,-9,2019,1,1,5,0,48,57,15,1,0,1,0,15.193401,15.193401,0,0,0,0,0,0,0,0,0,0,0,.91920418,0,0,0,42.07,56.450001,62.490002,55.09,5,1,1,0,0,4,5,0,636.5,2398264,0,0,5053.5664 -5433,6722,12257,12256,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,0,4,9.2012415,9.0075455,0,1,0,-9,9,0,6,68.974098,0,0,0,35,1,3,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,17.552015,17.552015,0,0,0,0,0,0,0,0,0,0,0,5.5549173,0,0,0,62.490002,55.09,42.07,56.450001,6,1,1,0,0,4,5,0,636.5,2398264,0,0,5053.5664 -5434,6723,12258,12259,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,8.2685022,8.3255148,1,0,-9,9,0,1,-115.23807,0,0,0,64,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6055984,8.5202341,0,0,64.540001,42,60.02,56.419998,7,1,1,0,0,12,4,1,266.5,1620514.9,0,0,5532.3159 -5434,6723,12259,12258,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,5,0,5.534584,5.5377135,1,0,-9,9,0,-1,37.243458,0,0,0,65,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4028282,5.6878195,0,0,60.02,56.419998,64.540001,42,7,1,1,0,0,12,4,1,266.5,1620514.9,0,0,5532.3159 -5435,6724,12260,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,5.7155905,5.3550768,3,0,0,0,-9,0,-1081.9406,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.0964708,5.6388898,0,0,56.540001,35.07,-9,-9,6,1,1,0,0,5,2,0,680,89252.688,0,0,707.14209 -5436,6725,12261,12262,-9,-9,2,1,1,59,1,0,0,0,3,-9,4,3,0,0,2,0,5.6466818,5.9825988,1,0,-9,39,-9,0,127.60183,-9,0,0,59,2,3,1,3,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6139708,0,0,40.529999,49.549999,53.139999,45.740002,4,1,1,0,1,11,2,1,245.5,135052.25,0,0,-618.11096 -5436,6725,12262,12261,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.3651915,7.5077825,0,1,0,-9,36,-9,0,1.1949008,-9,0,0,59,3,2,3,2,3,2019,2,2,9,0,30,0,15,1,0,4,0,6.9330177,6.9330177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.139999,45.740002,40.529999,49.549999,5,1,1,0,0,11,2,1,245.5,135052.25,0,0,-618.11096 -5437,6726,12263,-9,-9,-9,1,1,1,44,3,0,0,0,1,-9,2,1,0,0,4,9.5564709,9.1538658,0,3,0,0,0,-9,0,-1025.7759,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,45,47,15,1,1,-9,0,30.268517,30.268517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,2,5,1,365,265823.94,0,0,3916.5566 -5438,6727,12264,12265,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,3,8.0935183,8.1701107,0,1,0,-9,7,0,4,8.2784252,0,0,1,39,2,4,1,3,3,2019,1,2,12,2,40,40,15,1,0,1,0,10.291172,10.291172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.700001,58.259998,54.259998,6,1,1,0,0,9,5,0,144,249317.63,0,0,1894.4779 -5438,6727,12265,12264,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,8.4508982,8.208744,0,1,0,-9,7,0,-4,-57.798588,0,0,0,43,2,3,1,-9,-9,2019,1,1,0,0,45,60,15,1,0,1,0,8.7635546,8.7635546,0,0,0,0,0,0,0,0,0,0,0,3.5505297,0,0,0,58.259998,54.259998,47.32,52.700001,7,1,1,0,0,9,5,0,144,249317.63,0,0,1894.4779 -5439,6728,12266,12267,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.9824829,6.9702249,1,0,-9,51,0,6,2.6633298,0,0,0,69,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,3.3724751,0,0,0,0,0,1,1,0,5.5875316,6.7679739,0,0,60.119999,54.799999,60.119999,54.799999,7,1,1,0,0,7,3,1,1604.5,823013,0,0,2630.6265 -5439,6728,12267,12266,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.9715266,6.7708817,1,0,-9,51,0,-6,-23.409161,0,0,0,75,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6745467,6.9482036,0,0,60.119999,54.799999,60.119999,54.799999,6,1,1,0,0,7,3,1,1604.5,823013,0,0,2630.6265 -5440,6729,12268,12269,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,-5,-214.00487,0,0,0,68,1,3,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1681058,0,0,0,58.470001,44.689999,52.599998,52.880001,6,1,1,0,0,12,2,1,564.5,121047.42,0,0,1186.9525 -5440,6729,12269,12268,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,7.6270719,7.1885567,1,0,-9,43,0,5,-114.04128,0,0,0,63,1,3,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0987296,7.358274,0,0,52.599998,52.880001,58.470001,44.689999,6,1,1,0,0,12,2,1,564.5,121047.42,0,0,1186.9525 -5441,6730,12270,12272,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,0,3,8.699316,8.6428185,0,2,0,-9,27,0,5,-30.261292,0,0,0,49,2,3,1,-9,-9,2019,1,2,7,0,46,54,15,1,0,1,0,11.74043,11.74043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.57,46.25,54.959999,53.169998,6,1,1,0,0,7,4,1,443,1529746.6,0,0,2442.533 -5441,6730,12271,-9,12272,12270,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.4336,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,4,1,443,1529746.6,0,0,2442.533 -5441,6730,12272,12270,-9,-9,2,1,0,49,1,0,2,0,2,-9,2,1,0,0,3,7.5311775,7.7008333,5.3195968,2,0,-9,27,0,-5,-89.752357,0,0,0,54,1,3,1,2,2,2019,1,1,9,0,20,26,15,1,0,1,0,8.9801207,8.9801207,0,0,0,0,0,0,0,7,1,1,0,4.8338647,0,13.021894,3,54.959999,53.169998,58.57,46.25,6,1,1,0,0,7,4,1,443,1529746.6,0,0,2442.533 -5442,6731,12273,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,3,0,6.6878695,6.9077487,3,0,0,0,-9,0,-870.28979,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,16,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4573493,6.3373313,0,0,52.310001,40.619999,-9,-9,4,1,1,0,0,5,2,1,355,96135.25,0,0,1402.04 -5443,6732,12274,12275,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,11,0,0,0,0,75,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7507944,0,0,0,55,45,47.459999,52.700001,6,1,1,0,0,12,1,1,391,270402.13,0,0,1344.262 -5443,6732,12275,12274,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-11,0,0,0,0,86,2,3,3,3,3,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.732533,1,47.459999,52.700001,55,45,6,1,1,0,0,12,1,1,391,270402.13,0,0,1344.262 -5444,6733,12276,12277,-9,-9,1,1,0,46,1,0,2,0,2,-9,1,1,0,0,5,7.5938368,8.0313463,0,2,0,-9,24,0,0,150.33224,0,0,0,55,2,4,1,3,3,2019,1,2,11,1,40,40,15,1,0,1,0,4.4774027,4.4774027,0,0,0,0,0,0,0,2,1,1,0,.48527244,0,2.2800758,3,51.139999,60.450001,53,54,6,1,1,0,0,10,3,1,617,247910.78,0,0,3216.0698 -5444,6733,12277,12276,-9,-9,2,1,1,55,1,0,2,0,2,-9,1,1,0,0,4,7.9655313,7.8288445,0,2,0,-9,8,0,9,6.9745183,0,0,0,46,2,5,1,-9,-9,2019,1,1,9,1,50,50,15,1,0,1,0,6.174839,6.174839,0,0,0,0,0,0,0,0,1,1,0,4.6268997,0,0,0,53,54,51.139999,60.450001,6,1,1,0,0,10,3,1,617,247910.78,0,0,3216.0698 -5445,6734,12278,12279,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,4,0,7.5075073,7.537272,1,0,-9,54,0,3,-45.29781,0,0,0,80,1,4,3,2,1,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,2.4663572,2.8539827,0,0,0,0,2,1,1,0,8.1454678,0,0,1,59.169998,38.73,46.369999,42.32,6,1,1,0,0,7,5,1,329,1518704.9,0,0,11064.466 -5445,6734,12279,12278,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,8.628768,9.2993021,1,0,-9,54,0,-3,49.308777,0,0,0,83,3,4,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,.98067588,8.471055,3.3425472,0,0,53.720749,0,1,1,0,9.5958862,6.4591088,0,0,46.369999,42.32,59.169998,38.73,6,1,1,0,0,7,5,1,329,1518704.9,0,0,11064.466 -5446,6735,12280,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-960.1875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.349998,18.65,-9,-9,6,1,1,0,0,12,1,0,351,197968.64,0,0,1501.8798 -5447,6736,12281,12282,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,0,2,8.3410521,8.387538,7.3154545,1,0,-9,39,0,-2,-79.555,0,0,0,65,1,5,3,2,2,2019,2,2,12,0,20,20,15,1,0,4,0,29.300735,29.300735,0,0,0,0,0,0,0,0,1,1,0,7.4717679,7.7669415,0,0,46.32,53.439999,59.040001,54.119999,4,1,1,0,0,8,5,1,904,410960.25,0,0,5737.3408 -5447,6736,12282,12281,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,5,0,8.4299002,8.7662344,1,0,-9,39,0,2,21.787086,0,0,0,63,1,2,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6990061,8.2849007,0,0,59.040001,54.119999,46.32,53.439999,7,1,1,0,0,8,5,1,904,410960.25,0,0,5737.3408 -5448,6737,12283,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,4,8.5973692,8.2913895,0,3,0,0,0,-9,0,-1021.8719,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,38,15,1,0,-9,0,13.141753,13.141753,0,0,0,0,0,0,0,0,0,0,0,7.1276727,0,0,0,62.669998,44.009998,-9,-9,6,1,1,0,0,9,5,0,1321,-5057.5825,0,0,2436.6069 -5449,6738,12284,-9,12285,12286,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.7225,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,0,656.20001,358853.63,0,0,3539.2163 -5449,6738,12285,12286,-9,-9,3,1,0,32,1,1,3,0,2,-9,2,1,0,0,5,7.9131627,7.9234204,0,2,0,-9,2,0,-18,83.897385,0,0,1,50,2,4,1,-9,-9,2019,1,1,18,6,24,27,15,1,1,1,0,12.421827,12.421827,0,0,0,0,0,0,0,0,1,1,0,7.0330563,0,0,0,45.09,57.73,52.23,55.599998,5,1,1,0,0,2,3,0,656.20001,358853.63,0,0,3539.2163 -5449,6738,12286,12285,-9,-9,1,1,1,50,1,1,3,0,2,-9,1,1,0,0,4,8.3513832,8.1370945,0,2,0,-9,2,0,18,50.729557,0,0,0,32,2,5,1,2,1,2019,1,3,12,0,40,50,15,1,0,1,0,9.4598179,9.4598179,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.599998,45.09,57.73,6,1,1,0,0,2,3,0,656.20001,358853.63,0,0,3539.2163 -5449,6738,12287,-9,12285,12286,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-963.17261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,3,0,656.20001,358853.63,0,0,3539.2163 -5449,6738,12288,-9,-9,12286,2,1,1,17,2,1,3,0,2,-9,-9,3,0,0,3,5.8694124,5.6926365,0,2,0,0,0,-9,0,-975.79858,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,6,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4175644,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,2,3,0,656.20001,358853.63,0,0,3539.2163 -5450,6739,12289,12291,-9,-9,1,1,1,29,1,0,3,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,2,0,1,0,0,1,0,28,2,4,3,2,2,2019,4,2,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.209999,50.400002,31.43,60.009998,4,1,1,1,1,5,1,0,478.39999,-10979.931,0,0,2499.3025 -5450,6739,12290,-9,12291,12289,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.9176,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,1,0,478.39999,-10979.931,0,0,2499.3025 -5450,6739,12291,12289,-9,-9,2,1,0,28,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-1,0,0,1,1,29,2,3,3,-9,-9,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.43,60.009998,35.209999,50.400002,4,1,1,0,0,5,1,0,478.39999,-10979.931,0,0,2499.3025 -5450,6739,12292,-9,12291,12289,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.80475,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,1,0,478.39999,-10979.931,0,0,2499.3025 -5450,6739,12293,-9,12291,12289,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-877.59003,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,1,0,478.39999,-10979.931,0,0,2499.3025 -5451,6740,12294,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,3,0,6.3260159,6.1269259,3,0,0,0,-9,0,-1034.821,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.417757,0,0,0,1,1,0,0,6.3463545,0,0,46.849998,40.529999,-9,-9,2,1,1,0,0,11,2,0,741,119925.45,0,0,1033.0896 -5452,6741,12295,12296,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,4.610981,4.7371354,1,0,-9,49,0,-1,-38.708614,0,0,0,67,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1974235,4.5095859,0,0,60.119999,54.799999,60.290001,52.110001,7,1,1,0,0,5,2,1,1633,499350.03,0,0,2268.6824 -5452,6741,12296,12295,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.3838243,6.8708625,1,0,-9,49,0,1,49.013401,0,0,0,66,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4621773,6.7720594,0,0,60.290001,52.110001,60.119999,54.799999,7,1,1,0,0,5,2,1,1633,499350.03,0,0,2268.6824 -5453,6742,12297,12298,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,5.6946435,7.7128701,7.6473055,1,0,-9,7,0,0,67.131218,0,0,0,66,2,1,3,3,2,2019,4,2,7,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8092413,3.4028018,1,47.91,57.48,38,25,1,4,2,0,0,8,3,1,1243.5,1107835.6,0,0,2256.1233 -5453,6742,12298,12297,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,7,0,0,-33.264786,-9,0,0,66,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,13.013933,11.039091,0,0,0,150.29024,0,1,1,0,0,0,0,0,38,25,47.91,57.48,6,3,4,0,1,8,3,1,1243.5,1107835.6,0,0,2256.1233 -5454,6743,12299,12300,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,3,7.5262508,7.6629791,0,2,0,-9,16,0,-7,-50.872665,0,0,1,45,1,3,1,1,1,2019,1,2,9,0,16,20,15,1,0,1,0,13.236069,13.236069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,54.369999,54.799999,6,2,3,0,0,8,5,1,507,703424.13,0,0,3983.5815 -5454,6743,12300,12299,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,3,8.6993752,9.2567959,0,2,0,-9,16,0,7,147.65178,0,0,0,38,2,3,1,1,1,2019,1,1,10,0,35,50,15,1,0,1,0,25.428627,25.428627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,54.369999,54.799999,6,2,3,0,0,8,5,1,507,703424.13,0,0,3983.5815 -5455,6744,12301,12302,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.9620647,7.1526823,1,0,-9,3,0,4,-17.133398,0,0,0,63,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.1533408,7.0556202,18.511816,3,54.790001,55.860001,52.48,55.599998,6,1,1,0,0,13,2,1,849.5,571620.63,0,0,1870.0237 -5455,6744,12302,12301,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,3,0,-4,-1.3060642,0,0,0,67,2,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,9.1921682,0,0,0,0,27.5,1,1,0,0,0,26.742495,3,52.48,55.599998,54.790001,55.860001,6,1,1,0,0,13,2,1,849.5,571620.63,0,0,1870.0237 -5456,6745,12303,12304,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,9.9136,9.8859072,0,1,0,-9,8,0,6,-64.738998,0,0,0,51,3,2,1,2,3,2019,1,2,8,0,30,37,15,1,0,1,0,55.009396,55.009396,0,0,0,0,0,0,0,0,0,0,0,3.9893763,0,0,0,54.369999,54.799999,41.419998,35.349998,6,1,1,0,0,11,5,1,1621,268754.78,0,0,12467.35 -5456,6745,12304,12303,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,0,2,8.4707174,8.1781816,0,1,0,-9,8,0,-6,119.26977,0,0,0,57,2,3,1,-9,-9,2019,1,1,13,1,38,39,15,1,0,1,0,13.174311,13.174311,0,0,0,0,0,0,0,0,0,0,0,1.4961736,0,0,0,41.419998,35.349998,54.369999,54.799999,3,1,1,0,0,11,5,1,1621,268754.78,0,0,12467.35 -5457,6746,12305,12306,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,0,4,9.1003847,9.0664711,0,1,0,-9,5,0,-4,-50.110298,0,0,0,43,2,4,1,1,1,2019,1,2,11,0,38,40,15,1,0,1,0,24.700279,24.700279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.279999,15.46,67.370003,5,1,1,0,0,12,5,1,1110.5,271006.13,0,0,2857.9072 -5457,6746,12306,12305,-9,-9,2,1,0,43,1,0,0,0,2,-9,1,1,0,0,4,6.5132465,6.6801715,0,1,0,-9,5,0,4,-14.144892,0,0,1,39,1,4,1,-9,-9,2019,1,1,33,12,45,50,15,1,1,1,0,2.0623763,2.0623763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.46,67.370003,49.41,58.279999,4,1,1,0,1,12,5,1,1110.5,271006.13,0,0,2857.9072 -5458,6747,12307,12308,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,1,2,0,7.9350233,7.9361634,1,0,-9,7,0,-2,-22.625143,0,0,0,73,2,2,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,0,.22342278,0,0,0,0,14.5,1,1,0,2.1347008,8.0287914,14.751455,1,66.349998,19.809999,46.130001,26.549999,6,1,1,0,0,11,3,1,356,1126007.3,0,0,3423.7095 -5458,6747,12308,12307,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,7,0,2,22.988123,0,0,0,71,3,2,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,14.492348,0,0,0,0,27.5,1,1,0,0,0,19.619108,1,46.130001,26.549999,66.349998,19.809999,4,1,1,0,0,11,3,1,356,1126007.3,0,0,3423.7095 -5459,6748,12309,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-956.61487,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8856936,0,0,0,54.77,55.869999,-9,-9,2,1,1,0,0,10,1,0,816,-100931.25,0,0,2400.137 -5460,6749,12310,12311,-9,-9,2,1,1,63,1,0,1,0,2,-9,2,1,0,0,3,7.8380299,8.3673925,7.5074615,2,0,-9,21,0,14,59.837029,0,0,0,49,2,4,1,2,2,2019,1,1,12,0,62,28,15,1,0,1,0,4.5959826,4.5959826,0,0,0,0,0,0,0,0,1,1,0,0,8.1258869,0,0,54.380001,46.77,35.970001,61.830002,4,1,1,0,0,8,4,1,557,2130526.8,0,0,4205.5039 -5460,6749,12311,12310,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,8.3267603,8.0571508,0,2,0,-9,21,0,-14,139.90654,0,0,0,63,2,3,1,2,2,2019,1,2,12,1,28,35,15,1,0,1,0,12.481808,12.481808,0,0,0,0,0,0,0,0,1,1,0,3.4132288,0,0,0,35.970001,61.830002,54.380001,46.77,6,1,1,0,0,8,4,1,557,2130526.8,0,0,4205.5039 -5460,6749,12312,-9,12311,12310,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,5.0651159,5.3872519,0,2,0,0,0,-9,0,-1011.2603,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,16,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.07,49.330002,-9,-9,6,1,1,0,0,8,4,1,557,2130526.8,0,0,4205.5039 -5461,6750,12313,-9,-9,-9,1,1,0,66,2,0,0,0,3,-9,4,3,0,1,1,0,6.6210537,6.5594573,3,0,0,0,-9,0,-1082.0853,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,47.079845,0,0,0,0,413.68329,0,1,1,0,0,6.8621917,0,0,31.309999,40.509998,-9,-9,1,1,1,0,0,1,2,1,515,359468.91,0,0,737.54175 -5462,6751,12314,-9,12315,12316,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.293,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,636,163723.56,0,0,2211.9722 -5462,6751,12315,12316,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,3,7.579421,7.2771564,0,2,0,-9,8,0,1,119.03191,0,0,1,40,2,3,1,2,2,2019,1,2,13,4,15,16,15,1,1,1,0,12.966531,12.966531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.630001,60.060001,47.360001,36.330002,3,1,1,0,0,10,4,1,636,163723.56,0,0,2211.9722 -5462,6751,12316,12315,-9,-9,2,1,1,40,1,0,1,0,2,-9,2,1,0,0,3,8.1257381,8.4044113,0,2,0,-9,8,0,-1,5.6623454,0,0,0,41,1,3,1,-9,-9,2019,1,1,22,8,43,43,15,1,1,1,0,11.265192,11.265192,0,0,0,0,0,0,0,0,1,1,0,3.1696098,0,0,0,47.360001,36.330002,37.630001,60.060001,5,1,1,0,0,10,4,1,636,163723.56,0,0,2211.9722 -5463,6752,12317,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,0,3,0,5.9476914,6.1346445,3,0,0,0,-9,0,-929.18378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6671598,6.1405063,0,0,52,48,-9,-9,5,1,1,0,0,4,2,1,298,-36968.246,0,0,35.944527 -5464,6753,12318,12319,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,5.384634,5.53127,1,0,-9,55,0,1,-32.509895,0,0,0,74,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9093833,6.0633097,0,0,43.360001,42.150002,50.66,37.450001,5,1,1,0,0,9,2,1,854.5,717663.13,0,0,1542.7207 -5464,6753,12319,12318,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,6.5340095,6.904345,1,0,-9,55,0,-1,92.779076,0,0,0,75,3,3,3,-9,-9,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3721242,6.7013555,0,0,50.66,37.450001,43.360001,42.150002,5,1,1,0,0,9,2,1,854.5,717663.13,0,0,1542.7207 -5465,6754,12320,12324,-9,-9,2,1,1,48,1,0,3,0,1,-9,1,1,0,0,4,9.1906433,9.5018349,7.2052784,2,0,-9,22,0,1,106.51903,0,0,0,47,1,3,1,2,1,2019,1,1,6,0,40,20,15,1,0,1,0,28.968922,28.968922,0,0,0,0,0,0,0,0,1,1,0,7.9019198,0,0,0,55.189999,54.259998,52.990002,51.279999,6,1,1,0,0,9,5,1,637.59998,547412.44,0,0,5639.2959 -5465,6754,12321,-9,12324,12320,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.5364,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,637.59998,547412.44,0,0,5639.2959 -5465,6754,12322,-9,12324,12320,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.28473,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,637.59998,547412.44,0,0,5639.2959 -5465,6754,12323,-9,12324,12320,3,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.0549,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1220822,0,0,0,44.02,60.700001,-9,-9,5,1,1,0,0,9,5,1,637.59998,547412.44,0,0,5639.2959 -5465,6754,12324,12320,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,0,3,8.1125793,8.0682182,0,2,0,-9,22,0,-1,-41.616447,0,0,0,48,1,4,1,3,2,2019,1,2,10,1,37,35,15,1,0,1,0,7.108552,7.108552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,55.189999,54.259998,6,1,1,0,0,9,5,1,637.59998,547412.44,0,0,5639.2959 -5466,6755,12325,-9,-9,12326,1,1,0,17,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-969.07178,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.139999,62.849998,-9,-9,4,1,1,0,0,4,1,0,1370.5,-40665.441,0,0,1731.6455 -5466,6755,12326,-9,-9,-9,2,1,1,67,3,0,1,0,2,-9,4,3,0,0,2,0,0,0,4,0,-9,0,-9,0,-935.90771,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.25,25.559999,-9,-9,5,1,1,0,0,4,1,0,1370.5,-40665.441,0,0,1731.6455 -5467,6756,12327,12328,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,0,3,0,7.6785655,7.4495363,1,0,-9,9,0,-1,-63.475323,0,0,0,85,1,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6585107,7.637104,0,0,59.82,30.35,62.389999,56.709999,6,1,1,0,0,12,3,1,234.5,499049.44,0,0,3393.3196 -5467,6756,12328,12327,-9,-9,1,1,1,85,1,0,0,0,1,-9,4,3,0,0,5,4.647893,6.5480232,6.896368,1,0,-9,9,0,1,-49.527214,0,0,0,84,2,3,3,3,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9220538,6.5038476,0,0,62.389999,56.709999,59.82,30.35,7,1,1,0,0,12,3,1,234.5,499049.44,0,0,3393.3196 -5468,6757,12329,-9,12332,12330,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.5118,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,718.59998,-1870.1168,0,0,2463.7043 -5468,6757,12330,12332,-9,-9,2,1,1,39,1,0,4,0,2,-9,2,1,0,0,4,7.592196,7.5877995,0,2,0,-9,7,0,-1,35.466076,0,0,0,40,2,3,3,-9,-9,2019,2,1,9,1,9,16,15,1,0,3,0,21.929304,21.929304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,19.83,32.619999,6,2,3,0,0,4,2,0,718.59998,-1870.1168,0,0,2463.7043 -5468,6757,12331,-9,12332,12330,4,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.4341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,2,0,718.59998,-1870.1168,0,0,2463.7043 -5468,6757,12332,12330,-9,-9,1,1,0,40,1,0,4,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,22,0,1,140.35164,0,0,1,39,2,4,1,3,2,2019,3,2,29,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.4134946,0,117.64384,3,19.83,32.619999,51,56,2,2,3,0,1,4,2,0,718.59998,-1870.1168,0,0,2463.7043 -5468,6757,12333,-9,12332,12330,5,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.70026,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,2,0,718.59998,-1870.1168,0,0,2463.7043 -5469,6758,12334,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,4.5952563,4.2215695,3,0,0,0,-9,0,-906.328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.495461,0,0,61.040001,39.41,-9,-9,6,1,1,0,0,12,1,0,747,254700.19,0,0,1169.8938 -5470,6759,12335,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,0,2,0,7.45294,7.4048195,3,0,0,0,-9,0,-1007.9413,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.38186544,7.380342,0,0,32.599998,29.780001,-9,-9,4,1,1,0,0,13,3,1,1870,860443.56,0,0,1104.3783 -5471,6760,12336,12337,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,9.3845158,8.8257675,1,0,-9,44,-9,2,-20.463579,-9,0,0,70,1,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2726583,9.3505287,0,0,66.199997,38.34,54.07,36.169998,6,1,1,0,0,12,5,1,261,1902303.6,0,0,10626.038 -5471,6760,12337,12336,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,2,0,8.8424702,9.1456785,1,0,-9,44,-9,-2,57.238876,-9,0,0,72,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2492948,8.6483078,0,0,54.07,36.169998,66.199997,38.34,6,1,1,0,0,12,5,1,261,1902303.6,0,0,10626.038 -5472,6761,12338,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,-9,0,1,0,-944.29614,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,13.204668,3,22.540001,60.650002,-9,-9,1,1,1,1,1,1,1,0,622,0,0,0,968.13965 -5473,6762,12339,12341,-9,-9,2,1,1,51,1,1,2,0,3,-9,2,1,0,0,4,8.1762724,8.3224154,0,2,0,-9,6,0,19,-5.5190654,0,0,0,32,2,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,10.681878,10.681878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,9,4,1,1360.25,190042.97,0,0,2636.946 -5473,6762,12340,-9,12341,12339,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1073.634,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,1360.25,190042.97,0,0,2636.946 -5473,6762,12341,12339,-9,-9,1,1,0,32,1,1,2,0,2,-9,5,1,0,0,4,7.3946772,7.6832032,0,2,0,-9,6,0,-19,103.21375,0,0,1,51,3,4,1,2,2,2019,1,2,7,0,21,22,15,1,0,1,0,8.966341,8.966341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,9,4,1,1360.25,190042.97,0,0,2636.946 -5473,6762,12342,-9,12341,12339,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1132.0399,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,1360.25,190042.97,0,0,2636.946 -5474,6763,12343,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,0,4,7.8048034,8.1595936,7.2121739,4,0,0,0,-9,0,-1065.4576,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,22,22,15,1,0,-9,0,10.505569,10.505569,0,0,0,0,0,0,0,0,1,1,0,6.6999536,0,0,0,52.970001,53.970001,-9,-9,6,1,1,0,1,6,3,1,996,24166.336,0,0,1704.5244 -5474,6763,12344,-9,12343,-9,4,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.1407,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,6,3,1,996,24166.336,0,0,1704.5244 -5474,6764,12345,-9,12343,-9,2,1,1,22,2,0,2,0,2,-9,1,1,0,0,4,7.7523623,7.7468758,0,3,0,0,0,-9,0,-1006.7957,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,30,26,15,1,0,-9,1,8.2119122,8.2119122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,6,3,1,971,28052.529,0,0,372.63843 -5474,6765,12346,-9,12343,-9,3,1,0,18,2,0,2,1,2,0,7,2,0,0,3,0,6.1428146,5.74894,3,0,0,0,-9,0,-1072.0066,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2662573,0,0,0,53.099998,52.619999,-9,-9,6,1,1,0,0,6,3,1,416,0,0,0,354.18939 -5475,6766,12347,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,3,7.795711,7.8545098,0,3,0,-9,0,-9,0,-1083.1243,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,43,0,15,1,0,-9,0,6.0845637,6.0845637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.16,47.380001,-9,-9,5,1,1,0,0,9,3,1,100,80372.469,0,0,1729.751 -5476,6767,12348,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,1,1,0,0,4,6.5144677,6.4766688,0,3,0,-9,0,-9,0,-970.2243,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,0,15,1,0,-9,0,1.8981401,1.8981401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,10,2,1,351,100226.19,0,0,248.53737 -5477,6768,12349,12350,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,3,8.8680878,9.281827,0,2,0,-9,8,0,-4,-32.822571,0,0,1,42,2,5,1,2,2,2019,1,1,21,9,37,30,15,1,1,1,0,18.821596,18.821596,0,0,0,0,0,0,0,0,1,1,0,7.3751993,0,0,0,29.459999,54.32,40.34,41.209999,3,1,1,0,0,2,5,1,689.66669,489527.06,0,0,6194.0552 -5477,6768,12350,12349,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,5,8.5740376,8.7264748,0,2,0,-9,6,0,4,-107.07168,0,0,0,38,1,3,1,-9,-9,2019,1,2,10,1,47,65,15,1,0,1,0,20.966957,20.966957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.34,41.209999,29.459999,54.32,4,1,1,0,0,2,5,1,689.66669,489527.06,0,0,6194.0552 -5477,6768,12351,-9,12349,12350,4,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-786.40704,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,689.66669,489527.06,0,0,6194.0552 -5478,6769,12352,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.1969166,8.4165421,0,3,0,-9,0,-9,0,-1030.474,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,3,38,0,15,1,0,-9,0,9.5269709,9.5269709,0,0,0,0,0,0,0,0,1,1,0,2.5583324,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,12,4,1,1281,153262.02,0,0,131.20012 -5479,6770,12353,12354,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,5,9.1535149,8.7238073,0,1,0,-9,5,0,0,45.87957,0,0,0,32,1,4,1,2,2,2019,1,2,6,0,55,45,15,1,0,1,0,19.799543,19.799543,0,0,0,0,0,0,0,0,0,0,0,3.425483,0,0,0,57.650002,56.130001,50.790001,56.27,6,1,1,0,0,9,5,1,1161,136263,0,0,3925.3623 -5479,6770,12354,12353,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.1174603,7.9455199,0,1,0,-9,5,0,0,.91747928,0,0,1,32,1,5,1,-9,-9,2019,1,1,12,1,45,44,15,1,0,1,0,7.5818758,7.5818758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.790001,56.27,57.650002,56.130001,6,1,1,0,0,9,5,1,1161,136263,0,0,3925.3623 -5480,6771,12355,-9,12356,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.2474,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,0,330.75,612334.63,0,0,3879.2839 -5480,6771,12356,12358,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,0,5,8.3843212,8.0651693,0,2,0,-9,4,0,0,-5.0753827,0,0,1,32,2,2,1,2,2,2019,1,4,8,2,39,35,15,1,0,1,0,10.145727,10.145727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,25.4,42.610001,6,1,1,0,0,12,4,0,330.75,612334.63,0,0,3879.2839 -5480,6771,12357,-9,12356,12358,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.4986,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,0,330.75,612334.63,0,0,3879.2839 -5480,6771,12358,12356,-9,-9,4,1,1,32,1,0,2,0,2,-9,2,1,0,0,2,8.5154552,8.3178129,0,2,0,-9,4,0,0,179.09846,0,0,0,32,2,5,1,-9,-9,2019,1,1,19,9,35,45,15,1,1,1,0,14.371471,14.371471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.4,42.610001,54.099998,59.110001,4,1,1,0,0,12,4,0,330.75,612334.63,0,0,3879.2839 -5481,6772,12359,-9,12361,12360,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.8588,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,4,1,297,-45076.359,0,0,2177.8364 -5481,6772,12360,12361,-9,-9,1,1,1,24,1,0,1,0,2,-9,2,1,0,0,4,8.009408,7.6825747,0,2,0,-9,2,0,0,-38.219933,0,1,0,24,2,4,1,-9,-9,2019,1,2,12,0,27,30,15,1,0,1,0,9.3059387,9.3059387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.619999,31.799999,47,58,6,1,1,0,0,1,4,1,297,-45076.359,0,0,2177.8364 -5481,6772,12361,12360,-9,-9,2,1,0,24,1,0,1,0,2,-9,2,1,0,0,4,7.7421484,8.0185261,0,2,0,-9,2,0,0,56.775703,0,1,1,24,2,4,1,-9,-9,2019,1,1,11,2,40,37,15,1,0,1,0,7.0441856,7.0441856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,53.619999,31.799999,5,1,1,0,0,1,4,1,297,-45076.359,0,0,2177.8364 -5482,6773,12362,12363,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.9767313,7.1747184,1,0,-9,56,0,-3,45.711777,0,0,0,78,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1353645,7.2961845,8.0681429,3,49.349998,59.639999,54.189999,42.360001,6,1,1,0,0,2,3,1,152,917390,0,0,3069.7939 -5482,6773,12363,12362,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.7179685,7.9227891,1,0,-9,56,0,3,-38.779373,0,0,0,75,2,4,3,2,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5262094,7.5773563,3.8591018,3,54.189999,42.360001,49.349998,59.639999,6,1,1,0,0,2,3,1,152,917390,0,0,3069.7939 -5483,6774,12364,12365,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,25,0,-6,-84.162041,0,0,0,53,1,3,1,2,3,2019,1,1,25,9,0,34,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.85653913,0,0,0,41.950001,31.700001,54.880001,36.580002,4,2,3,0,0,8,5,1,234.5,1774431,0,0,2778.7866 -5483,6774,12365,12364,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,3,9.0002651,9.3569593,0,2,0,-9,25,0,6,53.972012,0,0,0,47,2,4,1,2,2,2019,1,2,10,0,55,55,15,1,0,1,0,15.528892,15.528892,0,0,0,0,0,0,0,0,0,0,0,7.9058666,0,0,0,54.880001,36.580002,41.950001,31.700001,5,2,3,0,0,8,5,1,234.5,1774431,0,0,2778.7866 -5484,6775,12366,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1155.7876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,12.621255,0,10.79068,0,0,1,1,0,0,0,0,0,55.099998,27.51,-9,-9,6,1,1,0,1,11,1,1,2123,-30114.414,0,0,540.6759 -5485,6776,12367,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,4,0,6.056479,5.9408498,3,0,0,0,-9,0,-963.27252,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.1328735,0,0,0,0,1,1,0,.76900572,6.182445,0,0,45.279999,49.200001,-9,-9,6,1,1,0,0,12,2,0,244,-79999.633,0,0,2366.064 -5486,6777,12368,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,1,3,0,6.5905223,6.9104166,3,0,0,0,-9,0,-1055.9713,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3200541,7.1229191,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,4,2,1,1134,362239.59,0,0,1697.3622 -5487,6778,12369,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,0,4,9.0028925,9.4655685,7.6027656,4,0,0,0,-9,0,-1058.5476,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,80,70,15,1,0,-9,0,12.333387,12.333387,0,0,0,0,0,0,0,0,1,1,0,8.296423,7.4098654,0,0,65.059998,41.580002,-9,-9,6,1,1,0,0,11,5,0,637.5,106543.19,0,0,4980.3584 -5487,6778,12370,-9,12369,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-950.86121,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,11,5,0,637.5,106543.19,0,0,4980.3584 -5488,6779,12371,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,7.1524301,7.1933193,0,3,0,0,0,-9,0,-941.18701,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,0,15,1,0,-9,0,6.5235519,6.5235519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.530001,58.849998,-9,-9,6,1,1,0,0,11,3,0,604,-11190.736,0,0,1346.0121 -5489,6780,12372,-9,-9,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,2,7.6701298,7.7631831,0,3,0,0,0,-9,0,-968.62158,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,34,12,45,16,15,1,1,-9,1,5.9816384,5.9816384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.98,36.939999,-9,-9,4,1,1,0,0,4,3,1,277,115165.08,0,0,925.11786 -5490,6781,12373,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,4,8.8970098,8.5579529,0,3,0,0,0,-9,0,-912.03333,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,79,37,15,1,0,-9,0,8.8799458,8.8799458,0,0,0,0,0,0,0,0,0,0,0,5.2120914,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,5,1,203,1000595,0,0,1689.1118 -5491,6782,12374,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,8.5656948,8.4369164,3,0,0,0,-9,0,-976.05511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9849744,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,7,4,1,290,1148109.1,0,0,2008.6683 -5492,6783,12375,-9,-9,-9,1,1,0,35,3,0,2,0,3,-9,6,3,0,1,3,0,6.4777522,6.8840189,4,0,0,0,-9,0,-984.68719,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.4537354,0,74.552559,3,42.310001,49.450001,-9,-9,4,1,1,0,0,12,2,0,932.33331,9495.7422,0,0,2307.3225 -5492,6783,12376,-9,12375,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,0,5,6.5030169,6.6869688,0,4,0,0,0,-9,0,-924.05804,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,12,2,0,932.33331,9495.7422,0,0,2307.3225 -5492,6783,12377,-9,12375,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1069.3531,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,2,0,932.33331,9495.7422,0,0,2307.3225 -5493,6784,12378,12379,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,0,4,8.5964727,8.4342127,6.0383487,1,0,-9,10,0,1,-35.289337,0,0,0,55,3,1,1,3,3,2019,1,2,6,0,44,44,15,1,0,1,0,12.439334,12.439334,0,0,0,0,0,0,0,0,0,0,0,0,6.6920223,0,0,57.16,56.150002,40.73,41.310001,6,1,1,0,0,6,5,1,318.5,124445.49,0,0,2329.604 -5493,6784,12379,12378,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,0,1,7.6120315,7.476603,0,1,0,-9,10,0,-1,-4.7170072,0,0,0,56,3,4,1,3,3,2019,1,1,13,2,28,26,15,1,0,1,0,7.4304762,7.4304762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.73,41.310001,57.16,56.150002,2,1,1,0,0,6,5,1,318.5,124445.49,0,0,2329.604 -5493,6785,12380,-9,12379,12378,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,2,7.2961321,7.7909474,0,3,0,0,0,-9,0,-1079.6564,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,33,12,45,0,15,1,1,-9,1,4.9522977,4.9522977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.309999,56.57,-9,-9,2,1,1,0,0,6,3,1,616,114023.52,0,0,206.86523 -5494,6786,12381,-9,12384,12383,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1000.4605,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,5,1,496.25,395631.56,0,0,3958.3301 -5494,6786,12382,-9,12384,12383,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.3057,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,496.25,395631.56,0,0,3958.3301 -5494,6786,12383,12384,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,8.9841928,8.9906082,0,2,0,-9,9,0,5,37.594696,0,0,0,38,1,4,1,-9,-9,2019,1,1,19,9,60,52,15,1,1,1,0,13.393669,13.393669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,45.849998,61.259998,6,1,1,0,0,9,5,1,496.25,395631.56,0,0,3958.3301 -5494,6786,12384,12383,-9,-9,1,1,0,38,1,0,2,0,1,1,2,1,0,0,4,8.1479454,8.0522346,0,2,0,-9,15,0,-5,75.40551,-9,0,1,43,2,4,1,2,2,2019,1,2,9,0,47,0,15,1,0,1,0,11.383516,11.383516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.849998,61.259998,48.279999,60.18,6,1,1,0,0,9,5,1,496.25,395631.56,0,0,3958.3301 -5495,6787,12385,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-987.67505,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,-9,-9,5,1,1,0,0,7,1,0,366,0,0,0,1505.462 -5496,6788,12386,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,0,3,0,7.6337543,7.5873795,3,0,0,0,-9,0,-991.8913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2817826,7.5512114,0,0,44.360001,49.959999,-9,-9,5,1,1,0,0,4,3,1,227,354175.22,0,0,659.36938 -5497,6789,12387,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,3,7.781795,8.1758528,0,3,0,0,0,-9,0,-1096.7615,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,35,35,15,1,0,-9,0,11.925704,11.925704,0,0,0,0,0,0,0,14.5,0,0,0,4.7350259,0,13.865108,3,55.959999,49.93,-9,-9,6,1,1,0,0,9,4,0,1114,1097603,0,0,2017.6661 -5498,6790,12388,12389,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.5426884,7.4650264,1,0,-9,6,0,4,76.089386,0,0,0,67,3,1,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.151618,0,0,53,47,39,24,6,1,1,0,0,13,2,1,990.5,721375.25,0,0,1887.8828 -5498,6790,12389,12388,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,6,0,-4,-72.753555,0,0,0,71,3,3,3,3,3,2019,4,1,29,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,24,53,47,7,1,1,0,0,13,2,1,990.5,721375.25,0,0,1887.8828 -5498,6791,12390,-9,12389,12388,4,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,7.4753475,7.7677312,0,3,0,0,0,-9,0,-1043.9904,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,43,35,15,1,0,-9,1,5.4301882,5.4301882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,888,-33577.754,0,0,1109.7158 -5499,6792,12391,12392,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.6008577,8.8853817,7.1955948,1,0,-9,42,0,1,-111.23718,0,0,0,59,2,4,1,3,3,2019,1,1,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1292429,7.8171978,0,0,51,49,55.790001,52.619999,5,1,1,0,0,5,5,1,200.5,135758.22,0,0,3963.2778 -5499,6792,12392,12391,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.7279077,7.452426,0,1,0,-9,42,0,-1,43.833397,0,0,0,60,3,3,1,3,3,2019,1,2,7,0,30,32,15,1,0,1,0,10.275177,10.275177,0,0,0,0,0,0,0,0,0,0,0,3.851043,0,0,0,55.790001,52.619999,51,49,6,1,1,0,0,5,5,1,200.5,135758.22,0,0,3963.2778 -5500,6793,12393,12394,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,6.4268456,5.9771504,1,0,-9,9,0,9,-29.012283,0,0,0,57,2,3,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5258942,6.4397116,0,0,55.790001,52.619999,43.57,52.959999,7,1,1,0,0,10,4,1,1338.5,2078944.8,0,0,2255.6479 -5500,6793,12394,12393,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.1212854,8.1673536,0,1,0,-9,9,0,0,42.970703,0,0,0,66,1,4,3,2,2,2019,2,1,10,0,39,39,15,1,0,4,0,11.294124,11.294124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,52.959999,55.790001,52.619999,5,1,1,0,0,10,4,1,1338.5,2078944.8,0,0,2255.6479 -5501,6794,12395,-9,12396,-9,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-848.69678,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.299999,58.970001,-9,-9,5,1,1,0,0,9,2,1,1062,14064.695,0,0,1141.807 -5501,6794,12396,-9,-9,-9,1,1,0,51,3,0,1,0,3,-9,2,1,0,0,2,7.4276199,7.2577462,0,4,0,0,0,-9,0,-1015.869,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,11,27,24,15,1,1,-9,0,7.2508006,7.2508006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,40.240002,-9,-9,3,1,1,0,1,9,2,1,1062,14064.695,0,0,1141.807 -5501,6795,12397,-9,12396,-9,2,1,0,18,2,0,1,0,2,1,11,3,0,0,3,7.2875667,7.677969,0,3,0,0,0,-9,0,-1039.2769,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.27,53.93,-9,-9,5,1,1,0,0,9,3,1,261,76916.391,0,0,4.2866907 -5502,6796,12398,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,1,3,0,5.7972569,5.9846644,3,0,0,0,-9,0,-1109.3489,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,5.311029,0,0,0,0,1,1,0,0,5.9706721,0,0,61.59,29.780001,-9,-9,6,1,1,0,0,5,2,1,617,174836.8,0,0,909.53125 -5503,6797,12399,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,5.5474634,5.2524142,3,0,0,0,-9,0,-891.40186,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.418282,5.4787908,0,0,64.760002,48.619999,-9,-9,7,1,1,0,0,11,2,1,410,41488.988,0,0,1269.3707 -5504,6798,12400,12402,-9,-9,2,1,0,39,1,0,2,0,1,-9,7,2,0,0,4,0,0,0,2,0,-9,11,0,-10,-126.95957,1,0,1,49,1,4,1,3,3,2019,3,1,16,4,0,6,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,51.240002,58.84,6,2,3,0,0,9,5,1,353.25,1239431.9,0,0,5236.5132 -5504,6798,12401,-9,12400,12402,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.8206,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,5,1,353.25,1239431.9,0,0,5236.5132 -5504,6798,12402,12400,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,0,4,9.3199301,9.6198292,0,2,0,-9,11,0,10,-41.113201,0,0,0,39,1,4,2,3,3,2019,2,2,10,1,52,50,15,1,0,2,0,36.023407,36.023407,0,0,0,0,0,0,0,0,0,0,0,1.7115707,0,0,0,51.240002,58.84,48.810001,59.91,6,1,1,0,0,9,5,1,353.25,1239431.9,0,0,5236.5132 -5504,6798,12403,-9,12400,12402,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.98535,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,9,5,1,353.25,1239431.9,0,0,5236.5132 -5505,6799,12404,-9,12408,12406,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.78943,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,1,507,93222.234,0,0,3721.9983 -5505,6799,12405,-9,12408,12406,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.82843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,507,93222.234,0,0,3721.9983 -5505,6799,12406,12408,-9,-9,1,1,1,39,1,1,3,0,2,-9,2,1,0,0,4,8.7677603,8.3497152,0,2,0,-9,11,0,5,124.09262,0,0,0,34,2,4,1,2,2,2019,1,2,12,1,39,39,15,1,0,1,0,13.209502,13.209502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,48.630001,51.790001,6,1,1,0,0,7,4,1,507,93222.234,0,0,3721.9983 -5505,6799,12407,-9,12408,12406,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.1537,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,507,93222.234,0,0,3721.9983 -5505,6799,12408,12406,-9,-9,2,1,0,34,1,1,3,0,2,-9,2,1,0,0,4,7.5983806,7.4980869,0,2,0,-9,11,0,-5,52.497845,0,0,1,39,2,4,1,2,2,2019,1,1,10,0,18,9,15,1,0,1,0,12.724691,12.724691,0,0,0,0,0,0,0,0,1,1,0,7.0211282,0,0,0,48.630001,51.790001,46.389999,60.990002,6,1,1,0,0,7,4,1,507,93222.234,0,0,3721.9983 -5506,6800,12409,12413,-9,-9,1,1,0,33,1,1,3,0,2,-9,2,1,0,0,3,7.9169526,7.9009004,0,2,0,-9,16,0,-14,-64.144287,0,0,1,47,3,4,1,3,3,2019,1,2,13,4,0,15,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.369999,57.889999,52,55,6,2,3,0,0,4,3,1,925.20001,51571.52,0,0,2987.3652 -5506,6800,12410,-9,12409,12413,3,1,0,12,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.68445,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,3,1,925.20001,51571.52,0,0,2987.3652 -5506,6800,12411,-9,12409,12413,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.20764,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,3,1,925.20001,51571.52,0,0,2987.3652 -5506,6800,12412,-9,12409,12413,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-946.54919,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,3,1,925.20001,51571.52,0,0,2987.3652 -5506,6800,12413,12409,-9,-9,2,1,1,47,1,1,3,0,3,-9,1,1,0,0,4,7.8740816,7.84235,0,2,0,-9,16,0,14,59.975143,0,0,0,33,2,3,1,3,3,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.369999,57.889999,6,2,3,0,0,4,3,1,925.20001,51571.52,0,0,2987.3652 -5507,6801,12414,12415,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,1,1,0,6.0312095,5.9741712,1,0,-9,4,0,-1,7.8935494,0,0,0,63,1,5,3,-9,-9,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9138513,6.0455909,0,0,40.02,20.93,50.540001,62.09,6,3,4,0,0,8,3,1,618,1441675.3,0,0,2343.5505 -5507,6801,12415,12414,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,5,0,7.645371,7.8472409,1,0,-9,4,0,1,-9.7874212,0,0,0,62,2,1,3,3,2,2019,4,2,0,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2178288,7.6418266,0,0,50.540001,62.09,40.02,20.93,6,4,2,0,0,8,3,1,618,1441675.3,0,0,2343.5505 -5508,6802,12416,12417,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.7743988,7.9543672,0,1,0,-9,7,0,0,-75.708229,0,0,0,56,2,4,3,-9,-9,2019,2,1,10,1,25,25,15,1,0,4,0,9.0983486,9.0983486,0,0,0,0,0,0,0,0,0,0,0,2.9244435,0,0,0,52,53,45.919998,43.830002,6,1,1,0,0,10,5,1,697.5,569101.19,0,0,3091.6357 -5508,6802,12417,12416,-9,-9,1,1,1,56,1,0,0,0,2,-9,4,3,0,0,4,0,8.5541153,8.5573502,1,0,-9,32,0,0,-8.2015629,0,0,0,56,2,4,1,2,2,2019,3,2,10,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0299263,8.7034416,0,0,45.919998,43.830002,52,53,6,1,1,0,0,10,5,1,697.5,569101.19,0,0,3091.6357 -5509,6803,12418,12419,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,-1,0,0,0,0,66,2,2,3,3,3,2019,4,1,10,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.029999,36.990002,6,1,1,0,0,13,1,1,496,113457.03,0,0,808.8241 -5509,6803,12419,12418,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,1,0,-9,0,0,65,2,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.029999,36.990002,57.16,56.150002,5,1,1,0,0,13,1,1,496,113457.03,0,0,808.8241 -5510,6804,12420,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,0,3,9.6175976,9.6666517,0,3,0,0,0,-9,0,-919.03088,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,63,15,1,0,-9,0,45.914108,45.914108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.700001,-9,-9,6,1,1,0,0,4,5,1,788,-11736.552,0,0,5458.3521 -5511,6805,12421,12422,-9,-9,1,1,1,87,1,0,0,0,2,-9,4,3,0,0,3,0,7.4419389,7.2892952,1,0,-9,59,0,3,45.145489,0,0,0,84,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9752927,120.03726,1,54,45,52,45,6,1,1,0,0,13,3,1,777.5,673530.19,0,0,2233.9141 -5511,6805,12422,12421,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,3,0,6.6543131,6.6920009,1,0,-9,59,0,-3,-39.883121,0,0,0,87,2,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,44.39307,0,0,0,0,0,1,1,0,.24348554,6.597733,0,0,52,45,54,45,6,1,1,0,0,13,3,1,777.5,673530.19,0,0,2233.9141 -5512,6806,12423,-9,12426,12425,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-928.38623,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,2,2,1,507.25,19582.414,0,0,1672.5175 -5512,6806,12424,-9,12426,12425,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.40887,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,2,2,1,507.25,19582.414,0,0,1672.5175 -5512,6806,12425,12426,-9,-9,2,1,1,41,1,1,2,0,1,-9,1,1,0,0,2,0,0,0,2,0,-9,2,0,14,2.014451,0,0,0,27,1,2,1,-9,-9,2019,1,1,12,0,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.27,51.529999,51.689999,41.419998,5,4,5,0,0,2,2,1,507.25,19582.414,0,0,1672.5175 -5512,6806,12426,12425,-9,-9,1,1,0,27,1,1,2,0,1,-9,5,1,0,0,2,7.8364391,7.5921516,0,2,0,-9,2,0,-14,-57.944637,0,1,1,41,1,2,1,-9,-9,2019,1,2,11,1,23,22,15,1,0,1,0,9.6598711,9.6598711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.689999,41.419998,41.27,51.529999,6,1,1,0,0,2,2,1,507.25,19582.414,0,0,1672.5175 -5513,6807,12427,-9,12429,12428,4,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.39563,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,30,12,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4525743,0,0,0,8.0900002,69.220001,-9,-9,4,1,1,0,0,4,4,1,944.33331,392679.97,0,0,3001.8496 -5513,6807,12428,12429,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,9.0374365,9.0346994,0,2,0,-9,24,0,4,54.858643,0,0,0,42,1,4,2,2,2,2019,2,1,14,2,50,45,15,1,0,2,0,18.460695,18.460695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.380001,41.240002,32.669998,63.540001,5,1,1,0,0,4,4,1,944.33331,392679.97,0,0,3001.8496 -5513,6807,12429,12428,-9,-9,1,1,0,42,1,0,1,0,1,0,7,2,0,0,4,6.0337577,5.9371238,0,2,0,-9,25,0,-4,-20.520531,-9,0,1,46,2,3,1,2,-9,2019,3,2,16,5,4,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.669998,63.540001,54.380001,41.240002,5,1,1,0,0,4,4,1,944.33331,392679.97,0,0,3001.8496 -5514,6808,12430,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,1,1,0,0,3,9.7479038,9.7340689,0,3,0,0,0,-9,0,-960.2804,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,70,60,15,1,0,-9,0,29.100225,29.100225,0,0,0,0,0,0,0,0,0,0,0,3.2620211,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,6,5,0,93,-153366.98,0,0,10990.467 -5515,6809,12431,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,11,3,0,1,5,0,0,0,3,0,-9,0,-9,0,-1080.6256,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,58,-9,-9,7,1,1,0,0,2,1,0,1447,-61905.543,0,0,2215.3311 -5516,6810,12432,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,2,0,6.4529667,6.340353,3,0,0,0,-9,0,-979.78827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6336466,6.731452,0,0,49.470001,32.98,-9,-9,5,1,1,0,0,7,2,1,2233,253999.05,0,0,2336.7517 -5517,6811,12433,12434,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,5,9.3853874,9.5200367,0,1,0,-9,7,0,3,2.2829161,0,0,0,54,2,5,3,3,3,2019,2,2,8,0,47,50,15,1,0,3,0,39.642342,39.642342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,35.66,59.41,7,1,1,0,0,12,5,1,856,1564473.8,0,0,5097.6597 -5517,6811,12434,12433,-9,-9,2,1,0,54,1,0,0,0,2,-9,6,3,0,0,5,0,0,0,1,0,-9,7,0,-3,-70.161995,0,0,0,57,1,5,1,2,2,2019,3,1,10,0,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3709645,0,0,0,35.66,59.41,50.540001,62.09,6,1,1,0,0,12,5,1,856,1564473.8,0,0,5097.6597 -5518,6812,12435,12436,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,0,3,8.8926296,9.0064354,7.7269344,1,0,-9,43,0,1,-27.789122,0,0,0,62,1,3,1,3,3,2019,1,2,6,0,55,70,15,1,0,1,0,10.027745,10.027745,0,0,0,0,0,0,0,0,1,1,0,7.8150811,7.9744959,0,0,59.040001,48.599998,52.880001,45.970001,5,1,1,0,0,9,5,1,612.5,2748012,0,0,6728.8706 -5518,6812,12436,12435,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,0,3,7.5530467,8.2222166,7.4389548,1,0,-9,43,0,-1,-30.274265,0,0,0,63,2,3,1,3,2,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.6682434,7.4093285,20.154861,3,52.880001,45.970001,59.040001,48.599998,5,1,1,0,0,9,5,1,612.5,2748012,0,0,6728.8706 -5519,6813,12437,12439,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,0,4,8.7233639,9.2138147,0,2,0,-9,10,0,-6,-56.307171,0,0,0,44,2,4,1,-9,-9,2019,1,1,7,0,87,50,15,1,0,1,0,9.1275082,9.1275082,0,0,0,0,0,0,0,0,1,1,0,2.6660895,0,0,0,54.200001,57.490002,57.759998,54.509998,5,1,1,0,0,7,5,1,1025,-81459.086,0,0,4547.2197 -5519,6813,12438,-9,12439,12437,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.2056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,1025,-81459.086,0,0,4547.2197 -5519,6813,12439,12437,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,8.2687311,8.0898542,0,2,0,-9,10,0,6,-31.947336,0,0,1,38,2,4,1,2,2,2019,1,2,6,0,27,27,15,1,0,1,0,17.422514,17.422514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,54.200001,57.490002,5,1,1,0,0,7,5,1,1025,-81459.086,0,0,4547.2197 -5520,6814,12440,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,4,0,5.7120042,5.8888202,3,0,0,0,-9,0,-1099.1848,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0373888,5.7294149,0,0,54.740002,57.220001,-9,-9,6,1,1,0,0,11,2,1,767,151585.31,0,0,2094.1365 -5521,6815,12441,12442,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,0,4,9.2490273,8.8435507,0,1,0,-9,7,0,-6,-79.690918,-9,0,0,43,2,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,16.806202,16.806202,0,0,0,0,0,0,0,0,0,0,0,7.3472991,0,0,0,51,57,36.459999,61.59,5,1,1,0,0,7,5,1,1114.5,78646.781,0,0,3939.3799 -5521,6815,12442,12441,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,7.5705013,7.324481,0,1,0,-9,7,0,6,54.226543,0,0,1,37,2,4,1,2,2,2019,1,2,6,0,37,38,15,1,0,1,0,5.0933118,5.0933118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.459999,61.59,51,57,5,1,1,0,0,7,5,1,1114.5,78646.781,0,0,3939.3799 -5522,6816,12443,12444,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,45,0,-4,0,0,0,0,71,3,5,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.6965723,3,57.16,56.150002,58,54,2,1,1,0,0,4,1,1,1524.5,304180.25,0,0,1204.6519 -5522,6816,12444,12443,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,45,0,4,0,0,0,0,67,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,8.7118416,3,58,54,57.16,56.150002,7,1,1,0,0,4,1,1,1524.5,304180.25,0,0,1204.6519 -5523,6817,12445,12446,-9,-9,1,1,1,41,1,0,1,0,1,-9,1,1,0,0,4,6.7328634,6.6882,0,2,0,-9,13,0,7,-67.927582,0,0,0,34,3,4,3,3,3,2019,2,2,6,0,30,30,15,1,0,3,0,2.9330366,2.9330366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48,57,4,2,3,0,1,7,2,1,193.33333,325522.38,0,0,1271.4626 -5523,6817,12446,12445,-9,-9,2,1,0,34,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-7,-133.77167,-9,0,1,41,1,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,57.16,56.150002,5,2,3,0,0,7,2,1,193.33333,325522.38,0,0,1271.4626 -5523,6817,12447,-9,12446,12445,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.3341,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,2,1,193.33333,325522.38,0,0,1271.4626 -5524,6818,12448,12449,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.6158242,7.8802648,0,1,0,-9,30,0,0,20.71051,0,0,0,49,1,3,1,3,3,2019,1,2,6,0,24,30,15,1,0,1,0,11.127648,11.127648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,41.52,48.369999,7,1,1,0,0,10,5,1,814,688633.63,0,0,2566.7249 -5524,6818,12449,12448,-9,-9,2,1,1,49,1,0,0,0,1,-9,1,1,0,0,3,8.4195061,8.7053566,0,1,0,-9,30,0,0,-142.56549,0,0,0,49,2,4,1,3,3,2019,1,1,10,1,60,60,15,1,0,1,0,11.710054,11.710054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.52,48.369999,57.16,56.150002,5,1,1,0,0,10,5,1,814,688633.63,0,0,2566.7249 -5524,6819,12450,-9,12448,12449,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,8.737855,8.4718294,0,3,0,0,0,-9,0,-953.37299,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,15,3,39,40,15,1,0,-9,1,16.013975,16.013975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.82,51.880001,-9,-9,6,1,1,0,1,10,4,1,1929,44290.262,0,0,3303.4285 -5525,6820,12451,12454,-9,-9,2,1,0,49,1,0,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,23,0,-21,-1.307435,0,0,0,70,3,3,3,3,3,2019,4,1,13,3,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.439999,41.5,52,47,6,2,3,0,1,6,2,1,1016.4,40792.652,0,0,768.70276 -5525,6820,12452,-9,12451,12454,5,1,1,16,2,0,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.06488,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,6,2,1,1016.4,40792.652,0,0,768.70276 -5525,6820,12453,-9,12451,12454,6,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.37128,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,2,1,1016.4,40792.652,0,0,768.70276 -5525,6820,12454,12451,-9,-9,1,1,1,70,1,0,4,0,3,-9,4,3,0,0,3,0,6.4805694,6.4550929,2,0,-9,23,0,21,-68.459427,0,0,0,49,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,1,0,0,12.155696,10.924965,0,0,0,1,1,0,0,6.153758,0,0,52,47,36.439999,41.5,5,2,3,0,0,6,2,1,1016.4,40792.652,0,0,768.70276 -5525,6820,12455,-9,12451,12454,7,1,1,14,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1017.0952,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,6,2,1,1016.4,40792.652,0,0,768.70276 -5525,6821,12456,-9,12451,12454,3,1,0,21,2,0,4,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1078.0713,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,44.110001,-9,-9,4,2,3,0,1,6,1,1,735,0,0,0,0 -5525,6822,12457,-9,12451,12454,4,1,0,18,2,0,4,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-942.91705,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,-9,-9,7,2,3,0,0,6,2,1,1157,46450.426,0,0,0 -5526,6823,12458,-9,-9,12459,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-978.75391,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,386,1254523.3,0,0,2698.479 -5526,6823,12459,-9,-9,-9,1,1,1,54,3,0,1,0,1,-9,1,1,0,0,4,8.3909912,8.4776974,0,4,0,0,0,-9,0,-981.39008,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,30,0,15,1,1,-9,0,22.552925,22.552925,0,0,0,0,0,0,0,0,1,1,0,7.7953143,0,0,0,38.59,60.849998,-9,-9,3,1,1,0,1,9,4,1,386,1254523.3,0,0,2698.479 -5527,6824,12460,-9,12461,12464,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.994,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,4,1,878.79999,505542.47,0,0,4693.0591 -5527,6824,12461,12464,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,0,4,8.6431847,8.6111441,0,2,0,-9,6,0,0,35.876907,0,0,1,47,2,3,1,3,1,2019,1,1,10,0,53,50,15,1,0,1,0,10.993076,10.993076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,50.23,52.59,3,1,1,0,0,6,4,1,878.79999,505542.47,0,0,4693.0591 -5527,6824,12462,-9,12461,12464,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.2689,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,4,1,878.79999,505542.47,0,0,4693.0591 -5527,6824,12463,-9,12461,12464,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.92542,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,878.79999,505542.47,0,0,4693.0591 -5527,6824,12464,12461,-9,-9,1,1,1,47,1,0,3,0,2,-9,2,1,0,0,3,8.7209282,8.5319672,0,2,0,-9,6,0,9,-41.847919,0,0,0,38,2,4,1,-9,-9,2019,1,2,7,0,65,48,15,1,0,1,0,11.085107,11.085107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.23,52.59,51.830002,57.200001,7,1,1,0,0,6,4,1,878.79999,505542.47,0,0,4693.0591 -5528,6825,12465,-9,12466,12467,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.13293,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,1,397,11582.988,0,0,1871.1743 -5528,6825,12466,12467,-9,-9,1,1,0,32,1,1,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,5,0,-5,-34.08606,0,0,1,37,1,3,1,-9,-9,2019,3,2,16,4,0,38,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2098101,0,1.5420153,3,46.669998,55.57,53.990002,48.040001,5,1,1,1,0,11,4,1,397,11582.988,0,0,1871.1743 -5528,6825,12467,12466,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,0,3,8.499815,8.515111,0,2,0,-9,5,0,5,36.422729,0,0,0,32,2,3,3,-9,-9,2019,2,1,9,0,35,60,15,1,0,3,0,19.132069,19.132069,0,0,0,0,0,0,0,0,1,1,0,.82505828,0,0,0,53.990002,48.040001,46.669998,55.57,5,1,1,0,0,11,4,1,397,11582.988,0,0,1871.1743 -5529,6826,12468,12469,-9,-9,2,1,0,53,1,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,7,0,-2,-73.164902,0,0,0,55,2,4,1,3,3,2019,1,1,11,0,40,70,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.227046,0,15.459736,3,50.029999,52.619999,59.32,49.66,6,1,1,0,0,9,5,1,1111,1168598.9,0,0,7327.3408 -5529,6826,12469,12468,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,4,9.5540199,9.6641331,0,1,0,-9,7,0,2,64.212891,0,0,0,53,3,3,1,2,2,2019,1,2,6,0,30,42,15,1,0,1,0,55.124325,55.124325,0,0,0,0,0,0,0,2,0,0,0,8.1051512,0,0,3,59.32,49.66,50.029999,52.619999,6,1,1,0,0,9,5,1,1111,1168598.9,0,0,7327.3408 -5529,6827,12470,-9,12468,12469,3,1,1,24,2,0,0,0,2,-9,1,1,0,0,4,6.9823632,6.7379074,0,3,0,0,0,-9,0,-1007.1707,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,35,30,15,1,0,-9,1,3.2353508,3.2353508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,2,1,206,11872.05,0,0,103.93635 -5529,6828,12471,-9,12468,12469,4,1,1,23,2,0,0,0,2,-9,1,1,0,0,3,4.6869917,4.6192136,0,3,0,0,0,-9,0,-1048.4497,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,40,32,15,1,0,-9,1,.25287271,.25287271,0,0,0,0,0,0,0,0,0,0,0,2.6866114,0,0,0,58.470001,50.220001,-9,-9,2,1,1,0,0,9,2,1,346,19974.949,0,0,-91.618156 -5530,6829,12472,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,3,0,7.6016021,7.3846545,3,0,0,0,-9,0,-884.66364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6868443,0,0,41.380001,51.32,-9,-9,6,1,1,0,0,13,3,1,354,543547.94,0,0,1151.026 -5531,6830,12473,-9,12475,12474,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.2548,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,453.39999,382490.59,0,0,3044.1443 -5531,6830,12474,12475,-9,-9,1,1,1,43,1,0,3,0,2,-9,2,1,0,0,4,8.0551872,8.2694254,0,2,0,-9,2,0,-3,6.312427,0,0,0,46,2,4,3,2,2,2019,2,2,9,0,46,50,15,1,0,3,0,9.4357653,9.4357653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,54.790001,55.860001,5,1,1,0,0,4,3,1,453.39999,382490.59,0,0,3044.1443 -5531,6830,12475,12474,-9,-9,2,1,0,46,1,0,3,0,2,-9,6,3,0,0,4,0,5.9785404,5.8985829,2,0,-9,2,0,3,-9.1618805,0,0,0,43,2,4,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8541884,0,0,0,54.790001,55.860001,54.740002,57.220001,6,1,1,0,0,4,3,1,453.39999,382490.59,0,0,3044.1443 -5531,6830,12476,-9,12475,12474,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-976.38965,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,4,3,1,453.39999,382490.59,0,0,3044.1443 -5531,6830,12477,-9,12475,12474,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.0695,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,1,453.39999,382490.59,0,0,3044.1443 -5532,6831,12478,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,4,0,7.5805497,7.6653943,3,0,0,0,-9,0,-928.44122,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3027139,7.6821809,15.294709,3,55.34,54.259998,-9,-9,6,1,1,0,0,9,3,1,478,813667.19,0,0,1616.5685 -5533,6832,12479,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,4,8.863574,8.7179871,0,3,0,0,0,-9,0,-1052.7408,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,42,42,15,1,0,-9,0,14.043018,14.043018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.400002,54.119999,-9,-9,5,1,1,0,0,4,5,1,226,115662.27,0,0,2720.3054 -5534,6833,12480,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,3,8.2443428,8.1882582,0,3,0,0,0,-9,0,-892.49048,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,36,15,1,0,-9,0,13.42074,13.42074,0,0,0,0,0,0,0,0,0,0,0,4.7636561,0,0,0,56.52,48.310001,-9,-9,5,1,1,0,0,10,4,1,1298,456995.5,0,0,1298.5236 -5535,6834,12481,-9,-9,-9,1,1,0,88,3,0,2,0,3,-9,4,3,0,0,1,0,5.429904,5.8851662,4,0,0,0,-9,0,-954.1311,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2970963,0,0,43.490002,23.280001,-9,-9,5,1,1,0,0,9,2,1,400,316981.25,0,0,441.72931 -5536,6835,12482,12483,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,6.2294035,6.6632252,1,0,-9,7,0,3,-65.469307,0,0,0,63,2,5,3,3,3,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6776085,7.0019302,0,0,48.869999,58.549999,39.060001,64.459999,6,1,1,0,0,9,4,1,388,2036886,0,0,3449.21 -5536,6835,12483,12482,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,8.415473,8.7238445,1,0,-9,7,0,-3,174.14682,0,0,0,66,1,4,3,2,3,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5160937,7.8674784,1.9327502,3,39.060001,64.459999,48.869999,58.549999,6,1,1,0,0,9,4,1,388,2036886,0,0,3449.21 -5537,6836,12484,12485,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,55,0,-11,0,0,0,0,90,3,2,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,9.8933659,0,0,0,0,135.48373,27.5,1,1,0,2.3970459,0,27.591932,1,48.040001,36.459999,39.98,36.02,6,1,1,0,0,13,1,1,668.5,-26880.217,0,0,1048.0778 -5537,6836,12485,12484,-9,-9,1,1,1,90,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,55,0,11,0,0,0,0,79,3,2,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.98,36.02,48.040001,36.459999,5,1,1,0,0,13,1,1,668.5,-26880.217,0,0,1048.0778 -5538,6837,12486,12487,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,0,2,7.9217505,7.5588059,0,1,0,-9,10,0,-11,-172.82654,0,0,0,64,3,1,1,3,3,2019,1,2,12,0,40,40,15,1,0,1,0,9.3918829,9.3918829,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.82,39.580002,44.400002,17.690001,5,1,1,0,0,6,4,1,551,407186.88,0,0,2527.229 -5538,6837,12487,12486,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,1,1,7.9569149,7.6986604,0,1,0,-9,10,0,11,-7.9631119,0,0,0,53,3,2,1,-9,-9,2019,1,1,13,1,40,32,15,1,0,1,0,7.599329,7.599329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.400002,17.690001,61.82,39.580002,6,1,1,0,0,6,4,1,551,407186.88,0,0,2527.229 -5539,6838,12488,12490,-9,-9,2,1,1,38,1,1,1,0,2,-9,2,1,0,0,3,8.0502739,8.4329338,0,2,0,-9,6,0,3,-67.088188,0,0,0,35,1,5,1,-9,-9,2019,1,1,12,0,37,48,15,1,0,1,0,11.986449,11.986449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,43.439999,61.220001,4,1,1,0,0,2,5,1,801.66669,236594.09,0,0,3826.6614 -5539,6838,12489,-9,12490,12488,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.85541,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,801.66669,236594.09,0,0,3826.6614 -5539,6838,12490,12488,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,0,5,8.3642645,8.2476244,0,2,0,-9,6,0,-3,-.6559974,0,0,1,38,2,3,1,2,3,2019,1,2,6,0,31,30,15,1,0,1,0,15.253321,15.253321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,61.220001,43.709999,56.91,6,1,1,0,0,2,5,1,801.66669,236594.09,0,0,3826.6614 -5540,6839,12491,-9,-9,-9,1,1,0,35,2,1,1,0,2,-9,2,1,0,0,3,7.301724,7.4566636,6.3507423,4,0,0,0,-9,0,-952.14166,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,16,16,15,1,1,-9,0,8.240531,8.240531,0,0,0,0,0,0,0,0,1,1,0,6.9508796,0,0,0,32.080002,58.419998,-9,-9,5,1,1,0,0,1,3,1,1507.5,133085.5,0,0,1804.8423 -5540,6839,12492,-9,12491,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1019.4212,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,3,1,1507.5,133085.5,0,0,1804.8423 -5541,6840,12493,12494,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,9.1443567,9.0239029,0,1,0,-9,16,-9,-4,4.2660937,-9,0,0,69,2,4,1,1,1,2019,1,2,13,3,50,0,15,1,0,1,0,20.585838,20.585838,0,0,0,0,0,0,0,0,1,1,0,4.2925801,0,0,0,54.369999,54.799999,52.310001,58.290001,3,1,1,0,0,9,5,1,488.5,2388969.3,0,0,4661.9971 -5541,6840,12494,12493,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,0,4,6.2582035,7.2039013,6.7373652,1,0,-9,16,-9,4,11.869645,-9,0,0,65,2,3,1,3,3,2019,1,1,11,0,28,0,15,1,0,1,0,1.9924039,1.9924039,0,0,0,0,0,0,0,2,1,1,0,8.551651,6.4813218,4.8804178,3,52.310001,58.290001,54.369999,54.799999,6,1,1,0,0,9,5,1,488.5,2388969.3,0,0,4661.9971 -5542,6841,12495,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,4,8.3636971,8.5151548,0,3,0,0,0,-9,0,-980.93933,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,39,15,1,0,-9,0,12.770633,12.770633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,5,1,6621,109213.02,0,0,2330.5432 -5543,6842,12496,12497,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,7.0474262,7.2771344,1,0,-9,6,0,14,-.88764006,0,0,0,59,2,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9269552,118.01579,1,64.209999,26.1,54.790001,30.799999,6,1,1,0,0,4,3,1,898,631182.38,0,0,2084.3188 -5543,6842,12497,12496,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,1,2,0,6.8316793,7.2658677,1,0,-9,6,0,-14,-165.25052,0,0,0,73,3,3,3,3,3,2019,4,2,8,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0991664,0,0,54.790001,30.799999,64.209999,26.1,7,1,1,0,0,4,3,1,898,631182.38,0,0,2084.3188 -5544,6843,12498,12501,-9,-9,1,1,0,33,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,12,0,-4,-41.788979,0,0,1,37,1,4,1,-9,-9,2019,3,2,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.33266,3,36.209999,42.75,51,56,5,2,3,0,0,8,3,1,1469,423128.09,0,0,3050.5554 -5544,6843,12499,-9,12498,12501,6,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.3559,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,3,1,1469,423128.09,0,0,3050.5554 -5544,6843,12500,-9,12498,12501,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.8684,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,3,1,1469,423128.09,0,0,3050.5554 -5544,6843,12501,12498,12503,12504,2,1,1,37,1,0,3,0,1,-9,2,1,0,0,4,8.302309,8.4953547,0,2,0,-9,5,0,4,-55.287312,0,0,0,33,2,3,3,3,2,2019,2,1,10,1,35,37,15,1,0,3,0,13.187051,13.187051,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,36.209999,42.75,5,2,3,0,0,8,3,1,1469,423128.09,0,0,3050.5554 -5544,6843,12502,-9,12498,12501,7,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.1763,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,3,1,1469,423128.09,0,0,3050.5554 -5544,6844,12503,12504,-9,-9,3,1,0,71,1,0,3,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,5,0,-2,0,0,0,0,73,2,3,3,3,3,2019,4,4,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53,47,5,2,3,0,0,8,1,1,1139,-5709.0781,0,0,845.64362 -5544,6844,12504,12503,-9,-9,4,1,1,73,1,0,3,0,2,-9,4,3,0,0,3,0,0,0,2,0,-9,5,0,2,0,0,0,0,71,3,3,3,-9,-9,2019,4,3,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,51,46,6,2,3,0,0,8,1,1,1139,-5709.0781,0,0,845.64362 -5545,6845,12505,12507,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,0,3,4.7751608,4.8693395,0,2,0,-9,16,0,3,-119.59602,0,0,0,46,1,4,1,2,1,2019,1,1,11,0,30,0,15,1,0,1,0,.55360043,.55360043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.23,46.77,57.16,56.150002,6,1,1,0,1,8,5,1,365.33334,17426.438,0,0,3575.458 -5545,6845,12506,-9,12507,12505,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.08313,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,8,5,1,365.33334,17426.438,0,0,3575.458 -5545,6845,12507,12505,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,9.747508,9.7884789,0,2,0,-9,16,0,-3,106.90234,0,0,0,49,2,3,1,1,1,2019,1,2,12,0,83,0,15,1,0,1,0,23.627459,23.627459,0,0,0,0,0,0,0,0,0,0,0,2.9622014,0,0,0,57.16,56.150002,54.23,46.77,6,1,1,0,0,8,5,1,365.33334,17426.438,0,0,3575.458 -5546,6846,12508,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.5535965,7.4619632,3,0,0,0,-9,0,-1010.6686,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5780792,7.5552869,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,6,3,1,389,911041.5,0,0,2312.4604 -5547,6847,12509,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,0,3,8.6883917,8.7506218,0,3,0,0,0,-9,0,-923.37903,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,3,49,50,15,1,0,-9,0,18.169659,18.169659,0,0,0,0,0,0,0,0,1,1,0,7.5307055,0,0,0,49.02,42.18,-9,-9,4,1,1,0,0,9,5,1,56,846208.25,0,0,1459.0596 -5548,6848,12510,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,4,7.7998691,7.3453403,4.2995095,3,0,0,0,-9,0,-925.08673,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,28,15,1,0,-9,0,5.9694929,5.9694929,0,0,0,0,0,0,0,0,1,1,0,3.966418,4.1963773,0,0,59.139999,52.5,-9,-9,2,1,1,0,0,12,3,1,403,108707.62,0,0,3223.9812 -5549,6849,12511,-9,12514,12512,2,1,0,21,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-954.41449,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.450001,59.869999,-9,-9,6,1,1,0,0,8,1,0,4586,43565.254,0,0,0 -5549,6850,12512,12514,-9,-9,4,1,1,45,1,0,1,0,3,-9,2,1,0,0,4,7.7989244,7.8592029,0,2,0,-9,2,0,8,32.257839,0,0,0,37,3,4,3,-9,-9,2019,2,1,9,1,12,26,15,1,0,3,0,22.523525,22.523525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,56,48,56,6,4,5,0,0,8,3,0,1481.3334,-51010.895,0,0,1861.446 -5549,6850,12513,-9,12514,12512,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.01959,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,3,0,1481.3334,-51010.895,0,0,1861.446 -5549,6850,12514,12512,-9,-9,1,1,0,37,1,0,1,0,3,-9,6,3,0,1,4,0,0,0,2,0,-9,2,0,-8,-94.658928,0,0,1,45,3,4,1,3,3,2019,3,4,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,52,56,5,1,1,0,0,8,3,0,1481.3334,-51010.895,0,0,1861.446 -5550,6851,12515,12516,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-3,39.203529,0,0,0,74,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,43.970001,41.299999,7,1,1,0,0,13,2,1,311.5,213278.11,0,0,2018.5543 -5550,6851,12516,12515,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,1,0,6.3724875,6.7554398,1,0,-9,6,0,3,97.899529,0,0,0,71,2,3,3,3,3,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.7554545,6.3370948,0,0,43.970001,41.299999,57.330002,53.459999,6,1,1,0,0,13,2,1,311.5,213278.11,0,0,2018.5543 -5551,6852,12517,12518,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,34,0,3,0,0,0,0,73,3,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.73,40.869999,49.259998,54.610001,6,1,1,0,0,4,1,0,439,-30622.848,0,0,456.16669 -5551,6852,12518,12517,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,34,0,-3,0,0,0,0,76,2,3,3,-9,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.0771985,3,49.259998,54.610001,54.73,40.869999,6,1,1,0,0,4,1,0,439,-30622.848,0,0,456.16669 -5552,6853,12519,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,7.4915566,7.7618713,3,0,0,0,-9,0,-987.16241,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2637711,7.9256816,0,0,47.799999,43.060001,-9,-9,6,1,1,0,0,8,3,1,255,-111861.41,0,0,1734.4828 -5553,6854,12520,-9,12523,12522,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.5098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,695.75,585539.63,0,0,5180.1123 -5553,6854,12521,-9,12523,12522,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.243,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,695.75,585539.63,0,0,5180.1123 -5553,6854,12522,12523,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,3,9.4261408,9.465724,0,2,0,-9,19,0,1,2.8986561,0,0,0,42,1,4,3,2,3,2019,2,2,5,0,60,55,15,1,0,3,0,25.735888,25.735888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.470001,50.220001,58.150002,52.91,6,1,1,0,0,2,5,1,695.75,585539.63,0,0,5180.1123 -5553,6854,12523,12522,-9,-9,2,1,0,42,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-1,-5.4464211,0,0,1,43,1,3,1,3,3,2019,3,1,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4210982,0,0,0,58.150002,52.91,58.470001,50.220001,6,1,1,0,0,2,5,1,695.75,585539.63,0,0,5180.1123 -5554,6855,12524,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,2,1,0,0,3,8.2564306,8.0716991,0,3,0,0,0,-9,0,-1159.3477,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,35,38,15,1,0,-9,0,11.579835,11.579835,0,0,0,0,0,0,0,0,0,0,0,2.4335184,0,0,0,52,54.509998,-9,-9,5,4,2,0,0,9,4,0,1244,-60328.184,0,0,1496.0787 -5555,6856,12525,12526,-9,-9,2,1,0,65,1,0,0,0,1,-9,2,1,0,0,4,6.8223233,6.9468722,0,1,0,-9,9,0,17,9.5109415,0,0,0,48,1,3,1,1,3,2019,1,1,9,0,10,4,15,1,0,1,0,12.78557,12.78557,0,0,0,0,0,0,0,0,1,1,0,7.7652197,0,0,0,54.200001,57.490002,52,54.509998,6,1,1,0,0,10,5,1,1199,202030.72,0,0,6516.998 -5555,6856,12526,12525,-9,-9,1,1,1,48,1,0,0,0,1,-9,1,1,0,0,3,9.492177,9.2250366,0,1,0,-9,9,0,-17,-7.1246858,0,0,0,65,1,4,1,2,2,2019,1,2,1,0,50,35,15,1,0,1,0,25.697487,25.697487,0,0,0,0,0,0,0,0,1,1,0,5.3406334,0,0,0,52,54.509998,54.200001,57.490002,7,1,1,0,0,10,5,1,1199,202030.72,0,0,6516.998 -5556,6857,12527,-9,-9,-9,1,1,0,36,3,0,1,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1096.004,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.810001,36.549999,-9,-9,1,1,1,1,0,4,1,0,901,60727.492,0,0,1927.1552 -5556,6858,12528,-9,12527,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-875.29767,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,1,0,1087,23348.279,0,0,0 -5557,6859,12529,12531,-9,-9,2,1,0,32,1,1,2,0,2,-9,5,1,0,0,4,8.1006823,8.3349409,0,2,0,-9,4,0,-3,-130.87744,0,0,1,35,2,4,1,2,3,2019,1,1,11,2,0,22,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,57.16,56.150002,5,1,1,0,0,9,5,1,1173.25,348878.5,0,0,4445.1479 -5557,6859,12530,-9,12529,12531,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-899.73291,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,1173.25,348878.5,0,0,4445.1479 -5557,6859,12531,12529,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,4,8.9198208,8.8124933,0,2,0,-9,4,0,3,-60.61459,0,0,0,32,2,4,1,1,2,2019,1,2,9,0,40,35,15,1,0,1,0,23.35183,23.35183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,48,57,7,1,1,0,0,9,5,1,1173.25,348878.5,0,0,4445.1479 -5557,6859,12532,-9,12529,12531,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.90302,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,1173.25,348878.5,0,0,4445.1479 -5558,6860,12533,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,1,2,7.9224129,8.1084986,0,3,0,0,0,-9,0,-1014.9292,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,37,37,15,1,1,-9,0,9.0125551,9.0125551,0,0,0,0,0,0,0,0,1,1,0,3.8239832,0,0,0,33.970001,37.349998,-9,-9,7,1,1,0,0,11,3,1,277,352513,0,0,1676.1956 -5559,6861,12534,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,2,7.593152,7.6308336,0,3,0,-9,0,0,0,-965.82819,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,27,10,36,41,15,1,1,-9,0,6.0648761,6.0648761,0,0,0,0,0,0,0,0,0,0,0,.99273515,0,0,0,1.83,67.419998,-9,-9,2,1,1,0,0,11,3,0,1263,73198.43,0,0,2143.0884 -5559,6862,12535,-9,-9,-9,2,1,1,28,2,0,0,0,2,-9,1,1,0,0,4,8.6100054,8.8412905,0,3,0,-9,0,0,0,-1018.8869,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,70,54,15,1,0,-9,0,9.2821407,9.2821407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,11,5,0,800,73795.563,0,0,1496.4884 -5560,6863,12536,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,2,1,0,0,4,8.5602837,8.8614054,0,1,0,-9,14,0,10,-147.96001,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,12,0,40,40,15,1,0,-9,0,21.621048,21.621048,0,0,0,0,0,0,0,0,0,0,0,1.1565174,0,0,0,38.939999,60.48,56.990002,50.959999,5,1,1,0,0,8,5,1,1134,997755.81,0,0,1323.7734 -5560,6864,12537,-9,-9,-9,2,1,0,52,2,0,0,0,1,-9,2,1,0,0,4,9.1102171,9.0437632,0,1,0,-9,14,0,-10,89.612549,0,0,0,-9,-9,-9,-9,2,3,2019,1,1,11,0,35,35,15,1,0,-9,0,24.7346,24.7346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.990002,50.959999,38.939999,60.48,6,1,1,0,0,8,5,1,454,298393.84,0,0,3219.9749 -5561,6865,12538,12540,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,8.4783993,8.3265667,0,2,0,-9,10,0,4,-83.864082,0,0,0,44,2,3,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,18.506235,18.506235,0,0,0,0,0,0,0,0,0,0,0,3.5336282,0,0,0,54.200001,57.490002,51.639999,50.48,6,1,1,0,0,10,5,1,1395.3334,262829.59,0,0,5278.8496 -5561,6865,12539,-9,12538,12540,4,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.4813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,1395.3334,262829.59,0,0,5278.8496 -5561,6865,12540,12538,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,0,3,9.1986895,9.2706451,0,2,0,-9,10,0,-4,-24.688488,0,0,0,48,2,4,1,2,3,2019,1,2,16,5,42,42,15,1,1,1,0,27.322672,27.322672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.639999,50.48,54.200001,57.490002,6,1,1,0,0,10,5,1,1395.3334,262829.59,0,0,5278.8496 -5561,6866,12541,-9,12538,12540,3,1,0,19,2,0,1,0,2,-9,11,3,0,0,4,7.8518186,7.9104156,0,3,0,0,0,-9,0,-1038.2805,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,10,4,1,360,-141865.06,0,0,1259.9502 -5562,6867,12542,-9,-9,-9,1,1,1,89,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-940.77368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7530146,0,0,0,32.330002,31.620001,-9,-9,5,1,1,0,0,12,1,0,288,259822.17,0,0,492.74161 -5563,6868,12543,-9,-9,-9,2,1,1,78,3,1,5,0,3,-9,4,3,0,0,3,0,5.917604,6.0782547,4,0,0,0,-9,0,-1132.1649,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0109143,0,0,54,45,-9,-9,5,2,3,0,0,8,2,1,4935,75499.641,0,0,630.82568 -5563,6869,12544,12546,-9,-9,1,1,0,42,1,1,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-5,0,0,0,1,47,2,4,3,3,3,2019,4,3,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.478615,2,50,55,53,55,6,2,3,0,1,8,1,1,402,24588.029,0,0,1101.0806 -5563,6869,12545,-9,12544,12546,9,1,1,6,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.53748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,1,402,24588.029,0,0,1101.0806 -5563,6869,12546,12544,-9,12543,3,1,1,47,1,1,5,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,5,0,0,0,0,42,2,4,3,-9,3,2019,4,1,9,1,0,15,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,50,55,6,2,3,1,0,8,1,1,402,24588.029,0,0,1101.0806 -5563,6870,12547,-9,12550,12549,10,1,0,2,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-927.38135,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,458.75,36972.07,0,0,4579.6982 -5563,6870,12548,-9,12550,12549,8,1,0,6,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.38904,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,3,1,458.75,36972.07,0,0,4579.6982 -5563,6870,12549,12550,-9,12543,5,1,1,39,1,1,5,0,1,-9,2,1,0,0,4,8.3702078,8.8911896,0,2,0,-9,6,0,5,-75.733444,0,0,0,34,2,4,3,-9,3,2019,2,4,9,1,40,40,15,1,0,3,0,15.09219,15.09219,0,0,0,0,0,0,0,0,1,1,0,8.1278563,0,0,0,52,56,49,56,5,2,3,0,0,8,3,1,458.75,36972.07,0,0,4579.6982 -5563,6870,12550,12549,-9,-9,4,1,0,34,1,1,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,-5,-62.391594,0,0,1,39,1,4,1,-9,-9,2019,3,5,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,17.780022,3,49,56,52,56,5,2,3,0,0,8,3,1,458.75,36972.07,0,0,4579.6982 -5564,6871,12551,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,0,3,7.3850331,7.4155154,0,3,0,0,0,-9,0,-940.25043,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,18,18,15,1,0,-9,0,12.109415,12.109415,0,0,0,0,0,0,0,0,0,0,0,2.7364485,0,0,0,44.869999,53.790001,-9,-9,5,1,1,0,0,2,3,1,392,64106.766,0,0,2226.1069 -5565,6872,12552,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,0,3,0,6.4973602,6.5178981,3,0,0,0,-9,0,-839.74329,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8780746,7.1774173,0,0,63.169998,32.939999,-9,-9,6,1,1,0,0,12,2,1,546,-25390.986,0,0,255.76366 -5566,6873,12553,12554,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,7,0,-2,53.482479,0,0,0,67,2,3,3,2,1,2019,2,1,10,1,0,55,15,1,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,4.4292088,3,52,48,50,47,5,1,1,0,1,9,2,1,449,980725.88,0,0,2061.7048 -5566,6873,12554,12553,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,4.8022842,7.4059081,7.7551994,1,0,-9,7,0,2,67.346382,0,0,0,65,2,3,1,2,2,2019,3,2,11,1,0,3,15,4,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.4881129,7.3853436,30.016117,3,50,47,52,48,5,1,1,0,0,9,2,1,449,980725.88,0,0,2061.7048 -5567,6874,12555,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,7.2739272,7.5230293,0,3,0,0,0,-9,0,-1009.159,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,25,26,15,1,1,-9,0,9.053237,9.053237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.57,55.98,-9,-9,3,1,1,0,0,2,3,1,1819,-249117.59,0,0,942.71063 -5568,6875,12556,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,1,2,0,6.3962674,6.5766177,3,0,0,0,-9,0,-1009.9545,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3297553,6.4299369,0,0,52.619999,36.84,-9,-9,7,1,1,0,0,4,2,1,1576,-72577.148,0,0,997.3111 -5569,6876,12557,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,0,3,8.7346344,8.8626423,0,4,0,0,0,-9,0,-971.38257,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,38,41,15,1,0,-9,0,20.40646,20.40646,0,0,0,0,0,0,0,88,1,1,0,0,0,125.1133,3,57.330002,53.459999,-9,-9,5,3,4,0,1,7,5,1,1030,1189807.8,0,0,2378.7295 -5569,6876,12558,-9,12557,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-923.56042,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,3,4,0,0,7,5,1,1030,1189807.8,0,0,2378.7295 -5570,6877,12559,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,2,1,0,0,4,8.0928469,8.1750479,0,4,0,0,0,-9,0,-1072.8199,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,6,38,0,15,1,1,-9,0,11.384243,11.384243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.560001,49.360001,-9,-9,6,3,4,0,0,8,3,0,734.66669,484211.66,0,0,1859.6165 -5570,6877,12560,-9,12559,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-958.63416,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,8,3,0,734.66669,484211.66,0,0,1859.6165 -5570,6877,12561,-9,12559,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1058.1207,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,3,4,0,0,8,3,0,734.66669,484211.66,0,0,1859.6165 -5571,6878,12562,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-965.21832,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.900002,28.209999,-9,-9,2,1,1,0,1,2,1,0,658,-14077.172,0,0,1374.0861 -5572,6879,12563,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,2,1,0,0,3,7.8824906,8.0866108,0,3,0,0,0,-9,0,-1014.0778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,37,39,15,1,0,-9,0,10.599119,10.599119,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.0140305,3,45.880001,45.34,-9,-9,4,3,4,0,0,7,4,1,1077,42762.234,0,0,1374.7942 -5572,6880,12564,-9,12563,-9,2,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-983.89819,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9817972,0,0,0,48,59,-9,-9,5,3,4,0,0,7,1,1,1507,15448.95,0,0,-353.18066 -5572,6881,12565,-9,-9,-9,3,1,1,19,2,0,0,0,2,1,2,1,0,0,4,7.8924541,7.7537489,0,3,0,0,0,-9,0,-896.82471,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,35,0,15,1,0,-9,0,7.7906246,7.7906246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,3,1,3362,-17404.309,0,0,1545.0581 -5573,6882,12566,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,7.9434757,8.075284,3,0,0,0,-9,0,-968.61792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7002196,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,9,3,1,490,351851.91,0,0,858.37256 -5574,6883,12567,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1032.8219,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,38,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.900002,24.290001,-9,-9,4,1,1,0,1,7,1,0,187,0,0,0,1568.1555 -5575,6884,12568,12569,-9,-9,2,1,1,63,1,0,0,0,3,-9,3,3,0,0,4,8.1163864,7.7399373,0,1,0,-9,9,0,-12,-21.592445,0,0,0,75,3,4,3,2,3,2019,4,1,6,0,46,46,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3428918,0,0,0,57.16,56.150002,58.150002,52.91,6,1,1,1,0,7,3,1,439.5,3114296.5,0,0,2288.6426 -5575,6884,12569,12568,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,4.3153143,4.293016,1,0,-9,9,0,12,80.008911,0,0,0,63,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0629916,4.6939721,0,0,58.150002,52.91,57.16,56.150002,7,1,1,0,0,7,3,1,439.5,3114296.5,0,0,2288.6426 -5576,6885,12570,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,4,3,0,0,3,8.8127813,8.919611,7.3019776,3,0,0,0,-9,0,-1092.2516,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,22,38,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.1387205,7.5551562,11.24354,3,59.619999,35.919998,-9,-9,6,1,1,0,0,1,5,1,669,15623.743,0,0,3339.429 -5577,6886,12571,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,5,8.6206169,8.5463505,0,4,0,-9,0,-9,0,-1117.1865,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,40,0,15,1,0,-9,0,13.458589,13.458589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.419998,60.59,-9,-9,6,3,4,0,0,8,4,0,400,585134.81,0,0,1904.9365 -5577,6886,12572,-9,12571,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1082.4385,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,8,4,0,400,585134.81,0,0,1904.9365 -5577,6887,12573,-9,-9,-9,3,1,1,21,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-889.65546,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,8,1,0,131,103215.64,0,0,0 -5578,6888,12574,12575,-9,-9,2,1,0,55,1,0,2,0,2,-9,2,1,0,0,2,5.6712232,5.6428361,0,2,0,-9,23,0,9,9.1318836,0,0,0,46,2,4,1,3,2,2019,1,1,8,0,5,5,15,1,0,1,0,5.99365,5.99365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.98,30.25,39.43,48.139999,6,1,1,0,0,5,2,0,429.5,496596.47,0,0,2277.7573 -5578,6888,12575,12574,-9,-9,1,1,1,46,1,0,2,0,2,-9,1,1,0,0,4,6.8877101,7.0245399,0,2,0,-9,23,0,0,132.73668,0,0,0,55,2,2,1,2,2,2019,1,2,10,0,26,24,15,1,0,1,0,5.6265798,5.6265798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.43,48.139999,60.98,30.25,6,1,1,0,0,5,2,0,429.5,496596.47,0,0,2277.7573 -5578,6889,12576,-9,12574,12575,3,1,1,18,2,0,2,0,2,1,3,3,0,0,3,4.332262,4.3898888,0,3,0,0,0,-9,0,-1060.6632,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.939999,53.790001,-9,-9,5,1,1,1,0,5,2,0,421,-151574.77,0,0,242.74667 -5579,6890,12577,12578,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.2204695,8.2594481,5.7564631,1,0,-9,43,0,-1,-15.024785,0,0,0,61,2,3,1,3,3,2019,1,1,13,2,37,38,15,1,0,1,0,9.6537514,9.6537514,0,0,0,0,0,0,0,7,0,0,0,0,5.7754288,5.4253268,3,49.580002,55.59,58.32,50.220001,6,1,1,0,0,7,5,1,829,587944.75,0,0,3183.521 -5579,6890,12578,12577,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.1389046,7.9180455,0,1,0,-9,43,0,1,99.113731,0,0,0,60,2,3,1,3,3,2019,1,2,10,0,40,40,15,1,0,1,0,9.8114519,9.8114519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,49.580002,55.59,6,1,1,0,0,7,5,1,829,587944.75,0,0,3183.521 -5579,6891,12579,-9,12577,12578,3,1,1,33,3,0,0,0,2,-9,2,1,0,0,4,8.5141306,8.5764313,0,3,0,-9,0,-9,0,-1031.1189,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,45,0,15,1,0,-9,1,15.974371,15.974371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.599998,50.259998,-9,-9,4,1,1,0,0,7,5,1,1029,-11957.35,0,0,2330.7607 -5580,6892,12580,-9,-9,-9,1,1,0,76,2,0,0,0,3,-9,4,3,0,0,2,0,5.8020778,6.2889414,3,0,0,0,-9,0,-1110.2164,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.9024501,0,0,58.16,27.389999,-9,-9,6,1,1,0,0,8,2,1,138,266190.28,0,0,1636.6307 -5581,6893,12581,12582,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,8.4778824,8.5419292,0,1,0,-9,22,0,2,49.124573,0,0,0,51,1,4,1,2,3,2019,1,2,11,1,36,35,15,1,0,1,0,15.802122,15.802122,0,0,0,0,0,0,0,0,0,0,0,2.451766,0,0,0,45.52,50.790001,59.139999,52.5,6,1,1,0,0,2,5,1,425.5,2616155.5,0,0,5073.9111 -5581,6893,12582,12581,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.9782162,9.2100172,0,1,0,-9,21,0,-2,-153.17661,0,0,0,53,1,3,1,2,2,2019,1,1,8,0,43,44,15,1,0,1,0,23.234051,23.234051,0,0,0,0,0,0,0,0,0,0,0,2.1484303,0,0,0,59.139999,52.5,45.52,50.790001,6,1,1,0,0,2,5,1,425.5,2616155.5,0,0,5073.9111 -5582,6894,12583,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,0,3,0,6.9555159,7.5005407,3,0,0,0,-9,0,-989.6402,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.7590781,7.2734852,17.746534,3,44.25,56.639999,-9,-9,5,1,1,0,0,11,3,1,934,545065.75,0,0,2299.1533 -5583,6895,12584,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,2,1,0,0,5,6.2363477,8.5036802,8.3705215,3,0,0,0,-9,0,-890.10229,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,1,4,15,1,0,-9,0,76.878738,76.878738,0,0,0,0,0,0,0,0,1,1,0,6.7509713,8.2475414,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,7,5,1,724,3291.8811,0,0,3782.3853 -5584,6896,12585,12586,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.752593,7.3328524,1,0,-9,3,0,8,.30906716,0,0,0,55,2,5,1,-9,-9,2019,3,1,3,0,0,19,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.060645767,7.405127,0,0,63.830002,43.619999,54.689999,57.470001,7,1,1,0,0,4,4,1,2639.5,354299.31,0,0,2239.5933 -5584,6896,12586,12585,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,5,7.7471881,7.7018924,0,1,0,-9,3,0,-8,-54.400204,0,0,0,63,2,3,3,3,2,2019,2,2,7,0,27,27,15,1,0,4,0,9.4890594,9.4890594,0,0,0,0,0,0,0,2,0,0,0,5.870275,0,5.3105259,3,54.689999,57.470001,63.830002,43.619999,7,1,1,0,0,4,4,1,2639.5,354299.31,0,0,2239.5933 -5585,6897,12587,12588,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.4006834,7.8349147,0,1,0,-9,34,0,2,119.8866,0,0,0,56,1,4,1,2,3,2019,1,2,10,1,24,28,15,1,0,1,0,16.52751,16.52751,0,0,0,0,0,0,0,2,0,0,0,1.5828509,0,0,3,52.599998,52.880001,53.959999,50.73,6,1,1,0,0,10,5,1,879.5,471616.28,0,0,4501.0938 -5585,6897,12588,12587,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,8.5406179,8.6840143,0,1,0,-9,34,0,-2,73.00856,0,0,0,58,1,3,1,2,2,2019,1,1,12,0,40,40,15,1,0,1,0,15.395079,15.395079,0,0,0,0,0,0,0,0,0,0,0,6.4177723,0,0,0,53.959999,50.73,52.599998,52.880001,6,1,1,0,0,10,5,1,879.5,471616.28,0,0,4501.0938 -5586,6898,12589,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,4,8.6250744,8.6768732,0,3,0,0,0,-9,0,-992.67792,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,43,39,15,1,0,-9,0,18.365652,18.365652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.740002,49.169998,-9,-9,5,1,1,0,0,12,5,1,420,208700.69,0,0,3433.8347 -5587,6899,12590,12593,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,0,4,7.7493787,7.7724566,0,2,0,-9,15,0,5,58.8783,0,0,0,35,2,4,3,3,2,2019,2,2,6,0,24,24,15,1,0,3,0,12.108647,12.108647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,60.52,53.200001,6,2,3,0,0,8,2,0,1181.6,332986.56,0,0,2550.8245 -5587,6899,12591,-9,12593,12590,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.5028,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,1181.6,332986.56,0,0,2550.8245 -5587,6899,12592,-9,12593,12590,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.90771,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,1181.6,332986.56,0,0,2550.8245 -5587,6899,12593,12590,-9,-9,2,1,0,35,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,-5,-3.4658189,0,0,1,40,1,4,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.200001,57.759998,54.509998,5,2,3,0,0,8,2,0,1181.6,332986.56,0,0,2550.8245 -5587,6899,12594,-9,12593,12590,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-965.49371,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,8,2,0,1181.6,332986.56,0,0,2550.8245 -5588,6900,12595,12596,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,7.3909502,7.1869669,1,0,-9,26,0,-13,35.68774,0,0,0,83,1,2,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,7.0625882,7.0595598,0,2,51.41,56.150002,56.18,24.719999,6,1,1,0,0,2,2,1,1006,901033.75,0,0,3601.501 -5588,6900,12596,12595,-9,-9,2,1,1,83,1,0,0,0,1,-9,4,3,0,1,2,0,6.0727825,6.2269578,1,0,-9,24,0,13,44.496067,0,0,0,70,3,3,3,2,2,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,.38123012,0,0,0,0,0,1,1,0,2.1263788,5.8409433,0,0,56.18,24.719999,51.41,56.150002,7,1,1,0,0,2,2,1,1006,901033.75,0,0,3601.501 -5589,6901,12597,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,0,3,8.032547,7.688395,0,3,0,0,0,-9,0,-1058.9531,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,36,15,1,0,-9,0,7.1663151,7.1663151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,3,1,1296,97827.82,0,0,1260.3021 -5590,6902,12598,-9,-9,-9,1,1,0,33,2,1,2,0,3,-9,2,1,0,0,3,7.194416,7.3499861,0,4,0,0,0,-9,0,-937.41174,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,16,0,15,1,0,-9,0,9.8921576,9.8921576,0,0,0,0,0,0,0,7,1,1,0,0,0,.49799162,3,62.66,52.400002,-9,-9,6,1,1,0,0,6,2,0,932,107931.47,0,0,998.01367 -5590,6902,12599,-9,12598,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-961.77802,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,932,107931.47,0,0,998.01367 -5591,6903,12600,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,17,0,12,0,0,0,0,-9,-9,-9,-9,-9,3,2019,4,2,28,12,0,47,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.3593585,0,16.783381,2,33.310001,40.68,51,56,2,1,1,1,0,6,1,1,214,-55483.793,0,0,-288.84326 -5591,6904,12601,-9,-9,-9,2,1,1,42,2,0,0,0,2,-9,97,3,0,0,4,0,0,0,1,0,-9,7,0,-12,0,0,0,0,-9,-9,-9,-9,-9,-9,2019,4,1,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,33.310001,40.68,6,1,1,0,0,6,1,1,541,79280.328,0,0,0 -5592,6905,12602,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,4,0,7.5905733,7.621501,3,0,0,0,-9,0,-1091.7256,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.475605,7.6707945,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,6,3,1,473,698925.06,0,0,1380.6765 -5593,6906,12603,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,2,8.6625948,8.6892004,3.829607,3,0,0,0,-9,0,-954.97516,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,38,44,15,1,0,-9,0,19.589691,19.589691,0,0,0,0,0,0,0,0,1,1,0,5.5141034,4.6331058,0,0,54.23,28.01,-9,-9,6,1,1,0,0,4,5,1,750,210652.39,0,0,1195.4727 -5594,6907,12604,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.7280202,7.614933,5.7625432,3,0,0,0,-9,0,-1075.0393,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,39,37,15,1,0,-9,0,5.7852855,5.7852855,0,0,0,0,0,0,0,0,0,0,0,6.2443013,0,0,0,49.52,56.950001,-9,-9,6,1,1,0,0,9,3,0,202,246003.05,0,0,-372.56384 -5595,6908,12605,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-954.01587,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.779999,39.400002,-9,-9,3,1,1,1,0,12,2,0,163,-80055.516,0,0,811.61243 -5596,6909,12606,12607,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,8.4774771,8.3781643,0,1,0,-9,2,0,-1,71.639969,0,0,0,47,2,4,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,15.493271,15.493271,0,0,0,0,0,0,0,0,0,0,0,4.7003818,0,0,0,58.150002,52.91,53.48,53.709999,6,1,1,0,0,10,5,1,773,316946.66,0,0,2741.6597 -5596,6909,12607,12606,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,7.9315023,7.8116341,0,1,0,-9,2,0,1,9.3664608,0,0,0,46,2,4,1,2,2,2019,1,2,3,0,32,37,15,1,0,1,0,10.451395,10.451395,0,0,0,0,0,0,0,0,0,0,0,3.1629002,0,0,0,53.48,53.709999,58.150002,52.91,5,1,1,0,0,10,5,1,773,316946.66,0,0,2741.6597 -5597,6910,12608,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,8.5757332,9.0661392,0,3,0,0,0,-9,0,-909.89453,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,45,45,15,1,0,-9,0,16.243208,16.243208,0,0,0,0,0,0,0,0,0,0,0,1.6132994,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,1,5,1,859,-94106.211,0,0,2582.1982 -5598,6911,12609,12610,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,0,3,8.6841707,9.0442495,3.6347263,2,0,-9,3,0,0,3.3335953,0,0,0,43,1,3,3,2,1,2019,2,2,8,0,37,37,15,1,0,3,0,19.05266,19.05266,0,0,0,0,0,0,0,0,1,1,0,4.0897608,0,0,0,54.130001,48.040001,47.549999,47.029999,5,3,4,0,1,12,4,1,684.40002,288372.69,0,0,2323.2603 -5598,6911,12610,12609,-9,-9,2,1,0,43,1,0,3,0,1,1,3,3,0,0,3,0,0,0,2,0,-9,3,0,0,-118.24754,-9,0,1,43,1,3,1,2,1,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83545089,0,0,0,47.549999,47.029999,54.130001,48.040001,7,3,4,1,0,12,4,1,684.40002,288372.69,0,0,2323.2603 -5598,6911,12611,-9,12610,12609,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1038.0208,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,12,4,1,684.40002,288372.69,0,0,2323.2603 -5598,6911,12612,-9,12610,12609,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1090.6509,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,12,4,1,684.40002,288372.69,0,0,2323.2603 -5598,6911,12613,-9,12610,12609,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.72034,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,12,4,1,684.40002,288372.69,0,0,2323.2603 -5599,6912,12614,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,4,0,5.6736937,5.9210105,3,0,0,0,-9,0,-1047.6086,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6119437,0,0,46.77,49.779999,-9,-9,7,1,1,0,0,13,2,1,278,602757.69,0,0,913.01385 -5600,6913,12615,12618,-9,-9,1,1,0,36,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,13,0,-1,-18.842112,0,0,1,37,1,4,1,1,2,2019,3,2,11,2,0,23,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,54.200001,57.490002,5,1,1,0,0,2,4,1,2620,48587.273,0,0,2221.2861 -5600,6913,12616,-9,12615,12618,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.81403,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,2620,48587.273,0,0,2221.2861 -5600,6913,12617,-9,12615,12618,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.9802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,2620,48587.273,0,0,2221.2861 -5600,6913,12618,12615,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,9.062871,8.7679501,0,2,0,-9,13,0,1,22.595833,0,0,0,36,1,4,3,2,2,2019,2,1,9,0,55,45,15,1,0,3,0,15.866829,15.866829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,49,55,6,1,1,0,0,2,4,1,2620,48587.273,0,0,2221.2861 -5601,6914,12619,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-975.87653,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,39.040001,-9,-9,5,1,1,0,0,11,1,0,1347,30376.521,0,0,1019.6982 -5601,6915,12620,-9,12619,-9,2,1,1,29,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-903.51123,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,7,1,1,1,0,11,1,0,1284,0,0,0,-780.48755 -5601,6916,12621,-9,12619,-9,3,1,1,28,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-951.73322,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,60,-9,-9,4,1,1,1,0,11,1,0,656,132470.59,0,0,121.82655 -5602,6917,12622,-9,12623,12624,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.25323,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,7,5,1,284,557634.44,0,0,6035.7974 -5602,6917,12623,12624,-9,-9,1,1,0,50,1,0,1,0,1,-9,1,1,0,0,3,5.74018,5.7971182,0,2,0,-9,25,0,-3,-89.09716,0,0,0,53,1,4,1,2,2,2019,1,2,12,3,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,71.5,0,0,0,8.2099199,0,78.523056,3,43.900002,57.009998,54,54,6,1,1,0,0,7,5,1,284,557634.44,0,0,6035.7974 -5602,6917,12624,12623,-9,-9,2,1,1,53,1,0,1,0,1,-9,1,1,0,0,4,9.3078232,9.0937195,0,2,0,-9,6,0,3,-121.00771,0,0,0,50,1,3,1,-9,-9,2019,1,1,9,1,40,50,15,1,0,1,0,30.515968,30.515968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,43.900002,57.009998,6,1,1,0,0,7,5,1,284,557634.44,0,0,6035.7974 -5603,6918,12625,12626,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.4677563,8.5928345,0,1,0,-9,10,0,1,-7.7090664,0,0,0,48,2,1,1,2,2,2019,1,1,9,0,54,40,15,1,0,1,0,12.868925,12.868925,0,0,0,0,0,0,0,0,0,0,0,3.7593644,0,0,0,51.5,45.279999,44.43,38.34,5,1,1,0,0,5,4,0,231,100942.15,0,0,1744.2268 -5603,6918,12626,12625,-9,-9,1,1,0,48,1,0,0,0,2,-9,1,1,0,0,1,6.9983158,7.2083998,0,1,0,-9,10,0,-1,29.35121,0,0,0,49,2,3,1,2,2,2019,1,2,11,0,20,25,15,1,0,1,0,6.7476463,6.7476463,0,0,0,0,0,0,0,0,0,0,0,5.6883526,0,0,0,44.43,38.34,51.5,45.279999,4,1,1,0,0,5,4,0,231,100942.15,0,0,1744.2268 -5604,6919,12627,-9,-9,-9,1,1,0,37,3,0,4,0,3,-9,2,1,0,0,5,6.1008158,6.3682842,0,4,0,0,0,-9,0,-1024.15,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,8,7,15,1,0,-9,0,8.6603374,8.6603374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.25,28.360001,-9,-9,5,3,4,0,1,8,2,0,349,-6241.6499,0,0,1473.741 -5604,6919,12628,-9,12627,-9,3,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1142.0902,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,3,4,0,0,8,2,0,349,-6241.6499,0,0,1473.741 -5604,6919,12629,-9,12627,-9,4,1,1,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1027.1284,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,3,4,0,0,8,2,0,349,-6241.6499,0,0,1473.741 -5604,6919,12630,-9,12627,-9,2,1,1,14,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1110.3669,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,3,4,0,0,8,2,0,349,-6241.6499,0,0,1473.741 -5604,6919,12631,-9,12627,-9,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-965.82739,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,349,-6241.6499,0,0,1473.741 -5605,6920,12632,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,4,8.271451,8.128685,0,3,0,0,0,-9,0,-927.26581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,37,7,15,1,1,-9,0,9.7830715,9.7830715,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.808103,3,36.689999,54.68,-9,-9,4,2,3,0,0,8,4,1,341,815867.75,0,0,1053.9355 -5606,6921,12633,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1070.4607,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.150002,28.83,-9,-9,3,3,4,0,1,8,1,0,120,48446.227,0,0,243.0941 -5607,6922,12634,12636,-9,-9,2,1,1,36,1,0,3,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,9,0,-3,-42.252403,0,0,0,39,2,1,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,28.469999,35.740002,5,3,4,1,0,8,2,0,331.25,-17974.803,0,0,2045.7808 -5607,6922,12635,-9,12636,12634,6,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.8857,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,8,2,0,331.25,-17974.803,0,0,2045.7808 -5607,6922,12636,12634,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,0,1,6.6601686,7.2612238,5.460567,2,0,-9,9,0,3,23.468897,0,0,1,36,3,4,3,1,2,2019,2,2,12,0,15,0,15,1,0,3,0,5.8643479,5.8643479,0,0,0,0,0,0,0,0,1,1,0,5.4541855,0,0,0,28.469999,35.740002,54.200001,57.490002,4,4,2,0,0,8,2,0,331.25,-17974.803,0,0,2045.7808 -5607,6922,12637,-9,12636,12634,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-884.93164,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,2,0,331.25,-17974.803,0,0,2045.7808 -5608,6923,12638,12639,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.5494118,7.0373077,1,0,-9,3,0,5,-3.5109468,0,0,0,67,2,2,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2340226,7.4917636,0,0,60.98,40.77,44.880001,30.610001,6,1,1,0,0,5,2,1,300,375018.75,0,0,1667.425 -5608,6923,12639,12638,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,5.4199924,5.7237735,1,0,-9,3,0,-5,1.0252919,0,0,0,72,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1358027,5.2313824,0,0,44.880001,30.610001,60.98,40.77,2,1,1,0,0,5,2,1,300,375018.75,0,0,1667.425 -5609,6924,12640,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1016.1153,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.049999,48.98,-9,-9,2,1,1,0,0,12,1,0,921,45431.797,0,0,793.37726 -5610,6925,12641,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,4,3,0,0,4,0,8.1682949,8.1100483,3,0,0,0,-9,0,-1023.5899,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.6978774,7.7935042,1.4341482,3,57.16,56.150002,-9,-9,6,1,1,0,0,2,3,1,373,583495.88,0,0,1176.955 -5611,6926,12642,-9,12644,12643,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-823.44861,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,13,5,1,768,929674.63,0,0,4705.8003 -5611,6926,12643,12644,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,5,9.6799059,9.4677792,0,2,0,-9,1,-9,10,-160.65999,-9,0,0,41,1,5,3,-9,-9,2019,2,1,12,2,50,0,15,1,0,3,0,33.428345,33.428345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,61.509998,57.060001,57.759998,6,1,1,0,0,13,5,1,768,929674.63,0,0,4705.8003 -5611,6926,12644,12643,-9,-9,1,1,0,41,1,0,2,0,1,-9,97,3,0,0,5,0,0,0,2,0,-9,1,-9,-10,-23.793085,-9,0,1,51,1,5,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,7.6240849,3,57.060001,57.759998,45.810001,61.509998,7,1,1,0,0,13,5,1,768,929674.63,0,0,4705.8003 -5611,6926,12645,-9,12644,12643,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-974.73566,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,768,929674.63,0,0,4705.8003 -5612,6927,12646,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-886.35089,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,7,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9905985,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,8,1,1,299,0,0,0,-101.17354 -5613,6928,12647,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,0,5,7.8860831,8.5660286,6.9631944,3,0,0,0,-9,0,-1100.0153,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,43,0,15,1,0,-9,0,9.5171814,9.5171814,0,0,0,0,0,0,0,0,0,0,0,7.3683319,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,8,4,0,503,76253.539,0,0,1672.309 -5613,6929,12648,-9,-9,-9,2,1,1,22,2,0,0,0,2,1,2,1,0,0,3,6.9061699,7.3757033,6.6776772,3,0,0,0,-9,0,-1031.9807,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,20,0,15,1,0,-9,0,5.9217,5.9217,0,0,0,0,0,0,0,0,0,0,0,6.7721629,0,0,0,54.939999,53.18,-9,-9,6,1,1,0,0,8,3,0,1474,0,0,0,1949.0096 -5614,6930,12649,12650,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.5755739,8.9714766,0,1,0,-9,5,0,1,-75.851746,0,0,0,53,1,4,1,1,1,2019,1,2,11,0,45,50,15,1,0,1,0,17.193867,17.193867,0,0,0,0,0,0,0,0,0,0,0,7.4317207,0,0,0,55.189999,54.259998,39.09,60.150002,6,1,1,0,0,6,5,1,1691.5,1155903.5,0,0,5801.248 -5614,6930,12650,12649,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,8.8109999,8.3894482,0,1,0,-9,5,0,-1,-53.256821,0,0,0,54,1,4,1,-9,-9,2019,1,1,13,1,37,38,15,1,0,1,0,17.572281,17.572281,0,0,0,0,0,0,0,0,0,0,0,7.2974372,0,0,0,39.09,60.150002,55.189999,54.259998,4,1,1,0,0,6,5,1,1691.5,1155903.5,0,0,5801.248 -5615,6931,12651,12652,-9,-9,1,1,0,66,1,0,0,0,1,-9,1,1,0,0,5,6.8007441,6.9450278,0,1,0,-9,46,0,-2,12.430408,0,0,0,68,2,4,1,2,2,2019,1,2,3,0,30,30,15,1,0,1,0,3.630218,3.630218,0,0,0,0,0,0,0,0,1,1,0,7.6872401,0,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,10,4,1,694,462085.5,0,0,3985.3315 -5615,6931,12652,12651,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,0,4,8.1152906,7.864418,4.9316015,1,0,-9,46,0,2,-147.22594,0,0,0,66,1,5,1,3,2,2019,1,1,6,0,30,34,15,1,0,1,0,9.3167152,9.3167152,0,0,0,0,0,0,0,0,1,1,0,0,4.9723601,0,0,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,10,4,1,694,462085.5,0,0,3985.3315 -5616,6932,12653,12654,-9,-9,1,1,0,34,1,0,2,0,1,0,7,2,0,0,4,0,5.7037063,5.2463622,2,0,-9,9,0,-1,91.438568,-9,0,1,35,2,4,1,3,3,2019,3,3,6,1,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8908477,0,0,0,42.029999,60.59,51.240002,58.84,6,1,1,0,0,5,2,0,699.5,47155.133,0,0,1952.8068 -5616,6932,12654,12653,-9,-9,3,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,7.4275713,7.300139,0,2,0,-9,9,0,1,118.66925,0,0,0,34,1,4,2,-9,-9,2019,2,1,10,1,40,40,15,1,0,2,0,5.0940495,5.0940495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,42.029999,60.59,6,1,1,0,0,5,2,0,699.5,47155.133,0,0,1952.8068 -5616,6932,12655,-9,12653,12654,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1119.0896,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,5,2,0,699.5,47155.133,0,0,1952.8068 -5616,6932,12656,-9,12653,12654,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-966.17371,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,5,2,0,699.5,47155.133,0,0,1952.8068 -5617,6933,12657,-9,12659,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-972.26129,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,3,1,930,122866.16,0,0,2295.0791 -5617,6933,12658,-9,12659,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1021.7663,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,3,1,930,122866.16,0,0,2295.0791 -5617,6933,12659,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,1,2,7.9073701,7.6242862,0,4,0,-9,0,1,0,-965.86505,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,27,9,40,38,15,1,1,-9,0,7.7545128,7.7545128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.790001,29.34,-9,-9,3,1,1,0,0,6,3,1,930,122866.16,0,0,2295.0791 -5618,6934,12660,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,6.9001851,7.0356107,3,0,0,0,-9,0,-1014.5206,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9750648,0,0,56.779999,44.130001,-9,-9,5,1,1,0,0,9,2,1,792,256256.98,0,0,309.5437 -5619,6935,12661,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,2,0,6.8447351,7.1446133,3,0,0,0,-9,0,-1027.8998,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3941674,6.6860032,0,0,54.490002,23.82,-9,-9,6,1,1,0,0,9,2,1,468,512343.44,0,0,294.18393 -5619,6936,12662,-9,12661,-9,2,1,0,43,2,0,0,0,1,1,2,1,0,0,2,0,0,0,3,0,0,0,-9,0,-999.85083,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,6,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.450001,55.43,-9,-9,4,1,1,0,0,9,1,1,244,-122230.71,0,0,0 -5620,6937,12663,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,5,8.2000704,8.5233231,0,3,0,0,0,-9,0,-1049.0142,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,51,40,15,1,0,-9,0,10.453314,10.453314,0,0,0,0,0,0,0,0,0,0,0,1.3373376,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,5,1,347,72520.719,0,0,2530.832 -5621,6938,12664,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-932.34174,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.439999,27.879999,-9,-9,2,1,1,0,0,13,1,0,1146,22820.232,0,0,1571.0951 -5622,6939,12665,12666,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,6.7283416,8.2750301,7.8607159,1,0,-9,44,0,2,45.360432,0,0,0,63,3,1,3,3,3,2019,2,2,9,0,17,7,15,1,0,3,0,7.1481981,7.1481981,0,0,0,0,0,0,0,0,1,1,0,4.9991693,8.2221384,0,0,55.709999,46,29.530001,19.07,4,1,1,0,0,9,4,1,1409,917191,0,0,3737.7253 -5622,6939,12666,12665,-9,-9,2,1,0,63,1,0,0,0,3,-9,8,3,1,1,1,0,3.8942153,3.7416501,1,0,-9,44,0,-2,16.642363,0,0,0,65,2,3,1,3,3,2019,3,1,30,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2475019,3.9993317,0,0,29.530001,19.07,55.709999,46,2,4,2,0,1,9,4,1,1409,917191,0,0,3737.7253 -5623,6940,12667,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,3,7.6434159,8.395359,7.8749166,3,0,0,0,-9,0,-984.00519,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,18,18,15,1,1,-9,0,17.265438,17.265438,0,0,0,0,0,0,0,2,1,1,0,0,7.9095798,0,3,25.82,55.810001,-9,-9,5,1,1,0,0,11,5,1,301,564009.63,0,0,2293.0151 -5624,6941,12668,12669,-9,-9,2,1,0,54,1,0,0,0,3,-9,8,3,1,1,1,7.1183686,7.2703352,0,1,0,-9,22,0,0,-98.243805,0,0,0,54,2,4,1,3,2,2019,3,1,15,4,17,15,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,36.169998,20.309999,54,54,6,1,1,0,0,7,3,0,1674.5,810413.13,0,0,2204.1038 -5624,6941,12669,12668,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,7.8747845,7.7509503,0,1,0,-9,22,0,0,-16.203482,0,0,0,54,3,1,3,3,2,2019,2,2,9,1,38,37,15,1,0,3,0,8.8519678,8.8519678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,54,54,36.169998,20.309999,6,1,1,0,0,7,3,0,1674.5,810413.13,0,0,2204.1038 -5625,6942,12670,12672,-9,-9,1,1,0,40,1,1,1,0,1,-9,1,1,0,0,3,9.0248127,9.1088238,0,2,0,-9,5,0,2,-131.12379,0,0,1,38,1,4,1,1,1,2019,1,2,8,0,40,37,15,1,0,1,0,30.847433,30.847433,0,0,0,0,0,0,0,0,0,0,0,.64032674,0,0,0,53.389999,50.009998,54.450001,56.220001,6,1,1,0,0,6,5,1,787.66669,799225.69,0,0,6087.9067 -5625,6942,12671,-9,12670,12672,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.8075,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,787.66669,799225.69,0,0,6087.9067 -5625,6942,12672,12670,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,4,8.9968014,8.7996044,0,2,0,-9,5,0,-2,-74.677589,0,0,0,40,1,3,1,-9,-9,2019,1,1,7,0,41,41,15,1,0,1,0,20.854853,20.854853,0,0,0,0,0,0,0,0,0,0,0,3.7821927,0,0,0,54.450001,56.220001,53.389999,50.009998,6,1,1,0,0,6,5,1,787.66669,799225.69,0,0,6087.9067 -5626,6943,12673,12674,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,7.4487348,7.3707747,1,0,-9,59,0,-7,50.0658,0,0,0,82,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1511512,7.463068,7.421484,1,53.970001,40.34,38.900002,21.43,6,1,1,0,0,2,4,1,823.5,924720.25,0,0,3513.4575 -5626,6943,12674,12673,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,1,2,0,7.8914051,7.5645385,1,0,-9,9,0,7,-26.573702,0,0,0,75,2,2,3,-9,-9,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.684386,8.1187363,0,0,38.900002,21.43,53.970001,40.34,6,1,1,0,0,2,4,1,823.5,924720.25,0,0,3513.4575 -5627,6944,12675,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,3,0,8.101181,7.9099178,3,0,0,0,-9,0,-985.80341,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9574399,8.0848627,0,0,62.419998,45.639999,-9,-9,7,1,1,0,0,10,3,1,188,377194.66,0,0,1563.1252 -5628,6945,12676,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,4,7.8245831,8.1143551,0,3,0,-9,0,-9,0,-1043.5498,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,47,0,15,1,0,-9,0,7.7313175,7.7313175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29,53.27,-9,-9,6,1,1,0,0,11,4,0,701,74200.031,0,0,1974.3962 -5628,6946,12677,-9,-9,12676,2,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,5.9325008,6.0318937,0,3,0,-9,0,-9,0,-1012.6851,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,.94678968,.94678968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,2,0,776,37958.359,0,0,926.22095 -5629,6947,12678,12679,-9,-9,1,1,1,59,1,0,2,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,12,0,13,-106.26865,0,0,0,46,2,3,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,46.290001,46.099998,5,2,3,0,1,8,2,0,283,517177.13,0,0,3665.1846 -5629,6947,12679,12678,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,3,7.5192642,7.3743725,0,2,0,-9,12,0,-13,13.858894,0,0,0,59,2,3,3,3,3,2019,2,1,5,0,32,37,15,1,0,3,0,8.9149113,8.9149113,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.290001,46.099998,51,49,6,2,3,0,0,8,2,0,283,517177.13,0,0,3665.1846 -5630,6948,12680,-9,-9,-9,1,1,0,47,2,0,1,0,3,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.4269,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,16,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,58.700001,-9,-9,3,1,1,1,0,1,1,0,657,0,0,0,1502.484 -5630,6949,12681,-9,12680,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-936.89142,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,6,1,1,0,0,1,1,0,927,27970.281,0,0,0 -5631,6950,12682,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,4,8.2660389,8.4491682,0,3,0,0,0,-9,0,-1015.8491,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,42,45,15,1,0,-9,0,12.683166,12.683166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,4,1,452,355647.91,0,0,1929.554 -5632,6951,12683,-9,12685,12684,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.3937,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,0,692.66669,837190.69,0,0,1997.7634 -5632,6951,12684,12685,-9,-9,2,1,1,60,1,1,1,0,2,-9,1,1,0,0,4,6.8707867,6.6691995,0,2,0,-9,6,0,34,-123.56232,0,0,0,26,2,4,1,-9,-9,2019,1,1,6,0,60,50,15,1,0,1,0,1.6902473,1.6902473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,54.200001,57.490002,7,1,1,0,0,2,3,0,692.66669,837190.69,0,0,1997.7634 -5632,6951,12685,12684,-9,-9,1,1,0,26,1,1,1,0,2,-9,2,1,0,0,4,7.7833629,7.5336509,0,2,0,-9,6,0,-34,-59.528763,0,1,1,60,2,4,1,2,2,2019,1,2,11,0,38,37,15,1,0,1,0,6.5534124,6.5534124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,62.490002,55.09,6,1,1,0,0,2,3,0,692.66669,837190.69,0,0,1997.7634 -5633,6952,12686,12687,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,9.9857616,9.6778107,1,0,-9,6,0,4,-13.653575,0,0,0,74,3,3,3,2,1,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9578729,9.9313307,0,0,54.220001,39.669998,57.330002,53.459999,6,1,1,0,0,13,5,1,327,2771303,0,0,11591.704 -5633,6952,12687,12686,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-4,59.831829,0,0,0,78,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.220001,39.669998,6,1,1,0,0,13,5,1,327,2771303,0,0,11591.704 -5634,6953,12688,12689,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,36,0,2,135.59557,0,0,0,59,2,3,1,3,3,2019,3,1,6,0,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,47.610001,53.700001,6,1,1,0,0,7,2,1,2911,165560.47,0,0,1538.3545 -5634,6953,12689,12688,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.3386145,7.9965377,0,1,0,-9,36,0,-2,-27.865044,0,0,0,61,2,4,3,3,2,2019,2,2,14,2,12,14,15,1,0,4,0,16.922144,16.922144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.610001,53.700001,51.240002,58.84,6,1,1,0,0,7,2,1,2911,165560.47,0,0,1538.3545 -5634,6954,12690,-9,12689,12688,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,7.6765356,7.3456993,0,3,0,0,0,-9,0,-966.83533,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,22,42,15,1,0,-9,1,8.6632757,8.6632757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,7,3,1,223,-455.17349,0,0,650.12097 -5634,6955,12691,-9,12689,12688,4,1,1,24,2,0,0,0,2,-9,2,1,0,0,2,7.9517016,8.3174753,0,3,0,0,0,-9,0,-1132.0327,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,38,40,15,1,0,-9,1,9.6042013,9.6042013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.689999,45.700001,-9,-9,5,1,1,0,0,7,4,1,193,86911.203,0,0,1845.2982 -5635,6956,12692,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,7.1844907,6.9839964,3,0,0,0,-9,0,-1072.4272,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,28.846895,0,0,0,1,1,0,7.1346703,6.9814229,0,0,57.66,34.34,-9,-9,6,1,1,0,0,11,2,1,106,90400.695,0,0,713.12988 -5636,6957,12693,12694,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,7.2766919,6.9752259,1,0,-9,7,0,-1,-111.85323,0,0,0,72,2,2,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.3710098,7.4325604,115.35027,1,54.52,38.740002,39.400002,18.889999,2,1,1,0,0,6,3,1,332.5,571038.44,0,0,2345.8467 -5636,6957,12694,12693,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,2,0,6.5589957,6.8056622,1,0,-9,7,0,1,-129.61238,0,0,0,71,2,2,3,3,3,2019,4,1,27,12,0,0,15,4,1,4,0,0,0,1,.88521147,6.5523186,0,0,0,41.68264,0,1,1,0,4.5587692,6.4319839,0,0,39.400002,18.889999,54.52,38.740002,3,1,1,0,0,6,3,1,332.5,571038.44,0,0,2345.8467 -5637,6958,12695,12697,-9,-9,1,1,0,32,1,0,2,0,1,-9,2,1,0,0,4,6.9378719,6.9565349,0,2,0,-9,5,0,-14,99.102524,0,0,1,46,1,4,1,2,1,2019,1,5,10,0,18,40,15,1,0,1,0,7.1257429,7.1257429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,57.099998,57.509998,6,3,4,0,0,2,3,0,908.33331,554276.44,0,0,2977.0635 -5637,6958,12696,-9,12695,12697,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.8571,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,2,3,0,908.33331,554276.44,0,0,2977.0635 -5637,6958,12697,12695,-9,-9,5,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,8.269865,7.990191,0,2,0,-9,5,0,14,-66.001961,0,0,0,32,1,4,1,-9,-9,2019,1,1,4,0,43,41,15,1,0,1,0,11.556058,11.556058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.099998,57.509998,58.299999,52.91,6,3,4,0,0,2,3,0,908.33331,554276.44,0,0,2977.0635 -5638,6959,12698,12699,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,0,3,0,6.9516201,7.1061802,1,0,-9,7,0,-2,36.073627,0,0,0,87,1,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2794604,0,0,53,44,55,45,6,1,1,0,0,11,3,1,266,240789.39,0,0,3281.7517 -5638,6959,12699,12698,-9,-9,1,1,1,87,1,0,0,0,1,-9,4,3,0,0,3,0,6.9952297,7.2876754,1,0,-9,7,0,2,119.8246,0,0,0,85,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1702657,0,0,55,45,53,44,6,1,1,0,0,11,3,1,266,240789.39,0,0,3281.7517 -5639,6960,12700,-9,12701,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-954.58142,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,8,2,1,686.33331,1278.2803,0,0,711.61194 -5639,6960,12701,-9,-9,-9,1,1,0,48,3,0,2,0,1,-9,2,1,0,0,3,7.2769318,6.8691397,0,4,0,-9,0,1,0,-982.53137,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,25,30,15,1,1,-9,0,6.7186747,6.7186747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.669998,51.060001,-9,-9,5,1,1,0,0,8,2,1,686.33331,1278.2803,0,0,711.61194 -5639,6960,12702,-9,12701,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1046.2711,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9151275,0,0,0,34.57,48.990002,-9,-9,3,1,1,0,0,8,2,1,686.33331,1278.2803,0,0,711.61194 -5640,6961,12703,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,6.3861051,5.8433881,3,0,0,0,-9,0,-1139.9272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2011876,0,0,52,45,-9,-9,6,1,1,0,0,11,2,1,272,100322.52,0,0,2561.0603 -5641,6962,12704,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1205.9259,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,75,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.370003,38.360001,-9,-9,6,1,1,0,0,12,1,1,629,0,0,0,945.51819 -5642,6963,12705,-9,12706,12708,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.6857,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,767.25,364073.84,0,0,2224.7415 -5642,6963,12706,12708,-9,-9,2,1,0,34,1,1,2,0,2,-9,2,1,0,0,4,7.7346883,7.6399245,0,2,0,-9,8,0,1,-55.200485,0,0,1,33,2,4,1,2,2,2019,1,1,8,0,21,19,15,1,0,1,0,11.800215,11.800215,0,0,0,0,0,0,0,0,1,1,0,.28534546,0,0,0,52.310001,58.290001,54.790001,55.860001,7,1,1,0,0,6,4,1,767.25,364073.84,0,0,2224.7415 -5642,6963,12707,-9,12706,12708,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-962.16479,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,767.25,364073.84,0,0,2224.7415 -5642,6963,12708,12706,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,0,4,8.3589506,8.0695677,0,2,0,-9,8,0,-1,85.501854,0,0,0,34,2,4,1,3,2,2019,1,2,7,0,38,38,15,1,0,1,0,10.443437,10.443437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,52.310001,58.290001,6,1,1,0,0,6,4,1,767.25,364073.84,0,0,2224.7415 -5643,6964,12709,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,0,4,0,6.3031492,6.4260063,3,0,0,0,-9,0,-834.57446,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7190387,6.595572,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,11,2,1,1067,252023.83,0,0,2582.2944 -5644,6965,12710,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,6.875782,6.623322,3,0,0,0,-9,0,-1052.1234,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2211654,7.1356797,0,0,52,45,-9,-9,6,1,1,0,0,5,2,1,158,378086.13,0,0,1982.8091 -5645,6966,12711,-9,-9,-9,1,1,0,70,3,0,2,0,2,-9,4,3,0,0,4,0,7.0501018,6.9118299,4,0,0,0,-9,0,-934.17249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5049528,7.1019459,0,0,60.130001,49.27,-9,-9,6,1,1,0,0,9,2,1,633,213396.83,0,0,1711.4669 -5646,6967,12712,12713,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.9349341,7.944406,3.7869098,1,0,-9,7,0,-5,-123.50505,0,0,0,63,2,3,1,-9,-9,2019,1,1,9,0,19,30,15,1,0,1,0,13.717921,13.717921,0,0,0,0,0,0,0,0,0,0,0,4.5541663,4.3323164,0,0,52,54.509998,61.279999,46.169998,6,1,1,0,0,8,4,1,837.5,974410.63,0,0,1656.0765 -5646,6967,12713,12712,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,0,3,0,7.7768226,7.4286289,1,0,-9,7,0,5,135.96875,0,0,0,58,2,3,1,3,3,2019,1,2,8,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9074736,7.2985315,0,0,61.279999,46.169998,52,54.509998,6,1,1,0,0,8,4,1,837.5,974410.63,0,0,1656.0765 -5647,6968,12714,-9,12715,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-966.53198,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,244,28346.371,0,0,1154.3721 -5647,6968,12715,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,1,3,7.218677,7.3459883,0,4,0,0,0,-9,0,-1037.3022,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,19,0,15,1,0,-9,0,8.5849571,8.5849571,0,0,0,0,0,0,0,0,1,1,0,2.346921,0,0,0,45.57,53.5,-9,-9,6,1,1,0,0,7,2,0,244,28346.371,0,0,1154.3721 -5648,6969,12716,12717,-9,-9,1,1,0,33,1,1,1,0,1,-9,2,1,0,0,3,7.6659155,7.3540831,0,2,0,-9,11,0,-6,115.39656,0,0,1,39,1,4,1,2,2,2019,1,2,6,0,17,15,15,1,0,1,0,10.266575,10.266575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,43.990002,42.049999,58.799999,6,1,1,0,0,9,5,1,912.33331,223529.86,0,0,3492.4209 -5648,6969,12717,12716,-9,-9,2,1,1,39,1,1,1,0,1,-9,2,1,0,0,4,8.9787989,8.8461266,0,2,0,-9,11,0,6,-60.440926,0,0,0,33,1,3,1,2,1,2019,1,1,11,1,37,37,15,1,0,1,0,23.48913,23.48913,0,0,0,0,0,0,0,0,1,1,0,1.3899194,0,0,0,42.049999,58.799999,56.939999,43.990002,6,1,1,0,0,9,5,1,912.33331,223529.86,0,0,3492.4209 -5648,6969,12718,-9,12716,12717,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.23749,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,912.33331,223529.86,0,0,3492.4209 -5649,6970,12719,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,9.2213259,9.4481869,0,3,0,-9,0,-9,0,-1111.782,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,50,0,15,1,0,-9,0,24.609108,24.609108,0,0,0,0,0,0,0,0,0,0,0,3.9467406,0,0,0,48,58,-9,-9,5,1,1,0,0,8,5,1,836,-164423.09,0,0,4662.1479 -5650,6971,12720,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,2,0,4.5793657,4.4630947,3,0,0,0,-9,0,-1017.1459,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,9.8737993,0,8.1737785,0,0,0,0,1,1,0,0,4.6475625,0,0,58.220001,25.35,-9,-9,6,1,1,0,0,11,1,1,231,110329.44,0,0,-799.80225 -5651,6972,12721,12722,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,26,0,-8,-66.111221,0,0,0,65,1,3,3,3,2,2019,4,1,18,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.81763059,0,0,0,41.23,59.349998,58.889999,48.599998,6,1,1,0,0,9,5,1,375,3501535,0,0,9912.8838 -5651,6972,12722,12721,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,7.8640108,9.7097645,9.8412666,1,0,-9,25,0,8,-3.108887,0,0,0,57,1,3,3,1,1,2019,4,2,8,0,0,3,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5798407,9.4650555,0,0,58.889999,48.599998,41.23,59.349998,6,1,1,0,0,9,5,1,375,3501535,0,0,9912.8838 -5651,6973,12723,-9,12721,12722,3,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,6.9710331,7.4004612,3,0,0,0,-9,0,-973.1449,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3922195,0,0,0,48.509998,54.509998,-9,-9,6,1,1,0,0,9,3,1,277,63394.277,0,0,534.15472 -5652,6974,12724,12725,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.9021311,8.9733191,0,1,0,-9,32,0,1,-7.4650259,0,0,0,52,2,4,1,2,2,2019,1,1,10,1,60,60,15,1,0,1,0,16.039635,16.039635,0,0,0,0,0,0,0,0,0,0,0,5.9602785,0,0,0,49.040001,55.860001,52.82,53.970001,6,1,1,0,1,6,5,1,381.5,368317.44,0,0,5553.4541 -5652,6974,12725,12724,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.5508895,7.8327703,0,1,0,-9,32,0,-1,-73.807503,0,0,0,53,2,3,1,3,-9,2019,1,2,6,0,28,21,15,1,0,1,0,7.1155729,7.1155729,0,0,0,0,0,0,0,0,0,0,0,7.6324229,0,0,0,52.82,53.970001,49.040001,55.860001,6,1,1,0,0,6,5,1,381.5,368317.44,0,0,5553.4541 -5652,6975,12726,-9,12725,12724,3,1,1,20,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1003.2591,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.23817337,0,0,0,35.18,59.619999,-9,-9,6,1,1,0,0,6,1,1,230,92622.781,0,0,-293.94168 -5653,6976,12727,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,6.7067771,6.9118237,3,0,-9,0,1,0,-1069.0497,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0875533,6.6876159,0,0,34.93,47.790001,-9,-9,5,1,1,0,0,4,2,0,959,590285.5,0,0,892.31714 -5654,6977,12728,12729,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.431704,7.2819338,1,0,-9,53,0,3,138.83232,0,0,0,71,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3275385,7.2700315,0,0,58.900002,37.869999,57.16,56.150002,6,1,1,0,0,10,3,1,148,636687,0,0,3539.824 -5654,6977,12729,12728,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,6.0398993,6.0482368,1,0,-9,53,0,-3,-85.125206,0,0,0,74,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0581512,5.9217129,0,0,57.16,56.150002,58.900002,37.869999,7,1,1,0,0,10,3,1,148,636687,0,0,3539.824 -5655,6978,12730,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,0,4,8.6462116,8.305912,6.3801475,4,0,0,0,-9,0,-982.29468,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,39,15,1,0,-9,0,15.981494,15.981494,0,0,0,0,0,0,0,0,1,1,0,6.820292,0,0,0,39.330002,58.880001,-9,-9,6,1,1,0,1,9,4,1,652,353640.75,0,0,1671.0212 -5655,6978,12731,-9,12730,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-998.42407,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,652,353640.75,0,0,1671.0212 -5656,6979,12732,-9,12735,12734,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.77,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,1,337.79999,135694.83,0,0,3059.2996 -5656,6979,12733,-9,12735,12734,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-963.98376,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,4,1,337.79999,135694.83,0,0,3059.2996 -5656,6979,12734,12735,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,3,8.4586763,8.4265308,0,2,0,-9,8,0,3,41.485863,0,0,0,44,1,3,1,2,3,2019,1,1,15,6,40,38,15,1,1,1,0,19.566643,19.566643,0,0,0,0,0,0,0,0,1,1,0,1.8675827,0,0,0,49.580002,55.59,28.52,62.720001,3,1,1,0,0,6,4,1,337.79999,135694.83,0,0,3059.2996 -5656,6979,12735,12734,-9,-9,1,1,0,44,1,0,3,0,1,-9,1,1,0,0,3,7.2391315,7.1082582,0,2,0,-9,8,0,-3,-5.2844005,0,0,1,47,1,3,1,1,1,2019,1,2,16,4,24,20,15,1,1,1,0,6.5298052,6.5298052,0,0,0,0,0,0,0,0,1,1,0,1.292295,0,0,0,28.52,62.720001,49.580002,55.59,4,1,1,0,0,6,4,1,337.79999,135694.83,0,0,3059.2996 -5656,6979,12736,-9,12735,12734,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.0864,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,337.79999,135694.83,0,0,3059.2996 -5657,6980,12737,12739,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,0,3,8.1190405,8.1732473,0,2,0,-9,15,0,-3,-38.703732,0,0,0,38,2,3,3,3,2,2019,2,2,10,0,40,27,15,1,0,3,0,10.05178,10.05178,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.740002,49.919998,49.52,56.950001,6,2,3,0,0,8,3,0,368.5,-13991.826,0,0,2956.9487 -5657,6980,12738,-9,12739,12737,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-976.06549,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,2,3,0,0,8,3,0,368.5,-13991.826,0,0,2956.9487 -5657,6980,12739,12737,-9,-9,2,1,0,38,1,0,2,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,16,0,3,45.718575,0,0,1,35,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.52,56.950001,46.740002,49.919998,6,2,3,1,0,8,3,0,368.5,-13991.826,0,0,2956.9487 -5657,6980,12740,-9,12739,12737,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.0182,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,0,368.5,-13991.826,0,0,2956.9487 -5658,6981,12741,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-934.30145,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,52.09,-9,-9,6,1,1,0,0,6,1,0,783,-66133.344,0,0,2718.6448 -5659,6982,12742,12743,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,8.4786234,8.394146,0,2,0,-9,6,0,-11,-14.088317,0,0,0,59,2,4,1,2,2,2019,1,2,10,0,42,40,15,1,0,1,0,10.760735,10.760735,0,0,0,0,0,0,0,0,1,1,0,2.6767325,0,0,0,54.619999,53.529999,54,53,6,1,1,0,0,9,5,0,513,1043684.9,0,0,3950.5352 -5659,6982,12743,12742,-9,-9,2,1,1,59,1,0,2,0,2,-9,2,1,0,0,4,8.6316595,8.6069298,0,2,0,-9,6,0,11,58.325367,0,0,0,48,2,3,1,2,3,2019,1,1,8,0,39,40,15,1,0,1,0,14.78907,14.78907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,54.619999,53.529999,6,1,1,0,0,9,5,0,513,1043684.9,0,0,3950.5352 -5659,6983,12744,-9,12742,12743,3,1,0,27,2,0,2,0,2,-9,2,1,0,0,4,8.1431589,8.2663603,0,3,0,-9,0,-9,0,-861.13074,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,0,15,1,0,-9,1,8.3326426,8.3326426,0,0,0,0,0,0,0,0,1,1,0,5.7444487,0,0,0,47,57,-9,-9,5,4,2,0,0,9,4,0,911,-88023.273,0,0,4381.6035 -5659,6983,12745,-9,12744,-9,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1110.4805,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,9,4,0,911,-88023.273,0,0,4381.6035 -5660,6984,12746,-9,12747,12748,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.10638,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,375,949512.88,0,0,4282.4658 -5660,6984,12747,12748,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.5467367,8.4267397,0,2,0,-9,17,0,-1,76.453316,0,0,1,43,1,4,1,3,2,2019,1,2,7,0,28,28,15,1,0,1,0,21.274139,21.274139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.389999,42.389999,51.830002,57.200001,6,1,1,0,0,2,5,1,375,949512.88,0,0,4282.4658 -5660,6984,12748,12747,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.5725384,8.7938471,0,2,0,-9,17,0,1,64.781311,0,0,0,42,1,4,1,1,2,2019,1,1,7,0,39,39,15,1,0,1,0,18.206049,18.206049,0,0,0,0,0,0,0,0,1,1,0,4.292171,0,0,0,51.830002,57.200001,63.389999,42.389999,6,1,1,0,0,2,5,1,375,949512.88,0,0,4282.4658 -5660,6984,12749,-9,12747,12748,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.4021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,375,949512.88,0,0,4282.4658 -5661,6985,12750,12751,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,47,0,-1,-127.5274,0,0,0,63,2,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.13584517,1,50.369999,31.120001,48.52,45.049999,5,1,1,0,0,9,2,0,859.5,427811.56,0,0,2219.9731 -5661,6985,12751,12750,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,1,3,0,6.361022,6.2044301,1,0,-9,47,0,1,-120.03638,0,0,0,62,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3318477,0,0,48.52,45.049999,50.369999,31.120001,6,1,1,0,0,9,2,0,859.5,427811.56,0,0,2219.9731 -5662,6986,12752,-9,-9,-9,1,1,0,44,3,0,0,0,2,-9,2,1,0,0,4,8.0410767,8.3262215,0,3,0,0,0,-9,0,-985.48553,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,42,37,15,1,0,-9,0,7.8091726,7.8091726,0,0,0,0,0,0,0,0,1,1,0,4.6525331,0,0,0,50.25,54.040001,-9,-9,6,1,1,0,0,11,4,1,2054,415067.84,0,0,605.9021 -5662,6987,12753,-9,12752,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,0,3,6.3779993,6.0259123,0,3,0,0,0,-9,0,-867.74005,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,11,2,1,1599,10635.128,0,0,600.75934 -5663,6988,12754,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-943.05792,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9197087,0,0,0,45.73,57.57,-9,-9,4,1,1,0,0,9,1,1,128,22549.008,0,0,722.08472 -5664,6989,12755,12757,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,4,8.0995941,8.545927,0,2,0,-9,9,0,0,-137.93013,0,0,0,41,2,3,1,2,2,2019,1,2,9,2,42,38,15,1,0,1,0,10.121943,10.121943,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.639999,63.939999,39.080002,57.810001,5,1,1,0,0,2,4,1,372,359530.69,0,0,3589.239 -5664,6989,12756,-9,12757,12755,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.58124,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,372,359530.69,0,0,3589.239 -5664,6989,12757,12755,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,3,8.5915642,7.9843931,0,2,0,-9,9,0,0,144.44934,0,0,1,41,2,4,1,-9,-9,2019,1,1,20,8,30,30,15,1,1,1,0,18.838648,18.838648,0,0,0,0,0,0,0,0,1,0,1,2.0253906,0,0,0,39.080002,57.810001,39.639999,63.939999,5,1,1,0,0,2,4,1,372,359530.69,0,0,3589.239 -5665,6990,12758,-9,12759,12761,5,1,0,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-879.48364,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,1,0,1188.8334,13288.174,0,0,1705.3545 -5665,6990,12759,12761,-9,-9,1,1,0,20,1,2,4,0,2,-9,3,3,0,0,5,0,2.7883334,2.8736386,2,0,-9,1,-9,-8,-.99014419,-9,1,1,28,2,3,3,-9,-9,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5192018,0,0,0,40.029999,62.02,49.860001,47.439999,5,1,1,1,0,10,1,0,1188.8334,13288.174,0,0,1705.3545 -5665,6990,12760,-9,12759,12761,3,1,1,8,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-826.17908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,1,0,1188.8334,13288.174,0,0,1705.3545 -5665,6990,12761,12759,-9,-9,2,1,1,28,1,2,4,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,8,22.136978,-9,1,0,20,2,5,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,47.439999,40.029999,62.02,5,1,1,1,0,10,1,0,1188.8334,13288.174,0,0,1705.3545 -5665,6990,12762,-9,12759,12761,6,1,1,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1032.921,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,1,0,1188.8334,13288.174,0,0,1705.3545 -5665,6990,12763,-9,12759,12761,4,1,0,6,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-961.20752,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,1188.8334,13288.174,0,0,1705.3545 -5666,6991,12764,12765,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,8.0828829,7.9851475,0,1,0,-9,3,0,1,-50.110226,0,1,0,26,1,3,1,-9,-9,2019,1,1,6,0,42,40,15,1,0,1,0,9.5282812,9.5282812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,11.88,60.860001,7,1,1,0,0,12,5,1,1921,78106.461,0,0,2757.8899 -5666,6991,12765,12764,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,3,8.2279253,8.3927145,0,1,0,-9,3,0,-1,41.459778,0,1,1,27,1,4,1,2,2,2019,1,2,22,11,38,46,15,1,1,1,0,10.614986,10.614986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.88,60.860001,57.16,56.150002,4,1,1,0,0,12,5,1,1921,78106.461,0,0,2757.8899 -5667,6992,12766,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1022.4272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,9,0,0,15,3,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.57,28.1,-9,-9,1,1,1,0,0,13,1,0,1749,208197.95,0,0,1670.1975 -5668,6993,12767,12768,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.4243231,8.8903866,0,1,0,-9,7,0,-7,-148.21112,0,1,1,34,2,3,1,2,2,2019,1,1,7,0,36,8,15,1,0,1,0,19.178534,19.178534,0,0,0,0,0,0,0,0,0,0,0,3.0126641,0,0,0,43.380001,62.580002,49.040001,55.860001,6,1,1,0,0,7,5,1,452.5,13757.623,0,0,3939.5732 -5668,6993,12768,12767,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,0,3,8.2104321,8.2108746,0,1,0,-9,7,0,7,-77.301582,0,0,0,27,1,5,1,2,1,2019,1,2,12,2,52,42,15,1,0,1,0,8.7065935,8.7065935,0,0,0,0,0,0,0,0,0,0,0,2.6521993,0,0,0,49.040001,55.860001,43.380001,62.580002,7,1,1,0,0,7,5,1,452.5,13757.623,0,0,3939.5732 -5669,6994,12769,-9,12773,-9,1,1,1,23,2,0,1,0,2,-9,2,1,0,0,5,7.8937502,8.1272087,0,3,0,0,0,-9,0,-1056.0393,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,40,15,1,0,-9,1,8.3283243,8.3283243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,6,3,0,328,-22343.264,0,0,478.48389 -5669,6995,12770,-9,12773,-9,2,1,0,23,2,0,1,0,2,-9,2,1,0,0,4,7.7428994,7.9889469,0,3,0,0,0,-9,0,-974.78772,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,36,32,15,1,0,-9,1,5.7180886,5.7180886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,6,2,3,0,0,6,3,0,720,55682.836,0,0,327.80685 -5669,6996,12771,-9,12773,-9,3,1,0,20,2,0,1,0,2,1,2,1,0,0,4,7.9575214,7.8455825,0,3,0,0,0,-9,0,-1013.443,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,37,0,15,1,0,-9,1,6.8158026,6.8158026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.540001,45.700001,-9,-9,4,2,3,0,0,6,3,0,1178,106355.9,0,0,782.4129 -5669,6997,12772,-9,12773,-9,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-908.52789,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,6,2,0,344.5,-73681.094,0,0,1062.595 -5669,6997,12773,-9,-9,-9,5,1,0,48,2,0,1,0,3,-9,2,1,0,0,4,6.9782519,7.281713,0,4,0,0,0,-9,0,-1013.7557,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,5,16,16,15,1,1,-9,0,5.7241631,5.7241631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.389999,46.900002,-9,-9,4,2,3,0,0,6,2,0,344.5,-73681.094,0,0,1062.595 -5670,6998,12774,-9,12776,12777,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.60425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,9,3,1,516.5,555766,0,0,2854.9834 -5670,6998,12775,-9,12776,12777,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.1854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,3,1,516.5,555766,0,0,2854.9834 -5670,6998,12776,12777,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,0,4,7.0608864,7.2955122,0,2,0,-9,15,0,-10,-31.023972,0,0,1,45,2,4,1,2,2,2019,1,2,14,2,24,20,15,1,0,1,0,8.3122587,8.3122587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,60.77,33.110001,56.169998,6,2,3,0,0,9,3,1,516.5,555766,0,0,2854.9834 -5670,6998,12777,12776,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,0,4,8.1706295,8.2595148,0,2,0,-9,16,0,10,20.844364,0,0,0,35,2,4,1,2,2,2019,1,1,19,7,37,35,15,1,1,1,0,12.471944,12.471944,0,0,0,0,0,0,0,0,1,1,0,1.542417,0,0,0,33.110001,56.169998,41.299999,60.77,3,2,3,0,0,9,3,1,516.5,555766,0,0,2854.9834 -5671,6999,12778,12779,-9,-9,1,1,1,33,1,1,1,0,2,-9,1,1,0,0,3,9.3798933,9.6040468,0,2,0,-9,5,0,0,-42.711548,0,0,0,33,1,4,1,2,2,2019,1,2,11,2,7,12,15,1,0,1,0,280.35294,280.35294,0,0,0,0,0,0,0,0,1,1,0,6.0652342,0,0,0,44.740002,48.369999,38.689999,61.75,6,1,1,0,0,6,5,1,374,180192.11,0,0,8760.21 -5671,6999,12779,12778,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,4,7.1416726,7.2750664,0,2,0,-9,5,0,0,1.5729463,0,0,1,33,2,3,1,-9,-9,2019,1,1,14,3,24,21,15,1,0,1,0,7.0852079,7.0852079,0,0,0,0,0,0,0,0,1,1,0,.21574512,0,0,0,38.689999,61.75,44.740002,48.369999,6,1,1,0,0,6,5,1,374,180192.11,0,0,8760.21 -5671,6999,12780,-9,12779,12778,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.42786,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,6,5,1,374,180192.11,0,0,8760.21 -5672,7000,12781,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,4,7.9356623,8.1508322,0,3,0,0,0,-9,0,-923.0979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,48,40,15,1,0,-9,0,8.3597441,8.3597441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,3,4,0,0,4,4,0,2564,34531.73,0,0,2065.5823 -5673,7001,12782,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,1,3,7.9205694,7.9685049,0,3,0,-9,0,0,0,-943.5152,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,39,39,15,1,0,-9,1,5.1552019,5.1552019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,54.040001,-9,-9,4,1,1,0,0,2,3,1,489,-86431.648,0,0,1029.6888 -5674,7002,12783,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,2,7.7701755,8.1054516,0,3,0,0,0,-9,0,-1029.1321,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,35,40,15,1,0,-9,0,8.862112,8.862112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.220001,53.459999,-9,-9,6,1,1,0,0,4,4,0,1304,-38862.352,0,0,1352.1775 -5675,7003,12784,12785,-9,-9,1,1,1,54,1,0,1,0,1,-9,2,1,0,0,5,8.8060122,8.7895575,0,2,0,-9,6,0,3,6.4500332,0,0,0,51,1,4,1,3,3,2019,1,2,7,0,40,40,15,1,0,1,0,23.435026,23.435026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,52.349998,57.16,56.150002,2,1,1,0,0,12,5,1,369.66666,2666761.5,0,0,5058.7842 -5675,7003,12785,12784,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,4,8.8687086,9.0476761,0,2,0,-9,6,0,-3,59.423985,0,0,0,54,1,5,1,2,3,2019,1,1,10,0,47,43,15,1,0,1,0,19.208658,19.208658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54,52.349998,6,1,1,0,0,12,5,1,369.66666,2666761.5,0,0,5058.7842 -5675,7003,12786,-9,12785,12784,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1091.8978,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.73,57.91,-9,-9,5,1,1,0,0,12,5,1,369.66666,2666761.5,0,0,5058.7842 -5676,7004,12787,12788,-9,-9,4,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,7.7348876,7.9618826,0,2,0,-9,10,0,-1,-77.970718,0,0,0,40,2,2,3,-9,-9,2019,2,1,9,0,80,0,15,1,0,3,0,3.6973901,3.6973901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.889999,50.73,54.549999,34.439999,3,1,1,0,0,2,2,0,618.25,-5123.6465,0,0,2076.6116 -5676,7004,12788,12787,-9,-9,1,1,0,40,1,0,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,10,0,1,-73.616173,0,0,1,39,2,4,1,2,1,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.549999,34.439999,56.889999,50.73,6,1,1,0,0,2,2,0,618.25,-5123.6465,0,0,2076.6116 -5676,7004,12789,-9,12788,12787,6,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1125.516,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,618.25,-5123.6465,0,0,2076.6116 -5676,7004,12790,-9,12788,12787,5,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.23285,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,618.25,-5123.6465,0,0,2076.6116 -5676,7005,12791,-9,12788,12787,2,1,1,19,2,0,2,0,2,-9,2,1,0,0,4,3.4812639,3.4253168,0,3,0,0,0,-9,0,-985.14471,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,2,0,15,1,0,-9,1,1.7525032,1.7525032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,1643,-103057.44,0,0,-179.52446 -5676,7006,12792,-9,12788,12787,3,1,0,18,2,0,2,0,2,-9,11,3,0,0,4,7.9757781,7.9189205,0,3,0,0,0,-9,0,-1064.7487,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.54770184,0,0,0,48.099998,42.32,-9,-9,4,1,1,0,0,2,3,0,1182,-105536.27,0,0,739.86432 -5677,7007,12793,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,0,5,0,6.4561,6.2668405,3,0,0,0,-9,0,-915.33459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.7106271,2.5554638,4.3903112,0,0,1,1,0,0,6.0819631,0,0,65.120003,32.330002,-9,-9,7,3,4,0,0,8,2,0,650,1282142.3,0,0,2032.9396 -5678,7008,12794,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,8.2802134,8.3520765,0,3,0,0,0,-9,0,-987.65881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,37,15,1,0,-9,0,11.952379,11.952379,0,0,0,0,0,0,0,0,0,0,0,.70113337,0,0,0,42.610001,49.310001,-9,-9,5,1,1,0,0,11,4,1,421,396202.94,0,0,1509.1371 -5678,7009,12795,-9,12794,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,7.2651715,7.4997129,0,3,0,0,0,-9,0,-1023.0266,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,32,25,15,1,0,-9,1,6.8987517,6.8987517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.940001,61.650002,-9,-9,6,1,1,0,0,11,3,1,341,97598.922,0,0,611.75989 -5679,7010,12796,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,0,3,8.5304222,8.497283,0,3,0,0,0,-9,0,-1049.6857,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,65,55,15,1,0,-9,0,7.8681712,7.8681712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.610001,50.299999,-9,-9,4,1,1,0,0,12,4,0,429,103049.51,0,0,1834.3544 -5680,7011,12797,-9,-9,-9,1,1,1,47,3,0,1,0,2,-9,2,1,0,0,3,7.024107,7.242312,0,4,0,0,0,-9,0,-906.68677,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,56,7,15,1,0,-9,0,2.1250353,2.1250353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,2,2,0,398,177150.34,0,0,1968.5859 -5681,7012,12798,12799,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,0,3,8.1810274,7.9546523,0,1,0,-9,5,0,1,-76.779556,0,0,1,34,2,1,3,3,3,2019,2,2,15,4,40,40,15,1,1,3,0,11.870179,11.870179,0,0,0,0,0,0,0,0,1,1,0,.95137346,0,0,0,34.599998,59.57,42.439999,25.73,6,1,1,0,0,11,3,0,2200,105157.2,0,0,1947.7388 -5681,7012,12799,12798,-9,-9,2,1,1,34,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,5,0,-1,89.073204,0,0,0,35,2,3,1,-9,-9,2019,3,1,19,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.439999,25.73,34.599998,59.57,4,1,1,0,0,11,3,0,2200,105157.2,0,0,1947.7388 -5682,7013,12800,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,8,3,1,1,2,3.9363031,3.785938,0,3,0,0,0,-9,0,-1000.7719,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8601956,0,0,0,36.720001,21.24,-9,-9,5,4,5,0,0,8,2,1,442,-25688.752,0,0,609.08057 -5683,7014,12801,12802,-9,-9,1,1,0,23,1,0,0,0,1,-9,2,1,0,0,5,7.9002504,7.6323671,0,1,0,1,1,-9,1,21.388521,0,1,1,22,1,5,1,-9,-9,2019,1,2,18,7,40,0,15,1,1,1,0,6.2793498,6.2793498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.219999,55.16,37.68,60.93,5,2,3,0,0,4,4,0,888.5,126250.63,0,0,2378.2446 -5683,7014,12802,12801,-9,-9,2,1,1,22,1,0,0,0,1,-9,2,1,0,0,5,7.9265056,7.9693193,0,1,0,-9,1,-9,-1,46.922527,-9,1,0,23,1,5,1,-9,-9,2019,1,1,10,2,35,0,15,1,0,1,0,9.2177706,9.2177706,0,0,0,0,0,0,0,0,0,0,0,.07332363,0,0,0,37.68,60.93,30.219999,55.16,6,2,3,0,0,4,4,0,888.5,126250.63,0,0,2378.2446 -5684,7015,12803,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,2,1,0,0,4,9.1364956,8.9265747,0,3,0,-9,0,0,0,-1109.4993,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,17,6,59,48,15,1,1,-9,0,16.548779,16.548779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.990002,46.139999,-9,-9,5,4,2,0,0,4,5,1,2137,60567.961,0,0,3298.0747 -5685,7016,12804,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,7.8043408,7.8370552,3,0,-9,0,1,0,-926.38715,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9583495,7.8560481,0,0,50.48,56.400002,-9,-9,6,1,1,0,0,9,4,1,586,1118521.1,0,0,3584.5569 -5686,7017,12805,-9,12806,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,-9,0,-9,0,-1063.3907,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,6,2,1,965.5,31913.242,0,0,1106.0635 -5686,7017,12806,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,2,1,0,0,3,6.6888933,7.1689725,5.725132,4,0,-9,0,-9,0,-915.57855,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,17,0,15,1,1,-9,0,8.0745583,8.0745583,0,0,0,0,0,0,0,14.5,1,1,0,5.876307,0,14.525964,3,35.450001,49.810001,-9,-9,5,1,1,0,0,6,2,1,965.5,31913.242,0,0,1106.0635 -5687,7018,12807,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,0,4,7.8760815,8.7832737,8.6516953,3,0,0,0,-9,0,-997.16174,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,5,6,15,1,0,-9,0,65.455109,65.455109,0,0,0,0,0,0,0,0,0,0,0,0,8.5022984,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,2,5,1,215,433679.41,0,0,3334.687 -5688,7019,12808,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1079.5049,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.009998,21.09,-9,-9,5,1,1,0,0,11,1,0,310,95653.328,0,0,639.58228 -5689,7020,12809,12810,-9,-9,2,1,0,56,1,0,0,0,2,-9,1,1,0,0,3,5.549902,5.7116284,0,1,0,-9,10,0,-6,-12.289933,0,0,0,62,2,3,1,-9,-9,2019,1,1,13,1,6,20,15,1,0,1,0,5.9534168,5.9534168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.66,42.98,57.330002,53.459999,6,1,1,0,0,9,4,1,577,956153.06,0,0,2045.3914 -5689,7020,12810,12809,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.6715975,8.609766,0,1,0,-9,10,0,6,-20.807512,0,0,0,56,2,3,1,3,3,2019,1,2,11,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2304072,0,0,0,57.330002,53.459999,50.66,42.98,6,1,1,0,0,9,4,1,577,956153.06,0,0,2045.3914 -5690,7021,12811,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,0,4,8.9249086,9.0452518,0,3,0,0,0,-9,0,-1140.5111,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,45,15,1,0,-9,0,24.113939,24.113939,0,0,0,0,0,0,0,0,1,1,0,5.8311863,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,0,1851,607745.63,0,0,2194.218 -5691,7022,12812,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,8.9263525,8.7201052,0,3,0,0,0,-9,0,-867.27209,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,43,42,15,1,0,-9,0,21.360149,21.360149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.48,47.57,-9,-9,5,1,1,0,0,11,5,0,1092,128264.95,0,0,2149.0466 -5692,7023,12813,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1050.5646,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,1,1,0,1047,75880.984,0,0,1572.6375 -5693,7024,12814,-9,-9,-9,1,1,1,35,3,0,0,0,1,-9,2,1,0,0,3,8.7650156,9.152276,0,3,0,0,0,-9,0,-1000.0432,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,70,80,15,1,0,-9,0,12.917962,12.917962,0,0,0,0,0,0,0,0,0,0,0,10.10779,0,0,0,56.950001,46.689999,-9,-9,6,1,1,0,0,10,5,1,3545,173587.47,0,0,7795.749 -5694,7025,12815,12816,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,8.5980692,8.4416819,0,1,0,1,1,-9,-2,63.668888,0,1,1,28,2,4,1,2,3,2019,1,2,9,1,35,45,15,1,0,1,0,14.843014,14.843014,0,0,0,0,0,0,0,0,0,0,0,3.7346809,0,0,0,54.200001,57.490002,49,58,7,1,1,0,0,11,5,1,215,75175.359,0,0,3779.8901 -5694,7025,12816,12815,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.8360348,8.924387,0,1,0,-9,1,-9,2,21.164927,-9,1,0,26,2,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,18.685453,18.685453,0,0,0,0,0,0,0,0,0,0,0,.9108451,0,0,0,49,58,54.200001,57.490002,5,1,1,0,0,11,5,1,215,75175.359,0,0,3779.8901 -5695,7026,12817,-9,-9,-9,1,1,0,38,2,0,0,0,3,-9,2,1,0,0,5,8.2457037,7.924118,0,3,0,0,0,-9,0,-838.6319,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,1,16,40,15,1,0,-9,0,26.721954,26.721954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.439999,42.439999,-9,-9,7,1,1,0,0,1,4,0,115,195875.73,0,0,1582.3939 -5696,7027,12818,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,8.4438572,8.1685448,0,3,0,0,0,-9,0,-962.77869,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,48,48,15,1,0,-9,0,8.0201178,8.0201178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.209999,51.880001,-9,-9,4,2,3,0,0,8,4,0,239,54837.871,0,0,2404.343 -5697,7028,12819,12820,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.790791,7.6197681,1,0,-9,6,0,3,-28.474422,0,0,0,63,2,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3207445,7.6592655,0,0,38.34,62.119999,36.880001,36.040001,6,1,1,0,0,11,3,1,804.5,812733.88,0,0,4414.4517 -5697,7028,12820,12819,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,2,0,6.2452641,6.5098948,1,0,-9,6,0,-3,-30.207954,0,0,0,66,2,4,3,1,3,2019,4,2,26,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9223084,6.2953281,0,0,36.880001,36.040001,38.34,62.119999,5,1,1,0,0,11,3,1,804.5,812733.88,0,0,4414.4517 -5698,7029,12821,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1020.6112,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,1,1,0,0,2,1,0,742,122136.03,0,0,648.35327 -5699,7030,12822,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,4.0555592,3.6957376,3,0,0,0,-9,0,-1028.3082,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.6950277,0,0,0,1,1,0,.32629904,3.8921998,0,0,56.700001,42.759998,-9,-9,6,1,1,0,0,13,2,1,678,208494.56,0,0,669.92834 -5700,7031,12823,-9,12824,12825,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1060.5513,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,4,4,1,562.66669,509702.25,0,0,2030.1815 -5700,7031,12824,12825,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,2,7.9939971,7.9905772,0,2,0,-9,26,0,-2,-5.8568687,0,0,0,51,2,2,1,2,3,2019,1,1,10,2,41,41,15,1,0,1,0,9.8643551,9.8643551,0,0,0,0,0,0,0,0,1,1,0,2.2286706,0,0,0,47.540001,41.830002,62.529999,30.809999,3,1,1,0,0,4,4,1,562.66669,509702.25,0,0,2030.1815 -5700,7031,12825,12824,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,7.7694011,7.512054,0,2,0,-9,26,0,2,84.104904,0,0,0,49,2,2,1,3,3,2019,1,2,8,1,39,39,15,1,0,1,0,6.8541598,6.8541598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.529999,30.809999,47.540001,41.830002,2,1,1,0,0,4,4,1,562.66669,509702.25,0,0,2030.1815 -5701,7032,12826,12827,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,4,8.7759972,8.7389441,0,1,0,-9,3,0,1,-37.565155,0,0,1,34,1,4,1,1,2,2019,1,2,6,0,60,60,15,1,0,1,0,12.780934,12.780934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.290001,49.68,50,57,6,2,3,0,0,13,5,0,491,53942.293,0,0,5102.2378 -5701,7032,12827,12826,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,8.8232851,8.6567678,0,1,0,-9,3,0,-1,-161.07066,0,0,0,35,1,4,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,15.36338,15.36338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,59.290001,49.68,5,4,3,0,0,13,5,0,491,53942.293,0,0,5102.2378 -5702,7033,12828,-9,12829,12830,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-890.82928,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,1,654.5,191712.8,0,0,2622.458 -5702,7033,12829,12830,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,0,3,8.8307972,8.8862267,0,2,0,-9,1,-9,4,40.253117,-9,0,1,29,2,4,1,1,2,2019,1,2,10,3,60,0,15,1,0,1,0,13.046231,13.046231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.689999,53.27,49,58,6,1,1,0,0,4,4,1,654.5,191712.8,0,0,2622.458 -5702,7033,12830,12829,-9,-9,2,1,1,29,1,0,2,0,2,-9,1,1,0,0,4,7.0105925,7.3820395,0,2,0,-9,1,-9,-4,147.73657,-9,1,0,33,1,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,4.3040285,4.3040285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,45.689999,53.27,5,1,1,0,0,4,4,1,654.5,191712.8,0,0,2622.458 -5702,7033,12831,-9,12829,12830,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1165.7689,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,654.5,191712.8,0,0,2622.458 -5703,7034,12832,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-976.14203,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,22,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.540001,33.040001,-9,-9,3,1,1,0,1,11,1,0,458,-47515.52,0,0,493.33804 -5704,7035,12833,12834,-9,-9,2,1,0,50,1,0,0,0,2,-9,6,3,0,0,5,0,5.7270093,6.1931143,1,0,-9,7,0,-21,83.802719,0,0,0,71,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9203768,0,0,0,60.02,56.419998,46.389999,60.990002,7,1,1,0,0,7,3,1,617,1693208.3,0,0,2590.4771 -5704,7035,12834,12833,-9,-9,1,1,1,71,1,0,0,0,2,-9,1,1,0,0,4,7.5763311,7.4999695,0,1,0,-9,7,0,21,116.67567,0,0,0,50,2,5,3,-9,-9,2019,2,2,7,0,10,12,15,1,0,3,0,18.008873,18.008873,0,0,0,0,0,0,0,0,1,1,0,2.4803846,0,0,0,46.389999,60.990002,60.02,56.419998,6,1,1,0,0,7,3,1,617,1693208.3,0,0,2590.4771 -5705,7036,12835,12836,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.2687421,7.1505222,1,0,-9,57,0,0,69.133919,0,0,0,75,2,4,3,-9,-9,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.120976,7.315742,0,0,57.16,56.150002,48.759998,53.240002,6,2,3,0,0,8,3,1,446,902799.88,0,0,2291.3374 -5705,7036,12836,12835,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.8563313,7.7896929,1,0,-9,57,0,0,-81.543953,0,0,0,75,2,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6553996,7.531445,0,0,48.759998,53.240002,57.16,56.150002,5,4,2,0,0,8,3,1,446,902799.88,0,0,2291.3374 -5706,7037,12837,-9,12838,-9,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-796.82074,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,11,1,0,573.66669,6236.3589,0,0,2719.0391 -5706,7037,12838,-9,-9,-9,1,1,0,37,2,0,3,0,2,-9,3,3,0,1,1,0,0,0,4,0,0,0,-9,0,-931.51373,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,26,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.51,51.380001,-9,-9,2,1,1,1,0,11,1,0,573.66669,6236.3589,0,0,2719.0391 -5706,7037,12839,-9,12838,-9,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,5.1037064,5.2503743,3.7788556,4,0,0,0,-9,0,-953.42401,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2350345,0,0,0,32.759998,58.150002,-9,-9,2,1,1,0,0,11,1,0,573.66669,6236.3589,0,0,2719.0391 -5706,7038,12840,-9,12838,-9,2,1,1,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-969.75836,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,-9,-9,5,1,1,0,0,11,1,0,1176,0,0,0,0 -5707,7039,12841,12842,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,2,0,8.0421934,8.0596752,1,0,-9,6,0,0,200.34317,0,0,0,80,2,2,3,2,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6852479,8.1598682,0,0,60.290001,38.880001,52.57,25.969999,6,1,1,0,0,10,3,1,262,703654.13,0,0,3497.1196 -5707,7039,12842,12841,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,2,0,5.999229,6.2656384,1,0,-9,6,0,0,-2.699249,0,0,0,80,2,2,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.57157689,6.2600541,0,0,52.57,25.969999,60.290001,38.880001,6,1,1,0,0,10,3,1,262,703654.13,0,0,3497.1196 -5708,7040,12843,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,0,5,7.4175143,8.1677399,7.6531606,3,0,0,0,-9,0,-864.16095,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,26,34,15,1,0,-9,0,5.7861991,5.7861991,0,0,0,0,0,0,0,0,1,1,0,6.9249954,7.8535223,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,4,1,2391,635743.25,0,0,1518.6104 -5709,7041,12844,12845,-9,-9,1,1,0,56,1,0,1,0,2,-9,1,1,0,0,4,5.9496751,6.1288614,0,2,0,-9,8,0,1,-117.97654,0,0,0,55,2,4,1,1,1,2019,1,2,10,0,0,18,15,1,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.6940169,0,27.354542,3,49.860001,55.310001,53,54,6,4,2,0,0,8,5,1,408.33334,1251012.9,0,0,5215.8662 -5709,7041,12845,12844,-9,-9,2,1,1,55,1,0,1,0,2,-9,1,1,0,0,4,8.9216471,9.267086,8.3234663,2,0,-9,8,0,-1,102.78244,0,0,0,56,2,4,1,-9,-9,2019,1,1,9,1,50,50,15,1,0,1,0,13.237359,13.237359,0,0,0,0,0,0,0,0,1,1,0,0,8.5797367,0,0,53,54,49.860001,55.310001,6,1,1,0,0,8,5,1,408.33334,1251012.9,0,0,5215.8662 -5709,7041,12846,-9,12844,12845,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-930.68695,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,4,2,0,0,8,5,1,408.33334,1251012.9,0,0,5215.8662 -5710,7042,12847,-9,-9,-9,1,1,0,45,2,0,2,0,2,-9,2,1,0,0,3,7.5033374,8.004858,0,4,0,0,0,-9,0,-958.8028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,37,0,15,1,0,-9,0,4.6634321,4.6634321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.709999,40.18,-9,-9,5,3,4,0,1,8,2,0,410.33334,41133.746,0,0,1084.2118 -5710,7042,12848,-9,12847,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.598,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,410.33334,41133.746,0,0,1084.2118 -5710,7042,12849,-9,12847,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-844.33997,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,2,0,410.33334,41133.746,0,0,1084.2118 -5711,7043,12850,-9,-9,-9,1,1,0,68,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-901.53302,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.501774,3,50,47,-9,-9,5,1,1,0,0,8,1,0,294,-124209.82,0,0,1098.4929 -5712,7044,12851,-9,12853,-9,5,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1107.9642,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,1308,154602.91,0,0,2960.2473 -5712,7044,12852,-9,12853,-9,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.69672,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,1308,154602.91,0,0,2960.2473 -5712,7044,12853,-9,-9,-9,1,1,0,47,3,0,2,0,3,-9,6,3,0,1,1,0,0,0,4,0,0,0,-9,0,-954.41675,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.88424,3,29.639999,30.24,-9,-9,4,1,1,0,0,9,1,0,1308,154602.91,0,0,2960.2473 -5713,7045,12854,-9,-9,-9,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,2,7.8256354,7.7579222,0,3,0,0,0,-9,0,-1053.6768,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1401427,0,0,0,37.16,45.400002,-9,-9,3,2,3,0,0,6,3,0,467,49280.707,0,0,1559.2904 -5714,7046,12855,12857,-9,-9,1,1,0,43,1,1,1,0,1,-9,1,1,0,0,3,6.7065892,6.7958455,0,2,0,-9,9,0,9,33.347565,0,0,1,34,1,4,1,2,2,2019,1,2,6,0,8,7,15,1,0,1,0,15.292021,15.292021,0,0,0,0,0,0,0,0,1,1,0,2.8037708,0,0,0,54.369999,54.799999,54.200001,57.490002,5,1,1,0,0,7,4,0,611.66669,69313.375,0,0,2432.095 -5714,7046,12856,-9,12855,12857,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.3939,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,0,611.66669,69313.375,0,0,2432.095 -5714,7046,12857,12855,-9,-9,2,1,1,34,1,1,1,0,1,1,2,1,0,0,4,8.3099842,8.6515322,0,2,0,-9,9,0,0,58.261868,-9,0,0,43,1,3,1,1,2,2019,1,1,9,1,42,0,15,1,0,1,0,12.509222,12.509222,0,0,0,0,0,0,0,0,1,1,0,2.9416206,0,0,0,54.200001,57.490002,54.369999,54.799999,5,1,1,0,0,7,4,0,611.66669,69313.375,0,0,2432.095 -5715,7047,12858,-9,12859,12861,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.2345,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,3,1,713,394263.25,0,0,3575.8657 -5715,7047,12859,12861,-9,-9,1,1,0,46,1,0,3,0,2,-9,2,1,0,0,4,7.4972944,7.6696668,0,2,0,-9,21,0,3,1.6703709,0,0,0,43,2,4,1,2,2,2019,1,2,7,0,18,18,15,1,0,1,0,10.429314,10.429314,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.335655,3,57.16,56.150002,51,56,6,1,1,0,0,5,3,1,713,394263.25,0,0,3575.8657 -5715,7047,12860,-9,12859,12861,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.62994,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,3,1,713,394263.25,0,0,3575.8657 -5715,7047,12861,12859,-9,-9,2,1,1,43,1,0,3,0,2,-9,2,1,0,0,4,8.3860188,8.459981,0,2,0,-9,8,0,-3,-111.58195,0,0,0,46,2,4,1,-9,-9,2019,1,1,9,1,40,44,15,1,0,1,0,13.321606,13.321606,0,0,0,0,0,0,0,0,1,1,0,.32204109,0,0,0,51,56,57.16,56.150002,6,1,1,0,0,5,3,1,713,394263.25,0,0,3575.8657 -5716,7048,12862,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,2,0,6.047503,6.0416012,3,0,0,0,-9,0,-972.03876,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,0,15,4,1,-9,0,0,0,1,0,0,9.6758251,0,0,0,0,1,1,0,6.4014816,6.2265749,0,0,34.099998,29.34,-9,-9,3,1,1,0,0,8,2,1,136,31700.549,0,0,592.81244 -5717,7049,12863,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,1,0,4.4722528,4.5510573,3,0,0,0,-9,0,-945.742,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,5.7703533,0,0,6.6844349,0,13.451496,0,1,1,0,5.2725601,4.6446037,0,0,49.029999,13.18,-9,-9,3,1,1,0,0,7,2,1,362,159604.52,0,0,1374.0657 -5718,7050,12864,12866,-9,-9,1,1,0,42,1,0,2,0,3,-9,6,3,0,1,4,0,0,0,2,0,-9,24,0,-12,0,0,0,1,54,3,4,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.94655,1,49,55,53,54,6,2,3,0,0,8,1,0,412.25,97541.688,0,0,1915.7701 -5718,7050,12865,-9,12864,12866,6,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.70587,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,1,0,412.25,97541.688,0,0,1915.7701 -5718,7050,12866,12864,-9,-9,2,1,1,54,1,0,2,0,3,-9,8,3,1,1,4,0,0,0,2,0,-9,24,0,12,0,0,0,0,42,3,4,3,3,3,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49,55,6,2,3,0,0,8,1,0,412.25,97541.688,0,0,1915.7701 -5718,7050,12867,-9,12864,12866,5,1,0,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.0416,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,1,0,412.25,97541.688,0,0,1915.7701 -5718,7051,12868,-9,12864,12866,3,1,0,22,2,0,2,0,2,-9,2,1,0,0,5,8.3277264,8.5014277,0,3,0,0,0,-9,0,-899.62128,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,41,6,15,1,0,-9,1,9.6541824,9.6541824,0,0,0,0,0,0,0,2,1,1,0,0,0,3.3316784,3,57.060001,57.759998,-9,-9,6,2,3,0,0,8,4,0,220,248209.03,0,0,2105.0996 -5718,7052,12869,-9,12864,12866,4,1,0,19,2,0,2,0,2,0,7,2,0,0,4,6.5323381,6.2995458,0,3,0,0,0,-9,0,-1028.4514,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.083656,3,46,58,-9,-9,5,2,3,0,0,8,2,0,763,-11626.202,0,0,-35.403954 -5719,7053,12870,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.0655298,7.9042697,0,3,0,0,0,-9,0,-959.93188,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,38,15,1,0,-9,0,9.7730188,9.7730188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.110001,45.630001,-9,-9,6,1,1,0,0,6,4,0,121,-195526.61,0,0,1617.6409 -5720,7054,12871,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,9.1593056,9.214179,0,3,0,0,0,-9,0,-1044.0044,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,76,93,15,1,0,-9,0,11.452711,11.452711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.349998,57.84,-9,-9,7,1,1,0,0,8,5,0,478,42537.676,0,0,2758.3474 -5721,7055,12872,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,5,8.4558706,8.531785,0,3,0,0,0,-9,0,-1134.8674,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,37,15,1,0,-9,0,15.067105,15.067105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.240002,58.02,-9,-9,7,1,1,0,0,10,5,1,1229,-16758.053,0,0,1846.0786 -5722,7056,12873,12874,-9,-9,1,1,1,50,1,0,1,0,1,-9,1,1,0,0,3,7.8469501,7.9089074,0,2,0,-9,10,0,-1,89.083878,0,0,0,51,2,3,1,3,2,2019,1,2,8,0,15,20,15,1,0,1,0,20.345953,20.345953,0,0,0,0,0,0,0,0,0,0,0,9.1737127,0,0,0,58.02,47.650002,33.369999,60.580002,6,2,3,0,0,8,3,1,855,2192055,0,0,4804.5811 -5722,7056,12874,12873,-9,-9,2,1,0,51,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,10,0,1,-69.649811,0,0,0,50,1,3,1,3,3,2019,1,1,23,10,0,20,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7825406,0,0,0,33.369999,60.580002,58.02,47.650002,4,2,3,0,0,8,3,1,855,2192055,0,0,4804.5811 -5722,7056,12875,-9,12874,12873,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1075.5258,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,8,3,1,855,2192055,0,0,4804.5811 -5723,7057,12876,12877,-9,-9,1,1,0,54,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-1,127.62181,0,0,0,55,2,3,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3124499,0,0,0,49.349998,59.639999,49,49,6,1,1,0,0,5,5,1,487,1808540.3,0,0,5247.9688 -5723,7057,12877,12876,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,3,9.1081429,9.2860336,0,2,0,-9,10,0,1,-6.234756,0,0,0,54,2,4,3,2,2,2019,2,1,11,1,37,40,15,1,0,3,0,29.973505,29.973505,0,0,0,0,0,0,0,0,1,1,0,7.638073,0,0,0,49,49,49.349998,59.639999,5,1,1,0,0,5,5,1,487,1808540.3,0,0,5247.9688 -5723,7058,12878,-9,12876,12877,3,1,1,22,2,0,1,0,1,1,3,3,0,0,4,6.7138524,6.6485763,0,3,0,0,0,-9,0,-911.87061,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,10,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,58.880001,-9,-9,4,1,1,1,0,5,2,1,805,122137.1,0,0,1515.6025 -5723,7059,12879,-9,12876,12877,4,1,1,20,2,0,1,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1149.4745,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,5,1,1,113,-137434.58,0,0,0 -5723,7060,12880,-9,12876,12877,5,1,0,18,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1139.0697,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,5,1,1,1372,150149.16,0,0,0 -5723,7061,12881,-9,12876,12877,6,1,0,18,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1126.4764,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.369999,56.93,-9,-9,7,1,1,0,0,5,5,1,104,-192554.27,0,0,0 -5724,7062,12882,12883,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,50,0,1,-62.818027,0,0,0,72,2,5,3,3,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1896706,0,0,0,54.099998,59.110001,60.02,56.419998,6,1,1,0,0,9,4,1,485.5,2202284,0,0,9726.7168 -5724,7062,12883,12882,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,8.2936249,8.2326431,1,0,-9,50,0,-1,-46.429001,0,0,0,73,2,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0505123,8.4710264,0,0,60.02,56.419998,54.099998,59.110001,7,1,1,0,0,9,4,1,485.5,2202284,0,0,9726.7168 -5725,7063,12884,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,0,4,6.2376561,6.1111398,0,3,0,0,0,-9,0,-957.60046,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,20,9,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3989713,0,0,3,57.310001,43.709999,-9,-9,7,1,1,0,0,10,2,1,117,62165.727,0,0,-292.35413 -5726,7064,12885,-9,12886,12887,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.2726,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,2,0,629.25,29864.543,0,0,1524.6743 -5726,7064,12886,12887,-9,-9,2,1,0,48,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-5,-32.446678,0,0,0,53,2,3,1,-9,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,55.360001,51.57,7,1,1,0,0,1,2,0,629.25,29864.543,0,0,1524.6743 -5726,7064,12887,12886,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,0,3,7.2220078,7.2119694,0,2,0,-9,7,0,5,163.15811,0,0,0,48,3,4,3,2,2,2019,2,2,9,0,32,32,15,1,0,3,0,4.3171949,4.3171949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,62.490002,55.09,6,1,1,0,0,1,2,0,629.25,29864.543,0,0,1524.6743 -5726,7064,12888,-9,12886,12887,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.18524,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,2,0,629.25,29864.543,0,0,1524.6743 -5727,7065,12889,-9,12890,-9,3,1,1,16,2,0,2,1,-9,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1019.4686,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.91,58.630001,-9,-9,6,4,2,0,0,4,3,0,496.66666,141160.23,0,0,3197.5127 -5727,7065,12890,-9,-9,-9,1,1,0,38,2,0,2,0,3,-9,2,1,0,0,4,7.6634698,7.8239264,6.1075988,4,0,0,0,-9,0,-934.28351,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,45,36,15,1,0,-9,0,5.8807921,5.8807921,0,0,0,0,0,0,0,7,1,1,0,6.514451,0,6.4678969,3,49.82,37.91,-9,-9,4,1,1,0,0,4,3,0,496.66666,141160.23,0,0,3197.5127 -5727,7065,12891,-9,12890,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1042.5803,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,4,3,0,496.66666,141160.23,0,0,3197.5127 -5727,7066,12892,-9,12890,-9,2,1,1,18,2,0,2,0,2,-9,2,1,0,0,4,7.7152047,7.8517041,0,3,0,0,0,-9,0,-1063.5605,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,40,0,15,1,0,-9,1,8.8628702,8.8628702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,4,3,0,382,77280.258,0,0,1401.2836 -5728,7067,12893,-9,12896,12894,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.1155,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,444.75,7056207,0,0,3488.2112 -5728,7067,12894,12896,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,2,8.7621832,8.4591331,0,2,0,-9,7,0,3,77.96711,0,0,0,47,2,3,1,3,3,2019,1,2,11,0,37,37,15,1,0,1,0,15.942604,15.942604,0,0,0,0,0,0,0,7,1,1,0,0,0,14.771732,3,43.82,46.27,49.52,48.919998,4,1,1,0,0,12,4,1,444.75,7056207,0,0,3488.2112 -5728,7067,12895,-9,12896,12894,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.7515,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,444.75,7056207,0,0,3488.2112 -5728,7067,12896,12894,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,3,7.3169508,7.6952267,0,2,0,-9,7,0,-3,45.66468,0,0,0,50,1,2,1,3,2,2019,1,1,10,0,45,45,15,1,0,1,0,5.3266058,5.3266058,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.878248,3,49.52,48.919998,43.82,46.27,6,1,1,0,0,12,4,1,444.75,7056207,0,0,3488.2112 -5729,7068,12897,-9,12898,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-898.14319,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,389.5,263814.59,0,0,1889.9796 -5729,7068,12898,-9,-9,-9,1,1,0,40,3,0,2,0,1,-9,2,1,0,0,3,7.7233829,8.0304613,6.387857,4,0,0,0,-9,0,-994.51373,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,32,30,15,1,0,-9,0,7.6615267,7.6615267,0,0,0,0,0,0,0,2,1,1,0,6.1062822,0,6.8544292,3,32.82,56.450001,-9,-9,5,1,1,0,0,4,3,1,389.5,263814.59,0,0,1889.9796 -5730,7069,12899,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,4,8.5286541,8.8935022,5.1515765,3,0,0,0,-9,0,-909.37958,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,30,23,15,1,1,-9,0,19.356817,19.356817,0,0,0,0,0,0,0,0,1,1,0,5.8501964,0,0,0,34.869999,59.759998,-9,-9,4,1,1,0,0,10,5,0,1175.5,643275.75,0,0,1793.0062 -5730,7069,12900,-9,12899,-9,2,1,0,16,2,0,0,1,2,-9,7,2,0,0,4,5.8273439,6.0862565,0,3,0,0,0,-9,0,-993.96143,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,4,11,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73197109,0,0,0,46.48,58.279999,-9,-9,6,1,1,0,0,10,5,0,1175.5,643275.75,0,0,1793.0062 -5731,7070,12901,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,7.1658721,7.1831841,3,0,0,0,-9,0,-979.42944,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8146238,6.9027634,0,0,48.700001,40.16,-9,-9,5,1,1,0,0,1,2,1,396,264882.38,0,0,1183.7283 -5732,7071,12902,12903,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,9.3550987,9.4202271,0,1,0,-9,3,0,-1,24.726614,0,0,0,31,1,4,1,1,3,2019,1,2,8,0,40,40,15,1,0,1,0,36.127033,36.127033,0,0,0,0,0,0,0,0,0,0,0,4.1757617,0,0,0,54.200001,57.490002,46.5,58.259998,6,1,1,0,0,6,5,1,1717.5,494798.38,0,0,5988.6006 -5732,7071,12903,12902,-9,-9,2,1,0,31,1,0,0,0,1,-9,1,1,0,0,4,8.9314566,8.8038397,0,1,0,-9,3,0,1,-13.222329,0,0,1,30,1,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,17.929249,17.929249,0,0,0,0,0,0,0,0,0,0,0,1.1266837,0,0,0,46.5,58.259998,54.200001,57.490002,6,1,1,0,0,6,5,1,1717.5,494798.38,0,0,5988.6006 -5733,7072,12904,12905,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,6.5904751,6.2947335,1,0,-9,6,0,4,-90.477531,0,0,0,59,3,2,3,2,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8588862,7.8208818,1,54.959999,53.169998,46.869999,23.34,6,1,1,0,0,13,2,1,456,540059.31,0,0,2247.3582 -5733,7072,12905,12904,-9,-9,2,1,0,59,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,6,0,-4,74.340279,0,0,0,63,2,3,3,3,3,2019,4,1,14,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.869999,23.34,54.959999,53.169998,4,1,1,0,0,13,2,1,456,540059.31,0,0,2247.3582 -5734,7073,12906,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,0,5,7.2826362,7.2382169,0,3,0,0,0,-9,0,-952.41815,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,20,0,15,1,0,-9,0,6.8593884,6.8593884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,3,1,200,-67617.563,0,0,-3.9497786 -5735,7074,12907,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,0,2,8.5241337,8.3879585,0,3,0,0,0,-9,0,-985.0022,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,37,43,15,1,1,-9,0,13.938723,13.938723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.939999,37.09,-9,-9,3,1,1,0,0,10,4,1,2346,65444.258,0,0,2105.1768 -5736,7075,12908,12909,-9,-9,2,1,0,76,1,0,0,0,3,-9,2,1,0,0,4,7.9739723,7.9956932,6.4456091,1,0,-9,51,0,0,-32.739388,0,0,0,76,3,4,3,2,-9,2019,2,1,2,0,26,26,15,1,0,4,0,10.76046,10.76046,0,0,0,0,0,0,0,0,1,1,0,4.2120376,6.8300776,0,0,57.16,56.150002,60.810001,43.459999,7,1,1,0,0,12,4,1,177,614477,0,0,3645.4312 -5736,7075,12909,12908,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,7.3560095,7.491909,1,0,-9,51,0,0,31.270544,0,0,0,76,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5014708,7.603344,0,0,60.810001,43.459999,57.16,56.150002,6,1,1,0,0,12,4,1,177,614477,0,0,3645.4312 -5737,7076,12910,12912,-9,-9,1,1,1,24,1,0,1,0,2,-9,2,1,0,0,4,8.2950716,8.6029787,0,2,0,1,1,-9,-1,-40.224766,0,1,0,25,1,4,1,2,2,2019,1,2,11,0,41,39,15,1,0,1,0,11.917269,11.917269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.330002,51.02,44.02,60.700001,6,1,1,0,0,5,4,0,949.33331,361238.25,0,0,2366.2578 -5737,7076,12911,-9,12912,-9,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-976.52081,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,0,949.33331,361238.25,0,0,2366.2578 -5737,7076,12912,12910,-9,-9,2,1,0,25,1,0,1,0,1,-9,2,1,0,0,4,7.2547154,7.3280168,0,2,0,-9,1,-9,1,-59.771412,-9,1,1,24,2,4,1,-9,-9,2019,1,1,10,0,28,0,15,1,0,1,0,7.4288535,7.4288535,0,0,0,0,0,0,0,0,1,1,0,.63610464,0,0,0,44.02,60.700001,56.330002,51.02,6,1,1,0,0,5,4,0,949.33331,361238.25,0,0,2366.2578 -5738,7077,12913,12914,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,-3,96.999931,0,0,0,80,1,3,3,3,1,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8338764,0,0,0,47.299999,41.700001,33.66,50.84,7,2,3,0,0,8,3,1,599.5,1829594.6,0,0,3491.2336 -5738,7077,12914,12913,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,3,8.0239124,8.0341635,0,1,0,-9,54,0,3,64.183479,0,0,0,77,1,4,3,-9,-9,2019,4,2,11,0,7,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,50.84,47.299999,41.700001,2,2,3,0,0,8,3,1,599.5,1829594.6,0,0,3491.2336 -5739,7078,12915,12916,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,4,9.5536804,9.0073586,0,1,0,-9,4,0,2,87.719604,0,0,0,62,3,3,1,3,2,2019,1,2,5,0,47,0,15,1,0,1,0,25.722729,25.722729,0,0,0,0,0,0,0,0,0,0,0,2.7633975,0,0,0,37.419998,60.490002,49,48,7,1,1,0,0,11,5,1,230.5,780992.81,0,0,4194.8086 -5739,7078,12916,12915,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,3,7.136466,7.3869643,0,1,0,-9,4,0,-2,-186.21956,0,0,0,64,2,4,1,3,3,2019,1,1,11,2,20,20,15,1,0,1,0,11.19152,11.19152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,37.419998,60.490002,5,1,1,0,0,11,5,1,230.5,780992.81,0,0,4194.8086 -5740,7079,12917,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,1,3,0,4.5713902,4.761116,3,0,0,0,-9,0,-1031.0913,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3592381,0,0,54.84,40.759998,-9,-9,6,1,1,0,0,5,2,1,410,8730.5527,0,0,1143.3336 -5741,7080,12918,12919,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,8.2982149,8.605854,1,0,-9,55,0,5,-48.237392,0,0,0,75,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3823783,8.6202288,0,0,58.150002,52.91,61.73,40.509998,7,1,1,0,0,1,4,1,460,1157388.8,0,0,4894.4863 -5741,7080,12919,12918,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,0,3,7.3923082,7.4735446,0,1,0,-9,55,0,-5,-21.848038,0,0,0,80,1,4,3,3,2,2019,4,1,7,0,15,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3595777,0,0,0,61.73,40.509998,58.150002,52.91,7,1,1,0,0,1,4,1,460,1157388.8,0,0,4894.4863 -5742,7081,12920,12921,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,7.8453727,7.5668964,1,0,-9,50,0,-3,-120.62809,0,0,0,73,1,4,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3393469,7.7732615,0,0,56.5,40.09,58.720001,51.290001,7,1,1,0,0,12,4,1,531.5,2848268.8,0,0,4895.7793 -5742,7081,12921,12920,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,8.2284899,8.2481699,1,0,-9,50,0,3,1.8124254,0,0,0,70,1,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9303646,8.3369741,0,0,58.720001,51.290001,56.5,40.09,6,1,1,0,0,12,4,1,531.5,2848268.8,0,0,4895.7793 -5743,7082,12922,12923,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,1,142.25301,0,0,0,68,1,3,3,3,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1243272,0,0,0,40.900002,28.51,57.48,45.43,3,1,1,0,0,9,3,1,986,1015978.4,0,0,1970.0383 -5743,7082,12923,12922,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,7.8030987,7.7406812,1,0,-9,48,0,-1,30.986252,0,0,0,69,2,2,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9578905,7.7674532,0,0,57.48,45.43,40.900002,28.51,7,1,1,0,0,9,3,1,986,1015978.4,0,0,1970.0383 -5744,7083,12924,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,3,7.8783975,8.4585466,0,3,0,0,0,-9,0,-830.91846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,33,33,15,1,1,-9,0,10.811352,10.811352,0,0,0,0,0,0,0,27.5,0,0,0,0,0,24.902332,3,35.93,55.099998,-9,-9,5,2,3,0,0,8,4,1,234,536618.81,0,0,1518.9435 -5745,7084,12925,12927,-9,-9,1,1,0,38,1,2,5,0,2,-9,2,1,0,0,4,7.8733277,7.8805242,0,2,0,-9,17,0,0,-119.16671,0,0,1,38,2,3,1,-9,-9,2019,1,2,9,0,19,19,15,1,0,1,0,14.835368,14.835368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,56.009998,40.66,7,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5745,7084,12926,-9,12925,12927,7,1,1,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.9321,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5745,7084,12927,12925,-9,-9,2,1,1,38,1,2,5,0,2,-9,2,1,0,0,3,8.7480812,8.6548681,0,2,0,-9,17,0,0,84.116257,0,0,0,38,2,4,1,2,-9,2019,1,1,11,0,45,45,15,1,0,1,0,13.40696,13.40696,0,0,0,0,0,0,0,0,1,1,0,7.7265897,0,0,0,56.009998,40.66,57.16,56.150002,2,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5745,7084,12928,-9,12925,12927,3,1,1,10,2,2,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.53864,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5745,7084,12929,-9,12925,12927,4,1,1,7,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.0959,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5745,7084,12930,-9,12925,12927,5,1,1,5,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.5393,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5745,7084,12931,-9,12925,12927,6,1,1,2,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.74884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,4,0,476.28571,316609.88,0,0,3884.0447 -5746,7085,12932,12935,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,8.5794592,8.1771297,0,2,0,-9,8,0,-12,79.714417,0,0,1,47,2,2,1,2,2,2019,1,3,12,0,37,24,15,1,0,1,0,11.466675,11.466675,0,0,0,0,0,0,0,7,1,1,0,0,0,8.4270039,3,54.790001,55.860001,55.200001,49.400002,6,1,1,0,0,12,4,1,1352.75,27136.816,0,0,3611.7957 -5746,7085,12933,-9,12932,12935,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.8596,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,1352.75,27136.816,0,0,3611.7957 -5746,7085,12934,-9,12932,12935,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.93573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,4,1,1352.75,27136.816,0,0,3611.7957 -5746,7085,12935,12932,-9,-9,3,1,1,47,1,0,2,0,2,-9,2,1,0,0,2,8.0760412,7.8623796,0,2,0,-9,8,0,12,4.2694759,0,0,0,35,2,4,1,-9,-9,2019,1,1,9,0,38,40,15,1,0,1,0,8.267951,8.267951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.200001,49.400002,54.790001,55.860001,5,1,1,0,0,12,4,1,1352.75,27136.816,0,0,3611.7957 -5747,7086,12936,-9,-9,-9,2,1,0,47,2,0,0,0,1,-9,2,1,0,0,4,9.4649878,9.2288122,0,1,0,-9,8,0,0,122.40929,0,0,0,-9,-9,-9,-9,2,1,2019,1,1,9,1,48,45,15,1,0,-9,0,33.36969,33.36969,0,0,0,0,0,0,0,0,0,0,0,6.9060359,0,0,0,51.830002,57.200001,47.290001,28.49,6,1,1,0,0,4,5,1,1383,929770.56,0,0,3255.0764 -5748,7087,12937,12938,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.5678945,7.5886431,0,1,0,-9,4,0,-8,-93.339699,0,0,0,64,2,3,1,3,2,2019,1,1,7,0,60,30,15,1,0,1,0,5.1283126,5.1283126,0,0,0,0,0,0,0,0,0,0,0,1.9899073,0,0,0,53.439999,55.060001,51,48,6,1,1,0,0,11,4,1,797,245438.61,0,0,3489 -5748,7087,12938,12937,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,0,3,5.5037565,7.8397765,7.7491827,1,0,-9,4,0,8,-92.794693,0,0,0,56,2,4,1,3,3,2019,1,2,10,1,10,0,15,1,0,1,0,2.7407544,2.7407544,1,0,0,0,0,0,0,0,0,0,0,8.0190277,7.847507,0,0,51,48,53.439999,55.060001,5,1,1,0,0,11,4,1,797,245438.61,0,0,3489 -5749,7088,12939,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,0,4,8.1997509,8.3998528,0,3,0,0,0,-9,0,-1038.1206,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,37,38,15,1,0,-9,0,11.500565,11.500565,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,4,1,60,1014853.5,0,0,1482.5116 -5750,7089,12940,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,0,2,0,7.7696834,7.5533271,3,0,0,0,-9,0,-961.7204,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3871264,7.7764931,1.2059565,3,54.900002,44,-9,-9,6,1,1,0,0,2,3,1,246,630700.88,0,0,907.74194 -5751,7090,12941,12942,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,7.9635038,7.7811279,0,1,0,-9,30,0,2,-92.790771,0,0,0,50,2,5,1,2,3,2019,1,2,10,3,30,28,15,1,0,1,0,11.043864,11.043864,0,0,0,0,0,0,0,0,0,0,0,2.9426801,0,0,0,51.830002,57.200001,57.060001,57.759998,7,1,1,0,0,9,5,1,610.5,1369996.3,0,0,5902.2017 -5751,7090,12942,12941,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,5,9.6676683,9.7666121,0,1,0,-9,30,0,-2,-93.354897,0,0,0,52,1,4,1,2,2,2019,1,1,8,0,52,50,15,1,0,1,0,37.546146,37.546146,0,0,0,0,0,0,0,0,0,0,0,3.3958304,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,9,5,1,610.5,1369996.3,0,0,5902.2017 -5751,7091,12943,-9,12941,12942,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.4582806,8.2961559,0,3,0,0,0,-9,0,-945.3056,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,60,60,15,1,0,-9,1,8.3465223,8.3465223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,9,4,1,590,24294.932,0,0,1932.0768 -5752,7092,12944,12946,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,0,4,7.4429173,7.6521101,0,2,0,-9,10,0,0,44.561184,0,0,1,34,1,5,1,2,2,2019,1,2,19,7,15,23,15,1,1,1,0,15.551096,15.551096,0,0,0,0,0,0,0,0,1,1,0,1.9241929,0,0,0,47.099998,46.02,57.060001,57.759998,3,1,1,0,0,10,5,0,662.25,250318.73,0,0,2901.7356 -5752,7092,12945,-9,12944,12946,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.3696,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,0,662.25,250318.73,0,0,2901.7356 -5752,7092,12946,12944,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,5,9.2214212,9.3529606,0,2,0,-9,10,0,0,-75.059135,0,0,0,34,1,4,1,2,2,2019,1,1,6,0,38,55,15,1,0,1,0,32.691868,32.691868,0,0,0,0,0,0,0,0,1,1,0,8.1023111,0,0,0,57.060001,57.759998,47.099998,46.02,7,1,1,0,0,10,5,0,662.25,250318.73,0,0,2901.7356 -5752,7092,12947,-9,12944,12946,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.65674,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,5,0,662.25,250318.73,0,0,2901.7356 -5753,7093,12948,12949,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,0,3,8.6482306,8.7139559,0,1,0,-9,3,0,5,6.6027646,0,0,0,31,2,4,1,3,3,2019,1,2,12,1,38,37,15,1,0,1,0,14.317476,14.317476,0,0,0,0,0,0,0,0,0,0,0,.70048362,0,0,0,43.650002,58.279999,57.16,56.150002,5,1,1,0,0,5,5,1,224.5,218686.13,0,0,2479.2151 -5753,7093,12949,12948,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,0,4,7.8620844,7.7251625,0,1,0,-9,3,0,-5,-62.419098,0,0,1,36,2,3,1,-9,-9,2019,1,1,11,0,35,38,15,1,0,1,0,7.5888405,7.5888405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,43.650002,58.279999,6,1,1,0,0,5,5,1,224.5,218686.13,0,0,2479.2151 -5754,7094,12950,12951,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,7.4751854,9.4681749,9.1143064,1,0,-9,21,0,-7,44.189888,0,0,0,72,1,4,3,-9,-9,2019,4,1,6,0,20,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.8607502,12.201061,3,64.230003,44.689999,51.830002,57.200001,7,1,1,0,0,4,5,1,866,2487134,0,0,6499.8223 -5754,7094,12951,12950,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,6.6264558,6.4451356,1,0,-9,21,0,7,-52.353905,0,0,0,65,1,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.73699,6.7447615,0,0,51.830002,57.200001,64.230003,44.689999,6,1,1,0,0,4,5,1,866,2487134,0,0,6499.8223 -5755,7095,12952,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,8.0124178,7.8308263,0,3,0,0,0,-9,0,-986.6687,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,0,15,1,0,-9,0,10.147011,10.147011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,5,3,4,0,0,8,4,0,417,357017.38,0,0,898.00946 -5755,7096,12953,-9,12952,-9,2,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.3663378,8.3091135,0,3,0,0,0,-9,0,-1019.9515,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,40,0,15,1,0,-9,1,15.436817,15.436817,0,0,0,0,0,0,0,0,0,0,0,2.8697753,0,0,0,50,57,-9,-9,5,3,4,0,0,8,5,0,793,-85316.688,0,0,1774.5004 -5755,7097,12954,-9,12952,-9,3,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,7.6848769,7.7467527,0,3,0,0,0,-9,0,-885.7074,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,41,36,15,1,0,-9,1,5.3160057,5.3160057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,46.919998,-9,-9,7,3,4,0,0,8,3,0,425,-38157.391,0,0,729.44324 -5755,7098,12955,-9,12952,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.6503854,7.5649881,0,3,0,0,0,-9,0,-965.97107,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,40,0,15,1,0,-9,1,6.0569153,6.0569153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,8,3,0,1205,157455.23,0,0,1320.5767 -5756,7099,12956,12958,-9,12961,2,1,1,48,1,0,3,0,1,-9,2,1,0,0,4,8.8850527,8.5098867,0,2,0,-9,18,0,3,27.161091,0,0,0,45,1,2,1,3,2,2019,1,1,18,7,40,0,15,1,1,1,0,20.508211,20.508211,0,0,0,0,0,0,0,0,1,1,0,7.0339603,0,0,0,52.700001,32.169998,52.240002,50.75,6,2,3,0,1,9,5,1,964,249970.38,0,0,5654.8408 -5756,7099,12957,-9,12958,12956,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.1378,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,9,5,1,964,249970.38,0,0,5654.8408 -5756,7099,12958,12956,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,0,2,9.0236921,8.6739931,0,2,0,-9,18,0,-3,-121.53886,0,0,0,48,1,4,1,3,3,2019,1,2,9,0,38,38,15,1,0,1,0,19.071634,19.071634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,52.700001,32.169998,6,2,3,0,0,9,5,1,964,249970.38,0,0,5654.8408 -5756,7099,12959,-9,12958,12956,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-831.70813,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,5,1,964,249970.38,0,0,5654.8408 -5756,7099,12960,-9,12958,12956,3,1,1,16,2,0,3,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1099.2247,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,2,3,0,0,9,5,1,964,249970.38,0,0,5654.8408 -5756,7100,12961,-9,-9,-9,6,1,1,85,2,0,3,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-860.72003,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2371149,0,0,0,55,45,-9,-9,6,4,6,0,0,9,1,1,1701,15787.824,0,0,1487.5667 -5757,7101,12962,12963,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,5.1095762,5.193934,1,0,-9,10,0,-3,78.504242,0,0,0,70,2,2,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3088174,5.0149932,0,0,63.830002,43.619999,58.389999,39.68,7,1,1,0,0,8,2,1,470,1020462.1,0,0,1693.7915 -5757,7101,12963,12962,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,6.7843518,6.7216945,1,0,-9,10,0,3,86.084496,0,0,0,67,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1776414,6.9627471,0,0,58.389999,39.68,63.830002,43.619999,1,1,1,0,0,8,2,1,470,1020462.1,0,0,1693.7915 -5758,7102,12964,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,3,0,6.9621649,7.1521335,3,0,0,0,-9,0,-1015.0157,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1424801,6.9980783,0,0,57.060001,42.509998,-9,-9,6,3,4,0,0,7,2,1,424,826499.19,0,0,634.3443 -5759,7103,12965,12966,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,10.3069,10.19094,0,1,0,-9,30,0,1,30.059696,0,0,0,55,1,3,1,2,2,2019,1,1,12,0,70,50,15,1,0,1,0,44.749039,44.749039,0,0,0,0,0,0,0,0,0,0,0,6.9650998,0,0,0,44.470001,57.73,53.080002,52.639999,6,1,1,0,0,2,5,1,231,2122004.3,0,0,14025.863 -5759,7103,12966,12965,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,3,9.2300386,9.5323849,0,1,0,-9,31,0,-1,-115.90041,0,0,0,56,1,4,1,2,3,2019,1,2,9,0,36,38,15,1,0,1,0,37.889431,37.889431,0,0,0,0,0,0,0,0,0,0,0,6.3284354,0,0,0,53.080002,52.639999,44.470001,57.73,7,1,1,0,0,2,5,1,231,2122004.3,0,0,14025.863 -5759,7104,12967,-9,12966,12965,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.0322208,7.8458991,0,3,0,0,0,-9,0,-912.74261,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,37,0,15,1,0,-9,1,8.7302942,8.7302942,0,0,0,0,0,0,0,0,0,0,0,1.5735363,0,0,0,44.209999,60.790001,-9,-9,1,1,1,0,0,2,4,1,1490,43453.582,0,0,578.48065 -5759,7105,12968,-9,12966,12965,4,1,0,23,2,0,0,0,2,-9,1,1,0,0,4,7.839335,7.7914538,0,3,0,0,0,-9,0,-982.58209,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,36,0,15,1,0,-9,1,7.5384021,7.5384021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,2,3,1,834,-175965.19,0,0,1595.3431 -5760,7106,12969,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,2,1,0,0,3,8.553194,8.5239935,0,3,0,0,0,-9,0,-1141.8518,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,16,5,70,70,15,1,1,-9,0,10.459637,10.459637,0,0,0,0,0,0,0,14.5,1,1,0,2.8181374,0,12.684446,3,34.439999,43.57,-9,-9,4,1,1,0,0,11,5,0,104,188040.09,0,0,2328.8887 -5760,7107,12970,-9,12969,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,7.1665854,7.4389868,0,3,0,0,0,-9,0,-941.99371,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,28,26,15,1,0,-9,1,6.7282286,6.7282286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.099998,57.509998,-9,-9,6,1,1,0,0,11,3,0,384,-143046.27,0,0,1026.1587 -5760,7108,12971,-9,12969,-9,3,1,1,21,2,0,0,0,2,-9,1,1,0,0,5,8.025032,7.6081982,0,3,0,0,0,-9,0,-836.85223,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,40,50,15,1,0,-9,1,7.0342922,7.0342922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.57,60.200001,-9,-9,6,1,1,0,0,11,3,0,844,-244130.56,0,0,1025.3583 -5761,7109,12972,12974,-9,-9,1,1,0,35,1,1,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,3,0,2,8.5169239,0,0,1,33,2,3,1,3,3,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.92515,3,29.32,59.389999,61.279999,48.880001,6,1,1,0,0,4,3,0,831,77116.492,0,0,1535.0225 -5761,7109,12973,-9,12972,12974,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.9014,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,831,77116.492,0,0,1535.0225 -5761,7109,12974,12972,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,0,3,8.5725708,8.3210363,0,2,0,-9,3,0,-2,-55.631657,0,0,0,35,3,3,3,-9,-9,2019,2,1,8,3,40,50,15,1,0,3,0,12.898617,12.898617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,48.880001,29.32,59.389999,6,1,1,0,0,4,3,0,831,77116.492,0,0,1535.0225 -5762,7110,12975,-9,12976,12977,2,1,1,22,2,0,1,0,2,-9,2,1,0,0,4,7.9850616,7.6674185,0,3,0,0,0,-9,0,-953.74609,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,35,30,15,1,0,-9,1,6.9238091,6.9238091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.380001,58.290001,-9,-9,4,4,2,0,0,8,3,1,752,215116.72,0,0,284.93283 -5762,7111,12976,12977,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,8.3808298,8.466773,0,2,0,-9,6,0,-4,4.7937512,0,0,0,51,1,4,1,2,2,2019,1,3,10,1,48,36,15,1,0,1,0,9.8467884,9.8467884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,54.200001,57.490002,6,4,2,0,0,8,5,1,776.33331,1000384.2,0,0,4233.7568 -5762,7111,12977,12976,-9,-9,3,1,1,51,1,0,1,0,1,-9,2,1,0,0,4,8.8016863,9.2028332,0,2,0,-9,6,0,4,194.44275,0,0,0,47,2,4,1,-9,-9,2019,1,1,9,0,36,37,15,1,0,1,0,34.870594,34.870594,0,0,0,0,0,0,0,0,1,1,0,3.6231952,0,0,0,54.200001,57.490002,51,54,6,3,4,0,0,8,5,1,776.33331,1000384.2,0,0,4233.7568 -5762,7111,12978,-9,12976,12977,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.1499,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,5,1,776.33331,1000384.2,0,0,4233.7568 -5763,7112,12979,12980,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-2,-16.303122,0,0,0,66,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.1961322,0,120.44111,3,49.75,35.16,47.200001,54.830002,6,1,1,0,0,11,4,1,765.5,1837540,0,0,3977.374 -5763,7112,12980,12979,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,5,0,8.6866302,8.575058,1,0,-9,9,0,2,-87.062706,0,0,0,64,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,8.3754749,30.454762,3,47.200001,54.830002,49.75,35.16,7,1,1,0,0,11,4,1,765.5,1837540,0,0,3977.374 -5763,7113,12981,-9,12979,12980,3,1,0,41,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1062.1981,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.59234279,0,0,0,28.99,50.389999,-9,-9,5,1,1,0,0,11,1,1,200,114571.84,0,0,-824.54254 -5764,7114,12982,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,3,8.818099,9.1485758,0,3,0,0,0,-9,0,-916.63147,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,20.077646,20.077646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,12,5,1,228,362449.16,0,0,2899.6086 -5765,7115,12983,-9,12986,12985,6,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.7521,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,2434.25,-2481.9165,0,0,2371.6084 -5765,7115,12984,-9,12986,12985,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.4734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,2,0,2434.25,-2481.9165,0,0,2371.6084 -5765,7115,12985,12986,-9,-9,2,1,1,35,1,0,3,0,2,-9,2,1,0,0,2,7.2359953,7.5115299,0,2,0,-9,10,0,-7,7.7262249,0,0,0,42,2,3,3,-9,-9,2019,2,1,7,0,40,48,15,1,0,3,0,5.2163963,5.2163963,0,0,0,0,0,0,0,86,1,1,0,0,0,122.03314,3,57.57,49.689999,58.32,50.220001,5,1,1,0,0,7,2,0,2434.25,-2481.9165,0,0,2371.6084 -5765,7115,12986,12985,-9,-9,1,1,0,42,1,0,3,0,2,-9,6,3,0,1,3,4.7358456,4.7870336,0,2,0,-9,10,0,7,-8.3736267,0,0,1,35,2,2,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.29337,3,58.32,50.220001,57.57,49.689999,5,1,1,0,0,7,2,0,2434.25,-2481.9165,0,0,2371.6084 -5766,7116,12987,12988,-9,-9,1,1,0,24,1,0,0,0,1,-9,8,3,1,1,4,0,0,0,1,0,-9,6,0,0,0,0,1,1,33,3,2,3,-9,-9,2019,4,2,23,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.900002,28.98,25.1,55.18,3,1,1,0,0,11,1,0,1729.5,54142.781,0,0,2307.3589 -5766,7116,12988,12987,-9,-9,2,1,1,33,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,6,0,9,0,0,0,0,24,1,4,3,-9,-9,2019,4,1,20,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.1,55.18,35.900002,28.98,2,1,1,1,0,11,1,0,1729.5,54142.781,0,0,2307.3589 -5767,7117,12989,-9,12990,12991,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1138.53,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,0,186,-14274.503,0,0,2960.2515 -5767,7117,12990,12991,-9,-9,2,1,0,27,1,0,1,0,2,-9,2,1,0,0,4,8.2301731,8.312439,0,2,0,-9,2,0,-10,-70.425499,0,1,1,37,2,3,1,3,2,2019,1,1,10,0,43,43,15,1,0,1,0,10.035806,10.035806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,53.849998,52,54.509998,6,1,1,0,0,12,4,0,186,-14274.503,0,0,2960.2515 -5767,7117,12991,12990,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,0,3,7.8115005,7.7990117,0,2,0,-9,2,0,10,-94.922798,0,0,0,27,2,4,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,8.1523495,8.1523495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,56.18,53.849998,7,1,1,0,0,12,4,0,186,-14274.503,0,0,2960.2515 -5768,7118,12992,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1095.4137,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.630001,52.48,-9,-9,6,1,1,0,0,11,1,0,1733,-156753.95,0,0,1498.8428 -5769,7119,12993,12994,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,7,0,-5,0,0,0,0,58,1,5,1,3,3,2019,1,1,10,2,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.48,28.629999,62.389999,56.709999,6,1,1,0,0,12,1,1,1082,-28335.053,0,0,103.73321 -5769,7119,12994,12993,-9,-9,1,1,1,58,1,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,7,0,5,0,0,0,0,53,2,2,1,2,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4357297,0,0,0,62.389999,56.709999,58.48,28.629999,6,1,1,0,0,12,1,1,1082,-28335.053,0,0,103.73321 -5770,7120,12995,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1048.7896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.52,23.860001,-9,-9,3,1,1,0,1,1,1,1,261,-93352.25,0,0,1011.3425 -5771,7121,12996,12997,-9,-9,1,1,0,78,1,0,2,0,3,-9,4,3,0,1,3,0,0,0,2,0,-9,57,0,1,0,0,0,0,77,1,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.48187,1,47.900002,43.959999,54,46,5,3,4,0,0,8,1,1,507,996841.13,0,0,1344.1097 -5771,7121,12997,12996,-9,-9,2,1,1,77,1,0,2,0,1,-9,8,3,1,1,3,0,0,0,2,0,-9,57,0,-1,0,0,0,0,78,3,3,3,2,3,2019,4,1,9,1,0,0,15,3,0,4,0,0,0,1,0,9.208478,16.259264,0,15.978231,0,0,1,1,0,0,0,0,1,54,46,47.900002,43.959999,6,2,3,0,0,8,1,1,507,996841.13,0,0,1344.1097 -5771,7122,12998,-9,13000,-9,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1010.0616,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.029999,61.860001,-9,-9,4,3,4,0,0,8,5,1,539,340690.69,0,0,4094.3257 -5771,7122,12999,-9,13000,-9,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1081.8929,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,3,4,0,0,8,5,1,539,340690.69,0,0,4094.3257 -5771,7122,13000,-9,12996,12997,3,1,0,52,2,0,2,0,1,-9,2,1,0,0,4,9.252286,9.2751026,0,3,0,0,0,-9,0,-898.27179,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,37,15,1,0,-9,1,28.217644,28.217644,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.56275,3,46.439999,59.619999,-9,-9,5,4,2,0,0,8,5,1,539,340690.69,0,0,4094.3257 -5772,7123,13001,-9,-9,-9,1,1,0,25,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-929.63342,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.110001,51.959999,-9,-9,3,1,1,0,0,5,1,0,240,0,0,0,252.9684 -5773,7124,13002,13003,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,0,3,4.6130881,4.2697625,0,1,0,-9,5,0,-3,-66.300056,0,0,1,41,1,4,1,-9,-9,2019,1,1,21,7,3,2,15,1,1,1,0,2.7911148,2.7911148,0,0,0,0,0,0,0,0,0,0,0,7.4096317,0,0,0,33.66,56.040001,54.790001,55.860001,5,1,1,0,0,6,5,1,487.5,862790,0,0,2949.7878 -5773,7124,13003,13002,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,0,4,8.9399071,9.128912,0,1,0,-9,5,0,3,10.132852,0,0,0,38,1,3,1,2,2,2019,1,2,9,0,35,37,15,1,0,1,0,28.247477,28.247477,0,0,0,0,0,0,0,0,0,0,0,6.6262207,0,0,0,54.790001,55.860001,33.66,56.040001,6,1,1,0,0,6,5,1,487.5,862790,0,0,2949.7878 -5774,7125,13004,13007,-9,-9,4,1,0,31,1,1,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-1,-28.892122,0,0,1,32,2,3,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,47,52,5,2,3,0,0,1,3,1,376.60001,289326.5,0,0,2142.2092 -5774,7125,13005,-9,13004,13007,7,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.9457,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,1,3,1,376.60001,289326.5,0,0,2142.2092 -5774,7125,13006,-9,13004,13007,6,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.3868,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,1,3,1,376.60001,289326.5,0,0,2142.2092 -5774,7125,13007,13004,-9,-9,1,1,1,32,1,1,3,0,2,-9,2,1,0,0,3,8.3205624,8.497879,0,2,0,-9,13,0,1,-128.6357,0,0,0,31,3,4,3,-9,-9,2019,2,4,12,1,40,44,15,1,0,3,0,15.846158,15.846158,0,0,0,0,0,0,0,0,1,1,0,4.2797246,0,0,0,47,52,48,57,5,2,3,0,0,1,3,1,376.60001,289326.5,0,0,2142.2092 -5774,7125,13008,-9,13004,13007,5,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.18469,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,1,3,1,376.60001,289326.5,0,0,2142.2092 -5775,7126,13009,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,5,7.6550412,7.9722729,0,3,0,0,0,-9,0,-930.3089,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,40,15,1,0,-9,0,7.1917496,7.1917496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,-9,-9,4,1,1,0,0,2,3,1,178,559877.25,0,0,1164.0651 -5776,7127,13010,13011,-9,-9,2,1,1,51,1,0,0,0,2,-9,1,1,0,0,3,9.3188553,9.5445776,0,1,0,-9,10,0,-5,-7.4721766,0,0,0,56,2,3,1,2,2,2019,1,1,7,0,70,0,15,1,0,1,0,19.285654,19.285654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,49.580002,55.59,6,1,1,0,0,10,5,1,857.5,544909.88,0,0,5691.874 -5776,7127,13011,13010,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,6.6002688,7.0510702,0,1,0,-9,10,0,5,126.16912,0,0,0,51,2,3,1,2,2,2019,1,2,6,0,12,0,15,1,0,1,0,7.3979578,7.3979578,0,0,0,0,0,0,0,0,0,0,0,2.8122051,0,0,0,49.580002,55.59,57.330002,53.459999,6,1,1,0,0,10,5,1,857.5,544909.88,0,0,5691.874 -5777,7128,13012,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,3,8.498992,8.541275,0,3,0,0,0,-9,0,-1039.1658,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,40,35,15,1,0,-9,0,17.06222,17.06222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,4,2,3,0,0,7,5,1,766,1424246,0,0,1731.1427 -5778,7129,13013,-9,13014,-9,4,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1079.8052,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,7,1,0,313,115365.2,0,0,1531.1699 -5778,7129,13014,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1005.2968,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.6397038,3,27.51,36.349998,-9,-9,4,1,1,0,0,7,1,0,313,115365.2,0,0,1531.1699 -5778,7130,13015,-9,13014,-9,2,1,1,23,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-906.7243,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,7,1,0,369,-20996.346,0,0,1705.9508 -5778,7131,13016,-9,13014,-9,3,1,0,24,2,0,1,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-933.85699,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,1,0,7,1,0,1642,40038.699,0,0,433.03049 -5779,7132,13017,13018,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,4,-16.323189,0,0,0,65,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,50,47,5,1,1,0,0,7,2,1,1293,596208.94,0,0,2041.2581 -5779,7132,13018,13017,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,6.2664757,6.1114731,1,0,-9,8,0,-4,39.481712,0,0,0,69,2,3,3,3,-9,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6230518,5.9655213,0,0,50,47,52,47,7,1,1,0,0,7,2,1,1293,596208.94,0,0,2041.2581 -5780,7133,13019,-9,13022,13021,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.77838,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,1677.75,283222.31,0,0,4938.3765 -5780,7133,13020,-9,13022,13021,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.55835,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,5,1,1677.75,283222.31,0,0,4938.3765 -5780,7133,13021,13022,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,8.9538012,9.1828184,0,2,0,-9,7,0,6,-135.45721,0,0,0,36,2,4,1,2,2,2019,1,1,7,0,42,35,15,1,0,1,0,20.394043,20.394043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.189999,47.900002,48.869999,58.549999,6,1,1,0,0,1,5,1,1677.75,283222.31,0,0,4938.3765 -5780,7133,13022,13021,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,8.4425392,8.4673958,0,2,0,-9,17,0,-6,65.513779,0,0,1,42,2,3,1,2,3,2019,1,2,11,0,30,25,15,1,0,1,0,17.355537,17.355537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,45.189999,47.900002,2,1,1,0,0,1,5,1,1677.75,283222.31,0,0,4938.3765 -5781,7134,13023,13024,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,0,1,.89628482,1.0021964,0,1,0,-9,7,0,-8,11.508522,0,0,0,63,2,2,3,3,3,2019,2,1,20,6,70,0,15,1,1,3,0,.003021955,.003021955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.02,32.610001,17.5,62.700001,4,1,1,0,0,11,2,1,355,330414.59,0,0,1559.408 -5781,7134,13024,13023,-9,-9,1,1,0,63,1,0,0,0,2,-9,3,3,0,0,2,0,7.4511089,7.4039564,1,0,-9,7,0,8,68.58857,0,0,0,55,2,1,1,3,-9,2019,3,2,35,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1363168,0,0,17.5,62.700001,36.02,32.610001,1,1,1,1,1,11,2,1,355,330414.59,0,0,1559.408 -5782,7135,13025,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1085.028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.2201378,0,0,0,25.540001,36.07,-9,-9,2,1,1,0,0,2,1,1,971,-63574.664,0,0,2195.8804 -5783,7136,13026,13027,-9,-9,2,1,1,56,1,0,0,0,2,-9,97,3,0,0,2,0,0,0,1,0,-9,7,0,4,-103.68114,0,0,0,52,2,3,1,3,3,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5062823,0,0,0,35.77,43.200001,55.369999,46.029999,3,1,1,0,0,6,3,1,993,695759.31,0,0,1451.1294 -5783,7136,13027,13026,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.9141798,8.0661879,0,1,0,-9,7,0,-4,-54.425022,0,0,0,56,2,2,3,1,3,2019,2,2,10,1,41,40,15,1,0,3,0,7.4404836,7.4404836,0,0,0,0,0,0,0,7,0,0,0,3.6164973,0,5.6423216,3,55.369999,46.029999,35.77,43.200001,4,1,1,0,0,6,3,1,993,695759.31,0,0,1451.1294 -5784,7137,13028,13029,-9,-9,2,1,0,49,1,0,0,0,2,-9,1,1,0,0,4,8.8041039,8.8763227,0,1,0,-9,30,0,-3,-20.039839,0,0,0,52,3,4,1,3,2,2019,1,1,8,1,50,40,15,1,0,1,0,14.721378,14.721378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.73,58.779999,46.75,56.990002,5,1,1,0,0,13,5,1,1627.5,1155530.8,0,0,3090.0176 -5784,7137,13029,13028,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,0,4,8.1016846,7.9963746,0,1,0,-9,30,0,3,61.687389,0,0,0,49,2,4,1,2,2,2019,1,2,12,0,50,45,15,1,0,1,0,7.2597685,7.2597685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.990002,40.73,58.779999,7,1,1,0,0,13,5,1,1627.5,1155530.8,0,0,3090.0176 -5784,7138,13030,-9,13028,13029,3,1,1,24,3,0,0,0,2,-9,2,1,0,0,4,8.0820332,8.3218117,0,3,0,0,0,-9,0,-1030.7982,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,42,15,1,0,-9,1,9.3118467,9.3118467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,48.060001,-9,-9,6,1,1,0,0,13,4,1,314,0,0,0,1008.7732 -5784,7139,13031,-9,13028,13029,4,1,1,20,2,0,0,0,3,-9,2,1,0,0,4,7.927124,7.724792,0,3,0,0,0,-9,0,-1002.1097,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,40,54,15,1,0,-9,1,9.2890787,9.2890787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,4,1,1649,270623.31,0,0,1663.6986 -5785,7140,13032,-9,-9,-9,1,1,1,35,3,0,0,0,2,-9,2,1,0,0,2,8.515913,8.0289068,0,3,0,0,0,-9,0,-997.7124,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,39,39,15,1,0,-9,0,12.416075,12.416075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.310001,28.610001,-9,-9,2,1,1,0,0,7,4,0,247,20948.824,0,0,1049.986 -5786,7141,13033,13034,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,4.9761586,5.2629628,1,0,-9,48,0,-2,-19.436636,0,0,0,68,1,3,3,2,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3550768,5.1599197,0,0,57.09,46.700001,60.299999,46.580002,6,1,1,0,0,4,2,1,569.5,626982.75,0,0,2183.501 -5786,7141,13034,13033,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,4.8487177,4.9656949,1,0,-9,8,0,2,8.6656151,0,0,0,66,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6768284,5.0993757,0,3,60.299999,46.580002,57.09,46.700001,7,1,1,0,0,4,2,1,569.5,626982.75,0,0,2183.501 -5787,7142,13035,13036,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,8.2073307,8.5569658,0,1,0,-9,22,0,0,45.683895,-9,0,0,50,2,4,1,3,3,2019,1,2,12,0,60,0,15,1,0,1,0,11.66333,11.66333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.130001,38.110001,40.77,55.509998,3,1,1,0,0,13,5,1,1193.5,1021592.4,0,0,4019.7441 -5787,7142,13036,13035,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,7.7398281,7.8043928,0,1,0,-9,22,0,0,-58.859165,0,0,0,50,2,2,1,2,2,2019,1,1,10,1,37,34,15,1,0,1,0,7.8471293,7.8471293,0,0,0,0,0,0,0,2,1,1,0,0,0,7.3605638,3,40.77,55.509998,44.130001,38.110001,6,1,1,0,0,13,5,1,1193.5,1021592.4,0,0,4019.7441 -5787,7143,13037,-9,13036,13035,3,1,1,18,2,0,0,0,2,1,2,1,0,0,4,7.363719,7.6575546,0,3,0,0,0,-9,0,-785.22748,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,42,0,15,1,0,-9,1,7.173552,7.173552,0,0,0,0,0,0,0,0,1,1,0,4.8197474,0,0,0,43.709999,59.709999,-9,-9,5,1,1,0,0,13,3,1,222,25480.189,0,0,1872.9218 -5787,7144,13038,-9,13036,13035,4,1,1,18,2,0,0,0,2,-9,2,1,0,0,4,7.1036997,6.8925653,0,3,0,0,0,-9,0,-966.98358,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,0,15,1,0,-9,1,3.9296038,3.9296038,0,0,0,0,0,0,0,0,1,1,0,1.1297351,0,0,0,43.84,57.099998,-9,-9,6,1,1,0,0,13,3,1,828,-46144.102,0,0,243.0305 -5788,7145,13039,13040,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,8.4267311,9.056386,7.8554478,1,0,-9,10,0,4,14.753375,0,0,0,62,2,4,3,3,3,2019,4,1,6,0,15,20,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3512144,7.8772845,0,0,42,52.080002,42.849998,60.330002,6,1,1,0,0,11,5,1,692,3394226,0,0,4835.1563 -5788,7145,13040,13039,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.1816745,7.3915181,1,0,-9,10,0,-4,63.195293,0,0,0,66,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3114557,7.3727837,0,0,42.849998,60.330002,42,52.080002,5,1,1,0,0,11,5,1,692,3394226,0,0,4835.1563 -5789,7146,13041,-9,13043,-9,7,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1023.1506,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,1,1,0,0,13,2,0,831.25,1062619.1,0,0,1969.8323 -5789,7146,13042,-9,13043,13044,6,1,1,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1001.4535,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.700001,56.220001,-9,-9,6,1,1,0,1,13,2,0,831.25,1062619.1,0,0,1969.8323 -5789,7146,13043,13044,-9,-9,2,1,0,43,1,0,2,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,10,0,-19,140.11325,0,0,1,62,2,2,3,-9,-9,2019,4,1,30,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,19.182745,3,30.91,33.330002,62.919998,18.809999,1,1,1,0,0,13,2,0,831.25,1062619.1,0,0,1969.8323 -5789,7146,13044,13043,-9,-9,1,1,1,62,1,0,2,0,2,-9,8,3,1,1,2,0,7.5788784,7.3342261,2,0,-9,10,0,19,45.091827,0,0,0,43,2,1,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.7322698,0,0,62.919998,18.809999,30.91,33.330002,6,1,1,0,0,13,2,0,831.25,1062619.1,0,0,1969.8323 -5789,7147,13045,-9,13043,-9,3,1,1,24,2,0,2,0,2,-9,2,1,0,0,4,7.8836803,8.2584162,0,3,0,0,0,-9,0,-943.09949,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,37,40,15,1,0,-9,1,7.9805689,7.9805689,0,0,0,0,0,0,0,0,1,0,1,.43726543,0,0,0,48,59,-9,-9,5,1,1,0,0,13,4,0,138,-27611.805,0,0,1062.8149 -5789,7148,13046,-9,13043,-9,4,1,1,22,2,0,2,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-936.43188,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.549999,58.169998,-9,-9,5,1,1,1,1,13,1,0,1013,154358.22,0,0,-195.29555 -5789,7149,13047,-9,13043,13044,5,1,1,20,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1094.1378,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.369999,54.799999,-9,-9,5,1,1,1,1,13,1,0,507,-71175.039,0,0,1192.3243 -5790,7150,13048,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,2,0,6.8563585,6.4937315,3,0,0,0,-9,0,-897.40271,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,6.1025434,0,1,1,0,4.8678646,6.3819504,0,0,49.369999,24.09,-9,-9,4,1,1,0,0,7,2,1,967,155558.64,0,0,2960.9207 -5791,7151,13049,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,-9,0,-9,0,-921.22211,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36325505,0,0,0,69.019997,37,-9,-9,5,4,2,0,0,7,1,1,648,-116050.69,0,0,898.83655 -5792,7152,13050,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,3,0,6.0517578,6.6202097,3,0,0,0,-9,0,-1094.3289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4706569,5.9768581,5.1712751,3,57.240002,41.16,-9,-9,6,1,1,0,0,6,2,0,457,1019.6443,0,0,582.82813 -5793,7153,13051,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-995.02386,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.91,60.869999,-9,-9,4,1,1,0,0,11,1,1,713,45085.996,0,0,1262.391 -5793,7154,13052,-9,13053,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-838.30487,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6911356,0,0,0,56.34,46.169998,-9,-9,6,1,1,0,0,11,4,1,404,225916.94,0,0,1070.9766 -5793,7154,13053,-9,-9,-9,2,1,0,44,2,0,1,0,1,-9,2,1,0,0,3,8.5263023,8.5461798,0,4,0,0,0,-9,0,-1055.1538,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,15,5,30,33,15,1,1,-9,0,23.420744,23.420744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,54.259998,-9,-9,5,1,1,0,1,11,4,1,404,225916.94,0,0,1070.9766 -5794,7155,13054,13055,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,-7,0,0,0,0,81,3,3,3,3,3,2019,4,2,14,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,34.259998,54,45,6,1,1,0,0,9,1,1,911.5,347919.59,0,0,717.3233 -5794,7155,13055,13054,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,7,0,0,0,0,74,3,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6913109,0,0,0,54,45,47.77,34.259998,6,1,1,0,0,9,1,1,911.5,347919.59,0,0,717.3233 -5795,7156,13056,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,3,0,5.7013974,5.6668177,3,0,0,0,-9,0,-1146.2157,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0603037,0,0,0,34.23,22.110001,-9,-9,1,1,1,0,1,13,2,0,665,62199.336,0,0,122.31693 -5796,7157,13057,13058,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,0,3,8.548049,8.3003616,0,2,0,-9,23,0,12,-8.4699202,0,0,0,43,2,4,3,-9,-9,2019,2,2,12,0,40,47,15,1,0,3,0,14.221323,14.221323,0,0,0,0,0,0,0,2,1,1,0,1.0101993,0,0,3,47.900002,46.66,51.650002,38.470001,5,1,1,0,0,5,4,1,239.5,1515089.3,0,0,3370.6353 -5796,7157,13058,13057,-9,-9,2,1,0,43,1,0,1,0,2,-9,8,3,1,1,4,8.4668617,8.1775255,0,2,0,-9,23,0,-12,7.510272,0,0,1,55,3,3,1,2,-9,2019,3,1,17,6,44,42,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6058749,0,2.701551,3,51.650002,38.470001,47.900002,46.66,5,1,1,0,0,5,4,1,239.5,1515089.3,0,0,3370.6353 -5796,7158,13059,-9,13058,13057,3,1,0,18,2,0,1,1,2,0,7,2,0,0,2,6.1459441,6.1840453,0,3,0,0,0,-9,0,-933.09387,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.9821882,3,54.610001,51.040001,-9,-9,6,1,1,0,0,5,4,1,310,-13169.454,0,0,2066.7251 -5797,7159,13060,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-966.54523,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,34,12,0,26,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.892838,3,24.33,31.08,-9,-9,3,1,1,0,1,11,1,1,272,0,0,0,509.24664 -5797,7160,13061,-9,13060,-9,2,1,0,24,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1066.6965,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6966387,0,0,0,46,58,-9,-9,5,1,1,0,0,11,1,1,432,95029.633,0,0,1107.5778 -5798,7161,13062,-9,13063,13064,3,1,1,16,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1051.8571,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,3,4,0,0,8,5,1,605,235587.72,0,0,5441.1069 -5798,7161,13063,13064,-9,-9,2,1,0,54,1,0,1,0,1,-9,2,1,0,0,4,8.359313,8.3295012,0,2,0,-9,26,0,6,-16.15551,0,0,0,48,2,4,1,2,1,2019,1,1,10,1,20,22,15,1,0,1,0,21.440817,21.440817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,55.34,54.259998,6,4,2,0,0,8,5,1,605,235587.72,0,0,5441.1069 -5798,7161,13064,13063,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.6930542,8.9059925,0,2,0,-9,25,0,-6,22.363024,0,0,0,54,1,4,1,2,2,2019,1,2,8,2,36,50,15,1,0,1,0,20.596659,20.596659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,52,53,5,3,4,0,0,8,5,1,605,235587.72,0,0,5441.1069 -5798,7162,13065,-9,13063,13064,4,1,0,27,2,0,1,0,1,-9,2,1,0,0,2,8.0488415,8.1391268,0,3,0,0,0,-9,0,-952.86975,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,1,42,44,15,1,0,-9,1,7.0530572,7.0530572,0,0,0,0,0,0,0,0,1,1,0,1.2515597,0,0,0,33.540001,49.700001,-9,-9,3,3,4,0,0,8,3,1,335,0,0,0,520.72083 -5799,7163,13066,13067,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.371943,7.3063717,1,0,-9,53,0,3,114.8512,0,0,0,72,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.6435776,7.3391957,0,0,58.610001,28.940001,32.400002,36.810001,6,1,1,0,0,5,2,1,396.5,643993.81,0,0,1166.1798 -5799,7163,13067,13066,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,5.7217555,5.7077599,1,0,-9,53,0,-3,11.294351,0,0,0,75,3,4,3,-9,2,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7955184,5.7087312,0,0,32.400002,36.810001,58.610001,28.940001,4,1,1,0,0,5,2,1,396.5,643993.81,0,0,1166.1798 -5800,7164,13068,-9,-9,-9,1,1,0,40,3,0,6,0,3,-9,6,3,0,0,1,0,0,0,4,0,-9,0,1,0,-916.15619,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.59,33.080002,-9,-9,4,2,3,0,1,4,1,0,619.5,-43450.555,0,0,2061.8013 -5800,7164,13069,-9,13068,-9,8,1,0,8,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-970.17957,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,1,0,619.5,-43450.555,0,0,2061.8013 -5801,7165,13070,13071,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,4,8.6342802,8.2364197,0,2,0,-9,9,0,-6,-9.7542477,0,0,0,53,2,4,1,2,2,2019,1,1,6,0,35,35,15,1,0,1,0,14.164752,14.164752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.220001,55.200001,55.360001,54.240002,6,1,1,0,0,11,5,1,815,226980.86,0,0,4338.5693 -5801,7165,13071,13070,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.7021818,8.6400471,0,2,0,-9,9,0,6,110.36887,0,0,0,47,1,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,14.932675,14.932675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,54.240002,53.220001,55.200001,6,1,1,0,0,11,5,1,815,226980.86,0,0,4338.5693 -5801,7165,13072,-9,13070,13071,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.42053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,11,5,1,815,226980.86,0,0,4338.5693 -5802,7166,13073,-9,-9,13074,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1013.6506,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,2,3,0,622.5,206034.16,0,0,802.46375 -5802,7166,13074,-9,-9,-9,1,1,1,49,3,0,1,0,2,-9,2,1,0,0,3,7.4166169,7.4288454,0,4,0,0,0,-9,0,-981.49835,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,39,36,15,1,0,-9,0,4.749362,4.749362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,4,1,1,0,0,2,3,0,622.5,206034.16,0,0,802.46375 -5803,7167,13075,13076,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,8.4337091,8.4557552,1,0,-9,52,0,-1,31.718756,0,0,0,72,2,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1823425,8.5179701,0,0,61.580002,43.34,58.150002,52.91,6,1,1,0,0,4,4,1,705.5,1134542.3,0,0,4335.1211 -5803,7167,13076,13075,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,52,0,1,-108.70906,0,0,0,71,2,3,3,2,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9124894,0,0,0,58.150002,52.91,61.580002,43.34,7,1,1,0,0,4,4,1,705.5,1134542.3,0,0,4335.1211 -5804,7168,13077,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,2,1,0,1,3,0,7.212553,6.8465714,3,0,0,0,-9,0,-1133.8276,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,5,15,15,1,0,-9,0,0,0,1,5.2363052,0,0,0,0,14.005562,7,1,1,0,6.8475552,7.1446075,12.354188,3,52.810001,38.080002,-9,-9,5,1,1,0,0,13,2,0,1123,407133.53,0,0,1537.9156 -5804,7169,13078,-9,13077,-9,2,1,1,44,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-929.65015,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,18,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.560001,31.5,-9,-9,3,1,1,0,0,13,1,0,255,0,0,0,137.8002 -5805,7170,13079,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,0,2,0,7.52282,7.5349464,3,0,0,0,-9,0,-1065.1161,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5449963,0,0,54.619999,26.74,-9,-9,6,1,1,0,0,10,3,1,303,592842.75,0,0,1631.9758 -5805,7171,13080,-9,-9,-9,2,1,0,79,2,0,0,0,2,-9,4,3,0,0,3,0,7.6230884,7.794168,3,0,0,0,-9,0,-938.72797,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5591063,7.8917651,0,0,51.939999,55.880001,-9,-9,6,1,1,0,0,10,3,1,2385,457999.16,0,0,1948.9448 -5806,7172,13081,13082,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,0,2,6.715054,7.2264128,6.0254064,2,0,-9,3,0,-2,-21.219624,0,0,1,32,2,3,2,2,1,2019,2,3,21,6,16,16,15,1,1,2,0,6.6999855,6.6999855,0,0,0,0,0,0,0,2,1,1,0,6.0701356,0,0,3,23.459999,58.669998,17.51,65.199997,5,1,1,0,0,7,2,0,509,-75923.047,0,0,1844.0437 -5806,7172,13082,13081,-9,-9,3,1,1,32,1,0,1,0,2,-9,7,2,0,1,3,0,0,0,2,0,-9,3,0,2,-169.14946,1,0,0,30,2,2,1,-9,-9,2019,3,1,13,1,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.51,65.199997,23.459999,58.669998,3,1,1,0,1,7,2,0,509,-75923.047,0,0,1844.0437 -5806,7172,13083,-9,13081,13082,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.4457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,0,509,-75923.047,0,0,1844.0437 -5807,7173,13084,13085,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,5.2407756,5.0483351,1,0,-9,8,0,-2,3.0276561,0,0,0,69,2,3,3,2,1,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6904182,0,0,59.43,58.049999,54.369999,54.799999,7,1,1,0,0,9,2,1,409,601380.75,0,0,1797.8657 -5807,7173,13085,13084,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,6.4945641,6.310914,0,1,0,-9,8,0,2,229.56024,0,0,0,67,2,5,3,-9,-9,2019,4,2,9,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,59.43,58.049999,6,1,1,0,0,9,2,1,409,601380.75,0,0,1797.8657 -5808,7174,13086,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,0,4,0,8.2283974,8.0551548,3,0,0,0,-9,0,-1130.3257,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2422915,0,0,51.779999,47.830002,-9,-9,7,1,1,0,0,8,4,1,883,1186410.9,0,0,3286.5398 -5809,7175,13087,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1056.1868,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15791444,0,0,0,19.309999,45.849998,-9,-9,3,1,1,0,0,2,1,1,186,5900.9922,0,0,1187.7063 -5809,7176,13088,-9,-9,-9,2,1,1,54,3,0,0,0,1,-9,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-915.7179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2246928,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,2,1,1,689,212901.02,0,0,668.07336 -5810,7177,13089,13090,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,6.2971234,6.4953628,1,0,-9,8,0,0,-6.5173697,0,0,0,73,3,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6899552,0,0,54.939999,50.330002,48.099998,36.599998,6,1,1,0,0,13,2,1,533.5,358321.66,0,0,1276.8649 -5810,7177,13090,13089,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,4.3745489,4.4243193,1,0,-9,8,0,0,86.967926,0,0,0,73,3,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,10.716618,0,0,0,0,0,1,1,0,0,4.5190334,0,0,48.099998,36.599998,54.939999,50.330002,6,1,1,0,0,13,2,1,533.5,358321.66,0,0,1276.8649 -5811,7178,13091,-9,-9,-9,1,1,0,44,3,0,2,0,1,1,2,1,0,0,3,8.3199158,8.1321783,0,4,0,0,0,-9,0,-912.6427,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,24,11,41,0,15,1,1,-9,0,8.6747341,8.6747341,0,0,0,0,0,0,0,7,1,1,0,0,0,9.5133066,3,39.889999,54.919998,-9,-9,4,2,3,0,1,8,3,0,359,271074.5,0,0,2235.925 -5812,7179,13092,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,1,1,0,0,3,5.154911,6.045805,5.066731,3,0,0,0,-9,0,-1007.6854,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,30,0,15,1,1,-9,0,.52826583,.52826583,0,0,0,0,0,0,0,7,1,1,0,5.3835282,0,14.943222,3,29.41,52.73,-9,-9,3,4,2,0,1,4,2,0,632,-111998.53,0,0,568.44977 -5813,7180,13093,13094,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.23423,8.2660217,0,1,0,-9,29,0,2,125.88205,0,0,0,51,1,1,1,2,2,2019,1,1,9,0,41,52,15,1,0,1,0,11.181401,11.181401,0,0,0,0,0,0,0,0,0,0,0,3.4030194,0,0,0,46.549999,58.299999,41,36.669998,6,1,1,0,0,11,4,1,480.5,1182198.3,0,0,3815.5818 -5813,7180,13094,13093,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,1,8.0399618,8.1380949,0,1,0,-9,29,0,-2,10.886018,0,0,0,53,2,3,1,3,2,2019,1,2,20,8,43,41,15,1,1,1,0,7.3261809,7.3261809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,36.669998,46.549999,58.299999,3,1,1,0,0,11,4,1,480.5,1182198.3,0,0,3815.5818 -5814,7181,13095,13096,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.3169231,8.5243063,0,1,0,-9,11,0,-5,-47.071781,0,0,0,54,3,3,1,-9,2,2019,1,2,8,0,48,60,15,1,0,1,0,13.001893,13.001893,0,0,0,0,0,0,0,42,0,0,0,0,0,41.83358,3,42.169998,52.060001,52.599998,52.880001,6,1,1,0,0,5,5,0,1155.5,148266.02,0,0,3208.0957 -5814,7181,13096,13095,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,8.0963507,8.2056704,0,1,0,-9,11,0,5,-2.5313375,0,0,0,49,2,3,1,3,3,2019,1,1,7,0,42,42,15,1,0,1,0,8.5835924,8.5835924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.599998,52.880001,42.169998,52.060001,5,1,1,0,0,5,5,0,1155.5,148266.02,0,0,3208.0957 -5815,7182,13097,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,0,1,0,4.4146833,4.7476459,3,0,0,0,-9,0,-990.93292,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,4.6298337,5.6006384,3,57.240002,19.73,-9,-9,6,1,1,0,0,2,2,0,1287,50335.023,0,0,1723.8395 -5816,7183,13098,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1063.9539,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,45,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8686757,0,0,0,26.18,61.09,-9,-9,4,1,1,1,0,9,1,1,157,58245.469,0,0,-352.9462 -5817,7184,13099,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,2,1,0,0,3,9.0068417,9.019824,0,3,0,0,0,-9,0,-918.45807,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,43,11,15,1,0,-9,0,23.641022,23.641022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.610001,44.139999,-9,-9,5,1,1,0,0,9,5,1,616,1227839.3,0,0,2800.6396 -5818,7185,13100,13101,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,0,2,7.6802616,8.0056686,0,1,0,-9,8,0,-1,41.956802,0,0,0,58,2,2,1,-9,-9,2019,1,1,12,0,70,54,15,1,0,1,0,4.2410469,4.2410469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,49.93,58.57,35.720001,5,1,1,0,0,5,5,1,305,1033941,0,0,4442.2061 -5818,7185,13101,13100,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,2,6.6969352,8.3845024,8.2093039,1,0,-9,8,0,1,53.975296,0,0,0,57,2,2,1,3,2,2019,1,2,8,0,60,54,15,1,0,1,0,1.6247325,1.6247325,0,0,0,0,0,0,0,0,0,0,0,7.601758,7.9237628,0,0,58.57,35.720001,44.91,49.93,5,1,1,0,0,5,5,1,305,1033941,0,0,4442.2061 -5818,7186,13102,-9,13100,13101,3,1,0,33,2,0,0,0,2,-9,2,1,0,0,2,6.6530571,6.9679565,0,3,0,0,0,-9,0,-1072.5021,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,17,4,40,32,15,1,1,-9,1,1.8706447,1.8706447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.950001,47.099998,-9,-9,4,1,1,0,0,5,2,1,484,213181.02,0,0,513.73169 -5819,7187,13103,-9,13106,13105,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,7.0739083,6.8937635,0,2,0,0,0,-9,0,-1072.1438,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,47.52,-9,-9,4,1,1,0,0,11,4,1,253,561854.63,0,0,4010.531 -5819,7187,13104,-9,13106,13105,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1001.04,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,11,4,1,253,561854.63,0,0,4010.531 -5819,7187,13105,13106,-9,-9,2,1,1,52,1,0,2,0,2,-9,1,1,0,0,4,8.1876144,8.3583288,0,2,0,-9,6,0,4,49.069035,0,0,0,48,2,4,1,-9,-9,2019,1,1,9,1,84,45,15,1,0,1,0,4.6284471,4.6284471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,42.950001,61.240002,6,1,1,0,0,11,4,1,253,561854.63,0,0,4010.531 -5819,7187,13106,13105,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,8.2399082,8.120945,0,2,0,-9,26,0,-4,45.992756,0,0,0,52,2,4,1,2,2,2019,1,2,11,1,31,20,15,1,0,1,0,13.530242,13.530242,0,0,0,0,0,0,0,2,1,1,0,0,0,.71576941,3,42.950001,61.240002,54,54,5,1,1,0,0,11,4,1,253,561854.63,0,0,4010.531 -5820,7188,13107,13108,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,10,0,3,70.834938,0,0,0,39,1,3,1,2,1,2019,1,2,13,2,45,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.939999,53.209999,39.099998,57.790001,2,1,1,0,1,9,4,1,624.5,122698.02,0,0,-1326.6802 -5820,7188,13108,13107,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,0,3,8.3213749,8.3525677,0,1,0,-9,10,0,-3,54.990059,0,0,1,42,2,2,1,3,3,2019,1,1,15,3,53,53,15,1,0,1,0,11.199632,11.199632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.099998,57.790001,34.939999,53.209999,3,2,3,0,0,9,4,1,624.5,122698.02,0,0,-1326.6802 -5821,7189,13109,-9,13111,13110,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.47461,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1523.25,1610730.1,0,0,2156.5061 -5821,7189,13110,13111,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,8.9212208,8.675745,5.0016322,2,0,-9,18,0,1,138.36845,0,0,0,45,1,3,1,2,2,2019,1,1,12,1,39,40,15,1,0,1,0,18.41955,18.41955,0,0,0,0,0,0,0,0,1,1,0,5.6967549,0,0,0,40.98,52.59,40.080002,47.450001,4,1,1,0,0,10,4,1,1523.25,1610730.1,0,0,2156.5061 -5821,7189,13111,13110,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,3,6.3713775,6.5654988,0,2,0,-9,18,0,-1,55.502018,0,0,0,46,1,3,1,2,1,2019,1,2,17,6,10,10,15,1,1,1,0,6.7893596,6.7893596,0,0,0,0,0,0,0,0,1,1,0,2.6394567,0,0,0,40.080002,47.450001,40.98,52.59,5,1,1,0,0,10,4,1,1523.25,1610730.1,0,0,2156.5061 -5821,7189,13112,-9,13111,13110,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.21362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1523.25,1610730.1,0,0,2156.5061 -5822,7190,13113,13114,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.5949726,8.3817368,0,2,0,-9,6,0,8,74.697227,0,0,0,44,2,3,1,-9,2,2019,1,1,9,0,45,43,15,1,0,1,0,10.754633,10.754633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,42.099998,51.860001,49.310001,5,1,1,0,0,12,4,1,1095.3334,563567.88,0,0,3938.8535 -5822,7190,13114,13113,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,8.548461,8.6397362,0,2,0,-9,27,0,-8,-58.953499,0,0,1,52,2,3,1,2,3,2019,1,2,10,1,41,42,15,1,0,1,0,11.386785,11.386785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.860001,49.310001,58.049999,42.099998,2,1,1,0,0,12,4,1,1095.3334,563567.88,0,0,3938.8535 -5822,7190,13115,-9,13114,13113,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.0533,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,12,4,1,1095.3334,563567.88,0,0,3938.8535 -5823,7191,13116,-9,-9,-9,1,1,1,91,3,0,0,0,2,-9,4,3,0,1,1,0,4.6207905,4.6113796,3,0,0,0,-9,0,-915.95325,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,6.6584396,0,0,0,7.2283111,43.022076,0,1,1,0,5.170187,4.5172477,0,0,54.470001,19.200001,-9,-9,3,1,1,0,0,10,2,1,2015,352610.78,0,0,2015.3121 -5824,7192,13117,13118,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,7.4256554,7.4219704,0,1,0,-9,3,0,4,34.940521,0,0,0,56,2,3,1,3,3,2019,1,2,10,1,39,39,15,1,0,1,0,6.2831078,6.2831078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,58.32,50.220001,5,1,1,0,0,8,4,1,181,-120618.88,0,0,2135.947 -5824,7192,13118,13117,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.2600536,7.8912897,0,1,0,-9,3,0,-4,-25.063238,0,0,0,60,3,3,1,3,3,2019,1,1,8,0,39,37,15,1,0,1,0,10.697904,10.697904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,51,49,6,1,1,0,0,8,4,1,181,-120618.88,0,0,2135.947 -5824,7193,13119,-9,13118,13117,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.6612763,7.4227347,0,3,0,0,0,-9,0,-1003.5809,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,2,50,20,15,1,0,-9,1,4.3543758,4.3543758,0,0,0,0,0,0,0,0,0,0,0,6.5420589,0,0,0,46,58,-9,-9,5,1,1,0,0,8,3,1,751,215521.11,0,0,408.13358 -5825,7194,13120,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,4,7.2092357,7.1186104,0,3,0,0,0,-9,0,-941.16144,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,15,17,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.25313,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,835,316605.97,0,0,2339.2139 -5826,7195,13121,-9,13125,13123,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.0009,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,4,1,896.79999,1008318.1,0,0,6145.6079 -5826,7195,13122,-9,13125,13123,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.5599,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,896.79999,1008318.1,0,0,6145.6079 -5826,7195,13123,13125,-9,-9,2,1,1,42,1,0,3,0,1,-9,1,1,0,0,4,9.3756371,9.2654266,0,2,0,-9,6,0,2,-34.91853,0,0,0,40,1,5,1,-9,-9,2019,1,1,9,1,55,70,15,1,0,1,0,22.765104,22.765104,0,0,0,0,0,0,0,0,1,1,0,4.0468559,0,0,0,52,55,37.400002,66.639999,5,1,1,0,0,2,4,1,896.79999,1008318.1,0,0,6145.6079 -5826,7195,13124,-9,13125,13123,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.6414,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,896.79999,1008318.1,0,0,6145.6079 -5826,7195,13125,13123,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,0,5,6.5054002,6.4723125,0,2,0,-9,16,0,-2,-23.465511,0,0,1,42,1,4,1,2,2,2019,1,2,14,4,25,0,15,1,1,1,0,2.5400231,2.5400231,0,0,0,0,0,0,0,0,1,1,0,8.1620989,0,0,0,37.400002,66.639999,52,55,6,1,1,0,1,2,4,1,896.79999,1008318.1,0,0,6145.6079 -5827,7196,13126,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-879.97742,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,3.1494789,0,2.1229079,0,0,46.80304,0,1,1,0,0,0,0,0,53.060001,10.02,-9,-9,6,1,1,0,0,4,1,0,150,-202768.58,0,0,627.84631 -5828,7197,13127,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,3,8.1373463,7.8744769,0,3,0,0,0,-9,0,-1104.8162,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,36,36,15,1,0,-9,0,9.6965809,9.6965809,0,0,0,0,0,0,0,7,0,0,0,0,0,4.401597,3,43.369999,57.279999,-9,-9,5,1,1,0,0,12,4,1,135,576161.31,0,0,1144.4242 -5828,7198,13128,-9,13127,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.7140312,7.9680142,0,3,0,0,0,-9,0,-1079.3466,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,9,0,36,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,62.759998,-9,-9,3,1,1,0,0,12,3,1,190,10996.988,0,0,749.45715 -5829,7199,13129,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1159.3496,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.389999,34.810001,-9,-9,3,4,2,0,0,2,1,0,462,182118.02,0,0,486.16483 -5830,7200,13130,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1011.047,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,5,1,1,0,0,13,1,1,261,430087.28,0,0,2100.8389 -5831,7201,13131,13132,-9,-9,2,1,0,22,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,-6,0,0,1,1,28,2,2,3,-9,-9,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.578515,3,54.369999,54.799999,21.360001,41.669998,5,1,1,0,0,12,1,0,710,-30461.961,0,0,1385.0135 -5831,7201,13132,13131,-9,-9,1,1,1,28,1,0,1,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,2,0,6,0,0,1,0,22,2,3,3,2,2,2019,4,2,24,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.360001,41.669998,54.369999,54.799999,2,1,1,1,0,12,1,0,710,-30461.961,0,0,1385.0135 -5831,7201,13133,-9,13131,13132,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.4998,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,1,0,710,-30461.961,0,0,1385.0135 -5832,7202,13134,13135,-9,-9,2,1,0,53,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,25,0,-16,83.787033,0,0,0,69,3,3,1,3,2,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3564057,0,0,0,52.310001,58.290001,59.310001,49.810001,3,4,2,0,0,5,2,1,251,400362,0,0,1643.9105 -5832,7202,13135,13134,-9,-9,1,1,1,69,1,0,0,0,3,-9,2,1,0,0,3,5.3956995,7.5953388,7.0843334,1,0,-9,26,0,16,13.177837,0,0,0,53,3,4,3,3,3,2019,2,2,6,0,4,0,15,1,0,3,0,7.3450556,7.3450556,0,0,0,0,0,0,0,0,1,1,0,5.8288364,7.0966206,0,0,59.310001,49.810001,52.310001,58.290001,6,1,1,0,0,5,2,1,251,400362,0,0,1643.9105 -5832,7203,13136,-9,13134,13135,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.8844252,7.9021912,0,3,0,0,0,-9,0,-1023.5493,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,44,39,15,1,0,-9,1,6.7872882,6.7872882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.259998,56.189999,-9,-9,6,1,1,0,0,5,3,1,453,-61132.898,0,0,1037.0354 -5833,7204,13137,-9,13138,13140,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.72003,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,0,837.25,146104.91,0,0,1897.0352 -5833,7204,13138,13140,-9,-9,1,1,0,44,1,0,2,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,17,0,-1,-35.991814,0,0,1,45,2,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,52,56,5,1,1,0,0,10,2,0,837.25,146104.91,0,0,1897.0352 -5833,7204,13139,-9,13138,13140,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-924.20435,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,2,0,837.25,146104.91,0,0,1897.0352 -5833,7204,13140,13138,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,0,4,7.2451286,7.1823034,0,2,0,-9,9,0,1,-38.299141,0,0,0,44,2,4,3,2,2,2019,2,1,9,1,45,40,15,1,0,3,0,3.6822691,3.6822691,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,56,57.16,56.150002,6,1,1,0,0,10,2,0,837.25,146104.91,0,0,1897.0352 -5833,7205,13141,-9,13138,13140,3,1,1,20,2,0,2,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1076.421,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,1,1,0,0,10,1,0,469,0,0,0,0 -5834,7206,13142,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-959.22266,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,12,1,0,1012,-162649.27,0,0,837.24707 -5835,7207,13143,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1058.8134,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.990002,29.26,-9,-9,3,1,1,1,1,12,1,0,206,-70186.07,0,0,232.96193 -5836,7208,13144,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,3,8.9062529,8.4773197,0,3,0,0,0,-9,0,-884.12787,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,45,45,15,1,0,-9,0,13.298601,13.298601,0,0,0,0,0,0,0,0,0,0,0,6.3843775,0,0,0,49.330002,38.220001,-9,-9,5,1,1,0,0,10,5,1,145,886383.31,0,0,2673.1897 -5836,7209,13145,-9,-9,13144,2,1,0,20,2,0,0,1,2,-9,7,2,0,0,3,4.9055252,4.7056012,0,3,0,-9,0,-9,0,-895.44049,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.779999,63.130001,-9,-9,5,1,1,0,0,10,1,1,148,-71549.922,0,0,825.44739 -5837,7210,13146,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,2,1,0,0,1,6.9478211,7.2273049,0,4,0,-9,0,1,0,-1017.0584,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,30,0,15,1,0,-9,0,4.2812324,4.2812324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.580002,50.169998,-9,-9,5,1,1,0,0,11,2,0,219,-253943.27,0,0,-571.56342 -5838,7211,13147,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,5.9513202,5.9757485,3,0,0,0,-9,0,-1001.1536,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.6397935,0,0,0,1,1,0,0,6.1506515,0,0,56.759998,23.879999,-9,-9,6,1,1,0,0,9,2,1,535,255217.36,0,0,336.59561 -5839,7212,13148,13149,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,7.2770743,7.2079282,1,0,-9,7,0,-1,-24.874441,0,0,0,71,1,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5846004,7.3221688,0,0,47.720001,52.18,39.990002,34.689999,6,1,1,0,0,7,2,1,757.5,353361.63,0,0,3947.5928 -5839,7212,13149,13148,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,1,2,0,3.4119155,3.1221397,1,0,-9,7,0,1,128.50545,0,0,0,70,3,4,3,3,3,2019,4,1,22,10,0,0,15,4,1,4,0,0,0,1,0,6.9109964,0,0,0,0,0,1,1,0,6.4513903,3.4655466,0,0,39.990002,34.689999,47.720001,52.18,6,1,1,0,0,7,2,1,757.5,353361.63,0,0,3947.5928 -5840,7213,13150,13151,-9,-9,1,1,0,45,1,1,1,0,1,-9,2,1,0,0,3,7.7476358,7.5816274,0,2,0,-9,9,0,9,20.630739,0,0,0,36,1,4,1,-9,-9,2019,1,2,9,0,41,41,15,1,0,1,0,6.8756046,6.8756046,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.900002,51.77,42.75,59.43,6,1,1,0,0,10,5,1,585.33331,211507.8,0,0,4317.5024 -5840,7213,13151,13150,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,4,9.0047684,9.3382568,0,2,0,-9,9,0,0,-84.306877,0,0,0,45,1,3,1,-9,-9,2019,1,1,13,1,45,43,15,1,0,1,0,22.371309,22.371309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,59.43,42.900002,51.77,3,1,1,0,0,10,5,1,585.33331,211507.8,0,0,4317.5024 -5840,7213,13152,-9,13150,13151,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.4473,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,5,1,585.33331,211507.8,0,0,4317.5024 -5841,7214,13153,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,4,8.7373199,9.0483999,0,3,0,0,0,-9,0,-1030.4688,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,35,15,1,0,-9,0,15.458713,15.458713,0,0,0,0,0,0,0,0,0,0,0,8.2739439,0,0,0,57.16,56.150002,-9,-9,5,2,3,0,0,8,5,1,464,347621.03,0,0,4813.1445 -5842,7215,13154,13155,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,3,8.3992624,7.9301071,0,1,0,-9,10,0,9,-72.59594,0,0,0,31,2,4,1,3,2,2019,1,2,8,0,38,38,15,1,0,1,0,13.470155,13.470155,0,0,0,0,0,0,0,0,0,0,0,2.7084281,0,0,0,48.82,53.150002,47,57,5,1,1,0,0,9,5,1,1383,113757.98,0,0,7064.9648 -5842,7215,13155,13154,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,0,4,9.6653061,9.551446,0,1,0,-9,10,0,0,-101.15417,-9,0,1,40,2,3,1,2,2,2019,1,1,11,2,40,0,15,1,0,1,0,46.086437,46.086437,0,0,0,0,0,0,0,0,0,0,0,3.743186,0,0,0,47,57,48.82,53.150002,5,1,1,0,0,9,5,1,1383,113757.98,0,0,7064.9648 -5843,7216,13156,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1011.2142,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,4,2,1,1,6,1,0,1157,48939.133,0,0,2477.4331 -5843,7217,13157,-9,13156,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,6.8383794,6.8841691,0,3,0,0,0,-9,0,-1029.7618,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,20,0,15,1,1,-9,1,5.854435,5.854435,0,0,0,0,0,0,0,5.48,1,1,0,0,0,7.4298716,3,44.650002,48.220001,-9,-9,2,4,2,0,0,6,2,0,1558,108617.59,0,0,-9.7235489 -5844,7218,13158,13159,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,8.6639156,8.5724382,6.5502944,1,0,-9,7,0,3,13.0632,0,0,0,58,2,4,1,-9,-9,2019,1,1,8,0,45,80,15,1,0,1,0,15.08843,15.08843,0,0,0,0,0,0,0,2,1,1,0,6.3807459,7.1745906,2.9009264,3,42.610001,49.310001,59.290001,46.970001,6,1,1,0,0,6,5,1,451,1166161.8,0,0,4979.8271 -5844,7218,13159,13158,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.6128411,8.6157665,7.5164981,1,0,-9,12,0,-3,18.303963,0,0,0,61,3,3,1,2,2,2019,1,2,8,0,20,22,15,1,0,1,0,9.6251545,9.6251545,0,0,0,0,0,0,0,7,1,1,0,5.9915433,7.833456,3.4281073,3,59.290001,46.970001,42.610001,49.310001,6,1,1,0,0,6,5,1,451,1166161.8,0,0,4979.8271 -5845,7219,13160,13163,-9,-9,3,1,0,40,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,3,-24.196297,0,0,1,37,1,5,1,-9,-9,2019,3,2,5,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.549999,56.810001,57.060001,57.759998,4,2,3,0,0,2,3,1,397.75,-3977.9131,0,0,2230.7878 -5845,7219,13161,-9,13160,13163,6,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.0303,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,1,397.75,-3977.9131,0,0,2230.7878 -5845,7219,13162,-9,13160,13163,5,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1021.0547,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,2,3,1,397.75,-3977.9131,0,0,2230.7878 -5845,7219,13163,13160,13164,13165,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,5,8.1001368,7.7284217,0,2,0,-9,5,0,-3,-150.91383,0,0,0,40,3,3,3,2,2,2019,2,3,3,0,37,40,15,1,0,3,0,9.9724846,9.9724846,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,29.549999,56.810001,6,2,3,0,0,2,3,1,397.75,-3977.9131,0,0,2230.7878 -5845,7220,13164,13165,-9,-9,1,1,0,60,1,0,2,0,2,-9,97,3,0,0,2,0,0,0,2,0,-9,41,0,-15,0,0,0,0,75,2,2,3,2,2,2019,4,4,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.790001,40.560001,40.970001,32.790001,5,2,3,0,0,2,1,1,521,160074.25,0,0,1396.8447 -5845,7220,13165,13164,-9,-9,4,1,1,75,1,0,2,0,2,-9,4,3,0,0,2,0,0,0,2,0,-9,38,0,15,0,0,0,0,60,2,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.970001,32.790001,47.790001,40.560001,5,2,3,0,0,2,1,1,521,160074.25,0,0,1396.8447 -5846,7221,13166,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,6.9332552,6.7881465,3,0,0,0,-9,0,-896.62408,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,8.3227654,0,0,1,1,0,4.1324835,7.2237668,0,0,52.560001,35.060001,-9,-9,6,1,1,0,0,11,2,1,200,239302.63,0,0,2454.6685 -5847,7222,13167,13168,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,2,7.8785176,8.2584372,0,1,0,1,1,-9,-1,-49.756771,0,1,1,23,2,4,1,2,2,2019,1,3,17,5,24,38,15,1,1,1,0,14.181664,14.181664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.529999,44.919998,49,58,6,1,1,0,0,4,4,0,349,321364.41,0,0,2843.0498 -5847,7222,13168,13167,-9,-9,3,1,1,23,1,0,0,0,2,-9,2,1,0,0,4,7.775187,7.3990154,0,1,0,-9,1,-9,1,2.0220735,-9,1,0,22,2,2,1,-9,-9,2019,1,1,10,1,36,0,15,1,0,1,0,6.8611093,6.8611093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,32.529999,44.919998,5,1,1,0,0,4,4,0,349,321364.41,0,0,2843.0498 -5847,7223,13169,-9,-9,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,8.029707,7.9691792,0,3,0,0,0,-9,0,-963.8905,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,35,36,15,1,1,-9,0,9.8504848,9.8504848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.23,48.009998,-9,-9,5,1,1,0,0,4,3,0,2353,38746.285,0,0,1544.4235 -5848,7224,13170,13171,-9,-9,1,1,1,54,1,0,2,0,2,-9,2,1,0,0,2,8.5688848,8.5867891,0,2,0,-9,30,0,1,17.366741,0,0,0,53,2,3,1,2,3,2019,1,2,17,5,37,37,15,1,1,1,0,16.991219,16.991219,0,0,0,0,0,0,0,2,1,1,0,0,0,7.9544587,3,33.630001,40.330002,61.27,32.630001,4,1,1,0,0,6,4,1,567.75,1638846,0,0,4188.3721 -5848,7224,13171,13170,-9,-9,2,1,0,53,1,0,2,0,2,-9,2,1,0,0,3,8.3711243,7.9801364,0,2,0,-9,30,0,-1,-59.664234,0,0,0,54,2,2,1,2,2,2019,1,1,12,0,35,35,15,1,0,1,0,12.225356,12.225356,0,0,0,0,0,0,0,0,1,1,0,2.7483952,0,0,0,61.27,32.630001,33.630001,40.330002,5,1,1,0,0,6,4,1,567.75,1638846,0,0,4188.3721 -5848,7224,13172,-9,13171,13170,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-954.60065,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,4,1,567.75,1638846,0,0,4188.3721 -5848,7224,13173,-9,13171,13170,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.96741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,567.75,1638846,0,0,4188.3721 -5849,7225,13174,13176,-9,-9,2,1,0,38,1,0,1,0,1,-9,97,3,0,0,2,0,0,0,2,0,-9,11,0,1,-211.25899,0,0,1,37,2,5,1,2,3,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.93,43.310001,48.18,61.799999,4,1,1,0,0,2,3,1,503,123996.52,0,0,1245.4911 -5849,7225,13175,-9,13174,13176,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-870.52155,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,503,123996.52,0,0,1245.4911 -5849,7225,13176,13174,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,0,5,8.0646,8.0451574,0,2,0,-9,11,0,-1,62.560192,0,0,0,38,1,2,3,-9,-9,2019,2,2,6,1,38,48,15,1,0,3,0,7.4000678,7.4000678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.799999,29.93,43.310001,7,1,1,0,0,2,3,1,503,123996.52,0,0,1245.4911 -5850,7226,13177,13178,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.527729,8.1805763,0,1,0,-9,26,0,3,0,0,0,0,48,3,5,1,2,3,2019,1,1,11,0,35,39,15,1,0,1,0,17.731537,17.731537,0,0,0,0,0,0,0,0,0,0,0,3.1704714,0,0,0,59.189999,37.540001,60.02,56.419998,6,1,1,0,0,8,5,1,459.5,311702,0,0,3117.0605 -5850,7226,13178,13177,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,0,5,8.3316078,8.6366053,0,1,0,-9,26,0,-3,0,0,0,0,51,2,3,1,2,2,2019,1,2,6,0,34,39,15,1,0,1,0,18.765085,18.765085,0,0,0,0,0,0,0,0,0,0,0,3.1630061,0,0,0,60.02,56.419998,59.189999,37.540001,6,1,1,0,0,8,5,1,459.5,311702,0,0,3117.0605 -5851,7227,13179,-9,13180,13181,5,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1195.5055,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,4,1,589,474228.81,0,0,3018.9507 -5851,7227,13180,13181,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,1,8.3910666,8.4223347,0,2,0,-9,11,0,-7,31.609423,0,0,0,54,2,3,1,2,2,2019,1,1,9,0,31,30,15,1,0,1,0,18.877277,18.877277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,20.459999,56.41,30.5,3,1,1,0,0,7,4,1,589,474228.81,0,0,3018.9507 -5851,7227,13181,13180,-9,-9,1,1,1,54,1,0,2,0,2,-9,2,1,0,0,3,8.1279297,8.0717115,0,2,0,-9,10,0,7,26.182388,0,0,0,47,1,1,1,3,3,2019,1,2,10,1,41,42,15,1,0,1,0,10.527474,10.527474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.41,30.5,44.93,20.459999,6,1,1,0,0,7,4,1,589,474228.81,0,0,3018.9507 -5851,7227,13182,-9,13180,13181,6,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.9508,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,4,1,589,474228.81,0,0,3018.9507 -5851,7228,13183,-9,13180,13181,3,1,1,21,2,0,2,1,2,-9,7,2,0,0,2,0,3.9075642,4.2665215,3,0,0,0,-9,0,-1049.7449,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,25,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.200613,0,0,0,34.450001,42.639999,-9,-9,3,1,1,0,1,7,2,1,248,106021.72,0,0,-684.06409 -5851,7229,13184,-9,13180,13181,4,1,0,19,2,0,2,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-864.63171,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,23,8,0,8,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.779999,41.130001,-9,-9,5,1,1,0,0,7,1,1,154,-19600.51,0,0,0 -5852,7230,13185,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-976.72491,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,49.900002,-9,-9,6,1,1,1,0,2,1,1,232,-168914.78,0,0,0 -5853,7231,13186,13188,-9,-9,1,1,0,37,1,1,3,0,2,-9,1,1,0,0,4,7.2294168,7.0389953,0,2,0,-9,15,0,-16,19.3997,0,0,1,53,2,4,1,2,2,2019,1,2,15,3,15,24,15,1,0,1,0,9.9637928,9.9637928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,47.470001,55.040001,5,1,1,0,0,9,4,1,1162.25,1955609.3,0,0,4216.6738 -5853,7231,13187,-9,13186,13188,4,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.2537,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,1162.25,1955609.3,0,0,4216.6738 -5853,7231,13188,13186,-9,-9,2,1,1,53,1,1,3,0,2,-9,2,1,0,0,4,9.0450468,8.9176998,0,2,0,-9,8,0,16,-132.05455,0,0,0,37,2,4,1,3,3,2019,1,1,12,1,90,40,15,1,0,1,0,11.56519,11.56519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.470001,55.040001,45.91,59.889999,6,1,1,0,1,9,4,1,1162.25,1955609.3,0,0,4216.6738 -5853,7231,13189,-9,13186,13188,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.24255,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,1162.25,1955609.3,0,0,4216.6738 -5854,7232,13190,-9,13193,13191,2,1,1,18,2,0,2,1,2,0,7,2,0,0,5,6.9314842,7.038116,0,3,0,0,0,-9,0,-1018.1488,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.41359091,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,4,0,234,-74876.773,0,0,720.38507 -5854,7233,13191,13193,-9,-9,4,1,1,49,1,0,2,0,2,-9,1,1,0,0,5,8.5426188,8.790225,0,2,0,-9,2,0,10,36.229294,0,0,0,39,2,5,1,-9,-9,2019,1,1,8,0,30,45,15,1,0,1,0,24.627962,24.627962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,9,4,0,718.33331,820928.31,0,0,5433.7344 -5854,7233,13192,-9,13193,13191,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.1505,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,4,0,718.33331,820928.31,0,0,5433.7344 -5854,7233,13193,13191,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,5,8.4041214,8.3050013,6.589201,2,0,-9,2,0,-10,-30.125299,0,0,1,49,2,5,1,2,2,2019,1,4,8,0,38,38,15,1,0,1,0,15.326524,15.326524,0,0,0,0,0,0,0,0,1,1,0,6.6968646,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,9,4,0,718.33331,820928.31,0,0,5433.7344 -5855,7234,13194,13195,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,9.0444555,8.9006338,0,1,0,-9,3,0,-1,36.116417,0,1,0,30,2,4,1,-9,-9,2019,1,1,3,0,45,60,15,1,0,1,0,22.913893,22.913893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,49.119999,57.279999,6,1,1,0,0,2,5,1,667.5,33263.969,0,0,5398.2124 -5855,7234,13195,13194,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,8.1446705,8.3145676,0,1,0,-9,3,0,1,-127.06746,0,0,1,29,1,4,1,-9,1,2019,1,2,12,1,38,38,15,1,0,1,0,10.252795,10.252795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.119999,57.279999,57.16,56.150002,3,2,3,0,0,2,5,1,667.5,33263.969,0,0,5398.2124 -5856,7235,13196,13197,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,3,7.9463258,8.1221199,0,2,0,-9,8,0,-10,.59728026,0,0,1,48,2,4,1,-9,2,2019,1,2,12,0,30,25,15,1,0,1,0,12.140555,12.140555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.540001,59.060001,53.98,54.790001,4,2,3,0,0,8,4,1,872,264539.25,0,0,3624.957 -5856,7235,13197,13196,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,8.1440487,8.3550186,0,2,0,-9,4,0,10,80.032227,0,0,0,38,1,3,1,2,2,2019,1,1,3,0,40,20,15,1,0,1,0,13.032826,13.032826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,54.790001,32.540001,59.060001,6,2,3,0,0,8,4,1,872,264539.25,0,0,3624.957 -5857,7236,13198,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,6.2974701,6.6151605,3,0,0,0,-9,0,-923.90198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,1.7350279,0,0,1,1,0,0,6.5746083,0,0,45.48,31,-9,-9,5,1,1,0,0,13,2,0,178,105114.38,0,0,2234.8501 -5858,7237,13199,13200,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,9.021924,9.1174717,0,1,0,-9,30,0,5,13.50038,0,0,0,53,1,2,3,-9,-9,2019,2,2,8,0,45,45,15,1,0,4,0,23.031404,23.031404,0,0,0,0,0,0,0,2,0,0,0,.26954487,0,5.3472805,2,52.34,56.950001,60.700001,23.719999,6,1,1,0,0,7,5,1,151.5,2373819.8,0,0,3359.8569 -5858,7237,13200,13199,-9,-9,2,1,0,53,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,30,0,-5,-22.741497,0,0,0,58,2,4,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.99625862,0,2.7827249,3,60.700001,23.719999,52.34,56.950001,6,1,1,0,0,7,5,1,151.5,2373819.8,0,0,3359.8569 -5858,7238,13201,-9,13200,13199,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,7.7202764,7.974237,0,3,0,0,0,-9,0,-1132.8535,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,37,0,15,1,0,-9,1,9.1057987,9.1057987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,51.259998,-9,-9,6,1,1,0,0,7,4,1,1345,-103893.06,0,0,791.43408 -5859,7239,13202,13203,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,2,9.1019831,9.0816832,0,1,0,-9,8,0,-1,-38.894207,0,0,0,62,2,3,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,26.793686,26.793686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,45.759998,41.259998,55.040001,4,1,1,0,0,6,5,1,417.5,1489352.8,0,0,3457.5737 -5859,7239,13203,13202,-9,-9,1,1,0,62,1,0,0,0,2,-9,3,3,0,0,3,0,4.3708992,4.0207863,1,0,-9,25,0,1,-28.570602,0,0,0,61,2,2,1,3,3,2019,3,2,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9977956,4.1638865,0,0,41.259998,55.040001,57.18,45.759998,6,1,1,1,0,6,5,1,417.5,1489352.8,0,0,3457.5737 -5860,7240,13204,13206,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,1,8.4969234,8.8820572,0,2,0,-9,5,0,6,126.93581,0,0,0,46,2,4,1,2,2,2019,1,2,16,5,40,40,15,1,1,1,0,19.416313,19.416313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.73,23.530001,43.279999,57.130001,3,1,1,0,0,10,5,1,858,1306247.6,0,0,4044.4443 -5860,7240,13205,-9,13206,13204,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-883.83252,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,858,1306247.6,0,0,4044.4443 -5860,7240,13206,13204,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.2129412,7.9923401,7.3013792,2,0,-9,5,0,-6,37.348579,0,0,0,52,2,1,1,-9,-9,2019,1,1,6,0,23,16,15,1,0,1,0,8.3550901,8.3550901,0,0,0,0,0,0,0,0,1,1,0,0,7.4649024,0,0,43.279999,57.130001,44.73,23.530001,7,1,1,0,0,10,5,1,858,1306247.6,0,0,4044.4443 -5861,7241,13207,13208,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,4,8.6957254,8.734272,0,1,0,-9,26,0,1,.42858586,0,0,0,50,1,5,1,3,3,2019,1,2,9,1,40,38,15,1,0,1,0,21.597307,21.597307,0,0,0,0,0,0,0,0,0,0,0,6.1416802,0,0,0,53,55,39.23,60.490002,6,1,1,0,0,13,5,1,730,1152063.5,0,0,5189.0684 -5861,7241,13208,13207,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,5,8.4965649,8.47365,0,1,0,-9,26,0,-1,-40.841488,0,0,0,51,1,4,1,3,3,2019,1,1,13,2,40,40,15,1,0,1,0,13.067322,13.067322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.23,60.490002,53,55,5,1,1,0,0,13,5,1,730,1152063.5,0,0,5189.0684 -5861,7242,13209,-9,13208,13207,3,1,1,23,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1033.3817,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1513064,0,0,0,48,58,-9,-9,5,1,1,1,0,13,1,1,397,54204.98,0,0,-476.08789 -5861,7243,13210,-9,13208,13207,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.6486487,7.3310475,0,3,0,0,0,-9,0,-1059.0063,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,35,40,15,1,0,-9,1,5.4733224,5.4733224,0,0,0,0,0,0,0,0,0,0,0,3.0689425,0,0,0,46,58,-9,-9,5,1,1,0,0,13,3,1,496,10473.311,0,0,1289.1483 -5862,7244,13211,-9,13215,13212,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1095.6072,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,10,4,1,1115.8,1536255.1,0,0,4314.6992 -5862,7244,13212,13215,-9,-9,2,1,1,47,1,0,3,0,1,-9,1,1,0,0,4,8.2512617,8.147913,0,2,0,-9,18,0,0,-105.73406,0,0,0,47,1,5,1,2,1,2019,1,1,10,3,30,28,15,1,0,1,0,13.345047,13.345047,0,0,0,0,0,0,0,27.5,1,1,0,6.4944029,0,18.737139,3,54.200001,57.490002,41.009998,62.290001,6,1,1,0,0,10,4,1,1115.8,1536255.1,0,0,4314.6992 -5862,7244,13213,-9,13215,13212,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-814.07062,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,1115.8,1536255.1,0,0,4314.6992 -5862,7244,13214,-9,13215,13212,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1011.7106,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,10,4,1,1115.8,1536255.1,0,0,4314.6992 -5862,7244,13215,13212,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,0,5,8.6365528,8.7287998,0,2,0,-9,18,0,0,78.033279,0,0,0,47,1,4,1,1,1,2019,1,2,19,8,48,32,15,1,1,1,0,13.193469,13.193469,0,0,0,0,0,0,0,5.48,1,1,0,5.9695687,0,7.544754,3,41.009998,62.290001,54.200001,57.490002,5,1,1,0,0,10,4,1,1115.8,1536255.1,0,0,4314.6992 -5863,7245,13216,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1041.5211,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.509998,53.59,-9,-9,2,1,1,0,0,4,1,0,2451,24589.719,0,0,544.9519 -5864,7246,13217,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,7.6728945,7.6844306,0,3,0,0,0,-9,0,-949.4823,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,37,37,15,1,0,-9,0,5.9348969,5.9348969,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.18,52.619999,-9,-9,5,1,1,0,0,9,3,1,179,234264.91,0,0,1862.3921 -5865,7247,13218,13219,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,0,3,0,8.4759455,8.6236792,1,0,-9,7,0,2,-91.632339,0,0,0,84,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4075789,8.7466173,.5921796,3,47.080002,43.23,66.370003,38.360001,7,1,1,0,0,11,4,1,433.5,791022.94,0,0,3979.3281 -5865,7247,13219,13218,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,7.238152,7.4100142,1,0,-9,7,0,-2,42.166367,0,0,0,86,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,7.5677981,7.5650601,0,3,66.370003,38.360001,47.080002,43.23,6,1,1,0,0,11,4,1,433.5,791022.94,0,0,3979.3281 -5866,7248,13220,13221,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,7.888145,7.8243208,1,0,-9,27,0,2,56.460361,0,0,0,73,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1945958,7.8338351,0,0,51.18,40.209999,56.5,48.330002,6,1,1,0,0,9,4,1,263,1153092.8,0,0,3384.0103 -5866,7248,13221,13220,-9,-9,2,1,0,73,1,0,0,0,2,-9,1,1,0,0,3,7.3939719,7.4899473,4.7034278,1,0,-9,27,0,-2,61.892017,0,0,0,75,2,2,3,-9,-9,2019,2,1,8,0,20,15,15,1,0,4,0,8.8554058,8.8554058,0,0,0,0,0,0,0,0,1,1,0,6.1224923,4.9988818,0,0,56.5,48.330002,51.18,40.209999,6,1,1,0,0,9,4,1,263,1153092.8,0,0,3384.0103 -5867,7249,13222,13223,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,0,4,7.8565135,7.7108264,0,1,0,-9,16,0,-17,66.234497,0,0,1,53,2,5,1,3,3,2019,1,1,6,0,36,37,15,1,0,1,0,7.0666156,7.0666156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,46.209999,58.07,7,1,1,0,0,5,5,1,512,539737.25,0,0,3706.9912 -5867,7249,13223,13222,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.7972164,8.8820419,0,1,0,-9,16,0,17,82.859077,0,0,0,36,2,4,1,3,3,2019,1,2,8,0,53,52,15,1,0,1,0,15.468147,15.468147,0,0,0,0,0,0,0,2,0,0,0,4.527266,0,5.3967757,3,46.209999,58.07,57.16,56.150002,7,1,1,0,0,5,5,1,512,539737.25,0,0,3706.9912 -5868,7250,13224,-9,-9,-9,1,1,1,18,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-901.44952,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.630001,-9,-9,6,1,1,0,0,10,1,0,95,29664.658,0,0,1045.1573 -5869,7251,13225,-9,13227,13226,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.0583,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,1591.3334,203993.95,0,0,3466.7102 -5869,7251,13226,13227,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,0,3,8.7912903,8.5845137,0,2,0,-9,6,0,4,-158.01395,0,0,0,30,1,3,1,-9,-9,2019,1,1,9,0,32,46,15,1,0,1,0,23.531456,23.531456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,52.650002,51.639999,6,1,1,0,0,12,4,1,1591.3334,203993.95,0,0,3466.7102 -5869,7251,13227,13226,-9,-9,1,1,0,30,1,1,1,0,1,-9,1,1,0,0,3,7.0701613,7.2150121,0,2,0,-9,6,0,-4,.8224768,0,0,1,34,2,3,1,2,2,2019,1,2,13,1,6,40,15,1,0,1,0,19.277546,19.277546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,51.639999,54.369999,54.799999,5,1,1,0,0,12,4,1,1591.3334,203993.95,0,0,3466.7102 -5870,7252,13228,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,4,8.3959303,8.3044577,0,3,0,0,0,-9,0,-921.62189,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,37,0,15,1,1,-9,0,14.630928,14.630928,0,0,0,0,0,0,0,7,1,1,0,4.1013217,0,4.9182739,3,38.75,52.490002,-9,-9,4,1,1,0,0,5,4,1,305,145581.3,0,0,1797.1045 -5871,7253,13229,-9,13231,13230,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.87579,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,1131.5,-27693.859,0,0,3213.7271 -5871,7253,13230,13231,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,0,4,8.6172218,8.8801947,0,2,0,-9,11,0,8,-7.3203735,0,0,0,39,2,4,1,2,2,2019,1,1,12,3,41,41,15,1,0,1,0,16.4692,16.4692,0,0,0,0,0,0,0,7,1,1,0,1.6178432,0,13.493406,3,50.790001,48.240002,37.419998,48.970001,5,1,1,0,0,7,4,1,1131.5,-27693.859,0,0,3213.7271 -5871,7253,13231,13230,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,0,4,7.8162193,7.9687967,0,2,0,-9,11,0,-8,123.00189,0,0,1,47,2,4,1,2,2,2019,1,2,21,9,23,23,15,1,1,1,0,16.102757,16.102757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.419998,48.970001,50.790001,48.240002,5,1,1,0,0,7,4,1,1131.5,-27693.859,0,0,3213.7271 -5871,7253,13232,-9,13231,13230,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.09619,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,1131.5,-27693.859,0,0,3213.7271 -5872,7254,13233,13234,-9,-9,1,1,0,42,1,1,4,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,22,0,-5,-73.915962,0,0,1,47,1,4,1,3,3,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.529999,39.799999,52,55,5,2,3,0,0,8,2,1,1182.4,928516.06,0,0,1523.031 -5872,7254,13234,13233,-9,-9,2,1,1,47,1,1,4,0,1,-9,2,1,0,0,4,8.2477522,8.2633791,0,2,0,-9,8,0,5,104.69518,0,0,0,42,2,2,3,-9,-9,2019,2,1,9,1,40,40,15,1,0,3,0,10.915002,10.915002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,34.529999,39.799999,6,2,3,0,0,8,2,1,1182.4,928516.06,0,0,1523.031 -5872,7254,13235,-9,13233,13234,4,1,0,15,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1048.9287,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,8,2,1,1182.4,928516.06,0,0,1523.031 -5872,7254,13236,-9,13233,13234,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-870.64496,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,2,1,1182.4,928516.06,0,0,1523.031 -5872,7254,13237,-9,13233,13234,5,1,0,10,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-928.11218,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,8,2,1,1182.4,928516.06,0,0,1523.031 -5872,7255,13238,-9,13233,13234,3,1,1,18,2,1,4,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-957.53693,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.119999,53.060001,-9,-9,4,2,3,0,0,8,2,1,2010,0,0,0,0 -5873,7256,13239,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,2,1,0,0,2,8.9357376,8.8915625,0,3,0,0,0,-9,0,-902.99359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,46,44,15,1,1,-9,0,16.246872,16.246872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.599998,37.07,-9,-9,4,1,1,0,0,8,5,1,175,759588.44,0,0,3121.4868 -5873,7257,13240,-9,13239,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.3926854,7.6225896,0,3,0,0,0,-9,0,-1018.1237,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,19,6,30,0,15,1,1,-9,1,6.697525,6.697525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.490002,64.260002,-9,-9,5,1,1,0,0,8,3,1,547,73936.016,0,0,1213.8333 -5874,7258,13241,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-961.77771,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,32.450001,-9,-9,6,1,1,0,0,8,1,0,2612,-52131.609,0,0,1412.1998 -5875,7259,13242,-9,13243,13244,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.851,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,9,4,1,772.66669,178190.14,0,0,3299.6423 -5875,7259,13243,13244,-9,-9,2,1,0,31,1,1,1,0,1,-9,2,1,0,0,4,7.6396537,7.3245435,0,2,0,-9,5,0,-3,50.196239,0,0,1,34,1,5,1,-9,-9,2019,1,1,10,0,21,21,15,1,0,1,0,9.6553373,9.6553373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.93,54.77,57.060001,57.759998,6,4,2,0,0,9,4,1,772.66669,178190.14,0,0,3299.6423 -5875,7259,13244,13243,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,0,5,8.7684994,8.5136795,0,2,0,-9,5,0,3,-70.59523,0,0,0,31,1,4,1,2,2,2019,1,2,8,1,37,37,15,1,0,1,0,16.521393,16.521393,0,0,0,0,0,0,0,0,1,1,0,3.1780627,0,0,0,57.060001,57.759998,50.93,54.77,6,1,1,0,0,9,4,1,772.66669,178190.14,0,0,3299.6423 -5876,7260,13245,13246,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,5,5.3740401,8.4680309,8.8497982,1,0,-9,6,0,1,-26.893898,0,0,0,60,2,2,1,-9,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2082095,8.1900787,0,0,57.060001,57.759998,49.279999,52.09,6,1,1,0,0,6,5,1,1343,7526434,0,0,7168.6143 -5876,7260,13246,13245,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,9.3916292,9.4744482,6.3928452,1,0,-9,6,0,-1,-24.656452,0,0,0,61,2,5,1,2,3,2019,1,2,7,0,38,42,15,1,0,1,0,33.044769,33.044769,0,0,0,0,0,0,0,0,0,0,0,1.9246876,6.5812483,0,0,49.279999,52.09,57.060001,57.759998,5,4,2,0,0,6,5,1,1343,7526434,0,0,7168.6143 -5877,7261,13247,-9,-9,-9,1,1,0,103,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-952.95123,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,14.22887,0,0,0,1,1,0,0,0,0,0,53.139999,26.969999,-9,-9,6,1,1,0,0,2,1,0,2885,-53354.043,0,0,656.25555 -5878,7262,13248,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-961.69794,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,1,1,13,1,0,1481,-38282.781,0,0,556.11523 -5879,7263,13249,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1033.4097,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.75,38.91,-9,-9,3,1,1,0,0,13,1,1,54,-52977.445,0,0,452.57233 -5880,7264,13250,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,1,1,0,0,4,8.1027107,8.0740976,0,3,0,0,0,-9,0,-1000.2113,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,24,15,1,0,-9,0,13.711121,13.711121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.450001,59.52,-9,-9,5,3,4,0,0,8,4,0,144,0,0,0,1453.2437 -5880,7265,13251,-9,-9,-9,2,1,0,18,2,0,0,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1036.2607,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.82,56.509998,-9,-9,5,3,4,0,1,8,2,0,708,71679.875,0,0,0 -5881,7266,13252,13253,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,7.7767377,7.8022556,6.4082637,1,0,-9,18,0,2,31.844662,0,0,0,61,2,4,1,3,3,2019,1,2,7,1,27,26,15,1,0,1,0,10.435828,10.435828,0,0,0,0,0,0,0,0,0,0,0,0,7.0478435,0,0,60.529999,48.349998,59.290001,49.68,6,1,1,0,0,11,4,0,609,516501.47,0,0,2512.9688 -5881,7266,13253,13252,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,7.9451194,8.1039276,0,1,0,-9,11,0,-2,81.808937,0,0,0,63,2,2,1,3,2,2019,1,1,8,0,24,22,15,1,0,1,0,13.260504,13.260504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.290001,49.68,60.529999,48.349998,6,1,1,0,0,11,4,0,609,516501.47,0,0,2512.9688 -5882,7267,13254,13255,-9,-9,1,1,1,34,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,3,0,9,6.3816266,0,0,0,25,3,3,1,3,2,2019,3,2,31,10,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.130001,20.49,58.470001,50.220001,2,1,1,0,1,13,3,0,1924,304402.13,0,0,1032.6003 -5882,7267,13255,13254,-9,-9,2,1,0,25,1,0,0,0,3,-9,2,1,0,0,3,7.8255267,7.9690547,0,1,0,-9,3,0,0,-30.238579,0,1,1,34,2,1,3,-9,-9,2019,2,1,11,0,37,50,15,1,0,3,0,8.8185043,8.8185043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,50.220001,35.130001,20.49,5,1,1,0,0,13,3,0,1924,304402.13,0,0,1032.6003 -5883,7268,13256,13257,-9,-9,2,1,0,39,1,0,2,0,1,-9,1,1,0,0,3,2.7645721,3.106065,0,2,0,-9,15,0,-1,40.169777,0,0,1,40,1,2,1,1,1,2019,1,1,8,0,9,9,15,1,0,1,0,.2513583,.2513583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,39.389999,37.66,6,4,5,0,0,2,5,1,1332.25,495272.63,0,0,5332.0337 -5883,7268,13257,13256,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,2,9.5862846,9.4962206,0,2,0,-9,15,0,1,40.444855,0,0,0,39,1,3,1,1,2,2019,1,2,13,1,50,40,15,1,0,1,0,41.492374,41.492374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,37.66,59.310001,49.810001,4,4,5,0,0,2,5,1,1332.25,495272.63,0,0,5332.0337 -5883,7268,13258,-9,13256,13257,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.19122,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,2,5,1,1332.25,495272.63,0,0,5332.0337 -5883,7268,13259,-9,13256,13257,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.81598,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,5,0,0,2,5,1,1332.25,495272.63,0,0,5332.0337 -5884,7269,13260,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,2,1,0,0,3,8.6502972,8.5917664,0,3,0,0,0,-9,0,-885.6391,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,5,0,40,40,15,1,0,-9,0,15.256754,15.256754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.369999,40.830002,-9,-9,5,1,1,0,1,9,5,0,610,194571.22,0,0,1091.3495 -5885,7270,13261,13262,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,0,3,8.0069437,8.1230516,0,1,0,-9,8,0,5,204.30168,0,0,0,34,2,3,1,3,3,2019,1,2,16,5,40,43,15,1,1,1,0,9.5805368,9.5805368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.779999,52.959999,49.119999,53.02,6,1,1,0,0,2,5,0,331,162105.78,0,0,3468.8213 -5885,7270,13262,13261,-9,-9,2,1,0,34,1,0,0,0,2,-9,2,1,0,0,3,8.5936308,8.4290047,0,1,0,-9,8,0,-5,-32.008415,0,0,1,39,2,3,1,3,2,2019,1,1,7,0,46,43,15,1,0,1,0,11.752515,11.752515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.119999,53.02,40.779999,52.959999,6,1,1,0,0,2,5,0,331,162105.78,0,0,3468.8213 -5886,7271,13263,13264,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,1,1,8.1287146,8.0191383,0,1,0,-9,38,0,-1,39.198956,0,0,0,62,2,3,1,3,3,2019,1,1,28,11,35,35,15,1,1,1,0,9.9647121,9.9647121,0,0,0,0,0,0,0,0,1,1,0,1.471312,0,0,0,29.530001,19.07,36.599998,56.169998,2,1,1,0,0,2,4,0,369,602664.38,0,0,3976.5791 -5886,7271,13264,13263,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.8905492,7.7691817,0,1,0,-9,38,0,1,-39.368046,0,0,0,61,3,1,1,3,-9,2019,1,2,13,1,25,25,15,1,0,1,0,15.197115,15.197115,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.876812,2,36.599998,56.169998,29.530001,19.07,3,1,1,0,0,2,4,0,369,602664.38,0,0,3976.5791 -5887,7272,13265,-9,-9,-9,1,1,0,87,3,0,2,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1034.8171,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9440641,0,0,0,53,44,-9,-9,6,1,1,0,0,8,1,1,821,24538.023,0,0,1433.4634 -5887,7273,13266,13269,-9,-9,5,1,1,32,1,0,2,0,3,-9,2,1,0,0,4,7.5939078,7.9678855,0,2,0,-9,2,0,3,19.193882,0,0,0,29,3,4,3,-9,-9,2019,2,2,10,1,35,35,15,1,0,3,0,7.642859,7.642859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,48,57,5,1,1,0,0,8,2,1,1027,239747.05,0,0,2249.4297 -5887,7273,13267,-9,13269,13266,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.40472,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,2,1,1027,239747.05,0,0,2249.4297 -5887,7273,13268,-9,13269,13266,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.79114,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,2,1,1027,239747.05,0,0,2249.4297 -5887,7273,13269,13266,-9,-9,2,1,0,29,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-3,111.15247,0,1,1,32,3,4,1,3,3,2019,3,5,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.582155,3,48,57,50,57,5,1,1,0,0,8,2,1,1027,239747.05,0,0,2249.4297 -5888,7274,13270,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,6.4862652,6.3221993,3,0,0,0,-9,0,-1033.3735,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1576295,0,0,0,30.43,64.709999,-9,-9,6,1,1,0,0,5,2,1,432,168361.48,0,0,1723.2872 -5889,7275,13271,13272,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,0,5,7.338222,7.3983746,0,1,0,-9,24,0,2,66.433044,-9,0,0,45,1,4,1,2,2,2019,1,1,5,0,40,0,15,1,0,1,0,4.5897727,4.5897727,0,0,0,0,0,0,0,0,0,0,0,3.9016769,0,0,0,62.389999,56.709999,57.16,56.150002,6,1,1,0,0,12,5,1,1068.5,367321.75,0,0,4797.9653 -5889,7275,13272,13271,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,9.0782576,9.0902624,6.5425968,1,0,-9,24,0,-2,-21.616152,0,0,0,47,1,5,1,2,2,2019,1,2,7,0,50,37,15,1,0,1,0,19.306545,19.306545,0,0,0,0,0,0,0,7,0,0,0,0,6.9633574,4.8287191,3,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,12,5,1,1068.5,367321.75,0,0,4797.9653 -5890,7276,13273,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,4,0,8.0776567,7.9889703,3,0,0,0,-9,0,-994.90509,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,35.440037,0,1,1,0,6.9258947,8.5001888,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,1053,2563499.8,0,0,2854.6602 -5891,7277,13274,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-985.48181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.290001,17.610001,-9,-9,5,1,1,0,0,9,1,0,1383,38790.438,0,0,749.79236 -5892,7278,13275,-9,13276,13277,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.7336,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,1382.5,891768.13,0,0,6095.6064 -5892,7278,13276,13277,-9,-9,2,1,0,38,1,0,2,0,1,-9,1,1,0,0,3,8.9111404,8.9677324,0,2,0,-9,7,0,-5,-29.62092,-9,0,1,43,1,4,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,20.23189,20.23189,0,0,0,0,0,0,0,0,1,1,0,4.5606017,0,0,0,59.700001,53.75,47.439999,56.389999,6,1,1,0,0,9,5,1,1382.5,891768.13,0,0,6095.6064 -5892,7278,13277,13276,-9,-9,1,1,1,43,1,0,2,0,1,-9,1,1,0,0,4,8.8362703,9.0037899,0,2,0,-9,7,0,5,259.55569,0,0,0,38,1,3,1,2,1,2019,1,2,15,4,55,48,15,1,1,1,0,20.057467,20.057467,0,0,0,0,0,0,0,0,1,1,0,.61716467,0,0,0,47.439999,56.389999,59.700001,53.75,6,1,1,0,0,9,5,1,1382.5,891768.13,0,0,6095.6064 -5892,7278,13278,-9,13276,13277,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.3516,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,1382.5,891768.13,0,0,6095.6064 -5893,7279,13279,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,4,3,0,0,4,5.8930836,8.0792646,7.9232893,3,0,0,0,-9,0,-959.13568,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.996676,7.70576,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,10,3,1,340,616124.88,0,0,2001.7887 -5894,7280,13280,13281,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.7746763,8.7384872,0,1,0,-9,8,0,0,-10.905504,-9,0,0,59,1,5,1,3,2,2019,1,2,8,0,35,0,15,1,0,1,0,19.634008,19.634008,0,0,0,0,0,0,0,0,0,0,0,5.8535986,0,0,0,51.77,58.57,48.18,61.799999,6,1,1,0,0,8,5,1,179.5,1053501.8,0,0,5459.6504 -5894,7280,13281,13280,-9,-9,2,1,0,59,1,0,0,0,1,-9,1,1,0,0,5,8.6331367,8.4900608,0,1,0,-9,8,0,0,6.428813,0,0,0,59,2,4,1,3,2,2019,1,1,12,0,50,28,15,1,0,1,0,14.052628,14.052628,0,0,0,0,0,0,0,0,0,0,0,4.114821,0,0,0,48.18,61.799999,51.77,58.57,5,1,1,0,0,8,5,1,179.5,1053501.8,0,0,5459.6504 -5894,7281,13282,-9,13281,13280,3,1,0,21,2,0,0,1,2,-9,7,2,0,0,3,5.6357846,5.9310203,0,3,0,0,0,-9,0,-1131.1536,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.959999,55.639999,-9,-9,6,1,1,0,0,8,2,1,286,-9563.3623,0,0,266.4006 -5895,7282,13283,13284,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,8.5097179,8.7292051,0,1,0,-9,9,0,5,142.17206,0,0,0,42,1,2,1,2,2,2019,1,2,6,0,43,43,15,1,0,1,0,11.53442,11.53442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,46.91,51.799999,6,1,1,0,0,12,4,1,465,57113.09,0,0,2884.9204 -5895,7282,13284,13283,-9,-9,2,1,0,42,1,0,0,0,1,-9,1,1,0,0,2,6.4383602,6.4705472,0,1,0,-9,9,0,-5,-2.6837103,0,0,1,47,2,3,1,-9,-9,2019,1,1,6,0,20,0,15,1,0,1,0,4.2443223,4.2443223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.799999,55.959999,49.93,5,1,1,0,0,12,4,1,465,57113.09,0,0,2884.9204 -5896,7283,13285,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,5.7364092,5.552043,3,0,0,0,-9,0,-1060.563,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0001678,5.4126396,0,0,51.169998,36.950001,-9,-9,6,1,1,0,0,12,2,1,239,-111898.38,0,0,1056.1216 -5897,7284,13286,-9,13287,13288,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.22931,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,1,179,347485.69,0,0,2048.8098 -5897,7284,13287,13288,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,0,2,7.3549814,7.47018,0,2,0,-9,7,0,13,-120.76725,0,0,0,34,2,4,1,-9,-9,2019,1,2,11,0,21,21,15,1,0,1,0,12.695978,12.695978,0,0,0,0,0,0,0,7,1,1,0,0,0,4.4235582,3,48.439999,48.290001,57.16,56.150002,6,1,1,0,0,10,3,1,179,347485.69,0,0,2048.8098 -5897,7284,13288,13287,-9,-9,2,1,1,34,1,0,1,0,2,-9,1,1,0,0,4,7.8024731,8.041975,0,2,0,-9,9,0,-13,81.997498,0,0,0,47,3,2,1,-9,-9,2019,1,1,8,0,42,42,15,1,0,1,0,7.7854257,7.7854257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.439999,48.290001,6,1,1,0,0,10,3,1,179,347485.69,0,0,2048.8098 -5897,7285,13289,-9,13287,13288,5,1,0,22,2,0,1,0,2,-9,2,1,0,0,3,8.0687037,7.956038,0,4,0,0,0,-9,0,-985.79681,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,50,46,15,1,0,-9,0,9.7956953,9.7956953,0,0,0,0,0,0,0,0,1,1,0,3.5472674,0,0,0,46.080002,57.200001,-9,-9,6,1,1,0,0,10,3,1,112,-99995.992,0,0,2050.1113 -5898,7286,13290,13291,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,4,0,7.9554958,7.7883687,1,0,-9,13,0,8,12.457113,0,0,0,56,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3934765,7.8396635,0,0,55.360001,54.240002,45.049999,43.360001,5,1,1,0,0,7,3,0,436,968914,0,0,311.67953 -5898,7286,13291,13290,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,13,0,-8,145.35965,0,0,0,64,3,4,3,3,3,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,4.7168441,3,45.049999,43.360001,55.360001,54.240002,2,1,1,0,0,7,3,0,436,968914,0,0,311.67953 -5899,7287,13292,-9,13293,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-951.8418,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,8,4,1,140,86890.133,0,0,1315.4814 -5899,7287,13293,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,0,3,8.4234715,8.431366,0,4,0,0,0,-9,0,-1049.3582,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,46,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.220001,53.970001,-9,-9,5,3,4,0,0,8,4,1,140,86890.133,0,0,1315.4814 -5900,7288,13294,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,2,1,0,0,3,8.6337271,8.6386003,0,3,0,0,0,-9,0,-1155.5763,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,36,36,15,1,0,-9,0,17.274315,17.274315,0,0,0,0,0,0,0,0,0,0,0,6.4057708,0,0,0,50.630001,40.25,-9,-9,3,2,3,0,0,8,5,1,543,1481655.5,0,0,3703.8291 -5901,7289,13295,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,0,2,8.6830893,8.813488,0,3,0,0,0,-9,0,-1111.816,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,70,0,15,1,1,-9,0,7.7432432,7.7432432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.98,54.549999,-9,-9,2,1,1,0,0,10,5,0,712,51997.855,0,0,568.42822 -5902,7290,13296,13297,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,1,7.9713278,8.1297235,0,1,0,-9,7,0,-12,38.389515,0,0,0,61,2,2,1,2,3,2019,1,1,11,2,36,36,15,1,0,1,0,10.346292,10.346292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.610001,41.040001,36.599998,48.259998,4,1,1,0,0,4,4,1,615,648330,0,0,3755.5203 -5902,7290,13297,13296,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,8.0497341,7.9298253,0,1,0,-9,7,0,12,23.591118,0,0,0,49,2,1,1,3,-9,2019,1,2,16,4,40,38,15,1,1,1,0,9.7583504,9.7583504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.599998,48.259998,49.610001,41.040001,6,1,1,0,0,4,4,1,615,648330,0,0,3755.5203 -5903,7291,13298,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.326848,8.1373482,0,3,0,-9,0,-9,0,-910.31818,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,0,15,1,0,-9,0,10.985211,10.985211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,46.029999,-9,-9,6,3,4,0,0,8,4,0,108,-51863.297,0,0,2010.9645 -5904,7292,13299,-9,13301,13300,2,1,0,20,2,0,0,0,2,-9,7,2,0,0,5,7.0635619,7.3032312,0,3,0,0,0,-9,0,-1086.2922,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,24,24,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,6,1,1,0,0,4,3,1,1162,-102197.23,0,0,718.53375 -5904,7293,13300,13301,-9,-9,3,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.4950695,8.3866148,0,1,0,-9,4,0,4,59.518387,0,0,0,40,2,3,1,-9,-9,2019,1,1,18,6,48,50,15,1,1,1,0,11.758083,11.758083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.740002,41.689999,30.219999,57.869999,3,1,1,0,0,4,5,1,376.5,210806.59,0,0,4157.8745 -5904,7293,13301,13300,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,3,8.124239,8.2758627,0,1,0,-9,4,0,-4,35.677357,0,0,1,44,2,2,1,2,2,2019,1,3,12,0,42,41,15,1,0,1,0,11.125425,11.125425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.219999,57.869999,39.740002,41.689999,4,1,1,0,0,4,5,1,376.5,210806.59,0,0,4157.8745 -5905,7294,13302,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,1,0,7.0529504,6.8533936,3,0,0,0,-9,0,-1020.5256,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7782807,7.1829481,0,0,40.310001,14.24,-9,-9,3,1,1,0,0,11,2,1,1867,362030.06,0,0,770.35193 -5906,7295,13303,-9,13304,13306,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.2898,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,5,1,453.5,566417.5,0,0,4805.9072 -5906,7295,13304,13306,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,7.7187796,7.9049678,0,2,0,-9,19,0,-3,-36.914486,0,0,1,40,1,4,1,3,1,2019,1,2,22,10,14,14,15,1,1,1,0,20.179871,20.179871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.990002,59.25,51,56,6,4,2,0,0,7,5,1,453.5,566417.5,0,0,4805.9072 -5906,7295,13305,-9,13304,13306,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.20801,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,5,1,453.5,566417.5,0,0,4805.9072 -5906,7295,13306,13304,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,4,9.2618208,8.9991903,0,2,0,-9,13,0,3,39.750904,0,0,0,37,2,4,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,30.908066,30.908066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,38.990002,59.25,5,1,1,0,0,7,5,1,453.5,566417.5,0,0,4805.9072 -5907,7296,13307,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,7.0110826,7.3688679,3,0,0,0,-9,0,-987.07532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.2884035,0,0,53,44,-9,-9,6,1,1,0,0,8,2,1,1760,86133.102,0,0,520.93567 -5908,7297,13308,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1004.6126,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.34,26.65,-9,-9,1,1,1,0,1,10,1,0,223,42903.77,0,0,1604.2793 -5909,7298,13309,-9,13311,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-914.33936,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,3,0,493.33334,9398.8359,0,0,2397.5269 -5909,7298,13310,-9,13311,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-986.1792,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,3,0,493.33334,9398.8359,0,0,2397.5269 -5909,7298,13311,-9,-9,-9,1,1,0,26,2,0,2,0,2,-9,2,1,0,0,4,8.2870436,7.8651586,0,4,0,0,0,-9,0,-1106.5719,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,40,46,15,1,0,-9,0,8.3393145,8.3393145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,55.75,-9,-9,6,1,1,0,0,6,3,0,493.33334,9398.8359,0,0,2397.5269 -5910,7299,13312,13313,-9,-9,1,1,0,88,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,6,0,1,32.877457,0,0,0,87,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,40.244293,0,0,0,0,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,0,5,2,1,662,327499.19,0,0,1395.485 -5910,7299,13313,13312,-9,-9,2,1,1,87,1,0,0,0,3,-9,4,3,0,1,3,0,5.6138663,5.3585734,1,0,-9,6,0,-1,-8.4714594,0,0,0,88,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.3366065,35.215599,1,55,45,53,44,6,1,1,0,0,5,2,1,662,327499.19,0,0,1395.485 -5911,7300,13314,13315,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,5,0,6.7444792,6.7869701,1,0,-9,41,0,-13,-171.68037,0,0,0,86,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8066101,6.6901889,0,0,57.060001,57.759998,55,45,7,1,1,0,0,8,3,1,535.5,666349.63,0,0,2332.634 -5911,7300,13315,13314,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,0,3,0,7.5463581,7.3726373,1,0,-9,7,0,13,-64.926765,0,0,0,73,2,5,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5122981,7.3977971,0,0,55,45,57.060001,57.759998,6,1,1,0,0,8,3,1,535.5,666349.63,0,0,2332.634 -5912,7301,13316,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1153.2147,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,5.4661865,0,1,1,0,0,0,0,0,52,47,-9,-9,5,1,1,0,0,12,1,0,922,-134613.22,0,0,1274.8711 -5913,7302,13317,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,0,3,0,7.8239703,7.5838842,3,0,0,0,-9,0,-875.87952,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8737607,8.0628252,0,0,58.470001,44.689999,-9,-9,6,1,1,0,0,4,4,1,631,881193.56,0,0,404.78809 -5914,7303,13318,13321,-9,-9,3,1,1,39,1,1,4,0,2,-9,2,1,0,0,4,6.7028708,6.7579126,0,2,0,-9,2,0,4,78.181885,0,0,0,35,3,1,3,-9,-9,2019,2,1,18,6,16,16,15,1,1,3,0,6.4562631,6.4562631,0,0,0,0,0,0,0,110,1,1,0,0,0,121.25875,1,42.080002,53.5,26.65,23.110001,5,1,1,0,0,11,2,0,1500.5,-40703.922,0,0,2100.3323 -5914,7303,13319,-9,13321,13318,5,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-880.14075,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,0,1500.5,-40703.922,0,0,2100.3323 -5914,7303,13320,-9,13321,13318,2,1,1,12,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1079.7333,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,11,2,0,1500.5,-40703.922,0,0,2100.3323 -5914,7303,13321,13318,-9,-9,1,1,0,35,1,1,4,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,2,0,-4,-104.64621,0,0,1,39,2,4,1,-9,2,2019,3,3,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.65,23.110001,42.080002,53.5,4,1,1,0,0,11,2,0,1500.5,-40703.922,0,0,2100.3323 -5914,7303,13322,-9,13321,13318,4,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.7159,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,2,0,1500.5,-40703.922,0,0,2100.3323 -5914,7303,13323,-9,13321,13318,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1152.2052,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,2,0,1500.5,-40703.922,0,0,2100.3323 -5915,7304,13324,13325,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,9.1275568,9.4341917,0,1,0,-9,5,0,3,-46.217205,0,0,0,52,2,4,3,2,1,2019,2,2,9,0,42,43,15,1,0,3,0,25.893219,25.893219,0,0,0,0,0,0,0,0,0,0,0,7.3047585,0,0,0,55.189999,54.259998,51,54,2,1,1,0,0,12,5,1,529,380438.94,0,0,3512.7029 -5915,7304,13325,13324,-9,-9,2,1,0,52,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,5,0,-3,-53.648087,0,0,0,55,1,4,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,55.189999,54.259998,6,1,1,1,0,12,5,1,529,380438.94,0,0,3512.7029 -5916,7305,13326,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,8.3367834,8.2702398,3.4984083,3,0,0,0,-9,0,-980.68811,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,38,15,1,0,-9,0,12.710246,12.710246,0,0,0,0,0,0,0,0,0,0,0,0,4.1758313,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,6,4,1,1111,58230.898,0,0,1293.8921 -5917,7306,13327,13328,-9,-9,1,1,0,58,1,0,0,0,1,-9,4,3,0,0,3,0,9.0018759,8.8721514,1,0,-9,2,0,-11,99.573051,0,0,0,69,1,4,3,3,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1966429,9.0728168,0,0,54.700001,40.889999,54.200001,57.490002,5,1,1,0,0,7,5,1,1122,3175272,0,0,8042.21 -5917,7306,13328,13327,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.9793653,9.1364803,1,0,-9,2,0,11,-6.7278438,0,0,0,58,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,36.978645,0,0,0,0,0,1,1,0,5.6795869,8.585269,0,0,54.200001,57.490002,54.700001,40.889999,7,1,1,0,0,7,5,1,1122,3175272,0,0,8042.21 -5918,7307,13329,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,0,3,0,7.9660525,7.7123623,3,0,0,0,-9,0,-1048.0526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7503619,7.846858,0,0,63.169998,32.939999,-9,-9,6,1,1,0,0,2,3,1,919,1036051.8,0,0,2452.9685 -5919,7308,13330,13331,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,8.5445566,8.4479084,0,1,0,-9,4,0,-12,-9.5042171,0,0,1,54,2,3,1,-9,-9,2019,1,1,10,0,38,48,15,1,0,1,0,11.527671,11.527671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,58.889999,48.599998,6,1,1,0,0,5,5,0,616.5,1380845.5,0,0,3174.667 -5919,7308,13331,13330,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.6181736,8.8224773,0,1,0,-9,4,0,12,-87.637924,0,0,0,42,2,4,1,2,2,2019,1,2,11,0,60,48,15,1,0,1,0,9.7367792,9.7367792,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.889999,48.599998,51.830002,57.200001,2,1,1,0,0,5,5,0,616.5,1380845.5,0,0,3174.667 -5920,7309,13332,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,1,1,0,1,2,4.8045616,4.5348673,0,3,0,0,0,-9,0,-958.58105,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.549999,38.299999,-9,-9,4,3,4,0,0,5,2,0,184,-87282.508,0,0,364.85199 -5921,7310,13333,13334,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.0886106,8.2134037,0,1,0,-9,5,0,-4,18.957066,0,1,1,30,2,4,1,-9,-9,2019,1,2,12,3,30,38,15,1,0,1,0,13.184457,13.184457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.139999,46.439999,50.490002,48.369999,6,1,1,0,0,4,5,1,1767,184443.95,0,0,2507.2686 -5921,7310,13334,13333,-9,-9,2,1,1,30,1,0,0,0,2,-9,1,1,0,0,4,8.6335669,8.4134378,0,1,0,-9,5,0,4,-45.887894,0,0,0,26,1,4,1,-9,-9,2019,1,1,8,0,60,50,15,1,0,1,0,7.3349466,7.3349466,0,0,0,0,0,0,0,0,0,0,0,5.8004937,0,0,0,50.490002,48.369999,60.139999,46.439999,6,1,1,0,0,4,5,1,1767,184443.95,0,0,2507.2686 -5922,7311,13335,13339,-9,-9,5,1,1,40,1,1,4,0,2,-9,2,1,0,0,5,8.0419779,8.4945364,7.695344,2,0,-9,2,0,-1,64.628242,-9,0,0,41,2,3,3,-9,-9,2019,2,1,19,6,65,0,15,1,1,3,0,5.6212249,5.6212249,0,0,0,0,0,0,0,2,1,1,0,0,7.6551485,0,3,37.84,65.459999,53.23,42.900002,6,1,1,0,1,9,3,1,1309.5,600638.88,0,0,3969.9463 -5922,7311,13336,-9,13339,13335,4,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.43085,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,1309.5,600638.88,0,0,3969.9463 -5922,7311,13337,-9,13339,13335,3,1,1,14,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.3089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,1309.5,600638.88,0,0,3969.9463 -5922,7311,13338,-9,13339,13335,2,1,1,16,2,1,4,1,2,-9,7,2,0,1,3,0,0,0,2,0,0,0,-9,0,-921.60309,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,9,3,1,1309.5,600638.88,0,0,3969.9463 -5922,7311,13339,13335,-9,-9,1,1,0,41,1,1,4,0,2,-9,6,3,0,1,3,0,5.7063351,5.6740975,2,0,-9,2,0,1,-125.45044,0,0,1,40,2,5,1,3,2,2019,3,5,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7213607,0,6.4681311,3,53.23,42.900002,37.84,65.459999,5,1,1,0,0,9,3,1,1309.5,600638.88,0,0,3969.9463 -5922,7311,13340,-9,13339,13335,6,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-946.104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,3,1,1309.5,600638.88,0,0,3969.9463 -5923,7312,13341,-9,-9,-9,1,1,0,40,2,0,5,0,3,-9,2,1,0,0,4,7.3221941,6.6998153,0,4,0,-9,0,-9,0,-878.24524,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,16,0,15,1,0,-9,0,9.6726484,9.6726484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,5,3,4,0,0,8,2,0,1121,-24485.502,0,0,3687.9229 -5923,7312,13342,-9,13341,-9,6,1,1,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1068.3864,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,1121,-24485.502,0,0,3687.9229 -5924,7313,13343,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.2421827,8.31217,0,3,0,0,0,-9,0,-1019.7211,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,38,38,15,1,0,-9,0,14.777411,14.777411,0,0,0,0,0,0,0,0,0,0,0,1.7795726,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,4,1,802,-13039.875,0,0,1573.047 -5925,7314,13344,13345,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,7.4453406,7.1644487,1,0,-9,9,0,-8,139.58125,0,0,0,78,3,1,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.8261259,7.3288608,94.629768,1,51.650002,52.380001,32.380001,21.92,5,1,1,0,0,2,2,1,457.5,634337,0,0,1674.0785 -5925,7314,13345,13344,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,9,0,8,34.208336,0,0,0,70,2,2,3,-9,-9,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,0,121.09686,0,0,0,0,0,1,1,0,0,0,0,0,32.380001,21.92,51.650002,52.380001,6,1,1,0,0,2,2,1,457.5,634337,0,0,1674.0785 -5926,7315,13346,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,2,1,0,0,3,8.8303814,8.9970379,0,3,0,0,0,-9,0,-1063.4462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,39,39,15,1,0,-9,0,17.216396,17.216396,0,0,0,0,0,0,0,0,1,1,0,2.1555727,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,8,5,1,149,118166.26,0,0,3793.2866 -5927,7316,13347,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,1,0,6.5665941,6.5343142,3,0,0,0,-9,0,-1054.0807,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,3,0,0,15,4,0,-9,0,0,0,1,6.6317825,0,8.5223761,0,3.606667,42.91655,0,1,1,0,.53574985,6.4490829,0,0,43.610001,16.940001,-9,-9,6,1,1,0,0,10,2,1,291,-52246.094,0,0,1991.1724 -5928,7317,13348,13349,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,3,6.4433184,6.1148143,0,1,0,-9,35,0,-2,-110.25348,0,0,0,56,2,3,1,2,2,2019,1,1,11,0,8,8,15,1,0,1,0,6.860867,6.860867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,48.360001,37.240002,4,1,1,0,0,4,4,0,903.5,500624.56,0,0,2443.6553 -5928,7317,13349,13348,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.3103552,8.3550653,6.9843554,1,0,-9,35,0,2,67.605515,0,0,0,54,3,3,1,3,-9,2019,1,2,7,1,42,53,15,1,0,1,0,10.517908,10.517908,0,0,0,0,0,0,0,7,0,0,0,2.8231735,7.4112453,14.556352,3,48.360001,37.240002,51.41,56.150002,3,1,1,0,0,4,4,0,903.5,500624.56,0,0,2443.6553 -5928,7318,13350,-9,13348,13349,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,8.2962341,8.2783937,0,3,0,0,0,-9,0,-925.75421,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,37,46,15,1,0,-9,1,9.8074293,9.8074293,0,0,0,0,0,0,0,0,0,0,0,2.0671573,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,4,4,0,740,240882.48,0,0,489.19479 -5928,7319,13351,-9,13348,13349,4,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,8.2014732,8.4377594,0,3,0,0,0,-9,0,-943.6543,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,40,39,15,1,0,-9,1,13.046465,13.046465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.619999,53.529999,-9,-9,6,1,1,0,0,4,4,0,494,-26352.674,0,0,2218.9209 -5929,7320,13352,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,7.7151465,7.5314627,3,0,0,0,-9,0,-906.53394,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4640508,7.5688839,0,3,57.759998,48.98,-9,-9,6,1,1,0,0,1,3,1,148,1674457.8,0,0,2376.8379 -5930,7321,13353,-9,13354,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-997.49127,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,304,-71140.742,0,0,1063.3937 -5930,7321,13354,-9,-9,-9,1,1,0,30,3,0,1,0,2,-9,2,1,0,0,4,7.2710824,7.6140022,5.973475,4,0,-9,0,1,0,-954.92407,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,17,18,15,1,0,-9,0,10.891138,10.891138,0,0,0,0,0,0,0,0,1,1,0,5.9457812,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,1,3,0,304,-71140.742,0,0,1063.3937 -5931,7322,13355,13357,-9,-9,2,1,0,48,1,0,1,0,3,-9,4,3,0,1,1,0,0,0,2,0,-9,10,0,-13,-28.43228,0,0,0,61,3,4,1,3,3,2019,3,1,33,12,0,25,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.01,28.09,46.32,50.259998,1,1,1,0,0,13,3,1,550,1300268.1,0,0,3094.9702 -5931,7322,13356,-9,13355,13357,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1077.0033,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,13,3,1,550,1300268.1,0,0,3094.9702 -5931,7322,13357,13355,-9,-9,1,1,1,61,1,0,1,0,3,-9,2,1,0,0,4,8.36061,8.7148037,0,2,0,-9,10,0,13,76.505829,0,0,0,48,3,1,3,2,2,2019,2,2,15,2,45,40,15,1,0,4,0,9.9666986,9.9666986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,46.32,50.259998,22.01,28.09,3,1,1,0,0,13,3,1,550,1300268.1,0,0,3094.9702 -5931,7323,13358,-9,13355,13357,3,1,1,19,2,0,1,0,3,-9,2,1,0,0,5,7.9977598,8.0183907,0,3,0,0,0,-9,0,-962.51721,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,36,15,1,0,-9,1,8.3544865,8.3544865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,4,1,264,-101316.25,0,0,1663.6501 -5932,7324,13359,13360,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.8416777,7.6646342,1,0,-9,29,0,1,169.19484,0,0,0,69,2,4,3,2,1,2019,4,2,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.102725,8.1061907,0,0,48.080002,35.880001,32.32,63.900002,6,1,1,0,0,2,4,1,740,1542874.4,0,0,4210.8574 -5932,7324,13360,13359,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.0508714,7.1581025,1,0,-9,29,0,-1,10.499275,0,0,0,70,1,4,3,1,2,2019,4,1,22,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0889778,7.1853886,0,0,32.32,63.900002,48.080002,35.880001,6,1,1,0,0,2,4,1,740,1542874.4,0,0,4210.8574 -5933,7325,13361,-9,-9,-9,1,1,1,41,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-985.25067,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,-9,-9,5,4,5,0,0,8,1,0,335,-90345.359,0,0,1619.5792 -5934,7326,13362,13363,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,56,0,-4,-31.620228,0,0,0,81,3,4,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,5.6544466,0,0,0,0,0,1,1,0,3.2193043,0,0,0,35.389999,40.639999,47.450001,60.439999,6,1,1,0,0,11,3,1,1101,643507.13,0,0,1739.1443 -5934,7326,13363,13362,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,4,0,7.7678671,7.7195187,1,0,-9,56,0,4,-13.090888,0,0,0,77,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7612839,7.7074285,0,0,47.450001,60.439999,35.389999,40.639999,6,1,1,0,0,11,3,1,1101,643507.13,0,0,1739.1443 -5935,7327,13364,13365,-9,-9,1,1,0,24,1,0,2,0,2,-9,2,1,0,0,4,6.8942513,7.0767202,0,2,0,-9,5,0,-10,-75.880508,0,1,1,34,2,3,1,2,3,2019,1,2,13,2,16,0,15,1,0,1,0,6.3801827,6.3801827,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.72908,3,44.189999,56.73,27.959999,54.98,4,1,1,0,0,10,3,0,1030,51988.879,0,0,3546.8533 -5935,7327,13365,13364,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,1,3,7.8077254,8.1262732,0,2,0,-9,5,0,10,-.14673214,0,0,0,24,2,4,1,-9,-9,2019,1,1,28,12,60,40,15,1,1,1,0,5.5618787,5.5618787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.959999,54.98,44.189999,56.73,2,1,1,0,1,10,3,0,1030,51988.879,0,0,3546.8533 -5935,7327,13366,-9,13364,13365,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.44452,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,1030,51988.879,0,0,3546.8533 -5936,7328,13367,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,0,5,9.1904182,9.2185793,0,3,0,0,0,-9,0,-1002.6187,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,0,27.858429,27.858429,0,0,0,0,0,0,0,0,0,0,0,2.2691681,0,0,0,56.470001,59.400002,-9,-9,3,1,1,0,0,4,5,1,106,-11536.221,0,0,3162.0859 -5936,7329,13368,-9,-9,13367,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,8.0385103,7.9777083,0,3,0,0,0,-9,0,-895.93536,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,41,47,15,1,0,-9,1,10.735724,10.735724,0,0,0,0,0,0,0,0,0,0,0,1.9399781,0,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,4,4,1,717,106577.62,0,0,2591.3826 -5937,7330,13369,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,3,7.7441468,7.7989426,0,3,0,0,0,-9,0,-920.06335,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,17,8,35,34,15,1,1,-9,0,7.7356596,7.7356596,0,0,0,0,0,0,0,0,0,0,0,7.4915934,0,0,0,46.470001,51.73,-9,-9,3,1,1,0,0,12,3,1,431,15500.136,0,0,567.28693 -5937,7331,13370,-9,-9,-9,2,1,1,46,2,0,0,0,2,-9,1,1,0,0,4,8.141984,8.1543808,0,3,0,0,0,-9,0,-956.71228,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,70,0,15,1,0,-9,0,4.9480128,4.9480128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,6,4,6,0,0,12,4,1,371,-105597.4,0,0,2255.0691 -5938,7332,13371,13372,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,7.0430737,6.8447752,1,0,-9,52,0,1,94.075027,0,0,0,83,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3438978,7.0026588,0,0,66.199997,41.049999,49.349998,59.639999,7,1,1,0,0,9,2,1,483.5,823721.56,0,0,2589.8916 -5938,7332,13372,13371,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,0,4,0,5.2149467,5.3787751,1,0,-9,52,0,-1,-83.871208,0,0,0,84,3,4,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1151495,5.3492122,0,0,49.349998,59.639999,66.199997,41.049999,6,1,1,0,0,9,2,1,483.5,823721.56,0,0,2589.8916 -5939,7333,13373,-9,13375,13374,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.00891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,786.75,146552.03,0,0,3738.1917 -5939,7333,13374,13375,-9,-9,1,1,1,32,1,0,2,0,2,-9,2,1,0,0,3,8.7435379,8.401967,0,2,0,-9,11,0,-3,29.030424,0,0,0,35,2,3,1,2,2,2019,1,2,10,0,38,39,15,1,0,1,0,17.245855,17.245855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,49.290001,54.59,6,1,1,0,0,13,4,1,786.75,146552.03,0,0,3738.1917 -5939,7333,13375,13374,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,3,7.2476068,7.1848125,4.3870993,2,0,-9,11,0,3,8.4547205,0,0,1,32,2,3,1,1,2,2019,1,1,10,0,31,23,15,1,0,1,0,5.3529997,5.3529997,0,0,0,0,0,0,0,0,1,1,0,6.1864781,0,0,0,49.290001,54.59,57.330002,53.459999,6,1,1,0,0,13,4,1,786.75,146552.03,0,0,3738.1917 -5939,7333,13376,-9,13375,13374,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.29004,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,786.75,146552.03,0,0,3738.1917 -5940,7334,13377,13380,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,5,8.7289286,8.7679052,0,2,0,-9,21,0,5,18.190634,0,0,0,44,1,3,1,-9,-9,2019,1,1,10,1,39,41,15,1,0,1,0,17.405769,17.405769,0,0,0,0,0,0,0,0,1,1,0,7.0567861,0,0,0,51.73,58.82,41.23,59.349998,6,1,1,0,0,11,4,1,883.25,339680.22,0,0,4587.1226 -5940,7334,13378,-9,13380,13377,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.985,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,11,4,1,883.25,339680.22,0,0,4587.1226 -5940,7334,13379,-9,13380,13377,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.07629,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,11,4,1,883.25,339680.22,0,0,4587.1226 -5940,7334,13380,13377,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,7.7728205,7.7351193,0,2,0,-9,12,0,-5,-85.308861,0,0,1,49,1,5,1,2,3,2019,1,2,8,0,27,26,15,1,0,1,0,8.9339018,8.9339018,0,0,0,0,0,0,0,99,1,1,0,1.9979984,0,125.7535,3,41.23,59.349998,51.73,58.82,2,2,3,0,0,11,4,1,883.25,339680.22,0,0,4587.1226 -5941,7335,13381,13382,-9,-9,1,1,0,86,1,0,0,0,2,-9,4,3,0,0,4,0,6.2412515,6.1528378,1,0,-9,65,0,-1,-41.641354,0,0,0,87,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2906947,0,0,44.02,60.700001,54,45,6,1,1,0,0,12,2,1,245,252145.55,0,0,2608.3711 -5941,7335,13382,13381,-9,-9,2,1,1,87,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,65,0,1,59.270058,0,0,0,86,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,.1038665,0,0,0,0,0,1,1,0,0,0,0,0,54,45,44.02,60.700001,6,1,1,0,0,12,2,1,245,252145.55,0,0,2608.3711 -5942,7336,13383,-9,-9,-9,1,1,0,21,2,0,1,0,2,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-1056.9989,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,1,0,13,1,0,946,-112055.78,0,0,1804.7805 -5942,7336,13384,-9,13383,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1124.7556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,1,0,946,-112055.78,0,0,1804.7805 -5943,7337,13385,13386,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,39,0,2,142.28262,0,0,0,64,2,3,1,-9,-9,2019,3,1,11,2,0,0,15,4,0,1,0,0,0,1,0,26.087635,0,0,0,0,0,1,1,0,0,0,0,0,61.610001,21.73,52,54.509998,4,1,1,0,1,12,3,1,632.5,-30463.881,0,0,1438.2277 -5943,7337,13386,13385,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,7.95327,7.6500254,0,1,0,-9,39,0,-2,-68.379807,0,0,0,66,3,2,3,-9,-9,2019,2,2,13,2,30,25,15,1,0,4,0,7.0794916,7.0794916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,61.610001,21.73,6,1,1,0,0,12,3,1,632.5,-30463.881,0,0,1438.2277 -5944,7338,13387,13390,-9,-9,1,1,0,42,1,0,2,0,1,-9,1,1,0,0,4,7.1871815,6.9269838,0,2,0,-9,21,0,-1,-55.516567,0,0,1,43,1,3,1,2,2,2019,1,2,13,1,23,25,15,1,0,1,0,7.5794072,7.5794072,0,0,0,0,0,0,0,0,1,1,0,4.4589958,0,0,0,42.950001,61.240002,53.59,49.639999,6,1,1,0,0,5,4,1,304.75,432218.88,0,0,3534.7178 -5944,7338,13388,-9,13387,13390,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.37006,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,304.75,432218.88,0,0,3534.7178 -5944,7338,13389,-9,13387,13390,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.3943,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.98,55.950001,-9,-9,7,1,1,0,0,5,4,1,304.75,432218.88,0,0,3534.7178 -5944,7338,13390,13387,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,3,8.6019688,8.887641,0,2,0,-9,23,0,1,-14.66913,0,0,0,42,1,4,1,1,2,2019,1,1,8,0,43,42,15,1,0,1,0,15.001996,15.001996,0,0,0,0,0,0,0,0,1,1,0,4.6356711,0,0,0,53.59,49.639999,42.950001,61.240002,6,1,1,0,0,5,4,1,304.75,432218.88,0,0,3534.7178 -5945,7339,13391,13392,-9,-9,2,1,1,60,1,0,0,0,1,-9,8,3,1,1,1,0,0,0,1,0,-9,1,-9,5,0,-9,0,0,55,3,1,3,-9,-9,2019,4,1,24,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.3212922,1,35.529999,19.08,38.709999,28.469999,6,1,1,0,0,6,1,0,379.5,1580928.5,0,0,1482.748 -5945,7339,13392,13391,-9,-9,1,1,0,55,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,25,-9,-5,0,-9,0,0,60,1,1,3,3,3,2019,4,2,22,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,18.697824,1,38.709999,28.469999,35.529999,19.08,5,1,1,1,0,6,1,0,379.5,1580928.5,0,0,1482.748 -5946,7340,13393,13394,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.3769941,8.5466537,0,1,0,-9,1,-9,-1,67.13343,-9,1,1,30,1,5,1,2,2,2019,1,2,10,1,45,0,15,1,0,1,0,12.467695,12.467695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.419998,52.330002,51.73,58.82,6,1,1,0,1,9,5,1,948,136010.19,0,0,3829.0815 -5946,7340,13394,13393,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,7.9250374,8.2170868,0,1,0,-9,1,-9,1,-25.331667,-9,0,0,29,1,4,1,2,2,2019,1,1,7,0,35,0,15,1,0,1,0,12.440363,12.440363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,53.419998,52.330002,6,1,1,0,1,9,5,1,948,136010.19,0,0,3829.0815 -5947,7341,13395,-9,13396,-9,3,1,1,17,2,0,3,0,2,1,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-954.51282,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.650002,39.389999,-9,-9,3,1,1,1,0,5,2,0,390.5,76761.008,0,0,2091.3433 -5947,7341,13396,-9,-9,-9,1,1,0,42,2,0,3,0,2,-9,2,1,0,0,4,6.8732762,7.2929192,0,4,0,0,0,-9,0,-954.07745,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,20,30,15,1,0,-9,0,6.6306148,6.6306148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,5,2,0,390.5,76761.008,0,0,2091.3433 -5948,7342,13397,13398,-9,-9,2,1,0,47,1,0,0,0,2,-9,3,3,0,1,3,0,0,0,1,0,-9,22,0,2,-89.471115,0,0,0,45,2,3,1,2,2,2019,3,1,13,4,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.939999,20.870001,56.950001,46.689999,6,1,1,1,0,2,5,1,631,258267.69,0,0,3382.8477 -5948,7342,13398,13397,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,0,3,9.2511463,9.180398,0,1,0,-9,22,0,-2,-5.2333035,0,0,0,47,2,3,3,2,1,2019,2,2,9,0,55,60,15,1,0,3,0,23.879187,23.879187,0,0,0,0,0,0,0,7,1,1,0,0,0,16.285107,2,56.950001,46.689999,54.939999,20.870001,5,1,1,0,0,2,5,1,631,258267.69,0,0,3382.8477 -5948,7343,13399,-9,13397,13398,3,1,0,19,2,0,0,0,1,1,2,1,0,0,3,7.6955237,7.5340619,0,3,0,0,0,-9,0,-955.86462,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,0,15,1,0,-9,1,7.3957114,7.3957114,0,0,0,0,0,0,0,7,1,1,0,0,0,5.0462532,3,54.369999,54.799999,-9,-9,6,1,1,0,0,2,3,1,1975,209456.17,0,0,357.43289 -5949,7344,13400,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,2,0,8.3355436,8.5502567,3,0,0,0,-9,0,-1088.9247,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,61.319653,0,1,1,0,0,8.1117516,0,0,52.049999,37.549999,-9,-9,6,1,1,0,0,8,4,1,1189,1929967.8,0,0,2234.8171 -5950,7345,13401,-9,13402,-9,2,1,1,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-913.72546,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,1,0,566.5,0,0,0,921.87988 -5950,7345,13402,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-959.15472,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.049999,35.48,-9,-9,3,1,1,0,0,13,1,0,566.5,0,0,0,921.87988 -5951,7346,13403,-9,-9,-9,1,1,0,21,2,0,0,1,1,0,7,2,0,0,4,7.0704288,6.9828758,0,3,0,0,0,-9,0,-888.36346,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,9,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.84,63.799999,-9,-9,3,1,1,0,0,12,2,0,132,-56085.949,0,0,1587.5125 -5952,7347,13404,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,4,8.465023,8.3319016,0,3,0,-9,0,1,0,-992.90253,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,37,37,15,1,0,-9,0,17.173677,17.173677,0,0,0,0,0,0,0,0,1,1,0,5.2320662,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,0,181,-14382.211,0,0,3271.4565 -5953,7348,13405,-9,-9,-9,1,1,0,27,2,0,2,0,2,-9,6,3,0,1,2,0,5.767982,5.9607949,4,0,0,0,-9,0,-960.70831,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.2028494,0,69.833702,3,23.84,47.470001,-9,-9,4,1,1,0,0,6,2,0,2134,0,0,0,2053.1162 -5953,7348,13406,-9,13405,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1029.328,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,2134,0,0,0,2053.1162 -5953,7348,13407,-9,13405,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-991.91681,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,2134,0,0,0,2053.1162 -5954,7349,13408,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,3,8.7273254,8.7481966,0,3,0,0,0,-9,0,-964.18701,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,45,45,15,1,0,-9,0,15.609973,15.609973,0,0,0,0,0,0,0,0,1,1,0,3.6295447,0,0,0,45.490002,50.810001,-9,-9,3,1,1,0,0,7,5,1,943,508318.75,0,0,1806.8981 -5955,7350,13409,13410,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,7.7647381,7.7327614,1,0,-9,9,0,1,65.643929,0,0,0,74,2,2,3,3,3,2019,4,2,26,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,8.0890236,132.77965,2,36.509998,33.669998,32.540001,20.5,6,1,1,0,0,5,3,1,468,859692.75,0,0,3492.8596 -5955,7350,13410,13409,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,7.1625729,6.8233056,1,0,-9,9,0,-1,16.292929,0,0,0,75,2,2,3,2,3,2019,4,1,24,11,0,0,15,4,1,4,0,0,0,1,0,128.11842,0,0,0,0,0,1,1,0,.54108155,7.2117958,0,0,32.540001,20.5,36.509998,33.669998,4,1,1,0,0,5,3,1,468,859692.75,0,0,3492.8596 -5956,7351,13411,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,5,0,5.1036234,5.3234949,3,0,0,0,-9,0,-882.0249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9348655,4.3675466,4.1178117,3,60.02,56.419998,-9,-9,7,1,1,0,0,13,2,1,683,412102.94,0,0,943.63715 -5957,7352,13412,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1096.3466,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,6,2,3,0,0,8,1,1,707,0,0,0,-175.19745 -5958,7353,13413,13414,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,6.7110229,7.1998849,1,0,-9,44,0,3,31.667116,0,0,0,60,1,1,3,3,3,2019,4,2,5,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.5565901,7.3207488,36.211758,1,57.740002,43.82,26.280001,24.950001,6,1,1,0,0,7,2,1,565,601804.88,0,0,1670.0695 -5958,7353,13414,13413,-9,-9,2,1,1,60,1,0,0,0,1,-9,8,3,1,1,1,0,6.9077883,7.188889,1,0,-9,44,0,-3,3.5150752,0,0,0,63,2,3,3,-9,-9,2019,4,1,20,8,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7866569,0,0,26.280001,24.950001,57.740002,43.82,4,1,1,0,0,7,2,1,565,601804.88,0,0,1670.0695 -5959,7354,13415,13416,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,0,4,7.9067054,7.964797,0,1,0,-9,29,0,4,61.691616,0,0,0,47,2,2,1,2,2,2019,1,2,6,0,35,30,15,1,0,1,0,13.984168,13.984168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.040001,42.150002,43,39,2,1,1,0,0,10,4,1,526,175194.92,0,0,2394.5227 -5959,7354,13416,13415,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,2,7.4408307,7.0712528,0,1,0,-9,25,0,-4,-63.838692,0,0,0,51,2,4,1,-9,-9,2019,1,1,13,1,16,24,15,1,0,1,0,13.109274,13.109274,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,43,39,67.040001,42.150002,6,1,1,0,0,10,4,1,526,175194.92,0,0,2394.5227 -5959,7355,13417,-9,13416,13415,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,7.3046494,7.7550826,0,3,0,0,0,-9,0,-946.23761,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,37,15,1,0,-9,1,6.5822663,6.5822663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,10,3,1,401,53233.371,0,0,767.112 -5960,7356,13418,-9,-9,-9,1,1,0,84,3,0,0,0,1,-9,4,3,0,0,4,0,7.4922667,7.649353,3,0,0,0,-9,0,-1033.1233,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.6394494,7.6512504,0,0,59.290001,38.939999,-9,-9,5,1,1,0,0,12,3,1,836,399991.22,0,0,2444.6882 -5961,7357,13419,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,8.5011616,8.4838839,0,3,0,0,0,-9,0,-1125.1517,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,40,40,15,1,0,-9,0,14.480355,14.480355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.860001,55.66,-9,-9,5,1,1,0,0,4,4,1,60,-12191.032,0,0,1771.9796 -5962,7358,13420,-9,13421,13422,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.9475,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,734.33331,751018.63,0,0,8288.2373 -5962,7358,13421,13422,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,8.0691929,7.9410777,0,2,0,-9,6,0,0,94.242027,0,0,0,49,1,2,1,1,1,2019,1,1,8,0,31,30,15,1,0,1,0,11.191154,11.191154,0,0,0,0,0,0,0,0,1,1,0,.11922744,0,0,0,50.57,52.349998,46.790001,54.529999,6,1,1,0,0,13,5,1,734.33331,751018.63,0,0,8288.2373 -5962,7358,13422,13421,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,2,9.6523485,9.7922525,0,2,0,-9,6,0,0,97.831947,0,0,0,49,1,3,1,2,3,2019,1,2,14,3,60,50,15,1,0,1,0,39.513218,39.513218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.790001,54.529999,50.57,52.349998,4,1,1,0,0,13,5,1,734.33331,751018.63,0,0,8288.2373 -5962,7359,13423,-9,13421,13422,3,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-890.08942,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,1,1,1330,80187.945,0,0,236.36455 -5963,7360,13424,-9,13425,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-928.80646,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,1,0,669.66669,-6975.2993,0,0,1898.7373 -5963,7360,13425,-9,-9,-9,1,1,0,48,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-933.67371,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,2,3,1,0,5,1,0,669.66669,-6975.2993,0,0,1898.7373 -5963,7360,13426,-9,13425,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1084.2151,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,5,1,0,669.66669,-6975.2993,0,0,1898.7373 -5964,7361,13427,13429,-9,-9,2,1,0,34,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,1,-107.85828,0,0,1,33,2,4,1,2,3,2019,3,1,20,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.02,63.990002,47.540001,54.119999,5,1,1,0,0,2,3,1,1328.3334,-15625.192,0,0,1812.2332 -5964,7361,13428,-9,13427,13429,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.8212,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,1328.3334,-15625.192,0,0,1812.2332 -5964,7361,13429,13427,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,0,4,8.2953463,8.058115,0,2,0,-9,7,0,-1,-112.60631,0,0,0,34,1,4,3,-9,-9,2019,2,2,5,0,39,37,15,1,0,3,0,8.5172024,8.5172024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.540001,54.119999,28.02,63.990002,6,1,1,0,0,2,3,1,1328.3334,-15625.192,0,0,1812.2332 -5965,7362,13430,13431,-9,-9,1,1,0,23,1,0,0,0,1,1,3,3,0,1,3,0,0,0,1,0,-9,5,0,0,0,-9,1,1,32,3,3,3,-9,-9,2019,4,2,34,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.3199997,51.41,20.290001,58.48,2,1,1,1,0,11,1,0,492.5,16709.004,0,0,971.10669 -5965,7362,13431,13430,-9,-9,2,1,1,32,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,5,0,9,0,0,0,0,23,1,3,3,-9,-9,2019,4,1,28,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.290001,58.48,8.3199997,51.41,2,1,1,1,0,11,1,0,492.5,16709.004,0,0,971.10669 -5966,7363,13432,13433,-9,-9,1,1,1,39,1,0,1,0,2,-9,2,1,0,0,2,8.9599857,9.0871553,0,2,0,-9,5,0,-2,115.62303,0,0,0,41,2,2,3,1,1,2019,2,2,18,6,55,60,15,1,1,3,0,21.846394,21.846394,0,0,0,0,0,0,0,0,0,0,0,5.7337956,0,0,0,34.990002,38.299999,14.41,49.490002,3,1,1,0,0,7,5,1,472.66666,47154.895,0,0,2797.4714 -5966,7363,13433,13432,-9,-9,2,1,0,41,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,5,0,2,30.752464,0,0,1,39,2,2,1,-9,-9,2019,3,1,27,11,0,32,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7874069,0,0,0,14.41,49.490002,34.990002,38.299999,4,1,1,0,0,7,5,1,472.66666,47154.895,0,0,2797.4714 -5966,7363,13434,-9,13433,13432,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.895,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,472.66666,47154.895,0,0,2797.4714 -5967,7364,13435,13436,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,3,8.341608,8.0127735,0,2,0,-9,20,0,-3,73.674889,0,0,1,43,2,4,1,2,2,2019,1,2,20,8,43,37,15,1,1,1,0,8.3198719,8.3198719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.91,42.279999,54.200001,57.490002,5,1,1,0,0,10,4,1,554,516321.31,0,0,4123.5088 -5967,7364,13436,13435,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.5464487,8.9060621,0,2,0,-9,20,0,3,-62.722885,0,0,0,40,2,3,1,-9,-9,2019,1,1,9,0,53,37,15,1,0,1,0,13.995956,13.995956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,42.91,42.279999,4,1,1,0,0,10,4,1,554,516321.31,0,0,4123.5088 -5967,7365,13437,-9,13435,13436,3,1,1,19,2,0,1,0,2,-9,11,3,0,0,4,7.1908822,7.4849334,0,3,0,0,0,-9,0,-945.60205,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,10,3,1,617,-84245.086,0,0,399.26706 -5968,7366,13438,13439,-9,-9,2,1,1,46,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,-1,0,0,0,0,47,2,1,3,-9,-9,2019,4,1,28,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.56,39.16,39.880001,26.59,2,1,1,0,0,1,1,0,613.5,-9230.707,0,0,2417.2739 -5968,7366,13439,13438,-9,-9,1,1,0,47,1,0,0,0,2,-9,6,3,0,1,1,0,0,0,1,0,-9,7,0,1,0,0,0,0,46,2,1,3,2,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.74324,1,39.880001,26.59,15.56,39.16,3,1,1,0,0,1,1,0,613.5,-9230.707,0,0,2417.2739 -5969,7367,13440,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,3,6.5831461,6.7911954,5.1455379,3,0,0,0,-9,0,-1019.5566,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,8,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1678271,5.0544367,0,0,43.939999,41.970001,-9,-9,6,1,1,0,1,11,2,1,1007,117439.76,0,0,1452.6776 -5970,7368,13441,-9,-9,-9,1,1,1,43,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1012.7975,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.889999,21.35,-9,-9,6,1,1,1,0,11,1,0,748,138406.95,0,0,2058.3198 -5971,7369,13442,13443,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.1608605,6.5509686,1,0,-9,49,0,-3,17.479063,0,0,0,72,2,4,3,3,2,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2488608,6.7471309,0,1,45.720001,53.169998,64.07,47.52,4,1,1,0,0,5,3,1,879,633090.13,0,0,2802.8145 -5971,7369,13443,13442,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,7.1089802,7.3298125,5.9890313,1,0,-9,49,0,3,-64.501991,0,0,0,69,2,3,3,2,2,2019,4,2,6,0,45,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0757971,6.0825968,0,0,64.07,47.52,45.720001,53.169998,6,1,1,0,0,5,3,1,879,633090.13,0,0,2802.8145 -5972,7370,13444,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,0,2,7.9727631,8.1021957,0,3,0,0,0,-9,0,-894.27435,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,2,44,45,15,1,0,-9,0,6.4997749,6.4997749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.92,45.610001,-9,-9,3,1,1,0,0,10,4,0,374,125989.03,0,0,957.6485 -5973,7371,13445,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-926.42841,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,6,1,0,1293,-101831.09,0,0,1039.427 -5974,7372,13446,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-980.86688,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,43,-9,-9,6,1,1,0,0,9,1,0,160,55576.527,0,0,112.7388 -5975,7373,13447,13448,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,3,0,7.7679577,7.8054147,1,0,-9,59,0,5,-16.899988,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.23016576,7.7366452,0,0,65.040001,31.219999,53.139999,51.279999,6,1,1,0,0,10,3,0,345.5,1001502.3,0,0,2048.8325 -5975,7373,13448,13447,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,5.6765285,5.3958516,1,0,-9,59,0,-5,43.768997,0,0,0,82,1,3,3,3,3,2019,4,1,13,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4059672,5.4756927,0,1,53.139999,51.279999,65.040001,31.219999,6,1,1,0,0,10,3,0,345.5,1001502.3,0,0,2048.8325 -5976,7374,13449,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,0,3,8.8871994,8.8698111,0,3,0,0,0,-9,0,-1017.7383,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,46,49,15,1,0,-9,0,16.985519,16.985519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.630001,50.990002,-9,-9,6,1,1,0,0,2,5,0,1067,616734.63,0,0,922.07013 -5977,7375,13450,-9,-9,-9,1,1,1,40,3,0,0,0,2,-9,2,1,0,0,3,7.7937198,7.9998164,0,3,0,0,0,-9,0,-1023.8273,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,7,0,35,30,15,1,0,-9,0,8.5342159,8.5342159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,56.66,-9,-9,5,1,1,0,1,7,3,0,249,83043.797,0,0,1259.3314 -5977,7376,13451,-9,-9,-9,2,1,1,29,2,0,0,0,1,-9,1,1,0,0,4,9.1928873,9.3663015,0,3,0,0,0,-9,0,-804.44452,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,70,78,15,1,0,-9,0,18.033123,18.033123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,4,6,0,0,7,5,0,301,56412.383,0,0,4957.5571 -5978,7377,13452,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,0,4,8.9063272,8.9380226,0,3,0,0,0,-9,0,-1171.1803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,43,40,15,1,0,-9,0,21.13209,21.13209,0,0,0,0,0,0,0,0,0,0,0,4.604425,0,0,0,53.02,53.93,-9,-9,6,1,1,0,0,4,5,1,104,384546.63,0,0,1965.5226 -5979,7378,13453,13454,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,3,8.1287231,8.4630909,0,1,0,-9,8,0,0,98.154549,0,0,0,67,3,2,3,-9,-9,2019,2,1,10,1,40,0,15,1,0,4,0,9.73524,9.73524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,52.639999,43.939999,5,3,4,0,0,8,3,0,975,1315121.4,0,0,1352.9333 -5979,7378,13454,13453,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,2,0,5.731133,6.1224446,1,0,-9,27,0,9,66.698837,0,0,0,58,3,3,1,3,3,2019,3,2,14,3,0,27,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8814034,0,0,52.639999,43.939999,51,49,4,3,4,0,0,8,3,0,975,1315121.4,0,0,1352.9333 -5980,7379,13455,13456,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,1,2,0,5.0613461,5.0012345,1,0,-9,2,0,0,19.446188,0,0,0,68,2,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,6.9709067,0,0,0,0,14.5,1,1,0,3.7236421,4.9953809,16.757795,3,48.02,34.889999,59.330002,51.290001,6,1,1,0,0,12,2,1,1604.5,295491.63,0,0,5055.2778 -5980,7379,13456,13455,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,5,0,6.1490831,5.9891281,1,0,-9,2,0,0,-91.364372,0,0,0,68,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6300449,5.8612814,0,0,59.330002,51.290001,48.02,34.889999,6,1,1,0,0,12,2,1,1604.5,295491.63,0,0,5055.2778 -5981,7380,13457,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,2,1,0,0,3,8.3371887,7.9997091,0,3,0,0,0,-9,0,-889.2041,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,67,55,15,1,0,-9,0,4.8184638,4.8184638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.769997,33.099998,-9,-9,1,1,1,0,0,13,4,0,257,219173.16,0,0,1029.5551 -5982,7381,13458,-9,13460,13461,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.1593,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,1057.75,743495.69,0,0,4347.8052 -5982,7381,13459,-9,13460,13461,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.0325,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,5,1,1057.75,743495.69,0,0,4347.8052 -5982,7381,13460,13461,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,0,4,8.4506598,8.1913433,0,2,0,-9,14,0,0,-51.196266,0,0,1,33,1,5,1,1,1,2019,1,1,14,5,28,25,15,1,1,1,0,16.006861,16.006861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.060001,62.040001,51.73,58.82,4,1,1,0,0,7,5,1,1057.75,743495.69,0,0,4347.8052 -5982,7381,13461,13460,-9,-9,1,1,1,33,1,0,2,0,1,-9,2,1,0,0,5,8.9729891,9.7257118,0,2,0,-9,13,0,0,-19.068539,0,0,0,33,1,4,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,31.729475,31.729475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,41.060001,62.040001,6,1,1,0,0,7,5,1,1057.75,743495.69,0,0,4347.8052 -5983,7382,13462,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,6.9134507,6.9867721,3,0,0,0,-9,0,-1016.6181,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1752377,6.6572762,0,0,54.130001,48.040001,-9,-9,6,1,1,0,0,13,2,1,317,142307.84,0,0,1084.8409 -5984,7383,13463,13465,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,8.8179817,8.7921867,0,2,0,-9,7,0,3,51.033131,0,0,0,43,1,3,1,2,3,2019,1,2,23,11,40,42,15,1,1,1,0,22.218307,22.218307,0,0,0,0,0,0,0,0,1,1,0,3.3122075,0,0,0,35.360001,52.779999,41.959999,53.77,3,1,1,0,0,9,4,1,669.25,434468.69,0,0,3780.2327 -5984,7383,13464,-9,13465,13463,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1000.7748,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,4,1,669.25,434468.69,0,0,3780.2327 -5984,7383,13465,13463,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,7.6631536,8.0562115,0,2,0,-9,7,0,-3,95.056595,0,0,1,46,1,3,1,2,1,2019,1,1,13,4,23,23,15,1,1,1,0,9.909236,9.909236,0,0,0,0,0,0,0,0,1,1,0,2.5155909,0,0,0,41.959999,53.77,35.360001,52.779999,6,1,1,0,0,9,4,1,669.25,434468.69,0,0,3780.2327 -5984,7383,13466,-9,13465,13463,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.0447,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,4,1,669.25,434468.69,0,0,3780.2327 -5985,7384,13467,13469,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,5,7.9403033,8.486062,5.6670012,2,0,1,1,-9,0,-25.049192,0,0,1,44,2,4,1,-9,-9,2019,1,3,8,0,41,38,15,1,0,1,0,17.385397,17.385397,0,0,0,0,0,0,0,0,1,1,0,5.9378633,0,0,0,57.060001,57.759998,52,55,6,1,1,0,0,12,4,1,898.33331,463986.53,0,0,3354.9741 -5985,7384,13468,-9,13467,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.5345,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,4,1,898.33331,463986.53,0,0,3354.9741 -5985,7384,13469,13467,-9,-9,3,1,1,44,1,0,1,0,2,-9,1,1,0,0,4,8.1012421,7.8584208,0,2,0,-9,1,-9,0,130.47163,-9,0,0,44,2,5,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,7.9339595,7.9339595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.060001,57.759998,5,1,1,0,0,12,4,1,898.33331,463986.53,0,0,3354.9741 -5986,7385,13470,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,3,7.3439212,7.6772485,5.195435,4,0,-9,0,-9,0,-971.83136,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,20,0,15,1,0,-9,0,10.822152,10.822152,0,0,0,0,0,0,0,0,1,1,0,5.6322989,0,0,0,31.360001,56.419998,-9,-9,4,3,4,0,1,2,2,0,269.5,190341.59,0,0,1219.7198 -5986,7385,13471,-9,13470,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-957.57483,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,2,2,0,269.5,190341.59,0,0,1219.7198 -5987,7386,13472,13473,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,5,0,0,0,1,0,-9,34,0,0,13.367617,0,0,0,66,1,4,1,3,-9,2019,1,1,7,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7057457,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,6,3,1,640,839715.38,0,0,3654.5103 -5987,7386,13473,13472,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,0,4,8.1517029,8.1013823,0,1,0,-9,34,0,9,140.40289,0,0,0,57,2,5,1,1,-9,2019,1,2,6,0,20,20,15,1,0,1,0,19.695696,19.695696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,6,3,1,640,839715.38,0,0,3654.5103 -5988,7387,13474,13475,-9,-9,1,1,0,42,1,0,0,0,3,-9,2,1,0,0,4,7.6870155,7.6846805,0,1,0,-9,6,0,-3,-92.4748,0,0,1,45,3,4,1,-9,3,2019,1,2,7,0,39,30,15,1,0,1,0,5.9832759,5.9832759,0,0,0,0,0,0,0,7,1,1,0,0,0,13.396186,3,46.290001,54.220001,52,55,6,1,1,0,0,12,4,0,1277,29604.141,0,0,3383.3604 -5988,7387,13475,13474,-9,-9,2,1,1,45,1,0,0,0,3,-9,2,1,0,0,4,8.4855328,8.4109087,0,1,0,-9,6,0,3,-4.767386,0,0,0,42,3,4,1,-9,-9,2019,1,1,9,1,30,0,15,1,0,1,0,13.619719,13.619719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.290001,54.220001,6,1,1,0,0,12,4,0,1277,29604.141,0,0,3383.3604 -5989,7388,13476,13477,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.3588958,7.1909733,0,1,0,-9,4,0,2,-54.494686,0,0,0,52,2,5,1,-9,-9,2019,1,1,5,0,23,27,15,1,0,1,0,6.3052402,6.3052402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,47.470001,40.16,6,1,1,0,0,10,5,1,654.5,133049.94,0,0,2124.1282 -5989,7388,13477,13476,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,5,9.0463381,8.6714926,0,1,0,-9,4,0,-2,-124.79251,0,0,0,54,2,3,1,-9,-9,2019,1,2,8,0,45,43,15,1,0,1,0,17.06361,17.06361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.470001,40.16,59.32,46.98,5,1,1,0,0,10,5,1,654.5,133049.94,0,0,2124.1282 -5989,7389,13478,-9,13476,13477,3,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,7.6279378,7.6315861,0,3,0,0,0,-9,0,-1055.1576,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,32,15,1,0,-9,1,6.1137829,6.1137829,0,0,0,0,0,0,0,0,0,0,0,.81769705,0,0,0,57.700001,55.880001,-9,-9,4,1,1,0,0,10,3,1,334,0,0,0,412.13348 -5989,7390,13479,-9,13476,13477,4,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,7.5690379,7.5650516,0,3,0,0,0,-9,0,-925.97473,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,60,15,1,0,-9,1,6.3554301,6.3554301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,10,3,1,662,-41353.707,0,0,843.21924 -5989,7391,13480,-9,13476,13477,5,1,1,18,2,0,0,1,2,0,7,2,0,0,5,5.970191,5.7825551,0,3,0,0,0,-9,0,-990.4458,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,10,2,1,2017,-185357.89,0,0,2033.0072 -5990,7392,13481,13482,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,8.0930805,8.4907961,7.0576806,1,0,-9,8,0,1,28.726522,0,0,0,58,2,4,1,2,3,2019,1,2,4,0,37,37,15,1,0,1,0,7.1400561,7.1400561,0,0,0,0,0,0,0,0,0,0,0,7.0625515,0,0,0,51.66,54.880001,51.490002,57.57,2,1,1,0,0,2,4,1,1242,643975.81,0,0,2946.0366 -5990,7392,13482,13481,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.220407,7.5238466,6.2113972,1,0,-9,8,0,-1,146.82715,0,0,0,59,2,3,1,2,3,2019,1,1,10,0,18,18,15,1,0,1,0,6.9901648,6.9901648,0,0,0,0,0,0,0,0,0,0,0,4.5891948,6.4079356,0,0,51.490002,57.57,51.66,54.880001,5,1,1,0,0,2,4,1,1242,643975.81,0,0,2946.0366 -5990,7393,13483,-9,13482,13481,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,7.8938279,8.0698662,0,3,0,0,0,-9,0,-906.33484,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,40,40,15,1,0,-9,1,9.1648006,9.1648006,0,0,0,0,0,0,0,0,0,0,0,3.0477629,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,4,1,545,-155630.98,0,0,1545.8221 -5991,7394,13484,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,4,7.4157181,7.3035288,5.8736639,3,0,0,0,-9,0,-830.32233,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,0,15,1,0,-9,0,3.2992423,3.2992423,0,0,0,0,0,0,0,0,1,1,0,1.190302,5.7690067,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,5,3,1,305,798457.25,0,0,305.45862 -5992,7395,13485,13486,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,1,3,0,7.0628939,6.8585496,1,0,-9,58,0,1,69.4627,0,0,0,74,3,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.7655625,6.8802247,5.4749012,2,38.610001,43.02,47.490002,30.959999,3,1,1,0,0,11,2,1,1190.5,241575.16,0,0,2910.7505 -5992,7395,13486,13485,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,1,2,0,6.5833931,6.5208549,1,0,-9,58,0,-1,-8.7068863,0,0,0,75,3,3,3,3,-9,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,1,0,18.846069,0,0,0,0,0,1,1,0,0,6.4992614,0,0,47.490002,30.959999,38.610001,43.02,4,1,1,0,0,11,2,1,1190.5,241575.16,0,0,2910.7505 -5993,7396,13487,13488,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.6556263,8.296072,0,1,0,-9,32,0,1,186.89771,0,0,0,54,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,16.805105,16.805105,0,0,0,0,0,0,0,0,0,0,0,4.4139781,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,11,5,1,726.5,1849809.3,0,0,5075.5591 -5993,7396,13488,13487,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,9.0200891,9.1241236,0,1,0,-9,32,0,-1,20.916664,0,0,0,55,2,4,1,2,2,2019,1,1,5,0,37,37,15,1,0,1,0,24.810768,24.810768,0,0,0,0,0,0,0,0,0,0,0,3.2216816,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,11,5,1,726.5,1849809.3,0,0,5075.5591 -5994,7397,13489,13490,-9,-9,2,1,0,65,1,0,1,0,2,-9,4,3,0,0,4,0,0,0,2,0,-9,9,0,0,-16.288282,0,0,0,65,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.536788,0,0,0,58.549999,46.110001,62.490002,55.09,7,1,1,0,0,9,2,1,934.5,140904.84,0,0,2433.0674 -5994,7397,13490,13489,-9,-9,1,1,1,65,1,0,1,0,2,-9,4,3,0,0,4,0,6.8594937,7.2090058,2,0,-9,9,0,0,-16.668465,0,0,0,65,2,4,3,3,3,2019,4,2,10,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.1076188,7.009788,0,0,62.490002,55.09,58.549999,46.110001,7,1,1,0,0,9,2,1,934.5,140904.84,0,0,2433.0674 -5994,7398,13491,-9,13492,-9,4,1,0,17,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-939.00726,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.0436211,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,9,3,1,549,76104.734,0,0,3605.103 -5994,7398,13492,-9,13489,13490,3,1,0,40,2,0,1,0,2,-9,1,1,0,0,4,7.6621132,7.797842,4.7865739,3,0,0,0,-9,0,-1054.1553,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,40,15,1,0,-9,1,7.2848186,7.2848186,0,0,0,0,0,0,0,0,1,0,1,4.9476452,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,3,1,549,76104.734,0,0,3605.103 -5995,7399,13493,13494,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,2,7.7160115,7.4062648,0,1,0,-9,8,0,-1,-65.648254,0,0,0,66,1,3,3,-9,-9,2019,2,1,6,0,40,40,15,1,0,4,0,4.8378615,4.8378615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.689999,37.279999,57.779999,35.360001,6,1,1,0,0,10,2,1,774.5,673810.25,0,0,839.95923 -5995,7399,13494,13493,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,3.1378963,3.5855992,0,1,0,-9,37,0,1,-112.37192,0,0,0,65,2,2,1,3,2,2019,3,2,14,4,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.779999,35.360001,60.689999,37.279999,6,1,1,0,0,10,2,1,774.5,673810.25,0,0,839.95923 -5996,7400,13495,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,1,2,0,7.3692346,7.2236905,3,0,0,0,-9,0,-967.26373,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,1,.41683239,0,0,4.981555,0,93.603584,0,1,1,0,2.9544907,7.3314939,0,0,33.139999,25.559999,-9,-9,1,1,1,0,0,9,3,1,1687,335037.88,0,0,751.83563 -5997,7401,13496,13497,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,0,4,7.4691396,7.2369246,0,1,0,-9,22,0,1,-39.369617,-9,0,0,52,2,3,1,3,2,2019,1,1,9,0,50,0,15,1,0,1,0,3.257767,3.257767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,61.279999,46.169998,6,1,1,0,0,4,4,1,442.5,1472607.5,0,0,3124.2656 -5997,7401,13497,13496,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.2556667,8.4149532,0,1,0,-9,21,0,-1,44.469707,0,0,0,53,2,4,1,1,1,2019,1,2,11,0,37,37,15,1,0,1,0,14.050176,14.050176,0,0,0,0,0,0,0,0,0,0,0,7.6568408,0,0,0,61.279999,46.169998,57.16,56.150002,4,1,1,0,0,4,4,1,442.5,1472607.5,0,0,3124.2656 -5998,7402,13498,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1107.1967,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.540001,41.830002,-9,-9,4,1,1,1,0,12,1,0,799,103641.5,0,0,209.14571 -5999,7403,13499,13500,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.9648962,8.9816942,1,0,-9,51,0,2,132.03632,0,0,0,71,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.007969,8.6435413,0,0,57.16,56.150002,51,46,2,1,1,0,0,9,5,1,680,1936206.8,0,0,6217.4121 -5999,7403,13500,13499,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-2,-77.121506,0,0,0,73,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,57.16,56.150002,5,1,1,0,0,9,5,1,680,1936206.8,0,0,6217.4121 -6000,7404,13501,-9,13502,13503,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,5.2281547,5.2158499,0,2,0,0,0,-9,0,-1026.2925,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,5,5,1,1406,2019977.4,0,0,5825.0454 -6000,7404,13502,13503,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,4,8.3602495,8.0583057,0,2,0,-9,25,0,1,-5.2909198,0,0,0,45,1,4,1,1,2,2019,1,2,9,0,46,55,15,1,0,1,0,6.7637444,6.7637444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,51.470001,53.169998,7,1,1,0,0,5,5,1,1406,2019977.4,0,0,5825.0454 -6000,7404,13503,13502,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.5559711,9.4798803,0,2,0,-9,25,0,-1,-81.921455,0,0,0,46,1,4,1,2,2,2019,1,1,9,0,60,56,15,1,0,1,0,28.819315,28.819315,0,0,0,0,0,0,0,0,0,0,0,4.0680246,0,0,0,51.470001,53.169998,54.200001,57.490002,6,1,1,0,0,5,5,1,1406,2019977.4,0,0,5825.0454 -6000,7404,13504,-9,13502,13503,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-932.83582,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,5,5,1,1406,2019977.4,0,0,5825.0454 -6001,7405,13505,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,2,1,0,0,4,7.2151022,7.8290257,0,3,0,0,0,-9,0,-1008.5874,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,28,15,1,0,-9,0,7.2044516,7.2044516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,3,4,0,0,8,3,0,118,-59507.898,0,0,2378.3313 -6001,7406,13506,-9,13505,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.0193558,8.2505846,0,3,0,0,0,-9,0,-1051.7576,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,40,0,15,1,0,-9,1,10.47646,10.47646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.33,64.699997,-9,-9,7,4,2,0,0,8,4,0,265,62664.383,0,0,796.90137 -6002,7407,13507,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-988.2146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,8.7398138,0,0,1,1,0,0,0,0,0,45.560001,49.099998,-9,-9,6,1,1,0,0,10,1,1,752,-42273.508,0,0,805.10217 -6003,7408,13508,13509,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,1,-45.804577,0,0,0,74,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5622139,0,0,0,54.790001,55.860001,48.279999,60.18,7,1,1,0,0,8,4,1,1406,1200567.6,0,0,4729.2734 -6003,7408,13509,13508,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,8.3706026,8.5758266,1,0,-9,51,0,-1,16.061846,0,0,0,75,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9289618,8.5013142,0,0,48.279999,60.18,54.790001,55.860001,7,1,1,0,0,8,4,1,1406,1200567.6,0,0,4729.2734 -6004,7409,13510,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,1,4,0,5.1007891,5.1611695,3,0,0,0,-9,0,-997.15479,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,8.1518469,0,0,0,0,62.927517,0,1,1,0,3.9699254,5.3689899,0,0,63.669998,30.040001,-9,-9,6,1,1,0,0,5,2,0,323,-40272.043,0,0,658.96051 -6005,7410,13511,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,3,0,7.2878742,7.1058221,3,0,0,0,-9,0,-952.16071,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6071424,7.2829132,0,0,57.830002,39.529999,-9,-9,6,1,1,0,0,7,3,1,1037,873033.69,0,0,1189.7791 -6006,7411,13512,-9,-9,-9,1,1,0,79,3,0,0,0,1,-9,4,3,0,0,2,0,7.3996959,7.4896078,3,0,0,0,-9,0,-1046.3975,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,8.0457029,0,0,0,0,0,1,1,0,8.0051708,7.7442036,0,0,44.950001,29.690001,-9,-9,4,1,1,0,0,13,3,1,97,624487.75,0,0,2138.4543 -6007,7412,13513,13514,-9,-9,1,1,0,53,1,0,1,0,1,-9,1,1,0,1,4,7.4498601,7.5134606,0,2,0,-9,32,0,-1,-11.165751,0,0,0,54,1,4,1,2,1,2019,1,2,6,0,32,24,15,1,0,1,0,5.4003987,5.4003987,0,0,0,0,0,0,0,42,1,1,0,5.2810016,0,50.505791,3,57.16,56.150002,53,54,6,1,1,0,0,8,4,1,186.5,2065716.3,0,0,4514.8945 -6007,7412,13514,13513,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,0,4,8.8997335,8.5361986,0,2,0,-9,8,0,1,-161.71832,0,0,0,53,1,4,1,-9,-9,2019,1,1,9,1,35,36,15,1,0,1,0,19.121508,19.121508,0,0,0,0,0,0,0,0,1,1,0,5.1449828,0,0,3,53,54,57.16,56.150002,6,1,1,0,0,8,4,1,186.5,2065716.3,0,0,4514.8945 -6008,7413,13515,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,8.2157183,8.0505304,0,3,0,0,0,-9,0,-1067.8502,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,38,37,15,1,0,-9,0,10.431793,10.431793,0,0,0,0,0,0,0,2,0,0,0,6.4734468,0,0,3,49.23,39.450001,-9,-9,6,1,1,0,0,9,4,1,126,280712.31,0,0,2141.7485 -6009,7414,13516,13517,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,8.7810764,8.6142521,0,1,0,-9,2,0,-3,-50.13488,0,1,1,30,2,3,1,1,2,2019,1,2,6,0,40,45,15,1,0,1,0,15.962142,15.962142,0,0,0,0,0,0,0,0,0,0,0,5.6446099,0,0,0,51.830002,57.200001,57.09,46.700001,6,1,1,0,0,10,5,1,963.5,728897.56,0,0,2829.7139 -6009,7414,13517,13516,-9,-9,2,1,1,30,1,0,0,0,2,-9,1,1,0,0,3,7.5059757,7.6686311,0,1,0,-9,2,0,3,-49.791794,0,0,0,27,2,4,1,-9,-9,2019,1,1,9,0,48,50,15,1,0,1,0,3.5959246,3.5959246,0,0,0,0,0,0,0,0,0,0,0,.67822593,0,0,0,57.09,46.700001,51.830002,57.200001,6,1,1,0,0,10,5,1,963.5,728897.56,0,0,2829.7139 -6010,7415,13518,-9,-9,-9,3,1,0,59,2,0,0,0,2,-9,2,1,0,0,3,8.3581991,8.1767645,0,3,0,0,0,-9,0,-946.4826,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,48,60,15,1,0,-9,0,11.19441,11.19441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.439999,40.189999,-9,-9,6,3,4,0,0,8,4,0,424,552028.31,0,0,1750.9768 -6011,7416,13519,13520,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,5,0,8.2392483,8.2632265,1,0,-9,39,0,8,-8.4952908,0,0,0,61,1,3,1,2,2,2019,3,1,14,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7568319,8.5320997,0,0,51.139999,60.450001,57.330002,53.459999,7,1,1,0,0,2,4,1,722,1335945.8,0,0,4636.458 -6011,7416,13520,13519,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,0,3,6.7127028,7.2107625,6.2408872,1,0,-9,39,0,-8,-25.231083,0,0,0,69,1,5,3,3,2,2019,2,2,5,0,20,22,15,1,0,4,0,5.0092745,5.0092745,0,0,0,0,0,0,0,2,1,1,0,7.0249033,6.1624007,0,3,57.330002,53.459999,51.139999,60.450001,6,1,1,0,0,2,4,1,722,1335945.8,0,0,4636.458 -6012,7417,13521,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.5619221,6.4265003,3,0,0,0,-9,0,-1094.3009,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6486354,0,0,51,46,-9,-9,6,3,4,0,0,8,2,0,704,-114232.7,0,0,1531.3364 -6013,7418,13522,13523,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,8.4697332,8.5800877,0,1,0,-9,2,0,5,-120.70103,0,0,1,31,1,3,1,2,1,2019,1,2,13,2,43,40,15,1,0,1,0,11.732944,11.732944,0,0,0,0,0,0,0,0,0,0,0,1.7885443,0,0,0,47.32,55.369999,39.02,59.169998,6,1,1,0,0,5,5,1,303.5,237483.75,0,0,2985.9954 -6013,7418,13523,13522,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,8.5931501,8.5761328,0,1,0,-9,2,0,-5,-23.47761,0,0,0,36,1,4,1,-9,-9,2019,1,1,15,5,40,44,15,1,1,1,0,11.56395,11.56395,0,0,0,0,0,0,0,0,0,0,0,2.6139829,0,0,0,39.02,59.169998,47.32,55.369999,5,1,1,0,0,5,5,1,303.5,237483.75,0,0,2985.9954 -6014,7419,13524,13525,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.6820941,7.9930253,0,1,0,-9,6,0,-5,9.8814278,0,0,0,58,2,4,1,2,2,2019,1,1,8,0,33,33,15,1,0,1,0,8.2116404,8.2116404,0,0,0,0,0,0,0,7,0,0,0,.68134743,0,11.334451,3,57.73,54.529999,57.16,56.150002,7,1,1,0,0,11,5,1,402,806195.25,0,0,2725.8711 -6014,7419,13525,13524,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.1107607,8.6042662,7.8722339,1,0,-9,6,0,5,49.306808,0,0,0,53,2,4,1,2,2,2019,1,2,6,0,33,32,15,1,0,1,0,8.5975952,8.5975952,0,0,0,0,0,0,0,7,0,0,0,6.2953496,8.1563797,4.753468,3,57.16,56.150002,57.73,54.529999,6,1,1,0,0,11,5,1,402,806195.25,0,0,2725.8711 -6015,7420,13526,13527,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,0,4,9.2861805,9.1144495,0,2,0,-9,2,0,1,-138.37006,-9,0,0,41,1,5,3,-9,-9,2019,2,1,9,1,37,0,15,1,0,3,0,35.694851,35.694851,0,0,0,0,0,0,0,0,0,0,0,8.4897537,0,0,0,51,56,48.77,60.16,6,4,1,0,0,9,4,1,860.79999,1134514.8,0,0,7537.7212 -6015,7420,13527,13526,-9,-9,1,1,0,41,1,0,3,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,2,0,-1,3.5371068,0,0,1,42,1,4,1,1,1,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4188881,0,0,0,48.77,60.16,51,56,6,1,1,0,0,9,4,1,860.79999,1134514.8,0,0,7537.7212 -6015,7420,13528,-9,13527,13526,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-832.49152,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,4,1,860.79999,1134514.8,0,0,7537.7212 -6015,7420,13529,-9,13527,13526,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.8846,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,860.79999,1134514.8,0,0,7537.7212 -6015,7420,13530,-9,13527,13526,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.0319,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,860.79999,1134514.8,0,0,7537.7212 -6016,7421,13531,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-928.41467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,13,1,1,882,-207085.05,0,0,799.49988 -6017,7422,13532,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,4,8.8581715,9.0779371,0,3,0,0,0,-9,0,-1115.048,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,50,53,15,1,0,-9,0,15.675445,15.675445,0,0,0,0,0,0,0,0,0,0,0,1.6901975,0,0,0,51.18,60.200001,-9,-9,5,1,1,0,0,8,5,1,453,-64312.305,0,0,2428.8108 -6017,7423,13533,-9,-9,-9,3,1,0,35,2,0,0,0,1,-9,2,1,0,0,3,4.929183,5.0743814,0,3,0,0,0,-9,0,-1001.2457,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,45,50,15,1,0,-9,0,.4210377,.4210377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.93,52.639999,-9,-9,4,1,1,0,0,8,2,1,151,234508.27,0,0,-469.20441 -6018,7424,13534,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1032.0137,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.330002,33.939999,-9,-9,5,1,1,0,0,13,1,0,2806,86309.727,0,0,514.83942 -6019,7425,13535,13536,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,4,9.6137228,9.6958838,8.2316427,1,0,-9,42,0,5,-72.92543,0,0,0,58,2,3,3,2,2,2019,2,2,10,0,47,47,15,1,0,4,0,37.325718,37.325718,0,0,0,0,0,0,0,0,0,0,0,6.4719977,8.7855682,0,0,57.73,54.529999,61.459999,43.330002,6,1,1,0,0,6,5,1,665,3090840.3,0,0,6389.2822 -6019,7425,13536,13535,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,-5,37.937168,0,0,0,63,1,4,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.459999,43.330002,57.73,54.529999,7,1,1,0,0,6,5,1,665,3090840.3,0,0,6389.2822 -6019,7426,13537,-9,13536,13535,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,6.9306369,7.3484325,6.5624981,3,0,0,0,-9,0,-926.54346,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0498466,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,6,3,1,4192,64466.941,0,0,1291.3066 -6020,7427,13538,13539,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,7.7408395,7.5841804,0,1,0,-9,31,0,-1,-25.184635,0,0,0,51,2,2,1,2,3,2019,1,1,12,0,22,23,15,1,0,1,0,9.3574486,9.3574486,0,0,0,0,0,0,0,2,0,0,0,2.8142858,0,0,3,44.740002,46.07,38,49.150002,5,1,1,0,0,5,4,1,801.5,109976.51,0,0,2428.0273 -6020,7427,13539,13538,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.6292582,8.3089142,0,1,0,-9,31,0,1,18.942892,0,0,0,50,2,2,1,2,2,2019,1,2,17,5,38,40,15,1,1,1,0,11.0824,11.0824,0,0,0,0,0,0,0,7,0,0,0,3.4201252,0,6.2711945,3,38,49.150002,44.740002,46.07,5,1,1,0,0,5,4,1,801.5,109976.51,0,0,2428.0273 -6021,7428,13540,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,5,0,6.0690351,6.1216602,3,0,0,0,-9,0,-929.56281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.019856,6.314868,0,0,56.900002,49.75,-9,-9,7,1,1,0,0,9,2,1,533,164195.27,0,0,842.44775 -6022,7429,13541,-9,-9,-9,1,1,0,23,2,0,0,1,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-899.60602,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.700001,53.75,-9,-9,7,1,1,0,0,2,1,0,1109,0,0,0,1041.1409 -6023,7430,13542,13543,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,41,0,3,0,0,0,0,63,3,2,3,2,2,2019,4,2,11,3,0,0,15,4,0,4,0,0,0,1,0,73.265587,0,0,0,0,0,1,1,0,0,0,0,0,52.470001,11.65,49.560001,19.32,6,1,1,0,0,7,1,1,334,81010.859,0,0,1654.2278 -6023,7430,13543,13542,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,41,0,-3,0,0,0,0,66,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.07609,1,49.560001,19.32,52.470001,11.65,6,1,1,0,0,7,1,1,334,81010.859,0,0,1654.2278 -6024,7431,13544,13545,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,1,0,1.2508028,1.439297,1,0,-9,22,0,0,-2.5177636,-9,0,0,82,3,1,3,3,3,2019,4,2,27,10,0,0,15,4,1,4,0,0,0,1,0,31.874466,0,0,0,0,0,1,1,0,1.4490646,1.1826859,0,0,33.619999,42.029999,28.889999,27.799999,6,1,1,0,1,5,1,0,352,211901.91,0,0,3594.3018 -6024,7431,13545,13544,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,22,0,0,-60.80455,-9,0,0,82,3,1,3,3,3,2019,4,1,21,10,0,0,15,4,1,4,0,0,0,1,0,43.812462,.45296055,0,0,0,2,1,1,0,0,0,0,1,28.889999,27.799999,33.619999,42.029999,4,1,1,0,1,5,1,0,352,211901.91,0,0,3594.3018 -6025,7432,13546,13547,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,5.7508492,5.5229611,1,0,-9,10,0,-8,65.673264,0,0,0,70,2,2,3,2,2,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3119364,5.0528069,0,0,32.900002,57.869999,54.459999,35.900002,6,1,1,0,0,10,3,1,467,1153360.4,0,0,1854.2621 -6025,7432,13547,13546,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,7.5435233,7.7467856,1,0,-9,10,0,8,23.21484,0,0,0,62,2,4,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8896461,7.6188641,0,0,54.459999,35.900002,32.900002,57.869999,6,1,1,0,0,10,3,1,467,1153360.4,0,0,1854.2621 -6026,7433,13548,-9,13549,13550,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-960.73004,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,11,5,1,568.66669,2217289.5,0,0,9119.5498 -6026,7433,13549,13550,-9,-9,2,1,0,37,1,0,1,0,2,-9,1,1,0,0,3,7.483119,7.4428501,0,2,0,-9,5,0,-5,42.061001,0,0,1,42,1,3,1,-9,-9,2019,1,1,10,0,5,0,15,1,0,1,0,45.419514,45.419514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.93,52.630001,40.279999,48.919998,4,1,1,0,0,11,5,1,568.66669,2217289.5,0,0,9119.5498 -6026,7433,13550,13549,-9,-9,1,1,1,42,1,0,1,0,1,-9,1,1,0,0,3,9.5826139,9.947813,0,2,0,-9,5,0,5,29.632511,0,0,0,37,2,3,1,2,2,2019,1,2,18,6,40,30,15,1,1,1,0,54.85004,54.85004,0,0,0,0,0,0,0,0,0,0,0,.72322279,0,0,0,40.279999,48.919998,46.93,52.630001,5,1,1,0,0,11,5,1,568.66669,2217289.5,0,0,9119.5498 -6027,7434,13551,13552,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,5.934248,5.9411516,1,0,-9,10,0,1,102.75433,0,0,0,74,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.8652426,5.7396431,3.791224,1,53.139999,45.740002,47.740002,28.360001,6,1,1,0,0,4,2,0,398,398243.84,0,0,1325.6493 -6027,7434,13552,13551,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,2,0,5.3717976,5.2902613,1,0,-9,10,0,-1,-89.208755,0,0,0,75,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3920169,0,0,47.740002,28.360001,53.139999,45.740002,5,1,1,0,0,4,2,0,398,398243.84,0,0,1325.6493 -6028,7435,13553,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,3,8.5006456,8.3838377,0,3,0,0,0,-9,0,-1115.7706,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,76,39,15,1,0,-9,0,9.407218,9.407218,0,0,0,0,0,0,0,2,0,0,0,5.0641375,0,3.4982626,3,47.43,33.380001,-9,-9,3,1,1,0,0,8,5,1,379,126450.13,0,0,2206.3169 -6029,7436,13554,13555,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.8233852,8.1740017,1,0,-9,42,0,2,-.35222819,0,0,0,62,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2730579,7.7607636,0,0,58.150002,52.91,56.18,53.849998,7,1,1,0,0,9,4,1,246.5,1224102,0,0,2927.6616 -6029,7436,13555,13554,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.5925512,7.3946967,1,0,-9,42,0,-2,158.58298,0,0,0,64,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.4719777,7.4847116,8.9602394,3,56.18,53.849998,58.150002,52.91,6,1,1,0,0,9,4,1,246.5,1224102,0,0,2927.6616 -6030,7437,13556,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,0,3,7.3377442,7.9912376,5.9518585,3,0,0,0,-9,0,-969.92242,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,23,23,15,1,0,-9,0,8.8805389,8.8805389,0,0,0,0,0,0,0,0,0,0,0,5.8691244,5.9094157,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,9,3,1,585,476089.56,0,0,407.14291 -6030,7438,13557,-9,13556,-9,2,1,0,23,2,0,0,0,1,1,2,1,0,0,4,8.2425404,8.2428246,0,3,0,0,0,-9,0,-932.61267,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,53,0,15,1,0,-9,1,8.8553114,8.8553114,0,0,0,0,0,0,0,0,0,0,0,3.3775036,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,4,1,184,58876.98,0,0,1189.2782 -6031,7439,13558,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1069.674,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,5,3,4,0,1,8,1,0,1140,-149405.86,0,0,2040.1241 -6032,7440,13559,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1004.5233,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.029999,55.740002,-9,-9,3,3,4,1,0,8,1,0,105,26211.695,0,0,1991.2571 -6033,7441,13560,13561,-9,-9,2,1,0,34,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,2,0,-24,44.91127,0,0,1,58,1,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,66.599998,39.439999,5,1,1,0,0,4,5,1,1449,2297299,0,0,6473.5908 -6033,7441,13561,13560,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,9.6300898,9.620388,0,1,0,-9,2,0,24,106.94727,0,0,0,34,2,4,3,2,2,2019,2,2,4,0,50,57,15,1,0,3,0,35.349861,35.349861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.599998,39.439999,48,56,2,2,3,0,0,4,5,1,1449,2297299,0,0,6473.5908 -6034,7442,13562,-9,-9,-9,1,1,0,72,3,0,1,0,2,-9,4,3,0,0,4,0,5.4549289,5.9046993,4,0,0,0,-9,0,-1034.4043,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8651509,0,0,59.139999,52.5,-9,-9,6,1,1,0,0,7,2,1,1294,63189.664,0,0,-769.48511 -6034,7443,13563,-9,13562,-9,2,1,1,47,3,0,1,0,2,-9,2,1,0,0,3,7.3131313,7.0016394,0,3,0,0,0,-9,0,-914.14227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,1,3.1590536,3.1590536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,-9,-9,4,1,1,0,1,7,2,1,962,-34188.957,0,0,874.68616 -6034,7444,13564,-9,-9,13563,3,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,5.4881988,5.1681719,3,0,0,0,-9,0,-973.97791,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,1,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5924201,0,0,0,56.41,53.709999,-9,-9,7,1,1,0,0,7,2,1,728,73216.617,0,0,55.443241 -6035,7445,13565,13566,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,0,0,0,0,0,72,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.1775975,1,47.939999,53.790001,52,47,6,1,1,0,0,13,1,1,465,220527.69,0,0,1240.1635 -6035,7445,13566,13565,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,0,0,-9,0,0,72,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6076894,0,0,0,52,47,47.939999,53.790001,5,4,1,0,0,13,1,1,465,220527.69,0,0,1240.1635 -6036,7446,13567,13568,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,7,0,-3,30.478621,0,0,0,66,2,4,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,52.619999,59.150002,49.669998,7,1,1,0,0,11,4,1,629.5,1318204.5,0,0,2995.9873 -6036,7446,13568,13567,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,4,7.738802,8.5529871,7.7379622,1,0,-9,7,0,3,104.69446,0,0,0,63,2,3,3,3,3,2019,2,2,10,0,11,28,15,1,0,3,0,18.649515,18.649515,1,0,0,0,0,0,0,0,1,1,0,0,8.3886623,0,0,59.150002,49.669998,50.029999,52.619999,7,1,1,0,0,11,4,1,629.5,1318204.5,0,0,2995.9873 -6037,7447,13569,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,0,3,7.414928,7.4326034,0,4,0,0,0,-9,0,-1076.625,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,36,24,15,1,0,-9,0,6.483695,6.483695,0,0,0,0,0,0,0,7,1,1,0,0,0,15.666131,3,39.990002,55.830002,-9,-9,6,1,1,0,0,12,3,0,616,-11512.695,0,0,1762.7727 -6037,7447,13570,-9,13569,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-906.24158,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,3,0,616,-11512.695,0,0,1762.7727 -6038,7448,13571,13572,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,1,0,0,0,0,63,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49.450001,46.540001,5,1,1,0,0,8,1,0,522,92890.438,0,0,3990.8276 -6038,7448,13572,13571,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,42,0,-1,0,0,0,0,64,3,3,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.333185,1,49.450001,46.540001,52,48,5,1,1,0,0,8,1,0,522,92890.438,0,0,3990.8276 -6039,7449,13573,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,2,1,0,0,3,6.9531841,7.4488997,5.9666686,3,0,0,0,-9,0,-995.67871,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,17,19,15,1,0,-9,0,6.4525461,6.4525461,1,0,0,8.8119459,3.3953655,0,0,0,1,1,0,0,5.6602802,0,0,59.310001,44.279999,-9,-9,5,1,1,0,0,2,3,1,488,194388.5,0,0,1716.5427 -6040,7450,13574,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,0,5,7.77109,8.4006348,6.9376373,4,0,0,0,-9,0,-1025.2517,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,7,0,20,23,15,1,0,-9,0,18.826206,18.826206,0,0,0,0,0,0,0,0,1,1,0,6.5894017,0,0,0,47.419998,59.360001,-9,-9,6,1,1,0,0,6,3,1,471.5,-94082.891,0,0,1503.3821 -6040,7450,13575,-9,13574,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1138.2264,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,7,1,1,0,0,6,3,1,471.5,-94082.891,0,0,1503.3821 -6041,7451,13576,-9,13577,13579,3,1,0,12,2,1,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-935.4826,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,2,3,0,0,8,2,0,411.20001,184318.42,0,0,2506.0237 -6041,7451,13577,13579,-9,-9,1,1,0,39,1,1,3,0,3,-9,2,1,0,0,4,7.1703291,7.1640029,0,2,0,-9,4,0,4,.83281386,0,0,1,35,1,4,3,3,3,2019,2,5,11,1,24,24,15,1,0,3,0,8.2474594,8.2474594,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,56,50,57,5,2,3,0,0,8,2,0,411.20001,184318.42,0,0,2506.0237 -6041,7451,13578,-9,13577,13579,6,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.61066,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,2,0,411.20001,184318.42,0,0,2506.0237 -6041,7451,13579,13577,-9,-9,5,1,1,35,1,1,3,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,4,0,-4,109.62279,0,0,0,39,3,4,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,49,56,5,2,3,1,1,8,2,0,411.20001,184318.42,0,0,2506.0237 -6041,7451,13580,-9,13577,13579,4,1,0,10,2,1,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1016.252,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,8,2,0,411.20001,184318.42,0,0,2506.0237 -6041,7452,13581,-9,13577,13579,2,1,1,20,2,1,3,0,2,1,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-842.72791,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,2,3,1,1,8,1,0,873,0,0,0,339.81656 -6042,7453,13582,13583,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,0,5,8.6285095,8.4827385,0,1,0,-9,5,0,0,-78.279663,0,1,0,26,1,4,1,-9,-9,2019,1,1,8,1,51,50,15,1,0,1,0,12.336269,12.336269,0,0,0,0,0,0,0,0,0,0,0,3.0855119,0,0,0,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,9,5,0,1819,112529.52,0,0,3187.614 -6042,7453,13583,13582,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.6816578,8.8185444,0,1,0,-9,5,0,0,43.666534,0,1,1,26,1,5,1,2,2,2019,1,2,7,0,38,39,15,1,0,1,0,19.545195,19.545195,0,0,0,0,0,0,0,0,0,0,0,2.2122617,0,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,9,5,0,1819,112529.52,0,0,3187.614 -6043,7454,13584,13585,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,0,4,0,10.140985,10.154174,1,0,-9,49,0,0,3.1456389,0,0,0,75,2,2,3,3,3,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1518831,9.7833004,8.8493118,1,46.799999,40.619999,47.369999,18.68,6,1,1,0,0,13,5,1,440.5,964730,0,0,26825.898 -6043,7454,13585,13584,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,10.107119,10.330319,1,0,-9,49,0,0,-43.499275,0,0,0,75,1,4,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1930783,9.6662464,0,0,47.369999,18.68,46.799999,40.619999,3,1,1,0,0,13,5,1,440.5,964730,0,0,26825.898 -6044,7455,13586,13587,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,3,8.7066622,8.1515541,0,1,0,-9,10,0,0,-12.027299,0,0,0,55,3,2,3,3,3,2019,2,2,8,0,0,65,15,1,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,17.437555,1,52.349998,44.66,42.560001,26.59,6,1,1,0,0,5,4,0,343.5,993969.5,0,0,1774.9435 -6044,7455,13587,13586,-9,-9,2,1,0,55,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,10,0,0,13.696154,0,0,0,55,3,3,1,3,-9,2019,3,1,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.560001,26.59,52.349998,44.66,3,1,1,0,0,5,4,0,343.5,993969.5,0,0,1774.9435 -6044,7456,13588,-9,13587,13586,3,1,1,37,3,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1041.083,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.709999,50.880001,-9,-9,4,1,1,1,0,5,1,0,1667,59621.141,0,0,0 -6044,7457,13589,-9,13587,13586,4,1,1,28,2,0,0,0,2,-9,2,1,0,0,3,7.6265388,8.0265198,0,3,0,0,0,-9,0,-1036.3999,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,.48553109,0,24.53229,3,42.02,48.450001,-9,-9,5,1,1,0,1,5,3,0,1016,-56574.555,0,0,1958.8868 -6044,7458,13590,-9,13587,13586,5,1,1,24,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-933.53931,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,13.272542,3,37.189999,57.34,-9,-9,5,1,1,1,0,5,1,0,110,-37622.09,0,0,-707.78265 -6045,7459,13591,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-952.54602,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,9,1,1,3533,-51726.641,0,0,902.60254 -6046,7460,13592,13593,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.7068586,7.8395829,1,0,-9,48,0,2,28.334793,0,0,0,67,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0479088,7.2310352,0,0,59.709999,21.75,50.27,44.25,6,1,1,0,0,6,2,1,823.5,359646.19,0,0,2272.9963 -6046,7460,13593,13592,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,-2,87.404388,0,0,0,69,1,2,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3662543,0,0,0,50.27,44.25,59.709999,21.75,6,1,1,0,0,6,2,1,823.5,359646.19,0,0,2272.9963 -6047,7461,13594,-9,-9,-9,1,1,0,57,3,1,2,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-927.93024,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,30,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.130001,14.04,-9,-9,1,1,1,0,0,6,1,0,782,-27412.42,0,0,1253.7297 -6047,7462,13595,-9,13594,-9,2,1,0,34,2,1,2,0,2,-9,2,1,0,0,4,6.8455524,6.7859507,0,3,0,0,0,-9,0,-1038.7817,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,37,0,15,1,0,-9,1,3.3381891,3.3381891,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,6,2,0,380,-184181.86,0,0,227.14059 -6047,7463,13596,-9,13594,-9,3,1,0,30,2,1,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-880.41302,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,44.220001,-9,-9,2,1,1,1,0,6,1,0,2057.3333,28005.488,0,0,888.99768 -6047,7463,13597,-9,13596,-9,4,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1077.0623,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,1,0,2057.3333,28005.488,0,0,888.99768 -6047,7463,13598,-9,13596,-9,5,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1011.9114,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,1,0,2057.3333,28005.488,0,0,888.99768 -6048,7464,13599,13600,-9,-9,2,1,0,53,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,26,0,-17,-57.189262,0,0,0,70,3,3,1,3,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,53,47,3,4,2,0,0,5,3,1,439.5,494102.06,0,0,1349.0742 -6048,7464,13600,13599,-9,-9,1,1,1,70,1,0,0,0,3,-9,2,1,0,0,3,5.5916281,7.6200562,7.3986912,1,0,-9,27,0,17,-123.60007,0,0,0,53,3,3,3,3,3,2019,2,2,8,1,4,4,15,1,0,3,0,8.2396746,8.2396746,0,0,0,0,0,0,0,0,1,1,0,5.4736304,7.754612,0,0,53,47,54.369999,54.799999,6,1,1,0,0,5,3,1,439.5,494102.06,0,0,1349.0742 -6048,7465,13601,-9,13599,13600,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.3804398,7.4977851,0,3,0,0,0,-9,0,-949.3103,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,44,15,1,0,-9,1,4.8439064,4.8439064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.060001,58.639999,-9,-9,6,1,1,0,0,5,3,1,248,-83033.156,0,0,242.6628 -6049,7466,13602,-9,13603,13604,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1013.4692,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,1,831.33331,114173.07,0,0,2337.2251 -6049,7466,13603,13604,-9,-9,1,1,0,35,1,1,1,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,5,0,2,-14.237875,0,0,1,33,2,4,1,2,3,2019,1,2,18,6,0,51,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.830002,59.68,45.91,59.889999,5,1,1,0,0,2,4,1,831.33331,114173.07,0,0,2337.2251 -6049,7466,13604,13603,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,0,4,8.6110325,8.9755783,0,2,0,-9,5,0,-2,38.125935,0,0,0,35,1,4,1,-9,-9,2019,1,1,16,5,2,0,15,1,1,1,0,285.73343,285.73343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,40.830002,59.68,6,1,1,0,0,2,4,1,831.33331,114173.07,0,0,2337.2251 -6050,7467,13605,13606,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,2,6.0068431,6.0972013,0,1,0,-9,45,0,-1,77.90493,0,0,0,63,3,4,1,3,3,2019,1,2,12,0,6,7,15,1,0,1,0,7.7836642,7.7836642,0,0,0,0,0,0,0,7,0,0,0,3.4991796,0,7.5337615,3,49.849998,44.939999,57.16,56.150002,6,1,1,0,0,6,5,1,1378.5,1156329.3,0,0,3591.2183 -6050,7467,13606,13605,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,0,4,9.0666018,8.7532854,0,1,0,-9,45,0,1,88.846359,0,0,0,62,2,2,1,3,3,2019,1,1,6,0,52,53,15,1,0,1,0,13.336646,13.336646,0,0,0,0,0,0,0,0,0,0,0,4.8272099,0,0,0,57.16,56.150002,49.849998,44.939999,6,1,1,0,0,6,5,1,1378.5,1156329.3,0,0,3591.2183 -6051,7468,13607,13608,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,5,7.0778136,7.1649818,0,2,0,-9,20,0,0,18.530891,0,0,1,44,2,5,1,2,2,2019,1,2,3,0,18,10,15,1,0,1,0,6.7768383,6.7768383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.380001,58.02,54.099998,59.110001,5,1,1,0,0,7,3,1,598.66669,387768.56,0,0,3004.9849 -6051,7468,13608,13607,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,5,8.489315,8.988205,0,2,0,-9,20,0,0,-120.95908,0,0,0,44,2,5,1,2,2,2019,1,1,11,0,25,30,15,1,0,1,0,26.318886,26.318886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,50.380001,58.02,6,1,1,0,0,7,3,1,598.66669,387768.56,0,0,3004.9849 -6051,7468,13609,-9,13607,13608,3,1,0,17,2,0,2,0,2,-9,7,2,0,0,5,6.0813122,5.9941049,0,2,0,0,0,-9,0,-937.0473,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,7,3,1,598.66669,387768.56,0,0,3004.9849 -6052,7469,13610,-9,13611,-9,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1057.5455,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,7,5,1,1500,-12158.411,0,0,2447.1951 -6052,7469,13611,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,0,3,9.0431004,8.624197,0,4,0,-9,0,-9,0,-983.31909,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,38,0,15,1,0,-9,0,25.529467,25.529467,0,0,0,0,0,0,0,5.48,1,1,0,0,0,14.434083,3,54.900002,54.529999,-9,-9,6,3,4,0,1,7,5,1,1500,-12158.411,0,0,2447.1951 -6053,7470,13612,-9,13614,13613,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-899.70911,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,4,0,960,468343.59,0,0,2962.5029 -6053,7470,13613,13614,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,0,4,8.5648403,8.5748587,0,2,0,-9,21,0,-1,40.217247,0,0,0,42,3,3,1,2,3,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,56.939999,49.529999,5,2,3,0,0,8,4,0,960,468343.59,0,0,2962.5029 -6053,7470,13614,13613,-9,-9,1,1,0,42,1,0,1,0,3,-9,2,1,0,0,3,6.0274158,5.9736252,0,2,0,-9,21,0,1,-80.093964,0,0,1,41,2,4,1,3,3,2019,1,2,5,1,16,0,15,1,0,1,0,3.7725153,3.7725153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,52,55,6,2,3,0,1,8,4,0,960,468343.59,0,0,2962.5029 -6054,7471,13615,13616,-9,-9,2,1,1,73,1,0,0,0,3,-9,1,1,0,0,3,8.4975281,8.371665,0,1,0,-9,50,0,3,44.399067,0,0,0,70,2,3,3,3,3,2019,2,1,11,1,60,80,15,1,0,4,0,7.6537819,7.6537819,0,0,0,0,0,0,0,0,1,1,0,4.2761869,0,0,0,40.310001,57.720001,50.349998,48.32,5,1,1,0,0,2,3,1,412,1981675.5,0,0,2696.1704 -6054,7471,13616,13615,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,3.1268032,3.0668199,1,0,-9,50,0,-3,-37.022789,0,0,0,73,3,3,1,2,2,2019,3,2,16,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.8736663,0,0,50.349998,48.32,40.310001,57.720001,5,1,1,0,0,2,3,1,412,1981675.5,0,0,2696.1704 -6055,7472,13617,13618,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,1,0,7.6309114,7.7682314,1,0,-9,49,0,2,93.818115,0,0,0,68,2,1,3,3,3,2019,4,2,24,10,0,0,15,4,1,4,0,0,0,1,0,9.7447863,0,0,0,0,0,1,1,0,7.7039933,7.6830034,0,0,34.060001,21.35,34.889999,18,3,1,1,0,0,8,4,1,847,3250939.8,0,0,3059.2046 -6055,7472,13618,13617,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,1,0,8.3783054,8.1205349,1,0,-9,49,0,-2,-84.271255,0,0,0,70,3,1,3,-9,-9,2019,4,1,30,11,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,8.3695745,75.061264,1,34.889999,18,34.060001,21.35,5,1,1,0,0,8,4,1,847,3250939.8,0,0,3059.2046 -6056,7473,13619,-9,13621,13622,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-861.06226,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,2,1,1152,-53437.52,0,0,2258.5691 -6056,7473,13620,-9,13621,13622,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.56653,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,2,1,1152,-53437.52,0,0,2258.5691 -6056,7473,13621,13622,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.1047621,7.4331069,0,2,0,-9,11,0,-3,-103.11537,0,0,1,41,2,3,1,-9,-9,2019,1,1,12,0,24,20,15,1,0,1,0,6.6995749,6.6995749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.849998,49.119999,54.959999,53.169998,5,1,1,0,0,9,2,1,1152,-53437.52,0,0,2258.5691 -6056,7473,13622,13621,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,11,0,3,-53.90757,0,0,0,38,2,3,1,-9,-9,2019,1,2,8,1,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8171763,0,0,0,54.959999,53.169998,51.849998,49.119999,6,1,1,0,0,9,2,1,1152,-53437.52,0,0,2258.5691 -6057,7474,13623,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,0,3,0,4.3239808,3.9946671,3,0,0,0,-9,0,-911.52948,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3241172,4.2294979,0,0,46.650002,31.16,-9,-9,5,1,1,0,0,10,1,1,1002,683665.94,0,0,1213.7841 -6058,7475,13624,13625,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,0,3,8.9991598,9.056735,0,1,0,-9,6,0,-14,28.964918,0,0,0,61,2,4,1,2,2,2019,1,2,26,11,45,42,15,1,1,1,0,19.570854,19.570854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.51,65.199997,48.810001,59.91,3,1,1,0,0,10,5,1,940,1816523,0,0,2883.2305 -6058,7475,13625,13624,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,7.1017785,7.2901506,0,1,0,-9,6,0,14,85.352531,0,0,0,47,1,3,1,3,2,2019,1,1,11,1,50,50,15,1,0,1,0,2.7715209,2.7715209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,17.51,65.199997,6,1,1,0,1,10,5,1,940,1816523,0,0,2883.2305 -6059,7476,13626,13627,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.0269618,6.8791208,1,0,-9,41,0,3,-19.525003,0,0,0,66,3,2,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.872798,0,0,51.400002,41.419998,35.66,41.860001,2,1,1,0,0,10,2,1,4907.5,204558.31,0,0,2187.5024 -6059,7476,13627,13626,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,0,2,6.9990225,6.8555989,0,1,0,-9,41,0,-3,49.613457,0,0,0,69,3,2,3,3,3,2019,2,2,11,0,15,15,15,1,0,4,0,8.1902847,8.1902847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.66,41.860001,51.400002,41.419998,3,1,1,0,0,10,2,1,4907.5,204558.31,0,0,2187.5024 -6060,7477,13628,13629,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,55,0,4,56.157875,0,0,0,76,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,15.369967,75.055519,0,0,0,134.81055,0,1,1,0,0,0,0,0,52,45,26.67,57.759998,6,1,1,0,0,2,2,1,1081.5,352489.16,0,0,445.73669 -6060,7477,13629,13628,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,5.1176534,5.0958247,1,0,-9,55,0,-4,-61.182907,0,0,0,80,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.7556586,5.1212893,77.492622,1,26.67,57.759998,52,45,4,1,1,0,0,2,2,1,1081.5,352489.16,0,0,445.73669 -6061,7478,13630,-9,13632,-9,2,1,0,17,2,0,2,0,2,1,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1126.8424,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.07,27.629999,-9,-9,1,2,3,0,0,2,2,1,286.33334,161621.25,0,0,1594.2633 -6061,7478,13631,-9,13632,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1025.8989,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,2,2,1,286.33334,161621.25,0,0,1594.2633 -6061,7478,13632,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,2,7.4854269,7.7114172,0,4,0,0,0,-9,0,-1051.5914,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,11,30,30,15,1,1,-9,0,8.5463839,8.5463839,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.103638,3,15.72,50.169998,-9,-9,4,2,3,0,0,2,2,1,286.33334,161621.25,0,0,1594.2633 -6062,7479,13633,13634,-9,-9,1,1,0,45,1,0,0,0,3,-9,1,1,0,0,3,8.0269279,7.7318668,0,1,0,-9,27,0,0,96.971405,0,0,0,45,2,4,1,3,3,2019,1,2,12,0,25,30,15,1,0,1,0,14.491383,14.491383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.93,56.27,36.75,54.560001,4,1,1,0,0,7,5,1,266.5,382982.38,0,0,3085.3643 -6062,7479,13634,13633,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.6021748,8.38939,0,1,0,-9,27,0,0,-4.6726222,0,0,0,45,3,3,1,3,3,2019,1,1,8,0,36,36,15,1,0,1,0,16.589014,16.589014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.75,54.560001,36.93,56.27,7,1,1,0,0,7,5,1,266.5,382982.38,0,0,3085.3643 -6063,7480,13635,13638,-9,-9,2,1,0,49,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,15,0,3,-158.05264,0,0,0,46,2,4,1,3,3,2019,3,1,15,4,0,26,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.040001,43.93,41.169998,59.310001,5,1,1,1,0,5,3,1,503.25,297172.69,0,0,2269.6655 -6063,7480,13636,-9,13635,13638,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.1342,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,3,1,503.25,297172.69,0,0,2269.6655 -6063,7480,13637,-9,13635,13638,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1046.1486,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,5,3,1,503.25,297172.69,0,0,2269.6655 -6063,7480,13638,13635,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.6706619,8.5818367,0,2,0,-9,15,0,-3,5.0596776,0,0,0,49,2,3,3,2,3,2019,2,2,12,1,48,53,15,1,0,3,0,12.312316,12.312316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,34.040001,43.93,4,1,1,0,0,5,3,1,503.25,297172.69,0,0,2269.6655 -6064,7481,13639,13640,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.5838962,7.684237,0,1,0,-9,34,0,-11,-52.741207,0,0,0,70,3,2,3,3,3,2019,2,1,18,5,7,40,15,1,1,4,0,36.307137,36.307137,0,0,0,0,0,0,0,0,1,1,0,3.1632743,0,0,3,46.73,33.07,50.23,30.129999,1,2,3,0,0,8,3,1,122,906842.81,0,0,3630.1699 -6064,7481,13640,13639,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,11,52.356823,0,0,0,59,2,2,1,-9,-9,2019,3,2,19,7,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2625799,0,0,0,50.23,30.129999,46.73,33.07,3,2,3,0,0,8,3,1,122,906842.81,0,0,3630.1699 -6064,7482,13641,-9,13639,13640,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,8.3355093,8.3266859,0,3,0,0,0,-9,0,-978.66522,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,14,3,40,50,15,1,0,-9,1,15.758739,15.758739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,-9,-9,3,2,3,0,0,8,4,1,326,104400.68,0,0,2686.2732 -6064,7483,13642,-9,13639,13640,4,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.4250679,8.632246,0,3,0,0,0,-9,0,-950.77069,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,21,9,38,38,15,1,1,-9,1,13.634992,13.634992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,-9,-9,3,2,3,0,0,8,5,1,577,44318.555,0,0,2486.4448 -6065,7484,13643,-9,13644,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-807.35321,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.517806,3,46.98,59.349998,-9,-9,5,1,1,0,0,6,1,0,462.5,102972.89,0,0,2510.4951 -6065,7484,13644,-9,-9,-9,1,1,0,57,3,0,2,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-954.2254,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.593,3,44.189999,58.009998,-9,-9,2,1,1,0,0,6,1,0,462.5,102972.89,0,0,2510.4951 -6065,7485,13645,-9,13644,-9,2,1,1,18,2,0,2,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1054.3881,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,1,0,154,-130766.58,0,0,270.94647 -6066,7486,13646,13647,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,2,8.0495224,8.7099266,0,1,0,-9,4,0,-8,-22.372267,0,0,0,65,2,3,3,-9,-9,2019,2,1,14,5,30,30,15,1,1,4,0,14.072744,14.072744,0,0,0,0,0,0,0,2,1,1,0,1.60936,0,0,3,43.150002,50.939999,29.120001,59.759998,2,1,1,0,0,1,4,1,3293,239014,0,0,4294.9736 -6066,7486,13647,13646,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.7378502,7.9936962,1,0,-9,4,0,8,54.355228,0,0,0,57,2,2,1,2,2,2019,3,2,21,7,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4400628,8.2482071,2.9347579,3,29.120001,59.759998,43.150002,50.939999,3,1,1,0,0,1,4,1,3293,239014,0,0,4294.9736 -6067,7487,13648,13649,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.8798099,7.0725579,1,0,-9,8,0,-8,-53.904392,0,0,0,74,1,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5604002,6.8162613,0,0,51.240002,58.84,44.57,30.74,6,1,1,0,0,11,4,1,76.5,2189404.5,0,0,3834.728 -6067,7487,13649,13648,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,2,0,7.8909993,8.411191,1,0,-9,8,0,8,-140.63289,0,0,0,66,2,4,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,13.981299,11.174702,0,0,0,109.7792,0,1,1,0,3.100462,8.0708532,0,0,44.57,30.74,51.240002,58.84,5,1,1,0,0,11,4,1,76.5,2189404.5,0,0,3834.728 -6068,7488,13650,13651,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.4505939,8.6825867,0,1,0,-9,7,0,-10,5.416903,0,0,0,62,1,4,3,2,2,2019,2,2,7,0,37,37,15,1,0,4,0,19.224424,19.224424,0,0,0,0,0,0,0,0,0,0,0,5.981926,0,0,0,54.740002,57.220001,57.16,56.150002,6,1,1,0,0,11,5,1,433.5,1400622.8,0,0,5066.7393 -6068,7488,13651,13650,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.7112079,8.0064611,1,0,-9,7,0,10,-80.447464,0,0,0,52,2,4,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1837645,7.699132,0,0,57.16,56.150002,54.740002,57.220001,7,1,1,0,0,11,5,1,433.5,1400622.8,0,0,5066.7393 -6069,7489,13652,13653,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,4,0,7.6950779,7.6711035,1,0,-9,44,0,-2,71.63282,0,0,0,67,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8506556,8.0261087,0,0,57.16,56.150002,58.470001,44.689999,6,1,1,0,0,6,3,1,1173,1026982.9,0,0,2243.0527 -6069,7489,13653,13652,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,2.6658089,3.1629803,1,0,-9,44,0,2,30.756536,0,0,0,65,3,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9062238,2.7729473,0,0,58.470001,44.689999,57.16,56.150002,6,1,1,0,0,6,3,1,1173,1026982.9,0,0,2243.0527 -6070,7490,13654,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,1,1,0,0,5,9.4030848,9.4690542,0,3,0,0,0,-9,0,-1031.4218,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,40,20,15,1,0,-9,0,37.964329,37.964329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,2,3,0,0,8,5,0,524,1049209.3,0,0,3512.8816 -6071,7491,13655,13656,-9,-9,2,1,0,76,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,6,0,-3,-104.71741,0,0,0,79,1,3,3,2,2,2019,4,1,5,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,52.599998,52.880001,7,1,1,0,0,11,2,1,567,693434.44,0,0,2493.6633 -6071,7491,13656,13655,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.7503519,7.4281449,1,0,-9,6,0,3,-65.653976,0,0,0,76,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2837811,7.6241946,0,0,52.599998,52.880001,57.330002,53.459999,7,1,1,0,0,11,2,1,567,693434.44,0,0,2493.6633 -6072,7492,13657,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,1,1,0,0,2,4.3982224,4.030582,0,3,0,0,0,-9,0,-986.9021,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,33,45,15,1,1,-9,0,.30905274,.30905274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.689999,46.68,-9,-9,6,1,1,0,0,10,2,0,380,-5171.9717,0,0,503.69522 -6073,7493,13658,13659,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,4,0,6.9145241,6.8222966,1,0,-9,57,0,3,-28.697546,0,0,0,75,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.1576097,7.1106277,74.866142,1,53.009998,38.93,51,46,6,1,1,0,0,6,2,0,587.5,495925.94,0,0,2776.6279 -6073,7493,13659,13658,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-3,66.380775,0,0,0,78,3,4,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,14.064242,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53.009998,38.93,6,1,1,0,0,6,2,0,587.5,495925.94,0,0,2776.6279 -6074,7494,13660,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,1,2,7.8718209,7.6890473,0,3,0,0,0,-9,0,-1032.1527,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,22,22,15,1,1,-9,0,15.714882,15.714882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,24.41,-9,-9,5,1,1,0,0,8,4,0,650,527990.56,0,0,2364.7134 -6074,7495,13661,-9,13660,-9,2,1,1,24,2,0,0,0,2,1,97,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1026.9099,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.767349,3,23.09,53.060001,-9,-9,2,1,1,0,1,8,1,0,2317,-17351.754,0,0,-75.974724 -6074,7496,13662,-9,13660,-9,3,1,1,20,2,0,0,0,2,1,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1064.1232,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.5,53.700001,-9,-9,7,1,1,0,0,8,1,0,943,27705.188,0,0,1242.7424 -6075,7497,13663,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,0,4,6.7678885,6.7815962,0,4,0,0,0,-9,0,-1002.4741,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,12,12,15,1,0,-9,0,8.9500103,8.9500103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,2,0,391,-79312.898,0,0,1432.4897 -6076,7498,13664,-9,-9,-9,1,1,1,49,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1075.1979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,7,1,1,1,0,1,1,0,147,-56929.531,0,0,-71.852875 -6077,7499,13665,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,2,0,6.9633355,7.2640882,3,0,0,0,-9,0,-1028.6254,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,26.563263,0,0,0,1,1,0,0,7.3151832,0,0,51.32,37.599998,-9,-9,6,1,1,0,0,9,2,1,271,-82446.008,0,0,1088.5662 -6078,7500,13666,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-950.75647,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,7.5958028,0,0,0,0,1,1,0,2.4399614,0,0,0,54.380001,51.939999,-9,-9,6,1,1,0,0,13,1,1,942,-6953.4595,0,0,758.50867 -6078,7501,13667,-9,-9,13666,2,1,0,41,2,0,0,0,2,-9,2,1,0,0,4,7.1398358,7.3270411,0,3,0,0,0,-9,0,-1060.0623,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,3,0,27,28,15,1,0,-9,1,6.865912,6.865912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.419998,48.970001,-9,-9,1,1,1,0,0,13,3,1,434,18855.979,0,0,1853.6815 -6078,7502,13668,-9,-9,13666,3,1,1,39,2,0,0,0,2,-9,2,1,0,0,5,8.0159674,8.1115837,0,3,0,0,0,-9,0,-1087.0952,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,8,0,37,37,15,1,0,-9,1,11.137785,11.137785,0,0,0,0,0,0,0,0,1,1,0,4.6073136,0,0,0,60.02,56.419998,-9,-9,5,1,1,0,0,13,4,1,296,-21222.258,0,0,1568.7377 -6079,7503,13669,13670,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,7.3506522,7.3396249,1,0,-9,1,-9,-5,-11.051906,-9,0,0,66,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2191188,7.5193424,0,0,44.93,55.099998,57.16,56.150002,6,1,1,0,0,10,2,1,477,505424.72,0,0,2243.502 -6079,7503,13670,13669,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,1,-9,5,19.109146,-9,0,0,61,2,4,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7440424,0,14.438157,3,57.16,56.150002,44.93,55.099998,6,1,1,0,0,10,2,1,477,505424.72,0,0,2243.502 -6080,7504,13671,13672,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,8.3436842,8.653903,7.8577566,1,0,-9,33,0,1,8.8984423,0,0,0,58,1,4,3,2,3,2019,2,1,7,0,40,50,15,1,0,4,0,12.985369,12.985369,0,0,0,0,0,0,0,0,1,1,0,6.8398271,7.6854572,0,0,54.580002,51.82,52.459999,47.23,6,1,1,0,0,2,5,1,1760,731988.94,0,0,4145.6787 -6080,7504,13672,13671,-9,-9,1,1,0,58,1,0,0,0,1,-9,4,3,0,0,4,0,7.0175691,6.8351192,1,0,-9,33,0,-1,-122.92528,0,0,0,59,1,4,1,2,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.2313623,7.2137527,43.199768,3,52.459999,47.23,54.580002,51.82,6,1,1,0,0,2,5,1,1760,731988.94,0,0,4145.6787 -6080,7505,13673,-9,13672,13671,3,1,1,26,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1011.9345,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.98,52.880001,-9,-9,4,1,1,1,0,2,1,1,1576,-25899.615,0,0,1130.614 -6080,7506,13674,-9,13672,13671,4,1,0,22,2,0,0,0,1,1,3,3,0,0,3,6.8000746,6.9367847,0,3,0,0,0,-9,0,-932.51276,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.57,55.98,-9,-9,5,1,1,1,0,2,2,1,1292,-89674.938,0,0,710.08582 -6081,7507,13675,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,5,0,7.3117943,7.2976003,3,0,0,0,-9,0,-1049.4779,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4066372,7.2222562,0,0,58.049999,54.52,-9,-9,7,1,1,0,0,6,3,1,1732,632965.31,0,0,2524.2954 -6082,7508,13676,13677,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,0,10.287929,0,0,0,68,2,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6067934,0,.54017895,3,52.82,53.970001,58.32,50.220001,6,1,1,0,0,7,2,1,872,1028071.1,0,0,1849.165 -6082,7508,13677,13676,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.8353453,6.9834895,1,0,-9,50,0,0,86.849617,0,0,0,68,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,2.8133311,7.0101609,0,3,58.32,50.220001,52.82,53.970001,6,1,1,0,0,7,2,1,872,1028071.1,0,0,1849.165 -6083,7509,13678,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,4,7.4661813,8.9355011,8.031765,3,0,0,0,-9,0,-1066.5908,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,18,18,15,1,0,-9,0,14.330218,14.330218,0,0,0,0,0,0,0,0,0,0,0,9.0100155,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,9,5,1,137,618328.94,0,0,5054.0894 -6084,7510,13679,13681,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,5,9.077837,9.195262,0,2,0,-9,6,0,1,-109.54443,0,0,0,46,1,5,1,2,3,2019,1,2,18,6,37,37,15,1,1,1,0,24.864786,24.864786,0,0,0,0,0,0,0,0,0,0,0,1.8255441,0,0,0,41.470001,59.330002,54.099998,59.110001,6,1,1,0,0,1,5,1,236,1090022.4,0,0,5911.2881 -6084,7510,13680,-9,13681,13679,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-798.24719,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,5,1,236,1090022.4,0,0,5911.2881 -6084,7510,13681,13679,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,5,9.2883091,8.9668674,0,2,0,-9,6,0,-1,-174.26184,0,0,0,47,2,5,1,3,3,2019,1,1,7,0,43,48,15,1,0,1,0,32.012997,32.012997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,41.470001,59.330002,6,1,1,0,0,1,5,1,236,1090022.4,0,0,5911.2881 -6085,7511,13682,13685,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,0,3,8.2261076,8.5331497,0,2,0,-9,14,0,2,-13.336119,0,0,0,34,1,4,1,2,2,2019,1,2,12,2,55,61,15,1,0,1,0,9.8597164,9.8597164,0,0,0,0,0,0,0,0,1,1,0,3.3348248,0,0,0,37.919998,53.029999,53.810001,53.560001,3,1,1,0,0,11,4,1,773.75,332673.84,0,0,2545.239 -6085,7511,13683,-9,13685,13682,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1157.3048,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,773.75,332673.84,0,0,2545.239 -6085,7511,13684,-9,13685,13682,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.4525,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,773.75,332673.84,0,0,2545.239 -6085,7511,13685,13682,-9,-9,2,1,0,34,1,0,2,0,1,-9,2,1,0,0,4,7.8707986,7.8412213,0,2,0,-9,13,0,-2,-104.41889,0,0,1,36,2,3,1,2,2,2019,1,1,7,0,24,24,15,1,0,1,0,14.52471,14.52471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.810001,53.560001,37.919998,53.029999,6,1,1,0,0,11,4,1,773.75,332673.84,0,0,2545.239 -6086,7512,13686,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,1,1,0,1,2,6.9693398,6.68821,0,3,0,0,0,-9,0,-953.57098,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,15,15,15,1,1,-9,0,6.5976434,6.5976434,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.191925,3,47.200001,34.16,-9,-9,3,1,1,0,0,7,2,0,522,15606.353,0,0,497.48401 -6087,7513,13687,-9,13691,13688,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1056.4703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,1,2,1,383.20001,42143.324,0,0,2191.752 -6087,7513,13688,13691,-9,-9,2,1,1,39,1,0,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,1,-9,1,-55.818947,-9,0,0,38,2,3,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.852425,3,46.32,53.439999,24.629999,60.41,4,1,1,0,1,1,2,1,383.20001,42143.324,0,0,2191.752 -6087,7513,13689,-9,13691,13688,3,1,1,17,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1044.609,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64,35.360001,-9,-9,6,1,1,0,0,1,2,1,383.20001,42143.324,0,0,2191.752 -6087,7513,13690,-9,13691,13688,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-982.41046,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,2,1,383.20001,42143.324,0,0,2191.752 -6087,7513,13691,13688,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,0,3,7.5330181,7.3741074,0,2,0,-9,1,-9,-1,49.582603,-9,0,1,39,2,2,3,2,2,2019,2,2,23,9,40,0,15,1,1,3,0,5.4129567,5.4129567,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.8453722,3,24.629999,60.41,46.32,53.439999,4,1,1,0,1,1,2,1,383.20001,42143.324,0,0,2191.752 -6088,7514,13692,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,1,1,0,0,4,4.9999366,7.653388,7.7664137,3,0,0,0,-9,0,-1027.8256,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,1,0,15,1,0,-9,0,18.01553,18.01553,1,0,0,0,0,0,0,0,1,1,0,0,7.6266103,0,0,51.77,58.57,-9,-9,6,1,1,0,0,10,3,1,1014,140390.38,0,0,2121.2688 -6089,7515,13693,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,6,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1004.8652,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,7,1,1,1396,-11193.632,0,0,0 -6090,7516,13694,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,2,7.6330376,7.7130122,0,3,0,-9,0,-9,0,-929.98944,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,27,9,35,0,15,1,1,-9,0,6.3883362,6.3883362,0,0,0,0,0,0,0,42,0,0,0,0,0,34.922752,3,24.360001,50.110001,-9,-9,2,2,3,0,0,4,3,0,418,5333.0576,0,0,809.75409 -6091,7517,13695,-9,13699,13697,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.8162,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,13,2,1,413.60001,85735.102,0,0,3459.356 -6091,7517,13696,-9,13699,13697,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.8596,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,2,1,413.60001,85735.102,0,0,3459.356 -6091,7517,13697,13699,-9,-9,1,1,1,44,1,0,3,0,2,-9,1,1,0,1,3,7.3058615,7.5853477,7.0765839,2,0,-9,17,0,3,-88.626312,0,0,0,41,2,5,3,3,3,2019,2,2,18,5,16,40,15,1,1,3,0,7.6709232,7.6709232,0,0,0,0,0,0,0,0,1,1,0,6.4842873,7.3126154,0,0,38.110001,32.459999,57.060001,57.759998,4,1,1,0,1,13,2,1,413.60001,85735.102,0,0,3459.356 -6091,7517,13698,-9,13699,13697,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-974.70569,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,13,2,1,413.60001,85735.102,0,0,3459.356 -6091,7517,13699,13697,-9,-9,2,1,0,41,1,0,3,0,2,-9,6,3,0,1,5,0,0,0,2,0,-9,17,0,-3,-18.804022,0,0,1,44,2,3,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,38.110001,32.459999,6,1,1,0,0,13,2,1,413.60001,85735.102,0,0,3459.356 -6092,7518,13700,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,1,1,0,0,4,7.501153,7.1656895,0,3,0,0,0,-9,0,-1008.0481,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,1,40,30,15,1,0,-9,0,4.2359729,4.2359729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,1,8,3,0,1834,0,0,0,238.72272 -6093,7519,13701,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1018.5988,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,8,1,0,569,129244.21,0,0,1199.6097 -6094,7520,13702,13703,13705,13706,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.7335415,8.9048223,0,2,0,-9,2,0,0,98.790398,-9,0,0,38,2,3,1,2,2,2019,1,1,8,0,60,0,15,1,0,1,0,9.8741436,9.8741436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.959999,53.169998,5,2,3,0,0,5,4,1,745,196286.56,0,0,2828.2456 -6094,7520,13703,13702,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,7,0,0,-40.932579,0,0,1,38,2,4,1,3,3,2019,1,2,8,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,57.16,56.150002,5,2,3,0,0,5,4,1,745,196286.56,0,0,2828.2456 -6094,7520,13704,-9,13703,13702,6,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.47797,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,4,1,745,196286.56,0,0,2828.2456 -6094,7521,13705,13706,-9,-9,4,1,0,62,1,0,2,0,2,-9,4,3,0,0,3,0,6.5581865,6.2859201,2,0,-9,38,0,-1,27.005211,0,0,0,63,2,2,3,3,3,2019,4,3,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1373472,6.5055318,0,0,50.029999,52.619999,52.240002,50.75,4,2,3,0,0,5,2,1,1938.5,1050440.4,0,0,1587.1208 -6094,7521,13706,13705,-9,-9,3,1,1,63,1,0,2,0,2,-9,4,3,0,0,2,0,7.166328,6.5917454,2,0,-9,2,0,1,1.4894173,-9,0,0,62,2,3,3,-9,-9,2019,4,4,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1825681,0,0,52.240002,50.75,50.029999,52.619999,7,2,3,0,0,5,2,1,1938.5,1050440.4,0,0,1587.1208 -6095,7522,13707,13708,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,4,0,8.8354025,9.2563229,1,0,-9,56,0,2,-45.16869,0,0,0,75,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.76618,8.5762672,0,0,60.119999,54.799999,60.849998,44.82,7,1,1,0,0,8,5,1,412.5,1890698.1,0,0,5559.3145 -6095,7522,13708,13707,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,56,0,-2,-23.058104,0,0,0,77,1,4,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86294991,0,0,0,60.849998,44.82,60.119999,54.799999,7,1,1,0,0,8,5,1,412.5,1890698.1,0,0,5559.3145 -6096,7523,13709,-9,13711,13712,5,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.77863,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,3,1,326.5,93017.148,0,0,2876.644 -6096,7523,13710,-9,13711,13712,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.34436,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,7,3,1,326.5,93017.148,0,0,2876.644 -6096,7523,13711,13712,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,2,7.6808362,7.5489607,0,2,0,-9,13,0,-1,35.822384,0,0,1,37,2,3,1,3,2,2019,1,2,22,8,30,30,15,1,1,1,0,7.5538692,7.5538692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.939999,27.059999,26.549999,52.849998,5,2,3,0,0,7,3,1,326.5,93017.148,0,0,2876.644 -6096,7523,13712,13711,13713,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,3,8.3765802,8.3993721,0,2,0,-9,13,0,1,137.22514,0,0,0,36,2,2,1,3,3,2019,1,1,12,4,48,40,15,1,1,1,0,7.1194029,7.1194029,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.549999,52.849998,32.939999,27.059999,3,2,3,0,0,7,3,1,326.5,93017.148,0,0,2876.644 -6096,7524,13713,-9,-9,-9,3,1,0,84,3,0,2,0,2,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-913.94647,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,2,3,0,0,7,1,1,618,60453.984,0,0,2786.9241 -6097,7525,13714,13715,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,7.8720665,7.7448735,0,1,0,1,1,-9,-1,-52.54932,0,0,1,32,2,3,1,-9,-9,2019,1,2,6,0,35,38,15,1,0,1,0,10.811014,10.811014,0,0,0,0,0,0,0,5.48,0,0,0,0,0,3.9625845,1,34.630001,53,52.650002,51.639999,7,1,1,0,0,2,4,1,700.5,88546.719,0,0,2909.0256 -6097,7525,13715,13714,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,3,7.995698,8.0452251,0,1,0,-9,1,-9,1,86.419693,-9,0,0,31,1,4,1,-9,-9,2019,1,1,10,1,35,0,15,1,0,1,0,7.9966307,7.9966307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.650002,51.639999,34.630001,53,5,1,1,0,0,2,4,1,700.5,88546.719,0,0,2909.0256 -6098,7526,13716,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,0,5,8.8819895,8.8642378,0,3,0,0,0,-9,0,-1101.8893,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,39,15,1,0,-9,0,17.309738,17.309738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,5,1,843,271517.75,0,0,926.05316 -6099,7527,13717,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,4,8.1919575,8.4008951,0,3,0,0,0,-9,0,-979.20172,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,35,35,15,1,0,-9,0,15.506271,15.506271,0,0,0,0,0,0,0,0,0,0,0,2.097832,0,0,0,60.119999,54.799999,-9,-9,5,2,3,0,0,7,4,1,122,318251.22,0,0,1895.1228 -6100,7528,13718,-9,13719,13720,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1074.3966,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,9,5,1,681,164526.28,0,0,3144.3301 -6100,7528,13719,13720,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,0,3,8.0415058,8.2001886,0,2,0,-9,3,0,-6,68.132118,-9,0,1,38,1,3,1,2,1,2019,1,2,11,1,40,0,15,1,0,1,0,12.864124,12.864124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.52,41.709999,43.490002,38.07,3,2,3,0,0,9,5,1,681,164526.28,0,0,3144.3301 -6100,7528,13720,13719,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,3,8.4917002,8.5383434,0,2,0,-9,3,0,6,24.6287,-9,0,0,32,1,3,1,3,2,2019,1,1,17,5,50,0,15,1,1,1,0,13.130056,13.130056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.490002,38.07,41.52,41.709999,3,2,3,0,0,9,5,1,681,164526.28,0,0,3144.3301 -6101,7529,13721,13722,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.3448906,7.4641662,1,0,-9,8,0,6,-24.897385,0,0,0,66,1,2,1,2,1,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0579839,6.8968177,0,0,54.200001,57.490002,55.200001,49.400002,6,1,1,0,0,10,4,1,1056.5,1509791,0,0,3556.2549 -6101,7529,13722,13721,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,0,2,7.3592472,8.511199,7.4027777,1,0,-9,37,0,-6,-61.315983,0,0,0,72,2,4,3,1,1,2019,2,2,8,0,6,0,15,1,0,4,0,26.948057,26.948057,0,0,0,0,0,0,0,0,1,1,0,4.3759747,7.7173858,0,0,55.200001,49.400002,54.200001,57.490002,6,1,1,0,0,10,4,1,1056.5,1509791,0,0,3556.2549 -6102,7530,13723,-9,13724,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-867.44861,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,885,3924.3843,0,0,1350.9578 -6102,7530,13724,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,3,7.675715,8.1530552,6.5510459,4,0,0,0,-9,0,-962.69714,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,25,21,15,1,0,-9,0,7.9119096,7.9119096,0,0,0,0,0,0,0,0,1,1,0,6.6603842,0,0,0,42.610001,54.849998,-9,-9,5,1,1,0,0,9,3,1,885,3924.3843,0,0,1350.9578 -6102,7530,13725,-9,13724,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-938.71252,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,885,3924.3843,0,0,1350.9578 -6103,7531,13726,13727,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,5,0,7.2667565,7.6638136,1,0,-9,6,0,-1,-2.4867938,0,0,0,72,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8272235,7.1799498,0,3,55.630001,55.599998,56.099998,49.93,7,1,1,0,0,9,3,1,551,1195417,0,0,2530.6309 -6103,7531,13727,13726,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,6.4225593,6.715735,1,0,-9,6,0,1,56.779877,0,0,0,71,2,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2768826,6.659646,0,3,56.099998,49.93,55.630001,55.599998,6,1,1,0,0,9,3,1,551,1195417,0,0,2530.6309 -6104,7532,13728,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,2,1,0,0,4,8.9330959,8.9783792,0,3,0,-9,0,0,0,-940.05298,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,43,41,15,1,0,-9,0,23.157915,23.157915,0,0,0,0,0,0,0,0,0,0,0,2.8127627,0,0,0,44.299999,58.080002,-9,-9,6,1,1,0,0,5,5,1,800,114261.39,0,0,2397.7371 -6104,7533,13729,-9,-9,-9,2,1,1,35,2,0,0,0,2,-9,2,1,0,0,4,8.3527861,8.292428,0,3,0,-9,0,0,0,-1042.2363,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,37,37,15,1,1,-9,0,12.524212,12.524212,0,0,0,0,0,0,0,0,0,0,0,.69598031,0,0,0,32.759998,64.440002,-9,-9,2,1,1,0,0,5,4,1,660,-7526.8008,0,0,511.53207 -6105,7534,13730,-9,13733,13732,5,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.8492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,4,1,546.75,1240253.9,0,0,4504.1709 -6105,7534,13731,-9,13733,13732,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,6.3041372,6.632452,0,2,0,0,0,-9,0,-874.02985,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.63296384,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,2,4,1,546.75,1240253.9,0,0,4504.1709 -6105,7534,13732,13733,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.9508858,8.798399,0,2,0,-9,25,0,1,-1.648284,0,0,0,43,2,5,3,-9,-9,2019,2,1,6,0,42,87,15,1,0,3,0,18.103367,18.103367,0,0,0,0,0,0,0,0,1,1,0,9.0636425,0,0,0,57.919998,51.82,43.57,62.68,6,1,1,0,0,2,4,1,546.75,1240253.9,0,0,4504.1709 -6105,7534,13733,13732,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,26,0,-1,155.56799,0,0,1,44,2,3,1,3,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.57,62.68,57.919998,51.82,6,1,1,0,0,2,4,1,546.75,1240253.9,0,0,4504.1709 -6106,7535,13734,13735,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,0,3,8.4734001,8.3184681,0,2,0,-9,7,0,1,-113.5232,0,0,0,29,2,4,1,-9,-9,2019,1,1,9,0,46,53,15,1,0,1,0,12.292539,12.292539,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.259998,42.529999,32.48,59.490002,5,1,1,0,0,13,4,1,594.66669,667924.44,0,0,3048.8218 -6106,7535,13735,13734,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,0,4,7.7822113,7.7195497,0,2,0,-9,7,0,-1,-10.28959,0,1,1,30,2,3,1,2,2,2019,1,2,16,4,27,38,15,1,1,1,0,11.177481,11.177481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.48,59.490002,63.259998,42.529999,2,1,1,0,0,13,4,1,594.66669,667924.44,0,0,3048.8218 -6106,7535,13736,-9,13735,13734,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-997.67554,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,594.66669,667924.44,0,0,3048.8218 -6107,7536,13737,13738,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.5967693,7.726264,1,0,-9,47,0,-2,121.214,0,0,0,71,2,4,3,3,2,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4905457,5.2179942,3,58.580002,22.16,60.119999,54.799999,6,1,1,0,0,7,4,1,151.5,1215070.5,0,0,5017.9238 -6107,7536,13738,13737,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,7.8118305,8.5213499,7.4060488,1,0,-9,47,0,2,108.50123,0,0,0,69,1,2,3,2,2,2019,4,1,6,0,16,16,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3429251,7.5825434,8.7459507,3,60.119999,54.799999,58.580002,22.16,6,1,1,0,0,7,4,1,151.5,1215070.5,0,0,5017.9238 -6108,7537,13739,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,4,0,8.3000584,7.970582,3,0,0,0,-9,0,-980.24207,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6808591,7.7481713,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,4,1,1869,2182570.5,0,0,2152.2141 -6109,7538,13740,13741,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,8.5458975,8.7498579,0,2,0,-9,6,0,2,15.974051,0,0,1,34,1,3,1,-9,-9,2019,1,1,7,0,38,37,15,1,0,1,0,20.216658,20.216658,0,0,0,0,0,0,0,0,1,1,0,3.5103347,0,0,0,49.459999,56.91,52,54.509998,6,1,1,0,0,6,5,1,1131.75,117478.75,0,0,6147.4468 -6109,7538,13741,13740,-9,-9,1,1,1,34,1,0,2,0,1,-9,2,1,0,0,3,9.2920094,9.2193298,0,2,0,-9,6,0,-2,-44.453209,0,0,0,36,2,4,1,2,2,2019,1,2,7,1,47,50,15,1,0,1,0,25.170237,25.170237,0,0,0,0,0,0,0,0,1,1,0,3.3295074,0,0,0,52,54.509998,49.459999,56.91,6,1,1,0,0,6,5,1,1131.75,117478.75,0,0,6147.4468 -6109,7538,13742,-9,13740,13741,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.35242,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,5,1,1131.75,117478.75,0,0,6147.4468 -6109,7538,13743,-9,13740,13741,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.35358,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,1131.75,117478.75,0,0,6147.4468 -6110,7539,13744,-9,13745,13747,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.97,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,3,0,346.75,1265426.8,0,0,1505.9739 -6110,7539,13745,13747,-9,-9,2,1,0,45,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,1,-28.193876,0,0,0,44,1,2,1,3,2,2019,3,1,17,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.889999,39.799999,55.009998,41.400002,4,4,5,0,1,8,3,0,346.75,1265426.8,0,0,1505.9739 -6110,7539,13746,-9,13745,13747,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.34479,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,8,3,0,346.75,1265426.8,0,0,1505.9739 -6110,7539,13747,13745,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,0,2,8.1478701,8.0843391,0,2,0,-9,16,0,-1,-49.441093,0,0,0,45,2,4,3,2,1,2019,2,2,12,0,50,45,15,1,0,3,0,7.5105023,7.5105023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.009998,41.400002,59.889999,39.799999,5,1,1,0,1,8,3,0,346.75,1265426.8,0,0,1505.9739 -6111,7540,13748,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1030.9928,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,1,0,0,42.166397,0,0,0,0,1,1,0,0,0,0,0,33.220001,17.549999,-9,-9,3,1,1,0,0,11,1,1,107,-122.7157,0,0,1635.2986 -6112,7541,13749,13750,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,4,8.0011616,8.2762308,5.9826427,1,0,-9,43,0,-3,25.87418,0,0,0,64,3,3,3,-9,-9,2019,2,2,9,0,30,30,15,1,0,4,0,11.81478,11.81478,0,0,0,0,0,0,0,0,0,0,0,0,6.3694816,0,0,55.189999,54.259998,51,49,6,1,1,0,0,13,3,1,588.5,1079107.5,0,0,2678.3257 -6112,7541,13750,13749,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,11,0,3,-38.429855,0,0,0,61,3,4,1,-9,-9,2019,3,1,10,1,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,55.189999,54.259998,5,4,1,0,0,13,3,1,588.5,1079107.5,0,0,2678.3257 -6113,7542,13751,13752,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,5,8.962821,8.7337046,0,1,0,-9,10,0,-4,-60.451523,0,0,0,52,2,4,1,2,2,2019,1,1,12,0,40,35,15,1,0,1,0,20.855659,20.855659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.080002,57.18,54.790001,55.860001,5,1,1,0,0,11,5,1,503.5,1083306.8,0,0,4111.6587 -6113,7542,13752,13751,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.2774668,8.2759361,0,1,0,-9,10,0,4,-87.9748,0,0,0,48,1,5,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,13.005368,13.005368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,43.080002,57.18,6,1,1,0,0,11,5,1,503.5,1083306.8,0,0,4111.6587 -6113,7543,13753,-9,13751,13752,3,1,1,19,2,0,0,1,2,0,7,2,0,0,4,4.8814764,5.1643729,0,3,0,0,0,-9,0,-929.20428,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.91,55.330002,-9,-9,6,1,1,0,0,11,2,1,1713,36797.859,0,0,598.13422 -6114,7544,13754,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-956.72577,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.599998,13.23,-9,-9,6,1,1,0,0,2,1,0,149,97208.25,0,0,2015.9424 -6115,7545,13755,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,0,4,7.6533713,7.6560488,0,4,0,-9,0,1,0,-886.88727,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,2,40,38,15,1,0,-9,0,6.2854152,6.2854152,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.810001,45.939999,-9,-9,6,1,1,0,0,7,3,1,350,-49157.875,0,0,1995.7253 -6115,7545,13756,-9,13755,-9,2,1,0,17,2,0,1,0,2,1,2,3,0,0,2,5.9343119,6.0895691,0,4,0,0,0,-9,0,-1137.0753,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,16,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.439999,44.939999,-9,-9,3,1,1,0,0,7,3,1,350,-49157.875,0,0,1995.7253 -6116,7546,13757,-9,13758,13760,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.97913,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,4,1,592.75,872447.69,0,0,3912.3604 -6116,7546,13758,13760,-9,-9,2,1,0,59,1,0,2,0,1,-9,2,1,0,0,5,8.3431635,8.298768,0,2,0,-9,20,0,7,-74.463562,0,0,0,52,1,4,1,1,1,2019,1,1,7,0,27,0,15,1,0,1,0,21.727158,21.727158,0,0,0,0,0,0,0,0,1,1,0,5.8791718,0,0,0,55.09,55.869999,49.27,56.950001,6,1,1,0,1,8,4,1,592.75,872447.69,0,0,3912.3604 -6116,7546,13759,-9,13758,13760,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.5475,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,1,592.75,872447.69,0,0,3912.3604 -6116,7546,13760,13758,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,0,4,7.4274492,7.5279689,0,2,0,-9,20,0,-7,-47.434483,0,0,0,59,1,5,1,2,2,2019,1,2,9,0,50,0,15,1,0,1,0,4.0513463,4.0513463,0,0,0,0,0,0,0,0,1,1,0,5.5868912,0,0,0,49.27,56.950001,55.09,55.869999,4,2,3,0,1,8,4,1,592.75,872447.69,0,0,3912.3604 -6117,7547,13761,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1185.3702,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,49,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4.2408061,3,41.509998,51.200001,-9,-9,2,1,1,1,0,9,1,1,925,440523.16,0,0,0 -6118,7548,13762,13764,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,8.8358269,8.5908165,0,2,0,-9,11,0,-1,11.827438,0,0,0,50,2,5,1,-9,-9,2019,1,1,9,0,43,45,15,1,0,1,0,16.639465,16.639465,0,0,0,0,0,0,0,0,1,1,0,3.5543652,0,0,0,48,51,43.32,63.939999,5,1,1,0,0,8,4,1,488.5,160646.73,0,0,4050.1536 -6118,7548,13763,-9,13764,13762,3,1,0,17,2,0,1,0,2,-9,97,3,0,0,4,6.9545217,6.9289942,0,2,0,0,0,-9,0,-1090.9266,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,24,8,2,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2181307,0,0,0,25.08,69.389999,-9,-9,2,1,1,0,0,8,4,1,488.5,160646.73,0,0,4050.1536 -6118,7548,13764,13762,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,5,7.9920526,7.8672819,0,2,0,-9,20,0,1,-90.680458,0,0,0,49,2,3,1,3,3,2019,1,2,8,0,28,26,15,1,0,1,0,10.562073,10.562073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.32,63.939999,48,51,5,1,1,0,0,8,4,1,488.5,160646.73,0,0,4050.1536 -6118,7548,13765,-9,13764,13762,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1076.1008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,8,4,1,488.5,160646.73,0,0,4050.1536 -6119,7549,13766,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,0,1,7.1771317,7.4996557,5.9646244,4,0,0,0,-9,0,-869.68225,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,17,17,15,1,0,-9,0,7.2233911,7.2233911,0,0,0,0,0,0,0,0,1,1,0,6.3384075,0,0,0,52.57,23.76,-9,-9,3,1,1,0,0,6,2,1,219,-105583.48,0,0,1911.3457 -6119,7549,13767,-9,13766,-9,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1218.0016,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.367764,0,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,6,2,1,219,-105583.48,0,0,1911.3457 -6119,7550,13768,-9,13766,-9,2,1,1,18,2,0,1,0,2,1,11,3,0,0,5,7.0476379,7.1053338,0,3,0,0,0,-9,0,-1020.1636,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,35,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,2,1,1352,26606.965,0,0,148.71239 -6120,7551,13769,13770,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.0647902,6.6953754,0,1,0,-9,2,0,7,-84.061752,0,0,0,56,2,2,1,3,3,2019,1,2,13,2,24,22,15,1,0,1,0,4.3371491,4.3371491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,48.099998,24.17,6,1,1,0,0,6,4,1,356.5,260214.61,0,0,2980.3369 -6120,7551,13770,13769,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,1,2,8.2098112,8.5638103,0,1,0,-9,2,0,-7,-60.229584,0,0,0,63,2,4,1,-9,-9,2019,1,1,14,4,44,42,15,1,1,1,0,8.6993828,8.6993828,0,0,0,0,0,0,0,0,1,1,0,4.1510868,0,0,0,48.099998,24.17,48.810001,59.91,5,1,1,0,0,6,4,1,356.5,260214.61,0,0,2980.3369 -6121,7552,13771,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,2,8.2632179,8.1655579,4.3991952,3,0,0,0,-9,0,-991.18268,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,10,37,0,15,1,1,-9,0,13.104352,13.104352,0,0,0,0,0,0,0,0,1,1,0,6.434557,0,0,0,14.32,55.810001,-9,-9,5,1,1,0,0,12,4,0,1742,185286.27,0,0,1224.7773 -6122,7553,13772,13773,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.1492405,8.3336592,0,1,0,-9,6,0,0,-53.992405,0,0,0,60,2,3,3,3,3,2019,2,1,19,8,29,29,15,1,1,4,0,13.292984,13.292984,0,0,0,0,0,0,0,0,0,0,0,4.6260948,0,0,0,40.830002,59.68,47.790001,53.790001,6,1,1,0,0,9,4,1,604.5,1611887,0,0,2401.9001 -6122,7553,13773,13772,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,0,3,0,8.0009842,7.7872033,1,0,-9,6,0,9,-56.979519,0,0,0,51,1,4,1,3,3,2019,3,2,11,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7908258,0,0,47.790001,53.790001,40.830002,59.68,6,1,1,0,0,9,4,1,604.5,1611887,0,0,2401.9001 -6122,7554,13774,-9,13772,13773,4,1,1,23,2,0,0,0,1,-9,7,2,0,0,5,6.0636835,6.1594505,0,3,0,0,0,-9,0,-1063.8115,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7085867,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,9,2,1,1154,-64597.016,0,0,49.909737 -6122,7555,13775,-9,13772,13773,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,2,7.9445529,7.5824142,0,3,0,0,0,-9,0,-1102.6411,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,22,8,32,0,15,1,1,-9,1,7.5446305,7.5446305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.129999,46.93,-9,-9,4,1,1,0,0,9,3,1,402,-23446.184,0,0,1472.3607 -6123,7556,13776,13778,-9,-9,1,1,0,37,1,0,3,0,2,-9,1,1,0,0,4,6.7331014,6.8843074,0,2,0,-9,20,0,-14,-78.429672,0,0,1,51,3,3,1,3,3,2019,1,2,7,0,10,10,15,1,0,1,0,9.1432791,9.1432791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.900002,57.869999,49,50,6,2,3,0,0,4,3,1,866.79999,333582.44,0,0,4677.9121 -6123,7556,13777,-9,13776,13778,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.2797,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,3,1,866.79999,333582.44,0,0,4677.9121 -6123,7556,13778,13776,-9,-9,2,1,1,51,1,0,3,0,3,-9,1,1,0,0,3,7.5076394,8.2065191,7.8216591,2,0,-9,20,0,14,-116.61901,0,0,0,37,2,4,1,3,3,2019,1,1,11,2,35,35,15,1,0,1,0,7.7609754,7.7609754,0,0,0,0,0,0,0,0,1,1,0,0,8.3957148,0,0,49,50,32.900002,57.869999,5,2,3,0,0,4,3,1,866.79999,333582.44,0,0,4677.9121 -6123,7556,13779,-9,13776,13778,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.47906,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,3,1,866.79999,333582.44,0,0,4677.9121 -6123,7556,13780,-9,13776,13778,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.21887,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,3,1,866.79999,333582.44,0,0,4677.9121 -6124,7557,13781,13782,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,-8,0,0,0,0,71,3,3,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,53,47,5,2,3,0,0,8,1,0,649.5,269671.03,0,0,2544.8462 -6124,7557,13782,13781,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,8,0,0,0,0,63,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,50,47,6,2,3,0,0,8,1,0,649.5,269671.03,0,0,2544.8462 -6124,7558,13783,-9,13781,13782,3,1,1,35,2,0,0,0,2,-9,2,1,0,0,4,8.4865274,8.6235266,0,3,0,0,0,-9,0,-900.81116,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,50,50,15,1,0,-9,1,12.250583,12.250583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,8,5,0,2374,56949.43,0,0,2567.4954 -6125,7559,13784,-9,-9,-9,1,1,0,22,2,0,0,0,1,1,2,1,0,0,4,8.2578173,8.2815304,0,3,0,0,0,-9,0,-1056.6548,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,21,8,35,0,15,1,1,-9,0,16.686216,16.686216,0,0,0,0,0,0,0,0,0,0,0,3.4459758,0,0,0,38,56.950001,-9,-9,3,1,1,0,0,9,5,0,736,-73114.664,0,0,775.86737 -6126,7560,13785,13786,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,1,1,0,7.2932529,7.2222319,1,0,-9,33,0,2,151.46513,0,0,0,66,2,4,1,3,3,2019,3,2,13,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9788265,7.137588,0,0,57.400002,30.780001,44.34,51.200001,6,1,1,0,0,10,3,1,661,541319.19,0,0,3239.1924 -6126,7560,13786,13785,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,0,4,6.4006996,6.4854093,5.2154422,1,0,-9,34,0,-2,105.31651,0,0,0,68,1,1,3,3,3,2019,2,1,16,6,16,8,15,1,1,4,0,3.8793681,3.8793681,0,0,0,0,0,0,0,27.5,1,1,0,.58949691,4.8212228,22.172953,1,44.34,51.200001,57.400002,30.780001,3,1,1,0,0,10,3,1,661,541319.19,0,0,3239.1924 -6127,7561,13787,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,5,0,6.9634671,6.8336406,3,0,0,0,-9,0,-1023.8455,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.714107,0,0,60.02,56.419998,-9,-9,1,1,1,0,0,1,2,0,334,298137.81,0,0,697.34515 -6128,7562,13788,13790,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,8.5491371,8.8570433,0,2,0,-9,8,0,-4,-113.61411,0,0,0,41,1,5,1,2,-9,2019,1,1,5,0,35,35,15,1,0,1,0,23.795563,23.795563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,9,5,1,950.25,438128.38,0,0,7773.7549 -6128,7562,13789,-9,13790,13788,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.2118,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,950.25,438128.38,0,0,7773.7549 -6128,7562,13790,13788,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,5,9.7702885,9.7238054,0,2,0,-9,16,0,4,-17.219828,0,0,1,37,2,4,1,2,2,2019,1,2,6,0,40,44,15,1,0,1,0,38.609135,38.609135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,9,5,1,950.25,438128.38,0,0,7773.7549 -6128,7562,13791,-9,13790,13788,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.0231,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,950.25,438128.38,0,0,7773.7549 -6129,7563,13792,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,5.2930918,5.2270546,3,0,0,0,-9,0,-1047.1772,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.2512622,0,0,70.620003,12.18,-9,-9,7,1,1,0,0,7,2,1,2306,562777.63,0,0,1730.5206 -6130,7564,13793,-9,-9,-9,1,1,0,18,2,0,0,1,2,0,7,2,0,0,5,0,5.6732178,5.735981,3,0,0,0,-9,0,-777.73602,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4316649,0,0,0,57.389999,45.419998,-9,-9,7,3,4,0,0,4,2,0,1165,-105275,0,0,-1268.7385 -6130,7565,13794,-9,-9,-9,2,1,0,18,2,0,0,1,2,0,7,2,0,0,4,0,6.0286522,5.664238,3,0,0,0,-9,0,-968.60754,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7983537,0,0,0,47.66,53.549999,-9,-9,6,3,4,0,0,4,2,0,252,-250764.59,0,0,769.84082 -6131,7566,13795,13797,-9,-9,3,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,7.1210785,7.0050192,0,2,0,-9,4,0,-2,-42.282028,0,0,0,49,2,4,1,-9,-9,2019,1,1,11,0,20,22,15,1,0,1,0,6.5477705,6.5477705,0,0,0,0,0,0,0,0,0,0,0,1.1062479,0,0,0,45.91,59.889999,55.759998,52.639999,6,1,1,0,0,12,5,1,805.33331,412989.84,0,0,5990.7876 -6131,7566,13796,-9,13795,13797,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.49133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,805.33331,412989.84,0,0,5990.7876 -6131,7566,13797,13795,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,0,4,9.7556686,9.8763142,0,2,0,-9,4,0,2,-59.274368,0,0,0,47,2,4,1,1,3,2019,1,3,12,1,70,65,15,1,0,1,0,26.192287,26.192287,0,0,0,0,0,0,0,0,0,0,0,5.2653546,0,0,0,55.759998,52.639999,45.91,59.889999,6,1,1,0,0,12,5,1,805.33331,412989.84,0,0,5990.7876 -6132,7567,13798,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,6.4828262,6.8649902,3,0,0,0,-9,0,-1008.5153,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8925512,6.6345592,0,0,61.990002,34.029999,-9,-9,6,1,1,0,0,8,2,1,378,448005.06,0,0,205.39659 -6133,7568,13799,-9,-9,-9,1,1,1,81,3,0,0,0,1,-9,4,3,0,0,2,0,5.6720862,5.7917809,3,0,0,0,-9,0,-1070.7479,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9519787,5.6097898,4.9684958,3,62.490002,36.689999,-9,-9,6,1,1,0,0,8,2,1,195,107389.95,0,0,1662.3002 -6134,7569,13800,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,8.6760492,8.6007233,0,3,0,0,0,-9,0,-1057.23,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,42,46,15,1,0,-9,0,17.906965,17.906965,0,0,0,0,0,0,0,2,0,0,0,0,0,10.437806,3,33.369999,60.580002,-9,-9,5,1,1,0,0,8,5,1,1637,-12537.008,0,0,3030.01 -6135,7570,13801,13802,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.8393316,9.2930565,0,1,0,-9,8,0,-4,8.6764669,0,0,0,59,2,3,3,-9,-9,2019,2,1,6,0,50,52,15,1,0,4,0,18.482985,18.482985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.490002,61.790001,54.959999,53.169998,7,1,1,0,0,12,5,1,309,128951.48,0,0,3382.6123 -6135,7570,13802,13801,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,4,4.3425255,0,0,0,55,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.31467831,0,0,0,54.959999,53.169998,44.490002,61.790001,6,1,1,0,0,12,5,1,309,128951.48,0,0,3382.6123 -6136,7571,13803,13804,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,1,3,6.8590608,6.8125806,0,1,0,-9,17,0,-3,16.430136,0,0,1,38,2,2,1,2,3,2019,1,1,12,2,15,15,15,1,0,1,0,6.0150685,6.0150685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.490002,34.360001,50.200001,31.469999,6,1,1,0,0,7,2,1,371.5,78891,0,0,2497.6082 -6136,7571,13804,13803,-9,-9,1,1,1,38,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,17,0,3,33.857162,0,0,0,35,2,3,1,2,3,2019,1,2,16,5,0,22,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8960986,0,0,0,50.200001,31.469999,57.490002,34.360001,3,1,1,0,0,7,2,1,371.5,78891,0,0,2497.6082 -6137,7572,13805,13806,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,5.2032909,5.3443646,0,1,0,-9,36,0,1,-10.483495,0,0,0,53,2,3,1,2,3,2019,1,2,11,1,2,0,15,1,0,1,0,7.6975889,7.6975889,0,0,0,0,0,0,0,0,0,0,0,3.2751622,0,0,0,53.560001,49.66,40.32,54.209999,6,1,1,0,0,9,4,1,198,413891.22,0,0,1648.1932 -6137,7572,13806,13805,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.3034325,8.3504486,0,1,0,-9,36,0,-1,157.47931,0,0,0,54,2,3,1,2,2,2019,1,1,11,0,40,38,15,1,0,1,0,11.99327,11.99327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.32,54.209999,53.560001,49.66,4,1,1,0,0,9,4,1,198,413891.22,0,0,1648.1932 -6137,7573,13807,-9,13805,13806,3,1,1,26,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-841.95605,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,15,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.459999,57.029999,-9,-9,5,1,1,0,0,9,1,1,1437,145536.61,0,0,-1102.7056 -6137,7574,13808,-9,13805,13806,4,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.4033041,7.4374027,0,3,0,0,0,-9,0,-911.61224,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,25,24,15,1,0,-9,1,10.33957,10.33957,0,0,0,0,0,0,0,0,0,0,0,.45703629,0,0,0,38.98,44.110001,-9,-9,4,1,1,0,0,9,3,1,266,8607.8486,0,0,-805.73193 -6138,7575,13809,-9,13810,-9,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-977.63202,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,1,0,361,-77101.578,0,0,338.60339 -6138,7575,13810,-9,13811,-9,1,1,0,32,2,0,1,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1029.847,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,16,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.9816871,3,38.990002,60.52,-9,-9,4,1,1,1,0,4,1,0,361,-77101.578,0,0,338.60339 -6138,7576,13811,-9,-9,-9,2,1,0,62,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-897.50641,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,7,0,42,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5628467,0,0,0,43.77,21.01,-9,-9,5,1,1,0,0,4,1,0,1355,-152602.05,0,0,1482.0375 -6139,7577,13812,13813,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,0,2,8.088316,7.8671155,0,1,0,-9,11,0,0,61.433308,0,0,0,65,2,3,1,3,3,2019,1,1,11,1,60,48,15,1,0,1,0,6.2233505,6.2233505,0,0,0,0,0,0,0,2,0,0,0,0,0,3.5508859,3,57.73,41.330002,49,48,4,3,4,0,0,4,5,0,337,670619.63,0,0,2670.5728 -6139,7577,13813,13812,-9,-9,1,1,0,65,1,0,0,0,2,-9,1,1,0,0,3,8.2944889,7.9297023,0,1,0,-9,36,0,0,-29.992142,0,0,0,65,2,2,1,3,3,2019,1,2,11,2,24,0,15,1,0,1,0,22.385469,22.385469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,57.73,41.330002,5,3,4,0,1,4,5,0,337,670619.63,0,0,2670.5728 -6139,7578,13814,-9,13813,13812,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,2,8.3521719,8.248045,0,3,0,0,0,-9,0,-1001.3079,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,54,50,15,1,1,-9,1,6.8925271,6.8925271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.540001,54.869999,-9,-9,3,3,4,0,1,4,4,0,364,194108.75,0,0,1365.479 -6140,7579,13815,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,4,8.6616611,8.1950169,0,3,0,0,0,-9,0,-1066.8948,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,47,50,15,1,0,-9,0,15.074882,15.074882,0,0,0,0,0,0,0,2,0,0,0,0,0,2.2274895,3,57.16,56.150002,-9,-9,6,1,1,0,0,12,5,1,109,87361.023,0,0,1946.1956 -6141,7580,13816,13817,-9,-9,1,1,0,87,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,46,0,6,-39.671272,0,0,0,81,3,3,3,-9,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,6.1288881,0,0,1,1,0,0,0,0,0,53,44,54,46,6,1,1,0,0,11,1,1,328,194229.81,0,0,1522.7146 -6141,7580,13817,13816,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,3.1171679,4.036818,1,0,-9,46,0,-6,86.217186,0,0,0,87,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,3.5440907,128.11414,1,54,46,53,44,6,1,1,0,0,11,1,1,328,194229.81,0,0,1522.7146 -6142,7581,13818,13819,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,9.4370575,9.4783611,0,2,0,-9,10,0,0,40.330925,0,0,1,39,2,4,3,2,2,2019,2,1,5,0,42,38,15,1,0,3,0,33.801815,33.801815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.75,54.919998,42.52,59.900002,6,1,1,0,0,2,5,1,599.5,-37621.809,0,0,4021.1987 -6142,7581,13819,13818,-9,-9,1,1,1,39,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,0,106.57738,0,0,0,39,1,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.52,59.900002,53.75,54.919998,5,1,1,0,0,2,5,1,599.5,-37621.809,0,0,4021.1987 -6142,7581,13820,-9,13818,13819,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.0829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,1,599.5,-37621.809,0,0,4021.1987 -6142,7581,13821,-9,13818,13819,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-931.64795,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,2,5,1,599.5,-37621.809,0,0,4021.1987 -6143,7582,13822,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,0,2,8.4925337,8.5623236,6.8645306,3,0,0,0,-9,0,-984.60645,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,0,13.122201,13.122201,0,0,0,0,0,0,0,0,1,1,0,2.7947457,7.0424714,0,0,53.07,39.5,-9,-9,6,1,1,0,0,1,5,1,608,155820.14,0,0,2169.4333 -6144,7583,13823,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,1,1,0,0,4,7.5860834,7.4383693,0,3,0,0,0,-9,0,-1002.3969,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,0,15,1,0,-9,0,5.8811522,5.8811522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,1,3,4,0,1,8,3,0,2174,-48223.18,0,0,790.68201 -6145,7584,13824,13825,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.7399912,6.4940267,1,0,-9,51,0,0,54.988903,0,0,0,70,3,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.929038,6.6233339,0,3,55.189999,54.259998,62.389999,56.709999,7,1,1,0,0,6,2,1,451.5,442493.91,0,0,1571.7891 -6145,7584,13825,13824,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,5,0,5.2337551,5.4402456,1,0,-9,51,0,0,-47.675316,0,0,0,70,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9252353,5.2708859,0,0,62.389999,56.709999,55.189999,54.259998,7,1,1,0,0,6,2,1,451.5,442493.91,0,0,1571.7891 -6146,7585,13826,-9,13829,13830,4,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.57898,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,0,605.16669,-9435.4658,0,0,1851.8297 -6146,7585,13827,-9,13829,13830,5,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.85889,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,2,0,605.16669,-9435.4658,0,0,1851.8297 -6146,7585,13828,-9,13829,13830,6,1,0,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-981.09869,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,2,0,605.16669,-9435.4658,0,0,1851.8297 -6146,7585,13829,13830,-9,-9,2,1,0,46,1,0,4,0,1,-9,2,1,0,0,3,7.5612044,8.0358315,0,2,0,-9,9,0,-8,177.42142,0,0,0,54,3,2,3,2,3,2019,2,1,10,0,38,38,15,1,0,3,0,6.3367238,6.3367238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.52,46.77,19.18,50.830002,3,1,1,0,0,2,2,0,605.16669,-9435.4658,0,0,1851.8297 -6146,7585,13830,13829,-9,-9,1,1,1,54,1,0,4,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,9,0,8,-94.261757,0,0,0,46,1,3,1,3,2,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.18,50.830002,54.52,46.77,3,1,1,0,0,2,2,0,605.16669,-9435.4658,0,0,1851.8297 -6146,7585,13831,-9,13829,13830,3,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.6066,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,605.16669,-9435.4658,0,0,1851.8297 -6147,7586,13832,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,0,5,8.3753376,8.0639572,0,1,0,-9,3,0,-4,13.523845,0,1,1,-9,-9,-9,-9,2,2,2019,1,2,7,0,41,45,15,1,0,-9,0,15.555037,15.555037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.610001,64.019997,51.830002,57.200001,6,1,1,0,0,9,4,0,380,69399.359,0,0,2040.454 -6147,7587,13833,-9,-9,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,7.9377275,7.7826285,0,1,0,-9,3,0,4,-49.525764,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,1,8,1,30,0,15,1,0,-9,0,9.6883612,9.6883612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,40.610001,64.019997,6,1,1,0,0,9,4,0,981,-248822.13,0,0,522.39911 -6148,7588,13834,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,0,3,8.4583883,8.40658,0,3,0,-9,0,-9,0,-1026.1196,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,55,0,15,1,0,-9,0,10.276687,10.276687,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.34,43.84,-9,-9,3,1,1,0,0,8,5,0,886,419774.78,0,0,1813.2771 -6148,7589,13835,-9,13834,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,8.1125946,8.4460039,0,3,0,-9,0,-9,0,-936.55432,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,36,0,15,1,0,-9,1,11.693549,11.693549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,4,2,0,0,8,4,0,555,52991.488,0,0,2003.2926 -6149,7590,13836,-9,13839,13840,3,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.11115,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,1095.8334,87228.125,0,0,3975.5947 -6149,7590,13837,-9,13839,13840,6,1,0,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.9037,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,1095.8334,87228.125,0,0,3975.5947 -6149,7590,13838,-9,13839,13840,4,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-827.83917,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,1,1095.8334,87228.125,0,0,3975.5947 -6149,7590,13839,13840,-9,-9,2,1,0,33,1,0,4,0,1,-9,2,1,0,0,4,8.2450428,7.9782209,0,2,0,-9,8,0,-8,-16.651655,0,0,1,41,2,3,1,-9,-9,2019,1,1,9,0,33,33,15,1,0,1,0,11.756194,11.756194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,38.84,51.049999,6,1,1,0,0,13,3,1,1095.8334,87228.125,0,0,3975.5947 -6149,7590,13840,13839,-9,-9,1,1,1,41,1,0,4,0,2,-9,2,1,0,0,3,8.5377569,8.533124,0,2,0,-9,8,0,8,-68.290184,0,0,0,33,1,4,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,11.7774,11.7774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.84,51.049999,49.349998,59.639999,3,1,1,0,0,13,3,1,1095.8334,87228.125,0,0,3975.5947 -6149,7590,13841,-9,13839,13840,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.2815,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,1095.8334,87228.125,0,0,3975.5947 -6150,7591,13842,13843,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,5,0,7.3771634,7.3744383,1,0,-9,6,0,1,-1.2024953,0,0,0,64,2,2,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9439502,7.528975,0,3,57.060001,57.759998,56.599998,33.830002,7,1,1,0,0,12,2,1,928.5,585842.19,0,0,2440.363 -6150,7591,13843,13842,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,1,2,0,5.3538046,5.0379491,1,0,-9,6,0,-1,69.342407,0,0,0,65,2,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8277504,4.9968038,0,3,56.599998,33.830002,57.060001,57.759998,6,1,1,0,0,12,2,1,928.5,585842.19,0,0,2440.363 -6151,7592,13844,13845,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.860168,7.8509936,5.8991375,1,0,-9,44,0,1,59.682533,0,0,0,62,3,4,1,3,-9,2019,1,2,29,11,42,42,15,1,1,1,0,8.7621469,8.7621469,0,0,0,0,0,0,0,0,1,1,0,2.704555,5.5382538,0,0,17.98,59.290001,59.880001,45.34,6,1,1,0,0,5,5,1,458,284462.19,0,0,3727.9814 -6151,7592,13845,13844,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,7.5646558,8.3371887,7.6313801,1,0,-9,44,0,-1,-83.943642,0,0,0,63,2,4,1,3,3,2019,1,1,7,0,30,30,15,1,0,1,0,8.9944019,8.9944019,0,0,0,0,0,0,0,0,1,1,0,2.4506252,7.7275705,0,0,59.880001,45.34,17.98,59.290001,5,1,1,0,0,5,5,1,458,284462.19,0,0,3727.9814 -6152,7593,13846,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,5.6524096,5.5382648,3,0,0,0,-9,0,-1007.812,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3350805,5.8525419,0,0,36.779999,41.130001,-9,-9,4,1,1,0,0,4,2,1,477,373240.66,0,0,2462.1104 -6153,7594,13847,-9,13849,13848,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.948,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,1,403.5,191173.75,0,0,2055.5139 -6153,7594,13848,13849,-9,-9,1,1,1,55,1,0,2,0,2,-9,1,1,0,0,4,7.513175,7.1747584,0,2,0,-9,19,0,7,1.0975701,0,0,0,48,3,3,1,-9,-9,2019,1,2,9,0,45,40,15,1,0,1,0,3.7707286,3.7707286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,53.740002,44.110001,4,1,1,0,0,9,2,1,403.5,191173.75,0,0,2055.5139 -6153,7594,13849,13848,-9,-9,2,1,0,48,1,0,2,0,3,-9,1,1,0,0,3,7.6026626,7.3788347,0,2,0,-9,19,0,-7,95.180077,0,0,0,55,2,4,1,-9,-9,2019,1,1,11,0,20,20,15,1,0,1,0,9.6460123,9.6460123,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.904005,3,53.740002,44.110001,54.200001,57.490002,6,1,1,0,0,9,2,1,403.5,191173.75,0,0,2055.5139 -6153,7594,13850,-9,13849,13848,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.37231,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,2,1,403.5,191173.75,0,0,2055.5139 -6154,7595,13851,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,2,0,6.1841912,6.2369542,3,0,0,0,-9,0,-980.33472,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8332739,6.0677443,0,0,60.689999,26.549999,-9,-9,7,1,1,0,0,4,2,1,474,17958.131,0,0,2180.3904 -6155,7596,13852,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,4,3,0,1,3,0,7.0063066,7.3778272,3,0,0,0,-9,0,-927.42682,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0552535,0,0,49,47,-9,-9,5,1,1,0,0,2,3,1,357,688520.69,0,0,1233.6287 -6156,7597,13853,13855,-9,-9,1,1,1,36,1,0,1,0,3,-9,2,1,0,0,4,8.5528116,8.3935127,0,2,0,-9,7,0,-1,23.305433,0,0,0,37,2,3,1,-9,-9,2019,1,2,9,0,58,47,15,1,0,1,0,10.009897,10.009897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,50.73,33.73,50.849998,6,1,1,0,0,4,4,0,890.66669,32475.389,0,0,1662.9429 -6156,7597,13854,-9,13855,13853,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1120.5138,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,0,890.66669,32475.389,0,0,1662.9429 -6156,7597,13855,13853,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,3,5.9637103,6.0896592,0,2,0,-9,7,0,1,163.37933,0,0,1,36,3,4,1,-9,-9,2019,1,1,15,4,5,0,15,1,1,1,0,11.15989,11.15989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.73,50.849998,53.82,50.73,5,1,1,0,0,4,4,0,890.66669,32475.389,0,0,1662.9429 -6157,7598,13856,13858,-9,-9,2,1,1,23,1,1,1,0,3,-9,2,1,0,0,4,7.4575286,7.4403653,0,2,0,-9,1,-9,1,-64.290787,-9,1,0,22,2,3,1,-9,-9,2019,1,1,18,6,18,0,15,1,1,1,0,9.4376755,9.4376755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.279999,63.48,32.5,56.799999,5,1,1,0,1,2,3,0,360,-42804.434,0,0,2518.7837 -6157,7598,13857,-9,13858,13856,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-940.3349,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,3,0,360,-42804.434,0,0,2518.7837 -6157,7598,13858,13856,-9,-9,1,1,0,22,1,1,1,0,2,-9,2,1,0,0,3,8.1473513,7.8180604,0,2,0,1,1,-9,-1,-45.330158,0,1,1,23,3,4,1,-9,-9,2019,1,2,10,0,33,44,15,1,0,1,0,10.680131,10.680131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,56.799999,38.279999,63.48,4,1,1,0,0,2,3,0,360,-42804.434,0,0,2518.7837 -6158,7599,13859,13861,-9,-9,1,1,0,26,1,1,2,0,3,-9,2,1,0,0,3,7.0983386,7.5299487,5.0539913,2,0,-9,3,0,0,16.409067,0,1,1,26,2,3,3,-9,-9,2019,2,3,12,0,24,0,15,1,0,3,0,6.1766834,6.1766834,0,0,0,0,0,0,0,0,1,1,0,5.1358032,0,0,0,52.650002,51.639999,34.98,49.959999,6,1,1,0,0,7,2,0,578.5,-6373.5557,0,0,2272.3269 -6158,7599,13860,-9,13859,13861,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.004,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,0,578.5,-6373.5557,0,0,2272.3269 -6158,7599,13861,13859,-9,-9,3,1,1,26,1,1,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,3,0,0,-39.867603,0,1,0,26,3,3,1,-9,-9,2019,3,1,18,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.98,49.959999,52.650002,51.639999,6,1,1,1,0,7,2,0,578.5,-6373.5557,0,0,2272.3269 -6158,7599,13862,-9,13859,13861,2,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.6174,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,2,0,578.5,-6373.5557,0,0,2272.3269 -6159,7600,13863,13864,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,5,7.6464329,7.7367268,0,1,0,-9,11,0,1,-30.562157,0,0,0,48,2,4,1,3,3,2019,1,2,12,0,28,28,15,1,0,1,0,7.6806607,7.6806607,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.099998,59.110001,51.77,58.57,6,1,1,0,0,6,4,1,442.5,500768.66,0,0,2753.6479 -6159,7600,13864,13863,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.5422411,8.1867466,0,1,0,-9,11,0,-1,18.989277,0,0,0,49,2,5,1,2,2,2019,1,1,10,0,46,40,15,1,0,1,0,10.796801,10.796801,0,0,0,0,0,0,0,2,0,0,0,1.3558742,0,5.6916256,3,51.77,58.57,54.099998,59.110001,6,1,1,0,0,6,4,1,442.5,500768.66,0,0,2753.6479 -6159,7601,13865,-9,13863,13864,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.3330069,8.5720806,0,3,0,0,0,-9,0,-1075.0948,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,1,14.397522,14.397522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,6,5,1,927,15193.813,0,0,819.29449 -6160,7602,13866,13867,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,8.4495153,8.6530952,1,0,-9,10,0,0,101.30879,0,0,0,78,2,2,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,3.0710442,0,0,0,0,0,1,1,0,7.1295981,8.2003794,0,0,53,47,40.060001,32.529999,6,1,1,0,0,6,4,1,797.5,1065329.3,0,0,2978.0469 -6160,7602,13867,13866,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,0,52.812275,0,0,0,78,2,3,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,13.238289,0,8.9792929,0,0,0,1,1,0,2.6428714,0,0,0,40.060001,32.529999,53,47,5,1,1,0,0,6,4,1,797.5,1065329.3,0,0,2978.0469 -6160,7603,13868,-9,13867,13866,3,1,1,47,2,0,0,0,2,-9,2,1,0,0,3,8.4588308,8.1713438,0,3,0,0,0,-9,0,-1063.9635,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,44,15,1,0,-9,1,11.014839,11.014839,0,0,0,0,0,0,0,0,1,1,0,1.0008396,0,0,0,49.630001,54.220001,-9,-9,5,1,1,0,0,6,4,1,4438,253864,0,0,1476.5612 -6161,7604,13869,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-843.77643,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.779999,25.23,-9,-9,2,1,1,0,0,13,1,1,113,0,0,0,465.29459 -6162,7605,13870,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,5.3139219,5.4349322,3,0,0,0,-9,0,-1107.3527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0460763,5.8174567,0,0,57.540001,42.360001,-9,-9,7,1,1,0,0,5,2,1,591,-88316.281,0,0,1523.6082 -6163,7606,13871,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.020236,8.3328123,0,3,0,0,0,-9,0,-1035.7192,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,38,42,15,1,0,-9,0,9.5115719,9.5115719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.330002,55.639999,-9,-9,6,1,1,0,0,6,4,0,1964,108974.45,0,0,426.58984 -6164,7607,13872,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,1,1,0,0,5,7.6133389,7.5395818,0,3,0,0,0,-9,0,-936.36151,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,35,0,15,1,0,-9,0,6.026876,6.026876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,-9,-9,6,1,1,0,0,2,3,0,981,-46276.227,0,0,559.98389 -6165,7608,13873,13874,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,3,8.8405619,8.9050732,5.5795398,2,0,-9,3,0,3,50.340164,0,0,1,34,2,4,1,-9,-9,2019,1,1,9,1,38,41,15,1,0,1,0,23.048307,23.048307,0,0,0,0,0,0,0,0,1,1,0,6.0424991,0,0,0,51.25,46.549999,56.349998,51,6,1,1,0,0,10,5,0,883,47865.422,0,0,4679.9258 -6165,7608,13874,13873,-9,-9,1,1,1,34,1,0,1,0,2,-9,2,1,0,0,4,8.0108109,8.0623446,0,2,0,-9,3,0,-3,81.121376,0,0,0,37,2,3,1,2,3,2019,1,2,8,0,35,35,15,1,0,1,0,10.409282,10.409282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,51,51.25,46.549999,6,1,1,0,0,10,5,0,883,47865.422,0,0,4679.9258 -6165,7608,13875,-9,13873,13874,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.72229,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,0,883,47865.422,0,0,4679.9258 -6166,7609,13876,13877,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,50,0,-3,0,0,0,0,68,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.720001,22.59,51.619999,47.75,6,1,1,0,0,13,1,1,590.5,324788.66,0,0,2244.1738 -6166,7609,13877,13876,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,3,0,0,0,0,65,3,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.619999,47.75,51.720001,22.59,6,1,1,0,0,13,1,1,590.5,324788.66,0,0,2244.1738 -6167,7610,13878,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,0,5,8.7666912,9.2909174,0,3,0,-9,0,1,0,-990.07416,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,45,15,1,0,-9,0,20.659103,20.659103,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,57.060001,57.759998,-9,-9,6,1,1,0,0,13,5,1,1285,133440.42,0,0,1584.8307 -6168,7611,13879,13880,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,7.9563365,7.4292612,0,1,0,-9,42,0,1,76.281853,-9,0,0,61,2,2,1,2,2,2019,1,2,8,0,35,0,15,1,0,1,0,6.8386812,6.8386812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,49.240002,34.360001,6,1,1,0,0,2,4,0,1493,198186.67,0,0,2133.1643 -6168,7611,13880,13879,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,7.6078119,8.0016727,0,1,0,-9,10,0,-1,-71.866112,-9,0,0,62,2,3,1,-9,-9,2019,1,1,13,2,45,0,15,1,0,1,0,5.5910192,5.5910192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.240002,34.360001,55.360001,51.57,6,1,1,0,0,2,4,0,1493,198186.67,0,0,2133.1643 -6169,7612,13881,13882,-9,-9,1,1,0,61,1,0,1,0,1,-9,1,1,0,0,3,8.4529295,8.2917643,0,2,0,-9,20,0,10,-31.491108,0,0,0,51,1,2,1,2,2,2019,1,2,10,0,45,0,15,1,0,1,0,10.29154,10.29154,0,0,0,0,0,0,0,14.5,1,1,0,4.0687151,0,9.6165543,1,47.459999,52.700001,56.59,28.629999,6,1,1,0,0,4,5,1,641,776627.19,0,0,5430.9854 -6169,7612,13882,13881,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,2,8.9109316,8.7931442,0,2,0,-9,19,0,-10,100.57805,0,0,0,61,1,3,1,1,1,2019,1,1,14,4,35,38,15,1,1,1,0,29.925058,29.925058,0,0,0,0,0,0,0,0,1,1,0,6.9210792,0,0,0,56.59,28.629999,47.459999,52.700001,6,1,1,0,0,4,5,1,641,776627.19,0,0,5430.9854 -6170,7613,13883,13885,-9,-9,1,1,0,59,1,0,0,0,1,-9,1,1,0,0,3,.24973886,.39837611,0,1,0,-9,34,0,-5,-45.705547,0,0,0,64,2,3,1,2,2,2019,1,2,11,2,30,0,15,1,0,1,0,.0014188683,.0014188683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.810001,52.330002,55.650002,41.830002,5,1,1,0,0,10,2,1,522.33331,628676.5,0,0,1233.8818 -6170,7613,13884,-9,13883,13885,3,1,0,3,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1104.3739,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,6,0,0,10,2,1,522.33331,628676.5,0,0,1233.8818 -6170,7613,13885,13883,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,0,3,.21494862,6.6267643,6.6231203,1,0,-9,34,0,5,31.520378,0,0,0,59,1,3,1,3,3,2019,1,1,10,0,30,0,15,1,0,1,0,.0012653866,.0012653866,0,0,0,0,0,0,0,0,1,1,0,6.9808955,0,0,0,55.650002,41.830002,47.810001,52.330002,6,1,1,0,0,10,2,1,522.33331,628676.5,0,0,1233.8818 -6171,7614,13886,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,2,1,0,0,4,7.2332411,6.7104578,5.3132596,3,0,0,0,-9,0,-820.08551,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,20,15,1,0,-9,0,7.6360054,7.6360054,0,0,0,0,0,0,0,0,1,1,0,.3043595,5.2574115,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,12,3,1,1801,149632.48,0,0,1741.1263 -6172,7615,13887,13888,-9,-9,2,1,1,50,1,0,0,0,2,-9,1,1,0,0,4,7.0759125,7.1971364,0,1,0,-9,27,0,-1,62.801533,0,0,0,51,1,4,1,2,2,2019,1,1,9,0,50,0,15,1,0,1,0,3.1024878,3.1024878,0,0,0,0,0,0,0,0,0,0,0,5.7344112,0,0,0,57.16,56.150002,55.790001,52.619999,6,1,1,0,0,5,3,1,433.5,478986.38,0,0,1941.5712 -6172,7615,13888,13887,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,7.6982155,7.9286733,0,1,0,-9,27,0,1,-167.82048,0,0,0,50,2,4,1,2,3,2019,1,2,2,0,25,50,15,1,0,1,0,8.6534739,8.6534739,0,0,0,0,0,0,0,0,0,0,0,1.2669032,0,0,0,55.790001,52.619999,57.16,56.150002,6,1,1,0,0,5,3,1,433.5,478986.38,0,0,1941.5712 -6173,7616,13889,13890,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,11,0,-8,0,0,0,0,75,3,2,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.98968577,0,0,0,58.5,44.669998,56.189999,46.16,6,1,1,0,1,9,1,1,1540.5,125902.06,0,0,2904.0811 -6173,7616,13890,13889,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,11,0,8,0,0,0,0,67,2,3,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.189999,46.16,58.5,44.669998,6,1,1,0,0,9,1,1,1540.5,125902.06,0,0,2904.0811 -6174,7617,13891,13892,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,48,0,-8,-64.979324,0,0,0,81,1,4,3,-9,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2279911,0,0,3,57.040001,39.669998,57,50,6,1,1,0,0,7,2,1,621,402462.66,0,0,3228.2007 -6174,7617,13892,13891,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,0,4,0,7.3892331,7.4380369,1,0,-9,48,0,8,-99.392509,0,0,0,73,1,4,3,1,1,2019,4,2,4,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5925183,7.5915909,0,3,57,50,57.040001,39.669998,7,1,1,0,0,7,2,1,621,402462.66,0,0,3228.2007 -6175,7618,13893,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,1,2,0,8.3384495,8.0991011,3,0,0,0,-9,0,-985.20441,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.1661916,0,0,0,0,74.461662,0,1,1,0,5.3879414,8.2671099,0,0,48.07,37.939999,-9,-9,5,1,1,0,0,9,4,1,1296,444472.13,0,0,3153.9319 -6176,7619,13894,13895,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,2,0,7.0057936,7.5303879,1,0,-9,45,0,1,76.420227,0,0,0,84,3,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7616076,7.1556873,0,0,57.380001,40.189999,62.41,29.709999,7,1,1,0,0,6,2,1,506.5,412268.94,0,0,2711.9622 -6176,7619,13895,13894,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,46,0,-1,-174.60645,0,0,0,85,3,2,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8324971,0,0,0,62.41,29.709999,57.380001,40.189999,6,1,1,0,0,6,2,1,506.5,412268.94,0,0,2711.9622 -6177,7620,13896,-9,13900,13897,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1135.3207,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,3,4,0,0,7,4,1,799,316533.5,0,0,3326.6919 -6177,7620,13897,13900,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,8.9050684,9.1268578,0,2,0,-9,17,0,5,-90.807816,0,0,0,39,1,5,1,2,2,2019,1,1,3,0,37,39,15,1,0,1,0,21.975498,21.975498,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8266697,3,43.380001,60.060001,60.02,56.419998,6,3,4,0,0,7,4,1,799,316533.5,0,0,3326.6919 -6177,7620,13898,-9,13900,13897,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1020.5974,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,7,4,1,799,316533.5,0,0,3326.6919 -6177,7620,13899,-9,13900,13897,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1141.1643,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,7,4,1,799,316533.5,0,0,3326.6919 -6177,7620,13900,13897,-9,-9,1,1,0,39,1,0,3,0,1,1,2,1,0,0,5,7.3240228,7.2782898,0,2,0,-9,17,0,-5,-85.34507,-9,0,1,44,1,4,1,1,1,2019,1,2,6,0,36,0,15,1,0,1,0,4.9046321,4.9046321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,43.380001,60.060001,6,3,4,0,0,7,4,1,799,316533.5,0,0,3326.6919 -6178,7621,13901,-9,13902,13904,5,1,0,17,2,0,3,0,3,-9,8,3,1,1,4,0,0,0,2,0,0,0,-9,0,-967.01343,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,0,557.79999,545968.69,0,0,4912.043 -6178,7621,13902,13904,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,9,0,-1,-127.3781,0,0,1,38,2,5,1,3,2,2019,3,4,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.262753,3,40.290001,53.32,62.389999,56.709999,3,1,1,0,1,9,3,0,557.79999,545968.69,0,0,4912.043 -6178,7621,13903,-9,13902,13904,2,1,1,17,2,0,3,0,2,-9,97,3,0,0,2,0,0,0,2,0,0,0,-9,0,-972.74524,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.02,48.650002,-9,-9,2,1,1,0,1,9,3,0,557.79999,545968.69,0,0,4912.043 -6178,7621,13904,13902,-9,-9,4,1,1,38,1,0,3,0,2,-9,2,1,0,1,5,8.5037565,7.9852962,0,2,0,-9,9,0,1,-74.368378,0,0,0,37,2,3,3,-9,-9,2019,2,1,6,0,38,52,15,1,0,3,0,12.074512,12.074512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,40.290001,53.32,4,1,1,0,1,9,3,0,557.79999,545968.69,0,0,4912.043 -6178,7621,13905,-9,13902,13904,3,1,0,16,2,0,3,0,-9,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-890.89771,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,0,557.79999,545968.69,0,0,4912.043 -6179,7622,13906,-9,-9,-9,1,1,1,45,3,0,0,0,1,-9,2,1,0,0,3,9.0098515,9.3094416,0,3,0,0,0,-9,0,-1115.5769,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,45,45,15,1,0,-9,0,22.203644,22.203644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.439999,43.52,-9,-9,4,1,1,0,0,7,5,1,337,1015667.2,0,0,3640.5286 -6180,7623,13907,13908,-9,-9,1,1,0,58,1,0,0,0,3,-9,1,1,0,0,4,7.032052,7.1261911,0,1,0,-9,40,0,-2,0,0,0,0,60,2,5,1,2,2,2019,1,2,6,0,30,30,15,1,0,1,0,4.9149795,4.9149795,0,0,0,0,0,0,0,0,0,0,0,3.6943903,0,0,0,52.77,55.330002,51.139999,60.450001,6,1,1,0,0,2,3,1,590.5,-30115.801,0,0,741.16656 -6180,7623,13908,13907,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,6.9045053,7.0259547,0,1,0,-9,40,0,2,0,0,0,0,58,3,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,3.9470432,3.9470432,0,0,0,0,0,0,0,0,0,0,0,3.1752837,0,0,0,51.139999,60.450001,52.77,55.330002,6,1,1,0,0,2,3,1,590.5,-30115.801,0,0,741.16656 -6181,7624,13909,13910,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,4,9.5930662,9.7685547,0,2,0,-9,10,0,-2,20.241728,0,0,0,42,2,4,3,2,2,2019,2,1,10,0,42,38,15,1,0,3,0,38.723152,38.723152,0,0,0,0,0,0,0,0,0,0,0,4.6067305,0,0,0,49.91,58.02,57.860001,41.98,6,1,1,0,0,6,5,1,836.66669,1107415.9,0,0,6396.9546 -6181,7624,13910,13909,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,2,71.698631,0,0,1,40,1,4,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.860001,41.98,49.91,58.02,6,1,1,0,0,6,5,1,836.66669,1107415.9,0,0,6396.9546 -6181,7624,13911,-9,13910,13909,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.3986,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,5,1,836.66669,1107415.9,0,0,6396.9546 -6182,7625,13912,13913,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.4389553,8.6366873,0,1,0,-9,28,0,-1,-4.4950213,-9,0,0,55,2,2,1,3,2,2019,1,2,6,0,40,0,15,1,0,1,0,13.672523,13.672523,0,0,0,0,0,0,0,0,0,0,0,7.9008403,0,0,0,57.16,56.150002,53.07,28.76,6,1,1,0,0,8,5,1,1035,1138044.8,0,0,6486.5635 -6182,7625,13913,13912,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,8.3422766,8.114996,0,1,0,-9,29,0,1,23.663694,-9,0,0,54,2,4,1,2,2,2019,1,1,10,0,38,0,15,1,0,1,0,13.316042,13.316042,0,0,0,0,0,0,0,0,0,0,0,8.5386229,0,0,0,53.07,28.76,57.16,56.150002,6,1,1,0,0,8,5,1,1035,1138044.8,0,0,6486.5635 -6182,7626,13914,-9,13913,13912,4,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.7770553,7.6291418,0,3,0,0,0,-9,0,-858.61768,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,36,21,15,1,0,-9,1,7.137043,7.137043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,3,1,216,3352.7585,0,0,483.94449 -6182,7627,13915,-9,13913,13912,5,1,0,18,2,0,0,0,2,0,7,2,0,0,3,6.931313,6.6015286,0,3,0,0,0,-9,0,-1010.4726,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,9,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187093,0,0,0,38.200001,58.450001,-9,-9,3,1,1,0,0,8,2,1,126,53896.25,0,0,611.83826 -6183,7628,13916,13917,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,57,0,-8,-39.539188,0,0,0,87,3,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,4.4131155,0,0,7,1,1,0,3.1540523,0,10.21361,1,60.779999,44.810001,55.509998,37.869999,7,2,3,0,0,8,2,1,455,483954.19,0,0,1039.308 -6183,7628,13917,13916,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,3,0,6.6516271,6.1722937,1,0,-9,57,0,8,58.505646,0,0,0,79,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5968564,6.7078476,0,0,55.509998,37.869999,60.779999,44.810001,7,2,3,0,0,8,2,1,455,483954.19,0,0,1039.308 -6183,7629,13918,-9,13916,13917,3,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,8.4580059,8.3713865,0,3,0,0,0,-9,0,-805.73004,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,1,9.9574594,9.9574594,0,0,0,0,0,0,0,2,1,1,0,4.6785173,0,3.5985682,3,60.540001,42.610001,-9,-9,6,2,3,0,0,8,4,1,1569,1130134,0,0,1239.0585 -6184,7630,13919,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,4,9.6352873,9.8333006,0,3,0,0,0,-9,0,-969.9527,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,16,35,15,1,0,-9,0,116.57339,116.57339,0,0,0,0,0,0,0,0,0,0,0,3.1005082,0,0,0,52.310001,58.290001,-9,-9,6,1,1,0,0,7,5,1,1207,612080.44,0,0,7388.3335 -6185,7631,13920,13924,-9,-9,2,1,0,52,1,0,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-4,32.426052,0,0,0,56,3,3,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52,54.509998,6,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7631,13921,-9,13920,13924,7,1,0,15,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.7607,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7631,13922,-9,13920,13924,6,1,0,17,2,0,5,1,2,0,7,2,0,0,4,0,5.4541965,5.1949105,2,0,0,0,-9,0,-861.81232,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1630135,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7631,13923,-9,13920,13924,8,1,1,13,2,0,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-965.31433,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7631,13924,13920,-9,-9,1,1,1,56,1,0,5,0,3,-9,2,1,0,0,3,7.9011645,8.1968269,0,2,0,-9,6,0,4,-2.49997,0,0,0,52,3,4,3,3,3,2019,2,2,8,0,60,80,15,1,0,3,0,7.2441478,7.2441478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,51.830002,57.200001,5,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7631,13925,-9,13920,13924,10,1,1,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.7126,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7631,13926,-9,13920,13924,9,1,1,12,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.8987,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,1,683.71429,1158009,0,0,2503.6858 -6185,7632,13927,-9,13920,13924,3,1,1,22,2,0,5,0,2,-9,2,1,0,0,4,8.2028866,8.2453527,0,3,0,0,0,-9,0,-929.38416,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,60,50,15,1,0,-9,1,7.3347011,7.3347011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,1106,100811.16,0,0,2295.2065 -6185,7633,13928,-9,13920,13924,4,1,0,20,2,0,5,0,2,-9,2,1,0,0,4,8.0617733,8.048502,0,3,0,0,0,-9,0,-909.37091,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,46,36,15,1,0,-9,1,9.2007017,9.2007017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,633,-4076.7593,0,0,196.86783 -6185,7634,13929,-9,13920,13924,5,1,0,18,2,0,5,0,2,1,2,1,0,0,5,7.7744718,8.0351334,0,3,0,0,0,-9,0,-1057.5336,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,36,0,15,1,0,-9,1,7.0913477,7.0913477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,13,3,1,1359,-60903.055,0,0,499.06546 -6186,7635,13930,13931,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,7.20082,8.404604,8.1768332,1,0,-9,36,0,1,47.255104,0,0,0,58,2,3,1,2,3,2019,1,1,13,2,40,6,15,1,0,1,0,3.6902082,3.6902082,0,0,0,0,0,0,0,2,1,1,0,0,7.766439,0,3,55.759998,52.639999,57.130001,44.09,6,1,1,0,0,6,5,1,537.5,2357758,0,0,5316.5708 -6186,7635,13931,13930,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,1,3,8.7591581,8.8367319,0,1,0,-9,36,0,-1,90.970932,0,0,0,59,1,4,1,3,3,2019,1,2,6,0,38,38,15,1,0,1,0,20.648958,20.648958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.130001,44.09,55.759998,52.639999,7,1,1,0,0,6,5,1,537.5,2357758,0,0,5316.5708 -6186,7636,13932,-9,13931,13930,3,1,1,31,3,0,0,0,2,-9,2,1,0,0,4,8.0397091,7.8492322,0,3,0,0,0,-9,0,-1101.5696,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,46,42,15,1,0,-9,1,5.281949,5.281949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,4,1,1,0,0,6,4,1,672,225440.23,0,0,1895.8877 -6187,7637,13933,13934,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.814662,9.2288532,0,1,0,-9,5,0,13,-71.526398,0,0,0,27,2,3,1,2,2,2019,1,2,9,0,40,39,15,1,0,1,0,22.85421,22.85421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.110001,54.040001,52,54.509998,6,1,1,0,0,7,5,1,534.5,-94628.813,0,0,5314.8008 -6187,7637,13934,13933,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,0,3,8.7661142,8.610651,0,1,0,-9,5,0,-13,59.479736,0,1,1,40,2,4,1,-9,-9,2019,1,1,10,2,48,43,15,1,0,1,0,13.80837,13.80837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,50.110001,54.040001,5,1,1,0,0,7,5,1,534.5,-94628.813,0,0,5314.8008 -6188,7638,13935,13936,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,7.997746,8.4826288,0,2,0,-9,16,0,7,30.068169,0,0,0,43,2,3,1,3,3,2019,1,1,9,1,60,48,15,1,0,1,0,8.265377,8.265377,0,0,0,0,0,0,0,0,1,1,0,.84687287,0,0,0,52,55,39.07,44.259998,6,2,3,0,0,6,4,1,555,643802.81,0,0,2091.48 -6188,7638,13936,13935,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,7.858171,7.9653134,0,2,0,-9,16,0,-7,72.961746,0,0,1,50,1,4,1,3,3,2019,1,2,26,12,30,28,15,1,1,1,0,7.5112185,7.5112185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.07,44.259998,52,55,4,2,3,0,0,6,4,1,555,643802.81,0,0,2091.48 -6188,7638,13937,-9,13936,13935,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.6637,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,4,1,555,643802.81,0,0,2091.48 -6189,7639,13938,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,4,0,6.2801285,6.4346271,3,0,0,0,-9,0,-964.48151,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0338831,6.2818594,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,8,2,1,643,51419.449,0,0,1419.2372 -6190,7640,13939,13940,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,6.0683823,5.4998775,1,0,-9,7,0,7,18.08889,0,0,0,66,2,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.049178276,5.9310732,0,0,57.16,56.150002,58.889999,48.599998,6,1,1,0,0,6,2,1,1092.5,163716.97,0,0,935.85052 -6190,7640,13940,13939,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,5.6273799,5.5891137,1,0,-9,47,0,-7,-99.303711,0,0,0,73,2,4,3,2,2,2019,4,2,6,0,0,25,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4168096,0,0,0,58.889999,48.599998,57.16,56.150002,6,1,1,0,0,6,2,1,1092.5,163716.97,0,0,935.85052 -6191,7641,13941,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.7183084,8.8263998,0,3,0,-9,0,-9,0,-997.62305,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,45,0,15,1,0,-9,0,18.441099,18.441099,0,0,0,0,0,0,0,0,0,0,0,2.6716025,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,8,5,1,427,-125588.9,0,0,1949.3702 -6192,7642,13942,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,7.7824721,8.1860266,0,3,0,0,0,-9,0,-1042.1677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,56,48,15,1,0,-9,0,6.6194291,6.6194291,0,0,0,0,0,0,0,0,1,1,0,1.3208822,0,0,0,53.369999,45.610001,-9,-9,5,1,1,0,0,7,4,1,1105,199852.31,0,0,1357.0739 -6193,7643,13943,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,4,8.7122669,8.677742,0,1,0,-9,10,0,-5,87.024078,0,0,0,-9,-9,-9,-9,3,1,2019,1,2,34,12,5,42,15,1,1,-9,0,171.17075,171.17075,0,0,0,0,0,0,0,0,0,0,0,9.328517,0,0,0,31.91,61.110001,42.09,60.419998,4,1,1,0,0,2,5,1,2380,319358.5,0,0,4318.4707 -6193,7644,13944,-9,-9,-9,2,1,1,40,2,0,0,0,1,-9,1,1,0,0,5,9.2244396,9.2752466,0,1,0,-9,10,0,5,-2.3871841,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,16,5,40,40,15,1,1,-9,0,23.387974,23.387974,0,0,0,0,0,0,0,0,0,0,0,7.4946065,0,0,0,42.09,60.419998,31.91,61.110001,3,1,1,0,0,2,5,1,587,1951224.3,0,0,5420.147 -6194,7645,13945,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,2,0,5.6320562,5.7353935,3,0,0,0,-9,0,-1069.5735,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.52749056,5.9324369,0,0,66.220001,30.66,-9,-9,6,1,1,0,0,7,2,1,768,-34643.43,0,0,718.90009 -6195,7646,13946,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,2,0,6.7595315,6.8643236,3,0,0,0,-9,0,-932.14691,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1480761,0,0,44.029999,50.310001,-9,-9,6,1,1,0,0,4,2,1,730,190509.98,0,0,427.47409 -6196,7647,13947,13950,-9,-9,1,1,0,44,1,2,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,2,-81.323326,0,0,1,42,3,4,1,2,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4184098,0,0,0,57.16,56.150002,54.799999,47.830002,7,1,1,0,0,9,5,0,463.25,835287.38,0,0,3842.4954 -6196,7647,13948,-9,13947,13950,4,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.37524,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,0,463.25,835287.38,0,0,3842.4954 -6196,7647,13949,-9,13947,13950,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.95911,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,0,463.25,835287.38,0,0,3842.4954 -6196,7647,13950,13947,-9,-9,2,1,1,42,1,2,2,0,3,-9,2,1,0,0,4,9.3580141,9.4143429,0,2,0,-9,5,0,-2,37.541412,0,0,0,44,1,4,3,-9,-9,2019,2,1,6,0,39,0,15,1,0,3,0,31.310358,31.310358,0,0,0,0,0,0,0,0,1,1,0,3.0715299,0,0,0,54.799999,47.830002,57.16,56.150002,6,1,1,0,0,9,5,0,463.25,835287.38,0,0,3842.4954 -6197,7648,13951,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,2,8.8274994,9.0212078,0,3,0,0,0,-9,0,-997.1651,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,42,42,15,1,1,-9,0,17.027458,17.027458,0,0,0,0,0,0,0,14.5,0,0,0,3.9392865,0,13.972393,3,34.290001,33.040001,-9,-9,5,1,1,0,0,6,5,1,538,130358.17,0,0,1607.9264 -6198,7649,13952,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,6.5166063,6.3279729,3,0,0,0,-9,0,-1009.9443,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,30.738935,0,1,1,0,6.4659972,6.6880379,0,0,63.009998,25.24,-9,-9,6,1,1,0,0,9,2,1,625,86067.469,0,0,3534.031 -6199,7650,13953,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,5.185605,5.298727,3,0,0,0,-9,0,-1080.9296,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3679214,4.992312,0,0,53.959999,41.27,-9,-9,6,1,1,0,0,6,2,1,1109,258221.08,0,0,2.2145178 -6199,7651,13954,-9,13953,-9,2,1,1,48,2,0,0,0,1,-9,2,1,0,0,4,8.1537828,8.3014488,0,3,0,0,0,-9,0,-1016.4079,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,4,50,66,15,1,1,-9,1,11.294716,11.294716,0,0,0,0,0,0,0,0,1,1,0,.38796794,0,0,0,55.759998,52.639999,-9,-9,5,1,1,0,0,6,4,1,2002,268381.03,0,0,1452.3562 -6200,7652,13955,13956,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,0,3,8.9080582,9.1840963,7.8871517,1,0,-9,40,0,2,61.882496,0,0,0,60,2,5,3,2,3,2019,2,2,12,3,0,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6329172,8.408267,0,0,51.57,37.049999,32.349998,56.919998,6,1,1,0,0,2,5,1,3272,1669996.9,0,0,6947.3257 -6200,7652,13956,13955,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,5,0,3.8129995,4.1118865,1,0,-9,40,0,-2,-50.102425,0,0,0,62,1,3,1,-9,-9,2019,3,1,21,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.866961,4.3478785,3.3542035,3,32.349998,56.919998,51.57,37.049999,5,1,1,0,0,2,5,1,3272,1669996.9,0,0,6947.3257 -6201,7653,13957,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-873.77698,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4944823,0,0,0,48.889999,40.130001,-9,-9,4,1,1,0,0,9,1,1,230,893.62555,0,0,1662.5912 -6202,7654,13958,-9,-9,-9,1,1,0,27,3,0,0,0,2,-9,2,1,0,0,3,9.2064075,9.0041523,0,3,0,-9,0,-9,0,-935.33893,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,43,0,15,1,1,-9,0,26.213917,26.213917,0,0,0,0,0,0,0,0,0,0,0,.89791995,0,0,0,42.080002,37.349998,-9,-9,6,2,3,0,0,8,5,0,392,102561.48,0,0,2887.7808 -6203,7655,13959,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,0,4,7.9259291,8.1652613,6.7077546,4,0,0,0,-9,0,-1012.2642,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,35,35,15,1,0,-9,0,8.0621262,8.0621262,0,0,0,0,0,0,0,0,1,1,0,6.8076158,0,0,0,43.48,60.970001,-9,-9,6,1,1,0,0,9,3,1,215,25028.563,0,0,2934.0244 -6203,7655,13960,-9,13959,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.5871,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,1,215,25028.563,0,0,2934.0244 -6204,7656,13961,13962,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,4,0,5.6516919,6.088325,1,0,-9,57,0,0,-123.2403,0,0,0,77,2,5,3,-9,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0868003,5.7286024,0,0,58.5,41.810001,59.43,58.049999,7,1,1,0,0,9,3,1,786,808941.75,0,0,3386.6147 -6204,7656,13962,13961,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,5,0,7.4442353,7.7385602,1,0,-9,57,0,0,106.61283,0,0,0,77,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9690247,7.5705762,0,0,59.43,58.049999,58.5,41.810001,6,1,1,0,0,9,3,1,786,808941.75,0,0,3386.6147 -6205,7657,13963,13966,-9,-9,1,1,1,50,1,0,3,0,3,-9,2,1,0,0,3,7.4063573,7.476779,0,2,0,-9,19,0,14,141.52011,0,0,0,36,2,5,3,3,2,2019,2,2,11,1,24,0,15,1,0,3,0,8.0365438,8.0365438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.139999,43.02,48.970001,46.360001,2,2,3,0,1,7,2,0,826.20001,136192.48,0,0,2385.1011 -6205,7657,13964,-9,13966,13963,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.81659,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,7,2,0,826.20001,136192.48,0,0,2385.1011 -6205,7657,13965,-9,13966,13963,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.09583,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,7,2,0,826.20001,136192.48,0,0,2385.1011 -6205,7657,13966,13963,-9,-9,2,1,0,36,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,20,0,-14,87.558144,0,0,1,50,3,3,1,3,2,2019,3,1,5,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.895416,1,48.970001,46.360001,42.139999,43.02,6,2,3,0,0,7,2,0,826.20001,136192.48,0,0,2385.1011 -6205,7657,13967,-9,13966,13963,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.10828,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,2,3,0,0,7,2,0,826.20001,136192.48,0,0,2385.1011 -6206,7658,13968,-9,13970,13971,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.853,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,7,3,0,467.79999,284940.5,0,0,3574.9167 -6206,7658,13969,-9,13970,13971,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.85944,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,7,3,0,467.79999,284940.5,0,0,3574.9167 -6206,7658,13970,13971,-9,-9,2,1,0,28,1,1,3,0,2,1,2,1,0,0,4,6.5584688,6.7478437,0,2,0,-9,7,0,-5,-12.349421,-9,1,1,33,1,4,2,-9,-9,2019,2,1,9,0,12,0,15,1,0,2,0,5.5492167,5.5492167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,1,7,3,0,467.79999,284940.5,0,0,3574.9167 -6206,7658,13971,13970,-9,-9,1,1,1,33,1,1,3,0,1,-9,7,2,0,0,4,8.2739229,8.5173321,0,2,0,-9,7,0,5,6.8234963,1,0,0,28,2,4,1,1,1,2019,3,2,13,3,0,33,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,58.150002,52.91,6,3,4,0,1,7,3,0,467.79999,284940.5,0,0,3574.9167 -6206,7658,13972,-9,13970,13971,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.8646,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,3,0,467.79999,284940.5,0,0,3574.9167 -6207,7659,13973,13974,-9,-9,2,1,0,31,1,1,1,0,1,-9,5,1,0,0,4,9.2300367,9.35042,0,2,0,-9,8,0,-3,-5.9332261,0,0,1,34,2,5,1,1,1,2019,1,1,4,0,47,35,15,1,0,1,0,21.625647,21.625647,0,0,0,0,0,0,0,0,1,1,0,1.560631,0,0,0,51.830002,57.200001,57.060001,57.759998,6,2,3,0,0,7,5,1,448,1355281.6,0,0,7317.9619 -6207,7659,13974,13973,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,5,8.905447,9.1999979,0,2,0,-9,8,0,3,-216.35962,0,0,0,31,1,4,1,-9,-9,2019,1,2,6,0,40,45,15,1,0,1,0,21.954636,21.954636,0,0,0,0,0,0,0,0,1,1,0,1.6551526,0,0,0,57.060001,57.759998,51.830002,57.200001,7,1,1,0,0,7,5,1,448,1355281.6,0,0,7317.9619 -6207,7659,13975,-9,13973,13974,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-984.3111,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,7,5,1,448,1355281.6,0,0,7317.9619 -6208,7660,13976,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1039.1508,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.189999,29.57,-9,-9,6,1,1,0,0,13,1,0,1026,-103254.53,0,0,1297.02 -6208,7661,13977,-9,-9,13976,2,1,0,19,2,0,0,0,3,1,2,1,0,0,5,6.0728717,6.0699744,0,3,0,0,0,-9,0,-1081.2186,-9,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,2,0,477,4664.9873,0,0,258.16922 -6209,7662,13978,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,0,3,7.4327908,7.4854469,0,3,0,0,0,-9,0,-1058.8287,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,24,24,15,1,1,-9,0,7.6079693,7.6079693,0,0,0,0,0,0,0,0,1,0,1,.79501021,0,0,0,20.59,55.400002,-9,-9,1,1,1,0,0,2,3,1,474,87510.523,0,0,1043.125 -6209,7663,13979,-9,13978,-9,2,1,0,19,2,0,0,0,2,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1039.9802,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.119999,47.299999,-9,-9,7,1,1,1,0,2,1,1,736,44150.824,0,0,740.43024 -6210,7664,13980,-9,13982,13981,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-828.87177,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,5,1,1024.6666,744315.63,0,0,5135.1899 -6210,7664,13981,13982,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,9.1852493,9.1764841,0,2,0,-9,26,0,1,-104.86031,0,0,0,50,1,4,1,2,1,2019,1,1,11,0,42,43,15,1,0,1,0,27.950232,27.950232,0,0,0,0,0,0,0,0,1,1,0,6.5557117,0,0,0,52.540001,52.91,44.130001,58.099998,5,1,1,0,0,2,5,1,1024.6666,744315.63,0,0,5135.1899 -6210,7664,13982,13981,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.5149527,8.1047602,0,2,0,-9,30,0,-1,-40.921631,0,0,0,51,1,3,1,2,1,2019,1,2,12,1,40,42,15,1,0,1,0,10.644026,10.644026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.130001,58.099998,52.540001,52.91,5,1,1,0,0,2,5,1,1024.6666,744315.63,0,0,5135.1899 -6210,7665,13983,-9,13982,13981,3,1,0,19,2,0,1,0,2,1,2,1,0,0,4,7.7321315,7.2423158,0,3,0,0,0,-9,0,-961.9447,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,47,0,15,1,0,-9,1,5.0550809,5.0550809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.119999,51.57,-9,-9,6,1,1,0,0,2,3,1,419,-83071.102,0,0,570.08972 -6211,7666,13984,13986,-9,-9,1,1,0,27,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,-6,0,0,1,1,33,1,3,3,2,2,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.169998,51.529999,49.560001,38.080002,4,2,3,0,0,5,1,0,646.75,124157.77,0,0,892.20703 -6211,7666,13985,-9,13984,13986,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.98395,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,1,0,646.75,124157.77,0,0,892.20703 -6211,7666,13986,13984,-9,-9,2,1,1,33,1,1,2,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,6,0,0,0,0,27,2,3,3,-9,-9,2019,4,1,1,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.560001,38.080002,46.169998,51.529999,4,2,3,1,0,5,1,0,646.75,124157.77,0,0,892.20703 -6211,7666,13987,-9,13984,13986,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.5355,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,1,0,646.75,124157.77,0,0,892.20703 -6212,7667,13988,-9,13990,13991,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.569,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,648.75,593441.63,0,0,3162.4712 -6212,7667,13989,-9,13990,13991,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1185.067,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,648.75,593441.63,0,0,3162.4712 -6212,7667,13990,13991,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,0,4,7.9262242,7.8868036,0,2,0,-9,11,0,-2,91.109375,0,0,1,33,2,4,1,2,2,2019,1,2,7,0,23,23,15,1,0,1,0,15.248649,15.248649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,51.830002,57.200001,2,1,1,0,0,2,4,1,648.75,593441.63,0,0,3162.4712 -6212,7667,13991,13990,-9,-9,2,1,1,33,1,1,2,0,2,-9,2,1,0,0,4,8.6099625,8.8268833,0,2,0,-9,11,0,2,27.541937,0,0,0,31,1,4,1,2,2,2019,1,1,9,0,40,58,15,1,0,1,0,15.916691,15.916691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,49.459999,56.91,6,1,1,0,0,2,4,1,648.75,593441.63,0,0,3162.4712 -6213,7668,13992,13993,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,7.8185525,7.6315999,0,1,0,-9,15,0,7,-2.5625556,0,0,0,53,2,4,1,3,2,2019,1,2,12,1,40,40,15,1,0,1,0,7.0082254,7.0082254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.939999,53.790001,41.060001,54.009998,5,1,1,0,0,4,4,0,124,254015.34,0,0,1832.2886 -6213,7668,13993,13992,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.9361286,7.9107356,0,1,0,-9,16,0,-7,-20.04813,0,0,0,60,2,3,1,2,2,2019,1,1,10,0,40,40,15,1,0,1,0,8.2861376,8.2861376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.060001,54.009998,47.939999,53.790001,5,1,1,0,0,4,4,0,124,254015.34,0,0,1832.2886 -6213,7669,13994,-9,13993,13992,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.1541967,8.4296665,0,3,0,0,0,-9,0,-1076.3625,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,57,45,15,1,0,-9,1,8.9546032,8.9546032,0,0,0,0,0,0,0,0,0,0,0,1.1530541,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,4,0,1046,-89558.516,0,0,2961.2354 -6214,7670,13995,13996,-9,-9,1,1,1,89,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,21,0,10,0,0,0,0,79,3,1,3,-9,-9,2019,4,2,21,7,0,0,15,4,1,4,0,0,0,1,2.876744,0,0,28.283737,0,0,5.48,1,1,0,0,0,4.953433,1,39.400002,18.889999,42.150002,20.530001,3,1,1,0,0,11,1,1,228,267186.19,0,0,1370.543 -6214,7670,13996,13995,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,7,0,-10,0,0,0,0,89,3,2,3,-9,-9,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,29.857933,0,0,71.5,1,1,0,0,0,73.213722,1,42.150002,20.530001,39.400002,18.889999,4,1,1,0,0,11,1,1,228,267186.19,0,0,1370.543 -6215,7671,13997,13998,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,1,1,0,6.7128944,6.9085107,1,0,-9,33,0,3,-22.899685,0,0,0,66,2,3,1,3,2,2019,3,1,31,12,0,0,15,4,1,1,0,0,0,1,4.328124,39.986076,2.6102979,0,5.1174817,0,0,1,1,0,5.2221236,6.1432495,0,0,31.25,22.360001,59.07,43.049999,2,1,1,0,0,2,4,1,657,1494137,0,0,3888.1982 -6215,7671,13998,13997,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,3,7.5548086,8.3958759,7.6652384,1,0,-9,33,0,-3,-145.7493,0,0,0,69,1,1,3,3,2,2019,2,2,6,0,30,43,15,1,0,4,0,6.4681296,6.4681296,0,0,0,0,0,0,0,74.5,1,1,0,4.4406571,7.3486314,85.9953,1,59.07,43.049999,31.25,22.360001,2,1,1,0,0,2,4,1,657,1494137,0,0,3888.1982 -6216,7672,13999,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,4,0,5.6412554,5.5532022,3,0,0,0,-9,0,-1017.1401,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2962537,5.8020234,4.1339092,3,54.77,50.34,-9,-9,6,1,1,0,0,5,2,1,3014,-4381.6777,0,0,729.83942 -6216,7673,14000,-9,-9,-9,2,1,1,52,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-972.23755,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.4486413,3,43.290001,17.08,-9,-9,2,1,1,0,0,5,1,1,3590,136083.09,0,0,-674.69727 -6217,7674,14001,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,2,0,4.105968,4.1416955,3,0,0,0,-9,0,-1095.9633,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.2532744,4.3426919,2.7578485,3,37.75,39.82,-9,-9,5,1,1,0,0,4,2,1,247,-90145.289,0,0,-49.558365 -6218,7675,14002,14003,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,8.080307,8.352396,0,2,0,-9,8,0,-2,108.39849,0,0,1,43,1,4,1,3,3,2019,1,1,13,1,47,50,15,1,0,1,0,9.865284,9.865284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.330002,44.669998,57.459999,47.779999,6,1,1,0,0,2,5,1,630.25,800757.25,0,0,4162.4526 -6218,7675,14003,14002,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.9305916,8.9288588,0,2,0,-9,8,0,2,-164.87029,0,0,0,41,1,3,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,21.673176,21.673176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.459999,47.779999,47.330002,44.669998,6,1,1,0,0,2,5,1,630.25,800757.25,0,0,4162.4526 -6218,7675,14004,-9,14002,14003,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1044.1912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,2,5,1,630.25,800757.25,0,0,4162.4526 -6218,7675,14005,-9,14002,14003,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1010.8923,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,2,5,1,630.25,800757.25,0,0,4162.4526 -6219,7676,14006,-9,-9,-9,1,1,0,39,3,0,1,0,1,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-961.3598,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,29,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8156228,0,0,0,36.18,53.830002,-9,-9,5,1,1,0,0,9,1,1,869,-203919.06,0,0,1514.718 -6219,7676,14007,-9,14006,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-989.89624,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,1,1,869,-203919.06,0,0,1514.718 -6220,7677,14008,14009,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,2,0,4.9452767,5.1920428,1,0,-9,47,0,1,52.165817,0,0,0,66,1,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,14.252478,0,0,0,0,0,1,1,0,0,5.0609679,0,0,61.68,26.01,40.119999,56.009998,5,2,3,0,0,5,4,0,327,569415.44,0,0,1328.8413 -6220,7677,14009,14008,-9,-9,2,1,0,66,1,0,0,0,1,-9,2,1,0,0,4,8.2187138,8.4219999,0,1,0,-9,46,0,-1,-33.465836,0,0,0,67,2,2,3,3,3,2019,2,1,9,0,50,60,15,1,0,4,0,8.6564293,8.6564293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.119999,56.009998,61.68,26.01,5,2,3,0,0,5,4,0,327,569415.44,0,0,1328.8413 -6221,7678,14010,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,0,4,8.2501144,8.5517302,0,4,0,-9,0,-9,0,-1078.1636,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,34,0,15,1,1,-9,0,14.786296,14.786296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,63.560001,-9,-9,3,1,1,0,0,7,4,1,745,-176212.41,0,0,1204.3679 -6221,7679,14011,-9,14010,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,0,3,8.2475996,8.327672,0,3,0,-9,0,-9,0,-1077.2775,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,40,0,15,1,1,-9,1,10.450072,10.450072,0,0,0,0,0,0,0,0,1,1,0,2.064755,0,0,0,24.209999,59.200001,-9,-9,4,1,1,0,0,7,4,1,2061,-115468.3,0,0,1377.9866 -6222,7680,14012,14013,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,0,4,7.7606735,7.9572682,6.4573226,1,0,-9,11,0,7,-86.56369,0,0,0,54,2,4,1,2,1,2019,1,2,7,0,60,55,15,1,0,1,0,4.9277101,4.9277101,0,0,0,0,0,0,0,0,0,0,0,0,6.2548418,0,0,61.290001,46.02,57.16,56.150002,6,1,1,0,0,10,5,1,390.5,1079111.3,0,0,3917.7639 -6222,7680,14013,14012,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,9.0475254,9.2534933,0,1,0,-9,11,0,-7,-103.3141,0,0,0,61,1,4,1,2,1,2019,1,1,8,0,53,40,15,1,0,1,0,19.350136,19.350136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,61.290001,46.02,6,1,1,0,0,10,5,1,390.5,1079111.3,0,0,3917.7639 -6223,7681,14014,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-963.15143,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.990002,20.33,-9,-9,4,1,1,0,0,11,1,0,678,142722.25,0,0,1189.8755 -6224,7682,14015,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,2,8.0581932,8.1418571,0,3,0,0,0,-9,0,-1030.4368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,75,40,15,1,0,-9,0,5.2173162,5.2173162,0,0,0,0,0,0,0,0,1,1,0,.48424858,0,0,0,35.439999,47.310001,-9,-9,3,1,1,0,0,2,4,1,451,382851.88,0,0,2550.4241 -6224,7683,14016,-9,14015,-9,2,1,0,29,2,0,0,0,2,0,7,2,0,0,4,6.5389481,6.810689,0,3,0,0,0,-9,0,-927.40265,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,16,4,11,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.790001,56.509998,-9,-9,5,1,1,0,1,2,2,1,2445,-188.47498,0,0,1438.9077 -6225,7684,14017,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,8.0528603,7.7162328,0,3,0,0,0,-9,0,-1121.6454,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,34,30,15,1,0,-9,0,9.8142262,9.8142262,0,0,0,0,0,0,0,27.5,0,0,0,0,0,34.747421,3,55.34,54.259998,-9,-9,6,1,1,0,0,5,3,1,1257,563301.31,0,0,763.24182 -6225,7685,14018,-9,14017,-9,2,1,0,21,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1001.5788,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.85,53.07,-9,-9,3,1,1,1,1,5,1,1,1375,59259.797,0,0,0 -6226,7686,14019,14020,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.5501766,7.4931545,1,0,-9,10,0,-7,39.169441,0,0,0,74,2,4,3,3,3,2019,4,1,10,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8673897,0,0,57.16,56.150002,59.150002,49.669998,6,1,1,0,0,12,4,1,373.5,1946578.8,0,0,3473.1929 -6226,7686,14020,14019,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,8.4035854,8.3543882,1,0,-9,35,0,7,117.84365,0,0,0,67,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5783558,0,0,59.150002,49.669998,57.16,56.150002,6,1,1,0,0,12,4,1,373.5,1946578.8,0,0,3473.1929 -6227,7687,14021,14022,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,8.4441977,8.1220665,0,1,0,-9,7,0,-3,17.5177,-9,0,0,66,3,3,3,-9,-9,2019,2,1,10,1,40,0,15,1,0,4,0,11.738454,11.738454,0,0,0,0,0,0,0,0,1,1,0,4.5313854,0,0,0,52,48,50,47,5,1,1,0,0,1,4,1,905,296010.41,0,0,2504.5269 -6227,7687,14022,14021,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,6.6051488,6.714262,1,0,-9,7,0,3,-89.867485,0,0,0,63,2,3,1,3,3,2019,3,2,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4899004,6.6497521,0,0,50,47,52,48,5,1,1,0,0,1,4,1,905,296010.41,0,0,2504.5269 -6228,7688,14023,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,0,3,7.2586017,7.602109,5.3064532,4,0,0,0,-9,0,-1107.1067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,34,47,15,1,0,-9,0,5.6193004,5.6193004,0,0,0,0,0,0,0,0,1,1,0,5.7324457,0,0,0,57.330002,53.459999,-9,-9,2,1,1,0,1,12,2,0,1013,131546.31,0,0,2361.9326 -6228,7688,14024,-9,14023,-9,5,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-946.51208,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.75,60.700001,-9,-9,4,1,1,0,0,12,2,0,1013,131546.31,0,0,2361.9326 -6228,7688,14025,-9,14023,-9,4,1,1,17,2,0,1,1,2,0,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1152.9789,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.209999,53.849998,-9,-9,4,1,1,0,0,12,2,0,1013,131546.31,0,0,2361.9326 -6228,7689,14026,-9,14023,-9,2,1,1,24,2,0,1,0,1,1,2,1,0,0,4,6.8059316,6.4678931,0,3,0,0,0,-9,0,-940.81464,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,26,10,32,0,15,1,1,-9,1,2.7301247,2.7301247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.09,61.360001,-9,-9,3,1,1,0,0,12,2,0,60,-117864.88,0,0,1491.2903 -6228,7690,14027,-9,14023,-9,3,1,1,19,2,0,1,1,2,0,7,2,0,0,2,5.1275725,5.3183928,0,3,0,0,0,-9,0,-904.3634,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.490002,40.630001,-9,-9,5,1,1,0,0,12,2,0,539,-263183.72,0,0,790.2995 -6229,7691,14028,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,2,0,8.0618,8.3390713,3,0,0,0,-9,0,-1004.2396,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,125.15434,0,0,0,0,1,1,0,5.118927,8.4421501,0,0,37.509998,19.700001,-9,-9,4,1,1,0,0,9,5,0,639,1772153.9,0,0,3914.7004 -6229,7692,14029,-9,14028,-9,2,1,0,57,3,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1020.5465,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.60583,3,50.439999,37.790001,-9,-9,6,1,1,0,0,9,1,0,703,0,0,0,369.91 -6230,7693,14030,14031,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,8.3340673,7.9581356,0,2,0,-9,6,0,4,-2.2191463,0,0,1,39,2,4,1,3,3,2019,1,1,11,0,34,25,15,1,0,1,0,14.551191,14.551191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,51,56,5,1,1,0,0,13,5,1,548.75,116333.99,0,0,4518.1777 -6230,7693,14031,14030,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,8.6970339,8.67663,0,2,0,-9,6,0,-4,-52.949421,0,0,0,43,2,4,1,3,2,2019,1,2,12,0,37,37,15,1,0,1,0,18.165531,18.165531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,45.91,59.889999,2,1,1,0,0,13,5,1,548.75,116333.99,0,0,4518.1777 -6230,7693,14032,-9,14030,14031,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.0734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,548.75,116333.99,0,0,4518.1777 -6230,7693,14033,-9,14030,14031,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.8184,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,548.75,116333.99,0,0,4518.1777 -6231,7694,14034,-9,-9,-9,1,1,1,95,3,0,0,0,2,-9,4,3,0,0,3,0,8.0392342,7.8554912,3,0,0,0,-9,0,-940.66919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4984264,8.1588402,0,0,57,43,-9,-9,6,1,1,0,0,6,4,0,424,183650.45,0,0,2109.2209 -6232,7695,14035,14036,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,8.2645655,8.2824774,0,1,0,-9,36,0,0,130.03786,0,0,0,58,1,4,3,2,2,2019,2,1,23,11,45,44,15,1,1,4,0,11.372166,11.372166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,37.369999,60.43,46.439999,4,1,1,0,0,5,3,1,646.5,300375.59,0,0,1437.9479 -6232,7695,14036,14035,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,0,4,0,4.6168919,4.8811707,1,0,-9,36,0,0,97.809624,0,0,0,58,2,2,1,2,1,2019,3,2,7,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1189685,0,0,60.43,46.439999,37.16,37.369999,6,1,1,0,0,5,3,1,646.5,300375.59,0,0,1437.9479 -6232,7696,14037,-9,14035,14036,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,3,6.6774445,6.5965509,0,3,0,0,0,-9,0,-1034.9771,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,13,13,15,1,0,-9,1,5.8881898,5.8881898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.599998,43.75,-9,-9,5,1,1,0,0,5,2,1,2007,121203.22,0,0,672.20618 -6233,7697,14038,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,6,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1076.6698,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9295478,0,0,0,24.110001,54.209999,-9,-9,4,1,1,0,0,8,1,1,490,0,0,0,811.40637 -6233,7698,14039,-9,14038,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,2,7.6474891,7.6061106,0,3,0,0,0,-9,0,-1005.0665,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,15,36,15,1,1,-9,1,16.140738,16.140738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.639999,49.98,-9,-9,1,1,1,0,1,8,3,1,779,-194279.48,0,0,832.2077 -6234,7699,14040,-9,14041,14044,5,1,1,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.03601,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,10,4,1,1293.1428,56470,0,0,3371.5803 -6234,7699,14041,14044,-9,-9,1,1,0,39,1,0,5,0,2,-9,2,1,0,0,2,5.4237852,5.6343932,0,2,0,-9,14,0,-6,53.945282,0,0,1,45,2,3,1,2,2,2019,1,2,20,8,26,0,15,1,1,1,0,1.0346395,1.0346395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.780001,38.529999,45.580002,47.970001,1,1,1,0,1,10,4,1,1293.1428,56470,0,0,3371.5803 -6234,7699,14042,-9,14041,14044,6,1,0,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.6756,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,4,1,1293.1428,56470,0,0,3371.5803 -6234,7699,14043,-9,14041,14044,3,1,0,10,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.851,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,5,0,0,10,4,1,1293.1428,56470,0,0,3371.5803 -6234,7699,14044,14041,-9,-9,2,1,1,45,1,0,5,0,2,-9,2,1,0,0,3,9.039423,8.8989239,0,2,0,-9,14,0,6,93.15258,0,0,0,39,2,2,1,2,1,2019,1,1,16,4,54,57,15,1,1,1,0,16.366821,16.366821,0,0,0,0,0,0,0,0,0,0,0,7.0789022,0,0,0,45.580002,47.970001,28.780001,38.529999,5,1,1,0,0,10,4,1,1293.1428,56470,0,0,3371.5803 -6234,7699,14045,-9,14041,14044,7,1,0,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.53992,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,4,1,1293.1428,56470,0,0,3371.5803 -6234,7699,14046,-9,14041,14044,4,1,1,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.6856,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,1293.1428,56470,0,0,3371.5803 -6235,7700,14047,14048,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-1,5.8875818,0,0,0,80,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,35.049999,48.779999,35.419998,6,1,1,0,0,13,2,1,1432.5,631431.75,0,0,1089.202 -6235,7700,14048,14047,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,6.5522847,6.7404771,1,0,-9,7,0,1,39.809311,0,0,0,79,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.90798,0,0,48.779999,35.419998,39.57,35.049999,2,1,1,0,0,13,2,1,1432.5,631431.75,0,0,1089.202 -6236,7701,14049,14050,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,7.8343396,7.5502777,1,0,-9,46,0,-2,55.431995,0,0,0,69,2,2,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6211576,7.8435569,0,0,38.02,53.93,54.91,30.440001,5,1,1,0,0,6,3,1,416.5,1007972.4,0,0,2988.6157 -6236,7701,14050,14049,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,2.8677101,2.2797999,1,0,-9,46,0,2,117.72526,0,0,0,67,3,3,3,-9,-9,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2867758,2.6589034,0,0,54.91,30.440001,38.02,53.93,6,1,1,0,0,6,3,1,416.5,1007972.4,0,0,2988.6157 -6237,7702,14051,14052,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,8.5846777,8.3721123,0,2,0,-9,8,0,-1,74.184494,0,0,0,47,2,3,1,2,1,2019,1,1,7,0,38,37,15,1,0,1,0,17.691158,17.691158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.119999,51.57,47.900002,40.009998,6,1,1,0,0,10,4,1,725,421414.5,0,0,3825.2419 -6237,7702,14052,14051,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.3873272,8.6139994,0,2,0,-9,8,0,1,-14.439565,0,0,0,46,2,4,1,3,3,2019,1,2,17,6,42,35,15,1,1,1,0,11.284862,11.284862,0,0,0,0,0,0,0,0,1,1,0,4.0292788,0,0,0,47.900002,40.009998,61.119999,51.57,5,1,1,0,0,10,4,1,725,421414.5,0,0,3825.2419 -6237,7702,14053,-9,14052,14051,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-971.06433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,4,1,725,421414.5,0,0,3825.2419 -6237,7703,14054,-9,14052,14051,4,1,1,27,2,0,1,0,2,-9,2,1,0,0,5,8.1616449,8.0158367,0,3,0,-9,0,-9,0,-1051.0571,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,38,0,15,1,0,-9,1,11.838245,11.838245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.959999,43.189999,-9,-9,6,1,1,0,0,10,4,1,357,-342969.22,0,0,1203.3057 -6238,7704,14055,14056,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,5.0632195,4.8913035,1,0,-9,10,0,-8,63.670143,0,0,0,80,3,3,3,3,3,2019,4,1,0,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8780656,4.8658724,0,0,55,52,65.529999,38.759998,2,1,1,0,0,2,2,1,309.5,239768.06,0,0,892.21667 -6238,7704,14056,14055,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,8,11.07626,0,0,0,72,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.529999,38.759998,55,52,5,1,1,0,0,2,2,1,309.5,239768.06,0,0,892.21667 -6239,7705,14057,14058,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,2,6.6120553,6.6287432,0,1,0,-9,7,0,-3,-58.984531,0,0,0,58,3,2,1,3,-9,2019,1,2,6,0,30,0,15,1,0,1,0,3.1087918,3.1087918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,33.799999,47.959999,36.599998,5,1,1,0,0,11,2,0,428,239733.16,0,0,918.92395 -6239,7705,14058,14057,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,0,2,6.3007045,6.2870536,0,1,0,-9,7,0,3,-61.913563,0,0,0,55,2,2,1,3,3,2019,1,1,12,0,11,11,15,1,0,1,0,6.4862704,6.4862704,0,0,0,0,0,0,0,27.5,1,1,0,0,0,37.131939,3,47.959999,36.599998,47.549999,33.799999,5,1,1,0,0,11,2,0,428,239733.16,0,0,918.92395 -6239,7706,14059,-9,14058,14057,3,1,1,39,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1017.7674,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.24,56.580002,-9,-9,5,1,1,0,0,11,1,0,183,46797.07,0,0,699.60974 -6240,7707,14060,-9,14061,14063,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-860.64172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,609.25,507132.56,0,0,4219.5811 -6240,7707,14061,14063,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,8.2877293,8.3974972,0,2,0,-9,13,0,4,-57.613571,0,0,1,38,2,3,1,2,2,2019,1,2,14,2,28,28,15,1,0,1,0,18.706913,18.706913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,54.57,34.200001,59.970001,5,1,1,0,0,7,5,1,609.25,507132.56,0,0,4219.5811 -6240,7707,14062,-9,14061,14063,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-998.70648,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,7,5,1,609.25,507132.56,0,0,4219.5811 -6240,7707,14063,14061,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,3,8.7536097,8.8841095,0,2,0,-9,13,0,-4,31.948042,0,0,0,42,2,4,1,2,2,2019,1,1,12,0,40,40,15,1,0,1,0,18.387432,18.387432,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.200001,59.970001,45.82,54.57,4,1,1,0,0,7,5,1,609.25,507132.56,0,0,4219.5811 -6241,7708,14064,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,7.3379459,7.5205526,0,3,0,0,0,-9,0,-1094.7496,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,35,39,15,1,1,-9,0,6.8723874,6.8723874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.880001,59.720001,-9,-9,3,1,1,0,0,10,3,1,366,117851.41,0,0,-12.733641 -6242,7709,14065,14066,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,6.4242654,6.5110703,1,0,-9,6,0,-1,19.676025,0,0,0,83,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0803714,0,0,64.550003,36.470001,55,45,7,1,1,0,0,4,3,1,582,441282.44,0,0,2182.874 -6242,7709,14066,14065,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,0,3,0,7.4567547,7.5948935,1,0,-9,6,0,1,19.548634,0,0,0,82,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8353562,7.4580355,0,0,55,45,64.550003,36.470001,6,4,1,0,0,4,3,1,582,441282.44,0,0,2182.874 -6243,7710,14067,14068,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-3,-130.79916,0,0,0,66,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5312076,0,0,0,59.02,30.85,51,48,6,1,1,0,0,13,2,1,684.5,165884.84,0,0,1714.8773 -6243,7710,14068,14067,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,6.6845102,7.4835782,1,0,-9,9,0,3,-22.610142,0,0,0,63,2,3,3,3,-9,2019,4,1,10,1,0,84,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4127207,7.3781724,0,0,51,48,59.02,30.85,5,1,1,0,0,13,2,1,684.5,165884.84,0,0,1714.8773 -6244,7711,14069,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,3,7.5696273,7.505764,0,3,0,0,0,-9,0,-1003.233,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,16,16,15,1,0,-9,0,12.135554,12.135554,0,0,0,0,0,0,0,0,1,1,0,8.2520876,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,7,3,1,1183,-11036.878,0,0,1727.9364 -6245,7712,14070,-9,-9,-9,1,1,1,50,2,0,1,0,2,-9,1,1,0,0,3,7.9954166,8.6454153,0,4,0,-9,0,0,0,-964.93079,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,30,0,15,1,0,-9,0,10.517451,10.517451,0,0,0,0,0,0,0,2,1,1,0,.74180335,0,2.7145872,3,41.470001,58.080002,-9,-9,6,1,1,0,0,5,3,1,68,-76337.25,0,0,1520.3622 -6245,7713,14071,-9,-9,14070,2,1,0,22,2,0,1,1,2,-9,7,2,0,0,4,6.9130468,6.8084946,0,3,0,0,0,-9,0,-955.73578,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,17,5,15,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7278688,0,0,0,32.259998,60.740002,-9,-9,4,1,1,0,0,5,2,1,184,67242.039,0,0,-788.97516 -6246,7714,14072,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,0,3,8.1285458,8.1887417,0,3,0,0,0,-9,0,-965.92334,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,42,50,15,1,0,-9,0,8.7383099,8.7383099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.360001,54.040001,-9,-9,5,1,1,0,0,8,4,0,546,3635.4397,0,0,1145.8671 -6247,7715,14073,-9,14074,14075,3,1,0,5,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.7572,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,637.79999,146111.27,0,0,2931.7893 -6247,7715,14074,14075,-9,-9,2,1,0,28,1,2,3,0,2,-9,2,1,0,0,3,7.5816264,7.3119555,0,2,0,-9,7,0,-5,-97.593575,0,1,1,33,2,3,1,2,-9,2019,1,1,10,0,17,21,15,1,0,1,0,10.978503,10.978503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,51.790001,58.470001,50.220001,6,1,1,0,0,6,3,0,637.79999,146111.27,0,0,2931.7893 -6247,7715,14075,14074,-9,-9,1,1,1,33,1,2,3,0,2,-9,1,1,0,0,3,7.8444972,8.0403719,0,2,0,-9,7,0,5,39.521458,0,0,0,28,2,3,1,2,2,2019,1,2,9,0,65,60,15,1,0,1,0,4.2947679,4.2947679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,50.220001,45.810001,51.790001,6,1,1,0,0,6,3,0,637.79999,146111.27,0,0,2931.7893 -6247,7715,14076,-9,14074,14075,5,1,1,1,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1189.9767,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,3,0,637.79999,146111.27,0,0,2931.7893 -6247,7715,14077,-9,14074,14075,4,1,1,1,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.03101,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,3,0,637.79999,146111.27,0,0,2931.7893 -6248,7716,14078,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,0,4,8.5354633,8.497921,5.1945839,3,0,0,0,-9,0,-905.75201,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,1,37,38,15,1,0,-9,0,19.250774,19.250774,0,0,0,0,0,0,0,0,0,0,0,5.8249407,0,0,0,38.669998,53.740002,-9,-9,5,1,1,0,0,1,5,1,543,121701.31,0,0,2876.8162 -6248,7717,14079,-9,-9,-9,2,1,1,38,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1028.6165,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.119999,58.549999,-9,-9,3,1,1,1,0,1,1,1,170,167618.55,0,0,0 -6249,7718,14080,14081,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.7270517,8.7504349,0,1,0,-9,6,0,0,45.508423,0,0,0,56,2,4,1,2,2,2019,1,2,6,0,47,47,15,1,0,1,0,18.722015,18.722015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,12,5,1,1257.5,1508703.8,0,0,3275.3291 -6249,7718,14081,14080,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.0359745,8.2749386,0,1,0,-9,6,0,0,-26.86042,0,0,0,56,2,4,1,3,3,2019,1,1,6,0,48,53,15,1,0,1,0,9.5209465,9.5209465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,12,5,1,1257.5,1508703.8,0,0,3275.3291 -6250,7719,14082,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,4,0,7.2247653,7.1794991,3,0,0,0,-9,0,-1053.4075,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5131421,7.1225057,0,0,55.759998,52.639999,-9,-9,6,1,1,0,0,9,2,1,1050,534369.94,0,0,1748.3539 -6251,7720,14083,14084,-9,-9,1,1,0,32,1,1,2,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,8,0,-3,46.182308,0,0,1,35,1,5,1,3,2,2019,1,2,13,1,0,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,57.060001,57.759998,5,1,1,0,0,4,4,1,1365.5,449420.63,0,0,3660.7324 -6251,7720,14084,14083,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,0,5,9.0733232,9.1928568,0,2,0,-9,8,0,3,128.62639,0,0,0,32,1,4,1,-9,-9,2019,1,1,7,0,38,43,15,1,0,1,0,24.513248,24.513248,0,0,0,0,0,0,0,0,1,1,0,3.3664222,0,0,0,57.060001,57.759998,45.91,59.889999,7,1,1,0,0,4,4,1,1365.5,449420.63,0,0,3660.7324 -6251,7720,14085,-9,14083,14084,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1019.3113,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,1365.5,449420.63,0,0,3660.7324 -6251,7720,14086,-9,14083,14084,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.9458,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,1,1365.5,449420.63,0,0,3660.7324 -6252,7721,14087,-9,14089,14088,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1146.6428,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,4,1,1610.75,769888.5,0,0,3319.249 -6252,7721,14088,14089,-9,-9,2,1,1,41,1,1,2,0,2,-9,2,1,0,0,2,8.4626141,8.6906652,7.674087,2,0,-9,6,0,11,130.29402,0,0,0,30,2,3,1,-9,-9,2019,1,1,12,1,55,80,15,1,0,1,0,8.8498611,8.8498611,0,0,0,0,0,0,0,0,1,1,0,7.4908185,0,0,0,31.99,53.220001,51.41,56.150002,5,1,1,0,0,5,4,1,1610.75,769888.5,0,0,3319.249 -6252,7721,14089,14088,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,0,3,7.1202369,7.2339525,0,2,0,-9,6,0,-11,14.77905,0,0,1,41,2,2,1,-9,-9,2019,1,2,12,1,17,15,15,1,0,1,0,9.8375645,9.8375645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,31.99,53.220001,5,1,1,0,0,5,4,1,1610.75,769888.5,0,0,3319.249 -6252,7721,14090,-9,14089,14088,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1123.9766,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,1610.75,769888.5,0,0,3319.249 -6253,7722,14091,14092,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.4906263,8.3241472,0,1,0,-9,10,0,-4,103.84191,0,0,0,60,3,5,1,2,3,2019,1,1,12,3,7,7,15,1,0,1,0,54.819004,54.819004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.650002,40.400002,56,56,3,1,1,0,0,5,4,1,407.5,1458432.5,0,0,2433.8376 -6253,7722,14092,14091,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,5,7.6323009,7.919064,6.0712743,1,0,-9,10,0,4,-44.256023,0,0,0,56,2,3,1,2,2,2019,1,2,4,0,38,9,15,1,0,1,0,7.7597394,7.7597394,0,0,0,0,0,0,0,0,0,0,0,0,6.3864799,0,0,56,56,64.650002,40.400002,6,1,1,0,0,5,4,1,407.5,1458432.5,0,0,2433.8376 -6253,7723,14093,-9,14091,14092,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,7.3133049,7.4722257,4.4236784,3,0,0,0,-9,0,-884.14392,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,23,8,15,1,0,-9,1,9.8842936,9.8842936,0,0,0,0,0,0,0,0,0,0,0,3.4871166,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,5,3,1,740,-153398.36,0,0,838.18945 -6254,7724,14094,14096,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,4,8.3884583,8.2844172,0,2,0,-9,28,0,2,87.824768,0,0,0,47,2,3,1,3,2,2019,1,2,6,1,25,25,15,1,0,1,0,17.38759,17.38759,0,0,0,0,0,0,0,0,1,1,0,2.0436895,0,0,0,51.77,58.57,44.189999,58.009998,6,1,1,0,0,7,5,1,519.33331,147608,0,0,5788.6567 -6254,7724,14095,-9,14094,14096,5,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1052.106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,7,5,1,519.33331,147608,0,0,5788.6567 -6254,7724,14096,14094,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,9.5460987,9.1256905,0,2,0,-9,8,0,-2,77.662292,0,0,0,49,2,4,1,-9,-9,2019,1,1,11,0,65,55,15,1,0,1,0,20.541664,20.541664,0,0,0,0,0,0,0,0,1,1,0,8.2922821,0,0,0,44.189999,58.009998,51.77,58.57,5,1,1,0,0,7,5,1,519.33331,147608,0,0,5788.6567 -6254,7725,14097,-9,14094,14096,3,1,0,20,2,0,2,0,2,1,2,1,0,0,4,7.9055295,7.7764649,0,3,0,0,0,-9,0,-879.96765,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,39,0,15,1,0,-9,1,7.0105577,7.0105577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,-9,-9,4,1,1,0,0,7,3,1,1711,-44426.059,0,0,-171.13934 -6254,7726,14098,-9,14094,14096,4,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1033.1294,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,5,1,604,0,0,0,652.08289 -6255,7727,14099,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1112.3704,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.259998,29.17,-9,-9,7,3,4,0,0,2,1,0,280,0,0,0,326.40445 -6256,7728,14100,14101,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,9.0461769,9.1674433,0,1,0,-9,7,0,1,-77.636658,0,0,0,48,2,4,1,2,2,2019,1,2,11,0,40,41,15,1,0,1,0,25.793335,25.793335,0,0,0,0,0,0,0,0,0,0,0,3.0472414,0,0,0,47.07,53.970001,58.150002,52.91,6,1,1,0,0,12,5,1,748,271906.25,0,0,5042.1182 -6256,7728,14101,14100,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.3607006,8.4960728,0,1,0,-9,7,0,-1,-.37724236,0,0,0,49,2,3,1,-9,-9,2019,1,1,12,0,38,37,15,1,0,1,0,16.286427,16.286427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,47.07,53.970001,7,1,1,0,0,12,5,1,748,271906.25,0,0,5042.1182 -6257,7729,14102,-9,-9,-9,1,1,0,43,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-994.27966,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.91,33.560001,-9,-9,1,1,1,1,0,1,1,0,115,0,0,0,838.25177 -6258,7730,14103,14104,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,2,7.3776312,7.2463799,0,1,0,-9,2,0,-12,17.014297,0,0,0,75,2,3,3,2,1,2019,2,1,8,0,20,20,15,1,0,4,0,7.6138029,7.6138029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.709999,37.869999,57.93,46.290001,6,1,1,0,0,4,2,1,318,452663.63,0,0,1311.7368 -6258,7730,14104,14103,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,4.6922922,4.6589394,1,0,-9,2,0,12,99.975586,0,0,0,63,2,2,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7973089,0,0,57.93,46.290001,53.709999,37.869999,6,1,1,0,0,4,2,1,318,452663.63,0,0,1311.7368 -6259,7731,14105,14106,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,0,3,0,5.2245121,5.6279039,1,0,-9,8,0,-1,-53.890858,0,0,0,74,1,3,3,3,3,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3503966,5.1858387,0,0,52.939999,46.110001,48.439999,42.360001,5,1,1,0,0,11,3,1,1200,540476.63,0,0,2512.9922 -6259,7731,14106,14105,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,3,0,7.7607207,7.8544564,1,0,-9,8,0,1,-79.338837,0,0,0,73,1,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3122735,7.5533171,0,0,48.439999,42.360001,52.939999,46.110001,6,1,1,0,0,11,3,1,1200,540476.63,0,0,2512.9922 -6260,7732,14107,14108,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,9.2406368,9.290555,0,1,0,1,1,-9,-7,12.838381,0,0,0,61,3,4,1,-9,-9,2019,1,2,17,6,44,37,15,1,1,1,0,22.447245,22.447245,0,0,0,0,0,0,0,0,0,0,0,6.8327427,0,0,0,46.389999,60.990002,59.139999,52.5,2,1,1,0,0,9,5,1,350,4797773.5,0,0,4530.7344 -6260,7732,14108,14107,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,8.587575,9.0057116,0,1,0,-9,1,-9,7,71.368904,-9,0,0,54,2,4,1,-9,-9,2019,1,1,6,0,55,0,15,1,0,1,0,8.3584251,8.3584251,0,0,0,0,0,0,0,0,0,0,0,5.386116,0,0,0,59.139999,52.5,46.389999,60.990002,6,1,1,0,0,9,5,1,350,4797773.5,0,0,4530.7344 -6261,7733,14109,14110,-9,-9,1,1,0,55,1,0,1,0,2,-9,2,1,0,0,2,8.8119974,8.990221,0,2,0,-9,18,0,-10,51.768185,0,0,0,65,2,4,3,2,2,2019,2,2,9,1,41,43,15,1,0,4,0,21.835516,21.835516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.330002,14.89,54.77,55.869999,6,1,1,0,0,7,4,1,1082.5,647603.19,0,0,3622.2524 -6261,7733,14110,14109,-9,-9,2,1,1,65,1,0,1,0,2,-9,4,3,0,0,4,0,6.2623968,6.722116,2,0,-9,18,0,10,20.180098,0,0,0,55,2,2,1,2,3,2019,3,1,7,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7681761,6.3419914,0,0,54.77,55.869999,51.330002,14.89,6,1,1,0,0,7,4,1,1082.5,647603.19,0,0,3622.2524 -6262,7734,14111,-9,-9,-9,1,1,0,93,3,0,0,0,2,-9,4,3,0,0,4,0,5.9663453,6.0704489,3,0,0,0,-9,0,-997.7666,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6466885,5.9162569,0,0,46.75,56.990002,-9,-9,6,1,1,0,0,10,2,1,501,-72237.711,0,0,1617.4327 -6263,7735,14112,-9,-9,-9,1,1,1,32,3,0,0,0,2,-9,2,1,0,0,4,8.7126436,8.5592775,0,3,0,-9,0,1,0,-919.88397,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,45,0,15,1,0,-9,0,12.640247,12.640247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,5,1,1,0,0,4,5,0,690,393670.28,0,0,2677.0615 -6264,7736,14113,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,4,0,8.0165157,8.0409698,3,0,0,0,-9,0,-981.3045,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4952236,7.8234096,4.9842396,3,51.77,58.57,-9,-9,7,1,1,0,0,13,4,1,100,765224.69,0,0,2599.7498 -6265,7737,14114,14115,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,7.229331,7.465981,0,1,0,-9,34,0,-4,44.631084,0,0,0,60,2,2,1,-9,-9,2019,1,1,12,0,24,24,15,1,0,1,0,6.6740012,6.6740012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,56.439999,39.889999,46.889999,4,2,3,0,0,8,5,1,1256,2598923.3,0,0,3649.4683 -6265,7737,14115,14114,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,9.0236979,9.0941257,6.8784261,1,0,-9,34,0,4,93.053329,0,0,0,56,3,4,1,2,2,2019,1,2,19,7,40,40,15,1,1,1,0,21.441608,21.441608,0,0,0,0,0,0,0,0,0,0,0,0,7.6122904,0,0,39.889999,46.889999,41.82,56.439999,5,2,3,0,0,8,5,1,1256,2598923.3,0,0,3649.4683 -6266,7738,14116,14117,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,8.1292276,8.5915174,1,0,-9,56,0,2,67.888855,0,0,0,74,3,3,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9737163,8.5092411,2.5052564,3,54.200001,57.490002,48.799999,47.639999,6,1,1,0,0,6,4,1,373.5,593379.81,0,0,3422.4741 -6266,7738,14117,14116,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-2,117.29548,0,0,0,76,2,4,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1962357,0,0,0,48.799999,47.639999,54.200001,57.490002,5,1,1,0,0,6,4,1,373.5,593379.81,0,0,3422.4741 -6267,7739,14118,14119,-9,-9,1,1,1,60,1,0,0,0,3,-9,1,1,0,0,3,8.0931787,8.2531109,0,1,0,-9,35,0,0,48.617252,0,0,0,69,2,4,1,2,3,2019,1,2,23,11,50,60,15,1,1,1,0,9.5735388,9.5735388,0,0,0,0,0,0,0,0,1,1,0,6.0416641,0,0,0,46.32,40.799999,44.419998,51.060001,5,1,1,0,0,10,4,1,775,89153.031,0,0,3560.436 -6267,7739,14119,14118,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,0,4,7.4100161,7.125937,0,1,0,-9,35,0,9,-26.310627,0,0,0,60,3,3,1,3,2,2019,1,1,13,1,28,21,15,1,0,1,0,6.640873,6.640873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.419998,51.060001,46.32,40.799999,5,1,1,0,0,10,4,1,775,89153.031,0,0,3560.436 -6268,7740,14120,14122,-9,-9,2,1,1,48,1,0,3,0,2,-9,3,3,0,0,5,8.1406164,8.3128462,7.398109,2,0,-9,6,0,3,-100.45993,0,0,0,45,2,4,1,2,3,2019,3,1,15,4,40,39,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0628147,0,0,0,42.849998,62.849998,40.709999,62.41,3,1,1,1,0,11,3,1,388.66666,688177.75,0,0,2585.0488 -6268,7740,14121,-9,14122,14120,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.562,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,1,388.66666,688177.75,0,0,2585.0488 -6268,7740,14122,14120,-9,-9,1,1,0,45,1,0,3,0,2,-9,2,1,0,0,4,7.4721141,7.6644645,0,2,0,-9,6,0,-3,78.851959,0,0,0,48,2,5,3,3,2,2019,2,2,11,0,44,25,15,1,0,3,0,4.3848257,4.3848257,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,40.709999,62.41,42.849998,62.849998,5,1,1,0,0,11,3,1,388.66666,688177.75,0,0,2585.0488 -6268,7741,14123,-9,14122,14120,3,1,1,18,2,0,3,0,2,-9,7,2,0,0,5,6.7963295,6.5379934,0,3,0,0,0,-9,0,-960.20703,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.6813526,3,54.099998,59.110001,-9,-9,5,1,1,0,0,11,3,1,281,10647.419,0,0,-23.486389 -6269,7742,14124,14127,-9,-9,2,1,0,36,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-5,-31.835646,0,0,1,41,1,5,1,2,2,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.524372,3,45.98,56.299999,57.060001,57.759998,5,1,1,0,0,2,3,1,563,33952.773,0,0,2381.7539 -6269,7742,14125,-9,14124,14127,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.00208,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,3,1,563,33952.773,0,0,2381.7539 -6269,7742,14126,-9,14124,14127,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.7468,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,563,33952.773,0,0,2381.7539 -6269,7742,14127,14124,-9,-9,1,1,1,41,1,1,2,0,1,-9,1,1,0,0,5,8.5427074,8.2741919,0,2,0,-9,6,0,5,25.231308,0,0,0,36,2,3,3,2,3,2019,2,2,7,0,45,50,15,1,0,3,0,13.467554,13.467554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,45.98,56.299999,6,1,1,0,0,2,3,1,563,33952.773,0,0,2381.7539 -6270,7743,14128,14129,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.8854671,6.2672415,1,0,-9,10,0,-4,-127.38864,0,0,0,77,3,3,3,2,2,2019,4,1,19,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6726489,0,0,50.419998,41.419998,57.990002,43.470001,3,1,1,0,0,8,2,1,583,702894.31,0,0,1121.3345 -6270,7743,14129,14128,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,5.3732214,5.5607381,1,0,-9,10,0,4,-77.342232,0,0,0,73,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0912476,5.3374829,0,0,57.990002,43.470001,50.419998,41.419998,6,1,1,0,0,8,2,1,583,702894.31,0,0,1121.3345 -6271,7744,14130,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,0,3,9.1009378,9.0639076,6.6287999,4,0,0,0,-9,0,-960.24689,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,29,12,49,59,15,1,1,-9,0,13.492648,13.492648,0,0,0,0,0,0,0,0,0,0,0,7.0741358,0,0,0,19.49,61.560001,-9,-9,2,1,1,0,0,8,5,1,666,407940.31,0,0,3638.8992 -6271,7745,14131,-9,14130,-9,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,8.1814651,7.9258366,0,3,0,0,0,-9,0,-971.23315,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,36,30,15,1,0,-9,1,7.9139981,7.9139981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,0,8,4,1,1714,100851.19,0,0,1420.3156 -6271,7746,14132,-9,14130,-9,4,1,1,18,2,0,1,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1004.8779,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,8,5,1,1077,0,0,0,0 -6272,7747,14133,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,7.5325122,7.1316152,0,3,0,0,0,-9,0,-929.60333,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,18,0,15,1,0,-9,0,11.51615,11.51615,0,0,0,0,0,0,0,0,0,0,0,.13997324,0,0,0,53.330002,53.709999,-9,-9,6,2,3,0,0,10,3,0,1518,49662.297,0,0,1461.4885 -6273,7748,14134,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1002.8813,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,.60376537,0,0,1,1,0,0,0,0,0,48.130001,26.209999,-9,-9,4,1,1,0,0,2,1,0,897,-15079.66,0,0,1526.6401 -6274,7749,14135,14136,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,7.1297584,7.4818697,0,1,0,-9,3,0,0,-131.49562,0,0,0,45,1,4,1,-9,-9,2019,1,1,11,0,19,20,15,1,0,1,0,7.577208,7.577208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.900002,48.23,57.16,56.150002,4,1,1,0,0,2,4,1,818,305961.25,0,0,2435.9497 -6274,7749,14136,14135,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,8.7290497,8.6034279,0,1,0,-9,3,0,0,86.183937,0,0,0,45,2,3,1,1,3,2019,1,2,6,0,38,38,15,1,0,1,0,17.007816,17.007816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,38.900002,48.23,6,1,1,0,0,2,4,1,818,305961.25,0,0,2435.9497 -6275,7750,14137,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-889.51776,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.02,31.82,-9,-9,1,1,1,0,1,9,1,0,221,-177298.5,0,0,-18.596588 -6275,7751,14138,-9,14137,-9,2,1,1,33,2,0,0,0,2,-9,2,1,0,0,3,8.2688894,8.060627,0,3,0,0,0,-9,0,-964.67505,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,66,40,15,1,1,-9,1,7.6284628,7.6284628,0,0,0,0,0,0,0,7,1,1,0,0,0,11.506858,3,29.459999,59.389999,-9,-9,3,1,1,0,0,9,4,0,1194,87548.242,0,0,684.34534 -6276,7752,14139,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,5,0,7.2643518,6.8673682,3,0,0,0,-9,0,-970.23981,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7785115,7.5587173,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,6,2,1,366,359111.25,0,0,126.50574 -6277,7753,14140,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,4,8.9731951,8.7400513,3.4930005,3,0,0,0,-9,0,-1105.6393,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,57,37,15,1,0,-9,0,15.494726,15.494726,0,0,0,0,0,0,0,0,0,0,0,3.5078244,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,11,5,1,296,282963.28,0,0,2178.7322 -6277,7754,14141,-9,14140,-9,2,1,1,31,2,0,0,0,1,-9,2,1,0,0,3,7.9389505,8.178524,0,3,0,0,0,-9,0,-1009.447,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,44,15,1,0,-9,1,8.7988377,8.7988377,0,0,0,0,0,0,0,0,0,0,0,3.2342227,0,0,0,49.240002,42.060001,-9,-9,6,1,1,0,0,11,4,1,522,23491.002,0,0,922.15295 -6277,7755,14142,-9,14140,-9,3,1,1,33,2,0,0,0,1,-9,2,1,0,0,5,8.2609587,8.2463522,0,3,0,0,0,-9,0,-932.49438,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,38,15,1,0,-9,1,11.695024,11.695024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.5,63.220001,-9,-9,3,1,1,0,0,11,4,1,611,40300.695,0,0,659.72083 -6278,7756,14143,-9,14145,14144,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1140.7051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,1,533,404631.47,0,0,3248.9299 -6278,7756,14144,14145,-9,-9,2,1,1,50,1,0,2,0,2,-9,1,1,0,0,1,7.2713308,7.2572012,0,2,0,-9,22,0,7,-46.403458,0,0,0,43,2,3,1,-9,2,2019,1,1,28,12,65,60,15,1,1,1,0,2.4783247,2.4783247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.59,28.99,47.57,51.43,1,1,1,0,1,7,3,1,533,404631.47,0,0,3248.9299 -6278,7756,14145,14144,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,3,8.0429583,8.0219183,0,2,0,-9,22,0,-7,-21.75918,0,0,1,50,2,1,1,-9,1,2019,1,2,6,0,40,35,15,1,0,1,0,6.2687774,6.2687774,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.57,51.43,31.59,28.99,7,1,1,0,1,7,3,1,533,404631.47,0,0,3248.9299 -6278,7756,14146,-9,14145,14144,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-912.27289,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,7,3,1,533,404631.47,0,0,3248.9299 -6279,7757,14147,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,2,0,5.3508272,4.9862671,3,0,0,0,-9,0,-900.53839,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8503466,0,0,53.799999,35.16,-9,-9,3,1,1,0,0,2,2,0,201,-112817.61,0,0,2000.9707 -6280,7758,14148,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,2,1,0,0,5,8.8614349,8.9592314,0,3,0,0,0,-9,0,-1097.9401,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,26,27,15,1,0,-9,0,50.44558,50.44558,0,0,0,0,0,0,0,0,0,0,0,4.4125533,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,5,1,1944,855778.69,0,0,2250.6047 -6281,7759,14149,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,2,0,6.3831077,6.5257239,3,0,0,0,-9,0,-1036.7426,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4943876,6.8059487,0,0,50.450001,33.82,-9,-9,6,1,1,0,0,13,2,1,1562,119474.2,0,0,1285.4299 -6282,7760,14150,14151,-9,-9,2,1,0,57,1,0,0,0,3,-9,3,3,0,0,4,0,4.7775545,4.4474397,1,0,-9,6,0,-4,63.79628,0,0,0,61,3,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,4.36834,23.793446,3,54.200001,57.490002,43.939999,58,2,1,1,1,0,6,3,1,786,519064.06,0,0,1784.5168 -6282,7760,14151,14150,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,8.4000082,7.9153543,0,1,0,-9,6,0,4,63.19323,0,0,0,57,3,4,3,-9,-9,2019,2,2,14,2,49,0,15,1,0,3,0,7.650332,7.650332,0,0,0,0,0,0,0,27.5,0,0,0,5.3867602,0,35.297577,3,43.939999,58,54.200001,57.490002,5,1,1,0,0,6,3,1,786,519064.06,0,0,1784.5168 -6283,7761,14152,14153,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.3097329,6.9000988,1,0,-9,9,0,4,124.92464,0,0,0,73,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9275222,7.1849523,0,0,60.689999,53.18,50,46,6,1,1,0,0,13,4,1,481,1584277.9,0,0,3625.1489 -6283,7761,14153,14152,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.8656936,8.631505,1,0,-9,9,0,-4,-63.957947,0,0,0,77,2,4,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.278266,0,0,50,46,60.689999,53.18,5,1,1,0,0,13,4,1,481,1584277.9,0,0,3625.1489 -6284,7762,14154,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-909.71747,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,6.3439827,0,3.0409517,0,0,95.950943,0,1,1,0,0,0,0,0,57.98,32.939999,-9,-9,6,1,1,0,0,13,1,1,132,-45507.941,0,0,1176.5417 -6285,7763,14155,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,1,1,0,0,3,6.7610455,6.6574984,0,3,0,0,0,-9,0,-1105.9855,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,10,40,15,1,0,-9,0,8.7328281,8.7328281,0,0,0,0,0,0,0,0,0,0,0,2.3256614,0,0,0,44.959999,47.119999,-9,-9,3,1,1,0,0,5,2,1,349,87623.172,0,0,1227.9091 -6286,7764,14156,14157,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,3,8.3839855,8.4471235,0,1,0,-9,4,0,4,47.21104,0,0,0,30,2,4,1,-9,-9,2019,1,1,20,8,43,42,15,1,1,1,0,15.197433,15.197433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.75,60.389999,45.91,59.889999,4,1,1,0,0,12,5,1,1900,56007.75,0,0,3754.0913 -6286,7764,14157,14156,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,8.1278667,7.690136,0,1,0,-9,4,0,-4,-5.2162142,0,0,1,34,1,3,1,2,2,2019,1,2,10,0,48,46,15,1,0,1,0,7.7787943,7.7787943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,29.75,60.389999,5,1,1,0,0,12,5,1,1900,56007.75,0,0,3754.0913 -6287,7765,14158,-9,14159,14161,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1130.9563,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,4,1,941.25,562402.56,0,0,3312.5532 -6287,7765,14159,14161,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,5,7.6267719,7.3632517,0,2,0,-9,23,0,-1,161.88211,0,0,1,42,1,5,1,2,2,2019,1,2,10,0,36,37,15,1,0,1,0,5.7836509,5.7836509,0,0,0,0,0,0,0,0,1,1,0,3.054498,0,0,0,57.060001,57.759998,38.98,61.759998,6,1,1,0,0,4,4,1,941.25,562402.56,0,0,3312.5532 -6287,7765,14160,-9,14159,14161,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.1138,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,941.25,562402.56,0,0,3312.5532 -6287,7765,14161,14159,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,5,8.5322104,8.8568335,0,2,0,-9,22,0,1,-105.14893,0,0,0,41,1,5,1,-9,-9,2019,1,1,22,10,39,38,15,1,1,1,0,18.42312,18.42312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,61.759998,57.060001,57.759998,5,1,1,0,0,4,4,1,941.25,562402.56,0,0,3312.5532 -6288,7766,14162,-9,-9,-9,1,1,0,54,3,0,1,0,2,-9,2,1,0,0,4,8.920929,8.7764254,0,4,0,0,0,-9,0,-905.73651,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,35,35,15,1,0,-9,0,25.940334,25.940334,0,0,0,0,0,0,0,0,1,1,0,4.2592344,0,0,0,57.16,56.150002,-9,-9,5,4,2,0,0,8,5,1,346.5,352043.25,0,0,2695.7002 -6288,7766,14163,-9,14162,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-914.61218,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.889999,51.279999,-9,-9,2,3,4,0,0,8,5,1,346.5,352043.25,0,0,2695.7002 -6288,7767,14164,-9,14162,-9,4,1,1,26,2,0,1,0,2,-9,2,1,0,0,4,7.8424301,7.9782276,0,3,0,-9,0,-9,0,-1098.9476,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,35,0,15,1,0,-9,1,11.793296,11.793296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,8,4,1,578,98775.188,0,0,332.00201 -6288,7768,14165,-9,14162,-9,3,1,0,22,2,0,1,0,2,-9,2,1,0,0,4,7.8564692,7.9178667,0,3,0,-9,0,-9,0,-1042.8634,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,38,0,15,1,0,-9,1,9.354393,9.354393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,5,3,4,0,0,8,3,1,239,111622.55,0,0,-453.04648 -6289,7769,14166,14167,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,2,8.3412085,8.4291449,0,1,0,-9,9,0,1,13.994688,0,0,0,52,2,4,1,3,2,2019,1,1,27,12,38,42,15,1,1,1,0,11.760676,11.760676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.240002,53.119999,60.119999,54.799999,3,1,1,0,0,8,5,1,409,316773.06,0,0,3757.71 -6289,7769,14167,14166,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.5308914,8.6567793,0,1,0,-9,31,0,-1,-61.500828,0,0,0,53,2,2,1,3,3,2019,1,2,6,0,36,40,15,1,0,1,0,23.864553,23.864553,0,0,0,0,0,0,0,2,0,0,0,5.9373212,0,2.3804564,3,60.119999,54.799999,33.240002,53.119999,6,1,1,0,1,8,5,1,409,316773.06,0,0,3757.71 -6290,7770,14168,14169,-9,-9,2,1,0,51,1,0,0,0,1,-9,1,1,0,0,2,9.0383205,9.0168829,0,1,0,-9,28,0,1,0,0,0,0,50,1,4,1,3,3,2019,1,1,16,3,5,10,15,1,0,1,0,238.77315,238.77315,0,0,0,0,0,0,0,0,0,0,0,8.417285,0,0,0,37.380001,37.110001,58.470001,47.360001,6,2,3,0,0,5,5,1,737.5,1458791.1,0,0,11654.162 -6290,7770,14169,14168,-9,-9,1,1,1,50,1,0,0,0,1,-9,1,1,0,0,4,8.8891449,8.8300724,0,1,0,-9,28,0,-1,0,0,0,0,51,1,2,1,3,3,2019,1,2,6,0,50,70,15,1,0,1,0,20.755484,20.755484,0,0,0,0,0,0,0,0,0,0,0,8.6039295,0,0,0,58.470001,47.360001,37.380001,37.110001,2,1,1,0,0,5,5,1,737.5,1458791.1,0,0,11654.162 -6291,7771,14170,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,2,1,0,0,4,6.6096754,6.6321769,0,3,0,0,0,-9,0,-984.21027,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,26,26,15,1,0,-9,0,3.4815929,3.4815929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.130001,54.700001,-9,-9,6,1,1,0,0,2,2,1,443,12676.305,0,0,1028.3951 -6292,7772,14171,-9,14172,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-861.22186,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,6,3,1,1605,-114356.78,0,0,1934.4058 -6292,7772,14172,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,1,1,0,0,4,7.764677,8.7021074,7.3047543,4,0,0,0,-9,0,-1005.9883,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,7.4694781,7.4694781,0,0,0,0,0,0,0,0,1,1,0,8.4104242,0,0,0,54.200001,57.490002,-9,-9,4,1,1,0,0,6,3,1,1605,-114356.78,0,0,1934.4058 -6292,7772,14173,-9,14172,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1023.5118,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,1,1605,-114356.78,0,0,1934.4058 -6293,7773,14174,-9,14179,14176,4,1,1,4,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.15515,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,5,1,0,1250.5,2738.3928,0,0,2631.7537 -6293,7773,14175,-9,14179,14176,5,1,0,2,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.14777,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,5,1,0,1250.5,2738.3928,0,0,2631.7537 -6293,7773,14176,14179,-9,-9,6,1,1,34,1,2,5,0,2,-9,97,3,0,1,4,0,0,0,2,0,-9,3,0,5,0,0,0,0,29,2,5,3,-9,-9,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,43.57,62.68,5,4,2,0,0,5,1,0,1250.5,2738.3928,0,0,2631.7537 -6293,7773,14177,-9,14179,14176,3,1,0,8,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,5,1,0,1250.5,2738.3928,0,0,2631.7537 -6293,7773,14178,-9,14179,14176,7,1,0,0,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-993.88123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,5,1,0,1250.5,2738.3928,0,0,2631.7537 -6293,7773,14179,14176,-9,-9,1,1,0,29,1,2,5,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,3,0,-5,0,0,1,1,34,2,4,3,2,-9,2019,4,6,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,62.68,51,56,6,4,2,0,0,5,1,0,1250.5,2738.3928,0,0,2631.7537 -6294,7774,14180,14181,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,2,7.7395601,7.5719767,4.2083101,1,0,-9,45,0,0,-79.151947,0,0,0,61,3,3,1,3,3,2019,1,1,10,0,25,25,15,1,0,1,0,12.615951,12.615951,0,0,0,0,0,0,0,0,0,0,0,0,4.1848946,0,0,61.25,41.200001,55.709999,40.470001,6,1,1,0,0,10,4,1,1449.5,-73147.336,0,0,3086.9414 -6294,7774,14181,14180,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,8.3496599,8.3010397,6.3481579,1,0,-9,45,0,0,51.551727,0,0,0,61,3,2,1,-9,-9,2019,1,2,7,0,45,47,15,1,0,1,0,8.210886,8.210886,0,0,0,0,0,0,0,7,0,0,0,2.850826,6.9927549,17.62759,3,55.709999,40.470001,61.25,41.200001,6,1,1,0,0,10,4,1,1449.5,-73147.336,0,0,3086.9414 -6295,7775,14182,14183,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,5,8.2036057,8.7523041,0,1,0,-9,5,0,-2,23.094128,0,0,0,50,2,3,1,3,3,2019,1,2,7,0,37,0,15,1,0,1,0,19.57428,19.57428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.84,59.619999,59.310001,49.810001,6,1,1,0,0,7,5,1,537,1355719.3,0,0,4664.6826 -6295,7775,14183,14182,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.5795612,8.6470623,0,1,0,-9,5,0,2,-96.68589,0,0,0,48,2,5,1,2,-9,2019,1,1,10,0,47,0,15,1,0,1,0,16.446404,16.446404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.310001,49.810001,49.84,59.619999,4,1,1,0,0,7,5,1,537,1355719.3,0,0,4664.6826 -6295,7776,14184,-9,14182,14183,3,1,0,19,2,0,0,0,3,-9,2,1,0,0,4,7.5358763,7.313766,0,3,0,0,0,-9,0,-913.51398,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,8,15,1,0,-9,1,4.0379372,4.0379372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,3,1,43,-104564.7,0,0,892.77618 -6296,7777,14185,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,0,3,8.5916882,8.8904982,0,3,0,0,0,-9,0,-1036.7271,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,16.878735,16.878735,0,0,0,0,0,0,0,0,0,0,0,2.5844588,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,13,5,1,1409,767342.31,0,0,1622.0356 -6297,7778,14186,14187,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,0,3,8.2304735,8.1314363,0,1,0,-9,6,0,-1,-5.2431064,0,0,0,32,2,2,1,-9,-9,2019,1,2,11,0,40,39,15,1,0,1,0,10.488109,10.488109,0,0,0,0,0,0,0,0,0,0,0,.20075077,0,0,0,47.32,52.700001,25.85,58.939999,5,1,1,0,0,6,5,1,904.5,344293.47,0,0,4266.0493 -6297,7778,14187,14186,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,2,8.6359348,8.755908,0,1,0,-9,6,0,1,14.591154,0,0,1,31,2,3,1,-9,-9,2019,1,1,14,4,38,37,15,1,1,1,0,15.267485,15.267485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.85,58.939999,47.32,52.700001,5,1,1,0,0,6,5,1,904.5,344293.47,0,0,4266.0493 -6298,7779,14188,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,8.038578,7.8516054,0,3,0,0,0,-9,0,-992.01544,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,36,35,15,1,0,-9,0,6.0642548,6.0642548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,53.02,-9,-9,5,1,1,0,0,11,3,0,2771,-123193.74,0,0,643.46875 -6299,7780,14189,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1078.3737,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.630001,27.969999,-9,-9,4,2,3,0,0,6,1,0,468,-10464.738,0,0,1923.2518 -6300,7781,14190,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,3,0,7.1785502,6.852634,3,0,0,0,-9,0,-1123.6147,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0251651,0,0,51,48,-9,-9,5,3,4,0,0,6,2,1,1646,853328.25,0,0,-49.657032 -6301,7782,14191,14192,-9,-9,2,1,0,62,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,7,0,-8,0,0,0,0,70,2,1,3,3,3,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,1.494749,0,74.10096,1,57.57,49.689999,54.360001,12.12,6,1,1,1,0,4,1,1,1390,216103.66,0,0,1174.5443 -6301,7782,14192,14191,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,7,0,8,0,0,0,0,62,3,2,3,3,2,2019,4,2,16,4,0,0,15,4,1,3,0,0,0,1,0,52.069122,0,0,4.7014027,0,0,1,1,0,0,0,0,0,54.360001,12.12,57.57,49.689999,3,1,1,0,0,4,1,1,1390,216103.66,0,0,1174.5443 -6302,7783,14193,14194,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.3122416,8.3075838,0,1,0,-9,11,0,-1,-229.68753,0,0,0,59,2,2,1,-9,-9,2019,1,1,6,0,35,45,15,1,0,1,0,16.252649,16.252649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,61.139999,35.639999,5,3,4,0,0,8,5,1,2252,648989.19,0,0,4472.9814 -6302,7783,14194,14193,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,8.0366259,8.3039103,0,1,0,-9,11,0,1,26.289701,0,0,0,58,2,3,1,-9,-9,2019,1,2,5,0,37,37,15,1,0,1,0,11.606325,11.606325,0,0,0,0,0,0,0,0,0,0,0,7.6399131,0,0,0,61.139999,35.639999,54.959999,53.169998,5,3,4,0,0,8,5,1,2252,648989.19,0,0,4472.9814 -6303,7784,14195,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,3,0,4.5188413,4.9119525,3,0,0,0,-9,0,-1106.8153,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4944406,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,2,2,1,1225,-57460.195,0,0,1714.4634 -6304,7785,14196,14197,-9,-9,1,1,1,43,1,0,2,0,1,-9,3,3,0,0,1,0,0,0,2,0,-9,9,-9,0,-10.053205,-9,0,0,43,1,3,1,1,1,2019,3,2,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.009998,48.389999,43.689999,56.93,3,2,3,1,1,8,4,1,987.75,662755.38,0,0,4170.0034 -6304,7785,14197,14196,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,9.5428505,9.019537,0,2,0,-9,9,-9,0,69.605278,-9,0,1,43,1,1,3,3,3,2019,2,1,15,4,37,0,15,1,1,3,0,27.241678,27.241678,0,0,0,0,0,0,0,0,0,0,0,4.1430926,0,0,0,43.689999,56.93,43.009998,48.389999,4,2,3,0,0,8,4,1,987.75,662755.38,0,0,4170.0034 -6304,7785,14198,-9,14197,14196,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1108.0199,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,1,987.75,662755.38,0,0,4170.0034 -6304,7785,14199,-9,14197,14196,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-942.40112,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,4,1,987.75,662755.38,0,0,4170.0034 -6305,7786,14200,14201,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.6195641,8.1474686,0,1,0,-9,5,0,1,-52.468685,0,1,1,28,1,4,1,-9,-9,2019,1,2,12,1,42,41,15,1,0,1,0,11.79977,11.79977,0,0,0,0,0,0,0,0,0,0,0,1.7636069,0,0,0,58.639999,46.16,57.16,56.150002,5,2,3,0,0,12,5,1,223,636564.5,0,0,5295.4824 -6305,7786,14201,14200,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,9.092823,8.9825897,0,1,0,-9,5,0,-1,-41.572002,0,1,0,29,1,5,1,-9,-9,2019,1,1,6,0,40,44,15,1,0,1,0,19.85285,19.85285,0,0,0,0,0,0,0,0,0,0,0,6.4825597,0,0,0,57.16,56.150002,58.639999,46.16,6,2,3,0,0,12,5,1,223,636564.5,0,0,5295.4824 -6306,7787,14202,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,8.401782,8.8775244,3,0,0,0,-9,0,-969.77637,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6785104,8.8295631,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,9,5,1,258,151723.3,0,0,2499.3564 -6307,7788,14203,-9,14204,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-914.15588,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,2,0,525,18270.518,0,0,1736.676 -6307,7788,14204,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,0,3,7.1030469,6.9892278,0,4,0,0,0,-9,0,-1054.9365,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,16,16,15,1,0,-9,0,8.3982506,8.3982506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.150002,48.98,-9,-9,4,1,1,0,0,1,2,0,525,18270.518,0,0,1736.676 -6308,7789,14205,14206,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.7555799,7.7636042,1,0,-9,7,0,0,35.359299,0,0,0,69,3,3,3,3,2,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6115885,0,0,57.330002,38.73,45.25,41.34,4,1,1,0,0,12,3,1,838,660234,0,0,2634.79 -6308,7789,14206,14205,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,0,-41.670773,0,0,0,69,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.25,41.34,57.330002,38.73,5,1,1,0,0,12,3,1,838,660234,0,0,2634.79 -6309,7790,14207,-9,-9,-9,1,1,1,79,2,0,0,0,2,-9,4,3,0,0,3,0,6.4430323,6.1179042,3,0,0,0,-9,0,-904.75781,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0929708,0,0,47.009998,50.130001,-9,-9,5,1,1,0,0,6,2,0,486,397002.72,0,0,1888.5492 -6310,7791,14208,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,1,3,0,7.3708463,7.7517805,3,0,0,0,-9,0,-1014.487,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9319518,7.3712459,0,0,53.59,27.309999,-9,-9,6,1,1,0,0,5,3,1,1296,245774.31,0,0,1404.182 -6311,7792,14209,-9,-9,-9,1,1,1,47,2,0,1,0,1,-9,2,1,0,0,3,8.3827744,8.7147388,0,4,0,0,0,-9,0,-969.97827,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,35,40,15,1,1,-9,0,19.186226,19.186226,0,0,0,0,0,0,0,2,1,1,0,0,0,6.8392196,3,20.32,66.029999,-9,-9,2,1,1,0,0,13,4,1,949,165535.03,0,0,1389.0852 -6311,7793,14210,-9,14211,14209,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.17029,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,5,1,239,360260.88,0,0,1357.2338 -6311,7793,14211,-9,-9,-9,2,1,0,49,2,0,1,0,1,-9,2,1,0,0,3,8.6012163,8.7636166,0,4,0,0,0,-9,0,-1021.5154,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,35,35,15,1,0,-9,0,20.817368,20.817368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.469999,60.560001,-9,-9,4,1,1,0,0,13,5,1,239,360260.88,0,0,1357.2338 -6312,7794,14212,14213,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,8.3311357,8.3915043,1,0,-9,41,-9,8,62.549397,-9,0,0,65,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4878807,8.449955,14.005404,3,54.369999,54.799999,50,47,4,1,1,0,0,9,4,1,760.5,751272.44,0,0,4138.0415 -6312,7794,14213,14212,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,41,-9,-8,77.02829,-9,0,0,73,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.381628,3,50,47,54.369999,54.799999,6,1,1,0,0,9,4,1,760.5,751272.44,0,0,4138.0415 -6313,7795,14214,14215,-9,-9,1,1,0,51,1,0,0,0,1,-9,1,1,0,0,4,7.8093381,8.1403618,0,1,0,-9,33,0,-2,-1.7613432,0,0,0,53,1,4,1,2,2,2019,1,2,9,0,18,20,15,1,0,1,0,14.333146,14.333146,0,0,0,0,0,0,0,0,0,0,0,6.8706889,0,0,0,55.73,53.98,53,54,6,1,1,0,0,9,5,1,450.5,3303391,0,0,6305.9746 -6313,7795,14215,14214,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,9.1230783,9.4772501,6.7469797,1,0,-9,7,0,2,-62.534821,0,0,0,51,1,4,1,-9,-9,2019,1,1,9,1,48,60,15,1,0,1,0,27.073034,27.073034,0,0,0,0,0,0,0,0,0,0,0,4.7837429,7.2487917,0,0,53,54,55.73,53.98,6,1,1,0,0,9,5,1,450.5,3303391,0,0,6305.9746 -6313,7796,14216,-9,14214,14215,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,8.0518875,7.806262,0,3,0,0,0,-9,0,-980.87836,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,43,0,15,1,0,-9,1,7.4759526,7.4759526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,54.220001,-9,-9,6,1,1,0,0,9,3,1,804,154002.69,0,0,1085.2958 -6313,7797,14217,-9,14214,14215,4,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.6946712,7.4408183,0,3,0,0,0,-9,0,-975.40826,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,5.3778958,5.3778958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,3,1,323,-44693.035,0,0,1269.5854 -6314,7798,14218,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,1,0,6.82163,6.646502,3,0,0,0,-9,0,-1040.1198,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.3513811,0,0,0,0,15.162474,0,1,1,0,.26653785,7.1248837,0,0,64.57,12.51,-9,-9,6,1,1,0,0,4,2,1,284,-21297.785,0,0,675.56293 -6315,7799,14219,-9,-9,-9,1,1,0,45,2,0,1,0,1,-9,1,1,0,0,4,9.1812029,8.9469795,6.7193608,4,0,0,0,-9,0,-1100.9755,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,40,38,15,1,0,-9,0,25.425724,25.425724,0,0,0,0,0,0,0,0,1,1,0,7.8318639,0,0,0,46.5,58.259998,-9,-9,5,1,1,0,0,8,5,1,357,157766.53,0,0,3441.7097 -6315,7799,14220,-9,14219,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.63129,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,1,357,157766.53,0,0,3441.7097 -6316,7800,14221,14222,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,0,-98.077995,0,0,0,77,3,2,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.299999,44.259998,6,1,1,0,0,6,2,1,441.5,156311.38,0,0,1770.802 -6316,7800,14222,14221,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,7.3809872,6.7286572,1,0,-9,57,0,0,115.93136,0,0,0,77,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,3.0645599,0,0,0,0,0,1,1,0,.8588503,6.9546933,0,0,54.299999,44.259998,57.330002,53.459999,6,1,1,0,0,6,2,1,441.5,156311.38,0,0,1770.802 -6317,7801,14223,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,2,1,0,0,4,7.7284241,8.037322,0,3,0,0,0,-9,0,-1032.7795,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,60,40,15,1,0,-9,0,6.4087772,6.4087772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,13,4,1,883,94708.266,0,0,1554.6964 -6318,7802,14224,14225,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,5.9464021,6.2895808,1,0,-9,37,0,9,7.2025504,0,0,0,66,3,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8716617,0,0,49.73,53.970001,60.119999,54.799999,6,1,1,0,0,10,2,1,997,486441.72,0,0,1486.5159 -6318,7802,14225,14224,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,6.0633864,5.7429671,1,0,-9,37,0,0,45.049313,0,0,0,75,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9956803,0,0,60.119999,54.799999,49.73,53.970001,7,1,1,0,0,10,2,1,997,486441.72,0,0,1486.5159 -6319,7803,14226,-9,-9,-9,1,1,0,57,3,0,1,0,2,-9,2,1,0,0,3,7.8242412,7.8052168,0,4,0,0,0,-9,0,-1032.1268,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,36,15,1,0,-9,0,8.2769766,8.2769766,0,0,0,0,0,0,0,42,1,1,0,0,0,40.647976,3,54.369999,54.799999,-9,-9,4,1,1,0,1,5,3,1,412,203562.89,0,0,801.06689 -6319,7804,14227,-9,14226,-9,2,1,0,23,2,0,1,0,2,-9,2,1,0,0,3,8.0737743,8.269206,0,3,0,0,0,-9,0,-881.75049,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,38,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43,53,-9,-9,5,1,1,0,0,5,3,1,247,-78842.789,0,0,669.53125 -6319,7805,14228,-9,14229,-9,4,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-766.48785,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,1,1,259.5,-91113.125,0,0,853.94476 -6319,7805,14229,-9,14226,-9,3,1,0,20,2,0,1,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1007.2988,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,33,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5.2399998,57.720001,-9,-9,3,1,1,1,0,5,1,1,259.5,-91113.125,0,0,853.94476 -6320,7806,14230,14231,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,4.7880764,5.2405114,1,0,-9,10,0,0,6.0435109,0,0,0,60,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.952852,5.3743644,0,0,57.330002,53.459999,51.5,45.279999,6,1,1,0,0,2,3,1,442,1505344.8,0,0,2308.1365 -6320,7806,14231,14230,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,0,3,0,7.8317175,8.111392,1,0,-9,10,0,0,2.9710491,0,0,0,60,1,3,3,1,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.9894996,7.4758739,1.3680439,3,51.5,45.279999,57.330002,53.459999,6,1,1,0,0,2,3,1,442,1505344.8,0,0,2308.1365 -6321,7807,14232,14233,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,56,0,-4,-51.062683,0,0,0,82,2,1,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,4.3269119,0,10.229031,27.5,1,1,0,0,0,25.412855,1,42.07,24.58,36.610001,17.549999,3,1,1,0,0,10,2,1,834,116804.29,0,0,686.19824 -6321,7807,14233,14232,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,1,1,0,6.6715374,6.4348679,1,0,-9,56,0,4,-74.86245,0,0,0,78,3,2,3,2,2,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,1,5.6586757,33.579655,0,2.1711392,0,50.071877,0,1,1,0,0,6.9962955,0,0,36.610001,17.549999,42.07,24.58,6,1,1,0,0,10,2,1,834,116804.29,0,0,686.19824 -6322,7808,14234,14235,-9,-9,1,1,0,36,1,0,0,0,1,-9,1,1,0,0,5,8.374815,8.2696934,0,1,0,-9,9,-9,-1,12.637586,-9,0,1,37,1,5,1,2,2,2019,1,2,11,0,16,0,15,1,0,1,0,31.983234,31.983234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.18,47.709999,57.060001,57.759998,6,2,3,0,0,8,4,0,370,-1327.1533,0,0,2506.4165 -6322,7808,14235,14234,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,0,5,8.0220098,8.031415,0,1,0,-9,1,-9,1,-51.219467,-9,0,0,36,1,5,1,2,2,2019,1,1,9,0,55,0,15,1,0,1,0,5.6871214,5.6871214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,41.18,47.709999,6,2,3,0,0,8,4,0,370,-1327.1533,0,0,2506.4165 -6323,7809,14236,14237,-9,-9,1,1,0,24,1,1,1,0,2,-9,2,1,0,0,5,7.6188111,7.678133,0,2,0,-9,3,0,-4,-103.49223,0,1,1,28,2,4,1,2,3,2019,1,2,6,0,39,39,15,1,0,1,0,6.6641235,6.6641235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,49,58,6,1,1,0,0,13,4,1,1271.3334,440721.94,0,0,3833.0166 -6323,7809,14237,14236,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,0,4,8.8709908,8.5351839,0,2,0,-9,3,0,4,86.911369,0,1,0,24,2,5,1,-9,-9,2019,1,1,10,1,37,31,15,1,0,1,0,15.715377,15.715377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,54.689999,57.470001,5,1,1,0,0,13,4,1,1271.3334,440721.94,0,0,3833.0166 -6323,7809,14238,-9,14236,14237,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1085.8478,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,1271.3334,440721.94,0,0,3833.0166 -6324,7810,14239,14240,-9,-9,1,1,1,45,1,0,3,0,1,-9,2,1,0,0,4,8.5878611,8.6319418,0,2,0,-9,6,0,0,-2.6530859,0,0,0,45,1,4,1,1,1,2019,1,2,3,0,40,28,15,1,0,1,0,17.844954,17.844954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,43.419998,62.330002,6,1,1,0,1,13,5,1,503.33334,953059,0,0,4986.4956 -6324,7810,14240,14239,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,0,4,8.8846483,8.818553,0,2,0,-9,6,0,0,23.253487,-9,0,0,45,1,4,1,2,3,2019,1,1,15,3,37,0,15,1,0,1,0,23.48053,23.48053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.419998,62.330002,54.200001,57.490002,6,1,1,0,0,13,5,1,503.33334,953059,0,0,4986.4956 -6324,7810,14241,-9,14240,14239,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.05585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,503.33334,953059,0,0,4986.4956 -6325,7811,14242,14243,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.2932558,8.1521778,0,1,0,-9,32,0,-1,-30.809996,0,0,0,56,2,2,1,-9,-9,2019,1,1,8,0,31,40,15,1,0,1,0,13.577208,13.577208,0,0,0,0,0,0,0,0,0,0,0,2.8109698,0,0,0,57.16,56.150002,52.889999,47.880001,6,1,1,0,0,9,5,1,428.5,748750.38,0,0,2653.5564 -6325,7811,14243,14242,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,2,8.4359636,7.9418945,0,1,0,-9,32,0,1,108.7439,0,0,0,55,2,4,1,-9,-9,2019,1,2,11,0,48,55,15,1,0,1,0,11.423711,11.423711,0,0,0,0,0,0,0,0,0,0,0,5.370719,0,0,0,52.889999,47.880001,57.16,56.150002,5,1,1,0,0,9,5,1,428.5,748750.38,0,0,2653.5564 -6325,7812,14244,-9,14242,14243,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.2912941,8.7884293,0,3,0,0,0,-9,0,-991.58893,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,41,50,15,1,0,-9,1,11.654432,11.654432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,9,4,1,876,-8716.2598,0,0,1643.771 -6326,7813,14245,14246,-9,-9,1,1,1,66,1,0,2,0,2,-9,2,1,0,0,3,7.9242845,8.1387539,6.9878883,2,0,-9,9,0,29,48.828789,0,0,0,37,2,2,1,3,-9,2019,1,2,10,0,30,1,15,1,0,1,0,9.3044062,9.3044062,0,0,0,0,0,0,0,0,1,1,0,0,6.8378711,0,0,56.939999,49.529999,23.73,41.919998,6,1,1,0,0,5,3,1,737.75,123331.18,0,0,2914.8525 -6326,7813,14246,14245,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,0,2,7.7968869,7.7788043,0,2,0,-9,9,0,-29,-91.13031,0,0,1,66,2,3,1,2,2,2019,1,1,26,12,30,24,15,1,1,1,0,8.699543,8.699543,0,0,0,0,0,0,0,0,1,1,0,3.2761059,0,0,0,23.73,41.919998,56.939999,49.529999,3,1,1,0,0,5,3,1,737.75,123331.18,0,0,2914.8525 -6326,7813,14247,-9,14246,14245,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.02551,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,737.75,123331.18,0,0,2914.8525 -6326,7813,14248,-9,14246,14245,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.43988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,737.75,123331.18,0,0,2914.8525 -6327,7814,14249,-9,-9,-9,1,1,0,39,2,0,2,0,3,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-1079.9259,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,28,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.624369,3,40.75,46.040001,-9,-9,5,1,1,0,0,7,1,0,1059,-133290.55,0,0,1239.6035 -6327,7814,14250,-9,14249,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.2686,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,1,0,1059,-133290.55,0,0,1239.6035 -6328,7815,14251,14252,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,64,0,-2,-131.96799,0,0,0,85,3,3,3,2,2,2019,4,1,22,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.7078071,1,22.52,37.200001,55.84,18.76,6,1,1,0,0,8,2,1,271,184243.53,0,0,2246.0762 -6328,7815,14252,14251,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,3,0,6.6365476,6.9643159,1,0,-9,64,0,2,66.965553,0,0,0,83,3,1,3,2,2,2019,4,2,11,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7034039,6.4598055,0,0,55.84,18.76,22.52,37.200001,7,1,1,0,0,8,2,1,271,184243.53,0,0,2246.0762 -6329,7816,14253,-9,14254,14255,1,1,0,33,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-936.08624,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,18,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.0385823,3,34.639999,15.66,-9,-9,1,1,1,0,0,7,1,1,564,123341.59,0,0,693.34686 -6329,7817,14254,14255,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,2,7.4738774,7.3981023,0,1,0,-9,6,0,6,46.807472,0,0,0,59,3,4,1,-9,-9,2019,1,3,8,0,20,21,15,1,0,1,0,13.858495,13.858495,0,0,0,0,0,0,0,14.5,1,1,0,.68163013,0,18.670788,3,43.34,30.370001,46.450001,40.990002,6,1,1,0,0,7,3,1,732,764750.75,0,0,1891.0541 -6329,7817,14255,14254,-9,-9,3,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,7.6771135,7.8926649,0,1,0,-9,6,0,-6,26.66198,0,0,0,65,2,2,1,-9,-9,2019,1,2,23,11,40,40,15,1,1,1,0,6.4483004,6.4483004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.450001,40.990002,43.34,30.370001,6,1,1,0,0,7,3,1,732,764750.75,0,0,1891.0541 -6330,7818,14256,-9,-9,-9,1,1,0,91,2,0,0,0,3,-9,4,3,0,1,2,0,5.5496702,5.5046301,3,0,0,0,-9,0,-1056.4978,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.611908,5.6056962,7.1556845,3,57.529999,34.66,-9,-9,6,1,1,0,0,4,2,1,5567,-46945.949,0,0,650.24524 -6331,7819,14257,14258,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,1,-146.84859,0,0,0,79,2,4,3,-9,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,46,58.560001,29.84,5,4,1,0,0,13,2,1,308,502653.13,0,0,1221.2135 -6331,7819,14258,14257,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,4,0,6.9273195,7.0205822,1,0,-9,10,0,-1,-42.203182,0,0,0,80,2,3,3,3,3,2019,4,1,14,6,0,0,15,4,1,4,0,0,0,1,0,6.9240408,4.0675716,0,0,0,0,1,1,0,4.0546441,6.6714711,0,0,58.560001,29.84,53,46,7,1,1,0,0,13,2,1,308,502653.13,0,0,1221.2135 -6332,7820,14259,-9,14260,14262,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.33789,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,3,1,773.79999,128531.34,0,0,2849.0183 -6332,7820,14260,14262,-9,-9,2,1,0,43,1,0,3,0,2,-9,1,1,0,0,3,8.0473528,8.4012842,0,2,0,-9,9,0,0,-175.26761,0,0,1,43,1,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,12.018422,12.018422,0,0,0,0,0,0,0,0,1,1,0,7.4052949,0,0,0,49.610001,54.240002,41.279999,57.990002,6,1,1,0,0,2,3,1,773.79999,128531.34,0,0,2849.0183 -6332,7820,14261,-9,14260,14262,3,1,0,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.57892,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.91,56.560001,-9,-9,6,1,1,0,0,2,3,1,773.79999,128531.34,0,0,2849.0183 -6332,7820,14262,14260,-9,-9,1,1,1,43,1,0,3,0,1,-9,1,1,0,0,3,7.6436205,7.3110905,0,2,0,-9,9,0,0,6.2334485,0,0,0,43,2,3,1,2,2,2019,1,2,13,2,30,40,15,1,0,1,0,8.2052526,8.2052526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.279999,57.990002,49.610001,54.240002,4,1,1,0,0,2,3,1,773.79999,128531.34,0,0,2849.0183 -6332,7820,14263,-9,14260,14262,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.7069,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,773.79999,128531.34,0,0,2849.0183 -6333,7821,14264,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1087.5417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.112689,2.2822309,0,0,0,1,1,0,0,0,0,0,61.560001,25.59,-9,-9,7,1,1,0,0,13,1,0,1296,16877.162,0,0,829.82391 -6334,7822,14265,14266,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,7.0094705,7.0687599,1,0,-9,10,0,2,-6.6345482,0,0,0,64,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9319491,0,0,36.57,52.23,42.919998,37.400002,6,1,1,0,0,4,3,1,709.5,734668.5,0,0,2252.9521 -6334,7822,14266,14265,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,2,0,7.5675659,7.575099,1,0,-9,10,0,-2,52.622334,0,0,0,66,3,3,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1130114,0,0,42.919998,37.400002,36.57,52.23,5,1,1,0,0,4,3,1,709.5,734668.5,0,0,2252.9521 -6335,7823,14267,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,0,2,8.8658915,9.0086727,0,3,0,0,0,-9,0,-1000.3748,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,43,41,15,1,1,-9,0,20.112093,20.112093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.950001,48.830002,-9,-9,3,1,1,0,0,5,5,1,378,342437.06,0,0,1387.5402 -6336,7824,14268,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,2,8.3034935,8.7441254,6.3657303,3,0,0,0,-9,0,-973.81171,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,2,0,36,45,15,1,0,-9,0,14.107635,14.107635,0,0,0,0,0,0,0,0,0,0,0,7.4143767,0,0,0,56.759998,44.549999,-9,-9,6,1,1,0,0,10,5,1,433,291028.09,0,0,2938.189 -6337,7825,14269,14270,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,51,0,1,-132.25999,0,0,0,71,3,3,3,3,-9,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,4.9802818,0,0,0,0,0,1,1,0,0,0,0,0,41.200001,24.41,53.709999,44.130001,5,1,1,0,0,6,2,0,482.5,1722756.3,0,0,2287.6318 -6337,7825,14270,14269,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.2166519,7.4401031,1,0,-9,10,0,-1,-59.978973,0,0,0,72,3,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2623472,7.0914974,1,53.709999,44.130001,41.200001,24.41,5,1,1,0,0,6,2,0,482.5,1722756.3,0,0,2287.6318 -6338,7826,14271,14273,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.3663483,8.084775,0,2,0,-9,7,0,2,42.340271,0,0,0,38,2,4,1,2,2,2019,1,1,8,0,42,40,15,1,0,1,0,11.682322,11.682322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.259998,37.610001,49.709999,55.639999,6,1,1,0,0,2,4,1,291.75,191832.97,0,0,3468.915 -6338,7826,14272,-9,14273,14271,6,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1016.8298,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,2,4,1,291.75,191832.97,0,0,3468.915 -6338,7826,14273,14271,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,8.0157356,7.87463,0,2,0,-9,7,0,-2,-23.922882,0,0,1,40,2,3,1,2,1,2019,1,2,6,0,40,40,15,1,0,1,0,9.8227358,9.8227358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.709999,55.639999,59.259998,37.610001,6,1,1,0,0,2,4,1,291.75,191832.97,0,0,3468.915 -6338,7826,14274,-9,14273,14271,5,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.7471,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,291.75,191832.97,0,0,3468.915 -6339,7827,14275,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,0,2,8.7174129,9.1252518,0,3,0,0,0,-9,0,-1010.9725,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,80,50,15,1,0,-9,0,11.51122,11.51122,0,0,0,0,0,0,0,2,0,0,0,7.2886872,0,8.3267708,3,54.610001,51.040001,-9,-9,6,1,1,0,0,5,5,1,623,1876496.8,0,0,2987.9802 -6339,7828,14276,-9,-9,-9,2,1,0,49,2,0,0,0,2,-9,2,1,0,0,4,7.5791883,7.6952467,0,3,0,0,0,-9,0,-1002.7501,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,27,32,15,1,0,-9,0,6.8340964,6.8340964,0,0,0,0,0,0,0,2,0,0,0,4.0014267,0,0,3,57.73,54.529999,-9,-9,7,1,1,0,0,5,3,1,989,107204.45,0,0,654.33051 -6340,7829,14277,14278,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,38,0,-5,0,0,0,0,68,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.41,34.950001,55,52,7,1,1,0,0,7,1,1,904.5,8833.9844,0,0,198.93382 -6340,7829,14278,14277,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,38,0,5,0,0,0,0,63,3,2,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.484929,1,55,52,42.41,34.950001,7,1,1,0,0,7,1,1,904.5,8833.9844,0,0,198.93382 -6341,7830,14279,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,7.7366872,7.6532521,0,3,0,0,0,-9,0,-1051.0264,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,36,0,15,1,0,-9,0,7.7852755,7.7852755,0,0,0,0,0,0,0,0,1,1,0,.42038044,0,0,0,47.5,47.119999,-9,-9,6,1,1,0,0,11,4,1,1653,472427.34,0,0,1624.0856 -6342,7831,14280,14281,-9,-9,2,1,0,49,1,0,2,0,2,-9,2,1,0,0,3,8.0927629,8.5253382,0,2,0,-9,9,0,-3,-102.92954,0,0,0,52,1,2,1,3,2,2019,1,1,10,0,37,38,15,1,0,1,0,12.257591,12.257591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.279999,51.349998,41.459999,55.580002,5,1,1,0,0,12,4,1,804.75,70298.977,0,0,2731.7964 -6342,7831,14281,14280,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,0,2,8.0601597,7.9109688,0,2,0,-9,9,0,3,-36.973091,0,0,0,49,2,3,1,3,3,2019,1,2,14,3,42,0,15,1,0,1,0,7.1383557,7.1383557,0,0,0,0,0,0,0,7,1,1,0,0,0,7.6932554,3,41.459999,55.580002,50.279999,51.349998,5,1,1,0,0,12,4,1,804.75,70298.977,0,0,2731.7964 -6342,7831,14282,-9,14280,14281,3,1,1,16,2,0,2,0,2,-9,97,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.8344,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,12,4,1,804.75,70298.977,0,0,2731.7964 -6342,7831,14283,-9,14280,14281,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1017.1557,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,4,1,804.75,70298.977,0,0,2731.7964 -6343,7832,14284,-9,14285,14287,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.8273,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,256,186109.64,0,0,4442.4175 -6343,7832,14285,14287,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,4,7.0198259,7.6323318,0,2,0,-9,9,0,0,-125.10708,0,0,1,34,3,4,1,2,-9,2019,1,2,10,0,18,18,15,1,0,1,0,9.5892916,9.5892916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.869999,51.290001,46.439999,59.619999,6,1,1,0,0,10,4,1,256,186109.64,0,0,4442.4175 -6343,7832,14286,-9,14285,14287,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.02264,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,256,186109.64,0,0,4442.4175 -6343,7832,14287,14285,-9,-9,2,1,1,34,1,0,2,0,3,-9,2,1,0,0,4,8.8361063,8.6281004,0,2,0,-9,9,0,0,11.905003,0,0,0,34,1,4,1,-9,-9,2019,1,1,20,7,43,45,15,1,1,1,0,18.9457,18.9457,0,0,0,0,0,0,0,0,1,1,0,5.9765592,0,0,0,46.439999,59.619999,58.869999,51.290001,4,1,1,0,0,10,4,1,256,186109.64,0,0,4442.4175 -6344,7833,14288,-9,14292,14291,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.56158,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,852.79999,192497.28,0,0,5587.2734 -6344,7833,14289,-9,14292,14291,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.87054,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,852.79999,192497.28,0,0,5587.2734 -6344,7833,14290,-9,14292,14291,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.0549,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,852.79999,192497.28,0,0,5587.2734 -6344,7833,14291,14292,-9,-9,2,1,1,39,1,0,3,0,1,-9,2,1,0,0,3,9.3348541,9.181901,0,2,0,-9,7,0,0,175.48691,0,0,0,39,1,4,1,-9,-9,2019,1,1,8,1,45,42,15,1,0,1,0,29.018637,29.018637,0,0,0,0,0,0,0,0,0,0,0,4.6920352,0,0,0,51.169998,49.389999,25.139999,68.029999,6,1,1,0,0,7,5,1,852.79999,192497.28,0,0,5587.2734 -6344,7833,14292,14291,-9,-9,1,1,0,39,1,0,3,0,1,-9,2,1,0,0,4,8.960762,8.7230921,0,2,0,-9,18,0,0,70.941536,0,0,1,39,1,3,1,2,2,2019,1,2,20,8,47,42,15,1,1,1,0,13.217237,13.217237,0,0,0,0,0,0,0,0,0,0,0,5.5950122,0,0,0,25.139999,68.029999,51.169998,49.389999,5,1,1,0,0,7,5,1,852.79999,192497.28,0,0,5587.2734 -6345,7834,14293,14294,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,4,8.0901518,8.3924332,0,1,0,-9,2,0,-5,-44.240761,0,1,1,29,1,4,1,2,1,2019,1,2,6,1,37,50,15,1,0,1,0,11.376513,11.376513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,50,58,7,1,1,0,0,7,5,1,1025.5,-25417.285,0,0,2917.5818 -6345,7834,14294,14293,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,7.8756328,8.4198103,0,1,0,-9,2,0,5,-69.585243,-9,1,0,24,1,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,11.252933,11.252933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,58,54.200001,57.490002,5,4,1,0,0,7,5,1,1025.5,-25417.285,0,0,2917.5818 -6346,7835,14295,14296,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-3,-27.268278,0,0,0,75,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,54.959999,53.169998,6,1,1,0,0,1,3,1,1255,798478.44,0,0,1550.3783 -6346,7835,14296,14295,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.8243117,7.8233376,1,0,-9,53,0,3,3.7173491,0,0,0,72,2,3,3,2,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.796824,.71593565,3,54.959999,53.169998,52,54.509998,6,1,1,0,0,1,3,1,1255,798478.44,0,0,1550.3783 -6347,7836,14297,-9,14298,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-899.26886,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,3,0,1006,95397.609,0,0,1132.3718 -6347,7836,14298,-9,-9,-9,1,1,0,33,3,0,2,0,2,-9,2,1,0,0,4,8.2487698,8.1120777,0,4,0,-9,0,1,0,-976.15338,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,32,15,1,0,-9,0,10.891346,10.891346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,-9,-9,2,1,1,0,0,12,3,0,1006,95397.609,0,0,1132.3718 -6348,7837,14299,14300,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,8.4157009,8.6346998,0,2,0,-9,7,0,3,95.586113,0,0,0,42,1,2,1,2,2,2019,1,1,13,1,55,70,15,1,0,1,0,11.484054,11.484054,0,0,0,0,0,0,0,0,1,1,0,3.9409609,0,0,0,53.529999,46.970001,14.36,48.02,5,1,1,0,0,12,4,1,1074.75,409577.88,0,0,3069.6208 -6348,7837,14300,14299,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,2,8.1265612,8.0956516,0,2,0,-9,7,0,-3,-16.739525,0,0,1,45,1,3,1,1,1,2019,1,2,24,12,33,30,15,1,1,1,0,9.3726835,9.3726835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.36,48.02,53.529999,46.970001,3,1,1,0,0,12,4,1,1074.75,409577.88,0,0,3069.6208 -6348,7837,14301,-9,14300,14299,3,1,1,17,2,0,2,0,2,1,3,3,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.572,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3152468,0,0,0,46.5,58.259998,-9,-9,6,1,1,1,0,12,4,1,1074.75,409577.88,0,0,3069.6208 -6348,7837,14302,-9,14300,14299,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1001.5856,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,12,4,1,1074.75,409577.88,0,0,3069.6208 -6349,7838,14303,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-967.44568,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7191758,0,0,0,43.669998,43.130001,-9,-9,6,1,1,0,0,7,1,1,640,420616,0,0,-142.60048 -6350,7839,14304,14305,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,1,12.882533,0,0,0,76,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8189273,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,8,4,1,481,1196163.8,0,0,4327.5078 -6350,7839,14305,14304,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,8.0415354,8.3051805,1,0,-9,53,0,-1,49.384117,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0163283,8.2989893,0,0,57.16,56.150002,57.330002,53.459999,4,1,1,0,0,8,4,1,481,1196163.8,0,0,4327.5078 -6351,7840,14306,14307,-9,-9,2,1,1,50,1,0,2,0,2,-9,3,3,0,1,4,0,0,0,2,0,-9,30,0,0,0,0,0,0,50,3,3,3,2,2,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,47,50,6,2,3,1,0,8,1,0,616.66669,-45040.137,0,0,2932.29 -6351,7840,14307,14306,-9,-9,1,1,0,50,1,0,2,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,30,0,0,0,0,0,0,50,2,4,3,-9,3,2019,4,2,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,105.15855,3,47,50,52,55,5,2,3,0,1,8,1,0,616.66669,-45040.137,0,0,2932.29 -6351,7840,14308,-9,14307,14306,5,1,0,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-846.3866,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.4924974,3,54.27,48.040001,-9,-9,4,2,3,0,0,8,1,0,616.66669,-45040.137,0,0,2932.29 -6351,7841,14309,-9,14307,14306,4,1,0,20,2,0,2,0,3,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-946.67773,1,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,8,1,0,523,128277.88,0,0,0 -6352,7842,14310,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1058.2836,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,79,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.766422,0,0,0,57.16,56.150002,-9,-9,6,1,1,1,0,9,1,1,450,75965.594,0,0,-346.15515 -6353,7843,14311,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,0,2,7.8579097,7.6740193,0,3,0,0,0,-9,0,-1168.0592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,27,29,15,1,0,-9,0,10.019037,10.019037,0,0,0,0,0,0,0,0,1,1,0,2.2675283,0,0,0,56.25,32.610001,-9,-9,5,1,1,0,0,12,3,1,1179,486267.03,0,0,1974.8083 -6354,7844,14312,14313,-9,-9,2,1,1,61,1,0,1,0,2,-9,1,1,0,0,4,8.518672,8.4043655,0,2,0,-9,37,0,2,115.23216,0,0,0,59,2,4,3,3,3,2019,2,1,16,4,55,0,15,1,1,3,0,12.234334,12.234334,0,0,0,0,0,0,0,0,1,1,0,1.3594249,0,0,0,46.310001,58.290001,37.419998,59.700001,5,1,1,0,0,9,3,1,2019.5,1184964.8,0,0,2665.7427 -6354,7844,14313,14312,-9,-9,1,1,0,59,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,36,0,-2,-39.214355,0,0,0,61,2,4,1,2,2,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6328051,0,.89598119,3,37.419998,59.700001,46.310001,58.290001,5,1,1,0,0,9,3,1,2019.5,1184964.8,0,0,2665.7427 -6354,7845,14314,-9,14313,14312,3,1,1,27,2,0,1,0,2,-9,2,1,0,1,5,7.5933609,7.6451254,0,3,0,0,0,-9,0,-1063.8529,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,42,27,15,1,0,-9,1,4.1902609,4.1902609,0,0,0,0,0,0,0,0,1,1,0,3.6362157,0,0,0,51.139999,60.450001,-9,-9,2,1,1,0,0,9,3,1,489,2744.7473,0,0,1455.8687 -6354,7846,14315,-9,14313,14312,4,1,0,23,2,0,1,0,1,-9,2,1,0,0,3,8.1057968,8.4105148,0,3,0,0,0,-9,0,-1091.4167,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,12,55,15,1,0,-9,1,35.191418,35.191418,0,0,0,0,0,0,0,0,1,1,0,3.1611435,0,0,0,45.889999,53.150002,-9,-9,4,1,1,0,0,9,4,1,654,77168.023,0,0,1522.8586 -6354,7847,14316,-9,14313,14312,5,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1064.0905,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,1,1,130,-304784.88,0,0,0 -6354,7848,14317,-9,14313,14312,6,1,0,18,2,0,1,0,2,-9,7,2,0,0,5,6.0487704,5.895154,0,3,0,0,0,-9,0,-983.25281,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.82911855,0,0,0,44.599998,58.09,-9,-9,6,1,1,0,0,9,4,1,208,108027.73,0,0,-781.7243 -6355,7849,14318,-9,14319,14320,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.9296,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,0,398.33334,25470.486,0,0,1104.8 -6355,7849,14319,14320,-9,-9,1,1,0,20,1,1,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,-1,105.2944,0,1,1,21,2,5,1,-9,-9,2019,3,2,12,1,0,39,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.669998,55.57,40.669998,62.66,6,1,1,0,0,12,3,0,398.33334,25470.486,0,0,1104.8 -6355,7849,14320,14319,-9,-9,2,1,1,21,1,1,1,0,2,-9,2,1,0,0,5,7.7928076,8.0764256,0,2,0,-9,2,0,1,100.37631,0,1,0,20,2,3,3,-9,-9,2019,2,1,15,3,53,39,15,1,0,3,0,6.8826308,6.8826308,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.669998,62.66,46.669998,55.57,5,1,1,0,0,12,3,0,398.33334,25470.486,0,0,1104.8 -6356,7850,14321,14322,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,1,5,0,8.7519884,8.5408878,1,0,-9,7,0,4,63.005634,0,0,0,76,1,4,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,22.609512,71.5,1,1,0,3.809037,8.364584,65.628525,1,48.77,60.16,28.059999,64.419998,6,1,1,0,0,12,5,1,430.5,0,0,0,4832.1865 -6356,7850,14322,14321,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,0,4,0,7.5480103,7.7234101,1,0,-9,7,0,-4,70.87709,0,0,0,80,1,5,3,2,2,2019,4,1,23,6,0,0,15,4,1,4,0,0,0,1,2.7586207,0,0,0,0,23.517855,0,1,1,0,7.3930607,8.0864048,0,0,28.059999,64.419998,48.77,60.16,6,1,1,0,0,12,5,1,430.5,0,0,0,4832.1865 -6357,7851,14323,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,2,0,4.6345091,4.3521852,3,0,-9,0,1,0,-971.1192,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4474802,0,0,54.389999,25.18,-9,-9,4,1,1,0,0,4,2,1,905,72505.328,0,0,18.455709 -6358,7852,14324,14325,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,7.8915868,8.0255575,0,1,0,-9,4,0,-4,-17.25174,0,0,1,40,1,5,1,-9,-9,2019,1,1,13,2,20,18,15,1,0,1,0,13.225482,13.225482,0,0,0,0,0,0,0,0,1,1,0,.94935447,0,0,0,55.759998,52.639999,57.060001,57.759998,6,2,3,0,0,2,5,1,1394,103481.22,0,0,3836.3408 -6358,7852,14325,14324,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,0,5,8.6442251,8.7411871,0,1,0,-9,4,0,4,11.3202,0,0,0,36,1,4,1,2,2,2019,1,2,10,0,37,37,15,1,0,1,0,16.660692,16.660692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,55.759998,52.639999,6,2,3,0,0,2,5,1,1394,103481.22,0,0,3836.3408 -6359,7853,14326,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,0,3,0,5.5928516,5.2560778,3,0,0,0,-9,0,-970.78271,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6340184,0,0,41.189999,41.860001,-9,-9,6,3,4,0,1,8,2,1,924,552946.63,0,0,76.825821 -6360,7854,14327,14328,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,-1,-71.697372,0,0,0,84,2,3,3,2,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,13.167283,0,0,0,0,0,1,1,0,1.4768046,0,0,0,48.27,20.200001,50.439999,32.259998,7,1,1,0,0,7,3,1,326,898845,0,0,2884.915 -6360,7854,14328,14327,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,7.8325543,7.92167,1,0,-9,9,0,1,-105.02567,0,0,0,83,3,2,3,3,3,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4380059,7.6765471,0,0,50.439999,32.259998,48.27,20.200001,5,1,1,0,0,7,3,1,326,898845,0,0,2884.915 -6361,7855,14329,-9,14331,14330,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.84174,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,0,541,11856.081,0,0,2715.2097 -6361,7855,14330,14331,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,4,8.6454802,8.7729359,0,2,0,-9,2,0,13,-48.181782,0,0,0,25,2,4,3,-9,-9,2019,2,2,9,1,51,60,15,1,0,3,0,10.114214,10.114214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47,58,6,1,1,0,0,9,4,0,541,11856.081,0,0,2715.2097 -6361,7855,14331,14330,-9,-9,2,1,0,25,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-13,.39415094,0,1,1,38,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,51,56,5,1,1,0,0,9,4,0,541,11856.081,0,0,2715.2097 -6362,7856,14332,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,0,4,6.2558136,6.1253653,0,3,0,0,0,-9,0,-1114.9672,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,55,50,15,1,0,-9,0,1.13893,1.13893,0,0,0,0,0,0,0,0,0,0,0,4.4248161,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,2,1,155,30356.756,0,0,727.13385 -6363,7857,14333,-9,14335,14334,3,1,1,6,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.0932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,4,2,0,487.20001,46203.949,0,0,3157.8574 -6363,7857,14334,14335,-9,-9,2,1,1,36,1,2,3,0,2,-9,2,1,0,0,4,7.4675827,7.2071733,0,2,0,-9,3,0,8,-175.23663,0,0,0,28,2,4,3,-9,-9,2019,2,1,8,1,30,37,15,1,0,3,0,6.4091763,6.4091763,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.874809,3,59.529999,56.439999,47,57,6,3,4,0,0,4,2,0,487.20001,46203.949,0,0,3157.8574 -6363,7857,14335,14334,-9,-9,1,1,0,28,1,2,3,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,3,0,-8,35.381145,0,1,1,36,2,4,1,2,2,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,59.529999,56.439999,5,1,1,0,0,4,2,0,487.20001,46203.949,0,0,3157.8574 -6363,7857,14336,-9,14335,14334,5,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-964.71191,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,4,2,0,487.20001,46203.949,0,0,3157.8574 -6363,7857,14337,-9,14335,14334,4,1,1,1,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.3225,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,4,2,0,487.20001,46203.949,0,0,3157.8574 -6364,7858,14338,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,4.7646947,4.7784462,3,0,0,0,-9,0,-909.39526,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8253338,5.5046468,9.8106213,3,50.950001,41.150002,-9,-9,5,1,1,0,0,6,2,1,491,29260.072,0,0,370.35513 -6364,7859,14339,-9,14338,-9,2,1,1,50,2,0,0,0,3,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-884.48297,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4394255,0,0,0,53,54,-9,-9,6,1,1,0,0,6,1,1,364,0,0,0,739.65204 -6365,7860,14340,-9,14341,14343,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.6006,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,895.40002,64278.672,0,0,2484.6741 -6365,7860,14341,14343,-9,-9,1,1,0,39,1,1,3,0,3,-9,2,1,0,0,3,6.9513268,6.888133,0,2,0,-9,4,0,9,-13.005866,0,0,1,30,2,4,1,-9,-9,2019,1,4,6,0,13,12,15,1,0,1,0,8.7429523,8.7429523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,48.880001,57.16,56.150002,6,1,1,0,0,1,3,0,895.40002,64278.672,0,0,2484.6741 -6365,7860,14342,-9,14341,14343,2,1,0,16,2,1,3,1,2,-9,7,2,0,0,1,4.2700591,3.8813467,0,2,0,0,0,-9,0,-977.56415,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.400002,42.119999,-9,-9,5,1,1,0,0,1,3,0,895.40002,64278.672,0,0,2484.6741 -6365,7860,14343,14341,-9,-9,4,1,1,30,1,1,3,0,2,-9,2,1,0,0,4,8.5602713,8.2333632,0,2,0,-9,4,0,0,114.86337,0,0,0,39,3,3,1,-9,-9,2019,1,1,6,0,50,43,15,1,0,1,0,10.296188,10.296188,0,0,0,0,0,0,0,0,1,1,0,.46789563,0,0,0,57.16,56.150002,61.279999,48.880001,7,1,1,0,0,1,3,0,895.40002,64278.672,0,0,2484.6741 -6365,7860,14344,-9,14341,14343,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.83655,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,3,0,895.40002,64278.672,0,0,2484.6741 -6366,7861,14345,14347,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,0,4,8.3524685,8.5934629,5.7978301,2,0,-9,3,0,4,-32.533417,0,0,1,31,1,4,1,2,2,2019,1,3,10,2,30,31,15,1,0,1,0,20.31728,20.31728,0,0,0,0,0,0,0,0,1,1,0,5.8557835,0,0,0,52.400002,55.580002,48.529999,58.91,6,1,1,0,0,5,5,1,537.33331,277571.81,0,0,4355.5225 -6366,7861,14346,-9,14345,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.2672,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,537.33331,277571.81,0,0,4355.5225 -6366,7861,14347,14345,-9,-9,3,1,1,31,1,0,1,0,1,-9,2,1,0,0,4,9.1253662,8.9856062,0,2,0,-9,3,0,-4,-90.779167,0,0,0,35,1,4,1,-9,-9,2019,1,1,7,0,45,52,15,1,0,1,0,18.071898,18.071898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.529999,58.91,52.400002,55.580002,6,1,1,0,0,5,5,1,537.33331,277571.81,0,0,4355.5225 -6367,7862,14348,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,3,7.8262405,7.8005209,6.8405485,3,0,0,0,-9,0,-1010.2494,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,40,15,1,0,-9,0,9.3928413,9.3928413,0,0,0,0,0,0,0,7,0,0,0,6.7699504,0,7.4746809,3,32.709999,59.389999,-9,-9,3,1,1,0,1,12,4,0,691,154031.55,0,0,1751.1412 -6367,7863,14349,-9,14348,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.8828001,7.6139894,0,3,0,-9,0,-9,0,-996.48169,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,0,15,1,0,-9,1,8.49753,8.49753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,3,0,4189,-110948.64,0,0,775.66272 -6368,7864,14350,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,5,0,7.4911513,7.4178734,3,0,0,0,-9,0,-933.82959,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,8.3029833,7.304987,0,3,54.099998,59.110001,-9,-9,7,1,1,0,0,2,3,1,175,479407.19,0,0,4221.772 -6369,7865,14351,14352,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-2,-112.07581,0,0,0,72,3,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4454961,0,3.8235614,1,46.369999,50.169998,33.470001,36.290001,6,1,1,0,0,10,2,1,311.5,188069.91,0,0,1765.9473 -6369,7865,14352,14351,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,1,1,0,7.0350375,6.9025879,1,0,-9,46,0,2,88.951897,0,0,0,70,2,3,3,3,3,2019,4,1,20,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2291198,6.937264,0,0,33.470001,36.290001,46.369999,50.169998,2,1,1,0,0,10,2,1,311.5,188069.91,0,0,1765.9473 -6370,7866,14353,14355,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,4,8.4733105,8.4617462,0,2,0,-9,19,0,1,81.987938,0,0,1,43,1,3,1,2,2,2019,1,1,10,0,42,40,15,1,0,1,0,11.910065,11.910065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,1,5,1,871.33331,370010.13,0,0,3753.8154 -6370,7866,14354,-9,14353,14355,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.60193,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,871.33331,370010.13,0,0,3753.8154 -6370,7866,14355,14353,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,3,8.5948124,8.9891472,0,2,0,-9,19,0,-1,55.167828,0,0,0,44,1,4,1,2,1,2019,1,2,6,0,76,41,15,1,0,1,0,9.3996401,9.3996401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,5,1,1,0,0,1,5,1,871.33331,370010.13,0,0,3753.8154 -6371,7867,14356,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,2,1,0,0,5,7.9499221,7.9488726,5.124537,3,0,0,0,-9,0,-960.31409,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,43,0,15,1,0,-9,0,6.8998675,6.8998675,0,0,0,0,0,0,0,2,1,1,0,0,4.8148928,9.7400064,3,57.060001,57.759998,-9,-9,6,3,4,0,1,9,3,1,1041,563170.75,0,0,1687.6174 -6372,7868,14357,-9,14358,-9,1,1,1,27,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-952.12518,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,1,0,257,-48721.43,0,0,876.21844 -6372,7869,14358,-9,-9,-9,2,1,0,48,3,0,0,0,3,-9,6,3,0,1,4,0,0,0,3,0,0,0,-9,0,-952.97247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,-9,-9,6,2,3,0,0,8,1,0,845,20127.479,0,0,1236.3684 -6372,7870,14359,-9,14358,-9,3,1,1,19,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-994.37695,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,1,0,8,1,0,130,0,0,0,458.84378 -6372,7871,14360,-9,14358,-9,4,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,9.2692204,9.0849714,0,3,0,0,0,-9,0,-1062.9156,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,40,35,15,1,0,-9,1,31.635492,31.635492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,7,2,3,0,0,8,5,0,729,-19614.998,0,0,3495.2461 -6373,7872,14361,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,8.2680521,8.4009562,5.1549492,2,0,-9,5,0,-1,42.177784,0,0,1,-9,-9,-9,-9,2,2,2019,1,3,12,1,45,37,15,1,0,-9,0,11.384341,11.384341,0,0,0,0,0,0,0,0,1,1,0,5.4261312,0,0,0,38.599998,55.310001,35.529999,63.810001,6,1,1,0,0,5,4,0,678,61239.133,0,0,2021.0513 -6373,7872,14362,-9,14361,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.84857,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,4,0,678,61239.133,0,0,2021.0513 -6373,7873,14363,-9,-9,-9,3,1,0,34,2,0,1,0,2,-9,2,1,0,0,5,8.1878099,7.6798735,0,2,0,-9,5,0,1,58.505314,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,22,10,44,42,15,1,1,-9,0,8.8112907,8.8112907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.529999,63.810001,38.599998,55.310001,5,1,1,0,0,5,4,0,708,143599.17,0,0,1693.2568 -6374,7874,14364,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1011.6801,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1378479,0,0,0,33,32.470001,-9,-9,4,1,1,0,0,8,1,0,314,-45492.422,0,0,1620.2349 -6375,7875,14365,14366,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,2,-133.7256,0,0,0,63,2,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.139999,51.279999,43.610001,46.080002,6,1,1,0,0,7,2,1,3396,664415.63,0,0,1803.5166 -6375,7875,14366,14365,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.3822885,7.0252452,1,0,-9,10,0,-2,9.691741,0,0,0,65,3,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96243638,7.3524618,0,0,43.610001,46.080002,53.139999,51.279999,5,1,1,0,0,7,2,1,3396,664415.63,0,0,1803.5166 -6376,7876,14367,14368,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,5,8.1430321,7.846766,0,1,0,-9,4,0,-11,-10.968396,0,0,0,61,3,4,1,2,2,2019,1,2,5,0,38,38,15,1,0,1,0,7.8623638,7.8623638,0,0,0,0,0,0,0,0,0,0,0,4.5938435,0,0,0,57.630001,56.139999,61.119999,46.029999,7,1,1,0,0,4,5,1,2306.5,233657.45,0,0,3129.9814 -6376,7876,14368,14367,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,8.1836967,8.0227203,0,1,0,-9,4,0,11,38.124775,0,0,0,50,2,5,1,-9,-9,2019,1,1,7,0,40,48,15,1,0,1,0,12.745411,12.745411,0,0,0,0,0,0,0,0,0,0,0,4.8797431,0,0,0,61.119999,46.029999,57.630001,56.139999,7,1,1,0,0,4,5,1,2306.5,233657.45,0,0,3129.9814 -6377,7877,14369,14370,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.8170466,7.6820598,0,1,0,-9,8,0,-12,20.392633,-9,0,0,72,2,3,1,-9,-9,2019,1,1,16,4,45,0,15,1,1,1,0,6.2957616,6.2957616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.43,39.73,53,47,5,3,4,0,0,8,3,0,986.5,1295176.9,0,0,2597.4836 -6377,7877,14370,14369,-9,-9,1,1,1,72,1,0,0,0,2,-9,2,1,0,0,3,6.6351504,7.622726,6.6759868,1,0,-9,12,0,12,-1.1826947,-9,0,0,60,2,3,1,3,3,2019,1,2,10,1,49,0,15,1,0,1,0,2.5139747,2.5139747,0,0,0,0,0,0,0,0,1,1,0,0,6.4091344,0,0,53,47,42.43,39.73,5,3,4,0,0,8,3,0,986.5,1295176.9,0,0,2597.4836 -6378,7878,14371,14372,-9,-9,1,1,0,52,1,0,1,0,1,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,4,16.60067,0,0,0,48,2,4,1,2,2,2019,3,2,11,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5525248,0,0,0,52.040001,27.620001,58.720001,51.290001,6,1,1,0,0,12,4,1,574,42575.098,0,0,2815.5354 -6378,7878,14372,14371,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.4355145,8.807622,0,2,0,-9,8,0,-4,-34.53336,0,0,0,52,1,2,3,2,2,2019,2,1,6,0,45,42,15,1,0,3,0,17.015753,17.015753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.720001,51.290001,52.040001,27.620001,6,1,1,0,0,12,4,1,574,42575.098,0,0,2815.5354 -6378,7878,14373,-9,14371,14372,4,1,0,17,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.2098,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,12,4,1,574,42575.098,0,0,2815.5354 -6378,7879,14374,-9,14371,14372,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,6.506628,6.5682907,0,3,0,0,0,-9,0,-1037.9781,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,20,16,15,1,0,-9,1,4.4856091,4.4856091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,12,2,1,180,-30101.557,0,0,612.63519 -6379,7880,14375,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,1,2,8.4096088,8.6394567,0,3,0,0,0,-9,0,-899.6991,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,35,35,15,1,0,-9,0,14.26464,14.26464,0,0,0,0,0,0,0,0,1,1,0,1.2577361,0,0,0,60.549999,29.25,-9,-9,4,3,4,0,0,8,5,1,1056,-228840.7,0,0,1496.7028 -6380,7881,14376,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,2,1,0,0,4,7.5676942,7.2236671,5.6677241,4,0,0,0,-9,0,-1100.0457,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,20,20,15,1,0,-9,0,6.6319137,6.6319137,0,0,0,0,0,0,0,0,1,1,0,5.1500831,0,0,0,43.790001,58.330002,-9,-9,4,1,1,0,0,4,2,0,504.5,33141.617,0,0,2565.3396 -6380,7881,14377,-9,14376,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1073.749,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,2,0,504.5,33141.617,0,0,2565.3396 -6381,7882,14378,14379,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,5,0,8.3422689,8.1138859,1,0,-9,54,0,3,63.075603,0,0,0,73,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1572543,8.1741972,0,0,60.02,56.419998,57.060001,57.759998,7,1,1,0,0,5,3,1,3926,544629,0,0,2496.6555 -6381,7882,14379,14378,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,54,0,-3,7.6892996,0,0,0,76,2,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,60.02,56.419998,6,1,1,0,0,5,3,1,3926,544629,0,0,2496.6555 -6382,7883,14380,14381,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,1,2,0,5.5861464,5.6929789,1,0,-9,10,0,1,-89.373749,0,0,0,81,2,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,4.3677754,47.964855,6.0250716,0,0,0,0,1,1,0,0,5.9181523,0,0,31.59,26,44.330002,35.369999,3,1,1,0,0,12,2,1,1015,123341.6,0,0,1835.3284 -6382,7883,14381,14380,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,-1,49.383568,0,0,0,82,3,2,3,3,2,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,131.65326,1,44.330002,35.369999,31.59,26,4,1,1,0,0,12,2,1,1015,123341.6,0,0,1835.3284 -6383,7884,14382,-9,14384,14385,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.2572,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,1103.25,392300.31,0,0,4958.5254 -6383,7884,14383,-9,14384,14385,3,1,0,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.83734,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,7,4,1,1103.25,392300.31,0,0,4958.5254 -6383,7884,14384,14385,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,8.8794212,8.5122051,0,2,0,-9,7,0,-1,-35.422455,0,0,1,45,2,2,1,-9,-9,2019,1,1,10,1,40,38,15,1,0,1,0,14.905148,14.905148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,36.889999,55.119999,6,1,1,0,0,7,4,1,1103.25,392300.31,0,0,4958.5254 -6383,7884,14385,14384,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,2,8.6847048,8.6255751,0,2,0,-9,7,0,1,72.706917,0,0,0,44,2,4,1,3,3,2019,1,2,13,1,40,40,15,1,0,1,0,16.333067,16.333067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.889999,55.119999,50,55,4,1,1,0,0,7,4,1,1103.25,392300.31,0,0,4958.5254 -6384,7885,14386,-9,14387,14390,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.01178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,2,1,1797.4,58464.723,0,0,2420.1982 -6384,7885,14387,14390,-9,-9,1,1,0,28,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,-1,-22.357061,0,1,1,29,2,3,1,2,2,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,55.560001,51.529999,6,1,1,0,0,1,2,1,1797.4,58464.723,0,0,2420.1982 -6384,7885,14388,-9,14387,14390,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.0595,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,2,1,1797.4,58464.723,0,0,2420.1982 -6384,7885,14389,-9,14387,14390,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.6877,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,2,1,1797.4,58464.723,0,0,2420.1982 -6384,7885,14390,14387,-9,-9,2,1,1,29,1,0,3,0,2,-9,2,1,0,0,3,8.3090897,7.9732695,0,2,0,-9,9,0,1,-43.24025,0,1,0,28,2,3,3,2,2,2019,2,1,7,0,39,40,15,1,0,3,0,10.667267,10.667267,0,0,0,0,0,0,0,0,1,1,0,.30033666,0,0,0,55.560001,51.529999,46.080002,57.200001,6,1,1,0,0,1,2,1,1797.4,58464.723,0,0,2420.1982 -6385,7886,14391,14392,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,5,0,0,-11.24082,0,0,0,44,2,4,1,-9,-9,2019,1,1,7,0,0,49,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.400002,56.799999,41.459999,52.41,2,1,1,0,0,11,3,1,821,406641.75,0,0,1520.1516 -6385,7886,14392,14391,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,7.7872896,7.8891196,0,1,0,-9,5,0,0,.031046988,0,0,1,44,2,4,1,2,2,2019,1,2,11,3,37,40,15,1,0,1,0,9.4814835,9.4814835,0,0,0,0,0,0,0,0,0,0,0,2.3122373,0,0,0,41.459999,52.41,38.400002,56.799999,7,1,1,0,0,11,3,1,821,406641.75,0,0,1520.1516 -6386,7887,14393,14394,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,8.66012,8.4294624,1,0,-9,44,0,0,-131.40274,0,0,0,64,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.751497,8.6409245,0,0,54.369999,54.799999,52.82,53.970001,6,1,1,0,0,5,4,1,1044.5,1382480.3,0,0,1828.2698 -6386,7887,14394,14393,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,4.2791448,4.3260636,1,0,-9,44,0,0,32.53072,0,0,0,64,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.9671974,4.080853,0,3,52.82,53.970001,54.369999,54.799999,6,1,1,0,0,5,4,1,1044.5,1382480.3,0,0,1828.2698 -6387,7888,14395,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,1,1,0,0,2,0,5.7788634,5.4589992,3,0,0,0,-9,0,-1060.4735,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,3,0,0,15,1,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6305013,0,0,34.650002,37.080002,-9,-9,7,1,1,0,1,6,2,0,630,124476.41,0,0,675.41272 -6388,7889,14396,14397,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,8,0,14,0,0,0,0,61,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,28.959999,54.959999,53.169998,6,1,1,0,0,4,1,0,1059,22376.166,0,0,3520.9556 -6388,7889,14397,14396,-9,-9,1,1,0,61,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,20,0,-14,0,0,0,0,75,3,2,3,3,3,2019,4,2,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.165016,1,54.959999,53.169998,58.32,28.959999,6,1,1,0,0,4,1,0,1059,22376.166,0,0,3520.9556 -6389,7890,14398,14399,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,2,7.8008122,7.7489395,4.2299757,1,0,-9,9,0,-3,-7.3448358,0,0,0,62,3,1,1,3,3,2019,1,1,8,0,44,44,15,1,0,1,0,7.9510531,7.9510531,0,0,0,0,0,0,0,0,0,0,0,0,4.5040574,0,0,39.82,55.119999,45.27,41.540001,5,1,1,0,0,11,4,0,504,832455.88,0,0,3157.0063 -6389,7890,14399,14398,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,1,8.3084917,7.9375296,0,1,0,-9,9,0,3,25.093378,0,0,0,59,3,2,1,3,3,2019,1,2,9,1,40,44,15,1,0,1,0,9.3047104,9.3047104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.27,41.540001,39.82,55.119999,3,1,1,0,0,11,4,0,504,832455.88,0,0,3157.0063 -6390,7891,14400,14403,-9,-9,1,1,1,39,1,1,3,0,2,-9,2,1,0,0,4,8.8080978,8.9004755,0,2,0,-9,22,0,3,229.65526,0,0,0,36,2,4,1,3,3,2019,1,2,10,0,45,44,15,1,0,1,0,16.538126,16.538126,0,0,0,0,0,0,0,0,0,0,0,.74687272,0,0,0,51.830002,57.200001,49,56,6,2,3,0,0,8,3,1,719,-71331.5,0,0,1695.1492 -6390,7891,14401,-9,14403,14400,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.3901,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,719,-71331.5,0,0,1695.1492 -6390,7891,14402,-9,14403,14400,4,1,1,10,2,1,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1056.5865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,8,3,1,719,-71331.5,0,0,1695.1492 -6390,7891,14403,14400,-9,-9,2,1,0,36,1,1,3,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,22,0,-3,34.499287,0,0,1,39,2,4,1,3,3,2019,1,1,11,2,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,51.830002,57.200001,5,2,3,0,0,8,3,1,719,-71331.5,0,0,1695.1492 -6390,7892,14404,-9,14403,14400,3,1,0,18,2,1,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1136.1267,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.969999,59.759998,-9,-9,6,2,3,0,0,8,3,1,300,66628.297,0,0,0 -6391,7893,14405,-9,14407,14406,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.31689,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,3,1,492,246040.45,0,0,399.5462 -6391,7893,14406,14407,-9,-9,2,1,1,38,1,1,1,0,2,-9,1,1,0,0,3,7.7174363,7.7862382,0,2,0,-9,2,0,3,-83.056557,0,0,0,35,1,4,1,-9,-9,2019,1,1,18,5,40,20,15,1,1,1,0,7.3936362,7.3936362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.790001,48.650002,37.560001,63.66,3,1,1,0,0,9,3,1,492,246040.45,0,0,399.5462 -6391,7893,14407,14406,-9,-9,1,1,0,35,1,1,1,0,1,-9,1,1,0,0,4,6.8865595,6.3443799,0,2,0,-9,2,0,-3,38.141006,0,0,1,38,2,3,1,3,2,2019,1,2,23,9,20,7,15,1,1,1,0,3.9569674,3.9569674,0,0,0,0,0,0,0,0,1,1,0,.36573887,0,0,0,37.560001,63.66,32.790001,48.650002,3,1,1,0,0,9,3,1,492,246040.45,0,0,399.5462 -6392,7894,14408,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,2,8.0223026,7.7319922,0,3,0,0,0,-9,0,-1011.764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,30,15,1,0,-9,0,8.800869,8.800869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.299999,42.419998,-9,-9,5,3,4,0,0,8,3,1,187,-78638.82,0,0,1093.2732 -6392,7895,14409,-9,14408,-9,2,1,0,25,2,0,0,0,1,1,2,1,0,0,5,8.2768888,8.2915163,0,3,0,0,0,-9,0,-937.29401,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,39,0,15,1,0,-9,1,12.377427,12.377427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,7,3,4,0,0,8,4,1,833,-53721.656,0,0,1757.8691 -6393,7896,14410,14412,-9,-9,2,1,1,37,1,1,2,0,1,-9,1,1,0,0,5,8.2373238,8.2598028,0,2,0,-9,4,0,-4,-50.471207,0,0,0,41,1,4,1,-9,-9,2019,1,1,6,0,28,30,15,1,0,1,0,10.615958,10.615958,0,0,0,0,0,0,0,0,1,1,0,3.0866742,0,0,0,51.139999,60.450001,40.830002,59.68,6,1,1,0,0,10,4,1,1224,407117.16,0,0,2394.9595 -6393,7896,14411,-9,14412,14410,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.8744,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,1224,407117.16,0,0,2394.9595 -6393,7896,14412,14410,-9,-9,1,1,0,41,1,1,2,0,1,-9,2,1,0,0,4,7.7595253,8.236433,0,2,0,-9,4,0,4,-94.076904,0,0,1,37,1,5,1,1,1,2019,1,2,12,3,30,38,15,1,0,1,0,13.488824,13.488824,0,0,0,0,0,0,0,0,1,1,0,4.4372578,0,0,0,40.830002,59.68,51.139999,60.450001,2,1,1,0,0,10,4,1,1224,407117.16,0,0,2394.9595 -6393,7896,14413,-9,14412,14410,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.07953,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,1224,407117.16,0,0,2394.9595 -6394,7897,14414,14419,-9,-9,7,1,1,39,1,0,5,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,6,27.483643,0,0,0,33,2,3,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.599998,53.68,26.709999,31,4,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6394,7897,14415,-9,14419,14414,4,1,0,12,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.9169,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6394,7897,14416,-9,14419,14414,6,1,1,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-854.15259,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6394,7897,14417,-9,14419,14414,2,1,0,10,2,0,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-993.49762,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6394,7897,14418,-9,14419,14414,5,1,1,7,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.2039,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6394,7897,14419,14414,-9,-9,1,1,0,33,1,0,5,0,2,-9,2,1,0,0,3,7.8077002,7.9400792,0,2,0,-9,6,0,-6,-3.7998238,0,0,1,39,2,3,3,2,3,2019,2,7,18,5,33,40,15,1,1,3,0,6.9412045,6.9412045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.709999,31,41.599998,53.68,6,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6394,7897,14420,-9,14419,14414,3,1,1,14,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.0956,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,2,0,616.42859,29788.273,0,0,2693.937 -6395,7898,14421,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,2,0,7.1260757,7.2799568,3,0,0,0,-9,0,-949.53723,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.1729169,0,0,62.599998,24.030001,-9,-9,6,1,1,0,0,10,2,1,560,305607.44,0,0,2354.4512 -6396,7899,14422,14423,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,3,0,7.5656734,7.5901384,1,0,-9,41,0,2,-7.1019983,0,0,0,72,2,4,3,2,-9,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3255435,7.7449512,0,0,57.330002,53.459999,54.200001,57.490002,7,1,1,0,0,4,3,1,92,719236.88,0,0,2148.1431 -6396,7899,14423,14422,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.1992373,7.1396403,1,0,-9,40,0,-2,85.323013,0,0,0,74,1,3,3,-9,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8367414,6.7773957,0,0,54.200001,57.490002,57.330002,53.459999,6,1,1,0,0,4,3,1,92,719236.88,0,0,2148.1431 -6397,7900,14424,14425,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.9689536,6.9462333,1,0,-9,55,0,4,122.16893,0,0,0,73,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7380314,0,0,42.880001,51.790001,44.029999,52.610001,7,1,1,0,0,4,2,1,99.5,555669.38,0,0,1612.4784 -6397,7900,14425,14424,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,4.9392018,5.1477947,1,0,-9,55,0,-4,-116.57668,0,0,0,77,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8334002,0,0,44.029999,52.610001,42.880001,51.790001,5,1,1,0,0,4,2,1,99.5,555669.38,0,0,1612.4784 -6398,7901,14426,14427,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,1,0,6.1542611,5.9870586,1,0,-9,23,0,1,-95.385483,0,0,0,70,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4978914,6.1696343,0,0,59.490002,23.030001,47.779999,52.349998,5,1,1,0,0,4,2,1,475,210251.92,0,0,4323.6978 -6398,7901,14427,14426,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,5.6739907,6.2737832,1,0,-9,22,0,-1,58.405983,0,0,0,71,2,1,3,3,-9,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3373346,5.9893327,0,0,47.779999,52.349998,59.490002,23.030001,6,1,1,0,0,4,2,1,475,210251.92,0,0,4323.6978 -6399,7902,14428,14429,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,9.4333363,9.3150539,6.0585375,1,0,-9,39,0,1,21.383108,0,0,0,66,2,3,3,3,2,2019,2,2,20,8,30,30,15,1,1,4,0,55.156509,55.156509,0,0,0,0,0,0,0,0,1,1,0,6.2285404,5.9208584,0,0,52.779999,33.889999,57.330002,53.459999,6,1,1,0,0,8,5,1,1010.5,349013.59,0,0,5542.4619 -6399,7902,14429,14428,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,5.1096139,4.7195644,1,0,-9,39,0,-1,-58.330101,0,0,0,67,2,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7940114,4.6092782,0,0,57.330002,53.459999,52.779999,33.889999,1,1,1,0,0,8,5,1,1010.5,349013.59,0,0,5542.4619 -6400,7903,14430,14431,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,7.1872129,7.3218551,0,1,0,-9,2,0,5,-117.48352,0,0,0,45,2,2,1,-9,-9,2019,1,1,8,0,39,30,15,1,0,1,0,4.0660868,4.0660868,0,0,0,0,0,0,0,0,0,0,0,7.4904222,0,0,0,57.779999,38.59,44.060001,48.959999,6,1,1,0,0,9,4,1,913.5,1183969.8,0,0,3693.4751 -6400,7903,14431,14430,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,2,8.3015585,8.083806,0,1,0,-9,2,0,-5,134.91609,0,0,0,50,2,2,1,2,-9,2019,1,2,6,1,45,24,15,1,0,1,0,10.368791,10.368791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.060001,48.959999,57.779999,38.59,6,1,1,0,1,9,4,1,913.5,1183969.8,0,0,3693.4751 -6401,7904,14432,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,8.6334248,8.6560259,0,3,0,0,0,-9,0,-967.3429,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,55,15,1,0,-9,0,14.036478,14.036478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,1,1,1,0,0,11,5,0,297,-746.61383,0,0,2357.8752 -6402,7905,14433,14434,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,8.5888691,8.5082874,0,1,0,-9,30,0,-5,-31.826132,0,0,0,56,1,2,1,2,-9,2019,1,1,11,0,37,38,15,1,0,1,0,17.847691,17.847691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.970001,48.43,63.259998,29.17,6,1,1,0,0,1,5,0,1955,2077799.5,0,0,3522.6631 -6402,7905,14434,14433,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,2,8.0902796,7.7315021,5.7678618,1,0,-9,30,0,5,-84.516937,0,0,0,51,2,4,1,2,2,2019,1,2,5,0,30,30,15,1,0,1,0,10.888425,10.888425,0,0,0,0,0,0,0,0,1,1,0,.76168847,6.2035432,0,0,63.259998,29.17,52.970001,48.43,7,1,1,0,0,1,5,0,1955,2077799.5,0,0,3522.6631 -6403,7906,14435,-9,-9,-9,1,1,0,41,2,0,1,0,2,0,7,2,0,0,3,0,7.5849457,7.4342647,4,0,0,0,-9,0,-1062.4683,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0321732,0,0,0,54.57,49.240002,-9,-9,7,1,1,0,0,9,2,0,1508.5,89646.984,0,0,4007.7725 -6403,7906,14436,-9,14435,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1059.8243,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,2,0,1508.5,89646.984,0,0,4007.7725 -6404,7907,14437,-9,14438,-9,2,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1100.2563,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,1,0,560,-201562.41,0,0,291.29086 -6404,7907,14438,-9,-9,-9,1,1,0,40,2,1,1,0,2,-9,6,3,0,0,2,0,0,0,4,0,-9,0,0,0,-1025.6166,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.049999,30.309999,-9,-9,3,1,1,0,0,5,1,0,560,-201562.41,0,0,291.29086 -6405,7908,14439,14442,-9,-9,2,1,0,45,1,0,2,0,2,-9,1,1,0,0,3,7.1051207,7.0244102,0,2,0,-9,27,0,-3,42.506401,0,0,0,48,1,3,1,3,2,2019,1,1,24,12,30,18,15,1,1,1,0,4.786716,4.786716,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.41,61.919998,52,54.509998,3,1,1,0,0,9,5,1,381,267824,0,0,5640.3599 -6405,7908,14440,-9,14439,14442,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-790.49481,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,9,5,1,381,267824,0,0,5640.3599 -6405,7908,14441,-9,14439,14442,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.4706,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,381,267824,0,0,5640.3599 -6405,7908,14442,14439,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,3,9.2043915,9.2116003,0,2,0,-9,27,0,3,-31.857933,0,0,0,45,2,3,1,2,2,2019,1,2,8,0,50,50,15,1,0,1,0,19.88261,19.88261,0,0,0,0,0,0,0,0,1,1,0,7.9876604,0,0,0,52,54.509998,30.41,61.919998,5,1,1,0,0,9,5,1,381,267824,0,0,5640.3599 -6406,7909,14443,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,0,3,0,6.9003229,6.5554757,3,0,0,0,-9,0,-1052.5367,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68978477,6.501637,0,0,54,43,-9,-9,6,1,1,0,0,11,2,1,676,312288.81,0,0,73.901398 -6407,7910,14444,14445,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,55,0,-3,-10.771475,0,0,0,78,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.147326,0,0,0,63.639999,14.36,61.189999,36.580002,7,4,2,0,0,7,3,1,645,913341.88,0,0,3486.3596 -6407,7910,14445,14444,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,8.0930967,7.4824424,1,0,-9,53,0,3,-88.715408,0,0,0,75,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.6781693,7.8620405,32.221462,1,61.189999,36.580002,63.639999,14.36,7,1,1,0,0,7,3,1,645,913341.88,0,0,3486.3596 -6408,7911,14446,-9,14448,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-979.08612,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,10,2,1,173.66667,66549.852,0,0,1861.1141 -6408,7911,14447,-9,14448,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-985.68787,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,2,1,173.66667,66549.852,0,0,1861.1141 -6408,7911,14448,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,2,1,0,0,4,6.7796817,6.8344855,0,4,0,0,0,-9,0,-992.6488,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,14,3,16,16,15,1,0,-9,0,7.6374345,7.6374345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,63.389999,-9,-9,4,1,1,0,0,10,2,1,173.66667,66549.852,0,0,1861.1141 -6409,7912,14449,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,1,1,0,5.0748339,5.2415452,3,0,0,0,-9,0,-786.5705,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,3.8167336,0,0,1,1,0,0,5.186461,0,0,19.01,22.639999,-9,-9,2,1,1,0,0,9,2,0,397,218893.3,0,0,1474.5497 -6410,7913,14450,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,6.9353328,7.1427374,3,0,0,0,-9,0,-985.84979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8401451,7.2531314,0,0,47.720001,28.25,-9,-9,6,1,1,0,0,10,2,1,1191,536310.5,0,0,2228.4985 -6411,7914,14451,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,5,8.1105671,8.5747585,0,3,0,0,0,-9,0,-916.78973,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,47,40,15,1,0,-9,0,9.6209269,9.6209269,0,0,0,0,0,0,0,0,0,0,0,3.4961233,0,0,0,46.34,61.240002,-9,-9,3,1,1,0,0,10,4,1,631,128435.91,0,0,1198.0415 -6412,7915,14452,-9,-9,-9,1,1,1,71,2,0,0,0,1,-9,4,3,0,0,2,4.2734261,7.6590633,7.3876815,3,0,0,0,-9,0,-901.55359,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,25,50,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4265051,0,0,60.529999,40.110001,-9,-9,5,1,1,0,0,8,3,1,4754,563393.38,0,0,1099.0391 -6413,7916,14453,14454,-9,-9,1,1,1,40,1,0,0,0,2,-9,1,1,0,0,3,7.9773097,7.8706913,0,1,0,-9,3,0,10,66.393715,0,0,0,30,1,4,1,-9,-9,2019,1,2,10,0,35,40,15,1,0,1,0,6.2193761,6.2193761,0,0,0,0,0,0,0,0,0,0,0,6.2218871,0,0,0,48.77,49.110001,44.740002,45.52,6,1,1,0,0,9,5,1,899.5,127907.47,0,0,3146.3928 -6413,7916,14454,14453,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.4363947,8.7207851,0,1,0,-9,3,0,-10,75.851166,0,0,1,40,2,3,1,-9,-9,2019,1,1,16,4,42,50,15,1,1,1,0,15.51905,15.51905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.740002,45.52,48.77,49.110001,6,1,1,0,0,9,5,1,899.5,127907.47,0,0,3146.3928 -6414,7917,14455,14456,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,0,4,0,7.7319245,7.5017939,1,0,-9,6,0,2,-38.998753,0,0,0,74,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6015916,7.5911374,0,0,57.16,56.150002,51.080002,49.240002,6,1,1,0,0,12,3,1,747.5,212131.2,0,0,2087.3027 -6414,7917,14456,14455,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-2,-52.497414,0,0,0,76,1,4,3,1,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.080002,49.240002,57.16,56.150002,6,1,1,0,0,12,3,1,747.5,212131.2,0,0,2087.3027 -6415,7918,14457,14458,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,9,0,0,0,0,74,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,46.110001,31.639999,6,2,3,0,0,4,1,1,1207.5,-25365.676,0,0,1775.0874 -6415,7918,14458,14457,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,51,0,0,0,0,0,0,83,3,3,3,3,3,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.25511,1,46.110001,31.639999,55,45,5,2,3,0,0,4,1,1,1207.5,-25365.676,0,0,1775.0874 -6416,7919,14459,14460,-9,-9,2,1,0,52,1,0,1,0,2,-9,1,1,0,0,2,7.3797441,7.2052393,0,2,0,-9,31,0,0,-123.36268,0,0,0,61,1,3,3,2,2,2019,2,1,8,0,22,22,15,1,0,4,0,6.6405039,6.6405039,0,0,0,0,0,0,0,2,1,1,0,0,0,8.098403,3,55.23,32.919998,55.959999,49.93,6,1,1,0,0,13,3,1,643,1473382.5,0,0,2806.3477 -6416,7919,14460,14459,-9,-9,1,1,1,61,1,0,1,0,1,-9,4,3,0,0,3,0,7.8930378,7.7774849,2,0,-9,31,0,9,12.354604,0,0,0,52,2,2,1,2,2,2019,3,2,5,0,0,45,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.636497,7.7082186,0,0,55.959999,49.93,55.23,32.919998,7,1,1,0,0,13,3,1,643,1473382.5,0,0,2806.3477 -6416,7920,14461,-9,14462,-9,6,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-983.10132,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,2,1,908,-32214.055,0,0,951.45776 -6416,7920,14462,-9,14459,14460,3,1,0,26,2,0,1,0,2,1,6,3,0,0,2,0,6.2755404,6.5411887,3,0,0,0,-9,0,-970.01923,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0397081,0,0,0,40.880001,41.16,-9,-9,6,1,1,0,0,13,2,1,908,-32214.055,0,0,951.45776 -6417,7921,14463,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,0,3,0,7.0188971,6.8109174,3,0,0,0,-9,0,-1109.7827,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3347683,6.9089289,0,0,57.619999,35.490002,-9,-9,6,1,1,0,0,9,2,1,382,-194326.97,0,0,1110.1383 -6418,7922,14464,14465,-9,-9,2,1,1,74,1,0,0,0,3,-9,2,1,0,0,2,7.3316698,7.7921133,6.8905048,1,0,-9,10,0,18,-123.55248,0,0,0,56,2,3,1,3,3,2019,1,1,12,0,25,23,15,1,0,1,0,7.9058151,7.9058151,0,0,0,0,0,0,0,0,1,1,0,7.0165687,6.6541944,0,0,40.490002,39.720001,56.939999,49.529999,5,1,1,0,0,7,4,0,530.5,-76201.188,0,0,2749.2898 -6418,7922,14465,14464,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.829998,8.1610823,0,1,0,-9,10,0,-18,85.443275,0,0,0,74,3,2,1,3,3,2019,1,2,7,0,37,38,15,1,0,1,0,9.7139187,9.7139187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,40.490002,39.720001,6,1,1,0,0,7,4,0,530.5,-76201.188,0,0,2749.2898 -6419,7923,14466,14467,-9,-9,1,1,1,43,1,0,0,0,1,-9,3,3,0,0,5,0,0,0,1,0,-9,18,0,6,-50.144104,0,0,0,37,1,4,1,2,1,2019,3,2,12,0,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.070878,0,0,0,47.669998,58.09,49.330002,51.630001,6,2,3,1,0,8,5,1,507.5,797420.63,0,0,1783.6746 -6419,7923,14467,14466,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,0,4,8.9962597,9.0752535,0,1,0,-9,18,0,-6,-28.697672,0,0,1,43,1,5,3,2,2,2019,2,1,10,0,38,0,15,1,0,3,0,22.953032,22.953032,0,0,0,0,0,0,0,0,0,0,0,2.7142873,0,0,0,49.330002,51.630001,47.669998,58.09,6,2,3,0,0,8,5,1,507.5,797420.63,0,0,1783.6746 -6420,7924,14468,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,2,1,0,0,3,7.5252018,7.4930601,0,3,0,0,0,-9,0,-1058.4623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,30,15,1,0,-9,0,7.7586536,7.7586536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.25,34.66,-9,-9,6,1,1,0,0,13,3,1,318,682939.63,0,0,232.29852 -6421,7925,14469,14470,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,59,0,-4,42.056595,0,0,0,83,2,3,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0053124,0,0,0,48.630001,42.450001,60.450001,43.75,6,1,1,0,0,6,3,1,686,388354.31,0,0,3076.8218 -6421,7925,14470,14469,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,7.5425191,7.7568521,1,0,-9,59,0,4,70.391541,0,0,0,79,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.7831926,7.8025308,0,0,60.450001,43.75,48.630001,42.450001,2,1,1,0,0,6,3,1,686,388354.31,0,0,3076.8218 -6422,7926,14471,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-993.09143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.6340351,3,35.459999,42.220001,-9,-9,6,1,1,0,1,13,1,0,644,84821.906,0,0,1173.6509 -6422,7927,14472,-9,14471,-9,2,1,1,31,2,0,0,0,2,-9,2,1,0,0,4,7.5228896,7.6469531,0,3,0,0,0,-9,0,-1013.7604,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,35,37,15,1,0,-9,1,6.6010027,6.6010027,0,0,0,0,0,0,0,7,1,1,0,0,0,15.01368,3,39.560001,61.240002,-9,-9,5,1,1,0,0,13,3,0,212,1990.3136,0,0,899.35242 -6422,7928,14473,-9,14471,-9,3,1,1,28,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-825.43439,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.16,39.490002,-9,-9,4,1,1,0,0,13,1,0,1372,-127831.47,0,0,1113.7881 -6423,7929,14474,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,1,3,7.1089439,7.0162544,0,3,0,0,0,-9,0,-1037.4919,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,40,15,1,0,-9,0,3.0686028,3.0686028,0,0,0,0,0,0,0,42,1,1,0,0,0,40.797512,3,45.75,53.150002,-9,-9,6,1,1,0,0,2,2,0,194,140889.64,0,0,1702.2074 -6424,7930,14475,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,2,0,6.873045,6.7444706,3,0,-9,0,-9,0,-1127.2698,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9846349,7.3250561,0,0,64.389999,28.77,-9,-9,6,1,1,0,0,4,2,0,404,314519,0,0,134.3709 -6425,7931,14476,14477,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.1210799,7.0054073,1,0,-9,10,0,14,26.900822,0,0,0,56,3,3,1,2,2,2019,3,2,15,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.053762,7.1278467,7.9290891,3,51.5,50.450001,50.91,46.91,6,1,1,0,0,10,4,0,961,10672.566,0,0,2261.8193 -6425,7931,14477,14476,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,3,8.3663301,8.0693884,0,1,0,-9,10,0,-14,-48.316429,0,0,0,70,2,4,3,2,1,2019,2,1,9,0,37,37,15,1,0,4,0,11.14863,11.14863,0,0,0,0,0,0,0,2,1,1,0,4.6007552,0,0,3,50.91,46.91,51.5,50.450001,7,1,1,0,0,10,4,0,961,10672.566,0,0,2261.8193 -6426,7932,14478,-9,-9,-9,1,1,0,41,2,0,1,0,3,-9,2,1,0,0,3,7.2137642,7.2302685,3.0956855,4,0,0,0,-9,0,-893.19409,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,21,26,15,1,0,-9,0,7.2718334,7.2718334,0,0,0,0,0,0,0,14.5,1,1,0,3.5483344,0,3.7884901,3,53.779999,56.439999,-9,-9,5,1,1,0,0,6,2,0,404,223063.16,0,0,481.56882 -6426,7932,14479,-9,14478,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-879.20215,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,25,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,48.43,58.009998,-9,-9,7,1,1,0,0,6,2,0,404,223063.16,0,0,481.56882 -6427,7933,14480,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-940.53705,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,1,1,231,-133526.13,0,0,329.87585 -6428,7934,14481,14482,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,8.6882868,8.9579878,0,1,0,-9,29,0,-1,-44.545254,0,0,0,50,1,4,1,2,2,2019,1,2,7,0,49,0,15,1,0,1,0,14.838733,14.838733,0,0,0,0,0,0,0,0,0,0,0,2.5846343,0,0,0,57.16,56.150002,43.43,54.299999,6,1,1,0,0,5,5,1,3394.5,272538.78,0,0,4088.6719 -6428,7934,14482,14481,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.7895947,8.8889208,0,1,0,-9,8,0,1,37.375187,0,0,0,49,1,4,1,-9,-9,2019,1,1,12,1,53,60,15,1,0,1,0,13.560395,13.560395,0,0,0,0,0,0,0,0,0,0,0,1.3788284,0,0,0,43.43,54.299999,57.16,56.150002,6,1,1,0,0,5,5,1,3394.5,272538.78,0,0,4088.6719 -6428,7935,14483,-9,14482,14481,3,1,0,21,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1042.8622,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2097763,0,0,0,46.400002,59.869999,-9,-9,6,1,1,0,0,5,1,1,624,30342.707,0,0,-747.80463 -6428,7936,14484,-9,14482,14481,4,1,0,19,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1066.4705,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8182707,0,0,0,41.84,60.5,-9,-9,6,1,1,1,0,5,1,1,335,-193741.25,0,0,528.69629 -6429,7937,14485,14486,-9,-9,2,1,1,34,1,0,0,0,1,-9,1,1,0,0,3,7.6167445,7.7652674,0,1,0,-9,10,0,-2,31.151419,0,0,0,36,1,4,1,-9,-9,2019,1,1,11,2,30,24,15,1,0,1,0,7.4007964,7.4007964,0,0,0,0,0,0,0,0,0,0,0,2.1199284,0,0,0,30.4,57.52,43.759998,58.349998,5,1,1,0,0,5,4,1,703,153401.55,0,0,1526.7599 -6429,7937,14486,14485,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,7.641346,7.5799265,0,1,0,-9,10,0,2,-96.116859,0,0,1,34,1,3,1,1,2,2019,1,2,10,0,38,38,15,1,0,1,0,5.6813455,5.6813455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.759998,58.349998,30.4,57.52,3,1,1,0,0,5,4,1,703,153401.55,0,0,1526.7599 -6430,7938,14487,14488,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,37,0,-4,-163.92316,0,0,0,66,2,4,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.790001,55.860001,6,4,2,0,0,8,2,1,1259,1442996.9,0,0,831.1604 -6430,7938,14488,14487,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,4,7.5395226,7.5785208,0,1,0,-9,8,0,4,187.9478,0,0,0,62,3,3,3,-9,-9,2019,2,2,7,0,20,37,15,1,0,4,0,11.615206,11.615206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.330002,53.459999,7,1,1,0,0,8,2,1,1259,1442996.9,0,0,831.1604 -6430,7939,14489,-9,14487,14488,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,7.966187,7.8740273,0,3,0,-9,0,-9,0,-1018.8235,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,4,0,48,0,15,1,0,-9,1,5.2032681,5.2032681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,8,3,1,1242,-113241.08,0,0,1372.0131 -6430,7940,14490,-9,14487,14488,4,1,0,24,2,0,0,0,1,-9,3,3,0,0,4,7.8650622,7.9559617,0,3,0,-9,0,-9,0,-995.84595,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,55,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.709999,62.41,-9,-9,5,2,3,1,0,8,3,1,530,-222870.11,0,0,661.04932 -6431,7941,14491,14492,-9,-9,2,1,1,53,1,0,0,0,2,-9,8,3,1,1,1,0,7.2800331,7.1782613,1,0,-9,14,0,2,-135.06076,0,0,0,51,3,5,3,3,3,2019,4,1,32,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3112507,5.6132245,0,0,27.889999,18.610001,27.18,67.57,1,1,1,0,0,4,2,1,275.5,822337.19,0,0,3324.2974 -6431,7941,14492,14491,-9,-9,1,1,0,51,1,0,0,0,3,-9,6,3,0,1,5,0,0,0,1,0,-9,14,0,-2,-37.429329,0,0,0,53,2,1,3,3,3,2019,4,2,27,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.061661,1,27.18,67.57,27.889999,18.610001,3,1,1,0,1,4,2,1,275.5,822337.19,0,0,3324.2974 -6432,7942,14493,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,0,4,8.336009,8.2839575,0,1,0,1,1,-9,15,40.542076,0,0,0,-9,-9,-9,-9,2,3,2019,-9,3,6,0,60,52,15,1,0,-9,0,7.1779966,7.1779966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.509998,52.369999,51,56,6,1,1,0,0,7,3,0,318,804855.25,0,0,1275.2695 -6433,7943,14494,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,97,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1110.6482,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.174587,3,48.98,57.220001,-9,-9,3,1,1,0,0,2,1,0,303,0,0,0,1269.6935 -6434,7944,14495,-9,14496,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.5637,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,1,714,99954.563,0,0,1265.2915 -6434,7944,14496,-9,-9,-9,1,1,0,44,3,0,3,0,1,-9,2,1,0,0,5,6.9737282,7.7187304,7.291338,4,0,-9,0,1,0,-966.56006,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,5,5,15,1,1,-9,0,21.204845,21.204845,0,0,0,0,0,0,0,0,1,1,0,7.2875357,0,0,0,38.240002,63.73,-9,-9,4,1,1,0,0,9,2,1,714,99954.563,0,0,1265.2915 -6435,7945,14497,-9,-9,-9,1,1,0,43,3,0,0,0,1,-9,2,1,0,0,4,7.6431088,7.6362476,0,3,0,-9,0,-9,0,-1024.6644,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,37,0,15,1,0,-9,0,7.5976896,7.5976896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,2,1,1,0,0,9,3,1,62,-83289.813,0,0,867.20563 -6436,7946,14498,14499,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,8.4851847,8.448719,0,1,0,-9,34,0,2,-5.0793996,0,0,0,57,2,3,1,3,3,2019,1,1,9,0,40,40,15,1,0,1,0,12.101764,12.101764,0,0,0,0,0,0,0,2,0,0,0,1.5133878,0,8.1587181,3,49.630001,54.220001,65.150002,29.299999,6,1,1,0,0,9,4,1,549,483058.94,0,0,2358.6787 -6436,7946,14499,14498,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.4916782,7.2489676,0,1,0,-9,34,0,-2,-85.73777,0,0,0,59,2,3,1,2,1,2019,1,2,8,0,23,23,15,1,0,1,0,6.2124724,6.2124724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.150002,29.299999,49.630001,54.220001,6,1,1,0,0,9,4,1,549,483058.94,0,0,2358.6787 -6436,7947,14500,-9,14499,14498,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,7.4226394,7.7343502,0,3,0,0,0,-9,0,-1051.8245,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,39,0,15,1,0,-9,1,4.8160038,4.8160038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,9,3,1,516,-37023.035,0,0,613.80939 -6437,7948,14501,-9,14505,14504,3,1,0,16,2,0,5,1,2,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-916.54999,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.310001,58.290001,-9,-9,7,2,3,0,0,6,1,1,1263.2,-5301.9253,0,0,3973.1211 -6437,7948,14502,-9,14505,14504,7,1,1,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-987.56989,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,1,1,1263.2,-5301.9253,0,0,3973.1211 -6437,7948,14503,-9,14505,14504,6,1,1,7,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1024.3353,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,1,1,1263.2,-5301.9253,0,0,3973.1211 -6437,7948,14504,14505,-9,-9,1,1,1,39,1,0,5,0,3,-9,8,3,1,1,4,0,0,0,2,0,-9,15,-9,1,0,-9,0,0,38,2,4,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,6,2,3,0,0,6,1,1,1263.2,-5301.9253,0,0,3973.1211 -6437,7948,14505,14504,-9,-9,2,1,0,38,1,0,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,15,-9,-1,0,-9,0,1,39,3,4,3,3,3,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49,56,51,56,5,2,3,0,0,6,1,1,1263.2,-5301.9253,0,0,3973.1211 -6438,7949,14506,14507,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,1,7.1606712,7.0736923,0,1,0,-9,10,0,-1,-10.462597,0,0,0,60,2,2,1,3,3,2019,1,1,36,12,16,20,15,1,1,1,0,10.343468,10.343468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.85,26.950001,50.439999,43.310001,2,1,1,0,1,10,4,0,1275.5,124480.32,0,0,1754.885 -6438,7949,14507,14506,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,8.0411663,8.3305798,0,1,0,-9,10,0,1,4.7390704,0,0,0,59,2,1,1,-9,-9,2019,1,2,15,3,33,38,15,1,0,1,0,13.623226,13.623226,0,0,0,0,0,0,0,0,0,0,0,2.2668078,0,0,0,50.439999,43.310001,26.85,26.950001,4,1,1,0,0,10,4,0,1275.5,124480.32,0,0,1754.885 -6439,7950,14508,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,3,7.543047,8.2568455,0,3,0,0,0,-9,0,-1129.1637,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,38,30,15,1,0,-9,0,7.7209945,7.7209945,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,19.530001,55.799999,-9,-9,3,1,1,0,0,7,3,0,457,53654.566,0,0,1.2166891 -6440,7951,14509,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,0,3,6.5399418,7.1076012,5.108077,4,0,0,0,-9,0,-1079.09,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,16,15,1,0,-9,0,6.2601929,6.2601929,0,0,0,0,0,0,0,0,1,1,0,6.2889366,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,7,2,1,635,57134.25,0,0,1134.0764 -6441,7952,14510,14511,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,3,-157.9487,0,0,0,76,3,3,3,3,-9,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,50.02,43.02,5,1,1,0,0,12,2,1,417.5,293028.94,0,0,1727.7639 -6441,7952,14511,14510,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,6.0564375,5.7786241,1,0,-9,9,0,-3,6.3301177,0,0,0,79,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3360543,5.7097616,0,0,50.02,43.02,52,46,6,1,1,0,0,12,2,1,417.5,293028.94,0,0,1727.7639 -6442,7953,14512,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,2,0,6.5669727,6.6422505,3,0,0,0,-9,0,-954.62939,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5621138,0,0,55.950001,39.400002,-9,-9,6,1,1,0,0,11,2,0,524,238139.81,0,0,-209.68262 -6443,7954,14513,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,5.9510579,6.0686593,3,0,0,0,-9,0,-1022.9135,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9946451,6.1824656,0,0,40.48,40.650002,-9,-9,3,1,1,0,0,4,2,1,466,-27906.988,0,0,2011.8121 -6444,7955,14514,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,7.4923816,7.5810313,3,0,0,0,-9,0,-882.76111,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.24053,7.3418145,0,0,62.119999,37.540001,-9,-9,6,1,1,0,0,5,3,1,237,143669.67,0,0,2070.6492 -6445,7956,14515,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,2,7.9838424,7.8814473,5.7032094,3,0,0,0,-9,0,-994.42938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,0,10.048411,10.048411,0,0,0,0,0,0,0,0,1,0,1,5.7888641,5.9026651,0,0,49.740002,36.889999,-9,-9,3,1,1,0,0,1,4,1,606,151327.91,0,0,1144.9781 -6445,7957,14516,-9,14515,-9,2,1,0,26,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-945.20868,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.810001,59.91,-9,-9,3,1,1,1,0,1,1,1,302,27052.443,0,0,-488.10196 -6445,7958,14517,-9,14515,-9,3,1,1,30,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1025.3496,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.809999,65.690002,-9,-9,2,1,1,1,0,1,1,1,485,123395.31,0,0,-34.543171 -6446,7959,14518,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,4,3,0,0,3,0,8.3256693,7.9847751,3,0,0,0,-9,0,-957.25452,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1776485,0,0,59.220001,34.689999,-9,-9,6,1,1,0,0,10,4,1,337,538389.5,0,0,1756.322 -6447,7960,14519,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,5,0,6.581686,6.8327632,3,0,0,0,-9,0,-960.5788,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9956717,6.651916,0,0,41.07,60.93,-9,-9,1,1,1,0,0,1,2,1,303,325910.38,0,0,939.71417 -6448,7961,14520,-9,-9,-9,2,1,1,18,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-935.0451,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,7,1,1,0,0,11,1,0,385,59943.031,0,0,0 -6448,7962,14521,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-789.82312,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.709999,30.66,-9,-9,4,1,1,1,1,11,1,0,179,-129760.98,0,0,507.35822 -6449,7963,14522,14523,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,7.1266184,7.0610876,0,1,0,-9,10,0,-2,-16.453487,0,0,0,58,1,2,3,1,1,2019,2,1,7,0,16,16,15,1,0,4,0,7.5908833,7.5908833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.720001,55.84,42.490002,42.970001,2,1,1,0,0,10,3,1,708,1274991.4,0,0,1763.8735 -6449,7963,14523,14522,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,0,2,0,7.5744004,7.5993919,1,0,-9,10,0,2,-86.606674,0,0,0,56,1,4,1,2,2,2019,3,2,19,6,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2915688,0,0,42.490002,42.970001,45.720001,55.84,3,1,1,0,1,10,3,1,708,1274991.4,0,0,1763.8735 -6449,7964,14524,-9,14522,14523,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,7.9969869,7.9605579,0,3,0,0,0,-9,0,-1115.251,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,38,40,15,1,0,-9,1,8.8341646,8.8341646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.939999,58.009998,-9,-9,6,1,1,0,0,10,4,1,944,27430.92,0,0,1938.7903 -6450,7965,14525,-9,14526,14527,3,1,1,17,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,1,0,-9,0,-9,0,-888.59229,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,8,1,0,842.33331,315593.59,0,0,3083.8767 -6450,7965,14526,14527,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-5,-136.08154,0,0,0,76,3,3,3,3,3,2019,4,1,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,44.700001,57.330002,53.459999,2,1,1,0,0,8,1,0,842.33331,315593.59,0,0,3083.8767 -6450,7965,14527,14526,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,4.8642454,4.5497737,1,0,-9,6,0,5,43.923763,0,0,0,71,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6786842,4.8727016,0,0,57.330002,53.459999,37.52,44.700001,6,1,1,0,0,8,1,0,842.33331,315593.59,0,0,3083.8767 -6451,7966,14528,14529,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,5.9425783,5.6232858,1,0,-9,8,0,7,74.780365,0,0,0,60,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3293457,5.8458548,0,0,55.959999,49.93,56.049999,45.759998,6,1,1,0,0,6,3,1,701,150067.78,0,0,5871.041 -6451,7966,14529,14528,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,0,3,8.0960093,8.1098566,0,1,0,-9,8,0,-7,-3.2473876,0,0,0,67,2,3,3,3,2,2019,2,2,9,0,70,36,15,1,0,4,0,4.960165,4.960165,0,0,0,0,0,0,0,56,1,1,0,0,0,131.28212,3,56.049999,45.759998,55.959999,49.93,6,1,1,0,0,6,3,1,701,150067.78,0,0,5871.041 -6452,7967,14530,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,3,8.1090431,8.0814276,0,3,0,0,0,-9,0,-1103.5891,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,22,8,60,60,15,1,1,-9,0,8.4213181,8.4213181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.240002,47.860001,-9,-9,3,1,1,0,1,12,4,1,2986,519963.44,0,0,2636.9739 -6452,7968,14531,-9,14530,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.1817727,7.2802215,0,3,0,0,0,-9,0,-1098.9927,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,15,12,15,1,0,-9,1,12.136189,12.136189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.939999,53.18,-9,-9,5,1,1,0,0,12,3,1,492,-150683.06,0,0,1395.7864 -6453,7969,14532,-9,14534,14535,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.6874,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,1251.5,74674.57,0,0,2718.3179 -6453,7969,14533,-9,14534,14535,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.7372,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,1251.5,74674.57,0,0,2718.3179 -6453,7969,14534,14535,-9,-9,1,1,0,31,1,0,2,0,1,-9,2,1,0,0,5,7.105092,7.0863366,0,2,0,-9,7,0,-3,43.606525,0,0,1,34,2,4,1,2,2,2019,1,4,8,0,24,27,15,1,0,1,0,6.9765148,6.9765148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,50,57,7,1,1,0,0,4,4,1,1251.5,74674.57,0,0,2718.3179 -6453,7969,14535,14534,-9,-9,4,1,1,34,1,0,2,0,2,-9,2,1,0,0,4,8.61308,8.4025574,0,2,0,-9,7,0,3,104.81676,0,0,0,31,1,5,1,-9,-9,2019,1,1,10,1,45,40,15,1,0,1,0,10.948501,10.948501,0,0,0,0,0,0,0,0,1,1,0,6.9592261,0,0,0,50,57,57.060001,57.759998,5,1,1,0,0,4,4,1,1251.5,74674.57,0,0,2718.3179 -6454,7970,14536,-9,14538,-9,3,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.9897,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,1,0,960.79999,-9861.2686,0,0,2662.3469 -6454,7970,14537,-9,14538,-9,2,1,0,16,2,1,4,1,2,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-914.14386,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,24,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.91,45.380001,-9,-9,2,1,1,0,0,8,1,0,960.79999,-9861.2686,0,0,2662.3469 -6454,7970,14538,-9,-9,-9,1,1,0,36,3,1,4,0,1,-9,6,3,0,0,4,2.9612362,3.1826916,0,4,0,0,0,-9,0,-999.24799,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,55.57,-9,-9,4,1,1,0,0,8,1,0,960.79999,-9861.2686,0,0,2662.3469 -6454,7970,14539,-9,14538,-9,4,1,1,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-949.70477,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,1,0,960.79999,-9861.2686,0,0,2662.3469 -6454,7970,14540,-9,14538,-9,5,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-947.30646,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,1,0,960.79999,-9861.2686,0,0,2662.3469 -6455,7971,14541,14542,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,34,0,-15,0,0,0,0,78,2,2,3,-9,-9,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.8017516,0,10.460886,1,33.560001,23.940001,51.080002,26.889999,4,3,4,0,0,6,1,1,1995.5,113849.4,0,0,486.01834 -6455,7971,14542,14541,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,34,0,15,0,0,0,0,63,2,2,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,43.600651,0,0,0,0,2,0,0,0,0,0,5.3493862,1,51.080002,26.889999,33.560001,23.940001,5,3,4,0,0,6,1,1,1995.5,113849.4,0,0,486.01834 -6456,7972,14543,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,4,9.2941437,9.2731495,0,3,0,0,0,-9,0,-992.59894,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,48,48,15,1,0,-9,0,26.572483,26.572483,0,0,0,0,0,0,0,7,0,0,0,7.0561204,0,10.031577,3,44.259998,59.43,-9,-9,5,1,1,0,0,9,5,1,645,500292.84,0,0,3850.8965 -6457,7973,14544,14545,-9,-9,2,1,0,67,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,9,0,-6,-15.720855,0,0,0,73,3,2,3,3,3,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.700001,43.009998,61.52,45.110001,7,1,1,0,0,13,2,1,692,515386.28,0,0,3342.2212 -6457,7973,14545,14544,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,6.9859915,6.9563632,1,0,-9,9,0,6,61.916111,0,0,0,67,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8908105,0,0,61.52,45.110001,59.700001,43.009998,6,1,1,0,0,13,2,1,692,515386.28,0,0,3342.2212 -6457,7974,14546,-9,14544,14545,3,1,1,39,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-915.82587,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,13,1,1,92,106990.47,0,0,699.96771 -6458,7975,14547,-9,14549,14548,5,1,0,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-914.38013,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.29473025,3,50.810001,51.080002,-9,-9,6,3,4,0,0,8,5,1,542,2152300.3,0,0,6974.856 -6458,7975,14548,14549,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,9.093152,9.0966349,0,2,0,-9,30,0,2,-162.28793,0,0,0,48,1,4,1,3,3,2019,1,2,16,4,36,36,15,1,1,1,0,20.791281,20.791281,0,0,0,0,0,0,0,2,1,1,0,8.794282,0,0,3,39.009998,45.5,57.16,56.150002,3,3,4,0,0,8,5,1,542,2152300.3,0,0,6974.856 -6458,7975,14549,14548,14552,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,4,9.2466717,9.3039761,0,2,0,-9,7,0,-2,-62.419308,0,0,0,50,2,3,1,2,-9,2019,1,1,8,0,55,65,15,1,0,1,0,22.830803,22.830803,0,0,0,0,0,0,0,7,1,1,0,0,0,3.1911523,3,57.16,56.150002,39.009998,45.5,5,3,4,0,0,8,5,1,542,2152300.3,0,0,6974.856 -6458,7976,14550,-9,14549,14548,3,1,0,23,2,0,1,0,1,-9,2,1,0,0,4,7.0211148,7.018712,0,3,0,0,0,-9,0,-907.00427,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,32,0,15,1,0,-9,1,4.4037862,4.4037862,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.009686,3,54.380001,51.939999,-9,-9,6,3,4,0,0,8,2,1,674,-56904.922,0,0,447.89447 -6458,7977,14551,-9,14549,14548,4,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1015.1601,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.419998,62.330002,-9,-9,6,3,4,0,0,8,1,1,1417,0,0,0,0 -6458,7978,14552,-9,-9,-9,6,1,0,76,3,0,1,0,2,-9,4,3,0,0,3,0,8.3626385,8.3825588,4,0,0,0,-9,0,-1049.1603,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.838918,8.2113132,0,0,52,46,-9,-9,6,3,4,0,0,8,3,1,157,539478.81,0,0,1001.0565 -6459,7979,14553,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1074.8901,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.199641,0,0,0,63.549999,39.700001,-9,-9,4,1,1,0,0,5,1,1,265,-96457.047,0,0,812.86438 -6460,7980,14554,14555,-9,-9,2,1,0,45,1,0,0,0,2,-9,1,1,0,0,4,5.121695,4.7254977,0,1,0,-9,8,0,-1,-57.400745,0,0,0,46,2,2,3,2,2,2019,2,1,10,1,40,10,15,1,0,3,0,.43904206,.43904206,0,0,0,0,0,0,0,2,1,1,0,0,0,8.2557001,1,60.119999,54.799999,42.349998,30.780001,6,1,1,0,0,12,3,1,1201.5,92113.883,0,0,3264.2773 -6460,7980,14555,14554,-9,-9,1,1,1,46,1,0,0,0,2,-9,8,3,1,1,2,0,7.65692,7.8210125,1,0,-9,8,0,1,110.47587,0,0,0,45,2,4,1,2,2,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9025173,10.561084,3,42.349998,30.780001,60.119999,54.799999,6,1,1,0,0,12,3,1,1201.5,92113.883,0,0,3264.2773 -6460,7981,14556,-9,14554,14555,3,1,0,19,2,0,0,1,2,0,7,2,0,0,3,6.7727346,6.7854714,0,3,0,0,0,-9,0,-994.50897,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,24,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.6668468,3,45.639999,42.779999,-9,-9,1,1,1,0,0,12,2,1,274,-86454.883,0,0,479.02176 -6461,7982,14557,-9,-9,-9,1,1,1,53,3,0,1,0,1,-9,2,1,0,0,5,9.3535261,9.6837759,0,4,0,0,0,-9,0,-1016.7583,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,48,44,15,1,0,-9,0,29.0403,29.0403,0,0,0,0,0,0,0,0,1,1,0,3.1346197,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,5,5,1,161,1790577.6,0,0,3446.9248 -6462,7983,14558,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.9891047,7.8524728,0,3,0,0,0,-9,0,-1158.103,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,40,40,15,1,0,-9,0,8.4083099,8.4083099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,2,1,1,0,0,5,4,0,1324,-135848.89,0,0,2140.0974 -6463,7984,14559,14560,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,5,8.0285149,8.1948605,0,1,0,-9,9,0,3,56.596905,0,0,0,51,1,4,1,-9,-9,2019,1,1,12,0,47,44,15,1,0,1,0,8.9008198,8.9008198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,60.029999,48.040001,2,1,1,0,0,9,5,1,364,1036397.7,0,0,3567.3633 -6463,7984,14560,14559,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.9126272,8.6596975,0,1,0,-9,34,0,-3,10.641401,0,0,0,54,2,5,1,2,3,2019,1,2,11,0,40,38,15,1,0,1,0,22.67905,22.67905,0,0,0,0,0,0,0,2,0,0,0,0,0,4.934474,3,60.029999,48.040001,55.09,55.869999,5,1,1,0,0,9,5,1,364,1036397.7,0,0,3567.3633 -6464,7985,14561,-9,-9,-9,1,1,0,54,3,1,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1020.9154,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.169998,15.39,-9,-9,2,1,1,0,0,2,1,0,787,-19304.004,0,0,1271.0333 -6464,7986,14562,-9,14561,-9,2,1,0,19,2,1,1,0,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1107.8674,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8703079,3,25.16,59.669998,-9,-9,4,1,1,0,0,2,1,0,501,63834.469,0,0,1079.3811 -6464,7986,14563,-9,14562,-9,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1012.757,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,501,63834.469,0,0,1079.3811 -6465,7987,14564,14565,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.1924448,7.4104218,1,0,-9,49,0,-3,81.219025,0,0,0,72,1,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76544684,7.2328014,0,0,54.200001,57.490002,63.209999,41.029999,7,4,5,0,0,8,3,1,571.5,1858660.3,0,0,1815.7156 -6465,7987,14565,14564,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,7.3021355,7.1975317,1,0,-9,49,0,3,-35.557747,0,0,0,69,1,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1756363,7.5024161,0,0,63.209999,41.029999,54.200001,57.490002,7,4,5,0,0,8,3,1,571.5,1858660.3,0,0,1815.7156 -6466,7988,14566,-9,14569,14567,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.01434,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,5,1,616.20001,2087892.1,0,0,8237.4873 -6466,7988,14567,14569,-9,-9,1,1,1,47,1,0,3,0,1,-9,1,1,0,0,3,9.5810442,9.7422695,0,2,0,-9,13,0,9,-55.191322,0,0,0,38,1,4,1,3,2,2019,1,2,6,0,60,40,15,1,0,1,0,35.251163,35.251163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,49,56,6,2,3,0,0,5,5,1,616.20001,2087892.1,0,0,8237.4873 -6466,7988,14568,-9,14569,14567,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1068.1222,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,5,5,1,616.20001,2087892.1,0,0,8237.4873 -6466,7988,14569,14567,-9,-9,2,1,0,38,1,0,3,0,1,-9,2,1,0,0,4,8.2754936,8.3783731,0,2,0,-9,13,0,0,-13.711424,0,0,1,47,1,3,1,2,2,2019,1,1,4,0,42,42,15,1,0,1,0,13.698724,13.698724,0,0,0,0,0,0,0,0,1,1,0,.50197881,0,0,0,49,56,49,50,7,2,3,0,0,5,5,1,616.20001,2087892.1,0,0,8237.4873 -6466,7988,14570,-9,14569,14567,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1011.5021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,5,5,1,616.20001,2087892.1,0,0,8237.4873 -6467,7989,14571,-9,14573,14572,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1091.9854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,9,4,1,676,656424.94,0,0,2563.2644 -6467,7989,14572,14573,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,0,5,8.3410454,8.2048073,0,2,0,-9,22,0,2,-15.567023,0,0,0,44,2,5,1,2,2,2019,1,2,7,0,39,0,15,1,0,1,0,13.244488,13.244488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,49.169998,58.560001,6,1,1,0,0,9,4,1,676,656424.94,0,0,2563.2644 -6467,7989,14573,14572,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,5,7.7623138,7.80194,0,2,0,-9,22,0,-2,52.756264,0,0,1,46,2,5,1,2,3,2019,1,1,12,3,42,37,15,1,0,1,0,6.2660003,6.2660003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.169998,58.560001,59.43,58.049999,6,1,1,0,0,9,4,1,676,656424.94,0,0,2563.2644 -6467,7989,14574,-9,14573,14572,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.4791,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,676,656424.94,0,0,2563.2644 -6468,7990,14575,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,0,3,7.7564597,7.7102199,6.3031225,3,0,0,0,-9,0,-879.65741,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,21,30,15,1,1,-9,0,11.520978,11.520978,0,0,0,0,0,0,0,0,1,1,0,.86791021,5.7600555,0,0,43.209999,47.68,-9,-9,4,1,1,0,0,2,4,1,449,294286.94,0,0,1198.9321 -6469,7991,14576,14577,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,0,4,9.4189186,9.5062284,4.5983691,1,0,-9,4,0,5,-60.81171,0,0,0,44,2,2,1,2,2,2019,1,2,10,1,48,40,15,1,0,1,0,27.458263,27.458263,0,0,0,0,0,0,0,7,1,1,0,7.314003,5.2543697,9.6885424,3,63.389999,39.560001,50.52,25.59,6,1,1,0,0,5,5,1,728,731900.63,0,0,5996.5664 -6469,7991,14577,14576,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,2,7.3282356,7.3491483,0,1,0,-9,4,0,-5,22.124556,0,0,1,49,2,4,1,-9,-9,2019,1,1,12,4,24,0,15,1,1,1,0,6.6711483,6.6711483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.52,25.59,63.389999,39.560001,6,1,1,0,0,5,5,1,728,731900.63,0,0,5996.5664 -6469,7991,14578,-9,14577,14576,3,1,1,17,2,0,0,1,3,0,7,2,0,0,4,6.5317969,6.5876193,0,1,0,0,0,-9,0,-1034.8204,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,49.07,-9,-9,6,1,1,0,0,5,5,1,728,731900.63,0,0,5996.5664 -6470,7992,14579,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,1,0,5.1146083,4.9668927,3,0,0,0,-9,0,-1050.0366,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.0892673,122.06007,3,35.080002,22.049999,-9,-9,4,1,1,0,1,9,2,0,4401,-3961.7654,0,0,1044.7828 -6471,7993,14580,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1000.9347,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,8.0947161,0,0,0,0,1,1,0,0,0,0,0,43,15.95,-9,-9,6,1,1,0,0,12,1,1,544,107271.38,0,0,2821.7822 -6472,7994,14581,-9,14582,14583,5,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.38483,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,925.75,135212.42,0,0,3830.9226 -6472,7994,14582,14583,-9,-9,1,1,0,44,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,19,0,5,37.949741,0,0,1,39,2,4,1,3,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.2806964,0,0,0,51.830002,57.200001,57.16,56.150002,7,1,1,1,0,6,3,1,925.75,135212.42,0,0,3830.9226 -6472,7994,14583,14582,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,8.548008,8.2634478,0,2,0,-9,21,0,-5,-16.6637,0,0,0,44,2,4,3,-9,3,2019,2,1,5,0,40,80,15,1,0,3,0,15.659883,15.659883,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,51.830002,57.200001,7,1,1,0,0,6,3,1,925.75,135212.42,0,0,3830.9226 -6472,7994,14584,-9,14582,14583,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.8762,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,3,1,925.75,135212.42,0,0,3830.9226 -6473,7995,14585,-9,14586,14589,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-953.24664,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,2,2,1,751,14496.57,0,0,2842.7351 -6473,7995,14586,14589,-9,-9,1,1,0,44,1,0,3,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,18,0,-5,-7.8584008,0,0,1,49,2,5,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.702885,3,32.240002,45.200001,48.18,61.799999,4,1,1,0,0,2,2,1,751,14496.57,0,0,2842.7351 -6473,7995,14587,-9,14586,14589,5,1,0,13,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-999.97504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,2,2,1,751,14496.57,0,0,2842.7351 -6473,7995,14588,-9,14586,14589,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.7002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,1,751,14496.57,0,0,2842.7351 -6473,7995,14589,14586,-9,-9,2,1,1,49,1,0,3,0,2,-9,2,1,0,0,5,7.7314577,7.995204,0,2,0,-9,19,0,5,-54.244614,0,0,0,44,2,1,3,2,2,2019,2,1,11,0,40,38,15,1,0,3,0,6.2931805,6.2931805,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.013426,1,48.18,61.799999,32.240002,45.200001,4,1,1,0,0,2,2,1,751,14496.57,0,0,2842.7351 -6474,7996,14590,14591,-9,-9,1,1,1,45,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,7,0,5,0,0,0,0,40,3,1,3,3,2,2019,4,2,19,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.990002,39.900002,57,14.87,3,2,3,1,0,8,1,0,346,23712.68,0,0,1611.1299 -6474,7996,14591,14590,-9,-9,2,1,0,40,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,23,0,-5,0,0,0,1,45,2,2,3,3,3,2019,4,1,6,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57,14.87,45.990002,39.900002,1,2,3,1,0,8,1,0,346,23712.68,0,0,1611.1299 -6475,7997,14592,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,8.0081758,7.2472119,0,3,0,0,0,-9,0,-1056.1903,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,60,45,15,1,0,-9,0,3.7826819,3.7826819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.349998,-9,-9,5,1,1,0,1,11,3,0,1141,-8995.2314,0,0,-359.39032 -6476,7998,14593,-9,14594,14596,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.38458,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,650.5,96669.773,0,0,4275.4961 -6476,7998,14594,14596,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.9130125,8.8350983,0,2,0,-9,17,0,-5,42.172672,0,0,1,48,2,3,1,2,2,2019,1,2,20,8,38,38,15,1,1,1,0,19.190203,19.190203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.440001,65.400002,38.52,51.400002,3,1,1,0,0,7,5,1,650.5,96669.773,0,0,4275.4961 -6476,7998,14595,-9,14594,14596,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.7637,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,650.5,96669.773,0,0,4275.4961 -6476,7998,14596,14594,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,8.3434076,8.6315031,0,2,0,-9,17,0,5,34.897278,0,0,0,43,1,4,1,3,3,2019,1,1,18,6,46,40,15,1,1,1,0,13.801659,13.801659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.52,51.400002,25.440001,65.400002,5,1,1,0,0,7,5,1,650.5,96669.773,0,0,4275.4961 -6477,7999,14597,14598,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,7.6035142,7.031929,0,1,0,-9,8,0,1,43.515141,0,0,0,52,2,3,1,3,2,2019,1,2,8,0,28,28,15,1,0,1,0,6.927,6.927,0,0,0,0,0,0,0,7,0,0,0,0,0,8.9657593,3,52,54.509998,50,50,2,1,1,0,0,4,5,1,1306,138392.66,0,0,5414.2734 -6477,7999,14598,14597,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.875267,9.2803192,7.8378372,1,0,-9,8,0,-1,-31.976822,0,0,0,53,2,3,1,-9,-9,2019,1,1,11,1,40,40,15,1,0,1,0,22.68541,22.68541,0,0,0,0,0,0,0,0,0,0,0,1.9117438,7.9221473,0,0,50,50,52,54.509998,5,4,1,0,0,4,5,1,1306,138392.66,0,0,5414.2734 -6478,8000,14599,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,3,0,6.4162483,6.0307984,3,0,0,0,-9,0,-1077.921,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.238687,6.1920853,0,0,46.880001,46.299999,-9,-9,5,1,1,0,0,9,2,1,617,49493.414,0,0,209.12093 -6479,8001,14600,-9,-9,-9,1,1,0,98,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1014.5247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,31.29846,0,27.184067,0,0,271.74524,0,1,1,0,0,0,0,0,55,43,-9,-9,6,1,1,0,0,5,1,0,441,285084.97,0,0,-489.29099 -6479,8002,14601,-9,14600,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,1,3,1.9807783,2.0750649,0,3,0,0,0,-9,0,-1035.2069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,2,36,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.794252,3,50.029999,52.619999,-9,-9,6,1,1,0,0,5,1,0,2127,57710.121,0,0,132.83534 -6480,8003,14602,14605,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,17,0,-11,-122.4157,0,0,1,48,3,4,1,3,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,52,55,6,2,3,0,0,8,2,0,569.59998,52284.43,0,0,1547.9904 -6480,8003,14603,-9,14602,14605,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.62274,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,569.59998,52284.43,0,0,1547.9904 -6480,8003,14604,-9,14602,14605,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.3215,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,569.59998,52284.43,0,0,1547.9904 -6480,8003,14605,14602,-9,-9,2,1,1,48,1,0,3,0,3,-9,1,1,0,0,4,6.7510967,6.9503093,0,2,0,-9,16,0,11,83.517609,0,0,0,37,2,3,3,3,2,2019,2,1,9,1,40,35,15,1,0,3,0,2.3500817,2.3500817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46,51,6,2,3,0,0,8,2,0,569.59998,52284.43,0,0,1547.9904 -6480,8003,14606,-9,14602,14605,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.59082,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,569.59998,52284.43,0,0,1547.9904 -6481,8004,14607,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,6.6099935,6.4860969,3,0,0,0,-9,0,-1063.4832,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.5604463,0,3,51,46,-9,-9,5,1,1,0,0,4,2,1,701,328291.88,0,0,100.85378 -6482,8005,14608,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,0,3,8.1406975,8.0147905,0,3,0,0,0,-9,0,-959.60681,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,35,15,1,0,-9,0,12.094755,12.094755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.279999,50.080002,-9,-9,5,1,1,0,0,12,4,0,1474,103963.05,0,0,1676.2859 -6483,8006,14609,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,1,2,7.9406877,8.5758162,7.5833497,3,0,0,0,-9,0,-1060.9969,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,5,0,15,1,0,-9,0,75.949318,75.949318,0,0,0,0,0,0,0,7,1,1,0,0,7.8353038,10.2542,3,49.639999,46.639999,-9,-9,5,1,1,0,0,7,5,1,760,-26743.502,0,0,2216.5518 -6483,8007,14610,-9,14609,-9,2,1,1,25,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-870.28864,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,56.66,-9,-9,3,1,1,1,1,7,1,1,628,161941.89,0,0,0 -6484,8008,14611,14612,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.2003207,7.3206468,1,0,-9,6,0,-4,-102.08701,0,0,0,77,2,3,3,2,2,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9302802,6.797348,0,0,34.360001,60.009998,55.52,35.299999,3,1,1,0,0,2,3,0,942.5,703687.63,0,0,3227.8677 -6484,8008,14612,14611,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.3318911,7.2280087,1,0,-9,6,0,4,77.759842,0,0,0,73,2,4,3,-9,-9,2019,4,1,12,0,0,21,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6211305,7.257256,0,0,55.52,35.299999,34.360001,60.009998,5,1,1,0,0,2,3,0,942.5,703687.63,0,0,3227.8677 -6485,8009,14613,14614,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,3,8.5139475,8.4221029,0,2,0,-9,14,0,8,-123.31776,0,0,0,40,2,5,1,2,2,2019,1,1,8,0,40,56,15,1,0,1,0,15.343722,15.343722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.459999,46.990002,48.77,60.16,6,1,1,0,0,1,4,1,698.66669,108173.88,0,0,2551.3335 -6485,8009,14614,14613,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,5,7.9418993,8.2616024,0,2,0,-9,13,0,-8,90.950905,0,0,1,48,2,3,1,3,3,2019,1,2,12,0,40,40,15,1,0,1,0,8.8262615,8.8262615,0,0,0,0,0,0,0,7,1,1,0,0,0,10.039674,3,48.77,60.16,59.459999,46.990002,5,1,1,0,0,1,4,1,698.66669,108173.88,0,0,2551.3335 -6485,8009,14615,-9,14614,14613,4,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-869.12134,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,4,1,698.66669,108173.88,0,0,2551.3335 -6485,8010,14616,-9,14614,14613,3,1,1,22,2,0,1,0,1,-9,2,1,0,0,4,7.7798252,7.7287474,0,3,0,0,0,-9,0,-979.48224,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,31,15,1,0,-9,1,8.2560492,8.2560492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,1,3,1,596,-70708.031,0,0,755.34222 -6486,8011,14617,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,0,3,0,5.8112278,6.2031512,3,0,0,0,-9,0,-1007.8453,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,9.0006495,0,0,0,0,1,1,0,0,6.0490613,0,0,54,43,-9,-9,6,1,1,0,0,5,2,1,2760,63857.141,0,0,1770.5135 -6487,8012,14618,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,3,0,5.8110566,5.7570152,3,0,0,0,-9,0,-992.76892,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0735826,5.8674788,15.014799,3,37.349998,39.52,-9,-9,3,1,1,0,0,9,2,1,202,970334.31,0,0,1722.387 -6488,8013,14619,-9,14620,14621,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.0570087,8.368886,0,3,0,0,0,-9,0,-1090.35,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,40,15,1,0,-9,1,8.6018581,8.6018581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,2,3,0,0,2,4,1,405,-11859.006,0,0,1935.2633 -6488,8014,14620,14621,-9,-9,3,1,0,63,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,44,0,-1,0,0,0,0,64,3,3,3,3,3,2019,4,2,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,41.604168,3,49,48,51,48,5,2,3,0,0,2,1,1,316.5,179186.31,0,0,313.3154 -6488,8014,14621,14620,-9,-9,2,1,1,64,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,44,0,1,0,0,0,0,63,3,3,3,3,3,2019,4,3,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.696087,3,51,48,49,48,5,2,3,0,0,2,1,1,316.5,179186.31,0,0,313.3154 -6489,8015,14622,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-903.0249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.200001,43.52,-9,-9,6,1,1,0,0,13,1,0,1451,128975.59,0,0,1658.7996 -6490,8016,14623,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,1,2,0,7.4399962,7.0484667,3,0,0,0,-9,0,-966.117,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,4,1,-9,0,0,0,1,14.511786,0,8.2677202,0,12.393905,132.39212,0,1,1,0,0,7.4876256,0,0,35.290001,19.07,-9,-9,2,1,1,0,0,6,3,0,198,325679.59,0,0,2270.5337 -6491,8017,14624,14625,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,2,7.9650989,7.9156132,0,1,0,-9,25,0,-3,57.463848,0,0,0,53,1,3,1,1,2,2019,1,1,12,0,21,21,15,1,0,1,0,13.475385,13.475385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.119999,24.200001,41.630001,49.720001,6,1,1,0,0,8,3,1,784,228040.55,0,0,2090.3782 -6491,8017,14625,14624,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,1,3,6.1916747,5.9218106,0,1,0,-9,25,0,3,-3.6407166,0,0,0,50,1,2,1,2,2,2019,1,2,11,0,4,10,15,1,0,1,0,16.050192,16.050192,0,0,0,0,0,0,0,27.5,1,1,0,2.1280403,0,23.65822,2,41.630001,49.720001,36.119999,24.200001,2,1,1,0,0,8,3,1,784,228040.55,0,0,2090.3782 -6492,8018,14626,-9,-9,-9,1,1,1,51,3,0,0,0,1,-9,2,1,0,0,3,9.1041317,8.8868103,5.1744056,3,0,0,0,-9,0,-1062.2615,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,45,47,15,1,0,-9,0,15.962683,15.962683,0,0,0,0,0,0,0,0,0,0,0,2.3272254,5.3310399,0,0,48.139999,53.419998,-9,-9,6,1,1,0,0,1,5,1,249,777323.88,0,0,2453.655 -6493,8019,14627,-9,-9,-9,1,1,0,68,2,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-939.97571,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,1,8,1,0,1554,320391.75,0,0,966.31726 -6494,8020,14628,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-965.84802,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.27,44.810001,-9,-9,7,1,1,0,0,8,1,0,914,272588.97,0,0,980.74365 -6495,8021,14629,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,6.8834958,6.6433506,3,0,0,0,-9,0,-982.46442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8537693,0,0,63.549999,39.700001,-9,-9,6,1,1,0,0,9,2,1,301,919694.75,0,0,969.54926 -6496,8022,14630,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,0,2,8.4571581,8.3299294,0,3,0,-9,0,-9,0,-1039.579,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,44,0,15,1,0,-9,0,7.9660983,7.9660983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,39.68,-9,-9,4,1,1,0,0,5,4,0,750,871505.88,0,0,2732.7449 -6496,8023,14631,-9,-9,14630,2,1,1,23,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-922.28967,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.09,56.130001,-9,-9,5,1,1,1,1,5,1,0,758,27868.814,0,0,-172.14708 -6497,8024,14632,14633,-9,-9,1,1,0,71,1,0,0,0,2,-9,2,1,0,0,3,7.0929418,7.6412916,6.7635007,1,0,-9,50,0,1,-70.290482,0,0,0,70,3,3,3,3,3,2019,2,2,10,0,20,0,15,1,0,4,0,8.9186974,8.9186974,0,0,0,0,0,0,0,0,1,1,0,0,6.6352453,0,0,51.41,56.150002,51.060001,41.380001,6,1,1,0,0,8,3,1,943.5,687407.88,0,0,2716.123 -6497,8024,14633,14632,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,3.9696908,4.6510534,1,0,-9,50,0,-1,-82.244164,-9,0,0,71,2,3,1,3,3,2019,3,1,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1591086,4.5527382,0,0,51.060001,41.380001,51.41,56.150002,5,1,1,0,0,8,3,1,943.5,687407.88,0,0,2716.123 -6498,8025,14634,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,3,8.6650381,8.8760118,7.1812606,3,0,0,0,-9,0,-1072.0758,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,5,30,30,15,1,1,-9,0,17.895609,17.895609,0,0,0,0,0,0,0,0,1,1,0,6.5700059,7.4313674,0,0,46.48,55.599998,-9,-9,3,1,1,0,0,7,5,1,870,839176.94,0,0,3372.3013 -6499,8026,14635,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-925.19385,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.700001,-9,-9,5,1,1,0,0,10,1,1,209,56389.684,0,0,749.27576 -6500,8027,14636,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,0,4,0,8.2592478,8.4312534,3,0,0,0,-9,0,-1040.7306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9967332,8.182909,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,4,1,575,336695.56,0,0,2089.3523 -6501,8028,14637,-9,-9,-9,1,1,1,39,3,0,0,0,2,-9,2,1,0,0,5,8.9589367,8.5657215,0,3,0,-9,0,1,0,-954.36688,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,42,37,15,1,0,-9,0,17.460667,17.460667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.889999,64.099998,-9,-9,5,1,1,0,0,10,5,0,680,11726.832,0,0,3953.3853 -6502,8029,14638,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1044.0658,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2861948,0,0,0,57.259998,27.92,-9,-9,5,1,1,0,0,4,1,1,327,131904.66,0,0,1545.3267 -6503,8030,14639,14640,-9,-9,1,1,0,63,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,6,0,-1,107.45812,0,0,0,64,2,2,3,2,2,2019,4,2,16,6,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.810001,35.119999,48.939999,48.040001,5,1,1,1,0,12,2,1,820,233697.31,0,0,1152.2458 -6503,8030,14640,14639,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,0,6.5646172,6.4717002,1,0,-9,6,0,1,-15.315835,0,0,0,63,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3200197,0,0,48.939999,48.040001,36.810001,35.119999,6,1,1,0,0,12,2,1,820,233697.31,0,0,1152.2458 -6504,8031,14641,14642,-9,-9,3,1,1,37,1,0,2,0,2,-9,2,1,0,0,5,8.2738924,8.2998505,0,2,0,-9,7,0,-1,80.835983,0,0,0,38,3,4,1,-9,-9,2019,1,1,3,0,42,42,15,1,0,1,0,9.4763508,9.4763508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.68,61,67.43,41.869999,7,4,1,0,0,13,4,1,599.33331,98024.938,0,0,4114.1367 -6504,8031,14642,14641,-9,-9,1,1,0,38,1,0,2,0,3,-9,2,1,0,0,4,8.7552853,8.7793589,0,2,0,-9,7,0,1,58.353115,0,0,1,37,2,5,1,3,3,2019,1,3,6,0,42,40,15,1,0,1,0,15.945554,15.945554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.43,41.869999,46.68,61,6,1,1,0,0,13,4,1,599.33331,98024.938,0,0,4114.1367 -6504,8031,14643,-9,14642,14641,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1063.8184,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,13,4,1,599.33331,98024.938,0,0,4114.1367 -6505,8032,14644,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,1,1,0,0,4,7.7956505,8.2073069,5.7025528,3,0,0,0,-9,0,-913.37305,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,25,15,1,0,-9,0,24.70042,24.70042,0,0,0,0,0,0,0,0,1,1,0,5.8361473,5.65453,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,13,4,1,772,133489.59,0,0,2026.8888 -6506,8033,14645,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.3458529,8.28444,0,3,0,-9,0,-9,0,-1059.7683,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,42,0,15,1,0,-9,0,14.087854,14.087854,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,5,1,1,0,0,12,4,1,181,92423.133,0,0,1586.9518 -6507,8034,14646,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,3,9.1775532,9.1086245,0,3,0,-9,0,0,0,-926.20795,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,22,9,35,35,15,1,1,-9,0,33.837082,33.837082,0,0,0,0,0,0,0,0,0,0,0,1.2465185,0,0,0,25.370001,63.98,-9,-9,4,1,1,0,0,7,5,1,607,264428.53,0,0,2781.636 -6508,8035,14647,-9,-9,-9,1,1,0,61,2,0,0,0,3,-9,2,1,0,0,3,6.9244523,6.5640764,0,3,0,0,0,-9,0,-945.51227,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,16,16,15,1,1,-9,0,5.5928612,5.5928612,0,0,0,0,0,0,0,2,1,1,0,0,0,7.4511733,3,29.08,42.029999,-9,-9,4,1,1,0,1,7,2,0,2744,98570.336,0,0,781.48285 -6508,8036,14648,-9,14647,-9,2,1,0,32,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1110.0913,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,33,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.41,31.91,-9,-9,3,4,2,0,1,7,1,0,743,51718.207,0,0,496.34598 -6508,8037,14649,-9,14647,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,7.572381,7.7766075,0,3,0,0,0,-9,0,-1259.0616,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,54,44,15,1,0,-9,1,3.739219,3.739219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.709999,40.790001,-9,-9,4,4,2,0,0,7,3,0,1024,61477.766,0,0,1182.4884 -6509,8038,14650,-9,14651,14652,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.70837,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,1245.4,512656.47,0,0,5134.4521 -6509,8038,14651,14652,-9,-9,2,1,0,35,1,1,3,0,1,-9,5,1,0,0,4,8.4143152,8.368288,6.2221227,2,0,-9,2,0,-14,52.585289,0,0,1,49,2,5,1,-9,-9,2019,1,1,17,5,37,45,15,1,1,1,0,13.063699,13.063699,0,0,0,0,0,0,0,0,1,1,0,6.0374637,0,0,0,38.560001,60.860001,47.25,48.73,6,1,1,0,0,6,5,1,1245.4,512656.47,0,0,5134.4521 -6509,8038,14652,14651,-9,-9,1,1,1,49,1,1,3,0,2,-9,2,1,0,0,5,9.0402594,9.2398319,0,2,0,-9,2,0,14,48.369915,0,0,0,35,1,4,1,2,3,2019,1,2,12,1,50,39,15,1,0,1,0,16.548889,16.548889,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.25,48.73,38.560001,60.860001,6,1,1,0,0,6,5,1,1245.4,512656.47,0,0,5134.4521 -6509,8038,14653,-9,14651,14652,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.30341,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,1245.4,512656.47,0,0,5134.4521 -6509,8038,14654,-9,14651,14652,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-993.55865,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,1245.4,512656.47,0,0,5134.4521 -6510,8039,14655,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,4,7.8303213,7.6453815,0,3,0,0,0,-9,0,-988.92603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,28,0,15,1,0,-9,0,13.700634,13.700634,0,0,0,0,0,0,0,0,0,0,0,3.0198176,0,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,5,3,1,290,593293.25,0,0,552.55872 -6510,8040,14656,-9,14655,-9,2,1,0,27,2,0,0,0,2,-9,3,3,0,0,5,8.0901394,7.9401841,0,3,0,0,0,-9,0,-1144.8593,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,37,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.67,65.949997,-9,-9,3,1,1,1,1,5,3,1,269,12458.795,0,0,1012.2028 -6511,8041,14657,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,2,0,7.5624719,7.6694946,3,0,0,0,-9,0,-926.05109,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7953029,7.9663029,0,0,40.970001,32.790001,-9,-9,4,1,1,0,0,2,3,1,987,583896.5,0,0,967.58661 -6512,8042,14658,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-912.28821,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.75,36.139999,-9,-9,2,1,1,1,1,13,1,0,2687,262926.06,0,0,1043.3479 -6513,8043,14659,14660,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,6.3523946,6.6672173,1,0,-9,7,0,-5,-57.076157,0,0,0,74,1,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.5709996,5.5100555,3,54.790001,55.860001,56.349998,51.16,6,1,1,0,0,10,4,1,444,260316.44,0,0,4826.9746 -6513,8043,14660,14659,-9,-9,2,1,1,74,1,0,0,0,1,-9,2,1,0,0,3,7.6057386,8.3247843,7.6111498,1,0,-9,7,0,5,22.287653,0,0,0,69,2,4,3,2,2,2019,2,1,10,2,35,30,15,1,0,4,0,6.4332948,6.4332948,0,0,0,0,0,0,0,0,1,1,0,8.1176291,8.060627,0,0,56.349998,51.16,54.790001,55.860001,6,1,1,0,0,10,4,1,444,260316.44,0,0,4826.9746 -6514,8044,14661,-9,14662,14663,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.2518,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,375,296568.53,0,0,4297.561 -6514,8044,14662,14663,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,2,7.6131878,7.6024666,0,2,0,-9,25,0,3,59.818954,0,0,0,47,1,4,1,2,1,2019,1,2,12,1,31,30,15,1,0,1,0,6.863205,6.863205,0,0,0,0,0,0,0,0,0,0,0,1.7546617,0,0,0,43.5,50.580002,49.349998,59.639999,6,1,1,0,0,7,5,1,375,296568.53,0,0,4297.561 -6514,8044,14663,14662,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,9.0562782,8.9973936,0,2,0,-9,9,0,-3,-92.349518,0,0,0,50,1,2,1,1,-9,2019,1,1,11,0,50,53,15,1,0,1,0,19.121708,19.121708,0,0,0,0,0,0,0,0,0,0,0,.93449342,0,0,0,49.349998,59.639999,43.5,50.580002,6,1,1,0,0,7,5,1,375,296568.53,0,0,4297.561 -6514,8045,14664,-9,14662,14663,3,1,0,19,2,0,1,0,2,-9,7,2,0,0,5,4.7795811,5.1302218,0,3,0,0,0,-9,0,-1018.4643,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,6,4,3,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.79443121,0,0,0,31.809999,62.720001,-9,-9,6,1,1,0,0,7,2,1,790,34141.266,0,0,149.81299 -6515,8046,14665,14666,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.3751531,6.6211042,1,0,-9,37,0,3,118.53407,0,0,0,63,2,3,3,2,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.483326,6.1612763,0,3,50.599998,48.299999,57.330002,53.459999,6,1,1,0,0,2,3,1,825,829669.44,0,0,1892.459 -6515,8046,14666,14665,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.7205482,7.5603986,1,0,-9,7,0,-3,45.893803,0,0,0,66,2,3,3,-9,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2197189,7.4844251,7.5175409,3,57.330002,53.459999,50.599998,48.299999,6,1,1,0,0,2,3,1,825,829669.44,0,0,1892.459 -6516,8047,14667,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,5.9978986,5.8336096,3,0,0,0,-9,0,-938.97876,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8944563,5.6689277,0,0,62.82,33.310001,-9,-9,6,1,1,0,0,7,2,0,438,526606.06,0,0,1804.4041 -6517,8048,14668,14669,-9,-9,1,1,0,72,1,0,0,0,2,-9,1,1,0,0,4,4.6120515,5.9093542,5.5319858,1,0,-9,55,0,-5,-100.07416,0,0,0,77,3,3,1,3,2,2019,1,2,12,0,25,25,15,1,0,1,0,.44210571,.44210571,0,0,0,0,0,0,0,0,1,1,0,5.1763639,5.5042481,0,0,52.82,53.970001,54,46,6,1,1,0,0,9,2,1,542,309628.5,0,0,1886.8708 -6517,8048,14669,14668,-9,-9,2,1,1,77,1,0,0,0,3,-9,1,1,0,0,3,5.2443113,5.3226523,0,1,0,-9,7,0,5,-12.082376,0,0,0,72,2,4,1,-9,-9,2019,1,1,9,1,25,25,15,1,0,1,0,.8455773,.8455773,0,0,0,0,0,0,0,0,1,1,0,2.3913393,0,0,0,54,46,52.82,53.970001,6,1,1,0,0,9,2,1,542,309628.5,0,0,1886.8708 -6518,8049,14670,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,5.9495111,5.5036821,3,0,0,0,-9,0,-747.74463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4199138,5.7332397,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,12,2,0,749,85328.602,0,0,1463.7399 -6519,8050,14671,14672,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.1204052,8.402607,0,1,0,-9,8,0,1,67.063377,0,0,0,52,3,4,1,2,3,2019,1,2,6,0,40,40,15,1,0,1,0,10.132223,10.132223,0,0,0,0,0,0,0,2,0,0,0,7.1427011,0,3.088068,3,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,11,4,0,541.5,758058,0,0,2686.0405 -6519,8050,14672,14671,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,0,4,7.9736352,7.8062167,0,1,0,-9,8,0,-1,-15.292542,0,0,0,53,2,3,1,-9,-9,2019,1,1,7,0,28,29,15,1,0,1,0,9.282568,9.282568,0,0,0,0,0,0,0,7,0,0,0,8.068388,0,6.8460488,3,54.200001,57.490002,57.330002,53.459999,2,1,1,0,0,11,4,0,541.5,758058,0,0,2686.0405 -6519,8051,14673,-9,14672,14671,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,5,7.8363504,8.2790642,0,3,0,0,0,-9,0,-961.80127,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,24,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.20653234,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,11,3,0,419,99659.344,0,0,2029.4241 -6519,8052,14674,-9,14672,14671,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.2767992,7.1510544,0,3,0,0,0,-9,0,-927.31818,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,54,20,15,1,0,-9,1,4.9548655,4.9548655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,11,3,0,275,-21090.816,0,0,771.55505 -6520,8053,14675,14676,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,8.1318493,7.8638034,1,0,-9,6,0,2,106.50668,0,0,0,66,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0475512,10.967106,3,48.279999,60.18,49.060001,52.91,6,1,1,0,0,12,3,1,1424,1212884.5,0,0,2659.4773 -6520,8053,14676,14675,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,5.5387073,5.1514106,1,0,-9,6,0,-2,32.776176,0,0,0,68,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.2984095,0,3,49.060001,52.91,48.279999,60.18,6,1,1,0,0,12,3,1,1424,1212884.5,0,0,2659.4773 -6521,8054,14677,14678,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,6.014483,6.3923311,1,0,-9,59,0,1,-11.678086,0,0,0,79,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.2307501,5.6930513,0,3,43.709999,56.91,46.16,53.09,2,1,1,0,0,4,2,1,946.5,502785.66,0,0,2216.8999 -6521,8054,14678,14677,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-1,-64.791534,0,0,0,80,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,.2288481,3,46.16,53.09,43.709999,56.91,1,1,1,0,0,4,2,1,946.5,502785.66,0,0,2216.8999 -6521,8055,14679,-9,14678,14677,3,1,0,45,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-966.72906,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0961647,0,0,0,25.82,33.119999,-9,-9,2,1,1,0,0,4,1,1,2704,-72281.914,0,0,1657.713 -6522,8056,14680,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,0,2,8.2090111,8.1685076,0,3,0,0,0,-9,0,-867.18427,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,37,35,15,1,1,-9,0,10.39322,10.39322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.439999,45.5,-9,-9,5,3,4,0,0,2,4,0,663,164948.86,0,0,1315.3989 -6522,8057,14681,-9,14680,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,0,4,7.0831819,7.5437665,0,3,0,0,0,-9,0,-992.96295,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,38,0,15,1,1,-9,1,4.7450728,4.7450728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.259998,-9,-9,5,4,2,0,0,2,3,0,2352,-112785.55,0,0,-1346.4176 -6523,8058,14682,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,1,0,4.7918916,5.0979919,3,0,0,0,-9,0,-995.38757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,.73898119,0,8.0604706,0,0,1,1,0,0,5.1391063,0,0,55.599998,11.23,-9,-9,6,1,1,0,0,1,2,0,3932,-87013,0,0,2257.8684 -6524,8059,14683,14684,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,7.5674977,7.2863488,1,0,-9,35,0,14,4.1808996,0,0,0,65,1,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9701161,7.9069467,0,0,52.189999,33.939999,57.060001,57.759998,6,1,1,0,0,9,4,1,2254.5,1396888,0,0,4966.4312 -6524,8059,14684,14683,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,5,0,7.9833508,7.6202993,1,0,-9,36,0,-14,-43.723328,0,0,0,79,3,3,3,2,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7283006,7.9065819,0,0,57.060001,57.759998,52.189999,33.939999,7,1,1,0,0,9,4,1,2254.5,1396888,0,0,4966.4312 -6525,8060,14685,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,2,1,0,0,2,8.9569225,9.4192181,0,3,0,0,0,-9,0,-1112.3438,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,35,35,15,1,0,-9,0,26.942463,26.942463,0,0,0,0,0,0,0,0,0,0,0,2.9140193,0,0,0,52.669998,38.389999,-9,-9,3,1,1,0,0,10,5,1,398,430330.59,0,0,2167.5122 -6526,8061,14686,-9,14687,14688,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-851.43164,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,5,0,475,403312.28,0,0,6553.6611 -6526,8061,14687,14688,-9,-9,1,1,0,37,1,1,1,0,1,-9,2,1,0,0,5,8.641757,8.7804813,0,2,0,-9,6,0,1,71.354843,0,0,1,36,1,4,1,1,2,2019,1,2,8,1,41,37,15,1,0,1,0,18.902481,18.902481,0,0,0,0,0,0,0,0,1,1,0,6.5642385,0,0,0,56.400002,52.619999,51,56,7,3,4,0,0,8,5,0,475,403312.28,0,0,6553.6611 -6526,8061,14688,14687,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,4,9.1744251,9.1200361,0,2,0,-9,6,0,-1,-120.39198,-9,0,0,37,1,5,1,1,1,2019,1,1,10,1,50,0,15,1,0,1,0,19.074768,19.074768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,56.400002,52.619999,5,3,4,0,0,8,5,0,475,403312.28,0,0,6553.6611 -6527,8062,14689,-9,14691,14692,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.12006,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,1129.5,430646.66,0,0,3676.696 -6527,8062,14690,-9,14691,14692,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.13715,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,5,1,1129.5,430646.66,0,0,3676.696 -6527,8062,14691,14692,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.1051846,8.0635185,0,2,0,-9,9,0,-5,-31.888733,0,0,1,42,1,3,1,-9,-9,2019,1,1,11,2,55,65,15,1,0,1,0,8.0228767,8.0228767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,50.599998,51,5,1,1,0,0,2,5,1,1129.5,430646.66,0,0,3676.696 -6527,8062,14692,14691,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,9.1337385,8.6502848,0,2,0,-9,9,0,5,.12028584,0,0,0,37,1,4,1,2,2,2019,1,2,8,0,47,45,15,1,0,1,0,21.166065,21.166065,0,0,0,0,0,0,0,0,0,0,0,3.7127326,0,0,0,50.599998,51,48,56,5,1,1,0,0,2,5,1,1129.5,430646.66,0,0,3676.696 -6528,8063,14693,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,1,1,0,0,4,0,7.7115941,7.7278485,3,0,0,0,-9,0,-990.53217,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,1,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.736613,7.7045832,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,206,344197,0,0,1889.4584 -6529,8064,14694,14695,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,0,4,8.1530037,8.1422892,0,2,0,-9,11,0,4,-42.450012,0,0,0,34,1,5,1,2,2,2019,1,2,13,2,44,43,15,1,0,1,0,8.0897017,8.0897017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,57.060001,57.759998,5,1,1,0,0,10,4,0,536.66669,33291.273,0,0,3269.7642 -6529,8064,14695,14694,-9,-9,2,1,0,34,1,1,1,0,1,-9,5,1,0,0,5,8.2863941,8.0348005,0,2,0,-9,11,0,-4,16.206228,0,0,1,38,2,4,1,2,2,2019,1,1,5,0,37,38,15,1,0,1,0,13.533584,13.533584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,48.810001,59.91,6,1,1,0,0,10,4,0,536.66669,33291.273,0,0,3269.7642 -6529,8064,14696,-9,14695,14694,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-964.37927,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,0,536.66669,33291.273,0,0,3269.7642 -6530,8065,14697,-9,-9,-9,1,1,0,34,3,1,2,0,1,-9,5,1,0,0,5,8.1662979,7.781775,0,4,0,0,0,-9,0,-931.98383,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,38,35,15,1,0,-9,0,7.6388183,7.6388183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.959999,57.700001,-9,-9,5,3,4,0,0,8,3,0,661.66669,63079.586,0,0,1333.1948 -6530,8065,14698,-9,14697,-9,2,1,0,13,2,1,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1033.1768,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,3,4,0,0,8,3,0,661.66669,63079.586,0,0,1333.1948 -6530,8065,14699,-9,14697,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-941.33783,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,3,0,661.66669,63079.586,0,0,1333.1948 -6531,8066,14700,14701,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,0,4,0,8.3227158,8.4600248,1,0,-9,28,0,-2,-24.102642,0,0,0,61,1,1,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8099766,8.7795544,0,0,58.150002,52.91,56.34,38.290001,7,1,1,0,0,8,5,1,341,1547560.5,0,0,8890.9023 -6531,8066,14701,14700,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,1,9.7285547,9.6832848,0,1,0,-9,28,0,2,-22.708155,0,0,0,59,1,4,3,-9,-9,2019,2,2,7,0,50,50,15,1,0,4,0,39.218624,39.218624,0,0,0,0,0,0,0,0,0,0,0,6.1968446,0,0,0,56.34,38.290001,58.150002,52.91,5,1,1,0,0,8,5,1,341,1547560.5,0,0,8890.9023 -6531,8067,14702,-9,14701,14700,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.6284299,7.6939287,0,3,0,0,0,-9,0,-1018.3571,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,36,0,15,1,0,-9,1,8.1646099,8.1646099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,3,1,369,-142302.13,0,0,686.70203 -6532,8068,14703,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1013.3546,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.259998,25.5,-9,-9,7,1,1,0,0,9,1,1,450,-67286.422,0,0,1219.6725 -6533,8069,14704,-9,14707,14705,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.7247,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,1,650.5,517568.03,0,0,4992.708 -6533,8069,14705,14707,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,0,4,8.7182245,8.8241854,0,2,0,-9,7,0,-4,20.486488,0,0,0,39,1,3,1,2,2,2019,1,1,5,0,39,35,15,1,0,1,0,21.862228,21.862228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.860001,53.23,28.33,62.630001,6,3,4,0,0,8,5,1,650.5,517568.03,0,0,4992.708 -6533,8069,14706,-9,14707,14705,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.9805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,5,1,650.5,517568.03,0,0,4992.708 -6533,8069,14707,14705,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,8.9698906,8.7172327,0,2,0,-9,7,0,4,78.851387,0,0,1,35,1,4,1,1,1,2019,1,2,22,11,74,31,15,1,1,1,0,10.264025,10.264025,0,0,0,0,0,0,0,0,1,1,0,2.4604733,0,0,0,28.33,62.630001,45.860001,53.23,5,4,5,0,0,8,5,1,650.5,517568.03,0,0,4992.708 -6534,8070,14708,-9,-9,-9,1,1,0,35,2,0,3,0,2,-9,1,1,0,0,4,5.9280906,5.9057016,0,4,0,0,0,-9,0,-955.94196,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,16,30,15,1,0,-9,0,3.4745271,3.4745271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,5,2,3,0,0,9,2,0,417,-88032.305,0,0,1112.7727 -6534,8070,14709,-9,14708,-9,2,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-888.14032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,9,2,0,417,-88032.305,0,0,1112.7727 -6534,8070,14710,-9,14708,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1041.3973,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,2,0,417,-88032.305,0,0,1112.7727 -6534,8070,14711,-9,14708,-9,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1087.7157,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,9,2,0,417,-88032.305,0,0,1112.7727 -6535,8071,14712,-9,14715,14713,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.85944,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,635.5,151497.56,0,0,1508.5046 -6535,8071,14713,14715,-9,-9,1,1,1,33,1,0,2,0,2,-9,2,1,0,0,4,8.0416288,8.2415257,0,2,0,-9,14,0,-2,51.944641,0,0,0,35,1,4,1,3,2,2019,1,2,12,0,23,23,15,1,0,1,0,16.598896,16.598896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.349998,43.18,55.360001,54.240002,6,1,1,0,0,11,4,1,635.5,151497.56,0,0,1508.5046 -6535,8071,14714,-9,14715,14713,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.8036,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,1,635.5,151497.56,0,0,1508.5046 -6535,8071,14715,14713,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,7.7858124,7.6163845,0,2,0,-9,14,0,2,51.936016,0,0,1,33,2,4,1,2,2,2019,1,1,8,0,22,22,15,1,0,1,0,11.717106,11.717106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,54.240002,55.349998,43.18,6,1,1,0,0,11,4,1,635.5,151497.56,0,0,1508.5046 -6536,8072,14716,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,0,2,7.6278977,7.9817963,3.2555611,3,0,0,0,-9,0,-1001.6123,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,8,37,32,15,1,1,-9,0,7.6350913,7.6350913,0,0,0,0,0,0,0,14.5,1,0,1,3.3366592,0,17.603596,3,36.209999,50.189999,-9,-9,3,1,1,0,1,2,4,1,396,483787.41,0,0,829.49481 -6536,8073,14717,-9,14716,-9,2,1,0,25,2,0,0,0,1,1,2,1,0,1,3,7.3017612,7.1998501,5.3191042,3,0,0,0,-9,0,-897.57458,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,24,9,20,0,15,1,1,-9,1,6.318306,6.318306,0,0,0,0,0,0,0,2,1,0,1,5.9759426,0,0,3,24.16,64.169998,-9,-9,5,1,1,0,0,2,2,1,234,-159394.63,0,0,612.14612 -6537,8074,14718,-9,14721,-9,5,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1006.2199,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,1000.4,550018.75,0,0,3139.4795 -6537,8074,14719,-9,14721,-9,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1051.2747,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,1000.4,550018.75,0,0,3139.4795 -6537,8074,14720,-9,14721,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-992.43597,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,1000.4,550018.75,0,0,3139.4795 -6537,8074,14721,-9,-9,-9,1,1,0,48,3,0,2,0,1,-9,2,1,0,1,3,7.0483212,8.1608171,7.483428,4,0,0,0,-9,0,-880.01117,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,21,21,15,1,1,-9,0,6.4276004,6.4276004,0,0,0,0,0,0,0,74.5,1,1,0,7.3971815,0,73.969032,3,32.599998,54.09,-9,-9,5,1,1,0,0,7,3,0,1000.4,550018.75,0,0,3139.4795 -6537,8074,14722,-9,14721,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-979.18958,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,7,3,0,1000.4,550018.75,0,0,3139.4795 -6538,8075,14723,14724,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,9.2699814,9.2446032,0,1,0,-9,29,0,1,-54.521904,0,0,0,48,2,5,1,2,1,2019,1,2,6,0,50,53,15,1,0,1,0,25.384512,25.384512,0,0,0,0,0,0,0,2,0,0,0,2.0490925,0,2.3062215,3,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,7,5,1,660.5,426505.34,0,0,3948.2537 -6538,8075,14724,14723,-9,-9,2,1,0,48,1,0,0,0,2,-9,1,1,0,0,5,0,0,0,1,0,-9,29,0,-1,-121.60958,0,0,0,49,1,4,1,1,1,2019,1,1,5,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.5047884,0,14.196863,3,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,7,5,1,660.5,426505.34,0,0,3948.2537 -6539,8076,14725,14729,-9,-9,2,1,0,31,1,1,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,11,0,-5,39.691475,0,0,1,36,1,3,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,47.939999,53.790001,6,4,5,0,0,5,4,1,746.40002,162652.17,0,0,2329.3284 -6539,8076,14726,-9,14725,14729,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.00012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,5,0,0,5,4,1,746.40002,162652.17,0,0,2329.3284 -6539,8076,14727,-9,14725,14729,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.7389,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,5,0,0,5,4,1,746.40002,162652.17,0,0,2329.3284 -6539,8076,14728,-9,14725,14729,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.1859,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,5,0,0,5,4,1,746.40002,162652.17,0,0,2329.3284 -6539,8076,14729,14725,-9,-9,1,1,1,36,1,1,3,0,1,-9,2,1,0,0,3,9.3017349,8.9326458,0,2,0,-9,11,0,5,-117.58003,0,0,0,31,1,3,3,2,2,2019,2,2,9,0,40,40,15,1,0,3,0,22.278114,22.278114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.939999,53.790001,54.959999,53.169998,3,4,5,0,0,5,4,1,746.40002,162652.17,0,0,2329.3284 -6540,8077,14730,14731,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,0,4.1508408,4.1500092,1,0,-9,34,0,-11,-15.33178,0,0,0,71,2,3,3,3,2,2019,4,1,9,0,0,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5680776,4.2843852,0,0,54.200001,57.490002,59.07,43.049999,6,1,1,0,0,9,3,1,481,959017.38,0,0,1911.0465 -6540,8077,14731,14730,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.6551938,7.9307222,1,0,-9,34,0,11,-111.26794,0,0,0,60,2,4,3,2,2,2019,4,2,11,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.982429,7.7980814,0,0,59.07,43.049999,54.200001,57.490002,6,1,1,0,0,9,3,1,481,959017.38,0,0,1911.0465 -6540,8078,14732,-9,14730,14731,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,7.8743258,7.9364238,0,3,0,0,0,-9,0,-1038.8396,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,35,30,15,1,1,-9,1,7.3846383,7.3846383,0,0,0,0,0,0,0,0,1,1,0,2.4202425,0,0,0,28.120001,63.049999,-9,-9,2,1,1,0,0,9,3,1,572,67421.445,0,0,707.51617 -6541,8079,14733,14734,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,2,8.3224964,8.7863054,6.6552091,1,0,-9,40,0,2,-67.731735,0,0,0,58,1,4,3,-9,-9,2019,2,2,8,0,40,25,15,1,0,4,0,12.410546,12.410546,0,0,0,0,0,0,0,0,0,0,0,2.7659886,6.7820578,0,0,63.650002,38.639999,51.240002,58.84,6,1,1,0,0,1,4,1,585,945856.38,0,0,2865.6719 -6541,8079,14734,14733,-9,-9,2,1,0,58,1,0,0,0,1,-9,4,3,0,0,4,0,7.4913087,7.8550682,1,0,-9,40,0,-2,72.070511,0,0,0,60,3,2,1,3,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6266532,0,0,51.240002,58.84,63.650002,38.639999,6,1,1,0,0,1,4,1,585,945856.38,0,0,2865.6719 -6542,8080,14735,14736,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.3368359,8.3513632,0,1,0,-9,24,0,-7,-18.272615,0,0,0,61,2,3,1,3,2,2019,1,1,7,0,47,49,15,1,0,1,0,13.409613,13.409613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,54.240002,60.700001,29.040001,5,1,1,0,0,5,4,1,609.5,187057.7,0,0,2347.5776 -6542,8080,14736,14735,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,3,5.94769,6.9933195,6.1758304,1,0,-9,25,0,7,-29.869972,0,0,0,54,2,4,1,3,3,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9459884,6.2008414,0,0,60.700001,29.040001,55.360001,54.240002,6,1,1,0,0,5,4,1,609.5,187057.7,0,0,2347.5776 -6542,8081,14737,-9,14735,14736,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.7777343,7.5349283,0,3,0,0,0,-9,0,-1090.1799,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,41,0,15,1,1,-9,1,6.8586264,6.8586264,0,0,0,0,0,0,0,0,0,0,0,.74961489,0,0,0,25.440001,65.400002,-9,-9,4,1,1,0,0,5,3,1,792,106898.9,0,0,2149.6931 -6543,8082,14738,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,5,0,7.8046927,7.8572254,3,0,0,0,-9,0,-1042.9751,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.680398,0,0,62,44.540001,-9,-9,2,3,4,0,0,2,3,0,834,479999.09,0,0,1028.7054 -6544,8083,14739,14740,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,0,3,5.2864571,7.4645247,7.2258263,1,0,-9,8,0,11,55.3773,0,0,0,54,2,4,1,3,-9,2019,1,2,10,0,15,20,15,1,0,1,0,1.6220983,1.6220983,0,0,0,0,0,0,0,0,1,1,0,7.6542773,7.1480336,0,0,54.66,47.77,46.5,58.259998,6,1,1,0,0,11,5,1,720,2443509.8,0,0,7799.7988 -6544,8083,14740,14739,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,9.5695171,9.3034849,0,1,0,-9,8,0,-11,47.531483,0,0,0,65,2,3,1,2,2,2019,1,1,11,0,43,50,15,1,0,1,0,44.85989,44.85989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,54.66,47.77,6,1,1,0,0,11,5,1,720,2443509.8,0,0,7799.7988 -6545,8084,14741,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,2,8.2520142,8.280757,0,1,0,-9,9,0,2,-.2015205,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,7,0,28,28,15,1,0,-9,0,18.248615,18.248615,0,0,0,0,0,0,0,0,0,0,0,3.4776766,0,0,0,55.349998,43.869999,41.23,51.32,6,1,1,0,0,4,5,1,3009,475833.03,0,0,1457.615 -6545,8085,14742,-9,-9,-9,2,1,1,49,2,0,0,0,2,-9,2,1,0,0,3,9.0137444,9.2469273,0,1,0,-9,9,0,-2,-42.32309,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,17,6,50,47,15,1,1,-9,0,20.788115,20.788115,0,0,0,0,0,0,0,0,0,0,0,5.8578091,0,0,0,41.23,51.32,55.349998,43.869999,6,1,1,0,0,4,5,1,133,175064.97,0,0,2586.3188 -6546,8086,14743,14744,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,3,0,8.6482258,8.4362087,1,0,-9,9,0,1,64.826546,0,0,0,60,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7755985,8.2820091,0,0,52.009998,48.98,60.119999,54.799999,4,1,1,0,0,2,5,1,479,1976015.3,0,0,3772.0383 -6546,8086,14744,14743,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,0,4,0,7.2606001,7.4887843,1,0,-9,9,0,-1,79.421219,0,0,0,61,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4511018,7.3414102,0,0,60.119999,54.799999,52.009998,48.98,6,1,1,0,0,2,5,1,479,1976015.3,0,0,3772.0383 -6547,8087,14745,-9,14747,14746,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.07855,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,2,0,1548.5,111939.64,0,0,1949.2898 -6547,8087,14746,14747,-9,-9,3,1,1,53,1,0,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,2,0,19,-111.38271,-9,0,0,34,2,4,1,-9,-9,2019,3,1,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.369999,37.25,54.450001,56.220001,5,1,1,0,1,8,2,0,1548.5,111939.64,0,0,1949.2898 -6547,8087,14747,14746,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,6.6374626,6.7829099,0,2,0,-9,2,0,-19,26.721968,0,0,1,53,2,2,3,3,2,2019,2,3,9,0,14,16,15,1,0,3,0,6.1312971,6.1312971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,40.369999,37.25,6,2,3,0,0,8,2,0,1548.5,111939.64,0,0,1949.2898 -6547,8087,14748,-9,14747,14746,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1117.3945,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,2,3,0,0,8,2,0,1548.5,111939.64,0,0,1949.2898 -6548,8088,14749,14750,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,8.0193825,8.280592,0,2,0,-9,3,0,3,11.931263,0,0,0,47,2,3,3,-9,-9,2019,2,1,7,0,34,46,15,1,0,3,0,13.249765,13.249765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,49.52,56.950001,2,1,1,0,0,1,3,0,467,255951.25,0,0,2508.478 -6548,8088,14750,14749,-9,-9,1,1,0,47,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,22,0,-3,-179.77982,0,0,0,50,2,4,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.950001,54.200001,57.490002,6,1,1,0,0,1,3,0,467,255951.25,0,0,2508.478 -6548,8089,14751,-9,14750,14749,3,1,0,22,2,0,1,0,1,-9,2,1,0,0,3,7.1616869,7.359417,0,3,0,0,0,-9,0,-967.95087,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,5.2744875,5.2744875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,1,3,0,1635,-8809.9004,0,0,859.08563 -6549,8090,14752,14753,-9,-9,2,1,0,47,1,0,3,0,1,-9,2,1,0,0,3,7.6749687,7.797646,0,2,0,-9,10,0,0,144.87056,0,0,0,47,1,4,1,2,3,2019,1,1,9,0,25,25,15,1,0,1,0,14.711467,14.711467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,54.200001,57.490002,6,1,1,0,0,13,4,1,873.33331,278902.03,0,0,2994.7908 -6549,8090,14753,14752,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,0,4,8.9514046,8.6449976,0,2,0,-9,10,0,0,6.8581567,0,0,0,47,1,3,1,-9,-9,2019,1,2,11,0,35,35,15,1,0,1,0,21.192974,21.192974,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,49.040001,55.860001,5,1,1,0,0,13,4,1,873.33331,278902.03,0,0,2994.7908 -6549,8090,14754,-9,14752,14753,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.0892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,873.33331,278902.03,0,0,2994.7908 -6550,8091,14755,14756,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.703393,8.7939539,4.3664589,1,0,-9,7,0,-5,34.297813,0,0,0,63,3,3,3,2,2,2019,2,2,7,0,42,40,15,1,0,4,0,16.388035,16.388035,0,0,0,0,0,0,0,0,1,1,0,4.7118206,4.7172184,0,0,57.16,56.150002,50,47,6,1,1,0,0,9,5,1,1080.5,1613273,0,0,4041.5439 -6550,8091,14756,14755,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,6.5389895,6.5015292,1,0,-9,7,0,5,-137.10445,0,0,0,58,2,4,1,3,3,2019,3,1,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5738378,0,0,50,47,57.16,56.150002,5,1,1,0,0,9,5,1,1080.5,1613273,0,0,4041.5439 -6551,8092,14757,14758,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,3,-44.975731,0,0,0,56,1,4,1,2,2,2019,3,2,8,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7675366,0,0,0,57.16,56.150002,48.869999,58.549999,6,1,1,0,0,10,3,1,408,1853974.5,0,0,1012.4308 -6551,8092,14758,14757,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,8.2521267,8.4985733,0,1,0,-9,7,0,-3,-81.966866,0,0,0,59,1,4,3,-9,-9,2019,2,1,8,0,40,39,15,1,0,4,0,11.213483,11.213483,0,0,0,0,0,0,0,0,0,0,0,1.6450442,0,0,0,48.869999,58.549999,57.16,56.150002,6,1,1,0,0,10,3,1,408,1853974.5,0,0,1012.4308 -6552,8093,14759,14760,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.2972908,8.1077757,0,1,0,-9,7,0,-11,-105.37096,0,0,0,65,2,3,3,-9,-9,2019,2,1,12,0,42,38,15,1,0,4,0,10.924408,10.924408,0,0,0,0,0,0,0,7,1,1,0,2.3934469,0,.33251411,3,52,54.509998,54.130001,48.040001,4,1,1,0,0,9,5,1,179,1788237.1,0,0,4718.9063 -6552,8093,14760,14759,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.989522,8.1218128,1,0,-9,28,0,11,-94.403122,0,0,0,54,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,3.8703628,8.016386,22.289055,3,54.130001,48.040001,52,54.509998,5,1,1,0,0,9,5,1,179,1788237.1,0,0,4718.9063 -6553,8094,14761,14762,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,5.9456949,5.310277,1,0,-9,54,0,2,-89.463951,0,0,0,74,2,4,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5741572,5.5138044,0,0,44.82,45.529999,57.759998,48.98,6,1,1,0,0,4,2,1,802.5,363418.69,0,0,-143.86316 -6553,8094,14762,14761,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,5.4077463,5.1864414,1,0,-9,54,0,-2,21.306622,0,0,0,76,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0699115,5.0516071,0,0,57.759998,48.98,44.82,45.529999,6,1,1,0,0,4,2,1,802.5,363418.69,0,0,-143.86316 -6554,8095,14763,-9,-9,-9,1,1,0,58,3,0,1,0,2,-9,2,1,0,0,4,7.6012955,7.8160806,0,4,0,0,0,-9,0,-970.07953,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,39,39,15,1,0,-9,0,6.3909516,6.3909516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.400002,52.529999,-9,-9,2,1,1,0,0,4,3,0,254,7153.1948,0,0,-626.04346 -6554,8096,14764,-9,14763,-9,2,1,0,31,2,0,1,0,2,-9,2,1,0,0,3,7.5123715,7.0680289,0,3,0,0,0,-9,0,-1045.6821,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,24,30,15,1,1,-9,1,7.0300865,7.0300865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.309999,57.310001,-9,-9,4,1,1,0,0,4,3,0,150,-77835.188,0,0,1739.1582 -6554,8096,14765,-9,14764,-9,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1054.5421,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,150,-77835.188,0,0,1739.1582 -6555,8097,14766,14767,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,6.370697,6.9353356,4.6670909,1,0,-9,6,0,1,48.259468,0,0,0,62,2,4,3,2,2,2019,4,2,9,0,7,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6389632,4.5409937,0,0,52.23,55.599998,57.73,54.529999,6,1,1,0,0,13,2,1,266.5,1144677.3,0,0,713.93372 -6555,8097,14767,14766,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.0127172,6.9572916,1,0,-9,6,0,-1,-9.1866789,0,0,0,63,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0991454,6.9670277,0,0,57.73,54.529999,52.23,55.599998,6,1,1,0,0,13,2,1,266.5,1144677.3,0,0,713.93372 -6556,8098,14768,14769,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.7761254,7.6927032,0,1,0,-9,28,0,2,59.150753,0,0,0,58,2,3,1,-9,-9,2019,1,1,11,1,15,15,15,1,0,1,0,15.007946,15.007946,0,0,0,0,0,0,0,2,0,0,0,3.5272641,0,5.3511467,3,55.189999,54.259998,31.450001,53.709999,6,1,1,0,0,5,4,1,341,1198903,0,0,3168.4316 -6556,8098,14769,14768,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.511199,8.8243599,0,1,0,-9,29,0,-2,-81.213539,0,0,0,60,2,4,1,3,2,2019,1,2,13,1,45,45,15,1,0,1,0,11.591024,11.591024,0,0,0,0,0,0,0,2,0,0,0,5.4399576,0,.90204686,3,31.450001,53.709999,55.189999,54.259998,2,1,1,0,0,5,4,1,341,1198903,0,0,3168.4316 -6556,8099,14770,-9,14768,14769,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,7.2263002,7.090178,0,3,0,0,0,-9,0,-1086.1218,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,32,15,1,0,-9,1,3.858391,3.858391,0,0,0,0,0,0,0,2,0,0,0,0,0,3.7917235,3,51.419998,47.779999,-9,-9,5,1,1,0,0,5,3,1,732,-134844.55,0,0,666.44092 -6557,8100,14771,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,2,0,5.4795575,5.4874768,3,0,0,0,-9,0,-980.41675,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.61411,0,0,47.650002,25.559999,-9,-9,1,1,1,0,1,11,2,1,1753,325456.72,0,0,-962.78998 -6558,8101,14772,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-889.771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.4942932,0,25.818884,3,49.919998,34.09,-9,-9,4,1,1,0,0,6,1,1,848,73189.859,0,0,946.0611 -6558,8102,14773,-9,-9,-9,2,1,1,74,3,0,0,0,2,-9,4,3,0,1,2,0,3.6169353,4.077909,3,0,0,0,-9,0,-1001.7988,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3690014,3.7876871,0,0,48.669998,32.02,-9,-9,3,1,1,0,0,6,1,1,120,-124972.91,0,0,1037.829 -6559,8103,14774,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,4,8.2575541,8.2406998,0,3,0,0,0,-9,0,-1099.3334,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,11,38,39,15,1,1,-9,0,11.112947,11.112947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.060001,62.040001,-9,-9,2,1,1,0,0,13,4,1,1826,24295.645,0,0,2413.8447 -6560,8104,14775,-9,14777,14778,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-992.90302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,4,1,759.75,674892.38,0,0,2885.1887 -6560,8104,14776,-9,14777,14778,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.1469,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,759.75,674892.38,0,0,2885.1887 -6560,8104,14777,14778,-9,-9,1,1,0,31,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-1,144.61646,0,0,1,32,1,3,1,1,1,2019,3,2,7,0,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,55.959999,49.93,6,1,1,0,0,7,4,1,759.75,674892.38,0,0,2885.1887 -6560,8104,14778,14777,-9,-9,2,1,1,32,1,1,2,0,1,-9,2,1,0,0,3,9.1076479,9.126936,0,2,0,-9,8,0,1,-109.97633,-9,0,0,31,1,3,3,-9,-9,2019,2,1,11,0,43,0,15,1,0,3,0,30.638304,30.638304,0,0,0,0,0,0,0,0,1,1,0,3.3433335,0,0,0,55.959999,49.93,52.990002,51.279999,6,1,1,0,0,7,4,1,759.75,674892.38,0,0,2885.1887 -6561,8105,14779,14780,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,0,4,7.8243508,7.9658008,0,1,0,-9,6,0,-1,-4.5541201,0,0,0,66,2,4,1,3,3,2019,1,2,9,0,35,35,15,1,0,1,0,6.6601787,6.6601787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,48.509998,50.310001,6,1,1,0,0,13,3,1,1235.5,234634.22,0,0,2222.4824 -6561,8105,14780,14779,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,0,4,6.7968092,7.0666394,0,1,0,-9,6,0,1,-126.51171,0,0,0,65,3,4,1,3,3,2019,1,1,12,1,24,24,15,1,0,1,0,6.0523305,6.0523305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.509998,50.310001,55.189999,54.259998,6,1,1,0,0,13,3,1,1235.5,234634.22,0,0,2222.4824 -6562,8106,14781,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,6.8120856,7.0729651,3,0,0,0,-9,0,-893.90796,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8746939,0,0,52.080002,55.93,-9,-9,7,4,2,0,0,8,2,1,390,707017.88,0,0,-453.46548 -6563,8107,14782,14783,-9,-9,2,1,0,49,1,0,1,0,1,-9,4,3,0,1,3,0,7.8310146,7.9785171,2,0,-9,10,0,0,87.737663,0,0,0,49,1,3,1,3,1,2019,3,1,17,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9253187,7.9916139,.5139941,3,43.959999,50.110001,47.18,55.310001,5,4,2,0,0,12,4,1,2198,2043683.8,0,0,5026.4541 -6563,8107,14783,14782,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,3,9.0776272,8.8377628,0,2,0,-9,10,0,0,-161.83081,0,0,0,49,1,3,3,2,2,2019,2,2,11,0,50,50,15,1,0,4,0,14.607185,14.607185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,55.310001,43.959999,50.110001,6,4,2,0,0,12,4,1,2198,2043683.8,0,0,5026.4541 -6563,8108,14784,-9,14782,14783,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-971.86444,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,12,4,1,179,101012.7,0,0,2728.0173 -6564,8109,14785,-9,14786,14787,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.9637,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1241.3334,393761.84,0,0,3104.3008 -6564,8109,14786,14787,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,7.6704388,7.4329519,0,2,0,-9,7,0,-8,33.854557,0,0,1,52,2,3,1,-9,-9,2019,1,1,9,0,20,20,15,1,0,1,0,11.712921,11.712921,0,0,0,0,0,0,0,0,1,1,0,1.2740952,0,0,0,33.610001,61.540001,50.779999,45.450001,5,1,1,0,0,2,4,1,1241.3334,393761.84,0,0,3104.3008 -6564,8109,14787,14786,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.5787678,8.6051989,0,2,0,-9,7,0,8,180.75339,0,0,0,44,2,4,1,-9,-9,2019,1,2,10,0,60,65,15,1,0,1,0,9.3972445,9.3972445,0,0,0,0,0,0,0,0,1,1,0,3.1757951,0,0,0,50.779999,45.450001,33.610001,61.540001,6,1,1,0,0,2,4,1,1241.3334,393761.84,0,0,3104.3008 -6565,8110,14788,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,0,4,0,7.5323129,7.4656949,3,0,0,0,-9,0,-976.6731,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.2497013,7.8446436,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,4,3,1,138,753457.13,0,0,2127.6414 -6566,8111,14789,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-1001.6193,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,28.690001,-9,-9,5,3,4,0,0,8,1,0,206,4528.6553,0,0,2622.2917 -6567,8112,14790,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1063.7589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.009998,53.18,-9,-9,6,1,1,0,1,13,1,1,607,0,0,0,1441.0681 -6568,8113,14791,14792,-9,-9,1,1,1,89,1,0,0,0,2,-9,4,3,0,0,3,0,6.1105638,5.8974943,1,0,-9,7,0,8,108.6694,0,0,0,81,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,16.286139,0,0,0,0,0,1,1,0,1.6405489,5.6899905,0,0,54.310001,28.799999,47.169998,47.5,7,1,1,0,0,12,2,1,153,603381.13,0,0,2281.8115 -6568,8113,14792,14791,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-8,24.578966,0,0,0,89,2,3,3,1,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0428569,0,0,0,47.169998,47.5,54.310001,28.799999,6,1,1,0,0,12,2,1,153,603381.13,0,0,2281.8115 -6569,8114,14793,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-965.50629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,3,4,0,0,6,1,1,937,-226222.66,0,0,936.5733 -6570,8115,14794,14795,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.0952482,8.180666,0,1,0,1,1,-9,-3,-113.55747,0,0,0,35,1,3,1,2,2,2019,1,2,3,0,47,34,15,1,0,1,0,8.3121376,8.3121376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.310001,58.290001,53.889999,47.139999,6,1,1,0,0,9,5,1,254.5,12455.719,0,0,2283.3037 -6570,8115,14795,14794,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,3,8.593977,8.346035,0,1,0,-9,1,-9,3,-56.456173,-9,0,1,32,1,4,1,-9,-9,2019,1,1,4,0,47,0,15,1,0,1,0,11.470716,11.470716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.889999,47.139999,52.310001,58.290001,2,1,1,0,0,9,5,1,254.5,12455.719,0,0,2283.3037 -6571,8116,14796,-9,14797,-9,3,1,0,16,2,0,2,0,2,-9,3,2,0,0,3,0,3.5033329,3.7531412,4,0,0,0,-9,0,-1036.7654,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7707481,0,0,0,45.43,53.5,-9,-9,4,1,1,1,0,1,3,1,717,464566.06,0,0,2164.6523 -6571,8116,14797,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,0,4,8.5919552,8.4514933,6.1001501,4,0,-9,0,1,0,-826.75787,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,15,4,37,37,15,1,1,-9,0,16.487183,16.487183,0,0,0,0,0,0,0,0,1,1,0,6.0520935,0,0,0,40.709999,62.41,-9,-9,5,1,1,0,0,1,3,1,717,464566.06,0,0,2164.6523 -6572,8117,14798,14799,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,1,2,0,5.4603553,5.0300713,1,0,-9,32,0,2,-50.601761,0,0,0,72,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9998469,0,0,50,26.049999,50,47,6,1,1,0,0,11,2,0,464,376929.97,0,0,1992.8888 -6572,8117,14799,14798,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,35,0,-2,12.898088,0,0,0,74,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,4.702455,0,0,0,0,0,1,1,0,0,0,0,0,50,47,50,26.049999,5,1,1,0,0,11,2,0,464,376929.97,0,0,1992.8888 -6573,8118,14800,14801,-9,-9,1,1,1,58,1,0,1,0,2,-9,2,1,0,0,4,8.6796942,9.3196678,9.3034906,2,0,-9,24,0,12,-76.122734,0,0,0,46,2,4,1,2,3,2019,1,2,13,2,40,40,15,1,0,1,0,14.221832,14.221832,0,0,0,0,0,0,0,0,0,0,0,8.389761,8.8068981,0,0,39.939999,42.139999,54.200001,57.490002,6,1,1,0,0,9,5,1,1870,1409421.3,0,0,6951.7563 -6573,8118,14801,14800,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,8.5051765,8.6096525,5.9823375,2,0,-9,25,0,-12,-104.16068,0,0,0,58,2,4,1,2,2,2019,1,1,8,0,36,36,15,1,0,1,0,14.127547,14.127547,0,0,0,0,0,0,0,2,0,0,0,5.1043005,6.0793753,4.5313387,3,54.200001,57.490002,39.939999,42.139999,6,1,1,0,0,9,5,1,1870,1409421.3,0,0,6951.7563 -6573,8119,14802,-9,14801,14800,4,1,0,18,2,0,1,0,2,-9,7,2,0,0,4,5.4827156,5.7366495,0,3,0,0,0,-9,0,-900.01733,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,3,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.130001,54.470001,-9,-9,6,1,1,0,0,9,5,1,470,-121392.67,0,0,367.53229 -6574,8120,14803,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,0,4,7.8297577,8.1102791,0,3,0,0,0,-9,0,-879.99762,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,43,15,1,0,-9,0,7.521193,7.521193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,4,1,1,0,0,2,4,1,442,251409.69,0,0,254.38756 -6575,8121,14804,14805,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,6.7199917,6.9533758,1,0,-9,43,0,2,-138.03477,0,0,0,64,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3542948,6.5535378,0,0,57.099998,57.509998,50,47,6,4,5,0,0,4,2,1,824.5,468478.97,0,0,1721.6978 -6575,8121,14805,14804,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-2,-77.869789,0,0,0,66,3,4,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0803733,0,0,0,50,47,57.099998,57.509998,5,1,1,0,0,4,2,1,824.5,468478.97,0,0,1721.6978 -6576,8122,14806,14809,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,3,9.6630287,9.3064718,0,2,0,-9,3,0,11,64.753944,0,0,0,39,2,5,1,3,1,2019,1,1,30,12,35,45,15,1,1,1,0,56.59481,56.59481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.299999,65.400002,52.209999,59.91,2,1,1,0,0,9,5,1,609.75,2840143.5,0,0,5712.0703 -6576,8122,14807,-9,14809,14806,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.90515,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,609.75,2840143.5,0,0,5712.0703 -6576,8122,14808,-9,14809,14806,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-945.8205,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,5,1,609.75,2840143.5,0,0,5712.0703 -6576,8122,14809,14806,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,5,7.5552478,7.5073152,0,2,0,-9,3,0,-11,-120.97988,0,0,1,50,1,3,1,2,3,2019,1,2,8,0,32,30,15,1,0,1,0,8.6351156,8.6351156,0,0,0,0,0,0,0,0,0,0,0,1.5550538,0,0,0,52.209999,59.91,16.299999,65.400002,6,1,1,0,0,9,5,1,609.75,2840143.5,0,0,5712.0703 -6577,8123,14810,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,0,4,8.5611897,9.2156973,0,3,0,0,0,-9,0,-909.56592,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,0,15,1,0,-9,0,22.914555,22.914555,0,0,0,0,0,0,0,0,0,0,0,3.4558294,0,0,0,53,54,-9,-9,6,1,1,0,0,7,5,0,434,615594.31,0,0,2877.4695 -6578,8124,14811,14812,-9,-9,1,1,1,56,1,0,0,0,3,-9,1,1,0,0,2,4.9454474,4.893651,0,1,0,-9,4,0,-1,-39.551788,0,0,0,57,2,2,1,-9,-9,2019,1,2,14,3,60,0,15,1,0,1,0,.29467154,.29467154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.57,42.07,54.490002,44.290001,6,1,1,0,0,9,3,0,402,136868.13,0,0,1485.5745 -6578,8124,14812,14811,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,2,7.8270936,7.6016159,0,1,0,-9,4,0,1,-12.485471,0,0,0,56,3,2,1,-9,-9,2019,1,1,8,0,32,32,15,1,0,1,0,8.4551048,8.4551048,0,0,0,0,0,0,0,14.5,0,0,0,7.4048586,0,13.701447,3,54.490002,44.290001,53.57,42.07,6,1,1,0,0,9,3,0,402,136868.13,0,0,1485.5745 -6579,8125,14813,14814,-9,-9,2,1,1,54,1,0,0,0,2,-9,8,3,1,1,1,0,5.7078209,6.1821132,1,0,-9,16,0,1,37.705006,0,0,0,53,3,3,3,3,3,2019,4,1,32,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1344466,0,0,21.43,21.57,21.9,61.619999,2,1,1,0,0,4,2,1,712.5,301430.84,0,0,4062.5532 -6579,8125,14814,14813,-9,-9,1,1,0,53,1,0,0,0,3,-9,6,3,0,1,3,0,4.8372045,4.8179703,1,0,-9,16,0,-1,33.369293,0,0,0,54,2,1,3,3,3,2019,4,2,27,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.908895,124.46745,2,21.9,61.619999,21.43,21.57,2,1,1,0,0,4,2,1,712.5,301430.84,0,0,4062.5532 -6580,8126,14815,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1066.6429,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,50,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,0,0,76.113625,3,53,40.540001,-9,-9,3,1,1,0,0,5,1,1,1354,-9904.7529,0,0,0 -6581,8127,14816,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,4,3,0,0,3,0,7.9065795,7.7664566,3,0,0,0,-9,0,-1010.611,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7890134,7.763011,0,0,59.07,43.049999,-9,-9,6,1,1,0,0,2,3,1,3209,388838.84,0,0,1432.4427 -6582,8128,14817,14818,-9,-9,1,1,1,67,1,0,0,0,3,-9,1,1,0,0,3,8.6469402,8.4643259,0,1,0,-9,43,0,1,145.93102,0,0,0,66,3,5,3,3,3,2019,2,2,9,0,60,60,15,1,0,4,0,11.753815,11.753815,1,0,6.1054945,0,0,0,0,0,1,1,0,6.3872752,0,0,0,49.700001,37.84,55.68,54.240002,5,1,1,0,0,13,4,1,3814,1368859.5,0,0,3130.5088 -6582,8128,14818,14817,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,43,0,-1,-49.436913,0,0,0,67,3,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7469747,0,0,0,55.68,54.240002,49.700001,37.84,6,1,1,0,0,13,4,1,3814,1368859.5,0,0,3130.5088 -6583,8129,14819,-9,14821,14820,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.2352,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,838.75,961355.75,0,0,4678.3447 -6583,8129,14820,14821,-9,-9,1,1,1,43,1,0,2,0,2,-9,1,1,0,0,4,9.2477188,9.0427208,0,2,0,-9,10,0,-1,-23.989061,0,0,0,44,2,4,1,3,2,2019,1,2,12,1,40,12,15,1,0,1,0,39.024544,39.024544,0,0,0,0,0,0,0,2,1,1,0,.28963637,0,.10810082,3,41.419998,58.169998,37.75,63.75,5,1,1,0,0,10,5,1,838.75,961355.75,0,0,4678.3447 -6583,8129,14821,14820,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.0431828,6.5980134,0,2,0,-9,10,0,1,-97.988136,0,0,1,43,2,4,1,2,2,2019,1,1,15,3,8,12,15,1,0,1,0,14.785587,14.785587,0,0,0,0,0,0,0,7,1,1,0,3.4346633,0,7.275362,3,37.75,63.75,41.419998,58.169998,5,1,1,0,0,10,5,1,838.75,961355.75,0,0,4678.3447 -6583,8129,14822,-9,14821,14820,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.82153,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,1,838.75,961355.75,0,0,4678.3447 -6584,8130,14823,-9,14824,14826,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-899.27069,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,1,1,533.5,239712.02,0,0,1502.0454 -6584,8130,14824,14826,-9,-9,2,1,0,45,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,-26,0,0,0,0,71,3,4,3,3,3,2019,4,1,4,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,49.150002,58.470001,47.360001,1,2,3,0,0,5,1,1,533.5,239712.02,0,0,1502.0454 -6584,8130,14825,-9,14824,14826,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.0911,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,5,1,1,533.5,239712.02,0,0,1502.0454 -6584,8130,14826,14824,-9,-9,1,1,1,71,1,0,2,0,3,-9,4,3,0,0,4,0,0,0,2,0,-9,14,0,26,0,0,0,0,45,3,4,3,3,3,2019,4,2,8,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,47.360001,63.48,49.150002,7,2,3,0,0,5,1,1,533.5,239712.02,0,0,1502.0454 -6585,8131,14827,-9,14829,14828,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1102.0306,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,1,774,1034124.9,0,0,4251.5981 -6585,8131,14828,14829,-9,-9,1,1,1,45,1,0,3,0,2,-9,2,1,0,0,3,8.8665762,8.9595747,0,2,0,-9,10,0,3,-11.693767,0,0,0,42,2,3,1,-9,-9,2019,1,2,11,0,42,78,15,1,0,1,0,20.200464,20.200464,0,0,0,0,0,0,0,0,1,1,0,1.6955143,0,0,0,54.27,39.68,52,54.509998,6,1,1,0,0,2,4,1,774,1034124.9,0,0,4251.5981 -6585,8131,14829,14828,-9,-9,2,1,0,42,1,0,3,0,2,-9,2,1,0,0,3,8.1470013,8.1597986,0,2,0,-9,22,0,-3,-188.00549,0,0,1,45,2,3,1,2,2,2019,1,1,9,0,34,33,15,1,0,1,0,10.513962,10.513962,0,0,0,0,0,0,0,0,1,1,0,4.7495298,0,0,0,52,54.509998,54.27,39.68,6,1,1,0,0,2,4,1,774,1034124.9,0,0,4251.5981 -6585,8131,14830,-9,14829,14828,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.3843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,774,1034124.9,0,0,4251.5981 -6585,8131,14831,-9,14829,14828,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.48566,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,774,1034124.9,0,0,4251.5981 -6586,8132,14832,14833,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,59,0,-6,-47.653942,0,0,0,82,2,4,3,3,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,15.524817,5.84057,0,0,0,0,1,1,0,3.176913,0,0,0,41.880001,48.450001,51.830002,57.200001,6,1,1,0,0,9,2,1,196.5,239402.98,0,0,1121.444 -6586,8132,14833,14832,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,4,0,7.3531542,7.0546622,1,0,-9,59,0,6,-18.157003,0,0,0,76,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6069751,7.4847035,0,0,51.830002,57.200001,41.880001,48.450001,6,1,1,0,0,9,2,1,196.5,239402.98,0,0,1121.444 -6587,8133,14834,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,0,4,0,7.5618749,7.2182064,3,0,0,0,-9,0,-1064.2709,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,1.240992,0,0,0,2.6722984,0,0,1,1,0,0,7.0140777,0,0,64.07,47.52,-9,-9,7,1,1,0,0,8,3,0,881,13988.603,0,0,310.194 -6588,8134,14835,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,1,1,0,0,4,9.2835331,9.2684374,0,3,0,0,0,-9,0,-1004.4026,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,25,25,15,1,0,-9,0,44.751961,44.751961,0,0,0,0,0,0,0,0,0,0,0,6.6100678,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,8,5,1,2812,1845483.1,0,0,3033.0896 -6589,8135,14836,14837,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,8.5240545,8.55126,0,1,0,-9,6,0,-2,-113.3207,0,0,0,55,2,3,1,-9,-9,2019,1,1,12,2,37,37,15,1,0,1,0,13.827263,13.827263,0,0,0,0,0,0,0,0,0,0,0,4.3287148,0,0,0,39.330002,58.880001,35.310001,54.009998,3,1,1,0,0,9,5,1,230,767958.81,0,0,3311.656 -6589,8135,14837,14836,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.8378325,8.2979422,0,1,0,-9,6,0,2,40.636753,0,0,0,53,1,4,1,3,3,2019,1,2,23,11,38,38,15,1,1,1,0,18.198893,18.198893,0,0,0,0,0,0,0,0,0,0,0,2.8028147,0,0,0,35.310001,54.009998,39.330002,58.880001,5,1,1,0,0,9,5,1,230,767958.81,0,0,3311.656 -6590,8136,14838,14839,-9,-9,2,1,0,87,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,67,0,-1,0,0,0,0,88,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,1,7,1,1,370,62531.328,0,0,12.626051 -6590,8136,14839,14838,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,67,0,1,0,0,0,0,87,2,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7611735,0,0,0,55,45,53,44,6,1,1,0,1,7,1,1,370,62531.328,0,0,12.626051 -6591,8137,14840,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-920.25745,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,2.9359064,0,0,0,1.3327219,61.670147,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,9,1,0,168,-3603.2603,0,0,1833.1686 -6592,8138,14841,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,2,8.6513319,8.8353806,0,3,0,0,0,-9,0,-907.34558,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,25,10,35,60,15,1,1,-9,0,17.382339,17.382339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.74,46.240002,-9,-9,4,1,1,0,0,12,5,1,276,398220.41,0,0,2814.301 -6593,8139,14842,14843,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.268405,8.627615,6.6940527,1,0,-9,1,-9,3,-33.728813,-9,1,1,24,1,4,3,-9,-9,2019,2,1,10,0,37,0,15,1,0,3,0,11.142861,11.142861,0,0,0,0,0,0,0,0,0,0,0,6.6710415,0,0,0,49.060001,58.639999,51.830002,57.200001,6,4,5,0,0,12,4,0,327,-55979.063,0,0,1918.4316 -6593,8139,14843,14842,-9,-9,1,1,1,24,1,0,0,0,1,1,3,3,0,0,4,0,0,0,1,0,1,1,-9,-3,40.722683,-9,1,0,27,1,4,1,-9,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,49.060001,58.639999,6,1,1,1,0,12,4,0,327,-55979.063,0,0,1918.4316 -6594,8140,14844,14845,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,9.356741,9.4265175,0,2,0,-9,2,0,14,-6.8873234,0,0,0,32,2,4,1,2,1,2019,1,3,6,1,52,48,15,1,0,1,0,26.522842,26.522842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,57.16,56.150002,6,1,1,0,0,9,5,1,746.66669,1113987.1,0,0,5891.7598 -6594,8140,14845,14844,-9,-9,3,1,1,32,1,0,1,0,2,-9,2,1,0,0,4,8.2024498,8.2212219,0,2,0,-9,2,0,-14,70.21328,0,0,0,46,1,4,1,-9,-9,2019,1,1,8,0,50,45,15,1,0,1,0,10.446722,10.446722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.77,58.57,6,2,3,0,0,9,5,1,746.66669,1113987.1,0,0,5891.7598 -6594,8140,14846,-9,14844,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.97131,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,5,1,746.66669,1113987.1,0,0,5891.7598 -6595,8141,14847,14848,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,0,4,0,4.5722051,4.8646517,1,0,-9,33,0,-1,-59.472366,0,0,0,60,3,4,1,-9,-9,2019,1,1,10,0,48,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0495586,0,0,0,51.240002,58.84,51.830002,57.200001,2,4,2,0,0,8,2,1,820.5,386167.5,0,0,162.5607 -6595,8141,14848,14847,-9,-9,1,1,0,60,1,0,0,0,3,-9,1,1,0,0,4,0,0,0,1,0,-9,33,0,1,-8.1562643,0,0,0,59,3,4,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,51.240002,58.84,6,1,1,0,0,8,2,1,820.5,386167.5,0,0,162.5607 -6595,8142,14849,-9,14848,14847,3,1,0,20,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-939.11261,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.540001,47.830002,-9,-9,4,4,2,1,1,8,1,1,330,128390.59,0,0,0 -6596,8143,14850,14851,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,1,8.9920187,8.8658943,0,2,0,-9,15,-9,0,-15.265981,-9,0,1,43,1,4,1,2,3,2019,1,2,24,10,45,0,15,1,1,1,0,21.634104,21.634104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.610001,33.66,48.869999,58.549999,2,1,1,0,0,11,5,1,454.5,2046197.3,0,0,4974.5332 -6596,8143,14851,14850,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.6708851,9.10637,0,2,0,-9,15,-9,0,16.698521,-9,0,0,43,1,1,1,3,3,2019,1,1,7,0,48,0,15,1,0,1,0,16.296099,16.296099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,30.610001,33.66,5,1,1,0,0,11,5,1,454.5,2046197.3,0,0,4974.5332 -6596,8143,14852,-9,14850,14851,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,-9,0,-9,0,-1046.1085,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,11,5,1,454.5,2046197.3,0,0,4974.5332 -6596,8143,14853,-9,14850,14851,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-950.22333,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,11,5,1,454.5,2046197.3,0,0,4974.5332 -6597,8144,14854,-9,14857,14856,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.50476,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,1,385.75,101247.95,0,0,3170.7651 -6597,8144,14855,-9,14857,14856,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.3329,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,385.75,101247.95,0,0,3170.7651 -6597,8144,14856,14857,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,0,5,8.6286135,8.7485561,0,2,0,-9,16,0,4,65.520348,0,0,0,35,2,4,1,2,2,2019,1,2,18,6,49,51,15,1,1,1,0,13.044147,13.044147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,64.75,51.77,58.57,5,1,1,0,0,4,4,1,385.75,101247.95,0,0,3170.7651 -6597,8144,14857,14856,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,7.8463507,7.5586252,0,2,0,-9,16,0,-4,90.832016,0,0,1,39,2,5,1,2,2,2019,1,1,14,3,32,32,15,1,0,1,0,7.6040502,7.6040502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,41.43,64.75,5,1,1,0,0,4,4,1,385.75,101247.95,0,0,3170.7651 -6598,8145,14858,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,1,2,0,7.0048819,6.9935622,3,0,0,0,-9,0,-938.95996,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8401465,7.1180263,0,0,51.189999,22.700001,-9,-9,6,1,1,0,0,13,2,0,79,114242.76,0,0,1739.1959 -6599,8146,14859,-9,14860,14861,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.11877,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,667.66669,18103.291,0,0,2087.6165 -6599,8146,14860,14861,-9,-9,2,1,0,24,1,1,1,0,2,-9,2,1,0,0,4,7.068954,7.3886771,0,2,0,-9,6,0,-6,-133.38889,0,1,1,30,2,4,1,-9,-9,2019,1,1,11,2,24,34,15,1,0,1,0,6.1896996,6.1896996,0,0,0,0,0,0,0,0,1,1,0,.4540582,0,0,0,46,58,49,58,5,1,1,0,0,4,4,1,667.66669,18103.291,0,0,2087.6165 -6599,8146,14861,14860,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,0,4,8.1078196,8.0184774,0,2,0,-9,6,0,6,-13.076292,0,0,0,24,2,4,1,3,3,2019,1,2,10,1,48,50,15,1,0,1,0,9.2132645,9.2132645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,46,58,5,1,1,0,0,4,4,1,667.66669,18103.291,0,0,2087.6165 -6600,8147,14862,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,0,4,8.2908792,8.2915506,0,3,0,0,0,-9,0,-928.26929,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,37,38,15,1,0,-9,0,11.009475,11.009475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,50.599998,-9,-9,6,1,1,0,0,11,4,1,556,1136486.6,0,0,1095.7456 -6600,8148,14863,-9,14862,-9,2,1,1,42,2,0,0,0,2,-9,1,1,0,0,4,3.9718466,3.7550681,0,3,0,0,0,-9,0,-1066.0073,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,35,40,15,1,0,-9,1,.17707583,.17707583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,4,2,0,0,11,2,1,91,286412.69,0,0,34.992752 -6601,8149,14864,14865,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,8.2815905,7.9685597,0,1,0,-9,40,0,3,-69.031258,0,0,0,58,2,4,1,3,2,2019,1,1,7,0,40,40,15,1,0,1,0,9.7734385,9.7734385,0,0,0,0,0,0,0,7,0,0,0,.51419413,0,5.0278277,3,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,5,4,0,713.5,100240.34,0,0,2297.21 -6601,8149,14865,14864,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.2781858,6.8205295,0,1,0,-9,40,0,-3,-26.450987,0,0,0,61,2,4,1,3,2,2019,1,2,6,0,10,3,15,1,0,1,0,12.930942,12.930942,0,0,0,0,0,0,0,2,0,0,0,4.2495747,0,0,3,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,5,4,0,713.5,100240.34,0,0,2297.21 -6601,8150,14866,-9,14865,14864,3,1,1,22,2,0,0,0,3,-9,2,1,0,0,2,7.7101398,7.7801795,0,3,0,0,0,-9,0,-1013.7156,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,40,15,1,0,-9,1,9.1517916,9.1517916,0,0,0,0,0,0,0,0,0,0,0,.80060387,0,0,0,41.52,54.220001,-9,-9,4,1,1,0,0,5,3,0,743,0,0,0,1960.7866 -6601,8151,14867,-9,14865,14864,4,1,0,20,2,0,0,0,2,-9,11,3,0,0,4,6.5649667,6.5436449,0,3,0,0,0,-9,0,-1070.0865,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.76551992,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,5,2,0,623,7952.6338,0,0,-105.63094 -6602,8152,14868,14871,-9,-9,2,1,0,55,1,0,2,0,2,-9,4,3,0,0,5,0,0,0,2,0,-9,5,0,-3,-31.272781,0,0,0,58,2,5,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9637101,0,0,0,57.060001,57.759998,62.389999,56.709999,6,1,1,0,0,4,2,1,550.25,428193.66,0,0,1558.5596 -6602,8152,14869,-9,14868,14871,3,1,0,17,2,0,2,1,2,0,7,2,0,0,5,3.0921874,3.0917509,0,2,0,0,0,-9,0,-943.29059,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,4,2,1,550.25,428193.66,0,0,1558.5596 -6602,8152,14870,-9,14868,14871,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.10553,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,4,2,1,550.25,428193.66,0,0,1558.5596 -6602,8152,14871,14868,-9,-9,1,1,1,58,1,0,2,0,2,-9,4,3,0,0,5,0,7.7047124,7.7567716,2,0,-9,5,0,3,-88.68222,0,0,0,55,2,5,3,2,2,2019,4,2,6,0,10,14,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8074566,7.6653728,0,0,62.389999,56.709999,57.060001,57.759998,7,1,1,0,0,4,2,1,550.25,428193.66,0,0,1558.5596 -6603,8153,14872,14874,-9,-9,2,1,0,35,1,0,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,17,0,-7,0,0,0,1,42,2,4,3,3,3,2019,4,1,3,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.990002,41.32,54.200001,57.490002,7,2,3,1,0,7,1,0,451.66666,-2698.5188,0,0,1179.9451 -6603,8153,14873,-9,14872,14874,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-843.18878,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,1,0,451.66666,-2698.5188,0,0,1179.9451 -6603,8153,14874,14872,-9,-9,1,1,1,42,1,0,3,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,17,0,7,0,0,0,0,35,2,3,3,3,3,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,62.990002,41.32,2,2,3,1,0,7,1,0,451.66666,-2698.5188,0,0,1179.9451 -6604,8154,14875,-9,14878,14877,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1035.7476,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,918.75,368236.53,0,0,2443.793 -6604,8154,14876,-9,14878,14877,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.17889,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,918.75,368236.53,0,0,2443.793 -6604,8154,14877,14878,-9,-9,2,1,1,37,1,1,2,0,1,-9,1,1,0,0,3,7.7877774,7.7141385,0,2,0,-9,7,0,1,-106.49403,0,0,0,36,1,3,1,-9,-9,2019,1,1,10,0,32,35,15,1,0,1,0,8.0975075,8.0975075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,51.919998,42.419998,54.75,6,1,1,0,0,11,4,1,918.75,368236.53,0,0,2443.793 -6604,8154,14878,14877,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,0,3,7.8913546,8.4986801,0,2,0,-9,7,0,-1,119.4438,0,0,1,37,1,3,1,1,1,2019,1,2,14,3,29,29,15,1,0,1,0,13.233579,13.233579,0,0,0,0,0,0,0,0,1,1,0,4.0831065,0,0,0,42.419998,54.75,55.189999,51.919998,5,1,1,0,0,11,4,1,918.75,368236.53,0,0,2443.793 -6605,8155,14879,14880,-9,-9,1,1,0,53,1,0,0,0,3,-9,1,1,0,0,2,7.9986906,7.817081,0,1,0,-9,18,0,1,-71.598503,0,0,0,52,3,4,1,3,3,2019,1,2,9,0,30,39,15,1,0,1,0,10.289798,10.289798,0,0,0,0,0,0,0,7,1,1,0,0,0,.81092191,3,53.23,47.509998,42.689999,56.27,2,1,1,0,0,9,3,0,1945.5,836116.5,0,0,1742.4075 -6605,8155,14880,14879,-9,-9,2,1,1,52,1,0,0,0,3,-9,1,1,0,0,4,5.4146814,5.3847623,0,1,0,-9,29,0,-1,26.714443,0,0,0,53,3,2,1,3,3,2019,1,1,8,0,50,50,15,1,0,1,0,.41826221,.41826221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.689999,56.27,53.23,47.509998,6,1,1,0,0,9,3,0,1945.5,836116.5,0,0,1742.4075 -6606,8156,14881,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,3,3,0,0,5,6.864398,6.7903361,0,3,0,0,0,-9,0,-976.38263,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,20,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.259998,64.389999,-9,-9,3,2,3,1,0,6,2,1,1809,-180616.94,0,0,958.51953 -6607,8157,14882,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,1,1,0,0,4,7.2641792,7.2160168,0,3,0,-9,0,-9,0,-982.66345,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,0,15,1,0,-9,0,2.6482992,2.6482992,0,0,0,0,0,0,0,0,0,0,0,.49154833,0,0,0,48.759998,53.240002,-9,-9,6,1,1,0,0,5,3,1,421,-73344.164,0,0,1629.8354 -6607,8158,14883,-9,-9,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.6813841,8.4638786,0,3,0,-9,0,-9,0,-964.10327,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,0,15,1,0,-9,0,16.830683,16.830683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,5,1,560,174707.81,0,0,2148.1665 -6608,8159,14884,-9,14886,14885,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1105.3105,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,1103.25,891286.5,0,0,3245.749 -6608,8159,14885,14886,-9,-9,1,1,1,64,1,0,2,0,1,-9,4,3,0,0,3,7.4716525,7.4397082,4.3228273,2,0,-9,24,0,23,-22.976204,0,0,0,41,1,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5690875,4.1845517,0,0,54.369999,54.799999,52.73,39,6,1,1,0,0,6,4,1,1103.25,891286.5,0,0,3245.749 -6608,8159,14886,14885,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,8.1252823,8.5100126,7.9641881,2,0,-9,25,0,-23,57.331024,0,0,1,64,1,3,3,3,3,2019,2,1,11,2,30,30,15,1,0,4,0,10.284603,10.284603,0,0,0,0,0,0,0,0,1,1,0,2.1244416,8.0585537,0,0,52.73,39,54.369999,54.799999,6,1,1,0,0,6,4,1,1103.25,891286.5,0,0,3245.749 -6608,8159,14887,-9,14886,14885,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.9968,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,1103.25,891286.5,0,0,3245.749 -6609,8160,14888,14889,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,5.0463195,5.0496759,1,0,-9,56,0,5,-30.955891,0,0,0,77,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1375451,5.2413368,0,0,55,45,52,45,6,1,1,0,0,4,1,1,238.5,155268.72,0,0,487.8894 -6609,8160,14889,14888,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-5,93.731216,0,0,0,82,3,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,55,45,6,1,1,0,0,4,1,1,238.5,155268.72,0,0,487.8894 -6610,8161,14890,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,5.69241,5.4396715,3,0,0,0,-9,0,-935.13519,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4958477,0,0,58.900002,45.740002,-9,-9,5,1,1,0,0,12,2,1,170,46506.754,0,0,610.02509 -6610,8162,14891,-9,14890,-9,2,1,1,35,2,0,0,0,1,1,2,1,0,0,3,5.9066553,5.7509365,0,3,0,0,0,-9,0,-973.12482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.790001,53.790001,-9,-9,5,1,1,0,0,12,2,1,973,107622.27,0,0,1537.5719 -6611,8163,14892,-9,14894,14893,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.54816,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,440.33334,142791.41,0,0,2707.8782 -6611,8163,14893,14894,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,8.7334137,8.505579,0,2,0,-9,22,0,-2,26.502321,0,0,0,47,2,4,1,2,2,2019,1,2,12,1,37,37,15,1,0,1,0,17.925615,17.925615,0,0,0,0,0,0,0,0,1,1,0,4.5977116,0,0,0,54.200001,57.490002,57.16,56.150002,5,1,1,0,0,10,4,1,440.33334,142791.41,0,0,2707.8782 -6611,8163,14894,14893,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,8.2157688,8.321847,0,2,0,-9,9,0,2,-113.89315,0,0,0,45,1,4,1,2,3,2019,1,1,8,0,32,32,15,1,0,1,0,11.439494,11.439494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.200001,57.490002,2,1,1,0,0,10,4,1,440.33334,142791.41,0,0,2707.8782 -6612,8164,14895,-9,-9,-9,1,1,1,69,3,1,1,0,2,-9,4,3,0,1,3,0,0,0,4,0,0,0,-9,0,-966.92535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,28.736895,26.151106,0,0,0,1,1,0,0,0,0,0,52,47,-9,-9,5,3,4,0,0,8,1,0,541,68389.781,0,0,615.23865 -6612,8165,14896,-9,14898,14897,4,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-938.11224,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,8,1,0,438.66666,691892.88,0,0,420.55893 -6612,8165,14897,14898,-9,14895,2,1,1,35,1,1,1,0,1,-9,1,1,0,0,4,4.1488142,3.5032191,0,2,0,1,1,-9,0,52.489773,0,0,0,35,1,5,3,-9,2,2019,2,3,10,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,57.060001,57.759998,5,3,4,0,0,8,1,0,438.66666,691892.88,0,0,420.55893 -6612,8165,14898,14897,-9,-9,3,1,0,35,1,1,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,1,-9,0,36.465015,-9,0,1,35,1,4,1,-9,-9,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.53016847,0,116.7403,3,57.060001,57.759998,50,57,5,3,4,0,0,8,1,0,438.66666,691892.88,0,0,420.55893 -6613,8166,14899,14900,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,56,0,8,0,0,0,0,75,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9018114,0,0,0,47.799999,39.099998,54.380001,49.27,5,1,1,0,0,6,1,1,816.5,176963.47,0,0,934.79242 -6613,8166,14900,14899,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-8,0,0,0,0,83,3,2,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1466478,0,0,0,54.380001,49.27,47.799999,39.099998,6,1,1,0,0,6,1,1,816.5,176963.47,0,0,934.79242 -6613,8167,14901,-9,14900,14899,3,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,8.9645071,8.8447104,0,3,0,0,0,-9,0,-1056.4692,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,46,50,15,1,0,-9,1,14.570524,14.570524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.299999,55.279999,-9,-9,5,1,1,0,0,6,5,1,74,180593.16,0,0,2463.9697 -6614,8168,14902,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-934.85547,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.9421389,0,0,1,1,0,0,0,0,0,61.279999,24.91,-9,-9,6,1,1,0,0,8,1,0,1057,277148.44,0,0,1587.8354 -6615,8169,14903,14904,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,11,0,0,0,0,71,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3769069,0,0,0,60.470001,46.560001,57.869999,41.330002,6,1,1,0,0,10,1,1,179.5,191181.86,0,0,1468.4917 -6615,8169,14904,14903,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-11,0,0,0,0,82,3,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7371192,0,0,0,57.869999,41.330002,60.470001,46.560001,6,1,1,0,0,10,1,1,179.5,191181.86,0,0,1468.4917 -6616,8170,14905,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.469964,8.3474102,0,3,0,0,0,-9,0,-938.8866,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,45,15,1,0,-9,0,13.085488,13.085488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,54.330002,-9,-9,6,1,1,0,0,11,4,1,298,-14327.472,0,0,2020.9386 -6617,8171,14906,-9,-9,-9,1,1,1,41,2,0,1,0,2,-9,2,1,0,0,2,6.9328246,6.8004127,0,4,0,0,0,-9,0,-1091.7375,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,16,16,15,1,1,-9,0,7.4939499,7.4939499,0,0,0,0,0,0,0,7,1,1,0,0,0,7.1288123,3,24.030001,57.049999,-9,-9,2,1,1,0,0,9,2,0,4762,279609.59,0,0,1388.9673 -6618,8172,14907,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,4,7.7563457,7.7119374,0,3,0,0,0,-9,0,-1013.8829,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,38,38,15,1,0,-9,0,8.2621441,8.2621441,0,0,0,0,0,0,0,0,0,0,0,3.9317973,0,0,0,52,55,-9,-9,6,1,1,0,0,1,3,1,180,5405.5498,0,0,1719.8951 -6619,8173,14908,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,0,3,0,5.881412,5.8052573,3,0,0,0,-9,0,-1010.9664,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5546532,0,0,51.02,46.68,-9,-9,6,1,1,0,0,10,2,1,1937,496237,0,0,787.35486 -6620,8174,14909,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,8.0371761,7.8376122,3,0,0,0,-9,0,-906.1391,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4442153,7.9785323,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,1,4,1,395,883155.94,0,0,2727.438 -6621,8175,14910,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,1,1,0,5.9105415,5.5580683,3,0,0,0,-9,0,-1056.1508,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,4,1,-9,0,0,0,1,13.970737,0,0,0,6.8083725,132.87633,0,1,1,0,0,5.7688985,0,0,42.799999,24.01,-9,-9,1,1,1,0,0,8,2,1,583,145425.58,0,0,3210.2109 -6622,8176,14911,14912,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,5,7.8434944,7.614018,0,1,0,-9,23,0,4,79.979454,0,0,0,48,2,4,1,3,3,2019,1,2,9,0,30,30,15,1,0,1,0,12.935789,12.935789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,56.57,57.779999,7,1,1,0,0,5,5,0,495.33334,1095611.4,0,0,4270.0952 -6622,8176,14912,14911,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,0,4,8.9253149,8.923954,0,1,0,-9,23,0,-4,26.497383,0,0,0,52,2,5,1,3,-9,2019,1,1,8,0,60,45,15,1,0,1,0,14.165856,14.165856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.779999,57.060001,57.759998,6,1,1,0,0,5,5,0,495.33334,1095611.4,0,0,4270.0952 -6622,8176,14913,-9,14911,14912,3,1,1,17,2,0,0,0,2,-9,1,3,0,0,3,0,0,0,1,0,0,0,-9,0,-1055.4077,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,45,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.150002,49.040001,-9,-9,6,1,1,0,0,5,5,0,495.33334,1095611.4,0,0,4270.0952 -6623,8177,14914,-9,14915,14916,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,0,5.2391725,5.0874987,2,0,0,0,-9,0,-1118.2126,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0930495,0,0,0,48.419998,60.529999,-9,-9,3,1,1,0,0,8,2,1,1206.3334,4782.3345,0,0,-75.234329 -6623,8177,14915,14916,-9,-9,1,1,0,52,1,0,1,0,3,-9,1,1,0,0,5,6.5423627,6.7772293,0,2,0,-9,28,0,-5,25.338465,0,0,0,57,2,4,1,2,3,2019,1,2,6,0,15,16,15,1,0,1,0,7.6786084,7.6786084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,57.16,56.150002,6,1,1,0,0,8,2,1,1206.3334,4782.3345,0,0,-75.234329 -6623,8177,14916,14915,-9,-9,2,1,1,57,1,0,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,28,0,5,49.696995,0,0,0,52,3,5,1,1,1,2019,1,1,8,0,48,56,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9876771,0,0,0,57.16,56.150002,54.689999,57.470001,5,4,2,0,0,8,2,1,1206.3334,4782.3345,0,0,-75.234329 -6624,8178,14917,14919,-9,-9,1,1,1,45,1,0,2,0,3,-9,3,3,0,1,2,0,0,0,2,0,-9,1,-9,9,-9.2419815,-9,0,0,36,3,2,1,2,2,2019,3,2,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.733994,1,36.790001,45.740002,41,41,3,1,1,1,0,6,2,0,455.33334,-68949.438,0,0,3035.187 -6624,8178,14918,-9,14919,14917,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1048.9495,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,455.33334,-68949.438,0,0,3035.187 -6624,8178,14919,14917,-9,-9,2,1,0,36,1,0,2,0,3,-9,2,1,0,1,2,7.1057229,7.065062,0,2,0,-9,1,-9,0,49.088867,-9,0,1,45,3,2,3,-9,-9,2019,2,1,13,1,20,0,15,1,0,3,0,7.1838546,7.1838546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,41,36.790001,45.740002,4,1,1,0,0,6,2,0,455.33334,-68949.438,0,0,3035.187 -6624,8179,14920,-9,14919,14917,4,1,0,18,2,0,2,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-840.72827,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4819877,0,0,0,47.150002,55.389999,-9,-9,6,1,1,1,0,6,2,0,381,-68633.375,0,0,1045.1997 -6625,8180,14921,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,4.2875023,4.2955279,3,0,0,0,-9,0,-1010.4581,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,4.4115186,0,0,0,9.8388672,9.050662,0,1,1,0,4.7446022,4.5478516,0,0,53,44,-9,-9,6,1,1,0,0,11,1,0,4143,108020.6,0,0,1985.0421 -6626,8181,14922,14923,-9,-9,2,1,0,61,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,39,0,-8,-14.090523,-9,0,0,69,2,4,3,3,2,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.7213187,0,113.32994,2,55.93,49.950001,60.119999,54.799999,6,1,1,0,0,2,2,1,294,596448,0,0,1186.4169 -6626,8181,14923,14922,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.1414924,6.996314,1,0,-9,40,0,8,25.750719,0,0,0,61,3,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4265895,7.2310405,0,0,60.119999,54.799999,55.93,49.950001,6,1,1,0,0,2,2,1,294,596448,0,0,1186.4169 -6627,8182,14924,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,1,0,5.4434323,5.5863018,3,0,0,0,-9,0,-1005.2509,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.7805812,0,0,0,1,1,0,3.9819314,5.671453,0,0,47.310001,10.02,-9,-9,5,1,1,0,0,12,2,0,160,28349.232,0,0,1732.2216 -6628,8183,14925,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,1,1,0,0,2,6.9770803,7.0605612,5.7719469,3,0,0,0,-9,0,-878.67285,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,30,36,15,1,0,-9,0,3.4382384,3.4382384,0,0,0,0,0,0,0,0,1,1,0,0,6.1352658,0,0,45.450001,49.66,-9,-9,5,1,1,0,1,5,2,1,277,581072.63,0,0,504.7431 -6629,8184,14926,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,3,0,6.6058655,6.904222,3,0,0,0,-9,0,-1065.7325,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6687799,6.3883729,0,0,50.040001,36.689999,-9,-9,6,1,1,0,0,11,2,1,523,347919.03,0,0,523.17712 -6630,8185,14927,-9,14929,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,8.725132,9.0406055,0,3,0,0,0,-9,0,-1178.6223,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,43,0,15,1,0,-9,1,16.847372,16.847372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.740002,57.220001,-9,-9,2,1,1,0,0,6,5,1,443,-91995.586,0,0,1880.0383 -6630,8186,14928,14929,-9,-9,3,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,7.831387,8.3608599,8.0541649,1,0,-9,8,0,3,-56.613361,0,0,0,55,1,4,1,-9,-9,2019,1,2,14,1,20,0,15,1,0,1,0,13.51717,13.51717,0,0,0,0,0,0,0,0,0,0,0,7.4096189,7.4670324,0,0,43.369999,57.279999,48.869999,58.549999,6,1,1,0,0,6,5,1,464.5,964057.81,0,0,5790.1318 -6630,8186,14929,14928,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,8.8299751,9.1926861,0,1,0,-9,8,0,-3,-96.63652,0,0,0,58,2,3,1,3,3,2019,1,3,9,1,37,37,15,1,0,1,0,24.993267,24.993267,0,0,0,0,0,0,0,0,0,0,0,2.6535566,0,0,0,48.869999,58.549999,43.369999,57.279999,5,1,1,0,0,6,5,1,464.5,964057.81,0,0,5790.1318 -6631,8187,14930,14931,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.5559196,8.4810915,1,0,-9,49,0,1,-117.00378,0,0,0,71,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8836846,8.7983189,0,0,52.599998,52.880001,55.759998,39.560001,6,1,1,0,0,10,4,1,1600,1603828,0,0,3749.1245 -6631,8187,14931,14930,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,4.7726541,4.8390226,1,0,-9,49,0,-1,16.515764,0,0,0,72,2,3,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5171742,4.6495957,0,0,55.759998,39.560001,52.599998,52.880001,6,1,1,0,0,10,4,1,1600,1603828,0,0,3749.1245 -6632,8188,14932,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,4,9.3513079,9.7845125,0,3,0,0,0,-9,0,-996.8172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,60,55,15,1,0,-9,0,24.108776,24.108776,0,0,0,0,0,0,0,0,0,0,0,3.6272781,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,9,5,0,375,667493.75,0,0,3163.1514 -6633,8189,14933,14934,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,3,2.2251489,0,0,0,73,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.040001,37.349998,39.830002,46.23,5,2,3,0,1,5,1,1,525,152606.69,0,0,1325.7975 -6633,8189,14934,14933,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,4.9723749,4.9066095,1,0,-9,53,0,-3,23.023785,0,0,0,76,3,2,3,3,3,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9109654,0,0,39.830002,46.23,37.040001,37.349998,6,2,3,0,1,5,1,1,525,152606.69,0,0,1325.7975 -6634,8190,14935,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,1,2,0,6.4339461,6.638536,3,0,0,0,-9,0,-1164.7819,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,13.470006,0,0,1,1,0,6.517817,6.0683537,0,0,38.380001,19.190001,-9,-9,6,1,1,0,0,13,2,1,111,144211.33,0,0,2893.8218 -6635,8191,14936,14937,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,0,2,0,7.6075926,7.2668343,1,0,-9,61,0,-3,86.212227,0,0,0,84,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.3028355,0,1,56.349998,21.870001,54,46,5,1,1,0,0,8,2,1,896.5,704766.63,0,0,2015.3943 -6635,8191,14937,14936,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,3,8.0444498,0,0,0,81,2,2,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,56.349998,21.870001,6,1,1,0,0,8,2,1,896.5,704766.63,0,0,2015.3943 -6636,8192,14938,14939,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,1,0,8.0963259,7.6737661,1,0,-9,29,0,-13,87.073997,0,0,0,78,2,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.464828,7.9350424,0,3,55.34,16.92,51.490002,57.57,6,1,1,0,0,10,3,1,562.5,701905.38,0,0,2701.2576 -6636,8192,14939,14938,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,29,0,13,-83.40284,0,0,0,65,2,1,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,55.34,16.92,2,1,1,0,0,10,3,1,562.5,701905.38,0,0,2701.2576 -6637,8193,14940,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,2,7.816256,7.8672242,0,3,0,0,0,-9,0,-1123.9484,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,42,15,1,0,-9,0,7.4157796,7.4157796,0,0,0,0,0,0,0,0,1,1,0,.31579122,0,0,0,62.810001,30.809999,-9,-9,6,1,1,0,0,6,4,1,1251,574850,0,0,771.44287 -6638,8194,14941,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,5.832839,6.0683241,3,0,0,0,-9,0,-1028.7628,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7336316,0,0,44.080002,54.610001,-9,-9,6,1,1,0,0,12,2,0,1369,347833.44,0,0,1254.2515 -6639,8195,14942,14944,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,4,8.3753643,8.459734,0,2,0,-9,23,0,-4,-123.33331,0,0,1,44,2,3,1,2,3,2019,1,1,7,0,37,37,15,1,0,1,0,12.80844,12.80844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,52.990002,51.279999,6,1,1,0,0,5,5,1,505.75,57192.355,0,0,4916.0557 -6639,8195,14943,-9,14942,14944,5,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.5472,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,5,1,505.75,57192.355,0,0,4916.0557 -6639,8195,14944,14942,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,9.2575197,8.7887869,0,2,0,-9,23,0,4,-.55336875,0,0,0,40,2,4,1,2,2,2019,1,2,10,0,48,53,15,1,0,1,0,25.466766,25.466766,0,0,0,0,0,0,0,0,0,0,0,2.9507356,0,0,0,52.990002,51.279999,54.790001,55.860001,6,1,1,0,0,5,5,1,505.75,57192.355,0,0,4916.0557 -6639,8195,14945,-9,14942,14944,4,1,0,17,2,0,2,1,2,0,7,2,0,0,4,5.9059601,6.3599267,0,2,0,0,0,-9,0,-1044.0502,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,5,5,1,505.75,57192.355,0,0,4916.0557 -6639,8196,14946,-9,14942,14944,3,1,0,18,2,0,2,0,2,1,11,3,0,0,3,6.6626887,6.8847418,0,3,0,0,0,-9,0,-955.71167,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,4,35,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,54.220001,-9,-9,6,1,1,0,0,5,2,1,1498,168518.67,0,0,1687.5188 -6640,8197,14947,14949,-9,-9,1,1,0,52,1,0,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,18,0,5,-40.143967,0,0,0,47,3,3,1,3,2,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.349998,36.310001,55.360001,51.57,4,1,1,0,1,8,3,1,522.79999,1469789.8,0,0,2243.9128 -6640,8197,14948,-9,14947,14949,5,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1012.4534,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,4,2,0,0,8,3,1,522.79999,1469789.8,0,0,2243.9128 -6640,8197,14949,14947,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,0,3,7.9509406,7.6727638,0,2,0,-9,18,0,-5,135.80345,0,0,0,52,2,2,3,3,3,2019,2,1,9,0,35,38,15,1,0,3,0,9.6695719,9.6695719,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.360001,51.57,42.349998,36.310001,6,3,4,0,0,8,3,1,522.79999,1469789.8,0,0,2243.9128 -6640,8197,14950,-9,14947,14949,3,1,0,17,2,0,2,0,2,-9,2,3,0,0,3,6.8536892,7.0092244,0,2,0,0,0,-9,0,-1025.9774,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,25,11,40,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.83,52.07,-9,-9,3,4,2,0,0,8,3,1,522.79999,1469789.8,0,0,2243.9128 -6640,8197,14951,-9,14947,14949,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1153.3149,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,4,2,0,0,8,3,1,522.79999,1469789.8,0,0,2243.9128 -6641,8198,14952,14953,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.4425969,6.3883381,1,0,-9,50,0,-4,48.296848,0,0,0,74,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4450488,0,0,57.16,56.150002,59.310001,49.810001,7,1,1,0,0,7,3,1,1661.5,500953.06,0,0,2721.6719 -6641,8198,14953,14952,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.9387589,7.6569438,1,0,-9,50,0,4,-28.508625,0,0,0,70,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5151422,7.581924,0,0,59.310001,49.810001,57.16,56.150002,7,1,1,0,0,7,3,1,1661.5,500953.06,0,0,2721.6719 -6642,8199,14954,14955,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,5.2578187,5.1228056,1,0,-9,56,0,-1,-70.907257,0,0,0,76,2,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.970161,0,0,52,45,54,46,5,1,1,0,0,4,3,1,770,403184.19,0,0,1705.9136 -6642,8199,14955,14954,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.7462521,7.7830567,1,0,-9,56,0,1,-40.696201,0,0,0,75,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5906997,0,0,54,46,52,45,5,1,1,0,0,4,3,1,770,403184.19,0,0,1705.9136 -6642,8200,14956,-9,-9,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.9995041,7.6476898,0,3,0,0,0,-9,0,-1129.9922,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,37,20,15,1,0,-9,0,9.2634373,9.2634373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,4,3,1,892,-85527.773,0,0,308.35849 -6643,8201,14957,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,8,3,1,1,3,0,5.6970005,5.7464938,3,0,0,0,-9,0,-974.0697,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,1,0,0,2.9143536,0,0,0,0,1,1,0,0,5.635077,0,0,51,48,-9,-9,5,1,1,0,0,13,2,1,923,137882.72,0,0,1729.3594 -6643,8202,14958,-9,-9,14957,2,1,0,40,2,0,0,0,1,-9,2,1,0,0,3,8.618948,8.6367168,0,3,0,0,0,-9,0,-1039.0211,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,15,5,42,0,15,1,1,-9,1,13.415369,13.415369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.900002,48.23,-9,-9,4,1,1,0,1,13,5,1,1462,307981.06,0,0,3529.0608 -6644,8203,14959,-9,14961,14960,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-1055.7351,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,20,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,33,-9,-9,3,1,1,0,0,2,4,1,655.5,501035.06,0,0,3880.0559 -6644,8203,14960,14961,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.4309015,8.6549492,0,2,0,-9,10,0,3,40.057526,0,0,0,37,1,3,1,-9,-9,2019,1,1,10,0,60,50,15,1,0,1,0,11.549817,11.549817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.419998,52.880001,45.470001,34.299999,6,1,1,0,0,2,4,1,655.5,501035.06,0,0,3880.0559 -6644,8203,14961,14960,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,3,8.3428173,8.3058395,0,2,0,-9,15,0,-3,-59.491543,0,0,1,40,2,3,1,2,2,2019,1,2,11,0,47,37,15,1,0,1,0,8.5689783,8.5689783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.470001,34.299999,46.419998,52.880001,5,1,1,0,0,2,4,1,655.5,501035.06,0,0,3880.0559 -6644,8203,14962,-9,14961,14960,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1104.521,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,655.5,501035.06,0,0,3880.0559 -6645,8204,14963,14964,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,0,4,0,8.0114841,7.9388232,1,0,-9,20,0,-8,-77.079506,0,0,0,65,2,4,3,2,2,2019,4,1,7,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9978771,7.949439,0,0,58.549999,46.110001,54.790001,55.860001,7,1,1,0,0,12,3,1,1725.5,1317668.8,0,0,4720.2729 -6645,8204,14964,14963,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.0777903,6.7144494,1,0,-9,20,0,8,-101.02692,0,0,0,57,2,4,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7798212,6.9025698,0,0,54.790001,55.860001,58.549999,46.110001,7,1,1,0,0,12,3,1,1725.5,1317668.8,0,0,4720.2729 -6646,8205,14965,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,5,8.227725,8.2384501,0,3,0,0,0,-9,0,-939.19287,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,77,15,1,0,-9,0,10.598771,10.598771,0,0,0,0,0,0,0,0,0,0,0,7.4200912,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,10,4,1,123,123289.13,0,0,1755.3064 -6647,8206,14966,-9,-9,-9,1,1,0,22,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-916.1734,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,5,1,0,763,-122820.7,0,0,1415.7858 -6648,8207,14967,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1109.2319,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,2.9371235,3,30.6,18.530001,-9,-9,1,1,1,0,1,6,1,0,857,-74396.898,0,0,2004.1923 -6648,8208,14968,-9,14967,-9,2,1,0,21,2,0,0,0,2,-9,1,1,0,1,3,0,0,0,3,0,0,0,-9,0,-992.43201,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.4645672,0,0,0,46.59,43.599998,-9,-9,4,1,1,0,0,6,1,0,151,0,0,0,491.17749 -6649,8209,14969,-9,14971,14970,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.04803,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,10,4,1,863.5,223076.56,0,0,2787.4443 -6649,8209,14970,14971,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.4281235,8.1702461,0,2,0,-9,16,0,0,49.620525,0,0,0,43,1,4,1,2,2,2019,1,2,16,4,40,37,15,1,1,1,0,9.2276745,9.2276745,0,0,0,0,0,0,0,0,1,1,0,2.3130963,0,0,0,36.619999,58.959999,48.869999,58.549999,5,1,1,0,0,10,4,1,863.5,223076.56,0,0,2787.4443 -6649,8209,14971,14970,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,7.8101821,8.111474,0,2,0,-9,10,0,0,73.997383,0,0,1,43,1,4,1,-9,-9,2019,1,1,10,0,27,30,15,1,0,1,0,13.725351,13.725351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,36.619999,58.959999,5,1,1,0,0,10,4,1,863.5,223076.56,0,0,2787.4443 -6649,8209,14972,-9,14971,14970,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1138.3381,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,863.5,223076.56,0,0,2787.4443 -6650,8210,14973,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,1,1,0,0,4,0,5.0168543,5.0314217,3,0,-9,0,1,0,-1067.0731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,30,15,1,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.5794077,4.6854782,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,9,2,1,363,-70925.719,0,0,1377.3214 -6651,8211,14974,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,5,8.3249521,8.3585224,0,3,0,0,0,-9,0,-980.65289,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,43,38,15,1,0,-9,1,11.981372,11.981372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,4,1,920,-68724.406,0,0,1902.8435 -6652,8212,14975,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,1,1,0,0,3,9.1309996,9.3234434,0,3,0,0,0,-9,0,-1157.3931,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,40,15,1,0,-9,0,23.733727,23.733727,0,0,0,0,0,0,0,0,0,0,0,2.8310623,0,0,0,51.759998,47.75,-9,-9,5,1,1,0,0,4,5,1,451,540768.69,0,0,4089.2754 -6653,8213,14976,14977,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.9722342,8.4474249,1,0,-9,40,0,7,-19.556479,0,0,0,58,2,4,1,-9,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0136251,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,5,4,1,312,799308,0,0,2504.6365 -6653,8213,14977,14976,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.2842631,7.3891907,0,1,0,-9,40,0,-7,-64.664948,0,0,0,65,2,4,3,3,3,2019,2,1,12,0,23,20,15,1,0,4,0,6.6271648,6.6271648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,5,4,1,312,799308,0,0,2504.6365 -6654,8214,14978,-9,14979,-9,2,1,0,12,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-917.8783,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,1,762.5,355363.94,0,0,2522.8325 -6654,8214,14979,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,7.164288,7.2803507,3,0,0,0,-9,0,-990.67267,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,25,10,0,10,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1275845,7.3614168,115.69353,3,32.950001,58.119999,-9,-9,3,1,1,0,0,10,3,1,762.5,355363.94,0,0,2522.8325 -6655,8215,14980,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-940.27844,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,38,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.040001,53.77,-9,-9,4,1,1,0,0,13,1,1,414,-14577.745,0,0,0 -6656,8216,14981,14982,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,0,2,5.678863,5.347013,0,2,0,-9,24,0,9,-65.355011,0,0,0,47,2,4,1,3,2,2019,1,1,11,2,5,5,15,1,0,1,0,6.7497292,6.7497292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.43,27.629999,52,55,5,1,1,0,0,5,3,0,480,-2262.8191,0,0,3308.7981 -6656,8216,14982,14981,-9,-9,1,1,1,47,1,0,1,0,2,-9,1,1,0,0,4,7.843596,7.7132068,0,2,0,-9,24,0,0,-1.9397223,0,0,0,56,2,2,1,2,2,2019,1,2,9,1,24,26,15,1,0,1,0,13.096543,13.096543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48.43,27.629999,6,1,1,0,0,5,3,0,480,-2262.8191,0,0,3308.7981 -6656,8216,14983,-9,14981,14982,4,1,0,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-929.63959,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.959999,60.259998,-9,-9,6,1,1,0,0,5,3,0,480,-2262.8191,0,0,3308.7981 -6656,8217,14984,-9,14981,14982,3,1,1,19,2,0,1,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1123.3173,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.509998,54.259998,-9,-9,5,1,1,0,0,5,1,0,831,-113399.7,0,0,0 -6657,8218,14985,14986,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.6155615,9.2325277,1,0,-9,9,0,1,67.57312,0,0,0,71,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82858539,8.6487017,0,0,58.919998,48.59,50,47,6,1,1,0,0,1,5,1,257.5,6254986,0,0,7447.5298 -6657,8218,14986,14985,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,9.220994,8.5992193,1,0,-9,9,0,-1,90.278801,0,0,0,72,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1779685,8.957551,0,0,50,47,58.919998,48.59,6,1,1,0,0,1,5,1,257.5,6254986,0,0,7447.5298 -6658,8219,14987,14988,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,0,3,8.2238035,8.2460327,0,1,0,-9,3,0,0,129.80743,0,1,0,23,1,5,1,-9,-9,2019,1,2,12,0,40,66,15,1,0,1,0,9.6254902,9.6254902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.740002,50.459999,49.360001,58.529999,6,1,1,0,0,6,5,1,366,338398.34,0,0,2323.2363 -6658,8219,14988,14987,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,5,8.4332161,8.2304201,0,1,0,-9,3,0,0,-150.53026,0,1,1,23,1,3,1,-9,-9,2019,1,1,9,0,50,66,15,1,0,1,0,10.383501,10.383501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.360001,58.529999,48.740002,50.459999,7,4,2,0,0,6,5,1,366,338398.34,0,0,2323.2363 -6659,8220,14989,14990,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,6.8159218,8.1847658,7.6975141,1,0,-9,39,0,-1,78.08046,0,0,0,63,1,2,3,2,2,2019,2,1,11,2,10,10,15,1,0,4,0,12.214299,12.214299,0,0,0,0,0,0,0,0,1,1,0,4.4455142,7.1935172,0,0,50,47,57.18,45.759998,5,1,1,0,0,7,5,1,992,503617.69,0,0,4062.2676 -6659,8220,14990,14989,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,2,0,8.5043936,9.4121351,1,0,-9,39,0,1,153.24225,0,0,0,62,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.589469,0,0,57.18,45.759998,50,47,7,1,1,0,0,7,5,1,992,503617.69,0,0,4062.2676 -6659,8221,14991,-9,14989,14990,3,1,1,23,2,0,0,0,2,1,2,1,0,0,4,8.3721676,8.3224869,0,3,0,0,0,-9,0,-987.07269,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,55,0,15,1,0,-9,1,9.4695005,9.4695005,0,0,0,0,0,0,0,0,1,1,0,1.2184832,0,0,0,49,58,-9,-9,5,1,1,0,0,7,5,1,277,24809.373,0,0,2161.0681 -6660,8222,14992,-9,14994,14995,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-861.48853,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,1,945.25,26946.379,0,0,1948.0144 -6660,8222,14993,-9,14994,14995,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.16,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,3,1,945.25,26946.379,0,0,1948.0144 -6660,8222,14994,14995,-9,-9,1,1,0,25,1,1,2,0,2,-9,97,3,0,0,2,0,0,0,2,0,-9,6,0,-2,-62.921455,0,1,1,27,2,3,1,2,1,2019,3,2,15,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.02,47.07,40.970001,48.849998,6,1,1,0,0,5,3,1,945.25,26946.379,0,0,1948.0144 -6660,8222,14995,14994,-9,-9,2,1,1,27,1,1,2,0,2,-9,2,1,0,0,3,8.1018658,7.9874959,0,2,0,-9,6,0,2,87.384407,0,1,0,25,2,2,3,-9,-9,2019,2,1,13,3,39,42,15,1,0,3,0,8.6560287,8.6560287,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.970001,48.849998,45.02,47.07,3,1,1,0,0,5,3,1,945.25,26946.379,0,0,1948.0144 -6661,8223,14996,14997,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,6.289465,6.5535216,0,1,0,-9,9,0,-1,-25.344475,0,0,0,56,1,4,1,2,2,2019,1,1,7,0,25,25,15,1,0,1,0,2.8024943,2.8024943,0,0,0,0,0,0,0,0,0,0,0,7.3068485,0,0,0,54.200001,57.490002,41.060001,62.040001,6,1,1,0,0,1,3,1,242.5,1204.2344,0,0,1808.4141 -6661,8223,14997,14996,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,7.2441216,7.6286745,0,1,0,-9,9,0,1,10.924508,0,0,0,55,1,4,1,3,2,2019,1,2,13,4,8,8,15,1,1,1,0,21.937191,21.937191,0,0,0,0,0,0,0,0,0,0,0,6.9844642,0,0,0,41.060001,62.040001,54.200001,57.490002,7,1,1,0,0,1,3,1,242.5,1204.2344,0,0,1808.4141 -6662,8224,14998,14999,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,0,7.2653332,6.927681,1,0,-9,48,0,14,56.535324,0,0,0,65,3,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.2766948,24.28018,1,52.639999,38.41,13.82,37.139999,4,1,1,0,0,1,2,1,1365,761675.25,0,0,1201.0239 -6662,8224,14999,14998,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,48,0,-14,-82.01181,0,0,0,79,2,2,3,3,3,2019,4,1,15,2,0,0,15,4,0,4,0,0,0,1,0,31.215363,12.401618,3.5432785,1.5887277,0,0,1,1,0,0,0,0,0,13.82,37.139999,52.639999,38.41,1,1,1,0,0,1,2,1,1365,761675.25,0,0,1201.0239 -6663,8225,15000,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,0,2,0,8.0454159,7.9540577,3,0,-9,0,-9,0,-1018.0255,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8613346,8.3291168,0,0,52.959999,35.57,-9,-9,4,1,1,0,0,11,3,1,1177,782837.25,0,0,1229.3658 -6664,8226,15001,-9,15002,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1071.3116,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,10,2,1,271,-33268.598,0,0,199.39592 -6664,8226,15002,-9,-9,-9,1,1,0,48,2,0,2,0,2,-9,1,1,0,0,3,5.9342346,6.5593495,6.3838434,4,0,0,0,-9,0,-1124.9648,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,4,4,30,15,1,1,-9,0,9.1746368,9.1746368,0,0,0,0,0,0,0,0,1,1,0,6.2180109,0,0,0,53.709999,49.66,-9,-9,6,4,2,0,1,10,2,1,271,-33268.598,0,0,199.39592 -6664,8226,15003,-9,15002,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.32233,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,2,1,271,-33268.598,0,0,199.39592 -6665,8227,15004,-9,15005,-9,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-977.18439,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,1456.5,75845.336,0,0,1508.9016 -6665,8227,15005,-9,-9,-9,1,1,0,53,3,0,2,0,2,-9,6,3,0,1,1,0,5.4048853,5.7272592,4,0,0,0,-9,0,-800.56049,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,5.6572499,0,67.712608,3,49.009998,22.540001,-9,-9,3,1,1,0,1,4,2,0,1456.5,75845.336,0,0,1508.9016 -6665,8228,15006,-9,15005,-9,2,1,1,21,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-884.38721,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.98,63,-9,-9,3,1,1,1,1,4,1,0,446,248360.2,0,0,385.69888 -6665,8229,15007,-9,15005,-9,3,1,0,18,2,0,2,0,2,1,97,3,0,0,2,0,0,0,3,0,0,0,-9,0,-936.15271,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.4,46.610001,-9,-9,3,1,1,0,0,4,2,0,790,11496.584,0,0,1057.1261 -6666,8230,15008,-9,15011,15009,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-871.82196,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,744,189265.11,0,0,3414.3159 -6666,8230,15009,15011,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,8.3263493,8.573576,0,2,0,-9,16,0,0,-34.777817,0,0,0,41,1,5,1,2,3,2019,1,1,11,0,35,37,15,1,0,1,0,16.047138,16.047138,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.624496,3,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,12,4,1,744,189265.11,0,0,3414.3159 -6666,8230,15010,-9,15011,15009,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-757.66974,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,744,189265.11,0,0,3414.3159 -6666,8230,15011,15009,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,1,5,7.7769198,7.553905,0,2,0,-9,20,0,0,48.12653,0,0,1,41,2,4,1,1,3,2019,1,2,6,0,15,14,15,1,0,1,0,15.832649,15.832649,0,0,0,0,0,0,0,5.48,1,1,0,5.9949317,0,0,3,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,12,4,1,744,189265.11,0,0,3414.3159 -6667,8231,15012,15013,-9,-9,1,1,0,62,1,0,0,0,2,-9,1,1,0,0,3,7.0234423,7.912292,7.3127103,1,0,-9,41,0,0,-12.706615,0,0,0,62,2,4,1,2,3,2019,1,2,10,0,10,10,15,1,0,1,0,10.667203,10.667203,0,0,0,0,0,0,0,0,0,0,0,5.7096586,7.387538,0,0,57.34,47.919998,55,53,6,1,1,0,0,10,4,1,1414.5,825664.13,0,0,2317.3152 -6667,8231,15013,15012,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,7.5266805,7.7849216,0,1,0,-9,7,0,0,59.056896,0,0,0,62,2,3,1,-9,-9,2019,1,1,8,0,36,36,15,1,0,1,0,6.3608623,6.3608623,0,0,0,0,0,0,0,0,0,0,0,1.7759509,0,0,0,55,53,57.34,47.919998,6,1,1,0,0,10,4,1,1414.5,825664.13,0,0,2317.3152 -6668,8232,15014,-9,-9,-9,3,1,0,44,3,0,2,0,2,-9,8,3,1,1,2,0,6.3899941,6.2596002,4,0,0,0,-9,0,-933.01855,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7882981,0,0,0,38.279999,25.530001,-9,-9,5,1,1,0,1,4,2,0,492.33334,245494.25,0,0,1826.7168 -6668,8232,15015,-9,15014,-9,1,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-747.75629,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,2,0,492.33334,245494.25,0,0,1826.7168 -6668,8232,15016,-9,15014,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-976.17639,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,0,492.33334,245494.25,0,0,1826.7168 -6669,8233,15017,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,5,1,0,0,3,6.9318733,6.7363119,5.2310896,4,0,0,0,-9,0,-1142.5066,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,22,8,16,16,15,1,1,-9,0,7.3671813,7.3671813,0,0,0,0,0,0,0,0,1,1,0,5.6437521,0,0,0,51.040001,35.740002,-9,-9,4,1,1,0,0,5,2,1,385,-38523.629,0,0,1742.0692 -6669,8233,15018,-9,15017,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1097.4061,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,5,2,1,385,-38523.629,0,0,1742.0692 -6670,8234,15019,15020,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,41,0,5,81.571716,0,0,0,65,2,4,3,-9,-9,2019,4,1,26,11,0,0,15,4,1,4,0,0,0,1,0,4.6389742,0,0,0,0,0,1,1,0,0,0,0,0,39.009998,21.43,47.450001,44.32,3,1,1,0,0,9,2,1,785,482311.66,0,0,812.51965 -6670,8234,15020,15019,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,5.7633214,5.7413249,1,0,-9,41,0,-5,-87.952614,0,0,0,70,2,1,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.9542019,5.6143074,22.235661,1,47.450001,44.32,39.009998,21.43,3,1,1,0,0,9,2,1,785,482311.66,0,0,812.51965 -6671,8235,15021,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,4,0,6.8647084,6.8745146,3,0,0,0,-9,0,-1081.1492,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1042299,7.063602,0,0,54.470001,39.740002,-9,-9,6,1,1,0,0,7,2,1,267,165266.64,0,0,1738.0853 -6672,8236,15022,-9,15023,15024,1,1,0,47,2,0,0,0,2,-9,2,1,0,0,2,7.8478546,8.1329651,0,3,0,0,0,-9,0,-1052.2135,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,43,43,15,1,1,-9,1,6.8907442,6.8907442,0,0,0,0,0,0,0,0,1,1,0,2.0794394,0,0,0,52.32,28.83,-9,-9,3,1,1,0,0,9,3,1,919,142138.92,0,0,183.36569 -6672,8237,15023,15024,-9,-9,3,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,4.5941095,4.5850306,1,0,-9,8,0,0,-57.778656,0,0,0,73,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8459845,4.7415085,0,0,57.16,56.150002,64.400002,42,7,1,1,0,0,9,2,1,997,46285.203,0,0,1770.5848 -6672,8237,15024,15023,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.0397305,5.467392,1,0,-9,8,0,0,36.354343,0,0,0,73,2,4,3,3,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3997688,5.2441063,0,0,64.400002,42,57.16,56.150002,6,1,1,0,0,9,2,1,997,46285.203,0,0,1770.5848 -6673,8238,15025,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,5,0,6.2105069,6.3082714,3,0,0,0,-9,0,-942.47198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.655022,6.0063138,0,0,51.73,58.82,-9,-9,5,1,1,0,0,11,2,0,523,277014.94,0,0,748.84991 -6674,8239,15026,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,3,0,8.0218039,8.1630192,3,0,0,0,-9,0,-973.26031,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.576766,7.5737696,0,0,53.290001,45.740002,-9,-9,6,1,1,0,0,7,3,1,181,864470.25,0,0,1658.8293 -6675,8240,15027,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1081.1426,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.439999,59.619999,-9,-9,6,1,1,0,0,12,1,0,1110,-67109.156,0,0,343.38803 -6676,8241,15028,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1105.6812,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.880001,32.91,-9,-9,6,1,1,0,0,4,1,0,417,-31006.566,0,0,396.69217 -6677,8242,15029,15030,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,7.7948108,8.0714598,5.9899421,1,0,-9,42,0,5,49.755375,0,0,0,56,2,2,1,3,3,2019,1,2,11,1,38,38,15,1,0,1,0,7.4122233,7.4122233,0,0,0,0,0,0,0,14.5,0,0,0,5.8160105,6.3443837,15.078769,3,46.330002,55.93,63.23,34.720001,6,1,1,0,0,5,4,1,1266.5,34475.785,0,0,2243.8313 -6677,8242,15030,15029,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,7.9463663,7.7330427,0,1,0,-9,42,0,-5,-43.488171,0,0,0,61,3,3,1,2,2,2019,1,1,8,0,35,35,15,1,0,1,0,7.6477642,7.6477642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.23,34.720001,46.330002,55.93,6,1,1,0,0,5,4,1,1266.5,34475.785,0,0,2243.8313 -6678,8243,15031,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,0,4,0,6.8329139,6.7356086,3,0,0,0,-9,0,-958.74933,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0877943,7.2018242,0,0,47.23,58.080002,-9,-9,6,1,1,0,0,6,2,1,831,143067.02,0,0,1006.8877 -6679,8244,15032,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,0,5,8.2931213,7.9545517,0,3,0,0,0,-9,0,-1015.4715,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,59,49,15,1,0,-9,0,6.5646315,6.5646315,0,0,0,0,0,0,0,0,0,0,0,3.1841147,0,0,0,58.049999,54.52,-9,-9,5,1,1,0,0,1,4,0,887,153629.02,0,0,1509.4761 -6680,8245,15033,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1016.768,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,1.6774518,0,26.675303,3,54.529999,23.280001,-9,-9,7,1,1,0,0,10,1,0,405,144614.63,0,0,1923.5718 -6681,8246,15034,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-901.43628,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.630001,36.380001,-9,-9,1,1,1,0,1,13,1,0,306,0,0,0,594.74817 -6682,8247,15035,15036,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,0,3,8.1203375,7.9855809,0,1,0,-9,2,0,4,48.725555,0,0,0,44,2,5,1,2,2,2019,1,2,6,0,44,44,15,1,0,1,0,9.0490961,9.0490961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,57.060001,57.759998,7,1,1,0,0,10,4,1,555.5,88213.313,0,0,2027.9277 -6682,8247,15036,15035,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,5,7.744133,7.8373022,0,1,0,-9,2,0,-4,-120.88353,0,0,1,48,2,3,1,-9,-9,2019,1,1,9,0,22,38,15,1,0,1,0,15.368366,15.368366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,41.34,56.619999,7,1,1,0,0,10,4,1,555.5,88213.313,0,0,2027.9277 -6683,8248,15037,15038,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,4,7.661541,7.6104493,0,2,0,-9,17,0,4,-62.988358,0,0,1,39,2,3,1,3,2,2019,1,2,9,1,24,22,15,1,0,1,0,7.9278007,7.9278007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,56.279999,41.549999,5,1,1,0,0,7,4,0,519.66669,467968.44,0,0,2394.3438 -6683,8248,15038,15037,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,0,3,8.230916,7.9129944,0,2,0,-9,17,0,-4,-30.650562,0,0,0,43,2,4,1,2,3,2019,1,1,11,0,54,55,15,1,0,1,0,5.9552455,5.9552455,0,0,0,0,0,0,0,0,1,1,0,2.854831,0,0,0,56.279999,41.549999,58.150002,52.91,4,1,1,0,0,7,4,0,519.66669,467968.44,0,0,2394.3438 -6683,8248,15039,-9,15037,15038,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.3691,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,0,519.66669,467968.44,0,0,2394.3438 -6684,8249,15040,15041,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,0,4,7.1059837,6.9734802,0,1,0,-9,11,0,6,26.995497,0,0,0,54,2,3,1,3,3,2019,1,1,10,0,20,20,15,1,0,1,0,8.3701706,8.3701706,0,0,0,0,0,0,0,0,0,0,0,.31867832,0,0,0,45.91,59.889999,50.43,45.82,4,1,1,0,0,9,4,1,590.5,906345.94,0,0,2592.4546 -6684,8249,15041,15040,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.7774153,8.390974,0,1,0,-9,11,0,-6,10.048038,0,0,0,60,3,4,1,3,3,2019,1,2,15,4,13,60,15,1,1,1,0,52.110863,52.110863,0,0,0,0,0,0,0,2,0,0,0,3.5335383,0,5.8458362,3,50.43,45.82,45.91,59.889999,5,1,1,0,0,9,4,1,590.5,906345.94,0,0,2592.4546 -6685,8250,15042,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,3,8.6725426,8.8279095,0,3,0,0,0,-9,0,-1054.9796,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,39,0,15,1,1,-9,0,18.601294,18.601294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.040001,61.630001,-9,-9,4,1,1,0,0,7,5,1,666,298767.44,0,0,2476.0039 -6685,8251,15043,-9,15042,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.0778913,8.0925283,0,3,0,0,0,-9,0,-987.04498,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,56,56,15,1,0,-9,1,8.4561939,8.4561939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,50.18,-9,-9,5,1,1,0,0,7,4,1,4199,103838.91,0,0,1264.0656 -6686,8252,15044,15045,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,7.3969254,7.6061358,0,1,0,-9,7,0,3,109.95793,0,0,0,55,3,3,1,3,3,2019,1,2,7,0,28,28,15,1,0,1,0,6.3078074,6.3078074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,56.189999,41.560001,7,1,1,0,0,5,3,1,412,-35661.996,0,0,781.77771 -6686,8252,15045,15044,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,0,3,7.5620604,7.6963053,0,1,0,-9,7,0,-3,51.35918,0,0,0,58,2,3,1,2,3,2019,1,1,8,0,38,38,15,1,0,1,0,7.167882,7.167882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.189999,41.560001,41.34,56.619999,6,1,1,0,0,5,3,1,412,-35661.996,0,0,781.77771 -6687,8253,15046,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.1801839,7.4014196,0,3,0,0,0,-9,0,-1131.3943,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,25,10,20,40,15,1,1,-9,0,11.101312,11.101312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.48,62.52,-9,-9,2,1,1,0,1,4,3,0,1239,42056.305,0,0,675.3241 -6688,8254,15047,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,0,5,8.418519,8.4468908,0,3,0,0,0,-9,0,-1142.0149,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,38,38,15,1,0,-9,0,13.838345,13.838345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,5,1,1,0,1,13,4,1,102,-39394.027,0,0,3052.4778 -6689,8255,15048,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-923.09113,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.77,50.150002,-9,-9,6,1,1,0,0,12,1,0,249,-123465.93,0,0,-450.47977 -6690,8256,15049,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1117.1309,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.34,23.610001,-9,-9,6,3,4,0,1,8,1,0,277,1843927.5,0,0,2630.3479 -6690,8257,15050,-9,-9,-9,2,1,0,57,2,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1029.4132,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,5,3,4,0,1,8,1,0,510,171378.25,0,0,623.74976 -6691,8258,15051,15052,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,5,0,5.4005852,5.0851893,1,0,-9,51,0,0,137.77432,0,0,0,70,2,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.023839,0,0,57.060001,57.759998,58.32,50.220001,6,1,1,0,0,5,3,1,259,1376441.3,0,0,2950.9773 -6691,8258,15052,15051,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,8.4690104,8.5358028,1,0,-9,51,0,0,30.489386,0,0,0,70,3,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3160892,8.256958,0,0,58.32,50.220001,57.060001,57.759998,6,1,1,0,0,5,3,1,259,1376441.3,0,0,2950.9773 -6692,8259,15053,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,3,0,7.1132212,7.7174726,3,0,0,0,-9,0,-1100.838,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.18489157,7.6006722,0,0,63.310001,38.470001,-9,-9,7,1,1,0,0,4,3,1,2282,397155.28,0,0,811.81519 -6693,8260,15054,15057,-9,-9,2,1,0,41,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,-1,16.957285,0,0,1,42,1,4,1,2,3,2019,3,1,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8058329,0,0,0,38.34,62.119999,52.82,53.970001,2,4,2,0,1,13,4,1,523.75,143747.5,0,0,2004.2631 -6693,8260,15055,-9,15054,15057,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.9278,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,13,4,1,523.75,143747.5,0,0,2004.2631 -6693,8260,15056,-9,15054,15057,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.26672,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,13,4,1,523.75,143747.5,0,0,2004.2631 -6693,8260,15057,15054,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.9943886,8.7780476,0,2,0,-9,12,0,1,44.891708,0,0,0,41,1,4,3,2,2,2019,2,2,6,0,50,50,15,1,0,3,0,18.788307,18.788307,0,0,0,0,0,0,0,0,1,1,0,2.662957,0,0,0,52.82,53.970001,38.34,62.119999,5,1,1,0,0,13,4,1,523.75,143747.5,0,0,2004.2631 -6694,8261,15058,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,0,4,7.740972,7.5448456,0,3,0,0,0,-9,0,-959.49249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,28,21,15,1,0,-9,0,7.5834398,7.5834398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,2,3,1,366,2506.9995,0,0,807.14154 -6695,8262,15059,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,6.2224793,6.7368469,3,0,0,0,-9,0,-986.02399,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1391606,6.3201981,0,0,53,47,-9,-9,5,1,1,0,0,9,2,1,744,426494.56,0,0,2167.4097 -6696,8263,15060,15061,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-1,0,0,1,1,25,2,3,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.0013313,1,54.369999,54.799999,46,53,6,1,1,0,0,9,1,0,430.75,120534.58,0,0,1963.0741 -6696,8263,15061,15060,-9,-9,2,1,1,25,1,1,2,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,6,0,1,0,0,1,0,24,2,3,3,-9,-9,2019,4,1,23,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,54.369999,54.799999,3,1,1,0,0,9,1,0,430.75,120534.58,0,0,1963.0741 -6696,8263,15062,-9,15060,15061,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.7233,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,430.75,120534.58,0,0,1963.0741 -6696,8263,15063,-9,15060,15061,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.4233,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,430.75,120534.58,0,0,1963.0741 -6697,8264,15064,15065,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.3969035,7.494091,1,0,-9,2,0,2,-8.5949221,0,0,0,62,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9779608,7.5244374,0,0,57.16,56.150002,46.279999,62.599998,6,1,1,0,0,9,3,1,299,1004167.8,0,0,1723.7406 -6697,8264,15065,15064,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,5,0,4.2356772,4.4542432,1,0,-9,13,0,-2,59.466366,0,0,0,64,2,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3328547,0,0,0,46.279999,62.599998,57.16,56.150002,5,1,1,0,0,9,3,1,299,1004167.8,0,0,1723.7406 -6698,8265,15066,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-964.80432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,31.137796,0,0,0,121.54168,0,0,0,0,0,2.1962245,0,0,0,54,43,-9,-9,6,1,1,0,0,13,1,0,345,-158985.89,0,0,278.56464 -6699,8266,15067,15068,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.994185,8.4367361,0,1,0,-9,8,0,-2,-147.88596,0,0,0,64,1,3,1,2,1,2019,1,1,14,2,48,44,15,1,0,1,0,8.2779665,8.2779665,0,0,0,0,0,0,0,0,0,0,0,7.5263162,0,0,0,46.080002,57.200001,40.16,59.889999,4,1,1,0,0,9,5,1,866,3933747,0,0,7948.0928 -6699,8266,15068,15067,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,0,3,9.3596935,9.355835,7.7017641,1,0,-9,43,0,2,-17.576612,0,0,0,62,2,3,1,2,2,2019,1,2,14,3,35,36,15,1,0,1,0,40.143921,40.143921,0,0,0,0,0,0,0,0,0,0,0,7.8972793,7.8885179,0,0,40.16,59.889999,46.080002,57.200001,3,1,1,0,0,9,5,1,866,3933747,0,0,7948.0928 -6700,8267,15069,15070,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,0,4,8.5839539,8.4457397,6.6388516,1,0,-9,44,0,2,-38.020332,0,0,0,61,2,3,3,-9,-9,2019,2,2,6,0,28,0,15,1,0,4,0,19.332474,19.332474,0,0,0,0,0,0,0,0,0,0,0,6.226666,6.6920052,0,0,57.16,56.150002,53.110001,47.09,7,1,1,0,0,7,4,1,924,1304034.6,0,0,2934.4006 -6700,8267,15070,15069,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.1879807,7.0982714,1,0,-9,44,0,-2,-107.15432,0,0,0,63,2,4,1,3,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0420556,7.0557623,0,0,53.110001,47.09,57.16,56.150002,6,1,1,0,0,7,4,1,924,1304034.6,0,0,2934.4006 -6701,8268,15071,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,2,6.7837334,7.9312167,7.0319448,3,0,0,0,-9,0,-995.33856,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,7,0,15,1,1,-9,0,19.050549,19.050549,0,0,0,0,0,0,0,0,1,1,0,0,7.0615678,0,0,32.349998,49.099998,-9,-9,4,1,1,0,0,5,3,1,127,221170.92,0,0,2856.4299 -6702,8269,15072,-9,15073,15075,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.1349,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,3,0,560,2817872.8,0,0,3318.9907 -6702,8269,15073,15075,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,5,7.2912235,7.1704788,0,2,0,-9,18,0,-11,-19.831055,0,0,1,51,1,4,1,3,1,2019,1,1,12,1,24,0,15,1,0,1,0,6.697762,6.697762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.959999,55.619999,57.16,56.150002,5,3,4,0,0,8,3,0,560,2817872.8,0,0,3318.9907 -6702,8269,15074,-9,15073,15075,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.8218,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,3,0,560,2817872.8,0,0,3318.9907 -6702,8269,15075,15073,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,8.415884,8.1706209,0,2,0,-9,18,0,11,-109.75363,0,0,0,40,2,5,1,3,3,2019,1,2,8,0,23,12,15,1,0,1,0,15.778731,15.778731,0,0,0,0,0,0,0,0,1,1,0,2.7278018,0,0,0,57.16,56.150002,40.959999,55.619999,5,3,4,0,0,8,3,0,560,2817872.8,0,0,3318.9907 -6703,8270,15076,15077,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.7907772,8.6948509,0,1,0,-9,19,0,8,3.9996746,0,0,0,46,1,4,1,2,2,2019,1,2,6,0,35,0,15,1,0,1,0,21.702461,21.702461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,38.939999,60.48,6,1,1,0,0,9,5,1,669.5,1949077,0,0,3987.9504 -6703,8270,15077,15076,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,0,4,8.6495304,9.0552616,0,1,0,-9,19,0,-8,-103.15572,0,0,0,54,2,3,1,2,2,2019,1,1,10,1,90,43,15,1,0,1,0,10.339491,10.339491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.939999,60.48,57.330002,53.459999,5,1,1,0,0,9,5,1,669.5,1949077,0,0,3987.9504 -6703,8271,15078,-9,15077,15076,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.3962421,7.6422505,0,3,0,0,0,-9,0,-1116.0471,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,38,40,15,1,0,-9,1,5.794867,5.794867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.580002,56.389999,-9,-9,6,1,1,0,0,9,3,1,289,22437.779,0,0,-180.638 -6703,8272,15079,-9,15077,15076,4,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,7.5559607,7.5619173,0,3,0,0,0,-9,0,-928.39142,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,35,35,15,1,0,-9,1,7.1158061,7.1158061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.830002,55.130001,-9,-9,4,1,1,0,1,9,3,1,334,79951.57,0,0,2385.9934 -6704,8273,15080,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,2,0,6.5542178,6.288784,3,0,0,0,-9,0,-913.90826,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9021535,6.4041963,0,0,55.200001,49.400002,-9,-9,4,1,1,0,0,12,2,1,1009,381050.63,0,0,717.49579 -6705,8274,15081,-9,15082,15084,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-738.13684,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,5,1,793.75,499443.22,0,0,5486.7969 -6705,8274,15082,15084,-9,-9,1,1,0,34,1,1,2,0,2,-9,2,1,0,0,4,8.3150015,8.5849266,0,2,0,-9,7,0,-1,-101.24733,0,0,1,35,2,4,1,2,1,2019,1,2,10,0,43,44,15,1,0,1,0,11.19429,11.19429,0,0,0,0,0,0,0,0,1,1,0,6.6670413,0,0,0,48.869999,58.549999,57.16,56.150002,5,1,1,0,0,4,5,1,793.75,499443.22,0,0,5486.7969 -6705,8274,15083,-9,15082,15084,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.5076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,5,1,793.75,499443.22,0,0,5486.7969 -6705,8274,15084,15082,-9,-9,2,1,1,35,1,1,2,0,2,-9,1,1,0,0,4,8.9582024,9.0726519,0,2,0,-9,7,0,1,41.788544,0,0,0,34,2,4,1,-9,-9,2019,1,1,7,0,42,48,15,1,0,1,0,31.820953,31.820953,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.869999,58.549999,2,1,1,0,0,4,5,1,793.75,499443.22,0,0,5486.7969 -6706,8275,15085,15086,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,63,0,-7,-5.4320865,0,0,0,91,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,28.303539,1,48.869999,39.939999,47.709999,51.43,6,1,1,0,0,12,2,1,537.5,426133.41,0,0,2065.6772 -6706,8275,15086,15085,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,0,3,0,6.7481155,6.273582,1,0,-9,7,0,7,-47.553127,0,0,0,84,3,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,18.954611,0,0,0,0,0,1,1,0,0,6.4769025,0,0,47.709999,51.43,48.869999,39.939999,6,1,1,0,0,12,2,1,537.5,426133.41,0,0,2065.6772 -6706,8276,15087,-9,15085,15086,3,1,1,58,2,0,0,0,3,-9,2,1,0,0,3,8.1490412,8.3770161,5.7788663,3,0,0,0,-9,0,-946.25568,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,47,47,15,1,0,-9,1,6.2826142,6.2826142,0,0,0,0,0,0,0,2,1,1,0,0,5.7179456,2.3320796,3,52.48,55.599998,-9,-9,6,1,1,0,0,12,4,1,411,-112230.96,0,0,747.57581 -6707,8277,15088,15091,-9,-9,1,1,0,28,1,1,2,0,2,-9,2,1,0,0,3,7.4169126,7.7042136,5.4339151,2,0,-9,4,0,-4,1.3907381,0,1,1,32,2,5,3,2,2,2019,2,3,26,10,16,24,15,1,1,3,0,13.271419,13.271419,0,0,0,0,0,0,0,0,1,1,0,5.7060356,0,0,0,26.98,52.689999,62.389999,56.709999,3,1,1,0,0,12,2,1,658.75,26899.869,0,0,1429.5123 -6707,8277,15089,-9,15088,15091,2,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.66138,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,12,2,1,658.75,26899.869,0,0,1429.5123 -6707,8277,15090,-9,15088,15091,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.2516,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,2,1,658.75,26899.869,0,0,1429.5123 -6707,8277,15091,15088,-9,-9,3,1,1,32,1,1,2,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,4,0,4,-2.1760235,0,0,0,28,2,3,1,-9,-9,2019,3,1,6,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,26.98,52.689999,6,1,1,1,1,12,2,1,658.75,26899.869,0,0,1429.5123 -6708,8278,15092,15093,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,6.9176745,8.608264,7.9720979,1,0,-9,38,0,-7,46.755615,0,0,0,63,2,5,1,3,3,2019,1,1,12,1,20,20,15,1,0,1,0,5.2920218,5.2920218,0,0,0,0,0,0,0,0,0,0,0,0,8.0132542,0,0,54.099998,59.110001,54.689999,57.470001,6,1,1,0,0,5,4,1,1739.5,204273.16,0,0,3217.366 -6708,8278,15093,15092,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,5,7.3536868,7.3574266,3.3484454,1,0,-9,38,0,7,-31.064837,0,0,0,56,2,5,1,-9,3,2019,1,2,6,0,12,20,15,1,0,1,0,17.358212,17.358212,0,0,0,0,0,0,0,0,0,0,0,3.4006958,3.7917204,0,0,54.689999,57.470001,54.099998,59.110001,6,1,1,0,0,5,4,1,1739.5,204273.16,0,0,3217.366 -6709,8279,15094,15095,-9,-9,2,1,0,56,1,0,0,0,1,-9,4,3,0,0,3,7.539907,9.177002,8.5219841,1,0,-9,29,0,-3,-97.499634,0,0,0,59,1,4,1,3,2,2019,3,1,12,0,14,43,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6266038,8.5936232,0,0,38.509998,59.43,45.91,59.889999,6,1,1,0,0,8,4,1,352,605486.69,0,0,3300.2769 -6709,8279,15095,15094,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,19,0,3,7.568675,0,0,0,56,1,3,3,2,2,2019,2,2,13,4,0,6,15,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,38.509998,59.43,6,1,1,0,0,8,4,1,352,605486.69,0,0,3300.2769 -6709,8280,15096,-9,15094,15095,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.6043587,8.817193,0,3,0,0,0,-9,0,-852.85681,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,35,47,15,1,0,-9,1,25.91263,25.91263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.150002,57.459999,-9,-9,5,1,1,0,0,8,5,1,500,-132349.66,0,0,2110.2136 -6709,8281,15097,-9,15094,15095,4,1,1,20,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1151.0659,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,8,1,1,485,37568.859,0,0,0 -6710,8282,15098,15099,-9,-9,3,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,8.4828434,8.6235924,1,0,-9,10,0,-3,-39.95879,0,0,0,72,1,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6263332,8.5876102,0,0,56.110001,44.400002,50,47,6,1,1,0,0,8,4,1,3318,2230396.5,0,0,7366.8232 -6710,8282,15099,15098,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,3,0,6.7209215,7.0519295,1,0,-9,10,0,3,-6.0473261,0,0,0,69,1,3,3,-9,-9,2019,4,3,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4885864,6.6463799,0,0,50,47,56.110001,44.400002,5,1,1,0,0,8,4,1,3318,2230396.5,0,0,7366.8232 -6711,8283,15100,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,4,3,0,1,2,0,5.8015909,5.8222733,3,0,0,0,-9,0,-949.64502,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0212893,0,0,46.43,16.940001,-9,-9,7,1,1,0,0,12,2,1,1198,-103611.9,0,0,707.0993 -6712,8284,15101,-9,15104,15102,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.4458,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,0,489,32350.459,0,0,2073.0679 -6712,8284,15102,15104,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.1781473,8.2732763,0,2,0,-9,8,0,3,-52.232464,0,0,0,35,2,2,3,-9,-9,2019,2,1,9,0,50,40,15,1,0,3,0,7.2997627,7.2997627,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.8573017,3,57.310001,50.610001,51.810001,30.790001,6,1,1,0,0,7,3,0,489,32350.459,0,0,2073.0679 -6712,8284,15103,-9,15104,15102,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.83789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,489,32350.459,0,0,2073.0679 -6712,8284,15104,15102,-9,-9,1,1,0,35,1,0,2,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,8,0,-3,-91.684258,0,0,1,38,2,4,1,-9,-9,2019,3,2,8,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.194571,3,51.810001,30.790001,57.310001,50.610001,6,1,1,0,0,7,3,0,489,32350.459,0,0,2073.0679 -6713,8285,15105,15106,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,3,9.0958652,8.904706,0,2,0,-9,9,0,-7,-23.944683,0,0,1,44,1,3,1,2,1,2019,1,2,15,3,37,37,15,1,0,1,0,22.545834,22.545834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.849998,55.830002,40.720001,55.650002,5,1,1,0,0,13,5,1,477.33334,606927.06,0,0,5318.0771 -6713,8285,15106,15105,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,3,8.314209,8.5428696,0,2,0,-9,9,0,7,-47.476181,0,0,0,37,1,3,1,2,2,2019,1,1,11,1,37,38,15,1,0,1,0,13.498913,13.498913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.720001,55.650002,39.849998,55.830002,4,1,1,0,0,13,5,1,477.33334,606927.06,0,0,5318.0771 -6713,8285,15107,-9,15105,15106,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.22302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,477.33334,606927.06,0,0,5318.0771 -6714,8286,15108,15109,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,9,-30.013126,0,0,0,60,1,3,1,2,2,2019,3,2,19,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2620621,0,0,0,42.209999,25.58,40.07,40.23,6,1,1,0,1,8,3,1,1438.5,1789929.5,0,0,2592.3633 -6714,8286,15109,15108,-9,-9,2,1,0,60,1,0,0,0,1,-9,1,1,0,0,3,8.1203947,8.1744776,3.7251577,1,0,-9,8,0,0,-32.322994,0,0,0,69,1,2,3,-9,-9,2019,2,1,19,7,40,40,15,1,1,4,0,9.4497166,9.4497166,0,0,0,0,0,0,0,7,1,1,0,0,4.3986311,2.2143247,2,40.07,40.23,42.209999,25.58,3,1,1,0,1,8,3,1,1438.5,1789929.5,0,0,2592.3633 -6715,8287,15110,-9,15113,15111,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.6577,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,4,0,5165,157850.73,0,0,3679.9922 -6715,8287,15111,15113,-9,-9,2,1,1,35,1,2,2,0,1,-9,2,1,0,0,4,8.817152,8.9986467,0,2,0,-9,4,0,3,-103.38437,0,0,0,32,2,4,1,-9,-9,2019,1,1,6,1,46,42,15,1,0,1,0,15.914058,15.914058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.790001,55.860001,6,3,4,0,0,9,4,0,5165,157850.73,0,0,3679.9922 -6715,8287,15112,-9,15113,15111,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-970.16046,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,4,0,5165,157850.73,0,0,3679.9922 -6715,8287,15113,15111,-9,-9,1,1,0,32,1,2,2,0,2,-9,2,1,0,0,4,7.9915967,8.045639,0,2,0,-9,4,0,-3,90.06498,0,0,1,35,1,4,1,-9,-9,2019,1,2,6,0,20,20,15,1,0,1,0,16.366215,16.366215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,54.200001,57.490002,6,1,1,0,0,9,4,0,5165,157850.73,0,0,3679.9922 -6716,8288,15114,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,0,4,7.8241763,8.2758846,7.3983645,4,0,0,0,-9,0,-1065.5995,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,22,23,15,1,1,-9,0,16.210112,16.210112,0,0,0,0,0,0,0,0,1,1,0,7.5699224,0,0,0,40.709999,62.41,-9,-9,6,1,1,0,0,7,3,1,574.33331,90653.547,0,0,1914.4237 -6716,8288,15115,-9,15114,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1024.5063,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,1,574.33331,90653.547,0,0,1914.4237 -6716,8288,15116,-9,15114,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-948.58032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,7,3,1,574.33331,90653.547,0,0,1914.4237 -6717,8289,15117,15118,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,8.4763937,8.477231,7.1564736,1,0,-9,10,0,6,-108.25195,0,0,0,52,2,5,1,-9,-9,2019,1,2,6,0,35,40,15,1,0,1,0,15.870333,15.870333,0,0,0,0,0,0,0,0,0,0,0,3.4427342,6.9718542,0,0,60.119999,54.799999,60.02,56.419998,6,1,1,0,0,6,4,1,461.5,165614.22,0,0,3385.551 -6717,8289,15118,15117,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,5,6.3981771,6.7865791,5.3207622,1,0,-9,29,0,-6,-118.22092,0,0,0,58,2,4,1,2,2,2019,1,1,6,0,13,12,15,1,0,1,0,5.7035918,5.7035918,0,0,0,0,0,0,0,0,0,0,0,3.6024587,5.0402222,0,0,60.02,56.419998,60.119999,54.799999,7,1,1,0,0,6,4,1,461.5,165614.22,0,0,3385.551 -6717,8290,15119,-9,15118,15117,5,1,1,19,2,0,0,1,2,0,7,2,0,0,3,4.5975904,4.4377966,0,3,0,0,0,-9,0,-953.53864,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0844275,0,0,0,49.52,56.950001,-9,-9,6,1,1,0,0,6,2,1,376,95603.086,0,0,-428.9819 -6718,8291,15120,-9,15121,15122,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.00006,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,4,1,585.75,838216.13,0,0,2965.9812 -6718,8291,15121,15122,-9,-9,2,1,0,33,1,1,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,10,0,-16,-93.603416,0,0,1,49,1,3,1,2,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,51.549999,51.939999,7,1,1,0,0,7,4,1,585.75,838216.13,0,0,2965.9812 -6718,8291,15122,15121,-9,-9,1,1,1,49,1,1,3,0,1,-9,2,1,0,0,3,8.8688555,9.1048689,0,2,0,-9,10,0,16,-6.2176094,0,0,0,33,2,3,3,2,2,2019,2,2,6,0,36,36,15,1,0,3,0,28.472242,28.472242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.549999,51.939999,54.959999,53.169998,6,1,1,0,0,7,4,1,585.75,838216.13,0,0,2965.9812 -6718,8291,15123,-9,15121,15122,4,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.30487,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,4,1,585.75,838216.13,0,0,2965.9812 -6719,8292,15124,15125,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,2,8.6488657,8.7684002,8.0418358,1,0,-9,41,0,3,-80.660713,0,0,0,59,2,1,3,3,3,2019,2,2,6,0,42,43,15,1,0,3,0,11.995438,11.995438,0,0,0,0,0,0,0,2,0,0,0,1.8817225,8.6075363,4.3623562,3,63.939999,28.9,35.759998,21.780001,6,1,1,0,0,13,5,1,277,2398034.8,0,0,4173.8965 -6719,8292,15125,15124,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,0,1,0,7.004086,7.1491017,1,0,-9,41,0,-3,53.790554,0,0,0,62,3,2,1,3,3,2019,3,1,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.4282761,12.182594,3,35.759998,21.780001,63.939999,28.9,5,1,1,0,0,13,5,1,277,2398034.8,0,0,4173.8965 -6720,8293,15126,15127,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.3882718,7.6014485,1,0,-9,46,0,-2,-102.65553,0,0,0,65,2,3,3,2,2,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5056705,0,0,47.360001,44.23,53.139999,51.279999,6,1,1,0,0,11,4,1,1001,1695666.8,0,0,4082.1033 -6720,8293,15127,15126,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,8.4101267,8.0706768,1,0,-9,46,0,2,114.62818,0,0,0,63,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9969931,0,0,53.139999,51.279999,47.360001,44.23,6,1,1,0,0,11,4,1,1001,1695666.8,0,0,4082.1033 -6721,8294,15128,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,1,1,0,0,3,7.4944983,7.6335058,4.3728614,3,0,0,0,-9,0,-919.74847,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,1,30,50,15,1,0,-9,0,7.3199749,7.3199749,0,0,0,0,0,0,0,0,0,0,0,4.6180787,0,0,0,47.549999,55.060001,-9,-9,6,1,1,0,0,8,3,0,279,-38123.43,0,0,569.91559 -6722,8295,15129,15130,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.4221182,7.5551114,0,1,0,-9,35,0,-3,-78.20372,-9,0,0,60,2,2,1,3,3,2019,1,1,10,0,30,0,15,1,0,1,0,6.9949064,6.9949064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.57,49.689999,4,1,1,0,1,1,3,0,550,470815.75,0,0,1521.1355 -6722,8295,15130,15129,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,6.6674471,6.4031677,0,1,0,-9,33,0,3,-77.466621,0,0,0,57,2,3,1,3,-9,2019,1,2,6,0,12,10,15,1,0,1,0,5.5943594,5.5943594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.689999,57.330002,53.459999,5,1,1,0,1,1,3,0,550,470815.75,0,0,1521.1355 -6723,8296,15131,15132,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,0,4,8.431613,8.5168257,0,1,0,-9,29,0,-16,-9.4172974,0,0,0,69,2,3,3,2,2,2019,2,1,7,1,44,40,15,1,0,4,0,11.641938,11.641938,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,53.990002,46.419998,57.490002,31.66,6,1,1,0,0,2,4,1,1139.5,166158.06,0,0,2657.1963 -6723,8296,15132,15131,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,1,3,0,6.3061213,6.0183682,1,0,-9,29,0,16,-110.9125,0,0,0,53,3,4,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3369823,5.9836769,0,0,57.490002,31.66,53.990002,46.419998,5,1,1,0,0,2,4,1,1139.5,166158.06,0,0,2657.1963 -6724,8297,15133,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,6,3,0,0,3,0,0,0,3,0,0,0,-9,0,-855.46136,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,2,3,0,0,7,1,1,223,0,0,0,-323.69333 -6724,8298,15134,-9,15133,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,7.9506383,8.0964823,0,3,0,0,0,-9,0,-1041.1918,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,38,37,15,1,0,-9,1,9.5251608,9.5251608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.85,57.84,-9,-9,7,2,3,0,0,7,4,1,867,254191.7,0,0,1234.478 -6724,8299,15135,-9,15133,-9,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,5,8.150753,8.4180832,0,3,0,0,0,-9,0,-904.02264,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,20,7,37,30,15,1,1,-9,1,11.892807,11.892807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.990002,58.349998,-9,-9,6,2,3,0,0,7,4,1,394,13432.453,0,0,548.96686 -6724,8300,15136,-9,15133,-9,4,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,8.097641,8.183176,0,3,0,0,0,-9,0,-947.53131,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,38,37,15,1,0,-9,1,10.506536,10.506536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,6,2,3,0,0,7,4,1,507,51538.305,0,0,1167.6168 -6724,8301,15137,-9,15133,-9,5,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,8.0947428,8.0271196,0,3,0,0,0,-9,0,-1035.5745,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,1,8.0683422,8.0683422,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,7,4,1,1395,86376.422,0,0,1673.6373 -6725,8302,15138,15139,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,1,3,0,5.6131611,5.5371294,1,0,-9,9,0,20,-107.7092,0,0,0,58,2,2,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,5.749372,0,2,44.68,34.799999,48.110001,17.83,6,1,1,0,0,5,2,1,804,24863.324,0,0,1847.1401 -6725,8302,15139,15138,-9,-9,2,1,0,58,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,9,0,-20,-99.796539,0,0,0,78,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.3154416,2,48.110001,17.83,44.68,34.799999,5,1,1,0,0,5,2,1,804,24863.324,0,0,1847.1401 -6725,8303,15140,-9,15139,15138,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.8009276,7.7186632,0,3,0,0,0,-9,0,-1022.0262,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,47,32,15,1,0,-9,1,6.0734191,6.0734191,0,0,0,0,0,0,0,7,1,1,0,0,0,5.3079062,3,43.290001,43.57,-9,-9,5,1,1,0,0,5,3,1,458,7559.2109,0,0,250.82581 -6726,8304,15141,15142,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,1,3,0,8.1748562,8.2180328,1,0,-9,44,0,4,-39.185375,0,0,0,61,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0399356,8.1559906,0,0,56.950001,30.23,54.790001,55.860001,6,1,1,0,0,6,4,1,882.5,229921.5,0,0,4374.708 -6726,8304,15142,15141,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,7.8708148,7.8332028,0,1,0,-9,44,0,-4,-94.784019,0,0,0,65,2,3,3,2,2,2019,2,2,10,0,24,26,15,1,0,4,0,12.846223,12.846223,0,0,0,0,0,0,0,7,1,1,0,0,0,8.4036522,3,54.790001,55.860001,56.950001,30.23,6,1,1,0,0,6,4,1,882.5,229921.5,0,0,4374.708 -6727,8305,15143,-9,15144,15145,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.1796,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,4,1,122,147332.44,0,0,3679.0051 -6727,8305,15144,15145,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,0,4,8.1337547,8.1775684,0,2,0,-9,8,0,0,-100.62186,0,0,1,35,2,4,1,2,2,2019,1,2,7,0,37,37,15,1,0,1,0,10.20861,10.20861,0,0,0,0,0,0,0,0,1,1,0,7.1580319,0,0,0,54.790001,55.860001,50,57,6,1,1,0,0,13,4,1,122,147332.44,0,0,3679.0051 -6727,8305,15145,15144,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,0,4,8.0262547,7.9234681,0,2,0,-9,8,0,0,39.272224,0,0,0,35,1,4,1,-9,-9,2019,1,1,10,1,37,32,15,1,0,1,0,9.5299902,9.5299902,0,0,0,0,0,0,0,0,1,1,0,.82455647,0,0,0,50,57,54.790001,55.860001,5,4,1,0,0,13,4,1,122,147332.44,0,0,3679.0051 -6728,8306,15146,15147,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,5,0,0,0,1,0,-9,6,0,0,-8.7136545,0,0,1,30,1,4,1,2,1,2019,1,2,6,0,0,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,44.540001,35.470001,52.59,6,1,1,0,0,9,5,1,777.5,354062.16,0,0,2904.6328 -6728,8306,15147,15146,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,9.2529278,9.0269279,0,1,0,-9,6,0,0,1.2617596,0,0,0,30,1,5,1,-9,-9,2019,1,1,13,1,37,39,15,1,0,1,0,26.03458,26.03458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.470001,52.59,62,44.540001,4,1,1,0,0,9,5,1,777.5,354062.16,0,0,2904.6328 -6729,8307,15148,-9,15149,15150,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-977.51392,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,1169.6666,415706.03,0,0,4370.2588 -6729,8307,15149,15150,-9,-9,2,1,0,35,1,1,1,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,7,0,1,8.190402,0,0,1,34,2,4,1,-9,-9,2019,1,1,13,3,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4049969,0,0,0,44.02,60.700001,54.790001,55.860001,6,1,1,0,0,7,4,1,1169.6666,415706.03,0,0,4370.2588 -6729,8307,15150,15149,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.8074703,8.6905127,0,2,0,-9,7,0,-1,127.14384,0,0,0,35,1,4,1,2,2,2019,1,2,10,1,44,42,15,1,0,1,0,17.291321,17.291321,0,0,0,0,0,0,0,0,1,1,0,7.5658798,0,0,0,54.790001,55.860001,44.02,60.700001,4,1,1,0,0,7,4,1,1169.6666,415706.03,0,0,4370.2588 -6730,8308,15151,15152,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,3,5.8375134,8.3648748,8.4857035,1,0,-9,25,-9,1,14.53921,-9,0,0,61,1,3,1,2,3,2019,3,1,21,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.4711628,8.278471,13.701991,3,40.759998,48.77,44.110001,50.110001,3,1,1,0,0,8,5,0,583,2906081,0,0,3784.4587 -6730,8308,15152,15151,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,8.6931782,8.9822664,0,1,0,-9,25,-9,-1,26.456797,-9,0,0,62,1,3,3,1,1,2019,2,2,13,2,29,0,15,1,0,4,0,26.165056,26.165056,0,0,0,0,0,0,0,0,0,0,0,5.2968678,0,0,0,44.110001,50.110001,40.759998,48.77,5,1,1,0,0,8,5,0,583,2906081,0,0,3784.4587 -6731,8309,15153,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-967.26227,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,3,4,1,0,4,1,0,880,51404.367,0,0,1251.8165 -6732,8310,15154,15155,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,0,2,8.6290884,8.7524986,0,1,0,1,1,-9,-2,55.743679,0,0,1,44,1,3,1,2,3,2019,1,2,11,0,75,42,15,1,0,1,0,8.3814554,8.3814554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.790001,29.290001,44.360001,54.040001,5,1,1,0,0,9,5,0,748.5,393727.59,0,0,5507.3813 -6732,8310,15155,15154,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,0,3,9.1245975,8.912343,0,1,0,-9,1,-9,2,132.33766,-9,0,0,42,2,2,1,-9,-9,2019,1,1,12,0,50,0,15,1,0,1,0,20.529865,20.529865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.360001,54.040001,48.790001,29.290001,5,1,1,0,0,9,5,0,748.5,393727.59,0,0,5507.3813 -6733,8311,15156,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1141.5121,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,18.292139,3,33.07,39.119999,-9,-9,2,2,3,1,0,9,1,1,442,185051.14,0,0,480.42224 -6734,8312,15157,15158,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,7.9793959,8.6167469,7.5158143,1,0,-9,40,0,2,9.3000069,0,0,0,60,2,1,3,3,2,2019,2,2,7,0,21,21,15,1,0,4,0,17.093409,17.093409,0,0,0,0,0,0,0,7,1,1,0,0,7.9330673,6.2377267,1,43.709999,56.91,58.900002,13.94,6,1,1,0,0,2,4,1,968.5,1239884.4,0,0,3024.2461 -6734,8312,15158,15157,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,1,1,0,7.1411605,6.742301,1,0,-9,40,0,-2,-22.830004,0,0,0,62,2,3,1,3,3,2019,3,1,12,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6225791,6.8472681,5.2856684,3,58.900002,13.94,43.709999,56.91,5,1,1,0,0,2,4,1,968.5,1239884.4,0,0,3024.2461 -6735,8313,15159,15160,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.8150606,7.6383166,0,1,0,-9,10,0,2,-11.22709,0,0,0,51,1,3,1,2,2,2019,1,2,13,3,30,30,15,1,0,1,0,9.1616859,9.1616859,0,0,0,0,0,0,0,14.5,0,0,0,0,0,7.4054289,3,49.349998,59.639999,55.759998,44.759998,6,1,1,0,0,13,5,1,653,1461496.6,0,0,3520.2998 -6735,8313,15160,15159,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,0,3,8.6025114,8.9813337,0,1,0,-9,10,0,-2,98.899086,0,0,0,53,2,4,1,-9,-9,2019,1,1,14,3,36,36,15,1,0,1,0,21.423948,21.423948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,44.759998,49.349998,59.639999,6,1,1,0,0,13,5,1,653,1461496.6,0,0,3520.2998 -6735,8314,15161,-9,15159,15160,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,6.2633967,6.2377024,0,3,0,0,0,-9,0,-1081.2617,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,16,38,15,1,0,-9,1,3.5606921,3.5606921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,13,2,1,722,-46328.047,0,0,10.059093 -6735,8315,15162,-9,15159,15160,4,1,0,19,2,0,0,0,2,1,2,1,0,0,3,6.5830169,6.1755085,0,3,0,0,0,-9,0,-1002.1611,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,20,0,15,1,0,-9,1,4.6930761,4.6930761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.650002,51.639999,-9,-9,6,1,1,0,0,13,2,1,405,10141.944,0,0,71.336121 -6736,8316,15163,15164,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,0,4,8.0245371,8.5228262,0,1,0,-9,7,0,0,1.6093179,0,0,0,49,2,5,1,3,2,2019,1,1,12,4,30,32,15,1,1,1,0,13.765113,13.765113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.470001,55.650002,62.389999,56.709999,3,1,1,0,0,10,4,1,499,258883.61,0,0,1329.8611 -6736,8316,15164,15163,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,5,7.2473516,7.3105931,0,1,0,-9,7,0,0,96.801163,0,0,0,49,3,4,1,-9,3,2019,1,2,5,0,26,22,15,1,0,1,0,6.937449,6.937449,0,0,0,0,0,0,0,0,0,0,0,.85108948,0,0,0,62.389999,56.709999,40.470001,55.650002,5,1,1,0,0,10,4,1,499,258883.61,0,0,1329.8611 -6736,8317,15165,-9,15164,15163,3,1,1,18,2,0,0,0,2,-9,2,1,0,0,5,7.8914523,7.818399,0,3,0,0,0,-9,0,-1029.2283,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,40,0,15,1,0,-9,1,8.3623219,8.3623219,0,0,0,0,0,0,0,0,0,0,0,1.898049,0,0,0,54.669998,57.490002,-9,-9,6,1,1,0,0,10,4,1,850,-27274.746,0,0,3071.1228 -6737,8318,15166,15167,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,5.9545355,7.8179483,8.1663532,1,0,-9,10,0,-1,2.5111187,0,0,0,79,2,2,3,3,2,2019,4,2,8,1,3,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.583416,7.7350998,0,0,53.049999,47.860001,49.009998,26.450001,6,1,1,0,0,7,3,0,1319,920222.75,0,0,1871.0143 -6737,8318,15167,15166,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,1,-56.858944,0,0,0,78,2,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,.28206158,0,2.6464789,0,0,56.334614,0,1,1,0,0,0,0,0,49.009998,26.450001,53.049999,47.860001,4,1,1,0,0,7,3,0,1319,920222.75,0,0,1871.0143 -6738,8319,15168,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,2,8.2469006,8.2975397,0,3,0,0,0,-9,0,-1065.2428,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,36,37,15,1,1,-9,0,11.908239,11.908239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.879999,54.900002,-9,-9,3,1,1,0,0,9,4,1,208,-106314.27,0,0,1708.6646 -6739,8320,15169,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,6.4505343,6.2718115,3,0,0,0,-9,0,-975.08667,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3873849,6.0034347,0,0,30.59,37.080002,-9,-9,3,1,1,0,0,2,2,1,473,245684.69,0,0,2128.7708 -6740,8321,15170,15171,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,8.7761669,8.7224455,1,0,-9,42,0,2,130.93449,0,0,0,73,2,4,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8810141,8.5162668,0,0,52.880001,43.27,60.119999,54.799999,7,1,1,0,0,10,5,1,1173,3026969,0,0,4036.0305 -6740,8321,15171,15170,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.7379813,7.6672535,1,0,-9,42,0,-2,26.316132,0,0,0,75,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2582331,7.4970183,0,0,60.119999,54.799999,52.880001,43.27,7,1,1,0,0,10,5,1,1173,3026969,0,0,4036.0305 -6741,8322,15172,15173,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,9,0,10,50.480789,0,0,0,50,1,5,1,3,3,2019,1,2,10,0,50,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.7123518,0,0,0,61.73,51.560001,57.630001,56.139999,6,1,1,0,0,10,2,1,187,1325519.1,0,0,14082.559 -6741,8322,15173,15172,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,5,7.3765845,7.3905368,0,1,0,-9,9,0,-10,77.175415,0,0,0,60,1,5,1,2,2,2019,1,1,11,0,50,50,15,1,0,1,0,3.5049572,3.5049572,0,0,0,0,0,0,0,0,0,0,0,8.7453232,0,0,0,57.630001,56.139999,61.73,51.560001,6,1,1,0,0,10,2,1,187,1325519.1,0,0,14082.559 -6742,8323,15174,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,0,4,7.6074214,7.989759,0,3,0,0,0,-9,0,-1007.6425,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,45,0,15,1,0,-9,0,7.1150589,7.1150589,0,0,0,0,0,0,0,7,1,1,0,0,0,12.389895,3,57.16,56.150002,-9,-9,7,4,5,0,0,8,3,1,869,225849.33,0,0,1990.4489 -6742,8324,15175,-9,-9,-9,2,1,0,82,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-907.43896,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,4,2,0,0,8,1,1,307,84383.219,0,0,1127.9955 -6743,8325,15176,15177,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,5,8.4794378,8.474453,0,1,0,-9,7,0,-3,-27.374926,0,0,1,37,2,3,1,2,3,2019,1,1,27,11,35,35,15,1,1,1,0,16.078133,16.078133,0,0,0,0,0,0,0,0,0,0,0,4.7846012,0,0,0,19.610001,69.800003,35.799999,59.5,5,2,3,0,0,8,5,1,118,-53414.5,0,0,3096.7444 -6743,8325,15177,15176,-9,-9,1,1,1,37,1,0,0,0,2,-9,2,1,0,0,3,8.3250294,8.5127153,0,1,0,-9,7,0,3,120.0021,0,0,0,34,1,5,1,2,2,2019,1,2,12,0,38,41,15,1,0,1,0,15.580651,15.580651,0,0,0,0,0,0,0,0,0,0,0,5.0327487,0,0,0,35.799999,59.5,19.610001,69.800003,3,1,1,0,0,8,5,1,118,-53414.5,0,0,3096.7444 -6744,8326,15178,15180,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,7.8770232,8.134778,0,2,0,-9,17,0,-4,-71.440086,0,0,1,47,1,3,1,1,1,2019,1,1,12,0,35,0,15,1,0,1,0,8.217288,8.217288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.630001,51.240002,57.330002,53.459999,5,2,3,0,0,8,2,1,723.66669,370864.44,0,0,1062.1577 -6744,8326,15179,-9,15178,15180,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.6876,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,2,1,723.66669,370864.44,0,0,1062.1577 -6744,8326,15180,15178,-9,-9,1,1,1,47,1,0,2,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,11,0,4,-29.403036,0,0,0,43,1,3,1,2,1,2019,1,2,10,0,36,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4333067,0,0,0,57.330002,53.459999,53.630001,51.240002,6,2,3,0,0,8,2,1,723.66669,370864.44,0,0,1062.1577 -6745,8327,15181,15184,-9,-9,1,1,0,43,1,1,2,0,1,-9,2,1,0,0,3,8.5657921,8.8331442,0,2,0,-9,7,0,-2,-14.48863,0,0,1,45,2,3,3,3,3,2019,2,2,24,12,55,47,15,1,1,3,0,12.343381,12.343381,0,0,0,0,0,0,0,27.5,1,1,0,4.9062953,0,26.171862,3,31.690001,48.950001,35.790001,44.369999,5,1,1,0,0,11,4,0,312.75,297328.03,0,0,2243.4353 -6745,8327,15182,-9,15181,15184,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.6017,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,0,312.75,297328.03,0,0,2243.4353 -6745,8327,15183,-9,15181,15184,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.81647,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,0,312.75,297328.03,0,0,2243.4353 -6745,8327,15184,15181,-9,-9,2,1,1,45,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,2,-175.24879,-9,0,0,43,1,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6673023,0,0,0,35.790001,44.369999,31.690001,48.950001,5,1,1,0,0,11,4,0,312.75,297328.03,0,0,2243.4353 -6746,8328,15185,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,3,0,5.4700871,5.4359179,3,0,0,0,-9,0,-984.67133,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8913894,5.4587193,0,0,53,47,-9,-9,5,1,1,0,0,13,2,0,170,108399.27,0,0,-171.93079 -6747,8329,15186,15188,-9,-9,1,1,1,36,1,0,2,0,2,-9,1,1,0,0,3,9.6098061,9.5970039,7.4218102,2,0,-9,11,0,2,-57.294044,0,0,0,34,1,4,1,3,2,2019,1,2,11,0,10,10,15,1,0,1,0,244.25,244.25,0,0,0,0,0,0,0,0,1,1,0,0,6.6842012,0,0,64.959999,40.380001,48.279999,60.18,6,1,1,0,0,13,5,1,507.75,69136.938,0,0,20150.738 -6747,8329,15187,-9,15188,15186,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.663,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,507.75,69136.938,0,0,20150.738 -6747,8329,15188,15186,-9,-9,2,1,0,34,1,0,2,0,1,-9,1,1,0,0,4,8.1491194,8.1072502,0,2,0,-9,11,0,-2,-46.150337,0,0,1,36,2,3,1,2,2,2019,1,1,10,0,37,35,15,1,0,1,0,10.455112,10.455112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,64.959999,40.380001,6,1,1,0,0,13,5,1,507.75,69136.938,0,0,20150.738 -6747,8329,15189,-9,15188,15186,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.5745,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,507.75,69136.938,0,0,20150.738 -6748,8330,15190,15191,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,4,0,8.0898781,8.1751118,1,0,-9,41,0,6,-76.071373,0,0,0,57,2,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3065844,7.7333975,0,0,56.57,57.779999,51.830002,57.200001,6,1,1,0,0,4,4,1,2694,2969579.5,0,0,2182.4214 -6748,8330,15191,15190,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.5965247,7.7709541,0,1,0,-9,41,0,-6,-32.793365,0,0,0,63,1,4,3,3,2,2019,2,1,10,0,23,23,15,1,0,4,0,8.5092115,8.5092115,0,0,0,0,0,0,0,0,0,0,0,3.8933218,0,0,0,51.830002,57.200001,56.57,57.779999,7,1,1,0,0,4,4,1,2694,2969579.5,0,0,2182.4214 -6749,8331,15192,-9,-9,-9,1,1,0,58,3,0,1,0,2,-9,2,1,0,0,4,7.6603689,7.6378965,5.8394232,4,0,0,0,-9,0,-937.10364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,6,20,24,15,1,1,-9,0,12.419416,12.419416,0,0,0,0,0,0,0,2,1,1,0,5.1230154,0,0,3,38.040001,56.720001,-9,-9,3,1,1,0,1,6,3,1,461.5,170109.86,0,0,1179.0049 -6749,8331,15193,-9,15192,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1110.9834,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,3,1,461.5,170109.86,0,0,1179.0049 -6750,8332,15194,15195,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,1,0,7.506495,7.2561259,1,0,-9,10,0,-1,16.022827,0,0,0,70,3,2,3,3,2,2019,4,1,31,12,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3359416,7.6032076,0,0,21.969999,21.299999,40.689999,39.610001,3,1,1,0,0,9,2,1,458.5,723559.06,0,0,2138.1479 -6750,8332,15195,15194,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,1,44.39196,0,0,0,69,2,1,3,3,2,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7865441,0,0,1,40.689999,39.610001,21.969999,21.299999,6,1,1,0,0,9,2,1,458.5,723559.06,0,0,2138.1479 -6751,8333,15196,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.8502111,8.0281162,0,3,0,-9,0,-9,0,-952.57153,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,45,0,15,1,1,-9,0,6.608911,6.608911,0,0,0,0,0,0,0,0,0,0,0,1.0460459,0,0,0,46.549999,58.299999,-9,-9,3,1,1,0,0,2,3,1,1136,-48241.043,0,0,1685.0575 -6752,8334,15197,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,-9,0,-9,0,-1038.1045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,25,-9,-9,7,1,1,0,0,8,1,0,255,151772.06,0,0,1855.5701 -6753,8335,15198,-9,15199,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1019.4994,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,1,0,258.5,-30209.25,0,0,1406.5452 -6753,8335,15199,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-952.64764,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.009676,3,36.529999,15.84,-9,-9,1,3,4,0,0,8,1,0,258.5,-30209.25,0,0,1406.5452 -6753,8336,15200,-9,15199,-9,2,1,0,24,2,0,1,0,2,-9,2,1,0,1,4,6.5868869,6.4121475,0,3,0,0,0,-9,0,-1039.8019,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,16,0,15,1,0,-9,1,4.9140635,4.9140635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,8,2,0,146,158604.86,0,0,1704.8674 -6754,8337,15201,15202,-9,-9,2,1,0,62,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-4,0,0,0,0,66,3,3,3,3,3,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,52,48,5,2,3,0,0,4,1,1,2359.5,59477.797,0,0,1179.9982 -6754,8337,15202,15201,-9,-9,1,1,1,66,1,0,2,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,46,0,4,0,0,0,0,62,3,3,3,-9,-9,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49,48,5,2,3,0,0,4,1,1,2359.5,59477.797,0,0,1179.9982 -6754,8338,15203,15205,15201,15202,6,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,7.9438133,7.8858452,0,2,0,-9,5,0,2,-12.794548,0,0,0,36,3,3,3,3,3,2019,2,3,10,1,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49.82,37.849998,5,2,3,0,0,4,3,1,581.5,84555.594,0,0,2171.0432 -6754,8338,15204,-9,15205,15203,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-896.3067,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,2,3,0,0,4,3,1,581.5,84555.594,0,0,2171.0432 -6754,8338,15205,15203,-9,-9,3,1,0,36,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,-2,32.132702,0,0,1,38,2,4,1,3,2,2019,3,6,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.82,37.849998,51,56,6,2,3,0,0,4,3,1,581.5,84555.594,0,0,2171.0432 -6754,8338,15206,-9,15205,15203,5,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1196.9022,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,3,1,581.5,84555.594,0,0,2171.0432 -6755,8339,15207,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,7.1744447,7.3435664,0,3,0,0,0,-9,0,-950.45453,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,1,32,15,1,0,-9,0,209.83441,209.83441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,1,3,0,241,-53323.691,0,0,1423.9359 -6756,8340,15208,15209,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,0,3,7.4105902,7.4477019,0,1,0,-9,2,0,-4,-62.896809,-9,0,0,39,1,3,1,-9,-9,2019,1,1,12,0,35,0,15,1,0,1,0,6.6091666,6.6091666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,50.630001,50.990002,4,1,1,0,0,1,4,0,1096,97380.297,0,0,2507.229 -6756,8340,15209,15208,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,0,3,8.4906559,8.280652,0,1,0,-9,2,0,4,20.525152,0,0,1,35,2,3,1,3,1,2019,1,2,11,0,54,60,15,1,0,1,0,10.251143,10.251143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.630001,50.990002,49.040001,55.860001,5,1,1,0,0,1,4,0,1096,97380.297,0,0,2507.229 -6757,8341,15210,-9,15212,15211,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.1864,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,0,711.33331,80271.25,0,0,3758.8687 -6757,8341,15211,15212,-9,-9,2,1,1,48,1,1,1,0,2,-9,1,1,0,0,3,8.8340168,8.5183334,0,2,0,-9,2,0,14,139.71416,0,0,0,34,2,2,3,-9,-9,2019,2,1,26,8,60,60,15,1,1,3,0,12.948813,12.948813,0,0,0,0,0,0,0,0,1,1,0,6.222578,0,0,0,19.25,53.470001,27.15,59.77,2,1,1,0,0,9,4,0,711.33331,80271.25,0,0,3758.8687 -6757,8341,15212,15211,-9,-9,1,1,0,34,1,1,1,0,2,-9,6,3,0,0,2,6.4687939,6.6715941,0,2,0,-9,2,0,-14,1.5535166,0,0,1,48,2,3,1,2,2,2019,3,2,17,5,5,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.15,59.77,19.25,53.470001,3,1,1,0,0,9,4,0,711.33331,80271.25,0,0,3758.8687 -6758,8342,15213,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,-9,0,1,0,-1009.8579,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.959999,43.84,-9,-9,3,1,1,0,0,13,1,0,365,-218348.92,0,0,1132.54 -6759,8343,15214,-9,15215,15216,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1044.988,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,6,4,1,517.20001,724659.88,0,0,4038.7385 -6759,8343,15215,15216,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,0,3,8.0394373,7.9740076,0,2,0,-9,23,0,-1,25.203993,0,0,1,44,1,4,1,3,3,2019,1,2,12,1,25,10,15,1,0,1,0,15.650044,15.650044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.279999,36.119999,48.279999,60.18,4,1,1,0,0,6,4,1,517.20001,724659.88,0,0,4038.7385 -6759,8343,15216,15215,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,8.9317417,8.9001732,0,2,0,-9,23,0,1,-23.465641,0,0,0,43,1,3,1,2,1,2019,1,1,11,0,50,60,15,1,0,1,0,19.018785,19.018785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,42.279999,36.119999,4,1,1,0,0,6,4,1,517.20001,724659.88,0,0,4038.7385 -6759,8343,15217,-9,15215,15216,5,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.21484,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,517.20001,724659.88,0,0,4038.7385 -6759,8343,15218,-9,15215,15216,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-990.74304,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,-9,-9,5,1,1,0,0,6,4,1,517.20001,724659.88,0,0,4038.7385 -6760,8344,15219,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,5,0,4.0001826,4.5575018,3,0,0,0,-9,0,-1125.5865,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,4.2635322,44.231812,3,67.919998,41.849998,-9,-9,6,1,1,0,0,12,1,0,743,139618.88,0,0,235.67239 -6761,8345,15220,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,1,1,0,0,3,6.9587126,6.8251925,0,3,0,0,0,-9,0,-1197.4575,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,60,15,1,0,-9,0,2.4944386,2.4944386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.099998,49.93,-9,-9,3,1,1,0,1,9,2,1,386,354485.88,0,0,753.0365 -6762,8346,15221,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,0,1,0,5.6473989,5.5525827,3,0,0,0,-9,0,-1123.96,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.98598278,5.5835776,0,0,38.889999,41.34,-9,-9,4,1,1,0,0,1,2,0,1311,76386.094,0,0,1857.5529 -6763,8347,15222,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,0,3,0,8.4239397,8.654561,3,0,0,0,-9,0,-1021.2936,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0332026,8.4427252,0,0,54.360001,45.200001,-9,-9,5,1,1,0,0,12,4,1,2207,924426.19,0,0,3339.9448 -6764,8348,15223,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,4,0,6.7722745,6.9681826,3,0,0,0,-9,0,-969.62,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.070097,6.8683004,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,11,2,1,455,197912.89,0,0,1530.3992 -6765,8349,15224,15225,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,9.3875942,8.8272743,0,2,0,-9,1,-9,3,-85.294197,-9,0,0,39,2,4,1,2,2,2019,1,2,10,1,37,0,15,1,0,1,0,32.258163,32.258163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,35.57,63.560001,6,1,1,0,0,13,5,1,411,324891.03,0,0,6388.4844 -6765,8349,15225,15224,-9,-9,2,1,0,39,1,0,1,0,2,-9,1,1,0,0,4,8.987937,8.9409895,0,2,0,-9,1,-9,-3,-78.304634,-9,0,1,42,1,4,1,2,2,2019,1,1,15,4,35,0,15,1,1,1,0,18.586708,18.586708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.57,63.560001,51.830002,57.200001,6,1,1,0,0,13,5,1,411,324891.03,0,0,6388.4844 -6765,8349,15226,-9,15225,15224,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-950.2312,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,411,324891.03,0,0,6388.4844 -6766,8350,15227,-9,-9,-9,2,1,1,56,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-943.15491,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,-9,-9,5,1,1,0,1,13,1,1,284,0,0,0,151.34346 -6767,8351,15228,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,0,5,8.3115406,8.321928,0,3,0,0,0,-9,0,-907.09668,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,60,40,15,1,0,-9,0,5.7635236,5.7635236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,4,1,239,33075.941,0,0,1394.2122 -6768,8352,15229,15230,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,0,4,9.1447086,9.2004156,0,1,0,-9,9,0,2,-71.066887,0,0,0,46,1,1,1,1,1,2019,1,1,8,1,45,45,15,1,0,1,0,30.872803,30.872803,0,0,0,0,0,0,0,0,0,0,0,8.304862,0,0,0,55.189999,54.259998,31.41,40.07,6,1,1,0,0,8,5,1,1276,-76669.406,0,0,5867.0078 -6768,8352,15230,15229,-9,-9,1,1,0,46,1,0,0,0,1,-9,1,1,0,0,1,7.50704,7.5009751,0,1,0,-9,9,0,-2,66.908676,0,0,0,48,1,4,1,3,2,2019,1,2,18,7,40,0,15,1,1,1,0,7.9469881,7.9469881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,40.07,55.189999,54.259998,2,1,1,0,0,8,5,1,1276,-76669.406,0,0,5867.0078 -6769,8353,15231,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1001.3268,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,0,11,1,0,154,-73540.633,0,0,1191.6713 -6770,8354,15232,15233,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,1,3,0,7.8532271,7.9811296,1,0,-9,8,0,-3,-24.957821,0,0,0,70,2,1,3,2,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.2656994,7.6518025,11.039821,2,43.459999,43.580002,36.650002,30.75,6,1,1,0,0,12,3,0,801.5,1496328.4,0,0,2668.4336 -6770,8354,15233,15232,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,8,0,3,82.718163,0,0,0,67,1,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,7.6982718,0,0,0,0,7,1,1,0,0,0,6.660193,3,36.650002,30.75,43.459999,43.580002,3,1,1,0,1,12,3,0,801.5,1496328.4,0,0,2668.4336 -6771,8355,15234,-9,-9,-9,1,1,0,70,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-974.16327,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.52,49.66,-9,-9,4,1,1,0,0,9,1,0,267,-129949.91,0,0,1050.5466 -6772,8356,15235,15236,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.5602107,7.1220751,1,0,-9,18,0,-4,-10.263098,0,0,0,66,1,2,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7603812,7.7516069,0,0,54.200001,57.490002,44.830002,33.869999,6,1,1,0,0,10,4,1,223.5,2243623,0,0,3854.2263 -6772,8356,15236,15235,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,2,0,8.4713383,8.5855398,1,0,-9,18,0,4,24.833309,0,0,0,62,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3396659,8.319416,0,0,44.830002,33.869999,54.200001,57.490002,4,1,1,0,0,10,4,1,223.5,2243623,0,0,3854.2263 -6773,8357,15237,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,2,1,0,0,4,0,4.7620697,4.8459458,3,0,0,0,-9,0,-1011.1008,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,1,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1691689,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,11,2,0,233,1394230,0,0,1769.9346 -6774,8358,15238,15239,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,5,8.9013891,8.8329048,0,2,0,-9,6,0,12,-25.796032,0,0,0,42,3,3,1,3,3,2019,1,1,9,1,55,55,15,1,0,1,0,15.056125,15.056125,0,0,0,0,0,0,0,0,1,1,0,3.5592244,0,0,0,57.459999,56.16,55.900002,51.290001,6,1,1,0,0,9,5,1,768,1454393.3,0,0,4169.2163 -6774,8358,15239,15238,-9,-9,1,1,0,42,1,0,1,0,3,-9,1,1,0,0,3,7.695323,7.8135033,0,2,0,-9,6,0,-12,-122.69914,0,0,1,54,2,5,1,3,3,2019,1,2,5,2,16,5,15,1,0,1,0,18.990017,18.990017,0,0,0,0,0,0,0,0,1,1,0,3.8333409,0,0,0,55.900002,51.290001,57.459999,56.16,5,1,1,0,0,9,5,1,768,1454393.3,0,0,4169.2163 -6775,8359,15240,-9,-9,-9,1,1,1,90,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-973.24707,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,7,1,0,1003,155752.66,0,0,944.22638 -6776,8360,15241,-9,-9,-9,2,1,1,45,2,0,0,0,1,-9,2,1,0,0,3,7.9956732,8.1999683,0,3,0,0,0,-9,0,-889.12238,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,37,15,1,0,-9,1,11.127912,11.127912,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.139228,3,52.130001,47.5,-9,-9,3,1,1,0,0,6,4,1,139,-4578.1167,0,0,2507.8276 -6777,8361,15242,15244,-9,-9,1,1,1,32,1,1,1,0,2,-9,2,1,0,0,3,8.4653397,8.587224,0,2,0,-9,5,0,8,103.85092,0,0,0,24,2,4,1,2,-9,2019,1,2,8,0,60,55,15,1,0,1,0,9.6282282,9.6282282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.470001,31.07,57.16,56.150002,5,1,1,0,0,5,4,0,1023.6667,185785.72,0,0,2956.1707 -6777,8361,15243,-9,15244,15242,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1140.1354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,0,1023.6667,185785.72,0,0,2956.1707 -6777,8361,15244,15242,-9,-9,2,1,0,24,1,1,1,0,2,-9,2,1,0,0,4,7.9839272,7.9059095,0,2,0,-9,5,0,-8,-72.959984,0,1,1,32,2,3,1,-9,-9,2019,1,1,4,0,43,0,15,1,0,1,0,7.2082386,7.2082386,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,57.16,56.150002,70.470001,31.07,7,1,1,0,0,5,4,0,1023.6667,185785.72,0,0,2956.1707 -6778,8362,15245,15246,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,5,8.4845991,8.4655018,0,1,0,-9,4,0,2,15.307708,0,1,0,26,1,4,1,-9,-9,2019,1,2,8,0,64,65,15,1,0,1,0,8.5965929,8.5965929,0,0,0,0,0,0,0,0,0,0,0,5.6715221,0,0,0,41.07,60.93,54.200001,57.490002,7,1,1,0,0,12,5,1,416.5,-1759.6719,0,0,4697.0635 -6778,8362,15246,15245,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.3024855,8.4417133,0,1,0,-9,4,0,-2,-159.16139,0,1,1,28,2,5,1,-9,-9,2019,1,1,7,0,38,38,15,1,0,1,0,15.772172,15.772172,0,0,0,0,0,0,0,0,0,0,0,7.512918,0,0,0,54.200001,57.490002,41.07,60.93,6,1,1,0,0,12,5,1,416.5,-1759.6719,0,0,4697.0635 -6779,8363,15247,15248,-9,-9,2,1,0,49,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,31,0,-6,0,0,0,0,55,3,3,3,3,2,2019,4,1,21,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.124977,1,32.790001,33.860001,50,49,4,2,3,0,0,6,1,1,824.5,-75813.047,0,0,1476.0771 -6779,8363,15248,15247,-9,-9,1,1,1,55,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,8,0,6,0,0,0,0,49,3,1,3,-9,-9,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,32.790001,33.860001,5,2,3,0,0,6,1,1,824.5,-75813.047,0,0,1476.0771 -6779,8364,15249,-9,15247,15248,3,1,0,28,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1026.2324,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.7982914,3,55.73,53.98,-9,-9,4,2,3,1,1,6,1,1,702,0,0,0,-84.69854 -6779,8365,15250,-9,15247,15248,4,1,1,24,2,0,0,0,2,-9,3,3,0,0,3,0,5.2184467,5.346396,3,0,0,0,-9,0,-1087.3918,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.348876,0,0,0,47.799999,52.459999,-9,-9,4,2,3,1,1,6,2,1,376,-10896.769,0,0,271.16064 -6780,8366,15251,-9,-9,-9,1,1,0,56,3,0,1,0,2,-9,1,1,0,0,3,7.0950546,7.3228521,0,4,0,0,0,-9,0,-950.492,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,35,25,15,1,0,-9,0,4.1308546,4.1308546,0,0,0,0,0,0,0,5.48,0,0,0,0,0,0,3,49.23,55.950001,-9,-9,5,1,1,0,0,2,2,1,1820,-56702.406,0,0,1058.9551 -6780,8367,15252,-9,15251,-9,2,1,1,25,2,0,1,0,3,-9,2,1,0,0,4,8.0164804,8.3128614,0,3,0,0,0,-9,0,-918.26031,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,40,42,15,1,0,-9,1,10.301598,10.301598,0,0,0,0,0,0,0,2,0,0,0,2.6786165,0,0,3,52.619999,54.330002,-9,-9,6,1,1,0,0,2,4,1,592,70700.43,0,0,1100.1179 -6780,8368,15253,-9,15251,-9,3,1,0,22,2,0,1,0,2,-9,2,1,0,0,4,6.9652481,6.9285221,0,3,0,0,0,-9,0,-1019.2288,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,30,19,15,1,0,-9,1,3.7793758,3.7793758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,5,1,1,0,0,2,2,1,1672.5,50064.32,0,0,452.00287 -6780,8368,15254,-9,15253,-9,5,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-994.91296,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,1,1672.5,50064.32,0,0,452.00287 -6780,8369,15255,-9,15251,-9,4,1,1,19,2,0,1,0,3,-9,1,1,0,0,5,7.9440675,7.6306033,0,3,0,0,0,-9,0,-911.39252,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,70,0,15,1,0,-9,1,3.6349802,3.6349802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,1,2,3,1,314,-206275.44,0,0,-79.948677 -6781,8370,15256,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,1,0,7.9134011,8.0455704,3,0,0,0,-9,0,-1071.8486,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0710106,0,3,43.27,30.85,-9,-9,4,1,1,0,0,8,3,1,260,587223.94,0,0,1655.3986 -6782,8371,15257,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,5,9.0346556,9.1525259,0,3,0,0,0,-9,0,-1042.349,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,47,44,15,1,0,-9,0,17.249605,17.249605,0,0,0,0,0,0,0,0,1,1,0,1.8164986,0,0,0,55.200001,57.220001,-9,-9,7,1,1,0,0,12,5,1,896,405433.97,0,0,2026.0006 -6783,8372,15258,-9,15259,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1070.7294,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,25,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.360001,52.529999,-9,-9,3,1,1,0,0,10,4,1,1388.5,1594619.9,0,0,2537.5547 -6783,8372,15259,-9,-9,-9,1,1,0,54,3,0,1,0,1,-9,2,1,0,0,2,7.94593,9.0994177,7.1411409,4,0,0,0,-9,0,-834.81036,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,8,37,37,15,1,1,-9,0,10.823609,10.823609,0,0,0,0,0,0,0,0,1,1,0,7.7478023,0,0,0,23.549999,55.959999,-9,-9,2,1,1,0,0,10,4,1,1388.5,1594619.9,0,0,2537.5547 -6783,8373,15260,-9,15259,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-949.87933,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,30,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.49,56.759998,-9,-9,5,1,1,0,0,10,1,1,876,-29261.402,0,0,0 -6784,8374,15261,15262,-9,-9,2,1,0,72,1,0,0,0,3,-9,1,1,0,0,4,7.4002934,7.4883695,0,1,0,-9,49,0,4,88.028732,0,0,0,68,3,3,1,3,3,2019,1,1,7,0,45,40,15,1,0,1,0,4.7439866,4.7439866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,51.32,50.830002,2,1,1,0,0,10,3,1,1296,822796.88,0,0,2653.6316 -6784,8374,15262,15261,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,0,3,7.1722193,7.2153764,5.6084733,1,0,-9,49,0,-4,-58.973015,0,0,0,72,3,4,1,3,3,2019,1,2,9,0,20,25,15,1,0,1,0,8.1806364,8.1806364,0,0,0,0,0,0,0,0,1,1,0,0,5.4363384,0,0,51.32,50.830002,54.790001,55.860001,4,1,1,0,0,10,3,1,1296,822796.88,0,0,2653.6316 -6785,8375,15263,15264,-9,-9,2,1,1,67,1,0,0,0,1,-9,2,1,0,0,5,8.8744383,8.9838448,0,1,0,-9,46,0,2,-48.838615,0,0,0,65,2,4,1,2,3,2019,1,1,5,0,38,38,15,1,0,1,0,20.389336,20.389336,0,0,0,0,0,0,0,0,0,0,0,2.7484245,0,0,0,62.389999,56.709999,62.099998,51.16,7,1,1,0,0,11,5,1,203,518285.84,0,0,3927.4058 -6785,8375,15264,15263,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,8.404335,8.1008358,0,1,0,-9,46,0,-2,66.736137,0,0,0,67,1,5,1,3,2,2019,1,2,7,0,38,38,15,1,0,1,0,12.259377,12.259377,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,62.099998,51.16,62.389999,56.709999,6,1,1,0,0,11,5,1,203,518285.84,0,0,3927.4058 -6786,8376,15265,15266,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.204627,8.2956152,0,1,0,-9,35,0,0,66.849243,0,0,0,58,2,4,1,3,3,2019,1,1,10,0,43,43,15,1,0,1,0,11.789051,11.789051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.639999,48.41,57.16,56.150002,5,1,1,0,0,12,5,1,954,235210.34,0,0,3752.1133 -6786,8376,15266,15265,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.0615149,7.7921953,0,1,0,-9,35,0,0,-33.070446,0,0,0,58,2,3,1,3,-9,2019,1,2,7,0,38,38,15,1,0,1,0,6.9889727,6.9889727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,53.639999,48.41,7,1,1,0,0,12,5,1,954,235210.34,0,0,3752.1133 -6786,8377,15267,-9,15266,15265,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.7434425,7.7977901,0,3,0,0,0,-9,0,-924.4823,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,40,20,15,1,1,-9,1,6.9570718,6.9570718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.299999,64.129997,-9,-9,3,1,1,0,0,12,3,1,535,-61035.031,0,0,-103.92449 -6787,8378,15268,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,2,0,6.4551749,6.0402646,3,0,0,0,-9,0,-1097.0129,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.31972,6.2799764,0,0,44.18,47.48,-9,-9,5,1,1,0,0,9,2,0,462,306591,0,0,1436.8834 -6788,8379,15269,-9,15270,-9,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1047.4333,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,7,2,1,1029,217564.38,0,0,1213.7766 -6788,8379,15270,-9,-9,-9,1,1,0,46,3,0,3,0,2,-9,2,1,0,0,3,8.0955706,8.0343103,0,4,0,-9,0,-9,0,-1036.6013,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,37,0,15,1,1,-9,0,9.5613441,9.5613441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.290001,38.189999,-9,-9,4,2,3,0,0,7,2,1,1029,217564.38,0,0,1213.7766 -6788,8380,15271,-9,15270,-9,3,1,1,20,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-1192.4409,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.939999,53.18,-9,-9,6,2,3,0,0,7,1,1,216,0,0,0,0 -6788,8381,15272,-9,15270,-9,4,1,1,18,2,0,3,1,2,-9,7,2,0,0,3,6.1983676,6.4163342,0,3,0,-9,0,-9,0,-1123.9185,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.330002,51.009998,-9,-9,3,2,3,0,0,7,2,1,167,57511.887,0,0,310.92102 -6789,8382,15273,15274,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,7.0505085,7.1217027,0,1,0,-9,11,0,3,-24.262253,0,0,0,49,1,5,1,3,2,2019,1,2,13,1,15,15,15,1,0,1,0,8.884181,8.884181,0,0,0,0,0,0,0,14.5,0,0,0,0,0,14.577281,3,42.759998,33.25,55.09,55.869999,5,1,1,0,0,7,5,1,249.5,8257343.5,0,0,3732.9346 -6789,8382,15274,15273,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,0,5,9.5300884,9.5563526,0,1,0,-9,11,0,-3,-52.968212,0,0,0,52,2,2,1,2,3,2019,1,1,6,0,42,40,15,1,0,1,0,41.012806,41.012806,0,0,0,0,0,0,0,2,0,0,0,0,0,2.6642737,3,55.09,55.869999,42.759998,33.25,6,1,1,0,0,7,5,1,249.5,8257343.5,0,0,3732.9346 -6789,8383,15275,-9,15273,15274,3,1,0,27,3,0,0,0,2,-9,2,1,0,0,3,8.3285437,8.4206085,0,3,0,0,0,-9,0,-1005.0787,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,35,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,2,0,0,0,.6893577,0,.49860382,3,41.57,45.880001,-9,-9,4,1,1,0,0,7,4,1,1080,-32961.09,0,0,1761.2887 -6790,8384,15276,15278,-9,-9,2,1,1,70,1,0,2,0,2,-9,4,3,0,0,3,0,0,0,2,0,-9,27,0,25,0,-9,0,0,45,2,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.52,51.400002,40.849998,42.09,5,2,3,0,0,7,1,0,507.5,408306.38,0,0,2198.8203 -6790,8384,15277,-9,15278,15276,7,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-903.039,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.16,53.18,-9,-9,7,2,3,0,0,7,1,0,507.5,408306.38,0,0,2198.8203 -6790,8384,15278,15276,-9,-9,1,1,0,45,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,27,0,-25,0,-9,0,0,70,2,3,3,3,3,2019,4,2,16,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.849998,42.09,38.52,51.400002,5,2,3,0,0,7,1,0,507.5,408306.38,0,0,2198.8203 -6790,8384,15279,-9,15278,15276,6,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-935.24603,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,34.02,58.610001,-9,-9,5,2,3,0,0,7,1,0,507.5,408306.38,0,0,2198.8203 -6790,8385,15280,-9,15278,15276,5,1,0,18,2,0,2,1,2,0,7,2,0,0,3,6.6082144,6.6971869,0,3,0,0,0,-9,0,-1005.3011,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.58636028,0,0,0,36.439999,58.810001,-9,-9,4,2,3,0,0,7,2,0,237,142522.25,0,0,1440.4053 -6791,8386,15281,15282,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.2468243,6.0399928,1,0,-9,34,0,0,-54.459747,0,0,0,69,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9822533,6.0828767,0,0,54.200001,57.490002,56.939999,49.529999,5,1,1,0,0,2,2,1,832.5,983806.13,0,0,2466.2244 -6791,8386,15282,15281,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.0952916,6.8021688,1,0,-9,34,0,0,98.362068,0,0,0,69,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6817027,7.0265837,0,0,56.939999,49.529999,54.200001,57.490002,6,1,1,0,0,2,2,1,832.5,983806.13,0,0,2466.2244 -6791,8387,15283,-9,15282,15281,3,1,1,32,2,0,0,0,1,-9,1,1,0,0,2,9.1821918,9.1938162,0,3,0,0,0,-9,0,-825.9707,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,15,40,15,1,1,-9,1,70.057327,70.057327,0,0,0,0,0,0,0,0,1,1,0,3.244174,0,0,0,31.18,57.880001,-9,-9,3,1,1,0,0,2,5,1,510,119021.73,0,0,2228.7954 -6791,8388,15284,-9,15282,15281,4,1,1,31,2,0,0,0,1,-9,1,1,0,0,5,6.2198896,6.0774803,0,3,0,0,0,-9,0,-997.66034,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,1.2720044,1.2720044,0,0,0,0,0,0,0,0,1,1,0,2.9574635,0,0,0,62.290001,49.939999,-9,-9,6,1,1,0,0,2,2,1,1922,-89146.055,0,0,293.0925 -6792,8389,15285,15286,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,0,4,8.2522106,8.2782116,0,1,0,-9,2,0,7,-76.480095,0,0,0,25,2,3,1,2,2,2019,1,2,8,0,48,48,15,1,0,1,0,8.5501366,8.5501366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,57.240002,41.16,5,1,1,0,0,4,4,1,620.5,116211.56,0,0,3012.0586 -6792,8389,15286,15285,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,0,3,8.2860889,7.9985123,0,1,0,-9,2,0,-7,-68.974113,0,1,1,32,2,4,1,-9,-9,2019,1,1,10,3,38,38,15,1,0,1,0,9.1625395,9.1625395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.240002,41.16,51.240002,58.84,6,1,1,0,0,4,4,1,620.5,116211.56,0,0,3012.0586 -6793,8390,15287,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,4.6206536,4.7957101,3,0,0,0,-9,0,-1012.9202,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4059572,4.6797557,0,0,49.040001,55.860001,-9,-9,4,1,1,0,0,6,2,1,188,242505.95,0,0,1243.1625 -6794,8391,15288,15289,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,7.870717,8.078331,0,2,0,-9,7,0,-4,8.1789598,0,0,0,51,2,1,3,-9,-9,2019,2,1,8,0,36,42,15,1,0,3,0,11.28801,11.28801,0,0,0,0,0,0,0,7,1,0,1,.70167398,0,9.9490013,1,40.98,57.509998,42.849998,30.91,6,1,1,0,0,4,3,1,1100,265055.38,0,0,3547.9363 -6794,8391,15289,15288,-9,-9,1,1,1,51,1,0,1,0,2,-9,8,3,1,1,1,0,6.7080393,6.634635,2,0,-9,7,0,4,-54.973389,0,0,0,47,2,4,1,3,2,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.901053,6.9185281,0,0,42.849998,30.91,40.98,57.509998,6,1,1,0,0,4,3,1,1100,265055.38,0,0,3547.9363 -6794,8392,15290,-9,15288,15289,3,1,0,20,2,0,1,0,1,1,11,3,0,0,4,7.124866,7.3594985,0,3,0,0,0,-9,0,-1000.8091,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,38,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,0,1,3.1573751,0,3.8511143,3,51.490002,57.57,-9,-9,6,1,1,0,0,4,3,1,629,-131761.95,0,0,2614.1082 -6795,8393,15291,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,0,4,8.8791618,8.6944685,0,3,0,0,0,-9,0,-943.4425,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,40,40,15,1,0,-9,0,23.155701,23.155701,0,0,0,0,0,0,0,0,1,1,0,.59718418,0,0,0,51.830002,57.200001,-9,-9,6,3,4,0,0,8,5,0,166,249263.23,0,0,2041.6021 -6796,8394,15292,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1059.6532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.98,29.33,-9,-9,6,1,1,0,0,7,1,0,489,208599.47,0,0,1650.1748 -6797,8395,15293,15294,-9,-9,2,1,0,52,1,0,1,0,1,-9,1,1,0,0,4,8.5295115,8.416049,0,2,0,-9,27,0,5,56.041435,0,0,0,47,1,3,1,1,1,2019,1,1,10,0,20,18,15,1,0,1,0,31.069698,31.069698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.130001,49.27,47.790001,53.790001,6,3,4,0,0,7,5,1,595,898569.63,0,0,5422.4102 -6797,8395,15294,15293,-9,-9,1,1,1,47,1,0,1,0,1,-9,1,1,0,0,3,8.9228611,8.8474331,5.4686007,2,0,-9,27,0,-5,-2.9399278,0,0,0,52,1,4,1,2,2,2019,1,2,11,1,45,50,15,1,0,1,0,22.767809,22.767809,0,0,0,0,0,0,0,0,1,1,0,5.4480915,0,0,0,47.790001,53.790001,60.130001,49.27,6,1,1,0,0,7,5,1,595,898569.63,0,0,5422.4102 -6797,8396,15295,-9,15293,15294,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,6.9642038,7.0712461,0,3,0,0,0,-9,0,-984.2052,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4037611,0,0,0,42.73,58.880001,-9,-9,6,4,2,0,0,7,5,1,818,149027.5,0,0,-1223.2863 -6798,8397,15296,15297,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,8.3689728,8.2274933,0,1,0,-9,8,0,-17,-57.611362,0,0,1,53,1,3,1,2,2,2019,1,2,12,0,77,42,15,1,0,1,0,6.0231333,6.0231333,0,0,0,0,0,0,0,0,0,0,0,4.1152844,0,0,0,39.029999,56.310001,49.630001,54.220001,5,1,1,0,0,5,5,1,558.5,2620167.3,0,0,3485.5972 -6798,8397,15297,15296,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,8.5985422,8.3714628,0,1,0,-9,8,0,17,35.007774,0,0,0,36,1,4,1,-9,-9,2019,1,1,10,1,42,42,15,1,0,1,0,12.981784,12.981784,0,0,0,0,0,0,0,0,0,0,0,2.879216,0,0,0,49.630001,54.220001,39.029999,56.310001,4,1,1,0,0,5,5,1,558.5,2620167.3,0,0,3485.5972 -6799,8398,15298,15301,-9,-9,2,1,0,28,1,1,3,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,11,0,-6,-40.311295,0,1,1,34,2,4,1,3,3,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,40.09,52.060001,50.619999,53.790001,4,2,3,1,0,8,4,0,1747.4,817869.69,0,0,5119.4341 -6799,8398,15299,-9,15298,15301,3,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.04279,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,4,0,1747.4,817869.69,0,0,5119.4341 -6799,8398,15300,-9,15298,15301,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-863.63995,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,4,0,1747.4,817869.69,0,0,5119.4341 -6799,8398,15301,15298,-9,-9,1,1,1,34,1,1,3,0,2,-9,1,1,0,0,4,9.3902845,9.251544,0,2,0,-9,11,0,6,3.4066041,0,0,0,28,2,2,3,3,3,2019,2,2,11,0,50,45,15,1,0,3,0,27.213913,27.213913,0,0,0,0,0,0,0,2,1,1,0,0,0,.11818784,3,50.619999,53.790001,40.09,52.060001,7,2,3,0,0,8,4,0,1747.4,817869.69,0,0,5119.4341 -6799,8398,15302,-9,15298,15301,4,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.74213,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,0,1747.4,817869.69,0,0,5119.4341 -6800,8399,15303,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,3,0,6.6716523,6.2491517,3,0,0,0,-9,0,-993.13599,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,3.4100215,0,4.2077236,0,0,0,0,1,1,0,1.9178855,6.4128962,0,0,52,45,-9,-9,6,2,3,0,0,6,2,1,357,332786.53,0,0,1237.484 -6801,8400,15304,-9,-9,-9,1,1,0,44,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1105.8019,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.98,22.059999,-9,-9,3,2,3,0,0,2,1,1,534.5,0,0,0,1294.5205 -6801,8400,15305,-9,15304,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.6492,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,2,1,1,534.5,0,0,0,1294.5205 -6801,8401,15306,-9,15304,-9,2,1,1,19,3,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-983.15845,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.253151,3,43.509998,55.110001,-9,-9,6,2,3,0,0,2,1,1,217,18864.689,0,0,-263.1991 -6802,8402,15307,-9,15310,15309,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.22327,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,5,1,363,1098215.6,0,0,26585.914 -6802,8402,15308,-9,15310,15309,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.53558,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,5,1,363,1098215.6,0,0,26585.914 -6802,8402,15309,15310,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,10.160506,9.9792452,0,2,0,-9,17,0,-1,81.108475,0,0,0,45,2,4,1,2,3,2019,1,2,10,0,41,45,15,1,0,1,0,56.620235,56.620235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,52.669998,48.57,6,1,1,0,0,13,5,1,363,1098215.6,0,0,26585.914 -6802,8402,15310,15309,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,8.0331717,7.9125595,0,2,0,-9,7,0,1,-55.311062,0,0,0,44,2,4,1,-9,-9,2019,1,1,10,0,32,32,15,1,0,1,0,12.284924,12.284924,0,0,0,0,0,0,0,2,1,1,0,0,0,1.82903,3,52.669998,48.57,48.279999,60.18,5,1,1,0,0,13,5,1,363,1098215.6,0,0,26585.914 -6803,8403,15311,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,0,3,8.608655,8.6461267,0,3,0,0,0,-9,0,-967.84686,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,45,45,15,1,0,-9,0,12.188848,12.188848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,-9,-9,6,1,1,0,0,1,5,1,1478,1637556,0,0,978.67426 -6804,8404,15312,15313,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.2665076,5.1694407,1,0,-9,52,0,0,-88.886841,0,0,0,71,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.0618024,24.398762,1,49.439999,54.259998,29.48,31.59,4,1,1,0,0,8,2,1,1392,68249.914,0,0,1475.292 -6804,8404,15313,15312,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,1,2,0,6.0153542,5.6061726,1,0,-9,52,0,0,-23.911243,0,0,0,71,3,3,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,33.951015,0,0,0,0,0,1,1,0,5.8393021,6.141984,0,0,29.48,31.59,49.439999,54.259998,4,1,1,0,0,8,2,1,1392,68249.914,0,0,1475.292 -6805,8405,15314,15318,-9,-9,1,1,1,48,1,0,3,0,2,-9,2,1,0,0,4,7.1961765,6.9482422,0,2,0,-9,25,0,4,39.128128,0,0,0,44,2,5,1,3,3,2019,1,2,9,1,36,30,15,1,0,1,0,4.0247512,4.0247512,0,0,0,0,0,0,0,0,1,1,0,5.2082253,0,0,0,37,47.759998,62.389999,56.709999,6,2,3,0,0,5,2,1,445.39999,37922.824,0,0,2358.604 -6805,8405,15315,-9,15318,15314,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.1289,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,5,2,1,445.39999,37922.824,0,0,2358.604 -6805,8405,15316,-9,15318,15314,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1168.0859,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,5,2,1,445.39999,37922.824,0,0,2358.604 -6805,8405,15317,-9,15318,15314,5,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-886.19568,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,5,2,1,445.39999,37922.824,0,0,2358.604 -6805,8405,15318,15314,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,0,5,6.9864402,6.5415335,0,2,0,-9,25,0,-4,-16.209827,0,0,1,48,2,4,1,3,3,2019,1,1,7,0,16,16,15,1,0,1,0,6.3753881,6.3753881,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.389999,56.709999,37,47.759998,7,2,3,0,0,5,2,1,445.39999,37922.824,0,0,2358.604 -6806,8406,15319,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,2,1,0,0,3,0,6.0036983,6.5242839,3,0,0,0,-9,0,-981.00665,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,8,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2480645,0,0,53,47,-9,-9,5,1,1,0,0,1,2,1,2302,297874.31,0,0,275.60593 -6807,8407,15320,15321,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,0,4,7.776454,7.6034532,0,1,0,-9,44,0,1,49.533104,-9,0,0,63,3,2,1,3,3,2019,1,1,10,0,37,0,15,1,0,1,0,6.2369938,6.2369938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.459999,54.529999,54.669998,40.18,5,1,1,0,0,8,2,0,478,627210.63,0,0,936.84888 -6807,8407,15321,15320,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,0,2,0,0,0,1,0,-9,44,0,-1,15.304286,0,0,0,64,3,4,1,3,3,2019,1,2,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.669998,40.18,46.459999,54.529999,5,1,1,0,0,8,2,0,478,627210.63,0,0,936.84888 -6808,8408,15322,15323,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,7.0940123,6.8933744,1,0,-9,46,0,-3,6.5686626,0,0,0,70,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7677939,7.2991147,0,0,43.040001,50.369999,65.379997,25.530001,6,1,1,0,0,12,2,1,1691.5,491879.06,0,0,1329.5867 -6808,8408,15323,15322,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,5.3141441,5.4606838,1,0,-9,46,0,3,111.3254,0,0,0,67,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7990694,0,0,65.379997,25.530001,43.040001,50.369999,6,1,1,0,0,12,2,1,1691.5,491879.06,0,0,1329.5867 -6809,8409,15324,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,1,1,0,7.9336696,7.6637998,3,0,0,0,-9,0,-963.1004,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3950677,0,0,0,40.25,15.6,-9,-9,6,1,1,0,0,10,3,0,677,376758.97,0,0,4270.2578 -6810,8410,15325,15326,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,5,8.4603577,8.0626554,0,1,0,-9,43,0,-2,33.174866,0,0,0,63,1,5,1,3,2,2019,1,2,7,0,38,37,15,1,0,1,0,10.54797,10.54797,0,0,0,0,0,0,0,14.5,0,0,0,0,0,22.247498,3,61.009998,53.18,62.389999,56.709999,6,1,1,0,0,11,5,1,323.5,726912.75,0,0,2986.4717 -6810,8410,15326,15325,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,5,8.6488438,8.861598,0,1,0,-9,43,0,2,-22.559349,0,0,0,61,2,5,1,2,3,2019,1,1,6,0,38,37,15,1,0,1,0,14.695433,14.695433,0,0,0,0,0,0,0,0,0,0,0,3.4132438,0,0,0,62.389999,56.709999,61.009998,53.18,7,1,1,0,0,11,5,1,323.5,726912.75,0,0,2986.4717 -6811,8411,15327,-9,15329,15328,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1009.2264,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,6,3,1,666.75,197093.34,0,0,2521.7695 -6811,8411,15328,15329,-9,-9,1,1,1,53,1,0,2,0,3,-9,2,1,0,0,3,7.9473419,7.8182497,0,2,0,-9,22,0,5,-16.68852,0,0,0,48,2,4,1,2,2,2019,1,2,8,0,45,44,15,1,0,1,0,6.6333146,6.6333146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,45.259998,56.189999,4,1,1,0,0,6,3,1,666.75,197093.34,0,0,2521.7695 -6811,8411,15329,15328,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,8.269722,8.1396179,0,2,0,-9,22,0,-5,-63.875721,0,0,0,53,3,3,1,3,3,2019,1,1,11,0,40,41,15,1,0,1,0,9.1152868,9.1152868,0,0,0,0,0,0,0,2,1,1,0,0,0,9.7348766,3,45.259998,56.189999,54.959999,53.169998,7,1,1,0,0,6,3,1,666.75,197093.34,0,0,2521.7695 -6811,8411,15330,-9,15329,15328,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1115.207,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,6,3,1,666.75,197093.34,0,0,2521.7695 -6812,8412,15331,15332,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,6.9439416,8.2937899,8.3245621,1,0,-9,45,0,-1,116.95474,0,0,0,66,3,4,3,3,3,2019,4,2,7,0,12,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3858356,7.9864607,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,10,4,1,799.5,1803691.5,0,0,4459.8604 -6812,8412,15332,15331,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,45,0,1,49.40012,0,0,0,65,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0640302,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,10,4,1,799.5,1803691.5,0,0,4459.8604 -6813,8413,15333,15334,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,2,0,7.8517675,7.6424384,1,0,-9,8,0,6,-130.16138,0,0,0,76,3,2,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3801823,8.0091286,0,0,51.060001,35.25,42.580002,27.940001,4,4,5,0,0,8,3,1,527.5,1454751.5,0,0,3104.2534 -6813,8413,15334,15333,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,57,0,-6,-53.023388,0,0,0,82,3,2,3,3,2,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,1,6.7155714,0,0,0,0,77.83197,0,1,1,0,0,0,0,0,42.580002,27.940001,51.060001,35.25,4,4,5,0,0,8,3,1,527.5,1454751.5,0,0,3104.2534 -6814,8414,15335,-9,-9,-9,1,1,0,45,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1069.5414,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,2,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.150002,28.959999,-9,-9,5,3,4,1,0,5,1,0,2666,0,0,0,2874.5471 -6814,8415,15336,-9,15335,-9,2,1,1,18,2,0,0,0,2,1,2,1,0,0,3,7.4551601,7.2017255,0,3,0,0,0,-9,0,-1001.0067,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,25,0,15,1,0,-9,1,6.0061922,6.0061922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,-9,-9,7,3,4,0,0,5,3,0,212,-36891.664,0,0,509.10709 -6815,8416,15337,15338,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.7395144,8.7593431,0,2,0,-9,6,0,4,15.305921,0,0,0,38,2,3,1,2,1,2019,1,2,6,0,42,42,15,1,0,1,0,12.608993,12.608993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,38.860001,59.060001,6,1,1,0,0,4,4,1,421,677033.38,0,0,3081.5906 -6815,8416,15338,15337,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,3,8.1485043,8.0159941,0,2,0,-9,6,0,-4,159.63095,0,0,1,42,2,3,1,1,2,2019,1,1,13,2,43,43,15,1,0,1,0,9.7811337,9.7811337,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.860001,59.060001,57.330002,53.459999,5,1,1,0,0,4,4,1,421,677033.38,0,0,3081.5906 -6815,8416,15339,-9,15338,15337,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.6506,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,421,677033.38,0,0,3081.5906 -6816,8417,15340,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1059.6222,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,51.790001,-9,-9,4,3,4,1,0,5,1,0,919,64927.336,0,0,1613.8187 -6817,8418,15341,-9,15342,15346,3,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.91315,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,5,1,1672.5,4510097,0,0,5904.1431 -6817,8418,15342,15346,-9,-9,1,1,0,39,1,0,4,0,1,-9,1,1,0,0,4,9.2761173,9.4209166,0,2,0,-9,13,0,-5,27.963898,0,0,1,44,3,4,1,3,1,2019,1,2,6,0,38,30,15,1,0,1,0,30.875328,30.875328,0,0,0,0,0,0,0,0,1,1,0,3.8851151,0,0,0,59.529999,56.439999,52,56,6,1,1,0,0,5,5,1,1672.5,4510097,0,0,5904.1431 -6817,8418,15343,-9,15342,15346,6,1,0,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.35797,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,5,1,1672.5,4510097,0,0,5904.1431 -6817,8418,15344,-9,15342,15346,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.454,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,1672.5,4510097,0,0,5904.1431 -6817,8418,15345,-9,15342,15346,4,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.34259,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,1672.5,4510097,0,0,5904.1431 -6817,8418,15346,15342,-9,-9,2,1,1,44,1,0,4,0,3,-9,1,1,0,0,4,8.7168875,8.90205,0,2,0,-9,13,0,5,-46.112614,0,0,0,39,1,4,1,2,3,2019,1,1,9,1,40,45,15,1,0,1,0,16.05364,16.05364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,59.529999,56.439999,6,1,1,0,0,5,5,1,1672.5,4510097,0,0,5904.1431 -6818,8419,15347,15348,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,8.6184301,8.4736204,0,1,0,-9,7,0,-16,67.387192,0,0,0,73,3,3,3,2,2,2019,2,1,23,10,43,43,15,1,1,4,0,16.448792,16.448792,0,0,0,0,0,0,0,0,1,1,0,6.232429,0,0,0,25.200001,61.130001,57.330002,53.459999,6,1,1,0,0,6,5,1,164.5,1238779.5,0,0,3730.7607 -6818,8419,15348,15347,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,7.2914824,7.5222502,1,0,-9,12,0,16,-104.40332,0,0,0,57,1,4,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7172971,7.2882395,0,0,57.330002,53.459999,25.200001,61.130001,7,1,1,0,0,6,5,1,164.5,1238779.5,0,0,3730.7607 -6819,8420,15349,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,6.0784755,5.6788254,3,0,0,0,-9,0,-1025.9388,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0331302,4.3593698,0,0,56.939999,49.529999,-9,-9,6,1,1,0,0,11,2,1,277,220445.14,0,0,-479.38953 -6820,8421,15350,-9,15352,15353,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.2634,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,-9,-9,6,1,1,0,0,6,2,1,734.5,207223.05,0,0,1730.796 -6820,8421,15351,-9,15352,15353,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-862.72919,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,2,1,734.5,207223.05,0,0,1730.796 -6820,8421,15352,15353,-9,-9,1,1,0,55,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,24,0,6,40.540264,0,0,0,49,2,4,1,2,2,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9440627,0,0,0,54.959999,53.169998,57.16,56.150002,6,1,1,0,0,6,2,1,734.5,207223.05,0,0,1730.796 -6820,8421,15353,15352,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.0764694,8.3020782,0,2,0,-9,24,0,-6,-83.8414,0,0,0,55,2,3,3,2,2,2019,2,1,10,0,34,35,15,1,0,3,0,13.092529,13.092529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.959999,53.169998,6,1,1,0,0,6,2,1,734.5,207223.05,0,0,1730.796 -6821,8422,15354,15355,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,8.8584042,8.9791803,0,1,0,-9,10,0,6,129.05522,0,0,0,55,2,3,1,-9,2,2019,1,2,12,1,42,41,15,1,0,1,0,19.169249,19.169249,0,0,0,0,0,0,0,0,0,0,0,6.4524031,0,0,0,51.59,42.57,57.330002,53.459999,5,1,1,0,0,6,5,1,1189.5,2461799.5,0,0,6766.502 -6821,8422,15355,15354,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,9.0743866,9.0513115,0,1,0,-9,10,0,-6,-103.58198,0,0,0,61,1,3,1,3,2,2019,1,1,11,0,40,42,15,1,0,1,0,20.566484,20.566484,0,0,0,0,0,0,0,0,0,0,0,7.8685575,0,0,0,57.330002,53.459999,51.59,42.57,5,1,1,0,0,6,5,1,1189.5,2461799.5,0,0,6766.502 -6822,8423,15356,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,2,1,0,0,2,8.4297981,8.5551834,0,3,0,0,0,-9,0,-926.70941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,39,43,15,1,0,-9,0,15.090136,15.090136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.259998,38.349998,-9,-9,4,1,1,0,0,13,5,0,1651,222388.92,0,0,2402.8401 -6823,8424,15357,-9,-9,-9,1,1,0,21,2,1,1,0,2,-9,2,1,0,0,4,6.584939,6.9770632,5.8503013,4,0,-9,0,0,0,-882.75531,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,12,16,15,1,0,-9,0,8.0847044,8.0847044,0,0,0,0,0,0,0,0,1,1,0,4.785768,0,0,0,35.470001,57.790001,-9,-9,4,1,1,0,1,10,2,0,356,-8563.957,0,0,1587.2151 -6823,8424,15358,-9,15357,-9,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-982.6319,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,0,356,-8563.957,0,0,1587.2151 -6824,8425,15359,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,7.987287,7.9555697,3,0,0,0,-9,0,-984.44232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5122957,7.5361166,0,0,57.09,46.700001,-9,-9,5,1,1,0,0,9,3,1,148,791466.5,0,0,1504.7676 -6825,8426,15360,15361,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.557477,6.7970643,1,0,-9,7,0,-2,-100.60845,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5116596,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,12,2,1,287.5,676974.81,0,0,1107.2007 -6825,8426,15361,15360,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.7382841,7.037425,1,0,-9,7,0,2,94.256783,0,0,0,65,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1760545,6.5876398,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,12,2,1,287.5,676974.81,0,0,1107.2007 -6826,8427,15362,15363,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,0,4,7.7701526,7.7941012,0,1,0,-9,2,0,-5,20.260138,0,1,1,34,2,5,1,-9,-9,2019,1,2,6,0,80,30,15,1,0,1,0,3.1987119,3.1987119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,48.25,49.360001,6,1,1,0,0,12,4,0,386.5,31199.004,0,0,2088.2576 -6826,8427,15363,15362,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,0,5,7.7778506,7.5047264,0,1,0,-9,2,0,5,2.5946419,-9,0,0,29,2,4,1,-9,-9,2019,1,1,6,0,32,0,15,1,0,1,0,6.7977018,6.7977018,0,0,0,0,0,0,0,0,0,0,0,1.95689,0,0,0,48.25,49.360001,60.119999,54.799999,1,1,1,0,0,12,4,0,386.5,31199.004,0,0,2088.2576 -6827,8428,15364,-9,15365,15366,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-884.72278,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,1085,1534257.3,0,0,2850.8738 -6827,8428,15365,15366,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,0,4,7.8501153,7.9807587,5.5380759,2,0,-9,12,0,-8,-51.708744,0,0,1,51,2,5,1,2,3,2019,1,1,6,0,19,20,15,1,0,1,0,13.436569,13.436569,0,0,0,0,0,0,0,0,1,1,0,5.9404731,0,0,0,57.16,56.150002,48.959999,60.259998,6,1,1,0,0,5,4,1,1085,1534257.3,0,0,2850.8738 -6827,8428,15366,15365,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,5,8.2948818,8.4017487,6.2897048,2,0,-9,12,0,8,-50.387638,0,0,0,43,1,4,1,2,2,2019,1,2,11,0,30,30,15,1,0,1,0,18.606009,18.606009,0,0,0,0,0,0,0,0,1,1,0,6.4092398,0,0,0,48.959999,60.259998,57.16,56.150002,6,1,1,0,0,5,4,1,1085,1534257.3,0,0,2850.8738 -6828,8429,15367,15368,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,8.6744194,8.8386793,0,1,0,-9,7,0,-2,15.944569,0,0,0,56,2,3,1,-9,-9,2019,1,1,19,7,37,37,15,1,1,1,0,14.515356,14.515356,0,0,0,0,0,0,0,0,0,0,0,4.2462554,0,0,0,36.790001,56.27,41.470001,58.080002,3,1,1,0,0,9,5,1,422,669974.94,0,0,3652.8623 -6828,8429,15368,15367,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.5226917,8.540556,0,1,0,-9,7,0,2,-6.227756,0,0,0,54,1,3,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,17.301098,17.301098,0,0,0,0,0,0,0,0,0,0,0,3.9600213,0,0,0,41.470001,58.080002,36.790001,56.27,6,1,1,0,0,9,5,1,422,669974.94,0,0,3652.8623 -6829,8430,15369,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,0,4,0,7.7510266,8.0385675,3,0,0,0,-9,0,-1075.1781,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3371315,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,7,4,1,966,729833.69,0,0,2234.7451 -6830,8431,15370,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,2,1,0,0,2,6.9535518,7.2879415,6.4475045,3,0,0,0,-9,0,-885.6474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,14,0,15,1,0,-9,0,9.9024343,9.9024343,0,0,0,0,0,0,0,0,1,1,0,5.8990712,6.3391371,0,0,68.730003,30.950001,-9,-9,5,1,1,0,0,7,3,1,237,624451,0,0,960.93866 -6831,8432,15371,15372,-9,-9,1,1,1,63,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,38,0,3,0,0,0,0,60,3,1,3,3,3,2019,4,2,23,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.11755,1,23.940001,23.190001,36.040001,22.780001,1,1,1,0,1,13,1,0,214,-101744.21,0,0,860.91345 -6831,8432,15372,15371,-9,-9,2,1,0,60,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,38,0,-3,0,0,0,0,63,3,1,3,3,3,2019,4,1,34,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.040001,22.780001,23.940001,23.190001,2,1,1,0,0,13,1,0,214,-101744.21,0,0,860.91345 -6832,8433,15373,15374,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.3624043,7.6451588,1,0,-9,6,0,0,27.830523,0,0,0,70,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.7104468,7.5282674,.093613334,3,59.880001,45.369999,49.41,58.279999,6,1,1,0,0,7,2,1,688,804914.88,0,0,2879.978 -6832,8433,15374,15373,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,4.9914241,4.7684135,1,0,-9,6,0,0,76.6959,0,0,0,70,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.1697598,4.8165436,13.160645,3,49.41,58.279999,59.880001,45.369999,6,1,1,0,0,7,2,1,688,804914.88,0,0,2879.978 -6833,8434,15375,15376,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,3,8.3026609,8.3973675,0,2,0,-9,8,0,2,3.7226996,0,0,0,33,2,4,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,10.431711,10.431711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.869999,42.130001,57.16,56.150002,6,1,1,0,0,10,4,1,494.5,-51320.828,0,0,2925.0146 -6833,8434,15376,15375,-9,-9,2,1,0,33,1,1,2,0,2,-9,2,1,0,0,4,7.946291,8.0614367,0,2,0,-9,8,0,-2,40.152397,0,0,1,35,2,3,1,-9,-9,2019,1,1,8,0,35,30,15,1,0,1,0,8.0826187,8.0826187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,60.869999,42.130001,6,1,1,0,0,10,4,1,494.5,-51320.828,0,0,2925.0146 -6833,8434,15377,-9,15376,15375,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.7474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,4,1,494.5,-51320.828,0,0,2925.0146 -6833,8434,15378,-9,15376,15375,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.3293,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,1,494.5,-51320.828,0,0,2925.0146 -6834,8435,15379,-9,15380,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,0,5,8.9464626,8.9192753,0,3,0,0,0,-9,0,-987.3692,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,41,45,15,1,0,-9,1,15.67253,15.67253,0,0,0,0,0,0,0,2,1,1,0,0,0,1.796895,3,57.060001,57.759998,-9,-9,6,1,1,0,0,12,5,1,389,406749.44,0,0,2825.3286 -6834,8436,15380,-9,-9,-9,2,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,5.7552948,6.1442442,3,0,0,0,-9,0,-1048.3583,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.658874,6.0452714,0,0,53,44,-9,-9,6,1,1,0,0,12,2,1,391,231896.23,0,0,-392.92892 -6835,8437,15381,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,4,0,6.9456763,6.7970819,3,0,0,0,-9,0,-954.5658,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6884484,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,2,1,416,243996.22,0,0,892.49384 -6836,8438,15382,15383,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,2,0,7.3346686,7.0774779,1,0,-9,52,0,2,53.985054,0,0,0,76,1,3,3,-9,-9,2019,4,1,24,9,0,0,15,4,1,4,0,0,0,1,0,5.995142,0,0,0,0,0,1,1,0,.7677204,7.0850754,0,0,23.82,47.48,62.029999,41.709999,3,1,1,0,0,10,2,1,1224,1616124.8,0,0,2390.8149 -6836,8438,15383,15382,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,5.3444915,5.9183879,1,0,-9,52,0,-2,-7.109313,0,0,0,78,2,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6394014,5.7290406,0,0,62.029999,41.709999,23.82,47.48,6,1,1,0,0,10,2,1,1224,1616124.8,0,0,2390.8149 -6837,8439,15384,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,2,0,5.789042,5.9566116,3,0,0,0,-9,0,-1001.1102,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.022138,0,0,0,0,1,1,0,0,5.5674067,0,0,59.560001,32.490002,-9,-9,6,3,4,0,0,8,2,1,429,380233.78,0,0,588.66394 -6838,8440,15385,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,1,1,0,0,5,7.4832172,7.7417397,0,3,0,0,0,-9,0,-947.21576,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,0,15,1,0,-9,0,4.9893017,4.9893017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.52,44.68,-9,-9,5,4,2,0,0,5,3,0,774,35052.609,0,0,285.51312 -6839,8441,15386,15387,-9,-9,1,1,0,52,1,0,0,0,1,-9,97,3,0,0,1,0,0,0,1,0,-9,23,0,-6,-76.92099,0,0,0,58,2,4,3,2,2,2019,4,2,17,5,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6094335,0,0,0,29.83,35.209999,62.490002,55.09,4,1,1,0,0,2,5,1,404,1227603.6,0,0,4261.0664 -6839,8441,15387,15386,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,0,4,9.0292578,9.5844994,7.8828893,1,0,-9,23,0,6,65.740242,0,0,0,52,1,1,3,3,3,2019,4,1,5,0,37,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1030607,0,0,62.490002,55.09,29.83,35.209999,1,1,1,0,0,2,5,1,404,1227603.6,0,0,4261.0664 -6840,8442,15388,-9,15390,15389,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-971.27814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,554.25,82990.656,0,0,1721.738 -6840,8442,15389,15390,-9,-9,1,1,1,21,1,1,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,1,-9,-1,0,-9,1,0,22,2,4,3,-9,-9,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.810001,59.91,38.82,63.209999,5,1,1,1,1,2,1,0,554.25,82990.656,0,0,1721.738 -6840,8442,15390,15389,-9,-9,2,1,0,22,1,1,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,1,-9,1,0,-9,1,1,21,2,4,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.82,63.209999,48.810001,59.91,4,1,1,1,1,2,1,0,554.25,82990.656,0,0,1721.738 -6840,8442,15391,-9,15390,15389,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1049.7969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,554.25,82990.656,0,0,1721.738 -6841,8443,15392,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,0,5,8.5426016,8.6423616,0,3,0,0,0,-9,0,-821.38379,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,40,15,1,0,-9,0,12.464682,12.464682,0,0,0,0,0,0,0,0,0,0,0,3.0765369,0,0,0,43.32,63.939999,-9,-9,6,1,1,0,0,9,4,1,786,93540.813,0,0,3031.9946 -6842,8444,15393,15396,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,4,8.7096729,8.7109613,0,2,0,-9,8,0,-14,47.552612,0,0,1,50,1,3,1,1,2,2019,1,2,6,0,30,24,15,1,0,1,0,16.74877,16.74877,0,0,0,0,0,0,0,0,1,1,0,1.8826488,0,0,0,59.290001,49.68,50.419998,41.419998,7,1,1,0,0,5,5,1,779.25,1764870.3,0,0,4859.7095 -6842,8444,15394,-9,15393,15396,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.0757,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,779.25,1764870.3,0,0,4859.7095 -6842,8444,15395,-9,15393,15396,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.378,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,779.25,1764870.3,0,0,4859.7095 -6842,8444,15396,15393,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,3,8.9975367,9.0503922,0,2,0,-9,8,0,14,73.190727,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,0,46,49,15,1,0,1,0,21.260344,21.260344,0,0,0,0,0,0,0,0,1,1,0,3.797173,0,0,0,50.419998,41.419998,59.290001,49.68,6,1,1,0,0,5,5,1,779.25,1764870.3,0,0,4859.7095 -6843,8445,15397,15398,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,2,8.846673,8.8719597,0,1,0,-9,18,0,-2,85.409866,0,0,0,48,2,4,1,2,-9,2019,1,1,12,0,38,40,15,1,0,1,0,18.520987,18.520987,0,0,0,0,0,0,0,0,0,0,0,2.8566799,0,0,0,48.189999,38.830002,41.110001,60.68,6,1,1,0,0,2,5,1,379,894327.81,0,0,5099.1973 -6843,8445,15398,15397,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.4983788,9.0455256,7.0040803,1,0,-9,18,0,2,129.59358,0,0,0,46,2,2,1,3,2,2019,1,2,17,5,39,38,15,1,1,1,0,16.579449,16.579449,0,0,0,0,0,0,0,0,0,0,0,5.0498381,7.3082538,0,0,41.110001,60.68,48.189999,38.830002,7,1,1,0,0,2,5,1,379,894327.81,0,0,5099.1973 -6844,8446,15399,15400,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.3263512,7.4346695,0,1,0,-9,10,0,0,-71.829895,0,0,0,58,2,3,1,2,1,2019,1,2,10,0,25,28,15,1,0,1,0,9.2715044,9.2715044,0,0,0,0,0,0,0,0,0,0,0,3.0608499,0,0,0,49.860001,55.310001,50,49,6,1,1,0,0,4,5,1,841.5,504649.69,0,0,4004.3149 -6844,8446,15400,15399,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.9665461,9.0470362,0,1,0,-9,10,0,0,-67.545952,0,0,0,58,2,4,1,2,2,2019,1,1,12,0,41,35,15,1,0,1,0,21.19928,21.19928,0,0,0,0,0,0,0,0,0,0,0,2.7780075,0,0,0,50,49,49.860001,55.310001,4,1,1,0,0,4,5,1,841.5,504649.69,0,0,4004.3149 -6845,8447,15401,15402,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.9056358,8.6563301,0,1,0,-9,11,0,-3,21.544016,0,0,0,53,2,5,1,2,2,2019,1,2,10,0,40,35,15,1,0,1,0,16.928499,16.928499,0,0,0,0,0,0,0,14.5,0,0,0,0,0,4.8620744,3,48.279999,60.18,39.189999,64.93,5,4,2,0,0,8,5,1,363.5,284256.44,0,0,3655.4463 -6845,8447,15402,15401,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,8.0504951,7.7127781,0,1,0,-9,10,0,3,111.20332,0,0,0,50,2,4,1,2,-9,2019,1,1,16,4,35,35,15,1,1,1,0,11.657545,11.657545,0,0,0,0,0,0,0,2,0,0,0,0,0,12.838877,3,39.189999,64.93,48.279999,60.18,3,3,4,0,0,8,5,1,363.5,284256.44,0,0,3655.4463 -6846,8448,15403,-9,-9,-9,1,1,1,82,2,0,0,0,2,-9,4,3,0,0,3,0,8.6673937,8.6101313,3,0,0,0,-9,0,-1130.3688,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0294294,8.6145105,0,0,53.669998,51.009998,-9,-9,6,1,1,0,0,6,5,1,241,1698748.1,0,0,6528.9326 -6847,8449,15404,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1028.4954,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1959963,0,0,0,63.41,39.700001,-9,-9,5,1,1,0,0,9,1,1,255,276589.75,0,0,1116.3458 -6848,8450,15405,15406,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.2602148,8.7481213,6.6361189,1,0,-9,9,0,0,169.86198,0,0,0,59,2,4,1,3,3,2019,1,1,8,0,47,47,15,1,0,1,0,10.188042,10.188042,0,0,0,0,0,0,0,0,0,0,0,0,6.9526148,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,12,5,1,241,1453890.8,0,0,3593.9634 -6848,8450,15406,15405,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.6579342,8.5216532,0,1,0,-9,9,0,0,-16.585148,0,0,0,59,2,4,1,2,2,2019,1,2,6,0,43,47,15,1,0,1,0,19.380566,19.380566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,12,5,1,241,1453890.8,0,0,3593.9634 -6849,8451,15407,-9,15409,15410,1,1,0,26,2,1,5,0,1,-9,2,1,0,0,2,8.1690159,7.8820662,0,3,0,0,0,-9,0,-1047.2274,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,13,4,12,16,15,1,1,-9,1,25.58663,25.58663,0,0,0,0,0,0,0,42,1,1,0,0,0,41.243366,3,49.689999,31.73,-9,-9,6,2,3,0,0,8,4,0,790,0,0,0,1840.5061 -6849,8452,15408,-9,15409,15410,9,1,0,13,2,1,5,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1053.1676,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,2,3,0,0,8,1,0,528.25,448715.38,0,0,2642.887 -6849,8452,15409,15410,-9,-9,3,1,0,47,1,1,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,34,0,-8,0,0,0,0,55,3,4,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.864353,3,51,54,54,53,6,2,3,0,0,8,1,0,528.25,448715.38,0,0,2642.887 -6849,8452,15410,15409,-9,-9,2,1,1,55,1,1,5,0,3,-9,3,3,0,1,4,0,0,0,2,0,-9,6,0,8,0,0,0,0,47,3,4,3,-9,-9,2019,4,3,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.888891,3,54,53,51,54,6,2,3,1,0,8,1,0,528.25,448715.38,0,0,2642.887 -6849,8452,15411,-9,15409,15410,8,1,1,16,2,1,5,1,2,-9,7,2,0,0,5,5.2964187,5.4217391,0,2,0,0,0,-9,0,-956.17871,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,4,2,3,0,0,8,1,0,528.25,448715.38,0,0,2642.887 -6849,8453,15412,-9,15409,15410,4,1,1,31,2,1,5,0,2,-9,2,1,0,0,4,8.6937256,8.659687,0,3,0,0,0,-9,0,-1002.2758,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,36,50,15,1,0,-9,1,16.307642,16.307642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,8,5,0,654,138791.94,0,0,2610.8704 -6849,8454,15413,15416,-9,-9,6,1,0,27,1,1,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-2,-49.476875,0,1,1,29,2,3,1,-9,-9,2019,3,5,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,57.919998,51.82,5,2,3,0,0,8,2,0,759.5,42345.824,0,0,539.13727 -6849,8454,15414,-9,15413,15416,12,1,0,1,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.56384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,759.5,42345.824,0,0,539.13727 -6849,8454,15415,-9,15413,15416,11,1,0,4,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.217,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,759.5,42345.824,0,0,539.13727 -6849,8454,15416,15413,15409,15410,5,1,1,29,1,1,5,0,2,-9,2,1,0,0,3,7.2378211,7.2949071,0,2,0,-9,6,0,2,50.311066,0,1,0,27,2,4,3,3,3,2019,2,6,8,0,38,25,15,1,0,3,0,5.4068789,5.4068789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.919998,51.82,48,57,4,2,3,0,0,8,2,0,759.5,42345.824,0,0,539.13727 -6849,8455,15417,-9,15409,15410,7,1,0,21,2,1,5,0,2,-9,2,1,0,0,4,4.2007213,4.1769981,0,3,0,0,0,-9,0,-947.61395,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,11,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,-9,-9,3,2,3,0,1,8,1,0,150,160152.55,0,0,-702.0296 -6850,8456,15418,15419,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,0,5,4.8054385,6.5629606,6.2248354,1,0,-9,8,0,4,62.736649,0,0,0,58,1,4,3,1,2,2019,2,2,6,0,30,30,15,1,0,4,0,.53429222,.53429222,0,0,0,0,0,0,0,0,0,0,0,4.2888784,6.1291742,0,0,46.34,61.240002,57.16,56.150002,6,1,1,0,0,9,2,1,1291,79520.141,0,0,2430.8335 -6850,8456,15419,15418,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-4,98.118042,0,0,0,62,1,5,1,2,2,2019,3,1,8,0,0,29,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4674349,0,0,0,57.16,56.150002,46.34,61.240002,6,1,1,0,0,9,2,1,1291,79520.141,0,0,2430.8335 -6851,8457,15420,-9,15421,15422,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-972.26727,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,8,2,1,428,1664088.6,0,0,528.47241 -6851,8457,15421,15422,-9,-9,2,1,0,51,1,0,1,0,1,-9,8,3,1,1,2,0,0,0,2,0,-9,21,0,-6,-40.149197,0,0,0,57,1,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.77,25.24,43.709999,56.91,4,4,2,0,0,8,2,1,428,1664088.6,0,0,528.47241 -6851,8457,15422,15421,-9,-9,1,1,1,57,1,0,1,0,1,-9,1,1,0,0,3,0,7.970058,7.6945219,2,0,-9,21,0,6,77.412025,0,0,0,51,1,2,3,2,2,2019,2,2,16,4,0,51,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.39916345,7.6867104,0,0,43.709999,56.91,53.77,25.24,4,1,1,0,0,8,2,1,428,1664088.6,0,0,528.47241 -6852,8458,15423,15424,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,4,7.3110757,7.5562983,0,1,0,-9,9,0,-6,165.15125,0,0,1,46,2,4,1,1,2,2019,1,2,9,0,25,24,15,1,0,1,0,7.174067,7.174067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.299999,57.540001,49.459999,56.91,5,1,1,0,0,2,4,0,1052,154042.13,0,0,2761.418 -6852,8458,15424,15423,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.0380878,8.3721619,0,1,0,-9,9,0,6,-58.803291,0,0,0,40,2,4,1,-9,-9,2019,1,1,9,1,52,42,15,1,0,1,0,7.7177186,7.7177186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.459999,56.91,42.299999,57.540001,7,1,1,0,0,2,4,0,1052,154042.13,0,0,2761.418 -6853,8459,15425,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,0,1,7.1190643,7.1783872,0,3,0,0,0,-9,0,-962.1814,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,30,40,15,1,1,-9,0,5.5070996,5.5070996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.34,41.27,-9,-9,1,4,2,0,1,12,3,0,252,-28356.191,0,0,-125.0891 -6854,8460,15426,15428,-9,-9,2,1,0,27,1,0,1,0,2,-9,2,1,0,0,1,8.0223408,8.1985893,0,2,0,-9,7,0,-19,-88.96627,0,1,1,46,2,4,1,2,-9,2019,1,1,17,6,40,40,15,1,1,1,0,10.207223,10.207223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.18,56.099998,60.02,38.43,6,2,3,0,0,6,4,1,947.33331,1920.1851,0,0,2898.9612 -6854,8460,15427,-9,15426,15428,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.0707,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,4,1,947.33331,1920.1851,0,0,2898.9612 -6854,8460,15428,15426,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,7.9187546,8.1440468,0,2,0,-9,7,0,19,161.41153,0,0,0,27,2,1,1,2,1,2019,1,2,6,1,57,38,15,1,0,1,0,5.7402339,5.7402339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,38.43,20.18,56.099998,2,2,3,0,0,6,4,1,947.33331,1920.1851,0,0,2898.9612 -6855,8461,15429,-9,15431,15430,3,1,1,15,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-924.56934,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,9,3,0,643,152107.55,0,0,3056.585 -6855,8461,15430,15431,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,0,3,4.9660482,5.0213256,0,1,0,-9,9,0,5,-21.029045,0,0,0,49,2,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,.38510039,.38510039,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.119999,56.68,57.16,56.150002,6,1,1,0,0,9,3,0,643,152107.55,0,0,3056.585 -6855,8461,15431,15430,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,0,4,8.0936451,8.3202696,0,1,0,-9,9,0,-5,-149.91222,0,0,0,54,2,3,1,2,3,2019,1,2,9,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,47.119999,56.68,2,1,1,0,0,9,3,0,643,152107.55,0,0,3056.585 -6856,8462,15432,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,4,0,7.3530569,7.4907846,3,0,-9,0,1,0,-1074.2245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.266252,0,0,48.279999,60.18,-9,-9,4,1,1,0,0,2,3,1,2071,271455.31,0,0,2248.3677 -6857,8463,15433,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,1,3,0,5.9631653,6.4498768,3,0,-9,0,-9,0,-961.09442,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3057871,0,0,55,45,-9,-9,6,3,4,0,0,4,2,1,1521,500426.75,0,0,1761.3898 -6858,8464,15434,15435,-9,-9,2,1,0,51,1,0,1,0,3,-9,2,1,0,0,2,7.5328093,7.1689978,0,2,0,-9,6,0,-1,35.05761,0,0,0,52,3,4,1,3,3,2019,1,1,12,0,26,26,15,1,0,1,0,6.1464987,6.1464987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.169998,27.83,51.830002,57.200001,4,1,1,0,0,6,3,1,884.66669,351857,0,0,2120.9563 -6858,8464,15435,15434,-9,-9,1,1,1,52,1,0,1,0,3,-9,2,1,0,0,4,7.9742808,8.3033199,0,2,0,-9,6,0,1,155.59177,0,0,0,51,3,2,1,3,3,2019,1,2,8,0,44,44,15,1,0,1,0,8.5678329,8.5678329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.169998,27.83,4,1,1,0,0,6,3,1,884.66669,351857,0,0,2120.9563 -6858,8464,15436,-9,15434,15435,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-980.22662,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,43,-9,-9,4,1,1,0,0,6,3,1,884.66669,351857,0,0,2120.9563 -6859,8465,15437,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,2,7.7919188,7.8595376,0,3,0,0,0,-9,0,-974.72144,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,34,37,15,1,0,-9,0,8.3588295,8.3588295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.75,42.27,-9,-9,4,1,1,0,0,9,4,1,298,259375,0,0,1263.8365 -6860,8466,15438,15439,-9,-9,2,1,0,30,1,1,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,4,0,-20,0,0,0,1,50,3,2,3,-9,-9,2019,4,1,20,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.293919,1,23.129999,38.75,34.189999,36.099998,1,1,1,0,0,2,1,0,915.33331,-6987.4155,0,0,2242.8706 -6860,8466,15439,15438,-9,-9,1,1,1,50,1,1,1,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,4,0,20,0,0,0,0,30,2,1,3,-9,3,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.2900195,2,34.189999,36.099998,23.129999,38.75,5,1,1,0,0,2,1,0,915.33331,-6987.4155,0,0,2242.8706 -6860,8466,15440,-9,15438,15439,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.3038,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,1,0,915.33331,-6987.4155,0,0,2242.8706 -6861,8467,15441,15442,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,0,5,0,8.2002802,8.364687,1,0,-9,34,0,-10,-89.249832,0,0,0,83,1,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6542578,8.2594376,0,0,56.470001,59.400002,57.849998,50.34,6,1,1,0,0,7,4,1,819,3900146,0,0,3991.4744 -6861,8467,15442,15441,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,0,4,0,7.6590018,7.1838093,1,0,-9,30,0,10,23.912117,0,0,0,73,1,5,3,3,2,2019,4,2,16,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.1331277,6.9988928,10.156681,3,57.849998,50.34,56.470001,59.400002,6,1,1,0,0,7,4,1,819,3900146,0,0,3991.4744 -6862,8468,15443,15444,-9,-9,2,1,0,61,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,33,0,5,78.369102,0,0,0,56,2,1,1,2,3,2019,3,1,12,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3242664,0,4.9642119,3,23.969999,45.779999,59.470001,42.130001,5,1,1,0,0,13,5,1,328.5,1370559,0,0,4547.6631 -6862,8468,15444,15443,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,1,8.3850231,9.1615543,8.4203072,1,0,-9,34,0,-5,35.536732,0,0,0,61,2,3,3,3,3,2019,2,2,9,0,28,29,15,1,0,3,0,16.589705,16.589705,0,0,0,0,0,0,0,0,1,1,0,8.4284534,0,0,0,59.470001,42.130001,23.969999,45.779999,5,1,1,0,0,13,5,1,328.5,1370559,0,0,4547.6631 -6863,8469,15445,15446,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.2246628,5.6093702,1,0,-9,46,0,3,5.1394114,0,0,0,67,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2823386,5.8935409,0,0,55.189999,54.259998,57.16,56.150002,6,1,1,0,0,4,4,1,565.5,2696210,0,0,3279.6006 -6863,8469,15446,15445,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.334568,7.915216,1,0,-9,46,0,-3,-56.952156,0,0,0,70,2,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6364174,8.3575125,0,0,57.16,56.150002,55.189999,54.259998,6,1,1,0,0,4,4,1,565.5,2696210,0,0,3279.6006 -6864,8470,15447,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,0,3,7.3023901,7.9124641,6.879283,4,0,0,0,-9,0,-1066.6205,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,65,30,15,1,0,-9,0,4.0976901,4.0976901,0,0,0,0,0,0,0,2,1,1,0,6.736259,0,0,3,58.91,45.880001,-9,-9,6,1,1,0,0,6,3,0,1117,-153071.45,0,0,1878.9392 -6864,8470,15448,-9,15447,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-915.95056,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,1117,-153071.45,0,0,1878.9392 -6865,8471,15449,15452,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,0,4,8.6539278,8.8040018,0,2,0,-9,6,0,2,77.322273,0,0,0,38,1,5,1,2,2,2019,1,2,7,0,39,35,15,1,0,1,0,22.59804,22.59804,0,0,0,0,0,0,0,0,1,1,0,8.2895947,0,0,0,51.830002,57.200001,48.77,60.16,6,1,1,0,0,2,5,0,1299.5,674139.5,0,0,8100.1709 -6865,8471,15450,-9,15452,15449,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1016.8617,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,0,1299.5,674139.5,0,0,8100.1709 -6865,8471,15451,-9,15452,15449,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.49719,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,5,0,1299.5,674139.5,0,0,8100.1709 -6865,8471,15452,15449,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,0,5,9.2717876,9.3711462,6.9339652,2,0,-9,6,0,-2,29.840754,0,0,1,40,1,4,1,-9,-9,2019,1,1,13,5,32,27,15,1,1,1,0,38.163017,38.163017,0,0,0,0,0,0,0,0,1,1,0,7.8574996,0,0,0,48.77,60.16,51.830002,57.200001,6,1,1,0,0,2,5,0,1299.5,674139.5,0,0,8100.1709 -6866,8472,15453,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-980.29858,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,8,1,0,631,415445.81,0,0,901.8808 -6867,8473,15454,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,5,7.7434669,7.7928486,0,3,0,0,0,-9,0,-982.13586,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,30,15,1,0,-9,0,9.6022224,9.6022224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.009998,53.18,-9,-9,7,1,1,0,0,1,3,1,2394,230627.63,0,0,187.15569 -6868,8474,15455,-9,-9,-9,1,1,0,83,3,0,0,0,1,-9,4,3,0,0,5,0,7.4578791,7.5617208,3,0,0,0,-9,0,-878.45422,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4002085,7.7150245,0,0,55.68,54.240002,-9,-9,6,1,1,0,0,6,3,1,216,107569.96,0,0,2516.5188 -6869,8475,15456,-9,15458,15459,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-961.552,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,5,1,651,377566.25,0,0,3138.1768 -6869,8475,15457,-9,15458,15459,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.2319,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,1,651,377566.25,0,0,3138.1768 -6869,8475,15458,15459,-9,-9,2,1,0,40,1,1,2,0,1,-9,2,1,0,0,4,9.220705,9.3438025,0,2,0,-9,7,0,1,8.8173323,0,0,1,39,1,4,1,-9,-9,2019,1,1,9,1,37,44,15,1,0,1,0,32.124088,32.124088,0,0,0,0,0,0,0,0,0,0,0,3.1399045,0,0,0,45.91,59.889999,40.700001,58.009998,5,1,1,0,0,8,5,1,651,377566.25,0,0,3138.1768 -6869,8475,15459,15458,-9,-9,1,1,1,39,1,1,2,0,1,-9,1,1,0,0,4,5.2744389,5.0092473,0,2,0,-9,7,0,-1,-42.879093,0,0,0,40,1,4,1,-9,-9,2019,1,2,18,8,35,30,15,1,1,1,0,.40083379,.40083379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.700001,58.009998,45.91,59.889999,6,1,1,0,0,8,5,1,651,377566.25,0,0,3138.1768 -6870,8476,15460,15461,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.1342983,8.3927212,1,0,-9,10,0,5,-26.878166,0,0,0,67,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4394708,7.9352565,0,3,43.450001,54.439999,56.349998,51.16,5,1,1,0,0,5,3,1,488,928040.81,0,0,2253.2576 -6870,8476,15461,15460,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-5,73.737717,0,0,0,72,2,3,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5470648,0,6.2337251,3,56.349998,51.16,43.450001,54.439999,7,1,1,0,0,5,3,1,488,928040.81,0,0,2253.2576 -6871,8477,15462,15463,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,5,8.8822193,8.8398209,0,1,0,-9,6,0,1,-37.830948,0,0,1,29,1,5,1,2,1,2019,1,2,7,0,52,57,15,1,0,1,0,14.769011,14.769011,0,0,0,0,0,0,0,0,0,0,0,.55015588,0,0,0,53.509998,60.740002,57.060001,57.759998,6,1,1,0,0,6,5,1,507,0,0,0,4354.8535 -6871,8477,15463,15462,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,5,9.0776205,9.0838032,0,1,0,-9,6,0,-1,30.645216,-9,1,0,30,1,5,1,-9,-9,2019,1,1,7,0,44,0,15,1,0,1,0,20.608841,20.608841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,53.509998,60.740002,7,1,1,0,0,6,5,1,507,0,0,0,4354.8535 -6872,8478,15464,15465,-9,-9,2,1,1,55,1,0,0,0,1,-9,1,1,0,0,3,7.9930048,7.8269587,0,1,0,-9,8,0,-4,-11.127204,0,0,0,59,2,3,1,2,2,2019,1,1,12,0,50,37,15,1,0,1,0,6.5165553,6.5165553,0,0,0,0,0,0,0,0,0,0,0,1.049279,0,0,0,50.509998,53.709999,35.029999,56.630001,5,1,1,0,0,10,4,1,367.5,473663.78,0,0,2281.7466 -6872,8478,15465,15464,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.3893795,8.2581596,0,1,0,-9,8,0,4,.70723665,0,0,0,55,1,3,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,14.564895,14.564895,0,0,0,0,0,0,0,0,0,0,0,3.6627128,0,0,0,35.029999,56.630001,50.509998,53.709999,3,1,1,0,0,10,4,1,367.5,473663.78,0,0,2281.7466 -6873,8479,15466,-9,15467,15468,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.21423,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,0,816.25,419101.91,0,0,3342.9797 -6873,8479,15467,15468,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,0,4,8.542408,8.4764786,0,2,0,-9,8,0,-13,-48.116863,0,0,1,44,2,4,1,2,2,2019,1,2,13,2,50,42,15,1,0,1,0,7.8980756,7.8980756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.349998,56.169998,57.16,56.150002,5,1,1,0,0,4,4,0,816.25,419101.91,0,0,3342.9797 -6873,8479,15468,15467,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.0827579,7.894908,0,2,0,-9,8,0,13,31.869415,0,0,0,31,2,4,1,-9,-9,2019,1,1,8,0,60,40,15,1,0,1,0,6.4085903,6.4085903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,42.349998,56.169998,6,1,1,0,0,4,4,0,816.25,419101.91,0,0,3342.9797 -6873,8479,15469,-9,15467,15468,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-835.58783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,816.25,419101.91,0,0,3342.9797 -6874,8480,15470,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,7.201365,7.5346403,3,0,0,0,-9,0,-981.30133,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4711089,0,0,58.32,50.220001,-9,-9,6,3,4,0,1,8,3,1,1295,130195.28,0,0,2127.9753 -6875,8481,15471,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,3,3,0,0,2,0,7.1112843,7.1730328,3,0,-9,0,-9,0,-950.71655,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2225204,0,0,54.470001,40.299999,-9,-9,6,1,1,1,0,12,3,1,366,52728.742,0,0,1453.2465 -6876,8482,15472,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,2,1,0,0,4,7.3282838,7.3417363,0,3,0,0,0,-9,0,-1024.6552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,28,27,15,1,0,-9,0,5.8444586,5.8444586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.689999,52.619999,-9,-9,7,3,4,0,0,8,3,0,357,-29748.773,0,0,1310.7097 -6876,8483,15473,-9,15472,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-971.51202,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,55,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.799999,49.470001,-9,-9,7,4,2,0,0,8,1,0,182,115992.62,0,0,0 -6877,8484,15474,15475,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,2,0,6.2583466,6.0747371,1,0,-9,62,0,-1,59.615154,0,0,0,80,3,1,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9656873,8.6127777,2,60.299999,36.049999,49.040001,25.26,7,1,1,0,0,9,2,1,662,1303586,0,0,1589.3152 -6877,8484,15475,15474,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,1,1,0,7.3209457,7.2401218,1,0,-9,62,0,1,-2.6405532,0,0,0,79,2,2,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,4.4938445,0,0,0,0,0,1,1,0,0,7.2480755,0,0,49.040001,25.26,60.299999,36.049999,6,1,1,0,0,9,2,1,662,1303586,0,0,1589.3152 -6878,8485,15476,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,3,7.8492742,7.9317698,0,3,0,0,0,-9,0,-1053.0709,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,6.9925604,6.9925604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.880001,47.82,-9,-9,5,1,1,0,0,7,3,0,374,115096.09,0,0,1274.3456 -6879,8486,15477,15478,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,7.9823933,8.3645773,1,0,-9,26,0,1,89.135132,0,0,0,72,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1856909,8.1822472,0,0,54.740002,57.220001,58.32,50.220001,6,1,1,0,0,7,4,1,1044,2264940.8,0,0,3297.4573 -6879,8486,15478,15477,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.8212004,5.6314039,1,0,-9,26,0,-1,27.491667,0,0,0,73,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7796245,5.5655794,0,0,58.32,50.220001,54.740002,57.220001,6,1,1,0,0,7,4,1,1044,2264940.8,0,0,3297.4573 -6880,8487,15479,15480,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,9.4537258,9.6372423,0,1,0,-9,42,0,-6,-77.686371,0,0,0,68,2,3,1,2,3,2019,1,2,10,1,24,30,15,1,0,1,0,71.651619,71.651619,0,0,0,0,0,0,0,0,1,1,0,6.215538,0,0,0,52.009998,48.98,61.040001,39.41,6,1,1,0,0,2,5,1,1061,2562269,0,0,17452.621 -6880,8487,15480,15479,-9,-9,2,1,0,68,1,0,0,0,2,-9,1,1,0,0,3,9.4703417,9.8227024,0,1,0,-9,42,0,6,10.144961,0,0,0,62,2,3,1,2,2,2019,1,1,8,0,8,5,15,1,0,1,0,215.19577,215.19577,0,0,0,0,0,0,0,0,1,1,0,6.2182207,0,0,0,61.040001,39.41,52.009998,48.98,6,1,1,0,0,2,5,1,1061,2562269,0,0,17452.621 -6881,8488,15481,15482,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,5,0,7.6551266,7.7293239,1,0,-9,8,0,5,66.676758,0,0,0,60,2,4,1,3,3,2019,3,2,6,0,0,35,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5192285,0,0,57.060001,57.759998,44.02,60.700001,7,1,1,0,0,11,4,1,904.5,1069815.3,0,0,2847.8257 -6881,8488,15482,15481,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.7065363,7.390101,0,1,0,-9,8,0,-5,-31.385057,0,0,0,65,2,5,3,3,3,2019,2,1,12,0,28,28,15,1,0,4,0,8.5640364,8.5640364,0,0,0,0,0,0,0,0,1,1,0,4.4495988,0,0,0,44.02,60.700001,57.060001,57.759998,6,1,1,0,0,11,4,1,904.5,1069815.3,0,0,2847.8257 -6881,8489,15483,-9,15482,15481,4,1,0,34,3,0,0,0,1,-9,2,1,0,0,3,8.5257645,8.4955807,0,3,0,0,0,-9,0,-926.63367,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,40,36,15,1,1,-9,1,12.268646,12.268646,0,0,0,0,0,0,0,0,1,1,0,5.6839952,0,0,0,35.799999,53.970001,-9,-9,5,1,1,0,0,11,5,1,467,233236.56,0,0,2513.113 -6882,8490,15484,-9,15485,15486,2,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.8544564,7.7360868,0,3,0,0,0,-9,0,-912.41357,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,80,20,15,1,0,-9,1,3.6767817,3.6767817,0,0,0,0,0,0,0,0,0,0,0,4.4991865,0,0,0,46.900002,56.66,-9,-9,7,1,1,0,0,10,3,0,849,258489.03,0,0,459.3551 -6882,8491,15485,15486,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.1071119,8.1419811,0,1,0,1,1,-9,0,31.290043,0,0,0,50,2,4,1,2,2,2019,1,3,18,8,40,50,15,1,1,1,0,8.4079494,8.4079494,0,0,0,0,0,0,0,2,0,0,0,0,0,4.6278448,3,36.259998,62.830002,57.029999,48.119999,6,1,1,0,0,10,4,0,392,1080785.5,0,0,2251.4238 -6882,8491,15486,15485,-9,-9,3,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,7.9105167,7.5897503,0,1,0,-9,1,-9,0,-42.552597,-9,0,0,50,1,4,1,-9,-9,2019,1,1,8,0,44,0,15,1,0,1,0,6.8451972,6.8451972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.029999,48.119999,36.259998,62.830002,6,1,1,0,0,10,4,0,392,1080785.5,0,0,2251.4238 -6883,8492,15487,-9,15490,-9,6,1,1,5,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1010.2938,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,8,1,0,390.83334,51694.453,0,0,1319.3654 -6883,8492,15488,-9,15490,-9,5,1,0,10,2,0,6,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1081.9189,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,3,4,0,0,8,1,0,390.83334,51694.453,0,0,1319.3654 -6883,8492,15489,-9,15490,-9,4,1,1,13,2,0,6,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-915.79218,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,3,4,0,0,8,1,0,390.83334,51694.453,0,0,1319.3654 -6883,8492,15490,-9,-9,-9,1,1,0,41,3,0,6,0,3,-9,6,3,0,1,1,0,0,0,4,0,0,0,-9,0,-1053.2504,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.55758,3,49.43,27.690001,-9,-9,4,3,4,0,0,8,1,0,390.83334,51694.453,0,0,1319.3654 -6883,8492,15491,-9,15490,-9,3,1,1,16,2,0,6,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1108.1589,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.099998,57.860001,-9,-9,7,1,1,0,0,8,1,0,390.83334,51694.453,0,0,1319.3654 -6883,8492,15492,-9,15490,-9,7,1,1,4,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1036.8206,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,8,1,0,390.83334,51694.453,0,0,1319.3654 -6883,8493,15493,-9,15490,-9,2,1,0,18,2,0,6,0,2,1,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1115.4583,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.73,47.27,-9,-9,4,3,4,1,0,8,1,0,574,7691.7119,0,0,-884.54126 -6884,8494,15494,15496,-9,-9,1,1,0,49,1,0,1,0,1,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,1,-10.205722,0,0,0,48,1,5,1,2,2,2019,3,3,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.57456565,0,0,0,56.43,20.620001,34.740002,65.349998,6,1,1,0,0,12,5,1,332,614032.88,0,0,2008.9534 -6884,8494,15495,-9,15494,15496,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.5162,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,332,614032.88,0,0,2008.9534 -6884,8494,15496,15494,-9,-9,3,1,1,48,1,0,1,0,1,-9,2,1,0,0,5,9.2115736,9.2278032,0,2,0,-9,8,0,-1,-144.96335,0,0,0,49,1,2,3,3,3,2019,2,1,17,6,38,38,15,1,1,3,0,24.613798,24.613798,0,0,0,0,0,0,0,7,1,1,0,.86998701,0,3.9930563,1,34.740002,65.349998,56.43,20.620001,3,1,1,0,0,12,5,1,332,614032.88,0,0,2008.9534 -6885,8495,15497,-9,15499,15498,4,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.96967,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,798.33331,541175.25,0,0,3023.7295 -6885,8495,15498,15499,-9,-9,3,1,1,33,1,0,1,0,1,-9,2,1,0,0,5,8.5366325,8.6976862,0,2,0,-9,5,0,-8,-3.5745821,0,0,0,41,2,4,1,-9,-9,2019,1,1,6,0,36,39,15,1,0,1,0,18.711752,18.711752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,58.150002,52.91,6,1,1,0,0,2,5,1,798.33331,541175.25,0,0,3023.7295 -6885,8495,15499,15498,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.2812586,8.1507721,0,2,0,-9,5,0,8,-63.081703,0,0,1,33,1,5,1,2,2,2019,1,3,7,0,34,34,15,1,0,1,0,15.068072,15.068072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,62.389999,56.709999,6,1,1,0,0,2,5,1,798.33331,541175.25,0,0,3023.7295 -6885,8496,15500,-9,15499,15498,2,1,0,21,2,0,1,0,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-888.16443,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,26,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,2,1,1,1361,-121862.17,0,0,471.43585 -6886,8497,15501,15503,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.830863,7.7848086,0,1,0,-9,26,0,-1,-85.055183,0,0,0,52,2,5,1,2,-9,2019,1,1,6,0,41,35,15,1,0,1,0,8.5730124,8.5730124,0,0,0,0,0,0,0,2,1,1,0,0,0,6.5915828,3,49.119999,57.279999,60.02,56.419998,2,1,1,0,0,11,4,1,818.66669,301175.88,0,0,2944.6448 -6886,8497,15502,-9,15501,15503,5,1,1,17,2,0,0,0,2,1,9,3,0,0,4,6.5706878,6.286202,0,1,0,0,0,-9,0,-950.7204,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,30,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.209999,64.019997,-9,-9,4,1,1,0,1,11,4,1,818.66669,301175.88,0,0,2944.6448 -6886,8497,15503,15501,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,5,7.7861423,8.3993158,7.0494022,1,0,-9,26,0,1,94.011681,0,0,0,51,2,4,1,-9,3,2019,1,2,5,0,38,38,15,1,0,1,0,8.1910343,8.1910343,0,0,0,0,0,0,0,0,1,1,0,0,6.7775044,0,0,60.02,56.419998,49.119999,57.279999,6,1,1,0,0,11,4,1,818.66669,301175.88,0,0,2944.6448 -6886,8498,15504,-9,15501,15503,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,5,8.2663889,8.2911062,0,3,0,0,0,-9,0,-932.03619,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,50,24,15,1,0,-9,1,10.184441,10.184441,0,0,0,0,0,0,0,2,1,1,0,.12378292,0,1.9429442,3,60.02,56.419998,-9,-9,7,1,1,0,0,11,4,1,680,-84366.477,0,0,1406.9813 -6887,8499,15505,-9,15508,15506,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-844.98315,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,876.5,54931.109,0,0,1803.6547 -6887,8499,15506,15508,-9,-9,1,1,1,28,1,0,2,0,2,-9,2,1,0,0,3,8.0252151,7.9000015,0,2,0,-9,5,0,1,-68.891701,0,1,0,27,2,3,1,2,2,2019,1,2,11,2,48,48,15,1,0,1,0,7.7557664,7.7557664,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,52.599998,47.34,4,1,1,0,0,2,3,0,876.5,54931.109,0,0,1803.6547 -6887,8499,15507,-9,15508,15506,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-825.37048,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,876.5,54931.109,0,0,1803.6547 -6887,8499,15508,15506,-9,-9,2,1,0,27,1,0,2,0,2,-9,2,1,0,0,3,7.9771538,7.8942013,0,2,0,-9,5,0,-1,-113.16377,0,1,1,28,2,3,1,-9,-9,2019,1,1,11,0,50,40,15,1,0,1,0,4.6380115,4.6380115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,47.34,46,53,6,1,1,0,0,2,3,0,876.5,54931.109,0,0,1803.6547 -6888,8500,15509,15510,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,0,4,8.9512529,8.693594,0,1,0,-9,6,0,-4,-62.646492,0,0,0,44,2,4,1,1,1,2019,1,2,11,0,37,38,15,1,0,1,0,21.06147,21.06147,0,0,0,0,0,0,0,0,0,0,0,5.8900189,0,0,0,54.200001,57.490002,45.419998,49.52,6,1,1,0,0,12,5,1,700.5,364206.41,0,0,5000.9966 -6888,8500,15510,15509,-9,-9,2,1,0,44,1,0,0,0,2,-9,1,1,0,0,4,8.1888208,8.0282812,0,1,0,-9,6,0,4,-28.306273,0,0,1,40,1,4,1,-9,-9,2019,1,1,13,1,35,45,15,1,0,1,0,13.017138,13.017138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.419998,49.52,54.200001,57.490002,6,1,1,0,0,12,5,1,700.5,364206.41,0,0,5000.9966 -6889,8501,15511,15512,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,7.5533214,7.6702495,0,1,0,-9,28,-9,1,58.133617,-9,0,0,54,1,5,3,2,2,2019,2,2,9,0,97,0,15,1,0,4,0,2.0518696,2.0518696,0,0,0,0,0,0,0,0,0,0,0,4.0214472,0,0,0,57.16,56.150002,57.060001,57.759998,1,1,1,0,0,4,3,1,906.5,1002871.6,0,0,2683.5427 -6889,8501,15512,15511,-9,-9,2,1,0,54,1,0,0,0,1,-9,4,3,0,0,5,4.7431579,4.4553256,0,1,0,-9,28,-9,-1,-25.816013,-9,0,0,55,2,4,1,2,1,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9281516,0,0,0,57.060001,57.759998,57.16,56.150002,1,1,1,0,0,4,3,1,906.5,1002871.6,0,0,2683.5427 -6890,8502,15513,15516,-9,-9,1,1,0,47,1,0,4,0,1,-9,7,2,0,0,5,0,0,0,2,0,-9,22,0,1,2.4702444,1,0,0,46,2,4,1,2,2,2019,3,2,10,2,0,13,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,58.150002,52.91,6,1,1,0,0,9,2,1,1708.8334,572935.25,0,0,1632.6395 -6890,8502,15514,-9,15513,15516,4,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-828.4292,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,9,2,1,1708.8334,572935.25,0,0,1632.6395 -6890,8502,15515,-9,15513,15516,5,1,1,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-872.63434,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,9,2,1,1708.8334,572935.25,0,0,1632.6395 -6890,8502,15516,15513,-9,-9,2,1,1,46,1,0,4,0,2,-9,2,1,0,0,4,7.8813715,7.4395428,0,2,0,-9,24,0,-1,-41.034355,0,0,0,47,1,5,2,2,2,2019,2,1,4,0,39,40,15,1,0,2,0,6.709312,6.709312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,57.060001,57.759998,5,1,1,0,0,9,2,1,1708.8334,572935.25,0,0,1632.6395 -6890,8502,15517,-9,15513,15516,6,1,1,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.73535,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,2,1,1708.8334,572935.25,0,0,1632.6395 -6890,8502,15518,-9,15513,15516,3,1,1,16,2,0,4,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.22229,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.28504148,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,9,2,1,1708.8334,572935.25,0,0,1632.6395 -6891,8503,15519,15520,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,7.7534232,7.6716952,0,2,0,-9,22,0,-1,130.39847,0,0,0,49,2,3,1,2,2,2019,1,2,6,0,50,56,15,1,0,1,0,5.2051353,5.2051353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,43.360001,42.150002,6,2,3,0,0,9,5,1,1013,334047.06,0,0,4215.4507 -6891,8503,15520,15519,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,8.8412437,9.1552811,0,2,0,-9,22,0,1,125.07298,0,0,0,48,2,4,1,2,2,2019,1,1,12,2,38,38,15,1,0,1,0,22.619062,22.619062,0,0,0,0,0,0,0,0,1,1,0,1.317078,0,0,0,43.360001,42.150002,57.16,56.150002,6,2,3,0,0,9,5,1,1013,334047.06,0,0,4215.4507 -6892,8504,15521,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.9655352,9.0175982,0,3,0,0,0,-9,0,-964.71393,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,42,45,15,1,1,-9,0,18.331993,18.331993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.049999,50.93,-9,-9,3,1,1,0,0,11,5,0,1851,198842.84,0,0,2351.0396 -6893,8505,15522,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,2,1,0,0,3,8.4447107,8.2961454,0,3,0,0,0,-9,0,-1074.9564,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,36,15,1,0,-9,0,13.72363,13.72363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.25,56.639999,-9,-9,6,1,1,0,0,7,5,0,242,-95158.867,0,0,1657.5543 -6894,8506,15523,15525,-9,-9,2,1,1,55,1,0,2,0,2,-9,1,1,0,0,4,7.6074119,8.052186,6.6125979,2,0,-9,9,0,9,-75.438431,0,0,0,46,2,2,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,4.5211382,4.5211382,0,0,0,0,0,0,0,0,1,1,0,6.7845807,7.0556197,0,0,62.490002,55.09,50.57,25.559999,6,1,1,0,0,12,4,1,892.75,562555.13,0,0,3187.8042 -6894,8506,15524,-9,15525,15523,5,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.33759,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,892.75,562555.13,0,0,3187.8042 -6894,8506,15525,15523,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,2,8.3155956,8.2151318,0,2,0,-9,9,0,0,-120.5042,0,0,0,55,2,4,1,2,2,2019,1,2,19,7,38,38,15,1,1,1,0,10.414691,10.414691,0,0,0,0,0,0,0,5.48,1,1,0,1.3269172,0,7.6216888,3,50.57,25.559999,62.490002,55.09,3,1,1,0,0,12,4,1,892.75,562555.13,0,0,3187.8042 -6894,8506,15526,-9,15525,15523,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-908.11188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,4,1,892.75,562555.13,0,0,3187.8042 -6894,8507,15527,-9,15525,15523,3,1,1,19,2,0,2,0,2,-9,2,1,0,0,5,7.6642666,7.5310273,0,3,0,0,0,-9,0,-1018.9239,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,5.9550104,5.9550104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,12,3,1,2089,7193.5977,0,0,1438.4225 -6895,8508,15528,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,4,0,6.8605537,7.1889486,3,0,0,0,-9,0,-1062.8568,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2490304,7.6075654,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,6,2,1,338,432347,0,0,1930.9114 -6896,8509,15529,15530,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,8.4022074,8.4075022,6.6366434,1,0,-9,16,0,1,9.9590549,0,0,0,59,1,5,1,3,2,2019,1,1,16,4,37,40,15,1,1,1,0,17.767963,17.767963,0,0,0,0,0,0,0,0,0,0,0,0,6.5658569,0,0,38.34,62.119999,59.43,58.049999,3,1,1,0,0,9,5,1,503.5,3440081,0,0,3529.5347 -6896,8509,15530,15529,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,5,8.2009592,8.1686878,0,1,0,-9,16,0,-1,25.026766,0,0,0,60,1,4,1,3,3,2019,1,2,8,0,50,49,15,1,0,1,0,7.9189243,7.9189243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,38.34,62.119999,6,1,1,0,0,9,5,1,503.5,3440081,0,0,3529.5347 -6896,8510,15531,-9,15530,15529,3,1,0,21,2,0,0,0,2,-9,7,2,0,0,4,7.6685534,7.6629758,0,3,0,0,0,-9,0,-893.47565,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,35,35,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.419998,59.639999,-9,-9,5,1,1,0,0,9,4,1,137,86556.719,0,0,1097.9454 -6897,8511,15532,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,1,0,8.4458637,8.3996639,3,0,0,0,-9,0,-933.95386,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,9.4541531,0,8.6411934,2.269402,3.2168124,82.775467,0,1,1,0,0,8.5933142,0,0,49.52,18.67,-9,-9,4,1,1,0,0,12,5,1,89,744955,0,0,3358.2793 -6898,8512,15533,15534,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,0,4,8.3946486,8.1852512,0,1,0,-9,7,0,-5,17.131889,0,0,0,51,1,4,1,2,2,2019,1,1,11,2,45,40,15,1,0,1,0,14.473907,14.473907,0,0,0,0,0,0,0,0,0,0,0,5.2944131,0,0,0,44.240002,59.439999,54.200001,57.490002,6,1,1,0,0,5,5,1,1302.5,727242.25,0,0,16903.768 -6898,8512,15534,15533,-9,-9,1,1,0,51,1,0,0,0,1,-9,1,1,0,0,4,9.6720963,9.4825134,0,1,0,-9,7,0,5,75.146378,0,0,0,46,2,4,1,2,2,2019,1,2,2,0,30,55,15,1,0,1,0,59.347488,59.347488,0,0,0,0,0,0,0,0,0,0,0,5.7436299,0,0,0,54.200001,57.490002,44.240002,59.439999,6,1,1,0,0,5,5,1,1302.5,727242.25,0,0,16903.768 -6899,8513,15535,15536,-9,-9,2,1,1,61,1,0,0,0,3,-9,1,1,0,0,3,7.4097137,7.4781804,0,1,0,-9,36,0,-3,-40.439087,0,0,0,64,2,4,1,3,3,2019,1,1,9,0,50,35,15,1,0,1,0,4.7969751,4.7969751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.43,40.110001,54.200001,57.490002,5,1,1,0,0,10,3,0,1092,412394.59,0,0,1589.3689 -6899,8513,15536,15535,-9,-9,1,1,0,64,1,0,0,0,2,-9,1,1,0,0,4,6.2527189,6.578475,0,1,0,-9,36,0,3,18.41328,0,0,0,61,3,3,1,3,3,2019,1,2,6,0,8,8,15,1,0,1,0,10.569078,10.569078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,62.43,40.110001,6,1,1,0,0,10,3,0,1092,412394.59,0,0,1589.3689 -6900,8514,15537,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,3,0,6.0634503,6.1546783,3,0,0,0,-9,0,-978.02521,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.5140782,6.2672877,17.041626,3,57.330002,53.459999,-9,-9,6,1,1,0,0,6,2,1,240,89306.32,0,0,12.753378 -6901,8515,15538,-9,15541,15540,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.66266,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,620.40002,1065207.4,0,0,3548.2258 -6901,8515,15539,-9,15541,15540,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.1672,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,620.40002,1065207.4,0,0,3548.2258 -6901,8515,15540,15541,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,0,4,9.251585,9.1503162,0,2,0,-9,4,0,2,24.700809,0,0,0,39,2,5,3,-9,-9,2019,2,1,9,1,35,50,15,1,0,3,0,40.485966,40.485966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,61.029999,44.82,5,1,1,0,0,12,4,1,620.40002,1065207.4,0,0,3548.2258 -6901,8515,15541,15540,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,10,0,-2,-5.6067863,0,0,1,41,1,4,1,-9,-9,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.029999,44.82,52,55,6,1,1,0,0,12,4,1,620.40002,1065207.4,0,0,3548.2258 -6901,8515,15542,-9,15541,15540,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.99463,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,4,1,620.40002,1065207.4,0,0,3548.2258 -6902,8516,15543,-9,15546,15545,7,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1040.0197,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,1023.6,9295.5215,0,0,2535.7124 -6902,8516,15544,-9,15546,15545,5,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.7714,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,2,0,1023.6,9295.5215,0,0,2535.7124 -6902,8516,15545,15546,-9,-9,2,1,1,32,1,1,3,0,2,-9,2,1,0,0,4,7.7768164,8.0761347,0,2,0,-9,7,0,-7,54.740086,0,0,0,39,2,3,1,-9,-9,2019,1,1,10,0,40,72,15,1,0,1,0,7.6351333,7.6351333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.939999,54.950001,6,1,1,0,0,7,2,0,1023.6,9295.5215,0,0,2535.7124 -6902,8516,15546,15545,-9,-9,1,1,0,39,1,1,3,0,2,-9,2,1,0,0,3,6.3088794,6.2827044,0,2,0,-9,7,0,7,-.96204966,0,0,1,32,2,4,1,2,-9,2019,1,2,6,0,14,0,15,1,0,1,0,4.6463032,4.6463032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.939999,54.950001,57.16,56.150002,5,1,1,0,0,7,2,0,1023.6,9295.5215,0,0,2535.7124 -6902,8516,15547,-9,15546,15545,6,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.6313,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,0,1023.6,9295.5215,0,0,2535.7124 -6902,8517,15548,-9,15546,15545,3,1,0,20,2,1,3,0,2,-9,2,1,0,0,3,7.9779673,7.8220897,0,4,0,0,0,-9,0,-1108.9655,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,38,0,15,1,1,-9,0,7.7508903,7.7508903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.030001,58.459999,-9,-9,2,4,2,0,1,7,3,0,852,-40909.621,0,0,1545.7098 -6903,8518,15549,15550,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,8.8265791,8.9763985,0,2,0,-9,22,0,3,-77.603401,0,0,0,42,1,4,1,2,3,2019,1,1,12,0,41,42,15,1,0,1,0,20.100967,20.100967,0,0,0,0,0,0,0,0,1,1,0,3.9055264,0,0,0,44.439999,55.459999,54.200001,57.490002,4,1,1,0,0,7,5,1,802,1341739,0,0,4524.7222 -6903,8518,15550,15549,-9,-9,1,1,0,42,1,0,1,0,1,-9,2,1,0,0,4,8.3536701,8.2559185,0,2,0,-9,22,0,-3,-24.131351,0,0,1,45,1,4,1,2,3,2019,1,2,7,0,34,28,15,1,0,1,0,12.801568,12.801568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.439999,55.459999,7,1,1,0,0,7,5,1,802,1341739,0,0,4524.7222 -6903,8518,15551,-9,15550,15549,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.5564,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,802,1341739,0,0,4524.7222 -6904,8519,15552,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,1,1,0,0,3,8.3379831,8.1841402,0,3,0,-9,0,-9,0,-929.06396,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,0,15,1,0,-9,0,18.825762,18.825762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,-9,-9,6,1,1,0,0,9,4,1,574,584177.81,0,0,939.37433 -6905,8520,15553,15555,-9,-9,2,1,0,40,1,0,4,0,2,-9,1,1,0,0,4,7.6669884,7.3972707,0,2,0,-9,2,0,-6,15.483355,0,0,1,46,1,5,1,2,2,2019,1,1,10,1,50,52,15,1,0,1,0,4.4451084,4.4451084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,57.060001,57.759998,6,1,1,0,0,13,3,1,1052.3334,247549.53,0,0,2341.7068 -6905,8520,15554,-9,15553,15555,6,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.2251,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,1,1052.3334,247549.53,0,0,2341.7068 -6905,8520,15555,15553,-9,-9,1,1,1,46,1,0,4,0,1,-9,2,1,0,0,5,8.503252,8.6281395,0,2,0,-9,2,0,6,-23.768946,0,0,0,40,2,4,1,3,3,2019,1,2,6,1,47,45,15,1,0,1,0,10.977273,10.977273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,49.349998,59.639999,6,1,1,0,0,13,3,1,1052.3334,247549.53,0,0,2341.7068 -6906,8521,15556,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,5,8.1512384,8.2142849,0,3,0,0,0,-9,0,-1007.6905,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,82,40,15,1,0,-9,0,5.1402678,5.1402678,0,0,0,0,0,0,0,0,1,1,0,4.6550736,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,4,1,405,-149953.78,0,0,701.79852 -6907,8522,15557,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,9.7334814,9.4146767,0,3,0,0,0,-9,0,-960.17969,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,45,50,15,1,0,-9,0,35.853195,35.853195,0,0,0,0,0,0,0,7,0,0,0,7.1708875,0,6.2145405,3,49.040001,55.860001,-9,-9,6,1,1,0,0,9,5,1,183,248644.84,0,0,7017.0313 -6908,8523,15558,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,2,0,6.8546748,7.002131,3,0,0,0,-9,0,-976.21796,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5561032,0,0,57.240002,25.1,-9,-9,5,1,1,0,0,4,2,1,383,257311.59,0,0,491.50821 -6909,8524,15559,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,2,0,6.8457799,6.6100464,3,0,0,0,-9,0,-1078.8118,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8800893,0,0,61.439999,27.280001,-9,-9,5,1,1,0,0,9,2,1,3792,549141.94,0,0,2133.7256 -6910,8525,15560,15561,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,-3,-40.798012,0,0,0,59,2,3,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51,49,6,1,1,0,0,11,4,1,760,746682.69,0,0,2669.5466 -6910,8525,15561,15560,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,8.6949244,8.8072548,0,1,0,-9,6,0,3,-41.443668,0,0,0,56,2,4,3,2,2,2019,2,2,10,1,60,70,15,1,0,3,0,14.011926,14.011926,0,0,0,0,0,0,0,0,0,0,0,5.6415949,0,0,0,51,49,57.16,56.150002,5,1,1,0,0,11,4,1,760,746682.69,0,0,2669.5466 -6910,8526,15562,-9,15560,15561,3,1,1,30,2,0,0,0,2,-9,1,1,0,0,4,6.275351,6.7314215,0,3,0,0,0,-9,0,-1017.8558,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,60,70,15,1,0,-9,1,1.2810718,1.2810718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,11,2,1,132,84725.336,0,0,396.01996 -6911,8527,15563,-9,-9,-9,1,1,0,20,2,0,0,0,2,1,2,1,0,0,4,6.198184,6.13098,0,3,0,0,0,-9,0,-1021.3983,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,20,0,15,1,1,-9,0,2.6318772,2.6318772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.09,69.160004,-9,-9,6,1,1,0,0,7,2,0,424,83295.844,0,0,242.74094 -6912,8528,15564,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,2,0,8.1885548,8.359354,3,0,-9,0,-9,0,-979.90759,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6782079,8.0991488,0,0,25.66,38.509998,-9,-9,2,1,1,0,0,7,4,0,3381,312366.19,0,0,3019.377 -6913,8529,15565,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1009.867,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.709999,39.080002,-9,-9,5,1,1,0,0,13,1,0,985,55463.047,0,0,1193.1147 -6914,8530,15566,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,2,1,0,0,4,7.967627,8.51472,7.3991752,3,0,0,0,-9,0,-1036.0303,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,45,42,15,1,0,-9,0,6.6963658,6.6963658,0,0,0,0,0,0,0,0,1,1,0,4.0888252,7.7592154,0,0,57.169998,50.610001,-9,-9,6,1,1,0,0,13,4,1,185,308.35709,0,0,2980.157 -6915,8531,15567,15568,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,39,0,-1,19.521442,0,0,0,60,2,3,1,3,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,56.66,52.990002,51.279999,6,1,1,0,0,12,5,1,833,2267426.8,0,0,2746.6169 -6915,8531,15568,15567,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,9.161973,9.0485249,0,1,0,-9,39,0,1,31.602818,0,0,0,59,2,3,3,2,3,2019,2,1,9,0,45,48,15,1,0,4,0,19.441502,19.441502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,47.150002,56.66,5,1,1,0,0,12,5,1,833,2267426.8,0,0,2746.6169 -6916,8532,15569,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1029.3156,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,25,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,-9,-9,3,1,1,0,0,11,1,0,392,-21067.148,0,0,41.438004 -6917,8533,15570,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,2,0,6.7282314,6.7573137,3,0,0,0,-9,0,-1049.4607,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.655354,0,0,49.59,19.299999,-9,-9,5,1,1,0,0,13,2,1,1367,236791.8,0,0,965.21619 -6918,8534,15571,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,0,5,7.8842039,8.1739702,6.4225116,4,0,0,0,-9,0,-972.90118,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,34,33,15,1,0,-9,0,7.168252,7.168252,0,0,0,0,0,0,0,0,1,1,0,6.2466111,0,0,0,49.490002,59.98,-9,-9,5,1,1,0,0,4,3,0,387.5,62298.91,0,0,1656.7999 -6918,8534,15572,-9,15571,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.8743,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,3,0,387.5,62298.91,0,0,1656.7999 -6918,8535,15573,-9,15571,-9,2,1,0,18,2,0,1,0,2,1,2,1,0,0,3,7.9812384,7.8224325,0,3,0,0,0,-9,0,-1037.4384,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,37,0,15,1,1,-9,1,7.7728658,7.7728658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.219999,49.720001,-9,-9,5,1,1,0,0,4,4,0,1105,-7355.3276,0,0,326.72147 -6919,8536,15574,15577,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,3,9.4985857,9.4546871,0,2,0,-9,9,0,2,-97.5494,0,0,0,41,1,4,3,3,3,2019,2,2,11,0,45,48,15,1,0,3,0,33.626385,33.626385,0,0,0,0,0,0,0,0,0,0,0,5.3233747,0,0,0,54.369999,54.799999,42.950001,61.240002,6,1,1,0,0,9,5,1,779,1256828.9,0,0,4612.1089 -6919,8536,15575,-9,15577,15574,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-875.04102,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,779,1256828.9,0,0,4612.1089 -6919,8536,15576,-9,15577,15574,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.62109,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,779,1256828.9,0,0,4612.1089 -6919,8536,15577,15574,-9,-9,2,1,0,41,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,-2,-13.493118,0,0,1,43,1,3,1,1,2,2019,3,1,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.7278419,0,5.4251466,3,42.950001,61.240002,54.369999,54.799999,6,1,1,0,0,9,5,1,779,1256828.9,0,0,4612.1089 -6920,8537,15578,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,2,1,0,0,3,8.6781731,8.3017216,0,3,0,-9,0,-9,0,-953.8891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,0,15,1,0,-9,0,16.193691,16.193691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.299999,42.91,-9,-9,4,1,1,0,0,4,5,0,299,312284.78,0,0,2482.8938 -6921,8538,15579,-9,15582,15581,10,1,0,9,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.6644,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,3,0,437.25,76258.016,0,0,5512.4043 -6921,8538,15580,-9,15582,15581,3,1,1,7,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.75916,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,3,0,437.25,76258.016,0,0,5512.4043 -6921,8538,15581,15582,-9,-9,1,1,1,52,1,0,7,0,1,-9,1,1,0,0,3,8.0349255,7.7431345,0,2,0,-9,20,0,12,-17.677984,0,0,0,40,2,5,1,3,3,2019,1,2,7,0,30,35,15,1,0,1,0,9.0175552,9.0175552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,61.009998,53.18,6,4,2,0,0,8,3,0,437.25,76258.016,0,0,5512.4043 -6921,8538,15582,15581,-9,-9,2,1,0,40,1,0,7,0,2,-9,2,1,0,0,5,7.8947501,8.0175295,0,2,0,-9,20,0,-12,-51.636578,0,0,1,52,1,3,1,-9,-9,2019,1,1,1,0,71,0,15,1,0,1,0,5.4684887,5.4684887,0,0,0,0,0,0,0,2,1,1,0,0,0,4.0081377,3,61.009998,53.18,57.330002,53.459999,6,1,1,0,0,8,3,0,437.25,76258.016,0,0,5512.4043 -6921,8539,15583,-9,15582,15581,4,1,0,18,2,0,7,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1146.8153,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.049999,-9,-9,2,1,1,1,0,8,1,0,288,126357.09,0,0,0 -6922,8540,15584,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,1,1,0,0,4,3.3882239,3.142411,0,3,0,0,0,-9,0,-1170.8971,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,22,0,15,1,0,-9,0,.15053746,.15053746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,1,0,912,167361.67,0,0,-1242.203 -6923,8541,15585,15586,-9,-9,1,1,0,47,1,0,0,0,3,-9,2,1,0,0,3,7.9517112,8.345129,0,1,0,-9,2,0,-2,-48.72435,0,0,0,49,2,4,1,2,2,2019,1,2,12,0,30,30,15,1,0,1,0,10.781407,10.781407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,50,50.110001,54.040001,6,1,1,0,0,2,3,1,631,234065.11,0,0,749.00525 -6923,8541,15586,15585,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,2,0,2,100.2035,0,0,0,47,3,3,1,3,3,2019,1,1,9,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.110001,54.040001,46,50,4,1,1,0,0,2,3,1,631,234065.11,0,0,749.00525 -6923,8542,15587,-9,15585,15586,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,7.9401531,8.3079462,0,3,0,0,0,-9,0,-1021.4936,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,45,42,15,1,0,-9,1,7.3718576,7.3718576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.919998,57.990002,-9,-9,4,1,1,0,0,2,4,1,813,76433.953,0,0,24.554161 -6924,8543,15588,15590,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,0,3,8.846981,8.6667261,0,2,0,-9,7,0,-3,19.534775,0,1,1,32,2,2,1,2,2,2019,1,2,15,3,42,45,15,1,0,1,0,15.226778,15.226778,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,33.580002,48.150002,44.450001,45.080002,5,1,1,0,0,12,5,0,632.33331,354108.34,0,0,3449.9126 -6924,8543,15589,-9,15588,15590,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.04407,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,0,632.33331,354108.34,0,0,3449.9126 -6924,8543,15590,15588,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,2,8.6802912,8.3036432,0,2,0,-9,7,0,3,42.534191,0,0,0,29,2,3,1,-9,-9,2019,1,1,13,2,48,57,15,1,0,1,0,12.789847,12.789847,0,0,0,0,0,0,0,0,1,1,0,3.1068623,0,0,0,44.450001,45.080002,33.580002,48.150002,6,1,1,0,0,12,5,0,632.33331,354108.34,0,0,3449.9126 -6925,8544,15591,15592,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.0753927,7.8343205,0,2,0,-9,26,0,-7,10.46111,0,0,0,54,3,4,3,-9,-9,2019,2,2,10,0,17,17,15,1,0,3,0,20.019665,20.019665,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.113667,3,49.290001,54.59,53,54,6,2,3,0,0,8,2,1,619,448506.97,0,0,2141.0784 -6925,8544,15592,15591,-9,15594,2,1,1,54,1,0,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,7,75.275452,0,0,0,47,1,3,1,-9,3,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,54,49.290001,54.59,6,2,3,1,0,8,2,1,619,448506.97,0,0,2141.0784 -6925,8545,15593,-9,15591,15592,4,1,0,18,2,0,2,1,2,0,7,2,0,0,4,6.393486,6.603972,0,3,0,0,0,-9,0,-1090.9919,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,12,2,1,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,2,1,638,122906.23,0,0,526.26392 -6925,8546,15594,-9,-9,-9,5,1,1,85,3,0,2,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-961.56421,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,28.617676,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,2,3,0,0,8,1,1,2187,250203.78,0,0,1814.9305 -6925,8547,15595,15596,-9,-9,7,1,1,25,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,1,-9,3,0,-9,1,0,22,2,4,3,-9,-9,2019,4,3,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,46,58,5,2,3,1,0,8,1,1,674,23572.543,0,0,1555.3009 -6925,8547,15596,15595,15591,15592,3,1,0,22,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,1,1,-9,-3,0,0,1,1,25,2,4,3,1,3,2019,4,7,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,49,58,5,2,3,1,0,8,1,1,674,23572.543,0,0,1555.3009 -6926,8548,15597,15598,-9,-9,1,1,1,90,1,0,0,0,2,-9,4,3,0,0,4,0,7.7878141,8.441699,1,0,-9,8,0,7,80.923386,0,0,0,83,2,1,3,3,2,2019,4,2,8,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1481676,8.2944546,0,1,48.610001,53.580002,37.189999,34.68,7,1,1,0,0,1,3,1,634,654043.75,0,0,3471.5569 -6926,8548,15598,15597,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,8,0,-7,-8.2004118,0,0,0,90,2,4,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,2.2694113,0,0,0,0,50.101612,0,1,1,0,0,0,0,1,37.189999,34.68,48.610001,53.580002,7,1,1,0,0,1,3,1,634,654043.75,0,0,3471.5569 -6927,8549,15599,15600,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,5,8.1434393,7.9163437,0,1,0,-9,27,0,-1,57.499371,-9,0,1,45,2,4,1,-9,-9,2019,1,1,8,0,41,0,15,1,0,1,0,10.603614,10.603614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,52.23,54.200001,57.490002,6,1,1,0,0,5,3,1,1209.5,-28664.986,0,0,1228.3887 -6927,8549,15600,15599,-9,-9,1,1,1,45,1,0,0,0,2,-9,1,1,0,0,4,5.0386019,5.2167573,0,1,0,-9,8,0,1,57.502247,0,0,0,44,2,5,1,-9,-9,2019,1,2,11,0,40,40,15,1,0,1,0,.41618311,.41618311,0,0,0,0,0,0,0,2,0,0,0,.046936609,0,0,3,54.200001,57.490002,57.07,52.23,2,1,1,0,0,5,3,1,1209.5,-28664.986,0,0,1228.3887 -6928,8550,15601,15602,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,31,0,-1,-11.641172,0,0,0,60,1,5,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.8017054,0,.76205218,3,63.560001,36.869999,58.049999,54.52,6,1,1,0,0,4,3,1,185,1958756.9,0,0,3974.8074 -6928,8550,15602,15601,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,5,7.721024,7.8762393,0,1,0,-9,31,0,1,89.935814,0,0,0,59,1,3,3,3,2,2019,2,2,10,0,30,50,15,1,0,4,0,8.7994566,8.7994566,0,0,0,0,0,0,0,7,0,0,0,5.5967183,0,3.597219,3,58.049999,54.52,63.560001,36.869999,6,1,1,0,0,4,3,1,185,1958756.9,0,0,3974.8074 -6928,8551,15603,-9,15601,15602,3,1,1,22,2,0,0,0,1,-9,7,2,0,0,4,6.5638599,7.3112473,7.0680723,3,0,0,0,-9,0,-1089.208,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,9,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9758878,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,4,3,1,1160,-46614.477,0,0,506.8067 -6928,8552,15604,-9,15601,15602,4,1,1,19,2,0,0,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-915.39746,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.709999,54.32,-9,-9,3,1,1,0,0,4,1,1,1675,38013.496,0,0,-256.93747 -6928,8553,15605,-9,15601,15602,5,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-845.50623,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.900002,57.009998,-9,-9,5,1,1,0,0,4,1,1,894,130371.42,0,0,325.1124 -6929,8554,15606,15607,-9,-9,1,1,0,22,1,1,1,0,2,-9,2,1,0,0,4,8.4292698,8.0761185,0,2,0,-9,3,0,-2,96.214218,0,1,1,24,2,3,1,-9,-9,2019,1,2,7,0,38,36,15,1,0,1,0,9.8921251,9.8921251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,36.27,34.73,6,1,1,0,0,2,4,0,1429,29675.361,0,0,2009.361 -6929,8554,15607,15606,-9,-9,2,1,1,24,1,1,1,0,2,-9,2,1,0,0,3,7.5531726,7.493896,0,2,0,-9,3,0,2,12.91368,-9,1,0,22,2,4,1,-9,-9,2019,1,1,21,9,50,0,15,1,1,1,0,6.0610328,6.0610328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,34.73,57.16,56.150002,3,1,1,0,1,2,4,0,1429,29675.361,0,0,2009.361 -6929,8554,15608,-9,15606,15607,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.69427,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,4,0,1429,29675.361,0,0,2009.361 -6930,8555,15609,15610,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,5,8.8520212,9.165019,0,2,0,-9,8,0,0,-60.76395,0,0,1,38,2,4,1,2,2,2019,1,2,6,0,39,40,15,1,0,1,0,16.73448,16.73448,0,0,0,0,0,0,0,0,1,1,0,.81328589,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,1,5,1,300.33334,297178.81,0,0,4007.0103 -6930,8555,15610,15609,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,0,4,8.3659582,8.4191675,0,2,0,-9,8,0,0,-67.485466,0,0,0,38,1,5,1,-9,-9,2019,1,1,11,0,37,37,15,1,0,1,0,11.38837,11.38837,0,0,0,0,0,0,0,0,1,1,0,.28949302,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,1,5,1,300.33334,297178.81,0,0,4007.0103 -6930,8555,15611,-9,15609,15610,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.6245,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,5,1,300.33334,297178.81,0,0,4007.0103 -6931,8556,15612,15613,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,0,-100.42241,0,0,0,75,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.2971678,1,53.77,36.509998,53.330002,32.610001,6,1,1,0,0,7,2,1,600,52133.438,0,0,2163.7463 -6931,8556,15613,15612,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,2,0,6.1056852,5.9538774,1,0,-9,48,0,0,-142.42349,0,0,0,75,3,2,3,3,3,2019,4,1,8,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.826055,0,0,53.330002,32.610001,53.77,36.509998,4,1,1,0,0,7,2,1,600,52133.438,0,0,2163.7463 -6932,8557,15614,15616,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,8.3686647,8.5600863,0,2,0,-9,25,0,3,-28.806721,0,0,0,42,2,3,1,3,-9,2019,1,1,13,3,40,40,15,1,0,1,0,14.777464,14.777464,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.5613699,3,41.68,51.189999,44.459999,36.310001,5,1,1,0,0,13,5,1,920,1122986.5,0,0,4366.2041 -6932,8557,15615,-9,15614,15616,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.94318,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,5,1,920,1122986.5,0,0,4366.2041 -6932,8557,15616,15614,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,9.0585852,9.1829453,0,2,0,-9,25,0,-3,25.055611,0,0,0,45,2,3,1,2,2,2019,1,2,19,8,46,47,15,1,1,1,0,21.463499,21.463499,0,0,0,0,0,0,0,0,1,1,0,4.2149262,0,0,0,44.459999,36.310001,41.68,51.189999,5,1,1,0,0,13,5,1,920,1122986.5,0,0,4366.2041 -6933,8558,15617,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,0,2,0,0,0,3,0,0,0,-9,0,-998.04004,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.73,16.629999,-9,-9,6,1,1,0,0,8,1,1,912,-250223.03,0,0,692.84772 -6934,8559,15618,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,3,0,7.6268549,7.8028884,3,0,0,0,-9,0,-1163.054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2252994,7.5950756,0,0,62.66,52.400002,-9,-9,7,1,1,0,0,7,3,1,829,555495.25,0,0,2359.5762 -6935,8560,15619,15620,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,9.3552771,9.1152515,0,2,0,-9,11,0,11,31.898502,0,0,0,36,1,4,1,3,3,2019,1,2,12,0,40,40,15,1,0,1,0,32.393761,32.393761,0,0,0,0,0,0,0,0,0,0,0,7.7615333,0,0,0,43.689999,45.939999,58.150002,52.91,4,2,3,0,0,7,5,1,536.25,775455.31,0,0,6175.7466 -6935,8560,15620,15619,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,4,6.6552901,6.4356422,0,2,0,-9,11,0,-11,47.231026,0,0,1,47,1,3,1,3,3,2019,1,1,1,0,10,0,15,1,0,1,0,11.75768,11.75768,0,0,0,0,0,0,0,0,0,0,0,7.6419177,0,0,0,58.150002,52.91,43.689999,45.939999,6,2,3,0,0,7,5,1,536.25,775455.31,0,0,6175.7466 -6935,8560,15621,-9,15620,15619,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.11719,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,5,1,536.25,775455.31,0,0,6175.7466 -6935,8560,15622,-9,15620,15619,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.3582,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,5,1,536.25,775455.31,0,0,6175.7466 -6936,8561,15623,15624,-9,-9,1,1,0,28,1,1,1,0,1,-9,2,1,0,0,4,0,0,0,2,0,1,1,-9,-6,0,0,1,1,34,3,4,1,3,3,2019,1,2,11,2,0,33,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,50,57,5,2,3,0,0,2,1,1,379.66666,-152105.36,0,0,218.24251 -6936,8561,15624,15623,-9,-9,2,1,1,34,1,1,1,0,3,-9,1,1,0,0,4,0,0,0,2,0,-9,1,-9,6,0,-9,0,0,28,1,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,47,57,5,2,3,0,0,2,1,1,379.66666,-152105.36,0,0,218.24251 -6936,8561,15625,-9,15623,15624,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1010.4457,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,2,1,1,379.66666,-152105.36,0,0,218.24251 -6937,8562,15626,15627,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,4.1878142,4.106791,1,0,-9,10,0,-11,19.521832,0,0,0,81,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9506886,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,13,3,1,400,543509.81,0,0,1749.7266 -6937,8562,15627,15626,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,7.6060834,7.8473921,1,0,-9,10,0,11,62.013985,0,0,0,70,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.46731,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,13,3,1,400,543509.81,0,0,1749.7266 -6938,8563,15628,15629,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,7.4193177,7.6474762,0,1,0,-9,40,0,-6,-86.76413,0,0,0,68,3,3,1,2,2,2019,1,2,12,0,24,24,15,1,0,1,0,10.302546,10.302546,0,0,0,0,0,0,0,2,1,1,0,4.9103785,0,0,3,57.16,56.150002,57.740002,33.09,6,1,1,0,0,6,3,1,743.5,647152.44,0,0,2409.6016 -6938,8563,15629,15628,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,0,3,7.1940894,7.4086905,5.6364045,1,0,-9,40,0,6,-56.835827,0,0,0,62,2,4,1,2,3,2019,1,1,10,0,24,24,15,1,0,1,0,7.1589565,7.1589565,0,0,0,0,0,0,0,0,1,1,0,5.2852378,5.4587984,0,0,57.740002,33.09,57.16,56.150002,6,1,1,0,0,6,3,1,743.5,647152.44,0,0,2409.6016 -6939,8564,15630,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,0,5,6.5543003,5.9848065,0,1,0,-9,11,0,0,61.222229,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,5,0,7,7,15,1,0,-9,0,9.851325,9.851325,0,0,0,0,0,0,0,0,0,0,0,4.3690095,0,0,0,54.630001,58.830002,58.299999,52.91,7,1,1,0,0,10,5,1,1599,173927.11,0,0,-808.14258 -6939,8565,15631,-9,-9,-9,2,1,1,53,2,0,0,0,1,-9,2,1,0,0,4,9.1778955,8.8165865,0,1,0,-9,11,0,0,-74.887688,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,6,0,47,12,15,1,0,-9,0,21.79645,21.79645,0,0,0,0,0,0,0,0,0,0,0,3.4702575,0,0,0,58.299999,52.91,54.630001,58.830002,1,1,1,0,0,10,5,1,711,419045.72,0,0,3105.7429 -6940,8566,15632,-9,15633,15635,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1097.0083,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,4,0,906,124466.73,0,0,3592.7283 -6940,8566,15633,15635,-9,-9,2,1,0,29,1,0,2,0,2,-9,2,1,0,0,3,8.374608,8.2269344,0,2,0,-9,1,-9,-12,80.823975,-9,0,1,41,3,2,1,1,1,2019,1,1,12,0,38,0,15,1,0,1,0,10.990682,10.990682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,45.23,32.27,5,1,1,0,0,4,4,0,906,124466.73,0,0,3592.7283 -6940,8566,15634,-9,15633,15635,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1088.707,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,906,124466.73,0,0,3592.7283 -6940,8566,15635,15633,-9,-9,1,1,1,41,1,0,2,0,3,-9,2,1,0,0,2,8.0472212,8.3130264,0,2,0,-9,1,-9,12,-166.42696,-9,0,0,29,2,3,1,2,2,2019,1,2,16,4,38,0,15,1,1,1,0,9.3924561,9.3924561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,32.27,52,54.509998,4,1,1,0,0,4,4,0,906,124466.73,0,0,3592.7283 -6941,8567,15636,-9,-9,15637,1,1,0,34,2,0,0,0,2,-9,2,1,0,0,5,7.567193,7.8979912,0,3,0,0,0,-9,0,-993.13934,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,25,25,15,1,0,-9,1,11.466311,11.466311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,-9,-9,6,1,1,0,0,13,3,1,644,56270.129,0,0,890.01929 -6941,8568,15637,-9,-9,-9,2,1,1,63,3,0,0,0,1,-9,1,1,0,0,3,8.0265322,8.1933279,4.3869052,3,0,0,0,-9,0,-1093.809,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,15,25,15,1,0,-9,0,24.675076,24.675076,0,0,0,0,0,0,0,2,0,0,0,3.1457605,4.5874672,0,3,52,54.509998,-9,-9,6,1,1,0,0,13,4,1,527,942605.25,0,0,1949.0372 -6942,8569,15638,15639,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,9.1350822,9.3022356,0,1,0,-9,9,0,5,40.860413,0,0,0,52,2,4,1,3,2,2019,1,1,4,0,40,40,15,1,0,1,0,25.992468,25.992468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,64.220001,41.990002,6,1,1,0,0,12,5,1,524.5,1624332.1,0,0,4396.6372 -6942,8569,15639,15638,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.3914132,7.6473823,0,1,0,-9,9,0,-5,-3.4848568,0,0,0,57,2,3,1,-9,2,2019,1,2,6,0,19,19,15,1,0,1,0,9.7648878,9.7648878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.220001,41.990002,52.990002,51.279999,6,1,1,0,0,12,5,1,524.5,1624332.1,0,0,4396.6372 -6942,8570,15640,-9,15639,15638,3,1,1,25,2,0,0,0,2,-9,7,2,0,0,4,7.1696439,6.740088,0,3,0,0,0,-9,0,-993.15295,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,16,38,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,12,2,1,825,0,0,0,1465.1892 -6943,8571,15641,-9,-9,-9,1,1,0,27,3,0,1,0,2,-9,2,1,0,0,3,7.2881622,7.1392083,0,4,0,0,0,-9,0,-1087.774,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,6,18,15,1,1,-9,0,22.938847,22.938847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,54.529999,-9,-9,6,2,3,0,0,5,2,1,1330.5,115677.83,0,0,1507.7683 -6943,8571,15642,-9,15641,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-990.104,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,2,1,1330.5,115677.83,0,0,1507.7683 -6943,8572,15643,-9,-9,-9,3,1,0,30,3,0,1,0,1,-9,2,1,0,0,4,8.3385382,8.7046614,0,4,0,-9,0,-9,0,-889.55316,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,50,0,15,1,0,-9,0,9.9868574,9.9868574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.34,53.290001,-9,-9,4,2,3,0,0,5,4,1,294,14232.013,0,0,1255.4006 -6944,8573,15644,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,4,3,0,0,2,0,8.3226299,8.3446732,1,0,-9,9,0,0,-34.048111,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1343303,8.255971,0,0,47.200001,34.16,56.91,49.540001,3,1,1,0,0,4,4,1,165,-149637.28,0,0,3723.1724 -6944,8574,15645,-9,-9,-9,2,1,0,64,2,0,0,0,2,-9,4,3,0,0,3,0,7.0712552,7.4888997,1,0,-9,9,0,0,-28.969002,0,0,0,-9,-9,-9,-9,3,3,2019,4,1,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6975355,7.3236651,0,0,56.91,49.540001,47.200001,34.16,6,1,1,0,0,4,4,1,342,476269.66,0,0,1917.1777 -6945,8575,15646,15647,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,4,8.581089,8.5708218,0,1,0,-9,32,0,-4,-40.937511,0,0,0,56,3,4,1,3,3,2019,1,2,6,0,35,39,15,1,0,1,0,13.795815,13.795815,0,0,0,0,0,0,0,2,0,0,0,4.4929886,0,6.193099,3,54.200001,57.490002,57.16,56.150002,5,1,1,0,0,2,5,1,3187,1004480.4,0,0,4695.9385 -6945,8575,15647,15646,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,0,4,8.31182,8.7572384,7.4936838,1,0,-9,32,0,4,35.395279,0,0,0,52,3,4,1,3,3,2019,1,1,6,0,40,35,15,1,0,1,0,13.751784,13.751784,0,0,0,0,0,0,0,2,0,0,0,8.2788773,0,0,3,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,2,5,1,3187,1004480.4,0,0,4695.9385 -6946,8576,15648,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1058.0668,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.1944807,3,61.369999,34.18,-9,-9,5,1,1,0,0,1,1,0,637,44612.273,0,0,2694.2283 -6947,8577,15649,15650,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,5,0,6.5454593,6.5162644,1,0,-9,45,0,5,-52.799126,0,0,0,64,2,3,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9833984,6.5376964,0,0,58.049999,54.52,63,32.959999,6,1,1,0,0,10,2,1,479.5,573813.38,0,0,3249.3604 -6947,8577,15650,15649,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,4.1672249,4.3157749,1,0,-9,45,0,-5,97.696136,0,0,0,69,2,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4291143,4.4878149,0,0,63,32.959999,58.049999,54.52,7,1,1,0,0,10,2,1,479.5,573813.38,0,0,3249.3604 -6948,8578,15651,15652,-9,-9,2,1,0,59,1,0,0,0,1,-9,97,3,0,0,4,0,0,0,1,0,-9,8,0,-7,0,0,0,0,66,1,3,3,2,2,2019,4,1,13,4,0,40,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8862503,0,0,0,43.380001,60.060001,52.41,42.18,3,1,1,0,0,11,1,1,1711.5,773256,0,0,747.78217 -6948,8578,15652,15651,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,7,0,0,0,0,59,1,4,3,2,3,2019,4,2,18,6,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.41,42.18,43.380001,60.060001,5,1,1,0,0,11,1,1,1711.5,773256,0,0,747.78217 -6949,8579,15653,15654,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,4,8.3657513,8.6016769,0,1,0,-9,1,-9,-3,-49.937008,-9,1,0,28,2,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,16.387777,16.387777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,42.639999,57.169998,5,4,1,0,0,8,5,1,1410.5,310579.44,0,0,3755.8589 -6949,8579,15654,15653,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,0,4,8.8587418,8.7383165,0,1,0,1,1,-9,3,93.3153,0,1,1,25,1,4,1,2,2,2019,1,2,9,0,45,45,15,1,0,1,0,14.341319,14.341319,0,0,0,0,0,0,0,0,0,0,0,.8816663,0,0,0,42.639999,57.169998,49,58,6,1,1,0,0,8,5,1,1410.5,310579.44,0,0,3755.8589 -6950,8580,15655,15656,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,48,0,-2,30.29146,0,0,0,66,2,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.7990189,3,58.049999,54.52,49.799999,56.68,7,1,1,0,0,10,4,1,1599,1279060.6,0,0,5684.8853 -6950,8580,15656,15655,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,9.015955,8.8542414,1,0,-9,48,0,2,89.670975,0,0,0,64,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1454287,8.818965,0,0,49.799999,56.68,58.049999,54.52,6,1,1,0,0,10,4,1,1599,1279060.6,0,0,5684.8853 -6951,8581,15657,-9,15658,15659,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1153.859,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,6,1,1,0,0,9,5,1,563.33331,486816.22,0,0,4997.3354 -6951,8581,15658,15659,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,1,7.6732745,7.544281,0,2,0,-9,31,0,-2,82.448364,0,0,0,50,3,4,1,3,3,2019,1,2,22,10,25,25,15,1,1,1,0,10.899991,10.899991,0,0,0,0,0,0,0,0,1,1,0,4.3882074,0,0,0,28.540001,33.040001,45.150002,57.459999,5,1,1,0,0,9,5,1,563.33331,486816.22,0,0,4997.3354 -6951,8581,15659,15658,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,0,4,9.0598907,9.2604389,0,2,0,-9,32,0,2,-36.872932,0,0,0,48,2,1,1,3,2,2019,1,1,11,3,60,126,15,1,0,1,0,24.16935,24.16935,0,0,0,0,0,0,0,0,1,1,0,.4168112,0,0,0,45.150002,57.459999,28.540001,33.040001,6,1,1,0,0,9,5,1,563.33331,486816.22,0,0,4997.3354 -6952,8582,15660,15661,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,4,8.6739101,8.698101,0,1,0,-9,32,0,-16,153.37961,0,0,0,72,2,3,3,2,2,2019,2,1,11,0,49,50,15,1,0,4,0,16.072813,16.072813,0,0,0,0,0,0,0,2,1,1,0,0,0,4.1523943,1,49.349998,59.639999,59.07,37.52,6,1,1,0,0,2,5,1,514.5,347016.16,0,0,3610.2568 -6952,8582,15661,15660,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,1,3,0,5.7079096,6.1534629,1,0,-9,32,0,16,.1319464,0,0,0,56,3,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,.89528817,0,0,0,0,2.6069806,0,1,1,0,4.0041585,5.8859005,0,0,59.07,37.52,49.349998,59.639999,6,1,1,0,0,2,5,1,514.5,347016.16,0,0,3610.2568 -6953,8583,15662,-9,15666,15663,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.50671,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,950.40002,997789.5,0,0,3367.6758 -6953,8583,15663,15666,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,8.9387283,9.0198565,0,2,0,-9,7,0,-2,-120.55242,0,0,0,45,1,2,1,-9,-9,2019,1,1,14,3,47,47,15,1,0,1,0,19.428696,19.428696,0,0,0,0,0,0,0,0,1,1,0,.73176616,0,0,0,50.400002,55.040001,32.369999,37.82,6,1,1,0,0,2,4,1,950.40002,997789.5,0,0,3367.6758 -6953,8583,15664,-9,15666,15663,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.8036,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,950.40002,997789.5,0,0,3367.6758 -6953,8583,15665,-9,15666,15663,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.6279,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,950.40002,997789.5,0,0,3367.6758 -6953,8583,15666,15663,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,0,2,7.1301794,7.4223676,5.3872581,2,0,-9,7,0,2,-27.394327,0,0,0,43,1,4,1,3,3,2019,1,2,33,11,25,0,15,1,1,1,0,5.7317495,5.7317495,0,0,0,0,0,0,0,0,1,1,0,5.5000424,0,0,0,32.369999,37.82,50.400002,55.040001,5,1,1,0,0,2,4,1,950.40002,997789.5,0,0,3367.6758 -6954,8584,15667,15669,-9,-9,1,1,1,46,1,0,2,0,2,-9,1,1,0,0,4,4.980123,4.5877647,0,2,0,-9,2,0,0,183.2424,0,0,0,46,2,4,1,2,3,2019,1,2,13,1,60,63,15,1,0,1,0,.20080583,.20080583,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.330002,57.720001,48.869999,58.549999,5,1,1,0,0,10,2,1,831.5,1145003.9,0,0,1673.8486 -6954,8584,15668,-9,15669,15667,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-923.9975,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,61,-9,-9,5,1,1,0,0,10,2,1,831.5,1145003.9,0,0,1673.8486 -6954,8584,15669,15667,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,6.8188038,6.9433522,0,2,0,-9,2,0,0,-5.5591593,0,0,0,46,2,4,1,3,2,2019,1,1,14,2,16,16,15,1,0,1,0,8.0187387,8.0187387,0,0,0,0,0,0,0,0,1,0,1,2.1403296,0,0,0,48.869999,58.549999,38.330002,57.720001,6,1,1,0,0,10,2,1,831.5,1145003.9,0,0,1673.8486 -6954,8584,15670,-9,15669,15667,3,1,0,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-989.91949,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.2647934,0,0,0,57.18,48.060001,-9,-9,7,1,1,0,0,10,2,1,831.5,1145003.9,0,0,1673.8486 -6955,8585,15671,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1137.842,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,28,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8707209,0,0,3,56.919998,49.389999,-9,-9,6,1,1,0,0,4,1,1,336,-497.4968,0,0,2484.7827 -6956,8586,15672,-9,15673,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-965.95953,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,341,328190.09,0,0,615.03247 -6956,8586,15673,-9,-9,-9,1,1,0,50,3,0,1,0,3,-9,2,1,0,0,2,6.9528918,7.7927566,7.1410856,4,0,0,0,-9,0,-1051.9038,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,25,25,15,1,1,-9,0,6.1833611,6.1833611,0,0,0,0,0,0,0,7,1,1,0,7.0528331,0,6.3162665,3,36.580002,47.099998,-9,-9,3,1,1,0,0,13,3,1,341,328190.09,0,0,615.03247 -6957,8587,15674,15675,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,47,0,-1,0,0,0,0,68,1,2,3,2,1,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1466861,0,0,0,41.450001,60.439999,45.34,40.41,5,1,1,0,0,6,1,1,541,336964.84,0,0,4127.0752 -6957,8587,15675,15674,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,1,0,0,0,0,67,2,4,3,3,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.97785,0,0,0,45.34,40.41,41.450001,60.439999,5,1,1,0,0,6,1,1,541,336964.84,0,0,4127.0752 -6958,8588,15676,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,7.8242536,7.8712277,5.0940461,4,0,-9,0,-9,0,-1043.655,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,45,0,15,1,0,-9,0,7.5025005,7.5025005,0,0,0,0,0,0,0,0,1,1,0,5.4547324,0,0,0,31.43,61.34,-9,-9,4,1,1,0,1,6,3,0,181,-6485.313,0,0,1628.3778 -6959,8589,15677,-9,15679,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,3,7.843596,7.8656549,0,3,0,0,0,-9,0,-959.57373,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,40,0,15,1,0,-9,1,8.4398222,8.4398222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.139999,58.580002,-9,-9,3,1,1,0,0,7,4,1,939,-204485.53,0,0,1664.9983 -6959,8590,15678,15679,-9,-9,3,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,7.5270019,7.5256076,0,1,0,-9,3,0,2,-31.024464,0,0,0,53,1,3,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,7.2032084,7.2032084,0,0,0,0,0,0,0,0,0,0,0,8.3611279,0,0,0,54.200001,57.490002,62.27,48.470001,6,1,1,0,0,7,5,1,1240.5,1307728.9,0,0,4845.1064 -6959,8590,15679,15678,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,0,3,8.8229475,9.0656242,0,1,0,-9,3,0,-2,-42.341442,0,0,0,55,2,4,1,2,2,2019,1,3,4,0,24,12,15,1,0,1,0,37.006992,37.006992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.470001,54.200001,57.490002,7,1,1,0,0,7,5,1,1240.5,1307728.9,0,0,4845.1064 -6960,8591,15680,15681,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,2,8.3509836,8.3384523,0,1,0,-9,9,0,-6,-31.346096,0,0,0,53,3,3,1,-9,2,2019,1,2,15,4,48,40,15,1,1,1,0,10.417176,10.417176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.700001,33.200001,50.169998,48.419998,7,1,1,0,0,5,5,0,767.5,758126.56,0,0,3530.1062 -6960,8591,15681,15680,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,0,3,8.4573984,7.870831,0,1,0,-9,9,0,6,64.9832,0,0,0,47,2,2,1,3,3,2019,1,1,7,0,41,37,15,1,0,1,0,11.801497,11.801497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.169998,48.419998,63.700001,33.200001,5,1,1,0,0,5,5,0,767.5,758126.56,0,0,3530.1062 -6960,8592,15682,-9,15680,15681,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,6.8734088,6.8337407,0,3,0,0,0,-9,0,-961.01428,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,35,15,1,0,-9,1,2.851079,2.851079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,5,2,0,261,-124836.66,0,0,311.74832 -6961,8593,15683,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,8.957181,8.9159765,0,3,0,-9,0,0,0,-967.19489,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,60,0,15,1,0,-9,0,14.267705,14.267705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.880001,-9,-9,5,1,1,0,0,6,5,1,472,326738.5,0,0,1829.6929 -6962,8594,15684,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,0,2,7.2033191,7.9890356,7.1602302,3,0,0,0,-9,0,-1120.8959,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,19,19,15,1,0,-9,0,7.1818824,7.1818824,0,0,0,0,0,0,0,0,0,0,0,4.7072763,7.0827675,0,0,43.990002,40.720001,-9,-9,4,1,1,0,0,7,3,1,1580,339728.53,0,0,914.08478 -6963,8595,15685,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,0,4,8.644248,8.8197823,0,3,0,0,0,-9,0,-906.38599,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,37,15,1,0,-9,0,17.596594,17.596594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,4,5,1,120,267708,0,0,2058.8547 -6964,8596,15686,15687,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-3,-158.09279,0,0,0,74,2,3,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.6900742,0,0,0,43.349998,52.880001,56.099998,49.93,5,1,1,0,0,11,3,1,1314.5,1016476,0,0,2053.1494 -6964,8596,15687,15686,-9,-9,1,1,1,74,1,0,0,0,2,-9,1,1,0,0,3,7.4860048,8.1737356,7.4394755,1,0,-9,7,0,3,8.1068525,0,0,0,71,3,3,3,3,3,2019,2,2,8,0,40,0,15,1,0,4,0,4.4948692,4.4948692,0,0,0,0,0,0,0,0,1,1,0,3.4799111,7.889502,0,0,56.099998,49.93,43.349998,52.880001,6,1,1,0,0,11,3,1,1314.5,1016476,0,0,2053.1494 -6965,8597,15688,15689,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.7364378,8.3348522,0,1,0,-9,6,0,-2,11.882864,0,1,1,30,2,4,1,2,2,2019,1,2,6,0,39,38,15,1,0,1,0,12.313399,12.313399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.439999,59.619999,51.830002,57.200001,6,1,1,0,0,10,5,1,736.5,292993.03,0,0,4478.0518 -6965,8597,15689,15688,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,9.332325,9.0927982,0,1,0,-9,6,0,2,31.746441,0,0,0,28,1,4,1,-9,-9,2019,1,1,14,3,35,42,15,1,0,1,0,30.457193,30.457193,0,0,0,0,0,0,0,0,0,0,0,4.1974254,0,0,0,51.830002,57.200001,46.439999,59.619999,4,1,1,0,0,10,5,1,736.5,292993.03,0,0,4478.0518 -6966,8598,15690,15692,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.3773069,8.3950977,0,2,0,-9,25,0,-6,-19.543753,0,0,0,56,2,3,3,2,2,2019,2,1,11,0,34,34,15,1,0,3,0,11.835674,11.835674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,41.860001,50.84,6,1,1,0,0,6,3,1,409,248989.33,0,0,1673.1704 -6966,8598,15691,-9,15692,15690,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.505,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0492529,0,0,0,43.669998,61.060001,-9,-9,6,1,1,0,0,6,3,1,409,248989.33,0,0,1673.1704 -6966,8598,15692,15690,-9,-9,1,1,0,56,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,6,-2.1627402,0,0,0,50,2,4,1,2,2,2019,3,2,20,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6844308,0,0,0,41.860001,50.84,48.869999,58.549999,6,1,1,0,0,6,3,1,409,248989.33,0,0,1673.1704 -6966,8598,15693,-9,15692,15690,4,1,0,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.94073,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.78151655,0,0,0,34.080002,62.630001,-9,-9,5,1,1,0,0,6,3,1,409,248989.33,0,0,1673.1704 -6967,8599,15694,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1026.5065,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.0510936,3,24.790001,24.16,-9,-9,3,1,1,0,0,7,1,0,183,127467.71,0,0,2619.0615 -6968,8600,15695,15696,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,6.3525767,6.0750194,1,0,-9,56,0,1,-48.375214,0,0,0,70,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21086705,6.1676035,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,7,2,0,937,446089.19,0,0,1913.0698 -6968,8600,15696,15695,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-1,-29.113386,0,0,0,71,2,5,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2576544,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,7,2,0,937,446089.19,0,0,1913.0698 -6969,8601,15697,15698,-9,-9,1,1,0,56,1,0,0,0,2,-9,4,3,0,0,3,0,6.9433274,7.1403894,1,0,-9,36,0,-2,47.036369,0,0,0,58,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8213835,6.8991399,0,0,55.360001,51.57,38.189999,50.630001,6,1,1,0,0,9,3,1,2501,973908.5,0,0,2181.2759 -6969,8601,15698,15697,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,0,3,0,7.9532251,7.9579754,1,0,-9,9,0,2,47.686623,0,0,0,56,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5862391,7.6483874,0,0,38.189999,50.630001,55.360001,51.57,6,1,1,0,0,9,3,1,2501,973908.5,0,0,2181.2759 -6970,8602,15699,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-992.98108,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.780001,42.34,-9,-9,3,1,1,0,0,4,1,0,118,-40234.887,0,0,1504.4259 -6971,8603,15700,15701,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.2602015,7.2772665,1,0,-9,11,0,-5,-15.733794,0,0,0,66,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.3156185,8.0087223,3,51.98,54.529999,55.439999,52.990002,6,1,1,0,0,12,3,1,1469,807894.38,0,0,2430.0063 -6971,8603,15701,15700,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.4744668,7.5488038,1,0,-9,11,0,5,186.61147,0,0,0,61,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1944737,7.9066639,0,3,55.439999,52.990002,51.98,54.529999,6,1,1,0,0,12,3,1,1469,807894.38,0,0,2430.0063 -6972,8604,15702,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,5,0,6.9608216,7.4294434,3,0,0,0,-9,0,-927.73474,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84764463,7.094367,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,11,2,1,589,232360.64,0,0,275.21603 -6973,8605,15703,-9,-9,-9,1,1,0,88,3,0,0,0,1,-9,4,3,0,0,5,0,7.4390821,7.0586848,3,0,0,0,-9,0,-1054.3372,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.2237332,0,0,0,0,0,0,1,1,0,7.0966368,7.2723827,0,0,66.239998,42.66,-9,-9,6,1,1,0,0,6,3,1,2135,106755.78,0,0,2588.1631 -6974,8606,15704,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-966.56915,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.8796716,3,26.549999,60.830002,-9,-9,3,1,1,0,0,9,1,0,1060,-32147.611,0,0,-1725.6349 -6975,8607,15705,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,0,1,0,6.0978899,6.0859261,3,0,0,0,-9,0,-1063.2157,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6897626,5.8169799,0,0,40,25,-9,-9,2,1,1,0,0,4,2,0,663,655394,0,0,27.065882 -6976,8608,15706,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,0,4,8.2991886,8.3239212,0,3,0,0,0,-9,0,-1025.8286,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,39,41,15,1,0,-9,0,11.453396,11.453396,0,0,0,0,0,0,0,7,0,0,0,1.1062627,0,5.4525027,3,51.77,58.57,-9,-9,6,1,1,0,0,13,4,1,1066,152967.33,0,0,579.51819 -6977,8609,15707,15709,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,4,8.4518614,8.5610733,0,2,0,-9,3,0,-2,46.675709,0,0,1,38,1,3,1,-9,-9,2019,1,1,6,0,36,38,15,1,0,1,0,20.365131,20.365131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,49.580002,55.59,6,1,1,0,0,12,5,1,668.5,206402.59,0,0,4647.5933 -6977,8609,15708,-9,15707,15709,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.52448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,12,5,1,668.5,206402.59,0,0,4647.5933 -6977,8609,15709,15707,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,0,3,9.1222277,9.0540037,0,2,0,-9,3,0,2,28.580898,0,0,0,36,1,4,1,1,1,2019,1,2,12,3,45,40,15,1,0,1,0,25.229958,25.229958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,57.16,56.150002,6,1,1,0,0,12,5,1,668.5,206402.59,0,0,4647.5933 -6977,8609,15710,-9,15707,15709,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.4849,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,5,1,668.5,206402.59,0,0,4647.5933 -6978,8610,15711,15712,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,5,8.2213135,8.3248415,0,1,0,-9,5,0,-5,125.18623,0,0,0,55,2,5,1,2,3,2019,1,1,6,0,37,42,15,1,0,1,0,11.429206,11.429206,0,0,0,0,0,0,0,0,0,0,0,4.7794609,0,0,0,57.060001,57.759998,59.43,58.049999,1,1,1,0,0,12,5,1,445.5,1746881.5,0,0,2614.8457 -6978,8610,15712,15711,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,5,8.2516499,8.2030191,0,1,0,-9,5,0,5,23.510658,0,0,0,50,2,5,1,3,3,2019,1,2,6,0,42,38,15,1,0,1,0,10.473516,10.473516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,57.060001,57.759998,3,1,1,0,0,12,5,1,445.5,1746881.5,0,0,2614.8457 -6978,8611,15713,-9,15711,15712,3,1,1,20,2,0,0,0,2,0,7,2,0,0,3,7.7961121,7.4991941,0,3,0,0,0,-9,0,-1069.5267,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.594088,0,0,0,59.470001,38.619999,-9,-9,6,1,1,0,0,12,3,1,173,-2375.8074,0,0,2076.7305 -6978,8612,15714,-9,15711,15712,4,1,0,18,2,0,0,0,2,0,7,2,0,0,5,7.1666946,6.8198104,0,3,0,0,0,-9,0,-900.75299,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,3,1,223,86762.336,0,0,2459.9265 -6979,8613,15715,15717,-9,-9,2,1,1,37,1,1,3,0,2,-9,2,1,0,1,4,9.4928083,9.4925146,0,2,0,-9,6,0,-5,-21.214289,0,0,0,42,1,3,1,2,2,2019,1,1,8,0,40,46,15,1,0,1,0,38.780491,38.780491,0,0,0,0,0,0,0,74.5,1,1,0,3.994796,0,68.365326,3,43.540001,59.599998,33.43,59.209999,5,1,1,0,0,6,5,1,1348.4,149922.42,0,0,5575.3408 -6979,8613,15716,-9,15717,15715,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.72858,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,1348.4,149922.42,0,0,5575.3408 -6979,8613,15717,15715,-9,-9,1,1,0,42,1,1,3,0,1,-9,2,1,0,0,3,7.6646581,7.8604293,0,2,0,-9,6,0,5,68.569153,0,0,1,37,2,4,1,1,2,2019,1,2,12,0,15,16,15,1,0,1,0,18.316553,18.316553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.209999,43.540001,59.599998,5,1,1,0,0,6,5,1,1348.4,149922.42,0,0,5575.3408 -6979,8613,15718,-9,15717,15715,3,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.4856,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,1348.4,149922.42,0,0,5575.3408 -6979,8613,15719,-9,15717,15715,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.22729,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,1348.4,149922.42,0,0,5575.3408 -6980,8614,15720,-9,15721,15722,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,6.3351626,6.5041485,0,2,0,0,0,-9,0,-1067.7147,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,5,1,630.66669,555576.38,0,0,5702.5015 -6980,8614,15721,15722,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,0,2,8.4689445,8.5582104,0,2,0,-9,5,0,4,-19.724798,0,0,0,48,1,4,1,3,2,2019,1,1,9,1,36,30,15,1,0,1,0,14.675943,14.675943,0,0,0,0,0,0,0,0,1,1,0,4.7042956,0,0,0,51.290001,40.400002,41.02,59.77,6,1,1,0,0,13,5,1,630.66669,555576.38,0,0,5702.5015 -6980,8614,15722,15721,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,9.0928059,8.8436756,0,2,0,-9,5,0,-4,.10985237,0,0,0,52,2,2,1,3,3,2019,1,2,15,3,36,36,15,1,0,1,0,25.275379,25.275379,0,0,0,0,0,0,0,2,1,1,0,0,0,5.4008837,3,41.02,59.77,51.290001,40.400002,4,1,1,0,0,13,5,1,630.66669,555576.38,0,0,5702.5015 -6981,8615,15723,15724,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,5,7.9523063,8.0806246,0,1,0,-9,6,0,-13,18.985752,0,0,0,72,3,4,3,2,3,2019,2,1,6,0,50,0,15,1,0,4,0,7.1994758,7.1994758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.740002,57.220001,6,1,1,0,0,7,3,1,249.5,1466013.9,0,0,1693.7612 -6981,8615,15724,15723,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,4,0,4.360961,4.5437207,1,0,-9,6,0,13,116.56271,0,0,0,59,3,5,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.31778,4.5271478,0,0,54.740002,57.220001,57.060001,57.759998,7,1,1,0,0,7,3,1,249.5,1466013.9,0,0,1693.7612 -6982,8616,15725,15726,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-8,47.86385,0,0,0,75,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,41.169998,59.310001,4,1,1,0,0,12,2,1,1254,323167.31,0,0,1990.0276 -6982,8616,15726,15725,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,5.5351024,5.3315678,1,0,-9,10,0,8,89.101799,0,0,0,67,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6121759,0,0,41.169998,59.310001,49,48,6,1,1,0,0,12,2,1,1254,323167.31,0,0,1990.0276 -6983,8617,15727,15728,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,19,0,10,69.115776,0,0,0,56,2,2,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,46.93,26.049999,6,1,1,0,0,7,5,1,375.5,1023507.4,0,0,2994.2549 -6983,8617,15728,15727,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,9.1150188,9.0285826,4.6688194,1,0,-9,19,0,-10,62.193741,0,0,0,66,2,4,3,2,2,2019,2,2,12,1,41,41,15,1,0,4,0,23.861368,23.861368,0,0,0,0,0,0,0,0,1,1,0,0,5.4824142,0,0,46.93,26.049999,60.119999,54.799999,3,1,1,0,0,7,5,1,375.5,1023507.4,0,0,2994.2549 -6984,8618,15729,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,0,3,8.5120525,8.6263456,0,3,0,0,0,-9,0,-981.68524,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,40,15,1,0,-9,0,13.187229,13.187229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,62.720001,-9,-9,4,4,5,0,0,7,4,0,230,591569.06,0,0,1885.7311 -6985,8619,15730,15731,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,6.1088214,6.3954678,1,0,-9,9,0,6,-34.752655,0,0,0,60,2,2,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,4.4970942,0,5.3020415,0,0,0,1,1,0,6.8732219,6.4889884,0,0,47.040001,27.059999,42.279999,22.879999,5,1,1,0,0,13,4,1,1107,87588.578,0,0,3966.7202 -6985,8619,15731,15730,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,2,7.9952741,8.7344255,7.730288,1,0,-9,9,0,-6,-88.231392,0,0,0,66,2,2,3,2,2,2019,2,1,20,8,18,23,15,1,1,4,0,16.962444,16.962444,0,0,0,0,0,0,0,0,1,1,0,6.9371204,7.7348347,0,0,42.279999,22.879999,47.040001,27.059999,4,1,1,0,0,13,4,1,1107,87588.578,0,0,3966.7202 -6985,8620,15732,-9,15731,15730,3,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.4000711,8.4995127,0,3,0,0,0,-9,0,-967.26807,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,1,12.391136,12.391136,0,0,0,0,0,0,0,0,1,1,0,2.8393598,0,0,0,59.290001,49.68,-9,-9,6,1,1,0,0,13,4,1,417,46120.828,0,0,981.19421 -6986,8621,15733,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,0,3,7.9982538,8.1686687,0,4,0,0,0,-9,0,-1093.8529,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,35,35,15,1,0,-9,0,8.7441244,8.7441244,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.832441,3,28.889999,57.400002,-9,-9,4,1,1,0,0,12,3,0,1278,307355.72,0,0,2140.0645 -6987,8622,15734,-9,-9,-9,1,1,0,22,2,0,0,0,1,1,2,1,0,0,4,7.7970781,7.9784141,0,3,0,0,0,-9,0,-1011.6693,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,0,15,1,0,-9,0,9.1654549,9.1654549,0,0,0,0,0,0,0,0,0,0,0,3.4194403,0,0,0,43.540001,59.599998,-9,-9,6,1,1,0,0,7,4,0,172,45435.324,0,0,1156.7496 -6988,8623,15735,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,3,8.1116228,8.4141073,0,3,0,0,0,-9,0,-878.56049,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,42,43,15,1,1,-9,0,8.8123331,8.8123331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.490002,43.599998,-9,-9,3,3,4,0,0,8,4,0,514,-85440.695,0,0,2240.9211 -6989,8624,15736,15737,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,6.6680613,8.3525181,8.0185204,1,0,-9,48,0,-1,-77.085022,0,0,0,68,2,3,3,2,2,2019,2,1,11,0,15,16,15,1,0,4,0,4.7902217,4.7902217,0,0,0,0,0,0,0,0,1,1,0,3.4167037,7.9971542,0,0,55.93,49.950001,52,54.509998,6,1,1,0,0,9,4,1,754,1155530.8,0,0,3173.6838 -6989,8624,15737,15736,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.2200284,6.3950009,1,0,-9,48,0,1,-33.46032,0,0,0,67,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1425145,6.1460195,0,0,52,54.509998,55.93,49.950001,6,1,1,0,0,9,4,1,754,1155530.8,0,0,3173.6838 -6990,8625,15738,15739,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-1,77.121147,-9,0,0,78,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7018518,0,0,0,52.580002,47.360001,56.939999,49.529999,7,1,1,0,0,4,3,1,562.5,680770.13,0,0,2139.1816 -6990,8625,15739,15738,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.9109416,7.8568826,1,0,-9,59,0,1,-110.26835,0,0,0,77,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,2.3668668,0,0,0,0,0,1,1,0,3.0488141,7.7873211,0,0,56.939999,49.529999,52.580002,47.360001,6,1,1,0,0,4,3,1,562.5,680770.13,0,0,2139.1816 -6991,8626,15740,15743,-9,-9,1,1,0,48,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,-1,-16.224751,0,0,0,49,2,3,1,2,3,2019,3,5,21,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,45.73,57.57,11.59,49.93,5,3,4,0,0,8,3,0,195,28558.223,0,0,4525.9302 -6991,8626,15741,-9,15740,15743,2,1,1,17,2,0,3,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1089.1199,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.860001,53.310001,-9,-9,3,4,2,0,0,8,3,0,195,28558.223,0,0,4525.9302 -6991,8626,15742,-9,15740,15743,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.62366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,3,0,195,28558.223,0,0,4525.9302 -6991,8626,15743,15740,-9,-9,5,1,1,49,1,0,3,0,2,-9,1,1,0,0,3,8.5511951,8.8310127,0,2,0,-9,5,0,1,191.29781,0,0,0,48,2,3,3,-9,-9,2019,2,1,23,9,30,30,15,1,1,3,0,30.133234,30.133234,0,0,0,0,0,0,0,7,1,0,1,0,0,7.7313533,3,11.59,49.93,45.73,57.57,2,1,1,0,0,8,3,0,195,28558.223,0,0,4525.9302 -6992,8627,15744,15745,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,3.8604422,3.4004328,1,0,-9,49,0,-2,12.284526,0,0,0,71,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7929029,3.2805581,0,0,51,46,62.490002,55.09,5,1,1,0,0,9,5,1,350,2104343.5,0,0,9855.3633 -6992,8627,15745,15744,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.9953709,8.5935936,1,0,-9,49,0,2,-171.78886,0,0,0,69,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.6019125,0,0,62.490002,55.09,51,46,6,1,1,0,0,9,5,1,350,2104343.5,0,0,9855.3633 -6993,8628,15746,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-977.71649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,1,0,46,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.209999,24.99,-9,-9,5,1,1,1,1,2,1,0,437,252670.63,0,0,-629.16241 -6994,8629,15747,15749,-9,-9,2,1,1,43,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,7,0,2,0,0,0,0,41,1,2,3,2,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.854095,3,58.150002,52.91,51.389999,21.209999,7,1,1,1,0,13,1,0,764,52141.152,0,0,2154.906 -6994,8629,15748,-9,15749,15747,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.86896,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,1,0,764,52141.152,0,0,2154.906 -6994,8629,15749,15747,-9,-9,1,1,0,41,1,0,1,0,1,-9,3,3,0,1,2,0,0,0,2,0,-9,7,0,-2,0,0,0,1,43,2,4,3,2,1,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.8586874,3,51.389999,21.209999,58.150002,52.91,6,1,1,1,0,13,1,0,764,52141.152,0,0,2154.906 -6995,8630,15750,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,5,8.5704365,8.6128311,0,1,0,1,1,-9,3,-.053819552,0,0,0,-9,-9,-9,-9,1,2,2019,-9,2,16,5,39,35,15,1,1,-9,0,20.743734,20.743734,0,0,0,0,0,0,0,0,1,1,0,6.6791086,0,0,0,43.040001,62.950001,48,58,6,1,1,0,0,10,4,0,81,58708.727,0,0,1858.5684 -6996,8631,15751,15752,-9,-9,1,1,1,58,1,1,1,0,2,-9,1,1,0,0,3,8.2538166,8.2409735,0,2,0,-9,8,0,6,54.003662,0,0,0,52,2,3,1,3,2,2019,1,2,1,0,35,50,15,1,0,1,0,15.846698,15.846698,0,0,0,0,0,0,0,0,1,1,0,.85128152,0,0,0,46.48,53.759998,37.490002,54.860001,3,3,4,0,0,8,5,1,980.5,214170.38,0,0,4181.1465 -6996,8631,15752,15751,-9,-9,2,1,0,52,1,1,1,0,2,-9,2,1,0,0,3,8.6350946,8.6634617,0,2,0,-9,8,0,-6,-26.181004,0,0,0,58,2,3,1,2,2,2019,1,1,25,10,50,0,15,1,1,1,0,16.517555,16.517555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.490002,54.860001,46.48,53.759998,2,1,1,0,0,8,5,1,980.5,214170.38,0,0,4181.1465 -6996,8632,15753,-9,15754,-9,4,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1091.2307,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,3,1,323.5,-93098.844,0,0,1487.0394 -6996,8632,15754,-9,15752,15751,3,1,0,31,3,1,1,0,2,-9,2,1,0,0,3,7.4363523,7.2684255,0,3,0,0,0,-9,0,-1043.7487,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,22,10,16,0,15,1,1,-9,1,11.956649,11.956649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.809999,52.57,-9,-9,4,4,2,0,1,8,3,1,323.5,-93098.844,0,0,1487.0394 -6997,8633,15755,15756,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.6753635,8.4747009,0,2,0,-9,6,0,-1,36.423229,0,0,0,46,2,4,1,2,2,2019,1,1,8,0,44,44,15,1,0,1,0,15.365545,15.365545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.240002,58.84,6,1,1,0,0,12,4,1,964.25,316187.25,0,0,3020.7051 -6997,8633,15756,15755,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.0776052,8.0421324,0,2,0,-9,6,0,1,37.321049,0,0,0,45,2,4,1,3,3,2019,1,2,7,0,35,30,15,1,0,1,0,9.6824541,9.6824541,0,0,0,0,0,0,0,7,1,1,0,0,0,6.7994099,3,51.240002,58.84,57.16,56.150002,5,1,1,0,0,12,4,1,964.25,316187.25,0,0,3020.7051 -6997,8633,15757,-9,15756,15755,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.9384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,4,1,964.25,316187.25,0,0,3020.7051 -6997,8633,15758,-9,15756,15755,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.9834,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,964.25,316187.25,0,0,3020.7051 -6998,8634,15759,-9,15760,15761,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.87439,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,517,396971.91,0,0,2780.6128 -6998,8634,15760,15761,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.0191021,8.3626575,0,2,0,-9,4,0,-10,80.725128,0,0,1,49,2,3,1,2,2,2019,1,4,10,0,38,38,15,1,0,1,0,12.805919,12.805919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,46.080002,57.200001,6,1,1,0,0,7,4,1,517,396971.91,0,0,2780.6128 -6998,8634,15761,15760,-9,-9,4,1,1,49,1,0,2,0,2,-9,2,1,0,0,3,8.2413769,8.5203323,0,2,0,-9,4,0,10,18.418591,0,0,0,39,2,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,12.534362,12.534362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,45.91,59.889999,6,1,1,0,0,7,4,1,517,396971.91,0,0,2780.6128 -6998,8634,15762,-9,15760,15761,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.13605,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,517,396971.91,0,0,2780.6128 -6999,8635,15763,15765,-9,-9,2,1,0,44,1,2,4,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,-6,0,0,0,1,50,3,3,3,3,-9,2019,4,1,20,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.32,44.32,52,54.509998,4,1,1,0,0,13,1,0,1560.3334,279184.38,0,0,2404.9155 -6999,8635,15764,-9,15763,15765,6,1,0,13,2,2,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-832.20715,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,13,1,0,1560.3334,279184.38,0,0,2404.9155 -6999,8635,15765,15763,-9,-9,1,1,1,50,1,2,4,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,8,0,6,0,0,0,0,44,3,2,3,3,3,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.406063,1,52,54.509998,42.32,44.32,6,1,1,0,0,13,1,0,1560.3334,279184.38,0,0,2404.9155 -6999,8636,15766,-9,15769,-9,9,1,1,1,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-811.9729,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,768.25,129496.05,0,0,1154.5094 -6999,8636,15767,-9,15769,-9,7,1,1,9,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1050.0807,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,768.25,129496.05,0,0,1154.5094 -6999,8636,15768,-9,15769,-9,8,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1021.3185,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,768.25,129496.05,0,0,1154.5094 -6999,8636,15769,-9,15763,15765,3,1,0,25,2,2,4,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1033.4341,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.5862989,3,41.299999,60.77,-9,-9,4,1,1,1,0,13,1,0,768.25,129496.05,0,0,1154.5094 -6999,8637,15770,-9,15763,15765,4,1,0,20,2,2,4,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1056.4648,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,13,1,0,600,18896.305,0,0,1456.9028 -6999,8638,15771,-9,15763,15765,5,1,1,19,2,2,4,0,2,-9,2,1,0,0,3,7.8951964,7.6881027,0,3,0,0,0,-9,0,-848.99432,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,36,20,15,1,0,-9,1,7.5117579,7.5117579,0,0,0,0,0,0,0,2,1,1,0,0,0,2.1284535,3,49.040001,55.860001,-9,-9,5,1,1,0,0,13,3,0,303,-86211.281,0,0,1122.6813 -7000,8639,15772,15773,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,0,4,8.5409489,8.2292786,0,1,0,-9,12,0,4,-66.150253,0,0,0,46,2,3,1,-9,-9,2019,1,2,9,1,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,47,50,6,1,1,0,0,8,4,0,284,317051.5,0,0,2700.3337 -7000,8639,15773,15772,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,7.1592617,7.1630449,0,1,0,-9,12,0,-4,-20.041685,0,0,0,50,2,4,1,3,-9,2019,1,1,12,2,0,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,53,55,2,3,4,0,0,8,4,0,284,317051.5,0,0,2700.3337 -7000,8640,15774,-9,15773,15772,3,1,0,19,2,0,0,0,2,1,11,3,0,0,3,7.2178745,6.8750491,0,3,0,0,0,-9,0,-979.21844,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,38,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.75527155,0,0,0,31.99,57.049999,-9,-9,4,3,4,0,0,8,2,0,211,-103802.34,0,0,722.88269 -7001,8641,15775,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,0,5,7.620821,8.0593204,5.1215038,3,0,0,0,-9,0,-1048.2454,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,35,25,15,1,1,-9,0,5.1370173,5.1370173,0,0,0,0,0,0,0,0,0,0,0,5.227551,0,0,0,50.970001,55.27,-9,-9,5,1,1,0,0,9,3,1,607,135177.36,0,0,1807.705 -7001,8642,15776,-9,15775,-9,2,1,1,27,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1124.5604,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,9,1,1,379,86631.617,0,0,0 -7001,8643,15777,-9,15775,-9,3,1,1,23,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-924.63824,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,9,1,1,289,-4344.5889,0,0,0 -7001,8644,15778,-9,15775,-9,4,1,1,19,2,0,0,0,2,-9,2,1,0,0,5,7.4548254,7.5666795,0,3,0,0,0,-9,0,-1040.9352,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,40,60,15,1,0,-9,1,5.0545063,5.0545063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,5,1,1,0,1,9,3,1,447,44302.945,0,0,1573.181 -7002,8645,15779,15780,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.3170767,8.3378868,0,1,0,-9,4,0,3,32.590828,0,0,1,41,2,3,1,1,2,2019,1,2,11,0,40,38,15,1,0,1,0,10.16042,10.16042,0,0,0,0,0,0,0,0,0,0,0,.22811857,0,0,0,40.040001,55.919998,17.07,59.799999,5,1,1,0,0,12,4,0,696.5,1285157.8,0,0,2649.8921 -7002,8645,15780,15779,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,8.0344296,7.7779961,0,1,0,-9,4,0,-3,1.1071846,0,0,0,44,2,3,1,-9,-9,2019,1,1,22,8,37,0,15,1,1,1,0,6.941226,6.941226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.07,59.799999,40.040001,55.919998,4,4,5,0,0,12,4,0,696.5,1285157.8,0,0,2649.8921 -7003,8646,15781,15782,-9,-9,2,1,1,59,1,0,0,0,2,-9,8,3,1,1,1,0,6.6387863,6.3288231,1,0,-9,35,0,5,-84.566177,0,0,0,54,2,2,1,2,2,2019,3,1,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.305851,0,0,27.299999,20.24,47.310001,50.200001,2,1,1,0,1,10,4,1,1119,1715828.8,0,0,2949.1941 -7003,8646,15782,15781,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,8.1838121,8.1510983,0,1,0,-9,35,0,-5,-10.883224,0,0,0,59,2,1,3,2,2,2019,2,2,14,2,39,38,15,1,0,3,0,11.081241,11.081241,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.093292,1,47.310001,50.200001,27.299999,20.24,4,1,1,0,0,10,4,1,1119,1715828.8,0,0,2949.1941 -7004,8647,15783,-9,15784,15785,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-973.16998,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,12,5,1,886.33331,514669.25,0,0,3914.7847 -7004,8647,15784,15785,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,7.5559068,7.5335398,0,2,0,-9,23,0,-7,64.315857,0,0,0,53,3,4,1,2,2,2019,1,2,7,0,25,20,15,1,0,1,0,6.3126383,6.3126383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,44.669998,57.16,56.150002,6,1,1,0,0,12,5,1,886.33331,514669.25,0,0,3914.7847 -7004,8647,15785,15784,-9,-9,2,1,1,53,1,0,1,0,3,-9,2,1,0,0,4,9.0912352,9.3958502,0,2,0,-9,23,0,7,22.643396,-9,0,0,46,2,3,1,2,2,2019,1,1,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.5,44.669998,7,1,1,0,0,12,5,1,886.33331,514669.25,0,0,3914.7847 -7004,8648,15786,-9,15784,15785,3,1,1,18,2,0,1,0,2,1,2,1,0,0,5,7.5119538,7.1911335,0,3,0,0,0,-9,0,-1078.8049,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,28,0,15,1,0,-9,1,6.1091242,6.1091242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,3,1,577,0,0,0,213.3887 -7005,8649,15787,15788,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,6.1617007,6.1370358,1,0,-9,46,0,-2,28.192455,0,0,0,65,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7403235,6.250484,0,0,57.060001,57.759998,55.900002,52.639999,6,1,1,0,0,10,3,1,1538,1129422.8,0,0,2013.3665 -7005,8649,15788,15787,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.8259668,7.8595371,1,0,-9,46,0,2,-105.79509,0,0,0,63,2,5,3,-9,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6551614,7.8385882,0,0,55.900002,52.639999,57.060001,57.759998,6,1,1,0,0,10,3,1,1538,1129422.8,0,0,2013.3665 -7006,8650,15789,15790,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.6131868,8.0089502,0,1,0,-9,2,0,3,104.69006,0,0,0,58,2,3,1,3,3,2019,1,2,11,0,39,38,15,1,0,1,0,8.2257233,8.2257233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,57.330002,53.459999,5,1,1,0,0,1,4,1,539,448108.94,0,0,2288.8694 -7006,8650,15790,15789,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,7.8703842,7.7623625,0,1,0,-9,2,0,-3,-38.272091,0,0,0,61,2,3,1,3,3,2019,1,1,8,0,41,43,15,1,0,1,0,6.8044176,6.8044176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,48.450001,57.490002,5,1,1,0,0,1,4,1,539,448108.94,0,0,2288.8694 -7007,8651,15791,-9,15794,15793,5,1,0,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.15833,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.189999,50.689999,-9,-9,5,1,1,0,0,4,2,0,672,286197.09,0,0,2905.7581 -7007,8651,15792,-9,15794,15793,4,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-849.46051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,2,0,672,286197.09,0,0,2905.7581 -7007,8651,15793,15794,-9,-9,3,1,1,44,1,0,3,0,2,-9,1,1,0,0,3,7.7125192,8.0373106,0,2,0,-9,4,0,11,-78.381905,0,0,0,33,2,4,1,-9,-9,2019,1,1,4,0,49,0,15,1,0,1,0,4.9888268,4.9888268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,30.08,59.220001,7,1,1,0,0,4,2,0,672,286197.09,0,0,2905.7581 -7007,8651,15794,15793,-9,-9,1,1,0,33,1,0,3,0,2,-9,2,1,0,0,4,6.6134872,6.5195379,0,2,0,-9,4,0,-11,68.169006,0,0,1,44,2,3,1,3,2,2019,1,3,17,5,49,0,15,1,1,1,0,1.6220635,1.6220635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.08,59.220001,52,54.509998,5,1,1,0,0,4,2,0,672,286197.09,0,0,2905.7581 -7007,8651,15795,-9,15794,15793,2,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.20941,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,2,0,672,286197.09,0,0,2905.7581 -7008,8652,15796,-9,15799,15800,5,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.45691,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,4,0,976,278614.22,0,0,3979.4734 -7008,8652,15797,-9,15799,15800,3,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.45758,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,7,4,0,976,278614.22,0,0,3979.4734 -7008,8652,15798,-9,15799,15800,6,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1047.9166,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,7,4,0,976,278614.22,0,0,3979.4734 -7008,8652,15799,15800,-9,-9,2,1,0,36,1,1,4,0,2,-9,5,1,0,0,4,6.8275161,6.9965954,0,2,0,-9,13,0,-1,28.158882,0,0,1,37,1,5,1,-9,-9,2019,1,1,10,0,15,0,15,1,0,1,0,8.3805704,8.3805704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.759998,53.240002,49.25,61.25,1,1,1,0,0,7,4,0,976,278614.22,0,0,3979.4734 -7008,8652,15800,15799,-9,-9,1,1,1,37,1,1,4,0,1,-9,2,1,0,0,5,8.8647156,9.2333145,0,2,0,-9,13,0,1,1.0394554,0,0,0,36,2,4,1,2,1,2019,1,2,13,2,55,55,15,1,0,1,0,15.185383,15.185383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,48.759998,53.240002,5,2,3,0,0,7,4,0,976,278614.22,0,0,3979.4734 -7008,8652,15801,-9,15799,15800,4,1,1,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.2712,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,7,4,0,976,278614.22,0,0,3979.4734 -7009,8653,15802,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-970.73315,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.419998,38.73,-9,-9,6,1,1,0,0,5,1,1,553,-135308.56,0,0,1068.3054 -7010,8654,15803,-9,-9,-9,1,1,0,31,2,1,3,0,2,-9,2,1,0,0,5,7.5172586,7.4197884,0,4,0,-9,0,-9,0,-1090.066,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,30,0,15,1,0,-9,0,8.5826406,8.5826406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,13,2,0,467.25,-33472.047,0,0,1902.5138 -7010,8654,15804,-9,15803,-9,2,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-972.74792,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,0,467.25,-33472.047,0,0,1902.5138 -7010,8654,15805,-9,15803,-9,4,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-975.21771,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,2,0,467.25,-33472.047,0,0,1902.5138 -7010,8654,15806,-9,15803,-9,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1004.6408,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,2,0,467.25,-33472.047,0,0,1902.5138 -7011,8655,15807,-9,15808,15810,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.3817,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,4,5,0,0,11,3,1,1263.4,375591.5,0,0,1740.916 -7011,8655,15808,15810,-9,-9,1,1,0,48,1,0,3,0,1,-9,2,1,0,0,4,7.9773474,8.036006,0,2,0,-9,13,0,0,-29.488546,0,0,0,48,1,3,1,2,2,2019,1,2,10,0,8,30,15,1,0,1,0,43.782341,43.782341,0,0,0,0,0,0,0,0,1,1,0,3.8579364,0,0,0,45.91,59.889999,43.860001,52.619999,5,1,1,0,0,11,3,1,1263.4,375591.5,0,0,1740.916 -7011,8655,15809,-9,15808,15810,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.9169,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,2,0,0,11,3,1,1263.4,375591.5,0,0,1740.916 -7011,8655,15810,15808,-9,-9,2,1,1,48,1,0,3,0,1,-9,1,1,0,0,3,7.0245113,6.6494565,0,2,0,-9,13,0,0,29.584761,0,0,0,48,1,4,1,3,3,2019,1,1,14,2,35,30,15,1,0,1,0,4.1589842,4.1589842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.860001,52.619999,45.91,59.889999,3,4,2,0,1,11,3,1,1263.4,375591.5,0,0,1740.916 -7011,8655,15811,-9,15808,15810,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-928.83386,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,4,2,0,0,11,3,1,1263.4,375591.5,0,0,1740.916 -7012,8656,15812,15813,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,3,9.6713362,9.9051723,0,1,0,-9,31,0,-5,-124.70509,0,0,0,59,2,2,1,2,2,2019,1,2,12,0,50,56,15,1,0,1,0,30.698648,30.698648,0,0,0,0,0,0,0,0,0,0,0,3.7539415,0,0,0,46.200001,53.02,54.75,46.830002,6,1,1,0,0,10,5,1,394.5,1637778.8,0,0,8911.3438 -7012,8656,15813,15812,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,8.5797329,8.74512,0,1,0,-9,10,0,5,-81.682945,0,0,0,54,1,3,1,2,2,2019,1,1,9,0,34,32,15,1,0,1,0,21.713787,21.713787,0,0,0,0,0,0,0,0,0,0,0,7.8697057,0,0,0,54.75,46.830002,46.200001,53.02,7,1,1,0,0,10,5,1,394.5,1637778.8,0,0,8911.3438 -7013,8657,15814,15815,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,7.9496193,8.0499907,0,1,0,-9,10,0,-3,-21.011223,0,0,0,48,1,4,1,2,1,2019,1,1,8,0,38,37,15,1,0,1,0,11.129167,11.129167,0,0,0,0,0,0,0,0,0,0,0,2.0254238,0,0,0,52.23,55.599998,51.830002,57.200001,6,1,1,0,0,10,4,1,427,1671488,0,0,2294.1362 -7013,8657,15815,15814,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,7.7171111,7.6216674,0,1,0,-9,10,0,3,4.3333735,0,0,0,45,1,4,1,2,1,2019,1,2,12,0,36,0,15,1,0,1,0,7.5195847,7.5195847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,52.23,55.599998,6,1,1,0,0,10,4,1,427,1671488,0,0,2294.1362 -7014,8658,15816,15817,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,5,8.1828022,8.4567118,0,1,0,-9,8,0,0,77.348892,0,0,0,62,2,3,1,2,2,2019,1,2,11,0,37,37,15,1,0,1,0,17.170424,17.170424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,32.919998,58.009998,4,1,1,0,0,12,4,1,747.5,1246689,0,0,1959.9705 -7014,8658,15817,15816,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.2381415,7.3717837,0,1,0,-9,8,0,0,-64.58728,0,0,0,62,2,5,1,-9,2,2019,1,1,14,3,15,15,15,1,0,1,0,13.153715,13.153715,0,0,0,0,0,0,0,5.48,0,0,0,.6549356,0,0,3,32.919998,58.009998,54.099998,59.110001,6,1,1,0,0,12,4,1,747.5,1246689,0,0,1959.9705 -7015,8659,15818,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,1,1,0,0,4,8.2834082,7.8523359,0,3,0,0,0,-9,0,-981.50354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,39,15,1,0,-9,0,11.208359,11.208359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.220001,60.560001,-9,-9,5,1,1,0,0,4,4,1,505,121751.23,0,0,1573.7585 -7016,8660,15819,15820,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.0820179,6.9979219,1,0,-9,7,0,-3,39.946045,0,0,0,70,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8685265,6.1619821,0,0,57.16,56.150002,58.900002,45.740002,6,1,1,0,0,10,3,1,1343,841472.19,0,0,2611.2065 -7016,8660,15820,15819,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,4,0,7.061635,7.1795001,1,0,-9,7,0,3,65.664673,0,0,0,67,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4783688,0,0,58.900002,45.740002,57.16,56.150002,5,1,1,0,0,10,3,1,1343,841472.19,0,0,2611.2065 -7017,8661,15821,15822,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.2943192,8.3792629,0,1,0,-9,10,0,3,-6.828949,0,0,0,60,2,4,1,3,3,2019,1,1,6,0,40,37,15,1,0,1,0,11.895184,11.895184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,7,1,1,0,0,10,5,1,207.5,2283557,0,0,3896.6772 -7017,8661,15822,15821,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,8.2508144,8.4271116,6.419064,1,0,-9,45,0,-3,36.809792,0,0,0,63,2,4,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,10.753582,10.753582,0,0,0,0,0,0,0,0,0,0,0,0,6.7837896,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,10,5,1,207.5,2283557,0,0,3896.6772 -7018,8662,15823,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1014.2626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1842499,0,0,0,48.77,38.25,-9,-9,5,1,1,0,0,6,1,1,3512,128118.77,0,0,911.96021 -7019,8663,15824,-9,15826,15825,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.9911,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,4,1,1216.6666,105806.26,0,0,3563.9326 -7019,8663,15825,15826,-9,-9,2,1,1,44,1,1,1,0,1,-9,1,1,0,0,3,7.4922638,8.1616697,7.011672,2,0,-9,7,0,-3,14.941397,0,0,0,47,1,4,1,3,3,2019,1,1,10,0,25,20,15,1,0,1,0,9.3110323,9.3110323,0,0,0,0,0,0,0,0,1,1,0,7.5749831,0,0,0,49.040001,55.860001,35.810001,53.810001,4,1,1,0,0,8,4,1,1216.6666,105806.26,0,0,3563.9326 -7019,8663,15826,15825,-9,-9,1,1,0,47,1,1,1,0,1,-9,2,1,0,0,4,7.8626285,8.0528498,0,2,0,-9,7,0,3,18.67112,0,0,0,44,1,3,1,2,2,2019,1,2,15,4,15,11,15,1,1,1,0,27.096703,27.096703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.810001,53.810001,49.040001,55.860001,5,1,1,0,1,8,4,1,1216.6666,105806.26,0,0,3563.9326 -7020,8664,15827,-9,15828,15829,5,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-997.64679,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.830002,47.209999,-9,-9,4,2,3,0,0,8,1,0,3013,0,0,0,0 -7020,8665,15828,15829,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,2,7.2689395,7.2725596,0,1,0,-9,9,0,-13,-18.348232,0,0,0,61,3,1,3,-9,3,2019,2,6,24,8,4,35,15,1,1,3,0,39.041191,39.041191,0,0,0,0,0,0,0,2,1,1,0,0,0,14.707205,2,39.349998,29.860001,30.01,20.17,5,2,3,0,1,8,2,0,1029,762958,0,0,1451.8206 -7020,8665,15829,15828,-9,-9,6,1,1,61,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,9,0,13,-101.37774,0,0,0,48,2,2,1,-9,-9,2019,3,1,33,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.01,20.17,39.349998,29.860001,5,2,3,1,1,8,2,0,1029,762958,0,0,1451.8206 -7021,8666,15830,15831,-9,-9,3,1,1,27,1,0,1,0,2,-9,2,1,0,0,3,8.2412024,8.3058462,0,2,0,-9,3,0,0,29.295143,0,1,0,27,2,2,1,-9,-9,2019,1,1,12,0,40,42,15,1,0,1,0,10.198134,10.198134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.610001,54.849998,43.950001,53.150002,3,1,1,0,0,7,3,0,241.66667,-16848.785,0,0,2601.8809 -7021,8666,15831,15830,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,0,2,7.107924,7.0588202,0,2,0,-9,3,0,0,-44.959812,0,1,1,27,2,3,1,2,1,2019,1,3,10,0,16,16,15,1,0,1,0,6.8954101,6.8954101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.950001,53.150002,42.610001,54.849998,4,1,1,0,0,7,3,0,241.66667,-16848.785,0,0,2601.8809 -7021,8666,15832,-9,15831,15830,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.7523,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,241.66667,-16848.785,0,0,2601.8809 -7022,8667,15833,15834,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,3,7.9637532,8.0067053,0,1,0,-9,28,0,-1,-2.8091276,0,0,0,66,3,3,3,-9,-9,2019,2,2,13,2,18,7,15,1,0,4,0,15.97909,15.97909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.43,47.889999,45.84,50.439999,2,1,1,0,1,5,3,1,466,500569.03,0,0,2157.1826 -7022,8667,15834,15833,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,1,23.78746,0,0,0,65,2,3,1,-9,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.84,50.439999,48.43,47.889999,6,4,5,0,0,5,3,1,466,500569.03,0,0,2157.1826 -7023,8668,15835,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,4,9.1459665,9.4500065,0,1,0,-9,7,0,-26,110.02708,0,0,0,-9,-9,-9,-9,3,2,2019,2,2,7,0,70,50,15,1,0,-9,0,18.446695,18.446695,0,0,0,0,0,0,0,56,1,1,0,2.38274,0,66.285789,2,57.16,56.150002,18.77,28.309999,5,2,3,0,0,8,5,0,314,506151.16,0,0,4910.542 -7023,8669,15836,-9,-9,-9,2,1,1,60,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,26,-172.14467,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,27,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.77,28.309999,57.16,56.150002,1,1,1,0,0,8,5,0,1244,0,0,0,1141.5825 -7024,8670,15837,15838,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,7.6907511,8.0540333,0,2,0,-9,17,0,5,-55.940884,0,0,0,48,2,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,8.5406704,8.5406704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,6,2,3,0,0,8,3,0,436.5,243912.66,0,0,2582.3103 -7024,8670,15838,15837,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,7.8619857,7.8893366,0,2,0,-9,17,0,-5,10.814844,-9,0,0,53,2,4,1,2,2,2019,1,1,8,0,40,0,15,1,0,1,0,6.3060708,6.3060708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,6,2,3,0,0,8,3,0,436.5,243912.66,0,0,2582.3103 -7024,8671,15839,-9,15838,15837,3,1,0,22,2,0,1,0,1,-9,2,1,0,0,4,7.8932738,8.1704645,0,3,0,0,0,-9,0,-958.35767,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,38,15,1,0,-9,1,9.6533861,9.6533861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,60.330002,-9,-9,6,2,3,0,0,8,4,0,779,13117.231,0,0,3057.0325 -7025,8672,15840,15841,-9,-9,2,1,1,42,1,0,1,0,2,-9,1,1,0,0,3,6.0855236,6.230617,0,2,0,-9,5,0,-5,23.321489,-9,0,0,47,1,4,3,-9,-9,2019,2,1,14,3,50,0,15,1,0,3,0,.99698806,.99698806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.959999,58.939999,54.790001,55.860001,3,2,3,0,1,9,2,0,856.33331,1181173.6,0,0,1529.131 -7025,8672,15841,15840,-9,-9,1,1,0,47,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,5,14.988475,0,0,0,42,2,3,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,33.959999,58.939999,6,1,1,0,0,9,2,0,856.33331,1181173.6,0,0,1529.131 -7025,8672,15842,-9,15841,15840,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1059.8165,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,9,2,0,856.33331,1181173.6,0,0,1529.131 -7026,8673,15843,15844,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,7,0,2,2.9576235,0,0,0,58,2,4,1,2,3,2019,3,2,16,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,2.6774495,0,63.839413,3,36.529999,47.939999,54,54,6,1,1,0,0,12,5,1,1040.5,1064810.9,0,0,5158.0171 -7026,8673,15844,15843,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,9.274457,9.0784464,0,1,0,-9,7,0,-2,42.163834,0,0,0,60,2,3,3,2,3,2019,2,1,9,0,70,50,15,1,0,3,0,15.809636,15.809636,0,0,0,0,0,0,0,0,1,1,0,6.8934994,0,0,3,54,54,36.529999,47.939999,6,1,1,0,0,12,5,1,1040.5,1064810.9,0,0,5158.0171 -7026,8674,15845,-9,15843,15844,3,1,1,26,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1166.052,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,12,1,1,1294,-76881.625,0,0,1172.5509 -7027,8675,15846,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-904.44354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.530001,-9,-9,2,1,1,0,1,4,1,0,240,-5616.9346,0,0,-.12264431 -7028,8676,15847,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,4,3,0,0,3,0,6.8141894,7.396059,3,0,0,0,-9,0,-935.4494,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9134519,6.9267545,0,0,31.469999,50.450001,-9,-9,4,1,1,0,0,7,2,1,178,-40280.254,0,0,1696.0188 -7029,8677,15848,-9,-9,-9,1,1,0,33,3,0,0,0,1,-9,1,1,0,0,3,6.3429122,6.3593717,0,3,0,-9,0,1,0,-918.26617,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,60,70,15,1,1,-9,0,1.2816799,1.2816799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.599998,51.610001,-9,-9,5,1,1,0,1,4,2,1,1855,-125660.37,0,0,964.60162 -7029,8678,15849,-9,-9,-9,2,1,0,49,3,0,0,0,2,-9,2,1,0,0,2,7.9995995,7.9992247,0,3,0,-9,0,-9,0,-1028.205,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,57,0,15,1,1,-9,0,7.0851889,7.0851889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.9,45.560001,-9,-9,2,1,1,0,1,4,4,1,616,117546.7,0,0,990.76263 -7030,8679,15850,15851,-9,-9,1,1,1,47,1,0,4,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,25,0,9,-64.962387,0,0,0,38,2,4,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.279999,50.189999,59.779999,55.169998,6,2,3,1,1,8,3,0,925.59998,276424,0,0,2757.5823 -7030,8679,15851,15850,-9,-9,2,1,0,38,1,0,4,0,2,-9,2,1,0,0,4,8.4757719,8.2796278,0,2,0,-9,5,0,0,43.18742,0,0,1,47,3,3,3,-9,-9,2019,2,1,5,0,0,28,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.779999,55.169998,49.279999,50.189999,4,2,3,0,1,8,3,0,925.59998,276424,0,0,2757.5823 -7030,8679,15852,-9,15851,15850,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.6609,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,0,925.59998,276424,0,0,2757.5823 -7030,8679,15853,-9,15851,15850,7,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.12628,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,2,3,0,0,8,3,0,925.59998,276424,0,0,2757.5823 -7030,8679,15854,-9,15851,15850,5,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.2493,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,0,925.59998,276424,0,0,2757.5823 -7030,8680,15855,-9,15851,15850,3,1,1,19,2,0,4,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1076.8436,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.52,36.169998,-9,-9,7,2,3,0,1,8,1,0,108,0,0,0,1925.9778 -7031,8681,15856,15857,-9,-9,2,1,0,24,1,0,1,0,2,-9,2,1,0,0,4,7.8771157,8.0753832,0,2,0,-9,1,-9,-1,-53.380726,-9,1,1,25,2,4,1,-9,-9,2019,1,1,0,0,38,0,15,1,0,1,0,8.4005089,8.4005089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,35.360001,39.049999,7,1,1,0,0,11,4,1,972.66669,123299.54,0,0,2606.0728 -7031,8681,15857,15856,-9,-9,1,1,1,25,1,0,1,0,2,-9,2,1,0,0,4,8.0386534,8.1491938,0,2,0,-9,1,-9,1,61.244019,-9,1,0,24,2,4,1,-9,-9,2019,1,2,10,0,37,0,15,1,0,1,0,8.7381134,8.7381134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.360001,39.049999,62.490002,55.09,5,1,1,0,0,11,4,1,972.66669,123299.54,0,0,2606.0728 -7031,8681,15858,-9,15856,15857,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1129.9359,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,1,972.66669,123299.54,0,0,2606.0728 -7032,8682,15859,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,2,0,3.0557923,3.1316719,3,0,0,0,-9,0,-987.91998,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,3.2502925,3.4596303,3,31.01,24,-9,-9,4,1,1,0,1,6,1,0,259,271878.31,0,0,528.94147 -7033,8683,15860,15861,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,0,3,8.8807735,8.7187901,0,1,0,-9,12,0,-16,-124.49039,0,0,1,47,2,2,3,2,2,2019,2,1,11,3,40,40,15,1,0,4,0,16.035316,16.035316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.57,54.66,40.049999,30.5,6,1,1,0,0,4,5,1,241.5,943793.88,0,0,3488.7969 -7033,8683,15861,15860,-9,-9,1,1,1,47,1,0,0,0,2,-9,4,3,0,0,2,0,8.1187582,7.436799,1,0,-9,12,0,16,-62.762482,0,0,0,31,2,3,1,3,2,2019,3,2,17,5,0,40,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6447077,0,0,40.049999,30.5,46.57,54.66,4,1,1,0,0,4,5,1,241.5,943793.88,0,0,3488.7969 -7034,8684,15862,-9,-9,-9,1,1,1,51,3,0,0,0,1,-9,2,1,0,0,2,9.2986555,9.0946474,0,3,0,0,0,-9,0,-1055.5536,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,42,42,15,1,0,-9,0,28.248615,28.248615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.09,43.470001,-9,-9,5,1,1,0,0,12,5,1,381,227134.98,0,0,3110.9939 -7035,8685,15863,-9,-9,-9,1,1,1,49,2,0,0,0,3,-9,2,1,0,1,3,8.1158133,8.2514248,0,3,0,0,0,-9,0,-1041.902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,55,52,15,1,0,-9,0,9.2381945,9.2381945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,7,4,1,594,191098.83,0,0,2392.6033 -7036,8686,15864,-9,15866,15865,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.9664,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,0,680.66669,1196312.1,0,0,11146.012 -7036,8686,15865,15866,-9,-9,1,1,1,44,1,1,1,0,1,-9,2,1,0,0,4,9.6671305,9.4690132,0,2,0,-9,9,0,4,-83.668274,0,0,0,40,1,5,1,2,1,2019,1,2,8,0,41,37,15,1,0,1,0,56.551918,56.551918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.060001,57.759998,5,1,1,0,0,2,5,0,680.66669,1196312.1,0,0,11146.012 -7036,8686,15866,15865,-9,-9,2,1,0,40,1,1,1,0,1,-9,2,1,0,0,5,8.358139,8.4426613,0,2,0,-9,9,0,-4,37.325062,0,0,1,44,1,4,1,3,1,2019,1,1,9,0,37,38,15,1,0,1,0,13.281595,13.281595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,48.869999,58.549999,6,1,1,0,0,2,5,0,680.66669,1196312.1,0,0,11146.012 -7037,8687,15867,15868,-9,-9,1,1,1,55,1,0,2,0,3,-9,2,1,0,0,4,7.0079608,6.9693623,0,2,0,-9,2,0,6,-54.432693,0,0,0,49,3,3,3,-9,-9,2019,2,2,10,0,16,16,15,1,0,3,0,8.4308109,8.4308109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,46.93,43.23,5,2,3,0,0,2,2,0,431.66666,46571.434,0,0,1962.8925 -7037,8687,15868,15867,-9,-9,2,1,0,49,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,-6,-120.5597,0,0,0,55,3,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0888284,0,0,0,46.93,43.23,41.169998,59.310001,3,2,3,0,0,2,2,0,431.66666,46571.434,0,0,1962.8925 -7037,8687,15869,-9,15868,15867,4,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.9637,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,4,2,3,0,0,2,2,0,431.66666,46571.434,0,0,1962.8925 -7038,8688,15870,15871,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,8.4180822,8.530529,0,1,0,-9,17,0,6,120.59935,0,0,0,40,1,4,1,2,1,2019,1,2,11,0,50,50,15,1,0,1,0,10.69196,10.69196,0,0,0,0,0,0,0,0,0,0,0,1.7337781,0,0,0,54.200001,57.490002,40.470001,55.650002,6,1,1,0,0,10,5,1,1128.5,117541.72,0,0,5323.6055 -7038,8688,15871,15870,-9,-9,2,1,0,40,1,0,0,0,1,-9,2,1,0,0,4,9.1264935,8.717659,0,1,0,-9,17,0,-6,-33.603256,0,0,1,46,1,4,1,2,1,2019,1,1,15,5,55,50,15,1,1,1,0,19.474974,19.474974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.470001,55.650002,54.200001,57.490002,3,1,1,0,0,10,5,1,1128.5,117541.72,0,0,5323.6055 -7039,8689,15872,15873,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,0,7.4017887,7.3738618,1,0,-9,42,0,-2,-66.105576,0,0,0,62,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7530231,7.6367073,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,13,2,1,1158.5,395358.81,0,0,713.67859 -7039,8689,15873,15872,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,42,0,2,-132.65718,0,0,0,60,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4835219,0,0,0,57.16,56.150002,57.16,56.150002,2,1,1,0,0,13,2,1,1158.5,395358.81,0,0,713.67859 -7040,8690,15874,15875,-9,-9,1,1,0,38,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-4,0,0,0,1,42,2,4,3,2,2,2019,4,2,21,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,49.41,58.279999,3,1,1,0,1,9,1,0,329,16577.049,0,0,1626.8945 -7040,8690,15875,15874,-9,-9,2,1,1,42,1,0,2,0,2,-9,9,3,0,0,4,0,0,0,2,0,-9,8,0,4,0,0,0,0,38,2,4,3,2,2,2019,4,1,12,0,0,40,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8361163,0,0,0,49.41,58.279999,46.5,58.259998,3,1,1,0,0,9,1,0,329,16577.049,0,0,1626.8945 -7040,8690,15876,-9,15874,15875,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.2403,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,329,16577.049,0,0,1626.8945 -7040,8690,15877,-9,15874,15875,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.0107,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,329,16577.049,0,0,1626.8945 -7041,8691,15878,15880,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,1,4,6.888247,7.2062535,0,2,0,-9,26,0,-6,-7.8090081,0,0,1,49,1,2,3,2,2,2019,2,2,11,1,16,15,15,1,0,3,0,7.2057796,7.2057796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,57.150002,45.779999,5,2,3,0,0,8,2,0,919,308456.09,0,0,3045.6458 -7041,8691,15879,-9,15878,15880,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.01355,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,919,308456.09,0,0,3045.6458 -7041,8691,15880,15878,-9,-9,2,1,1,49,1,0,1,0,1,-9,97,3,0,1,2,0,0,0,2,0,-9,26,0,6,43.013733,0,0,0,43,2,4,1,2,1,2019,3,1,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.641851,1,57.150002,45.779999,49,55,6,2,3,0,0,8,2,0,919,308456.09,0,0,3045.6458 -7041,8692,15881,-9,15878,15880,3,1,1,21,2,0,1,0,2,1,2,1,0,0,4,8.309433,8.1947575,0,3,0,0,0,-9,0,-1138.9226,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,0,15,1,0,-9,1,11.978925,11.978925,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.189999,54.259998,-9,-9,7,2,3,0,0,8,4,0,737,264581.84,0,0,968.64484 -7042,8693,15882,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1209.7485,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.919998,16.66,-9,-9,2,1,1,0,0,8,1,0,999,-228665.38,0,0,562.15039 -7043,8694,15883,15884,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.324379,8.2096252,0,1,0,-9,2,0,-6,-7.6166615,0,1,1,35,1,4,1,2,1,2019,1,2,8,0,50,50,15,1,0,1,0,10.69067,10.69067,0,0,0,0,0,0,0,0,0,0,0,3.2623971,0,0,0,57.060001,57.759998,51.709999,44.799999,7,1,1,0,0,11,5,1,672,282828.5,0,0,2759.8032 -7043,8694,15884,15883,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.4727993,8.6057243,0,1,0,-9,2,0,6,169.05179,0,0,0,29,1,5,1,-9,-9,2019,1,1,7,0,42,40,15,1,0,1,0,14.398984,14.398984,0,0,0,0,0,0,0,0,0,0,0,6.2317224,0,0,0,51.709999,44.799999,57.060001,57.759998,6,1,1,0,0,11,5,1,672,282828.5,0,0,2759.8032 -7044,8695,15885,15886,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,0,3,8.5242281,8.599432,0,1,0,-9,26,-9,1,17.917986,-9,0,0,51,2,3,1,3,-9,2019,1,2,20,4,45,0,15,1,1,1,0,11.696393,11.696393,0,0,0,0,0,0,0,0,0,0,0,3.2465446,0,0,0,33.080002,33.73,47.150002,56.66,4,1,1,0,0,7,5,1,396.5,799061.38,0,0,4316.6826 -7044,8695,15886,15885,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.8992524,7.9312344,0,1,0,-9,26,-9,-1,-44.215397,-9,0,0,52,2,3,1,-9,3,2019,1,1,6,0,39,0,15,1,0,1,0,7.2734094,7.2734094,0,0,0,0,0,0,0,0,0,0,0,4.3880277,0,0,0,47.150002,56.66,33.080002,33.73,4,1,1,0,0,7,5,1,396.5,799061.38,0,0,4316.6826 -7045,8696,15887,15889,-9,-9,1,1,0,42,1,0,2,0,1,-9,8,3,1,1,1,0,0,0,2,0,-9,19,0,0,91.023354,0,0,1,42,2,4,1,2,2,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.889999,18.610001,54.200001,57.490002,5,1,1,0,1,10,3,0,1121,31529.879,0,0,3032.1567 -7045,8696,15888,-9,15887,15889,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.52582,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,3,0,1121,31529.879,0,0,3032.1567 -7045,8696,15889,15887,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,7.9902439,7.9568424,0,2,0,-9,19,0,0,-39.910099,0,0,0,42,1,1,3,2,2,2019,2,1,9,0,25,25,15,1,0,3,0,12.616772,12.616772,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.920237,1,54.200001,57.490002,27.889999,18.610001,6,1,1,0,0,10,3,0,1121,31529.879,0,0,3032.1567 -7045,8696,15890,-9,15887,15889,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.8546,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.790001,55.919998,-9,-9,6,1,1,0,0,10,3,0,1121,31529.879,0,0,3032.1567 -7046,8697,15891,15892,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,5,7.11377,7.1730566,5.3485131,1,0,-9,10,0,0,21.245861,0,0,0,62,1,5,1,3,3,2019,1,2,6,0,17,20,15,1,0,1,0,9.2880917,9.2880917,0,0,0,0,0,0,0,0,0,0,0,0,5.662529,0,0,56.470001,59.400002,57.060001,57.759998,7,1,1,0,0,9,3,1,2245,912362.38,0,0,4897.2964 -7046,8697,15892,15891,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,0,5,8.0989304,7.606606,0,1,0,-9,10,0,0,69.975731,0,0,0,62,1,5,1,3,3,2019,1,1,6,0,9,40,15,1,0,1,0,33.316723,33.316723,0,0,0,0,0,0,0,0,0,0,0,8.5819731,0,0,0,57.060001,57.759998,56.470001,59.400002,6,1,1,0,0,9,3,1,2245,912362.38,0,0,4897.2964 -7047,8698,15893,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,5,8.4148102,8.3499985,0,1,0,1,1,-9,-5,-51.889893,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,2,12,0,42,40,15,1,0,-9,0,11.714511,11.714511,0,0,0,0,0,0,0,71.5,1,1,0,0,0,62.065948,1,41.470001,59.330002,50,55,3,1,1,0,0,7,4,0,2598,36929.844,0,0,1235.7212 -7048,8699,15894,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,4,8.4948711,8.5497484,0,3,0,0,0,-9,0,-1072.1184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,39,37,15,1,0,-9,0,14.742204,14.742204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,3,4,0,0,8,5,0,741,328479.31,0,0,496.40149 -7049,8700,15895,-9,15897,15896,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-837.4444,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,803.75,379865.13,0,0,5719.3672 -7049,8700,15896,15897,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,2,9.0618191,8.7985477,0,2,0,-9,10,0,0,23.217152,0,0,0,41,2,4,1,2,2,2019,1,1,22,9,39,38,15,1,1,1,0,20.333975,20.333975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.360001,54.779999,49.860001,55.310001,4,1,1,0,0,9,5,1,803.75,379865.13,0,0,5719.3672 -7049,8700,15897,15896,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,9.0939245,8.7197199,0,2,0,-9,10,0,0,-30.1467,0,0,1,41,2,2,1,2,1,2019,1,2,16,4,37,41,15,1,1,1,0,20.90431,20.90431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,43.360001,54.779999,5,1,1,0,1,9,5,1,803.75,379865.13,0,0,5719.3672 -7049,8700,15898,-9,15897,15896,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.7698,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,803.75,379865.13,0,0,5719.3672 -7050,8701,15899,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,8.4249792,8.4924936,0,3,0,0,0,-9,0,-932.99048,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,19,7,36,36,15,1,1,-9,0,13.110833,13.110833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.66,50.310001,-9,-9,3,3,4,0,1,8,4,0,314,1720712.4,0,0,2011.3705 -7051,8702,15900,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,97,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1062.5405,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.8200669,0,82.633492,3,52.400002,28.950001,-9,-9,3,4,2,0,0,8,1,0,309,46840.859,0,0,1104.1211 -7052,8703,15901,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-963.20831,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5541329,0,0,0,57.48,47.919998,-9,-9,6,1,1,0,0,4,1,0,1097,3984.2305,0,0,322.32327 -7052,8704,15902,-9,-9,15901,2,1,0,20,2,0,0,0,2,1,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1164.2748,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,4.902617,0,9.0932169,3,45.919998,49.509998,-9,-9,6,1,1,1,0,4,1,0,881,82480.922,0,0,-180.09622 -7052,8705,15903,-9,-9,15901,3,1,0,19,3,0,0,0,2,1,2,1,0,0,3,6.8865714,7.1269336,0,3,0,0,0,-9,0,-992.85168,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,20,0,15,1,0,-9,1,5.8891726,5.8891726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.610001,50.580002,-9,-9,3,1,1,0,0,4,2,0,176,57142.305,0,0,252.22101 -7053,8706,15904,15905,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.0563989,6.8998971,1,0,-9,10,0,1,70.994194,0,0,0,70,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.10436391,7.3432994,0,0,57.740002,49,50.419998,51.349998,6,1,1,0,0,10,3,1,331.5,686552.63,0,0,2534.0098 -7053,8706,15905,15904,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.7149215,6.7666578,1,0,-9,10,0,-1,47.362926,0,0,0,71,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9071906,6.924149,0,0,50.419998,51.349998,57.740002,49,5,1,1,0,0,10,3,1,331.5,686552.63,0,0,2534.0098 -7054,8707,15906,15907,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,0,4,7.8721685,7.6529574,0,1,0,-9,45,0,-4,2.1486552,0,0,0,68,2,3,3,3,-9,2019,2,1,6,0,29,28,15,1,0,4,0,9.8519316,9.8519316,0,0,0,0,0,0,0,14.5,1,1,0,2.1546509,0,8.2489557,3,57.16,56.150002,53.93,44.200001,6,1,1,0,0,5,3,1,1414.5,1103964.6,0,0,2620.2759 -7054,8707,15907,15906,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.4266925,7.3177309,1,0,-9,45,0,4,36.35725,0,0,0,64,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.1738262,7.2291989,0,0,53.93,44.200001,57.16,56.150002,6,1,1,0,0,5,3,1,1414.5,1103964.6,0,0,2620.2759 -7054,8708,15908,-9,15906,15907,3,1,1,35,2,0,0,0,2,-9,2,1,0,0,4,7.4332681,7.5395751,0,3,0,0,0,-9,0,-957.17786,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,30,25,15,1,0,-9,1,5.2575083,5.2575083,0,0,0,0,0,0,0,0,1,1,0,3.2190518,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,3,1,956,13227.772,0,0,-373.6011 -7055,8709,15909,15910,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.7900028,8.6269932,0,1,0,-9,9,0,9,53.141712,0,0,0,39,2,4,1,2,2,2019,1,2,9,1,43,40,15,1,0,1,0,16.535633,16.535633,0,0,0,0,0,0,0,2,0,0,0,2.8954389,0,7.866477,3,52,55,49,56,6,1,1,0,0,6,4,1,799.5,72553.094,0,0,1967.5134 -7055,8709,15910,15909,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,0,4,6.7343426,6.3859344,0,1,0,-9,9,0,0,78.417549,0,0,1,48,2,4,1,2,3,2019,1,1,11,1,46,0,15,1,0,1,0,1.6769724,1.6769724,0,0,0,0,0,0,0,7,0,0,0,0,0,9.3239908,3,49,56,52,55,5,1,1,0,0,6,4,1,799.5,72553.094,0,0,1967.5134 -7056,8710,15911,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,8.4433193,8.2006559,0,3,0,0,0,-9,0,-972.31866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,40,15,1,0,-9,0,17.954628,17.954628,0,0,0,0,0,0,0,0,0,0,0,4.2931504,0,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,2,5,1,702,434868.13,0,0,2108.4407 -7057,8711,15912,15913,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,-4,-65.594749,0,0,0,76,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,45.610001,62,41.73,6,1,1,0,0,2,2,1,379,280048.53,0,0,2486.5107 -7057,8711,15913,15912,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,6.7221084,6.9805217,1.9944795,1,0,-9,49,0,4,81.97361,0,0,0,72,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.4263848,0,0,62,41.73,56.52,45.610001,6,1,1,0,0,2,2,1,379,280048.53,0,0,2486.5107 -7058,8712,15914,15915,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,2,7.3186955,7.3803978,4.4871311,1,0,1,1,-9,23,-55.350491,0,0,0,37,2,4,1,2,2,2019,1,2,16,3,3,3,15,1,0,1,0,59.969368,59.969368,0,0,0,0,0,0,0,7,0,0,0,7.8035388,4.464787,6.5833631,3,35.189999,35.48,49,56,3,1,1,0,1,2,5,1,1881.5,939487.5,0,0,5183.8516 -7058,8712,15915,15914,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,0,4,9.0004225,8.747015,0,1,0,-9,1,-9,-23,-85.554375,-9,0,1,60,2,2,1,-9,-9,2019,1,1,11,2,40,0,15,1,0,1,0,15.485508,15.485508,0,0,0,0,0,0,0,0,0,0,0,1.8801579,0,0,0,49,56,35.189999,35.48,5,1,1,0,0,2,5,1,1881.5,939487.5,0,0,5183.8516 -7059,8713,15916,-9,-9,-9,1,1,1,71,2,0,0,0,1,-9,4,3,0,0,3,0,7.0570192,6.9257793,3,0,0,0,-9,0,-929.03149,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9214602,6.9897289,0,0,53.59,49.639999,-9,-9,6,1,1,0,0,9,2,1,1810,296061.44,0,0,1060.5815 -7060,8714,15917,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,2,0,6.7295494,6.3101592,3,0,0,0,-9,0,-853.73083,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8136525,0,0,68.279999,25.549999,-9,-9,7,1,1,0,0,12,2,0,164,354081.44,0,0,1418.3689 -7061,8715,15918,-9,-9,-9,1,1,1,57,3,0,1,0,2,-9,1,1,0,0,3,7.9184918,7.8714995,0,4,0,-9,0,-9,0,-787.16168,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,50,0,15,1,0,-9,0,5.9060755,5.9060755,0,0,0,0,0,0,0,2,1,1,0,0,0,.67592096,3,52.990002,51.279999,-9,-9,4,1,1,0,0,12,3,1,307,-23519.828,0,0,1502.9535 -7062,8716,15919,15920,-9,-9,2,1,1,34,1,1,1,0,1,-9,7,2,0,0,4,7.5703316,7.9221048,0,2,0,-9,8,0,4,95.431168,1,0,0,30,1,4,1,3,1,2019,3,1,14,2,20,49,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.57,46.139999,31.639999,50.16,4,2,3,0,0,8,3,0,735,591623.44,0,0,1707.0254 -7062,8716,15920,15919,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,0,4,6.957634,6.8086553,0,2,0,-9,8,0,-4,-18.824341,0,0,1,34,1,4,2,3,2,2019,2,2,17,5,10,20,15,1,1,2,0,8.3810797,8.3810797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.639999,50.16,37.57,46.139999,5,2,3,0,0,8,3,0,735,591623.44,0,0,1707.0254 -7062,8716,15921,-9,15920,15919,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.30078,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,3,0,735,591623.44,0,0,1707.0254 -7063,8717,15922,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,0,4,0,7.9789391,7.8742957,3,0,0,0,-9,0,-943.00098,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2413769,7.9162135,0,0,56.18,45.82,-9,-9,6,1,1,0,0,6,3,1,1461,649172.63,0,0,820.59729 -7064,8718,15923,15924,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,1,-9,19,0,-9,0,0,48,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.459999,53.68,38.759998,47.630001,5,1,1,0,1,10,1,0,1504.5,225309.05,0,0,126.6242 -7064,8718,15924,15923,-9,-9,1,1,0,48,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,1,1,-9,-19,0,0,0,0,67,2,4,3,2,2,2019,4,2,18,6,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.225929,0,0,0,38.759998,47.630001,50.459999,53.68,3,1,1,1,1,10,1,0,1504.5,225309.05,0,0,126.6242 -7065,8719,15925,15926,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,4,9.0324154,8.8348827,0,1,0,-9,3,0,8,-205.2836,0,0,0,29,1,5,1,2,1,2019,1,2,22,10,40,0,15,1,1,1,0,25.592926,25.592926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.950001,58.189999,51.73,58.82,3,1,1,0,0,6,5,1,1068,611467.5,0,0,4450.4023 -7065,8719,15926,15925,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.0742893,7.860816,0,1,0,-9,3,0,-8,64.968361,0,1,1,37,1,4,1,-9,-9,2019,1,1,15,4,40,35,15,1,1,1,0,9.6922846,9.6922846,0,0,0,0,0,0,0,0,0,0,0,2.369539,0,0,0,51.73,58.82,37.950001,58.189999,7,1,1,0,0,6,5,1,1068,611467.5,0,0,4450.4023 -7066,8720,15927,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,0,5,9.0503206,9.1945801,0,3,0,0,0,-9,0,-1149.3293,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,8,53,56,15,1,1,-9,0,23.031916,23.031916,0,0,0,0,0,0,0,0,0,0,0,4.3435473,0,0,0,26.93,68.839996,-9,-9,3,1,1,0,0,6,5,1,649,664776,0,0,3258.7419 -7067,8721,15928,15929,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,1,4,7.3713479,7.3414011,4.5804958,1,0,-9,35,0,-7,81.394775,0,0,0,67,2,4,1,2,3,2019,1,1,9,0,27,27,15,1,0,1,0,5.7171602,5.7171602,0,0,0,0,0,0,0,0,1,1,0,0,4.5047078,0,0,46.900002,56.66,57.16,56.150002,4,1,1,0,0,9,5,0,812,1563370.8,0,0,4559.0371 -7067,8721,15929,15928,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,4,8.7176428,9.0496731,6.8625159,1,0,-9,35,0,7,1.5111998,0,0,0,60,3,4,1,3,3,2019,1,2,7,0,27,35,15,1,0,1,0,26.142084,26.142084,0,0,0,0,0,0,0,0,1,1,0,3.048995,7.007587,0,0,57.16,56.150002,46.900002,56.66,6,1,1,0,0,9,5,0,812,1563370.8,0,0,4559.0371 -7068,8722,15930,-9,-9,-9,1,1,1,96,3,0,0,0,3,-9,4,3,0,1,3,0,5.6825147,5.4490919,3,0,0,0,-9,0,-921.48663,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,13.522316,0,8.6224222,0,1.4970931,163.51744,0,1,1,0,0,5.5199451,0,0,56,44,-9,-9,6,1,1,0,0,10,2,1,856,403882.91,0,0,1957.2842 -7069,8723,15931,15932,-9,-9,3,1,1,35,1,0,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,4,0,6,15.90545,0,0,0,29,2,5,1,-9,-9,2019,1,1,8,0,20,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.650002,56.130001,7,1,1,0,0,11,3,0,884,63187.426,0,0,1965.7157 -7069,8723,15932,15931,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,0,5,7.779727,7.8955216,0,2,0,-9,4,0,-6,-79.107124,0,1,1,35,2,4,1,2,3,2019,1,3,5,0,50,25,15,1,0,1,0,7.9652324,7.9652324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.650002,56.130001,57.16,56.150002,6,1,1,0,0,11,3,0,884,63187.426,0,0,1965.7157 -7069,8723,15933,-9,15932,15931,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.6824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,3,0,884,63187.426,0,0,1965.7157 -7070,8724,15934,15935,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.1564827,7.8075652,1,0,-9,43,0,1,11.390042,0,0,0,66,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2896042,8.0445518,0,0,58.900002,45.740002,49.119999,57.279999,7,1,1,0,0,9,4,1,235.5,1984056.6,0,0,4060.166 -7070,8724,15935,15934,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.718009,7.6416721,1,0,-9,43,0,-1,16.556183,0,0,0,67,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6728158,7.8286681,0,0,49.119999,57.279999,58.900002,45.740002,7,1,1,0,0,9,4,1,235.5,1984056.6,0,0,4060.166 -7071,8725,15936,15937,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,2,0,6.6802878,6.6328487,1,0,-9,8,0,1,-48.711456,0,0,0,70,3,3,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.2957807,6.7342072,1.501516,1,53.130001,25.940001,47.939999,48.259998,5,1,1,0,0,13,2,1,269,128302.77,0,0,2297.4524 -7071,8725,15937,15936,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,1,3,0,5.6475058,5.3168931,1,0,-9,8,0,-1,-45.943817,0,0,0,71,2,2,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7513261,0,0,47.939999,48.259998,53.130001,25.940001,6,1,1,0,0,13,2,1,269,128302.77,0,0,2297.4524 -7072,8726,15938,-9,15942,15939,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.82666,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,1,3,1,690.79999,96500.266,0,0,2187.5354 -7072,8726,15939,15942,-9,-9,2,1,1,37,1,0,3,0,2,-9,1,1,0,0,4,8.2960978,8.4162292,0,2,0,-9,6,0,2,36.339348,0,0,0,35,3,4,3,-9,-9,2019,2,1,10,1,40,25,15,1,0,3,0,11.340166,11.340166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,5,2,3,0,0,1,3,1,690.79999,96500.266,0,0,2187.5354 -7072,8726,15940,-9,15942,15939,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1016.2498,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,2,3,0,0,1,3,1,690.79999,96500.266,0,0,2187.5354 -7072,8726,15941,-9,15942,15939,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.4211,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,1,3,1,690.79999,96500.266,0,0,2187.5354 -7072,8726,15942,15939,-9,-9,1,1,0,35,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,-2,-102.62456,0,0,1,37,2,4,1,3,3,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,0,1,3,1,690.79999,96500.266,0,0,2187.5354 -7073,8727,15943,15944,-9,-9,2,1,0,39,1,1,1,0,1,-9,5,1,0,0,5,8.5536194,8.2217436,0,2,0,-9,8,0,-4,81.131538,0,0,1,43,1,4,1,3,1,2019,1,1,5,0,38,35,15,1,0,1,0,12.180072,12.180072,0,0,0,0,0,0,0,0,1,1,0,6.7329669,0,0,0,57.060001,57.759998,54.200001,57.490002,7,1,1,0,0,2,5,0,371.66666,1400930.1,0,0,7908.5327 -7073,8727,15944,15943,-9,-9,1,1,1,43,1,1,1,0,1,-9,1,1,0,0,4,9.6077232,9.5608149,0,2,0,-9,8,0,4,-184.18759,0,0,0,39,1,5,1,2,1,2019,1,2,6,1,37,41,15,1,0,1,0,55.069233,55.069233,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.060001,57.759998,6,1,1,0,0,2,5,0,371.66666,1400930.1,0,0,7908.5327 -7073,8727,15945,-9,15943,15944,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-931.27203,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,5,0,371.66666,1400930.1,0,0,7908.5327 -7074,8728,15946,15947,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,7.1268921,8.3992109,8.2680054,1,0,-9,49,0,5,-62.356117,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,10,12,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3929987,8.1164675,0,0,64.400002,42,53.779999,35.18,7,1,1,0,0,7,4,1,441.5,1277718.1,0,0,3534.7378 -7074,8728,15947,15946,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,6.7795391,7.0662107,1,0,-9,49,0,-5,86.952446,0,0,0,74,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4649315,0,0,53.779999,35.18,64.400002,42,4,1,1,0,0,7,4,1,441.5,1277718.1,0,0,3534.7378 -7075,8729,15948,15949,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,1,3,0,5.0601516,4.7722721,1,0,-9,42,0,0,-53.87738,0,0,0,67,2,4,3,3,3,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.6173644,4.766469,74.335205,1,57.540001,28.6,49.27,56.950001,6,1,1,0,0,2,3,1,275,1105402.8,0,0,3385.6099 -7075,8729,15949,15948,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,8.0635853,8.0826654,1,0,-9,42,0,0,-63.246113,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3463736,0,0,49.27,56.950001,57.540001,28.6,6,1,1,0,0,2,3,1,275,1105402.8,0,0,3385.6099 -7076,8730,15950,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,0,2,7.5160804,8.196435,7.2902346,3,0,-9,0,-9,0,-1091.6962,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,15,0,15,1,1,-9,0,11.332587,11.332587,0,0,0,0,0,0,0,0,0,0,0,7.5077963,0,0,0,19.629999,46.740002,-9,-9,5,1,1,0,0,8,4,0,476,66725.617,0,0,1031.8934 -7077,8731,15951,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1200.6559,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.98,48.330002,-9,-9,6,1,1,0,0,11,1,0,363,729940.31,0,0,-67.447136 -7078,8732,15952,-9,-9,-9,1,1,1,92,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-952.94122,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,8.5516548,0,0,1,1,0,0,0,0,0,53.98,50.869999,-9,-9,1,1,1,0,0,7,1,0,349,349353.09,0,0,898.85822 -7079,8733,15953,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,2,0,7.4501996,7.2679019,3,0,0,0,-9,0,-1000.6273,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,3.9072912,12.070988,0,0,0,1,1,0,0,7.5673108,0,0,42.349998,30.780001,-9,-9,3,1,1,0,0,10,3,1,531,1056223.4,0,0,2304.79 -7080,8734,15954,15956,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,5,7.6733522,7.9013262,0,2,0,-9,14,0,3,94.936813,0,0,0,36,2,4,1,2,2,2019,1,1,4,1,37,40,15,1,0,1,0,7.1361165,7.1361165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,62.490002,55.09,7,1,1,0,0,7,2,1,506.25,-7276.3306,0,0,2810.5154 -7080,8734,15955,-9,15956,15954,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.57306,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,2,1,506.25,-7276.3306,0,0,2810.5154 -7080,8734,15956,15954,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,5.8670712,5.991353,0,2,0,-9,19,0,-3,-114.99566,0,0,1,39,2,5,1,2,2,2019,1,2,6,0,7,7,15,1,0,1,0,6.6369066,6.6369066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,57.060001,57.759998,6,1,1,0,0,7,2,1,506.25,-7276.3306,0,0,2810.5154 -7080,8734,15957,-9,15956,15954,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1155.5637,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,1,506.25,-7276.3306,0,0,2810.5154 -7081,8735,15958,15959,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.8808985,7.9434237,1,0,-9,45,0,7,-34.43866,0,0,0,68,2,2,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5884566,8.1120462,12.228135,1,49.119999,57.279999,55.75,29.040001,6,1,1,0,0,7,3,1,1587,1425991,0,0,3911.7754 -7081,8735,15959,15958,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,2,0,5.8454704,5.8410106,1,0,-9,45,0,-7,-43.438038,0,0,0,75,3,4,3,2,1,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.5706429,5.6090145,0,0,55.75,29.040001,49.119999,57.279999,5,1,1,0,0,7,3,1,1587,1425991,0,0,3911.7754 -7082,8736,15960,15963,-9,-9,1,1,0,52,1,0,3,0,2,-9,1,1,0,0,4,7.434237,7.5082812,0,2,0,-9,2,0,12,35.285065,0,0,0,40,2,3,2,1,1,2019,2,4,15,5,10,20,15,1,1,2,0,22.224852,22.224852,0,0,0,0,0,0,0,0,1,1,0,3.3468711,0,0,0,49.450001,51.400002,41.23,59.349998,3,1,1,0,0,12,2,0,1686.2,8896.8066,0,0,1656.146 -7082,8736,15961,-9,15960,-9,2,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1091.2467,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,2,0,1686.2,8896.8066,0,0,1656.146 -7082,8736,15962,-9,-9,15963,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1043.0961,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,0,1686.2,8896.8066,0,0,1656.146 -7082,8736,15963,15960,-9,-9,4,1,1,40,1,0,3,0,2,-9,7,2,0,0,3,0,0,0,2,0,-9,2,0,-12,19.25181,-9,0,0,52,2,4,1,-9,-9,2019,3,1,8,1,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,49.450001,51.400002,2,1,1,0,0,12,2,0,1686.2,8896.8066,0,0,1656.146 -7082,8736,15964,-9,15960,-9,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-817.48932,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,12,2,0,1686.2,8896.8066,0,0,1656.146 -7083,8737,15965,15968,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,0,4,8.3860064,8.3816261,0,2,0,-9,12,0,-7,50.819717,0,0,0,38,1,3,1,2,-9,2019,1,1,13,1,41,40,15,1,0,1,0,11.19206,11.19206,0,0,0,0,0,0,0,2,1,1,0,0,0,3.555598,3,45.810001,58.990002,44.360001,54.040001,4,1,1,0,0,1,5,1,523,157205.47,0,0,3964.304 -7083,8737,15966,-9,15968,15965,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.53687,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,523,157205.47,0,0,3964.304 -7083,8737,15967,-9,15968,15965,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.6481,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,5,1,523,157205.47,0,0,3964.304 -7083,8737,15968,15965,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,8.9292078,8.922987,0,2,0,-9,12,0,7,-12.646781,0,0,1,31,2,4,1,2,2,2019,1,2,15,4,66,45,15,1,1,1,0,13.23108,13.23108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,54.040001,45.810001,58.990002,4,1,1,0,0,1,5,1,523,157205.47,0,0,3964.304 -7084,8738,15969,-9,15971,15970,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.44916,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,1,242,96968.836,0,0,2642.7363 -7084,8738,15970,15971,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,0,4,7.5614886,7.9402814,0,2,0,-9,19,0,-1,14.213512,0,0,0,50,2,4,1,3,2,2019,1,1,7,0,20,0,15,1,0,1,0,11.487666,11.487666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,51.02,54.200001,57.490002,5,1,1,0,1,2,3,1,242,96968.836,0,0,2642.7363 -7084,8738,15971,15970,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,7.997519,7.9077115,0,2,0,-9,19,0,1,-133.06067,0,0,0,49,2,4,1,3,3,2019,1,2,6,0,44,37,15,1,0,1,0,6.1050663,6.1050663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,56.18,51.02,6,1,1,0,0,2,3,1,242,96968.836,0,0,2642.7363 -7084,8739,15972,-9,15971,15970,3,1,1,23,2,0,1,0,1,-9,2,1,0,0,4,7.2708621,6.9326305,0,3,0,0,0,-9,0,-893.90155,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,37,15,1,0,-9,1,3.2418575,3.2418575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,2,2,1,294,-189003.56,0,0,1017.3563 -7085,8740,15973,15974,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,7.0381303,8.2168522,7.5262017,1,0,-9,16,0,1,90.815125,0,0,0,60,1,3,1,2,2,2019,1,2,6,0,28,24,15,1,0,1,0,4.9630876,4.9630876,0,0,0,0,0,0,0,0,0,0,0,7.170289,7.8070979,0,0,65.07,44.279999,49,48,7,1,1,0,0,4,5,1,827,1840837.4,0,0,3805.6208 -7085,8740,15974,15973,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,0,3,8.3488789,8.2280264,0,1,0,-9,7,0,-1,85.376686,-9,0,0,61,3,4,1,-9,-9,2019,1,1,11,2,23,0,15,1,0,1,0,21.794832,21.794832,0,0,0,0,0,0,0,0,0,0,0,5.306725,0,0,0,49,48,65.07,44.279999,5,1,1,0,0,4,5,1,827,1840837.4,0,0,3805.6208 -7085,8741,15975,-9,15974,15973,3,1,1,30,2,0,0,0,2,-9,1,1,0,0,4,8.2650423,8.2403526,0,3,0,0,0,-9,0,-1156.3523,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,40,0,15,1,0,-9,1,12.514078,12.514078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,4,4,1,761,-158184.56,0,0,2397.752 -7086,8742,15976,-9,15977,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-938.43256,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,2,0,425.5,-77993.453,0,0,1232.8083 -7086,8742,15977,-9,-9,-9,1,1,0,45,2,0,1,0,2,-9,2,1,0,0,3,5.9027991,5.6414127,0,4,0,0,0,-9,0,-1001.0677,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,6,0,15,1,0,-9,0,6.1399717,6.1399717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,-9,-9,4,1,1,0,1,1,2,0,425.5,-77993.453,0,0,1232.8083 -7087,8743,15978,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1016.8187,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.932,0,0,0,0,1,1,0,0,0,0,0,66.040001,17.280001,-9,-9,7,1,1,0,0,2,1,0,1037,73269.484,0,0,204.99977 -7088,8744,15979,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,5,8.384757,8.4292974,0,3,0,0,0,-9,0,-931.4566,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,38,39,15,1,0,-9,0,13.50067,13.50067,0,0,0,0,0,0,0,0,0,0,0,4.0326052,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,5,1,415,-28641.225,0,0,2484.9722 -7089,8745,15980,15981,-9,-9,2,1,0,23,1,1,1,0,2,-9,2,1,0,0,3,7.8932967,7.9549079,0,2,0,-9,1,-9,-2,44.779675,-9,1,1,25,2,4,1,-9,-9,2019,1,1,10,0,38,0,15,1,0,1,0,6.9839087,6.9839087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.240002,50.009998,61.66,49.959999,5,2,3,0,0,4,3,0,1822.6666,-18569.125,0,0,3172.1528 -7089,8745,15981,15980,-9,-9,1,1,1,25,1,1,1,0,2,-9,2,1,0,0,4,7.5714283,7.675746,0,2,0,-9,1,-9,2,174.1078,-9,1,0,23,2,3,1,-9,-9,2019,1,2,5,0,34,0,15,1,0,1,0,7.3905835,7.3905835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.66,49.959999,53.240002,50.009998,5,2,3,0,0,4,3,0,1822.6666,-18569.125,0,0,3172.1528 -7089,8745,15982,-9,15980,15981,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-852.034,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,4,3,0,1822.6666,-18569.125,0,0,3172.1528 -7090,8746,15983,-9,15985,-9,2,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1084.4729,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,1,0,586.25,0,0,0,2379.1726 -7090,8746,15984,-9,15985,-9,4,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1102.0249,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,1,0,586.25,0,0,0,2379.1726 -7090,8746,15985,-9,-9,-9,1,1,0,27,2,1,3,0,2,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-952.12708,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,4,1,1,0,0,4,1,0,586.25,0,0,0,2379.1726 -7090,8746,15986,-9,15985,-9,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.9407,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,586.25,0,0,0,2379.1726 -7091,8747,15987,-9,-9,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,8.5604525,8.8559361,0,3,0,-9,0,-9,0,-997.47504,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,37,0,15,1,0,-9,0,19.232626,19.232626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,6,0,0,8,5,0,533,-75888.445,0,0,2020.8656 -7091,8748,15988,15989,-9,-9,1,1,1,23,1,0,0,0,1,1,2,1,0,0,4,8.490859,8.4602118,0,1,0,1,1,-9,0,7.8248792,-9,1,0,23,1,4,1,-9,-9,2019,1,3,12,1,41,0,15,1,0,1,0,11.563944,11.563944,0,0,0,0,0,0,0,0,0,0,0,3.9046273,0,0,0,49.459999,56.91,46,58,5,1,1,0,0,8,5,0,817.5,215280.97,0,0,5027.7666 -7091,8748,15989,15988,-9,-9,3,1,0,23,1,0,0,0,1,-9,2,1,0,0,4,8.6671658,9.1099443,0,1,0,-9,1,-9,0,-35.323639,-9,1,1,23,1,4,1,-9,-9,2019,1,1,12,2,37,0,15,1,0,1,0,26.648148,26.648148,0,0,0,0,0,0,0,0,0,0,0,1.1473374,0,0,0,46,58,49.459999,56.91,5,1,1,0,0,8,5,0,817.5,215280.97,0,0,5027.7666 -7092,8749,15990,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,8.5357246,8.9692259,6.3660741,3,0,0,0,-9,0,-949.14038,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,35,36,15,1,0,-9,0,19.14805,19.14805,0,0,0,0,0,0,0,0,1,1,0,6.5144596,0,0,0,45.82,54.57,-9,-9,6,1,1,0,0,8,5,0,712,143844.13,0,0,2483.7395 -7092,8750,15991,-9,15990,-9,2,1,1,29,2,0,0,0,1,-9,2,1,0,0,2,8.7555895,8.7024956,0,3,0,0,0,-9,0,-957.46381,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,42,54,15,1,0,-9,1,17.844477,17.844477,0,0,0,0,0,0,0,0,1,1,0,3.2569296,0,0,0,46.849998,53.169998,-9,-9,6,1,1,0,0,8,5,0,299.5,-84222.195,0,0,2343.1221 -7092,8750,15992,-9,-9,15991,3,1,0,17,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-961.07843,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.939999,49.900002,-9,-9,3,4,2,1,0,8,5,0,299.5,-84222.195,0,0,2343.1221 -7093,8751,15993,15994,-9,-9,2,1,1,22,1,0,0,0,2,-9,2,1,0,0,3,7.8797979,8.2121201,0,1,0,-9,1,-9,0,-53.632126,-9,1,0,22,2,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,10.3169,10.3169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,45.560001,42.630001,7,1,1,0,0,6,4,0,1340,-163302.86,0,0,2754.2185 -7093,8751,15994,15993,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,4,7.9250426,7.7069225,0,1,0,1,1,-9,0,-85.71627,0,1,1,22,2,3,1,-9,-9,2019,1,2,15,2,45,31,15,1,0,1,0,5.829689,5.829689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.560001,42.630001,57.330002,53.459999,6,1,1,0,0,6,4,0,1340,-163302.86,0,0,2754.2185 -7094,8752,15995,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,1,0,5.6576772,5.4087119,3,0,0,0,-9,0,-1005.1541,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9850388,0,0,39.650002,18.559999,-9,-9,1,1,1,0,0,2,2,0,90,186325.59,0,0,2972.9158 -7095,8753,15996,15997,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,5.5986352,5.5848866,1,0,-9,29,0,-6,-15.551927,0,0,0,76,1,4,1,3,-9,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.4545107,5.2161984,0,0,58.470001,50.220001,57.16,56.150002,6,1,1,0,0,10,5,1,514.5,861740.81,0,0,26894.971 -7095,8753,15997,15996,-9,-9,2,1,1,76,1,0,0,0,1,-9,1,1,0,0,4,9.8481064,9.9858551,5.2997799,1,0,-9,14,0,6,19.516827,0,0,0,70,2,3,3,-9,1,2019,2,1,6,0,10,4,15,1,0,4,0,177.33727,177.33727,0,0,0,0,0,0,0,0,1,1,0,8.6694794,4.8217349,0,0,57.16,56.150002,58.470001,50.220001,6,1,1,0,0,10,5,1,514.5,861740.81,0,0,26894.971 -7096,8754,15998,-9,16001,16000,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1048.6987,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,5,2,1,1310,-68203.672,0,0,2478.541 -7096,8754,15999,-9,16001,16000,3,1,0,16,2,0,1,0,2,-9,2,2,0,0,4,6.6147413,6.4552197,0,2,0,0,0,-9,0,-977.80707,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.18,65.980003,-9,-9,4,1,1,0,0,5,2,1,1310,-68203.672,0,0,2478.541 -7096,8754,16000,16001,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,18,0,9,-21.06012,0,0,0,39,2,5,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7992921,0,0,0,54.200001,57.490002,43.07,45.200001,5,1,1,0,0,5,2,1,1310,-68203.672,0,0,2478.541 -7096,8754,16001,16000,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,5,6.861043,7.1220169,0,2,0,-9,18,0,0,-47.483795,0,0,1,48,2,4,1,3,3,2019,1,2,13,1,20,0,15,1,0,1,0,7.0784769,7.0784769,0,0,0,0,0,0,0,0,1,1,0,6.6255188,0,0,0,43.07,45.200001,54.200001,57.490002,5,1,1,0,0,5,2,1,1310,-68203.672,0,0,2478.541 -7097,8755,16002,16003,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,5.3431773,4.6645865,1,0,-9,59,0,3,13.716649,0,0,0,76,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3879671,5.0948772,15.513315,1,57.16,56.150002,34.57,29.780001,1,1,1,0,0,1,2,1,489.5,369150.63,0,0,1389.9861 -7097,8755,16003,16002,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,4.3065419,4.5259523,1,0,-9,58,0,-3,12.035362,0,0,0,79,2,4,3,3,3,2019,4,2,23,9,0,0,15,4,1,4,0,0,0,1,0,17.53952,0,0,0,0,0,1,1,0,4.8194456,4.5870132,0,0,34.57,29.780001,57.16,56.150002,6,1,1,0,0,1,2,1,489.5,369150.63,0,0,1389.9861 -7098,8756,16004,16005,-9,-9,1,1,0,54,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,7,0,1,0,0,0,0,53,3,1,3,3,3,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.652687,1,53.630001,38.810001,19.91,25.08,6,1,1,0,0,4,1,0,834.5,-56331.488,0,0,1438.7288 -7098,8756,16005,16004,-9,-9,2,1,1,53,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,-1,0,0,0,0,54,3,3,3,3,3,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.91,25.08,53.630001,38.810001,5,1,1,0,0,4,1,0,834.5,-56331.488,0,0,1438.7288 -7099,8757,16006,-9,-9,-9,1,1,0,30,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,-9,0,0,0,-1032.634,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.719999,54.970001,-9,-9,6,1,1,1,0,12,1,0,227,5520.0366,0,0,13.636046 -7100,8758,16007,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,8,3,1,1,2,0,6.3514161,6.2778974,3,0,0,0,-9,0,-1012.2802,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,18,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4393234,0,0,0,29.59,24.129999,-9,-9,1,1,1,0,1,4,2,0,1891,16507.908,0,0,1671.1826 -7101,8759,16008,-9,-9,-9,1,1,1,43,3,0,0,0,1,-9,1,1,0,0,3,6.466166,6.6533899,0,3,0,-9,0,-9,0,-976.60272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,0,15,1,0,-9,0,2.6169991,2.6169991,0,0,0,0,0,0,0,0,0,0,0,8.1546602,0,0,0,41.540001,47.23,-9,-9,6,2,3,0,0,8,2,0,404,33392.938,0,0,1729.7828 -7102,8760,16009,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-858.30823,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,43,-9,-9,6,1,1,0,0,9,1,0,3873,41472.359,0,0,1888.3322 -7103,8761,16010,16011,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.1274366,8.7242327,0,1,0,-9,29,0,3,-15.806108,0,0,0,54,1,4,1,2,2,2019,1,2,9,0,35,35,15,1,0,1,0,12.800708,12.800708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.049999,52.040001,52,53,5,3,4,0,1,8,5,0,220,900916.81,0,0,3277.1487 -7103,8761,16011,16010,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.6027613,8.4640512,5.4450903,1,0,-9,28,0,-3,-.5680958,0,0,0,57,1,4,1,3,2,2019,1,1,10,1,35,30,15,1,0,1,0,21.298857,21.298857,0,0,0,0,0,0,0,0,0,0,0,0,5.4150891,0,0,52,53,51.049999,52.040001,5,3,4,0,0,8,5,0,220,900916.81,0,0,3277.1487 -7103,8762,16012,-9,16011,16010,3,1,1,27,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1067.9816,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,57,-9,-9,5,3,4,1,0,8,1,0,795,-169330.55,0,0,0 -7103,8763,16013,-9,16011,16010,4,1,0,28,2,0,0,0,1,-9,2,1,0,0,4,6.5229015,6.6464601,0,3,0,0,0,-9,0,-993.92236,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,24,5,15,1,0,-9,1,2.9882581,2.9882581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,5,3,4,0,0,8,2,0,912,-21281.086,0,0,-340.15353 -7104,8764,16014,16015,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,48,0,-6,113.23456,0,0,0,71,1,2,3,2,2,2019,4,2,23,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.599998,14.31,55.560001,24.870001,3,1,1,0,0,5,2,1,434.5,431396.25,0,0,1796.9119 -7104,8764,16015,16014,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,2,0,6.3256035,6.683506,1,0,-9,48,0,6,-1.1349051,0,0,0,65,2,1,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.3698449,6.4613647,125.1922,2,55.560001,24.870001,37.599998,14.31,6,1,1,0,0,5,2,1,434.5,431396.25,0,0,1796.9119 -7105,8765,16016,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,0,3,7.2964163,6.7273121,0,4,0,0,0,-9,0,-989.99188,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,16,15,1,0,-9,0,7.7742224,7.7742224,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.279999,55.900002,-9,-9,6,1,1,0,0,4,2,0,770,-106227.13,0,0,1355.236 -7105,8765,16017,-9,16016,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-861.56018,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,1,1,0,0,4,2,0,770,-106227.13,0,0,1355.236 -7105,8765,16018,-9,16016,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.8163,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,770,-106227.13,0,0,1355.236 -7106,8766,16019,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,0,5,8.7309523,8.6584969,0,3,0,0,0,-9,0,-1043.0747,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,40,41,15,1,0,-9,0,20.871552,20.871552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.380001,55.950001,-9,-9,6,1,1,0,0,8,5,0,608,543586.56,0,0,2999.5493 -7107,8767,16020,-9,16021,16022,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.2721,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,5,1,1087,1491549.4,0,0,6250.3174 -7107,8767,16021,16022,-9,-9,2,1,0,44,1,0,1,0,2,-9,1,1,0,0,4,8.534091,8.3370714,0,2,0,-9,6,0,-11,22.570869,0,0,1,55,2,3,1,2,2,2019,1,1,7,0,10,5,15,1,0,1,0,46.212486,46.212486,0,0,0,0,0,0,0,0,1,1,0,6.4933419,0,0,0,57.16,56.150002,54.369999,54.799999,6,1,1,0,0,5,5,1,1087,1491549.4,0,0,6250.3174 -7107,8767,16022,16021,-9,-9,1,1,1,55,1,0,1,0,2,-9,1,1,0,0,3,9.4930496,9.355092,0,2,0,-9,6,0,11,-119.80061,0,0,0,44,2,4,1,3,3,2019,1,2,6,0,20,20,15,1,0,1,0,57.691647,57.691647,0,0,0,0,0,0,0,0,1,1,0,8.1035023,0,0,0,54.369999,54.799999,57.16,56.150002,6,1,1,0,0,5,5,1,1087,1491549.4,0,0,6250.3174 -7108,8768,16023,16024,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,3,8.0233536,8.1951113,0,1,0,-9,8,0,5,-72.941597,0,0,0,39,2,2,1,-9,-9,2019,1,2,6,0,35,42,15,1,0,1,0,8.7881985,8.7881985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.950001,46.689999,45.91,35.959999,5,1,1,0,0,6,4,0,258.5,313473.78,0,0,2229.4038 -7108,8768,16024,16023,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,0,2,8.3019419,7.5774598,0,1,0,-9,8,0,-5,74.13327,0,0,1,44,2,3,1,3,3,2019,1,1,12,1,38,42,15,1,0,1,0,8.3406286,8.3406286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,35.959999,56.950001,46.689999,4,1,1,0,0,6,4,0,258.5,313473.78,0,0,2229.4038 -7109,8769,16025,16026,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,6.3728857,6.522831,1,0,-9,5,0,-5,-122.25287,0,0,0,74,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4974332,6.502275,0,0,46.669998,58.369999,31.84,51.650002,5,1,1,0,0,4,2,1,449.5,718352.25,0,0,1903.5551 -7109,8769,16026,16025,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.2264967,7.0889812,1,0,-9,5,0,5,67.170853,0,0,0,69,1,4,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8423748,6.9790521,0,0,31.84,51.650002,46.669998,58.369999,5,1,1,0,0,4,2,1,449.5,718352.25,0,0,1903.5551 -7110,8770,16027,-9,16028,16030,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-978.32733,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,5,1,854.25,269697.56,0,0,4017.5979 -7110,8770,16028,16030,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,0,4,7.7857695,8.0773172,0,2,0,-9,8,0,-3,-50.721573,0,0,1,42,1,4,1,-9,2,2019,1,2,11,0,30,32,15,1,0,1,0,11.374802,11.374802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.23,58.080002,57.16,56.150002,6,1,1,0,0,4,5,1,854.25,269697.56,0,0,4017.5979 -7110,8770,16029,-9,16028,16030,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.9272,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,854.25,269697.56,0,0,4017.5979 -7110,8770,16030,16028,-9,-9,2,1,1,42,1,1,2,0,1,-9,2,1,0,0,4,8.7706909,8.9343309,0,2,0,-9,8,0,3,-35.747459,0,0,0,39,2,4,1,2,2,2019,1,1,9,0,38,40,15,1,0,1,0,18.612593,18.612593,0,0,0,0,0,0,0,0,1,1,0,.28197309,0,0,0,57.16,56.150002,47.23,58.080002,6,1,1,0,0,4,5,1,854.25,269697.56,0,0,4017.5979 -7111,8771,16031,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,0,3,8.5421581,8.6938639,0,3,0,0,0,-9,0,-1034.9065,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,45,15,1,0,-9,0,11.33995,11.33995,0,0,0,0,0,0,0,0,1,1,0,2.7771013,0,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,1,5,1,330,1496414.5,0,0,3050.6624 -7112,8772,16032,16033,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,0,3,5.5723648,5.7794986,3.5040586,1,0,-9,32,0,-10,-21.371572,0,0,0,74,3,3,3,3,3,2019,2,1,7,0,4,10,15,1,0,4,0,8.1035175,8.1035175,0,0,0,0,0,0,0,0,1,1,0,3.5463421,3.2728107,0,0,58.32,50.220001,57.330002,53.459999,6,1,1,0,0,5,2,1,221,228371.03,0,0,1817.7181 -7112,8772,16033,16032,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,5.3059497,5.0976391,1,0,-9,32,0,10,-83.366264,0,0,0,64,3,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0726123,4.9181418,0,0,57.330002,53.459999,58.32,50.220001,7,1,1,0,0,5,2,1,221,228371.03,0,0,1817.7181 -7113,8773,16034,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,5,8.2549686,8.2644186,0,3,0,0,0,-9,0,-1000.9714,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,44,42,15,1,0,-9,0,12.922374,12.922374,0,0,0,0,0,0,0,0,0,0,0,2.5734022,0,0,0,40.650002,58.259998,-9,-9,5,1,1,0,0,8,4,0,1541,60765.199,0,0,750.43427 -7114,8774,16035,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,9.0552073,9.1634722,0,3,0,-9,0,-9,0,-1034.0903,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,45,0,15,1,0,-9,0,20.280807,20.280807,0,0,0,0,0,0,0,0,0,0,0,5.8074889,0,0,0,44.02,60.700001,-9,-9,3,1,1,0,0,8,5,0,351,-83454.82,0,0,3223.3342 -7115,8775,16036,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,5,9.1862917,9.1445293,0,3,0,0,0,-9,0,-836.82043,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,49,47,15,1,0,-9,0,19.576408,19.576408,0,0,0,0,0,0,0,0,0,0,0,4.6665268,0,0,0,51.139999,60.450001,-9,-9,5,1,1,0,0,9,5,1,865,119092.65,0,0,2648.5884 -7116,8776,16037,16038,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,2,0,6.9550028,7.0021911,1,0,-9,42,0,1,-47.586479,0,0,0,64,1,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,13.88907,0,0,0,0,0,1,1,0,6.8543148,7.0549555,0,0,63.509998,25.200001,56.18,53.849998,7,1,1,0,0,5,2,1,272,360196.19,0,0,2634.5051 -7116,8776,16038,16037,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,6.2644482,6.3515463,1,0,-9,42,0,-1,14.195914,0,0,0,65,1,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.0138569,6.0245304,11.556728,3,56.18,53.849998,63.509998,25.200001,6,1,1,0,0,5,2,1,272,360196.19,0,0,2634.5051 -7117,8777,16039,16040,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,50,0,-3,-52.912849,0,0,0,74,2,3,3,2,2,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8115884,0,0,0,62.389999,56.709999,54,46,7,1,1,0,0,4,3,1,1314,492373.31,0,0,2422.2773 -7117,8777,16040,16039,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.9735394,7.8585353,1,0,-9,50,0,3,-1.9228635,0,0,0,71,3,5,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9454124,8.3403978,0,0,54,46,62.389999,56.709999,5,1,1,0,0,4,3,1,1314,492373.31,0,0,2422.2773 -7118,8778,16041,16042,-9,-9,1,1,1,58,1,0,1,0,1,-9,4,3,0,0,1,0,0,0,2,0,-9,35,0,1,-25.779535,0,0,0,57,1,4,1,-9,-9,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.310001,52.080002,45.150002,57.459999,4,1,1,0,0,9,4,1,2107,1714141.8,0,0,3600.0757 -7118,8778,16042,16041,-9,-9,2,1,0,57,1,0,1,0,1,-9,2,1,0,0,4,9.0543299,8.7028618,0,2,0,-9,31,0,-1,-70.932503,0,0,0,58,1,1,3,-9,-9,2019,2,1,6,0,36,36,15,1,0,4,0,24.339128,24.339128,0,0,0,0,0,0,0,5.48,0,0,0,0,0,1.6956049,1,45.150002,57.459999,40.310001,52.080002,5,1,1,0,0,9,4,1,2107,1714141.8,0,0,3600.0757 -7118,8779,16043,-9,16042,16041,3,1,1,18,2,0,1,1,3,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-977.96313,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.220001,56.66,-9,-9,6,1,1,0,0,9,4,1,3386,77530.695,0,0,0 -7119,8780,16044,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,1,3,0,6.9426136,6.5880132,3,0,0,0,-9,0,-1047.1199,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,4.2586222,0,0,0,0,2.6664827,0,1,1,0,0,6.9174185,0,0,59.119999,36.619999,-9,-9,6,3,4,0,0,8,2,0,293,387091.31,0,0,2124.2297 -7120,8781,16045,16046,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.9126754,7.8163905,1,0,-9,41,0,1,12.760487,0,0,0,62,2,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.862556,7.9347119,0,0,59.139999,46.970001,55.77,47.779999,6,1,1,0,0,9,4,1,647,1564849.3,0,0,3780.7954 -7120,8781,16046,16045,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,2,0,8.0622864,8.2163668,1,0,-9,41,0,-1,150.81647,0,0,0,63,2,4,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2813749,8.177207,0,0,55.77,47.779999,59.139999,46.970001,6,1,1,0,0,9,4,1,647,1564849.3,0,0,3780.7954 -7121,8782,16047,-9,16048,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1036.5232,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,10,2,0,732,-5570.8984,0,0,2861.521 -7121,8782,16048,-9,-9,-9,1,1,0,39,3,0,3,0,3,-9,2,1,0,0,3,7.4424615,7.463079,0,4,0,0,0,-9,0,-908.08289,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,24,24,15,1,0,-9,0,6.218595,6.218595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.02,40.029999,-9,-9,5,3,4,0,0,10,2,0,732,-5570.8984,0,0,2861.521 -7122,8783,16049,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,0,4,0,6.7306957,6.426744,3,0,0,0,-9,0,-988.3219,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0130935,6.7618933,0,0,57.07,43.849998,-9,-9,6,1,1,0,0,12,2,1,3751,65575.141,0,0,2411.9727 -7123,8784,16050,16051,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.094758,7.012785,1,0,-9,45,0,14,81.757996,0,0,0,65,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,1.6972497,7.2461743,0,3,54.610001,38.400002,57.16,56.150002,6,1,1,0,0,7,2,1,375.5,925191,0,0,2348.9341 -7123,8784,16051,16050,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,5.7801218,6.0018439,0,1,0,-9,11,0,-14,-15.174723,0,0,0,79,2,3,3,-9,-9,2019,4,1,9,0,5,8,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.5673153,0,23.318872,3,57.16,56.150002,54.610001,38.400002,6,1,1,0,0,7,2,1,375.5,925191,0,0,2348.9341 -7124,8785,16052,16053,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,6.6897864,6.7457838,0,1,0,-9,40,0,0,72.21833,0,0,0,59,2,5,1,3,3,2019,1,1,11,2,18,20,15,1,0,1,0,4.5262609,4.5262609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,34.150002,60.279999,7,1,1,0,0,7,4,1,525,145886.09,0,0,2667.2971 -7124,8785,16053,16052,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,5,8.5456753,8.8350763,4.729269,1,0,-9,40,0,0,-14.593419,0,0,0,59,2,3,1,3,3,2019,1,2,25,12,64,57,15,1,1,1,0,7.5971189,7.5971189,0,0,0,0,0,0,0,0,0,0,0,4.9316249,5.6296301,0,0,34.150002,60.279999,46.080002,57.200001,3,1,1,0,0,7,4,1,525,145886.09,0,0,2667.2971 -7124,8786,16054,-9,16052,16053,3,1,0,34,2,0,0,0,2,-9,2,1,0,0,2,7.8218784,8.3120594,0,3,0,0,0,-9,0,-775.90784,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,43,40,15,1,1,-9,1,8.5615349,8.5615349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.669998,53.25,-9,-9,3,1,1,0,0,7,4,1,1194,51092.332,0,0,1123.825 -7125,8787,16055,16056,-9,-9,3,1,1,28,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,2,0,0,39.318626,0,1,0,37,3,2,1,3,3,2019,3,1,11,1,0,60,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.719999,62.240002,34.950001,34.57,5,1,1,1,0,10,2,0,639.33331,38750.656,0,0,2154.8354 -7125,8787,16056,16055,-9,-9,1,1,0,37,1,0,1,0,3,-9,2,1,0,1,2,7.9929042,7.9442544,0,2,0,-9,2,0,9,-74.747986,0,0,1,28,2,4,3,3,3,2019,2,3,20,8,24,20,15,1,1,3,0,12.405235,12.405235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.950001,34.57,23.719999,62.240002,1,1,1,0,0,10,2,0,639.33331,38750.656,0,0,2154.8354 -7125,8787,16057,-9,16056,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-952.2124,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,28,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.990002,47.380001,-9,-9,1,1,1,0,0,10,2,0,639.33331,38750.656,0,0,2154.8354 -7126,8788,16058,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-996.86426,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.944023,3,40.25,24.75,-9,-9,6,1,1,0,0,10,1,0,317,117703.18,0,0,1291.7968 -7126,8789,16059,-9,16058,-9,2,1,0,30,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1018.6931,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.08,36.630001,-9,-9,3,1,1,0,0,10,1,0,1183,-256376.8,0,0,-29.301899 -7127,8790,16060,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,8.1198301,7.9866748,0,3,0,0,0,-9,0,-815.72156,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,38,15,1,0,-9,0,8.5628338,8.5628338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.400002,58.34,-9,-9,5,1,1,0,0,5,4,1,659,10226.569,0,0,1338.7954 -7128,8791,16061,16063,-9,-9,2,1,0,34,1,0,1,0,1,-9,2,1,0,0,4,8.2834835,8.3252964,0,2,0,-9,5,0,-5,0,0,0,1,39,2,4,1,-9,-9,2019,1,1,11,1,39,40,15,1,0,1,0,16.761137,16.761137,0,0,0,0,0,0,0,0,1,1,0,1.2922837,0,0,0,43.759998,58.349998,38,44.52,5,1,1,0,0,2,5,1,587,65508.453,0,0,3256.5996 -7128,8791,16062,-9,16061,16063,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.0329,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,587,65508.453,0,0,3256.5996 -7128,8791,16063,16061,-9,-9,1,1,1,39,1,0,1,0,2,-9,1,1,0,0,4,8.2169733,8.260828,0,2,0,-9,5,0,5,0,0,0,0,34,1,4,1,2,2,2019,1,2,12,1,52,42,15,1,0,1,0,10.310596,10.310596,0,0,0,0,0,0,0,7,1,1,0,0,0,5.8548942,3,38,44.52,43.759998,58.349998,5,1,1,0,0,2,5,1,587,65508.453,0,0,3256.5996 -7129,8792,16064,-9,16066,16065,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1074.2126,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,7,1,0,688,-10964.854,0,0,2418.1318 -7129,8792,16065,16066,-9,-9,2,1,1,52,1,0,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,23,0,7,0,0,0,0,45,2,2,3,3,3,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.883057,3,55.599998,47.799999,54.66,34.540001,5,1,1,0,0,7,1,0,688,-10964.854,0,0,2418.1318 -7129,8792,16066,16065,-9,-9,1,1,0,45,1,0,3,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,23,0,-7,0,0,0,0,52,2,2,3,3,2,2019,4,2,12,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.05291,3,54.66,34.540001,55.599998,47.799999,3,1,1,0,0,7,1,0,688,-10964.854,0,0,2418.1318 -7129,8792,16067,-9,16066,16065,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-921.51605,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,1,0,688,-10964.854,0,0,2418.1318 -7129,8792,16068,-9,16066,16065,6,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1081.9734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,1,0,688,-10964.854,0,0,2418.1318 -7129,8793,16069,-9,16066,16065,3,1,1,19,2,0,3,0,2,-9,2,1,0,0,5,7.9215078,7.9432673,0,3,0,0,0,-9,0,-982.05499,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,60,25,15,1,0,-9,1,6.3973002,6.3973002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,7,3,0,178,68737.203,0,0,539.30823 -7130,8794,16070,16072,-9,-9,1,1,1,35,1,1,1,0,2,-9,2,1,0,0,4,8.6172724,8.3119698,0,2,0,-9,8,0,-1,-19.677872,0,0,0,36,1,4,1,2,2,2019,1,2,7,0,55,44,15,1,0,1,0,9.7777824,9.7777824,0,0,0,0,0,0,0,0,1,1,0,7.0080709,0,0,0,37.16,39.959999,51.77,58.57,4,1,1,0,0,7,5,1,1227,291538.47,0,0,4139.7788 -7130,8794,16071,-9,16072,16070,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.3845,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,1227,291538.47,0,0,4139.7788 -7130,8794,16072,16070,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,0,4,8.4108734,8.5411291,0,2,0,-9,8,0,1,3.959317,0,0,1,35,2,4,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,14.502173,14.502173,0,0,0,0,0,0,0,0,1,1,0,6.6584797,0,0,0,51.77,58.57,37.16,39.959999,6,1,1,0,0,7,5,1,1227,291538.47,0,0,4139.7788 -7131,8795,16073,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-967.4035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.450001,19.48,-9,-9,7,1,1,0,0,9,1,0,464,37172.512,0,0,2820.6064 -7132,8796,16074,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,1,1,0,0,4,8.2875948,8.4841404,0,3,0,0,0,-9,0,-1159.9348,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,4,0,357,-94313.266,0,0,2564.4661 -7133,8797,16075,16076,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,2.7008648,2.82411,0,1,0,-9,8,-9,-1,-19.067503,-9,0,0,51,2,3,1,3,3,2019,1,1,15,3,30,0,15,1,0,1,0,.076130457,.076130457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.439999,44.52,46.669998,55.57,3,1,1,0,0,10,3,1,3760,44347.246,0,0,1526.1975 -7133,8797,16076,16075,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.0662508,7.9804511,0,1,0,-9,8,-9,1,-7.2191844,-9,0,0,50,2,2,1,-9,-9,2019,1,2,7,0,50,0,15,1,0,1,0,7.0921383,7.0921383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,55.57,36.439999,44.52,4,1,1,0,0,10,3,1,3760,44347.246,0,0,1526.1975 -7134,8798,16077,-9,-9,-9,2,1,1,37,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-930.01477,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.4520183,3,31.450001,40.139999,-9,-9,2,1,1,0,0,13,1,1,1217,0,0,0,770.59393 -7134,8799,16078,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1028.9478,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,34.786705,0,0,0,70.44043,297.61975,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,13,1,1,133,-65116.227,0,0,764.41766 -7135,8800,16079,16080,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,3,8.6473322,8.4755077,0,1,0,-9,1,-9,-1,104.63332,-9,1,1,30,2,5,1,2,1,2019,1,2,12,0,60,0,15,1,0,1,0,9.0945425,9.0945425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.759998,58.16,54.099998,59.110001,5,1,1,0,0,8,5,1,855.5,-14664.582,0,0,4331.1255 -7135,8800,16080,16079,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,5,8.8255892,8.8477058,0,1,0,-9,1,-9,1,-63.779324,-9,0,0,29,1,3,1,-9,-9,2019,1,1,9,0,45,0,15,1,0,1,0,20.84753,20.84753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,38.759998,58.16,5,1,1,0,0,8,5,1,855.5,-14664.582,0,0,4331.1255 -7136,8801,16081,16082,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,0,5,8.1415949,8.4357548,5.8842874,1,0,-9,36,0,1,80.310852,0,0,0,59,1,1,3,-9,-9,2019,2,1,6,0,40,38,15,1,0,4,0,9.2395401,9.2395401,0,0,0,0,0,0,0,14.5,1,1,0,0,5.8461041,9.589179,1,62.389999,56.709999,53.599998,27.65,6,1,1,0,0,2,4,0,584.5,2183975,0,0,3247.5239 -7136,8801,16082,16081,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,1,1,0,6.9075899,7.1972251,1,0,-9,36,0,-1,102.29514,0,0,0,60,1,5,1,3,2,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6256943,0,0,53.599998,27.65,62.389999,56.709999,3,1,1,0,0,2,4,0,584.5,2183975,0,0,3247.5239 -7137,8802,16083,16084,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,-5,23.438374,0,0,0,69,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.25361976,1,56.75,25.799999,43.5,27.4,6,1,1,0,0,11,3,1,651.5,638784.94,0,0,1783.2365 -7137,8802,16084,16083,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.9790254,7.7626677,1,0,-9,47,0,5,-1.8460029,0,0,0,64,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5822577,0,0,43.5,27.4,56.75,25.799999,5,1,1,0,0,11,3,1,651.5,638784.94,0,0,1783.2365 -7138,8803,16085,-9,-9,-9,1,1,0,99,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1007.2589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,9,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.610001,21.77,-9,-9,4,1,1,0,0,5,1,0,2771,436768.66,0,0,754.03833 -7139,8804,16086,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,6.8728399,7.1691346,3,0,0,0,-9,0,-1100.0133,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4999948,7.004961,0,0,47.09,58.02,-9,-9,7,1,1,0,0,9,2,1,2104,217276.17,0,0,883.26038 -7140,8805,16087,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1144.6715,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,51,49,-9,-9,5,1,1,0,0,11,1,0,403,-102400.55,0,0,-6.5454812 -7141,8806,16088,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1009.6375,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,1,2,1,0,841,15809.631,0,0,1839.2888 -7142,8807,16089,-9,16090,16091,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.4375,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,13,4,1,420,157934.67,0,0,2829.3904 -7142,8807,16090,16091,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,3,6.989213,7.2154989,0,2,0,-9,11,0,6,-81.909729,0,0,0,43,2,5,1,3,3,2019,1,2,12,2,18,17,15,1,0,1,0,10.431962,10.431962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.610001,41.709999,62.389999,56.709999,6,1,1,0,0,13,4,1,420,157934.67,0,0,2829.3904 -7142,8807,16091,16090,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,5,8.6296539,8.7517948,0,2,0,-9,11,0,-6,-92.737465,0,0,0,49,2,3,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,20.286564,20.286564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,41.610001,41.709999,6,1,1,0,0,13,4,1,420,157934.67,0,0,2829.3904 -7143,8808,16092,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,1,1,0,0,4,8.3913393,8.1843472,0,3,0,0,0,-9,0,-1024.4115,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,35,30,15,1,0,-9,0,13.147323,13.147323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,56.73,-9,-9,4,1,1,0,0,2,4,0,387,557158.25,0,0,2902.4749 -7144,8809,16093,-9,-9,-9,1,1,1,44,3,0,2,0,1,-9,2,1,0,0,3,8.8583555,9.0882435,0,4,0,-9,0,1,0,-1092.6876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,38,38,15,1,1,-9,0,19.805412,19.805412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.740002,61.790001,-9,-9,2,1,1,0,0,4,4,1,1103,270060.53,0,0,2811.7415 -7144,8809,16094,-9,-9,16093,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.8457,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,1103,270060.53,0,0,2811.7415 -7145,8810,16095,16096,-9,-9,1,1,1,58,1,0,0,0,3,-9,97,3,0,0,3,7.2437449,7.7183733,5.9769678,1,0,-9,8,0,3,11.886073,-9,0,0,55,2,4,1,-9,-9,2019,3,2,8,0,3,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4683428,6.3228989,0,0,46.669998,55.57,45.41,55.860001,6,1,1,0,0,11,4,0,1369,40657.141,0,0,2482.542 -7145,8810,16096,16095,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.2161455,8.3447781,0,1,0,-9,8,0,-3,17.096729,0,0,0,58,3,3,3,-9,3,2019,2,1,9,0,36,0,15,1,0,3,0,11.269431,11.269431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.41,55.860001,46.669998,55.57,7,1,1,0,0,11,4,0,1369,40657.141,0,0,2482.542 -7145,8811,16097,-9,16096,16095,3,1,1,33,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1016.4995,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.17,63.02,-9,-9,2,1,1,0,0,11,1,0,6869,0,0,0,1921.5173 -7145,8812,16098,-9,16096,16095,4,1,0,31,2,0,0,0,2,-9,2,1,0,0,4,8.0918341,8.0335407,0,3,0,0,0,-9,0,-976.48444,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,53,47,15,1,0,-9,1,8.4786549,8.4786549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,11,4,0,382,236702.31,0,0,1115.6949 -7146,8813,16099,16100,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.6565461,8.08074,0,1,0,-9,9,0,-4,-61.483952,0,0,0,58,2,2,3,1,3,2019,2,2,7,0,40,40,15,1,0,3,0,7.0892692,7.0892692,0,0,0,0,0,0,0,2,0,0,0,1.826167,0,7.8796654,1,57.66,45.080002,39.759998,39.889999,6,1,1,0,0,6,3,1,647,233792.84,0,0,922.76135 -7146,8813,16100,16099,-9,-9,2,1,1,58,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,9,0,4,-62.784081,0,0,0,54,2,3,1,3,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0369589,0,0,0,39.759998,39.889999,57.66,45.080002,3,1,1,0,0,6,3,1,647,233792.84,0,0,922.76135 -7147,8814,16101,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-936.17474,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.82,38.610001,-9,-9,7,1,1,1,0,6,1,0,452,254326.69,0,0,210.35226 -7148,8815,16102,16103,-9,-9,2,1,1,49,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,-18,0,0,0,0,67,3,1,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.174862,1,58.150002,52.91,24.93,19.950001,5,1,1,0,1,13,1,0,284,0,0,0,1883.7974 -7148,8815,16103,16102,-9,-9,1,1,0,67,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,18,0,0,0,0,49,3,4,3,3,3,2019,4,2,16,4,0,0,15,3,1,3,0,0,0,1,0,22.470297,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.950001,58.150002,52.91,4,1,1,0,1,13,1,0,284,0,0,0,1883.7974 -7149,8816,16104,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-947.76422,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1548109,0,0,0,21.85,30.66,-9,-9,6,1,1,0,0,10,1,1,3761,361535.69,0,0,273.04218 -7150,8817,16105,16106,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,0,4,9.7933216,9.6989717,0,2,0,-9,15,0,-1,0,0,0,0,56,1,4,1,2,2,2019,1,1,16,6,50,42,15,1,1,1,0,35.068687,35.068687,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,33.139999,64.629997,22.58,64.029999,6,1,1,0,0,6,5,1,395.75,2193493.5,0,0,12006.916 -7150,8817,16106,16105,-9,-9,1,1,0,56,1,0,2,0,1,-9,2,1,0,0,4,9.5427971,9.4067841,0,2,0,-9,35,0,1,0,0,0,0,55,1,4,1,2,1,2019,1,2,18,6,17,17,15,1,1,1,0,136.3533,136.3533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.58,64.029999,33.139999,64.629997,6,1,1,0,0,6,5,1,395.75,2193493.5,0,0,12006.916 -7150,8817,16107,-9,16106,16105,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.1788,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,395.75,2193493.5,0,0,12006.916 -7150,8817,16108,-9,16106,16105,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.2114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,5,1,395.75,2193493.5,0,0,12006.916 -7151,8818,16109,16110,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.7081437,8.3787203,1,0,-9,55,0,-2,-65.204094,0,0,0,79,2,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7243919,7.9239421,0,0,46.610001,41.799999,55.939999,47.09,6,1,1,0,0,8,3,1,306.5,703376.19,0,0,3835.2188 -7151,8818,16110,16109,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,2,119.44107,0,0,0,77,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2030907,0,0,0,55.939999,47.09,46.610001,41.799999,6,1,1,0,0,8,3,1,306.5,703376.19,0,0,3835.2188 -7152,8819,16111,-9,16112,16113,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.476,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,7,4,0,904.66669,7457.7866,0,0,2973.7075 -7152,8819,16112,16113,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,0,3,8.240159,8.327343,0,2,0,-9,4,0,9,44.937355,0,0,1,29,3,5,1,2,2,2019,1,3,6,0,37,38,15,1,0,1,0,12.58914,12.58914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.139999,53.419998,40.73,61.290001,2,2,3,0,0,7,4,0,904.66669,7457.7866,0,0,2973.7075 -7152,8819,16113,16112,-9,-9,3,1,1,29,1,1,2,0,3,-9,2,1,0,0,5,8.1859961,7.7805848,0,2,0,-9,4,0,0,-154.75311,0,1,0,38,1,3,1,-9,-9,2019,1,1,6,0,46,54,15,1,0,1,0,9.5823851,9.5823851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,61.290001,48.139999,53.419998,2,1,1,0,0,7,4,0,904.66669,7457.7866,0,0,2973.7075 -7153,8820,16114,-9,16117,16116,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.3703,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,3,1,813.5,237154.06,0,0,1841.0685 -7153,8820,16115,-9,16117,16116,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1107.7733,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,9,3,1,813.5,237154.06,0,0,1841.0685 -7153,8820,16116,16117,-9,-9,1,1,1,49,1,1,2,0,3,-9,1,1,0,0,5,8.2397223,8.1124716,0,2,0,-9,10,0,9,-95.115051,0,0,0,40,1,4,3,2,2,2019,2,2,8,0,50,55,15,1,0,3,0,6.5026083,6.5026083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,47.66,55.130001,2,1,1,0,0,9,3,1,813.5,237154.06,0,0,1841.0685 -7153,8820,16117,16116,-9,-9,2,1,0,40,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,0,35.400848,0,0,1,49,3,5,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,55.130001,57.060001,57.759998,5,2,3,0,0,9,3,1,813.5,237154.06,0,0,1841.0685 -7154,8821,16118,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,6,3,0,0,4,0,6.0802636,5.967104,4,0,0,0,-9,0,-1005.4962,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5888934,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,2,0,1228,-22908.113,0,0,-93.167953 -7154,8821,16119,-9,16118,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1010.216,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,5,2,0,1228,-22908.113,0,0,-93.167953 -7155,8822,16120,-9,-9,-9,1,1,0,75,2,0,0,0,2,-9,4,3,0,0,3,6.2542114,7.3040056,7.3111825,3,0,0,0,-9,0,-1016.8337,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2165284,0,0,51,46,-9,-9,5,3,4,0,0,8,3,0,876,594842.88,0,0,2217.7354 -7155,8823,16121,-9,-9,-9,2,1,0,68,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-883.49738,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,-9,-9,5,3,4,0,0,8,1,0,848,123332.66,0,0,1138.9839 -7156,8824,16122,16123,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,1,-50.844372,0,0,0,66,3,5,3,2,2,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9685211,0,0,0,42.509998,45.91,48.419998,60.529999,6,1,1,0,0,11,4,1,402,1777162,0,0,3972.2012 -7156,8824,16123,16122,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,5,8.4921751,8.6423759,0,1,0,-9,47,0,-1,45.883251,0,0,0,67,2,2,3,3,2,2019,4,1,12,1,10,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0025816,0,0,0,48.419998,60.529999,42.509998,45.91,6,1,1,0,0,11,4,1,402,1777162,0,0,3972.2012 -7157,8825,16124,16125,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.2075653,7.03581,1,0,-9,7,0,0,-77.263718,0,0,0,67,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7841315,7.1637025,0,0,57.16,56.150002,60.299999,46.580002,7,1,1,0,0,9,2,1,236,491393.13,0,0,2380.395 -7157,8825,16125,16124,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,0,6.5173993,6.5049057,1,0,-9,7,0,0,-87.835663,0,0,0,67,2,4,3,3,3,2019,2,1,8,0,0,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1476579,6.7158408,0,0,60.299999,46.580002,57.16,56.150002,7,1,1,0,0,9,2,1,236,491393.13,0,0,2380.395 -7157,8826,16126,-9,-9,-9,3,1,1,42,2,0,0,0,2,-9,2,1,0,0,4,8.3287144,8.2975254,0,3,0,0,0,-9,0,-1040.5133,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,35,30,15,1,0,-9,0,15.585196,15.585196,0,0,0,0,0,0,0,0,1,1,0,4.8662786,0,0,0,51,56,-9,-9,6,1,1,0,0,9,4,1,2562,517622.97,0,0,2000.9188 -7158,8827,16127,16128,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,5,0,8.3739862,8.6260223,1,0,-9,36,0,6,-10.753774,0,0,0,64,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5672731,8.8019762,0,0,57.060001,57.759998,53.68,45.470001,6,1,1,0,0,7,4,1,753.5,1392819,0,0,3874.9473 -7158,8827,16128,16127,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,4.1027932,6.3692656,5.8985209,1,0,-9,36,0,-6,55.302975,0,0,0,70,1,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3658259,5.8932676,0,0,53.68,45.470001,57.060001,57.759998,6,1,1,0,0,7,4,1,753.5,1392819,0,0,3874.9473 -7159,8828,16129,16130,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.4449248,7.2826672,0,1,0,-9,33,0,-8,.64651936,0,0,0,62,2,2,1,3,3,2019,1,1,9,0,24,24,15,1,0,1,0,7.8303895,7.8303895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.57,49.689999,6,1,1,0,0,12,5,1,628.5,381829.13,0,0,2588.9717 -7159,8828,16130,16129,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,8.6012793,8.3005533,5.4540119,1,0,-9,33,0,8,200.1608,0,0,0,54,2,3,1,3,3,2019,1,2,8,0,32,38,15,1,0,1,0,21.267841,21.267841,0,0,0,0,0,0,0,0,0,0,0,4.5914464,5.575902,0,0,57.57,49.689999,57.330002,53.459999,6,1,1,0,0,12,5,1,628.5,381829.13,0,0,2588.9717 -7160,8829,16131,16132,-9,-9,2,1,1,34,1,0,0,0,2,-9,1,1,0,0,5,7.8858962,8.1508064,0,1,0,-9,5,0,4,198.21562,0,0,0,30,1,4,1,-9,-9,2019,1,1,6,0,40,42,15,1,0,1,0,9.4989824,9.4989824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,45.91,59.889999,6,1,1,0,0,12,5,0,957,542323.75,0,0,4050.7271 -7160,8829,16132,16131,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,9.0606174,9.0052242,0,1,0,-9,5,0,-4,80.511406,0,0,1,34,2,5,1,2,2,2019,1,2,12,0,50,92,15,1,0,1,0,17.487026,17.487026,0,0,0,0,0,0,0,0,0,0,0,.42682263,0,0,0,45.91,59.889999,57.060001,57.759998,6,1,1,0,0,12,5,0,957,542323.75,0,0,4050.7271 -7161,8830,16133,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,7.1292577,6.6873512,3,0,0,0,-9,0,-953.86633,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8337345,7.1129789,0,0,46.630001,47.57,-9,-9,4,1,1,0,0,13,2,1,3933,240305.17,0,0,-35.000404 -7162,8831,16134,-9,-9,-9,1,1,0,59,3,1,1,0,2,-9,2,1,0,0,3,7.8170285,7.6095614,0,4,0,0,0,-9,0,-935.2384,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,20,15,1,0,-9,0,7.3446116,7.3446116,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.647312,3,48.049999,53.560001,-9,-9,4,1,1,0,1,2,3,0,675,-43756.262,0,0,1449.3234 -7162,8832,16135,-9,16134,-9,2,1,0,30,2,1,1,0,2,-9,6,3,0,1,2,0,5.7824378,5.8859558,3,0,0,0,-9,0,-1165.5281,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,35,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.410543,0,0,0,.60000002,63.900002,-9,-9,1,1,1,0,1,2,2,0,4578.5,38344.629,0,0,18.814728 -7162,8832,16136,-9,16135,-9,4,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-983.70355,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,4578.5,38344.629,0,0,18.814728 -7162,8833,16137,-9,16134,-9,3,1,0,25,2,1,1,0,1,-9,2,1,0,0,2,7.4992027,7.2360902,0,3,0,0,0,-9,0,-1005.5615,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,40,42,15,1,1,-9,1,4.8324509,4.8324509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.51,44.299999,-9,-9,3,1,1,0,0,2,3,0,522,-32806.559,0,0,1198.5737 -7163,8834,16138,-9,16141,16139,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.0063,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,510.25,1213969,0,0,5844.0283 -7163,8834,16139,16141,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,0,4,8.5195847,8.5635548,0,2,0,-9,16,0,6,181.57452,0,0,0,41,1,4,1,1,2,2019,1,1,12,1,50,45,15,1,0,1,0,9.3257847,9.3257847,0,0,0,0,0,0,0,0,1,1,0,7.0198379,0,0,0,51.490002,57.57,54.200001,57.490002,6,1,1,0,0,9,5,1,510.25,1213969,0,0,5844.0283 -7163,8834,16140,-9,16141,16139,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.07135,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,510.25,1213969,0,0,5844.0283 -7163,8834,16141,16139,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,8.6267014,8.532526,0,2,0,-9,17,0,-6,36.502068,0,0,1,47,2,4,1,2,2,2019,1,2,6,0,50,45,15,1,0,1,0,13.967522,13.967522,0,0,0,0,0,0,0,0,1,1,0,7.3094387,0,0,0,54.200001,57.490002,51.490002,57.57,6,1,1,0,0,9,5,1,510.25,1213969,0,0,5844.0283 -7164,8835,16142,16146,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,0,3,7.6030812,7.4480882,0,2,0,-9,24,0,-1,139.77228,0,0,1,45,1,4,1,3,3,2019,1,2,21,9,55,25,15,1,1,1,0,3.9318151,3.9318151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.4,49.490002,48.810001,59.91,3,1,1,0,1,6,4,1,1253,803576.13,0,0,3995.1772 -7164,8835,16143,-9,16142,16146,3,1,1,17,2,0,3,1,2,0,7,2,0,0,3,4.2658658,3.760603,0,2,0,0,0,-9,0,-1065.7836,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.75,64.959999,-9,-9,4,1,1,0,0,6,4,1,1253,803576.13,0,0,3995.1772 -7164,8835,16144,-9,16142,16146,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-848.8252,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,4,1,1253,803576.13,0,0,3995.1772 -7164,8835,16145,-9,16142,16146,5,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.5763,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,1253,803576.13,0,0,3995.1772 -7164,8835,16146,16142,-9,-9,2,1,1,45,1,0,3,0,1,-9,2,1,0,0,4,8.6330271,8.9269094,0,2,0,-9,24,0,1,10.306787,0,0,0,44,1,3,1,2,1,2019,1,1,8,1,50,50,15,1,0,1,0,16.684324,16.684324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,30.4,49.490002,4,1,1,0,1,6,4,1,1253,803576.13,0,0,3995.1772 -7165,8836,16147,16148,-9,-9,2,1,0,58,1,0,1,0,3,-9,2,1,0,0,4,7.4096699,7.5655065,3.9820132,2,0,-9,23,0,1,-99.795654,0,0,0,57,1,4,1,3,3,2019,1,1,8,0,10,4,15,1,0,1,0,20.854639,20.854639,0,0,0,0,0,0,0,0,0,0,0,4.9871244,4.4906988,0,0,57.16,56.150002,58.150002,52.91,7,3,4,0,0,9,5,1,697,992162,0,0,6827.8848 -7165,8836,16148,16147,-9,-9,1,1,1,57,1,0,1,0,1,-9,2,1,0,0,4,8.9664774,9.0919752,7.4222736,2,0,-9,24,0,-1,-23.583164,0,0,0,58,3,4,1,2,3,2019,1,2,7,0,40,40,15,1,0,1,0,21.151731,21.151731,0,0,0,0,0,0,0,0,0,0,0,7.6329064,0,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,9,5,1,697,992162,0,0,6827.8848 -7165,8836,16149,-9,16147,16148,4,1,0,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1091.5011,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.053242944,0,0,0,48.709999,61.529999,-9,-9,6,4,2,0,0,9,5,1,697,992162,0,0,6827.8848 -7165,8837,16150,-9,16147,16148,3,1,0,18,2,0,1,0,2,1,2,1,0,0,3,6.2629089,6.3606462,0,3,0,0,0,-9,0,-984.20764,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,11,1,8,0,15,1,0,-9,1,6.2461696,6.2461696,0,0,0,0,0,0,0,0,0,0,0,.34179965,0,0,0,39.110001,52.259998,-9,-9,4,4,2,0,0,9,2,1,1345,-110095.59,0,0,-103.00764 -7166,8838,16151,-9,16152,16153,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.457,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,4,1,526.75,139381.83,0,0,3502.9109 -7166,8838,16152,16153,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,1,8.7949638,8.6453838,0,2,0,-9,12,0,-3,-6.942914,0,0,1,39,2,3,1,2,2,2019,1,2,21,9,60,70,15,1,1,1,0,10.47002,10.47002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.639999,49.41,39.369999,58.810001,3,1,1,0,0,1,4,1,526.75,139381.83,0,0,3502.9109 -7166,8838,16153,16152,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,3,8.157671,8.2078667,0,2,0,-9,12,0,3,-16.827835,0,0,0,36,1,1,1,3,-9,2019,1,1,10,2,37,38,15,1,0,1,0,11.595325,11.595325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.369999,58.810001,28.639999,49.41,6,1,1,0,0,1,4,1,526.75,139381.83,0,0,3502.9109 -7166,8838,16154,-9,16152,16153,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.657,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,4,1,526.75,139381.83,0,0,3502.9109 -7167,8839,16155,-9,-9,-9,1,1,0,38,3,0,0,0,1,-9,1,1,0,0,3,7.4783297,7.5556717,0,3,0,0,0,-9,0,-1007.3224,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,5,2,15,1,0,-9,0,47.694221,47.694221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.209999,54.02,-9,-9,5,2,3,0,0,9,3,0,205,-255432.41,0,0,2806.6057 -7168,8840,16156,16157,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,7.2740993,7.5529528,0,1,0,-9,38,0,4,29.832897,0,0,0,53,2,2,3,3,3,2019,2,2,9,0,40,45,15,1,0,3,0,5.0413923,5.0413923,0,0,0,0,0,0,0,0,1,1,0,.032250986,0,0,1,54,54,32.23,32.619999,6,1,1,0,0,9,2,0,917,317817.72,0,0,2032.5277 -7168,8840,16157,16156,-9,-9,2,1,0,53,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,38,0,-4,71.742126,0,0,0,57,2,4,1,3,3,2019,3,1,24,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.23,32.619999,54,54,5,1,1,0,0,9,2,0,917,317817.72,0,0,2032.5277 -7169,8841,16158,-9,16160,16161,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1020.6807,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,6,0,0,12,3,1,481,234591.53,0,0,2584.0962 -7169,8841,16159,-9,16160,16161,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.4726,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,1,481,234591.53,0,0,2584.0962 -7169,8841,16160,16161,-9,-9,1,1,0,53,1,0,2,0,2,-9,1,1,0,0,4,6.9933624,7.3474441,0,2,0,-9,3,0,-5,-46.620716,0,0,0,58,2,3,3,3,3,2019,2,2,9,0,40,40,15,1,0,4,0,5.0563655,5.0563655,0,0,0,0,0,0,0,0,1,1,0,2.950057,0,0,0,51.830002,57.200001,54.369999,54.799999,6,1,1,0,0,12,3,1,481,234591.53,0,0,2584.0962 -7169,8841,16161,16160,-9,-9,2,1,1,58,1,0,2,0,2,-9,4,3,0,0,3,0,8.0049009,7.9076571,2,0,-9,3,0,5,-122.64041,0,0,0,53,2,4,1,3,3,2019,3,1,11,0,0,60,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1651783,0,0,54.369999,54.799999,51.830002,57.200001,6,1,1,0,0,12,3,1,481,234591.53,0,0,2584.0962 -7170,8842,16162,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-921.72968,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.869999,34.540001,-9,-9,2,1,1,0,0,5,1,0,177,287536.03,0,0,1243.6615 -7171,8843,16163,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-976.45215,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,1,0,0,7.3609376,0,32.986004,0,0,1,1,0,1.6999213,0,0,0,56.189999,5.98,-9,-9,7,1,1,0,0,5,1,0,144,-19939.047,0,0,1718.3616 -7172,8844,16164,16165,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,8.7194014,8.5610819,1,0,-9,43,0,4,173.21484,0,0,0,62,1,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6628356,9.219985,0,0,58.330002,47.360001,54.200001,57.490002,6,1,1,0,0,10,5,1,410,1588627,0,0,4830.3232 -7172,8844,16165,16164,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.2054534,7.0373015,1,0,-9,43,0,-4,-116.17656,0,0,0,66,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8768017,7.029232,0,0,54.200001,57.490002,58.330002,47.360001,6,1,1,0,0,10,5,1,410,1588627,0,0,4830.3232 -7173,8845,16166,16167,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,1,1,4.9764333,4.9046569,0,1,0,-9,6,0,-5,-160.71471,0,0,0,63,3,1,3,3,3,2019,2,1,13,4,2,0,15,1,1,4,0,9.4076595,9.4076595,0,0,0,0,0,0,0,120,1,1,0,0,0,117.00914,2,53.549999,18.620001,43.360001,21.83,5,1,1,0,0,5,1,0,632,-19123.705,0,0,2046.9821 -7173,8845,16167,16166,-9,-9,1,1,1,63,1,0,0,0,3,-9,4,3,0,1,1,0,3.7598011,3.4085226,1,0,-9,6,0,5,83.426567,0,0,0,58,3,1,1,3,3,2019,3,2,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,3.7539823,119.45499,2,43.360001,21.83,53.549999,18.620001,4,1,1,0,1,5,1,0,632,-19123.705,0,0,2046.9821 -7173,8846,16168,-9,16166,16167,3,1,0,27,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-886.5694,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,5,1,0,698,31533.074,0,0,564.79779 -7174,8847,16169,-9,16171,16170,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1062.3162,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,3,1,1716.3334,580580.94,0,0,3045.9788 -7174,8847,16170,16171,-9,-9,1,1,1,48,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,2,0,7,44.288738,0,0,0,41,2,3,1,2,1,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.939999,20.709999,44.57,52.34,3,1,1,0,0,12,3,1,1716.3334,580580.94,0,0,3045.9788 -7174,8847,16171,16170,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,3,7.9033265,7.7665486,0,2,0,-9,2,0,-7,180.90224,0,0,1,48,2,1,3,-9,-9,2019,2,1,11,0,37,44,15,1,0,3,0,10.974695,10.974695,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.009022,2,44.57,52.34,34.939999,20.709999,5,1,1,0,0,12,3,1,1716.3334,580580.94,0,0,3045.9788 -7175,8848,16172,-9,-9,-9,1,1,0,78,2,0,0,0,2,-9,4,3,0,0,5,0,7.1517105,7.0004482,3,0,0,0,-9,0,-1097.0055,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3891635,7.1636138,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,11,2,1,1345,384822.97,0,0,773.44037 -7176,8849,16173,16175,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,3,7.2280002,7.4550276,0,2,0,-9,7,0,-2,-108.71598,0,0,1,46,2,3,1,2,1,2019,1,1,8,0,30,0,15,1,0,1,0,7.583324,7.583324,0,0,0,0,0,0,0,0,1,1,0,.86441821,0,0,0,60.299999,46.580002,40.610001,50.23,6,2,3,0,0,4,5,1,398,920355.5,0,0,3903.7585 -7176,8849,16174,-9,16173,16175,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.62085,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,4,5,1,398,920355.5,0,0,3903.7585 -7176,8849,16175,16173,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,9.7209501,9.1879711,0,2,0,-9,7,0,2,24.361353,0,0,0,44,1,3,1,2,2,2019,1,2,14,4,85,45,15,1,1,1,0,14.144308,14.144308,0,0,0,0,0,0,0,0,1,1,0,4.0438275,0,0,0,40.610001,50.23,60.299999,46.580002,3,1,1,0,0,4,5,1,398,920355.5,0,0,3903.7585 -7177,8850,16176,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,5.1732788,5.0870075,3,0,0,0,-9,0,-1086.889,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.7119744,0,0,0,0,1,1,0,2.7771251,5.1140609,0,0,44.02,52.669998,-9,-9,5,1,1,0,0,5,2,1,457,369606.13,0,0,467.51794 -7178,8851,16177,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,0,3,1.2449778,8.1793165,7.7189908,3,0,0,0,-9,0,-1051.1211,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.0380368,7.7838082,0,3,58.23,35.220001,-9,-9,6,1,1,0,0,11,4,1,249,793281,0,0,1841.1117 -7179,8852,16178,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,9.0852833,9.1454897,0,3,0,-9,0,-9,0,-1023.4272,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,7,40,0,15,1,1,-9,0,21.031273,21.031273,0,0,0,0,0,0,0,0,0,0,0,2.7752435,0,0,0,37.869999,61.029999,-9,-9,5,2,3,0,0,8,5,1,586,459969.84,0,0,3516.0339 -7180,8853,16179,16180,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.7505369,8.3115053,0,1,0,-9,4,0,-1,129.25092,0,1,1,28,1,3,1,2,1,2019,1,2,9,0,45,50,15,1,0,1,0,13.45591,13.45591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.389999,59.18,39.990002,55.830002,6,1,1,0,0,6,5,1,352.5,267212.47,0,0,2235.5161 -7180,8853,16180,16179,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,3,8.1385174,7.7803545,0,1,0,-9,4,0,1,-32.889538,0,1,0,27,1,5,1,-9,-9,2019,1,1,8,0,42,42,15,1,0,1,0,10.121411,10.121411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.990002,55.830002,51.389999,59.18,5,1,1,0,0,6,5,1,352.5,267212.47,0,0,2235.5161 -7181,8854,16181,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,2,7.3221245,7.9291177,0,3,0,0,0,-9,0,-1023.5533,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,32,32,15,1,0,-9,0,9.0097046,9.0097046,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.912222,3,49.860001,35.450001,-9,-9,5,1,1,0,0,2,3,0,176,410179.56,0,0,1360.4456 -7182,8855,16182,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,1,3,0,7.0010676,6.9300761,3,0,0,0,-9,0,-1011.527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9281368,0,0,38.16,44.66,-9,-9,5,1,1,0,0,13,2,1,836,-56835.363,0,0,1458.1976 -7183,8856,16183,16184,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,1,4,0,0,0,1,0,-9,4,0,1,0,0,0,0,60,3,2,3,-9,-9,2019,2,2,11,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.93327,3,54,53,40.830002,27.59,5,2,3,0,0,6,1,1,2496,-37757.746,0,0,171.73796 -7183,8856,16184,16183,-9,-9,2,1,0,60,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,4,0,-1,0,0,0,0,61,3,4,1,-9,-9,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,17.984686,3,40.830002,27.59,54,53,5,2,3,0,0,6,1,1,2496,-37757.746,0,0,171.73796 -7183,8857,16185,-9,16184,16183,3,1,1,23,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-980.42383,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6426947,0,0,0,49,58,-9,-9,5,2,3,0,0,6,1,1,1261,0,0,0,287.26819 -7183,8858,16186,-9,16184,16183,4,1,1,28,3,0,0,0,1,-9,1,1,0,0,5,8.7450409,8.5649586,0,3,0,0,0,-9,0,-1072.1776,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,40,37,15,1,0,-9,1,15.931475,15.931475,0,0,0,0,0,0,0,2,1,1,0,2.5938578,0,0,3,57.060001,57.759998,-9,-9,6,2,3,0,0,6,5,1,228,-101552.68,0,0,1919.6177 -7184,8859,16187,-9,16190,16188,6,1,1,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-944.62549,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,8,3,1,779.75,1538479.4,0,0,2293.1538 -7184,8859,16188,16190,-9,-9,1,1,1,47,1,0,2,0,3,-9,2,1,0,0,4,8.4420815,8.3563471,0,2,0,-9,25,0,6,165.16885,0,0,0,41,2,4,3,3,3,2019,2,2,9,1,39,48,15,1,0,3,0,15.821201,15.821201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,55,6,2,3,0,0,8,3,1,779.75,1538479.4,0,0,2293.1538 -7184,8859,16189,-9,16190,16188,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.5464,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,3,1,779.75,1538479.4,0,0,2293.1538 -7184,8859,16190,16188,-9,-9,2,1,0,41,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-6,26.514856,0,0,1,47,3,4,1,-9,-9,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,5,2,3,0,0,8,3,1,779.75,1538479.4,0,0,2293.1538 -7184,8860,16191,-9,16190,16188,3,1,0,22,2,0,2,0,1,-9,2,1,0,0,4,7.9909353,7.7560854,0,3,0,0,0,-9,0,-817.56799,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,38,53,15,1,0,-9,1,10.312634,10.312634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,4,1,440,-112541.34,0,0,1549.5879 -7184,8861,16192,-9,16190,16188,5,1,1,18,2,0,2,1,3,0,7,2,0,0,4,6.4842701,6.545114,0,3,0,0,0,-9,0,-986.13239,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,1,704,209915.98,0,0,321.47296 -7185,8862,16193,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,1,3,0,7.0092645,7.0321712,3,0,0,0,-9,0,-907.68726,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.091146,0,0,59.75,42.779999,-9,-9,6,1,1,0,0,13,2,1,119,320990.13,0,0,1554.4146 -7186,8863,16194,16195,-9,-9,2,1,0,36,1,0,0,0,1,-9,1,1,0,0,4,7.593523,7.4377174,0,1,0,-9,3,0,1,65.424355,0,0,1,35,1,3,1,-9,-9,2019,1,1,12,0,30,0,15,1,0,1,0,6.7413197,6.7413197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.25,49.459999,30.75,61.560001,6,1,1,0,0,8,5,1,1300,53369.25,0,0,4008.1604 -7186,8863,16195,16194,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,3,9.0789328,9.1818781,0,1,0,-9,3,0,-1,127.04184,0,0,0,36,1,4,1,1,1,2019,1,2,11,0,51,54,15,1,0,1,0,24.971878,24.971878,0,0,0,0,0,0,0,0,0,0,0,2.9936502,0,0,0,30.75,61.560001,45.25,49.459999,5,1,1,0,0,8,5,1,1300,53369.25,0,0,4008.1604 -7187,8864,16196,16197,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,-2,46.324993,0,0,0,81,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.279999,45.639999,50,35,7,1,1,0,0,7,2,0,1290.5,891872.63,0,0,1285.469 -7187,8864,16197,16196,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,2,0,5.7847447,5.6587763,1,0,-9,61,0,2,-60.83559,0,0,0,79,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,12.780693,0,0,0,0,0,1,1,0,0,6.0488319,0,0,50,35,62.279999,45.639999,7,1,1,0,0,7,2,0,1290.5,891872.63,0,0,1285.469 -7188,8865,16198,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,1,1,0,0,3,5.890398,5.5305252,0,3,0,0,0,-9,0,-986.34381,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,2,0,0,45,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.8817592,0,9.2478895,3,53.57,38.93,-9,-9,6,1,1,0,0,9,2,1,654,500791.34,0,0,1136.2371 -7189,8866,16199,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,2,1,0,0,2,8.4466152,8.8141146,6.9998875,3,0,0,0,-9,0,-979.87134,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,24,40,15,1,0,-9,0,15.724803,15.724803,0,0,0,0,0,0,0,0,1,1,0,0,7.507462,0,0,51.799999,46.849998,-9,-9,6,1,1,0,0,9,5,1,1406,366659.88,0,0,3870.2998 -7190,8867,16200,16201,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,0,7.9272771,7.7391539,1,0,-9,10,0,-4,183.51631,0,0,0,68,1,2,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8492453,8.074873,0,0,60.869999,44.959999,60.290001,38.880001,6,1,1,0,0,13,4,1,876,1924516,0,0,3691.2026 -7190,8867,16201,16200,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,2,0,7.7700801,7.954339,1,0,-9,10,0,4,36.55732,0,0,0,64,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.55371666,7.5165558,0,0,60.290001,38.880001,60.869999,44.959999,6,1,1,0,0,13,4,1,876,1924516,0,0,3691.2026 -7191,8868,16202,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-996.44495,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7200979,0,0,0,54,44,-9,-9,6,1,1,0,0,6,1,1,1402,33416.234,0,0,1588.3998 -7192,8869,16203,16204,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,5,8.2488165,8.3039827,0,1,0,-9,26,0,2,-44.531853,0,0,0,46,1,2,1,3,3,2019,1,2,7,0,46,40,15,1,0,1,0,10.743423,10.743423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.630001,56.139999,21.16,41.990002,3,1,1,0,1,13,4,1,1718,-26632.84,0,0,1808.7451 -7192,8869,16204,16203,-9,-9,2,1,0,46,1,0,0,0,1,-9,1,1,0,0,2,7.1716523,7.3700943,0,1,0,-9,26,0,-2,52.387478,0,0,0,48,2,5,1,2,2,2019,1,1,16,4,7,8,15,1,1,1,0,26.872511,26.872511,0,0,0,0,0,0,0,42,1,1,0,0,0,42.189423,3,21.16,41.990002,57.630001,56.139999,4,1,1,0,0,13,4,1,1718,-26632.84,0,0,1808.7451 -7192,8870,16205,-9,16204,16203,3,1,0,20,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-862.82495,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,23,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.08,67.589996,-9,-9,3,1,1,0,1,13,1,1,3999,-38334.512,0,0,804.00964 -7192,8871,16206,-9,16204,16203,4,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.6271806,7.8076901,0,3,0,0,0,-9,0,-1166.9133,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,3,1,36,15,15,1,0,-9,1,6.4848957,6.4848957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,13,3,1,309,-129149.22,0,0,1935.1927 -7193,8872,16207,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,4,6.8479466,7.0084305,0,3,0,0,0,-9,0,-1015.7728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,20,29,15,1,1,-9,0,5.3438888,5.3438888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.339996,-9,-9,6,1,1,0,0,13,2,1,746,232629.86,0,0,567.29053 -7194,8873,16208,16209,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,8.1904125,8.1162395,1,0,-9,44,0,-1,79.29493,0,0,0,67,2,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0530262,11.61778,3,54.200001,57.490002,57.060001,57.759998,7,1,1,0,0,5,3,1,1393,1332876.9,0,0,2891.3752 -7194,8873,16209,16208,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,6.4239101,6.4355631,1,0,-9,44,0,1,-69.319359,0,0,0,66,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4042778,4.7058644,3,57.060001,57.759998,54.200001,57.490002,6,1,1,0,0,5,3,1,1393,1332876.9,0,0,2891.3752 -7195,8874,16210,16211,-9,-9,1,1,0,60,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,-8,-85.738861,0,0,0,68,3,1,3,3,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.044491,1,37.02,37.369999,63.630001,12.02,4,1,1,0,0,10,2,1,851,680558.75,0,0,1813.4431 -7195,8874,16211,16210,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,1,0,7.5863447,7.6900272,1,0,-9,45,0,8,72.818687,0,0,0,60,3,2,3,3,3,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,1,0,25.488157,0,0,0,0,0,1,1,0,0,7.7536907,0,0,63.630001,12.02,37.02,37.369999,4,1,1,0,0,10,2,1,851,680558.75,0,0,1813.4431 -7196,8875,16212,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,6.8837857,6.5793881,3,0,0,0,-9,0,-853.13232,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9854488,0,0,52,45,-9,-9,6,1,1,0,0,2,2,1,819,413286.25,0,0,2303.249 -7197,8876,16213,16214,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,60,0,-3,22.951777,0,0,0,84,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,6.9521537,0,0,1,1,0,1.0853821,0,0,0,56.009998,22.23,52.349998,44.66,5,1,1,0,0,9,2,0,435.5,284228.91,0,0,834.67987 -7197,8876,16214,16213,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,3,0,6.1894059,5.893465,1,0,-9,63,0,3,14.829684,0,0,0,81,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,3.8559437,0,0,1,1,0,0,6.2696691,0,0,52.349998,44.66,56.009998,22.23,6,1,1,0,0,9,2,0,435.5,284228.91,0,0,834.67987 -7198,8877,16215,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,2,8.3524256,8.165266,0,3,0,-9,0,-9,0,-943.16241,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,8,36,0,15,1,1,-9,0,12.52934,12.52934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.610001,46.459999,-9,-9,3,1,1,0,0,8,4,0,933,211345.52,0,0,1594.2145 -7199,8878,16216,-9,16217,16218,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-937.16064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,5,0,916.66669,184315.02,0,0,2961.8186 -7199,8878,16217,16218,-9,-9,1,1,0,38,1,1,1,0,1,-9,5,1,0,0,4,8.0099678,8.1608,0,2,0,-9,6,0,6,-146.84261,0,0,1,32,1,4,1,2,2,2019,1,2,17,4,40,40,15,1,1,1,0,10.005323,10.005323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,52.759998,29.49,56.650002,7,1,1,0,0,10,5,0,916.66669,184315.02,0,0,2961.8186 -7199,8878,16218,16217,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,0,4,9.096385,8.806901,0,2,0,-9,6,0,-6,-5.5372262,0,0,0,38,1,4,1,-9,-9,2019,1,1,12,4,43,40,15,1,1,1,0,20.300579,20.300579,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.49,56.650002,41.43,52.759998,5,1,1,0,0,10,5,0,916.66669,184315.02,0,0,2961.8186 -7200,8879,16219,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,3,0,3.2592134,3.2314818,3,0,0,0,-9,0,-923.23236,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,2.3096774,4.2335625,0,0,120,1,1,0,0,3.6214938,118.46162,3,52,45,-9,-9,6,1,1,0,0,10,1,1,691,111321.15,0,0,1458.1111 -7200,8880,16220,-9,16219,-9,2,1,1,57,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-878.14111,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,10,1,1,415,116164.86,0,0,1030.9468 -7201,8881,16221,16223,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,7.6919785,7.7530308,0,2,0,-9,7,0,-8,178.35532,0,0,0,53,2,1,1,3,3,2019,1,1,13,2,28,28,15,1,0,1,0,7.8753614,7.8753614,0,0,0,0,0,0,0,0,1,1,0,6.7808657,0,0,0,67.940002,25.110001,15.04,35.59,3,1,1,0,0,13,3,1,1181.25,276878.22,0,0,3518.4072 -7201,8881,16222,-9,16221,16223,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.4838,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,1181.25,276878.22,0,0,3518.4072 -7201,8881,16223,16221,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,0,1,8.4759483,8.1512547,0,2,0,-9,7,0,8,-103.92327,0,0,0,45,2,4,1,-9,-9,2019,1,2,33,11,40,40,15,1,1,1,0,9.4592066,9.4592066,0,0,0,0,0,0,0,0,1,1,0,6.9385271,0,0,0,15.04,35.59,67.940002,25.110001,3,1,1,0,1,13,3,1,1181.25,276878.22,0,0,3518.4072 -7201,8881,16224,-9,16221,16223,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.7093,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,1181.25,276878.22,0,0,3518.4072 -7202,8882,16225,-9,-9,-9,1,1,1,37,3,0,0,0,3,-9,2,1,0,0,2,7.1593227,7.3248882,0,3,0,0,0,-9,0,-1036.5709,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,20,16,15,1,0,-9,0,8.929038,8.929038,0,0,0,0,0,0,0,2,1,1,0,0,0,9.348649,3,44.57,42.130001,-9,-9,5,2,3,0,0,8,2,0,263,8376.7158,0,0,259.64438 -7203,8883,16226,-9,-9,-9,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.208601,8.275342,0,3,0,0,0,-9,0,-1030.5867,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,46,44,15,1,0,-9,1,10.715228,10.715228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,8,4,1,311,-39357.051,0,0,1529.8767 -7204,8884,16227,-9,-9,-9,1,1,0,31,2,1,3,0,2,-9,6,3,0,1,4,0,0,0,4,0,-9,0,-9,0,-985.88153,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.785423,3,35.860001,64.550003,-9,-9,6,1,1,0,0,2,1,0,847.66669,13718.795,0,0,1472.1851 -7204,8884,16228,-9,16227,-9,4,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-947.62732,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,847.66669,13718.795,0,0,1472.1851 -7204,8884,16229,-9,16227,-9,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1070.6334,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,847.66669,13718.795,0,0,1472.1851 -7205,8885,16230,16231,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,7.211216,7.8708363,7.4407978,1,0,-9,52,0,2,-128.38588,0,0,0,69,1,4,1,2,3,2019,3,1,8,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0760789,7.231554,0,0,45.849998,61.259998,46.939999,45.82,6,1,1,0,0,9,3,1,1662,1594272,0,0,4461.0078 -7205,8885,16231,16230,-9,-9,1,1,0,69,1,0,0,0,1,-9,1,1,0,0,4,5.4728603,7.1855359,6.904489,1,0,-9,52,0,-2,-145.62427,0,0,0,71,1,4,3,2,1,2019,2,2,14,4,15,15,15,1,1,4,0,1.9153619,1.9153619,1,3.1704991,0,0,0,0,22.473095,0,1,1,0,6.8436174,7.2750835,0,0,46.939999,45.82,45.849998,61.259998,3,1,1,0,0,9,3,1,1662,1594272,0,0,4461.0078 -7206,8886,16232,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,7.5324588,7.5204482,3,0,0,0,-9,0,-882.39636,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4936032,0,0,52,45,-9,-9,6,1,1,0,0,11,3,1,908,252923.86,0,0,1813.4714 -7207,8887,16233,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,0,1,0,7.8329091,7.8791447,3,0,0,0,-9,0,-1010.321,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4309998,7.3704209,0,0,60.040001,34.98,-9,-9,6,1,1,0,0,1,3,1,1405,599791.38,0,0,1642.1553 -7208,8888,16234,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.9519529,7.1569204,3,0,-9,0,1,0,-1085.0472,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5872161,6.717648,0,0,30.51,44.189999,-9,-9,3,1,1,0,0,7,2,1,122,233766.48,0,0,745.68329 -7209,8889,16235,16236,-9,-9,2,1,1,54,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,4,0,-2,0,0,0,0,56,3,1,3,3,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.071648,2,50,50,28.459999,33.389999,5,1,1,0,0,13,1,0,89,178953.78,0,0,880.75916 -7209,8889,16236,16235,-9,-9,1,1,0,56,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,2,0,0,0,0,54,3,3,3,3,3,2019,4,2,22,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.459999,33.389999,50,50,3,1,1,0,0,13,1,0,89,178953.78,0,0,880.75916 -7210,8890,16237,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,4,7.9527221,7.864892,0,3,0,0,0,-9,0,-989.28113,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,19,60,15,1,0,-9,0,23.064491,23.064491,0,0,0,0,0,0,0,0,1,1,0,3.4576619,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,9,4,1,419,114521.2,0,0,1707 -7211,8891,16238,-9,16239,-9,2,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.7667,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,2,0,568,-110321.34,0,0,3187.7292 -7211,8891,16239,-9,-9,-9,1,1,0,27,3,0,2,0,2,-9,2,1,0,0,3,7.2207079,7.3278103,0,4,0,0,0,-9,0,-923.64526,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,7,30,37,15,1,1,-9,0,5.5131598,5.5131598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.369999,39.849998,-9,-9,5,1,1,0,1,13,2,0,568,-110321.34,0,0,3187.7292 -7211,8891,16240,-9,16239,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.9207,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,0,568,-110321.34,0,0,3187.7292 -7212,8892,16241,16242,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,9,0,11,0,0,0,0,63,2,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.02,36.759998,45.240002,13.51,4,1,1,0,0,12,1,0,422,218542.83,0,0,1602.6101 -7212,8892,16242,16241,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,9,0,-11,0,0,0,0,74,2,2,3,3,3,2019,4,1,17,5,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,5.8374801,3,45.240002,13.51,44.02,36.759998,3,1,1,0,1,12,1,0,422,218542.83,0,0,1602.6101 -7213,8893,16243,-9,16244,16245,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.1554,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,526.33331,7061468,0,0,1841.6403 -7213,8893,16244,16245,-9,-9,2,1,0,50,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,2,0,-1,-75.236366,0,0,0,51,1,2,1,3,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.560001,50.259998,49.279999,52.09,6,1,1,0,0,13,4,1,526.33331,7061468,0,0,1841.6403 -7213,8893,16245,16244,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,0,2,8.5926695,8.9367714,0,2,0,-9,2,0,1,5.6732578,0,0,0,50,1,3,3,2,1,2019,2,2,11,0,40,40,15,1,0,3,0,21.765234,21.765234,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,52.09,46.560001,50.259998,6,1,1,0,0,13,4,1,526.33331,7061468,0,0,1841.6403 -7214,8894,16246,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,4,0,8.1460991,7.9833202,3,0,0,0,-9,0,-951.67865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5572503,8.1132927,0,0,59.139999,52.5,-9,-9,6,1,1,0,0,11,3,1,513,655633.81,0,0,2659.3071 -7215,8895,16247,-9,16248,16249,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1007.8401,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,11,1,1,560,22597.775,0,0,0 -7215,8896,16248,16249,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,8.0826788,7.9539156,0,1,0,-9,8,0,-10,120.36993,0,0,0,64,3,3,3,-9,-9,2019,2,3,13,1,30,29,15,1,0,4,0,10.713351,10.713351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,55.66,51.41,56.150002,5,1,1,0,0,11,4,1,782.5,858396.44,0,0,3216.3872 -7215,8896,16249,16248,-9,-9,3,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,7.952177,7.8628669,1,0,-9,8,0,10,-202.53821,0,0,0,54,2,2,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.673929,8.1067696,0,0,51.41,56.150002,38.75,55.66,6,1,1,0,0,11,4,1,782.5,858396.44,0,0,3216.3872 -7216,8897,16250,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,3,0,8.2174006,8.2925949,3,0,0,0,-9,0,-1036.2164,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.4571352,0,0,50.259998,40.639999,-9,-9,4,1,1,0,0,2,4,1,481,613631.69,0,0,2051.5874 -7217,8898,16251,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,4,0,7.3683982,7.5502133,3,0,-9,0,-9,0,-1011.463,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.7540417,7.3690724,0,0,54.349998,51.959999,-9,-9,6,1,1,0,0,4,3,0,1015,544977.5,0,0,2769.7393 -7218,8899,16252,16253,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,3,0,7.4269071,7.7852707,1,0,-9,57,0,5,88.64138,0,0,0,77,2,4,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6766739,7.6938381,0,0,42.57,45.02,57.16,56.150002,6,1,1,0,0,9,3,1,1642.5,945329.38,0,0,3539.6895 -7218,8899,16253,16252,-9,-9,1,1,0,77,1,0,0,0,2,-9,2,1,0,0,4,6.96416,7.2773862,0,1,0,-9,57,0,-5,21.838804,0,0,0,82,2,3,3,3,-9,2019,2,2,10,0,19,18,15,1,0,4,0,7.8654761,7.8654761,0,0,0,0,0,0,0,0,1,1,0,.81296498,0,0,0,57.16,56.150002,42.57,45.02,5,1,1,0,0,9,3,1,1642.5,945329.38,0,0,3539.6895 -7219,8900,16254,16256,-9,-9,2,1,0,54,1,0,1,0,1,-9,1,1,0,0,4,9.5137215,9.8632717,0,2,0,-9,29,0,0,117.99319,0,0,0,54,1,5,1,2,2,2019,1,1,18,6,36,36,15,1,1,1,0,50.33884,50.33884,0,0,0,0,0,0,0,0,0,0,0,6.6466689,0,0,0,37.110001,58.59,57.060001,57.759998,3,1,1,0,0,6,5,1,474.33334,1635370.6,0,0,11237.051 -7219,8900,16255,-9,16254,16256,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.0213,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,5,1,474.33334,1635370.6,0,0,11237.051 -7219,8900,16256,16254,-9,-9,1,1,1,54,1,0,1,0,1,-9,2,1,0,0,5,8.3898516,8.1646996,0,2,0,-9,29,0,0,34.17823,0,0,0,54,1,4,1,2,2,2019,1,2,5,0,13,13,15,1,0,1,0,39.499767,39.499767,0,0,0,0,0,0,0,0,0,0,0,9.1896057,0,0,0,57.060001,57.759998,37.110001,58.59,7,1,1,0,0,6,5,1,474.33334,1635370.6,0,0,11237.051 -7220,8901,16257,16258,-9,-9,1,1,0,66,1,1,1,0,3,-9,4,3,0,0,1,0,4.9587655,4.6030836,2,0,-9,37,0,2,-42.79184,0,0,0,64,2,1,3,-9,-9,2019,4,2,21,7,0,0,15,4,1,3,0,0,0,1,0,20.093256,9.0940399,0,0,0,71.5,1,1,0,0,4.3802209,74.849022,1,29.48,36.900002,32.970001,18.82,2,1,1,0,0,2,2,0,1220.5,2758.25,0,0,2524.8284 -7220,8901,16258,16257,-9,-9,2,1,1,64,1,1,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,37,0,-2,13.068222,0,0,0,66,3,1,3,-9,-9,2019,4,1,26,12,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,62.922779,1,32.970001,18.82,29.48,36.900002,4,1,1,0,1,2,2,0,1220.5,2758.25,0,0,2524.8284 -7220,8902,16259,-9,-9,-9,3,1,0,24,2,1,1,0,2,-9,5,1,0,0,4,8.2514162,8.1477442,0,4,0,0,0,-9,0,-995.75592,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,39,51,15,1,0,-9,0,7.8035593,7.8035593,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,2,4,0,1121,-85406.258,0,0,2310.1003 -7220,8902,16260,-9,16259,-9,4,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1027.3914,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,0,1121,-85406.258,0,0,2310.1003 -7221,8903,16261,-9,16263,16264,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.75153,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,455.5,211115.97,0,0,2878.6279 -7221,8903,16262,-9,16263,16264,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.6745,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,455.5,211115.97,0,0,2878.6279 -7221,8903,16263,16264,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,8.6046276,8.2834091,0,2,0,-9,8,0,-5,-14.451802,0,0,1,40,2,2,1,-9,-9,2019,1,1,13,2,25,30,15,1,0,1,0,15.721293,15.721293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,52.240002,50.75,5,1,1,0,1,7,4,1,455.5,211115.97,0,0,2878.6279 -7221,8903,16264,16263,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,0,2,7.7333179,7.8757329,0,2,0,-9,8,0,5,105.08376,0,0,0,35,1,4,1,2,2,2019,1,2,12,0,39,42,15,1,0,1,0,7.0757394,7.0757394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,51.240002,58.84,6,1,1,0,0,7,4,1,455.5,211115.97,0,0,2878.6279 -7222,8904,16265,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,4,8.7391663,8.5911856,0,3,0,-9,0,1,0,-1037.697,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,44,41,15,1,0,-9,0,14.148959,14.148959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,3,1,1,0,0,7,5,0,299,527702.75,0,0,2306.7683 -7223,8905,16266,16267,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,0,3,8.3544493,8.2413387,0,2,0,-9,10,0,2,-58.292187,0,0,0,45,2,3,3,3,2,2019,2,1,13,2,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.529999,49.099998,41.34,56.619999,4,1,1,0,0,4,3,1,659.5,220030.38,0,0,3439.2949 -7223,8905,16267,16266,-9,-9,1,1,0,45,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,10,0,-2,4.2872243,0,0,0,47,3,3,1,-9,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,37.529999,49.099998,4,1,1,0,0,4,3,1,659.5,220030.38,0,0,3439.2949 -7224,8906,16268,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,2,1,0,0,3,7.4637475,7.1952386,0,3,0,0,0,-9,0,-1055.9679,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,10,8,15,1,0,-9,0,15.441676,15.441676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.439999,43.330002,-9,-9,6,1,1,0,0,10,3,1,2474,863049.31,0,0,629.15198 -7225,8907,16269,16270,-9,-9,2,1,0,36,1,0,3,0,1,-9,2,1,0,0,4,7.5206127,7.4948487,0,2,0,-9,11,0,-1,-27.76314,0,0,1,37,1,4,1,2,2,2019,1,1,8,1,13,17,15,1,0,1,0,17.38846,17.38846,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.720001,49.75,57.16,56.150002,6,1,1,0,0,13,4,1,714.59998,114193.26,0,0,3213.6375 -7225,8907,16270,16269,-9,-9,1,1,1,37,1,0,3,0,1,-9,2,1,0,0,4,8.3052578,8.7853022,0,2,0,-9,11,0,1,33.19426,0,0,0,36,1,4,1,2,2,2019,1,2,10,0,42,42,15,1,0,1,0,14.476112,14.476112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,56.720001,49.75,6,1,1,0,0,13,4,1,714.59998,114193.26,0,0,3213.6375 -7225,8907,16271,-9,16269,16270,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.39874,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,714.59998,114193.26,0,0,3213.6375 -7225,8907,16272,-9,16269,16270,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.7426,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,4,1,714.59998,114193.26,0,0,3213.6375 -7225,8907,16273,-9,16269,16270,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.97736,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,714.59998,114193.26,0,0,3213.6375 -7226,8908,16274,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,7.6275387,7.7228413,0,3,0,0,0,-9,0,-1153.5282,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,17,4,55,46,15,1,1,-9,0,4.1120682,4.1120682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.650002,57.360001,-9,-9,4,1,1,0,0,10,3,0,267,-107862.19,0,0,1578.7102 -7227,8909,16275,16276,-9,-9,1,1,1,71,1,0,0,0,1,-9,1,1,0,0,4,7.9900408,8.2078915,5.4807463,1,0,-9,9,0,7,-46.574268,0,0,0,64,2,4,3,3,3,2019,2,2,8,0,10,0,15,1,0,4,0,45.877254,45.877254,0,0,0,0,0,0,0,0,1,1,0,8.5127831,5.671258,0,0,55.93,52.619999,51.240002,58.84,6,1,1,0,0,12,4,0,1336,1586928.5,0,0,6595.5073 -7227,8909,16276,16275,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.980865,7.5271497,1,0,-9,9,0,-7,28.289753,0,0,0,71,1,4,1,2,3,2019,3,1,12,0,0,7,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8181977,7.9581156,0,0,51.240002,58.84,55.93,52.619999,6,1,1,0,0,12,4,0,1336,1586928.5,0,0,6595.5073 -7228,8910,16277,16278,-9,-9,1,1,0,61,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,32,0,0,-33.090534,0,0,0,61,1,3,1,3,3,2019,3,2,22,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.25,26.5,49.040001,55.860001,1,4,5,1,0,8,5,1,815.5,3439232,0,0,2783.353 -7228,8910,16278,16277,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,9.2229548,9.1794834,0,1,0,-9,31,0,0,66.802292,0,0,0,61,2,2,3,3,3,2019,2,1,11,0,40,41,15,1,0,3,0,30.121296,30.121296,0,0,0,0,0,0,0,2,0,0,0,3.9914012,0,5.9581599,3,49.040001,55.860001,31.25,26.5,4,1,1,0,0,8,5,1,815.5,3439232,0,0,2783.353 -7228,8911,16279,-9,16277,16278,3,1,0,23,2,0,0,0,2,-9,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1042.5063,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.93,58.41,-9,-9,5,4,2,0,0,8,1,1,415,0,0,0,0 -7229,8912,16280,16281,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,5.4201846,5.5132823,1,0,-9,30,0,2,-40.634624,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3790865,5.231606,0,0,57.16,56.150002,65.82,26.41,7,1,1,0,0,9,2,1,179,277323.41,0,0,2581.9485 -7229,8912,16281,16280,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,1,3,0,6.2455635,6.3634138,1,0,-9,31,0,-2,-38.626091,0,0,0,69,3,4,3,-9,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,8.963459,0,0,0,0,0,1,1,0,5.8802381,6.3524103,0,0,65.82,26.41,57.16,56.150002,6,1,1,0,0,9,2,1,179,277323.41,0,0,2581.9485 -7230,8913,16282,-9,16284,16283,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.46277,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,817.25,153932.17,0,0,2751.3826 -7230,8913,16283,16284,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,8.8865032,8.6411781,0,2,0,-9,11,0,1,28.512184,0,0,0,44,1,4,1,2,2,2019,1,2,20,8,47,53,15,1,1,1,0,20.547915,20.547915,0,0,0,0,0,0,0,2,1,1,0,0,0,4.0315256,3,35.799999,59.5,44.02,60.700001,5,1,1,0,0,7,4,1,817.25,153932.17,0,0,2751.3826 -7230,8913,16284,16283,-9,-9,2,1,0,44,1,0,2,0,1,-9,1,1,0,0,4,5.5510244,5.6328626,0,2,0,-9,11,0,-1,14.253857,0,0,1,45,2,3,1,2,2,2019,1,1,15,3,10,16,15,1,0,1,0,3.1512313,3.1512313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.700001,35.799999,59.5,5,1,1,0,0,7,4,1,817.25,153932.17,0,0,2751.3826 -7230,8913,16285,-9,16284,16283,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.2505,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,817.25,153932.17,0,0,2751.3826 -7231,8914,16286,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1074.8951,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,32,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.059999,25.91,-9,-9,2,1,1,0,0,10,1,0,323,181802.42,0,0,2053.1436 -7232,8915,16287,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,4,8.3344278,8.2175798,0,4,0,0,0,-9,0,-1058.4381,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,55,57,15,1,0,-9,0,6.7845359,6.7845359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.310001,-9,-9,6,1,1,0,1,7,3,0,490,0,0,0,1574.4342 -7233,8916,16288,-9,16290,16291,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,2019.75,880471.5,0,0,4334.1177 -7233,8916,16289,-9,16290,16291,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.3529,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,2019.75,880471.5,0,0,4334.1177 -7233,8916,16290,16291,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,8.2089081,8.5051994,0,2,0,-9,8,0,-4,89.063896,0,0,1,42,2,4,1,2,1,2019,1,1,6,0,35,32,15,1,0,1,0,16.124359,16.124359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.759998,52.639999,7,1,1,0,0,9,5,1,2019.75,880471.5,0,0,4334.1177 -7233,8916,16291,16290,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,9.1505079,8.8608513,0,2,0,-9,8,0,4,18.081751,0,0,0,38,2,4,1,2,2,2019,1,2,10,1,40,40,15,1,0,1,0,21.760574,21.760574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.759998,52.639999,57.16,56.150002,6,1,1,0,0,9,5,1,2019.75,880471.5,0,0,4334.1177 -7234,8917,16292,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,0,4,8.449873,8.5059557,0,3,0,0,0,-9,0,-1031.5386,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,77,15,1,0,-9,0,15.370367,15.370367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,5,1,447,204895.08,0,0,1289.1576 -7235,8918,16293,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,7.6307969,7.8976007,3,0,0,0,-9,0,-917.53204,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4030221,8.0579157,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,10,3,1,213,709753.69,0,0,1090.5997 -7236,8919,16294,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,2,1,0,0,4,5.406745,6.8184867,7.1266685,3,0,0,0,-9,0,-1013.4811,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4656358,6.8340983,0,0,58.720001,51.290001,-9,-9,6,1,1,0,0,10,2,1,2912,236716.64,0,0,662.20074 -7237,8920,16295,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,2,1,0,0,3,0,5.9422956,6.0495076,3,0,0,0,-9,0,-1054.85,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.9388876,7.6860409,3,52,54.509998,-9,-9,6,1,1,0,0,9,2,0,300,403993.63,0,0,2010.097 -7238,8921,16296,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,0,3,8.7527466,8.6759014,0,3,0,0,0,-9,0,-1057.5234,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,18.397755,18.397755,0,0,0,0,0,0,0,0,0,0,0,3.1915333,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,5,1,873,617589.06,0,0,2157.0789 -7239,8922,16297,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,6.2351723,6.3909526,3,0,0,0,-9,0,-1029.0734,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5395548,6.700604,0,0,53,44,-9,-9,6,1,1,0,0,5,2,1,632,305437.88,0,0,2362.7327 -7240,8923,16298,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-934.95105,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,32.049999,-9,-9,2,1,1,0,1,13,1,0,2335,-186415.28,0,0,471.55081 -7241,8924,16299,16300,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,9.2037458,8.9258881,0,2,0,-9,24,0,-2,1.1113211,0,0,0,44,1,4,1,2,1,2019,1,2,15,3,40,40,15,1,0,1,0,18.245104,18.245104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.799999,59.5,47.380001,57.75,6,1,1,0,0,8,5,1,562.5,446069.19,0,0,5236.0093 -7241,8924,16300,16299,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.7226143,8.3935957,0,2,0,-9,24,0,2,77.52343,0,0,1,42,1,3,1,1,1,2019,1,1,5,0,42,34,15,1,0,1,0,14.896628,14.896628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.380001,57.75,35.799999,59.5,6,1,1,0,0,8,5,1,562.5,446069.19,0,0,5236.0093 -7242,8925,16301,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,7.5147386,7.3254027,0,3,0,0,0,-9,0,-1049.0182,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,3,1,20,30,15,1,0,-9,0,10.023029,10.023029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,49.669998,-9,-9,7,1,1,0,0,2,3,0,437,328232.38,0,0,1627.3438 -7242,8926,16302,16303,16301,-9,2,1,1,20,1,0,0,0,2,-9,2,1,0,0,5,7.0148087,7.1363873,0,1,0,-9,2,0,2,89.404861,0,1,0,18,2,3,3,2,-9,2019,2,3,11,0,40,40,15,1,0,3,0,3.543812,3.543812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,27.639999,63.360001,6,1,1,0,0,2,2,0,274.5,-7339.7422,0,0,956.38495 -7242,8926,16303,16302,-9,-9,3,1,0,18,1,0,0,0,2,-9,3,3,0,0,3,0,5.7230353,5.8333011,1,0,-9,2,0,-2,-104.67913,0,1,1,20,2,5,1,-9,-9,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1995025,0,0,0,27.639999,63.360001,56.470001,59.400002,4,1,1,1,0,2,2,0,274.5,-7339.7422,0,0,956.38495 -7243,8927,16304,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,0,3,0,6.9994187,6.9768453,3,0,0,0,-9,0,-1022.5311,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.0567999,0,0,1,1,0,5.2343969,6.6664643,0,0,54.669998,37.040001,-9,-9,6,1,1,0,0,2,2,1,1030,357014.97,0,0,1427.9895 -7244,8928,16305,16307,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,8.238739,7.9874506,0,2,0,-9,22,0,-1,7.7458,0,0,1,43,2,5,1,2,2,2019,1,1,12,2,19,19,15,1,0,1,0,14.096425,14.096425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,55.68,54.240002,6,1,1,0,0,10,5,1,327,255962.05,0,0,4392.1987 -7244,8928,16306,-9,16305,16307,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.5404,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,327,255962.05,0,0,4392.1987 -7244,8928,16307,16305,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,5,8.7893915,8.4015932,0,2,0,-9,22,0,1,21.519306,0,0,0,42,2,4,1,2,2,2019,1,2,9,1,45,55,15,1,0,1,0,15.688665,15.688665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.240002,49.41,58.279999,6,1,1,0,0,10,5,1,327,255962.05,0,0,4392.1987 -7245,8929,16308,16309,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.2380991,7.9835243,6.1575527,2,0,-9,2,0,-4,56.617855,0,0,1,43,2,2,1,2,2,2019,1,4,7,0,23,23,15,1,0,1,0,12.259389,12.259389,0,0,0,0,0,0,0,0,1,1,0,6.476809,0,0,0,54.200001,57.490002,39.57,56.389999,6,1,1,0,0,6,4,1,897,643169.38,0,0,2211.9731 -7245,8929,16309,16308,-9,-9,4,1,1,43,1,0,2,0,2,-9,2,1,0,0,2,8.2576885,8.1102495,0,2,0,-9,2,0,4,-72.814117,0,0,0,39,2,4,1,-9,-9,2019,1,1,16,5,43,37,15,1,1,1,0,10.200544,10.200544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,56.389999,54.200001,57.490002,5,1,1,0,1,6,4,1,897,643169.38,0,0,2211.9731 -7246,8930,16310,16311,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.8762865,8.0159483,1,0,-9,6,0,0,54.038242,0,0,0,72,2,2,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8911591,0,1,54,46,54.389999,14.44,5,1,1,0,0,11,3,1,1763,773252.75,0,0,2994.4448 -7246,8930,16311,16310,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,2,0,5.5297942,5.7384152,1,0,-9,48,0,0,150.33023,0,0,0,72,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9952166,5.8059678,0,0,54.389999,14.44,54,46,6,1,1,0,0,11,3,1,1763,773252.75,0,0,2994.4448 -7247,8931,16312,16313,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,4.6528301,4.5190563,1,0,-9,10,0,-6,23.898548,0,0,0,84,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,120.55665,0,0,1.4772648,0,0,1,1,0,0,4.9996305,0,0,51.75,45.91,53.82,45.880001,5,1,1,0,0,4,2,0,691,190588.38,0,0,1240.9133 -7247,8931,16313,16312,-9,-9,2,1,1,84,1,0,0,0,2,-9,4,3,0,0,2,0,6.2503848,6.0837808,1,0,-9,10,0,6,-93.834068,0,0,0,78,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8153195,6.2977724,0,0,53.82,45.880001,51.75,45.91,5,1,1,0,0,4,2,0,691,190588.38,0,0,1240.9133 -7248,8932,16314,16315,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,9,0,1,-42.350231,0,0,0,72,1,3,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.9582219,0,0,0,59.040001,54.119999,53.220001,50.02,6,1,1,0,0,9,5,1,620,2971731,0,0,7220.0415 -7248,8932,16315,16314,-9,-9,2,1,1,72,1,0,0,0,1,-9,1,1,0,0,3,9.1780357,9.4248629,0,1,0,-9,9,0,-1,-112.11763,0,0,0,73,2,5,3,3,3,2019,2,1,11,0,30,30,15,1,0,4,0,42.372478,42.372478,0,0,0,0,0,0,0,0,1,1,0,6.8878479,0,0,0,53.220001,50.02,59.040001,54.119999,6,1,1,0,0,9,5,1,620,2971731,0,0,7220.0415 -7249,8933,16316,-9,16318,16317,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-923.73303,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,1,890,63359.313,0,0,3760.8706 -7249,8933,16317,16318,-9,-9,2,1,1,30,1,2,2,0,2,-9,2,1,0,1,2,8.5193071,8.4648628,0,2,0,-9,3,0,1,-90.791145,0,0,0,29,1,3,1,-9,-9,2019,1,1,11,1,38,40,15,1,0,1,0,12.855828,12.855828,0,0,0,0,0,0,0,2,1,1,0,0,0,2.9471195,3,52.639999,41.110001,51.419998,48.119999,6,1,1,0,0,4,4,1,890,63359.313,0,0,3760.8706 -7249,8933,16318,16317,-9,-9,1,1,0,29,1,2,2,0,1,-9,2,1,0,0,3,8.426836,8.3701267,0,2,0,-9,3,0,-1,-5.9563756,0,1,1,30,2,2,1,-9,-9,2019,1,2,8,1,38,51,15,1,0,1,0,13.584901,13.584901,0,0,0,0,0,0,0,7,1,1,0,3.1983576,0,5.502789,3,51.419998,48.119999,52.639999,41.110001,6,1,1,0,0,4,4,1,890,63359.313,0,0,3760.8706 -7249,8933,16319,-9,16318,16317,3,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-870.52313,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,890,63359.313,0,0,3760.8706 -7250,8934,16320,-9,-9,-9,1,1,0,45,3,0,1,0,3,-9,2,1,0,0,4,7.4930396,8.1636152,6.6132498,4,0,0,0,-9,0,-1017.4974,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,29,29,15,1,0,-9,0,7.4389915,7.4389915,0,0,0,0,0,0,0,0,1,1,0,6.8923159,0,0,0,57.16,56.150002,-9,-9,4,1,1,0,0,7,3,1,810.33331,46803.207,0,0,2843.7651 -7250,8934,16321,-9,16320,-9,2,1,0,16,2,0,1,0,2,-9,2,2,0,0,3,6.6050448,6.6415472,0,4,0,0,0,-9,0,-964.25958,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,7,3,1,810.33331,46803.207,0,0,2843.7651 -7250,8934,16322,-9,16320,-9,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-921.99347,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,7,3,1,810.33331,46803.207,0,0,2843.7651 -7251,8935,16323,-9,16324,16325,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-975.16608,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,3,1,191,18930.479,0,0,1500.8646 -7251,8935,16324,16325,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,0,4,7.6359868,7.783576,0,2,0,-9,28,0,-1,10.439652,0,0,0,48,2,5,1,2,2,2019,1,2,8,0,25,25,15,1,0,1,0,7.9629178,7.9629178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.330002,39.200001,62.389999,56.709999,6,1,1,0,0,9,3,1,191,18930.479,0,0,1500.8646 -7251,8935,16325,16324,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,5,8.0949984,8.3544388,0,2,0,-9,28,0,1,-72.346977,0,0,0,47,3,4,1,-9,-9,2019,1,1,6,0,50,0,15,1,0,1,0,6.9791775,6.9791775,0,0,0,0,0,0,0,0,1,1,0,1.5071507,0,0,0,62.389999,56.709999,52.330002,39.200001,5,1,1,0,0,9,3,1,191,18930.479,0,0,1500.8646 -7251,8936,16326,-9,16324,16325,3,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1054.7922,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,16,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.259998,43.029999,-9,-9,2,1,1,0,0,9,1,1,298,201205.14,0,0,0 -7252,8937,16327,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,0,5,6.0837221,6.1647043,0,4,0,0,0,-9,0,-989.70074,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,16,96,15,1,0,-9,0,2.9790895,2.9790895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.719999,68.120003,-9,-9,3,1,1,0,1,7,2,0,596,399131.19,0,0,1906.7512 -7253,8938,16328,16329,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,-1,144.52939,0,0,0,70,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,52,59.459999,46.990002,6,1,1,0,0,11,2,1,1051,64249.141,0,0,2028.1143 -7253,8938,16329,16328,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.3411484,6.337852,1,0,-9,10,0,1,-8.0724201,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.654304,6.464654,0,0,59.459999,46.990002,53,52,6,1,1,0,0,11,2,1,1051,64249.141,0,0,2028.1143 -7254,8939,16330,16332,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,0,4,8.0257187,8.1492243,0,2,0,-9,8,0,2,2.8883188,0,0,0,34,2,4,1,-9,-9,2019,1,2,15,3,37,36,15,1,0,1,0,10.550513,10.550513,0,0,0,0,0,0,0,14.5,1,1,0,2.7862887,0,18.255247,3,43.009998,35.580002,35.75,59.470001,6,4,5,0,0,6,3,1,663.33331,739974.38,0,0,2762.2876 -7254,8939,16331,-9,16332,16330,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.6229,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,6,3,1,663.33331,739974.38,0,0,2762.2876 -7254,8939,16332,16330,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,7.5740895,7.6143937,0,2,0,-9,8,0,-2,-70.755539,0,0,1,36,2,4,1,3,3,2019,1,1,23,10,36,36,15,1,1,1,0,6.8262148,6.8262148,0,0,0,0,0,0,0,2,1,1,0,0,0,5.0338287,3,35.75,59.470001,43.009998,35.580002,4,4,5,0,0,6,3,1,663.33331,739974.38,0,0,2762.2876 -7255,8940,16333,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-969.06537,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6162548,0,0,0,28.799999,33.150002,-9,-9,3,1,1,1,0,5,1,1,1747,0,0,0,-538.29297 -7256,8941,16334,-9,16336,16335,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.7535,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,4,0,1244.25,1590275.1,0,0,4146.0527 -7256,8941,16335,16336,-9,-9,4,1,1,46,1,0,2,0,2,-9,2,1,0,0,2,8.4049149,8.4200907,0,2,0,-9,4,0,4,89.090691,0,0,0,42,2,3,1,-9,-9,2019,1,1,16,3,56,55,15,1,0,1,0,9.4098854,9.4098854,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.029999,43.310001,57.330002,53.459999,3,4,2,0,0,8,4,0,1244.25,1590275.1,0,0,4146.0527 -7256,8941,16336,16335,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,8.5755377,8.0986624,0,2,0,-9,4,0,-4,-105.86879,0,0,1,46,2,2,1,-9,-9,2019,1,4,8,1,37,37,15,1,0,1,0,17.076895,17.076895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,36.029999,43.310001,6,1,1,0,0,8,4,0,1244.25,1590275.1,0,0,4146.0527 -7256,8941,16337,-9,16336,16335,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.2937,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,4,0,1244.25,1590275.1,0,0,4146.0527 -7257,8942,16338,16339,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,6.4422503,7.2526655,6.5453815,1,0,-9,6,0,-2,63.176342,0,0,0,56,2,4,1,2,2,2019,1,1,15,5,11,11,15,1,1,1,0,7.1718154,7.1718154,0,0,0,0,0,0,0,0,0,0,0,0,6.44066,0,0,51.240002,58.84,54.200001,57.490002,7,1,1,0,0,2,5,1,304.5,55165.445,0,0,5576.6816 -7257,8942,16339,16338,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,9.3867559,9.5955906,8.3068876,1,0,-9,6,0,2,-51.336006,0,0,0,54,3,4,1,-9,2,2019,1,2,10,0,50,50,15,1,0,1,0,21.690224,21.690224,0,0,0,0,0,0,0,7,0,0,0,0,8.6746874,8.4266386,3,54.200001,57.490002,51.240002,58.84,6,1,1,0,0,2,5,1,304.5,55165.445,0,0,5576.6816 -7258,8943,16340,16341,-9,-9,1,1,0,41,1,0,0,0,1,-9,6,3,0,0,4,8.2873487,8.2548246,0,1,0,-9,16,0,-15,58.040112,0,0,1,56,1,4,1,1,2,2019,3,2,11,1,35,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,53,54,5,4,2,0,0,8,4,1,2410,2186311.3,0,0,1360.1752 -7258,8943,16341,16340,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,7.4689879,7.2364354,0,1,0,-9,8,0,15,-80.762306,0,0,0,41,1,4,3,-9,-9,2019,2,1,9,1,40,50,15,1,0,3,0,4.8153419,4.8153419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,49,55,6,1,1,0,0,8,4,1,2410,2186311.3,0,0,1360.1752 -7258,8944,16342,-9,16340,16341,3,1,0,24,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1028.299,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,4,5,1,0,8,1,1,1048,-7684.3257,0,0,0 -7258,8945,16343,-9,16340,16341,4,1,1,18,2,0,0,1,2,0,7,2,0,0,4,8.9482698,9.2990627,0,3,0,0,0,-9,0,-1165.9496,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,8,5,1,646,178665.66,0,0,2785.7893 -7259,8946,16344,16345,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,2,0,8.092164,8.2111368,1,0,-9,8,0,7,110.64516,0,0,0,74,2,2,3,-9,-9,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,7.6457825,9.754015,1,36.439999,23.85,42.860001,34.810001,3,1,1,0,0,2,4,1,579.5,705164.25,0,0,3581.3037 -7259,8946,16345,16344,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,1,2,0,7.2144456,7.4091554,1,0,-9,58,0,-7,-16.045351,0,0,0,81,3,2,3,3,3,2019,4,2,20,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.0523822,7.5932002,26.065041,1,42.860001,34.810001,36.439999,23.85,5,1,1,0,0,2,4,1,579.5,705164.25,0,0,3581.3037 -7260,8947,16346,16347,-9,-9,2,1,0,55,1,0,0,0,3,-9,4,3,0,1,1,0,6.6885028,6.5688806,1,0,-9,14,0,-14,-25.701763,0,0,0,69,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.5631351,75.184845,1,45.389999,14.45,27.889999,18.610001,3,1,1,0,0,5,2,1,541.5,238629.42,0,0,2923.1187 -7260,8947,16347,16346,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,1,1,0,5.2276893,5.0445986,1,0,-9,14,0,14,-103.19544,0,0,0,55,3,1,3,3,2,2019,4,2,32,11,0,0,15,4,1,4,0,0,0,1,0,27.788317,12.367299,0,24.962858,0,0,1,1,0,5.1399403,5.2905059,0,0,27.889999,18.610001,45.389999,14.45,2,1,1,0,0,5,2,1,541.5,238629.42,0,0,2923.1187 -7261,8948,16348,16349,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,5.1111937,6.5437756,6.2044039,1,0,-9,55,0,-1,26.670414,0,0,0,74,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4713774,6.0823259,0,0,60.290001,52.110001,56.099998,49.93,6,1,1,0,0,10,2,1,1072,683800.25,0,0,1459.1423 -7261,8948,16349,16348,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,6.8869967,7.1758204,1,0,-9,55,0,1,-110.27029,0,0,0,73,2,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2610369,7.1599002,0,0,56.099998,49.93,60.290001,52.110001,5,1,1,0,0,10,2,1,1072,683800.25,0,0,1459.1423 -7262,8949,16350,-9,16352,16351,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.8844,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,491.75,302721.78,0,0,2882.605 -7262,8949,16351,16352,-9,-9,1,1,1,37,1,0,2,0,2,-9,1,1,0,0,3,7.9953179,8.4602089,6.8956866,2,0,-9,12,0,2,19.470638,0,0,0,35,1,2,1,3,2,2019,1,2,11,0,50,10,15,1,0,1,0,5.8693843,5.8693843,0,0,0,0,0,0,0,0,1,1,0,0,6.9643564,0,0,37.200001,53.869999,42.209999,25.58,6,1,1,0,0,13,4,1,491.75,302721.78,0,0,2882.605 -7262,8949,16352,16351,-9,-9,2,1,0,35,1,0,2,0,1,-9,1,1,0,0,2,8.1803131,8.038516,0,2,0,-9,12,0,-2,-33.796501,0,0,1,37,2,3,1,2,2,2019,1,1,14,4,50,37,15,1,1,1,0,7.5165572,7.5165572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.209999,25.58,37.200001,53.869999,5,1,1,0,0,13,4,1,491.75,302721.78,0,0,2882.605 -7262,8949,16353,-9,16352,16351,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.6237,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,1,491.75,302721.78,0,0,2882.605 -7263,8950,16354,16355,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.9427476,7.8153653,1,0,-9,44,0,-7,104.60534,0,0,0,76,3,2,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7944274,0,0,51.91,47.75,45.959999,38.669998,5,2,3,0,0,6,4,1,496,1130777.8,0,0,4254.5591 -7263,8950,16355,16354,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,3.7200949,8.0043478,8.3013935,1,0,-9,44,0,7,-14.353217,0,0,0,69,2,3,3,3,3,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4757266,8.039217,0,0,45.959999,38.669998,51.91,47.75,6,1,1,0,0,6,4,1,496,1130777.8,0,0,4254.5591 -7264,8951,16356,16358,-9,-9,1,1,0,33,1,1,1,0,2,-9,1,1,0,0,4,8.3937807,8.2610321,0,2,0,-9,10,0,-12,69.396317,0,0,1,45,2,4,1,2,-9,2019,1,2,20,7,38,38,15,1,1,1,0,10.281294,10.281294,0,0,0,0,0,0,0,0,1,1,0,6.6467857,0,0,0,47.509998,39.91,31.040001,55.540001,5,1,1,0,0,4,4,1,396,-30705.68,0,0,3455.897 -7264,8951,16357,-9,16356,16358,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-942.31738,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,4,1,396,-30705.68,0,0,3455.897 -7264,8951,16358,16356,-9,-9,2,1,1,45,1,1,1,0,2,-9,2,1,0,0,4,8.2272482,8.0653992,0,2,0,-9,10,0,12,-31.143847,0,0,0,33,2,4,1,-9,-9,2019,1,1,15,2,41,40,15,1,0,1,0,10.781536,10.781536,0,0,0,0,0,0,0,0,1,1,0,1.8627604,0,0,0,31.040001,55.540001,47.509998,39.91,5,1,1,0,0,4,4,1,396,-30705.68,0,0,3455.897 -7265,8952,16359,-9,16360,16361,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1147.2092,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,0,358.75,80769.969,0,0,2688.9136 -7265,8952,16360,16361,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,0,3,7.2154622,7.2848043,0,2,0,-9,5,0,-11,80.998878,0,1,1,40,2,3,1,-9,-9,2019,1,2,13,2,15,15,15,1,0,1,0,10.718492,10.718492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.639999,41.34,56.619999,6,1,1,0,0,5,3,0,358.75,80769.969,0,0,2688.9136 -7265,8952,16361,16360,-9,-9,2,1,1,40,1,1,2,0,2,-9,2,1,0,0,3,8.321516,8.2921457,3.0681839,2,0,-9,5,0,11,-15.928061,0,0,0,29,2,3,1,-9,-9,2019,1,1,12,0,80,60,15,1,0,1,0,5.608614,5.608614,0,0,0,0,0,0,0,0,1,1,0,2.4679763,0,0,0,41.34,56.619999,53.59,49.639999,2,1,1,0,1,5,3,0,358.75,80769.969,0,0,2688.9136 -7265,8952,16362,-9,16360,16361,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.3643,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,3,0,358.75,80769.969,0,0,2688.9136 -7266,8953,16363,16364,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,5,8.8612261,8.9054117,0,1,0,-9,2,0,4,-72.16011,0,0,0,28,1,4,3,1,1,2019,2,2,0,0,40,48,15,1,0,3,0,18.231808,18.231808,0,0,0,0,0,0,0,0,0,0,0,8.465415,0,0,0,60.02,56.419998,47.580002,56.389999,7,1,1,0,0,12,4,0,932.5,-26130.426,0,0,3642.9614 -7266,8953,16364,16363,-9,-9,2,1,0,28,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,2,0,-4,-20.23196,0,1,1,32,1,5,1,-9,-9,2019,3,1,6,0,0,12,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.074902855,0,0,0,47.580002,56.389999,60.02,56.419998,6,1,1,0,0,12,4,0,932.5,-26130.426,0,0,3642.9614 -7267,8954,16365,-9,-9,-9,1,1,1,35,2,0,0,0,3,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1160.0537,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.360001,65.220001,-9,-9,5,1,1,1,1,12,1,0,365,0,0,0,-480.67053 -7267,8955,16366,-9,-9,-9,2,1,1,45,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-844.03082,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.1294394,0,35.431255,3,39.029999,28.09,-9,-9,3,1,1,1,0,12,1,0,664,0,0,0,1863.2286 -7268,8956,16367,16368,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,9.2041283,9.1614056,0,1,0,-9,2,0,2,-60.782528,0,1,0,26,1,4,1,-9,-9,2019,1,1,10,1,40,60,15,1,0,1,0,24.285007,24.285007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,39.48,58.880001,5,4,1,0,0,7,5,1,154.5,76014.242,0,0,5766.7139 -7268,8956,16368,16367,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.6356993,8.6698074,0,1,0,-9,2,0,-2,-6.2372341,0,1,1,28,1,4,1,1,1,2019,1,2,23,10,60,45,15,1,1,1,0,11.034487,11.034487,0,0,0,0,0,0,0,0,1,1,0,.95927542,0,0,0,39.48,58.880001,49,58,5,1,1,0,0,7,5,1,154.5,76014.242,0,0,5766.7139 -7269,8957,16369,16370,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,8.4404116,8.3894348,0,1,0,-9,3,0,0,15.801744,0,1,0,28,1,4,1,-9,-9,2019,1,2,10,0,44,37,15,1,0,1,0,11.622976,11.622976,0,0,0,0,0,0,0,0,0,0,0,2.2763188,0,0,0,51.490002,57.57,46.439999,59.619999,6,1,1,0,0,6,5,1,959,1923.4004,0,0,3506.563 -7269,8957,16370,16369,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.7510824,9.0025101,0,1,0,-9,3,0,0,-148.91359,0,1,1,28,1,4,1,-9,-9,2019,1,1,6,0,47,47,15,1,0,1,0,16.16629,16.16629,0,0,0,0,0,0,0,0,0,0,0,2.9792848,0,0,0,46.439999,59.619999,51.490002,57.57,6,1,1,0,0,6,5,1,959,1923.4004,0,0,3506.563 -7270,8958,16371,-9,16372,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1045.1326,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,330,82885.539,0,0,756.5307 -7270,8958,16372,-9,-9,-9,1,1,0,28,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,4,0,-9,0,0,0,-1120.903,1,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,30,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.650002,60.41,-9,-9,5,1,1,0,1,13,1,0,330,82885.539,0,0,756.5307 -7270,8958,16373,-9,16372,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1037.5912,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,330,82885.539,0,0,756.5307 -7271,8959,16374,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,5,0,-17,49.47303,0,0,0,-9,-9,-9,-9,2,3,2019,3,2,23,11,0,45,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8703392,0,0,0,45.91,59.889999,59.529999,56.439999,4,2,3,1,0,10,5,1,166,35741.48,0,0,518.24536 -7271,8960,16375,-9,-9,-9,2,1,1,55,2,0,0,0,1,-9,2,1,0,0,4,9.579052,10.012152,0,1,0,-9,5,0,17,1.9484894,0,0,0,-9,-9,-9,-9,-9,-9,2019,2,1,2,0,50,40,15,1,0,-9,0,45.110863,45.110863,0,0,0,0,0,0,0,0,0,0,0,6.8984284,0,0,0,59.529999,56.439999,45.91,59.889999,6,1,1,0,0,10,5,1,775,2003334.6,0,0,7301.4658 -7272,8961,16376,16377,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,0,3,6.6557636,6.6771793,0,1,0,-9,6,0,4,-12.454952,0,0,0,59,2,2,1,-9,-9,2019,1,1,10,1,8,8,15,1,0,1,0,11.776179,11.776179,0,0,0,0,0,0,0,0,1,1,0,5.799499,0,0,3,52,47,59.860001,13.39,5,1,1,0,0,1,3,1,436.5,1099215.5,0,0,2427.3992 -7272,8961,16377,16376,16378,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,1,2,6.9128876,7.3118386,6.2612801,1,0,-9,37,0,-4,57.222664,0,0,0,63,2,3,1,3,3,2019,1,2,7,1,18,18,15,1,0,1,0,6.8310151,6.8310151,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0967717,15.16572,3,59.860001,13.39,52,47,6,1,1,0,0,1,3,1,436.5,1099215.5,0,0,2427.3992 -7272,8962,16378,-9,-9,-9,3,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-937.55878,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7680111,0,0,0,53,44,-9,-9,6,4,6,0,0,1,1,1,138,0,0,0,2207.3401 -7273,8963,16379,16380,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,9.5364141,9.3579493,0,1,0,-9,6,0,-2,-43.77219,0,0,0,53,1,5,1,2,3,2019,1,1,6,0,43,44,15,1,0,1,0,45.04137,45.04137,0,0,0,0,0,0,0,0,0,0,0,4.3272257,0,0,0,58.150002,52.91,57.060001,57.759998,7,1,1,0,0,8,5,1,638.5,962356.5,0,0,6258.4277 -7273,8963,16380,16379,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,5,8.0298653,7.9495568,0,1,0,-9,27,0,2,70.523651,0,0,0,51,2,4,1,2,2,2019,1,2,6,0,17,15,15,1,0,1,0,14.50531,14.50531,0,0,0,0,0,0,0,0,0,0,0,3.7123613,0,0,0,57.060001,57.759998,58.150002,52.91,6,1,1,0,0,8,5,1,638.5,962356.5,0,0,6258.4277 -7273,8964,16381,-9,16380,16379,3,1,1,20,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1012.8124,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6271517,0,0,0,49.34,58.540001,-9,-9,6,1,1,0,0,8,1,1,1532,-34964.43,0,0,831.177 -7274,8965,16382,-9,-9,-9,1,1,1,19,2,0,0,0,2,-9,2,1,0,1,3,7.001287,6.8405452,0,3,0,0,0,-9,0,-924.9303,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,21,0,15,1,1,-9,0,4.789309,4.789309,0,0,0,0,0,0,0,0,1,1,0,.63490003,0,0,0,25.66,46.34,-9,-9,4,1,1,0,0,2,2,0,392,-4255.4424,0,0,1790.8502 -7275,8966,16383,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1058.5652,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,41.560001,-9,-9,5,2,3,0,0,2,1,0,610,137911.55,0,0,0 -7275,8967,16384,-9,-9,-9,2,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,7.1895666,7.2248912,0,3,0,0,0,-9,0,-1027.2849,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,30,27,15,1,0,-9,0,5.4974594,5.4974594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.459999,40.220001,-9,-9,7,2,3,0,0,2,3,0,408,-44604.465,0,0,1759.3821 -7275,8968,16385,-9,-9,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.0520182,7.7400479,0,3,0,0,0,-9,0,-979.57977,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,35,0,15,1,0,-9,0,8.73034,8.73034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,41.560001,-9,-9,7,2,3,0,0,2,4,0,637,-55999.273,0,0,1735.9309 -7275,8969,16386,-9,-9,-9,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,8.0175047,7.984499,0,3,0,0,0,-9,0,-983.56567,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,32,0,15,1,0,-9,0,14.054199,14.054199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.57,42.169998,-9,-9,6,2,3,0,0,2,4,0,1358,75143.531,0,0,2031.7045 -7275,8970,16387,-9,-9,-9,5,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-944.34338,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.759998,43.529999,-9,-9,7,2,3,0,0,2,1,0,425,195276.73,0,0,0 -7276,8971,16388,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1077.8416,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,24.191925,0,4.5587072,0,0,1,1,0,0,0,0,0,55.439999,33.59,-9,-9,7,1,1,0,0,13,1,1,737,166637.47,0,0,-340.34613 -7277,8972,16389,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,2,1,0,0,5,6.8535318,6.8342533,0,3,0,0,0,-9,0,-966.16364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,16,16,15,1,1,-9,0,5.7193375,5.7193375,0,0,0,0,0,0,0,0,1,1,0,3.8839672,0,0,0,45.810001,61.509998,-9,-9,1,1,1,0,0,2,2,1,1506,278957.09,0,0,1658.447 -7278,8973,16390,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,5,8.4592772,8.3440285,0,3,0,0,0,-9,0,-905.53815,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,41,47,15,1,0,-9,0,12.678851,12.678851,0,0,0,0,0,0,0,0,0,0,0,3.8845351,0,0,0,54.099998,59.110001,-9,-9,4,1,1,0,0,10,4,0,216,332484.38,0,0,413.57278 -7279,8974,16391,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,2,1,0,0,4,7.2246432,7.9314384,0,3,0,0,0,-9,0,-1180.6732,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,25,15,1,0,-9,0,7.5549321,7.5549321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.18,51.630001,-9,-9,5,3,4,0,0,8,3,0,158,61855.184,0,0,744.89294 -7279,8975,16392,-9,16391,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,8.2000389,8.0546074,0,3,0,0,0,-9,0,-944.02008,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,45,40,15,1,0,-9,1,8.478117,8.478117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.560001,54.900002,-9,-9,6,4,2,0,0,8,4,0,540,-15765.304,0,0,2078.5391 -7280,8976,16393,-9,16394,-9,2,1,0,17,2,0,1,1,3,0,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-898.32355,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.809999,56.959999,-9,-9,4,1,1,0,0,10,3,1,835,85430.148,0,0,1756.8125 -7280,8976,16394,-9,16395,-9,1,1,0,50,3,0,1,0,2,-9,3,3,0,1,2,0,7.3616033,7.3043146,3,0,0,0,-9,0,-985.1944,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,34,12,0,29,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.5075316,0,0,0,23.530001,39.779999,-9,-9,1,1,1,1,0,10,3,1,835,85430.148,0,0,1756.8125 -7280,8977,16395,-9,-9,-9,3,1,0,89,3,0,1,0,3,-9,4,3,0,0,1,0,0,0,4,0,0,0,-9,0,-980.33679,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.299999,24.15,-9,-9,3,1,1,0,0,10,1,1,782,56290.695,0,0,382.89377 -7281,8978,16396,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,3.8954763,3.8440077,3,0,0,0,-9,0,-1092.2665,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6445148,3.8439963,0,0,52.560001,33.09,-9,-9,7,1,1,0,0,11,1,1,156,-112519.04,0,0,1020.153 -7282,8979,16397,16398,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,0,47.737328,0,0,0,73,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.360001,35.119999,54.689999,30.23,7,1,1,0,0,10,2,1,619,549771.69,0,0,1417.7861 -7282,8979,16398,16397,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,1,2,0,6.8026552,6.8734412,1,0,-9,55,0,0,-53.145954,0,0,0,73,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9881363,0,0,54.689999,30.23,67.360001,35.119999,5,1,1,0,0,10,2,1,619,549771.69,0,0,1417.7861 -7283,8980,16399,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,0,3,8.3551168,8.6235046,0,3,0,0,0,-9,0,-942.38617,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,50,50,15,1,0,-9,0,15.317147,15.317147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,10,5,1,155,227182.61,0,0,1336.2263 -7284,8981,16400,16401,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,9.286787,9.1335993,0,2,0,-9,8,0,-2,-9.9464436,0,0,0,51,2,2,1,2,-9,2019,1,1,8,0,60,55,15,1,0,1,0,22.941828,22.941828,0,0,0,0,0,0,0,14.5,1,1,0,7.7805338,0,16.500536,3,46.860001,55.66,43.849998,31.58,6,3,4,0,0,8,5,1,1146,1355399.6,0,0,7847.8408 -7284,8981,16401,16400,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,8.7785273,8.4560556,0,2,0,-9,31,0,2,-43.899124,0,0,0,49,1,3,1,3,3,2019,1,2,16,5,36,36,15,1,1,1,0,19.283268,19.283268,0,0,0,0,0,0,0,2,1,1,0,7.4937258,0,.92450583,3,43.849998,31.58,46.860001,55.66,5,3,4,0,0,8,5,1,1146,1355399.6,0,0,7847.8408 -7284,8982,16402,-9,16400,16401,3,1,0,24,2,0,1,0,1,-9,2,1,0,0,1,7.4299068,7.8196278,0,3,0,0,0,-9,0,-1151.6002,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,33,11,20,32,15,1,1,-9,1,12.88634,12.88634,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,13.66,37.259998,-9,-9,2,3,4,0,0,8,3,1,880,156047.83,0,0,1458.88 -7284,8983,16403,-9,16400,16401,5,1,0,18,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-899.71326,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5351522,0,0,3,53.240002,50.009998,-9,-9,2,3,4,0,0,8,5,1,547,242938,0,0,-930.48401 -7285,8984,16404,16405,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,0,4,6.5421472,6.572711,0,1,0,-9,10,0,1,32.756245,0,0,1,38,1,3,1,1,1,2019,1,2,12,5,30,30,15,1,1,1,0,2.4615524,2.4615524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.77,61.099998,33.060001,63.209999,5,4,5,0,0,8,4,1,376,50844.547,0,0,2844.6484 -7285,8984,16405,16404,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,0,3,8.7227316,8.7872648,0,1,0,-9,10,0,-1,-17.61117,0,0,0,39,1,4,1,1,2,2019,1,1,9,0,39,0,15,1,0,1,0,20.53384,20.53384,0,0,0,0,0,0,0,0,0,0,0,4.4448943,0,0,0,33.060001,63.209999,31.77,61.099998,3,4,5,0,0,8,4,1,376,50844.547,0,0,2844.6484 -7286,8985,16406,16408,-9,-9,2,1,1,46,1,0,3,0,1,-9,1,1,0,0,4,7.6071286,7.3694787,0,2,0,-9,7,0,2,-93.486572,0,0,0,44,1,4,3,2,3,2019,2,1,9,1,55,55,15,1,0,3,0,4.6646791,4.6646791,0,0,0,0,0,0,0,0,1,1,0,.53701872,0,0,0,55.439999,52.990002,50.099998,46.939999,6,1,1,0,0,12,2,1,652.20001,496227.44,0,0,1491.9285 -7286,8985,16407,-9,16408,16406,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.14386,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,1,652.20001,496227.44,0,0,1491.9285 -7286,8985,16408,16406,-9,-9,1,1,0,44,1,0,3,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-2,12.456001,0,0,1,46,1,4,1,1,1,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2917223,0,0,0,50.099998,46.939999,55.439999,52.990002,6,1,1,0,0,12,2,1,652.20001,496227.44,0,0,1491.9285 -7286,8985,16409,-9,16408,16406,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-999.08539,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,2,1,652.20001,496227.44,0,0,1491.9285 -7286,8985,16410,-9,16408,16406,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.85229,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,1,652.20001,496227.44,0,0,1491.9285 -7287,8986,16411,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,6.4115262,6.498126,3,0,0,0,-9,0,-951.55634,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.97635901,6.644577,0,0,57.66,45.080002,-9,-9,7,1,1,0,0,6,2,1,197,214866.2,0,0,895.66693 -7287,8987,16412,-9,16411,-9,2,1,0,36,2,0,0,0,2,-9,2,1,0,0,4,7.8726315,8.0848722,0,3,0,0,0,-9,0,-1049.9103,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,40,38,15,1,0,-9,1,10.321856,10.321856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,6,4,1,141,17002.336,0,0,2068.1763 -7288,8988,16413,16414,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,1,3,0,7.1581554,7.3654823,1,0,-9,6,0,2,29.060513,0,0,0,79,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,2.373596,0,0,0,0,0,1,1,0,2.0968161,7.3623133,0,0,54,45,57.75,22.360001,6,1,1,0,0,12,2,1,687.5,267759.03,0,0,2661.5264 -7288,8988,16414,16413,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,6.5009503,5.8641138,1,0,-9,6,0,-2,-149.21255,0,0,0,81,3,3,3,3,3,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,1,0,0,3.1851132,0,0,0,7,1,1,0,4.9329596,6.2533011,14.70056,1,57.75,22.360001,54,45,7,1,1,0,0,12,2,1,687.5,267759.03,0,0,2661.5264 -7289,8989,16415,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,5,8.985939,9.0437775,0,3,0,0,0,-9,0,-897.85034,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,43,15,1,0,-9,0,21.817583,21.817583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,5,1,785,291990.56,0,0,2449.0066 -7290,8990,16416,16419,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,8.8921528,8.6094751,0,2,0,-9,11,0,-1,-34.187775,0,0,0,45,1,4,1,2,1,2019,1,1,21,10,39,38,15,1,1,1,0,19.153793,19.153793,0,0,0,0,0,0,0,0,1,1,0,3.8646135,0,0,0,39.23,60.150002,51.240002,58.84,3,1,1,0,0,2,5,1,669.5,730349.06,0,0,4966.7432 -7290,8990,16417,-9,16419,16416,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.743,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,669.5,730349.06,0,0,4966.7432 -7290,8990,16418,-9,16419,16416,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1171.3115,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,1,669.5,730349.06,0,0,4966.7432 -7290,8990,16419,16416,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,9.0419664,8.9987669,0,2,0,-9,11,0,1,39.358246,0,0,0,44,1,4,1,2,1,2019,1,2,8,0,35,35,15,1,0,1,0,31.188202,31.188202,0,0,0,0,0,0,0,0,1,1,0,1.2113802,0,0,0,51.240002,58.84,39.23,60.150002,5,1,1,0,0,2,5,1,669.5,730349.06,0,0,4966.7432 -7291,8991,16420,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,4,8.360136,8.0963564,0,3,0,0,0,-9,0,-965.42926,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,37,38,15,1,0,-9,0,11.103588,11.103588,0,0,0,0,0,0,0,2,0,0,0,2.4133632,0,0,3,51.830002,57.200001,-9,-9,6,1,1,0,0,9,4,1,555,1764333.8,0,0,2568.04 -7292,8992,16421,16422,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,7.3506203,7.7232571,1,0,-9,9,0,4,22.305986,0,0,0,68,2,4,1,2,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7735105,7.630713,0,0,57.09,46.700001,41.650002,60.41,4,1,1,0,0,4,3,1,332.5,1991794,0,0,2515.1465 -7292,8992,16422,16421,-9,-9,2,1,0,68,1,0,0,0,2,-9,2,1,0,0,4,6.3885207,7.278224,6.6808906,1,0,-9,9,0,-4,15.155988,0,0,0,72,1,3,3,-9,-9,2019,2,1,8,0,8,0,15,1,0,4,0,12.887867,12.887867,0,0,0,0,0,0,0,0,1,1,0,3.0239098,6.702744,0,0,41.650002,60.41,57.09,46.700001,6,1,1,0,0,4,3,1,332.5,1991794,0,0,2515.1465 -7293,8993,16423,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,1,1,0,0,4,8.1967039,8.6242018,6.8519483,3,0,0,0,-9,0,-940.76563,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,45,43,15,1,0,-9,0,11.596506,11.596506,0,0,0,0,0,0,0,0,1,1,0,7.0206947,6.9009056,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,5,1,183,951487.06,0,0,3463.4521 -7294,8994,16424,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,5.6279263,5.6471372,3,0,0,0,-9,0,-955.81213,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7519739,5.5337029,4.3774776,3,59.060001,35.360001,-9,-9,6,1,1,0,0,5,2,1,675,124963.64,0,0,365.63071 -7295,8995,16425,16426,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,0,4,0,0,0,2,0,-9,26,0,2,-92.353676,0,0,0,48,2,3,1,-9,2,2019,1,1,12,2,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9991136,0,0,0,45.790001,62.619999,61.279999,48.880001,7,1,1,0,0,1,2,0,600.66669,345735.59,0,0,1246.9037 -7295,8995,16426,16425,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.5594058,7.9475517,0,2,0,-9,26,0,-2,68.516922,0,0,0,50,3,4,1,-9,-9,2019,1,2,6,0,22,22,15,1,0,1,0,10.121009,10.121009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,48.880001,45.790001,62.619999,6,1,1,0,0,1,2,0,600.66669,345735.59,0,0,1246.9037 -7295,8995,16427,-9,16426,16425,4,1,0,17,2,0,1,0,3,1,3,3,0,0,2,0,0,0,2,0,0,0,-9,0,-941.22736,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.719999,41.41,-9,-9,1,1,1,1,0,1,2,0,600.66669,345735.59,0,0,1246.9037 -7295,8996,16428,-9,16426,16425,3,1,1,21,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-978.57159,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,0,22,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,-9,-9,7,1,1,1,0,1,1,0,275,109928.77,0,0,224.12436 -7296,8997,16429,16430,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,0,4,8.5651903,9.0016022,0,1,0,-9,6,0,6,-47.394638,0,0,1,32,1,4,1,1,2,2019,1,2,8,0,80,35,15,1,0,1,0,10.871508,10.871508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,41.59,61.77,7,1,1,0,0,8,5,1,770,200426.97,0,0,4392.8481 -7296,8997,16430,16429,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.9713383,8.861042,0,1,0,-9,6,0,-6,-24.133108,0,0,0,38,1,4,1,-9,-9,2019,1,1,10,0,41,41,15,1,0,1,0,22.461754,22.461754,0,0,0,0,0,0,0,0,0,0,0,2.9601233,0,0,0,41.59,61.77,57.16,56.150002,6,1,1,0,0,8,5,1,770,200426.97,0,0,4392.8481 -7297,8998,16431,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-892.40295,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.740002,16.459999,-9,-9,1,1,1,0,0,13,1,0,839,160032.06,0,0,1663.0283 -7297,8999,16432,-9,16431,-9,2,1,0,25,2,0,0,0,1,-9,6,3,0,1,4,0,0,0,3,0,-9,0,-9,0,-1081.1437,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.781006,3,40.959999,61.139999,-9,-9,3,1,1,0,1,13,1,0,1117,0,0,0,886.7439 -7297,9000,16433,-9,16431,-9,3,1,0,23,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-962.90265,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,0,563,0,0,0,-152.74507 -7298,9001,16434,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,0,2,0,5.2987719,5.3543434,3,0,0,0,-9,0,-1001.6692,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,13.134233,0,0,0,0,149.01598,0,1,1,0,4.7496676,5.3595052,0,0,52.799999,19.65,-9,-9,6,1,1,0,0,12,2,1,482,-37023.77,0,0,560.65106 -7299,9002,16435,-9,16437,16436,2,1,0,26,2,0,0,0,2,-9,2,1,0,0,3,7.8265014,8.0125828,0,3,0,0,0,-9,0,-940.17029,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,23,8,96,2,15,1,1,-9,1,4.3185191,4.3185191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.610001,49.040001,-9,-9,3,4,2,0,1,8,4,1,1200,-11911.595,0,0,1121.3047 -7299,9003,16436,16437,-9,-9,3,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,0,0,0,1,0,-9,37,0,5,-19.195974,0,0,0,56,2,2,1,-9,-9,2019,1,1,17,5,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.240002,43.950001,47.880001,18.43,4,4,5,0,0,8,3,1,527.5,657961.44,0,0,2162.9397 -7299,9003,16437,16436,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,7.3188324,7.6987486,6.3530622,1,0,-9,37,0,-5,28.359612,0,0,0,61,1,3,1,-9,-9,2019,1,3,11,0,25,24,15,1,0,1,0,7.6047592,7.6047592,0,0,0,0,0,0,0,5.48,1,1,0,6.6365981,6.4131403,3.0641687,3,47.880001,18.43,40.240002,43.950001,4,1,1,0,0,8,3,1,527.5,657961.44,0,0,2162.9397 -7300,9004,16438,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,0,4,8.4846897,8.4651508,0,3,0,-9,0,0,0,-903.90845,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,38,38,15,1,0,-9,0,11.821452,11.821452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,9,4,0,323,339787.19,0,0,3548.1294 -7300,9005,16439,-9,-9,-9,2,1,0,40,2,0,0,0,2,-9,2,1,0,0,3,7.8663087,8.1468277,0,3,0,-9,0,0,0,-1051.2378,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,37,37,15,1,0,-9,0,10.000286,10.000286,0,0,0,0,0,0,0,0,0,0,0,3.3687172,0,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,9,4,0,579,112412.73,0,0,2035.5656 -7301,9006,16440,16441,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.908411,7.9825282,1,0,-9,31,0,13,8.7746096,0,0,0,59,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1918492,7.802114,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,2,3,1,1207,518418.56,0,0,2184.5996 -7301,9006,16441,16440,-9,-9,1,1,0,59,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,31,0,-13,39.785648,0,0,0,72,3,3,3,3,3,2019,4,2,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,2,3,1,1207,518418.56,0,0,2184.5996 -7302,9007,16442,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-980.23621,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6674111,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,2,1,1,129,45639.781,0,0,1511.5905 -7303,9008,16443,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-918.3299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,7.3489594,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,13,1,1,220,254475,0,0,99.509216 -7303,9009,16444,-9,16443,-9,2,1,0,52,2,0,0,0,3,-9,2,1,0,0,4,7.3089204,7.2193155,0,3,0,0,0,-9,0,-1035.6545,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,22,22,15,1,0,-9,1,5.3583589,5.3583589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.41,40.91,-9,-9,7,1,1,0,0,13,3,1,483,25515.637,0,0,763.4668 -7304,9010,16445,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,2,0,8.173522,8.2788963,3,0,0,0,-9,0,-946.76965,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9496534,8.0251923,0,0,51.099998,38.849998,-9,-9,6,1,1,0,0,11,4,1,215,803363.56,0,0,2946.2146 -7305,9011,16446,16447,-9,-9,2,1,1,74,1,0,0,0,2,-9,2,1,0,0,3,6.1684151,6.2839231,0,1,0,-9,8,0,1,-9.0318832,0,0,0,73,3,4,3,3,3,2019,2,1,9,0,10,9,15,1,0,4,0,5.4385085,5.4385085,0,0,0,0,0,0,0,0,1,1,0,3.2316093,0,0,0,56.880001,50.889999,54,51,6,1,1,0,0,10,2,1,463.5,445247.69,0,0,2262.7178 -7305,9011,16447,16446,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,5.9685521,6.2317195,1,0,-9,55,0,-1,-231.39896,0,0,0,74,2,3,1,3,3,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6730518,6.3652658,0,0,54,51,56.880001,50.889999,1,1,1,0,0,10,2,1,463.5,445247.69,0,0,2262.7178 -7306,9012,16448,16449,-9,-9,3,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.8920503,8.2300625,0,1,0,-9,5,0,-7,-85.393921,0,0,0,59,3,4,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,9.4964514,9.4964514,0,0,0,0,0,0,0,42,1,1,0,0,0,39.552094,3,46.080002,57.200001,51.240002,58.84,6,1,1,0,0,9,5,1,820.5,336439.31,0,0,3993.3679 -7306,9012,16449,16448,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,8.3563089,8.6793995,7.1555443,1,0,-9,5,0,7,-164.51176,0,0,0,52,2,3,1,3,2,2019,1,3,17,6,37,42,15,1,1,1,0,10.582111,10.582111,0,0,0,0,0,0,0,14.5,1,1,0,0,7.3386087,19.285419,3,51.240002,58.84,46.080002,57.200001,4,1,1,0,0,9,5,1,820.5,336439.31,0,0,3993.3679 -7307,9013,16450,16451,-9,-9,1,1,0,58,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,6,0,5,-45.667137,0,0,0,53,2,2,1,3,2,2019,3,2,20,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.939999,36.869999,44.689999,25.1,5,1,1,0,0,4,3,1,2077,1564736.5,0,0,1816.9849 -7307,9013,16451,16450,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.1397066,8.4074879,0,1,0,-9,6,0,-5,54.531242,0,0,0,58,2,2,3,3,3,2019,2,1,27,10,37,37,15,1,1,3,0,16.401125,16.401125,0,0,0,0,0,0,0,71.5,0,0,0,0,0,70.68251,1,44.689999,25.1,35.939999,36.869999,3,1,1,0,0,4,3,1,2077,1564736.5,0,0,1816.9849 -7308,9014,16452,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,7.1206322,7.4191985,5.3974266,3,0,0,0,-9,0,-925.31653,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,28,30,15,1,0,-9,0,6.2982049,6.2982049,0,0,0,0,0,0,0,0,0,0,0,.36658475,5.4016237,0,0,37.360001,49.119999,-9,-9,4,1,1,0,0,8,3,1,1040,156603.2,0,0,1397.6272 -7309,9015,16453,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,0,5,8.5278511,8.5726776,0,3,0,0,0,-9,0,-885.03802,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,35,35,15,1,0,-9,0,18.027918,18.027918,0,0,0,0,0,0,0,14.5,0,0,0,0,0,25.495489,3,54.099998,59.110001,-9,-9,7,1,1,0,0,12,5,1,283,203192.81,0,0,1671.1782 -7310,9016,16454,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,1,1,0,6.5515327,6.7956972,3,0,0,0,-9,0,-1004.3176,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,6.9271393,0,9.3028536,25.14356,0,1,1,0,6.540626,6.5138969,0,0,50.740002,9.7600002,-9,-9,7,1,1,0,0,12,2,0,1117,101118.58,0,0,1436.0402 -7311,9017,16455,16456,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,0,3,9.3047733,9.0038195,0,2,0,-9,7,0,9,-50.040211,0,0,0,49,1,4,1,-9,-9,2019,1,1,10,1,38,38,15,1,0,1,0,42.949951,42.949951,0,0,0,0,0,0,0,0,0,0,0,5.7020502,0,0,0,51,49,57.16,56.150002,5,1,1,0,0,5,5,1,435.66666,1282023.3,0,0,5089.6382 -7311,9017,16456,16455,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,7.719789,7.322886,0,2,0,-9,21,0,0,57.914497,0,0,0,58,2,3,1,2,2,2019,1,2,6,0,24,19,15,1,0,1,0,7.5579858,7.5579858,0,0,0,0,0,0,0,0,0,0,0,5.0640225,0,0,0,57.16,56.150002,51,49,6,1,1,0,0,5,5,1,435.66666,1282023.3,0,0,5089.6382 -7311,9017,16457,-9,16456,16455,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.15283,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,5,1,435.66666,1282023.3,0,0,5089.6382 -7312,9018,16458,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,2,1,0,0,4,8.4573059,8.5203896,0,3,0,0,0,-9,0,-947.95752,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,39,40,15,1,0,-9,0,12.468741,12.468741,0,0,0,0,0,0,0,0,0,0,0,2.1922336,0,0,0,51.830002,57.200001,-9,-9,4,1,1,0,0,5,4,1,714,258400.3,0,0,1667.4474 -7313,9019,16459,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,7.8819642,8.161746,7.1618862,3,0,0,0,-9,0,-1138.986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,23,0,15,1,0,-9,0,13.927149,13.927149,0,0,0,0,0,0,0,0,0,0,0,7.8591099,7.4108729,0,0,50.060001,29.879999,-9,-9,6,1,1,0,0,13,4,1,397,429732.19,0,0,1898.918 -7313,9020,16460,-9,16459,-9,2,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,7.9553409,7.9659424,0,3,0,0,0,-9,0,-1067.4474,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,38,44,15,1,0,-9,1,9.2105322,9.2105322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,1540,-97551.672,0,0,1709.8927 -7314,9021,16461,16462,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,5,8.3395567,8.5896215,0,1,0,-9,3,0,3,47.44381,0,0,1,29,2,2,1,2,2,2019,1,2,6,0,37,36,15,1,0,1,0,15.241125,15.241125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,28.809999,57.599998,6,1,1,0,0,4,5,0,510.5,56338.457,0,0,2826.5415 -7314,9021,16462,16461,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,0,2,8.4119291,8.2502537,0,1,0,-9,3,0,-3,20.499346,0,1,0,32,1,5,1,-9,-9,2019,1,1,18,5,45,45,15,1,1,1,0,9.756052,9.756052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.809999,57.599998,57.060001,57.759998,3,1,1,0,0,4,5,0,510.5,56338.457,0,0,2826.5415 -7315,9022,16463,-9,16466,16464,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.8756,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,0,1825.5,646585.38,0,0,3071.3491 -7315,9022,16464,16466,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.7278967,8.2747059,0,2,0,-9,2,0,4,113.22178,0,0,0,36,2,3,1,-9,-9,2019,1,1,10,0,41,43,15,1,0,1,0,13.174653,13.174653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,49.400002,58.080002,43.459999,6,1,1,0,0,12,4,0,1825.5,646585.38,0,0,3071.3491 -7315,9022,16465,-9,16466,16464,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.6072,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,0,1825.5,646585.38,0,0,3071.3491 -7315,9022,16466,16464,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,3,7.47791,7.091269,0,2,0,-9,7,0,-4,-19.529648,0,0,1,40,2,3,1,-9,-9,2019,1,2,9,0,18,18,15,1,0,1,0,10.720725,10.720725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.080002,43.459999,51.139999,49.400002,6,1,1,0,0,12,4,0,1825.5,646585.38,0,0,3071.3491 -7316,9023,16467,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,5,8.8298588,9.1730385,0,3,0,0,0,-9,0,-1089.3224,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,40,0,15,1,0,-9,0,31.195831,31.195831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,8,5,0,224,403601.06,0,0,2308.2617 -7317,9024,16468,16470,-9,-9,1,1,1,37,1,1,3,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,16,0,2,0,0,0,0,35,2,1,3,3,3,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.370001,24.200001,15.05,27.23,2,1,1,0,0,9,1,0,782.79999,-15353.606,0,0,1727.1189 -7317,9024,16469,-9,16470,16468,6,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.8876,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,782.79999,-15353.606,0,0,1727.1189 -7317,9024,16470,16468,-9,-9,2,1,0,35,1,1,3,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,7,0,-2,0,0,0,1,37,3,1,3,3,3,2019,4,1,36,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,123.7448,2,15.05,27.23,30.370001,24.200001,1,1,1,0,0,9,1,0,782.79999,-15353.606,0,0,1727.1189 -7317,9024,16471,-9,16470,16468,4,1,1,13,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1167.6167,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,782.79999,-15353.606,0,0,1727.1189 -7317,9024,16472,-9,16470,16468,5,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.2808,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,782.79999,-15353.606,0,0,1727.1189 -7317,9025,16473,-9,16470,16468,3,1,1,18,2,1,3,0,2,1,2,1,0,0,4,6.5599523,6.4829688,0,3,0,0,0,-9,0,-1071.3651,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,10,0,15,1,0,-9,1,7.0555916,7.0555916,0,0,0,0,0,0,0,7,1,0,1,0,0,4.4361138,3,44.779999,55.099998,-9,-9,6,1,1,0,0,9,2,0,197,86864.672,0,0,859.34619 -7318,9026,16474,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1003.4963,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,5,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5731859,0,0,0,45.439999,44.139999,-9,-9,4,1,1,0,0,10,1,1,141,6445.0884,0,0,-190.82709 -7319,9027,16475,-9,16476,16477,4,1,1,17,2,0,1,1,2,0,7,2,0,0,4,5.8396707,5.7139463,0,2,0,0,0,-9,0,-1011.3023,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,48,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,5,1,1,0,0,11,5,1,528,660596.31,0,0,4907.0308 -7319,9027,16476,16477,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,9.0640955,9.0153704,0,2,0,-9,9,0,-8,-48.331902,0,0,0,54,2,4,1,3,2,2019,1,1,12,0,36,36,15,1,0,1,0,24.447163,24.447163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,45.91,59.889999,5,1,1,0,0,11,5,1,528,660596.31,0,0,4907.0308 -7319,9027,16477,16476,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,8.4898033,8.6564369,0,2,0,-9,9,0,8,22.116617,0,0,0,46,2,4,1,2,2,2019,1,2,12,0,38,36,15,1,0,1,0,21.874987,21.874987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,46.5,58.259998,5,1,1,0,0,11,5,1,528,660596.31,0,0,4907.0308 -7319,9028,16478,-9,16476,16477,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,3,7.1821628,7.5471535,0,3,0,0,0,-9,0,-1027.77,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,35,21,15,1,0,-9,1,5.3674545,5.3674545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.220001,-9,-9,5,1,1,0,0,11,3,1,426,-28084.287,0,0,170.53267 -7320,9029,16479,16480,-9,-9,1,1,1,40,1,0,1,0,2,-9,2,1,0,0,4,8.8949938,9.005373,0,2,0,-9,18,0,3,-79.325729,0,0,0,37,2,4,1,2,2,2019,1,2,9,1,45,50,15,1,0,1,0,24.855148,24.855148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,45.32,61.529999,5,1,1,0,0,6,5,1,445.5,289289.13,0,0,4033.4451 -7320,9029,16480,16479,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,4,7.9405255,7.7127409,0,2,0,-9,18,0,-3,-15.845671,0,0,1,40,2,4,1,2,2,2019,1,1,9,0,29,30,15,1,0,1,0,9.1317072,9.1317072,0,0,0,0,0,0,0,0,1,1,0,3.4466949,0,0,0,45.32,61.529999,52,56,6,1,1,0,0,6,5,1,445.5,289289.13,0,0,4033.4451 -7321,9030,16481,16482,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.7313938,8.9507761,0,1,0,-9,6,0,1,-92.928841,0,0,0,48,2,3,1,3,3,2019,1,1,5,0,37,45,15,1,0,1,0,20.279222,20.279222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,57.330002,53.459999,6,1,1,0,0,11,5,1,750.5,506633.22,0,0,3616.9707 -7321,9030,16482,16481,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.4671497,8.576026,0,1,0,-9,6,0,-1,73.093987,0,0,0,49,2,3,1,3,-9,2019,1,2,12,0,40,40,15,1,0,1,0,12.586151,12.586151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,54.369999,54.799999,6,1,1,0,0,11,5,1,750.5,506633.22,0,0,3616.9707 -7321,9031,16483,-9,16481,16482,3,1,0,24,2,0,0,0,2,1,2,1,0,0,4,7.5760117,7.6816249,0,3,0,0,0,-9,0,-1018.389,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,4,0,43,0,15,1,0,-9,1,6.6339955,6.6339955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,11,3,1,3140,142287.5,0,0,1760.6577 -7322,9032,16484,16485,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,11,0,8,0,0,0,0,73,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.619999,41.48,30.32,59.619999,6,1,1,0,0,2,1,1,560,97471.695,0,0,1539.8164 -7322,9032,16485,16484,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,11,0,-8,0,0,0,0,81,3,2,3,3,3,2019,4,1,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.44887146,3,30.32,59.619999,39.619999,41.48,7,1,1,0,0,2,1,1,560,97471.695,0,0,1539.8164 -7323,9033,16486,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-956.17938,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.93,26.59,-9,-9,5,1,1,0,0,11,1,1,214,-59326.613,0,0,1929.4891 -7324,9034,16487,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.3030272,8.1163836,0,3,0,0,0,-9,0,-945.25745,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,40,40,15,1,0,-9,0,11.27789,11.27789,0,0,0,0,0,0,0,0,0,0,0,5.6298971,0,0,0,42.299999,57.540001,-9,-9,6,1,1,0,0,9,4,0,376,-29212.834,0,0,1152.8751 -7325,9035,16488,16489,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,3,7.8876467,8.0210152,0,1,0,-9,4,0,1,96.54808,0,0,0,31,1,4,1,1,1,2019,1,2,12,2,45,45,15,1,0,1,0,6.0316577,6.0316577,0,0,0,0,0,0,0,0,0,0,0,4.3409462,0,0,0,51.41,56.150002,54.43,49.119999,5,2,3,0,0,8,4,1,832,477539.25,0,0,3059.1445 -7325,9035,16489,16488,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,7.9512005,8.2523851,0,1,0,-9,4,0,-1,-122.99332,0,0,1,32,1,3,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,7.6717625,7.6717625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.43,49.119999,51.41,56.150002,4,2,3,0,0,8,4,1,832,477539.25,0,0,3059.1445 -7326,9036,16490,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1036.2466,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.669998,48.650002,-9,-9,5,1,1,0,0,6,1,1,321,12228.147,0,0,-108.23833 -7327,9037,16491,16492,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,3,8.471489,8.4196835,0,1,0,-9,1,-9,-5,25.666489,-9,0,1,46,2,4,1,2,2,2019,1,1,12,1,35,0,15,1,0,1,0,14.102123,14.102123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.330002,50.400002,54.200001,57.490002,6,1,1,0,0,2,5,0,3828,236573.84,0,0,3493.8367 -7327,9037,16492,16491,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.1434069,8.365674,0,1,0,-9,1,-9,5,-28.41807,-9,0,0,41,2,3,1,2,2,2019,1,2,10,0,38,0,15,1,0,1,0,13.236688,13.236688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,46.330002,50.400002,6,1,1,0,0,2,5,0,3828,236573.84,0,0,3493.8367 -7327,9038,16493,-9,16491,16492,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,5,8.3859549,8.1246262,0,3,0,-9,0,-9,0,-916.25397,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,0,15,1,0,-9,1,11.88433,11.88433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,1,2,4,0,236,26393.01,0,0,1159.0881 -7328,9039,16494,16495,-9,-9,1,1,1,60,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,31,0,0,26.951023,0,0,0,60,1,4,1,2,2,2019,3,2,17,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,49.119999,57.279999,4,1,1,0,0,10,4,1,587.5,286489.44,0,0,2676.0664 -7328,9039,16495,16494,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,8.5298376,8.4158192,0,1,0,-9,32,0,0,-59.663204,0,0,0,60,2,2,3,2,1,2019,2,1,12,0,44,40,15,1,0,3,0,15.639026,15.639026,0,0,0,0,0,0,0,14.5,1,1,0,3.4479215,0,20.745457,3,49.119999,57.279999,46,39,5,1,1,0,0,10,4,1,587.5,286489.44,0,0,2676.0664 -7328,9040,16496,-9,16495,16494,3,1,1,28,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-983.92102,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.6684512,3,62.389999,56.709999,-9,-9,6,1,1,1,0,10,1,1,1592,-95147.648,0,0,0 -7329,9041,16497,16498,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.2034321,7.7668529,0,1,0,-9,9,0,1,11.814526,0,0,0,49,2,3,1,3,3,2019,1,1,11,0,33,33,15,1,0,1,0,13.721801,13.721801,0,0,0,0,0,0,0,0,0,0,0,4.1312575,0,0,0,51.830002,57.200001,60.689999,50.509998,6,1,1,0,0,11,5,1,1165,559488.75,0,0,2992.3418 -7329,9041,16498,16497,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.4343491,8.5850487,6.7832017,1,0,-9,9,0,-1,-2.6874478,0,0,0,50,2,4,1,2,2,2019,1,2,11,0,52,44,15,1,0,1,0,9.890274,9.890274,0,0,0,0,0,0,0,0,0,0,0,0,6.332994,0,0,60.689999,50.509998,51.830002,57.200001,5,1,1,0,0,11,5,1,1165,559488.75,0,0,2992.3418 -7330,9042,16499,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1105.3475,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.84,39.23,-9,-9,6,1,1,0,0,7,1,0,270,-43864.68,0,0,258.76334 -7331,9043,16500,16501,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,33,0,2,-66.427597,0,0,0,70,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3987479,0,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,7,3,1,374,1176263.1,0,0,2754.7017 -7331,9043,16501,16500,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.8105106,7.8058386,1,0,-9,29,0,-2,84.590057,0,0,0,72,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.011415,8.0054035,0,0,57.16,56.150002,62.389999,56.709999,7,1,1,0,0,7,3,1,374,1176263.1,0,0,2754.7017 -7332,9044,16502,16504,-9,-9,1,1,0,27,1,1,1,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,4,0,-11,0,0,1,1,38,2,1,3,2,-9,2019,4,2,15,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.93966,2,35.57,63.560001,38.18,19.92,6,1,1,0,0,1,1,0,1072,18987.189,0,0,3833.9138 -7332,9044,16503,-9,16502,16504,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-963.40759,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,1,1,0,1072,18987.189,0,0,3833.9138 -7332,9044,16504,16502,-9,-9,2,1,1,38,1,1,1,0,2,-9,3,3,0,1,1,0,0,0,2,0,-9,4,0,11,0,0,0,0,27,2,4,3,-9,-9,2019,4,1,22,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.18,19.92,35.57,63.560001,1,1,1,1,0,1,1,0,1072,18987.189,0,0,3833.9138 -7333,9045,16505,-9,16506,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-881.45911,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,9,2,1,140,-139974.38,0,0,1182.3204 -7333,9045,16506,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,1,1,0,0,3,6.947907,7.5390139,6.4019928,4,0,0,0,-9,0,-1023.3461,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,21,10,16,10,15,1,1,-9,0,6.5444403,6.5444403,0,0,0,0,0,0,0,0,1,1,0,6.2306619,0,0,0,47.470001,44.669998,-9,-9,6,1,1,0,0,9,2,1,140,-139974.38,0,0,1182.3204 -7334,9046,16507,16508,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.0851822,8.3448858,6.8159118,1,0,-9,31,0,3,-141.18387,0,0,0,55,2,3,1,3,3,2019,1,1,10,1,40,40,15,1,0,1,0,10.048354,10.048354,0,0,0,0,0,0,0,0,0,0,0,1.9885536,7.0657258,0,0,51,49,40.919998,50.34,5,1,1,0,0,5,4,1,533,566900.31,0,0,2847.0894 -7334,9046,16508,16507,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.103056,7.9902773,0,1,0,-9,30,0,-3,-12.082593,0,0,0,58,2,3,1,2,2,2019,1,2,13,1,35,34,15,1,0,1,0,7.7540102,7.7540102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.919998,50.34,51,49,4,1,1,0,1,5,4,1,533,566900.31,0,0,2847.0894 -7334,9047,16509,-9,16508,16507,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,7.1868682,7.403707,0,3,0,0,0,-9,0,-1052.5844,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,30,15,1,0,-9,1,5.717824,5.717824,0,0,0,0,0,0,0,0,0,0,0,1.3805099,0,0,0,28.969999,54.560001,-9,-9,4,1,1,0,0,5,3,1,156,-19507.158,0,0,877.43182 -7335,9048,16510,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1130.1238,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,3.0044,0,0,0,0,59.190662,0,1,1,0,0,0,0,0,62.18,36.18,-9,-9,4,1,1,0,0,7,1,1,807,372896.47,0,0,655.1452 -7336,9049,16511,-9,-9,-9,1,1,0,85,2,0,0,0,1,-9,4,3,0,0,2,0,6.5943027,6.9620156,3,0,0,0,-9,0,-1126.0388,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.4802237,0,0,0,0,78.873009,0,1,1,0,3.9141753,7.1301484,0,0,56.91,23.08,-9,-9,5,1,1,0,0,13,2,1,328,59438.168,0,0,-263.54657 -7337,9050,16512,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.02911,6.8951464,3,0,0,0,-9,0,-1105.1058,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.750999,0,0,53.740002,38.580002,-9,-9,3,1,1,0,0,7,2,0,626,567382.19,0,0,431.01306 -7338,9051,16513,16514,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,6.955204,6.8997788,1,0,-9,55,0,1,21.419523,0,0,0,73,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7816787,0,0,55.93,39.419998,63.98,32.549999,6,1,1,0,0,11,3,1,667.5,495399.59,0,0,2482.2168 -7338,9051,16514,16513,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.8949604,7.8094945,1,0,-9,55,0,-1,83.605156,0,0,0,74,2,2,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8719664,0,0,63.98,32.549999,55.93,39.419998,6,1,1,0,0,11,3,1,667.5,495399.59,0,0,2482.2168 -7339,9052,16515,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,0,4,9.0393467,9.0153065,0,3,0,0,0,-9,0,-1142.8027,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,48,40,15,1,0,-9,1,19.770033,19.770033,0,0,0,0,0,0,0,2,1,1,0,6.7397113,0,6.7471595,3,50.970001,53.419998,-9,-9,5,1,1,0,0,8,5,1,108,294486.78,0,0,3305.2629 -7340,9053,16516,16519,-9,-9,2,1,1,39,1,1,2,0,2,-9,2,1,0,0,3,8.5273838,8.4933939,0,2,0,-9,6,0,-3,-30.685785,0,0,0,42,3,1,3,2,2,2019,2,1,22,10,35,44,15,1,1,3,0,17.254232,17.254232,0,0,0,0,0,0,0,5.48,1,1,0,0,0,7.96067,3,36.779999,46.669998,40.959999,20.51,2,1,1,0,1,13,3,1,1129,102297.05,0,0,2492.5083 -7340,9053,16517,-9,16519,16516,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.822,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,1129,102297.05,0,0,2492.5083 -7340,9053,16518,-9,16519,16516,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.7074,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,1129,102297.05,0,0,2492.5083 -7340,9053,16519,16516,-9,-9,1,1,0,42,1,1,2,0,3,-9,6,3,0,1,1,0,0,0,2,0,-9,6,0,3,-58.251713,0,0,1,39,2,3,1,2,3,2019,3,2,20,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.49116,3,40.959999,20.51,36.779999,46.669998,3,1,1,0,1,13,3,1,1129,102297.05,0,0,2492.5083 -7341,9054,16520,16521,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,50,0,-4,130.15559,0,0,0,72,3,4,3,3,-9,2019,4,2,18,7,0,0,15,4,1,4,0,0,0,1,0,28.52849,0,0,0,0,0,1,1,0,0,0,0,0,37.279999,18.27,56,52,6,2,3,0,0,5,2,1,1032.5,439580.56,0,0,1682.8365 -7341,9054,16521,16520,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,7.2756023,6.8531346,1,0,-9,50,0,4,-59.135166,0,0,0,68,3,1,3,3,3,2019,4,1,9,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2076135,9.6685581,1,56,52,37.279999,18.27,7,2,3,0,0,5,2,1,1032.5,439580.56,0,0,1682.8365 -7342,9055,16522,-9,-9,-9,2,1,1,40,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1109.9562,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.629999,30.379999,-9,-9,1,1,1,0,0,9,1,0,252,15103.671,0,0,174.54611 -7343,9056,16523,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1018.2471,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.889999,18.610001,-9,-9,1,1,1,0,0,7,1,0,1010,55161.918,0,0,239.88519 -7344,9057,16524,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,6,3,0,0,5,0,0,0,4,0,-9,0,-9,0,-955.74988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.36924,3,62.389999,56.709999,-9,-9,7,4,2,0,0,8,1,0,200,111372.99,0,0,0 -7345,9058,16525,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1052.5157,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,3,4,0,0,8,1,0,661,82769.336,0,0,1861.6371 -7346,9059,16526,-9,16528,16527,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-985.3479,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,1,319.66666,721247.25,0,0,6002.1606 -7346,9059,16527,16528,-9,-9,2,1,1,47,1,1,1,0,1,-9,2,1,0,0,4,9.0970755,8.7169113,0,2,0,-9,2,0,11,19.479549,0,0,0,36,1,3,1,-9,-9,2019,1,1,6,0,38,37,15,1,0,1,0,18.729441,18.729441,0,0,0,0,0,0,0,0,1,1,0,5.1127472,0,0,0,58.150002,52.91,45.540001,50.77,6,1,1,0,0,12,5,1,319.66666,721247.25,0,0,6002.1606 -7346,9059,16528,16527,-9,-9,1,1,0,36,1,1,1,0,1,-9,5,1,0,0,3,8.8919182,8.9163704,0,2,0,-9,2,0,-11,95.050049,0,0,1,47,1,4,1,-9,-9,2019,1,2,8,0,35,72,15,1,0,1,0,19.028273,19.028273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.540001,50.77,58.150002,52.91,6,1,1,0,0,12,5,1,319.66666,721247.25,0,0,6002.1606 -7347,9060,16529,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,0,3,0,7.2511029,7.6947899,3,0,0,0,-9,0,-957.43732,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.580472,6.7463493,0,0,68.349998,34.709999,-9,-9,6,2,3,0,0,8,2,1,623,163080.77,0,0,751.77136 -7348,9061,16530,-9,-9,-9,1,1,0,41,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-913.65875,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,26,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.780001,17.809999,-9,-9,1,1,1,0,0,5,1,0,278,65328.363,0,0,1671.9546 -7349,9062,16531,16532,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.5925417,8.6624966,0,1,0,-9,3,0,-2,-44.420689,0,0,1,32,1,4,1,1,2,2019,1,1,16,4,52,57,15,1,1,1,0,11.038334,11.038334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.880001,59.43,48.869999,58.549999,6,1,1,0,0,12,5,1,2153.5,226600.09,0,0,3143.6367 -7349,9062,16532,16531,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.2090034,8.4321527,0,1,0,-9,3,0,2,156.34271,0,0,0,30,1,4,1,1,1,2019,1,2,5,0,38,41,15,1,0,1,0,9.9018631,9.9018631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,34.880001,59.43,6,1,1,0,0,12,5,1,2153.5,226600.09,0,0,3143.6367 -7350,9063,16533,16534,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,5,7.6686258,7.9330378,0,1,0,-9,4,0,3,-5.2133012,0,1,0,23,2,5,1,-9,-9,2019,1,1,7,0,43,42,15,1,0,1,0,7.5436106,7.5436106,0,0,0,0,0,0,0,0,0,0,0,2.9200559,0,0,0,57.060001,57.759998,54.099998,59.110001,7,1,1,0,0,5,4,1,223,39247.277,0,0,2308.5369 -7350,9063,16534,16533,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,0,5,8.2379827,8.1917524,0,1,0,-9,4,0,-3,-19.077894,0,1,1,26,2,5,1,2,2,2019,1,2,3,0,39,39,15,1,0,1,0,9.7156143,9.7156143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,57.060001,57.759998,7,1,1,0,0,5,4,1,223,39247.277,0,0,2308.5369 -7351,9064,16535,16536,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,8.7097034,8.7191248,0,1,0,-9,6,0,3,-56.731071,0,0,0,53,2,3,3,2,3,2019,2,2,10,1,50,50,15,1,0,3,0,11.498306,11.498306,0,0,0,0,0,0,0,0,0,0,0,7.1359591,0,0,0,54.200001,57.490002,52.900002,38.98,6,1,1,0,0,11,4,1,562.5,1158643.8,0,0,2820.2573 -7351,9064,16536,16535,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,6,0,-3,-48.781891,0,0,0,56,1,4,1,-9,-9,2019,3,1,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.900002,38.98,54.200001,57.490002,7,1,1,0,0,11,4,1,562.5,1158643.8,0,0,2820.2573 -7352,9065,16537,16538,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.7345986,7.6263666,0,1,0,-9,26,0,-5,-27.720959,0,0,0,63,2,5,1,2,2,2019,1,2,9,0,29,34,15,1,0,1,0,8.6323261,8.6323261,0,0,0,0,0,0,0,14.5,0,0,0,2.6842337,0,11.685549,3,58.32,50.220001,61.009998,50.48,6,1,1,0,0,4,5,1,939.5,793046.38,0,0,4647.7764 -7352,9065,16538,16537,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,0,5,9.123064,8.9637938,5.3833742,1,0,-9,27,0,5,-56.739178,0,0,0,58,2,3,1,-9,-9,2019,1,1,7,0,35,37,15,1,0,1,0,25.714506,25.714506,0,0,0,0,0,0,0,0,0,0,0,6.1215081,6.0491157,0,0,61.009998,50.48,58.32,50.220001,7,1,1,0,0,4,5,1,939.5,793046.38,0,0,4647.7764 -7353,9066,16539,-9,16541,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1157.6279,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,2,0,1086,607578.25,0,0,2637.9053 -7353,9066,16540,-9,16541,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-997.03345,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,2,0,1086,607578.25,0,0,2637.9053 -7353,9066,16541,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,1,1,0,0,5,6.7598038,7.1571317,6.2332435,4,0,0,0,-9,0,-1007.3818,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,16,13,15,1,0,-9,0,6.5885491,6.5885491,0,0,0,0,0,0,0,0,1,1,0,6.3227205,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,5,2,0,1086,607578.25,0,0,2637.9053 -7354,9067,16542,16543,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,5,0,1,0,0,0,0,68,2,2,3,-9,2,2019,4,1,24,9,0,0,15,4,1,4,0,0,0,1,0,2.0708802,0,0,0,0,7,1,1,0,0,0,5.7472644,1,31.34,46.82,18.84,25.33,4,1,1,0,1,7,1,1,508.5,-129329.57,0,0,2066.5146 -7354,9067,16543,16542,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,5,0,-1,0,0,0,0,69,2,2,3,3,3,2019,4,2,30,11,0,0,15,4,1,4,0,0,0,1,0,6.7224154,0,0,0,0,0,1,1,0,0,0,0,0,18.84,25.33,31.34,46.82,1,1,1,0,1,7,1,1,508.5,-129329.57,0,0,2066.5146 -7355,9068,16544,16545,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,1,8.4586849,8.3780661,0,1,0,-9,19,0,0,-35.008392,0,0,0,54,1,2,1,3,3,2019,1,2,18,9,37,42,15,1,1,1,0,17.477264,17.477264,0,0,0,0,0,0,0,7,0,0,0,.88743073,0,0,3,36.34,48.650002,39.259998,48.630001,6,1,1,0,0,5,5,1,782.5,1673254.8,0,0,3041.9714 -7355,9068,16545,16544,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,2,7.8530645,8.1073837,0,1,0,-9,19,0,0,-6.0961642,0,0,0,54,1,1,1,3,3,2019,1,1,23,10,37,38,15,1,1,1,0,10.669371,10.669371,0,0,0,0,0,0,0,0,0,0,0,.5057742,0,0,0,39.259998,48.630001,36.34,48.650002,3,1,1,0,0,5,5,1,782.5,1673254.8,0,0,3041.9714 -7356,9069,16546,16547,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,0,-31.904465,0,0,0,68,3,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,61.290001,38.139999,6,1,1,0,0,12,2,1,443.5,89108.938,0,0,1382.7883 -7356,9069,16547,16546,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,6.8870387,6.6152983,1,0,-9,48,0,0,54.754135,0,0,0,68,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1726351,6.7957988,0,0,61.290001,38.139999,54.959999,53.169998,7,1,1,0,0,12,2,1,443.5,89108.938,0,0,1382.7883 -7357,9070,16548,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,2,1,0,1,4,6.256639,6.062027,0,3,0,0,0,-9,0,-1005.0405,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,4,0,15,1,0,-9,0,12.398867,12.398867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,9,2,0,719,-50135.523,0,0,2450.4185 -7358,9071,16549,-9,16550,-9,1,1,0,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-991.69171,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,1,1,0,0,11,3,1,619.75,264610.84,0,0,4036.9585 -7358,9071,16550,-9,-9,-9,2,1,0,49,3,0,3,0,1,-9,2,1,0,0,3,8.6017399,8.7255068,4.9551835,4,0,0,0,-9,0,-893.61505,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,42,37,15,1,0,-9,0,16.3512,16.3512,0,0,0,0,0,0,0,0,1,1,0,4.8230653,0,0,0,51.669998,47.759998,-9,-9,7,1,1,0,0,11,3,1,619.75,264610.84,0,0,4036.9585 -7358,9071,16551,-9,16550,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1005.4689,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,11,3,1,619.75,264610.84,0,0,4036.9585 -7358,9071,16552,-9,16550,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-920.52295,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,1,619.75,264610.84,0,0,4036.9585 -7359,9072,16553,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,5,8.7120981,8.5186329,6.881381,3,0,0,0,-9,0,-928.09619,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,35,35,15,1,0,-9,0,16.12995,16.12995,0,0,0,0,0,0,0,0,1,1,0,6.3933287,7.1820307,0,0,45.810001,61.509998,-9,-9,6,1,1,0,0,13,5,1,141,77590.359,0,0,675.03156 -7359,9073,16554,-9,16553,-9,2,1,1,21,2,0,0,1,2,-9,7,2,0,1,1,0,0,0,3,0,0,0,-9,0,-895.04608,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.529999,31.32,-9,-9,5,1,1,0,0,13,1,1,482,-7392.2329,0,0,1187.0824 -7360,9074,16555,-9,-9,-9,5,1,1,35,2,0,2,0,2,-9,2,1,0,0,4,8.2488346,8.154314,0,4,0,0,0,-9,0,-934.4101,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,48,0,15,1,0,-9,0,7.6050458,7.6050458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.380001,54.889999,-9,-9,5,1,1,0,0,9,3,0,2678,59125.727,0,0,1842.2963 -7360,9075,16556,16557,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,4,8.2113323,8.1080141,0,2,0,-9,4,0,-2,-.040125836,0,0,1,35,3,4,1,1,2,2019,1,4,7,0,50,40,15,1,0,1,0,8.6324806,8.6324806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.09,56.75,52.34,56.950001,6,1,1,0,0,9,4,0,801.5,496297.63,0,0,3029.978 -7360,9075,16557,16556,-9,-9,4,1,1,35,1,0,2,0,3,-9,2,1,0,0,4,8.3882341,8.2955055,0,2,0,-9,4,0,2,28.325218,0,0,0,33,2,4,1,-9,-9,2019,1,1,6,0,55,0,15,1,0,1,0,7.9899011,7.9899011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.950001,47.09,56.75,6,2,3,0,0,9,4,0,801.5,496297.63,0,0,3029.978 -7360,9075,16558,-9,16556,16557,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.15051,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,0,801.5,496297.63,0,0,3029.978 -7360,9075,16559,-9,16556,16557,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.1366,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,0,801.5,496297.63,0,0,3029.978 -7361,9076,16560,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,1,1,0,4.4429178,4.7103367,3,0,0,0,-9,0,-1114.8407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,1,-9,0,0,0,1,11.893451,0,0,0,0,145.46188,0,1,1,0,0,4.7064257,0,0,37.66,20.639999,-9,-9,5,1,1,0,0,12,2,1,642,-15116.535,0,0,1954.9857 -7362,9077,16561,-9,16562,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.0735,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,823.5,26075.91,0,0,2801.126 -7362,9077,16562,-9,-9,-9,1,1,0,37,3,0,3,0,2,-9,6,3,0,1,1,0,0,0,4,0,0,0,-9,0,-962.46967,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.3326571,0,112.69626,3,40.07,30.639999,-9,-9,3,1,1,0,0,9,1,0,823.5,26075.91,0,0,2801.126 -7363,9078,16563,-9,-9,-9,1,1,1,56,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-971.63464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.379999,31.700001,-9,-9,1,1,1,0,1,10,1,0,746,144240.5,0,0,790.80914 -7363,9079,16564,-9,-9,-9,2,1,0,69,3,0,0,0,2,-9,2,1,0,0,2,7.8667874,8.4854479,7.5091624,3,0,0,0,-9,0,-981.52631,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,19,25,15,1,0,-9,0,13.252167,13.252167,0,0,0,0,0,0,0,14.5,1,1,0,0,7.5116386,24.952459,3,68.199997,24.190001,-9,-9,6,1,1,0,0,10,4,0,1456,980611.25,0,0,1344.3419 -7364,9080,16565,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,8.1430283,7.9264145,3,0,0,0,-9,0,-1047.3347,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.1477561,8.0411768,9.3763676,3,68.269997,16.73,-9,-9,6,1,1,0,0,4,3,1,259,771467.88,0,0,1110.6919 -7365,9081,16566,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,4,5.5455718,5.4354987,0,3,0,0,0,-9,0,-799.30975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.650002,60.470001,-9,-9,7,1,1,0,0,2,2,1,750,119803.13,0,0,-567.45557 -7366,9082,16567,16568,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,8.0801334,8.4822588,0,1,0,-9,32,0,-1,-28.881525,0,0,0,60,1,3,1,2,1,2019,1,1,10,0,50,28,15,1,0,1,0,8.1562223,8.1562223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.040001,64.75,51,49,6,1,1,0,0,8,5,1,1132,2396901,0,0,5730.5625 -7366,9082,16568,16567,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,3,9.1262379,9.4616747,7.6896954,1,0,-9,9,0,1,-71.381729,0,0,0,59,1,4,1,2,2,2019,1,2,10,1,40,40,15,1,0,1,0,27.536816,27.536816,0,0,0,0,0,0,0,0,0,0,0,4.7166653,8.259819,0,0,51,49,38.040001,64.75,5,1,1,0,0,8,5,1,1132,2396901,0,0,5730.5625 -7366,9083,16569,-9,16567,16568,3,1,0,26,2,0,0,0,2,1,2,1,0,0,4,7.6640973,7.8751984,0,3,0,0,0,-9,0,-979.60767,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,40,0,15,1,0,-9,1,7.2580123,7.2580123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,8,3,1,1350,-19489.137,0,0,1587.9617 -7366,9084,16570,-9,16567,16568,4,1,1,23,3,0,0,0,1,-9,2,1,0,0,4,8.206728,8.0454197,0,3,0,0,0,-9,0,-894.78894,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,8,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,8,4,1,639,-217148.97,0,0,2416.2913 -7366,9085,16571,-9,16567,16568,5,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1057.7185,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6487484,0,0,0,46,58,-9,-9,5,1,1,0,0,8,1,1,942,125680.1,0,0,779.17664 -7367,9086,16572,-9,16574,16573,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.5566,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,798.5,420674.63,0,0,3995.2673 -7367,9086,16573,16574,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,3,8.8663473,9.1559029,0,2,0,-9,30,0,0,37.062962,0,0,0,51,1,2,1,-9,-9,2019,1,1,19,7,45,42,15,1,1,1,0,15.720136,15.720136,0,0,0,0,0,0,0,0,1,1,0,3.8854759,0,0,0,43.529999,38.18,51.5,29.219999,5,1,1,0,0,8,5,1,798.5,420674.63,0,0,3995.2673 -7367,9086,16574,16573,-9,-9,1,1,0,51,1,0,2,0,1,-9,2,1,0,0,2,7.8624177,8.0416956,0,2,0,-9,30,0,0,19.424665,0,0,0,51,1,3,1,2,2,2019,1,2,14,3,24,25,15,1,0,1,0,12.041821,12.041821,0,0,0,0,0,0,0,0,1,1,0,3.6095152,0,0,0,51.5,29.219999,43.529999,38.18,3,1,1,0,0,8,5,1,798.5,420674.63,0,0,3995.2673 -7367,9086,16575,-9,16574,16573,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.1801,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,5,1,798.5,420674.63,0,0,3995.2673 -7368,9087,16576,16577,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,9.1096439,8.9423046,0,1,0,-9,35,0,1,21.353729,0,0,0,53,2,3,3,-9,2,2019,2,1,6,0,42,42,15,1,0,3,0,18.990801,18.990801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,51.740002,47.77,6,1,1,0,0,6,5,1,327,654314,0,0,2488.6855 -7368,9087,16577,16576,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,0,3,4.3511014,4.3478675,0,1,0,-9,35,0,-1,52.367802,0,0,0,54,2,3,1,-9,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,4.083952,3,51.740002,47.77,57.330002,53.459999,4,1,1,0,0,6,5,1,327,654314,0,0,2488.6855 -7369,9088,16578,16581,-9,-9,1,1,0,41,1,0,2,0,1,-9,1,1,0,0,5,0,0,0,2,0,-9,8,0,0,-32.684128,0,0,1,41,1,4,1,2,2,2019,1,2,8,0,24,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,58.299999,52.91,6,1,1,0,0,13,2,1,1151.25,420521.22,0,0,678.31055 -7369,9088,16579,-9,16578,16581,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.1827,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,1,1151.25,420521.22,0,0,678.31055 -7369,9088,16580,-9,16578,16581,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.93182,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,1,1151.25,420521.22,0,0,678.31055 -7369,9088,16581,16578,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,7.5416579,7.7928019,0,2,0,-9,8,0,0,-153.96472,0,0,0,41,1,5,1,-9,-9,2019,1,1,8,1,40,37,15,1,0,1,0,5.4365931,5.4365931,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.299999,52.91,57.060001,57.759998,6,1,1,0,0,13,2,1,1151.25,420521.22,0,0,678.31055 -7370,9089,16582,16583,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,5,7.9904561,8.2327404,7.3529019,1,0,-9,40,0,-10,87.096848,0,0,0,71,3,4,3,3,3,2019,2,2,22,10,39,38,15,1,1,4,0,9.3182564,9.3182564,0,0,0,0,0,0,0,0,1,1,0,3.6587498,7.0825343,0,0,46,61.599998,57.16,56.150002,6,1,1,0,0,7,5,1,313,2558768.5,0,0,4874.5049 -7370,9089,16583,16582,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,8.2748518,9.0683527,1,0,-9,43,0,10,97.66745,0,0,0,61,2,5,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5747089,8.4079981,0,0,57.16,56.150002,46,61.599998,7,1,1,0,0,7,5,1,313,2558768.5,0,0,4874.5049 -7371,9090,16584,16585,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.8761263,9.0321808,6.6458368,1,0,-9,3,0,0,38.826378,0,0,0,60,2,3,1,-9,-9,2019,1,1,12,0,43,48,15,1,0,1,0,24.254038,24.254038,0,0,0,0,0,0,0,0,0,0,0,4.9512634,7.3697343,0,0,55.360001,51.57,57.330002,53.459999,6,1,1,0,0,12,5,1,849.5,812550.5,0,0,3111.1406 -7371,9090,16585,16584,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,0,3,5.6077967,6.1433687,0,1,0,-9,3,0,0,-25.576914,0,0,0,60,2,3,1,3,3,2019,1,2,7,0,13,17,15,1,0,1,0,3.6091504,3.6091504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,55.360001,51.57,4,1,1,0,0,12,5,1,849.5,812550.5,0,0,3111.1406 -7372,9091,16586,-9,16587,16590,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.9006,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,4,1,993.40002,444834.25,0,0,3233.2664 -7372,9091,16587,16590,-9,-9,1,1,0,33,1,0,3,0,2,-9,2,1,0,0,4,7.766438,7.7673154,0,2,0,-9,6,0,-1,114.81469,0,0,1,34,2,4,1,2,2,2019,1,2,12,0,36,33,15,1,0,1,0,6.1129971,6.1129971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,50,57,6,1,1,0,0,1,4,1,993.40002,444834.25,0,0,3233.2664 -7372,9091,16588,-9,16587,16590,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.96832,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,993.40002,444834.25,0,0,3233.2664 -7372,9091,16589,-9,16587,16590,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.7477,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,993.40002,444834.25,0,0,3233.2664 -7372,9091,16590,16587,-9,-9,2,1,1,34,1,0,3,0,2,-9,1,1,0,0,4,8.5624771,8.6626282,0,2,0,-9,6,0,1,120.55365,0,0,0,33,2,4,1,-9,-9,2019,1,1,10,1,45,0,15,1,0,1,0,17.799288,17.799288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,41.169998,59.310001,5,1,1,0,0,1,4,1,993.40002,444834.25,0,0,3233.2664 -7373,9092,16591,16592,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,6.6260734,6.9202371,1,0,-9,9,0,0,9.0918169,0,0,0,73,2,3,3,3,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.948308,6.72996,0,0,57.16,56.150002,52.540001,54.240002,6,1,1,0,0,12,3,1,737,612878.88,0,0,3162.7654 -7373,9092,16592,16591,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.1366839,6.8604603,1,0,-9,9,0,0,-158.33662,0,0,0,73,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0073056,6.8709378,0,0,52.540001,54.240002,57.16,56.150002,6,1,1,0,0,12,3,1,737,612878.88,0,0,3162.7654 -7374,9093,16593,16594,-9,-9,2,1,1,62,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,37,0,-8,50.871174,0,0,0,70,3,4,3,2,2,2019,4,1,16,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.049999,8.0500002,59.970001,43.869999,5,1,1,0,0,4,2,1,684.5,123338.66,0,0,1598.8936 -7374,9093,16594,16593,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,1,4,0,6.2937779,6.2977653,1,0,-9,37,0,8,-97.25721,0,0,0,62,2,1,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.873467,122.89409,1,59.970001,43.869999,54.049999,8.0500002,7,1,1,0,0,4,2,1,684.5,123338.66,0,0,1598.8936 -7375,9094,16595,16596,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,0,3,8.0387173,7.9237838,0,1,0,-9,6,0,-5,56.62233,0,0,1,40,2,4,1,-9,-9,2019,1,1,13,1,47,50,15,1,0,1,0,8.618638,8.618638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.549999,44.330002,55.790001,52.619999,6,1,1,0,0,9,3,1,687.5,344966.16,0,0,1386.3252 -7375,9094,16596,16595,-9,-9,1,1,1,40,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,6,0,5,88.091278,0,0,0,35,2,3,1,2,2,2019,1,2,11,1,55,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,47.549999,44.330002,6,1,1,0,0,9,3,1,687.5,344966.16,0,0,1386.3252 -7376,9095,16597,16598,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,7.7461295,7.8307347,0,1,0,-9,6,0,0,-74.590004,0,0,0,47,3,3,1,3,-9,2019,1,2,12,0,48,40,15,1,0,1,0,5.8626418,5.8626418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.900002,57.869999,42.040001,44.610001,5,1,1,0,0,11,4,0,1445.5,224508.73,0,0,2415.0127 -7376,9095,16598,16597,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,0,3,7.5925364,7.9206538,0,1,0,-9,6,0,0,-72.359833,0,0,0,47,2,4,1,3,-9,2019,1,1,11,0,40,40,15,1,0,1,0,6.0280204,6.0280204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.040001,44.610001,32.900002,57.869999,4,1,1,0,0,11,4,0,1445.5,224508.73,0,0,2415.0127 -7377,9096,16599,-9,16603,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1057.4625,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,1318.6,-21094.711,0,0,3493.3787 -7377,9096,16600,-9,16603,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-989.69543,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,1,1,0,0,7,2,0,1318.6,-21094.711,0,0,3493.3787 -7377,9096,16601,-9,16603,-9,5,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1029.311,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,2,0,1318.6,-21094.711,0,0,3493.3787 -7377,9096,16602,-9,16603,-9,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-931.68359,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,1318.6,-21094.711,0,0,3493.3787 -7377,9096,16603,-9,-9,-9,1,1,0,46,3,0,2,0,1,-9,2,1,0,1,3,6.5041304,6.6077294,0,4,0,0,0,-9,0,-979.84283,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,18,20,15,1,1,-9,0,4.2646546,4.2646546,0,0,0,0,0,0,0,42,1,0,1,0,0,37.866112,3,39.669998,47.029999,-9,-9,5,1,1,0,0,7,2,0,1318.6,-21094.711,0,0,3493.3787 -7378,9097,16604,-9,16606,16605,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1135.707,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,13,5,1,365.33334,433105.34,0,0,3918.4319 -7378,9097,16605,16606,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.5674706,8.6110735,0,2,0,-9,26,0,1,-63.829803,0,0,0,50,2,5,1,3,2,2019,1,2,8,0,42,36,15,1,0,1,0,14.324991,14.324991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.200001,51.139999,60.450001,5,1,1,0,0,13,5,1,365.33334,433105.34,0,0,3918.4319 -7378,9097,16606,16605,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,0,5,8.7565937,8.7611618,0,2,0,-9,26,0,-1,7.0901194,0,0,0,51,2,4,1,3,2,2019,1,1,12,1,37,52,15,1,0,1,0,16.242786,16.242786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,60.52,53.200001,6,1,1,0,0,13,5,1,365.33334,433105.34,0,0,3918.4319 -7379,9098,16607,16608,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,7.9997196,7.8237276,0,2,0,-9,27,0,0,11.177308,0,0,0,47,2,3,1,2,2,2019,1,2,12,0,20,18,15,1,0,1,0,17.757978,17.757978,0,0,0,0,0,0,0,0,0,0,0,6.6514015,0,0,0,57.16,56.150002,58.889999,48.599998,7,1,1,0,0,9,5,1,535.66669,392180.53,0,0,14803.469 -7379,9098,16608,16607,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,0,3,9.6123543,9.4799433,0,2,0,-9,27,0,0,1.2729213,0,0,0,47,1,4,1,2,2,2019,1,1,6,0,25,30,15,1,0,1,0,79.296669,79.296669,0,0,0,0,0,0,0,0,0,0,0,6.6516356,0,0,0,58.889999,48.599998,57.16,56.150002,6,1,1,0,0,9,5,1,535.66669,392180.53,0,0,14803.469 -7379,9098,16609,-9,16607,16608,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1049.6379,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,9,5,1,535.66669,392180.53,0,0,14803.469 -7379,9099,16610,-9,16607,16608,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,5.8555002,5.702929,0,3,0,0,0,-9,0,-1048.2158,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,1240,-65652.789,0,0,-5.8522696 -7380,9100,16611,16612,-9,-9,1,1,1,34,1,0,0,0,1,-9,1,1,0,0,5,6.4742455,6.2260723,0,1,0,-9,5,0,10,-43.014839,0,0,0,24,1,4,1,2,2,2019,1,2,9,0,40,30,15,1,0,1,0,1.7634041,1.7634041,0,0,0,0,0,0,0,0,0,0,0,4.0468192,0,0,0,54.330002,53.439999,47.049999,56.66,6,1,1,0,0,4,4,1,1142,157370.2,0,0,2671.3345 -7380,9100,16612,16611,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,0,4,8.1797771,8.2780027,0,1,0,-9,5,0,-10,-4.3939672,0,1,1,34,1,5,1,-9,-9,2019,1,1,16,3,51,44,15,1,0,1,0,11.180338,11.180338,0,0,0,0,0,0,0,0,0,0,0,2.1647217,0,0,0,47.049999,56.66,54.330002,53.439999,6,1,1,0,0,4,4,1,1142,157370.2,0,0,2671.3345 -7381,9101,16613,16614,-9,-9,1,1,1,59,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,34,0,1,0,0,0,0,58,2,3,3,3,3,2019,4,2,11,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,48,49,5,2,3,0,1,8,1,1,565.5,38435.547,0,0,1425.4821 -7381,9101,16614,16613,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,34,0,-1,0,0,0,0,59,2,3,3,3,-9,2019,4,1,12,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,50,49,5,2,3,0,1,8,1,1,565.5,38435.547,0,0,1425.4821 -7381,9102,16615,-9,16614,16613,4,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,7.6758361,7.6585088,0,3,0,0,0,-9,0,-1009.1802,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,6.6835537,6.6835537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.130001,48.040001,-9,-9,6,2,3,0,0,8,3,1,664,188607.45,0,0,338.73441 -7382,9103,16616,16619,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,1,5,6.6983399,6.5185881,0,2,0,-9,6,0,-1,49.234531,0,0,1,43,1,4,1,2,2,2019,1,2,10,0,14,16,15,1,0,1,0,6.6045442,6.6045442,0,0,0,0,0,0,0,112,1,1,0,0,0,121.00037,1,22.879999,65.82,51,56,1,1,1,0,0,10,4,1,771,770488.75,0,0,2647.8853 -7382,9103,16617,-9,16616,16619,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.3131,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,771,770488.75,0,0,2647.8853 -7382,9103,16618,-9,16616,16619,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.8234,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,771,770488.75,0,0,2647.8853 -7382,9103,16619,16616,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.8098373,8.6972466,0,2,0,-9,6,0,1,28.221771,0,0,0,42,2,5,1,-9,-9,2019,1,1,9,1,1,35,15,1,0,1,0,635.40601,635.40601,0,0,0,0,0,0,0,0,1,1,0,2.5341015,0,0,0,51,56,22.879999,65.82,6,1,1,0,0,10,4,1,771,770488.75,0,0,2647.8853 -7383,9104,16620,-9,16621,-9,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1002.6147,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,13,1,0,1910.3334,-8814.2305,0,0,1082.3701 -7383,9104,16621,-9,-9,-9,1,1,0,39,2,0,3,0,3,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1050.1166,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.709999,38.220001,-9,-9,2,1,1,0,0,13,1,0,1910.3334,-8814.2305,0,0,1082.3701 -7383,9104,16622,-9,16621,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1076.0195,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,1910.3334,-8814.2305,0,0,1082.3701 -7384,9105,16623,16624,-9,-9,2,1,0,23,1,0,0,0,1,1,2,1,0,0,5,6.5927138,6.458868,0,1,0,-9,3,0,-2,64.976433,-9,1,1,25,1,5,1,-9,-9,2019,1,1,6,0,15,0,15,1,0,1,0,5.5673881,5.5673881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.959999,55.09,62.389999,56.709999,7,3,4,0,0,9,3,1,1574,106840.66,0,0,1387.9744 -7384,9105,16624,16623,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,8.0239544,8.046875,0,1,0,-9,3,0,2,-26.68236,0,1,0,23,1,5,1,-9,-9,2019,1,2,6,0,43,42,15,1,0,1,0,7.2984061,7.2984061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,62.959999,55.09,7,1,1,0,0,9,3,1,1574,106840.66,0,0,1387.9744 -7385,9106,16625,16626,-9,-9,1,1,0,30,1,1,1,0,2,-9,5,1,0,0,4,8.5045843,8.7363977,6.9535828,2,0,-9,5,0,-1,123.83091,0,0,1,31,2,4,1,2,2,2019,1,2,17,5,40,20,15,1,1,1,0,14.47086,14.47086,0,0,0,0,0,0,0,0,1,1,0,7.430851,0,0,0,42.470001,51.990002,57.16,56.150002,6,1,1,0,0,5,5,1,770,-27084.293,0,0,4638.7949 -7385,9106,16626,16625,-9,-9,2,1,1,31,1,1,1,0,2,-9,1,1,0,0,4,8.5332413,8.4530516,0,2,0,-9,5,0,1,-57.907845,0,0,0,30,2,4,1,-9,-9,2019,1,1,7,0,50,55,15,1,0,1,0,10.098121,10.098121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,42.470001,51.990002,6,1,1,0,0,5,5,1,770,-27084.293,0,0,4638.7949 -7385,9106,16627,-9,16625,16626,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-928.93268,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,770,-27084.293,0,0,4638.7949 -7386,9107,16628,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,2,1,0,0,3,5.1494708,7.598506,7.3107529,3,0,0,0,-9,0,-964.80841,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,12,25,15,1,0,-9,0,1.4866488,1.4866488,0,0,0,0,0,0,0,0,1,1,0,0,7.3371997,0,0,41.349998,34.939999,-9,-9,2,1,1,0,0,12,3,0,977,463388.13,0,0,2539.3018 -7387,9108,16629,16630,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,0,6.7600799,6.7481728,1,0,-9,48,0,-3,-38.808483,0,0,0,67,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.117835,6.6904912,0,0,50.720001,46.82,59.290001,49.68,5,1,1,0,0,5,2,1,465.5,630798.88,0,0,2925.3394 -7387,9108,16630,16629,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.9539776,7.122992,1,0,-9,48,0,3,-23.130762,0,0,0,64,1,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1099286,7.1580396,0,0,59.290001,49.68,50.720001,46.82,6,1,1,0,0,5,2,1,465.5,630798.88,0,0,2925.3394 -7388,9109,16631,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-881.81964,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.360001,36.790001,-9,-9,1,1,1,1,1,11,1,1,521,202071.89,0,0,-631.21124 -7389,9110,16632,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,7.843112,8.0040884,0,3,0,-9,0,-9,0,-1036.4615,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,1,44,0,15,1,0,-9,0,9.7392282,9.7392282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,60.849998,-9,-9,3,3,4,0,1,8,4,0,636,197870.08,0,0,1407.1425 -7390,9111,16633,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1003.3605,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,11.430729,1.0951852,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,6,4,5,0,0,8,1,0,260,-128674.95,0,0,2633.9067 -7390,9112,16634,-9,-9,16633,2,1,0,23,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-1040.3431,-9,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,18,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.099998,37.580002,-9,-9,3,1,1,1,0,8,1,0,430,100290.7,0,0,1261.7887 -7390,9113,16635,-9,16634,16633,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,7.3774405,7.5417528,0,3,0,-9,0,-9,0,-1054.4011,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,16,0,15,1,0,-9,0,13.114623,13.114623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,8,3,0,67,-119004.39,0,0,975.56116 -7391,9114,16636,16637,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,1,2,7.3328605,7.6600437,0,1,0,-9,2,0,-1,-79.134438,0,0,0,49,2,3,1,2,2,2019,1,2,15,3,26,25,15,1,0,1,0,5.994195,5.994195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.299999,41.389999,35.73,52.389999,1,1,1,0,1,4,2,0,2114,209500.06,0,0,1272.8066 -7391,9114,16637,16636,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,5.5437856,5.6606922,0,1,0,-9,2,0,1,64.3769,0,0,0,48,2,2,1,-9,3,2019,1,1,18,5,6,6,15,1,1,1,0,7.5357227,7.5357227,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.73,52.389999,28.299999,41.389999,3,1,1,0,1,4,2,0,2114,209500.06,0,0,1272.8066 -7391,9115,16638,-9,16637,16636,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.4653831,7.2652531,0,3,0,0,0,-9,0,-856.46442,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,33,36,15,1,0,-9,1,6.3752627,6.3752627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,5,1,1,0,0,4,3,0,675,96087.273,0,0,315.99603 -7392,9116,16639,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,3,0,7.8683133,7.3184261,3,0,0,0,-9,0,-952.91919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9613166,7.6201882,0,0,57.91,46.310001,-9,-9,6,1,1,0,0,7,3,1,919,529510.38,0,0,2629.2791 -7393,9117,16640,16641,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,2,7.3501544,7.547121,0,1,0,-9,39,0,-2,2.2347155,0,0,0,61,3,4,3,3,3,2019,2,1,26,12,15,25,15,1,1,3,0,12.613117,12.613117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.32,25.969999,48.279999,60.18,2,1,1,0,1,13,3,1,396.5,822348.25,0,0,657.60126 -7393,9117,16641,16640,-9,-9,1,1,1,61,1,0,0,0,3,-9,3,3,0,0,4,0,6.7535462,6.5810766,1,0,-9,39,0,2,-113.48637,0,0,0,59,3,2,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8658028,0,0,48.279999,60.18,43.32,25.969999,5,1,1,1,1,13,3,1,396.5,822348.25,0,0,657.60126 -7394,9118,16642,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,2,8.2480364,7.6887717,0,3,0,0,0,-9,0,-994.76343,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,38,38,15,1,1,-9,0,11.247056,11.247056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.419998,43.380001,-9,-9,2,1,1,0,0,8,4,0,1163,-9474.1494,0,0,856.7085 -7394,9119,16643,-9,16642,-9,2,1,1,25,2,0,0,0,2,-9,1,1,0,0,4,8.7044554,8.5267706,0,3,0,0,0,-9,0,-914.60486,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,39,15,1,0,-9,1,15.693484,15.693484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,8,5,0,501,159346.58,0,0,1521.9779 -7395,9120,16644,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,2,0,3.9043362,4.1369138,3,0,0,0,-9,0,-1059.4362,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8467636,3.3096507,0,0,50.27,28.190001,-9,-9,4,1,1,0,0,1,1,0,1662,-11372.05,0,0,630.72607 -7396,9121,16645,16646,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,6.9626908,6.4045362,0,1,0,-9,15,0,-5,-103.62402,0,0,0,65,3,2,3,2,2,2019,2,1,5,0,16,15,15,1,0,4,0,6.7286606,6.7286606,0,0,0,0,0,0,0,7,1,1,0,0,0,16.930939,3,51.41,56.150002,44.220001,33.939999,7,1,1,0,0,2,3,0,328,221108.53,0,0,1764.3035 -7396,9121,16646,16645,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,0,2,0,7.096252,7.2770157,1,0,-9,7,0,5,161.54825,0,0,0,60,2,3,1,-9,-9,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0835781,0,0,44.220001,33.939999,51.41,56.150002,4,1,1,0,0,2,3,0,328,221108.53,0,0,1764.3035 -7397,9122,16647,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1031.697,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.580002,-9,-9,5,2,3,0,0,8,2,1,462,145078.81,0,0,0 -7398,9123,16648,16649,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,3,8.7383575,8.5428801,0,1,0,-9,6,0,-1,14.97745,0,0,1,31,1,4,1,-9,-9,2019,1,1,16,4,45,48,15,1,1,1,0,14.489441,14.489441,0,0,0,0,0,0,0,0,0,0,0,1.6843724,0,0,0,36.139999,59.139999,54.790001,55.860001,3,1,1,0,0,10,5,1,776.5,257690.02,0,0,3883.1172 -7398,9123,16649,16648,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,8.9883232,8.7045765,0,1,0,-9,6,0,1,11.32472,0,0,0,30,1,3,1,2,2,2019,1,2,8,0,50,103,15,1,0,1,0,18.395355,18.395355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,36.139999,59.139999,5,1,1,0,0,10,5,1,776.5,257690.02,0,0,3883.1172 -7399,9124,16650,16651,-9,-9,2,1,0,61,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,28,0,-5,23.406239,0,0,0,66,2,3,3,2,3,2019,2,1,7,0,0,23,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0613108,0,0,0,58.150002,52.91,65.800003,39.970001,7,1,1,0,0,9,2,1,880,634648.69,0,0,2986.957 -7399,9124,16651,16650,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.2120438,7.3201828,1,0,-9,28,0,5,91.038551,0,0,0,61,2,4,1,3,3,2019,3,2,10,0,0,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9014187,7.4754686,0,0,65.800003,39.970001,58.150002,52.91,6,1,1,0,0,9,2,1,880,634648.69,0,0,2986.957 -7400,9125,16652,16653,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,5,7.9824252,8.1924973,0,1,0,-9,29,0,-5,-26.539423,0,0,0,53,2,3,1,2,2,2019,1,1,8,0,36,37,15,1,0,1,0,13.011732,13.011732,0,0,0,0,0,0,0,0,0,0,0,.92730093,0,0,0,54.689999,57.470001,47.610001,53.700001,5,1,1,0,0,5,4,1,2097,426205.41,0,0,2359.2041 -7400,9125,16653,16652,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.8258243,7.8781743,0,1,0,-9,29,0,5,-113.69559,0,0,0,48,2,5,1,2,2,2019,1,2,18,6,30,35,15,1,1,1,0,9.9296513,9.9296513,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,47.610001,53.700001,54.689999,57.470001,3,1,1,0,0,5,4,1,2097,426205.41,0,0,2359.2041 -7401,9126,16654,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,7.1329288,7.1528955,3,0,0,0,-9,0,-907.8587,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4996359,7.1864266,0,0,55.509998,51.57,-9,-9,6,1,1,0,0,6,3,1,1023,592023.88,0,0,3078.7693 -7402,9127,16655,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-894.1203,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.630001,60.060001,-9,-9,2,4,5,0,0,10,1,1,308,71665.383,0,0,679.55145 -7403,9128,16656,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,2,1,0,0,3,5.8734517,6.3977942,3.6572208,3,0,0,0,-9,0,-979.47955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,8,8,15,1,0,-9,0,6.423491,6.423491,0,0,0,0,0,0,0,0,1,1,0,0,3.5203173,0,0,59.07,43.049999,-9,-9,6,1,1,0,0,10,2,1,364,462103.53,0,0,769.47046 -7404,9129,16657,16658,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.1134825,8.2909145,0,1,0,-9,40,0,-3,37.161404,0,0,0,59,2,5,1,3,3,2019,1,2,12,0,25,25,15,1,0,1,0,13.140087,13.140087,0,0,0,0,0,0,0,0,0,0,0,.7311694,0,0,0,51.830002,57.200001,57.060001,57.759998,4,1,1,0,0,9,5,1,609,678919.31,0,0,3198.8645 -7404,9129,16658,16657,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,5,8.5236168,8.5340948,0,1,0,-9,11,0,3,-39.04565,0,0,0,56,2,4,1,-9,-9,2019,1,1,6,0,40,52,15,1,0,1,0,14.835068,14.835068,0,0,0,0,0,0,0,0,0,0,0,2.9055381,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,9,5,1,609,678919.31,0,0,3198.8645 -7404,9130,16659,-9,16657,16658,3,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,7.670157,7.5602026,0,3,0,0,0,-9,0,-1071.9086,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,0,-9,1,5.6983242,5.6983242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,-9,-9,4,1,1,0,0,9,3,1,2431,-91645.859,0,0,490.49524 -7405,9131,16660,16662,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,2,9.1260538,9.4344082,0,2,0,-9,9,0,-1,10.696101,0,0,0,49,2,4,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,23.027018,23.027018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.240002,50.75,57.16,56.150002,5,1,1,0,0,7,5,1,927.75,515793.66,0,0,5062.6802 -7405,9131,16661,-9,16662,16660,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1013.4855,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.98,57.220001,-9,-9,6,1,1,0,0,7,5,1,927.75,515793.66,0,0,5062.6802 -7405,9131,16662,16660,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,4,7.1841073,7.2078023,0,2,0,-9,25,0,1,29.78116,0,0,0,48,1,2,1,3,-9,2019,1,2,9,0,21,24,15,1,0,1,0,7.6971412,7.6971412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,52.240002,50.75,6,1,1,0,0,7,5,1,927.75,515793.66,0,0,5062.6802 -7405,9131,16663,-9,16662,16660,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1160.2499,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,927.75,515793.66,0,0,5062.6802 -7406,9132,16664,16665,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,4.7755685,5.1532154,1,0,-9,47,0,-1,-42.644501,0,0,0,70,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1130791,5.055078,0,0,54.790001,55.860001,57.16,56.150002,7,1,1,0,0,10,5,1,860.5,1315584.3,0,0,11476.4 -7406,9132,16665,16664,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,10.024236,9.7227259,1,0,-9,47,0,1,253.58937,0,0,0,69,2,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.2407637,10.080712,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,10,5,1,860.5,1315584.3,0,0,11476.4 -7407,9133,16666,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1139.3723,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.912169,3,67.360001,32.419998,-9,-9,7,1,1,0,0,5,1,1,321,-3412.4724,0,0,424.57828 -7408,9134,16667,16669,-9,-9,2,1,1,44,1,1,1,0,3,-9,1,1,0,0,3,0,0,0,2,0,-9,7,0,5,13.180449,0,0,0,39,2,4,1,2,3,2019,1,1,16,4,48,45,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3732165,0,0,0,33.43,59.209999,51.830002,57.200001,5,1,1,0,0,6,2,1,521.66669,125993.16,0,0,187.1095 -7408,9134,16668,-9,16669,16667,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.16119,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,1,521.66669,125993.16,0,0,187.1095 -7408,9134,16669,16667,-9,-9,1,1,0,39,1,1,1,0,2,-9,2,1,0,0,4,7.3498092,7.6818981,0,2,0,-9,7,0,-5,-5.5129113,0,0,1,44,3,3,1,3,3,2019,1,2,4,0,12,25,15,1,0,1,0,16.311224,16.311224,0,0,0,0,0,0,0,0,1,1,0,2.5452919,0,0,0,51.830002,57.200001,33.43,59.209999,6,1,1,0,0,6,2,1,521.66669,125993.16,0,0,187.1095 -7409,9135,16670,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1058.4177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3017516,0,0,0,56.75,31,-9,-9,3,1,1,0,0,9,1,0,1820,206060.98,0,0,1601.9935 -7410,9136,16671,-9,16672,-9,2,1,0,17,2,0,3,1,2,0,7,2,0,0,3,0,5.4319816,5.6982512,4,0,0,0,-9,0,-993.43286,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6426458,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,12,2,0,545,40014.172,0,0,2034.5554 -7410,9136,16672,-9,-9,-9,1,1,0,36,2,0,3,0,3,-9,2,1,0,0,4,7.2025833,6.6869693,0,4,0,0,0,-9,0,-900.65106,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,16,16,15,1,0,-9,0,7.8531952,7.8531952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,12,2,0,545,40014.172,0,0,2034.5554 -7410,9136,16673,-9,16672,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-962.16681,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,2,0,545,40014.172,0,0,2034.5554 -7410,9136,16674,-9,16672,-9,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-965.14972,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,12,2,0,545,40014.172,0,0,2034.5554 -7411,9137,16675,16676,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,8.2182932,8.3480091,0,1,0,-9,7,0,1,-65.929344,0,0,1,43,2,5,1,1,2,2019,1,1,12,2,35,35,15,1,0,1,0,15.022649,15.022649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.810001,57.060001,57.759998,5,1,1,0,0,1,5,1,414.5,115081.56,0,0,3335.1143 -7411,9137,16676,16675,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,5,8.5706596,8.702055,0,1,0,-9,7,0,-1,-79.043549,0,0,0,44,2,4,1,2,3,2019,1,2,6,0,48,55,15,1,0,1,0,14.171105,14.171105,0,0,0,0,0,0,0,0,0,0,0,2.9796977,0,0,0,57.060001,57.759998,51.25,50.810001,6,1,1,0,0,1,5,1,414.5,115081.56,0,0,3335.1143 -7412,9138,16677,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,4,7.3160572,8.1721487,6.4613328,4,0,0,0,-9,0,-883.3269,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,20,20,15,1,0,-9,0,8.233428,8.233428,0,0,0,0,0,0,0,0,1,1,0,6.5406065,0,0,0,35.970001,61.830002,-9,-9,5,1,1,0,0,5,3,1,742,168225.25,0,0,2414.7129 -7412,9138,16678,-9,16677,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1015.4272,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,1,742,168225.25,0,0,2414.7129 -7413,9139,16679,16680,-9,-9,2,1,0,63,1,0,0,0,3,-9,2,1,0,1,3,8.136713,8.0307131,6.4001622,1,0,-9,38,0,-7,-108.47601,0,0,0,70,2,3,1,2,3,2019,1,1,10,0,37,38,15,1,0,1,0,8.6476316,8.6476316,0,0,0,0,0,0,0,0,1,1,0,6.8810067,7.402029,0,0,55.27,39.27,56.349998,51.16,4,1,1,0,0,9,5,0,705,3857474,0,0,7188.6738 -7413,9139,16680,16679,-9,-9,1,1,1,70,1,0,0,0,2,-9,2,1,0,0,3,9.0412369,9.2694893,7.094295,1,0,-9,38,0,7,150.91023,0,0,0,63,3,3,1,3,3,2019,1,2,8,0,33,33,15,1,0,1,0,29.902391,29.902391,0,0,0,0,0,0,0,0,1,1,0,7.0764241,7.6215973,0,0,56.349998,51.16,55.27,39.27,6,1,1,0,0,9,5,0,705,3857474,0,0,7188.6738 -7414,9140,16681,16682,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,0,4,0,6.2933173,6.724544,1,0,-9,67,0,-3,-43.148426,0,0,0,88,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,6.8521824,27.747736,1,59.880001,48.040001,46.139999,54.220001,7,1,1,0,0,6,4,1,373,889741.38,0,0,3906.9575 -7414,9140,16682,16681,-9,-9,2,1,1,88,1,0,0,0,3,-9,4,3,0,0,4,0,8.4309654,8.5689812,1,0,-9,67,0,3,52.275833,0,0,0,85,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,8.5500479,18.263054,3,46.139999,54.220001,59.880001,48.040001,6,1,1,0,0,6,4,1,373,889741.38,0,0,3906.9575 -7414,9141,16683,-9,-9,-9,3,1,1,38,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1093.2537,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.66,40.82,-9,-9,6,1,1,1,0,6,1,1,1526,-117604.3,0,0,791.13678 -7415,9142,16684,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,3,8.3752337,8.6883526,0,3,0,0,0,-9,0,-981.98138,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,20,30,15,1,0,-9,0,32.238754,32.238754,0,0,0,0,0,0,0,0,0,0,0,8.1830359,0,0,0,45.470001,37.130001,-9,-9,6,2,3,0,0,8,5,0,1233,300843.03,0,0,2565.9106 -7416,9143,16685,-9,16686,16687,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.9124,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,1,0,573.33331,71.484375,0,0,2600.8054 -7416,9143,16686,16687,-9,-9,2,1,0,26,1,1,1,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,6,0,-2,0,0,1,1,28,3,3,3,-9,-9,2019,4,1,23,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.2829,3,33.610001,36.139999,49.040001,55.860001,2,1,1,1,0,7,1,0,573.33331,71.484375,0,0,2600.8054 -7416,9143,16687,16686,-9,-9,1,1,1,28,1,1,1,0,3,-9,3,3,0,1,3,0,0,0,2,0,-9,6,0,2,0,0,1,0,26,2,2,3,-9,-9,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.02466,2,49.040001,55.860001,33.610001,36.139999,4,1,1,1,0,7,1,0,573.33331,71.484375,0,0,2600.8054 -7417,9144,16688,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,4,8.5080853,8.8196011,0,3,0,0,0,-9,0,-1013.9229,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,37,0,15,1,0,-9,0,16.796673,16.796673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.119999,-9,-9,3,1,1,0,1,8,4,1,665,441062.97,0,0,909.10968 -7417,9145,16689,-9,-9,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,8.6239719,8.5233603,0,3,0,0,0,-9,0,-951.30145,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,79,45,15,1,0,-9,0,8.5934849,8.5934849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,5,1,2926,51601.992,0,0,946.82733 -7418,9146,16690,16691,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-3,-10.806078,0,0,0,74,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.629997,35.060001,52,47,5,1,1,0,0,11,2,1,1261,320894.19,0,0,1111.0366 -7418,9146,16691,16690,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,5.3509808,5.6176057,1,0,-9,55,0,3,21.91717,0,0,0,71,3,4,3,-9,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5098233,0,0,52,47,64.629997,35.060001,6,1,1,0,0,11,2,1,1261,320894.19,0,0,1111.0366 -7419,9147,16692,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,3,9.3262949,9.9502897,0,3,0,0,0,-9,0,-976.77722,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,53,65,15,1,0,-9,0,26.261797,26.261797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,53.23,-9,-9,6,1,1,0,0,9,5,1,1341,186522.33,0,0,2700.0247 -7420,9148,16693,16694,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,8.6508083,8.6443987,0,1,0,1,1,-9,-2,-138.38811,0,1,0,28,1,4,1,-9,-9,2019,1,2,9,1,47,42,15,1,0,1,0,14.293666,14.293666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,49.349998,59.639999,6,1,1,0,0,10,5,0,422.5,198328.66,0,0,4112.3047 -7420,9148,16694,16693,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.4815741,8.530427,0,1,0,-9,1,-9,2,-33.327,-9,1,1,26,1,4,1,-9,-9,2019,1,1,11,2,39,0,15,1,0,1,0,16.539537,16.539537,0,0,0,0,0,0,0,0,0,0,0,5.6179905,0,0,0,49.349998,59.639999,48.279999,60.18,6,1,1,0,0,10,5,0,422.5,198328.66,0,0,4112.3047 -7421,9149,16695,16696,-9,-9,2,1,0,84,1,0,0,0,3,-9,97,3,0,0,4,0,4.8809781,5.2144423,1,0,-9,32,0,10,-66.150482,0,0,0,74,2,3,3,3,3,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.0174127,4.9907584,77.273209,1,41.830002,54.77,57.830002,39.529999,7,1,1,0,0,7,2,0,1137,535665.56,0,0,1990.2783 -7421,9149,16696,16695,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,3,0,7.1930418,7.3185081,1,0,-9,39,0,-10,10.177409,0,0,0,84,3,4,3,-9,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,1,0,106.53585,0,0,0,0,71.5,1,1,0,6.8607197,7.2633219,67.330414,1,57.830002,39.529999,41.830002,54.77,5,1,1,0,0,7,2,0,1137,535665.56,0,0,1990.2783 -7422,9150,16697,16698,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,39,0,0,38.812412,0,0,0,66,2,3,3,3,2,2019,4,2,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.3843714,0,5.4190354,3,54.200001,57.490002,57.869999,47.650002,6,1,1,0,0,2,3,1,402,1174717.4,0,0,2098.9636 -7422,9150,16698,16697,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.6014619,7.670505,1,0,-9,40,0,9,155.57373,0,0,0,57,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.30927944,7.4656687,13.118717,3,57.869999,47.650002,54.200001,57.490002,4,1,1,0,0,2,3,1,402,1174717.4,0,0,2098.9636 -7423,9151,16699,16700,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,45,0,4,0,0,0,0,65,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.709999,50.869999,50.34,48.529999,6,1,1,0,0,2,1,0,295,157597.09,0,0,1193.8491 -7423,9151,16700,16699,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-4,0,0,0,0,69,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,48.529999,42.709999,50.869999,7,1,1,0,0,2,1,0,295,157597.09,0,0,1193.8491 -7423,9152,16701,-9,-9,-9,4,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.788054,7.5306606,0,3,0,0,0,-9,0,-1129.7666,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,40,6,15,1,0,-9,0,6.8936324,6.8936324,0,0,0,0,0,0,0,0,1,1,0,2.4395585,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,0,3455,-72124.516,0,0,909.80774 -7424,9153,16702,16703,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,2,0,6.5494018,6.4204316,1,0,-9,8,0,6,-182.47906,0,0,0,76,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.5236917,6.4270978,121.16381,1,65.230003,31.059999,54.860001,16.809999,6,1,1,0,0,4,2,0,617.5,36724.098,0,0,1888.5298 -7424,9153,16703,16702,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,1,0,4.8144846,4.8836398,1,0,-9,8,0,-6,-94.604012,0,0,0,82,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,11.913005,0,0,0,0,0,1,1,0,0,4.7054334,0,0,54.860001,16.809999,65.230003,31.059999,5,1,1,0,0,4,2,0,617.5,36724.098,0,0,1888.5298 -7425,9154,16704,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.6230602,7.8849773,6.4350057,3,0,0,0,-9,0,-980.1568,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,32,32,15,1,0,-9,0,7.2601113,7.2601113,0,0,0,0,0,0,0,2,1,1,0,6.7201681,0,.0098367557,3,57.009998,45.220001,-9,-9,5,1,1,0,0,12,3,1,572,524323.56,0,0,953.46216 -7425,9155,16705,-9,16704,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,5,8.2148457,8.187973,0,3,0,0,0,-9,0,-1079.2813,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,8,15,1,0,-9,1,11.472986,11.472986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,12,4,1,487,-226688,0,0,1542.912 -7425,9156,16706,-9,16704,-9,3,1,0,22,2,0,0,0,2,0,7,2,0,0,2,7.3712702,7.3203678,0,3,0,0,0,-9,0,-957.11249,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.41,49.459999,-9,-9,6,1,1,0,0,12,3,1,744,164809.8,0,0,963.63428 -7426,9157,16707,-9,16708,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-971.17426,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,3,0,591,288799.63,0,0,2381.5706 -7426,9157,16708,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,0,3,8.6371975,8.3734894,5.9314661,4,0,0,0,-9,0,-913.92072,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,38,38,15,1,1,-9,0,12.747596,12.747596,0,0,0,0,0,0,0,0,1,1,0,6.0711284,0,0,0,37.830002,40.740002,-9,-9,5,1,1,0,0,5,3,0,591,288799.63,0,0,2381.5706 -7427,9158,16709,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,0,3,0,7.0741587,7.3034625,3,0,-9,0,-9,0,-1126.8645,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,4.2372808,0,0,0,0,1,1,0,2.0911031,7.1366682,0,0,54,46,-9,-9,6,1,1,0,0,4,2,1,270,875657.94,0,0,1778.0139 -7428,9159,16710,16711,-9,-9,1,1,1,69,1,0,0,0,3,-9,2,1,0,0,3,0,7.9542255,7.7682614,1,0,-9,10,0,-4,59.43972,-9,0,0,73,3,2,3,-9,-9,2019,2,2,12,4,0,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.3829923,8.0807953,80.650894,1,35.720001,56.810001,42.75,23.98,5,1,1,0,0,13,3,1,1373,476342.66,0,0,2809.7813 -7428,9159,16711,16710,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,10,0,4,41.239491,-9,0,0,69,3,3,1,3,3,2019,3,1,18,5,0,0,15,4,1,1,0,0,0,1,15.267263,39.994751,.90012306,0,3.2875006,138.50107,0,1,1,0,0,0,0,0,42.75,23.98,35.720001,56.810001,6,1,1,0,0,13,3,1,1373,476342.66,0,0,2809.7813 -7429,9160,16712,16713,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,5,8.5779219,8.6838045,0,2,0,-9,4,0,3,-21.04109,0,0,1,30,2,4,1,-9,-9,2019,1,1,9,1,35,0,15,1,0,1,0,16.326845,16.326845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.240002,57.16,56.150002,6,1,1,0,0,12,5,0,545.66669,186944.53,0,0,3273.2092 -7429,9160,16713,16712,-9,-9,1,1,1,30,1,1,1,0,2,-9,1,1,0,0,4,8.0144844,7.9170465,0,2,0,-9,4,0,-3,85.044594,0,0,0,33,1,5,1,3,3,2019,1,2,8,0,50,50,15,1,0,1,0,7.9380369,7.9380369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.68,54.240002,6,1,1,0,0,12,5,0,545.66669,186944.53,0,0,3273.2092 -7429,9160,16714,-9,16712,16713,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.8909,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,0,545.66669,186944.53,0,0,3273.2092 -7430,9161,16715,16719,-9,-9,5,1,1,32,1,0,3,0,2,-9,2,1,0,0,4,7.8516893,8.1948452,0,2,0,-9,3,0,-13,35.979958,0,0,0,45,2,2,3,-9,-9,2019,2,1,12,0,50,0,15,1,0,3,0,8.2485456,8.2485456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,38.009998,52.09,4,1,1,0,0,4,3,0,831.79999,-30205.258,0,0,1453.1206 -7430,9161,16716,-9,16719,16715,2,1,0,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-985.77509,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,4,3,0,831.79999,-30205.258,0,0,1453.1206 -7430,9161,16717,-9,16719,16715,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.00879,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,831.79999,-30205.258,0,0,1453.1206 -7430,9161,16718,-9,16719,16715,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-905.67755,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,-9,-9,5,1,1,0,0,4,3,0,831.79999,-30205.258,0,0,1453.1206 -7430,9161,16719,16715,-9,-9,1,1,0,45,1,0,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,3,0,13,.3684473,0,0,0,32,2,4,1,2,-9,2019,3,5,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.009998,52.09,49,58,6,1,1,0,0,4,3,0,831.79999,-30205.258,0,0,1453.1206 -7431,9162,16720,16721,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,2,8.4313745,8.1423903,0,2,0,-9,28,0,-2,11.481166,0,0,0,52,3,3,1,2,2,2019,1,1,12,0,42,43,15,1,0,1,0,9.3801718,9.3801718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,50.490002,57.330002,53.459999,4,1,1,0,0,4,4,0,225.33333,539561.13,0,0,2565.4771 -7431,9162,16721,16720,-9,-9,1,1,0,52,1,0,1,0,3,-9,2,1,0,0,3,7.7388268,7.5518188,0,2,0,-9,34,0,2,-80.566017,0,0,0,50,2,2,1,-9,-9,2019,1,2,6,0,26,18,15,1,0,1,0,7.01928,7.01928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,49.68,50.490002,7,1,1,0,0,4,4,0,225.33333,539561.13,0,0,2565.4771 -7431,9162,16722,-9,16721,16720,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.5393,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,0,225.33333,539561.13,0,0,2565.4771 -7432,9163,16723,16724,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,7.726604,7.7667766,0,2,0,-9,2,0,5,-64.552528,0,0,0,36,1,4,1,-9,-9,2019,1,1,18,6,40,40,15,1,1,1,0,6.5504174,6.5504174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.959999,43.150002,49,56,3,1,1,0,0,2,3,0,1289,289979.13,0,0,2793.7273 -7432,9163,16724,16723,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,4,8.236804,8.4867849,0,2,0,-9,17,0,-5,39.656303,0,0,1,41,2,4,1,2,2,2019,1,2,11,2,37,38,15,1,0,1,0,13.917234,13.917234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,44.959999,43.150002,5,1,1,0,0,2,3,0,1289,289979.13,0,0,2793.7273 -7432,9163,16725,-9,16724,16723,4,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.00464,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,3,0,1289,289979.13,0,0,2793.7273 -7432,9163,16726,-9,16724,16723,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.6318,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,0,1289,289979.13,0,0,2793.7273 -7433,9164,16727,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,7.8026099,7.8650017,0,3,0,0,0,-9,0,-1026.3674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,0,15,1,0,-9,0,7.2362151,7.2362151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,46.23,-9,-9,3,1,1,0,0,4,3,0,118,212459.38,0,0,1304.7966 -7434,9165,16728,16729,-9,-9,1,1,0,59,1,0,0,0,3,-9,6,3,0,0,1,0,0,0,1,0,-9,37,0,-1,166.94926,0,0,0,60,3,3,1,-9,3,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.1346741,3,45.959999,33.25,44.799999,25.67,2,1,1,0,1,10,2,0,701.5,418389.91,0,0,616.20184 -7434,9165,16729,16728,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,6.8335772,6.9739909,0,1,0,-9,37,0,1,-80.564079,0,0,0,59,3,1,3,3,3,2019,2,1,20,7,15,15,15,1,1,3,0,6.9474282,6.9474282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.799999,25.67,45.959999,33.25,3,1,1,0,1,10,2,0,701.5,418389.91,0,0,616.20184 -7434,9166,16730,16731,16728,16729,3,1,0,26,1,0,0,0,2,-9,2,1,0,0,2,7.4315476,7.4620481,0,1,0,1,1,-9,-6,172.88464,0,1,1,32,2,4,3,3,3,2019,2,4,9,2,15,35,15,1,0,3,0,12.389996,12.389996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.580002,52.860001,36.490002,49.380001,6,1,1,0,0,10,2,0,448.5,-9720.7656,0,0,815.7616 -7434,9166,16731,16730,-9,-9,4,1,1,32,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,1,-9,6,-31.026199,-9,0,0,26,2,2,1,-9,-9,2019,3,3,15,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.490002,49.380001,41.580002,52.860001,3,1,1,1,0,10,2,0,448.5,-9720.7656,0,0,815.7616 -7435,9167,16732,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,6.1920037,6.1009836,3,0,0,0,-9,0,-1006.7021,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.9469271,0,0,0,0,1,1,0,.78198087,6.4189305,0,0,45.580002,41.84,-9,-9,4,1,1,0,0,7,2,1,433,137824.5,0,0,1496.075 -7436,9168,16733,16734,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,5,8.6572075,8.6669817,0,1,0,-9,5,0,-11,-48.824848,0,0,0,67,2,4,1,-9,-9,2019,1,1,8,0,35,38,15,1,0,1,0,17.6556,17.6556,0,0,0,0,0,0,0,0,1,1,0,7.5745997,0,0,0,51.73,58.82,51.240002,58.84,6,2,3,0,0,2,4,1,695.5,1119813.5,0,0,4780.1211 -7436,9168,16734,16733,-9,-9,1,1,0,67,1,0,0,0,2,-9,2,1,0,0,4,5.1646357,7.1550884,6.7229285,1,0,-9,5,0,11,-93.947731,0,0,0,56,2,5,1,3,3,2019,1,2,10,0,5,37,15,1,0,1,0,4.02561,4.02561,0,0,0,0,0,0,0,0,1,1,0,7.6431284,6.9571567,0,0,51.240002,58.84,51.73,58.82,6,1,1,0,0,2,4,1,695.5,1119813.5,0,0,4780.1211 -7437,9169,16735,16736,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,3,9.9151745,9.9057369,0,1,0,-9,3,0,-11,-101.88801,0,0,1,45,1,4,1,-9,-9,2019,1,1,12,0,20,30,15,1,0,1,0,90.900642,90.900642,0,0,0,0,0,0,0,0,0,0,0,5.8556013,0,0,0,34.740002,55.630001,52.23,55.599998,5,1,1,0,0,8,5,1,1015.5,910076,0,0,24988.885 -7437,9169,16736,16735,-9,-9,1,1,1,45,1,0,0,0,1,-9,1,1,0,0,4,9.462985,9.7623377,0,1,0,-9,3,0,11,49.260609,0,0,0,34,1,3,1,1,1,2019,1,2,11,2,30,30,15,1,0,1,0,64.207672,64.207672,0,0,0,0,0,0,0,0,0,0,0,6.7847314,0,0,0,52.23,55.599998,34.740002,55.630001,6,1,1,0,0,8,5,1,1015.5,910076,0,0,24988.885 -7438,9170,16737,16738,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,3,7.2661662,7.1636658,0,1,0,-9,10,0,0,-49.662537,0,0,1,50,1,2,1,2,2,2019,1,1,12,0,15,15,15,1,0,1,0,7.8838191,7.8838191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.209999,55.18,40.990002,54.490002,4,1,1,0,0,5,4,1,532.5,485936.22,0,0,1482.7915 -7438,9170,16738,16737,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,2,8.3599224,8.5379162,0,1,0,-9,10,0,9,1.4241515,0,0,0,41,2,3,1,2,1,2019,1,2,21,9,37,37,15,1,1,1,0,12.923316,12.923316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.990002,54.490002,33.209999,55.18,3,1,1,0,0,5,4,1,532.5,485936.22,0,0,1482.7915 -7439,9171,16739,16740,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,3,8.7195082,8.6499157,0,1,0,-9,3,0,7,34.494541,0,0,0,36,1,3,1,3,2,2019,1,2,9,0,45,45,15,1,0,1,0,13.418303,13.418303,0,0,0,0,0,0,0,2,0,0,0,2.4402454,0,4.2120843,3,38.240002,54.009998,54.73,40.869999,6,1,1,0,0,13,5,1,738.5,570640.25,0,0,4611.3076 -7439,9171,16740,16739,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,0,3,8.6973047,8.323842,0,1,0,-9,3,0,-7,96.718239,0,0,1,43,2,3,1,-9,-9,2019,1,1,8,0,45,39,15,1,0,1,0,12.875054,12.875054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.73,40.869999,38.240002,54.009998,6,1,1,0,0,13,5,1,738.5,570640.25,0,0,4611.3076 -7440,9172,16741,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1098.9072,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,-9,-9,6,2,3,0,1,8,1,0,476,-24660.156,0,0,600.27869 -7441,9173,16742,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,4,0,6.1056495,5.7215633,3,0,0,0,-9,0,-980.56323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.0103569,6.1284895,0,0,58.330002,47.360001,-9,-9,7,1,1,0,0,2,2,1,450,337813.31,0,0,1283.9506 -7442,9174,16743,16744,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,5,0,6.5989923,6.3723197,1,0,-9,6,0,-4,-129.85149,0,0,0,66,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5113821,6.6928043,0,0,59.040001,48.59,54.200001,57.490002,1,1,1,0,0,12,4,1,529.5,1212142.1,0,0,2995.1882 -7442,9174,16744,16743,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,8.1466608,8.8079691,1,0,-9,6,0,4,-51.412907,0,0,0,62,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9326973,8.0471535,0,0,54.200001,57.490002,59.040001,48.59,7,1,1,0,0,12,4,1,529.5,1212142.1,0,0,2995.1882 -7443,9175,16745,-9,16747,-9,2,1,0,14,2,1,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-984.7879,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,10,2,1,717.33331,-26482.045,0,0,2452.5481 -7443,9175,16746,-9,16747,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.826,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,1,717.33331,-26482.045,0,0,2452.5481 -7443,9175,16747,-9,-9,-9,1,1,0,37,3,1,2,0,2,-9,2,1,0,0,1,7.35219,7.4267044,5.4481902,4,0,0,0,-9,0,-985.42737,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,28,11,16,20,15,1,1,-9,0,11.873389,11.873389,0,0,0,0,0,0,0,0,1,1,0,5.7293334,0,0,0,16.129999,55.509998,-9,-9,5,1,1,0,0,10,2,1,717.33331,-26482.045,0,0,2452.5481 -7444,9176,16748,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,1,1,0,0,3,7.9916544,8.4963245,0,3,0,0,0,-9,0,-1061.3617,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,60,15,1,0,-9,0,11.252471,11.252471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.799999,59.5,-9,-9,5,1,1,0,0,9,4,0,248,116120.18,0,0,1082.2758 -7445,9177,16749,16750,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,6.7556562,6.8635387,1,0,-9,8,0,-1,31.931376,0,0,0,66,2,4,1,3,2,2019,3,1,6,0,0,23,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2861283,6.9149632,0,0,57.27,41.150002,54.200001,57.490002,6,1,1,0,0,10,4,1,769,600982.31,0,0,2674.9194 -7445,9177,16750,16749,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,0,4,7.766223,7.9405589,6.656168,1,0,-9,8,0,1,-98.917633,0,0,0,65,3,3,3,3,2,2019,2,2,10,0,30,30,15,1,0,4,0,9.6608686,9.6608686,0,0,0,0,0,0,0,0,1,1,0,0,6.9300175,0,0,54.200001,57.490002,57.27,41.150002,6,1,1,0,0,10,4,1,769,600982.31,0,0,2674.9194 -7446,9178,16751,16752,-9,-9,2,1,1,87,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,11,0,0,0,0,76,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,49.040001,55.860001,6,1,1,0,0,12,1,1,587,238686.47,0,0,2771.6182 -7446,9178,16752,16751,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,7,0,-11,0,0,0,0,87,2,3,3,3,3,2019,4,2,14,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,2.4275503,0,72.051468,1,49.040001,55.860001,55,45,5,1,1,0,0,12,1,1,587,238686.47,0,0,2771.6182 -7447,9179,16753,16754,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.8993254,7.657649,0,1,0,-9,28,0,-7,-91.817665,-9,0,0,62,2,1,3,2,2,2019,2,2,9,0,30,0,15,1,0,3,0,9.0211973,9.0211973,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.415245,1,58.32,50.220001,28.91,22.059999,6,1,1,0,0,1,3,0,323.5,251910.41,0,0,1953.6487 -7447,9179,16754,16753,-9,-9,2,1,1,62,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,28,0,7,-114.09821,-9,0,0,55,2,3,1,3,2,2019,3,1,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.91,22.059999,58.32,50.220001,2,1,1,0,0,1,3,0,323.5,251910.41,0,0,1953.6487 -7448,9180,16755,16756,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,1,0,7.4618311,7.5405498,1,0,-9,7,0,2,34.794613,0,0,0,67,3,3,3,-9,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1738749,7.1100879,0,0,61.610001,13.86,20.440001,63.43,3,1,1,0,0,10,2,1,547.5,375208.19,0,0,2817.9822 -7448,9180,16756,16755,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-2,-4.8999195,0,0,0,69,2,1,3,3,3,2019,4,1,31,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.41156,1,20.440001,63.43,61.610001,13.86,2,1,1,0,0,10,2,1,547.5,375208.19,0,0,2817.9822 -7449,9181,16757,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-960.255,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.957873,3,57.16,56.150002,-9,-9,7,1,1,0,0,7,1,0,299,-172280.97,0,0,1793.9058 -7450,9182,16758,16759,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,10,0,7,58.409267,0,0,0,52,3,2,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.990002,50.150002,45,40,4,2,3,0,0,5,2,1,979,143527,0,0,658.84979 -7450,9182,16759,16758,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,0,2,7.6513152,7.5146632,0,1,0,-9,39,0,-7,-33.099464,0,0,0,59,2,3,3,3,3,2019,2,2,12,0,0,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,40,46.990002,50.150002,4,2,3,0,0,5,2,1,979,143527,0,0,658.84979 -7450,9183,16760,-9,16758,16759,4,1,0,23,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1126.4197,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,2,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.970001,54.900002,-9,-9,3,2,3,1,0,5,1,1,93,14472.062,0,0,0 -7450,9184,16761,-9,16758,16759,5,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,7.0915461,6.88943,0,3,0,0,0,-9,0,-944.53021,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,3,22,0,15,1,0,-9,1,5.0666666,5.0666666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,36.650002,-9,-9,4,2,3,0,0,5,2,1,1009,80237.344,0,0,1284.771 -7451,9185,16762,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,-9,0,0,0,-891.78143,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,36,12,0,55,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.7512207,0,9.7241592,3,19.84,39.880001,-9,-9,1,4,2,1,1,8,1,1,67,15258.021,0,0,1293.7731 -7452,9186,16763,-9,16767,16765,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1104.4446,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,5,1,556,234463.77,0,0,5694.0503 -7452,9186,16764,-9,16767,16765,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.2119,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,556,234463.77,0,0,5694.0503 -7452,9186,16765,16767,-9,-9,2,1,1,45,1,0,3,0,1,-9,2,1,0,0,4,9.1905251,9.4269485,0,2,0,-9,16,0,0,28.271915,0,0,0,45,1,4,1,2,1,2019,1,1,22,11,37,43,15,1,1,1,0,41.443989,41.443989,0,0,0,0,0,0,0,2,0,0,0,.0076899356,0,3.7403815,3,35.860001,64.550003,43.200001,59.970001,5,1,1,0,0,10,5,1,556,234463.77,0,0,5694.0503 -7452,9186,16766,-9,16767,16765,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.8998,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,556,234463.77,0,0,5694.0503 -7452,9186,16767,16765,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,0,4,8.6533642,8.2736406,0,2,0,-9,16,0,0,116.34616,0,0,0,45,1,4,1,1,1,2019,1,2,14,4,14,28,15,1,1,1,0,39.605091,39.605091,0,0,0,0,0,0,0,14.5,0,0,0,.43629017,0,17.456045,3,43.200001,59.970001,35.860001,64.550003,5,1,1,0,0,10,5,1,556,234463.77,0,0,5694.0503 -7453,9187,16768,-9,16771,16770,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1043.918,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,1,1,0,1529.25,9622.7422,0,0,1685.6495 -7453,9187,16769,-9,16771,16770,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-968.33014,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,1,1,0,1529.25,9622.7422,0,0,1685.6495 -7453,9187,16770,16771,-9,-9,2,1,1,35,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,8,0,-10,0,0,0,0,45,2,1,3,-9,-9,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,50,57,36.150002,25.709999,5,1,1,1,0,1,1,0,1529.25,9622.7422,0,0,1685.6495 -7453,9187,16771,16770,-9,-9,1,1,0,45,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,8,0,10,0,0,0,0,35,2,4,3,-9,-9,2019,4,2,19,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.9813075,3,36.150002,25.709999,50,57,6,1,1,0,0,1,1,0,1529.25,9622.7422,0,0,1685.6495 -7454,9188,16772,16773,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.7974105,7.5543194,0,1,0,-9,33,0,-4,29.709826,0,0,0,59,3,3,1,2,2,2019,1,1,8,1,28,37,15,1,0,1,0,9.1821489,9.1821489,0,0,0,0,0,0,0,2,0,0,0,0,0,3.1538713,3,50.650002,60.470001,59.700001,53.75,6,1,1,0,0,10,4,0,1700.5,1092196,0,0,2049.5352 -7454,9188,16773,16772,-9,-9,1,1,1,59,1,0,0,0,3,-9,1,1,0,0,3,7.4335485,7.7752018,0,1,0,-9,9,0,4,100.36671,0,0,0,55,2,4,1,2,2,2019,1,2,6,0,45,0,15,1,0,1,0,5.5644245,5.5644245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.700001,53.75,50.650002,60.470001,6,1,1,0,0,10,4,0,1700.5,1092196,0,0,2049.5352 -7455,9189,16774,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-998.91443,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.077247,0,0,0,46.389999,50.25,-9,-9,7,1,1,0,0,1,1,1,702,62282.336,0,0,7448.9766 -7456,9190,16775,-9,-9,16776,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1078.4441,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,5,1,519,20700.527,0,0,3524.6531 -7456,9190,16776,-9,-9,-9,1,1,1,44,3,0,2,0,2,-9,2,1,0,0,3,8.9728632,9.2610912,0,4,0,0,0,-9,0,-902.42603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,45,15,1,0,-9,0,24.581642,24.581642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,7,5,1,519,20700.527,0,0,3524.6531 -7456,9190,16777,-9,-9,16776,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1065.2476,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,5,1,519,20700.527,0,0,3524.6531 -7457,9191,16778,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,5,0,6.9624801,7.017868,3,0,0,0,-9,0,-1110.8872,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8009486,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,7,2,1,973,335466.66,0,0,791.81824 -7458,9192,16779,16780,-9,-9,1,1,0,64,1,0,0,0,2,-9,1,1,0,1,3,9.8585396,9.7330418,0,1,0,-9,46,0,-4,-15.945405,0,0,0,68,2,3,3,3,3,2019,2,2,9,0,12,16,15,1,0,4,0,176.41003,176.41003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,46.889999,36.349998,6,1,1,0,0,7,5,1,1294,2534252.5,0,0,11622.379 -7458,9192,16780,16779,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,5.6637654,6.3092375,1,0,-9,46,0,4,-27.470121,0,0,0,64,2,3,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,16.153006,0,0,0,0,0,1,1,0,6.0432277,6.2027636,0,0,46.889999,36.349998,52.990002,51.279999,3,1,1,0,1,7,5,1,1294,2534252.5,0,0,11622.379 -7459,9193,16781,16783,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.2804747,8.1638527,0,2,0,-9,10,0,0,-63.634777,0,0,0,42,2,3,1,2,2,2019,1,2,5,0,38,42,15,1,0,1,0,9.3772764,9.3772764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.110001,51.970001,38.509998,59.43,6,1,1,0,0,2,4,1,1092.3334,389453.66,0,0,1723.1025 -7459,9193,16782,-9,16783,16781,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.79187,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,1092.3334,389453.66,0,0,1723.1025 -7459,9193,16783,16781,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,8.4036875,8.1496477,0,2,0,-9,10,0,0,-156.12854,0,0,1,42,2,3,1,-9,-9,2019,1,1,12,0,30,30,15,1,0,1,0,13.772866,13.772866,0,0,0,0,0,0,0,0,0,0,0,2.2423093,0,0,0,38.509998,59.43,43.110001,51.970001,4,1,1,0,1,2,4,1,1092.3334,389453.66,0,0,1723.1025 -7460,9194,16784,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,7.3407607,6.784121,3,0,0,0,-9,0,-1149.7035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,3,0,0,15,4,0,-9,0,0,0,1,0,0,3.2021041,0,0,0,0,1,1,0,3.6141045,6.9353113,0,0,38.240002,25.76,-9,-9,6,1,1,0,0,11,2,1,5084,459111.59,0,0,1979.1635 -7461,9195,16785,16786,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,1,1,0,0,0,1,0,-9,43,0,-1,-26.162498,0,0,0,67,1,1,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,41.635197,80.341278,0,0,0,448.99313,2,1,1,0,0,0,0,1,54.380001,12.1,40.68,17.93,3,1,1,0,0,10,3,1,1073.5,1701669.8,0,0,3291.8645 -7461,9195,16786,16785,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,1,0,8.1861181,8.3912888,1,0,-9,43,0,1,36.084145,0,0,0,66,1,1,3,3,2,2019,4,2,26,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.1358423,8.2543898,80.36512,1,40.68,17.93,54.380001,12.1,4,1,1,0,0,10,3,1,1073.5,1701669.8,0,0,3291.8645 -7462,9196,16787,16788,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,0,4,7.7706861,7.7865319,0,1,0,-9,8,0,-1,-21.196823,0,0,0,51,1,4,1,3,3,2019,1,1,6,0,22,0,15,1,0,1,0,15.566653,15.566653,0,0,0,0,0,0,0,0,0,0,0,7.281251,0,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,13,5,1,937,847017.88,0,0,9773.5654 -7462,9196,16788,16787,-9,-9,1,1,1,51,1,0,0,0,1,-9,1,1,0,0,4,9.5839405,9.6653738,8.2901278,1,0,-9,8,0,1,127.07763,0,0,0,50,3,4,1,3,3,2019,1,2,6,0,40,35,15,1,0,1,0,35.556473,35.556473,0,0,0,0,0,0,0,0,0,0,0,8.5128031,8.149972,0,0,62.490002,55.09,57.16,56.150002,6,1,1,0,0,13,5,1,937,847017.88,0,0,9773.5654 -7463,9197,16789,-9,16790,-9,5,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-996.81982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,5,0,0,8,2,0,174.33333,-76593.336,0,0,3503.1433 -7463,9197,16790,-9,-9,-9,1,1,0,48,3,0,2,0,3,-9,1,1,0,0,5,6.6910324,6.4092736,0,4,0,0,0,-9,0,-1083.1653,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,16,16,15,1,0,-9,0,5.4956441,5.4956441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.660004,50.23,-9,-9,4,4,5,0,0,8,2,0,174.33333,-76593.336,0,0,3503.1433 -7463,9197,16791,-9,16790,-9,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-953.74951,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,5,0,0,8,2,0,174.33333,-76593.336,0,0,3503.1433 -7463,9198,16792,-9,16790,-9,2,1,1,21,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-997.43414,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.049999,52.09,-9,-9,5,4,5,0,0,8,1,0,235,100209.05,0,0,0 -7463,9199,16793,-9,16790,-9,3,1,1,19,2,0,2,0,2,-9,2,1,0,0,5,6.584331,6.301311,0,3,0,0,0,-9,0,-1023.2065,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,21,8,15,1,0,-9,1,3.4732487,3.4732487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.68,61,-9,-9,6,4,5,0,0,8,2,0,1039,0,0,0,151.28543 -7464,9200,16794,-9,-9,-9,1,1,0,53,2,0,1,0,2,-9,1,1,0,1,2,0,0,0,4,0,0,0,-9,0,-1140.199,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.650002,32.279999,-9,-9,4,3,4,0,0,8,1,1,266,0,0,0,468.84772 -7465,9201,16795,16796,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,4,7.7779293,7.6814923,0,1,0,-9,7,0,0,16.785519,0,1,1,24,1,3,1,2,2,2019,1,2,16,5,41,40,15,1,1,1,0,7.8734312,7.8734312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.849998,53.290001,52,54.509998,6,1,1,0,0,5,4,1,488.5,33431.07,0,0,3216.5322 -7465,9201,16796,16795,-9,-9,2,1,1,24,1,0,0,0,1,-9,2,1,0,0,3,8.4374161,8.4931183,0,1,0,-9,7,0,0,-25.061094,0,1,0,24,2,4,1,-9,-9,2019,1,1,6,0,37,39,15,1,0,1,0,12.422781,12.422781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,36.849998,53.290001,5,1,1,0,0,5,4,1,488.5,33431.07,0,0,3216.5322 -7466,9202,16797,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,5.4347363,5.4588523,3,0,0,0,-9,0,-1085.4694,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7037745,5.5336671,0,0,55.139999,42.080002,-9,-9,6,1,1,0,0,12,2,1,753,230787.48,0,0,875.65424 -7467,9203,16798,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-949.9964,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,12,2,0,296,-30210.68,0,0,457.04297 -7468,9204,16799,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-975.17108,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.41,31.9,-9,-9,2,1,1,0,1,12,1,0,474,141398.89,0,0,1571.9585 -7468,9205,16800,-9,-9,16799,2,1,0,23,2,0,0,0,1,0,7,2,0,0,3,6.9794054,7.1168184,0,3,0,0,0,-9,0,-1017.7744,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,22,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,-9,-9,4,1,1,0,0,12,2,0,1087,-76581.031,0,0,1031.2849 -7469,9206,16801,-9,16803,16802,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1210.7041,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,2,1,0,1123.5,58197.871,0,0,1412.0857 -7469,9206,16802,16803,-9,-9,1,1,1,30,1,1,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,4,0,4,0,0,0,0,26,2,3,3,3,3,2019,4,3,24,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.889999,32.939999,54.369999,54.799999,5,2,3,0,0,2,1,0,1123.5,58197.871,0,0,1412.0857 -7469,9206,16803,16802,-9,-9,3,1,0,26,1,1,2,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,4,0,-4,0,0,1,1,30,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.94608,1,54.369999,54.799999,48.889999,32.939999,6,2,3,0,0,2,1,0,1123.5,58197.871,0,0,1412.0857 -7469,9206,16804,-9,16803,16802,2,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.1337,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,1,0,1123.5,58197.871,0,0,1412.0857 -7470,9207,16805,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,1,1,0,0,3,9.2816916,9.0959311,0,3,0,0,0,-9,0,-1041.5879,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,80,75,15,1,0,-9,0,14.582323,14.582323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.970001,40.049999,-9,-9,7,1,1,0,0,10,5,0,460,106997.68,0,0,4560.8936 -7471,9208,16806,16807,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,3,8.6818495,8.664732,0,1,0,-9,1,-9,-3,30.739029,-9,1,0,31,3,3,3,3,2,2019,2,2,12,2,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,44,52,7,2,3,0,0,6,4,0,420,155996.53,0,0,2182.4224 -7471,9208,16807,16806,-9,-9,2,1,0,31,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,1,-9,3,-56.465691,-9,0,1,28,1,3,1,-9,-9,2019,3,1,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68672937,0,0,0,44,52,46,53,5,2,3,1,0,6,4,0,420,155996.53,0,0,2182.4224 -7472,9209,16808,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-964.32184,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,17,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,-9,-9,2,1,1,0,0,9,1,0,5890,-68916.313,0,0,1338.3295 -7473,9210,16809,16810,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,0,3,8.5389519,8.5408287,0,1,0,-9,4,0,0,-113.56477,-9,1,0,27,2,5,1,-9,-9,2019,1,1,12,2,38,0,15,1,0,1,0,17.798008,17.798008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.919998,51.869999,54.689999,57.470001,4,1,1,0,0,7,5,0,981.5,52474.023,0,0,3219.8735 -7473,9210,16810,16809,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,5,8.267272,8.5821962,0,1,0,-9,4,0,0,-22.328945,0,1,1,27,2,3,1,3,2,2019,1,2,7,0,91,91,15,1,0,1,0,4.2852159,4.2852159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,36.919998,51.869999,6,1,1,0,0,7,5,0,981.5,52474.023,0,0,3219.8735 -7474,9211,16811,16814,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,9.0167017,9.3079147,0,2,0,-9,19,0,-8,-58.746407,0,0,1,52,1,2,1,-9,-9,2019,1,2,8,0,47,42,15,1,0,1,0,18.354534,18.354534,0,0,0,0,0,0,0,0,1,1,0,3.432503,0,0,0,57.330002,53.459999,49.849998,50.470001,6,1,1,0,0,9,4,1,730.25,1418586.4,0,0,2591.0466 -7474,9211,16812,-9,16811,16814,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1094.2705,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,9,4,1,730.25,1418586.4,0,0,2591.0466 -7474,9211,16813,-9,16811,16814,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1125.6563,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,9,4,1,730.25,1418586.4,0,0,2591.0466 -7474,9211,16814,16811,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,0,2,0,0,0,2,0,-9,19,0,8,191.80125,0,0,0,44,1,3,1,3,3,2019,1,1,14,2,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0813506,0,0,0,49.849998,50.470001,57.330002,53.459999,4,3,4,0,0,9,4,1,730.25,1418586.4,0,0,2591.0466 -7475,9212,16815,16816,-9,-9,2,1,1,77,1,0,0,0,3,-9,3,3,0,0,3,8.0375719,8.3175364,5.2786484,1,0,-9,7,0,4,-14.462844,0,0,0,73,3,4,3,-9,-9,2019,4,1,6,0,32,32,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8839946,5.6302114,0,0,60.290001,52.110001,51.98,49.169998,7,1,1,1,0,2,3,1,255,1009146.9,0,0,3157.4302 -7475,9212,16816,16815,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,56,0,-4,-10.550058,0,0,0,77,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3231001,0,0,0,51.98,49.169998,60.290001,52.110001,6,1,1,0,0,2,3,1,255,1009146.9,0,0,3157.4302 -7476,9213,16817,16818,-9,-9,2,1,0,50,1,0,1,0,1,-9,1,1,0,0,3,7.9792027,7.8922572,0,2,0,-9,25,0,0,-24.834299,0,0,0,50,1,3,1,1,1,2019,1,1,12,0,25,15,15,1,0,1,0,13.766015,13.766015,0,0,0,0,0,0,0,0,0,0,0,6.4931216,0,0,0,51.98,54.529999,57.330002,53.459999,5,1,1,0,0,12,5,1,519.5,2808069.5,0,0,5372.8193 -7476,9213,16818,16817,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,0,3,9.22225,9.2949953,0,2,0,-9,25,0,0,12.004445,0,0,0,50,1,3,1,1,1,2019,1,2,6,0,40,42,15,1,0,1,0,38.596184,38.596184,0,0,0,0,0,0,0,0,0,0,0,7.6258674,0,0,0,57.330002,53.459999,51.98,54.529999,6,1,1,0,0,12,5,1,519.5,2808069.5,0,0,5372.8193 -7476,9214,16819,-9,16817,16818,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1029.2025,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2272367,0,0,0,49.02,58.889999,-9,-9,7,1,1,0,0,12,5,1,115,-41900.703,0,0,-809.6485 -7477,9215,16820,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,0,4,0,7.9511933,7.8800111,3,0,0,0,-9,0,-1111.6942,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9226184,7.8969369,0,0,50.650002,60.470001,-9,-9,5,1,1,0,0,11,4,0,481,926846.44,0,0,2008.1838 -7478,9216,16821,16822,-9,-9,1,1,0,57,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,44,0,-3,-68.157829,0,0,0,60,3,4,3,-9,-9,2019,4,2,33,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.47,33.84,54,53,1,1,1,0,0,10,2,0,746,255626.94,0,0,1970.636 -7478,9216,16822,16821,-9,-9,2,1,1,60,1,0,0,0,3,-9,8,3,1,1,4,0,5.0466242,4.940134,1,0,-9,44,0,3,-40.288456,0,0,0,57,3,1,3,-9,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4126801,0,1,54,53,15.47,33.84,6,1,1,0,0,10,2,0,746,255626.94,0,0,1970.636 -7479,9217,16823,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,3,0,6.3841796,5.8421421,3,0,0,0,-9,0,-879.2326,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,5.6554637,0,0,0,7.922895,0,0,1,1,0,5.8472996,6.0291181,0,0,54.43,32.77,-9,-9,6,1,1,0,0,1,2,0,597,-55238.223,0,0,1693.8464 -7480,9218,16824,16825,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,6.6959753,8.660821,7.8299875,1,0,-9,9,0,0,-93.067993,0,0,0,57,2,3,1,2,2,2019,1,2,16,6,14,16,15,1,1,1,0,6.6236048,6.6236048,0,0,0,0,0,0,0,7,0,0,0,6.9642892,8.0460167,13.961829,3,43.91,51.470001,58.32,50.220001,5,1,1,0,0,7,5,0,1646,608904.25,0,0,4059.1528 -7480,9218,16825,16824,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.6609592,8.6122074,0,1,0,-9,9,0,0,10.327075,0,0,0,57,2,3,1,2,2,2019,1,1,7,0,50,45,15,1,0,1,0,15.397979,15.397979,0,0,0,0,0,0,0,7,0,0,0,1.8662561,0,14.583907,3,58.32,50.220001,43.91,51.470001,6,1,1,0,0,7,5,0,1646,608904.25,0,0,4059.1528 -7481,9219,16826,-9,-9,-9,1,1,0,59,3,0,2,0,2,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-940.5376,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1215448,0,0,0,48,48,-9,-9,5,1,1,0,0,10,1,0,439,-83998.727,0,0,806.79962 -7481,9220,16827,-9,16826,-9,2,1,1,37,3,0,2,0,2,-9,2,1,0,0,3,8.9262543,8.755764,0,3,0,0,0,-9,0,-1040.4813,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,36,67,15,1,0,-9,1,22.451164,22.451164,0,0,0,0,0,0,0,7,1,1,0,1.5896347,0,8.2031574,3,31.76,62.380001,-9,-9,6,1,1,0,0,10,5,0,562.66669,422940.31,0,0,2010.2655 -7481,9220,16828,-9,-9,16827,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-977.68146,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,10,5,0,562.66669,422940.31,0,0,2010.2655 -7481,9220,16829,-9,-9,16827,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-800.62891,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,10,5,0,562.66669,422940.31,0,0,2010.2655 -7482,9221,16830,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,8.8688202,8.6781073,0,3,0,0,0,-9,0,-970.65527,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,4,40,0,15,1,1,-9,0,13.605283,13.605283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.719999,63.509998,-9,-9,6,1,1,0,0,10,5,0,1068,23451.076,0,0,1275.571 -7483,9222,16831,16832,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,-3,-61.062618,0,0,0,74,3,2,1,3,-9,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9973812,0,0,0,46.93,40.529999,40.82,39.82,6,1,1,0,0,9,3,1,829,577814.19,0,0,2098.3374 -7483,9222,16832,16831,-9,-9,2,1,1,74,1,0,0,0,3,-9,2,1,0,0,2,0,7.7766676,8.0471621,1,0,-9,56,0,3,-84.849312,0,0,0,71,3,3,3,3,3,2019,2,1,11,0,0,9,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7764325,7.636435,0,0,40.82,39.82,46.93,40.529999,2,1,1,0,0,9,3,1,829,577814.19,0,0,2098.3374 -7484,9223,16833,16835,-9,-9,1,1,0,30,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,8,0,-5,0,0,0,1,35,2,2,3,2,2,2019,4,2,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.393044,3,36.369999,57.889999,34.470001,52.119999,3,1,1,0,1,6,1,0,1219.6,81838.227,0,0,3006.1626 -7484,9223,16834,-9,16833,16835,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.6057,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,1,0,1219.6,81838.227,0,0,3006.1626 -7484,9223,16835,16833,-9,-9,2,1,1,35,1,0,3,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,8,0,5,0,0,0,0,30,2,3,3,2,2,2019,4,1,19,7,0,50,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.476135,3,34.470001,52.119999,36.369999,57.889999,3,1,1,1,1,6,1,0,1219.6,81838.227,0,0,3006.1626 -7484,9223,16836,-9,16833,16835,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.49493,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,1,0,1219.6,81838.227,0,0,3006.1626 -7484,9223,16837,-9,16833,16835,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.9932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,1,0,1219.6,81838.227,0,0,3006.1626 -7485,9224,16838,16839,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,2,7.3970289,7.6771812,0,1,0,-9,34,0,-8,-41.311981,0,0,0,61,2,3,1,2,2,2019,1,1,10,0,30,30,15,1,0,1,0,6.3034787,6.3034787,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,46.91,51.799999,36.759998,56.279999,5,1,1,0,0,2,4,0,1695.5,501165.38,0,0,2492.1184 -7485,9224,16839,16838,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.2796812,7.9269648,0,1,0,-9,34,0,8,18.971943,0,0,0,53,2,2,1,-9,-9,2019,1,2,22,10,40,40,15,1,1,1,0,11.39945,11.39945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.759998,56.279999,46.91,51.799999,3,1,1,0,1,2,4,0,1695.5,501165.38,0,0,2492.1184 -7486,9225,16840,16841,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.1095061,7.1841621,1,0,-9,46,0,2,-91.718803,0,0,0,65,3,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2306018,0,0,57.330002,53.459999,49,47,6,1,1,0,0,13,2,1,1509,476175.63,0,0,2524.7368 -7486,9225,16841,16840,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-2,-38.278568,-9,0,0,67,2,3,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,57.330002,53.459999,5,1,1,0,0,13,2,1,1509,476175.63,0,0,2524.7368 -7487,9226,16842,16843,-9,-9,1,1,0,48,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,22,0,-10,154.03929,0,0,0,58,1,3,1,3,-9,2019,3,2,21,10,0,4,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.34,64.589996,25.18,63.880001,3,1,1,1,0,2,4,1,396.33334,469248.03,0,0,2449.9048 -7487,9226,16843,16842,-9,-9,2,1,1,58,1,0,1,0,1,-9,2,1,0,0,3,8.6548042,8.8631954,0,2,0,-9,22,0,10,-39.211731,0,0,0,48,2,4,3,2,2,2019,2,1,29,11,40,38,15,1,1,3,0,19.660343,19.660343,0,0,0,0,0,0,0,0,1,1,0,.47671548,0,0,0,25.18,63.880001,27.34,64.589996,3,1,1,0,0,2,4,1,396.33334,469248.03,0,0,2449.9048 -7487,9226,16844,-9,16842,16843,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1041.2424,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,1,396.33334,469248.03,0,0,2449.9048 -7487,9227,16845,-9,16842,16843,3,1,0,18,2,0,1,0,3,-9,2,1,0,0,4,5.7287197,5.8315763,0,3,0,0,0,-9,0,-1080.8265,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,4,8,0,15,1,1,-9,1,4.8739281,4.8739281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.040001,-9,-9,6,1,1,0,0,2,2,1,1437,-66145.563,0,0,-304.27341 -7488,9228,16846,16847,-9,-9,1,1,1,22,1,0,0,0,2,-9,2,1,0,0,4,8.6171932,8.2124367,0,1,0,1,1,-9,2,54.761715,0,1,0,20,2,4,1,-9,-9,2019,1,2,7,0,36,38,15,1,0,1,0,10.073036,10.073036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,45,59,6,1,1,0,0,4,5,1,810.5,97679.992,0,0,3153.5645 -7488,9228,16847,16846,-9,-9,2,1,0,20,1,0,0,0,2,-9,2,1,0,0,4,8.0004387,7.8283854,0,1,0,-9,1,-9,-2,40.718395,-9,1,1,22,2,4,1,-9,-9,2019,1,1,12,2,35,0,15,1,0,1,0,8.6820793,8.6820793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,57.16,56.150002,5,1,1,0,0,4,5,1,810.5,97679.992,0,0,3153.5645 -7489,9229,16848,16852,-9,-9,1,1,0,41,1,0,5,0,2,-9,2,1,0,0,3,7.0255136,7.0299501,0,2,0,-9,8,-9,3,56.816929,-9,0,1,38,3,2,3,2,2,2019,2,2,10,0,16,0,15,1,0,3,0,7.7511339,7.7511339,0,0,0,0,0,0,0,74.5,1,0,1,1.7295755,0,65.539993,2,49.040001,55.860001,43.48,33.080002,5,2,3,0,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7489,9229,16849,-9,16848,16852,5,1,0,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1057.3561,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7489,9229,16850,-9,16848,16852,7,1,0,3,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1036.7856,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7489,9229,16851,-9,16848,16852,3,1,0,12,2,0,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1061.7761,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,2,3,0,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7489,9229,16852,16848,-9,-9,2,1,1,38,1,0,5,0,3,-9,3,3,0,1,2,0,0,0,2,0,-9,1,-9,-3,63.505745,-9,0,0,41,2,3,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.48,33.080002,49.040001,55.860001,5,2,3,1,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7489,9229,16853,-9,16848,16852,6,1,1,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.4507,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7489,9229,16854,-9,16848,16852,4,1,0,10,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-903.75024,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,2,3,0,0,7,2,1,409.14285,-24076.543,0,0,2632.9504 -7490,9230,16855,-9,16857,16856,3,1,1,17,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1003.8846,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38462204,0,0,0,45.82,53.48,-9,-9,5,1,1,0,0,13,4,1,598.75,454989.66,0,0,2241.1299 -7490,9230,16856,16857,-9,-9,1,1,1,50,1,0,2,0,2,-9,4,3,0,0,3,5.3111119,5.3818989,0,2,0,-9,5,0,0,-57.26862,0,0,0,50,1,3,1,2,2,2019,3,2,11,0,12,42,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.465727,3,58.73,37.889999,55.959999,49.93,6,1,1,0,0,13,4,1,598.75,454989.66,0,0,2241.1299 -7490,9230,16857,16856,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,3,8.8429651,8.4923706,0,2,0,-9,5,0,0,-40.929554,0,0,0,50,2,3,3,3,1,2019,2,1,11,0,33,33,15,1,0,4,0,30.031246,30.031246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,58.73,37.889999,6,1,1,0,0,13,4,1,598.75,454989.66,0,0,2241.1299 -7490,9230,16858,-9,16857,16856,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-821.67401,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,4,1,598.75,454989.66,0,0,2241.1299 -7491,9231,16859,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,4,0,7.7400622,7.3664494,3,0,-9,0,1,0,-904.34473,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6024103,7.3348413,0,0,45.240002,56.080002,-9,-9,6,1,1,0,0,11,3,1,1094,428954.56,0,0,1549.7343 -7491,9232,16860,-9,-9,16859,2,1,1,44,2,0,0,0,2,-9,2,1,0,0,5,7.8828821,7.7221966,0,3,0,0,0,-9,0,-973.01831,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,13,5,40,40,15,1,1,-9,1,5.6073318,5.6073318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,40.580002,-9,-9,4,1,1,0,0,11,3,1,234,-72268.102,0,0,678.69293 -7492,9233,16861,16862,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,4.7875047,4.4607806,1,0,-9,10,0,0,35.261711,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9370995,4.8503604,0,0,57.900002,51.84,61.610001,37.790001,6,1,1,0,0,1,3,1,197.5,1328526.1,0,0,2290.8228 -7492,9233,16862,16861,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,1,3,0,7.8607326,7.8625722,1,0,-9,10,0,0,-23.835838,0,0,0,69,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8895841,7.6131625,0,0,61.610001,37.790001,57.900002,51.84,6,1,1,0,0,1,3,1,197.5,1328526.1,0,0,2290.8228 -7493,9234,16863,16864,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,4,0,7.9957695,7.9779563,1,0,-9,59,0,2,-22.411997,0,0,0,80,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,7.8374023,7.9859395,3.2613342,3,54.700001,43.560001,59.040001,45.740002,6,1,1,0,0,12,4,1,1456,960319.81,0,0,3661.1514 -7493,9234,16864,16863,-9,-9,1,1,0,80,1,0,0,0,1,-9,4,3,0,0,4,0,7.1225996,7.3649821,1,0,-9,59,0,-2,86.948837,0,0,0,82,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.55125,7.2143035,0,3,59.040001,45.740002,54.700001,43.560001,6,1,1,0,0,12,4,1,1456,960319.81,0,0,3661.1514 -7494,9235,16865,16866,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.2920303,8.1027374,5.3259754,2,0,-9,13,0,5,-47.810902,0,0,0,42,1,3,1,-9,2,2019,1,1,10,0,32,36,15,1,0,1,0,12.997926,12.997926,0,0,0,0,0,0,0,0,1,1,0,5.5211015,0,0,0,51.639999,46.860001,46.080002,57.200001,5,1,1,0,0,8,5,1,872.33331,437712.47,0,0,3907.5195 -7494,9235,16866,16865,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,3,8.5263462,9.2251797,0,2,0,-9,13,0,-5,89.767944,0,0,0,47,2,3,1,2,2,2019,1,2,9,0,49,46,15,1,0,1,0,17.462898,17.462898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,51.639999,46.860001,4,1,1,0,0,8,5,1,872.33331,437712.47,0,0,3907.5195 -7494,9235,16867,-9,16865,16866,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.89703,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,872.33331,437712.47,0,0,3907.5195 -7495,9236,16868,16870,-9,-9,1,1,1,37,1,0,1,0,2,-9,1,1,0,0,3,8.0854244,7.9552402,0,2,0,-9,9,0,4,-16.719759,0,0,0,33,1,4,1,2,3,2019,1,2,4,0,40,37,15,1,0,1,0,11.753686,11.753686,0,0,0,0,0,0,0,2,1,1,0,0,0,4.6262984,3,58.32,50.220001,44.549999,60.419998,5,1,1,0,0,10,5,1,482,236916.36,0,0,3604.1365 -7495,9236,16869,-9,16870,16868,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.5706,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,482,236916.36,0,0,3604.1365 -7495,9236,16870,16868,-9,-9,2,1,0,33,1,0,1,0,1,-9,2,1,0,0,4,8.8353405,8.5302,0,2,0,-9,9,0,-4,-81.847038,0,0,1,37,2,3,1,-9,-9,2019,1,1,8,0,40,42,15,1,0,1,0,16.863844,16.863844,0,0,0,0,0,0,0,7,1,1,0,0,0,3.7923226,3,44.549999,60.419998,58.32,50.220001,5,1,1,0,0,10,5,1,482,236916.36,0,0,3604.1365 -7496,9237,16871,-9,-9,-9,1,1,1,31,3,0,0,0,2,-9,2,1,0,0,3,8.43785,8.1722441,0,3,0,-9,0,-9,0,-968.41815,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.23,31.530001,-9,-9,3,1,1,0,0,2,4,1,217,123998.4,0,0,1834.6801 -7497,9238,16872,-9,16873,16874,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-908.73846,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,2,4,0,993.25,270722.5,0,0,3309.5752 -7497,9238,16873,16874,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,3,8.1417131,8.0588121,0,2,0,-9,10,0,-7,-27.696505,0,0,1,43,2,3,1,3,2,2019,1,2,11,0,40,40,15,1,0,1,0,10.18623,10.18623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.939999,55.880001,60.290001,52.110001,6,1,1,0,0,2,4,0,993.25,270722.5,0,0,3309.5752 -7497,9238,16874,16873,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.3703308,8.3630362,0,2,0,-9,10,0,7,36.737019,0,0,0,36,2,3,1,3,3,2019,1,1,8,0,12,45,15,1,0,1,0,53.085045,53.085045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,51.939999,55.880001,7,1,1,0,0,2,4,0,993.25,270722.5,0,0,3309.5752 -7497,9238,16875,-9,16873,16874,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.39117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,0,993.25,270722.5,0,0,3309.5752 -7498,9239,16876,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,8.2666807,8.2305183,0,3,0,0,0,-9,0,-923.05273,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,37,35,15,1,0,-9,0,8.4891081,8.4891081,0,0,0,0,0,0,0,0,1,1,0,7.4764457,0,0,0,54.799999,42.450001,-9,-9,5,1,1,0,1,7,4,1,287,-140243.52,0,0,2051.2207 -7499,9240,16877,16878,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,1,1,0,6.5961637,6.9530964,1,0,-9,32,0,0,-47.730141,0,0,0,62,2,1,3,1,3,2019,4,1,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.7034168,0,124.73666,2,25.83,22.389999,43.060001,18.67,1,2,3,0,0,12,2,0,1319.6666,-17590.121,0,0,2672.1047 -7499,9240,16878,16877,-9,-9,1,1,1,62,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,32,0,9,71.11998,0,0,0,53,2,1,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.060001,18.67,25.83,22.389999,2,1,1,0,0,12,2,0,1319.6666,-17590.121,0,0,2672.1047 -7499,9240,16879,-9,16877,16878,3,1,0,5,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1037.1746,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,12,2,0,1319.6666,-17590.121,0,0,2672.1047 -7500,9241,16880,16881,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,7.2376852,7.1190591,1,0,-9,50,0,3,83.142715,0,0,0,70,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5467362,6.9558411,0,0,58.5,44.669998,44.73,56.400002,7,1,1,0,0,10,3,1,653,748399.06,0,0,3026.5884 -7500,9241,16881,16880,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,7.1725211,6.5506978,1,0,-9,50,0,-3,141.30264,0,0,0,73,3,3,3,2,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1405907,0,0,44.73,56.400002,58.5,44.669998,6,1,1,0,0,10,3,1,653,748399.06,0,0,3026.5884 -7501,9242,16882,-9,16885,16884,2,1,1,20,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1094.9963,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,4,1,1,1903,0,0,0,0 -7501,9243,16883,-9,16885,16884,3,1,1,18,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-916.18036,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.190335,0,0,0,46.610001,56.93,-9,-9,6,1,1,0,0,4,3,1,1280,0,0,0,-115.16315 -7501,9244,16884,16885,-9,-9,4,1,1,68,1,0,1,0,3,-9,4,3,0,1,1,0,0,0,2,0,-9,6,0,11,96.789551,0,0,0,57,1,3,1,-9,-9,2019,3,1,30,10,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7820265,0,0,0,14.79,36.860001,48,49,1,1,1,0,0,4,3,1,1178,61304.836,0,0,3462.9585 -7501,9244,16885,16884,-9,-9,1,1,0,57,1,0,1,0,1,-9,2,1,0,0,3,8.0929527,8.2381859,7.3663278,2,0,-9,6,0,-11,4.03161,0,0,0,68,3,1,3,3,3,2019,2,4,15,5,23,22,15,1,1,4,0,16.811476,16.811476,0,0,0,0,0,0,0,2,1,1,0,0,7.2389369,4.7468448,1,48,49,14.79,36.860001,6,1,1,0,0,4,3,1,1178,61304.836,0,0,3462.9585 -7502,9245,16886,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,0,4,8.9746065,9.0101271,0,3,0,0,0,-9,0,-915.46881,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,29,6,15,1,0,-9,0,22.686892,22.686892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.049999,52.709999,-9,-9,6,1,1,0,0,6,5,0,1096,340601.16,0,0,3558.3 -7503,9246,16887,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1100.5526,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.5683446,0,0,0,0,1,1,0,0,0,0,0,63.759998,18.07,-9,-9,2,1,1,0,0,12,1,0,620,174407.81,0,0,2804.9929 -7504,9247,16888,16889,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,2,7.7533059,7.7104092,6.302423,1,0,-9,41,0,2,-29.329004,0,0,0,59,3,4,3,3,2,2019,2,2,6,0,25,17,15,1,0,4,0,8.3784065,8.3784065,0,0,0,0,0,0,0,0,0,0,0,4.2923594,6.156146,0,0,57.57,49.689999,60.119999,54.799999,6,1,1,0,0,9,3,1,530,193773.28,0,0,1211.2214 -7504,9247,16889,16888,-9,-9,2,1,0,59,1,0,0,0,3,-9,4,3,0,0,4,0,5.7169142,6.1640067,1,0,-9,7,0,-2,25.44433,0,0,0,61,3,2,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.0402007,5.7056522,6.7521758,3,60.119999,54.799999,57.57,49.689999,7,1,1,0,0,9,3,1,530,193773.28,0,0,1211.2214 -7505,9248,16890,16891,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,6.3778591,6.1806083,1,0,-9,27,0,-6,59.462025,0,0,0,73,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.7864715,6.6995759,.15432328,3,38.75,60.389999,39.619999,52,2,1,1,0,0,9,3,1,326.5,1157315.4,0,0,3321.8987 -7505,9248,16891,16890,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.8498425,7.6355796,1,0,-9,27,0,6,-78.031403,0,0,0,67,3,4,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.7169242,8.1038008,71.049736,3,39.619999,52,38.75,60.389999,6,1,1,0,0,9,3,1,326.5,1157315.4,0,0,3321.8987 -7506,9249,16892,-9,16893,16894,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.0604,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,501.5,213908.89,0,0,5098.7988 -7506,9249,16893,16894,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,0,4,8.4283009,8.5645027,0,2,0,-9,2,0,-1,39.58913,0,0,1,32,1,4,1,2,2,2019,1,2,7,0,22,24,15,1,0,1,0,22.641243,22.641243,0,0,0,0,0,0,0,0,1,1,0,6.8850441,0,0,0,52.43,55.57,51.830002,57.200001,6,1,1,0,0,9,5,1,501.5,213908.89,0,0,5098.7988 -7506,9249,16894,16893,-9,-9,2,1,1,32,1,1,2,0,1,-9,2,1,0,0,4,9.3109884,9.1417418,0,2,0,-9,2,0,1,61.264969,0,0,0,31,1,4,1,-9,-9,2019,1,1,8,0,40,37,15,1,0,1,0,22.577366,22.577366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.43,55.57,6,1,1,0,0,9,5,1,501.5,213908.89,0,0,5098.7988 -7506,9249,16895,-9,16893,16894,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.5154,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,501.5,213908.89,0,0,5098.7988 -7507,9250,16896,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1011.0787,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.83,27.790001,-9,-9,4,1,1,0,1,9,1,0,511,44930.43,0,0,132.77722 -7508,9251,16897,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,4,7.9617267,7.7072864,5.3983555,4,0,0,0,-9,0,-975.89703,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,29,15,1,0,-9,0,7.1686406,7.1686406,0,0,0,0,0,0,0,0,1,1,0,5.315527,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,5,3,1,993,-3291.8242,0,0,1957.5361 -7508,9251,16898,-9,16897,-9,3,1,0,16,2,0,1,0,2,-9,3,2,0,0,4,0,0,0,4,0,0,0,-9,0,-913.45239,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.889999,69.300003,-9,-9,4,1,1,1,0,5,3,1,993,-3291.8242,0,0,1957.5361 -7508,9252,16899,-9,16897,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,0,3,7.8632331,7.8015356,0,3,0,0,0,-9,0,-826.80927,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,50,0,15,1,0,-9,1,5.4430528,5.4430528,0,0,0,0,0,0,0,0,1,1,0,1.0215484,0,0,0,56.939999,49.529999,-9,-9,7,1,1,0,0,5,3,1,4602,-10910.94,0,0,420.90442 -7509,9253,16900,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,1,1,0,0,4,8.7970753,8.8071957,4.2527351,3,0,-9,0,-9,0,-924.67242,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,40,0,15,1,0,-9,0,18.200455,18.200455,0,0,0,0,0,0,0,0,1,1,0,0,4.1944189,0,0,54.200001,57.490002,-9,-9,4,1,1,0,0,7,5,1,347,472176.22,0,0,3228.3362 -7510,9254,16901,-9,-9,-9,1,1,0,84,3,0,0,0,1,-9,4,3,0,0,3,0,7.3592372,7.0033174,3,0,0,0,-9,0,-912.47266,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1220565,7.2625937,0,0,59.209999,43.049999,-9,-9,6,1,1,0,0,8,3,1,425,148627.22,0,0,2704.9758 -7511,9255,16902,-9,16903,16904,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.9811,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,829.25,1638086.9,0,0,6150.9648 -7511,9255,16903,16904,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,8.6383009,8.803894,0,2,0,-9,7,0,-1,127.16291,0,0,0,48,1,4,1,2,2,2019,1,1,8,0,23,20,15,1,0,1,0,35.252831,35.252831,0,0,0,0,0,0,0,2,0,0,0,0,0,.34071547,3,51.240002,58.84,46.259998,51.5,6,1,1,0,0,9,5,1,829.25,1638086.9,0,0,6150.9648 -7511,9255,16904,16903,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,9.3775139,9.5856218,0,2,0,-9,7,0,1,-47.746498,0,0,0,47,1,4,1,2,1,2019,1,2,14,2,50,75,15,1,0,1,0,28.483669,28.483669,0,0,0,0,0,0,0,0,0,0,0,3.1766188,0,0,0,46.259998,51.5,51.240002,58.84,6,1,1,0,0,9,5,1,829.25,1638086.9,0,0,6150.9648 -7511,9255,16905,-9,16903,16904,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,3.665031,4.2554827,2,0,0,0,-9,0,-919.13416,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8929348,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,9,5,1,829.25,1638086.9,0,0,6150.9648 -7512,9256,16906,-9,16907,16908,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.0099,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,3,0,300.5,35388.305,0,0,1765.0293 -7512,9256,16907,16908,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,2,6.7904153,6.9385118,0,2,0,-9,10,0,-8,101.90779,0,0,1,46,2,2,1,-9,-9,2019,1,2,10,0,14,13,15,1,0,1,0,7.3786297,7.3786297,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,55.09,49.419998,47.889999,5,3,4,0,0,10,3,0,300.5,35388.305,0,0,1765.0293 -7512,9256,16908,16907,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,2,7.9338913,8.1136684,0,2,0,-9,10,0,8,71.704674,0,0,0,38,2,2,1,-9,-9,2019,1,1,14,2,40,45,15,1,0,1,0,8.7743196,8.7743196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.419998,47.889999,32.5,55.09,5,1,1,0,0,10,3,0,300.5,35388.305,0,0,1765.0293 -7512,9256,16909,-9,16907,16908,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.05438,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,10,3,0,300.5,35388.305,0,0,1765.0293 -7512,9257,16910,-9,16907,16908,3,1,0,19,2,0,2,0,2,-9,2,1,0,0,3,6.8967352,6.6702394,0,3,0,0,0,-9,0,-1054.1335,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,55,0,15,1,0,-9,1,1.9259319,1.9259319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.290001,47.880001,-9,-9,5,4,2,0,0,10,2,0,329,22225.756,0,0,1164.01 -7513,9258,16911,16912,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,2,0,8.4184351,8.4571066,1,0,-9,58,0,1,-74.247215,0,0,0,77,2,2,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.58826351,8.1964645,0,0,27.799999,52.82,36.990002,42.919998,4,1,1,0,0,10,4,1,771,468076.44,0,0,4314.0674 -7513,9258,16912,16911,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,2,0,7.7765141,7.79283,1,0,-9,58,0,-1,50.724049,0,0,0,78,2,2,3,2,2,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,1,0,8.2208099,0,0,0,0,0,1,1,0,4.2578063,7.7616024,0,0,36.990002,42.919998,27.799999,52.82,4,1,1,0,0,10,4,1,771,468076.44,0,0,4314.0674 -7514,9259,16913,-9,16914,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-978.37439,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,2,0,542,-51517.266,0,0,1878.0549 -7514,9259,16914,-9,-9,-9,1,1,0,38,3,0,1,0,3,-9,2,1,0,0,4,7.0184073,7.1097631,0,4,0,0,0,-9,0,-1073.9795,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,24,23,15,1,0,-9,0,6.1986589,6.1986589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,13,2,0,542,-51517.266,0,0,1878.0549 -7515,9260,16915,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,0,2,0,5.5121527,5.4292002,3,0,0,0,-9,0,-910.05823,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.4224324,0,7.7440209,0,0,1,1,0,0,5.4897528,0,0,64.480003,41.060001,-9,-9,7,1,1,0,0,4,2,0,285,-34553.082,0,0,2013.3878 -7516,9261,16916,16917,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,3,8.3111248,8.3781815,0,2,0,-9,28,0,-5,99.852707,0,0,0,53,2,4,1,-9,2,2019,1,2,17,6,30,30,15,1,1,1,0,17.311216,17.311216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.549999,61.98,49.349998,59.639999,5,1,1,0,1,12,5,1,272,689932.63,0,0,4292.875 -7516,9261,16917,16916,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.6192436,8.3597441,0,2,0,-9,28,0,5,174.21658,0,0,0,48,1,3,1,1,2,2019,1,1,7,1,41,44,15,1,0,1,0,15.204457,15.204457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,21.549999,61.98,5,1,1,0,0,12,5,1,272,689932.63,0,0,4292.875 -7517,9262,16918,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,1,1,0,0,5,7.547893,7.0771894,0,3,0,0,0,-9,0,-897.5069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,45,40,15,1,0,-9,0,4.0637169,4.0637169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,3,1,1154,-81216.859,0,0,854.96478 -7518,9263,16919,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1035.9327,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.926252,3,48.700001,56.220001,-9,-9,6,2,3,1,0,7,1,0,632,106731.38,0,0,-211.15475 -7518,9264,16920,-9,-9,-9,3,1,1,18,2,0,0,0,2,1,2,1,0,0,3,8.0042391,7.9196763,0,3,0,0,0,-9,0,-972.71741,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,36,0,15,1,0,-9,1,7.3768597,7.3768597,0,0,0,0,0,0,0,7,1,1,0,0,0,.66049767,3,44.279999,42.189999,-9,-9,5,2,3,0,0,7,3,0,112,-255925.09,0,0,361.05841 -7519,9265,16921,16922,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-3,28.597815,0,0,0,70,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,51.970001,33.139999,6,1,1,0,0,2,2,1,980.5,837699.5,0,0,1557.6318 -7519,9265,16922,16921,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,7.4358816,7.155632,1,0,-9,50,0,3,-33.38995,0,0,0,67,1,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4094849,0,0,51.970001,33.139999,55.959999,49.93,7,1,1,0,0,2,2,1,980.5,837699.5,0,0,1557.6318 -7520,9266,16923,16924,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,20,0,-5,52.423717,0,0,0,78,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.110001,44.400002,48.240002,22.459999,6,1,1,0,0,13,2,0,1833.5,438266.06,0,0,2257.9026 -7520,9266,16924,16923,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,1,2,0,6.2048588,5.8972297,1,0,-9,25,0,5,-25.84771,0,0,0,73,3,3,3,3,3,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9751072,0,0,48.240002,22.459999,56.110001,44.400002,6,1,1,0,0,13,2,0,1833.5,438266.06,0,0,2257.9026 -7521,9267,16925,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,5.6831365,5.4904709,3,0,0,0,-9,0,-991.04474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,4,1,-9,0,0,0,1,4.3465137,0,4.359334,0,0,59.115623,0,1,1,0,0,5.5365462,0,0,52.639999,28.68,-9,-9,4,1,1,0,0,11,2,1,211,898.58728,0,0,1375.4163 -7522,9268,16926,16927,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.5233564,8.5316591,0,1,0,-9,32,0,-1,-7.2533665,0,0,0,53,2,4,1,2,2,2019,1,1,8,0,38,37,15,1,0,1,0,12.788976,12.788976,0,0,0,0,0,0,0,0,0,0,0,3.1564085,0,0,0,50.630001,50.990002,45.150002,57.459999,6,1,1,0,0,6,5,1,759,187881.59,0,0,7964.8369 -7522,9268,16927,16926,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,9.8805122,9.6914721,0,1,0,-9,32,0,1,5.4032941,0,0,0,52,2,3,1,2,1,2019,1,2,13,2,45,38,15,1,0,1,0,35.263908,35.263908,0,0,0,0,0,0,0,0,0,0,0,.71107215,0,0,0,45.150002,57.459999,50.630001,50.990002,6,1,1,0,0,6,5,1,759,187881.59,0,0,7964.8369 -7522,9269,16928,-9,16926,16927,3,1,0,21,2,0,0,0,2,-9,3,3,0,0,4,6.8652673,6.4837251,0,3,0,0,0,-9,0,-969.39972,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0805068,0,0,0,46.389999,60.990002,-9,-9,7,1,1,1,0,6,2,1,626,0,0,0,-314.57184 -7522,9270,16929,-9,16926,16927,4,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,7.9307814,7.9384327,0,3,0,0,0,-9,0,-1069.3153,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,1,38,30,15,1,0,-9,1,5.7560906,5.7560906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.709999,51.810001,-9,-9,6,1,1,0,0,6,3,1,612,18408.99,0,0,765.82831 -7523,9271,16930,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-931.77606,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,26,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.59,47.27,-9,-9,1,1,1,1,0,12,1,0,352,-63733.352,0,0,2415.1875 -7524,9272,16931,16933,-9,-9,1,1,0,33,1,1,1,0,1,-9,5,1,0,0,5,0,0,0,2,0,-9,8,0,-3,-57.628971,0,0,1,36,1,4,1,2,2,2019,1,2,12,4,0,42,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.41,59.77,54.200001,57.490002,6,1,1,0,0,5,4,1,581.33331,14144.862,0,0,2649.4653 -7524,9272,16932,-9,16931,16933,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-995.62195,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,581.33331,14144.862,0,0,2649.4653 -7524,9272,16933,16931,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,4,9.3944483,8.7480726,0,2,0,-9,8,0,3,-10.714438,0,0,0,33,1,5,1,2,2,2019,1,1,8,0,55,52,15,1,0,1,0,15.700356,15.700356,0,0,0,0,0,0,0,0,1,1,0,2.3468297,0,0,0,54.200001,57.490002,38.41,59.77,6,1,1,0,0,5,4,1,581.33331,14144.862,0,0,2649.4653 -7525,9273,16934,16936,-9,-9,2,1,0,52,1,0,1,0,3,-9,2,1,0,0,3,7.6969223,7.6530805,0,2,0,-9,7,0,1,168.92798,0,0,0,51,3,3,1,3,3,2019,1,1,13,1,37,30,15,1,0,1,0,7.310184,7.310184,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,43.369999,49.25,30.870001,48.220001,6,1,1,0,0,11,4,1,576,324711.69,0,0,2447.1006 -7525,9273,16935,-9,16934,16936,5,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.9791,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,4,1,576,324711.69,0,0,2447.1006 -7525,9273,16936,16934,-9,-9,1,1,1,51,1,0,1,0,3,-9,1,1,0,0,3,8.2601738,8.3675995,0,2,0,-9,7,0,-1,6.979538,0,0,0,52,3,3,1,2,2,2019,1,2,12,0,60,60,15,1,0,1,0,6.7500076,6.7500076,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.870001,48.220001,43.369999,49.25,4,1,1,0,0,11,4,1,576,324711.69,0,0,2447.1006 -7525,9274,16937,-9,16934,16936,3,1,0,28,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-990.49323,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,40,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.65,49.700001,-9,-9,4,1,1,1,0,11,1,1,148,114379.04,0,0,1112.3612 -7525,9275,16938,-9,16934,16936,4,1,0,25,2,0,1,0,2,-9,2,1,0,0,3,7.5352292,7.7448831,0,3,0,0,0,-9,0,-993.74249,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,41,42,15,1,0,-9,1,7.1002407,7.1002407,0,0,0,0,0,0,0,0,1,0,1,1.2816504,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,11,3,1,1639,-99180.156,0,0,1226.7662 -7526,9276,16939,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-824.25073,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,31.690001,-9,-9,3,1,1,0,0,11,1,0,381,78970.047,0,0,1425.0161 -7527,9277,16940,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,3,8.1440306,7.9701376,0,3,0,0,0,-9,0,-1058.2865,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,19,7,39,39,15,1,1,-9,0,10.091885,10.091885,0,0,0,0,0,0,0,7,0,0,0,0,0,2.231354,3,40.529999,55.549999,-9,-9,3,1,1,0,0,2,4,1,974,-12516.592,0,0,1874.5771 -7528,9278,16941,-9,16943,16942,3,1,1,17,2,0,1,0,2,1,2,3,0,0,5,7.7424188,7.8219347,0,2,0,0,0,-9,0,-1056.095,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,50,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.310001,48.84,-9,-9,7,1,1,0,0,12,4,1,907.5,370103.09,0,0,3789.7109 -7528,9278,16942,16943,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.6218843,8.4826756,0,2,0,-9,6,0,8,-108.33837,0,0,0,35,2,5,1,2,2,2019,1,1,9,1,38,52,15,1,0,1,0,17.535606,17.535606,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,51.139999,60.450001,5,1,1,0,0,12,4,1,907.5,370103.09,0,0,3789.7109 -7528,9278,16943,16942,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,0,5,7.7446561,7.9225473,0,2,0,-9,6,0,-8,7.9362297,0,0,1,43,2,4,1,2,2,2019,1,2,7,0,30,28,15,1,0,1,0,8.835104,8.835104,0,0,0,0,0,0,0,0,1,1,0,3.3900602,0,0,0,51.139999,60.450001,52,55,6,1,1,0,0,12,4,1,907.5,370103.09,0,0,3789.7109 -7528,9278,16944,-9,16943,16942,4,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.80341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,907.5,370103.09,0,0,3789.7109 -7529,9279,16945,16946,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,5,8.3642559,8.2823496,0,2,0,-9,16,0,-1,-48.659935,0,0,1,44,1,5,1,-9,-9,2019,1,2,6,0,37,42,15,1,0,1,0,12.498078,12.498078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,58.5,46.16,6,2,3,0,0,9,4,1,753.33331,599452.63,0,0,3288.1135 -7529,9279,16946,16945,-9,-9,2,1,1,44,1,0,1,0,1,-9,2,1,0,0,5,7.8038645,8.0560579,0,2,0,-9,16,0,1,-157.31964,0,0,0,43,2,5,1,-9,-9,2019,1,1,6,0,48,48,15,1,0,1,0,7.928122,7.928122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,46.16,57.060001,57.759998,7,2,3,0,0,9,4,1,753.33331,599452.63,0,0,3288.1135 -7529,9279,16947,-9,16945,16946,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.5957,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,4,1,753.33331,599452.63,0,0,3288.1135 -7530,9280,16948,16949,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,5.5231299,6.045486,1,0,-9,60,0,-2,16.777224,0,0,0,79,3,2,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6166821,6.0709195,0,0,66.349998,41.049999,39.900002,30.629999,7,1,1,0,0,4,2,1,199.5,565123.75,0,0,1287.1492 -7530,9280,16949,16948,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,2,0,7.2184563,6.9206886,1,0,-9,60,0,2,-78.418571,0,0,0,77,3,4,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2442384,7.6681395,0,0,39.900002,30.629999,66.349998,41.049999,1,1,1,0,0,4,2,1,199.5,565123.75,0,0,1287.1492 -7531,9281,16950,16951,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,1,2,6.3991323,6.7557015,4.8880477,1,0,-9,24,0,4,-30.810575,0,0,0,53,1,5,1,3,2,2019,1,1,9,0,4,6,15,1,0,1,0,18.03063,18.03063,0,0,0,0,0,0,0,2,1,1,0,5.0065093,5.0621619,.0055666873,3,51.849998,46.810001,59.43,58.049999,6,1,1,0,0,2,4,1,2105.5,465789.19,0,0,3082.4976 -7531,9281,16951,16950,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,5,8.3748875,8.5790901,0,1,0,-9,24,0,-4,37.433506,0,0,0,57,2,2,1,2,2,2019,1,2,6,0,43,37,15,1,0,1,0,11.598102,11.598102,0,0,0,0,0,0,0,2,1,1,0,5.6437888,0,1.793278,1,59.43,58.049999,51.849998,46.810001,7,1,1,0,0,2,4,1,2105.5,465789.19,0,0,3082.4976 -7532,9282,16952,-9,16953,16954,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-833.74841,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,3,0,1084.25,2216676.8,0,0,2156.5601 -7532,9282,16953,16954,-9,-9,1,1,0,25,1,1,2,0,2,-9,5,1,0,0,4,7.0777473,6.7455144,0,2,0,-9,2,0,-2,-50.401775,0,1,1,27,2,4,1,2,2,2019,1,2,19,7,17,17,15,1,1,1,0,6.2850084,6.2850084,0,0,0,0,0,0,0,2,1,1,0,0,0,15.458466,3,36.450001,57.389999,36.16,61.919998,6,1,1,0,0,12,3,0,1084.25,2216676.8,0,0,2156.5601 -7532,9282,16954,16953,-9,-9,2,1,1,27,1,1,2,0,2,-9,2,1,0,0,4,8.0034523,8.0558901,0,2,0,-9,2,0,2,13.951509,0,1,0,25,2,4,1,-9,-9,2019,1,1,14,2,43,39,15,1,0,1,0,7.0536952,7.0536952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.16,61.919998,36.450001,57.389999,4,1,1,0,0,12,3,0,1084.25,2216676.8,0,0,2156.5601 -7532,9282,16955,-9,16953,16954,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.4978,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,0,1084.25,2216676.8,0,0,2156.5601 -7533,9283,16956,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,1,0,7.1052547,7.8855205,3,0,-9,0,1,0,-975.44733,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,.88677448,0,0,0,0,0,0,1,1,0,2.5666564,7.3709722,0,0,48.209999,16.059999,-9,-9,3,1,1,0,0,5,3,1,909,166204.81,0,0,1090.3273 -7534,9284,16957,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,4,8.1011562,8.2890224,0,3,0,0,0,-9,0,-931.24847,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,22,21,15,1,0,-9,0,20.221531,20.221531,0,0,0,0,0,0,0,0,1,1,0,6.6134591,0,0,0,46.389999,60.990002,-9,-9,5,1,1,0,0,7,4,1,189,799710.25,0,0,2119.115 -7535,9285,16958,16959,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,8.7185783,8.6577339,0,1,0,-9,10,0,1,95.55925,0,0,0,61,3,5,1,3,3,2019,1,1,11,1,60,50,15,1,0,1,0,11.707221,11.707221,0,0,0,0,0,0,0,0,0,0,0,2.7480524,0,0,0,60.52,40.77,57.060001,57.759998,6,1,1,0,0,1,5,1,835.5,254057.94,0,0,3822.7068 -7535,9285,16959,16958,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,5,7.8772798,8.0115061,0,1,0,-9,33,0,-1,-7.1221204,0,0,0,62,3,4,1,3,3,2019,1,2,6,0,32,32,15,1,0,1,0,10.49775,10.49775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,60.52,40.77,7,1,1,0,0,1,5,1,835.5,254057.94,0,0,3822.7068 -7536,9286,16960,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,0,2,0,7.6040807,8.124671,3,0,0,0,-9,0,-921.7041,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.7324185,0,0,0,0,1,1,0,0,7.5088034,0,0,65.970001,26.73,-9,-9,4,1,1,0,0,7,3,0,1286,686885.31,0,0,2613.6145 -7537,9287,16961,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1186.2251,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,7.0062776,0,14.099275,3,57.16,56.150002,-9,-9,6,2,3,1,0,6,1,1,4327,-135408.67,0,0,-430.29379 -7537,9288,16962,-9,-9,-9,5,1,0,50,2,0,0,0,3,-9,2,1,0,0,3,7.9709573,7.9664826,0,3,0,0,0,-9,0,-917.63367,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,35,35,15,1,1,-9,1,11.721073,11.721073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.290001,49.34,-9,-9,7,2,3,0,0,6,4,1,1535,-15268.87,0,0,1508.5879 -7538,9289,16963,16964,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,2,7.8514357,8.0356054,0,1,0,-9,5,0,-2,-29.181,0,0,1,32,1,1,1,2,3,2019,1,2,13,2,32,0,15,1,0,1,0,12.69537,12.69537,0,0,0,0,0,0,0,0,0,0,0,1.2370584,0,0,0,17.889999,43.470001,49.200001,18.360001,4,1,1,0,0,2,3,1,982.5,-45434.047,0,0,2462.0735 -7538,9289,16964,16963,-9,-9,2,1,1,32,1,0,0,0,1,-9,1,1,0,0,1,4.510138,4.819283,0,1,0,-9,5,0,2,30.577227,0,0,0,30,2,2,1,-9,-9,2019,1,1,11,1,0,44,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2496805,0,0,0,49.200001,18.360001,17.889999,43.470001,5,1,1,0,0,2,3,1,982.5,-45434.047,0,0,2462.0735 -7539,9290,16965,-9,16966,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1076.9854,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,3,0,522,-94547.555,0,0,2657.2703 -7539,9290,16966,-9,-9,-9,1,1,0,37,2,0,1,0,1,-9,2,1,0,0,4,8.0680475,7.9663858,0,4,0,0,0,-9,0,-1102.3184,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,2,35,22,15,1,0,-9,0,9.5423965,9.5423965,0,0,0,0,0,0,0,0,1,1,0,7.5843129,0,0,0,42.220001,58.790001,-9,-9,5,1,1,0,0,8,3,0,522,-94547.555,0,0,2657.2703 -7539,9291,16967,-9,-9,-9,3,1,0,38,2,0,1,0,1,-9,2,1,0,0,2,8.1976871,8.4216299,0,4,0,-9,0,-9,0,-967.05536,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,43,0,15,1,1,-9,0,9.3492908,9.3492908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.03,54.619999,-9,-9,4,1,1,0,1,8,3,0,250,-69287.102,0,0,1492.4275 -7540,9292,16968,16969,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,8.5853662,8.5668764,0,1,0,-9,35,0,-4,-25.322124,0,0,0,56,2,4,1,2,2,2019,1,2,7,1,37,37,15,1,0,1,0,12.193906,12.193906,0,0,0,0,0,0,0,0,1,1,0,.57693452,0,0,0,55.91,36.73,41.169998,59.310001,6,1,1,0,0,5,5,1,1384.5,1145709.4,0,0,3676.8628 -7540,9292,16969,16968,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.3907785,8.2907934,0,1,0,-9,35,0,4,-10.741769,0,0,0,52,1,3,1,3,3,2019,1,1,3,0,40,42,15,1,0,1,0,14.194668,14.194668,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,55.91,36.73,6,1,1,0,0,5,5,1,1384.5,1145709.4,0,0,3676.8628 -7540,9293,16970,-9,16968,16969,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,8.0550423,8.1604958,0,3,0,0,0,-9,0,-1017.8592,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,74,39,15,1,1,-9,1,5.6583638,5.6583638,0,0,0,0,0,0,0,0,1,1,0,2.6214709,0,0,0,36.889999,57.169998,-9,-9,5,1,1,0,0,5,4,1,382,-43913.023,0,0,1408.7922 -7541,9294,16971,16975,-9,-9,2,1,1,48,1,1,3,0,1,-9,2,1,0,0,4,9.2472086,9.6655998,0,2,0,-9,6,0,12,39.141129,0,0,0,36,1,1,1,3,3,2019,1,1,12,2,46,45,15,1,0,1,0,37.455593,37.455593,0,0,0,0,0,0,0,0,0,0,0,1.7621645,0,0,0,49.439999,56.93,11.24,45.240002,4,1,1,0,0,9,5,1,694.20001,3384520,0,0,6861.7905 -7541,9294,16972,-9,16975,16971,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.069,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,694.20001,3384520,0,0,6861.7905 -7541,9294,16973,-9,16975,16971,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.8158,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,694.20001,3384520,0,0,6861.7905 -7541,9294,16974,-9,16975,16971,3,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.69141,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,694.20001,3384520,0,0,6861.7905 -7541,9294,16975,16971,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,0,1,9.3281584,9.1095753,0,2,0,-9,6,0,-12,-93.514862,0,0,1,48,1,4,1,1,1,2019,1,2,33,12,120,60,15,1,1,1,0,10.275064,10.275064,0,0,0,0,0,0,0,0,0,0,0,3.0256016,0,0,0,11.24,45.240002,49.439999,56.93,3,1,1,0,0,9,5,1,694.20001,3384520,0,0,6861.7905 -7542,9295,16976,-9,16979,16977,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.87,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,4,1,682.25,261897.92,0,0,3940.1145 -7542,9295,16977,16979,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,0,4,9.3276968,8.8662615,0,2,0,-9,9,0,-4,28.173693,0,0,0,40,1,4,1,-9,-9,2019,1,1,10,0,40,50,15,1,0,1,0,24.330297,24.330297,0,0,0,0,0,0,0,0,0,0,0,6.8915977,0,0,0,48.279999,60.18,46.099998,59.990002,6,1,1,0,0,9,4,1,682.25,261897.92,0,0,3940.1145 -7542,9295,16978,-9,16979,16977,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.5085,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,682.25,261897.92,0,0,3940.1145 -7542,9295,16979,16977,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,0,4,5.7646565,5.4884162,0,2,0,-9,12,0,4,-163.52843,0,0,1,36,1,4,1,2,2,2019,1,2,10,0,3,16,15,1,0,1,0,10.938646,10.938646,0,0,0,0,0,0,0,0,0,0,0,2.3742692,0,0,0,46.099998,59.990002,48.279999,60.18,6,1,1,0,0,9,4,1,682.25,261897.92,0,0,3940.1145 -7543,9296,16980,16981,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.906342,6.0088873,1,0,-9,9,0,17,-56.638126,0,0,0,54,2,4,1,3,3,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2703152,5.7791567,0,0,47.549999,55.060001,62.25,48.330002,6,1,1,0,0,5,3,1,918,449973.28,0,0,2636.0737 -7543,9296,16981,16980,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,7.6266894,7.6563864,0,1,0,-9,9,0,-17,33.148979,0,0,0,71,3,3,3,3,2,2019,2,1,8,0,20,35,15,1,0,4,0,11.063748,11.063748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.25,48.330002,47.549999,55.060001,6,1,1,0,0,5,3,1,918,449973.28,0,0,2636.0737 -7544,9297,16982,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-901.54657,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.650002,35.25,-9,-9,7,1,1,0,0,7,1,0,514,-13803.647,0,0,1686.4951 -7545,9298,16983,16984,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,8.0087061,8.1716719,0,2,0,-9,19,-9,4,48.301567,-9,0,0,49,1,3,1,2,2,2019,1,1,4,0,7,0,15,1,0,1,0,51.288406,51.288406,0,0,0,0,0,0,0,0,0,0,0,8.2129841,0,0,0,57.16,56.150002,59.459999,46.990002,6,3,4,0,0,8,5,1,454.5,1523826.3,0,0,7689.5146 -7545,9298,16984,16983,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,8.7777376,8.9472971,0,2,0,-9,19,-9,-4,-69.976685,-9,0,0,53,1,4,1,2,1,2019,1,2,4,0,36,0,15,1,0,1,0,21.469248,21.469248,0,0,0,0,0,0,0,0,0,0,0,8.8303528,0,0,0,59.459999,46.990002,57.16,56.150002,6,3,4,0,0,8,5,1,454.5,1523826.3,0,0,7689.5146 -7545,9299,16985,-9,16984,16983,3,1,1,23,2,0,1,0,1,-9,2,1,0,0,3,8.3316612,8.5717497,0,3,0,-9,0,-9,0,-1001.2455,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,37,0,15,1,0,-9,1,11.8534,11.8534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,52.91,-9,-9,5,3,4,0,0,8,4,1,129,5834.8296,0,0,2054.7053 -7545,9300,16986,-9,16984,16983,4,1,1,18,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-911.77795,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,3,4,0,0,8,5,1,132,0,0,0,900.51599 -7546,9301,16987,16988,-9,-9,2,1,0,53,1,0,0,0,2,-9,3,3,0,1,4,0,0,0,1,0,-9,7,0,-3,-79.691261,0,0,0,56,2,1,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.16968,1,57.759998,54.509998,38.419998,15.04,6,1,1,1,0,5,2,1,1168.5,871800.25,0,0,1800.0483 -7546,9301,16988,16987,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,1,1,0,7.431047,7.009501,1,0,-9,7,0,3,-103.44396,0,0,0,53,2,4,3,2,2,2019,4,2,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1275954,7.1439562,0,0,38.419998,15.04,57.759998,54.509998,5,1,1,0,0,5,2,1,1168.5,871800.25,0,0,1800.0483 -7547,9302,16989,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-968.3338,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.290001,52.349998,-9,-9,5,1,1,0,0,11,1,0,210,16222.361,0,0,1932.7499 -7548,9303,16990,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1035.2603,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6060715,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,8,1,1,718,1887311.8,0,0,-593.44592 -7549,9304,16991,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1068.2872,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.25,50.259998,-9,-9,5,4,5,0,0,10,1,0,296,-226092.66,0,0,1482.5815 -7550,9305,16992,-9,16996,16994,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.1195,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,5,1,896.20001,4929128.5,0,0,4182.6421 -7550,9305,16993,-9,16996,16994,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.834,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,5,1,896.20001,4929128.5,0,0,4182.6421 -7550,9305,16994,16996,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,8.7453794,8.6046848,0,2,0,-9,19,0,6,-8.701252,0,0,0,40,1,4,1,3,2,2019,1,2,11,0,42,40,15,1,0,1,0,19.772816,19.772816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,27.809999,65.690002,6,1,1,0,0,13,5,1,896.20001,4929128.5,0,0,4182.6421 -7550,9305,16995,-9,16996,16994,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.8822,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,896.20001,4929128.5,0,0,4182.6421 -7550,9305,16996,16994,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,0,4,8.8107576,8.9493532,0,2,0,-9,17,0,-6,19.10157,0,0,1,46,1,4,1,1,1,2019,1,1,23,10,60,45,15,1,1,1,0,12.59158,12.59158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.809999,65.690002,55.790001,52.619999,5,1,1,0,0,13,5,1,896.20001,4929128.5,0,0,4182.6421 -7551,9306,16997,16998,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,1,0,7.3117137,7.3090944,1,0,-9,52,0,2,-46.443954,0,0,0,70,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,.65250987,7.2415547,20.167166,1,21.83,54.07,36.419998,33.799999,2,1,1,0,0,4,2,1,217,636355.13,0,0,2464.6406 -7551,9306,16998,16997,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,52,0,-2,34.663788,0,0,0,72,2,1,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,.34955946,0,0,0,0,0,1,1,0,0,0,0,0,36.419998,33.799999,21.83,54.07,4,1,1,0,0,4,2,1,217,636355.13,0,0,2464.6406 -7552,9307,16999,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,1,5,6.5393825,6.5248847,0,3,0,0,0,-9,0,-1053.2028,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,2,0,12,12,15,1,0,-9,0,6.1946726,6.1946726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,45.150002,-9,-9,7,1,1,0,0,7,2,0,720,-56297.871,0,0,1817.9917 -7553,9308,17000,17001,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,0,5,0,8.3440933,8.7106562,1,0,-9,49,0,16,-58.924126,0,0,0,69,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.2702608,2.8275464,3,55.830002,54.240002,58.32,50.220001,7,1,1,0,0,12,4,1,606,1000456.4,0,0,2889.4041 -7553,9308,17001,17000,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,5.6411057,5.7629032,1,0,-9,49,0,-16,41.022957,0,0,0,85,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6007223,5.6394105,0,3,58.32,50.220001,55.830002,54.240002,6,1,1,0,0,12,4,1,606,1000456.4,0,0,2889.4041 -7554,9309,17002,-9,17003,17004,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.604,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,11,2,0,1506.75,509326.63,0,0,1246.5896 -7554,9309,17003,17004,-9,-9,1,1,0,44,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,-11,17.634693,0,0,1,55,1,4,1,3,1,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.279999,58.049999,53,54,5,4,5,0,1,11,2,0,1506.75,509326.63,0,0,1246.5896 -7554,9309,17004,17003,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,0,4,8.2329397,8.1463795,0,2,0,-9,25,0,11,114.63084,0,0,0,44,1,3,3,-9,2,2019,2,1,9,1,37,24,15,1,0,3,0,8.9277391,8.9277391,0,0,0,0,0,0,0,0,1,1,0,3.1797788,0,0,0,53,54,32.279999,58.049999,6,4,5,0,0,11,2,0,1506.75,509326.63,0,0,1246.5896 -7554,9309,17005,-9,17003,17004,6,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.9538,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,11,2,0,1506.75,509326.63,0,0,1246.5896 -7554,9310,17006,-9,17003,17004,3,1,0,22,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-906.22058,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,4,5,0,0,11,1,0,1135,-89271.852,0,0,1580.7078 -7554,9311,17007,-9,17003,17004,4,1,0,20,2,0,2,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-932.29059,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,11,1,0,328,-50471.578,0,0,-1314.0197 -7555,9312,17008,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1012.596,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,27,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.33,21.59,-9,-9,1,1,1,0,0,11,1,0,422,80748.664,0,0,2147.7439 -7555,9313,17009,-9,17008,-9,3,1,1,18,2,0,1,0,2,-9,7,2,0,0,4,7.3779116,7.1671143,3.5644948,3,0,0,0,-9,0,-943.49078,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5215487,0,0,0,52.400002,55.580002,-9,-9,6,1,1,0,0,11,1,0,236,-123251.67,0,0,-916.53339 -7556,9314,17010,17011,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,0,2,8.0577374,7.9481878,3.6169231,1,0,-9,8,0,-3,47.007061,0,0,0,61,3,1,1,3,3,2019,1,1,9,0,44,42,15,1,0,1,0,8.9763489,8.9763489,0,0,0,0,0,0,0,0,0,0,0,0,4.0559163,0,0,57.57,49.689999,52.82,24.99,6,1,1,0,0,11,4,0,558.5,264896.72,0,0,2844.1787 -7556,9314,17011,17010,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,1,8.1765127,8.1117783,0,1,0,-9,8,0,3,-46.731209,0,0,0,58,3,2,1,3,3,2019,1,2,9,0,44,45,15,1,0,1,0,7.6173887,7.6173887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,24.99,57.57,49.689999,5,1,1,0,0,11,4,0,558.5,264896.72,0,0,2844.1787 -7557,9315,17012,-9,17015,17014,1,1,1,36,2,0,1,0,2,-9,2,1,0,0,3,8.0688343,8.3391008,0,3,0,0,0,-9,0,-963.00854,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,45,45,15,1,0,-9,1,9.0850697,9.0850697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.68,52.150002,-9,-9,2,1,1,0,1,11,4,1,853.5,30969.604,0,0,2537.8899 -7557,9315,17013,-9,-9,17012,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-972.70471,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,853.5,30969.604,0,0,2537.8899 -7557,9316,17014,17015,-9,-9,4,1,1,57,1,0,1,0,3,-9,2,1,0,0,5,8.3865128,8.173893,0,2,0,-9,4,0,0,60.376835,0,0,0,57,3,3,1,-9,-9,2019,1,3,8,0,45,0,15,1,0,1,0,12.913774,12.913774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,55.84,41.919998,7,1,1,0,0,11,5,1,295,435929.25,0,0,3464.2671 -7557,9316,17015,17014,-9,-9,3,1,0,57,1,0,1,0,3,-9,2,1,0,0,3,8.2998323,8.2753544,0,2,0,-9,4,0,0,42.312073,0,0,0,57,3,5,1,-9,-9,2019,1,4,7,0,40,39,15,1,0,1,0,11.437046,11.437046,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,41.919998,54.689999,57.470001,2,1,1,0,0,11,5,1,295,435929.25,0,0,3464.2671 -7558,9317,17016,17017,-9,-9,2,1,0,35,1,1,2,0,1,-9,1,1,0,0,4,7.9794722,7.9224434,0,2,0,-9,4,0,-4,86.062096,0,0,1,39,1,5,1,-9,-9,2019,1,1,7,0,8,0,15,1,0,1,0,42.152306,42.152306,0,0,0,0,0,0,0,0,1,1,0,7.047286,0,0,0,48.869999,58.549999,48.419998,60.529999,6,1,1,0,0,10,5,1,592,568778.94,0,0,5248.1855 -7558,9317,17017,17016,-9,-9,1,1,1,39,1,1,2,0,1,-9,1,1,0,0,5,8.6333389,8.7146215,0,2,0,-9,4,0,4,-102.31969,0,0,0,35,1,4,1,3,2,2019,1,2,6,0,55,50,15,1,0,1,0,13.676073,13.676073,0,0,0,0,0,0,0,0,1,1,0,6.8091688,0,0,0,48.419998,60.529999,48.869999,58.549999,6,1,1,0,0,10,5,1,592,568778.94,0,0,5248.1855 -7558,9317,17018,-9,17016,17017,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.2921,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,592,568778.94,0,0,5248.1855 -7558,9317,17019,-9,17016,17017,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.0876,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,592,568778.94,0,0,5248.1855 -7559,9318,17020,17021,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.5241814,7.3637924,0,1,0,-9,34,0,-8,42.217701,0,0,0,63,2,2,1,3,3,2019,1,1,7,0,24,24,15,1,0,1,0,6.4620929,6.4620929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,61.52,45.110001,5,1,1,0,0,12,5,1,3373,115609.07,0,0,10645.498 -7559,9318,17021,17020,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,8.7791777,9.9687986,9.7784643,1,0,-9,34,0,8,-.31763035,0,0,0,55,2,3,1,3,3,2019,1,2,6,0,32,32,15,1,0,1,0,23.527075,23.527075,0,0,0,0,0,0,0,0,0,0,0,9.702095,9.9253454,0,0,61.52,45.110001,57.330002,53.459999,6,1,1,0,0,12,5,1,3373,115609.07,0,0,10645.498 -7560,9319,17022,17023,-9,-9,3,1,0,27,1,0,0,0,1,-9,2,1,0,0,2,6.285965,6.1206331,0,1,0,-9,1,-9,-4,-156.11273,-9,1,1,31,1,5,1,-9,-9,2019,1,1,12,0,12,0,15,1,0,1,0,4.4833479,4.4833479,0,0,0,0,0,0,0,0,0,0,0,1.5358164,0,0,0,32.610001,51.57,54.099998,59.110001,3,1,1,0,0,12,4,1,1851,-13926.688,0,0,4675.4844 -7560,9319,17023,17022,-9,-9,1,1,1,31,1,0,0,0,1,1,2,1,0,0,5,8.4266338,8.9626818,0,1,0,1,1,-9,4,35.529896,-9,0,0,27,1,2,1,1,1,2019,1,3,5,0,48,0,15,1,0,1,0,16.79212,16.79212,0,0,0,0,0,0,0,0,0,0,0,8.0987453,0,0,0,54.099998,59.110001,32.610001,51.57,6,1,1,0,0,12,4,1,1851,-13926.688,0,0,4675.4844 -7560,9320,17024,-9,-9,-9,2,1,1,24,2,0,0,1,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-960.54193,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.870001,64.32,-9,-9,4,1,1,0,0,12,1,1,302,208947.59,0,0,0 -7561,9321,17025,17026,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,5,8.6672726,8.467104,0,2,0,-9,27,0,2,-73.745422,0,0,0,46,1,4,1,2,1,2019,1,1,0,0,35,35,15,1,0,1,0,18.154667,18.154667,0,0,0,0,0,0,0,0,0,0,0,7.9352899,0,0,0,62.389999,56.709999,57.16,56.150002,6,3,4,0,0,8,5,1,357,1142649.8,0,0,6565.1963 -7561,9321,17026,17025,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,9.3166275,9.2562408,0,2,0,-9,27,0,-2,106.1104,0,0,0,48,1,5,1,-9,-9,2019,1,2,6,1,45,40,15,1,0,1,0,25.727678,25.727678,0,0,0,0,0,0,0,0,0,0,0,8.2310839,0,0,0,57.16,56.150002,62.389999,56.709999,6,3,4,0,0,8,5,1,357,1142649.8,0,0,6565.1963 -7561,9322,17027,-9,17025,17026,3,1,0,20,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1071.5477,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,3,4,0,0,8,1,1,2903,41923.895,0,0,-1084.0569 -7561,9323,17028,-9,17025,17026,4,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1100.7681,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.32,58.470001,-9,-9,6,3,4,0,0,8,5,1,1045,-29392.27,0,0,0 -7562,9324,17029,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,5.7990832,5.6547189,3,0,0,0,-9,0,-1085.8954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4401922,0,0,67.099998,17.639999,-9,-9,7,4,2,0,0,2,2,0,430,158774.77,0,0,1923.7771 -7563,9325,17030,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,0,4,8.2972841,8.709815,0,3,0,0,0,-9,0,-952.2417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,37,37,15,1,1,-9,0,13.928095,13.928095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.549999,57.970001,-9,-9,4,1,1,0,0,4,4,1,1561,533950.31,0,0,1332.447 -7564,9326,17031,-9,17032,17033,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.40375,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,6,3,0,1126.25,211614.66,0,0,2467.1685 -7564,9326,17032,17033,-9,-9,2,1,0,41,1,0,2,0,3,-9,2,1,0,0,3,7.3049088,7.4863982,0,2,0,-9,10,0,-22,-85.555138,0,0,1,63,2,3,1,3,3,2019,1,1,13,2,37,40,15,1,0,1,0,5.1748157,5.1748157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.68,55.450001,48.139999,44.279999,3,3,4,0,1,6,3,0,1126.25,211614.66,0,0,2467.1685 -7564,9326,17033,17032,-9,-9,1,1,1,63,1,0,2,0,2,-9,2,1,0,0,3,8.2222576,8.0763874,0,2,0,-9,10,0,22,-12.7636,0,0,0,41,3,3,1,2,2,2019,1,2,7,0,38,37,15,1,0,1,0,7.3316264,7.3316264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.139999,44.279999,32.68,55.450001,5,3,4,0,0,6,3,0,1126.25,211614.66,0,0,2467.1685 -7564,9326,17034,-9,17032,17033,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.0042,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,6,3,0,1126.25,211614.66,0,0,2467.1685 -7565,9327,17035,-9,17036,17038,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.82068,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,916.25,3204.9014,0,0,3229.6968 -7565,9327,17036,17038,-9,-9,4,1,0,35,1,0,3,0,2,-9,2,1,0,0,4,7.0505986,7.1921148,0,2,0,-9,17,0,-1,95.240791,0,0,1,36,2,4,1,2,2,2019,1,1,7,0,21,20,15,1,0,1,0,5.7368121,5.7368121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.639999,55.400002,6,1,1,0,0,4,4,1,916.25,3204.9014,0,0,3229.6968 -7565,9327,17037,-9,17036,17038,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.9878,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,1,916.25,3204.9014,0,0,3229.6968 -7565,9327,17038,17036,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,0,4,8.7611408,9.0825167,0,2,0,-9,17,0,1,-143.88788,0,0,0,35,2,4,1,2,2,2019,1,4,6,0,38,35,15,1,0,1,0,17.746382,17.746382,0,0,0,0,0,0,0,0,1,1,0,2.7280631,0,0,0,51.639999,55.400002,57.16,56.150002,6,1,1,0,0,4,4,1,916.25,3204.9014,0,0,3229.6968 -7566,9328,17039,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,0,4,0,7.7409964,7.6501136,3,0,0,0,-9,0,-1022.4949,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.6102366,0,0,52.610001,44.490002,-9,-9,6,1,1,0,0,13,3,1,546,302382.88,0,0,2544.4331 -7567,9329,17040,-9,17041,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,4,0,0,0,-9,0,-944.08484,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,3,4,0,0,8,5,1,765.5,333637.16,0,0,3689.0144 -7567,9329,17041,-9,-9,-9,1,1,0,54,2,0,1,0,1,-9,2,1,0,0,3,9.3525066,9.1964493,0,4,0,0,0,-9,0,-1059.9836,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,40,43,15,1,0,-9,0,28.755095,28.755095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,6,3,4,0,0,8,5,1,765.5,333637.16,0,0,3689.0144 -7568,9330,17042,17043,-9,-9,2,1,0,56,1,0,0,0,2,-9,1,1,0,0,4,7.5500145,7.5532517,0,1,0,-9,36,0,0,-72.466965,0,0,0,56,2,5,1,2,2,2019,1,1,11,0,24,15,15,1,0,1,0,10.481364,10.481364,0,0,0,0,0,0,0,0,0,0,0,7.6011705,0,0,0,46.5,58.259998,57.060001,57.759998,4,1,1,0,0,5,3,1,660,20907.828,0,0,2345.5952 -7568,9330,17043,17042,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,5,7.9029112,7.6581688,0,1,0,-9,36,0,0,-77.723534,0,0,0,56,2,4,1,2,1,2019,1,2,7,0,60,60,15,1,0,1,0,4.3130889,4.3130889,0,0,0,0,0,0,0,0,0,0,0,.30646703,0,0,0,57.060001,57.759998,46.5,58.259998,5,1,1,0,0,5,3,1,660,20907.828,0,0,2345.5952 -7568,9331,17044,-9,17042,17043,3,1,1,26,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-995.97058,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,45,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.119999,60.580002,-9,-9,5,1,1,1,0,5,1,1,383,-138253.38,0,0,0 -7569,9332,17045,17046,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,0,5,7.8275948,7.6817098,0,1,0,-9,8,0,-13,112.60138,0,0,0,76,2,2,3,3,3,2019,2,2,6,0,39,39,15,1,0,4,0,7.7862129,7.7862129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,44.84,49.009998,5,1,1,0,0,12,3,1,567,577093.38,0,0,2025.2495 -7569,9332,17046,17045,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,13,28.186028,0,0,0,63,3,5,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.84,49.009998,51.139999,60.450001,5,1,1,0,0,12,3,1,567,577093.38,0,0,2025.2495 -7570,9333,17047,17048,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,3.967489,8.6059818,8.55616,1,0,-9,44,0,0,-36.113087,0,0,0,65,1,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4596596,7.6038389,0,0,61.259998,51.57,55.360001,51.57,6,1,1,0,0,2,5,1,1164.5,2478527.3,0,0,4825.1113 -7570,9333,17048,17047,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,7.8988132,7.7372489,1,0,-9,44,0,0,83.713593,0,0,0,65,1,4,3,2,1,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0662732,7.9604659,0,0,55.360001,51.57,61.259998,51.57,6,1,1,0,0,2,5,1,1164.5,2478527.3,0,0,4825.1113 -7571,9334,17049,17051,-9,-9,1,1,1,34,1,1,3,0,2,-9,2,1,0,0,5,8.0160446,7.8684616,0,2,0,-9,12,0,-1,-135.62402,0,0,0,35,3,5,3,2,2,2019,2,2,6,0,35,0,15,1,0,3,0,11.209457,11.209457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,56.919998,47.029999,6,2,3,0,0,4,2,0,640.75,25317.656,0,0,3122.1594 -7571,9334,17050,-9,17051,17049,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.243,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,640.75,25317.656,0,0,3122.1594 -7571,9334,17051,17049,-9,-9,2,1,0,35,1,1,3,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,12,0,1,-19.349426,0,0,1,34,2,5,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.919998,47.029999,57.060001,57.759998,7,2,3,0,0,4,2,0,640.75,25317.656,0,0,3122.1594 -7571,9334,17052,-9,17051,17049,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.98877,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,2,0,640.75,25317.656,0,0,3122.1594 -7572,9335,17053,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1067.8065,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,13,1,1,1501,91153.023,0,0,630.9184 -7572,9336,17054,-9,-9,-9,2,1,0,68,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-901.45544,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,13,1,1,2751,-36553.797,0,0,235.23904 -7573,9337,17055,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,4,0,7.4585953,7.2454472,3,0,0,0,-9,0,-893.2674,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,43,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7623665,7.0547595,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,9,3,1,563,376086.75,0,0,784.96332 -7574,9338,17056,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1190.0637,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,5,1,0,994,-135032.84,0,0,1328.9771 -7575,9339,17057,17058,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,7.5898509,7.9401069,0,1,0,-9,6,0,-1,35.545593,0,0,1,32,2,2,3,3,2,2019,2,2,10,0,39,38,15,1,0,3,0,8.1137276,8.1137276,0,0,0,0,0,0,0,0,1,1,0,4.2152371,0,0,0,44.810001,57.830002,39.220001,26.940001,5,1,1,0,0,13,3,1,992.5,200463.55,0,0,2493.3979 -7575,9339,17058,17057,-9,-9,2,1,1,32,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,6,0,1,22.913624,0,0,0,31,1,4,1,-9,-9,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.220001,26.940001,44.810001,57.830002,4,1,1,0,0,13,3,1,992.5,200463.55,0,0,2493.3979 -7576,9340,17059,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-963.5943,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,5.4453878,0,0,0,0,0,0,1,1,0,0,0,0,0,41.880001,50.349998,-9,-9,5,1,1,0,0,1,1,0,717,-87274.719,0,0,345.48669 -7577,9341,17060,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,0,3,8.6471291,8.3781376,0,3,0,0,0,-9,0,-1049.537,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,37,37,15,1,1,-9,0,13.054393,13.054393,0,0,0,0,0,0,0,0,1,1,0,3.4448786,0,0,0,40.310001,47.66,-9,-9,4,1,1,0,0,5,4,1,1199,97156.938,0,0,1519.4053 -7578,9342,17061,17062,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,0,39.030937,0,0,0,74,3,2,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,44.330002,46.299999,31.73,5,1,1,0,0,12,3,1,631,917815.88,0,0,2014.0845 -7578,9342,17062,17061,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,7.9155064,7.985465,1,0,-9,51,0,0,-85.57637,0,0,0,74,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9875214,7.7043109,0,0,46.299999,31.73,47.549999,44.330002,5,1,1,0,0,12,3,1,631,917815.88,0,0,2014.0845 -7579,9343,17063,17064,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,5.1246696,5.5415115,1,0,-9,52,0,-3,2.8095932,0,0,0,73,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9319963,5.542871,0,0,59.529999,56.439999,59.700001,32.490002,7,1,1,0,0,10,2,0,1226,783982.5,0,0,1429.0669 -7579,9343,17064,17063,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,7.189734,7.4645152,1,0,-9,52,0,3,60.858097,0,0,0,70,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.550097,6.7995534,0,0,59.700001,32.490002,59.529999,56.439999,6,1,1,0,0,10,2,0,1226,783982.5,0,0,1429.0669 -7580,9344,17065,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,7.8151827,7.9160204,3,0,0,0,-9,0,-942.26105,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.7769933,0,0,33.139999,41.470001,-9,-9,6,1,1,0,0,11,3,1,343,454100.28,0,0,2032.9391 -7581,9345,17066,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,3,8.4384556,8.4351063,0,3,0,0,0,-9,0,-944.13318,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,45,24,15,1,1,-9,0,10.309949,10.309949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.619999,49.450001,-9,-9,5,3,4,0,0,8,4,1,1124,548322.69,0,0,1096.72 -7582,9346,17067,17068,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,7.1354895,8.3210526,7.9703565,1,0,-9,7,0,1,67.236511,0,0,0,57,2,4,1,-9,-9,2019,1,1,8,0,40,37,15,1,0,1,0,2.5047274,2.5047274,0,0,0,0,0,0,0,0,1,0,1,0,8.0279074,0,0,54,54,45.16,51.93,6,1,1,0,0,9,4,1,534.5,276338.56,0,0,3415.5811 -7582,9346,17068,17067,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.4964342,7.6861315,0,1,0,-9,42,0,-1,-148.72881,0,0,0,58,2,4,1,2,3,2019,1,2,21,9,29,28,15,1,1,1,0,7.1098828,7.1098828,0,0,0,0,0,0,0,0,1,0,1,2.3344364,0,0,0,45.16,51.93,54,54,3,1,1,0,0,9,4,1,534.5,276338.56,0,0,3415.5811 -7582,9347,17069,-9,17068,17067,3,1,1,25,2,0,0,0,1,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-984.41583,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,38,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.299999,59.439999,-9,-9,3,1,1,1,0,9,1,1,495,-68750.148,0,0,-694.64648 -7583,9348,17070,17071,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.639658,8.3589802,0,2,0,-9,24,0,0,46.628044,0,0,0,47,2,5,1,2,-9,2019,1,2,12,1,48,44,15,1,0,1,0,18.300306,18.300306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.779999,49.099998,60.02,56.419998,5,1,1,0,0,8,5,1,1138,898817.88,0,0,3350.9019 -7583,9348,17071,17070,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,5,8.0059662,8.0129566,0,2,0,-9,24,0,0,87.595078,0,0,0,47,2,3,1,3,2,2019,1,1,6,0,38,38,15,1,0,1,0,9.9279413,9.9279413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,45.779999,49.099998,6,1,1,0,0,8,5,1,1138,898817.88,0,0,3350.9019 -7583,9348,17072,-9,17070,17071,4,1,1,17,2,0,1,0,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-970.3606,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,8,5,1,1138,898817.88,0,0,3350.9019 -7583,9349,17073,-9,17070,17071,3,1,0,20,2,0,1,0,2,-9,1,1,0,0,3,5.2125187,5.1261535,0,3,0,0,0,-9,0,-1035.3114,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,7,40,45,15,1,1,-9,1,.57560372,.57560372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.02,64.339996,-9,-9,5,1,1,0,1,8,2,1,261,-193512.08,0,0,1191.5173 -7584,9350,17074,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,1,2,0,5.3380179,5.3154144,3,0,0,0,-9,0,-929.53455,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0820279,5.5498271,0,0,63.25,37.540001,-9,-9,6,1,1,0,0,7,2,0,504,365887.03,0,0,618.65118 -7585,9351,17075,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,1,1,0,0,3,9.005002,8.9609356,0,3,0,0,0,-9,0,-1093.4994,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,37,37,15,1,1,-9,0,25.324249,25.324249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.93,44.380001,-9,-9,4,1,1,0,0,1,5,1,557,333551.81,0,0,3332.6277 -7586,9352,17076,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,0,4,0,7.5119729,7.4141083,3,0,0,0,-9,0,-943.06042,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,2.4228404,0,0,8.0721302,0,28.265808,0,1,1,0,5.7406783,7.0237675,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,9,3,0,171,601879.31,0,0,1962.5563 -7587,9353,17077,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1174.7228,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,1,5.2562551,0,0,0,4.0076718,119.97476,0,1,1,0,0,0,0,0,40.549999,21.33,-9,-9,2,1,1,0,0,13,1,0,472,98961.484,0,0,843.2193 -7588,9354,17078,17079,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.6245499,8.2571211,0,1,0,-9,13,0,12,-66.337532,0,0,0,33,1,4,1,2,2,2019,1,1,12,1,44,44,15,1,0,1,0,10.050083,10.050083,0,0,0,0,0,0,0,0,0,0,0,2.9790881,0,0,0,57.73,54.529999,46.900002,56.66,2,1,1,0,0,10,5,1,507.5,328735.75,0,0,2965.6216 -7588,9354,17079,17078,-9,-9,1,1,0,33,1,0,0,0,1,-9,1,1,0,0,4,8.1468239,7.9193683,0,1,0,-9,13,0,-12,103.95835,0,0,1,45,2,4,1,3,2,2019,1,2,17,4,10,5,15,1,1,1,0,40.048603,40.048603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.900002,56.66,57.73,54.529999,6,1,1,0,0,10,5,1,507.5,328735.75,0,0,2965.6216 -7589,9355,17080,-9,17082,17081,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.31055,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,1,1429.6666,386102.16,0,0,4593.085 -7589,9355,17081,17082,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,3,8.283309,8.5307074,0,2,0,-9,5,0,1,-8.7005186,0,0,0,32,1,5,1,-9,-9,2019,1,1,12,2,35,42,15,1,0,1,0,14.999143,14.999143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,52.619999,54.099998,59.110001,5,1,1,0,0,8,5,1,1429.6666,386102.16,0,0,4593.085 -7589,9355,17082,17081,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,0,5,8.9605436,8.9815645,0,2,0,-9,5,0,-1,-57.514793,0,0,1,33,1,3,1,2,1,2019,1,2,5,0,30,45,15,1,0,1,0,30.259445,30.259445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,50.029999,52.619999,6,1,1,0,0,8,5,1,1429.6666,386102.16,0,0,4593.085 -7590,9356,17083,-9,-9,-9,1,1,1,40,2,0,0,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1022.8463,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.55090994,0,0,0,51,56,-9,-9,5,4,5,1,0,8,1,0,1105,0,0,0,1130.6183 -7591,9357,17084,17085,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,3,0,6.7902622,6.364974,1,0,-9,52,0,2,179.24281,0,0,0,80,2,3,3,3,1,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6941299,0,0,53,46,48.139999,42.689999,6,2,3,0,0,4,2,1,194,255572.41,0,0,2141.0764 -7591,9357,17085,17084,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,3,0,6.4894667,6.581811,1,0,-9,52,0,-2,86.569298,0,0,0,82,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,6.9407053,120.90191,1,48.139999,42.689999,53,46,6,1,1,0,0,4,2,1,194,255572.41,0,0,2141.0764 -7592,9358,17086,17088,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,5,9.2613287,9.3812599,0,2,0,-9,21,0,1,-37.684895,0,0,0,44,2,1,1,-9,-9,2019,1,2,6,0,37,43,15,1,0,1,0,29.775072,29.775072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,41.080002,45.150002,5,1,1,0,0,2,5,1,509.25,481678.16,0,0,4822.0005 -7592,9358,17087,-9,17088,17086,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.5291,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,509.25,481678.16,0,0,4822.0005 -7592,9358,17088,17086,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,1,7.8463635,8.1590042,0,2,0,-9,21,0,-1,-45.482082,0,0,1,45,1,5,1,3,3,2019,1,1,27,9,32,30,15,1,1,1,0,10.6831,10.6831,0,0,0,0,0,0,0,0,1,1,0,.73069638,0,0,0,41.080002,45.150002,62.389999,56.709999,2,1,1,0,0,2,5,1,509.25,481678.16,0,0,4822.0005 -7592,9358,17089,-9,17088,17086,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.73981,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,509.25,481678.16,0,0,4822.0005 -7593,9359,17090,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,3,8.3809757,8.4991341,0,3,0,-9,0,-9,0,-955.19165,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,70,0,15,1,0,-9,0,7.2785926,7.2785926,0,0,0,0,0,0,0,7,0,0,0,3.3408144,0,2.8779614,3,52.290001,42.41,-9,-9,5,1,1,0,0,2,4,1,195,151929.84,0,0,1971.5953 -7593,9360,17091,-9,17090,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.0692663,7.6039467,0,3,0,-9,0,-9,0,-960.9826,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.0023122,6.0023122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,2,3,1,273,-97337.555,0,0,1249.7148 -7594,9361,17092,17093,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,1,3,0,5.1915479,5.2320809,1,0,-9,4,0,-4,-24.105467,0,0,0,67,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5121202,5.2125497,0,0,58.32,50.220001,52,47,7,1,1,0,0,5,2,0,471.5,236345.72,0,0,1700.8037 -7594,9361,17093,17092,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,6.912148,7.0703735,1,0,-9,4,0,4,-53.914028,-9,0,0,63,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0497923,0,0,52,47,58.32,50.220001,5,1,1,0,0,5,2,0,471.5,236345.72,0,0,1700.8037 -7595,9362,17094,17095,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,19,0,-1,37.661007,0,0,0,70,3,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4576082,0,0,0,38.279999,57.07,49.349998,59.639999,6,1,1,0,0,12,2,1,475.5,412709,0,0,2094.3115 -7595,9362,17095,17094,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.5322976,6.4684057,1,0,-9,9,0,1,27.803558,0,0,0,69,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6953564,6.24932,0,0,49.349998,59.639999,38.279999,57.07,6,1,1,0,0,12,2,1,475.5,412709,0,0,2094.3115 -7596,9363,17096,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,4,0,7.4887519,7.5499678,3,0,0,0,-9,0,-1078.5471,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.1561978,7.3425016,0,0,45.669998,50.43,-9,-9,6,1,1,0,0,9,3,1,1141,1032352.6,0,0,1883.4578 -7597,9364,17097,-9,17099,17098,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.332,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,662.33331,104192.35,0,0,3897.1653 -7597,9364,17098,17099,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,3,8.4307365,8.5801964,0,2,0,-9,20,0,-2,33.784214,0,0,0,45,2,4,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,16.743176,16.743176,0,0,0,0,0,0,0,0,1,1,0,3.261287,0,0,0,54.939999,53.18,42.029999,54.740002,5,1,1,0,0,10,5,1,662.33331,104192.35,0,0,3897.1653 -7597,9364,17099,17098,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.1905708,7.8613071,0,2,0,-9,7,0,2,-96.607613,0,0,0,43,1,3,1,2,3,2019,1,1,12,0,24,24,15,1,0,1,0,17.543062,17.543062,0,0,0,0,0,0,0,0,1,1,0,1.6288255,0,0,0,42.029999,54.740002,54.939999,53.18,5,1,1,0,0,10,5,1,662.33331,104192.35,0,0,3897.1653 -7598,9365,17100,-9,-9,-9,1,1,0,29,3,0,0,0,1,-9,5,1,0,0,5,8.6677656,8.6442823,0,3,0,0,0,-9,0,-929.18298,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,36,36,15,1,0,-9,0,15.175279,15.175279,0,0,0,0,0,0,0,0,0,0,0,3.5897462,0,0,0,54.099998,59.110001,-9,-9,6,4,2,0,0,10,5,1,1004,-129119.54,0,0,2284.5061 -7599,9366,17101,17102,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,-1,0,0,0,0,67,3,2,3,-9,-9,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.919998,37.380001,59.939999,41.950001,2,1,1,0,0,9,1,0,604.5,-45348.223,0,0,1216.3394 -7599,9366,17102,17101,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,1,0,0,0,0,66,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.939999,41.950001,33.919998,37.380001,7,1,1,0,0,9,1,0,604.5,-45348.223,0,0,1216.3394 -7600,9367,17103,-9,17106,17104,4,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1020.7071,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,10,5,1,886.5,482482.41,0,0,4881.1821 -7600,9367,17104,17106,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,8.929184,8.6733265,0,2,0,-9,23,0,-1,.33175516,0,0,0,48,1,5,1,1,1,2019,1,2,8,0,35,40,15,1,0,1,0,21.358658,21.358658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.380001,59.139999,57.060001,57.759998,6,1,1,0,0,10,5,1,886.5,482482.41,0,0,4881.1821 -7600,9367,17105,-9,17106,17104,3,1,0,17,2,0,1,0,2,1,2,3,0,0,3,6.626318,6.6318598,0,2,0,0,0,-9,0,-934.70679,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,2,11,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48649526,0,0,0,50.599998,51,-9,-9,6,1,1,0,0,10,5,1,886.5,482482.41,0,0,4881.1821 -7600,9367,17106,17104,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,5,8.4566507,8.7940702,0,2,0,-9,11,0,1,-87.641205,0,0,0,47,1,4,1,-9,-9,2019,1,1,5,0,52,50,15,1,0,1,0,8.1945896,8.1945896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,40.380001,59.139999,7,1,1,0,0,10,5,1,886.5,482482.41,0,0,4881.1821 -7601,9368,17107,-9,-9,-9,2,1,0,68,3,0,1,0,3,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1020.2306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,1,0,0,41.673042,37.908333,0,0,0,1,1,0,0,0,0,0,39.66,42.029999,-9,-9,3,1,1,0,0,1,1,1,272,170292.2,0,0,-440.75241 -7601,9369,17108,-9,17109,17110,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1161.1205,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,1,790,1043499.8,0,0,1082.1234 -7601,9369,17109,17110,17107,-9,1,1,0,44,1,0,1,0,1,-9,6,3,0,1,4,0,0,0,2,0,-9,2,0,-13,0,0,0,1,57,2,4,3,2,3,2019,4,4,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.949516,2,36.759998,58.959999,35.619999,47.060001,6,1,1,0,0,1,1,1,790,1043499.8,0,0,1082.1234 -7601,9369,17110,17109,-9,-9,4,1,1,57,1,0,1,0,2,-9,4,3,0,1,4,0,0,0,2,0,-9,2,0,13,0,-9,0,0,44,1,4,3,-9,-9,2019,4,1,17,5,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.4916925,3,35.619999,47.060001,36.759998,58.959999,5,1,1,0,0,1,1,1,790,1043499.8,0,0,1082.1234 -7602,9370,17111,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,2,0,5.1296306,5.2036281,3,0,0,0,-9,0,-905.41718,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,4.9782448,0,6.7047882,0,0,0,0,1,1,0,5.3410964,5.3458409,0,0,55.759998,18.299999,-9,-9,5,2,3,0,0,7,2,1,397,-1850.3074,0,0,1577.7781 -7603,9371,17112,-9,-9,-9,2,1,1,44,2,0,0,0,3,-9,1,1,0,0,5,7.2293801,7.1221061,0,3,0,0,0,-9,0,-999.64301,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,17,5,40,40,15,1,1,-9,1,3.4667518,3.4667518,0,0,0,0,0,0,0,86,1,1,0,0,0,117.53088,3,44.580002,50.950001,-9,-9,2,1,1,0,0,11,2,1,1366,-74838.992,0,0,360.48358 -7604,9372,17113,-9,17114,-9,2,1,1,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1097.7108,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,1,262.5,-4514.1621,0,0,1113.9701 -7604,9372,17114,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,4,7.8379335,7.5765791,0,3,0,0,0,-9,0,-1034.6493,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,40,15,1,0,-9,0,5.8537364,5.8537364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.869999,58.610001,-9,-9,6,1,1,0,0,4,3,1,262.5,-4514.1621,0,0,1113.9701 -7605,9373,17115,-9,17116,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1115.4111,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,4,1,1194.3334,274447.56,0,0,2150.2886 -7605,9373,17116,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,0,4,8.8546267,8.5314064,0,4,0,0,0,-9,0,-982.13544,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,37,30,15,1,0,-9,0,23.089359,23.089359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,5,1,1,0,1,9,4,1,1194.3334,274447.56,0,0,2150.2886 -7605,9373,17117,-9,17116,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1074.5713,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,1194.3334,274447.56,0,0,2150.2886 -7606,9374,17118,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,3,8.2583199,8.2961349,7.6033316,3,0,-9,0,1,0,-911.53839,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,23,23,15,1,0,-9,0,17.936106,17.936106,0,0,0,0,0,0,0,0,1,1,0,6.1012344,7.848155,0,0,44.5,54.040001,-9,-9,5,1,1,0,0,4,5,1,434,819131,0,0,1156.913 -7606,9375,17119,-9,17118,-9,2,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,5.0529337,4.9643097,3,0,0,0,-9,0,-1046.4298,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7316475,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,4,2,1,1080,11662.914,0,0,-320.55591 -7606,9376,17120,-9,17118,-9,3,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1034.4113,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4359087,0,0,0,33.41,62.84,-9,-9,4,1,1,0,0,4,1,1,290,-39089.297,0,0,889.96454 -7607,9377,17121,17122,-9,-9,1,1,0,24,1,0,0,0,1,1,2,1,0,0,4,9.1286268,9.0921774,0,1,0,-9,4,0,-1,-50.460091,-9,1,1,25,1,2,1,2,2,2019,1,2,15,3,53,0,15,1,0,1,0,21.100321,21.100321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.400002,60.75,52.490002,49.48,6,1,1,0,0,2,5,1,252.5,-2678.2415,0,0,4827.5674 -7607,9377,17122,17121,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,2,8.7231007,8.6540766,0,1,0,-9,4,0,1,-44.035904,0,1,0,24,1,4,1,-9,-9,2019,1,1,11,1,45,45,15,1,0,1,0,17.891411,17.891411,0,0,0,0,0,0,0,0,0,0,0,1.7024451,0,0,0,52.490002,49.48,38.400002,60.75,4,4,2,0,0,2,5,1,252.5,-2678.2415,0,0,4827.5674 -7608,9378,17123,17124,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,2,8.1784678,8.5254498,0,1,0,-9,2,0,-4,66.001801,0,0,1,47,2,4,1,2,2,2019,1,1,10,0,40,35,15,1,0,1,0,13.094015,13.094015,0,0,0,0,0,0,0,0,0,0,0,2.4104578,0,0,0,49.279999,46.560001,45.91,59.889999,6,1,1,0,0,2,5,0,321,346797.13,0,0,3485.5027 -7608,9378,17124,17123,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.2193842,8.2466021,0,1,0,-9,2,0,4,-64.605087,0,0,0,43,2,2,1,2,2,2019,1,2,9,0,39,38,15,1,0,1,0,11.516046,11.516046,0,0,0,0,0,0,0,0,0,0,0,4.1896048,0,0,0,45.91,59.889999,49.279999,46.560001,5,1,1,0,0,2,5,0,321,346797.13,0,0,3485.5027 -7609,9379,17125,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,3,7.7136831,8.0915146,5.0621557,3,0,0,0,-9,0,-821.55109,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,42,45,15,1,0,-9,0,9.5748014,9.5748014,0,0,0,0,0,0,0,0,0,0,0,6.006588,5.372611,0,0,61.610001,37.790001,-9,-9,6,1,1,0,0,6,4,1,319,327626.59,0,0,2560.8406 -7610,9380,17126,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,6.9548731,7.1488919,0,3,0,-9,0,-9,0,-960.53101,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,42,0,15,1,1,-9,0,3.0088778,3.0088778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.349998,56.52,-9,-9,4,1,1,0,1,6,2,0,568,33208.563,0,0,-1140.12 -7611,9381,17127,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-969.87067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,14.07018,0,0,0,33.049919,106.6405,0,1,1,0,0,0,0,0,63.720001,16.75,-9,-9,6,1,1,0,0,11,1,1,237,-5612.7349,0,0,811.08221 -7612,9382,17128,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,1,1,0,0,4,6.5660043,6.6478553,0,3,0,0,0,-9,0,-1035.3009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,35,40,15,1,0,-9,0,2.3820143,2.3820143,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.049999,54.23,-9,-9,3,1,1,0,1,11,2,1,137,-45078.289,0,0,-173.98923 -7612,9383,17129,-9,17128,-9,3,1,0,22,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1050.0464,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,27,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.280001,37.810001,-9,-9,2,1,1,0,1,11,1,1,1079,41750.891,0,0,1190.9271 -7613,9384,17130,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,4,0,6.5947733,6.5813971,3,0,0,0,-9,0,-981.19824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.9084775,0,0,0,0,0,0,1,1,0,0,6.3574395,0,0,40.470001,46.240002,-9,-9,7,1,1,0,0,6,2,1,265,104796.77,0,0,-195.36403 -7614,9385,17131,17132,-9,-9,1,1,1,40,1,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,10,0,2,-7.7237616,0,0,0,38,1,3,1,2,2,2019,1,2,12,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4391642,0,0,0,54.099998,59.110001,41.610001,32.560001,6,1,1,0,0,8,5,1,394,819263.06,0,0,5564.5117 -7614,9385,17132,17131,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,0,3,9.427824,9.2827387,0,1,0,-9,10,0,-2,61.640621,0,0,1,40,1,5,1,2,2,2019,1,1,15,4,50,58,15,1,1,1,0,25.481136,25.481136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.610001,32.560001,54.099998,59.110001,6,1,1,0,0,8,5,1,394,819263.06,0,0,5564.5117 -7615,9386,17133,-9,17135,17134,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.9703,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,262,1145003.4,0,0,6402.9678 -7615,9386,17134,17135,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.923727,9.353756,0,2,0,-9,10,0,-3,2.8484302,0,0,0,46,1,3,1,2,3,2019,1,1,7,0,86,46,15,1,0,1,0,19.264009,19.264009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.939999,58.009998,33.529999,60.119999,6,1,1,0,0,9,5,1,262,1145003.4,0,0,6402.9678 -7615,9386,17135,17134,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,3,8.1549492,7.9209123,0,2,0,-9,10,0,3,-111.44779,0,0,0,43,1,4,1,1,2,2019,1,2,15,4,23,22,15,1,1,1,0,18.704348,18.704348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.529999,60.119999,49.939999,58.009998,4,1,1,0,0,9,5,1,262,1145003.4,0,0,6402.9678 -7615,9386,17136,-9,17135,17134,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.5219,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,9,5,1,262,1145003.4,0,0,6402.9678 -7616,9387,17137,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1028.7334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,58.500263,3,20.379999,26.17,-9,-9,2,1,1,0,0,2,1,0,485,-119918.81,0,0,1660.5216 -7616,9388,17138,-9,17137,-9,2,1,0,27,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1019.9793,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,28.860001,41.23,-9,-9,5,1,1,1,1,2,1,0,1009,-79429.359,0,0,1417.1309 -7617,9389,17139,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-955.12482,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,1,0,0,8.3657007,0,0,0,0,1,1,0,0,0,0,0,41.790001,32.400002,-9,-9,6,1,1,0,0,4,1,0,487,54517.586,0,0,1654.1238 -7617,9389,17140,-9,-9,17139,2,1,0,15,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1236.7939,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,4,1,0,487,54517.586,0,0,1654.1238 -7618,9390,17141,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,5.6018653,5.5374928,3,0,0,0,-9,0,-1022.4931,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6675706,0,3,43.490002,50.259998,-9,-9,5,1,1,0,0,2,2,1,554,55071.168,0,0,176.66881 -7619,9391,17142,17143,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.5312634,6.2783418,1,0,-9,47,0,-2,-46.150826,0,0,0,69,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1358688,6.1785159,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,6,2,1,295,627210.63,0,0,3293.9985 -7619,9391,17143,17142,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.1726627,7.1785259,1,0,-9,47,0,2,46.091557,0,0,0,67,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.247175,7.2718124,0,0,57.330002,53.459999,57.16,56.150002,2,1,1,0,0,6,2,1,295,627210.63,0,0,3293.9985 -7620,9392,17144,-9,17145,17146,5,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-840.01105,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,1,0,370.66666,-99748.563,0,0,3172.9556 -7620,9392,17145,17146,-9,-9,2,1,0,54,1,0,1,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,0,0,0,0,0,54,2,2,3,3,3,2019,4,1,15,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.720001,42.310001,31.790001,20.690001,7,1,1,0,1,5,1,0,370.66666,-99748.563,0,0,3172.9556 -7620,9392,17146,17145,-9,-9,1,1,1,54,1,0,1,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,8,0,0,0,0,0,0,54,3,2,3,3,3,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.0720644,1,31.790001,20.690001,32.720001,42.310001,4,1,1,0,0,5,1,0,370.66666,-99748.563,0,0,3172.9556 -7620,9393,17147,-9,17145,17146,3,1,1,29,2,0,1,0,2,-9,3,3,0,0,3,6.8366709,6.6402888,0,3,0,0,0,-9,0,-911.77246,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.620001,45.540001,-9,-9,4,1,1,1,0,5,2,0,94,0,0,0,704.24481 -7621,9394,17148,-9,17150,17151,4,1,0,9,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1019.9762,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,4,0,498.25,969255.19,0,0,3932.0603 -7621,9394,17149,-9,17150,17151,3,1,1,10,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1150.3767,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,6,0,0,5,4,0,498.25,969255.19,0,0,3932.0603 -7621,9394,17150,17151,-9,-9,2,1,0,44,1,0,0,0,2,-9,1,1,0,1,1,6.999145,7.2408929,0,1,0,-9,7,0,-12,-29.101082,0,0,1,56,2,3,1,2,2,2019,1,1,20,8,20,60,15,1,1,1,0,6.7048225,6.7048225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.610001,20.620001,54.959999,53.169998,1,1,1,0,0,5,4,0,498.25,969255.19,0,0,3932.0603 -7621,9394,17151,17150,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.0971222,8.4885559,0,1,0,-9,7,0,12,-27.941412,0,0,0,44,2,1,1,2,2,2019,1,2,6,0,46,38,15,1,0,1,0,12.011747,12.011747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,34.610001,20.620001,5,1,1,0,0,5,4,0,498.25,969255.19,0,0,3932.0603 -7622,9395,17152,17154,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,8.7296257,8.7841187,0,2,0,-9,13,0,1,51.809231,0,0,0,38,1,4,3,2,2,2019,2,2,7,1,47,40,15,1,0,3,0,15.472127,15.472127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,47.900002,43.93,6,2,3,0,0,4,4,0,618.75,158044.63,0,0,2399.4888 -7622,9395,17153,-9,17154,17152,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.7552,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,4,0,618.75,158044.63,0,0,2399.4888 -7622,9395,17154,17152,-9,-9,2,1,0,38,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,13,0,-1,-49.879204,0,0,1,39,1,4,1,1,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.900002,43.93,59.529999,56.439999,5,2,3,0,0,4,4,0,618.75,158044.63,0,0,2399.4888 -7622,9395,17155,-9,17154,17152,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.4011,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,4,0,618.75,158044.63,0,0,2399.4888 -7623,9396,17156,17158,-9,-9,2,1,1,33,1,1,3,0,2,-9,2,1,0,0,3,8.3640976,8.3585587,0,2,0,-9,3,0,0,25.228804,0,0,0,33,2,3,1,-9,-9,2019,1,1,11,0,36,0,15,1,0,1,0,12.252698,12.252698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,47.630001,64.639999,48.759998,7,2,3,0,0,8,3,0,593.79999,193277.05,0,0,2728.156 -7623,9396,17157,-9,17158,17156,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.32581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,3,0,593.79999,193277.05,0,0,2728.156 -7623,9396,17158,17156,-9,-9,1,1,0,33,1,1,3,0,2,-9,2,1,0,0,3,7.2888894,6.7163014,0,2,0,-9,3,0,0,-170.44597,0,0,1,33,2,3,1,-9,-9,2019,1,2,6,0,12,12,15,1,0,1,0,8.3181009,8.3181009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.639999,48.759998,54.970001,47.630001,6,3,4,0,0,8,3,0,593.79999,193277.05,0,0,2728.156 -7623,9396,17159,-9,17158,17156,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,3,0,593.79999,193277.05,0,0,2728.156 -7623,9396,17160,-9,17158,17156,4,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.692,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,3,0,593.79999,193277.05,0,0,2728.156 -7624,9397,17161,-9,17162,17163,2,1,0,18,2,0,0,0,2,1,2,1,0,0,3,6.887557,6.7926412,0,3,0,0,0,-9,0,-939.10754,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,25,0,15,1,0,-9,1,4.8697791,4.8697791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.580002,53.68,-9,-9,4,1,1,0,0,10,2,1,2344,68690.219,0,0,640.96289 -7624,9398,17162,17163,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,7.594152,7.6630526,0,1,0,-9,5,0,-2,161.34401,0,0,0,58,2,4,1,2,2,2019,1,3,11,0,24,32,15,1,0,1,0,9.6413221,9.6413221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,57.16,56.150002,6,1,1,0,0,10,5,1,1773,411298.19,0,0,3312.8281 -7624,9398,17163,17162,-9,-9,3,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.9281702,7.9489956,0,1,0,-9,5,0,2,91.703705,0,0,0,56,2,5,1,-9,-9,2019,1,1,6,0,60,55,15,1,0,1,0,9.5477743,9.5477743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,43.57,62.68,7,1,1,0,0,10,5,1,1773,411298.19,0,0,3312.8281 -7625,9399,17164,-9,17168,17166,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.51978,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,4,1,707.59998,385308,0,0,2989.2617 -7625,9399,17165,-9,17168,17166,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.89899,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,4,1,707.59998,385308,0,0,2989.2617 -7625,9399,17166,17168,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,8.6168919,8.8100042,0,2,0,-9,6,0,0,-9.8747292,0,0,0,43,2,4,1,2,3,2019,1,1,11,0,37,37,15,1,0,1,0,19.813177,19.813177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.16,56.150002,6,1,1,0,0,11,4,1,707.59998,385308,0,0,2989.2617 -7625,9399,17167,-9,17168,17166,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.22284,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,707.59998,385308,0,0,2989.2617 -7625,9399,17168,17166,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,0,4,7.6381216,7.3213334,0,2,0,-9,6,0,0,-39.082397,0,0,1,43,1,4,1,2,2,2019,1,2,7,0,30,8,15,1,0,1,0,7.0599599,7.0599599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.869999,58.549999,5,1,1,0,0,11,4,1,707.59998,385308,0,0,2989.2617 -7626,9400,17169,17170,-9,-9,1,1,0,35,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,1,1,-9,6,69.68605,0,0,1,29,2,3,1,-9,-9,2019,3,2,6,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,60.650002,38.310001,7,2,3,0,0,8,2,0,409.5,202432,0,0,365.28613 -7626,9400,17170,17169,-9,-9,2,1,1,29,1,0,0,0,2,-9,1,1,0,0,3,7.5057316,7.256515,0,1,0,-9,1,-9,-6,-71.32074,-9,1,0,35,1,4,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,5.4015255,5.4015255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.650002,38.310001,54.790001,55.860001,6,2,3,0,0,8,2,0,409.5,202432,0,0,365.28613 -7627,9401,17171,17172,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,8.1519737,7.9098392,0,1,0,-9,2,0,-1,-85.457138,0,0,1,35,2,3,1,-9,-9,2019,1,1,11,2,35,36,15,1,0,1,0,10.068469,10.068469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,33.43,59.209999,5,1,1,0,0,2,4,0,899,57214.137,0,0,3016.1108 -7627,9401,17172,17171,-9,-9,1,1,1,35,1,0,0,0,2,-9,1,1,0,0,3,8.3607225,8.4345903,0,1,0,-9,2,0,1,-9.6182137,0,0,0,34,1,4,1,2,2,2019,1,2,11,0,30,25,15,1,0,1,0,15.349109,15.349109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.43,59.209999,49,56,5,1,1,0,0,2,4,0,899,57214.137,0,0,3016.1108 -7628,9402,17173,17174,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,7,0,12,7.3834291,0,0,0,57,2,4,1,3,-9,2019,3,1,20,8,0,0,15,4,1,1,0,0,0,1,0,37.193478,4.642211,0,0,0,0,1,0,1,0,0,0,0,46.740002,11.63,54,54,2,1,1,0,0,10,2,1,1328,46009.203,0,0,833.38782 -7628,9402,17174,17173,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,5.737411,5.7461352,0,1,0,-9,7,0,-12,-25.765944,0,0,0,69,3,1,3,1,2,2019,2,2,9,0,30,37,15,1,0,4,0,1.4734719,1.4734719,0,0,0,0,0,0,0,42,1,0,1,0,0,45.093464,1,54,54,46.740002,11.63,6,1,1,0,0,10,2,1,1328,46009.203,0,0,833.38782 -7628,9403,17175,-9,17173,17174,4,1,0,27,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1029.7977,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,35,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,0,3,31.299999,19.83,-9,-9,2,1,1,1,0,10,1,1,341,-146133.81,0,0,597.37976 -7629,9404,17176,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,4,0,5.6794128,5.6706052,3,0,0,0,-9,0,-963.89923,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1609416,5.7385197,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,4,2,1,371,150466.11,0,0,2026.0773 -7630,9405,17177,17178,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.0740767,8.1619005,0,1,0,-9,3,0,-1,0,0,0,0,52,2,4,1,-9,-9,2019,1,1,30,12,37,37,15,1,1,1,0,10.32861,10.32861,0,0,0,0,0,0,0,0,0,0,0,.86269403,0,0,0,36.07,36.43,33.84,62.57,3,1,1,0,0,8,4,0,518,674888.69,0,0,3144.6802 -7630,9405,17178,17177,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.0310621,8.1479149,0,1,0,-9,3,0,1,0,0,0,0,51,2,2,1,3,2,2019,1,2,25,9,37,37,15,1,1,1,0,7.3382125,7.3382125,0,0,0,0,0,0,0,0,0,0,0,.50623876,0,0,0,33.84,62.57,36.07,36.43,6,1,1,0,0,8,4,0,518,674888.69,0,0,3144.6802 -7631,9406,17179,-9,-9,-9,1,1,1,28,2,0,0,0,3,-9,2,1,0,0,4,8.8150215,8.5810118,0,3,0,0,0,-9,0,-996.21088,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,45,15,1,0,-9,0,12.791141,12.791141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,7,1,1,0,0,2,5,0,479,82225.336,0,0,1909.0514 -7632,9407,17180,-9,-9,-9,1,1,0,36,3,0,2,0,1,-9,2,1,0,0,3,8.0535574,7.8481603,0,4,0,-9,0,-9,0,-1032.7701,-9,0,1,-9,-9,-9,-9,2,1,2019,-9,0,19,7,20,0,15,1,1,-9,0,15.883888,15.883888,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.150002,41.419998,-9,-9,7,3,4,0,1,8,3,0,207,-15688.727,0,0,1324.1349 -7632,9407,17181,-9,17180,-9,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-986.0058,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,3,0,207,-15688.727,0,0,1324.1349 -7632,9407,17182,-9,17180,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1012.5755,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,3,0,207,-15688.727,0,0,1324.1349 -7633,9408,17183,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,3,3,0,0,3,0,6.1329331,6.4424496,4,0,0,0,-9,0,-936.12769,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.311852,0,9.7900333,3,47.150002,26.85,-9,-9,4,1,1,1,1,9,2,0,247,513668.91,0,0,1492.9564 -7634,9409,17184,17185,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,6.8717861,6.9551344,1,0,-9,9,0,3,166.46567,0,0,0,76,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.74358237,6.7901354,0,0,49.040001,55.860001,58.32,50.220001,5,1,1,0,0,9,2,1,703,682688.75,0,0,1843.8542 -7634,9409,17185,17184,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-3,52.752266,0,0,0,79,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,49.040001,55.860001,7,1,1,0,0,9,2,1,703,682688.75,0,0,1843.8542 -7635,9410,17186,17187,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,5,9.615077,9.0370283,0,1,0,-9,6,0,0,-50.018139,0,0,0,56,1,4,1,-9,-9,2019,1,1,10,0,52,60,15,1,0,1,0,24.313204,24.313204,0,0,0,0,0,0,0,0,0,0,0,5.8211551,0,0,0,48.709999,61.529999,54.779999,47.84,6,1,1,0,0,2,5,1,472,3268499.5,0,0,4608.0479 -7635,9410,17187,17186,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,7.3966365,7.3251987,0,1,0,-9,6,0,0,-23.979965,0,0,0,56,1,5,1,3,3,2019,1,2,10,0,20,28,15,1,0,1,0,12.321608,12.321608,0,0,0,0,0,0,0,0,0,0,0,7.2179694,0,0,0,54.779999,47.84,48.709999,61.529999,6,1,1,0,0,2,5,1,472,3268499.5,0,0,4608.0479 -7636,9411,17188,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,1,1,0,0,4,8.1083317,8.1145411,0,3,0,0,0,-9,0,-1078.3746,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,40,15,1,0,-9,0,10.142759,10.142759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,4,1,155,102761.49,0,0,196.56606 -7637,9412,17189,17190,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,2,7.1664815,7.1929793,5.4399104,1,0,-9,48,0,-2,31.749893,0,0,0,70,3,3,3,2,3,2019,2,1,12,2,18,18,15,1,0,4,0,8.4456844,8.4456844,0,0,0,0,0,0,0,0,1,1,0,0,5.3707857,0,0,49.279999,52.09,59.310001,49.810001,4,1,1,0,0,11,2,1,746,1468306.1,0,0,1963.1655 -7637,9412,17190,17189,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,2,-60.588646,0,0,0,68,1,2,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.831836,0,0,0,59.310001,49.810001,49.279999,52.09,6,1,1,0,0,11,2,1,746,1468306.1,0,0,1963.1655 -7638,9413,17191,17192,-9,-9,1,1,0,46,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,8,0,0,0,0,38,2,3,3,2,2,2019,4,3,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,71.030502,3,51.490002,57.57,42.560001,48.18,5,3,4,0,0,8,1,1,593.5,615523.31,0,0,1144.3577 -7638,9413,17192,17191,-9,-9,3,1,1,38,1,0,1,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,9,0,-8,0,0,0,0,46,3,4,3,2,2,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.641794,3,42.560001,48.18,51.490002,57.57,4,1,1,1,1,8,1,1,593.5,615523.31,0,0,1144.3577 -7639,9414,17193,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,0,3,0,7.270452,7.375721,3,0,0,0,-9,0,-993.62207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,13.74213,0,0,0,1,1,0,5.6823988,6.9299631,0,0,58.23,38.259998,-9,-9,7,1,1,0,0,13,3,1,956,316265.59,0,0,1146.197 -7640,9415,17194,-9,17195,-9,2,1,0,17,2,0,1,0,2,1,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-972.35974,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,1,0,4,4,1,1171.5,67035.258,0,0,2541.2109 -7640,9415,17195,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,0,2,8.731698,8.5183735,0,4,0,0,0,-9,0,-842.52185,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,30,43,15,1,0,-9,0,18.526348,18.526348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.529999,50.82,-9,-9,6,1,1,0,0,4,4,1,1171.5,67035.258,0,0,2541.2109 -7640,9416,17196,-9,17195,-9,3,1,1,19,2,0,1,0,2,1,2,1,0,0,3,7.7824602,8.2531338,0,3,0,0,0,-9,0,-991.21741,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,37,0,15,1,0,-9,1,8.9674349,8.9674349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.84,44.02,-9,-9,6,1,1,0,0,4,3,1,917,-59681.184,0,0,374.38434 -7641,9417,17197,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,1,0,5.6653781,5.4647799,3,0,0,0,-9,0,-956.46649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,11.483743,0,0,0,0,96.12365,0,1,1,0,0,5.0603147,0,0,44.900002,15.15,-9,-9,3,1,1,0,0,13,2,0,333,-51003.715,0,0,399.20999 -7642,9418,17198,17199,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,1,1,0,2.2405736,1.977972,1,0,-9,7,0,-3,-16.988026,0,0,0,62,3,1,3,3,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.0061235,2.8636215,33.014786,3,67.139999,17.969999,39.91,26.57,7,1,1,0,0,5,1,0,350.5,20391.166,0,0,1953.4446 -7642,9418,17199,17198,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,1,1,0,3.7086394,3.4860895,1,0,-9,7,0,3,-80.408798,0,0,0,59,2,1,3,3,3,2019,4,2,12,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.1756616,3.7064619,15.362007,3,39.91,26.57,67.139999,17.969999,6,1,1,0,0,5,1,0,350.5,20391.166,0,0,1953.4446 -7643,9419,17200,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,2,1,0,0,3,8.3103771,8.5069027,0,3,0,0,0,-9,0,-918.22461,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,36,42,15,1,0,-9,0,11.076338,11.076338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,4,1,1544,304928.47,0,0,842.4046 -7644,9420,17201,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,5.6407371,5.6383262,3,0,0,0,-9,0,-1067.4673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6367526,0,0,45.119999,45.400002,-9,-9,6,1,1,0,0,2,2,1,6766,112272.27,0,0,1433.2889 -7645,9421,17202,17203,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,3.2371228,3.4291117,1,0,-9,7,0,-2,-54.559971,0,0,0,79,3,3,3,3,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,1,0,9.2003651,0,0,0,0,0,1,1,0,1.2428,3.2566173,0,0,45.560001,46.400002,54,46,5,1,1,0,0,2,2,1,1018,261306.5,0,0,1358.2714 -7645,9421,17203,17202,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,6.1899157,6.462985,1,0,-9,7,0,2,45.760532,0,0,0,77,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,.46660724,6.9972134,0,0,0,51.531956,0,1,1,0,1.0883814,6.6632233,0,0,54,46,45.560001,46.400002,6,1,1,0,0,2,2,1,1018,261306.5,0,0,1358.2714 -7646,9422,17204,17205,-9,-9,2,1,0,58,1,0,0,0,1,-9,8,3,1,1,2,8.0640078,8.3580713,6.3820376,1,0,-9,3,0,0,43.106201,0,0,0,58,2,2,1,-9,-9,2019,3,1,23,11,35,35,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.3589735,0,25.284451,2,45.169998,18.5,65.470001,37.82,2,1,1,0,1,2,5,1,529,56613.828,0,0,2483.126 -7646,9422,17205,17204,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,2,8.2427454,8.282629,0,1,0,-9,3,0,0,-46.90554,0,0,0,58,1,2,3,3,2,2019,2,2,6,0,48,48,15,1,0,3,0,9.5356874,9.5356874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.470001,37.82,45.169998,18.5,7,1,1,0,0,2,5,1,529,56613.828,0,0,2483.126 -7647,9423,17206,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,2,0,6.1822281,6.3496885,3,0,0,0,-9,0,-859.43781,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3408699,.67889118,3,45.93,46.68,-9,-9,6,2,3,0,0,6,2,1,247,149770.33,0,0,885.62408 -7648,9424,17207,17208,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.7878733,8.9350128,0,1,0,-9,11,0,1,67.237938,0,0,0,52,2,2,1,2,2,2019,1,2,12,0,55,55,15,1,0,1,0,15.321012,15.321012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.700001,48.93,53.77,45.91,6,1,1,0,0,7,5,1,1319.5,732880.13,0,0,3205.3345 -7648,9424,17208,17207,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,8.0613108,8.1629725,0,1,0,-9,11,0,-1,38.934174,0,0,0,53,2,2,1,2,2,2019,1,1,12,1,47,37,15,1,0,1,0,8.7867842,8.7867842,0,0,0,0,0,0,0,0,0,0,0,1.6433517,0,0,0,53.77,45.91,47.700001,48.93,5,1,1,0,0,7,5,1,1319.5,732880.13,0,0,3205.3345 -7648,9425,17209,-9,17208,17207,3,1,0,29,2,0,0,0,1,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-859.43219,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.990002,54.490002,-9,-9,4,1,1,0,1,7,1,1,527,-3188.0823,0,0,0 -7649,9426,17210,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,4,9.2856531,9.2319765,0,3,0,0,0,-9,0,-1027.6135,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,42,53,15,1,0,-9,0,23.454523,23.454523,0,0,0,0,0,0,0,0,1,1,0,4.588747,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,12,5,1,1166,253167.52,0,0,2143.1262 -7650,9427,17211,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1076.6119,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,13,1,0,160,95909.273,0,0,1265.2595 -7651,9428,17212,17213,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,0,3,7.5267239,7.4743714,0,1,0,-9,6,0,-15,14.367434,0,0,1,46,2,3,1,2,2,2019,1,2,17,5,28,21,15,1,1,1,0,8.3594112,8.3594112,0,0,0,0,0,0,0,7,0,0,0,2.5184727,0,6.1600423,3,29.870001,44.23,46.080002,57.200001,5,1,1,0,0,12,4,0,494.5,192112.75,0,0,2285.3745 -7651,9428,17213,17212,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,0,3,7.8570714,8.3428392,0,1,0,-9,6,0,15,-4.0204973,0,0,0,31,2,3,1,-9,-9,2019,1,1,11,0,32,0,15,1,0,1,0,14.459201,14.459201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,29.870001,44.23,4,1,1,0,0,12,4,0,494.5,192112.75,0,0,2285.3745 -7652,9429,17214,17215,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,9.0346184,9.1393023,0,1,0,-9,6,0,6,41.377499,0,0,0,51,1,4,1,3,2,2019,1,2,7,0,42,45,15,1,0,1,0,27.635656,27.635656,0,0,0,0,0,0,0,0,0,0,0,7.4059916,0,0,0,61.119999,51.57,51.830002,57.200001,7,1,1,0,0,7,5,1,1191.5,3589604,0,0,5641.2271 -7652,9429,17215,17214,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,9.1937351,8.9240141,0,1,0,-9,6,0,-6,73.16964,0,0,0,57,1,4,1,-9,-9,2019,1,1,7,0,55,60,15,1,0,1,0,16.152401,16.152401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,61.119999,51.57,6,1,1,0,0,7,5,1,1191.5,3589604,0,0,5641.2271 -7653,9430,17216,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,0,5,8.4408207,8.5508804,0,4,0,-9,0,1,0,-1005.8563,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,36,12,37,38,15,1,1,-9,0,15.404871,15.404871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3.3099999,69.019997,-9,-9,1,1,1,0,1,2,4,1,1313,20895.039,0,0,2316.3242 -7653,9430,17217,-9,17216,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.58887,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,1313,20895.039,0,0,2316.3242 -7653,9430,17218,-9,17216,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.6755,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1313,20895.039,0,0,2316.3242 -7654,9431,17219,17221,-9,-9,2,1,0,43,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-8,-11.399051,0,0,1,51,3,3,1,3,3,2019,3,1,4,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.619999,42.18,54.23,46.77,1,2,3,0,1,5,2,0,671.33331,1284.0591,0,0,971.23596 -7654,9431,17220,-9,17219,17221,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.397,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,2,0,671.33331,1284.0591,0,0,971.23596 -7654,9431,17221,17219,-9,-9,1,1,1,51,1,0,1,0,3,-9,2,1,0,0,3,7.3336954,7.3089776,0,2,0,-9,6,0,8,6.2668009,0,0,0,43,3,3,3,3,2,2019,2,2,6,0,24,24,15,1,0,3,0,7.4492397,7.4492397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.23,46.77,36.619999,42.18,6,2,3,0,1,5,2,0,671.33331,1284.0591,0,0,971.23596 -7655,9432,17222,-9,-9,-9,2,1,0,80,2,0,0,0,2,-9,4,3,0,0,1,0,5.4555421,5.5417247,3,0,0,0,-9,0,-992.53046,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,5.4516182,.51683927,0,0,1,1,0,.37128916,5.3950453,0,0,34.709999,18.35,-9,-9,2,1,1,0,0,9,2,1,800,117298.8,0,0,523.45709 -7656,9433,17223,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-945.97717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.747276,3,52,46,-9,-9,6,3,4,0,0,8,1,0,483,147232.7,0,0,1809.9611 -7657,9434,17224,17225,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.6943464,7.4788084,1,0,-9,27,0,6,-82.066147,0,0,0,69,1,5,3,2,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1891484,7.2594943,0,0,54.200001,57.490002,41.07,60.93,6,1,1,0,0,12,3,1,636,791598.25,0,0,2781.2983 -7657,9434,17225,17224,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,5,0,6.8550296,6.4340415,1,0,-9,27,0,-6,-40.389412,0,0,0,75,3,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4248886,6.9851665,0,0,41.07,60.93,54.200001,57.490002,1,1,1,0,0,12,3,1,636,791598.25,0,0,2781.2983 -7658,9435,17226,17227,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,0,4,8.5703764,8.7608585,0,1,0,-9,6,0,1,-24.208427,0,0,0,48,2,4,3,-9,-9,2019,2,1,9,1,70,60,15,1,0,3,0,7.8625512,7.8625512,0,0,0,0,0,0,0,0,1,1,0,7.1860223,0,0,0,53,54,53.93,52.080002,6,2,3,0,0,4,4,1,2135.5,157988.48,0,0,2022.2632 -7658,9435,17227,17226,-9,-9,1,1,0,48,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,21,0,-1,-16.759918,0,0,0,49,3,4,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.93,52.080002,53,54,6,2,3,0,1,4,4,1,2135.5,157988.48,0,0,2022.2632 -7658,9436,17228,-9,17227,17226,3,1,1,29,2,0,0,0,1,1,2,1,0,0,5,7.9604049,8.0415468,0,3,0,0,0,-9,0,-1019.2126,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,35,0,15,1,0,-9,1,9.3402834,9.3402834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,2,3,0,0,4,4,1,132,-257542.08,0,0,-81.582535 -7658,9437,17229,-9,17227,17226,4,1,1,24,3,0,0,0,1,-9,2,1,0,0,5,8.1060104,8.2373629,0,3,0,0,0,-9,0,-1004.7143,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,44,38,15,1,0,-9,1,7.9951568,7.9951568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,2,3,0,0,4,4,1,646,-50381.598,0,0,2249.6511 -7659,9438,17230,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1025.1932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.740002,16.459999,-9,-9,1,1,1,0,0,13,1,0,5822,-351307.94,0,0,2895.3955 -7660,9439,17231,17232,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,5.300983,5.4603939,1,0,-9,6,0,3,-102.48549,0,0,0,62,2,5,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5398445,5.5881991,0,0,59.290001,46.970001,57.060001,57.759998,6,1,1,0,0,9,4,1,1673,2170572.5,0,0,3868.8936 -7660,9439,17232,17231,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,5,0,8.7604437,8.3131599,1,0,-9,6,0,-3,159.36859,0,0,0,65,1,4,3,2,3,2019,4,1,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.781229,7.3444247,3,57.060001,57.759998,59.290001,46.970001,6,1,1,0,0,9,4,1,1673,2170572.5,0,0,3868.8936 -7661,9440,17233,-9,17235,17234,2,1,0,19,2,0,0,1,2,0,7,2,0,0,3,6.8943348,6.8545809,0,3,0,0,0,-9,0,-1039.243,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,28,12,23,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.549999,56.75,-9,-9,5,1,1,0,0,10,2,1,840,138770.22,0,0,1054.183 -7661,9441,17234,17235,-9,-9,3,1,1,47,1,0,0,0,1,-9,2,1,0,0,4,9.4164886,9.4963522,0,1,0,-9,8,0,1,21.798666,0,0,0,46,1,3,1,-9,-9,2019,1,1,7,0,48,48,15,1,0,1,0,29.173805,29.173805,0,0,0,0,0,0,0,0,0,0,0,1.551378,0,0,0,54.18,49.48,57.740002,43.82,6,1,1,0,0,10,5,1,519.5,2295202.5,0,0,6646.6299 -7661,9441,17235,17234,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,0,3,8.7285347,8.7134647,0,1,0,-9,8,0,-1,-93.948097,0,0,0,47,1,4,1,2,2,2019,1,3,11,1,80,65,15,1,0,1,0,7.3799739,7.3799739,0,0,0,0,0,0,0,0,0,0,0,2.7515955,0,0,0,57.740002,43.82,54.18,49.48,5,1,1,0,0,10,5,1,519.5,2295202.5,0,0,6646.6299 -7662,9442,17236,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,8,3,1,1,2,0,4.3931127,4.27214,3,0,0,0,-9,0,-1032.6268,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0228291,4.3855338,0,0,58.169998,42.52,-9,-9,7,1,1,0,0,2,1,1,2500,190985.28,0,0,1955.4521 -7663,9443,17237,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,3,3,0,0,2,0,6.5274501,6.3746891,3,0,0,0,-9,0,-870.16473,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4608121,0,0,0,45.84,41.48,-9,-9,4,1,1,1,0,9,2,1,200,404752.69,0,0,-27.581087 -7664,9444,17238,17239,-9,-9,2,1,1,69,1,0,0,0,2,-9,1,1,0,0,3,8.3607378,8.2825003,0,1,0,-9,11,0,3,-30.806868,-9,0,0,66,3,3,1,-9,-9,2019,1,1,10,0,25,0,15,1,0,1,0,18.292406,18.292406,1,0,0,0,0,0,0,0,1,1,0,3.2307231,0,0,0,66.139999,26.059999,53.98,45.34,6,1,1,0,0,7,5,0,599.5,5713.1021,0,0,4893.5098 -7664,9444,17239,17238,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,0,3,8.5252371,8.3904448,0,1,0,-9,11,0,-3,29.639826,0,0,0,69,2,3,1,3,-9,2019,1,2,10,0,38,38,15,1,0,1,0,13.843328,13.843328,0,0,0,0,0,0,0,0,1,1,0,3.7901824,0,0,0,53.98,45.34,66.139999,26.059999,3,1,1,0,0,7,5,0,599.5,5713.1021,0,0,4893.5098 -7665,9445,17240,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,3,3,0,0,1,0,0,0,3,0,-9,0,0,0,-861.98627,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,5.2841816,0,16.518209,3,26.190001,30.16,-9,-9,1,1,1,1,0,2,1,0,295,90230.461,0,0,596.29041 -7665,9446,17241,-9,-9,-9,2,1,1,27,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,-9,0,-9,0,-925.77496,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,31,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.870001,40.130001,-9,-9,1,1,1,1,0,2,1,0,963,-205268.2,0,0,1118.4246 -7666,9447,17242,17243,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,45,-9,-2,21.056635,-9,0,0,70,2,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,12,3,1,450,652451.75,0,0,2002.9407 -7666,9447,17243,17242,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,5,0,7.8922086,7.8587298,1,0,-9,45,-9,2,-11.252438,-9,0,0,68,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7323036,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,12,3,1,450,652451.75,0,0,2002.9407 -7667,9448,17244,17246,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.0731707,7.6559958,0,2,0,-9,1,-9,8,-55.54884,-9,0,0,26,2,3,1,-9,-9,2019,1,1,6,0,52,0,15,1,0,1,0,4.9887218,4.9887218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.91,45.880001,6,3,4,0,0,9,4,0,316.33334,167267.02,0,0,3415.8416 -7667,9448,17245,-9,17246,17244,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-947.23962,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,4,0,316.33334,167267.02,0,0,3415.8416 -7667,9448,17246,17244,-9,-9,1,1,0,26,1,1,1,0,2,-9,5,1,0,0,3,8.3317003,8.2819529,0,2,0,1,1,-9,-8,-38.079941,0,1,1,34,2,4,1,-9,-9,2019,1,2,4,0,55,55,15,1,0,1,0,6.2483473,6.2483473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.91,45.880001,57.16,56.150002,6,1,1,0,0,9,4,0,316.33334,167267.02,0,0,3415.8416 -7668,9449,17247,17248,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,7.9110093,8.0836229,1,0,-9,32,-9,16,-54.081005,-9,0,0,60,2,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,30.886927,0,0,0,0,5.48,1,1,0,0,8.10151,5.6886597,2,33.950001,33.41,27.370001,29.690001,6,3,4,0,0,6,4,0,551,1202178.8,0,0,3306.7686 -7668,9449,17248,17247,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,2,0,7.4890842,7.5814033,1,0,-9,32,-9,-16,66.044266,-9,0,0,76,2,2,3,-9,-9,2019,4,1,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.7767339,7.5526986,45.508724,1,27.370001,29.690001,33.950001,33.41,4,3,4,0,0,6,4,0,551,1202178.8,0,0,3306.7686 -7669,9450,17249,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,0,4,7.9761658,8.1736689,0,3,0,0,0,-9,0,-1040.4789,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,0,15,1,0,-9,0,8.1776447,8.1776447,0,0,0,0,0,0,0,0,0,0,0,1.6018203,0,0,0,43.599998,56.779999,-9,-9,5,1,1,0,0,9,4,1,545,-2302.6799,0,0,1875.5905 -7670,9451,17250,17251,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.5784974,7.2151427,0,1,0,-9,38,0,-1,82.561577,0,0,0,60,2,4,1,2,2,2019,1,2,5,0,33,39,15,1,0,1,0,6.115274,6.115274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,54.209999,49.459999,3,2,3,0,0,9,5,1,921.5,1902575.8,0,0,9114.0195 -7670,9451,17251,17250,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,9.7083225,9.5204525,7.6703782,1,0,-9,7,0,1,-105.01239,0,0,0,59,2,3,1,3,3,2019,1,1,7,1,60,20,15,1,0,1,0,26.313898,26.313898,0,0,0,0,0,0,0,0,0,0,0,7.5101681,7.3725834,0,0,54.209999,49.459999,41.34,56.619999,7,2,3,0,0,9,5,1,921.5,1902575.8,0,0,9114.0195 -7671,9452,17252,17253,-9,-9,2,1,0,43,1,0,0,0,2,-9,97,3,0,0,1,0,0,0,1,0,-9,9,0,-2,4.6975756,0,0,1,45,3,2,1,3,3,2019,3,1,32,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.02,50.75,30.440001,50.049999,1,1,1,0,1,11,4,1,324.66666,109513.83,0,0,1816.978 -7671,9452,17253,17252,-9,-9,1,1,1,45,1,0,0,0,3,-9,2,1,0,0,2,8.3598585,8.3132887,0,1,0,-9,9,0,2,-127.8196,-9,0,0,43,2,1,3,3,3,2019,2,2,18,6,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.257299,1,30.440001,50.049999,18.02,50.75,3,1,1,0,1,11,4,1,324.66666,109513.83,0,0,1816.978 -7671,9452,17254,-9,17252,17253,4,1,0,17,2,0,0,1,3,0,7,2,0,0,5,6.4323792,7.0039401,0,1,0,0,0,-9,0,-1112.7012,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,1,1,1,0,0,11,4,1,324.66666,109513.83,0,0,1816.978 -7671,9453,17255,-9,17252,17253,3,1,1,19,2,0,0,0,2,-9,11,3,0,0,5,7.4778991,7.6419086,0,3,0,0,0,-9,0,-920.60791,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,21,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,3,1,984,-65918.109,0,0,663.30707 -7672,9454,17256,-9,17258,-9,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,5.9501982,5.900455,4,0,0,0,-9,0,-1008.3326,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4065742,0,0,3,59.139999,52.5,-9,-9,7,1,1,0,0,12,2,1,628,20795.865,0,0,1395.4281 -7672,9454,17257,-9,17258,-9,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-970.40515,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,1,628,20795.865,0,0,1395.4281 -7672,9454,17258,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,2,1,0,0,4,7.5358357,7.3336482,0,4,0,0,0,-9,0,-1078.09,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,25,0,15,1,0,-9,0,7.5542259,7.5542259,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.494856,3,50,55,-9,-9,5,1,1,0,0,12,2,1,628,20795.865,0,0,1395.4281 -7672,9455,17259,-9,17258,-9,2,1,1,19,2,0,2,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1037.2698,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,1,0,12,1,1,239,57600.52,0,0,-446.77829 -7673,9456,17260,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,3,9.0883627,8.9758167,0,3,0,0,0,-9,0,-934.88495,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,49,-9,-9,5,1,1,0,0,9,5,1,727,705662.38,0,0,1754.7623 -7674,9457,17261,17262,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,3,8.2165833,8.4000549,0,1,0,-9,1,-9,1,6.7309699,-9,0,0,42,1,3,1,3,-9,2019,1,2,8,0,47,0,15,1,0,1,0,12.530633,12.530633,0,0,0,0,0,0,0,0,0,0,0,1.9469205,0,0,0,52,54.509998,44.82,49.490002,5,1,1,0,0,9,5,1,2031.5,175102.75,0,0,3533.2224 -7674,9457,17262,17261,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,3,8.5912933,8.4987011,0,1,0,-9,1,-9,-1,8.6988382,-9,0,1,43,2,3,1,2,-9,2019,1,1,16,4,65,0,15,1,1,1,0,10.044396,10.044396,0,0,0,0,0,0,0,0,0,0,0,.88571209,0,0,0,44.82,49.490002,52,54.509998,3,1,1,0,0,9,5,1,2031.5,175102.75,0,0,3533.2224 -7675,9458,17263,17264,-9,-9,2,1,1,35,1,0,1,0,2,-9,1,1,0,0,4,7.8472495,7.8002353,0,2,0,-9,7,0,1,-50.631046,0,0,0,34,3,4,1,2,2,2019,1,1,11,0,50,40,15,1,0,1,0,5.3818126,5.3818126,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.580002,49.75,49.27,56.950001,5,1,1,0,0,11,3,1,638,63109.551,0,0,1210.9136 -7675,9458,17264,17263,-9,-9,1,1,0,34,1,0,1,0,3,-9,1,1,0,0,4,6.8496737,6.8725505,0,2,0,-9,7,0,-1,150.70288,0,0,1,35,2,4,1,2,2,2019,1,2,10,0,20,20,15,1,0,1,0,3.9927664,3.9927664,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.950001,56.580002,49.75,6,1,1,0,0,11,3,1,638,63109.551,0,0,1210.9136 -7676,9459,17265,-9,-9,-9,1,1,0,56,3,0,1,0,3,-9,2,1,0,0,4,6.3888841,7.0494246,6.1184959,4,0,0,0,-9,0,-1080.1641,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,8,0,15,1,0,-9,0,6.3076234,6.3076234,0,0,0,0,0,0,0,0,1,1,0,0,6.1698322,0,0,57.91,46.150002,-9,-9,5,3,4,0,0,8,2,0,906,124495.16,0,0,958.17822 -7676,9459,17266,-9,17265,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1038.9441,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,906,124495.16,0,0,958.17822 -7676,9460,17267,-9,17265,-9,2,1,0,24,2,0,1,0,3,-9,2,1,0,0,4,7.6609602,7.8265662,0,3,0,0,0,-9,0,-965.28491,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,50,0,15,1,0,-9,1,5.3237238,5.3237238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.119999,56.009998,-9,-9,5,3,4,0,0,8,3,0,1121,78920.602,0,0,1496.3767 -7677,9461,17268,17269,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,8.4942083,9.0431242,0,1,0,-9,29,0,-1,-63.697567,0,0,0,52,1,4,1,2,1,2019,1,2,8,1,20,20,15,1,0,1,0,33.969913,33.969913,0,0,0,0,0,0,0,0,0,0,0,4.4234271,0,0,0,55.93,49.950001,48.810001,59.91,6,1,1,0,0,4,5,1,550,2934730.5,0,0,3930.0667 -7677,9461,17269,17268,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,8.7357111,9.0155134,0,1,0,-9,29,0,1,-73.004723,0,0,0,51,1,3,1,1,2,2019,1,1,8,1,40,40,15,1,0,1,0,18.735464,18.735464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,55.93,49.950001,5,1,1,0,0,4,5,1,550,2934730.5,0,0,3930.0667 -7677,9462,17270,-9,17268,17269,3,1,0,18,2,0,0,0,2,1,2,1,0,0,5,7.4588919,7.6739507,0,3,0,0,0,-9,0,-1025.1996,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,74,0,15,1,0,-9,1,3.0905931,3.0905931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,4,3,1,856,-93558.078,0,0,1926.5293 -7678,9463,17271,-9,-9,-9,3,1,0,19,2,0,1,0,2,1,2,1,0,0,5,7.6507168,8.3230906,6.1511831,3,0,0,0,-9,0,-957.43262,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,26,9,27,0,15,1,1,-9,1,9.5823536,9.5823536,0,0,0,0,0,0,0,0,1,1,0,6.5847931,0,0,0,23.950001,54.009998,-9,-9,1,2,3,0,0,8,3,1,1697,137702.17,0,0,1859.7142 -7679,9464,17272,17273,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.371439,7.7182202,0,1,0,-9,38,0,1,128.16695,0,0,0,58,1,3,1,2,3,2019,1,2,25,11,18,30,15,1,1,1,0,11.733521,11.733521,0,0,0,0,0,0,0,7,0,0,0,2.1699641,0,3.6455696,3,22.559999,57.290001,60.18,39.830002,4,1,1,0,0,6,5,1,929.5,166994.5,0,0,3059.6619 -7679,9464,17273,17272,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,8.8808832,9.1855345,0,1,0,-9,38,0,-1,149.20853,0,0,0,59,2,3,1,3,3,2019,1,1,11,1,35,35,15,1,0,1,0,25.533733,25.533733,0,0,0,0,0,0,0,0,0,0,0,3.3364871,0,0,0,60.18,39.830002,22.559999,57.290001,6,1,1,0,0,6,5,1,929.5,166994.5,0,0,3059.6619 -7680,9465,17274,17275,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,52,0,-3,99.872665,0,0,0,71,2,2,3,3,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,34.252129,1,50,47,33.41,33.68,5,2,3,0,0,5,4,1,2896,671905.88,0,0,6766.145 -7680,9465,17275,17274,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,2,0,8.8792429,8.6507826,1,0,-9,52,0,3,21.437168,0,0,0,68,2,3,3,3,2,2019,4,2,12,3,0,0,15,4,0,4,0,0,0,1,0,8.7062664,.48337245,0,0,0,27.5,1,1,0,8.4406595,8.5660839,29.057775,1,33.41,33.68,50,47,5,2,3,0,0,5,4,1,2896,671905.88,0,0,6766.145 -7681,9466,17276,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-988.95258,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,34.779999,-9,-9,3,1,1,0,0,12,1,0,306,-60168.254,0,0,1701.4366 -7682,9467,17277,-9,-9,-9,1,1,0,65,2,0,0,0,3,-9,8,3,1,1,1,0,7.2989082,6.6035895,3,0,0,0,-9,0,-1034.1814,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,1,41.411934,0,0,0,0,0,0,1,1,0,0,6.9285707,0,0,35.34,19.110001,-9,-9,5,1,1,0,0,1,2,0,731,47102.742,0,0,253.46844 -7683,9468,17278,17279,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.2222123,6.7775364,1,0,-9,8,0,0,5.732924,0,0,0,72,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,73.925255,0,0,0,0,0,1,1,0,5.6947503,7.0762343,0,0,40.110001,26.75,51.25,46.549999,6,1,1,0,0,4,2,1,447.5,271919.09,0,0,921.15576 -7683,9468,17279,17278,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,0,13.37658,0,0,0,72,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.0347815,0,80.383125,1,51.25,46.549999,40.110001,26.75,5,1,1,0,0,4,2,1,447.5,271919.09,0,0,921.15576 -7684,9469,17280,-9,17282,17281,5,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.148,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,5,1,628.66669,122312.95,0,0,36019.617 -7684,9469,17281,17282,-9,-9,2,1,1,48,1,0,1,0,3,-9,1,1,0,0,4,9.684104,9.7282677,0,2,0,-9,7,0,-1,-47.615234,-9,0,0,49,1,4,1,-9,-9,2019,1,1,9,1,60,0,15,1,0,1,0,30.529999,30.529999,0,0,0,0,0,0,0,0,1,1,0,.28543407,0,0,0,52,55,47.790001,49.490002,6,1,1,0,0,11,5,1,628.66669,122312.95,0,0,36019.617 -7684,9469,17282,17281,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,7.6303782,7.431746,0,2,0,-9,7,0,1,-74.136642,0,0,0,48,3,4,1,3,2,2019,1,2,16,3,35,38,15,1,0,1,0,7.3540335,7.3540335,0,0,0,0,0,0,0,2,1,1,0,4.4860368,0,0,3,47.790001,49.490002,52,55,5,1,1,0,0,11,5,1,628.66669,122312.95,0,0,36019.617 -7684,9470,17283,-9,17282,17281,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,4,7.0626512,7.3425422,0,3,0,0,0,-9,0,-1024.2008,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,2,12,20,15,1,0,-9,1,11.319564,11.319564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,11,2,1,433,182.66913,0,0,624.34491 -7684,9471,17284,-9,17282,17281,4,1,1,18,2,0,1,0,2,-9,2,1,0,0,4,7.8441439,7.8653049,0,3,0,0,0,-9,0,-884.14539,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,2,21,0,15,1,0,-9,1,12.38499,12.38499,0,0,0,0,0,0,0,0,1,1,0,5.3496518,0,0,0,48,59,-9,-9,5,1,1,0,0,11,3,1,1861,-283357.19,0,0,1202.2712 -7685,9472,17285,17286,-9,-9,2,1,0,61,1,0,0,0,2,-9,97,3,0,0,3,0,0,0,1,0,-9,26,0,2,107.24728,0,0,0,59,1,5,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,54.099998,59.110001,6,1,1,0,0,9,3,1,464.5,1155520.5,0,0,792.29797 -7685,9472,17286,17285,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,5,7.8147726,8.2408056,0,1,0,-9,27,0,-2,-14.912442,0,0,0,61,2,3,3,2,2,2019,2,2,11,0,50,50,15,1,0,3,0,6.1573162,6.1573162,0,0,0,0,0,0,0,2,0,0,0,0,0,3.447947,3,54.099998,59.110001,57.330002,53.459999,5,1,1,0,0,9,3,1,464.5,1155520.5,0,0,792.29797 -7685,9473,17287,-9,17285,17286,3,1,1,24,2,0,0,0,1,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1079.7788,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8981202,0,0,0,23.02,66.470001,-9,-9,5,1,1,0,0,9,1,1,848,-59786.289,0,0,428.36575 -7686,9474,17288,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,3,8.1212244,8.613843,6.4980574,3,0,0,0,-9,0,-915.83698,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,40,41,15,1,1,-9,0,14.380619,14.380619,0,0,0,0,0,0,0,0,1,1,0,0,6.8541303,0,0,37.830002,54.5,-9,-9,5,1,1,0,0,1,5,1,810,182785.31,0,0,2219.0684 -7687,9475,17289,-9,-9,-9,1,1,1,37,3,0,0,0,1,-9,2,1,0,0,3,9.3826046,9.2859898,0,3,0,0,0,-9,0,-1045.4575,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,43,46,15,1,0,-9,0,33.690277,33.690277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.970001,-9,-9,4,1,1,0,0,8,5,0,963,616158.38,0,0,3515.606 -7688,9476,17290,17293,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,0,3,8.060853,7.7958989,0,2,0,-9,33,0,2,-36.321861,0,0,0,50,2,3,1,2,2,2019,1,2,10,0,35,40,15,1,0,1,0,9.7486162,9.7486162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.139999,53.419998,53.389999,44.470001,5,1,1,0,0,10,3,1,513.75,307717.97,0,0,2710.3396 -7688,9476,17291,-9,17293,17290,3,1,0,17,2,0,1,0,2,1,2,3,0,0,3,5.8233385,6.3264513,0,2,0,0,0,-9,0,-1115.937,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,21,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0129981,0,0,0,47.689999,55.060001,-9,-9,6,1,1,0,0,10,3,1,513.75,307717.97,0,0,2710.3396 -7688,9476,17292,-9,17293,17290,4,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1029.228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,10,3,1,513.75,307717.97,0,0,2710.3396 -7688,9476,17293,17290,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,0,3,7.1397433,6.9767237,0,2,0,-9,33,0,-2,15.006199,0,0,0,52,2,3,1,-9,-9,2019,1,1,10,0,25,20,15,1,0,1,0,6.994391,6.994391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.389999,44.470001,48.139999,53.419998,6,1,1,0,0,10,3,1,513.75,307717.97,0,0,2710.3396 -7689,9477,17294,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1026.3895,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,33,12,0,31,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3300521,0,12.793414,3,3.4200001,62.549999,-9,-9,4,1,1,1,0,9,1,1,352,313226.16,0,0,603.73566 -7690,9478,17295,17296,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,0,4,9.8410244,9.9308786,4.7472234,1,0,-9,5,0,8,13.887315,0,0,0,56,3,4,1,3,3,2019,1,2,7,0,38,37,15,1,0,1,0,42.709351,42.709351,0,0,0,0,0,0,0,2,0,0,0,1.2307665,5.8982973,3.7413876,3,46.98,59.349998,31.120001,63.98,6,1,1,0,0,5,5,1,2516.5,2505444,0,0,8615.5879 -7690,9478,17296,17295,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,8.9252605,8.9117966,0,1,0,-9,5,0,-8,86.585098,0,0,0,64,2,4,1,2,2,2019,1,1,21,10,49,52,15,1,1,1,0,18.343246,18.343246,0,0,0,0,0,0,0,7,0,0,0,6.9318376,0,14.017768,3,31.120001,63.98,46.98,59.349998,3,1,1,0,0,5,5,1,2516.5,2505444,0,0,8615.5879 -7691,9479,17297,17298,-9,-9,1,1,0,58,1,0,0,0,3,-9,2,1,0,0,4,7.6287742,7.8713455,0,1,0,-9,40,0,-5,-66.685486,0,0,0,63,2,3,3,2,2,2019,2,2,14,1,29,29,15,1,0,4,0,7.0553293,7.0553293,0,0,0,0,0,0,0,0,0,0,0,3.8371508,0,0,0,37.419998,48.970001,54.970001,47.630001,3,1,1,0,0,6,4,1,488.5,887981.5,0,0,3240.3779 -7691,9479,17298,17297,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,8.1186466,8.3266697,1,0,-9,40,0,5,-132.57556,0,0,0,58,3,4,1,3,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8358543,8.4091415,0,0,54.970001,47.630001,37.419998,48.970001,3,1,1,0,0,6,4,1,488.5,887981.5,0,0,3240.3779 -7692,9480,17299,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,3,0,7.7946515,7.8082161,3,0,0,0,-9,0,-1051.4773,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5767765,7.5473585,0,0,59.310001,49.810001,-9,-9,7,1,1,0,0,9,3,1,529,2269328,0,0,2623.0112 -7693,9481,17300,17301,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,1,4,0,0,0,1,0,-9,44,0,-14,-65.869568,0,0,0,76,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.5110207,0,3.9121792,1,49.349998,59.639999,57,51,6,1,1,0,0,11,2,1,283,443555.69,0,0,1304.4329 -7693,9481,17301,17300,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,1,4,0,6.8707852,6.4003816,1,0,-9,44,0,14,-39.942265,0,0,0,62,2,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.5698752,6.6635547,0,0,57,51,49.349998,59.639999,6,1,1,0,0,11,2,1,283,443555.69,0,0,1304.4329 -7694,9482,17302,17303,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,3,8.3109198,8.3933239,0,1,0,-9,6,0,0,42.338284,0,1,0,29,1,4,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,13.134693,13.134693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,31.52,49.139999,6,1,1,0,0,13,5,1,652.5,-39754.758,0,0,3251.5098 -7694,9482,17303,17302,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.1480694,8.3336573,0,1,0,-9,6,0,0,51.668575,0,1,1,29,1,3,1,2,2,2019,1,2,13,2,38,38,15,1,0,1,0,12.301489,12.301489,0,0,0,0,0,0,0,0,0,0,0,2.6552374,0,0,0,31.52,49.139999,57.330002,53.459999,6,1,1,0,0,13,5,1,652.5,-39754.758,0,0,3251.5098 -7695,9483,17304,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-981.38428,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,17.07,35.779999,-9,-9,2,1,1,0,0,9,1,1,729,-186306.44,0,0,1518.0563 -7696,9484,17305,17306,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.2384219,7.0572767,1,0,-9,41,0,5,-14.107165,0,0,0,68,3,2,3,3,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9217029,0,0,58.990002,41.57,41.049999,43.639999,5,1,1,0,0,7,2,1,408.5,799358.44,0,0,2086.395 -7696,9484,17306,17305,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,6.78335,6.6902094,1,0,-9,34,0,-5,73.954849,0,0,0,73,2,4,3,-9,-9,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3208609,0,3,41.049999,43.639999,58.990002,41.57,4,1,1,0,0,7,2,1,408.5,799358.44,0,0,2086.395 -7697,9485,17307,17308,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,4,0,7.709703,7.5282941,1,0,-9,40,0,7,8.7119884,0,0,0,73,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9607201,7.5652466,1.8612379,3,56.259998,53.709999,60.279999,46.439999,6,1,1,0,0,6,4,1,276,873334.5,0,0,3565.5747 -7697,9485,17308,17307,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,7.9610848,8.0660439,1,0,-9,40,0,-7,32.62447,0,0,0,80,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8538895,7.8241286,0,0,60.279999,46.439999,56.259998,53.709999,7,1,1,0,0,6,4,1,276,873334.5,0,0,3565.5747 -7698,9486,17309,17310,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,8.572772,8.2559175,1,0,-9,44,0,0,-53.761536,0,0,0,74,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6979573,8.4711065,0,0,60.119999,54.799999,46.73,54.330002,6,1,1,0,0,2,5,1,406,1747725.3,0,0,6427.666 -7698,9486,17310,17309,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,8.1076488,8.4707985,1,0,-9,44,0,0,-135.09229,0,0,0,74,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0606909,0,0,46.73,54.330002,60.119999,54.799999,6,1,1,0,0,2,5,1,406,1747725.3,0,0,6427.666 -7699,9487,17311,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1147.3236,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.720001,23.299999,-9,-9,7,1,1,0,0,12,1,0,650,359759.56,0,0,1199.9429 -7700,9488,17312,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-978.00671,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.439999,23.290001,-9,-9,4,1,1,0,1,7,1,0,108,36097.488,0,0,146.5049 -7701,9489,17313,17314,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.5208492,8.5774584,1,0,-9,10,0,-8,-12.113318,0,0,0,72,1,3,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3871927,8.342762,3.0823555,3,57.16,56.150002,58.5,44.669998,6,1,1,0,0,13,5,1,840.5,1295534.9,0,0,5687.5332 -7701,9489,17314,17313,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,8.2483797,8.5114241,1,0,-9,10,0,8,-101.8501,0,0,0,64,1,4,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4871955,8.1404591,9.6595984,3,58.5,44.669998,57.16,56.150002,7,1,1,0,0,13,5,1,840.5,1295534.9,0,0,5687.5332 -7702,9490,17315,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,4,9.0246096,8.8838816,0,3,0,0,0,-9,0,-957.07635,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,43,15,1,0,-9,0,24.254072,24.254072,0,0,0,0,0,0,0,0,0,0,0,3.3311074,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,5,1,527,46789.559,0,0,2372.8801 -7703,9491,17316,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-925.59961,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,-9,-9,6,1,1,0,0,12,1,0,637,204822.41,0,0,1317.3966 -7704,9492,17317,17318,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,9.148324,9.0050898,0,1,0,-9,4,0,4,-79.559158,0,0,0,30,1,5,1,2,2,2019,1,2,10,2,39,39,15,1,0,1,0,22.327242,22.327242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,54.099998,59.110001,6,1,1,0,0,9,5,1,513,507183.25,0,0,5361.9189 -7704,9492,17318,17317,-9,-9,2,1,0,30,1,0,0,0,1,1,2,1,0,0,5,8.9004364,8.8997097,0,1,0,-9,4,0,-4,30.827986,-9,0,1,34,1,4,1,-9,-9,2019,1,1,7,0,39,0,15,1,0,1,0,18.909283,18.909283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,52.43,55.57,6,4,2,0,0,9,5,1,513,507183.25,0,0,5361.9189 -7705,9493,17319,-9,17321,17320,4,1,0,12,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.92114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,5,0,0,7,5,0,439.83334,658603.63,0,0,7267.9946 -7705,9493,17320,17321,-9,-9,1,1,1,48,1,1,4,0,1,-9,2,1,0,0,4,9.6780243,9.8546696,0,2,0,-9,16,0,11,-14.076326,0,0,0,37,1,4,3,1,1,2019,2,2,9,1,40,38,15,1,0,3,0,45.374378,45.374378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48,56,6,4,5,0,0,7,5,0,439.83334,658603.63,0,0,7267.9946 -7705,9493,17321,17320,-9,-9,2,1,0,37,1,1,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,-11,-48.317959,0,0,1,48,1,4,1,2,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,52,55,5,4,5,0,1,7,5,0,439.83334,658603.63,0,0,7267.9946 -7705,9493,17322,-9,17321,17320,3,1,0,14,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1042.6959,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,7,5,0,439.83334,658603.63,0,0,7267.9946 -7705,9493,17323,-9,17321,17320,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.17969,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,5,0,0,7,5,0,439.83334,658603.63,0,0,7267.9946 -7705,9493,17324,-9,17321,17320,5,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.5411,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,5,0,0,7,5,0,439.83334,658603.63,0,0,7267.9946 -7706,9494,17325,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,8.3414631,8.5245495,0,3,0,0,0,-9,0,-1085.4395,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,1,45,40,15,1,0,-9,0,12.731361,12.731361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,58.290001,-9,-9,6,1,1,0,0,12,4,1,656,211320.55,0,0,2406.8462 -7707,9495,17326,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1113.5117,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,1,8,1,0,116,-10471.868,0,0,1338.3914 -7708,9496,17327,-9,17329,17330,2,1,0,18,2,0,2,1,2,0,7,2,0,0,3,7.2593641,7.1447539,0,3,0,0,0,-9,0,-1002.9264,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.200001,52.310001,-9,-9,6,4,2,0,0,8,4,0,239,-223013.89,0,0,236.76433 -7708,9497,17328,-9,17329,17330,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1162.3002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,0,417.33334,235944.55,0,0,4245.7725 -7708,9497,17329,17330,-9,-9,1,1,0,46,1,0,2,0,2,-9,1,1,0,0,3,8.7365637,8.2963896,0,2,0,-9,8,0,-4,104.64632,0,0,0,50,2,2,1,-9,-9,2019,1,4,6,0,35,37,15,1,0,1,0,18.263088,18.263088,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.330002,53.459999,46.900002,36.799999,6,1,1,0,0,8,4,0,417.33334,235944.55,0,0,4245.7725 -7708,9497,17330,17329,-9,-9,4,1,1,50,1,0,2,0,2,-9,2,1,0,1,2,8.1067667,8.4933844,0,2,0,-9,8,0,4,13.012383,0,0,0,46,2,3,1,-9,-9,2019,1,1,10,1,57,56,15,1,0,1,0,5.9716258,5.9716258,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.900002,36.799999,57.330002,53.459999,4,4,2,0,0,8,4,0,417.33334,235944.55,0,0,4245.7725 -7709,9498,17331,17332,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,8.3149252,8.5617838,7.9183874,1,0,-9,37,0,-6,40.394196,0,0,0,69,3,2,3,3,3,2019,2,1,6,0,25,0,15,1,0,4,0,20.084837,20.084837,0,0,0,0,0,0,0,7,1,1,0,4.7953134,7.9861836,4.6043301,3,57.93,46.290001,69.489998,15.42,6,1,1,0,0,8,4,0,1616,602774.5,0,0,2410.165 -7709,9498,17332,17331,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,1,2,0,3.5911577,3.8160498,1,0,-9,37,0,6,51.529816,0,0,0,63,2,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,7,1,1,0,3.6199486,3.5672863,.4293775,3,69.489998,15.42,57.93,46.290001,5,1,1,0,0,8,4,0,1616,602774.5,0,0,2410.165 -7710,9499,17333,17334,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,5,0,5.0491037,5.2498865,1,0,-9,52,0,3,79.501732,0,0,0,71,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1122277,5.1668868,0,0,58.049999,54.52,57.27,41.150002,6,1,1,0,0,11,2,1,2377.5,490218.88,0,0,2043.177 -7710,9499,17334,17333,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.4820418,5.3779917,1,0,-9,52,0,-3,29.585171,0,0,0,74,2,5,3,3,3,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4863038,0,0,57.27,41.150002,58.049999,54.52,6,1,1,0,0,11,2,1,2377.5,490218.88,0,0,2043.177 -7711,9500,17335,-9,-9,-9,1,1,1,21,2,0,0,0,2,1,2,1,0,0,5,5.6479855,5.5792093,0,3,0,0,0,-9,0,-1013.9268,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,12,0,15,1,0,-9,0,3.230149,3.230149,0,0,0,0,0,0,0,2,1,1,0,0,0,.89888936,3,57.060001,57.759998,-9,-9,7,3,4,0,0,6,2,1,405,0,0,0,705.24451 -7712,9501,17336,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,2,8.9689302,8.8029728,0,3,0,0,0,-9,0,-943.26263,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,35,15,1,0,-9,0,24.775259,24.775259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.689999,-9,-9,5,1,1,0,0,13,5,1,322,645731.56,0,0,2407.6799 -7713,9502,17337,-9,17338,17339,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.1863,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,1486.25,458317.41,0,0,4984.8174 -7713,9502,17338,17339,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,8.1514807,8.1753998,0,2,0,-9,10,0,1,-20.782673,0,0,1,43,1,4,1,2,2,2019,1,1,9,1,25,23,15,1,0,1,0,20.980114,20.980114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.990002,48.040001,27.34,64.589996,6,1,1,0,0,9,5,1,1486.25,458317.41,0,0,4984.8174 -7713,9502,17339,17338,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.4276218,9.2769337,0,2,0,-9,10,0,-1,83.760109,0,0,0,44,2,3,1,2,3,2019,1,2,24,11,68,120,15,1,1,1,0,20.344856,20.344856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.34,64.589996,53.990002,48.040001,3,1,1,0,0,9,5,1,1486.25,458317.41,0,0,4984.8174 -7713,9502,17340,-9,17338,17339,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.50818,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1486.25,458317.41,0,0,4984.8174 -7714,9503,17341,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-968.23505,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.120003,28.360001,-9,-9,6,1,1,0,1,7,1,1,257,104936.3,0,0,703.03058 -7715,9504,17342,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,5,0,7.9256968,7.5896778,3,0,0,0,-9,0,-951.10913,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8623061,7.4376736,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,2,3,1,269,731446.38,0,0,1427.1851 -7716,9505,17343,17344,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,0,3,8.6311073,8.583107,0,1,0,-9,9,0,-8,-97.144569,0,0,0,54,1,4,1,1,1,2019,1,2,12,0,38,38,15,1,0,1,0,20.037998,20.037998,0,0,0,0,0,0,0,0,0,0,0,6.4638095,0,0,0,54.959999,53.169998,50.82,52.43,6,1,1,0,0,7,5,1,736.5,2335085.5,0,0,6212.9043 -7716,9505,17344,17343,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.3562489,9.5002632,0,1,0,-9,9,0,8,18.239103,0,0,0,46,1,3,1,1,1,2019,1,1,9,1,39,39,15,1,0,1,0,34.602165,34.602165,0,0,0,0,0,0,0,0,0,0,0,6.1034126,0,0,0,50.82,52.43,54.959999,53.169998,6,1,1,0,0,7,5,1,736.5,2335085.5,0,0,6212.9043 -7717,9506,17345,17346,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,10,0,5,62.944084,0,0,0,60,2,2,1,3,3,2019,3,2,14,2,0,0,15,4,0,1,0,0,0,1,0,6.7309322,0,0,0,0,0,1,1,0,0,0,0,0,44.490002,37.849998,39.619999,31.99,5,4,5,0,0,6,4,0,831.5,177344.16,0,0,3189.4978 -7717,9506,17346,17345,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,8.6213198,8.6049118,4.8765121,1,0,-9,10,0,-5,145.9379,0,0,0,65,2,2,3,3,3,2019,2,1,15,3,52,45,15,1,0,4,0,10.504272,10.504272,0,0,0,0,0,0,0,27.5,1,1,0,0,5.5304708,34.562531,1,39.619999,31.99,44.490002,37.849998,4,1,1,0,0,6,4,0,831.5,177344.16,0,0,3189.4978 -7718,9507,17347,-9,-9,-9,1,1,0,91,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1046.0883,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,14.141817,0,0,0,0,85.2146,0,1,1,0,5.3345494,0,0,0,54,44,-9,-9,6,1,1,0,0,13,1,0,222,0,0,0,1274.6191 -7719,9508,17348,17349,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,7.8914003,8.6029062,7.4539065,1,0,-9,9,0,0,-154.83209,0,0,0,57,2,3,3,-9,-9,2019,2,1,12,0,55,56,15,1,0,4,0,8.6557417,8.6557417,0,0,0,0,0,0,0,0,1,1,0,0,7.1719933,0,0,44.740002,48.369999,34.209999,51.939999,4,1,1,0,0,5,4,1,2941,1098954,0,0,2553.1382 -7719,9508,17349,17348,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,0,3,0,6.5663762,6.6526194,1,0,-9,40,0,0,39.118114,0,0,0,57,2,3,1,3,-9,2019,3,2,18,6,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7698841,6.8921638,3,34.209999,51.939999,44.740002,48.369999,5,1,1,0,0,5,4,1,2941,1098954,0,0,2553.1382 -7720,9509,17350,17351,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,3,0,5.5196323,5.6630969,1,0,-9,64,0,2,11.76302,0,0,0,83,3,2,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5872355,5.4309273,0,0,54,46,38.41,48.91,6,1,1,0,0,4,2,1,1447.5,76097.266,0,0,1879.4949 -7720,9509,17351,17350,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,64,0,-2,11.003414,0,0,0,85,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,117.76079,1,38.41,48.91,54,46,5,1,1,0,0,4,2,1,1447.5,76097.266,0,0,1879.4949 -7721,9510,17352,-9,-9,-9,2,1,1,48,2,0,1,0,2,-9,2,1,0,0,5,7.8255758,7.8510265,0,4,0,0,0,-9,0,-1100.5343,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,45,0,15,1,0,-9,0,6.4131479,6.4131479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.720001,55.580002,-9,-9,5,3,4,0,0,8,3,1,253,-110953.41,0,0,840.33081 -7722,9511,17353,17356,-9,-9,2,1,1,56,1,0,2,0,2,-9,2,1,0,0,2,8.5209265,8.4845467,0,2,0,-9,11,0,17,-102.8148,0,0,0,39,1,3,1,2,3,2019,1,1,17,5,24,36,15,1,1,1,0,25.158657,25.158657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.860001,51.77,37.59,51.939999,1,1,1,0,0,4,4,1,419.5,300282.25,0,0,2625.4458 -7722,9511,17354,-9,17356,17353,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.1014,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,4,1,419.5,300282.25,0,0,2625.4458 -7722,9511,17355,-9,17356,17353,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.8691,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,419.5,300282.25,0,0,2625.4458 -7722,9511,17356,17353,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,8.1142721,7.757823,0,2,0,-9,11,0,-17,-133.25211,0,0,1,56,2,2,1,1,2,2019,1,2,7,0,27,22,15,1,0,1,0,12.444777,12.444777,0,0,0,0,0,0,0,0,1,1,0,.18871595,0,0,0,37.59,51.939999,31.860001,51.77,6,1,1,0,0,4,4,1,419.5,300282.25,0,0,2625.4458 -7723,9512,17357,17358,-9,-9,2,1,0,49,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,34,0,-15,0,0,0,0,64,2,2,3,3,3,2019,4,1,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.790001,26.24,39.740002,41.689999,2,2,3,1,1,8,1,0,543,433327.69,0,0,2521.9443 -7723,9512,17358,17357,-9,-9,1,1,1,64,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,34,0,15,0,0,0,0,49,2,1,3,3,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.740002,41.689999,28.790001,26.24,3,2,3,1,1,8,1,0,543,433327.69,0,0,2521.9443 -7723,9513,17359,-9,17357,17358,4,1,0,25,2,0,0,0,1,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1022.705,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,43,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.43,59.209999,-9,-9,4,2,3,0,0,8,1,0,1843,-176315.36,0,0,0 -7724,9514,17360,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,4.5211034,4.861443,3,0,-9,0,1,0,-1084.5641,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5313272,4.8244171,9.6756611,3,61.040001,39.41,-9,-9,6,1,1,0,0,1,2,1,842,419276.16,0,0,-780.83386 -7725,9515,17361,17363,-9,17364,1,1,1,34,1,1,1,0,1,-9,2,1,0,0,3,8.2667341,8.1967602,0,2,0,-9,6,0,5,-115.23884,0,0,0,29,2,4,3,3,3,2019,2,3,14,2,38,37,15,1,0,3,0,10.336972,10.336972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,51.32,55.189999,54.259998,3,2,3,0,0,6,3,1,760,199661.19,0,0,1703.7629 -7725,9515,17362,-9,17363,17361,4,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-948.05969,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,6,3,1,760,199661.19,0,0,1703.7629 -7725,9515,17363,17361,-9,-9,3,1,0,29,1,1,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,-5,31.93651,0,1,1,34,1,3,1,-9,-9,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,41.23,51.32,6,2,3,1,0,6,3,1,760,199661.19,0,0,1703.7629 -7725,9516,17364,-9,-9,-9,2,1,1,76,3,1,1,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1026.7205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.285604,0,0,0,53,46,-9,-9,6,2,3,0,0,6,1,1,706,199264.03,0,0,935.0741 -7726,9517,17365,17366,-9,-9,1,1,1,25,1,0,1,0,2,-9,2,1,0,0,4,7.2393775,7.1824288,0,2,0,-9,3,0,1,-21.737453,0,1,0,24,2,5,3,-9,-9,2019,2,2,9,1,24,16,15,1,0,3,0,6.8756685,6.8756685,0,0,0,0,0,0,0,7,1,1,0,0,0,3.0066514,3,51.830002,57.200001,46.849998,57.369999,5,1,1,0,0,4,2,0,176.33333,-11007.338,0,0,1447.3263 -7726,9517,17366,17365,-9,-9,2,1,0,24,1,0,1,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,3,0,-1,-111.53747,0,1,1,25,2,4,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.849998,57.369999,51.830002,57.200001,6,1,1,0,0,4,2,0,176.33333,-11007.338,0,0,1447.3263 -7726,9517,17367,-9,17366,17365,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.0935,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,176.33333,-11007.338,0,0,1447.3263 -7727,9518,17368,17369,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.4048004,7.4698305,1,0,1,1,-9,16,75.189751,0,0,0,54,1,4,1,2,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5314188,7.72438,0,0,57.330002,53.459999,50,56.639999,6,1,1,0,0,9,5,1,487,3852016.5,0,0,4779.1255 -7727,9518,17369,17368,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.9761419,8.8714437,0,1,0,-9,1,-9,-16,-17.344204,-9,0,0,70,2,3,3,-9,-9,2019,2,1,9,0,37,0,15,1,0,4,0,24.871391,24.871391,0,0,0,0,0,0,0,0,1,1,0,7.5212994,0,0,0,50,56.639999,57.330002,53.459999,5,1,1,0,0,9,5,1,487,3852016.5,0,0,4779.1255 -7728,9519,17370,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,2,8.2202539,8.0758982,0,3,0,0,0,-9,0,-957.67865,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,44,24,15,1,0,-9,0,7.8992281,7.8992281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.57,42.369999,-9,-9,4,1,1,0,1,10,4,0,302,424225.16,0,0,562.06122 -7728,9520,17371,-9,17370,-9,2,1,1,20,2,0,0,0,2,1,2,1,0,0,4,7.1035724,7.1610899,0,3,0,0,0,-9,0,-1053.4022,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,39,0,15,1,0,-9,1,3.5257988,3.5257988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,10,3,0,2564,35709.145,0,0,-852.46527 -7729,9521,17372,17373,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,8.1189547,8.0801506,1,0,-9,31,0,4,60.118484,0,0,0,72,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0839069,7.8509426,0,0,57.919998,51.82,57.16,56.150002,6,1,1,0,0,4,3,1,768.5,626207.31,0,0,1971.0554 -7729,9521,17373,17372,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,31,0,-4,-29.306601,0,0,0,76,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6182237,0,0,0,57.16,56.150002,57.919998,51.82,7,1,1,0,0,4,3,1,768.5,626207.31,0,0,1971.0554 -7730,9522,17374,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,2,1,0,0,3,7.6636548,7.2173886,0,1,0,-9,4,0,15,39.898346,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,21,9,35,44,15,1,1,-9,0,6.1045747,6.1045747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.66,27.15,39.330002,58.880001,3,1,1,0,0,12,4,1,821,-85647.047,0,0,397.43005 -7730,9523,17375,-9,-9,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,8.5647726,8.4456692,0,1,0,-9,4,0,-15,-46.376514,0,0,1,-9,-9,-9,-9,3,2,2019,1,1,12,0,42,42,15,1,0,-9,0,12.898275,12.898275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.330002,58.880001,52.66,27.15,6,1,1,0,1,12,4,1,386,11141.757,0,0,1926.094 -7731,9524,17376,17377,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,0,5,8.9858665,9.082571,0,2,0,-9,6,0,2,65.022118,0,0,0,28,1,3,1,2,2,2019,1,2,7,0,67,57,15,1,0,1,0,15.248841,15.248841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,35.860001,58.139999,7,1,1,0,0,5,5,1,759.66669,174196.33,0,0,3810.9683 -7731,9524,17377,17376,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,0,3,7.7582884,8.0984192,0,2,0,-9,6,0,-2,68.105492,0,1,1,30,2,5,1,2,2,2019,1,1,9,1,49,47,15,1,0,1,0,6.3249564,6.3249564,0,0,0,0,0,0,0,7,1,1,0,0,0,6.3948927,3,35.860001,58.139999,54.689999,57.470001,5,1,1,0,0,5,5,1,759.66669,174196.33,0,0,3810.9683 -7731,9524,17378,-9,17377,17376,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1173.6708,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,759.66669,174196.33,0,0,3810.9683 -7732,9525,17379,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,4,0,6.8862786,6.5907712,3,0,0,0,-9,0,-996.41113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8546462,6.8596144,0,0,61.02,42.099998,-9,-9,6,1,1,0,0,11,2,1,561,222346.75,0,0,-183.55296 -7733,9526,17380,17381,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,3.540467,3.6825218,1,0,-9,28,0,-2,-30.866447,0,0,0,71,2,4,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2095649,3.5530672,0,0,48.32,40.290001,57.07,49.389999,7,1,1,0,0,7,2,1,199.5,696102.38,0,0,2729.1753 -7733,9526,17381,17380,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,6.7490115,7.2858357,1,0,-9,29,0,2,55.827293,0,0,0,69,3,2,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4150209,6.7765517,0,0,57.07,49.389999,48.32,40.290001,6,1,1,0,0,7,2,1,199.5,696102.38,0,0,2729.1753 -7734,9527,17382,17383,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,8.5704165,8.2860479,0,1,0,-9,31,0,5,-59.304455,0,0,0,54,2,3,1,1,3,2019,1,2,12,1,37,33,15,1,0,1,0,16.857347,16.857347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.439999,42.990002,49.689999,52.990002,4,1,1,0,0,5,5,1,765,680390.44,0,0,5041.6362 -7734,9527,17383,17382,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.4224243,8.3401918,0,1,0,-9,9,0,-5,41.174606,0,0,0,59,2,3,1,2,2,2019,1,1,9,0,37,43,15,1,0,1,0,13.215273,13.215273,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.7735691,3,49.689999,52.990002,50.439999,42.990002,6,1,1,0,0,5,5,1,765,680390.44,0,0,5041.6362 -7734,9528,17384,-9,17383,17382,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,8.2750034,8.0471544,0,3,0,0,0,-9,0,-1052.1949,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,38,40,15,1,0,-9,1,7.8401537,7.8401537,0,0,0,0,0,0,0,0,0,0,0,3.0989292,0,0,0,46.630001,59.720001,-9,-9,6,1,1,0,0,5,4,1,218,5868.5723,0,0,1772.9197 -7735,9529,17385,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,2,8.070507,8.0792036,0,3,0,0,0,-9,0,-953.32288,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,12,40,39,15,1,1,-9,0,11.654302,11.654302,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,12.26,57.09,-9,-9,2,1,1,0,0,2,4,0,98,555658.56,0,0,1804.274 -7736,9530,17386,17387,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-1,-54.487751,0,0,0,71,2,5,3,-9,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5442028,0,.97989368,3,56.349998,51.16,62.389999,56.709999,6,1,1,0,0,8,3,1,804,1399823.5,0,0,5766.8613 -7736,9530,17387,17386,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,7.9044819,8.1442881,1,0,-9,50,0,1,116.10851,0,0,0,70,3,3,3,-9,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.647254,7.9970069,.91719401,3,62.389999,56.709999,56.349998,51.16,7,1,1,0,0,8,3,1,804,1399823.5,0,0,5766.8613 -7737,9531,17388,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,3,7.5800996,8.1149702,7.1590719,4,0,0,0,-9,0,-1038.6809,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,28,29,15,1,0,-9,0,6.1473837,6.1473837,0,0,0,0,0,0,0,0,1,1,0,7.0263305,0,0,0,38.759998,58.16,-9,-9,6,1,1,0,0,5,3,1,269,-146742.88,0,0,2179.0984 -7737,9532,17389,-9,17388,-9,2,1,0,23,2,0,2,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-899.33435,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.860001,55.639999,-9,-9,6,1,1,1,0,5,1,1,362,-243450.42,0,0,0 -7738,9533,17390,-9,-9,-9,1,1,1,76,2,0,0,0,3,-9,4,3,0,1,3,0,5.5441289,5.371686,3,0,0,0,-9,0,-949.76312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,.50716102,0,0,0,0,42.163261,0,1,1,0,5.6529651,5.62289,0,0,52,47,-9,-9,5,1,1,0,0,13,2,1,82,114647.75,0,0,514.49121 -7739,9534,17391,17392,-9,-9,2,1,1,67,1,0,0,0,1,-9,2,1,0,0,5,8.1041832,9.4157562,8.7753553,1,0,-9,7,0,8,-75.982018,0,0,0,59,1,5,3,-9,-9,2019,2,1,8,0,0,25,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2034388,9.4794931,0,0,58.049999,54.52,41.07,60.93,7,1,1,0,0,10,5,1,543.5,2812192.5,0,0,9053.4336 -7739,9534,17392,17391,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,26,0,-8,-108.15392,0,0,0,67,1,5,1,1,1,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8442006,0,5.7811031,3,41.07,60.93,58.049999,54.52,7,1,1,0,0,10,5,1,543.5,2812192.5,0,0,9053.4336 -7740,9535,17393,17394,-9,-9,1,1,0,86,1,0,0,0,2,-9,2,1,0,0,3,0,4.0308781,4.2639956,1,0,-9,67,0,0,90.955582,0,0,0,86,3,3,1,3,3,2019,1,2,10,1,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,4.1942949,4.423193,0,0,53,44,45.740002,40.98,6,1,1,0,0,5,1,1,582.5,-74176.141,0,0,408.2793 -7740,9535,17394,17393,-9,-9,2,1,1,86,1,0,0,0,3,-9,1,1,0,0,3,0,0,4.2185802,1,0,-9,68,0,0,-57.771877,0,0,0,86,2,3,1,3,3,2019,1,1,15,5,84,0,15,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,3.9893157,4.0507212,0,0,45.740002,40.98,53,44,5,1,1,0,0,5,1,1,582.5,-74176.141,0,0,408.2793 -7741,9536,17395,17396,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,9.2754879,9.0445786,0,1,0,-9,41,0,1,73.468246,0,0,0,61,2,3,3,2,3,2019,2,1,13,2,90,46,15,1,0,3,0,10.878355,10.878355,0,0,0,0,0,0,0,2,1,1,0,0,0,7.7244463,3,51.02,52.220001,33.66,53.540001,6,1,1,0,0,12,5,1,861.5,996940.13,0,0,2463.9473 -7741,9536,17396,17395,-9,-9,1,1,0,61,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,41,0,-1,-38.803131,0,0,0,62,2,3,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,53.540001,51.02,52.220001,5,1,1,0,0,12,5,1,861.5,996940.13,0,0,2463.9473 -7742,9537,17397,17398,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,8.7917948,8.7863722,0,2,0,-9,26,0,0,7.4445653,0,0,0,48,2,3,1,3,2,2019,1,2,7,0,40,37,15,1,0,1,0,17.763924,17.763924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49.52,56.950001,6,1,1,0,0,10,4,1,601.5,567877.38,0,0,4663.6631 -7742,9537,17398,17397,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,7.7319093,7.5985823,0,2,0,-9,26,0,0,50.728893,0,0,0,48,1,4,1,2,2,2019,1,1,12,0,17,25,15,1,0,1,0,9.9980888,9.9980888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.950001,57.16,56.150002,4,1,1,0,0,10,4,1,601.5,567877.38,0,0,4663.6631 -7743,9538,17399,17400,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,4.3834891,4.3949947,1,0,-9,7,0,1,38.348232,0,0,0,65,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3144035,4.4729967,0,0,52,48,53.5,51.02,5,1,1,0,0,9,2,1,335,532744.56,0,0,2168.064 -7743,9538,17400,17399,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,3,7.4695392,7.2331491,0,1,0,-9,26,0,-1,-3.3777087,0,0,0,66,2,3,3,2,2,2019,2,2,11,0,18,22,15,1,0,4,0,8.957243,8.957243,0,0,0,0,0,0,0,0,1,1,0,2.657876,0,0,0,53.5,51.02,52,48,6,1,1,0,0,9,2,1,335,532744.56,0,0,2168.064 -7744,9539,17401,-9,17404,17403,2,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.01984,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,836.75,1020056.2,0,0,8834.3203 -7744,9539,17402,-9,17404,17403,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.8763,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,836.75,1020056.2,0,0,8834.3203 -7744,9539,17403,17404,-9,-9,4,1,1,40,1,0,2,0,1,-9,2,1,0,0,4,8.8834858,9.199791,0,2,0,-9,2,0,4,-128.45737,-9,0,0,36,1,3,1,-9,-9,2019,1,1,9,1,35,0,15,1,0,1,0,24.665352,24.665352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,54.23,49.599998,5,1,1,0,0,8,5,1,836.75,1020056.2,0,0,8834.3203 -7744,9539,17404,17403,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,9.5846853,9.4923,0,2,0,-9,2,0,-4,-156.17218,0,0,1,40,1,4,1,1,1,2019,1,4,1,0,35,35,15,1,0,1,0,42.700993,42.700993,0,0,0,0,0,0,0,2,0,0,0,8.6881571,0,5.6826448,3,54.23,49.599998,52,56,6,1,1,0,0,8,5,1,836.75,1020056.2,0,0,8834.3203 -7745,9540,17405,-9,17407,17406,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.6484,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,4,1,877.66669,141684.23,0,0,2995.4873 -7745,9540,17406,17407,-9,-9,2,1,1,39,1,1,1,0,1,1,2,1,0,0,4,8.2529449,8.1822596,0,2,0,-9,8,0,0,-35.936714,-9,0,0,39,1,4,1,-9,-9,2019,1,1,11,1,38,0,15,1,0,1,0,11.133753,11.133753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,4,4,1,877.66669,141684.23,0,0,2995.4873 -7745,9540,17407,17406,-9,-9,1,1,0,39,1,1,1,0,1,-9,2,1,0,0,4,8.2489014,8.2169876,0,2,0,-9,8,0,0,41.014973,0,0,1,39,1,4,1,2,1,2019,1,2,5,0,30,53,15,1,0,1,0,15.809128,15.809128,0,0,0,0,0,0,0,0,0,0,0,2.889087,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,4,4,1,877.66669,141684.23,0,0,2995.4873 -7746,9541,17408,17409,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,2,8.5437279,8.5070753,0,1,0,-9,29,0,0,-9.9849968,0,0,0,46,2,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,13.291673,13.291673,0,0,0,0,0,0,0,0,0,0,0,7.0591488,0,0,0,53.380001,41.98,53,55,6,1,1,0,0,10,4,1,713,-159229.06,0,0,3463.4246 -7746,9541,17409,17408,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,6,0,0,-64.996147,0,0,0,46,3,2,1,-9,-9,2019,1,1,9,1,60,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,53.380001,41.98,6,1,1,0,0,10,4,1,713,-159229.06,0,0,3463.4246 -7746,9542,17410,-9,17408,17409,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.4245653,8.4785748,0,3,0,0,0,-9,0,-1025.516,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,37,15,1,0,-9,1,12.354601,12.354601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,10,4,1,328,24031.541,0,0,2596.7327 -7746,9543,17411,-9,17408,17409,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.993494,8.1432114,0,3,0,0,0,-9,0,-993.91125,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,8.5609922,8.5609922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,10,4,1,5037,162098.92,0,0,1485.9749 -7747,9544,17412,17413,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,41,0,-1,-145.94183,0,0,0,60,1,4,1,2,1,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0814114,0,0,0,46.529999,61.330002,44.59,59.080002,6,1,1,0,0,10,5,1,1055,424802.94,0,0,4411.3921 -7747,9544,17413,17412,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,9.0655117,8.9886541,0,1,0,-9,40,0,1,33.720364,0,0,0,59,1,5,3,2,3,2019,2,2,17,7,35,25,15,1,1,4,0,34.118458,34.118458,0,0,0,0,0,0,0,0,0,0,0,3.3428254,0,0,0,44.59,59.080002,46.529999,61.330002,6,1,1,0,0,10,5,1,1055,424802.94,0,0,4411.3921 -7748,9545,17414,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,0,4,7.7901764,7.7570457,0,4,0,0,0,-9,0,-949.1601,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,30,15,1,0,-9,0,10.164893,10.164893,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,60.77,-9,-9,6,2,3,0,0,6,3,1,441,58821.047,0,0,2463.4995 -7749,9546,17415,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,5.0942111,5.0349598,3,0,0,0,-9,0,-1033.0591,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0478058,4.9645343,0,0,48.349998,47.740002,-9,-9,6,1,1,0,0,9,2,1,931,312384.41,0,0,1694.2896 -7750,9547,17416,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,5,8.9885225,8.7576971,0,3,0,0,0,-9,0,-851.06555,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,49,15,1,0,-9,0,15.667946,15.667946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,11,5,0,359,118679.8,0,0,2330.9038 -7751,9548,17417,17418,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,7.2729511,7.7811494,1,0,-9,8,0,-2,14.828441,0,0,0,65,2,3,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7223468,0,0,53.220001,50.02,50,44.48,5,1,1,0,0,8,4,1,2419,1530325,0,0,3967.3701 -7751,9548,17418,17417,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.8406754,7.8211312,1,0,-9,27,0,2,-23.671946,0,0,0,63,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1846328,7.6661081,0,0,50,44.48,53.220001,50.02,6,1,1,0,0,8,4,1,2419,1530325,0,0,3967.3701 -7752,9549,17419,17420,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.0537319,7.8018303,0,1,0,-9,5,0,-2,-120.53275,0,0,0,58,3,4,1,2,2,2019,1,2,19,7,39,39,15,1,1,1,0,7.7013063,7.7013063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.24,50.34,56.18,53.849998,2,1,1,0,0,9,5,1,746.5,1494185.1,0,0,1859.6503 -7752,9549,17420,17419,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,4,8.3468952,8.6115198,0,1,0,-9,5,0,2,36.313618,0,0,0,56,2,3,1,-9,-9,2019,1,1,10,0,40,45,15,1,0,1,0,15.832046,15.832046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.849998,28.24,50.34,6,1,1,0,0,9,5,1,746.5,1494185.1,0,0,1859.6503 -7753,9550,17421,17422,-9,-9,2,1,1,50,1,0,0,0,2,-9,1,1,0,0,4,8.2623262,8.0717478,0,1,0,-9,9,0,2,67.918701,0,0,0,48,2,4,1,-9,-9,2019,1,1,6,0,45,40,15,1,0,1,0,8.1645432,8.1645432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,4,3,1,299,27620.066,0,0,1888.0535 -7753,9550,17422,17421,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,6.8743854,6.4224906,0,1,0,-9,29,0,-2,3.42816,0,0,0,50,2,4,1,2,2,2019,1,2,6,0,12,15,15,1,0,1,0,8.5087729,8.5087729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,4,3,1,299,27620.066,0,0,1888.0535 -7753,9551,17423,-9,17422,17421,3,1,0,21,2,0,0,0,2,0,7,2,0,0,5,6.7950592,6.46068,0,3,0,0,0,-9,0,-898.28918,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,6,2,3,0,0,4,2,1,3007,-189344.8,0,0,-278.84134 -7753,9552,17424,-9,17422,17421,4,1,1,23,2,0,0,0,2,-9,2,1,0,0,5,7.8889942,7.9014435,0,3,0,0,0,-9,0,-1224.0016,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,36,15,1,0,-9,1,7.4806333,7.4806333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.919998,41.849998,-9,-9,7,2,3,0,0,4,4,1,882,121106.89,0,0,1470.3141 -7754,9553,17425,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,2,0,3.3646679,3.4366205,3,0,0,0,-9,0,-1045.187,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.42257509,4.0591412,0,0,35.560001,24.49,-9,-9,2,1,1,0,0,6,2,1,293,20277.557,0,0,1236.0972 -7755,9554,17426,17427,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,8.221096,8.0421877,0,1,0,-9,2,0,-2,12.983599,0,0,0,43,1,4,1,3,2,2019,1,2,12,1,40,40,15,1,0,1,0,7.5891299,7.5891299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,55.790001,52.619999,5,1,1,0,0,7,5,1,278,587641.13,0,0,3357.0337 -7755,9554,17427,17426,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,0,4,9.0981798,9.0343952,0,1,0,-9,2,0,2,-2.8758533,0,0,1,41,2,3,1,-9,-9,2019,1,1,8,0,43,41,15,1,0,1,0,23.169445,23.169445,0,0,0,0,0,0,0,0,0,0,0,6.930131,0,0,0,55.790001,52.619999,52.990002,51.279999,6,1,1,0,0,7,5,1,278,587641.13,0,0,3357.0337 -7756,9555,17428,-9,17430,17429,3,1,0,12,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-885.89911,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,2,1,809,283959.34,0,0,2307.4966 -7756,9555,17429,17430,-9,-9,2,1,1,40,1,1,4,0,1,-9,2,1,0,0,2,7.7907138,8.1255627,5.3875594,2,0,-9,16,0,3,89.298431,0,0,0,37,2,4,1,2,2,2019,1,1,15,5,20,20,15,1,1,1,0,16.893845,16.893845,0,0,0,0,0,0,0,0,1,1,0,5.1136646,0,0,0,53.049999,18.379999,54.790001,55.860001,6,1,1,0,0,5,2,1,809,283959.34,0,0,2307.4966 -7756,9555,17430,17429,-9,-9,1,1,0,37,1,1,4,0,2,-9,1,1,0,0,4,5.9399829,5.9367285,0,2,0,-9,16,0,-3,51.084141,0,0,1,40,1,2,1,2,1,2019,1,2,7,0,6,6,15,1,0,1,0,9.4846287,9.4846287,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,53.049999,18.379999,6,1,1,0,0,5,2,1,809,283959.34,0,0,2307.4966 -7756,9555,17431,-9,17430,17429,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.2284,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,2,1,809,283959.34,0,0,2307.4966 -7756,9555,17432,-9,17430,17429,5,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.6659,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,2,1,809,283959.34,0,0,2307.4966 -7756,9555,17433,-9,17430,17429,4,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.7598,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,2,1,809,283959.34,0,0,2307.4966 -7757,9556,17434,-9,-9,-9,1,1,0,64,3,0,1,0,2,-9,4,3,0,0,3,0,5.9757953,5.7221675,4,0,0,0,-9,0,-1110.8507,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0175653,0,3,38.169998,59.790001,-9,-9,6,1,1,0,1,2,2,1,711,212789.58,0,0,86.390015 -7757,9557,17435,-9,17434,-9,2,1,0,39,3,0,1,0,1,-9,8,3,1,1,1,0,6.2318778,6.5150185,3,0,0,0,-9,0,-900.22803,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.4410486,0,78.798042,3,24.08,28.389999,-9,-9,6,1,1,0,1,2,2,1,675.5,-53344.672,0,0,1200.1212 -7757,9557,17436,-9,17435,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1020.3605,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,1,675.5,-53344.672,0,0,1200.1212 -7758,9558,17437,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,3,8.6701097,8.4906731,0,3,0,0,0,-9,0,-1078.6499,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,39,38,15,1,1,-9,0,15.756988,15.756988,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.77,35.75,-9,-9,6,1,1,0,0,8,5,1,378,233579.8,0,0,2570.8298 -7759,9559,17438,17440,-9,-9,1,1,1,41,1,0,2,0,3,-9,2,1,0,0,4,8.0755692,7.952858,0,2,0,-9,14,0,6,-6.9023333,0,0,0,35,1,3,1,2,2,2019,1,2,11,0,43,42,15,1,0,1,0,7.6777682,7.6777682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.169998,57.310001,40.18,55.919998,3,1,1,0,0,9,4,0,1127.75,256785.75,0,0,3023.4292 -7759,9559,17439,-9,17440,17438,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.1605,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,0,1127.75,256785.75,0,0,3023.4292 -7759,9559,17440,17438,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,0,3,8.1472635,8.1929626,0,2,0,-9,14,0,-6,48.785294,0,0,1,41,3,4,1,2,1,2019,1,1,12,0,27,21,15,1,0,1,0,14.041221,14.041221,0,0,0,0,0,0,0,0,1,1,0,3.2889392,0,0,0,40.18,55.919998,39.169998,57.310001,6,1,1,0,0,9,4,0,1127.75,256785.75,0,0,3023.4292 -7759,9559,17441,-9,17440,17438,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.9561,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,0,1127.75,256785.75,0,0,3023.4292 -7760,9560,17442,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.5492163,7.1646857,3,0,0,0,-9,0,-1067.5199,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8438158,7.2568555,5.032567,3,60.720001,47.630001,-9,-9,1,1,1,0,0,10,3,1,287,308843.59,0,0,705.58484 -7761,9561,17443,-9,-9,-9,1,1,1,35,2,0,0,0,3,-9,8,3,1,1,4,6.7775335,7.0635571,0,3,0,0,0,-9,0,-1079.1997,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,18.277956,3,44.529999,56.369999,-9,-9,2,4,2,0,0,4,2,1,833,128726.52,0,0,694.70013 -7762,9562,17444,-9,17445,17446,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1052.2162,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,975,204613.08,0,0,5425.3975 -7762,9562,17445,17446,-9,-9,1,1,0,33,1,1,1,0,1,-9,5,1,0,0,2,8.5615549,8.5184612,0,2,0,-9,7,0,0,48.677135,0,0,1,33,1,4,1,2,1,2019,1,2,13,1,35,45,15,1,0,1,0,20.781916,20.781916,0,0,0,0,0,0,0,0,0,0,0,4.5936546,0,0,0,52.650002,30.379999,50,57,6,1,1,0,0,9,5,1,975,204613.08,0,0,5425.3975 -7762,9562,17446,17445,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,4,9.1159935,8.8666658,0,2,0,-9,7,0,0,-45.512714,0,0,0,33,1,2,1,-9,-9,2019,1,1,10,1,38,38,15,1,0,1,0,27.439442,27.439442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,52.650002,30.379999,5,1,1,0,0,9,5,1,975,204613.08,0,0,5425.3975 -7763,9563,17447,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,4.8634534,5.1954184,3,0,0,0,-9,0,-1087.3627,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2220836,4.6043763,0,0,55.790001,52.619999,-9,-9,6,1,1,0,0,7,1,1,98,616610.5,0,0,455.85397 -7764,9564,17448,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,6.9666686,7.2343183,0,3,0,0,0,-9,0,-924.44971,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,21,20,15,1,0,-9,0,5.6043725,5.6043725,0,0,0,0,0,0,0,7,0,0,0,2.4739342,0,1.2190392,3,53.57,46.799999,-9,-9,6,1,1,0,0,10,3,1,1358,889361.75,0,0,1000.4399 -7764,9565,17449,-9,17448,-9,2,1,0,22,2,0,0,1,2,0,7,2,0,0,4,6.2083983,6.5500917,0,3,0,0,0,-9,0,-942.57874,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.039012156,0,0,0,49.119999,57.279999,-9,-9,6,1,1,0,0,10,2,1,404,70423.398,0,0,72.948647 -7764,9566,17450,-9,17448,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,0,3,7.2663755,7.5056477,0,3,0,0,0,-9,0,-1081.8033,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.93,46.290001,-9,-9,6,1,1,0,0,10,3,1,1739,88773.172,0,0,665.50824 -7765,9567,17451,17452,-9,-9,1,1,0,30,1,1,2,0,1,-9,5,1,0,0,4,7.6462402,7.796051,0,2,0,-9,6,0,-3,6.1568675,0,0,1,33,1,3,1,-9,-9,2019,1,2,12,2,22,21,15,1,0,1,0,14.16614,14.16614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,58.860001,49.630001,54.220001,6,1,1,0,0,7,4,1,571.75,548143.38,0,0,2813.6384 -7765,9567,17452,17451,-9,-9,2,1,1,33,1,1,2,0,1,-9,2,1,0,0,3,8.675107,8.3065596,0,2,0,-9,6,0,3,111.49477,0,0,0,30,1,4,1,-9,-9,2019,1,1,19,5,38,37,15,1,1,1,0,12.900527,12.900527,0,0,0,0,0,0,0,0,1,1,0,1.0133215,0,0,0,49.630001,54.220001,39.5,58.860001,5,3,4,0,0,7,4,1,571.75,548143.38,0,0,2813.6384 -7765,9567,17453,-9,17451,17452,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.31842,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,7,4,1,571.75,548143.38,0,0,2813.6384 -7765,9567,17454,-9,17451,17452,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.9637,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,7,4,1,571.75,548143.38,0,0,2813.6384 -7766,9568,17455,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-991.05707,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,18,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.437603,0,0,0,32.869999,34.57,-9,-9,1,1,1,0,0,10,1,1,910,304191.19,0,0,3412.6328 -7767,9569,17456,17457,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,6.8726764,6.9489985,0,1,0,-9,7,0,2,-15.554228,0,0,0,48,2,4,1,2,-9,2019,1,2,8,0,8,0,15,1,0,1,0,16.354034,16.354034,0,0,0,0,0,0,0,7,0,0,0,0,0,8.552969,3,60.119999,54.799999,41.130001,57.169998,6,1,1,0,0,9,5,1,860.5,191520.09,0,0,5064.3496 -7767,9569,17457,17456,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.9741335,8.9215508,0,1,0,-9,7,0,-2,-49.861881,0,0,0,50,2,4,1,2,3,2019,1,1,15,4,52,60,15,1,1,1,0,18.568766,18.568766,0,0,0,0,0,0,0,0,0,0,0,7.5072966,0,0,0,41.130001,57.169998,60.119999,54.799999,5,1,1,0,0,9,5,1,860.5,191520.09,0,0,5064.3496 -7767,9570,17458,-9,17456,17457,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.9609585,8.0312977,0,1,0,1,1,-9,-7,-103.42223,0,1,1,-9,-9,-9,-9,2,3,2019,1,5,11,1,39,35,15,1,0,-9,0,6.7207556,6.7207556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,48.700001,56.220001,5,1,1,0,0,9,3,1,424,-151468.22,0,0,1403.2167 -7767,9571,17459,-9,-9,-9,5,1,0,29,2,0,0,0,2,-9,1,1,0,0,3,7.0915933,7.2849636,0,1,0,-9,1,-9,7,-36.18322,-9,1,1,-9,-9,-9,-9,-9,-9,2019,1,3,9,0,35,0,15,1,0,-9,0,3.5363922,3.5363922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.700001,56.220001,59.43,49.68,6,1,1,0,0,9,3,1,569,-187448.13,0,0,116.52265 -7768,9572,17460,17461,-9,-9,1,1,0,41,1,0,2,0,1,-9,1,1,0,0,4,7.9207959,7.882863,5.7719479,2,0,-9,12,0,8,-106.74637,0,0,1,33,2,4,1,1,1,2019,1,2,12,2,20,20,15,1,0,1,0,12.118092,12.118092,0,0,0,0,0,0,0,0,1,1,0,5.9017863,0,0,0,36.369999,60.23,48.869999,58.549999,6,1,1,0,0,9,3,1,1107.25,13405.434,0,0,8389.9453 -7768,9572,17461,17460,-9,-9,2,1,1,33,1,0,2,0,2,-9,1,1,0,0,4,7.8209286,7.7715635,0,2,0,-9,12,0,-8,46.332455,0,0,0,41,1,4,1,1,1,2019,1,1,9,0,50,50,15,1,0,1,0,5.2355084,5.2355084,0,0,0,0,0,0,0,0,1,1,0,9.1847782,0,0,0,48.869999,58.549999,36.369999,60.23,5,1,1,0,0,9,3,1,1107.25,13405.434,0,0,8389.9453 -7768,9572,17462,-9,17460,17461,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.2632,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,1,1107.25,13405.434,0,0,8389.9453 -7768,9572,17463,-9,17460,17461,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.05756,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,3,1,1107.25,13405.434,0,0,8389.9453 -7769,9573,17464,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,6.0611739,6.5585175,3,0,0,0,-9,0,-1010.6296,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.01335,18.289968,3,48.459999,42.34,-9,-9,4,1,1,0,0,4,2,1,392,63702.465,0,0,2032.9435 -7770,9574,17465,17467,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,0,4,7.8950272,7.8172517,0,2,0,-9,6,0,-6,-.090311721,-9,0,0,57,2,4,1,-9,-9,2019,1,1,10,1,21,0,15,1,0,1,0,15.183613,15.183613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,53,58.75,51.279999,6,1,1,0,0,2,4,1,399.66666,457688.63,0,0,4381.1025 -7770,9574,17466,-9,17465,17467,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-888.45367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,4,6,0,0,2,4,1,399.66666,457688.63,0,0,4381.1025 -7770,9574,17467,17465,-9,-9,1,1,1,57,1,0,2,0,2,-9,2,1,0,1,4,8.5515471,8.8952541,0,2,0,-9,28,0,6,-87.761772,0,0,0,51,2,4,1,2,3,2019,1,2,5,1,50,50,15,1,0,1,0,15.024676,15.024676,0,0,0,0,0,0,0,42,1,1,0,0,0,46.962589,3,58.75,51.279999,52,53,5,1,1,0,0,2,4,1,399.66666,457688.63,0,0,4381.1025 -7771,9575,17468,17469,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,9.0934439,8.6670074,0,2,0,-9,15,0,4,-79.228729,0,0,0,46,2,4,1,2,2,2019,1,1,9,0,40,42,15,1,0,1,0,19.984619,19.984619,0,0,0,0,0,0,0,0,1,1,0,4.7930212,0,0,0,58.889999,48.599998,54.200001,57.490002,6,1,1,0,0,4,5,1,795.66669,266180.28,0,0,3995.2729 -7771,9575,17469,17468,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.4967518,7.3436313,0,2,0,-9,15,0,-4,-49.934181,0,0,0,50,2,3,1,3,2,2019,1,2,11,0,23,0,15,1,0,1,0,8.2813034,8.2813034,0,0,0,0,0,0,0,0,1,1,0,6.0244775,0,0,0,54.200001,57.490002,58.889999,48.599998,6,1,1,0,0,4,5,1,795.66669,266180.28,0,0,3995.2729 -7771,9575,17470,-9,17469,17468,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.6353,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,5,1,795.66669,266180.28,0,0,3995.2729 -7772,9576,17471,17472,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,4.993279,4.7469277,1,0,-9,52,0,-3,106.03988,0,0,0,72,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2202582,0,0,56.73,39.959999,61.799999,45.759998,7,1,1,0,0,4,2,1,586,407727.09,0,0,1815.0725 -7772,9576,17472,17471,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,5.6550145,5.3252263,1,0,-9,52,0,3,-7.6741223,0,0,0,69,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2881498,5.4291363,0,0,61.799999,45.759998,56.73,39.959999,7,1,1,0,0,4,2,1,586,407727.09,0,0,1815.0725 -7773,9577,17473,17474,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,53,0,-1,104.36603,0,0,0,77,1,5,3,-9,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.083926931,0,0,0,60.119999,54.799999,62.389999,56.709999,7,1,1,0,0,10,5,1,635.5,1826839.3,0,0,6675.1357 -7773,9577,17474,17473,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,5,0,9.332675,9.1651945,1,0,-9,53,0,1,-98.592476,0,0,0,76,3,4,3,-9,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.826396,9.1991777,0,0,62.389999,56.709999,60.119999,54.799999,7,1,1,0,0,10,5,1,635.5,1826839.3,0,0,6675.1357 -7774,9578,17475,-9,17476,17477,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.8534,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,1,601.33331,91107.93,0,0,2211.4233 -7774,9578,17476,17477,-9,-9,1,1,0,27,1,1,1,0,2,-9,2,1,0,0,3,7.209641,7.3262358,0,2,0,-9,7,0,-1,-9.9446611,0,1,1,28,2,4,1,2,2,2019,1,2,8,2,25,16,15,1,0,1,0,7.102704,7.102704,0,0,0,0,0,0,0,0,1,1,0,2.5121727,0,0,0,49.93,49.93,54.200001,57.490002,7,1,1,0,0,5,3,1,601.33331,91107.93,0,0,2211.4233 -7774,9578,17477,17476,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,0,4,8.0549078,7.8353696,0,2,0,-9,7,0,1,-74.085838,0,1,0,27,2,3,1,3,2,2019,1,1,8,0,50,52,15,1,0,1,0,7.2480998,7.2480998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,49.93,49.93,6,1,1,0,0,5,3,1,601.33331,91107.93,0,0,2211.4233 -7775,9579,17478,-9,17480,17479,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.2875,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,4,1,803.66669,8726.4961,0,0,3379.5862 -7775,9579,17479,17480,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,4,8.473628,8.5405645,0,2,0,-9,14,0,-6,-12.288092,0,0,0,48,2,3,1,2,2,2019,1,2,11,0,50,42,15,1,0,1,0,14.216499,14.216499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,43.959999,55.639999,4,1,1,0,0,7,4,1,803.66669,8726.4961,0,0,3379.5862 -7775,9579,17480,17479,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.9391899,8.0232964,0,2,0,-9,14,0,6,-106.36285,0,0,0,42,2,4,1,3,3,2019,1,1,19,7,38,38,15,1,1,1,0,8.3647327,8.3647327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.959999,55.639999,54.740002,57.220001,5,3,4,0,0,7,4,1,803.66669,8726.4961,0,0,3379.5862 -7776,9580,17481,17482,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,4,0,7.4187942,7.9529667,1,0,-9,9,0,1,-200.72194,0,0,0,82,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.4921947,7.667274,0,0,59.150002,49.669998,52,45,6,1,1,0,0,7,4,1,1451.5,556574.25,0,0,4140.1797 -7776,9580,17482,17481,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,3,0,7.9001746,8.090498,1,0,-9,9,0,-1,-127.40485,0,0,0,83,3,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7329655,7.9790382,0,0,52,45,59.150002,49.669998,6,1,1,0,0,7,4,1,1451.5,556574.25,0,0,4140.1797 -7777,9581,17483,-9,17484,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1063.7535,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,1,0,713,0,0,0,1333.6024 -7777,9581,17484,-9,-9,-9,1,1,0,33,2,0,2,0,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-908.52618,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.849998,54.619999,-9,-9,5,4,2,0,0,8,1,0,713,0,0,0,1333.6024 -7778,9582,17485,17486,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,2,8.691782,8.7571239,0,1,0,-9,35,0,-1,4.4920049,0,0,0,57,2,5,1,2,2,2019,1,2,9,0,37,38,15,1,0,1,0,17.544773,17.544773,0,0,0,0,0,0,0,0,0,0,0,3.4180229,0,0,0,54.18,36.279999,57.060001,57.759998,6,1,1,0,0,4,5,1,1232,849996.63,0,0,5647.2227 -7778,9582,17486,17485,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,5,9.0369186,9.1507988,0,1,0,-9,35,0,1,-81.940689,0,0,0,56,1,2,1,2,2,2019,1,1,7,0,41,40,15,1,0,1,0,25.900511,25.900511,0,0,0,0,0,0,0,0,0,0,0,4.2164335,0,0,0,57.060001,57.759998,54.18,36.279999,6,1,1,0,0,4,5,1,1232,849996.63,0,0,5647.2227 -7779,9583,17487,17488,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,3,9.5902939,9.7044687,0,2,0,-9,7,0,3,-77.156914,0,0,0,43,2,3,3,2,2,2019,2,1,11,1,40,43,15,1,0,3,0,34.68222,34.68222,0,0,0,0,0,0,0,0,0,0,0,2.404995,0,0,0,45.43,53.5,44.68,48.16,5,1,1,0,0,9,5,1,569.75,340620.16,0,0,3757.3372 -7779,9583,17488,17487,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-3,-26.207859,0,0,1,46,2,3,1,-9,-9,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.68,48.16,45.43,53.5,3,1,1,0,0,9,5,1,569.75,340620.16,0,0,3757.3372 -7779,9583,17489,-9,17488,17487,5,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.30084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,569.75,340620.16,0,0,3757.3372 -7779,9583,17490,-9,17488,17487,6,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.7015,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,569.75,340620.16,0,0,3757.3372 -7779,9584,17491,-9,17488,17487,3,1,0,20,2,0,2,0,2,-9,2,1,0,0,4,7.6113372,7.8536191,0,3,0,0,0,-9,0,-1058.7128,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,35,12,15,1,0,-9,1,10.479081,10.479081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.349998,-9,-9,5,1,1,0,0,9,4,1,438,30042.131,0,0,2401.1084 -7779,9585,17492,-9,17488,17487,4,1,0,18,2,0,2,0,2,-9,2,1,0,0,3,6.8093963,7.0845098,0,3,0,0,0,-9,0,-924.23364,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,18,0,15,1,0,-9,1,7.6818419,7.6818419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.77,50.150002,-9,-9,4,1,1,0,0,9,2,1,873,-71301.313,0,0,1797.2458 -7780,9586,17493,17494,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.5097551,8.7120504,0,1,0,-9,30,0,-4,.8049292,0,0,0,54,1,3,1,2,2,2019,1,2,9,1,35,40,15,1,0,1,0,16.241613,16.241613,0,0,0,0,0,0,0,2,0,0,0,0,0,.11094689,3,35.630001,62.189999,37.790001,59.599998,5,1,1,0,0,2,5,1,528,339927.91,0,0,4590.7451 -7780,9586,17494,17493,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,9.2341833,9.4065428,0,1,0,-9,9,0,4,-50.362125,0,0,0,50,2,4,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,30.600941,30.600941,0,0,0,0,0,0,0,0,0,0,0,3.5573728,0,0,0,37.790001,59.599998,35.630001,62.189999,5,1,1,0,0,2,5,1,528,339927.91,0,0,4590.7451 -7780,9587,17495,-9,17493,17494,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.9161158,8.1236572,0,3,0,0,0,-9,0,-923.39697,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,1,39,37,15,1,0,-9,1,8.2446089,8.2446089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,2,4,1,1052,158536.95,0,0,1624.5216 -7781,9588,17496,17497,-9,-9,2,1,1,73,1,0,0,0,1,-9,1,1,0,0,4,6.1929612,6.7444878,5.7890267,1,0,-9,10,0,3,100.63325,0,0,0,70,2,3,1,3,3,2019,1,1,7,0,6,48,15,1,0,1,0,12.307353,12.307353,0,0,0,0,0,0,0,0,1,1,0,6.2761269,5.5861025,0,0,54.200001,57.490002,57.93,46.290001,6,1,1,0,0,9,3,1,1099,779324.94,0,0,2601.7695 -7781,9588,17497,17496,-9,-9,1,1,0,70,1,0,0,0,2,-9,2,1,0,0,3,7.4716349,7.4230709,3.160311,1,0,-9,10,0,-3,28.910669,0,0,0,73,1,4,1,3,3,2019,1,2,7,0,11,21,15,1,0,1,0,18.683809,18.683809,0,0,0,0,0,0,0,0,1,1,0,3.1734776,3.2610602,0,0,57.93,46.290001,54.200001,57.490002,6,1,1,0,0,9,3,1,1099,779324.94,0,0,2601.7695 -7782,9589,17498,17502,-9,-9,1,1,0,28,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,-2,-42.053932,-9,1,1,30,2,4,1,2,2,2019,3,2,23,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.84,66.269997,30.540001,56.25,4,1,1,0,1,5,3,0,478.79999,66876.414,0,0,2946.2141 -7782,9589,17499,-9,17498,17502,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1079.8164,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,0,478.79999,66876.414,0,0,2946.2141 -7782,9589,17500,-9,17498,17502,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1031.6517,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,0,478.79999,66876.414,0,0,2946.2141 -7782,9589,17501,-9,17498,17502,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-956.38446,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,0,478.79999,66876.414,0,0,2946.2141 -7782,9589,17502,17498,-9,-9,2,1,1,30,1,0,3,0,2,-9,2,1,0,0,4,8.4366121,8.2260942,0,2,0,-9,1,-9,2,-80.776497,-9,0,0,28,2,4,3,-9,-9,2019,2,1,24,8,46,0,15,1,1,3,0,9.179678,9.179678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.540001,56.25,14.84,66.269997,2,1,1,0,1,5,3,0,478.79999,66876.414,0,0,2946.2141 -7783,9590,17503,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,4,0,7.3643517,7.5422502,3,0,0,0,-9,0,-1005.0012,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8470418,7.7816892,0,0,48.279999,60.18,-9,-9,5,1,1,0,0,6,3,1,195,846244.94,0,0,1517.2227 -7784,9591,17504,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1047.2349,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,1.4708412,0,0,0,4.0143285,0,0,1,1,0,0,0,0,0,57.91,9.1400003,-9,-9,6,1,1,0,0,6,1,0,1096,-11307.811,0,0,1974.8883 -7785,9592,17505,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,4,8.1196089,7.9176989,4.886488,3,0,0,0,-9,0,-1076.7356,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,0,16.561375,16.561375,0,0,0,0,0,0,0,0,1,1,0,4.6207137,5.3102207,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,590,204217.53,0,0,2969.2769 -7786,9593,17506,17507,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,2,0,6.5767035,6.4597449,1,0,-9,65,0,-1,134.23134,0,0,0,85,3,3,3,3,3,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.9668474,6.4177284,0,0,49.580002,33,52.07,26.48,5,1,1,0,0,2,2,1,455,517903.78,0,0,1988.3271 -7786,9593,17507,17506,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,3,0,5.8099079,6.0504756,1,0,-9,65,0,1,18.296747,0,0,0,84,2,2,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7464058,6.0704112,0,0,52.07,26.48,49.580002,33,7,1,1,0,0,2,2,1,455,517903.78,0,0,1988.3271 -7786,9594,17508,-9,17507,17506,3,1,1,53,2,0,0,0,1,-9,1,1,0,0,4,8.1701183,8.2200851,0,3,0,0,0,-9,0,-1025.8418,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,40,35,15,1,0,-9,1,8.9071817,8.9071817,0,0,0,0,0,0,0,0,1,1,0,4.239624,0,0,3,53,54,-9,-9,6,1,1,0,0,2,4,1,434,158158.02,0,0,1967.3561 -7787,9595,17509,17512,-9,-9,2,1,1,35,1,1,3,0,2,-9,2,1,0,0,4,8.8114367,8.8008547,0,2,0,-9,14,0,0,-90.250275,0,0,0,35,2,5,1,2,-9,2019,1,1,12,1,45,48,15,1,0,1,0,14.984184,14.984184,0,0,0,0,0,0,0,0,1,1,0,7.6172304,0,0,0,56.77,52.220001,57.060001,57.759998,7,1,1,0,0,6,4,0,568.20001,663424.19,0,0,3667.7419 -7787,9595,17510,-9,17512,17509,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.9857,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,568.20001,663424.19,0,0,3667.7419 -7787,9595,17511,-9,17512,17509,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1123.8994,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,568.20001,663424.19,0,0,3667.7419 -7787,9595,17512,17509,-9,-9,1,1,0,35,1,1,3,0,2,-9,2,1,0,0,5,7.754169,7.6276765,0,2,0,-9,14,0,0,34.702915,0,0,1,35,2,4,1,-9,-9,2019,1,2,6,0,20,19,15,1,0,1,0,9.7196341,9.7196341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,56.77,52.220001,7,1,1,0,0,6,4,0,568.20001,663424.19,0,0,3667.7419 -7787,9595,17513,-9,17512,17509,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.62659,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,4,0,568.20001,663424.19,0,0,3667.7419 -7788,9596,17514,17515,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,4.8155551,6.0962987,5.3934622,1,0,-9,1,-9,-3,109.97306,-9,0,0,79,2,4,3,-9,-9,2019,4,1,7,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6788516,5.1238627,0,0,58.720001,51.290001,60.119999,54.799999,6,1,1,0,0,10,3,1,790.5,894225.75,0,0,1604.063 -7788,9596,17515,17514,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,7.7078443,7.8456011,1,0,-9,1,-9,3,-137.09306,-9,0,0,76,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5685039,0,0,60.119999,54.799999,58.720001,51.290001,6,1,1,0,0,10,3,1,790.5,894225.75,0,0,1604.063 -7789,9597,17516,17517,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.6776953,8.9439192,6.9430609,1,0,-9,5,0,2,-2.6762097,0,0,0,59,1,4,1,-9,-9,2019,1,1,9,1,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5032248,6.4658418,0,0,55,53,37.34,60.950001,6,1,1,0,0,9,5,1,574.5,2168293.8,0,0,4886.1934 -7789,9597,17517,17516,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,7.5943356,7.6814375,0,1,0,-9,42,0,-2,-77.316048,0,0,0,61,2,4,1,2,2,2019,1,2,11,0,32,32,15,1,0,1,0,7.8749781,7.8749781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.34,60.950001,55,53,6,1,1,0,0,9,5,1,574.5,2168293.8,0,0,4886.1934 -7790,9598,17518,17519,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,4,9.0787916,9.1177616,0,1,0,-9,6,0,0,32.979332,0,0,0,61,3,4,1,2,3,2019,1,1,12,0,70,0,15,1,0,1,0,13.623843,13.623843,0,0,0,0,0,0,0,2,0,0,0,.81584924,0,0,3,54.200001,57.490002,48.279999,60.18,4,1,1,0,0,7,5,0,614.5,1063892.3,0,0,3295.6453 -7790,9598,17519,17518,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,6.8916626,7.0763588,0,1,0,-9,6,0,0,-9.8025599,0,0,0,61,1,4,1,-9,-9,2019,1,2,9,0,25,28,15,1,0,1,0,3.9098902,3.9098902,0,0,0,0,0,0,0,0,0,0,0,2.9075785,0,0,0,48.279999,60.18,54.200001,57.490002,6,1,1,0,0,7,5,0,614.5,1063892.3,0,0,3295.6453 -7791,9599,17520,17522,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,2,7.4019675,7.5732126,0,2,0,-9,29,0,-4,-122.24314,0,0,0,51,3,4,1,2,1,2019,1,2,12,3,29,31,15,1,0,1,0,5.2707634,5.2707634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.509998,31.85,57.16,56.150002,6,1,1,0,0,7,4,1,526.75,198513.97,0,0,3989.3223 -7791,9599,17521,-9,17520,17522,5,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1027.6191,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,7,4,1,526.75,198513.97,0,0,3989.3223 -7791,9599,17522,17520,-9,-9,2,1,1,51,1,0,2,0,3,-9,2,1,0,0,4,9.0425272,8.9082251,0,2,0,-9,6,0,4,50.468281,0,0,0,47,2,2,1,2,2,2019,1,1,7,0,49,55,15,1,0,1,0,15.103496,15.103496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.509998,31.85,6,1,1,0,0,7,4,1,526.75,198513.97,0,0,3989.3223 -7791,9599,17523,-9,17520,17522,4,1,1,17,2,0,2,1,2,-9,7,2,0,0,5,5.8734689,5.5781665,0,2,0,0,0,-9,0,-977.5882,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,13,4,10,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0576835,0,0,0,47.419998,59.360001,-9,-9,6,1,1,0,0,7,4,1,526.75,198513.97,0,0,3989.3223 -7791,9600,17524,-9,17520,17522,3,1,1,21,2,0,2,0,2,-9,2,1,0,0,4,7.5569019,7.7567115,0,3,0,0,0,-9,0,-912.20117,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,39,0,15,1,0,-9,1,5.7665901,5.7665901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,7,3,1,79,-93941.898,0,0,1205.7506 -7792,9601,17525,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,3,8.3657818,8.4207897,5.4953122,4,0,-9,0,-9,0,-1054.9395,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,2,45,0,15,1,0,-9,0,9.6056919,9.6056919,0,0,0,0,0,0,0,0,1,1,0,5.7680769,0,0,0,38.580002,48.57,-9,-9,6,1,1,0,0,12,4,1,1286,272357.34,0,0,1407.7898 -7793,9602,17526,-9,17530,17527,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-945.04712,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,10,4,0,1368.3334,1044782.4,0,0,4028.9038 -7793,9602,17527,17530,-9,-9,5,1,1,44,1,0,3,0,3,-9,2,1,0,0,3,8.1581736,8.1869259,0,2,0,-9,3,0,9,-22.79541,0,0,0,35,2,2,1,-9,-9,2019,1,1,6,0,60,60,15,1,0,1,0,8.9102831,8.9102831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.009998,48.98,38.509998,38.169998,5,1,1,0,0,10,4,0,1368.3334,1044782.4,0,0,4028.9038 -7793,9602,17528,-9,17530,17527,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1008.5273,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,10,4,0,1368.3334,1044782.4,0,0,4028.9038 -7793,9602,17529,-9,17530,17527,2,1,0,17,2,0,3,0,1,-9,7,2,0,0,4,6.9340153,7.0536666,0,2,0,0,0,-9,0,-903.89929,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.400002,54.119999,-9,-9,7,1,1,0,0,10,4,0,1368.3334,1044782.4,0,0,4028.9038 -7793,9602,17530,17527,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,0,2,7.9371986,8.2245102,6.7412367,2,0,-9,3,0,0,132.99377,0,0,1,44,3,3,1,2,3,2019,1,5,8,0,41,50,15,1,0,1,0,9.8790894,9.8790894,0,0,0,0,0,0,0,0,1,1,0,7.0601392,0,0,0,38.509998,38.169998,52.009998,48.98,5,1,1,0,0,10,4,0,1368.3334,1044782.4,0,0,4028.9038 -7793,9602,17531,-9,17530,17527,6,1,0,14,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1097.8542,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,10,4,0,1368.3334,1044782.4,0,0,4028.9038 -7794,9603,17532,17533,-9,-9,2,1,0,63,1,0,0,0,3,-9,2,1,0,0,1,6.9623747,6.9014382,0,1,0,-9,28,0,10,-5.2378974,0,0,0,53,2,5,1,3,-9,2019,1,1,33,12,15,27,15,1,1,1,0,7.8843002,7.8843002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.84,41.060001,39.43,60.459999,4,1,1,0,0,9,4,1,1989,478870.25,0,0,2515.5425 -7794,9603,17533,17532,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.4561205,8.7203407,0,1,0,-9,28,0,-10,64.202644,0,0,0,63,3,1,1,3,2,2019,1,2,11,3,42,41,15,1,0,1,0,17.643648,17.643648,0,0,0,0,0,0,0,0,1,1,0,2.0106163,0,0,0,39.43,60.459999,28.84,41.060001,2,1,1,0,0,9,4,1,1989,478870.25,0,0,2515.5425 -7795,9604,17534,17535,-9,-9,2,1,1,70,1,0,0,0,1,-9,1,1,0,0,3,7.310843,8.3745766,7.5439286,1,0,-9,7,0,5,-104.70756,0,0,0,65,1,5,1,3,2,2019,1,1,4,0,40,30,15,1,0,1,0,3.4882855,3.4882855,0,0,0,0,0,0,0,2,1,1,0,5.0450311,7.4596286,8.2420168,3,53.16,51.259998,46.66,56.93,6,1,1,0,0,11,5,1,281.5,4910165,0,0,10457.962 -7795,9604,17535,17534,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,0,5,9.7622948,9.9161997,0,1,0,-9,7,0,-5,-40.343781,0,0,0,70,1,3,1,2,3,2019,1,2,10,0,20,20,15,1,0,1,0,96.033287,96.033287,0,0,0,0,0,0,0,27.5,1,1,0,3.507745,0,39.923477,3,46.66,56.93,53.16,51.259998,3,1,1,0,0,11,5,1,281.5,4910165,0,0,10457.962 -7796,9605,17536,-9,-9,-9,2,1,0,20,2,0,0,0,2,-9,7,2,0,0,4,7.2409182,6.929069,0,3,0,0,0,-9,0,-1074.9952,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,20,15,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.580002,64.379997,-9,-9,7,1,1,0,0,12,2,0,288,6397.6455,0,0,1411.6348 -7797,9606,17537,17538,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,1,3,0,7.5657058,7.9795604,1,0,-9,48,0,5,56.791206,0,0,0,64,2,3,1,-9,-9,2019,3,1,21,8,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,8.67836,7.6148238,0,3,42.73,36.650002,49,48,3,1,1,0,0,6,4,1,1387.5,526386,0,0,6291.4424 -7797,9606,17538,17537,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,7.8284001,7.8446264,0,1,0,-9,48,0,-5,-34.168812,0,0,0,69,2,3,3,2,2,2019,2,2,10,0,16,18,15,1,0,4,0,18.95516,18.95516,0,0,0,0,0,0,0,0,1,1,0,1.9689598,0,0,0,49,48,42.73,36.650002,6,1,1,0,0,6,4,1,1387.5,526386,0,0,6291.4424 -7798,9607,17539,-9,17540,17542,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.7832,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,3,1,902.5,454411.47,0,0,2907.5217 -7798,9607,17540,17542,-9,-9,1,1,0,34,1,0,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,13,0,-3,52.125458,0,0,1,37,1,4,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.349998,41.970001,54.200001,57.490002,6,2,3,0,0,4,3,1,902.5,454411.47,0,0,2907.5217 -7798,9607,17541,-9,17540,17542,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.36841,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,3,1,902.5,454411.47,0,0,2907.5217 -7798,9607,17542,17540,-9,-9,2,1,1,37,1,0,3,0,1,-9,2,1,0,0,4,8.7940435,8.9110613,0,2,0,-9,13,0,3,-88.015579,0,0,0,34,1,3,3,2,1,2019,2,1,10,0,39,38,15,1,0,3,0,17.632803,17.632803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,55.349998,41.970001,6,2,3,0,0,4,3,1,902.5,454411.47,0,0,2907.5217 -7799,9608,17543,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,0,3,7.9977703,8.0758848,0,3,0,0,0,-9,0,-1054.1221,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,3,35,22,15,1,0,-9,0,8.4976978,8.4976978,0,0,0,0,0,0,0,0,0,0,0,6.0668411,0,0,0,35.040001,47.27,-9,-9,6,1,1,0,1,4,3,0,619,43166.516,0,0,2003.129 -7800,9609,17544,-9,17547,17546,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.0029,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,609.75,580409.19,0,0,4529.8447 -7800,9609,17545,-9,17547,17546,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.0955,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,609.75,580409.19,0,0,4529.8447 -7800,9609,17546,17547,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,8.5613079,8.7988367,0,2,0,-9,14,0,0,-98.756004,0,0,0,41,1,4,1,1,1,2019,1,2,10,1,85,70,15,1,0,1,0,14.729408,14.729408,0,0,0,0,0,0,0,0,1,1,0,6.9783258,0,0,0,48.869999,58.549999,41.060001,62.040001,6,1,1,0,0,5,4,1,609.75,580409.19,0,0,4529.8447 -7800,9609,17547,17546,-9,-9,2,1,0,41,1,0,2,0,1,-9,1,1,0,0,4,7.0229683,6.5725513,0,2,0,-9,14,0,0,-3.3251235,0,0,1,41,1,4,1,2,2,2019,1,1,17,5,56,40,15,1,1,1,0,1.6874384,1.6874384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.060001,62.040001,48.869999,58.549999,6,1,1,0,0,5,4,1,609.75,580409.19,0,0,4529.8447 -7801,9610,17548,17549,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,8.1683693,7.952199,0,1,0,-9,8,0,-4,9.062376,0,0,0,43,2,4,1,2,2,2019,1,1,6,0,50,50,15,1,0,1,0,6.1381965,6.1381965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.060001,53.470001,49.349998,59.639999,6,1,1,0,0,4,4,1,820,46002.297,0,0,2874.0242 -7801,9610,17549,17548,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,8.2257624,7.9635205,0,1,0,-9,8,0,4,-50.610294,0,0,1,39,2,4,1,2,2,2019,1,2,11,0,43,45,15,1,0,1,0,10.338461,10.338461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,63.060001,53.470001,6,1,1,0,0,4,4,1,820,46002.297,0,0,2874.0242 -7802,9611,17550,-9,-9,-9,1,1,1,21,2,0,0,0,1,1,2,1,0,0,3,7.7774763,7.7334585,0,3,0,0,0,-9,0,-1031.188,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,0,15,1,0,-9,0,10.15982,10.15982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.580002,57.009998,-9,-9,6,1,1,0,0,4,4,0,394,-208037.59,0,0,1177.4746 -7803,9612,17551,-9,17553,17552,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.8218,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,1,356,80521.602,0,0,2000.1726 -7803,9612,17552,17553,-9,-9,1,1,1,36,1,0,1,0,1,-9,2,1,0,1,3,8.3177767,7.9643464,0,2,0,-9,2,0,0,-23.574766,0,0,0,36,3,3,3,2,2,2019,2,2,11,0,37,37,15,1,0,3,0,10.434271,10.434271,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.174648,3,49.549999,55.599998,44.59,48.369999,6,1,1,0,0,11,3,1,356,80521.602,0,0,2000.1726 -7803,9612,17553,17552,-9,-9,2,1,0,36,1,0,1,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,2,0,0,4.0101128,0,0,1,36,1,3,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.406513,3,44.59,48.369999,49.549999,55.599998,5,1,1,0,0,11,3,1,356,80521.602,0,0,2000.1726 -7804,9613,17554,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,3,5.4710245,8.480854,8.5409403,3,0,0,0,-9,0,-911.46936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0057926,8.6733313,0,0,52.25,53.240002,-9,-9,6,1,1,0,0,8,5,1,1782,362034.88,0,0,4702.6025 -7805,9614,17555,-9,17556,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.27118,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,6,1,0,664.5,0,0,0,1667.7798 -7805,9614,17556,-9,-9,-9,1,1,0,22,2,1,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-919.15057,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.41,61.919998,-9,-9,4,4,2,0,0,6,1,0,664.5,0,0,0,1667.7798 -7806,9615,17557,-9,17558,17561,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-847.2226,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,919,1027262.6,0,0,7456.2979 -7806,9615,17558,17561,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,1,4,8.4413824,8.0725946,0,2,0,-9,7,0,-2,9.05091,0,0,0,48,1,4,1,-9,-9,2019,1,1,13,2,20,20,15,1,0,1,0,28.128389,28.128389,0,0,0,0,0,0,0,0,1,1,0,7.3050151,0,0,0,43.200001,59.970001,35.860001,64.550003,6,1,1,0,0,6,5,1,919,1027262.6,0,0,7456.2979 -7806,9615,17559,-9,17558,17561,3,1,1,16,2,0,3,1,3,-9,7,2,0,0,5,7.4927249,7.5562229,0,2,0,0,0,-9,0,-986.21783,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.380001,55.950001,-9,-9,7,1,1,0,0,6,5,1,919,1027262.6,0,0,7456.2979 -7806,9615,17560,-9,17558,17561,4,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.7222,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,919,1027262.6,0,0,7456.2979 -7806,9615,17561,17558,-9,-9,1,1,1,48,1,0,3,0,1,-9,2,1,0,0,4,9.2800255,9.0949726,0,2,0,-9,7,0,2,2.0701144,0,0,0,46,1,4,1,-9,-9,2019,1,2,11,1,55,65,15,1,0,1,0,21.470644,21.470644,0,0,0,0,0,0,0,0,1,1,0,2.3767784,0,0,0,35.860001,64.550003,43.200001,59.970001,5,1,1,0,0,6,5,1,919,1027262.6,0,0,7456.2979 -7807,9616,17562,-9,-9,-9,1,1,0,39,3,0,0,0,2,-9,2,1,0,0,4,8.749424,8.6125383,0,3,0,0,0,-9,0,-1057.5259,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,40,15,1,0,-9,0,14.793278,14.793278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,13,4,0,778.5,140264.66,0,0,3828.1133 -7807,9616,17563,-9,17562,-9,2,1,0,16,2,0,0,0,3,-9,2,2,0,0,3,7.4809933,7.1043797,0,3,0,0,0,-9,0,-986.51526,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,49,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,13,4,0,778.5,140264.66,0,0,3828.1133 -7808,9617,17564,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,2,1,0,0,2,8.0485916,7.6332436,0,3,0,0,0,-9,0,-1059.6123,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,30,35,15,1,0,-9,0,12.423518,12.423518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.669998,40.720001,-9,-9,2,1,1,0,1,4,4,1,802,404724.81,0,0,1472.9393 -7809,9618,17565,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.1624975,8.4094734,0,1,0,-9,2,0,-8,33.335262,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,1,40,0,15,1,0,-9,0,9.8256731,9.8256731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,52.169998,30.530001,5,4,1,0,0,11,4,1,2083,-73734.453,0,0,351.8584 -7809,9619,17566,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,0,2,7.7731128,7.5366001,0,1,0,-9,2,0,8,37.006172,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,6,0,32,32,15,1,0,-9,0,8.1855488,8.1855488,0,0,0,0,0,0,0,0,0,0,0,7.989749,0,0,0,52.169998,30.530001,50,57,6,1,1,0,0,11,4,1,409,-150158.02,0,0,2021.1692 -7810,9620,17567,-9,-9,-9,1,1,0,78,2,0,0,0,2,-9,4,3,0,0,4,0,8.8950348,8.5962143,3,0,0,0,-9,0,-1059.8123,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2014666,8.2185888,6.221086,3,57.16,56.150002,-9,-9,7,1,1,0,0,4,5,1,140,172720.95,0,0,2131.8215 -7811,9621,17568,17569,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,9.3350954,9.1521473,0,1,0,-9,6,0,1,49.669762,0,0,0,51,2,3,1,2,2,2019,1,2,4,0,50,50,15,1,0,1,0,19.862625,19.862625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.259998,49.349998,44.259998,41.619999,5,1,1,0,0,4,5,1,326.5,114287.61,0,0,3772.3535 -7811,9621,17569,17568,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.7687201,7.1820216,0,1,0,-9,6,0,-1,49.184467,0,0,0,52,2,3,1,2,1,2019,1,1,24,12,15,17,15,1,1,1,0,16.414492,16.414492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.259998,41.619999,42.259998,49.349998,3,1,1,0,0,4,5,1,326.5,114287.61,0,0,3772.3535 -7811,9622,17570,-9,17569,17568,4,1,0,18,2,0,0,1,2,0,7,2,0,0,3,6.6302314,6.6004896,0,3,0,0,0,-9,0,-1100.2043,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,21,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.360001,46.400002,-9,-9,3,1,1,0,0,4,2,1,3377,-252247.56,0,0,-454.03452 -7812,9623,17571,17572,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,0,3,0,6.3298306,6.4754066,1,0,-9,72,0,-2,104.48991,0,0,0,90,3,2,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,16.281481,0,9.4400463,7.0154266,0,0,0,1,1,0,0,6.631526,0,0,46.41,35.130001,28.1,28.059999,4,4,2,0,0,4,2,1,346,-23494.914,0,0,2753.7212 -7812,9623,17572,17571,-9,-9,2,1,0,90,1,0,0,0,3,-9,4,3,0,0,2,0,4.7449913,4.5642738,1,0,-9,72,0,2,76.93457,0,0,0,88,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,9.8517561,0,2.9587092,0,0,0,0,1,1,0,0,4.6162333,0,0,28.1,28.059999,46.41,35.130001,5,2,3,0,0,4,2,1,346,-23494.914,0,0,2753.7212 -7813,9624,17573,-9,17574,17575,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.3281,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,3,1,316,209409.95,0,0,1721.6918 -7813,9624,17574,17575,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,5,6.5613132,6.2946062,0,2,0,-9,23,0,1,-71.998634,0,0,1,42,2,3,1,3,-9,2019,1,1,11,2,6,12,15,1,0,1,0,11.865488,11.865488,0,0,0,0,0,0,0,2,1,1,0,1.6328944,0,0,3,60.599998,46.43,53.560001,49.66,6,1,1,0,0,10,3,1,316,209409.95,0,0,1721.6918 -7813,9624,17575,17574,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.2931995,8.425745,0,2,0,-9,23,0,-1,-6.1724038,0,0,0,43,2,5,1,2,2,2019,1,2,5,0,47,47,15,1,0,1,0,9.4195614,9.4195614,0,0,0,0,0,0,0,2,1,1,0,1.1495026,0,0,3,53.560001,49.66,60.599998,46.43,6,1,1,0,0,10,3,1,316,209409.95,0,0,1721.6918 -7814,9625,17576,17578,-9,-9,2,1,1,34,1,0,1,0,1,-9,2,1,0,0,4,8.2806444,8.4230747,0,2,0,-9,10,0,1,88.897026,0,0,0,33,2,5,1,2,1,2019,1,1,6,0,45,52,15,1,0,1,0,9.9041605,9.9041605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,5,1,1,0,0,1,4,0,839.33331,62570.801,0,0,2926.1543 -7814,9625,17577,-9,17578,17576,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.6063,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,4,0,839.33331,62570.801,0,0,2926.1543 -7814,9625,17578,17576,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,0,5,7.6282539,7.5619535,0,2,0,-9,10,0,-1,-16.448927,0,0,1,34,1,4,1,2,2,2019,1,2,6,0,32,32,15,1,0,1,0,5.496624,5.496624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,1,4,0,839.33331,62570.801,0,0,2926.1543 -7815,9626,17579,-9,17582,17581,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.86322,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,742.5,363894.22,0,0,9777.9199 -7815,9626,17580,-9,17582,17581,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.90771,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,742.5,363894.22,0,0,9777.9199 -7815,9626,17581,17582,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,0,5,9.2414045,9.072072,0,2,0,-9,16,0,1,-7.0645547,0,0,0,38,1,5,1,2,2,2019,1,1,7,0,53,45,15,1,0,1,0,23.083481,23.083481,0,0,0,0,0,0,0,0,0,0,0,3.8392777,0,0,0,57.060001,57.759998,54.689999,57.470001,6,1,1,0,0,2,5,1,742.5,363894.22,0,0,9777.9199 -7815,9626,17582,17581,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,5,9.7730417,9.8580017,0,2,0,-9,16,0,-1,87.996742,0,0,1,39,1,5,1,1,1,2019,1,2,6,0,37,42,15,1,0,1,0,46.795322,46.795322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,57.060001,57.759998,6,1,1,0,0,2,5,1,742.5,363894.22,0,0,9777.9199 -7816,9627,17583,17584,-9,-9,2,1,1,75,1,0,1,0,1,-9,4,3,0,0,3,0,7.9702406,7.7246852,2,0,-9,9,0,6,-79.900475,0,0,0,69,1,4,1,3,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1233554,7.8579788,0,0,52.639999,47.240002,59.529999,56.439999,6,1,1,0,0,9,3,1,1102.5,806493.38,0,0,2410.1401 -7816,9627,17584,17583,-9,-9,1,1,0,69,1,0,1,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,9,0,-6,-38.748589,0,0,0,75,1,3,3,2,2,2019,2,2,8,0,5,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7591406,0,0,0,59.529999,56.439999,52.639999,47.240002,7,1,1,0,0,9,3,1,1102.5,806493.38,0,0,2410.1401 -7817,9628,17585,17586,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-3,33.536575,0,0,0,78,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2117066,0,16.085773,3,59.880001,48.040001,57.169998,48.119999,6,1,1,0,0,5,2,1,2200,395357.09,0,0,2300.2637 -7817,9628,17586,17585,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,4,0,6.783587,6.6402922,1,0,-9,55,0,3,3.8906522,0,0,0,75,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5917678,6.8863444,6.6766562,3,57.169998,48.119999,59.880001,48.040001,6,1,1,0,1,5,2,1,2200,395357.09,0,0,2300.2637 -7818,9629,17587,-9,17590,-9,2,1,0,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,-9,0,-9,0,-1044.4773,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,7,1,0,933.75,-54642.09,0,0,1390.5425 -7818,9629,17588,-9,17590,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1025.6609,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,1,0,933.75,-54642.09,0,0,1390.5425 -7818,9629,17589,-9,17590,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,-9,0,-9,0,-1002.2329,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,7,1,0,933.75,-54642.09,0,0,1390.5425 -7818,9629,17590,-9,-9,-9,1,1,0,31,2,0,3,0,2,-9,3,3,0,0,4,0,0,0,4,0,-9,0,-9,0,-976.59119,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,1,0,7,1,0,933.75,-54642.09,0,0,1390.5425 -7819,9630,17591,17592,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,7.6256142,7.5545378,0,1,0,-9,3,0,21,127.8868,0,0,0,28,2,1,3,3,3,2019,2,2,22,10,45,55,15,1,1,3,0,6.4209156,6.4209156,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.163131,1,33.419998,54.810001,24.68,21.219999,3,1,1,0,0,13,3,0,791.5,125556.78,0,0,1670.5762 -7819,9630,17592,17591,-9,-9,2,1,0,28,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,3,0,-21,119.71883,0,1,1,49,2,3,1,-9,-9,2019,3,1,33,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1478858,0,0,0,24.68,21.219999,33.419998,54.810001,1,1,1,0,1,13,3,0,791.5,125556.78,0,0,1670.5762 -7820,9631,17593,17594,-9,-9,1,1,1,89,1,0,0,0,2,-9,4,3,0,0,2,0,8.8724012,9.0938187,1,0,-9,8,0,9,103.48716,0,0,0,80,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.1556797,0,0,50.560001,39.119999,54.490002,50.619999,6,1,1,0,0,9,5,1,1360.5,1625841.8,0,0,6548.1685 -7820,9631,17594,17593,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,4.8681383,4.6510086,1,0,-9,8,0,0,-12.576805,0,0,0,89,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.5436068,6.7057037,1,54.490002,50.619999,50.560001,39.119999,6,1,1,0,0,9,5,1,1360.5,1625841.8,0,0,6548.1685 -7821,9632,17595,17597,-9,-9,1,1,0,32,1,2,2,0,1,-9,5,1,0,0,4,8.8155174,8.545886,0,2,0,-9,8,0,-1,23.290125,0,0,1,33,1,4,1,1,1,2019,1,2,9,0,36,28,15,1,0,1,0,20.625656,20.625656,0,0,0,0,0,0,0,0,1,1,0,3.2679474,0,0,0,57.73,54.529999,55.73,53.98,6,1,1,0,0,10,5,1,1335,413662.69,0,0,4912.8633 -7821,9632,17596,-9,17595,17597,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1058.8621,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,5,1,1335,413662.69,0,0,4912.8633 -7821,9632,17597,17595,-9,-9,2,1,1,33,1,2,2,0,1,-9,2,1,0,0,4,8.5047598,8.8545523,0,2,0,-9,8,0,1,-61.935741,0,0,0,32,1,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,15.678689,15.678689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.73,53.98,57.73,54.529999,6,1,1,0,0,10,5,1,1335,413662.69,0,0,4912.8633 -7821,9632,17598,-9,17595,17597,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.4881,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,5,1,1335,413662.69,0,0,4912.8633 -7822,9633,17599,-9,17601,17603,4,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.85333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,0,459,194600.06,0,0,3738.8176 -7822,9633,17600,-9,17601,17603,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-883.95654,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,0,459,194600.06,0,0,3738.8176 -7822,9633,17601,17603,-9,-9,2,1,0,32,1,0,3,0,2,-9,2,1,0,0,3,8.425704,8.3899622,0,2,0,-9,6,0,0,-56.434273,0,0,1,32,2,4,1,-9,-9,2019,1,1,7,0,32,30,15,1,0,1,0,17.312748,17.312748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.02,42.66,46.310001,58.290001,6,1,1,0,0,2,4,0,459,194600.06,0,0,3738.8176 -7822,9633,17602,-9,17601,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.71082,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,0,459,194600.06,0,0,3738.8176 -7822,9633,17603,17601,-9,-9,1,1,1,32,1,0,3,0,2,-9,2,1,0,0,4,7.6240435,7.7380776,0,2,0,-9,6,0,0,-33.574192,0,0,0,32,2,3,1,2,2,2019,1,2,11,0,39,40,15,1,0,1,0,9.872468,9.872468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.310001,58.290001,57.02,42.66,6,1,1,0,0,2,4,0,459,194600.06,0,0,3738.8176 -7823,9634,17604,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,0,3,8.9193993,8.7470083,0,3,0,0,0,-9,0,-1040.4097,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,45,15,1,0,-9,0,15.058408,15.058408,0,0,0,0,0,0,0,0,0,0,0,.35342628,0,0,0,39.5,56.189999,-9,-9,4,1,1,0,0,6,5,1,1842,260473.95,0,0,1800.4358 -7824,9635,17605,17606,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,9.1785059,9.5667524,7.8770232,1,0,-9,31,0,4,-76.431709,0,0,0,53,3,3,1,2,2,2019,1,2,11,0,50,47,15,1,0,1,0,25.047821,25.047821,0,0,0,0,0,0,0,0,0,0,0,4.7859631,8.1123486,0,0,50.009998,47.439999,57.330002,53.459999,5,2,3,0,0,8,5,1,302.5,411103.13,0,0,4204.4243 -7824,9635,17606,17605,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,7.4906621,7.6774383,0,1,0,-9,31,0,-4,9.7224512,0,0,0,57,2,3,1,-9,-9,2019,1,1,9,0,25,25,15,1,0,1,0,6.6446552,6.6446552,0,0,0,0,0,0,0,0,0,0,0,3.8822539,0,0,0,57.330002,53.459999,50.009998,47.439999,6,2,3,0,0,8,5,1,302.5,411103.13,0,0,4204.4243 -7824,9636,17607,-9,17606,17605,3,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.1459494,8.07654,0,3,0,0,0,-9,0,-909.09692,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,8,4,1,600,-104066.1,0,0,1207.7466 -7824,9637,17608,-9,17606,17605,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.1279697,8.3531809,0,3,0,0,0,-9,0,-970.74188,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,36,39,15,1,0,-9,1,12.307591,12.307591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,2,3,0,0,8,4,1,1940,-51679.508,0,0,1251.3187 -7825,9638,17609,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.5217218,8.5210962,0,3,0,0,0,-9,0,-965.50195,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,58,65,15,1,0,-9,0,8.7250633,8.7250633,0,0,0,0,0,0,0,0,1,1,0,6.03618,0,0,0,44.830002,57.810001,-9,-9,6,1,1,0,0,4,5,1,817,267262.25,0,0,2203.0269 -7826,9639,17610,17613,-9,-9,2,1,0,31,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-4,43.992107,0,0,1,35,1,4,1,1,1,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,56.689999,47.580002,56.389999,4,2,3,0,0,8,5,0,648.25,802081,0,0,8270.1777 -7826,9639,17611,-9,17610,17613,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.95496,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,0,648.25,802081,0,0,8270.1777 -7826,9639,17612,-9,17610,17613,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.3835,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,5,0,648.25,802081,0,0,8270.1777 -7826,9639,17613,17610,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,0,4,9.8867102,9.7997084,0,2,0,-9,8,0,4,-16.904375,0,0,0,31,1,3,3,1,1,2019,2,2,11,0,50,50,15,1,0,3,0,38.638962,38.638962,0,0,0,0,0,0,0,0,0,0,0,7.1053696,0,0,0,47.580002,56.389999,32.34,56.689999,5,2,3,0,0,8,5,0,648.25,802081,0,0,8270.1777 -7827,9640,17614,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,0,3,8.0109673,8.2437,0,3,0,0,0,-9,0,-1028.0245,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,9.9575024,9.9575024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.299999,42.490002,-9,-9,5,1,1,0,0,7,4,1,283,4960.873,0,0,1898.9263 -7828,9641,17615,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,3.0840385,3.4488838,3,0,0,0,-9,0,-1058.881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.3014028,0,0,43.259998,44.860001,-9,-9,5,1,1,0,0,11,2,1,234,20503.986,0,0,276.85706 -7829,9642,17616,17617,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,6.4649434,6.2046733,1,0,-9,6,0,4,93.622116,0,0,0,64,3,2,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3418703,0,0,54.75,28.870001,39.389999,40.029999,5,1,1,0,0,2,2,1,864,244164.3,0,0,976.49731 -7829,9642,17617,17616,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,2,0,5.1896,5.0490217,1,0,-9,6,0,-4,-81.001465,0,0,0,68,3,2,3,3,3,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.028148104,5.0936522,0,0,39.389999,40.029999,54.75,28.870001,4,1,1,0,0,2,2,1,864,244164.3,0,0,976.49731 -7830,9643,17618,17619,-9,-9,2,1,1,51,1,0,1,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,9,0,-4,-71.874451,0,0,0,55,1,5,1,-9,-9,2019,3,1,10,0,0,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,52.380001,55.950001,5,1,1,1,0,5,2,1,285.5,76323,0,0,1616.5814 -7830,9643,17619,17618,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,0,5,7.5515676,7.8092608,0,2,0,-9,22,0,4,-94.407982,0,0,0,51,2,5,3,2,2,2019,2,2,12,0,26,40,15,1,0,3,0,10.802207,10.802207,0,0,0,0,0,0,0,0,0,0,0,3.8967981,0,0,0,52.380001,55.950001,54.099998,59.110001,6,1,1,0,0,5,2,1,285.5,76323,0,0,1616.5814 -7830,9644,17620,-9,17619,17618,3,1,0,18,2,0,1,0,2,-9,2,1,0,0,3,6.5445385,6.0278897,0,3,0,0,0,-9,0,-1011.9639,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,33,0,15,1,0,-9,1,1.9614522,1.9614522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,5,2,1,1512,-116289.18,0,0,374.25659 -7831,9645,17621,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,0,2,0,7.590342,7.6763873,3,0,0,0,-9,0,-1050.0452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.6301236,10.078048,3,33.77,36.130001,-9,-9,2,1,1,0,0,10,3,1,394,253162.03,0,0,1929.6884 -7832,9646,17622,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,3,8.1602812,8.4735107,0,3,0,0,0,-9,0,-932.65735,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,43,43,15,1,0,-9,0,13.387319,13.387319,0,0,0,0,0,0,0,0,0,0,0,7.7420068,0,0,0,48.169998,52.080002,-9,-9,4,1,1,0,0,4,5,1,468,62334.941,0,0,2780.9431 -7833,9647,17623,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,-9,0,0,0,-1046.7773,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,36,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.23,55.950001,-9,-9,5,1,1,1,1,9,1,1,1051,80127.734,0,0,0 -7834,9648,17624,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1147.1221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,13,1,1,943,147346.14,0,0,1042.7197 -7835,9649,17625,17626,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,8.2537956,8.1546516,0,2,0,-9,20,0,-3,51.584259,0,0,1,45,1,4,1,2,2,2019,1,1,14,2,45,40,15,1,0,1,0,7.7479563,7.7479563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,53.049999,52.709999,5,1,1,0,0,12,5,1,1515.6666,597054.31,0,0,3038.3887 -7835,9649,17626,17625,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,8.7566967,8.9294596,0,2,0,-9,20,0,3,-97.801125,0,0,0,42,2,3,1,2,1,2019,1,2,6,0,37,37,15,1,0,1,0,21.51383,21.51383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.049999,52.709999,49.040001,55.860001,6,1,1,0,0,12,5,1,1515.6666,597054.31,0,0,3038.3887 -7835,9649,17627,-9,17625,17626,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-884.60016,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,1515.6666,597054.31,0,0,3038.3887 -7836,9650,17628,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,0,3,6.6283288,7.6174951,7.3417134,3,0,0,0,-9,0,-959.16162,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,18,16,15,1,0,-9,0,5.0249372,5.0249372,0,0,0,0,0,0,0,14.5,1,1,0,4.819768,7.1216984,15.791472,3,59.880001,48.200001,-9,-9,6,1,1,0,0,10,3,1,262,-111162.34,0,0,2069.4807 -7836,9651,17629,-9,17628,-9,2,1,1,43,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1111.199,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.27,12.89,-9,-9,2,1,1,0,0,10,1,1,2242,48761.859,0,0,-242.82524 -7837,9652,17630,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,1,1,0,0,4,8.5453596,8.5880013,0,3,0,0,0,-9,0,-976.98779,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,50,40,15,1,1,-9,0,14.537494,14.537494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.24,64.610001,-9,-9,6,1,1,0,0,9,5,0,1683,240304.67,0,0,2181.6208 -7838,9653,17631,17632,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,8.8290939,8.7539635,0,1,0,-9,19,0,-6,51.5858,0,0,0,56,1,4,1,-9,-9,2019,1,2,6,0,30,30,15,1,0,1,0,23.719549,23.719549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,51.639999,55.400002,7,2,3,0,0,8,5,1,604,779427.38,0,0,5098.3848 -7838,9653,17632,17631,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.510335,8.6463079,0,1,0,-9,2,0,6,-.93957758,-9,0,0,50,1,4,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,19.260818,19.260818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.639999,55.400002,62.490002,55.09,7,1,1,0,0,8,5,1,604,779427.38,0,0,5098.3848 -7839,9654,17633,-9,17634,17635,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.1678,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,1,399.33334,63778.074,0,0,1805.4722 -7839,9654,17634,17635,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,8.5041513,8.4403296,0,2,0,-9,9,0,-5,-105.82404,-9,0,0,51,2,4,1,-9,-9,2019,1,1,9,0,43,0,15,1,0,1,0,13.785563,13.785563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,8,4,1,399.33334,63778.074,0,0,1805.4722 -7839,9654,17635,17634,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,23,0,5,-12.203601,0,0,0,46,2,4,1,2,2,2019,1,2,8,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,5,2,3,0,0,8,4,1,399.33334,63778.074,0,0,1805.4722 -7839,9655,17636,-9,17634,17635,3,1,1,19,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-956.38885,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,1,1,504,0,0,0,0 -7840,9656,17637,17639,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,2,9.3881578,9.4613304,0,2,0,-9,7,0,-1,-98.600868,0,0,0,47,2,3,1,2,2,2019,1,1,14,2,38,37,15,1,0,1,0,27.985559,27.985559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.080002,45.970001,54.959999,53.169998,5,1,1,0,0,7,5,1,1956.75,283377.47,0,0,3019.718 -7840,9656,17638,-9,17639,17637,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.68304,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,5,1,1956.75,283377.47,0,0,3019.718 -7840,9656,17639,17637,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,3,7.4358158,7.0930982,0,2,0,-9,23,0,1,11.351203,0,0,0,46,1,2,1,3,-9,2019,1,2,9,0,21,27,15,1,0,1,0,8.697629,8.697629,0,0,0,0,0,0,0,0,0,0,0,3.9721093,0,0,0,54.959999,53.169998,51.080002,45.970001,6,1,1,0,0,7,5,1,1956.75,283377.47,0,0,3019.718 -7840,9656,17640,-9,17639,17637,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1141.9183,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,1956.75,283377.47,0,0,3019.718 -7841,9657,17641,17643,-9,-9,3,1,1,29,1,0,1,0,2,-9,2,1,0,0,4,8.0205135,8.2255812,0,2,0,-9,6,0,4,47.18288,0,1,0,25,2,4,3,-9,-9,2019,2,1,11,0,51,39,15,1,0,3,0,5.9597559,5.9597559,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,59.130001,42.360001,54.84,5,1,1,0,0,4,3,0,473,52531.172,0,0,1320.6438 -7841,9657,17642,-9,17643,17641,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.0707,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,473,52531.172,0,0,1320.6438 -7841,9657,17643,17641,-9,-9,1,1,0,25,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-4,37.785458,0,1,1,29,2,4,1,3,3,2019,3,3,12,0,0,37,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.360001,54.84,53.610001,59.130001,6,1,1,0,0,4,3,0,473,52531.172,0,0,1320.6438 -7842,9658,17644,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,2,8.2612514,8.3865356,0,3,0,0,0,-9,0,-1089.4911,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,43,15,1,0,-9,0,12.692943,12.692943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.25,36.27,-9,-9,6,1,1,0,1,9,5,0,429,-41378.992,0,0,1169.9198 -7843,9659,17645,17646,-9,-9,1,1,0,50,1,0,1,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,22,0,2,-70.73922,0,0,0,48,1,4,1,2,3,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.950001,25.68,52.43,55.57,6,1,1,0,0,7,4,1,539,716673.38,0,0,3322.5383 -7843,9659,17646,17645,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,8.8665218,9.1474075,0,2,0,-9,22,0,-2,22.465099,0,0,0,50,1,2,3,1,2,2019,2,1,6,0,40,40,15,1,0,3,0,24.182388,24.182388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,59.950001,25.68,7,1,1,0,0,7,4,1,539,716673.38,0,0,3322.5383 -7844,9660,17647,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,3,8.7211409,8.6134014,7.0122256,3,0,0,0,-9,0,-1002.0558,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,40,15,1,0,-9,0,17.898138,17.898138,0,0,0,0,0,0,0,0,0,0,0,4.3436546,6.8871536,0,0,53.029999,40.439999,-9,-9,4,1,1,0,0,10,5,1,940,279307.56,0,0,1849.3286 -7845,9661,17648,-9,17651,17650,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.65295,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,890.5,628803,0,0,3528.3433 -7845,9661,17649,-9,17651,17650,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.2462,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,5,1,890.5,628803,0,0,3528.3433 -7845,9661,17650,17651,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,3,9.0875559,9.2421675,0,2,0,-9,11,0,3,-51.669151,0,0,0,43,2,4,3,2,3,2019,2,1,10,0,70,0,15,1,0,3,0,17.993008,17.993008,0,0,0,0,0,0,0,0,1,1,0,1.9046992,0,0,0,52.119999,50.330002,52.82,53.970001,4,1,1,0,0,5,5,1,890.5,628803,0,0,3528.3433 -7845,9661,17651,17650,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,14,0,-3,-15.444769,0,0,1,46,2,3,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.69235134,0,125.86823,3,52.82,53.970001,52.119999,50.330002,6,1,1,0,0,5,5,1,890.5,628803,0,0,3528.3433 -7846,9662,17652,17653,-9,-9,2,1,0,57,1,0,0,0,2,-9,6,3,0,0,3,0,8.076786,7.9895263,1,0,-9,40,0,-10,14.912373,0,0,0,67,1,4,3,-9,-9,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5438838,8.0925951,0,0,49,48,57.16,56.150002,5,1,1,0,0,4,3,1,918.5,1102923.4,0,0,2884.6099 -7846,9662,17653,17652,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,6.8172717,6.7509155,1,0,-9,40,0,10,-27.368124,0,0,0,57,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6069741,0,0,57.16,56.150002,49,48,6,1,1,0,0,4,3,1,918.5,1102923.4,0,0,2884.6099 -7846,9663,17654,-9,17652,17653,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.1997013,8.4649525,0,3,0,0,0,-9,0,-966.10895,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,40,0,15,1,0,-9,1,10.089017,10.089017,0,0,0,0,0,0,0,0,1,1,0,.17787519,0,0,0,48,59,-9,-9,5,1,1,0,0,4,4,1,2574,119236.67,0,0,1937.9452 -7846,9664,17655,-9,17652,17653,4,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,7.9619522,8.2802391,0,3,0,0,0,-9,0,-1067.9572,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.60585761,0,0,0,49,58,-9,-9,5,1,1,0,0,4,4,1,693,-14346.328,0,0,1956.4362 -7847,9665,17656,17657,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.2854509,8.1187687,0,1,0,-9,4,0,-5,71.210518,0,0,0,58,2,4,1,3,3,2019,1,1,21,10,38,37,15,1,1,1,0,12.596697,12.596697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.700001,54.790001,55.860001,5,1,1,0,0,6,5,1,577,240023.28,0,0,3702.3721 -7847,9665,17657,17656,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.8683748,8.4373941,0,1,0,-9,4,0,5,29.49791,0,0,0,53,2,4,1,3,2,2019,1,2,10,0,55,25,15,1,0,1,0,10.13981,10.13981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,44.02,60.700001,2,1,1,0,0,6,5,1,577,240023.28,0,0,3702.3721 -7848,9666,17658,17661,-9,-9,2,1,1,60,1,0,0,0,2,-9,6,3,0,1,2,0,5.6307244,5.8438721,1,0,-9,6,0,-1,15.290083,0,0,0,61,2,4,3,3,3,2019,4,1,19,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.8428922,6.2020063,49.737423,3,54.630001,31.940001,57.16,56.150002,3,1,1,0,0,10,2,1,474.39999,461445.75,0,0,2848.9915 -7848,9666,17659,-9,-9,17658,3,1,0,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1055.504,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,474.39999,461445.75,0,0,2848.9915 -7848,9666,17660,-9,-9,17658,5,1,1,5,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-938.6394,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,1,474.39999,461445.75,0,0,2848.9915 -7848,9666,17661,17658,-9,-9,1,1,0,61,1,0,0,0,2,-9,6,3,0,1,4,0,5.8826456,5.9968653,1,0,-9,6,0,1,-102.83745,0,0,0,60,2,2,3,3,3,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0918183,0,3,57.16,56.150002,54.630001,31.940001,6,1,1,0,0,10,2,1,474.39999,461445.75,0,0,2848.9915 -7848,9666,17662,-9,-9,17658,4,1,0,6,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1105.0192,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,474.39999,461445.75,0,0,2848.9915 -7849,9667,17663,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,2,7.8798318,8.0630426,0,3,0,0,0,-9,0,-820.60022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,32,39,15,1,0,-9,0,11.089587,11.089587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,44.200001,-9,-9,5,2,3,0,0,8,4,0,1605,116608.01,0,0,2037.592 -7850,9668,17664,17665,-9,-9,2,1,0,31,1,0,0,0,2,-9,6,3,0,0,4,8.0021677,7.9045591,0,1,0,-9,4,0,-3,102.01055,0,0,1,34,2,5,1,-9,-9,2019,3,1,13,4,45,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.110001,60.68,38.18,65.089996,6,1,1,0,0,2,5,1,1030.5,267659.78,0,0,2969.1404 -7850,9668,17665,17664,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,0,5,8.4372759,8.8099804,0,1,0,-9,4,0,3,15.630246,0,0,0,31,2,4,3,2,2,2019,2,2,10,1,40,39,15,1,0,3,0,16.912533,16.912533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.18,65.089996,41.110001,60.68,5,1,1,0,0,2,5,1,1030.5,267659.78,0,0,2969.1404 -7851,9669,17666,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,2,0,7.7750697,7.6027985,3,0,0,0,-9,0,-990.05914,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.1218195,0,0,36.919998,30.610001,-9,-9,6,1,1,0,0,13,3,1,305,557744.31,0,0,2434.0503 -7852,9670,17667,-9,17668,17670,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.93945,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,837.5,1634464.4,0,0,5227.4048 -7852,9670,17668,17670,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,0,4,8.5280514,8.6343374,0,2,0,-9,6,0,0,102.70056,0,0,1,39,1,5,1,-9,-9,2019,1,1,11,1,24,37,15,1,0,1,0,25.752367,25.752367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,38.240002,63.73,5,1,1,0,0,10,5,1,837.5,1634464.4,0,0,5227.4048 -7852,9670,17669,-9,17668,17670,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.3534,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,837.5,1634464.4,0,0,5227.4048 -7852,9670,17670,17668,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,0,5,8.6875057,8.5651274,0,2,0,-9,12,0,0,-99.172829,0,0,0,39,1,4,1,2,2,2019,1,2,20,8,40,45,15,1,1,1,0,18.803776,18.803776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.240002,63.73,50,55,5,1,1,0,0,10,5,1,837.5,1634464.4,0,0,5227.4048 -7853,9671,17671,17672,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,9.0703468,9.3130722,7.4228463,1,0,-9,10,0,0,32.286686,0,0,0,60,1,5,1,1,1,2019,1,1,6,0,16,32,15,1,0,1,0,58.713295,58.713295,0,0,0,0,0,0,0,0,0,0,0,3.4182167,7.8618488,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,6,5,1,4901,2685301.8,0,0,8557.1934 -7853,9671,17672,17671,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,5,8.1848545,9.2111063,9.1526155,1,0,-9,38,0,0,42.031731,0,0,0,60,1,4,1,2,3,2019,1,2,5,1,12,55,15,1,0,1,0,28.026978,28.026978,0,0,0,0,0,0,0,0,0,0,0,5.4752326,8.9900293,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,6,5,1,4901,2685301.8,0,0,8557.1934 -7854,9672,17673,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,2,8.0445776,7.9217496,0,3,0,0,0,-9,0,-1121.7399,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,8,40,38,15,1,1,-9,0,8.6038189,8.6038189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.42,49.099998,-9,-9,2,1,1,0,1,10,3,0,2246,1064552.6,0,0,971.50592 -7855,9673,17674,17675,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,0,4,8.1216316,8.5346632,0,1,0,-9,7,0,-3,6.7473536,0,0,0,41,2,3,1,-9,-9,2019,1,1,16,4,52,50,15,1,1,1,0,9.213541,9.213541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,56.439999,55.959999,49.93,6,1,1,0,0,8,5,0,976.5,106278.26,0,0,2854.9385 -7855,9673,17675,17674,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,0,3,8.0076199,8.2078991,0,1,0,-9,7,0,3,-19.631607,0,0,1,38,2,4,1,-9,-9,2019,1,2,3,0,48,30,15,1,0,1,0,6.9928045,6.9928045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,41.82,56.439999,6,1,1,0,0,8,5,0,976.5,106278.26,0,0,2854.9385 -7856,9674,17676,17677,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,2,0,6.1946707,6.0780911,1,0,-9,35,0,-11,149.07805,0,0,0,72,2,2,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0800481,6.186667,.45609507,3,37.310001,53.5,67.160004,24.959999,5,1,1,0,0,1,3,1,572.5,683509.88,0,0,1975.1616 -7856,9674,17677,17676,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.3379383,7.7893353,1,0,-9,34,0,11,42.15197,0,0,0,61,1,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.05404,7.6305814,0,3,67.160004,24.959999,37.310001,53.5,6,1,1,0,0,1,3,1,572.5,683509.88,0,0,1975.1616 -7857,9675,17678,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-922.07007,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.07,6.3299999,-9,-9,5,1,1,0,0,12,1,0,871,-99938.953,0,0,2157.572 -7858,9676,17679,17680,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,2,0,5.1775036,5.0811329,1,0,-9,58,0,1,53.859711,0,0,0,79,3,4,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0614607,5.2309985,0,0,40.380001,23.690001,46.549999,41.889999,5,1,1,0,0,4,2,1,1115.5,415188.75,0,0,2687.3149 -7858,9676,17680,17679,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,7.3347435,6.8935351,1,0,-9,58,0,-1,-12.307732,0,0,0,80,3,2,3,3,3,2019,4,1,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2931631,7.1036487,0,0,46.549999,41.889999,40.380001,23.690001,6,1,1,0,0,4,2,1,1115.5,415188.75,0,0,2687.3149 -7859,9677,17681,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,7.3077898,7.4517627,3,0,0,0,-9,0,-1007.7449,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7266078,0,0,0,46.48,53.759998,-9,-9,6,1,1,0,0,9,3,1,184,722618.63,0,0,1097.4652 -7860,9678,17682,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-811.13757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.93,37.509998,-9,-9,5,1,1,0,0,5,1,1,701,4690.0361,0,0,1157.2839 -7861,9679,17683,17684,-9,-9,2,1,0,37,1,1,2,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,9,0,-2,1.564827,0,0,1,39,2,4,1,2,3,2019,3,1,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.080002,50.52,45.91,59.889999,3,1,1,1,0,7,5,1,501,324302.66,0,0,7441.6025 -7861,9679,17684,17683,-9,-9,1,1,1,39,1,1,2,0,2,-9,1,1,0,0,4,9.55159,9.6801529,0,2,0,-9,9,0,2,-124.47928,0,0,0,37,2,2,3,2,2,2019,2,2,12,0,44,45,15,1,0,3,0,39.842358,39.842358,0,0,0,0,0,0,0,0,0,0,0,7.670454,0,0,0,45.91,59.889999,38.080002,50.52,5,1,1,0,0,7,5,1,501,324302.66,0,0,7441.6025 -7861,9679,17685,-9,17683,17684,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.89893,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,501,324302.66,0,0,7441.6025 -7861,9679,17686,-9,17683,17684,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.0009,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,501,324302.66,0,0,7441.6025 -7862,9680,17687,17688,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.4236555,7.118741,1,0,-9,52,0,4,2.4905648,0,0,0,71,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.1184516,7.2451625,0,0,50.25,56.540001,54.099998,45.07,7,1,1,0,0,10,2,0,315.5,686329.88,0,0,2450.6934 -7862,9680,17688,17687,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,3.4545805,3.4710233,1,0,-9,52,0,-4,28.242512,0,0,0,75,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.0473866,3.5647676,22.579691,3,54.099998,45.07,50.25,56.540001,6,1,1,0,0,10,2,0,315.5,686329.88,0,0,2450.6934 -7863,9681,17689,17690,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,0,3,7.7515755,8.5527849,7.8515997,1,0,-9,10,0,12,-60.755154,0,0,0,57,2,5,3,-9,-9,2019,2,1,13,1,20,20,15,1,0,4,0,15.295375,15.295375,0,0,0,0,0,0,0,0,1,1,0,.89656264,7.5678339,0,0,51.700001,49.110001,59.040001,54.119999,6,1,1,0,0,8,5,1,1604,2851942.5,0,0,6049.7686 -7863,9681,17690,17689,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,0,5,0,9.0391188,8.7203417,1,0,-9,33,0,-12,48.061939,0,0,0,69,1,3,1,3,1,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1866684,7.3945684,0,0,59.040001,54.119999,51.700001,49.110001,7,1,1,0,0,8,5,1,1604,2851942.5,0,0,6049.7686 -7864,9682,17691,-9,17695,17693,4,1,1,17,2,0,2,0,2,1,2,3,0,0,5,6.7456565,7.2079201,0,2,0,0,0,-9,0,-1167.6865,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,74.839996,29.190001,-9,-9,7,2,3,0,0,4,2,1,449.79999,297366,0,0,2816.8328 -7864,9682,17692,-9,17695,17693,5,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.9989,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.98,53.259998,-9,-9,6,2,3,0,0,4,2,1,449.79999,297366,0,0,2816.8328 -7864,9682,17693,17695,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,8.1519737,8.1213665,0,2,0,-9,26,0,2,-2.4928329,0,0,0,43,3,4,3,2,3,2019,2,2,6,0,37,37,15,1,0,3,0,9.480401,9.480401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50.009998,53.139999,6,2,3,0,0,4,2,1,449.79999,297366,0,0,2816.8328 -7864,9682,17694,-9,17695,17693,6,1,1,15,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-1046.3607,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,20,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,-9,-9,3,2,3,0,0,4,2,1,449.79999,297366,0,0,2816.8328 -7864,9682,17695,17693,-9,-9,2,1,0,43,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,-2,-81.209908,0,0,1,45,1,4,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,53.139999,57.16,56.150002,6,2,3,0,0,4,2,1,449.79999,297366,0,0,2816.8328 -7864,9683,17696,-9,17695,17693,3,1,0,19,2,0,2,1,2,0,7,2,0,0,4,5.2342362,5.3338013,0,3,0,0,0,-9,0,-981.36493,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,1,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,4,2,1,182,-43278.703,0,0,-479.65845 -7865,9684,17697,17698,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,4,0,1,-114.05624,0,0,0,57,2,3,1,-9,-9,2019,3,1,10,0,12,11,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8311505,0,0,0,61.040001,39.41,43.599998,51.610001,5,1,1,0,0,11,4,1,407.5,482416.56,0,0,3246.2302 -7865,9684,17698,17697,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.2420292,8.5484457,0,1,0,-9,4,0,-1,25.876905,0,0,0,58,2,3,3,2,2,2019,2,2,9,0,37,38,15,1,0,4,0,16.287115,16.287115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.599998,51.610001,61.040001,39.41,7,1,1,0,0,11,4,1,407.5,482416.56,0,0,3246.2302 -7866,9685,17699,17700,-9,-9,2,1,1,52,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,1,-9,3,0,-9,0,0,49,2,2,3,-9,-9,2019,4,1,27,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,7.7199998,55.279999,1,1,1,1,0,4,1,0,991,-77167.586,0,0,1357.3 -7866,9685,17700,17699,-9,-9,1,1,0,49,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,26,-9,-3,0,-9,0,0,52,3,1,3,-9,-9,2019,4,2,36,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7.7199998,55.279999,16.040001,23.99,3,1,1,1,0,4,1,0,991,-77167.586,0,0,1357.3 -7866,9686,17701,-9,17700,17699,3,1,1,25,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1084.0587,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.054844,3,57.330002,53.459999,-9,-9,5,1,1,1,0,4,1,0,630,-110119.99,0,0,-794.95209 -7867,9687,17702,17703,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,5,0,7.4977102,7.3381972,1,0,-9,7,0,6,-5.925509,0,0,0,69,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0461664,7.2191491,0,0,50.540001,62.09,57.060001,57.759998,7,1,1,0,0,12,2,1,620,689598.38,0,0,6276.1099 -7867,9687,17703,17702,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,7,0,-6,144.00972,0,0,0,75,1,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6015654,0,0,0,57.060001,57.759998,50.540001,62.09,6,1,1,0,0,12,2,1,620,689598.38,0,0,6276.1099 -7868,9688,17704,17705,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,0,4,0,7.1067133,7.6450524,1,0,-9,33,0,-6,69.106583,0,0,0,67,2,2,3,3,2,2019,2,1,8,0,20,40,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7082276,8.0640564,0,0,61.27,46.029999,54.389999,44.259998,1,1,1,0,0,10,4,1,196.5,2067227.9,0,0,3060.6372 -7868,9688,17705,17704,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,2,5.1945925,8.2203045,8.4131556,1,0,-9,35,0,6,85.669434,0,0,0,61,1,4,1,2,1,2019,3,2,6,0,10,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4004073,8.2165785,0,0,54.389999,44.259998,61.27,46.029999,5,1,1,0,0,10,4,1,196.5,2067227.9,0,0,3060.6372 -7869,9689,17706,17707,-9,-9,1,1,0,56,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,22,0,6,189.28461,0,0,0,50,3,4,1,2,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.9451623,0,18.71352,3,55.529999,51.549999,33.099998,56.509998,6,1,1,0,0,5,4,1,1816.5,472892.44,0,0,2877.7778 -7869,9689,17707,17706,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,0,4,8.8533974,8.5815716,0,2,0,-9,11,0,-6,-106.21407,0,0,0,56,2,3,3,-9,-9,2019,2,1,11,2,43,43,15,1,0,3,0,18.699795,18.699795,0,0,0,0,0,0,0,14.5,0,0,0,2.7527595,0,17.528423,3,33.099998,56.509998,55.529999,51.549999,5,1,1,0,0,5,4,1,1816.5,472892.44,0,0,2877.7778 -7869,9690,17708,-9,17706,17707,3,1,0,26,2,0,1,0,2,-9,2,1,0,0,4,7.864923,7.7191234,0,3,0,0,0,-9,0,-816.88196,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,44,15,1,0,-9,1,9.4495049,9.4495049,0,0,0,0,0,0,0,0,0,0,0,3.0398238,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,4,1,503,204513.53,0,0,846.82764 -7869,9691,17709,-9,17706,17707,4,1,0,18,2,0,1,1,2,0,7,2,0,0,4,5.719418,5.7657485,0,3,0,0,0,-9,0,-869.4483,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,15,4,7,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,37.02,61.299999,-9,-9,6,1,1,0,0,5,4,1,1204,93211.141,0,0,576.04071 -7870,9692,17710,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,0,4,8.8385401,9.3216639,0,1,0,-9,22,0,4,52.696793,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,9,3,38,42,15,1,0,-9,0,25.230066,25.230066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.380001,36.299999,51.77,58.57,6,1,1,0,0,5,5,1,1469,539515.06,0,0,2547.4766 -7870,9693,17711,-9,-9,-9,2,1,0,48,2,0,0,0,1,-9,2,1,0,0,4,8.7976656,8.8780146,0,1,0,-9,22,0,-4,-38.922546,0,0,0,-9,-9,-9,-9,2,1,2019,1,1,12,0,30,43,15,1,0,-9,0,22.399654,22.399654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,53.380001,36.299999,6,1,1,0,0,5,5,1,923,261660.31,0,0,1229.4274 -7871,9694,17712,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,2,0,6.6677833,6.8629308,3,0,0,0,-9,0,-918.28174,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,2.2841158,0,0,0,0,77.981834,0,1,1,0,4.5481868,6.8758631,0,0,58.310001,42.52,-9,-9,6,1,1,0,0,8,2,1,319,428912.22,0,0,1109.5243 -7872,9695,17713,-9,17714,17715,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1175.8475,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,343.66666,-59022.883,0,0,2712.9072 -7872,9695,17714,17715,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,3,7.1083384,7.3882022,6.0802488,2,0,-9,4,0,-3,47.684017,0,0,1,46,2,4,1,2,2,2019,1,2,7,0,20,20,15,1,0,1,0,6.5278826,6.5278826,0,0,0,0,0,0,0,0,1,1,0,5.2687383,0,0,0,48.450001,57.490002,61.119999,51.57,6,1,1,0,0,2,3,0,343.66666,-59022.883,0,0,2712.9072 -7872,9695,17715,17714,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.3026485,8.4256916,0,2,0,-9,4,0,3,24.71917,0,0,0,43,2,3,1,3,2,2019,1,1,7,0,37,37,15,1,0,1,0,11.81131,11.81131,0,0,0,0,0,0,0,0,1,1,0,2.4064944,0,0,0,61.119999,51.57,48.450001,57.490002,6,1,1,0,0,2,3,0,343.66666,-59022.883,0,0,2712.9072 -7873,9696,17716,-9,17719,17718,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.51794,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,859.75,23027.902,0,0,2577.0308 -7873,9696,17717,-9,17719,17718,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.6222,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,859.75,23027.902,0,0,2577.0308 -7873,9696,17718,17719,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,5,8.1208534,7.952189,0,2,0,-9,18,0,3,12.933636,0,0,0,33,2,3,3,2,2,2019,2,1,9,0,40,40,15,1,0,3,0,8.4939871,8.4939871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,33.080002,59.580002,5,1,1,0,0,6,3,0,859.75,23027.902,0,0,2577.0308 -7873,9696,17719,17718,-9,-9,1,1,0,33,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,17,0,-3,-99.36068,0,0,1,36,2,5,1,2,2,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.080002,59.580002,57.060001,57.759998,4,1,1,0,0,6,3,0,859.75,23027.902,0,0,2577.0308 -7874,9697,17720,17721,-9,-9,2,1,1,52,1,0,0,0,3,-9,2,1,0,0,4,8.2426062,8.4285011,0,1,0,-9,28,0,-16,2.6295545,0,0,0,68,2,2,3,2,2,2019,2,1,9,1,40,40,15,1,0,4,0,11.964299,11.964299,0,0,0,0,0,0,0,7,1,1,0,0,0,3.8713362,1,51.240002,58.84,57.330002,37.400002,6,1,1,0,0,2,4,1,2754.5,642320.69,0,0,3061.1018 -7874,9697,17721,17720,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,1,2,0,6.5055552,6.4588242,1,0,-9,28,0,16,-39.33028,0,0,0,52,3,4,1,2,2,2019,3,2,5,0,0,12,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2440367,6.5621595,0,0,57.330002,37.400002,51.240002,58.84,6,1,1,0,0,2,4,1,2754.5,642320.69,0,0,3061.1018 -7875,9698,17722,17723,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,4,7.5701408,7.5082035,0,1,0,-9,29,0,-7,-16.906185,0,0,0,67,1,2,3,2,3,2019,2,2,6,0,15,20,15,1,0,4,0,14.664276,14.664276,0,0,0,0,0,0,0,2,1,1,0,4.0765681,0,.8064487,3,64.230003,44.689999,52,41.279999,6,1,1,0,0,10,3,1,962,799886,0,0,2752.3484 -7875,9698,17723,17722,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,2,0,6.2159214,6.1298604,1,0,-9,29,0,7,39.473919,0,0,0,60,3,4,1,2,2,2019,3,1,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.149734,5.8540015,0,0,52,41.279999,64.230003,44.689999,6,1,1,0,0,10,3,1,962,799886,0,0,2752.3484 -7876,9699,17724,17725,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,4,8.4369125,8.5763826,0,1,0,1,1,-9,2,63.319637,0,1,0,25,1,3,1,2,2,2019,1,2,5,0,55,63,15,1,0,1,0,11.1733,11.1733,0,0,0,0,0,0,0,0,0,0,0,5.896719,0,0,0,54.450001,56.220001,46.669998,55.57,6,1,1,0,0,5,5,1,1424.5,-58822.449,0,0,3124.2432 -7876,9699,17725,17724,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,3,8.0741224,8.5940857,0,1,0,-9,1,-9,-2,27.878252,-9,1,1,27,2,4,1,-9,-9,2019,1,1,12,1,38,0,15,1,0,1,0,10.453117,10.453117,0,0,0,0,0,0,0,0,0,0,0,3.5773213,0,0,0,46.669998,55.57,54.450001,56.220001,5,1,1,0,0,5,5,1,1424.5,-58822.449,0,0,3124.2432 -7877,9700,17726,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,5,8.3698883,8.6006632,0,3,0,0,0,-9,0,-971.41711,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,46,0,15,1,0,-9,0,9.492897,9.492897,0,0,0,0,0,0,0,0,0,0,0,.75622606,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,4,0,781,-12083.434,0,0,1512.7344 -7878,9701,17727,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,4,3,0,0,5,5.461308,8.3174982,8.0202103,3,0,0,0,-9,0,-1051.1155,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,2,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9759657,8.0931473,0,0,59.43,58.049999,-9,-9,1,1,1,0,0,8,4,1,120,1746803.8,0,0,2640.1038 -7879,9702,17728,-9,17731,17729,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.08478,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,668.75,586394.31,0,0,3861.9104 -7879,9702,17729,17731,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,3,7.651473,7.915976,0,2,0,-9,11,0,-1,-60.807541,0,0,0,38,1,3,1,2,2,2019,1,1,9,0,24,24,15,1,0,1,0,9.8535776,9.8535776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.380001,52.860001,52,54.509998,6,1,1,0,0,9,4,1,668.75,586394.31,0,0,3861.9104 -7879,9702,17730,-9,17731,17729,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.63086,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,4,1,668.75,586394.31,0,0,3861.9104 -7879,9702,17731,17729,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,8.9648933,8.9475784,0,2,0,-9,11,0,1,-7.0122848,0,0,1,37,2,3,1,2,2,2019,1,2,12,1,40,50,15,1,0,1,0,23.557423,23.557423,0,0,0,0,0,0,0,0,1,1,0,3.9977829,0,0,0,52,54.509998,43.380001,52.860001,5,1,1,0,0,9,4,1,668.75,586394.31,0,0,3861.9104 -7880,9703,17732,-9,-9,-9,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,8.3930073,8.1651173,0,3,0,0,0,-9,0,-987.74927,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,37,38,15,1,0,-9,1,13.178049,13.178049,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.796158,3,57.34,39.889999,-9,-9,5,2,3,0,0,8,4,0,402,-58666.668,0,0,-142.86131 -7881,9704,17733,-9,17736,17735,6,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.01581,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,10,2,0,633.83331,145986.72,0,0,3524.0332 -7881,9704,17734,-9,17736,17735,4,1,0,15,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-985.48553,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,2,3,0,0,10,2,0,633.83331,145986.72,0,0,3524.0332 -7881,9704,17735,17736,-9,-9,8,1,1,43,1,0,4,0,2,-9,1,1,0,0,3,4.7109342,4.9023385,0,2,0,-9,1,-9,-4,107.30795,-9,0,0,47,1,5,1,-9,-9,2019,1,1,12,0,30,0,15,1,0,1,0,.51143253,.51143253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.01,42.560001,46.77,49.130001,3,2,3,0,0,10,2,0,633.83331,145986.72,0,0,3524.0332 -7881,9704,17736,17735,-9,-9,1,1,0,47,1,0,4,0,1,-9,2,1,0,0,5,8.0773649,7.9979787,0,2,0,1,1,-9,4,-120.50078,0,0,0,43,2,3,1,2,2,2019,1,8,8,0,48,35,15,1,0,1,0,8.4752245,8.4752245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.77,49.130001,28.01,42.560001,7,2,3,0,0,10,2,0,633.83331,145986.72,0,0,3524.0332 -7881,9704,17737,-9,17736,17735,7,1,0,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-961.15094,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,10,2,0,633.83331,145986.72,0,0,3524.0332 -7881,9704,17738,-9,17736,17735,5,1,1,14,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-993.03571,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,10,2,0,633.83331,145986.72,0,0,3524.0332 -7881,9705,17739,-9,17736,17735,2,1,1,18,2,0,4,0,2,-9,7,2,0,0,5,7.2499609,7.1855192,0,3,0,0,0,-9,0,-958.74298,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.90273571,0,0,0,67.330002,43.48,-9,-9,7,2,3,0,0,10,3,0,354,-42534.023,0,0,1067.264 -7882,9706,17740,17742,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,0,4,7.8461399,8.2847395,0,2,0,-9,9,0,-8,80.188133,0,0,1,43,2,4,1,2,2,2019,1,2,8,0,47,47,15,1,0,1,0,5.8317299,5.8317299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,50.93,54.77,7,1,1,0,0,11,4,0,404,544540.69,0,0,3452.085 -7882,9706,17741,-9,17740,17742,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.55475,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,4,0,404,544540.69,0,0,3452.085 -7882,9706,17742,17740,-9,-9,2,1,1,43,1,0,1,0,2,-9,1,1,0,0,4,8.471652,8.4239397,0,2,0,-9,9,0,8,-149.51118,0,0,0,35,1,4,1,-9,-9,2019,1,1,10,1,65,70,15,1,0,1,0,7.4219317,7.4219317,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.93,54.77,51.830002,57.200001,7,1,1,0,0,11,4,0,404,544540.69,0,0,3452.085 -7883,9707,17743,17744,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,0,2,8.4321747,8.6295671,0,2,0,-9,1,-9,1,20.264549,-9,0,0,32,2,4,3,2,-9,2019,2,2,7,1,38,0,15,1,0,3,0,10.633271,10.633271,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.800419,3,52.299999,30.75,56.57,57.779999,5,1,1,0,0,12,3,0,1417.25,26822.879,0,0,2054.8906 -7883,9707,17744,17743,-9,-9,2,1,0,32,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,-1,47.783886,-9,0,1,33,2,2,1,2,2,2019,3,1,13,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,129.92305,3,56.57,57.779999,52.299999,30.75,3,1,1,0,0,12,3,0,1417.25,26822.879,0,0,2054.8906 -7883,9707,17745,-9,17744,17743,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1072.2264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,0,1417.25,26822.879,0,0,2054.8906 -7883,9707,17746,-9,17744,17743,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-999.93787,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,3,0,1417.25,26822.879,0,0,2054.8906 -7884,9708,17747,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.2355213,8.4118853,0,3,0,-9,0,0,0,-978.77844,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,45,15,1,0,-9,0,9.4471178,9.4471178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,4,0,391,-53873.027,0,0,1513.9319 -7885,9709,17748,17749,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,6.8131552,7.3571625,1,0,-9,51,0,-2,-13.260627,0,0,0,80,3,1,3,3,-9,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8986781,6.7910709,0,1,42.849998,38.110001,40.41,20,6,1,1,0,0,12,2,1,1145,236209.13,0,0,1958.875 -7885,9709,17749,17748,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,1,1,0,6.1256299,6.3167758,1,0,-9,51,0,2,42.075596,0,0,0,78,2,3,3,3,3,2019,4,1,23,11,0,0,15,4,1,4,0,0,0,1,15.026336,107.06076,0,0,0,135.4814,0,1,1,0,6.6674218,6.2312665,0,0,40.41,20,42.849998,38.110001,3,1,1,0,0,12,2,1,1145,236209.13,0,0,1958.875 -7886,9710,17750,-9,17752,17753,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.82581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,699.25,451870.25,0,0,3312.7822 -7886,9710,17751,-9,17752,17753,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.1073,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,4,1,699.25,451870.25,0,0,3312.7822 -7886,9710,17752,17753,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,0,3,7.4965315,7.6220126,0,2,0,-9,16,0,-4,29.838631,0,0,1,38,2,3,1,3,2,2019,1,1,12,0,22,18,15,1,0,1,0,8.6640053,8.6640053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.029999,51.130001,57.330002,53.459999,4,1,1,0,1,8,4,1,699.25,451870.25,0,0,3312.7822 -7886,9710,17753,17752,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,0,3,8.9358482,8.7833586,0,2,0,-9,17,0,4,-79.905617,0,0,0,34,2,3,1,2,2,2019,1,2,6,0,45,45,15,1,0,1,0,19.409351,19.409351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,36.029999,51.130001,6,1,1,0,0,8,4,1,699.25,451870.25,0,0,3312.7822 -7887,9711,17754,17755,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,0,5,0,7.5126343,7.2803144,1,0,-9,60,0,4,66.824081,0,0,0,82,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0941052,0,0,57.060001,57.759998,53,44,7,1,1,0,0,2,2,1,415,532087.44,0,0,2925.8623 -7887,9711,17755,17754,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,-4,24.939413,-9,0,0,86,2,5,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,57.060001,57.759998,6,1,1,0,0,2,2,1,415,532087.44,0,0,2925.8623 -7888,9712,17756,-9,-9,-9,1,1,0,82,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1038.9506,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3965921,0,0,0,58.16,42.18,-9,-9,6,1,1,0,0,1,1,1,261,102138.72,0,0,239.50974 -7889,9713,17757,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,8,3,1,1,2,0,7.1311965,6.9870524,3,0,0,0,-9,0,-892.30219,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1971908,0,0,48.529999,44.130001,-9,-9,4,1,1,0,0,2,3,0,1209,258652.55,0,0,2666.24 -7890,9714,17758,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,1,1,0,0,3,9.652194,9.2935343,0,3,0,0,0,-9,0,-933.10864,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,50,50,15,1,0,-9,0,36.728859,36.728859,0,0,0,0,0,0,0,0,1,1,0,5.8606873,0,0,0,57.900002,51.84,-9,-9,6,1,1,0,0,10,5,1,518,439704.59,0,0,8607.1631 -7891,9715,17759,17760,-9,-9,2,1,1,48,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,7,0,5,0,0,0,0,43,2,2,3,-9,-9,2019,4,1,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.209999,35.919998,37.029999,52.5,3,1,1,0,0,12,1,1,329,-76100.156,0,0,1046.6584 -7891,9715,17760,17759,-9,-9,1,1,0,43,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,7,0,-5,0,0,0,1,48,3,2,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.359537,3,37.029999,52.5,35.209999,35.919998,4,1,1,1,0,12,1,1,329,-76100.156,0,0,1046.6584 -7892,9716,17761,17762,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.5203867,7.8274179,1,0,-9,36,0,-1,-35.996479,0,0,0,66,2,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0348816,0,0,53.32,41.439999,52.990002,51.279999,6,1,1,0,0,6,3,1,467.5,240354.48,0,0,2361.1235 -7892,9716,17762,17761,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,0,3,6.0369697,6.8868599,6.2760229,1,0,-9,36,0,1,-33.625225,0,0,0,65,2,3,3,-9,-9,2019,2,1,8,0,12,10,15,1,0,4,0,4.6787338,4.6787338,0,0,0,0,0,0,0,0,1,1,0,6.5036345,5.882163,0,0,52.990002,51.279999,53.32,41.439999,7,1,1,0,0,6,3,1,467.5,240354.48,0,0,2361.1235 -7893,9717,17763,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1044.6115,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.919998,50.16,-9,-9,4,1,1,0,0,9,1,0,713.5,77745.594,0,0,1018.9562 -7893,9717,17764,-9,17763,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.1696,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,713.5,77745.594,0,0,1018.9562 -7894,9718,17765,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,2,0,7.408,7.4514303,3,0,0,0,-9,0,-938.98218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6606297,7.3657928,0,0,52.080002,46.68,-9,-9,6,1,1,0,0,2,3,0,2252,190309.69,0,0,1451.504 -7895,9719,17766,17767,-9,-9,2,1,0,80,1,0,0,0,1,-9,4,3,0,1,2,0,7.5923376,7.5169392,1,0,-9,54,0,-5,-8.5007019,0,0,0,85,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.5884318,0,0,38.389999,40.889999,56.349998,29.9,5,2,3,0,0,8,2,1,844.5,730353.88,0,0,1880.7148 -7895,9719,17767,17766,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,54,0,5,19.540371,0,0,0,80,1,2,3,3,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,15.937626,0,0,0,0,2,1,0,1,0,0,2.0802565,1,56.349998,29.9,38.389999,40.889999,5,2,3,0,0,8,2,1,844.5,730353.88,0,0,1880.7148 -7896,9720,17768,17769,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,1,3,0,6.9309349,6.5730238,1,0,-9,9,0,-7,22.71217,0,0,0,77,2,3,3,-9,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.1117077,6.494452,118.63936,1,50,47,53,46,5,1,1,0,0,7,2,1,373,309420.69,0,0,2762.0681 -7896,9720,17769,17768,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,7,-33.239807,0,0,0,70,3,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,46,50,47,5,1,1,0,0,7,2,1,373,309420.69,0,0,2762.0681 -7897,9721,17770,-9,17772,17771,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.20306,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,1032.3334,23421.854,0,0,1219.2367 -7897,9721,17771,17772,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,0,3,7.973372,7.8770523,0,2,0,-9,7,0,3,30.645006,0,1,0,25,2,1,3,2,3,2019,2,2,11,0,37,40,15,1,0,3,0,6.9264908,6.9264908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,41.32,23.219999,3,1,1,0,1,13,3,0,1032.3334,23421.854,0,0,1219.2367 -7897,9721,17772,17771,-9,-9,2,1,0,25,1,1,1,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,7,0,-3,22.177757,0,1,1,28,2,3,1,-9,-9,2019,3,1,13,1,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.32,23.219999,52,54.509998,4,1,1,0,1,13,3,0,1032.3334,23421.854,0,0,1219.2367 -7898,9722,17773,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,0,1,0,7.7019553,8.0014954,3,0,0,0,-9,0,-979.36975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0604482,7.6371017,0,0,56.52,22.01,-9,-9,5,1,1,0,0,1,3,1,3768,203404.75,0,0,2531.6531 -7899,9723,17774,17775,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,7.7071533,7.7454057,5.4783053,1,0,-9,24,0,0,75.809662,0,0,0,46,3,3,3,3,1,2019,2,2,10,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7432899,0,0,0,57.330002,53.459999,46.330002,55.93,5,2,3,0,0,4,3,0,1298,363132.53,0,0,1504.0754 -7899,9723,17775,17774,-9,-9,2,1,1,46,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,4,0,0,-41.675331,0,0,0,46,2,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.330002,55.93,57.330002,53.459999,5,2,3,1,0,4,3,0,1298,363132.53,0,0,1504.0754 -7899,9724,17776,-9,17774,17775,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,7.9907875,7.8875756,0,3,0,0,0,-9,0,-888.39563,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,0,15,1,0,-9,1,8.7871761,8.7871761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,2,3,0,0,4,3,0,1083,-70420.164,0,0,1089.9808 -7899,9725,17777,-9,17774,17775,4,1,1,25,3,0,0,0,2,-9,2,1,0,0,4,7.8880181,7.9923401,0,3,0,0,0,-9,0,-1048.6244,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,2,3,0,0,4,3,0,566,95171.18,0,0,2060.4453 -7899,9726,17778,-9,17774,17775,5,1,0,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-979.12885,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.900002,57.009998,-9,-9,4,2,3,0,0,4,1,0,393,-85470.25,0,0,0 -7900,9727,17779,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1035.7653,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.45219,3,51.02,52.220001,-9,-9,6,1,1,0,0,13,1,1,290,54769.895,0,0,638.23297 -7901,9728,17780,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-927.53552,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,6,1,0,46,383317.38,0,0,-197.38808 -7902,9729,17781,-9,17782,17783,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.731,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,1,0,1484.3334,50837.453,0,0,2042.9153 -7902,9729,17782,17783,-9,-9,1,1,0,44,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,-5,0,0,0,1,49,2,1,3,2,2,2019,4,2,16,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.889999,56.25,35.509998,23.049999,5,1,1,0,1,2,1,0,1484.3334,50837.453,0,0,2042.9153 -7902,9729,17783,17782,-9,-9,2,1,1,49,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,21,0,5,0,0,0,0,44,2,3,3,3,2,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.509998,23.049999,33.889999,56.25,2,1,1,0,1,2,1,0,1484.3334,50837.453,0,0,2042.9153 -7903,9730,17784,-9,-9,17785,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,7.5034027,7.5011077,0,3,0,0,0,-9,0,-941.30225,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,7,30,42,15,1,1,-9,1,5.4166565,5.4166565,0,0,0,0,0,0,0,96,1,1,0,0,0,119.17692,3,17.84,49.830002,-9,-9,1,1,1,0,1,11,3,0,280,461103.66,0,0,1530.6914 -7903,9731,17785,-9,-9,-9,2,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1043.5181,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54,46,-9,-9,6,1,1,0,0,11,1,0,1999,-21913.479,0,0,1747.3408 -7904,9732,17786,17787,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,3,8.5098019,8.5888786,0,1,0,-9,2,0,3,7.5346756,0,0,0,32,1,2,1,2,3,2019,1,2,8,1,43,43,15,1,0,1,0,18.631729,18.631729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.48,49.450001,31.629999,39.790001,5,1,1,0,0,7,5,1,1187.5,76778.938,0,0,3178.5645 -7904,9732,17787,17786,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,2,8.1686754,8.3977976,0,1,0,-9,2,0,-3,-132.88771,-9,0,1,35,1,3,1,-9,-9,2019,1,1,26,11,48,0,15,1,1,1,0,10.774567,10.774567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.629999,39.790001,48.48,49.450001,4,1,1,0,0,7,5,1,1187.5,76778.938,0,0,3178.5645 -7905,9733,17788,17790,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,3,9.5521154,9.4180937,0,2,0,-9,10,0,2,150.11856,0,0,0,32,2,3,1,-9,-9,2019,1,2,11,1,39,33,15,1,0,1,0,46.010925,46.010925,0,0,0,0,0,0,0,0,0,0,0,3.2268419,0,0,0,45.060001,53.759998,57.330002,53.459999,6,1,1,0,0,9,5,1,648.33331,198131.98,0,0,5514.0752 -7905,9733,17789,-9,17790,17788,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-864.23401,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,648.33331,198131.98,0,0,5514.0752 -7905,9733,17790,17788,-9,-9,2,1,0,32,1,1,1,0,2,-9,2,1,0,0,3,7.5760379,7.3963428,0,2,0,-9,10,0,-2,26.46999,0,0,1,34,2,3,1,2,2,2019,1,1,6,0,20,44,15,1,0,1,0,13.2292,13.2292,0,0,0,0,0,0,0,0,0,0,0,3.5779378,0,0,0,57.330002,53.459999,45.060001,53.759998,7,1,1,0,0,9,5,1,648.33331,198131.98,0,0,5514.0752 -7906,9734,17791,17792,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,69,0,-3,-28.631311,0,0,0,88,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,13.856749,0,11.066792,0,0,0,1,1,0,3.3992712,0,0,0,68.690002,15.95,55.799999,37.630001,6,1,1,0,0,2,2,1,775.5,416546.41,0,0,1904.9628 -7906,9734,17792,17791,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,1,3,0,5.0333376,5.0911298,1,0,-9,69,0,3,78.808205,0,0,0,85,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.6953583,5.0097709,123.78767,1,55.799999,37.630001,68.690002,15.95,5,1,1,0,0,2,2,1,775.5,416546.41,0,0,1904.9628 -7907,9735,17793,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-987.95715,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.9205434,45.349567,0,0,1,1,0,0,0,0,0,37.169998,27.629999,-9,-9,6,1,1,0,0,9,1,1,509,184811.8,0,0,1514.9595 -7908,9736,17794,17795,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,1,4,0,0,0,1,0,-9,43,0,-14,0,0,0,0,75,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0773916,0,10.413564,1,51.240002,58.84,53.09,40.290001,7,1,1,0,0,11,1,1,648.5,126689.48,0,0,1507.3016 -7908,9736,17795,17794,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,43,0,14,0,0,0,0,61,2,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,5.7038054,0,0,0,0,0,1,1,0,4.2088718,0,0,0,53.09,40.290001,51.240002,58.84,2,1,1,0,0,11,1,1,648.5,126689.48,0,0,1507.3016 -7909,9737,17796,17797,-9,-9,1,1,1,35,1,0,0,0,2,-9,1,1,0,0,5,7.1814108,7.0225821,0,1,0,1,1,-9,2,-47.382591,0,0,0,33,1,5,1,3,2,2019,1,2,24,8,40,40,15,1,1,1,0,4.6286273,4.6286273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.690001,60.830002,46.900002,48.560001,2,1,1,0,0,13,4,1,187,205493.3,0,0,3117.9675 -7909,9737,17797,17796,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,5,8.292388,7.9334054,0,1,0,-9,1,-9,-2,-68.252769,-9,0,1,35,2,5,1,-9,-9,2019,1,1,11,3,35,0,15,1,0,1,0,12.354509,12.354509,0,0,0,0,0,0,0,0,0,0,0,7.1610103,0,0,0,46.900002,48.560001,29.690001,60.830002,6,1,1,0,0,13,4,1,187,205493.3,0,0,3117.9675 -7910,9738,17798,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.1373272,8.645813,0,3,0,0,0,-9,0,-954.70575,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,35,38,15,1,0,-9,0,20.275465,20.275465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,3,4,0,0,8,5,0,280,10094.349,0,0,1948.1428 -7911,9739,17799,17800,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,54,0,0,115.90186,0,0,0,72,2,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3715816,0,14.312501,1,57.060001,57.759998,53.459999,35.959999,2,1,1,0,0,2,2,1,483,840359.63,0,0,690.51807 -7911,9739,17800,17799,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.8519917,6.6894512,1,0,-9,54,0,0,-40.737316,0,0,0,72,3,5,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0572534,6.9621539,0,0,53.459999,35.959999,57.060001,57.759998,6,1,1,0,0,2,2,1,483,840359.63,0,0,690.51807 -7912,9740,17801,-9,-9,-9,1,1,0,80,2,0,0,0,3,-9,4,3,0,0,3,0,6.1470971,6.4541774,3,0,0,0,-9,0,-975.54932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6711314,6.1081066,0,0,46.549999,58.299999,-9,-9,6,1,1,0,0,8,2,0,324,362978.78,0,0,-197.22809 -7913,9741,17802,17803,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,5,5.5928159,8.1417904,8.1250601,1,0,-9,44,0,-1,95.868439,0,0,0,65,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8532853,8.5688963,0,0,60.02,56.419998,46.900002,56.66,6,1,1,0,0,4,4,1,852,1746333.5,0,0,3532.4443 -7913,9741,17803,17802,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.953948,7.4894347,1,0,-9,44,0,1,-68.011833,0,0,0,64,1,5,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8426614,7.7304764,0,0,46.900002,56.66,60.02,56.419998,6,1,1,0,0,4,4,1,852,1746333.5,0,0,3532.4443 -7914,9742,17804,17805,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.8701029,8.9651346,0,2,0,-9,6,0,3,105.8568,0,0,0,39,1,3,1,1,1,2019,1,2,10,0,48,44,15,1,0,1,0,19.800837,19.800837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.799999,54.59,29.139999,59.740002,6,1,1,0,0,8,5,1,1363.6666,965587.63,0,0,4336.2471 -7914,9742,17805,17804,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,3,8.1572886,7.6306114,0,2,0,-9,6,0,-3,98.252319,0,0,1,42,1,4,1,2,1,2019,1,1,18,7,23,22,15,1,1,1,0,16.192142,16.192142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.139999,59.740002,45.799999,54.59,3,1,1,0,0,8,5,1,1363.6666,965587.63,0,0,4336.2471 -7914,9742,17806,-9,17805,17804,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.1454,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1363.6666,965587.63,0,0,4336.2471 -7915,9743,17807,-9,17809,17808,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-969.19641,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,5,0,728.66669,634472.44,0,0,6510.9971 -7915,9743,17808,17809,-9,-9,1,1,1,33,1,1,1,0,1,-9,2,1,0,0,5,8.9477253,8.9446688,0,2,0,-9,3,0,4,65.262924,0,0,0,29,1,4,3,1,1,2019,2,2,1,0,40,40,15,1,0,3,0,30.137796,30.137796,0,0,0,0,0,0,0,0,1,1,0,8.7216282,0,0,0,57.060001,57.759998,39.23,60.150002,7,1,1,0,0,12,5,0,728.66669,634472.44,0,0,6510.9971 -7915,9743,17809,17808,-9,-9,2,1,0,29,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,-4,55.48785,0,1,1,33,1,5,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3607602,0,0,0,39.23,60.150002,57.060001,57.759998,5,1,1,0,0,12,5,0,728.66669,634472.44,0,0,6510.9971 -7916,9744,17810,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,8.568428,8.3497858,0,3,0,0,0,-9,0,-1063.8207,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,43,47,15,1,1,-9,0,15.75659,15.75659,0,0,0,0,0,0,0,7,0,0,0,0,0,2.2343061,3,26.549999,60.830002,-9,-9,4,1,1,0,0,4,5,0,1590,825548.63,0,0,2618.8752 -7917,9745,17811,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-910.80676,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,.6057663,0,0,1,1,0,0,0,0,0,28.200001,25.379999,-9,-9,2,1,1,0,0,13,1,0,689,0,0,0,1834.9105 -7918,9746,17812,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,4,3,0,0,2,0,8.0224113,8.5501451,1,0,-9,7,0,18,114.57422,0,0,0,-9,-9,-9,-9,3,2,2019,3,2,10,0,0,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9295399,8.3580055,0,0,49.43,46.560001,36.330002,45.470001,4,1,1,0,0,13,5,1,4558,1535887,0,0,1559.4861 -7918,9747,17813,-9,-9,-9,2,1,1,44,2,0,0,0,1,-9,2,1,0,0,3,8.7256479,8.8682861,0,1,0,-9,7,0,-18,64.854523,0,0,0,-9,-9,-9,-9,3,3,2019,2,1,12,2,54,51,15,1,0,-9,0,13.727004,13.727004,0,0,0,0,0,0,0,0,0,0,0,4.2086101,0,0,0,36.330002,45.470001,49.43,46.560001,6,1,1,0,0,13,5,1,147,760670.81,0,0,4168.9385 -7919,9748,17814,17815,-9,-9,2,1,0,66,1,0,2,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,10,0,0,0,0,0,0,66,1,3,3,3,3,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,1,0,0,15.155185,0,16.67881,0,0,1,1,0,0,0,0,0,42.57,37.110001,42.110001,40.080002,5,2,3,1,0,4,1,1,2065.5,209804.56,0,0,244.38217 -7919,9748,17815,17814,-9,-9,1,1,1,66,1,0,2,0,1,-9,4,3,0,0,3,0,0,0,2,0,-9,53,0,0,0,0,0,0,66,3,3,3,3,2,2019,4,2,10,0,0,30,15,4,0,3,0,0,0,1,0,0,2.4742086,0,12.831713,0,0,1,1,0,0,0,0,0,42.110001,40.080002,42.57,37.110001,5,2,3,0,0,4,1,1,2065.5,209804.56,0,0,244.38217 -7919,9749,17816,-9,17814,17815,3,1,0,46,3,0,2,0,1,-9,2,1,0,0,2,6.9826117,7.3114152,0,3,0,0,0,-9,0,-1022.7337,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,21,8,30,30,15,1,1,-9,1,6.046113,6.046113,0,0,0,0,0,0,0,74.5,1,1,0,0,0,74.313637,3,32.720001,45.02,-9,-9,5,2,3,0,0,4,3,1,639,552748.38,0,0,1636.1987 -7919,9750,17817,-9,17816,-9,4,1,0,18,2,0,2,1,2,0,7,2,0,0,1,0,0,0,3,0,0,0,-9,0,-956.17773,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,21,9,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.209999,40.82,-9,-9,4,2,3,0,0,4,3,1,375,171930.25,0,0,0 -7919,9751,17818,-9,17816,-9,5,1,0,18,2,0,2,1,3,0,7,2,0,1,1,0,0,0,3,0,0,0,-9,0,-913.87665,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.5672362,3,61.049999,23.950001,-9,-9,5,2,3,0,0,4,3,1,1118,194649.73,0,0,1431.9506 -7920,9752,17819,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,2,1,0,0,3,5.0363035,8.9881516,8.3543081,3,0,0,0,-9,0,-921.44232,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,3,3,15,1,0,-9,0,8.0511751,8.0511751,0,0,0,0,0,0,0,7,1,1,0,8.0415869,8.8310108,7.6898527,3,49.970001,53.990002,-9,-9,6,1,1,0,0,10,5,1,1425,2056027.8,0,0,4580.0244 -7921,9753,17820,17821,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,0,2,8.3285408,8.1884527,0,2,0,-9,9,0,3,104.07038,0,0,0,47,3,2,3,2,3,2019,2,1,9,1,50,60,15,1,0,3,0,10.210447,10.210447,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.860001,43.68,44.77,35.240002,4,1,1,0,0,13,3,1,1174,138155.98,0,0,2628.4399 -7921,9753,17821,17820,-9,-9,1,1,1,47,1,0,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,9,0,-3,138.2865,0,0,0,50,2,2,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,35.240002,46.860001,43.68,4,1,1,0,0,13,3,1,1174,138155.98,0,0,2628.4399 -7921,9753,17822,-9,17820,17821,3,1,0,17,2,0,2,1,3,0,7,2,0,0,4,6.3775668,6.4642792,0,2,0,0,0,-9,0,-918.9278,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,25,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.620001,66.199997,-9,-9,3,1,1,0,0,13,3,1,1174,138155.98,0,0,2628.4399 -7922,9754,17823,-9,17825,-9,2,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-954.72955,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,381.75,90020.414,0,0,1482.6761 -7922,9754,17824,-9,17825,-9,4,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-986.47003,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,381.75,90020.414,0,0,1482.6761 -7922,9754,17825,-9,-9,-9,1,1,0,26,2,1,3,0,3,-9,6,3,0,0,3,0,0,0,4,0,-9,0,-9,0,-900.76306,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.1377974,3,38.740002,61.790001,-9,-9,4,1,1,0,0,13,1,0,381.75,90020.414,0,0,1482.6761 -7922,9754,17826,-9,17825,-9,3,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-979.41779,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,1,0,381.75,90020.414,0,0,1482.6761 -7923,9755,17827,17828,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,65,0,-3,-63.765778,0,0,0,84,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.939999,41.290001,38.740002,61.790001,2,1,1,0,0,2,1,1,424.5,66936.156,0,0,1980.2089 -7923,9755,17828,17827,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,1,3,0,4.9868941,5.1891923,1,0,-9,65,0,3,-50.073925,0,0,0,81,3,3,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,4.997191,65.383278,1,38.740002,61.790001,53.939999,41.290001,6,1,1,0,0,2,1,1,424.5,66936.156,0,0,1980.2089 -7924,9756,17829,17830,-9,-9,2,1,0,37,1,0,1,0,2,-9,1,1,0,0,5,6.8517962,6.8406286,0,2,0,-9,11,0,-1,35.36031,0,0,1,38,1,3,1,-9,-9,2019,1,1,9,0,15,20,15,1,0,1,0,7.8950353,7.8950353,0,0,0,0,0,0,0,0,1,1,0,7.5502992,0,0,0,54.099998,59.110001,53.369999,44.490002,6,2,3,0,0,9,4,1,781.33331,265740.44,0,0,2809.6997 -7924,9756,17830,17829,-9,-9,1,1,1,38,1,0,1,0,1,-9,2,1,0,0,3,8.6345663,8.1823769,0,2,0,-9,11,0,1,-53.273106,0,0,0,37,2,5,1,-9,-9,2019,1,2,12,0,40,42,15,1,0,1,0,11.83118,11.83118,0,0,0,0,0,0,0,2,1,1,0,.55720836,0,3.2275712,3,53.369999,44.490002,54.099998,59.110001,5,1,1,0,0,9,4,1,781.33331,265740.44,0,0,2809.6997 -7924,9756,17831,-9,17829,17830,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.1713,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,4,1,781.33331,265740.44,0,0,2809.6997 -7925,9757,17832,17833,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,8.6825237,8.3050671,0,2,0,-9,19,0,3,51.014713,0,0,0,42,3,4,1,2,2,2019,1,2,12,0,50,40,15,1,0,1,0,11.008336,11.008336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.560001,40.919998,37.740002,51.32,4,1,1,0,0,13,4,1,607,421582.69,0,0,3838.7886 -7925,9757,17833,17832,-9,-9,2,1,0,42,1,0,1,0,3,-9,2,1,0,0,4,8.0689383,7.7780042,0,2,0,-9,19,0,-3,-11.947175,0,0,1,45,2,3,1,2,2,2019,1,1,11,2,40,40,15,1,0,1,0,9.235404,9.235404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.740002,51.32,52.560001,40.919998,6,1,1,0,0,13,4,1,607,421582.69,0,0,3838.7886 -7926,9758,17834,17835,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,9.2794237,9.1581841,0,1,0,-9,9,0,-1,-36.758392,0,0,0,59,2,3,3,2,2,2019,2,2,15,4,53,48,15,1,1,3,0,23.400574,23.400574,0,0,0,0,0,0,0,5.48,1,1,0,1.9357297,0,3.6989374,3,56.099998,49.93,44.59,45.669998,6,1,1,0,0,11,5,1,218,230998.22,0,0,3858.3967 -7926,9758,17835,17834,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,9,0,1,-11.297058,0,0,0,58,2,3,1,2,2,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,2.3012893,0,68.568214,3,44.59,45.669998,56.099998,49.93,6,1,1,0,0,11,5,1,218,230998.22,0,0,3858.3967 -7926,9759,17836,-9,17835,17834,3,1,1,33,2,0,0,0,2,-9,2,1,0,1,3,7.0522532,6.9338589,0,3,0,0,0,-9,0,-969.20197,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,16,3,15,1,0,-9,1,6.6188045,6.6188045,0,0,0,0,0,0,0,0,1,1,0,3.0190029,0,0,0,35.189999,51.540001,-9,-9,4,1,1,0,0,11,2,1,2201,-168925.06,0,0,315.46243 -7927,9760,17837,-9,17841,17838,6,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.84613,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,1255.1666,45283.891,0,0,4263.79 -7927,9760,17838,17841,-9,-9,5,1,1,32,1,0,4,0,3,-9,2,1,0,0,4,8.5240898,8.470067,0,2,0,-9,8,0,-13,-92.877083,-9,0,0,45,2,5,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,14.833915,14.833915,0,0,0,0,0,0,0,0,1,1,0,7.2912498,0,0,0,50,58,60.02,56.419998,5,4,1,0,0,13,4,1,1255.1666,45283.891,0,0,4263.79 -7927,9760,17839,-9,17841,17838,7,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.509,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,1255.1666,45283.891,0,0,4263.79 -7927,9760,17840,-9,17841,17838,8,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.9192,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,1255.1666,45283.891,0,0,4263.79 -7927,9760,17841,17838,-9,-9,1,1,0,45,1,0,4,0,2,-9,2,1,0,0,5,8.0583372,8.1139917,0,2,0,-9,8,0,13,-32.531055,0,0,0,32,3,4,1,2,2,2019,1,5,6,0,32,13,15,1,0,1,0,10.490655,10.490655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,50,58,7,1,1,0,0,13,4,1,1255.1666,45283.891,0,0,4263.79 -7927,9760,17842,-9,17841,17838,9,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-858.36261,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,1255.1666,45283.891,0,0,4263.79 -7928,9761,17843,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,3,8.3509312,8.582243,5.8977537,1,0,1,1,-9,-1,22.676451,0,1,0,-9,-9,-9,-9,3,2,2019,-9,2,22,8,38,45,15,1,1,-9,0,15.919302,15.919302,0,0,0,0,0,0,0,0,0,0,0,5.6647282,0,0,0,26.549999,52.799999,50,57,4,4,5,0,0,8,4,0,1366,95871.203,0,0,1863.6831 -7929,9762,17844,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,0,2,8.8927994,8.5995426,0,3,0,0,0,-9,0,-945.22534,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,43,42,15,1,0,-9,0,16.242725,16.242725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.459999,41.619999,-9,-9,6,1,1,0,0,11,5,1,240,602442.06,0,0,2198.1929 -7930,9763,17845,17846,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,5.3878622,5.7969708,1,0,-9,55,0,-2,64.256065,0,0,0,77,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0755339,5.7500906,0,0,58.16,47.380001,44.02,52.669998,6,1,1,0,0,4,2,1,1622,347149.44,0,0,1235.0397 -7930,9763,17846,17845,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,6.9681048,6.6266208,1,0,-9,55,0,2,35.756119,0,0,0,75,2,4,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8971648,5.561367,0,0,44.02,52.669998,58.16,47.380001,6,1,1,0,0,4,2,1,1622,347149.44,0,0,1235.0397 -7931,9764,17847,-9,17849,17848,1,1,1,37,2,0,0,0,3,-9,2,1,0,0,4,7.5080457,7.5349293,0,3,0,0,0,-9,0,-919.33759,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,2,39,50,15,1,0,-9,1,4.6577368,4.6577368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,52.950001,-9,-9,5,1,1,0,1,6,3,1,259,0,0,0,-293.03207 -7931,9765,17848,17849,-9,-9,2,1,1,69,1,0,0,0,1,-9,2,1,0,0,3,7.4385681,7.3998995,0,1,0,-9,6,0,3,-120.93948,0,0,0,66,2,4,1,-9,-9,2019,1,3,10,1,24,37,15,1,0,1,0,6.6165938,6.6165938,0,0,0,0,0,0,0,0,1,1,0,6.4480023,0,0,0,53,47,57.16,56.150002,5,4,1,0,0,6,3,1,476,1897906.8,0,0,4188.1152 -7931,9765,17849,17848,-9,-9,3,1,0,66,1,0,0,0,2,-9,2,1,0,0,4,8.2949276,7.5512114,0,1,0,-9,6,0,-3,109.26316,0,0,0,69,1,3,1,-9,-9,2019,1,2,14,2,17,17,15,1,0,1,0,17.070816,17.070816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,53,47,6,1,1,0,0,6,3,1,476,1897906.8,0,0,4188.1152 -7932,9766,17850,-9,-9,-9,1,1,1,27,2,0,0,0,3,-9,2,1,0,0,4,8.6012096,8.4627876,0,3,0,-9,0,0,0,-1114.6066,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,45,45,15,1,0,-9,0,13.490271,13.490271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.440002,47.810001,-9,-9,6,1,1,0,0,2,5,0,2207,149305.77,0,0,2198.7837 -7933,9767,17851,-9,17852,17856,3,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.2412,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,858.83331,85863.18,0,0,2024.9904 -7933,9767,17852,17856,-9,-9,2,1,0,32,1,1,4,0,2,-9,2,1,0,0,3,5.8528757,5.8028584,0,2,0,-9,11,0,0,-15.858841,0,0,1,41,2,3,1,2,2,2019,1,1,12,0,6,0,15,1,0,1,0,7.3137918,7.3137918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.68,55.459999,52.790001,51.639999,4,1,1,0,0,7,2,0,858.83331,85863.18,0,0,2024.9904 -7933,9767,17853,-9,17852,17856,5,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.4093,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,858.83331,85863.18,0,0,2024.9904 -7933,9767,17854,-9,17852,17856,4,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.701,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,858.83331,85863.18,0,0,2024.9904 -7933,9767,17855,-9,17852,17856,6,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.6774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,858.83331,85863.18,0,0,2024.9904 -7933,9767,17856,17852,-9,-9,1,1,1,41,1,1,4,0,2,-9,2,1,0,0,3,7.5824847,7.7833672,0,2,0,-9,11,0,9,25.687096,0,0,0,32,2,3,1,2,2,2019,1,2,7,0,30,35,15,1,0,1,0,7.8999348,7.8999348,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.790001,51.639999,38.68,55.459999,7,1,1,0,0,7,2,0,858.83331,85863.18,0,0,2024.9904 -7934,9768,17857,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,2,1,0,0,4,7.6354089,7.5182328,0,3,0,0,0,-9,0,-997.55786,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,37,27,15,1,0,-9,0,6.5577254,6.5577254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.060001,61.939999,-9,-9,6,1,1,0,0,12,3,1,367,56097.207,0,0,1676.4534 -7935,9769,17858,17859,-9,-9,2,1,0,53,1,0,1,0,1,-9,2,1,0,0,4,8.3486891,8.5042362,0,2,0,-9,28,0,-2,39.339775,0,0,0,55,3,4,1,2,2,2019,1,1,8,0,37,44,15,1,0,1,0,15.533983,15.533983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,51.830002,57.200001,6,1,1,0,0,13,4,1,416,707478.44,0,0,3359.7822 -7935,9769,17859,17858,-9,-9,1,1,1,55,1,0,1,0,3,-9,1,1,0,0,4,8.1916571,7.9162006,0,2,0,-9,28,0,2,-34.142399,0,0,0,53,1,4,1,3,3,2019,1,2,8,0,55,60,15,1,0,1,0,6.0217848,6.0217848,0,0,0,0,0,0,0,0,0,0,0,2.2256696,0,0,0,51.830002,57.200001,54.790001,55.860001,6,1,1,0,0,13,4,1,416,707478.44,0,0,3359.7822 -7936,9770,17860,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-765.89032,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.690001,66.32,-9,-9,6,3,4,1,1,9,1,1,310,-110223.84,0,0,-505.66306 -7937,9771,17861,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,4,6.6708927,6.4030986,0,3,0,0,0,-9,0,-1017.1852,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,30,15,1,0,-9,0,2.5834141,2.5834141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.43,49.130001,-9,-9,6,1,1,0,1,5,2,1,907,311463.38,0,0,502.38293 -7937,9772,17862,-9,17861,-9,2,1,0,20,2,0,0,0,2,-9,3,3,0,0,2,5.9280562,6.2975888,0,3,0,-9,0,-9,0,-1025.641,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,35,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.7269754,3,23.530001,42.279999,-9,-9,4,1,1,1,1,5,2,1,452,89563.016,0,0,-432.01001 -7938,9773,17863,-9,17867,17866,4,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,6.9097052,7.1543384,0,2,0,0,0,-9,0,-1002.9959,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,4,1,907.40002,469210.28,0,0,2885.957 -7938,9773,17864,-9,17867,17866,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1135.3824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,907.40002,469210.28,0,0,2885.957 -7938,9773,17865,-9,17867,17866,6,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.284,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,907.40002,469210.28,0,0,2885.957 -7938,9773,17866,17867,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,5,9.2390451,8.8751545,6.2066278,2,0,-9,8,0,8,13.291847,0,0,0,40,2,3,3,2,2,2019,2,2,6,0,48,45,15,1,0,3,0,18.448223,18.448223,0,0,0,0,0,0,0,0,1,1,0,6.5401392,0,0,0,57.060001,57.759998,46.080002,57.200001,6,1,1,0,0,9,4,1,907.40002,469210.28,0,0,2885.957 -7938,9773,17867,17866,-9,-9,2,1,0,40,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-8,45.015209,0,0,1,48,2,5,1,3,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,57.060001,57.759998,5,1,1,0,0,9,4,1,907.40002,469210.28,0,0,2885.957 -7938,9774,17868,-9,17867,17866,3,1,1,19,2,0,2,0,2,-9,2,1,0,0,5,7.4390354,7.7315812,0,3,0,0,0,-9,0,-909.25122,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,39,15,1,0,-9,1,5.5275278,5.5275278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,9,3,1,670,54757.977,0,0,597.07434 -7939,9775,17869,17870,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,0,2,7.7714515,7.912374,0,2,0,-9,13,0,4,-9.284914,0,0,0,52,2,1,1,3,-9,2019,1,1,26,11,37,36,15,1,1,1,0,7.7478156,7.7478156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.629999,44.970001,58.040001,12.44,3,1,1,0,1,1,3,0,486,238638.8,0,0,490.13397 -7939,9775,17870,17869,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,0,1,0,0,0,2,0,-9,13,0,-4,-47.134312,0,0,0,56,2,2,1,2,3,2019,1,2,29,11,24,96,15,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,58.040001,12.44,20.629999,44.970001,1,1,1,0,1,1,3,0,486,238638.8,0,0,490.13397 -7939,9775,17871,-9,17869,17870,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1030.7085,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,1,3,0,486,238638.8,0,0,490.13397 -7940,9776,17872,17873,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.81287,6.6237173,1,0,-9,50,0,7,49.832569,0,0,0,65,3,3,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7264228,7.0696125,0,0,54.790001,55.860001,46.549999,43.16,6,1,1,0,0,6,2,1,838,236408.88,0,0,1165.3815 -7940,9776,17873,17872,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-7,-.72032696,0,0,0,72,2,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1530108,0,0,0,46.549999,43.16,54.790001,55.860001,4,1,1,0,0,6,2,1,838,236408.88,0,0,1165.3815 -7941,9777,17874,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1052.604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,1,0,620,4129.5547,0,0,979.55383 -7941,9778,17875,-9,-9,17874,2,1,0,42,2,0,0,0,2,-9,2,1,0,0,4,8.6843443,8.5531721,0,3,0,0,0,-9,0,-1149.5673,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,59,49,15,1,0,-9,1,9.0147514,9.0147514,0,0,0,0,0,0,0,0,1,1,0,.51164448,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,5,0,311,221550.88,0,0,2157.6436 -7941,9779,17876,-9,17875,-9,3,1,0,22,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-981.77716,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.98714775,0,0,0,65.470001,45.380001,-9,-9,7,1,1,0,0,12,1,0,133,116452.23,0,0,826.11285 -7941,9780,17877,-9,17875,-9,4,1,0,19,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-862.4931,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,48,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,27.940001,58.669998,-9,-9,5,1,1,0,0,12,1,0,822,-29329.514,0,0,121.50084 -7942,9781,17878,17879,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,6,0,1,0,0,0,0,71,2,5,3,3,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,36.66,60.57,6,1,1,0,0,13,1,0,475,179280.38,0,0,1885.8921 -7942,9781,17879,17878,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,6,0,-1,0,0,0,0,72,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,60.57,51,46,5,1,1,0,0,13,1,0,475,179280.38,0,0,1885.8921 -7943,9782,17880,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,5,8.4965239,8.5148649,0,3,0,0,0,-9,0,-1051.6782,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,37,0,15,1,0,-9,0,14.926581,14.926581,0,0,0,0,0,0,0,0,0,0,0,5.1304212,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,12,5,1,1019,175559.03,0,0,4127.8076 -7944,9783,17881,17882,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,0,4,6.6709099,6.9020748,0,1,0,-9,1,-9,2,62.127773,-9,0,0,46,3,3,1,3,3,2019,1,1,9,1,40,0,15,1,0,1,0,2.7934248,2.7934248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,55.91,39.23,6,1,1,0,0,2,3,1,897,38336.324,0,0,2422.8916 -7944,9783,17882,17881,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,3,7.6963897,7.7786775,0,1,0,-9,1,-9,-2,50.331985,-9,0,0,48,2,4,1,2,2,2019,1,2,11,0,30,0,15,1,0,1,0,9.1535416,9.1535416,0,0,0,0,0,0,0,0,0,0,0,7.1071754,0,0,0,55.91,39.23,52,55,4,1,1,0,0,2,3,1,897,38336.324,0,0,2422.8916 -7944,9784,17883,-9,17882,17881,3,1,1,25,3,0,0,0,2,-9,1,1,0,0,5,7.1896658,6.6975737,0,3,0,-9,0,-9,0,-1221.7516,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,1,40,0,15,1,0,-9,1,2.4421659,2.4421659,0,0,0,0,0,0,0,0,0,0,0,6.1815515,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,2,2,1,407,204194.19,0,0,729.17291 -7944,9785,17884,-9,17882,17881,4,1,0,22,3,0,0,0,2,-9,2,1,0,0,3,7.6659856,7.8851585,0,3,0,-9,0,-9,0,-1010.7028,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,17,4,42,0,15,1,1,-9,1,6.3047638,6.3047638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,-9,-9,5,1,1,0,0,2,3,1,489,-140222.22,0,0,995.90192 -7945,9786,17885,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,2,1,0,0,2,8.454567,7.8808961,0,3,0,-9,0,-9,0,-1025.2117,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,43,0,15,1,0,-9,0,12.811009,12.811009,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,37.52,52.139999,-9,-9,3,1,1,0,0,8,4,1,813,522626.03,0,0,393.99832 -7946,9787,17886,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,0,3,8.5442171,8.4618425,0,3,0,0,0,-9,0,-974.40527,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,47,37,15,1,0,-9,0,11.56953,11.56953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.91,42.650002,-9,-9,6,1,1,0,0,1,5,1,281,1156670.1,0,0,2310.8086 -7947,9788,17887,17888,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,3.2600398,2.7037973,1,0,-9,7,0,4,-22.258198,0,0,0,68,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.0621603,0,0,47.779999,36.16,55.380001,43.849998,7,1,1,0,0,5,2,0,120.5,-43295.273,0,0,1624.537 -7947,9788,17888,17887,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-4,56.154129,0,0,0,72,3,2,3,3,2,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.380001,43.849998,47.779999,36.16,6,1,1,0,0,5,2,0,120.5,-43295.273,0,0,1624.537 -7948,9789,17889,17890,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,0,4,9.7767496,9.6816196,6.5838375,1,0,-9,41,0,-5,109.44611,0,0,0,71,2,3,3,2,2,2019,2,2,11,1,16,20,15,1,0,4,0,120.74129,120.74129,0,0,0,0,0,0,0,0,1,1,0,7.506896,7.3704243,0,0,50.43,53.689999,56.349998,48.330002,4,1,1,0,0,9,5,1,579,1514419.5,0,0,10912.17 -7948,9789,17890,17889,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,41,0,5,7.8285894,0,0,0,66,1,4,1,2,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5190611,0,0,0,56.349998,48.330002,50.43,53.689999,6,1,1,0,0,9,5,1,579,1514419.5,0,0,10912.17 -7949,9790,17891,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-942.92999,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.669998,41.91,-9,-9,7,1,1,0,0,8,1,0,411,382709.81,0,0,939.97797 -7950,9791,17892,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-982.82593,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,51,-9,-9,4,1,1,0,0,7,1,0,129,30033.209,0,0,2068.4468 -7951,9792,17893,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,2,1,0,0,3,8.0797386,7.8600979,0,3,0,0,0,-9,0,-1027.1349,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,39,46,15,1,0,-9,0,9.3666096,9.3666096,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.009998,49.59,-9,-9,5,1,1,0,0,7,4,0,217,177604.83,0,0,974.39642 -7952,9793,17894,17895,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,7.5275087,6.7406206,1,0,-9,10,0,2,-1.6620618,0,0,0,78,2,4,3,3,3,2019,4,1,17,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3344674,0,0,39.41,35.080002,40.080002,51.709999,6,1,1,0,0,8,2,1,509,394084.09,0,0,1375.4346 -7952,9793,17895,17894,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,-2,-34.92411,0,0,0,80,2,3,3,3,3,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5197158,0,0,0,40.080002,51.709999,39.41,35.080002,4,1,1,0,0,8,2,1,509,394084.09,0,0,1375.4346 -7953,9794,17896,17897,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,0,3,6.4855809,6.3864436,0,1,0,-9,33,0,-3,8.7908621,0,0,0,65,2,2,3,3,2,2019,2,2,7,0,10,20,15,1,0,4,0,5.968708,5.968708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,67.599998,31.35,6,1,1,0,0,10,3,1,392.5,581699.38,0,0,1754.0107 -7953,9794,17897,17896,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,2,0,7.5051436,7.5660362,1,0,-9,33,0,3,-154.46709,0,0,0,62,3,3,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.977015,7.5682802,0,0,67.599998,31.35,57.330002,53.459999,6,1,1,0,0,10,3,1,392.5,581699.38,0,0,1754.0107 -7954,9795,17898,17899,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,53,0,-5,28.358709,0,0,0,78,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.779999,57,51,6,1,1,0,0,9,2,1,810.5,1030846.1,0,0,1500.8644 -7954,9795,17899,17898,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,6.9926414,6.9818535,1,0,-9,53,0,5,-57.252068,0,0,0,73,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8939633,0,0,57,51,56.57,57.779999,6,1,1,0,0,9,2,1,810.5,1030846.1,0,0,1500.8644 -7955,9796,17900,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,6.8752832,7.0539188,3,0,-9,0,-9,0,-1019.6093,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6171484,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,13,2,1,1062,429373.91,0,0,1879.4631 -7956,9797,17901,17902,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,7.1980438,7.3815808,1,0,-9,51,0,2,31.736645,0,0,0,73,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1749697,7.3621049,0,0,59.310001,49.810001,48.93,39.82,6,4,5,0,0,4,2,1,308,531277.81,0,0,922.33685 -7956,9797,17902,17901,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-2,-120.3941,0,0,0,75,1,3,3,3,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.874336,0,0,0,48.93,39.82,59.310001,49.810001,6,1,1,0,0,4,2,1,308,531277.81,0,0,922.33685 -7957,9798,17903,17904,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.3204927,8.2615585,1,0,-9,9,0,3,-22.024181,0,0,0,70,2,4,3,3,2,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4208488,8.885231,0,0,54.790001,55.860001,46.709999,48.990002,7,1,1,0,0,2,4,1,1772.5,1914237.4,0,0,3769.2803 -7957,9798,17904,17903,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.8249807,7.1017294,1,0,-9,9,0,-3,2.598628,0,0,0,73,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0749607,7.0005016,0,0,46.709999,48.990002,54.790001,55.860001,6,1,1,0,0,2,4,1,1772.5,1914237.4,0,0,3769.2803 -7958,9799,17905,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,3,0,4.0362082,4.1241512,3,0,0,0,-9,0,-1115.238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.0986593,4.2294674,0,0,40.43,39.18,-9,-9,2,1,1,0,0,9,2,1,299,333090.13,0,0,819.62775 -7959,9800,17906,17907,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,6.3898139,6.3833518,0,1,0,-9,9,0,0,-86.780121,0,0,0,51,2,3,1,3,3,2019,1,1,10,0,30,30,15,1,0,1,0,2.1448247,2.1448247,0,0,0,0,0,0,0,27.5,0,0,0,0,0,31.912195,3,59.060001,48.59,44.610001,46.919998,6,1,1,0,0,10,3,1,683,121447.84,0,0,916.13324 -7959,9800,17907,17906,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,7.9568357,8.0071497,0,1,0,-9,9,0,0,2.8042016,0,0,0,51,2,3,1,-9,-9,2019,1,2,6,0,59,50,15,1,0,1,0,5.5338049,5.5338049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.610001,46.919998,59.060001,48.59,2,1,1,0,0,10,3,1,683,121447.84,0,0,916.13324 -7960,9801,17908,17909,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,3,0,9.1278305,9.1299286,1,0,-9,49,0,2,-109.98056,0,0,0,72,1,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8480585,9.1089211,0,0,59.07,43.049999,57.09,33.470001,6,1,1,0,0,9,5,1,1394,2689064,0,0,5449.7261 -7960,9801,17909,17908,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,-2,69.948395,0,0,0,74,1,3,3,2,2,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,7.9831152,8.7909575,0,0,0,7.5594988,0,1,1,0,4.3176074,0,0,0,57.09,33.470001,59.07,43.049999,5,1,1,0,0,9,5,1,1394,2689064,0,0,5449.7261 -7961,9802,17910,-9,17911,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-988.59918,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,5,1,615.5,383902.31,0,0,2694.5884 -7961,9802,17911,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,2,1,0,0,3,9.1280384,9.2907314,6.395956,4,0,0,0,-9,0,-875.42084,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,22,10,35,40,15,1,1,-9,0,25.523016,25.523016,0,0,0,0,0,0,0,0,0,0,0,6.4862175,0,0,0,32.169998,55.709999,-9,-9,4,1,1,0,0,12,5,1,615.5,383902.31,0,0,2694.5884 -7962,9803,17912,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,0,4,8.63694,8.8082733,0,4,0,0,0,-9,0,-1022.1001,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,39,37,15,1,0,-9,0,18.273598,18.273598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,5,1,825.5,30036.984,0,0,2918.7969 -7962,9803,17913,-9,17912,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1066.9465,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,5,1,825.5,30036.984,0,0,2918.7969 -7963,9804,17914,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,0,3,8.8634262,8.9975328,0,3,0,0,0,-9,0,-1048.5026,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,48,55,15,1,1,-9,0,14.950522,14.950522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.349998,53.490002,-9,-9,3,1,1,0,0,12,5,1,273,663562.31,0,0,3804.3987 -7963,9805,17915,-9,17914,-9,2,1,0,21,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-967.50757,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,3,0,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.259998,-9,-9,7,1,1,1,0,12,1,1,397,-34373.301,0,0,0 -7963,9806,17916,-9,17914,-9,3,1,0,19,2,0,0,0,3,-9,2,1,0,0,4,6.6535769,6.6321201,0,3,0,0,0,-9,0,-956.05768,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,15,20,15,1,0,-9,1,6.1949186,6.1949186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,12,2,1,489,206597.34,0,0,1225.0842 -7964,9807,17917,17918,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,2,0,6.1340785,6.0556726,1,0,-9,7,0,-6,109.27701,0,0,0,67,2,3,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2614236,0,0,44.330002,27.139999,55.23,46.150002,5,1,1,0,0,13,3,1,254.5,831493.88,0,0,3489.6968 -7964,9807,17918,17917,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.5685439,7.7754021,1,0,-9,7,0,6,-74.893227,0,0,0,61,2,2,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6958361,0,0,55.23,46.150002,44.330002,27.139999,6,1,1,0,0,13,3,1,254.5,831493.88,0,0,3489.6968 -7965,9808,17919,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,6.616693,6.6751108,3,0,0,0,-9,0,-1003.2585,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.036118,6.8293033,0,0,58.150002,52.91,-9,-9,2,1,1,0,0,2,2,1,2712,314900.88,0,0,101.25768 -7965,9809,17920,-9,17919,-9,2,1,1,34,2,0,0,0,1,-9,2,1,0,0,4,8.6112099,8.1317806,0,3,0,0,0,-9,0,-1013.847,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,39,22,15,1,0,-9,1,12.93124,12.93124,0,0,0,0,0,0,0,0,1,1,0,1.1929654,0,0,0,40.77,61.040001,-9,-9,5,1,1,0,0,2,5,1,2570,1514633.1,0,0,1044.8982 -7966,9810,17921,17923,-9,-9,2,1,1,31,1,1,2,0,1,-9,2,1,0,0,4,8.7800779,8.8199577,0,2,0,-9,5,0,0,96.602722,-9,0,0,31,1,4,1,-9,-9,2019,1,1,7,0,41,0,15,1,0,1,0,18.154243,18.154243,0,0,0,0,0,0,0,0,1,1,0,8.6814508,0,0,0,57.16,56.150002,35.220001,59.389999,7,1,1,0,0,13,4,0,807,350133.94,0,0,6082.0732 -7966,9810,17922,-9,17923,17921,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.80713,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,4,0,807,350133.94,0,0,6082.0732 -7966,9810,17923,17921,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,0,4,7.6080356,7.4759183,0,2,0,-9,5,0,0,42.418365,0,0,1,31,1,4,1,2,2,2019,1,2,11,0,21,0,15,1,0,1,0,11.836955,11.836955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.220001,59.389999,57.16,56.150002,6,1,1,0,0,13,4,0,807,350133.94,0,0,6082.0732 -7966,9810,17924,-9,17923,17921,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.88171,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,4,0,807,350133.94,0,0,6082.0732 -7967,9811,17925,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,0,5,9.0302372,9.249238,0,3,0,-9,0,-9,0,-1003.419,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,40,0,15,1,0,-9,0,20.755289,20.755289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.029999,48.18,-9,-9,6,1,1,0,0,9,5,1,1350,440886.88,0,0,2652.3 -7968,9812,17926,-9,17930,17929,5,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.6627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,0,935.83331,66216.352,0,0,2955.7573 -7968,9812,17927,-9,17930,17929,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.2628,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,3,0,935.83331,66216.352,0,0,2955.7573 -7968,9812,17928,-9,17930,17929,4,1,0,11,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-969.26245,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,9,3,0,935.83331,66216.352,0,0,2955.7573 -7968,9812,17929,17930,-9,-9,2,1,1,35,1,0,4,0,2,-9,2,1,0,0,3,7.5153313,7.2006884,0,2,0,-9,14,0,3,-49.001625,0,0,0,32,2,4,1,2,2,2019,1,1,9,0,33,0,15,1,0,1,0,7.3677135,7.3677135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,54.790001,55.860001,6,1,1,0,0,9,3,0,935.83331,66216.352,0,0,2955.7573 -7968,9812,17930,17929,-9,-9,1,1,0,32,1,0,4,0,2,-9,2,1,0,0,4,7.8723178,7.7803922,0,2,0,-9,14,0,-3,-40.919605,0,0,1,35,2,3,1,2,2,2019,1,2,7,0,48,50,15,1,0,1,0,6.0164418,6.0164418,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.790001,55.860001,52.990002,51.279999,7,1,1,0,0,9,3,0,935.83331,66216.352,0,0,2955.7573 -7968,9812,17931,-9,17930,17929,3,1,1,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-960.70734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,3,0,935.83331,66216.352,0,0,2955.7573 -7969,9813,17932,17933,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,4,8.2234888,8.0208702,0,1,0,-9,34,-9,1,-65.883095,-9,0,0,61,2,3,1,3,3,2019,1,1,7,0,35,0,15,1,0,1,0,11.527374,11.527374,0,0,0,0,0,0,0,0,0,0,0,2.1287503,0,0,0,54.099998,50.73,57.330002,53.459999,7,1,1,0,0,2,4,1,253.5,810433.06,0,0,2831.501 -7969,9813,17933,17932,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,7.7959957,7.9722352,7.233779,1,0,-9,34,-9,-1,-153.66928,-9,0,0,62,3,4,1,2,2,2019,1,2,7,0,22,0,15,1,0,1,0,15.547837,15.547837,0,0,0,0,0,0,0,0,0,0,0,3.8624766,7.1538739,0,0,57.330002,53.459999,54.099998,50.73,6,1,1,0,0,2,4,1,253.5,810433.06,0,0,2831.501 -7970,9814,17934,17935,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,7.0557966,7.1331482,1,0,-9,7,0,2,5.4234328,0,0,0,74,2,2,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4262619,0,0,54,46,55.310001,24.549999,6,1,1,0,0,6,2,1,1232,385643.06,0,0,2179.9548 -7970,9814,17935,17934,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,6.2317719,5.9904699,1,0,-9,53,0,-2,-151.14105,0,0,0,76,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9995791,6.3064394,0,0,55.310001,24.549999,54,46,6,1,1,0,0,6,2,1,1232,385643.06,0,0,2179.9548 -7971,9815,17936,-9,17938,17937,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1008.3049,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,595.66669,301581.16,0,0,3376.3318 -7971,9815,17937,17938,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,4,8.8668079,8.5242014,0,2,0,-9,4,0,2,43.517212,0,0,0,31,1,5,1,-9,-9,2019,1,1,9,0,40,41,15,1,0,1,0,13.195552,13.195552,0,0,0,0,0,0,0,0,1,1,0,3.4254332,0,0,0,57.16,56.150002,51.73,58.82,6,1,1,0,0,11,4,1,595.66669,301581.16,0,0,3376.3318 -7971,9815,17938,17937,-9,-9,1,1,0,31,1,1,1,0,1,-9,5,1,0,0,5,7.7357183,7.866035,0,2,0,-9,4,0,-2,-100.92969,0,0,1,33,1,4,1,1,2,2019,1,2,7,0,40,40,15,1,0,1,0,6.6803627,6.6803627,0,0,0,0,0,0,0,0,1,1,0,4.2559261,0,0,0,51.73,58.82,57.16,56.150002,6,1,1,0,0,11,4,1,595.66669,301581.16,0,0,3376.3318 -7972,9816,17939,17940,-9,-9,2,1,0,57,1,1,2,0,1,-9,2,1,0,0,3,8.3113937,8.3788595,0,2,0,-9,37,0,-1,160.16544,0,0,0,58,3,2,1,3,2,2019,1,1,6,0,45,0,15,1,0,1,0,9.4773226,9.4773226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,47,38,6,2,3,0,0,5,4,1,219.5,694579,0,0,2487.3469 -7972,9816,17940,17939,-9,-9,1,1,1,58,1,1,2,0,3,-9,2,1,0,0,2,8.1354532,8.2083044,0,2,0,-9,37,0,1,-79.282486,0,0,0,57,1,3,1,3,2,2019,1,2,13,2,38,40,15,1,0,1,0,9.911623,9.911623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,38,57.330002,53.459999,3,2,3,0,0,5,4,1,219.5,694579,0,0,2487.3469 -7972,9817,17941,-9,17939,17940,3,1,1,31,2,1,2,0,2,-9,2,1,0,0,4,8.6559134,8.455081,0,3,0,0,0,-9,0,-1048.4182,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,53,48,15,1,0,-9,1,14.409925,14.409925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,5,2,3,0,0,5,5,1,334,-97820.875,0,0,1780.2031 -7972,9818,17942,-9,17943,-9,5,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-956.56824,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,3,1,484.33334,-101800.84,0,0,1422.7156 -7972,9818,17943,-9,17939,17940,4,1,0,33,3,1,2,0,1,-9,2,1,0,0,3,7.8009114,7.6161656,0,3,0,-9,0,-9,0,-1009.768,-9,0,1,-9,-9,-9,-9,1,3,2019,-9,0,29,11,28,0,15,1,1,-9,1,7.8676271,7.8676271,0,0,0,0,0,0,0,0,1,1,0,1.1676174,0,0,0,37.470001,51.919998,-9,-9,4,2,3,0,0,5,3,1,484.33334,-101800.84,0,0,1422.7156 -7972,9818,17944,-9,17943,-9,6,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-906.12469,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,3,1,484.33334,-101800.84,0,0,1422.7156 -7973,9819,17945,17946,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,8,0,-10,0,0,0,0,90,3,3,3,-9,-9,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,26.249996,0,0,0,1,1,0,0,0,0,0,57.48,16.73,56,44,4,1,1,0,0,11,1,1,1216,112497.75,0,0,1371.4163 -7973,9819,17946,17945,-9,-9,1,1,1,90,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,22,0,10,0,0,0,0,80,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,5.3465543,0,0,24.442366,0,0,0,1,1,0,0,0,0,0,56,44,57.48,16.73,6,1,1,0,0,11,1,1,1216,112497.75,0,0,1371.4163 -7974,9820,17947,17949,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,1,9.0217018,8.964879,0,2,0,-9,7,-9,-1,-38.150784,-9,0,1,42,1,4,1,-9,-9,2019,1,2,29,12,37,0,15,1,1,1,0,25.964645,25.964645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.059999,25.91,48.869999,58.549999,3,1,1,0,0,4,5,1,1006.75,922527.63,0,0,5062.5088 -7974,9820,17948,-9,17947,17949,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1036.674,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,1006.75,922527.63,0,0,5062.5088 -7974,9820,17949,17947,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.6993895,8.8078976,0,2,0,-9,1,-9,1,-1.9945211,-9,0,0,41,1,1,1,-9,-9,2019,1,1,12,1,45,0,15,1,0,1,0,12.658895,12.658895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,27.059999,25.91,5,1,1,0,0,4,5,1,1006.75,922527.63,0,0,5062.5088 -7974,9820,17950,-9,17947,17949,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-922.07129,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,5,1,1006.75,922527.63,0,0,5062.5088 -7975,9821,17951,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,0,4,0,6.5301833,6.2847204,3,0,0,0,-9,0,-1078.0516,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4396584,6.6755433,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,11,2,1,178,314536.78,0,0,1819.5629 -7976,9822,17952,17953,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,0,3,0,6.3546772,6.5641365,1,0,-9,8,0,2,-5.5786109,0,0,0,84,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1316104,0,0,55,45,52,45,6,1,1,0,0,13,2,1,1510,360994.56,0,0,2435.6995 -7976,9822,17953,17952,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,0,3,0,6.8948264,6.7468171,1,0,-9,8,0,-2,28.697298,0,0,0,86,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9124928,0,0,52,45,55,45,6,1,1,0,0,13,2,1,1510,360994.56,0,0,2435.6995 -7977,9823,17954,17955,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,0,4,8.9926043,9.1905909,0,1,0,-9,6,0,0,44.623661,-9,0,0,47,1,4,1,2,1,2019,1,1,10,1,40,0,15,1,0,1,0,20.547709,20.547709,0,0,0,0,0,0,0,0,0,0,0,2.754487,0,0,0,51,54,51.830002,57.200001,6,2,3,0,0,8,5,1,3168.5,603291.63,0,0,5332.8545 -7977,9823,17955,17954,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,0,4,8.8506727,8.5040846,0,1,0,-9,15,0,0,-30.290051,0,0,0,47,1,4,1,2,2,2019,1,2,8,0,40,37,15,1,0,1,0,16.310535,16.310535,0,0,0,0,0,0,0,0,0,0,0,4.9171286,0,0,0,51.830002,57.200001,51,54,6,2,3,0,0,8,5,1,3168.5,603291.63,0,0,5332.8545 -7978,9824,17956,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,1,3,0,5.2210665,5.3673668,3,0,0,0,-9,0,-976.19299,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,.77169144,0,0,15.051621,19.413303,6.2960715,0,1,1,0,0,5.3404388,0,0,63.740002,25.790001,-9,-9,5,1,1,0,0,8,2,0,615,346441.16,0,0,1170.3462 -7978,9825,17957,-9,17956,-9,2,1,1,54,2,0,0,0,1,-9,2,1,0,0,3,9.0294733,8.9785461,0,3,0,0,0,-9,0,-804.98773,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,61,67,15,1,0,-9,1,11.86344,11.86344,0,0,0,0,0,0,0,2,1,1,0,.23864116,0,4.0141759,3,54.959999,53.169998,-9,-9,6,1,1,0,0,8,5,0,890,372684.03,0,0,2461.1528 -7979,9826,17958,17959,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,0,4,8.3748798,8.3630886,0,1,0,-9,31,0,2,-23.595013,0,0,0,48,2,5,1,3,3,2019,1,2,6,0,39,40,15,1,0,1,0,12.451197,12.451197,0,0,0,0,0,0,0,0,0,0,0,4.2336817,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,6,5,1,839.5,166966.23,0,0,4139.4878 -7979,9826,17959,17958,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,5,8.7019796,8.5773602,0,1,0,-9,6,0,-2,-7.0333018,0,0,0,50,3,4,1,3,2,2019,1,1,7,0,40,40,15,1,0,1,0,18.665884,18.665884,0,0,0,0,0,0,0,0,0,0,0,4.6024537,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,6,5,1,839.5,166966.23,0,0,4139.4878 -7979,9827,17960,-9,17958,17959,4,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,8.3100395,8.3360023,0,3,0,0,0,-9,0,-1001.098,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,38,15,1,0,-9,1,11.845272,11.845272,0,0,0,0,0,0,0,0,0,0,0,2.1223118,0,0,0,56.470001,59.400002,-9,-9,6,1,1,0,0,6,4,1,389,74141.672,0,0,628.14502 -7979,9828,17961,-9,17958,17959,3,1,0,21,2,0,0,1,2,0,7,2,0,0,5,7.1179948,6.9358897,0,3,0,0,0,-9,0,-1019.3898,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0446784,0,0,0,54.099998,59.110001,-9,-9,2,1,1,0,0,6,2,1,619,-118936.53,0,0,978.99799 -7980,9829,17962,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,0,2,8.0573254,7.724431,0,4,0,0,0,-9,0,-1081.2828,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,25,15,1,0,-9,0,9.9261217,9.9261217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.34,46.41,-9,-9,5,1,1,0,1,5,3,0,364,-12251.224,0,0,1918.1964 -7981,9830,17963,-9,17965,17964,4,1,1,17,2,0,1,1,2,-9,7,2,0,0,4,5.4432917,5.5565524,0,2,0,0,0,-9,0,-1018.5626,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3582234,0,0,0,53.419998,52.330002,-9,-9,6,1,1,0,0,2,5,1,454,1297896,0,0,4803.6455 -7981,9830,17964,17965,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.8775434,8.5069342,0,2,0,-9,8,0,0,72.556328,0,0,0,52,2,5,1,2,2,2019,1,2,6,0,45,44,15,1,0,1,0,17.933733,17.933733,0,0,0,0,0,0,0,0,0,0,0,6.8862596,0,0,0,60.119999,54.799999,51.669998,60.18,6,1,1,0,0,2,5,1,454,1297896,0,0,4803.6455 -7981,9830,17965,17964,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,0,5,8.8934717,8.4894495,0,2,0,-9,8,0,0,-19.986418,0,0,0,52,2,4,1,2,2,2019,1,1,14,3,50,50,15,1,0,1,0,12.85988,12.85988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.669998,60.18,60.119999,54.799999,1,1,1,0,0,2,5,1,454,1297896,0,0,4803.6455 -7982,9831,17966,17967,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,8.4199228,8.3793783,0,1,0,1,1,-9,0,-122.7563,0,1,1,25,2,5,1,-9,-9,2019,1,2,15,4,63,60,15,1,1,1,0,6.1931911,6.1931911,0,0,0,0,0,0,0,0,0,0,0,2.8932657,0,0,0,38.060001,61.119999,57.060001,57.759998,6,1,1,0,0,9,5,1,845.5,312892.38,0,0,2253.2798 -7982,9831,17967,17966,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,5,8.6069679,8.5038548,0,1,0,-9,1,-9,0,5.9738607,-9,1,0,25,1,4,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,13.148056,13.148056,0,0,0,0,0,0,0,2,0,0,0,3.8773572,0,0,3,57.060001,57.759998,38.060001,61.119999,6,1,1,0,0,9,5,1,845.5,312892.38,0,0,2253.2798 -7983,9832,17968,17969,-9,-9,2,1,0,46,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,6,0,0,-13.154022,0,0,0,46,1,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3465729,0,0,0,49.25,61.25,57.16,56.150002,7,1,1,0,0,13,4,1,505.60001,518275.25,0,0,7270.855 -7983,9832,17969,17968,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,9.2480898,9.1975136,0,2,0,-9,6,0,0,91.778923,0,0,0,46,2,5,3,2,1,2019,2,2,10,0,52,0,15,1,0,3,0,24.887726,24.887726,0,0,0,0,0,0,0,0,1,1,0,8.78971,0,0,0,57.16,56.150002,49.25,61.25,6,1,1,0,0,13,4,1,505.60001,518275.25,0,0,7270.855 -7983,9832,17970,-9,17968,17969,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.87952,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,13,4,1,505.60001,518275.25,0,0,7270.855 -7983,9832,17971,-9,17968,17969,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.9374,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,4,1,505.60001,518275.25,0,0,7270.855 -7983,9832,17972,-9,17968,17969,3,1,0,17,2,0,3,1,2,0,7,2,0,0,4,4.9854383,5.1250467,0,2,0,0,0,-9,0,-1090.8759,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,505.60001,518275.25,0,0,7270.855 -7984,9833,17973,17974,-9,-9,2,1,0,54,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,-7,0,0,0,0,61,3,3,3,3,3,2019,4,1,25,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.130001,22.99,43.009998,42.509998,1,1,1,0,1,12,1,0,503,55489.461,0,0,1023.3905 -7984,9833,17974,17973,-9,-9,1,1,1,61,1,0,0,0,3,-9,3,3,0,1,3,0,0,0,1,0,-9,6,0,7,0,0,0,0,54,3,1,3,-9,3,2019,4,2,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.69752,1,43.009998,42.509998,41.130001,22.99,4,1,1,1,0,12,1,0,503,55489.461,0,0,1023.3905 -7984,9834,17975,-9,17973,17974,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.5018487,7.7294474,0,3,0,0,0,-9,0,-892.51385,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,40,15,1,0,-9,1,4.9525642,4.9525642,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.877697,3,53.220001,55.200001,-9,-9,6,1,1,0,0,12,3,0,501,-234011.98,0,0,1920.7168 -7985,9835,17976,17977,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,-2,-19.311058,0,0,0,81,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,25.4067,0,0,0,0,5.48,1,1,0,0,0,10.61622,1,51,46,53,46,6,1,1,0,0,11,2,1,451,367378.69,0,0,812.54932 -7985,9835,17977,17976,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,1,3,0,7.2922096,7.3326907,1,0,-9,61,0,2,39.382336,0,0,0,79,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,4.978879,0,0,0,0,5.48,1,1,0,0,7.3146868,5.9069448,1,53,46,51,46,6,1,1,0,0,11,2,1,451,367378.69,0,0,812.54932 -7986,9836,17978,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,0,3,0,7.3357954,7.2634153,3,0,0,0,-9,0,-949.17542,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8977621,7.314384,0,0,40.619999,51.389999,-9,-9,5,1,1,0,0,11,3,1,3845,250447.38,0,0,1770.5015 -7987,9837,17979,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1027.4683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2161809,0,0,0,52.52,51.400002,-9,-9,6,1,1,0,0,7,1,1,2965,430181.81,0,0,1407.9822 -7988,9838,17980,-9,-9,-9,1,1,1,39,2,0,0,0,3,-9,2,1,0,0,4,7.8475199,8.0851145,0,3,0,0,0,-9,0,-948.92816,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,0,15,1,0,-9,0,12.050506,12.050506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,6,2,3,0,0,8,3,0,682,-90735.242,0,0,1365.594 -7988,9839,17981,-9,-9,-9,2,1,1,35,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-944.74774,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,2,3,1,0,8,1,0,787,-69333.984,0,0,0 -7989,9840,17982,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,4,9.0619278,9.1135225,0,3,0,-9,0,0,0,-1039.7443,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,35,40,15,1,0,-9,0,29.945398,29.945398,0,0,0,0,0,0,0,0,0,0,0,.54146159,0,0,0,46.630001,59.720001,-9,-9,6,4,2,0,0,8,5,1,555,227341.95,0,0,2546.9348 -7990,9841,17983,17984,-9,-9,2,1,1,60,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,8,0,0,-137.39494,0,0,0,60,1,3,3,3,3,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.095287,3,47.029999,38.130001,47.950001,46.669998,4,1,1,1,1,13,2,1,1374,434928.75,0,0,941.36023 -7990,9841,17984,17983,-9,-9,1,1,0,60,1,0,0,0,1,-9,3,3,0,0,3,0,6.196228,6.2095318,1,0,-9,8,0,0,162.14822,0,0,0,60,2,2,3,3,3,2019,4,2,8,0,0,30,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.8527236,5.0580688,3,47.950001,46.669998,47.029999,38.130001,6,1,1,1,0,13,2,1,1374,434928.75,0,0,941.36023 -7990,9842,17985,-9,17984,17983,4,1,1,23,2,0,0,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1040.174,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.200001,40.200001,-9,-9,4,1,1,0,0,13,1,1,1023,42559.363,0,0,0 -7991,9843,17986,17987,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.2021093,7.6086721,1,0,-9,41,0,-2,231.18166,0,0,0,75,1,4,3,-9,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.540025,7.0794711,0,0,55.360001,51.57,57.16,56.150002,6,1,1,0,0,4,3,1,1777.5,808093.63,0,0,3111.1909 -7991,9843,17987,17986,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,4,0,7.7413054,7.9144921,1,0,-9,42,0,2,-51.971851,0,0,0,73,2,3,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.848804,0,0,57.16,56.150002,55.360001,51.57,7,1,1,0,0,4,3,1,1777.5,808093.63,0,0,3111.1909 -7992,9844,17988,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,7.1505847,7.2626696,3,0,0,0,-9,0,-1005.6726,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1695542,0,0,55.610001,29.040001,-9,-9,6,1,1,0,0,10,3,1,463,190130.19,0,0,2210.4465 -7993,9845,17989,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,4,0,6.4460573,6.2490826,3,0,0,0,-9,0,-1024.1338,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,1.9548562,0,0,0,0,7.8371243,0,1,1,0,4.709022,6.0117722,0,0,50.32,40.490002,-9,-9,5,1,1,0,0,6,2,1,427,165949.95,0,0,1449.4755 -7994,9846,17990,17991,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,5,8.9286528,9.180438,0,1,0,-9,3,0,-4,-29.904417,0,1,1,32,1,4,1,2,1,2019,1,2,14,4,37,39,15,1,1,1,0,24.199211,24.199211,0,0,0,0,0,0,0,0,0,0,0,4.9115839,0,0,0,43.860001,63.669998,55.790001,52.619999,6,1,1,0,0,7,5,1,483.5,-25274.352,0,0,6428.6074 -7994,9846,17991,17990,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.9354858,8.9056978,0,1,0,-9,3,0,4,-108.57068,0,0,0,28,1,5,1,-9,-9,2019,1,1,7,0,37,41,15,1,0,1,0,27.903038,27.903038,0,0,0,0,0,0,0,0,0,0,0,6.9489679,0,0,0,55.790001,52.619999,43.860001,63.669998,6,2,3,0,0,7,5,1,483.5,-25274.352,0,0,6428.6074 -7995,9847,17992,17993,-9,-9,2,1,1,74,1,0,0,0,2,-9,2,1,0,0,2,8.2982903,7.7024112,0,1,0,-9,53,0,3,-99.140587,0,0,0,71,2,3,3,2,3,2019,2,1,6,0,25,26,15,1,0,4,0,12.13508,12.13508,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.880001,40.360001,54.959999,53.169998,6,1,1,0,0,9,3,0,1259,1120282.8,0,0,2081.5498 -7995,9847,17993,17992,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-3,-143.55415,0,0,0,74,2,2,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6356199,0,0,0,54.959999,53.169998,56.880001,40.360001,7,1,1,0,0,9,3,0,1259,1120282.8,0,0,2081.5498 -7996,9848,17994,17995,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,5,0,7.2542553,7.4088349,1,0,-9,47,0,-2,31.262365,0,0,0,66,1,2,3,3,2,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3616252,7.3074546,0,0,55.09,55.869999,53.130001,40.75,6,1,1,0,0,6,4,0,1253,1944334.3,0,0,5045.6943 -7996,9848,17995,17994,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,2,0,8.5623121,8.7023697,1,0,-9,47,0,2,-123.01653,0,0,0,64,1,5,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2926455,8.6176453,0,0,53.130001,40.75,55.09,55.869999,5,1,1,0,0,6,4,0,1253,1944334.3,0,0,5045.6943 -7997,9849,17996,17997,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,2,7.693378,7.6930771,0,1,0,-9,59,0,-3,261.78613,0,0,0,80,3,3,1,3,2,2019,3,2,14,4,1,10,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9733558,0,0,3,49.259998,33.34,58.23,43.459999,4,1,1,0,0,13,5,1,771.5,839364.25,0,0,4977.7236 -7997,9849,17997,17996,-9,-9,2,1,1,80,1,0,0,0,3,-9,1,1,0,0,3,7.031249,8.5206318,8.3341055,1,0,-9,59,0,3,10.256754,0,0,0,77,3,2,3,3,3,2019,2,1,8,0,21,0,15,1,0,4,0,5.6659789,5.6659789,0,0,0,0,0,0,0,2,1,1,0,8.5846138,6.556735,0,3,58.23,43.459999,49.259998,33.34,6,1,1,0,0,13,5,1,771.5,839364.25,0,0,4977.7236 -7998,9850,17998,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,2,0,5.4329624,5.777884,3,0,0,0,-9,0,-1087.3522,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6122179,0,0,51.41,45.619999,-9,-9,4,1,1,0,0,2,2,1,936,211673.5,0,0,871.62018 -7998,9851,17999,-9,-9,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,7.4628611,7.3872857,0,3,0,0,0,-9,0,-940.72034,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,56,0,15,1,0,-9,0,3.747436,3.747436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.689999,52.990002,-9,-9,5,1,1,0,0,2,3,1,720,-34770.133,0,0,-206.74216 -7999,9852,18000,-9,18002,18004,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.7355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,1,0,900.20001,58739.008,0,0,2411.5713 -7999,9852,18001,-9,18002,18004,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.78369,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,1,0,900.20001,58739.008,0,0,2411.5713 -7999,9852,18002,18004,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,16,0,-13,0,0,0,1,50,2,4,3,2,2,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.273151,1,36.779999,41.130001,52,55,5,1,1,0,0,10,1,0,900.20001,58739.008,0,0,2411.5713 -7999,9852,18003,-9,18002,18004,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.3575,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,10,1,0,900.20001,58739.008,0,0,2411.5713 -7999,9852,18004,18002,-9,-9,1,1,1,50,1,0,3,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,15,0,13,0,0,0,0,37,2,3,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.779999,41.130001,6,1,1,0,0,10,1,0,900.20001,58739.008,0,0,2411.5713 -8000,9853,18005,-9,18006,18007,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.0668,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,5,1,610.33331,731864.25,0,0,14584.736 -8000,9853,18006,18007,-9,-9,1,1,0,40,1,1,1,0,1,-9,2,1,0,0,4,8.5345669,8.168685,0,2,0,-9,10,0,-8,-43.073345,0,0,1,48,1,3,1,2,3,2019,1,2,4,1,22,34,15,1,0,1,0,28.76248,28.76248,0,0,0,0,0,0,0,0,0,0,0,7.7834377,0,0,0,47.009998,58,59.459999,44.279999,6,1,1,0,0,2,5,1,610.33331,731864.25,0,0,14584.736 -8000,9853,18007,18006,-9,-9,2,1,1,48,1,1,1,0,1,-9,2,1,0,0,3,9.5533638,9.6418076,0,2,0,-9,10,0,8,50.438835,0,0,0,40,1,4,1,2,2,2019,1,1,9,1,55,50,15,1,0,1,0,28.644846,28.644846,0,0,0,0,0,0,0,0,0,0,0,2.7737987,0,0,0,59.459999,44.279999,47.009998,58,6,1,1,0,0,2,5,1,610.33331,731864.25,0,0,14584.736 -8001,9854,18008,-9,-9,-9,1,1,0,57,2,0,1,0,1,-9,2,1,0,0,3,7.3216934,7.6668382,0,4,0,0,0,-9,0,-1056.1321,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,16,10,15,1,1,-9,0,18.707367,18.707367,0,0,0,0,0,0,0,5.48,1,0,1,0,0,4.5847106,3,42.869999,42.509998,-9,-9,4,3,4,0,1,8,3,0,614.5,-21526.996,0,0,2723.4824 -8001,9854,18009,-9,18008,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.95105,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,3,4,0,0,8,3,0,614.5,-21526.996,0,0,2723.4824 -8002,9855,18010,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,8.1697292,8.1095982,0,3,0,0,0,-9,0,-949.16693,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,36,35,15,1,0,-9,0,10.541596,10.541596,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.378772,3,59.07,43.049999,-9,-9,6,1,1,0,0,6,4,1,333,-77860.445,0,0,1228.2435 -8003,9856,18011,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,2,0,7.4710584,7.5987797,3,0,0,0,-9,0,-1064.5026,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8000393,7.8931646,0,0,43.93,31.440001,-9,-9,5,2,3,0,0,11,3,1,2052,560832.94,0,0,2679.6155 -8003,9857,18012,-9,-9,18011,2,1,1,34,2,0,0,0,2,-9,2,1,0,0,4,8.470973,8.3262634,0,3,0,0,0,-9,0,-925.20343,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,10,1,40,40,15,1,0,-9,1,11.508206,11.508206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,11,4,1,219,12602.124,0,0,2014.7443 -8004,9858,18013,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,3,0,5.3137951,5.7741432,3,0,0,0,-9,0,-1016.4662,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0055556,0,0,43.709999,56.91,-9,-9,4,1,1,0,0,7,2,0,1470,-76788.875,0,0,2277.7947 -8004,9859,18014,-9,-9,18013,2,1,1,21,2,0,0,0,2,-9,11,3,0,0,4,7.6903219,7.6388369,0,3,0,0,0,-9,0,-991.63062,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,38,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.799999,58.23,-9,-9,3,1,1,0,0,7,3,0,383,-19034.943,0,0,301.27979 -8005,9860,18015,-9,-9,-9,1,1,0,42,3,0,1,0,3,-9,2,1,0,0,3,7.3130975,7.2451658,0,4,0,0,0,-9,0,-1006.6903,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,20,21,15,1,0,-9,0,6.6333194,6.6333194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.16,48.900002,-9,-9,5,1,1,0,0,11,2,1,794,199750.44,0,0,87.356819 -8006,9861,18016,18017,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,7.4930387,7.4576054,0,1,0,-9,36,0,2,31.75535,0,0,0,62,2,4,3,3,3,2019,4,1,8,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5083079,0,0,0,55.759998,28.700001,57.16,56.150002,6,1,1,0,0,10,4,1,243.5,1883357.9,0,0,2035.3588 -8006,9861,18017,18016,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.7822304,7.7669196,1,0,-9,36,0,-2,67.942245,0,0,0,64,2,2,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4002051,7.534328,0,0,57.16,56.150002,55.759998,28.700001,7,1,1,0,0,10,4,1,243.5,1883357.9,0,0,2035.3588 -8006,9862,18018,-9,18017,18016,3,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,8.2905722,8.2443895,0,3,0,0,0,-9,0,-1046.7773,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,53,15,1,0,-9,1,11.168333,11.168333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,10,4,1,559,2311.1997,0,0,208.87871 -8007,9863,18019,18020,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.1912813,8.4468079,1,0,-9,10,0,1,-143.09062,0,0,0,72,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2429485,0,0,66.209999,38.220001,58.23,43.459999,7,1,1,0,0,1,5,1,344.5,1789361,0,0,5071.2363 -8007,9863,18020,18019,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.1928873,8.0969858,1,0,-9,10,0,-1,98.45327,0,0,0,73,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1118321,8.273694,0,0,58.23,43.459999,66.209999,38.220001,6,1,1,0,0,1,5,1,344.5,1789361,0,0,5071.2363 -8008,9864,18021,18023,-9,-9,2,1,0,26,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-4,-12.202517,0,1,1,30,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.851836,0,0,0,47,57,52.080002,55.93,5,1,1,0,0,2,2,0,523,-35790.148,0,0,3429.126 -8008,9864,18022,-9,18021,18023,4,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.46918,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,0,523,-35790.148,0,0,3429.126 -8008,9864,18023,18021,-9,-9,1,1,1,30,1,1,3,0,2,-9,2,1,0,0,4,7.6968417,7.6492448,5.6834173,2,0,-9,5,0,4,-12.737269,0,0,0,26,2,4,3,2,3,2019,2,2,6,0,40,40,15,1,0,3,0,7.4925423,7.4925423,0,0,0,0,0,0,0,0,1,1,0,5.8466992,0,0,0,52.080002,55.93,47,57,7,1,1,0,0,2,2,0,523,-35790.148,0,0,3429.126 -8008,9864,18024,-9,18021,18023,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.3667,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,0,523,-35790.148,0,0,3429.126 -8008,9864,18025,-9,18021,-9,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.70624,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,523,-35790.148,0,0,3429.126 -8009,9865,18026,18027,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,3,7.7538986,7.9287395,0,1,0,-9,1,-9,-5,5.9473972,-9,1,1,34,1,4,1,-9,-9,2019,1,1,23,9,41,0,15,1,1,1,0,5.6257,5.6257,0,0,0,0,0,0,0,0,0,0,0,.62343162,0,0,0,25.93,62.360001,38.34,62.119999,3,1,1,0,0,6,5,0,590,10435.361,0,0,3774.6484 -8009,9865,18027,18026,-9,-9,1,1,1,34,1,0,0,0,1,-9,1,1,0,0,4,8.5121946,8.3781443,0,1,0,1,1,-9,5,-17.963783,0,0,0,29,1,3,1,-9,-9,2019,1,2,11,1,15,33,15,1,0,1,0,37.94112,37.94112,0,0,0,0,0,0,0,0,0,0,0,.90927446,0,0,0,38.34,62.119999,25.93,62.360001,6,1,1,0,0,6,5,0,590,10435.361,0,0,3774.6484 -8010,9866,18028,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,2,1,0,0,4,7.9299178,7.6103683,0,3,0,0,0,-9,0,-1040.5317,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,21,23,15,1,0,-9,0,13.070656,13.070656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,4,3,1,272,368493.22,0,0,1325.6998 -8011,9867,18029,-9,-9,-9,1,1,0,39,3,0,1,0,2,-9,8,3,1,1,2,0,5.0263486,5.2176814,4,0,-9,0,-9,0,-1031.166,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9672399,0,0,3,30,32.459999,-9,-9,3,1,1,0,1,2,2,0,333,199119.83,0,0,666.35699 -8011,9868,18030,-9,18029,-9,3,1,0,18,2,0,1,1,2,-9,7,2,0,0,3,4.5215011,4.4471464,0,3,0,-9,0,-9,0,-999.98737,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.610001,59.470001,-9,-9,4,1,1,0,0,2,2,0,1753,-191712.05,0,0,-514.61603 -8012,9869,18031,18032,-9,-9,1,1,0,54,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,38,0,-2,-217.16353,0,0,0,56,3,4,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.62287,1,54.040001,49.48,54,54,4,1,1,0,0,5,2,1,1452.6666,507142.5,0,0,1451.9753 -8012,9869,18032,18031,-9,-9,2,1,1,56,1,0,1,0,3,-9,8,3,1,1,4,0,8.0271149,7.7739987,2,0,-9,38,0,2,58.667915,0,0,0,54,2,4,3,3,3,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9492624,7.6944008,0,0,54,54,54.040001,49.48,6,1,1,0,0,5,2,1,1452.6666,507142.5,0,0,1451.9753 -8012,9869,18033,-9,18031,18032,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.55109,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,2,1,1452.6666,507142.5,0,0,1451.9753 -8013,9870,18034,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,1,1,0,5.7509813,5.7643933,3,0,0,0,-9,0,-1071.8237,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,13.590235,0,0,6.5773292,0,136.48149,0,1,1,0,1.1369576,5.6897101,0,0,46.82,17.940001,-9,-9,4,1,1,0,0,13,2,1,1124,-35074.836,0,0,729.17419 -8014,9871,18035,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,0,4,0,6.5412002,6.4402575,3,0,0,0,-9,0,-1107.1741,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,20.990622,0,0,0,0,1,1,0,7.0571547,6.735949,0,0,58.900002,45.740002,-9,-9,6,1,1,0,0,10,2,1,690,281282.81,0,0,1237.1609 -8014,9872,18036,-9,18035,-9,2,1,0,58,2,0,0,0,1,-9,8,3,1,1,3,0,6.0498013,6.1926904,3,0,0,0,-9,0,-956.13446,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,23,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.5306692,0,26.22971,3,33.810001,48.009998,-9,-9,6,1,1,0,0,10,2,1,613,541783.5,0,0,2026.8251 -8015,9873,18037,-9,18041,18039,4,1,1,17,2,0,2,1,2,0,7,2,0,0,4,6.6429071,6.7550211,0,2,0,0,0,-9,0,-992.48212,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,13,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,5,1,344.79999,1962394,0,0,4956.52 -8015,9873,18038,-9,18041,18039,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1177.3761,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,5,1,344.79999,1962394,0,0,4956.52 -8015,9873,18039,18041,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,3,9.6838484,9.6046019,0,2,0,-9,22,0,1,24.959103,0,0,0,48,2,3,1,-9,2,2019,1,1,7,0,50,55,15,1,0,1,0,30.835432,30.835432,0,0,0,0,0,0,0,0,0,0,0,.68613946,0,0,0,59.040001,48.599998,63.830002,43.619999,6,1,1,0,0,6,5,1,344.79999,1962394,0,0,4956.52 -8015,9873,18040,-9,18041,18039,6,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1053.4834,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,6,5,1,344.79999,1962394,0,0,4956.52 -8015,9873,18041,18039,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,8.5375299,8.0726357,0,2,0,-9,22,0,-1,-68.262268,0,0,0,49,1,3,1,3,3,2019,1,2,6,0,40,7,15,1,0,1,0,14.39001,14.39001,0,0,0,0,0,0,0,0,0,0,0,4.8065572,0,0,0,63.830002,43.619999,59.040001,48.599998,6,1,1,0,0,6,5,1,344.79999,1962394,0,0,4956.52 -8015,9874,18042,-9,18041,18039,3,1,1,19,2,0,2,0,2,-9,7,2,0,0,5,6.4578328,6.3644061,0,3,0,0,0,-9,0,-930.43445,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.299999,42.07,-9,-9,7,1,1,0,0,6,2,1,299,-55497.086,0,0,-194.05017 -8016,9875,18043,18044,-9,-9,1,1,1,37,1,1,1,0,2,-9,2,1,0,0,4,8.2839003,8.5107803,0,2,0,-9,7,0,8,-82.975845,0,0,0,29,1,5,1,2,2,2019,1,2,10,0,27,43,15,1,0,1,0,20.404533,20.404533,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,43.57,62.68,6,1,1,0,0,9,5,1,652.33331,409605.47,0,0,4653.79 -8016,9875,18044,18043,-9,-9,2,1,0,29,1,1,1,0,1,-9,2,1,0,0,5,8.4221802,8.4879255,0,2,0,-9,7,0,-8,37.018082,0,1,1,37,2,4,1,-9,-9,2019,1,1,9,0,40,45,15,1,0,1,0,17.558525,17.558525,0,0,0,0,0,0,0,0,1,1,0,7.3685985,0,0,0,43.57,62.68,54.200001,57.490002,5,1,1,0,0,9,5,1,652.33331,409605.47,0,0,4653.79 -8016,9875,18045,-9,18044,18043,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.10999,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,5,1,652.33331,409605.47,0,0,4653.79 -8017,9876,18046,-9,18049,18048,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.77856,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,3,1,544,80818.602,0,0,1946.6587 -8017,9876,18047,-9,18049,18048,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.1743,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,3,1,544,80818.602,0,0,1946.6587 -8017,9876,18048,18049,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.3569698,8.6001558,0,2,0,-9,7,0,2,14.649124,0,0,0,40,2,4,1,2,2,2019,1,2,11,0,36,36,15,1,0,1,0,12.328842,12.328842,0,0,0,0,0,0,0,0,1,1,0,1.4915562,0,0,0,46.5,58.259998,41.400002,58.060001,5,1,1,0,0,1,3,1,544,80818.602,0,0,1946.6587 -8017,9876,18049,18048,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,4,6.7957506,6.8729048,0,2,0,-9,7,0,-2,-148.59949,0,0,1,42,2,4,1,2,2,2019,1,1,14,3,28,26,15,1,0,1,0,4.9481454,4.9481454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.400002,58.060001,46.5,58.259998,6,1,1,0,0,1,3,1,544,80818.602,0,0,1946.6587 -8018,9877,18050,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,3,0,7.8117504,7.8293324,3,0,0,0,-9,0,-1010.2421,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,115.67805,0,0,0,0,1,1,0,0,7.8460751,0,0,48.529999,26.290001,-9,-9,7,1,1,0,0,13,4,1,284,465288.03,0,0,1469.9249 -8018,9878,18051,-9,18050,-9,2,1,0,58,2,0,0,0,1,-9,4,3,0,0,3,0,7.7612491,7.6343088,3,0,0,0,-9,0,-916.79132,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2955518,7.4392433,0,0,49.84,47.450001,-9,-9,5,1,1,0,0,13,3,1,379,-38580.547,0,0,3461.8542 -8018,9879,18052,-9,18050,-9,3,1,1,55,2,0,0,0,3,-9,1,1,0,0,3,8.8246899,8.8545551,0,3,0,0,0,-9,0,-966.34216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,40,15,1,0,-9,1,21.419601,21.419601,0,0,0,0,0,0,0,0,1,1,0,7.3249884,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,5,1,408,52867.359,0,0,2490.7715 -8019,9880,18053,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-857.22217,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.84,40.759998,-9,-9,6,1,1,0,0,12,1,0,297,80987.578,0,0,1179.7065 -8020,9881,18054,18055,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,8.4135656,8.0385017,0,1,0,-9,20,0,-7,69.853386,0,0,0,56,2,3,1,3,2,2019,1,2,11,0,43,41,15,1,0,1,0,8.7781115,8.7781115,0,0,0,0,0,0,0,0,0,0,0,1.284361,0,0,0,46.900002,56.66,53.389999,49.669998,5,1,1,0,0,4,5,1,636,1517662.5,0,0,2013.5372 -8020,9881,18055,18054,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.410347,8.6055555,0,1,0,-9,30,0,7,23.048386,0,0,0,49,2,4,1,2,2,2019,1,1,8,0,45,45,15,1,0,1,0,13.72505,13.72505,0,0,0,0,0,0,0,0,0,0,0,3.5566428,0,0,0,53.389999,49.669998,46.900002,56.66,5,1,1,0,0,4,5,1,636,1517662.5,0,0,2013.5372 -8020,9882,18056,-9,18054,18055,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,3,7.6825304,7.7398915,0,3,0,0,0,-9,0,-799.21332,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,0,15,1,0,-9,1,7.826231,7.826231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.18,55.310001,-9,-9,5,1,1,0,0,4,3,1,226,14229.883,0,0,1962.9324 -8021,9883,18057,-9,18058,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.6318,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,429.5,298391.88,0,0,2512.0098 -8021,9883,18058,-9,-9,-9,1,1,0,42,2,0,1,0,1,-9,2,1,0,0,4,8.7261343,8.808773,5.5395231,4,0,-9,0,0,0,-965.12488,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,45,40,15,1,0,-9,0,14.224372,14.224372,0,0,0,0,0,0,0,0,1,1,0,5.4906054,0,0,0,42.189999,58.810001,-9,-9,6,1,1,0,0,12,4,1,429.5,298391.88,0,0,2512.0098 -8022,9884,18059,-9,18060,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1011.5486,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,0,326,67615.391,0,0,1451.0051 -8022,9884,18060,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,0,5,7.9223967,8.091567,6.3206868,4,0,0,0,-9,0,-901.38446,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,5,0,38,20,15,1,0,-9,0,10.906527,10.906527,0,0,0,0,0,0,0,0,1,1,0,6.2435379,0,0,0,69.510002,30.25,-9,-9,7,1,1,0,0,12,3,0,326,67615.391,0,0,1451.0051 -8023,9885,18061,18062,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.3376303,8.3448915,0,1,0,-9,2,0,7,139.01602,0,0,0,28,2,3,1,-9,-9,2019,1,2,13,1,40,40,15,1,0,1,0,11.313828,11.313828,0,0,0,0,0,0,0,0,0,0,0,6.8002863,0,0,0,60.419998,43.740002,49.419998,50.189999,6,1,1,0,0,4,5,0,865.5,-79703,0,0,3470 -8023,9885,18062,18061,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,0,3,8.1740561,8.1469545,0,1,0,-9,2,0,-7,-58.775452,0,1,1,35,1,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,10.22652,10.22652,0,0,0,0,0,0,0,0,0,0,0,3.0324099,0,0,0,49.419998,50.189999,60.419998,43.740002,6,1,1,0,0,4,5,0,865.5,-79703,0,0,3470 -8024,9886,18063,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,5.8909855,5.8913097,3,0,0,0,-9,0,-954.6745,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.591397,5.7987714,0,0,48.419998,55.98,-9,-9,6,1,1,0,0,2,2,1,158,138495.86,0,0,974.42603 -8024,9887,18064,-9,18063,-9,2,1,1,31,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-937.50879,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,54.790001,-9,-9,5,1,1,0,1,2,1,1,778,-67659,0,0,0 -8025,9888,18065,18066,-9,-9,1,1,0,44,1,0,2,0,1,-9,1,1,0,0,5,7.6286702,7.4982457,0,2,0,-9,23,0,-1,18.671316,0,0,1,45,1,3,1,2,2,2019,1,2,19,6,22,24,15,1,1,1,0,12.290165,12.290165,0,0,0,0,0,0,0,0,1,1,0,3.9446313,0,0,0,24.75,68.650002,52.990002,51.279999,5,1,1,0,0,5,4,1,387.33334,520263.47,0,0,3353.4624 -8025,9888,18066,18065,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,8.7095003,8.6177216,0,2,0,-9,25,0,1,-72.605125,0,0,0,44,1,5,1,1,2,2019,1,1,11,0,41,42,15,1,0,1,0,22.916952,22.916952,0,0,0,0,0,0,0,0,1,1,0,3.1681619,0,0,0,52.990002,51.279999,24.75,68.650002,6,1,1,0,0,5,4,1,387.33334,520263.47,0,0,3353.4624 -8025,9888,18067,-9,18065,18066,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-1045.0245,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,-9,-9,3,1,1,0,0,5,4,1,387.33334,520263.47,0,0,3353.4624 -8025,9889,18068,-9,18065,18066,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1013.613,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5388064,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,4,1,860,65413.816,0,0,-832.13397 -8026,9890,18069,18070,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,8.9726171,8.7370234,0,2,0,-9,25,0,-1,147.31699,0,0,1,45,1,5,3,2,2,2019,2,2,10,0,34,38,15,1,0,3,0,21.301542,21.301542,0,0,0,0,0,0,0,0,0,0,0,6.8846564,0,0,0,50.950001,45.41,51.139999,60.450001,6,1,1,0,0,6,4,1,484.33334,449178.56,0,0,3403.1338 -8026,9890,18070,18069,-9,-9,2,1,1,45,1,0,1,0,1,-9,3,3,0,0,5,0,0,0,2,0,-9,25,0,1,8.6835566,0,0,0,44,2,4,1,2,2,2019,3,1,17,5,0,37,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9122438,0,0,0,51.139999,60.450001,50.950001,45.41,5,1,1,1,0,6,4,1,484.33334,449178.56,0,0,3403.1338 -8026,9890,18071,-9,18069,18070,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1002.4266,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,4,1,484.33334,449178.56,0,0,3403.1338 -8027,9891,18072,-9,-9,-9,1,1,0,45,3,0,1,0,3,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1047.3304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.080444,3,29.32,41.290001,-9,-9,5,1,1,0,1,13,1,1,490.5,-27818.195,0,0,1754.6849 -8027,9891,18073,-9,18072,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,4,0,0,0,-9,0,-1006.2115,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,-9,-9,3,1,1,0,0,13,1,1,490.5,-27818.195,0,0,1754.6849 -8027,9892,18074,-9,18072,-9,2,1,1,23,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1020.7938,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.080002,44.75,-9,-9,6,1,1,0,0,13,1,1,3725,77092.086,0,0,673.49628 -8027,9893,18075,-9,18072,-9,3,1,0,21,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-882.61707,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,1,3193,-10618.963,0,0,1890.7396 -8028,9894,18076,18077,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.7200603,8.6774979,0,1,0,-9,6,0,2,-11.366238,0,0,0,42,2,4,1,3,2,2019,1,2,6,0,45,47,15,1,0,1,0,15.961282,15.961282,0,0,0,0,0,0,0,7,0,0,0,0,0,14.565278,3,55.790001,52.619999,35.57,63.560001,6,1,1,0,0,11,5,1,381,208495.72,0,0,2910.1284 -8028,9894,18077,18076,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,8.1767006,8.0229177,0,1,0,-9,6,0,-2,56.530933,0,0,1,44,2,4,1,3,2,2019,1,1,18,5,39,39,15,1,1,1,0,11.640741,11.640741,0,0,0,0,0,0,0,27.5,0,0,0,.47853696,0,20.018639,3,35.57,63.560001,55.790001,52.619999,4,1,1,0,0,11,5,1,381,208495.72,0,0,2910.1284 -8028,9895,18078,-9,18077,18076,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,7.3229804,7.474226,0,3,0,0,0,-9,0,-1041.1897,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,28,35,15,1,0,-9,1,6.141417,6.141417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,11,3,1,427,100554.09,0,0,542.60162 -8029,9896,18079,18080,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.0922689,7.8251333,0,1,0,-9,5,0,3,18.424828,0,0,0,27,1,4,1,-9,-9,2019,1,1,10,1,60,45,15,1,0,1,0,6.0694866,6.0694866,0,0,0,0,0,0,0,0,0,0,0,3.6279659,0,0,0,49,58,51.240002,58.84,5,4,1,0,0,5,4,1,654,-55024.801,0,0,3161.6829 -8029,9896,18080,18079,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,7.9112043,8.0459032,4.067091,1,0,-9,5,0,-3,-71.450134,0,1,1,30,2,4,1,1,1,2019,1,2,7,0,59,50,15,1,0,1,0,7.744772,7.744772,0,0,0,0,0,0,0,0,0,0,0,3.7487495,0,0,0,51.240002,58.84,49,58,6,1,1,0,0,5,4,1,654,-55024.801,0,0,3161.6829 -8030,9897,18081,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,4,0,7.0941477,7.2730527,3,0,0,0,-9,0,-951.54077,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.534977,7.278091,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,3,1,218,112531.09,0,0,1967.2607 -8031,9898,18082,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1016.4503,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,12,1,0,700,-132840.09,0,0,165.60033 -8031,9899,18083,-9,-9,-9,2,1,0,44,2,0,0,0,2,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1087.9233,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.205658,3,36.299999,52.68,-9,-9,4,1,1,0,0,12,1,0,810,49127.441,0,0,110.05515 -8032,9900,18084,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,0,1,0,5.4592304,5.6557317,3,0,0,0,-9,0,-911.52869,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1145649,0,0,42.52,33.619999,-9,-9,5,1,1,0,0,4,2,0,673,3740.0093,0,0,190.584 -8033,9901,18085,-9,-9,-9,1,1,0,40,3,1,4,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1016.0869,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.01257,3,45.91,59.889999,-9,-9,2,1,1,0,0,9,1,0,1029,42307.484,0,0,3860.7466 -8033,9901,18086,-9,18085,-9,4,1,1,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-957.22412,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,1029,42307.484,0,0,3860.7466 -8033,9901,18087,-9,18085,-9,5,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1086.3584,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,1,0,1029,42307.484,0,0,3860.7466 -8034,9902,18088,18091,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,5,6.907795,7.2601495,0,2,0,-9,16,0,-7,10.730605,0,0,1,44,2,5,1,-9,-9,2019,1,2,12,0,20,0,15,1,0,1,0,6.6093955,6.6093955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,57.060001,57.759998,3,1,1,0,0,12,3,1,532.75,243531.84,0,0,995.02435 -8034,9902,18089,-9,18088,18091,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-994.75055,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,12,3,1,532.75,243531.84,0,0,995.02435 -8034,9902,18090,-9,18088,18091,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-957.32001,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,3,1,532.75,243531.84,0,0,995.02435 -8034,9902,18091,18088,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,5,7.9454308,7.7375622,0,2,0,-9,16,0,7,-151.63724,0,0,0,37,2,5,1,-9,-9,2019,1,1,11,0,45,0,15,1,0,1,0,5.383872,5.383872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.099998,59.110001,4,1,1,0,0,12,3,1,532.75,243531.84,0,0,995.02435 -8035,9903,18092,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,2,0,6.4264369,6.1331506,3,0,0,0,-9,0,-1055.7329,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.2045326,42.155357,3,31.01,34.740002,-9,-9,3,1,1,0,0,6,2,0,998,-42182.07,0,0,1580.4594 -8036,9904,18093,18094,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,3,7.9379959,7.9279051,0,1,0,-9,12,0,-3,-86.783302,0,0,1,35,1,5,1,2,2,2019,1,1,11,0,37,37,15,1,0,1,0,9.0505934,9.0505934,0,0,0,0,0,0,0,0,0,0,0,4.2561216,0,0,0,55.360001,51.57,54.689999,57.470001,7,1,1,0,0,2,5,1,476.5,171152.5,0,0,5286.4644 -8036,9904,18094,18093,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,5,9.1193686,8.7748728,0,1,0,-9,12,0,3,-5.8247213,0,0,0,32,2,3,1,2,1,2019,1,2,7,0,37,37,15,1,0,1,0,26.618557,26.618557,0,0,0,0,0,0,0,0,0,0,0,5.860528,0,0,0,54.689999,57.470001,55.360001,51.57,6,1,1,0,0,2,5,1,476.5,171152.5,0,0,5286.4644 -8037,9905,18095,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,0,5,8.5591421,8.4050655,0,3,0,0,0,-9,0,-1025.6747,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,1,42,37,15,1,0,-9,0,11.775491,11.775491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,-9,-9,6,1,1,0,0,1,4,1,386,202724.13,0,0,1548.0127 -8038,9906,18096,18097,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,7.4842992,7.4935746,1,0,-9,29,0,-2,-32.272697,0,0,0,67,2,5,3,2,3,2019,4,1,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0488176,7.8868322,0,0,26.76,53.939999,55.09,55.869999,3,1,1,0,0,7,3,1,891,1092969.4,0,0,2773.4849 -8038,9906,18097,18096,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,3.7252872,6.6936336,6.5162711,1,0,-9,29,0,2,-94.655014,0,0,0,65,1,3,3,3,3,2019,4,2,7,0,1,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6972389,6.6396518,0,0,55.09,55.869999,26.76,53.939999,7,1,1,0,0,7,3,1,891,1092969.4,0,0,2773.4849 -8039,9907,18098,18099,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,4,24.56975,0,0,0,74,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0046802,0,0,0,54.200001,39.09,59.459999,46.990002,5,1,1,0,0,5,2,1,707,604535.88,0,0,2698.7515 -8039,9907,18099,18098,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,6.9885817,6.7365384,1,0,-9,48,0,-4,10.144937,0,0,0,78,2,2,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0043454,7.0606132,0,0,59.459999,46.990002,54.200001,39.09,6,1,1,0,0,5,2,1,707,604535.88,0,0,2698.7515 -8040,9908,18100,18101,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.9686246,6.7462702,1,0,-9,9,0,9,29.75235,0,0,0,63,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.0065992,6.5558543,0,0,45.41,46.400002,59.139999,52.5,7,1,1,0,0,7,3,1,1111,957586.19,0,0,1646.74 -8040,9908,18101,18100,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,8.0475264,8.0824289,0,1,0,-9,46,0,0,101.39136,0,0,0,72,3,3,3,3,3,2019,2,2,7,0,24,30,15,1,0,4,0,10.120582,10.120582,0,0,0,0,0,0,0,0,1,1,0,1.463995,0,0,0,59.139999,52.5,45.41,46.400002,6,1,1,0,0,7,3,1,1111,957586.19,0,0,1646.74 -8041,9909,18102,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,0,4,7.4719648,9.0049915,8.7585554,3,0,0,0,-9,0,-1063.049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,15,15,15,1,0,-9,0,12.794291,12.794291,0,0,0,0,0,0,0,0,1,1,0,6.1816883,8.3861532,0,0,58.299999,52.91,-9,-9,6,1,1,0,0,13,5,1,388,493097.66,0,0,3852.8943 -8042,9910,18103,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,3,8.5497723,8.5510168,0,3,0,0,0,-9,0,-956.85828,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,40,0,15,1,0,-9,0,12.118386,12.118386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.130001,38.939999,-9,-9,5,1,1,0,0,2,5,1,358,134006.63,0,0,1334.8186 -8043,9911,18104,18105,-9,-9,1,1,0,28,1,0,0,0,3,-9,1,1,0,0,4,7.622714,7.7408743,0,1,0,-9,4,0,1,54.199757,0,1,1,27,1,4,1,2,2,2019,1,2,8,0,38,38,15,1,0,1,0,6.3556633,6.3556633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.34,56.950001,54.200001,57.490002,6,1,1,0,0,7,5,0,335,372550.5,0,0,2556.9604 -8043,9911,18105,18104,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,9.1777859,9.0271559,0,1,0,-9,4,0,-1,-26.684151,0,1,0,28,3,4,1,-9,-9,2019,1,1,12,1,49,40,15,1,0,1,0,17.787571,17.787571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52.34,56.950001,2,4,2,0,0,7,5,0,335,372550.5,0,0,2556.9604 -8044,9912,18106,18107,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,4.2364483,4.2669702,1,0,-9,51,0,3,63.464432,0,0,0,69,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0083022,4.2052183,0,0,57.029999,34.830002,50.220001,52.720001,6,1,1,0,0,2,2,1,887,482735.81,0,0,1846.5107 -8044,9912,18107,18106,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.683898,6.6847482,1,0,-9,51,0,-3,117.57833,0,0,0,72,2,2,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1370006,11.521919,3,50.220001,52.720001,57.029999,34.830002,4,1,1,0,0,2,2,1,887,482735.81,0,0,1846.5107 -8045,9913,18108,18109,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.8663845,7.897121,1,0,-9,31,0,7,-113.53402,0,0,0,62,2,4,3,3,3,2019,4,2,8,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.1546602,7.795507,1.0420249,3,56.099998,49.93,56.57,57.779999,6,1,1,0,0,5,4,1,1395,1188080,0,0,2606.8584 -8045,9913,18109,18108,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.4424267,7.1930628,1,0,-9,9,0,-7,-262.89316,0,0,0,69,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7011809,7.4489918,2.4680879,3,56.57,57.779999,56.099998,49.93,6,1,1,0,0,5,4,1,1395,1188080,0,0,2606.8584 -8046,9914,18110,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,0,2,0,2.9958208,2.7759752,3,0,0,0,-9,0,-947.13336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.7871051,0,0,49.43,38.529999,-9,-9,1,1,1,0,0,4,1,0,223,-171818.56,0,0,1563.5123 -8047,9915,18111,18112,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.7070208,7.7782626,1,0,-9,47,0,-1,-11.643193,0,0,0,66,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7902803,0,0,58.150002,52.91,54.790001,55.860001,6,1,1,0,0,12,3,1,391,1542222.4,0,0,3192.7334 -8047,9915,18112,18111,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,47,0,1,-136.47635,0,0,0,65,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5735006,0,0,0,54.790001,55.860001,58.150002,52.91,6,1,1,0,0,12,3,1,391,1542222.4,0,0,3192.7334 -8048,9916,18113,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-869.48151,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.560001,35.77,-9,-9,5,1,1,0,1,6,1,0,190,-73379.711,0,0,1975.4498 -8049,9917,18114,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,5.7619505,5.6784339,3,0,0,0,-9,0,-949.50287,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7900615,0,0,51,46,-9,-9,5,1,1,0,1,13,2,1,837,182509.39,0,0,-260.15118 -8050,9918,18115,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-981.0506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,21.219999,-9,-9,2,1,1,0,1,8,1,0,968,53187.234,0,0,1548.1782 -8050,9919,18116,-9,18115,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,4,6.9507494,7.0742149,0,3,0,0,0,-9,0,-967.69568,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,19,0,15,1,0,-9,1,6.1898208,6.1898208,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.374489,3,51.830002,57.200001,-9,-9,5,1,1,0,0,8,2,0,507,24089.953,0,0,371.6792 -8051,9920,18117,-9,-9,-9,1,1,1,37,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1039.3191,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,1,0,6,1,0,1680,-43337.383,0,0,620.07263 -8052,9921,18118,18119,-9,-9,1,1,0,62,1,0,0,0,1,-9,6,3,0,0,5,0,7.4020376,7.236732,1,0,-9,18,0,4,5.4752035,0,0,0,58,1,4,1,2,-9,2019,3,2,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4790449,7.0862603,3.652528,3,55.48,54.599998,54,54,7,1,1,0,0,9,5,1,438.5,1823410.5,0,0,6987.1787 -8052,9921,18119,18118,-9,-9,2,1,1,58,1,0,0,0,1,-9,1,1,0,0,4,8.2774124,9.1730232,8.2427797,1,0,-9,18,0,-4,-27.449259,0,0,0,62,1,5,3,2,2,2019,2,1,8,0,20,25,15,1,0,3,0,24.617378,24.617378,0,0,0,0,0,0,0,0,1,1,0,8.1758928,8.5295925,0,0,54,54,55.48,54.599998,6,1,1,0,0,9,5,1,438.5,1823410.5,0,0,6987.1787 -8053,9922,18120,18121,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.0298672,8.1002502,0,1,0,-9,9,0,0,94.572853,0,0,0,54,1,4,1,2,3,2019,1,2,5,0,35,35,15,1,0,1,0,10.428633,10.428633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,60.27,49.27,6,1,1,0,0,12,5,1,430,1336218.3,0,0,3831.1738 -8053,9922,18121,18120,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,8.6771564,8.5960379,0,1,0,-9,9,0,0,-18.225222,0,0,0,54,2,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,17.518799,17.518799,0,0,0,0,0,0,0,0,0,0,0,1.7018594,0,0,0,60.27,49.27,57.16,56.150002,6,1,1,0,0,12,5,1,430,1336218.3,0,0,3831.1738 -8054,9923,18122,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,3,0,7.784153,7.7337484,3,0,-9,0,1,0,-983.29694,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.3448391,7.5995584,15.542062,3,40.25,49.02,-9,-9,3,1,1,0,0,10,3,1,1687,1096377.3,0,0,1517.1935 -8055,9924,18123,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,8,3,1,1,2,0,7.2829514,7.0677352,3,0,0,0,-9,0,-935.94812,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7081323,0,0,0,30.700001,38.830002,-9,-9,2,1,1,0,1,7,2,1,1178,233878.72,0,0,1307.579 -8056,9925,18124,-9,-9,-9,1,1,1,84,2,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-880.23218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.1271791,0,0,1,1,0,0,0,0,0,53.369999,17.700001,-9,-9,6,1,1,0,0,13,1,1,260,-155567.67,0,0,531.17023 -8056,9926,18125,-9,-9,-9,2,1,1,80,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1065.5676,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.835342,3,49.439999,54.259998,-9,-9,7,1,1,0,0,13,1,1,2106,32828.473,0,0,1070.8306 -8057,9927,18126,-9,-9,-9,1,1,0,22,2,0,0,0,1,0,7,2,0,0,3,7.031096,6.8817506,0,3,0,0,0,-9,0,-993.04523,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,22,7,20,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.950001,49.34,-9,-9,2,1,1,0,0,12,2,0,1008,7703.1855,0,0,2347.4399 -8058,9928,18127,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,2,1,0,0,4,9.0635223,9.062253,0,3,0,0,0,-9,0,-1059.4438,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,43,43,15,1,0,-9,0,29.495804,29.495804,0,0,0,0,0,0,0,0,0,0,0,5.1897569,0,0,0,46.16,58.619999,-9,-9,6,1,1,0,0,1,5,1,910,845991.94,0,0,2080.7026 -8059,9929,18128,-9,18130,18129,1,1,1,34,2,0,0,0,2,-9,1,1,0,0,2,6.0241442,5.5802879,0,3,0,0,0,-9,0,-973.69104,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,7,48,70,15,1,1,-9,1,.98319536,.98319536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.889999,45.939999,-9,-9,3,1,1,0,1,7,2,1,401,-25364.867,0,0,111.09026 -8059,9930,18129,18130,-9,-9,3,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,8.6268005,8.4795408,1,0,-9,42,0,3,29.360638,0,0,0,64,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2588565,8.2556524,0,3,57.330002,53.459999,49.349998,59.639999,6,1,1,0,0,7,5,1,787,3565424,0,0,4674.0898 -8059,9930,18130,18129,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.226531,8.666543,1,0,-9,38,0,-3,57.803688,0,0,0,67,1,3,3,2,-9,2019,4,3,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2892959,8.5921898,5.0890846,3,49.349998,59.639999,57.330002,53.459999,6,1,1,0,0,7,5,1,787,3565424,0,0,4674.0898 -8060,9931,18131,18132,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.190197,6.6757984,1,0,-9,17,0,-7,-44.394672,0,0,0,69,1,4,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.6685171,6.7579803,0,0,46.389999,60.990002,62.25,45.630001,6,1,1,0,0,2,3,1,1679,1490338.9,0,0,2825.3579 -8060,9931,18132,18131,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.2133613,7.3768306,1,0,-9,17,0,7,-147.09576,0,0,0,62,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,0,1,6.6037812,7.1025782,0,0,62.25,45.630001,46.389999,60.990002,6,1,1,0,0,2,3,1,1679,1490338.9,0,0,2825.3579 -8060,9932,18133,-9,18131,18132,3,1,1,35,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1045.088,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.040001,54.119999,-9,-9,3,4,2,1,1,2,1,1,5535,28223.404,0,0,-884.85211 -8061,9933,18134,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,6.24336,5.9949694,3,0,0,0,-9,0,-1120.8792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7908039,6.1354451,0,0,57.490002,45.07,-9,-9,5,1,1,0,0,12,2,1,1521,547777.13,0,0,1334.0715 -8062,9934,18135,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,5,8.8548164,8.9483032,0,3,0,0,0,-9,0,-911.83594,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,38,38,15,1,0,-9,0,14.860378,14.860378,0,0,0,0,0,0,0,0,0,0,0,2.4588854,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,9,5,0,389,229054.81,0,0,2133.5002 -8063,9935,18136,18137,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,8.6967726,8.2788639,1,0,-9,44,0,4,-165.90138,0,0,0,65,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.469563,8.5418396,0,0,59.700001,53.75,51.77,58.57,7,1,1,0,0,8,4,1,423,2026926,0,0,4320.7002 -8063,9935,18137,18136,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.1189861,7.4398317,1,0,-9,44,0,-4,-2.6516213,0,0,0,69,1,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4677887,0,0,51.77,58.57,59.700001,53.75,6,1,1,0,0,8,4,1,423,2026926,0,0,4320.7002 -8064,9936,18138,18139,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-5,0,0,0,0,77,3,2,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.8160353,0,0,0,53.389999,44.470001,55.599998,37.07,6,4,5,0,0,8,1,1,1374.5,222003.91,0,0,1885.8563 -8064,9936,18139,18138,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,5,0,0,0,0,72,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.599998,37.07,53.389999,44.470001,6,1,1,0,0,8,1,1,1374.5,222003.91,0,0,1885.8563 -8065,9937,18140,18141,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,2,8.969821,9.1257305,0,1,0,-9,41,0,-2,-34.741253,0,0,0,59,2,3,1,2,2,2019,1,2,20,8,50,60,15,1,1,1,0,15.823781,15.823781,0,0,0,0,0,0,0,2,1,1,0,0,0,1.0404074,3,33.130001,35.049999,50.150002,48.439999,2,1,1,0,0,10,5,1,2485.5,1994338.3,0,0,5764.0723 -8065,9937,18141,18140,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,1,3,8.912447,9.0154123,7.3602514,1,0,-9,8,0,2,-8.1498842,0,0,0,57,1,2,1,-9,-9,2019,1,1,20,9,43,44,15,1,1,1,0,19.168312,19.168312,0,0,0,0,0,0,0,0,1,1,0,4.3463573,7.9625773,0,0,50.150002,48.439999,33.130001,35.049999,3,1,1,0,0,10,5,1,2485.5,1994338.3,0,0,5764.0723 -8066,9938,18142,18143,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,2,8.4390373,8.5202904,0,1,0,-9,40,0,-3,198.81146,0,0,0,61,1,5,1,3,3,2019,1,2,26,10,53,43,15,1,1,1,0,11.01792,11.01792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.99,44.43,57.060001,57.759998,3,4,2,0,0,9,5,1,326.5,6714444,0,0,7359.9375 -8066,9938,18143,18142,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,0,5,9.6457319,9.8615389,7.4032803,1,0,-9,40,0,3,-43.826397,0,0,0,58,1,2,1,3,3,2019,1,1,8,0,60,50,15,1,0,1,0,32.973877,32.973877,0,0,0,0,0,0,0,0,0,0,0,3.5347631,7.6112342,0,0,57.060001,57.759998,24.99,44.43,6,1,1,0,0,9,5,1,326.5,6714444,0,0,7359.9375 -8067,9939,18144,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,4,0,9.202837,8.8765764,3,0,0,0,-9,0,-1003.9096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1521158,9.0720072,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,12,5,1,551,2498275.3,0,0,5020.6777 -8068,9940,18145,18146,-9,-9,4,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,8.199544,8.1775522,0,2,0,-9,3,0,10,0,0,0,0,38,2,5,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,11.781526,11.781526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,46.880001,60.959999,6,1,1,0,0,7,4,1,1394,334669.91,0,0,3237.1101 -8068,9940,18146,18145,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,5,8.2705765,8.3733301,0,2,0,-9,3,0,-10,0,0,0,1,48,2,3,1,2,2,2019,1,4,9,0,38,37,15,1,0,1,0,9.8440495,9.8440495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.880001,60.959999,54.959999,53.169998,6,1,1,0,0,7,4,1,1394,334669.91,0,0,3237.1101 -8069,9941,18147,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,3,3,0,0,4,5.9122834,5.8633671,0,3,0,0,0,-9,0,-1009.1786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,3,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.379999,66.860001,-9,-9,2,1,1,1,1,2,2,1,64,526049.69,0,0,1387.5559 -8070,9942,18148,18149,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,10,0,0,0,0,75,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.54266483,0,0,0,59.700001,53.75,34.509998,57.34,3,1,1,0,0,10,1,0,467,273115.13,0,0,1127.6156 -8070,9942,18149,18148,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-10,0,0,0,0,85,3,3,3,3,3,2019,4,2,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8208144,0,0,0,34.509998,57.34,59.700001,53.75,6,1,1,0,0,10,1,0,467,273115.13,0,0,1127.6156 -8071,9943,18150,18151,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.1908064,8.1680555,0,1,0,-9,6,0,-1,19.122406,0,0,1,33,1,4,1,-9,-9,2019,1,1,11,2,40,41,15,1,0,1,0,12.253478,12.253478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,50,57,5,1,1,0,0,4,5,1,250,22977.221,0,0,3320.4692 -8071,9943,18151,18150,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,8.2990227,8.171607,0,1,0,-9,6,0,1,25.471743,0,0,0,32,1,4,1,2,1,2019,1,2,10,1,37,37,15,1,0,1,0,11.180121,11.180121,0,0,0,0,0,0,0,0,0,0,0,3.4426541,0,0,0,50,57,48,57,5,1,1,0,0,4,5,1,250,22977.221,0,0,3320.4692 -8072,9944,18152,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,6.9933844,7.5380993,3,0,0,0,-9,0,-834.72083,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7842479,7.6363039,0,0,54.919998,38.259998,-9,-9,4,1,1,0,0,7,3,1,1904,2431004,0,0,2075.8542 -8073,9945,18153,18154,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,7.7442732,8.0344267,1,0,-9,5,0,5,90.105865,0,0,0,67,2,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7629013,7.6049013,0,0,59.43,58.049999,57.060001,57.759998,7,1,1,0,0,10,3,1,1410,1334317,0,0,6084.4692 -8073,9945,18154,18153,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,6.8910732,7.222086,1,0,-9,5,0,-5,-13.617321,0,0,0,72,2,5,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.7868118,6.9905405,7.5697532,3,57.060001,57.759998,59.43,58.049999,7,1,1,0,0,10,3,1,1410,1334317,0,0,6084.4692 -8074,9946,18155,18156,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,0,5,7.9435568,8.1807375,0,1,0,-9,36,0,3,79.434113,0,0,0,61,2,2,1,3,2,2019,1,2,11,0,25,25,15,1,0,1,0,10.512977,10.512977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,41.889999,43.23,6,1,1,0,0,8,4,1,259,2301141.3,0,0,4309.4424 -8074,9946,18156,18155,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,8.1796541,8.0317564,0,1,0,-9,36,0,-3,-7.211113,0,0,0,64,1,5,1,3,2,2019,1,1,15,4,37,32,15,1,1,1,0,14.052259,14.052259,0,0,0,0,0,0,0,0,0,0,0,7.9158268,0,0,0,41.889999,43.23,48.77,60.16,5,3,4,0,0,8,4,1,259,2301141.3,0,0,4309.4424 -8075,9947,18157,18158,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,4.0415297,4.396524,1,0,-9,7,0,1,107.0843,0,0,0,69,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.199244,4.3282313,0,0,63.41,29.17,57.919998,51.82,6,1,1,0,0,6,1,1,2305,326984.94,0,0,1200.9619 -8075,9947,18158,18157,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-1,-87.103104,0,0,0,70,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,57.919998,51.82,63.41,29.17,6,1,1,0,0,6,1,1,2305,326984.94,0,0,1200.9619 -8076,9948,18159,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,0,2,0,7.1186218,7.1948028,3,0,0,0,-9,0,-943.59924,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2907319,6.8456645,0,0,35.43,47.77,-9,-9,3,1,1,0,0,10,3,1,2069,412550.34,0,0,1201.5732 -8077,9949,18160,18161,-9,-9,1,1,1,50,1,0,3,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,8,0,12,0,0,0,0,38,2,2,3,3,2,2019,4,2,28,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.560001,17.190001,30.200001,52.759998,6,1,1,0,0,13,1,0,449,64842,0,0,1886.9279 -8077,9949,18161,18160,-9,-9,2,1,0,38,1,0,3,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,8,0,-12,0,0,0,1,50,2,1,3,2,2,2019,4,1,15,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.91766465,0,2.6552966,2,30.200001,52.759998,33.560001,17.190001,6,1,1,1,0,13,1,0,449,64842,0,0,1886.9279 -8077,9949,18162,-9,18161,18160,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.98993,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,449,64842,0,0,1886.9279 -8078,9950,18163,18164,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,1,-61.149437,0,0,0,75,2,2,3,2,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,40.82,39.82,6,1,1,0,0,4,4,1,523,1161805.8,0,0,2471.5125 -8078,9950,18164,18163,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,8.539053,8.6945477,1,0,-9,56,0,-1,-29.591206,0,0,0,76,2,3,3,2,3,2019,4,2,19,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7609076,8.8222733,0,0,40.82,39.82,50,46,4,1,1,0,0,4,4,1,523,1161805.8,0,0,2471.5125 -8079,9951,18165,18166,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,9.5158958,9.4467487,0,1,0,-9,2,0,1,-116.28134,0,1,1,24,1,3,1,-9,-9,2019,1,1,8,0,58,40,15,1,0,1,0,27.343929,27.343929,0,0,0,0,0,0,0,0,0,0,0,.74159211,0,0,0,51.240002,58.84,35.549999,60.77,6,1,1,0,0,9,5,1,1269.5,36657.02,0,0,4192.6265 -8079,9951,18166,18165,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,0,3,8.2130756,8.2188215,0,1,0,-9,2,0,-1,-30.396952,0,1,0,25,1,4,1,-9,-9,2019,1,2,19,7,41,36,15,1,1,1,0,6.7772026,6.7772026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.549999,60.77,51.240002,58.84,5,1,1,0,0,9,5,1,1269.5,36657.02,0,0,4192.6265 -8080,9952,18167,18168,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,8.2138538,8.0863543,1,0,-9,9,0,0,-20.510653,0,0,0,69,1,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6646409,7.9741011,0,0,54.610001,51.040001,57.32,47.779999,6,1,1,0,0,12,3,1,1356,1072152.1,0,0,2524.0928 -8080,9952,18168,18167,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,0,7.587019,0,0,0,69,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56600893,0,0,0,57.32,47.779999,54.610001,51.040001,6,1,1,0,0,12,3,1,1356,1072152.1,0,0,2524.0928 -8081,9953,18169,18170,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-1,-63.928333,0,0,0,78,2,3,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.0990815,0,0,0,58.900002,35.040001,42.18,46.529999,6,1,1,0,0,1,3,1,363.5,553232.25,0,0,2875.2104 -8081,9953,18170,18169,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.9579654,7.9780974,1,0,-9,56,0,1,120.36357,0,0,0,77,2,3,3,3,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.0822935,0,0,42.18,46.529999,58.900002,35.040001,6,1,1,0,0,1,3,1,363.5,553232.25,0,0,2875.2104 -8082,9954,18171,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-982.64685,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,11.037769,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,1,12,1,0,4610,650918.75,0,0,277.06339 -8083,9955,18172,18173,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,44,0,4,0,0,0,0,64,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.200001,49.400002,42.349998,36.310001,7,1,1,0,0,2,1,0,1157,101109.1,0,0,2453.5713 -8083,9955,18173,18172,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,-4,0,0,0,0,68,3,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,0,1,3.1609194,0,10.924077,1,42.349998,36.310001,55.200001,49.400002,4,1,1,0,0,2,1,0,1157,101109.1,0,0,2453.5713 -8083,9956,18174,-9,-9,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,7.4390683,8.0096788,0,3,0,0,0,-9,0,-968.58026,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.0625939,0,0,0,38.549999,48.59,-9,-9,5,1,1,0,0,2,3,0,616,-63133.242,0,0,890.20532 -8083,9957,18175,-9,-9,-9,4,1,0,19,2,0,0,0,2,1,2,1,0,0,4,6.1194687,6.0650349,0,3,0,0,0,-9,0,-1083.9563,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,6,0,15,1,1,-9,0,7.5928402,7.5928402,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.150002,49.650002,-9,-9,6,1,1,0,0,2,2,0,2255,-133201.11,0,0,971.7489 -8084,9958,18176,18177,-9,-9,1,1,0,56,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,4,8.672307,0,0,0,52,2,4,1,3,3,2019,3,2,21,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.560001,13.89,57.16,56.150002,6,1,1,0,0,2,5,1,754,1545259.5,0,0,2466.4224 -8084,9958,18177,18176,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,9.1408663,8.9881182,0,1,0,-9,7,0,-4,-36.025665,0,0,0,56,2,1,3,3,3,2019,2,1,9,0,55,50,15,1,0,3,0,16.922216,16.922216,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.340668,1,57.16,56.150002,43.560001,13.89,6,1,1,0,0,2,5,1,754,1545259.5,0,0,2466.4224 -8085,9959,18178,-9,18179,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1024.2363,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,7,4,0,855.33331,123039.91,0,0,2438.1946 -8085,9959,18179,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,5,8.6836195,8.6465578,6.4450412,4,0,0,0,-9,0,-989.37769,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,45,55,15,1,0,-9,0,17.990433,17.990433,0,0,0,0,0,0,0,0,1,1,0,6.8077002,0,0,0,39.540001,64.559998,-9,-9,5,1,1,0,1,7,4,0,855.33331,123039.91,0,0,2438.1946 -8085,9959,18180,-9,18179,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-989.88611,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,7,4,0,855.33331,123039.91,0,0,2438.1946 -8086,9960,18181,-9,-9,-9,1,1,1,41,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-956.03271,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.200001,34.349998,-9,-9,5,1,1,0,0,9,1,0,497,-97729.641,0,0,-244.1774 -8087,9961,18182,-9,-9,-9,2,1,0,21,2,0,0,0,1,1,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-877.5451,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,47.380001,-9,-9,7,1,1,0,0,10,1,0,609,6700.3965,0,0,0 -8087,9962,18183,18184,-9,-9,3,1,0,24,1,0,0,0,1,-9,1,1,0,0,5,7.5993476,7.7418542,4.450963,1,0,-9,3,0,0,-96.769501,0,1,1,24,1,4,1,-9,-9,2019,1,1,8,0,40,30,15,1,0,1,0,5.7872887,5.7872887,0,0,0,0,0,0,0,0,0,0,0,4.4353852,0,0,0,51.610001,61.540001,54.790001,55.860001,6,1,1,0,0,10,3,0,565,121636.56,0,0,1344.2389 -8087,9962,18184,18183,-9,-9,1,1,1,24,1,0,0,0,1,-9,1,1,0,0,4,7.1240063,7.0583081,0,1,0,-9,3,0,0,54.40163,0,1,0,24,1,5,1,1,1,2019,1,3,7,0,38,35,15,1,0,1,0,4.8860416,4.8860416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,51.610001,61.540001,6,1,1,0,0,10,3,0,565,121636.56,0,0,1344.2389 -8088,9963,18185,18186,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,0,2,7.7733026,7.7907391,0,1,0,-9,30,0,17,63.689152,0,0,0,47,1,4,1,3,3,2019,1,1,8,0,38,40,15,1,0,1,0,7.6708298,7.6708298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.02,28.48,57.16,56.150002,6,1,1,0,0,11,5,0,232.5,1399984.6,0,0,1742.9382 -8088,9963,18186,18185,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,0,4,8.3936872,8.6332541,0,1,0,-9,30,0,-17,-24.043009,0,0,0,64,1,2,1,3,3,2019,1,2,7,0,37,40,15,1,0,1,0,17.38311,17.38311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,62.02,28.48,6,1,1,0,0,11,5,0,232.5,1399984.6,0,0,1742.9382 -8089,9964,18187,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,5,6.9138198,7.1892157,0,3,0,0,0,-9,0,-1048.9777,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,21,14,15,1,0,-9,0,6.2815113,6.2815113,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.580002,66.889999,-9,-9,2,3,4,0,0,8,2,0,547,0,0,0,770.03693 -8090,9965,18188,18189,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,8.4956417,8.2743731,0,1,0,-9,2,0,-7,65.243164,0,0,0,61,1,4,3,3,3,2019,2,2,8,0,45,45,15,1,0,3,0,10.124752,10.124752,0,0,0,0,0,0,0,0,0,0,0,3.031621,0,0,0,54.959999,53.169998,54.610001,47.860001,7,3,4,0,0,8,4,1,644.5,-95530.063,0,0,3253.2107 -8090,9965,18189,18188,-9,-9,2,1,0,61,1,0,0,0,1,-9,97,3,0,0,4,0,6.4713821,6.9326348,1,0,-9,2,0,7,4.0911994,0,0,0,54,1,3,1,-9,-9,2019,3,1,6,0,0,30,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9318628,6.9455013,0,0,54.610001,47.860001,54.959999,53.169998,5,3,4,0,0,8,4,1,644.5,-95530.063,0,0,3253.2107 -8091,9966,18190,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-867.05444,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,2.5589249,0,2.63819,0,0,1,1,0,0,0,0,0,34.09,21.18,-9,-9,2,1,1,0,0,11,1,0,809,80983.289,0,0,1739.1705 -8092,9967,18191,-9,18193,18194,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.5108,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,481.25,814493.06,0,0,7041.8945 -8092,9967,18192,-9,18193,18194,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.92053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,481.25,814493.06,0,0,7041.8945 -8092,9967,18193,18194,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,0,4,9.1078777,8.6723938,0,2,0,-9,8,0,0,56.297352,0,0,0,48,2,5,1,-9,-9,2019,1,1,10,0,17,20,15,1,0,1,0,44.084793,44.084793,0,0,0,0,0,0,0,0,1,1,0,7.0472879,0,0,0,51.810001,57.220001,58.049999,51.82,6,1,1,0,0,12,5,1,481.25,814493.06,0,0,7041.8945 -8092,9967,18194,18193,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,5,9.4842739,9.5015459,0,2,0,-9,8,0,0,-.91913831,0,0,0,48,1,4,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,36.05899,36.05899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,51.82,51.810001,57.220001,1,1,1,0,0,12,5,1,481.25,814493.06,0,0,7041.8945 -8093,9968,18195,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,5,8.2722836,8.3587132,0,3,0,-9,0,1,0,-966.15186,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,42,43,15,1,0,-9,0,12.125253,12.125253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.509998,60.740002,-9,-9,6,1,1,0,0,9,4,0,427,1523286,0,0,1823.1931 -8093,9969,18196,-9,18195,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,8.0922575,8.3562431,0,3,0,0,0,-9,0,-927.42065,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,5,43,40,15,1,1,-9,1,8.3533068,8.3533068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.549999,57.43,-9,-9,6,1,1,0,0,9,4,0,32,0,0,0,2024.3928 -8094,9970,18197,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,9.0313807,9.0347319,0,3,0,0,0,-9,0,-996.50085,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,51,0,15,1,0,-9,0,16.934381,16.934381,0,0,0,0,0,0,0,27.5,0,0,0,0,0,29.015081,3,47.889999,56.25,-9,-9,6,1,1,0,0,2,5,1,1941,258736.03,0,0,2071.6765 -8095,9971,18198,18199,-9,-9,1,1,1,44,1,0,0,0,3,-9,2,1,0,0,4,0,0,0,1,0,-9,11,0,-7,0,0,0,0,51,3,3,3,3,3,2019,2,2,10,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.57,53.150002,49.970001,53.990002,6,1,1,0,1,1,1,0,1279,171259.56,0,0,0 -8095,9971,18199,18198,-9,-9,2,1,0,51,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,11,0,7,0,0,0,0,44,3,4,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.970001,53.990002,48.57,53.150002,4,1,1,0,1,1,1,0,1279,171259.56,0,0,0 -8095,9972,18200,-9,18199,18198,3,1,0,20,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-906.72467,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.98,44.779999,-9,-9,3,1,1,1,1,1,1,0,243,-247206.55,0,0,0 -8095,9973,18201,-9,18199,18198,4,1,1,31,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-951.95074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,54.529999,-9,-9,6,1,1,0,0,1,1,0,671,879.97717,0,0,0 -8096,9974,18202,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,0,4,4.1907573,4.5935664,0,3,0,0,0,-9,0,-1000.3286,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.4955206,3,51.240002,58.84,-9,-9,6,1,1,0,0,11,1,0,1171,-96480.352,0,0,1495.5337 -8097,9975,18203,18204,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,8.0943689,8.2469959,1,0,-9,31,0,-2,3.85918,0,0,0,64,1,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.3035328,8.226162,0,0,45.439999,50.580002,51.240002,58.84,6,1,1,0,0,2,4,1,267,2412887,0,0,3503.0039 -8097,9975,18204,18203,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.8478642,7.8670025,1,0,-9,28,0,2,-6.426692,0,0,0,62,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.3422935,7.600925,0,0,51.240002,58.84,45.439999,50.580002,5,1,1,0,0,2,4,1,267,2412887,0,0,3503.0039 -8097,9976,18205,-9,18203,18204,3,1,1,27,2,0,0,0,1,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-990.25452,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,1.5759165,3,49.59,58.369999,-9,-9,6,1,1,1,1,2,1,1,2306,-81233.203,0,0,37.246124 -8097,9977,18206,-9,18203,18204,4,1,1,29,2,0,0,0,1,-9,2,1,0,0,3,7.7483296,7.3543434,0,3,0,0,0,-9,0,-1015.4125,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,24,10,35,28,15,1,1,-9,1,6.271039,6.271039,0,0,0,0,0,0,0,0,1,0,1,.49841374,0,0,0,12.72,65.989998,-9,-9,2,1,1,0,0,2,3,1,1159,-6019.4946,0,0,-533.4425 -8098,9978,18207,18208,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,1,2,5.9345074,6.2128921,0,1,0,-9,7,0,-10,140.86163,0,0,0,67,3,1,3,3,3,2019,2,2,12,0,16,13,15,1,0,3,0,3.3169785,3.3169785,0,0,0,0,0,0,0,110,1,1,0,0,0,124.08246,1,54.610001,51.040001,16.040001,23.99,6,1,1,0,0,12,2,0,523,74275.734,0,0,1533.1268 -8098,9978,18208,18207,-9,-9,2,1,1,67,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,10,38.670116,0,0,0,57,3,2,1,3,3,2019,3,1,26,12,0,0,15,3,1,1,0,0,0,1,0,126.99371,0,0,10.199602,0,0,1,1,0,0,0,0,0,16.040001,23.99,54.610001,51.040001,1,1,1,0,0,12,2,0,523,74275.734,0,0,1533.1268 -8099,9979,18209,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,7.2005129,7.772759,3,0,0,0,-9,0,-898.35699,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6263285,0,0,0,55.09,38.220001,-9,-9,7,1,1,0,0,2,3,1,805,694140.31,0,0,1588.7804 -8100,9980,18210,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,0,3,0,7.7526045,7.8052444,3,0,0,0,-9,0,-874.79474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.8092952,0,0,55.360001,51.57,-9,-9,6,1,1,0,0,10,3,1,541,762360.81,0,0,1271.6949 -8101,9981,18211,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,2,1,0,0,2,8.1500349,8.2468328,3.9976563,4,0,0,0,-9,0,-971.4176,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,16,4,30,24,15,1,1,-9,0,17.242579,17.242579,0,0,0,0,0,0,0,0,1,1,0,4.3081007,0,0,0,42.27,39.150002,-9,-9,5,1,1,0,1,13,3,1,909,159969.28,0,0,1903.9727 -8101,9981,18212,-9,18211,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1181.2695,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,909,159969.28,0,0,1903.9727 -8101,9981,18213,-9,18211,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-923.69604,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,13,3,1,909,159969.28,0,0,1903.9727 -8102,9982,18214,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.7648,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,18,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.31132698,0,0,0,62.490002,55.09,-9,-9,5,1,1,0,0,11,1,0,4502,-60953.547,0,0,687.47882 -8102,9982,18215,-9,18214,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1007.1379,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,1,0,4502,-60953.547,0,0,687.47882 -8103,9983,18216,18217,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,3,5.1202288,7.2728105,7.5564394,1,0,-9,44,0,9,65.594612,0,0,0,73,2,3,1,1,1,2019,3,2,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2251427,7.1054611,0,0,49.439999,43.52,53.139999,45.740002,5,1,1,0,0,8,3,1,542.5,389478.84,0,0,2072.0542 -8103,9983,18217,18216,-9,-9,2,1,0,73,1,0,0,0,2,-9,1,1,0,0,3,6.8276591,7.1984735,5.7936311,1,0,-9,44,0,0,-65.921669,0,0,0,82,1,3,3,2,1,2019,2,1,9,0,15,15,15,1,0,4,0,6.7158208,6.7158208,0,0,0,0,0,0,0,0,1,1,0,6.8588686,0,0,0,53.139999,45.740002,49.439999,43.52,6,1,1,0,0,8,3,1,542.5,389478.84,0,0,2072.0542 -8104,9984,18218,-9,-9,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1012.4647,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,9,1,1,183,-199995.88,0,0,0 -8105,9985,18219,18220,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,1,4,8.6215591,8.5399818,0,1,0,-9,33,0,-1,24.822046,0,0,0,56,1,4,1,3,3,2019,1,2,6,0,38,38,15,1,0,1,0,20.14258,20.14258,0,0,0,0,0,0,0,0,1,1,0,1.1900831,0,0,0,64.080002,44.689999,51.490002,57.57,4,1,1,0,0,6,5,1,1247,1824999.1,0,0,4611.5439 -8105,9985,18220,18219,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,7.5696244,8.8018274,7.763145,1,0,-9,33,0,1,125.14371,0,0,0,55,2,4,1,2,3,2019,1,1,9,0,10,45,15,1,0,1,0,22.926773,22.926773,0,0,0,0,0,0,0,2,1,1,0,2.8619969,7.7725444,0,3,51.490002,57.57,64.080002,44.689999,6,1,1,0,0,6,5,1,1247,1824999.1,0,0,4611.5439 -8106,9986,18221,18223,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,9.0179768,9.2919817,0,2,0,-9,7,0,-5,-204.24084,0,0,1,43,1,3,1,2,2,2019,1,1,11,0,40,36,15,1,0,1,0,24.958004,24.958004,0,0,0,0,0,0,0,0,0,0,0,3.8620005,0,0,0,48.869999,58.549999,48.98,57.220001,6,1,1,0,0,9,5,1,1674.6666,514117.28,0,0,6048.4746 -8106,9986,18222,-9,18221,18223,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.8342,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,5,1,1674.6666,514117.28,0,0,6048.4746 -8106,9986,18223,18221,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,3,8.5151539,8.5810175,0,2,0,-9,7,0,5,-8.9462509,0,0,0,38,1,4,1,3,3,2019,1,2,9,0,44,42,15,1,0,1,0,11.01298,11.01298,0,0,0,0,0,0,0,0,0,0,0,.7942726,0,0,0,48.98,57.220001,48.869999,58.549999,6,1,1,0,0,9,5,1,1674.6666,514117.28,0,0,6048.4746 -8107,9987,18224,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,4,8.4778957,8.5538311,0,3,0,0,0,-9,0,-1004.461,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,38,40,15,1,0,-9,0,12.140228,12.140228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.849998,-9,-9,6,1,1,0,0,8,4,0,367,-58725,0,0,1759.1481 -8108,9988,18225,18226,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,6.8351941,6.5148678,1,0,-9,54,0,7,51.909107,0,0,0,69,3,3,1,3,-9,2019,3,1,17,6,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.7550254,0,0,32.860001,63.630001,34.080002,56.34,5,1,1,0,0,4,2,0,1407,137665.08,0,0,1942.9608 -8108,9988,18226,18225,-9,-9,1,1,0,69,1,0,0,0,3,-9,2,1,0,0,3,6.6385694,6.9630299,5.4333305,1,0,-9,54,0,-7,88.001488,0,0,0,76,3,4,3,3,3,2019,2,2,14,3,11,11,15,1,0,4,0,7.8082232,7.8082232,1,0,0,0,0,0,0,0,1,1,0,0,5.5238962,0,0,34.080002,56.34,32.860001,63.630001,4,1,1,0,0,4,2,0,1407,137665.08,0,0,1942.9608 -8109,9989,18227,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,4,3,0,0,2,0,7.1036105,7.3423023,3,0,0,0,-9,0,-960.14545,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9726648,6.872611,0,0,35.43,47.77,-9,-9,3,1,1,0,0,10,3,1,196,457401.44,0,0,459.35236 -8110,9990,18228,18229,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,47,0,-6,47.135754,0,0,0,68,3,1,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,107.41518,1,53.049999,39.310001,39.799999,18.559999,6,1,1,0,0,11,2,0,1487.5,230448.98,0,0,994.28186 -8110,9990,18229,18228,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,1,1,0,6.4345531,6.7763124,1,0,-9,8,0,6,5.7232456,0,0,0,62,3,3,3,3,3,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,1,0,71.492027,7.100256,16.40283,0,0,0,1,1,0,0,6.7664585,0,0,39.799999,18.559999,53.049999,39.310001,7,1,1,0,0,11,2,0,1487.5,230448.98,0,0,994.28186 -8111,9991,18230,18231,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,5,8.8892279,8.7268009,0,1,0,-9,33,0,0,-10.850936,0,0,0,55,2,3,1,1,3,2019,1,2,4,0,50,50,15,1,0,1,0,20.078949,20.078949,0,0,0,0,0,0,0,2,0,0,0,8.3168659,0,0,3,51.529999,57.009998,50,49,7,1,1,0,0,2,5,1,817.5,1827213.4,0,0,6311.481 -8111,9991,18231,18230,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,9.0700731,8.9660378,0,1,0,-9,8,0,0,3.176023,0,0,0,55,1,5,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,27.161091,27.161091,0,0,0,0,0,0,0,0,0,0,0,5.235076,0,0,0,50,49,51.529999,57.009998,5,1,1,0,0,2,5,1,817.5,1827213.4,0,0,6311.481 -8112,9992,18232,-9,18234,18233,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.28699,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,2,0,863.75,209222.73,0,0,1365.1125 -8112,9992,18233,18234,-9,-9,2,1,1,37,1,1,2,0,2,-9,2,1,0,0,4,7.0786815,6.9411345,0,2,0,-9,5,0,6,-263.32965,0,0,0,31,2,4,3,-9,-9,2019,2,1,4,1,35,16,15,1,0,3,0,3.9952092,3.9952092,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,40.77,61.040001,3,1,1,0,0,10,2,0,863.75,209222.73,0,0,1365.1125 -8112,9992,18234,18233,-9,-9,1,1,0,31,1,1,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,-6,68.676895,0,0,1,37,2,4,1,-9,-9,2019,3,2,10,0,0,10,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.040001,54.200001,57.490002,5,1,1,1,0,10,2,0,863.75,209222.73,0,0,1365.1125 -8112,9992,18235,-9,18234,18233,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.6324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,0,863.75,209222.73,0,0,1365.1125 -8113,9993,18236,18237,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,5.4499154,4.8743634,1,0,-9,57,0,-5,76.587502,0,0,0,80,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,8.0794554,0,0,0,0,0,1,1,0,0,5.0491343,0,0,55.790001,27.1,61.099998,46.73,7,1,1,0,1,5,2,1,696.5,136412.64,0,0,1017.3063 -8113,9993,18237,18236,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,0,2,0,5.0506244,5.3567729,1,0,-9,8,0,5,-10.33581,0,0,0,75,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9245648,5.4037538,0,0,61.099998,46.73,55.790001,27.1,6,1,1,0,0,5,2,1,696.5,136412.64,0,0,1017.3063 -8113,9994,18238,-9,-9,-9,3,1,1,67,3,0,0,0,3,-9,4,3,0,0,3,0,6.7988725,7.2625895,3,0,0,0,-9,0,-958.54919,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3574228,7.1096816,0,0,52,48,-9,-9,5,4,6,0,0,5,2,1,445,478640.84,0,0,109.46101 -8114,9995,18239,18240,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,4,0,8.4919996,8.539875,1,0,-9,51,0,8,-2.1518037,0,0,0,75,2,4,3,1,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.6430225,0,0,57,50,55.82,39.080002,6,1,1,0,0,10,4,1,302,1062115.6,0,0,3272.2275 -8114,9995,18240,18239,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,-8,20.107893,0,0,0,83,3,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,3.2698581,0,0,0,0,0,0,1,1,0,2.1944313,0,0,0,55.82,39.080002,57,50,6,1,1,0,0,10,4,1,302,1062115.6,0,0,3272.2275 -8115,9996,18241,-9,-9,-9,1,1,0,79,3,0,0,0,1,-9,4,3,0,0,2,0,7.0541406,6.8512297,3,0,0,0,-9,0,-1006.4637,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3411436,4.7283144,0,0,52.25,31.98,-9,-9,5,1,1,0,0,10,2,1,417,790763.81,0,0,954.9259 -8116,9997,18242,18243,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,1,0,7.117393,7.1473627,1,0,-9,8,0,5,155.29793,0,0,0,61,2,3,1,-9,-9,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2193189,0,0,41,25,54.959999,53.169998,4,1,1,0,0,2,2,0,574,132518.97,0,0,1593.3003 -8116,9997,18243,18242,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,6.3749237,6.3007593,0,1,0,-9,16,0,-5,-52.990353,0,0,0,66,3,1,3,2,2,2019,2,1,8,0,16,16,15,1,0,4,0,5.354589,5.354589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,41,25,6,1,1,0,0,2,2,0,574,132518.97,0,0,1593.3003 -8117,9998,18244,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,2,0,7.681107,7.8813181,3,0,0,0,-9,0,-1075.4564,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7027531,7.5370235,0,0,60.529999,48.349998,-9,-9,6,1,1,0,0,6,3,1,903,166395.72,0,0,817.69745 -8118,9999,18245,18246,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.1678753,8.1975956,1,0,-9,8,0,-1,-23.990229,0,0,0,70,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2251987,0,0,52,47,60.459999,33.02,5,1,1,0,0,2,3,1,2456.5,1028303.4,0,0,2795.7183 -8118,9999,18246,18245,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.2241988,6.3113947,1,0,-9,48,0,1,-43.178207,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,5.4545588,0,0,0,0,0,1,1,0,3.5450633,6.3049569,0,0,60.459999,33.02,52,47,6,1,1,0,0,2,3,1,2456.5,1028303.4,0,0,2795.7183 -8119,10000,18247,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,3,8.7966175,8.931613,0,3,0,0,0,-9,0,-1080.1327,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,7,40,15,1,0,-9,0,95.326714,95.326714,0,0,0,0,0,0,0,0,1,1,0,7.1214023,0,0,0,54.900002,54.529999,-9,-9,5,2,3,0,0,10,5,1,2217,113512.05,0,0,3829.5125 -8120,10001,18248,18250,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,9.6249189,9.7112389,0,2,0,-9,11,0,-1,-67.427513,0,0,0,50,1,3,1,1,1,2019,1,2,9,0,42,45,15,1,0,1,0,45.729939,45.729939,0,0,0,0,0,0,0,0,0,0,0,5.9137535,0,0,0,51.240002,58.84,42.610001,49.310001,6,1,1,0,0,8,5,1,1204.3334,1989399,0,0,8618.7637 -8120,10001,18249,-9,18248,18250,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1112.3958,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,1204.3334,1989399,0,0,8618.7637 -8120,10001,18250,18248,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,3,9.214427,9.2983236,0,2,0,-9,11,0,1,78.583527,0,0,0,49,1,4,1,1,1,2019,1,1,13,1,50,45,15,1,0,1,0,22.12084,22.12084,0,0,0,0,0,0,0,0,0,0,0,6.6004076,0,0,0,42.610001,49.310001,51.240002,58.84,5,1,1,0,0,8,5,1,1204.3334,1989399,0,0,8618.7637 -8121,10002,18251,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-902.06354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.419998,32.41,-9,-9,6,1,1,0,0,12,1,0,1615,3516.1147,0,0,1795.0887 -8121,10003,18252,-9,18251,-9,2,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,8.1907625,7.7625928,0,3,0,0,0,-9,0,-1082.2904,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,37,37,15,1,0,-9,1,10.476348,10.476348,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,2,1,1,0,0,12,4,0,411,124037.99,0,0,1401.0651 -8122,10004,18253,-9,18256,18254,7,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.58942,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,1,383.39999,64461.668,0,0,1796.4432 -8122,10004,18254,18256,18258,18259,2,1,1,36,1,0,3,0,1,-9,2,1,0,0,4,8.1414089,7.9686408,0,2,0,-9,4,0,3,38.880497,0,0,0,33,2,2,3,3,2,2019,2,1,10,1,37,40,15,1,0,3,0,8.7859507,8.7859507,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,45.23,32.27,5,2,3,0,0,8,2,1,383.39999,64461.668,0,0,1796.4432 -8122,10004,18255,-9,18256,18254,6,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.1239,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,1,383.39999,64461.668,0,0,1796.4432 -8122,10004,18256,18254,-9,-9,1,1,0,33,1,0,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,11,0,-3,-29.321867,0,0,1,36,1,4,1,-9,-9,2019,3,2,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.34927,3,45.23,32.27,51,56,5,2,3,0,0,8,2,1,383.39999,64461.668,0,0,1796.4432 -8122,10004,18257,-9,18256,18254,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.48627,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,1,383.39999,64461.668,0,0,1796.4432 -8122,10005,18258,18259,-9,-9,3,1,0,70,1,0,3,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,4,0,-2,181.51358,-9,0,0,72,2,3,3,3,3,2019,4,4,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,54,46,5,2,3,0,0,8,1,1,324,372947.31,0,0,2494.5908 -8122,10005,18259,18258,-9,-9,4,1,1,72,1,0,3,0,2,-9,4,3,0,0,3,0,3.4142487,3.56003,2,0,-9,4,0,2,-70.63118,-9,0,0,70,3,3,3,-9,-9,2019,4,3,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2932508,0,0,54,46,51,46,5,2,3,0,0,8,1,1,324,372947.31,0,0,2494.5908 -8123,10006,18260,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,2,0,6.9843221,7.0462971,3,0,0,0,-9,0,-1018.6753,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0902624,0,0,44.700001,25.76,-9,-9,4,1,1,0,0,4,2,1,394,769544.44,0,0,1071.3409 -8124,10007,18261,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,4,3,0,0,5,0,8.2932158,8.3073721,3,0,0,0,-9,0,-948.43329,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.0731649,16.461704,3,50.700001,54.060001,-9,-9,6,1,1,0,0,9,4,1,1301,1277586.4,0,0,1960.3386 -8125,10008,18262,18263,-9,-9,1,1,1,30,1,0,1,0,2,-9,2,1,0,0,5,8.7612648,8.5047092,0,2,0,-9,1,-9,2,-104.92068,-9,0,0,28,2,4,1,3,3,2019,1,2,10,0,38,0,15,1,0,1,0,16.284491,16.284491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.610001,61.540001,51.830002,57.200001,6,1,1,0,0,1,4,1,474.66666,-32852.656,0,0,2494.7229 -8125,10008,18263,18262,-9,-9,2,1,0,28,1,0,1,0,2,-9,2,1,0,0,4,7.407434,7.5606852,0,2,0,-9,1,-9,-2,-64.747353,-9,1,1,30,2,5,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,5.5517173,5.5517173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.610001,61.540001,6,1,1,0,0,1,4,1,474.66666,-32852.656,0,0,2494.7229 -8125,10008,18264,-9,18263,18262,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1031.0581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,474.66666,-32852.656,0,0,2494.7229 -8126,10009,18265,18266,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,0,3,9.3029327,9.1752663,0,2,0,-9,3,0,0,13.857456,0,0,0,36,1,5,3,2,2,2019,2,2,10,0,40,39,15,1,0,3,0,27.742186,27.742186,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.970001,37.32,51.73,58.82,5,1,1,0,0,12,5,0,581.33331,251753,0,0,3364.124 -8126,10009,18266,18265,-9,-9,2,1,0,36,1,1,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,3,0,0,27.648518,0,0,1,36,1,3,1,-9,-9,2019,3,1,8,0,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.014193941,0,0,0,51.73,58.82,53.970001,37.32,6,1,1,0,0,12,5,0,581.33331,251753,0,0,3364.124 -8126,10009,18267,-9,18266,18265,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.0165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,0,581.33331,251753,0,0,3364.124 -8127,10010,18268,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,1,1,0,0,5,7.3369899,7.4272046,0,3,0,0,0,-9,0,-1022.4661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,16,15,1,0,-9,0,8.1275921,8.1275921,0,0,0,0,0,0,0,2,0,0,0,2.2785761,0,6.9999342,3,58.049999,54.52,-9,-9,6,1,1,0,0,7,3,1,214,321973.5,0,0,692.73584 -8128,10011,18269,18270,-9,-9,2,1,0,55,1,0,1,0,1,-9,2,1,0,0,4,8.5710773,8.7363653,0,2,0,-9,30,0,-2,-86.483673,0,0,0,57,3,5,1,2,2,2019,1,1,7,0,35,36,15,1,0,1,0,20.547415,20.547415,0,0,0,0,0,0,0,0,0,0,0,1.4238021,0,0,0,54.790001,55.860001,57.060001,57.759998,6,1,1,0,0,13,4,1,2046,608686.5,0,0,3532.0269 -8128,10011,18270,18269,-9,-9,1,1,1,57,1,0,1,0,3,-9,1,1,0,0,5,7.6249657,7.8445153,0,2,0,-9,30,0,2,124.1554,0,0,0,55,1,4,1,3,3,2019,1,2,7,0,50,50,15,1,0,1,0,5.5520926,5.5520926,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,13,4,1,2046,608686.5,0,0,3532.0269 -8129,10012,18271,18272,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,8.5727634,8.499053,0,1,0,-9,36,0,-1,27.913055,0,0,0,54,3,3,1,3,1,2019,1,2,20,8,57,50,15,1,1,1,0,11.437174,11.437174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,60.310001,58.080002,43.459999,5,4,2,0,0,7,5,1,1395,166581.75,0,0,3669.8826 -8129,10012,18272,18271,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,8.1823835,8.2117319,0,1,0,-9,36,0,1,81.674652,0,0,0,53,2,5,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,13.255478,13.255478,0,0,0,0,0,0,0,0,0,0,0,4.3700442,0,0,0,58.080002,43.459999,43.34,60.310001,6,1,1,0,0,7,5,1,1395,166581.75,0,0,3669.8826 -8130,10013,18273,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,1,1,0,0,1,6.9597659,6.9343071,0,3,0,0,0,-9,0,-1004.8411,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,40,40,15,1,1,-9,0,3.0185459,3.0185459,0,0,0,0,0,0,0,74.5,1,1,0,0,0,79.740616,3,40.93,38.490002,-9,-9,3,1,1,0,0,10,2,0,485,-15409.756,0,0,694.49261 -8130,10014,18274,-9,-9,-9,2,1,0,79,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-968.6178,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.75,12.65,-9,-9,4,1,1,0,0,10,1,0,1088,93732.555,0,0,1070.9362 -8131,10015,18275,-9,18277,18276,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1143.9717,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,11,3,1,2247,-40589.555,0,0,2601.3362 -8131,10015,18276,18277,-9,-9,1,1,1,48,1,0,1,0,3,-9,2,1,0,0,3,8.2247458,8.2549992,0,2,0,-9,8,0,-1,-80.541145,-9,0,0,49,2,3,1,-9,-9,2019,1,2,10,0,30,0,15,1,0,1,0,11.743798,11.743798,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.029999,52.619999,41.490002,44.52,5,1,1,0,0,11,3,1,2247,-40589.555,0,0,2601.3362 -8131,10015,18277,18276,-9,-9,2,1,0,49,1,0,1,0,2,-9,1,1,0,0,3,6.0948129,6.2017312,0,2,0,-9,8,0,1,-70.885063,0,0,0,48,3,3,1,3,3,2019,1,1,12,2,40,35,15,1,0,1,0,1.5951649,1.5951649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.490002,44.52,50.029999,52.619999,5,1,1,0,0,11,3,1,2247,-40589.555,0,0,2601.3362 -8131,10016,18278,-9,18277,18276,3,1,1,24,2,0,1,0,2,-9,2,1,0,0,3,7.0541105,7.0704494,0,3,0,0,0,-9,0,-963.13684,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,15,2,25,25,15,1,0,-9,1,5.7503324,5.7503324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,4,1,1,0,0,11,2,1,1170,0,0,0,561.54486 -8132,10017,18279,18280,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,4,0,8.5828638,8.7193604,1,0,-9,50,0,0,207.78032,0,0,0,72,1,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2877092,8.3899641,0,0,57.16,56.150002,59.43,58.049999,6,1,1,0,0,7,5,1,938.5,1995368,0,0,6118.7915 -8132,10017,18280,18279,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,5,0,8.3312321,7.8551879,1,0,-9,53,0,0,62.532913,0,0,0,72,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.210218,7.9598703,0,0,59.43,58.049999,57.16,56.150002,7,4,2,0,0,7,5,1,938.5,1995368,0,0,6118.7915 -8133,10018,18281,-9,18283,18284,2,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.6289749,9.0206032,0,3,0,0,0,-9,0,-1070.8905,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,41,40,15,1,0,-9,1,21.421038,21.421038,0,0,0,0,0,0,0,0,0,0,0,4.9440289,0,0,0,58.150002,52.91,-9,-9,6,2,3,0,0,6,5,1,256,28201.354,0,0,1633.1522 -8133,10019,18282,-9,18283,18284,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,5,7.5094118,7.4058552,0,3,0,0,0,-9,0,-989.35681,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1488116,0,0,0,60.18,45.349998,-9,-9,6,2,3,0,0,6,3,1,441,226713.16,0,0,501.98627 -8133,10020,18283,18284,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.8211904,7.8748307,0,1,0,-9,5,0,-8,-32.520851,-9,0,0,60,1,3,1,2,1,2019,1,4,10,0,37,0,15,1,0,1,0,9.0394831,9.0394831,0,0,0,0,0,0,0,0,0,0,0,1.3269044,0,0,0,50.279999,51.349998,52.25,53.240002,6,2,3,0,0,6,4,1,430.5,1133076.8,0,0,3206.4885 -8133,10020,18284,18283,-9,-9,4,1,1,60,1,0,0,0,1,-9,2,1,0,0,3,8.287693,8.172965,4.9014716,1,0,-9,5,0,8,22.493248,-9,0,0,52,2,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,9.6252747,9.6252747,0,0,0,0,0,0,0,0,0,0,0,5.1896567,5.2276511,0,0,52.25,53.240002,50.279999,51.349998,6,2,3,0,0,6,4,1,430.5,1133076.8,0,0,3206.4885 -8134,10021,18285,-9,18287,18286,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,5.9991474,5.6898932,0,2,0,0,0,-9,0,-935.17603,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,0,859.66669,160434,0,0,2395.269 -8134,10021,18286,18287,-9,-9,2,1,1,42,1,0,1,0,3,-9,2,1,0,0,2,7.3623185,7.4938149,0,2,0,-9,27,0,0,81.374046,0,0,0,42,2,2,1,2,3,2019,1,1,11,0,25,16,15,1,0,1,0,7.3425875,7.3425875,0,0,0,0,0,0,0,7,1,1,0,0,0,4.8971643,3,42.860001,31.98,53.049999,37.93,4,1,1,0,0,7,2,0,859.66669,160434,0,0,2395.269 -8134,10021,18287,18286,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,2,6.9384165,6.5386519,0,2,0,-9,27,0,0,13.894786,0,0,1,42,3,2,1,3,3,2019,1,2,11,0,30,16,15,1,0,1,0,3.2383597,3.2383597,0,0,0,0,0,0,0,2,1,1,0,0,0,2.5974262,2,53.049999,37.93,42.860001,31.98,6,1,1,0,0,7,2,0,859.66669,160434,0,0,2395.269 -8134,10022,18288,-9,18287,18286,3,1,1,19,2,0,1,0,2,1,2,1,0,0,3,7.4663959,6.9927168,0,3,0,0,0,-9,0,-1037.4261,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,25,0,15,1,0,-9,1,5.831048,5.831048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,7,3,0,1847,80565.117,0,0,1435.7654 -8135,10023,18289,18290,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,4,35.861252,0,0,0,67,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.476078,0,0,0,52,48,40.639999,52.959999,5,1,1,0,0,5,2,0,725.5,569617.31,0,0,3292.4905 -8135,10023,18290,18289,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,1,3,0,7.6811266,7.7029681,1,0,-9,8,0,-4,3.1537268,0,0,0,71,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3957043,0,0,40.639999,52.959999,52,48,6,1,1,0,0,5,2,0,725.5,569617.31,0,0,3292.4905 -8136,10024,18291,18292,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,2,0,4.7603102,4.2854376,1,0,-9,7,0,5,-136.71094,0,0,0,74,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.5723071,0,0,59.799999,39.25,65.139999,18.77,5,1,1,0,0,5,1,0,637,152081.34,0,0,1805.5491 -8136,10024,18292,18291,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,-5,34.713779,0,0,0,79,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.139999,18.77,59.799999,39.25,4,1,1,0,0,5,1,0,637,152081.34,0,0,1805.5491 -8137,10025,18293,18294,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,7.9415779,7.8670511,1,0,-9,57,0,5,191.86909,0,0,0,73,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9689822,8.1447268,0,0,58.639999,25.59,58.32,50.220001,2,1,1,0,0,9,3,1,385,471512.25,0,0,2391.7007 -8137,10025,18294,18293,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-5,-31.452488,0,0,0,78,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2038035,0,0,0,58.32,50.220001,58.639999,25.59,7,1,1,0,0,9,3,1,385,471512.25,0,0,2391.7007 -8138,10026,18295,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,2,1,0,0,3,6.9958711,7.0913601,0,3,0,0,0,-9,0,-1115.3491,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,20,20,15,1,0,-9,0,5.1579943,5.1579943,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.9100676,3,34.209999,51.939999,-9,-9,3,1,1,0,0,11,2,1,816,153139,0,0,-573.09863 -8139,10027,18296,-9,18297,18298,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.2002,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,9,4,0,684.66669,308921.69,0,0,2981.4968 -8139,10027,18297,18298,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,0,4,7.1840162,7.2443242,0,2,0,-9,13,0,-8,-43.053387,0,0,1,43,1,2,1,3,3,2019,1,1,6,0,6,30,15,1,0,1,0,26.924032,26.924032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,52.830002,49.110001,6,2,3,0,0,9,4,0,684.66669,308921.69,0,0,2981.4968 -8139,10027,18298,18297,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,2,8.6848488,8.8932676,0,2,0,-9,12,0,8,100.78014,0,0,0,35,2,4,1,3,3,2019,1,2,4,0,45,40,15,1,0,1,0,14.954633,14.954633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,49.110001,57.759998,54.509998,5,1,1,0,0,9,4,0,684.66669,308921.69,0,0,2981.4968 -8140,10028,18299,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1086.4258,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.110001,14.6,-9,-9,4,1,1,0,1,4,1,0,451,430204.28,0,0,708.08447 -8141,10029,18300,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,0,4,7.9927449,7.7137208,0,3,0,0,0,-9,0,-918.75891,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,47,36,15,1,0,-9,0,7.0224099,7.0224099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.82,55.529999,-9,-9,6,1,1,0,0,12,4,1,464,564561.06,0,0,318.444 -8142,10030,18301,18302,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,4,7.1236691,7.1704936,0,1,0,-9,32,0,7,-15.225246,0,0,0,52,2,4,1,3,3,2019,1,1,13,1,20,20,15,1,0,1,0,8.2137175,8.2137175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,53.07,52.700001,6,1,1,0,0,13,4,1,343,979631.5,0,0,3553.9246 -8142,10030,18302,18301,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.6274672,8.5368452,0,1,0,-9,31,0,-7,108.14347,0,0,0,59,3,4,1,3,3,2019,1,2,7,0,51,53,15,1,0,1,0,12.836894,12.836894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.07,52.700001,55.790001,52.619999,6,1,1,0,0,13,4,1,343,979631.5,0,0,3553.9246 -8142,10031,18303,-9,18301,18302,3,1,1,29,2,0,0,0,1,-9,2,1,0,0,5,8.5531731,8.3052807,0,3,0,0,0,-9,0,-885.54675,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,52,51,15,1,0,-9,1,9.254117,9.254117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,4,1,1221,-228353.45,0,0,1717.8851 -8143,10032,18304,18305,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,7.889143,7.7927117,0,1,0,-9,26,0,-2,-132.57111,0,0,0,47,2,4,1,2,2,2019,1,2,22,11,39,42,15,1,1,1,0,9.4822044,9.4822044,0,0,0,0,0,0,0,0,0,0,0,.022925876,0,0,0,25.719999,44.970001,51.830002,57.200001,6,1,1,0,0,9,5,1,734.5,142973.56,0,0,2670.5769 -8143,10032,18305,18304,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.1126652,8.4952192,0,1,0,-9,26,0,2,-44.089653,0,0,0,45,2,3,1,2,2,2019,1,1,10,1,44,49,15,1,0,1,0,12.535632,12.535632,0,0,0,0,0,0,0,0,0,0,0,2.5157919,0,0,0,51.830002,57.200001,25.719999,44.970001,6,1,1,0,0,9,5,1,734.5,142973.56,0,0,2670.5769 -8143,10033,18306,-9,18304,18305,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,7.2970018,6.9177904,0,3,0,0,0,-9,0,-1095.7378,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,14,24,15,1,1,-9,1,10.34063,10.34063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.34,69.489998,-9,-9,2,1,1,0,0,9,3,1,1870,1425.3212,0,0,1061.2289 -8144,10034,18307,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.9416456,9.1670952,0,3,0,0,0,-9,0,-1109.5018,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,53,43,15,1,0,-9,0,17.451969,17.451969,0,0,0,0,0,0,0,0,0,0,0,3.313,0,0,0,36.080002,60.5,-9,-9,5,1,1,0,0,8,5,0,193,568363.63,0,0,3516.261 -8145,10035,18308,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,2,7.3607397,7.4433155,0,3,0,0,0,-9,0,-937.64545,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,25,24,15,1,1,-9,0,8.9688549,8.9688549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.060001,48.959999,-9,-9,2,3,4,0,1,9,3,0,147,-100485.21,0,0,1892.3634 -8146,10036,18309,-9,-9,-9,1,1,1,21,2,0,0,0,2,0,7,2,0,0,5,0,5.5797663,5.4718871,3,0,0,0,-9,0,-867.40173,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.566483,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,12,2,0,397,-53467.035,0,0,268.06372 -8147,10037,18310,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,4,9.5586596,9.6888227,7.0367165,3,0,0,0,-9,0,-1041.7241,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,47,50,15,1,0,-9,0,32.751183,32.751183,0,0,0,0,0,0,0,0,0,0,0,0,7.6209378,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,5,1,497,735230.5,0,0,4134.9404 -8148,10038,18311,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-858.27014,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,14.754451,3,54.790001,55.860001,-9,-9,6,1,1,0,1,13,1,1,831,95015.242,0,0,534.4696 -8149,10039,18312,18313,-9,-9,2,1,0,48,1,0,1,0,3,-9,2,1,0,0,4,7.8432007,8.0062542,0,2,0,-9,1,-9,-2,131.62048,-9,0,0,50,3,3,1,2,3,2019,1,1,17,6,25,0,15,1,1,1,0,19.751169,19.751169,0,0,0,0,0,0,0,0,1,1,0,.19615379,0,0,0,44.419998,59.09,42.419998,54.75,5,1,1,0,0,9,5,1,511.66666,1646287.1,0,0,3981.9082 -8149,10039,18313,18312,-9,-9,1,1,1,50,1,0,1,0,3,-9,1,1,0,0,3,8.7788782,8.8121033,0,2,0,-9,1,-9,2,-19.306845,-9,0,0,48,3,4,1,2,2,2019,1,2,12,0,38,0,15,1,0,1,0,24.497271,24.497271,0,0,0,0,0,0,0,0,1,1,0,2.7092061,0,0,0,42.419998,54.75,44.419998,59.09,4,1,1,0,0,9,5,1,511.66666,1646287.1,0,0,3981.9082 -8149,10039,18314,-9,18312,18313,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-863.88531,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,511.66666,1646287.1,0,0,3981.9082 -8150,10040,18315,18316,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,2,0,8.0648842,7.8162045,1,0,-9,9,0,4,54.41515,0,0,0,74,3,3,1,3,3,2019,3,2,16,5,0,0,15,4,1,1,0,0,0,1,4.9112277,7.1361361,0,0,0,2.040199,0,1,1,0,0,7.7747674,0,0,43.84,34.41,48.080002,54.790001,4,1,1,0,0,12,4,1,274,1988585.5,0,0,2924.5266 -8150,10040,18316,18315,-9,-9,2,1,0,74,1,0,0,0,3,-9,2,1,0,0,3,7.688252,8.177721,4.9836321,1,0,-9,9,0,-4,160.20303,0,0,0,78,1,2,3,3,3,2019,2,1,9,0,20,28,15,1,0,4,0,18.265984,18.265984,0,0,0,0,0,0,0,74.5,1,1,0,0,5.0290904,75.09745,1,48.080002,54.790001,43.84,34.41,6,1,1,0,0,12,4,1,274,1988585.5,0,0,2924.5266 -8151,10041,18317,18320,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,4,9.3705025,9.1500902,0,2,0,-9,20,0,0,48.915043,0,0,0,50,1,4,1,2,1,2019,1,2,7,0,40,43,15,1,0,1,0,32.515079,32.515079,0,0,0,0,0,0,0,0,1,1,0,2.0263691,0,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,9,5,1,659.5,142270,0,0,6404.647 -8151,10041,18318,-9,18320,18317,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1201.6334,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,5,1,659.5,142270,0,0,6404.647 -8151,10041,18319,-9,18320,18317,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.76,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,659.5,142270,0,0,6404.647 -8151,10041,18320,18317,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,4,9.1333704,9.0887098,0,2,0,-9,20,0,0,155.61195,0,0,0,50,1,4,1,2,2,2019,1,1,9,0,42,43,15,1,0,1,0,20.004885,20.004885,0,0,0,0,0,0,0,2,1,1,0,7.9790864,0,6.6439996,3,58.150002,52.91,57.16,56.150002,6,1,1,0,0,9,5,1,659.5,142270,0,0,6404.647 -8152,10042,18321,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,1,4,0,7.8147836,7.8664708,3,0,0,0,-9,0,-883.22717,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3963776,7.892653,0,0,47.849998,55.099998,-9,-9,7,1,1,0,0,13,4,1,1145,901295.81,0,0,1942.1364 -8153,10043,18322,18323,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,9.1559601,9.2482796,0,1,0,-9,28,0,-6,164.95944,0,0,0,58,2,3,3,2,2,2019,2,1,12,0,21,27,15,1,0,3,0,46.721008,46.721008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,52.43,57.66,45.080002,4,1,1,0,0,8,5,1,324.5,1259976.5,0,0,2393.7656 -8153,10043,18323,18322,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,28,0,6,32.277096,0,0,0,52,1,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.66,45.080002,48,52.43,4,1,1,0,0,8,5,1,324.5,1259976.5,0,0,2393.7656 -8154,10044,18324,-9,18327,18328,7,1,0,7,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1141.8606,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10044,18325,-9,18327,18328,4,1,0,13,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1018.8622,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10044,18326,-9,18327,18328,5,1,0,12,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-966.86127,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10044,18327,18328,-9,-9,2,1,0,37,1,0,6,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,16,-9,-2,-64.104584,-9,0,1,39,3,2,1,2,2,2019,3,1,29,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.419998,36.490002,36.310001,41.599998,4,2,3,0,0,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10044,18328,18327,-9,-9,1,1,1,39,1,0,6,0,3,-9,2,1,0,0,2,7.3582907,7.2864695,0,2,0,-9,16,-9,2,35.562386,-9,0,0,37,3,3,3,3,3,2019,2,2,25,12,24,0,15,1,1,3,0,7.0652523,7.0652523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.310001,41.599998,43.419998,36.490002,3,2,3,0,1,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10044,18329,-9,18327,18328,6,1,1,10,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1019.743,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10044,18330,-9,18327,18328,8,1,0,8,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-850.5119,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,0,1117,64705.531,0,0,1509.4794 -8154,10045,18331,-9,18327,18328,3,1,0,18,2,0,6,1,2,-9,7,2,0,0,5,0,0,0,3,0,-9,0,-9,0,-1093.9668,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.27,53,-9,-9,3,2,3,0,0,2,2,0,217,-90779.023,0,0,0 -8155,10046,18332,-9,18333,18334,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.72827,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,1168,79049.891,0,0,5004.9795 -8155,10046,18333,18334,-9,-9,1,1,0,35,1,1,2,0,1,-9,5,1,0,0,4,0,8.1808643,8.0448332,2,0,-9,10,0,1,86.06044,0,0,1,34,2,3,1,2,1,2019,1,2,31,11,0,39,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7068439,0,0,0,30.57,56.23,20.17,66.489998,6,1,1,0,0,10,5,1,1168,79049.891,0,0,5004.9795 -8155,10046,18334,18333,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,0,3,8.8921547,8.9554338,0,2,0,-9,10,0,-1,-42.299873,0,0,0,35,1,4,1,3,2,2019,1,1,20,8,65,50,15,1,1,1,0,14.653385,14.653385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.17,66.489998,30.57,56.23,6,1,1,0,0,10,5,1,1168,79049.891,0,0,5004.9795 -8155,10046,18335,-9,18333,18334,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1001.5615,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,10,5,1,1168,79049.891,0,0,5004.9795 -8156,10047,18336,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,3,0,5.6008954,6.0016184,3,0,0,0,-9,0,-1042.1107,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6434393,0,0,13.92,60.060001,-9,-9,4,1,1,0,0,4,2,1,1510,479956.72,0,0,953.30853 -8157,10048,18337,18339,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,3,7.7192054,7.4601855,0,2,0,-9,18,0,-3,-45.108284,0,0,0,50,1,5,1,2,2,2019,1,2,24,12,0,2,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2747011,0,0,0,37.540001,46.27,54.099998,59.110001,3,1,1,0,0,2,5,1,1109.5,1711877.1,0,0,5142.1094 -8157,10048,18338,-9,18337,18339,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.0527,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,1109.5,1711877.1,0,0,5142.1094 -8157,10048,18339,18337,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,5,9.201375,9.3062181,0,2,0,-9,18,0,3,13.234358,0,0,0,47,2,3,1,2,2,2019,1,1,8,0,40,40,15,1,0,1,0,28.404182,28.404182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,37.540001,46.27,6,1,1,0,0,2,5,1,1109.5,1711877.1,0,0,5142.1094 -8157,10048,18340,-9,18337,18339,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-922.78809,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,2,5,1,1109.5,1711877.1,0,0,5142.1094 -8158,10049,18341,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,2,0,4.6550522,4.8625946,3,0,0,0,-9,0,-984.71234,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4687059,4.8162923,0,0,63.599998,23.73,-9,-9,6,1,1,0,0,2,1,0,254,-98909.266,0,0,1913.251 -8159,10050,18342,18344,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,2,6.2452679,5.958077,0,2,0,-9,8,0,-4,-37.377048,0,0,0,51,1,2,1,3,3,2019,1,1,17,5,8,8,15,1,1,1,0,8.0653677,8.0653677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.280001,58.790001,41.240002,47.689999,4,2,3,0,1,6,2,1,859.33331,142570.75,0,0,2135.8943 -8159,10050,18343,-9,18342,18344,6,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-943.45874,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,6,2,1,859.33331,142570.75,0,0,2135.8943 -8159,10050,18344,18342,-9,-9,1,1,1,51,1,0,2,0,1,-9,1,1,0,0,2,7.3999763,7.3019552,0,2,0,-9,8,0,4,-64.209007,0,0,0,47,2,2,1,3,2,2019,1,2,18,7,40,30,15,1,1,1,0,5.1600342,5.1600342,0,0,0,0,0,0,0,0,1,1,0,6.7493677,0,0,0,41.240002,47.689999,31.280001,58.790001,3,2,3,0,1,6,2,1,859.33331,142570.75,0,0,2135.8943 -8159,10051,18345,-9,18342,18344,4,1,0,24,2,0,2,0,2,-9,2,1,0,0,3,8.2697906,8.563242,0,3,0,0,0,-9,0,-992.74457,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,0,40,38,15,1,0,-9,1,12.739131,12.739131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.279999,45.610001,-9,-9,6,2,3,0,0,6,4,1,412,68479.469,0,0,1111.1965 -8159,10052,18346,-9,18342,18344,5,1,0,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-896.03961,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.83944398,0,0,0,45.91,59.889999,-9,-9,4,2,3,0,0,6,4,1,574,158090.42,0,0,-1.6888822 -8160,10053,18347,18348,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.1685777,7.1499696,1,0,-9,36,0,-6,89.568008,0,0,0,69,1,2,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.378448,.50512898,3,34,61.209999,42.099998,37.580002,6,1,1,0,0,6,3,1,276,455744.97,0,0,2425.9316 -8160,10053,18348,18347,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.713367,7.3759174,1,0,-9,36,0,6,-78.941078,0,0,0,63,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7849765,7.850687,2.0645711,3,42.099998,37.580002,34,61.209999,6,1,1,0,0,6,3,1,276,455744.97,0,0,2425.9316 -8161,10054,18349,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-946.14178,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.459999,26.379999,-9,-9,1,1,1,0,0,4,1,1,121,0,0,0,621.15991 -8162,10055,18350,18351,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.7659812,8.1843243,0,1,0,1,1,-9,-14,43.707951,0,0,0,64,2,3,3,-9,2,2019,2,2,12,1,37,35,15,1,0,4,0,8.9257298,8.9257298,0,0,0,0,0,0,0,0,0,0,0,7.2847781,0,0,0,42.669998,47.950001,47.290001,52.709999,6,1,1,0,0,9,3,1,900,1315685,0,0,2916.5669 -8162,10055,18351,18350,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,7.1725554,7.0167351,1,0,-9,1,-9,14,-30.271751,-9,0,0,50,2,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8838482,7.1058941,0,0,47.290001,52.709999,42.669998,47.950001,7,1,1,0,0,9,3,1,900,1315685,0,0,2916.5669 -8163,10056,18352,18353,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.8811483,9.0907345,7.537365,2,0,-9,9,0,2,104.19843,0,0,0,43,3,5,1,-9,-9,2019,1,1,7,0,45,40,15,1,0,1,0,14.294757,14.294757,0,0,0,0,0,0,0,0,1,1,0,0,7.5826283,0,0,61.119999,51.57,33.389999,65.879997,6,1,1,0,0,10,4,1,285,468681.13,0,0,4508.0962 -8163,10056,18353,18352,-9,-9,1,1,0,43,1,0,2,0,3,-9,2,1,0,0,5,7.8812847,7.8104267,0,2,0,-9,9,0,-2,-34.127411,0,0,1,45,2,4,1,3,3,2019,1,2,16,6,30,38,15,1,1,1,0,8.7126055,8.7126055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.389999,65.879997,61.119999,51.57,6,1,1,0,0,10,4,1,285,468681.13,0,0,4508.0962 -8163,10056,18354,-9,18353,18352,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.2677,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.200001,64.190002,-9,-9,6,1,1,0,0,10,4,1,285,468681.13,0,0,4508.0962 -8163,10056,18355,-9,18353,18352,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,6.084404,6.2474003,0,2,0,0,0,-9,0,-867.27795,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,23,10,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.110001,66.449997,-9,-9,7,1,1,0,0,10,4,1,285,468681.13,0,0,4508.0962 -8164,10057,18356,-9,18358,18357,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-942.2666,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,6,2,1,924,62760.348,0,0,2707.2778 -8164,10057,18357,18358,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,0,4,7.0753736,7.1636128,5.1843414,2,0,-9,2,0,0,-39.687954,0,0,0,31,1,4,1,2,2,2019,1,2,17,6,16,30,15,1,1,1,0,7.8148198,7.8148198,0,0,0,0,0,0,0,0,1,1,0,5.3731084,0,0,0,51.830002,57.200001,57.73,54.529999,5,2,3,0,0,6,2,1,924,62760.348,0,0,2707.2778 -8164,10057,18358,18357,-9,-9,2,1,0,31,1,1,2,0,1,-9,2,1,0,0,4,7.2563615,7.1321082,0,2,0,-9,2,0,0,72.996857,0,1,1,31,2,4,1,2,2,2019,1,1,6,1,24,25,15,1,0,1,0,5.9534755,5.9534755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,51.830002,57.200001,7,2,3,0,0,6,2,1,924,62760.348,0,0,2707.2778 -8164,10057,18359,-9,18358,18357,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.9443,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,2,1,924,62760.348,0,0,2707.2778 -8165,10058,18360,18361,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,0,2,0,8.3113232,8.1706629,1,0,-9,7,0,1,-12.218328,0,0,0,73,1,4,1,2,2,2019,3,1,14,3,2,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.6080503,8.3345604,0,0,49.439999,33,55.189999,54.259998,4,1,1,0,0,2,4,1,374.5,1169576.4,0,0,4259.645 -8165,10058,18361,18360,-9,-9,1,1,0,73,1,0,0,0,1,-9,1,1,0,0,4,6.5016789,7.6975651,7.4387403,1,0,-9,49,0,-1,-27.267677,0,0,0,74,1,2,3,2,2,2019,2,2,8,0,10,10,15,1,0,4,0,7.4726701,7.4726701,0,0,0,0,0,0,0,5.48,1,1,0,6.2459908,7.5858521,5.3278275,1,55.189999,54.259998,49.439999,33,6,1,1,0,0,2,4,1,374.5,1169576.4,0,0,4259.645 -8166,10059,18362,-9,18364,18363,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1003.4841,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,4,1,737,394060.06,0,0,2291.0894 -8166,10059,18363,18364,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,8.3665514,7.8786759,0,2,0,-9,10,0,0,-19.354139,0,0,0,51,1,4,1,3,3,2019,1,1,29,12,30,30,15,1,1,1,0,12.283998,12.283998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.77,41.110001,49.349998,59.639999,5,1,1,0,0,12,4,1,737,394060.06,0,0,2291.0894 -8166,10059,18364,18363,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,4,8.2803907,8.6740608,0,2,0,-9,10,0,0,-156.78059,0,0,0,51,2,2,1,3,3,2019,1,2,12,0,30,30,15,1,0,1,0,17.142317,17.142317,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,25.77,41.110001,5,1,1,0,0,12,4,1,737,394060.06,0,0,2291.0894 -8167,10060,18365,-9,18366,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1059.5359,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,8,4,0,395.5,242595.03,0,0,1980.7021 -8167,10060,18366,-9,-9,-9,1,1,0,37,3,1,1,0,2,-9,2,1,0,0,2,8.5349903,8.2638655,0,4,0,0,0,-9,0,-891.32343,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,39,40,15,1,0,-9,0,13.687372,13.687372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.869999,45.950001,-9,-9,6,1,1,0,0,8,4,0,395.5,242595.03,0,0,1980.7021 -8168,10061,18367,18368,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,8.9100599,8.9155502,0,2,0,-9,6,0,8,77.207848,0,0,0,28,1,4,1,2,2,2019,1,2,9,0,43,42,15,1,0,1,0,17.67001,17.67001,0,0,0,0,0,0,0,0,1,1,0,1.4165597,0,0,0,53.439999,55.060001,51.490002,57.57,6,1,1,0,0,9,5,1,837,469480.38,0,0,4680.126 -8168,10061,18368,18367,-9,-9,2,1,0,28,1,1,1,0,1,-9,5,1,0,0,4,8.9877157,8.7654066,0,2,0,-9,6,0,-8,139.08287,0,1,1,36,2,4,1,-9,-9,2019,1,1,11,0,45,47,15,1,0,1,0,22.829458,22.829458,0,0,0,0,0,0,0,0,1,1,0,8.0036268,0,0,0,51.490002,57.57,53.439999,55.060001,6,1,1,0,0,9,5,1,837,469480.38,0,0,4680.126 -8168,10061,18369,-9,18368,18367,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1036.1433,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,837,469480.38,0,0,4680.126 -8169,10062,18370,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,1,1,0,0,3,7.2127867,7.5331511,0,3,0,0,0,-9,0,-997.96033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,48,15,1,0,-9,0,3.9486849,3.9486849,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,5,3,1,597,325601.84,0,0,-402.26517 -8170,10063,18371,18372,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.6611795,7.5871286,1,0,-9,49,0,5,-44.675251,0,0,0,66,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5793309,0,0,48.869999,58.549999,59.740002,45.34,6,1,1,0,0,5,3,1,289.5,755388.31,0,0,2491.668 -8170,10063,18372,18371,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,6.3992338,6.411695,1,0,-9,49,0,-5,-26.378504,0,0,0,71,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7220247,6.2351899,0,0,59.740002,45.34,48.869999,58.549999,7,1,1,0,0,5,3,1,289.5,755388.31,0,0,2491.668 -8171,10064,18373,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,0,5,0,7.963829,8.1050768,3,0,0,0,-9,0,-1024.6252,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.3427372,7.8780351,2.276638,3,60.02,56.419998,-9,-9,7,1,1,0,0,6,3,1,550,773538,0,0,1972.212 -8172,10065,18374,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-916.26178,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.18,18.620001,-9,-9,5,1,1,0,0,9,1,0,496,200771.39,0,0,1688.8243 -8173,10066,18375,-9,18376,-9,2,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,4.9430695,4.9891682,0,4,0,0,0,-9,0,-969.52356,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.150002,58.689999,-9,-9,5,1,1,0,0,6,3,1,389.5,40034.27,0,0,2143.0247 -8173,10066,18376,-9,-9,-9,1,1,0,60,3,0,1,0,2,-9,2,1,0,0,3,7.9661574,7.8118167,6.0021863,4,0,0,0,-9,0,-919.67218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,20,20,15,1,1,-9,0,12.710707,12.710707,0,0,0,0,0,0,0,0,1,1,0,5.9603977,0,0,0,34.419998,55.98,-9,-9,2,1,1,0,0,6,3,1,389.5,40034.27,0,0,2143.0247 -8174,10067,18377,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1074.399,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,.99515283,0,0,0,1,1,0,2.4592586,0,0,0,51.490002,31.73,-9,-9,5,1,1,0,0,7,1,0,501,80697.891,0,0,708.49744 -8175,10068,18378,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,2,0,4.8541951,5.0511489,3,0,0,0,-9,0,-983.21368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3412137,4.7987828,0,0,52.330002,31.639999,-9,-9,7,1,1,0,0,5,2,1,264,280609,0,0,525.69379 -8176,10069,18379,-9,18382,18380,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.13806,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,503,631284.44,0,0,4943.8374 -8176,10069,18380,18382,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,8.8984756,8.7674141,5.4156976,2,0,-9,9,0,0,24.446457,0,0,0,44,2,3,1,2,1,2019,1,2,10,3,43,48,15,1,0,1,0,15.720095,15.720095,0,0,0,0,0,0,0,0,1,1,0,6.3599906,0,0,0,45.810001,58.990002,44.639999,55.040001,3,1,1,0,0,9,5,1,503,631284.44,0,0,4943.8374 -8176,10069,18381,-9,18382,18380,4,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.2121,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,503,631284.44,0,0,4943.8374 -8176,10069,18382,18380,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,0,3,8.5783596,8.4793081,0,2,0,-9,9,0,0,-18.046789,0,0,1,44,1,4,1,-9,-9,2019,1,1,17,6,38,37,15,1,1,1,0,15.618937,15.618937,0,0,0,0,0,0,0,0,1,1,0,.42050812,0,0,0,44.639999,55.040001,45.810001,58.990002,5,1,1,0,0,9,5,1,503,631284.44,0,0,4943.8374 -8176,10069,18383,-9,18382,18380,5,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-950.4787,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,9,5,1,503,631284.44,0,0,4943.8374 -8177,10070,18384,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,6.3364148,6.4080486,3,0,0,0,-9,0,-1022.9418,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,5.1235733,0,0,0,0,1,1,0,2.2579293,6.7703967,0,0,41.5,37.66,-9,-9,5,1,1,0,0,7,2,1,550,524126,0,0,480.02228 -8178,10071,18385,18386,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,7.9355798,8.0522242,1,0,-9,10,0,1,-30.818554,0,0,0,67,2,2,3,2,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0335617,7.5474806,0,0,48.34,52.060001,43.439999,43.91,6,1,1,0,0,11,3,1,131,1175426.5,0,0,2914.9761 -8178,10071,18386,18385,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,4.7116933,5.2979498,1,0,-9,10,0,-1,75.785637,0,0,0,68,1,3,3,2,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1451993,0,0,43.439999,43.91,48.34,52.060001,3,1,1,0,0,11,3,1,131,1175426.5,0,0,2914.9761 -8179,10072,18387,-9,18390,18388,3,1,1,15,2,1,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-981.24451,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,8,2,0,704.5,57645.973,0,0,1465.9663 -8179,10072,18388,18390,-9,-9,1,1,1,45,1,1,2,0,2,-9,2,1,0,0,3,7.4788733,7.0598865,0,2,0,-9,19,0,5,59.76022,0,0,0,40,2,4,3,3,3,2019,2,2,11,0,24,24,15,1,0,3,0,5.9168835,5.9168835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.310001,58.639999,50,55,6,2,3,0,0,8,2,0,704.5,57645.973,0,0,1465.9663 -8179,10072,18389,-9,18390,18388,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1018.6293,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,704.5,57645.973,0,0,1465.9663 -8179,10072,18390,18388,-9,-9,2,1,0,40,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-5,-89.597023,0,0,1,45,2,3,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,43.310001,58.639999,5,2,3,0,1,8,2,0,704.5,57645.973,0,0,1465.9663 -8180,10073,18391,18392,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.0638227,7.7271271,1,0,-9,7,0,3,-110.47395,0,0,0,69,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2426229,7.5800238,0,0,54.290001,36.98,54.200001,57.490002,5,1,1,0,0,5,4,1,288,1062531.1,0,0,4760.4092 -8180,10073,18392,18391,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.9853148,8.2962475,1,0,-9,7,0,-3,-176.30479,0,0,0,72,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4070568,7.5449729,0,0,54.200001,57.490002,54.290001,36.98,7,1,1,0,0,5,4,1,288,1062531.1,0,0,4760.4092 -8181,10074,18393,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,3,0,6.4379263,6.3020525,3,0,0,0,-9,0,-1028.1365,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6240201,0,0,54,44,-9,-9,6,1,1,0,0,11,2,0,1261,157234.59,0,0,1460.9316 -8181,10075,18394,-9,18393,-9,2,1,1,63,2,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1076.7106,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,14.863956,3,41.849998,44.380001,-9,-9,4,1,1,0,0,11,1,0,203,-128570.68,0,0,180.44797 -8182,10076,18395,-9,18396,18397,3,1,0,16,2,0,2,0,3,-9,3,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.6039,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,1,1,1,0,5,4,1,561,464923.75,0,0,2869.0591 -8182,10076,18396,18397,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.472167,7.3778534,0,2,0,-9,22,0,-1,-104.82327,0,0,1,43,2,3,1,2,3,2019,1,2,16,4,25,25,15,1,1,1,0,8.5411024,8.5411024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.549999,42.810001,42.470001,44.110001,6,1,1,0,0,5,4,1,561,464923.75,0,0,2869.0591 -8182,10076,18397,18396,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.7017698,8.9004822,0,2,0,-9,22,0,1,71.60305,0,0,0,42,2,3,1,2,2,2019,1,1,13,1,42,40,15,1,0,1,0,19.944384,19.944384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.470001,44.110001,35.549999,42.810001,4,1,1,0,0,5,4,1,561,464923.75,0,0,2869.0591 -8182,10076,18398,-9,18396,18397,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.632,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,561,464923.75,0,0,2869.0591 -8183,10077,18399,-9,18401,18402,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-896.40924,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,381.25,201992.06,0,0,2643.8494 -8183,10077,18400,-9,18401,18402,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-949.57458,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,381.25,201992.06,0,0,2643.8494 -8183,10077,18401,18402,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,0,4,8.5467615,7.8018351,0,2,0,-9,1,-9,-1,30.611588,-9,0,1,37,2,5,1,-9,-9,2019,1,1,11,0,30,0,15,1,0,1,0,15.515358,15.515358,0,0,0,0,0,0,0,0,1,1,0,.81117505,0,0,0,54.200001,57.490002,52.130001,57.220001,6,1,1,0,0,9,4,1,381.25,201992.06,0,0,2643.8494 -8183,10077,18402,18401,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,5,7.9365911,7.7187319,0,2,0,-9,1,-9,1,38.102612,-9,0,0,36,1,4,1,1,1,2019,1,2,6,0,42,0,15,1,0,1,0,9.0775785,9.0775785,0,0,0,0,0,0,0,0,1,1,0,.52224922,0,0,0,52.130001,57.220001,54.200001,57.490002,6,1,1,0,0,9,4,1,381.25,201992.06,0,0,2643.8494 -8184,10078,18403,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,0,2,0,6.1065531,5.9560137,3,0,0,0,-9,0,-895.72552,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3845041,6.2373466,0,0,60.189999,32.119999,-9,-9,6,1,1,0,0,2,2,0,470,132247.16,0,0,842.75977 -8185,10079,18404,-9,18407,18406,4,1,0,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.18878,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,56.509998,-9,-9,5,1,1,0,0,5,4,0,465.5,206307.84,0,0,3192.1919 -8185,10079,18405,-9,18407,18406,5,1,0,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1051.0642,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,5,4,0,465.5,206307.84,0,0,3192.1919 -8185,10079,18406,18407,-9,-9,1,1,1,60,1,0,2,0,2,-9,2,1,0,0,2,8.3302765,8.0160294,0,2,0,-9,20,0,14,13.66594,0,0,0,46,3,3,1,3,3,2019,1,2,24,12,48,48,15,1,1,1,0,9.1760435,9.1760435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.580002,32.509998,34.400002,59.610001,3,1,1,0,0,5,4,0,465.5,206307.84,0,0,3192.1919 -8185,10079,18407,18406,-9,-9,2,1,0,46,1,0,2,0,3,-9,2,1,0,0,3,8.2418432,8.2382298,0,2,0,-9,20,0,-14,27.123667,0,0,0,60,2,2,1,2,3,2019,1,1,18,6,53,53,15,1,1,1,0,7.3475733,7.3475733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.400002,59.610001,38.580002,32.509998,3,1,1,0,0,5,4,0,465.5,206307.84,0,0,3192.1919 -8186,10080,18408,-9,18414,18410,7,1,1,4,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.5081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18409,-9,18414,18410,3,1,0,12,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.6971,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18410,18414,-9,-9,2,1,1,36,1,1,6,0,2,-9,2,1,0,0,4,7.5609608,7.7444758,0,2,0,-9,8,0,6,-.62310082,0,0,0,30,2,5,3,3,3,2019,2,1,7,0,38,0,15,1,0,3,0,7.0025792,7.0025792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,60.02,56.419998,6,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18411,-9,18414,18410,8,1,0,1,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.59564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18412,-9,18414,18410,6,1,0,5,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.63776,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18413,-9,18414,18410,5,1,0,9,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.1233,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18414,18410,-9,-9,1,1,0,30,1,1,6,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,-6,12.074777,0,0,1,36,2,4,1,3,3,2019,3,2,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.0149081,3,60.02,56.419998,60.119999,54.799999,7,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8186,10080,18415,-9,18414,18410,4,1,0,11,2,1,6,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1120.2925,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,10,2,0,500.75,-10061.984,0,0,3096.3804 -8187,10081,18416,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,4,0,7.2619376,7.1380329,3,0,0,0,-9,0,-1124.4209,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.9935403,7.4970002,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,12,3,1,1009,483011.56,0,0,830.97559 -8188,10082,18417,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,0,2,8.9097252,8.526722,0,3,0,0,0,-9,0,-932.88904,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,35,35,15,1,1,-9,0,18.380068,18.380068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.080002,49.91,-9,-9,5,1,1,0,0,12,5,1,138,150739.64,0,0,2622.9336 -8189,10083,18418,-9,18419,18420,4,1,1,17,2,0,1,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.7905,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,60,-9,-9,5,1,1,0,0,13,3,0,839.66669,-53487.664,0,0,2206.2627 -8189,10083,18419,18420,-9,-9,2,1,0,45,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,26,0,-3,62.00985,0,0,0,48,2,4,1,3,3,2019,3,1,21,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.9,21.84,49.459999,56.91,7,1,1,0,0,13,3,0,839.66669,-53487.664,0,0,2206.2627 -8189,10083,18420,18419,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,7.9153123,7.9046168,0,2,0,-9,26,0,3,101.95274,0,0,0,45,3,1,3,2,2,2019,2,2,8,1,41,40,15,1,0,3,0,7.7828774,7.7828774,0,0,0,0,0,0,0,27.5,1,1,0,0,0,16.591024,2,49.459999,56.91,20.9,21.84,7,1,1,0,0,13,3,0,839.66669,-53487.664,0,0,2206.2627 -8189,10084,18421,-9,18419,18420,3,1,0,24,2,0,1,0,1,-9,2,1,0,0,4,7.8896365,7.7720942,0,3,0,0,0,-9,0,-969.43243,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,35,40,15,1,0,-9,1,9.9932098,9.9932098,0,0,0,0,0,0,0,0,1,1,0,1.0188092,0,0,3,46,58,-9,-9,5,1,1,0,0,13,4,0,1379,110777.8,0,0,1196.8304 -8190,10085,18422,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,8.3123426,8.3356352,4.065289,3,0,0,0,-9,0,-998.38544,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,38,38,15,1,1,-9,0,18.060307,18.060307,0,0,0,0,0,0,0,0,0,0,0,4.4934535,4.4982114,0,0,40.400002,46.189999,-9,-9,3,1,1,0,1,12,5,1,457,1015369.8,0,0,816.73724 -8190,10086,18423,-9,18422,-9,2,1,0,20,2,0,0,0,2,0,7,2,0,0,2,7.1253161,7.6553254,5.9733968,3,0,0,0,-9,0,-1074.7001,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7781782,0,0,0,36.599998,54.119999,-9,-9,6,1,1,0,0,12,3,1,514,32405.736,0,0,179.8772 -8191,10087,18424,18425,-9,-9,2,1,1,44,1,0,0,0,3,-9,2,1,0,0,3,7.7622881,7.4696388,0,1,0,-9,7,0,-13,-21.17013,0,0,0,57,3,1,1,3,3,2019,1,1,5,1,35,15,15,1,0,1,0,5.0031896,5.0031896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.889999,44.07,37.599998,14.31,2,3,4,0,0,6,3,0,648.5,191300.56,0,0,2419.9509 -8191,10087,18425,18424,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,1,1,6.889564,7.0071359,0,1,0,-9,8,0,13,-75.083046,0,0,0,44,3,3,1,3,3,2019,1,2,20,6,28,25,15,1,1,1,0,5.4136505,5.4136505,0,0,0,0,0,0,0,2,1,1,0,0,0,5.9854231,3,37.599998,14.31,41.889999,44.07,1,1,1,0,0,6,3,0,648.5,191300.56,0,0,2419.9509 -8192,10088,18426,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-957.24579,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,25,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0297757,0,0,0,43.540001,52.970001,-9,-9,3,1,1,0,0,9,1,1,385,152570.72,0,0,-534.43176 -8193,10089,18427,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,4,8.8519859,8.6811581,0,3,0,0,0,-9,0,-1011.6809,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,37,37,15,1,1,-9,0,23.455256,23.455256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.990002,48.84,-9,-9,5,1,1,0,0,13,5,1,229,287409.72,0,0,2382.1509 -8194,10090,18428,-9,-9,-9,1,1,1,80,2,0,0,0,2,-9,4,3,0,0,3,0,8.3856068,8.4288177,3,0,0,0,-9,0,-1087.7306,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.7918873,8.7346201,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,6,5,1,548,320854.69,0,0,6767.6772 -8195,10091,18429,-9,18431,18430,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.5457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,1,5,0,806,236326,0,0,3413.5771 -8195,10091,18430,18431,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,8.6692085,8.8551655,0,2,0,-9,5,0,2,-9.3518848,0,0,0,34,2,3,1,-9,-9,2019,1,1,12,1,42,40,15,1,0,1,0,16.518517,16.518517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.529999,56.369999,44,52,5,1,1,0,0,1,5,0,806,236326,0,0,3413.5771 -8195,10091,18431,18430,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,0,3,8.1433029,7.9461417,0,2,0,-9,5,0,-2,37.975563,0,0,1,36,2,4,1,-9,-9,2019,1,2,26,9,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52,44.529999,56.369999,4,1,1,0,1,1,5,0,806,236326,0,0,3413.5771 -8196,10092,18432,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,0,2,6.9439483,6.7712588,0,3,0,0,0,-9,0,-962.80005,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,15,0,15,1,0,-9,0,8.1774502,8.1774502,1,0,0,1.7107404,0,0,0,0,1,0,1,0,0,0,0,57.380001,25.76,-9,-9,6,1,1,0,0,5,2,1,1291,333197.91,0,0,1303.7581 -8196,10093,18433,-9,18432,-9,2,1,1,43,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1124.1735,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.41,38.25,-9,-9,2,1,1,1,1,5,1,1,710,254940.86,0,0,1233.2437 -8197,10094,18434,-9,-9,-9,1,1,0,21,2,0,0,0,2,0,7,2,0,0,3,6.4733238,7.4472594,6.9031491,3,0,0,0,-9,0,-885.60822,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7256284,0,0,0,45.720001,49.560001,-9,-9,4,1,1,0,0,10,3,0,516,23546.672,0,0,266.98166 -8198,10095,18435,18436,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,9.0444365,8.6906767,0,1,0,-9,27,0,1,31.150928,0,0,0,46,2,4,1,-9,2,2019,1,2,14,4,58,60,15,1,1,1,0,15.185916,15.185916,0,0,0,0,0,0,0,0,1,1,0,3.8641765,0,0,0,48.57,53.150002,48.880001,50.52,6,1,1,0,0,10,5,1,246,852387,0,0,3948.7495 -8198,10095,18436,18435,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.8096862,7.691051,0,1,0,-9,27,0,-1,-119.62691,0,0,0,47,2,4,1,2,2,2019,1,1,11,0,35,24,15,1,0,1,0,6.6002822,6.6002822,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.880001,50.52,48.57,53.150002,6,1,1,0,0,10,5,1,246,852387,0,0,3948.7495 -8198,10096,18437,-9,18436,18435,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.0767441,8.4017191,0,3,0,0,0,-9,0,-991.84424,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,54,54,15,1,0,-9,1,7.0300369,7.0300369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.049999,-9,-9,5,1,1,0,0,10,4,1,2256,-98834.5,0,0,2863.5308 -8198,10097,18438,-9,18436,18435,4,1,0,18,2,0,0,0,2,1,2,1,0,0,4,7.3991723,6.8888988,0,3,0,0,0,-9,0,-973.00775,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,34,0,15,1,0,-9,1,6.127377,6.127377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,10,3,1,456,69348.188,0,0,1033.4867 -8199,10098,18439,18440,-9,-9,2,1,0,25,1,0,1,0,2,-9,2,1,0,1,3,5.9839826,5.8980637,0,2,0,-9,7,0,-1,11.006664,0,1,1,26,2,3,3,-9,-9,2019,2,1,15,2,6,37,15,1,0,3,0,7.1542754,7.1542754,0,0,0,0,0,0,0,2,1,1,0,.47869477,0,9.3598442,3,46.790001,38.279999,35.279999,54.029999,3,1,1,0,1,5,2,0,305.66666,-140061.89,0,0,1686.9384 -8199,10098,18440,18439,-9,-9,1,1,1,26,1,0,1,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,7,0,1,44.146828,0,1,0,25,2,3,1,1,1,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.77521,3,35.279999,54.029999,46.790001,38.279999,4,1,1,0,1,5,2,0,305.66666,-140061.89,0,0,1686.9384 -8199,10098,18441,-9,18439,18440,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.7118,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,2,0,305.66666,-140061.89,0,0,1686.9384 -8200,10099,18442,18444,-9,-9,3,1,0,29,1,0,1,0,3,-9,2,1,0,0,3,8.015976,8.1090498,0,2,0,-9,3,0,-10,51.319233,0,1,1,39,2,2,1,-9,-9,2019,1,1,9,2,37,0,15,1,0,1,0,9.7188978,9.7188978,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,53,43,41,5,2,3,0,0,2,3,0,814.33331,-90546.711,0,0,1786.5048 -8200,10099,18443,-9,18442,18444,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1028.5613,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,4,2,0,0,2,3,0,814.33331,-90546.711,0,0,1786.5048 -8200,10099,18444,18442,-9,-9,1,1,1,39,1,0,1,0,2,-9,1,1,0,0,2,5.9524145,6.0440922,0,2,0,-9,3,0,10,-101.87092,0,0,0,29,3,3,1,2,2,2019,1,3,13,3,25,40,15,1,0,1,0,2.1479928,2.1479928,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,41,43,53,4,2,3,0,1,2,3,0,814.33331,-90546.711,0,0,1786.5048 -8201,10100,18445,-9,18448,18446,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1086.3839,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,2,0,0,11,5,1,685.25,955558.25,0,0,4861.2715 -8201,10100,18446,18448,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,7.866807,8.1206512,0,2,0,-9,8,0,4,105.29163,0,0,0,42,1,5,1,3,3,2019,1,1,6,0,44,44,15,1,0,1,0,8.7924042,8.7924042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.279999,46.43,57.060001,57.759998,6,4,2,0,0,11,5,1,685.25,955558.25,0,0,4861.2715 -8201,10100,18447,-9,18448,18446,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1116.0859,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,11,5,1,685.25,955558.25,0,0,4861.2715 -8201,10100,18448,18446,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,9.2032261,9.134244,0,2,0,-9,8,0,-4,111.81997,0,0,1,46,2,4,1,3,3,2019,1,2,9,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.279999,46.43,6,1,1,0,0,11,5,1,685.25,955558.25,0,0,4861.2715 -8202,10101,18449,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,2,1,0,0,3,7.6928611,7.7232652,0,3,0,-9,0,1,0,-1068.4293,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,35,32,15,1,1,-9,0,6.6772361,6.6772361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.209999,51.34,-9,-9,4,1,1,0,0,7,3,1,1742,58822.871,0,0,1196.5763 -8203,10102,18450,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,8.038559,8.112792,0,3,0,-9,0,0,0,-1097.746,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,0,12.555179,12.555179,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.790001,55.860001,-9,-9,6,1,1,0,0,9,4,0,492,-96362.766,0,0,268.93237 -8204,10103,18451,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,7.0187454,6.9608507,3,0,0,0,-9,0,-1017.9698,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.6911922,41.680683,3,51,46,-9,-9,4,1,1,0,0,7,2,0,1569,391896.38,0,0,1251.9185 -8205,10104,18452,-9,18457,18458,3,1,1,14,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.864,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8205,10104,18453,-9,18457,18458,6,1,0,10,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.9043,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8205,10104,18454,-9,18457,18458,4,1,1,13,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.0481,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8205,10104,18455,-9,18457,18458,5,1,0,13,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.30304,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8205,10104,18456,-9,18457,18458,7,1,1,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.33063,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8205,10104,18457,18458,-9,-9,2,1,0,36,1,0,5,0,2,-9,1,1,0,0,4,7.429359,7.270277,0,2,0,-9,4,0,-12,-78.858574,0,0,1,48,1,4,1,-9,-9,2019,1,1,20,9,28,25,15,1,1,1,0,7.5501242,7.5501242,0,0,0,0,0,0,0,0,1,1,0,.96637458,0,0,0,44.419998,48.360001,41.060001,62.040001,6,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8205,10104,18458,18457,-9,-9,1,1,1,48,1,0,5,0,1,-9,2,1,0,0,4,8.7910137,8.7321577,0,2,0,-9,4,0,12,-148.51628,0,0,0,36,2,4,1,2,-9,2019,1,2,12,2,60,53,15,1,0,1,0,13.208922,13.208922,0,0,0,0,0,0,0,0,1,1,0,4.3387918,0,0,0,41.060001,62.040001,44.419998,48.360001,3,1,1,0,0,11,3,0,1337.1428,212223.22,0,0,3815.0845 -8206,10105,18459,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1038.2585,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.970001,53.990002,-9,-9,6,1,1,1,0,4,1,0,728,1372.6614,0,0,-277.26144 -8207,10106,18460,18461,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,4.7936854,4.952208,1,0,-9,40,0,0,37.957802,0,0,0,60,2,3,1,3,3,2019,3,2,7,0,0,8,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8349447,4.8651285,0,0,57.16,56.150002,30.85,54.889999,6,1,1,0,0,10,3,1,701,541092.56,0,0,863.88104 -8207,10106,18461,18460,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.7390995,7.5022302,0,1,0,-9,40,0,0,26.270308,0,0,0,60,2,4,3,3,2,2019,2,1,10,1,26,26,15,1,0,4,0,9.3423061,9.3423061,0,0,0,0,0,0,0,0,0,0,0,1.5706415,0,0,0,30.85,54.889999,57.16,56.150002,6,1,1,0,0,10,3,1,701,541092.56,0,0,863.88104 -8208,10107,18462,18464,-9,-9,1,1,1,40,1,1,1,0,1,-9,2,1,0,0,3,8.8127823,8.7725067,0,2,0,-9,3,0,8,172.7375,0,0,0,32,1,4,1,1,1,2019,1,2,11,0,37,50,15,1,0,1,0,23.898933,23.898933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,47,57,5,3,4,0,0,9,5,1,618.33331,426917.22,0,0,4632.0137 -8208,10107,18463,-9,18464,18462,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1071.7999,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,9,5,1,618.33331,426917.22,0,0,4632.0137 -8208,10107,18464,18462,-9,-9,2,1,0,32,1,1,1,0,1,-9,5,1,0,0,4,8.8487778,8.2754297,0,2,0,-9,3,0,-8,23.655352,0,0,1,40,1,3,1,-9,-9,2019,1,1,11,2,35,57,15,1,0,1,0,20.57889,20.57889,0,0,0,0,0,0,0,0,1,1,0,2.7938015,0,0,0,47,57,46.080002,57.200001,5,2,3,0,0,9,5,1,618.33331,426917.22,0,0,4632.0137 -8209,10108,18465,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,4,9.0795288,9.4845772,8.2444906,3,0,-9,0,-9,0,-1078.1279,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,0,15,1,0,-9,0,31.135468,31.135468,0,0,0,0,0,0,0,0,0,0,0,0,8.5700016,0,0,52.369999,51.400002,-9,-9,6,1,1,0,0,10,5,1,368,268985.41,0,0,5330.6196 -8209,10109,18466,-9,-9,18465,2,1,1,22,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1132.641,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,32,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.280001,69.260002,-9,-9,2,1,1,0,0,10,1,1,129,-26865.355,0,0,0 -8210,10110,18467,18468,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,0,4,8.5984125,8.8019476,0,2,0,-9,17,0,-2,5.2137966,-9,0,0,42,2,4,1,2,2,2019,1,2,18,7,41,0,15,1,1,1,0,17.075413,17.075413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.310001,37.130001,57.459999,3,1,1,0,0,7,4,1,708.75,557991.88,0,0,3520.0022 -8210,10110,18468,18467,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.8224244,7.8119559,0,2,0,-9,17,0,2,47.884792,0,0,1,40,2,4,1,3,3,2019,1,1,19,7,38,39,15,1,1,1,0,6.5793138,6.5793138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.130001,57.459999,40.23,61.310001,4,1,1,0,0,7,4,1,708.75,557991.88,0,0,3520.0022 -8210,10110,18469,-9,18468,18467,3,1,0,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.12976,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,5,1,1,0,0,7,4,1,708.75,557991.88,0,0,3520.0022 -8210,10110,18470,-9,18468,18467,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1021.6246,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,7,4,1,708.75,557991.88,0,0,3520.0022 -8211,10111,18471,-9,-9,-9,1,1,0,43,2,0,2,0,2,-9,2,1,0,0,4,6.8674607,6.9873867,5.614327,4,0,0,0,-9,0,-968.07751,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,20,23,15,1,0,-9,0,5.0803714,5.0803714,0,0,0,0,0,0,0,7,1,1,0,5.7068214,0,18.465805,3,52.650002,54.32,-9,-9,4,1,1,0,0,8,2,0,1476.5,-33581.664,0,0,1573.2004 -8211,10111,18472,-9,18471,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.1052,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,8,2,0,1476.5,-33581.664,0,0,1573.2004 -8212,10112,18473,18474,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.3398714,6.375217,1,0,-9,46,0,-2,.11789785,0,0,0,68,3,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.198729,0,0,54.790001,55.860001,59.139999,52.5,6,1,1,0,0,9,2,0,221,886204,0,0,898.30499 -8212,10112,18474,18473,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,4.9084439,5.168088,1,0,-9,8,0,2,13.517043,0,0,0,66,2,4,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8522854,4.8114181,0,0,59.139999,52.5,54.790001,55.860001,7,1,1,0,0,9,2,0,221,886204,0,0,898.30499 -8213,10113,18475,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,0,2,8.696805,8.6618567,0,3,0,0,0,-9,0,-1091.8923,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,47,44,15,1,0,-9,0,14.269157,14.269157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.990002,54.490002,-9,-9,2,1,1,0,1,8,4,0,814,-168864.56,0,0,2495.3433 -8214,10114,18476,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-842.19366,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,1.2463609,0,0,3,50.169998,42.09,-9,-9,4,1,1,0,0,1,1,1,531,140439.73,0,0,1514.1406 -8215,10115,18477,18478,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,8.6474199,8.4541597,0,1,0,-9,7,0,-2,68.349037,0,0,1,36,2,4,1,2,2,2019,1,2,14,2,60,80,15,1,0,1,0,11.590602,11.590602,0,0,0,0,0,0,0,0,0,0,0,1.1580378,0,0,0,38.470001,57.720001,43.029999,51.959999,5,4,2,0,0,9,5,1,725.5,226932.34,0,0,3734.9307 -8215,10115,18478,18477,-9,-9,2,1,1,36,1,0,0,0,2,-9,1,1,0,0,4,8.5051594,8.1281357,0,1,0,-9,7,0,2,129.93665,-9,0,0,34,1,4,1,-9,-9,2019,1,1,12,0,60,0,15,1,0,1,0,11.139503,11.139503,0,0,0,0,0,0,0,0,0,0,0,1.2368953,0,0,0,43.029999,51.959999,38.470001,57.720001,6,1,1,0,0,9,5,1,725.5,226932.34,0,0,3734.9307 -8216,10116,18479,18480,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,7.3359618,7.2060275,0,1,0,-9,9,0,1,31.335905,0,0,0,59,2,4,1,-9,-9,2019,1,1,6,0,16,20,15,1,0,1,0,9.1977339,9.1977339,0,0,0,0,0,0,0,0,0,0,0,1.3638616,0,0,0,58.73,40.59,54.200001,57.490002,7,1,1,0,0,10,3,1,583.5,-152165.05,0,0,1594.8103 -8216,10116,18480,18479,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.7403297,7.8671713,5.8550715,1,0,-9,9,0,-1,-62.585365,0,0,0,60,2,3,1,2,2,2019,1,2,8,0,27,0,15,1,0,1,0,10.651958,10.651958,0,0,0,0,0,0,0,0,0,0,0,6.0803037,6.0112982,0,0,54.200001,57.490002,58.73,40.59,6,1,1,0,0,10,3,1,583.5,-152165.05,0,0,1594.8103 -8217,10117,18481,18482,-9,-9,1,1,0,21,1,0,0,0,2,-9,1,1,0,0,3,6.1943183,6.2393746,0,1,0,-9,2,0,-5,106.89435,0,1,1,26,2,3,1,2,-9,2019,1,2,11,0,8,19,15,1,0,1,0,6.5696917,6.5696917,0,0,0,0,0,0,0,2,0,0,0,0,0,5.9750714,3,48.990002,49.189999,32.419998,58.049999,5,1,1,0,0,4,4,0,209,124512.48,0,0,1949.9222 -8217,10117,18482,18481,-9,-9,2,1,1,26,1,0,0,0,2,-9,1,1,0,0,3,8.3587532,8.3640013,0,1,0,-9,2,0,5,-156.42622,0,1,0,21,2,3,1,-9,-9,2019,1,1,22,11,28,16,15,1,1,1,0,18.979462,18.979462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.419998,58.049999,48.990002,49.189999,4,4,2,0,0,4,4,0,209,124512.48,0,0,1949.9222 -8218,10118,18483,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,8.2069397,8.2105188,0,3,0,0,0,-9,0,-974.49493,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,44,40,15,1,0,-9,0,8.6177015,8.6177015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.080002,59.330002,-9,-9,5,1,1,0,0,9,4,0,365,-103467.52,0,0,1552.2548 -8219,10119,18484,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,7.8963585,7.7530689,3,0,0,0,-9,0,-1077.869,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.6942949,0,0,52,45,-9,-9,6,1,1,0,0,9,3,1,689,1165362.5,0,0,2234.2349 -8220,10120,18485,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,0,3,7.9959712,8.2123814,0,1,0,-9,12,0,-13,2.1283028,0,0,0,-9,-9,-9,-9,-9,3,2019,2,2,11,1,45,40,15,1,0,-9,0,8.738739,8.738739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,42.16,19.200001,4,1,1,0,1,1,3,0,704,97413.875,0,0,896.0354 -8220,10121,18486,-9,-9,-9,2,1,1,59,2,0,0,0,3,-9,3,3,0,0,1,0,0,0,1,0,-9,12,0,13,-85.561012,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,23,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.16,19.200001,52,54.509998,2,1,1,1,0,1,3,0,1017,-220935.02,0,0,0 -8221,10122,18487,18488,-9,-9,1,1,0,54,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-8,-39.20134,0,0,0,62,2,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,57.16,56.150002,7,1,1,0,0,10,3,1,1406.5,920411.94,0,0,2228.1787 -8221,10122,18488,18487,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.8696666,7.9675198,1,0,-9,9,0,8,-130.1077,0,0,0,54,2,3,3,2,2,2019,4,1,6,0,0,16,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5722289,8.2258663,0,0,57.16,56.150002,52.990002,51.279999,7,1,1,0,0,10,3,1,1406.5,920411.94,0,0,2228.1787 -8222,10123,18489,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,7.363843,7.2871671,0,3,0,0,0,-9,0,-932.77264,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,4,0,16,0,15,1,0,-9,1,13.02406,13.02406,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.106978,3,51.939999,55.880001,-9,-9,5,2,3,0,0,2,3,0,2084,35612.289,0,0,398.33118 -8223,10124,18490,-9,18493,18491,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.2314,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,798.25,1564579.5,0,0,6205.375 -8223,10124,18491,18493,-9,-9,2,1,1,54,1,0,3,0,2,-9,2,1,0,0,4,9.622613,9.2359638,0,2,0,-9,6,0,4,57.07671,0,0,0,50,2,5,3,3,3,2019,2,1,6,0,84,84,15,1,0,3,0,13.533336,13.533336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,62.389999,56.709999,7,1,1,0,0,12,4,1,798.25,1564579.5,0,0,6205.375 -8223,10124,18492,-9,18493,18491,5,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.53741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,798.25,1564579.5,0,0,6205.375 -8223,10124,18493,18491,-9,-9,1,1,0,50,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,6,0,-4,-39.96172,0,0,0,54,2,4,1,2,3,2019,3,2,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4779568,0,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,12,4,1,798.25,1564579.5,0,0,6205.375 -8224,10125,18494,18495,-9,-9,1,1,1,40,1,0,3,0,2,-9,1,1,0,0,3,7.9319658,7.9410181,0,2,0,-9,9,0,0,-74.767563,0,0,0,40,2,5,3,2,2,2019,2,2,8,0,30,40,15,1,0,3,0,8.6039276,8.6039276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.060001,57.759998,5,1,1,0,0,13,2,0,254.8,-4845.4795,0,0,2639.7412 -8224,10125,18495,18494,-9,-9,2,1,0,40,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,9,0,0,-13.628569,0,0,1,40,2,3,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.862045,3,57.060001,57.759998,57.330002,53.459999,5,1,1,0,0,13,2,0,254.8,-4845.4795,0,0,2639.7412 -8224,10125,18496,-9,18495,18494,5,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.23566,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,13,2,0,254.8,-4845.4795,0,0,2639.7412 -8224,10125,18497,-9,18495,18494,4,1,0,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.96063,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,23,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.339996,-9,-9,4,1,1,0,0,13,2,0,254.8,-4845.4795,0,0,2639.7412 -8224,10125,18498,-9,18495,18494,6,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1004.7562,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,13,2,0,254.8,-4845.4795,0,0,2639.7412 -8225,10126,18499,18500,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.5476732,7.8277473,1,0,-9,49,0,3,39.650246,0,0,0,67,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6807022,7.7975082,0,0,53.220001,50.02,43.759998,50.48,6,1,1,0,0,6,3,1,309.5,1238013.6,0,0,1666.2202 -8225,10126,18500,18499,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,-3,22.753078,0,0,0,70,2,3,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8937554,0,0,0,43.759998,50.48,53.220001,50.02,6,1,1,0,0,6,3,1,309.5,1238013.6,0,0,1666.2202 -8226,10127,18501,18502,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,2,0,4.6868019,4.7708807,1,0,-9,6,0,4,-127.28705,0,0,0,70,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,8.4457779,0,.63458592,0,0,0,1,1,0,0,4.7898159,0,0,45.43,26.709999,61.189999,36.580002,6,1,1,0,0,11,2,1,234.5,331982.13,0,0,1412.3821 -8226,10127,18502,18501,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.5238571,6.9137049,1,0,-9,6,0,-4,-6.3282771,0,0,0,74,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.7505202,76.600235,1,61.189999,36.580002,45.43,26.709999,6,1,1,0,0,11,2,1,234.5,331982.13,0,0,1412.3821 -8227,10128,18503,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1033.6123,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,38,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6756747,0,0,0,49.349998,59.639999,-9,-9,3,1,1,1,0,7,1,1,716,-279304.34,0,0,-98.033363 -8228,10129,18504,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,4,7.80164,7.2757878,0,3,0,0,0,-9,0,-889.39246,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,30,15,1,0,-9,0,8.3500633,8.3500633,0,0,0,0,0,0,0,0,0,0,0,.06432274,0,0,0,56.77,52.220001,-9,-9,7,1,1,0,0,9,3,0,816,18387.854,0,0,-90.064659 -8229,10130,18505,-9,-9,-9,1,1,0,53,3,1,2,0,1,-9,2,1,0,0,4,7.7359118,7.9788527,5.1915989,4,0,0,0,-9,0,-934.73792,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,70,35,15,1,0,-9,0,3.6034887,3.6034887,0,0,0,0,0,0,0,0,1,0,1,0,5.2032485,0,0,45.560001,60.259998,-9,-9,6,1,1,0,0,11,2,1,181,-74741.273,0,0,2290.6306 -8229,10131,18506,-9,18505,-9,2,1,0,24,2,1,2,0,2,-9,2,1,0,0,5,7.1107626,7.1938534,0,3,0,0,0,-9,0,-1104.238,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,16,5,16,16,15,1,1,-9,1,8.0539284,8.0539284,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.220001,63.139999,-9,-9,6,1,1,0,0,11,3,1,1308.5,-13812.335,0,0,1982.8748 -8229,10131,18507,-9,18506,-9,5,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-969.05658,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,1,1308.5,-13812.335,0,0,1982.8748 -8230,10132,18508,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,0,4,0,7.8826032,8.2113552,3,0,0,0,-9,0,-987.23773,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.0153046,0,0,58.310001,39.349998,-9,-9,7,1,1,0,0,13,4,1,356,499213.06,0,0,2705.4612 -8231,10133,18509,18510,-9,-9,1,1,0,61,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,8,-116.02615,0,0,0,53,2,2,1,3,3,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.15382,3,30.09,41.75,41.580002,52.860001,6,1,1,0,0,12,2,1,336.5,286200.19,0,0,1094.7567 -8231,10133,18510,18509,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,1,2,6.2820659,6.6198797,0,1,0,-9,6,0,-8,41.568478,0,0,0,61,3,1,3,3,2,2019,2,1,13,1,24,24,15,1,0,3,0,3.6972821,3.6972821,0,0,0,0,0,0,0,42,1,1,0,3.8410292,0,44.383144,3,41.580002,52.860001,30.09,41.75,3,1,1,0,1,12,2,1,336.5,286200.19,0,0,1094.7567 -8231,10134,18511,-9,18509,18510,3,1,1,37,2,0,0,0,1,-9,2,1,0,0,3,7.7605906,7.9081607,0,3,0,0,0,-9,0,-1054.113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,40,40,15,1,1,-9,1,7.3261313,7.3261313,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,32.419998,38.970001,-9,-9,3,1,1,0,0,12,3,1,1100,129634.5,0,0,1769.3446 -8231,10135,18512,-9,18509,18510,4,1,1,36,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-858.67163,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.439999,38.75,-9,-9,4,1,1,0,0,12,1,1,298,-45859.863,0,0,1669.8175 -8231,10136,18513,-9,18509,18510,5,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.8483667,7.6477609,0,3,0,0,0,-9,0,-1149.9003,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,37,50,15,1,0,-9,1,7.9169059,7.9169059,0,0,0,0,0,0,0,2,1,1,0,0,0,7.7171545,3,43.369999,57.279999,-9,-9,4,1,1,0,0,12,3,1,429,9404.0928,0,0,2033.1067 -8231,10137,18514,-9,18509,18510,6,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,6.6276102,6.4471097,0,3,0,0,0,-9,0,-1026.3944,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,14,16,15,1,0,-9,1,6.2503824,6.2503824,0,0,0,0,0,0,0,7,1,1,0,0,0,10.679891,3,50.419998,59.099998,-9,-9,1,1,1,0,0,12,2,1,2455,-153096.28,0,0,22.479515 -8232,10138,18515,-9,-9,-9,2,1,1,19,2,0,0,1,2,-9,7,2,0,0,4,6.7930932,7.5303879,6.9190736,3,0,-9,0,-9,0,-1072.5339,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,7,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0183282,0,0,0,37.57,55.630001,-9,-9,5,1,1,0,0,12,3,0,980,73809.703,0,0,1068.3827 -8232,10139,18516,-9,-9,-9,4,1,1,18,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1132.4081,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,6,0,0,12,1,0,846,19241.893,0,0,773.94208 -8233,10140,18517,-9,18519,18518,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.442,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1116,1563525.1,0,0,6943.6592 -8233,10140,18518,18519,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,0,4,9.1675701,9.5681238,8.1634455,2,0,-9,7,0,12,-90.784492,0,0,0,47,1,5,1,-9,-9,2019,1,1,10,0,42,0,15,1,0,1,0,25.737778,25.737778,0,0,0,0,0,0,0,0,0,0,0,.92916477,8.748559,0,0,55.189999,54.259998,57.060001,57.759998,6,1,1,0,0,9,5,1,1116,1563525.1,0,0,6943.6592 -8233,10140,18519,18518,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,5,7.8882666,8.1830969,0,2,0,-9,23,0,-12,-1.6444548,0,0,0,59,1,4,1,2,1,2019,1,2,12,0,18,19,15,1,0,1,0,17.764233,17.764233,0,0,0,0,0,0,0,0,0,0,0,7.3035817,0,0,0,57.060001,57.759998,55.189999,54.259998,6,1,1,0,0,9,5,1,1116,1563525.1,0,0,6943.6592 -8234,10141,18520,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,0,2,0,5.8255477,5.8720899,3,0,0,0,-9,0,-974.92188,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7454815,5.614368,0,0,63.650002,35.93,-9,-9,5,1,1,0,0,2,2,1,569,211902.91,0,0,1382.9597 -8235,10142,18521,-9,18523,18522,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.46967,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,2526,445926.72,0,0,3477.8726 -8235,10142,18522,18523,-9,-9,3,1,1,46,1,0,1,0,2,-9,2,1,0,0,2,8.5749779,8.5789413,0,2,0,-9,6,0,10,-77.440483,0,0,0,36,2,4,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,14.41131,14.41131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.200001,49.400002,49.459999,56.91,6,1,1,0,0,9,5,1,2526,445926.72,0,0,3477.8726 -8235,10142,18523,18522,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,0,4,8.2371359,8.6306677,6.4899187,2,0,-9,6,0,-10,-22.910601,0,0,1,46,2,2,1,2,2,2019,1,3,8,0,40,40,15,1,0,1,0,12.88219,12.88219,0,0,0,0,0,0,0,0,1,1,0,6.8987432,0,0,0,49.459999,56.91,55.200001,49.400002,7,1,1,0,0,9,5,1,2526,445926.72,0,0,3477.8726 -8236,10143,18524,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1057.201,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,16.200001,-9,-9,5,1,1,0,0,10,1,0,947,-43299.113,0,0,1352.1405 -8237,10144,18525,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,1,0,7.0015903,6.7360868,3,0,0,0,-9,0,-945.16516,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.9068031,0,0,37.57,35.669998,-9,-9,2,1,1,0,0,6,2,0,280,157417.69,0,0,559.95142 -8238,10145,18526,18527,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,0,5,8.1986103,8.3651876,0,1,0,-9,1,-9,1,-30.874685,-9,1,0,24,1,3,1,-9,-9,2019,1,1,16,4,45,0,15,1,1,1,0,11.126107,11.126107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.380001,59.240002,42.869999,42.509998,6,2,3,0,0,8,5,0,489.5,-30826.957,0,0,4160.8242 -8238,10145,18527,18526,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,3,8.8200903,8.5695705,0,1,0,1,1,-9,-1,53.59166,0,1,1,25,1,5,1,3,3,2019,1,2,17,5,37,40,15,1,1,1,0,20.674599,20.674599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.869999,42.509998,42.380001,59.240002,6,2,3,0,0,8,5,0,489.5,-30826.957,0,0,4160.8242 -8239,10146,18528,18529,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,7,0,6,0,0,0,0,60,3,2,3,3,3,2019,4,2,19,5,0,0,15,4,1,3,0,0,0,1,0,5.9328341,0,0,0,0,0,1,1,0,0,0,0,0,47.669998,28.4,58.669998,47.799999,4,1,1,0,1,13,1,1,929.5,-5594.7441,0,0,1571.845 -8239,10146,18529,18528,-9,-9,2,1,1,60,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,7,0,-6,0,0,0,0,66,3,1,3,3,2,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.523453,1,58.669998,47.799999,47.669998,28.4,6,1,1,1,0,13,1,1,929.5,-5594.7441,0,0,1571.845 -8240,10147,18530,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,0,3,8.6312284,8.4876995,0,3,0,0,0,-9,0,-1031.1559,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,43,0,15,1,0,-9,0,18.230516,18.230516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.940001,61.650002,-9,-9,6,1,1,0,0,5,5,1,266,267076.81,0,0,1949.951 -8241,10148,18531,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,3,7.4304419,7.8261814,0,3,0,0,0,-9,0,-1058.7084,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,40,37,15,1,0,-9,0,5.8570452,5.8570452,0,0,0,0,0,0,0,0,0,0,0,5.1492643,0,0,0,51.52,46.849998,-9,-9,6,2,3,0,0,11,3,1,184,35233.234,0,0,1140.5114 -8242,10149,18532,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,0,3,8.6290836,8.5341005,0,3,0,0,0,-9,0,-924.46423,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,33,37,15,1,0,-9,0,17.08264,17.08264,0,0,0,0,0,0,0,0,0,0,0,4.4344058,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,4,5,1,589,257038.22,0,0,2958.6951 -8242,10150,18533,-9,-9,-9,2,1,0,59,3,0,0,0,1,-9,2,1,0,0,3,8.5206165,8.4095201,0,3,0,-9,0,-9,0,-1096.0802,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,30,0,15,1,0,-9,0,18.606497,18.606497,0,0,0,0,0,0,0,0,0,0,0,1.0237818,0,0,0,52.599998,43.98,-9,-9,6,1,1,0,0,4,4,1,943,337212.38,0,0,1250.0901 -8243,10151,18534,18535,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.4443893,7.3911886,1,0,-9,59,0,-3,-8.5058212,0,0,0,81,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4433813,7.0702038,0,0,54.200001,57.490002,51.650002,34.209999,6,1,1,0,0,2,3,1,596,539883.38,0,0,3224.4634 -8243,10151,18535,18534,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,7.7429361,8.1263838,1,0,-9,59,0,3,-117.59877,0,0,0,78,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.6060658,0,0,51.650002,34.209999,54.200001,57.490002,4,1,1,0,0,2,3,1,596,539883.38,0,0,3224.4634 -8244,10152,18536,18537,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,8.1583443,8.0305138,0,1,0,-9,10,0,-14,-55.660698,0,0,0,61,3,3,1,-9,-9,2019,1,1,5,0,40,40,15,1,0,1,0,9.7542591,9.7542591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.209999,55.619999,61.380001,44.709999,6,2,3,0,0,8,5,1,324.5,597815,0,0,4097.4888 -8244,10152,18537,18536,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,8.4805403,8.4183025,0,1,0,-9,31,0,14,-20.180634,0,0,0,47,2,4,1,3,3,2019,1,2,10,0,47,48,15,1,0,1,0,12.038735,12.038735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.380001,44.709999,58.209999,55.619999,6,2,3,0,0,8,5,1,324.5,597815,0,0,4097.4888 -8244,10153,18538,-9,18536,18537,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,7.8954802,8.1220684,0,3,0,0,0,-9,0,-941.48645,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,2,0,41,37,15,1,0,-9,1,7.6173997,7.6173997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,6,2,3,0,0,8,4,1,2289,64142.832,0,0,2177.0383 -8244,10154,18539,-9,18536,18537,4,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-876.47784,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,6,2,3,0,0,8,1,1,388,-262567.22,0,0,0 -8245,10155,18540,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,5.0945177,5.3816371,3,0,0,0,-9,0,-971.27606,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,20,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5044141,0,0,0,32.18,36.68,-9,-9,7,1,1,0,0,5,2,1,772,162253.69,0,0,2091.0391 -8246,10156,18541,18542,-9,-9,1,1,1,55,1,0,1,0,1,-9,1,1,0,0,4,8.272851,8.0677776,0,2,0,-9,19,0,7,55.027279,0,0,0,48,2,3,1,3,2,2019,1,2,7,0,40,40,15,1,0,1,0,8.8925266,8.8925266,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.98,55.330002,57.330002,53.459999,6,2,3,0,0,8,3,1,616,-61655.777,0,0,2668.4731 -8246,10156,18542,18541,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.0643082,7.5148835,0,2,0,-9,19,0,-7,51.835018,0,0,0,55,1,4,1,2,2,2019,1,1,8,1,18,0,15,1,0,1,0,9.6434183,9.6434183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,49.98,55.330002,6,2,3,0,0,8,3,1,616,-61655.777,0,0,2668.4731 -8246,10157,18543,-9,18542,18541,3,1,1,25,2,0,1,0,1,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-933.00305,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,24,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,60.259998,-9,-9,3,2,3,1,0,8,1,1,359,-108306.62,0,0,0 -8246,10158,18544,-9,18542,18541,4,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-921.20313,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,16,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.67,64.75,-9,-9,2,2,3,0,0,8,1,1,321,-80612.641,0,0,0 -8246,10159,18545,-9,18542,18541,5,1,1,20,2,0,1,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-864.41766,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.389999,48.799999,-9,-9,3,2,3,1,0,8,1,1,138,0,0,0,256.43478 -8246,10160,18546,-9,18542,18541,6,1,0,18,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-976.39221,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,24,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.92,44.02,-9,-9,3,2,3,0,0,8,3,1,2399,96243.633,0,0,0 -8247,10161,18547,18548,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,5,8.0920668,8.1679411,0,1,0,-9,24,0,-1,136.39809,0,0,0,59,1,4,1,3,3,2019,1,2,5,0,30,30,15,1,0,1,0,16.875452,16.875452,0,0,0,0,0,0,0,0,0,0,0,3.8637161,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,2,3,1,869,-97848.234,0,0,1900.8446 -8247,10161,18548,18547,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,.20844333,.36721936,0,1,0,-9,24,0,1,111.88325,-9,0,0,58,2,5,1,2,2,2019,1,1,12,1,78,0,15,1,0,1,0,.00054730452,.00054730452,0,0,0,0,0,0,0,0,0,0,0,6.4768543,0,0,0,51.830002,57.200001,57.060001,57.759998,6,1,1,0,0,2,3,1,869,-97848.234,0,0,1900.8446 -8248,10162,18549,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,4,8.4041367,8.6049471,0,3,0,0,0,-9,0,-930.44757,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,36,37,15,1,0,-9,0,20.186497,20.186497,0,0,0,0,0,0,0,2,0,0,0,3.2792478,0,4.2563553,3,54.200001,57.490002,-9,-9,3,1,1,0,0,8,5,0,72,500370.66,0,0,1422.8285 -8249,10163,18550,-9,18552,18551,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.46631,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,0,763.33331,105749.65,0,0,2295.6182 -8249,10163,18551,18552,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,1,3,8.0235376,8.4663687,0,2,0,-9,8,0,-8,-5.2318959,0,0,0,51,1,2,1,2,2,2019,1,1,20,8,40,44,15,1,1,1,0,11.403746,11.403746,0,0,0,0,0,0,0,0,1,1,0,1.9966838,0,0,0,33.470001,51.990002,63.830002,27.549999,5,1,1,0,0,10,3,0,763.33331,105749.65,0,0,2295.6182 -8249,10163,18552,18551,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,2,7.6003289,7.7474098,0,2,0,-9,8,0,8,63.272251,0,0,0,43,2,3,1,2,2,2019,1,2,5,1,32,36,15,1,0,1,0,5.0181727,5.0181727,0,0,0,0,0,0,0,0,1,1,0,1.7155044,0,0,0,63.830002,27.549999,33.470001,51.990002,6,1,1,0,0,10,3,0,763.33331,105749.65,0,0,2295.6182 -8249,10164,18553,-9,18552,18551,3,1,1,19,2,0,1,0,2,1,2,1,0,0,4,7.3849468,7.1578078,0,3,0,0,0,-9,0,-1021.4867,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,48,0,15,1,0,-9,1,4.3309422,4.3309422,0,0,0,0,0,0,0,0,1,1,0,.12417893,0,0,0,51.490002,57.57,-9,-9,4,1,1,0,0,10,3,0,507,27752.855,0,0,545.3623 -8250,10165,18554,-9,18556,18557,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-968.46368,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,4,0,480.75,261691.98,0,0,3431.8357 -8250,10165,18555,-9,18556,18557,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1030.739,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,9,4,0,480.75,261691.98,0,0,3431.8357 -8250,10165,18556,18557,-9,-9,1,1,0,39,1,0,2,0,2,-9,1,1,0,0,3,6.5802422,6.9412384,0,2,0,-9,5,0,3,22.77285,0,0,1,36,2,3,1,2,3,2019,1,4,11,0,8,0,15,1,0,1,0,10.855757,10.855757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.740002,40.709999,38.189999,56.16,4,1,1,0,0,9,4,0,480.75,261691.98,0,0,3431.8357 -8250,10165,18557,18556,-9,-9,4,1,1,36,1,0,2,0,2,-9,2,1,0,0,3,8.5097475,8.6680326,0,2,0,-9,5,0,-3,94.554169,0,0,0,39,2,3,1,-9,-9,2019,1,1,8,0,60,51,15,1,0,1,0,14.921048,14.921048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.189999,56.16,42.740002,40.709999,6,1,1,0,0,9,4,0,480.75,261691.98,0,0,3431.8357 -8251,10166,18558,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,0,4,8.3161039,8.2599611,0,3,0,0,0,-9,0,-930.97626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,37,15,1,0,-9,0,17.843372,17.843372,0,0,0,0,0,0,0,0,0,0,0,5.9096298,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,5,1,909,627580,0,0,1591.9603 -8252,10167,18559,18560,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,41,0,0,4.6415839,0,0,0,60,3,3,1,-9,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,48,45.490002,58.84,6,1,1,0,0,9,4,1,478,1244034,0,0,1734.7813 -8252,10167,18560,18559,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.4953537,8.8029346,0,1,0,-9,41,0,0,-76.0756,0,0,0,60,2,3,3,-9,3,2019,2,1,6,0,50,50,15,1,0,3,0,9.6145773,9.6145773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.490002,58.84,48,48,5,1,1,0,0,9,4,1,478,1244034,0,0,1734.7813 -8253,10168,18561,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,0,3,7.8770494,7.8674221,0,3,0,0,0,-9,0,-1022.3738,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,20,30,15,1,0,-9,0,14.294658,14.294658,0,0,0,0,0,0,0,0,0,0,0,10.729215,0,0,0,48.130001,38.290001,-9,-9,3,1,1,0,0,4,3,1,426,500170.22,0,0,8457.6279 -8253,10169,18562,-9,-9,18561,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,2,6.1063786,6.3807206,0,3,0,0,0,-9,0,-1066.1729,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,0,17,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.59,59.52,-9,-9,5,2,3,0,0,4,2,1,244,60840.578,0,0,-155.02942 -8254,10170,18563,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-967.01288,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.049999,59.07,-9,-9,6,1,1,0,0,9,1,0,1890,-65332.375,0,0,0 -8255,10171,18564,18566,-9,-9,1,1,1,63,1,0,2,0,2,-9,2,1,0,0,3,8.0403128,8.305397,6.15939,2,0,-9,17,0,22,.42493334,0,0,0,41,3,3,1,3,2,2019,1,2,10,0,39,39,15,1,0,1,0,7.9285173,7.9285173,0,0,0,0,0,0,0,0,1,1,0,4.8862939,6.2703824,0,0,58.330002,44.689999,49.290001,54.59,4,1,1,0,0,7,4,0,235.66667,2242252.3,0,0,3637.5481 -8255,10171,18565,-9,18566,18564,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.0681,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,0,235.66667,2242252.3,0,0,3637.5481 -8255,10171,18566,18564,-9,-9,2,1,0,41,1,0,2,0,3,-9,2,1,0,0,3,7.8362408,7.9142909,0,2,0,-9,17,0,-22,17.957865,0,0,1,63,2,3,1,3,3,2019,1,1,9,0,40,40,15,1,0,1,0,8.9663773,8.9663773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,58.330002,44.689999,6,2,3,0,0,7,4,0,235.66667,2242252.3,0,0,3637.5481 -8256,10172,18567,-9,18569,18568,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.03851,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,953,-42038.496,0,0,3060.7151 -8256,10172,18568,18569,-9,-9,1,1,1,23,1,1,1,0,1,-9,2,1,0,0,4,7.8254838,7.6915517,0,2,0,-9,3,0,-1,13.287567,0,1,0,24,1,4,1,2,2,2019,1,2,3,0,35,26,15,1,0,1,0,8.8368502,8.8368502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,42.619999,57.189999,5,1,1,0,0,1,3,0,953,-42038.496,0,0,3060.7151 -8256,10172,18569,18568,-9,-9,2,1,0,24,1,1,1,0,1,-9,2,1,0,0,4,8.1619787,7.7682166,0,2,0,-9,3,0,1,12.14211,0,1,1,23,1,4,1,-9,-9,2019,1,1,12,2,35,0,15,1,0,1,0,6.3695483,6.3695483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.619999,57.189999,57.16,56.150002,6,1,1,0,0,1,3,0,953,-42038.496,0,0,3060.7151 -8257,10173,18570,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,0,4,8.7370272,8.4551601,0,3,0,0,0,-9,0,-1011.7052,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,38,38,15,1,0,-9,0,21.009933,21.009933,0,0,0,0,0,0,0,0,0,0,0,3.0820122,0,0,0,60.119999,54.799999,-9,-9,7,4,2,0,0,6,5,1,233,95751.32,0,0,2321.8511 -8258,10174,18571,18572,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.4822874,8.3967228,4.8329611,1,0,-9,8,0,-7,8.5226526,0,0,0,69,3,2,3,-9,-9,2019,2,1,8,1,46,45,15,1,0,4,0,9.912365,9.912365,0,0,0,0,0,0,0,0,1,1,0,5.4262543,5.4214578,0,0,57.330002,53.459999,52.48,28.809999,6,1,1,0,0,10,3,0,480.5,693634.88,0,0,1475.7422 -8258,10174,18572,18571,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,3.1960125,4.3551326,3.7263434,1,0,-9,28,0,7,32.336887,0,0,0,62,2,3,1,3,2,2019,3,2,12,2,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3225248,3.5691719,0,0,52.48,28.809999,57.330002,53.459999,5,1,1,0,0,10,3,0,480.5,693634.88,0,0,1475.7422 -8259,10175,18573,18574,18578,-9,2,1,0,61,1,0,0,0,1,-9,6,3,0,0,3,0,7.0450435,6.9984431,1,0,-9,7,0,-1,73.755585,0,0,0,62,3,1,1,3,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.700913,7.0427914,0,3,49,48,38.66,21.799999,5,2,3,0,0,8,4,1,300.5,1277017.8,0,0,2873.7073 -8259,10175,18574,18573,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,1,1,8.3561192,8.1242237,6.053731,1,0,-9,37,0,1,121.28367,0,0,0,61,1,3,3,-9,-9,2019,2,2,10,2,35,35,15,1,0,3,0,15.197531,15.197531,0,0,0,0,0,0,0,0,1,1,0,6.2263265,6.2809906,0,0,38.66,21.799999,49,48,6,2,3,0,0,8,4,1,300.5,1277017.8,0,0,2873.7073 -8259,10176,18575,-9,18573,18574,3,1,0,35,2,0,0,0,1,-9,2,1,0,0,4,8.0880022,8.4534874,0,3,0,0,0,-9,0,-947.67523,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,35,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.80588859,0,0,3,48,56,-9,-9,5,2,3,0,0,8,4,1,910,113808.05,0,0,1372.5883 -8259,10177,18576,-9,18573,18574,4,1,1,33,2,0,0,0,1,-9,2,1,0,0,4,8.220479,8.4677896,0,3,0,0,0,-9,0,-1075.5985,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,35,35,15,1,0,-9,1,16.228945,16.228945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,-9,-9,5,2,3,0,0,8,5,1,561,5605.3145,0,0,1682.8783 -8259,10178,18577,-9,18573,18574,5,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,8.2656775,8.0595474,0,3,0,0,0,-9,0,-989.81537,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,11,2,35,40,15,1,0,-9,1,11.605363,11.605363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,57,-9,-9,5,2,3,0,0,8,4,1,154,85545.359,0,0,701.25677 -8259,10179,18578,-9,-9,-9,6,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-955.6344,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,2,3,0,0,8,1,1,598,172503.34,0,0,1717.0465 -8259,10180,18579,-9,18578,-9,7,1,1,56,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1075.3717,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,-9,-9,6,2,3,0,0,8,1,1,1682,85112.008,0,0,-243.00287 -8260,10181,18580,18581,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,5,6.8519516,6.724122,0,1,0,-9,41,0,-2,-26.127111,0,0,0,62,2,3,3,-9,-9,2019,2,1,8,0,23,25,15,1,0,3,0,5.1860924,5.1860924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,48.990002,40.959999,6,2,3,0,0,6,2,1,391,32549.945,0,0,1113.8058 -8260,10181,18581,18580,-9,-9,1,1,1,62,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,41,0,2,-21.169027,0,0,0,60,2,5,1,3,3,2019,3,2,16,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.990002,40.959999,59.43,58.049999,2,2,3,1,0,6,2,1,391,32549.945,0,0,1113.8058 -8261,10182,18582,-9,18583,18584,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-900.10718,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,4,1,602.33331,143583.2,0,0,3734.3062 -8261,10182,18583,18584,-9,-9,2,1,0,27,1,1,1,0,2,-9,2,1,0,0,5,8.5494204,8.3747149,0,2,0,-9,4,0,-1,-41.708378,0,1,1,28,2,4,1,-9,-9,2019,1,1,6,0,37,36,15,1,0,1,0,12.439452,12.439452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,7,4,1,602.33331,143583.2,0,0,3734.3062 -8261,10182,18584,18583,-9,-9,1,1,1,28,1,1,1,0,2,-9,1,1,0,0,4,8.3263083,8.4342575,0,2,0,-9,4,0,1,18.596462,0,1,0,27,2,5,1,2,2,2019,1,2,5,0,54,40,15,1,0,1,0,8.8969841,8.8969841,0,0,0,0,0,0,0,0,0,0,0,3.0212612,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,7,4,1,602.33331,143583.2,0,0,3734.3062 -8262,10183,18585,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,2,0,7.2354059,7.2325034,3,0,0,0,-9,0,-1124.3998,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2064071,7.1621327,0,0,55.779999,31.52,-9,-9,5,1,1,0,0,7,2,1,665,744024.88,0,0,1119.1062 -8263,10184,18586,18587,-9,-9,2,1,0,46,1,1,3,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,13,0,7,-118.25882,0,0,0,39,3,3,1,3,3,2019,3,1,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.279999,34.98,67.410004,35.130001,4,2,3,0,0,6,2,1,431.79999,-39026.168,0,0,1799.355 -8263,10184,18587,18586,-9,-9,1,1,1,39,1,1,3,0,3,-9,2,1,0,0,3,7.5384326,7.3851504,0,2,0,-9,14,0,-7,-27.427734,0,0,0,46,3,2,3,3,3,2019,2,2,12,0,32,32,15,1,0,3,0,6.616415,6.616415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.410004,35.130001,45.279999,34.98,5,2,3,0,0,6,2,1,431.79999,-39026.168,0,0,1799.355 -8263,10184,18588,-9,18586,18587,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.18634,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,2,1,431.79999,-39026.168,0,0,1799.355 -8263,10184,18589,-9,18586,18587,4,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.55859,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,2,1,431.79999,-39026.168,0,0,1799.355 -8263,10184,18590,-9,18586,18587,3,1,1,12,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.8466,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,2,1,431.79999,-39026.168,0,0,1799.355 -8264,10185,18591,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,8.4599056,8.234395,0,3,0,0,0,-9,0,-1024.4009,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,42,15,1,0,-9,0,13.079419,13.079419,0,0,0,0,0,0,0,0,1,1,0,.69005048,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,4,1,1190,129568.97,0,0,1531.2566 -8265,10186,18592,18593,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,8.9041376,8.6870489,1,0,-9,23,0,2,78.779961,0,0,0,63,2,2,1,2,2,2019,3,1,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2656822,8.7391176,0,0,58.07,46.290001,60.540001,32.080002,6,1,1,0,0,8,5,1,419,5455996,0,0,5971.7476 -8265,10186,18593,18592,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,8.8761768,8.9149504,6.3266215,1,0,-9,23,0,-2,164.0997,0,0,0,65,1,3,3,2,2,2019,2,2,7,0,24,24,15,1,0,4,0,33.401718,33.401718,0,0,0,0,0,0,0,0,1,1,0,0,6.5867319,0,0,60.540001,32.080002,58.07,46.290001,6,1,1,0,0,8,5,1,419,5455996,0,0,5971.7476 -8266,10187,18594,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,0,3,0,7.0172491,6.6285143,3,0,0,0,-9,0,-1198.0137,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,11.827437,0,0,0,0,1,1,0,0,7.2056465,0,0,55,45,-9,-9,6,1,1,0,0,11,2,1,412,172502.97,0,0,1382.7467 -8267,10188,18595,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-937.84387,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7394848,0,0,0,52.189999,41.380001,-9,-9,1,1,1,0,0,12,1,1,213,70364.563,0,0,457.22562 -8268,10189,18596,-9,-9,-9,1,1,1,27,2,0,0,0,3,-9,2,1,0,0,5,7.9640656,8.3045788,0,3,0,0,0,-9,0,-1055.5055,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,48,55,15,1,0,-9,0,8.7728701,8.7728701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,4,3,4,0,0,8,4,0,186,190439.16,0,0,244.36485 -8269,10190,18597,18598,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,2,0,3.8294358,3.8880599,1,0,-9,6,0,5,-88.08107,0,0,0,78,1,3,3,2,-9,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7699912,0,0,34.860001,28.719999,47.139999,41.529999,5,1,1,0,0,9,2,0,885,602061.44,0,0,1766.1848 -8269,10190,18598,18597,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,5.77704,5.4445148,1,0,-9,60,0,-5,3.6133826,0,0,0,83,2,2,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.5142465,5.5849996,21.124023,1,47.139999,41.529999,34.860001,28.719999,5,1,1,0,0,9,2,0,885,602061.44,0,0,1766.1848 -8270,10191,18599,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,6,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1031.6184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,41,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4702821,0,0,0,58.740002,48.720001,-9,-9,4,1,1,0,0,8,1,1,1099,4293.3179,0,0,-1348.3542 -8270,10192,18600,-9,18599,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.8567863,7.3818021,0,3,0,0,0,-9,0,-944.19147,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,36,38,15,1,0,-9,1,6.2091923,6.2091923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,8,3,1,571,63935.016,0,0,533.65759 -8271,10193,18601,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,-9,0,1,0,-997.5697,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,30.780001,-9,-9,3,1,1,1,0,2,1,1,519,78620.016,0,0,753.69427 -8272,10194,18602,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1078.3584,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.880001,38.459999,-9,-9,5,1,1,0,0,13,1,0,273,31171.49,0,0,1415.8374 -8273,10195,18603,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1046.024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8045816,0,15.955197,0,62.389999,56.709999,-9,-9,7,1,1,0,0,2,1,1,489,320483.66,0,0,692.45874 -8274,10196,18604,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,4,4.840826,8.5338326,8.2571898,3,0,0,0,-9,0,-1004.2284,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.036509,8.2947226,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,4,1,573,1087271.5,0,0,3218.3074 -8275,10197,18605,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,4,0,7.7135177,7.799973,3,0,-9,0,-9,0,-1040.1074,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8739004,7.6914878,0,0,38.34,62.119999,-9,-9,4,1,1,0,0,11,3,1,275,676097.25,0,0,1695.7472 -8276,10198,18606,18608,-9,-9,4,1,1,34,1,0,2,0,2,-9,2,1,0,0,3,7.6109347,7.642663,0,2,0,-9,2,0,1,-49.944042,0,0,0,33,1,1,3,-9,-9,2019,2,1,9,1,20,15,15,1,0,3,0,10.679026,10.679026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,40.310001,14.24,5,1,1,0,1,12,2,0,1018.75,-20673.883,0,0,1372.2837 -8276,10198,18607,-9,18608,18606,2,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1048.9434,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.959999,56.860001,-9,-9,6,1,1,0,0,12,2,0,1018.75,-20673.883,0,0,1372.2837 -8276,10198,18608,18606,-9,-9,1,1,0,33,1,0,2,0,1,-9,8,3,1,1,1,0,5.9747791,5.6471753,2,0,-9,2,0,-1,-110.40482,0,0,1,34,2,3,1,2,2,2019,3,4,19,7,0,34,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8957267,0,0,0,40.310001,14.24,52.990002,51.279999,4,1,1,0,1,12,2,0,1018.75,-20673.883,0,0,1372.2837 -8276,10198,18609,-9,18608,18606,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-886.41748,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,12,2,0,1018.75,-20673.883,0,0,1372.2837 -8277,10199,18610,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,1,0,5.136518,5.0514507,3,0,0,0,-9,0,-997.3006,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.6235113,0,23.283602,0,9.56252,0,0,1,1,0,0,5.0772099,0,0,58.349998,15.54,-9,-9,6,1,1,0,0,2,2,1,271,-171537.95,0,0,-8.0713272 -8278,10200,18611,18612,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.2723341,8.1405869,0,1,0,1,1,-9,8,-67.365952,0,0,0,22,1,4,1,2,2,2019,1,2,7,0,39,40,15,1,0,1,0,10.033511,10.033511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,31.690001,56.82,5,1,1,0,0,4,5,1,570,-39542.391,0,0,2963.0691 -8278,10200,18612,18611,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,0,4,8.4958992,8.1085148,0,1,0,-9,1,-9,-8,64.503906,-9,1,1,30,2,4,1,-9,-9,2019,1,1,12,3,57,0,15,1,0,1,0,10.148678,10.148678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.690001,56.82,51.830002,57.200001,5,1,1,0,0,4,5,1,570,-39542.391,0,0,2963.0691 -8279,10201,18613,18614,-9,-9,1,1,1,47,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,7,0,-2,0,0,0,0,49,2,1,3,3,2,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,36.040001,22.780001,6,1,1,1,0,13,1,0,293,-76044.766,0,0,1970.3567 -8279,10201,18614,18613,-9,-9,2,1,0,49,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,2,0,0,0,0,47,3,4,3,2,2,2019,4,1,23,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.040001,22.780001,52,55,2,1,1,0,1,13,1,0,293,-76044.766,0,0,1970.3567 -8280,10202,18615,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,2,0,6.5482068,7.0215983,3,0,0,0,-9,0,-940.09222,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4358821,6.5970039,0,0,47,36,-9,-9,5,1,1,0,0,9,2,1,3134,125094.53,0,0,1378.3912 -8281,10203,18616,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,0,3,8.9413633,8.898015,0,3,0,0,0,-9,0,-940.14441,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,38,15,1,0,-9,0,17.544218,17.544218,0,0,0,0,0,0,0,0,0,0,0,3.4699845,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,1,5,1,623,412983.66,0,0,2832.7646 -8282,10204,18617,18618,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,2,0,4.1585913,4.0404496,1,0,-9,6,0,5,120.35007,0,0,0,59,2,2,1,3,3,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.8409111,0,0,53.779999,35.18,49.950001,38.470001,6,1,1,0,0,12,3,1,353.5,242318.11,0,0,2434.4666 -8282,10204,18618,18617,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,7.5666761,8.2592793,6.855722,1,0,-9,6,0,-5,-14.082013,0,0,0,64,3,2,3,3,2,2019,2,2,8,0,25,25,15,1,0,4,0,9.8574715,9.8574715,0,0,0,0,0,0,0,0,1,1,0,4.7427773,6.8525577,0,0,49.950001,38.470001,53.779999,35.18,5,1,1,0,0,12,3,1,353.5,242318.11,0,0,2434.4666 -8283,10205,18619,18620,-9,-9,1,1,1,46,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,6,0,4,40.823383,0,0,0,42,2,4,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,37.52,61.389999,5,1,1,0,0,6,4,1,485,84179.352,0,0,4403.4526 -8283,10205,18620,18619,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,8.5781517,9.0682297,0,1,0,-9,6,0,-4,-128.48819,0,0,1,46,2,4,3,-9,-9,2019,2,1,22,9,33,32,15,1,1,3,0,23.621883,23.621883,0,0,0,0,0,0,0,93,1,1,0,0,0,113.03596,1,37.52,61.389999,51.830002,57.200001,3,1,1,0,0,6,4,1,485,84179.352,0,0,4403.4526 -8284,10206,18621,18622,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,6.8309054,7.3442383,0,1,0,-9,31,0,-5,-22.040997,0,0,0,54,2,2,1,2,2,2019,1,2,12,0,17,22,15,1,0,1,0,8.8887596,8.8887596,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.650002,56.189999,33.060001,52.68,4,1,1,0,0,9,4,1,523.5,6533.7109,0,0,2443.5962 -8284,10206,18622,18621,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,2,8.2739601,8.0038042,0,1,0,-9,32,0,5,45.098679,0,0,0,49,1,3,1,-9,2,2019,1,1,17,5,37,40,15,1,1,1,0,9.5591059,9.5591059,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.060001,52.68,39.650002,56.189999,4,1,1,0,0,9,4,1,523.5,6533.7109,0,0,2443.5962 -8284,10207,18623,-9,18621,18622,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,7.6309414,7.3951468,0,3,0,0,0,-9,0,-1070.118,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,5,38,38,15,1,1,-9,1,5.168324,5.168324,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.99,58.299999,-9,-9,7,1,1,0,0,9,3,1,772,27953.766,0,0,1334.5293 -8284,10208,18624,-9,18621,18622,4,1,0,20,2,0,0,0,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1053.7678,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,32,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.309999,59.27,-9,-9,2,1,1,0,0,9,1,1,348,17569.42,0,0,-12.211048 -8285,10209,18625,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,0,3,8.4063272,8.8262558,0,3,0,0,0,-9,0,-998.75757,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,2,49,47,15,1,0,-9,0,11.044902,11.044902,0,0,0,0,0,0,0,0,0,0,0,4.5196934,0,0,0,46.099998,38.110001,-9,-9,5,4,5,0,0,8,5,0,1128,1546709.3,0,0,1987.2266 -8286,10210,18626,18627,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,3,8.8019609,8.9700918,0,2,0,-9,22,0,4,-34.393211,0,0,0,46,1,3,2,-9,-9,2019,2,2,11,1,14,47,15,1,0,2,0,63.811314,63.811314,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,46,50,5,2,3,0,0,6,4,1,2128.5,613736.44,0,0,2112.6958 -8286,10210,18627,18626,-9,-9,2,1,0,46,1,0,2,0,1,0,7,2,0,0,3,0,0,0,2,0,-9,21,0,-4,137.50806,-9,0,0,50,1,3,1,-9,-9,2019,3,1,12,2,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,50,49,50,5,1,1,0,0,6,4,1,2128.5,613736.44,0,0,2112.6958 -8287,10211,18628,18629,-9,-9,2,1,1,35,1,1,1,0,2,-9,1,1,0,0,4,9.0116482,9.0415058,0,2,0,-9,4,0,5,-60.546867,0,0,0,30,1,4,1,-9,-9,2019,1,1,11,1,70,50,15,1,0,1,0,14.438886,14.438886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.110001,53.419998,51.830002,57.200001,6,1,1,0,0,11,5,1,814,414904.75,0,0,5079.8042 -8287,10211,18629,18628,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,0,4,8.3153305,8.3937311,0,2,0,-9,4,0,-5,-3.5613406,0,0,1,35,2,4,1,-9,-9,2019,1,2,9,1,38,45,15,1,0,1,0,15.498931,15.498931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.110001,53.419998,6,1,1,0,0,11,5,1,814,414904.75,0,0,5079.8042 -8287,10211,18630,-9,18629,18628,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.30798,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,11,5,1,814,414904.75,0,0,5079.8042 -8288,10212,18631,18633,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,0,3,7.3437839,7.2122302,0,2,0,-9,14,0,-3,20.441725,0,0,1,42,2,4,1,2,2,2019,1,1,10,1,28,1,15,1,0,1,0,6.4486489,6.4486489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.91,42.220001,48.689999,42.52,6,1,1,0,0,7,4,1,450.5,299188.22,0,0,3674.2734 -8288,10212,18632,-9,18631,18633,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.18494,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,450.5,299188.22,0,0,3674.2734 -8288,10212,18633,18631,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.7034979,8.9956598,0,2,0,-9,14,0,3,97.735764,0,0,0,39,2,3,1,3,2,2019,1,2,9,0,26,60,15,1,0,1,0,31.447063,31.447063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.689999,42.52,51.91,42.220001,5,1,1,0,0,7,4,1,450.5,299188.22,0,0,3674.2734 -8288,10212,18634,-9,18631,18633,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.56042,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,450.5,299188.22,0,0,3674.2734 -8289,10213,18635,18636,-9,-9,1,1,0,31,1,1,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,0,32.293072,0,0,1,31,1,5,1,2,2,2019,3,2,10,0,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8447351,0,0,0,57.060001,57.759998,59.43,58.049999,7,1,1,0,0,9,5,0,711,1387341.3,0,0,6038.6206 -8289,10213,18636,18635,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,0,5,9.0403862,9.2621117,0,2,0,-9,8,0,0,50.454536,0,0,0,31,1,5,3,-9,-9,2019,2,1,8,0,70,45,15,1,0,3,0,16.275532,16.275532,0,0,0,0,0,0,0,0,0,0,0,8.5697794,0,0,0,59.43,58.049999,57.060001,57.759998,7,1,1,0,0,9,5,0,711,1387341.3,0,0,6038.6206 -8289,10213,18637,-9,18635,18636,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.52936,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,0,711,1387341.3,0,0,6038.6206 -8290,10214,18638,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.7443228,7.7975135,3,0,0,0,-9,0,-1092.8661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2372584,8.0593891,0,0,29.719999,61.25,-9,-9,7,1,1,0,0,1,4,1,107,683871.56,0,0,1660.4703 -8291,10215,18639,18640,-9,-9,2,1,0,51,1,0,1,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,13,0,-23,58.081234,0,0,0,74,1,3,1,3,2,2019,1,1,8,0,15,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3507805,0,0,0,51.790001,47.73,54,46,6,1,1,0,0,10,4,1,844.5,1314101.8,0,0,2702.4883 -8291,10215,18640,18639,-9,-9,1,1,1,74,1,0,1,0,1,-9,1,1,0,0,3,8.536602,8.4029198,5.4871459,2,0,-9,13,0,23,67.792854,0,0,0,51,1,3,1,3,3,2019,1,2,9,1,35,30,15,1,0,1,0,20.444508,20.444508,0,0,0,0,0,0,0,0,1,1,0,8.0872545,5.4598455,0,0,54,46,51.790001,47.73,5,1,1,0,0,10,4,1,844.5,1314101.8,0,0,2702.4883 -8292,10216,18641,18642,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,0,4,7.3153062,7.3932061,0,1,0,-9,49,0,-7,8.4662285,0,0,0,76,2,2,3,3,-9,2019,2,2,6,0,24,21,15,1,0,4,0,7.9459672,7.9459672,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,52.240002,50.75,6,3,4,0,0,8,3,0,865,756188.5,0,0,2639.4702 -8292,10216,18642,18641,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,5.9245896,5.7886958,1,0,-9,11,0,7,-36.377071,0,0,0,69,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9599528,0,0,52.240002,50.75,62.490002,55.09,5,3,4,0,0,8,3,0,865,756188.5,0,0,2639.4702 -8293,10217,18643,18644,-9,-9,1,1,0,66,1,0,0,0,1,-9,1,1,0,0,3,6.8395677,6.740653,0,1,0,-9,8,0,9,-18.636868,0,0,0,57,2,4,1,1,1,2019,1,2,7,1,10,16,15,1,0,1,0,10.585177,10.585177,0,0,0,0,0,0,0,7,1,1,0,0,0,7.240479,3,42.84,49.18,51.830002,57.200001,5,1,1,0,0,12,3,1,1866.5,418885.69,0,0,2876.7183 -8293,10217,18644,18643,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,0,4,7.7374172,7.7780023,0,1,0,-9,8,0,0,-119.04163,0,0,0,66,1,3,1,-9,-9,2019,1,1,9,0,30,30,15,1,0,1,0,9.8899126,9.8899126,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,42.84,49.18,6,1,1,0,1,12,3,1,1866.5,418885.69,0,0,2876.7183 -8294,10218,18645,-9,18646,18648,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.7682,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,4,1,634.5,139807.84,0,0,3004.7551 -8294,10218,18646,18648,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,8.2071171,8.0536442,0,2,0,-9,17,0,-1,-96.736084,0,0,1,36,1,3,1,1,1,2019,1,2,12,3,37,37,15,1,0,1,0,10.314249,10.314249,0,0,0,0,0,0,0,0,1,1,0,1.5658826,0,0,0,35.669998,64.459999,42.07,50.91,5,1,1,0,0,1,4,1,634.5,139807.84,0,0,3004.7551 -8294,10218,18647,-9,18646,18648,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.8842,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,634.5,139807.84,0,0,3004.7551 -8294,10218,18648,18646,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,0,3,8.3694162,8.2919807,0,2,0,-9,17,0,1,37.888447,0,0,0,35,1,4,1,2,1,2019,1,1,12,0,42,40,15,1,0,1,0,10.522744,10.522744,0,0,0,0,0,0,0,0,1,1,0,1.5446165,0,0,0,42.07,50.91,35.669998,64.459999,5,1,1,0,0,1,4,1,634.5,139807.84,0,0,3004.7551 -8295,10219,18649,-9,-9,-9,1,1,0,49,3,0,1,0,3,-9,2,1,0,0,2,5.4698238,5.392417,0,4,0,0,0,-9,0,-977.18634,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,5,10,15,1,0,-9,0,6.1045208,6.1045208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.040001,36.860001,-9,-9,2,2,3,0,0,6,2,1,870,23349.98,0,0,3.1944337 -8295,10220,18650,-9,18649,-9,2,1,0,28,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1079.2948,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.970001,41.970001,-9,-9,3,2,3,1,1,6,1,1,585,2059.1494,0,0,1141.1276 -8295,10221,18651,-9,18649,-9,3,1,1,27,2,0,1,0,3,-9,2,1,0,0,3,7.9272218,7.9138422,0,3,0,0,0,-9,0,-1093.0011,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,58,0,15,1,0,-9,1,4.3045893,4.3045893,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.580002,53.700001,-9,-9,6,2,3,0,0,6,3,1,1992,109280.43,0,0,1162.4042 -8295,10222,18652,-9,18649,-9,4,1,0,24,2,0,1,0,2,-9,2,1,0,0,3,7.615787,7.728889,0,3,0,0,0,-9,0,-1120.8845,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,30,40,15,1,1,-9,1,9.0908871,9.0908871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.869999,45.189999,-9,-9,2,2,3,0,1,6,3,1,477,126873.46,0,0,1581.1862 -8295,10223,18653,-9,18649,-9,5,1,1,21,2,0,1,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-958.66956,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.09,42.549999,-9,-9,6,2,3,1,0,6,1,1,457,75764.977,0,0,-89.036217 -8295,10224,18654,-9,18649,-9,6,1,1,18,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-927.17529,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.549999,57.009998,-9,-9,5,2,3,0,0,6,3,1,453,0,0,0,1352.1923 -8296,10225,18655,18656,-9,-9,2,1,1,54,1,1,0,0,3,-9,8,3,1,1,2,0,6.1687927,6.1964197,1,0,-9,34,0,1,-66.508408,0,0,0,53,3,2,3,2,2,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4315047,0,0,66.669998,16.76,50.740002,34.810001,5,1,1,0,0,8,2,0,2597.5,468949.78,0,0,2189.9385 -8296,10225,18656,18655,-9,-9,1,1,0,53,1,1,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,34,0,-1,-104.10062,0,0,0,54,3,2,3,-9,-9,2019,4,2,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.527733,1,50.740002,34.810001,66.669998,16.76,5,1,1,0,0,8,2,0,2597.5,468949.78,0,0,2189.9385 -8296,10226,18657,-9,18656,18655,3,1,0,22,2,1,0,0,2,-9,2,1,0,0,4,7.8418198,7.9562855,0,3,0,0,0,-9,0,-968.37585,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,44,35,15,1,0,-9,1,6.6898932,6.6898932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,6,1,1,0,0,8,3,0,285.5,15717.297,0,0,1142.7865 -8296,10226,18658,-9,18657,-9,4,1,0,10,2,1,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-890.81122,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,8,3,0,285.5,15717.297,0,0,1142.7865 -8296,10226,18659,-9,18657,-9,5,1,0,5,2,1,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-965.48926,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,3,0,285.5,15717.297,0,0,1142.7865 -8296,10226,18660,-9,18657,-9,6,1,1,2,2,1,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-939.65912,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,3,0,285.5,15717.297,0,0,1142.7865 -8297,10227,18661,18662,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,0,5,8.1007624,8.2668695,0,1,0,1,1,-9,6,-4.0376968,0,1,0,18,2,4,3,2,3,2019,2,3,10,0,40,39,15,1,0,3,0,9.5983496,9.5983496,0,0,0,0,0,0,0,0,0,0,0,2.8508229,0,0,0,47.279999,59.360001,14.91,68.970001,6,1,1,0,0,4,3,1,831.5,97991.828,0,0,2095.4573 -8297,10227,18662,18661,-9,-9,3,1,0,18,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,1,-9,-6,-70.714363,-9,1,1,24,2,5,1,-9,-9,2019,3,1,32,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.91,68.970001,47.279999,59.360001,2,1,1,1,0,4,3,1,831.5,97991.828,0,0,2095.4573 -8297,10228,18663,-9,-9,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,8.0966845,8.1501617,0,3,0,0,0,-9,0,-1058.7582,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,49,24,15,1,0,-9,0,5.689435,5.689435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.32,57.18,-9,-9,7,1,1,0,0,4,4,1,414,-111971.51,0,0,-549.55713 -8298,10229,18664,18666,-9,-9,1,1,1,49,1,0,2,0,1,-9,1,1,0,0,2,9.2090836,9.4346886,0,2,0,-9,24,0,9,-9.8280659,0,0,0,40,2,3,3,2,1,2019,2,2,20,7,35,40,15,1,1,3,0,34.411797,34.411797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.200001,42.189999,51.939999,30.01,4,2,3,0,1,8,4,0,838.75,1416991.5,0,0,4565.1001 -8298,10229,18665,-9,18666,18664,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1117.3099,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,61.75,-9,-9,5,2,3,0,0,8,4,0,838.75,1416991.5,0,0,4565.1001 -8298,10229,18666,18664,-9,-9,2,1,0,40,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,24,0,0,22.802483,0,0,1,49,1,2,1,3,2,2019,3,1,10,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.939999,30.01,47.200001,42.189999,6,2,3,0,0,8,4,0,838.75,1416991.5,0,0,4565.1001 -8298,10229,18667,-9,18666,18664,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1022.602,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,4,2,0,0,8,4,0,838.75,1416991.5,0,0,4565.1001 -8299,10230,18668,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,2,1,0,0,3,9.0561571,8.9145823,0,3,0,0,0,-9,0,-932.00403,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,44,46,15,1,0,-9,0,21.073444,21.073444,0,0,0,0,0,0,0,0,0,0,0,3.8945303,0,0,0,52.009998,48.98,-9,-9,6,1,1,0,0,8,5,1,721,324018.5,0,0,3311.1096 -8300,10231,18669,-9,18670,18672,5,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.5986,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,2,1,336,132030.78,0,0,2692.6802 -8300,10231,18670,18672,-9,-9,3,1,0,38,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,-7,-75.373329,0,0,1,45,3,4,1,3,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,51,57.759998,54.509998,6,2,3,0,0,2,2,1,336,132030.78,0,0,2692.6802 -8300,10231,18671,-9,18670,18672,1,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.5238,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,2,1,336,132030.78,0,0,2692.6802 -8300,10231,18672,18670,-9,-9,2,1,1,45,1,0,2,0,3,-9,2,1,0,0,4,7.0344167,7.1019034,0,2,0,-9,21,0,7,170.42293,0,0,0,38,3,3,3,2,3,2019,2,3,6,0,25,29,15,1,0,3,0,6.428431,6.428431,0,0,0,0,0,0,0,7,1,1,0,.49747068,0,1.9773873,2,57.759998,54.509998,45,51,7,2,3,0,0,2,2,1,336,132030.78,0,0,2692.6802 -8300,10232,18673,-9,18670,18672,4,1,1,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-949.33734,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,2,1,1,830,0,0,0,0 -8301,10233,18674,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1016.6166,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.65,34.66,-9,-9,1,1,1,0,0,4,1,0,980,207540.73,0,0,641.19598 -8302,10234,18675,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,0,3,8.7725592,8.6067905,0,3,0,0,0,-9,0,-968.01111,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,18.324425,18.324425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,-9,-9,6,1,1,0,0,7,5,0,825,282869.84,0,0,2700.386 -8303,10235,18676,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-1072.9749,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.82,55.349998,-9,-9,5,1,1,0,1,13,1,0,1528,109353.95,0,0,2228.0645 -8304,10236,18677,18678,-9,-9,2,1,1,23,1,0,0,0,1,-9,2,1,0,0,3,7.9890943,8.0648098,0,1,0,-9,2,0,1,59.859489,0,1,0,22,2,4,2,-9,-9,2019,2,1,15,5,40,0,15,1,1,2,0,10.022697,10.022697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.790001,35.32,41.650002,60.41,4,4,2,0,0,2,3,0,598.5,81414.563,0,0,1625.9452 -8304,10236,18678,18677,-9,-9,1,1,0,22,1,0,0,1,2,0,7,2,0,0,4,0,0,0,1,0,-9,2,0,-1,9.6392097,-9,1,1,23,1,3,1,2,2,2019,3,2,16,4,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.650002,60.41,40.790001,35.32,5,1,1,0,1,2,3,0,598.5,81414.563,0,0,1625.9452 -8305,10237,18679,-9,18683,18682,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.80994,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,4,1,683.20001,258035.91,0,0,4067.6111 -8305,10237,18680,-9,18683,18682,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.9188,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,683.20001,258035.91,0,0,4067.6111 -8305,10237,18681,-9,18683,18682,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.2915,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,683.20001,258035.91,0,0,4067.6111 -8305,10237,18682,18683,-9,-9,1,1,1,41,1,0,3,0,1,-9,2,1,0,0,5,8.6589365,8.7029409,0,2,0,-9,18,0,1,106.3222,0,0,0,40,2,3,1,3,2,2019,1,2,29,9,38,62,15,1,1,1,0,17.709726,17.709726,0,0,0,0,0,0,0,7,1,1,0,4.3712587,0,5.2887926,3,15.54,70.400002,30.639999,56.599998,5,1,1,0,0,13,4,1,683.20001,258035.91,0,0,4067.6111 -8305,10237,18683,18682,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,0,3,7.9140143,7.9285312,0,2,0,-9,18,0,-1,55.450035,0,0,1,41,1,5,1,2,3,2019,1,1,20,8,41,20,15,1,1,1,0,8.9490881,8.9490881,0,0,0,0,0,0,0,2,1,1,0,6.7351151,0,1.2684451,3,30.639999,56.599998,15.54,70.400002,5,1,1,0,0,13,4,1,683.20001,258035.91,0,0,4067.6111 -8306,10238,18684,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,9.0195408,8.5005903,0,3,0,0,0,-9,0,-985.92822,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,46,68,15,1,0,-9,0,16.300879,16.300879,0,0,0,0,0,0,0,0,1,1,0,.83674759,0,0,0,48.869999,58.549999,-9,-9,5,2,3,0,0,4,5,1,156,40091.137,0,0,2460.0317 -8307,10239,18685,18686,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,36,0,-3,0,0,0,0,66,3,4,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,21.059999,60.119999,54.799999,7,1,1,0,0,13,1,0,412,498017.53,0,0,2351.022 -8307,10239,18686,18685,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,36,0,3,0,0,0,0,63,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.84522,1,60.119999,54.799999,60.299999,21.059999,7,1,1,0,0,13,1,0,412,498017.53,0,0,2351.022 -8308,10240,18687,18688,-9,-9,2,1,1,20,1,0,0,0,2,-9,2,1,0,0,5,8.3264198,8.4785614,0,1,0,-9,1,-9,0,-10.115999,-9,1,0,20,2,4,1,-9,-9,2019,1,1,9,1,41,0,15,1,0,1,0,12.121279,12.121279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.34,48.82,51.830002,57.200001,6,1,1,0,0,10,4,0,702,10772.848,0,0,1804.155 -8308,10240,18688,18687,-9,-9,1,1,0,20,1,0,0,0,2,-9,2,1,0,0,4,7.158308,6.8752012,0,1,0,1,1,-9,0,49.431911,0,1,1,20,2,5,1,-9,-9,2019,1,2,9,0,21,0,15,1,0,1,0,6.3129244,6.3129244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,52.34,48.82,7,1,1,0,0,10,4,0,702,10772.848,0,0,1804.155 -8309,10241,18689,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,1,1,0,0,3,7.6735258,7.8825927,0,3,0,0,0,-9,0,-1012.0521,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,8,1,40,40,15,1,0,-9,0,7.9209447,7.9209447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,-9,-9,6,1,1,0,0,7,3,1,658,-155196.17,0,0,1436.6414 -8309,10242,18690,-9,18689,-9,2,1,0,19,2,0,0,0,2,-9,1,1,0,0,2,7.3596544,7.3238339,0,3,0,0,0,-9,0,-1076.8359,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,20,50,15,1,1,-9,1,9.1876945,9.1876945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.24,55.25,-9,-9,2,1,1,0,1,7,3,1,421,72558.734,0,0,1745.4819 -8310,10243,18691,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,0,3,7.6520319,8.0138245,0,3,0,0,0,-9,0,-981.08441,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,35,41,15,1,0,-9,0,8.8723087,8.8723087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,4,3,0,553,478802.56,0,0,-5.6962104 -8311,10244,18692,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-989.19916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2691069,0,0,0,53.529999,22.75,-9,-9,4,1,1,0,0,2,1,0,1110,216241.09,0,0,785.43909 -8312,10245,18693,18694,-9,-9,1,1,0,39,1,1,4,0,2,-9,2,1,0,0,4,7.480598,7.839056,0,2,0,-9,17,0,-16,27.460831,0,0,1,55,2,4,1,2,2,2019,1,2,12,0,28,0,15,1,0,1,0,10.26845,10.26845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.900002,56.66,49.860001,55.310001,6,1,1,0,0,9,4,1,756.75,934271.13,0,0,4031.4641 -8312,10245,18694,18693,-9,-9,2,1,1,55,1,1,4,0,2,-9,2,1,0,0,4,8.8283148,8.6719198,0,2,0,-9,10,0,16,52.440075,0,0,0,39,2,4,1,3,3,2019,1,1,12,0,41,45,15,1,0,1,0,19.03886,19.03886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,46.900002,56.66,6,1,1,0,0,9,4,1,756.75,934271.13,0,0,4031.4641 -8312,10245,18695,-9,18693,18694,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1136.6758,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,4,1,756.75,934271.13,0,0,4031.4641 -8312,10245,18696,-9,18693,18694,5,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.27588,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,756.75,934271.13,0,0,4031.4641 -8313,10246,18697,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,0,2,0,7.3421226,7.6208124,3,0,0,0,-9,0,-906.07428,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7328472,7.390481,0,0,58.209999,20.950001,-9,-9,6,1,1,0,0,9,3,1,753,709849.25,0,0,1766.7484 -8314,10247,18698,18699,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.8973207,7.9452338,0,1,0,-9,7,0,-3,85.457901,0,0,0,60,3,2,1,2,2,2019,1,1,13,2,34,25,15,1,0,1,0,8.9474182,8.9474182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.84,50.73,57.57,49.689999,7,1,1,0,0,11,4,1,484.5,216647.19,0,0,2932.8655 -8314,10247,18699,18698,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,2,7.7145286,8.0291624,6.0415978,1,0,-9,7,0,3,74.626625,0,0,0,57,2,4,1,3,3,2019,1,2,9,0,60,60,15,1,0,1,0,6.0247798,6.0247798,0,0,0,0,0,0,0,2,0,0,0,0,6.2742572,4.3845592,3,57.57,49.689999,42.84,50.73,4,1,1,0,0,11,4,1,484.5,216647.19,0,0,2932.8655 -8315,10248,18700,18701,-9,-9,2,1,1,55,1,0,0,0,2,-9,3,3,0,1,4,0,0,0,1,0,-9,7,0,4,0,0,0,0,51,3,3,3,-9,-9,2019,4,1,12,0,0,12,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.57436,1,39.290001,46.68,36.189999,33.279999,5,1,1,1,0,13,1,0,372,-31573.18,0,0,1838.7452 -8315,10248,18701,18700,-9,-9,1,1,0,51,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,7,0,-4,0,0,0,0,55,2,4,3,3,3,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.189999,33.279999,39.290001,46.68,3,1,1,0,0,13,1,0,372,-31573.18,0,0,1838.7452 -8316,10249,18702,18703,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,7.5558581,7.4039016,1,0,-9,5,0,1,54.841621,0,0,0,75,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.774261,7.7877975,0,0,60.439999,36.049999,52.650002,30.98,5,1,1,0,0,11,3,1,599,581068.56,0,0,1531.6545 -8316,10249,18703,18702,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,5,0,-1,79.473671,0,0,0,76,2,2,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7286654,0,0,0,52.650002,30.98,60.439999,36.049999,4,1,1,0,0,11,3,1,599,581068.56,0,0,1531.6545 -8317,10250,18704,18705,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.8295221,8.6844521,0,1,0,-9,9,0,-8,-133.39203,-9,0,0,57,3,3,1,-9,-9,2019,1,1,8,0,70,0,15,1,0,1,0,9.5338306,9.5338306,0,0,0,0,0,0,0,0,0,0,0,4.5618854,0,0,0,49.630001,54.220001,57.330002,53.459999,5,1,1,0,0,7,5,1,316.5,203882.05,0,0,5699.9746 -8317,10250,18705,18704,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,8.6309786,8.2441864,0,1,0,-9,19,0,8,67.249557,0,0,0,49,2,3,1,3,3,2019,1,2,7,0,35,35,15,1,0,1,0,15.61498,15.61498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,49.630001,54.220001,5,1,1,0,0,7,5,1,316.5,203882.05,0,0,5699.9746 -8318,10251,18706,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,5,6.0982599,7.6025567,7.0166764,3,0,0,0,-9,0,-1036.5912,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,9,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1122041,7.1751122,0,0,53.02,50.049999,-9,-9,6,1,1,0,0,11,3,1,778,357023.97,0,0,791.15747 -8319,10252,18707,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1036.202,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,.23099259,0,0,0,0,44.664913,0,1,1,0,.17077132,0,0,0,55,43,-9,-9,6,1,1,0,0,11,1,0,456,141070.05,0,0,1566.8442 -8320,10253,18708,18709,-9,-9,1,1,0,42,1,0,2,0,2,-9,1,1,0,0,4,7.6431975,7.8720078,0,2,0,-9,9,0,-2,-151.24332,0,0,1,44,2,3,1,2,2,2019,1,2,7,0,51,51,15,1,0,1,0,5.6633987,5.6633987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.849998,53.68,6,1,1,0,0,10,3,1,655.5,935887.88,0,0,1844.8702 -8320,10253,18709,18708,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,3,7.4952693,7.9494977,0,2,0,-9,9,0,2,-186.2032,0,0,0,42,2,4,1,-9,-9,2019,1,1,9,1,9,20,15,1,0,1,0,34.392891,34.392891,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.849998,53.68,54.200001,57.490002,6,1,1,0,0,10,3,1,655.5,935887.88,0,0,1844.8702 -8320,10253,18710,-9,18708,18709,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.8413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,655.5,935887.88,0,0,1844.8702 -8320,10253,18711,-9,18708,18709,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.8638,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,655.5,935887.88,0,0,1844.8702 -8321,10254,18712,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,6.6888585,6.7714734,3,0,-9,0,1,0,-1109.8734,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5467167,0,0,34.66,31.540001,-9,-9,6,1,1,0,0,7,2,1,305,506876.69,0,0,2569.2156 -8322,10255,18713,18714,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.6756854,7.6581488,1,0,-9,27,0,-16,59.879459,0,0,0,78,1,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7937365,7.7220187,6.5415754,1,52,54.509998,34.450001,58.700001,6,1,1,0,0,7,4,1,4177,3501078.5,0,0,3225.0347 -8322,10255,18714,18713,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,8.0539923,8.0474596,1,0,-9,24,0,16,-7.2309685,0,0,0,62,2,3,3,2,2,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0990391,8.4468498,0,0,34.450001,58.700001,52,54.509998,6,1,1,0,0,7,4,1,4177,3501078.5,0,0,3225.0347 -8323,10256,18715,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.1793842,8.2270718,0,3,0,-9,0,-9,0,-1041.063,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,40,0,15,1,0,-9,0,9.3594503,9.3594503,0,0,0,0,0,0,0,0,0,0,0,2.989665,0,0,0,49.09,57.299999,-9,-9,5,1,1,0,0,6,4,1,968,-40857.945,0,0,2962.4963 -8324,10257,18716,18717,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.6319456,8.9031868,1,0,-9,47,0,0,-12.748374,0,0,0,68,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9625154,8.6134834,0,0,57.279999,51.959999,54.759998,43.599998,6,1,1,0,0,8,4,1,262,3160037.3,0,0,6046.6602 -8324,10257,18717,18716,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,5.9300737,5.4326568,1,0,-9,47,0,0,105.32082,0,0,0,68,1,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,5.4750695,5.1210117,3,54.759998,43.599998,57.279999,51.959999,6,1,1,0,0,8,4,1,262,3160037.3,0,0,6046.6602 -8325,10258,18718,18719,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.9597802,6.834331,1,0,-9,9,0,1,7.7888689,0,0,0,66,1,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0134869,6.8561459,7.5152349,3,57.16,56.150002,50.16,43.549999,6,1,1,0,0,5,3,1,189.5,643323.88,0,0,3896.9404 -8325,10258,18719,18718,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,2,0,7.9053693,7.6039338,1,0,-9,48,0,-1,-49.611019,0,0,0,67,2,4,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8428359,7.8993497,0,0,50.16,43.549999,57.16,56.150002,4,1,1,0,0,5,3,1,189.5,643323.88,0,0,3896.9404 -8326,10259,18720,18722,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,9.2652102,8.9880095,0,2,0,-9,9,0,-2,11.721375,0,0,0,49,1,5,1,2,1,2019,1,2,11,0,35,38,15,1,0,1,0,30.303818,30.303818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.009998,57.459999,51.139999,60.450001,5,1,1,0,0,2,5,1,792.25,611014,0,0,6955.1982 -8326,10259,18721,-9,18720,18722,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.56238,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,792.25,611014,0,0,6955.1982 -8326,10259,18722,18720,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,5,9.4945507,9.4552784,0,2,0,-9,9,0,2,1.7341108,0,0,0,47,1,4,1,2,1,2019,1,1,8,0,42,40,15,1,0,1,0,38.718498,38.718498,0,0,0,0,0,0,0,0,0,0,0,7.2449307,0,0,0,51.139999,60.450001,45.009998,57.459999,6,1,1,0,0,2,5,1,792.25,611014,0,0,6955.1982 -8326,10259,18723,-9,18720,18722,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.0108,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,792.25,611014,0,0,6955.1982 -8327,10260,18724,-9,-9,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,6.6258483,6.6126628,0,3,0,0,0,-9,0,-958.58429,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,35,0,15,1,1,-9,1,2.2393255,2.2393255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.530001,57.389999,-9,-9,4,1,1,0,0,12,2,1,913,8691.4023,0,0,-96.018723 -8328,10261,18725,18727,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.6686258,8.6310663,0,2,0,-9,8,0,7,-36.967518,0,0,0,31,2,3,1,-9,-9,2019,1,1,8,0,54,38,15,1,0,1,0,13.242031,13.242031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,48.41,39.630001,6,1,1,0,0,2,4,0,861.33331,-7759.3296,0,0,2061.9998 -8328,10261,18726,-9,18727,18725,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.8843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,0,861.33331,-7759.3296,0,0,2061.9998 -8328,10261,18727,18725,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,0,3,7.3431954,7.5715847,0,2,0,-9,8,0,-7,194.84293,0,0,1,38,2,4,1,2,2,2019,1,2,6,0,30,21,15,1,0,1,0,6.6788301,6.6788301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.41,39.630001,48.869999,58.549999,5,1,1,0,0,2,4,0,861.33331,-7759.3296,0,0,2061.9998 -8329,10262,18728,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,4,0,7.0422711,7.0741692,3,0,0,0,-9,0,-1029.7356,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8638835,7.3920531,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,11,2,1,731,599163,0,0,1510.2679 -8330,10263,18729,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,0,2,8.942544,8.9834433,0,3,0,-9,0,-9,0,-981.57111,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,60,0,15,1,1,-9,0,19.21594,19.21594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.52,38.740002,-9,-9,6,1,1,0,0,2,5,0,594,204854.98,0,0,1815.333 -8331,10264,18730,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,0,4,8.3982658,8.7681618,0,3,0,0,0,-9,0,-1117.343,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,37,15,1,0,-9,0,15.411917,15.411917,0,0,0,0,0,0,0,7,1,1,0,0,0,2.3519156,3,57.16,56.150002,-9,-9,6,4,2,0,0,2,4,0,313,525839.75,0,0,2447.01 -8332,10265,18731,-9,-9,-9,1,1,1,88,3,0,0,0,1,-9,4,3,0,0,2,0,9.3530321,8.8063593,3,0,0,0,-9,0,-962.08295,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6465607,0,0,51.25,22.92,-9,-9,6,1,1,0,0,9,5,1,164,995842.25,0,0,5272.7837 -8333,10266,18732,-9,18734,18733,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1086.0448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,1,1281.3334,-8616.4014,0,0,1473.9935 -8333,10266,18733,18734,-9,-9,1,1,1,37,1,1,1,0,1,-9,1,1,0,0,4,8.0415192,8.2926645,0,2,0,-9,3,0,4,31.619955,0,0,0,33,1,5,1,2,2,2019,1,2,10,1,80,60,15,1,0,1,0,5.7007689,5.7007689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,60.02,56.419998,5,2,3,0,0,8,3,1,1281.3334,-8616.4014,0,0,1473.9935 -8333,10266,18734,18733,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,0,5,0,0,0,2,0,-9,3,0,-4,5.7898855,0,0,1,37,1,4,1,-9,-9,2019,1,1,4,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,51,56,7,2,3,0,0,8,3,1,1281.3334,-8616.4014,0,0,1473.9935 -8334,10267,18735,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,3,8.5426502,8.1714935,0,3,0,0,0,-9,0,-926.65118,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,53,45,15,1,1,-9,0,9.1094007,9.1094007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.880001,47.84,-9,-9,5,1,1,0,0,5,5,1,221,-62665.84,0,0,2924.1165 -8335,10268,18736,18737,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,3,8.8373461,8.7294102,0,1,0,-9,9,0,0,54.869057,0,0,0,33,2,2,1,2,2,2019,1,2,6,0,52,49,15,1,0,1,0,13.62765,13.62765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.470001,50.220001,36.790001,45.740002,6,1,1,0,0,9,4,0,1418.5,114229.3,0,0,1466.7115 -8335,10268,18737,18736,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,9,0,0,53.130135,0,0,1,33,1,3,1,2,2,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3369942,0,0,0,36.790001,45.740002,58.470001,50.220001,4,1,1,0,0,9,4,0,1418.5,114229.3,0,0,1466.7115 -8336,10269,18738,18739,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,4,0,4.9171495,5.0995121,1,0,-9,61,0,-2,89.38269,0,0,0,80,3,2,3,3,3,2019,4,2,4,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.20223044,5.1452551,0,0,57.16,56.150002,43.810001,42.41,7,1,1,0,0,4,2,1,750,695266.88,0,0,1566.3044 -8336,10269,18739,18738,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,0,2,0,7.0682483,7.2234812,1,0,-9,61,0,2,79.221046,0,0,0,78,3,4,3,3,3,2019,4,1,4,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.31328073,7.0454364,0,0,43.810001,42.41,57.16,56.150002,5,1,1,0,0,4,2,1,750,695266.88,0,0,1566.3044 -8337,10270,18740,-9,-9,-9,1,1,1,84,2,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1074.0586,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.6414571,0,0,3,62.389999,56.709999,-9,-9,7,1,1,0,0,8,1,1,480,324897.06,0,0,1692.2245 -8338,10271,18741,-9,18745,18744,2,1,1,14,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-903.0918,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,1,0,1793.3334,71493.961,0,0,1464.9561 -8338,10271,18742,-9,18745,18744,5,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.87915,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,1,0,1793.3334,71493.961,0,0,1464.9561 -8338,10271,18743,-9,18745,18744,6,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-987.97156,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,1,0,1793.3334,71493.961,0,0,1464.9561 -8338,10271,18744,18745,-9,-9,4,1,1,34,1,1,4,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,1,0,0,0,0,33,3,3,3,-9,-9,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,54.959999,53.169998,4,1,1,1,1,10,1,0,1793.3334,71493.961,0,0,1464.9561 -8338,10271,18745,18744,-9,-9,1,1,0,33,1,1,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,-1,0,0,0,1,34,2,4,3,-9,-9,2019,4,4,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,59.529999,56.439999,3,1,1,0,1,10,1,0,1793.3334,71493.961,0,0,1464.9561 -8338,10271,18746,-9,18745,18744,3,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.57111,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,1793.3334,71493.961,0,0,1464.9561 -8339,10272,18747,-9,18750,-9,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1075.3254,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,343.5,16259.92,0,0,2028.5525 -8339,10272,18748,-9,18750,-9,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.5123,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,1,0,343.5,16259.92,0,0,2028.5525 -8339,10272,18749,-9,18750,-9,2,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.8553,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,343.5,16259.92,0,0,2028.5525 -8339,10272,18750,-9,-9,-9,1,1,0,36,2,0,3,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-889.07892,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,25,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.45714,3,27.23,38.970001,-9,-9,2,1,1,0,0,9,1,0,343.5,16259.92,0,0,2028.5525 -8340,10273,18751,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,7.7829909,7.6454377,3,0,0,0,-9,0,-969.22424,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8947573,7.7568998,0,0,57.73,41.119999,-9,-9,6,1,1,0,0,2,3,1,203,598629,0,0,1710.9908 -8341,10274,18752,-9,18753,18754,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-796.91351,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,5,1,468.33334,80927.836,0,0,6512.6289 -8341,10274,18753,18754,-9,-9,2,1,0,36,1,0,1,0,1,-9,5,1,0,0,4,8.8929195,9.1024313,0,2,0,-9,1,-9,1,-110.6921,-9,0,1,35,2,3,1,2,2,2019,1,1,11,0,37,0,15,1,0,1,0,23.752977,23.752977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,53.299999,42.91,6,1,1,0,0,13,5,1,468.33334,80927.836,0,0,6512.6289 -8341,10274,18754,18753,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,0,3,9.072257,8.8570662,0,2,0,-9,1,-9,-1,21.492174,-9,0,0,36,1,4,1,1,1,2019,1,2,10,0,45,0,15,1,0,1,0,21.391176,21.391176,0,0,0,0,0,0,0,0,1,1,0,6.3704281,0,0,0,53.299999,42.91,57.16,56.150002,6,1,1,0,0,13,5,1,468.33334,80927.836,0,0,6512.6289 -8342,10275,18755,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,8.1957788,8.1758108,0,3,0,0,0,-9,0,-869.04492,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,38,37,15,1,0,-9,0,12.293253,12.293253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,6,4,0,327,-116128.23,0,0,2591.5967 -8343,10276,18756,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,2,1,0,0,2,8.3797026,8.0256195,6.4520903,3,0,0,0,-9,0,-976.64185,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,24,24,15,1,0,-9,0,13.609201,13.609201,0,0,0,0,0,0,0,0,1,1,0,0,6.2848063,0,0,58.169998,42.52,-9,-9,6,1,1,0,0,10,4,1,264,296931.84,0,0,1731.2522 -8344,10277,18757,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,6.4930367,6.434267,3,0,0,0,-9,0,-938.45813,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4829412,6.5280643,0,0,50.060001,55.279999,-9,-9,7,1,1,0,0,9,2,1,1024,78189.195,0,0,899.88196 -8345,10278,18758,-9,-9,-9,1,1,0,20,2,1,1,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1069.4681,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.209999,60.66,-9,-9,2,1,1,0,1,11,1,0,1989.5,-123049.16,0,0,1253.6466 -8345,10278,18759,-9,18758,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-924.59778,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,1,0,1989.5,-123049.16,0,0,1253.6466 -8346,10279,18760,18761,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,1,0,6.4243813,6.3822441,1,0,-9,6,0,4,39.780746,0,0,0,75,3,5,3,3,2,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,.47880477,11.319325,0,0,0,0,0,1,1,0,5.7497807,6.8166609,0,0,45.18,16.15,51.540001,58.849998,5,1,1,0,0,13,2,0,179.5,695303.5,0,0,2043.642 -8346,10279,18761,18760,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,5,0,5.7061238,6.0186472,1,0,-9,6,0,-4,-106.0399,0,0,0,79,2,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,5.786263,78.500145,1,51.540001,58.849998,45.18,16.15,7,1,1,0,0,13,2,0,179.5,695303.5,0,0,2043.642 -8347,10280,18762,18763,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,7.8965993,8.0037422,0,1,0,-9,24,0,-2,-2.554008,0,0,0,49,2,3,1,2,2,2019,1,1,9,0,35,35,15,1,0,1,0,10.14742,10.14742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.099998,54.560001,45.18,54.77,6,1,1,0,0,12,5,1,340,183653.77,0,0,3163.3242 -8347,10280,18763,18762,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.4413977,8.3017702,0,1,0,-9,24,0,2,87.090988,0,0,0,47,2,3,1,-9,2,2019,1,2,11,0,35,35,15,1,0,1,0,15.494793,15.494793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.18,54.77,40.099998,54.560001,5,1,1,0,0,12,5,1,340,183653.77,0,0,3163.3242 -8347,10281,18764,-9,18762,18763,4,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.6678839,7.7212939,0,3,0,0,0,-9,0,-1021.4637,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,25,15,1,0,-9,1,6.3053708,6.3053708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,12,3,1,668,236056.66,0,0,27.321207 -8348,10282,18765,18766,-9,-9,1,1,0,40,1,0,1,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,23,0,-5,-37.64212,0,0,1,45,3,4,1,2,3,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,85.819221,3,35.619999,57.790001,53,55,5,1,1,0,0,5,3,1,1319.5,-111465.73,0,0,2473.6895 -8348,10282,18766,18765,-9,-9,2,1,1,45,1,0,1,0,3,-9,2,1,0,0,4,8.5518064,8.3353252,0,2,0,-9,23,0,5,-14.446651,0,0,0,40,2,4,3,3,3,2019,2,1,9,1,50,40,15,1,0,3,0,8.1925287,8.1925287,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,35.619999,57.790001,6,1,1,0,0,5,3,1,1319.5,-111465.73,0,0,2473.6895 -8349,10283,18767,-9,-9,-9,3,1,1,20,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1084.2753,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.830002,57.200001,-9,-9,6,4,5,0,0,8,1,0,753,0,0,0,364.33777 -8350,10284,18768,18769,-9,-9,1,1,1,46,1,0,0,0,2,-9,1,1,0,0,4,7.562222,7.8647084,0,1,0,-9,5,0,-3,-81.020027,0,0,0,49,2,4,1,2,2,2019,1,2,8,0,15,20,15,1,0,1,0,15.256012,15.256012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,36.619999,58.959999,5,1,1,0,0,4,3,0,1148,208812.52,0,0,1567.1003 -8350,10284,18769,18768,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.2737951,7.263236,0,1,0,-9,5,0,3,-6.0111661,0,0,0,46,2,4,1,-9,-9,2019,1,1,12,2,40,40,15,1,0,1,0,4.4450369,4.4450369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.619999,58.959999,57.16,56.150002,3,2,3,0,0,4,3,0,1148,208812.52,0,0,1567.1003 -8351,10285,18770,-9,-9,-9,1,1,1,33,3,0,0,0,1,-9,2,1,0,0,4,8.524786,8.5078278,0,3,0,0,0,-9,0,-937.92218,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,35,35,15,1,0,-9,0,19.243114,19.243114,0,0,0,0,0,0,0,0,0,0,0,6.514915,0,0,0,50,57,-9,-9,5,1,1,0,0,8,5,1,430,73343.43,0,0,2321.0132 -8351,10286,18771,-9,-9,-9,2,1,0,30,3,0,0,0,1,-9,2,1,0,0,4,9.1410446,8.9927731,0,3,0,0,0,-9,0,-1092.4819,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,37,15,1,0,-9,0,23.216753,23.216753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,8,5,1,444,618021.25,0,0,1837.4622 -8352,10287,18772,18773,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,5.3111315,5.2383285,1,0,-9,6,0,-4,221.14485,0,0,0,74,3,2,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,.077684268,5.5586553,72.294922,1,50.41,53.709999,48.150002,25.17,6,1,1,0,0,6,2,1,834.5,604389.75,0,0,2170.9688 -8352,10287,18773,18772,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,4,-130.26436,0,0,0,70,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.150002,25.17,50.41,53.709999,6,1,1,0,0,6,2,1,834.5,604389.75,0,0,2170.9688 -8353,10288,18774,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,5.6186519,5.6151524,3,0,0,0,-9,0,-1013.3941,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.4139705,0,0,52,45,-9,-9,6,1,1,0,0,6,2,1,2115,101003.98,0,0,611.35651 -8354,10289,18775,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,0,2,0,5.9438572,6.0154862,3,0,0,0,-9,0,-1003.5855,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2927887,6.0976329,0,0,36.34,35.139999,-9,-9,6,1,1,0,0,6,2,1,2113,380358.5,0,0,-168.49911 -8355,10290,18776,18777,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-2,.19288488,0,0,0,72,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.6589942,0,120.52863,1,55.75,36.73,47.799999,32.529999,5,1,1,0,0,12,2,1,289,309840.94,0,0,1488.6345 -8355,10290,18777,18776,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,2,0,6.571981,6.4678593,1,0,-9,6,0,2,-71.069702,0,0,0,70,2,2,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1050668,0,0,47.799999,32.529999,55.75,36.73,5,1,1,0,0,12,2,1,289,309840.94,0,0,1488.6345 -8356,10291,18778,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,1,2,0,5.8416176,6.5842834,3,0,0,0,-9,0,-1063.6858,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9328876,0,0,0,26.4,23.110001,-9,-9,2,1,1,0,0,10,2,0,1377,840310.25,0,0,1374.2336 -8357,10292,18779,18780,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,5,0,6.1484828,6.667511,1,0,-9,6,0,-3,58.256168,0,0,0,75,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.846355,6.3646741,0,0,62.959999,55.09,62.490002,55.09,7,1,1,0,0,7,2,1,1524,266685.38,0,0,4372.8018 -8357,10292,18780,18779,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.619978,7.1545172,1,0,-9,6,0,3,156.43057,0,0,0,72,2,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.083806,6.6258101,0,0,62.490002,55.09,62.959999,55.09,7,1,1,0,0,7,2,1,1524,266685.38,0,0,4372.8018 -8357,10293,18781,-9,18779,18780,3,1,1,44,2,0,0,0,2,-9,2,1,0,0,3,7.1312256,7.1333089,0,3,0,0,0,-9,0,-970.48718,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,15,15,15,1,0,-9,1,11.219334,11.219334,0,0,0,0,0,0,0,0,1,1,0,5.3625607,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,7,3,1,1583,227862.86,0,0,39.633644 -8358,10294,18782,18783,-9,-9,2,1,0,42,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,23,0,-4,-.70833564,0,0,1,46,1,3,1,3,2,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.096048348,0,2.3324723,3,38.91,47.299999,50.509998,53.709999,4,2,3,0,0,4,3,1,322.75,341734.25,0,0,2773.6899 -8358,10294,18783,18782,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,3,8.394578,8.4295769,0,2,0,-9,23,0,4,-99.277992,0,0,0,42,2,2,3,3,3,2019,2,2,14,2,37,41,15,1,0,3,0,14.834347,14.834347,0,0,0,0,0,0,0,7,1,1,0,0,0,2.2555132,3,50.509998,53.709999,38.91,47.299999,3,2,3,0,0,4,3,1,322.75,341734.25,0,0,2773.6899 -8358,10294,18784,-9,18782,18783,4,1,1,17,2,0,1,0,2,1,2,3,0,0,4,5.639658,5.6381636,0,2,0,0,0,-9,0,-941.60834,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,1,12,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,60.470001,-9,-9,7,2,3,0,0,4,3,1,322.75,341734.25,0,0,2773.6899 -8358,10294,18785,-9,18782,18783,5,1,1,16,2,0,1,0,2,-9,97,2,0,0,5,0,0,0,2,0,0,0,-9,0,-946.56171,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,4,3,1,322.75,341734.25,0,0,2773.6899 -8358,10295,18786,-9,18782,18783,3,1,0,19,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-900.86115,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,58.02,-9,-9,1,2,3,0,0,4,1,1,644,-17196.113,0,0,0 -8359,10296,18787,18788,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,5,0,8.8021412,8.6444378,1,0,-9,41,0,8,84.894356,0,0,0,65,1,3,3,2,1,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2133827,8.8785086,0,0,57.060001,57.759998,51.939999,55.880001,2,1,1,0,0,2,5,1,411,2208679,0,0,10028.944 -8359,10296,18788,18787,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,8.8936291,9.0059605,0,1,0,-9,41,0,-8,39.150517,0,0,0,73,1,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9418912,0,0,0,51.939999,55.880001,57.060001,57.759998,7,1,1,0,0,2,5,1,411,2208679,0,0,10028.944 -8360,10297,18789,18790,-9,-9,1,1,1,57,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,7,0,0,0,0,50,2,3,3,-9,-9,2019,4,2,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.740002,16.459999,57.919998,51.82,4,1,1,0,0,1,1,0,819.5,110227.31,0,0,835.44897 -8360,10297,18790,18789,-9,-9,2,1,0,50,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,6,0,-7,0,0,0,0,57,3,1,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.67861,1,57.919998,51.82,32.740002,16.459999,6,1,1,0,0,1,1,0,819.5,110227.31,0,0,835.44897 -8360,10298,18791,-9,18790,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,6.5841641,6.8588896,0,3,0,0,0,-9,0,-1007.0389,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,16,20,15,1,0,-9,1,6.9460392,6.9460392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.57,52.349998,-9,-9,6,1,1,0,0,1,2,0,1008,147698.7,0,0,1068.8019 -8360,10299,18792,-9,18790,-9,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.4511814,7.8065276,0,3,0,0,0,-9,0,-986.38721,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,40,45,15,1,0,-9,1,5.4195037,5.4195037,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.739332,3,50.169998,46.950001,-9,-9,4,1,1,0,0,1,3,0,338,14264.356,0,0,960.09198 -8360,10300,18793,-9,18790,-9,5,1,0,19,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-928.2821,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.40465581,0,0,0,46.529999,61.330002,-9,-9,6,1,1,0,0,1,1,0,994,-70558.992,0,0,547.61047 -8361,10301,18794,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,0,4,8.919631,9.0302343,0,3,0,0,0,-9,0,-968.88464,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,47,47,15,1,0,-9,0,22.046507,22.046507,0,0,0,0,0,0,0,0,0,0,0,3.1959548,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,5,5,1,643,479408.22,0,0,3509.8254 -8362,10302,18795,-9,18796,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1031.6361,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,444,-33665.219,0,0,1439.804 -8362,10302,18796,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,7.2612481,7.2763801,0,4,0,0,0,-9,0,-1020.5698,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,16,15,1,0,-9,0,9.4109774,9.4109774,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.830002,57.810001,-9,-9,6,1,1,0,0,2,2,0,444,-33665.219,0,0,1439.804 -8363,10303,18797,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,8.2388086,7.9414735,0,3,0,0,0,-9,0,-1053.4789,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,40,40,15,1,0,-9,0,10.592491,10.592491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.49,57.5,-9,-9,5,1,1,0,0,12,4,0,88,18203.385,0,0,531.94556 -8364,10304,18798,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,4,0,6.86657,7.1176772,3,0,0,0,-9,0,-940.77069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0780339,6.9254889,0,0,48.73,43.860001,-9,-9,7,1,1,0,0,11,2,1,137,361970.16,0,0,2669.9021 -8365,10305,18799,18800,-9,-9,1,1,0,62,1,0,0,0,1,-9,6,3,0,0,5,0,0,0,1,0,-9,42,0,-2,-59.874939,0,0,0,64,1,5,1,1,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.041616,0,0,0,55.68,54.240002,60.02,56.419998,6,1,1,0,0,9,5,1,358.5,2829640,0,0,8966.1172 -8365,10305,18800,18799,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,0,5,9.0189466,9.5528431,7.7438626,1,0,-9,42,0,2,-77.593513,0,0,0,62,1,5,3,2,2,2019,2,1,7,0,0,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6765556,8.8513899,0,0,60.02,56.419998,55.68,54.240002,7,1,1,0,0,9,5,1,358.5,2829640,0,0,8966.1172 -8366,10306,18801,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,3,9.2326794,9.2761135,3.9611924,3,0,0,0,-9,0,-1149.2523,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,44,40,15,1,0,-9,0,23.362917,23.362917,0,0,0,0,0,0,0,0,0,0,0,4.3070879,0,0,0,42.669998,53.48,-9,-9,5,1,1,0,0,4,5,1,61,1752655,0,0,2396.6726 -8367,10307,18802,18803,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,0,2,8.8454952,8.8691196,0,1,0,-9,8,0,-2,32.632618,0,0,0,51,2,3,3,2,2,2019,2,1,9,1,60,50,15,1,0,3,0,10.85695,10.85695,0,0,0,0,0,0,0,2,1,1,0,0,0,9.7139187,3,51.41,45.619999,35.360001,35.139999,6,1,1,0,0,1,4,1,1176.5,365489.75,0,0,4945.4565 -8367,10307,18803,18802,-9,-9,1,1,0,51,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,24,0,2,-6.8264785,0,0,0,49,2,2,1,2,-9,2019,3,2,22,10,0,30,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.9388008,3,35.360001,35.139999,51.41,45.619999,3,1,1,0,0,1,4,1,1176.5,365489.75,0,0,4945.4565 -8368,10308,18804,-9,18806,18805,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.6571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,12,4,1,1928.3334,82519.656,0,0,3310.8933 -8368,10308,18805,18806,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,8.9046688,8.9363174,0,2,0,-9,10,0,-3,-40.892132,0,0,0,39,2,4,1,-9,-9,2019,1,1,6,0,38,37,15,1,0,1,0,19.973135,19.973135,0,0,0,0,0,0,0,0,1,1,0,5.8415446,0,0,0,60.119999,54.799999,57.16,56.150002,6,1,1,0,0,12,4,1,1928.3334,82519.656,0,0,3310.8933 -8368,10308,18806,18805,-9,-9,1,1,0,39,1,1,1,0,2,-9,2,1,0,0,4,7.057292,7.1620388,0,2,0,-9,10,0,3,-51.660881,0,0,1,36,2,4,1,2,2,2019,1,2,12,0,20,0,15,1,0,1,0,8.9996977,8.9996977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,12,4,1,1928.3334,82519.656,0,0,3310.8933 -8369,10309,18807,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-891.96753,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.566451,3,27.559999,22.719999,-9,-9,1,3,4,1,1,6,1,0,494,111197.14,0,0,-529.11603 -8370,10310,18808,18812,-9,-9,1,1,0,45,1,0,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,22,0,-5,0,0,0,0,50,2,4,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.27997,1,50,55,52,55,6,2,3,0,1,8,1,1,400.20001,33374.789,0,0,1329.4685 -8370,10310,18809,-9,18808,18812,6,1,0,13,2,0,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-905.72333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,8,1,1,400.20001,33374.789,0,0,1329.4685 -8370,10310,18810,-9,18808,18812,5,1,0,15,2,0,5,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-821.68854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,8,1,1,400.20001,33374.789,0,0,1329.4685 -8370,10310,18811,-9,18808,18812,8,1,1,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.83368,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,1,1,400.20001,33374.789,0,0,1329.4685 -8370,10310,18812,18808,-9,-9,2,1,1,50,1,0,5,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,9,0,5,0,0,0,0,45,2,4,3,-9,-9,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,0,8,1,1,400.20001,33374.789,0,0,1329.4685 -8370,10311,18813,-9,18814,18815,7,1,0,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.1602,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,583,733203.75,0,0,2782.812 -8370,10311,18814,18815,-9,-9,3,1,0,37,1,0,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,12,0,-5,-75.425522,0,0,1,42,1,4,1,-9,-9,2019,3,4,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,51,56,5,2,3,0,0,8,3,1,583,733203.75,0,0,2782.812 -8370,10311,18815,18814,-9,-9,4,1,1,42,1,0,5,0,1,-9,2,1,0,0,4,8.888689,9.0801077,0,2,0,-9,9,0,5,-25.276075,0,0,0,37,2,4,3,-9,-9,2019,2,3,9,1,40,38,15,1,0,3,0,28.225409,28.225409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48,56,5,2,3,0,1,8,3,1,583,733203.75,0,0,2782.812 -8370,10311,18816,-9,18814,18815,9,1,0,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1124.5006,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,3,1,583,733203.75,0,0,2782.812 -8371,10312,18817,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,5.2188587,5.2192097,3,0,0,0,-9,0,-1018.6852,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.3136201,5.2712765,0,3,55.610001,39.560001,-9,-9,2,1,1,0,0,10,2,1,989,159459.31,0,0,430.02722 -8372,10313,18818,18819,-9,-9,1,1,1,87,1,0,0,0,1,-9,4,3,0,0,3,0,8.2308054,8.4670343,1,0,-9,6,0,8,-59.141407,0,0,0,79,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3823357,0,0,58.48,39.16,56,50,6,1,1,0,0,12,4,1,654.5,804912.81,0,0,3727.0435 -8372,10313,18819,18818,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,4,0,7.1482062,7.0683179,1,0,-9,6,0,-8,3.7422903,0,0,0,87,1,3,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6259522,7.3964186,0,3,56,50,58.48,39.16,1,1,1,0,0,12,4,1,654.5,804912.81,0,0,3727.0435 -8373,10314,18820,-9,18821,18823,3,1,1,16,2,0,3,0,-9,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-858.85468,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,61,-9,-9,5,3,4,0,0,8,3,1,657,100438.91,0,0,1876.1584 -8373,10314,18821,18823,-9,-9,1,1,0,38,1,0,3,0,1,-9,2,1,0,0,4,8.0097399,8.2166586,0,2,0,-9,17,0,0,126.83069,0,0,1,47,2,5,1,1,2,2019,1,2,14,4,28,23,15,1,1,1,0,14.19257,14.19257,0,0,0,0,0,0,0,0,1,1,0,.34891316,0,0,0,53.959999,50.73,59.43,58.049999,6,3,4,0,0,8,3,1,657,100438.91,0,0,1876.1584 -8373,10314,18822,-9,18821,18823,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.511,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,8,3,1,657,100438.91,0,0,1876.1584 -8373,10314,18823,18821,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,0,5,7.0871587,7.0188217,0,2,0,-9,6,0,9,-22.510485,0,0,0,38,1,4,1,-9,-9,2019,1,1,3,0,12,48,15,1,0,1,0,9.9533415,9.9533415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,53.959999,50.73,4,3,4,0,0,8,3,1,657,100438.91,0,0,1876.1584 -8373,10314,18824,-9,18821,18823,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-987.88275,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,3,4,0,0,8,3,1,657,100438.91,0,0,1876.1584 -8374,10315,18825,-9,18826,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,4.3204064,5.5496697,5.2168784,4,0,-9,0,-9,0,-953.39392,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,2,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.31073,0,.072768904,3,54.099998,59.110001,-9,-9,7,1,1,0,0,12,2,0,999,-89473.32,0,0,1926.4696 -8374,10315,18826,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,2,1,0,0,2,7.8098722,7.6576896,0,4,0,-9,0,-9,0,-976.9212,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,32,0,15,1,0,-9,0,6.6614356,6.6614356,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.515333,3,35.790001,46.27,-9,-9,5,1,1,0,0,12,2,0,999,-89473.32,0,0,1926.4696 -8375,10316,18827,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,2,0,6.7355132,7.0581012,3,0,0,0,-9,0,-1123.7633,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.913661,0,0,55.759998,23.5,-9,-9,5,1,1,0,0,12,2,1,411,152719.27,0,0,589.41925 -8376,10317,18828,18829,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,2,0,5.6398087,5.8179355,1,0,-9,69,0,0,62.568378,0,0,0,87,3,2,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,1.2415693,0,0,0,4.5810795,0,0,1,1,0,0,5.5494013,0,0,62.02,28.48,57.09,27.93,6,1,1,0,0,7,2,1,436,278770.88,0,0,1836.8281 -8376,10317,18829,18828,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,69,0,0,-176.37967,0,0,0,87,3,2,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,27.93,62.02,28.48,5,1,1,0,0,7,2,1,436,278770.88,0,0,1836.8281 -8377,10318,18830,18831,-9,-9,3,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,9.2227974,9.3086929,7.4070024,1,0,-9,35,0,1,29.379868,0,0,0,55,2,3,1,2,2,2019,1,1,6,0,43,45,15,1,0,1,0,32.329967,32.329967,0,0,0,0,0,0,0,0,0,0,0,4.7416129,7.8191452,0,0,54.790001,55.860001,57.630001,45.09,6,1,1,0,0,8,5,1,374.5,1174681.5,0,0,4105.4141 -8377,10318,18831,18830,-9,-9,1,1,0,55,1,0,0,0,2,-9,1,1,0,0,3,0,6.8986588,6.8919992,1,0,-9,35,0,-1,51.149899,0,0,0,56,1,4,1,2,3,2019,1,3,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0929966,0,0,0,57.630001,45.09,54.790001,55.860001,5,1,1,0,0,8,5,1,374.5,1174681.5,0,0,4105.4141 -8378,10319,18832,18833,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.4751115,7.83042,1,0,-9,2,0,4,24.459625,0,0,0,65,2,5,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4889884,0,0,60.049999,32.119999,55.09,55.869999,6,1,1,0,0,12,3,1,1174,732815.75,0,0,1970.0101 -8378,10319,18833,18832,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,5,0,6.0857491,6.5213294,1,0,-9,2,0,-4,-180.88904,0,0,0,69,3,2,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1310785,6.5417418,0,0,55.09,55.869999,60.049999,32.119999,6,1,1,0,0,12,3,1,1174,732815.75,0,0,1970.0101 -8379,10320,18834,-9,18836,18838,5,1,0,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.7373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,2,0,1873.3334,-85988.547,0,0,1712.4924 -8379,10320,18835,-9,18836,18838,3,1,1,11,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1003.9333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,10,2,0,1873.3334,-85988.547,0,0,1712.4924 -8379,10320,18836,18838,-9,-9,2,1,0,33,1,1,4,0,2,-9,6,3,0,0,3,6.5344067,5.7738442,0,2,0,-9,8,0,-5,13.871406,0,0,1,38,2,4,1,2,2,2019,3,1,6,0,0,7,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,1.9147668,3,54.939999,53.18,49.459999,56.91,6,1,1,0,0,10,2,0,1873.3334,-85988.547,0,0,1712.4924 -8379,10320,18837,-9,18836,18838,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.0233,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,2,0,1873.3334,-85988.547,0,0,1712.4924 -8379,10320,18838,18836,-9,-9,1,1,1,38,1,1,4,0,2,-9,1,1,0,0,4,6.0503583,5.7962894,0,2,0,-9,8,0,5,-82.749344,0,0,0,33,2,3,3,2,2,2019,2,2,10,0,50,50,15,1,0,3,0,1.0746784,1.0746784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,54.939999,53.18,6,1,1,0,0,10,2,0,1873.3334,-85988.547,0,0,1712.4924 -8379,10320,18839,-9,18836,18838,4,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1204.4106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,0,1873.3334,-85988.547,0,0,1712.4924 -8380,10321,18840,-9,-9,-9,1,1,1,28,3,0,0,0,2,-9,2,1,0,0,5,8.3081369,8.3370514,0,3,0,-9,0,-9,0,-1009.8902,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,40,0,15,1,0,-9,0,9.2334204,9.2334204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,4,1,441,42785.168,0,0,709.60706 -8381,10322,18841,-9,18842,18843,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.7925,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,3,0,219.66667,238645.05,0,0,1962.4014 -8381,10322,18842,18843,-9,-9,2,1,0,26,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-3,7.2175107,-9,1,1,29,2,3,1,-9,-9,2019,3,1,17,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.189999,44,42.5,46.84,5,2,3,0,0,8,3,0,219.66667,238645.05,0,0,1962.4014 -8381,10322,18843,18842,-9,-9,1,1,1,29,1,0,1,0,2,-9,2,1,0,0,3,8.3462324,8.6496811,0,2,0,-9,5,0,3,58.529858,-9,1,0,26,3,4,3,-9,-9,2019,2,2,14,4,52,0,15,1,1,3,0,10.337605,10.337605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,46.84,42.189999,44,4,2,3,0,0,8,3,0,219.66667,238645.05,0,0,1962.4014 -8382,10323,18844,18845,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,13,0,4,-53.234634,0,0,0,47,2,3,1,-9,-9,2019,1,2,11,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.150002,43.849998,47,50,4,1,1,0,1,8,2,0,781,549502.88,0,0,39.925743 -8382,10323,18845,18844,-9,-9,2,1,0,47,1,0,0,0,2,-9,1,1,0,0,3,6.165772,6.4344249,0,1,0,-9,13,0,-4,-123.75106,0,0,0,51,2,3,1,3,-9,2019,1,1,12,2,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,49.150002,43.849998,5,3,4,0,0,8,2,0,781,549502.88,0,0,39.925743 -8382,10324,18846,-9,18845,18844,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.7875581,7.9672866,0,3,0,0,0,-9,0,-1060.4977,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,37,0,15,1,0,-9,1,9.1010647,9.1010647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.360001,49.48,-9,-9,6,3,4,0,0,8,4,0,1035,-92720.953,0,0,224.00119 -8383,10325,18847,18849,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,0,3,8.4564924,8.5443335,0,2,0,-9,23,0,-13,22.473793,0,0,0,63,2,2,1,2,3,2019,1,1,18,6,44,50,15,1,1,1,0,13.170665,13.170665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.150002,52.09,45.959999,38.669998,5,1,1,0,0,5,4,0,263,481663.03,0,0,3063.0679 -8383,10325,18848,-9,18847,18849,5,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1024.3125,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.77,58.98,-9,-9,3,1,1,0,0,5,4,0,263,481663.03,0,0,3063.0679 -8383,10325,18849,18847,-9,-9,1,1,1,63,1,0,1,0,2,-9,2,1,0,0,2,7.9716887,8.2060823,0,2,0,-9,23,0,13,85.6315,0,0,0,50,3,3,1,3,3,2019,1,2,24,12,43,43,15,1,1,1,0,10.075445,10.075445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.959999,38.669998,48.150002,52.09,3,1,1,0,0,5,4,0,263,481663.03,0,0,3063.0679 -8383,10326,18850,-9,18847,18849,4,1,0,19,2,0,1,0,2,-9,2,1,0,0,4,7.0151238,7.2452602,0,3,0,0,0,-9,0,-1047.731,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,28,21,15,1,1,-9,1,6.3650274,6.3650274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.189999,57.34,-9,-9,2,1,1,0,0,5,3,0,1175,207088.31,0,0,729.74518 -8384,10327,18851,18852,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,0,2,8.6898499,9.3555565,0,1,0,-9,3,0,2,76.78965,0,1,0,27,1,3,1,3,3,2019,1,2,11,2,38,44,15,1,0,1,0,26.618334,26.618334,0,0,0,0,0,0,0,0,0,0,0,7.2626624,0,0,0,33.860001,50.68,47.150002,56.66,3,1,1,0,0,5,5,1,1693.5,209283.5,0,0,4075.2437 -8384,10327,18852,18851,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.371419,8.5446358,0,1,0,-9,3,0,-2,-20.232216,0,1,1,29,2,2,1,-9,-9,2019,1,1,11,0,39,41,15,1,0,1,0,12.477928,12.477928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,56.66,33.860001,50.68,6,1,1,0,0,5,5,1,1693.5,209283.5,0,0,4075.2437 -8385,10328,18853,-9,18856,18854,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.73969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,741.75,409667.13,0,0,3493.4294 -8385,10328,18854,18856,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,1,3,8.7219458,8.2453747,0,2,0,-9,10,0,1,-40.04472,0,0,0,36,2,2,1,3,2,2019,1,2,12,0,43,43,15,1,0,1,0,12.195467,12.195467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.23,55.029999,35.439999,39.41,5,1,1,0,0,5,4,1,741.75,409667.13,0,0,3493.4294 -8385,10328,18855,-9,18856,18854,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.553,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,741.75,409667.13,0,0,3493.4294 -8385,10328,18856,18854,-9,-9,2,1,0,36,1,0,2,0,2,-9,1,1,0,1,2,7.0921173,7.24963,0,2,0,-9,10,0,-1,-72.039879,0,0,1,37,2,3,1,-9,-9,2019,1,1,20,9,39,0,15,1,1,1,0,4.1312003,4.1312003,0,0,0,0,0,0,0,27.5,1,1,0,3.7774627,0,23.123184,2,35.439999,39.41,46.23,55.029999,5,1,1,0,0,5,4,1,741.75,409667.13,0,0,3493.4294 -8386,10329,18857,18858,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,4,0,8.1037903,7.9488554,1,0,-9,6,0,-1,-75.053291,0,0,0,81,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5603371,7.8325348,0,0,52.459999,52.759998,53.68,42.610001,6,1,1,0,0,4,4,1,652.5,857194.19,0,0,3184.6997 -8386,10329,18858,18857,-9,-9,1,1,0,81,1,0,0,0,1,-9,4,3,0,0,4,0,7.8185577,7.7109017,1,0,-9,22,0,1,31.756857,0,0,0,80,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2898579,7.4632425,0,0,53.68,42.610001,52.459999,52.759998,6,1,1,0,0,4,4,1,652.5,857194.19,0,0,3184.6997 -8387,10330,18859,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,7.2401776,7.0300813,3,0,0,0,-9,0,-961.1955,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1932144,0,0,55.93,49.950001,-9,-9,2,1,1,0,0,10,2,1,438,773824.94,0,0,1979.2013 -8388,10331,18860,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,5,7.9989753,8.7854233,7.5264964,3,0,0,0,-9,0,-1046.7344,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,27,15,1,0,-9,0,9.2614584,9.2614584,0,0,0,0,0,0,0,2,1,1,0,0,7.3498931,2.8287046,3,57.060001,57.759998,-9,-9,6,1,1,0,0,4,5,1,443,308508.81,0,0,1997.6674 -8388,10332,18861,-9,18860,-9,2,1,1,30,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1054.1682,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.209999,-9,-9,3,1,1,1,0,4,1,1,225,41973.215,0,0,1075.5601 -8389,10333,18862,-9,-9,-9,1,1,0,21,2,0,0,0,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1007.0532,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.669998,61.060001,-9,-9,6,1,1,0,0,9,1,1,633,-36906.297,0,0,651.18018 -8390,10334,18863,-9,-9,-9,1,1,1,92,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1083.4161,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.880001,44.540001,-9,-9,2,1,1,0,0,1,1,1,280,133086.59,0,0,1545.4606 -8391,10335,18864,18865,-9,-9,2,1,1,65,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,41,0,7,-46.522285,0,0,0,58,2,3,3,3,2,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,47.790001,38.66,5,3,4,0,0,8,3,0,540.5,1530450.3,0,0,4237.4185 -8391,10335,18865,18864,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,1,3,7.7745194,7.9086986,0,1,0,-9,41,0,-7,7.2969108,0,0,0,65,2,3,3,3,2,2019,4,2,11,0,40,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.790001,38.66,52,48,5,3,4,0,0,8,3,0,540.5,1530450.3,0,0,4237.4185 -8392,10336,18866,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-961.078,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.7167659,0,27.5,1,1,0,1.2487428,0,21.063877,3,50,47,-9,-9,5,1,1,0,0,12,1,0,159,38854.688,0,0,262.08511 -8393,10337,18867,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,5.1622577,5.4713845,3,0,0,0,-9,0,-899.70618,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4453967,5.3183613,0,0,39.389999,40.360001,-9,-9,4,1,1,0,0,11,2,0,601,315062.44,0,0,2274.8708 -8394,10338,18868,18869,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,4.9063883,5.3626237,3.798023,1,0,-9,35,0,-11,-9.3932953,0,0,0,72,2,3,3,3,2,2019,4,1,8,0,8,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9456367,4.0606828,0,0,54.200001,57.490002,55.959999,49.93,6,1,1,0,0,9,3,1,463,1621713,0,0,2758.3535 -8394,10338,18869,18868,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.1167479,8.4375706,1,0,-9,35,0,11,52.948074,0,0,0,61,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.054673,8.0583477,0,0,55.959999,49.93,54.200001,57.490002,6,1,1,0,0,9,3,1,463,1621713,0,0,2758.3535 -8394,10339,18870,-9,18868,18869,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.1357908,7.9137893,0,3,0,0,0,-9,0,-980.2724,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,35,35,15,1,1,-9,1,10.904902,10.904902,0,0,0,0,0,0,0,0,1,1,0,4.5701332,0,0,0,32.91,62.27,-9,-9,3,1,1,0,0,9,4,1,162,49469.465,0,0,737.92676 -8395,10340,18871,18872,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,6.2761488,7.5693297,7.2182803,1,0,-9,38,0,-7,-40.880569,0,0,0,72,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5917559,7.243228,6.4017406,3,51.77,58.57,61.27,46.029999,5,1,1,0,0,2,3,1,413,1495900,0,0,3464.269 -8395,10340,18872,18871,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.0584249,6.8647699,1,0,-9,38,0,7,176.78671,0,0,0,65,2,4,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4744787,6.7737684,0,0,61.27,46.029999,51.77,58.57,7,1,1,0,0,2,3,1,413,1495900,0,0,3464.269 -8396,10341,18873,18874,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,58,-9,-2,-5.907352,-9,0,0,83,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,12.638233,6.7304859,0,0,0,120,1,1,0,0,0,122.28436,1,52,45,54,45,6,1,1,0,0,11,2,1,512,533954.94,0,0,1481.5276 -8396,10341,18874,18873,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,6.0786977,6.3122587,1,0,-9,58,-9,2,58.469173,-9,0,0,81,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,10.88337,17.874908,0,0,0,120,1,1,0,5.3861318,6.3135166,126.72117,1,54,45,52,45,6,1,1,0,0,11,2,1,512,533954.94,0,0,1481.5276 -8397,10342,18875,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,2,1,0,0,4,7.7115755,7.5997748,0,3,0,0,0,-9,0,-1047.7712,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,37,30,15,1,0,-9,0,8.5328121,8.5328121,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.38891,3,44.77,48,-9,-9,7,1,1,0,0,11,3,1,1529,102200.13,0,0,226.76021 -8398,10343,18876,18877,-9,-9,1,1,1,65,1,1,1,0,3,-9,4,3,0,0,2,0,3.740859,3.8776164,2,0,-9,9,0,8,-17.661682,0,0,0,57,3,3,1,3,2,2019,3,2,11,2,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.8775561,0,0,42.560001,44.549999,45.279999,37.040001,3,1,1,0,0,11,2,1,848.5,845043.81,0,0,1219.6768 -8398,10343,18877,18876,-9,-9,2,1,0,57,1,1,1,0,3,-9,2,1,0,0,3,7.938345,7.4561739,0,2,0,-9,9,0,-8,25.701889,0,0,0,65,3,2,3,3,3,2019,2,1,18,6,25,24,15,1,1,4,0,8.2648449,8.2648449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.279999,37.040001,42.560001,44.549999,5,1,1,0,0,11,2,1,848.5,845043.81,0,0,1219.6768 -8398,10344,18878,-9,18877,18876,3,1,1,31,2,1,1,0,2,-9,1,1,0,0,4,5.6565223,5.7699623,0,3,0,0,0,-9,0,-948.85431,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,50,50,15,1,0,-9,1,.64977229,.64977229,0,0,0,0,0,0,0,0,1,1,0,4.9178801,0,0,0,43.200001,59.970001,-9,-9,5,1,1,0,0,11,2,1,425,208110.8,0,0,-77.681602 -8399,10345,18879,18880,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,2,0,9.6751413,9.7248583,1,0,-9,35,0,-6,52.982872,0,0,0,68,1,1,3,2,3,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,9.876585,4.2581639,3,14.51,57.369999,28.25,32.049999,3,1,1,0,0,6,5,1,646.5,1253257.8,0,0,9466.3584 -8399,10345,18880,18879,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,1,0,8.15205,7.9357967,1,0,-9,35,0,6,28.067547,0,0,0,62,2,2,3,3,3,2019,4,2,25,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8832169,7.7186451,0,0,28.25,32.049999,14.51,57.369999,4,1,1,0,0,6,5,1,646.5,1253257.8,0,0,9466.3584 -8400,10346,18881,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,1,1,8.0777664,8.0961237,0,3,0,0,0,-9,0,-976.75818,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,7,30,40,15,1,1,-9,0,11.140003,11.140003,0,0,0,0,0,0,0,7,1,1,0,0,0,14.240756,3,28.389999,33.380001,-9,-9,2,1,1,0,0,7,4,1,600,776294.38,0,0,3284.7036 -8401,10347,18882,-9,18883,-9,2,1,1,34,2,0,0,0,1,-9,2,1,0,0,5,8.4491358,8.317173,0,3,0,0,0,-9,0,-1057.9248,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,69,59,15,1,0,-9,1,8.8227873,8.8227873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.959999,57.779999,-9,-9,7,1,1,0,0,4,4,1,92,-74666.078,0,0,2549.5129 -8401,10348,18883,18884,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.4092569,7.380331,0,1,0,-9,6,0,0,-78.640053,0,0,0,55,2,4,1,3,2,2019,1,3,15,4,48,48,15,1,1,1,0,4.677578,4.677578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.779999,43.639999,60.119999,54.799999,6,1,1,0,0,4,4,1,362.5,1087961.5,0,0,3208.5459 -8401,10348,18884,18883,-9,-9,3,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.3379173,8.2480183,5.0892272,1,0,-9,6,0,0,-34.57246,0,0,0,55,2,3,1,-9,2,2019,1,1,8,1,48,45,15,1,0,1,0,11.167715,11.167715,0,0,0,0,0,0,0,0,0,0,0,0,5.2408161,0,0,60.119999,54.799999,39.779999,43.639999,6,1,1,0,0,4,4,1,362.5,1087961.5,0,0,3208.5459 -8401,10349,18885,-9,-9,-9,4,1,1,34,2,0,0,0,2,-9,2,1,0,0,5,7.7348399,7.6800122,0,3,0,0,0,-9,0,-819.41949,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,35,49,15,1,1,-9,0,8.9228239,8.9228239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.529999,51.009998,-9,-9,3,1,1,0,0,4,3,1,413,-169068.5,0,0,695.28143 -8402,10350,18886,-9,-9,-9,1,1,1,23,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1078.9385,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,9,1,0,1790,43815.566,0,0,0 -8403,10351,18887,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,1,3,0,7.4651146,7.3859477,3,0,0,0,-9,0,-1031.3639,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,2.4563434,0,0,0,3.9902611,0,0,1,1,0,1.5451546,7.3542686,0,0,52.59,36.290001,-9,-9,2,1,1,0,0,1,3,1,195,148563.56,0,0,1435.7894 -8404,10352,18888,18889,-9,-9,1,1,1,44,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,10,0,13,0,0,0,0,31,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,39.880001,47.82,5,2,3,1,0,8,1,0,1168,19403.791,0,0,2454.9648 -8404,10352,18889,18888,-9,-9,2,1,0,31,1,0,2,0,3,-9,3,3,0,1,3,0,0,0,2,0,-9,10,0,-13,0,0,0,1,44,2,4,3,3,3,2019,4,1,8,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.97674,1,39.880001,47.82,51,56,5,2,3,1,0,8,1,0,1168,19403.791,0,0,2454.9648 -8404,10352,18890,-9,18889,18888,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.7971,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,8,1,0,1168,19403.791,0,0,2454.9648 -8405,10353,18891,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,4,0,5.3099561,5.4832249,3,0,0,0,-9,0,-922.39667,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0781984,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,2,0,57,513592.41,0,0,450.79456 -8406,10354,18892,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,1,0,6.9653168,7.0200291,3,0,0,0,-9,0,-962.13684,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.2515533,7.0204482,0,0,40.349998,21.360001,-9,-9,5,1,1,0,0,10,2,0,722,354040.94,0,0,1663.6727 -8407,10355,18893,18894,-9,-9,1,1,1,56,1,0,0,0,3,-9,1,1,0,0,4,8.8248215,8.7222996,3.0781572,1,0,-9,32,0,-4,29.000628,0,0,0,60,2,4,1,2,3,2019,1,2,8,0,50,40,15,1,0,1,0,13.26304,13.26304,0,0,0,0,0,0,0,0,0,0,0,0,3.028168,0,0,57.16,56.150002,49.970001,56.66,7,1,1,0,0,2,5,0,788.5,1458686.4,0,0,3181.9131 -8407,10355,18894,18893,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,8.1462317,7.952683,0,1,0,-9,32,0,4,-59.84277,0,0,0,56,3,4,1,3,3,2019,1,1,8,0,37,37,15,1,0,1,0,11.081875,11.081875,0,0,0,0,0,0,0,0,0,0,0,7.1935344,0,0,0,49.970001,56.66,57.16,56.150002,5,1,1,0,0,2,5,0,788.5,1458686.4,0,0,3181.9131 -8408,10356,18895,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,9.0554695,9.3018789,0,3,0,0,0,-9,0,-1048.5596,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,27,12,42,35,15,1,1,-9,0,24.887739,24.887739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.75,64.099998,-9,-9,2,1,1,0,0,7,5,1,620,371883.75,0,0,2925.9258 -8409,10357,18896,18897,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,8.2388277,7.7455282,0,1,0,-9,2,0,7,127.27132,0,1,0,18,2,4,2,2,3,2019,2,2,13,3,45,40,15,1,0,2,0,6.7480888,6.7480888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,59.470001,12.79,67.410004,2,1,1,0,0,4,3,1,601,48274.668,0,0,1490.7344 -8409,10357,18897,18896,-9,-9,2,1,0,18,1,0,0,0,2,-9,7,2,0,0,4,0,0,0,1,0,-9,2,0,-7,-13.819984,1,1,1,25,2,4,1,-9,-9,2019,3,1,23,8,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.79,67.410004,35.75,59.470001,3,1,1,0,1,4,3,1,601,48274.668,0,0,1490.7344 -8410,10358,18898,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,0,3,0,5.2364063,5.4617391,3,0,0,0,-9,0,-945.00928,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5576525,5.636425,0,0,24.379999,53.450001,-9,-9,3,1,1,0,0,10,2,1,3408,216997.88,0,0,798.06995 -8411,10359,18899,-9,18901,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.6952,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,3,0,521,119670.25,0,0,1733.851 -8411,10359,18900,-9,18901,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-934.1687,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,0,521,119670.25,0,0,1733.851 -8411,10359,18901,-9,-9,-9,1,1,0,38,2,0,2,0,1,-9,2,1,0,0,5,8.0134573,7.4012532,0,4,0,0,0,-9,0,-904.80701,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,40,36,15,1,1,-9,0,6.0776196,6.0776196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.75,52.200001,-9,-9,3,2,3,0,0,8,3,0,521,119670.25,0,0,1733.851 -8412,10360,18902,18904,-9,-9,2,1,1,29,1,1,2,0,2,-9,1,1,0,0,2,7.809269,7.7099395,0,2,0,-9,6,0,-1,233.1385,0,1,0,30,2,1,3,-9,-9,2019,2,1,16,5,70,60,15,1,1,3,0,3.2227833,3.2227833,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,41.029999,20.870001,43.849998,3,1,1,0,0,10,2,0,532.5,114064.56,0,0,950.76862 -8412,10360,18903,-9,18904,18902,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.60608,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,10,2,0,532.5,114064.56,0,0,950.76862 -8412,10360,18904,18902,-9,-9,1,1,0,30,1,1,2,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,6,0,1,21.065002,0,0,1,29,2,2,1,2,2,2019,3,2,20,7,0,12,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1739616,3,20.870001,43.849998,38.09,41.029999,2,1,1,0,0,10,2,0,532.5,114064.56,0,0,950.76862 -8412,10360,18905,-9,18904,-9,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.49652,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,2,0,532.5,114064.56,0,0,950.76862 -8413,10361,18906,-9,-9,-9,1,1,1,28,2,0,0,0,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1120.1893,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.48,64.660004,-9,-9,5,1,1,0,0,6,1,1,437,-58520.172,0,0,-491.32391 -8414,10362,18907,18908,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,0,2,8.7048635,8.6472597,0,1,0,-9,2,0,2,-74.613304,0,0,0,46,2,3,1,3,3,2019,1,2,11,0,60,40,15,1,0,1,0,10.50912,10.50912,0,0,0,0,0,0,0,0,0,0,0,2.462122,0,0,0,63.810001,19.540001,62.57,40.110001,6,1,1,0,0,4,4,0,177.5,215239.88,0,0,2064.3672 -8414,10362,18908,18907,-9,-9,2,1,0,46,1,0,0,0,2,-9,1,1,0,0,3,3.702606,3.8569977,0,1,0,-9,2,0,-2,-90.770515,0,0,0,48,2,2,1,-9,-9,2019,1,1,9,1,60,66,15,1,0,1,0,.10186361,.10186361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.57,40.110001,63.810001,19.540001,6,1,1,0,0,4,4,0,177.5,215239.88,0,0,2064.3672 -8415,10363,18909,-9,-9,-9,1,1,0,47,3,0,1,0,3,-9,2,1,0,0,2,7.7812448,7.7787318,0,4,0,0,0,-9,0,-1039.9214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,18,18,15,1,0,-9,0,14.419961,14.419961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.599998,35.900002,-9,-9,6,2,3,0,0,6,3,1,1368,-91565.375,0,0,1298.5381 -8415,10363,18910,-9,18909,-9,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1009.7417,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,6,3,1,1368,-91565.375,0,0,1298.5381 -8415,10364,18911,-9,18909,-9,2,1,0,21,2,0,1,1,1,-9,7,2,0,0,3,6.5235763,6.4450254,0,3,0,0,0,-9,0,-1006.6299,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.73,43.040001,-9,-9,5,2,3,0,0,6,2,1,103,111504.67,0,0,201.96718 -8415,10365,18912,-9,18909,-9,3,1,1,20,2,0,1,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-930.30402,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,1,1,176,0,0,0,0 -8416,10366,18913,18914,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,8.0130739,7.946784,0,1,0,-9,38,0,5,16.119852,0,0,0,58,2,3,1,3,2,2019,1,2,12,1,40,62,15,1,0,1,0,8.2086468,8.2086468,0,0,0,0,0,0,0,0,0,0,0,5.8782005,0,0,0,52.400002,52.91,42.610001,49.310001,6,1,1,0,0,12,4,1,792,489137.13,0,0,2522.0747 -8416,10366,18914,18913,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.088603,8.0424423,0,1,0,-9,38,0,-5,33.774498,0,0,0,63,2,3,1,-9,-9,2019,1,1,12,0,38,38,15,1,0,1,0,9.0752001,9.0752001,0,0,0,0,0,0,0,0,0,0,0,2.6186891,0,0,0,42.610001,49.310001,52.400002,52.91,3,1,1,0,0,12,4,1,792,489137.13,0,0,2522.0747 -8417,10367,18915,-9,-9,-9,1,1,1,77,2,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-961.93561,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.57,54.75,-9,-9,6,1,1,0,1,13,1,1,879,16276.493,0,0,660.91571 -8418,10368,18916,18917,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.7687626,7.9465427,0,1,0,-9,12,0,2,139.55112,0,0,0,47,2,5,1,-9,-9,2019,1,2,10,1,30,30,15,1,0,1,0,9.6039925,9.6039925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,57.630001,56.139999,6,1,1,0,0,11,5,1,517,506850.38,0,0,5406.8486 -8418,10368,18917,18916,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,0,5,9.4535933,9.6811485,0,1,0,-9,12,0,-2,98.700027,0,0,0,49,2,4,1,2,3,2019,1,1,7,0,50,60,15,1,0,1,0,23.48764,23.48764,0,0,0,0,0,0,0,0,0,0,0,7.3500423,0,0,0,57.630001,56.139999,50,54,6,1,1,0,0,11,5,1,517,506850.38,0,0,5406.8486 -8419,10369,18918,18919,-9,-9,2,1,0,22,1,0,0,1,2,-9,7,2,0,0,3,7.2548971,7.6811519,0,1,0,-9,1,-9,-1,-25.111055,-9,1,1,23,2,3,1,-9,-9,2019,3,1,14,2,18,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.16,56.540001,17.450001,66.57,6,1,1,0,0,4,3,0,3111,166764.8,0,0,1122.0031 -8419,10369,18919,18918,-9,-9,1,1,1,23,1,0,0,0,2,-9,2,1,0,0,3,7.5170922,7.1562848,0,1,0,1,1,-9,1,115.08709,0,1,0,22,2,3,2,-9,-9,2019,2,2,29,12,30,35,15,1,1,2,0,6.2166381,6.2166381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.450001,66.57,33.16,56.540001,2,1,1,0,1,4,3,0,3111,166764.8,0,0,1122.0031 -8420,10370,18920,18921,-9,-9,1,1,1,59,1,0,0,0,3,-9,8,3,1,1,1,0,5.8774419,6.0343518,1,0,-9,35,0,7,-27.872047,0,0,0,52,2,3,1,3,3,2019,3,2,21,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4326391,0,0,22.549999,36.189999,42.869999,42.509998,3,2,3,0,0,6,3,1,354,372548.28,0,0,2821.7397 -8420,10370,18921,18920,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.0186586,7.8540645,0,1,0,-9,9,0,-7,-174.21779,0,0,0,59,3,1,3,3,3,2019,2,1,12,1,38,38,15,1,0,3,0,7.639966,7.639966,0,0,0,0,0,0,0,27.5,1,1,0,6.9722281,0,26.738998,2,42.869999,42.509998,22.549999,36.189999,4,2,3,0,0,6,3,1,354,372548.28,0,0,2821.7397 -8420,10371,18922,-9,18921,18920,3,1,0,34,2,0,0,0,2,-9,2,1,0,0,4,7.9451981,8.3270254,0,3,0,0,0,-9,0,-988.89081,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,47,41,15,1,0,-9,1,7.4121404,7.4121404,0,0,0,0,0,0,0,7,1,1,0,.24747032,0,11.811563,3,48.02,49.68,-9,-9,4,2,3,0,0,6,4,1,474,159345.81,0,0,2349.7026 -8420,10372,18923,-9,18921,18920,4,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,8.161088,7.9450498,0,3,0,0,0,-9,0,-1101.3829,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,3,38,20,15,1,0,-9,1,7.491724,7.491724,0,0,0,0,0,0,0,7,1,1,0,.034063272,0,3.7560904,3,46.630001,59.720001,-9,-9,6,2,3,0,0,6,4,1,532,-207158.84,0,0,669.87451 -8421,10373,18924,18925,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.9843559,8.8228559,0,2,0,-9,10,0,7,123.50087,0,0,0,45,3,4,1,-9,-9,2019,1,1,8,0,37,40,15,1,0,1,0,19.278336,19.278336,0,0,0,0,0,0,0,0,1,1,0,2.2401755,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,5,1,703.33331,368522.88,0,0,3621.9844 -8421,10373,18925,18924,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,0,4,7.2993054,7.2607765,0,2,0,-9,20,0,-7,114.64679,0,0,0,52,2,4,1,3,3,2019,1,2,9,0,19,19,15,1,0,1,0,9.6961784,9.6961784,0,0,0,0,0,0,0,0,1,1,0,2.4200239,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,5,1,703.33331,368522.88,0,0,3621.9844 -8421,10373,18926,-9,18925,18924,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.7026,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,703.33331,368522.88,0,0,3621.9844 -8422,10374,18927,18928,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,6.9267445,6.798368,1,0,-9,45,0,-2,-10.084078,0,0,0,72,2,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9961667,7.2693968,0,0,64.230003,39.150002,60.869999,42.099998,5,1,1,0,0,10,3,1,1480,1793005.5,0,0,2764.1143 -8422,10374,18928,18927,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.7802896,7.7180014,1,0,-9,45,0,2,-60.612099,0,0,0,70,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76664597,7.3438287,0,3,60.869999,42.099998,64.230003,39.150002,6,1,1,0,0,10,3,1,1480,1793005.5,0,0,2764.1143 -8423,10375,18929,-9,18931,18930,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.9521,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,2,0,937.75,411769.38,0,0,1336.4226 -8423,10375,18930,18931,-9,-9,2,1,1,48,1,1,2,0,2,-9,1,1,0,0,3,5.9516411,6.5501742,0,2,0,-9,10,0,13,-6.269701,0,0,0,35,2,3,1,-9,-9,2019,1,1,10,2,50,50,15,1,0,1,0,1.5634887,1.5634887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.450001,43.75,37.900002,50.299999,6,1,1,0,0,5,2,0,937.75,411769.38,0,0,1336.4226 -8423,10375,18931,18930,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,0,3,7.3613415,7.2677717,0,2,0,-9,10,0,-13,29.627422,0,0,1,48,2,3,1,2,-9,2019,1,2,12,0,20,19,15,1,0,1,0,7.0178313,7.0178313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.900002,50.299999,60.450001,43.75,4,1,1,0,1,5,2,0,937.75,411769.38,0,0,1336.4226 -8423,10375,18932,-9,18931,18930,5,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.12335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,2,0,937.75,411769.38,0,0,1336.4226 -8424,10376,18933,18934,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.8551254,8.5447788,0,1,0,-9,8,0,12,82.778755,0,0,0,49,2,3,1,2,2,2019,1,1,6,0,32,45,15,1,0,1,0,23.780903,23.780903,0,0,0,0,0,0,0,0,0,0,0,5.3036728,0,0,0,55.790001,52.619999,57.939999,27.530001,6,1,1,0,0,4,5,1,492.5,258650.77,0,0,5005.7754 -8424,10376,18934,18933,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,9.06003,8.7452354,0,1,0,-9,8,0,-12,81.428253,0,0,0,61,2,4,1,2,2,2019,1,2,6,0,38,40,15,1,0,1,0,24.992821,24.992821,0,0,0,0,0,0,0,0,0,0,0,5.132463,0,0,0,57.939999,27.530001,55.790001,52.619999,5,1,1,0,0,4,5,1,492.5,258650.77,0,0,5005.7754 -8425,10377,18935,18936,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.8730106,7.8856206,0,1,0,-9,15,0,-7,-33.987064,0,0,0,59,2,4,1,2,2,2019,1,1,10,1,40,42,15,1,0,1,0,6.1078596,6.1078596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,51.470001,53.169998,5,1,1,0,0,4,4,0,421,155036.81,0,0,2587.3892 -8425,10377,18936,18935,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,7.6235127,7.9369645,0,1,0,-9,14,0,7,-57.041233,0,0,0,52,2,4,1,3,2,2019,1,2,13,2,40,38,15,1,0,1,0,6.8192849,6.8192849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.470001,53.169998,45.82,54.57,6,1,1,0,0,4,4,0,421,155036.81,0,0,2587.3892 -8425,10378,18937,-9,18935,18936,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.153162,8.1859751,0,3,0,-9,0,0,0,-995.77875,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,45,40,15,1,0,-9,1,8.8957224,8.8957224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,7,1,1,0,0,4,4,0,227,-23231.938,0,0,1040.1851 -8426,10379,18938,18939,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,7.7143078,7.8904719,0,1,0,-9,39,0,-6,-103.29604,0,0,0,63,2,4,3,2,2,2019,2,2,11,0,29,29,15,1,0,4,0,7.99266,7.99266,0,0,0,0,0,0,0,0,0,0,0,4.9035215,0,0,0,49.040001,55.860001,52.82,53.970001,6,1,1,0,0,6,4,1,552.5,607226.38,0,0,3022.3647 -8426,10379,18939,18938,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,8.36234,8.175065,1,0,-9,39,0,6,82.312088,0,0,0,57,3,3,1,3,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.2288489,8.2199297,11.520617,3,52.82,53.970001,49.040001,55.860001,6,1,1,0,0,6,4,1,552.5,607226.38,0,0,3022.3647 -8427,10380,18940,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,7.3843803,7.4033947,0,3,0,0,0,-9,0,-991.88629,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,12,23,37,15,1,1,-9,0,10.263844,10.263844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.629999,43.619999,-9,-9,3,1,1,0,1,11,3,1,701,-17714.063,0,0,5815.3042 -8428,10381,18941,18943,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,0,4,9.7638988,9.6524334,0,2,0,-9,13,0,3,-44.443211,-9,0,0,36,1,4,1,2,1,2019,1,1,11,1,47,0,15,1,0,1,0,36.044533,36.044533,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.632662,3,57.080002,36.150002,49.52,55.68,5,2,3,0,0,6,5,1,427,328771.19,0,0,6871.0615 -8428,10381,18942,-9,18943,18941,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.7697,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,6,5,1,427,328771.19,0,0,6871.0615 -8428,10381,18943,18941,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,1,4,8.4076729,8.5347118,0,2,0,-9,13,0,-3,53.843941,-9,0,1,39,1,4,1,2,1,2019,1,2,11,0,28,0,15,1,0,1,0,20.24766,20.24766,0,0,0,0,0,0,0,98,1,1,0,0,0,118.29357,3,49.52,55.68,57.080002,36.150002,5,2,3,0,0,6,5,1,427,328771.19,0,0,6871.0615 -8428,10381,18944,-9,18943,18941,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.60748,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,6,5,1,427,328771.19,0,0,6871.0615 -8429,10382,18945,18946,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,5,0,6.1540952,6.230329,1,0,-9,37,0,-7,49.703838,0,0,0,77,3,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4404202,0,0,57.060001,57.759998,61.009998,53.18,6,1,1,0,0,6,3,1,437,647710.69,0,0,1564.8223 -8429,10382,18946,18945,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,5,0,7.6713033,7.7565031,1,0,-9,37,0,7,-44.184135,0,0,0,70,3,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2433281,7.244143,0,0,61.009998,53.18,57.060001,57.759998,6,1,1,0,0,6,3,1,437,647710.69,0,0,1564.8223 -8430,10383,18947,18948,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,0,6.0644183,6.6390862,1,0,-9,43,0,1,3.5862877,0,0,0,61,3,3,1,3,3,2019,1,1,8,0,45,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.5895767,1.1495488,3,57.16,56.150002,55.360001,51.57,5,1,1,0,0,9,3,1,325,442135.56,0,0,1877.8521 -8430,10383,18948,18947,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,8.0035849,7.8454213,0,1,0,-9,43,0,-1,-61.204483,0,0,0,62,2,4,1,2,2,2019,1,2,9,0,37,36,15,1,0,1,0,7.6501789,7.6501789,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.360001,51.57,57.16,56.150002,4,1,1,0,0,9,3,1,325,442135.56,0,0,1877.8521 -8431,10384,18949,-9,18950,-9,3,1,0,17,2,1,2,0,2,1,3,3,0,1,1,0,0,0,4,0,0,0,-9,0,-1003.033,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.76,25.08,-9,-9,4,1,1,1,0,2,1,0,1130.5,-51810.188,0,0,1466.9827 -8431,10384,18950,-9,-9,-9,1,1,0,46,2,1,2,0,2,-9,3,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1125.8705,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.82375,3,54.959999,53.169998,-9,-9,4,1,1,1,0,2,1,0,1130.5,-51810.188,0,0,1466.9827 -8432,10385,18951,-9,18953,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,0,4,5.0722737,5.2821035,0,2,0,0,0,-9,0,-1015.2056,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,2,1,698,1345497.1,0,0,1941.976 -8432,10385,18952,18953,-9,-9,4,1,1,60,1,0,2,0,2,-9,1,1,0,0,3,7.5564561,7.2565112,0,2,0,-9,2,0,7,172.48955,0,0,0,53,2,3,1,-9,-9,2019,1,1,5,0,30,0,15,1,0,1,0,5.2616553,5.2616553,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.941362,3,55.529999,51.549999,62.66,52.400002,6,1,1,0,0,11,2,1,698,1345497.1,0,0,1941.976 -8432,10385,18953,18952,-9,-9,1,1,0,53,1,0,2,0,2,-9,1,1,0,0,3,7.1755962,7.3773022,5.6862459,2,0,-9,2,0,-7,130.26401,0,0,0,60,2,3,1,1,-9,2019,1,4,6,0,36,34,15,1,0,1,0,3.6068392,3.6068392,0,0,0,0,0,0,0,0,1,1,0,6.5197635,0,0,0,62.66,52.400002,55.529999,51.549999,6,1,1,0,0,11,2,1,698,1345497.1,0,0,1941.976 -8432,10385,18954,-9,18953,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1151.0293,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,11,2,1,698,1345497.1,0,0,1941.976 -8433,10386,18955,18956,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,1,0,6.2156239,6.2196116,1,0,-9,8,0,6,-122.48255,0,0,0,67,1,3,3,2,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,38.854538,0,0,0,0,0,1,1,0,7.0149651,6.2792296,0,0,45.41,10.82,51.939999,55.880001,4,1,1,0,0,1,2,1,283.5,310180.94,0,0,3186.2817 -8433,10386,18956,18955,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-6,-110.55591,0,0,0,73,2,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.9407692,0,37.118122,1,51.939999,55.880001,45.41,10.82,6,1,1,0,0,1,2,1,283.5,310180.94,0,0,3186.2817 -8434,10387,18957,-9,-9,-9,1,1,0,46,2,0,0,0,1,1,2,1,0,1,1,7.7247128,7.66293,0,3,0,0,0,-9,0,-1003.2377,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,12,28,0,15,1,1,-9,0,8.8597584,8.8597584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.799999,21.860001,-9,-9,1,1,1,0,0,12,3,0,210,-48986.285,0,0,1216.0922 -8435,10388,18958,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,1,1,0,0,3,6.5137272,6.3702726,0,3,0,0,0,-9,0,-993.06311,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,50,60,15,1,0,-9,0,1.7433978,1.7433978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,2,3,0,0,8,2,0,911,143614.73,0,0,431.58575 -8436,10389,18959,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,6.9207726,6.7172346,3,0,0,0,-9,0,-934.06903,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4003654,7.2121215,2.9312811,3,51.650002,39.740002,-9,-9,3,1,1,0,1,8,2,1,101,246423.33,0,0,3027.0906 -8437,10390,18960,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,2,0,6.5256066,6.5940766,3,0,0,0,-9,0,-978.24402,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0643663,6.0010762,0,0,58.450001,19.24,-9,-9,6,1,1,0,0,5,2,1,1161,479033.66,0,0,581.75238 -8438,10391,18961,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-907.151,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0109739,0,0,0,56.75,36.330002,-9,-9,6,1,1,0,0,5,1,1,2910,341958.94,0,0,512.48816 -8439,10392,18962,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,-9,0,0,0,-949.32526,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.080002,57.810001,-9,-9,3,1,1,1,0,9,1,0,178,-114931.38,0,0,0 -8440,10393,18963,-9,18966,18965,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-864.69879,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,3,1,581.5,266431,0,0,2388.0093 -8440,10393,18964,-9,18966,18965,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.16608,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,3,1,581.5,266431,0,0,2388.0093 -8440,10393,18965,18966,-9,-9,1,1,1,31,1,2,2,0,1,-9,2,1,0,0,3,8.5149279,8.3130178,0,2,0,-9,6,0,0,2.5844152,0,0,0,31,1,3,1,-9,-9,2019,1,2,6,0,39,38,15,1,0,1,0,11.283767,11.283767,0,0,0,0,0,0,0,0,1,1,0,.25577369,0,0,0,33.77,58.849998,51.169998,49.389999,6,1,1,0,0,5,3,1,581.5,266431,0,0,2388.0093 -8440,10393,18966,18965,-9,-9,2,1,0,31,1,2,2,0,1,-9,5,1,0,0,3,7.1125746,6.8606906,0,2,0,-9,6,0,0,97.056511,0,0,1,31,1,3,1,-9,-9,2019,1,1,16,5,23,29,15,1,1,1,0,4.279583,4.279583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.169998,49.389999,33.77,58.849998,5,1,1,0,0,5,3,1,581.5,266431,0,0,2388.0093 -8441,10394,18967,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,2,0,6.3806839,6.8380299,3,0,0,0,-9,0,-993.96967,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.6589429,6.4343085,0,0,51.369999,46.970001,-9,-9,6,1,1,0,0,9,2,1,72,149650.42,0,0,952.16962 -8442,10395,18968,18970,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,8.5994921,8.6069689,0,2,0,-9,27,0,7,52.523891,0,0,0,44,2,3,1,3,3,2019,1,1,10,0,37,37,15,1,0,1,0,18.07667,18.07667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,47.630001,62.27,48.470001,3,2,3,0,1,6,4,1,1471,2166187.8,0,0,2682.4932 -8442,10395,18969,-9,18970,18968,4,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.7657,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,4,1,1471,2166187.8,0,0,2682.4932 -8442,10395,18970,18968,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,27,0,-7,-7.5513177,0,0,1,51,1,3,1,-9,-9,2019,1,2,6,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,48.470001,54.970001,47.630001,5,2,3,0,0,6,4,1,1471,2166187.8,0,0,2682.4932 -8443,10396,18971,-9,18974,18972,6,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-863.52393,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,2,0,297.5,359863.5,0,0,2674.0046 -8443,10396,18972,18974,18975,-9,1,1,1,43,1,0,3,0,3,-9,2,1,0,0,4,7.4416184,7.2383361,0,2,0,-9,8,0,11,111.32912,0,0,0,32,2,4,3,3,3,2019,2,2,9,1,24,24,15,1,0,3,0,7.0828748,7.0828748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48,57,6,2,3,0,0,8,2,0,297.5,359863.5,0,0,2674.0046 -8443,10396,18973,-9,18974,18972,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.23248,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,297.5,359863.5,0,0,2674.0046 -8443,10396,18974,18972,-9,-9,2,1,0,32,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-11,110.47884,0,0,1,43,3,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,51,56,5,2,3,0,0,8,2,0,297.5,359863.5,0,0,2674.0046 -8443,10397,18975,-9,-9,-9,3,1,0,76,3,0,3,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1091.4242,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,2,3,0,0,8,1,0,604,0,0,0,222.1199 -8444,10398,18976,18977,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,0,3,8.0098658,8.0480614,0,1,0,-9,8,0,3,86.18811,0,0,0,30,2,3,1,2,3,2019,1,2,14,2,66,59,15,1,0,1,0,5.2788944,5.2788944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,63.360001,31.84,54.150002,4,1,1,0,1,11,4,0,358.5,27694.965,0,0,2413.2998 -8444,10398,18977,18976,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,7.913342,7.8893261,0,1,0,-9,8,0,-3,4.8509941,0,0,1,33,2,3,1,-9,-9,2019,1,1,25,11,50,50,15,1,1,1,0,5.9115486,5.9115486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.84,54.150002,29.15,63.360001,3,1,1,0,1,11,4,0,358.5,27694.965,0,0,2413.2998 -8445,10399,18978,18979,-9,-9,1,1,1,56,1,0,1,0,2,-9,2,1,0,0,4,8.7044783,8.5225573,0,2,0,-9,9,0,17,-15.561138,0,0,0,39,1,4,1,2,3,2019,1,2,11,0,48,50,15,1,0,1,0,17.457434,17.457434,0,0,0,0,0,0,0,0,1,1,0,6.3137274,0,0,0,41.060001,62.040001,38.279999,63.48,5,1,1,0,0,10,5,1,386.66666,354951.34,0,0,4818.3862 -8445,10399,18979,18978,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,4,9.083581,9.4587469,0,2,0,-9,9,0,-17,-94.312347,0,0,1,56,2,4,1,2,1,2019,1,1,12,1,35,36,15,1,0,1,0,28.550932,28.550932,0,0,0,0,0,0,0,0,1,1,0,4.5231056,0,0,0,38.279999,63.48,41.060001,62.040001,6,1,1,0,0,10,5,1,386.66666,354951.34,0,0,4818.3862 -8445,10399,18980,-9,18979,18978,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.67419,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,386.66666,354951.34,0,0,4818.3862 -8446,10400,18981,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,5,8.6544828,8.6664476,0,3,0,0,0,-9,0,-959.005,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,6,40,42,15,1,1,-9,0,17.841036,17.841036,0,0,0,0,0,0,0,2,1,1,0,.49457866,0,0,3,48.66,54.860001,-9,-9,6,4,2,0,0,6,5,1,526,263846.81,0,0,1602.1542 -8447,10401,18982,-9,-9,-9,1,1,0,45,2,0,2,0,2,-9,2,1,0,0,4,8.9067774,8.9781189,0,4,0,0,0,-9,0,-938.81598,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,37,41,15,1,0,-9,0,22.525143,22.525143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,4,1,166,408417.5,0,0,2260.2837 -8448,10402,18983,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,7.9767151,7.6357751,0,3,0,0,0,-9,0,-972.9856,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,30,30,15,1,0,-9,0,10.42184,10.42184,0,0,0,0,0,0,0,0,1,1,0,.44746822,0,0,0,47.779999,35.950001,-9,-9,5,1,1,0,0,9,3,0,506,2040488.4,0,0,1929.8953 -8449,10403,18984,18985,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,2,0,8.1439819,7.7821622,1,0,-9,8,0,2,-31.467234,0,0,0,65,1,5,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.318862,7.9238968,0,0,43.099998,44.279999,51.540001,51.150002,6,1,1,0,0,4,4,1,688.5,320297.69,0,0,5366.9346 -8449,10403,18985,18984,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,5,0,8.0335608,8.170639,1,0,-9,8,0,-2,-77.490128,0,0,0,67,2,2,3,3,2,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7621994,8.0984545,0,0,51.540001,51.150002,43.099998,44.279999,6,1,1,0,0,4,4,1,688.5,320297.69,0,0,5366.9346 -8450,10404,18986,18987,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,1,0,7.783155,7.4185095,1,0,-9,59,0,3,-90.929398,0,0,0,76,3,2,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5110712,0,0,61.66,12.96,65.239998,25.530001,7,1,1,0,0,9,2,1,669.5,128311.91,0,0,2332.4788 -8450,10404,18987,18986,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,5.0565233,4.9740033,1,0,-9,59,0,-3,34.783421,0,0,0,79,2,1,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8943067,0,0,65.239998,25.530001,61.66,12.96,7,1,1,0,0,9,2,1,669.5,128311.91,0,0,2332.4788 -8451,10405,18988,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,0,5,0,7.1012368,7.7933993,3,0,0,0,-9,0,-1108.559,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5143278,7.0914307,2.944629,3,59.43,58.049999,-9,-9,7,1,1,0,0,11,3,1,1829,738358.5,0,0,1633.0227 -8452,10406,18989,18990,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,5,7.2047334,7.6072531,0,1,0,-9,10,0,3,14.337893,0,0,0,52,2,4,1,2,3,2019,1,2,9,0,37,36,15,1,0,1,0,5.5095811,5.5095811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.23,53.849998,42.84,55.93,7,1,1,0,0,12,4,0,517.5,874187.25,0,0,1785.0153 -8452,10406,18990,18989,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.0327034,7.8209147,0,1,0,-9,10,0,-3,223.27943,0,0,0,55,3,5,1,-9,-9,2019,1,1,12,0,34,34,15,1,0,1,0,7.8155375,7.8155375,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.84,55.93,42.23,53.849998,5,1,1,0,0,12,4,0,517.5,874187.25,0,0,1785.0153 -8453,10407,18991,-9,18994,18992,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-932.38123,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,4,5,1,382,1849478,0,0,5519.0947 -8453,10407,18992,18994,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,0,4,8.5878382,8.5190449,6.4752908,2,0,-9,11,0,3,.46213895,0,0,0,49,1,5,1,-9,-9,2019,1,1,6,1,14,40,15,1,0,1,0,38.143169,38.143169,0,0,0,0,0,0,0,0,1,1,0,6.578651,0,0,0,49.939999,58.009998,57.060001,57.759998,6,1,1,0,0,4,5,1,382,1849478,0,0,5519.0947 -8453,10407,18993,-9,18994,18992,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.03912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,4,5,1,382,1849478,0,0,5519.0947 -8453,10407,18994,18992,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,0,5,8.8729324,8.8926458,7.3417845,2,0,-9,29,0,-3,-72.77166,0,0,0,52,1,4,1,2,2,2019,1,2,8,0,34,30,15,1,0,1,0,24.78256,24.78256,0,0,0,0,0,0,0,0,1,1,0,7.5875854,0,0,0,57.060001,57.759998,49.939999,58.009998,6,1,1,0,0,4,5,1,382,1849478,0,0,5519.0947 -8454,10408,18995,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,8.5857315,8.484869,0,3,0,0,0,-9,0,-1045.7157,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,42,38,15,1,0,-9,0,14.590725,14.590725,0,0,0,0,0,0,0,0,0,0,0,2.842097,0,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,9,5,1,124,1232193.1,0,0,1227.47 -8455,10409,18996,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,0,3,8.7587233,9.0923243,0,3,0,0,0,-9,0,-947.37964,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,60,50,15,1,0,-9,0,14.06785,14.06785,0,0,0,0,0,0,0,2,0,0,0,.85597044,0,.92852646,3,43.84,58.369999,-9,-9,6,1,1,0,0,9,5,0,553,240929.2,0,0,1534.4371 -8456,10410,18997,-9,18998,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.35797,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,0,127,725690.75,0,0,1258.0383 -8456,10410,18998,-9,-9,-9,1,1,0,55,3,0,1,0,1,-9,2,1,0,0,2,6.8984203,7.5098562,5.5362992,4,0,0,0,-9,0,-904.0481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,29,0,15,1,0,-9,0,3.6489687,3.6489687,0,0,0,0,0,0,0,0,1,1,0,6.3858795,0,0,0,38.099998,35.5,-9,-9,2,1,1,0,1,7,2,0,127,725690.75,0,0,1258.0383 -8457,10411,18999,19001,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,1,7.9771824,8.4485769,0,2,0,-9,4,0,7,8.3388681,0,0,0,27,2,4,2,2,2,2019,2,2,22,10,41,37,15,1,1,2,0,12.983037,12.983037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.599998,42.25,32.110001,60.740002,3,1,1,0,0,10,3,1,206.33333,-7416.8276,0,0,1441.765 -8457,10411,19000,-9,19001,18999,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.69019,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,1,206.33333,-7416.8276,0,0,1441.765 -8457,10411,19001,18999,-9,-9,2,1,0,27,1,1,1,0,2,-9,7,2,0,0,4,0,0,0,2,0,-9,4,0,-7,32.724766,1,1,1,34,2,1,1,-9,-9,2019,3,1,18,6,0,40,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.110001,60.740002,35.599998,42.25,3,1,1,0,0,10,3,1,206.33333,-7416.8276,0,0,1441.765 -8458,10412,19002,-9,19003,19004,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.17963,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,2,4,0,469.66666,125154.4,0,0,2576.0713 -8458,10412,19003,19004,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,3,7.6476059,8.2608156,0,2,0,-9,7,0,1,-179.22417,0,0,1,33,1,4,1,2,3,2019,1,3,11,3,22,21,15,1,0,1,0,12.291433,12.291433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.419998,58.049999,51.240002,58.84,6,1,1,0,0,2,4,0,469.66666,125154.4,0,0,2576.0713 -8458,10412,19004,19003,-9,-9,3,1,1,33,1,0,2,0,1,-9,2,1,0,0,4,8.2732363,8.641386,0,2,0,-9,7,0,-1,104.59518,0,0,0,34,1,3,1,-9,-9,2019,1,1,11,2,37,37,15,1,0,1,0,12.634412,12.634412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,32.419998,58.049999,7,4,2,0,0,2,4,0,469.66666,125154.4,0,0,2576.0713 -8459,10413,19005,-9,-9,-9,1,1,1,26,2,0,0,0,1,0,7,2,0,0,3,3.9889627,3.868155,0,3,0,0,0,-9,0,-984.64221,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9120069,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,2,2,0,2418,34416.066,0,0,1313.9395 -8460,10414,19006,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-920.79828,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,5.8201332,0,0,0,0,34.602562,0,0,0,0,0,0,0,0,54.669998,28.540001,-9,-9,7,1,1,0,0,12,1,0,1869,-4085.0115,0,0,0 -8461,10415,19007,-9,19010,19008,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.2145,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,3,1,769.75,5423.0801,0,0,1931.2328 -8461,10415,19008,19010,-9,-9,1,1,1,32,1,0,2,0,2,-9,2,1,0,0,3,7.8536472,7.7559266,0,2,0,-9,13,0,0,-44.851254,0,0,0,32,2,2,1,3,2,2019,1,2,10,0,45,70,15,1,0,1,0,6.9431567,6.9431567,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.970001,51.900002,34.009998,55.080002,5,2,3,0,0,2,3,1,769.75,5423.0801,0,0,1931.2328 -8461,10415,19009,-9,19010,19008,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.25317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,1,769.75,5423.0801,0,0,1931.2328 -8461,10415,19010,19008,-9,-9,2,1,0,32,1,0,2,0,2,-9,2,1,0,0,2,6.4703093,6.5953965,0,2,0,-9,13,0,0,-11.180727,0,0,1,32,2,3,1,3,2,2019,1,1,12,1,14,14,15,1,0,1,0,5.5629358,5.5629358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.009998,55.080002,45.970001,51.900002,5,2,3,0,0,2,3,1,769.75,5423.0801,0,0,1931.2328 -8462,10416,19011,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,4,0,4.8343921,4.7801552,3,0,0,0,-9,0,-1026.8995,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9105182,4.7604322,0,0,50.650002,60.470001,-9,-9,5,1,1,0,0,7,2,0,232,331676.09,0,0,1324.8369 -8463,10417,19012,19013,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,5.1866374,5.5080867,1,0,-9,49,0,3,89.052643,0,0,0,66,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9240251,5.8493228,0,0,50.799999,46.68,48.540001,46.619999,7,1,1,0,0,4,2,1,780,289596.03,0,0,1561.6782 -8463,10417,19013,19012,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,4.6870313,4.7043753,1,0,-9,49,0,-3,6.0409479,0,0,0,69,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,3.7878392,0,0,0,0,0,1,1,0,0,5.2153149,0,0,48.540001,46.619999,50.799999,46.68,5,1,1,0,0,4,2,1,780,289596.03,0,0,1561.6782 -8464,10418,19014,19015,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,8.3828287,8.5786791,0,1,0,-9,31,0,-1,100.23333,0,0,0,56,2,3,1,2,-9,2019,1,2,11,1,42,48,15,1,0,1,0,13.457337,13.457337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.919998,46.27,54.619999,48,4,1,1,0,0,9,5,1,690,1008488.5,0,0,3791.4053 -8464,10418,19015,19014,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.2932625,8.3467999,0,1,0,-9,31,0,1,-104.9908,0,0,0,55,2,2,1,3,-9,2019,1,1,6,0,36,41,15,1,0,1,0,13.53199,13.53199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.619999,48,46.919998,46.27,6,1,1,0,0,9,5,1,690,1008488.5,0,0,3791.4053 -8464,10419,19016,-9,19015,19014,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,3,8.4006548,8.1635351,0,3,0,0,0,-9,0,-954.56268,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,42,15,1,0,-9,1,8.4309912,8.4309912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.509998,56.740002,-9,-9,6,1,1,0,0,9,4,1,166,71438.336,0,0,2061.4282 -8465,10420,19017,19018,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,5,7.9464641,8.3457212,0,2,0,-9,28,0,-5,-74.479225,0,0,0,52,2,4,1,2,2,2019,1,1,8,0,37,35,15,1,0,1,0,10.852628,10.852628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,50.110001,54.040001,6,1,1,0,0,5,4,1,2180.5,522808.16,0,0,1405.8143 -8465,10420,19018,19017,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.2725372,7.7936125,0,2,0,-9,28,0,5,49.821396,0,0,0,47,2,5,1,2,2,2019,1,2,11,0,35,19,15,1,0,1,0,8.0597219,8.0597219,0,0,0,0,0,0,0,2,1,1,0,0,0,2.1472895,3,50.110001,54.040001,54.099998,59.110001,6,1,1,0,0,5,4,1,2180.5,522808.16,0,0,1405.8143 -8466,10421,19019,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,5.2833743,4.9480615,3,0,0,0,-9,0,-938.82391,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9991083,0,0,51,46,-9,-9,5,1,1,0,1,5,2,0,85,61276.645,0,0,2215.813 -8467,10422,19020,19021,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,4,0,8.227622,7.9400358,1,0,-9,8,0,-1,-87.178482,0,0,0,78,1,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4501662,8.300478,0,0,58.150002,52.91,58.900002,37.869999,6,1,1,0,0,9,4,1,674,1457737,0,0,4481.5098 -8467,10422,19021,19020,-9,-9,2,1,0,78,1,0,0,0,1,-9,4,3,0,0,3,0,7.6635542,7.7547021,1,0,-9,8,0,1,50.241295,0,0,0,77,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7197013,7.261116,0,3,58.900002,37.869999,58.150002,52.91,6,1,1,0,0,9,4,1,674,1457737,0,0,4481.5098 -8468,10423,19022,19023,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.5913868,7.5675678,0,1,0,-9,33,0,-1,-97.925171,0,0,0,59,2,4,1,2,2,2019,1,2,11,0,24,22,15,1,0,1,0,11.312773,11.312773,0,0,0,0,0,0,0,0,0,0,0,4.3924646,0,0,0,54.740002,57.220001,57.16,56.150002,6,1,1,0,0,10,5,1,705.5,115752.02,0,0,4119.9653 -8468,10423,19023,19022,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.464201,8.981348,8.1844931,1,0,-9,6,0,1,57.845905,0,0,0,58,2,4,1,2,2,2019,1,1,6,0,18,18,15,1,0,1,0,23.485607,23.485607,0,0,0,0,0,0,0,0,0,0,0,8.8778315,0,0,0,57.16,56.150002,54.740002,57.220001,6,1,1,0,0,10,5,1,705.5,115752.02,0,0,4119.9653 -8469,10424,19024,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,8.1785574,8.4621096,0,3,0,0,0,-9,0,-1015.6347,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,48,38,15,1,0,-9,0,9.067831,9.067831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,5,4,0,906,761866.69,0,0,227.32092 -8470,10425,19025,-9,19030,19027,4,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.00879,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,2,3,0,0,6,2,0,533.83331,61927.23,0,0,2305.0144 -8470,10425,19026,-9,19030,19027,5,1,1,13,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1091.8065,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,55,-9,-9,5,2,3,0,0,6,2,0,533.83331,61927.23,0,0,2305.0144 -8470,10425,19027,19030,-9,-9,1,1,1,40,1,0,4,0,2,-9,2,1,0,0,5,7.2247152,7.8013,0,2,0,-9,16,0,0,-4.5666399,0,0,0,40,3,3,1,-9,-9,2019,1,2,8,0,26,24,15,1,0,1,0,8.8098202,8.8098202,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,65.269997,37.529999,61.279999,48.880001,6,2,3,0,0,6,2,0,533.83331,61927.23,0,0,2305.0144 -8470,10425,19028,-9,19030,19027,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.54327,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,6,2,0,533.83331,61927.23,0,0,2305.0144 -8470,10425,19029,-9,19030,19027,3,1,0,17,2,0,4,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-925.66144,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,23,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.98,42.91,-9,-9,4,2,3,0,0,6,2,0,533.83331,61927.23,0,0,2305.0144 -8470,10425,19030,19027,-9,-9,2,1,0,40,1,0,4,0,3,-9,2,1,0,0,3,6.6488075,6.6480742,0,2,0,-9,16,0,0,79.834129,0,0,1,40,2,5,1,-9,-9,2019,1,1,8,0,16,0,15,1,0,1,0,5.0997834,5.0997834,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.279999,48.880001,65.269997,37.529999,5,2,3,0,0,6,2,0,533.83331,61927.23,0,0,2305.0144 -8471,10426,19031,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,4,7.1173687,7.403688,0,3,0,0,0,-9,0,-1057.8789,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,40,15,1,0,-9,0,5.5172553,5.5172553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.830002,49.950001,-9,-9,7,1,1,0,0,10,3,0,178,172562.09,0,0,1426.674 -8472,10427,19032,-9,19033,19034,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1144.4397,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,9,5,1,410.33334,129019.35,0,0,2933.8352 -8472,10427,19033,19034,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,0,3,6.7706079,6.8921642,0,2,0,-9,8,0,-13,27.111221,0,0,1,45,1,4,1,2,2,2019,1,1,11,1,20,11,15,1,0,1,0,6.0390754,6.0390754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.610001,49.68,54.790001,55.860001,4,1,1,0,0,9,5,1,410.33334,129019.35,0,0,2933.8352 -8472,10427,19034,19033,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,8.9917126,8.9894342,0,2,0,-9,8,0,13,68.696159,0,0,0,32,2,3,1,2,2,2019,1,2,10,0,45,48,15,1,0,1,0,24.89007,24.89007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,56.610001,49.68,6,4,2,0,0,9,5,1,410.33334,129019.35,0,0,2933.8352 -8473,10428,19035,19036,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,1,0,6.3761024,6.0278115,1,0,-9,6,0,6,-79.326721,0,0,0,65,1,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,18.175697,0,0,0,0,0,1,1,0,6.8472981,6.5349131,0,0,49.279999,11.91,41.610001,48.150002,2,1,1,0,0,1,2,1,1254.5,883280.75,0,0,3179.6621 -8473,10428,19036,19035,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-6,-22.823534,0,0,0,71,2,1,3,3,3,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,6.8253331,0,36.247234,1,41.610001,48.150002,49.279999,11.91,5,1,1,0,0,1,2,1,1254.5,883280.75,0,0,3179.6621 -8474,10429,19037,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1018.1454,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,34,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.969999,21.299999,-9,-9,1,1,1,0,0,7,1,0,485,-41368.082,0,0,1241.8145 -8475,10430,19038,19039,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,4,8.2832098,8.107625,0,1,0,-9,5,0,-3,6.6502266,0,0,1,35,2,3,1,-9,-9,2019,1,1,10,0,40,37,15,1,0,1,0,10.955664,10.955664,0,0,0,0,0,0,0,0,0,0,0,3.5785928,0,0,0,59.939999,36.98,44.740002,48.369999,4,1,1,0,0,13,5,1,1026,597986.25,0,0,3258.3303 -8475,10430,19039,19038,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,0,3,8.1928959,8.0895967,0,1,0,-9,5,0,3,-61.139423,0,0,0,32,2,4,1,3,3,2019,1,2,11,1,47,39,15,1,0,1,0,10.426609,10.426609,0,0,0,0,0,0,0,0,0,0,0,1.6695341,0,0,0,44.740002,48.369999,59.939999,36.98,6,1,1,0,0,13,5,1,1026,597986.25,0,0,3258.3303 -8476,10431,19040,19041,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.0411472,8.2873344,0,2,0,-9,3,0,6,30.389645,0,0,0,28,1,4,1,3,3,2019,1,2,10,1,40,45,15,1,0,1,0,9.4887648,9.4887648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.200001,57.490002,5,1,1,0,0,13,4,1,525.33331,213932.73,0,0,3785.4644 -8476,10431,19041,19040,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,0,4,8.2805843,8.2270803,0,2,0,-9,3,0,-6,10.434009,0,1,1,34,2,4,1,-9,-9,2019,1,1,10,0,40,41,15,1,0,1,0,10.979964,10.979964,0,0,0,0,0,0,0,0,1,1,0,.81385672,0,0,0,54.200001,57.490002,50,57,6,1,1,0,0,13,4,1,525.33331,213932.73,0,0,3785.4644 -8476,10431,19042,-9,19041,19040,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.9053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,1,525.33331,213932.73,0,0,3785.4644 -8477,10432,19043,19044,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,3,8.4475861,7.9730325,0,2,0,-9,12,0,-1,169.98645,0,0,0,42,2,3,1,2,2,2019,1,2,14,3,40,40,15,1,0,1,0,12.108581,12.108581,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.18,54.77,41.98,38.619999,3,1,1,0,0,11,5,1,1057,615296.75,0,0,3869.8 -8477,10432,19044,19043,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,8.8807306,8.4561453,0,2,0,-9,12,0,1,-88.298256,0,0,1,41,2,3,1,2,-9,2019,1,1,12,0,40,42,15,1,0,1,0,18.287331,18.287331,0,0,0,0,0,0,0,7,1,1,0,0,0,8.4602556,3,41.98,38.619999,45.18,54.77,6,1,1,0,0,11,5,1,1057,615296.75,0,0,3869.8 -8477,10432,19045,-9,19044,19043,4,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.78894,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1057,615296.75,0,0,3869.8 -8478,10433,19046,19047,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,3,8.6630497,8.8375492,0,1,0,-9,7,0,1,-101.4002,0,0,0,55,2,3,1,3,3,2019,1,2,10,0,36,45,15,1,0,1,0,20.266829,20.266829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.970001,47.630001,58.470001,44.689999,6,1,1,0,0,2,5,1,332.5,1003509.6,0,0,4733.1211 -8478,10433,19047,19046,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.8392982,8.8085709,0,1,0,-9,7,0,-1,17.369078,0,0,0,56,1,3,1,3,2,2019,1,1,7,0,50,50,15,1,0,1,0,18.88349,18.88349,0,0,0,0,0,0,0,0,0,0,0,4.3908582,0,0,0,58.470001,44.689999,54.970001,47.630001,6,1,1,0,0,2,5,1,332.5,1003509.6,0,0,4733.1211 -8479,10434,19048,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1024.4918,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.470001,53.82,-9,-9,1,1,1,0,0,8,1,0,73,212457.47,0,0,2083.5129 -8479,10435,19049,-9,19048,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,7.8825707,7.7356029,0,3,0,0,0,-9,0,-929.62305,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,35,41,15,1,0,-9,1,8.5903568,8.5903568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,8,3,0,1216,14168.133,0,0,1402.9131 -8480,10436,19050,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,0,3,0,8.7173719,8.6928177,3,0,0,0,-9,0,-1028.9933,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7110457,8.1638403,0,0,50.959999,51.080002,-9,-9,6,1,1,0,0,11,5,1,710,1827770.8,0,0,2768.8186 -8481,10437,19051,19052,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,5,0,6.9646478,7.5385776,1,0,-9,42,0,3,-61.591476,0,0,0,66,2,2,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.4333467,7.2599244,0,3,57.060001,57.759998,45.709999,24.09,7,1,1,0,0,11,2,1,598,630389.88,0,0,2571.7749 -8481,10437,19052,19051,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,1,2,0,5.4243326,5.9763083,1,0,-9,4,0,-3,-31.681601,-9,0,0,69,2,5,3,-9,-9,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.3837104,0,3,45.709999,24.09,57.060001,57.759998,6,1,1,0,0,11,2,1,598,630389.88,0,0,2571.7749 -8482,10438,19053,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,2,0,0,0,3,0,0,0,-9,0,-1001.7548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,48,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.810001,42.130001,-9,-9,5,2,3,0,0,8,1,1,628,-112706.2,0,0,0 -8483,10439,19054,19056,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,8.4658327,8.5070343,0,2,0,-9,3,0,-1,245.22324,0,0,0,47,1,1,1,2,2,2019,1,2,11,0,40,0,15,1,0,1,0,9.5614243,9.5614243,0,0,0,0,0,0,0,0,1,1,0,7.318481,0,0,0,54.810001,42.240002,38.580002,19.110001,5,1,1,0,0,12,4,1,1105.6666,463091.28,0,0,4650.7837 -8483,10439,19055,-9,19056,19054,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.9129,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,12,4,1,1105.6666,463091.28,0,0,4650.7837 -8483,10439,19056,19054,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,1,1,7.4486704,8.326314,7.6956167,2,0,-9,3,0,1,-47.754299,0,0,0,46,2,3,1,3,3,2019,1,1,20,8,28,0,15,1,1,1,0,8.4735403,8.4735403,0,0,0,0,0,0,0,2,1,1,0,2.8669205,7.7974176,3.035306,3,38.580002,19.110001,54.810001,42.240002,6,1,1,0,0,12,4,1,1105.6666,463091.28,0,0,4650.7837 -8484,10440,19057,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1070.4832,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.709999,51.139999,-9,-9,6,1,1,0,0,6,1,0,727,301959.53,0,0,1288.9945 -8485,10441,19058,19060,-9,-9,1,1,0,42,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,5,0,-2,-56.256828,0,0,1,44,2,4,1,-9,2,2019,3,4,28,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.565487,3,24.389999,20.219999,52.23,55.599998,4,1,1,0,0,2,3,1,1181.75,60173.277,0,0,3351.2891 -8485,10441,19059,-9,19058,19060,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-912.99329,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,2,3,1,1181.75,60173.277,0,0,3351.2891 -8485,10441,19060,19058,-9,-9,4,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.1418009,8.1334314,0,2,0,-9,5,0,2,91.162285,0,0,0,42,2,1,3,-9,-9,2019,2,1,13,1,40,60,15,1,0,3,0,9.0635405,9.0635405,0,0,0,0,0,0,0,2,1,1,0,0,0,3.9453363,1,52.23,55.599998,24.389999,20.219999,6,1,1,0,1,2,3,1,1181.75,60173.277,0,0,3351.2891 -8485,10441,19061,-9,19058,19060,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,1,1181.75,60173.277,0,0,3351.2891 -8486,10442,19062,19063,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.6134176,6.540153,1,0,-9,6,0,0,58.979385,0,0,0,72,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0679996,6.6050692,0,0,52,47,50,47,5,1,1,0,0,4,2,1,2507.5,363301.13,0,0,673.28998 -8486,10442,19063,19062,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,0,5.0361571,0,0,0,72,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,52,47,5,1,1,0,0,4,2,1,2507.5,363301.13,0,0,673.28998 -8487,10443,19064,19065,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.9636402,9.1618557,0,1,0,-9,6,0,1,-43.244133,0,0,0,31,2,4,1,-9,-9,2019,1,2,9,1,40,85,15,1,0,1,0,26.648287,26.648287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.580002,60.950001,62.669998,41.310001,6,2,3,0,0,9,5,1,626,215388.75,0,0,5623.7373 -8487,10443,19065,19064,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,0,4,9.1118078,8.5726852,0,1,0,-9,6,0,-1,3.6953681,0,0,1,32,1,4,1,-9,-9,2019,1,1,10,1,53,53,15,1,0,1,0,18.506536,18.506536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.669998,41.310001,40.580002,60.950001,6,1,1,0,0,9,5,1,626,215388.75,0,0,5623.7373 -8488,10444,19066,-9,19070,19068,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.7709,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,0,1180.6,188482.39,0,0,3788.6243 -8488,10444,19067,-9,19070,19068,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.4211,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,0,1180.6,188482.39,0,0,3788.6243 -8488,10444,19068,19070,-9,-9,5,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,8.8225117,8.505826,0,2,0,-9,4,0,9,-145.56818,0,0,0,33,3,2,3,-9,-9,2019,2,1,7,0,67,65,15,1,0,3,0,8.2972794,8.2972794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.139999,52.150002,31.790001,43.849998,3,1,1,0,0,9,3,0,1180.6,188482.39,0,0,3788.6243 -8488,10444,19069,-9,19070,19068,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.32727,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,3,0,1180.6,188482.39,0,0,3788.6243 -8488,10444,19070,19068,-9,-9,1,1,0,33,1,0,3,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,4,0,0,-165.30298,0,0,1,42,2,4,1,2,3,2019,3,5,25,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.790001,43.849998,48.139999,52.150002,3,1,1,0,1,9,3,0,1180.6,188482.39,0,0,3788.6243 -8489,10445,19071,19073,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,7.9903097,8.2404499,0,2,0,-9,9,0,3,-34.292873,0,0,0,42,2,3,1,-9,-9,2019,1,1,6,0,39,39,15,1,0,1,0,9.0667353,9.0667353,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.564256,3,59.529999,56.439999,57.330002,53.459999,7,1,1,0,0,10,3,1,835,906193.5,0,0,2294.6299 -8489,10445,19072,-9,19073,19071,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.2498,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,835,906193.5,0,0,2294.6299 -8489,10445,19073,19071,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,1,3,7.5500946,8.039341,0,2,0,-9,9,0,-3,68.40123,0,0,1,45,2,4,1,3,2,2019,1,2,10,0,48,48,15,1,0,1,0,5.7285833,5.7285833,0,0,0,0,0,0,0,7,1,1,0,0,0,4.4412208,3,57.330002,53.459999,59.529999,56.439999,6,1,1,0,0,10,3,1,835,906193.5,0,0,2294.6299 -8490,10446,19074,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-881.15417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.040001,39.549999,-9,-9,2,1,1,0,0,2,1,1,694,0,0,0,1595.896 -8491,10447,19075,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,2,1,0,0,3,7.9525328,7.8453608,0,3,0,0,0,-9,0,-923.15967,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,8.4832563,8.4832563,0,0,0,0,0,0,0,0,0,0,0,4.7471786,0,0,0,50.599998,51,-9,-9,5,1,1,0,0,6,4,1,738,539225.81,0,0,886.56158 -8492,10448,19076,19080,-9,-9,2,1,1,34,1,1,3,0,2,-9,2,1,0,0,4,7.3490744,7.1665101,0,2,0,-9,1,-9,6,-45.499321,-9,0,0,28,2,2,3,-9,-9,2019,2,1,7,0,48,0,15,1,0,3,0,3.8478777,3.8478777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,40,42,6,1,1,0,0,9,2,0,922.59998,-20825.883,0,0,1357.0465 -8492,10448,19077,-9,19080,19076,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1025.8417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,2,0,922.59998,-20825.883,0,0,1357.0465 -8492,10448,19078,-9,19080,19076,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-899.44824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,2,0,922.59998,-20825.883,0,0,1357.0465 -8492,10448,19079,-9,19080,19076,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-980.3197,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,922.59998,-20825.883,0,0,1357.0465 -8492,10448,19080,19076,-9,-9,1,1,0,28,1,1,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,1,-9,-6,149.70645,-9,1,1,34,2,4,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,42,57.759998,54.509998,5,1,1,0,0,9,2,0,922.59998,-20825.883,0,0,1357.0465 -8493,10449,19081,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,3,8.1221399,8.0578041,0,3,0,0,0,-9,0,-1093.2822,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,37,31,15,1,0,-9,0,11.689649,11.689649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,31.200001,-9,-9,6,1,1,0,1,8,4,0,685,186446.77,0,0,1581.7554 -8493,10450,19082,-9,19081,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-947.42456,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.75,-9,-9,7,4,2,0,0,8,1,0,311,0,0,0,485.07339 -8493,10451,19083,19084,-9,-9,4,1,0,25,1,0,0,0,2,-9,2,1,0,0,4,8.3642635,8.1633291,0,1,0,-9,1,-9,0,-100.20515,-9,1,1,25,2,4,1,-9,-9,2019,1,2,11,2,38,0,15,1,0,1,0,10.393101,10.393101,0,0,0,0,0,0,0,0,0,0,0,2.7163615,0,0,0,48,57,49,58,5,4,2,0,0,8,5,0,479.5,-76528.211,0,0,2476.6997 -8493,10451,19084,19083,19081,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,8.4137945,8.4101019,0,1,0,1,1,-9,0,-134.50221,0,1,0,25,2,4,1,2,-9,2019,1,4,10,1,38,31,15,1,0,1,0,11.261022,11.261022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,48,57,5,4,2,0,0,8,5,0,479.5,-76528.211,0,0,2476.6997 -8494,10452,19085,19086,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,56,0,-7,-22.644522,0,0,0,84,3,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.599998,25.799999,58,50,5,1,1,0,0,10,2,1,781,851217,0,0,1722.3468 -8494,10452,19086,19085,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,7.2941499,7.1818318,1,0,-9,56,0,7,12.515684,0,0,0,77,3,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9879351,11.315091,1,58,50,56.599998,25.799999,6,1,1,0,0,10,2,1,781,851217,0,0,1722.3468 -8495,10453,19087,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,0,3,0,7.3031039,7.1603322,3,0,0,0,-9,0,-989.66248,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0280814,7.2248755,0,0,37.919998,53.029999,-9,-9,3,1,1,0,0,10,3,1,281,737772.5,0,0,1468.2954 -8496,10454,19088,-9,-9,19089,2,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1039.9761,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,2,3,0,0,8,1,0,303,0,0,0,1126.7214 -8496,10454,19089,-9,-9,-9,1,1,1,47,3,0,1,0,1,-9,1,1,0,0,1,2.4144604,2.2518158,0,4,0,0,0,-9,0,-1049.4093,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,17,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,28,-9,-9,4,2,3,0,1,8,1,0,303,0,0,0,1126.7214 -8497,10455,19090,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,0,4,8.4036684,8.8143005,0,4,0,-9,0,1,0,-880.05927,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,0,15,1,0,-9,0,16.358051,16.358051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,6,1,1,0,0,5,4,1,400,171116.45,0,0,2278.0288 -8497,10456,19091,-9,19090,-9,2,1,1,22,2,0,1,0,2,-9,2,1,0,0,4,8.0346727,7.997344,0,3,0,0,0,-9,0,-1009.8004,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,42,43,15,1,0,-9,1,8.1916285,8.1916285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,5,4,1,1881,-35825.652,0,0,1219.2921 -8498,10457,19092,19093,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,0,3,8.2407465,8.5029268,0,1,0,-9,1,-9,5,-41.574463,-9,0,1,31,1,4,1,2,2,2019,1,3,10,0,43,0,15,1,0,1,0,12.391177,12.391177,0,0,0,0,0,0,0,0,0,0,0,6.5763078,0,0,0,56.75,47.060001,50,57,6,1,1,0,0,9,5,1,318.5,-6653.4531,0,0,3772.5693 -8498,10457,19093,19092,-9,-9,3,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,8.2307386,8.4338369,0,1,0,-9,1,-9,-5,-94.11351,-9,0,0,36,2,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,13.367717,13.367717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,56.75,47.060001,5,4,1,0,0,9,5,1,318.5,-6653.4531,0,0,3772.5693 -8499,10458,19094,19096,-9,-9,1,1,1,29,1,1,2,0,2,-9,2,1,0,0,4,8.5315819,8.4672699,0,2,0,-9,1,-9,2,-47.405941,-9,1,0,27,2,3,1,2,3,2019,1,2,8,0,45,0,15,1,0,1,0,12.346465,12.346465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.290001,54.220001,44,53,5,1,1,0,0,13,3,0,807.75,-9808.7324,0,0,2382.6602 -8499,10458,19095,-9,19096,19094,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-911.77521,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,0,807.75,-9808.7324,0,0,2382.6602 -8499,10458,19096,19094,-9,-9,2,1,0,27,1,1,2,0,2,-9,2,1,0,0,3,6.8272924,6.8167262,0,2,0,-9,1,-9,-2,58.210407,-9,1,1,29,2,4,1,-9,-9,2019,1,1,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,53,46.290001,54.220001,5,1,1,0,0,13,3,0,807.75,-9808.7324,0,0,2382.6602 -8499,10458,19097,-9,19096,19094,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1011.5258,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,807.75,-9808.7324,0,0,2382.6602 -8500,10459,19098,-9,19099,19100,3,1,0,16,2,0,0,0,2,-9,2,2,0,0,3,6.7135901,6.4901762,0,1,0,0,0,-9,0,-1044.1987,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,44,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7892354,0,0,0,36.040001,48.299999,-9,-9,6,1,1,0,0,6,5,1,1015.6667,208294.77,0,0,5911.7866 -8500,10459,19099,19100,19101,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,9.0493736,8.70012,6.1024618,1,0,-9,10,0,-5,-79.844742,0,0,0,53,2,3,1,2,2,2019,1,1,18,6,42,48,15,1,1,1,0,19.614691,19.614691,0,0,0,0,0,0,0,0,1,1,0,6.9285827,0,0,0,28.43,44.900002,41.099998,53.939999,3,1,1,0,0,6,5,1,1015.6667,208294.77,0,0,5911.7866 -8500,10459,19100,19099,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,9.3463898,9.0486937,0,1,0,-9,10,0,5,114.28848,0,0,0,48,2,3,1,2,2,2019,1,2,11,1,93,43,15,1,0,1,0,12.169907,12.169907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.099998,53.939999,28.43,44.900002,6,1,1,0,0,6,5,1,1015.6667,208294.77,0,0,5911.7866 -8500,10460,19101,-9,-9,-9,4,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,7.619494,7.0319657,3,0,0,0,-9,0,-1033.9868,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.0655463,7.3734031,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,6,3,1,162,617223.63,0,0,1113.558 -8501,10461,19102,19105,-9,-9,2,1,0,41,1,0,2,0,2,-9,1,1,0,0,3,8.3026037,8.2914124,0,2,0,-9,7,0,8,0,0,0,1,33,3,3,1,-9,-9,2019,1,1,8,1,45,60,15,1,0,1,0,10.160086,10.160086,0,0,0,0,0,0,0,0,1,1,0,7.7150736,0,0,0,51.830002,42.099998,48.450001,57.490002,5,2,3,0,0,7,4,0,1344,358779.38,0,0,6272.9883 -8501,10461,19103,-9,19102,19105,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.9414,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,4,0,1344,358779.38,0,0,6272.9883 -8501,10461,19104,-9,19102,19105,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.15808,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,7,4,0,1344,358779.38,0,0,6272.9883 -8501,10461,19105,19102,-9,-9,1,1,1,33,1,0,2,0,3,-9,1,1,0,0,3,8.2052269,8.00632,0,2,0,-9,7,0,-8,0,0,0,0,41,2,3,1,2,2,2019,1,2,12,0,45,60,15,1,0,1,0,10.139935,10.139935,0,0,0,0,0,0,0,0,1,1,0,7.6074977,0,0,0,48.450001,57.490002,51.830002,42.099998,6,1,1,0,0,7,4,0,1344,358779.38,0,0,6272.9883 -8502,10462,19106,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,2,1,0,0,3,8.7959194,8.4265957,4.6541581,3,0,0,0,-9,0,-1067.0546,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,30,50,15,1,0,-9,0,21.904213,21.904213,0,0,0,0,0,0,0,0,0,0,0,5.3893361,5.154181,0,0,49.330002,48.830002,-9,-9,3,1,1,0,0,9,5,0,1055,659101.19,0,0,2261.7063 -8503,10463,19107,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,0,3,8.1854906,8.4424324,0,3,0,0,0,-9,0,-1009.0744,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,36,0,15,1,0,-9,0,13.798664,13.798664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.860001,50.490002,-9,-9,6,1,1,0,1,2,4,0,475,564022.88,0,0,1941.9031 -8504,10464,19108,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1114.3827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.290001,19.360001,-9,-9,2,1,1,0,1,11,1,0,1774,-179255.69,0,0,110.80068 -8505,10465,19109,19110,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,7.9952679,8.1064415,0,1,0,-9,4,0,1,21.624584,0,0,1,29,1,4,1,-9,-9,2019,1,1,15,3,42,42,15,1,0,1,0,10.149937,10.149937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,57.16,56.150002,4,1,1,0,0,2,5,0,447.5,318929.66,0,0,2946.4189 -8505,10465,19110,19109,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.8820801,8.5691633,0,1,0,-9,4,0,-1,-14.799574,0,1,0,30,2,4,1,2,2,2019,1,2,12,2,67,65,15,1,0,1,0,10.933471,10.933471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,41.299999,60.77,6,1,1,0,0,2,5,0,447.5,318929.66,0,0,2946.4189 -8506,10466,19111,-9,19112,19114,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-896.27069,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,1,0,579.5,36253.996,0,0,2559.1833 -8506,10466,19112,19114,-9,-9,2,1,0,36,1,0,2,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,4,0,0,0,0,0,1,45,3,3,3,-9,-9,2019,4,1,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.501019,3,31.27,23.459999,68.889999,35.82,3,1,1,0,0,2,1,0,579.5,36253.996,0,0,2559.1833 -8506,10466,19113,-9,19112,19114,3,1,0,16,2,0,2,0,2,-9,3,2,0,0,2,0,5.5784988,5.4875879,2,0,0,0,-9,0,-870.29108,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,21,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.969429,0,16.968182,3,22.48,41.349998,-9,-9,1,1,1,1,0,2,1,0,579.5,36253.996,0,0,2559.1833 -8506,10466,19114,19112,-9,-9,1,1,1,45,1,0,2,0,3,-9,3,3,0,1,3,0,0,0,2,0,-9,4,0,9,0,0,0,0,36,2,3,3,-9,-9,2019,4,2,9,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,81.4245,2,68.889999,35.82,31.27,23.459999,7,1,1,1,0,2,1,0,579.5,36253.996,0,0,2559.1833 -8507,10467,19115,19117,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,8.9770298,8.8239279,0,2,0,-9,8,0,0,9.6352425,0,0,0,46,1,4,1,-9,-9,2019,1,2,6,0,40,70,15,1,0,1,0,19.024109,19.024109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.43,55.57,7,1,1,0,0,9,4,1,663.33331,528810.5,0,0,3063.7263 -8507,10467,19116,-9,19115,19117,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.3064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,4,1,663.33331,528810.5,0,0,3063.7263 -8507,10467,19117,19115,-9,-9,2,1,1,46,1,0,1,0,1,-9,1,1,0,0,4,7.0395775,7.0571041,0,2,0,-9,8,0,0,36.520115,0,0,0,46,1,4,1,-9,-9,2019,1,1,7,0,25,20,15,1,0,1,0,5.3487968,5.3487968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,57.16,56.150002,6,4,2,0,0,9,4,1,663.33331,528810.5,0,0,3063.7263 -8508,10468,19118,-9,19120,-9,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-946.47198,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,2,0,764.75,691482.13,0,0,2722.563 -8508,10468,19119,-9,19120,-9,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1016.8803,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,0,764.75,691482.13,0,0,2722.563 -8508,10468,19120,-9,-9,-9,1,1,0,38,2,0,3,0,2,-9,1,1,0,0,4,7.163085,7.0276403,0,4,0,0,0,-9,0,-1178.9349,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,16,0,15,1,0,-9,0,9.6575499,9.6575499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,60.470001,-9,-9,6,1,1,0,0,10,2,0,764.75,691482.13,0,0,2722.563 -8508,10468,19121,-9,19120,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-882.16364,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,0,764.75,691482.13,0,0,2722.563 -8509,10469,19122,19123,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,1,0,5.5963168,5.7774096,1,0,-9,6,0,4,44.717476,0,0,0,68,2,4,3,3,3,2019,4,2,15,4,0,0,15,4,1,3,0,0,0,1,0,3.2946522,0,0,0,0,0,1,1,0,7.2923174,5.7373638,0,0,34.639999,15.66,51.73,56.299999,1,1,1,0,0,7,2,1,240,111136.44,0,0,2095.9321 -8509,10469,19123,19122,-9,-9,2,1,0,68,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,-4,54.456009,0,0,0,72,2,1,3,3,3,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,6.924686,1,51.73,56.299999,34.639999,15.66,6,1,1,0,0,7,2,1,240,111136.44,0,0,2095.9321 -8510,10470,19124,19125,-9,-9,1,1,1,34,1,1,3,0,1,-9,1,1,0,0,5,7.021143,7.2680502,0,2,0,-9,8,0,10,71.338348,0,0,0,24,2,4,3,3,2,2019,2,2,6,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,5,2,3,0,1,4,2,0,701.79999,192618.73,0,0,2038.5004 -8510,10470,19125,19124,-9,-9,2,1,0,24,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-10,21.093536,0,1,1,34,1,5,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,2,3,0,0,4,2,0,701.79999,192618.73,0,0,2038.5004 -8510,10470,19126,-9,19125,19124,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.9514,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,4,2,0,701.79999,192618.73,0,0,2038.5004 -8510,10470,19127,-9,19125,19124,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-995.89026,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,2,0,701.79999,192618.73,0,0,2038.5004 -8510,10470,19128,-9,19125,19124,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.9198,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,701.79999,192618.73,0,0,2038.5004 -8511,10471,19129,-9,19130,19131,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.752,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,1086.2,2413034.8,0,0,3097.8669 -8511,10471,19130,19131,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,0,4,8.1661863,7.8420162,0,2,0,-9,21,0,-3,-48.881393,0,0,1,44,2,4,1,2,2,2019,1,1,12,1,33,33,15,1,0,1,0,10.331973,10.331973,0,0,0,0,0,0,0,0,1,1,0,4.3427582,0,0,0,48.869999,58.549999,51.240002,58.84,6,1,1,0,0,2,4,1,1086.2,2413034.8,0,0,3097.8669 -8511,10471,19131,19130,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,8.4470673,8.3623819,0,2,0,-9,9,0,3,2.0878041,0,0,0,41,2,4,1,-9,-9,2019,1,2,10,0,78,44,15,1,0,1,0,7.4090977,7.4090977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,48.869999,58.549999,6,1,1,0,0,2,4,1,1086.2,2413034.8,0,0,3097.8669 -8511,10471,19132,-9,19130,19131,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-900.55341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,1,1086.2,2413034.8,0,0,3097.8669 -8511,10471,19133,-9,19130,19131,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-873.53552,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,1086.2,2413034.8,0,0,3097.8669 -8512,10472,19134,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,7.7784858,7.563561,5.0948853,3,0,0,0,-9,0,-1015.6095,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,5,35,40,15,1,1,-9,0,9.630352,9.630352,0,0,0,0,0,0,0,14.5,0,0,0,4.2076473,5.5590343,5.8378692,3,45.18,54.77,-9,-9,5,1,1,0,0,2,4,1,582,604030.56,0,0,188.1035 -8513,10473,19135,-9,19137,19136,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.3557,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,1,5,1,1033.3334,259245.09,0,0,5159.627 -8513,10473,19136,19137,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,1,3,9.5198069,9.3186512,0,2,0,-9,13,0,1,113.78217,-9,0,0,38,2,4,1,2,3,2019,1,1,6,0,35,0,15,1,0,1,0,34.199501,34.199501,0,0,0,0,0,0,0,2,1,1,0,0,0,7.3571758,3,63.259998,42.529999,35.25,62,5,1,1,0,0,1,5,1,1033.3334,259245.09,0,0,5159.627 -8513,10473,19137,19136,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,8.3374043,8.1080952,0,2,0,-9,13,0,-1,-101.82376,0,0,1,39,2,3,1,-9,-9,2019,1,2,12,0,23,20,15,1,0,1,0,15.545235,15.545235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.25,62,63.259998,42.529999,6,1,1,0,0,1,5,1,1033.3334,259245.09,0,0,5159.627 -8514,10474,19138,19140,-9,-9,1,1,1,31,1,0,1,0,1,-9,2,1,0,0,5,9.217145,9.630661,0,2,0,-9,11,0,-1,-28.604036,0,0,0,32,1,3,3,1,1,2019,2,2,4,0,53,50,15,1,0,3,0,30.427074,30.427074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,53.669998,51.009998,5,2,3,0,0,8,5,1,649.66669,276198.44,0,0,4355.9878 -8514,10474,19139,-9,19140,19138,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.4088,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,1,649.66669,276198.44,0,0,4355.9878 -8514,10474,19140,19138,-9,-9,2,1,0,32,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,11,0,1,50.892105,0,0,1,31,1,5,1,1,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.669998,51.009998,54.689999,57.470001,6,2,3,0,0,8,5,1,649.66669,276198.44,0,0,4355.9878 -8515,10475,19141,19142,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.194068,8.2590532,0,1,0,-9,7,0,-6,5.7716794,0,0,0,63,2,3,3,1,1,2019,2,2,6,0,35,35,15,1,0,3,0,11.808382,11.808382,0,0,0,0,0,0,0,0,0,0,0,3.9774051,0,0,0,54.959999,53.169998,38.91,47.09,6,1,1,0,0,1,3,1,4822,452244.16,0,0,1596.5337 -8515,10475,19142,19141,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,1,3,0,5.8356032,5.8020248,1,0,-9,7,0,6,-39.267284,0,0,0,57,2,3,1,3,2,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9551744,5.9432883,0,0,38.91,47.09,54.959999,53.169998,5,1,1,0,1,1,3,1,4822,452244.16,0,0,1596.5337 -8516,10476,19143,19144,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,7.5800748,7.64465,1,0,-9,12,0,-4,-97.177376,0,0,0,70,2,4,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4636383,0,0,65.529999,28.23,51,52.080002,7,1,1,0,0,12,3,1,603,997615.56,0,0,3050.6118 -8516,10476,19144,19143,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.9990373,7.5972319,1,0,-9,8,0,4,20.635366,0,0,0,66,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0705366,0,0,51,52.080002,65.529999,28.23,6,1,1,0,0,12,3,1,603,997615.56,0,0,3050.6118 -8517,10477,19145,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,4,3,0,0,2,0,8.2033749,8.1182909,3,0,0,0,-9,0,-1094.2847,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.8855762,7.9763222,3.4092746,3,47.959999,13.43,-9,-9,5,1,1,0,0,9,4,1,1057,1352148.3,0,0,1673.614 -8518,10478,19146,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,6.7698927,6.7365208,3,0,-9,0,-9,0,-971.42438,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0350513,6.3231659,0,0,38.630001,47.209999,-9,-9,4,1,1,0,0,4,2,0,1193,132700.31,0,0,-390.43335 -8519,10479,19147,-9,19150,19149,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.02118,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,1,1,681,-31570.881,0,0,1609.901 -8519,10479,19148,-9,19150,19149,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-850.88696,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,1,1,681,-31570.881,0,0,1609.901 -8519,10479,19149,19150,-9,-9,1,1,1,38,1,1,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,11,0,2,0,0,0,0,36,2,4,3,2,3,2019,2,2,15,3,40,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30980596,0,0,0,54.049999,52.09,51.830002,57.200001,5,1,1,0,0,7,1,1,681,-31570.881,0,0,1609.901 -8519,10479,19150,19149,-9,-9,2,1,0,36,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,-2,0,0,0,1,38,2,4,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87262744,0,0,0,51.830002,57.200001,54.049999,52.09,6,1,1,0,0,7,1,1,681,-31570.881,0,0,1609.901 -8520,10480,19151,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,0,3,9.0171232,8.739069,0,3,0,-9,0,-9,0,-1091.7699,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,0,28.57959,28.57959,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.59371,3,54.990002,46.16,-9,-9,7,1,1,0,0,4,5,1,75,974508.19,0,0,2582.7764 -8521,10481,19152,-9,-9,-9,1,1,0,49,2,1,2,0,2,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-903.84589,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.790001,40.25,-9,-9,5,3,4,1,0,8,1,0,1818,69592.586,0,0,1185.7913 -8521,10481,19153,-9,19152,-9,3,1,0,14,2,1,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1030.8776,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,8,1,0,1818,69592.586,0,0,1185.7913 -8521,10482,19154,-9,19152,-9,2,1,0,22,2,1,2,0,2,-9,2,1,0,0,3,8.022542,7.9309478,0,3,0,0,0,-9,0,-1013.4423,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,35,0,15,1,0,-9,1,10.537908,10.537908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.130001,42.919998,-9,-9,6,3,4,0,0,8,4,0,649,227177.5,0,0,1278.288 -8521,10482,19155,-9,19154,-9,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-980.73566,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,8,4,0,649,227177.5,0,0,1278.288 -8522,10483,19156,19157,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.9456577,8.6165638,0,1,0,-9,22,0,-5,-19.330679,0,0,0,55,1,4,1,3,3,2019,1,2,8,1,46,44,15,1,0,1,0,16.68866,16.68866,0,0,0,0,0,0,0,0,0,0,0,3.5769463,0,0,0,50.669998,34.619999,55.360001,54.240002,6,1,1,0,0,9,5,1,953,873532.31,0,0,4999.0469 -8522,10483,19157,19156,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,8.4748478,8.7588053,0,1,0,-9,22,0,5,4.2422476,0,0,0,50,2,3,1,2,2,2019,1,1,6,0,47,40,15,1,0,1,0,13.412081,13.412081,0,0,0,0,0,0,0,0,0,0,0,2.2902696,0,0,0,55.360001,54.240002,50.669998,34.619999,6,1,1,0,0,9,5,1,953,873532.31,0,0,4999.0469 -8522,10484,19158,-9,19156,19157,3,1,0,21,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1066.3239,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,1,1,346,-201863.81,0,0,0 -8523,10485,19159,19160,-9,-9,2,1,1,43,1,0,0,0,2,-9,1,1,0,0,2,9.0762806,8.9045248,0,1,0,-9,22,0,2,72.833138,0,0,0,41,2,4,1,2,2,2019,1,1,11,0,40,92,15,1,0,1,0,20.493988,20.493988,0,0,0,0,0,0,0,0,1,1,0,5.5834985,0,0,0,61.82,34.040001,56.349998,51,6,1,1,0,0,8,5,1,168,76634.891,0,0,4180.2646 -8523,10485,19160,19159,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,0,4,7.2326794,7.5086131,0,1,0,-9,22,0,-2,107.71401,0,0,1,43,2,2,1,1,2,2019,1,2,8,0,28,29,15,1,0,1,0,6.7272,6.7272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,51,61.82,34.040001,5,1,1,0,0,8,5,1,168,76634.891,0,0,4180.2646 -8523,10486,19161,-9,19160,19159,4,1,0,21,2,0,0,0,1,1,2,1,0,0,4,8.5083847,8.1309061,0,3,0,0,0,-9,0,-929.44257,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,0,15,1,0,-9,1,10.833961,10.833961,0,0,0,0,0,0,0,0,1,1,0,.16907467,0,0,0,47,58,-9,-9,5,1,1,0,0,8,4,1,2280,-107181.7,0,0,1362.9978 -8524,10487,19162,-9,-9,-9,1,1,1,90,3,0,0,0,2,-9,4,3,0,0,1,0,7.1316004,7.0198569,3,0,0,0,-9,0,-1038.3767,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,7.0141001,0,0,6.1459599,3.78967,21.61706,0,1,1,0,4.3872728,7.0922456,0,0,48.91,16.889999,-9,-9,5,1,1,0,0,12,2,1,1531,-5376.5234,0,0,970.48944 -8525,10488,19163,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,0,4,8.5055046,8.5148611,0,3,0,0,0,-9,0,-946.15668,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,35,55,15,1,0,-9,0,18.584972,18.584972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.189999,58.810001,-9,-9,6,1,1,0,1,8,5,1,262,342368.94,0,0,2783.3328 -8526,10489,19164,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,7.948246,8.1377344,0,3,0,0,0,-9,0,-971.62903,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,1,46,42,15,1,0,-9,0,9.479949,9.479949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,8,4,1,2762,-30736.619,0,0,1691.5775 -8526,10490,19165,19166,-9,-9,3,1,0,34,1,0,0,0,1,-9,2,1,0,0,5,8.2769928,8.0557957,0,1,0,-9,2,0,-3,-49.269714,0,0,1,37,1,4,1,-9,-9,2019,1,2,8,0,35,39,15,1,0,1,0,18.093611,18.093611,0,0,0,0,0,0,0,0,0,0,0,2.0003738,0,0,0,59.43,58.049999,48.529999,58.91,7,1,1,0,0,8,5,1,751.5,203382.98,0,0,4104.2393 -8526,10490,19166,19165,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,0,4,8.8942223,8.4755468,0,1,0,-9,2,0,3,-35.195793,0,0,0,34,1,5,1,-9,-9,2019,1,3,11,0,45,42,15,1,0,1,0,16.949581,16.949581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,59.43,58.049999,6,1,1,0,0,8,5,1,751.5,203382.98,0,0,4104.2393 -8527,10491,19167,19168,-9,-9,2,1,1,50,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,5,-6.7811151,0,0,0,45,2,4,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,0,0,0,0,0,80.086739,3,65.629997,45.52,50,55,6,1,1,1,1,13,2,0,363.5,134436.67,0,0,608.22534 -8527,10491,19168,19167,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,7.3455558,7.3945413,0,1,0,-9,2,0,-5,-33.899529,0,0,0,50,3,3,3,3,3,2019,2,2,10,1,37,38,15,1,0,3,0,4.7628055,4.7628055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,65.629997,45.52,6,1,1,0,0,13,2,0,363.5,134436.67,0,0,608.22534 -8528,10492,19169,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-989.70471,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,2,3,0,0,8,1,0,1880,22597.605,0,0,1446.3676 -8528,10493,19170,-9,19169,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,1,5,5.3721166,5.5141058,0,3,0,0,0,-9,0,-1000.2244,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.509268,3,43.439999,61.220001,-9,-9,5,2,3,0,0,8,2,0,301,87303.195,0,0,876.23041 -8529,10494,19171,19172,-9,-9,2,1,0,36,1,1,1,0,2,-9,2,1,0,0,4,7.5650291,7.5856919,0,2,0,-9,1,-9,-2,-31.089949,-9,0,1,38,2,4,1,-9,-9,2019,1,1,5,0,24,0,15,1,0,1,0,12.832481,12.832481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,51.830002,57.200001,7,1,1,0,0,2,4,1,1195,200293.58,0,0,3571.5657 -8529,10494,19172,19171,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,0,4,8.1038971,8.2636299,0,2,0,-9,1,-9,2,-89.334488,-9,0,0,36,2,4,1,-9,-9,2019,1,2,12,2,55,0,15,1,0,1,0,7.0161753,7.0161753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,54.790001,55.860001,6,1,1,0,0,2,4,1,1195,200293.58,0,0,3571.5657 -8529,10494,19173,-9,19171,19172,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-996.09924,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,2,4,1,1195,200293.58,0,0,3571.5657 -8530,10495,19174,-9,19175,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-821.75885,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,3,0,601,-173504.95,0,0,966.37427 -8530,10495,19175,-9,-9,-9,1,1,0,30,2,0,1,0,1,-9,2,1,0,0,4,7.4765062,7.3438463,0,4,0,0,0,-9,0,-980.21753,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,28,35,15,1,0,-9,0,7.2175961,7.2175961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.490002,61.790001,-9,-9,4,1,1,0,0,7,3,0,601,-173504.95,0,0,966.37427 -8531,10496,19176,19177,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,8.3040533,8.2693367,0,1,0,-9,11,0,2,0,0,0,0,48,1,1,3,1,1,2019,2,1,13,3,40,40,15,1,0,3,0,16.660791,16.660791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.349998,46.16,24.32,6,1,1,0,0,8,5,1,401.5,896574.25,0,0,3900.019 -8531,10496,19177,19176,-9,-9,1,1,0,48,1,0,0,0,1,-9,8,3,1,1,1,8.4833145,8.4961319,0,1,0,-9,11,0,-2,0,0,0,0,50,1,4,1,3,2,2019,3,2,16,6,3,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7998977,0,0,0,46.16,24.32,46.98,59.349998,2,1,1,0,0,8,5,1,401.5,896574.25,0,0,3900.019 -8532,10497,19178,-9,19181,19179,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.55884,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,3,0,662.75,100104.32,0,0,3836.9636 -8532,10497,19179,19181,-9,-9,1,1,1,47,1,0,2,0,3,-9,1,1,0,0,3,7.6007333,7.9051437,0,2,0,-9,6,0,6,22.56941,0,0,0,41,2,4,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,6.4791665,6.4791665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.110001,50.75,51.240002,58.84,3,1,1,0,0,10,3,0,662.75,100104.32,0,0,3836.9636 -8532,10497,19180,-9,19181,19179,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-984.06097,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,10,3,0,662.75,100104.32,0,0,3836.9636 -8532,10497,19181,19179,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.5178809,7.2213922,0,2,0,-9,6,0,-6,6.2527199,0,0,1,47,3,3,1,3,1,2019,1,1,7,0,25,25,15,1,0,1,0,8.4587116,8.4587116,0,0,0,0,0,0,0,7,1,1,0,0,0,4.6260624,3,51.240002,58.84,51.110001,50.75,2,1,1,0,0,10,3,0,662.75,100104.32,0,0,3836.9636 -8533,10498,19182,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,4,9.5844831,9.8687906,0,3,0,0,0,-9,0,-927.22461,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,50,50,15,1,0,-9,0,46.5145,46.5145,0,0,0,0,0,0,0,0,0,0,0,3.6093996,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,9,5,1,523,361792.44,0,0,5842.541 -8534,10499,19183,19184,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,1,1,0,0,0,1,0,-9,5,0,5,0,0,0,0,59,3,1,3,-9,-9,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.6155972,1,50,13.57,41.810001,28.459999,4,1,1,0,0,6,1,0,1932.5,332716.38,0,0,2812.2524 -8534,10499,19184,19183,-9,-9,1,1,0,59,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,29,0,-5,0,0,0,0,64,1,1,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.810001,28.459999,50,13.57,5,1,1,0,0,6,1,0,1932.5,332716.38,0,0,2812.2524 -8535,10500,19185,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,4.7113333,5.1155815,3,0,0,0,-9,0,-933.34967,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8320442,4.8878689,0,0,50,47,-9,-9,5,1,1,0,0,2,2,1,374,281467.63,0,0,777.24658 -8536,10501,19186,19187,-9,-9,1,1,0,46,1,0,2,0,2,-9,1,1,0,0,2,6.2987943,6.194294,0,2,0,-9,3,0,12,25.997658,0,0,0,34,1,4,1,-9,3,2019,1,4,11,1,10,15,15,1,0,1,0,6.2122035,6.2122035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,48.450001,50,56,5,1,1,0,0,5,3,1,1590.5,209984.94,0,0,2242.5498 -8536,10501,19187,19186,-9,-9,4,1,1,34,1,0,2,0,1,-9,2,1,0,0,4,8.4886036,8.5929623,0,2,0,-9,3,0,-12,-35.587372,0,0,0,46,2,2,1,-9,-9,2019,1,1,10,1,38,38,15,1,0,1,0,16.164097,16.164097,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,51.25,48.450001,5,4,1,0,0,5,3,1,1590.5,209984.94,0,0,2242.5498 -8537,10502,19188,19189,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.6981883,7.9758554,1,0,-9,27,0,-6,-23.677923,0,0,0,69,1,4,1,-9,-9,2019,3,2,6,0,0,65,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.048171,7.8567853,0,0,57.16,56.150002,42.16,60.150002,6,1,1,0,0,7,5,1,261.5,2515552.5,0,0,3658.8088 -8537,10502,19189,19188,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,0,4,8.5208673,8.5088091,5.3462973,1,0,-9,27,0,6,-124.56577,0,0,0,63,1,4,3,2,2,2019,2,1,21,9,45,55,15,1,1,4,0,10.121247,10.121247,0,0,0,0,0,0,0,0,1,1,0,4.5707493,5.4494433,0,0,42.16,60.150002,57.16,56.150002,5,1,1,0,0,7,5,1,261.5,2515552.5,0,0,3658.8088 -8537,10503,19190,-9,19188,19189,4,1,0,21,2,0,0,0,2,1,2,1,0,0,3,6.871347,7.3630018,6.3339515,3,0,0,0,-9,0,-1062.5668,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,37,0,15,1,1,-9,1,3.3451457,3.3451457,0,0,0,0,0,0,0,0,1,1,0,6.3844419,0,0,0,36.619999,60.23,-9,-9,6,1,1,0,0,7,3,1,846,-93911.969,0,0,1205.2699 -8538,10504,19191,19192,-9,-9,1,1,1,26,1,0,0,0,3,-9,2,1,0,0,3,8.1259136,8.4389849,0,1,0,-9,2,0,0,-165.99545,0,1,0,26,2,4,1,2,3,2019,1,2,9,0,40,40,15,1,0,1,0,11.135566,11.135566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,27.129999,52.529999,4,1,1,0,0,10,4,0,690,34163.496,0,0,1717.8232 -8538,10504,19192,19191,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,7.1981893,7.0628924,0,1,0,-9,2,0,0,8.7255964,0,1,1,26,3,3,1,-9,-9,2019,1,1,20,7,24,0,15,1,1,1,0,6.5277491,6.5277491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.129999,52.529999,51.41,56.150002,5,1,1,0,1,10,4,0,690,34163.496,0,0,1717.8232 -8539,10505,19193,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,0,4,8.1785812,8.0654469,0,3,0,0,0,-9,0,-875.95313,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,30,44,15,1,0,-9,0,12.689795,12.689795,0,0,0,0,0,0,0,7,1,1,0,5.9005213,0,12.794415,3,42.84,55.93,-9,-9,6,1,1,0,0,5,4,1,1934,197974.67,0,0,1795.208 -8540,10506,19194,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,1,1,0,0,4,7.4791942,7.4317374,0,3,0,-9,0,-9,0,-1013.9601,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,35,0,15,1,0,-9,0,6.0728092,6.0728092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,6,3,0,1414,120089.82,0,0,1165.603 -8541,10507,19195,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1031.4241,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.459999,37.110001,-9,-9,3,1,1,0,0,12,1,0,315,228355.67,0,0,1687.0747 -8542,10508,19196,19197,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,11,0,-4,-29.026619,0,0,0,71,3,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.630001,39.759998,46.84,58.02,4,1,1,0,1,9,2,1,595.5,293392.56,0,0,1744.0085 -8542,10508,19197,19196,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,6.5777054,6.5904665,1,0,-9,46,0,4,28.277655,0,0,0,67,3,3,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9978495,6.4593744,0,0,46.84,58.02,54.630001,39.759998,6,1,1,0,1,9,2,1,595.5,293392.56,0,0,1744.0085 -8543,10509,19198,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,3,0,7.0790582,6.7493277,3,0,0,0,-9,0,-1062.8948,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0831432,0,0,48.029999,45.290001,-9,-9,4,1,1,0,0,1,2,1,738,139222.5,0,0,904.60651 -8544,10510,19199,19201,-9,-9,1,1,0,52,1,0,2,0,3,-9,2,1,0,0,3,8.0252657,7.8115711,0,2,0,-9,23,0,0,-49.455914,0,0,0,52,2,2,1,2,3,2019,1,2,10,0,43,40,15,1,0,1,0,7.6532087,7.6532087,0,0,0,0,0,0,0,0,1,1,0,2.229501,0,0,0,46.27,57.299999,56.57,37.790001,6,1,1,0,0,7,4,1,618,1783318.1,0,0,3367.4612 -8544,10510,19200,-9,19199,19201,3,1,0,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-960.09375,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.919998,56.779999,-9,-9,3,1,1,0,0,7,4,1,618,1783318.1,0,0,3367.4612 -8544,10510,19201,19199,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,2,8.0697985,8.0287008,0,2,0,-9,9,0,0,2.1892307,0,0,0,52,3,3,1,3,-9,2019,1,1,10,1,40,40,15,1,0,1,0,11.332335,11.332335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,37.790001,46.27,57.299999,4,1,1,0,0,7,4,1,618,1783318.1,0,0,3367.4612 -8545,10511,19202,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,4,8.2834082,8.5376835,0,3,0,-9,0,-9,0,-956.61835,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,50,0,15,1,0,-9,0,7.8192763,7.8192763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,4,4,0,739,214121.59,0,0,815.76892 -8546,10512,19203,-9,-9,-9,1,1,0,28,3,0,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1022.1515,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.240002,32.389999,-9,-9,6,4,5,0,0,7,1,0,590.5,0,0,0,1423.0869 -8546,10512,19204,-9,19203,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.25262,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,5,0,0,7,1,0,590.5,0,0,0,1423.0869 -8547,10513,19205,-9,19206,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.01685,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,0,2351,-73394.133,0,0,1208.9564 -8547,10513,19206,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,2,1,0,0,4,6.9803863,7.0462527,3.7762682,4,0,0,0,-9,0,-976.06281,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,18,24,15,1,0,-9,0,7.2585936,7.2585936,0,0,0,0,0,0,0,0,1,0,1,3.7460217,0,0,0,40.48,60.049999,-9,-9,6,1,1,0,0,12,2,0,2351,-73394.133,0,0,1208.9564 -8547,10513,19207,-9,19206,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1000.3448,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,2,0,2351,-73394.133,0,0,1208.9564 -8548,10514,19208,19209,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.7514372,8.796978,0,1,0,-9,4,0,-2,-130.67235,0,0,1,34,1,4,1,-9,-9,2019,1,1,17,5,38,38,15,1,1,1,0,18.553459,18.553459,0,0,0,0,0,0,0,0,0,0,0,4.2283597,0,0,0,43.439999,58.700001,41.060001,62.040001,6,1,1,0,0,2,5,1,672,166781.06,0,0,4886.4297 -8548,10514,19209,19208,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,9.217411,9.1154661,0,1,0,-9,4,0,2,3.6487334,0,0,0,32,1,4,1,2,2,2019,1,2,17,5,35,39,15,1,1,1,0,31.160389,31.160389,0,0,0,0,0,0,0,0,0,0,0,4.1249156,0,0,0,41.060001,62.040001,43.439999,58.700001,6,1,1,0,0,2,5,1,672,166781.06,0,0,4886.4297 -8549,10515,19210,19211,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,0,4,8.3603172,8.3882208,0,2,0,-9,22,0,5,-60.285938,0,0,0,49,1,4,3,2,1,2019,2,1,6,0,41,37,15,1,0,3,0,13.868781,13.868781,0,0,0,0,0,0,0,14.5,1,1,0,3.0606999,0,16.978479,3,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,11,3,1,361,2175178.3,0,0,2720.5598 -8549,10515,19211,19210,-9,-9,1,1,0,49,1,0,1,0,1,-9,6,3,0,1,4,0,0,0,2,0,-9,22,0,-5,61.818043,0,0,0,54,1,4,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.8076547,0,112.20548,3,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,11,3,1,361,2175178.3,0,0,2720.5598 -8549,10515,19212,-9,19211,19210,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.1912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,1,361,2175178.3,0,0,2720.5598 -8550,10516,19213,19214,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,2,8.0715599,8.2554035,0,2,0,-9,2,0,1,-43.864464,0,0,0,46,1,3,1,1,2,2019,1,4,12,0,30,31,15,1,0,1,0,9.6651421,9.6651421,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.769138,3,43.790001,43.549999,46.970001,53.060001,3,1,1,0,0,10,3,1,217,1059381.6,0,0,2727.9104 -8550,10516,19214,19213,-9,-9,4,1,1,46,1,0,1,0,1,-9,2,1,0,0,3,7.6576424,7.8267088,0,2,0,-9,2,0,-1,50.969517,0,0,0,47,1,2,1,-9,-9,2019,1,1,12,0,35,0,15,1,0,1,0,8.9755993,8.9755993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.970001,53.060001,43.790001,43.549999,3,1,1,0,0,10,3,1,217,1059381.6,0,0,2727.9104 -8550,10517,19215,-9,19213,19214,2,1,0,20,2,0,1,0,2,-9,7,2,0,0,3,0,5.1389551,5.2053895,3,0,0,0,-9,0,-911.39264,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,20,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3672934,0,0,0,30.6,62.02,-9,-9,2,1,1,0,0,10,2,1,546,-97074.258,0,0,-377.96988 -8550,10518,19216,-9,19213,19214,3,1,1,18,2,0,1,0,2,-9,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-1008.3771,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,-9,-9,2,1,1,0,0,10,3,1,504,20156.369,0,0,354.51068 -8551,10519,19217,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,4,3,0,0,3,0,7.3445106,7.3959723,3,0,0,0,-9,0,-997.46289,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5908217,0,0,58.02,42.119999,-9,-9,5,1,1,0,0,7,3,1,219,652688.38,0,0,494.35715 -8552,10520,19218,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1097.8269,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,9.1495943,0,0,0,1,1,0,0,0,0,0,53,47,-9,-9,6,1,1,0,0,2,1,0,1316,17631.143,0,0,710.45959 -8553,10521,19219,19220,-9,-9,1,1,0,54,1,0,1,0,3,-9,2,1,0,1,3,6.8820424,6.7518511,0,2,0,-9,10,0,-10,3.2581596,0,0,0,64,3,2,1,3,3,2019,1,2,7,0,15,15,15,1,0,1,0,6.3620234,6.3620234,0,0,0,0,0,0,0,111,1,1,0,0,0,115.69292,3,49.040001,55.860001,52.73,48.209999,4,1,1,0,0,9,4,0,915,2935553.8,0,0,3987.5127 -8553,10521,19220,19219,-9,-9,2,1,1,64,1,0,1,0,3,-9,2,1,0,0,2,8.6793413,8.6975365,6.8691921,2,0,-9,10,0,10,-67.710442,0,0,0,54,3,3,1,3,3,2019,1,1,7,0,38,38,15,1,0,1,0,20.046255,20.046255,0,0,0,0,0,0,0,0,1,1,0,1.2825277,6.726491,0,0,52.73,48.209999,49.040001,55.860001,6,1,1,0,0,9,4,0,915,2935553.8,0,0,3987.5127 -8553,10521,19221,-9,19219,19220,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.8781,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,0,915,2935553.8,0,0,3987.5127 -8554,10522,19222,19224,-9,-9,1,1,1,48,1,0,2,0,3,-9,2,1,0,0,3,8.2316122,8.1455555,0,2,0,-9,18,0,13,-38.887794,0,0,0,35,2,4,1,2,-9,2019,1,2,6,0,40,40,15,1,0,1,0,8.7171469,8.7171469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,8,4,0,707,271939.44,0,0,3571.8176 -8554,10522,19223,-9,19224,19222,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.7951,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,4,0,707,271939.44,0,0,3571.8176 -8554,10522,19224,19222,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,8.2517052,8.4023762,0,2,0,-9,18,0,-13,-84.971443,0,0,1,48,3,3,1,-9,-9,2019,1,1,6,0,35,30,15,1,0,1,0,12.076803,12.076803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,8,4,0,707,271939.44,0,0,3571.8176 -8554,10522,19225,-9,19224,19222,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.8204,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,8,4,0,707,271939.44,0,0,3571.8176 -8555,10523,19226,19227,-9,-9,2,1,0,59,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,9,0,-3,-5.039371,0,0,0,62,2,2,1,3,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.16,29.15,37.889999,41.150002,5,2,3,0,0,8,3,1,445.5,770343,0,0,1247.1 -8555,10523,19227,19226,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,8.2375698,8.1251831,0,1,0,-9,39,0,3,-115.09763,0,0,0,59,3,2,3,-9,-9,2019,2,2,9,0,36,40,15,1,0,3,0,11.705303,11.705303,0,0,0,0,0,0,0,14.5,0,0,0,0,0,19.125484,1,37.889999,41.150002,43.16,29.15,3,2,3,0,0,8,3,1,445.5,770343,0,0,1247.1 -8555,10524,19228,-9,19226,19227,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.4693031,8.9948168,0,3,0,0,0,-9,0,-999.81311,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,37,43,15,1,0,-9,1,18.84494,18.84494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,5,1,427,6588.8457,0,0,2867.4636 -8555,10525,19229,-9,19226,19227,4,1,1,23,2,0,0,0,2,1,2,1,0,0,4,7.6686835,7.5482397,0,3,0,0,0,-9,0,-1062.7322,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.071507,6.071507,0,0,0,0,0,0,0,0,0,0,0,1.4875418,0,0,0,48,59,-9,-9,5,2,3,0,0,8,3,1,593,69412.906,0,0,1749.1207 -8556,10526,19230,19231,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,1,0,0,0,0,69,3,4,3,2,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,37.579243,2.1767147,26.589174,0,0,0,1,1,0,0,0,0,0,50.380001,48.299999,53.5,53.700001,6,1,1,0,0,13,1,1,507.5,29492.578,0,0,1080.5559 -8556,10526,19231,19230,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-1,0,0,0,0,70,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,11.524795,3,53.5,53.700001,50.380001,48.299999,6,1,1,0,0,13,1,1,507.5,29492.578,0,0,1080.5559 -8556,10527,19232,-9,19231,19230,3,1,1,34,2,0,0,0,2,-9,2,1,0,0,3,8.3344526,8.2048941,0,3,0,0,0,-9,0,-981.82178,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,60,60,15,1,0,-9,1,6.2442956,6.2442956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.75,53.700001,-9,-9,5,1,1,0,0,13,4,1,920,36653.426,0,0,2603.0959 -8556,10528,19233,-9,19231,19230,4,1,0,39,2,0,0,0,2,-9,2,1,0,0,3,8.0579052,7.9079967,0,3,0,0,0,-9,0,-1040.6548,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,1,10.429682,10.429682,0,0,0,0,0,0,0,0,1,1,0,4.1673408,0,0,0,54.900002,54.529999,-9,-9,6,1,1,0,0,13,4,1,370,63401.715,0,0,1904.9409 -8557,10529,19234,19235,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,0,5,7.9850512,8.0822697,0,1,0,-9,6,0,2,-89.704163,0,0,1,33,2,4,1,2,-9,2019,1,2,10,1,15,50,15,1,0,1,0,24.160086,24.160086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,52.77,55.330002,5,1,1,0,0,5,4,1,654.5,422933.06,0,0,2629.4331 -8557,10529,19235,19234,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,0,4,7.9875426,7.8279433,0,1,0,-9,6,0,-2,-9.2494974,0,0,0,35,2,5,1,-9,-9,2019,1,1,12,1,35,46,15,1,0,1,0,9.001524,9.001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.330002,51.139999,60.450001,5,1,1,0,0,5,4,1,654.5,422933.06,0,0,2629.4331 -8558,10530,19236,-9,19237,19240,4,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.75745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,979.20001,163177.2,0,0,2743.2292 -8558,10530,19237,19240,-9,-9,2,1,0,32,1,2,3,0,2,-9,2,1,0,0,3,8.0171328,7.9782176,0,2,0,-9,5,0,1,43.690659,0,0,1,31,2,3,1,-9,-9,2019,1,1,9,0,30,19,15,1,0,1,0,9.2483034,9.2483034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.619999,49.439999,54.259998,6,1,1,0,0,2,3,0,979.20001,163177.2,0,0,2743.2292 -8558,10530,19238,-9,19237,19240,5,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.6794,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,979.20001,163177.2,0,0,2743.2292 -8558,10530,19239,-9,19237,-9,3,1,1,7,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.12201,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,979.20001,163177.2,0,0,2743.2292 -8558,10530,19240,19237,-9,-9,1,1,1,31,1,2,3,0,2,-9,2,1,0,0,3,8.0540447,7.8711343,0,2,0,-9,5,0,-1,53.988102,0,0,0,32,2,3,1,2,2,2019,1,2,13,3,40,47,15,1,0,1,0,7.5220213,7.5220213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,54.259998,50.18,52.619999,6,1,1,0,0,2,3,0,979.20001,163177.2,0,0,2743.2292 -8559,10531,19241,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,1,1,0,0,5,5.2417336,5.4787512,4.766746,3,0,0,0,-9,0,-971.8147,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,25,15,1,0,-9,0,.94172543,.94172543,0,0,0,0,0,0,0,0,1,0,1,6.6253333,5.0309916,0,0,54.099998,59.110001,-9,-9,2,1,1,0,0,7,2,1,560,304568.5,0,0,2228.3857 -8559,10532,19242,-9,19241,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.6445255,7.6901851,0,3,0,0,0,-9,0,-1066.7673,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,37,37,15,1,0,-9,1,8.1447649,8.1447649,0,0,0,0,0,0,0,0,1,0,1,2.270961,0,0,0,40.889999,54.029999,-9,-9,6,1,1,0,0,7,3,1,649,-134788.41,0,0,1470.5166 -8559,10533,19243,-9,19241,-9,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,6.6475196,6.2141223,0,3,0,0,0,-9,0,-1143.8678,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,16,0,15,1,0,-9,1,3.3453901,3.3453901,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,7,2,1,337,149929.88,0,0,1179.9272 -8560,10534,19244,19245,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.2787628,8.493597,7.3663735,1,0,-9,9,0,6,69.878967,0,0,0,51,2,4,3,-9,-9,2019,2,1,21,8,38,37,15,1,1,3,0,12.575455,12.575455,0,0,0,0,0,0,0,0,0,0,0,0,8.0390158,0,0,39.150002,41.419998,30.73,56.34,4,1,1,0,0,6,4,1,319.5,-68377.867,0,0,2671.5532 -8560,10534,19245,19244,-9,-9,1,1,1,51,1,0,0,0,2,-9,6,3,0,0,4,5.1735377,4.9694538,0,1,0,-9,9,0,-6,15.282484,0,0,0,57,2,3,1,3,3,2019,3,2,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4486775,0,0,0,30.73,56.34,39.150002,41.419998,4,1,1,0,0,6,4,1,319.5,-68377.867,0,0,2671.5532 -8560,10535,19246,-9,19244,19245,3,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,8.0838327,8.0956335,0,3,0,0,0,-9,0,-961.83197,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,41,38,15,1,0,-9,1,9.5958815,9.5958815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,6,4,1,148,171416.47,0,0,966.43207 -8561,10536,19247,19248,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,4.7643099,4.8704715,1,0,-9,51,0,1,3.5116942,0,0,0,68,3,2,3,3,3,2019,4,2,4,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0680013,4.8091631,0,0,62.490002,55.09,56.189999,46.16,7,1,1,0,0,9,2,1,856.5,66466.117,0,0,1708.6338 -8561,10536,19248,19247,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,6.2098737,5.841702,1,0,-9,7,0,-1,-58.425102,0,0,0,69,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.494575,6.0686054,0,0,56.189999,46.16,62.490002,55.09,6,1,1,0,0,9,2,1,856.5,66466.117,0,0,1708.6338 -8562,10537,19249,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,4.2524018,4.1032739,3,0,0,0,-9,0,-1011.2258,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.492753,4.251493,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,5,2,1,1422,240745.22,0,0,-434.49969 -8563,10538,19250,-9,19253,19251,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1052.1705,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,7,3,0,868.25,1569369,0,0,1752.8572 -8563,10538,19251,19253,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,3,8.1865816,8.1343813,0,2,0,-9,9,0,15,17.991953,0,0,0,36,1,3,1,3,2,2019,1,2,14,3,38,38,15,1,0,1,0,11.166709,11.166709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.299999,58.700001,36.619999,60.23,5,1,1,0,1,7,3,0,868.25,1569369,0,0,1752.8572 -8563,10538,19252,-9,19253,19251,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1065.6996,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,7,3,0,868.25,1569369,0,0,1752.8572 -8563,10538,19253,19251,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,7.8373442,7.9480176,0,2,0,-9,9,0,-15,42.703922,0,0,1,51,2,3,1,-9,-9,2019,1,1,14,2,45,45,15,1,0,1,0,5.4348693,5.4348693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.619999,60.23,34.299999,58.700001,2,1,1,0,0,7,3,0,868.25,1569369,0,0,1752.8572 -8564,10539,19254,-9,-9,-9,1,1,0,42,3,0,0,0,3,-9,2,1,0,0,3,7.9747877,7.9633479,0,3,0,0,0,-9,0,-984.64648,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,22,42,15,1,0,-9,0,14.24105,14.24105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.59,49.639999,-9,-9,7,3,4,0,0,8,4,0,2259,157747.81,0,0,1376.2562 -8565,10540,19255,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,5,8.8585072,8.944581,0,3,0,0,0,-9,0,-1151.15,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,42,15,1,0,-9,0,20.940596,20.940596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,5,1,192,572799.88,0,0,2570.2126 -8566,10541,19256,19257,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,8.3758202,8.2031126,0,1,0,-9,32,0,-2,-52.643951,0,0,0,53,2,3,1,3,3,2019,1,2,14,2,36,39,15,1,0,1,0,9.60114,9.60114,0,0,0,0,0,0,0,0,1,1,0,.38487223,0,0,0,49.040001,45.330002,40.490002,53.290001,3,2,3,0,0,8,5,1,1012,1506383.8,0,0,2979.3003 -8566,10541,19257,19256,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.4672441,8.4468098,0,1,0,-9,32,0,2,31.552296,0,0,0,51,2,2,1,3,3,2019,1,1,14,2,40,39,15,1,0,1,0,12.892203,12.892203,0,0,0,0,0,0,0,0,1,1,0,7.0423422,0,0,0,40.490002,53.290001,49.040001,45.330002,3,2,3,0,0,8,5,1,1012,1506383.8,0,0,2979.3003 -8566,10542,19258,-9,19256,19257,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.5554352,7.343852,0,3,0,0,0,-9,0,-1099.6266,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.2578239,6.2578239,0,0,0,0,0,0,0,0,1,1,0,.51648939,0,0,0,48,59,-9,-9,5,2,3,0,0,8,3,1,667,-27600.354,0,0,980.82288 -8566,10543,19259,-9,19256,19257,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.7281384,7.3496923,0,3,0,0,0,-9,0,-958.19708,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,20,0,15,1,0,-9,1,14.068907,14.068907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,3,1,102,77873.367,0,0,1314.2926 -8567,10544,19260,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,4,0,8.0662012,7.916563,3,0,0,0,-9,0,-849.14587,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4440875,8.0524378,0,0,52.369999,56.93,-9,-9,6,1,1,0,0,11,4,1,903,634655.38,0,0,1452.3086 -8568,10545,19261,-9,-9,-9,1,1,0,89,3,0,0,0,1,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-907.24097,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.4617977,0,40.437141,0,0,40.163513,0,1,1,0,0,0,0,0,53.970001,24.540001,-9,-9,5,2,3,0,0,8,1,1,1075,203463.92,0,0,307.73987 -8569,10546,19262,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,1,7.9014654,7.6709008,4.9264016,3,0,0,0,-9,0,-1097.1563,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,16,15,15,1,1,-9,0,14.003409,14.003409,0,0,0,0,0,0,0,0,1,1,0,5.3812647,0,0,0,6,53.389999,-9,-9,2,1,1,0,0,9,3,1,771,444644.66,0,0,1.9314545 -8570,10547,19263,19264,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,60,0,3,117.22882,0,0,0,80,2,2,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,3.9037189,0,0,0,0,0,1,1,0,0,0,0,0,51.84,17.360001,61.93,22.040001,2,1,1,0,0,8,2,1,266.5,697635.13,0,0,2448.7405 -8570,10547,19264,19263,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,2,0,7.6752496,7.4627271,1,0,-9,60,0,-3,-37.312206,0,0,0,83,3,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,42,1,1,0,.68691468,7.6258411,36.741951,1,61.93,22.040001,51.84,17.360001,6,1,1,0,0,8,2,1,266.5,697635.13,0,0,2448.7405 -8571,10548,19265,-9,-9,-9,1,1,1,60,2,0,1,0,1,-9,2,1,0,0,5,8.6148443,8.5188093,0,4,0,0,0,-9,0,-1032.3135,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,25,40,15,1,0,-9,0,23.149607,23.149607,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.470001,59.400002,-9,-9,6,1,1,0,1,12,4,1,53,2561181.8,0,0,3373.3499 -8572,10549,19266,-9,-9,-9,3,1,0,19,2,0,0,0,2,0,7,2,0,0,5,0,7.0821095,7.5027585,3,0,0,0,-9,0,-1037.066,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,16,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7043805,0,0,0,35.529999,63.810001,-9,-9,6,1,1,0,0,4,3,1,739,0,0,0,169.1367 -8573,10550,19267,19268,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.4505768,6.3938694,1,0,-9,10,0,9,3.3391085,0,0,0,64,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2873716,0,0,61.040001,39.41,60.290001,52.110001,6,1,1,0,0,9,2,1,1475,404637.81,0,0,1880.2842 -8573,10550,19268,19267,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,7.2685494,7.1880603,1,0,-9,10,0,0,-56.309509,0,0,0,73,2,3,3,3,3,2019,4,2,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1089158,0,0,60.290001,52.110001,61.040001,39.41,5,1,1,0,0,9,2,1,1475,404637.81,0,0,1880.2842 -8574,10551,19269,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,0,4,9.5023861,9.6349888,0,3,0,0,0,-9,0,-993.16083,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,16,15,1,0,-9,0,42.600952,42.600952,0,0,0,0,0,0,0,0,0,0,0,2.2903495,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,7,5,1,303,2516619.8,0,0,6435.7383 -8575,10552,19270,19271,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.3556776,8.3904314,0,1,0,-9,6,0,3,84.043404,0,0,0,27,1,4,1,-9,-9,2019,1,1,12,3,39,36,15,1,0,1,0,13.435912,13.435912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.950001,61.240002,41.060001,62.040001,6,1,1,0,0,12,5,1,437.5,47334.445,0,0,3321.3865 -8575,10552,19271,19270,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.490447,8.6872663,0,1,0,-9,6,0,-3,-14.954052,0,1,1,30,1,4,1,-9,-9,2019,1,2,9,0,40,45,15,1,0,1,0,12.404961,12.404961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.060001,62.040001,42.950001,61.240002,6,1,1,0,0,12,5,1,437.5,47334.445,0,0,3321.3865 -8576,10553,19272,-9,-9,-9,1,1,1,28,2,0,0,1,1,0,7,2,0,0,3,5.8814211,5.9175816,0,3,0,-9,0,0,0,-998.01587,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7170248,0,0,0,41.470001,58.080002,-9,-9,5,1,1,0,0,9,2,0,163,-54750.195,0,0,2644.0974 -8577,10554,19273,-9,-9,-9,1,1,1,75,2,0,0,0,2,-9,4,3,0,0,5,0,6.9006796,6.9451723,3,0,0,0,-9,0,-880.16986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48148656,7.1500945,0,0,58.290001,46.150002,-9,-9,6,1,1,0,0,9,2,1,867,80519.172,0,0,1384.527 -8578,10555,19274,19275,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,0,4,7.545476,7.763195,7.6252732,1,0,-9,4,0,8,-41.424847,0,0,0,51,2,3,1,-9,-9,2019,1,1,8,0,35,30,15,1,0,1,0,6.2475257,6.2475257,0,0,0,0,0,0,0,2,0,0,0,6.6977687,7.424706,2.8314598,3,57.16,56.150002,38.849998,53.990002,6,1,1,0,0,11,3,1,719,1151184.3,0,0,3643.1904 -8578,10555,19275,19274,-9,-9,1,1,0,51,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,4,0,-8,-21.959484,0,0,0,59,1,4,1,3,2,2019,1,2,22,9,24,21,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7836246,0,0,0,38.849998,53.990002,57.16,56.150002,3,1,1,0,0,11,3,1,719,1151184.3,0,0,3643.1904 -8579,10556,19276,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,31,0,1,-84.379181,0,0,0,-9,-9,-9,-9,2,3,2019,4,2,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,53.860001,52.34,6,1,1,0,0,10,2,1,454,-52227.246,0,0,0 -8579,10557,19277,-9,-9,-9,2,1,1,54,2,0,0,0,2,-9,4,3,0,0,5,0,6.4535575,6.5881495,1,0,-9,31,0,-1,-24.544518,0,0,0,-9,-9,-9,-9,2,2,2019,4,1,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.8731117,0,.48402667,3,53.860001,52.34,57.330002,53.459999,6,1,1,0,0,10,2,1,171,267798.25,0,0,2146.3372 -8580,10558,19278,19280,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,9.2759781,9.4170341,0,2,0,-9,28,0,2,-24.599361,0,0,0,49,2,4,3,2,2,2019,2,1,12,1,41,43,15,1,0,3,0,34.869659,34.869659,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.251106,3,48.93,50.549999,55.439999,52.990002,5,1,1,0,0,12,5,1,903.33331,376269.91,0,0,4682.8223 -8580,10558,19279,-9,19280,19278,6,1,1,17,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,2,0,0,0,-9,0,-927.9057,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,903.33331,376269.91,0,0,4682.8223 -8580,10558,19280,19278,-9,-9,1,1,0,49,1,0,1,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,28,0,-2,67.537262,0,0,0,51,1,3,1,1,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.39552,3,55.439999,52.990002,48.93,50.549999,6,1,1,0,0,12,5,1,903.33331,376269.91,0,0,4682.8223 -8580,10559,19281,-9,19280,19278,3,1,1,23,2,0,1,1,1,-9,7,2,0,0,4,6.4525967,6.945333,0,3,0,0,0,-9,0,-836.43903,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,12,2,1,1073,-9772.873,0,0,-527.21362 -8580,10560,19282,-9,19280,19278,4,1,1,21,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-887.48956,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,1,1,678,103452.67,0,0,1862.627 -8580,10561,19283,-9,19280,19278,5,1,1,21,2,0,1,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-975.86786,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.32,58.470001,-9,-9,4,1,1,0,0,12,1,1,645,-23520.295,0,0,0 -8581,10562,19284,-9,-9,-9,1,1,1,81,2,0,0,0,2,-9,4,3,0,0,3,0,6.7656469,6.4826078,3,0,0,0,-9,0,-1016.4355,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8611927,0,0,62.84,46.849998,-9,-9,6,1,1,0,0,12,2,1,55,-172431.47,0,0,1316.6816 -8581,10563,19285,-9,-9,-9,2,1,1,88,2,0,0,0,2,-9,4,3,0,0,2,0,6.168016,6.123682,3,0,0,0,-9,0,-1037.376,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,17.105156,0,0,1,1,0,0,6.4435811,0,0,60.549999,24.049999,-9,-9,6,1,1,0,0,12,2,1,130,6808.0059,0,0,220.69241 -8581,10564,19286,-9,-9,-9,3,1,0,83,2,0,0,0,3,-9,4,3,0,0,2,0,7.0727868,6.9825821,3,0,0,0,-9,0,-1058.2167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9896994,0,0,49.040001,37.09,-9,-9,4,1,1,0,0,12,2,1,418,333002.38,0,0,874.66077 -8582,10565,19287,19288,-9,-9,2,1,1,84,1,0,0,0,1,-9,4,3,0,1,3,0,7.6329951,7.6016593,1,0,-9,60,0,3,80.532967,0,0,0,81,1,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,71.219879,0,73.811317,0,0,0,1,1,0,2.3495924,7.8144031,0,0,54,46,51,46,6,1,1,0,0,4,3,1,932.5,2754639,0,0,3552.9839 -8582,10565,19288,19287,-9,-9,1,1,0,81,1,0,0,0,1,-9,4,3,0,0,3,0,7.0489554,7.2305217,1,0,-9,58,0,-3,173.22707,0,0,0,84,1,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,76.616158,0,0,120,1,1,0,2.6024837,7.3630929,119.65977,1,51,46,54,46,5,1,1,0,0,4,3,1,932.5,2754639,0,0,3552.9839 -8582,10566,19289,-9,19288,19287,3,1,1,51,2,0,0,0,2,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1058.9996,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,106.74625,3,57.919998,51.82,-9,-9,3,1,1,0,0,4,1,1,1046,97793.125,0,0,-952.43262 -8583,10567,19290,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,1,0,7.7778101,7.4629145,3,0,0,0,-9,0,-964.91235,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0172522,7.6060667,0,0,42.040001,38.060001,-9,-9,6,1,1,0,0,8,3,1,154,1155639.5,0,0,1395.2694 -8583,10568,19291,-9,-9,19290,2,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.7094364,8.7498903,0,3,0,0,0,-9,0,-1046.0627,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,48,35,15,1,0,-9,1,13.054732,13.054732,0,0,0,0,0,0,0,2,1,1,0,4.7855353,0,6.5064263,3,48.869999,58.549999,-9,-9,6,1,1,0,0,8,5,1,133,-49892.957,0,0,1430.1488 -8584,10569,19292,-9,19295,19294,9,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-808.89252,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,703.25,140210.84,0,0,1610.3552 -8584,10569,19293,-9,19295,19294,8,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.14215,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,1,703.25,140210.84,0,0,1610.3552 -8584,10569,19294,19295,19300,19299,1,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.067976,7.9103012,0,2,0,-9,6,0,6,51.613152,0,0,0,29,3,4,3,3,3,2019,2,7,10,1,37,38,15,1,0,3,0,9.6971312,9.6971312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,47,57,5,2,3,0,0,8,3,1,703.25,140210.84,0,0,1610.3552 -8584,10569,19295,19294,-9,-9,7,1,0,29,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-6,-10.085113,0,1,1,35,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,50,57,5,2,3,0,0,8,3,1,703.25,140210.84,0,0,1610.3552 -8584,10570,19296,-9,19300,19299,2,1,1,28,2,0,2,0,2,-9,2,1,0,0,4,7.5231886,7.4981794,0,3,0,0,0,-9,0,-982.64124,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,37,0,15,1,0,-9,1,6.329895,6.329895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,3,1,633,-25736.25,0,0,2286.5503 -8584,10571,19297,-9,19300,19299,3,1,0,19,2,0,2,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-999.36853,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.220001,53.700001,-9,-9,5,2,3,0,0,8,1,1,2199,-109090.34,0,0,1131.4978 -8584,10572,19298,-9,19300,19299,4,1,0,21,2,0,2,0,2,1,2,1,0,0,4,7.5215788,7.2675123,0,3,0,0,0,-9,0,-1110.5895,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,37,0,15,1,0,-9,1,3.8966718,3.8966718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,3,1,979,0,0,0,1500.9816 -8584,10573,19299,19300,-9,-9,6,1,1,62,1,0,2,0,3,-9,8,3,1,1,3,0,7.0148802,7.4717431,2,0,-9,8,0,5,46.490643,0,0,0,57,3,3,3,-9,-9,2019,4,5,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0695839,0,0,51,48,49,48,5,2,3,0,0,8,2,1,226,1829856.3,0,0,2797.5356 -8584,10573,19300,19299,-9,-9,5,1,0,57,1,0,2,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,42,0,-5,78.798447,0,0,0,62,3,3,3,3,2,2019,4,6,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,48,5,2,3,0,0,8,2,1,226,1829856.3,0,0,2797.5356 -8585,10574,19301,-9,19302,19303,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.87842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,2,0,611,-1253.9525,0,0,2788.5803 -8585,10574,19302,19303,-9,-9,1,1,0,30,1,0,3,0,2,-9,2,1,0,0,4,7.6271143,7.6241879,0,2,0,-9,4,0,-7,26.596506,0,0,1,37,2,4,3,-9,-9,2019,2,2,12,0,37,0,15,1,0,3,0,5.8148289,5.8148289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,1,2,0,611,-1253.9525,0,0,2788.5803 -8585,10574,19303,19302,-9,-9,2,1,1,37,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,7,-55.502483,0,0,0,30,2,4,1,-9,-9,2019,3,1,9,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0269716,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,1,2,0,611,-1253.9525,0,0,2788.5803 -8586,10575,19304,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,4,0,7.1825657,7.1051106,3,0,0,0,-9,0,-1067.656,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2884243,7.2297482,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,3,1,731,736383.5,0,0,2815.3975 -8587,10576,19305,19306,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,0,3,0,6.1577072,6.184577,1,0,-9,68,0,-1,-83.029945,0,0,0,88,2,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,11.393496,0,0,0,0,0,1,1,0,0,5.976078,0,0,53,44,64.389999,28.77,6,1,1,0,0,5,2,0,490,356732.13,0,0,1952.7992 -8587,10576,19306,19305,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,1,2,0,4.8288479,4.6635571,1,0,-9,68,0,1,71.783791,0,0,0,87,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.2392933,4.7078056,9.4084473,1,64.389999,28.77,53,44,5,1,1,0,0,5,2,0,490,356732.13,0,0,1952.7992 -8588,10577,19307,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-977.04028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1897804,0,0,0,23.93,39.459999,-9,-9,2,1,1,0,0,8,1,0,740,35648.605,0,0,841.25311 -8589,10578,19308,-9,-9,-9,1,1,0,40,3,0,2,0,1,-9,2,1,0,0,1,8.2276974,8.2473545,0,4,0,0,0,-9,0,-1025.0811,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,18,6,38,37,15,1,1,-9,0,11.214908,11.214908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.060001,44.200001,-9,-9,4,1,1,0,0,2,3,1,730,399867.72,0,0,1876.9766 -8589,10578,19309,-9,19308,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.5951,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,730,399867.72,0,0,1876.9766 -8589,10578,19310,-9,19308,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-869.15356,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,730,399867.72,0,0,1876.9766 -8590,10579,19311,-9,-9,-9,2,1,1,41,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-926.86328,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.490002,53.189999,-9,-9,3,1,1,1,1,5,1,1,273,97383.047,0,0,350.22049 -8591,10580,19312,19313,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,5,8.1736984,8.6138983,0,1,0,-9,8,0,-1,-136.93089,0,1,0,30,1,5,1,2,2,2019,1,2,9,0,45,0,15,1,0,1,0,11.615882,11.615882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.040001,60.470001,53.060001,55.68,5,1,1,0,0,12,5,1,1075.5,63162.941,0,0,4452.8193 -8591,10580,19313,19312,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,5,8.5695486,8.7837009,0,1,0,-9,8,0,1,106.09288,0,0,1,29,1,5,1,-9,-9,2019,1,1,10,2,37,45,15,1,0,1,0,18.10013,18.10013,0,0,0,0,0,0,0,0,0,0,0,2.8080628,0,0,0,53.060001,55.68,54.040001,60.470001,6,1,1,0,0,12,5,1,1075.5,63162.941,0,0,4452.8193 -8592,10581,19314,19315,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,8.0306778,8.1991587,1,0,-9,45,0,8,55.385601,0,0,0,76,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.6860719,8.1909838,0,0,60.849998,42.119999,58.099998,43.540001,6,1,1,0,0,5,3,1,1419.5,545900.56,0,0,2834.563 -8592,10581,19315,19314,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,-8,-34.021736,0,0,0,84,3,4,3,1,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.310946,0,0,0,58.099998,43.540001,60.849998,42.119999,6,1,1,0,0,5,3,1,1419.5,545900.56,0,0,2834.563 -8593,10582,19316,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-917.27771,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,20,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.130001,55.900002,-9,-9,3,2,3,1,1,7,1,0,468,0,0,0,900.24274 -8594,10583,19317,-9,19318,19319,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1060.0806,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,2,3,0,0,2,2,1,294.25,153995.59,0,0,1227.6589 -8594,10583,19318,19319,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,2,7.527606,7.3608742,0,2,0,-9,15,0,-1,-82.471581,0,0,1,34,3,4,1,3,3,2019,1,2,24,11,20,24,15,1,1,1,0,8.435544,8.435544,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,23.620001,51.220001,51.240002,58.84,3,2,3,0,0,2,2,1,294.25,153995.59,0,0,1227.6589 -8594,10583,19319,19318,-9,-9,2,1,1,34,1,0,2,0,3,-9,2,1,0,0,4,0,0,0,2,0,-9,15,0,1,43.219601,0,0,0,33,2,2,1,3,3,2019,1,1,10,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.240002,58.84,23.620001,51.220001,5,2,3,0,0,2,2,1,294.25,153995.59,0,0,1227.6589 -8594,10583,19320,-9,19318,19319,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.7227,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,1,294.25,153995.59,0,0,1227.6589 -8595,10584,19321,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,3,0,5.0662732,5.3942251,3,0,0,0,-9,0,-1017.2771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1678076,0,0,59.900002,48.18,-9,-9,5,1,1,0,0,13,2,0,364,367323.25,0,0,598.63367 -8596,10585,19322,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,1,0,0,0,1,0,-9,2,0,4,-8.449132,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,27,10,0,80,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.439999,52.860001,41.169998,59.310001,3,1,1,0,0,4,2,1,417,74548.047,0,0,0 -8596,10586,19323,-9,-9,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,7.4131069,7.5452552,0,1,0,-9,2,0,-4,26.974148,-9,1,0,-9,-9,-9,-9,-9,-9,2019,1,1,2,0,20,0,15,1,0,-9,0,12.582989,12.582989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,32.439999,52.860001,6,1,1,0,0,4,2,1,486,-174676.42,0,0,-762.54883 -8597,10587,19324,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,7.4252377,7.3546486,3,0,0,0,-9,0,-1045.5493,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4035549,7.5358167,8.8924313,3,59.220001,37.52,-9,-9,6,1,1,0,0,11,3,1,1345,60273.695,0,0,2598.0022 -8598,10588,19325,19326,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,8.9739799,9.0409727,0,1,0,-9,7,0,-4,5.1115308,0,0,0,62,1,3,1,2,-9,2019,1,1,7,0,52,40,15,1,0,1,0,16.19371,16.19371,0,0,0,0,0,0,0,0,0,0,0,7.7001281,0,0,0,48.869999,58.549999,49.040001,55.860001,6,1,1,0,0,7,5,1,981,2102433.8,0,0,8927.3027 -8598,10588,19326,19325,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,9.3145466,9.2548876,0,1,0,-9,7,0,4,-10.042439,0,0,0,58,1,4,1,2,1,2019,1,2,11,0,60,50,15,1,0,1,0,26.882706,26.882706,0,0,0,0,0,0,0,2,0,0,0,7.875423,0,4.7988439,3,49.040001,55.860001,48.869999,58.549999,5,1,1,0,0,7,5,1,981,2102433.8,0,0,8927.3027 -8599,10589,19327,19328,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,6.0769954,5.8363819,1,0,-9,52,0,2,34.740482,0,0,0,71,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0375481,5.6256313,0,0,60.93,36.009998,57.59,46.650002,6,1,1,0,0,9,2,1,616,456318.44,0,0,1256.2236 -8599,10589,19328,19327,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,-2,43.222195,0,0,0,73,3,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.59,46.650002,60.93,36.009998,6,1,1,0,0,9,2,1,616,456318.44,0,0,1256.2236 -8600,10590,19329,19330,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.8229256,9.0544119,0,1,0,-9,8,0,0,-10.933476,0,0,0,54,1,3,1,-9,-9,2019,1,1,9,1,36,40,15,1,0,1,0,23.579912,23.579912,0,0,0,0,0,0,0,0,0,0,0,4.8695536,0,0,0,53,54,43.650002,58.279999,6,1,1,0,0,10,5,1,2197,708640.81,0,0,4411.1328 -8600,10590,19330,19329,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,3,7.7091966,7.8241916,0,1,0,-9,8,0,0,-39.314205,0,0,0,54,2,4,1,2,2,2019,1,2,15,4,19,18,15,1,1,1,0,15.816554,15.816554,0,0,0,0,0,0,0,0,0,0,0,7.5497785,0,0,0,43.650002,58.279999,53,54,5,1,1,0,0,10,5,1,2197,708640.81,0,0,4411.1328 -8601,10591,19331,-9,19332,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1029.5613,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,1,0,776,49535.945,0,0,1189.5935 -8601,10591,19332,-9,-9,-9,1,1,0,35,2,0,3,0,2,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-953.36884,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.389999,65.879997,-9,-9,7,1,1,1,0,4,1,0,776,49535.945,0,0,1189.5935 -8601,10591,19333,-9,19332,-9,3,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.75195,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,1,0,776,49535.945,0,0,1189.5935 -8601,10591,19334,-9,19332,-9,2,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1069.7169,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,4,1,0,776,49535.945,0,0,1189.5935 -8602,10592,19335,-9,19336,19337,5,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.15637,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.869999,53.439999,-9,-9,6,1,1,0,0,7,2,1,588,151935.28,0,0,1719.6609 -8602,10592,19336,19337,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,0,4,7.316525,7.078476,0,2,0,-9,26,0,-1,-10.093167,0,0,0,48,2,4,3,2,3,2019,2,2,16,5,24,24,15,1,1,3,0,6.5362744,6.5362744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.669998,63.540001,53,54,4,1,1,0,1,7,2,1,588,151935.28,0,0,1719.6609 -8602,10592,19337,19336,-9,-9,2,1,1,48,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,26,0,1,49.539581,0,0,0,47,3,4,1,3,3,2019,3,1,9,1,0,18,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.903919,0,0,0,53,54,32.669998,63.540001,6,1,1,1,0,7,2,1,588,151935.28,0,0,1719.6609 -8602,10593,19338,-9,19336,19337,3,1,1,22,2,0,1,0,2,-9,2,1,0,0,3,7.7267284,7.4186902,0,3,0,0,0,-9,0,-980.16302,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,8,15,1,0,-9,1,7.1672735,7.1672735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.310001,-9,-9,6,1,1,0,0,7,3,1,106,77653.914,0,0,-311.70288 -8602,10594,19339,-9,19336,19337,4,1,1,21,2,0,1,0,3,-9,2,1,0,0,4,7.8130646,7.7817616,0,3,0,0,0,-9,0,-898.73126,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,46,15,1,0,-9,1,8.0203753,8.0203753,0,0,0,0,0,0,0,0,1,1,0,3.2529192,0,0,0,49,58,-9,-9,5,1,1,0,0,7,3,1,576,-36438.617,0,0,339.21527 -8603,10595,19340,19341,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,8.1682043,8.388443,0,1,0,-9,28,0,0,242.17989,0,0,0,61,1,5,3,3,3,2019,2,2,7,0,37,37,15,1,0,4,0,12.023707,12.023707,0,0,0,0,0,0,0,0,0,0,0,5.0440235,0,0,0,58.049999,46.310001,57.060001,57.759998,6,1,1,0,0,1,4,1,333,998919.25,0,0,3355.7798 -8603,10595,19341,19340,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,0,5,0,7.4843364,7.2750678,1,0,-9,28,0,0,-79.541588,0,0,0,61,2,3,1,2,2,2019,3,1,6,0,0,44,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2386875,7.405602,0,0,57.060001,57.759998,58.049999,46.310001,7,1,1,0,0,1,4,1,333,998919.25,0,0,3355.7798 -8604,10596,19342,19343,-9,-9,1,1,1,57,1,0,0,0,1,-9,4,3,0,0,1,0,7.8484907,7.6996808,1,0,-9,27,0,-10,-159.3028,0,0,0,67,2,4,1,2,2,2019,3,2,31,12,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3654754,7.8213387,0,0,20.360001,30.35,57.16,56.150002,2,1,1,0,1,10,4,1,487,-60443.016,0,0,4142.9985 -8604,10596,19343,19342,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,0,4,7.3441248,7.7712855,7.3478565,1,0,-9,7,0,10,14.226872,0,0,0,57,1,1,3,-9,-9,2019,2,1,11,1,24,16,15,1,0,4,0,8.6177263,8.6177263,0,0,0,0,0,0,0,102,1,1,0,4.2781525,7.0777349,118.39397,1,57.16,56.150002,20.360001,30.35,3,1,1,0,0,10,4,1,487,-60443.016,0,0,4142.9985 -8605,10597,19344,-9,19345,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1029.8726,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,4,3,1,662.5,68441.977,0,0,1747.2469 -8605,10597,19345,-9,-9,-9,1,1,0,56,2,0,1,0,3,-9,2,1,0,1,4,7.4768214,7.6872563,5.6862645,4,0,0,0,-9,0,-1046.6526,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,21,22,15,1,0,-9,0,9.086606,9.086606,0,0,0,0,0,0,0,0,1,1,0,5.4813986,0,0,0,38.880001,61.849998,-9,-9,5,1,1,0,0,4,3,1,662.5,68441.977,0,0,1747.2469 -8606,10598,19346,19347,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,1,2,0,7.0852942,6.997273,1,0,-9,43,0,1,40.741886,0,0,0,65,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0540562,7.1154695,0,0,64.25,28.77,62.990002,41.32,2,1,1,0,0,5,2,1,875,374179.56,0,0,2250.9736 -8606,10598,19347,19346,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,6.4163861,6.196075,1,0,-9,43,0,-1,-75.499382,0,0,0,66,1,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.9513526,6.3848372,26.774681,2,62.990002,41.32,64.25,28.77,7,1,1,0,0,5,2,1,875,374179.56,0,0,2250.9736 -8607,10599,19348,-9,19349,19351,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.261,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,0,458.75,405741.09,0,0,2790.9902 -8607,10599,19349,19351,-9,-9,1,1,0,29,1,1,2,0,1,-9,2,1,0,0,5,7.4304309,7.1508002,0,2,0,-9,4,0,-3,115.04279,0,1,1,32,3,5,1,3,2,2019,1,2,8,0,19,18,15,1,0,1,0,11.203798,11.203798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,61.580002,57.060001,57.759998,6,1,1,0,0,12,4,0,458.75,405741.09,0,0,2790.9902 -8607,10599,19350,-9,19349,19351,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.653,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,0,458.75,405741.09,0,0,2790.9902 -8607,10599,19351,19349,-9,-9,2,1,1,32,1,1,2,0,3,-9,2,1,0,0,5,8.6867552,8.6315289,0,2,0,-9,4,0,3,122.616,0,0,0,29,1,5,1,-9,-9,2019,1,1,5,0,55,22,15,1,0,1,0,9.7506809,9.7506809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,43.09,61.580002,7,1,1,0,0,12,4,0,458.75,405741.09,0,0,2790.9902 -8608,10600,19352,19354,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,8.2812586,8.33741,0,2,0,-9,30,0,-13,137.03566,0,0,0,60,2,5,3,2,2,2019,2,2,12,0,59,49,15,1,0,4,0,9.0922422,9.0922422,0,0,0,0,0,0,0,0,1,1,0,2.6677802,0,0,0,51.490002,57.57,60.02,56.419998,6,1,1,0,0,7,4,1,802.5,59820.98,0,0,4021.5977 -8608,10600,19353,-9,19352,19354,3,1,0,17,2,0,1,1,2,0,7,2,0,0,5,7.1372404,7.00036,0,2,0,0,0,-9,0,-998.4917,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,7,4,1,802.5,59820.98,0,0,4021.5977 -8608,10600,19354,19352,-9,-9,2,1,1,60,1,0,1,0,2,-9,4,3,0,0,5,0,7.6131887,7.9163184,2,0,-9,28,0,13,37.264297,0,0,0,47,2,4,1,3,3,2019,3,1,9,0,0,65,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0621513,7.3935733,0,0,60.02,56.419998,51.490002,57.57,6,1,1,0,0,7,4,1,802.5,59820.98,0,0,4021.5977 -8608,10600,19355,-9,19352,19354,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.6413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,802.5,59820.98,0,0,4021.5977 -8609,10601,19356,-9,19358,19357,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.3427,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,10,5,1,1230.75,792757.44,0,0,5231.9785 -8609,10601,19357,19358,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,9.0417862,8.8406124,0,2,0,-9,15,0,0,-4.4749818,0,0,0,37,1,4,1,2,2,2019,1,1,17,6,55,47,15,1,1,1,0,16.032658,16.032658,0,0,0,0,0,0,0,0,1,1,0,2.6206555,0,0,0,54.790001,55.860001,44.470001,57.73,6,1,1,0,0,10,5,1,1230.75,792757.44,0,0,5231.9785 -8609,10601,19358,19357,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.2457209,8.6068344,0,2,0,-9,15,0,0,-67.564896,0,0,1,37,2,4,1,1,1,2019,1,2,7,0,30,30,15,1,0,1,0,17.816387,17.816387,0,0,0,0,0,0,0,0,1,1,0,4.2622261,0,0,0,44.470001,57.73,54.790001,55.860001,6,1,1,0,0,10,5,1,1230.75,792757.44,0,0,5231.9785 -8609,10601,19359,-9,19358,19357,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.3398,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,1230.75,792757.44,0,0,5231.9785 -8610,10602,19360,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1034.6632,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,-9,-9,5,1,1,0,0,11,1,0,1007,87216.297,0,0,2961.4531 -8611,10603,19361,19362,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,2,8.4545994,8.8476162,0,1,0,-9,6,0,-3,-70.192513,0,0,0,57,2,3,1,3,3,2019,1,1,9,0,70,0,15,1,0,1,0,8.8623695,8.8623695,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,64.779999,32.700001,48.709999,51.810001,6,2,3,0,0,12,5,1,402,375976.31,0,0,4598.5029 -8611,10603,19362,19361,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.7789111,8.4107981,7.8064051,1,0,-9,6,0,3,-190.17484,0,0,0,54,2,2,1,2,3,2019,1,2,10,1,24,0,15,1,0,1,0,12.686027,12.686027,0,0,0,0,0,0,0,7,0,0,0,0,7.7343802,11.547993,3,48.709999,51.810001,64.779999,32.700001,6,1,1,0,0,12,5,1,402,375976.31,0,0,4598.5029 -8612,10604,19363,-9,-9,-9,1,1,0,41,2,0,1,0,1,-9,2,1,0,1,3,6.7510586,6.7524853,0,4,0,0,0,-9,0,-942.26971,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,19,17,15,1,0,-9,0,4.7841749,4.7841749,0,0,0,0,0,0,0,107,1,1,0,0,0,121.41162,3,47.27,42,-9,-9,5,1,1,0,0,12,2,0,948,-59209.07,0,0,2868.3979 -8613,10605,19364,19365,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.3584118,8.5728846,7.537168,2,0,-9,7,0,3,85.769501,0,0,0,46,2,4,1,2,3,2019,1,1,8,0,52,0,15,1,0,1,0,11.133561,11.133561,0,0,0,0,0,0,0,0,1,1,0,0,7.7204108,0,0,45.91,59.889999,50,55,5,1,1,0,0,11,4,1,943.66669,114495.23,0,0,3340.1448 -8613,10605,19365,19364,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,6.8036194,6.322598,0,2,0,-9,7,0,-3,-105.4033,0,0,0,49,2,4,1,3,2,2019,1,2,10,1,28,44,15,1,0,1,0,3.6256099,3.6256099,0,0,0,0,0,0,0,0,1,1,0,5.3751969,0,0,0,50,55,45.91,59.889999,6,1,1,0,0,11,4,1,943.66669,114495.23,0,0,3340.1448 -8613,10605,19366,-9,19365,19364,5,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.55908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,4,1,943.66669,114495.23,0,0,3340.1448 -8614,10606,19367,19368,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,3,0,6.5805874,6.6867537,1,0,-9,55,0,-1,53.481495,0,0,0,73,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.20068857,6.6024189,0,3,55.529999,51.549999,59.880001,45.369999,6,1,1,0,0,9,5,1,291,2738818.8,0,0,6540.9668 -8614,10606,19368,19367,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,8.9911709,9.0751848,1,0,-9,55,0,1,-39.511185,0,0,0,72,1,3,3,3,1,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1953387,9.1376305,0,0,59.880001,45.369999,55.529999,51.549999,7,1,1,0,0,9,5,1,291,2738818.8,0,0,6540.9668 -8615,10607,19369,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,7.9149714,7.7974281,0,3,0,0,0,-9,0,-946.91943,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,20,33,15,1,0,-9,0,18.225723,18.225723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.689999,50.509998,-9,-9,4,1,1,0,0,2,4,1,808,172688.84,0,0,1592.5842 -8616,10608,19370,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,5,8.1692667,8.1250353,0,3,0,0,0,-9,0,-973.49438,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,39,15,1,0,-9,0,10.719639,10.719639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.919998,62.310001,-9,-9,6,1,1,0,0,5,4,1,610,12423.461,0,0,2878.2517 -8617,10609,19371,19372,-9,-9,1,1,0,64,1,0,0,0,1,-9,3,3,0,0,3,0,7.9000177,7.8346124,1,0,-9,34,0,3,-86.930626,0,0,0,61,2,3,1,1,3,2019,3,2,9,0,0,17,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.0560484,7.2884626,4.9672532,3,53.610001,52.369999,49.580002,55.59,6,1,1,1,0,7,5,1,699.5,2115000.5,0,0,4026.7578 -8617,10609,19372,19371,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,3,8.4089928,8.6625919,0,1,0,-9,34,0,-3,-69.883667,0,0,0,64,1,3,3,2,2,2019,2,1,9,0,60,55,15,1,0,3,0,10.870437,10.870437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,53.610001,52.369999,3,1,1,0,0,7,5,1,699.5,2115000.5,0,0,4026.7578 -8618,10610,19373,19374,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,1,8.3634501,8.3091936,0,1,0,-9,42,0,2,27.956982,0,0,0,57,3,3,3,3,3,2019,2,2,15,4,60,60,15,1,1,3,0,6.5320573,6.5320573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.619999,45.060001,49,48,4,2,3,0,0,8,3,1,969.5,1578957,0,0,1385.3733 -8618,10610,19374,19373,-9,-9,2,1,0,57,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,7,0,-2,-80.635033,0,0,0,59,3,1,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,35.619999,45.060001,5,2,3,1,1,8,3,1,969.5,1578957,0,0,1385.3733 -8618,10611,19375,19376,-9,-9,3,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,7,0,-4,-29.090197,0,0,1,34,2,3,1,-9,-9,2019,1,4,11,2,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,61.279999,46.169998,6,2,3,0,0,8,3,1,323,263621.06,0,0,1311.9918 -8618,10611,19376,19375,19374,19373,4,1,1,34,1,0,0,0,2,-9,2,1,0,0,3,8.1285267,8.0480223,0,1,0,-9,7,0,4,-29.471376,0,0,0,30,2,4,1,3,3,2019,1,3,6,0,60,63,15,1,0,1,0,8.0770054,8.0770054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,57.16,56.150002,6,2,3,0,0,8,3,1,323,263621.06,0,0,1311.9918 -8619,10612,19377,19378,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,7.203361,7.5421796,1,0,-9,10,0,3,16.835157,0,0,0,62,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7401667,7.3448162,0,0,47.459999,52.700001,38.209999,54.029999,6,1,1,0,0,5,3,1,479,1067823.8,0,0,3219.5801 -8619,10612,19378,19377,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,3,0,7.7603154,7.7851501,1,0,-9,36,0,-3,106.63639,0,0,0,65,1,3,3,3,1,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2877984,8.0233984,0,0,38.209999,54.029999,47.459999,52.700001,5,1,1,0,0,5,3,1,479,1067823.8,0,0,3219.5801 -8620,10613,19379,19382,-9,-9,3,1,1,36,1,1,2,0,1,-9,2,1,0,0,3,8.466877,8.5850105,0,2,0,-9,6,0,1,-38.749916,0,0,0,35,1,5,1,-9,-9,2019,1,1,16,4,37,43,15,1,1,1,0,16.306282,16.306282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.630001,49.720001,54.689999,57.470001,6,1,1,0,0,6,4,1,781.75,199310.11,0,0,3526.5522 -8620,10613,19380,-9,19382,19379,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.5747,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,781.75,199310.11,0,0,3526.5522 -8620,10613,19381,-9,19382,-9,2,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.6758,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,781.75,199310.11,0,0,3526.5522 -8620,10613,19382,19379,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,0,5,8.134758,8.0342607,0,2,0,-9,6,0,-1,190.53128,0,0,1,36,1,3,1,2,2,2019,1,3,6,0,18,45,15,1,0,1,0,19.30788,19.30788,0,0,0,0,0,0,0,0,1,1,0,4.9696932,0,0,0,54.689999,57.470001,41.630001,49.720001,7,1,1,0,0,6,4,1,781.75,199310.11,0,0,3526.5522 -8621,10614,19383,19384,-9,-9,2,1,0,34,1,0,0,0,2,-9,2,1,0,0,4,8.2047939,8.425971,0,1,0,-9,2,0,-1,42.16819,0,0,1,35,1,3,1,-9,-9,2019,1,1,11,2,63,60,15,1,0,1,0,7.6834559,7.6834559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,35.240002,56.700001,5,1,1,0,0,2,4,1,633.5,86343.789,0,0,3433.3423 -8621,10614,19384,19383,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,3,8.0920525,7.9934683,0,1,0,-9,2,0,1,36.373138,0,0,0,34,2,4,1,-9,-9,2019,1,2,10,0,40,40,15,1,0,1,0,10.43233,10.43233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.240002,56.700001,47,57,4,1,1,0,0,2,4,1,633.5,86343.789,0,0,3433.3423 -8622,10615,19385,19386,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.3120689,7.5369768,0,1,0,-9,38,0,-2,-8.5733013,0,0,0,61,2,3,1,3,3,2019,1,1,9,0,20,20,15,1,0,1,0,11.728724,11.728724,0,0,0,0,0,0,0,106,0,0,0,0,0,118.25769,3,58.32,50.220001,54.959999,53.169998,6,1,1,0,0,13,4,1,2097.5,121674.44,0,0,3552.0313 -8622,10615,19386,19385,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.1664648,8.3378067,0,1,0,-9,9,0,2,-8.6637506,0,0,0,59,3,3,1,3,3,2019,1,2,8,0,36,36,15,1,0,1,0,11.748617,11.748617,0,0,0,0,0,0,0,14.5,0,0,0,6.6520061,0,16.586039,3,54.959999,53.169998,58.32,50.220001,6,1,1,0,0,13,4,1,2097.5,121674.44,0,0,3552.0313 -8622,10616,19387,-9,19385,19386,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.7485852,7.7869558,4.0875239,3,0,0,0,-9,0,-1002.8961,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,33,10,15,1,0,-9,1,8.1718664,8.1718664,0,0,0,0,0,0,0,2,0,0,0,4.8602815,4.0847268,4.8475566,3,57.16,56.150002,-9,-9,1,1,1,0,0,13,3,1,514,285646.97,0,0,2321.6221 -8623,10617,19388,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,8,3,1,1,5,0,0,0,3,0,0,0,-9,0,-996.31506,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.959999,38.68,-9,-9,6,1,1,0,0,6,1,0,285,94909.602,0,0,1201.2626 -8624,10618,19389,-9,19392,19390,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.2861,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,719.75,229209.08,0,0,2971.7847 -8624,10618,19390,19392,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,3,8.4793339,8.4766512,0,2,0,-9,6,0,2,30.100792,0,0,0,32,1,2,1,-9,-9,2019,1,1,8,0,46,40,15,1,0,1,0,13.244396,13.244396,0,0,0,0,0,0,0,0,1,1,0,3.7772942,0,0,0,52,54.509998,45.419998,51,5,1,1,0,0,5,4,1,719.75,229209.08,0,0,2971.7847 -8624,10618,19391,-9,19392,19390,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.75281,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,719.75,229209.08,0,0,2971.7847 -8624,10618,19392,19390,-9,-9,1,1,0,32,1,1,2,0,1,-9,2,1,0,0,2,7.9335594,7.6375866,0,2,0,-9,6,0,-2,37.019794,0,0,1,34,1,3,1,2,1,2019,1,2,12,0,32,32,15,1,0,1,0,9.8526382,9.8526382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.419998,51,52,54.509998,5,1,1,0,0,5,4,1,719.75,229209.08,0,0,2971.7847 -8625,10619,19393,-9,-9,-9,1,1,1,23,2,0,0,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-1031.0222,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.299999,52.290001,-9,-9,5,1,1,0,1,10,1,0,226,0,0,0,330.77084 -8626,10620,19394,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-739.41113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.889999,36.860001,-9,-9,4,1,1,0,0,4,1,0,1477,-137936.2,0,0,894.2655 -8627,10621,19395,19396,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,8.2987413,8.4997072,5.7911024,1,0,-9,4,0,8,42.686337,0,0,0,45,1,3,1,2,2,2019,1,2,7,0,80,38,15,1,0,1,0,5.9109945,5.9109945,0,0,0,0,0,0,0,0,0,0,0,.52712166,5.8999376,0,0,62.389999,56.709999,34.52,56.880001,7,1,1,0,0,9,5,0,745,1478992.4,0,0,4475.0029 -8627,10621,19396,19395,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,3,8.9292688,9.1408005,0,1,0,-9,4,0,-8,118.12295,-9,0,0,53,2,5,1,-9,-9,2019,1,1,18,6,62,0,15,1,1,1,0,16.106682,16.106682,0,0,0,0,0,0,0,7,0,0,0,0,0,7.1489663,3,34.52,56.880001,62.389999,56.709999,3,1,1,0,0,9,5,0,745,1478992.4,0,0,4475.0029 -8628,10622,19397,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,0,2,0,6.0353403,6.2449675,3,0,0,0,-9,0,-1043.4083,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1164117,0,0,36.029999,40.599998,-9,-9,4,1,1,0,0,6,2,0,374,506907.44,0,0,-392.68719 -8629,10623,19398,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,5.2077951,5.6499453,3,0,0,0,-9,0,-992.33539,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8825301,5.071804,0,0,41.040001,46.150002,-9,-9,6,1,1,0,0,7,2,1,1021,353848.63,0,0,-743.63159 -8629,10624,19399,-9,19398,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,7.7868829,7.6979671,0,3,0,0,0,-9,0,-1025.4697,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,40,15,1,0,-9,1,4.8410301,4.8410301,0,0,0,0,0,0,0,0,0,0,0,4.3545427,0,0,0,40.810001,52.939999,-9,-9,5,1,1,0,0,7,3,1,335,-12947.299,0,0,962.68884 -8630,10625,19400,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1017.7284,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,2,3,0,0,8,1,0,666,26073.367,0,0,641.52155 -8630,10626,19401,-9,19400,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.2148323,7.8248658,0,3,0,0,0,-9,0,-900.80707,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,37,0,15,1,0,-9,1,4.7979527,4.7979527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,3,0,736,-72740.758,0,0,487.41138 -8631,10627,19402,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,1,0,7.3123693,6.9991751,3,0,0,0,-9,0,-911.36102,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1074471,7.1847658,0,0,63.700001,16.76,-9,-9,2,1,1,0,0,12,3,1,1302,222478.52,0,0,1636.0031 -8632,10628,19403,-9,19406,19405,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.8656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,966.75,79863.672,0,0,2764.6157 -8632,10628,19404,-9,19406,19405,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.0287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,966.75,79863.672,0,0,2764.6157 -8632,10628,19405,19406,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,8.4703474,8.6871281,0,2,0,-9,6,0,4,2.7067695,0,0,0,35,2,4,1,2,2,2019,1,1,7,0,44,40,15,1,0,1,0,13.397856,13.397856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,51.02,33.490002,64.260002,5,1,1,0,0,9,4,1,966.75,79863.672,0,0,2764.6157 -8632,10628,19406,19405,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,7.5056458,7.6385579,0,2,0,-9,6,0,-4,.45250577,0,0,1,39,2,4,1,2,2,2019,1,2,15,4,20,20,15,1,1,1,0,10.138704,10.138704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.490002,64.260002,56.18,51.02,5,1,1,0,0,9,4,1,966.75,79863.672,0,0,2764.6157 -8633,10629,19407,-9,19408,-9,4,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-943.87115,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,3,0,530,290907.81,0,0,2444.8755 -8633,10629,19408,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,2,1,0,0,4,6.6615782,7.9552741,7.4951882,4,0,0,0,-9,0,-948.3031,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,22,22,15,1,0,-9,0,5.8025546,5.8025546,0,0,0,0,0,0,0,0,1,1,0,7.8254933,0,0,0,49.75,50.009998,-9,-9,2,1,1,0,1,9,3,0,530,290907.81,0,0,2444.8755 -8633,10630,19409,-9,19408,-9,3,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,7.2982759,7.5152493,0,3,0,0,0,-9,0,-1064.6334,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,25,35,15,1,0,-9,1,6.7095637,6.7095637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,-9,-9,6,1,1,0,0,9,3,0,3969,2778.686,0,0,531.90198 -8634,10631,19410,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,5,8.6438551,8.3930759,0,1,0,-9,4,0,6,55.581169,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,0,0,15,0,15,1,0,-9,0,40.072815,40.072815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.950001,54.529999,48.869999,58.549999,7,1,1,0,0,2,5,1,1040,152157.3,0,0,1218.8137 -8634,10632,19411,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.439374,8.411994,0,1,0,-9,4,0,-6,-34.750309,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,12,0,37,37,15,1,0,-9,0,15.056164,15.056164,0,0,0,0,0,0,0,0,0,0,0,2.5655634,0,0,0,48.869999,58.549999,54.950001,54.529999,6,1,1,0,0,2,5,1,320,-47311.219,0,0,1931.7944 -8635,10633,19412,-9,19414,19413,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1063.963,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,3,4,0,0,8,5,1,362,743692.31,0,0,10837.878 -8635,10633,19413,19414,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,8.8394651,8.7727671,0,2,0,-9,17,0,-1,-51.534042,0,0,0,49,2,5,1,2,2,2019,1,2,19,7,37,38,15,1,1,1,0,23.951641,23.951641,0,0,0,0,0,0,0,0,1,1,0,1.1601179,0,0,0,25.48,64.050003,49.169998,56.720001,6,3,4,0,0,8,5,1,362,743692.31,0,0,10837.878 -8635,10633,19414,19413,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,5,9.3380051,9.6446524,0,2,0,-9,15,0,1,-11.655042,0,0,0,48,1,4,1,2,1,2019,1,1,0,0,0,36,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6121378,0,0,0,49.169998,56.720001,25.48,64.050003,7,3,4,0,0,8,5,1,362,743692.31,0,0,10837.878 -8635,10634,19415,-9,19414,19413,3,1,1,18,2,0,1,0,2,1,2,1,0,0,4,6.443222,6.460207,0,3,0,0,0,-9,0,-1075.7742,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,18,5,12,0,15,1,1,-9,1,8.3412609,8.3412609,0,0,0,0,0,0,0,0,1,1,0,.88023329,0,0,0,43.73,59.700001,-9,-9,6,3,4,0,0,8,2,1,414,166246.63,0,0,821.86346 -8636,10635,19416,19417,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,1,4,6.6897941,6.3513336,0,1,0,-9,3,0,-5,22.874357,0,0,0,57,2,1,3,-9,-9,2019,2,3,8,0,8,0,15,1,0,4,0,8.4487371,8.4487371,0,0,0,0,0,0,0,7,1,1,0,0,0,8.4933243,2,46.400002,57.349998,55.599998,7.6199999,6,1,1,0,0,1,3,1,453.5,309522.34,0,0,2995.9243 -8636,10635,19417,19416,-9,-9,3,1,1,57,1,0,0,0,2,-9,4,3,0,1,1,0,7.8632898,8.1026249,1,0,-9,3,0,5,-11.14038,0,0,0,52,2,4,1,-9,-9,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1677303,0,0,55.599998,7.6199999,46.400002,57.349998,3,1,1,0,0,1,3,1,453.5,309522.34,0,0,2995.9243 -8636,10636,19418,-9,19416,19417,5,1,0,29,2,0,0,0,2,-9,2,1,0,0,4,7.5151682,7.4106264,0,3,0,0,0,-9,0,-939.32635,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,0,15,1,0,-9,1,5.6326976,5.6326976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,1,3,1,2520,127346.89,0,0,1658.4956 -8636,10637,19419,19420,-9,-9,1,1,0,24,1,0,0,0,2,1,2,1,0,0,5,8.032341,8.2714434,0,1,0,-9,3,0,0,-74.157433,-9,1,1,24,2,2,3,-9,-9,2019,2,4,11,0,53,0,15,1,0,3,0,4.5814576,4.5814576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.299999,59.889999,15.95,55.57,5,3,4,0,0,1,3,1,705.5,-33752.609,0,0,1467.3499 -8636,10637,19420,19419,19416,19417,4,1,1,24,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,3,0,0,56.45697,0,1,0,24,2,5,1,2,2,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.95,55.57,49.299999,59.889999,3,1,1,1,0,1,3,1,705.5,-33752.609,0,0,1467.3499 -8637,10638,19421,-9,-9,-9,1,1,1,82,3,0,1,0,2,-9,4,3,0,0,3,0,7.2876096,7.6201754,4,0,0,0,-9,0,-942.98114,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,3.7387495,0,0,0,0,1,1,0,6.8331904,7.2171321,0,0,54,46,-9,-9,6,1,1,0,0,7,2,1,838,337202.28,0,0,2839.5154 -8637,10639,19422,19425,-9,-9,5,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.2271748,7.883359,0,2,0,-9,2,0,13,85.740547,-9,0,0,39,2,4,1,-9,-9,2019,1,2,7,1,50,0,15,1,0,1,0,7.5765343,7.5765343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.290001,58.810001,45.91,59.889999,5,1,1,0,0,7,4,1,1051.25,105406.8,0,0,3880.0969 -8637,10639,19423,-9,19425,19422,3,1,0,17,2,0,1,1,2,-9,7,2,0,0,3,7.1033502,7.2940321,0,2,0,0,0,-9,0,-1007.7601,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,4,1,1,0,0,7,4,1,1051.25,105406.8,0,0,3880.0969 -8637,10639,19424,-9,19425,19422,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-857.90289,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,4,1,1051.25,105406.8,0,0,3880.0969 -8637,10639,19425,19422,-9,19421,2,1,0,39,1,0,1,0,2,-9,1,1,0,0,4,8.2637472,8.4862785,0,2,0,-9,2,0,-13,-.40831596,0,0,1,52,2,3,1,-9,2,2019,1,5,15,3,60,60,15,1,0,1,0,8.9997082,8.9997082,0,0,0,0,0,0,0,2,1,1,0,0,0,4.1629663,3,45.91,59.889999,42.290001,58.810001,5,1,1,0,1,7,4,1,1051.25,105406.8,0,0,3880.0969 -8638,10640,19426,-9,-9,-9,1,1,0,21,2,0,0,0,1,1,1,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1088.9843,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,1,0,20,0,15,1,0,-9,0,.00080541021,.00080541021,0,0,0,0,0,0,0,0,0,0,0,.15130948,0,0,0,59.959999,57.779999,-9,-9,7,3,4,0,1,5,1,0,6710,54853.73,0,0,-350.47638 -8639,10641,19427,-9,-9,-9,1,1,1,44,3,0,0,0,3,-9,2,1,0,0,3,8.4646463,8.67097,0,3,0,0,0,-9,0,-1084.7761,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,40,60,15,1,1,-9,0,12.528148,12.528148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.150002,41.419998,-9,-9,4,1,1,0,0,9,4,1,262,228138.66,0,0,1838.2007 -8640,10642,19428,-9,19432,19429,4,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.0379,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,7,2,0,640.40002,96244.828,0,0,499.07642 -8640,10642,19429,19432,-9,-9,1,1,1,37,1,1,3,0,2,-9,1,1,0,0,5,7.2204762,7.0421929,0,2,0,-9,14,0,-3,-43.246819,0,0,0,40,1,4,3,2,2,2019,2,2,3,1,40,20,15,1,0,3,0,3.2487679,3.2487679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,60.59,54.799999,32.400002,43.099998,6,3,4,0,0,7,2,0,640.40002,96244.828,0,0,499.07642 -8640,10642,19430,-9,19432,19429,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.3995,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,7,2,0,640.40002,96244.828,0,0,499.07642 -8640,10642,19431,-9,19432,19429,3,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.637,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,7,2,0,640.40002,96244.828,0,0,499.07642 -8640,10642,19432,19429,-9,-9,2,1,0,40,1,1,3,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,3,51.70113,0,0,1,37,2,5,1,2,2,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.400002,43.099998,60.59,54.799999,4,3,4,0,0,7,2,0,640.40002,96244.828,0,0,499.07642 -8641,10643,19433,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,0,3,9.8131828,9.9263678,0,3,0,0,0,-9,0,-905.01074,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,39,40,15,1,0,-9,0,38.616158,38.616158,0,0,0,0,0,0,0,0,1,1,0,.38343394,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,11,5,1,462,878567.06,0,0,3634.2434 -8642,10644,19434,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,2,1,0,0,3,7.6763663,7.8224273,5.2328382,3,0,0,0,-9,0,-1066.2118,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,28,29,15,1,0,-9,0,8.6407642,8.6407642,0,0,0,0,0,0,0,0,1,1,0,6.6241517,5.7885222,0,0,46.610001,56.93,-9,-9,5,1,1,0,0,12,3,1,512,26407.707,0,0,2519.04 -8643,10645,19435,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,5,0,6.31145,6.1109438,3,0,0,0,-9,0,-909.27557,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0760112,6.2498064,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,2,1,196,430512.19,0,0,928.6051 -8644,10646,19436,19437,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,7.6393032,7.3242679,1,0,-9,7,0,1,14.262282,0,0,0,75,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3953028,7.3650436,0,0,59.529999,56.439999,58.32,50.220001,7,1,1,0,0,11,3,1,1224,1254759,0,0,3116.2571 -8644,10646,19437,19436,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,6.6693373,6.6483364,1,0,-9,7,0,-1,-25.270098,0,0,0,76,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8912892,6.5630498,0,0,58.32,50.220001,59.529999,56.439999,7,1,1,0,0,11,3,1,1224,1254759,0,0,3116.2571 -8645,10647,19438,19439,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,6,0,-1,0,0,0,0,77,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.913579,1,58.98,42.900002,64.889999,20.700001,7,1,1,0,0,13,1,1,1865,53678.59,0,0,1422.4827 -8645,10647,19439,19438,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,6,0,1,0,0,0,0,76,3,4,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,20.087215,0,13.167328,0,0,0,1,1,0,0,0,0,0,64.889999,20.700001,58.98,42.900002,6,1,1,0,0,13,1,1,1865,53678.59,0,0,1422.4827 -8646,10648,19440,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,1,1,0,0,3,6.8271966,6.9752388,0,3,0,0,0,-9,0,-1008.2133,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,60,72,15,1,1,-9,0,1.4779907,1.4779907,0,0,0,0,0,0,0,0,1,1,0,5.8097,0,0,0,39.509998,39.919998,-9,-9,5,1,1,0,0,6,2,0,337,209522.22,0,0,996.85681 -8647,10649,19441,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,1,0,3.8010299,4.0420871,3,0,0,0,-9,0,-961.81744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,5.8701782,0,3.4189181,0,0,1,1,0,4.4130487,0,0,0,41.48,24.66,-9,-9,3,1,1,0,0,11,2,1,424,198055.16,0,0,2046.5745 -8648,10650,19442,19443,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,4,8.1162281,8.1011305,0,1,0,-9,1,0,0,23.003315,0,1,1,22,2,4,1,2,2,2019,1,2,11,0,48,38,15,1,0,1,0,9.3388386,9.3388386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,57.16,56.150002,7,1,1,0,0,10,4,0,924.5,-155344.47,0,0,2190.0015 -8648,10650,19443,19442,-9,-9,2,1,1,22,1,0,0,0,2,-9,2,1,0,0,4,7.487865,7.1537733,0,1,0,-9,1,-9,0,68.843102,-9,1,0,22,2,4,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,5.0193925,5.0193925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.189999,54.259998,7,1,1,0,0,10,4,0,924.5,-155344.47,0,0,2190.0015 -8649,10651,19444,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,8.4615622,8.7474136,0,3,0,0,0,-9,0,-1008.2056,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,39,42,15,1,0,-9,0,16.207611,16.207611,0,0,0,0,0,0,0,2,0,0,0,0,0,7.3815603,3,49.419998,48.919998,-9,-9,6,1,1,0,0,5,5,1,515,125430.89,0,0,1743.7472 -8649,10652,19445,-9,19444,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,0,5,7.9551969,8.327446,0,3,0,0,0,-9,0,-996.64044,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,43,38,15,1,0,-9,1,9.3572969,9.3572969,0,0,0,0,0,0,0,0,0,0,0,6.6857738,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,5,4,1,901,51918.902,0,0,2159.7212 -8650,10653,19446,-9,-9,-9,1,1,1,55,3,0,1,0,1,-9,2,1,0,0,4,9.5386429,9.5019264,0,4,0,0,0,-9,0,-942.34601,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,38,30,15,1,0,-9,0,36.031643,36.031643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.830002,57.810001,-9,-9,5,1,1,0,0,9,5,1,265.5,1920387.3,0,0,6552.5483 -8650,10653,19447,-9,-9,19446,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1018.6719,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,9,5,1,265.5,1920387.3,0,0,6552.5483 -8651,10654,19448,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1011.2516,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.299999,46.580002,-9,-9,6,1,1,0,0,9,1,1,1193,0,0,0,0 -8652,10655,19449,19450,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,2,0,8.0942211,7.7643418,1,0,-9,22,0,-5,101.7855,0,0,0,74,2,1,3,2,2,2019,4,2,29,12,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.5664926,7.6212878,6.221385,1,26.540001,47.599998,52.189999,19.15,3,1,1,0,0,10,4,1,539,677728.88,0,0,3419.1108 -8652,10655,19450,19449,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,1,1,0,7.2307262,7.1266737,1,0,-9,21,0,5,125.95057,0,0,0,69,1,2,3,2,2,2019,4,1,8,2,0,0,15,4,0,4,0,0,0,1,0,2.7382591,0,0,0,0,2,1,1,0,4.198545,7.3786316,8.116807,1,52.189999,19.15,26.540001,47.599998,6,4,2,0,0,10,4,1,539,677728.88,0,0,3419.1108 -8653,10656,19451,19452,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.30264,8.0096607,0,2,0,-9,8,0,3,-55.204563,0,0,0,47,2,3,1,3,3,2019,1,1,8,0,36,36,15,1,0,1,0,9.3645077,9.3645077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,53.610001,48.759998,6,1,1,0,0,4,4,1,123,1227626.6,0,0,2724.7668 -8653,10656,19452,19451,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.1183491,8.3501301,0,2,0,-9,29,0,-3,163.08243,0,0,0,50,2,3,1,3,3,2019,1,2,7,0,32,34,15,1,0,1,0,12.905196,12.905196,0,0,0,0,0,0,0,0,1,1,0,1.8841871,0,0,0,53.610001,48.759998,60.290001,52.110001,6,1,1,0,0,4,4,1,123,1227626.6,0,0,2724.7668 -8653,10657,19453,-9,19452,19451,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,4,8.1151114,8.1630878,0,3,0,0,0,-9,0,-1007.2885,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,39,15,1,0,-9,1,10.173491,10.173491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.279999,-9,-9,4,1,1,0,0,4,4,1,409,-104585.05,0,0,1621.8191 -8654,10658,19454,-9,-9,-9,1,1,1,44,3,0,0,0,1,-9,2,1,0,0,4,8.526495,8.6233387,0,3,0,-9,0,1,0,-1056.8135,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,2,51,60,15,1,0,-9,0,17.821251,17.821251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.779999,61.860001,-9,-9,5,1,1,0,1,7,5,0,1387,1032027.4,0,0,2593.1628 -8655,10659,19455,19456,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,0,4,0,8.1669703,8.4774485,1,0,-9,26,0,1,17.746273,0,0,0,80,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7318771,8.1535282,0,0,57.16,56.150002,47.57,57.720001,6,1,1,0,0,9,4,1,2093.5,2429822.5,0,0,3566.5508 -8655,10659,19456,19455,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,4,0,4.5121264,4.1217098,1,0,-9,26,0,-1,43.148197,0,0,0,81,1,4,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7090619,4.2952318,0,0,47.57,57.720001,57.16,56.150002,7,1,1,0,0,9,4,1,2093.5,2429822.5,0,0,3566.5508 -8656,10660,19457,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1027.3811,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3188452,0,0,0,56.07,24.48,-9,-9,6,1,1,0,0,10,1,1,418,139733.67,0,0,1667.766 -8657,10661,19458,19459,-9,-9,2,1,1,60,1,0,2,0,2,-9,2,1,0,0,1,8.4228468,7.9559393,0,2,0,-9,27,0,13,-71.85498,0,0,0,47,2,5,1,-9,-9,2019,1,1,18,5,35,35,15,1,1,1,0,15.644146,15.644146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.599998,23.51,59.43,58.049999,1,1,1,0,1,4,3,1,410.25,128053.93,0,0,3019.6621 -8657,10661,19459,19458,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,5,6.7476439,6.6385493,0,2,0,-9,27,0,-13,-111.24174,0,0,0,60,2,1,1,-9,-9,2019,1,2,5,0,15,15,15,1,0,1,0,6.5009222,6.5009222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,38.599998,23.51,7,1,1,0,0,4,3,1,410.25,128053.93,0,0,3019.6621 -8657,10661,19460,-9,19459,19458,5,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.35474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,410.25,128053.93,0,0,3019.6621 -8657,10661,19461,-9,19459,19458,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1062.851,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,4,3,1,410.25,128053.93,0,0,3019.6621 -8657,10662,19462,-9,19459,19458,3,1,1,19,2,0,2,0,2,-9,2,1,0,0,3,7.977931,7.9993567,0,3,0,0,0,-9,0,-1003.7479,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,35,15,1,0,-9,1,8.2273531,8.2273531,0,0,0,0,0,0,0,0,1,1,0,.68573231,0,0,0,49.459999,58.310001,-9,-9,5,1,1,0,0,4,3,1,83,120597.58,0,0,1597.6414 -8658,10663,19463,-9,-9,-9,1,1,1,35,3,0,0,0,1,-9,2,1,0,0,4,7.839294,7.8684611,0,3,0,-9,0,1,0,-1111.3342,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,26,42,15,1,0,-9,0,12.428312,12.428312,0,0,0,0,0,0,0,2,1,1,0,.42105806,0,7.7732801,3,51.830002,57.200001,-9,-9,6,1,1,0,0,9,3,0,343,56993.688,0,0,3475.2952 -8659,10664,19464,19465,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,0,5,8.8231764,8.8606415,0,1,0,-9,6,0,1,-15.579629,0,0,0,30,2,4,1,2,2,2019,1,2,12,0,45,48,15,1,0,1,0,18.525921,18.525921,0,0,0,0,0,0,0,0,0,0,0,2.5848718,0,0,0,56.470001,59.400002,48.279999,60.18,6,1,1,0,0,6,5,1,291.5,270509.81,0,0,3668.5537 -8659,10664,19465,19464,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,4,8.1812916,7.8967819,0,1,0,-9,6,0,-1,28.720617,0,0,1,31,1,5,1,2,2,2019,1,1,11,0,40,42,15,1,0,1,0,7.9449949,7.9449949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,56.470001,59.400002,2,1,1,0,0,6,5,1,291.5,270509.81,0,0,3668.5537 -8660,10665,19466,-9,-9,19467,2,1,1,17,2,0,1,0,-9,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1003.5279,1,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,992.5,25219.676,0,0,1144.6359 -8660,10665,19467,-9,-9,-9,1,1,1,46,2,0,1,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1066.9866,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,29,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.91503,3,27.51,36.349998,-9,-9,2,1,1,0,1,9,1,0,992.5,25219.676,0,0,1144.6359 -8661,10666,19468,19469,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.0861883,8.1549006,0,1,0,-9,27,0,6,57.886093,0,0,0,50,2,2,1,2,2,2019,1,2,12,0,46,46,15,1,0,1,0,9.5928659,9.5928659,0,0,0,0,0,0,0,0,0,0,0,4.9952435,0,0,0,41.709999,52.41,48.709999,35.75,5,1,1,0,0,10,4,1,456,638785.63,0,0,3599.3787 -8661,10666,19469,19468,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,8.1337709,8.0160093,0,1,0,-9,27,0,-6,20.615698,0,0,0,56,2,3,1,2,2,2019,1,1,21,8,38,45,15,1,1,1,0,9.9543028,9.9543028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.709999,35.75,41.709999,52.41,6,1,1,0,0,10,4,1,456,638785.63,0,0,3599.3787 -8662,10667,19470,19471,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,6.8151445,6.8089218,0,2,0,-9,31,0,-4,48.209736,0,0,0,50,2,4,1,-9,-9,2019,1,2,13,1,16,16,15,1,0,1,0,4.9320846,4.9320846,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.330002,60.150002,53,54,3,2,3,0,0,6,2,1,1670,58504.461,0,0,1546.4988 -8662,10667,19471,19470,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,7.3864584,7.9601703,0,2,0,-9,31,0,4,54.272442,-9,0,0,46,2,3,1,-9,-9,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1126423,0,0,0,53,54,39.330002,60.150002,6,2,3,0,0,6,2,1,1670,58504.461,0,0,1546.4988 -8662,10668,19472,-9,19470,19471,4,1,0,18,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-954.27338,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.630001,63.110001,-9,-9,6,2,3,0,0,6,2,1,463,105417.63,0,0,0 -8663,10669,19473,19474,-9,-9,1,1,1,58,1,0,0,0,3,-9,1,1,0,0,3,7.6707559,7.1918635,0,1,0,-9,10,0,2,48.160553,0,0,0,56,2,3,1,-9,-9,2019,1,2,11,1,60,60,15,1,0,1,0,3.0767365,3.0767365,0,0,0,0,0,0,0,0,0,0,0,.48883522,0,0,0,50,49,34.959999,54.380001,5,1,1,0,0,7,2,1,624,105782.94,0,0,2747.2336 -8663,10669,19474,19473,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,4.8922939,4.6926274,0,1,0,-9,10,0,-2,36.225365,0,0,0,58,3,3,1,-9,-9,2019,1,1,12,0,13,11,15,1,0,1,0,1.0691184,1.0691184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.959999,54.380001,50,49,4,1,1,0,0,7,2,1,624,105782.94,0,0,2747.2336 -8664,10670,19475,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1017.5241,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.779999,30.959999,-9,-9,3,2,3,0,1,4,1,0,2097,31206.344,0,0,1932.6581 -8665,10671,19476,19477,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.2365446,8.4924822,1,0,-9,10,0,16,204.30217,0,0,0,55,1,5,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.5711479,8.4717579,0,0,57.16,56.150002,54.099998,59.110001,7,1,1,0,0,5,4,1,580.5,1137977.1,0,0,10221.412 -8665,10671,19477,19476,-9,-9,1,1,0,55,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,10,0,-16,50.08976,0,0,0,71,2,4,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1245093,0,0,0,54.099998,59.110001,57.16,56.150002,7,1,1,0,0,5,4,1,580.5,1137977.1,0,0,10221.412 -8666,10672,19478,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,1,0,5.9676838,6.5146136,3,0,0,0,-9,0,-993.90228,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.7060685,0,0,0,8.7113276,61.085293,0,1,1,0,0,6.0409579,0,0,51.580002,18.5,-9,-9,5,1,1,0,0,2,2,1,431,240723.23,0,0,1574.4766 -8667,10673,19479,19480,-9,-9,1,1,0,54,1,0,2,0,1,-9,2,1,0,0,3,8.5194397,8.8630009,0,2,0,-9,8,0,4,-94.927307,0,0,0,50,1,4,1,2,2,2019,1,2,10,0,16,17,15,1,0,1,0,41.478123,41.478123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,51.130001,47.970001,56.110001,5,1,1,0,0,9,5,1,810.5,784673.13,0,0,4077.4985 -8667,10673,19480,19479,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,4,9.0597553,9.0951595,0,2,0,-9,8,0,-4,-16.175598,0,0,0,54,1,3,1,3,2,2019,1,1,7,0,38,38,15,1,0,1,0,20.62215,20.62215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.970001,56.110001,47.150002,51.130001,6,1,1,0,0,9,5,1,810.5,784673.13,0,0,4077.4985 -8668,10674,19481,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,2,0,7.7800312,8.22894,3,0,0,0,-9,0,-970.04474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5948315,8.2429581,0,0,52.34,33.009998,-9,-9,6,1,1,0,0,9,4,1,326,489721.91,0,0,3850.3303 -8669,10675,19482,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,3,0,6.9780421,7.0349665,3,0,0,0,-9,0,-1086.1774,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0205464,0,0,41.98,49.349998,-9,-9,5,1,1,0,0,4,2,0,982,520427.25,0,0,-769.16113 -8670,10676,19483,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,5.3583221,5.5417256,3,0,0,0,-9,0,-978.79181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,16.389486,0,0,71.480873,0,129.7655,0,1,1,0,0,5.3065863,0,0,53,44,-9,-9,6,3,4,0,0,12,2,1,160,3802.2263,0,0,1230.2089 -8670,10677,19484,-9,19483,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,0,3,7.7026176,8.0034666,0,3,0,0,0,-9,0,-954.76947,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,1,7.6351132,7.6351132,0,0,0,0,0,0,0,88,1,1,0,0,0,123.9773,3,52,54.509998,-9,-9,7,3,4,0,0,12,3,1,751,-27940.965,0,0,756.3324 -8671,10678,19485,19486,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.6702485,7.6604762,0,1,0,-9,6,0,-4,34.343109,0,0,0,63,2,4,3,-9,-9,2019,2,1,12,0,47,37,15,1,0,4,0,6.6458783,6.6458783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.639999,54.32,53.310001,6,2,3,0,0,2,3,1,1393,379074.06,0,0,2434.1995 -8671,10678,19486,19485,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,5.0173297,5.0059237,1,0,-9,39,0,4,-83.320251,0,0,0,59,3,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7980728,4.6042657,0,0,54.32,53.310001,53.59,49.639999,6,2,3,0,0,2,3,1,1393,379074.06,0,0,2434.1995 -8671,10679,19487,-9,19485,19486,3,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,7.7722421,7.998312,0,3,0,0,0,-9,0,-1032.793,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,37,37,15,1,0,-9,1,10.493121,10.493121,0,0,0,0,0,0,0,0,1,1,0,3.5427532,0,0,0,48.869999,58.549999,-9,-9,3,2,3,0,0,2,3,1,183,92162.383,0,0,161.90134 -8672,10680,19488,19489,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,0,4,9.1151361,8.7730474,0,2,0,-9,9,0,0,209.89902,0,0,0,49,2,4,1,-9,-9,2019,1,1,7,0,47,43,15,1,0,1,0,21.942829,21.942829,0,0,0,0,0,0,0,2,1,1,0,.19544922,0,0,3,36.099998,63.290001,41.060001,62.040001,6,1,1,0,0,10,5,1,630,654028.75,0,0,3657.9705 -8672,10680,19489,19488,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,7.2599311,7.10392,0,2,0,-9,9,0,0,33.386272,0,0,0,49,2,4,1,2,2,2019,1,2,15,4,16,16,15,1,1,1,0,8.4120693,8.4120693,0,0,0,0,0,0,0,2,1,1,0,.44406974,0,7.6230826,3,41.060001,62.040001,36.099998,63.290001,6,1,1,0,0,10,5,1,630,654028.75,0,0,3657.9705 -8673,10681,19490,-9,19492,19493,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.9796,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,1,857,374298.84,0,0,3047.2004 -8673,10681,19491,-9,19492,19493,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-942.07147,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,4,3,1,857,374298.84,0,0,3047.2004 -8673,10681,19492,19493,-9,-9,1,1,0,35,1,0,2,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,8,0,-4,-3.9241743,0,0,1,39,2,4,1,2,-9,2019,3,2,24,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.39091,3,28.969999,20.690001,50,57,4,1,1,0,0,4,3,1,857,374298.84,0,0,3047.2004 -8673,10681,19493,19492,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,8.4123096,8.2769308,0,2,0,-9,2,0,4,64.009201,0,0,0,35,2,1,3,-9,-9,2019,2,1,10,1,40,37,15,1,0,3,0,14.221866,14.221866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,50,57,28.969999,20.690001,5,1,1,0,0,4,3,1,857,374298.84,0,0,3047.2004 -8674,10682,19494,19495,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,5,7.2921262,7.3525553,0,2,0,-9,6,0,4,-148.18982,0,0,0,41,2,4,1,2,3,2019,1,2,12,1,21,22,15,1,0,1,0,9.6835232,9.6835232,0,0,0,0,0,0,0,0,1,1,0,4.7666779,0,0,0,52.209999,59.91,51,56,6,1,1,0,0,10,4,1,614.75,217773.64,0,0,3488.0688 -8674,10682,19495,19494,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,8.7727013,8.7132235,0,2,0,-9,6,0,-4,-55.379921,0,0,0,45,2,5,1,-9,-9,2019,1,1,9,1,38,39,15,1,0,1,0,16.110514,16.110514,0,0,0,0,0,0,0,0,1,1,0,7.4614825,0,0,0,51,56,52.209999,59.91,6,1,1,0,0,10,4,1,614.75,217773.64,0,0,3488.0688 -8674,10682,19496,-9,19494,19495,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.7443,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,614.75,217773.64,0,0,3488.0688 -8674,10682,19497,-9,19494,19495,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.6513,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,614.75,217773.64,0,0,3488.0688 -8675,10683,19498,-9,19500,19501,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.8563,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,5,1,798.5,103902.68,0,0,4737.8359 -8675,10683,19499,-9,19500,19501,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.45264,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,798.5,103902.68,0,0,4737.8359 -8675,10683,19500,19501,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.9389286,8.9241724,0,2,0,-9,11,0,7,41.263611,0,0,1,30,2,4,1,2,2,2019,1,2,10,2,45,60,15,1,0,1,0,17.437737,17.437737,0,0,0,0,0,0,0,0,1,1,0,1.4743948,0,0,0,45.91,59.889999,51.84,51.669998,6,1,1,0,0,1,5,1,798.5,103902.68,0,0,4737.8359 -8675,10683,19501,19500,-9,-9,2,1,1,30,1,0,2,0,2,-9,2,1,0,0,4,8.4421034,8.4780092,0,2,0,-9,11,0,-7,-108.21179,0,0,0,37,1,4,1,2,-9,2019,1,1,10,1,40,47,15,1,0,1,0,12.464931,12.464931,0,0,0,0,0,0,0,2,1,1,0,5.5353661,0,1.7045784,3,51.84,51.669998,45.91,59.889999,5,1,1,0,0,1,5,1,798.5,103902.68,0,0,4737.8359 -8676,10684,19502,19503,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,7.9788504,8.3744059,7.4001317,1,0,-9,10,0,0,-131.29118,0,0,0,58,2,3,3,-9,-9,2019,2,1,12,0,40,55,15,1,0,3,0,8.4091139,8.4091139,0,0,0,0,0,0,0,0,1,1,0,0,7.6422558,0,0,54.200001,42.389999,30.940001,61.650002,4,1,1,0,0,5,4,1,778,850830.25,0,0,2359.2803 -8676,10684,19503,19502,-9,-9,1,1,0,58,1,0,0,0,2,-9,3,3,0,1,3,0,0,0,1,0,-9,41,0,0,-71.215271,0,0,0,58,2,3,1,3,-9,2019,3,2,19,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.940001,61.650002,54.200001,42.389999,3,1,1,1,0,5,4,1,778,850830.25,0,0,2359.2803 -8677,10685,19504,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-997.1969,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.610001,51.040001,-9,-9,3,1,1,1,1,1,1,1,657,-12401.933,0,0,0 -8678,10686,19505,19506,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.5650926,6.5769653,1,0,-9,41,0,-1,92.785332,0,0,0,66,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9811821,6.3637052,0,0,51.830002,57.200001,57.16,56.150002,7,1,1,0,0,4,3,1,307.5,870527.63,0,0,1754.8345 -8678,10686,19506,19505,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.4688725,7.6086969,1,0,-9,41,0,1,-53.398918,-9,0,0,65,2,4,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7879286,7.6871419,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,4,3,1,307.5,870527.63,0,0,1754.8345 -8679,10687,19507,19508,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.6117454,7.7034364,0,2,0,-9,29,0,-4,33.465176,0,0,0,52,3,4,1,2,2,2019,1,1,10,1,19,25,15,1,0,1,0,10.444886,10.444886,0,0,0,0,0,0,0,0,1,1,0,4.492619,0,0,0,50.029999,52.619999,53.610001,51.099998,6,1,1,0,0,5,4,1,1032.3334,633704.06,0,0,3889.0874 -8679,10687,19508,19507,-9,-9,1,1,1,52,1,0,1,0,3,-9,2,1,0,0,4,8.6585684,8.8093605,0,2,0,-9,29,0,4,26.140272,0,0,0,48,2,3,1,2,2,2019,1,2,7,0,50,45,15,1,0,1,0,14.646893,14.646893,0,0,0,0,0,0,0,0,1,1,0,5.3055634,0,0,0,53.610001,51.099998,50.029999,52.619999,6,1,1,0,0,5,4,1,1032.3334,633704.06,0,0,3889.0874 -8679,10687,19509,-9,19507,19508,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.2375,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9099512,0,0,0,30.59,64.25,-9,-9,5,1,1,0,0,5,4,1,1032.3334,633704.06,0,0,3889.0874 -8680,10688,19510,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,2,1,0,0,4,7.7495122,7.4553113,5.39188,4,0,0,0,-9,0,-1026.2727,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,29,27,15,1,0,-9,0,8.6814423,8.6814423,0,0,0,0,0,0,0,0,1,1,0,5.2938223,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,2,1,399.5,185006.05,0,0,959.48358 -8680,10688,19511,-9,19510,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1014.8217,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,2,1,399.5,185006.05,0,0,959.48358 -8681,10689,19512,-9,19515,19513,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.958,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,4,1,785,74700.469,0,0,3092.4688 -8681,10689,19513,19515,-9,-9,2,1,1,37,1,0,1,0,2,-9,2,1,0,0,4,8.1658173,8.646904,0,2,0,-9,4,0,2,-16.833042,0,0,0,35,3,5,1,-9,-9,2019,1,1,8,0,37,38,15,1,0,1,0,13.198456,13.198456,0,0,0,0,0,0,0,2,1,1,0,0,0,4.9472785,3,54.740002,57.220001,54.099998,59.110001,7,1,1,0,0,7,4,1,785,74700.469,0,0,3092.4688 -8681,10689,19514,-9,19515,19513,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,6.2023058,5.8062396,0,2,0,0,0,-9,0,-1077.4202,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,3,0,14,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,-9,-9,7,4,2,0,0,7,4,1,785,74700.469,0,0,3092.4688 -8681,10689,19515,19513,-9,-9,1,1,0,35,1,0,1,0,3,-9,2,1,0,0,5,7.9167089,7.9802408,0,2,0,-9,4,0,-2,3.0168195,0,0,1,37,2,4,1,-9,-9,2019,1,2,11,1,38,38,15,1,0,1,0,8.4158869,8.4158869,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,54.740002,57.220001,7,4,2,0,0,7,4,1,785,74700.469,0,0,3092.4688 -8682,10690,19516,19519,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,8.671052,8.5442724,0,2,0,-9,6,0,-8,177.93797,0,0,1,51,2,4,1,3,2,2019,1,1,9,0,41,60,15,1,0,1,0,16.207054,16.207054,0,0,0,0,0,0,0,0,1,1,0,1.8962388,0,0,0,42.169998,56.080002,60.119999,54.799999,6,1,1,0,0,11,5,1,488.5,539022.94,0,0,4526.3198 -8682,10690,19517,-9,19516,19519,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.89203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,5,1,488.5,539022.94,0,0,4526.3198 -8682,10690,19518,-9,19516,19519,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.8496,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,11,5,1,488.5,539022.94,0,0,4526.3198 -8682,10690,19519,19516,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,4,8.7982407,9.0210476,0,2,0,-9,6,0,8,89.509087,0,0,0,43,2,4,1,2,2,2019,1,2,7,0,50,55,15,1,0,1,0,13.717388,13.717388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,42.169998,56.080002,6,1,1,0,0,11,5,1,488.5,539022.94,0,0,4526.3198 -8683,10691,19520,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,5,8.4177971,8.4449987,0,3,0,0,0,-9,0,-1052.1244,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,37,50,15,1,0,-9,0,19.56028,19.56028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,-9,-9,7,1,1,0,0,4,5,1,553,188942.58,0,0,3405.4082 -8684,10692,19521,19524,-9,-9,1,1,0,31,1,0,2,0,1,-9,2,1,0,0,5,7.8824234,7.2349286,0,2,0,-9,6,0,-3,37.076202,0,0,1,34,3,5,1,3,2,2019,1,2,9,1,19,19,15,1,0,1,0,11.532268,11.532268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,54.689999,57.470001,6,1,1,0,0,12,4,0,990.75,112652.63,0,0,2816.3704 -8684,10692,19522,-9,19521,19524,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.4194,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,0,990.75,112652.63,0,0,2816.3704 -8684,10692,19523,-9,19521,19524,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.71204,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,0,990.75,112652.63,0,0,2816.3704 -8684,10692,19524,19521,-9,-9,2,1,1,34,1,0,2,0,3,-9,1,1,0,0,5,8.6175909,8.6325693,0,2,0,-9,6,0,3,14.153781,0,0,0,31,1,5,1,-9,-9,2019,1,1,7,0,80,13,15,1,0,1,0,7.1489797,7.1489797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,54.099998,59.110001,5,1,1,0,0,12,4,0,990.75,112652.63,0,0,2816.3704 -8685,10693,19525,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,0,3,8.7935476,8.7420235,0,3,0,0,0,-9,0,-945.52094,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,36,37,15,1,0,-9,0,22.606441,22.606441,0,0,0,0,0,0,0,2,0,0,0,0,0,14.408507,3,60.860001,50.490002,-9,-9,6,1,1,0,0,13,5,1,286,491127.53,0,0,2024.1217 -8686,10694,19526,19527,-9,-9,1,1,0,40,1,0,2,0,3,-9,2,1,0,0,4,7.7446165,7.5925584,0,2,0,-9,6,0,-2,-15.295466,0,0,1,42,2,3,1,3,3,2019,1,2,10,0,30,28,15,1,0,1,0,6.7736239,6.7736239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,58.889999,48.599998,6,1,1,0,0,10,4,1,1245.25,831878.5,0,0,3761.9526 -8686,10694,19527,19526,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,8.8580046,8.8691616,7.1033511,2,0,-9,6,0,2,-90.811798,0,0,0,40,3,4,1,-9,-9,2019,1,1,7,0,40,36,15,1,0,1,0,15.635186,15.635186,0,0,0,0,0,0,0,0,1,1,0,0,7.7276158,0,0,58.889999,48.599998,51.240002,58.84,7,1,1,0,0,10,4,1,1245.25,831878.5,0,0,3761.9526 -8686,10694,19528,-9,19526,19527,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.4964,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,1245.25,831878.5,0,0,3761.9526 -8686,10694,19529,-9,19526,19527,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.1563,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,1245.25,831878.5,0,0,3761.9526 -8687,10695,19530,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-865.28363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,57.16,56.150002,-9,-9,7,1,1,0,0,12,1,1,431,136291.11,0,0,2321.3904 -8688,10696,19531,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,5,8.1891422,8.2997303,0,3,0,0,0,-9,0,-986.15155,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,35,25,15,1,0,-9,0,10.741375,10.741375,0,0,0,0,0,0,0,0,0,0,0,7.6643376,0,0,0,43.09,61.580002,-9,-9,6,1,1,0,0,11,4,0,287,-217941.17,0,0,3151.8774 -8689,10697,19532,19533,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,9.3316793,9.4349041,0,1,0,-9,8,0,4,57.625252,0,0,0,51,2,2,1,-9,-9,2019,1,1,7,0,48,45,15,1,0,1,0,30.873848,30.873848,0,0,0,0,0,0,0,2,0,0,0,5.0097041,0,0,3,50.810001,51.080002,57.34,31.860001,7,1,1,0,0,1,5,1,336,1106404.8,0,0,4574.1245 -8689,10697,19533,19532,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,8.0305805,7.8672576,0,1,0,-9,28,0,-4,45.901073,0,0,0,55,1,3,1,2,2,2019,1,2,9,0,32,32,15,1,0,1,0,11.433434,11.433434,0,0,0,0,0,0,0,7,0,0,0,4.4265404,0,6.312417,3,57.34,31.860001,50.810001,51.080002,6,1,1,0,0,1,5,1,336,1106404.8,0,0,4574.1245 -8689,10698,19534,-9,19533,19532,3,1,1,18,2,0,0,0,2,1,2,1,0,0,4,6.6128974,6.5722027,0,3,0,0,0,-9,0,-989.45709,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,22,0,15,1,0,-9,1,3.4857666,3.4857666,0,0,0,0,0,0,0,0,0,0,0,.7180146,0,0,0,51.810001,57.220001,-9,-9,6,1,1,0,0,1,2,1,328,7115.499,0,0,582.01288 -8690,10699,19535,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,2,0,7.1517401,7.0386081,3,0,0,0,-9,0,-1065.6395,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7945895,6.9771929,6.7778473,3,28.129999,44.439999,-9,-9,1,1,1,0,0,9,2,1,248,567957.06,0,0,1645.9457 -8691,10700,19536,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,1,8.0392008,8.1993589,0,3,0,-9,0,1,0,-1154.3074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,38,38,15,1,1,-9,0,9.3921709,9.3921709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.810001,15.92,-9,-9,7,3,4,0,0,5,4,0,85,32548.387,0,0,1393.6017 -8691,10701,19537,-9,19536,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,8.2153053,8.0592403,0,3,0,0,0,-9,0,-895.00287,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,40,40,15,1,0,-9,1,7.461885,7.461885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,5,3,0,1992,-96040.711,0,0,650.35138 -8692,10702,19538,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-975.53241,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.75,51.57,-9,-9,5,1,1,1,1,13,1,0,458,54499.75,0,0,901.0954 -8692,10703,19539,-9,19538,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,2,7.2199593,6.9887075,0,3,0,0,0,-9,0,-978.07825,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,20,20,15,1,0,-9,1,6.3048692,6.3048692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.240002,47.41,-9,-9,6,1,1,0,0,13,2,0,297,-20662.754,0,0,1356.7111 -8693,10704,19540,19541,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,5,0,5.740097,5.4864674,1,0,-9,51,0,-3,-31.766899,0,0,0,73,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8557372,5.9187207,0,0,41.139999,63.75,62.419998,26.879999,6,1,1,0,0,12,2,1,505.5,86570.813,0,0,658.87683 -8693,10704,19541,19540,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,51,0,3,36.196682,0,0,0,70,2,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,12.817871,0,0,0,0,0,1,1,0,0,0,0,0,62.419998,26.879999,41.139999,63.75,6,1,1,0,0,12,2,1,505.5,86570.813,0,0,658.87683 -8694,10705,19542,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,3,3,0,1,3,0,3.191396,3.3157425,3,0,0,0,-9,0,-1005.1283,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9861922,0,0,0,39.18,40.080002,-9,-9,4,1,1,1,0,10,2,0,2420,63985.918,0,0,1761.0382 -8695,10706,19543,19544,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,6.5975389,6.4894075,1,0,-9,8,0,2,38.568302,0,0,0,67,2,5,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,3.6141694,0,0,4.7938867,0,0,1,1,0,0,7.3005123,0,0,35.27,38.169998,52.380001,55.950001,5,1,1,0,0,2,3,1,311,641231.75,0,0,2303.6543 -8695,10706,19544,19543,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,7.1551247,7.4944358,1,0,-9,50,0,-2,118.93685,0,0,0,69,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2290335,7.4998875,6.0841031,3,52.380001,55.950001,35.27,38.169998,6,1,1,0,0,2,3,1,311,641231.75,0,0,2303.6543 -8695,10707,19545,-9,-9,-9,3,1,1,18,2,0,0,0,2,-9,7,2,0,0,5,6.6050849,6.4927125,0,3,0,0,0,-9,0,-959.8186,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,2,2,1,183,-40393.844,0,0,1313.0001 -8696,10708,19546,19547,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,0,3,8.2819519,7.9484797,0,2,0,-9,7,0,6,101.25467,0,0,0,51,2,4,1,-9,-9,2019,1,1,24,11,43,43,15,1,1,1,0,11.071259,11.071259,0,0,0,0,0,0,0,0,1,1,0,3.9303741,0,0,0,31.48,51.580002,51.830002,57.200001,3,1,1,0,0,5,4,1,826.5,455607,0,0,4065.2729 -8696,10708,19547,19546,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,0,4,8.4239817,8.389698,0,2,0,-9,19,0,-6,-9.3568478,0,0,0,57,2,3,1,1,3,2019,1,2,7,0,45,55,15,1,0,1,0,12.763361,12.763361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,31.48,51.580002,6,1,1,0,1,5,4,1,826.5,455607,0,0,4065.2729 -8697,10709,19548,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,6.6188216,6.5368767,3,0,0,0,-9,0,-1034.9158,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3229425,6.3994579,0,0,48.279999,53.419998,-9,-9,6,1,1,0,0,4,2,1,768,309589.19,0,0,720.95581 -8698,10710,19549,-9,19552,19551,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.5524,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,1,730.33331,-47690.934,0,0,2655.0002 -8698,10710,19550,-9,19552,19551,2,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.78412,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,1,730.33331,-47690.934,0,0,2655.0002 -8698,10710,19551,19552,-9,-9,3,1,1,42,1,0,4,0,1,-9,8,3,1,1,1,0,0,0,2,0,-9,8,0,3,-9.500226,0,0,0,39,1,3,3,-9,-9,2019,4,1,20,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.4331317,3,51.419998,13.45,34.810001,39.240002,3,1,1,0,0,2,2,1,730.33331,-47690.934,0,0,2655.0002 -8698,10710,19552,19551,-9,-9,1,1,0,39,1,0,4,0,1,-9,6,3,0,1,3,0,5.1098571,5.1809936,2,0,-9,8,0,-3,-81.298622,0,0,1,42,1,1,3,2,1,2019,4,3,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.2313681,0,121.03603,2,34.810001,39.240002,51.419998,13.45,5,1,1,0,0,2,2,1,730.33331,-47690.934,0,0,2655.0002 -8698,10710,19553,-9,19552,19551,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.71118,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,2,1,730.33331,-47690.934,0,0,2655.0002 -8698,10710,19554,-9,19552,19551,4,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.61353,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,2,1,730.33331,-47690.934,0,0,2655.0002 -8699,10711,19555,-9,19556,19557,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.8389,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,2,5,1,389.66666,118947.63,0,0,3373.1787 -8699,10711,19556,19557,-9,-9,2,1,0,23,1,0,1,0,1,-9,2,1,0,0,4,8.3400402,8.1755705,4.9521251,2,0,-9,2,0,-5,25.756021,-9,1,1,28,1,4,1,-9,-9,2019,1,1,17,5,37,0,15,1,1,1,0,8.9695539,8.9695539,0,0,0,0,0,0,0,2,1,1,0,4.9830198,0,1.4333276,3,30.77,64.339996,40.580002,60.950001,5,4,2,0,0,2,5,1,389.66666,118947.63,0,0,3373.1787 -8699,10711,19557,19556,-9,-9,1,1,1,28,1,0,1,0,1,-9,2,1,0,0,4,8.9590635,9.0966053,0,2,0,-9,2,0,5,-55.046986,0,1,0,23,1,4,1,-9,-9,2019,1,2,11,3,55,44,15,1,0,1,0,14.46241,14.46241,0,0,0,0,0,0,0,0,1,1,0,3.4278195,0,0,0,40.580002,60.950001,30.77,64.339996,5,1,1,0,0,2,5,1,389.66666,118947.63,0,0,3373.1787 -8700,10712,19558,-9,19559,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-979.49072,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,1,0,244,0,0,0,2853.4683 -8700,10712,19559,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,6,3,0,1,2,0,0,0,4,0,-9,0,-9,0,-870.23688,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.790001,32.939999,-9,-9,5,1,1,0,0,2,1,0,244,0,0,0,2853.4683 -8700,10712,19560,-9,19559,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-993.31421,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,244,0,0,0,2853.4683 -8701,10713,19561,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,1,1,0,0,2,9.0300808,8.5547724,0,3,0,0,0,-9,0,-986.81433,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,0,-9,0,15.736485,15.736485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.549999,47.77,-9,-9,3,1,1,0,0,12,5,0,330,491523.91,0,0,2383.8503 -8702,10714,19562,-9,-9,-9,1,1,1,53,3,0,0,0,2,0,7,2,0,0,4,0,7.4601979,7.4343896,3,0,0,0,-9,0,-1084.3837,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.087038,7.4438281,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,10,3,1,881,947299.25,0,0,2991.0212 -8703,10715,19563,19564,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,8.7579355,8.5742388,0,1,0,-9,1,-9,4,76.646729,0,1,0,23,1,4,1,-9,-9,2019,1,2,9,1,45,40,15,1,0,1,0,14.235768,14.235768,0,0,0,0,0,0,0,0,0,0,0,2.4550753,0,0,0,51.830002,57.200001,56.77,43.98,6,1,1,0,0,12,5,1,818,184269.45,0,0,3366.9458 -8703,10715,19564,19563,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,4,8.3570976,8.2463455,0,1,0,-9,1,-9,-4,57.324738,-9,1,1,27,1,4,1,-9,-9,2019,1,1,12,0,35,0,15,1,0,1,0,9.995595,9.995595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.77,43.98,51.830002,57.200001,6,1,1,0,0,12,5,1,818,184269.45,0,0,3366.9458 -8704,10716,19565,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,7.1321487,7.2164769,0,3,0,0,0,-9,0,-896.14447,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,14,4,0,17,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.029999,51.689999,-9,-9,3,2,3,0,0,8,2,0,493,35280.289,0,0,1820.2327 -8705,10717,19566,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,5.2284522,5.3283491,3,0,0,0,-9,0,-1007.6368,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5236826,5.6928959,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,2,2,1,107,132960.42,0,0,1542.0181 -8706,10718,19567,19568,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,4,7.8454595,7.8790436,0,1,0,-9,5,0,-6,-92.578377,0,0,0,68,1,2,3,-9,-9,2019,2,1,6,0,30,32,15,1,0,4,0,9.5585022,9.5585022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,61.040001,28.879999,6,1,1,0,0,5,3,1,1101.5,522618.41,0,0,1816.8315 -8706,10718,19568,19567,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,2,0,6.9963412,7.0699248,1,0,-9,5,0,6,58.413395,0,0,0,62,3,4,1,3,1,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,1,0,7.24968,0,0,0,0,0,1,1,0,7.3135366,7.0486894,0,0,61.040001,28.879999,57.16,56.150002,6,1,1,0,0,5,3,1,1101.5,522618.41,0,0,1816.8315 -8707,10719,19569,19570,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,5.8701077,5.7740765,1,0,-9,24,0,1,78.934937,0,0,0,71,3,2,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,10.115148,0,0,0,0,14.5,1,1,0,0,5.4772005,11.075442,1,47.549999,33.799999,39.389999,26.92,5,1,1,0,0,6,2,0,136.5,308493.31,0,0,1167.2391 -8707,10719,19570,19569,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.7103882,6.6593528,1,0,-9,24,0,-1,-154.14659,0,0,0,72,3,2,3,2,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,1,0,11.830467,5.6771159,0,0,0,0,1,1,0,0,6.680922,0,0,39.389999,26.92,47.549999,33.799999,3,1,1,0,0,6,2,0,136.5,308493.31,0,0,1167.2391 -8708,10720,19571,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,2,0,5.8295856,6.1093612,3,0,0,0,-9,0,-909.55878,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.963118,6.007535,0,0,34.130001,38.700001,-9,-9,6,1,1,0,0,12,2,1,557,256434.7,0,0,-45.11351 -8709,10721,19572,19573,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,8.5512848,8.9454193,1,0,-9,10,0,1,62.083424,0,0,0,65,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,14.208773,0,0,0,0,0,1,1,0,8.8523035,8.5531874,0,0,59.07,43.049999,60.119999,54.799999,6,1,1,0,0,12,4,1,998,1542457.5,0,0,4940.6563 -8709,10721,19573,19572,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.0138779,5.544908,1,0,-9,10,0,-1,91.987923,0,0,0,66,2,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.2880454,5.8124847,3.8258462,3,60.119999,54.799999,59.07,43.049999,7,1,1,0,0,12,4,1,998,1542457.5,0,0,4940.6563 -8710,10722,19574,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,1,1,0,0,4,6.872736,6.9733992,0,3,0,0,0,-9,0,-966.84406,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,12,15,15,1,0,-9,0,8.1643915,8.1643915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,7,4,2,0,0,7,2,0,1628,907636.69,0,0,660.66077 -8710,10723,19575,-9,19574,-9,2,1,0,36,2,0,0,0,1,-9,2,1,0,0,5,7.3743172,7.4121256,0,3,0,0,0,-9,0,-1071.6029,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,24,26,15,1,0,-9,1,7.5399194,7.5399194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.669998,46.27,-9,-9,7,3,4,0,0,7,3,0,1674,118302.86,0,0,-3.6135054 -8711,10724,19576,19577,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,5,0,7.3930616,7.8720436,1,0,-9,6,0,-1,-47.960453,0,0,0,61,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.1784315,8.0376253,21.760326,3,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,4,4,1,1450.5,1391571.5,0,0,2967.875 -8711,10724,19577,19576,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,4,0,8.1770916,7.824595,1,0,-9,6,0,1,-49.665596,0,0,0,60,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,6.6154075,7.9220285,24.857786,3,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,4,4,1,1450.5,1391571.5,0,0,2967.875 -8712,10725,19578,-9,-9,-9,2,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,5.0667109,5.297255,3,0,0,0,-9,0,-1094.7968,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6569108,4.8432117,0,0,53,44,-9,-9,5,2,3,0,0,11,2,1,849,345335.63,0,0,1593.9331 -8712,10726,19579,19580,19578,-9,3,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,6.3180084,6.0020099,0,1,0,-9,36,0,0,51.486038,0,0,0,53,3,4,1,3,-9,2019,1,1,10,1,5,0,15,1,0,1,0,8.9527655,8.9527655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,53,53,54,5,2,3,0,0,11,2,1,568,57985.531,0,0,379.05612 -8712,10726,19580,19579,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,0,4,6.8197465,6.5187879,0,1,0,-9,36,0,0,-18.524012,0,0,0,53,3,4,1,-9,-9,2019,1,3,9,1,5,0,15,1,0,1,0,23.674696,23.674696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,51,53,5,2,3,0,0,11,2,1,568,57985.531,0,0,379.05612 -8712,10727,19581,-9,19579,19580,4,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,7.8840513,7.6485262,0,3,0,0,0,-9,0,-1021.7162,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,60,0,15,1,0,-9,1,5.6609807,5.6609807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,11,4,1,994,-36643.289,0,0,1932.3601 -8712,10728,19582,-9,19579,19580,5,1,0,26,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1076.7816,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,11,1,1,595,100882.42,0,0,439.08255 -8713,10729,19583,19584,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,7.7929206,7.9190979,0,1,0,-9,34,0,0,19.682308,0,0,0,53,1,1,1,2,3,2019,1,2,10,0,33,34,15,1,0,1,0,8.0803785,8.0803785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.959999,42.860001,56.75,44.700001,6,1,1,0,0,7,4,1,2170.5,360817.63,0,0,3374.5449 -8713,10729,19584,19583,-9,-9,2,1,1,53,1,0,0,0,1,-9,1,1,0,0,1,7.5374351,8.0635357,7.1432137,1,0,-9,34,0,0,29.682434,0,0,0,53,2,3,1,2,2,2019,1,1,9,0,48,35,15,1,0,1,0,5.0529685,5.0529685,0,0,0,0,0,0,0,0,0,0,0,6.4525862,7.2249002,0,0,56.75,44.700001,53.959999,42.860001,6,1,1,0,0,7,4,1,2170.5,360817.63,0,0,3374.5449 -8713,10730,19585,-9,19583,19584,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.0820856,8.0118971,0,3,0,0,0,-9,0,-1023.9454,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,39,40,15,1,0,-9,1,9.3640394,9.3640394,0,0,0,0,0,0,0,0,0,0,0,3.6703634,0,0,0,49.419998,50.189999,-9,-9,6,1,1,0,0,7,4,1,222,-155550.38,0,0,2456.6467 -8713,10731,19586,-9,19583,19584,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,7.5486321,7.7409687,0,3,0,0,0,-9,0,-917.86737,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,18,6,40,70,15,1,1,-9,1,7.9859171,7.9859171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.959999,54.98,-9,-9,5,1,1,0,0,7,3,1,188,-98682.32,0,0,1175.9515 -8714,10732,19587,-9,-9,-9,1,1,0,78,2,0,0,0,2,-9,4,3,0,0,3,0,6.8825784,6.9790926,3,0,0,0,-9,0,-893.43091,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4630477,7.0283484,0,0,50.720001,46.82,-9,-9,6,2,3,0,0,9,2,1,491,399072.75,0,0,1247.4736 -8715,10733,19588,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,1,1,0,0,3,7.1743159,7.349278,0,3,0,0,0,-9,0,-1128.2406,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,50,55,15,1,0,-9,0,3.1079481,3.1079481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.199997,37.540001,-9,-9,5,1,1,0,0,9,2,1,1085,401647.13,0,0,781.15222 -8716,10734,19589,19592,-9,-9,2,1,0,39,1,1,3,0,1,-9,2,1,0,0,3,6.9887481,6.8951807,0,2,0,-9,10,0,0,135.32385,0,0,1,39,1,4,1,-9,-9,2019,1,1,7,0,16,16,15,1,0,1,0,8.7280502,8.7280502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.75,53.700001,52,56,6,2,3,0,0,4,4,1,512.59998,660523.69,0,0,3401.2896 -8716,10734,19590,-9,19589,19592,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.7399,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,4,1,512.59998,660523.69,0,0,3401.2896 -8716,10734,19591,-9,19589,19592,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.7913,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,4,4,1,512.59998,660523.69,0,0,3401.2896 -8716,10734,19592,19589,-9,-9,1,1,1,39,1,1,3,0,1,-9,2,1,0,0,4,8.7241545,8.6127043,0,2,0,-9,10,0,0,1.428149,0,0,0,39,1,3,1,-9,-9,2019,1,2,9,1,35,35,15,1,0,1,0,21.957922,21.957922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,47.75,53.700001,5,2,3,0,0,4,4,1,512.59998,660523.69,0,0,3401.2896 -8716,10734,19593,-9,19589,19592,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-950.80316,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,4,1,512.59998,660523.69,0,0,3401.2896 -8717,10735,19594,-9,19595,-9,1,1,1,63,3,0,0,0,2,-9,8,3,1,1,1,0,6.4916744,6.1141953,3,0,0,0,-9,0,-1009.5164,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4815717,5.992269,0,0,46.290001,16.879999,-9,-9,2,1,1,0,0,4,2,1,413,508195.97,0,0,666.27264 -8717,10736,19595,-9,-9,-9,2,1,0,84,3,0,0,0,3,-9,4,3,0,1,1,0,6.7541499,6.4435282,3,0,0,0,-9,0,-1023.1129,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1018519,6.6570673,0,0,50.27,8.6700001,-9,-9,3,1,1,0,0,4,2,1,784,486720.97,0,0,2280.8574 -8718,10737,19596,19597,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,-8,-121.92932,0,0,0,93,3,2,3,-9,-9,2019,4,1,16,8,0,0,15,4,1,4,0,0,0,1,0,0,6.7594409,3.8492262,0,0,0,1,1,0,0,0,0,0,46.290001,24.629999,64.889999,14.84,7,2,3,0,0,6,2,1,540,312410.03,0,0,2180.9858 -8718,10737,19597,19596,-9,-9,1,1,1,93,1,0,0,0,3,-9,4,3,0,0,2,0,6.4765153,6.4682274,1,0,-9,8,0,8,-62.152649,0,0,0,85,3,2,3,-9,-9,2019,4,2,12,5,0,0,15,4,1,4,0,0,0,1,7.2712793,0,0,0,0,55.063732,0,1,1,0,0,6.2608204,0,0,64.889999,14.84,46.290001,24.629999,7,2,3,0,0,6,2,1,540,312410.03,0,0,2180.9858 -8719,10738,19598,-9,-9,-9,2,1,0,48,2,0,0,0,2,-9,2,1,0,0,5,8.086297,8.2369108,0,3,0,0,0,-9,0,-974.22046,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,35,35,15,1,0,-9,0,11.826817,11.826817,0,0,0,0,0,0,0,14.5,0,0,0,1.6265395,0,19.340355,3,51.389999,59.18,-9,-9,6,1,1,0,0,12,4,0,422,-67847.125,0,0,1348.8191 -8720,10739,19599,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,4,8.7559719,8.7729549,0,3,0,0,0,-9,0,-1058.3948,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,41,38,15,1,0,-9,0,14.390816,14.390816,0,0,0,0,0,0,0,0,0,0,0,1.492278,0,0,0,34.25,58.669998,-9,-9,5,1,1,0,0,11,5,1,1205,323465.38,0,0,1696.2484 -8721,10740,19600,19601,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,8.2368565,8.4269857,1,0,-9,48,0,-1,-24.551462,0,0,0,65,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4134917,8.5935812,12.797033,3,63.41,42.400002,54.959999,53.169998,4,1,1,0,0,5,4,1,841,1065389.6,0,0,2091.9236 -8721,10740,19601,19600,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,4.9083004,5.8029504,1,0,-9,48,0,1,-17.524471,0,0,0,64,2,3,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2139368,5.6524148,17.91501,3,54.959999,53.169998,63.41,42.400002,7,1,1,0,0,5,4,1,841,1065389.6,0,0,2091.9236 -8722,10741,19602,-9,-9,-9,1,1,1,38,2,0,0,0,3,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1090.4989,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,32,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.68,48.799999,-9,-9,1,1,1,1,1,9,1,0,540,2268.7117,0,0,969.86786 -8723,10742,19603,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,1,1,0,7.2789392,6.7817488,3,0,0,0,-9,0,-933.33472,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.455245,6.80475,0,0,66.050003,8.9099998,-9,-9,6,1,1,0,0,1,2,0,601,186820.84,0,0,408.11542 -8724,10743,19604,19605,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,8.6445732,8.620821,0,1,0,-9,31,0,-3,-118.01383,0,0,0,61,1,3,1,2,2,2019,1,1,12,0,60,50,15,1,0,1,0,10.312317,10.312317,0,0,0,0,0,0,0,0,0,0,0,.0060516652,0,0,0,58.32,50.220001,59.07,43.049999,6,1,1,0,0,7,5,1,1969,1938539.3,0,0,5275.186 -8724,10743,19605,19604,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,3,7.7501836,8.6144819,7.6302276,1,0,-9,31,0,3,-2.2256608,0,0,0,58,2,3,1,1,3,2019,1,2,8,0,17,0,15,1,0,1,0,16.698219,16.698219,0,0,0,0,0,0,0,0,0,0,0,3.7184978,8.4190607,0,0,59.07,43.049999,58.32,50.220001,6,1,1,0,0,7,5,1,1969,1938539.3,0,0,5275.186 -8725,10744,19606,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,8.5137377,8.7977667,0,3,0,0,0,-9,0,-955.18835,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,31,12,52,0,15,1,1,-9,0,13.742785,13.742785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.92,49.419998,-9,-9,1,1,1,0,0,8,5,1,1433,249919,0,0,1727.7054 -8725,10745,19607,-9,19606,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,8.2043762,8.157238,0,3,0,0,0,-9,0,-971.62512,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,4,0,65,0,15,1,0,-9,1,5.273489,5.273489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,8,4,1,487,221607.45,0,0,2350.5728 -8726,10746,19608,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-902.29828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,5,1,1,0,0,13,1,0,304,-73576.297,0,0,1099.1086 -8727,10747,19609,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,9.0249195,9.251483,0,3,0,-9,0,0,0,-966.83862,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,38,38,15,1,0,-9,0,30.566124,30.566124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,52.91,-9,-9,6,1,1,0,0,12,5,0,257,1188179.4,0,0,2863.5029 -8728,10748,19610,-9,-9,-9,1,1,1,93,2,0,0,0,3,-9,4,3,0,0,4,0,6.752018,6.6257787,3,0,0,0,-9,0,-1005.4505,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8528152,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,6,2,1,120,321361.63,0,0,1577.4368 -8729,10749,19611,-9,19612,19613,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-860.90808,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,1447.6666,448318.25,0,0,2635.2144 -8729,10749,19612,19613,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,0,3,7.203558,7.5855393,5.9498596,2,0,1,1,-9,-11,52.632881,0,1,1,39,1,3,1,2,1,2019,1,3,10,0,37,19,15,1,0,1,0,3.5369508,3.5369508,0,0,0,0,0,0,0,0,1,1,0,6.3450646,0,0,0,54.990002,36.689999,48.849998,48.189999,6,1,1,0,0,13,4,1,1447.6666,448318.25,0,0,2635.2144 -8729,10749,19613,19612,-9,-9,3,1,1,39,1,0,1,0,1,-9,2,1,0,0,3,8.411891,8.1931486,0,2,0,-9,1,-9,11,18.417513,-9,0,0,28,2,3,1,-9,-9,2019,1,1,8,0,37,0,15,1,0,1,0,12.255938,12.255938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.849998,48.189999,54.990002,36.689999,6,1,1,0,0,13,4,1,1447.6666,448318.25,0,0,2635.2144 -8730,10750,19614,19615,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,0,4,8.4478359,8.666297,0,1,0,-9,1,-9,3,9.8828678,-9,1,0,20,2,4,1,-9,-9,2019,1,1,17,5,62,0,15,1,1,1,0,8.0529394,8.0529394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.150002,61.099998,58.720001,51.290001,4,1,1,0,0,2,5,1,309,-48048.156,0,0,3602.0146 -8730,10750,19615,19614,-9,-9,1,1,0,20,1,0,0,0,2,-9,2,1,0,0,4,7.6680293,8.1498365,0,1,0,1,1,-9,-3,-36.501717,0,1,1,23,2,4,1,-9,-9,2019,1,2,8,1,43,37,15,1,0,1,0,6.6800747,6.6800747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,51.290001,35.150002,61.099998,6,1,1,0,0,2,5,1,309,-48048.156,0,0,3602.0146 -8731,10751,19616,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,0,4,1.0171872,1.1001663,0,3,0,-9,0,-9,0,-973.8877,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,37,0,15,1,0,-9,0,.009684016,.009684016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,6,1,1,0,0,2,1,0,350,18687.707,0,0,-622.44843 -8732,10752,19617,-9,19618,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1077.4026,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,440.33334,0,0,0,1497.408 -8732,10752,19618,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,0,3,7.2605791,7.4761543,6.0405507,4,0,0,0,-9,0,-857.49054,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,10,0,15,1,0,-9,0,16.207939,16.207939,0,0,0,0,0,0,0,0,1,1,0,5.749474,0,0,0,39.099998,57.790001,-9,-9,5,1,1,0,0,9,2,0,440.33334,0,0,0,1497.408 -8732,10752,19619,-9,19618,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1046.0122,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,440.33334,0,0,0,1497.408 -8733,10753,19620,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-996.41699,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,3.9001579,0,0,0,0,22.171696,0,1,1,0,.8232308,0,0,0,37.34,23.610001,-9,-9,4,1,1,0,0,12,1,0,1091,0,0,0,2210.3525 -8734,10754,19621,19622,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,1,1,0,5.4136496,5.1541004,1,0,-9,51,0,-2,-64.359375,0,0,0,77,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,23.164738,0,0,0,0,0,1,1,0,4.8907776,5.3008795,0,0,53.400002,11.05,57.91,46.150002,6,1,1,0,0,4,3,1,704,494743.31,0,0,2642.562 -8734,10754,19622,19621,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.3992472,7.3002191,1,0,-9,51,0,2,-113.10015,0,0,0,75,2,1,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.8387184,6.8538814,45.138447,1,57.91,46.150002,53.400002,11.05,7,1,1,0,0,4,3,1,704,494743.31,0,0,2642.562 -8735,10755,19623,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.2145033,8.0444422,0,3,0,-9,0,-9,0,-889.22382,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,40,0,15,1,0,-9,0,10.273607,10.273607,0,0,0,0,0,0,0,0,0,0,0,1.4853882,0,0,0,39.330002,58.880001,-9,-9,6,1,1,0,0,1,4,0,584,-21551.297,0,0,1647.3022 -8736,10756,19624,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,4,7.4769955,7.5765033,0,3,0,0,0,-9,0,-1038.8107,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,39,37,15,1,1,-9,0,7.1024222,7.1024222,0,0,0,0,0,0,0,0,1,1,0,1.342443,0,0,0,46.439999,59.619999,-9,-9,3,1,1,0,0,4,3,1,706,75332.797,0,0,770.87292 -8737,10757,19625,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1132.797,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2963843,0,0,0,37.919998,47.619999,-9,-9,4,1,1,0,0,9,1,1,1507,-42983.371,0,0,1046.5571 -8738,10758,19626,19627,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,4.2499814,4.6098428,1,0,-9,46,0,-3,0,0,0,0,71,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.471447,4.3834534,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,7,2,1,666.5,747529.63,0,0,1687.0457 -8738,10758,19627,19626,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,4.6238627,4.7745934,1,0,-9,46,0,3,0,0,0,0,68,3,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7102857,4.2381468,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,7,2,1,666.5,747529.63,0,0,1687.0457 -8739,10759,19628,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-973.50623,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.759998,31.299999,-9,-9,5,1,1,0,1,8,1,0,312,61788.047,0,0,1097.5934 -8740,10760,19629,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,6.4067674,6.2011323,3,0,0,0,-9,0,-996.71014,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1084814,5.9895649,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,10,2,1,453,556860.94,0,0,-462.47668 -8741,10761,19630,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,0,4,8.4455109,8.5488653,0,3,0,0,0,-9,0,-944.58002,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,42,38,15,1,0,-9,0,11.442372,11.442372,0,0,0,0,0,0,0,2,0,0,0,5.7099233,0,0,3,58.299999,52.91,-9,-9,5,1,1,0,0,13,5,1,204,236220.78,0,0,1107.9854 -8742,10762,19631,-9,19632,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1095.613,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,2,0,385.66666,-65013.973,0,0,743.71899 -8742,10762,19632,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,1,1,0,0,5,6.9798713,7.2085776,6.1350732,4,0,-9,0,1,0,-982.28595,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,4,13,0,15,1,1,-9,0,9.9725819,9.9725819,0,0,0,0,0,0,0,0,1,1,0,6.5026727,0,0,0,52.130001,57.220001,-9,-9,5,1,1,0,1,5,2,0,385.66666,-65013.973,0,0,743.71899 -8742,10762,19633,-9,19632,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-906.46686,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,2,0,385.66666,-65013.973,0,0,743.71899 -8743,10763,19634,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-931.64471,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.970001,18.82,-9,-9,4,1,1,0,0,10,1,0,1339,-75633.977,0,0,476.67307 -8743,10764,19635,-9,-9,19634,2,1,1,22,2,0,0,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-930.13708,1,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,35,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,12.08,74.290001,-9,-9,2,1,1,0,1,10,1,0,1346,25040.549,0,0,0 -8744,10765,19636,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,1,1,0,0,3,8.9296579,8.7121572,0,3,0,-9,0,1,0,-1070.4706,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,98,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.773139,0,114.87959,3,57.330002,53.459999,-9,-9,6,1,1,0,0,11,5,1,427,365678.97,0,0,4011.0701 -8744,10766,19637,-9,19636,-9,4,1,1,28,2,0,0,0,1,-9,1,1,0,0,4,7.4658117,7.3449683,0,3,0,0,0,-9,0,-1119.8268,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,30,35,15,1,0,-9,1,5.1139603,5.1139603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.639999,-9,-9,6,1,1,0,0,11,3,1,791,2296.6035,0,0,1449.6132 -8744,10767,19638,-9,-9,-9,3,1,0,48,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1014.5769,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.389999,54.220001,-9,-9,7,1,1,0,0,11,1,1,1330,-74274.32,0,0,1572.6969 -8744,10768,19639,-9,-9,-9,2,1,1,25,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-946.18274,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,-9,-9,7,1,1,0,0,11,1,1,315,4317.2236,0,0,1414.9581 -8745,10769,19640,-9,19641,19642,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.4603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,3,1,391,-119080.53,0,0,2324.8174 -8745,10769,19641,19642,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,0,5,7.3929138,7.2126751,0,2,0,-9,8,0,3,-50.621723,0,0,1,30,2,5,1,-9,-9,2019,1,1,8,0,24,22,15,1,0,1,0,8.4009619,8.4009619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.34,56.669998,52.240002,58.560001,6,4,1,0,0,13,3,1,391,-119080.53,0,0,2324.8174 -8745,10769,19642,19641,-9,-9,1,1,1,30,1,0,2,0,2,-9,1,1,0,0,5,8.4862833,8.1008625,0,2,0,-9,8,0,-3,8.0403595,0,0,0,33,2,5,1,-9,-9,2019,1,2,8,0,40,60,15,1,0,1,0,9.6384697,9.6384697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,58.560001,53.34,56.669998,6,1,1,0,0,13,3,1,391,-119080.53,0,0,2324.8174 -8746,10770,19643,-9,19645,19644,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,4.4946809,4.5621724,0,2,0,0,0,-9,0,-910.61395,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,3,1,186,284621.13,0,0,1735.8282 -8746,10770,19644,19645,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,21,0,-1,-128.55612,0,0,0,52,2,3,1,3,2,2019,1,1,4,0,20,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.209999,48.32,26.1,54.439999,5,1,1,0,1,2,3,1,186,284621.13,0,0,1735.8282 -8746,10770,19645,19644,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,7.7010651,7.9956741,0,2,0,-9,21,0,1,166.85182,0,0,0,51,2,3,1,3,3,2019,1,2,27,12,39,40,15,1,1,1,0,10.04393,10.04393,0,0,0,0,0,0,0,2,1,1,0,0,0,5.2852945,3,26.1,54.439999,50.209999,48.32,4,1,1,0,0,2,3,1,186,284621.13,0,0,1735.8282 -8747,10771,19646,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1101.4282,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,1,0,0,30.572359,0,0,0,0,1,1,0,0,0,0,0,44.830002,18.74,-9,-9,4,1,1,0,0,13,1,0,742,-12829.909,0,0,1633.3008 -8748,10772,19647,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1014.915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.529999,38.189999,-9,-9,6,1,1,0,0,11,1,0,829,71385.469,0,0,1137.5338 -8749,10773,19648,-9,19651,19650,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1127.7842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,1,0,943.25,44545.852,0,0,1755.5718 -8749,10773,19649,-9,19651,19650,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1137.4061,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,0,943.25,44545.852,0,0,1755.5718 -8749,10773,19650,19651,-9,-9,1,1,1,28,1,1,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,5,0,0,1,0,23,2,3,3,3,2,2019,4,2,15,5,0,47,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,37.73,50.66,48.18,5,1,1,1,1,12,1,0,943.25,44545.852,0,0,1755.5718 -8749,10773,19651,19650,-9,-9,2,1,0,23,1,1,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,-5,0,-9,1,1,28,2,3,3,-9,-9,2019,4,1,18,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.66,48.18,52.98,37.73,6,1,1,1,0,12,1,0,943.25,44545.852,0,0,1755.5718 -8750,10774,19652,19653,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.6719494,8.7847795,7.0638933,1,0,-9,10,0,2,-56.006405,0,0,0,58,2,3,1,3,3,2019,1,2,6,0,40,45,15,1,0,1,0,15.472503,15.472503,0,0,0,0,0,0,0,0,0,0,0,0,6.8241048,0,0,56.639999,44.130001,39.509998,48.16,6,1,1,0,0,5,5,1,1860.5,1251460.5,0,0,3346.4019 -8750,10774,19653,19652,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.210639,7.3490305,0,1,0,-9,10,0,-2,-174.76651,0,0,0,60,3,3,1,3,3,2019,1,1,19,7,8,21,15,1,1,1,0,16.198505,16.198505,0,0,0,0,0,0,0,0,0,0,0,1.6412405,0,0,0,39.509998,48.16,56.639999,44.130001,5,1,1,0,0,5,5,1,1860.5,1251460.5,0,0,3346.4019 -8751,10775,19654,19655,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,3,-49.868225,0,0,0,62,3,5,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,55.119999,47.860001,7,1,1,0,0,4,3,0,424.5,727747.31,0,0,2225.8442 -8751,10775,19655,19654,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,5,8.1853123,8.2630901,5.8231983,1,0,-9,43,0,-3,-44.597153,0,0,0,65,3,3,3,3,3,2019,2,1,6,0,44,44,15,1,0,4,0,9.1362629,9.1362629,0,0,0,0,0,0,0,0,1,1,0,0,5.7612538,0,0,55.119999,47.860001,61.43,43.34,1,1,1,0,0,4,3,0,424.5,727747.31,0,0,2225.8442 -8752,10776,19656,-9,19657,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-941.84418,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,3,1,589.33331,-35417.457,0,0,2566.3469 -8752,10776,19657,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,3,8.1920309,8.1412973,5.8189359,4,0,0,0,-9,0,-1035.507,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,33,33,15,1,0,-9,0,11.312274,11.312274,0,0,0,0,0,0,0,0,1,1,0,5.9251943,0,0,0,55.529999,51.549999,-9,-9,6,1,1,0,1,11,3,1,589.33331,-35417.457,0,0,2566.3469 -8752,10776,19658,-9,19657,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1063.2939,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,1,589.33331,-35417.457,0,0,2566.3469 -8753,10777,19659,-9,19660,19662,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.858,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,2,1,2032,1321284.4,0,0,2277.0747 -8753,10777,19660,19662,-9,-9,1,1,0,50,1,0,2,0,3,-9,2,1,0,1,3,5.4486709,5.4375973,0,2,0,-9,26,0,0,21.098938,0,0,0,50,3,4,1,-9,3,2019,1,4,16,5,4,4,15,1,1,1,0,5.4840546,5.4840546,0,0,0,0,0,0,0,0,1,1,0,2.1538632,0,0,0,47.07,53.970001,53,55,4,1,1,0,0,10,2,1,2032,1321284.4,0,0,2277.0747 -8753,10777,19661,-9,19660,19662,2,1,1,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1054.7444,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.4377191,3,34.959999,62.41,-9,-9,2,4,2,0,0,10,2,1,2032,1321284.4,0,0,2277.0747 -8753,10777,19662,19660,-9,-9,4,1,1,50,1,0,2,0,3,-9,2,1,0,0,4,7.3405561,7.4385567,0,2,0,-9,7,0,0,-38.257339,0,0,0,50,3,3,1,-9,-9,2019,1,1,9,1,40,45,15,1,0,1,0,6.2835445,6.2835445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,47.07,53.970001,6,4,5,0,0,10,2,1,2032,1321284.4,0,0,2277.0747 -8754,10778,19663,19664,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,6,0,0,42.917706,0,0,0,63,1,3,3,-9,-9,2019,4,1,26,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.09,28.950001,54.900002,54.529999,3,1,1,0,0,9,2,1,251.5,101065.42,0,0,2356.8154 -8754,10778,19664,19663,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,3,0,6.9846606,7.3550348,1,0,-9,6,0,0,73.842003,0,0,0,63,2,1,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1363649,7.148118,4.4277005,3,54.900002,54.529999,32.09,28.950001,6,1,1,0,0,9,2,1,251.5,101065.42,0,0,2356.8154 -8755,10779,19665,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,2,1,0,0,4,8.5813961,8.3471422,0,1,0,-9,8,0,17,94.73053,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,6,0,39,40,15,1,0,-9,0,13.603168,13.603168,0,0,0,0,0,0,0,0,0,0,0,6.7588396,0,0,0,57.16,56.150002,62.029999,36.18,6,1,1,0,0,11,5,1,336,197329.48,0,0,1114.2821 -8755,10780,19666,-9,-9,-9,2,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,8.5765905,8.5207205,0,1,0,-9,8,0,-17,9.0043163,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,11,0,38,0,15,1,0,-9,0,14.373863,14.373863,0,0,0,0,0,0,0,0,0,0,0,.24690008,0,0,0,62.029999,36.18,57.16,56.150002,6,1,1,0,0,11,5,1,368,476908.69,0,0,2186.0081 -8756,10781,19667,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,8.9558229,8.8566751,0,3,0,0,0,-9,0,-1034.3546,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,59,50,15,1,0,-9,0,14.859632,14.859632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,5,5,1,720,-39707.59,0,0,2609.4299 -8757,10782,19668,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,2,8.4874039,8.3445892,0,3,0,0,0,-9,0,-952.64771,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,44,45,15,1,0,-9,0,11.181345,11.181345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,44.27,-9,-9,6,1,1,0,0,6,5,0,407,273158,0,0,2462.3359 -8758,10783,19669,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,3,7.2478838,7.3298182,6.7348485,4,0,0,0,-9,0,-920.0307,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,21,19,15,1,0,-9,0,9.9519081,9.9519081,0,0,0,0,0,0,0,0,1,1,0,7.110395,0,0,0,43.689999,52.970001,-9,-9,5,1,1,0,0,9,2,1,587,34195.273,0,0,2719.5276 -8759,10784,19670,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,3,0,6.2440991,6.4380708,3,0,0,0,-9,0,-945.4505,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5857573,6.1691666,0,0,51.66,44.139999,-9,-9,6,1,1,0,0,12,2,1,944,330334.56,0,0,1236.2374 -8760,10785,19671,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,2,0,5.6596174,5.953445,3,0,0,0,-9,0,-1059.01,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,8.3381891,0,0,0,0,57.179512,0,1,1,0,3.594543,5.5026622,0,0,36.169998,34.16,-9,-9,5,1,1,0,0,5,2,0,615,-88128.891,0,0,930.00806 -8761,10786,19672,19673,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,7.2129841,7.1900253,0,2,0,-9,7,0,2,61.491219,0,0,0,43,2,4,1,3,3,2019,1,2,26,12,16,21,15,1,1,1,0,11.427609,11.427609,0,0,0,0,0,0,0,0,0,0,0,1.8060794,0,0,0,22.65,64.050003,48.869999,58.549999,3,1,1,0,0,12,5,1,992.66669,649390.63,0,0,4826.355 -8761,10786,19673,19672,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,9.4424763,9.1218891,7.6617217,2,0,-9,7,0,-2,47.394455,0,0,0,45,2,3,1,-9,-9,2019,1,1,12,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8796167,0,0,48.869999,58.549999,22.65,64.050003,6,1,1,0,0,12,5,1,992.66669,649390.63,0,0,4826.355 -8761,10786,19674,-9,19672,19673,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.68066,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,992.66669,649390.63,0,0,4826.355 -8762,10787,19675,19676,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,7.5218635,7.4535456,0,1,0,-9,34,0,1,-60.170311,0,0,0,53,2,4,3,2,2,2019,2,1,9,0,40,40,15,1,0,3,0,4.762876,4.762876,0,0,0,0,0,0,0,0,0,0,0,8.9295702,0,0,0,61.580002,37.810001,49.41,58.279999,6,1,1,0,0,10,2,1,907.5,788020,0,0,4688.1924 -8762,10787,19676,19675,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,35,0,-1,18.198584,0,0,0,54,2,3,1,3,3,2019,3,2,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.279999,61.580002,37.810001,6,1,1,0,0,10,2,1,907.5,788020,0,0,4688.1924 -8762,10788,19677,-9,19676,19675,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.0016241,7.8520994,0,3,0,0,0,-9,0,-1073.5189,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,6.3003592,6.3003592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,10,3,1,1200,32718.391,0,0,1084.3131 -8762,10789,19678,-9,19676,19675,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,3,7.6308894,7.6304178,0,3,0,0,0,-9,0,-900.6687,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,22,39,15,1,0,-9,1,9.9702663,9.9702663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.41,46.950001,-9,-9,7,1,1,0,0,10,3,1,1790,83768.961,0,0,91.787613 -8762,10790,19679,-9,19676,19675,5,1,0,22,2,0,0,0,2,1,2,1,0,0,4,8.1547508,8.1057673,0,3,0,0,0,-9,0,-1002.8378,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,45,0,15,1,0,-9,1,8.4151487,8.4151487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,4,1,304,63516.664,0,0,522.19904 -8763,10791,19680,19681,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.7113638,8.6941452,5.3899846,1,0,-9,6,0,-5,78.532776,0,0,0,65,3,2,3,3,3,2019,2,1,7,0,40,40,15,1,0,4,0,17.558281,17.558281,0,0,0,0,0,0,0,0,1,1,0,6.3677373,5.377809,0,0,57.16,56.150002,65.620003,32.290001,6,1,1,0,0,1,4,1,305,996814,0,0,2253.7119 -8763,10791,19681,19680,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,39,0,5,9.6874962,0,0,0,60,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8665209,0,0,0,65.620003,32.290001,57.16,56.150002,6,1,1,0,0,1,4,1,305,996814,0,0,2253.7119 -8764,10792,19682,-9,-9,-9,1,1,1,83,3,0,2,0,2,-9,4,3,0,0,4,0,6.9685421,7.3131938,4,0,0,0,-9,0,-1029.4736,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7501626,0,0,62.93,37.209999,-9,-9,7,1,1,0,0,7,2,1,1138,920657.13,0,0,846.35986 -8764,10793,19683,19685,-9,-9,5,1,1,53,1,0,2,0,2,-9,2,1,0,0,4,8.3958492,8.2191677,0,2,0,-9,3,0,14,-4.3444433,0,0,0,39,2,3,1,-9,-9,2019,1,2,9,0,50,50,15,1,0,1,0,9.3836794,9.3836794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,60.990002,49.040001,55.860001,5,1,1,0,0,7,3,1,266.25,1494865.3,0,0,2515.0542 -8764,10793,19684,-9,19685,19683,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-932.75708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,7,3,1,266.25,1494865.3,0,0,2515.0542 -8764,10793,19685,19683,-9,19682,2,1,0,39,1,0,2,0,2,-9,1,1,0,0,3,6.7288523,6.4214005,0,2,0,-9,3,0,-14,-64.358788,0,0,1,53,2,4,1,-9,2,2019,1,5,10,0,40,60,15,1,0,1,0,1.7499175,1.7499175,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.961652,3,49.040001,55.860001,46.389999,60.990002,6,1,1,0,1,7,3,1,266.25,1494865.3,0,0,2515.0542 -8764,10793,19686,-9,19685,19683,3,1,0,17,2,0,2,1,2,0,7,2,0,0,3,6.4750438,6.3934708,0,2,0,0,0,-9,0,-991.677,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,23,7,25,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.400002,58.619999,-9,-9,6,1,1,0,1,7,3,1,266.25,1494865.3,0,0,2515.0542 -8765,10794,19687,19688,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,1,6.5503926,6.4645929,0,1,0,-9,9,0,2,80.856323,0,0,0,57,3,3,1,3,3,2019,1,1,12,0,10,10,15,1,0,1,0,7.9022217,7.9022217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.959999,39.029999,30.49,56.93,4,1,1,0,0,13,4,1,830.5,61475.32,0,0,886.01489 -8765,10794,19688,19687,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,3,8.1261158,8.1406622,0,1,0,-9,9,0,-2,-76.3955,0,0,0,59,3,1,1,3,-9,2019,1,2,9,0,39,42,15,1,0,1,0,12.105887,12.105887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,56.93,48.959999,39.029999,7,1,1,0,0,13,4,1,830.5,61475.32,0,0,886.01489 -8765,10795,19689,-9,19687,19688,3,1,1,33,2,0,0,0,3,-9,1,1,0,0,4,8.4648228,8.200346,0,3,0,0,0,-9,0,-935.2478,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,35,0,15,1,0,-9,1,14.382766,14.382766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,57,-9,-9,5,1,1,0,0,13,5,1,226,-2265.1174,0,0,2115.5447 -8765,10796,19690,-9,19687,19688,4,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,8.2200947,7.7773557,0,3,0,-9,0,-9,0,-943.34039,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,37,0,15,1,0,-9,1,8.6091833,8.6091833,0,0,0,0,0,0,0,0,0,0,0,3.4728994,0,0,0,46,58,-9,-9,5,1,1,0,0,13,4,1,233,-72502.438,0,0,1164.2627 -8766,10797,19691,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,3,0,7.9102807,8.3281126,3,0,0,0,-9,0,-989.0697,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9822097,0,0,54,46,-9,-9,6,1,1,0,0,13,4,1,259,738981.25,0,0,934.60663 -8767,10798,19692,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,2,1,0,0,3,9.1880083,9.0593615,0,3,0,0,0,-9,0,-953.35553,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,42,52,15,1,0,-9,0,25.754002,25.754002,0,0,0,0,0,0,0,0,0,0,0,6.8743901,0,0,0,46.310001,51.529999,-9,-9,4,1,1,0,0,8,5,0,3355,732872.94,0,0,3219.8359 -8768,10799,19693,19694,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,3,8.4401455,8.6509695,0,1,0,-9,7,0,1,-64.14505,0,0,0,29,1,4,1,2,2,2019,1,1,12,0,38,40,15,1,0,1,0,18.049829,18.049829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,57.310001,50.610001,4,1,1,0,0,9,5,1,245.5,110095.03,0,0,4816.1133 -8768,10799,19694,19693,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.6669712,8.6550331,0,1,0,-9,7,0,-1,-32.909088,0,1,1,30,2,3,1,1,1,2019,1,2,11,2,40,40,15,1,0,1,0,24.578314,24.578314,0,0,0,0,0,0,0,0,0,0,0,1.0821247,0,0,0,57.310001,50.610001,52,54.509998,5,1,1,0,0,9,5,1,245.5,110095.03,0,0,4816.1133 -8769,10800,19695,-9,19696,19698,4,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.7677,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,1,547.20001,1917557,0,0,988.04224 -8769,10800,19696,19698,-9,-9,2,1,0,38,1,1,3,0,2,-9,2,1,0,0,4,7.982368,7.9433403,0,2,0,-9,20,0,-3,-122.20647,0,0,1,41,1,4,1,-9,-9,2019,1,1,20,8,6,0,15,1,1,1,0,50.733643,50.733643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.48,51.200001,44.529999,56.369999,3,2,3,0,1,8,2,1,547.20001,1917557,0,0,988.04224 -8769,10800,19697,-9,19696,19698,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.66656,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,2,1,547.20001,1917557,0,0,988.04224 -8769,10800,19698,19696,-9,-9,1,1,1,41,1,1,3,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,20,0,3,-134.16634,0,0,0,38,2,4,1,1,1,2019,1,2,19,8,0,36,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.529999,56.369999,44.48,51.200001,3,2,3,0,1,8,2,1,547.20001,1917557,0,0,988.04224 -8769,10800,19699,-9,19696,19698,3,1,0,15,2,1,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-988.49713,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,2,3,0,0,8,2,1,547.20001,1917557,0,0,988.04224 -8770,10801,19700,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,4,6.4667482,6.3683968,0,3,0,0,0,-9,0,-981.0033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,6,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9481955,0,0,0,57,51,-9,-9,7,1,1,0,0,5,2,1,625,296959.59,0,0,1386.0544 -8771,10802,19701,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,1,1,0,0,3,7.6212921,7.2913566,0,3,0,0,0,-9,0,-929.92792,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,0,-9,0,5.7396932,5.7396932,0,0,0,0,0,0,0,0,0,0,0,2.5910604,0,0,0,42.599998,50.450001,-9,-9,5,1,1,0,0,12,3,0,172,2760.0874,0,0,1315.0254 -8772,10803,19702,19703,-9,-9,2,1,0,62,1,0,0,0,2,-9,8,3,1,1,3,0,5.5373244,5.450891,1,0,-9,7,0,-15,-138.78363,0,0,0,77,2,4,3,-9,-9,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2401175,0,0,49,48,47.380001,47.02,5,1,1,0,0,7,3,1,324,932387.06,0,0,3256.5972 -8772,10803,19703,19702,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.7983322,7.9527555,1,0,-9,20,0,15,126.12456,0,0,0,62,2,3,3,3,3,2019,4,2,14,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.0488014,7.7033973,20.683626,1,47.380001,47.02,49,48,4,1,1,0,0,7,3,1,324,932387.06,0,0,3256.5972 -8773,10804,19704,19705,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.8427248,6.5951381,1,0,-9,27,0,9,-41.64785,0,0,0,56,2,4,1,2,2,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9157171,6.2362065,3,64.230003,39.150002,43.139999,61.330002,6,1,1,0,0,11,4,1,404,325312.13,0,0,3244.8391 -8773,10804,19705,19704,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.7708788,8.6429682,0,1,0,-9,26,0,0,-41.460255,0,0,0,65,2,4,3,2,2,2019,2,1,8,0,66,70,15,1,0,4,0,9.5951376,9.5951376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.139999,61.330002,64.230003,39.150002,6,1,1,0,0,11,4,1,404,325312.13,0,0,3244.8391 -8774,10805,19706,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,0,3,8.5411406,8.7288637,0,3,0,0,0,-9,0,-985.08966,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,44,38,15,1,0,-9,0,12.575065,12.575065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.17,59.720001,-9,-9,5,1,1,0,0,12,5,1,392,-156706.39,0,0,1581.8785 -8775,10806,19707,19708,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,0,3,8.2623205,8.0691175,0,1,0,-9,6,0,11,-71.962852,-9,0,0,54,2,4,1,-9,-9,2019,1,1,10,1,39,0,15,1,0,1,0,8.4865723,8.4865723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,61.119999,51.57,5,1,1,0,0,4,4,1,489.5,221446.84,0,0,2316.4878 -8775,10806,19708,19707,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,0,4,7.1886849,6.9638453,0,1,0,-9,12,0,-11,12.969011,0,0,0,65,3,3,1,-9,-9,2019,1,2,3,0,35,40,15,1,0,1,0,4.0436745,4.0436745,0,0,0,0,0,0,0,7,1,1,0,0,0,2.3825014,3,61.119999,51.57,52,48,7,1,1,0,0,4,4,1,489.5,221446.84,0,0,2316.4878 -8776,10807,19709,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-960.8772,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,37.73,-9,-9,4,1,1,0,0,1,2,1,549,81777.563,0,0,954.36945 -8777,10808,19710,19712,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,0,3,8.11625,8.0477428,0,2,0,-9,7,0,-1,68.998726,0,0,1,38,1,4,1,-9,-9,2019,1,1,12,2,24,18,15,1,0,1,0,17.017717,17.017717,0,0,0,0,0,0,0,0,0,0,0,7.6759424,0,0,0,48.060001,45.529999,48.279999,60.18,6,1,1,0,0,8,5,0,1348,1692967.1,0,0,8969.8652 -8777,10808,19711,-9,19710,19712,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.1543,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,8,5,0,1348,1692967.1,0,0,8969.8652 -8777,10808,19712,19710,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,0,4,9.7325659,9.8135824,0,2,0,-9,7,0,1,81.542274,0,0,0,37,1,3,1,1,1,2019,1,2,9,2,50,55,15,1,0,1,0,34.929794,34.929794,0,0,0,0,0,0,0,0,0,0,0,6.4307189,0,0,0,48.279999,60.18,48.060001,45.529999,6,2,3,0,0,8,5,0,1348,1692967.1,0,0,8969.8652 -8777,10808,19713,-9,19710,19712,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-900.40063,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,5,0,1348,1692967.1,0,0,8969.8652 -8778,10809,19714,-9,19716,19715,5,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1065.6299,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,13,4,1,807,678361.5,0,0,975.51227 -8778,10809,19715,19716,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,5,8.4280529,8.2182465,0,2,0,-9,10,0,0,64.298958,0,0,0,50,2,3,1,1,2,2019,1,2,10,0,55,60,15,1,0,1,0,8.2448053,8.2448053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,47,50,6,1,1,0,0,13,4,1,807,678361.5,0,0,975.51227 -8778,10809,19716,19715,-9,-9,2,1,0,50,1,0,1,0,2,-9,1,1,0,0,3,6.5068159,6.4609804,0,2,0,-9,10,0,0,19.058725,0,0,0,50,2,5,1,2,2,2019,1,1,12,2,55,45,15,1,0,1,0,1.2147105,1.2147105,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,57.060001,57.759998,5,1,1,0,0,13,4,1,807,678361.5,0,0,975.51227 -8778,10810,19717,-9,19716,19715,3,1,0,24,2,0,1,0,1,-9,2,1,0,0,3,7.7111783,7.6305866,0,3,0,0,0,-9,0,-991.85718,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,33,32,15,1,0,-9,1,8.482707,8.482707,0,0,0,0,0,0,0,0,1,1,0,4.8094029,0,0,0,56.349998,51.16,-9,-9,6,1,1,0,0,13,3,1,1187,38786.063,0,0,1765.308 -8778,10811,19718,-9,19716,19715,4,1,0,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-955.25964,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,-9,-9,6,1,1,0,0,13,1,1,105,-68282.039,0,0,0 -8779,10812,19719,19721,-9,-9,2,1,0,37,1,0,3,0,1,-9,2,1,0,0,4,7.2299814,7.867754,0,2,0,-9,13,0,0,6.9497571,0,0,1,37,3,4,1,2,2,2019,1,1,7,1,27,28,15,1,0,1,0,7.9995136,7.9995136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.130001,31.879999,45.119999,52.029999,3,1,1,0,0,6,3,0,571.20001,98886.086,0,0,3449.5872 -8779,10812,19720,-9,19719,19721,4,1,0,17,2,0,3,1,2,0,7,2,0,1,3,0,0,0,2,0,0,0,-9,0,-860.44354,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.700001,41,-9,-9,5,1,1,0,0,6,3,0,571.20001,98886.086,0,0,3449.5872 -8779,10812,19721,19719,-9,-9,1,1,1,37,1,0,3,0,3,-9,2,1,0,0,4,8.3170376,8.2016573,0,2,0,-9,13,0,0,-40.170776,0,0,0,37,1,4,1,2,2,2019,1,2,12,1,48,40,15,1,0,1,0,8.8529091,8.8529091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.119999,52.029999,57.130001,31.879999,6,1,1,0,0,6,3,0,571.20001,98886.086,0,0,3449.5872 -8779,10812,19722,-9,19719,19721,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1005.6388,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,6,3,0,571.20001,98886.086,0,0,3449.5872 -8779,10812,19723,-9,19719,19721,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.22174,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,3,0,571.20001,98886.086,0,0,3449.5872 -8780,10813,19724,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1040.567,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,5.1921015,0,0,0,1,1,0,0,0,0,0,49.169998,27.5,-9,-9,5,1,1,0,0,4,1,0,360,229108.28,0,0,282.14954 -8781,10814,19725,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,5,7.5189986,7.5813742,0,3,0,-9,0,-9,0,-901.43762,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,32,0,15,1,0,-9,0,5.842135,5.842135,0,0,0,0,0,0,0,7,0,0,0,0,0,13.426144,3,62.98,38.610001,-9,-9,5,2,3,0,0,8,3,0,728,-83472.688,0,0,1171.3636 -8782,10815,19726,19727,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,6.5013113,8.1683807,7.1646428,1,0,-9,42,0,0,107.27543,0,0,0,66,1,4,3,2,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.1728673,7.2066078,0,3,52,54.509998,51.240002,58.84,6,1,1,0,0,10,3,1,795.5,1267040.5,0,0,2333.1414 -8782,10815,19727,19726,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,6.9605927,6.8653088,1,0,-9,42,0,0,15.388033,0,0,0,66,2,3,3,-9,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5077329,7.3234916,0,0,51.240002,58.84,52,54.509998,6,1,1,0,0,10,3,1,795.5,1267040.5,0,0,2333.1414 -8782,10816,19728,-9,19726,19727,3,1,1,34,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1012.2947,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,22,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.79,57.599998,-9,-9,2,1,1,0,0,10,1,1,332,237726.55,0,0,856.37878 -8783,10817,19729,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1003.592,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,2.5867593,0,0,0,1,1,0,1.2105942,0,0,0,34.200001,26.639999,-9,-9,3,1,1,0,0,11,1,0,221,62950.086,0,0,1784.4369 -8784,10818,19730,19731,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,6.9886866,6.603425,1,0,-9,10,0,6,-32.11058,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8834915,0,0,60.700001,42.48,39.740002,39.790001,6,1,1,0,0,13,2,1,1012,624766.13,0,0,2133.6604 -8784,10818,19731,19730,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,10,0,-6,-8.2165184,0,0,0,74,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,39.790001,60.700001,42.48,6,1,1,0,0,13,2,1,1012,624766.13,0,0,2133.6604 -8784,10819,19732,-9,19731,19730,3,1,1,40,2,0,0,0,3,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-939.43152,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,54.119999,-9,-9,4,1,1,1,0,13,1,1,121,-3327.9702,0,0,1067.5024 -8785,10820,19733,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,3.7191808,4.1604996,3,0,0,0,-9,0,-1104.4161,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9639251,3.9480715,0,0,58.349998,44.639999,-9,-9,6,1,1,0,0,6,1,1,508,294777.38,0,0,909.04315 -8786,10821,19734,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,5,0,6.9990416,6.7674003,3,0,0,0,-9,0,-1142.5096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3580003,6.7629104,0,0,57.18,53.580002,-9,-9,7,1,1,0,0,11,2,0,3309,50984.121,0,0,1846.457 -8787,10822,19735,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,0,2,8.5935135,8.6684227,0,3,0,-9,0,-9,0,-985.57593,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,44,0,15,1,0,-9,0,19.96734,19.96734,0,0,0,0,0,0,0,0,0,0,0,1.1437757,0,0,0,45.119999,34.869999,-9,-9,3,1,1,0,0,9,5,1,709,440911.22,0,0,4566.3989 -8788,10823,19736,19737,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,7.6095247,8.4438133,7.3669758,1,0,-9,20,0,1,-18.547274,0,0,0,58,2,3,1,-9,-9,2019,1,1,9,0,45,45,15,1,0,1,0,6.0971141,6.0971141,0,0,0,0,0,0,0,0,0,0,0,7.798089,7.4672351,0,0,58.169998,42.52,62.869999,41.299999,6,1,1,0,0,4,4,1,772,815763.56,0,0,1731.4944 -8788,10823,19737,19736,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.2474747,7.199996,0,1,0,-9,20,0,-1,-42.815708,0,0,0,59,2,2,1,3,3,2019,1,2,6,0,16,16,15,1,0,1,0,8.9870987,8.9870987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.869999,41.299999,58.169998,42.52,1,1,1,0,0,4,4,1,772,815763.56,0,0,1731.4944 -8789,10824,19738,19739,-9,-9,2,1,0,47,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,29,0,0,12.277781,0,0,0,56,1,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0295973,0,0,0,50,54,43.139999,43.400002,6,2,3,0,0,6,3,0,715.66669,646176.19,0,0,4053.908 -8789,10824,19739,19738,-9,-9,1,1,1,56,1,0,1,0,1,-9,1,1,0,0,3,8.2984095,8.0402632,0,2,0,-9,29,0,9,55.68399,0,0,0,47,3,4,3,-9,-9,2019,2,2,27,12,40,0,15,1,1,3,0,8.6990366,8.6990366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.139999,43.400002,50,54,6,2,3,0,0,6,3,0,715.66669,646176.19,0,0,4053.908 -8789,10824,19740,-9,19738,19739,5,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.14099,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,6,3,0,715.66669,646176.19,0,0,4053.908 -8789,10825,19741,-9,19738,19739,3,1,1,22,2,0,1,1,2,0,7,2,0,0,3,6.5997376,6.7121868,0,3,0,0,0,-9,0,-947.86707,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,8,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.32,59.939999,-9,-9,2,2,3,0,0,6,2,0,224,100644.85,0,0,630.01404 -8789,10826,19742,-9,19738,19739,4,1,0,21,2,0,1,0,2,0,7,2,0,0,3,7.2159915,7.2196088,0,3,0,0,0,-9,0,-932.3501,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,8,1,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,6,2,3,0,0,6,3,0,224,31354.734,0,0,944.94946 -8790,10827,19743,-9,19746,19744,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-948.60291,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,392,1238326.3,0,0,3798.219 -8790,10827,19744,19746,-9,-9,2,1,1,32,1,1,2,0,1,-9,2,1,0,0,5,8.9695807,9.1756182,0,2,0,-9,4,0,1,29.446775,0,0,0,31,1,4,1,2,2,2019,1,1,8,0,45,50,15,1,0,1,0,22.209564,22.209564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,56.330002,51.02,6,1,1,0,0,9,5,1,392,1238326.3,0,0,3798.219 -8790,10827,19745,-9,19746,19744,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.56598,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,392,1238326.3,0,0,3798.219 -8790,10827,19746,19744,-9,-9,1,1,0,31,1,1,2,0,1,-9,5,1,0,0,4,8.0978413,8.3215666,0,2,0,-9,4,0,-1,25.633707,0,0,1,32,1,5,1,2,1,2019,1,2,6,0,30,44,15,1,0,1,0,14.631525,14.631525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.330002,51.02,57.060001,57.759998,7,1,1,0,0,9,5,1,392,1238326.3,0,0,3798.219 -8791,10828,19747,19748,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.3291664,8.350378,1,0,-9,45,0,3,28.007025,0,0,0,67,1,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6338606,8.1469812,0,0,57.16,56.150002,59.290001,49.68,6,1,1,0,0,8,4,1,258.5,1150929.1,0,0,4275.6162 -8791,10828,19748,19747,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.7826004,7.9978704,1,0,-9,45,0,-3,-48.889126,0,0,0,70,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1913128,0,0,59.290001,49.68,57.16,56.150002,6,1,1,0,0,8,4,1,258.5,1150929.1,0,0,4275.6162 -8792,10829,19749,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-996.63104,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.799999,32.650002,-9,-9,6,1,1,0,0,5,1,1,133,-93995.727,0,0,-60.004086 -8793,10830,19750,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,4,7.8511782,7.957819,0,3,0,-9,0,-9,0,-943.22528,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,38,0,15,1,0,-9,0,9.4621096,9.4621096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,4,0,975,14745.769,0,0,996.28998 -8794,10831,19751,19752,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.0658789,8.0257273,0,1,0,-9,19,0,-7,0,0,0,0,63,3,2,1,2,3,2019,1,1,6,0,38,37,15,1,0,1,0,10.015937,10.015937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.049999,40.560001,23.700001,39.439999,6,1,1,0,0,11,4,1,1417,683614.44,0,0,3151.1545 -8794,10831,19752,19751,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,2,8.1446562,7.9534903,0,1,0,-9,19,0,7,0,0,0,0,56,2,3,1,3,3,2019,1,2,21,10,37,37,15,1,1,1,0,12.533128,12.533128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.700001,39.439999,56.049999,40.560001,4,1,1,0,0,11,4,1,1417,683614.44,0,0,3151.1545 -8795,10832,19753,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-918.76001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.34,41.240002,-9,-9,6,1,1,0,0,11,1,0,181,35058.898,0,0,1609.876 -8796,10833,19754,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.7067375,7.6866693,0,3,0,0,0,-9,0,-1010.86,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,34,11,40,40,15,1,1,-9,0,5.587245,5.587245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.120001,50.029999,-9,-9,1,1,1,0,1,6,3,0,1273,32678.432,0,0,5.9794908 -8797,10834,19755,19756,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,-1,-23.597803,0,0,0,67,2,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3088601,0,12.469035,3,55.77,42.25,60.419998,54.810001,5,1,1,0,0,6,3,1,510,1145044.9,0,0,2608.9546 -8797,10834,19756,19755,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,0,7.95084,8.1968555,1,0,-9,10,0,1,31.491432,0,0,0,66,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4821014,7.7549806,0,0,60.419998,54.810001,55.77,42.25,2,1,1,0,0,6,3,1,510,1145044.9,0,0,2608.9546 -8797,10835,19757,-9,19755,19756,3,1,1,37,2,0,0,0,2,-9,1,1,0,0,4,8.3632689,8.5885153,0,3,0,0,0,-9,0,-1021.52,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,90,90,15,1,0,-9,1,6.9751444,6.9751444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,51.52,-9,-9,5,1,1,0,0,6,5,1,92,-78701.289,0,0,1566.3093 -8798,10836,19758,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,4.7694716,4.6231189,3,0,0,0,-9,0,-1068.5289,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,11,0,15,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7545195,4.6382761,0,0,33.07,36.419998,-9,-9,1,1,1,0,1,7,2,0,161,421231.03,0,0,963.94659 -8799,10837,19759,19760,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,8,0,10,14.65531,0,0,0,64,3,4,3,-9,-9,2019,4,1,19,6,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2066243,0,0,0,26.629999,42.209999,45.810001,58.990002,6,1,1,0,0,6,3,1,1465.5,386301.69,0,0,1946.9843 -8799,10837,19760,19759,-9,-9,1,1,0,64,1,0,0,0,3,-9,3,3,0,0,4,7.5161681,7.8909273,0,1,0,-9,8,0,-10,-60.563984,0,0,0,74,3,1,3,3,3,2019,4,2,11,0,34,2,15,3,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,1.9925693,0,61.847176,2,45.810001,58.990002,26.629999,42.209999,2,1,1,1,0,6,3,1,1465.5,386301.69,0,0,1946.9843 -8800,10838,19761,19762,-9,-9,2,1,1,22,1,0,0,0,3,-9,2,1,0,0,3,7.8139615,8.0961723,0,1,0,-9,1,-9,4,-44.216164,-9,1,0,18,2,3,3,-9,-9,2019,2,1,8,2,40,0,15,1,0,3,0,7.0156131,7.0156131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.27,42.400002,32.889999,40.060001,7,1,1,0,0,4,3,0,297,15551.767,0,0,1495.8942 -8800,10838,19762,19761,-9,-9,1,1,0,18,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,1,1,-9,-4,91.59433,0,1,1,22,3,3,1,-9,-9,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.889999,40.060001,63.27,42.400002,6,1,1,1,0,4,3,0,297,15551.767,0,0,1495.8942 -8801,10839,19763,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,2,8.2386265,8.0339041,0,3,0,0,0,-9,0,-1017.8859,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,31,32,15,1,1,-9,0,10.28398,10.28398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.379999,52.919998,-9,-9,1,4,2,0,1,2,4,0,873,86112.023,0,0,97.814812 -8802,10840,19764,19765,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,8.835269,8.780714,0,1,0,-9,9,0,3,18.735031,0,0,0,55,2,1,3,-9,-9,2019,2,1,9,0,0,80,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3888083,0,0,1,54,54,60.029999,10.7,6,1,1,0,0,12,4,1,1373,599698.75,0,0,3137.3818 -8802,10840,19765,19764,-9,-9,1,1,0,55,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,38,0,-3,-79.867615,0,0,0,58,2,4,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.029999,10.7,54,54,6,1,1,0,0,12,4,1,1373,599698.75,0,0,3137.3818 -8803,10841,19766,19767,-9,-9,1,1,1,54,1,0,0,0,1,0,7,2,0,0,3,0,0,0,1,0,-9,29,0,1,25.915974,-9,0,0,53,1,3,1,2,3,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.6895983,0,0,3,41.450001,58.099998,48.290001,47.889999,5,1,1,0,0,6,5,1,1794,897463.13,0,0,8232.4004 -8803,10841,19767,19766,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,9.8592281,9.7291136,0,1,0,-9,30,0,-1,67.179886,0,0,0,54,1,3,2,2,2,2019,2,1,12,0,49,52,15,1,0,2,0,37.100937,37.100937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.290001,47.889999,41.450001,58.099998,6,1,1,0,0,6,5,1,1794,897463.13,0,0,8232.4004 -8803,10842,19768,-9,19767,19766,3,1,1,22,2,0,0,1,3,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-970.31635,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.209999,51.939999,-9,-9,5,1,1,0,0,6,1,1,244,-22668.41,0,0,0 -8803,10843,19769,-9,19767,19766,4,1,1,20,2,0,0,1,2,0,7,2,0,0,3,6.4151421,6.7480526,6.0595708,3,0,0,0,-9,0,-921.31305,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4235492,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,6,2,1,232,-132668.17,0,0,555.49084 -8804,10844,19770,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1042.2847,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,33,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.09,36.810001,-9,-9,3,1,1,0,1,13,1,1,582,222918.19,0,0,355.46283 -8805,10845,19771,19772,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,4,0,8.0775948,8.1669016,1,0,-9,34,0,-16,-6.1686878,0,0,0,74,3,5,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9456632,8.4449663,0,0,51.73,46.369999,57.060001,57.759998,5,1,1,0,0,10,4,1,223,1382305.4,0,0,3197.1096 -8805,10845,19772,19771,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,5,0,7.2999692,7.7416039,1,0,-9,34,0,16,-6.1161385,0,0,0,58,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3899889,7.3852191,0,0,57.060001,57.759998,51.73,46.369999,6,1,1,0,0,10,4,1,223,1382305.4,0,0,3197.1096 -8806,10846,19773,-9,-9,-9,1,1,0,45,3,0,1,0,1,-9,2,1,0,0,2,8.5697603,8.5729122,0,4,0,0,0,-9,0,-939.66107,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,34,15,1,0,-9,0,15.256166,15.256166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.040001,41.009998,-9,-9,3,1,1,0,0,6,4,1,821.5,479315.41,0,0,1922.1282 -8806,10846,19774,-9,19773,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1009.8925,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,821.5,479315.41,0,0,1922.1282 -8807,10847,19775,19776,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,6.6034255,6.515101,1,0,-9,7,0,0,44.557053,0,0,0,76,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6684284,0,0,54.380001,46.77,57.330002,53.459999,6,3,4,0,0,2,3,1,725.5,874876.25,0,0,14508.094 -8807,10847,19776,19775,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.568078,7.6921086,1,0,-9,7,0,0,-63.969578,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.001564,7.6219945,0,0,57.330002,53.459999,54.380001,46.77,1,1,1,0,0,2,3,1,725.5,874876.25,0,0,14508.094 -8808,10848,19777,19778,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,5.4549599,5.5363703,1,0,-9,40,0,2,-9.5842781,0,0,0,69,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2647986,5.680995,.75755274,1,46.549999,41.889999,51,47,6,1,1,0,0,7,2,1,1931.5,523413.56,0,0,1370.9431 -8808,10848,19778,19777,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,40,0,-2,-28.311558,0,0,0,71,2,4,3,-9,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,46.549999,41.889999,5,1,1,0,0,7,2,1,1931.5,523413.56,0,0,1370.9431 -8809,10849,19779,19780,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,0,3,8.3897724,8.6964941,0,1,0,-9,4,0,9,-211.68977,0,0,0,33,1,5,1,-9,-9,2019,1,2,9,0,37,37,15,1,0,1,0,17.427567,17.427567,0,0,0,0,0,0,0,0,1,1,0,.12304755,0,0,0,54.369999,54.799999,41.740002,60.790001,5,1,1,0,0,13,4,1,1453,1664596.5,0,0,2090.5923 -8809,10849,19780,19779,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,5,7.4126549,7.4444165,0,1,0,-9,4,0,0,150.84119,0,0,1,42,1,3,1,-9,-9,2019,1,1,15,5,16,38,15,1,1,1,0,9.7340908,9.7340908,0,0,0,0,0,0,0,0,1,1,0,2.1182554,0,0,0,41.740002,60.790001,54.369999,54.799999,6,1,1,0,0,13,4,1,1453,1664596.5,0,0,2090.5923 -8810,10850,19781,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,2,1,0,0,3,7.5491285,8.1727028,7.1021028,3,0,0,0,-9,0,-1035.7439,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,19,20,15,1,1,-9,0,10.904941,10.904941,0,0,0,0,0,0,0,0,1,1,0,7.0101032,0,0,0,54.970001,47.630001,-9,-9,6,1,1,0,0,9,4,1,611,190388.98,0,0,2380.9834 -8810,10850,19782,-9,19781,-9,3,1,1,16,2,0,0,0,2,-9,2,2,0,0,5,5.9465289,5.8566465,0,3,0,0,0,-9,0,-910.28973,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,9,4,1,611,190388.98,0,0,2380.9834 -8810,10851,19783,-9,19781,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,3,7.021893,6.6892505,0,3,0,0,0,-9,0,-912.1535,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,25,0,15,1,0,-9,1,4.8111677,4.8111677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.560001,49.66,-9,-9,6,1,1,0,0,9,2,1,366,140344.47,0,0,1223.4602 -8811,10852,19784,19785,-9,-9,2,1,0,27,1,0,0,0,1,0,7,2,0,0,4,0,0,0,1,0,-9,6,0,0,42.507412,-9,1,1,27,1,4,1,-9,-9,2019,3,1,12,3,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1277466,0,0,0,38.150002,53.860001,57.16,56.150002,6,1,1,0,0,7,4,1,508,1725877.3,0,0,3450.1091 -8811,10852,19785,19784,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,4,8.7198448,8.459938,0,1,0,-9,6,0,0,48.527451,0,1,0,27,1,4,2,1,1,2019,2,2,7,0,37,40,15,1,0,2,0,17.710817,17.710817,0,0,0,0,0,0,0,0,1,1,0,2.4863367,0,0,0,57.16,56.150002,38.150002,53.860001,6,1,1,0,0,7,4,1,508,1725877.3,0,0,3450.1091 -8812,10853,19786,-9,19787,19788,1,1,0,47,2,0,0,0,2,-9,2,1,0,0,3,9.3433304,9.1789608,0,3,0,0,0,-9,0,-1008.4376,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,41,43,15,1,0,-9,1,24.21088,24.21088,0,0,0,0,0,0,0,0,1,1,0,7.1071796,0,0,0,54.380001,49.27,-9,-9,3,1,1,0,0,8,5,1,114,-31785.125,0,0,3808.8633 -8812,10854,19787,19788,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,2,0,-7,0,0,0,0,76,3,2,3,-9,-9,2019,4,3,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.759998,38.459999,44.970001,52.639999,5,1,1,0,0,8,1,1,718,-44943.891,0,0,1131.3998 -8812,10854,19788,19787,-9,-9,3,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,2,0,7,0,0,0,0,69,2,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.970001,52.639999,48.759998,38.459999,4,1,1,0,0,8,1,1,718,-44943.891,0,0,1131.3998 -8813,10855,19789,-9,-9,-9,1,1,1,52,2,0,0,0,3,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-848.93915,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,56,-9,-9,5,1,1,1,0,6,1,0,99,0,0,0,510.43948 -8814,10856,19790,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,4,7.6876321,8.105464,6.5910316,3,0,0,0,-9,0,-1010.1186,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,25,25,15,1,1,-9,0,12.845659,12.845659,0,0,0,0,0,0,0,0,1,1,0,5.4829893,6.7499437,0,0,46.790001,48.650002,-9,-9,6,1,1,0,0,2,4,1,695,55773.922,0,0,2890.6079 -8815,10857,19791,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1084.1042,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.08,35.66,-9,-9,4,1,1,0,0,12,1,0,532,195660.05,0,0,2274.0874 -8816,10858,19792,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,1,1,0,0,2,8.9015589,8.8404522,0,3,0,0,0,-9,0,-1084.582,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,60,60,15,1,0,-9,0,11.795739,11.795739,0,0,0,0,0,0,0,0,0,0,0,6.1002445,0,0,3,57.299999,42.950001,-9,-9,4,1,1,0,0,10,5,1,794,347722.63,0,0,3768.678 -8817,10859,19793,-9,19794,19795,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-982.66345,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,4,1,982,121062.66,0,0,2720.9841 -8817,10859,19794,19795,-9,-9,2,1,0,25,1,1,1,0,2,-9,5,1,0,0,3,0,0,0,2,0,-9,2,0,-4,119.86529,0,1,1,29,2,2,1,-9,-9,2019,1,1,12,0,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,53.23,47.509998,6,1,1,0,0,4,4,1,982,121062.66,0,0,2720.9841 -8817,10859,19795,19794,-9,-9,1,1,1,29,1,1,1,0,2,-9,5,1,0,0,2,8.7428846,8.4326162,0,2,0,-9,2,0,4,51.061535,0,1,0,25,2,3,1,2,2,2019,1,2,10,1,63,47,15,1,0,1,0,8.4314375,8.4314375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,47.509998,57.330002,53.459999,6,1,1,0,0,4,4,1,982,121062.66,0,0,2720.9841 -8818,10860,19796,19797,-9,-9,2,1,0,46,1,0,0,0,1,-9,1,1,0,0,3,9.4532251,9.5060148,0,1,0,-9,18,0,-21,-17.426195,0,0,0,67,2,3,1,2,2,2019,1,1,12,1,40,45,15,1,0,1,0,35.907413,35.907413,0,0,0,0,0,0,0,0,1,1,0,3.8670645,0,0,0,51.490002,53.310001,60.290001,52.110001,6,1,1,0,0,9,5,1,1778,353311.06,0,0,11837.619 -8818,10860,19797,19796,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,9.5781279,9.4655972,8.2830791,1,0,-9,18,0,21,-9.9203768,0,0,0,46,1,3,1,3,2,2019,1,2,6,0,24,35,15,1,0,1,0,49.844604,49.844604,0,0,0,0,0,0,0,0,1,1,0,8.9292011,8.7303152,0,0,60.290001,52.110001,51.490002,53.310001,6,1,1,0,0,9,5,1,1778,353311.06,0,0,11837.619 -8819,10861,19798,19801,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,7.8490362,7.7978444,0,2,0,-9,14,0,-3,48.261845,0,0,1,43,1,4,1,1,1,2019,1,1,9,0,30,30,15,1,0,1,0,8.9956665,8.9956665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.540001,53.32,51,56,6,3,4,0,0,8,4,0,789,199314.86,0,0,3718.5625 -8819,10861,19799,-9,19798,19801,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.51208,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,4,0,789,199314.86,0,0,3718.5625 -8819,10861,19800,-9,19798,19801,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.3475,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,4,0,789,199314.86,0,0,3718.5625 -8819,10861,19801,19798,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.7891827,8.72052,0,2,0,-9,14,0,3,.80681491,0,0,0,40,1,3,1,2,2,2019,1,2,9,1,47,44,15,1,0,1,0,14.159339,14.159339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49.540001,53.32,5,3,4,0,0,8,4,0,789,199314.86,0,0,3718.5625 -8820,10862,19802,19803,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,7.8292232,8.3296232,0,1,0,-9,7,0,-7,.75446415,0,0,1,51,2,1,3,3,2,2019,2,1,12,0,35,35,15,1,0,3,0,12.705099,12.705099,0,0,0,0,0,0,0,91,1,1,0,0,0,123.17044,1,49.040001,55.860001,43.029999,14.16,2,1,1,0,0,10,3,0,1843.5,340255.88,0,0,2246.4038 -8820,10862,19803,19802,-9,-9,1,1,1,51,1,0,0,0,2,-9,8,3,1,1,1,0,6.1858258,6.2364802,1,0,-9,7,0,7,17.877764,0,0,0,44,2,3,1,2,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3134203,0,0,43.029999,14.16,49.040001,55.860001,4,1,1,0,0,10,3,0,1843.5,340255.88,0,0,2246.4038 -8821,10863,19804,-9,19808,19805,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-941.10602,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,4,5,0,0,8,2,0,563.79999,9389.1377,0,0,1744.3689 -8821,10863,19805,19808,-9,-9,1,1,1,50,1,0,3,0,3,-9,1,1,0,0,4,6.5707541,6.6945882,0,2,0,-9,19,0,0,-18.277769,0,0,0,50,3,5,3,3,3,2019,2,2,9,1,8,40,15,1,0,3,0,10.292587,10.292587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,51.080002,55.110001,6,4,5,0,0,8,2,0,563.79999,9389.1377,0,0,1744.3689 -8821,10863,19806,-9,19808,19805,3,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.17511,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,-9,-9,6,4,5,0,0,8,2,0,563.79999,9389.1377,0,0,1744.3689 -8821,10863,19807,-9,19808,19805,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-889.58209,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,4,5,0,0,8,2,0,563.79999,9389.1377,0,0,1744.3689 -8821,10863,19808,19805,-9,-9,2,1,0,50,1,0,3,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,19,0,0,-32.08255,0,0,0,50,3,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.080002,55.110001,52,55,6,4,5,0,0,8,2,0,563.79999,9389.1377,0,0,1744.3689 -8822,10864,19809,19810,-9,-9,1,1,1,51,1,0,0,0,3,-9,1,1,0,0,2,7.1946735,6.8143206,0,1,0,-9,4,0,4,-90.863731,0,0,0,47,2,4,1,2,2,2019,1,2,22,10,40,40,15,1,1,1,0,2.8346026,2.8346026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.790001,33.240002,50,54,3,1,1,0,0,8,3,1,402,1239845,0,0,2194.6592 -8822,10864,19810,19809,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,7.468996,7.1406217,0,1,0,-9,4,0,-4,52.822823,0,0,0,51,3,2,1,-9,-9,2019,1,1,10,1,16,16,15,1,0,1,0,11.316573,11.316573,0,0,0,0,0,0,0,0,0,0,0,8.1045895,0,0,0,50,54,42.790001,33.240002,6,1,1,0,0,8,3,1,402,1239845,0,0,2194.6592 -8823,10865,19811,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-976.71362,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.369999,29.950001,-9,-9,3,1,1,0,0,10,1,0,495,0,0,0,826.96002 -8824,10866,19812,19813,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,3,8.3359833,8.4494591,0,1,0,-9,9,0,5,53.45887,0,0,0,56,3,3,1,-9,-9,2019,1,2,10,1,42,40,15,1,0,1,0,10.674024,10.674024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,59.459999,46.990002,7,2,3,0,0,8,4,0,549,800722.38,0,0,2080.74 -8824,10866,19813,19812,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,3,8.0842266,8.0193768,0,1,0,-9,39,0,-5,-58.661041,0,0,0,61,1,3,1,3,3,2019,1,1,10,1,40,40,15,1,0,1,0,8.0172749,8.0172749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.459999,46.990002,54.369999,54.799999,6,2,3,0,0,8,4,0,549,800722.38,0,0,2080.74 -8824,10867,19814,-9,19812,19813,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,7.7325845,7.4276671,0,3,0,0,0,-9,0,-939.78235,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,32,21,15,1,0,-9,1,7.3864913,7.3864913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,8,3,0,999,-67048.414,0,0,1168.0615 -8824,10868,19815,-9,19812,19813,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,5,8.1546078,7.9267635,0,3,0,0,0,-9,0,-945.0722,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,6,0,40,45,15,1,0,-9,1,8.1290779,8.1290779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,2,3,0,0,8,4,0,1060,45249.008,0,0,1522.311 -8825,10869,19816,-9,-9,-9,1,1,0,77,2,0,0,0,2,-9,4,3,0,0,2,0,7.2924833,7.4074922,3,0,0,0,-9,0,-1077.8979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.6602912,7.394568,0,0,46,36,-9,-9,6,2,3,0,0,8,3,1,864,692336.5,0,0,1837.132 -8826,10870,19817,19818,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-3,0,0,0,0,83,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,45,54,46,6,1,1,0,0,13,1,1,740.5,167879.63,0,0,1584.2351 -8826,10870,19818,19817,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,3,0,0,0,0,80,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,31.244991,13.522394,0,0,0,235.20099,0,1,1,0,0,0,0,0,54,46,51,45,6,1,1,0,0,13,1,1,740.5,167879.63,0,0,1584.2351 -8826,10871,19819,-9,19817,19818,3,1,0,48,2,0,0,0,2,-9,2,1,0,0,3,8.4050751,7.7610326,0,3,0,0,0,-9,0,-917.93494,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,38,36,15,1,1,-9,1,9.2722492,9.2722492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.209999,55.18,-9,-9,4,1,1,0,0,13,4,1,610,144326.05,0,0,1063.552 -8826,10872,19820,-9,19819,-9,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.4901581,8.3554678,0,3,0,0,0,-9,0,-1053.7793,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,36,37,15,1,0,-9,1,13.422733,13.422733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,4,1,3195,-62585.492,0,0,2440.0984 -8826,10873,19821,-9,19819,-9,5,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-948.63501,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,1,1,88,195016.81,0,0,0 -8827,10874,19822,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,6.0344238,5.9572077,3,0,0,0,-9,0,-1113.4387,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4915404,0,0,38.970001,63.16,-9,-9,4,1,1,0,1,9,2,1,447,999136.81,0,0,542.90381 -8828,10875,19823,-9,-9,-9,1,1,0,25,2,0,2,0,2,-9,2,1,0,0,4,6.8893809,7.4712992,5.8314967,4,0,-9,0,-9,0,-967.14569,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,20,0,15,1,0,-9,0,6.471693,6.471693,0,0,0,0,0,0,0,0,1,1,0,6.1981616,0,0,0,45.560001,60.259998,-9,-9,5,1,1,0,0,11,2,0,530.66669,-98028.125,0,0,1465.2666 -8828,10875,19824,-9,19823,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-945.38116,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,2,0,530.66669,-98028.125,0,0,1465.2666 -8828,10875,19825,-9,19823,-9,2,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-856.55353,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,2,0,530.66669,-98028.125,0,0,1465.2666 -8829,10876,19826,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,97,3,0,0,5,0,0,0,3,0,-9,0,-9,0,-1054.703,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1590152,0,0,0,47.830002,62.16,-9,-9,7,1,1,0,0,9,1,0,718,97507.641,0,0,-230.3369 -8830,10877,19827,-9,-9,-9,1,1,1,38,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1012.9399,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.57,41.439999,-9,-9,3,1,1,0,1,12,1,0,506,148386.83,0,0,-812.32745 -8831,10878,19828,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,0,4,7.4100938,7.2975535,0,4,0,0,0,-9,0,-1029.0348,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,35,0,15,1,0,-9,0,5.2146769,5.2146769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,7,2,0,650.5,-46989.297,0,0,1333.2823 -8831,10878,19829,-9,19828,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-969.68201,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,650.5,-46989.297,0,0,1333.2823 -8832,10879,19830,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,0,4,0,8.5904922,8.7240505,3,0,0,0,-9,0,-992.01563,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4881096,0,0,40.049999,56,-9,-9,1,1,1,0,0,8,4,1,1960,1301227.9,0,0,3090.6565 -8833,10880,19831,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,3,8.9694128,9.2585936,0,3,0,0,0,-9,0,-1049.6333,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,40,42,15,1,0,-9,0,22.930557,22.930557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,48,-9,-9,3,1,1,0,1,5,5,1,1932,1242447.8,0,0,2670.0698 -8834,10881,19832,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,7.1411567,7.4400868,3,0,0,0,-9,0,-1001.2263,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.3127017,15.610857,3,19.93,59.73,-9,-9,2,1,1,0,0,11,3,1,1814,513682.59,0,0,1388.6809 -8835,10882,19833,19834,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.1357045,6.915215,1,0,-9,3,0,5,30.502041,0,0,0,67,1,3,3,3,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9154806,0,0,36.66,59.380001,45.970001,51.900002,5,1,1,0,0,4,2,1,758.5,85835.758,0,0,1278.9182 -8835,10882,19834,19833,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,3,0,-5,-22.694832,0,0,0,72,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.970001,51.900002,36.66,59.380001,5,1,1,0,0,4,2,1,758.5,85835.758,0,0,1278.9182 -8836,10883,19835,-9,-9,-9,1,1,1,26,2,0,0,0,2,0,7,2,0,0,5,8.7128363,8.7331781,0,3,0,0,0,-9,0,-1013.3139,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,5,1,752,-82515.914,0,0,2524.7339 -8837,10884,19836,19837,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,0,5,8.1733665,8.5859346,0,1,0,-9,32,0,2,59.578114,0,0,0,49,2,3,1,3,3,2019,1,2,7,0,39,39,15,1,0,1,0,10.724412,10.724412,0,0,0,0,0,0,0,0,0,0,0,3.5943568,0,0,0,57.060001,57.759998,64.400002,42,7,1,1,0,0,6,5,1,679,106136.61,0,0,3918.0635 -8837,10884,19837,19836,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,9.01087,8.6627541,0,1,0,-9,7,0,-2,-17.847277,0,0,0,51,3,5,1,3,2,2019,1,1,6,0,40,40,15,1,0,1,0,22.26123,22.26123,0,0,0,0,0,0,0,0,0,0,0,4.9413905,0,0,0,64.400002,42,57.060001,57.759998,6,1,1,0,0,6,5,1,679,106136.61,0,0,3918.0635 -8837,10885,19838,-9,19836,19837,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,5,8.1292658,8.2940636,0,3,0,0,0,-9,0,-950.17981,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,37,15,1,0,-9,1,14.477073,14.477073,0,0,0,0,0,0,0,0,0,0,0,4.6381612,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,6,4,1,284,-349355.44,0,0,1607.9971 -8837,10886,19839,-9,19836,19837,4,1,0,22,2,0,0,0,1,1,9,3,0,0,5,6.9088049,7.1412864,0,3,0,0,0,-9,0,-911.00134,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,43,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8903103,0,0,0,57.060001,57.759998,-9,-9,2,1,1,0,0,6,2,1,94,197253.47,0,0,1838.2711 -8838,10887,19840,19841,-9,-9,1,1,1,89,1,0,0,0,2,-9,4,3,0,0,3,0,4.1923862,4.1810937,1,0,-9,59,0,-3,-92.33136,0,0,0,92,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.1997914,121.72679,1,57.630001,45.09,29.33,33.759998,6,1,1,0,0,8,2,1,649,581177.63,0,0,813.3595 -8838,10887,19841,19840,-9,-9,2,1,0,92,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,59,0,3,134.93672,0,0,0,89,2,3,3,3,2,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,8.1204872,72.811775,0,0,0,63.160263,0,1,1,0,0,0,0,0,29.33,33.759998,57.630001,45.09,3,1,1,0,0,8,2,1,649,581177.63,0,0,813.3595 -8839,10888,19842,19843,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,44,0,-1,-42.190163,0,0,0,67,1,4,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1834438,0,3.7869127,3,64.779999,32.700001,60.869999,42.099998,6,1,1,0,0,12,5,1,366.5,4640679,0,0,11022.941 -8839,10888,19843,19842,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,8.719902,10.291884,9.6135597,1,0,-9,44,0,1,26.142637,0,0,0,66,2,2,3,2,1,2019,4,2,8,0,2,2,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9984708,10.025823,0,0,60.869999,42.099998,64.779999,32.700001,2,1,1,0,0,12,5,1,366.5,4640679,0,0,11022.941 -8840,10889,19844,19845,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,7.9223604,8.0277548,0,1,0,-9,35,0,0,37.851124,0,0,0,55,1,4,1,2,2,2019,1,1,9,0,24,25,15,1,0,1,0,9.8524952,9.8524952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.349998,37.23,46.970001,6,1,1,0,0,8,4,0,481.5,308887.44,0,0,1756.1831 -8840,10889,19845,19844,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,8.3922281,8.3731375,0,1,0,-9,35,0,0,-159.05927,0,0,0,55,1,4,1,3,3,2019,1,2,18,6,50,50,15,1,1,1,0,8.3313608,8.3313608,0,0,0,0,0,0,0,0,0,0,0,3.1778903,0,0,0,37.23,46.970001,46.98,59.349998,5,1,1,0,0,8,4,0,481.5,308887.44,0,0,1756.1831 -8841,10890,19846,19847,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,1,2,0,5.506568,5.5528255,1,0,-9,9,0,-2,-8.1943741,0,0,0,85,3,2,3,3,3,2019,4,1,11,3,0,0,15,4,0,4,0,0,0,1,0,6.0116329,0,0,0,0,5.48,1,1,0,5.5585375,5.74509,20.426956,2,40.790001,41.169998,38.189999,39.759998,6,1,1,0,0,11,2,1,622,180358,0,0,2544.2793 -8841,10890,19847,19846,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,2,0,7.0711117,7.0516644,1,0,-9,9,0,2,-87.881218,0,0,0,83,3,2,3,3,2,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,5.8444223,7.0093069,28.902609,2,38.189999,39.759998,40.790001,41.169998,5,1,1,0,0,11,2,1,622,180358,0,0,2544.2793 -8842,10891,19848,19852,-9,-9,1,1,0,53,1,0,3,0,2,-9,2,1,0,0,3,8.7849827,8.6671553,0,2,0,-9,27,0,-3,-100.91166,0,0,0,56,2,4,1,3,2,2019,1,2,12,0,45,42,15,1,0,1,0,13.269197,13.269197,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.580002,53.709999,49.349998,59.639999,3,1,1,0,0,9,3,1,347.39999,567124.75,0,0,3997.7808 -8842,10891,19849,-9,19848,19852,5,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.8324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,347.39999,567124.75,0,0,3997.7808 -8842,10891,19850,-9,19848,19852,4,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-995.57965,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.880001,48.990002,-9,-9,6,1,1,0,0,9,3,1,347.39999,567124.75,0,0,3997.7808 -8842,10891,19851,-9,19848,19852,6,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.5789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,347.39999,567124.75,0,0,3997.7808 -8842,10891,19852,19848,-9,-9,2,1,1,56,1,0,3,0,2,-9,1,1,0,0,4,7.5675602,8.4498215,7.2215605,2,0,-9,27,0,3,48.984428,0,0,0,53,2,3,1,3,2,2019,1,1,11,0,35,35,15,1,0,1,0,5.114707,5.114707,0,0,0,0,0,0,0,0,1,1,0,0,7.8387737,0,0,49.349998,59.639999,47.580002,53.709999,5,1,1,0,0,9,3,1,347.39999,567124.75,0,0,3997.7808 -8842,10892,19853,-9,19848,19852,3,1,1,19,3,0,3,0,2,-9,2,1,0,0,4,8.0926762,7.8556843,0,3,0,0,0,-9,0,-1032.7561,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,41,0,15,1,0,-9,1,10.912428,10.912428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,1013,-30632.975,0,0,1577.9454 -8843,10893,19854,-9,19857,19856,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-890.94476,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,12,2,1,300.5,136147.84,0,0,83.622925 -8843,10893,19855,-9,19857,19856,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1082.2335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,12,2,1,300.5,136147.84,0,0,83.622925 -8843,10893,19856,19857,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,17,0,7,19.78388,0,0,0,38,2,5,1,-9,-9,2019,1,1,8,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,56.369999,52.639999,2,1,1,0,0,12,2,1,300.5,136147.84,0,0,83.622925 -8843,10893,19857,19856,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,5,7.2833738,7.3903146,0,2,0,-9,17,0,-7,93.789818,0,0,1,45,2,4,1,-9,-9,2019,1,2,11,0,20,20,15,1,0,1,0,8.6770096,8.6770096,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.369999,52.639999,60.119999,54.799999,2,1,1,0,0,12,2,1,300.5,136147.84,0,0,83.622925 -8844,10894,19858,19859,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.8909469,7.3027949,1,0,-9,16,0,4,64.822021,0,0,0,62,1,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6199012,0,0,55.189999,54.259998,54.200001,57.490002,6,1,1,0,0,5,4,1,554.5,2411489,0,0,1757.5651 -8844,10894,19859,19858,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,8.0310392,8.2106056,1,0,-9,20,0,-4,148.4249,0,0,0,66,1,4,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7750235,8.0197296,0,0,54.200001,57.490002,55.189999,54.259998,5,1,1,0,0,5,4,1,554.5,2411489,0,0,1757.5651 -8845,10895,19860,-9,19862,19863,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1037.963,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,1,1,0,0,12,2,1,878.25,-48518.32,0,0,2630.9106 -8845,10895,19861,-9,19862,19863,3,1,1,16,2,0,2,0,2,-9,97,2,0,0,5,0,0,0,2,0,0,0,-9,0,-933.86237,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,2,1,878.25,-48518.32,0,0,2630.9106 -8845,10895,19862,19863,-9,-9,1,1,0,41,1,0,2,0,2,-9,1,1,0,0,3,6.1342931,6.0811911,0,2,0,-9,19,0,-4,50.870232,0,0,1,45,2,5,1,3,1,2019,1,2,0,0,18,0,15,1,0,1,0,2.7517569,2.7517569,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.686455,3,59.700001,53.75,57.060001,57.759998,7,1,1,0,0,12,2,1,878.25,-48518.32,0,0,2630.9106 -8845,10895,19863,19862,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,5,7.9557447,8.0960636,0,2,0,-9,6,0,4,-30.343647,0,0,0,41,2,3,1,2,2,2019,1,1,7,0,36,36,15,1,0,1,0,10.492668,10.492668,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,59.700001,53.75,4,1,1,0,0,12,2,1,878.25,-48518.32,0,0,2630.9106 -8846,10896,19864,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,5,8.6426525,8.558732,0,3,0,-9,0,1,0,-1076.5117,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,37,15,1,0,-9,0,15.974066,15.974066,0,0,0,0,0,0,0,2,1,1,0,1.693445,0,0,3,57.060001,57.759998,-9,-9,6,1,1,0,0,12,5,1,296,139563.25,0,0,867.57184 -8847,10897,19865,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1002.9041,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.259998,38.439999,-9,-9,4,1,1,0,0,10,1,0,271,66085.766,0,0,149.72311 -8848,10898,19866,-9,-9,-9,1,1,1,40,3,0,0,0,1,-9,1,1,0,0,5,8.0158615,8.249258,0,3,0,0,0,-9,0,-1078.3655,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,9,40,38,15,1,1,-9,0,11.36774,11.36774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.529999,64.730003,-9,-9,3,1,1,0,0,11,4,1,401,252481.89,0,0,2097.7786 -8849,10899,19867,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,4,8.4147701,8.4577227,0,3,0,0,0,-9,0,-971.79279,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,37,38,15,1,0,-9,0,12.403163,12.403163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,5,3,4,0,0,8,4,1,701,34053.445,0,0,1119.4271 -8850,10900,19868,19869,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,7.9632702,8.2806892,1,0,-9,8,0,3,-2.8996713,0,0,0,63,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5533352,7.8958621,0,0,55.080002,48.98,44.240002,35.509998,6,1,1,0,0,4,4,1,691.5,1960942.5,0,0,2701.6716 -8850,10900,19869,19868,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,2,0,6.5137544,6.5555544,1,0,-9,8,0,-3,63.095757,0,0,0,66,3,3,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9335938,0,0,44.240002,35.509998,55.080002,48.98,6,1,1,0,0,4,4,1,691.5,1960942.5,0,0,2701.6716 -8851,10901,19870,19871,-9,-9,2,1,0,59,1,0,0,0,2,-9,10,3,0,0,3,0,0,0,1,0,-9,4,0,-6,0,0,0,0,65,3,4,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.470001,47.169998,41.57,53.759998,6,1,1,0,0,13,1,1,702.5,139555.13,0,0,1005.0367 -8851,10901,19871,19870,-9,-9,1,1,1,65,1,0,0,0,3,-9,1,1,0,0,4,0,0,0,1,0,-9,4,0,6,0,0,0,0,59,2,3,3,3,3,2019,2,2,8,0,60,70,15,1,0,3,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.57,53.759998,47.470001,47.169998,4,1,1,0,1,13,1,1,702.5,139555.13,0,0,1005.0367 -8851,10902,19872,-9,19870,19871,3,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,7.9778252,7.8251381,0,3,0,0,0,-9,0,-893.43451,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,7,35,15,1,0,-9,1,42.963154,42.963154,0,0,0,0,0,0,0,0,1,0,1,3.4804559,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,13,4,1,984,-126157.77,0,0,1304.3141 -8851,10903,19873,-9,19870,19871,4,1,1,29,2,0,0,0,2,-9,1,1,0,0,4,8.7415419,8.7045221,0,3,0,0,0,-9,0,-953.66779,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,60,50,15,1,0,-9,1,12.169016,12.169016,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.869999,58.549999,-9,-9,4,1,1,0,0,13,5,1,640,-66395.367,0,0,2643.4431 -8851,10904,19874,-9,19870,19871,5,1,1,26,2,0,0,0,3,-9,2,1,0,1,3,6.8563066,6.9232688,0,3,0,0,0,-9,0,-1040.3365,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,16,16,15,1,0,-9,1,7.1211305,7.1211305,0,0,0,0,0,0,0,0,1,0,1,7.1866474,0,0,0,54.369999,54.799999,-9,-9,3,1,1,0,0,13,2,1,496,0,0,0,953.97498 -8852,10905,19875,19877,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,0,2,7.5959387,7.3393512,0,2,0,-9,3,0,-7,30.552555,0,1,1,34,2,4,1,-9,-9,2019,1,2,14,3,23,28,15,1,0,1,0,7.9114943,7.9114943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.68,53.73,42.310001,42.43,6,1,1,0,0,10,3,1,547,-9685.374,0,0,2162.5022 -8852,10905,19876,-9,19875,19877,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.6112,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,1,547,-9685.374,0,0,2162.5022 -8852,10905,19877,19875,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,0,4,7.796597,7.7591448,0,2,0,-9,3,0,7,76.976463,0,0,0,27,2,2,1,-9,-9,2019,1,1,12,0,38,38,15,1,0,1,0,10.97215,10.97215,0,0,0,0,0,0,0,2,1,1,0,0,0,7.9817972,3,42.310001,42.43,48.68,53.73,5,1,1,0,1,10,3,1,547,-9685.374,0,0,2162.5022 -8853,10906,19878,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,0,4,7.0942359,6.7294192,0,3,0,0,0,-9,0,-1090.5713,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,23,20,15,1,0,-9,0,6.2956657,6.2956657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,4,1,1,0,0,2,2,1,626,411800.28,0,0,46.548523 -8853,10907,19879,-9,19878,-9,2,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,7.922338,7.8323541,0,3,0,0,0,-9,0,-871.35626,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,35,38,15,1,0,-9,1,10.226549,10.226549,0,0,0,0,0,0,0,0,0,0,0,3.1013784,0,0,0,49,58,-9,-9,5,1,1,0,0,2,3,1,641,-62438.645,0,0,879.25928 -8854,10908,19880,-9,19881,19883,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.03241,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,607,98944.609,0,0,4009.9351 -8854,10908,19881,19883,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,0,3,8.4443159,8.3527584,0,2,0,-9,10,0,0,112.60233,0,0,1,37,1,4,1,2,2,2019,1,1,17,5,24,24,15,1,1,1,0,20.432905,20.432905,0,0,0,0,0,0,0,0,1,1,0,7.1904387,0,0,0,41.23,59.349998,62.490002,55.09,6,1,1,0,0,5,5,1,607,98944.609,0,0,4009.9351 -8854,10908,19882,-9,19881,19883,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.0262,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,607,98944.609,0,0,4009.9351 -8854,10908,19883,19881,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,8.8159246,8.4897089,0,2,0,-9,10,0,0,-36.407772,0,0,0,37,1,3,1,1,1,2019,1,2,8,0,52,55,15,1,0,1,0,12.222016,12.222016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,41.23,59.349998,5,1,1,0,0,5,5,1,607,98944.609,0,0,4009.9351 -8855,10909,19884,-9,19885,19887,3,1,1,17,2,0,1,0,2,1,2,3,0,0,5,6.6078854,6.2643676,0,2,0,0,0,-9,0,-1103.3129,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,10,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,10,5,1,639.25,1007745.1,0,0,6679.5269 -8855,10909,19885,19887,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,5,7.7893682,7.8813009,0,2,0,-9,22,0,-7,131.76842,0,0,1,51,1,3,1,2,2,2019,1,1,7,0,20,15,15,1,0,1,0,10.418709,10.418709,0,0,0,0,0,0,0,2,0,0,0,0,0,8.0631561,3,57.060001,57.759998,42.610001,49.310001,6,1,1,0,0,10,5,1,639.25,1007745.1,0,0,6679.5269 -8855,10909,19886,-9,19885,19887,5,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.764,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,10,5,1,639.25,1007745.1,0,0,6679.5269 -8855,10909,19887,19885,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,9.5613117,9.7372065,0,2,0,-9,23,0,7,-109.27666,0,0,0,44,2,5,1,2,2,2019,1,2,11,0,50,37,15,1,0,1,0,41.724388,41.724388,0,0,0,0,0,0,0,2,0,0,0,1.8609626,0,2.4071434,3,42.610001,49.310001,57.060001,57.759998,5,1,1,0,0,10,5,1,639.25,1007745.1,0,0,6679.5269 -8855,10910,19888,-9,19885,19887,4,1,0,19,2,0,1,0,2,1,2,1,0,0,5,7.8386235,8.0364876,0,3,0,0,0,-9,0,-1033.1451,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,57,0,15,1,0,-9,1,5.2193255,5.2193255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,-9,-9,6,1,1,0,0,10,3,1,1652,-43067.41,0,0,2899.8291 -8856,10911,19889,-9,-9,-9,2,1,0,48,3,0,0,0,1,-9,2,1,0,0,4,8.1968355,7.9414277,0,3,0,0,0,-9,0,-1071.9238,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,37,15,1,0,-9,0,10.010534,10.010534,0,0,0,0,0,0,0,0,0,0,0,2.1798081,0,0,0,44.209999,60.790001,-9,-9,6,1,1,0,0,10,4,1,755,430859.56,0,0,1868.2999 -8857,10912,19890,19891,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,0,4,8.4691219,8.3048363,0,1,0,-9,6,0,-11,52.937431,0,0,1,42,1,4,1,2,2,2019,1,2,21,10,50,45,15,1,1,1,0,10.945478,10.945478,0,0,0,0,0,0,0,0,0,0,0,7.0848475,0,0,0,36.509998,61.560001,57.16,56.150002,6,1,1,0,0,9,5,1,630.5,1054420.8,0,0,5807.5376 -8857,10912,19891,19890,-9,-9,2,1,1,42,1,0,0,0,1,-9,2,1,0,0,4,9.2447023,9.1711559,0,1,0,-9,6,0,11,9.1827307,0,0,0,31,2,4,1,-9,-9,2019,1,1,6,0,41,43,15,1,0,1,0,23.398514,23.398514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,36.509998,61.560001,6,1,1,0,0,9,5,1,630.5,1054420.8,0,0,5807.5376 -8858,10913,19892,-9,19893,-9,6,1,0,17,2,0,1,0,2,1,2,3,0,0,3,6.8868599,6.8172393,0,4,0,0,0,-9,0,-939.00311,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,15,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.970001,50.009998,-9,-9,4,4,2,0,0,8,3,1,1057,477033.63,0,0,2757.3972 -8858,10913,19893,-9,-9,-9,1,1,0,52,3,0,1,0,1,-9,2,1,0,0,2,7.6287942,8.1101255,0,4,0,-9,0,1,0,-962.24194,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,37,55,15,1,0,-9,0,7.0752444,7.0752444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.52,44.759998,-9,-9,2,3,4,0,1,8,3,1,1057,477033.63,0,0,2757.3972 -8858,10914,19894,-9,19895,-9,8,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1058.0701,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,8,4,1,778.5,-14353.656,0,0,635.99915 -8858,10914,19895,-9,19893,-9,2,1,0,29,2,0,1,0,2,-9,2,1,0,0,4,8.0675583,7.8859086,0,3,0,0,0,-9,0,-985.58759,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,43,0,15,1,0,-9,1,9.3662786,9.3662786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,8,4,1,778.5,-14353.656,0,0,635.99915 -8858,10915,19896,-9,19893,-9,3,1,0,26,2,0,1,0,2,-9,2,1,0,0,3,7.6962199,7.9972792,0,3,0,0,0,-9,0,-1044.6368,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,40,40,15,1,0,-9,1,7.7617192,7.7617192,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,3,4,0,0,8,3,1,1007,-56936.957,0,0,1207.0363 -8858,10916,19897,-9,19893,-9,4,1,0,22,2,0,1,1,2,-9,7,2,0,0,3,7.1551533,7.2530098,0,3,0,0,0,-9,0,-1108.6974,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,7,3,4,0,0,8,2,1,290,-70000.617,0,0,351.58508 -8858,10917,19898,-9,-9,-9,9,1,0,27,2,0,1,0,1,-9,2,1,0,0,3,8.2910147,8.1672211,0,4,0,0,0,-9,0,-1074.7406,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,39,39,15,1,0,-9,0,12.956904,12.956904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.759998,55.68,-9,-9,5,3,4,0,0,8,3,1,290,-157145.5,0,0,1414.1086 -8859,10918,19899,19900,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,8.0611258,7.8657241,1,0,-9,10,0,-1,82.453247,0,0,0,69,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3798604,7.3886614,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,11,4,1,1433,1611327.8,0,0,3660.3184 -8859,10918,19900,19899,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.6166215,7.9066482,1,0,-9,10,0,1,74.318146,0,0,0,68,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7553506,7.2938342,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,11,4,1,1433,1611327.8,0,0,3660.3184 -8860,10919,19901,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,4,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1006.6379,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,66.199997,41.049999,-9,-9,1,1,1,0,0,8,1,0,757,410190.16,0,0,1120.6478 -8861,10920,19902,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,3,7.4421492,7.4886413,3.0939069,3,0,0,0,-9,0,-895.1734,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,30,30,15,1,0,-9,0,6.7073159,6.7073159,0,0,0,0,0,0,0,0,1,1,0,3.2286777,3.5878978,0,0,60.299999,46.580002,-9,-9,6,1,1,0,0,9,3,1,387,1036909.9,0,0,1819.6431 -8862,10921,19903,19904,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,36,0,2,47.388676,0,0,0,63,1,4,1,3,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1216695,0,0,3,38.16,47.360001,51.830002,57.200001,6,2,3,0,0,9,5,1,1460.5,2552019.3,0,0,13442.123 -8862,10921,19904,19903,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,4,7.9488063,9.0188398,8.6966839,1,0,-9,37,0,-2,56.036163,0,0,0,65,1,3,3,2,2,2019,2,2,8,0,2,0,15,1,0,4,0,141.55228,141.55228,0,0,0,0,0,0,0,2,1,1,0,9.9237041,8.4256897,8.4387608,3,51.830002,57.200001,38.16,47.360001,6,1,1,0,0,9,5,1,1460.5,2552019.3,0,0,13442.123 -8863,10922,19905,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1135.302,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.599998,14.31,-9,-9,5,1,1,0,0,13,1,0,418,0,0,0,1141.557 -8863,10923,19906,-9,19905,-9,2,1,0,23,2,0,0,1,1,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1029.7637,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.060001,57.759998,-9,-9,6,1,1,0,0,13,1,0,2375,-69200.18,0,0,0 -8863,10924,19907,-9,19905,-9,3,1,0,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-842.25909,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,0,161,32221.771,0,0,0 -8864,10925,19908,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,3,0,7.0023127,7.1908226,3,0,0,0,-9,0,-971.35175,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0216131,0,0,47.580002,42.98,-9,-9,6,1,1,0,0,2,2,1,1259,421869.19,0,0,471.10535 -8865,10926,19909,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1072.3955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.577252,22.973045,25.182806,0,0,1,1,0,0,0,0,0,33.560001,17.190001,-9,-9,4,1,1,0,0,4,1,0,697,-132405.16,0,0,1846.4197 -8866,10927,19910,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,2,8.6511307,8.6876307,0,3,0,-9,0,-9,0,-1007.9551,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,52,50,15,1,0,-9,0,15.084182,15.084182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.119999,34.869999,-9,-9,4,1,1,0,0,7,5,1,579,-44516.309,0,0,1984.0853 -8866,10928,19911,-9,19910,-9,3,1,0,35,2,0,0,0,1,-9,2,1,0,0,4,9.1734962,9.2646513,0,3,0,0,0,-9,0,-1080.0676,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,44,45,15,1,0,-9,1,16.868542,16.868542,0,0,0,0,0,0,0,0,0,0,0,4.5349784,0,0,0,55.189999,54.259998,-9,-9,6,4,2,0,0,7,5,1,298,245870.48,0,0,3354.3093 -8867,10929,19912,19913,-9,-9,1,1,0,50,1,0,0,0,1,-9,8,3,1,1,1,0,5.4772367,5.6111484,1,0,-9,26,0,0,15.265532,0,0,0,50,1,5,1,3,3,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4306126,5.1463938,0,0,29.07,30.07,46.529999,61.330002,3,1,1,0,0,9,5,1,543,540511.63,0,0,5244.3691 -8867,10929,19913,19912,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,0,5,9.4791155,9.4942846,0,1,0,-9,26,0,0,-26.812002,0,0,0,50,1,1,3,2,3,2019,2,1,12,4,43,45,15,1,1,3,0,37.322453,37.322453,0,0,0,0,0,0,0,2,1,1,0,2.4868143,0,12.16435,1,46.529999,61.330002,29.07,30.07,6,1,1,0,0,9,5,1,543,540511.63,0,0,5244.3691 -8868,10930,19914,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,0,6.6120358,6.6395397,3,0,0,0,-9,0,-990.81769,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6532032,6.6073236,0,0,62.599998,34.560001,-9,-9,7,1,1,0,0,10,2,1,308,772212.63,0,0,214.20161 -8869,10931,19915,-9,19916,19917,5,1,1,17,2,0,0,0,2,1,2,3,0,0,4,7.4899082,7.5462551,0,1,0,0,0,-9,0,-1015.2739,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,30,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,7,4,1,1145.3334,1189099.8,0,0,3385.8115 -8869,10931,19916,19917,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,5,8.0913324,8.1994753,0,1,0,-9,27,0,-6,-83.315315,0,0,0,56,2,3,1,-9,-9,2019,1,2,21,9,26,26,15,1,1,1,0,14.858398,14.858398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.32,63.02,59.049999,26.799999,2,1,1,0,0,7,4,1,1145.3334,1189099.8,0,0,3385.8115 -8869,10931,19917,19916,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,3,7.4429493,7.4306016,0,1,0,-9,27,0,6,8.5647106,0,0,0,50,2,5,1,-9,-9,2019,1,1,12,0,37,40,15,1,0,1,0,3.8836615,3.8836615,0,0,0,0,0,0,0,7,1,1,0,0,0,4.9466782,3,59.049999,26.799999,40.32,63.02,6,1,1,0,0,7,4,1,1145.3334,1189099.8,0,0,3385.8115 -8869,10932,19918,-9,19916,19917,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,2,8.0338697,8.0711288,0,3,0,0,0,-9,0,-1015.7128,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,40,15,1,0,-9,1,12.202252,12.202252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.830002,49.52,-9,-9,1,1,1,0,0,7,4,1,343,-101849.13,0,0,1922.0452 -8869,10933,19919,-9,19916,19917,4,1,0,21,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1087.9595,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,7,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,7,1,1,190,143635.45,0,0,0 -8870,10934,19920,19921,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,2,8.8319349,8.6542854,0,1,0,-9,2,0,-1,-14.263935,0,1,0,30,1,4,1,3,2,2019,1,2,9,0,45,40,15,1,0,1,0,16.607351,16.607351,0,0,0,0,0,0,0,2,1,1,0,6.4631639,0,13.497421,3,58.150002,31.809999,52.34,43.599998,3,2,3,0,0,6,5,1,1142.5,13957.266,0,0,4665.978 -8870,10934,19921,19920,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.4864111,8.1906843,0,1,0,-9,2,0,1,-44.191547,-9,0,1,29,1,2,1,2,3,2019,1,1,10,0,38,0,15,1,0,1,0,13.030707,13.030707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,43.599998,58.150002,31.809999,6,2,3,0,0,6,5,1,1142.5,13957.266,0,0,4665.978 -8871,10935,19922,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-985.81488,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,20.85,-9,-9,3,1,1,0,1,13,1,0,934,114714.11,0,0,-242.66721 -8872,10936,19923,19924,-9,-9,2,1,1,48,1,0,0,0,1,-9,1,1,0,0,4,8.3996172,8.4683733,0,1,0,-9,6,0,1,66.515945,0,0,0,47,2,5,1,-9,-9,2019,1,1,9,0,16,24,15,1,0,1,0,35.634861,35.634861,0,0,0,0,0,0,0,0,0,0,0,2.1138194,0,0,0,48.529999,58.91,51.139999,60.450001,5,1,1,0,0,4,5,1,278,2259994.8,0,0,7253.7871 -8872,10936,19924,19923,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,5,9.2388849,9.3622799,0,1,0,-9,23,0,-1,-48.513813,0,0,0,48,1,4,1,2,-9,2019,1,2,5,0,8,10,15,1,0,1,0,154.13406,154.13406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,48.529999,58.91,5,1,1,0,0,4,5,1,278,2259994.8,0,0,7253.7871 -8873,10937,19925,19927,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,0,3,7.9201131,8.0768986,0,2,0,-9,7,0,-4,12.864182,0,0,1,45,2,4,1,3,3,2019,1,1,11,0,37,39,15,1,0,1,0,7.8627162,7.8627162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.700001,62.919998,53.57,46.799999,5,1,1,0,0,2,4,0,892,153216.05,0,0,5117.7676 -8873,10937,19926,-9,19925,19927,3,1,0,17,2,0,3,1,2,0,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1125.9939,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,31.059999,-9,-9,6,1,1,0,0,2,4,0,892,153216.05,0,0,5117.7676 -8873,10937,19927,19925,-9,-9,1,1,1,45,1,0,3,0,2,-9,2,1,0,0,4,8.6881971,9.1096344,0,2,0,-9,7,0,4,2.6613584,0,0,0,41,2,3,1,2,3,2019,1,2,8,0,35,0,15,1,0,1,0,29.802828,29.802828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.57,46.799999,30.700001,62.919998,3,1,1,0,0,2,4,0,892,153216.05,0,0,5117.7676 -8873,10937,19928,-9,19925,19927,5,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.36969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,0,892,153216.05,0,0,5117.7676 -8873,10937,19929,-9,19925,19927,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.9786,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,0,892,153216.05,0,0,5117.7676 -8874,10938,19930,19931,-9,-9,2,1,1,61,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,15,0,-10,0,0,0,0,71,3,5,3,-9,-9,2019,4,1,14,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,14.1,53.32,53.950001,4,1,1,0,0,2,1,0,898,56716.82,0,0,2311.6309 -8874,10938,19931,19930,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,15,0,10,0,0,0,0,61,3,1,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.35293,1,53.32,53.950001,54.959999,14.1,6,1,1,0,0,2,1,0,898,56716.82,0,0,2311.6309 -8875,10939,19932,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,2,1,0,0,3,7.4735308,7.2970634,0,3,0,0,0,-9,0,-1019.7346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,28,23,15,1,0,-9,0,7.0600104,7.0600104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.290001,49.060001,-9,-9,6,1,1,0,0,4,3,1,169,4508.9092,0,0,1236.1257 -8876,10940,19933,19934,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.1566477,6.8954954,1,0,-9,50,0,-2,-106.06318,0,0,0,69,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.43449,7.0742669,0,3,58.150002,52.91,65.209999,44.279999,6,1,1,0,0,11,3,1,445,984774.94,0,0,3464.603 -8876,10940,19934,19933,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.6617599,7.7546492,1,0,-9,50,0,2,-10.275744,0,0,0,67,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.374702,7.4876223,6.3187509,3,65.209999,44.279999,58.150002,52.91,6,1,1,0,0,11,3,1,445,984774.94,0,0,3464.603 -8877,10941,19935,-9,-9,-9,1,1,0,40,3,0,3,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1033.5957,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.68544,3,45.740002,25.57,-9,-9,5,2,3,0,0,4,1,1,1030.5,35665.996,0,0,625.76733 -8877,10941,19936,-9,19935,-9,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-927.72748,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,1,1,1030.5,35665.996,0,0,625.76733 -8878,10942,19937,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,0,3,0,4.6148348,4.4869275,3,0,0,0,-9,0,-1022.0417,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4205403,0,0,47.209999,55.299999,-9,-9,6,1,1,0,0,11,2,1,1419,607720.13,0,0,86.024765 -8879,10943,19938,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,0,3,8.7746239,8.7185354,7.5548244,3,0,0,0,-9,0,-1090.1372,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,49,22,15,1,0,-9,0,10.886866,10.886866,0,0,0,0,0,0,0,0,1,1,0,0,7.9532242,0,0,50,47,-9,-9,5,3,4,0,0,6,5,1,5123,194942.3,0,0,5387.7876 -8880,10944,19939,19940,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,52,0,-2,-119.92274,0,0,0,71,3,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.18,18.33,47.419998,42.869999,6,1,1,0,0,12,2,1,742,498925.06,0,0,1355.438 -8880,10944,19940,19939,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.0610814,5.368175,1,0,-9,6,0,2,-197.95004,0,0,0,69,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.4235458,32.511242,1,47.419998,42.869999,51.18,18.33,6,1,1,0,0,12,2,1,742,498925.06,0,0,1355.438 -8881,10945,19941,19943,-9,-9,2,1,1,49,1,0,1,0,2,-9,4,3,0,0,4,5.4726386,5.9838762,0,2,0,-9,26,0,-1,25.830788,0,0,0,50,2,3,1,2,3,2019,3,1,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2933931,0,0,0,51.830002,57.200001,54.369999,54.799999,6,1,1,0,0,10,3,1,451.66666,182996.3,0,0,1580.9761 -8881,10945,19942,-9,19943,19941,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.71899,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.099998,59.990002,-9,-9,6,1,1,0,0,10,3,1,451.66666,182996.3,0,0,1580.9761 -8881,10945,19943,19941,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,3,7.9838371,7.7186608,0,2,0,-9,28,0,1,-167.55241,0,0,0,49,2,4,3,2,2,2019,2,2,7,0,30,20,15,1,0,4,0,10.945236,10.945236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,51.830002,57.200001,6,1,1,0,0,10,3,1,451.66666,182996.3,0,0,1580.9761 -8881,10946,19944,-9,19943,19941,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,3,7.568645,7.6712513,0,3,0,0,0,-9,0,-1078.4661,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,0,15,1,0,-9,1,6.6855841,6.6855841,0,0,0,0,0,0,0,0,1,1,0,1.2716115,0,0,0,53.779999,48.41,-9,-9,7,1,1,0,0,10,3,1,181,-22716.096,0,0,366.4021 -8882,10947,19945,19947,-9,-9,1,1,1,24,1,0,1,0,2,-9,2,1,0,0,3,7.8934674,7.8022494,0,2,0,-9,4,0,0,30.082727,0,1,0,24,1,3,1,2,3,2019,1,2,9,0,42,56,15,1,0,1,0,6.9543734,6.9543734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.169998,54.549999,26.01,61.110001,3,1,1,0,0,13,3,0,1051.6666,-67897.672,0,0,2086.9072 -8882,10947,19946,-9,19947,19945,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.40472,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,1051.6666,-67897.672,0,0,2086.9072 -8882,10947,19947,19945,-9,-9,2,1,0,24,1,0,1,0,1,-9,2,1,0,0,3,7.2536626,6.8662038,0,2,0,-9,4,0,0,-2.0888569,0,1,1,24,2,3,1,-9,-9,2019,1,1,14,2,0,11,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.01,61.110001,37.169998,54.549999,3,1,1,0,0,13,3,0,1051.6666,-67897.672,0,0,2086.9072 -8883,10948,19948,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,4.5588946,4.4490733,3,0,0,0,-9,0,-962.2583,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3470988,0,0,60.049999,32.119999,-9,-9,6,1,1,0,0,13,2,1,638,143408.83,0,0,485.34235 -8884,10949,19949,19950,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,3,8.9613676,8.9865093,0,1,0,-9,37,0,5,-56.641163,0,0,0,58,2,3,1,2,2,2019,1,1,9,0,37,52,15,1,0,1,0,20.321247,20.321247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.950001,51.419998,42.580002,6,1,1,0,0,12,5,1,837,833625,0,0,2817.8386 -8884,10949,19950,19949,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.0483751,7.0488496,0,1,0,-9,37,0,-5,-11.777137,0,0,0,63,1,3,1,2,2,2019,1,2,11,0,22,15,15,1,0,1,0,7.9036703,7.9036703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.419998,42.580002,49.52,56.950001,4,1,1,0,0,12,5,1,837,833625,0,0,2817.8386 -8884,10950,19951,-9,19950,19949,3,1,0,28,2,0,0,0,1,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-857.60168,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,3,1,0,35,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.31966996,0,0,0,54.509998,50.599998,-9,-9,6,1,1,0,0,12,1,1,5351,-11626.813,0,0,-567.69659 -8885,10951,19952,-9,19954,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1107.9397,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,3,1,612,436576.59,0,0,1179.3772 -8885,10951,19953,-9,19954,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-909.17926,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,3,1,612,436576.59,0,0,1179.3772 -8885,10951,19954,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,0,5,8.200901,8.0351191,0,4,0,0,0,-9,0,-1016.8168,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,4,38,37,15,1,1,-9,0,13.065612,13.065612,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,1,6,3,1,612,436576.59,0,0,1179.3772 -8886,10952,19955,19956,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.719193,7.8953242,1,0,-9,33,0,-2,-18.67021,0,0,0,73,3,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8494315,7.6354132,0,0,50.080002,55.330002,41.84,60.5,6,1,1,0,0,7,3,1,630,1286044.5,0,0,2744.8167 -8886,10952,19956,19955,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,7.1977086,7.3814955,0,1,0,-9,33,0,2,-1.0793089,0,0,0,71,2,3,3,2,2,2019,4,2,11,0,20,20,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5502801,0,0,0,41.84,60.5,50.080002,55.330002,5,1,1,0,0,7,3,1,630,1286044.5,0,0,2744.8167 -8887,10953,19957,19958,-9,-9,1,1,0,22,1,0,0,0,1,-9,2,1,0,0,3,7.4306984,7.5978732,0,1,0,1,1,-9,0,19.631199,0,1,1,22,1,5,1,-9,-9,2019,1,2,12,1,30,37,15,1,0,1,0,8.6543407,8.6543407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.119999,51.119999,38.490002,62.459999,6,1,1,0,0,2,3,0,1451.5,-131573.7,0,0,2965.2524 -8887,10953,19958,19957,-9,-9,2,1,1,22,1,0,0,0,1,-9,2,1,0,0,5,6.9269395,6.7017984,0,1,0,-9,1,-9,0,-123.35175,-9,1,0,22,1,3,1,-9,-9,2019,1,1,14,3,20,0,15,1,0,1,0,6.636817,6.636817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.490002,62.459999,36.119999,51.119999,5,1,1,0,0,2,3,0,1451.5,-131573.7,0,0,2965.2524 -8888,10954,19959,-9,19961,19960,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.34662,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,577,1292190.1,0,0,3457.2207 -8888,10954,19960,19961,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.0074234,7.8216553,0,2,0,-9,2,0,0,-109.28235,0,0,0,43,2,4,1,-9,-9,2019,1,2,3,0,45,0,15,1,0,1,0,7.5386949,7.5386949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,46.5,58.259998,6,1,1,0,0,7,4,1,577,1292190.1,0,0,3457.2207 -8888,10954,19961,19960,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,4,8.4995289,8.5774183,0,2,0,-9,12,0,0,98.839111,0,0,1,43,2,4,1,2,1,2019,1,1,11,1,37,0,15,1,0,1,0,16.065763,16.065763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,54.200001,57.490002,6,1,1,0,0,7,4,1,577,1292190.1,0,0,3457.2207 -8889,10955,19962,-9,19965,19963,4,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-997.92645,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,13,5,1,732,722121.88,0,0,16969.395 -8889,10955,19963,19965,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,9.4633331,9.2584352,0,2,0,-9,8,0,0,98.812508,0,0,0,48,2,5,3,2,1,2019,2,2,11,1,60,62,15,1,0,3,0,24.925257,24.925257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.529999,52.209999,59.91,6,1,1,0,0,13,5,1,732,722121.88,0,0,16969.395 -8889,10955,19964,-9,19965,19963,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.563,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,732,722121.88,0,0,16969.395 -8889,10955,19965,19963,-9,-9,2,1,0,48,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,0,-65.628799,0,0,0,48,1,4,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.7662039,0,0,0,52.209999,59.91,57.73,54.529999,6,1,1,0,0,13,5,1,732,722121.88,0,0,16969.395 -8889,10956,19966,-9,19965,19963,3,1,0,20,2,0,2,1,2,0,7,2,0,0,4,0,4.1987405,4.46105,3,0,0,0,-9,0,-987.61487,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6393452,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,13,2,1,308,10842.182,0,0,-304.55591 -8890,10957,19967,19968,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,3.6747854,3.9933698,1,0,-9,48,0,-1,-37.295712,0,0,0,75,2,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6387992,3.8677754,0,0,57.16,56.150002,59.040001,54.119999,6,1,1,0,0,10,3,1,187.5,425566.25,0,0,1866.6348 -8890,10957,19968,19967,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,5,0,7.6642528,7.7977695,1,0,-9,48,0,1,24.819721,0,0,0,74,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0528994,7.9137378,0,0,59.040001,54.119999,57.16,56.150002,6,1,1,0,0,10,3,1,187.5,425566.25,0,0,1866.6348 -8891,10958,19969,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,0,3,7.699935,8.1518888,0,3,0,0,0,-9,0,-997.73535,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,24,25,15,1,0,-9,0,12.280979,12.280979,0,0,0,0,0,0,0,0,0,0,0,4.1746325,0,0,0,52.48,55.599998,-9,-9,6,1,1,0,0,9,3,1,157,8133.7842,0,0,1348.8558 -8892,10959,19970,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,6.7240691,6.9043517,3,0,0,0,-9,0,-1081.4834,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7839861,6.8121257,0,0,59.290001,49.68,-9,-9,6,1,1,0,0,9,2,1,1228,291544.09,0,0,2352.0137 -8893,10960,19971,-9,19972,19973,4,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.2278,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,0,926.33331,12146.395,0,0,3215.2207 -8893,10960,19972,19973,-9,-9,1,1,0,37,1,1,1,0,2,-9,2,1,0,0,3,7.8023987,7.8499184,0,2,0,-9,9,0,0,-8.7017441,0,0,1,37,2,3,1,3,3,2019,1,2,12,0,36,38,15,1,0,1,0,6.8817415,6.8817415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.310001,51.66,54.880001,6,1,1,0,0,2,4,0,926.33331,12146.395,0,0,3215.2207 -8893,10960,19973,19972,-9,-9,2,1,1,37,1,1,1,0,2,-9,2,1,0,0,3,8.206131,8.2862234,0,2,0,-9,9,0,0,123.11261,0,0,0,37,2,3,1,1,2,2019,1,1,12,0,92,37,15,1,0,1,0,4.8147793,4.8147793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,56.52,48.310001,4,1,1,0,1,2,4,0,926.33331,12146.395,0,0,3215.2207 -8893,10961,19974,-9,19972,19973,3,1,1,19,2,1,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-941.98865,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.849998,54.619999,-9,-9,6,1,1,1,0,2,1,0,336,0,0,0,996.67529 -8894,10962,19975,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,5,7.4427733,7.5907292,0,3,0,0,0,-9,0,-950.08728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,35,35,15,1,0,-9,0,9.8520746,9.8520746,0,0,0,0,0,0,0,2,0,0,0,5.7698679,0,0,3,57.650002,56.130001,-9,-9,7,1,1,0,0,12,3,1,459,-102879.98,0,0,1642.5624 -8895,10963,19976,19977,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,5.6832609,5.5954971,1,0,-9,52,0,-5,-18.512823,0,0,0,77,2,4,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9563353,5.6664863,0,0,54.200001,57.490002,60.299999,43.720001,6,4,5,0,0,5,3,1,848.5,857303.63,0,0,2584.4453 -8895,10963,19977,19976,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,8.3124132,8.1954546,1,0,-9,52,0,5,85.96521,0,0,0,72,2,4,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5749655,8.1050797,0,0,60.299999,43.720001,54.200001,57.490002,6,1,1,0,0,5,3,1,848.5,857303.63,0,0,2584.4453 -8896,10964,19978,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,1,1,0,0,3,0,7.7518816,7.9084563,3,0,0,0,-9,0,-1002.1531,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4228134,7.7741828,0,0,49.630001,54.220001,-9,-9,6,1,1,0,0,11,3,1,795,56530.922,0,0,1991.7793 -8897,10965,19979,19980,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,5,5.8162351,5.7883983,0,1,0,-9,6,0,-4,16.882669,0,0,0,53,2,2,1,-9,2,2019,1,1,10,0,2,8,15,1,0,1,0,22.908316,22.908316,0,0,0,0,0,0,0,2,1,1,0,.86137593,0,7.9538779,3,51.389999,59.18,23.879999,36.380001,6,1,1,0,0,7,4,1,329.66666,1307221.1,0,0,3416.116 -8897,10965,19980,19979,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.5049706,8.5187359,0,1,0,-9,6,0,4,-50.465233,0,0,0,49,2,5,1,-9,-9,2019,1,2,23,11,39,43,15,1,1,1,0,13.559186,13.559186,0,0,0,0,0,0,0,0,1,1,0,2.8600187,0,0,0,23.879999,36.380001,51.389999,59.18,5,1,1,0,0,7,4,1,329.66666,1307221.1,0,0,3416.116 -8897,10965,19981,-9,19979,19980,3,1,0,17,2,0,0,0,2,1,2,3,0,0,4,7.5816336,7.8424878,0,1,0,0,0,-9,0,-989.35468,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,41,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4360644,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,7,4,1,329.66666,1307221.1,0,0,3416.116 -8898,10966,19982,19983,-9,-9,2,1,0,28,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-7,-169.04703,-9,1,1,35,1,4,1,-9,-9,2019,3,1,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.810001,47.490002,46.400002,47.419998,5,3,4,0,0,2,3,0,1642.6666,114074.77,0,0,1512.9738 -8898,10966,19983,19982,-9,-9,1,1,1,35,1,1,1,0,1,-9,2,1,0,0,4,8.267724,8.2044907,0,2,0,-9,2,0,7,-2.5877657,0,0,0,28,2,4,3,3,3,2019,2,2,12,1,37,43,15,1,0,3,0,12.846357,12.846357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.400002,47.419998,54.810001,47.490002,5,3,4,0,0,2,3,0,1642.6666,114074.77,0,0,1512.9738 -8898,10966,19984,-9,19982,19983,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-947.19696,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,2,3,0,1642.6666,114074.77,0,0,1512.9738 -8899,10967,19985,19986,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,7.8277807,7.7181859,1,0,-9,58,0,0,125.69482,0,0,0,80,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7960148,7.7511768,1.1098446,3,62.490002,55.09,62.259998,35.240002,7,1,1,0,0,10,3,1,425.5,165115.03,0,0,2911.0396 -8899,10967,19986,19985,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,0,2,0,6.1436591,6.4643955,1,0,-9,58,0,0,-19.115919,0,0,0,80,1,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,7.5858941,0,0,0,0,2,1,1,0,0,6.2936163,4.766449,3,62.259998,35.240002,62.490002,55.09,7,1,1,0,0,10,3,1,425.5,165115.03,0,0,2911.0396 -8900,10968,19987,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,2,0,6.8013439,7.4574394,3,0,0,0,-9,0,-1033.694,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9433813,0,0,46.950001,31.82,-9,-9,6,1,1,0,0,2,2,1,577,307886.44,0,0,2028.9408 -8901,10969,19988,19989,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,0,4,7.9183455,8.3341436,6.2666783,2,0,-9,4,0,1,-30.5991,0,0,0,52,1,4,1,3,2,2019,1,4,12,0,28,35,15,1,0,1,0,11.160143,11.160143,0,0,0,0,0,0,0,0,1,1,0,5.5914068,0,0,0,62.490002,55.09,54.200001,57.490002,6,1,1,0,0,4,4,1,647.33331,2519965,0,0,3075.5469 -8901,10969,19989,19988,-9,-9,4,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,8.510643,8.4195452,6.8648968,2,0,-9,4,0,-1,84.793808,0,0,0,53,1,4,1,-9,-9,2019,1,1,11,0,37,45,15,1,0,1,0,12.352454,12.352454,0,0,0,0,0,0,0,0,1,1,0,0,6.6426458,0,0,54.200001,57.490002,62.490002,55.09,6,1,1,0,0,4,4,1,647.33331,2519965,0,0,3075.5469 -8901,10969,19990,-9,19988,19989,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.484,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,647.33331,2519965,0,0,3075.5469 -8901,10970,19991,-9,19988,19989,3,1,0,21,2,0,1,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-893.6424,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,5,1,1,1,1,4,1,1,1752,215311.28,0,0,0 -8902,10971,19992,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,8.7470627,8.3643885,3,0,0,0,-9,0,-959.82324,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1459045,8.5253992,0,3,55.02,50.34,-9,-9,7,1,1,0,0,8,5,1,589,2610860.5,0,0,2914.9604 -8903,10972,19993,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,2,7.2290597,7.5305123,0,3,0,0,0,-9,0,-1017.1459,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,32,34,15,1,0,-9,0,6.4667311,6.4667311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,43.169998,-9,-9,3,1,1,0,1,11,3,0,825,-19507.863,0,0,711.57367 -8903,10973,19994,-9,19993,-9,2,1,1,22,2,0,0,0,2,0,7,2,0,0,2,6.6588969,6.6249232,0,3,0,0,0,-9,0,-982.25726,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.450001,45.080002,-9,-9,3,1,1,0,0,11,2,0,463,-134721.77,0,0,2985.0688 -8904,10974,19995,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,4,7.520165,7.6559672,0,3,0,0,0,-9,0,-945.11139,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,21,0,15,1,0,-9,0,15.29601,15.29601,0,0,0,0,0,0,0,0,0,0,0,4.6252923,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,0,148,-111476.37,0,0,1237.5603 -8905,10975,19996,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.7297468,7.6907535,3,0,0,0,-9,0,-1103.0142,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8438396,7.9083953,0,0,52.240002,43.310001,-9,-9,6,1,1,0,0,9,3,1,187,972023.56,0,0,3285.2085 -8906,10976,19997,19998,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,1,2,0,5.8969073,5.8414335,1,0,-9,52,0,-1,127.63341,0,0,0,71,2,3,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.9480386,0,0,24.639999,34.860001,52,47,2,1,1,0,0,6,2,1,437,875051.5,0,0,1663.1296 -8906,10976,19998,19997,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,1,130.13031,0,0,0,70,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2128305,0,0,0,52,47,24.639999,34.860001,5,1,1,0,0,6,2,1,437,875051.5,0,0,1663.1296 -8907,10977,19999,20000,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,0,1,0,6.5516567,6.3563447,1,0,-9,61,0,4,-79.230026,0,0,0,79,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6999722,0,0,52.509998,30.32,49.279999,50.189999,5,1,1,0,0,7,2,1,352.5,214891.09,0,0,917.31128 -8907,10977,20000,19999,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,-4,-41.837132,0,0,0,83,3,1,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5791059,0,0,0,49.279999,50.189999,52.509998,30.32,6,1,1,0,0,7,2,1,352.5,214891.09,0,0,917.31128 -8908,10978,20001,20004,-9,-9,1,1,0,33,1,2,2,0,1,-9,2,1,0,0,4,7.0791593,7.4953456,0,2,0,-9,9,0,-1,53.125401,0,0,1,34,2,3,1,2,2,2019,1,2,7,0,14,21,15,1,0,1,0,10.449509,10.449509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,12.48,58.889999,6,1,1,0,1,12,4,1,1414.25,77230.102,0,0,2806.2329 -8908,10978,20002,-9,20001,20004,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.7479,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,1414.25,77230.102,0,0,2806.2329 -8908,10978,20003,-9,20001,20004,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1057.5204,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,1414.25,77230.102,0,0,2806.2329 -8908,10978,20004,20001,-9,-9,2,1,1,34,1,2,2,0,2,-9,2,1,0,0,3,8.6789942,8.6978331,0,2,0,-9,9,0,1,17.591835,0,0,0,33,1,4,1,2,2,2019,1,1,22,8,51,41,15,1,1,1,0,9.4794531,9.4794531,0,0,0,0,0,0,0,0,1,1,0,1.9339123,0,0,0,12.48,58.889999,52.82,53.970001,2,1,1,0,1,12,4,1,1414.25,77230.102,0,0,2806.2329 -8909,10979,20005,20006,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,9.6201773,9.8315783,0,1,0,-9,34,0,2,6.5262537,0,0,0,58,2,3,3,2,1,2019,2,2,6,0,21,24,15,1,0,3,0,98.964043,98.964043,0,0,0,0,0,0,0,0,1,1,0,6.4267058,0,0,0,65.239998,41.59,49,48,6,1,1,0,0,5,5,1,599.5,345860.31,0,0,6136.8379 -8909,10979,20006,20005,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,34,0,-2,9.5474625,0,0,0,60,2,3,1,2,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,65.239998,41.59,5,1,1,0,0,5,5,1,599.5,345860.31,0,0,6136.8379 -8910,10980,20007,20010,-9,-9,2,1,0,42,1,0,3,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,5,0,2,7.9901876,0,0,1,40,2,4,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.303066,3,60.439999,46.580002,57.16,56.150002,6,2,3,0,0,6,2,1,991.40002,100158.51,0,0,2576.53 -8910,10980,20008,-9,20007,20010,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1011.0976,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,46,-9,-9,4,2,3,0,0,6,2,1,991.40002,100158.51,0,0,2576.53 -8910,10980,20009,-9,20007,20010,6,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.9974,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,2,1,991.40002,100158.51,0,0,2576.53 -8910,10980,20010,20007,20012,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,0,4,7.4115348,7.5149393,0,2,0,-9,5,0,-2,-74.473907,0,0,0,42,3,3,3,3,-9,2019,2,2,6,0,24,34,15,1,0,3,0,7.7968812,7.7968812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,60.439999,46.580002,6,2,3,0,0,6,2,1,991.40002,100158.51,0,0,2576.53 -8910,10980,20011,-9,20007,20010,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-921.57935,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,2,3,0,0,6,2,1,991.40002,100158.51,0,0,2576.53 -8910,10981,20012,-9,-9,-9,5,1,0,82,3,0,3,0,3,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-949.12952,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,2,3,0,0,6,1,1,602,122109.19,0,0,300.40546 -8911,10982,20013,-9,-9,-9,1,1,0,21,2,0,1,0,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-995.66241,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.02,55.150002,-9,-9,4,1,1,0,0,2,1,0,437,115524.45,0,0,803.75836 -8911,10982,20014,-9,20013,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-992.00726,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,437,115524.45,0,0,803.75836 -8912,10983,20015,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,7.7835717,7.3585997,0,3,0,0,0,-9,0,-971.3045,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,33,35,15,1,0,-9,0,7.7130995,7.7130995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.010002,32.529999,-9,-9,6,1,1,0,0,9,3,1,1967,384542.28,0,0,-333.28012 -8913,10984,20016,20017,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,5.9446201,6.2443428,1,0,-9,61,0,-4,-6.7148705,0,0,0,86,3,2,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,7.9512382,0,0,0,0,0,1,1,0,4.7732129,6.256916,0,0,54.450001,34,55.759998,32.650002,7,1,1,0,0,1,3,1,516,613536.75,0,0,3053.8752 -8913,10984,20017,20016,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,2,0,7.595191,7.5510683,1,0,-9,61,0,4,-72.418358,0,0,0,82,2,3,3,3,3,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.7673149,7.2178659,0,0,55.759998,32.650002,54.450001,34,6,1,1,0,0,1,3,1,516,613536.75,0,0,3053.8752 -8914,10985,20018,-9,20020,20021,3,1,0,17,2,0,1,0,2,-9,7,2,0,0,3,5.6756201,5.7948556,4.552114,2,0,0,0,-9,0,-1074.6542,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,17,4,12,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6960902,0,0,0,37.080002,57.259998,-9,-9,4,1,1,0,0,9,2,1,487,88058.32,0,0,710.30255 -8914,10985,20019,-9,20020,20021,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1087.6509,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,9,2,1,487,88058.32,0,0,710.30255 -8914,10985,20020,20021,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,7.4623227,7.5434232,0,2,0,-9,26,0,-2,54.052517,0,0,0,48,3,5,1,2,2,2019,1,1,10,0,30,29,15,1,0,1,0,7.8907652,7.8907652,0,0,0,0,0,0,0,0,1,1,0,1.9053855,0,0,0,49.040001,55.860001,57.060001,57.759998,6,1,1,0,0,9,2,1,487,88058.32,0,0,710.30255 -8914,10985,20021,20020,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,0,5,0,0,0,2,0,-9,26,0,2,-12.32844,0,0,0,46,2,3,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3083856,0,0,0,57.060001,57.759998,49.040001,55.860001,6,1,1,0,0,9,2,1,487,88058.32,0,0,710.30255 -8915,10986,20022,20023,-9,-9,1,1,1,58,1,0,0,0,3,-9,1,1,0,0,4,5.3950057,5.1793675,0,1,0,-9,30,0,-7,-197.53551,-9,0,0,65,2,3,1,2,3,2019,1,2,13,2,30,0,15,1,0,1,0,.77034831,.77034831,0,0,0,0,0,0,0,0,0,0,0,2.1707449,0,0,0,48.279999,60.18,36.869999,49.16,3,1,1,0,0,9,3,0,1032.5,1025621.3,0,0,967.33716 -8915,10986,20023,20022,-9,-9,2,1,0,65,1,0,0,0,2,-9,1,1,0,0,3,5.979249,7.9563975,7.357779,1,0,-9,30,0,7,-56.495163,-9,0,0,58,3,4,1,3,3,2019,1,1,13,1,35,0,15,1,0,1,0,1.5456704,1.5456704,0,0,0,0,0,0,0,0,0,0,0,0,7.4011693,0,0,36.869999,49.16,48.279999,60.18,3,1,1,0,0,9,3,0,1032.5,1025621.3,0,0,967.33716 -8916,10987,20024,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1099.5591,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,8,1,1,223,-62590.414,0,0,283.63791 -8917,10988,20025,-9,20026,20027,4,1,0,16,2,0,2,0,2,-9,3,2,0,0,3,0,0,0,2,0,0,0,-9,0,-988.05408,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.311157,0,0,0,38.790001,56.810001,-9,-9,5,1,1,1,0,12,3,1,1553.6666,244653.91,0,0,1996.194 -8917,10988,20026,20027,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,7.9411521,7.8509932,0,2,0,-9,8,0,-2,-60.990047,0,0,1,46,2,3,1,2,-9,2019,1,1,15,3,68,68,15,1,0,1,0,5.4465137,5.4465137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,52,54.509998,3,1,1,0,0,12,3,1,1553.6666,244653.91,0,0,1996.194 -8917,10988,20027,20026,-9,-9,1,1,1,46,1,0,2,0,2,-9,1,1,0,0,3,7.4452648,7.4394531,0,2,0,-9,8,0,2,-71.296135,0,0,0,44,1,3,1,-9,-9,2019,1,2,9,0,50,60,15,1,0,1,0,4.4038782,4.4038782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,45.73,57.57,5,1,1,0,0,12,3,1,1553.6666,244653.91,0,0,1996.194 -8917,10989,20028,-9,20026,20027,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,5.8459816,6.2194796,0,3,0,0,0,-9,0,-1102.9844,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.41625336,0,0,0,56.77,52.220001,-9,-9,6,1,1,0,0,12,3,1,1344,-29867.68,0,0,117.70546 -8918,10990,20029,-9,20031,20030,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1001.2299,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0899644,0,0,0,28.9,55.48,-9,-9,6,1,1,0,0,12,3,1,669,804499.13,0,0,1960.4032 -8918,10990,20030,20031,-9,-9,1,1,1,55,1,0,1,0,1,-9,3,3,0,0,3,8.1909752,8.2864428,0,2,0,-9,7,0,-8,50.333344,0,0,0,63,2,3,3,2,1,2019,4,3,20,8,39,39,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.049999,46.560001,45.34,41.209999,4,1,1,1,0,12,3,1,669,804499.13,0,0,1960.4032 -8918,10990,20031,20030,-9,-9,3,1,0,63,1,0,1,0,2,-9,4,3,0,0,3,0,5.2145133,4.8668013,2,0,-9,7,0,8,-55.785431,0,0,0,55,1,3,3,3,2,2019,4,1,15,4,0,16,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9203808,5.2195439,0,0,45.34,41.209999,40.049999,46.560001,6,1,1,0,0,12,3,1,669,804499.13,0,0,1960.4032 -8919,10991,20032,-9,-9,-9,3,1,0,19,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1020.0762,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,11,1,1,489,-51295.898,0,0,1160.895 -8920,10992,20033,-9,20034,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,8.2459164,8.7723055,6.8827653,3,0,0,0,-9,0,-940.6795,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,54,49,15,1,0,-9,1,8.4372272,8.4372272,0,0,0,0,0,0,0,0,1,1,0,0,7.6249909,0,0,62.990002,44.02,-9,-9,6,1,1,0,0,9,5,0,226,893177.19,0,0,1005.4399 -8920,10993,20034,-9,-9,-9,2,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,5.3134127,5.2255945,3,0,0,0,-9,0,-1029.4303,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,12,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15353377,5.4966936,0,0,60.470001,46.560001,-9,-9,6,1,1,0,0,9,2,0,4671,425881.75,0,0,795.28821 -8921,10994,20035,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,7.1375046,7.2508569,3,0,0,0,-9,0,-1003.4926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6916637,7.0799241,0,0,49.52,55.68,-9,-9,6,1,1,0,0,9,2,1,162,-35304.004,0,0,2288.791 -8922,10995,20036,20037,-9,-9,1,1,1,33,1,0,1,0,1,-9,2,1,0,0,3,8.7321596,8.8952932,0,2,0,-9,8,0,-14,51.628674,0,0,0,47,2,4,1,2,2,2019,1,2,8,1,44,46,15,1,0,1,0,17.248466,17.248466,0,0,0,0,0,0,0,0,1,1,0,2.140841,0,0,0,51.41,56.150002,57.16,56.150002,6,1,1,0,0,2,4,0,454,88960.102,0,0,2383.8411 -8922,10995,20037,20036,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,7.2067566,6.9509845,0,2,0,-9,8,0,14,1.541499,0,0,0,33,1,3,1,2,3,2019,1,1,7,0,22,20,15,1,0,1,0,7.5282955,7.5282955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.41,56.150002,6,1,1,0,0,2,4,0,454,88960.102,0,0,2383.8411 -8922,10995,20038,-9,20037,20036,4,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.26727,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,0,454,88960.102,0,0,2383.8411 -8923,10996,20039,20042,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.3940802,9.2261391,0,2,0,-9,7,0,-5,105.42502,0,0,0,47,2,5,1,2,2,2019,1,2,10,0,43,49,15,1,0,1,0,24.745907,24.745907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,55.580002,46.549999,52.970001,5,1,1,0,0,7,5,1,282.5,444405.22,0,0,5209.6641 -8923,10996,20040,-9,20042,20039,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.6324,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,5,1,282.5,444405.22,0,0,5209.6641 -8923,10996,20041,-9,20042,20039,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.90076,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,5,1,282.5,444405.22,0,0,5209.6641 -8923,10996,20042,20039,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,5,8.7055149,8.383604,0,2,0,-9,7,0,5,-8.2519016,0,0,0,42,1,4,1,3,2,2019,1,1,13,2,37,40,15,1,0,1,0,19.703276,19.703276,0,0,0,0,0,0,0,0,0,0,0,6.592937,0,0,0,46.549999,52.970001,52.400002,55.580002,4,1,1,0,0,7,5,1,282.5,444405.22,0,0,5209.6641 -8924,10997,20043,20044,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,0,4,8.5791311,8.5757971,0,1,0,-9,7,0,2,-10.502105,0,0,1,29,2,3,1,2,2,2019,1,2,18,6,37,40,15,1,1,1,0,18.471508,18.471508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.5,64.160004,50.029999,52.619999,5,1,1,0,0,7,5,1,1321.5,93532.813,0,0,4873.9531 -8924,10997,20044,20043,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,0,3,9.2531948,8.8375101,0,1,0,-9,7,0,-2,67.240486,0,1,0,31,2,4,1,2,2,2019,1,1,9,1,48,53,15,1,0,1,0,20.822405,20.822405,0,0,0,0,0,0,0,0,0,0,0,3.4827945,0,0,0,50.029999,52.619999,25.5,64.160004,5,1,1,0,0,7,5,1,1321.5,93532.813,0,0,4873.9531 -8925,10998,20045,20046,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,1,3,0,8.1210022,8.071455,1,0,-9,8,0,6,-67.864677,0,0,0,66,1,2,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.0104036,0,0,53,47,29.6,44.790001,5,1,1,0,0,13,4,1,228,2099446,0,0,4889.2104 -8925,10998,20046,20045,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,2,0,8.3471413,8.1459351,1,0,-9,8,0,-6,-146.381,0,0,0,72,1,3,3,1,1,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.6335268,8.1426916,118.34923,1,29.6,44.790001,53,47,5,1,1,0,0,13,4,1,228,2099446,0,0,4889.2104 -8926,10999,20047,-9,20048,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,-9,0,-9,0,-1175.0898,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,8,5,0,243.5,142291.95,0,0,4580.519 -8926,10999,20048,-9,-9,-9,1,1,0,35,3,0,1,0,2,-9,2,1,0,0,4,8.1544285,8.857255,7.8687067,4,0,-9,0,-9,0,-904.92401,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,2,16,0,15,1,0,-9,0,20.645115,20.645115,0,0,0,0,0,0,0,0,1,1,0,8.0934649,0,0,0,45.560001,60.259998,-9,-9,6,1,1,0,1,8,5,0,243.5,142291.95,0,0,4580.519 -8927,11000,20049,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,1,3,0,4.1945925,4.6136446,3,0,0,0,-9,0,-1062.5365,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6520705,4.4609656,0,0,54.639999,29.24,-9,-9,6,1,1,0,0,7,2,1,872,218543.45,0,0,1199.9976 -8928,11001,20050,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,0,4,0,4.1676769,4.4108734,3,0,0,0,-9,0,-1055.6852,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.8297081,0,0,0,0,1,1,0,0,3.9355242,0,0,52.889999,38.82,-9,-9,7,1,1,0,0,11,1,0,1100,-31421.693,0,0,650.21021 -8929,11002,20051,20052,-9,-9,1,1,0,59,1,0,0,0,1,-9,1,1,0,0,3,8.2249556,8.445653,0,1,0,-9,4,0,-4,38.924709,0,0,0,63,1,3,1,3,2,2019,1,2,13,3,50,55,15,1,0,1,0,10.499537,10.499537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.939999,48.259998,34.939999,52.810001,4,2,3,0,0,10,5,1,361.5,2897674,0,0,3238.5664 -8929,11002,20052,20051,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,3,8.2271843,8.5742664,0,1,0,-9,4,0,4,-135.4931,0,0,0,59,1,3,1,3,3,2019,1,1,19,7,48,47,15,1,1,1,0,10.575321,10.575321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.939999,52.810001,47.939999,48.259998,3,2,3,0,0,10,5,1,361.5,2897674,0,0,3238.5664 -8930,11003,20053,20054,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,5,9.2847013,9.5216312,0,1,0,-9,32,0,2,48.625149,0,0,0,56,1,2,1,2,2,2019,1,2,18,7,40,40,15,1,1,1,0,25.67708,25.67708,0,0,0,0,0,0,0,0,0,0,0,3.6874743,0,0,0,52.240002,58.560001,50.580002,24.559999,6,1,1,0,0,13,5,1,344.5,2666259.3,0,0,4352.6289 -8930,11003,20054,20053,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,2,7.7073016,7.4941425,0,1,0,-9,8,0,-2,-80.454185,0,0,0,58,1,5,1,-9,-9,2019,1,1,15,5,30,30,15,1,1,1,0,7.4998484,7.4998484,0,0,0,0,0,0,0,0,0,0,0,2.7379827,0,0,0,50.580002,24.559999,52.240002,58.560001,7,1,1,0,0,13,5,1,344.5,2666259.3,0,0,4352.6289 -8930,11004,20055,-9,20054,20053,3,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,7.7141361,7.5127816,0,3,0,0,0,-9,0,-1096.2008,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,40,40,15,1,0,-9,1,5.8737016,5.8737016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,13,3,1,280,72594.711,0,0,106.68551 -8930,11005,20056,-9,20054,20053,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,7.9978056,8.1518116,0,3,0,0,0,-9,0,-991.5127,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,38,40,15,1,0,-9,1,10.022031,10.022031,0,0,0,0,0,0,0,0,0,0,0,2.4957209,0,0,0,49,58,-9,-9,5,1,1,0,0,13,4,1,634,-133608.67,0,0,544.63562 -8931,11006,20057,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,7,2,0,0,4,0,4.4609828,4.3171592,3,0,0,0,-9,0,-946.80176,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,49,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3531742,0,0,0,54.450001,50.689999,-9,-9,6,1,1,0,0,8,1,0,150,-249.15852,0,0,-1169.7037 -8932,11007,20058,20059,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,0,2,7.802752,8.3229141,6.2824736,1,0,-9,7,0,-1,-99.067566,0,0,0,65,2,4,1,3,2,2019,1,1,9,0,23,23,15,1,0,1,0,11.185414,11.185414,0,0,0,0,0,0,0,0,1,1,0,4.7732053,6.4310455,0,0,46.040001,48.02,51.830002,57.200001,6,1,1,0,0,10,4,1,407,3106439.5,0,0,3654.7571 -8932,11007,20059,20058,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,7.4213099,8.0622482,6.6965303,1,0,-9,7,0,1,-50.618473,0,0,0,64,3,2,1,3,2,2019,1,2,6,0,30,30,15,1,0,1,0,11.497195,11.497195,0,0,0,0,0,0,0,0,1,1,0,4.4604006,7.2938495,0,0,51.830002,57.200001,46.040001,48.02,6,1,1,0,0,10,4,1,407,3106439.5,0,0,3654.7571 -8933,11008,20060,-9,20061,-9,2,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1145.7933,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,1,0,3892.75,0,0,0,1098.0797 -8933,11008,20061,-9,-9,-9,1,1,0,26,2,1,3,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-977.53918,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,1,0,3892.75,0,0,0,1098.0797 -8933,11008,20062,-9,20061,-9,3,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1054.912,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,3892.75,0,0,0,1098.0797 -8933,11008,20063,-9,20061,-9,4,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-923.57556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,3892.75,0,0,0,1098.0797 -8934,11009,20064,-9,20066,20067,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.7439,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,617.5,82130.188,0,0,2960.9187 -8934,11009,20065,-9,20066,20067,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.516,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,617.5,82130.188,0,0,2960.9187 -8934,11009,20066,20067,-9,-9,2,1,0,48,1,0,2,0,1,-9,8,3,1,1,1,0,5.7908125,6.0724053,2,0,-9,6,0,1,-148.47528,0,0,0,47,1,4,1,-9,-9,2019,3,1,25,11,0,13,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1352682,0,0,35.009998,38.689999,44.419998,59.09,2,1,1,0,0,12,4,1,617.5,82130.188,0,0,2960.9187 -8934,11009,20067,20066,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,8.7011948,8.8510399,0,2,0,-9,6,0,-1,56.074398,0,0,0,48,1,1,3,1,1,2019,2,2,15,3,40,42,15,1,0,3,0,17.354458,17.354458,0,0,0,0,0,0,0,0,1,1,0,1.6814066,0,0,0,44.419998,59.09,35.009998,38.689999,5,1,1,0,0,12,4,1,617.5,82130.188,0,0,2960.9187 -8935,11010,20068,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,4,7.8176327,7.4711728,0,3,0,0,0,-9,0,-957.60284,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,40,35,15,1,1,-9,0,6.5850449,6.5850449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,13,3,1,251,15679.499,0,0,316.45929 -8936,11011,20069,-9,-9,-9,1,1,0,83,2,0,0,0,1,-9,4,3,0,0,3,0,7.6175437,7.8537946,3,0,0,0,-9,0,-1018.0427,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.6738338,7.7666302,0,0,59.310001,49.810001,-9,-9,6,1,1,0,0,10,3,1,322,692448.56,0,0,2769.9617 -8937,11012,20070,20071,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,0,4,8.27701,8.5441389,0,1,0,-9,1,-9,-1,-27.65114,-9,1,1,23,1,4,1,-9,-9,2019,1,1,12,2,37,0,15,1,0,1,0,14.596135,14.596135,0,0,0,0,0,0,0,0,0,0,0,5.417201,0,0,0,46,58,50.34,56.400002,5,1,1,0,0,9,5,0,1251,133976.64,0,0,4352.6631 -8937,11012,20071,20070,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,0,4,8.2036161,8.1311655,0,1,0,-9,1,-9,1,-50.810463,-9,1,0,22,1,4,1,1,-9,2019,1,2,12,2,48,0,15,1,0,1,0,8.7066679,8.7066679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.400002,46,58,6,1,1,0,0,9,5,0,1251,133976.64,0,0,4352.6631 -8938,11013,20072,20075,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,0,4,8.6640911,8.7381783,0,2,0,-9,1,-9,-2,45.672852,-9,0,1,36,1,4,1,-9,-9,2019,1,1,11,1,38,0,15,1,0,1,0,18.5147,18.5147,0,0,0,0,0,0,0,2,1,1,0,0,0,1.7175235,3,33.200001,63.27,39.73,61.23,6,1,1,0,0,13,5,1,352.25,365840.94,0,0,5281.1748 -8938,11013,20073,-9,20072,20075,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1028.2876,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,5,1,352.25,365840.94,0,0,5281.1748 -8938,11013,20074,-9,20072,20075,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1071.4281,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,5,1,352.25,365840.94,0,0,5281.1748 -8938,11013,20075,20072,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,8.8093576,8.7871647,0,2,0,-9,1,-9,2,-122.79805,-9,0,0,34,1,4,1,2,2,2019,1,2,10,0,80,0,15,1,0,1,0,8.8319216,8.8319216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,61.23,33.200001,63.27,6,1,1,0,0,13,5,1,352.25,365840.94,0,0,5281.1748 -8939,11014,20076,-9,20077,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-991.5769,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,2,1,606,546092.38,0,0,1339.4124 -8939,11014,20077,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,6,3,0,1,3,0,6.7989931,6.6334724,4,0,0,0,-9,0,-1057.389,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,21,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,0,1,7.0947123,0,129.216,3,24.280001,42.810001,-9,-9,4,1,1,0,0,7,2,1,606,546092.38,0,0,1339.4124 -8939,11014,20078,-9,20077,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1041.311,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,4,2,0,0,7,2,1,606,546092.38,0,0,1339.4124 -8940,11015,20079,20080,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,1,2,0,4.3465152,4.5271034,1,0,-9,7,0,-6,33.28199,0,0,0,76,2,4,1,2,2,2019,3,1,12,3,0,0,15,4,0,1,0,0,0,1,3.2377877,14.235248,0,0,0,0,0,1,1,0,7.9506578,4.0954046,0,0,31.15,38.689999,58.259998,54.259998,6,1,1,0,0,2,5,1,644,2683004.3,0,0,23041.313 -8940,11015,20080,20079,-9,-9,1,1,1,76,1,0,0,0,2,-9,1,1,0,1,4,9.7907524,9.9708614,8.5837955,1,0,-9,7,0,6,3.4001353,0,0,0,70,1,2,3,2,2,2019,2,2,8,0,8,15,15,1,0,4,0,295.65527,295.65527,0,0,0,0,0,0,0,14.5,1,1,0,8.1650877,4.6388025,15.494588,1,58.259998,54.259998,31.15,38.689999,6,1,1,0,0,2,5,1,644,2683004.3,0,0,23041.313 -8941,11016,20081,20082,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-4,-40.561031,0,0,0,74,3,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1171551,0,0,0,41.34,56.619999,56,35.799999,7,1,1,0,0,7,2,1,724.5,422306.84,0,0,2462.157 -8941,11016,20082,20081,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,7.4973998,7.4508095,1,0,-9,6,0,4,-46.169285,0,0,0,70,3,3,3,2,3,2019,4,2,10,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.6632662,7.6542416,0,0,56,35.799999,41.34,56.619999,6,1,1,0,0,7,2,1,724.5,422306.84,0,0,2462.157 -8942,11017,20083,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,3,0,7.9120126,7.8819265,3,0,0,0,-9,0,-1128.26,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3160095,8.0202112,0,0,58.610001,46.02,-9,-9,6,1,1,0,0,11,3,1,657,734463.81,0,0,2222.4795 -8943,11018,20084,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,8.1948833,8.5426645,5.9860177,3,0,0,0,-9,0,-882.25385,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,38,15,1,0,-9,0,12.589527,12.589527,0,0,0,0,0,0,0,0,1,1,0,6.3092928,0,0,0,55.189999,54.259998,-9,-9,7,1,1,0,0,12,4,1,340,508652.19,0,0,3345.7888 -8944,11019,20085,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,0,2,9.0215225,8.6734304,0,3,0,0,0,-9,0,-1054.804,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,55,50,15,1,0,-9,0,17.056911,17.056911,0,0,0,0,0,0,0,0,0,0,0,4.1715002,0,0,0,52.240002,50.75,-9,-9,6,1,1,0,0,9,5,1,1089,175353.25,0,0,2887.4492 -8945,11020,20086,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,0,4,0,7.193079,7.4260697,3,0,0,0,-9,0,-1024.0144,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0550849,7.0703945,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,1020,143279.88,0,0,2148.9287 -8946,11021,20087,20089,-9,-9,1,1,0,34,1,1,3,0,1,-9,6,3,0,0,5,0,6.6645875,6.6021118,2,0,-9,4,0,-4,89.062813,0,0,1,38,2,4,1,2,3,2019,3,4,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4443927,0,0,0,54.099998,59.110001,51,57,5,4,2,0,0,5,3,0,816.75,224842.09,0,0,1898.519 -8946,11021,20088,-9,20087,20089,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.4468,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,5,3,0,816.75,224842.09,0,0,1898.519 -8946,11021,20089,20087,-9,-9,4,1,1,38,1,1,3,0,2,-9,2,1,0,0,4,7.8344536,7.6914454,0,2,0,-9,4,0,4,-34.272884,0,0,0,34,1,5,3,-9,-9,2019,2,1,10,1,35,40,15,1,0,3,0,6.5334268,6.5334268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,54.099998,59.110001,5,4,2,0,0,5,3,0,816.75,224842.09,0,0,1898.519 -8946,11021,20090,-9,20087,20089,3,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.8936,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,5,3,0,816.75,224842.09,0,0,1898.519 -8947,11022,20091,-9,-9,-9,1,1,0,91,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-923.19086,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,2.1611021,0,43.229458,0,0,24.539486,0,1,1,0,5.7241702,0,0,0,39.91,55.68,-9,-9,6,1,1,0,0,10,1,1,1570,194319.59,0,0,502.38251 -8948,11023,20092,20093,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,7.7005677,7.6158247,0,2,0,-9,15,0,3,-57.441963,0,0,0,46,2,4,1,3,3,2019,1,2,14,2,42,38,15,1,0,1,0,4.8206844,4.8206844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.380001,48.900002,39.580002,57.610001,3,2,3,0,1,5,4,1,1293,224320.59,0,0,2567.2241 -8948,11023,20093,20092,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,8.2460165,8.1964159,0,2,0,-9,24,0,-3,37.937931,0,0,0,49,2,3,1,3,3,2019,1,1,10,1,23,23,15,1,0,1,0,21.711622,21.711622,0,0,0,0,0,0,0,0,1,1,0,1.5583345,0,0,0,39.580002,57.610001,37.380001,48.900002,5,2,3,0,0,5,4,1,1293,224320.59,0,0,2567.2241 -8948,11024,20094,-9,20093,20092,4,1,0,18,2,0,1,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-814.61835,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,32,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5.4499998,59.849998,-9,-9,1,2,3,1,1,5,4,1,1640,-100089.18,0,0,-1362.6034 -8949,11025,20095,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-948.30884,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,6.2952633,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,7,1,0,208,-88117.617,0,0,964.24396 -8950,11026,20096,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1009.4124,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.370001,36.900002,-9,-9,4,1,1,0,0,6,1,0,359,-51912.395,0,0,768.5351 -8951,11027,20097,20098,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,6.6623464,6.6849284,1,0,-9,45,0,7,-100.4229,0,0,0,60,2,4,3,3,3,2019,4,2,21,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.0891597,6.5361848,11.522237,3,33.82,45.18,30.77,64.339996,6,1,1,0,0,6,2,1,360,635838.5,0,0,2943.1724 -8951,11027,20098,20097,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,4.9082222,6.5172215,5.8590064,1,0,-9,45,0,-7,-113.17723,0,0,0,67,3,3,3,3,2,2019,4,1,16,4,0,22,15,4,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.8166155,6.1590137,7.6638374,3,30.77,64.339996,33.82,45.18,6,1,1,0,0,6,2,1,360,635838.5,0,0,2943.1724 -8952,11028,20099,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,4,7.1635237,7.7566099,7.4057732,3,0,0,0,-9,0,-1026.7961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,25,30,15,1,0,-9,0,8.2554903,8.2554903,0,0,0,0,0,0,0,0,1,1,0,0,7.215642,0,0,43.880001,57.52,-9,-9,3,1,1,0,0,2,4,1,549,-4035.3486,0,0,1803.4468 -8953,11029,20100,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,2,7.3413372,7.224957,0,3,0,0,0,-9,0,-1073.0267,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,21,32,15,1,0,-9,0,7.3599715,7.3599715,0,0,0,0,0,0,0,14.5,0,0,0,0,0,18.70779,3,44.349998,40.810001,-9,-9,5,1,1,0,0,13,3,1,785,16545.998,0,0,381.44949 -8954,11030,20101,-9,-9,-9,1,1,0,77,2,0,0,0,1,-9,4,3,0,0,3,0,7.3442197,7.6059709,3,0,-9,0,-9,0,-1043.8262,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9976327,7.6051812,0,0,55.959999,49.93,-9,-9,7,1,1,0,0,12,3,1,1380,545673,0,0,920.23053 -8955,11031,20102,20103,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,0,4,8.5932217,8.626483,0,2,0,-9,9,0,10,-116.35873,0,0,0,26,2,3,1,2,1,2019,1,2,6,0,35,72,15,1,0,1,0,18.287226,18.287226,0,0,0,0,0,0,0,0,1,1,0,4.8980656,0,0,0,57.16,56.150002,46.080002,57.200001,6,1,1,0,0,6,4,1,901.75,472705.03,0,0,3458.9712 -8955,11031,20103,20102,-9,-9,2,1,0,26,1,1,2,0,2,-9,2,1,0,0,3,7.941083,8.0058985,0,2,0,-9,9,0,-10,105.11237,0,1,1,36,2,4,1,-9,-9,2019,1,1,10,0,39,36,15,1,0,1,0,10.356751,10.356751,0,0,0,0,0,0,0,0,1,1,0,6.6501245,0,0,0,46.080002,57.200001,57.16,56.150002,3,3,4,0,0,6,4,1,901.75,472705.03,0,0,3458.9712 -8955,11031,20104,-9,20103,20102,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.2933,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,6,4,1,901.75,472705.03,0,0,3458.9712 -8955,11031,20105,-9,20103,20102,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.3601,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,6,4,1,901.75,472705.03,0,0,3458.9712 -8956,11032,20106,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,4,0,7.2200255,6.7682796,3,0,0,0,-9,0,-1122.4994,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.7081838,7.0448256,0,3,54.790001,55.860001,-9,-9,2,1,1,0,0,6,2,1,1059,172098.73,0,0,1831.1823 -8956,11033,20107,-9,-9,20106,2,1,1,38,2,0,0,0,3,-9,2,1,0,0,4,8.1661282,8.5920238,0,3,0,0,0,-9,0,-1129.4059,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,1,8,42,15,1,0,-9,1,73.014046,73.014046,0,0,0,0,0,0,0,0,1,1,0,1.7759975,0,0,0,51,56,-9,-9,6,1,1,0,0,6,4,1,419,156935.44,0,0,772.4707 -8956,11034,20108,-9,-9,20106,3,1,1,33,2,0,0,0,3,-9,2,1,0,0,4,8.3022366,8.0561638,0,3,0,0,0,-9,0,-971.39362,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,40,42,15,1,0,-9,1,8.5497799,8.5497799,0,0,0,0,0,0,0,0,1,1,0,1.7226831,0,0,0,50,57,-9,-9,5,1,1,0,0,6,4,1,341,-229838.25,0,0,2746.8962 -8957,11035,20109,-9,-9,-9,1,1,0,22,2,0,0,1,2,0,7,2,0,0,4,0,5.777113,5.9410777,3,0,0,0,-9,0,-950.21283,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9192948,0,0,0,31.6,59.529999,-9,-9,5,1,1,0,0,5,2,0,783,-49182.824,0,0,68.202988 -8958,11036,20110,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.6332808,6.8045998,3,0,-9,0,1,0,-960.67334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8889451,0,0,36.029999,51.130001,-9,-9,6,1,1,0,0,11,2,1,260,-136269.41,0,0,956.13013 -8959,11037,20111,20113,-9,-9,1,1,1,41,1,1,2,0,1,-9,2,1,0,0,4,8.8524265,8.64674,0,2,0,-9,9,0,4,4.2804151,0,0,0,37,1,3,1,2,2,2019,1,2,8,0,45,48,15,1,0,1,0,16.067234,16.067234,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.77,49.150002,57.360001,36.98,4,2,3,0,0,2,5,1,620.75,408409.41,0,0,4651.8281 -8959,11037,20112,-9,20113,20111,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.23004,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,2,5,1,620.75,408409.41,0,0,4651.8281 -8959,11037,20113,20111,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,0,3,8.4759226,8.7337208,0,2,0,-9,9,0,-4,37.424107,0,0,1,41,1,4,1,1,1,2019,1,1,7,0,42,22,15,1,0,1,0,14.202762,14.202762,0,0,0,0,0,0,0,0,1,1,0,2.335784,0,0,0,57.360001,36.98,39.77,49.150002,6,2,3,0,0,2,5,1,620.75,408409.41,0,0,4651.8281 -8959,11037,20114,-9,20113,20111,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1031.7181,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,2,5,1,620.75,408409.41,0,0,4651.8281 -8960,11038,20115,20116,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,3,0,6.6350393,6.6289296,1,0,-9,9,0,1,91.200508,0,0,0,71,3,2,3,3,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.8974643,6.5210061,12.095751,1,53.41,34.52,37.02,37.369999,6,1,1,0,0,13,2,1,940,617604.5,0,0,2605.6782 -8960,11038,20116,20115,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,1,2,0,5.5487862,5.3627048,1,0,-9,9,0,-1,-122.5872,0,0,0,72,2,3,3,3,3,2019,4,1,18,7,0,0,15,4,1,4,0,0,0,1,0,5.738781,0,0,0,0,0,1,1,0,0,5.5128326,0,0,37.02,37.369999,53.41,34.52,5,1,1,0,0,13,2,1,940,617604.5,0,0,2605.6782 -8961,11039,20117,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,1,1,0,0,4,8.1096134,8.2183123,0,3,0,0,0,-9,0,-1022.2581,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,36,30,15,1,0,-9,0,12.267681,12.267681,0,0,0,0,0,0,0,0,0,0,0,1.7516966,0,0,0,42.950001,61.240002,-9,-9,6,1,1,0,0,5,4,0,504,-133349.75,0,0,1628.0575 -8962,11040,20118,20119,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,8.8485794,8.8004303,0,1,0,-9,10,0,-11,-40.448483,0,0,0,62,2,4,1,2,2,2019,1,2,11,4,38,38,15,1,1,1,0,20.415823,20.415823,0,0,0,0,0,0,0,0,0,0,0,4.6030145,0,0,0,54.23,25.51,58.869999,51.290001,5,1,1,0,0,4,5,1,1122.5,1433219.8,0,0,5510.4702 -8962,11040,20119,20118,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,8.374218,8.2262526,0,1,0,-9,10,0,11,19.64389,0,0,0,51,2,2,1,2,2,2019,1,1,8,0,24,24,15,1,0,1,0,24.868521,24.868521,0,0,0,0,0,0,0,0,0,0,0,5.3632345,0,0,3,58.869999,51.290001,54.23,25.51,6,1,1,0,0,4,5,1,1122.5,1433219.8,0,0,5510.4702 -8963,11041,20120,20121,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,1,0,7.1830559,7.1129336,1,0,-9,11,0,-3,28.291128,0,0,0,79,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,26.322895,0,0,0,0,0,1,1,0,4.1055493,7.087698,0,0,58.900002,13.94,57.330002,32.200001,6,1,1,0,0,4,2,1,441.5,693467.38,0,0,2968.3616 -8963,11041,20121,20120,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,2,0,6.4285855,6.5396795,1,0,-9,11,0,3,-2.2110991,0,0,0,76,3,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.1914349,6.2279196,30.427206,1,57.330002,32.200001,58.900002,13.94,6,1,1,0,0,4,2,1,441.5,693467.38,0,0,2968.3616 -8964,11042,20122,20125,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,1,1,-9,-1,-51.660816,0,1,1,25,2,3,1,-9,-9,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.330002,55.93,53.59,49.639999,6,1,1,0,0,5,3,0,1827.5,-44425.156,0,0,1667.7417 -8964,11042,20123,-9,20122,20125,2,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.3855,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,3,0,1827.5,-44425.156,0,0,1667.7417 -8964,11042,20124,-9,20122,20125,3,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.56982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,0,1827.5,-44425.156,0,0,1667.7417 -8964,11042,20125,20122,-9,-9,4,1,1,25,1,1,2,0,2,-9,2,1,0,0,3,8.2210569,8.188756,0,2,0,-9,1,-9,1,12.734682,-9,1,0,24,2,3,3,-9,-9,2019,2,1,9,0,78,0,15,1,0,3,0,7.1874127,7.1874127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.639999,46.330002,55.93,7,1,1,0,0,5,3,0,1827.5,-44425.156,0,0,1667.7417 -8965,11043,20126,20127,-9,-9,1,1,0,89,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,7,82.552673,0,0,0,82,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,46.798481,0,0,0,0,0,1,1,0,0,0,0,0,51.52,38.290001,61.290001,38.139999,6,1,1,0,0,9,2,1,5606.5,156931.14,0,0,1147.8623 -8965,11043,20127,20126,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,3,0,4.863091,5.0556331,1,0,-9,7,0,-7,-69.446304,0,0,0,89,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4777746,4.9167967,0,0,61.290001,38.139999,51.52,38.290001,5,1,1,0,1,9,2,1,5606.5,156931.14,0,0,1147.8623 -8966,11044,20128,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,6.4568658,6.6498456,3,0,0,0,-9,0,-917.94299,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.822278,5.8944101,0,0,49.349998,48.91,-9,-9,6,1,1,0,0,2,2,1,887,207330.41,0,0,-720.7879 -8967,11045,20129,-9,-9,-9,1,1,1,27,2,0,0,0,2,1,2,1,0,0,2,7.7639537,7.5853066,0,3,0,0,0,-9,0,-1080.3254,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,24,0,15,1,0,-9,0,10.98805,10.98805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.279999,52.09,-9,-9,5,1,1,0,0,12,3,0,442,0,0,0,670.87274 -8968,11046,20130,-9,20133,20131,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.6826,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,800.75,720671.19,0,0,4006.7739 -8968,11046,20131,20133,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.8999043,8.4360847,0,2,0,-9,19,0,-3,-15.510575,0,0,0,53,2,4,1,2,3,2019,1,2,7,1,43,40,15,1,0,1,0,16.062212,16.062212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.299999,55.599998,47.490002,59.099998,6,1,1,0,0,2,4,1,800.75,720671.19,0,0,4006.7739 -8968,11046,20132,-9,20133,20131,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.84668,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,-9,-9,5,1,1,0,0,2,4,1,800.75,720671.19,0,0,4006.7739 -8968,11046,20133,20131,-9,-9,2,1,0,53,1,0,2,0,2,-9,2,1,0,0,4,8.4495106,8.3557177,0,2,0,-9,20,0,3,-12.171033,0,0,0,50,2,4,1,2,3,2019,1,1,11,0,30,28,15,1,0,1,0,17.595978,17.595978,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.490002,59.099998,55.299999,55.599998,6,1,1,0,0,2,4,1,800.75,720671.19,0,0,4006.7739 -8969,11047,20134,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,4,9.0037203,8.9088707,0,3,0,0,0,-9,0,-910.46472,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,0,15,1,0,-9,0,25.748266,25.748266,0,0,0,0,0,0,0,0,1,1,0,.6554237,0,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,8,5,1,62,78128.289,0,0,2794.0513 -8970,11048,20135,20136,-9,-9,1,1,0,52,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,1,1,-9,-4,0,0,0,0,56,3,2,3,3,-9,2019,4,2,20,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.290001,19.42,32.07,50.389999,1,1,1,0,0,6,1,0,456.5,0,0,0,2189.1089 -8970,11048,20136,20135,-9,-9,2,1,1,56,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,1,1,-9,4,0,-9,0,0,52,3,1,3,-9,-9,2019,4,1,24,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.68604,1,32.07,50.389999,26.290001,19.42,3,1,1,0,0,6,1,0,456.5,0,0,0,2189.1089 -8971,11049,20137,20138,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,8.4692278,8.3744154,0,1,0,-9,1,-9,0,-39.406807,-9,0,0,50,1,3,1,-9,-9,2019,1,1,9,1,37,0,15,1,0,1,0,13.967375,13.967375,0,0,0,0,0,0,0,0,0,0,0,.21199286,0,0,0,53,55,44.349998,38.91,6,1,1,0,0,13,5,1,238,1845200.5,0,0,5641.0659 -8971,11049,20138,20137,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,9.0012255,9.1739016,0,1,0,1,1,-9,0,127.04144,0,0,0,50,1,4,1,3,2,2019,1,2,19,7,44,55,15,1,1,1,0,24.519381,24.519381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.349998,38.91,53,55,6,1,1,0,0,13,5,1,238,1845200.5,0,0,5641.0659 -8972,11050,20139,-9,20140,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1090.0402,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,6,1,0,587.5,40793.305,0,0,1629.9409 -8972,11050,20140,-9,-9,-9,1,1,0,30,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,-9,0,-9,0,-1003.176,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.07,29.51,-9,-9,7,1,1,0,0,6,1,0,587.5,40793.305,0,0,1629.9409 -8973,11051,20141,20142,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,0,3,7.9899936,8.1430416,0,1,0,-9,17,-9,3,41.405403,-9,0,0,47,3,4,1,-9,-9,2019,1,2,8,0,41,0,15,1,0,1,0,9.3968973,9.3968973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,50,54,6,2,3,0,0,6,4,1,861.5,185742,0,0,1899.7495 -8973,11051,20142,20141,-9,-9,2,1,0,47,1,0,0,0,3,-9,2,1,0,0,4,6.9236116,6.9446635,0,1,0,-9,17,-9,-3,50.519497,-9,0,0,50,3,3,1,-9,-9,2019,1,1,10,1,18,0,15,1,0,1,0,5.529882,5.529882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,62.66,52.400002,6,2,3,0,1,6,4,1,861.5,185742,0,0,1899.7495 -8973,11052,20143,-9,20142,20141,3,1,1,19,2,0,0,1,2,-9,7,2,0,0,5,6.7472248,7.0072269,0,3,0,-9,0,-9,0,-958.84839,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,19,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0454295,0,0,0,62.389999,56.709999,-9,-9,6,2,3,0,0,6,2,1,3206,41663.199,0,0,813.87952 -8974,11053,20144,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,7.0156441,6.6548963,3,0,0,0,-9,0,-1025.7145,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.82482,0,0,46.310001,51.529999,-9,-9,5,1,1,0,0,13,2,1,489,-46088.859,0,0,1020.8683 -8975,11054,20145,20146,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,4,0,6.9092207,6.802772,1,0,-9,32,0,8,55.656731,0,0,0,73,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8739815,0,0,57.16,56.150002,58.389999,36.66,7,1,1,0,0,10,2,0,2283,654082.31,0,0,1482.2174 -8975,11054,20146,20145,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,32,0,-8,-157.71088,0,0,0,81,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.389999,36.66,57.16,56.150002,6,1,1,0,0,10,2,0,2283,654082.31,0,0,1482.2174 -8976,11055,20147,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.5926151,8.7201824,0,3,0,0,0,-9,0,-961.48383,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,39,39,15,1,0,-9,0,17.485813,17.485813,0,0,0,0,0,0,0,0,0,0,0,2.632246,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,11,5,1,205,98686.227,0,0,2369.29 -8977,11056,20148,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,1,1,0,0,3,8.4306297,8.2754688,0,3,0,-9,0,0,0,-1021.8801,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,40,40,15,1,0,-9,0,11.455005,11.455005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,56.66,-9,-9,2,1,1,0,0,8,4,1,2041,39086.051,0,0,1440.0872 -8978,11057,20149,20150,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.6321306,8.3987942,0,1,0,-9,35,0,1,94.128983,0,0,0,53,3,5,3,-9,-9,2019,2,2,12,0,35,35,15,1,0,3,0,16.058292,16.058292,0,0,0,0,0,0,0,0,0,0,0,4.1705203,0,0,0,46.790001,41.889999,51.380001,41.349998,2,1,1,0,0,6,4,1,726,550427.75,0,0,2458.6499 -8978,11057,20150,20149,-9,-9,2,1,1,53,1,0,0,0,3,-9,3,3,0,0,5,0,0,0,1,0,-9,35,0,-1,-36.165955,0,0,0,54,2,3,1,2,2,2019,3,1,10,0,0,30,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.380001,41.349998,46.790001,41.889999,6,1,1,1,0,6,4,1,726,550427.75,0,0,2458.6499 -8979,11058,20151,20152,-9,-9,2,1,0,41,1,0,0,0,1,-9,2,1,0,0,4,7.9599247,8.0307884,0,1,0,-9,4,0,-5,154.91615,0,0,1,46,2,3,1,-9,-9,2019,1,1,10,0,29,51,15,1,0,1,0,11.891889,11.891889,0,0,0,0,0,0,0,0,0,0,0,1.1040777,0,0,0,35.91,63.189999,52,54.509998,6,1,1,0,0,5,5,1,734.5,499873.44,0,0,2713.9233 -8979,11058,20152,20151,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,3,8.6973171,8.5333319,0,1,0,-9,4,0,5,-11.100915,0,0,0,41,1,4,1,2,2,2019,1,2,10,0,36,37,15,1,0,1,0,18.088947,18.088947,0,0,0,0,0,0,0,7,0,0,0,0,0,6.8468237,3,52,54.509998,35.91,63.189999,6,1,1,0,0,5,5,1,734.5,499873.44,0,0,2713.9233 -8980,11059,20153,-9,20155,20156,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.98169,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,3,1,796.25,184993.27,0,0,2598.3381 -8980,11059,20154,-9,20155,20156,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.42987,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,796.25,184993.27,0,0,2598.3381 -8980,11059,20155,20156,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,3,7.6559839,7.3750796,0,2,0,-9,26,0,-3,-25.513269,0,0,0,50,3,2,1,2,2,2019,1,2,10,0,26,20,15,1,0,1,0,7.7000923,7.7000923,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.460432,3,51.759998,47.75,52.240002,50.75,5,1,1,0,0,13,3,1,796.25,184993.27,0,0,2598.3381 -8980,11059,20156,20155,-9,-9,2,1,1,50,1,0,2,0,3,-9,2,1,0,0,2,7.7702055,7.7234869,0,2,0,-9,26,0,3,14.181643,0,0,0,47,2,3,1,3,3,2019,1,1,9,0,50,60,15,1,0,1,0,5.5198736,5.5198736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,51.759998,47.75,5,1,1,0,0,13,3,1,796.25,184993.27,0,0,2598.3381 -8981,11060,20157,-9,-9,-9,1,1,0,40,3,0,3,0,3,-9,2,1,0,0,4,6.6982975,6.8683324,0,4,0,0,0,-9,0,-977.22888,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,4,0,16,16,15,1,0,-9,0,5.9450231,5.9450231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.059998,41.580002,-9,-9,2,2,3,0,0,4,2,0,573.66669,108250.66,0,0,1421.198 -8981,11060,20158,-9,20157,-9,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-909.87238,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,4,2,0,573.66669,108250.66,0,0,1421.198 -8981,11060,20159,-9,20157,-9,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-902.99371,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,2,0,573.66669,108250.66,0,0,1421.198 -8981,11061,20160,-9,20157,-9,2,1,1,20,2,0,3,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1083.1873,1,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1350319,0,0,0,43.880001,30.48,-9,-9,1,2,3,0,0,4,1,0,51,0,0,0,-80.130959 -8981,11062,20161,-9,20157,-9,3,1,0,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1019.4124,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.459999,41.849998,-9,-9,5,2,3,0,0,4,2,0,570,-34734.184,0,0,0 -8982,11063,20162,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,1,3,0,4.1512899,4.3066621,3,0,0,0,-9,0,-1083.0159,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8846778,4.2145963,0,0,65,29.299999,-9,-9,6,1,1,0,0,10,2,0,95,714564.31,0,0,590.74884 -8983,11064,20163,20164,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,0,3,8.178793,8.0776091,0,1,0,-9,2,0,-1,75.377228,0,0,0,52,2,4,1,3,3,2019,1,1,11,0,36,36,15,1,0,1,0,12.082295,12.082295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.470001,50.220001,62.490002,55.09,6,1,1,0,0,13,4,1,351.5,80265.266,0,0,3904.0042 -8983,11064,20164,20163,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,0,4,7.3517103,7.3880315,0,1,0,-9,2,0,1,4.3411756,0,0,0,51,3,3,1,2,2,2019,1,2,11,0,36,0,15,1,0,1,0,7.119112,7.119112,0,0,0,0,0,0,0,0,0,0,0,7.6420665,0,0,0,62.490002,55.09,58.470001,50.220001,6,1,1,0,0,13,4,1,351.5,80265.266,0,0,3904.0042 -8983,11065,20165,-9,20163,20164,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.0991182,8.1852293,0,3,0,0,0,-9,0,-1054.4623,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,46,36,15,1,0,-9,1,8.4365005,8.4365005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.650002,60.470001,-9,-9,6,1,1,0,0,13,4,1,666,-130932.78,0,0,990.56787 -8984,11066,20166,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,7.714901,7.736352,3,0,0,0,-9,0,-962.05786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6012926,7.3314147,0,0,51,46,-9,-9,6,1,1,0,0,4,3,1,1374,765897.19,0,0,1034.9534 -8985,11067,20167,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,2,1,0,0,3,7.8322773,7.7394233,0,3,0,0,0,-9,0,-1102.4352,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,12,16,15,1,0,-9,0,22.966515,22.966515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.440001,53.259998,-9,-9,4,1,1,0,0,10,3,1,231,736533.75,0,0,85.536613 -8986,11068,20168,20169,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,5,0,0,0,0,65,2,3,3,3,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.26859,1,53,47,51,47,5,1,1,0,0,7,1,1,947,256776.16,0,0,947.99951 -8986,11068,20169,20168,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,46,0,-5,0,0,0,0,70,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,53,47,5,1,1,0,0,7,1,1,947,256776.16,0,0,947.99951 -8987,11069,20170,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-976.94586,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.66,57.209999,-9,-9,5,1,1,0,0,8,1,1,275,-14601.466,0,0,0 -8987,11070,20171,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,4,9.0330372,9.2116938,0,3,0,0,0,-9,0,-1045.9315,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,38,15,1,0,-9,0,24.215158,24.215158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,8,5,1,250,633802.56,0,0,2065.6189 -8988,11071,20172,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,0,3,0,6.391201,6.3013701,1,0,1,1,-9,9,-86.288612,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.604907,6.4733963,13.577923,1,60.799999,32.650002,26.700001,39.240002,4,1,1,0,0,10,4,1,1946,685359.13,0,0,2138.3728 -8988,11072,20173,-9,-9,-9,2,1,1,60,2,0,0,0,3,-9,3,3,0,1,2,0,8.2294512,8.7239285,1,0,1,1,-9,0,16.231012,0,0,0,-9,-9,-9,-9,3,3,2019,4,1,29,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5921938,8.5113869,0,0,26.700001,39.240002,60.799999,32.650002,4,1,1,1,0,10,4,1,273,1514706.1,0,0,2763.8325 -8989,11073,20174,-9,-9,-9,1,1,1,99,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1087.0071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.786325,0,0,0,5.0539179,0,0,1,1,0,0,0,0,0,54.869999,37.880001,-9,-9,6,1,1,0,0,13,1,0,316,46111.629,0,0,1680.2207 -8990,11074,20175,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,2,1,0,0,4,7.8675017,7.9739957,0,3,0,0,0,-9,0,-984.64532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,39,40,15,1,0,-9,0,7.8621202,7.8621202,0,0,0,0,0,0,0,0,0,0,0,3.0452831,0,0,0,55.790001,52.619999,-9,-9,4,1,1,0,0,2,4,1,618,-90666.664,0,0,1314.0502 -8991,11075,20176,20177,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,2,8.5341196,8.6241455,0,1,0,-9,19,0,6,22.982347,0,0,0,50,2,2,1,2,2,2019,1,1,12,0,37,36,15,1,0,1,0,11.625185,11.625185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.610001,51.040001,58.32,36.990002,5,4,5,0,0,2,5,1,475,2140004.8,0,0,2692.3472 -8991,11075,20177,20176,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,7.8915768,7.9317236,0,1,0,-9,19,0,-6,64.707489,0,0,0,56,1,2,1,3,3,2019,1,2,10,1,37,35,15,1,0,1,0,9.4778538,9.4778538,0,0,0,0,0,0,0,0,0,0,0,6.2566614,0,0,0,58.32,36.990002,54.610001,51.040001,5,1,1,0,0,2,5,1,475,2140004.8,0,0,2692.3472 -8992,11076,20178,20179,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,0,5,6.3986664,6.5666852,0,1,0,-9,4,0,-4,-11.270987,0,0,0,62,2,4,1,-9,-9,2019,1,1,9,0,75,10,15,1,0,1,0,.95503789,.95503789,0,0,0,0,0,0,0,0,0,0,0,5.2763457,0,0,0,43.240002,59.41,54.200001,57.490002,6,1,1,0,0,2,4,1,820,840906,0,0,3043.272 -8992,11076,20179,20178,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,0,4,8.6015778,8.8742199,0,1,0,-9,19,0,4,59.736168,0,0,0,58,1,5,1,3,3,2019,1,2,11,0,46,45,15,1,0,1,0,15.328428,15.328428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,43.240002,59.41,6,1,1,0,0,2,4,1,820,840906,0,0,3043.272 -8993,11077,20180,-9,20181,-9,3,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1073.9767,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,1,0,401.25,28111.352,0,0,1489.7649 -8993,11077,20181,-9,-9,-9,1,1,0,29,2,2,3,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.1625,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.110001,54.040001,-9,-9,5,1,1,0,0,13,1,0,401.25,28111.352,0,0,1489.7649 -8993,11077,20182,-9,20181,-9,4,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-906.69861,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,1,0,401.25,28111.352,0,0,1489.7649 -8993,11077,20183,-9,20181,-9,2,1,0,5,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-879.06177,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,401.25,28111.352,0,0,1489.7649 -8994,11078,20184,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,0,5,8.4262905,8.1831026,0,3,0,0,0,-9,0,-1031.8846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,44,39,15,1,0,-9,0,11.388885,11.388885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,7,3,4,0,0,5,5,1,391,202094,0,0,1396.186 -8994,11079,20185,-9,20184,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,7.7404351,7.9233446,0,3,0,0,0,-9,0,-977.22345,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,40,15,1,0,-9,1,7.807518,7.807518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,5,3,4,0,1,5,3,1,559,128732.08,0,0,844.85608 -8994,11080,20186,-9,20184,-9,3,1,1,19,2,0,0,0,2,-9,11,3,0,0,5,7.9711208,7.4569144,0,3,0,0,0,-9,0,-996.99158,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,4,39,39,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1642925,0,0,0,41.07,60.93,-9,-9,4,3,4,0,0,5,3,1,1848,-26480.42,0,0,667.42548 -8995,11081,20187,-9,20189,20190,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-880.15875,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,525,205582.13,0,0,2914.0374 -8995,11081,20188,-9,20189,20190,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.5829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,3,1,525,205582.13,0,0,2914.0374 -8995,11081,20189,20190,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,7.8019533,8.1545401,0,2,0,-9,8,0,0,69.108543,0,0,1,46,2,4,1,2,2,2019,1,2,0,0,33,60,15,1,0,1,0,9.3709917,9.3709917,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,34.330002,48.849998,6,1,1,0,0,2,3,1,525,205582.13,0,0,2914.0374 -8995,11081,20190,20189,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,7.6874123,7.6214437,0,2,0,-9,8,0,9,-51.212032,0,0,0,37,1,4,1,-9,-9,2019,1,1,23,11,30,16,15,1,1,1,0,6.750711,6.750711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.330002,48.849998,48,56,3,1,1,0,0,2,3,1,525,205582.13,0,0,2914.0374 -8996,11082,20191,20192,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,5,4.1349087,4.0055695,0,2,0,-9,23,0,1,-22.131657,0,0,1,41,2,5,1,2,2,2019,1,2,6,0,20,30,15,1,0,1,0,.27900362,.27900362,0,0,0,0,0,0,0,14.5,1,1,0,8.0069532,0,18.357195,3,30.219999,61.23,58.16,55.869999,6,4,2,0,0,8,1,1,254,-54349.121,0,0,7222.1143 -8996,11082,20192,20191,-9,-9,2,1,1,41,1,0,2,0,2,-9,1,1,0,1,5,0,0,0,2,0,-9,23,0,-1,-45.627064,0,0,0,42,2,5,1,2,1,2019,1,1,4,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,8.6064854,0,117.49266,3,58.16,55.869999,30.219999,61.23,7,3,4,0,0,8,1,1,254,-54349.121,0,0,7222.1143 -8996,11082,20193,-9,20191,20192,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.3456,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,1,1,254,-54349.121,0,0,7222.1143 -8996,11083,20194,-9,20191,20192,3,1,1,18,2,0,2,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-967.72089,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,8,1,1,731,0,0,0,1136.0109 -8997,11084,20195,-9,-9,-9,1,1,0,50,3,0,0,0,3,-9,2,1,0,0,3,7.7051406,7.8817792,0,3,0,0,0,-9,0,-1094.8461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,55,50,15,1,0,-9,0,4.9617605,4.9617605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.080002,52.099998,-9,-9,6,2,3,0,0,6,3,1,171,295734.78,0,0,2768.4124 -8997,11085,20196,-9,20195,-9,2,1,0,31,2,0,0,0,2,-9,2,1,0,0,4,8.2078886,8.0498734,0,3,0,0,0,-9,0,-1090.9899,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,37,40,15,1,0,-9,1,11.720213,11.720213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,5,2,3,0,0,6,4,1,298,193632.16,0,0,1790.1873 -8997,11086,20197,-9,20195,-9,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.9826851,8.2368908,0,3,0,0,0,-9,0,-1071.7928,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,48,40,15,1,0,-9,1,6.3908038,6.3908038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,4,1,1798,103187.75,0,0,1323.6262 -8997,11087,20198,-9,20195,-9,4,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.5591769,7.8378935,0,3,0,0,0,-9,0,-968.15033,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,40,48,15,1,0,-9,1,6.9240141,6.9240141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,3,1,312,-130111.55,0,0,912.44513 -8998,11088,20199,20203,-9,-9,2,1,1,33,1,2,3,0,1,-9,2,1,0,0,4,9.0984087,9.5733891,0,2,0,-9,3,0,1,9.6382694,0,0,0,32,1,4,1,-9,-9,2019,1,1,14,2,42,40,15,1,0,1,0,24.343615,24.343615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,39.650002,46.5,58.259998,6,1,1,0,0,9,4,1,1363.6,36759.367,0,0,3686.7063 -8998,11088,20200,-9,20203,20199,4,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.1839,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,4,1,1363.6,36759.367,0,0,3686.7063 -8998,11088,20201,-9,20203,20199,3,1,0,4,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.82318,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,1363.6,36759.367,0,0,3686.7063 -8998,11088,20202,-9,20203,20199,5,1,0,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1037.0664,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,4,1,1363.6,36759.367,0,0,3686.7063 -8998,11088,20203,20199,-9,-9,1,1,0,32,1,2,3,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,3,0,-1,-54.680508,0,0,1,33,1,4,1,2,2,2019,1,2,7,0,0,22,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.35446116,0,0,0,46.5,58.259998,39.73,39.650002,6,1,1,0,0,9,4,1,1363.6,36759.367,0,0,3686.7063 -8999,11089,20204,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,2,1,0,0,3,0,7.1875901,7.324317,3,0,0,0,-9,0,-1011.5647,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1277485,7.1647606,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,2,3,1,92,26483.678,0,0,1011.1817 -9000,11090,20205,20206,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,0,4,7.7633047,7.9896474,0,1,0,-9,10,0,2,32.954849,0,0,0,47,2,4,1,-9,-9,2019,1,1,9,1,40,37,15,1,0,1,0,8.4593735,8.4593735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,52.82,53.970001,6,1,1,0,0,5,4,1,841,201325.73,0,0,2807.6597 -9000,11090,20206,20205,-9,-9,1,1,0,47,1,0,0,0,2,-9,1,1,0,0,4,7.9636564,7.8399944,0,1,0,-9,28,0,-2,52.41217,0,0,0,49,2,4,1,-9,-9,2019,1,2,12,0,32,32,15,1,0,1,0,13.08566,13.08566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,52,55,4,1,1,0,0,5,4,1,841,201325.73,0,0,2807.6597 -9000,11091,20207,-9,20206,20205,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.62047,7.6095018,0,3,0,0,0,-9,0,-901.19324,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,39,0,15,1,0,-9,1,7.0151439,7.0151439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,5,3,1,480,-9554.2695,0,0,1554.22 -9001,11092,20208,-9,-9,-9,1,1,0,43,2,0,3,0,3,-9,2,1,0,0,3,8.2240906,7.9392514,0,4,0,0,0,-9,0,-1014.1225,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,38,28,15,1,0,-9,0,8.7007351,8.7007351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.220001,56.110001,-9,-9,6,3,4,0,0,8,3,0,911,-14636.614,0,0,3405.3308 -9001,11093,20209,-9,20208,-9,2,1,1,19,2,0,3,0,3,-9,2,1,0,0,5,7.2036266,7.222569,0,3,0,0,0,-9,0,-1046.5251,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,1,26,0,15,1,0,-9,1,6.8080831,6.8080831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,2,3,0,0,8,3,0,870,-46717.949,0,0,1487.6747 -9002,11094,20210,20211,-9,-9,2,1,0,39,1,0,3,0,2,-9,6,3,0,0,4,0,6.7272825,6.8586817,2,0,-9,8,0,0,20.975946,0,0,1,39,2,4,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,0,1,6.616601,0,16.582872,3,38.529999,62.209999,46.919998,44.25,6,1,1,0,0,13,2,0,1500,12815.286,0,0,1831.3857 -9002,11094,20211,20210,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,1,4,0,0,0,2,0,-9,8,0,0,11.010518,0,0,0,39,2,4,3,2,2,2019,2,2,14,2,40,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.919998,44.25,38.529999,62.209999,4,1,1,0,0,13,2,0,1500,12815.286,0,0,1831.3857 -9002,11094,20212,-9,20210,20211,6,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1004.595,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,1,1,0,0,13,2,0,1500,12815.286,0,0,1831.3857 -9002,11094,20213,-9,20210,20211,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1077.3055,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,61,-9,-9,5,1,1,0,0,13,2,0,1500,12815.286,0,0,1831.3857 -9002,11094,20214,-9,20210,20211,5,1,0,14,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-953.79437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38,44,-9,-9,4,1,1,0,0,13,2,0,1500,12815.286,0,0,1831.3857 -9003,11095,20215,20216,-9,-9,2,1,0,70,1,0,0,0,2,-9,1,1,0,0,3,7.2732825,7.2400289,4.9253483,1,0,-9,18,0,8,-17.08238,0,0,0,62,2,3,1,3,2,2019,1,1,8,1,16,15,15,1,0,1,0,9.9838247,9.9838247,0,0,0,0,0,0,0,0,1,1,0,7.9386215,4.9552598,0,0,54.959999,53.169998,45.919998,47.599998,6,1,1,0,0,10,5,1,486.5,839440.13,0,0,4977.9258 -9003,11095,20216,20215,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.7523432,8.8184319,7.76507,1,0,-9,17,0,-8,-57.399403,0,0,0,70,2,3,1,3,3,2019,1,2,13,2,38,46,15,1,0,1,0,15.87353,15.87353,0,0,0,0,0,0,0,0,1,1,0,0,8.5257874,0,0,45.919998,47.599998,54.959999,53.169998,5,1,1,0,0,10,5,1,486.5,839440.13,0,0,4977.9258 -9003,11096,20217,-9,20215,20216,3,1,1,32,2,0,0,0,1,-9,2,1,0,0,4,7.5691094,7.6918521,0,3,0,0,0,-9,0,-999.16241,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,38,15,1,0,-9,1,9.9331036,9.9331036,0,0,0,0,0,0,0,0,1,1,0,4.6009531,0,0,0,55.34,54.259998,-9,-9,3,1,1,0,0,10,3,1,542,-156048.69,0,0,1100.2021 -9004,11097,20218,20219,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,5.7411551,6.0667648,1,0,-9,49,0,1,5.5487037,0,0,0,70,3,2,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,0,1,0,6.1408997,75.016876,1,61.099998,16.91,36.849998,36.130001,2,1,1,0,0,12,2,1,250,517027.25,0,0,2094.573 -9004,11097,20219,20218,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,1,2,0,6.5540328,6.4676099,1,0,-9,48,0,-1,79.800774,0,0,0,71,3,2,3,3,2,2019,4,1,14,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.3165197,0,0,36.849998,36.130001,61.099998,16.91,4,1,1,0,0,12,2,1,250,517027.25,0,0,2094.573 -9005,11098,20220,20221,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,0,2,7.8655033,7.4757376,0,1,0,-9,30,0,-5,79.57814,0,0,0,56,2,3,1,3,-9,2019,1,2,10,0,34,34,15,1,0,1,0,6.6424232,6.6424232,0,0,0,0,0,0,0,0,0,0,0,6.4269333,0,0,0,47.310001,39.470001,48.060001,51.060001,4,1,1,0,0,6,5,1,592,134080.91,0,0,3100.2568 -9005,11098,20221,20220,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.5134211,8.6410046,0,1,0,-9,30,0,5,-28.587368,0,0,0,51,3,2,1,3,3,2019,1,1,9,0,48,42,15,1,0,1,0,13.522983,13.522983,0,0,0,0,0,0,0,0,0,0,0,2.4062822,0,0,0,48.060001,51.060001,47.310001,39.470001,6,1,1,0,0,6,5,1,592,134080.91,0,0,3100.2568 -9006,11099,20222,20223,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.3314948,7.3481488,1,0,-9,10,0,2,-32.773869,0,0,0,68,1,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4064522,7.5946469,0,0,55.759998,52.639999,50.91,30.85,7,1,1,0,0,9,5,1,997,4043659.5,0,0,4598.7168 -9006,11099,20223,20222,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,2,7.6578889,8.7882996,8.3977575,1,0,-9,10,0,-2,.91484302,0,0,0,70,1,4,3,2,3,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9768345,8.3264036,0,0,50.91,30.85,55.759998,52.639999,5,1,1,0,0,9,5,1,997,4043659.5,0,0,4598.7168 -9007,11100,20224,20226,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.0691891,7.5177193,5.8508539,2,0,-9,3,0,-3,-81.766945,0,0,1,45,2,4,1,2,2,2019,1,2,6,0,20,20,15,1,0,1,0,7.2507424,7.2507424,0,0,0,0,0,0,0,0,1,1,0,6.1606412,0,0,0,41.34,56.619999,47.380001,57.75,6,1,1,0,0,2,3,0,827,-3978.2366,0,0,2097.137 -9007,11100,20225,-9,20224,20226,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.90979,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,827,-3978.2366,0,0,2097.137 -9007,11100,20226,20224,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.4556084,8.2990227,0,2,0,-9,3,0,3,58.44693,0,0,0,42,2,3,1,3,2,2019,1,1,19,8,37,43,15,1,1,1,0,11.701213,11.701213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.380001,57.75,41.34,56.619999,5,1,1,0,0,2,3,0,827,-3978.2366,0,0,2097.137 -9007,11100,20227,-9,20224,20226,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.3156,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,0,827,-3978.2366,0,0,2097.137 -9008,11101,20228,20229,-9,-9,2,1,0,73,1,0,0,0,2,-9,2,1,0,0,5,6.8562989,8.1333294,7.6839719,1,0,-9,44,0,0,-64.356255,0,0,0,73,1,3,3,2,2,2019,2,1,12,0,3,4,15,1,0,4,0,30.220001,30.220001,0,0,0,0,0,0,0,7,1,1,0,0,7.4533377,6.0595465,3,59.43,58.049999,60.599998,38.220001,7,1,1,0,0,9,5,1,437,1026533.5,0,0,5122.248 -9008,11101,20229,20228,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,8.7657595,8.5321465,1,0,-9,42,0,0,17.81809,0,0,0,73,2,5,1,2,3,2019,3,2,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.767118,8.5240774,9.2729788,3,60.599998,38.220001,59.43,58.049999,6,1,1,0,0,9,5,1,437,1026533.5,0,0,5122.248 -9009,11102,20230,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,5.416873,5.3568292,3,0,0,0,-9,0,-991.38855,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.4700361,5.4047475,0,0,59.639999,35.900002,-9,-9,6,1,1,0,0,9,2,1,1309,-15107.843,0,0,918.16919 -9010,11103,20231,20232,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,9.1594238,9.2811155,6.6798778,1,0,-9,7,0,2,-105.96838,-9,0,0,60,2,5,1,-9,-9,2019,1,1,10,1,50,0,15,1,0,1,0,17.667301,17.667301,0,0,0,0,0,0,0,0,0,0,0,0,6.876936,0,0,51,48,48.709999,61.529999,5,1,1,0,0,6,5,1,973,791274.25,0,0,4405.2642 -9010,11103,20232,20231,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,5,7.3061371,7.1635437,0,1,0,-9,7,0,-2,-116.33129,0,0,0,62,3,3,1,2,2,2019,1,2,12,2,22,25,15,1,0,1,0,7.1233063,7.1233063,0,0,0,0,0,0,0,0,0,0,0,3.8791363,0,0,0,48.709999,61.529999,51,48,6,1,1,0,0,6,5,1,973,791274.25,0,0,4405.2642 -9011,11104,20233,20234,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,4,8.7395315,9.0596991,0,1,0,-9,30,0,1,-13.108813,0,0,0,56,2,4,1,2,2,2019,1,2,12,1,43,40,15,1,0,1,0,15.880143,15.880143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.450001,50.439999,52,53,5,1,1,0,0,12,5,1,402,570947.19,0,0,4319.9263 -9011,11104,20234,20233,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.3221731,8.3791771,0,1,0,-9,5,0,-1,21.254761,-9,0,0,57,3,4,1,-9,-9,2019,1,1,10,1,39,0,15,1,0,1,0,14.017879,14.017879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,51.450001,50.439999,5,1,1,0,0,12,5,1,402,570947.19,0,0,4319.9263 -9011,11105,20235,-9,20234,20233,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,6.6711311,6.6550851,0,3,0,0,0,-9,0,-1027.5601,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,18,0,15,1,0,-9,1,5.3581653,5.3581653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,3,1,1,0,0,12,2,1,868,81987.633,0,0,-318.18677 -9012,11106,20236,20237,-9,-9,2,1,1,60,1,0,0,0,3,-9,4,3,0,0,4,0,7.6311631,7.5667515,1,0,-9,6,0,3,-123.67319,0,0,0,57,2,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8708682,7.4306517,0,0,55.84,55.330002,56.360001,40.299999,7,1,1,0,0,12,4,1,600,705076.75,0,0,3018.1038 -9012,11106,20237,20236,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.3612766,8.1061277,3.4605346,1,0,-9,6,0,-3,56.662876,0,0,0,60,3,4,3,3,3,2019,2,2,14,3,37,37,15,1,0,4,0,16.957155,16.957155,0,0,0,0,0,0,0,0,0,0,0,4.5888124,4.1205344,0,0,56.360001,40.299999,55.84,55.330002,2,1,1,0,0,12,4,1,600,705076.75,0,0,3018.1038 -9013,11107,20238,20239,-9,-9,2,1,0,46,1,0,0,0,3,-9,6,3,0,0,5,0,0,0,1,0,-9,7,0,-5,-8.1382093,0,0,0,51,2,4,1,-9,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.5725949,0,3.1722622,3,57.060001,57.759998,53,55,7,1,1,0,0,5,4,1,602,1051818.9,0,0,2375.4685 -9013,11107,20239,20238,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,8.3454809,8.6225605,0,1,0,-9,7,0,5,91.352577,-9,0,0,46,3,5,3,3,-9,2019,2,2,9,1,40,0,15,1,0,3,0,14.088902,14.088902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,57.060001,57.759998,6,1,1,0,0,5,4,1,602,1051818.9,0,0,2375.4685 -9013,11108,20240,-9,20238,20239,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.1727924,7.2607217,0,3,0,0,0,-9,0,-1056.4326,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,21,0,15,1,0,-9,1,6.6906009,6.6906009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,5,3,1,163,-38465.43,0,0,-292.43588 -9014,11109,20241,-9,20242,20243,1,1,1,33,3,0,0,0,1,-9,2,1,0,0,4,8.9906569,8.9222183,0,3,0,0,0,-9,0,-1030.5847,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,50,0,15,1,0,-9,1,17.760069,17.760069,0,0,0,0,0,0,0,0,1,1,0,3.0728471,0,0,0,49,57,-9,-9,5,2,3,0,0,7,5,1,149,327987.5,0,0,2643.0562 -9014,11110,20242,20243,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,10,0,5,186.92398,0,0,0,72,1,3,1,-9,-9,2019,3,3,23,8,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5130302,0,0,0,22.799999,35.580002,52,47,2,2,3,0,0,7,2,1,810.5,1012444.2,0,0,1554.4452 -9014,11110,20243,20242,-9,-9,3,1,1,72,1,0,0,0,1,-9,2,1,0,0,3,6.9222922,7.220418,0,1,0,-9,10,0,-5,8.6310453,0,0,0,77,2,1,3,-9,-9,2019,2,2,10,1,16,0,15,1,0,4,0,10.274452,10.274452,1,11.218318,6.0287867,0,0,0,92.890892,0,1,1,0,0,0,0,0,52,47,22.799999,35.580002,5,2,3,0,0,7,2,1,810.5,1012444.2,0,0,1554.4452 -9015,11111,20244,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,3,0,5.9601159,5.6991401,3,0,0,0,-9,0,-951.70233,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9475875,6.1728816,0,0,43.259998,44.860001,-9,-9,5,1,1,0,0,9,2,1,305,224450.22,0,0,77.180992 -9016,11112,20245,20246,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,5.990345,7.8672366,7.4547668,1,0,-9,8,0,1,-84.664406,0,0,0,67,2,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8011999,0,0,59.459999,46.990002,43.209999,47.68,6,1,1,0,0,2,3,1,272.5,1462235,0,0,3587.9624 -9016,11112,20246,20245,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.1738071,7.2009177,1,0,-9,8,0,-1,-67.584686,0,0,0,68,2,3,3,3,3,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0891714,0,0,43.209999,47.68,59.459999,46.990002,6,1,1,0,0,2,3,1,272.5,1462235,0,0,3587.9624 -9017,11113,20247,20248,-9,-9,2,1,1,64,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,37,0,2,-29.453259,0,0,0,62,2,3,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.419998,39.110001,41.82,57.720001,4,1,1,1,1,12,2,1,488.5,126565.31,0,0,1317.9576 -9017,11113,20248,20247,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.5441995,7.455564,0,1,0,-9,37,0,-2,82.652893,0,0,0,64,3,2,3,-9,-9,2019,2,2,16,4,25,30,15,1,1,3,0,9.794035,9.794035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,57.720001,44.419998,39.110001,3,1,1,0,1,12,2,1,488.5,126565.31,0,0,1317.9576 -9018,11114,20249,-9,20251,20250,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.6984,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,433.66666,279689.25,0,0,2068.4478 -9018,11114,20250,20251,-9,-9,2,1,1,30,1,1,1,0,1,-9,2,1,0,0,3,8.9823065,8.7204676,0,2,0,-9,5,0,1,-21.521229,0,0,0,29,1,4,3,-9,-9,2019,2,1,10,1,44,44,15,1,0,3,0,21.803179,21.803179,0,0,0,0,0,0,0,0,1,1,0,.78376895,0,0,0,52,54.509998,54.790001,55.860001,6,1,1,0,0,7,4,1,433.66666,279689.25,0,0,2068.4478 -9018,11114,20251,20250,-9,-9,1,1,0,29,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-1,-136.05013,0,1,1,30,1,3,1,1,1,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,52,54.509998,6,1,1,0,0,7,4,1,433.66666,279689.25,0,0,2068.4478 -9019,11115,20252,-9,20254,20253,5,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.06366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,1,310.66666,-54115.113,0,0,-60.388016 -9019,11115,20253,20254,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,31,0,10,0,0,0,0,47,2,3,3,3,2,2019,2,2,11,0,0,54,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,37.849998,50.75,41.509998,5,2,3,0,0,8,1,1,310.66666,-54115.113,0,0,-60.388016 -9019,11115,20254,20253,-9,-9,2,1,0,47,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,31,0,-10,0,0,0,0,57,2,3,1,3,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,41.509998,49.68,37.849998,4,2,3,0,0,8,1,1,310.66666,-54115.113,0,0,-60.388016 -9019,11116,20255,-9,20254,20253,3,1,0,27,2,0,1,0,1,-9,2,1,0,0,3,8.0412092,7.7977033,0,3,0,0,0,-9,0,-1003.1309,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,30,15,1,0,-9,1,7.3745556,7.3745556,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,-9,-9,5,2,3,0,0,8,3,1,1716,0,0,0,1423.4331 -9019,11117,20256,-9,20254,20253,4,1,1,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.8531,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,55.310001,-9,-9,5,2,3,0,0,8,1,1,772,33869.789,0,0,7.8212571 -9020,11118,20257,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-967.95581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,-9,-9,7,1,1,0,0,11,1,1,1129,233271.75,0,0,2463.1021 -9021,11119,20258,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1145.196,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,-9,-9,7,1,1,0,0,11,1,0,318,170633.3,0,0,1439.858 -9022,11120,20259,-9,20262,-9,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-961.03003,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,5,2,0,474.5,80992.234,0,0,3093.4001 -9022,11120,20260,-9,20262,-9,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-994.52722,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,5,2,0,474.5,80992.234,0,0,3093.4001 -9022,11120,20261,-9,20262,-9,3,1,0,17,2,0,2,1,2,0,7,2,0,0,3,6.5723052,6.5038824,0,4,0,0,0,-9,0,-946.24261,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.1,53.57,-9,-9,2,1,1,0,0,5,2,0,474.5,80992.234,0,0,3093.4001 -9022,11120,20262,-9,-9,-9,1,1,0,40,2,0,2,0,3,-9,2,1,0,0,3,7.5131149,7.9178486,5.3766141,4,0,0,0,-9,0,-1083.849,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,28,35,15,1,0,-9,0,6.3291583,6.3291583,0,0,0,0,0,0,0,2,1,1,0,5.8632307,0,.18802336,3,34.919998,44.549999,-9,-9,5,1,1,0,0,5,2,0,474.5,80992.234,0,0,3093.4001 -9023,11121,20263,20264,-9,-9,2,1,0,38,1,0,0,0,2,-9,2,1,0,0,3,7.8587136,7.7148142,0,1,0,-9,21,0,-14,-62.183796,0,0,1,52,2,3,1,3,2,2019,1,1,12,4,30,31,15,1,1,1,0,9.2699947,9.2699947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.400002,58.619999,28.25,55.98,6,1,1,0,0,9,5,1,803.33331,1815966.4,0,0,3518.1282 -9023,11121,20264,20263,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.4718056,8.5998878,0,1,0,-9,21,0,14,79.931641,0,0,0,38,2,3,1,2,2,2019,1,2,19,7,43,42,15,1,1,1,0,12.898343,12.898343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,55.98,40.400002,58.619999,5,1,1,0,0,9,5,1,803.33331,1815966.4,0,0,3518.1282 -9023,11121,20265,-9,20263,20264,4,1,1,17,2,0,0,1,2,0,7,2,0,0,4,6.9192991,7.0414929,0,1,0,0,0,-9,0,-1009.8172,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,37.040001,-9,-9,5,1,1,0,0,9,5,1,803.33331,1815966.4,0,0,3518.1282 -9023,11122,20266,-9,20263,20264,3,1,1,18,2,0,0,0,2,-9,2,1,0,0,4,7.7826676,7.5747085,0,3,0,0,0,-9,0,-1158.838,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,34,0,15,1,0,-9,1,10.33817,10.33817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,1,725,39996.223,0,0,1651.6122 -9024,11123,20267,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,2,1,0,0,4,6.5718565,6.7988992,0,4,0,0,0,-9,0,-1142.8921,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,0,-9,0,5.1829557,5.1829557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.049999,59.41,-9,-9,5,2,3,0,0,2,2,0,331,-7857.0249,0,0,1438.8224 -9024,11123,20268,-9,20267,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-885.74249,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,0,331,-7857.0249,0,0,1438.8224 -9024,11123,20269,-9,20267,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-982.37994,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,2,0,331,-7857.0249,0,0,1438.8224 -9025,11124,20270,-9,20271,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-958.8493,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,8,4,0,945,133366.66,0,0,2986.4009 -9025,11124,20271,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,0,4,8.2435064,8.5641537,0,4,0,0,0,-9,0,-923.27045,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,45,40,15,1,0,-9,0,11.583781,11.583781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.540001,65.510002,-9,-9,7,3,4,0,0,8,4,0,945,133366.66,0,0,2986.4009 -9026,11125,20272,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,2,0,5.8801198,6.130115,3,0,0,0,-9,0,-993.42926,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.3984466,30.986813,3,57.75,38.610001,-9,-9,5,1,1,0,0,5,2,0,2190,75248.359,0,0,2075.5857 -9027,11126,20273,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,1,2,0,6.2265735,6.7630644,3,0,0,0,-9,0,-970.25,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6599302,0,0,39.580002,37.619999,-9,-9,4,1,1,0,0,5,2,0,357,104807.26,0,0,513.19836 -9028,11127,20274,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,3,0,6.1821713,6.1831913,3,0,0,0,-9,0,-852.336,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3363166,.06494005,3,53.290001,40.209999,-9,-9,5,1,1,0,0,4,2,1,226,-47612.828,0,0,-156.37762 -9029,11128,20275,20276,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.9734077,9.1836004,0,1,0,-9,9,0,-4,-4.816843,0,0,0,62,1,3,1,2,2,2019,1,1,9,0,45,52,15,1,0,1,0,25.28108,25.28108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,53.549999,36.110001,6,1,1,0,0,2,5,1,367,199019.84,0,0,4079.0269 -9029,11128,20276,20275,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,0,3,6.4603248,7.4077439,6.3040838,1,0,-9,9,0,4,21.25503,0,0,0,58,2,3,1,3,3,2019,1,2,17,6,30,0,15,1,1,1,0,3.4678416,3.4678416,0,0,0,0,0,0,0,0,1,1,0,0,6.3574495,0,0,53.549999,36.110001,58.32,50.220001,4,1,1,0,0,2,5,1,367,199019.84,0,0,4079.0269 -9030,11129,20277,20278,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,8.0725384,8.776988,8.0731525,1,0,-9,35,0,3,12.446919,0,0,0,60,1,4,3,2,3,2019,2,2,10,0,85,47,15,1,0,4,0,3.6154723,3.6154723,0,0,0,0,0,0,0,0,0,0,0,.016228987,8.2288046,0,0,41.360001,54.68,57.16,56.150002,4,1,1,0,0,9,5,1,403.5,2802871.5,0,0,5177.3296 -9030,11129,20278,20277,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,8.0271454,8.33815,7.7508593,1,0,-9,33,0,-3,21.632957,0,0,0,63,2,2,1,2,3,2019,3,1,9,0,15,30,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6155305,8.0354786,0,0,57.16,56.150002,41.360001,54.68,6,1,1,0,0,9,5,1,403.5,2802871.5,0,0,5177.3296 -9031,11130,20279,20281,-9,-9,1,1,0,38,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,1,133.44559,0,0,1,37,1,4,1,2,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,40.52,62.310001,5,1,1,0,0,9,5,1,693.25,120533.38,0,0,3448.7529 -9031,11130,20280,-9,20279,20281,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.9272,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,693.25,120533.38,0,0,3448.7529 -9031,11130,20281,20279,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,4,9.3041983,9.2768145,0,2,0,-9,9,0,-1,80.008446,-9,0,0,38,1,4,3,2,2,2019,2,1,7,0,80,0,15,1,0,3,0,13.384351,13.384351,0,0,0,0,0,0,0,0,0,0,0,3.0847983,0,0,0,40.52,62.310001,45.91,59.889999,6,1,1,0,0,9,5,1,693.25,120533.38,0,0,3448.7529 -9031,11130,20282,-9,20279,20281,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-807.52576,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,693.25,120533.38,0,0,3448.7529 -9032,11131,20283,20284,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,7.5920601,7.679667,0,1,0,-9,7,0,3,-31.200422,0,0,0,44,2,3,1,-9,-9,2019,1,1,8,0,38,36,15,1,0,1,0,7.9318428,7.9318428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,57.330002,53.459999,5,1,1,0,1,8,4,0,1125.5,597144,0,0,2135.0212 -9032,11131,20284,20283,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,3,7.9617476,8.0826941,0,1,0,-9,7,0,-3,-22.75922,0,0,0,47,2,3,1,-9,3,2019,1,2,7,0,45,39,15,1,0,1,0,6.9472227,6.9472227,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.369999,54.799999,2,1,1,0,1,8,4,0,1125.5,597144,0,0,2135.0212 -9032,11132,20285,-9,20283,20284,3,1,1,27,2,0,0,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-984.88458,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,4,1,1,1,0,8,1,0,582,137428.92,0,0,1230.6414 -9033,11133,20286,20287,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,0,4,9.0698862,8.6609287,0,2,0,-9,5,0,1,-14.352387,0,0,0,39,1,4,1,2,2,2019,1,2,18,8,35,40,15,1,1,1,0,28.962969,28.962969,0,0,0,0,0,0,0,0,1,1,0,1.6606473,0,0,0,46.389999,60.990002,44.02,60.700001,3,1,1,0,1,8,5,1,675,45581.473,0,0,4147.3105 -9033,11133,20287,20286,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,0,4,8.3627682,8.4674606,5.8261204,2,0,-9,5,0,-1,4.0119443,0,0,1,40,1,4,1,-9,-9,2019,1,1,11,0,23,17,15,1,0,1,0,18.250248,18.250248,0,0,0,0,0,0,0,0,1,1,0,5.952034,0,0,0,44.02,60.700001,46.389999,60.990002,6,1,1,0,0,8,5,1,675,45581.473,0,0,4147.3105 -9033,11133,20288,-9,20287,20286,3,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.7529,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,675,45581.473,0,0,4147.3105 -9033,11133,20289,-9,20287,20286,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1105.7731,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,675,45581.473,0,0,4147.3105 -9034,11134,20290,20291,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,0,1,9.2190723,8.8881454,0,1,0,-9,30,0,0,51.013538,0,0,0,49,2,4,1,2,2,2019,1,1,5,0,43,43,15,1,0,1,0,21.372814,21.372814,0,0,0,0,0,0,0,0,0,0,0,5.8766289,0,0,0,56.34,43.490002,58.150002,52.91,6,1,1,0,0,7,5,1,995,400477.09,0,0,3709.5259 -9034,11134,20291,20290,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.8723326,7.6829,0,1,0,-9,30,0,0,-15.42738,0,0,0,49,1,1,1,2,3,2019,1,2,7,0,33,32,15,1,0,1,0,9.282774,9.282774,0,0,0,0,0,0,0,0,0,0,0,1.7720282,0,0,0,58.150002,52.91,56.34,43.490002,6,1,1,0,0,7,5,1,995,400477.09,0,0,3709.5259 -9034,11135,20292,-9,20291,20290,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.7119021,7.7427788,0,3,0,0,0,-9,0,-907.08899,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,3,40,37,15,1,0,-9,1,5.927279,5.927279,0,0,0,0,0,0,0,0,0,0,0,.4396978,0,0,0,48.849998,48.189999,-9,-9,6,1,1,0,0,7,3,1,245,-73438.945,0,0,591.9812 -9034,11136,20293,-9,20291,20290,4,1,0,20,2,0,0,0,2,-9,2,1,0,0,5,7.7212877,7.3246045,0,3,0,0,0,-9,0,-930.37262,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,19,7,38,35,15,1,1,-9,1,5.1523814,5.1523814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,49.389999,-9,-9,5,1,1,0,0,7,3,1,753,-194457.94,0,0,428.47281 -9035,11137,20294,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,1,1,8.4518805,8.3000364,0,3,0,0,0,-9,0,-950.38745,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,2,42,0,15,1,0,-9,0,7.7019434,7.7019434,0,0,0,0,0,0,0,0,1,1,0,2.3132257,0,0,0,48.740002,19.870001,-9,-9,1,1,1,0,0,12,4,1,563,-8931.0732,0,0,1289.6382 -9036,11138,20295,-9,20298,20296,9,1,0,5,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.1158,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,464,10380.685,0,0,1364.629 -9036,11138,20296,20298,-9,-9,2,1,1,45,1,0,7,0,3,-9,2,1,0,0,4,3.3873188,3.7260828,0,2,0,-9,8,0,8,-44.576565,0,0,0,37,3,3,3,3,3,2019,2,1,9,1,20,40,15,1,0,3,0,.18247202,.18247202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,59.459999,46.990002,6,2,3,0,0,4,1,1,464,10380.685,0,0,1364.629 -9036,11138,20297,-9,20298,20296,7,1,1,8,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.762,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,1,1,464,10380.685,0,0,1364.629 -9036,11138,20298,20296,-9,-9,1,1,0,37,1,0,7,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,-8,61.772903,0,0,1,45,3,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.459999,46.990002,52,55,6,2,3,0,1,4,1,1,464,10380.685,0,0,1364.629 -9036,11138,20299,-9,20298,20296,8,1,0,6,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.09131,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,464,10380.685,0,0,1364.629 -9036,11138,20300,-9,20298,20296,6,1,0,9,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.4557,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,464,10380.685,0,0,1364.629 -9036,11138,20301,-9,20298,20296,3,1,1,16,2,0,7,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.8765,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,4,1,1,464,10380.685,0,0,1364.629 -9037,11139,20302,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,2,7.960072,8.5381718,6.9836116,3,0,0,0,-9,0,-970.8465,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,48,37,15,1,0,-9,0,7.8695688,7.8695688,0,0,0,0,0,0,0,0,1,1,0,6.8111782,5.590404,0,0,41.080002,46.119999,-9,-9,5,1,1,0,1,10,4,0,1221,430373.63,0,0,3230.0811 -9037,11140,20303,-9,20302,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,1,8.0321159,7.8843832,0,3,0,0,0,-9,0,-1005.9717,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,31,12,44,5,15,1,1,-9,1,6.6693048,6.6693048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.67,57.93,-9,-9,3,1,1,0,0,10,3,0,437,45474.348,0,0,1849.7393 -9037,11141,20304,-9,20302,-9,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.6890111,7.6402645,0,3,0,0,0,-9,0,-1013.7021,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,32,15,1,0,-9,1,6.9046531,6.9046531,0,0,0,0,0,0,0,0,1,1,0,2.0714047,0,0,0,41.080002,58.41,-9,-9,6,1,1,0,0,10,3,0,376,-183452.67,0,0,-275.55072 -9038,11142,20305,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,0,3,9.0261688,9.3174505,6.1709118,4,0,0,0,-9,0,-964.73523,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,55,40,15,1,0,-9,0,16.17281,16.17281,0,0,0,0,0,0,0,0,1,1,0,6.7117724,0,0,0,32.080002,58.419998,-9,-9,5,1,1,0,0,12,5,1,537.5,-16515.998,0,0,3639.8276 -9038,11142,20306,-9,20305,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-939.21143,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,5,1,537.5,-16515.998,0,0,3639.8276 -9039,11143,20307,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,8,3,1,1,5,0,0,0,3,0,0,0,-9,0,-997.9021,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,37,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.79258537,0,0,0,46.34,61.240002,-9,-9,6,1,1,0,0,6,1,0,281,-77613.391,0,0,26.442316 -9040,11144,20308,20309,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,37,0,1,9.4649305,0,0,0,63,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.8895135,3,52.049999,55.950001,59.529999,56.439999,7,1,1,0,0,9,3,1,813,2393435,0,0,3310.4629 -9040,11144,20309,20308,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,8.1115856,8.1620779,1,0,-9,37,0,-1,18.488564,0,0,0,64,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9297719,7.6032567,0,0,59.529999,56.439999,52.049999,55.950001,7,1,1,0,0,9,3,1,813,2393435,0,0,3310.4629 -9040,11145,20310,-9,20308,20309,3,1,0,35,2,0,0,0,1,-9,2,1,0,0,4,8.0596828,8.4093323,0,3,0,0,0,-9,0,-1071.6423,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,10,2,35,40,15,1,0,-9,1,11.029949,11.029949,0,0,0,0,0,0,0,0,1,1,0,2.8526664,0,0,0,46.900002,56.66,-9,-9,6,1,1,0,0,9,4,1,154,-4924.751,0,0,1388.8492 -9041,11146,20311,20312,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,0,4,7.808002,7.7110467,0,1,0,-9,3,0,-1,107.26527,0,0,0,43,2,3,1,3,3,2019,1,2,13,1,20,20,15,1,0,1,0,15.398056,15.398056,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.799999,57.279999,53.389999,44.470001,5,1,1,0,0,5,4,1,1711,181674.78,0,0,2238.0022 -9041,11146,20312,20311,-9,-9,2,1,0,43,1,0,0,0,2,-9,1,1,0,0,3,8.1690531,7.8267264,0,1,0,-9,3,0,1,1.5140221,0,0,1,42,2,4,1,-9,-9,2019,1,1,10,0,17,24,15,1,0,1,0,27.601593,27.601593,0,0,0,0,0,0,0,0,0,0,0,2.2597883,0,0,0,53.389999,44.470001,42.799999,57.279999,6,1,1,0,0,5,4,1,1711,181674.78,0,0,2238.0022 -9042,11147,20313,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-964.24036,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,34,12,0,45,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.7321852,0,10.279146,3,18.75,47.41,-9,-9,3,1,1,0,1,2,1,1,796,14153.961,0,0,-209.27448 -9042,11148,20314,-9,20313,-9,2,1,0,22,2,0,0,0,1,1,2,1,0,0,4,7.3895493,7.7668829,0,3,0,0,0,-9,0,-1034.391,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,38,0,15,1,0,-9,1,6.8758578,6.8758578,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.860001,57.790001,-9,-9,5,1,1,0,0,2,3,1,1115,-30174.369,0,0,1098.5726 -9042,11149,20315,-9,20313,-9,3,1,1,23,2,0,0,0,1,-9,2,1,0,0,5,8.2204771,8.2633657,0,3,0,0,0,-9,0,-1004.3349,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,1,40,38,15,1,0,-9,1,8.2780104,8.2780104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,2,4,1,694,-232069.86,0,0,2025.151 -9043,11150,20316,-9,20318,20319,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.12701,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,5,1,607.5,633010.94,0,0,5112.3496 -9043,11150,20317,-9,20318,20319,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-850.50092,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,5,1,607.5,633010.94,0,0,5112.3496 -9043,11150,20318,20319,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.7637386,8.9673901,0,2,0,-9,6,0,-3,-76.319298,0,0,1,47,1,4,1,1,1,2019,1,1,11,0,53,40,15,1,0,1,0,18.141691,18.141691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,40.48,60.049999,6,1,1,0,0,1,5,1,607.5,633010.94,0,0,5112.3496 -9043,11150,20319,20318,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,8.7312651,8.8273973,0,2,0,-9,6,0,3,21.027258,0,0,0,44,1,4,1,2,2,2019,1,2,20,8,50,42,15,1,1,1,0,16.548992,16.548992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.049999,51.240002,58.84,4,1,1,0,0,1,5,1,607.5,633010.94,0,0,5112.3496 -9044,11151,20320,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-903.75189,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,44,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.68,31.82,-9,-9,2,1,1,0,1,6,1,0,334,-57795.527,0,0,395.87891 -9044,11152,20321,-9,20320,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,0,1,6.6691327,7.1127505,0,3,0,0,0,-9,0,-931.48877,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,30,0,15,1,0,-9,1,3.6905708,3.6905708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.34,23.610001,-9,-9,4,1,1,0,1,6,2,0,1716,15205.59,0,0,1164.1807 -9045,11153,20322,20323,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.492619,7.6039767,1,0,-9,44,0,-5,-25.183283,0,0,0,71,1,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.3007965,7.685535,4.0357742,3,57.16,56.150002,52,54.509998,6,1,1,0,0,2,4,1,1484.5,1632293.4,0,0,3441.7986 -9045,11153,20323,20322,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,8.2964458,8.0758638,1,0,-9,44,0,5,172.34857,0,0,0,66,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8157265,8.2761726,0,3,52,54.509998,57.16,56.150002,6,1,1,0,0,2,4,1,1484.5,1632293.4,0,0,3441.7986 -9046,11154,20324,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1018.9564,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.709999,49.66,-9,-9,6,1,1,0,0,5,1,1,655,146127.64,0,0,619.49164 -9047,11155,20325,20326,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,7.7724237,8.0531311,1,0,-9,48,0,6,-26.019897,0,0,0,71,2,4,3,3,2,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,0,10.142585,0,0,0,0,0,1,1,0,.70233577,7.8231668,0,0,55.73,28.459999,48.849998,58.560001,5,1,1,0,0,8,4,1,550.5,2395039,0,0,5018.519 -9047,11155,20326,20325,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.0498056,8.0279255,1,0,-9,45,0,-6,27.021912,0,0,0,77,3,2,3,2,2,2019,4,2,14,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.2731123,7.9585814,76.368111,2,48.849998,58.560001,55.73,28.459999,4,1,1,0,0,8,4,1,550.5,2395039,0,0,5018.519 -9048,11156,20327,20328,-9,-9,1,1,1,25,1,1,1,0,2,-9,2,1,0,0,3,8.4501171,8.2809143,0,2,0,-9,2,0,3,-19.530102,0,1,0,22,2,3,1,-9,-9,2019,1,2,13,3,44,44,15,1,0,1,0,10.092392,10.092392,0,0,0,0,0,0,0,0,1,1,0,.38301498,0,0,0,48.700001,56.220001,55.959999,49.93,6,1,1,0,1,10,3,0,889.33331,140654.48,0,0,1966.501 -9048,11156,20328,20327,-9,-9,2,1,0,22,1,1,1,0,2,-9,2,1,0,0,3,6.7532158,6.6212955,0,2,0,-9,2,0,-3,-68.639946,0,1,1,25,2,3,1,-9,-9,2019,1,1,6,0,15,14,15,1,0,1,0,6.1444726,6.1444726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,48.700001,56.220001,6,1,1,0,0,10,3,0,889.33331,140654.48,0,0,1966.501 -9048,11156,20329,-9,20328,20327,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-890.96594,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,889.33331,140654.48,0,0,1966.501 -9049,11157,20330,20331,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,7.4590359,8.277318,6.8272581,1,0,-9,41,0,0,-148.61288,0,0,0,65,3,4,1,3,-9,2019,1,2,7,0,27,40,15,1,0,1,0,7.7844343,7.7844343,1,0,0,0,0,0,0,0,1,1,0,4.8561511,7.0019808,0,0,60.450001,43.75,52,53,6,1,1,0,0,6,4,1,479,798596.75,0,0,4596.8145 -9049,11157,20331,20330,-9,-9,2,1,0,65,1,0,0,0,3,-9,2,1,0,0,4,7.7342629,7.5134964,0,1,0,-9,41,0,0,.10947236,0,0,0,65,2,3,1,3,3,2019,1,1,9,0,25,25,15,1,0,1,0,8.0466995,8.0466995,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,60.450001,43.75,7,1,1,0,0,6,4,1,479,798596.75,0,0,4596.8145 -9050,11158,20332,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,3,0,6.9181023,6.6398249,3,0,0,0,-9,0,-910.60889,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3112106,6.5469851,0,0,61.889999,36.169998,-9,-9,6,1,1,0,0,2,2,0,445,573384.31,0,0,831.32867 -9051,11159,20333,20334,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.106287,8.1187754,0,1,0,-9,8,0,1,35.072746,0,0,0,49,1,4,1,3,3,2019,1,2,12,0,37,42,15,1,0,1,0,8.9133425,8.9133425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,40.470001,55.650002,6,1,1,0,0,13,4,1,198.5,511967.56,0,0,2122.0823 -9051,11159,20334,20333,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.0974913,7.9761143,0,1,0,-9,8,0,-1,18.977318,0,0,0,50,2,4,1,2,2,2019,1,1,13,1,36,36,15,1,0,1,0,10.716521,10.716521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.470001,55.650002,57.16,56.150002,4,1,1,0,0,13,4,1,198.5,511967.56,0,0,2122.0823 -9051,11160,20335,-9,20334,20333,3,1,0,21,3,0,0,0,2,-9,2,1,0,0,4,8.5650082,8.5252686,0,3,0,0,0,-9,0,-1098.0868,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,5,50,12,15,1,1,-9,1,10.770812,10.770812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.74,61.119999,-9,-9,6,1,1,0,0,13,5,1,1072,37602.438,0,0,2456.9426 -9052,11161,20336,20337,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,0,7.4000263,7.5163465,1,0,-9,3,0,7,-78.249298,0,0,0,71,2,2,3,3,1,2019,4,2,18,9,0,0,15,4,1,4,0,0,0,1,0,5.1885805,0,8.6680851,0,0,0,1,1,0,4.5268741,7.5759673,0,0,36.029999,35.07,31.280001,25.02,5,2,3,0,0,6,3,1,445,743081.25,0,0,2547.302 -9052,11161,20337,20336,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,5.8204169,5.7878394,1,0,-9,3,0,-7,-132.38452,0,0,0,78,2,2,3,2,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6153646,0,0,31.280001,25.02,36.029999,35.07,5,2,3,0,0,6,3,1,445,743081.25,0,0,2547.302 -9053,11162,20338,20339,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.5662317,7.3386984,1,0,-9,49,0,5,56.565353,0,0,0,69,3,3,3,-9,-9,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4497018,0,0,39.900002,49.389999,42.610001,49.310001,6,1,1,0,0,5,3,1,790.5,660653.38,0,0,2372.6528 -9053,11162,20339,20338,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,-5,-74.839127,0,0,0,74,2,3,3,-9,-9,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.610001,49.310001,39.900002,49.389999,6,1,1,0,0,5,3,1,790.5,660653.38,0,0,2372.6528 -9054,11163,20340,-9,20341,20342,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.62079,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,1,894.66669,68242.609,0,0,-232.4175 -9054,11163,20341,20342,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,2,0,0,0,2,0,-9,15,0,-1,0,0,0,0,48,2,2,1,2,2,2019,1,2,21,8,0,36,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.889999,27.4,45.150002,32.41,6,1,1,0,0,9,1,1,894.66669,68242.609,0,0,-232.4175 -9054,11163,20342,20341,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,2,0,0,0,2,0,-9,18,0,1,0,0,0,0,47,2,2,1,2,3,2019,1,1,20,7,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.6169488,0,8.2872324,2,45.150002,32.41,49.889999,27.4,3,1,1,0,0,9,1,1,894.66669,68242.609,0,0,-232.4175 -9055,11164,20343,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,0,5,7.2049947,7.0167251,6.1526585,4,0,0,0,-9,0,-1048.7189,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,16,16,15,1,0,-9,0,6.9324002,6.9324002,0,0,0,0,0,0,0,2,1,0,1,5.805799,0,5.1504736,3,47.279999,59.360001,-9,-9,5,1,1,0,0,11,2,0,655,169373.97,0,0,1494.1268 -9055,11164,20344,-9,20343,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1137.3102,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,2,0,655,169373.97,0,0,1494.1268 -9055,11164,20345,-9,20343,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-830.77094,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,11,2,0,655,169373.97,0,0,1494.1268 -9056,11165,20346,-9,20349,20348,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.22717,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,6,4,0,525,487620.63,0,0,3314.0051 -9056,11165,20347,-9,20349,20348,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-894.31128,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,6,4,0,525,487620.63,0,0,3314.0051 -9056,11165,20348,20349,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,3,7.4993482,7.4891458,0,2,0,-9,15,0,3,-30.449186,0,0,0,45,2,3,1,3,2,2019,1,2,7,0,23,30,15,1,0,1,0,7.7733126,7.7733126,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,52.080002,38.509998,59.43,7,2,3,0,0,6,4,0,525,487620.63,0,0,3314.0051 -9056,11165,20349,20348,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,3,8.4388828,8.7104273,0,2,0,-9,15,0,-3,-6.5074787,0,0,0,48,1,3,1,2,2,2019,1,1,11,0,38,22,15,1,0,1,0,13.286736,13.286736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,42,52.080002,6,2,3,0,0,6,4,0,525,487620.63,0,0,3314.0051 -9057,11166,20350,-9,20352,20353,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.5682,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,1,542.75,1650462.3,0,0,5361.8579 -9057,11166,20351,-9,20352,20353,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1134.9547,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,1,542.75,1650462.3,0,0,5361.8579 -9057,11166,20352,20353,-9,-9,1,1,0,37,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-1,15.089215,0,0,1,38,1,3,1,1,1,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.0430613,0,7.7698979,3,49.110001,52.880001,38.349998,55.029999,7,2,3,0,0,8,5,1,542.75,1650462.3,0,0,5361.8579 -9057,11166,20353,20352,-9,-9,2,1,1,38,1,0,2,0,1,-9,1,1,0,0,3,9.3749094,9.2581024,0,2,0,-9,10,0,1,-40.273838,0,0,0,37,1,4,3,2,3,2019,2,1,20,5,48,42,15,1,1,3,0,23.549932,23.549932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.349998,55.029999,49.110001,52.880001,3,2,3,0,0,8,5,1,542.75,1650462.3,0,0,5361.8579 -9058,11167,20354,20356,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,3,9.1780081,8.6837807,0,2,0,-9,10,0,7,81.612419,-9,0,0,39,2,4,1,2,2,2019,1,1,7,0,72,0,15,1,0,1,0,10.32602,10.32602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,57.720001,52.82,53.970001,6,1,1,0,0,1,5,1,355,477428.69,0,0,4446.6802 -9058,11167,20355,-9,20356,20354,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.4281,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,355,477428.69,0,0,4446.6802 -9058,11167,20356,20354,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.5447969,8.8540115,0,2,0,-9,20,0,-7,-44.690907,0,0,1,46,2,3,1,2,3,2019,1,2,12,2,27,24,15,1,0,1,0,29.438904,29.438904,0,0,0,0,0,0,0,2,1,1,0,0,0,4.4371004,3,52.82,53.970001,41.82,57.720001,5,1,1,0,0,1,5,1,355,477428.69,0,0,4446.6802 -9058,11167,20357,-9,20356,20354,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.1797,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,355,477428.69,0,0,4446.6802 -9059,11168,20358,-9,20359,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-991.63928,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,8,2,0,3001.5,113713.66,0,0,1145.0647 -9059,11168,20359,-9,-9,-9,1,1,0,39,3,0,2,0,3,-9,2,1,0,0,4,7.0257945,7.0277457,0,4,0,0,0,-9,0,-881.61182,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.490002,55.02,-9,-9,4,3,4,0,0,8,2,0,3001.5,113713.66,0,0,1145.0647 -9059,11169,20360,-9,20359,-9,2,1,1,23,2,0,2,1,2,0,7,2,0,0,4,5.7245026,6.1540442,0,3,0,0,0,-9,0,-1031.429,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,3,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,6,3,4,0,0,8,2,0,984,-20003.225,0,0,-801.13269 -9060,11170,20361,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-1077.5245,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.530001,35.59,-9,-9,1,1,1,0,0,6,1,0,680,5199.3032,0,0,1516.6742 -9060,11171,20362,-9,20361,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,7.5624609,7.4288421,0,3,0,-9,0,-9,0,-1071.5594,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,28,0,15,1,0,-9,1,6.9716926,6.9716926,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.5,65.43,-9,-9,4,1,1,0,0,6,3,0,467,93632.703,0,0,465.12222 -9060,11171,20363,-9,20362,-9,4,1,1,7,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-979.14325,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,6,3,0,467,93632.703,0,0,465.12222 -9060,11171,20364,-9,20362,-9,3,1,0,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-891.88434,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,6,3,0,467,93632.703,0,0,465.12222 -9061,11172,20365,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.6994448,8.8574371,0,3,0,0,0,-9,0,-923.96326,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,37,15,1,0,-9,0,22.125208,22.125208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.619999,53.790001,-9,-9,6,2,3,0,0,8,5,0,1419,136023.17,0,0,3311.6975 -9062,11173,20366,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,1,0,3.9314549,3.2796888,3,0,0,0,-9,0,-1024.7238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.4356618,3.3346088,0,0,45.150002,31.18,-9,-9,7,1,1,0,0,5,2,1,143,317184.63,0,0,1180.8054 -9063,11174,20367,20369,-9,-9,1,1,1,38,1,1,3,0,2,-9,1,1,0,0,4,7.1622157,7.3737154,0,2,0,-9,14,-9,3,-33.618694,-9,0,0,35,2,4,3,3,1,2019,2,2,12,0,20,0,15,1,0,3,0,7.9182577,7.9182577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.400002,62.349998,49,56,6,2,3,0,0,8,2,0,918.25,-24064.264,0,0,2462.2869 -9063,11174,20368,-9,20369,20367,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-992.7572,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,918.25,-24064.264,0,0,2462.2869 -9063,11174,20369,20367,-9,-9,2,1,0,35,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,14,-9,-3,-60.311348,-9,0,1,38,2,4,1,3,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,43.400002,62.349998,5,2,3,0,0,8,2,0,918.25,-24064.264,0,0,2462.2869 -9063,11174,20370,-9,20369,20367,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-977.31427,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,918.25,-24064.264,0,0,2462.2869 -9064,11175,20371,20372,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,3,0,7.6275048,7.6765876,1,0,-9,38,0,-7,97.534271,0,0,0,66,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3215799,7.2432246,0,0,62.18,36.18,59.529999,56.439999,6,1,1,0,0,13,4,1,829.5,1427919.4,0,0,4130.8096 -9064,11175,20372,20371,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,7.4956961,8.5691795,7.6976209,1,0,-9,38,0,7,-42.135307,0,0,0,59,2,3,3,3,3,2019,4,2,6,0,7,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.3115883,0,3,59.529999,56.439999,62.18,36.18,6,1,1,0,0,13,4,1,829.5,1427919.4,0,0,4130.8096 -9064,11176,20373,-9,20371,20372,3,1,0,19,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1044.0029,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5834686,0,0,0,47,61,-9,-9,5,1,1,0,0,13,1,1,1933,6057.6357,0,0,61.310802 -9065,11177,20374,20375,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,8.9315176,9.1557655,0,1,0,-9,5,0,-10,117.29842,0,0,0,63,1,4,1,3,2,2019,1,1,10,1,46,87,15,1,0,1,0,15.235044,15.235044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,19.52,68.089996,5,1,1,0,0,11,5,1,609,758289.63,0,0,3384.3979 -9065,11177,20375,20374,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,8.0704918,8.163723,6.447257,1,0,-9,5,0,10,-9.5867252,0,0,0,53,1,4,1,2,2,2019,1,2,24,10,50,30,15,1,1,1,0,6.6484885,6.6484885,0,0,0,0,0,0,0,0,0,0,0,5.4297814,6.8323379,0,0,19.52,68.089996,48.869999,58.549999,2,1,1,0,0,11,5,1,609,758289.63,0,0,3384.3979 -9066,11178,20376,20377,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.164567,7.8604269,0,1,0,-9,10,0,-5,135.45503,0,0,0,64,2,1,1,2,2,2019,1,1,6,0,30,30,15,1,0,1,0,12.312399,12.312399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.25,37.540001,6,1,1,0,0,12,5,1,504,1342638.6,0,0,3453.5356 -9066,11178,20377,20376,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,1,8.3584909,8.8922052,7.1289673,1,0,-9,10,0,5,-75.172363,0,0,0,59,2,4,1,3,3,2019,1,2,5,0,47,46,15,1,0,1,0,11.600821,11.600821,0,0,0,0,0,0,0,0,0,0,0,0,7.3731756,0,0,54.25,37.540001,57.16,56.150002,3,1,1,0,0,12,5,1,504,1342638.6,0,0,3453.5356 -9066,11179,20378,-9,20376,20377,3,1,0,28,2,0,0,0,1,1,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-968.76477,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,62.389999,56.709999,-9,-9,7,1,1,0,0,12,1,1,692,118156.49,0,0,0 -9067,11180,20379,20381,-9,-9,2,1,0,34,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-4,106.42964,0,0,1,38,1,4,1,-9,-9,2019,3,1,10,1,0,26,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1512306,0,0,0,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,9,4,1,592.66669,641695.56,0,0,2399.6343 -9067,11180,20380,-9,20379,20381,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.3867,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,4,1,592.66669,641695.56,0,0,2399.6343 -9067,11180,20381,20379,-9,-9,1,1,1,38,1,1,1,0,1,-9,2,1,0,0,4,8.6376839,8.7668486,0,2,0,-9,8,0,4,46.089073,0,0,0,34,1,4,3,2,2,2019,2,2,6,0,38,38,15,1,0,3,0,19.952478,19.952478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,9,4,1,592.66669,641695.56,0,0,2399.6343 -9068,11181,20382,20383,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,-2,24.765318,0,0,0,66,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6055465,0,2.5496869,3,57.16,56.150002,55.189999,54.259998,6,1,1,0,0,7,4,1,915,3377250,0,0,3155.3025 -9068,11181,20383,20382,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,8.4528017,8.4481134,1,0,-9,38,0,2,-45.053181,0,0,0,64,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5527081,8.6859922,0,3,55.189999,54.259998,57.16,56.150002,7,1,1,0,0,7,4,1,915,3377250,0,0,3155.3025 -9069,11182,20384,20385,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,7.8712878,7.8714247,1,0,-9,2,0,2,59.342068,0,0,0,73,3,3,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.33364093,8.2103271,33.779282,1,38.509998,59.43,57.82,28.48,3,1,1,0,0,13,3,1,797,379613.63,0,0,1862.3839 -9069,11182,20385,20384,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,2,0,-2,25.993198,0,0,0,75,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,30.601263,0,0,0,0,0,1,1,0,0,0,0,0,57.82,28.48,38.509998,59.43,5,1,1,0,0,13,3,1,797,379613.63,0,0,1862.3839 -9070,11183,20386,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,2,0,7.8294091,7.3996315,3,0,0,0,-9,0,-935.57227,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,8.8609066,26.033173,0,1,1,0,0,7.5244741,0,0,42.400002,32.25,-9,-9,3,1,1,0,0,2,3,1,501,593980.38,0,0,1818.714 -9071,11184,20387,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,2,0,4.9603267,5.0471992,3,0,0,0,-9,0,-872.61243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.2972858,0,0,0,0,1,1,0,1.4807968,5.1006079,0,0,59.150002,42.119999,-9,-9,7,1,1,0,0,12,2,0,4208,216182.94,0,0,-204.79221 -9072,11185,20388,20389,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,5.6375299,5.6463361,1,0,-9,6,0,6,-27.341703,0,0,0,58,3,3,1,3,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3694216,5.8305526,0,0,57.330002,53.459999,59.459999,46.990002,6,3,4,0,0,6,3,1,868,85382.656,0,0,2969.9185 -9072,11185,20389,20388,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,3,8.0635481,8.1670914,0,1,0,-9,6,0,-6,-85.443512,0,0,0,64,2,3,3,3,3,2019,2,1,8,0,44,38,15,1,0,4,0,8.6853752,8.6853752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.459999,46.990002,57.330002,53.459999,6,1,1,0,0,6,3,1,868,85382.656,0,0,2969.9185 -9073,11186,20390,20391,-9,-9,2,1,0,57,1,0,5,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,10,0,-5,0,0,0,0,62,3,3,3,2,2,2019,4,1,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,50,48,5,2,3,0,0,5,1,1,518.5,163803.81,0,0,0 -9073,11186,20391,20390,-9,-9,1,1,1,62,1,0,5,0,3,-9,8,3,1,1,3,0,0,0,2,0,-9,10,0,5,0,0,0,0,57,3,3,3,-9,-9,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,48,48,49,5,2,3,0,1,5,1,1,518.5,163803.81,0,0,0 -9073,11187,20392,-9,20390,20391,4,1,1,32,2,0,5,0,2,1,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1060.0079,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,5,2,3,0,0,5,1,1,185,-6815.8501,0,0,0 -9073,11188,20393,-9,-9,-9,12,1,0,24,2,0,5,0,1,-9,6,3,0,0,4,0,0,0,4,0,-9,0,-9,0,-993.71448,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,5,1,1,2253,67835.461,0,0,0 -9073,11189,20394,20395,20390,20391,3,1,1,27,1,0,5,0,1,-9,2,1,0,0,4,7.9457979,7.717628,0,2,0,1,1,-9,-1,-13.117909,0,1,0,28,1,4,3,3,3,2019,2,13,10,1,40,40,15,1,0,3,0,7.1073065,7.1073065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,46,57,5,2,3,0,0,5,2,1,430.5,-70104.016,0,0,780.2619 -9073,11189,20395,20394,-9,-9,13,1,0,28,1,0,5,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,1,77.602318,-9,1,1,27,1,4,1,-9,-9,2019,3,3,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,57,48,58,5,2,3,0,0,5,2,1,430.5,-70104.016,0,0,780.2619 -9073,11190,20396,-9,20401,20400,10,1,0,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.8427,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9073,11190,20397,-9,20401,20400,11,1,1,3,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.55536,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9073,11190,20398,-9,20401,20400,9,1,0,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.3489,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9073,11190,20399,-9,20401,20400,7,1,1,7,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.54651,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9073,11190,20400,20401,-9,-9,6,1,1,36,1,0,5,0,1,-9,2,1,0,0,4,8.486289,8.6999702,0,2,0,-9,8,0,3,24.139975,0,0,0,33,1,3,1,-9,-9,2019,1,5,10,1,37,35,15,1,0,1,0,17.04509,17.04509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.330002,53.459999,5,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9073,11190,20401,20400,20390,20391,5,1,0,33,1,0,5,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,8,0,-3,-129.32275,0,0,1,36,1,4,1,2,3,2019,1,6,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,50,57,6,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9073,11190,20402,-9,20401,20400,8,1,1,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.60742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,3,1,590,305406.16,0,0,2418.5884 -9074,11191,20403,-9,20404,20405,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.7793,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,2,1,743,38290.566,0,0,1924.0614 -9074,11191,20404,20405,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,7.206624,7.2610846,0,2,0,-9,6,0,-5,17.455889,0,0,1,48,3,3,3,3,3,2019,2,1,12,1,20,0,15,1,0,3,0,8.5475702,8.5475702,0,0,0,0,0,0,0,0,1,1,0,5.6786981,0,0,0,40.709999,62.41,40.139999,38.189999,6,1,1,0,0,6,2,1,743,38290.566,0,0,1924.0614 -9074,11191,20405,20404,-9,-9,1,1,1,48,1,0,2,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,6,0,5,12.780505,0,0,0,43,2,4,1,-9,-9,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8245823,0,0,0,40.139999,38.189999,40.709999,62.41,5,1,1,1,0,6,2,1,743,38290.566,0,0,1924.0614 -9075,11192,20406,20407,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,0,3,6.8254032,7.0101223,0,1,0,-9,44,0,0,-58.896523,0,0,0,65,2,4,1,3,3,2019,1,1,10,1,37,40,15,1,0,1,0,3.3658488,3.3658488,0,0,0,0,0,0,0,0,1,1,0,.76814705,0,0,0,52,48,46.310001,58.290001,5,1,1,0,0,6,2,1,1717,614803.88,0,0,2039.6342 -9075,11192,20407,20406,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,5.4545989,5.113575,0,1,0,-9,44,0,0,-19.733015,0,0,0,65,3,3,1,2,2,2019,1,2,12,0,4,4,15,1,0,1,0,7.1502366,7.1502366,0,0,0,0,0,0,0,7,1,1,0,0,0,10.157258,3,46.310001,58.290001,52,48,6,1,1,0,0,6,2,1,1717,614803.88,0,0,2039.6342 -9076,11193,20408,20411,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,9.2080317,9.1988802,0,2,0,-9,7,0,1,-40.316833,0,0,0,40,2,4,3,3,3,2019,2,1,9,1,40,40,15,1,0,3,0,38.955967,38.955967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,36.009998,50.990002,6,1,1,0,0,8,5,1,624,482552.5,0,0,5829.5605 -9076,11193,20409,-9,20411,20408,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.0513,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,624,482552.5,0,0,5829.5605 -9076,11193,20410,-9,20411,20408,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.80914,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,624,482552.5,0,0,5829.5605 -9076,11193,20411,20408,-9,-9,1,1,0,40,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-1,-34.584045,0,0,1,41,1,4,1,3,2,2019,3,2,17,5,0,12,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7016029,0,0,0,36.009998,50.990002,51,56,6,1,1,0,0,8,5,1,624,482552.5,0,0,5829.5605 -9077,11194,20412,-9,-9,-9,1,1,0,28,3,0,0,0,1,-9,2,1,0,0,5,8.3283892,8.0852385,0,3,0,-9,0,1,0,-938.38397,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,2,0,48,30,15,1,0,-9,0,9.2186832,9.2186832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,10,4,0,108,38881.016,0,0,854.65381 -9078,11195,20413,20414,-9,-9,2,1,0,48,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,33,0,-15,0,-9,0,0,63,2,3,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,34.843349,3,49,55,51,48,6,2,3,0,1,8,2,0,2100.5,-10553.119,0,0,1160.8749 -9078,11195,20414,20413,-9,-9,1,1,1,63,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,33,0,15,0,-9,0,0,48,2,4,3,3,2,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,33.927883,2,51,48,49,55,5,2,3,1,1,8,2,0,2100.5,-10553.119,0,0,1160.8749 -9078,11196,20415,-9,20413,20414,4,1,0,24,2,0,0,0,1,-9,1,1,0,0,2,9.0419846,8.8964777,0,3,0,0,0,-9,0,-1115.6311,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,43,45,15,1,0,-9,1,17.107895,17.107895,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.880001,51.259998,-9,-9,4,2,3,0,0,8,5,0,458,69517.969,0,0,1310.4941 -9079,11197,20416,20417,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,6.8378725,7.179306,1,0,-9,51,0,3,-93.740669,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9230056,6.8037019,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,11,2,1,293,419322.31,0,0,1462.9926 -9079,11197,20417,20416,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,5.598033,5.3977938,1,0,-9,51,0,-3,25.40609,0,0,0,72,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90048206,5.9209819,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,11,2,1,293,419322.31,0,0,1462.9926 -9080,11198,20418,20419,-9,-9,1,1,1,75,1,0,0,0,1,-9,1,1,0,0,1,7.0357323,8.2369738,7.9752321,1,0,-9,42,0,5,-15.851789,0,0,0,70,1,3,1,2,1,2019,1,2,14,4,25,15,15,1,1,1,0,4.1478753,4.1478753,1,0,0,0,0,0,0,0,1,1,0,3.1569393,8.4646263,0,0,63.740002,23.76,47.759998,48.16,6,1,1,0,0,2,5,1,1388,2777299.3,0,0,6502.7607 -9080,11198,20419,20418,-9,-9,2,1,0,70,1,0,0,0,1,-9,1,1,0,0,3,7.6859097,8.8262749,7.9852552,1,0,-9,42,0,-5,43.117512,0,0,0,75,1,1,1,3,2,2019,1,1,15,4,72,70,15,1,1,1,0,2.7898643,2.7898643,0,0,0,0,0,0,0,0,1,1,0,7.1338172,8.1551466,0,0,47.759998,48.16,63.740002,23.76,5,1,1,0,0,2,5,1,1388,2777299.3,0,0,6502.7607 -9080,11199,20420,-9,-9,-9,3,1,0,23,2,0,0,0,1,-9,1,1,0,0,3,7.3748355,7.0287232,0,3,0,0,0,-9,0,-993.44958,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,0,15,1,0,-9,0,4.3617864,4.3617864,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,-9,-9,7,1,1,0,0,2,3,1,174,27152.469,0,0,710.27844 -9081,11200,20421,20422,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,5,8.1508703,8.3831835,0,1,0,-9,15,0,0,68.21402,0,0,0,60,1,4,1,3,2,2019,1,2,4,0,29,40,15,1,0,1,0,16.551048,16.551048,0,0,0,0,0,0,0,71.5,1,1,0,7.6048064,0,73.606407,3,57.060001,57.759998,51.830002,57.200001,7,1,1,0,0,2,5,1,714.5,1321254.6,0,0,7156.4375 -9081,11200,20422,20421,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,0,4,9.6066628,9.7303886,0,1,0,-9,9,0,9,-20.851328,-9,0,0,51,1,5,1,-9,-9,2019,1,1,8,0,55,0,15,1,0,1,0,31.645466,31.645466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.060001,57.759998,4,1,1,0,0,2,5,1,714.5,1321254.6,0,0,7156.4375 -9081,11201,20423,-9,20421,20422,3,1,0,29,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1030.3568,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,1,0,2,1,1,909,68349.305,0,0,1733.5693 -9082,11202,20424,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1095.0896,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.610001,51.040001,-9,-9,6,1,1,0,0,2,1,0,244,39931.035,0,0,2870.8882 -9083,11203,20425,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,4,7.0028672,6.9664288,0,3,0,0,0,-9,0,-942.19592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,22,20,15,1,0,-9,0,6.8452039,6.8452039,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,3,4,0,1,8,2,0,279,-164055.75,0,0,1237.8495 -9084,11204,20426,20427,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,0,4,8.2115898,8.2673969,0,1,0,-9,2,0,0,14.913911,0,0,0,34,1,2,1,2,1,2019,1,2,4,0,40,40,15,1,0,1,0,11.949558,11.949558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.060001,57.48,40.919998,43.880001,6,2,3,0,0,9,5,1,1466.5,266699.19,0,0,4934.6782 -9084,11204,20427,20426,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,2,9.3560114,9.1086922,0,1,0,-9,2,0,0,86.917648,0,0,1,34,2,4,1,-9,-9,2019,1,1,12,0,40,41,15,1,0,1,0,28.708355,28.708355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.919998,43.880001,48.060001,57.48,4,2,3,0,0,9,5,1,1466.5,266699.19,0,0,4934.6782 -9085,11205,20428,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,7.4344206,7.3905621,3,0,0,0,-9,0,-1013.6459,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5077848,7.4881921,0,3,54.860001,47.5,-9,-9,6,1,1,0,0,9,3,1,1703,667337.5,0,0,1799.577 -9086,11206,20429,-9,20431,20430,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1071.4491,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,5,1,1788.6666,72533.961,0,0,3515.1912 -9086,11206,20430,20431,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,0,3,8.7218904,8.6339245,0,2,0,-9,6,0,-1,113.36555,0,0,0,31,1,4,1,3,2,2019,1,1,12,0,55,65,15,1,0,1,0,13.328918,13.328918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.940001,61.650002,34.27,50.220001,6,1,1,0,0,10,5,1,1788.6666,72533.961,0,0,3515.1912 -9086,11206,20431,20430,-9,-9,1,1,0,31,1,1,1,0,1,-9,5,1,0,0,4,7.9983883,7.8302464,0,2,0,-9,6,0,1,-13.678287,0,0,1,30,2,3,1,2,1,2019,1,2,22,9,37,39,15,1,1,1,0,10.301116,10.301116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.27,50.220001,30.940001,61.650002,6,1,1,0,0,10,5,1,1788.6666,72533.961,0,0,3515.1912 -9087,11207,20432,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,1,1,0,8.4665337,8.6699076,3,0,0,0,-9,0,-959.30383,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.1419168,0,0,0,0,81.898659,0,1,1,0,0,8.4954891,0,0,62.240002,19.35,-9,-9,6,1,1,0,0,10,5,1,1061,492987,0,0,2911.5774 -9088,11208,20433,20434,-9,-9,2,1,0,69,1,0,0,0,3,-9,2,1,0,0,3,7.6771579,8.4881001,6.6991506,1,0,-9,37,0,8,-40.679733,0,0,0,61,1,3,1,3,2,2019,1,1,10,0,30,27,15,1,0,1,0,9.8344402,9.8344402,0,0,0,0,0,0,0,0,1,1,0,5.6528969,7.1174655,0,0,51.169998,49.389999,57.91,40.77,3,1,1,0,1,6,3,1,2744,262483.66,0,0,2293.7983 -9088,11208,20434,20433,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,0,0,0,1,0,-9,37,0,-8,-73.824196,0,0,0,69,3,3,1,2,2,2019,1,2,9,0,43,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.61143315,0,0,3,57.91,40.77,51.169998,49.389999,6,1,1,0,0,6,3,1,2744,262483.66,0,0,2293.7983 -9089,11209,20435,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,8.5236034,8.0307846,0,3,0,0,0,-9,0,-1018.3499,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,48,44,15,1,0,-9,0,9.809412,9.809412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.189999,58.009998,-9,-9,2,1,1,0,0,2,4,1,1172,701.55487,0,0,1999.9622 -9090,11210,20436,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,7.7101097,7.9197783,3,0,0,0,-9,0,-1041.4926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,6.6457396,0,0,0,0,39.24609,0,1,1,0,1.7372026,7.4290652,0,0,52,45,-9,-9,6,1,1,0,0,9,3,1,496,1129225,0,0,2373.5002 -9091,11211,20437,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,0,3,8.3061476,8.3729477,0,4,0,-9,0,1,0,-941.24243,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,33,30,15,1,0,-9,0,11.812133,11.812133,0,0,0,0,0,0,0,2,1,1,0,0,0,1.3669639,3,47.150002,56.66,-9,-9,5,1,1,0,0,13,3,1,1365.5,25895.844,0,0,2656.5217 -9091,11211,20438,-9,20437,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-935.87341,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,13,3,1,1365.5,25895.844,0,0,2656.5217 -9092,11212,20439,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,4.5915613,4.8483582,3,0,0,0,-9,0,-962.62805,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8574839,4.4155564,0,0,57.349998,40.209999,-9,-9,6,1,1,0,0,11,1,1,941,90838.102,0,0,376.87225 -9093,11213,20440,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-991.85553,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,-9,-9,4,3,4,0,1,8,1,0,1336,855280.5,0,0,1139.5238 -9094,11214,20441,20442,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.703887,8.5311193,0,1,0,-9,6,0,4,125.51218,0,0,0,53,2,3,3,2,2,2019,2,2,9,0,37,37,15,1,0,3,0,13.777461,13.777461,0,0,0,0,0,0,0,0,0,0,0,4.0274997,0,0,0,43.349998,57.799999,43.689999,48.900002,6,1,1,0,0,2,4,1,1520.5,1271620.8,0,0,1945.6995 -9094,11214,20442,20441,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,6,0,-4,88.725044,0,0,0,57,2,4,1,-9,-9,2019,3,1,13,2,0,30,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.689999,48.900002,43.349998,57.799999,6,1,1,0,0,2,4,1,1520.5,1271620.8,0,0,1945.6995 -9095,11215,20443,20445,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,4,7.8887839,8.2840672,0,2,0,-9,7,0,0,81.489937,0,0,0,41,2,4,3,-9,-9,2019,2,2,10,0,46,54,15,1,0,3,0,7.9495578,7.9495578,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.560001,47.27,54.790001,55.860001,6,1,1,0,0,13,3,1,501,40001.102,0,0,1392.3595 -9095,11215,20444,-9,20445,20443,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.7086,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,501,40001.102,0,0,1392.3595 -9095,11215,20445,20443,-9,-9,2,1,0,41,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,7,0,0,-85.984207,0,0,1,41,2,4,1,2,3,2019,3,1,6,0,0,24,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,40.560001,47.27,6,1,1,1,0,13,3,1,501,40001.102,0,0,1392.3595 -9095,11215,20446,-9,20445,20443,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.12433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,501,40001.102,0,0,1392.3595 -9096,11216,20447,20448,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,8.0235033,8.3882074,6.631907,1,0,-9,8,0,-1,-31.34656,0,0,0,61,2,3,1,2,3,2019,1,1,6,0,35,35,15,1,0,1,0,11.794364,11.794364,0,0,0,0,0,0,0,7,0,0,0,3.9290969,6.2518439,4.6559453,3,57.169998,50.610001,54.369999,54.799999,6,1,1,0,0,2,5,0,1334.5,240477.38,0,0,2931.2803 -9096,11216,20448,20447,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,7.80021,8.1479836,7.3418717,1,0,-9,8,0,1,102.32758,0,0,0,60,2,4,1,3,3,2019,1,2,7,0,30,38,15,1,0,1,0,9.0252876,9.0252876,0,0,0,0,0,0,0,7,0,0,0,0,7.3632612,1.7225704,3,54.369999,54.799999,57.169998,50.610001,7,1,1,0,0,2,5,0,1334.5,240477.38,0,0,2931.2803 -9097,11217,20449,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,0,3,6.5537319,8.0316753,7.6588321,3,0,0,0,-9,0,-1012.1044,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,8,0,15,1,0,-9,0,9.5949755,9.5949755,0,0,0,0,0,0,0,0,1,1,0,4.7452688,7.6131201,0,0,60.459999,33.02,-9,-9,6,1,1,0,0,8,4,1,272,200254.66,0,0,1277.6163 -9098,11218,20450,20451,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,8.4783096,8.5239353,0,1,0,-9,11,0,-13,21.293577,0,0,0,63,1,5,1,1,2,2019,1,2,9,2,55,44,15,1,0,1,0,11.893326,11.893326,0,0,0,0,0,0,0,7,0,0,0,0,0,7.137135,3,58.610001,40.490002,62.389999,56.709999,6,4,2,0,0,8,5,1,566,1998362,0,0,6432.729 -9098,11218,20451,20450,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,5,8.851716,9.559988,7.7394843,1,0,-9,11,0,13,59.416431,0,0,0,50,1,3,1,-9,-9,2019,1,1,6,0,36,36,15,1,0,1,0,19.412735,19.412735,0,0,0,0,0,0,0,0,0,0,0,0,8.5065088,0,0,62.389999,56.709999,58.610001,40.490002,7,1,1,0,0,8,5,1,566,1998362,0,0,6432.729 -9099,11219,20452,20453,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.9005394,9.0487947,4.7114983,1,0,-9,8,0,-4,-140.97823,0,0,0,63,2,3,1,2,1,2019,1,1,11,0,50,42,15,1,0,1,0,19.093418,19.093418,0,0,0,0,0,0,0,0,0,0,0,6.0474496,5.0813408,0,0,54.290001,49.119999,44.77,37.290001,6,1,1,0,0,10,5,0,776.5,1395635.5,0,0,3600.1169 -9099,11219,20453,20452,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,7.7795162,7.7557878,3.5401993,1,0,-9,8,0,4,-51.85778,0,0,0,59,2,4,1,-9,3,2019,1,2,18,6,28,28,15,1,1,1,0,9.9070635,9.9070635,0,0,0,0,0,0,0,0,0,0,0,4.4440022,3.6624067,0,0,44.77,37.290001,54.290001,49.119999,4,1,1,0,0,10,5,0,776.5,1395635.5,0,0,3600.1169 -9099,11220,20454,-9,20453,-9,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,7.9573078,7.9768362,0,3,0,0,0,-9,0,-1043.071,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,48,48,15,1,0,-9,1,7.5531669,7.5531669,0,0,0,0,0,0,0,0,0,0,0,4.0270848,0,0,0,50,57,-9,-9,5,1,1,0,0,10,4,0,708,-12094.245,0,0,1543.2843 -9100,11221,20455,20456,20457,-9,3,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,8.1707563,8.2175856,0,1,0,-9,17,0,-15,84.85598,0,0,0,65,2,3,1,3,3,2019,1,1,8,0,39,42,15,1,0,1,0,9.6959801,9.6959801,0,0,0,0,0,0,0,7,1,1,0,0,0,2.652329,3,56.349998,51.16,54.369999,54.799999,6,3,4,0,0,8,5,1,241,144253.75,0,0,2664.1438 -9100,11221,20456,20455,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,8.5064745,8.7646809,0,1,0,-9,17,0,15,-19.946032,0,0,0,50,1,3,1,3,2,2019,1,3,9,0,38,38,15,1,0,1,0,17.189367,17.189367,0,0,0,0,0,0,0,0,1,1,0,4.100203,0,0,0,54.369999,54.799999,56.349998,51.16,6,1,1,0,0,8,5,1,241,144253.75,0,0,2664.1438 -9100,11222,20457,-9,-9,-9,2,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,6.3709989,5.9365005,3,0,0,0,-9,0,-1047.438,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82646209,6.0847325,0,0,57,29.530001,-9,-9,6,3,4,0,0,8,2,1,1414,152836.2,0,0,-35.079426 -9101,11223,20458,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-942.34589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.4655657,0,0,0,1,1,0,0,0,0,0,58.810001,34.450001,-9,-9,7,1,1,0,0,13,1,1,1589,171843.34,0,0,-123.51696 -9101,11224,20459,-9,-9,20458,2,1,1,48,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1012.1028,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.779999,38.23,-9,-9,6,1,1,1,0,13,1,1,1233,147260.08,0,0,916.70728 -9102,11225,20460,20461,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,1,0,6.1939034,6.0498104,1,0,-9,1,-9,2,81.096375,-9,0,0,77,2,1,3,-9,-9,2019,4,2,28,11,0,0,15,4,1,4,0,0,0,1,4.1870661,6.0365467,0,0,1.3331633,71.151917,120,1,1,0,2.3611474,6.0773935,124.1002,2,35.450001,24.41,19.01,22.639999,1,1,1,0,0,9,2,1,301.5,537020.75,0,0,2131.8772 -9102,11225,20461,20460,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,1,1,0,4.0561481,4.2487125,1,0,-9,1,-9,-2,-39.528706,-9,0,0,79,2,1,3,-9,-9,2019,4,1,33,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6574523,0,0,19.01,22.639999,35.450001,24.41,1,1,1,0,1,9,2,1,301.5,537020.75,0,0,2131.8772 -9103,11226,20462,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-908.58856,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.830002,44.189999,-9,-9,3,1,1,0,0,12,1,0,753,-132661.58,0,0,1341.6625 -9104,11227,20463,-9,20464,20465,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.66174,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,380,2780251.5,0,0,8695.2383 -9104,11227,20464,20465,-9,-9,1,1,0,40,1,0,1,0,1,-9,2,1,0,0,5,7.39395,7.2940812,0,2,0,-9,8,0,-1,-52.156658,0,0,1,41,1,3,1,2,2,2019,1,3,7,0,32,35,15,1,0,1,0,5.1674085,5.1674085,0,0,0,0,0,0,0,0,1,1,0,3.1996078,0,0,0,54.099998,59.110001,48.060001,50.73,5,1,1,0,0,7,5,1,380,2780251.5,0,0,8695.2383 -9104,11227,20465,20464,-9,-9,3,1,1,41,1,0,1,0,1,-9,1,1,0,0,3,9.5793791,9.9569302,0,2,0,-9,2,0,1,66.982689,0,0,0,40,1,5,1,-9,-9,2019,1,1,10,3,60,60,15,1,0,1,0,31.029161,31.029161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.060001,50.73,54.099998,59.110001,3,1,1,0,0,7,5,1,380,2780251.5,0,0,8695.2383 -9105,11228,20466,-9,-9,-9,2,1,1,23,2,0,1,0,1,-9,2,1,0,0,4,0,0,0,3,0,-9,0,-9,0,-1095.2194,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.060001,58.639999,-9,-9,5,1,1,0,0,12,1,0,279,9709.4902,0,0,0 -9106,11229,20467,20468,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,8.0997105,8.1014738,0,1,0,-9,13,0,-3,-11.422606,0,0,0,65,2,2,3,-9,-9,2019,2,2,9,0,40,40,15,1,0,4,0,8.3165779,8.3165779,0,0,0,0,0,0,0,0,1,1,0,4.4019256,0,0,0,58.150002,52.91,39.630001,36.060001,7,1,1,0,0,6,3,1,1732.5,989900.88,0,0,1259.8535 -9106,11229,20468,20467,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,4,0,3,48.727455,0,0,0,62,2,4,1,-9,-9,2019,3,1,15,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3243179,0,0,0,39.630001,36.060001,58.150002,52.91,4,1,1,0,0,6,3,1,1732.5,989900.88,0,0,1259.8535 -9107,11230,20469,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,0,3,0,7.3069263,7.1745844,3,0,0,0,-9,0,-1042.3691,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.5122943,4.9752336,3,65.57,27.68,-9,-9,6,1,1,0,0,10,3,1,272,1247684.4,0,0,1206.9292 -9108,11231,20470,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,6.9926448,6.9958773,3,0,0,0,-9,0,-1022.5349,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.07166,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,5,2,1,566,226625.28,0,0,1250.0026 -9109,11232,20471,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-931.85889,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,1,1,0,0,2,1,1,993,-159886.3,0,0,-253.90448 -9110,11233,20472,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,0,4,8.5987301,9.0843563,0,3,0,0,0,-9,0,-930.14716,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,38,38,15,1,0,-9,0,20.122698,20.122698,0,0,0,0,0,0,0,0,0,0,0,1.886543,0,0,0,43.73,59.700001,-9,-9,6,1,1,0,0,13,5,1,585,102431.9,0,0,2300.8928 -9111,11234,20473,20474,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,4,8.6305971,8.4579163,0,1,0,-9,6,0,-2,-54.444267,0,1,0,28,2,5,1,-9,-9,2019,1,1,5,1,50,50,15,1,0,1,0,13.515143,13.515143,0,0,0,0,0,0,0,0,0,0,0,1.9460506,0,0,0,51.240002,58.84,51.73,58.82,5,1,1,0,0,5,5,1,677,29424.063,0,0,3252.6582 -9111,11234,20474,20473,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,0,5,8.1253214,7.9576969,0,1,0,-9,6,0,2,-17.490337,0,1,1,26,2,4,1,1,1,2019,1,2,13,3,38,37,15,1,0,1,0,9.3210077,9.3210077,0,0,0,0,0,0,0,0,0,0,0,1.3667127,0,0,0,51.73,58.82,51.240002,58.84,6,1,1,0,0,5,5,1,677,29424.063,0,0,3252.6582 -9112,11235,20475,20476,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.1448565,7.0550752,1,0,-9,56,0,0,-6.915204,0,0,0,78,3,3,3,2,2,2019,4,2,10,0,0,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1439705,6.7825933,0,0,56.099998,49.93,59.599998,46.990002,6,1,1,0,0,4,2,1,1219.5,650034.5,0,0,2278.2517 -9112,11235,20476,20475,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,9,-51.145672,-9,0,0,69,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.026228,0,0,0,59.599998,46.990002,56.099998,49.93,5,1,1,0,0,4,2,1,1219.5,650034.5,0,0,2278.2517 -9112,11236,20477,-9,20475,20476,3,1,1,50,3,0,0,0,3,-9,2,1,0,0,2,8.85501,8.816412,0,3,0,0,0,-9,0,-960.87408,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,0,15,1,0,-9,1,17.612787,17.612787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.939999,49.91,-9,-9,4,1,1,0,0,4,5,1,1193,28511.889,0,0,3026.0928 -9113,11237,20478,20479,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.7082043,7.8161707,0,1,0,-9,6,0,3,47.541,0,0,0,43,2,2,1,-9,-9,2019,1,1,8,0,36,35,15,1,0,1,0,7.9694057,7.9694057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.57,49.689999,6,1,1,0,0,8,4,0,667,593742.56,0,0,2368.896 -9113,11237,20479,20478,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,2,8.2591972,8.0905361,0,1,0,-9,6,0,-3,82.804268,0,0,0,46,2,4,1,-9,3,2019,1,2,9,0,39,47,15,1,0,1,0,8.3577433,8.3577433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,57.16,56.150002,7,1,1,0,0,8,4,0,667,593742.56,0,0,2368.896 -9113,11238,20480,-9,20478,20479,3,1,1,26,2,0,0,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-941.04169,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.02,58.849998,-9,-9,6,1,1,1,0,8,1,0,212,0,0,0,1197.4796 -9114,11239,20481,20482,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.6821003,7.0155973,1,0,-9,52,0,0,12.167542,0,0,0,70,2,3,3,2,2,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3851823,7.1257434,0,0,31.290001,61.290001,30.940001,61.650002,4,1,1,0,0,5,2,0,402.5,337459.41,0,0,2096.2109 -9114,11239,20482,20481,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,0,-146.11586,0,0,0,70,2,3,3,2,1,2019,4,1,23,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.940001,61.650002,31.290001,61.290001,3,1,1,0,0,5,2,0,402.5,337459.41,0,0,2096.2109 -9115,11240,20483,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,7.7220612,7.8748488,3,0,0,0,-9,0,-997.29523,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,5.6179843,7.5894198,7.9730616,3,47.549999,55.060001,-9,-9,6,1,1,0,0,2,3,1,410,649183.19,0,0,1118.3694 -9116,11241,20484,20485,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,2,9.2470322,9.5534716,7.4347677,1,0,-9,4,0,8,-19.779682,0,0,0,59,1,4,1,3,3,2019,1,2,8,0,30,25,15,1,0,1,0,49.431168,49.431168,0,0,0,0,0,0,0,0,1,1,0,6.9902406,7.6576576,0,0,53.779999,37.880001,54.200001,57.490002,6,1,1,0,0,8,5,1,1310.5,1396228.3,0,0,7347.7822 -9116,11241,20485,20484,-9,-9,2,1,0,59,1,0,0,0,1,-9,1,1,0,0,4,7.0289402,7.0461922,0,1,0,-9,4,0,-8,-42.797245,0,0,0,67,2,2,1,-9,-9,2019,1,1,3,0,24,30,15,1,0,1,0,6.1699219,6.1699219,0,0,0,0,0,0,0,2,1,1,0,8.0195065,0,4.3979278,3,54.200001,57.490002,53.779999,37.880001,6,1,1,0,0,8,5,1,1310.5,1396228.3,0,0,7347.7822 -9117,11242,20486,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,4,7.6739306,8.2591581,0,3,0,0,0,-9,0,-994.49707,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,40,37,15,1,1,-9,0,7.8840427,7.8840427,0,0,0,0,0,0,0,5.48,0,0,0,0,0,9.4007816,3,34.75,43.279999,-9,-9,3,1,1,0,1,5,4,1,76,69948.367,0,0,1579.6685 -9118,11243,20487,20488,-9,-9,1,1,0,54,1,0,0,0,3,-9,3,3,0,0,4,0,7.7279124,8.0427179,1,0,-9,7,0,0,38.367767,0,0,0,54,2,3,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5714161,8.0540018,0,0,57.16,56.150002,53.98,42.84,7,1,1,1,0,9,4,1,334.5,1632628.6,0,0,1987.8124 -9118,11243,20488,20487,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,7.8419781,7.7335887,0,1,0,-9,7,0,0,-59.56892,0,0,0,54,3,4,3,3,3,2019,2,1,9,0,19,19,15,1,0,3,0,12.861043,12.861043,0,0,0,0,0,0,0,0,0,0,0,4.3060279,0,0,0,53.98,42.84,57.16,56.150002,2,1,1,0,0,9,4,1,334.5,1632628.6,0,0,1987.8124 -9119,11244,20489,20490,-9,-9,2,1,0,42,1,0,1,0,1,-9,1,1,0,0,4,8.0725565,7.950933,0,2,0,-9,17,0,-1,-30.834599,0,0,1,43,2,4,1,2,2,2019,1,1,11,1,38,33,15,1,0,1,0,11.183003,11.183003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,52.43,55.57,6,1,1,0,0,2,4,1,1563,709851,0,0,3220.4717 -9119,11244,20490,20489,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.2613382,7.9254904,0,2,0,-9,17,0,1,-125.76897,0,0,0,42,1,4,1,2,2,2019,1,2,5,0,36,36,15,1,0,1,0,10.337125,10.337125,0,0,0,0,0,0,0,0,1,1,0,4.56741,0,0,0,52.43,55.57,45.91,59.889999,6,1,1,0,0,2,4,1,1563,709851,0,0,3220.4717 -9119,11244,20491,-9,20489,20490,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.1436,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,1563,709851,0,0,3220.4717 -9120,11245,20492,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,4,0,6.7174821,6.892808,3,0,0,0,-9,0,-1006.7946,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7922306,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,2,2,1,538,52301.164,0,0,-403.33173 -9121,11246,20493,20494,-9,-9,1,1,0,40,1,1,1,0,1,-9,5,1,0,0,5,0,0,0,2,0,-9,9,0,2,102.55794,0,0,1,38,1,4,1,2,2,2019,1,2,7,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,41.169998,59.310001,6,1,1,0,0,12,3,1,566,-67248.578,0,0,2105.405 -9121,11246,20494,20493,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,4,8.3585148,8.0778608,0,2,0,-9,9,0,-2,-26.633612,0,0,0,40,1,5,1,3,2,2019,1,1,7,0,40,38,15,1,0,1,0,9.4926386,9.4926386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,54.099998,59.110001,6,1,1,0,0,12,3,1,566,-67248.578,0,0,2105.405 -9121,11246,20495,-9,20493,20494,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1131.7936,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,3,1,566,-67248.578,0,0,2105.405 -9122,11247,20496,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,4,8.1627722,8.2012281,0,3,0,0,0,-9,0,-1041.2811,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,30,15,1,0,-9,0,16.196352,16.196352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,7,4,1,537,576356.31,0,0,2575.8093 -9123,11248,20497,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1030.1984,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.970001,41.169998,-9,-9,7,1,1,0,0,1,1,0,404,77381.133,0,0,738.41644 -9124,11249,20498,-9,20500,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1086.1818,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,0,1068.6666,78831.461,0,0,951.45093 -9124,11249,20499,-9,20500,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-887.18683,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,0,1068.6666,78831.461,0,0,951.45093 -9124,11249,20500,-9,-9,-9,1,1,0,27,3,0,2,0,2,-9,3,3,0,0,5,0,5.9557786,6.244956,4,0,-9,0,1,0,-986.92761,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7913609,0,0,0,34.119999,60.299999,-9,-9,7,1,1,1,0,10,2,0,1068.6666,78831.461,0,0,951.45093 -9125,11250,20501,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1084.8171,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,13,1,0,620,135373.48,0,0,565.32727 -9126,11251,20502,-9,20504,20503,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1146.9771,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1248.5,-48569.078,0,0,3982.833 -9126,11251,20503,20504,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,8.948946,8.8726044,0,2,0,-9,8,0,0,22.371796,0,0,0,47,2,3,1,1,2,2019,1,2,9,0,38,39,15,1,0,1,0,20.28966,20.28966,0,0,0,0,0,0,0,0,1,1,0,.77843845,0,0,0,51.830002,57.200001,43.599998,51.610001,5,1,1,0,0,8,4,1,1248.5,-48569.078,0,0,3982.833 -9126,11251,20504,20503,-9,-9,2,1,0,47,1,0,2,0,2,-9,1,1,0,0,3,7.0427208,6.7579489,0,2,0,-9,8,0,0,-89.69854,0,0,0,47,2,4,1,2,2,2019,1,1,15,4,28,18,15,1,1,1,0,5.4453392,5.4453392,0,0,0,0,0,0,0,0,1,1,0,7.3308496,0,0,0,43.599998,51.610001,51.830002,57.200001,5,1,1,0,0,8,4,1,1248.5,-48569.078,0,0,3982.833 -9126,11251,20505,-9,20504,20503,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.6501,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,4,1,1248.5,-48569.078,0,0,3982.833 -9127,11252,20506,20507,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.3889322,8.350544,0,1,0,-9,8,0,-8,-59.704662,0,0,0,64,1,4,1,3,2,2019,1,1,6,0,38,37,15,1,0,1,0,11.460108,11.460108,0,0,0,0,0,0,0,0,0,0,0,7.6015577,0,0,0,57.16,56.150002,54.790001,55.860001,6,3,4,0,0,9,5,1,695,2173884.5,0,0,4907.3594 -9127,11252,20507,20506,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,0,4,8.9051275,8.7769718,0,1,0,-9,27,0,8,55.994091,0,0,0,56,1,4,1,2,2,2019,1,2,4,0,38,37,15,1,0,1,0,22.544479,22.544479,0,0,0,0,0,0,0,0,0,0,0,4.9923615,0,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,9,5,1,695,2173884.5,0,0,4907.3594 -9128,11253,20508,20509,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,5,8.0939512,8.2818413,0,1,0,-9,1,-9,2,-5.451828,-9,1,0,26,1,3,1,-9,-9,2019,1,1,6,0,39,0,15,1,0,1,0,16.86982,16.86982,0,0,0,0,0,0,0,0,1,1,0,5.6173573,0,0,0,54.689999,57.470001,57.330002,53.459999,5,1,1,0,1,12,5,0,1170,116008.89,0,0,2921.959 -9128,11253,20509,20508,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,3,8.2120714,8.1295118,0,1,0,1,1,-9,-2,106.3499,0,1,1,28,2,5,1,-9,-9,2019,1,2,8,0,38,50,15,1,0,1,0,14.218235,14.218235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.689999,57.470001,5,1,1,0,0,12,5,0,1170,116008.89,0,0,2921.959 -9129,11254,20510,-9,20513,20512,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.3927,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,609.25,530868.25,0,0,3916.4924 -9129,11254,20511,-9,20513,20512,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.4129,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,609.25,530868.25,0,0,3916.4924 -9129,11254,20512,20513,-9,-9,1,1,1,33,1,0,2,0,1,-9,2,1,0,0,3,9.0132389,9.2713099,0,2,0,-9,14,0,3,42.154396,0,0,0,30,2,4,1,3,2,2019,1,2,9,1,46,37,15,1,0,1,0,26.467796,26.467796,0,0,0,0,0,0,0,0,1,1,0,5.1732016,0,0,0,49.630001,54.220001,52.43,55.57,5,1,1,0,0,2,5,1,609.25,530868.25,0,0,3916.4924 -9129,11254,20513,20512,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,0,4,7.1841807,7.2035809,0,2,0,-9,13,0,-3,-47.32209,0,0,1,33,1,3,1,2,2,2019,1,1,8,0,35,4,15,1,0,1,0,5.6679649,5.6679649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,49.630001,54.220001,7,1,1,0,0,2,5,1,609.25,530868.25,0,0,3916.4924 -9130,11255,20514,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,0,4,7.8389306,7.8362775,0,3,0,0,0,-9,0,-1005.4103,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,44,44,15,1,0,-9,0,6.7000198,6.7000198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.529999,50.880001,-9,-9,6,1,1,0,0,7,3,1,1155,375636.34,0,0,2016.5507 -9131,11256,20515,20516,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,9.5250978,9.4133348,0,2,0,-9,6,0,2,201.69284,0,0,0,41,2,5,3,-9,-9,2019,2,1,9,1,40,35,15,1,0,3,0,33.765739,33.765739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,47.52,58.09,6,1,1,0,0,12,5,1,691.59998,763717.88,0,0,3703.074 -9131,11256,20516,20515,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,12,0,-2,-72.396812,0,0,1,43,1,4,1,-9,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.52,58.09,51,56,7,1,1,0,0,12,5,1,691.59998,763717.88,0,0,3703.074 -9131,11256,20517,-9,20516,20515,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-900.66174,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,691.59998,763717.88,0,0,3703.074 -9131,11256,20518,-9,20516,20515,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-851.23853,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,691.59998,763717.88,0,0,3703.074 -9131,11256,20519,-9,20516,20515,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.57263,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,691.59998,763717.88,0,0,3703.074 -9132,11257,20520,20521,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,4,8.7295837,9.1184015,0,1,0,-9,27,0,-1,-82.434441,0,0,0,49,2,4,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,21.927523,21.927523,0,0,0,0,0,0,0,7,0,0,0,4.4095716,0,3.8844047,3,54.200001,57.490002,50.25,54.040001,6,1,1,0,0,5,5,1,292.5,86998.719,0,0,4229.7324 -9132,11257,20521,20520,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.8062658,7.3935461,0,1,0,-9,27,0,1,-5.1903901,0,0,0,48,3,4,1,2,2,2019,1,2,9,0,35,27,15,1,0,1,0,5.9890394,5.9890394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.25,54.040001,54.200001,57.490002,6,4,2,0,0,5,5,1,292.5,86998.719,0,0,4229.7324 -9132,11258,20522,-9,20521,20520,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.0641913,7.0084229,0,3,0,0,0,-9,0,-919.28638,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,4,0,30,44,15,1,0,-9,1,4.2111144,4.2111144,0,0,0,0,0,0,0,0,0,0,0,1.6558013,0,0,0,57.740002,49,-9,-9,7,4,2,0,0,5,2,1,644,0,0,0,-301.12192 -9133,11259,20523,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-937.14307,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.1889791,3,49,47,-9,-9,5,2,3,0,1,8,1,1,581,-100941.16,0,0,1192.6085 -9134,11260,20524,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,6.7711716,6.6952033,3,0,0,0,-9,0,-1012.3694,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7548484,6.6106586,0,0,38.75,43.02,-9,-9,3,1,1,0,0,1,2,1,1405,345078.41,0,0,2202.5769 -9135,11261,20525,20526,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,0,3,9.0036621,9.1254082,0,1,0,-9,33,0,3,64.158058,0,0,0,61,1,5,1,2,2,2019,1,1,10,1,12,20,15,1,0,1,0,70.650101,70.650101,0,0,0,0,0,0,0,0,0,0,0,1.5179816,0,0,0,52,47,57.060001,57.759998,5,1,1,0,0,11,5,1,337,1299318.1,0,0,3627.3271 -9135,11261,20526,20525,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,0,5,7.5434532,7.6187377,0,1,0,-9,35,0,-3,70.431595,0,0,0,64,1,3,1,2,2,2019,1,2,12,0,25,28,15,1,0,1,0,7.5765653,7.5765653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,52,47,6,1,1,0,0,11,5,1,337,1299318.1,0,0,3627.3271 -9136,11262,20527,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-983.59961,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.060001,48.59,-9,-9,6,1,1,0,0,7,1,0,605,0,0,0,1646.3629 -9137,11263,20528,20529,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,4,9.05478,9.5706749,8.6714363,1,0,-9,30,0,6,36.521,0,0,0,57,1,3,1,2,1,2019,1,2,17,6,24,51,15,1,1,1,0,39.657768,39.657768,0,0,0,0,0,0,0,0,0,0,0,9.5705385,0,0,0,52.34,56.950001,35.610001,55.450001,6,1,1,0,0,9,5,1,2002.5,875915.88,0,0,5586.8535 -9137,11263,20529,20528,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,0,3,0,6.3807392,6.0514522,1,0,-9,30,0,-6,-15.256209,0,0,0,63,1,4,1,2,2,2019,1,1,19,7,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1873364,0,0,0,35.610001,55.450001,52.34,56.950001,5,1,1,0,0,9,5,1,2002.5,875915.88,0,0,5586.8535 -9138,11264,20530,20531,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,0,3,0,5.7184744,5.838798,1,0,-9,10,0,-13,-98.279961,0,0,0,74,3,4,3,2,2,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7493429,5.5628366,0,0,40.650002,57.360001,60.119999,54.799999,5,1,1,0,0,7,4,1,560,2586166.5,0,0,4591.4458 -9138,11264,20531,20530,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,4,0,9.0953064,8.566267,1,0,-9,10,0,13,-11.125057,0,0,0,61,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7816081,8.4393711,0,0,60.119999,54.799999,40.650002,57.360001,7,1,1,0,0,7,4,1,560,2586166.5,0,0,4591.4458 -9139,11265,20532,20533,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,60,0,4,-40.603676,0,0,0,78,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9013847,0,0,0,61.119999,51.57,62.59,26.860001,6,1,1,0,0,9,2,0,1275.5,422609.44,0,0,842.72266 -9139,11265,20533,20532,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,5.3345537,5.202168,1,0,-9,61,0,-4,-108.67056,0,0,0,82,3,4,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,0,5.0759311,0,0,0,0,0,1,1,0,1.8813958,5.2276306,0,0,62.59,26.860001,61.119999,51.57,7,1,1,0,0,9,2,0,1275.5,422609.44,0,0,842.72266 -9140,11266,20534,20535,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,5,0,8.0943737,7.9535742,1,0,-9,8,0,2,-21.655792,0,0,0,77,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5751278,8.0892296,0,0,62.389999,56.709999,57.91,43.450001,7,1,1,0,0,12,3,1,868.5,1294976.8,0,0,2992.5149 -9140,11266,20535,20534,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,6.3094254,6.4378357,1,0,-9,8,0,-2,7.9609365,0,0,0,79,3,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9342887,6.3885636,0,0,57.91,43.450001,62.389999,56.709999,6,1,1,0,0,12,3,1,868.5,1294976.8,0,0,2992.5149 -9141,11267,20536,20537,-9,-9,1,1,0,43,1,0,1,0,3,-9,2,1,0,0,3,7.4521117,7.1193643,0,2,0,-9,12,0,-22,-8.7969456,0,0,1,65,3,3,3,3,3,2019,2,2,10,0,28,26,15,1,0,4,0,6.7597318,6.7597318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.119999,50.580002,39.740002,39.790001,3,2,3,0,0,6,2,0,329.66666,133523.31,0,0,1221.6814 -9141,11267,20537,20536,-9,-9,2,1,1,65,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,8,0,22,-70.598328,0,0,0,43,3,3,1,-9,-9,2019,3,1,12,1,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,39.790001,34.119999,50.580002,5,1,1,0,1,6,2,0,329.66666,133523.31,0,0,1221.6814 -9141,11267,20538,-9,20536,20537,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1020.2761,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,6,2,0,329.66666,133523.31,0,0,1221.6814 -9142,11268,20539,20540,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,2,7.1164279,6.978611,0,1,0,-9,3,0,0,-3.6054876,0,1,1,23,1,3,1,-9,-9,2019,1,1,16,5,16,0,15,1,1,1,0,9.4418621,9.4418621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.55,54.48,29.32,59.389999,5,1,1,0,0,6,4,0,928,42427.645,0,0,3380.7856 -9142,11268,20540,20539,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,0,3,8.1353073,7.9066601,0,1,0,-9,3,0,0,17.600056,0,1,0,23,1,2,1,3,3,2019,1,2,19,8,38,45,15,1,1,1,0,10.285881,10.285881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.32,59.389999,15.55,54.48,5,1,1,0,0,6,4,0,928,42427.645,0,0,3380.7856 -9143,11269,20541,20542,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.5562115,8.5355291,7.8606386,1,0,-9,6,0,1,18.858351,0,0,0,54,2,4,1,-9,-9,2019,1,1,9,1,37,37,15,1,0,1,0,11.784355,11.784355,0,0,0,0,0,0,0,0,0,0,0,0,8.1972723,0,0,54,53,55.790001,52.619999,6,1,1,0,0,6,5,1,1276.5,640185.94,0,0,3195.2671 -9143,11269,20542,20541,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,7.2550912,7.031342,0,1,0,-9,31,0,-1,-106.56279,0,0,0,55,2,4,1,3,3,2019,1,2,12,0,19,19,15,1,0,1,0,7.4794383,7.4794383,0,0,0,0,0,0,0,0,0,0,0,5.662106,0,0,0,55.790001,52.619999,54,53,6,1,1,0,0,6,5,1,1276.5,640185.94,0,0,3195.2671 -9143,11270,20543,-9,20542,20541,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,6.8428097,7.1347957,0,3,0,0,0,-9,0,-1015.6778,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,37,15,1,0,-9,1,2.85149,2.85149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,6,2,1,467,-295791.16,0,0,1229.6041 -9144,11271,20544,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,4,3,0,0,2,7.8722038,8.4618235,7.6844049,3,0,0,0,-9,0,-940.04053,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,16,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1296997,7.5722308,0,0,53.529999,36.450001,-9,-9,6,1,1,0,0,4,5,0,1546,1521953.3,0,0,1207.4209 -9145,11272,20545,-9,20547,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.31134,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,677,52754.402,0,0,2241.3962 -9145,11272,20546,-9,20547,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1101.7031,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,677,52754.402,0,0,2241.3962 -9145,11272,20547,-9,-9,-9,1,1,0,35,3,0,2,0,1,-9,2,1,0,0,3,6.7785087,6.6698351,0,4,0,0,0,-9,0,-948.91815,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,14,15,1,0,-9,0,7.4701357,7.4701357,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.1997194,3,38.110001,41.950001,-9,-9,3,1,1,0,0,6,2,0,677,52754.402,0,0,2241.3962 -9146,11273,20548,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,2,0,7.2034426,7.0299711,3,0,0,0,-9,0,-1049.704,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.626658,6.8164053,4.5920825,3,46.220001,34.57,-9,-9,6,1,1,0,0,1,3,1,751,233808.33,0,0,3005.1018 -9147,11274,20549,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,6.9541478,7.4861193,3,0,0,0,-9,0,-994.84216,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3736024,7.2379265,0,0,58.07,46.290001,-9,-9,7,1,1,0,0,4,3,1,1385,246738.28,0,0,-478.12726 -9148,11275,20550,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,2,8.0530291,8.2425623,0,3,0,0,0,-9,0,-1038.4686,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,38,30,15,1,0,-9,0,8.4193287,8.4193287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.82,36.189999,-9,-9,3,3,4,0,1,8,4,0,367,48677.277,0,0,477.01224 -9149,11276,20551,-9,-9,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.063571,8.4522486,0,3,0,0,0,-9,0,-1052.6273,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,38,41,15,1,0,-9,1,10.952987,10.952987,0,0,0,0,0,0,0,2,0,0,0,0,0,14.201228,3,40.720001,54.380001,-9,-9,5,1,1,0,0,11,4,0,657,59634.805,0,0,1847.3867 -9149,11277,20552,-9,-9,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,5,8.0202894,8.2170467,0,3,0,0,0,-9,0,-969.4389,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,0,15,1,0,-9,1,8.0565634,8.0565634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.700001,51.580002,-9,-9,7,1,1,0,0,11,4,0,97,56197.832,0,0,1677.3846 -9150,11278,20553,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,0,3,7.6035275,7.5914931,0,4,0,0,0,-9,0,-977.9696,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,30,30,15,1,0,-9,0,7.2870021,7.2870021,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.279999,57.07,-9,-9,3,1,1,0,1,12,3,0,717.5,95325.734,0,0,1935.1908 -9150,11278,20554,-9,20553,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-825.49847,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,12,3,0,717.5,95325.734,0,0,1935.1908 -9151,11279,20555,20556,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,4,7.6585245,7.6193051,0,1,0,-9,2,0,0,63.460106,0,0,1,41,2,4,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,7.536932,7.536932,0,0,0,0,0,0,0,0,0,0,0,1.2908889,0,0,0,54.790001,55.860001,51,56,5,1,1,0,0,4,5,1,1445.5,2197346.8,0,0,3851.6523 -9151,11279,20556,20555,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,0,4,8.9285154,9.07547,0,1,0,-9,2,0,0,161.52837,-9,0,0,41,2,4,1,3,2,2019,1,2,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,54.790001,55.860001,6,1,1,0,0,4,5,1,1445.5,2197346.8,0,0,3851.6523 -9152,11280,20557,-9,-9,-9,1,1,0,57,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1037.0887,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8911724,3,56.77,52.220001,-9,-9,5,1,1,0,0,6,1,1,516,-42107.82,0,0,542.41498 -9153,11281,20558,-9,-9,-9,4,1,1,21,2,0,1,0,2,-9,2,1,0,0,2,0,0,0,3,0,0,0,-9,0,-897.37042,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,48,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,1,1,0,0,4,1,1,260,0,0,0,0 -9154,11282,20559,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,4,7.8430772,8.0801687,0,3,0,-9,0,-9,0,-973.69318,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,24,0,15,1,0,-9,0,15.730975,15.730975,0,0,0,0,0,0,0,2,0,0,0,0,0,.11099052,3,51.240002,58.84,-9,-9,6,1,1,0,0,4,4,1,607,62117.176,0,0,1390.1871 -9155,11283,20560,20561,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,0,3,8.833787,8.7763729,0,2,0,-9,10,0,-6,80.108009,0,0,1,39,1,3,3,2,2,2019,2,1,15,3,47,47,15,1,0,3,0,13.851271,13.851271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.490002,55.779999,41.23,59.349998,4,1,1,0,0,1,4,1,739,434255.75,0,0,1128.1207 -9155,11283,20561,20560,-9,-9,1,1,1,39,1,0,2,0,1,-9,97,3,0,0,3,0,0,0,2,0,-9,10,0,6,-50.276302,0,0,0,33,1,3,1,2,3,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,40.490002,55.779999,5,1,1,0,1,1,4,1,739,434255.75,0,0,1128.1207 -9155,11283,20562,-9,20560,20561,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.30798,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,4,1,739,434255.75,0,0,1128.1207 -9155,11283,20563,-9,20560,20561,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.66174,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,4,1,739,434255.75,0,0,1128.1207 -9156,11284,20564,20565,-9,-9,2,1,0,38,1,0,0,0,2,-9,2,1,0,0,4,8.2659235,8.2869139,0,1,0,-9,1,-9,6,-16.489809,-9,0,1,32,1,4,1,-9,-9,2019,1,1,11,2,37,0,15,1,0,1,0,12.281242,12.281242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,51.830002,57.200001,5,1,1,0,0,4,4,1,789,62453.977,0,0,1749.7015 -9156,11284,20565,20564,-9,-9,1,1,1,32,1,0,0,0,1,-9,1,1,0,0,4,6.0584493,6.6181412,0,1,0,1,1,-9,-6,149.01585,0,0,0,38,2,4,1,2,2,2019,1,2,13,2,50,40,15,1,0,1,0,1.6614122,1.6614122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,50,55,6,1,1,0,0,4,4,1,789,62453.977,0,0,1749.7015 -9157,11285,20566,20567,-9,-9,1,1,1,79,1,0,0,0,3,-9,2,1,0,0,4,7.7451653,7.7777147,0,1,0,-9,8,0,3,-35.398678,0,0,0,76,3,3,3,3,3,2019,2,2,9,0,28,28,15,1,0,4,0,10.571268,10.571268,0,0,0,0,0,0,0,0,1,1,0,1.4346254,0,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,7,3,1,876.5,1888593.1,0,0,1851.2936 -9157,11285,20567,20566,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-3,-114.27106,0,0,0,79,3,4,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7591275,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,7,3,1,876.5,1888593.1,0,0,1851.2936 -9158,11286,20568,20569,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,4,8.6474094,8.1847878,0,1,0,-9,7,0,3,-56.88401,0,0,0,28,1,4,1,-9,-9,2019,1,1,13,3,38,39,15,1,0,1,0,12.15422,12.15422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.630001,63.110001,49.709999,49.91,5,1,1,0,0,12,5,1,604,375358.44,0,0,3308.0896 -9158,11286,20569,20568,-9,-9,1,1,0,28,1,0,0,0,1,-9,5,1,0,0,4,8.6180153,8.4029655,0,1,0,-9,7,0,-3,-48.320404,0,1,1,31,1,4,1,-9,-9,2019,1,2,11,0,40,40,15,1,0,1,0,15.789299,15.789299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.709999,49.91,38.630001,63.110001,6,1,1,0,0,12,5,1,604,375358.44,0,0,3308.0896 -9159,11287,20570,20571,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,5,9.1285934,8.9280949,0,1,0,-9,1,-9,4,-181.65698,-9,0,0,31,1,4,1,-9,-9,2019,1,1,11,0,40,0,15,1,0,1,0,33.07077,33.07077,0,0,0,0,0,0,0,0,1,1,0,3.9705207,0,0,0,57.060001,57.759998,56.16,35.099998,6,1,1,0,0,10,5,1,203.5,262888.81,0,0,3227.2708 -9159,11287,20571,20570,-9,-9,1,1,0,31,1,0,0,0,1,-9,5,1,0,0,4,0,0,0,1,0,-9,1,-9,-4,-107.1036,-9,0,1,35,1,5,1,2,1,2019,1,2,5,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.16,35.099998,57.060001,57.759998,7,1,1,0,0,10,5,1,203.5,262888.81,0,0,3227.2708 -9160,11288,20572,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,0,4,8.8219852,8.8159952,0,3,0,0,0,-9,0,-1065.9244,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,38,38,15,1,1,-9,0,19.051661,19.051661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.440001,65.400002,-9,-9,5,1,1,0,0,12,5,1,1874,-86067.758,0,0,2828.7029 -9161,11289,20573,20575,-9,-9,1,1,1,44,1,0,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,20,0,0,-36.407406,0,0,0,44,2,2,1,3,3,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,34.880001,31.41,6,2,3,1,0,4,2,1,397.33334,52743.73,0,0,1767.45 -9161,11289,20574,-9,20575,20573,5,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.6482,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,4,2,1,397.33334,52743.73,0,0,1767.45 -9161,11289,20575,20573,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,2,7.6626163,7.4874172,0,2,0,-9,20,0,0,82.763863,0,0,1,44,3,4,3,3,2,2019,2,1,23,11,17,17,15,1,1,3,0,12.595379,12.595379,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.486479,3,34.880001,31.41,52,56,3,2,3,0,1,4,2,1,397.33334,52743.73,0,0,1767.45 -9161,11290,20576,-9,20575,20573,3,1,0,23,2,0,2,0,2,-9,2,1,0,0,4,6.9065809,6.9068017,0,3,0,0,0,-9,0,-1115.7935,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,4,2,1,173,68913.281,0,0,2220.2124 -9161,11291,20577,-9,20575,20573,4,1,0,20,2,0,2,0,2,-9,2,1,0,0,4,7.0670705,7.5672941,0,3,0,0,0,-9,0,-975.92847,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,4,3,1,259,-47745.949,0,0,429.22415 -9162,11292,20578,20579,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.5652709,7.5180659,1,0,-9,8,0,4,-73.999924,0,0,0,63,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0326843,7.5274372,0,0,52,48,60.740002,34.009998,5,1,1,0,0,4,2,1,517,522750.63,0,0,1325.7717 -9162,11292,20579,20578,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,4.8444471,4.3767514,1,0,-9,47,0,-4,-58.21582,0,0,0,67,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4860544,0,0,60.740002,34.009998,52,48,6,1,1,0,0,4,2,1,517,522750.63,0,0,1325.7717 -9163,11293,20580,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,5.619637,5.7993693,3,0,-9,0,1,0,-976.09729,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2609105,6.1577253,0,0,44.490002,61.790001,-9,-9,6,1,1,0,0,6,2,1,659,168436.14,0,0,-498.59753 -9164,11294,20581,-9,20582,20584,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.48114,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,498.25,433385.34,0,0,3943.8574 -9164,11294,20582,20584,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,9.0821934,9.2504616,0,2,0,-9,13,0,1,-136.51392,0,0,1,39,2,2,1,2,2,2019,1,2,11,2,40,42,15,1,0,1,0,26.730391,26.730391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.619999,26.75,48.939999,6,1,1,0,0,9,5,1,498.25,433385.34,0,0,3943.8574 -9164,11294,20583,-9,20582,20584,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.076,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,498.25,433385.34,0,0,3943.8574 -9164,11294,20584,20582,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,0,2,6.6160131,6.6721244,0,2,0,-9,13,0,-1,23.404325,0,0,0,40,1,3,1,2,2,2019,1,1,15,4,20,20,15,1,1,1,0,3.7307749,3.7307749,0,0,0,0,0,0,0,0,1,1,0,5.773561,0,0,0,26.75,48.939999,50.18,52.619999,4,1,1,0,0,9,5,1,498.25,433385.34,0,0,3943.8574 -9165,11295,20585,20586,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,0,5,7.596262,8.1323109,7.0936069,1,0,-9,6,0,0,27.51585,0,0,0,58,2,4,1,-9,-9,2019,1,2,11,1,31,32,15,1,0,1,0,8.7619772,8.7619772,0,0,0,0,0,0,0,0,0,0,0,0,7.1814456,0,0,51.139999,60.450001,57.16,56.150002,6,1,1,0,0,13,4,1,471,124852.33,0,0,3373.4834 -9165,11295,20586,20585,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.6629462,7.305079,0,1,0,-9,37,0,0,-31.940584,0,0,0,58,3,5,1,2,2,2019,1,1,7,0,26,28,15,1,0,1,0,7.3484635,7.3484635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.139999,60.450001,6,1,1,0,0,13,4,1,471,124852.33,0,0,3373.4834 -9165,11296,20587,-9,20586,20585,3,1,0,22,2,0,0,1,1,0,7,2,0,0,3,6.1982288,6.0035849,0,3,0,0,0,-9,0,-905.8302,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,1,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.610001,56.93,-9,-9,7,1,1,0,0,13,2,1,313,46731.938,0,0,-111.60851 -9166,11297,20588,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,0,3,0,7.7144308,7.7970796,3,0,0,0,-9,0,-1100.14,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9499693,0,0,38.759998,40.189999,-9,-9,3,1,1,0,0,11,3,1,477,513573.66,0,0,982.89111 -9167,11298,20589,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,4,8.3583326,8.3674583,0,3,0,0,0,-9,0,-978.65289,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,39,39,15,1,1,-9,0,14.249246,14.249246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.360001,59.41,-9,-9,5,1,1,0,0,4,5,1,217,163366.8,0,0,1838.3612 -9168,11299,20590,20591,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.8532996,6.8876042,1,0,-9,6,0,-7,-42.182652,0,0,0,74,2,4,3,2,3,2019,4,1,7,0,0,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4715557,6.2759852,0,0,56.5,48.330002,58.150002,52.91,6,1,1,0,0,10,2,1,253,741777.63,0,0,1642.2158 -9168,11299,20591,20590,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.0945492,7.0671096,1,0,-9,6,0,7,-82.369019,0,0,0,67,2,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2970133,7.0932016,0,0,58.150002,52.91,56.5,48.330002,7,1,1,0,0,10,2,1,253,741777.63,0,0,1642.2158 -9169,11300,20592,20593,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,5,8.0439148,8.156209,0,1,0,-9,4,0,-1,-25.077927,0,0,0,46,2,3,1,-9,-9,2019,1,1,22,10,38,38,15,1,1,1,0,9.5697479,9.5697479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.99,64.139999,32.380001,40.32,2,1,1,0,0,5,4,1,405,1211064.3,0,0,3776.7676 -9169,11300,20593,20592,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,3,7.9697442,8.3319359,0,1,0,-9,4,0,1,46.297565,0,0,0,45,1,5,1,2,2,2019,1,2,24,11,42,40,15,1,1,1,0,9.1095772,9.1095772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.380001,40.32,25.99,64.139999,3,1,1,0,0,5,4,1,405,1211064.3,0,0,3776.7676 -9170,11301,20594,-9,20595,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1155.4977,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,860,-58857.43,0,0,1270.9142 -9170,11301,20595,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,0,3,7.174262,7.069201,0,4,0,0,0,-9,0,-922.5816,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,21,28,15,1,0,-9,0,6.8802052,6.8802052,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.400002,55.389999,-9,-9,2,1,1,0,0,2,2,0,860,-58857.43,0,0,1270.9142 -9171,11302,20596,20597,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,5,12.047468,0,0,0,69,2,3,3,-9,-9,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2138581,0,0,0,60.119999,54.799999,64.82,40.380001,7,1,1,0,0,5,2,1,233,366293.56,0,0,2277.6724 -9171,11302,20597,20596,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.7463274,6.438272,1,0,-9,7,0,-5,-47.353264,0,0,0,74,2,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4768553,6.7589622,0,0,64.82,40.380001,60.119999,54.799999,7,1,1,0,0,5,2,1,233,366293.56,0,0,2277.6724 -9172,11303,20598,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,8,3,1,1,1,5.1291866,6.691051,6.3160567,3,0,0,0,-9,0,-1018.8223,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,6,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2735434,6.4262228,0,0,31.950001,26.360001,-9,-9,2,1,1,0,0,9,2,1,343,60775.66,0,0,2915.1216 -9173,11304,20599,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,2,1,0,0,5,6.3606544,6.682652,5.1938615,3,0,0,0,-9,0,-924.54559,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,9,9,15,1,0,-9,0,9.720253,9.720253,0,0,0,0,0,0,0,7,1,1,0,5.6656055,5.5332327,5.5256085,3,58.23,48.98,-9,-9,4,1,1,0,0,12,2,1,519,-125909.27,0,0,1811.5815 -9173,11305,20600,-9,-9,-9,2,1,1,52,2,0,0,0,2,-9,8,3,1,1,5,0,0,0,3,0,0,0,-9,0,-938.4754,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,1,1,1736,0,0,0,1250.3358 -9174,11306,20601,-9,20603,20604,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.41168,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,1,1049.75,280123.59,0,0,3647.3374 -9174,11306,20602,-9,20603,20604,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.6784,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,1,1049.75,280123.59,0,0,3647.3374 -9174,11306,20603,20604,-9,-9,2,1,0,34,1,1,2,0,1,-9,5,1,0,0,4,8.6356497,8.4223108,0,2,0,-9,10,0,-1,72.027924,0,0,1,35,2,4,1,2,2,2019,1,1,24,9,38,34,15,1,1,1,0,16.054678,16.054678,0,0,0,0,0,0,0,14.5,1,1,0,1.0147552,0,24.417046,3,14.91,68.970001,54.200001,57.490002,6,1,1,0,1,7,4,1,1049.75,280123.59,0,0,3647.3374 -9174,11306,20604,20603,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,4,8.5977707,8.3207617,0,2,0,-9,10,0,1,-39.693581,0,0,0,34,1,4,1,2,2,2019,1,2,9,2,39,39,15,1,0,1,0,11.511058,11.511058,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,54.200001,57.490002,14.91,68.970001,6,1,1,0,0,7,4,1,1049.75,280123.59,0,0,3647.3374 -9175,11307,20605,20607,-9,-9,2,1,0,29,1,1,1,0,1,-9,5,1,0,0,5,8.6531572,8.6769762,0,2,0,-9,6,0,-4,113.57902,0,1,1,33,1,3,1,-9,-9,2019,1,1,6,0,48,48,15,1,0,1,0,16.266159,16.266159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,44.700001,53.68,6,1,1,0,0,5,5,1,4686.3335,94303,0,0,4105.7349 -9175,11307,20606,-9,20605,20607,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1054.1375,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,4686.3335,94303,0,0,4105.7349 -9175,11307,20607,20605,-9,-9,1,1,1,33,1,1,1,0,1,-9,1,1,0,0,3,8.665143,8.8185072,0,2,0,-9,6,0,4,14.080228,0,0,0,29,1,5,1,1,2,2019,1,2,8,0,45,45,15,1,0,1,0,14.486322,14.486322,0,0,0,0,0,0,0,0,1,1,0,1.3633305,0,0,0,44.700001,53.68,57.060001,57.759998,6,1,1,0,0,5,5,1,4686.3335,94303,0,0,4105.7349 -9176,11308,20608,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,0,2,7.6380053,7.3991675,0,3,0,0,0,-9,0,-1001.6705,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,39,42,15,1,0,-9,0,5.5252957,5.5252957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,44.91,-9,-9,6,1,1,0,1,12,3,1,1697,389693.66,0,0,-1664.7301 -9177,11309,20609,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,2,7.9164305,8.1328287,0,3,0,0,0,-9,0,-997.23828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,45,45,15,1,0,-9,0,10.144258,10.144258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.990002,25.860001,-9,-9,5,3,4,0,1,9,4,1,1567,518236.16,0,0,2255.8413 -9178,11310,20610,20611,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,9.298645,9.5135155,0,1,0,-9,30,0,7,-13.140659,0,0,0,48,2,3,1,2,2,2019,1,1,9,0,40,38,15,1,0,1,0,43.371284,43.371284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,58.32,50.220001,5,1,1,0,0,8,5,1,684,528862.69,0,0,1798.0616 -9178,11310,20611,20610,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.4580288,8.2265768,0,1,0,-9,30,0,-7,60.287716,0,0,0,55,2,4,1,3,2,2019,1,2,6,0,30,38,15,1,0,1,0,18.238625,18.238625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,58.150002,52.91,6,1,1,0,0,8,5,1,684,528862.69,0,0,1798.0616 -9178,11311,20612,-9,20611,20610,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.3873625,8.4722471,0,3,0,0,0,-9,0,-966.66156,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,48,15,1,0,-9,1,11.802409,11.802409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,5,1,1054,48297.563,0,0,642.33148 -9178,11312,20613,-9,20611,20610,4,1,0,21,2,0,0,0,2,-9,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1026.1008,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,8,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.40289825,0,0,0,21.209999,56.490002,-9,-9,4,1,1,0,1,8,1,1,450,103273.28,0,0,1283.2667 -9179,11313,20614,-9,-9,-9,3,1,0,24,2,0,1,0,2,-9,2,1,0,0,3,6.6271315,6.7986693,0,3,0,0,0,-9,0,-892.229,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,30,12,16,20,15,1,1,-9,1,6.8670225,6.8670225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.55,66.550003,-9,-9,2,1,1,0,0,2,2,1,566,-476.97507,0,0,1305.0974 -9180,11314,20615,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-922.92609,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,7,0,0,15,4,1,-9,0,0,0,1,0,0,5.7495131,0,0,0,0,1,1,0,0,0,0,0,36.43,41.700001,-9,-9,6,1,1,0,0,13,1,1,1237,86645.414,0,0,1852.6251 -9181,11315,20616,20617,-9,-9,1,1,0,35,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,12,0,-5,-8.0687428,0,0,1,40,1,4,1,2,1,2019,1,2,11,1,20,28,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,51.16,49.060001,58.639999,5,1,1,0,0,12,5,1,325.33334,727036.88,0,0,3920.5854 -9181,11315,20617,20616,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,0,4,9.5483971,9.6011724,0,2,0,-9,12,0,5,127.21046,0,0,0,35,2,3,1,2,1,2019,1,1,12,0,50,48,15,1,0,1,0,28.874281,28.874281,0,0,0,0,0,0,0,0,0,0,0,6.9679651,0,0,0,49.060001,58.639999,45.32,51.16,6,1,1,0,0,12,5,1,325.33334,727036.88,0,0,3920.5854 -9181,11315,20618,-9,20616,20617,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-814.64227,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,325.33334,727036.88,0,0,3920.5854 -9182,11316,20619,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-938.54071,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,12,1,1,620,222554.41,0,0,413.51093 -9183,11317,20620,20621,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,8.3813028,8.3064356,0,1,0,-9,4,0,-2,51.865078,-9,0,0,47,2,4,1,-9,-9,2019,1,1,6,0,35,0,15,1,0,1,0,12.224939,12.224939,0,0,0,0,0,0,0,2,0,0,0,3.9726946,0,8.5469999,3,61.27,46.029999,58.150002,52.91,1,1,1,0,0,11,5,1,573,602747.5,0,0,5580.3359 -9183,11317,20621,20620,-9,-9,1,1,1,47,1,0,0,0,2,-9,1,1,0,0,4,9.4977093,9.3695097,0,1,0,-9,4,0,2,133.45372,0,0,0,45,1,4,1,2,3,2019,1,2,7,0,35,40,15,1,0,1,0,37.227547,37.227547,0,0,0,0,0,0,0,2,0,0,0,7.3429861,0,2.2103555,3,58.150002,52.91,61.27,46.029999,6,1,1,0,0,11,5,1,573,602747.5,0,0,5580.3359 -9184,11318,20622,20623,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.0855017,7.4843264,0,1,0,-9,36,0,-3,-55.557957,0,0,0,61,2,3,1,3,3,2019,1,1,5,0,25,30,15,1,0,1,0,6.1969337,6.1969337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,3,1,1,0,0,1,3,0,697,112470.6,0,0,725.71252 -9184,11318,20623,20622,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,6.8909326,7.2358117,0,1,0,-9,34,0,3,-3.6670418,0,0,0,58,2,4,1,3,-9,2019,1,2,5,0,0,12,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,5,1,1,0,1,1,3,0,697,112470.6,0,0,725.71252 -9185,11319,20624,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,3,0,6.8505979,7.0069089,3,0,0,0,-9,0,-910.64648,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1192112,6.8256226,0,3,62.27,48.470001,-9,-9,6,1,1,0,0,7,2,1,671,1071343.3,0,0,1689.2017 -9186,11320,20625,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,5,9.0793343,9.2131557,0,3,0,0,0,-9,0,-1054.0941,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,60,60,15,1,0,-9,0,15.822899,15.822899,0,0,0,0,0,0,0,7,1,1,0,1.6110274,0,4.9201889,3,51.73,58.82,-9,-9,5,1,1,0,0,6,5,1,243,1062687.5,0,0,3150.9719 -9186,11321,20626,-9,20625,-9,2,1,1,22,2,0,0,0,2,0,7,2,0,0,3,5.1985922,5.4837704,0,3,0,0,0,-9,0,-938.69232,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,6,2,1,1147,144279.69,0,0,991.71973 -9187,11322,20627,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,1,2,0,6.0349817,5.8090672,3,0,0,0,-9,0,-1055.2067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.0304732,18.194485,3,62.119999,37.939999,-9,-9,7,1,1,0,0,5,2,0,547,282134.66,0,0,1892.2419 -9187,11323,20628,-9,20627,-9,2,1,1,37,2,0,0,0,2,-9,2,1,0,0,5,7.7294331,7.8574262,0,3,0,0,0,-9,0,-937.86597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,38,35,15,1,0,-9,1,6.3374262,6.3374262,0,0,0,0,0,0,0,2,1,1,0,3.1350808,0,1.1250081,3,52.32,57.18,-9,-9,5,1,1,0,0,5,3,0,2018,34300.344,0,0,829.27802 -9188,11324,20629,20630,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,36,0,2,79.705231,0,0,0,71,3,3,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.76618,1,43.84,45.139999,37.849998,48.75,5,1,1,0,0,4,3,1,348,844113.75,0,0,2134.8779 -9188,11324,20630,20629,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.8174553,7.5854087,1,0,-9,36,0,-2,-13.258398,0,0,0,73,3,2,3,2,3,2019,4,2,28,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.3913264,7.5457077,119.04282,1,37.849998,48.75,43.84,45.139999,3,1,1,0,0,4,3,1,348,844113.75,0,0,2134.8779 -9189,11325,20631,20632,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,0,4,8.629405,8.7913313,0,2,0,-9,3,0,-4,82.546066,-9,1,0,32,2,3,1,-9,-9,2019,1,1,8,0,50,0,15,1,0,1,0,14.044331,14.044331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.779999,56.369999,6,1,1,0,0,11,4,1,797.33331,376207.78,0,0,3337.9521 -9189,11325,20632,20631,-9,-9,1,1,0,32,1,1,1,0,2,-9,2,1,0,0,3,7.413281,7.4094038,0,2,0,-9,3,0,4,37.200291,0,0,1,28,2,4,1,2,-9,2019,1,2,9,1,25,38,15,1,0,1,0,7.1797929,7.1797929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.779999,56.369999,54.200001,57.490002,6,1,1,0,0,11,4,1,797.33331,376207.78,0,0,3337.9521 -9189,11325,20633,-9,20632,20631,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.33551,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,797.33331,376207.78,0,0,3337.9521 -9190,11326,20634,-9,-9,-9,1,1,0,70,2,0,0,0,1,-9,4,3,0,0,3,0,8.1382065,8.3167601,3,0,0,0,-9,0,-1029.2794,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86663568,8.0674086,0,0,49.52,56.950001,-9,-9,7,1,1,0,0,12,4,1,705,501985.28,0,0,2058.78 -9191,11327,20635,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,3,9.0530558,8.7868633,0,1,0,-9,6,0,1,33.477932,0,0,0,-9,-9,-9,-9,1,1,2019,-9,2,8,0,55,60,15,1,0,-9,0,14.605928,14.605928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,51,57,6,1,1,0,0,11,5,0,671,93628.578,0,0,2124.2241 -9192,11328,20636,20637,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,8.4069633,8.6019869,0,1,0,-9,41,0,0,0,0,0,0,61,2,3,1,3,3,2019,1,2,6,0,34,32,15,1,0,1,0,13.517938,13.517938,0,0,0,0,0,0,0,0,0,0,0,8.3756227,0,0,0,56.950001,46.689999,35.950001,53.970001,5,1,1,0,0,7,5,1,986,1786579.8,0,0,5014.0273 -9192,11328,20637,20636,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,8.331358,8.5155697,0,1,0,-9,41,0,0,0,0,0,0,61,1,3,1,3,3,2019,1,1,15,3,26,30,15,1,0,1,0,16.950668,16.950668,0,0,0,0,0,0,0,0,0,0,0,7.3153377,0,0,0,35.950001,53.970001,56.950001,46.689999,5,1,1,0,0,7,5,1,986,1786579.8,0,0,5014.0273 -9193,11329,20638,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1082.9851,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4537492,0,0,0,49,48,-9,-9,5,1,1,0,0,2,1,0,511,0,0,0,2241.8938 -9194,11330,20639,20640,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,2,8.543952,8.3091106,0,1,0,-9,8,0,4,137.69061,0,0,0,45,2,4,1,3,2,2019,1,1,15,3,42,40,15,1,0,1,0,11.074677,11.074677,0,0,0,0,0,0,0,0,0,0,0,2.2737606,0,0,0,38.150002,44.869999,49.119999,57.279999,4,1,1,0,0,4,4,1,530,92287.867,0,0,1570.7805 -9194,11330,20640,20639,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,7.5127249,7.4727244,0,1,0,-9,8,0,-4,154.67496,0,0,0,49,2,2,1,-9,-9,2019,1,2,12,0,26,33,15,1,0,1,0,9.8587713,9.8587713,0,0,0,0,0,0,0,0,0,0,0,2.2437584,0,0,0,49.119999,57.279999,38.150002,44.869999,4,1,1,0,0,4,4,1,530,92287.867,0,0,1570.7805 -9194,11331,20641,-9,20640,20639,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.8669529,7.5186458,0,3,0,0,0,-9,0,-959.97522,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,6.9253125,6.9253125,0,0,0,0,0,0,0,0,0,0,0,2.037365,0,0,0,50.48,56.400002,-9,-9,5,1,1,0,0,4,3,1,698,49840.164,0,0,1411.791 -9195,11332,20642,20643,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,9.3105173,9.287446,0,2,0,-9,14,0,1,47.990768,0,0,0,44,1,4,1,-9,3,2019,1,2,17,5,38,39,15,1,1,1,0,25.56251,25.56251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,63.099998,54.200001,57.490002,5,1,1,0,0,9,5,1,208.33333,299917.75,0,0,3774.8396 -9195,11332,20643,20642,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,4,7.8359303,8.0725489,0,2,0,-9,15,0,-1,-48.919582,0,0,1,45,1,4,1,2,2,2019,1,1,10,0,28,30,15,1,0,1,0,12.799597,12.799597,0,0,0,0,0,0,0,0,0,0,0,3.3646548,0,0,0,54.200001,57.490002,35.73,63.099998,6,1,1,0,0,9,5,1,208.33333,299917.75,0,0,3774.8396 -9195,11332,20644,-9,20643,20642,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.10461,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,208.33333,299917.75,0,0,3774.8396 -9196,11333,20645,20646,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,6.429882,6.5793552,0,2,0,-9,26,0,-4,-74.137947,0,0,1,47,2,1,1,2,2,2019,1,2,19,7,11,11,15,1,1,1,0,9.5480728,9.5480728,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.259998,57.639999,30.52,39.330002,4,1,1,0,1,9,2,0,1100.5,-141720.63,0,0,1513.8953 -9196,11333,20646,20645,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,0,1,7.3735471,7.163743,0,2,0,-9,26,0,4,75.390015,0,0,0,43,2,3,1,2,2,2019,1,1,25,11,45,37,15,1,1,1,0,3.0258799,3.0258799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.52,39.330002,33.259998,57.639999,3,1,1,0,1,9,2,0,1100.5,-141720.63,0,0,1513.8953 -9196,11334,20647,-9,20645,20646,3,1,1,25,2,0,1,0,2,-9,2,1,0,0,4,7.7528667,7.5228362,0,3,0,0,0,-9,0,-956.815,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,0,15,1,0,-9,1,5.1060729,5.1060729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,0,320,93218.484,0,0,1792.2919 -9196,11335,20648,-9,20645,20646,4,1,1,22,2,0,1,0,2,-9,1,1,0,0,3,7.6034636,7.5245047,0,3,0,0,0,-9,0,-824.27057,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,0,15,1,0,-9,1,4.9882154,4.9882154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,9,3,0,1163,-112391.08,0,0,310.38242 -9197,11336,20649,-9,20650,20651,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.24237,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,5,1,1010.3333,530084.69,0,0,4386.9873 -9197,11336,20650,20651,-9,-9,1,1,0,34,1,0,1,0,1,-9,2,1,0,0,2,8.6239414,8.3167124,0,2,0,-9,4,0,-6,65.366432,0,0,1,40,1,3,1,2,1,2019,1,2,21,9,40,43,15,1,1,1,0,14.55303,14.55303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,49.27,44,49.880001,3,1,1,0,0,11,5,1,1010.3333,530084.69,0,0,4386.9873 -9197,11336,20651,20650,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,0,3,8.6779203,8.4047909,0,2,0,-9,4,0,6,-39.823952,0,0,0,34,1,2,1,-9,-9,2019,1,1,15,3,49,48,15,1,0,1,0,12.390932,12.390932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,49.880001,38.16,49.27,3,1,1,0,0,11,5,1,1010.3333,530084.69,0,0,4386.9873 -9198,11337,20652,-9,-9,-9,1,1,1,50,3,0,3,0,1,-9,2,1,0,0,4,8.6191578,8.6532717,0,4,0,0,0,-9,0,-1014.2178,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,16,15,1,0,-9,0,12.747168,12.747168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.440002,47.810001,-9,-9,6,3,4,0,0,5,3,0,474.5,1543101.5,0,0,2325.3711 -9198,11337,20653,-9,-9,20652,5,1,1,17,2,0,3,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1063.9431,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.959999,55.09,-9,-9,7,3,4,0,0,5,3,0,474.5,1543101.5,0,0,2325.3711 -9198,11338,20654,-9,-9,20652,2,1,0,24,2,0,3,0,1,0,7,2,0,0,5,7.8758488,7.6653709,0,3,0,0,0,-9,0,-1115.8652,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,1,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.169998,58.560001,-9,-9,7,3,4,0,0,5,3,0,132,9350.2832,0,0,2002.2233 -9198,11339,20655,-9,-9,20652,3,1,0,22,2,0,3,0,2,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1062.7864,0,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,0,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,3,4,0,0,5,1,0,158,2515.198,0,0,0 -9198,11340,20656,-9,-9,20652,4,1,1,20,2,0,3,0,2,-9,7,2,0,1,5,0,0,0,3,0,0,0,-9,0,-940.53271,1,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,0,38,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,3,4,0,0,5,1,0,83,-51642.086,0,0,744.19305 -9199,11341,20657,-9,-9,-9,1,1,1,77,3,0,1,0,2,-9,4,3,0,0,2,0,7.3325996,7.4273109,4,0,0,0,-9,0,-962.69086,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,12.669988,16.778917,0,0,1,1,0,.42064691,7.5706553,0,0,43.34,45.18,-9,-9,4,1,1,0,0,9,3,1,683,132013.91,0,0,955.74457 -9199,11342,20658,20659,-9,-9,3,1,0,39,1,0,1,0,1,-9,2,1,0,0,4,7.46666,7.3437796,0,2,0,-9,1,-9,0,-113.36921,-9,0,1,39,2,4,1,-9,-9,2019,1,2,10,1,25,0,15,1,0,1,0,6.8295455,6.8295455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,6,4,6,0,0,9,4,1,246.5,222834.31,0,0,2299.6973 -9199,11342,20659,20658,-9,20657,2,1,1,39,1,0,1,0,2,-9,2,1,0,0,4,8.5937262,8.7875252,0,2,0,-9,1,-9,0,-213.86307,-9,0,0,39,1,4,1,-9,2,2019,1,3,9,1,35,0,15,1,0,1,0,21.089066,21.089066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,6,4,6,0,0,9,4,1,246.5,222834.31,0,0,2299.6973 -9200,11343,20660,20661,-9,-9,2,1,1,69,1,0,0,0,2,-9,2,1,0,0,4,7.0447998,6.8482261,4.7228017,1,0,-9,32,0,10,28.941523,0,0,0,59,2,3,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,3.3839748,3.3839748,0,0,0,0,0,0,0,0,1,1,0,4.3508759,4.8394103,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,10,5,1,131,878467.5,0,0,4099.8105 -9200,11343,20661,20660,-9,-9,1,1,0,59,1,0,0,0,2,-9,1,1,0,0,3,7.2006969,9.0759945,8.7010794,1,0,-9,32,0,-10,107.23721,0,0,0,69,2,4,1,3,3,2019,1,2,9,1,40,30,15,1,0,1,0,2.8914716,2.8914716,0,0,0,0,0,0,0,0,1,1,0,5.980031,9.0137959,0,0,58.32,50.220001,57.16,56.150002,6,3,4,0,0,10,5,1,131,878467.5,0,0,4099.8105 -9201,11344,20662,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,0,5,8.1729803,8.1488695,0,3,0,0,0,-9,0,-999.33087,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,40,43,15,1,0,-9,0,13.140594,13.140594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,10,4,0,95,-38911.559,0,0,2026.0294 -9202,11345,20663,-9,20664,20665,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.79834,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,1,574.33331,793144.88,0,0,3495.2588 -9202,11345,20664,20665,-9,-9,1,1,0,39,1,0,1,0,1,-9,2,1,0,0,3,7.8635283,8.1815453,0,2,0,-9,13,0,-2,92.152122,0,0,1,41,2,2,1,-9,-9,2019,1,2,15,3,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.240002,55.720001,44.07,39.470001,4,1,1,0,0,2,4,1,574.33331,793144.88,0,0,3495.2588 -9202,11345,20665,20664,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,0,2,8.4102364,8.3254957,0,2,0,-9,13,0,2,-20.250772,0,0,0,39,1,3,1,3,3,2019,1,1,12,1,50,50,15,1,0,1,0,10.689446,10.689446,0,0,0,0,0,0,0,0,1,1,0,1.9103349,0,0,0,44.07,39.470001,41.240002,55.720001,5,1,1,0,0,2,4,1,574.33331,793144.88,0,0,3495.2588 -9203,11346,20666,20668,-9,-9,2,1,0,25,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,-3,-29.565142,0,1,1,28,2,4,1,-9,-9,2019,3,1,22,9,0,5,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.59,64.25,53.959999,50.73,6,1,1,0,0,7,5,1,307.66666,-71661.539,0,0,5483.5923 -9203,11346,20667,-9,20666,20668,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-945.77423,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,307.66666,-71661.539,0,0,5483.5923 -9203,11346,20668,20666,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,0,4,9.6756115,9.1336336,0,2,0,-9,3,0,3,89.185913,0,1,0,25,2,4,3,-9,-9,2019,2,2,5,0,49,49,15,1,0,3,0,29.766418,29.766418,0,0,0,0,0,0,0,0,0,0,0,2.8167701,0,0,0,53.959999,50.73,30.59,64.25,6,1,1,0,0,7,5,1,307.66666,-71661.539,0,0,5483.5923 -9204,11347,20669,20670,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,0,5,9.2282009,9.2544403,0,2,0,-9,7,0,-2,-94.991455,0,0,1,40,1,3,1,2,1,2019,1,2,8,0,42,42,15,1,0,1,0,30.405796,30.405796,0,0,0,0,0,0,0,0,1,1,0,2.8615632,0,0,0,40.950001,63.66,41.509998,52.779999,4,1,1,0,0,6,5,1,626,684911.75,0,0,7227.8901 -9204,11347,20670,20669,-9,-9,2,1,1,40,1,1,2,0,1,-9,1,1,0,0,3,7.4008188,7.5229101,0,2,0,-9,7,0,2,-43.226627,0,0,0,38,1,5,1,2,2,2019,1,1,12,1,30,15,15,1,0,1,0,6.9770594,6.9770594,0,0,0,0,0,0,0,0,1,1,0,7.694191,0,0,0,41.509998,52.779999,40.950001,63.66,6,1,1,0,0,6,5,1,626,684911.75,0,0,7227.8901 -9204,11347,20671,-9,20669,20670,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.988,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,5,1,626,684911.75,0,0,7227.8901 -9204,11347,20672,-9,20669,20670,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.7283,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,5,1,626,684911.75,0,0,7227.8901 -9205,11348,20673,-9,-9,-9,1,1,0,34,3,0,2,0,2,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-984.98676,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.96593,3,48.869999,58.549999,-9,-9,5,1,1,0,0,4,1,0,345.33334,25407.498,0,0,1627.8617 -9205,11348,20674,-9,20673,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.2858,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,1,0,345.33334,25407.498,0,0,1627.8617 -9205,11348,20675,-9,20673,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-964.40887,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,345.33334,25407.498,0,0,1627.8617 -9206,11349,20676,20677,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,0,63.949181,-9,0,0,65,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9706945,0,0,0,56,52,64,38.07,6,1,1,0,0,9,2,1,628.5,576484,0,0,2089.3291 -9206,11349,20677,20676,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.1682863,7.4550714,1,0,-9,45,0,0,14.229845,0,0,0,65,2,4,3,3,3,2019,4,2,5,0,0,33,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.0187716,12.884932,3,64,38.07,56,52,6,1,1,0,0,9,2,1,628.5,576484,0,0,2089.3291 -9207,11350,20678,-9,20679,20680,4,1,1,17,2,0,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.09949,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.3641119,3,41.450001,55.240002,-9,-9,6,1,1,0,0,4,3,0,690,547240.88,0,0,2178.7024 -9207,11350,20679,20680,-9,-9,2,1,0,42,1,0,4,0,2,-9,2,1,0,0,3,7.6778679,7.5342622,0,2,0,-9,3,0,-2,29.43923,0,0,1,44,2,2,1,-9,-9,2019,1,3,17,6,37,37,15,1,1,1,0,6.6388426,6.6388426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.440001,60.580002,59.700001,43.220001,5,1,1,0,0,4,3,0,690,547240.88,0,0,2178.7024 -9207,11350,20680,20679,-9,-9,3,1,1,44,1,0,4,0,2,-9,2,1,0,0,2,8.2514124,8.5972261,0,2,0,-9,3,0,2,-39.617764,-9,0,0,42,2,3,1,-9,-9,2019,1,2,9,2,41,0,15,1,0,1,0,9.6516943,9.6516943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.700001,43.220001,30.440001,60.580002,6,1,1,0,0,4,3,0,690,547240.88,0,0,2178.7024 -9207,11350,20681,-9,20679,20680,1,1,0,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.5022,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,690,547240.88,0,0,2178.7024 -9208,11351,20682,20683,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.913456,8.3489485,0,1,0,-9,3,0,-2,-9.219698,0,1,1,30,1,4,1,-9,-9,2019,1,1,12,1,40,40,15,1,0,1,0,23.79739,23.79739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.880001,61.849998,38.59,60.849998,6,1,1,0,0,12,5,1,703.5,122055.27,0,0,4566.3013 -9208,11351,20683,20682,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.5725079,8.6307535,0,1,0,-9,3,0,2,-124.42435,0,0,0,28,1,4,1,1,1,2019,1,2,12,0,40,38,15,1,0,1,0,17.647779,17.647779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.849998,38.880001,61.849998,6,1,1,0,0,12,5,1,703.5,122055.27,0,0,4566.3013 -9209,11352,20684,20685,-9,-9,1,1,1,70,1,0,0,0,3,-9,2,1,0,0,3,7.724442,7.7032356,5.9844694,1,0,-9,43,0,7,-3.4923573,0,0,0,63,3,2,3,2,3,2019,2,2,7,0,45,45,15,1,0,3,0,6.0748758,6.0748758,1,0,0,0,0,0,0,2,1,1,0,0,6.0056973,6.7183342,1,57.330002,53.459999,42.959999,27.809999,6,1,1,0,0,9,3,1,886,779348.63,0,0,1139.9668 -9209,11352,20685,20684,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,9,0,-7,-54.431934,-9,0,0,70,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.959999,27.809999,57.330002,53.459999,3,1,1,0,0,9,3,1,886,779348.63,0,0,1139.9668 -9210,11353,20686,20688,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,0,5,0,0,0,2,0,-9,6,0,-1,-46.142361,0,0,1,31,1,5,1,-9,-9,2019,1,1,8,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3643018,0,0,0,51.73,58.82,51.139999,60.450001,2,1,1,0,0,4,5,1,656.66669,255884.98,0,0,3531.6143 -9210,11353,20687,-9,20686,20688,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1056.8392,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,5,1,656.66669,255884.98,0,0,3531.6143 -9210,11353,20688,20686,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,0,5,8.9155493,9.0188866,0,2,0,-9,6,0,1,51.949783,0,0,0,30,1,5,1,1,1,2019,1,2,7,0,48,54,15,1,0,1,0,21.564188,21.564188,0,0,0,0,0,0,0,0,1,1,0,1.7538888,0,0,0,51.139999,60.450001,51.73,58.82,6,1,1,0,0,4,5,1,656.66669,255884.98,0,0,3531.6143 -9211,11354,20689,-9,-9,-9,1,1,0,50,2,0,1,0,1,-9,2,1,0,0,4,8.4121418,8.6224947,5.9267125,4,0,0,0,-9,0,-941.74878,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,52,30,15,1,0,-9,0,8.1500216,8.1500216,0,0,0,0,0,0,0,0,1,1,0,6.1918283,0,0,0,48.639999,54.73,-9,-9,5,3,4,0,1,2,4,0,1507.5,730029.56,0,0,2797.4541 -9211,11354,20690,-9,20689,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1061.1697,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,3,4,0,0,2,4,0,1507.5,730029.56,0,0,2797.4541 -9211,11355,20691,-9,20689,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-976.45306,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,47.630001,-9,-9,6,3,4,0,0,2,1,0,316,-9694.1299,0,0,0 -9212,11356,20692,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,0,3,0,4.8052802,4.8414536,3,0,0,0,-9,0,-1006.1726,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9212685,0,0,53,46,-9,-9,6,3,4,0,0,8,2,0,540,206171.28,0,0,179.61224 -9213,11357,20693,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-985.02112,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,1,0,6,1,0,242,25803.879,0,0,0 -9214,11358,20694,20695,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,2,0,6.9405246,7.1772346,1,0,-9,45,0,0,19.593008,0,0,0,65,3,4,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0641737,0,0,49.709999,30.25,60.119999,54.799999,5,1,1,0,0,7,5,1,877.5,455487.56,0,0,6281.5986 -9214,11358,20695,20694,-9,-9,2,1,1,65,1,0,0,0,3,-9,1,1,0,0,4,8.7725887,9.2465467,8.2027264,1,0,-9,45,0,0,9.3801413,0,0,0,65,2,2,3,3,3,2019,2,1,7,0,50,0,15,1,0,4,0,15.492462,15.492462,0,0,0,0,0,0,0,0,1,1,0,.28805581,8.3362894,0,0,60.119999,54.799999,49.709999,30.25,6,1,1,0,0,7,5,1,877.5,455487.56,0,0,6281.5986 -9215,11359,20696,20697,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,0,3,8.5022526,8.7456903,0,2,0,-9,14,0,3,38.854813,0,0,0,44,3,4,1,2,2,2019,1,2,6,0,49,52,15,1,0,1,0,18.463791,18.463791,0,0,0,0,0,0,0,0,1,1,0,.61442363,0,0,0,58.32,50.220001,54.200001,57.490002,6,2,3,0,0,10,5,1,406,637121.5,0,0,3751.1379 -9215,11359,20697,20696,-9,-9,2,1,1,44,1,0,1,0,3,-9,2,1,0,0,4,8.0264883,8.1204624,0,2,0,-9,14,0,-3,13.589386,0,0,0,47,3,3,1,1,1,2019,1,1,7,0,56,44,15,1,0,1,0,7.4386158,7.4386158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,58.32,50.220001,6,2,3,0,0,10,5,1,406,637121.5,0,0,3751.1379 -9215,11359,20698,-9,20696,20697,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.5894,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,10,5,1,406,637121.5,0,0,3751.1379 -9216,11360,20699,20700,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,1,2,8.4775715,8.6871204,0,1,0,-9,3,0,4,-43.729809,0,0,1,26,1,5,1,-9,-9,2019,1,1,11,1,46,45,15,1,0,1,0,11.131059,11.131059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.610001,48.169998,52.130001,57.220001,6,1,1,0,0,7,5,1,215.5,54904.297,0,0,3341.1301 -9216,11360,20700,20699,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,5,8.5310764,8.315033,0,1,0,-9,3,0,-4,.14908586,0,1,0,30,1,2,1,1,2,2019,1,2,12,1,43,42,15,1,0,1,0,11.012247,11.012247,0,0,0,0,0,0,0,0,1,1,0,5.2949634,0,0,0,52.130001,57.220001,40.610001,48.169998,5,1,1,0,0,7,5,1,215.5,54904.297,0,0,3341.1301 -9217,11361,20701,20702,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,8.0917654,8.3981628,1,0,-9,50,0,0,21.530266,0,0,0,75,2,3,3,3,1,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.405458,8.5287895,0,0,39.82,40.709999,57.34,47.919998,4,4,5,0,0,8,5,1,327,1895258.8,0,0,5540.2866 -9217,11361,20702,20701,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.5816679,7.838655,1,0,-9,50,0,0,-65.913521,0,0,0,75,1,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8221922,7.6726623,0,0,57.34,47.919998,39.82,40.709999,6,1,1,0,0,8,5,1,327,1895258.8,0,0,5540.2866 -9218,11362,20703,20705,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,9.1157541,9.080451,0,2,0,-9,19,0,-5,157.8869,0,0,0,47,1,3,1,2,2,2019,1,1,11,3,41,43,15,1,0,1,0,26.991125,26.991125,0,0,0,0,0,0,0,0,0,0,0,4.3761802,0,0,0,45.490002,50.810001,43.650002,58.279999,5,1,1,0,0,9,5,1,525.75,743702.63,0,0,5767.1221 -9218,11362,20704,-9,20705,20703,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1051.021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,5,1,525.75,743702.63,0,0,5767.1221 -9218,11362,20705,20703,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,9.3877144,9.6222591,0,2,0,-9,20,0,5,116.03772,0,0,0,42,1,3,1,2,1,2019,1,2,12,3,42,44,15,1,0,1,0,28.371073,28.371073,0,0,0,0,0,0,0,0,0,0,0,4.2262845,0,0,0,43.650002,58.279999,45.490002,50.810001,6,1,1,0,0,9,5,1,525.75,743702.63,0,0,5767.1221 -9218,11362,20706,-9,20705,20703,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,3.4078891,3.6986427,2,0,0,0,-9,0,-965.2887,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0641499,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,9,5,1,525.75,743702.63,0,0,5767.1221 -9219,11363,20707,20708,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,1,0,0,0,1,0,-9,38,0,-3,-59.328327,0,0,0,63,1,5,1,2,2,2019,3,1,25,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3582401,0,0,0,24.799999,33.43,57.060001,57.759998,2,1,1,0,0,9,4,1,420,2452158.5,0,0,2713.2083 -9219,11363,20708,20707,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,0,5,4.6273041,8.1045027,8.4777489,1,0,-9,37,0,3,67.10482,0,0,0,60,1,1,3,2,2,2019,2,2,6,0,0,10,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8899941,8.2048521,0,3,57.060001,57.759998,24.799999,33.43,6,1,1,0,0,9,4,1,420,2452158.5,0,0,2713.2083 -9220,11364,20709,-9,-9,-9,1,1,0,91,2,0,0,0,3,-9,4,3,0,0,2,0,7.4775672,7.7935791,3,0,0,0,-9,0,-910.97064,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8488159,7.5041461,0,0,40.48,45.259998,-9,-9,6,1,1,0,0,7,3,1,1204,968270.25,0,0,537.95679 -9221,11365,20710,20711,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,1.3875453,1.4372388,1,0,-9,50,0,4,-13.126075,0,0,0,73,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.6879933,0,0,62.419998,45.639999,48.689999,41.09,6,1,1,0,0,2,1,1,2506.5,3001.8125,0,0,912.04932 -9221,11365,20711,20710,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-4,-141.80074,0,0,0,77,2,3,3,2,2,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5789613,0,0,0,48.689999,41.09,62.419998,45.639999,6,1,1,0,1,2,1,1,2506.5,3001.8125,0,0,912.04932 -9222,11366,20712,-9,20713,20714,3,1,0,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.91034,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,2,3,0,558.25,171175.84,0,0,1806.7238 -9222,11366,20713,20714,-9,-9,1,1,0,32,1,1,2,0,2,-9,2,1,0,0,3,7.3506541,7.5383854,0,2,0,-9,12,0,-2,19.304518,0,0,1,34,2,4,1,3,2,2019,1,2,7,0,25,37,15,1,0,1,0,6.3824224,6.3824224,0,0,0,0,0,0,0,2,1,1,0,0,0,4.2626309,3,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,2,3,0,558.25,171175.84,0,0,1806.7238 -9222,11366,20714,20713,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,0,4,8.4053888,8.3922348,0,2,0,-9,12,0,2,-81.345741,-9,0,0,32,2,3,1,2,2,2019,1,1,6,0,38,0,15,1,0,1,0,11.017717,11.017717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,6,4,5,0,0,2,3,0,558.25,171175.84,0,0,1806.7238 -9222,11366,20715,-9,20713,20714,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-990.30023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,2,3,0,558.25,171175.84,0,0,1806.7238 -9223,11367,20716,-9,20718,20717,4,1,1,27,2,0,1,0,2,-9,2,1,0,0,4,8.2204428,8.4442348,0,3,0,-9,0,0,0,-1046.5403,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,41,15,1,0,-9,1,12.661551,12.661551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,56.459999,-9,-9,6,1,1,0,0,10,4,1,288,-57083.441,0,0,953.30365 -9223,11368,20717,20718,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,8.6053486,8.8446331,0,2,0,-9,5,0,0,3.6839995,0,0,0,46,2,4,1,3,2,2019,1,1,8,0,45,45,15,1,0,1,0,18.576593,18.576593,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,47.630001,57.16,56.150002,6,1,1,0,0,10,4,1,1163,1150825,0,0,3169.3254 -9223,11368,20718,20717,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.7196765,7.6372185,0,2,0,-9,5,0,0,63.550365,0,0,0,46,2,3,1,3,3,2019,1,2,10,0,30,28,15,1,0,1,0,6.841054,6.841054,0,0,0,0,0,0,0,2,1,1,0,0,0,2.4880192,3,57.16,56.150002,54.970001,47.630001,6,1,1,0,0,10,4,1,1163,1150825,0,0,3169.3254 -9223,11368,20719,-9,20718,20717,3,1,1,17,2,0,1,1,3,0,7,2,0,0,3,6.4631019,6.3318286,0,2,0,0,0,-9,0,-927.79053,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.470001,56,-9,-9,4,1,1,0,0,10,4,1,1163,1150825,0,0,3169.3254 -9224,11369,20720,20721,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,0,3,8.0006313,8.4803858,0,1,0,-9,5,0,10,-7.905231,0,0,0,32,1,4,1,-9,-9,2019,1,2,8,0,35,30,15,1,0,1,0,9.1919031,9.1919031,0,0,0,0,0,0,0,0,0,0,0,6.5034709,0,0,0,46.880001,49.919998,49.459999,56.91,6,1,1,0,0,9,5,1,589,950862.75,0,0,4042.4807 -9224,11369,20721,20720,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.3911362,8.7687502,0,1,0,-9,5,0,-10,117.38931,0,0,1,42,2,3,1,-9,-9,2019,1,1,12,1,43,45,15,1,0,1,0,14.492451,14.492451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.459999,56.91,46.880001,49.919998,5,1,1,0,0,9,5,1,589,950862.75,0,0,4042.4807 -9225,11370,20722,20723,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,6.0107656,6.0769887,1,0,-9,32,0,13,-38.169579,0,0,0,67,3,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.136446,5.9878111,0,0,58.07,46.290001,41.07,60.93,6,1,1,0,0,6,2,1,986.5,294927.69,0,0,2929.8159 -9225,11370,20723,20722,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,32,0,-13,-32.055988,0,0,0,80,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6827595,0,0,0,41.07,60.93,58.07,46.290001,7,1,1,0,0,6,2,1,986.5,294927.69,0,0,2929.8159 -9226,11371,20724,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,0,4,0,7.8176994,7.6355791,3,0,0,0,-9,0,-916.56018,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.3439224,7.8734226,36.755676,3,51.77,58.57,-9,-9,4,1,1,0,0,9,3,1,2664,1059849,0,0,1504.2367 -9227,11372,20725,-9,-9,-9,1,1,1,48,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-979.38428,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.549999,19.5,-9,-9,6,1,1,0,0,4,1,0,1385,42522.008,0,0,561.76599 -9228,11373,20726,20727,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,-1,-95.026917,0,0,0,71,2,3,3,3,3,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,15.087029,0,0,0,0,0,1,1,0,7.3322048,0,0,0,46.27,36.040001,57.509998,47.91,6,1,1,0,0,1,3,1,671,794134.25,0,0,3646.9624 -9228,11373,20727,20726,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.7001834,7.5678658,1,0,-9,11,0,1,-58.017303,0,0,0,70,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3791051,7.5309997,0,0,57.509998,47.91,46.27,36.040001,6,1,1,0,0,1,3,1,671,794134.25,0,0,3646.9624 -9229,11374,20728,-9,20730,-9,2,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1033.1764,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,2,0,1110,12624.159,0,0,1218.491 -9229,11374,20729,-9,20730,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-944.65491,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,2,0,1110,12624.159,0,0,1218.491 -9229,11374,20730,-9,-9,-9,1,1,0,25,2,1,2,0,2,-9,6,3,0,0,5,0,6.1441445,5.9134698,4,0,0,0,-9,0,-942.04871,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6689081,0,0,0,62.389999,56.709999,-9,-9,5,1,1,0,0,12,2,0,1110,12624.159,0,0,1218.491 -9230,11375,20731,20733,-9,-9,2,1,0,31,1,0,2,0,2,-9,2,1,0,0,4,7.6300068,7.5016208,0,2,0,-9,13,0,-4,-43.06916,0,0,1,35,2,3,1,3,2,2019,1,1,9,0,18,19,15,1,0,1,0,11.679336,11.679336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,48.57,61.849998,44.549999,6,1,1,0,0,8,4,1,1585.25,12616.002,0,0,3162.6123 -9230,11375,20732,-9,20731,20733,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.7448,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1585.25,12616.002,0,0,3162.6123 -9230,11375,20733,20731,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,0,3,8.8313951,8.90763,0,2,0,-9,14,0,4,107.25252,0,0,0,31,2,4,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,19.084585,19.084585,0,0,0,0,0,0,0,0,1,1,0,.95649952,0,0,0,61.849998,44.549999,58.75,48.57,6,1,1,0,0,8,4,1,1585.25,12616.002,0,0,3162.6123 -9230,11375,20734,-9,20731,20733,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.03,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,4,1,1585.25,12616.002,0,0,3162.6123 -9231,11376,20735,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,0,2,0,8.3979559,8.2286777,3,0,0,0,-9,0,-1091.9563,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0707979,8.2303381,0,0,40.310001,42.779999,-9,-9,6,1,1,0,0,6,4,0,2212,504262.63,0,0,3170.4744 -9232,11377,20736,20737,-9,-9,1,1,0,68,1,0,0,0,3,-9,2,1,0,0,4,5.313199,4.8971233,0,1,0,-9,45,0,-1,-28.882675,0,0,0,69,3,4,3,3,3,2019,2,2,10,0,2,0,15,1,0,4,0,7.9789667,7.9789667,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.060001,45.59,51.470001,53.169998,6,1,1,0,0,2,2,1,556.5,789488.63,0,0,674.85828 -9232,11377,20737,20736,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.9333529,6.7307968,1,0,-9,45,0,1,-31.068251,0,0,0,68,3,4,1,3,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8833771,7.4701056,12.054227,3,51.470001,53.169998,53.060001,45.59,6,1,1,0,0,2,2,1,556.5,789488.63,0,0,674.85828 -9233,11378,20738,-9,-9,-9,1,1,0,67,2,0,0,0,3,-9,4,3,0,0,4,0,2.8737357,2.5002854,3,0,0,0,-9,0,-895.00262,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,2.868892,9.664979,3,57.16,56.150002,-9,-9,6,1,1,0,0,5,1,1,4069,15307.741,0,0,1436.873 -9233,11379,20739,-9,20738,-9,2,1,0,33,2,0,0,0,2,-9,2,1,0,0,4,8.732934,8.4462185,0,3,0,0,0,-9,0,-1063.8754,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,35,40,15,1,0,-9,1,14.234797,14.234797,0,0,0,0,0,0,0,2,1,1,0,0,0,.59227395,3,57.16,56.150002,-9,-9,6,1,1,0,0,5,4,1,322,761154.75,0,0,1302.0717 -9234,11380,20740,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,4,0,5.2584944,5.3391161,3,0,-9,0,-9,0,-965.83398,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1067266,5.2194996,0,0,54.380001,41.209999,-9,-9,6,1,1,0,0,4,2,0,1221,-50201.008,0,0,1826.7906 -9235,11381,20741,-9,-9,-9,1,1,0,29,3,1,4,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-975.10522,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,-9,-9,7,1,1,0,0,13,1,0,612.79999,-79468.938,0,0,796.14563 -9235,11381,20742,-9,20741,-9,3,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.4675,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,612.79999,-79468.938,0,0,796.14563 -9235,11381,20743,-9,20741,-9,5,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1048.5616,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,612.79999,-79468.938,0,0,796.14563 -9235,11381,20744,-9,20741,-9,4,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1008.7433,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,612.79999,-79468.938,0,0,796.14563 -9235,11381,20745,-9,20741,-9,2,1,1,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.2465,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,612.79999,-79468.938,0,0,796.14563 -9236,11382,20746,20747,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,5,7.281641,7.036881,0,1,0,-9,10,0,6,103.07959,0,0,0,53,2,3,1,3,3,2019,1,1,7,0,20,27,15,1,0,1,0,6.577951,6.577951,0,0,0,0,0,0,0,2,0,0,0,0,0,10.156301,3,64.660004,50.23,58.889999,48.599998,7,1,1,0,0,9,4,1,762,294862.5,0,0,2699.8228 -9236,11382,20747,20746,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.483676,8.5267811,0,1,0,-9,10,0,-6,-135.06013,0,0,0,59,3,5,1,3,3,2019,1,2,11,0,60,60,15,1,0,1,0,8.2097883,8.2097883,0,0,0,0,0,0,0,2,0,0,0,3.8925879,0,2.1450899,3,58.889999,48.599998,64.660004,50.23,5,1,1,0,0,9,4,1,762,294862.5,0,0,2699.8228 -9237,11383,20748,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,0,2,0,7.837924,7.565012,3,0,0,0,-9,0,-929.5661,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8587885,7.637115,0,0,61.849998,34.029999,-9,-9,6,1,1,0,0,9,3,1,1471,936909.63,0,0,2464.9014 -9238,11384,20749,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,2,7.9014878,8.0739841,0,3,0,0,0,-9,0,-976.59167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,39,38,15,1,1,-9,0,9.6428137,9.6428137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.110001,34.689999,-9,-9,3,1,1,0,0,4,4,1,799,82541.602,0,0,1698.5432 -9239,11385,20750,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1051.2369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,4.4744625,0,0,0,0,48.564041,0,1,1,0,7.0903854,0,0,0,61.450001,24.58,-9,-9,4,1,1,0,0,9,1,0,226,-29045.318,0,0,562.28461 -9240,11386,20751,20753,-9,-9,2,1,1,39,1,0,1,0,2,-9,1,1,0,0,5,7.760592,7.6667361,0,2,0,-9,8,0,4,-24.44215,0,0,0,35,2,4,1,-9,-9,2019,1,1,3,0,60,60,15,1,0,1,0,4.6347952,4.6347952,0,0,0,0,0,0,0,0,1,1,0,7.4881725,0,0,0,62.389999,56.709999,54.790001,55.860001,7,1,1,0,0,9,3,0,578.66669,-13297.792,0,0,1844.6218 -9240,11386,20752,-9,20753,20751,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,3,0,578.66669,-13297.792,0,0,1844.6218 -9240,11386,20753,20751,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,0,4,7.0837421,7.1395974,0,2,0,-9,15,0,-4,122.9332,0,0,1,39,2,5,1,2,2,2019,1,2,12,0,20,16,15,1,0,1,0,7.6780977,7.6780977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,62.389999,56.709999,5,1,1,0,0,9,3,0,578.66669,-13297.792,0,0,1844.6218 -9241,11387,20754,20755,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,8.2995043,8.7829037,7.2234168,1,0,-9,27,0,-7,28.320093,0,0,0,63,2,4,1,3,3,2019,1,2,2,0,37,37,15,1,0,1,0,16.437092,16.437092,0,0,0,0,0,0,0,0,0,0,0,2.4951377,7.8836422,0,0,57.060001,57.759998,60.130001,49.27,7,1,1,0,0,6,5,1,951.5,1303778.3,0,0,3858.8369 -9241,11387,20755,20754,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,7.399261,8.0908585,7.4628191,1,0,-9,9,0,7,-22.368914,0,0,0,56,2,5,1,3,3,2019,1,1,6,0,16,18,15,1,0,1,0,14.756115,14.756115,0,0,0,0,0,0,0,0,0,0,0,6.863246,7.5751872,0,0,60.130001,49.27,57.060001,57.759998,7,1,1,0,0,6,5,1,951.5,1303778.3,0,0,3858.8369 -9242,11388,20756,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,0,2,0,7.1295667,6.7267599,3,0,0,0,-9,0,-966.15784,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9329524,7.5942216,0,0,59.150002,42.119999,-9,-9,4,1,1,0,0,9,2,0,209,296509.56,0,0,1322.4794 -9243,11389,20757,20758,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,1,2,0,6.9281001,6.6717901,1,0,-9,60,0,2,-84.531639,0,0,0,80,3,1,3,3,3,2019,4,2,16,7,0,0,15,4,1,4,0,0,0,1,0,15.386763,0,0,0,0,27.5,1,1,0,.06688688,6.8996763,29.100096,1,51.330002,24.030001,39.18,17.469999,4,1,1,0,0,2,2,1,552,459842.25,0,0,2666.8296 -9243,11389,20758,20757,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,1,1,0,6.2473588,6.3498192,1,0,-9,11,0,-2,-25.317095,0,0,0,82,2,2,3,-9,-9,2019,4,1,24,10,0,0,15,4,1,4,0,0,0,1,0,11.850131,0,0,0,0,0,1,1,0,0,6.488564,0,0,39.18,17.469999,51.330002,24.030001,4,1,1,0,0,2,2,1,552,459842.25,0,0,2666.8296 -9244,11390,20759,20760,-9,-9,1,1,0,56,1,0,0,0,2,-9,1,1,0,1,4,6.9906902,7.8081694,7.5411205,1,0,-9,14,0,-11,162.52568,0,0,0,67,3,3,1,-9,-9,2019,1,2,5,0,40,38,15,1,0,1,0,2.577672,2.577672,0,0,0,0,0,0,0,0,1,1,0,0,7.7778802,0,0,60.52,53.200001,51,48,6,1,1,0,0,4,4,1,288,270838.06,0,0,4452.6812 -9244,11390,20760,20759,-9,-9,2,1,1,67,1,0,0,0,3,-9,2,1,0,0,3,7.7364039,8.0881958,0,1,0,-9,8,0,11,44.640102,0,0,0,56,2,4,1,-9,-9,2019,1,1,10,1,40,38,15,1,0,1,0,8.1201096,8.1201096,0,0,0,0,0,0,0,0,1,1,0,3.723109,0,0,0,51,48,60.52,53.200001,5,1,1,0,0,4,4,1,288,270838.06,0,0,4452.6812 -9245,11391,20761,-9,20763,20762,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.2847,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,1,594,63995.535,0,0,2291.0925 -9245,11391,20762,20763,-9,-9,1,1,1,38,1,0,1,0,1,-9,1,1,0,0,3,7.487473,7.8618941,0,2,0,-9,9,0,10,-80.775169,0,0,0,28,1,3,1,2,2,2019,1,2,15,3,38,40,15,1,0,1,0,4.7240853,4.7240853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,58.009998,35.200001,48.709999,6,1,1,0,0,4,3,1,594,63995.535,0,0,2291.0925 -9245,11391,20763,20762,-9,-9,2,1,0,28,1,0,1,0,1,-9,2,1,0,0,3,7.8560681,8.1090546,0,2,0,-9,9,0,-10,101.00954,0,1,1,38,1,3,1,-9,-9,2019,1,1,12,0,22,40,15,1,0,1,0,11.721185,11.721185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.200001,48.709999,44.189999,58.009998,3,1,1,0,0,4,3,1,594,63995.535,0,0,2291.0925 -9246,11392,20764,20765,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.4228516,7.4131064,0,1,0,-9,41,0,-3,3.7237732,0,0,0,63,1,3,1,3,2,2019,1,2,10,0,29,28,15,1,0,1,0,6.94698,6.94698,0,0,0,0,0,0,0,0,0,0,0,.43758985,0,0,0,49.860001,55.310001,47.66,52.330002,5,1,1,0,0,2,4,1,656.5,2366717,0,0,1952.7681 -9246,11392,20765,20764,-9,-9,2,1,1,63,1,0,0,0,1,-9,1,1,0,0,3,7.6880379,8.2714024,6.5629172,1,0,-9,42,0,3,6.214088,0,0,0,60,2,4,1,2,2,2019,1,1,9,1,40,40,15,1,0,1,0,6.3768616,6.3768616,0,0,0,0,0,0,0,0,0,0,0,2.2687678,6.9358478,0,0,47.66,52.330002,49.860001,55.310001,5,1,1,0,0,2,4,1,656.5,2366717,0,0,1952.7681 -9246,11393,20766,-9,20764,20765,3,1,1,35,2,0,0,0,2,-9,1,1,0,0,4,4.9249454,5.3029985,0,3,0,0,0,-9,0,-1115.5142,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,15,34,15,1,0,-9,1,1.0757791,1.0757791,0,0,0,0,0,0,0,0,0,0,0,2.283448,0,0,0,36.200001,64.190002,-9,-9,3,1,1,0,0,2,2,1,158,-1374.1541,0,0,153.20357 -9247,11394,20767,-9,20768,20770,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-895.51581,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,5,1,534.25,3346281.5,0,0,5779.6787 -9247,11394,20768,20770,-9,-9,2,1,0,52,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,19,0,0,-18.048193,0,0,0,52,1,4,1,2,1,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6080015,0,0,0,57.040001,37.330002,61.130001,43.200001,6,1,1,0,0,9,5,1,534.25,3346281.5,0,0,5779.6787 -9247,11394,20769,-9,20768,20770,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-899.03918,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,5,1,534.25,3346281.5,0,0,5779.6787 -9247,11394,20770,20768,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,0,4,9.553194,9.4667883,0,2,0,-9,19,0,0,17.5005,0,0,0,52,2,3,3,2,3,2019,2,2,6,0,60,51,15,1,0,3,0,35.599945,35.599945,0,0,0,0,0,0,0,0,0,0,0,6.4589458,0,0,0,61.130001,43.200001,57.040001,37.330002,3,1,1,0,0,9,5,1,534.25,3346281.5,0,0,5779.6787 -9248,11395,20771,20772,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,1,2,0,7.0668325,7.0400648,1,0,-9,59,0,3,3.7773972,0,0,0,79,3,3,3,2,2,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,1,0,47.157738,0,0,0,0,0,1,1,0,5.2175012,6.9273438,0,0,54.290001,15.71,41.040001,40.619999,5,1,1,0,0,2,2,1,1268.5,293156.5,0,0,2305.3433 -9248,11395,20772,20771,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,5.2041063,4.8585601,1,0,-9,59,0,-3,2.3489621,0,0,0,82,2,2,3,3,3,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.1367924,4.9519658,37.262966,2,41.040001,40.619999,54.290001,15.71,4,1,1,0,0,2,2,1,1268.5,293156.5,0,0,2305.3433 -9248,11396,20773,-9,20772,20771,3,1,1,56,3,0,0,0,2,-9,2,1,0,0,3,7.7740731,7.8304644,0,3,0,0,0,-9,0,-989.72504,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,38,37,15,1,0,-9,1,8.6838617,8.6838617,0,0,0,0,0,0,0,0,1,1,0,5.2376719,0,0,0,50,49,-9,-9,5,1,1,0,0,2,4,1,236,-13030.443,0,0,2222.6375 -9249,11397,20774,20775,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,7.3555408,8.7161875,7.5808144,1,0,-9,7,0,0,43.555038,0,0,0,57,1,5,3,3,3,2019,2,2,11,0,24,20,15,1,0,4,0,7.587245,7.587245,0,0,0,0,0,0,0,0,0,0,0,4.5848446,8.128376,0,0,55.790001,52.619999,57.060001,57.759998,6,1,1,0,0,2,4,1,905,1349234.4,0,0,2540.7976 -9249,11397,20775,20774,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,0,5,0,6.0230088,6.6965942,1,0,-9,7,0,0,-69.76194,0,0,0,57,1,4,1,-9,-9,2019,3,1,5,1,0,52,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.6219721,4.706409,3,57.060001,57.759998,55.790001,52.619999,6,1,1,0,0,2,4,1,905,1349234.4,0,0,2540.7976 -9250,11398,20776,-9,20777,20778,5,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-934.75183,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,13,3,1,523.33331,2073790.3,0,0,3755.0693 -9250,11398,20777,20778,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,0,3,7.7685876,8.150032,0,2,0,-9,30,0,0,-51.399681,0,0,0,51,1,2,1,2,2,2019,1,1,12,2,21,21,15,1,0,1,0,14.804102,14.804102,0,0,0,0,0,0,0,0,1,1,0,2.7137573,0,0,0,48.049999,53.560001,15.09,52.830002,6,1,1,0,0,13,3,1,523.33331,2073790.3,0,0,3755.0693 -9250,11398,20778,20777,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,2,7.8006582,7.4723368,0,2,0,-9,31,0,0,69.841064,0,0,0,51,1,3,1,3,3,2019,1,2,10,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6100373,0,0,0,15.09,52.830002,48.049999,53.560001,4,1,1,0,0,13,3,1,523.33331,2073790.3,0,0,3755.0693 -9250,11399,20779,-9,20777,20778,3,1,1,21,2,0,2,1,2,0,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-1003.496,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,57.720001,-9,-9,6,1,1,0,0,13,1,1,452,109319.87,0,0,1248.5544 -9250,11400,20780,-9,20777,20778,4,1,0,18,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1143.0554,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.59,65.419998,-9,-9,4,1,1,1,0,13,3,1,789,-33107.766,0,0,119.9377 -9251,11401,20781,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1014.6236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.549999,37.439999,-9,-9,3,1,1,0,0,11,1,0,555,-87517.266,0,0,1883.6205 -9252,11402,20782,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,4,8.2836466,8.027564,0,3,0,0,0,-9,0,-1049.4431,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,38,37,15,1,0,-9,0,10.449322,10.449322,0,0,0,0,0,0,0,0,1,1,0,3.8504105,0,0,0,55.189999,54.259998,-9,-9,7,1,1,0,0,2,4,1,2005,206130.2,0,0,1909.6438 -9253,11403,20783,20784,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,9.0669479,9.1685028,0,1,0,-9,8,0,2,-36.872005,0,0,0,42,2,3,1,2,2,2019,1,2,14,3,43,43,15,1,0,1,0,28.477171,28.477171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,43.48,35.130001,6,1,1,0,0,11,5,1,309,339298.63,0,0,6044.7817 -9253,11403,20784,20783,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,3,8.8210316,8.6874056,0,1,0,-9,8,0,-2,-135.63632,0,0,1,44,2,4,1,2,2,2019,1,1,21,9,45,45,15,1,1,1,0,16.015919,16.015919,0,0,0,0,0,0,0,0,0,0,0,2.965394,0,0,0,43.48,35.130001,51.240002,58.84,4,1,1,0,0,11,5,1,309,339298.63,0,0,6044.7817 -9254,11404,20785,20786,-9,-9,2,1,1,53,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,9,0,-1,-2.7822707,0,0,0,54,2,5,1,2,3,2019,3,1,9,0,0,60,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.97261846,0,0,0,57.330002,53.459999,57.060001,57.759998,6,1,1,1,0,4,3,1,1163,772860.63,0,0,759.15338 -9254,11404,20786,20785,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,8.0850439,7.7435565,0,1,0,-9,9,0,1,-103.4116,0,0,0,53,1,3,3,2,-9,2019,2,2,6,0,40,40,15,1,0,3,0,9.5373726,9.5373726,0,0,0,0,0,0,0,0,0,0,0,1.5085076,0,0,0,57.060001,57.759998,57.330002,53.459999,1,1,1,0,0,4,3,1,1163,772860.63,0,0,759.15338 -9254,11405,20787,-9,20786,20785,3,1,1,24,2,0,0,0,1,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-899.5506,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.42821974,0,0,0,51.77,58.57,-9,-9,5,1,1,1,0,4,1,1,680,163315.83,0,0,34.770542 -9255,11406,20788,20789,-9,-9,2,1,0,37,1,1,3,0,2,-9,2,1,0,0,4,8.3207541,8.1983452,0,2,0,-9,18,0,-11,-33.432453,0,0,1,48,2,4,1,-9,-9,2019,1,1,9,0,24,24,15,1,0,1,0,16.207325,16.207325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,53.610001,59.130001,5,1,1,0,0,4,3,0,470.60001,-52180.477,0,0,2569.479 -9255,11406,20789,20788,-9,-9,1,1,1,48,1,1,3,0,2,-9,2,1,0,0,4,6.2317243,6.0059886,0,2,0,-9,18,0,11,21.873503,0,0,0,37,2,4,1,2,-9,2019,1,2,5,0,12,0,15,1,0,1,0,4.4175119,4.4175119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,59.130001,51.830002,57.200001,7,1,1,0,0,4,3,0,470.60001,-52180.477,0,0,2569.479 -9255,11406,20790,-9,20788,20789,5,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.6629,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,470.60001,-52180.477,0,0,2569.479 -9255,11406,20791,-9,20788,20789,4,1,1,16,2,1,3,1,2,-9,7,2,0,0,4,6.5080376,6.2962441,0,2,0,0,0,-9,0,-1002.9595,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.080002,43.200001,-9,-9,7,1,1,0,0,4,3,0,470.60001,-52180.477,0,0,2569.479 -9255,11406,20792,-9,20788,20789,6,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.0707,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,3,0,470.60001,-52180.477,0,0,2569.479 -9255,11407,20793,-9,20788,20789,3,1,0,19,2,1,3,0,2,-9,2,1,0,0,3,7.502367,7.5264368,0,3,0,0,0,-9,0,-993.75549,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,19,0,15,1,0,-9,1,10.869042,10.869042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,48.610001,-9,-9,6,1,1,0,0,4,3,0,331,169955,0,0,1352.5763 -9256,11408,20794,-9,20795,-9,4,1,1,17,2,0,2,0,2,1,2,3,0,0,4,6.1671262,6.3077927,0,4,0,0,0,-9,0,-939.03436,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,14,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.41,51.82,-9,-9,6,1,1,0,0,1,3,1,1276.5,181252.81,0,0,2925.8945 -9256,11408,20795,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,2,1,0,0,4,8.2501078,8.1762466,5.3189864,4,0,0,0,-9,0,-1007.7047,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,38,15,1,0,-9,0,9.1378469,9.1378469,0,0,0,0,0,0,0,0,1,0,1,5.2955656,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,1,3,1,1276.5,181252.81,0,0,2925.8945 -9256,11408,20796,-9,20795,-9,6,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1100.1771,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,1276.5,181252.81,0,0,2925.8945 -9256,11408,20797,-9,20795,-9,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-800.44244,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,3,1,1276.5,181252.81,0,0,2925.8945 -9256,11409,20798,-9,20795,-9,2,1,1,20,2,0,2,0,2,-9,2,1,0,0,4,7.8646913,8.1717739,0,3,0,0,0,-9,0,-1006.2198,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,40,35,15,1,0,-9,1,7.8126402,7.8126402,0,0,0,0,0,0,0,0,1,0,1,4.5397305,0,0,0,48,59,-9,-9,5,1,1,0,0,1,3,1,560,-110673.84,0,0,442.96844 -9256,11410,20799,-9,20795,-9,3,1,1,19,2,0,2,0,2,-9,2,1,0,0,4,7.1168284,7.0984912,0,3,0,0,0,-9,0,-952.03094,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,35,20,15,1,0,-9,1,4.3447418,4.3447418,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,2,1,3581,3953.5654,0,0,739.75201 -9257,11411,20800,20801,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.4327469,7.6684127,1,0,-9,6,0,3,-167.8075,0,0,0,66,2,3,3,2,3,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.74009061,7.7036433,116.24234,3,54.700001,46.419998,48.110001,34.23,5,1,1,0,0,12,3,1,234.5,1211337.3,0,0,2602.531 -9257,11411,20801,20800,-9,-9,2,1,0,66,1,0,0,0,2,-9,97,3,0,0,3,0,0,0,1,0,-9,6,0,-3,43.053539,0,0,0,69,1,3,3,3,2,2019,4,1,12,0,0,14,15,3,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,125.31035,3,48.110001,34.23,54.700001,46.419998,4,1,1,0,0,12,3,1,234.5,1211337.3,0,0,2602.531 -9257,11412,20802,-9,20801,20800,3,1,0,35,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-895.26416,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.130001,18.99,-9,-9,6,1,1,0,0,12,1,1,189,0,0,0,0 -9258,11413,20803,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,3,8.0910711,7.9742103,0,3,0,0,0,-9,0,-1100.8021,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,41,39,15,1,0,-9,0,6.9119248,6.9119248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,6,1,1,0,0,10,4,1,3644,31961.754,0,0,1691.5261 -9259,11414,20804,20805,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,5,8.9040146,8.8036385,0,1,0,-9,7,0,12,220.1366,0,0,0,43,2,3,1,-9,-9,2019,1,1,7,0,38,40,15,1,0,1,0,18.566507,18.566507,0,0,0,0,0,0,0,2,0,0,0,.12135615,0,0,3,57.060001,57.759998,55.959999,49.93,6,1,1,0,0,5,5,1,437.5,955200.13,0,0,2939.7764 -9259,11414,20805,20804,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,3,8.0854626,7.9620605,0,1,0,-9,7,0,-12,-27.495993,0,0,0,55,1,5,1,2,2,2019,1,2,5,0,41,42,15,1,0,1,0,10.363997,10.363997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,57.060001,57.759998,6,1,1,0,0,5,5,1,437.5,955200.13,0,0,2939.7764 -9260,11415,20806,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,0,4,7.646328,7.4511023,0,3,0,0,0,-9,0,-949.38062,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,39,39,15,1,0,-9,0,5.0713716,5.0713716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.330002,46.060001,-9,-9,5,1,1,0,0,13,3,1,505,5825.6421,0,0,1858.5264 -9260,11416,20807,-9,20806,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.6959982,7.4143829,0,3,0,0,0,-9,0,-1002.7857,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,35,38,15,1,0,-9,1,6.1301413,6.1301413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.369999,52.369999,-9,-9,4,1,1,0,0,13,3,1,378,130512.8,0,0,1494.4094 -9261,11417,20808,20809,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.2226882,7.5150399,1,0,-9,54,0,0,-11.133917,0,0,0,73,2,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.6649714,7.4055967,10.69901,3,48.869999,58.549999,57.060001,57.759998,7,1,1,0,0,7,3,1,1071,981467.38,0,0,1798.2323 -9261,11417,20809,20808,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,5,0,7.0160899,7.1291699,1,0,-9,54,0,0,-63.024399,0,0,0,73,2,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4647427,23.880388,3,57.060001,57.759998,48.869999,58.549999,7,1,1,0,0,7,3,1,1071,981467.38,0,0,1798.2323 -9262,11418,20810,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,0,4,0,7.4081802,7.0845747,3,0,0,0,-9,0,-1031.6697,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1229024,0,0,62.110001,45.630001,-9,-9,6,1,1,0,0,2,2,1,476,480307.88,0,0,1427.4958 -9263,11419,20811,20812,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,7.4144006,7.3024006,0,1,0,-9,31,0,0,-48.913494,0,0,0,56,2,3,1,3,3,2019,1,1,8,0,30,47,15,1,0,1,0,5.5705438,5.5705438,0,0,0,0,0,0,0,0,0,0,0,2.917671,0,0,0,60.119999,54.799999,50.279999,51.349998,4,1,1,0,0,8,3,1,494,721821.25,0,0,2205.6455 -9263,11419,20812,20811,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,3,7.899075,7.6992192,0,1,0,-9,31,0,0,33.195461,0,0,0,56,3,4,1,3,3,2019,1,2,9,0,40,40,15,1,0,1,0,9.5473938,9.5473938,0,0,0,0,0,0,0,0,0,0,0,4.1948538,0,0,0,50.279999,51.349998,60.119999,54.799999,6,1,1,0,0,8,3,1,494,721821.25,0,0,2205.6455 -9263,11420,20813,-9,20811,20812,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,2,7.8414488,7.5226417,0,3,0,0,0,-9,0,-1003.2025,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,45,42,15,1,0,-9,1,7.7886801,7.7886801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.84,49.93,-9,-9,6,1,1,0,0,8,4,1,870,6422.1357,0,0,524.9281 -9263,11421,20814,-9,20811,20812,4,1,1,21,2,0,0,0,2,-9,1,1,0,0,4,6.9880185,7.0589614,0,3,0,0,0,-9,0,-1143.2075,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,1,3.4364097,3.4364097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,8,2,1,1278,115540.28,0,0,780.3064 -9264,11422,20815,20817,-9,-9,2,1,1,42,1,0,2,0,3,-9,2,1,0,0,4,6.6526008,6.847898,0,2,0,-9,8,0,-8,-32.014271,0,0,0,50,3,1,3,-9,-9,2019,2,1,9,1,11,49,15,1,0,3,0,9.0993643,9.0993643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,28.91,35.16,6,1,1,0,0,4,2,0,773,359294.31,0,0,1199.3805 -9264,11422,20816,-9,20817,20815,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1025.8728,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,4,2,0,773,359294.31,0,0,1199.3805 -9264,11422,20817,20815,-9,-9,1,1,0,50,1,0,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,8,0,8,-26.026522,0,0,0,42,3,4,1,3,3,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.91,35.16,51,56,3,1,1,0,1,4,2,0,773,359294.31,0,0,1199.3805 -9264,11422,20818,-9,20817,20815,3,1,1,17,2,0,2,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.173,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,0,4,2,0,773,359294.31,0,0,1199.3805 -9265,11423,20819,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,6.8387756,6.6218753,3,0,0,0,-9,0,-1017.1334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6027989,6.6639085,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,4,2,1,1944,409762.25,0,0,1502.0704 -9266,11424,20820,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,0,3,0,8.4854479,8.1073313,3,0,0,0,-9,0,-936.4729,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.198287,8.3328571,0,0,57.029999,45.360001,-9,-9,6,1,1,0,0,2,4,1,798,700858.13,0,0,2421.7122 -9267,11425,20821,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,1,0,5.348917,5.6076164,3,0,0,0,-9,0,-1054.109,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0844455,5.4606495,0,0,31.01,21.33,-9,-9,3,1,1,0,0,4,2,1,201,-89173.883,0,0,963.44116 -9268,11426,20822,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,3,3,0,0,2,0,5.290978,5.5938816,4,0,0,0,-9,0,-963.67682,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6710215,0,0,0,23.34,32.700001,-9,-9,1,3,4,1,1,2,2,0,442.5,-7668.8281,0,0,-47.268158 -9268,11426,20823,-9,20822,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1047.3945,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,2,2,0,442.5,-7668.8281,0,0,-47.268158 -9269,11427,20824,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,8.8642025,8.4748611,0,3,0,-9,0,-9,0,-970.14795,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,48,0,15,1,0,-9,0,13.625724,13.625724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,5,1,473,435254.16,0,0,2683.4292 -9270,11428,20825,20826,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.8388119,7.7945089,0,1,0,-9,17,0,6,-57.198017,0,0,0,42,2,4,1,2,-9,2019,1,1,22,10,44,42,15,1,1,1,0,7.3259635,7.3259635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.720001,30.610001,57.16,56.150002,5,1,1,0,0,9,5,1,891,507105.81,0,0,5164.1162 -9270,11428,20826,20825,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,0,4,9.3009243,9.2795935,0,1,0,-9,17,0,-6,-9.8913069,0,0,0,48,2,3,1,2,2,2019,1,2,8,0,50,89,15,1,0,1,0,20.767689,20.767689,0,0,0,0,0,0,0,0,0,0,0,.56091738,0,0,0,57.16,56.150002,41.720001,30.610001,6,1,1,0,0,9,5,1,891,507105.81,0,0,5164.1162 -9271,11429,20827,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,0,3,8.3960428,8.4426899,0,1,0,-9,7,0,6,44.052551,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,9,0,28,35,15,1,0,-9,0,20.609306,20.609306,0,0,0,0,0,0,0,0,0,0,0,6.3893099,0,0,0,52,54.509998,61.27,46.029999,6,1,1,0,0,2,5,1,885,182035.77,0,0,1253.3575 -9271,11430,20828,-9,-9,-9,2,1,0,42,2,0,0,0,1,-9,2,1,0,0,4,8.0448675,8.1057749,0,1,0,-9,7,0,-6,-16.465322,0,0,1,-9,-9,-9,-9,2,3,2019,1,1,6,1,32,35,15,1,0,-9,0,13.031496,13.031496,0,0,0,0,0,0,0,0,0,0,0,3.5423779,0,0,0,61.27,46.029999,52,54.509998,6,1,1,0,0,2,5,1,140,1016264.9,0,0,1244.5796 -9272,11431,20829,20830,-9,-9,2,1,0,41,1,0,0,0,1,-9,2,1,0,0,3,8.6689777,8.7492123,0,1,0,-9,5,0,0,157.80682,0,0,1,41,1,4,1,-9,-9,2019,1,1,9,0,38,38,15,1,0,1,0,13.313798,13.313798,0,0,0,0,0,0,0,0,0,0,0,6.8378062,0,0,0,55.959999,49.93,63.48,51.849998,6,1,1,0,0,7,5,1,182.5,112318.11,0,0,5617.583 -9272,11431,20830,20829,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,0,4,8.6789303,8.9136629,0,1,0,-9,5,0,0,-11.797184,0,0,0,41,1,3,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,18.653753,18.653753,0,0,0,0,0,0,0,0,0,0,0,8.4757252,0,0,0,63.48,51.849998,55.959999,49.93,7,1,1,0,0,7,5,1,182.5,112318.11,0,0,5617.583 -9273,11432,20831,20832,-9,-9,1,1,0,58,1,0,0,0,3,-9,2,1,0,0,3,6.8505549,6.9687796,0,1,0,-9,41,0,-6,-67.122993,0,0,0,64,3,2,1,3,3,2019,1,2,7,0,28,17,15,1,0,1,0,5.9579439,5.9579439,0,0,0,0,0,0,0,2,1,1,0,0,0,7.4722996,2,55.360001,51.57,43.759998,42.450001,7,1,1,0,0,7,4,1,463.5,713258.13,0,0,2367.8928 -9273,11432,20832,20831,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,1,2,8.2885323,8.5184984,5.7873311,1,0,-9,39,0,6,23.827633,0,0,0,58,3,3,1,2,3,2019,1,1,18,6,44,40,15,1,1,1,0,12.281248,12.281248,0,0,0,0,0,0,0,2,1,1,0,5.892499,6.2094975,4.435185,3,43.759998,42.450001,55.360001,51.57,4,1,1,0,0,7,4,1,463.5,713258.13,0,0,2367.8928 -9274,11433,20833,20834,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,0,3,0,6.7286119,7.1779885,1,0,-9,10,0,-2,-2.0461836,0,0,0,88,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6674609,0,0,52,45,54,45,6,1,1,0,0,13,2,1,405,608063.5,0,0,2005.0244 -9274,11433,20834,20833,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,0,3,0,6.2286224,6.0615869,1,0,-9,10,0,2,44.615883,0,0,0,86,2,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,14.066177,14.170025,0,0,0,97.995903,0,1,1,0,0,5.8549862,0,0,54,45,52,45,6,1,1,0,0,13,2,1,405,608063.5,0,0,2005.0244 -9275,11434,20835,20836,-9,-9,1,1,0,50,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,33,0,-2,-17.013647,0,0,0,52,3,5,1,3,3,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5528717,0,0,0,48.93,31.790001,64.239998,39.41,3,1,1,0,0,9,4,1,405.5,442015.19,0,0,4195.7632 -9275,11434,20836,20835,-9,-9,2,1,1,52,1,0,0,0,3,-9,2,1,0,0,5,8.8388958,9.2341785,0,1,0,-9,34,0,2,-23.395809,0,0,0,50,2,2,3,3,2,2019,2,1,1,0,43,40,15,1,0,3,0,20.144213,20.144213,0,0,0,0,0,0,0,0,1,1,0,4.0560675,0,0,0,64.239998,39.41,48.93,31.790001,1,1,1,0,0,9,4,1,405.5,442015.19,0,0,4195.7632 -9275,11435,20837,-9,20835,20836,3,1,1,18,2,0,0,0,2,1,2,1,0,0,3,6.8725581,7.2017622,0,3,0,0,0,-9,0,-1002.2989,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,26,9,20,0,15,1,1,-9,1,7.7723837,7.7723837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.540001,64.230003,-9,-9,2,1,1,0,0,9,3,1,910,-21170.049,0,0,850.87976 -9276,11436,20838,20839,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,2,0,8,0,0,0,0,66,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,4.1482663,0,0,0,0,13.387919,0,1,1,0,0,0,0,0,47,36,52,48,5,1,1,0,0,11,1,0,1024.5,99118.031,0,0,1188.6816 -9276,11436,20839,20838,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,2,0,-8,0,0,0,0,74,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,44.005207,0,1,1,0,0,0,0,0,52,48,47,36,5,1,1,0,0,11,1,0,1024.5,99118.031,0,0,1188.6816 -9277,11437,20840,20841,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,0,4,7.9788227,8.025012,0,2,0,-9,20,0,0,-6.0633526,0,0,0,52,2,3,1,-9,-9,2019,1,1,9,0,41,36,15,1,0,1,0,8.6639032,8.6639032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.799999,50.32,59.91,42.650002,6,1,1,0,0,13,4,1,485.66666,565098.75,0,0,2961.9424 -9277,11437,20841,20840,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.2921982,8.5473528,0,2,0,-9,25,0,0,147.56648,0,0,0,52,2,4,1,-9,-9,2019,1,2,7,0,37,38,15,1,0,1,0,14.066388,14.066388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.91,42.650002,54.799999,50.32,6,1,1,0,0,13,4,1,485.66666,565098.75,0,0,2961.9424 -9277,11437,20842,-9,20840,20841,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1075.3195,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.860001,51.099998,-9,-9,5,1,1,0,0,13,4,1,485.66666,565098.75,0,0,2961.9424 -9277,11438,20843,-9,20840,20841,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,7.9730606,7.9932747,0,3,0,0,0,-9,0,-1024.8306,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,43,0,15,1,0,-9,1,6.9444952,6.9444952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.93,54.77,-9,-9,6,1,1,0,0,13,4,1,894,156121.92,0,0,602.7019 -9278,11439,20844,20845,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,7.9234233,7.7071176,0,2,0,-9,7,0,3,-4.0780997,0,0,0,51,2,3,1,-9,-9,2019,1,1,12,1,37,47,15,1,0,1,0,6.8743992,6.8743992,0,0,0,0,0,0,0,0,1,1,0,3.9502764,0,0,0,56.57,57.779999,42.029999,42.919998,5,1,1,0,0,11,3,1,1168,153687.25,0,0,1732.7413 -9278,11439,20845,20844,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,0,3,7.1139455,6.5818291,0,2,0,-9,7,0,-3,-95.336761,0,0,0,54,2,4,1,3,-9,2019,1,2,12,0,20,8,15,1,0,1,0,5.6863799,5.6863799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.029999,42.919998,56.57,57.779999,4,1,1,0,0,11,3,1,1168,153687.25,0,0,1732.7413 -9279,11440,20846,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,5.5587654,5.125031,3,0,-9,0,1,0,-969.07825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,7.1971416,0,0,0,0,0,0,1,1,0,5.2838435,5.0790443,0,0,15.64,30.450001,-9,-9,4,1,1,0,0,7,2,0,181,371948.94,0,0,2204.6907 -9280,11441,20847,20848,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,7.6257119,7.7314653,0,1,0,-9,5,0,-11,-60.534939,0,0,1,53,2,5,1,-9,-9,2019,1,1,12,2,37,30,15,1,0,1,0,7.5867782,7.5867782,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.643951,3,42.950001,61.240002,59.43,58.049999,4,1,1,0,0,4,5,0,569.5,1146733,0,0,2829.8518 -9280,11441,20848,20847,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.6876535,8.9855728,0,1,0,-9,5,0,11,-11.933549,0,0,0,42,2,4,1,2,2,2019,1,2,7,0,40,42,15,1,0,1,0,21.935465,21.935465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,42.950001,61.240002,6,1,1,0,0,4,5,0,569.5,1146733,0,0,2829.8518 -9281,11442,20849,-9,20850,20852,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1100.5706,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,12,5,1,1025.25,795108.19,0,0,6535.5322 -9281,11442,20850,20852,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,8.6654463,8.7163706,0,2,0,-9,2,0,-4,196.72543,0,0,0,51,1,3,1,1,1,2019,1,2,10,1,40,40,15,1,0,1,0,27.173697,27.173697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,60.73,36.84,6,1,1,0,0,12,5,1,1025.25,795108.19,0,0,6535.5322 -9281,11442,20851,-9,20850,20852,5,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.039,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,1025.25,795108.19,0,0,6535.5322 -9281,11442,20852,20850,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,1,3,7.9041748,8.3214216,7.5938487,2,0,-9,2,0,4,-87.221214,0,0,0,47,1,4,1,1,1,2019,1,1,6,0,24,25,15,1,0,1,0,15.107641,15.107641,0,0,0,0,0,0,0,0,1,1,0,8.1953983,7.3749123,0,0,60.73,36.84,50,55,6,1,1,0,0,12,5,1,1025.25,795108.19,0,0,6535.5322 -9281,11443,20853,-9,20850,20852,3,1,0,20,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1061.1265,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4511039,0,0,0,46,58,-9,-9,5,1,1,0,0,12,1,1,1421,139067.55,0,0,-934.61121 -9282,11444,20854,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,3.316704,3.180454,3,0,0,0,-9,0,-1005.097,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.0155067,0,0,63.549999,39.700001,-9,-9,6,1,1,0,0,12,2,1,2799,504738,0,0,-393.70523 -9283,11445,20855,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,1,2,0,6.5067816,6.2944503,3,0,0,0,-9,0,-965.91327,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1322412,0,0,0,24.6,36.209999,-9,-9,3,1,1,0,0,10,2,0,159,245545.13,0,0,191.46849 -9284,11446,20856,20857,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.2905951,7.3265672,1,0,-9,51,0,4,-15.395122,0,0,0,70,2,3,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0423465,7.1398787,0,0,58.43,51.57,55.959999,44.400002,6,1,1,0,0,2,2,1,2208.5,544167.31,0,0,1010.3329 -9284,11446,20857,20856,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,4.0181317,3.993645,1,0,-9,51,0,-4,-7.8438559,0,0,0,74,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1794813,4.3343892,0,0,55.959999,44.400002,58.43,51.57,7,1,1,0,0,2,2,1,2208.5,544167.31,0,0,1010.3329 -9285,11447,20858,20860,-9,-9,2,1,0,42,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,22,0,0,-16.945499,0,0,1,42,2,3,1,2,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.779999,37.869999,48.419998,50.810001,5,2,3,0,0,2,3,0,1200,346665.91,0,0,2009.4556 -9285,11447,20859,-9,20858,20860,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.2008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,0,1200,346665.91,0,0,2009.4556 -9285,11447,20860,20858,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.1330194,8.1875067,0,2,0,-9,22,0,0,-65.934937,0,0,0,42,2,2,3,3,3,2019,2,2,6,0,44,40,15,1,0,3,0,9.6457548,9.6457548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.419998,50.810001,50.779999,37.869999,5,2,3,0,0,2,3,0,1200,346665.91,0,0,2009.4556 -9286,11448,20861,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,1,1,0,5.0779495,5.4425564,3,0,0,0,-9,0,-987.48846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,8.2578449,0,0,0,0,0,71.5,1,1,0,6.6850047,5.3568425,67.093178,3,50.02,19.09,-9,-9,5,1,1,0,1,12,2,1,191,308386.03,0,0,1238.4772 -9287,11449,20862,-9,-9,-9,1,1,0,58,3,0,1,0,2,-9,2,1,0,0,1,7.5533371,7.8296351,0,4,0,0,0,-9,0,-941.25262,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,16,16,15,1,0,-9,0,18.163872,18.163872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,28.59,-9,-9,5,1,1,0,1,6,3,0,1059,498632,0,0,1512.118 -9288,11450,20863,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.4449186,7.6873565,0,1,0,1,1,-9,0,143.17464,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,2,12,0,41,37,15,1,0,-9,0,6.9415975,6.9415975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.790001,58.400002,46,58,6,1,1,0,0,1,3,1,410,83145.195,0,0,2901.5286 -9289,11451,20864,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,4,8.99259,8.3878412,0,3,0,-9,0,-9,0,-1078.4982,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,45,0,15,1,0,-9,0,14.901218,14.901218,0,0,0,0,0,0,0,2,0,0,0,1.8646939,0,4.2171388,3,58.150002,52.91,-9,-9,6,1,1,0,0,9,5,1,142,266581.38,0,0,2971.1025 -9290,11452,20865,-9,20867,20866,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.24957,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,474.66666,136072.91,0,0,3354.1948 -9290,11452,20866,20867,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,0,4,8.6482849,8.8289728,0,2,0,-9,8,0,-1,78.204887,0,0,0,35,1,3,1,1,2,2019,1,1,19,6,39,38,15,1,1,1,0,13.915203,13.915203,0,0,0,0,0,0,0,0,1,1,0,3.6424873,0,0,0,38.290001,55.450001,49.040001,55.860001,6,1,1,0,0,9,4,1,474.66666,136072.91,0,0,3354.1948 -9290,11452,20867,20866,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,0,3,7.8500924,7.5265703,0,2,0,-9,8,0,1,100.80396,0,0,1,34,1,4,1,2,2,2019,1,2,8,0,22,21,15,1,0,1,0,11.507329,11.507329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,38.290001,55.450001,7,1,1,0,0,9,4,1,474.66666,136072.91,0,0,3354.1948 -9291,11453,20868,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,4,8.385169,8.575469,6.7502828,3,0,0,0,-9,0,-975.67017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,37,38,15,1,0,-9,0,15.078958,15.078958,0,0,0,0,0,0,0,0,0,0,0,0,7.1032085,0,0,52.82,53.970001,-9,-9,5,1,1,0,0,7,5,1,735,861491.44,0,0,2077.9536 -9292,11454,20869,20870,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,7.1066628,7.0173006,0,1,0,-9,6,0,-3,-102.01723,0,0,0,55,1,2,1,1,1,2019,1,1,7,0,17,16,15,1,0,1,0,8.2131071,8.2131071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,50.400002,40.84,6,1,1,0,0,10,5,1,486.5,1141478.1,0,0,4308.063 -9292,11454,20870,20869,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,2,8.8311357,9.2301569,0,1,0,-9,6,0,3,126.59983,0,0,0,52,1,4,1,2,2,2019,1,2,13,1,52,45,15,1,0,1,0,23.848452,23.848452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.400002,40.84,51.77,58.57,4,1,1,0,0,10,5,1,486.5,1141478.1,0,0,4308.063 -9293,11455,20871,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,5,0,7.0345664,6.8756523,3,0,0,0,-9,0,-1034.4712,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.397943,38.374004,3,40.610001,64.019997,-9,-9,3,1,1,0,0,7,2,1,1218,544761.63,0,0,1271.1249 -9294,11456,20872,20873,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,-3,-25.387934,0,0,0,73,2,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,57.650002,56.130001,7,1,1,0,0,9,3,1,1120.5,1530391.5,0,0,2583.9905 -9294,11456,20873,20872,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,5,0,8.1792221,7.9354243,1,0,-9,51,0,3,9.3879032,0,0,0,70,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1206732,0,0,57.650002,56.130001,60.119999,54.799999,7,1,1,0,0,9,3,1,1120.5,1530391.5,0,0,2583.9905 -9295,11457,20874,-9,20876,20875,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-832.0918,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,5,1,415.5,725416.63,0,0,4410.2231 -9295,11457,20875,20876,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,8.788208,8.9535866,0,2,0,-9,7,0,2,80.800224,0,0,0,43,1,4,1,2,1,2019,1,2,5,0,38,36,15,1,0,1,0,18.425234,18.425234,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,35.459999,60.619999,6,1,1,0,0,12,5,1,415.5,725416.63,0,0,4410.2231 -9295,11457,20876,20875,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.6322088,8.7114897,0,2,0,-9,7,0,-2,1.1488177,0,0,1,45,2,3,1,2,1,2019,1,1,9,0,38,39,15,1,0,1,0,16.630903,16.630903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.459999,60.619999,54.369999,54.799999,6,1,1,0,0,12,5,1,415.5,725416.63,0,0,4410.2231 -9295,11457,20877,-9,20876,20875,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-972.99994,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,12,5,1,415.5,725416.63,0,0,4410.2231 -9296,11458,20878,20879,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,0,4,8.8260651,8.8469276,0,1,0,-9,13,0,4,-21.380329,0,0,0,27,2,3,1,2,2,2019,1,1,7,0,45,55,15,1,0,1,0,17.906572,17.906572,0,0,0,0,0,0,0,0,0,0,0,.59617132,0,0,0,51.240002,58.84,51.27,45.41,6,1,1,0,0,10,5,1,555.5,479126.44,0,0,4186.7168 -9296,11458,20879,20878,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,3,8.1145287,8.2094746,0,1,0,-9,13,0,-4,73.586815,0,1,1,31,2,4,1,-9,2,2019,1,2,7,0,37,38,15,1,0,1,0,13.398584,13.398584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.27,45.41,51.240002,58.84,5,1,1,0,0,10,5,1,555.5,479126.44,0,0,4186.7168 -9297,11459,20880,-9,20881,20882,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.57458,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,5,1,620,479823.69,0,0,4212.6431 -9297,11459,20881,20882,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,2,8.9182873,8.9127131,5.8317666,2,0,-9,17,0,8,-30.791121,0,0,0,43,2,4,1,2,2,2019,1,1,9,1,40,37,15,1,0,1,0,21.028751,21.028751,0,0,0,0,0,0,0,0,1,1,0,0,6.1587777,0,0,59.459999,36.459999,59.290001,49.68,6,1,1,0,0,9,5,1,620,479823.69,0,0,4212.6431 -9297,11459,20882,20881,-9,-9,1,1,1,43,1,0,1,0,2,-9,1,1,0,0,4,7.9194498,7.8478041,0,2,0,-9,17,0,-8,-6.2870941,0,0,0,51,1,2,1,2,2,2019,1,2,6,0,40,35,15,1,0,1,0,7.5457187,7.5457187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.290001,49.68,59.459999,36.459999,6,1,1,0,0,9,5,1,620,479823.69,0,0,4212.6431 -9298,11460,20883,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,0,4,8.7707014,8.7391291,0,3,0,0,0,-9,0,-1039.3154,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,30,15,1,0,-9,0,12.83589,12.83589,0,0,0,0,0,0,0,0,0,0,0,3.160785,0,0,0,59.290001,49.68,-9,-9,6,1,1,0,0,10,5,0,418,252124.64,0,0,2171.8223 -9299,11461,20884,20885,-9,-9,1,1,0,47,1,0,0,0,3,-9,2,1,0,0,4,8.1319427,7.799952,0,1,0,-9,12,0,2,-21.858316,0,0,0,45,1,2,1,2,-9,2019,1,2,6,0,38,38,15,1,0,1,0,13.08023,13.08023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,47.119999,37,6,4,2,0,0,8,5,0,340.5,418364.44,0,0,2034.464 -9299,11461,20885,20884,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,2,8.0549288,8.1955137,0,1,0,-9,12,0,-2,123.86748,0,0,0,47,3,4,1,2,-9,2019,1,1,12,0,44,48,15,1,0,1,0,9.1101875,9.1101875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.119999,37,57.16,56.150002,5,4,2,0,0,8,5,0,340.5,418364.44,0,0,2034.464 -9300,11462,20886,20887,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,7.3285832,7.225297,0,1,0,-9,37,0,-1,0,0,0,0,59,1,3,1,2,3,2019,1,2,6,0,0,4,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.3666735,0,5.1252608,3,60.119999,54.799999,55.959999,49.93,7,1,1,0,0,12,3,1,1555,707756.88,0,0,3054.4502 -9300,11462,20887,20886,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,0,3,6.9136591,7.1633477,0,1,0,-9,37,0,1,0,0,0,0,58,1,4,1,2,2,2019,1,1,9,1,39,40,15,1,0,1,0,4.4475646,4.4475646,0,0,0,0,0,0,0,7,0,0,0,2.4664812,0,10.362834,3,55.959999,49.93,60.119999,54.799999,6,1,1,0,0,12,3,1,1555,707756.88,0,0,3054.4502 -9301,11463,20888,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-944.80182,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.310001,50.610001,-9,-9,6,1,1,0,0,5,1,1,1963,8628.7402,0,0,1430.1835 -9302,11464,20889,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,8.3920927,8.4670677,0,3,0,0,0,-9,0,-921.27197,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,37,37,15,1,0,-9,0,11.995163,11.995163,0,0,0,0,0,0,0,0,0,0,0,2.7141967,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,4,0,180,734786.38,0,0,517.32251 -9303,11465,20890,20891,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,0,4,9.5209169,9.4667501,0,2,0,-9,23,0,3,53.582054,0,0,0,49,1,5,1,1,1,2019,1,2,6,0,30,50,15,1,0,1,0,70.572495,70.572495,0,0,0,0,0,0,0,0,0,0,0,6.9758835,0,0,0,57.16,56.150002,59.43,58.049999,6,1,1,0,0,9,5,1,629,98925.164,0,0,11328.795 -9303,11465,20891,20890,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,0,5,7.6162882,7.5195322,0,2,0,-9,23,0,-3,70.786652,0,0,0,52,1,4,1,2,2,2019,1,1,0,0,6,26,15,1,0,1,0,42.893932,42.893932,0,0,0,0,0,0,0,0,0,0,0,3.4425516,0,0,0,59.43,58.049999,57.16,56.150002,7,1,1,0,0,9,5,1,629,98925.164,0,0,11328.795 -9303,11466,20892,-9,20891,20890,3,1,1,18,2,0,2,0,3,1,1,1,0,0,5,7.2951274,7.2942996,0,3,0,0,0,-9,0,-933.23907,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,80,0,15,1,0,-9,1,2.0276403,2.0276403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,-9,-9,4,1,1,0,0,9,3,1,441,-80349.352,0,0,334.32889 -9304,11467,20893,20895,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,0,3,7.2513232,7.2499857,0,2,0,-9,9,0,1,-62.192612,0,0,1,38,2,3,1,-9,-9,2019,1,1,14,3,0,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.279999,46.849998,29.540001,58.139999,5,1,1,0,0,5,4,1,700,197811.23,0,0,1832.8896 -9304,11467,20894,-9,20893,20895,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.07092,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,5,4,1,700,197811.23,0,0,1832.8896 -9304,11467,20895,20893,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,3,8.1243649,8.0017891,0,2,0,-9,9,0,-1,-122.46588,0,0,0,39,2,3,1,2,2,2019,1,2,13,1,43,47,15,1,0,1,0,10.345313,10.345313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.540001,58.139999,42.279999,46.849998,3,1,1,0,1,5,4,1,700,197811.23,0,0,1832.8896 -9305,11468,20896,-9,20899,20898,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.34161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,4,1,1064.75,435635.31,0,0,4641.2769 -9305,11468,20897,-9,20899,20898,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.7766,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,4,1,1064.75,435635.31,0,0,4641.2769 -9305,11468,20898,20899,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.6683741,8.3807831,0,2,0,-9,6,0,2,-32.469391,0,0,0,47,2,3,1,2,2,2019,1,2,17,5,40,40,15,1,1,1,0,16.001389,16.001389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.630001,47.830002,35.799999,59.5,3,1,1,0,0,6,4,1,1064.75,435635.31,0,0,4641.2769 -9305,11468,20899,20898,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,1,3,8.2220087,8.3280773,0,2,0,-9,6,0,-2,65.301773,0,0,0,49,2,4,1,2,2,2019,1,1,20,8,19,22,15,1,1,1,0,23.070936,23.070936,0,0,0,0,0,0,0,42,1,1,0,0,0,33.675804,3,35.799999,59.5,51.630001,47.830002,4,1,1,0,0,6,4,1,1064.75,435635.31,0,0,4641.2769 -9305,11469,20900,-9,20899,20898,3,1,1,21,2,0,2,0,1,1,2,1,0,0,5,7.8730588,7.6963034,0,3,0,0,0,-9,0,-1000.9774,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,0,15,1,0,-9,1,5.5615969,5.5615969,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.259998,55.849998,-9,-9,6,1,1,0,0,6,3,1,244,71948.945,0,0,1437.5573 -9306,11470,20901,20903,-9,-9,1,1,1,44,1,0,1,0,1,-9,1,1,0,0,5,9.0525427,8.9221935,6.4959893,2,0,-9,13,0,-1,-154.62115,0,0,0,45,1,4,1,2,3,2019,1,2,12,0,37,0,15,1,0,1,0,24.19688,24.19688,0,0,0,0,0,0,0,0,0,0,0,0,6.9206243,0,0,43.630001,57.360001,54.790001,55.860001,6,2,3,0,0,4,5,1,490.33334,1665124.6,0,0,5582.2612 -9306,11470,20902,-9,20903,20901,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-999.90979,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,5,4,2,0,0,4,5,1,490.33334,1665124.6,0,0,5582.2612 -9306,11470,20903,20901,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,4,8.8197594,8.7483587,0,2,0,-9,13,0,1,-22.58905,-9,0,0,44,1,5,1,2,1,2019,1,1,8,0,39,0,15,1,0,1,0,19.156643,19.156643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,43.630001,57.360001,6,1,1,0,0,4,5,1,490.33334,1665124.6,0,0,5582.2612 -9307,11471,20904,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,8.2438126,8.0524998,0,3,0,0,0,-9,0,-1016.2595,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,43,46,15,1,0,-9,0,10.717625,10.717625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.240002,53.41,-9,-9,6,4,2,0,0,2,4,1,811,482308.03,0,0,484.79379 -9308,11472,20905,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,0,3,8.1238213,8.3165121,0,3,0,0,0,-9,0,-931.86554,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,0,11.279568,11.279568,0,0,0,0,0,0,0,0,1,1,0,3.4678206,0,0,0,50,49,-9,-9,5,1,1,0,0,5,4,0,159,107219.69,0,0,863.87378 -9308,11473,20906,-9,20907,-9,3,1,1,13,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-983.04987,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,6,0,0,5,1,0,401.33334,14426.836,0,0,1950.0977 -9308,11473,20907,-9,-9,-9,2,1,0,48,3,0,0,0,2,-9,1,1,0,1,4,0,0,0,3,0,0,0,-9,0,-1198.6512,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,20,20,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.436309,3,39.23,48.040001,-9,-9,5,1,1,0,0,5,1,0,401.33334,14426.836,0,0,1950.0977 -9308,11473,20908,-9,20907,-9,4,1,0,12,2,0,0,1,3,-9,-9,2,0,0,2,0,0,0,3,0,0,0,-9,0,-929.14496,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,5,1,0,401.33334,14426.836,0,0,1950.0977 -9309,11474,20909,20910,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,5,8.3458595,8.0929718,5.1535306,2,0,-9,3,0,-14,-25.697529,0,0,1,58,3,4,1,-9,-9,2019,1,1,8,0,50,60,15,1,0,1,0,6.3941188,6.3941188,0,0,0,0,0,0,0,0,1,1,0,7.5175552,0,0,0,54.099998,59.110001,60.119999,54.799999,7,1,1,0,0,9,5,1,388,776129.5,0,0,7468.0352 -9309,11474,20910,20909,-9,-9,1,1,1,58,1,0,1,0,3,-9,1,1,0,0,4,9.2725086,9.1685886,0,2,0,-9,3,0,14,66.421066,0,0,0,44,2,5,1,2,1,2019,1,2,6,0,60,60,15,1,0,1,0,18.398939,18.398939,0,0,0,0,0,0,0,0,1,1,0,7.5583167,0,0,0,60.119999,54.799999,54.099998,59.110001,7,1,1,0,0,9,5,1,388,776129.5,0,0,7468.0352 -9310,11475,20911,20912,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,9.1994638,9.0794706,0,1,0,-9,9,0,-3,-67.372574,0,0,0,54,3,3,1,2,2,2019,1,1,9,0,95,61,15,1,0,1,0,10.294367,10.294367,0,0,0,0,0,0,0,0,0,0,0,3.8513756,0,0,0,57.16,56.150002,49,50,6,1,1,0,0,13,5,1,454,575829.81,0,0,5512.0605 -9310,11475,20912,20911,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,8.0808535,8.0814104,0,1,0,-9,9,0,3,-119.80354,0,0,0,51,2,4,1,3,2,2019,1,2,11,1,37,37,15,1,0,1,0,7.821825,7.821825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,57.16,56.150002,5,1,1,0,0,13,5,1,454,575829.81,0,0,5512.0605 -9311,11476,20913,20916,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.2947116,7.3582754,0,1,0,-9,20,0,-3,31.63534,0,0,0,56,3,3,1,2,2,2019,1,2,10,0,24,26,15,1,0,1,0,8.3923254,8.3923254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,57.07,46.709999,6,1,1,0,0,10,4,1,879.75,521733.66,0,0,3164.8887 -9311,11476,20914,-9,20913,20916,3,1,1,17,2,0,0,0,2,-9,7,2,0,0,3,6.4098201,6.4086552,0,1,0,0,0,-9,0,-1025.3153,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,3,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,10,4,1,879.75,521733.66,0,0,3164.8887 -9311,11476,20915,-9,20913,20916,4,1,0,16,2,0,0,1,2,-9,7,2,0,0,4,5.2005663,5.0247436,0,1,0,0,0,-9,0,-1088.5555,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,4,1,879.75,521733.66,0,0,3164.8887 -9311,11476,20916,20913,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,3,8.7058496,8.3688278,0,1,0,-9,20,0,3,93.409737,0,0,0,53,2,4,1,2,2,2019,1,1,12,0,45,50,15,1,0,1,0,11.562703,11.562703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,46.709999,55.189999,54.259998,4,1,1,0,0,10,4,1,879.75,521733.66,0,0,3164.8887 -9312,11477,20917,20918,-9,-9,1,1,1,58,1,0,1,0,2,-9,1,1,0,0,5,8.1770353,8.2796535,7.0342188,2,0,-9,9,0,7,111.45636,0,0,0,51,2,5,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,13.64372,13.64372,0,0,0,0,0,0,0,0,1,1,0,4.6102309,7.3414736,0,0,62.389999,56.709999,57.060001,57.759998,7,1,1,0,0,6,4,1,431,381554.06,0,0,2504.8186 -9312,11477,20918,20917,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,5,6.5492163,6.8114991,0,2,0,-9,28,0,-7,-43.270676,0,0,0,58,2,5,1,2,2,2019,1,1,8,0,12,13,15,1,0,1,0,5.9749365,5.9749365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,62.389999,56.709999,7,1,1,0,0,6,4,1,431,381554.06,0,0,2504.8186 -9312,11478,20919,-9,20918,20917,5,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-881.75043,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7659421,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,6,4,1,378,-9510.5586,0,0,-915.49762 -9313,11479,20920,20921,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,0,2,7.8880568,7.890605,0,1,0,-9,2,0,4,-.48134694,0,0,1,27,1,5,1,1,2,2019,1,2,13,2,42,50,15,1,0,1,0,5.2071362,5.2071362,0,0,0,0,0,0,0,0,0,0,0,9.6590643,0,0,0,56.599998,28.299999,60.02,56.419998,5,1,1,0,0,6,4,1,1430.5,-21842.879,0,0,11117.031 -9313,11479,20921,20920,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,5,8.1617641,8.4311476,0,1,0,-9,2,0,-4,-42.974747,0,1,0,31,2,2,1,-9,-9,2019,1,1,8,0,35,0,15,1,0,1,0,10.089608,10.089608,0,0,0,0,0,0,0,0,0,0,0,9.476903,0,0,0,60.02,56.419998,56.599998,28.299999,6,1,1,0,0,6,4,1,1430.5,-21842.879,0,0,11117.031 -9314,11480,20922,20923,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,8.634552,8.6855736,0,1,0,-9,1,-9,5,-16.065779,-9,0,0,36,2,5,1,-9,-9,2019,1,1,15,4,40,0,15,1,1,1,0,14.562589,14.562589,0,0,0,0,0,0,0,2,0,0,0,6.9690089,0,0,3,49.290001,54.59,48.77,60.16,6,1,1,0,0,9,5,1,342.5,445161.06,0,0,7521.4688 -9314,11480,20923,20922,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,0,5,9.2512026,9.1329508,0,1,0,1,1,-9,-5,-86.284294,0,0,1,41,2,3,1,2,2,2019,1,2,10,1,47,50,15,1,0,1,0,32.446625,32.446625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49.290001,54.59,6,1,1,0,0,9,5,1,342.5,445161.06,0,0,7521.4688 -9315,11481,20924,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,2,0,6.9120302,7.5034943,3,0,0,0,-9,0,-944.13428,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.174407,0,0,32.68,35.189999,-9,-9,3,1,1,0,0,9,3,1,716,464879.19,0,0,1229.4108 -9316,11482,20925,20926,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.8303204,9.9795771,0,1,0,-9,31,0,-1,2.6720364,0,0,0,55,1,4,1,2,1,2019,1,1,8,0,50,60,15,1,0,1,0,33.968147,33.968147,0,0,0,0,0,0,0,0,0,0,0,4.8563323,0,0,0,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,9,5,1,999.5,3753494,0,0,6018.8486 -9316,11482,20926,20925,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,7.7932477,7.8372169,0,1,0,-9,31,0,1,-3.2242606,0,0,0,54,1,4,1,1,2,2019,1,2,8,0,26,30,15,1,0,1,0,12.772835,12.772835,0,0,0,0,0,0,0,14.5,0,0,0,3.8567998,0,18.303371,3,54.200001,57.490002,54.200001,57.490002,6,1,1,0,0,9,5,1,999.5,3753494,0,0,6018.8486 -9317,11483,20927,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,0,1,8.3085546,8.3399525,0,3,0,-9,0,-9,0,-1022.1408,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,52,0,15,1,1,-9,0,9.9467916,9.9467916,0,0,0,0,0,0,0,0,1,1,0,2.5084257,0,0,0,19.01,22.639999,-9,-9,1,1,1,0,0,9,4,0,1286,267609.16,0,0,1997.7815 -9318,11484,20928,20930,-9,-9,1,1,1,51,1,1,2,0,3,-9,1,1,0,0,4,5.6059685,5.8246255,3.205847,2,0,-9,23,0,10,170.28381,0,0,0,41,2,3,3,-9,-9,2019,2,2,9,1,25,50,15,1,0,3,0,1.5369165,1.5369165,0,0,0,0,0,0,0,0,1,1,0,0,3.1728802,0,0,53,54,31.34,36.889999,6,2,3,0,0,6,2,1,549.25,0,0,0,1407.868 -9318,11484,20929,-9,20930,20928,6,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.1496,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,2,1,549.25,0,0,0,1407.868 -9318,11484,20930,20928,-9,-9,2,1,0,41,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-10,42.72995,0,0,1,51,3,4,1,-9,-9,2019,3,1,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,36.889999,53,54,6,2,3,0,1,6,2,1,549.25,0,0,0,1407.868 -9318,11484,20931,-9,20930,20928,5,1,1,17,2,1,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1069.7433,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.459999,56.16,-9,-9,7,2,3,0,0,6,2,1,549.25,0,0,0,1407.868 -9319,11485,20932,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,0,2,8.6245966,8.7004004,0,3,0,0,0,-9,0,-931.01868,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,49,60,15,1,0,-9,0,15.839007,15.839007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.950001,38.490002,-9,-9,6,1,1,0,0,2,5,0,618,862021.31,0,0,2282.1182 -9320,11486,20933,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,3,0,7.038681,7.2770448,3,0,0,0,-9,0,-949.53772,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.0034213,.40062994,0,0,1,1,0,8.858263,6.9178057,0,0,56.939999,49.529999,-9,-9,5,1,1,0,0,10,2,1,122,401578.34,0,0,2671.8625 -9321,11487,20934,20935,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,7.1863952,7.2826262,0,1,0,-9,9,0,-4,19.034288,0,0,0,54,2,1,1,2,3,2019,1,1,8,2,24,24,15,1,0,1,0,8.8192358,8.8192358,0,0,0,0,0,0,0,7,1,1,0,7.4221454,0,4.6212616,3,55.82,25.879999,34.830002,49.52,4,1,1,0,1,10,4,1,702,332180.75,0,0,2796.3967 -9321,11487,20935,20934,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,1,8.1596756,8.461544,0,1,0,-9,9,0,4,.33310026,0,0,0,50,2,2,1,2,2,2019,1,2,13,2,37,37,15,1,0,1,0,12.58393,12.58393,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.855279,3,34.830002,49.52,55.82,25.879999,3,1,1,0,0,10,4,1,702,332180.75,0,0,2796.3967 -9322,11488,20936,20937,-9,-9,2,1,1,40,1,1,1,0,2,-9,1,1,0,0,4,7.5935426,7.9151607,0,2,0,-9,7,0,14,117.04695,0,0,0,26,2,4,3,2,2,2019,2,1,12,0,35,40,15,1,0,3,0,6.7750373,6.7750373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.049999,52.709999,45.91,59.889999,6,1,1,0,0,4,2,0,584.33331,-84760.414,0,0,1440.1332 -9322,11488,20937,20936,-9,-9,1,1,0,26,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-14,70.345154,0,1,1,40,2,4,1,3,2,2019,3,2,11,0,0,24,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,53.049999,52.709999,6,1,1,0,0,4,2,0,584.33331,-84760.414,0,0,1440.1332 -9322,11488,20938,-9,20937,20936,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1120.528,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,584.33331,-84760.414,0,0,1440.1332 -9323,11489,20939,20940,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,6.4177732,6.5133657,1,0,-9,46,0,-4,-83.91008,0,0,0,70,3,2,3,3,3,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.489501,6.0076971,0,0,47.080002,48.43,60.689999,39.98,6,1,1,0,0,10,3,1,1280,1110196,0,0,1999.8474 -9323,11489,20940,20939,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,6.9229555,7.0008554,1,0,-9,44,0,4,16.61997,0,0,0,66,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6938272,7.0479264,0,0,60.689999,39.98,47.080002,48.43,7,1,1,0,0,10,3,1,1280,1110196,0,0,1999.8474 -9324,11490,20941,20942,-9,-9,2,1,1,28,1,0,0,0,3,-9,2,1,0,0,5,9.1272821,9.1103506,0,1,0,-9,1,-9,1,76.189468,-9,1,0,27,2,3,1,-9,-9,2019,1,1,8,0,126,0,15,1,0,1,0,8.1643839,8.1643839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,41.23,59.349998,7,1,1,0,0,9,5,1,1174.5,86483.961,0,0,4387.7349 -9324,11490,20942,20941,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,3,7.4001379,7.5453949,0,1,0,1,1,-9,-1,-168.44293,-9,1,1,28,3,5,1,2,2,2019,1,2,15,3,30,0,15,1,0,1,0,7.0887318,7.0887318,0,0,0,0,0,0,0,0,0,0,0,.22713141,0,0,0,41.23,59.349998,54.099998,59.110001,6,1,1,0,0,9,5,1,1174.5,86483.961,0,0,4387.7349 -9325,11491,20943,20944,-9,-9,1,1,1,33,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,5,0,0,0,0,28,2,3,3,-9,-9,2019,4,2,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.98083,3,39.150002,41.419998,29.530001,43.009998,5,1,1,1,0,8,1,0,1515.5,13252.328,0,0,644.84589 -9325,11491,20944,20943,-9,-9,2,1,0,28,1,0,0,0,2,-9,3,3,0,1,3,0,0,0,1,0,-9,2,0,-5,0,0,1,1,33,2,3,3,-9,-9,2019,4,1,17,5,0,18,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,106.64184,3,29.530001,43.009998,39.150002,41.419998,4,1,1,1,0,8,1,0,1515.5,13252.328,0,0,644.84589 -9326,11492,20945,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,3,3,0,1,1,0,5.5255218,5.4234657,3,0,0,0,-9,0,-1134.7635,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.4341841,0,23.774666,3,25.120001,37.349998,-9,-9,4,2,3,1,1,8,2,0,418,-99621.563,0,0,1474.3317 -9326,11493,20946,-9,-9,20945,2,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1052.3687,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,7,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,54,-9,-9,7,2,3,0,0,8,1,0,818,65909.453,0,0,0 -9327,11494,20947,20949,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,7.9555426,7.8942971,0,2,0,-9,8,0,0,-141.21309,0,0,1,45,2,4,1,3,3,2019,1,2,11,0,28,30,15,1,0,1,0,13.291533,13.291533,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,35.5,54.110001,45.810001,58.990002,3,1,1,0,1,12,4,1,726,104154.73,0,0,3051.1201 -9327,11494,20948,-9,20947,20949,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.7736,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,726,104154.73,0,0,3051.1201 -9327,11494,20949,20947,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.0406942,8.488368,0,2,0,-9,6,0,9,86.282608,0,0,0,36,1,3,1,2,1,2019,1,1,11,1,38,38,15,1,0,1,0,13.956776,13.956776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,58.990002,35.5,54.110001,5,1,1,0,1,12,4,1,726,104154.73,0,0,3051.1201 -9327,11494,20950,-9,20947,20949,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.9973,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,726,104154.73,0,0,3051.1201 -9328,11495,20951,-9,20954,20953,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.15955,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,822.75,-22338.162,0,0,3897.1013 -9328,11495,20952,-9,20954,20953,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.2281,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,822.75,-22338.162,0,0,3897.1013 -9328,11495,20953,20954,-9,-9,1,1,1,31,1,1,2,0,1,-9,2,1,0,0,3,9.1853695,9.3998823,0,2,0,-9,13,0,2,-168.37889,0,0,0,29,2,4,1,3,2,2019,1,2,14,2,37,0,15,1,0,1,0,34.61998,34.61998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.240002,54.009998,48.869999,58.549999,5,1,1,0,0,2,5,1,822.75,-22338.162,0,0,3897.1013 -9328,11495,20954,20953,-9,-9,2,1,0,29,1,1,2,0,2,-9,1,1,0,0,4,6.2222495,6.5536075,0,2,0,-9,12,0,-2,-80.236671,0,1,1,31,1,3,1,2,2,2019,1,1,11,0,4,0,15,1,0,1,0,13.956952,13.956952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,38.240002,54.009998,5,1,1,0,0,2,5,1,822.75,-22338.162,0,0,3897.1013 -9329,11496,20955,-9,20957,20956,5,1,1,17,2,0,1,1,2,0,7,2,0,0,3,5.2011929,5.1418524,0,2,0,0,0,-9,0,-1061.1232,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.98,57.220001,-9,-9,5,2,3,0,0,8,1,1,651.66669,155845.36,0,0,1743.0879 -9329,11496,20956,20957,-9,-9,1,1,1,53,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,36,0,3,0,0,0,0,50,3,3,3,3,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.77,20.450001,49.450001,48.84,4,2,3,0,1,8,1,1,651.66669,155845.36,0,0,1743.0879 -9329,11496,20957,20956,-9,-9,2,1,0,50,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,36,0,-3,0,0,0,0,53,2,1,3,3,2,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,113.25581,1,49.450001,48.84,35.77,20.450001,4,2,3,0,1,8,1,1,651.66669,155845.36,0,0,1743.0879 -9329,11497,20958,-9,20957,20956,3,1,1,29,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-922.56006,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,45,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,13.298957,3,45.419998,49.52,-9,-9,2,2,3,1,1,8,1,1,2411,0,0,0,371.02719 -9329,11498,20959,-9,20957,20956,4,1,1,24,3,0,1,0,2,-9,2,1,0,0,4,8.5883904,8.3592978,0,3,0,0,0,-9,0,-1046.5385,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,37,37,15,1,0,-9,1,13.744567,13.744567,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.830002,57.200001,-9,-9,6,2,3,0,0,8,5,1,3293,65275.645,0,0,1930.3889 -9330,11499,20960,20961,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,8.4744463,8.7860317,1,0,-9,53,0,5,14.225079,0,0,0,73,2,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8827152,8.4528275,0,0,56.5,37.599998,49.040001,55.860001,6,1,1,0,0,12,4,1,1220.5,969220.38,0,0,2741.7249 -9330,11499,20961,20960,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.4371209,5.6336226,1,0,-9,53,0,-5,74.474236,0,0,0,78,1,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0070376,5.7467065,0,0,49.040001,55.860001,56.5,37.599998,6,1,1,0,0,12,4,1,1220.5,969220.38,0,0,2741.7249 -9331,11500,20962,20963,-9,-9,1,1,1,61,1,0,0,0,3,-9,8,3,1,1,3,0,6.6399727,6.7042689,1,0,-9,6,0,9,107.4751,0,0,0,52,3,3,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8907084,0,0,51,48,48,49,5,1,1,0,0,13,2,1,741.5,520472.81,0,0,959.50012 -9331,11500,20963,20962,-9,-9,2,1,0,52,1,0,0,0,3,-9,3,3,0,1,3,0,0,0,1,0,-9,6,0,0,-70.465057,0,0,0,61,3,3,3,3,3,2019,4,1,11,0,0,7,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.751297,1,48,49,51,48,3,1,1,1,0,13,2,1,741.5,520472.81,0,0,959.50012 -9331,11501,20964,-9,20963,20962,3,1,0,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1047.4775,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,13,1,1,794,0,0,0,0 -9332,11502,20965,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-955.87579,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,33,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.049999,21.51,-9,-9,1,1,1,0,1,11,1,1,2013,77133.438,0,0,1444.734 -9333,11503,20966,20967,-9,-9,2,1,1,88,1,0,0,0,1,-9,4,3,0,0,3,0,7.8960285,8.1076193,1,0,-9,9,0,-1,-143.88568,0,0,0,89,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.2939179,8.0413799,0,2,54,45,63.970001,24.85,6,1,1,0,0,10,3,1,1894,806073.75,0,0,3236.5483 -9333,11503,20967,20966,-9,-9,1,1,0,89,1,0,0,0,3,-9,4,3,0,1,2,0,6.4896989,6.6223044,1,0,-9,9,0,1,133.04234,0,0,0,88,1,3,3,2,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,.97393757,0,0,0,0,0,1,1,0,1.761516,6.9154611,0,0,63.970001,24.85,54,45,6,1,1,0,0,10,3,1,1894,806073.75,0,0,3236.5483 -9334,11504,20968,20969,-9,-9,1,1,0,43,1,0,0,0,3,-9,8,3,1,1,4,0,0,0,1,0,-9,27,0,-3,0,0,0,1,46,3,4,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1508431,3,50,55,53,55,6,1,1,0,0,4,1,0,737.5,84546.188,0,0,1062.2606 -9334,11504,20969,20968,-9,-9,2,1,1,46,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,27,0,3,0,0,0,0,43,3,4,3,3,3,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.37598,2,53,55,50,55,6,1,1,0,0,4,1,0,737.5,84546.188,0,0,1062.2606 -9334,11505,20970,-9,20968,20969,3,1,0,21,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1116.9155,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47,58,-9,-9,5,1,1,0,0,4,1,0,1304,-26229.166,0,0,1045.6857 -9335,11506,20971,20972,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,32,0,-7,-.74297327,0,0,0,59,3,4,1,2,3,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.16,49.790001,57.18,47.779999,6,1,1,0,0,9,4,1,537,1518710,0,0,2105.0254 -9335,11506,20972,20971,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,8.6847553,8.6991148,5.614265,1,0,-9,34,0,7,-25.543362,0,0,0,52,2,3,3,3,2,2019,2,1,13,3,60,60,15,1,0,3,0,11.317569,11.317569,0,0,0,0,0,0,0,0,0,0,0,0,6.213007,0,0,57.18,47.779999,48.16,49.790001,4,1,1,0,0,9,4,1,537,1518710,0,0,2105.0254 -9336,11507,20973,20974,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.4259043,8.167491,0,1,0,-9,2,0,0,96.387291,-9,0,0,32,2,4,1,-9,-9,2019,1,1,16,4,38,0,15,1,1,1,0,10.045113,10.045113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.389999,44.540001,46.16,58.619999,4,2,3,0,0,8,5,1,1801,97564.961,0,0,6287.0991 -9336,11507,20974,20973,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,0,4,9.4787302,9.2740374,0,1,0,-9,2,0,0,-21.440893,0,0,1,32,1,4,1,2,2,2019,1,2,12,0,41,40,15,1,0,1,0,30.218063,30.218063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,58.389999,44.540001,4,2,3,0,0,8,5,1,1801,97564.961,0,0,6287.0991 -9337,11508,20975,20976,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,1,8.0884447,8.454278,0,1,0,-9,7,0,12,-28.36371,0,0,0,35,2,4,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,10.656201,10.656201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.759998,46.419998,48.869999,58.549999,5,1,1,0,0,2,4,1,253,68734.086,0,0,2199.2056 -9337,11508,20976,20975,-9,-9,2,1,0,35,1,0,0,0,2,-9,5,1,0,0,4,8.2484627,8.1600971,0,1,0,-9,7,0,-12,-63.545834,0,0,1,47,2,1,1,-9,-9,2019,1,1,11,1,40,42,15,1,0,1,0,8.0859146,8.0859146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,43.759998,46.419998,6,1,1,0,0,2,4,1,253,68734.086,0,0,2199.2056 -9338,11509,20977,-9,-9,-9,1,1,0,53,3,0,1,0,1,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1003.4055,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.970001,28.57,-9,-9,1,3,4,0,1,8,1,1,907,544600.31,0,0,1292.646 -9338,11509,20978,-9,20977,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1049.9124,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,1,1,907,544600.31,0,0,1292.646 -9339,11510,20979,20980,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,0,3,0,6.7818589,7.3188977,1,0,-9,67,0,1,137.76427,0,0,0,84,2,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6261411,7.0516791,0,0,47.48,42.75,46.200001,43.529999,7,1,1,0,0,1,2,1,357.5,395135.94,0,0,1249.5297 -9339,11510,20980,20979,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,67,0,-1,.67742276,0,0,0,85,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1662536,0,0,0,46.200001,43.529999,47.48,42.75,6,1,1,0,0,1,2,1,357.5,395135.94,0,0,1249.5297 -9340,11511,20981,20982,-9,-9,1,1,0,54,1,0,0,0,2,-9,97,3,0,0,3,0,0,0,1,0,-9,9,0,-2,26.370743,0,0,0,56,2,4,1,2,2,2019,3,2,20,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,.25585708,3,36.549999,49.509998,54.470001,50.48,5,1,1,0,0,12,4,1,260,921296.13,0,0,2349.2544 -9340,11511,20982,20981,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.5220261,8.5987463,0,1,0,-9,9,0,2,-32.089123,0,0,0,54,2,3,3,3,3,2019,2,1,10,0,38,38,15,1,0,3,0,13.340984,13.340984,0,0,0,0,0,0,0,2,0,0,0,0,0,1.3201523,3,54.470001,50.48,36.549999,49.509998,5,1,1,0,0,12,4,1,260,921296.13,0,0,2349.2544 -9341,11512,20983,-9,20985,20984,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.7916,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,878,14757.148,0,0,1674.7633 -9341,11512,20984,20985,-9,-9,1,1,1,33,1,1,2,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,4,0,2,0,0,0,0,31,3,3,3,3,3,2019,4,2,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,4.9748774,3,39.389999,37.66,36.959999,26.219999,4,1,1,1,0,13,1,0,878,14757.148,0,0,1674.7633 -9341,11512,20985,20984,-9,-9,2,1,0,31,1,1,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-2,0,0,0,1,33,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,36.959999,26.219999,39.389999,37.66,6,1,1,0,0,13,1,0,878,14757.148,0,0,1674.7633 -9341,11512,20986,-9,20985,20984,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.12982,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,1,0,878,14757.148,0,0,1674.7633 -9342,11513,20987,-9,20989,20988,3,1,0,16,2,0,2,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1096.683,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,5,0,0,8,2,0,2001.3334,316122.47,0,0,1674.5459 -9342,11513,20988,20989,-9,-9,2,1,1,46,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,3,-8.065012,-9,0,0,43,2,3,3,-9,-9,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,31.1,46.630001,6,1,1,1,0,8,2,0,2001.3334,316122.47,0,0,1674.5459 -9342,11513,20989,20988,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,0,3,7.2855878,7.3552365,0,2,0,-9,24,0,-3,-25.544529,0,0,1,46,2,4,3,3,3,2019,4,2,18,7,54,22,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.1,46.630001,53,55,4,4,5,0,1,8,2,0,2001.3334,316122.47,0,0,1674.5459 -9342,11514,20990,-9,20989,20988,4,1,0,18,2,0,2,1,2,0,7,2,0,0,4,6.8317285,7.2773395,0,3,0,0,0,-9,0,-1164.2938,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,5,0,0,8,2,0,213,89207.82,0,0,956.43549 -9343,11515,20991,20992,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,5,0,6.8157935,6.807919,1,0,-9,35,0,3,0,0,0,0,73,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3774557,6.6614747,0,0,60,52,57.16,56.150002,7,1,1,0,0,12,2,1,1423.5,227542.5,0,0,1978.9644 -9343,11515,20992,20991,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.1178513,6.8773594,1,0,-9,35,0,-3,0,0,0,0,76,1,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7954731,6.6942177,2.4287925,3,57.16,56.150002,60,52,7,1,1,0,0,12,2,1,1423.5,227542.5,0,0,1978.9644 -9344,11516,20993,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.399827,7.3153071,0,3,0,0,0,-9,0,-892.42322,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,30,40,15,1,1,-9,0,5.1009026,5.1009026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.119999,49.34,-9,-9,5,1,1,0,0,12,3,0,614,-138335.06,0,0,509.24316 -9345,11517,20994,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,2,0,6.9386187,6.8663573,3,0,0,0,-9,0,-949.09106,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8030725,0,0,37.77,45.330002,-9,-9,3,1,1,0,0,9,2,1,234,478261.03,0,0,-408.57288 -9346,11518,20995,20996,-9,-9,2,1,1,41,1,0,0,0,1,-9,2,1,0,0,4,9.2362499,9.4081059,0,1,0,-9,9,0,4,-72.717369,0,0,0,37,1,4,1,3,1,2019,1,1,7,0,50,40,15,1,0,1,0,28.553457,28.553457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,56.299999,49.380001,58.290001,6,2,3,0,0,11,5,0,451.5,2475164.5,0,0,5842.5527 -9346,11518,20996,20995,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,4,8.5977278,8.5533962,0,1,0,-9,9,0,-4,-231.37782,0,0,1,41,1,4,1,3,3,2019,1,2,14,2,50,47,15,1,0,1,0,15.26505,15.26505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.380001,58.290001,51.73,56.299999,6,2,3,0,0,11,5,0,451.5,2475164.5,0,0,5842.5527 -9347,11519,20997,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-918.02545,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,27.341541,3,39.759998,23.870001,-9,-9,3,1,1,0,1,7,1,0,585,84014.031,0,0,0 -9348,11520,20998,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1007.3917,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.790001,38.66,-9,-9,5,1,1,0,1,2,1,1,416,-56492.504,0,0,1174.0815 -9349,11521,20999,21002,-9,-9,1,1,1,37,1,1,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,1,-9,-1,-1.1784416,-9,0,0,38,2,4,1,1,1,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4835939,0,0,0,50,57,48,57,5,2,3,1,0,9,2,1,694.25,168108.84,0,0,603.90753 -9349,11521,21000,-9,21002,20999,3,1,0,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-972.85864,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,2,1,694.25,168108.84,0,0,603.90753 -9349,11521,21001,-9,21002,20999,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1005.1085,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,4,2,0,0,9,2,1,694.25,168108.84,0,0,603.90753 -9349,11521,21002,20999,-9,-9,2,1,0,38,1,1,2,0,2,-9,2,1,0,0,4,7.4773784,7.1628852,0,2,0,-9,1,-9,1,-39.325756,-9,0,1,37,2,4,3,1,2,2019,2,1,11,2,23,0,15,1,0,3,0,6.8171449,6.8171449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,50,57,5,1,1,0,0,9,2,1,694.25,168108.84,0,0,603.90753 -9350,11522,21003,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,9.0180836,8.8661623,0,3,0,-9,0,1,0,-922.18903,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,9,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,-9,-9,4,1,1,0,0,12,5,1,285,105362.39,0,0,2513.5813 -9351,11523,21004,-9,21007,21008,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.1829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,674.59998,189127.8,0,0,5281.9561 -9351,11523,21005,-9,21007,21008,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.8235,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,674.59998,189127.8,0,0,5281.9561 -9351,11523,21006,-9,21007,21008,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.70178,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,674.59998,189127.8,0,0,5281.9561 -9351,11523,21007,21008,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,0,4,9.265255,8.9222746,0,2,0,-9,14,0,2,12.359912,0,0,0,44,2,4,1,2,3,2019,1,1,8,0,48,49,15,1,0,1,0,25.638781,25.638781,0,0,0,0,0,0,0,0,1,1,0,3.5082293,0,0,0,63.09,45.220001,52,56,6,1,1,0,0,7,5,1,674.59998,189127.8,0,0,5281.9561 -9351,11523,21008,21007,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,8.4236956,8.3943329,0,2,0,-9,8,0,-2,-99.473946,0,0,0,46,1,4,1,-9,-9,2019,1,2,9,1,42,50,15,1,0,1,0,9.5756617,9.5756617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,63.09,45.220001,6,1,1,0,0,7,5,1,674.59998,189127.8,0,0,5281.9561 -9352,11524,21009,21010,-9,-9,1,1,0,28,1,1,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,-6,75.250671,0,1,1,34,1,3,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,41.32,56.639999,7,1,1,0,0,1,4,1,552,149442.64,0,0,3475.7383 -9352,11524,21010,21009,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,3,9.0633888,9.2318707,0,2,0,-9,8,0,6,-52.987743,0,0,0,28,1,5,3,-9,-9,2019,2,1,12,2,40,38,15,1,0,3,0,26.970856,26.970856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.32,56.639999,62.389999,56.709999,5,1,1,0,0,1,4,1,552,149442.64,0,0,3475.7383 -9352,11524,21011,-9,21009,21010,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.40259,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,1,4,1,552,149442.64,0,0,3475.7383 -9352,11524,21012,-9,21009,21010,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-911.33051,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,1,4,1,552,149442.64,0,0,3475.7383 -9353,11525,21013,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,97,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1109.3292,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.22,53.080002,-9,-9,5,1,1,0,1,4,1,0,407,63428.332,0,0,32.621338 -9354,11526,21014,21015,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.8229256,8.6690683,0,1,0,-9,8,0,-3,-29.862867,0,0,0,49,2,4,1,-9,-9,2019,1,2,10,0,45,40,15,1,0,1,0,13.304786,13.304786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,57.16,56.150002,2,1,1,0,0,7,5,1,769.5,627209.63,0,0,3263.187 -9354,11526,21015,21014,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.9032049,7.8298903,0,1,0,-9,8,0,3,54.587681,0,0,0,46,2,4,1,-9,-9,2019,1,1,7,0,31,35,15,1,0,1,0,9.7323904,9.7323904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.189999,54.259998,6,1,1,0,0,7,5,1,769.5,627209.63,0,0,3263.187 -9355,11527,21016,-9,-9,-9,1,1,0,37,3,0,0,0,1,-9,2,1,0,0,4,7.9504981,8.1339102,0,3,0,-9,0,1,0,-1015.5017,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,41,39,15,1,0,-9,0,9.6242161,9.6242161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,5,4,0,503,168951.8,0,0,2482.3035 -9356,11528,21017,21018,-9,-9,2,1,1,34,1,0,0,0,3,-9,3,3,0,1,4,0,0,0,1,0,-9,2,0,-2,0,0,0,0,36,3,2,3,-9,-9,2019,4,1,6,0,0,45,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.823166,1,57.169998,47.91,35.970001,36.43,6,1,1,1,0,13,1,0,867.5,0,0,0,1262.5986 -9356,11528,21018,21017,-9,-9,1,1,0,36,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,2,0,2,0,0,0,1,34,3,4,3,3,3,2019,4,2,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.970001,36.43,57.169998,47.91,5,1,1,0,0,13,1,0,867.5,0,0,0,1262.5986 -9357,11529,21019,21020,-9,-9,1,1,0,56,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,32,0,-3,0,0,0,0,59,3,1,3,3,3,2019,4,2,13,1,0,14,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.459999,32.43,58.580002,17.9,5,1,1,0,0,11,1,1,246.5,46210.824,0,0,2012.084 -9357,11529,21020,21019,-9,-9,2,1,1,59,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,32,0,3,0,0,0,0,56,3,2,3,2,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.580002,17.9,47.459999,32.43,5,1,1,0,0,11,1,1,246.5,46210.824,0,0,2012.084 -9358,11530,21021,21022,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.4065452,8.2847376,7.5705161,1,0,-9,8,0,-4,11.836263,0,0,0,62,3,4,1,-9,-9,2019,1,1,5,0,16,22,15,1,0,1,0,15.201318,15.201318,0,0,0,0,0,0,0,7,0,0,0,4.9972844,7.4767623,7.314549,3,64.07,47.52,62.490002,55.09,7,1,1,0,0,5,4,1,319.5,192734.64,0,0,1278.3589 -9358,11530,21022,21021,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,0,4,6.3330817,6.3832231,0,1,0,-9,8,0,4,-193.13905,0,0,0,58,2,4,1,-9,-9,2019,1,2,6,0,16,30,15,1,0,1,0,4.244679,4.244679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,64.07,47.52,7,1,1,0,0,5,4,1,319.5,192734.64,0,0,1278.3589 -9359,11531,21023,21024,-9,-9,1,1,1,46,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,6,0,3,0,0,0,0,43,1,3,3,-9,-9,2019,2,2,5,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.610001,41.700001,54.84,40.759998,7,2,3,0,0,9,1,1,282.5,181955.08,0,0,0 -9359,11531,21024,21023,-9,-9,2,1,0,43,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,6,0,-3,0,0,0,1,46,1,4,1,-9,-9,2019,3,1,5,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.84,40.759998,58.610001,41.700001,7,2,3,1,0,9,1,1,282.5,181955.08,0,0,0 -9360,11532,21025,21026,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-3,-20.651176,0,0,0,67,2,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6056068,0,21.223982,3,55.360001,51.57,61.59,40.509998,6,1,1,0,0,9,3,1,1015,1270522.8,0,0,2986.9985 -9360,11532,21026,21025,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,5.7360783,8.0860519,7.7219,1,0,-9,7,0,3,-13.274053,0,0,0,64,2,3,3,-9,2,2019,4,2,8,1,5,7,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7367806,0,0,61.59,40.509998,55.360001,51.57,6,1,1,0,0,9,3,1,1015,1270522.8,0,0,2986.9985 -9361,11533,21027,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,5.2964349,5.522644,3,0,0,0,-9,0,-931.97125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.336556,5.1965494,0,0,56.549999,30.780001,-9,-9,6,1,1,0,0,11,2,1,318,54785.742,0,0,-9.4099312 -9362,11534,21028,21029,-9,-9,2,1,0,57,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,40,0,-6,0,0,0,0,63,3,1,3,3,2,2019,4,1,18,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,130.17528,1,29.780001,25.84,31.74,27.73,1,2,3,0,1,4,1,0,513.5,106545.28,0,0,1067.7955 -9362,11534,21029,21028,-9,-9,1,1,1,63,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,40,0,6,0,0,0,0,57,3,1,3,3,3,2019,4,2,18,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.8235054,1,31.74,27.73,29.780001,25.84,2,2,3,0,0,4,1,0,513.5,106545.28,0,0,1067.7955 -9362,11535,21030,-9,21028,21029,3,1,1,19,2,0,0,0,2,1,2,1,0,0,4,7.2347302,6.8529553,0,3,0,0,0,-9,0,-1029.375,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,15,0,15,1,1,-9,1,8.5153103,8.5153103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.150002,52.959999,-9,-9,5,2,3,0,1,4,2,0,243,-7565.4849,0,0,330.26965 -9363,11536,21031,21032,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,8.0607862,7.9145269,0,1,0,-9,14,0,6,137.54982,0,0,0,39,2,3,1,2,-9,2019,1,1,22,10,45,46,15,1,1,1,0,7.9416223,7.9416223,0,0,0,0,0,0,0,7,0,0,0,0,0,9.4237566,3,26,45.970001,49.630001,54.220001,2,1,1,0,0,9,5,1,1214.5,523976.16,0,0,3694.1301 -9363,11536,21032,21031,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,0,3,8.7756252,8.9096298,0,1,0,-9,14,0,-6,-4.2051673,0,0,0,45,2,3,1,2,2,2019,1,2,9,0,45,42,15,1,0,1,0,19.868826,19.868826,0,0,0,0,0,0,0,2,0,0,0,1.6363579,0,11.487252,3,49.630001,54.220001,26,45.970001,6,1,1,0,0,9,5,1,1214.5,523976.16,0,0,3694.1301 -9364,11537,21033,21035,-9,-9,2,1,1,52,1,0,1,0,2,-9,1,1,0,0,4,7.6640768,7.8468208,0,2,0,-9,9,0,2,45.46188,0,0,0,50,2,1,1,3,3,2019,1,1,14,3,40,50,15,1,0,1,0,5.3153191,5.3153191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,58.700001,47.57,40.84,5,1,1,0,0,12,4,1,602.66669,669189.63,0,0,3337.5588 -9364,11537,21034,-9,21035,21033,6,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-881.44897,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,12,4,1,602.66669,669189.63,0,0,3337.5588 -9364,11537,21035,21033,-9,-9,1,1,0,50,1,0,1,0,2,-9,1,1,0,0,1,8.7939568,8.5140171,0,2,0,-9,9,0,-2,-81.274727,0,0,0,52,2,4,1,3,3,2019,1,2,14,2,40,43,15,1,0,1,0,16.233057,16.233057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.57,40.84,43.439999,58.700001,5,1,1,0,0,12,4,1,602.66669,669189.63,0,0,3337.5588 -9365,11538,21036,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,6.0068121,6.0591865,3,0,0,0,-9,0,-1101.3826,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,4.1975093,0,0,0,5.469378,15.608324,0,1,1,0,0,6.0565276,0,0,52,45,-9,-9,6,1,1,0,0,2,2,1,1750,207795.95,0,0,2860.7817 -9366,11539,21037,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-916.53162,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.52,13.76,-9,-9,6,1,1,0,0,12,1,0,388,22622.443,0,0,1723.8649 -9367,11540,21038,21039,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,2,0,-11,0,0,0,0,87,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.351808,1,51,46,62.810001,42.669998,6,1,1,0,0,10,1,0,406,429090.25,0,0,1934.1376 -9367,11540,21039,21038,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,2,0,11,0,0,0,0,76,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,6.4595284,4.1851368,0,0,1.4165974,89.279541,0,1,1,0,0,0,0,0,62.810001,42.669998,51,46,6,1,1,0,0,10,1,0,406,429090.25,0,0,1934.1376 -9368,11541,21040,-9,21042,21041,2,1,0,23,2,0,0,0,1,-9,7,2,0,0,4,4.5707607,5.6093559,5.1130748,3,0,0,0,-9,0,-976.57776,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.711091,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,2,1,968,896.83142,0,0,141.84663 -9368,11542,21041,21042,-9,-9,3,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.3085403,9.2281885,0,1,0,-9,33,0,1,-30.714136,0,0,0,53,2,3,1,2,2,2019,1,1,9,1,42,41,15,1,0,1,0,30.083408,30.083408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.84,49.169998,54.799999,45.150002,6,1,1,0,0,8,5,1,739.5,233952.7,0,0,4703.3613 -9368,11542,21042,21041,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,0,3,6.5291038,7.8301191,7.7959185,1,0,-9,33,0,-1,-22.094454,0,0,0,54,1,4,1,2,3,2019,1,3,7,0,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.7723007,0,0,3,54.799999,45.150002,51.84,49.169998,6,1,1,0,0,8,5,1,739.5,233952.7,0,0,4703.3613 -9369,11543,21043,-9,-9,-9,1,1,1,21,2,0,0,0,1,1,2,1,0,0,4,8.0641584,8.2051325,0,3,0,0,0,-9,0,-921.737,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,50,0,15,1,0,-9,0,5.6667509,5.6667509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.799999,60.299999,-9,-9,4,1,1,0,0,10,4,1,1387,188429.83,0,0,667.94159 -9370,11544,21044,21045,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,9.5281429,9.5341654,0,1,0,-9,8,0,-3,53.936821,0,0,0,33,2,4,1,2,2,2019,1,1,8,1,53,48,15,1,0,1,0,24.145552,24.145552,0,0,0,0,0,0,0,0,0,0,0,3.8085613,0,0,0,49.860001,55.310001,52.23,55.599998,6,1,1,0,0,7,5,1,792,357619.09,0,0,5375.5127 -9370,11544,21045,21044,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,0,4,8.2424641,8.1005497,0,1,0,-9,8,0,3,-36.646175,0,0,1,30,2,4,1,2,2,2019,1,2,8,0,35,37,15,1,0,1,0,12.530197,12.530197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,49.860001,55.310001,6,1,1,0,0,7,5,1,792,357619.09,0,0,5375.5127 -9371,11545,21046,21047,-9,-9,1,1,0,35,1,1,2,0,1,-9,1,1,0,0,5,9.2546339,9.3063974,0,2,0,-9,7,0,-5,23.360373,0,0,1,40,1,3,1,2,1,2019,1,2,6,0,10,12,15,1,0,1,0,116.17491,116.17491,0,0,0,0,0,0,0,0,0,0,0,8.8636026,0,0,0,57.060001,57.759998,49.040001,55.860001,6,1,1,0,0,8,5,1,1470.25,1032544.2,0,0,9685.3047 -9371,11545,21047,21046,-9,-9,2,1,1,40,1,1,2,0,1,-9,2,1,0,0,3,8.8124332,8.9501047,0,2,0,-9,7,0,5,69.562462,0,0,0,35,1,5,1,3,2,2019,1,1,8,0,50,43,15,1,0,1,0,21.470379,21.470379,0,0,0,0,0,0,0,0,0,0,0,6.8067589,0,0,0,49.040001,55.860001,57.060001,57.759998,6,1,1,0,0,8,5,1,1470.25,1032544.2,0,0,9685.3047 -9371,11545,21048,-9,21046,21047,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.0347,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1470.25,1032544.2,0,0,9685.3047 -9371,11545,21049,-9,21046,21047,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.1243,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1470.25,1032544.2,0,0,9685.3047 -9372,11546,21050,-9,21051,21053,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.3053,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,0,1260.25,407218.88,0,0,3044.9199 -9372,11546,21051,21053,-9,-9,1,1,0,36,1,1,2,0,2,-9,2,1,0,0,4,7.1043305,7.077445,0,2,0,-9,7,0,-2,19.251131,0,0,1,38,1,3,1,2,1,2019,1,2,15,5,18,28,15,1,1,1,0,9.9313745,9.9313745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.099998,57.330002,53.459999,6,1,1,0,0,10,4,0,1260.25,407218.88,0,0,3044.9199 -9372,11546,21052,-9,21051,21053,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.21014,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,0,1260.25,407218.88,0,0,3044.9199 -9372,11546,21053,21051,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,0,3,8.7060242,8.7005053,0,2,0,-9,7,0,2,-46.057861,0,0,0,36,2,4,1,-9,-9,2019,1,1,11,0,46,49,15,1,0,1,0,18.122484,18.122484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,31.77,61.099998,7,1,1,0,0,10,4,0,1260.25,407218.88,0,0,3044.9199 -9373,11547,21054,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,4,0,8.1263008,7.8477211,3,0,0,0,-9,0,-970.29169,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.8419404,7.6768613,1.2063963,3,53.220001,52.369999,-9,-9,6,1,1,0,0,11,3,1,497,433004.78,0,0,2320.2759 -9374,11548,21055,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,4,0,8.2911749,8.265996,3,0,-9,0,1,0,-1058.7799,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0358334,8.1013174,0,0,57.700001,55.880001,-9,-9,7,1,1,0,0,6,4,1,326,657629.63,0,0,2300.6436 -9375,11549,21056,21057,-9,-9,2,1,0,38,1,0,0,0,2,-9,2,1,0,0,3,8.3816853,8.4285288,0,1,0,-9,3,0,0,33.798088,0,0,1,38,2,3,1,-9,-9,2019,1,1,15,3,37,41,15,1,0,1,0,12.119944,12.119944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.57,58.130001,52.990002,51.279999,5,1,1,0,0,12,5,1,405,116446.64,0,0,3515.603 -9375,11549,21057,21056,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,0,3,8.0777836,8.1255064,0,1,0,-9,3,0,0,-35.434277,-9,0,0,38,2,3,1,2,3,2019,1,2,12,0,45,0,15,1,0,1,0,10.646742,10.646742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,29.57,58.130001,6,1,1,0,0,12,5,1,405,116446.64,0,0,3515.603 -9376,11550,21058,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1024.8734,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,128.1086,0,0,0,17.279791,1193.4794,0,1,1,0,1.6156338,0,0,0,50.880001,49.599998,-9,-9,5,1,1,0,0,10,1,0,1314,-28568.123,0,0,47.360031 -9377,11551,21059,21060,-9,-9,2,1,0,89,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,9,0,-1,-35.764694,0,0,0,90,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.310001,29.540001,38.93,29.889999,6,1,1,0,0,11,2,0,762,173283.25,0,0,2155.7151 -9377,11551,21060,21059,-9,-9,1,1,1,90,1,0,0,0,3,-9,4,3,0,0,2,0,2.5646188,2.4559577,1,0,-9,9,0,1,39.960583,0,0,0,89,2,2,3,3,3,2019,4,2,25,12,0,0,15,4,1,4,0,0,0,1,0,26.345354,0,0,0,0,0,1,1,0,0,2.5602636,0,0,38.93,29.889999,53.310001,29.540001,3,1,1,0,0,11,2,0,762,173283.25,0,0,2155.7151 -9378,11552,21061,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,1,3,0,6.1724463,5.9597192,3,0,0,0,-9,0,-965.09106,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2262049,0,0,52,47,-9,-9,5,1,1,0,0,8,2,0,385,308261.47,0,0,320.67062 -9379,11553,21062,21064,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,6,0,3,54.781384,0,0,0,28,2,5,1,3,2,2019,1,2,12,1,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.889999,53.77,55.68,54.240002,6,1,1,0,0,11,2,1,631,130017.98,0,0,1060.1453 -9379,11553,21063,-9,21064,21062,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1121.4426,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,1,631,130017.98,0,0,1060.1453 -9379,11553,21064,21062,-9,-9,2,1,0,28,1,1,1,0,2,-9,2,1,0,0,5,7.5571518,7.716815,0,2,0,-9,6,0,-3,4.9592609,0,1,1,31,1,3,1,-9,-9,2019,1,1,7,0,24,26,15,1,0,1,0,10.697873,10.697873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.240002,44.889999,53.77,6,1,1,0,0,11,2,1,631,130017.98,0,0,1060.1453 -9380,11554,21065,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,6.3308148,6.0538487,3,0,0,0,-9,0,-1017.7524,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9682145,0,0,46.919998,46.27,-9,-9,6,1,1,0,0,8,2,1,1244,472360.91,0,0,688.29559 -9381,11555,21066,21067,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,0,3,6.8506036,7.0664482,0,1,0,-9,7,0,0,-75.221191,0,0,0,51,3,4,1,-9,-9,2019,1,1,11,0,18,26,15,1,0,1,0,6.7591791,6.7591791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.150002,41.419998,58.150002,52.91,5,1,1,0,0,11,4,1,520.5,200266.25,0,0,2436.6011 -9381,11555,21067,21066,-9,-9,1,1,1,51,1,0,0,0,3,-9,1,1,0,0,4,8.4761486,8.3235188,0,1,0,-9,7,0,0,-100.44332,0,0,0,51,3,3,1,-9,-9,2019,1,2,10,1,40,40,15,1,0,1,0,17.242962,17.242962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,39.150002,41.419998,7,1,1,0,0,11,4,1,520.5,200266.25,0,0,2436.6011 -9381,11556,21068,-9,21066,21067,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.6336365,7.3268361,0,3,0,0,0,-9,0,-1128.2094,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,40,36,15,1,0,-9,1,5.12391,5.12391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,11,3,1,352,58807.207,0,0,210.64395 -9382,11557,21069,21070,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,0,5,6.543097,6.9868908,6.3135982,1,0,-9,8,0,1,-12.12937,0,0,0,67,3,2,3,3,3,2019,2,2,6,0,16,7,15,1,0,4,0,3.6743946,3.6743946,1,0,0,0,0,0,0,0,1,1,0,5.8005633,6.5861392,0,1,62.389999,56.709999,55.290001,16.66,1,1,1,0,0,6,2,0,745.5,242835.75,0,0,3471.3728 -9382,11557,21070,21069,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,1,2,0,4.7295604,4.2660704,1,0,-9,8,0,-1,-29.519403,0,0,0,68,3,5,1,3,3,2019,3,1,15,3,0,0,15,4,0,1,0,0,0,1,0,0,0,0,4.4094739,0,0,1,1,0,0,4.3783507,0,0,55.290001,16.66,62.389999,56.709999,4,1,1,0,0,6,2,0,745.5,242835.75,0,0,3471.3728 -9383,11558,21071,21072,-9,-9,2,1,0,38,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,8,0,0,-53.535397,0,0,1,47,2,3,1,2,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,.5578177,3,45.150002,33.529999,47.32,52.700001,5,1,1,0,0,6,4,1,277.5,501886.25,0,0,1680.302 -9383,11558,21072,21071,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,8.8124456,8.7933626,0,1,0,-9,8,0,9,-22.359209,0,0,0,38,2,2,3,2,2,2019,2,2,11,1,40,39,15,1,0,3,0,15.573554,15.573554,0,0,0,0,0,0,0,0,0,0,0,2.4770379,0,0,0,47.32,52.700001,45.150002,33.529999,3,1,1,0,0,6,4,1,277.5,501886.25,0,0,1680.302 -9384,11559,21073,21074,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.1987429,7.3843927,1,0,-9,38,0,-14,-58.750046,0,0,0,79,1,3,3,-9,-9,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6065102,7.5742521,0,0,42.84,55.93,58.439999,46.029999,6,1,1,0,0,6,2,1,561.5,568041.81,0,0,1684.9055 -9384,11559,21074,21073,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,38,0,14,-8.4082022,0,0,0,65,1,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2.4004242,0,0,0,58.439999,46.029999,42.84,55.93,6,1,1,0,0,6,2,1,561.5,568041.81,0,0,1684.9055 -9385,11560,21075,21076,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,1,1,7.7940836,7.9653091,0,1,0,-9,4,0,-2,31.612888,0,0,0,51,2,5,1,-9,-9,2019,1,1,9,1,32,30,15,1,0,1,0,8.9220562,8.9220562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.93,13.26,57.060001,57.759998,6,1,1,0,0,10,3,1,719.5,87818.344,0,0,2287.4766 -9385,11560,21076,21075,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,0,5,6.9645987,6.7148104,0,1,0,-9,4,0,2,115.0135,0,0,0,49,2,1,1,2,2,2019,1,2,7,0,50,50,15,1,0,1,0,2.2234621,2.2234621,0,0,0,0,0,0,0,0,1,1,0,.92228806,0,0,0,57.060001,57.759998,42.93,13.26,6,1,1,0,0,10,3,1,719.5,87818.344,0,0,2287.4766 -9386,11561,21077,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,8.4970913,8.69279,0,3,0,0,0,-9,0,-908.50616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,37,37,15,1,0,-9,0,15.490003,15.490003,0,0,0,0,0,0,0,0,1,1,0,4.4133973,0,0,0,45.299999,52.040001,-9,-9,6,1,1,0,0,12,5,1,2033,1668806.4,0,0,2395.1863 -9387,11562,21078,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,97,3,0,0,4,0,8.0535336,7.9024973,3,0,0,0,-9,0,-1017.9146,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9999557,8.1451368,0,0,43.73,59.700001,-9,-9,6,1,1,0,0,10,4,1,203,1469471.8,0,0,3166.752 -9388,11563,21079,21080,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,7.4188013,7.1960111,0,1,0,-9,17,0,11,31.953802,0,0,0,52,2,3,3,3,3,2019,2,1,7,0,30,30,15,1,0,3,0,8.2282925,8.2282925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.27,42.919998,58.470001,50.220001,7,1,1,0,0,4,2,0,345,528979.13,0,0,579.60931 -9388,11563,21080,21079,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,17,0,-11,-43.703629,0,0,0,63,2,3,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,50.220001,56.27,42.919998,7,1,1,0,0,4,2,0,345,528979.13,0,0,579.60931 -9389,11564,21081,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-934.2431,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,1,0,0,.40182069,0,0,0,0,1,1,0,0,0,0,0,37.77,24.67,-9,-9,3,1,1,0,0,4,1,1,166,141933.41,0,0,1204.2233 -9390,11565,21082,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,0,3,8.389245,8.2974243,0,3,0,0,0,-9,0,-970.72223,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,18,5,36,36,15,1,1,-9,0,12.921748,12.921748,0,0,0,0,0,0,0,2,0,0,0,2.6134861,0,3.4398963,3,43.610001,46.080002,-9,-9,4,3,4,0,1,8,4,0,579,0,0,0,2545.8101 -9391,11566,21083,-9,21085,21084,2,1,0,27,2,0,0,0,2,-9,1,1,0,0,2,7.4772282,7.6886315,0,3,0,0,0,-9,0,-997.73248,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,16,4,35,30,15,1,1,-9,1,5.9143305,5.9143305,0,0,0,0,0,0,0,0,0,0,0,1.1807468,0,0,0,32.91,53.009998,-9,-9,5,1,1,0,0,10,3,1,138,94574.922,0,0,30.401957 -9391,11567,21084,21085,-9,-9,3,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,7.9541416,8.8556013,7.7985744,1,0,-9,7,0,3,-6.1579776,0,0,0,57,3,3,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,9.0751915,9.0751915,0,0,0,0,0,0,0,0,0,0,0,0,7.9725285,0,0,54,53,57.330002,53.459999,6,1,1,0,0,10,5,1,418.5,1550253.6,0,0,3784.887 -9391,11567,21085,21084,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,7.4873061,7.5739045,0,1,0,-9,36,0,-3,113.16626,0,0,0,60,2,4,1,3,3,2019,1,3,7,0,35,30,15,1,0,1,0,6.8988223,6.8988223,0,0,0,0,0,0,0,0,0,0,0,8.1012373,0,0,0,57.330002,53.459999,54,53,6,1,1,0,0,10,5,1,418.5,1550253.6,0,0,3784.887 -9392,11568,21086,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1060.8197,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,13,1,1,360,135946.47,0,0,1097.7881 -9393,11569,21087,21088,-9,-9,3,1,0,41,1,1,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,25,0,-5,-99.847809,0,0,1,46,1,4,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,36.009998,50.990002,6,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11569,21088,21087,21094,-9,1,1,1,46,1,1,5,0,1,-9,2,1,0,0,4,8.7683134,8.5090485,0,2,0,-9,25,0,5,-86.360199,0,0,0,41,3,4,3,3,3,2019,2,3,13,1,35,40,15,1,0,3,0,24.432198,24.432198,0,0,0,0,0,0,0,7,1,1,0,0,0,8.2300377,3,36.009998,50.990002,49,55,6,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11569,21089,-9,21087,21088,10,1,0,1,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.01147,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11569,21090,-9,21087,21088,7,1,0,15,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.7019,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11569,21091,-9,21087,21088,8,1,1,11,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.8147,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11569,21092,-9,21087,21088,9,1,1,4,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.36523,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11569,21093,-9,21087,21088,6,1,1,16,2,1,5,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.86389,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,7,3,1,554.42859,185534.56,0,0,2741.7441 -9393,11570,21094,-9,-9,-9,2,1,0,78,3,1,5,0,2,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1095.5706,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,7,1,1,1586,0,0,0,1649.4276 -9393,11571,21095,-9,21087,21088,4,1,1,20,2,1,5,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1116.5309,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,7,1,1,711,-12169.726,0,0,0 -9393,11572,21096,-9,21087,21088,5,1,0,19,2,1,5,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1048.0271,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,7,1,1,2900,-28962.004,0,0,0 -9394,11573,21097,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,2,1,0,0,2,7.0202742,6.7482691,0,3,0,-9,0,1,0,-900.6748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,15,15,15,1,1,-9,0,5.8004322,5.8004322,0,0,0,0,0,0,0,0,1,0,1,.5556075,0,0,0,37.889999,37.189999,-9,-9,3,1,1,0,1,10,2,0,163,226711.56,0,0,1329.8347 -9394,11574,21098,21099,-9,-9,3,1,1,35,1,0,0,0,2,-9,2,1,0,0,3,6.7309651,6.2343655,0,1,0,-9,4,0,6,0,0,0,0,29,2,4,1,-9,-9,2019,1,2,17,5,25,36,15,1,1,1,0,4.0532756,4.0532756,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.110001,57.07,40.380001,59.139999,5,1,1,0,0,10,2,0,683,55217.121,0,0,1150.283 -9394,11574,21099,21098,-9,21097,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,4,6.7228112,6.8395791,0,1,0,-9,4,0,-6,0,0,1,1,35,2,3,1,3,3,2019,1,3,6,0,25,36,15,1,0,1,0,4.4999166,4.4999166,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.380001,59.139999,32.110001,57.07,5,1,1,0,0,10,2,0,683,55217.121,0,0,1150.283 -9395,11575,21100,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,7.5624733,7.4325967,3,0,0,0,-9,0,-1027.8489,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,4.5445037,0,0,4.2594566,6.2126341,13.669938,2,1,1,0,4.4723411,7.6175642,0,3,53.389999,52.349998,-9,-9,6,1,1,0,0,9,3,1,714,625465.88,0,0,2625.9465 -9396,11576,21101,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,5,8.295804,8.0643167,0,3,0,0,0,-9,0,-1006.7847,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,40,15,1,0,-9,0,9.7455139,9.7455139,0,0,0,0,0,0,0,0,0,0,0,6.8609424,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,4,1,98,-113689.13,0,0,1365.6805 -9397,11577,21102,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,5,0,9.0631695,9.1697035,3,0,0,0,-9,0,-1024.0323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,2.382411,9.419138,23.02383,3,45.810001,61.509998,-9,-9,7,1,1,0,0,1,5,1,781,906974.75,0,0,5285.3911 -9398,11578,21103,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,0,5,8.1580811,8.1997023,0,3,0,0,0,-9,0,-980.10522,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,48,32,15,1,0,-9,0,10.047892,10.047892,0,0,0,0,0,0,0,0,0,0,0,10.027772,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,5,4,1,375,307726.31,0,0,8302.5449 -9399,11579,21104,21105,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,0,3,8.3764334,8.5183449,0,1,0,-9,30,0,-1,41.28616,0,0,0,59,1,5,1,2,2,2019,1,1,4,0,40,0,15,1,0,1,0,14.019835,14.019835,0,0,0,0,0,0,0,2,0,0,0,0,0,9.5390835,3,57.509998,47.91,50.240002,58.02,5,1,1,0,0,12,5,0,281.5,1812488.1,0,0,3785.0876 -9399,11579,21105,21104,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,5,7.9404721,8.1015987,0,1,0,-9,30,0,1,114.74375,0,0,0,58,1,3,1,2,2,2019,1,2,6,2,45,45,15,1,0,1,0,9.9847603,9.9847603,0,0,0,0,0,0,0,0,0,0,0,2.9249156,0,0,0,50.240002,58.02,57.509998,47.91,6,1,1,0,0,12,5,0,281.5,1812488.1,0,0,3785.0876 -9400,11580,21106,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1063.9089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.01,25.27,-9,-9,5,1,1,0,1,6,1,0,351,0,0,0,2183.1143 -9400,11581,21107,-9,21106,-9,2,1,0,19,2,0,0,0,2,-9,7,2,0,0,2,6.8740025,7.0820813,0,3,0,0,0,-9,0,-1067.6741,1,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,2,14,17,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.980461,3,39.34,36.060001,-9,-9,6,1,1,0,0,6,2,0,2295,19084.895,0,0,275.16623 -9400,11582,21108,-9,21106,-9,3,1,0,19,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1038.2687,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,24,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.729565,3,26.23,39.189999,-9,-9,2,1,1,1,1,6,1,0,698,0,0,0,0 -9401,11583,21109,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,0,5,0,7.0836687,7.0619364,3,0,0,0,-9,0,-1018.1901,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9721642,6.9831076,0,0,52.080002,48.959999,-9,-9,2,1,1,0,0,12,2,1,2041,87547.766,0,0,1404.8638 -9402,11584,21110,-9,21112,21111,1,1,0,28,3,1,2,0,2,-9,2,1,0,0,3,8.2754679,8.3510895,0,3,0,-9,0,-9,0,-1159.413,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,0,15,1,0,-9,1,11.316034,11.316034,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.046566,3,40.130001,41.02,-9,-9,2,2,3,0,0,5,4,1,1177,-105617.74,0,0,1116.5211 -9402,11585,21111,21112,-9,-9,2,1,1,71,1,1,2,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,10,0,11,0,-9,0,0,60,3,3,3,-9,-9,2019,4,3,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.43,45.599998,48,48,6,2,3,1,0,5,1,1,2780,277998.88,0,0,427.4342 -9402,11585,21112,21111,-9,-9,3,1,0,60,1,1,2,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,10,0,-11,0,-9,0,0,71,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4405601,0,0,0,48,48,51.43,45.599998,6,2,3,1,0,5,1,1,2780,277998.88,0,0,427.4342 -9402,11586,21113,21114,21112,21111,6,1,1,33,1,1,2,0,2,-9,97,3,0,0,3,7.9572196,7.713222,0,2,0,-9,9,0,3,-82.240669,-9,0,0,30,1,3,3,3,3,2019,4,7,6,0,14,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.81414551,0,0,0,50.560001,42.080002,48.310001,44.060001,6,2,3,0,0,5,3,1,1091,133656.84,0,0,2284.7708 -9402,11586,21114,21113,-9,-9,7,1,0,30,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,-3,38.844631,0,0,1,33,2,3,3,-9,-9,2019,4,6,13,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.78395289,0,0,0,48.310001,44.060001,50.560001,42.080002,4,2,3,0,0,5,3,1,1091,133656.84,0,0,2284.7708 -9403,11587,21115,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,6,3,0,0,4,0,0,0,3,0,0,0,-9,0,-943.51147,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.380001,55.599998,-9,-9,6,1,1,0,0,13,1,0,1347,0,0,0,1569.7365 -9404,11588,21116,21117,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,5,9.8848791,9.5544806,0,1,0,-9,21,0,-4,-68.655624,0,0,0,56,2,4,1,3,3,2019,1,2,22,10,46,48,15,1,1,1,0,38.701729,38.701729,0,0,0,0,0,0,0,0,0,0,0,6.3282027,0,0,0,35.529999,63.810001,54.200001,57.490002,3,1,1,0,0,5,5,1,261.5,845727.88,0,0,5984.3794 -9404,11588,21117,21116,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.8058791,7.6226921,0,1,0,-9,21,0,4,-174.04707,0,0,0,52,2,5,1,-9,-9,2019,1,1,11,2,25,25,15,1,0,1,0,8.2099333,8.2099333,0,0,0,0,0,0,0,0,0,0,0,2.646426,0,0,0,54.200001,57.490002,35.529999,63.810001,6,1,1,0,0,5,5,1,261.5,845727.88,0,0,5984.3794 -9404,11589,21118,-9,21117,21116,3,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.5018959,8.4619188,0,3,0,0,0,-9,0,-783.64648,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,38,37,15,1,0,-9,1,11.689445,11.689445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,5,4,1,228,-874.28778,0,0,2162.2463 -9405,11590,21119,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,1,1,0,0,3,7.0955768,6.4828019,0,3,0,0,0,-9,0,-965.29004,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,50,15,1,0,-9,0,2.570142,2.570142,0,0,0,0,0,0,0,0,1,1,0,3.1876323,0,0,0,53.110001,47.09,-9,-9,6,1,1,0,0,2,2,1,1011,-60460.277,0,0,1561.853 -9406,11591,21120,-9,-9,-9,1,1,0,65,2,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1023.2287,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,1.1739979,0,0,0,14.5,1,1,0,1.5133299,0,15.30114,3,49.259998,30.379999,-9,-9,7,1,1,0,0,2,1,1,167,-75396.969,0,0,-608.56158 -9407,11592,21121,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,7.3498034,7.6240606,3,0,0,0,-9,0,-1154.2443,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0307863,7.5063672,0,0,22.73,61.209999,-9,-9,4,1,1,0,0,11,3,1,215,431560.06,0,0,1798.994 -9408,11593,21122,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,0,2,0,8.1851473,8.1907196,3,0,0,0,-9,0,-1003.2753,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4524474,8.0816641,0,0,52.639999,43.939999,-9,-9,6,1,1,0,0,12,4,1,429,1261143.4,0,0,3870.7495 -9409,11594,21123,21124,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,3,7.8460188,8.1984596,0,1,0,-9,5,0,0,112.80914,0,1,1,28,1,4,1,-9,-9,2019,1,2,12,0,37,41,15,1,0,1,0,7.4763184,7.4763184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,54.200001,57.490002,6,1,1,0,0,13,5,1,504.5,7251.1782,0,0,3177.7673 -9409,11594,21124,21123,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,8.3728056,8.4676065,0,1,0,-9,5,0,0,-25.181158,0,1,0,28,1,3,1,-9,-9,2019,1,1,6,0,40,43,15,1,0,1,0,11.951627,11.951627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,61.279999,46.169998,7,1,1,0,0,13,5,1,504.5,7251.1782,0,0,3177.7673 -9410,11595,21125,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,0,5,8.5034037,8.2693338,0,3,0,0,0,-9,0,-1138.8008,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,54,60,15,1,0,-9,0,9.7163439,9.7163439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,-9,-9,4,1,1,0,0,9,4,1,692,95552.18,0,0,2294.6133 -9411,11596,21126,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,0,4,8.7039661,8.4137306,0,3,0,-9,0,-9,0,-1019.9075,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,45,0,15,1,0,-9,0,14.83782,14.83782,0,0,0,0,0,0,0,2,1,1,0,0,0,.41649035,3,43.919998,59.790001,-9,-9,5,1,1,0,0,12,5,0,553,486466.25,0,0,1875.2485 -9412,11597,21127,21128,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,0,4,8.3293924,8.0644398,0,1,0,-9,16,0,-16,-29.348188,0,0,1,53,2,2,1,3,2,2019,1,1,7,0,40,50,15,1,0,1,0,12.333197,12.333197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,33.82,47.080002,6,1,1,0,0,10,5,0,1144,151734.92,0,0,2898.9033 -9412,11597,21128,21127,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.3105412,8.1995726,0,1,0,-9,16,0,16,16.644552,0,0,0,37,2,4,1,2,3,2019,1,2,15,3,40,40,15,1,0,1,0,9.0206194,9.0206194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.82,47.080002,54.790001,55.860001,5,1,1,0,0,10,5,0,1144,151734.92,0,0,2898.9033 -9413,11598,21129,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,6.8394113,7.2501936,3,0,0,0,-9,0,-980.1131,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9629593,0,0,59.040001,45.740002,-9,-9,7,1,1,0,0,5,2,1,592,344018.84,0,0,1801.7909 -9414,11599,21130,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1013.597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.780001,46.759998,-9,-9,5,1,1,1,0,11,1,1,256,63265.395,0,0,0 -9414,11600,21131,-9,21130,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,0,5,8.0175114,7.9553881,0,3,0,0,0,-9,0,-1061.6632,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,48,28,15,1,0,-9,1,7.8414869,7.8414869,0,0,0,0,0,0,0,0,0,0,0,5.8284144,0,0,0,44.310001,60.709999,-9,-9,6,1,1,0,0,11,4,1,534,106236.96,0,0,2426.4531 -9415,11601,21132,21133,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,0,4,8.8646812,8.9409485,0,1,0,-9,5,0,8,55.940166,0,0,0,31,1,5,1,2,1,2019,1,2,19,7,60,47,15,1,1,1,0,18.58079,18.58079,0,0,0,0,0,0,0,0,0,0,0,7.550076,0,0,0,40.23,61.310001,62.389999,56.709999,5,1,1,0,0,6,5,1,767,367958.69,0,0,4071.5352 -9415,11601,21133,21132,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,5,8.002984,7.9374914,0,1,0,-9,5,0,-8,-121.33544,0,0,1,39,1,4,1,-9,-9,2019,1,1,7,0,50,38,15,1,0,1,0,4.9604163,4.9604163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,40.23,61.310001,6,1,1,0,0,6,5,1,767,367958.69,0,0,4071.5352 -9416,11602,21134,21135,-9,-9,1,1,0,45,1,0,0,0,3,-9,2,1,0,1,2,7.1441612,7.046854,5.865582,1,0,-9,4,0,1,-28.731661,0,0,0,44,2,2,1,2,2,2019,1,2,24,10,25,30,15,1,1,1,0,4.8568778,4.8568778,0,0,0,0,0,0,0,7,1,1,0,5.7041893,0,3.8354325,3,30.629999,48.560001,44.84,49.009998,2,1,1,0,0,1,4,1,709.5,178417.53,0,0,2739.0703 -9416,11602,21135,21134,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.0736446,8.0940523,0,1,0,-9,4,0,-1,-44.358402,0,0,0,45,3,2,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,7.8244381,7.8244381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.84,49.009998,30.629999,48.560001,3,1,1,0,0,1,4,1,709.5,178417.53,0,0,2739.0703 -9417,11603,21136,21137,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,3,-76.988724,0,0,0,65,2,2,1,3,3,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,39.389999,37.66,5,1,1,0,0,13,3,1,429,227979.28,0,0,1160.2736 -9417,11603,21137,21136,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,2,7.5681639,7.6230707,0,1,0,-9,10,0,-3,5.5916066,0,0,0,68,2,3,3,3,2,2019,2,1,18,5,31,32,15,1,1,4,0,9.0812912,9.0812912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,37.66,51,48,5,1,1,0,0,13,3,1,429,227979.28,0,0,1160.2736 -9417,11604,21138,-9,21137,21136,3,1,1,33,2,0,0,0,3,-9,1,1,0,0,4,5.407413,5.3168869,0,3,0,0,0,-9,0,-998.73785,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,45,45,15,1,0,-9,1,.74730867,.74730867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,13,2,1,1974,153885.64,0,0,1952.3629 -9418,11605,21139,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,8.67344,8.7982216,0,3,0,0,0,-9,0,-920.52332,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,37,36,15,1,1,-9,0,17.260393,17.260393,0,0,0,0,0,0,0,0,0,0,0,3.4455352,0,0,0,53.5,51.02,-9,-9,5,1,1,0,0,13,5,1,477,32633.705,0,0,2383.7502 -9419,11606,21140,21141,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,9.3095045,9.3106394,0,1,0,-9,25,0,-1,67.640038,0,0,0,53,1,5,1,2,2,2019,1,1,13,1,50,50,15,1,0,1,0,28.888371,28.888371,0,0,0,0,0,0,0,0,0,0,0,5.3912125,0,0,0,47.77,56.48,58.049999,54.52,4,1,1,0,1,2,5,1,637,705770.38,0,0,4796.0938 -9419,11606,21141,21140,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,0,5,8.119709,8.1791553,0,1,0,-9,26,0,1,-22.081467,0,0,0,52,1,4,1,3,2,2019,1,2,10,0,40,40,15,1,0,1,0,8.2159386,8.2159386,0,0,0,0,0,0,0,0,0,0,0,6.3676386,0,0,0,58.049999,54.52,47.77,56.48,6,1,1,0,0,2,5,1,637,705770.38,0,0,4796.0938 -9420,11607,21142,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,0,5,0,7.6583223,8.1017056,3,0,0,0,-9,0,-1048.2499,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0929966,7.6929531,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,1,131,410009.41,0,0,1504.0676 -9420,11608,21143,-9,-9,21142,2,1,1,35,2,0,0,0,1,-9,2,1,0,0,5,7.6425161,7.4645844,0,3,0,0,0,-9,0,-1034.1829,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,20,25,15,1,0,-9,1,11.16963,11.16963,0,0,0,0,0,0,0,0,1,1,0,3.4212461,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,12,3,1,145,189984.44,0,0,717.94177 -9421,11609,21144,21146,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,0,4,7.4058151,7.5577507,0,2,0,-9,29,0,0,44.067364,0,0,0,50,2,5,1,3,3,2019,1,1,8,0,25,15,15,1,0,1,0,6.368217,6.368217,0,0,0,0,0,0,0,7,1,1,0,0,0,11.187998,3,57.16,56.150002,56.470001,59.400002,2,1,1,0,0,6,5,1,788.66669,1167932.1,0,0,5305.1494 -9421,11609,21145,-9,21144,21146,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.24023,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,5,1,788.66669,1167932.1,0,0,5305.1494 -9421,11609,21146,21144,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,5,8.7071142,9.1876001,0,2,0,-9,29,0,0,140.46979,0,0,0,50,3,4,1,2,2,2019,1,2,8,0,48,78,15,1,0,1,0,19.540857,19.540857,0,0,0,0,0,0,0,2,1,1,0,8.6185913,0,6.3729157,3,56.470001,59.400002,57.16,56.150002,6,1,1,0,0,6,5,1,788.66669,1167932.1,0,0,5305.1494 -9422,11610,21147,21148,-9,-9,2,1,0,70,1,0,0,0,2,-9,1,1,0,0,5,0,0,0,1,0,-9,38,0,-4,23.060875,0,0,0,74,2,1,1,3,1,2019,1,1,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.7308855,0,0,1,51.139999,60.450001,40.880001,29,6,1,1,0,0,9,2,1,394.5,63500.785,0,0,13152.866 -9422,11610,21148,21147,-9,-9,1,1,1,74,1,0,0,0,2,-9,1,1,0,0,1,0,5.1251955,5.1752806,1,0,-9,38,0,4,-82.507652,0,0,0,70,2,5,1,2,2,2019,1,2,11,1,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.7006836,5.6218276,0,0,40.880001,29,51.139999,60.450001,4,1,1,0,0,9,2,1,394.5,63500.785,0,0,13152.866 -9423,11611,21149,-9,-9,-9,1,1,1,56,3,0,0,0,3,-9,1,1,0,0,4,7.6987348,7.227489,0,3,0,0,0,-9,0,-917.81079,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,5.9176831,5.9176831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.290001,49.68,-9,-9,1,1,1,0,0,12,3,1,603,32977.574,0,0,1392.7407 -9424,11612,21150,-9,21152,-9,2,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-890.56927,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,856.66669,-13580.55,0,0,1779.1228 -9424,11612,21151,-9,21152,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1067.9364,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,856.66669,-13580.55,0,0,1779.1228 -9424,11612,21152,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-931.94501,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,13,1,0,856.66669,-13580.55,0,0,1779.1228 -9425,11613,21153,21154,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,3,8.2863626,7.8696418,0,1,0,-9,2,0,5,24.004101,0,1,1,24,2,4,1,-9,2,2019,1,2,14,2,38,38,15,1,0,1,0,8.9469442,8.9469442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.049999,50.93,48,59,5,1,1,0,0,4,5,1,274.5,-74197.023,0,0,3726.1021 -9425,11613,21154,21153,-9,-9,2,1,1,24,1,0,0,0,2,-9,1,1,0,0,4,8.7458229,8.9798832,0,1,0,-9,2,0,-5,-30.629431,0,1,0,29,1,3,1,-9,-9,2019,1,1,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,42.049999,50.93,5,4,1,0,0,4,5,1,274.5,-74197.023,0,0,3726.1021 -9426,11614,21155,21158,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,4,8.6377125,8.6807356,0,2,0,-9,13,0,-1,-164.64961,0,0,0,41,1,3,1,2,1,2019,1,2,10,1,35,50,15,1,0,1,0,19.382566,19.382566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,43.650002,58.279999,5,2,3,0,0,9,4,1,388.5,633795.5,0,0,4394.4258 -9426,11614,21156,-9,21158,21155,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.2347,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,9,4,1,388.5,633795.5,0,0,4394.4258 -9426,11614,21157,-9,21158,21155,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.2472,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,9,4,1,388.5,633795.5,0,0,4394.4258 -9426,11614,21158,21155,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,1,3,8.3687267,8.1298685,0,2,0,-9,13,0,1,-116.91126,0,0,1,40,1,4,1,3,3,2019,1,1,9,0,42,0,15,1,0,1,0,14.563926,14.563926,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.650002,58.279999,50,56,5,2,3,0,0,9,4,1,388.5,633795.5,0,0,4394.4258 -9427,11615,21159,21160,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-3,-51.63678,0,0,0,71,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7325096,0,0,0,62.400002,42.799999,62,41.73,2,1,1,0,0,12,2,1,424.5,778863.81,0,0,999.6095 -9427,11615,21160,21159,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.2430744,7.0054898,1,0,-9,8,0,3,-18.79171,0,0,0,68,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2075505,7.3825378,0,0,62,41.73,62.400002,42.799999,6,1,1,0,0,12,2,1,424.5,778863.81,0,0,999.6095 -9428,11616,21161,-9,-9,-9,1,1,0,40,3,0,1,0,1,-9,2,1,0,0,3,8.2532272,8.1947384,6.6523309,4,0,0,0,-9,0,-1081.4978,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,33,30,15,1,1,-9,0,9.416398,9.416398,0,0,0,0,0,0,0,0,1,1,0,7.0735464,0,0,0,30.85,49.360001,-9,-9,3,1,1,0,0,6,4,1,216,333189.88,0,0,2289.6841 -9428,11616,21162,-9,21161,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-999.93964,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,216,333189.88,0,0,2289.6841 -9429,11617,21163,21164,-9,-9,2,1,1,54,1,0,0,0,3,-9,1,1,0,0,4,7.5141244,7.9956064,0,1,0,-9,31,0,-1,114.30264,0,0,0,55,3,2,3,3,3,2019,2,1,10,0,50,40,15,1,0,3,0,5.2990365,5.2990365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,32.139999,39.529999,5,1,1,0,0,9,2,0,194,298018.91,0,0,844.40143 -9429,11617,21164,21163,-9,-9,1,1,0,55,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,20,0,1,-23.540392,0,0,0,54,3,4,1,3,3,2019,3,2,26,12,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.139999,39.529999,57.16,56.150002,3,1,1,1,0,9,2,0,194,298018.91,0,0,844.40143 -9430,11618,21165,-9,21166,-9,2,1,0,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1023.9935,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.650002,41.830002,-9,-9,6,1,1,0,0,11,2,0,892,26252.594,0,0,2948.2334 -9430,11618,21166,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,0,4,7.6826868,7.7851219,0,4,0,-9,0,1,0,-966.03992,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,8,28,16,15,1,1,-9,0,8.2107515,8.2107515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.469999,63.919998,-9,-9,4,1,1,0,0,11,2,0,892,26252.594,0,0,2948.2334 -9431,11619,21167,21169,-9,-9,2,1,0,52,1,0,1,0,2,-9,97,3,0,0,4,8.407093,8.5175533,0,2,0,-9,10,0,4,6.7044768,0,0,0,48,2,3,1,2,2,2019,3,1,10,0,8,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.869999,58.549999,45.82,36.77,5,1,1,0,0,8,4,0,559.33331,689471.06,0,0,2903.8311 -9431,11619,21168,-9,21167,21169,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.07056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,4,0,559.33331,689471.06,0,0,2903.8311 -9431,11619,21169,21167,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,0,3,7.7650304,7.8946929,0,2,0,-9,10,0,-4,-3.0477653,-9,0,0,52,2,4,3,2,2,2019,2,2,16,5,45,0,15,1,1,3,0,5.3000765,5.3000765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,36.77,48.869999,58.549999,6,3,4,0,0,8,4,0,559.33331,689471.06,0,0,2903.8311 -9432,11620,21170,-9,21171,21173,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1144.2302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,3,1,448.75,246809.06,0,0,2244.2998 -9432,11620,21171,21173,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,5,0,2,-38.246067,0,0,1,37,1,3,1,-9,-9,2019,1,1,6,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2132545,0,0,0,51.240002,58.84,43.709999,56.91,6,1,1,0,0,12,3,1,448.75,246809.06,0,0,2244.2998 -9432,11620,21172,-9,21171,21173,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.6053,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,448.75,246809.06,0,0,2244.2998 -9432,11620,21173,21171,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,0,3,8.1653242,8.2803993,0,2,0,-9,5,0,-2,1.1808058,0,0,0,39,1,4,1,1,2,2019,1,2,11,1,43,35,15,1,0,1,0,12.775064,12.775064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,51.240002,58.84,6,1,1,0,0,12,3,1,448.75,246809.06,0,0,2244.2998 -9433,11621,21174,21175,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,0,3,8.9137745,8.7579031,0,2,0,-9,16,0,1,-61.934418,0,0,0,35,1,3,1,2,2,2019,1,2,5,0,41,47,15,1,0,1,0,16.461765,16.461765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,51.27,48.119999,6,1,1,0,0,2,4,1,256.25,258414.39,0,0,2833.7312 -9433,11621,21175,21174,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,0,3,6.8240604,6.8643484,0,2,0,-9,16,0,-1,-18.474945,0,0,1,36,1,3,1,2,2,2019,1,1,16,4,23,18,15,1,1,1,0,4.0827198,4.0827198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.27,48.119999,56.939999,49.529999,5,1,1,0,0,2,4,1,256.25,258414.39,0,0,2833.7312 -9433,11621,21176,-9,21175,21174,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.03931,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,256.25,258414.39,0,0,2833.7312 -9433,11621,21177,-9,21175,21174,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.47998,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,4,1,256.25,258414.39,0,0,2833.7312 -9434,11622,21178,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,3,0,6.4037719,6.5129013,3,0,0,0,-9,0,-985.97217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5356665,0,0,37.5,33.98,-9,-9,5,1,1,0,0,10,2,0,440,516278.53,0,0,1500.4264 -9435,11623,21179,21180,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-4,0,0,0,0,75,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.588235,0,0,0,48.279999,60.18,47.029999,38.130001,5,1,1,0,0,2,1,0,300,190712.5,0,0,1033.6322 -9435,11623,21180,21179,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,4,0,0,0,0,71,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,.1197812,0,0,0,0,0,1,1,0,0,0,0,0,47.029999,38.130001,48.279999,60.18,6,1,1,0,0,2,1,0,300,190712.5,0,0,1033.6322 -9436,11624,21181,-9,21182,21185,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.09222,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,763.79999,397440.75,0,0,4451.584 -9436,11624,21182,21185,-9,-9,2,1,0,39,1,0,3,0,1,-9,2,1,0,0,4,7.7381029,7.8838763,0,2,0,-9,16,0,0,-32.508472,0,0,1,39,1,4,1,1,2,2019,1,1,6,0,23,23,15,1,0,1,0,12.456423,12.456423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,48.869999,58.549999,6,1,1,0,0,2,4,1,763.79999,397440.75,0,0,4451.584 -9436,11624,21183,-9,21182,21185,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.22266,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,763.79999,397440.75,0,0,4451.584 -9436,11624,21184,-9,21182,21185,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.28448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,4,1,763.79999,397440.75,0,0,4451.584 -9436,11624,21185,21182,-9,-9,1,1,1,39,1,0,3,0,1,-9,2,1,0,0,4,8.5383787,8.5817461,0,2,0,-9,16,0,0,58.403267,0,0,0,39,1,4,1,2,1,2019,1,2,12,0,36,35,15,1,0,1,0,18.631809,18.631809,0,0,0,0,0,0,0,0,1,1,0,1.933236,0,0,0,48.869999,58.549999,49.459999,56.91,6,1,1,0,0,2,4,1,763.79999,397440.75,0,0,4451.584 -9437,11625,21186,-9,21188,21189,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.23322,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,2076.75,1766728.4,0,0,6457.397 -9437,11625,21187,-9,21188,21189,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.69342,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,2076.75,1766728.4,0,0,6457.397 -9437,11625,21188,21189,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,5,8.9063215,8.7587309,0,2,0,-9,8,0,-2,-113.97636,0,0,1,46,1,3,1,3,3,2019,1,1,6,0,45,80,15,1,0,1,0,16.733961,16.733961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,49.919998,47.32,7,1,1,0,0,6,5,1,2076.75,1766728.4,0,0,6457.397 -9437,11625,21189,21188,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,9.3952122,9.3785877,0,2,0,-9,17,0,2,-16.441118,0,0,0,44,1,5,1,2,2,2019,1,2,1,0,37,50,15,1,0,1,0,41.686832,41.686832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.919998,47.32,57.060001,57.759998,6,1,1,0,0,6,5,1,2076.75,1766728.4,0,0,6457.397 -9438,11626,21190,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,1,1,0,0,4,8.1943197,8.2364511,0,3,0,0,0,-9,0,-982.45123,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,35,35,15,1,0,-9,0,10.809879,10.809879,0,0,0,0,0,0,0,0,1,1,0,5.8481965,0,0,0,48.279999,60.18,-9,-9,6,4,2,0,0,2,4,1,995,461556.25,0,0,1105.5967 -9439,11627,21191,21192,-9,-9,1,1,1,63,1,1,1,0,3,-9,2,1,0,0,3,7.7439303,8.1648617,0,2,0,-9,9,0,1,-33.477142,0,0,0,62,2,3,3,3,3,2019,2,2,10,1,40,39,15,1,0,3,0,6.7874336,6.7874336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,48,5,1,1,0,0,13,3,1,804.5,1575712,0,0,3044.6318 -9439,11627,21192,21191,-9,-9,2,1,0,62,1,1,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,-1,-179.18648,0,0,0,63,3,3,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,48,5,1,1,0,0,13,3,1,804.5,1575712,0,0,3044.6318 -9439,11628,21193,21195,-9,-9,6,1,0,32,1,1,1,0,1,-9,2,1,0,0,4,8.244812,7.8735647,0,2,0,-9,3,0,-1,94.787994,0,0,1,33,2,4,1,-9,-9,2019,1,3,11,2,42,40,15,1,0,1,0,9.1965351,9.1965351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,49,57,5,1,1,0,0,13,3,1,531.66669,-24746.383,0,0,1899.8094 -9439,11628,21194,-9,21193,21195,7,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.89099,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,3,1,531.66669,-24746.383,0,0,1899.8094 -9439,11628,21195,21193,21192,21191,3,1,1,33,1,1,1,0,2,-9,1,1,0,0,4,7.0876651,6.6655874,0,2,0,-9,3,0,1,2.1615238,0,0,0,32,1,4,1,3,3,2019,1,6,10,1,48,45,15,1,0,1,0,1.883279,1.883279,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,47,57,5,1,1,0,0,13,3,1,531.66669,-24746.383,0,0,1899.8094 -9439,11629,21196,-9,-9,-9,4,1,0,19,2,1,1,0,3,1,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-954.39832,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,1,0,13,1,1,532,-91423.906,0,0,1187.6176 -9439,11630,21197,-9,-9,-9,5,1,1,18,2,1,1,0,3,-9,2,1,0,0,4,7.9125562,7.6645136,0,3,0,0,0,-9,0,-966.28314,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,0,15,1,0,-9,0,8.0195417,8.0195417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,1,13,4,1,952,12033.812,0,0,1801.1487 -9440,11631,21198,-9,-9,-9,1,1,1,90,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1007.0875,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,1.4856242,0,0,1,1,0,0,0,0,0,46.310001,21,-9,-9,5,1,1,0,0,4,1,0,316,36071.988,0,0,1133.7765 -9441,11632,21199,21200,-9,-9,2,1,1,78,1,0,2,0,3,-9,4,3,0,0,1,0,0,0,2,0,-9,6,0,13,0,0,0,0,65,3,2,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,0,5.0808983,0,0,0,0,1,1,0,0,0,0,0,53.560001,25.719999,50.68,28.49,6,2,3,0,0,12,1,1,976,855753,0,0,1570.0107 -9441,11632,21200,21199,-9,-9,1,1,0,65,1,0,2,0,3,-9,4,3,0,0,2,0,0,0,2,0,-9,6,0,-13,0,0,0,0,78,3,1,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,1.9568789,0,0,0,0,1,1,0,0,0,0,0,50.68,28.49,53.560001,25.719999,6,2,3,0,1,12,1,1,976,855753,0,0,1570.0107 -9441,11633,21201,-9,21203,21202,6,1,0,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.311,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,5,2,3,0,0,12,3,1,505.66666,510005.88,0,0,1813.3287 -9441,11633,21202,21203,21200,21199,3,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.5812721,8.6094122,0,2,0,-9,6,0,-2,-147.48378,0,0,0,46,2,2,1,3,3,2019,1,4,16,4,37,42,15,1,1,1,0,20.456366,20.456366,0,0,0,0,0,0,0,7,1,1,0,0,0,9.1938601,3,35.5,54.110001,46.439999,39.759998,5,2,3,0,0,12,3,1,505.66666,510005.88,0,0,1813.3287 -9441,11633,21203,21202,-9,-9,4,1,0,46,1,0,2,0,2,-9,2,1,0,0,2,7.1308947,7.0675316,0,2,0,-9,6,0,2,89.041718,0,0,0,44,2,3,1,2,2,2019,1,3,22,10,50,20,15,1,1,1,0,2.3173418,2.3173418,0,0,0,0,0,0,0,2,1,1,0,0,0,4.2860332,3,46.439999,39.759998,35.5,54.110001,4,2,3,0,0,12,3,1,505.66666,510005.88,0,0,1813.3287 -9441,11634,21204,-9,21203,21202,5,1,0,18,2,0,2,1,2,0,7,2,0,0,4,6.4488435,6.2410779,0,3,0,0,0,-9,0,-920.18396,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.2159014,3,36.450001,62.919998,-9,-9,5,2,3,0,0,12,3,1,834,108355.28,0,0,-161.15584 -9442,11635,21205,21206,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.570838,8.2932405,1,0,-9,41,0,8,94.694427,0,0,0,63,1,2,1,2,2,2019,3,1,14,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.779892,8.2877798,10.788517,3,46.389999,60.990002,40.369999,39.950001,6,1,1,0,0,2,4,1,450,793833.38,0,0,2993.0847 -9442,11635,21206,21205,-9,-9,1,1,0,63,1,0,0,0,1,-9,1,1,0,0,2,6.0636849,7.6637211,7.0364943,1,0,-9,41,0,-8,-85.188248,0,0,0,71,1,4,3,3,2,2019,2,2,16,4,30,20,15,1,1,4,0,2.1320331,2.1320331,0,0,0,0,0,0,0,2,1,1,0,6.8041387,5.4283953,5.465199,3,40.369999,39.950001,46.389999,60.990002,4,1,1,0,0,2,4,1,450,793833.38,0,0,2993.0847 -9443,11636,21207,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,4.7906952,4.6857505,3,0,0,0,-9,0,-917.55688,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5259504,4.6732321,0,0,50.07,41.790001,-9,-9,6,1,1,0,0,2,2,1,801,246743.39,0,0,1465.1692 -9444,11637,21208,-9,-9,-9,1,1,0,27,2,0,1,0,2,-9,2,1,0,0,3,7.1260843,7.2379708,0,4,0,0,0,-9,0,-1024.5911,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,18,14,15,1,0,-9,0,6.3052869,6.3052869,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.540001,39.369999,-9,-9,3,1,1,0,0,2,2,0,2104.5,-53641.344,0,0,1628.1924 -9444,11637,21209,-9,21208,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1027.9576,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,2104.5,-53641.344,0,0,1628.1924 -9445,11638,21210,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,3,6.0297246,6.2091355,0,3,0,0,0,-9,0,-1139.9468,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,33,17,15,1,1,-9,0,1.5929976,1.5929976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.299999,50.77,-9,-9,4,1,1,0,0,9,2,1,494,595188.44,0,0,507.4657 -9445,11639,21211,-9,21210,-9,2,1,0,24,2,0,0,0,3,-9,2,1,0,0,3,5.4989848,5.5816088,0,3,0,0,0,-9,0,-936.86249,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,30,12,8,0,15,1,1,-9,1,3.7944391,3.7944391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.799999,65.25,-9,-9,3,1,1,0,0,9,2,1,314,77920.055,0,0,651.20953 -9446,11640,21212,-9,21215,21213,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.45605,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,5,1,733.59998,146278.47,0,0,3948.5615 -9446,11640,21213,21215,-9,-9,2,1,1,36,1,1,3,0,2,-9,2,1,0,0,4,9.2402248,8.9090948,0,2,0,-9,9,0,0,-123.04053,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,0,48,48,15,1,0,1,0,23.492413,23.492413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.509998,54.509998,54.200001,57.490002,6,1,1,0,0,6,5,1,733.59998,146278.47,0,0,3948.5615 -9446,11640,21214,-9,21215,21213,4,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.25519,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,733.59998,146278.47,0,0,3948.5615 -9446,11640,21215,21213,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,0,4,7.5869465,7.5774302,0,2,0,-9,14,0,0,102.49345,0,0,1,36,2,4,1,3,3,2019,1,2,8,0,20,20,15,1,0,1,0,12.636189,12.636189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,48.509998,54.509998,7,1,1,0,0,6,5,1,733.59998,146278.47,0,0,3948.5615 -9446,11640,21216,-9,21215,21213,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-995.40491,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,5,1,733.59998,146278.47,0,0,3948.5615 -9447,11641,21217,21218,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,0,4,0,0,0,2,0,-9,10,0,3,48.932175,0,0,0,35,1,4,1,2,2,2019,1,2,10,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.200001,57.16,56.150002,6,1,1,0,0,11,2,1,845.25,78337.984,0,0,1290.5447 -9447,11641,21218,21217,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,0,4,7.5123763,7.9855909,0,2,0,-9,10,0,-3,5.9403782,0,0,1,38,1,4,1,1,2,2019,1,1,8,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,60.52,53.200001,6,1,1,0,0,11,2,1,845.25,78337.984,0,0,1290.5447 -9447,11641,21219,-9,21218,21217,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.29016,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,1,845.25,78337.984,0,0,1290.5447 -9447,11641,21220,-9,21218,21217,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-829.53607,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,11,2,1,845.25,78337.984,0,0,1290.5447 -9448,11642,21221,21222,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,9.4445076,9.5675507,0,2,0,-9,18,0,2,-6.7761159,0,0,0,40,1,5,1,2,2,2019,1,1,12,2,42,41,15,1,0,1,0,44.982624,44.982624,0,0,0,0,0,0,0,0,0,0,0,6.2851958,0,0,0,41.32,53.68,54.099998,59.110001,5,1,1,0,0,12,5,1,503.5,675587.38,0,0,8165.0029 -9448,11642,21222,21221,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,5,9.2547016,9.3731108,0,2,0,-9,18,0,-2,50.166412,0,0,1,42,1,3,1,2,2,2019,1,2,6,0,40,38,15,1,0,1,0,35.878883,35.878883,0,0,0,0,0,0,0,0,0,0,0,6.8326035,0,0,0,54.099998,59.110001,41.32,53.68,6,1,1,0,0,12,5,1,503.5,675587.38,0,0,8165.0029 -9448,11642,21223,-9,21222,21221,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.8724,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,503.5,675587.38,0,0,8165.0029 -9448,11642,21224,-9,21222,21221,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.9892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,503.5,675587.38,0,0,8165.0029 -9449,11643,21225,-9,21226,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1019.9729,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,6,3,1,2761,434829.97,0,0,2023.8088 -9449,11643,21226,-9,-9,-9,1,1,0,50,2,0,1,0,2,-9,2,1,0,0,2,8.000536,7.7610483,0,4,0,0,0,-9,0,-1190.9149,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,22,10,22,21,15,1,1,-9,0,18.974426,18.974426,0,0,0,0,0,0,0,0,1,1,0,6.7806973,0,0,0,39.16,40.5,-9,-9,3,1,1,0,1,6,3,1,2761,434829.97,0,0,2023.8088 -9450,11644,21227,-9,21228,-9,1,1,1,48,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1076.6604,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.09377,3,41.580002,52.860001,-9,-9,5,1,1,0,0,12,1,0,2385,0,0,0,360.54147 -9450,11645,21228,-9,-9,-9,2,1,0,75,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-907.16925,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,4.584342,0,0,1,1,0,0,0,0,0,47.5,20.139999,-9,-9,3,1,1,0,0,12,1,0,402,-72974.688,0,0,527.7746 -9451,11646,21229,21230,-9,-9,2,1,0,59,1,0,0,0,1,-9,8,3,1,1,2,8.9342203,8.3853397,0,1,0,-9,15,0,-4,56.531296,0,0,0,63,2,4,3,2,1,2019,4,1,25,10,62,50,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6753316,0,0,0,36.709999,32.299999,54.790001,55.860001,6,1,1,0,0,2,5,1,428,1868175.3,0,0,2798.9751 -9451,11646,21230,21229,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.7457542,7.5888948,1,0,-9,15,0,4,-20.427103,0,0,0,59,1,2,3,3,3,2019,4,2,10,1,0,41,15,4,0,3,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,0,7.5875378,1.9670466,1,54.790001,55.860001,36.709999,32.299999,6,1,1,0,0,2,5,1,428,1868175.3,0,0,2798.9751 -9452,11647,21231,21232,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,5,0,5.3719554,5.3980255,1,0,-9,36,0,4,-73.198441,0,0,0,60,2,3,1,2,1,2019,3,2,12,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.35464713,5.0655618,33.372578,3,57.060001,57.759998,57.330002,53.459999,6,1,1,0,0,10,4,1,6281.5,1277860.6,0,0,2597.9294 -9452,11647,21232,21231,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.6637297,8.6617203,0,1,0,-9,39,0,-4,-150.99164,0,0,0,64,2,5,3,3,3,2019,2,1,6,0,43,44,15,1,0,4,0,13.743483,13.743483,0,0,0,0,0,0,0,14.5,1,1,0,.82695782,0,14.465015,3,57.330002,53.459999,57.060001,57.759998,6,1,1,0,0,10,4,1,6281.5,1277860.6,0,0,2597.9294 -9453,11648,21233,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,2,1,0,0,2,8.3755751,8.2711878,0,4,0,0,0,-9,0,-1062.3142,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,37,30,15,1,0,-9,0,12.251108,12.251108,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.810001,49.130001,-9,-9,6,1,1,0,0,4,4,1,563,200277.77,0,0,1175.4705 -9453,11649,21234,-9,21233,-9,3,1,1,20,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-993.47784,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,37,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.889999,49.950001,-9,-9,6,1,1,1,1,4,1,1,943,0,0,0,-565.86523 -9453,11650,21235,-9,21233,-9,2,1,0,18,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1118.5427,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.959999,61.139999,-9,-9,3,1,1,1,0,4,4,1,791,-132304.25,0,0,0 -9454,11651,21236,21237,-9,-9,2,1,0,34,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-3,23.391949,0,0,1,37,2,4,1,-9,-9,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.109303,3,32.830002,45.720001,47.459999,39,4,1,1,0,0,6,4,0,1629,113163.76,0,0,2514.626 -9454,11651,21237,21236,-9,-9,1,1,1,37,1,0,2,0,2,-9,1,1,0,0,4,8.5610971,8.8710938,0,2,0,-9,7,0,3,5.9271045,0,0,0,34,3,3,3,2,3,2019,2,2,12,1,45,40,15,1,0,3,0,15.010401,15.010401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.459999,39,32.830002,45.720001,5,1,1,0,0,6,4,0,1629,113163.76,0,0,2514.626 -9454,11651,21238,-9,21236,21237,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1186.5063,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,4,0,1629,113163.76,0,0,2514.626 -9455,11652,21239,-9,21241,21242,3,1,1,16,2,0,3,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-944.75,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5881631,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,1,1,738.79999,402498.09,0,0,2054.6372 -9455,11652,21240,-9,21241,21242,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.37299,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,1,1,738.79999,402498.09,0,0,2054.6372 -9455,11652,21241,21242,-9,-9,1,1,0,42,1,0,3,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,26,0,-1,0,0,0,1,43,1,3,2,-9,2,2019,4,2,8,0,0,0,15,3,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.470001,38.950001,51.66,54.880001,6,1,1,0,0,12,1,1,738.79999,402498.09,0,0,2054.6372 -9455,11652,21242,21241,-9,-9,2,1,1,43,1,0,3,0,1,-9,7,2,0,0,3,0,0,0,2,0,-9,26,0,1,0,1,0,0,42,2,3,3,2,2,2019,4,1,10,0,0,14,15,2,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.570673,1,51.66,54.880001,59.470001,38.950001,4,1,1,0,0,12,1,1,738.79999,402498.09,0,0,2054.6372 -9455,11652,21243,-9,21241,21242,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.17963,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,1,738.79999,402498.09,0,0,2054.6372 -9456,11653,21244,21245,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.9839725,7.4479952,1,0,-9,42,0,1,54.537277,0,0,0,63,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1346602,7.9996939,11.149985,3,60.279999,43.740002,56.52,48.310001,6,1,1,0,0,9,4,1,225,1560737.5,0,0,3513.4863 -9456,11653,21245,21244,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,8.3282957,7.974071,1,0,-9,42,0,-1,75.64975,0,0,0,64,2,4,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.042531,8.1302176,0,0,56.52,48.310001,60.279999,43.740002,6,1,1,0,0,9,4,1,225,1560737.5,0,0,3513.4863 -9457,11654,21246,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,2,8.5183992,8.1207428,0,3,0,0,0,-9,0,-1087.0408,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,28,28,15,1,0,-9,0,15.49005,15.49005,0,0,0,0,0,0,0,98,1,1,0,.82674354,0,115.08393,3,49.959999,35.639999,-9,-9,6,2,3,0,0,8,4,1,147,139883.19,0,0,960.64984 -9457,11655,21247,-9,21246,-9,2,1,0,24,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1196.4489,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,-9,-9,4,1,1,0,0,8,1,1,625,101517.38,0,0,326.88605 -9458,11656,21248,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,3,0,8.5606995,8.1160126,3,0,0,0,-9,0,-905.5318,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.8883348,8.2716513,3.4143472,3,57.5,37.060001,-9,-9,6,1,1,0,0,4,4,1,957,707934.5,0,0,3312.582 -9459,11657,21249,21250,-9,-9,1,1,0,68,1,0,0,0,3,-9,1,1,0,0,3,8.8285999,8.6260204,0,1,0,-9,10,0,7,64.30825,0,0,0,61,1,4,1,2,3,2019,1,2,8,0,56,70,15,1,0,1,0,10.313175,10.313175,0,0,0,0,0,0,0,0,1,1,0,7.1682849,0,0,0,58.32,50.220001,57.16,56.150002,2,1,1,0,0,9,5,1,2290,5803787,0,0,7025.5664 -9459,11657,21250,21249,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,0,4,9.1795197,8.7807636,0,1,0,-9,10,0,-7,-111.10333,0,0,0,68,3,3,1,2,2,2019,1,1,6,0,38,37,15,1,0,1,0,25.513903,25.513903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,9,5,1,2290,5803787,0,0,7025.5664 -9459,11658,21251,-9,21249,21250,3,1,1,22,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-974.01477,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,61.509998,-9,-9,6,1,1,0,0,9,1,1,423,34088.09,0,0,0 -9460,11659,21252,21254,-9,-9,1,1,1,36,1,1,1,0,2,-9,1,1,0,1,4,7.9089217,7.965775,0,2,0,-9,6,0,-1,-66.294128,0,0,0,37,1,3,3,2,2,2019,2,2,11,1,40,0,15,1,0,3,0,9.3916473,9.3916473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.059998,39.169998,43.810001,44.709999,6,1,1,0,0,9,3,0,1187.6666,298636.19,0,0,2297.6667 -9460,11659,21253,-9,21254,21252,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.92047,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,3,0,1187.6666,298636.19,0,0,2297.6667 -9460,11659,21254,21252,-9,-9,2,1,0,37,1,1,1,0,1,-9,10,3,0,0,3,0,0,0,2,0,-9,6,0,1,-68.699066,0,0,1,36,2,4,1,-9,-9,2019,3,1,14,2,0,15,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.810001,44.709999,64.059998,39.169998,6,1,1,0,0,9,3,0,1187.6666,298636.19,0,0,2297.6667 -9461,11660,21255,21256,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,5.8838196,6.2896776,1,0,-9,5,0,-1,55.189259,0,0,0,67,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.9668069,27.17506,1,56.200001,33.91,68.650002,10.29,6,1,1,0,0,13,3,1,217.5,1388839.1,0,0,2762.2192 -9461,11660,21256,21255,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,1,2,0,7.9304218,7.7915049,1,0,-9,42,0,1,102.1885,0,0,0,66,2,2,3,2,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,3.8437977,0,0,0,0,0,1,1,0,0,8.0195913,0,0,68.650002,10.29,56.200001,33.91,7,1,1,0,0,13,3,1,217.5,1388839.1,0,0,2762.2192 -9462,11661,21257,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,1,0,6.0048785,5.5237145,3,0,0,0,-9,0,-915.13989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,9,0,0,15,4,1,-9,0,0,0,1,72.769775,0,0,0,73.952782,659.92816,0,1,1,0,5.9583273,5.6096377,0,0,19.01,22.639999,-9,-9,6,1,1,0,1,6,2,1,245,-38792.297,0,0,1929.6721 -9463,11662,21258,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,7.8999805,7.9482312,0,3,0,0,0,-9,0,-1018.2565,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,39,39,15,1,0,-9,0,7.8245912,7.8245912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.810001,53.560001,-9,-9,5,1,1,0,0,4,3,0,4293,54399.754,0,0,1120.7555 -9464,11663,21259,21260,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.7065563,8.7044783,0,1,0,-9,9,0,-2,.80513716,0,0,0,58,2,3,1,-9,-9,2019,1,1,9,2,36,37,15,1,0,1,0,14.47603,14.47603,0,0,0,0,0,0,0,0,0,0,0,1.239171,0,0,1,49.91,41,62.27,48.470001,5,2,3,0,0,8,5,1,1033,428689.44,0,0,5268.1597 -9464,11663,21260,21259,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.4271011,9.0184946,7.5150485,1,0,-9,9,0,2,3.9285426,0,0,0,56,2,3,1,3,3,2019,1,2,9,0,36,36,15,1,0,1,0,16.38596,16.38596,0,0,0,0,0,0,0,0,0,0,0,0,8.2742958,0,0,62.27,48.470001,49.91,41,6,4,2,0,0,8,5,1,1033,428689.44,0,0,5268.1597 -9464,11664,21261,-9,21259,21260,3,1,1,29,3,0,0,0,2,-9,2,1,0,0,3,8.2637844,8.5964556,0,3,0,0,0,-9,0,-952.00739,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,42,15,1,0,-9,1,16.876751,16.876751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,47.259998,-9,-9,5,2,3,0,0,8,5,1,414,59899.707,0,0,1614.252 -9465,11665,21262,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,0,2,0,6.8360987,7.0706148,3,0,0,0,-9,0,-961.58887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0722528,7.0145907,0,0,50.75,39.209999,-9,-9,4,1,1,0,0,12,2,0,460,394127.06,0,0,1483.6205 -9466,11666,21263,21264,-9,-9,2,1,0,21,1,0,0,0,1,-9,2,1,0,0,4,8.658618,8.246232,0,1,0,-9,1,-9,-7,-22.062456,-9,1,1,28,1,3,1,-9,-9,2019,1,1,9,1,45,0,15,1,0,1,0,13.427148,13.427148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.650002,57.009998,41.470001,58.080002,6,1,1,0,0,12,5,1,1055.5,692806.5,0,0,3947.1125 -9466,11666,21264,21263,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,3,8.5947142,8.7875881,0,1,0,1,1,-9,7,-4.2981715,0,1,0,21,1,4,1,1,1,2019,1,2,10,0,38,41,15,1,0,1,0,15.391709,15.391709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.470001,58.080002,49.650002,57.009998,6,1,1,0,0,12,5,1,1055.5,692806.5,0,0,3947.1125 -9467,11667,21265,21266,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,2,8.497962,8.4126778,0,1,0,-9,38,0,0,-72.72448,0,0,0,59,2,4,1,2,2,2019,1,2,23,9,36,35,15,1,1,1,0,11.803572,11.803572,0,0,0,0,0,0,0,0,0,0,0,2.2375555,0,0,0,28.719999,50.5,55.189999,54.259998,5,1,1,0,0,4,5,1,2099.5,1647988.5,0,0,5766.7778 -9467,11667,21266,21265,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.871541,9.1040382,0,1,0,-9,38,0,0,-59.729446,0,0,0,59,1,2,1,2,2,2019,1,1,7,0,40,44,15,1,0,1,0,27.763437,27.763437,0,0,0,0,0,0,0,0,0,0,0,1.6304989,0,0,0,55.189999,54.259998,28.719999,50.5,6,1,1,0,0,4,5,1,2099.5,1647988.5,0,0,5766.7778 -9468,11668,21267,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,0,3,0,7.7389064,7.6320815,3,0,0,0,-9,0,-977.6203,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4676375,7.7149363,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,5,3,1,3057,455302.06,0,0,1559.5431 -9469,11669,21268,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,0,4,8.2135038,7.7639432,0,3,0,0,0,-9,0,-1073.6956,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,20,20,15,1,0,-9,0,11.735174,11.735174,0,0,0,0,0,0,0,0,0,0,0,.73834383,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,1,10,3,0,299,82779.664,0,0,1505.677 -9470,11670,21269,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,3,8.8068628,8.6980515,0,3,0,0,0,-9,0,-827.78009,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,45,15,1,0,-9,0,17.652683,17.652683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.23,55.950001,-9,-9,5,4,2,0,0,7,5,1,983,806598.63,0,0,1828.3054 -9471,11671,21270,21273,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,0,4,9.2167139,9.0594587,0,2,0,-9,15,0,0,-74.996208,0,0,0,33,1,4,3,1,1,2019,2,2,5,0,37,37,15,1,0,3,0,29.978794,29.978794,0,0,0,0,0,0,0,0,1,1,0,4.860642,0,0,0,55.790001,52.619999,59.830002,48.07,2,1,1,0,0,5,4,1,602.75,188690.38,0,0,3193.1196 -9471,11671,21271,-9,21273,21270,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.9473,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,602.75,188690.38,0,0,3193.1196 -9471,11671,21272,-9,21273,21270,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.31183,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,602.75,188690.38,0,0,3193.1196 -9471,11671,21273,21270,-9,-9,2,1,0,33,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,0,62.315907,0,0,1,33,1,4,1,2,3,2019,3,1,7,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.830002,48.07,55.790001,52.619999,6,1,1,0,0,5,4,1,602.75,188690.38,0,0,3193.1196 -9472,11672,21274,-9,-9,-9,3,1,0,21,2,0,1,0,2,0,7,2,0,0,5,6.1540403,6.5048819,0,3,0,0,0,-9,0,-993.00763,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.3417583,3,57.060001,57.759998,-9,-9,6,1,1,0,0,7,2,1,219,48186.332,0,0,544.81128 -9473,11673,21275,21276,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,7.2936101,7.0675297,0,1,0,-9,7,0,-1,14.083877,0,0,0,55,2,3,1,3,3,2019,1,1,11,0,20,34,15,1,0,1,0,7.9586873,7.9586873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.059998,41.580002,45.82,46.700001,6,1,1,0,0,12,3,0,952.5,84822.555,0,0,938.86218 -9473,11673,21276,21275,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,3,7.5685868,7.5580893,0,1,0,-9,7,0,1,25.939594,0,0,0,54,3,4,1,3,3,2019,1,2,16,4,25,0,15,1,1,1,0,9.0744343,9.0744343,0,0,0,0,0,0,0,2,0,0,0,0,0,1.6370221,3,45.82,46.700001,65.059998,41.580002,6,1,1,0,0,12,3,0,952.5,84822.555,0,0,938.86218 -9474,11674,21277,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,4,3,0,0,4,0,6.8562975,6.7947083,3,0,0,0,-9,0,-888.50305,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2805929,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,6,2,1,612,188511.55,0,0,1777.2854 -9475,11675,21278,21279,-9,-9,1,1,0,53,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,22,0,-6,-81.720055,0,0,0,59,1,2,1,3,3,2019,3,2,7,1,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1230476,0,0,3,54.360001,39.669998,52.240002,50.75,5,1,1,1,0,2,3,1,1664.5,998995,0,0,1411.903 -9475,11675,21279,21278,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,2,8.0494556,7.89224,0,1,0,-9,22,0,6,-58.501781,0,0,0,53,1,3,3,2,2,2019,2,1,11,0,36,37,15,1,0,3,0,9.2980175,9.2980175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.240002,50.75,54.360001,39.669998,4,4,5,0,0,2,3,1,1664.5,998995,0,0,1411.903 -9476,11676,21280,-9,21282,21281,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.66333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,3,1,2390.6667,165210.5,0,0,1499.3231 -9476,11676,21281,21282,-9,-9,1,1,1,34,1,1,2,0,2,-9,1,1,0,0,4,7.8440495,7.707078,0,2,0,-9,3,0,-4,-18.681549,0,0,0,38,2,4,1,2,2,2019,1,2,7,0,30,35,15,1,0,1,0,7.5372391,7.5372391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,42.299999,57.540001,6,1,1,0,0,7,3,1,2390.6667,165210.5,0,0,1499.3231 -9476,11676,21282,21281,-9,-9,2,1,0,38,1,1,2,0,2,-9,2,1,0,0,4,7.5017209,7.6004314,0,2,0,-9,3,0,4,-14.499446,-9,0,1,34,2,4,1,-9,-9,2019,1,1,9,0,21,0,15,1,0,1,0,11.073545,11.073545,0,0,0,0,0,0,0,0,1,1,0,1.0173373,0,0,0,42.299999,57.540001,48.869999,58.549999,6,1,1,0,0,7,3,1,2390.6667,165210.5,0,0,1499.3231 -9477,11677,21283,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,2,1,0,0,5,7.0309939,7.063992,0,3,0,0,0,-9,0,-1013.5626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,27,25,15,1,0,-9,0,4.7870455,4.7870455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,3,4,0,0,6,2,0,474,26954.121,0,0,645.91614 -9478,11678,21284,21285,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,5,7.9735456,8.5356617,0,1,0,-9,8,0,-1,57.526077,0,0,0,48,3,4,1,2,3,2019,1,2,6,0,42,41,15,1,0,1,0,8.6501102,8.6501102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,1,1,1,0,0,13,4,1,1541.5,358090.88,0,0,1619.0039 -9478,11678,21285,21284,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,1,4,7.0369897,6.8559394,0,1,0,-9,8,0,1,8.2836695,0,0,0,47,2,5,1,3,3,2019,1,1,6,0,10,10,15,1,0,1,0,11.60401,11.60401,0,0,0,0,0,0,0,42,1,1,0,0,0,41.473034,3,57.16,56.150002,57.060001,57.759998,2,1,1,0,0,13,4,1,1541.5,358090.88,0,0,1619.0039 -9479,11679,21286,21289,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,4,8.6257448,8.3358221,0,2,0,-9,10,0,1,-185.84236,0,0,0,47,1,4,1,1,2,2019,1,2,9,0,40,37,15,1,0,1,0,18.354738,18.354738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,12,5,1,620.5,299682.66,0,0,6424.1714 -9479,11679,21287,-9,21286,21289,3,1,1,17,2,0,1,0,2,-9,2,3,0,0,5,7.9956174,7.8401661,0,2,0,0,0,-9,0,-1067.7684,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.995131,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,5,1,620.5,299682.66,0,0,6424.1714 -9479,11679,21288,-9,21286,21289,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.4084,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,620.5,299682.66,0,0,6424.1714 -9479,11679,21289,21286,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,9.1659279,9.2619734,0,2,0,-9,10,0,-1,24.346788,0,0,0,48,1,4,1,2,2,2019,1,1,7,0,45,44,15,1,0,1,0,35.535133,35.535133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,12,5,1,620.5,299682.66,0,0,6424.1714 -9480,11680,21290,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,7.4611797,7.813343,0,3,0,0,0,-9,0,-1037.413,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,36,40,15,1,0,-9,0,6.028512,6.028512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,3,1,625,-53852.895,0,0,611.36426 -9481,11681,21291,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,0,3,8.9559927,9.0213947,0,3,0,0,0,-9,0,-953.43182,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,40,42,15,1,0,-9,0,17.217709,17.217709,0,0,0,0,0,0,0,0,1,1,0,5.7487445,0,0,0,42.610001,49.310001,-9,-9,3,1,1,0,0,4,5,1,446,-89222.203,0,0,2056.9514 -9482,11682,21292,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1043.6453,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,37,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3910398,0,0,0,54.970001,44.93,-9,-9,4,1,1,1,0,9,1,1,842,259776.83,0,0,-23.732492 -9483,11683,21293,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,5.9641547,5.8811412,3,0,0,0,-9,0,-1094.7144,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0823803,0,0,49.630001,54.220001,-9,-9,7,1,1,0,0,6,2,1,1304,311306.59,0,0,1244.939 -9484,11684,21294,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-980.95734,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,0,45,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2486382,0,0,0,49.869999,50.459999,-9,-9,4,1,1,1,0,1,1,1,172,9319.4209,0,0,3530.2095 -9485,11685,21295,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,6.9903941,6.9082484,3,0,0,0,-9,0,-1011.6219,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8135786,0,0,41.68,41.66,-9,-9,6,1,1,0,0,9,2,1,186,535871.5,0,0,1424.8256 -9485,11686,21296,-9,21295,-9,2,1,1,55,3,0,0,0,3,-9,1,1,0,0,3,9.0515614,9.4600782,0,3,0,0,0,-9,0,-965.74274,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,5,4,15,1,0,-9,1,196.28201,196.28201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,9,5,1,1343,-149742.5,0,0,4509.2314 -9486,11687,21297,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1156.465,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,27,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,21.219999,-9,-9,1,1,1,1,1,8,1,0,1301,-82705.5,0,0,2875.0239 -9486,11688,21298,-9,21297,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,5,7.3088164,7.676095,0,3,0,0,0,-9,0,-1113.618,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,40,40,15,1,0,-9,1,4.444521,4.444521,0,0,0,0,0,0,0,7,1,1,0,0,0,2.6944444,3,59.43,58.049999,-9,-9,6,1,1,0,0,8,3,0,123,-110583.45,0,0,1462.115 -9487,11689,21299,-9,-9,-9,1,1,0,84,3,0,0,0,1,-9,4,3,0,0,4,0,6.9712129,6.8180666,3,0,0,0,-9,0,-1006.2291,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,1.0863022,0,0,0,0,0,0,1,1,0,3.6310413,6.6569543,0,0,36.459999,41.450001,-9,-9,5,1,1,0,0,8,2,1,571,297697.47,0,0,1732.9518 -9488,11690,21300,21301,-9,-9,1,1,0,53,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,31,0,-1,-96.020134,0,0,0,54,2,2,1,2,2,2019,3,2,28,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.816536,3,30.370001,24.200001,47.84,49.93,2,1,1,0,0,4,4,1,763,180767.13,0,0,3174.1611 -9488,11690,21301,21300,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,2,8.420476,8.5863438,6.6976399,1,0,-9,31,0,1,41.551048,0,0,0,53,2,1,3,3,3,2019,2,1,12,0,38,46,15,1,0,3,0,13.086094,13.086094,0,0,0,0,0,0,0,0,1,1,0,3.4302702,6.9161663,0,0,47.84,49.93,30.370001,24.200001,3,1,1,0,0,4,4,1,763,180767.13,0,0,3174.1611 -9488,11690,21302,-9,21300,21301,4,1,0,17,2,0,0,1,2,0,7,2,0,0,2,5.781446,5.6549606,0,1,0,0,0,-9,0,-1049.1379,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,9,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.7294946,0,19.864618,3,39.139999,41.630001,-9,-9,5,1,1,0,0,4,4,1,763,180767.13,0,0,3174.1611 -9488,11691,21303,-9,21300,21301,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,7.2876592,7.4951229,0,3,0,0,0,-9,0,-961.62793,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,18,15,1,0,-9,1,5.1350307,5.1350307,0,0,0,0,0,0,0,0,1,1,0,.25346017,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,4,3,1,1048,55046.254,0,0,1597.3188 -9489,11692,21304,21305,-9,-9,2,1,0,65,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,45,0,-6,42.089413,0,0,0,71,1,4,3,2,3,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4656076,0,0,0,58.150002,52.91,60.279999,43.740002,7,1,1,0,0,13,4,1,543.5,2238342.5,0,0,5533.2129 -9489,11692,21305,21304,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.3319283,8.6065178,1,0,-9,45,0,6,21.964674,0,0,0,65,2,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.0654993,8.3314753,0,0,60.279999,43.740002,58.150002,52.91,6,1,1,0,0,13,4,1,543.5,2238342.5,0,0,5533.2129 -9490,11693,21306,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,2,0,4.6080623,4.5467052,3,0,0,0,-9,0,-1170.6846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5590107,4.2591305,0,0,57.740002,44.139999,-9,-9,6,1,1,0,0,5,2,0,947,303788.91,0,0,1496.7853 -9491,11694,21307,21310,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,8.785964,8.9144592,0,2,0,-9,8,0,3,-5.5441089,0,0,0,38,2,3,1,-9,-9,2019,1,1,3,1,39,41,15,1,0,1,0,24.071053,24.071053,0,0,0,0,0,0,0,0,1,1,0,4.8329787,0,0,0,64.050003,50.240002,58.32,50.220001,6,1,1,0,0,12,4,1,632.75,1696.5996,0,0,3239.2375 -9491,11694,21308,-9,21310,21307,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.3065,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,632.75,1696.5996,0,0,3239.2375 -9491,11694,21309,-9,21310,21307,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.92914,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,632.75,1696.5996,0,0,3239.2375 -9491,11694,21310,21307,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.5745339,7.2995367,0,2,0,-9,8,0,-3,9.0668392,0,0,1,41,1,4,1,2,2,2019,1,2,9,1,23,23,15,1,0,1,0,8.5739708,8.5739708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,64.050003,50.240002,6,1,1,0,0,12,4,1,632.75,1696.5996,0,0,3239.2375 -9492,11695,21311,21312,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,7.4545035,7.5985951,0,2,0,-9,23,0,-15,-4.4275265,0,0,1,58,1,3,1,2,1,2019,1,2,13,1,12,12,15,1,0,1,0,18.579611,18.579611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.389999,50.869999,54.369999,54.799999,5,1,1,0,0,9,5,1,532,297791.19,0,0,5944.9771 -9492,11695,21312,21311,-9,-9,2,1,1,58,1,0,2,0,1,-9,2,1,0,0,3,9.7407846,9.6620226,0,2,0,-9,11,0,15,132.71863,0,0,0,43,1,4,1,-9,-9,2019,1,1,9,0,50,45,15,1,0,1,0,37.844669,37.844669,0,0,0,0,0,0,0,0,0,0,0,5.983923,0,0,0,54.369999,54.799999,42.389999,50.869999,5,1,1,0,0,9,5,1,532,297791.19,0,0,5944.9771 -9493,11696,21313,21314,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,7.2419019,7.3385925,0,1,0,-9,34,0,-2,-59.456005,0,0,0,53,2,3,1,3,2,2019,1,2,12,0,21,20,15,1,0,1,0,8.1331768,8.1331768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.740002,44.560001,60.299999,46.580002,5,1,1,0,0,4,4,1,2174,814852.75,0,0,3098.2659 -9493,11696,21314,21313,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.1304779,8.499897,0,1,0,-9,34,0,2,27.137827,0,0,0,51,2,2,1,2,2,2019,1,1,7,0,37,40,15,1,0,1,0,12.349839,12.349839,0,0,0,0,0,0,0,0,0,0,0,5.7660141,0,0,0,60.299999,46.580002,56.740002,44.560001,6,4,2,0,0,4,4,1,2174,814852.75,0,0,3098.2659 -9493,11697,21315,-9,21313,21314,3,1,0,28,2,0,0,0,2,-9,2,1,0,0,3,7.8124552,8.1694832,0,3,0,0,0,-9,0,-884.60791,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,43,15,1,0,-9,1,7.6889038,7.6889038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,5,1,1,0,0,4,3,1,387,50949.895,0,0,1707.8835 -9494,11698,21316,-9,21318,21317,2,1,0,26,2,0,0,0,2,-9,2,1,0,0,3,8.1376343,8.1658812,0,3,0,0,0,-9,0,-1002.0267,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,39,0,15,1,0,-9,1,10.396194,10.396194,0,0,0,0,0,0,0,0,1,1,0,.091163836,0,0,0,46.549999,58.299999,-9,-9,6,1,1,0,0,11,4,1,81,84022.203,0,0,-26.812277 -9494,11699,21317,21318,-9,-9,3,1,1,65,1,0,0,0,3,-9,4,3,0,0,4,0,8.2484264,8.0803699,1,0,-9,9,0,10,59.060673,0,0,0,55,2,3,1,-9,-9,2019,3,1,13,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0900371,7.8701863,0,0,53.330002,53.709999,46.549999,58.299999,4,1,1,0,0,11,5,1,544,631030,0,0,6104.4424 -9494,11699,21318,21317,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,9.2132397,9.3753901,0,1,0,-9,9,0,-10,-133.41107,0,0,0,65,3,4,3,-9,-9,2019,2,3,12,1,30,30,15,1,0,4,0,50.483261,50.483261,0,0,0,0,0,0,0,0,1,1,0,2.0908332,0,0,0,46.549999,58.299999,53.330002,53.709999,6,1,1,0,0,11,5,1,544,631030,0,0,6104.4424 -9495,11700,21319,21320,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.7292547,9.1650848,0,1,0,-9,1,-9,0,-56.353638,-9,0,0,30,1,4,1,-9,-9,2019,1,1,10,1,37,0,15,1,0,1,0,23.447994,23.447994,0,0,0,0,0,0,0,0,0,0,0,.35625747,0,0,0,50,57,19.459999,69.449997,5,4,2,0,0,8,5,1,2047,234515.53,0,0,3854.4287 -9495,11700,21320,21319,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.5153313,8.3695831,0,1,0,1,1,-9,0,91.707321,-9,0,1,30,1,4,1,1,1,2019,1,2,16,4,52,0,15,1,1,1,0,10.845218,10.845218,0,0,0,0,0,0,0,0,0,0,0,5.0859222,0,0,0,19.459999,69.449997,50,57,5,1,1,0,0,8,5,1,2047,234515.53,0,0,3854.4287 -9496,11701,21321,-9,21322,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.88855,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,0,757,57255.457,0,0,3366.4744 -9496,11701,21322,21324,-9,-9,1,1,0,30,1,0,2,0,2,-9,2,1,0,0,5,6.6948323,7.1873074,0,2,0,-9,5,0,2,-42.451801,0,0,1,28,2,3,1,3,3,2019,1,3,6,0,14,16,15,1,0,1,0,6.479701,6.479701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.130001,48.040001,6,1,1,0,0,11,4,0,757,57255.457,0,0,3366.4744 -9496,11701,21323,-9,21322,21324,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.3301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,0,757,57255.457,0,0,3366.4744 -9496,11701,21324,21322,-9,-9,3,1,1,28,1,0,2,0,2,-9,2,1,0,0,3,8.3990316,8.7433825,0,2,0,-9,5,0,-2,-8.4646521,0,1,0,30,2,5,1,-9,-9,2019,1,1,11,3,40,40,15,1,0,1,0,15.418657,15.418657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.130001,48.040001,57.060001,57.759998,6,1,1,0,0,11,4,0,757,57255.457,0,0,3366.4744 -9497,11702,21325,21326,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,8.4932938,8.6677446,0,1,0,-9,37,0,4,55.253735,0,0,0,54,3,4,1,3,3,2019,1,1,18,6,48,50,15,1,1,1,0,13.070774,13.070774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.209999,55.279999,58.150002,52.91,4,1,1,0,1,9,5,1,306,397948,0,0,2860.1699 -9497,11702,21326,21325,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,7.6451249,7.5233374,0,1,0,-9,38,0,-4,184.47479,0,0,0,58,2,3,1,-9,-9,2019,1,2,11,0,24,21,15,1,0,1,0,10.803276,10.803276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,35.209999,55.279999,4,1,1,0,0,9,5,1,306,397948,0,0,2860.1699 -9497,11703,21327,-9,21326,21325,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,8.1170979,7.8995247,0,3,0,0,0,-9,0,-1100.1609,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,20,9,39,40,15,1,1,-9,1,8.6133633,8.6133633,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,39.650002,56.189999,-9,-9,5,1,1,0,0,9,3,1,394,-243298.27,0,0,1735.6417 -9498,11704,21328,21329,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,60,0,-5,66.546379,0,0,0,82,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.93,39.529999,54.790001,55.860001,7,1,1,0,0,13,3,0,2644.5,371727.75,0,0,2272.157 -9498,11704,21329,21328,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,4,0,7.4970427,7.9302392,1,0,-9,60,0,5,2.6149776,-9,0,0,77,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4003525,0,0,54.790001,55.860001,42.93,39.529999,6,1,1,0,0,13,3,0,2644.5,371727.75,0,0,2272.157 -9499,11705,21330,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-1049.9749,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.20292701,0,0,0,34.619999,19.290001,-9,-9,4,1,1,0,0,9,1,0,1177,104453.9,0,0,2024.6456 -9500,11706,21331,-9,21334,21333,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.9597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,0,864.5,-112021.42,0,0,2307.9089 -9500,11706,21332,-9,21334,21333,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.5354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,0,864.5,-112021.42,0,0,2307.9089 -9500,11706,21333,21334,-9,-9,3,1,1,27,1,0,2,0,2,-9,2,1,0,0,4,7.7562909,8.0203695,0,2,0,-9,5,0,-3,26.06576,0,1,0,30,2,3,1,-9,-9,2019,1,1,4,0,35,50,15,1,0,1,0,9.0050011,9.0050011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.18,41.950001,32.139999,57.049999,5,1,1,0,0,7,3,0,864.5,-112021.42,0,0,2307.9089 -9500,11706,21334,21333,-9,-9,1,1,0,30,1,0,2,0,2,-9,2,1,0,0,3,7.4723301,7.3456073,0,2,0,-9,5,0,3,32.736645,0,0,1,27,2,4,1,2,-9,2019,1,3,16,5,16,12,15,1,1,1,0,12.177546,12.177546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.139999,57.049999,55.18,41.950001,2,1,1,0,1,7,3,0,864.5,-112021.42,0,0,2307.9089 -9501,11707,21335,21336,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,5.9667544,7.7304568,7.4765191,1,0,-9,41,0,0,71.059517,0,0,0,65,1,3,3,2,-9,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6620643,7.3989525,0,3,43.349998,52.880001,52,54.509998,6,1,1,0,0,10,3,1,849,1165334,0,0,2550.5181 -9501,11707,21336,21335,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,0,6.9855156,7.2265801,1,0,-9,41,0,0,85.000595,0,0,0,65,2,3,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4327152,7.2748971,0,0,52,54.509998,43.349998,52.880001,6,1,1,0,0,10,3,1,849,1165334,0,0,2550.5181 -9501,11708,21337,-9,21335,21336,3,1,1,33,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1004.4531,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.35,60.970001,-9,-9,2,1,1,0,0,10,1,1,1072,4323.9229,0,0,1361.8402 -9502,11709,21338,21339,-9,-9,1,1,1,71,1,0,0,0,1,-9,1,1,0,0,3,7.0087399,8.0816088,7.8112688,1,0,-9,9,0,13,-9.2446489,0,0,0,58,1,4,1,2,3,2019,1,2,7,0,20,20,15,1,0,1,0,5.3236656,5.3236656,1,0,0,0,0,0,0,0,1,1,0,6.6519241,7.9100227,0,0,53.779999,48.41,54.200001,57.490002,6,1,1,0,0,5,4,1,445,1445964.8,0,0,3731.7788 -9502,11709,21339,21338,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,7.2519817,7.4214301,0,1,0,-9,9,0,-13,67.591721,0,0,0,71,1,3,1,-9,-9,2019,1,1,9,0,18,21,15,1,0,1,0,7.8119326,7.8119326,0,0,0,0,0,0,0,2,1,1,0,5.0386343,0,6.4250026,3,54.200001,57.490002,53.779999,48.41,6,1,1,0,0,5,4,1,445,1445964.8,0,0,3731.7788 -9503,11710,21340,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,0,4,0,6.8042183,6.5320349,3,0,-9,0,-9,0,-993.03247,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9442177,6.6880946,2.8937972,3,57.73,54.529999,-9,-9,6,1,1,0,0,7,2,1,275,59789.273,0,0,2619.9424 -9504,11711,21341,21342,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,2,0,5.7195425,5.3407788,1,0,-9,9,0,-4,-39.076893,0,0,0,68,3,3,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.74843639,5.8346415,0,0,51.34,31.85,51,48,6,1,1,0,0,4,3,1,203,1121060.1,0,0,1232.7568 -9504,11711,21342,21341,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,8.0438519,7.9447494,1,0,-9,9,0,4,-60.833519,0,0,0,64,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5076287,7.935802,0,0,51,48,51.34,31.85,5,1,1,0,0,4,3,1,203,1121060.1,0,0,1232.7568 -9505,11712,21343,21344,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,8.2589321,7.9022369,1,0,-9,32,0,11,175.25624,0,0,0,63,3,5,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1617689,7.9033294,0,0,55.299999,55.599998,60.860001,42.25,7,1,1,0,0,1,3,1,445,708098.63,0,0,1661.1787 -9505,11712,21344,21343,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,32,0,-11,6.0594063,0,0,0,74,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.860001,42.25,55.299999,55.599998,7,1,1,0,1,1,3,1,445,708098.63,0,0,1661.1787 -9506,11713,21345,21346,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,0,5,9.3399343,9.5350361,0,2,0,-9,9,0,0,-55.134903,0,0,0,36,1,4,1,2,2,2019,1,2,6,0,48,48,15,1,0,1,0,37.256405,37.256405,0,0,0,0,0,0,0,0,0,0,0,4.7618012,0,0,0,54.689999,57.470001,46.98,50.200001,6,1,1,0,0,9,5,1,409.33334,489781.81,0,0,6281.2412 -9506,11713,21346,21345,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,0,4,7.9625335,8.0945883,0,2,0,-9,9,0,0,47.390503,0,0,1,36,1,5,1,-9,-9,2019,1,1,18,4,24,0,15,1,1,1,0,19.898388,19.898388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,50.200001,54.689999,57.470001,6,1,1,0,0,9,5,1,409.33334,489781.81,0,0,6281.2412 -9506,11713,21347,-9,21346,21345,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.63116,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,409.33334,489781.81,0,0,6281.2412 -9507,11714,21348,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,7.9820757,8.145401,0,3,0,0,0,-9,0,-1174.208,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,37,38,15,1,0,-9,0,7.8962512,7.8962512,0,0,0,0,0,0,0,0,0,0,0,3.54984,0,0,0,46.439999,59.619999,-9,-9,6,1,1,0,0,1,4,0,1450,-43883.977,0,0,2329.73 -9507,11715,21349,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.6371331,7.8159976,0,3,0,-9,0,-9,0,-1013.8581,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,37,0,15,1,0,-9,0,6.3728685,6.3728685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,4,6,0,0,1,3,0,1287,14377.441,0,0,2048.5564 -9508,11716,21350,21351,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,2,8.5227308,8.7917442,0,1,0,-9,6,0,-5,35.756344,0,0,0,57,3,3,1,-9,-9,2019,1,1,16,4,40,45,15,1,1,1,0,19.601204,19.601204,0,0,0,0,0,0,0,7,0,0,0,6.5078726,0,15.429422,3,48.689999,45.700001,58.869999,37.889999,6,1,1,0,0,2,5,1,962,822270.94,0,0,3107.1636 -9508,11716,21351,21350,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,0,3,7.2706552,7.5457716,0,1,0,-9,6,0,5,-70.154739,0,0,0,52,1,2,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,3.7267783,3.7267783,0,0,0,0,0,0,0,7,0,0,0,0,0,1.7652174,3,58.869999,37.889999,48.689999,45.700001,5,1,1,0,0,2,5,1,962,822270.94,0,0,3107.1636 -9508,11717,21352,-9,21350,21351,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.1929541,8.0427837,0,3,0,0,0,-9,0,-985.31549,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,42,24,15,1,0,-9,1,7.6057367,7.6057367,0,0,0,0,0,0,0,0,0,0,0,3.7172909,0,0,0,46.689999,58.349998,-9,-9,6,1,1,0,0,2,3,1,903,105440.29,0,0,1861.4944 -9509,11718,21353,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,2,0,6.4196968,6.4130034,3,0,0,0,-9,0,-995.33087,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.8914313,0,2.448287,0,0,1,1,0,3.2554462,5.9534688,0,0,66.940002,15.48,-9,-9,5,1,1,0,0,9,2,0,205,12501.527,0,0,2735.3782 -9510,11719,21354,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,0,4,7.9358015,7.7420554,0,3,0,0,0,-9,0,-1057.3583,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,48,38,15,1,0,-9,0,5.6466618,5.6466618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,3,0,778,294474.38,0,0,740.40735 -9511,11720,21355,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-946.42993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.3330259,3,22.549999,55.889999,-9,-9,3,3,4,1,1,8,1,0,365,-123941.19,0,0,-187.63995 -9512,11721,21356,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,1,3,0,5.7066035,6.0564055,3,0,0,0,-9,0,-1160.3236,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0459456,0,0,38.400002,33.459999,-9,-9,6,2,3,0,0,8,2,0,126,582090.44,0,0,2367.7808 -9513,11722,21357,21358,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,7.9380913,7.7262001,0,2,0,-9,17,-9,2,-42.554291,-9,0,0,47,2,4,1,-9,-9,2019,1,2,9,0,40,0,15,1,0,1,0,5.3753061,5.3753061,0,0,0,0,0,0,0,0,1,1,0,4.1679564,0,0,0,48.450001,49.459999,52,55,5,1,1,0,0,4,4,1,2138.5,351226.38,0,0,3692.0764 -9513,11722,21358,21357,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.3135729,8.3662357,0,2,0,-9,1,-9,-2,-3.7564707,-9,0,0,49,1,3,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,13.709248,13.709248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48.450001,49.459999,6,1,1,0,0,4,4,1,2138.5,351226.38,0,0,3692.0764 -9514,11723,21359,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,4,8.4297981,8.4882965,0,3,0,0,0,-9,0,-940.9187,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,37,15,1,0,-9,0,14.783141,14.783141,0,0,0,0,0,0,0,0,0,0,0,1.1064631,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,366,51149.234,0,0,3862.7036 -9515,11724,21360,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,3,3,0,0,3,0,5.9522033,5.4422774,3,0,0,0,-9,0,-944.06274,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,45,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.443881,5.6883693,0,0,51,40,-9,-9,4,1,1,1,0,2,2,1,1025,126173.32,0,0,1889.8002 -9516,11725,21361,-9,-9,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.7662168,7.6490574,0,3,0,0,0,-9,0,-956.02423,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,38,0,15,1,0,-9,1,8.0562153,8.0562153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.959999,48.029999,-9,-9,4,1,1,0,0,5,3,1,699,-69315.773,0,0,725.31897 -9516,11726,21362,-9,-9,-9,4,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,8.0760279,7.9176607,0,3,0,0,0,-9,0,-1039.0372,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,37,38,15,1,0,-9,1,9.0096483,9.0096483,0,0,0,0,0,0,0,0,0,0,0,1.5615547,0,0,0,38.34,62.119999,-9,-9,5,1,1,0,0,5,3,1,828,134281.14,0,0,869.75385 -9517,11727,21363,21364,-9,-9,1,1,0,79,1,0,0,0,3,-9,8,3,1,1,3,0,6.1636133,6.3398876,1,0,-9,59,0,1,-59.849857,0,0,0,78,2,4,1,3,-9,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5602427,0,0,52,45,56.57,57.779999,6,1,1,0,0,11,2,1,1291.5,143749.92,0,0,1641.8679 -9517,11727,21364,21363,-9,-9,2,1,1,78,1,0,0,0,2,-9,1,1,0,0,4,5.4525685,6.6268797,6.9555259,1,0,-9,59,0,-1,-26.923462,-9,0,0,79,3,3,3,3,3,2019,2,1,4,0,3,0,15,1,0,3,0,7.8748994,7.8748994,0,0,0,0,0,0,0,71.5,1,1,0,0,7.3534842,74.364517,1,56.57,57.779999,52,45,6,1,1,0,0,11,2,1,1291.5,143749.92,0,0,1641.8679 -9518,11728,21365,-9,-9,-9,2,1,1,61,3,0,0,0,2,-9,4,3,0,0,1,6.0553322,7.2598252,6.7009988,3,0,0,0,-9,0,-923.552,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.8852444,0,0,36.310001,35.310001,-9,-9,3,1,1,0,0,7,2,0,530,750420.63,0,0,866.78668 -9519,11729,21366,21367,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,0,3,0,5.7292304,6.1084104,1,0,-9,28,0,-6,7.5882258,0,0,0,82,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,.68449491,0,0,0,0,0,1,1,0,8.3424034,6.3298082,0,0,48.52,39.52,42.310001,54.619999,6,1,1,0,0,9,4,1,395,1655478.3,0,0,7612.9102 -9519,11729,21367,21366,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,4,0,8.6551895,8.7218971,1,0,-9,29,0,6,-65.854797,0,0,0,76,1,3,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.1988297,8.538764,15.731064,3,42.310001,54.619999,48.52,39.52,6,1,1,0,0,9,4,1,395,1655478.3,0,0,7612.9102 -9520,11730,21368,-9,-9,-9,1,1,0,21,3,0,0,0,2,-9,2,1,0,0,3,7.8430395,7.8988581,0,3,0,-9,0,-9,0,-903.01361,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,47,0,15,1,0,-9,0,6.1577396,6.1577396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.240002,43.709999,-9,-9,2,2,3,0,0,9,3,1,206,-175627.53,0,0,1072.71 -9521,11731,21369,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-960.71198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,52.880001,-9,-9,6,1,1,0,0,13,1,0,209,118674.98,0,0,1755.9095 -9522,11732,21370,-9,21371,21373,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.5208,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,556,1651022.9,0,0,5693.1514 -9522,11732,21371,21373,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,7.7767305,8.0148191,0,2,0,-9,7,0,3,-51.888649,0,0,1,40,1,3,1,1,2,2019,1,2,10,2,22,22,15,1,0,1,0,14.191751,14.191751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.139999,42.080002,57.330002,53.459999,6,1,1,0,0,9,5,1,556,1651022.9,0,0,5693.1514 -9522,11732,21372,-9,21371,21373,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.826,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,556,1651022.9,0,0,5693.1514 -9522,11732,21373,21371,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,3,9.542654,9.5934086,0,2,0,-9,7,0,-3,11.980002,0,0,0,43,1,3,1,2,3,2019,1,1,7,1,61,44,15,1,0,1,0,26.144073,26.144073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,55.139999,42.080002,6,1,1,0,0,9,5,1,556,1651022.9,0,0,5693.1514 -9523,11733,21374,21375,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,4,8.2009859,8.2212725,0,1,0,-9,5,0,1,-58.342861,0,0,0,65,2,3,3,3,2,2019,2,2,5,0,40,40,15,1,0,3,0,11.123135,11.123135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.66,43.860001,36.93,41.130001,4,2,3,0,0,4,3,1,685,-12961.082,0,0,3139.8826 -9523,11733,21375,21374,-9,-9,2,1,0,65,1,0,0,0,2,-9,6,3,0,0,3,6.240344,6.2063861,0,1,0,-9,5,0,-1,-64.037109,0,0,0,66,2,4,1,3,2,2019,3,1,15,3,10,11,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,41.130001,45.66,43.860001,5,2,3,0,0,4,3,1,685,-12961.082,0,0,3139.8826 -9524,11734,21376,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,3,8.8958092,8.880147,0,3,0,0,0,-9,0,-1120.813,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,38,15,1,0,-9,0,14.301888,14.301888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.119999,42.099998,-9,-9,5,1,1,0,0,9,5,1,137,32015.594,0,0,3985.4236 -9525,11735,21377,21379,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,1,2,8.1654348,7.8716159,0,2,0,-9,24,0,4,-31.468483,0,0,1,39,1,3,1,1,1,2019,1,1,13,1,17,17,15,1,0,1,0,12.50387,12.50387,0,0,0,0,0,0,0,27.5,1,1,0,3.5417807,0,27.751245,3,47.560001,48.93,48.709999,51.810001,6,1,1,0,0,4,4,1,311.5,377010.31,0,0,4143.0576 -9525,11735,21378,-9,21377,21379,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.4451,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,4,1,311.5,377010.31,0,0,4143.0576 -9525,11735,21379,21377,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,3,8.7789412,8.6372366,0,2,0,-9,24,0,-4,-19.601166,0,0,0,43,2,2,1,2,2,2019,1,2,8,0,55,56,15,1,0,1,0,17.270079,17.270079,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.567657,3,48.709999,51.810001,47.560001,48.93,6,1,1,0,0,4,4,1,311.5,377010.31,0,0,4143.0576 -9525,11735,21380,-9,21377,21379,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.429,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,311.5,377010.31,0,0,4143.0576 -9526,11736,21381,21382,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,5.6492209,8.008338,7.1483107,1,0,-9,40,0,0,-136.21199,0,0,0,62,2,3,1,3,3,2019,1,1,6,0,5,5,15,1,0,1,0,9.3604612,9.3604612,0,0,0,0,0,0,0,0,0,0,0,7.1745572,6.8638139,0,0,60.119999,54.799999,56.52,48.310001,6,1,1,0,0,2,5,1,624,1512742.8,0,0,6301.0703 -9526,11736,21382,21381,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.9261427,9.3225489,7.4890332,1,0,-9,10,0,0,174.84241,0,0,0,62,2,4,1,3,3,2019,1,2,9,0,40,40,15,1,0,1,0,31.761816,31.761816,0,0,0,0,0,0,0,0,0,0,0,3.7438111,7.6850863,0,0,56.52,48.310001,60.119999,54.799999,6,1,1,0,0,2,5,1,624,1512742.8,0,0,6301.0703 -9527,11737,21383,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,7.7967658,7.7937245,3,0,0,0,-9,0,-996.9389,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8335674,7.7333589,0,0,53,44,-9,-9,6,1,1,0,0,7,3,1,288,498440.91,0,0,1208.478 -9528,11738,21384,-9,21385,-9,3,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-934.3631,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,0,507,-76034.5,0,0,1535.4784 -9528,11738,21385,-9,-9,-9,1,1,0,20,2,2,2,0,2,-9,3,3,0,0,4,5.6362534,5.6911488,0,4,0,0,0,-9,0,-910.14478,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,7,7,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.240002,54.810001,-9,-9,5,1,1,1,0,13,2,0,507,-76034.5,0,0,1535.4784 -9528,11738,21386,-9,21385,-9,2,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.2679,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,2,0,507,-76034.5,0,0,1535.4784 -9529,11739,21387,21389,-9,-9,1,1,0,29,1,0,1,0,1,-9,2,1,0,0,3,6.2901416,6.4462662,0,2,0,-9,6,0,-1,104.02384,0,1,1,30,1,4,1,1,1,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,57.16,56.150002,6,1,1,0,0,7,5,1,592,233665.3,0,0,2958.0591 -9529,11739,21388,-9,21387,21389,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.3565,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,592,233665.3,0,0,2958.0591 -9529,11739,21389,21387,-9,-9,2,1,1,30,1,0,1,0,1,-9,2,1,0,0,4,9.0084887,8.8585968,0,2,0,-9,6,0,1,-188.21178,0,0,0,29,1,3,1,-9,-9,2019,1,1,9,0,43,44,15,1,0,1,0,20.201904,20.201904,0,0,0,0,0,0,0,0,1,1,0,3.8874149,0,0,0,57.16,56.150002,52,54.509998,6,1,1,0,0,7,5,1,592,233665.3,0,0,2958.0591 -9530,11740,21390,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,5,8.1452713,8.1719351,0,1,0,-9,2,0,3,31.111874,0,1,1,-9,-9,-9,-9,3,3,2019,1,2,8,0,48,42,15,1,0,-9,0,7.9813833,7.9813833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.439999,40.669998,6,1,1,0,0,5,4,1,1001,-207586.86,0,0,244.21115 -9530,11741,21391,-9,-9,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,2,7.7162743,7.4399958,0,1,0,-9,2,0,-3,60.465969,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,1,9,1,39,37,15,1,0,-9,0,8.0544567,8.0544567,0,0,0,0,0,0,0,0,0,0,0,3.0500145,0,0,0,56.439999,40.669998,48.77,60.16,5,1,1,0,0,5,4,1,430,-100620.64,0,0,1400.8203 -9531,11742,21392,-9,21393,21394,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,4,8.1263437,8.3023672,0,3,0,0,0,-9,0,-949.08887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,54,0,15,1,1,-9,1,5.9211869,5.9211869,0,0,0,0,0,0,0,2,1,1,0,0,0,1.8079902,3,49,47.580002,-9,-9,5,1,1,0,0,12,4,0,1776,426212.81,0,0,1339.7705 -9531,11743,21393,21394,-9,-9,3,1,0,74,1,0,0,0,3,-9,4,3,0,1,1,0,4.6877909,4.896987,1,0,-9,4,0,0,-4.1681685,0,0,0,74,3,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,18.939774,0,0,0,0,0,1,1,0,0,4.7700191,0,0,54.810001,10.49,46.619999,55.599998,4,1,1,0,0,12,1,0,413,508303.06,0,0,1392.892 -9531,11743,21394,21393,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,4.349606,4.2875547,1,0,-9,4,0,0,-47.64534,0,0,0,74,3,1,3,-9,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.2199316,4.5643902,21.420731,1,46.619999,55.599998,54.810001,10.49,4,1,1,0,0,12,1,0,413,508303.06,0,0,1392.892 -9531,11744,21395,-9,-9,-9,4,1,0,21,2,0,0,0,3,-9,2,1,0,0,5,7.676024,7.6011648,0,3,0,0,0,-9,0,-999.97113,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,39,40,15,1,0,-9,0,5.6674409,5.6674409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.23,33.709999,-9,-9,1,1,1,0,0,12,3,0,459,0,0,0,1915.6145 -9532,11745,21396,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,4,3,0,0,2,0,4.5114083,4.2463169,3,0,0,0,-9,0,-1000.6707,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3345785,0,0,41.110001,35.279999,-9,-9,4,1,1,0,0,2,2,0,615,-119915.41,0,0,302.94882 -9533,11746,21397,21398,-9,-9,2,1,1,40,1,1,2,0,2,-9,2,1,0,0,3,8.4875355,8.6213589,0,2,0,-9,4,0,6,-25.287008,0,0,0,34,1,3,1,-9,-9,2019,1,1,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.919998,54.299999,47.07,53.970001,4,1,1,0,0,2,4,1,299.5,662781.31,0,0,4134.4238 -9533,11746,21398,21397,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,0,3,8.3803043,8.5783386,0,2,0,-9,4,0,-6,-3.6988742,0,0,1,40,2,3,1,-9,-9,2019,1,2,12,0,37,37,15,1,0,1,0,13.216316,13.216316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.970001,46.919998,54.299999,5,1,1,0,0,2,4,1,299.5,662781.31,0,0,4134.4238 -9533,11746,21399,-9,21398,21397,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.5238,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,4,1,299.5,662781.31,0,0,4134.4238 -9533,11746,21400,-9,21398,21397,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.15411,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,1,299.5,662781.31,0,0,4134.4238 -9534,11747,21401,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,8.8752375,9.5467262,0,3,0,-9,0,-9,0,-969.47296,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,24,10,35,0,15,1,1,-9,0,35.566807,35.566807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.709999,47.209999,-9,-9,5,1,1,0,0,7,5,1,247,-89314.289,0,0,2742.5115 -9535,11748,21402,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,6.2238836,6.148932,3,0,0,0,-9,0,-1050.0759,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8978324,5.9603858,0,0,41.09,46.119999,-9,-9,6,1,1,0,0,4,2,0,983,51645.613,0,0,1871.5247 -9536,11749,21403,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,0,4,0,7.7334356,7.9053698,3,0,0,0,-9,0,-1057.6971,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4733815,7.6592813,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,13,3,1,1065,764523.38,0,0,994.03217 -9537,11750,21404,21405,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,0,5,7.3434029,7.3407493,0,2,0,-9,23,0,2,19.359421,0,0,0,50,1,3,1,3,2,2019,1,1,6,0,20,20,15,1,0,1,0,10.193913,10.193913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,48.360001,52.169998,6,1,1,0,0,13,4,1,642.5,1067565.5,0,0,2309.0352 -9537,11750,21405,21404,-9,-9,1,1,1,50,1,0,1,0,1,-9,1,1,0,0,3,8.7387972,8.6993227,0,2,0,-9,22,0,-2,35.12524,-9,0,0,52,2,5,1,1,1,2019,1,2,10,0,56,0,15,1,0,1,0,8.376667,8.376667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.360001,52.169998,62.389999,56.709999,3,1,1,0,0,13,4,1,642.5,1067565.5,0,0,2309.0352 -9538,11751,21406,21407,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.1836519,7.0981107,1,0,-9,58,0,-2,71.757423,0,0,0,80,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9067345,7.0135951,0,0,55.529999,51.549999,62.75,34.560001,6,1,1,0,0,4,2,1,1576.5,675566.5,0,0,276.61044 -9538,11751,21407,21406,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,2,-48.478424,0,0,0,78,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.2261456,0,0,0,62.75,34.560001,55.529999,51.549999,7,1,1,0,0,4,2,1,1576.5,675566.5,0,0,276.61044 -9539,11752,21408,21409,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,1,-69.454041,0,0,0,69,2,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,10.931936,0,0,0,0,0,1,1,0,2.7391508,0,0,0,46.849998,32.5,64.639999,35.400002,4,1,1,0,0,1,2,1,789,577037.5,0,0,1519.4685 -9539,11752,21409,21408,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,6.7635102,6.960485,1,0,-9,48,0,-1,91.097534,0,0,0,70,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7429175,6.8891525,0,0,64.639999,35.400002,46.849998,32.5,6,1,1,0,0,1,2,1,789,577037.5,0,0,1519.4685 -9540,11753,21410,21411,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,6.3618956,6.0677466,1,0,-9,34,0,12,3.5258529,0,0,0,59,2,4,1,2,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4812322,6.227951,0,0,53.049999,18.049999,57.16,56.150002,4,1,1,0,0,9,3,1,709.5,1132456.3,0,0,3115.0972 -9540,11753,21411,21410,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.8111506,7.6976895,0,1,0,-9,35,0,-12,1.4683993,0,0,0,71,2,2,3,3,2,2019,2,1,6,0,20,20,15,1,0,4,0,16.11088,16.11088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,53.049999,18.049999,6,1,1,0,0,9,3,1,709.5,1132456.3,0,0,3115.0972 -9540,11754,21412,-9,21411,21410,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,8.360055,8.4028425,0,3,0,0,0,-9,0,-950.73199,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,0,15,1,0,-9,1,14.488581,14.488581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.900002,57.009998,-9,-9,2,1,1,0,0,9,4,1,321,6833.4399,0,0,2121.9219 -9540,11755,21413,-9,21411,21410,5,1,0,27,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1085.8424,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,40,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.339996,-9,-9,3,1,1,1,0,9,1,1,353,132134.13,0,0,0 -9540,11756,21414,-9,21411,21410,4,1,0,20,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-955.06671,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,25,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,1,1,491,-46858.547,0,0,1231.7688 -9541,11757,21415,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,4,0,8.3036737,8.3605566,3,0,0,0,-9,0,-1008.7982,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1229887,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,4,1,1715,1331082.5,0,0,1152.6404 -9542,11758,21416,21417,-9,-9,2,1,0,49,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,10,0,4,0,0,0,0,45,2,2,3,-9,-9,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.740002,17.379999,28.379999,50.869999,2,1,1,0,0,11,1,0,463,-37071.672,0,0,1149.8673 -9542,11758,21417,21416,-9,-9,1,1,1,45,1,0,0,0,2,-9,6,3,0,1,2,0,0,0,1,0,-9,10,0,-4,0,0,0,0,49,2,1,3,2,2,2019,4,2,20,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,0,1,1.4342259,0,11.067997,2,28.379999,50.869999,35.740002,17.379999,2,4,2,0,0,11,1,0,463,-37071.672,0,0,1149.8673 -9543,11759,21418,21419,-9,-9,1,1,0,27,1,0,0,0,1,1,8,3,1,1,1,0,0,0,1,0,-9,3,0,-8,-33.104481,-9,1,1,35,2,4,1,2,2,2019,3,2,27,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.830002,16.67,59.529999,56.439999,6,1,1,0,0,5,3,1,697,242306.59,0,0,1670.2184 -9543,11759,21419,21418,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,0,4,8.15728,8.2358894,0,1,0,-9,3,0,8,44.603645,0,0,0,27,1,1,3,-9,-9,2019,2,1,8,0,37,40,15,1,0,3,0,10.501743,10.501743,0,0,0,0,0,0,0,42,1,1,0,0,0,37.004494,1,59.529999,56.439999,37.830002,16.67,6,1,1,0,0,5,3,1,697,242306.59,0,0,1670.2184 -9543,11760,21420,-9,-9,-9,3,1,1,75,3,0,0,0,1,-9,4,3,0,1,2,0,7.5709724,8.0038557,3,0,0,0,-9,0,-1068.5923,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,48.302814,0,1,1,0,4.8624845,7.8782029,0,0,36.509998,28.129999,-9,-9,4,1,1,0,0,5,4,1,391,633106.56,0,0,2565.0884 -9544,11761,21421,21422,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,5.3046288,4.8194866,1,0,-9,50,0,-4,49.033497,0,0,0,72,1,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0094295,0,0,55.189999,54.259998,49.84,48.57,7,1,1,0,0,12,3,1,149.5,1090175.3,0,0,2624.6235 -9544,11761,21422,21421,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,8.0257721,8.1614056,1,0,-9,50,0,4,-32.699966,0,0,0,68,3,4,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.059052,8.086133,0,0,49.84,48.57,55.189999,54.259998,6,1,1,0,0,12,3,1,149.5,1090175.3,0,0,2624.6235 -9545,11762,21423,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,4,0,7.3546076,7.3830948,3,0,-9,0,-9,0,-997.86865,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.8937707,7.2894416,13.906651,3,40.23,57.360001,-9,-9,6,4,5,0,0,8,3,1,356,454154.22,0,0,4088.2236 -9545,11763,21424,-9,-9,21423,2,1,1,56,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-1056.5886,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,36,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.52,35.720001,-9,-9,1,2,3,0,1,8,1,1,1062,-149628.25,0,0,175.70802 -9546,11764,21425,21427,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,7.1542921,7.3006949,0,2,0,-9,16,0,-4,45.939903,0,0,0,51,2,3,1,3,2,2019,1,2,11,0,23,23,15,1,0,1,0,7.6882038,7.6882038,0,0,0,0,0,0,0,0,1,1,0,7.0540943,0,0,0,54.369999,54.799999,52,54.509998,6,1,1,0,0,4,5,1,734.66669,1549377.5,0,0,4117.2085 -9546,11764,21426,-9,21425,21427,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-931.3089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,5,1,734.66669,1549377.5,0,0,4117.2085 -9546,11764,21427,21425,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,8.8833904,8.8950138,0,2,0,-9,16,0,4,-7.4910154,0,0,0,47,2,3,1,2,2,2019,1,1,7,0,39,40,15,1,0,1,0,25.721613,25.721613,0,0,0,0,0,0,0,0,1,1,0,5.9114232,0,0,0,52,54.509998,54.369999,54.799999,6,1,1,0,0,4,5,1,734.66669,1549377.5,0,0,4117.2085 -9547,11765,21428,21429,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.4630651,8.5100222,0,1,0,-9,7,0,2,-73.161087,0,0,0,43,2,4,1,3,2,2019,1,2,6,0,45,45,15,1,0,1,0,12.823489,12.823489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.919998,49.389999,50,55,6,1,1,0,0,11,5,1,1034,432623.03,0,0,3306.0132 -9547,11765,21429,21428,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,7.8934336,8.3232794,0,1,0,-9,7,0,-2,12.284798,0,0,1,45,2,4,1,3,2,2019,1,1,10,1,39,39,15,1,0,1,0,9.6435652,9.6435652,0,0,0,0,0,0,0,0,1,1,0,1.5437934,0,0,0,50,55,56.919998,49.389999,6,1,1,0,0,11,5,1,1034,432623.03,0,0,3306.0132 -9547,11766,21430,-9,21429,21428,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,7.5992613,6.9551187,0,3,0,0,0,-9,0,-969.21497,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,20,28,15,1,0,-9,1,9.0831985,9.0831985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,11,3,1,633,-51918.051,0,0,959.41962 -9548,11767,21431,-9,-9,-9,1,1,0,68,2,0,0,0,1,-9,2,1,0,0,4,6.6518903,7.556592,6.7589364,3,0,0,0,-9,0,-984.90692,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,14,14,15,1,0,-9,0,8.2736835,8.2736835,0,0,0,0,0,0,0,0,1,1,0,0,6.5602875,0,0,52.77,44.599998,-9,-9,5,1,1,0,1,2,3,0,2615,555672.44,0,0,2032.3085 -9549,11768,21432,-9,21434,21433,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.14136,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,1385.25,687344.5,0,0,3483.6968 -9549,11768,21433,21434,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.7098589,8.6092672,5.5383229,2,0,-9,8,0,0,95.145172,0,0,0,43,2,3,1,2,1,2019,1,2,7,0,48,38,15,1,0,1,0,12.215755,12.215755,0,0,0,0,0,0,0,0,1,1,0,4.5942998,0,0,0,54.119999,42.369999,49.689999,52.990002,6,1,1,0,0,9,5,1,1385.25,687344.5,0,0,3483.6968 -9549,11768,21434,21433,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,3,8.3093405,8.4603071,0,2,0,-9,8,0,0,45.760132,0,0,1,43,1,4,1,-9,-9,2019,1,1,9,0,37,36,15,1,0,1,0,14.73122,14.73122,0,0,0,0,0,0,0,0,1,1,0,1.5866227,0,0,0,49.689999,52.990002,54.119999,42.369999,6,1,1,0,0,9,5,1,1385.25,687344.5,0,0,3483.6968 -9549,11768,21435,-9,21434,21433,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.9151,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,1385.25,687344.5,0,0,3483.6968 -9550,11769,21436,21437,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,2,8.1616602,7.8654633,0,1,0,-9,3,0,4,22.054678,0,0,0,26,2,2,1,-9,-9,2019,1,1,11,0,40,42,15,1,0,1,0,10.376455,10.376455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,35.610001,46.380001,42.580002,3,1,1,0,0,5,4,0,724.5,3322.0781,0,0,1883.3625 -9550,11769,21437,21436,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,2,7.3491297,7.5629921,0,1,0,-9,3,0,-4,-35.393337,0,1,1,30,2,2,1,3,-9,2019,1,2,13,1,30,40,15,1,0,1,0,6.7491651,6.7491651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.380001,42.580002,52.23,35.610001,5,1,1,0,1,5,4,0,724.5,3322.0781,0,0,1883.3625 -9551,11770,21438,21439,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,1,6.498414,6.5416598,0,1,0,-9,1,-9,-12,-61.923794,-9,0,0,64,2,2,1,3,2,2019,1,2,21,6,36,0,15,1,1,1,0,1.860067,1.860067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.75,11.85,42.330002,30.67,3,1,1,0,0,7,3,1,1090,340301.97,0,0,685.05603 -9551,11770,21439,21438,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,7.3807383,7.5279937,3.1378644,1,0,-9,1,-9,12,-18.882877,-9,0,0,52,1,1,1,2,3,2019,1,1,14,2,21,0,15,1,0,1,0,7.7479415,7.7479415,0,0,0,0,0,0,0,0,0,0,0,0,3.7417333,0,0,42.330002,30.67,54.75,11.85,5,1,1,0,0,7,3,1,1090,340301.97,0,0,685.05603 -9552,11771,21440,21441,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,7.9358525,8.2810431,1,0,-9,33,0,-4,-1.4646839,0,0,0,65,3,2,1,3,3,2019,3,1,14,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.692039,7.6733499,0,0,55.189999,54.259998,42.450001,37.220001,6,1,1,0,0,13,5,1,198.5,218604.11,0,0,2689.3379 -9552,11771,21441,21440,-9,-9,1,1,1,65,1,0,0,0,3,-9,1,1,0,0,2,8.4592772,8.828455,0,1,0,-9,33,0,4,-111.49685,0,0,0,61,2,4,3,3,3,2019,2,2,13,1,35,60,15,1,0,4,0,15.468888,15.468888,1,0,0,0,0,0,0,0,1,1,0,2.5133944,0,0,0,42.450001,37.220001,55.189999,54.259998,6,1,1,0,0,13,5,1,198.5,218604.11,0,0,2689.3379 -9552,11772,21442,-9,21440,21441,3,1,0,31,3,0,0,0,2,-9,2,1,0,0,4,7.7269897,7.8562288,0,3,0,0,0,-9,0,-1012.4271,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,52,36,15,1,0,-9,1,4.6610622,4.6610622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,13,3,1,137,-139806.17,0,0,1104.5627 -9553,11773,21443,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,6.3335247,5.9273582,3,0,0,0,-9,0,-1048.6459,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4127355,0,0,51,46,-9,-9,6,1,1,0,0,12,2,1,473,-4209.604,0,0,-713.86877 -9554,11774,21444,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,9.1488085,8.8135815,5.8965788,3,0,0,0,-9,0,-966.46283,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,60,55,15,1,0,-9,0,15.490774,15.490774,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3006868,18.948425,3,44.259998,59.43,-9,-9,6,1,1,0,0,2,5,1,684,772903.31,0,0,1981.9731 -9555,11775,21445,-9,21448,21447,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1013.7805,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,4,1,249,343471.13,0,0,3785.4224 -9555,11775,21446,-9,21448,21447,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1069.7256,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,7,4,1,249,343471.13,0,0,3785.4224 -9555,11775,21447,21448,-9,-9,2,1,1,43,1,0,2,0,3,-9,2,1,0,0,4,8.8823185,8.4009676,0,2,0,-9,8,0,5,27.720772,0,0,0,38,2,5,1,-9,-9,2019,1,1,9,1,50,40,15,1,0,1,0,13.688805,13.688805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.240002,58.02,6,1,1,0,0,7,4,1,249,343471.13,0,0,3785.4224 -9555,11775,21448,21447,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,5,7.5457921,7.5761118,0,2,0,-9,18,0,-5,165.73802,0,0,1,43,3,4,1,-9,3,2019,1,2,7,0,22,25,15,1,0,1,0,9.1929398,9.1929398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.240002,58.02,51,56,6,1,1,0,0,7,4,1,249,343471.13,0,0,3785.4224 -9556,11776,21449,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.2480831,8.366971,0,3,0,0,0,-9,0,-1019.723,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,1,60,0,15,1,0,-9,0,8.0358238,8.0358238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,11,4,1,1358,-135504.81,0,0,1147.8047 -9557,11777,21450,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,4,7.9306445,7.6737404,0,3,0,0,0,-9,0,-854.8288,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,1,8.4883413,8.4883413,0,0,0,0,0,0,0,0,1,1,0,4.5367818,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,1,4,1,283,68759.938,0,0,1596.6667 -9558,11778,21451,21452,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,3,7.7452669,7.4199581,0,1,0,-9,30,0,-1,-68.051773,0,0,0,55,1,4,1,3,3,2019,1,2,12,0,25,27,15,1,0,1,0,11.073685,11.073685,0,0,0,0,0,0,0,0,0,0,0,3.1385641,0,0,0,36.139999,59.139999,39.23,55.950001,4,1,1,0,0,9,5,1,599,2700761,0,0,6388.4629 -9558,11778,21452,21451,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,9.5673113,9.6354618,0,1,0,-9,27,0,1,-29.6085,0,0,0,54,1,3,1,2,2,2019,1,1,21,9,46,48,15,1,1,1,0,35.144497,35.144497,0,0,0,0,0,0,0,0,0,0,0,6.9540229,0,0,0,39.23,55.950001,36.139999,59.139999,5,1,1,0,0,9,5,1,599,2700761,0,0,6388.4629 -9558,11779,21453,-9,21451,21452,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,7.9918537,8.1862507,0,3,0,0,0,-9,0,-957.87622,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,40,26,15,1,0,-9,1,9.0941439,9.0941439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,50.73,-9,-9,6,1,1,0,0,9,4,1,166,14684.811,0,0,1508.0647 -9558,11780,21454,-9,21451,21452,4,1,1,20,2,0,0,1,2,0,7,2,0,0,5,0,6.2192149,6.743711,3,0,0,0,-9,0,-971.06091,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8597736,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,9,2,1,94,-237654.28,0,0,480.29434 -9559,11781,21455,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,0,5,8.8023911,8.6410246,5.8950057,3,0,0,0,-9,0,-1069.4683,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,42,15,1,0,-9,0,18.522598,18.522598,0,0,0,0,0,0,0,0,0,0,0,6.4574652,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,8,5,1,406,842724.63,0,0,3083.1448 -9560,11782,21456,-9,21458,21457,6,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.3225,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,3,1,342.66666,26418.043,0,0,6902.0088 -9560,11782,21457,21458,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,3,7.2623591,7.4046168,0,2,0,-9,26,0,-1,63.607265,0,0,0,48,2,2,1,2,2,2019,1,1,11,0,50,60,15,1,0,1,0,3.5128515,3.5128515,0,0,0,0,0,0,0,0,1,1,0,8.6815424,0,0,0,51.02,49.389999,60.529999,48.349998,4,2,3,0,0,8,3,1,342.66666,26418.043,0,0,6902.0088 -9560,11782,21458,21457,-9,-9,1,1,0,48,1,0,3,0,2,-9,1,1,0,0,2,8.8761845,8.457098,0,2,0,-9,26,0,1,83.886604,0,0,0,47,1,3,1,3,3,2019,1,2,9,0,50,35,15,1,0,1,0,15.586983,15.586983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,48.349998,51.02,49.389999,7,2,3,0,0,8,3,1,342.66666,26418.043,0,0,6902.0088 -9560,11783,21459,-9,21458,21457,3,1,1,23,2,0,3,0,1,-9,2,1,0,0,4,8.8473463,8.718812,0,3,0,0,0,-9,0,-813.71222,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,37,15,1,0,-9,1,12.454902,12.454902,0,0,0,0,0,0,0,0,1,1,0,2.5112686,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,5,1,3236,-126775.72,0,0,2812.72 -9560,11784,21460,-9,21458,21457,4,1,0,18,2,0,3,1,2,0,7,2,0,0,4,0,6.2216759,6.2823153,3,0,0,0,-9,0,-1058.7064,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9580259,0,0,0,51.77,58.57,-9,-9,6,2,3,0,0,8,5,1,109,238539.98,0,0,606.91852 -9561,11785,21461,21462,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,0,4,8.6912575,8.7875328,0,1,0,-9,26,0,8,-24.26066,0,0,0,47,2,3,1,2,2,2019,1,1,7,0,85,80,15,1,0,1,0,9.0547628,9.0547628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,17.82,48.810001,6,1,1,0,0,6,5,1,365,182896.22,0,0,3130.0281 -9561,11785,21462,21461,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,8.2556267,8.1285057,0,1,0,-9,23,0,-8,29.824877,0,0,0,55,3,4,1,2,2,2019,1,2,26,11,48,46,15,1,1,1,0,7.9417624,7.9417624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.82,48.810001,57.16,56.150002,3,1,1,0,0,6,5,1,365,182896.22,0,0,3130.0281 -9561,11786,21463,-9,21462,21461,3,1,0,27,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-885.68451,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,32,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9038839,0,0,0,23.809999,46.32,-9,-9,3,1,1,1,0,6,1,1,624,-63302.246,0,0,672.72406 -9561,11787,21464,-9,21462,21461,4,1,0,21,2,0,0,0,2,1,2,1,0,0,2,7.5965858,7.5489807,0,3,0,0,0,-9,0,-1037.0654,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,6.7588301,6.7588301,0,0,0,0,0,0,0,0,0,0,0,2.3052602,0,0,0,41.57,37.849998,-9,-9,5,1,1,0,0,6,3,1,550,131123.22,0,0,2260.426 -9562,11788,21465,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,5,8.8231506,9.0522518,0,3,0,0,0,-9,0,-1026.9288,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,52,52,15,1,0,-9,0,15.875161,15.875161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,59.400002,-9,-9,6,1,1,0,0,9,5,1,876,368569.09,0,0,1580.9607 -9562,11789,21466,-9,21465,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-920.03412,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9879875,0,0,0,51.240002,58.84,-9,-9,4,1,1,0,0,9,1,1,409,-123272.56,0,0,68.852058 -9563,11790,21467,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,0,2,8.0449753,8.024415,0,3,0,0,0,-9,0,-1072.4542,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,9.1986532,9.1986532,0,0,0,0,0,0,0,0,0,0,0,5.8072095,0,0,0,47.380001,37.759998,-9,-9,5,1,1,0,0,6,4,1,412,135789.23,0,0,2440.3306 -9563,11791,21468,-9,21467,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.9298692,7.9297509,0,3,0,0,0,-9,0,-1020.2427,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,1,40,43,15,1,0,-9,1,7.3864141,7.3864141,0,0,0,0,0,0,0,0,0,0,0,3.1602609,0,0,0,45.849998,54.560001,-9,-9,6,1,1,0,0,6,4,1,1099,-236733.59,0,0,2165.1648 -9563,11792,21469,-9,21467,-9,3,1,1,22,2,0,0,0,2,-9,7,2,0,0,4,7.5218596,6.917623,0,3,0,0,0,-9,0,-993.44794,1,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,20,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2631063,0,0,0,54,53.650002,-9,-9,6,1,1,0,0,6,3,1,468,-112784.02,0,0,1581.7628 -9564,11793,21470,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.2923441,8.0551596,6.3087082,3,0,0,0,-9,0,-994.4281,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,8,8,15,1,1,-9,0,61.026554,61.026554,0,0,0,0,0,0,0,0,1,1,0,6.0015378,0,0,0,38.029999,49.060001,-9,-9,2,4,2,0,0,9,4,1,1123,803029.69,0,0,917.52661 -9564,11794,21471,-9,21470,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,3,7.0729156,7.235033,4.7708073,3,0,0,0,-9,0,-1020.4888,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,21,0,15,1,0,-9,1,5.9040961,5.9040961,0,0,0,0,0,0,0,0,1,1,0,4.6288977,0,0,0,49.290001,54.59,-9,-9,2,4,2,0,0,9,2,1,665,178102.09,0,0,1008.4326 -9565,11795,21472,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,0,3,0,7.8019271,8.3173027,3,0,0,0,-9,0,-967.48016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7758622,8.0700731,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,10,4,1,569,750200.31,0,0,2513.8481 -9566,11796,21473,21474,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.9911675,8.0881529,1,0,-9,50,0,3,25.682323,0,0,0,69,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9444451,8.1018343,0,0,62.57,40.110001,55.470001,52.91,6,1,1,0,0,9,3,1,1166,815291.06,0,0,2771.5439 -9566,11796,21474,21473,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-3,84.285583,0,0,0,72,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,4.7151484,0,26.722115,3,55.470001,52.91,62.57,40.110001,7,1,1,0,0,9,3,1,1166,815291.06,0,0,2771.5439 -9567,11797,21475,-9,21477,21476,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-874.49316,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,526.33331,307622.53,0,0,2333.4832 -9567,11797,21476,21477,-9,-9,2,1,1,46,1,0,1,0,3,-9,2,1,0,0,4,8.0806036,8.2287521,0,2,0,-9,5,0,1,119.35248,0,0,0,45,3,4,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,10.51316,10.51316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,42,42.91,5,1,1,0,0,12,4,1,526.33331,307622.53,0,0,2333.4832 -9567,11797,21477,21476,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,0,4,7.8619962,7.4625397,0,2,0,-9,20,0,-1,-87.892754,0,0,0,46,3,4,1,-9,-9,2019,1,2,14,3,27,27,15,1,0,1,0,8.4763441,8.4763441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,42.91,54.790001,55.860001,6,1,1,0,0,12,4,1,526.33331,307622.53,0,0,2333.4832 -9568,11798,21478,21479,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,0,5,8.1206322,8.4214668,0,1,0,-9,40,0,4,-71.655899,0,0,0,59,1,4,1,3,3,2019,1,1,6,0,33,30,15,1,0,1,0,10.734509,10.734509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,2,1,1,0,0,1,4,1,208.5,2318001.5,0,0,1990.3408 -9568,11798,21479,21478,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,7.9289517,8.1076612,0,1,0,-9,40,0,-4,65.365173,0,0,0,63,3,5,1,3,2,2019,1,2,6,0,28,38,15,1,0,1,0,10.047402,10.047402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,1,4,1,208.5,2318001.5,0,0,1990.3408 -9569,11799,21480,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,1,0,6.704577,7.1145778,3,0,-9,0,-9,0,-954.91278,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.5222273,0,0,28.16,27.98,-9,-9,1,1,1,0,0,4,2,0,1155,457756.66,0,0,1146.6962 -9570,11800,21481,21482,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,5.9017258,6.0615988,0,1,0,-9,43,0,-14,-23.065138,0,0,0,78,3,3,3,-9,-9,2019,2,2,4,0,9,6,15,1,0,4,0,4.7831507,4.7831507,0,0,0,0,0,0,0,0,1,1,0,2.3523116,0,0,0,55.59,43.189999,54,46,5,1,1,0,0,10,2,0,494.5,469515.06,0,0,2703.7876 -9570,11800,21482,21481,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,14,22.358536,0,0,0,64,2,3,1,-9,-9,2019,3,1,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,55.59,43.189999,6,1,1,0,0,10,2,0,494.5,469515.06,0,0,2703.7876 -9571,11801,21483,21484,-9,-9,1,1,1,48,1,0,1,0,3,-9,2,1,0,0,4,8.1012192,8.2068777,0,2,0,-9,5,0,1,-51.067703,0,0,0,47,2,4,1,-9,-9,2019,1,2,9,0,42,0,15,1,0,1,0,10.088281,10.088281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,51.830002,57.200001,7,1,1,0,0,11,4,1,1954.5,730.64453,0,0,2823.3223 -9571,11801,21484,21483,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,7.8166561,8.2489614,0,2,0,-9,5,0,-1,127.48434,-9,0,0,48,3,4,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,8.2523117,8.2523117,0,0,0,0,0,0,0,7,1,1,0,0,0,18.633688,3,51.830002,57.200001,54.200001,57.490002,6,1,1,0,0,11,4,1,1954.5,730.64453,0,0,2823.3223 -9572,11802,21485,21486,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,0,4,8.9803247,9.0670853,0,2,0,-9,9,0,-10,1.215753,0,0,1,51,1,3,1,2,1,2019,1,1,7,0,44,45,15,1,0,1,0,28.623711,28.623711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,51.939999,55.880001,6,1,1,0,0,10,5,1,1710.6666,1093451.3,0,0,3301.1277 -9572,11802,21486,21485,-9,-9,1,1,1,51,1,0,1,0,1,-9,1,1,0,0,3,5.5167289,5.5167565,0,2,0,-9,22,0,10,-152.30579,0,0,0,41,1,4,1,3,3,2019,1,2,8,0,20,0,15,1,0,1,0,1.3900086,1.3900086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.939999,55.880001,58.150002,52.91,4,1,1,0,1,10,5,1,1710.6666,1093451.3,0,0,3301.1277 -9572,11802,21487,-9,21485,21486,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1132.7054,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,1710.6666,1093451.3,0,0,3301.1277 -9573,11803,21488,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,4,0,8.1773348,8.3268118,3,0,0,0,-9,0,-942.16846,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.656395,8.7392225,0,0,57.41,54.880001,-9,-9,7,1,1,0,0,9,5,1,357,1340420.4,0,0,2879.6484 -9574,11804,21489,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,3,3,0,0,4,0,0,0,4,0,-9,0,-9,0,-1144.7786,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,1,1,8,1,0,775,0,0,0,2297.8752 -9574,11804,21490,-9,21489,-9,2,1,1,10,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1146.6995,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,1,0,775,0,0,0,2297.8752 -9574,11804,21491,-9,21489,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1047.175,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,1,0,775,0,0,0,2297.8752 -9575,11805,21492,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,1,3,7.6436467,7.8442187,5.7830863,3,0,-9,0,1,0,-966.11169,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,2,30,30,15,1,0,-9,0,8.6107225,8.6107225,0,0,0,0,0,0,0,27.5,1,1,0,0,6.1595531,27.071888,3,38.009998,55.389999,-9,-9,7,1,1,0,1,6,3,0,22,267751.34,0,0,689.50513 -9575,11806,21493,-9,21492,-9,2,1,0,30,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-830.64642,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,6,1,0,552,118560.59,0,0,2246.7954 -9576,11807,21494,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,0,3,7.1985512,7.0575676,5.5198483,4,0,0,0,-9,0,-975.04132,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,16,16,15,1,0,-9,0,8.7243786,8.7243786,0,0,0,0,0,0,0,2,1,1,0,5.5875282,0,3.7736671,3,47.66,49.630001,-9,-9,5,1,1,0,0,4,2,1,85,-12497.656,0,0,1333.9635 -9577,11808,21495,-9,21498,-9,3,1,1,14,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-857.97137,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,1,0,1801.75,-88962.078,0,0,1094.7639 -9577,11808,21496,-9,21498,-9,2,1,1,17,2,1,3,0,2,1,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-976.8512,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.1572886,3,43.720001,51.380001,-9,-9,4,1,1,0,0,7,1,0,1801.75,-88962.078,0,0,1094.7639 -9577,11808,21497,-9,21498,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1000.9017,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,1,0,1801.75,-88962.078,0,0,1094.7639 -9577,11808,21498,-9,-9,-9,1,1,0,41,2,1,3,0,3,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-905.51617,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.51482,3,58.299999,52.91,-9,-9,6,1,1,0,0,7,1,0,1801.75,-88962.078,0,0,1094.7639 -9578,11809,21499,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,8.6907473,8.4796658,0,3,0,0,0,-9,0,-790.07605,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,47,37,15,1,0,-9,0,14.51118,14.51118,0,0,0,0,0,0,0,0,0,0,0,3.0962684,0,0,0,53.509998,60.740002,-9,-9,5,1,1,0,0,2,5,0,120,-69203.117,0,0,2752.5159 -9579,11810,21500,21501,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,5.0634241,8.255147,8.1635027,1,0,-9,6,0,-3,-117.59579,0,0,0,67,2,3,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.5856152,24.448006,3,57.16,56.150002,41.82,57.720001,6,1,1,0,0,4,4,1,381,1751243,0,0,2178.1738 -9579,11810,21501,21500,-9,-9,1,1,0,67,1,0,0,0,2,-9,2,1,0,0,3,8.2644644,8.1032143,5.1059537,1,0,-9,44,0,3,-91.05442,0,0,0,64,1,4,3,2,3,2019,2,2,10,0,20,0,15,1,0,4,0,15.769935,15.769935,0,0,0,0,0,0,0,2,1,1,0,5.7031822,5.2102928,5.6460447,3,41.82,57.720001,57.16,56.150002,4,1,1,0,0,4,4,1,381,1751243,0,0,2178.1738 -9580,11811,21502,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-935.46185,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.349998,16.75,-9,-9,4,1,1,0,0,2,1,0,3138,155633.41,0,0,1355.231 -9581,11812,21503,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,2,0,6.0058007,6.2926922,3,0,0,0,-9,0,-1031.4161,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4738379,0,0,42.860001,31.98,-9,-9,3,1,1,0,0,9,2,1,2185,439497.13,0,0,845.42444 -9582,11813,21504,21505,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,3,8.6479597,8.4105196,0,1,0,-9,7,0,-1,10.122864,0,1,1,30,2,3,1,-9,-9,2019,1,1,18,6,50,60,15,1,1,1,0,17.575634,17.575634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.189999,50.93,44.939999,45.310001,5,1,1,0,0,9,5,1,1596.5,38044.895,0,0,3850.438 -9582,11813,21505,21504,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,0,3,8.314723,8.6626787,0,1,0,-9,7,0,1,-55.523647,0,0,0,29,1,3,1,-9,-9,2019,1,2,14,2,37,45,15,1,0,1,0,12.837142,12.837142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.939999,45.310001,42.189999,50.93,4,1,1,0,1,9,5,1,1596.5,38044.895,0,0,3850.438 -9583,11814,21506,21509,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,2,8.304657,8.4408836,0,2,0,-9,9,0,-1,-90.319466,0,0,1,38,2,4,1,2,-9,2019,1,2,23,11,25,25,15,1,1,1,0,22.998201,22.998201,0,0,0,0,0,0,0,0,1,1,0,3.5011585,0,0,0,27.389999,54.099998,51.240002,58.84,5,1,1,0,0,7,5,1,604,117632.35,0,0,3869.4573 -9583,11814,21507,-9,21506,21509,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.0049,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,604,117632.35,0,0,3869.4573 -9583,11814,21508,-9,21506,21509,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.00781,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,604,117632.35,0,0,3869.4573 -9583,11814,21509,21506,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.8239241,8.7692165,0,2,0,-9,9,0,1,103.9507,0,0,0,37,1,2,1,2,-9,2019,1,1,11,1,37,40,15,1,0,1,0,16.108036,16.108036,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,27.389999,54.099998,6,1,1,0,0,7,5,1,604,117632.35,0,0,3869.4573 -9584,11815,21510,21511,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,7.4312882,7.1887598,0,2,0,-9,8,0,-2,-82.596947,0,0,0,49,1,3,1,-9,-9,2019,1,1,10,1,25,24,15,1,0,1,0,7.5967875,7.5967875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,56.349998,45.630001,6,4,1,0,0,10,5,1,526.66669,4824456.5,0,0,5072.4067 -9584,11815,21511,21510,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,3,9.3841858,9.2106981,0,2,0,-9,8,0,2,91.841316,0,0,0,47,2,4,1,3,2,2019,1,2,8,1,52,47,15,1,0,1,0,29.516113,29.516113,0,0,0,0,0,0,0,2,1,1,0,5.8488288,0,0,3,56.349998,45.630001,50,55,6,1,1,0,0,10,5,1,526.66669,4824456.5,0,0,5072.4067 -9584,11815,21512,-9,21510,21511,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.15417,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,526.66669,4824456.5,0,0,5072.4067 -9585,11816,21513,21514,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,2,0,6.9318805,6.8460474,1,0,-9,46,0,1,-57.823761,0,0,0,63,1,4,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0775108,6.6692595,0,0,58.459999,39.689999,57.169998,50.610001,6,1,1,0,0,6,3,0,983.5,286700.5,0,0,3430.1248 -9585,11816,21514,21513,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.4959044,7.4168162,1,0,-9,46,0,-1,85.319626,0,0,0,64,1,2,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7462211,7.3821883,0,0,57.169998,50.610001,58.459999,39.689999,3,1,1,0,0,6,3,0,983.5,286700.5,0,0,3430.1248 -9586,11817,21515,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,1,2,0,7.9905596,8.0849581,3,0,0,0,-9,0,-1030.9495,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.9683924,0,16.447819,12.081049,0,1,1,0,6.9464736,7.8049955,0,0,42.790001,30.190001,-9,-9,6,1,1,0,0,2,4,1,318,227611.09,0,0,2384.6091 -9587,11818,21516,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1040.0234,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,42.549999,40.150002,-9,-9,5,1,1,0,0,6,1,1,841,16504.715,0,0,1096.5066 -9588,11819,21517,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,0,3,0,6.801765,6.9637899,3,0,0,0,-9,0,-932.01514,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5634756,0,0,53.59,49.639999,-9,-9,5,1,1,0,0,11,2,1,264,537842.44,0,0,275.13013 -9589,11820,21518,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,4,7.9507704,8.1773491,0,3,0,0,0,-9,0,-971.95972,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,36,37,15,1,0,-9,0,7.1080108,7.1080108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.66,50.860001,-9,-9,6,1,1,0,0,12,4,1,3219,254704.3,0,0,1539.6373 -9590,11821,21519,21520,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.6872029,7.7208662,1,0,-9,52,0,1,-89.687065,0,0,0,71,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7256765,0,0,53,46,51,46,5,1,1,0,0,7,3,1,557,2062369.5,0,0,1461.1359 -9590,11821,21520,21519,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,-1,-95.530807,0,0,0,72,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23175673,0,0,0,51,46,53,46,5,1,1,0,0,7,3,1,557,2062369.5,0,0,1461.1359 -9590,11822,21521,-9,21520,21519,3,1,1,44,2,0,0,0,2,-9,2,1,0,0,4,8.6036177,8.4797211,0,3,0,0,0,-9,0,-1012.1302,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,41,43,15,1,0,-9,1,13.657607,13.657607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,5,1,1,0,0,7,5,1,522,-114192.95,0,0,3075.2175 -9591,11823,21522,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.1060944,8.3466539,0,3,0,0,0,-9,0,-1117.937,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,35,15,1,0,-9,0,9.8657198,9.8657198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,7,4,1,2881,11470.671,0,0,2430.791 -9592,11824,21523,-9,21524,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-914.82446,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,6,4,1,1625,353348.56,0,0,2675.1021 -9592,11824,21524,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,2,1,0,0,4,8.7581882,8.8068428,0,4,0,0,0,-9,0,-961.80493,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,60,60,15,1,0,-9,0,14.45095,14.45095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,5,3,4,0,1,6,4,1,1625,353348.56,0,0,2675.1021 -9592,11825,21525,-9,21524,-9,2,1,0,19,2,0,2,1,2,0,7,2,0,0,4,7.4589839,7.9020061,0,3,0,0,0,-9,0,-936.40643,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.650002,60.41,-9,-9,6,4,2,0,0,6,3,1,556,-86453.32,0,0,1365.9681 -9592,11826,21526,-9,21524,-9,3,1,0,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-949.77698,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.58466232,0,0,0,48.98,57.220001,-9,-9,4,4,2,0,0,6,4,1,481,31212.059,0,0,265.88889 -9593,11827,21527,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,1,2,0,7.7382102,7.6682367,3,0,0,0,-9,0,-1043.9512,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.133045,7.7037616,0,0,62.060001,43.509998,-9,-9,7,1,1,0,0,2,3,1,619,415775.88,0,0,2580.7493 -9594,11828,21528,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,1,1,0,0,4,7.6191692,7.9851437,0,4,0,0,0,-9,0,-996.28394,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,35,35,15,1,1,-9,0,9.5912199,9.5912199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7.0999999,72.459999,-9,-9,2,1,1,0,0,8,3,0,323,84103.406,0,0,2764.9814 -9595,11829,21529,21530,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.3488669,7.0847111,1,0,-9,8,0,3,82.052322,0,0,0,71,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9391932,7.350852,0,0,59.220001,40.220001,58.209999,40.619999,6,1,1,0,0,13,2,1,700,212509.44,0,0,2502.5791 -9595,11829,21530,21529,-9,-9,2,1,0,71,1,0,0,0,2,-9,6,3,0,0,4,0,5.318387,5.1628232,1,0,-9,48,0,-3,34.305382,0,0,0,74,3,3,3,2,3,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7761154,5.4117284,0,0,58.209999,40.619999,59.220001,40.220001,6,1,1,0,0,13,2,1,700,212509.44,0,0,2502.5791 -9596,11830,21531,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,0,5,8.2217493,8.5946484,3.1085944,3,0,0,0,-9,0,-1045.8165,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,47,45,15,1,0,-9,0,10.663122,10.663122,0,0,0,0,0,0,0,2,1,1,0,3.5015075,3.5551784,0,3,50.23,42.880001,-9,-9,6,1,1,0,0,9,4,0,2011,572295.31,0,0,962.43756 -9597,11831,21532,21533,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,8.372406,8.3342447,1,0,-9,9,0,0,-46.345692,0,0,0,73,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4753189,0,0,52.330002,34.34,50.75,39.209999,6,1,1,0,0,13,4,1,194,1335104.8,0,0,4291.0342 -9597,11831,21533,21532,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,0,11.465734,0,0,0,73,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,39.209999,52.330002,34.34,6,1,1,0,0,13,4,1,194,1335104.8,0,0,4291.0342 -9598,11832,21534,-9,21536,21537,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.83594,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,4,1,591.5,503472.72,0,0,4953.3901 -9598,11832,21535,-9,21536,21537,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.10846,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,4,1,591.5,503472.72,0,0,4953.3901 -9598,11832,21536,21537,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,8.1193495,8.0253086,0,2,0,-9,6,0,-1,-81.236809,0,0,0,46,1,4,1,2,3,2019,1,1,10,1,35,0,15,1,0,1,0,8.6549206,8.6549206,0,0,0,0,0,0,0,7,1,1,0,0,0,5.5304341,3,50,55,52,55,6,1,1,0,0,8,4,1,591.5,503472.72,0,0,4953.3901 -9598,11832,21537,21536,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,8.7918005,8.5270452,0,2,0,-9,6,0,1,3.1010587,0,0,0,45,1,4,1,2,2,2019,1,2,9,1,39,38,15,1,0,1,0,18.592657,18.592657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,0,8,4,1,591.5,503472.72,0,0,4953.3901 -9599,11833,21538,21539,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,5,8.6694765,8.7791357,0,1,0,-9,7,0,-3,-56.246265,0,0,0,53,1,3,1,2,2,2019,1,1,9,0,35,30,15,1,0,1,0,26.369499,26.369499,0,0,0,0,0,0,0,0,0,0,0,6.7615962,0,0,0,57.060001,57.759998,28.440001,60.029999,7,1,1,0,0,5,5,1,411.5,1024937.4,0,0,5877.272 -9599,11833,21539,21538,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,9.1526861,8.9904642,0,1,0,-9,7,0,3,102.62354,0,0,0,50,2,5,1,3,3,2019,1,2,32,12,40,40,15,1,1,1,0,26.301373,26.301373,0,0,0,0,0,0,0,0,0,0,0,4.9017839,0,0,0,28.440001,60.029999,57.060001,57.759998,2,1,1,0,0,5,5,1,411.5,1024937.4,0,0,5877.272 -9599,11834,21540,-9,21538,21539,3,1,1,22,2,0,0,0,1,1,2,1,0,0,4,8.2943802,8.2382402,0,3,0,0,0,-9,0,-1029.1177,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,37,0,15,1,0,-9,1,11.78947,11.78947,0,0,0,0,0,0,0,0,0,0,0,2.3810825,0,0,0,52,57.310001,-9,-9,6,1,1,0,0,5,4,1,138,-58871.137,0,0,1674.2213 -9599,11835,21541,-9,21538,21539,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,8.2514811,8.5873737,0,3,0,0,0,-9,0,-1015.1431,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,70,70,15,1,0,-9,1,7.7856932,7.7856932,0,0,0,0,0,0,0,0,0,0,0,4.7165418,0,0,0,50.759998,51.169998,-9,-9,6,1,1,0,0,5,5,1,240,85172.5,0,0,1955.5332 -9599,11836,21542,-9,21538,21539,5,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1131.1025,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.23,61.310001,-9,-9,6,1,1,0,0,5,1,1,214,84583.742,0,0,0 -9600,11837,21543,21544,-9,-9,3,1,1,36,1,0,1,0,1,-9,2,1,0,0,5,8.3673296,8.6850185,0,2,0,-9,2,0,-11,26.06584,-9,0,0,47,2,2,1,-9,-9,2019,1,1,11,0,38,0,15,1,0,1,0,14.382495,14.382495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,27.549999,54.09,5,1,1,0,0,2,4,0,789.66669,150787.05,0,0,3295.5984 -9600,11837,21544,21543,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,2,8.1303368,8.1087809,0,2,0,-9,2,0,11,-35.141567,0,0,0,36,1,5,1,-9,2,2019,1,3,15,3,34,34,15,1,0,1,0,9.8937855,9.8937855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.549999,54.09,57.060001,57.759998,4,1,1,0,0,2,4,0,789.66669,150787.05,0,0,3295.5984 -9600,11837,21545,-9,21544,21543,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.64276,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,0,789.66669,150787.05,0,0,3295.5984 -9601,11838,21546,21547,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.3658481,7.3534589,1,0,-9,9,0,6,13.110769,0,0,0,62,1,2,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0745616,0,0,59.310001,49.810001,52.25,45.209999,6,1,1,0,0,12,4,0,1674,1481833,0,0,2911.3237 -9601,11838,21547,21546,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,0,2,7.8191676,8.141243,0,1,0,-9,9,0,-6,141.3299,0,0,0,68,2,3,3,2,3,2019,2,1,10,0,35,40,15,1,0,4,0,10.340297,10.340297,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,45.209999,59.310001,49.810001,6,1,1,0,0,12,4,0,1674,1481833,0,0,2911.3237 -9602,11839,21548,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1125.3882,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,22.066513,0,0,27.497854,0,257.04089,0,1,1,0,0,0,0,0,40,23,-9,-9,7,1,1,0,0,8,1,0,1275,-44568.039,0,0,306.60968 -9603,11840,21549,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,0,3,0,7.8087401,7.9149327,3,0,0,0,-9,0,-1069.5985,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,.17971431,0,0,0,0,7.9591846,0,1,1,0,0,7.6344805,0,0,53.400002,42.889999,-9,-9,6,1,1,0,0,2,4,1,87,194189.02,0,0,2536.4841 -9604,11841,21550,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,2,0,6.0393848,6.1202755,3,0,0,0,-9,0,-1028.1101,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,2.7586203,0,0,0,0,0,0,1,1,0,0,6.0137076,0,0,48.099998,28.9,-9,-9,5,1,1,0,0,4,2,1,1565,-50470.023,0,0,1341.2161 -9605,11842,21551,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,1,1,0,0,2,7.775435,7.3862271,0,3,0,0,0,-9,0,-1064.8102,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,34,15,1,0,-9,0,5.4312181,5.4312181,0,0,0,0,0,0,0,0,0,0,0,3.4369566,0,0,0,52.470001,45.080002,-9,-9,5,1,1,0,0,9,3,1,1155,278110.13,0,0,918.72839 -9606,11843,21552,21553,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,8.9129028,9.0503063,0,1,0,-9,38,0,-7,-33.348343,0,0,0,63,2,3,3,3,3,2019,2,1,12,1,6,5,15,1,0,4,0,138.83142,138.83142,0,0,0,0,0,0,0,0,0,0,0,6.7141523,0,0,0,54.200001,57.490002,50.009998,47.439999,1,1,1,0,0,10,5,1,323,1379760.3,0,0,4821.2427 -9606,11843,21553,21552,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.4780478,7.3856339,1,0,-9,38,0,7,23.384169,0,0,0,56,3,4,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8345838,0,0,50.009998,47.439999,54.200001,57.490002,6,1,1,0,0,10,5,1,323,1379760.3,0,0,4821.2427 -9607,11844,21554,21555,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.3865566,8.1963549,1,0,-9,51,0,0,11.121128,0,0,0,71,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.405489,0,0,57.16,56.150002,47.889999,56.25,6,1,1,0,0,9,4,1,467.5,1195545,0,0,2590.1074 -9607,11844,21555,21554,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,0,-44.096844,0,0,0,71,1,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6185074,0,0,0,47.889999,56.25,57.16,56.150002,5,1,1,0,0,9,4,1,467.5,1195545,0,0,2590.1074 -9608,11845,21556,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,2,1,0,0,3,8.244462,8.3810863,0,3,0,0,0,-9,0,-892.36078,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,12.372154,12.372154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.75,49.130001,-9,-9,4,1,1,0,0,10,4,1,917,503602.09,0,0,2682.7505 -9609,11846,21557,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.6477671,6.674355,3,0,0,0,-9,0,-991.77283,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.6688509,0,0,0,0,1,1,0,4.7646117,6.3798523,0,0,57.099998,35.959999,-9,-9,6,1,1,0,0,2,2,1,772,99049.945,0,0,1218.3739 -9610,11847,21558,21559,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,0,3,7.4483953,7.5261531,0,1,0,-9,38,0,11,-15.134018,0,0,0,55,2,3,1,3,3,2019,1,1,9,1,36,50,15,1,0,1,0,7.7914886,7.7914886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.639999,48.689999,49.040001,55.860001,2,1,1,0,0,7,3,1,319.5,398532.56,0,0,1995.7915 -9610,11847,21559,21558,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.1178832,7.1464353,0,1,0,-9,38,0,-11,25.725443,0,0,0,66,2,3,1,3,3,2019,1,2,12,0,26,25,15,1,0,1,0,5.4351635,5.4351635,0,0,0,0,0,0,0,27.5,1,1,0,.014166714,0,23.961983,3,49.040001,55.860001,49.639999,48.689999,5,1,1,0,0,7,3,1,319.5,398532.56,0,0,1995.7915 -9610,11848,21560,-9,21559,21558,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,2,8.6575813,8.3255196,0,3,0,0,0,-9,0,-997.41425,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,16,5,37,38,15,1,1,-9,1,11.06281,11.06281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,53.220001,-9,-9,5,1,1,0,0,7,4,1,712,-61721.785,0,0,3064.2129 -9611,11849,21561,21562,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,7.0233002,7.0359678,1,0,-9,51,0,4,-63.083664,0,0,0,69,3,4,3,3,3,2019,4,1,6,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.74794263,7.3518224,0,1,66.739998,44.98,17.280001,48.790001,7,2,3,0,0,5,2,1,1374.5,488872.59,0,0,1505.3918 -9611,11849,21562,21561,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,-4,-14.287528,0,0,0,73,3,4,3,3,-9,2019,4,2,18,7,0,0,15,4,1,4,0,0,0,1,0,25.963152,3.3868465,2.532141,7.5979619,0,0,1,1,0,3.5297704,0,0,0,17.280001,48.790001,66.739998,44.98,6,2,3,0,0,5,2,1,1374.5,488872.59,0,0,1505.3918 -9612,11850,21563,21564,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,7.8163495,8.3060036,6.5881338,1,0,-9,5,0,-4,138.02045,0,0,0,64,2,4,1,3,3,2019,1,1,6,0,49,49,15,1,0,1,0,7.024363,7.024363,0,0,0,0,0,0,0,0,1,1,0,6.3059287,6.9020672,0,0,59.43,58.049999,38.34,62.119999,6,1,1,0,0,7,4,1,559,944104.75,0,0,3250.3667 -9612,11850,21564,21563,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,4,7.8539357,7.9185381,0,1,0,-9,5,0,4,12.459723,0,0,0,60,2,5,1,2,1,2019,1,2,13,3,34,36,15,1,0,1,0,8.4846745,8.4846745,0,0,0,0,0,0,0,7,1,1,0,3.9377916,0,5.051548,3,38.34,62.119999,59.43,58.049999,3,1,1,0,0,7,4,1,559,944104.75,0,0,3250.3667 -9613,11851,21565,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,0,4,7.5157051,7.0343099,0,3,0,0,0,-9,0,-1047.7886,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,16,16,15,1,0,-9,0,11.60699,11.60699,0,0,0,0,0,0,0,0,1,1,0,7.4666138,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,0,7,3,1,1597,61197.121,0,0,2746.989 -9614,11852,21566,21568,-9,-9,1,1,1,45,1,1,2,0,2,-9,2,1,0,0,4,8.5425978,8.4888783,0,2,0,-9,10,0,11,60.472931,-9,0,0,34,1,3,1,-9,-9,2019,1,2,5,0,37,0,15,1,0,1,0,15.858332,15.858332,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,23.440001,54.279999,5,2,3,0,0,5,4,1,380.5,212363.13,0,0,3482.5034 -9614,11852,21567,-9,21568,21566,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.6793,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,5,4,1,380.5,212363.13,0,0,3482.5034 -9614,11852,21568,21566,-9,-9,2,1,0,34,1,1,2,0,1,-9,1,1,0,0,3,7.3323269,7.5037646,0,2,0,-9,10,0,-11,172.7724,-9,0,1,45,2,4,1,3,2,2019,1,1,22,10,60,0,15,1,1,1,0,3.2692423,3.2692423,0,0,0,0,0,0,0,0,1,1,0,6.7655158,0,0,0,23.440001,54.279999,54.790001,55.860001,2,1,1,0,1,5,4,1,380.5,212363.13,0,0,3482.5034 -9614,11852,21569,-9,21568,21566,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.8071,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,5,4,1,380.5,212363.13,0,0,3482.5034 -9615,11853,21570,21571,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,0,3,9.1605215,8.6760883,0,2,0,-9,8,0,-1,-91.187843,0,0,0,33,1,4,1,3,2,2019,1,1,13,1,35,55,15,1,0,1,0,26.220881,26.220881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.220001,56.110001,54.490002,50.459999,6,1,1,0,0,10,5,1,2965,269191.94,0,0,3518.5935 -9615,11853,21571,21570,-9,-9,1,1,0,33,1,1,1,0,1,-9,2,1,0,0,4,8.3423481,8.4683933,0,2,0,-9,8,0,1,-54.057884,0,0,1,32,2,3,1,2,1,2019,1,2,6,1,39,21,15,1,0,1,0,13.179629,13.179629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.490002,50.459999,42.220001,56.110001,6,1,1,0,0,10,5,1,2965,269191.94,0,0,3518.5935 -9615,11853,21572,-9,21571,21570,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.4359,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,2965,269191.94,0,0,3518.5935 -9616,11854,21573,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-896.50708,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.709999,23.610001,-9,-9,4,1,1,0,0,1,1,1,319,12026.869,0,0,1094.951 -9617,11855,21574,-9,-9,-9,1,1,1,48,3,0,0,0,3,-9,2,1,0,0,3,5.1148314,4.5203743,0,3,0,0,0,-9,0,-1079.8923,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,24,24,15,1,0,-9,0,.46389726,.46389726,0,0,0,0,0,0,0,0,1,1,0,1.109616,0,0,0,43.84,45.939999,-9,-9,6,1,1,0,0,13,1,0,1368,37483.547,0,0,-1224.8024 -9618,11856,21575,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,0,3,8.7576523,8.4331789,0,4,0,0,0,-9,0,-1033.1963,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,48,49,15,1,0,-9,0,13.571304,13.571304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.080002,35.84,-9,-9,6,3,4,0,0,7,4,0,244,277375.47,0,0,3546.4617 -9619,11857,21576,21577,21578,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,0,3,0,7.1906338,7.0796075,1,0,-9,38,0,1,22.276764,0,0,0,57,1,4,1,2,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.0309223,7.1566863,128.2173,3,50.110001,55.32,54,54,6,2,3,0,0,5,4,1,463,985430.25,0,0,2069.4219 -9619,11857,21577,21576,-9,-9,2,1,1,57,1,0,0,0,1,-9,1,1,0,0,4,8.6022224,8.9007673,0,1,0,-9,38,0,-1,-55.213253,0,0,0,58,2,3,3,-9,-9,2019,2,1,9,0,40,35,15,1,0,3,0,15.569975,15.569975,0,0,0,0,0,0,0,0,1,1,0,1.8172969,0,0,3,54,54,50.110001,55.32,6,2,3,0,0,5,4,1,463,985430.25,0,0,2069.4219 -9619,11858,21578,-9,-9,-9,3,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-898.29724,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,4,6,0,0,5,1,1,1336,101794.23,0,0,1266.8641 -9620,11859,21579,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,2,0,5.6399937,5.5933218,3,0,-9,0,1,0,-1025.2107,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2073674,5.7733016,0,0,41.189999,37.529999,-9,-9,4,1,1,0,0,4,2,1,1979,23275.949,0,0,1329.7209 -9621,11860,21580,21581,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,5,7.4820685,7.3135476,0,1,0,-9,36,0,2,68.315178,0,0,0,54,3,4,1,-9,-9,2019,1,1,16,4,35,35,15,1,1,1,0,5.055738,5.055738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.950001,63.66,55.349998,45.889999,5,1,1,0,0,2,3,1,846,401956.28,0,0,1869.7451 -9621,11860,21581,21580,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,7.0454597,7.4236622,0,1,0,-9,36,0,-2,91.313713,0,0,0,56,2,5,1,2,2,2019,1,2,10,0,24,24,15,1,0,1,0,7.9028583,7.9028583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.349998,45.889999,40.950001,63.66,6,1,1,0,0,2,3,1,846,401956.28,0,0,1869.7451 -9622,11861,21582,21583,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,0,5,8.5696945,8.4249983,0,2,0,-9,6,0,-11,53.677406,0,0,0,63,2,4,1,3,3,2019,1,1,7,0,30,30,15,1,0,1,0,19.859964,19.859964,0,0,0,0,0,0,0,0,1,1,0,3.0808749,0,0,0,62.389999,56.709999,55.099998,47.5,7,1,1,0,0,10,4,1,728.5,1093551.5,0,0,2486.9465 -9622,11861,21583,21582,-9,-9,1,1,1,63,1,0,1,0,2,-9,1,1,0,0,4,0,5.6888881,6.0338778,2,0,-9,6,0,11,-200.16833,0,0,0,52,1,5,1,3,3,2019,1,2,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.860723,5.5949531,0,0,55.099998,47.5,62.389999,56.709999,6,1,1,0,0,10,4,1,728.5,1093551.5,0,0,2486.9465 -9623,11862,21584,21585,-9,-9,1,1,0,42,1,0,1,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,16,0,-11,0,0,0,1,53,2,2,3,2,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,42.110001,52.709999,6,1,1,0,0,4,1,0,1222.5,170170.97,0,0,1517.5608 -9623,11862,21585,21584,-9,-9,2,1,1,53,1,0,1,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,16,0,11,0,0,0,0,42,2,4,3,3,3,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.4042573,2,42.110001,52.709999,50,55,6,1,1,0,1,4,1,0,1222.5,170170.97,0,0,1517.5608 -9623,11863,21586,-9,21584,21585,3,1,0,23,2,0,1,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1037.5452,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,24,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.540001,56.619999,-9,-9,6,1,1,0,0,4,1,0,388,-55671.184,0,0,1364.6027 -9623,11864,21587,-9,21584,21585,4,1,0,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-979.6004,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,4,1,0,1186,71125.563,0,0,161.66843 -9623,11865,21588,-9,21584,21585,5,1,1,18,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-972.4212,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,4,1,0,628,-62122.906,0,0,0 -9624,11866,21589,21590,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,3,8.4847059,8.8194208,0,2,0,-9,21,0,6,114.65572,0,0,0,44,1,4,1,2,2,2019,1,1,11,1,50,48,15,1,0,1,0,14.444509,14.444509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.490002,62.139999,54.209999,49.459999,5,1,1,0,0,2,5,1,591.5,795351.5,0,0,3780.1538 -9624,11866,21590,21589,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,0,4,8.59653,8.4749937,0,2,0,-9,21,0,-6,-155.93892,0,0,1,50,2,3,1,-9,-9,2019,1,2,7,0,38,38,15,1,0,1,0,15.363439,15.363439,0,0,0,0,0,0,0,2,1,1,0,0,0,.40002778,3,54.209999,49.459999,35.490002,62.139999,6,1,1,0,0,2,5,1,591.5,795351.5,0,0,3780.1538 -9624,11867,21591,-9,21590,21589,3,1,1,18,2,0,1,0,2,-9,7,2,0,0,5,6.4849839,6.3558202,0,3,0,0,0,-9,0,-973.23718,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.990002,46.830002,-9,-9,7,1,1,0,0,2,2,1,1389,86260.109,0,0,-191.31511 -9625,11868,21592,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-994.61115,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.299999,46.200001,-9,-9,5,1,1,0,0,7,1,1,388,85456.445,0,0,1383.951 -9626,11869,21593,21595,-9,-9,1,1,0,32,1,0,1,0,1,-9,2,1,0,0,3,7.9823303,8.0045977,0,2,0,-9,7,-9,0,17.555063,-9,0,1,32,2,3,1,3,2,2019,1,2,17,5,26,0,15,1,1,1,0,10.529557,10.529557,0,0,0,0,0,0,0,0,1,1,0,1.4227549,0,0,0,38.209999,54.029999,48.650002,51.93,4,1,1,0,0,5,5,1,735.66669,635318,0,0,4865.5498 -9626,11869,21594,-9,21593,21595,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-993.66071,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,735.66669,635318,0,0,4865.5498 -9626,11869,21595,21593,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,3,9.0804825,9.0349016,0,2,0,-9,7,-9,0,-170.76514,-9,0,0,32,1,3,1,2,2,2019,1,1,11,3,55,0,15,1,0,1,0,16.299814,16.299814,0,0,0,0,0,0,0,0,1,1,0,4.1660929,0,0,0,48.650002,51.93,38.209999,54.029999,5,1,1,0,0,5,5,1,735.66669,635318,0,0,4865.5498 -9627,11870,21596,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,6,3,0,0,1,0,8.6617842,8.4657049,3,0,0,0,-9,0,-918.02802,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9971256,4.9668794,0,0,56.52,35.110001,-9,-9,3,1,1,0,0,9,5,1,27,910559.06,0,0,3782.1416 -9628,11871,21597,21598,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.7252555,7.1235771,1,0,-9,47,0,-5,45.270592,0,0,0,68,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8873243,6.9092641,0,0,44.529999,56.369999,42.110001,57.439999,6,1,1,0,0,10,3,1,802.5,1155276,0,0,2727.2249 -9628,11871,21598,21597,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.5849943,7.5254245,1,0,-9,47,0,5,84.690033,0,0,0,63,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.638732,7.2649121,0,0,42.110001,57.439999,44.529999,56.369999,6,1,1,0,0,10,3,1,802.5,1155276,0,0,2727.2249 -9629,11872,21599,21600,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,7.7333326,7.6045465,1,0,-9,9,0,1,43.806599,0,0,0,77,2,5,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4931469,7.6415091,0,0,58.560001,41.849998,54.259998,50.740002,6,1,1,0,0,4,3,1,627.5,756610.13,0,0,2987.9404 -9629,11872,21600,21599,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,5,0,6.6396265,6.64185,1,0,-9,9,0,-1,-53.020561,0,0,0,78,3,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.29135159,6.6876826,0,0,54.259998,50.740002,58.560001,41.849998,6,1,1,0,0,4,3,1,627.5,756610.13,0,0,2987.9404 -9630,11873,21601,21602,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,6.8247418,7.0148149,1,0,-9,42,0,4,121.02145,0,0,0,63,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7917709,0,0,58.150002,52.91,50,47,7,1,1,0,0,9,2,1,853.5,519371.44,0,0,1651.449 -9630,11873,21602,21601,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-4,12.134744,0,0,0,67,3,4,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,58.150002,52.91,5,1,1,0,0,9,2,1,853.5,519371.44,0,0,1651.449 -9631,11874,21603,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,1,0,7.0462942,7.5153675,3,0,0,0,-9,0,-988.78107,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9479027,7.2430716,0,0,32.82,32.509998,-9,-9,3,1,1,0,1,1,3,1,957,29033.385,0,0,842.12482 -9631,11875,21604,-9,21603,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,0,3,7.9411383,8.0009451,0,3,0,0,0,-9,0,-942.00116,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,37,77,15,1,0,-9,1,8.378912,8.378912,0,0,0,0,0,0,0,0,1,1,0,2.9424822,0,0,0,52.790001,41.709999,-9,-9,5,1,1,0,0,1,4,1,547,4236.479,0,0,697.10468 -9632,11876,21605,21606,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,2,7.9646792,8.1997862,6.4112048,1,0,-9,41,0,2,74.990173,0,0,0,59,1,4,3,-9,-9,2019,2,2,7,0,45,40,15,1,0,4,0,8.4880781,8.4880781,0,0,0,0,0,0,0,0,0,0,0,1.279114,6.6100678,0,0,60.529999,48.349998,54.200001,57.490002,6,1,1,0,0,1,4,1,1158,567424.5,0,0,1998.1335 -9632,11876,21606,21605,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,0,4,0,7.5197926,7.3707247,1,0,-9,41,0,-2,-13.67552,0,0,0,61,3,2,1,3,3,2019,3,1,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2363743,7.3715925,0,0,54.200001,57.490002,60.529999,48.349998,6,1,1,0,0,1,4,1,1158,567424.5,0,0,1998.1335 -9633,11877,21607,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,0,3,0,5.5604558,5.5437403,3,0,0,0,-9,0,-911.82031,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3751578,5.8172364,0,0,51.810001,46.849998,-9,-9,6,1,1,0,0,8,2,1,225,141350.14,0,0,1427.7118 -9634,11878,21608,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,2,1,0,0,5,7.5260034,7.7143359,0,3,0,0,0,-9,0,-1034.2445,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,28,15,1,0,-9,0,6.1353536,6.1353536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,12,3,1,277,460482.94,0,0,1437.7179 -9635,11879,21609,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,1,1,0,0,3,8.7411032,8.9466925,6.6396041,3,0,0,0,-9,0,-1011.1754,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,2,0,35,40,15,1,0,-9,0,22.009424,22.009424,0,0,0,0,0,0,0,0,0,0,0,2.0196035,7.1637554,0,0,44.189999,58.009998,-9,-9,6,1,1,0,0,9,5,1,420,1066484.3,0,0,4320.1958 -9636,11880,21610,21611,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.9489293,7.1930413,1,0,-9,10,0,2,124.60635,0,0,0,74,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.652591,7.3574076,0,0,54.68,58.580002,59.07,43.049999,6,1,1,0,0,4,3,1,430.5,1024066.4,0,0,3548.1836 -9636,11880,21611,21610,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.3903246,7.3557644,1,0,-9,10,0,-2,-56.494507,0,0,0,76,2,4,3,2,2,2019,4,1,6,1,0,0,15,4,0,4,0,0,0,1,4.9139562,0,0,0,0,60.638538,0,1,1,0,0,7.3286443,0,0,59.07,43.049999,54.68,58.580002,3,1,1,0,0,4,3,1,430.5,1024066.4,0,0,3548.1836 -9637,11881,21612,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,6.3247132,6.2091756,3,0,0,0,-9,0,-1000.1164,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3913226,0,0,29.190001,51.25,-9,-9,5,1,1,0,0,11,2,1,546,182259.3,0,0,129.27789 -9638,11882,21613,21614,-9,-9,2,1,0,59,1,0,0,0,3,-9,1,1,0,0,2,6.9267511,7.0039339,0,1,0,-9,34,0,-6,-117.32407,0,0,0,65,3,2,3,3,3,2019,2,1,18,6,30,30,15,1,1,3,0,4.9285779,4.9285779,0,0,0,0,0,0,0,0,1,1,0,2.8740692,0,0,0,47.540001,41.830002,44.93,34.779999,4,1,1,0,0,11,2,1,602,470394.56,0,0,170.92839 -9638,11882,21614,21613,-9,-9,1,1,1,65,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,34,0,6,-42.04401,0,0,0,59,3,2,1,3,-9,2019,3,2,21,9,0,0,15,3,1,1,0,0,0,1,0,41.159595,0,0,0,0,0,1,1,0,0,0,0,0,44.93,34.779999,47.540001,41.830002,3,1,1,0,0,11,2,1,602,470394.56,0,0,170.92839 -9639,11883,21615,-9,-9,21616,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1132.985,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,5,1,633,-24059.133,0,0,3767.7234 -9639,11883,21616,-9,-9,-9,1,1,1,46,3,0,2,0,1,-9,2,1,0,0,2,9.2108555,9.4118853,0,4,0,-9,0,1,0,-1050.98,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,30,11,40,40,15,1,1,-9,0,34.949406,34.949406,0,0,0,0,0,0,0,0,0,0,0,5.2039127,0,0,0,26.74,56.970001,-9,-9,3,2,3,0,0,9,5,1,633,-24059.133,0,0,3767.7234 -9640,11884,21617,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-993.62744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,38.32,-9,-9,6,1,1,0,0,12,1,1,300,229345.33,0,0,883.6322 -9641,11885,21618,-9,21620,21619,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-858.60492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,780.33331,1380846.3,0,0,3173.2625 -9641,11885,21619,21620,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,0,3,8.5060091,8.8056192,0,2,0,-9,6,0,3,-58.370144,0,0,0,51,2,3,1,2,3,2019,1,2,11,0,41,37,15,1,0,1,0,17.511526,17.511526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.790001,52.25,49.860001,52.970001,6,1,1,0,0,9,4,1,780.33331,1380846.3,0,0,3173.2625 -9641,11885,21620,21619,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,3,7.5960793,7.8382959,0,2,0,-9,6,0,-3,76.979973,0,0,0,54,2,3,1,2,2,2019,1,1,10,0,25,25,15,1,0,1,0,9.1608429,9.1608429,0,0,0,0,0,0,0,0,1,1,0,.97793579,0,0,0,49.860001,52.970001,45.790001,52.25,5,1,1,0,0,9,4,1,780.33331,1380846.3,0,0,3173.2625 -9642,11886,21621,-9,-9,-9,1,1,0,38,2,0,1,0,1,-9,2,1,0,0,4,8.346159,7.8178387,0,4,0,0,0,-9,0,-1153.8939,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,33,11,48,35,15,1,1,-9,0,9.1970959,9.1970959,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.029999,47.130001,-9,-9,3,1,1,0,1,8,4,0,430.5,-15803.73,0,0,2426.0723 -9642,11886,21622,-9,21621,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.0782,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,0,430.5,-15803.73,0,0,2426.0723 -9643,11887,21623,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-985.10724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,48.349998,-9,-9,7,1,1,0,0,6,1,1,523,0,0,0,1181.3438 -9644,11888,21624,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,8.9159746,8.7582874,0,3,0,-9,0,0,0,-1005.106,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,57,37,15,1,1,-9,0,12.100674,12.100674,0,0,0,0,0,0,0,0,0,0,0,4.2873926,0,0,0,27.809999,65.690002,-9,-9,3,1,1,0,0,11,5,0,241,-43459.832,0,0,1063.8295 -9645,11889,21625,21626,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,3,7.7684584,7.6425281,0,1,0,-9,9,0,-21,234.69991,0,0,1,64,3,2,3,-9,-9,2019,2,1,17,4,39,39,15,1,1,4,0,7.6179357,7.6179357,0,0,0,0,0,0,0,2,0,0,0,0,0,4.5996885,2,30.959999,53.290001,46.41,42.57,3,1,1,0,1,4,3,0,551.5,-15219.508,0,0,1036.5258 -9645,11889,21626,21625,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,2,0,6.2092671,5.745049,1,0,-9,23,0,21,49.529457,0,0,0,43,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,5.8163152,10.086879,3,46.41,42.57,30.959999,53.290001,2,1,1,0,0,4,3,0,551.5,-15219.508,0,0,1036.5258 -9646,11890,21627,-9,21629,21628,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.2762976,7.3312254,0,3,0,0,0,-9,0,-991.01099,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,5.1577778,5.1577778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,3,1,168,-76477.422,0,0,1188.8805 -9646,11891,21628,21629,-9,-9,3,1,1,50,1,0,0,0,2,-9,2,1,0,0,5,8.5436602,8.3042631,0,1,0,-9,3,0,2,-17.128424,0,0,0,48,2,4,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,13.559755,13.559755,0,0,0,0,0,0,0,2,0,0,0,3.5755975,0,5.6309347,3,64.959999,43.189999,45.580002,55.84,7,1,1,0,0,9,4,1,916,780120.88,0,0,2708.8604 -9646,11891,21629,21628,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.0993538,8.2224579,0,1,0,-9,3,0,-2,-150.55675,0,0,0,50,2,5,1,2,2,2019,1,3,11,0,34,34,15,1,0,1,0,11.037034,11.037034,0,0,0,0,0,0,0,2,0,0,0,0,0,8.7393217,3,45.580002,55.84,64.959999,43.189999,7,1,1,0,0,9,4,1,916,780120.88,0,0,2708.8604 -9647,11892,21630,21631,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.1338663,8.2438564,0,1,0,-9,3,0,-1,7.892077,0,0,1,31,1,3,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,8.4780378,8.4780378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,6,2,3,0,0,8,5,0,557,415325.69,0,0,3662.8103 -9647,11892,21631,21630,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,8.7343483,8.6533699,0,1,0,-9,3,0,1,-29.077482,0,0,0,30,1,4,1,1,1,2019,1,2,9,0,45,47,15,1,0,1,0,12.607757,12.607757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,5,2,3,0,0,8,5,0,557,415325.69,0,0,3662.8103 -9648,11893,21632,21633,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,0,0,0,1,0,-9,35,0,-1,73.657051,0,0,0,55,2,4,1,2,2,2019,1,1,11,0,0,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.360001,51.57,42.619999,57.189999,6,1,1,0,0,7,3,1,582,571964,0,0,1487.3071 -9648,11893,21633,21632,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.1465616,8.5202389,0,1,0,-9,36,0,1,96.403587,0,0,0,54,3,3,1,1,2,2019,1,2,18,6,40,40,15,1,1,1,0,11.395633,11.395633,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.619999,57.189999,55.360001,51.57,5,1,1,0,0,7,3,1,582,571964,0,0,1487.3071 -9649,11894,21634,21635,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,5.358408,5.5625682,1,0,-9,50,0,-1,-34.430187,0,0,0,75,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.5143585,0,0,59.650002,34.049999,62.029999,36.18,6,1,1,0,0,2,2,1,371.5,723393.75,0,0,2750.7773 -9649,11894,21635,21634,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.2175393,7.1788845,1,0,-9,50,0,1,49.996284,0,0,0,74,3,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1029091,0,0,62.029999,36.18,59.650002,34.049999,6,1,1,0,0,2,2,1,371.5,723393.75,0,0,2750.7773 -9650,11895,21636,21638,-9,-9,2,1,0,36,1,0,1,0,1,-9,2,1,0,0,5,8.7274456,8.7418346,0,2,0,-9,5,0,-1,-128.36668,0,0,1,37,2,5,1,-9,-9,2019,1,1,6,0,38,37,15,1,0,1,0,17.526905,17.526905,0,0,0,0,0,0,0,0,1,1,0,2.4736574,0,0,0,62.389999,56.709999,62.389999,56.709999,7,1,1,0,0,2,4,1,771,459341.22,0,0,2764.4993 -9650,11895,21637,-9,21636,21638,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1102.985,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,2,4,1,771,459341.22,0,0,2764.4993 -9650,11895,21638,21636,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,0,5,7.9743509,8.2864265,0,2,0,-9,5,0,1,-4.7947459,0,0,0,36,1,5,1,2,2,2019,1,2,5,0,37,37,15,1,0,1,0,8.858305,8.858305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,62.389999,56.709999,7,1,1,0,0,2,4,1,771,459341.22,0,0,2764.4993 -9651,11896,21639,21640,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,0,3,8.2575607,8.5783682,0,1,0,-9,3,0,0,33.867748,0,1,0,24,2,4,1,2,2,2019,1,2,11,2,40,49,15,1,0,1,0,11.371025,11.371025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,45.91,59.889999,5,1,1,0,0,6,4,1,367.5,-157840.48,0,0,1753.7026 -9651,11896,21640,21639,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,0,4,7.7062278,7.8302879,0,1,0,-9,3,0,0,-46.268337,0,1,1,24,2,3,1,-9,-9,2019,1,1,13,3,38,38,15,1,0,1,0,8.0655174,8.0655174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,48.450001,57.490002,6,1,1,0,0,6,4,1,367.5,-157840.48,0,0,1753.7026 -9652,11897,21641,-9,21642,21644,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1102.4304,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,4,1,446,505148.81,0,0,4676.9019 -9652,11897,21642,21644,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,8.5875998,8.7634659,0,2,0,-9,24,0,1,-8.7131758,0,0,0,46,2,3,1,2,2,2019,1,2,8,0,45,37,15,1,0,1,0,17.438089,17.438089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.57,50.459999,62,41.73,5,1,1,0,0,4,4,1,446,505148.81,0,0,4676.9019 -9652,11897,21643,-9,21642,21644,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.7235,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,446,505148.81,0,0,4676.9019 -9652,11897,21644,21642,-9,-9,2,1,1,46,1,0,2,0,2,-9,1,1,0,0,3,8.358345,8.5828962,0,2,0,-9,18,0,-1,-85.389725,0,0,0,47,1,4,1,-9,-9,2019,1,1,8,1,45,45,15,1,0,1,0,11.017762,11.017762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62,41.73,51.57,50.459999,6,1,1,0,0,4,4,1,446,505148.81,0,0,4676.9019 -9653,11898,21645,21646,-9,-9,1,1,0,49,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,22,0,0,-20.879198,0,0,0,49,3,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.279999,51.349998,53,55,2,2,3,0,0,4,3,1,1297.5,63899.531,0,0,1800.3726 -9653,11898,21646,21645,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,0,4,8.2696295,8.1575203,0,1,0,-9,7,0,0,59.176464,0,0,0,49,2,3,3,-9,-9,2019,2,1,9,1,40,70,15,1,0,3,0,10.818692,10.818692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,50.279999,51.349998,6,2,3,0,0,4,3,1,1297.5,63899.531,0,0,1800.3726 -9653,11899,21647,-9,21645,21646,3,1,1,30,2,0,0,0,1,-9,2,1,0,0,3,8.2216568,7.7638206,0,3,0,0,0,-9,0,-1042.6328,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,41,35,15,1,0,-9,1,8.4952993,8.4952993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.650002,58.279999,-9,-9,5,2,3,0,0,4,4,1,405,-244145.81,0,0,810.60321 -9653,11900,21648,-9,21645,21646,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,3,7.8690672,8.0827417,0,3,0,0,0,-9,0,-986.02264,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,40,44,15,1,0,-9,1,7.2104182,7.2104182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,58.009998,-9,-9,5,2,3,0,0,4,4,1,129,-192766.44,0,0,561.50305 -9654,11901,21649,-9,-9,-9,1,1,0,49,2,0,2,0,1,-9,2,1,0,0,4,8.9754286,9.1283894,0,2,0,-9,15,0,-2,-34.202904,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,8,0,25,20,15,1,0,-9,0,33.214996,33.214996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.110001,56.110001,51.830002,57.200001,5,1,1,0,0,4,5,1,1599,204931.52,0,0,1915.1904 -9654,11902,21650,-9,-9,-9,2,1,0,51,2,0,2,0,1,-9,2,1,0,0,4,8.8003168,8.6914997,0,2,0,-9,15,0,2,160.6713,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,6,0,46,55,15,1,0,-9,0,15.291561,15.291561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,48.110001,56.110001,6,1,1,0,0,4,5,1,468,601594.44,0,0,1976.2198 -9655,11903,21651,-9,21652,21653,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.4241,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,326.66666,161829.56,0,0,3927.3291 -9655,11903,21652,21653,-9,-9,1,1,0,37,1,1,1,0,1,-9,2,1,0,0,4,8.4931993,8.1907473,0,2,0,-9,4,0,-3,31.675323,0,0,1,40,2,3,1,2,2,2019,1,2,7,1,38,38,15,1,0,1,0,12.478793,12.478793,0,0,0,0,0,0,0,0,1,1,0,.39673507,0,0,0,62.610001,26.17,47.66,52.330002,6,1,1,0,0,5,5,1,326.66666,161829.56,0,0,3927.3291 -9655,11903,21653,21652,-9,-9,2,1,1,40,1,1,1,0,2,-9,2,1,0,0,3,8.3138123,8.6776037,0,2,0,-9,4,0,3,69.327477,0,0,0,37,1,4,1,-9,-9,2019,1,1,6,0,48,52,15,1,0,1,0,10.502216,10.502216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.330002,62.610001,26.17,3,1,1,0,0,5,5,1,326.66666,161829.56,0,0,3927.3291 -9656,11904,21654,21655,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,0,3,8.2055502,8.4214449,6.5948186,1,0,-9,9,0,-5,7.3674631,0,0,0,71,2,4,3,3,3,2019,2,1,6,0,16,35,15,1,0,4,0,26.362169,26.362169,0,0,0,0,0,0,0,0,1,1,0,3.1564417,6.951416,0,0,62.419998,45.639999,54.720001,49.209999,6,1,1,0,0,10,4,1,924.5,772899.38,0,0,4239.355 -9656,11904,21655,21654,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,41,0,5,-22.702276,0,0,0,66,2,3,1,-9,-9,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9862766,0,0,0,54.720001,49.209999,62.419998,45.639999,6,1,1,0,0,10,4,1,924.5,772899.38,0,0,4239.355 -9657,11905,21656,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,6.3211522,8.2910023,7.5973258,3,0,0,0,-9,0,-913.05096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,16,0,15,1,0,-9,0,4.2128096,4.2128096,0,0,0,0,0,0,0,74.5,0,0,0,4.5277553,7.7142091,68.088638,3,57.73,54.529999,-9,-9,6,1,1,0,0,10,4,1,1426,131368.23,0,0,1751.0139 -9657,11906,21657,-9,21656,-9,2,1,1,27,2,0,0,0,2,-9,1,1,0,0,5,7.0413156,7.2175722,0,3,0,0,0,-9,0,-1045.8878,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,3,50,0,15,1,0,-9,1,2.3120837,2.3120837,0,0,0,0,0,0,0,2,0,0,0,3.9857202,0,2.4651804,3,51.389999,59.18,-9,-9,6,1,1,0,0,10,2,1,658,61835.727,0,0,-116.53526 -9658,11907,21658,21659,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,9.364377,9.2301865,0,1,0,-9,6,0,-3,42.977943,0,0,0,59,2,4,1,2,-9,2019,1,2,14,3,48,43,15,1,0,1,0,23.356016,23.356016,0,0,0,0,0,0,0,0,0,0,0,5.7396669,0,0,0,35.130001,45.540001,48.279999,60.18,3,1,1,0,0,11,5,1,780.5,1291383.9,0,0,5538.0186 -9658,11907,21659,21658,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.5577111,7.6730704,0,1,0,-9,6,0,3,28.548424,0,0,0,56,2,3,1,3,-9,2019,1,1,13,1,25,27,15,1,0,1,0,7.5656495,7.5656495,0,0,0,0,0,0,0,101,0,0,0,.63527608,0,119.07415,3,48.279999,60.18,35.130001,45.540001,6,1,1,0,0,11,5,1,780.5,1291383.9,0,0,5538.0186 -9658,11908,21660,-9,21659,21658,4,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,8.2853079,8.4411249,0,3,0,-9,0,-9,0,-854.87653,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,55,0,15,1,0,-9,1,8.2428417,8.2428417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,2,1,1,0,0,11,4,1,192,175753.34,0,0,618.12305 -9658,11909,21661,-9,21659,21658,3,1,0,21,2,0,0,0,2,1,2,1,0,0,3,5.9606547,6.0080156,0,3,0,0,0,-9,0,-1078.486,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,44,0,15,1,0,-9,1,.83621973,.83621973,0,0,0,0,0,0,0,0,0,0,0,.84579605,0,0,0,35.669998,56.59,-9,-9,4,1,1,0,0,11,2,1,351,-64966.688,0,0,-503.73343 -9659,11910,21662,21663,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.5882101,8.2039661,1,0,-9,42,0,-3,21.930759,0,0,0,73,1,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.2190986,7.9414396,0,2,68.57,41.34,57.060001,57.759998,6,1,1,0,0,9,5,1,1723,9028844,0,0,8609.2686 -9659,11910,21663,21662,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,5,0,9.1684675,9.0771179,1,0,-9,42,0,3,.79545569,0,0,0,70,1,4,3,1,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2686176,8.6085129,0,0,57.060001,57.759998,68.57,41.34,6,1,1,0,0,9,5,1,1723,9028844,0,0,8609.2686 -9660,11911,21664,21665,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,0,6.866797,6.8925204,1,0,-9,40,0,-2,-107.48788,0,0,0,62,1,4,1,2,1,2019,3,2,5,0,0,5,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3142674,6.9864645,0,0,60.119999,54.799999,60.119999,54.799999,7,1,1,0,0,6,5,1,742,614393.38,0,0,4877.8916 -9660,11911,21665,21664,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,4,9.5455256,9.2986927,6.9286141,1,0,-9,40,0,2,-44.896854,0,0,0,60,2,4,3,3,2,2019,2,1,6,0,40,45,15,1,0,4,0,33.898006,33.898006,0,0,0,0,0,0,0,0,0,0,0,4.3070459,7.6261268,0,0,60.119999,54.799999,60.119999,54.799999,7,1,1,0,0,6,5,1,742,614393.38,0,0,4877.8916 -9661,11912,21666,21667,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,23,0,11,0,0,0,0,70,3,2,3,3,3,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,1,0,.26431289,0,0,0,0,7,0,0,0,0,0,9.0043068,1,29.780001,17.809999,37.43,17,6,1,1,0,0,5,1,0,579.5,457409.81,0,0,0 -9661,11912,21667,21666,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,24,0,-11,0,0,0,0,81,3,1,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,37.43,17,29.780001,17.809999,7,1,1,0,0,5,1,0,579.5,457409.81,0,0,0 -9662,11913,21668,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,0,3,0,4.5872154,4.8992081,3,0,0,0,-9,0,-968.00854,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,4,0,12,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9895096,4.5299211,0,0,48.700001,38.259998,-9,-9,6,1,1,0,0,9,1,1,409,159694.84,0,0,898.25476 -9663,11914,21669,-9,21670,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1116.8325,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.09,45.220001,-9,-9,6,1,1,0,0,4,3,1,672,-72185.609,0,0,0 -9663,11915,21670,21671,-9,-9,1,1,0,55,1,0,2,0,1,-9,2,1,0,0,3,8.1972914,8.4270535,7.1241093,2,0,-9,4,0,-12,-81.05645,0,0,0,67,3,4,3,3,3,2019,2,4,11,2,23,38,15,1,0,4,0,15.174059,15.174059,0,0,0,0,0,0,0,0,1,1,0,0,7.271956,0,0,36.619999,60.23,62.490002,55.09,6,1,1,0,0,4,3,1,388.33334,267264.88,0,0,3320.0479 -9663,11915,21671,21670,-9,-9,4,1,1,67,1,0,2,0,3,-9,4,3,0,0,4,0,7.0189161,7.4726624,2,0,-9,4,0,12,107.30675,0,0,0,55,1,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1999769,0,0,62.490002,55.09,36.619999,60.23,7,1,1,0,0,4,3,1,388.33334,267264.88,0,0,3320.0479 -9663,11915,21672,-9,21670,-9,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-962.07007,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,-9,-9,5,1,1,0,0,4,3,1,388.33334,267264.88,0,0,3320.0479 -9664,11916,21673,-9,21674,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1051.6805,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,5,0,633,1226075.6,0,0,7466.4438 -9664,11916,21674,-9,-9,-9,1,1,0,43,3,1,2,0,1,-9,2,1,0,0,5,9.9220018,9.6647301,0,4,0,0,0,-9,0,-978.71802,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,40,15,1,0,-9,0,56.99614,56.99614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,8,5,0,633,1226075.6,0,0,7466.4438 -9664,11916,21675,-9,21674,-9,2,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1079.6086,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,0,633,1226075.6,0,0,7466.4438 -9665,11917,21676,21678,-9,-9,2,1,1,34,1,1,2,0,1,-9,1,1,0,0,4,8.6790066,9.0248737,0,2,0,-9,6,0,-1,-12.779675,0,0,0,35,1,5,1,-9,-9,2019,1,1,6,1,45,30,15,1,0,1,0,17.847221,17.847221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,54.689999,57.470001,5,1,1,0,0,10,4,0,937,414217.69,0,0,4323.5947 -9665,11917,21677,-9,21678,21676,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.5536,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,937,414217.69,0,0,4323.5947 -9665,11917,21678,21676,-9,-9,1,1,0,35,1,1,2,0,1,-9,5,1,0,0,5,7.3435683,7.3215456,0,2,0,-9,6,0,1,-22.443926,0,0,1,34,1,4,1,2,-9,2019,1,2,5,0,23,22,15,1,0,1,0,6.8463831,6.8463831,0,0,0,0,0,0,0,0,1,1,0,3.9627762,0,0,0,54.689999,57.470001,55.34,54.259998,6,1,1,0,0,10,4,0,937,414217.69,0,0,4323.5947 -9665,11917,21679,-9,21678,21676,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-979.06665,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,937,414217.69,0,0,4323.5947 -9666,11918,21680,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1094.8627,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.40876409,0,12.440291,3,47.16,43.099998,-9,-9,3,1,1,0,0,10,1,0,1557,252126.88,0,0,805.65924 -9667,11919,21681,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.9479761,8.6886597,0,1,0,-9,5,0,1,20.979645,0,0,0,-9,-9,-9,-9,1,1,2019,-9,2,13,3,37,35,15,1,0,-9,0,23.117104,23.117104,0,0,0,0,0,0,0,0,0,0,0,1.7017124,0,0,0,35.91,63.189999,49,58,6,1,1,0,0,8,5,0,689,423327,0,0,3196.9392 -9668,11920,21682,21685,-9,-9,1,1,0,35,1,0,2,0,1,1,2,1,0,0,4,8.4010983,8.7908421,0,2,0,-9,7,0,-14,-77.571617,-9,0,1,49,1,3,1,1,2,2019,1,2,11,2,24,0,15,1,0,1,0,20.94953,20.94953,0,0,0,0,0,0,0,0,1,1,0,1.8167902,0,0,0,48,57,52.970001,51.290001,5,1,1,0,0,6,5,1,797.5,488349.84,0,0,4818.73 -9668,11920,21683,-9,21682,21685,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.71527,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,5,1,797.5,488349.84,0,0,4818.73 -9668,11920,21684,-9,21682,21685,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.02118,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,5,1,797.5,488349.84,0,0,4818.73 -9668,11920,21685,21682,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,3,9.2416687,9.15166,0,2,0,-9,7,0,14,-25.845371,0,0,0,35,1,4,1,-9,-9,2019,1,1,17,6,49,0,15,1,1,1,0,16.907476,16.907476,0,0,0,0,0,0,0,0,1,1,0,4.403914,0,0,0,52.970001,51.290001,48,57,6,1,1,0,0,6,5,1,797.5,488349.84,0,0,4818.73 -9669,11921,21686,-9,-9,-9,1,1,1,66,3,0,1,0,2,-9,4,3,0,0,4,0,6.340982,6.3480887,4,0,0,0,-9,0,-889.95813,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,36,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5279026,0,0,62.490002,55.09,-9,-9,5,3,4,0,0,8,2,0,63,241759.53,0,0,510.76282 -9670,11922,21687,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,1,0,5.9662423,6.1837363,3,0,0,0,-9,0,-1027.373,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1935654,0,0,46.110001,22.299999,-9,-9,4,1,1,0,0,6,2,1,2843,504147.34,0,0,1467.298 -9671,11923,21688,21689,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,2,-6.5401921,0,0,0,84,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,4.1578121,0,0,0,0,0,1,1,0,0,0,0,0,39.009998,41.419998,48.540001,46.619999,6,1,1,0,0,8,2,1,571,306476.31,0,0,1200.5563 -9671,11923,21689,21688,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,6.5271034,6.7838864,1,0,-9,7,0,-2,2.9410603,0,0,0,86,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.452363,6.9504561,0,0,48.540001,46.619999,39.009998,41.419998,5,1,1,0,0,8,2,1,571,306476.31,0,0,1200.5563 -9672,11924,21690,-9,21692,21693,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,1636,693846.44,0,0,5452.7373 -9672,11924,21691,-9,21692,21693,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.4581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,1636,693846.44,0,0,5452.7373 -9672,11924,21692,21693,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,0,4,7.9937286,7.9374237,0,2,0,-9,5,0,-1,-75.441696,0,0,1,41,2,3,1,-9,-9,2019,1,1,11,0,22,23,15,1,0,1,0,19.363417,19.363417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.630001,59.720001,60.290001,52.110001,6,1,1,0,0,7,5,1,1636,693846.44,0,0,5452.7373 -9672,11924,21693,21692,-9,-9,1,1,1,41,1,0,3,0,2,-9,2,1,0,0,3,9.8634987,9.1436081,0,2,0,-9,5,0,1,68.17141,0,0,0,40,2,4,1,2,2,2019,1,2,9,0,50,37,15,1,0,1,0,24.522146,24.522146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,46.630001,59.720001,2,1,1,0,0,7,5,1,1636,693846.44,0,0,5452.7373 -9672,11924,21694,-9,21692,21693,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,5,1,1636,693846.44,0,0,5452.7373 -9673,11925,21695,21696,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-4,74.944931,0,0,0,77,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2443848,0,0,0,54.959999,53.169998,46.389999,60.990002,7,1,1,0,0,10,2,1,344.5,1015286,0,0,957.8208 -9673,11925,21696,21695,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.6095796,7.5623922,1,0,-9,7,0,4,-2.2734015,0,0,0,73,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4605141,0,0,46.389999,60.990002,54.959999,53.169998,6,1,1,0,0,10,2,1,344.5,1015286,0,0,957.8208 -9674,11926,21697,21698,-9,-9,1,1,0,39,1,0,0,0,2,-9,2,1,0,1,1,8.3091631,8.3528843,0,1,0,-9,2,0,1,23.185467,0,0,1,38,2,2,3,-9,-9,2019,2,2,14,3,30,30,15,1,0,3,0,15.31086,15.31086,0,0,0,0,0,0,0,2,1,1,0,0,0,5.5641499,3,43.779999,22.129999,25.950001,41.209999,3,1,1,0,0,5,4,1,281.5,-134198.64,0,0,2233.7012 -9674,11926,21698,21697,-9,-9,2,1,1,38,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,2,0,-1,-150.48196,0,0,0,39,2,1,1,-9,-9,2019,3,1,25,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.950001,41.209999,43.779999,22.129999,3,1,1,0,0,5,4,1,281.5,-134198.64,0,0,2233.7012 -9675,11927,21699,-9,21701,21700,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.7247,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,1,0,460.33334,89465.266,0,0,33.210491 -9675,11927,21700,21701,-9,-9,1,1,1,39,1,0,1,0,3,-9,2,1,0,0,5,0,0,0,2,0,-9,2,0,9,0,0,0,0,30,2,5,1,2,2,2019,1,2,11,1,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.419998,60.529999,58.450001,47.52,3,1,1,0,0,10,1,0,460.33334,89465.266,0,0,33.210491 -9675,11927,21701,21700,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,0,5,0,0,0,2,0,-9,2,0,0,0,0,0,1,39,3,5,1,-9,-9,2019,1,1,10,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43179616,0,0,0,58.450001,47.52,48.419998,60.529999,4,1,1,0,0,10,1,0,460.33334,89465.266,0,0,33.210491 -9676,11928,21702,-9,21705,21704,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.559,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,950.75,86166.203,0,0,3107.592 -9676,11928,21703,-9,21705,21704,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.4087,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,950.75,86166.203,0,0,3107.592 -9676,11928,21704,21705,-9,-9,1,1,1,46,1,1,2,0,2,-9,2,1,0,0,4,8.5076132,8.3844662,0,2,0,-9,9,0,15,10.639825,0,0,0,31,1,3,1,-9,-9,2019,1,2,9,0,112,56,15,1,0,1,0,5.5605798,5.5605798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,29.870001,62.189999,6,1,1,0,0,12,4,1,950.75,86166.203,0,0,3107.592 -9676,11928,21705,21704,-9,-9,2,1,0,31,1,1,2,0,1,-9,2,1,0,0,3,6.6585412,6.580534,0,2,0,-9,9,0,-15,-66.34201,0,0,1,46,2,4,1,2,2,2019,1,1,13,2,24,16,15,1,0,1,0,4.0274315,4.0274315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.870001,62.189999,57.759998,54.509998,1,1,1,0,0,12,4,1,950.75,86166.203,0,0,3107.592 -9677,11929,21706,21707,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.5666914,8.50842,0,2,0,-9,5,-9,1,-31.282825,-9,0,0,41,2,3,1,-9,-9,2019,1,1,9,1,35,0,15,1,0,1,0,14.923482,14.923482,0,0,0,0,0,0,0,0,1,1,0,3.3892698,0,0,0,51,56,32.84,60.849998,6,1,1,0,0,10,3,1,965,329099.63,0,0,3536.3408 -9677,11929,21707,21706,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,1,3,6.9656854,6.6684494,0,2,0,-9,5,-9,-1,-21.251442,-9,0,1,42,1,4,1,2,2,2019,1,2,20,7,16,0,15,1,1,1,0,7.7118363,7.7118363,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.771515,1,32.84,60.849998,51,56,2,1,1,0,0,10,3,1,965,329099.63,0,0,3536.3408 -9677,11929,21708,-9,21707,21706,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1040.9148,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,965,329099.63,0,0,3536.3408 -9677,11929,21709,-9,21707,21706,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1052.7153,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,3,1,965,329099.63,0,0,3536.3408 -9678,11930,21710,21711,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,8.3942003,8.0516644,1,0,-9,55,0,4,124.5815,0,0,0,74,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6430886,8.2895889,0,0,66.529999,29.99,57.490002,47.77,6,1,1,0,0,7,3,1,400.5,2032880.4,0,0,4106.9058 -9678,11930,21711,21710,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-4,104.77821,0,0,0,78,1,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.6474547,0,3.3888893,3,57.490002,47.77,66.529999,29.99,6,1,1,0,0,7,3,1,400.5,2032880.4,0,0,4106.9058 -9679,11931,21712,-9,21713,21714,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.56628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,904,176464.72,0,0,3436.3667 -9679,11931,21713,21714,-9,-9,1,1,0,37,1,0,2,0,1,-9,1,1,0,0,4,7.1866431,7.1058974,0,2,0,-9,10,0,0,-65.638237,0,0,1,37,1,4,1,2,2,2019,1,2,7,1,2,12,15,1,0,1,0,71.037842,71.037842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,55.580002,51.830002,57.200001,6,1,1,0,0,10,5,1,904,176464.72,0,0,3436.3667 -9679,11931,21714,21713,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,0,4,8.8228931,9.1503925,0,2,0,-9,10,0,0,-43.53577,0,0,0,37,1,4,1,1,1,2019,1,1,8,0,42,50,15,1,0,1,0,26.162512,26.162512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.400002,55.580002,6,1,1,0,0,10,5,1,904,176464.72,0,0,3436.3667 -9679,11931,21715,-9,21713,21714,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.91858,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,904,176464.72,0,0,3436.3667 -9680,11932,21716,21718,-9,-9,1,1,1,36,1,0,1,0,1,-9,2,1,0,0,4,8.9933405,8.9098959,0,2,0,-9,12,0,-7,145.47037,0,0,0,43,1,4,1,2,1,2019,1,2,8,0,45,45,15,1,0,1,0,15.653316,15.653316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,57.16,56.150002,6,3,4,0,0,12,5,1,878,188379.39,0,0,3709.553 -9680,11932,21717,-9,21718,21716,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-851.20874,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,5,1,878,188379.39,0,0,3709.553 -9680,11932,21718,21716,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,0,4,8.856184,8.9391632,0,2,0,-9,6,0,7,11.341482,0,0,1,36,1,4,1,-9,-9,2019,1,1,8,0,20,19,15,1,0,1,0,49.401772,49.401772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.77,58.57,6,1,1,0,0,12,5,1,878,188379.39,0,0,3709.553 -9681,11933,21719,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,2,8.5598679,8.1917515,0,3,0,0,0,-9,0,-998.91858,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,55,50,15,1,0,-9,0,9.6967869,9.6967869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.720001,48.779999,-9,-9,3,1,1,0,0,9,5,1,38,238170.63,0,0,986.14386 -9682,11934,21720,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,2,7.4718432,7.6566944,0,3,0,0,0,-9,0,-988.04358,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,26,28,15,1,1,-9,0,9.3150778,9.3150778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,36.57,-9,-9,4,1,1,0,0,7,3,1,518,-49388.191,0,0,558.67584 -9683,11935,21721,-9,21724,-9,4,1,1,16,2,1,3,1,3,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1124.6826,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.639999,50.48,-9,-9,7,1,1,0,0,7,2,0,553,25538.107,0,0,1446.3728 -9683,11935,21722,-9,21724,21725,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-886.93884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,0,553,25538.107,0,0,1446.3728 -9683,11935,21723,-9,21724,-9,3,1,0,12,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.6423,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,7,2,0,553,25538.107,0,0,1446.3728 -9683,11935,21724,21725,-9,-9,2,1,0,37,1,1,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,4,0,12,-29.065279,0,0,1,25,2,4,1,-9,-9,2019,3,1,19,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,58.040001,61.509998,44.560001,2,1,1,0,0,7,2,0,553,25538.107,0,0,1446.3728 -9683,11935,21725,21724,-9,-9,1,1,1,25,1,1,3,0,2,-9,2,1,0,0,4,7.7827768,8.0807095,0,2,0,-9,4,0,-12,-81.901932,0,1,0,37,2,5,3,-9,-9,2019,2,2,10,1,46,45,15,1,0,3,0,7.8864679,7.8864679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.509998,44.560001,35.57,58.040001,6,1,1,0,0,7,2,0,553,25538.107,0,0,1446.3728 -9684,11936,21726,21727,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,46,0,0,6.1700635,-9,0,0,66,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.8046504,0,0,3,58.150002,52.91,53.5,51.02,6,1,1,0,0,6,5,1,443,1309712,0,0,6818.2065 -9684,11936,21727,21726,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,9.2841501,9.2847185,1,0,-9,46,0,0,-62.583557,0,0,0,66,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.0556326,9.3585663,11.583413,3,53.5,51.02,58.150002,52.91,6,1,1,0,0,6,5,1,443,1309712,0,0,6818.2065 -9685,11937,21728,21729,-9,-9,1,1,0,52,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,9,0,2,0,0,0,0,50,2,2,1,3,3,2019,3,2,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.18856,0,0,0,32.970001,18.82,47.400002,39.330002,2,1,1,0,0,11,1,1,882,36825.109,0,0,1390.7117 -9685,11937,21729,21728,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,9,0,-2,0,0,0,0,52,2,1,3,-9,-9,2019,2,1,12,1,0,47,15,1,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.634575,1,47.400002,39.330002,32.970001,18.82,3,1,1,0,0,11,1,1,882,36825.109,0,0,1390.7117 -9686,11938,21730,21731,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,1,2,0,8.0597334,8.0203476,1,0,-9,7,0,1,22.80632,0,0,0,74,2,2,3,3,3,2019,4,2,14,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.2518024,8.0835962,0,0,44.610001,21.43,45.470001,23.9,5,1,1,0,0,2,3,1,921,832369.5,0,0,3692.8569 -9686,11938,21731,21730,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,7,0,-1,-1.3676804,0,0,0,75,2,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,1.5962245,0,33.463036,1,45.470001,23.9,44.610001,21.43,3,1,1,0,0,2,3,1,921,832369.5,0,0,3692.8569 -9687,11939,21732,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,8.428854,8.3549929,0,3,0,0,0,-9,0,-1054.5092,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,36,36,15,1,1,-9,0,16.004757,16.004757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,9,4,1,207,162123.5,0,0,1306.9246 -9688,11940,21733,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,8,3,1,1,1,0,6.6798749,6.4632273,3,0,-9,0,-9,0,-1042.9146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5597472,0,0,44.799999,21.809999,-9,-9,5,1,1,0,1,11,2,0,745,569221.69,0,0,1463.7062 -9689,11941,21734,-9,21738,21735,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1144.3936,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,2,1,564.40002,52772.641,0,0,2005.3351 -9689,11941,21735,21738,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,0,4,7.6986136,7.8075194,0,2,0,-9,5,0,7,83.993126,0,0,0,34,3,5,1,-9,-9,2019,1,1,6,0,32,33,15,1,0,1,0,7.7332621,7.7332621,0,0,0,0,0,0,0,0,1,1,0,5.0050521,0,0,0,45.68,47.599998,41.07,60.93,7,1,1,0,0,11,2,1,564.40002,52772.641,0,0,2005.3351 -9689,11941,21736,-9,21738,21735,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.22589,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,564.40002,52772.641,0,0,2005.3351 -9689,11941,21737,-9,21738,21735,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.0105,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,1,564.40002,52772.641,0,0,2005.3351 -9689,11941,21738,21735,-9,-9,1,1,0,34,1,0,3,0,3,-9,2,1,0,0,5,6.793622,6.4087453,0,2,0,-9,5,0,-7,47.148739,0,0,1,41,2,4,1,-9,-9,2019,1,2,6,0,18,18,15,1,0,1,0,4.5230589,4.5230589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,45.68,47.599998,4,1,1,0,0,11,2,1,564.40002,52772.641,0,0,2005.3351 -9690,11942,21739,-9,21740,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.35004,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,10,4,1,1019.6667,459646.19,0,0,3657.9714 -9690,11942,21740,-9,-9,-9,1,1,0,50,3,0,2,0,1,-9,2,1,0,0,2,8.3222857,8.8887033,7.8107963,4,0,0,0,-9,0,-1016.7079,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,38,38,15,1,1,-9,0,12.775301,12.775301,0,0,0,0,0,0,0,0,1,1,0,7.6995387,0,0,0,40.639999,42.43,-9,-9,6,1,1,0,0,10,4,1,1019.6667,459646.19,0,0,3657.9714 -9690,11942,21741,-9,21740,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-855.23859,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,10,4,1,1019.6667,459646.19,0,0,3657.9714 -9691,11943,21742,-9,-9,21743,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-961.17255,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,4,3,1,555,116243.98,0,0,1480.8306 -9691,11943,21743,-9,-9,-9,1,1,1,46,3,0,1,0,2,-9,2,1,0,0,1,7.7604661,7.8601851,0,4,0,-9,0,1,0,-935.09985,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,39,39,15,1,0,-9,0,7.5165372,7.5165372,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.610001,19.09,-9,-9,2,4,2,0,0,4,3,1,555,116243.98,0,0,1480.8306 -9692,11944,21744,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,1,3,0,5.3043056,5.4099741,3,0,0,0,-9,0,-972.25031,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9204817,5.1618576,0,0,40.540001,40.529999,-9,-9,6,1,1,0,0,2,2,1,237,278307.03,0,0,69.756523 -9693,11945,21745,21746,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,5,7.7991467,7.5917315,0,1,0,-9,26,0,-8,50.582558,0,0,1,49,2,2,1,-9,-9,2019,1,1,7,0,20,20,15,1,0,1,0,10.691343,10.691343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.32,45.349998,36.779999,53.77,6,1,1,0,0,5,4,0,193.5,-54403.422,0,0,2225.8472 -9693,11945,21746,21745,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,2,8.0434952,8.0617218,0,1,0,-9,26,0,8,50.324173,0,0,0,41,2,5,1,-9,-9,2019,1,2,22,10,45,40,15,1,1,1,0,8.1474857,8.1474857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.779999,53.77,60.32,45.349998,5,1,1,0,0,5,4,0,193.5,-54403.422,0,0,2225.8472 -9693,11946,21747,-9,21745,21746,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,5,6.0805554,5.9226117,0,3,0,0,0,-9,0,-1035.1011,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,16,0,15,1,0,-9,1,2.9028494,2.9028494,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,5,2,0,573,-7707.7515,0,0,219.27036 -9694,11947,21748,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,6.0600939,5.8397632,3,0,0,0,-9,0,-1114.2087,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,20,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8203893,0,0,56.32,52.349998,-9,-9,6,1,1,0,0,13,2,1,357,452289.63,0,0,1601.1782 -9695,11948,21749,21750,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.9826412,9.2067766,0,1,0,-9,8,0,1,-1.6703429,0,0,1,32,1,3,1,2,1,2019,1,2,10,0,51,51,15,1,0,1,0,20.625887,20.625887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.560001,60.259998,28.49,46.240002,6,1,1,0,0,9,5,1,654.5,523744.28,0,0,4927.6348 -9695,11948,21750,21749,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,3,9.0808392,8.7532959,0,1,0,-9,8,0,-1,27.92881,0,0,0,33,1,4,1,-9,-9,2019,1,1,12,1,38,37,15,1,0,1,0,27.541412,27.541412,0,0,0,0,0,0,0,0,0,0,0,2.9240212,0,0,0,28.49,46.240002,45.560001,60.259998,5,1,1,0,0,9,5,1,654.5,523744.28,0,0,4927.6348 -9696,11949,21751,-9,21754,21753,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1022.4231,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,5,1,848.25,833512.94,0,0,4529.6992 -9696,11949,21752,-9,21754,21753,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1081.9586,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,4,2,0,0,8,5,1,848.25,833512.94,0,0,4529.6992 -9696,11949,21753,21754,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.3849611,9.1117239,0,2,0,-9,1,-9,-2,167.13597,-9,0,0,45,1,3,1,-9,-9,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9896231,0,0,0,51,56,54.369999,54.799999,6,2,3,0,0,8,5,1,848.25,833512.94,0,0,4529.6992 -9696,11949,21754,21753,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,3,8.0251265,7.7319379,0,2,0,-9,15,-9,2,-109.18575,-9,0,0,43,1,4,1,-9,-9,2019,1,2,8,0,23,0,15,1,0,1,0,11.596788,11.596788,0,0,0,0,0,0,0,0,0,0,0,1.7948151,0,0,0,54.369999,54.799999,51,56,7,4,2,0,0,8,5,1,848.25,833512.94,0,0,4529.6992 -9697,11950,21755,21756,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,7.6005211,7.3612199,0,1,0,-9,6,0,-11,-11.596966,0,0,1,54,2,5,1,-9,-9,2019,1,1,15,4,42,37,15,1,1,1,0,6.2949352,6.2949352,0,0,0,0,0,0,0,7,0,0,0,0,0,8.9521036,3,39.110001,56.52,62.389999,56.709999,4,1,1,0,0,4,5,0,1245,3277630.3,0,0,2974.5547 -9697,11950,21756,21755,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,5,8.7473221,8.7188139,0,1,0,-9,6,0,11,-44.00597,0,0,0,43,2,4,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,19.020033,19.020033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,39.110001,56.52,7,1,1,0,0,4,5,0,1245,3277630.3,0,0,2974.5547 -9698,11951,21757,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.5863552,8.0728912,0,3,0,0,0,-9,0,-1007.6816,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,35,35,15,1,0,-9,0,14.688784,14.688784,0,0,0,0,0,0,0,0,1,1,0,1.9046377,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,2,4,1,470,16900.311,0,0,2343.3311 -9699,11952,21758,21759,-9,-9,1,1,1,22,1,0,0,0,2,-9,11,3,0,0,3,7.5100303,7.7609801,0,1,0,-9,2,0,0,-69.807777,0,1,0,22,1,3,1,2,2,2019,3,2,14,4,35,37,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.190001,63.779999,43.650002,58.279999,6,1,1,0,0,1,4,1,552.5,42010.086,0,0,2572.3584 -9699,11952,21759,21758,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,0,3,8.2685022,8.1150599,0,1,0,-9,2,0,0,13.84665,0,1,1,22,2,3,3,-9,-9,2019,2,1,18,7,45,40,15,1,1,3,0,8.1157122,8.1157122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.650002,58.279999,23.190001,63.779999,6,1,1,0,0,1,4,1,552.5,42010.086,0,0,2572.3584 -9700,11953,21760,-9,21761,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1074.3022,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,2,0,954,196384.73,0,0,698.96326 -9700,11953,21761,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,2,1,0,0,3,7.3358641,7.1455059,0,4,0,-9,0,0,0,-952.14276,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,3,20,12,15,1,0,-9,0,7.7642608,7.7642608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,-9,-9,2,1,1,0,0,12,2,0,954,196384.73,0,0,698.96326 -9701,11954,21762,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,0,5,9.914566,9.8699713,7.1979585,4,0,0,0,-9,0,-867.03455,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,0,0,38,48,15,1,0,-9,0,43.492531,43.492531,0,0,0,0,0,0,0,0,1,1,0,7.360117,4.3299699,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,5,1,172,149170.61,0,0,7327.8203 -9701,11955,21763,-9,21762,-9,2,1,0,19,2,0,1,0,2,1,2,1,0,0,4,7.2271852,6.9326868,0,3,0,0,0,-9,0,-840.78821,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.12332471,0,0,0,47,58,-9,-9,5,1,1,0,0,9,2,1,1121,139376.16,0,0,467.31497 -9702,11956,21764,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,3,3,0,0,2,0,5.9213452,6.1570158,3,0,0,0,-9,0,-1002.3289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3893533,5.8419905,0,0,45.02,36.139999,-9,-9,6,1,1,1,0,7,2,1,812,1041043.8,0,0,399.62241 -9702,11957,21765,-9,21764,-9,2,1,0,32,2,0,0,0,2,-9,1,1,0,0,5,6.5991626,6.4047561,0,3,0,0,0,-9,0,-929.56879,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,30,30,15,1,0,-9,1,3.1098769,3.1098769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.919998,62.310001,-9,-9,5,1,1,0,0,7,2,1,433,-9166.7773,0,0,772.99048 -9703,11958,21766,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,0,4,0,7.8034391,8.1735115,3,0,0,0,-9,0,-1013.3578,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5738163,7.552289,0,0,51.48,42.439999,-9,-9,4,2,3,0,0,8,3,1,2252,697851.06,0,0,1658.2485 -9704,11959,21767,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,3,8.2924423,8.4841051,5.6566606,4,0,0,0,-9,0,-957.26489,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,64,15,1,0,-9,0,15.932672,15.932672,0,0,0,0,0,0,0,0,1,1,0,5.8373542,0,0,0,51.27,45.41,-9,-9,6,1,1,0,0,6,4,0,1453,-14501.591,0,0,2319.9119 -9704,11959,21768,-9,21767,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1018.2003,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,0,1453,-14501.591,0,0,2319.9119 -9705,11960,21769,21770,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,8.7198668,8.735157,5.8772049,2,0,-9,3,0,-1,-58.837486,0,0,1,42,1,2,1,-9,-9,2019,1,1,34,12,45,41,15,1,1,1,0,14.130488,14.130488,0,0,0,0,0,0,0,0,1,1,0,6.6398702,0,0,0,19.940001,64.129997,38.959999,49.880001,3,1,1,0,0,6,5,1,486,665301.38,0,0,3874.4106 -9705,11960,21770,21769,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,2,8.7100363,8.8309107,0,2,0,-9,3,0,1,174.5369,0,0,0,41,1,3,1,-9,-9,2019,1,2,15,5,42,43,15,1,1,1,0,16.864202,16.864202,0,0,0,0,0,0,0,0,1,1,0,.11938162,0,0,0,38.959999,49.880001,19.940001,64.129997,5,1,1,0,0,6,5,1,486,665301.38,0,0,3874.4106 -9705,11960,21771,-9,21769,21770,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-885.88928,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,486,665301.38,0,0,3874.4106 -9705,11960,21772,-9,21769,21770,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1012.0715,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,6,5,1,486,665301.38,0,0,3874.4106 -9706,11961,21773,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,4.9875493,4.8563185,3,0,0,0,-9,0,-1007.4935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.2379874,4.7892575,0,0,43.549999,32.5,-9,-9,5,1,1,0,0,8,2,1,326,458442.38,0,0,2875.0759 -9707,11962,21774,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,0,3,8.2352514,8.2007456,0,3,0,-9,0,-9,0,-1018.0486,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,37,0,15,1,0,-9,0,13.79671,13.79671,0,0,0,0,0,0,0,27.5,0,0,0,0,0,33.923054,3,45.82,52.23,-9,-9,4,1,1,0,0,2,4,0,396,244086.08,0,0,1857.502 -9708,11963,21775,21776,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.6984973,7.9925818,0,1,0,-9,21,0,0,19.749073,-9,0,0,55,2,4,1,2,1,2019,1,2,12,0,43,0,15,1,0,1,0,7.0711246,7.0711246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,54.669998,59.529999,56.439999,6,2,3,0,0,11,5,1,244,727579.06,0,0,3005.0732 -9708,11963,21776,21775,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.6987343,8.5326204,0,1,0,-9,21,0,9,-25.280222,0,0,0,46,2,4,1,-9,-9,2019,1,1,6,0,38,39,15,1,0,1,0,15.593521,15.593521,0,0,0,0,0,0,0,0,0,0,0,2.8831491,0,0,0,59.529999,56.439999,43.09,54.669998,7,1,1,0,0,11,5,1,244,727579.06,0,0,3005.0732 -9709,11964,21777,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,7.892231,7.7042246,0,3,0,0,0,-9,0,-979.20935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,1,40,45,15,1,0,-9,0,8.2066336,8.2066336,0,0,0,0,0,0,0,2,1,1,0,0,0,6.213172,3,55.509998,40.830002,-9,-9,4,1,1,0,0,6,3,1,233,616346.81,0,0,2155.3066 -9710,11965,21778,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1055.8093,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,30.67,-9,-9,3,1,1,0,0,13,1,0,1284,119321.59,0,0,328.84485 -9711,11966,21779,21780,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,9.0381346,9.1506586,0,1,0,-9,2,0,6,-124.85799,0,0,0,24,2,4,1,-9,-9,2019,1,1,8,0,61,53,15,1,0,1,0,16.553097,16.553097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,9,5,0,1118,511470.69,0,0,3868.6489 -9711,11966,21780,21779,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,4,8.0450268,8.2534714,0,1,0,-9,2,0,-6,111.03985,0,1,1,30,2,4,1,2,2,2019,1,2,8,1,38,43,15,1,0,1,0,10.438622,10.438622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,9,5,0,1118,511470.69,0,0,3868.6489 -9712,11967,21781,21782,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,5.9656968,5.6959825,1,0,-9,7,0,-2,-61.816608,0,0,0,65,2,3,1,3,3,2019,3,1,11,0,0,23,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8944287,0,0,47.959999,49.830002,59.889999,34.630001,5,1,1,0,0,11,5,1,260.5,526276.25,0,0,3897.8074 -9712,11967,21782,21781,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,8.2609167,8.648159,7.3599672,1,0,-9,7,0,2,55.308773,0,0,0,63,3,3,3,3,3,2019,2,2,10,0,48,45,15,1,0,4,0,13.954722,13.954722,0,0,0,0,0,0,0,0,1,1,0,5.715404,7.6865163,0,0,59.889999,34.630001,47.959999,49.830002,5,1,1,0,0,11,5,1,260.5,526276.25,0,0,3897.8074 -9713,11968,21783,21785,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,3,8.7064037,8.3458309,0,2,0,-9,9,0,-4,20.146158,0,0,0,39,2,3,1,2,2,2019,1,1,28,12,55,58,15,1,1,1,0,9.0462675,9.0462675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.16,63.189999,49.049999,47.830002,4,1,1,0,0,7,4,1,604.75,505107.88,0,0,3152.0166 -9713,11968,21784,-9,21785,21783,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.7603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,604.75,505107.88,0,0,3152.0166 -9713,11968,21785,21783,-9,-9,1,1,0,39,1,0,2,0,2,-9,1,1,0,0,3,6.9014325,7.0396361,0,2,0,-9,9,0,4,100.59546,0,0,1,35,2,3,1,2,2,2019,1,2,11,0,30,16,15,1,0,1,0,5.0862055,5.0862055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.049999,47.830002,30.16,63.189999,4,1,1,0,0,7,4,1,604.75,505107.88,0,0,3152.0166 -9713,11968,21786,-9,21785,21783,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.5228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,604.75,505107.88,0,0,3152.0166 -9714,11969,21787,-9,21789,21788,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.15692,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,4,1,1592.75,-13741.455,0,0,1960.4011 -9714,11969,21788,21789,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,8.6572676,8.7917252,0,2,0,-9,7,0,-1,-95.61261,-9,0,0,48,2,4,1,2,3,2019,1,2,12,0,40,0,15,1,0,1,0,19.974188,19.974188,0,0,0,0,0,0,0,0,1,1,0,5.3135161,0,0,0,57.16,56.150002,56.18,53.849998,6,1,1,0,0,11,4,1,1592.75,-13741.455,0,0,1960.4011 -9714,11969,21789,21788,-9,-9,2,1,0,48,1,0,2,0,2,-9,1,1,0,0,4,6.2459807,6.1874261,0,2,0,-9,7,0,1,129.15784,0,0,0,47,2,4,1,2,2,2019,1,1,8,0,9,0,15,1,0,1,0,5.9378057,5.9378057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,53.849998,57.16,56.150002,6,1,1,0,0,11,4,1,1592.75,-13741.455,0,0,1960.4011 -9714,11969,21790,-9,21789,21788,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-934.02441,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.919998,62.310001,-9,-9,6,1,1,0,0,11,4,1,1592.75,-13741.455,0,0,1960.4011 -9715,11970,21791,21792,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,0,4,7.5139809,7.4092607,0,2,0,-9,17,-9,-3,-206.21835,-9,0,1,42,2,4,1,2,-9,2019,1,1,10,0,25,0,15,1,0,1,0,7.9900632,7.9900632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,57.16,56.150002,6,1,1,0,0,6,4,1,1399,257021.56,0,0,3029.0806 -9715,11970,21792,21791,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,4,8.3697815,8.4792585,0,2,0,-9,17,-9,3,49.583183,-9,0,0,39,2,4,1,2,-9,2019,1,2,8,0,38,0,15,1,0,1,0,11.435748,11.435748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.450001,56.220001,6,1,1,0,0,6,4,1,1399,257021.56,0,0,3029.0806 -9716,11971,21793,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,2,0,7.6247125,7.7259097,3,0,0,0,-9,0,-1035.2954,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9086933,7.8186278,0,0,31.33,34.389999,-9,-9,3,1,1,0,0,13,3,1,543,306633.34,0,0,1798.0902 -9717,11972,21794,21795,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,8.2873096,8.1176825,0,1,0,-9,10,0,-1,64.435272,0,0,0,49,1,5,1,2,2,2019,1,3,11,1,57,63,15,1,0,1,0,8.5849657,8.5849657,0,0,0,0,0,0,0,0,0,0,0,3.101681,0,0,0,45.259998,56.189999,57.060001,57.759998,5,1,1,0,0,10,5,1,768.5,502356.75,0,0,5286.3706 -9717,11972,21795,21794,-9,-9,3,1,1,49,1,0,0,0,1,-9,2,1,0,0,5,9.4631319,9.505208,0,1,0,-9,10,0,1,10.404471,0,0,0,48,1,4,1,-9,-9,2019,1,1,6,0,83,48,15,1,0,1,0,21.840708,21.840708,0,0,0,0,0,0,0,0,0,0,0,1.9673228,0,0,0,57.060001,57.759998,45.259998,56.189999,6,1,1,0,0,10,5,1,768.5,502356.75,0,0,5286.3706 -9718,11973,21796,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,8.3378935,8.4021606,0,3,0,-9,0,1,0,-970.505,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,5,37,37,15,1,1,-9,0,13.13753,13.13753,0,0,0,0,0,0,0,0,1,1,0,6.9473896,0,0,0,33.919998,53.439999,-9,-9,5,1,1,0,0,6,4,1,1036,-212367.73,0,0,2303.7344 -9719,11974,21797,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,0,4,0,7.2472415,7.3019648,3,0,0,0,-9,0,-942.66626,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.7047386,7.0518517,68.229065,3,60.119999,54.799999,-9,-9,6,1,1,0,0,2,3,1,239,801339.5,0,0,183.56566 -9720,11975,21798,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,5,8.2988987,8.7939472,0,1,0,-9,1,-9,1,-43.336132,-9,1,1,-9,-9,-9,-9,1,1,2019,1,2,11,2,42,0,15,1,0,-9,0,13.440683,13.440683,0,0,0,0,0,0,0,0,0,0,0,1.0784308,0,0,0,48.419998,60.529999,37.25,55.919998,6,1,1,0,0,5,5,0,313,-54022.641,0,0,2824.1855 -9720,11976,21799,-9,-9,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.4941845,8.4193068,0,1,0,-9,1,-9,-1,-45.152203,-9,1,1,-9,-9,-9,-9,-9,-9,2019,1,1,15,3,45,0,15,1,0,-9,0,9.248065,9.248065,0,0,0,0,0,0,0,0,0,0,0,3.1286287,0,0,0,37.25,55.919998,48.419998,60.529999,5,1,1,0,0,5,5,0,1563,145756.63,0,0,2891.4119 -9721,11977,21800,-9,-9,-9,1,1,0,38,3,0,3,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-852.08472,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.209057,3,31.790001,46.889999,-9,-9,5,1,1,0,0,2,1,0,470.5,3891.0967,0,0,1739.9065 -9721,11977,21801,-9,21800,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1157.0464,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,1,0,470.5,3891.0967,0,0,1739.9065 -9721,11978,21802,-9,21800,-9,5,1,0,20,2,0,3,0,3,-9,3,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-964.45612,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.139999,21.5,-9,-9,5,1,1,1,0,2,1,0,548,-161014.47,0,0,1582.9005 -9722,11979,21803,21804,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,-3,6.5245585,0,0,0,67,1,4,3,3,2,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4420209,0,10.165646,3,35.880001,56.66,40.470001,55.650002,6,1,1,0,0,5,4,1,1059,1652654,0,0,5556.3945 -9722,11979,21804,21803,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.9772034,9.0870247,1,0,-9,7,0,3,203.4446,0,0,0,64,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.9123449,8.9772053,11.332192,3,40.470001,55.650002,35.880001,56.66,6,1,1,0,0,5,4,1,1059,1652654,0,0,5556.3945 -9722,11980,21805,-9,21803,21804,3,1,1,36,2,0,0,0,2,-9,2,1,0,0,3,8.7689085,8.2324381,0,3,0,0,0,-9,0,-1018.8026,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,47,42,15,1,1,-9,1,13.303485,13.303485,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,20.93,60.889999,-9,-9,3,1,1,0,0,5,5,1,736,-36595.895,0,0,1236.453 -9722,11981,21806,-9,21803,21804,4,1,1,33,2,0,0,0,2,-9,2,1,0,0,2,8.1436148,8.687768,0,3,0,0,0,-9,0,-872.18506,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,37,35,15,1,0,-9,1,14.04555,14.04555,0,0,0,0,0,0,0,14.5,1,1,0,2.3223472,0,16.676575,3,38.380001,52.959999,-9,-9,4,1,1,0,0,5,4,1,240,206926.2,0,0,1667.8116 -9722,11982,21807,-9,21803,21804,5,1,1,31,2,0,0,0,3,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-944.57074,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0682631,0,0,0,50,57,-9,-9,5,1,1,0,0,5,1,1,222,-15490.35,0,0,141.20338 -9723,11983,21808,-9,21810,21809,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.6249,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,595.33331,194187.08,0,0,3312.2407 -9723,11983,21809,21810,-9,-9,2,1,1,36,1,0,1,0,2,-9,1,1,0,0,4,8.2153616,7.9851193,0,2,0,-9,9,0,2,4.8716898,0,0,0,34,2,5,1,-9,-9,2019,1,1,7,0,52,50,15,1,0,1,0,7.0262651,7.0262651,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6707284,3,57.669998,45.25,54.689999,57.470001,6,1,1,0,0,5,4,1,595.33331,194187.08,0,0,3312.2407 -9723,11983,21810,21809,-9,-9,1,1,0,34,1,0,1,0,2,-9,1,1,0,0,5,7.7864342,7.496779,0,2,0,-9,9,0,-2,71.742027,0,0,1,36,2,4,1,2,2,2019,1,2,7,0,15,12,15,1,0,1,0,18.586838,18.586838,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,57.669998,45.25,6,1,1,0,0,5,4,1,595.33331,194187.08,0,0,3312.2407 -9724,11984,21811,21812,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.4523335,7.4927373,0,1,0,-9,9,0,4,33.974213,0,0,0,54,2,4,1,2,3,2019,1,1,9,0,35,35,15,1,0,1,0,6.2300706,6.2300706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.299999,40.509998,44.52,41.360001,6,1,1,0,0,10,4,0,1091.5,234543.09,0,0,2129.585 -9724,11984,21812,21811,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,7.934803,7.7699275,0,1,0,-9,9,0,-4,68.679382,0,0,0,58,2,3,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,7.6944036,7.6944036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.52,41.360001,61.299999,40.509998,6,1,1,0,0,10,4,0,1091.5,234543.09,0,0,2129.585 -9725,11985,21813,21814,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,0,5,8.5336409,8.0062847,0,2,0,-9,25,0,2,-27.167959,0,0,0,50,2,4,1,2,2,2019,1,1,6,0,40,42,15,1,0,1,0,13.694358,13.694358,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.085755,3,54.099998,59.110001,48.279999,60.18,6,1,1,0,0,2,5,1,1067.5,1183979,0,0,5186.9033 -9725,11985,21814,21813,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,9.0104179,9.1156654,0,2,0,-9,25,0,-2,28.298628,0,0,0,52,1,5,1,2,2,2019,1,2,7,0,45,47,15,1,0,1,0,22.559883,22.559883,0,0,0,0,0,0,0,2,0,0,0,2.9185071,0,6.0783629,3,48.279999,60.18,54.099998,59.110001,6,1,1,0,0,2,5,1,1067.5,1183979,0,0,5186.9033 -9726,11986,21815,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,2,1,0,0,2,8.8029737,9.0808802,5.5211024,3,0,0,0,-9,0,-875.26245,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,56,0,15,1,0,-9,0,13.425159,13.425159,0,0,0,0,0,0,0,0,1,1,0,0,5.8625512,0,0,46.5,45.060001,-9,-9,3,1,1,0,0,2,5,1,396,381656.75,0,0,4529.375 -9727,11987,21816,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-894.35864,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.790001,51.099998,-9,-9,6,3,4,1,0,6,1,0,238,-24563.338,0,0,-131.68988 -9728,11988,21817,21818,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,6.8957887,7.1366386,5.0666981,1,0,-9,44,0,-4,-122.03922,0,0,0,69,1,2,1,2,2,2019,3,1,13,1,4,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1561193,5.0701542,0,0,43.599998,51.610001,53.849998,48.599998,2,1,1,0,0,11,4,1,741.5,1970995.8,0,0,6166.4766 -9728,11988,21818,21817,-9,-9,1,1,1,69,1,0,0,0,1,-9,1,1,0,0,2,8.0943861,8.0783939,3.4521439,1,0,-9,44,0,4,139.77435,0,0,0,65,1,3,3,2,2,2019,2,2,12,0,5,0,15,1,0,4,0,63.189022,63.189022,1,0,0,0,0,0,0,0,1,1,0,5.9788895,3.7377164,0,0,53.849998,48.599998,43.599998,51.610001,4,1,1,0,0,11,4,1,741.5,1970995.8,0,0,6166.4766 -9729,11989,21819,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,5.1204152,4.9170103,3,0,-9,0,1,0,-959.34155,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.8534985,2.8944032,4.326982,0,0,1,1,0,4.9214368,4.978529,0,0,57.98,29.33,-9,-9,7,1,1,0,0,9,2,1,288,-20207.561,0,0,1050.1609 -9730,11990,21820,21821,-9,-9,1,1,1,44,1,0,0,0,3,-9,2,1,0,0,5,8.8804293,8.8007135,0,1,0,-9,5,0,0,-111.92863,0,0,0,44,2,3,1,2,3,2019,1,2,8,0,50,52,15,1,0,1,0,14.54596,14.54596,0,0,0,0,0,0,0,0,0,0,0,8.4495497,0,0,0,54.099998,59.110001,51.66,49.349998,5,1,1,0,0,11,5,1,482.5,394159.28,0,0,5309.6509 -9730,11990,21821,21820,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.6282892,8.420331,0,1,0,-9,5,0,0,58.095322,0,0,1,44,3,5,1,2,3,2019,1,1,12,0,47,45,15,1,0,1,0,12.361543,12.361543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,49.349998,54.099998,59.110001,6,1,1,0,0,11,5,1,482.5,394159.28,0,0,5309.6509 -9730,11991,21822,-9,21821,21820,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.7020097,7.4968719,0,3,0,0,0,-9,0,-882.17798,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,36,48,15,1,0,-9,1,7.2880168,7.2880168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,11,3,1,670,172434.47,0,0,806.46545 -9731,11992,21823,21824,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.658051,7.8548427,0,1,0,-9,32,0,1,60.060989,0,0,0,55,2,4,1,2,2,2019,1,2,6,0,22,22,15,1,0,1,0,10.16127,10.16127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,58.150002,52.91,6,1,1,0,0,9,4,1,916.5,491443.16,0,0,6556.1553 -9731,11992,21824,21823,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,7.9045267,7.7647138,0,1,0,-9,32,0,-1,-28.206182,0,0,0,56,2,4,1,2,-9,2019,1,1,7,0,40,40,15,1,0,1,0,5.3809228,5.3809228,0,0,0,0,0,0,0,0,0,0,0,9.225769,0,0,0,58.150002,52.91,48.869999,58.549999,6,1,1,0,0,9,4,1,916.5,491443.16,0,0,6556.1553 -9731,11993,21825,-9,21823,21824,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.3874569,8.0207548,0,3,0,0,0,-9,0,-1092.548,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,39,38,15,1,0,-9,1,11.525126,11.525126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,-9,-9,5,1,1,0,0,9,4,1,914,68354.43,0,0,1742.4108 -9732,11994,21826,-9,21827,21828,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.70105,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,4,1,231,695129.81,0,0,3115.0369 -9732,11994,21827,21828,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,7.6042528,7.3598509,0,2,0,-9,7,0,0,-.045324292,0,0,1,40,1,4,1,-9,-9,2019,1,2,11,0,30,32,15,1,0,1,0,8.572381,8.572381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.25,55.029999,57.16,56.150002,1,1,1,0,0,13,4,1,231,695129.81,0,0,3115.0369 -9732,11994,21828,21827,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,0,4,8.3813982,8.5639296,0,2,0,-9,7,0,0,-90.686493,0,0,0,40,2,4,1,2,2,2019,1,1,7,0,42,43,15,1,0,1,0,12.761803,12.761803,0,0,0,0,0,0,0,2,1,1,0,4.0695896,0,5.498539,3,57.16,56.150002,44.25,55.029999,6,1,1,0,0,13,4,1,231,695129.81,0,0,3115.0369 -9733,11995,21829,21830,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.6019917,8.8248825,0,1,0,-9,10,0,6,81.116463,0,0,0,34,1,4,1,2,2,2019,1,1,9,0,50,50,15,1,0,1,0,13.512276,13.512276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.459999,44.549999,41.560001,61.790001,2,1,1,0,0,11,5,1,558,1604103.8,0,0,5063.8066 -9733,11995,21830,21829,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,8.7597065,8.9758997,0,1,0,-9,10,0,-6,-23.711231,0,0,1,40,2,4,1,2,2,2019,1,2,15,3,42,60,15,1,0,1,0,27.905375,27.905375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.560001,61.790001,58.459999,44.549999,5,1,1,0,0,11,5,1,558,1604103.8,0,0,5063.8066 -9734,11996,21831,21832,-9,-9,1,1,0,62,1,0,0,0,3,-9,3,3,0,0,1,0,0,0,1,0,-9,11,0,-2,-135.06726,0,0,0,64,2,3,1,-9,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.700001,23.15,62.360001,47,3,1,1,1,0,11,4,0,685.5,790787.63,0,0,2226.8713 -9734,11996,21832,21831,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,8.7375317,8.7758913,0,1,0,-9,11,0,2,98.213776,0,0,0,62,3,1,3,3,3,2019,2,1,11,0,48,52,15,1,0,3,0,13.803462,13.803462,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.362854,2,62.360001,47,35.700001,23.15,6,1,1,0,0,11,4,0,685.5,790787.63,0,0,2226.8713 -9735,11997,21833,21835,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,3,8.7967558,8.8878288,0,2,0,-9,14,0,2,-126.63846,0,0,0,46,1,4,1,2,1,2019,1,2,22,10,40,37,15,1,1,1,0,20.645159,20.645159,0,0,0,0,0,0,0,0,1,1,0,4.769628,0,0,0,42.34,48.099998,51.830002,57.200001,6,1,1,0,0,7,5,1,454,789419.88,0,0,5636.7891 -9735,11997,21834,-9,21833,21835,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.0419,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,454,789419.88,0,0,5636.7891 -9735,11997,21835,21833,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,9.030405,9.3658381,0,2,0,-9,14,0,-2,-16.85537,0,0,0,48,1,3,1,-9,-9,2019,1,1,6,0,38,40,15,1,0,1,0,26.283506,26.283506,0,0,0,0,0,0,0,0,1,1,0,5.3645706,0,0,0,51.830002,57.200001,42.34,48.099998,5,1,1,0,0,7,5,1,454,789419.88,0,0,5636.7891 -9736,11998,21836,21837,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,5.2135448,5.390058,1,0,-9,44,0,4,-94.487381,0,0,0,67,2,3,3,-9,1,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6873255,0,0,55.509998,51.57,51.639999,50.48,6,1,1,0,0,12,2,1,266,610005.25,0,0,1630.3259 -9736,11998,21837,21836,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,-4,-5.9045582,0,0,0,71,1,3,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.639999,50.48,55.509998,51.57,6,1,1,0,0,12,2,1,266,610005.25,0,0,1630.3259 -9737,11999,21838,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1129.192,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.889999,18.610001,-9,-9,3,1,1,0,0,4,1,0,619,-79267.656,0,0,1577.4296 -9738,12000,21839,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,4,3,0,0,4,0,7.4638753,7.6892376,1,0,-9,8,0,5,-78.089439,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.5123425,7.7101965,11.980222,3,57.16,56.150002,58.150002,52.91,7,1,1,0,0,4,3,1,315,393372.25,0,0,596.01636 -9738,12001,21840,-9,-9,-9,2,1,0,56,2,0,0,0,1,-9,4,3,0,0,4,0,7.61724,7.5257039,1,0,-9,8,0,-5,60.890816,0,0,0,-9,-9,-9,-9,3,3,2019,4,1,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6340332,7.5480113,2.2570839,3,58.150002,52.91,57.16,56.150002,7,1,1,0,0,4,3,1,348,666503.94,0,0,1720.7487 -9739,12002,21841,21842,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,5,9.072299,8.6204481,0,1,0,-9,4,0,2,-66.077591,0,0,0,42,2,2,1,-9,-9,2019,1,2,19,7,40,40,15,1,1,1,0,18.623392,18.623392,0,0,0,0,0,0,0,0,1,1,0,7.3717332,0,0,0,40.950001,63.66,60.060001,37.759998,3,1,1,0,0,4,5,1,430.5,214665.97,0,0,3925.1531 -9739,12002,21842,21841,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,1,2,6.6824584,7.0079365,0,1,0,-9,4,0,-2,62.393013,0,0,1,44,2,5,1,-9,-9,2019,1,1,5,1,30,20,15,1,0,1,0,3.20908,3.20908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.060001,37.759998,40.950001,63.66,2,1,1,0,0,4,5,1,430.5,214665.97,0,0,3925.1531 -9740,12003,21843,21844,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,8.4569588,8.5692139,1,0,-9,20,0,-1,-21.205027,0,0,0,63,1,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8039112,0,0,55.790001,52.619999,48.869999,58.549999,5,1,1,0,0,10,5,1,622.5,2642962.3,0,0,5005.7617 -9740,12003,21844,21843,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,6.3507013,8.6091146,8.8974895,1,0,-9,20,0,1,-102.71374,0,0,0,62,2,4,3,3,2,2019,4,1,11,2,21,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9754624,8.47293,0,0,48.869999,58.549999,55.790001,52.619999,6,1,1,0,0,10,5,1,622.5,2642962.3,0,0,5005.7617 -9741,12004,21845,-9,21846,21848,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.2061,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,429.5,540135.56,0,0,3825.7476 -9741,12004,21846,21848,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,4,8.7382622,8.4247971,0,2,0,-9,11,0,0,-2.9569776,0,0,1,36,1,4,1,1,2,2019,1,1,8,1,30,8,15,1,0,1,0,21.61746,21.61746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,44.470001,57.73,7,1,1,0,0,10,5,1,429.5,540135.56,0,0,3825.7476 -9741,12004,21847,-9,21846,21848,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.67529,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,429.5,540135.56,0,0,3825.7476 -9741,12004,21848,21846,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,0,4,8.8247452,8.8985901,0,2,0,-9,11,0,0,-24.243715,0,0,0,36,1,4,1,2,1,2019,1,2,9,1,50,50,15,1,0,1,0,18.93228,18.93228,0,0,0,0,0,0,0,0,1,1,0,.20669669,0,0,0,44.470001,57.73,48.869999,58.549999,6,1,1,0,0,10,5,1,429.5,540135.56,0,0,3825.7476 -9742,12005,21849,21850,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,5,0,9.1127253,9.1493921,1,0,-9,52,0,5,21.18033,0,0,0,70,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.9483395,9.3208132,0,3,61.009998,53.18,52.23,55.599998,7,1,1,0,0,7,5,1,560,3587407,0,0,7501.6177 -9742,12005,21850,21849,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.8135166,7.196454,1,0,-9,51,0,-5,95.815636,0,0,0,75,1,5,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8339663,7.8374681,0,0,52.23,55.599998,61.009998,53.18,7,1,1,0,0,7,5,1,560,3587407,0,0,7501.6177 -9743,12006,21851,21852,-9,-9,1,1,1,37,1,0,2,0,2,-9,1,1,0,0,3,8.875494,8.6666107,0,2,0,-9,9,0,2,-86.96479,0,0,0,35,2,4,1,2,2,2019,1,2,9,0,40,38,15,1,0,1,0,22.867487,22.867487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,51.830002,57.200001,6,1,1,0,0,1,4,1,1036.25,867130.63,0,0,3559.6824 -9743,12006,21852,21851,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,7.4081135,7.6371336,0,2,0,-9,9,0,-2,-165.65875,0,0,1,37,2,3,1,2,2,2019,1,1,7,0,18,17,15,1,0,1,0,13.98864,13.98864,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,54.369999,54.799999,6,1,1,0,0,1,4,1,1036.25,867130.63,0,0,3559.6824 -9743,12006,21853,-9,21852,21851,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.54767,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,1,4,1,1036.25,867130.63,0,0,3559.6824 -9743,12006,21854,-9,21852,21851,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.32526,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,1036.25,867130.63,0,0,3559.6824 -9744,12007,21855,21856,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,5,0,7.169621,7.3228059,1,0,-9,51,0,-1,-58.98027,0,0,0,70,3,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0666761,7.1598263,0,0,54.099998,59.110001,58.049999,54.52,7,1,1,0,0,11,3,1,976.5,1471758.8,0,0,4529.2686 -9744,12007,21856,21855,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,5,0,7.9287076,8.0606565,1,0,-9,51,0,1,16.431862,0,0,0,69,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2607293,7.446279,0,0,58.049999,54.52,54.099998,59.110001,7,1,1,0,0,11,3,1,976.5,1471758.8,0,0,4529.2686 -9745,12008,21857,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,0,3,0,7.4549956,7.4252834,3,0,0,0,-9,0,-1036.6718,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0406284,7.4925714,0,0,47.869999,40.360001,-9,-9,5,1,1,0,0,13,3,1,145,583359.75,0,0,2352.5999 -9746,12009,21858,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,5,0,7.5960464,7.4693933,3,0,0,0,-9,0,-936.70416,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5044785,0,0,58,51,-9,-9,6,1,1,0,0,5,3,0,349,582661.25,0,0,1352.4215 -9747,12010,21859,21860,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,6.9168801,6.6688695,0,2,0,-9,25,0,-2,13.529172,0,0,0,51,2,5,1,3,3,2019,1,2,7,0,17,17,15,1,0,1,0,5.8414049,5.8414049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,42.970001,65.300003,6,1,1,0,0,2,3,1,609.33331,483817.81,0,0,2597.6917 -9747,12010,21860,21859,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,5,8.1815786,7.7011428,0,2,0,-9,24,0,2,-22.245026,0,0,0,49,2,4,1,-9,-9,2019,1,1,0,0,47,45,15,1,0,1,0,6.9165258,6.9165258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.970001,65.300003,41.169998,59.310001,1,1,1,0,0,2,3,1,609.33331,483817.81,0,0,2597.6917 -9747,12010,21861,-9,21859,21860,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1068.2523,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.93,43.759998,-9,-9,7,1,1,0,0,2,3,1,609.33331,483817.81,0,0,2597.6917 -9748,12011,21862,21863,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,8.7647228,8.5003262,1,0,-9,49,0,0,8.9009809,0,0,0,73,2,3,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1799932,8.4418783,0,0,48.869999,58.549999,57.330002,53.459999,6,1,1,0,0,10,4,1,739.5,2225327,0,0,3946.3662 -9748,12011,21863,21862,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,4.8342848,5.0856996,1,0,-9,49,0,0,93.376503,0,0,0,73,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9890134,5.0609813,0,0,57.330002,53.459999,48.869999,58.549999,6,1,1,0,0,10,4,1,739.5,2225327,0,0,3946.3662 -9749,12012,21864,-9,21865,-9,1,1,1,59,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-966.85077,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.3479,3,38.139999,35.220001,-9,-9,4,1,1,0,1,11,1,1,572,232822.19,0,0,-681.35596 -9749,12013,21865,-9,-9,-9,2,1,0,82,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1019.1476,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0238571,0,0,0,41,22,-9,-9,1,1,1,0,0,11,1,1,405,16525.793,0,0,247.35628 -9750,12014,21866,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,5,0,7.1587915,7.2465415,3,0,0,0,-9,0,-1140.4094,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3205838,0,0,46.209999,58.07,-9,-9,2,1,1,0,0,11,3,1,1145,890462.63,0,0,1722.2107 -9751,12015,21867,21868,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,0,5,8.1997213,8.2192564,0,1,0,-9,26,0,-1,-66.875046,0,0,0,50,1,4,1,1,1,2019,1,2,12,1,35,35,15,1,0,1,0,12.212631,12.212631,0,0,0,0,0,0,0,0,1,1,0,4.0973043,0,0,0,51.139999,60.450001,51.240002,58.84,6,1,1,0,0,11,4,1,633.66669,309006.59,0,0,2560.9636 -9751,12015,21868,21867,-9,-9,2,1,1,50,1,0,0,0,1,-9,1,1,0,0,4,6.2573705,5.993999,0,1,0,-9,27,0,1,-.47179559,0,0,0,49,1,5,1,3,3,2019,1,1,15,5,60,50,15,1,1,1,0,1.1132754,1.1132754,0,0,0,0,0,0,0,0,1,1,0,3.4615073,0,0,0,51.240002,58.84,51.139999,60.450001,6,1,1,0,0,11,4,1,633.66669,309006.59,0,0,2560.9636 -9751,12015,21869,-9,21867,21868,3,1,1,17,2,0,0,1,2,0,7,2,0,0,5,3.3262377,3.5186589,0,1,0,0,0,-9,0,-901.50256,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.75,66.169998,-9,-9,6,1,1,0,0,11,4,1,633.66669,309006.59,0,0,2560.9636 -9752,12016,21870,21872,-9,-9,1,1,1,55,1,0,2,0,2,-9,2,1,0,0,3,8.735527,8.5066204,0,2,0,-9,11,0,7,-6.504251,0,0,0,48,2,4,1,-9,-9,2019,1,2,7,0,37,37,15,1,0,1,0,13.536218,13.536218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,51.77,58.57,6,1,1,0,0,5,4,1,615.75,448991.75,0,0,2243.5676 -9752,12016,21871,-9,21872,21870,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.67822,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,5,4,1,615.75,448991.75,0,0,2243.5676 -9752,12016,21872,21870,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,7.2937083,7.116869,0,2,0,-9,11,0,-7,-14.995628,0,0,0,55,2,3,1,-9,-9,2019,1,1,11,0,20,25,15,1,0,1,0,7.738884,7.738884,0,0,0,0,0,0,0,2,1,1,0,2.6139922,0,0,3,51.77,58.57,58.32,50.220001,6,1,1,0,0,5,4,1,615.75,448991.75,0,0,2243.5676 -9752,12016,21873,-9,21872,21870,5,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.5844,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,615.75,448991.75,0,0,2243.5676 -9752,12017,21874,-9,21872,21870,3,1,1,21,2,0,2,0,2,-9,2,1,0,0,4,7.738266,7.4828267,0,3,0,0,0,-9,0,-1074.1141,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.8235502,6.8235502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,5,3,1,151,215335.25,0,0,-484.35773 -9753,12018,21875,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,0,0,-1074.2919,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.203062,3,36.509998,18.49,-9,-9,4,4,2,0,0,4,1,0,786,-248429.38,0,0,958.99261 -9753,12019,21876,-9,-9,-9,2,1,0,34,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,-9,0,0,0,-997.42737,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.330002,39,-9,-9,2,1,1,1,0,4,1,0,862,-17276.459,0,0,1608.3898 -9754,12020,21877,21881,-9,-9,2,1,1,37,1,0,3,0,1,-9,2,1,0,0,4,8.3523054,8.1262789,0,2,0,-9,9,0,-3,-37.58746,0,0,0,40,2,3,3,-9,-9,2019,2,1,9,0,45,45,15,1,0,3,0,11.39338,11.39338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.470001,53.169998,46.029999,50.540001,6,1,1,0,0,11,3,0,676.20001,337687.69,0,0,3051.4448 -9754,12020,21878,-9,21881,21877,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1044.5867,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,11,3,0,676.20001,337687.69,0,0,3051.4448 -9754,12020,21879,-9,21881,21877,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.5398,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,0,676.20001,337687.69,0,0,3051.4448 -9754,12020,21880,-9,21881,21877,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.6796,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,0,676.20001,337687.69,0,0,3051.4448 -9754,12020,21881,21877,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,3,10.192058,0,0,1,37,1,4,1,2,3,2019,3,2,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.029999,50.540001,51.470001,53.169998,7,1,1,0,0,11,3,0,676.20001,337687.69,0,0,3051.4448 -9755,12021,21882,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,8.4247789,8.4117374,0,3,0,0,0,-9,0,-781.40027,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,70,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,60.259998,-9,-9,6,1,1,0,0,12,5,1,505,720609.63,0,0,1645.2795 -9756,12022,21883,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,3,7.9444385,7.7276444,0,3,0,0,0,-9,0,-1026.0768,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,0,7.9652495,7.9652495,0,0,0,0,0,0,0,0,0,0,0,4.5556188,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,12,3,1,397,0,0,0,361.40579 -9757,12023,21884,21885,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,6.4452662,6.4528942,1,0,-9,19,0,1,190.08429,0,0,0,69,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3117466,0,0,46.299999,29.030001,55.759998,44.759998,4,1,1,0,0,9,2,1,410,769707.63,0,0,2069.552 -9757,12023,21885,21884,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,5.9522843,6.0894384,1,0,-9,19,0,-1,-86.456413,0,0,0,70,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1134439,0,0,55.759998,44.759998,46.299999,29.030001,6,1,1,0,0,9,2,1,410,769707.63,0,0,2069.552 -9758,12024,21886,-9,-9,-9,1,1,0,56,2,0,2,0,2,-9,2,1,0,0,4,6.9074211,6.5682316,0,4,0,0,0,-9,0,-1051.0055,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,20,16,15,1,0,-9,0,5.7123771,5.7123771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.209999,51.959999,-9,-9,6,3,4,0,0,8,2,0,918,483851.75,0,0,2290.082 -9758,12025,21887,-9,21886,-9,2,1,0,25,2,0,2,0,1,1,2,1,0,0,4,7.9547501,7.8005166,0,3,0,0,0,-9,0,-925.17627,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,1,0,40,0,15,1,0,-9,1,7.982605,7.982605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,-9,-9,6,3,4,0,0,8,4,0,56,-209857.86,0,0,1161.7052 -9758,12026,21888,-9,21886,-9,3,1,1,24,2,0,2,0,2,-9,2,1,0,0,5,8.2657499,8.1867495,0,3,0,0,0,-9,0,-992.76709,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,48,20,15,1,0,-9,1,6.9338241,6.9338241,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,5,3,4,0,0,8,4,0,210,-24137.445,0,0,1250.083 -9758,12027,21889,-9,21886,-9,4,1,1,22,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-937.71088,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,1,8,1,0,65,0,0,0,0 -9758,12028,21890,-9,21886,-9,5,1,0,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.5826,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,7,3,4,0,0,8,4,0,360,-204284.27,0,0,0 -9759,12029,21891,-9,21892,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-902.40894,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,1030,16817.832,0,0,1768.5425 -9759,12029,21892,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,0,4,7.7189498,7.647912,5.467123,4,0,0,0,-9,0,-920.82697,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,30,24,15,1,1,-9,0,6.6438828,6.6438828,0,0,0,0,0,0,0,0,1,1,0,5.6794133,0,0,0,41.669998,56.779999,-9,-9,6,1,1,0,0,10,3,1,1030,16817.832,0,0,1768.5425 -9760,12030,21893,21894,-9,-9,1,1,0,51,1,0,0,0,2,-9,1,1,0,0,5,8.8254585,8.8536873,0,1,0,-9,25,0,0,59.147362,0,0,0,51,2,3,1,-9,-9,2019,1,2,8,0,20,0,15,1,0,1,0,37.744286,37.744286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,47.560001,36.299999,6,1,1,0,0,4,5,1,450,1062389.9,0,0,3798.5752 -9760,12030,21894,21893,-9,-9,2,1,1,51,1,0,0,0,2,-9,1,1,0,0,3,7.587368,7.4874082,0,1,0,-9,24,0,0,85.726006,0,0,0,51,2,5,1,-9,-9,2019,1,1,11,2,5,0,15,1,0,1,0,55.052219,55.052219,0,0,0,0,0,0,0,0,0,0,0,2.5531714,0,0,0,47.560001,36.299999,57.060001,57.759998,6,1,1,0,0,4,5,1,450,1062389.9,0,0,3798.5752 -9761,12031,21895,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,0,4,8.1288738,8.029047,0,3,0,0,0,-9,0,-935.56012,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,46,46,15,1,0,-9,0,7.5426807,7.5426807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,4,0,385,411565.25,0,0,519.30255 -9762,12032,21896,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-955.24506,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.2067349,0,4.0888352,0,0,1,1,0,0,0,0,0,70.57,24.469999,-9,-9,7,1,1,0,0,7,1,0,953,542584.31,0,0,2107.2776 -9763,12033,21897,21898,-9,-9,2,1,0,49,1,0,0,0,2,-9,3,3,0,0,5,0,0,0,1,0,-9,30,0,0,0,0,0,0,49,2,2,3,2,1,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6227462,1,54.099998,59.110001,51.639999,11.91,4,1,1,1,0,11,1,0,602,0,0,0,1147.7682 -9763,12033,21898,21897,-9,-9,1,1,1,49,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,30,0,0,0,0,0,0,49,2,5,3,3,2,2019,4,2,12,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.639999,11.91,54.099998,59.110001,1,1,1,0,0,11,1,0,602,0,0,0,1147.7682 -9764,12034,21899,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-970.1593,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.060001,38.709999,-9,-9,1,1,1,0,0,10,1,0,255,-22828.994,0,0,2178.791 -9765,12035,21900,21902,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,0,3,8.4073124,8.4555006,0,2,0,-9,6,0,-7,-31.461561,0,0,1,41,2,3,1,2,1,2019,1,1,13,3,38,38,15,1,0,1,0,13.565495,13.565495,0,0,0,0,0,0,0,0,1,1,0,2.8931921,0,0,0,50.779999,45.450001,52,54.509998,5,1,1,0,0,4,5,1,700.66669,532874.38,0,0,5772.6665 -9765,12035,21901,-9,21900,21902,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.1076,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,1,700.66669,532874.38,0,0,5772.6665 -9765,12035,21902,21900,-9,-9,1,1,1,41,1,1,1,0,2,-9,2,1,0,0,3,9.3343668,9.4911709,0,2,0,-9,6,0,7,280.94235,0,0,0,34,1,3,1,2,2,2019,1,2,8,1,43,44,15,1,0,1,0,37.898338,37.898338,0,0,0,0,0,0,0,0,1,1,0,3.4735401,0,0,0,52,54.509998,50.779999,45.450001,6,1,1,0,0,4,5,1,700.66669,532874.38,0,0,5772.6665 -9766,12036,21903,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,3,0,6.7950473,6.398664,3,0,0,0,-9,0,-828.59875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,18.128599,0,0,1,1,0,4.7326813,6.5423155,0,0,57.380001,36.959999,-9,-9,1,1,1,0,0,10,2,1,1277,568817.56,0,0,-17.530849 -9766,12037,21904,-9,-9,-9,2,1,0,87,3,0,0,0,3,-9,4,3,0,0,4,0,6.2692766,6.5566988,3,0,0,0,-9,0,-1066.1503,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.2405276,0,3,67.629997,32.279999,-9,-9,7,1,1,0,0,10,2,1,680,190668.63,0,0,1230.6156 -9767,12038,21905,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,5,9.1244307,8.9986534,0,3,0,0,0,-9,0,-972.88123,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,47,50,15,1,0,-9,0,25.535902,25.535902,0,0,0,0,0,0,0,0,0,0,0,3.1504257,0,0,0,51.139999,60.450001,-9,-9,6,4,5,0,0,8,5,0,2041,-39654.215,0,0,2945.105 -9768,12039,21906,-9,-9,-9,1,1,1,91,3,0,0,0,3,-9,4,3,0,0,4,0,7.4013419,7.7142625,3,0,-9,0,-9,0,-1001.4656,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.447773,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,6,3,1,157,63661.648,0,0,2030.2339 -9769,12040,21907,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,2,1,0,0,4,7.3744836,7.3665524,0,4,0,0,0,-9,0,-1099.2167,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,30,25,15,1,1,-9,0,7.4252963,7.4252963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,44.540001,-9,-9,4,1,1,0,0,4,2,0,577.5,51434.988,0,0,2019.2991 -9769,12040,21908,-9,21907,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-919.68005,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,577.5,51434.988,0,0,2019.2991 -9770,12041,21909,21910,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,2,0,5.625741,5.7166805,1,0,-9,37,0,-6,150.17755,0,0,0,80,3,4,3,3,3,2019,4,2,28,12,0,0,15,4,1,4,0,0,0,1,0,12.369378,6.2521143,0,0,0,0,1,1,0,0,5.4921227,0,0,48.540001,19.83,54.790001,55.860001,1,1,1,0,0,7,2,0,1418.5,73254.609,0,0,1724.1309 -9770,12041,21910,21909,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,39,0,6,-34.240791,0,0,0,74,3,2,3,3,2,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,28.844885,1,54.790001,55.860001,48.540001,19.83,5,1,1,0,0,7,2,0,1418.5,73254.609,0,0,1724.1309 -9771,12042,21911,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,5,0,6.3749232,6.57268,3,0,0,0,-9,0,-963.51532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8250756,6.2020779,0,0,54.099998,59.110001,-9,-9,2,1,1,0,0,8,2,1,537,85902.172,0,0,514.52881 -9772,12043,21912,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,6.6280375,6.5868192,3,0,0,0,-9,0,-1085.8593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5008745,6.813581,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,4,2,1,314,-1598.8708,0,0,1200.1544 -9773,12044,21913,21914,-9,-9,1,1,0,22,1,0,0,0,2,1,2,1,0,0,3,7.5024505,7.3552332,0,1,0,-9,3,0,0,39.919743,-9,1,1,22,2,4,1,-9,-9,2019,1,2,8,1,13,0,15,1,0,1,0,17.370209,17.370209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.57,55.369999,48.869999,58.549999,6,1,1,0,0,5,4,0,553,-54851.402,0,0,2121.8447 -9773,12044,21914,21913,-9,-9,2,1,1,22,1,0,0,0,2,-9,2,1,0,0,4,7.9410329,8.4584751,0,1,0,-9,3,0,0,131.67062,0,1,0,22,2,3,1,-9,-9,2019,1,1,6,0,39,41,15,1,0,1,0,9.1125307,9.1125307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,41.57,55.369999,7,1,1,0,0,5,4,0,553,-54851.402,0,0,2121.8447 -9774,12045,21915,21916,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.2407761,8.9476728,1,0,-9,48,0,1,118.43301,0,0,0,66,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8426628,8.5394726,.34424108,3,60.119999,54.799999,59.529999,56.439999,6,1,1,0,0,6,4,1,490,1714033.4,0,0,3877.6252 -9774,12045,21916,21915,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,5.4072294,5.3797154,1,0,-9,48,0,-1,18.688257,0,0,0,67,1,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.042953,5.4794459,0,0,59.529999,56.439999,60.119999,54.799999,7,1,1,0,0,6,4,1,490,1714033.4,0,0,3877.6252 -9775,12046,21917,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,0,2,7.4275632,7.0869679,5.424068,4,0,0,0,-9,0,-1003.9658,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,22,0,15,1,0,-9,0,8.7609644,8.7609644,0,0,0,0,0,0,0,14.5,1,1,0,5.1266026,0,19.42234,3,55.209999,43.869999,-9,-9,5,1,1,0,0,2,2,0,557.66669,23820.775,0,0,2553.2446 -9775,12046,21918,-9,21917,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,1,4,0,0,0,4,0,0,0,-9,0,-1003.9859,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,55.16,-9,-9,6,1,1,0,0,2,2,0,557.66669,23820.775,0,0,2553.2446 -9775,12046,21919,-9,21917,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1055.4978,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,557.66669,23820.775,0,0,2553.2446 -9776,12047,21920,21921,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,3,0,5.0442786,4.9678841,1,0,-9,41,0,-11,1.0960894,0,0,0,72,3,3,1,2,2,2019,3,1,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.259768,0,0,48,48,52,48,5,1,1,0,0,6,4,1,214.5,900808.38,0,0,4418.3906 -9776,12047,21921,21920,-9,-9,1,1,1,72,1,0,0,0,3,-9,2,1,0,0,3,7.070322,8.1042051,8.0025396,1,0,-9,41,0,11,-47.769272,0,0,0,61,1,3,3,3,2,2019,2,2,10,1,17,16,15,1,0,4,0,8.2023945,8.2023945,0,0,0,0,0,0,0,0,1,1,0,9.17272,8.1382179,0,0,52,48,48,48,5,1,1,0,0,6,4,1,214.5,900808.38,0,0,4418.3906 -9777,12048,21922,21923,-9,-9,2,1,0,65,1,0,0,0,3,-9,2,1,0,0,4,6.0403395,7.8781281,7.7356901,1,0,-9,30,0,5,72.182999,0,0,0,60,1,5,1,3,3,2019,1,1,7,0,10,12,15,1,0,1,0,7.3359513,7.3359513,0,0,0,0,0,0,0,2,1,1,0,0,7.8835831,0,3,55.34,48.720001,49.25,61.25,7,1,1,0,0,1,4,1,248,1497314.5,0,0,2934.5444 -9777,12048,21923,21922,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,5,7.4811091,8.3179197,7.0426497,1,0,-9,30,0,-5,58.452663,0,0,0,65,3,4,1,2,3,2019,1,2,12,1,35,35,15,1,0,1,0,7.7382956,7.7382956,0,0,0,0,0,0,0,0,1,1,0,0,6.9820209,0,0,49.25,61.25,55.34,48.720001,4,1,1,0,0,1,4,1,248,1497314.5,0,0,2934.5444 -9777,12049,21924,-9,21922,21923,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.9395113,7.8365831,0,3,0,0,0,-9,0,-950.61493,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,38,42,15,1,0,-9,1,6.437726,6.437726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,-9,-9,6,1,1,0,1,1,3,1,296,4873.8647,0,0,1808.2583 -9778,12050,21925,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,7.9292655,8.2348433,0,3,0,0,0,-9,0,-961.27783,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,10.734475,10.734475,0,0,0,0,0,0,0,14.5,0,0,0,4.7438769,0,9.4697523,3,54.959999,53.169998,-9,-9,6,1,1,0,0,9,4,0,681,26943.607,0,0,2181.9573 -9779,12051,21926,21927,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,4,8.342082,8.4041023,0,1,0,-9,5,0,-2,-14.318668,0,0,1,34,3,2,1,-9,-9,2019,1,1,12,0,49,50,15,1,0,1,0,8.8626785,8.8626785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.18,59.200001,42.91,44.18,4,1,1,0,0,11,5,1,1194.5,246221.09,0,0,3119.854 -9779,12051,21927,21926,-9,-9,1,1,1,34,1,0,0,0,3,-9,2,1,0,0,2,8.6275339,8.5197544,0,1,0,-9,5,0,2,-7.6341629,0,0,0,32,2,4,1,2,-9,2019,1,2,14,4,48,50,15,1,1,1,0,12.441395,12.441395,0,0,0,0,0,0,0,0,0,0,0,1.2662095,0,0,0,42.91,44.18,27.18,59.200001,4,1,1,0,0,11,5,1,1194.5,246221.09,0,0,3119.854 -9780,12052,21928,21929,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,0,2,0,7.4774165,7.3526149,1,0,-9,10,0,0,-2.6304483,0,0,0,83,1,2,3,3,2,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,2.7893732,0,0,0,0,0,1,1,0,0,7.7437305,0,0,32.68,35.189999,55.049999,44,3,1,1,0,0,2,2,1,1012,666823.88,0,0,1207.121 -9780,12052,21929,21928,-9,-9,2,1,0,83,1,0,0,0,1,-9,4,3,0,0,2,0,4.2843561,4.2400346,1,0,-9,10,0,0,5.198813,0,0,0,83,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.52298391,4.2983656,0,0,55.049999,44,32.68,35.189999,6,1,1,0,0,2,2,1,1012,666823.88,0,0,1207.121 -9781,12053,21930,21933,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,2,8.7896986,8.6484509,0,2,0,-9,9,0,2,58.698597,0,0,0,50,1,4,1,2,2,2019,1,2,12,0,55,48,15,1,0,1,0,12.944328,12.944328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.83,52.470001,54.790001,55.860001,4,1,1,0,0,4,5,1,439.25,1717065,0,0,5252.6743 -9781,12053,21931,-9,21930,21933,5,1,0,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1003.8176,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.610001,56.93,-9,-9,6,1,1,0,0,4,5,1,439.25,1717065,0,0,5252.6743 -9781,12053,21932,-9,21930,21933,4,1,1,17,2,0,1,1,2,0,7,2,0,0,5,5.7073784,5.4979334,0,2,0,0,0,-9,0,-977.60767,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8131726,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,4,5,1,439.25,1717065,0,0,5252.6743 -9781,12053,21933,21930,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,8.9837942,9.2351608,0,2,0,-9,9,0,-2,118.90488,0,0,0,52,1,2,1,2,2,2019,1,1,9,2,50,50,15,1,0,1,0,22.487549,22.487549,0,0,0,0,0,0,0,0,1,1,0,.78336614,0,0,0,54.790001,55.860001,27.83,52.470001,5,1,1,0,0,4,5,1,439.25,1717065,0,0,5252.6743 -9781,12054,21934,-9,21930,21933,3,1,0,21,2,0,1,0,1,0,7,2,0,0,4,5.9309459,5.9887576,0,3,0,0,0,-9,0,-932.63367,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,1,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6728997,0,0,0,45.91,59.889999,-9,-9,5,1,1,0,0,4,2,1,847,28413.111,0,0,672.03381 -9782,12055,21935,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,5,0,7.2358308,6.5483146,3,0,0,0,-9,0,-1000.6871,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.371655,6.8437638,0,0,58,52,-9,-9,6,1,1,0,0,11,2,1,1976,1254125.1,0,0,736.38708 -9783,12056,21936,21937,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-5,0,0,0,0,75,3,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.52,59.259998,59.700001,53.75,7,1,1,0,0,10,1,0,668,291144.75,0,0,1778.6481 -9783,12056,21937,21936,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,5,0,0,0,0,70,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,9.2405987,0,0,0,0,2,1,1,0,0,0,0,3,59.700001,53.75,35.52,59.259998,7,1,1,0,0,10,1,0,668,291144.75,0,0,1778.6481 -9784,12057,21938,21939,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,6.7282104,6.9440594,1,0,-9,53,0,9,19.604145,0,0,0,66,2,4,3,2,2,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0976672,6.878798,0,0,53,46,54.790001,55.860001,6,1,1,0,0,4,2,1,263.5,461826.34,0,0,1605.8644 -9784,12057,21939,21938,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.8134222,7.241787,1,0,-9,53,0,0,53.013824,0,0,0,75,3,3,3,2,2,2019,4,2,7,0,0,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6583452,6.9823732,0,0,54.790001,55.860001,53,46,6,1,1,0,0,4,2,1,263.5,461826.34,0,0,1605.8644 -9785,12058,21940,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,6.2102742,6.275456,0,3,0,0,0,-9,0,-1096.0685,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,8,8,15,1,0,-9,0,5.9802594,5.9802594,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.439999,39.68,-9,-9,6,1,1,0,0,9,2,0,1427,231005.28,0,0,114.70309 -9786,12059,21941,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,0,5,8.7765627,8.5770798,0,3,0,0,0,-9,0,-1052.4863,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,41,40,15,1,1,-9,0,21.303387,21.303387,0,0,0,0,0,0,0,14.5,1,1,0,6.1665959,0,13.931479,3,40.32,63.02,-9,-9,4,1,1,0,0,12,5,1,1889,1403171,0,0,2023.2317 -9787,12060,21942,21943,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,0,-119.26493,0,0,0,63,3,2,1,-9,-9,2019,3,1,21,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.65,42.240002,37.720001,43.869999,5,1,1,0,0,13,3,1,1160.5,224293.23,0,0,1740.4011 -9787,12060,21943,21942,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,2,8.0593472,7.7597008,5.0018249,1,0,-9,42,0,0,63.616539,0,0,0,63,2,3,3,3,3,2019,2,2,14,4,42,39,15,1,1,4,0,10.2267,10.2267,0,0,0,0,0,0,0,0,1,1,0,5.0553217,4.8824296,0,0,37.720001,43.869999,27.65,42.240002,5,1,1,0,0,13,3,1,1160.5,224293.23,0,0,1740.4011 -9788,12061,21944,-9,21947,21946,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1123.8457,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,2,3,0,0,2,1,0,435.25,-14734.319,0,0,491.35394 -9788,12061,21945,-9,21947,21946,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.79517,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,1,0,435.25,-14734.319,0,0,491.35394 -9788,12061,21946,21947,-9,-9,1,1,1,48,1,0,3,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,22,0,8,0,0,0,0,40,2,4,3,3,3,2019,2,2,12,0,60,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.080002,46.529999,37.639999,57.200001,5,2,3,0,0,2,1,0,435.25,-14734.319,0,0,491.35394 -9788,12061,21947,21946,-9,-9,2,1,0,40,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,22,0,-8,0,0,0,1,48,1,3,1,3,3,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.639999,57.200001,37.080002,46.529999,4,2,3,0,0,2,1,0,435.25,-14734.319,0,0,491.35394 -9788,12062,21948,-9,21947,21946,3,1,0,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1038.781,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,28,9,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.629999,66.760002,-9,-9,5,2,3,0,0,2,1,0,373,144539.47,0,0,0 -9789,12063,21949,21950,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,44,0,3,0,0,0,0,66,3,1,3,3,3,2019,4,2,26,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,11.00338,1,46.919998,34.110001,40.029999,36.060001,4,2,3,0,1,6,1,1,509,23774.961,0,0,1239.7467 -9789,12063,21950,21949,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,44,0,-3,0,0,0,0,69,2,1,3,3,3,2019,4,1,23,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.029999,36.060001,46.919998,34.110001,4,2,3,0,1,6,1,1,509,23774.961,0,0,1239.7467 -9790,12064,21951,-9,21953,-9,2,1,1,19,2,0,1,1,2,0,7,2,0,0,4,0,5.1983757,5.3528814,3,0,0,0,-9,0,-1063.3934,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.742897,0,0,0,46.919998,60.709999,-9,-9,6,1,1,0,1,9,2,0,681,49798.66,0,0,-86.99353 -9790,12065,21952,21953,-9,-9,4,1,1,43,1,0,1,0,2,-9,1,1,0,0,4,6.431704,6.4922009,0,2,0,-9,2,0,0,15.652728,0,0,0,43,2,3,1,-9,-9,2019,1,1,9,0,32,32,15,1,0,1,0,2.5174153,2.5174153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.349998,53.169998,40.099998,54.560001,6,1,1,0,0,9,2,0,757,8024.9766,0,0,2610.1714 -9790,12065,21953,21952,-9,-9,1,1,0,43,1,0,1,0,2,-9,1,1,0,0,3,0,5.0849218,5.412262,2,0,-9,2,0,0,9.2454462,0,0,1,43,2,4,1,2,2,2019,1,4,17,5,0,16,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4149609,0,0,0,40.099998,54.560001,40.349998,53.169998,4,1,1,0,0,9,2,0,757,8024.9766,0,0,2610.1714 -9791,12066,21954,21955,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,1,1,0,6.9111476,7.0470972,1,0,-9,60,0,-1,-51.220707,0,0,0,77,3,2,3,3,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,126.74802,15.38982,0,27.230934,0,0,1,1,0,6.1284404,7.2897196,0,0,31.360001,20.959999,34.290001,33.040001,5,1,1,0,1,11,2,1,913,665113.13,0,0,2821.3213 -9791,12066,21955,21954,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,6.3611579,5.9859114,1,0,-9,60,0,1,-48.778271,0,0,0,76,3,1,3,-9,-9,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,1,0,8.0551357,3.9255068,0,12.631463,0,71.5,1,1,0,2.6091886,5.9970284,58.394691,1,34.290001,33.040001,31.360001,20.959999,6,1,1,0,0,11,2,1,913,665113.13,0,0,2821.3213 -9792,12067,21956,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-869.05145,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,1,1,0,0,4,1,1,2403,28113.715,0,0,737.54309 -9793,12068,21957,21958,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,5,8.903121,8.9585667,6.8475046,1,0,-9,31,0,4,28.869505,0,0,0,53,2,3,1,2,2,2019,1,1,7,0,41,41,15,1,0,1,0,18.779421,18.779421,0,0,0,0,0,0,0,7,0,0,0,0,6.9644399,7.4954748,3,62.389999,56.709999,55.689999,40.48,5,1,1,0,0,5,5,1,760,861196.5,0,0,4505.6167 -9793,12068,21958,21957,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,7.8885465,7.9900861,0,1,0,-9,31,0,-4,83.951744,0,0,0,57,1,5,1,2,2,2019,1,2,9,1,48,45,15,1,0,1,0,7.6767597,7.6767597,0,0,0,0,0,0,0,0,0,0,0,6.4291077,0,0,0,55.689999,40.48,62.389999,56.709999,4,1,1,0,0,5,5,1,760,861196.5,0,0,4505.6167 -9793,12069,21959,-9,21958,21957,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,8.048377,8.1890392,0,3,0,0,0,-9,0,-955.35889,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,37,39,15,1,0,-9,1,10.024437,10.024437,0,0,0,0,0,0,0,0,0,0,0,3.0197506,0,0,0,52.310001,58.290001,-9,-9,6,1,1,0,0,5,4,1,878,-22892.77,0,0,944.59338 -9794,12070,21960,21961,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,52,0,0,0,0,0,0,71,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,6.7783937,1,50.720001,20.02,52,47,5,1,1,0,0,13,1,0,537,72777.125,0,0,2134.2263 -9794,12070,21961,21960,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,52,0,0,0,0,0,0,71,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,19.999672,0,0,0,0,0,1,1,0,0,0,0,0,52,47,50.720001,20.02,5,1,1,0,0,13,1,0,537,72777.125,0,0,2134.2263 -9795,12071,21962,-9,21965,21964,2,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,7.9842305,7.7185054,0,3,0,0,0,-9,0,-950.83813,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,5,3,1,456,142593.27,0,0,1747.8651 -9795,12072,21963,-9,21965,21964,3,1,0,30,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-902.51447,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0654879,0,0,0,47,57,-9,-9,5,2,3,0,0,5,1,1,152,-134854.13,0,0,510.79401 -9795,12073,21964,21965,-9,-9,4,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,1,0,0,0,0,65,3,3,3,3,3,2019,4,1,19,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.5493162,0,19.705624,3,32.830002,48.419998,56.43,51.02,5,2,3,0,0,5,1,1,245.5,76847.328,0,0,385.6214 -9795,12073,21965,21964,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,35,0,-1,0,0,0,0,66,3,3,3,3,3,2019,4,4,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.391903,3,56.43,51.02,32.830002,48.419998,6,2,3,0,0,5,1,1,245.5,76847.328,0,0,385.6214 -9796,12074,21966,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,1,1,0,0,4,9.1201038,8.8258791,0,3,0,0,0,-9,0,-994.35229,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,37,40,15,1,0,-9,0,32.42091,32.42091,0,0,0,0,0,0,0,0,0,0,0,4.8019218,0,0,0,48,57,-9,-9,5,1,1,0,0,11,5,1,300,335843.34,0,0,4413.1641 -9797,12075,21967,21968,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,9.2416096,9.582118,0,1,0,-9,23,0,-7,-117.40464,0,0,0,62,2,2,3,-9,-9,2019,2,2,7,0,78,43,15,1,0,4,0,21.122272,21.122272,0,0,0,0,0,0,0,7,0,0,0,0,0,8.2426662,3,59.529999,56.439999,40.330002,38.360001,7,1,1,0,0,8,5,1,1075,1949696,0,0,2626.0366 -9797,12075,21968,21967,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,23,0,7,-.67672944,0,0,0,55,1,4,1,-9,-9,2019,3,1,17,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.330002,38.360001,59.529999,56.439999,5,1,1,0,0,8,5,1,1075,1949696,0,0,2626.0366 -9797,12076,21969,-9,21967,21968,3,1,1,19,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1063.931,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8780334,0,0,0,48,59,-9,-9,5,4,2,0,0,8,1,1,313,17375.254,0,0,-350.48392 -9798,12077,21970,21971,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,6.83568,7.0310016,1,0,-9,53,0,0,-22.792074,0,0,0,71,2,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1367972,6.9567757,0,0,49.110001,52.880001,40.310001,57.720001,6,1,1,0,0,7,2,1,758,630203.25,0,0,1921.7209 -9798,12077,21971,21970,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,0,-8.1643362,0,0,0,71,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.310001,57.720001,49.110001,52.880001,2,1,1,0,0,7,2,1,758,630203.25,0,0,1921.7209 -9799,12078,21972,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,7.7009401,7.5091014,0,3,0,0,0,-9,0,-1068.5056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,35,35,15,1,1,-9,0,6.1541953,6.1541953,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.470001,42.84,-9,-9,2,1,1,0,0,12,3,0,443,129238.63,0,0,554.87878 -9800,12079,21973,21974,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,1,28.601398,0,0,0,71,2,4,3,3,3,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,29.43,55,53,4,1,1,0,0,11,2,1,591.5,672719.13,0,0,1775.6493 -9800,12079,21974,21973,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.0644741,7.4784002,1,0,-9,10,0,-1,25.195564,0,0,0,72,3,2,3,3,3,2019,4,2,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7460146,7.2874265,0,0,55,53,45.32,29.43,6,1,1,0,0,11,2,1,591.5,672719.13,0,0,1775.6493 -9801,12080,21975,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,0,2,8.2516203,8.1958313,0,3,0,0,0,-9,0,-998.14307,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,55,57,15,1,1,-9,0,9.9591141,9.9591141,0,0,0,0,0,0,0,14.5,1,1,0,3.542104,0,14.577152,3,35.470001,39.389999,-9,-9,3,4,2,0,0,6,4,1,415,144711.67,0,0,1482.6462 -9802,12081,21976,-9,-9,-9,1,1,0,50,2,0,1,0,2,-9,2,1,0,0,2,7.4675074,7.443244,0,4,0,0,0,-9,0,-846.14032,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,15,0,15,1,1,-9,0,12.13662,12.13662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.639999,41.220001,-9,-9,7,1,1,0,0,8,2,0,306.5,5214.3594,0,0,1202.9875 -9802,12081,21977,-9,21976,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-896.60077,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,2,0,306.5,5214.3594,0,0,1202.9875 -9802,12082,21978,-9,21976,-9,2,1,1,26,2,0,1,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-900.08679,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,37.790001,50.419998,-9,-9,5,4,2,1,0,8,1,0,108,0,0,0,-11.714443 -9803,12083,21979,21980,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,0,4,9.1219082,8.6323414,0,1,0,-9,9,0,1,7.4930491,0,0,0,39,1,4,1,2,1,2019,1,2,12,0,41,43,15,1,0,1,0,24.1553,24.1553,0,0,0,0,0,0,0,0,0,0,0,5.41923,0,0,0,49.439999,56.93,58.150002,52.91,6,1,1,0,0,7,5,1,182,1400864.3,0,0,6196.063 -9803,12083,21980,21979,-9,-9,2,1,0,39,1,0,0,0,1,-9,1,1,0,0,4,8.9271593,8.9563208,0,1,0,-9,4,0,-1,50.895863,0,0,1,40,1,4,1,-9,-9,2019,1,1,12,0,30,30,15,1,0,1,0,23.946091,23.946091,0,0,0,0,0,0,0,0,0,0,0,5.9237742,0,0,0,58.150002,52.91,49.439999,56.93,6,1,1,0,0,7,5,1,182,1400864.3,0,0,6196.063 -9804,12084,21981,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-920.04675,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,28.241049,0,1,1,0,0,0,0,0,30.24,36.75,-9,-9,3,4,2,0,0,8,1,1,119,448461.31,0,0,495.80295 -9805,12085,21982,21983,-9,-9,1,1,1,37,1,0,1,0,1,-9,1,1,0,0,2,9.8057861,9.6981163,0,2,0,-9,15,0,0,-33.913006,0,0,0,37,1,4,1,3,2,2019,1,2,24,10,21,65,15,1,1,1,0,80.712997,80.712997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.4,59.43,55.790001,52.619999,6,1,1,0,0,9,5,1,728,391056.63,0,0,5798.917 -9805,12085,21983,21982,-9,-9,2,1,0,37,1,0,1,0,1,-9,1,1,0,0,4,7.5482965,7.678442,0,2,0,-9,15,0,0,68.222046,0,0,1,37,1,2,1,2,2,2019,1,1,8,0,15,15,15,1,0,1,0,12.793465,12.793465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,30.4,59.43,6,1,1,0,0,9,5,1,728,391056.63,0,0,5798.917 -9805,12085,21984,-9,21983,21982,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.0673,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,728,391056.63,0,0,5798.917 -9806,12086,21985,21986,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-1,-66.381439,0,0,0,72,2,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,0,40.759659,3,51,47,56.57,51.02,5,2,3,0,0,5,2,1,1407.5,656483.69,0,0,1641.5629 -9806,12086,21986,21985,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.3792963,7.1351032,1,0,-9,52,0,1,-15.613359,0,0,0,71,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,42,1,1,0,4.59446,7.4396949,54.862507,3,56.57,51.02,51,47,6,2,3,0,0,5,2,1,1407.5,656483.69,0,0,1641.5629 -9807,12087,21987,-9,21989,-9,2,1,1,30,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1005.9423,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,4,2,0,0,8,1,1,1674,170225.92,0,0,1386.7399 -9807,12088,21988,21989,-9,-9,3,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,8.4513283,8.7646866,0,1,0,-9,8,0,3,55.400826,0,0,0,60,2,3,1,-9,-9,2019,1,1,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,48,5,3,4,0,0,8,5,1,559.5,196220.72,0,0,3014.6348 -9807,12088,21989,21988,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,6.4929147,6.0570703,0,1,0,-9,8,0,-3,-127.62048,0,0,0,63,2,3,1,2,2,2019,1,3,11,2,30,0,15,1,0,1,0,2.3264184,2.3264184,0,0,0,0,0,0,0,96,1,1,0,0,0,109.28419,3,49,48,51,48,5,3,4,0,0,8,5,1,559.5,196220.72,0,0,3014.6348 -9808,12089,21990,-9,21993,21992,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-904.78571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,12,4,1,283.5,252316.41,0,0,2685.6941 -9808,12089,21991,-9,21993,21992,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1040.3708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,4,1,283.5,252316.41,0,0,2685.6941 -9808,12089,21992,21993,-9,-9,1,1,1,58,1,0,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,2,0,13,-55.03376,0,0,0,45,2,3,1,2,2,2019,1,2,11,0,65,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.279999,28.73,50.299999,5,1,1,0,0,12,4,1,283.5,252316.41,0,0,2685.6941 -9808,12089,21993,21992,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,3,8.872611,9.149538,0,2,0,-9,2,0,-13,-49.689381,0,0,0,58,2,4,1,-9,2,2019,1,1,23,11,43,40,15,1,1,1,0,23.890947,23.890947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.73,50.299999,49.41,58.279999,4,1,1,0,0,12,4,1,283.5,252316.41,0,0,2685.6941 -9809,12090,21994,21995,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,0,3,7.3595438,7.9909267,7.6989975,1,0,-9,7,0,4,-105.29485,-9,0,0,60,1,5,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,4.8441806,4.8441806,0,0,0,0,0,0,0,0,0,0,0,3.4415083,7.533998,0,0,52,48,54.689999,57.470001,5,1,1,0,0,8,5,1,609,575480.31,0,0,5596.291 -9809,12090,21995,21994,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,0,5,8.1438103,9.181695,8.5844717,1,0,-9,36,0,-4,58.962715,0,0,0,64,1,3,1,2,1,2019,1,2,8,0,10,0,15,1,0,1,0,36.402428,36.402428,0,0,0,0,0,0,0,0,0,0,0,4.0651579,8.5884819,0,0,54.689999,57.470001,52,48,7,1,1,0,0,8,5,1,609,575480.31,0,0,5596.291 -9810,12091,21996,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,1,0,5.4909363,5.1632633,3,0,0,0,-9,0,-991.74048,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2644296,0,0,0,62.150002,12.26,-9,-9,7,1,1,0,0,12,2,0,369,377074.41,0,0,2405.1133 -9811,12092,21997,21998,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,3,47.629421,0,0,0,69,2,3,3,3,3,2019,4,2,19,5,0,0,15,4,1,4,0,0,0,1,0,6.9142003,0,0,0,0,0,1,1,0,0,0,0,0,37.389999,50.459999,53.389999,49.669998,1,1,1,0,0,4,2,1,1536,892581.25,0,0,1471.5913 -9811,12092,21998,21997,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.8527703,6.7253404,1,0,-9,53,0,-3,-39.25576,0,0,0,72,3,2,3,3,3,2019,4,1,9,0,0,32,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8946512,6.9169917,0,0,53.389999,49.669998,37.389999,50.459999,6,1,1,0,0,4,2,1,1536,892581.25,0,0,1471.5913 -9812,12093,21999,22000,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,2,8.0372086,8.11343,0,1,0,-9,44,0,0,-56.482563,0,0,0,62,1,2,1,3,2,2019,1,2,15,5,28,35,15,1,1,1,0,12.210913,12.210913,0,0,0,0,0,0,0,0,0,0,0,2.9147379,0,0,0,44.290001,39.68,57.57,49.689999,5,1,1,0,0,10,5,1,763.5,746310.13,0,0,3001.1714 -9812,12093,22000,21999,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,2,9.0654097,9.0549078,6.0796261,1,0,-9,44,0,0,-40.597717,0,0,0,62,1,2,1,2,1,2019,1,1,7,0,37,37,15,1,0,1,0,24.05172,24.05172,0,0,0,0,0,0,0,0,0,0,0,6.0817952,0,0,0,57.57,49.689999,44.290001,39.68,5,1,1,0,0,10,5,1,763.5,746310.13,0,0,3001.1714 -9813,12094,22001,22002,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,7.9309287,8.070713,0,1,0,-9,20,0,0,-132.28165,0,0,0,55,1,2,1,3,3,2019,1,1,23,9,38,37,15,1,1,1,0,8.7474413,8.7474413,0,0,0,0,0,0,0,0,0,0,0,1.4099836,0,0,0,46.080002,57.200001,44.57,48.709999,4,1,1,0,0,5,5,1,477.5,1678941.8,0,0,3486.9658 -9813,12094,22002,22001,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,2,8.326539,8.1037874,0,1,0,-9,20,0,0,138.91765,0,0,0,55,1,3,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,13.414966,13.414966,0,0,0,0,0,0,0,14.5,0,0,0,0,0,7.6652617,3,44.57,48.709999,46.080002,57.200001,5,1,1,0,0,5,5,1,477.5,1678941.8,0,0,3486.9658 -9814,12095,22003,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,7.4117708,7.3620977,3,0,0,0,-9,0,-944.79089,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,16,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0333009,6.9318409,0,0,64.43,33.740002,-9,-9,6,4,2,0,0,8,2,0,299,722495.94,0,0,967.41095 -9814,12096,22004,-9,22003,-9,2,1,0,36,2,0,0,0,2,-9,2,1,0,0,4,6.2465386,6.0282073,0,3,0,0,0,-9,0,-960.68359,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,37,0,15,1,0,-9,1,1.5418255,1.5418255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,4,2,0,0,8,2,0,605,-179651.2,0,0,1993.1879 -9815,12097,22005,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,0,2,0,8.2876329,8.2577,3,0,0,0,-9,0,-1037.72,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,1,2.4328749,0,0,0,0,0,0,1,1,0,8.130764,8.3366995,0,0,27.959999,50.900002,-9,-9,5,1,1,0,0,9,4,1,1105,823195.38,0,0,3412.4919 -9816,12098,22006,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,2,7.9746943,8.2608747,6.2276335,3,0,0,0,-9,0,-1039.4689,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,25,33,15,1,0,-9,0,15.577156,15.577156,0,0,0,0,0,0,0,0,1,1,0,6.2521925,0,0,0,42.810001,33.349998,-9,-9,2,2,3,0,0,8,4,1,1419,686402.19,0,0,2313.7319 -9817,12099,22007,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,0,3,7.5091405,7.6204925,6.803266,3,0,0,0,-9,0,-840.97064,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,18,18,15,1,0,-9,0,8.2918587,8.2918587,0,0,0,0,0,0,0,0,1,1,0,3.8968999,6.4361248,0,0,57.330002,53.459999,-9,-9,2,1,1,0,0,2,3,1,867,318643.56,0,0,1683.4973 -9818,12100,22008,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,3,8.8611221,9.1769924,0,1,0,-9,5,0,-7,144.87605,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,9,1,51,53,15,1,0,-9,0,12.728882,12.728882,0,0,0,0,0,0,0,0,0,0,0,4.1436124,0,0,0,47.150002,56.66,54.18,50.75,6,1,1,0,0,12,5,1,138,115214.91,0,0,3769.842 -9818,12101,22009,-9,-9,-9,3,1,1,27,2,0,0,0,1,-9,2,1,0,0,5,8.3874683,8.2085428,0,3,0,-9,0,-9,0,-988.7467,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,40,0,15,1,0,-9,0,12.951592,12.951592,0,0,0,0,0,0,0,0,0,0,0,7.038898,0,0,0,59.43,58.049999,-9,-9,7,2,3,0,0,12,4,1,570,49550.531,0,0,2761.2593 -9818,12102,22010,-9,-9,-9,2,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,9.2615662,9.5405807,0,1,0,-9,5,0,7,74.922768,0,0,0,-9,-9,-9,-9,1,1,2019,1,1,7,0,58,55,15,1,0,-9,0,21.233034,21.233034,0,0,0,0,0,0,0,0,0,0,0,6.8088536,0,0,0,54.18,50.75,47.150002,56.66,6,1,1,0,0,12,5,1,474,1072600.4,0,0,3026.0728 -9819,12103,22011,22012,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,3,7.4843469,7.4960923,0,1,0,-9,11,0,-2,-30.754204,0,0,1,39,1,3,1,2,2,2019,1,2,12,4,24,40,15,1,1,1,0,8.6679096,8.6679096,0,0,0,0,0,0,0,0,0,0,0,3.1667824,0,0,0,54.25,31.66,55.360001,51.57,6,2,3,0,0,8,4,0,645,95859.406,0,0,2200.0886 -9819,12103,22012,22011,-9,-9,2,1,1,39,1,0,0,0,1,-9,2,1,0,0,3,7.8771729,7.8604159,0,1,0,-9,3,0,2,29.973188,0,0,0,37,1,3,1,2,2,2019,1,1,6,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,54.25,31.66,6,2,3,0,0,8,4,0,645,95859.406,0,0,2200.0886 -9820,12104,22013,-9,-9,-9,1,1,0,41,3,0,0,0,2,-9,2,1,0,0,4,8.0539389,8.1913862,0,3,0,-9,0,-9,0,-1119.7186,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,42,0,15,1,0,-9,0,9.6588764,9.6588764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,13,4,1,458,75719.82,0,0,470.69153 -9821,12105,22014,-9,22015,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1043.677,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,1,0,1496,-64950.109,0,0,2186.1765 -9821,12105,22015,-9,-9,-9,1,1,0,36,2,1,1,0,1,-9,6,3,0,0,2,0,4.5004969,4.6719236,4,0,0,0,-9,0,-1037.7762,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1169286,0,0,0,31.18,57.880001,-9,-9,3,1,1,0,1,12,1,0,1496,-64950.109,0,0,2186.1765 -9822,12106,22016,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,2,7.9080992,7.9711781,0,3,0,0,0,-9,0,-966.93976,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,47,47,15,1,0,-9,0,5.3038125,5.3038125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.639999,40.560001,-9,-9,4,1,1,0,0,5,3,0,2598,52625.078,0,0,1328.0829 -9823,12107,22017,-9,22019,22018,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.84082,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,4,1,2142.3333,292797.72,0,0,4037.5793 -9823,12107,22018,22019,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,9.0546188,8.9803934,0,2,0,-9,10,0,-1,80.082825,0,0,0,49,2,5,1,-9,-9,2019,1,1,9,0,45,47,15,1,0,1,0,20.202763,20.202763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,54.240002,49.810001,59.639999,6,1,1,0,0,8,4,1,2142.3333,292797.72,0,0,4037.5793 -9823,12107,22019,22018,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,5,7.6653166,7.7376561,0,2,0,-9,19,0,1,-24.685314,0,0,0,48,2,4,1,3,3,2019,1,2,7,0,26,25,15,1,0,1,0,9.4738503,9.4738503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.810001,59.639999,55.360001,54.240002,5,1,1,0,0,8,4,1,2142.3333,292797.72,0,0,4037.5793 -9824,12108,22020,22021,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,6.7580457,6.3265166,1,0,-9,45,0,7,80.460976,0,0,0,61,3,3,1,3,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7475953,0,0,62.84,30.790001,44.509998,49.630001,6,1,1,0,0,7,3,1,1170,1386582,0,0,2231.5669 -9824,12108,22021,22020,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,7.5715137,7.362659,0,1,0,-9,45,0,-7,-3.5998745,0,0,0,68,3,2,3,3,3,2019,2,2,19,7,37,45,15,1,1,4,0,6.5738502,6.5738502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.509998,49.630001,62.84,30.790001,5,1,1,0,0,7,3,1,1170,1386582,0,0,2231.5669 -9825,12109,22022,-9,-9,-9,1,1,0,28,3,1,1,0,1,-9,2,1,0,0,3,0,0,0,4,0,0,0,-9,0,-971.78198,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.790001,51.639999,-9,-9,7,2,3,0,0,8,1,0,738,-95498.5,0,0,0 -9825,12109,22023,-9,22022,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-951.30524,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,8,1,0,738,-95498.5,0,0,0 -9826,12110,22024,22025,-9,-9,2,1,0,62,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,38,0,-5,41.010197,-9,0,0,67,3,3,3,3,3,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.58,31.75,46.549999,43.16,5,1,1,0,0,13,2,0,445,-72490.625,0,0,2995.0679 -9826,12110,22025,22024,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,1,3,0,4.749167,4.733953,1,0,-9,9,0,5,-24.053118,-9,0,0,62,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.7422144,4.8332477,14.680983,1,46.549999,43.16,30.58,31.75,6,1,1,0,0,13,2,0,445,-72490.625,0,0,2995.0679 -9827,12111,22026,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,6.3896823,6.5775175,0,3,0,0,0,-9,0,-976.58405,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,10,10,15,1,0,-9,0,7.287683,7.287683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,3,1,1,0,1,2,2,0,328,-127930.17,0,0,664.28595 -9828,12112,22027,22028,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.8367758,7.8907456,1,0,-9,6,0,-1,-96.015808,0,0,0,72,1,4,3,3,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4190187,7.8373704,0,0,53.810001,53.560001,60.119999,54.799999,7,1,1,0,0,8,5,1,273.5,2441563,0,0,6841.4785 -9828,12112,22028,22027,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,8.4851227,8.6021538,1,0,-9,6,0,1,-47.659946,0,0,0,71,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.775857,0,0,60.119999,54.799999,53.810001,53.560001,6,1,1,0,0,8,5,1,273.5,2441563,0,0,6841.4785 -9829,12113,22029,-9,22030,22031,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.5119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,1039.75,913493.38,0,0,1477.2662 -9829,12113,22030,22031,-9,-9,1,1,0,31,1,1,2,0,2,-9,6,3,0,0,2,0,3.8584499,3.6035964,2,0,-9,3,0,1,51.411816,0,0,1,30,2,4,1,2,2,2019,3,3,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3292971,0,0,0,41.060001,28.620001,52.970001,53.970001,6,1,1,0,0,9,3,0,1039.75,913493.38,0,0,1477.2662 -9829,12113,22031,22030,-9,-9,3,1,1,30,1,1,2,0,2,-9,2,1,0,0,4,8.0859909,8.3928833,0,2,0,-9,3,0,-1,20.562428,0,0,0,31,2,2,3,-9,-9,2019,2,1,10,1,42,37,15,1,0,3,0,11.575212,11.575212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.970001,53.970001,41.060001,28.620001,6,1,1,0,0,9,3,0,1039.75,913493.38,0,0,1477.2662 -9829,12113,22032,-9,22030,22031,2,1,1,12,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1216.7206,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,0,1039.75,913493.38,0,0,1477.2662 -9830,12114,22033,-9,22035,22034,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1248.8192,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,2,3,0,0,8,1,1,905.33331,104786.13,0,0,240.75562 -9830,12114,22034,22035,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,5,0,0,0,2,0,-9,24,0,5,0,0,0,0,41,1,5,3,2,2,2019,2,2,6,0,0,38,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,62.389999,56.709999,7,2,3,0,0,8,1,1,905.33331,104786.13,0,0,240.75562 -9830,12114,22035,22034,-9,-9,2,1,0,41,1,0,1,0,1,-9,3,3,0,0,5,0,0,0,2,0,-9,8,0,-5,0,0,0,1,46,1,5,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,62.389999,56.709999,7,2,3,1,0,8,1,1,905.33331,104786.13,0,0,240.75562 -9830,12115,22036,-9,22035,22034,3,1,1,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1020.2165,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.799371,0,0,0,54.099998,59.110001,-9,-9,7,2,3,0,0,8,1,1,766,0,0,0,-587.01111 -9831,12116,22037,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,8.0872393,8.073555,0,3,0,0,0,-9,0,-1061.557,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,37,45,15,1,0,-9,0,7.7674489,7.7674489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.62,66,-9,-9,1,1,1,0,1,4,4,1,624,43307.898,0,0,206.41891 -9832,12117,22038,22039,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,2,8.1991348,8.2745466,0,1,0,-9,9,0,-12,-54.665554,0,0,0,57,2,3,1,2,2,2019,1,2,12,1,37,76,15,1,0,1,0,13.102406,13.102406,0,0,0,0,0,0,0,2,0,0,0,4.6102257,0,0,3,53.060001,42.330002,50.110001,55.32,6,1,1,0,0,5,5,1,1426.5,495796.09,0,0,2631.9324 -9832,12117,22039,22038,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.1575375,8.6748047,0,1,0,-9,9,0,12,35.220436,0,0,0,45,2,2,1,3,2,2019,1,1,9,0,38,38,15,1,0,1,0,11.684324,11.684324,0,0,0,0,0,0,0,0,0,0,0,2.0365796,0,0,0,50.110001,55.32,53.060001,42.330002,6,1,1,0,0,5,5,1,1426.5,495796.09,0,0,2631.9324 -9833,12118,22040,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,2,7.967195,7.588335,0,3,0,0,0,-9,0,-1050.2086,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,25,30,15,1,0,-9,0,10.418046,10.418046,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.643795,3,58.560001,46.450001,-9,-9,6,1,1,0,0,7,3,1,356,-135460.06,0,0,2093.7358 -9833,12119,22041,-9,22040,-9,2,1,1,22,2,0,0,0,2,0,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-1050.6108,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.469999,60.560001,-9,-9,3,1,1,0,1,7,1,1,1941,58275.695,0,0,245.6279 -9834,12120,22042,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-975.89771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.369999,18.299999,-9,-9,7,1,1,0,0,9,1,1,118,-14379.626,0,0,2879.6282 -9835,12121,22043,22044,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.3276005,7.087954,1,0,-9,20,0,-5,150.26411,0,0,0,68,1,4,3,-9,-9,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3179722,7.0858779,0,0,45.23,48.330002,45.18,57.439999,6,1,1,0,0,4,4,1,452,1133694.5,0,0,5130.5518 -9835,12121,22044,22043,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.759944,8.5557451,1,0,-9,22,0,5,-31.533754,0,0,0,63,2,3,3,-9,-9,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.704525,0,0,45.18,57.439999,45.23,48.330002,7,1,1,0,0,4,4,1,452,1133694.5,0,0,5130.5518 -9836,12122,22045,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,2,1,0,0,4,7.0770702,7.4092531,0,3,0,-9,0,-9,0,-1005.5169,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,28,0,15,1,0,-9,0,5.8009925,5.8009925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.77,60.119999,-9,-9,5,1,1,0,0,13,3,0,640,296945.31,0,0,3091.3062 -9836,12123,22046,-9,22045,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,7.9164734,7.6153812,0,3,0,-9,0,-9,0,-922.94672,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,0,15,1,0,-9,1,6.4878936,6.4878936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.959999,61.139999,-9,-9,5,1,1,0,0,13,3,0,676,60122.438,0,0,305.1055 -9836,12124,22047,-9,22045,-9,3,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,7.9291563,8.0402231,0,3,0,-9,0,-9,0,-898.79651,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,37,0,15,1,0,-9,1,8.4370384,8.4370384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.700001,-9,-9,6,1,1,0,0,13,3,0,977,-102438.44,0,0,558.77661 -9837,12125,22048,22049,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,5,8.7005901,8.2780027,0,1,0,-9,6,0,-6,-22.620617,0,0,0,36,2,5,1,3,3,2019,1,1,11,0,37,43,15,1,0,1,0,13.311382,13.311382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.689999,57.470001,6,1,1,0,0,5,5,1,1663,51059.629,0,0,4024.5544 -9837,12125,22049,22048,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,0,5,8.540287,8.671998,0,1,0,-9,6,0,6,-27.840364,0,0,1,30,2,5,1,3,2,2019,1,2,7,0,39,37,15,1,0,1,0,14.622314,14.622314,0,0,0,0,0,0,0,0,1,1,0,3.7439082,0,0,0,54.689999,57.470001,57.060001,57.759998,6,1,1,0,0,5,5,1,1663,51059.629,0,0,4024.5544 -9838,12126,22050,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.8888245,7.6264477,0,3,0,0,0,-9,0,-1089.3767,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,40,0,15,1,0,-9,0,5.4887362,5.4887362,0,0,0,0,0,0,0,0,0,0,0,5.6189027,0,0,0,51.470001,53.169998,-9,-9,6,1,1,0,0,4,3,0,275,30278.209,0,0,2565.519 -9839,12127,22051,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,4,0,5.592485,5.8785863,3,0,0,0,-9,0,-991.03833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7436001,5.8968492,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,5,2,1,1207,-35309.164,0,0,1646.2498 -9840,12128,22052,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,7.8227515,7.7704549,3,0,0,0,-9,0,-1075.491,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3652682,7.3074217,0,0,62.189999,33.349998,-9,-9,7,1,1,0,0,9,3,1,227,984998.56,0,0,2145.9861 -9841,12129,22053,22054,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,0,1,6.9265466,6.8530145,0,1,0,-9,40,0,-2,109.71423,0,0,0,62,3,3,3,3,3,2019,2,1,19,6,16,15,15,1,1,3,0,7.9569206,7.9569206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.970001,18.82,46.330002,55.93,5,1,1,0,0,13,2,1,227.5,32931.574,0,0,-621.73938 -9841,12129,22054,22053,-9,-9,1,1,1,62,1,0,0,0,3,-9,3,3,0,0,3,0,6.7914014,6.6662407,1,0,-9,40,0,2,18.576366,0,0,0,60,3,1,1,3,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9144301,0,0,46.330002,55.93,32.970001,18.82,5,1,1,1,0,13,2,1,227.5,32931.574,0,0,-621.73938 -9842,12130,22055,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1065.3899,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.299999,28.33,-9,-9,6,1,1,1,0,4,1,0,803,-92590.359,0,0,2762.9336 -9843,12131,22056,-9,-9,-9,2,1,1,56,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-903.74829,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.46563,3,55.779999,31.52,-9,-9,5,1,1,1,0,13,1,0,593,-33902.258,0,0,-82.023041 -9843,12132,22057,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-977.7196,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.299999,30.790001,-9,-9,1,1,1,0,0,13,1,0,486,368282.94,0,0,1097.0228 -9844,12133,22058,-9,22059,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1052.5182,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,5,3,1,1565,162371.11,0,0,3217.3613 -9844,12133,22059,-9,-9,-9,1,1,0,41,2,0,2,0,2,-9,2,1,0,1,2,7.8333626,7.7722764,0,4,0,-9,0,0,0,-1006.8162,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,25,11,23,23,15,1,1,-9,0,10.045195,10.045195,0,0,0,0,0,0,0,103,1,1,0,0,0,128.0442,3,23.27,54.619999,-9,-9,3,4,2,0,0,5,3,1,1565,162371.11,0,0,3217.3613 -9845,12134,22060,22061,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,6.3548884,6.7673755,1,0,-9,51,0,0,-42.407162,0,0,0,72,1,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.426312,6.4809418,0,0,46.549999,58.299999,54.200001,57.490002,6,1,1,0,0,5,3,1,813,932404,0,0,2848.7161 -9845,12134,22061,22060,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,7.9332013,7.7439246,1,0,-9,51,0,0,-32.682053,0,0,0,72,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8266196,7.7551637,0,0,54.200001,57.490002,46.549999,58.299999,7,1,1,0,0,5,3,1,813,932404,0,0,2848.7161 -9846,12135,22062,22064,-9,-9,1,1,0,39,1,0,3,0,1,-9,2,1,0,0,3,8.2321558,8.0426207,0,2,0,-9,18,0,0,61.916927,0,0,1,48,2,5,1,1,2,2019,1,2,8,0,26,28,15,1,0,1,0,17.343418,17.343418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.400002,42,57.060001,57.759998,6,3,4,0,0,8,3,1,810.40002,315007.75,0,0,4120.7822 -9846,12135,22063,-9,22062,22064,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,5,7.2504826,7.4574766,0,2,0,0,0,-9,0,-1063.9215,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.52004862,0,0,0,63.380001,53.470001,-9,-9,6,3,4,0,0,8,3,1,810.40002,315007.75,0,0,4120.7822 -9846,12135,22064,22062,-9,-9,2,1,1,48,1,0,3,0,2,-9,2,1,0,0,5,8.4184799,8.0676289,0,2,0,-9,7,0,9,-134.51147,0,0,0,39,1,3,1,-9,-9,2019,1,1,0,0,38,12,15,1,0,1,0,9.2943554,9.2943554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,64.400002,42,7,3,4,0,0,8,3,1,810.40002,315007.75,0,0,4120.7822 -9846,12135,22065,-9,22062,22064,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.00897,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,3,1,810.40002,315007.75,0,0,4120.7822 -9846,12135,22066,-9,22062,22064,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.2005,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,3,1,810.40002,315007.75,0,0,4120.7822 -9847,12136,22067,22068,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,0,3,0,7.325089,7.4550881,1,0,-9,6,0,-1,-5.7403784,0,0,0,82,1,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0005131,7.3043275,0,0,56.310001,38.830002,62.490002,55.09,7,1,1,0,0,12,3,1,262,328206.75,0,0,2569.0122 -9847,12136,22068,22067,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,4,4.4581861,6.6115942,6.6934237,1,0,-9,6,0,1,-41.644566,0,0,0,81,2,3,3,3,1,2019,4,2,6,0,3,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.845242,6.6701694,0,0,62.490002,55.09,56.310001,38.830002,7,1,1,0,0,12,3,1,262,328206.75,0,0,2569.0122 -9848,12137,22069,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,-9,0,1,0,-940.54559,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,7.9994221,0,1.002957,0,0,0,1,1,0,4.4617281,0,0,0,53,44,-9,-9,6,1,1,0,0,9,1,1,1325,142925.17,0,0,-94.155243 -9848,12138,22070,-9,22069,-9,2,1,1,61,3,0,0,0,1,-9,6,3,0,0,2,0,7.682436,7.3933291,3,0,0,0,-9,0,-995.17596,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,7.9195876,7.7290797,76.24823,3,34.049999,44.25,-9,-9,3,1,1,0,0,9,3,1,457,357660.94,0,0,2263.6936 -9849,12139,22071,22072,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,5.7099762,5.5861273,1,0,-9,8,0,-1,120.08297,0,0,0,83,2,4,3,-9,-9,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0145998,5.679337,0,0,54.619999,53.529999,57.16,56.150002,6,1,1,0,0,11,2,1,589,834828.56,0,0,2674.272 -9849,12139,22072,22071,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,4,0,6.9747348,7.3176594,1,0,-9,8,0,1,-27.563061,0,0,0,82,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9278522,0,0,57.16,56.150002,54.619999,53.529999,6,1,1,0,0,11,2,1,589,834828.56,0,0,2674.272 -9850,12140,22073,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.2114387,5.901577,3,0,0,0,-9,0,-1011.8424,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.79421,6.126956,0,0,50.619999,48.279999,-9,-9,6,1,1,0,0,12,2,1,332,114595.44,0,0,262.39908 -9851,12141,22074,-9,-9,-9,4,1,0,23,2,0,0,0,2,-9,2,1,0,0,2,8.613903,8.3164215,0,3,0,-9,0,-9,0,-951.54498,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,9,0,15,1,1,-9,1,47.728481,47.728481,0,0,0,0,0,0,0,0,0,0,0,1.7921259,0,0,0,37.610001,42.43,-9,-9,4,1,1,0,0,12,4,1,324,14673.913,0,0,1639.6378 -9852,12142,22075,22076,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,0,2,9.2818861,9.4389944,0,2,0,-9,11,0,3,-32.042625,0,0,0,32,1,5,3,2,2,2019,2,2,11,0,45,78,15,1,0,3,0,26.077238,26.077238,0,0,0,0,0,0,0,0,0,0,0,1.2078404,0,0,0,53.060001,42.330002,60,56.43,5,1,1,0,0,4,5,1,1861.25,182226.83,0,0,3446.4778 -9852,12142,22076,22075,-9,-9,2,1,0,32,1,1,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,11,0,-3,49.021511,0,0,1,35,1,2,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,56.43,53.060001,42.330002,4,1,1,0,1,4,5,1,1861.25,182226.83,0,0,3446.4778 -9852,12142,22077,-9,22076,22075,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1116.6775,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,5,1,1861.25,182226.83,0,0,3446.4778 -9852,12142,22078,-9,22076,22075,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.93707,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,5,1,1861.25,182226.83,0,0,3446.4778 -9853,12143,22079,22080,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,2,0,6.6948566,7.1660037,1,0,-9,43,0,4,145.50342,0,0,0,67,3,4,1,3,1,2019,3,1,17,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0818748,7.0843935,0,0,50.209999,45.02,57.16,56.150002,6,1,1,0,0,9,3,1,1433,511400.88,0,0,3507.5391 -9853,12143,22080,22079,-9,-9,1,1,0,67,1,0,0,0,3,-9,2,1,0,0,4,7.1929069,7.5263262,6.7497835,1,0,-9,42,0,-4,-73.12941,0,0,0,71,1,2,3,2,3,2019,2,2,7,0,17,17,15,1,0,4,0,7.9646626,7.9646626,0,0,0,0,0,0,0,0,1,1,0,5.8481302,6.4089737,0,0,57.16,56.150002,50.209999,45.02,5,1,1,0,0,9,3,1,1433,511400.88,0,0,3507.5391 -9854,12144,22081,22082,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.4309249,7.1707125,1,0,-9,45,0,1,13.448683,0,0,0,64,1,4,3,-9,-9,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1399064,7.2327824,0,0,47.580002,56.389999,60.529999,42.470001,6,1,1,0,0,4,4,1,330,1777328,0,0,3891.6768 -9854,12144,22082,22081,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,6.2258897,8.1042738,8.4693117,1,0,-9,45,0,-1,82.104515,0,0,0,65,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.669167,8.018508,0,0,60.529999,42.470001,47.580002,56.389999,6,1,1,0,0,4,4,1,330,1777328,0,0,3891.6768 -9855,12145,22083,22084,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,5.5670633,5.5664825,0,1,0,-9,58,0,-5,-64.698647,0,0,0,83,2,3,3,3,3,2019,4,2,7,0,4,4,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6382632,0,0,0,54.040001,36.400002,59.220001,24.290001,2,1,1,0,0,7,3,1,1073.5,1270571.5,0,0,3181.1147 -9855,12145,22084,22083,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,7.896163,8.0659504,1,0,-9,58,0,5,-56.713272,0,0,0,78,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.8703507,7.7458363,0,0,59.220001,24.290001,54.040001,36.400002,7,1,1,0,0,7,3,1,1073.5,1270571.5,0,0,3181.1147 -9856,12146,22085,-9,22086,-9,2,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1031.522,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,734.75,0,0,0,1672.661 -9856,12146,22086,-9,-9,-9,1,1,0,29,2,1,3,0,2,0,7,2,0,0,4,0,4.932126,4.8403325,4,0,0,0,-9,0,-928.24609,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9702725,0,0,0,43.549999,46.040001,-9,-9,4,1,1,0,1,6,2,0,734.75,0,0,0,1672.661 -9856,12146,22087,-9,22086,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1063.1206,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,0,734.75,0,0,0,1672.661 -9856,12146,22088,-9,22086,-9,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.1884,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,734.75,0,0,0,1672.661 -9857,12147,22089,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,7.205759,7.582068,3,0,0,0,-9,0,-942.18433,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0035453,7.361114,0,0,54.790001,15.67,-9,-9,6,1,1,0,0,11,3,1,561,301500.28,0,0,714.02039 -9857,12148,22090,-9,22089,-9,2,1,1,57,2,0,0,0,2,-9,1,1,0,0,4,6.6105504,6.7230964,0,3,0,0,0,-9,0,-1055.5549,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,84,84,15,1,0,-9,1,.9225738,.9225738,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,-9,-9,5,1,1,0,1,11,2,1,983,528207.69,0,0,-73.102478 -9858,12149,22091,22092,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.0525193,6.0894599,1,0,-9,5,0,3,178.19089,0,0,0,66,3,2,3,-9,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.266448,0,0,53,47,49.110001,28.940001,5,1,1,0,0,6,2,1,592,382951.91,0,0,3008.5186 -9858,12149,22092,22091,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,5,0,-3,-7.5481524,0,0,0,69,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.110001,28.940001,53,47,6,1,1,0,0,6,2,1,592,382951.91,0,0,3008.5186 -9859,12150,22093,-9,22094,22095,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.9629,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,3,1,623.79999,297765.25,0,0,3248.1196 -9859,12150,22094,22095,-9,-9,1,1,0,35,1,0,3,0,1,-9,1,1,0,0,5,7.9454432,7.6159539,0,2,0,-9,15,0,-4,0,0,0,1,39,1,4,1,2,2,2019,1,2,8,0,20,16,15,1,0,1,0,18.415119,18.415119,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,6,3,1,623.79999,297765.25,0,0,3248.1196 -9859,12150,22095,22094,-9,-9,2,1,1,39,1,0,3,0,1,-9,1,1,0,0,4,7.6742487,8.2277288,0,2,0,-9,7,0,4,0,0,0,0,35,1,5,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,6.5436664,6.5436664,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,6,3,1,623.79999,297765.25,0,0,3248.1196 -9859,12150,22096,-9,22094,22095,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.8408,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,3,1,623.79999,297765.25,0,0,3248.1196 -9859,12150,22097,-9,22094,22095,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.3292,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,3,1,623.79999,297765.25,0,0,3248.1196 -9860,12151,22098,22099,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,0,5,5.4876695,5.1547236,0,1,0,-9,11,0,-4,-39.628433,0,0,0,57,2,5,1,-9,-9,2019,1,2,8,0,35,15,15,1,0,1,0,.58099604,.58099604,0,0,0,0,0,0,0,2,0,0,0,3.2440324,0,.026151722,3,54.099998,59.110001,59.43,58.049999,5,1,1,0,0,8,2,1,183,273010.13,0,0,1018.9786 -9860,12151,22099,22098,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,0,5,7.0520072,7.2194977,0,1,0,-9,6,0,4,-78.329933,0,0,0,53,1,5,1,-9,-9,2019,1,1,4,0,60,40,15,1,0,1,0,3.2595701,3.2595701,0,0,0,0,0,0,0,2,0,0,0,7.5666418,0,4.6146479,3,59.43,58.049999,54.099998,59.110001,6,1,1,0,0,8,2,1,183,273010.13,0,0,1018.9786 -9861,12152,22100,22101,-9,-9,1,1,0,33,1,1,1,0,2,-9,97,3,0,0,2,0,0,0,2,0,-9,1,-9,-14,-150.87137,-9,0,1,47,2,4,1,2,2,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.459999,48.950001,48.029999,53.290001,6,1,1,0,0,9,5,0,919.33331,861135.19,0,0,4094.1055 -9861,12152,22101,22100,-9,-9,2,1,1,47,1,1,1,0,2,-9,1,1,0,0,4,9.1749086,9.1297541,0,2,0,-9,1,-9,14,-42.48983,-9,0,0,33,2,2,3,-9,-9,2019,2,1,20,5,60,0,15,1,1,3,0,15.84303,15.84303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.029999,53.290001,50.459999,48.950001,6,1,1,0,0,9,5,0,919.33331,861135.19,0,0,4094.1055 -9861,12152,22102,-9,22100,22101,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1090.235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,0,919.33331,861135.19,0,0,4094.1055 -9862,12153,22103,22104,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,6.9389429,6.9848971,1,0,-9,11,0,9,165.76894,0,0,0,66,3,2,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,14.476394,0,0,0,0,0,1,1,0,6.7802997,6.7326322,0,0,52,47,35.669998,36.57,4,1,1,0,0,8,2,1,693.5,880966.25,0,0,1983.8911 -9862,12153,22104,22103,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,6.4243851,6.3058529,1,0,-9,11,0,0,51.651028,0,0,0,75,1,3,3,-9,-9,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.544529,6.5007176,12.029914,1,35.669998,36.57,52,47,5,3,4,0,0,8,2,1,693.5,880966.25,0,0,1983.8911 -9862,12154,22105,-9,-9,-9,3,1,1,44,2,0,0,0,2,-9,2,1,0,0,3,7.8070345,8.0780268,0,3,0,0,0,-9,0,-971.48682,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,4,40,40,15,1,1,-9,0,9.2162695,9.2162695,0,0,0,0,0,0,0,0,1,1,0,2.7704213,0,0,0,47.790001,53.790001,-9,-9,3,1,1,0,0,8,4,1,633,297690.5,0,0,1196.1002 -9863,12155,22106,22108,-9,-9,1,1,0,31,1,0,1,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,13,0,-3,30.009974,0,0,1,34,1,3,1,3,3,2019,3,2,13,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.66,44.580002,47,52,3,2,3,1,0,8,2,0,572.66669,65209.563,0,0,1581.8096 -9863,12155,22107,-9,22106,22108,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.7197,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,572.66669,65209.563,0,0,1581.8096 -9863,12155,22108,22106,-9,-9,2,1,1,34,1,0,1,0,1,-9,1,1,0,1,3,6.1405654,5.7755003,0,2,0,-9,13,0,3,-32.530319,0,0,0,31,2,2,3,3,2,2019,2,1,6,1,20,0,15,1,0,3,0,2.3762672,2.3762672,0,0,0,0,0,0,0,42,1,1,0,0,0,46.591732,1,47,52,24.66,44.580002,6,2,3,0,0,8,2,0,572.66669,65209.563,0,0,1581.8096 -9864,12156,22109,22111,-9,-9,2,1,1,51,1,0,2,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,1,-9,2,54.933949,-9,0,0,49,1,4,1,-9,-9,2019,1,1,28,12,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3209889,0,0,0,23.049999,62.450001,51.84,51.669998,3,1,1,0,0,9,2,1,604.75,954268.25,0,0,1164.5095 -9864,12156,22110,-9,22111,22109,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,-9,0,-9,0,-990.48541,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,9,2,1,604.75,954268.25,0,0,1164.5095 -9864,12156,22111,22109,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,0,4,7.6885633,7.6314955,0,2,0,-9,21,-9,-2,185.3071,-9,0,0,51,1,3,1,2,1,2019,1,2,13,3,25,0,15,1,0,1,0,10.697343,10.697343,0,0,0,0,0,0,0,0,1,1,0,1.1384641,0,0,0,51.84,51.669998,23.049999,62.450001,5,1,1,0,0,9,2,1,604.75,954268.25,0,0,1164.5095 -9864,12156,22112,-9,22111,22109,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1021.2172,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,1,604.75,954268.25,0,0,1164.5095 -9865,12157,22113,22114,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,6.1214209,6.0060735,1,0,-9,50,0,4,91.449684,0,0,0,69,2,4,3,-9,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4567013,6.3126035,0,0,43.439999,51.939999,60.119999,54.799999,5,1,1,0,0,2,2,0,777,165973.38,0,0,1807.8311 -9865,12157,22114,22113,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,5.2421975,5.1825242,1,0,-9,50,0,-4,-5.2799664,0,0,0,73,2,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5194106,0,0,0,60.119999,54.799999,43.439999,51.939999,6,1,1,0,0,2,2,0,777,165973.38,0,0,1807.8311 -9866,12158,22115,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,5,8.8371277,9.2691593,0,3,0,0,0,-9,0,-816.84784,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,50,50,15,1,0,-9,0,19.986,19.986,0,0,0,0,0,0,0,0,1,1,0,3.3521974,0,0,0,48.09,56.48,-9,-9,6,2,3,0,0,8,5,1,670,302564.78,0,0,2517.0725 -9867,12159,22116,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,1,1,0,0,5,8.3145885,8.1454887,0,3,0,0,0,-9,0,-1027.5859,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,50,60,15,1,0,-9,0,6.7580447,6.7580447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.990002,65,-9,-9,6,2,3,0,0,8,4,0,617,33378.441,0,0,1496.8682 -9867,12160,22117,-9,-9,-9,2,1,1,28,2,0,0,0,1,0,7,2,0,0,4,0,6.8936863,6.757834,3,0,0,0,-9,0,-1137.2623,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4089952,0,0,0,59.41,45.490002,-9,-9,6,2,3,0,0,8,2,0,1370,-63029.535,0,0,458.43631 -9867,12161,22118,-9,-9,-9,3,1,1,26,2,0,0,0,1,1,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1021.2773,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.310001,40.349998,-9,-9,6,2,3,0,0,8,1,0,930,46167.801,0,0,0 -9868,12162,22119,22120,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.4084458,7.8343163,6.520997,1,0,-9,36,0,-3,-65.033455,0,0,0,59,2,2,3,3,2,2019,2,2,14,3,32,35,15,1,0,3,0,8.0820656,8.0820656,0,0,0,0,0,0,0,7,1,1,0,4.8704972,6.4301014,16.868441,3,49.040001,55.860001,57.330002,32.200001,6,1,1,0,0,10,3,1,683.5,168263.67,0,0,3025.6392 -9868,12162,22120,22119,-9,-9,2,1,1,59,1,0,0,0,2,-9,6,3,0,1,2,4.8292475,7.1114645,6.6593781,1,0,-9,36,0,3,74.329727,0,0,0,56,2,3,1,2,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.1774502,6.6540003,37.787563,3,57.330002,32.200001,49.040001,55.860001,4,1,1,0,0,10,3,1,683.5,168263.67,0,0,3025.6392 -9868,12163,22121,-9,22119,22120,3,1,1,19,2,0,0,1,3,-9,7,2,0,1,3,0,0,0,3,0,0,0,-9,0,-888.18182,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.290001,46.540001,-9,-9,4,1,1,0,0,10,1,1,518,87910.016,0,0,11.020713 -9869,12164,22122,-9,-9,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,0,4,8.0598803,8.2990484,0,3,0,0,0,-9,0,-1040.1442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,38,15,1,0,-9,0,8.3056202,8.3056202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.709999,50.889999,-9,-9,7,1,1,0,0,4,4,1,453,-2202.1287,0,0,1730.5505 -9870,12165,22123,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,2,0,7.8491445,7.6725063,3,0,0,0,-9,0,-1025.2435,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.0386016,7.4965448,0,0,47.240002,31.23,-9,-9,5,1,1,0,0,9,3,1,511,431097.22,0,0,2365.1941 -9871,12166,22124,22125,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,0,3,7.7871699,7.6696043,0,1,0,-9,10,0,-1,-81.742188,0,0,0,64,3,3,3,-9,-9,2019,2,1,10,1,70,60,15,1,0,4,0,3.0597124,3.0597124,0,0,0,0,0,0,0,0,0,0,0,2.1808548,0,0,0,51,48,43.099998,47.57,5,1,1,0,0,10,3,1,1606.5,616395.38,0,0,482.57416 -9871,12166,22125,22124,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,1,-88.505524,0,0,0,63,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.48249704,0,0,0,43.099998,47.57,51,48,6,1,1,0,0,10,3,1,1606.5,616395.38,0,0,482.57416 -9872,12167,22126,22127,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,0,3,0,5.8397508,5.837173,1,0,-9,40,0,-3,125.61145,0,0,0,63,1,5,1,3,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8366089,5.8203893,0,0,57.099998,41.16,53.830002,53.689999,6,1,1,0,0,5,5,1,800.5,4940360,0,0,8355.8379 -9872,12167,22127,22126,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,5,9.7927885,9.886385,8.8747845,1,0,-9,40,0,3,249.18466,0,0,0,60,2,3,3,2,3,2019,2,1,6,0,20,20,15,1,0,4,0,97.508339,97.508339,0,0,0,0,0,0,0,0,0,0,0,9.0128193,9.2611313,0,0,53.830002,53.689999,57.099998,41.16,6,1,1,0,0,5,5,1,800.5,4940360,0,0,8355.8379 -9873,12168,22128,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,4,7.0726938,7.0054402,0,3,0,0,0,-9,0,-945.23126,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,20,25,15,1,0,-9,0,8.711731,8.711731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,5,1,1,0,0,6,3,1,69,382861.47,0,0,97.921837 -9874,12169,22129,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,2,1,0,0,2,8.1590252,8.7924757,7.1402745,4,0,-9,0,-9,0,-1048.0092,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,1,37,0,15,1,0,-9,0,14.869586,14.869586,0,0,0,0,0,0,0,0,1,1,0,7.791841,0,0,0,57.98,34.529999,-9,-9,6,1,1,0,1,10,4,1,1171,447962.63,0,0,2648.6528 -9874,12170,22130,-9,22129,-9,2,1,1,18,2,0,1,1,2,-9,7,2,0,0,2,0,0,0,3,0,-9,0,-9,0,-1098.5527,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,23,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.1,51.52,-9,-9,5,1,1,0,0,10,4,1,1365,-17345.008,0,0,0 -9875,12171,22131,22132,-9,-9,1,1,1,35,1,1,1,0,1,-9,1,1,0,0,3,8.744566,8.7636442,0,2,0,-9,2,0,6,149.67401,0,0,0,29,1,4,1,2,1,2019,1,2,6,0,45,40,15,1,0,1,0,14.255977,14.255977,0,0,0,0,0,0,0,0,0,0,0,8.7429104,0,0,0,57.330002,53.459999,62.490002,55.09,6,2,3,0,0,8,4,0,1209.3334,394396.94,0,0,5202.0479 -9875,12171,22132,22131,-9,-9,2,1,0,29,1,1,1,0,1,-9,2,1,0,0,4,7.6334057,7.5654826,0,2,0,-9,2,0,-6,-2.7211242,0,1,1,35,1,3,1,-9,-9,2019,1,1,5,0,25,25,15,1,0,1,0,8.3527975,8.3527975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,57.330002,53.459999,7,2,3,0,0,8,4,0,1209.3334,394396.94,0,0,5202.0479 -9875,12171,22133,-9,22132,22131,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.18597,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,4,0,1209.3334,394396.94,0,0,5202.0479 -9876,12172,22134,22135,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,2,-143.57581,0,0,0,69,1,2,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3650708,0,0,0,56.349998,51.16,40.599998,43.77,6,1,1,0,0,11,2,1,461.5,1830316.8,0,0,2540.8552 -9876,12172,22135,22134,-9,-9,2,1,1,69,1,0,0,0,1,-9,2,1,0,0,2,7.3514719,7.3189158,4.8880005,1,0,-9,49,0,-2,-133.40257,0,0,0,71,3,3,3,2,3,2019,2,1,10,0,18,18,15,1,0,4,0,10.96334,10.96334,0,0,0,0,0,0,0,0,1,1,0,0,5.3564377,0,0,40.599998,43.77,56.349998,51.16,5,1,1,0,0,11,2,1,461.5,1830316.8,0,0,2540.8552 -9877,12173,22136,22137,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,15,0,-6,-244.92479,0,0,0,65,1,4,3,1,2,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0150495,0,0,0,41.880001,45.75,48.369999,49.310001,4,1,1,0,0,7,3,1,296,-16839.332,0,0,2190.2415 -9877,12173,22137,22136,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.9390993,7.8660202,1,0,-9,15,0,6,-19.646755,0,0,0,59,1,3,3,3,3,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83310694,7.9416041,0,0,48.369999,49.310001,41.880001,45.75,6,1,1,0,0,7,3,1,296,-16839.332,0,0,2190.2415 -9878,12174,22138,22139,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,0,3,0,7.578042,7.1182632,1,0,-9,8,0,-12,-9.4642506,0,0,0,69,1,2,3,2,2,2019,4,1,15,3,0,14,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2180862,7.5093894,0,3,50.23,49.799999,43.650002,37.02,5,1,1,0,0,10,4,0,316.5,1623415.3,0,0,3307.887 -9878,12174,22139,22138,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,8.082325,7.4845757,1,0,-9,8,0,12,27.599497,0,0,0,57,2,3,3,2,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7767582,8.1721554,0,0,43.650002,37.02,50.23,49.799999,3,1,1,0,0,10,4,0,316.5,1623415.3,0,0,3307.887 -9879,12175,22140,-9,-9,-9,1,1,1,39,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1004.8865,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,5,4,5,1,0,8,1,0,2466,54977.195,0,0,0 -9880,12176,22141,-9,22142,-9,1,1,0,54,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-972.88367,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,17.549999,49.310001,-9,-9,3,1,1,0,0,12,1,0,257,7666.4961,0,0,957.71918 -9880,12177,22142,-9,-9,-9,2,1,0,76,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,-9,0,-9,0,-1061.3173,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.880001,39.09,-9,-9,2,1,1,0,0,12,1,0,2321,-127199.26,0,0,890.20898 -9881,12178,22143,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,6.6331272,7.0723934,3,0,0,0,-9,0,-1077.4751,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.1786091,6.6511288,3.1572068,3,64.550003,36.470001,-9,-9,2,1,1,0,0,6,2,1,708,104564.74,0,0,1239.4869 -9882,12179,22144,22145,-9,-9,2,1,0,65,1,0,0,0,3,-9,1,1,0,0,3,7.3282309,7.1633787,0,1,0,-9,7,0,-5,-127.34738,-9,0,0,70,3,5,1,-9,-9,2019,1,1,11,1,25,0,15,1,0,1,0,6.3158851,6.3158851,0,0,0,0,0,0,0,0,1,1,0,.58297938,0,0,0,50,47,62.389999,56.709999,5,1,1,0,0,12,4,1,153.5,1395079,0,0,3762.1011 -9882,12179,22145,22144,-9,-9,1,1,1,70,1,0,0,0,3,-9,1,1,0,0,5,8.3387394,8.2794533,6.9260364,1,0,-9,38,0,5,25.57329,0,0,0,65,3,3,1,3,3,2019,1,2,6,0,10,0,15,1,0,1,0,34.413143,34.413143,0,0,0,0,0,0,0,0,1,1,0,6.9157586,6.7040987,0,0,62.389999,56.709999,50,47,7,1,1,0,0,12,4,1,153.5,1395079,0,0,3762.1011 -9883,12180,22146,22147,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.0618448,8.1851892,0,2,0,-9,7,0,-2,34.932713,0,0,1,39,2,4,1,2,2,2019,1,1,11,0,30,32,15,1,0,1,0,14.327703,14.327703,0,0,0,0,0,0,0,0,1,1,0,4.7866793,0,0,0,45.849998,61.259998,53.310001,43,5,1,1,0,0,9,4,1,208,770135.88,0,0,4056.3479 -9883,12180,22147,22146,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,0,4,8.4120779,8.7103882,0,2,0,-9,7,0,2,-97.108231,0,0,0,37,1,4,1,2,2,2019,1,2,8,0,50,0,15,1,0,1,0,11.8922,11.8922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.310001,43,45.849998,61.259998,6,1,1,0,0,9,4,1,208,770135.88,0,0,4056.3479 -9883,12180,22148,-9,22146,22147,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.02576,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,208,770135.88,0,0,4056.3479 -9883,12180,22149,-9,22146,22147,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.78143,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,208,770135.88,0,0,4056.3479 -9884,12181,22150,-9,22152,-9,5,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.5927,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,528.33331,-16761.334,0,0,1508.1415 -9884,12181,22151,-9,22152,-9,4,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-974.05054,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,1,0,528.33331,-16761.334,0,0,1508.1415 -9884,12181,22152,-9,-9,-9,1,1,0,35,2,0,4,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1036.6134,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.16,33.740002,-9,-9,5,1,1,0,0,2,1,0,528.33331,-16761.334,0,0,1508.1415 -9885,12182,22153,22154,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,5,0,-2,-36.932804,0,0,0,68,1,4,3,3,-9,2019,4,1,10,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.009998,43.560001,54.200001,57.490002,6,1,1,0,0,4,2,0,900,584280.19,0,0,2666.5571 -9885,12182,22154,22153,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.4433022,7.8011417,1,0,-9,49,0,2,122.25449,0,0,0,66,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6334033,0,0,54.200001,57.490002,53.009998,43.560001,6,1,1,0,0,4,2,0,900,584280.19,0,0,2666.5571 -9886,12183,22155,-9,22156,22159,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.5813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,0,619,1237682.3,0,0,2088.0261 -9886,12183,22156,22159,-9,-9,1,1,0,48,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,-4,-11.755269,0,0,0,52,2,4,1,3,2,2019,3,6,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,57.16,56.150002,6,1,1,0,0,11,3,0,619,1237682.3,0,0,2088.0261 -9886,12183,22157,-9,22156,22159,2,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.55573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,11,3,0,619,1237682.3,0,0,2088.0261 -9886,12183,22158,-9,22156,22159,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.5349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,0,619,1237682.3,0,0,2088.0261 -9886,12183,22159,22156,-9,-9,6,1,1,52,1,0,3,0,2,-9,2,1,0,0,4,8.4360762,8.4882498,0,2,0,-9,3,0,4,57.180756,0,0,0,48,2,4,3,-9,-9,2019,2,1,11,0,39,39,15,1,0,3,0,12.586133,12.586133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.240002,58.84,4,1,1,0,0,11,3,0,619,1237682.3,0,0,2088.0261 -9886,12184,22160,-9,22156,22159,5,1,1,21,2,0,3,0,2,-9,2,1,0,0,5,7.5687428,7.5439491,0,3,0,0,0,-9,0,-933.12408,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,0,15,1,0,-9,1,5.550139,5.550139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.27,58.549999,-9,-9,6,1,1,0,0,11,3,0,967,-49032.375,0,0,606.47009 -9887,12185,22161,22162,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.6269374,7.9797845,1,0,-9,58,0,0,13.952921,0,0,0,76,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0477896,7.6821766,0,0,58.470001,50.220001,60.439999,46.580002,6,4,2,0,0,8,3,1,1291,1201211.1,0,0,3688.521 -9887,12185,22162,22161,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.1585078,7.1148658,1,0,-9,58,0,0,-67.356453,0,0,0,76,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5682578,7.2535954,0,0,60.439999,46.580002,58.470001,50.220001,5,2,3,0,0,8,3,1,1291,1201211.1,0,0,3688.521 -9888,12186,22163,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,0,2,0,5.631814,5.6561012,3,0,0,0,-9,0,-948.99414,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1110216,5.5896111,0,0,52.830002,49.110001,-9,-9,5,1,1,0,0,2,2,1,263,292668.19,0,0,137.88693 -9889,12187,22164,22165,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,7.8331928,8.0480433,1,0,-9,54,0,-1,106.73548,0,0,0,82,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.5941286,45.410709,1,54,45,49.439999,35.830002,6,1,1,0,0,4,3,1,1106.5,537876.06,0,0,1931.7432 -9889,12187,22165,22164,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,1,73.651718,0,0,0,81,3,3,3,1,1,2019,4,1,11,3,0,0,15,4,0,4,0,0,0,1,0,34.459396,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,35.830002,54,45,6,1,1,0,0,4,3,1,1106.5,537876.06,0,0,1931.7432 -9890,12188,22166,22167,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,8.9181776,8.9822273,0,1,0,-9,29,0,-6,-108.29405,0,0,0,65,1,5,3,2,3,2019,2,2,7,0,70,60,15,1,0,4,0,11.630017,11.630017,0,0,0,0,0,0,0,0,1,1,0,2.9013126,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,9,5,1,398,1340411.4,0,0,4403.3296 -9890,12188,22167,22166,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,5,0,8.5394306,8.3318615,1,0,-9,29,0,6,79.44059,0,0,0,59,1,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4861064,8.1856642,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,9,5,1,398,1340411.4,0,0,4403.3296 -9890,12189,22168,-9,22166,22167,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,8.3941746,8.4551678,0,3,0,0,0,-9,0,-981.38391,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,55,61,15,1,0,-9,1,8.1994896,8.1994896,0,0,0,0,0,0,0,0,1,1,0,2.1775465,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,9,4,1,1623,-213062.56,0,0,1214.1912 -9890,12190,22169,-9,22166,22167,4,1,1,22,2,0,0,0,1,1,2,1,0,0,5,8.6447706,8.7763147,0,3,0,0,0,-9,0,-939.42108,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,39,0,15,1,0,-9,1,14.987339,14.987339,0,0,0,0,0,0,0,0,1,1,0,1.9308777,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,4,1,254,-19932.844,0,0,1046.9204 -9891,12191,22170,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,0,3,8.6564283,8.5119963,0,3,0,0,0,-9,0,-836.82825,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,40,39,15,1,1,-9,0,16.819639,16.819639,0,0,0,0,0,0,0,5.48,0,0,0,3.7266283,0,0,3,44.060001,37.91,-9,-9,4,1,1,0,0,8,5,1,549,79342.453,0,0,900.57599 -9892,12192,22171,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,6.7015619,7.7263842,7.032558,3,0,0,0,-9,0,-1070.6624,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,16,16,15,1,0,-9,0,4.2369533,4.2369533,0,0,0,0,0,0,0,42,0,0,0,5.3152184,7.1461453,37.663589,3,58.299999,47.380001,-9,-9,6,1,1,0,0,10,3,1,419,69117.313,0,0,1982.3411 -9893,12193,22172,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,0,2,0,4.7841511,5.0146251,3,0,-9,0,1,0,-1002.106,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6109967,5.1481037,0,0,56.889999,23.1,-9,-9,3,1,1,0,0,7,2,1,944,3839.9294,0,0,-55.007542 -9894,12194,22173,22174,-9,-9,1,1,1,68,1,0,1,0,3,-9,4,3,0,0,3,0,6.9691467,6.8412681,2,0,-9,17,-9,18,-61.088554,-9,0,0,50,1,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5585847,6.8314214,0,0,52.880001,43.27,47,50,6,4,5,0,1,8,2,1,927.5,39727.555,0,0,774.66473 -9894,12194,22174,22173,-9,-9,2,1,0,50,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,1,-9,-18,-164.27675,-9,0,0,68,3,3,3,-9,-9,2019,4,1,12,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,52.880001,43.27,5,4,5,0,0,8,2,1,927.5,39727.555,0,0,774.66473 -9894,12195,22175,-9,22174,22173,3,1,1,23,2,0,1,0,2,-9,2,1,0,0,4,8.0035515,7.8359179,0,3,0,-9,0,-9,0,-999.59845,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,37,0,15,1,0,-9,1,11.065986,11.065986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,5,0,0,8,4,1,963,7881.1089,0,0,984.3703 -9894,12196,22176,-9,22174,22173,4,1,1,21,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1099.6946,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,5,0,0,8,1,1,408,0,0,0,0 -9895,12197,22177,22179,-9,-9,1,1,0,52,1,1,0,0,2,-9,1,1,0,0,4,6.1856856,6.2035942,0,1,0,-9,9,0,2,.33491954,0,0,0,50,2,5,1,2,-9,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,41.599998,60.779999,5,1,1,0,0,9,5,1,1870.3334,1473445.3,0,0,5647.145 -9895,12197,22178,-9,22177,22179,4,1,0,0,2,1,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,-9,0,-9,0,-971.05353,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,9,5,1,1870.3334,1473445.3,0,0,5647.145 -9895,12197,22179,22177,-9,-9,2,1,1,50,1,1,0,0,2,-9,2,1,0,0,5,9.0233526,8.8924608,0,1,0,-9,9,0,-2,11.089267,0,0,0,52,2,4,1,2,3,2019,1,1,11,0,57,53,15,1,0,1,0,17.422665,17.422665,0,0,0,0,0,0,0,0,1,1,0,6.8382597,0,0,0,41.599998,60.779999,57.16,56.150002,6,1,1,0,0,9,5,1,1870.3334,1473445.3,0,0,5647.145 -9896,12198,22180,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,3,3,0,1,3,0,5.136054,4.7325006,3,0,0,0,-9,0,-1027.6031,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7197089,0,0,37.830002,55.740002,-9,-9,2,1,1,1,1,12,1,0,501,513406.34,0,0,-1007.4514 -9897,12199,22181,-9,-9,-9,1,1,1,44,3,0,0,0,3,-9,2,1,0,0,3,8.2676382,8.1407118,0,3,0,-9,0,-9,0,-1011.2786,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,42,0,15,1,0,-9,0,8.926713,8.926713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.419998,50.799999,-9,-9,4,1,1,0,0,4,4,0,201,69684.859,0,0,2267.8774 -9898,12200,22182,-9,22185,22186,9,1,1,13,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.8596,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,1,0,1239,-90871.703,0,0,1749.6663 -9898,12200,22183,-9,22185,22186,10,1,1,10,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.50928,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,1239,-90871.703,0,0,1749.6663 -9898,12200,22184,-9,22185,22186,7,1,0,16,2,0,5,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.8024,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,1,0,1239,-90871.703,0,0,1749.6663 -9898,12200,22185,22186,-9,-9,2,1,0,53,1,0,5,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,7,0,-4,0,0,0,0,57,3,3,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.209999,43.869999,54.959999,53.169998,6,1,1,0,0,13,1,0,1239,-90871.703,0,0,1749.6663 -9898,12200,22186,22185,-9,-9,1,1,1,57,1,0,5,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,4,0,0,0,0,53,3,2,3,3,3,2019,4,2,8,0,0,60,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,55.209999,43.869999,5,1,1,1,0,13,1,0,1239,-90871.703,0,0,1749.6663 -9898,12200,22187,-9,22185,22186,8,1,1,14,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.32092,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,1,0,1239,-90871.703,0,0,1749.6663 -9898,12201,22188,-9,22185,22186,3,1,1,23,2,0,5,0,2,-9,2,1,0,0,4,7.9248347,7.940567,0,3,0,0,0,-9,0,-1068.8752,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,60,15,1,0,-9,1,10.05798,10.05798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,4,0,391,89965.289,0,0,2874.9729 -9898,12202,22189,-9,22185,22186,4,1,0,21,2,0,5,0,2,-9,2,1,0,0,4,7.8740845,7.5101209,0,3,0,0,0,-9,0,-1094.8273,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,39,46,15,1,0,-9,1,6.1733189,6.1733189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,3,0,1097,-75208.914,0,0,2062.1655 -9898,12203,22190,-9,22185,22186,5,1,0,19,2,0,5,0,2,-9,2,1,0,0,3,7.8052287,7.4554715,0,3,0,0,0,-9,0,-932.71619,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,36,15,1,0,-9,1,8.4508142,8.4508142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,13,3,0,152,31628.139,0,0,2565.6199 -9898,12204,22191,-9,22185,22186,6,1,0,18,2,0,5,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-910.48651,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,4,0,732,169132.25,0,0,0 -9899,12205,22192,22194,-9,-9,3,1,1,29,1,0,1,0,2,-9,2,1,0,0,4,7.9726624,8.3573408,0,2,0,-9,4,0,2,-11.487612,0,1,0,27,2,3,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,14.770958,14.770958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,43.060001,59.91,5,4,1,0,0,5,4,1,490,139729.59,0,0,2814.4934 -9899,12205,22193,-9,22194,22192,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.09644,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,490,139729.59,0,0,2814.4934 -9899,12205,22194,22192,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,0,3,7.3602366,7.4259028,0,2,0,-9,4,0,-2,.52991867,0,1,1,29,2,4,1,3,1,2019,1,3,9,0,20,20,15,1,0,1,0,10.501594,10.501594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.060001,59.91,50,57,6,1,1,0,0,5,4,1,490,139729.59,0,0,2814.4934 -9900,12206,22195,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,0,4,8.3997622,8.4522142,0,3,0,0,0,-9,0,-1091.0962,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,37,37,15,1,1,-9,0,13.237972,13.237972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.040001,55.189999,-9,-9,5,1,1,0,0,12,4,1,589,9318.8262,0,0,2153.033 -9901,12207,22196,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,3,0,7.6830406,7.9388881,3,0,-9,0,1,0,-1139.2815,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0702844,7.6468034,0,0,18.709999,55.07,-9,-9,3,1,1,0,0,11,3,1,1525,751633.38,0,0,2351.842 -9902,12208,22197,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1022.0731,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,4.7775421,0,5.7509289,0,15.477817,41.733398,0,1,0,1,0,0,0,0,48.599998,22.540001,-9,-9,6,1,1,0,0,4,1,0,364,-90585,0,0,2757.2617 -9902,12208,22198,-9,-9,22197,2,1,0,13,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-933.66864,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,-9,-9,5,1,1,0,0,4,1,0,364,-90585,0,0,2757.2617 -9903,12209,22199,22200,-9,-9,1,1,0,45,1,0,1,0,1,-9,6,3,0,0,3,5.5889688,5.2470355,0,2,0,-9,5,0,-3,-127.58882,0,0,0,48,1,4,1,1,1,2019,3,2,10,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2634432,0,0,0,52.75,47.349998,59.290001,49.68,5,1,1,0,0,7,4,1,427.66666,509391.91,0,0,3699.4702 -9903,12209,22200,22199,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,9.0184603,8.7917051,0,2,0,-9,5,0,3,-40.217327,0,0,0,45,1,3,3,-9,-9,2019,2,1,8,0,43,42,15,1,0,3,0,16.731205,16.731205,0,0,0,0,0,0,0,0,1,1,0,6.1094785,0,0,0,59.290001,49.68,52.75,47.349998,6,1,1,0,0,7,4,1,427.66666,509391.91,0,0,3699.4702 -9903,12209,22201,-9,22199,22200,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.23248,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,427.66666,509391.91,0,0,3699.4702 -9904,12210,22202,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,0,3,0,7.0926657,7.6267195,3,0,0,0,-9,0,-1058.8605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5609455,7.0906801,0,0,57.330002,53.459999,-9,-9,6,3,4,0,0,8,3,1,2163,864018.13,0,0,842.78424 -9905,12211,22203,-9,22205,22204,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1090.4357,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,12,3,1,461.5,475968.88,0,0,1840.429 -9905,12211,22204,22205,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,5,0,0,0,2,0,-9,9,0,8,30.055922,0,0,0,42,1,4,1,2,2,2019,1,2,20,9,0,32,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.700001,60.77,45.389999,51.790001,6,1,1,0,0,12,3,1,461.5,475968.88,0,0,1840.429 -9905,12211,22205,22204,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.6772652,8.711112,0,2,0,-9,9,0,-8,127.50999,0,0,1,50,1,5,1,1,1,2019,1,1,14,5,32,31,15,1,1,1,0,17.488102,17.488102,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.389999,51.790001,38.700001,60.77,6,1,1,0,0,12,3,1,461.5,475968.88,0,0,1840.429 -9905,12211,22206,-9,22205,22204,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.46936,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,1,461.5,475968.88,0,0,1840.429 -9906,12212,22207,22208,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,4,0,5.7367425,6.1758995,1,0,-9,59,0,1,-102.25438,0,0,0,75,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1538792,5.6840038,117.9171,2,51.240002,58.84,49.580002,26.42,7,1,1,0,0,11,2,1,527.5,341180.81,0,0,1956.2374 -9906,12212,22208,22207,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,1,2,0,6.4933667,6.4135404,1,0,-9,59,0,-1,143.32886,0,0,0,76,3,4,3,3,-9,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,128.23364,16.745831,0,29.237371,0,0,1,1,0,0,5.9452968,0,0,49.580002,26.42,51.240002,58.84,5,1,1,0,0,11,2,1,527.5,341180.81,0,0,1956.2374 -9907,12213,22209,22210,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,1,-14.855468,0,0,0,68,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2930703,0,0,0,53.619999,46.84,44.939999,49.91,6,1,1,0,0,10,3,1,296,237322.17,0,0,2635.9084 -9907,12213,22210,22209,-9,-9,1,1,1,68,1,0,0,0,3,-9,10,3,0,0,2,0,7.8518324,7.7090526,1,0,-9,42,0,-1,-128.00961,0,0,0,69,2,3,3,3,3,2019,4,2,12,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7554679,7.5731606,0,0,44.939999,49.91,53.619999,46.84,6,1,1,0,0,10,3,1,296,237322.17,0,0,2635.9084 -9908,12214,22211,22212,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,9.5628681,9.188055,0,1,0,-9,28,0,3,-43.505913,0,0,0,49,2,4,1,3,3,2019,1,2,9,1,0,84,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3527944,0,0,0,53,54,57.16,56.150002,6,1,1,0,0,12,5,1,547.5,1338430.3,0,0,5348.0469 -9908,12214,22212,22211,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,8.5769043,8.7145872,0,1,0,-9,28,0,-3,-131.82596,0,0,0,52,2,4,1,2,3,2019,1,1,8,0,39,38,15,1,0,1,0,14.622666,14.622666,0,0,0,0,0,0,0,0,0,0,0,3.2476161,0,0,0,57.16,56.150002,53,54,6,1,1,0,0,12,5,1,547.5,1338430.3,0,0,5348.0469 -9908,12215,22213,-9,22212,22211,3,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,8.5595865,8.4402609,0,3,0,0,0,-9,0,-878.55298,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,40,15,1,0,-9,1,19.496075,19.496075,0,0,0,0,0,0,0,0,0,0,0,.7040565,0,0,0,54.57,60.200001,-9,-9,7,1,1,0,0,12,4,1,1676,10061.546,0,0,1005.1969 -9909,12216,22214,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,1,3,0,6.3650961,6.8144722,3,0,0,0,-9,0,-887.37915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.7454982,0,0,43.860001,39.27,-9,-9,6,1,1,0,0,4,2,1,561,320014.63,0,0,1583.5779 -9910,12217,22215,-9,-9,-9,5,1,1,19,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-941.29187,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,1,0,275,183807.77,0,0,0 -9910,12218,22216,-9,22217,-9,6,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-936.46344,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,2393.5,-50266.563,0,0,1131.7057 -9910,12218,22217,-9,-9,-9,7,1,0,24,2,0,1,0,3,-9,3,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-885.42584,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.66,52.200001,-9,-9,4,1,1,1,0,13,1,0,2393.5,-50266.563,0,0,1131.7057 -9911,12219,22218,22219,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-4,39.394138,0,0,0,77,1,3,1,2,1,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.950001,47.23,55.75,52.790001,5,1,1,0,0,4,4,1,862.5,1751764,0,0,3284.3691 -9911,12219,22219,22218,-9,-9,2,1,1,77,1,0,0,0,1,-9,2,1,0,0,3,8.1190729,8.1150665,7.6520214,1,0,-9,53,0,4,6.9496665,0,0,0,73,1,3,3,-9,3,2019,2,1,8,0,26,21,15,1,0,4,0,15.866115,15.866115,0,0,0,0,0,0,0,0,1,1,0,0,7.4702506,0,0,55.75,52.790001,55.950001,47.23,7,1,1,0,0,4,4,1,862.5,1751764,0,0,3284.3691 -9912,12220,22220,22221,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.2519274,8.5172167,0,2,0,-9,18,-9,1,-3.605514,-9,0,0,46,2,4,1,-9,-9,2019,1,1,8,1,37,0,15,1,0,1,0,11.792374,11.792374,0,0,0,0,0,0,0,0,1,1,0,1.6598933,0,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,2,4,1,320,613102.06,0,0,3076.7715 -9912,12220,22221,22220,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.6336498,8.6319876,0,2,0,-9,19,-9,-1,-42.222408,-9,0,0,47,2,3,1,2,1,2019,1,2,6,0,41,0,15,1,0,1,0,20.76206,20.76206,0,0,0,0,0,0,0,0,1,1,0,1.5219353,0,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,2,4,1,320,613102.06,0,0,3076.7715 -9913,12221,22222,22223,-9,-9,1,1,1,39,1,0,0,0,2,-9,1,1,0,0,4,7.6185884,7.3911772,0,1,0,-9,2,0,10,-75.482819,0,0,0,29,1,4,1,-9,-9,2019,1,2,8,0,40,30,15,1,0,1,0,3.9247005,3.9247005,0,0,0,0,0,0,0,0,0,0,0,6.8597393,0,0,0,51.830002,57.200001,48,56,6,1,1,0,0,10,4,1,696.5,347879.63,0,0,3124.9131 -9913,12221,22223,22222,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.1209202,8.3170576,0,1,0,-9,2,0,-10,-10.44881,-9,1,1,39,2,4,1,-9,-9,2019,1,1,11,2,50,0,15,1,0,1,0,9.6621933,9.6621933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,51.830002,57.200001,5,1,1,0,0,10,4,1,696.5,347879.63,0,0,3124.9131 -9914,12222,22224,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,7.3915305,7.0184474,0,3,0,-9,0,1,0,-900.29327,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,10,9,15,1,1,-9,0,20.146187,20.146187,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.709999,56.91,-9,-9,2,1,1,0,1,6,3,0,851,455695.91,0,0,589.62122 -9914,12223,22225,-9,22224,-9,3,1,1,26,3,0,0,0,2,-9,2,1,0,0,4,8.2546225,8.2921009,0,3,0,0,0,-9,0,-886.80731,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,45,27,15,1,1,-9,1,9.0212879,9.0212879,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.919998,60.709999,-9,-9,5,1,1,0,0,6,4,0,1511,26013.068,0,0,-200.83875 -9914,12224,22226,-9,22224,-9,2,1,0,22,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-955.71136,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.779999,55.099998,-9,-9,5,1,1,1,0,6,1,0,6077,0,0,0,0 -9915,12225,22227,-9,22228,-9,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1038.7473,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,2,2,0,419,165533.38,0,0,1478.234 -9915,12225,22228,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,1,1,0,0,3,5.7064238,5.9289079,0,4,0,0,0,-9,0,-953.14209,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,0,15,1,0,-9,0,3.1633387,3.1633387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,-9,-9,5,2,3,0,0,2,2,0,419,165533.38,0,0,1478.234 -9915,12226,22229,-9,22228,-9,2,1,0,24,2,0,1,0,1,-9,2,1,0,0,3,8.0516338,8.2085972,0,3,0,0,0,-9,0,-866.34052,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,35,50,15,1,0,-9,1,10.194746,10.194746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,2,3,0,0,2,4,0,140,-59830.363,0,0,1927.0083 -9915,12227,22230,-9,22228,-9,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,4,5.7294002,5.5735769,0,3,0,0,0,-9,0,-1089.3298,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,6,13,15,1,0,-9,1,6.0523586,6.0523586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.689999,57.189999,-9,-9,6,2,3,0,0,2,2,0,336,-92737.727,0,0,230.40747 -9916,12228,22231,-9,22233,22232,6,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-934.1319,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,2,2,0,558.79999,12092.342,0,0,1479.8689 -9916,12228,22232,22233,-9,-9,2,1,1,44,1,0,3,0,3,-9,2,1,0,0,4,7.348897,6.8794365,0,2,0,-9,24,0,5,-91.071823,0,0,0,39,2,3,3,3,3,2019,2,1,11,0,42,24,15,1,0,3,0,3.9990771,3.9990771,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1204829,3,51.830002,57.200001,18.639999,62.310001,4,2,3,0,0,2,2,0,558.79999,12092.342,0,0,1479.8689 -9916,12228,22233,22232,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,24,0,-5,-176.07814,0,0,1,44,3,4,1,3,3,2019,3,2,15,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.639999,62.310001,51.830002,57.200001,4,2,3,0,1,2,2,0,558.79999,12092.342,0,0,1479.8689 -9916,12228,22234,-9,22233,22232,5,1,0,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1115.733,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,2,2,0,558.79999,12092.342,0,0,1479.8689 -9916,12228,22235,-9,22233,22232,4,1,1,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.6451,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,7,2,3,0,0,2,2,0,558.79999,12092.342,0,0,1479.8689 -9916,12229,22236,-9,22233,22232,3,1,1,20,2,0,3,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-967.82416,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.610001,60.540001,-9,-9,5,2,3,0,0,2,1,0,738,0,0,0,2456.968 -9917,12230,22237,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,6.8659048,6.8387485,3,0,0,0,-9,0,-1043.293,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.5275617,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,4,2,1,503,336670.72,0,0,665.3902 -9918,12231,22238,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,9.4251423,9.1356611,0,3,0,0,0,-9,0,-1027.8464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,15,15,15,1,0,-9,0,83.528038,83.528038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,-9,-9,5,1,1,0,0,2,5,0,264,149098.17,0,0,5333.7773 -9919,12232,22239,22240,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,2,8.8371181,9.2747574,6.6341934,1,0,-9,6,0,-7,63.79108,0,0,0,72,1,2,3,2,2,2019,2,1,11,2,35,40,15,1,0,4,0,29.002016,29.002016,1,0,0,0,0,0,0,0,1,1,0,7.0331993,6.8570008,0,0,48.599998,25.5,31.32,49.41,6,1,1,0,0,11,5,0,504.5,822528.44,0,0,4218.1289 -9919,12232,22240,22239,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,2,0,6.1821136,6.6605077,1,0,-9,6,0,7,96.192413,0,0,0,65,2,2,1,3,3,2019,3,2,20,7,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0372767,6.2383909,0,0,31.32,49.41,48.599998,25.5,2,1,1,0,0,11,5,0,504.5,822528.44,0,0,4218.1289 -9920,12233,22241,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,1,1,0,0,4,9.3385153,9.5642767,0,3,0,0,0,-9,0,-1039.0602,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,50,40,15,1,0,-9,0,33.280472,33.280472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.07,59.389999,-9,-9,3,3,4,0,0,12,5,0,3636,-109819.23,0,0,4719.8276 -9921,12234,22242,22243,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,2,8.4358091,8.5922976,5.6226716,2,0,-9,10,0,-1,-156.45456,0,0,0,51,2,1,3,2,3,2019,2,1,19,9,43,43,15,1,1,3,0,10.996558,10.996558,0,0,0,0,0,0,0,2,1,1,0,6.2726307,0,0,1,49.869999,50.459999,15.22,32.41,6,1,1,0,0,8,3,1,250.5,266373.09,0,0,2557.8389 -9921,12234,22243,22242,-9,-9,1,1,0,51,1,0,1,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,10,0,1,85.131302,0,0,0,50,2,2,1,1,1,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.622084,3,15.22,32.41,49.869999,50.459999,2,1,1,0,0,8,3,1,250.5,266373.09,0,0,2557.8389 -9921,12235,22244,-9,22243,22242,3,1,1,18,2,0,1,1,2,0,7,2,0,0,2,6.1874657,6.1209326,0,3,0,0,0,-9,0,-853.69537,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,6,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4649537,0,9.5938473,3,26.77,51.419998,-9,-9,5,1,1,0,0,8,3,1,643,-92142.031,0,0,336.95779 -9922,12236,22245,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,2,1,0,0,4,8.180644,8.048213,0,3,0,0,0,-9,0,-1020.8186,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,36,15,1,0,-9,0,14.413692,14.413692,0,0,0,0,0,0,0,0,1,1,0,4.6462693,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,11,4,1,698,394634.53,0,0,2303.1033 -9923,12237,22246,22247,-9,-9,1,1,0,39,1,0,1,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,4,0,3,-38.250244,0,0,1,36,3,4,1,3,3,2019,3,2,18,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.18,29.6,50,57,4,1,1,0,1,13,3,0,769,34966.914,0,0,2042.1211 -9923,12237,22247,22246,-9,-9,2,1,1,36,1,0,1,0,3,-9,2,1,0,0,4,7.9770379,8.033617,0,2,0,-9,4,0,-3,105.23264,0,0,0,39,3,2,3,-9,-9,2019,2,1,10,1,40,45,15,1,0,3,0,8.3370972,8.3370972,0,0,0,0,0,0,0,42,1,1,0,0,0,41.974472,1,50,57,27.18,29.6,5,1,1,0,1,13,3,0,769,34966.914,0,0,2042.1211 -9923,12238,22248,-9,22246,-9,3,1,1,18,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,-9,0,-9,0,-986.92731,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,1,13,3,0,135,0,0,0,340.0256 -9924,12239,22249,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-921.2066,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.51,31.879999,-9,-9,1,1,1,0,1,1,1,0,47,0,0,0,1857.292 -9925,12240,22250,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,2,8.1831436,8.2133551,0,3,0,0,0,-9,0,-966.97864,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,0,15,1,0,-9,0,8.2490015,8.2490015,0,0,0,0,0,0,0,0,0,0,0,2.6229959,0,0,0,46.740002,47.860001,-9,-9,5,1,1,0,0,12,4,0,365,-23079.205,0,0,676.40735 -9926,12241,22251,-9,22254,22252,6,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.9144,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,10,2,1,1424.75,447298,0,0,2115.6799 -9926,12241,22252,22254,-9,-9,2,1,1,46,1,0,1,0,2,-9,1,1,0,0,2,6.6098585,6.7845201,0,2,0,-9,25,0,5,54.441891,0,0,0,41,2,4,1,3,3,2019,1,1,14,2,30,40,15,1,0,1,0,2.6800303,2.6800303,0,0,0,0,0,0,0,0,1,1,0,7.0148969,0,0,0,54.610001,51.040001,49,55,6,2,3,0,1,10,2,1,1424.75,447298,0,0,2115.6799 -9926,12241,22253,-9,22254,22252,5,1,0,17,2,0,1,1,2,0,7,2,0,0,2,5.7506175,5.8765025,0,2,0,0,0,-9,0,-977.94763,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,15,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.549999,28.27,-9,-9,5,2,3,0,0,10,2,1,1424.75,447298,0,0,2115.6799 -9926,12241,22254,22252,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,7.0496454,6.9632778,0,2,0,-9,25,0,-5,113.84667,0,0,1,46,2,2,1,3,-9,2019,1,2,26,10,23,30,15,1,1,1,0,6.1116972,6.1116972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,54.610001,51.040001,1,2,3,0,1,10,2,1,1424.75,447298,0,0,2115.6799 -9926,12242,22255,-9,22254,22252,4,1,0,20,2,0,1,0,2,-9,2,1,0,0,1,5.7606049,5.8383684,0,3,0,0,0,-9,0,-885.4021,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,33,12,17,30,15,1,1,-9,1,2.5749226,2.5749226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.37,47,-9,-9,2,2,3,0,1,10,2,1,1940,194251.52,0,0,652.48291 -9927,12243,22256,22257,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,9.052846,8.9220495,0,1,0,-9,6,0,4,-15.168536,0,0,0,51,2,4,1,3,3,2019,1,2,12,1,47,65,15,1,0,1,0,22.611427,22.611427,0,0,0,0,0,0,0,0,0,0,0,4.0289011,0,0,0,49.349998,59.639999,57.16,56.150002,1,1,1,0,0,2,5,1,548,1288197.4,0,0,3825.2769 -9927,12243,22257,22256,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,6.8289375,6.9346485,0,1,0,-9,6,0,-4,-36.867512,0,0,0,55,2,4,1,2,2,2019,1,1,5,0,20,22,15,1,0,1,0,6.7207294,6.7207294,0,0,0,0,0,0,0,0,0,0,0,4.8491344,0,0,0,57.16,56.150002,49.349998,59.639999,7,1,1,0,0,2,5,1,548,1288197.4,0,0,3825.2769 -9927,12244,22258,-9,22257,22256,3,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-969.35968,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,1,1,762,0,0,0,303.31018 -9928,12245,22259,22262,-9,-9,1,1,0,49,1,0,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,10,0,2,66.047112,0,0,0,47,3,2,1,2,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.56936592,0,0,0,51.73,58.82,47.610001,46.110001,6,1,1,0,0,5,5,1,528.75,600536.63,0,0,3863.5586 -9928,12245,22260,-9,22259,22262,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.93158,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,528.75,600536.63,0,0,3863.5586 -9928,12245,22261,-9,22259,22262,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.3056,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,528.75,600536.63,0,0,3863.5586 -9928,12245,22262,22259,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,0,2,9.0304832,9.6346407,0,2,0,-9,10,0,-2,111.22765,0,0,0,49,1,5,3,-9,-9,2019,2,1,16,4,40,41,15,1,1,3,0,28.934566,28.934566,0,0,0,0,0,0,0,0,0,0,0,.16428202,0,0,0,47.610001,46.110001,51.73,58.82,5,1,1,0,0,5,5,1,528.75,600536.63,0,0,3863.5586 -9929,12246,22263,-9,22264,22265,4,1,0,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-905.51288,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,4,2,0,0,8,5,1,1161.25,1638159.9,0,0,4878.1299 -9929,12246,22264,22265,-9,-9,2,1,0,46,1,0,1,0,1,-9,1,1,0,0,5,8.391902,8.3148441,0,2,0,-9,21,0,-3,63.106289,0,0,0,49,2,4,1,2,3,2019,1,1,9,0,35,40,15,1,0,1,0,21.608803,21.608803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,50.849998,52.080002,6,2,3,0,0,8,5,1,1161.25,1638159.9,0,0,4878.1299 -9929,12246,22265,22264,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.9071817,8.7565174,0,2,0,-9,20,0,3,43.236141,0,0,0,46,1,5,1,-9,-9,2019,1,2,7,0,80,84,15,1,0,1,0,9.9286537,9.9286537,0,0,0,0,0,0,0,0,1,1,0,2.0652316,0,0,0,50.849998,52.080002,54.689999,57.470001,4,1,1,0,0,8,5,1,1161.25,1638159.9,0,0,4878.1299 -9929,12246,22266,-9,22264,22265,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-970.97144,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,-9,-9,6,4,2,0,0,8,5,1,1161.25,1638159.9,0,0,4878.1299 -9930,12247,22267,22270,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,1,4,7.4371901,7.6689105,0,2,0,-9,8,0,-8,-148.0051,0,0,1,47,2,4,1,-9,-9,2019,1,1,11,0,30,27,15,1,0,1,0,7.6744609,7.6744609,0,0,0,0,0,0,0,7,1,1,0,0,0,5.2923751,3,55.189999,54.259998,51,56,6,1,1,0,0,13,4,1,461.25,-9578.0234,0,0,2876.231 -9930,12247,22268,-9,22267,22270,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.1425,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,1,461.25,-9578.0234,0,0,2876.231 -9930,12247,22269,-9,22267,22270,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.79193,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,461.25,-9578.0234,0,0,2876.231 -9930,12247,22270,22267,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,8.9045115,8.5920448,0,2,0,-9,8,0,8,65.700714,0,0,0,39,1,4,1,2,2,2019,1,2,10,1,45,40,15,1,0,1,0,16.484211,16.484211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,55.189999,54.259998,5,1,1,0,0,13,4,1,461.25,-9578.0234,0,0,2876.231 -9931,12248,22271,22272,-9,-9,1,1,1,44,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,7,0,-2,0,0,0,0,46,3,2,3,3,3,2019,4,2,21,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.1824021,2,31.629999,39.790001,29.52,23.209999,4,1,1,1,1,4,1,0,716.5,-41190.031,0,0,2626.3628 -9931,12248,22272,22271,-9,-9,2,1,0,46,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,7,0,2,0,0,0,0,44,3,2,3,3,3,2019,4,1,22,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.52,23.209999,31.629999,39.790001,1,1,1,0,1,4,1,0,716.5,-41190.031,0,0,2626.3628 -9932,12249,22273,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,0,2,0,7.8516865,7.7731586,3,0,0,0,-9,0,-950.77649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6411338,7.9749808,0,0,14.53,45.299999,-9,-9,3,1,1,0,0,9,3,1,764,752005.38,0,0,3317.1372 -9933,12250,22274,-9,-9,-9,1,1,0,32,3,1,1,0,2,-9,2,1,0,0,5,7.3940535,7.7475176,0,4,0,0,0,-9,0,-1067.8293,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,18,16,15,1,0,-9,0,10.480638,10.480638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.799999,-9,-9,7,1,1,0,0,10,2,1,531,121324.48,0,0,86.660629 -9933,12250,22275,-9,22274,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1035.8569,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,6,0,0,10,2,1,531,121324.48,0,0,86.660629 -9934,12251,22276,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.1740007,8.1868525,0,3,0,0,0,-9,0,-1063.2361,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,44,0,15,1,1,-9,0,9.947401,9.947401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.419998,59.700001,-9,-9,3,1,1,0,0,8,4,0,219,-10121.794,0,0,1792.7305 -9935,12252,22277,-9,22279,22278,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-973.58142,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,8,5,1,440,187945.81,0,0,4550.1958 -9935,12252,22278,22279,22280,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,1,3,8.2815113,8.5752335,7.6867123,2,0,-9,30,0,5,23.60994,0,0,0,48,2,3,1,3,3,2019,1,2,13,1,36,38,15,1,0,1,0,12.611353,12.611353,0,0,0,0,0,0,0,2,1,1,0,7.9445248,0,3.8612826,3,38.16,44.66,61.610001,37.790001,4,2,3,0,0,8,5,1,440,187945.81,0,0,4550.1958 -9935,12252,22279,22278,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.8457155,7.8239131,0,2,0,-9,30,0,-5,-19.820457,0,0,0,53,2,3,1,3,3,2019,1,1,12,2,36,35,15,1,0,1,0,8.49228,8.49228,0,0,0,0,0,0,0,2,1,1,0,0,0,.13565907,3,61.610001,37.790001,38.16,44.66,4,2,3,0,0,8,5,1,440,187945.81,0,0,4550.1958 -9935,12253,22280,-9,-9,-9,5,1,0,78,3,0,1,0,3,-9,4,3,0,0,3,0,6.4092178,6.3408885,4,0,0,0,-9,0,-995.70642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1047959,6.1669135,0,0,53,45,-9,-9,6,2,3,0,0,8,2,1,3118,344039.72,0,0,473.17203 -9935,12254,22281,22282,-9,-9,6,1,0,27,1,0,1,0,1,-9,2,1,0,0,4,8.1266794,8.1063366,0,2,0,-9,1,-9,1,-5.5199919,-9,1,1,26,1,4,1,-9,-9,2019,1,3,20,7,40,0,15,1,1,1,0,11.54561,11.54561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.43,50.970001,51.400002,42.439999,6,2,3,0,0,8,4,1,677,83526.352,0,0,2709.4277 -9935,12254,22282,22281,22279,22278,3,1,1,26,1,0,1,0,1,-9,2,1,0,0,4,7.997025,7.846231,0,2,0,1,1,-9,-1,-101.73132,0,1,0,27,1,4,1,2,2,2019,1,6,8,1,40,40,15,1,0,1,0,9.1509037,9.1509037,0,0,0,0,0,0,0,0,1,1,0,3.6530044,0,0,0,51.400002,42.439999,39.43,50.970001,7,2,3,0,0,8,4,1,677,83526.352,0,0,2709.4277 -9936,12255,22283,22284,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-2,42.920563,0,0,0,74,2,3,3,2,2,2019,4,2,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96628529,0,0,0,44.169998,44.459999,60.290001,52.110001,5,1,1,0,0,6,2,1,681,520871.94,0,0,2762.9133 -9936,12255,22284,22283,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.5880084,7.3854222,1,0,-9,54,0,2,5.4936867,0,0,0,72,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.651228,7.6128049,0,0,60.290001,52.110001,44.169998,44.459999,6,1,1,0,0,6,2,1,681,520871.94,0,0,2762.9133 -9937,12256,22285,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,0,5,8.9618063,8.7575083,0,3,0,0,0,-9,0,-1020.1333,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,70,70,15,1,0,-9,0,13.574612,13.574612,0,0,0,0,0,0,0,0,0,0,0,9.2208099,0,0,0,56.720001,58.130001,-9,-9,7,1,1,0,0,2,5,1,302,94569.063,0,0,5556.8228 -9938,12257,22286,-9,-9,-9,1,1,0,34,2,1,2,0,3,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-937.53595,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.48,45.66,-9,-9,3,4,2,0,1,6,1,0,379.66666,54571.145,0,0,1375.7762 -9938,12257,22287,-9,22286,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.32916,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,6,1,0,379.66666,54571.145,0,0,1375.7762 -9938,12257,22288,-9,22286,-9,2,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-953.23108,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,6,1,0,379.66666,54571.145,0,0,1375.7762 -9939,12258,22289,22290,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-3,-60.797531,0,0,0,68,2,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.12814,1,58.900002,45.740002,35.700001,23.15,6,1,1,0,0,12,1,0,163,0,0,0,1648.1956 -9939,12258,22290,22289,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,1,1,0,4.0260077,4.1288514,1,0,-9,50,0,3,152.77415,0,0,0,65,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6497169,4.0615516,0,0,35.700001,23.15,58.900002,45.740002,5,1,1,0,0,12,1,0,163,0,0,0,1648.1956 -9940,12259,22291,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,5,8.4178457,8.6507359,4.5522122,3,0,0,0,-9,0,-1015.1907,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,38,38,15,1,0,-9,0,13.318151,13.318151,0,0,0,0,0,0,0,0,0,0,0,3.6138682,5.0735526,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,5,1,254,156233.36,0,0,1354.9387 -9940,12260,22292,-9,-9,22291,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.9233003,8.1692257,0,3,0,0,0,-9,0,-978.46942,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,19,7,40,36,15,1,1,-9,1,10.259515,10.259515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,62.080002,-9,-9,4,1,1,0,0,9,4,1,656,-176888.3,0,0,1525.0726 -9940,12261,22293,-9,-9,22291,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.2015591,7.1606526,0,3,0,0,0,-9,0,-1003.3088,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,19,7,25,26,15,1,1,-9,1,5.3989415,5.3989415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.689999,58.700001,-9,-9,3,1,1,0,1,9,3,1,377,-15799.218,0,0,1191.7189 -9941,12262,22294,22295,-9,-9,2,1,1,65,1,0,0,0,1,-9,2,1,0,0,2,7.6630921,8.1401777,0,1,0,-9,31,0,17,-2.6290543,0,0,0,48,1,4,1,3,3,2019,1,1,12,3,37,38,15,1,0,1,0,6.7995205,6.7995205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.57,28.07,46.209999,36.93,6,1,1,0,0,11,5,0,709.5,1598985.8,0,0,3750.061 -9941,12262,22295,22294,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,8.5115948,8.1801252,0,1,0,-9,31,0,-17,56.838951,0,0,0,65,1,2,1,3,3,2019,1,2,13,5,49,37,15,1,1,1,0,9.9652491,9.9652491,0,0,0,0,0,0,0,0,1,1,0,3.2805586,0,0,0,46.209999,36.93,53.57,28.07,2,1,1,0,0,11,5,0,709.5,1598985.8,0,0,3750.061 -9942,12263,22296,-9,-9,-9,1,1,1,81,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-990.28259,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4413307,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,7,1,0,994,-162351.98,0,0,2494.623 -9943,12264,22297,22298,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,0,3,8.599802,8.6833925,0,2,0,-9,11,0,11,-30.473446,0,0,0,29,2,1,1,2,3,2019,1,2,17,5,38,37,15,1,1,1,0,14.425662,14.425662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,54.110001,45.169998,12.09,2,1,1,0,0,9,3,0,541.59998,549936.44,0,0,3037.6716 -9943,12264,22298,22297,-9,-9,2,1,0,29,1,0,3,0,2,-9,1,1,0,0,1,7.0474477,6.7493219,0,2,0,-9,11,0,-11,-80.454124,0,1,1,40,2,3,1,2,1,2019,1,1,22,9,16,12,15,1,1,1,0,6.7375188,6.7375188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.169998,12.09,38.57,54.110001,4,1,1,0,0,9,3,0,541.59998,549936.44,0,0,3037.6716 -9943,12264,22299,-9,22298,22297,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.10168,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,0,541.59998,549936.44,0,0,3037.6716 -9943,12264,22300,-9,22298,22297,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.19763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,3,0,541.59998,549936.44,0,0,3037.6716 -9943,12264,22301,-9,22298,22297,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.5804,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,0,541.59998,549936.44,0,0,3037.6716 -9944,12265,22302,-9,22305,22303,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-799.60425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,7,1,0,660,-32349.418,0,0,2315.1235 -9944,12265,22303,22305,-9,-9,1,1,1,43,1,0,3,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,18,0,8,0,0,0,0,35,2,4,3,3,3,2019,4,2,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.939999,58.27,64.050003,50.240002,5,2,3,1,0,7,1,0,660,-32349.418,0,0,2315.1235 -9944,12265,22304,-9,22305,22303,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.1593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,1,0,660,-32349.418,0,0,2315.1235 -9944,12265,22305,22303,-9,-9,2,1,0,35,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,-8,0,0,0,1,43,2,5,3,3,3,2019,4,1,1,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.050003,50.240002,46.939999,58.27,6,2,3,0,1,7,1,0,660,-32349.418,0,0,2315.1235 -9945,12266,22306,22307,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,1,3,8.1233425,8.1743612,0,1,0,-9,26,0,5,21.542023,0,0,0,52,1,2,1,3,2,2019,1,2,8,0,39,39,15,1,0,1,0,7.5190539,7.5190539,0,0,0,0,0,0,0,0,1,1,0,3.1004822,0,0,0,56.59,49.889999,56.029999,35.450001,6,1,1,0,0,4,5,1,623.5,1308108.4,0,0,4133.5596 -9945,12266,22307,22306,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,2,8.5575848,8.3725901,0,1,0,-9,26,0,-5,-55.997353,0,0,0,57,2,3,1,3,3,2019,1,1,11,0,38,40,15,1,0,1,0,13.085981,13.085981,0,0,0,0,0,0,0,0,1,1,0,.97193658,0,0,0,56.029999,35.450001,56.59,49.889999,6,1,1,0,0,4,5,1,623.5,1308108.4,0,0,4133.5596 -9946,12267,22308,22309,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,7.5884986,7.5851026,0,1,0,-9,7,0,3,83.389481,0,0,0,55,2,3,3,3,2,2019,2,1,9,0,40,44,15,1,0,3,0,4.5910754,4.5910754,0,0,0,0,0,0,0,2,0,0,0,1.7017162,0,2.9342353,3,54.959999,53.169998,51.700001,49.110001,5,1,1,0,0,11,2,1,2485,406392.13,0,0,836.58484 -9946,12267,22309,22308,-9,-9,1,1,0,55,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,7,0,-3,-110.21004,0,0,0,58,2,3,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.8738699,0,0,0,51.700001,49.110001,54.959999,53.169998,6,1,1,0,0,11,2,1,2485,406392.13,0,0,836.58484 -9947,12268,22310,-9,22311,22312,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.29602,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,519.66669,168366.67,0,0,3893.4788 -9947,12268,22311,22312,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,0,4,7.619102,7.7613301,0,2,0,-9,6,0,-5,-48.616421,0,0,1,40,2,4,1,-9,-9,2019,1,1,12,0,35,35,15,1,0,1,0,7.7035098,7.7035098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.110001,54.040001,57.16,56.150002,5,1,1,0,0,2,4,1,519.66669,168366.67,0,0,3893.4788 -9947,12268,22312,22311,-9,-9,1,1,1,40,1,0,1,0,2,-9,1,1,0,0,4,8.5846968,9.0294542,0,2,0,-9,6,0,5,-59.455482,0,0,0,35,2,4,1,-9,-9,2019,1,2,6,0,36,35,15,1,0,1,0,15.863875,15.863875,0,0,0,0,0,0,0,0,1,1,0,6.8392911,0,0,0,57.16,56.150002,50.110001,54.040001,5,1,1,0,0,2,4,1,519.66669,168366.67,0,0,3893.4788 -9948,12269,22313,22314,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,6.7597747,8.4580765,8.0150385,1,0,-9,10,0,1,-91.042091,0,0,0,57,2,2,1,2,2,2019,1,2,21,10,17,14,15,1,1,1,0,8.9232254,8.9232254,0,0,0,0,0,0,0,7,1,1,0,0,7.9904428,1.6696259,3,34.91,34.48,58.560001,46.450001,5,1,1,0,1,7,5,1,494,649249.5,0,0,3904.9832 -9948,12269,22314,22313,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,2,8.5948715,8.7289619,0,1,0,-9,10,0,-1,93.629707,0,0,0,58,2,2,1,2,2,2019,1,1,6,0,55,50,15,1,0,1,0,11.940824,11.940824,0,0,0,0,0,0,0,0,1,1,0,2.3320901,0,0,0,58.560001,46.450001,34.91,34.48,6,1,1,0,0,7,5,1,494,649249.5,0,0,3904.9832 -9949,12270,22315,22316,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,2,8.3252773,8.3119335,0,1,0,-9,29,0,0,147.31279,0,0,0,54,1,4,1,2,2,2019,1,2,0,0,38,0,15,1,0,1,0,12.952299,12.952299,0,0,0,0,0,0,0,0,0,0,0,5.5939627,0,0,0,56.68,21.84,62.490002,55.09,6,1,1,0,0,2,4,1,464.5,464805.5,0,0,3125.7803 -9949,12270,22316,22315,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,8.176424,7.6240201,0,1,0,-9,29,0,0,-145.29254,0,0,0,54,1,2,1,3,3,2019,1,1,3,0,43,44,15,1,0,1,0,6.9289656,6.9289656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,56.68,21.84,6,1,1,0,0,2,4,1,464.5,464805.5,0,0,3125.7803 -9950,12271,22317,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,1,0,7.4361625,7.8015618,3,0,0,0,-9,0,-982.86725,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5622096,0,0,31.25,27.77,-9,-9,2,1,1,0,0,10,3,1,2715,258792.13,0,0,2178.189 -9951,12272,22318,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,3,3,0,0,3,0,6.7310085,6.3571391,3,0,-9,0,-9,0,-1006.4114,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3532534,0,0,0,33.66,61.57,-9,-9,5,1,1,1,0,4,2,0,596,168275.16,0,0,-55.647972 -9952,12273,22319,-9,22320,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-931.36359,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,2,0,1354.3334,98231.57,0,0,1562.6144 -9952,12273,22320,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,0,4,7.6583033,7.5033984,0,4,0,-9,0,-9,0,-932.33496,-9,0,1,-9,-9,-9,-9,-9,1,2019,-9,0,8,0,25,0,15,1,0,-9,0,7.9861093,7.9861093,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,59.080002,-9,-9,6,1,1,0,0,9,2,0,1354.3334,98231.57,0,0,1562.6144 -9952,12273,22321,-9,22320,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1099.3676,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,2,0,1354.3334,98231.57,0,0,1562.6144 -9953,12274,22322,22323,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,6.845458,6.7623205,0,1,0,-9,3,0,-4,-60.911186,0,1,1,30,2,4,1,-9,-9,2019,1,1,24,9,22,16,15,1,1,1,0,5.9252019,5.9252019,0,0,0,0,0,0,0,0,1,1,0,.85347331,0,0,0,43.57,51.68,52.799999,53.98,5,1,1,0,0,7,2,0,1095,-101537.48,0,0,1678.1318 -9953,12274,22323,22322,-9,-9,1,1,1,30,1,0,0,0,2,-9,1,1,0,0,4,6.8800135,6.8490133,0,1,0,-9,3,0,4,55.601017,0,0,0,26,1,4,1,1,1,2019,1,2,11,0,35,37,15,1,0,1,0,1.943804,1.943804,0,0,0,0,0,0,0,0,1,1,0,2.3967328,0,0,0,52.799999,53.98,43.57,51.68,6,1,1,0,0,7,2,0,1095,-101537.48,0,0,1678.1318 -9954,12275,22324,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,-9,0,-9,0,-1030.4371,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,17.49,-9,-9,6,1,1,0,0,9,1,0,844,52435.891,0,0,797.59119 -9955,12276,22325,22326,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,8,-82.119743,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.349998,46.119999,52.84,42.900002,6,1,1,0,0,2,1,1,454.5,-161405.89,0,0,1701.5908 -9955,12276,22326,22325,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,4.7069931,4.72053,1,0,-9,7,0,-8,-45.499725,0,0,0,77,3,3,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9027696,4.5449238,0,0,52.84,42.900002,52.349998,46.119999,5,1,1,0,0,2,1,1,454.5,-161405.89,0,0,1701.5908 -9956,12277,22327,-9,-9,-9,3,1,1,60,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-1094.7631,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4909332,0,0,0,51,49,-9,-9,5,1,1,0,0,1,1,0,417,-49814.781,0,0,1852.4874 -9956,12278,22328,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,2,8.014905,7.4299097,0,3,0,0,0,-9,0,-1030.627,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,39,42,15,1,0,-9,0,6.3042631,6.3042631,0,0,0,0,0,0,0,87,1,1,0,0,0,120.84499,3,46.599998,20.67,-9,-9,5,1,1,0,0,1,3,0,481,361456.53,0,0,2068.1082 -9957,12279,22329,22330,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,7.1656618,7.5472836,1,0,-9,52,0,-4,-81.200706,0,0,0,74,3,3,3,3,2,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.9363775,0,0,42.900002,50.310001,53.07,53.970001,7,1,1,0,0,5,3,1,1575,1089122.5,0,0,2724.6758 -9957,12279,22330,22329,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.3415885,7.4772358,1,0,-9,47,0,4,-60.924244,0,0,0,70,3,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.3815055,7.6746087,0,0,53.07,53.970001,42.900002,50.310001,6,1,1,0,0,5,3,1,1575,1089122.5,0,0,2724.6758 -9958,12280,22331,22332,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-2,-4.6172771,0,0,0,86,3,4,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,62.099998,51.16,6,1,1,0,0,11,3,1,1445.5,591924.38,0,0,1932.5414 -9958,12280,22332,22331,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,0,4,0,7.7630858,7.7909741,1,0,-9,54,0,2,35.059841,0,0,0,84,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.516273,7.9366727,0,0,62.099998,51.16,52,54.509998,7,1,1,0,0,11,3,1,1445.5,591924.38,0,0,1932.5414 -9959,12281,22333,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-932.67352,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.959999,21.07,-9,-9,5,1,1,0,0,2,1,0,156,89115.594,0,0,984.81342 -9960,12282,22334,22335,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,7.2519464,7.1342707,1,0,-9,42,0,-2,196.27629,0,0,0,69,3,3,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2767382,7.0473256,0,0,58.150002,52.91,57.59,46.650002,6,1,1,0,0,11,2,1,242,544104.75,0,0,2327.5054 -9960,12282,22335,22334,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.1906357,6.3201694,1,0,-9,42,0,2,99.31279,0,0,0,67,3,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8105912,6.4084849,0,0,57.59,46.650002,58.150002,52.91,6,1,1,0,0,11,2,1,242,544104.75,0,0,2327.5054 -9961,12283,22336,22338,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,3,8.550065,8.8807268,0,2,0,-9,7,0,-1,85.428467,0,0,0,34,1,5,3,-9,-9,2019,2,1,24,10,42,0,15,1,1,3,0,13.971928,13.971928,0,0,0,0,0,0,0,0,1,1,0,3.3842633,0,0,0,31.690001,59.68,57.060001,57.759998,6,1,1,0,0,6,4,1,1037.3334,82666.594,0,0,1792.5558 -9961,12283,22337,-9,22338,22336,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.0397,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,6,4,1,1037.3334,82666.594,0,0,1792.5558 -9961,12283,22338,22336,-9,-9,1,1,0,34,1,1,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,7,0,1,-7.4084063,0,0,1,33,1,3,1,-9,2,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9117455,0,0,0,57.060001,57.759998,31.690001,59.68,7,1,1,0,0,6,4,1,1037.3334,82666.594,0,0,1792.5558 -9962,12284,22339,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-887.37109,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.23,34.150002,-9,-9,6,1,1,0,0,13,1,1,270,-6604.8027,0,0,733.04102 -9963,12285,22340,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,3.6490326,3.3016458,3,0,0,0,-9,0,-1031.4086,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8972626,3.5666943,0,0,35.040001,41.009998,-9,-9,2,1,1,0,0,9,1,1,41,-10755.756,0,0,1218.4252 -9964,12286,22341,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.6038866,8.7353058,0,3,0,-9,0,-9,0,-1011.5248,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,35,0,15,1,0,-9,0,24.138323,24.138323,0,0,0,0,0,0,0,0,0,0,0,3.1191671,0,0,0,26.91,63.25,-9,-9,5,1,1,0,0,8,5,0,601,60521.555,0,0,2319.3936 -9965,12287,22342,22343,-9,-9,2,1,0,82,1,0,0,0,1,-9,4,3,0,0,2,0,7.2125716,6.7761068,1,0,-9,38,0,-4,-14.036598,0,0,0,86,1,1,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6686015,6.7707095,0,0,59.599998,25.73,47.290001,23.91,6,1,1,0,0,7,3,1,2353.5,508447.88,0,0,2849.8506 -9965,12287,22343,22342,-9,-9,1,1,1,86,1,0,0,0,1,-9,4,3,0,0,1,0,7.5827074,7.5268946,1,0,-9,38,0,4,51.521778,0,0,0,82,1,2,3,2,3,2019,4,2,7,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.949103,7.3451433,0,0,47.290001,23.91,59.599998,25.73,6,1,1,0,0,7,3,1,2353.5,508447.88,0,0,2849.8506 -9966,12288,22344,-9,22345,22346,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.6593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,1068.3334,161531.8,0,0,3632.762 -9966,12288,22345,22346,-9,-9,1,1,0,32,1,1,1,0,2,-9,2,1,0,0,5,7.547976,7.5586901,0,2,0,-9,7,0,-2,-127.34718,0,0,1,34,2,3,1,2,2,2019,1,2,9,0,22,22,15,1,0,1,0,13.517731,13.517731,0,0,0,0,0,0,0,0,1,1,0,.91990405,0,0,0,46.400002,59.869999,44.220001,56.66,7,1,1,0,0,11,5,1,1068.3334,161531.8,0,0,3632.762 -9966,12288,22346,22345,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,0,3,8.9359684,8.9842434,3.0718837,2,0,-9,7,0,2,-30.015024,0,0,0,32,2,5,1,-9,-9,2019,1,1,8,0,47,45,15,1,0,1,0,19.066525,19.066525,0,0,0,0,0,0,0,0,1,1,0,4.3116102,0,0,0,44.220001,56.66,46.400002,59.869999,5,1,1,0,0,11,5,1,1068.3334,161531.8,0,0,3632.762 -9967,12289,22347,-9,22350,22349,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1170.5837,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,788.25,404413.44,0,0,11320.34 -9967,12289,22348,-9,22350,22349,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.04,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,788.25,404413.44,0,0,11320.34 -9967,12289,22349,22350,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,4,9.5749331,9.4175854,0,2,0,-9,6,0,3,-111.38376,0,0,0,43,1,4,1,-9,-9,2019,1,1,2,0,43,35,15,1,0,1,0,29.233294,29.233294,0,0,0,0,0,0,0,0,0,0,0,7.1583276,0,0,0,54.200001,57.490002,59.150002,49.669998,6,1,1,0,0,8,5,1,788.25,404413.44,0,0,11320.34 -9967,12289,22350,22349,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,9.6817217,9.7253809,0,2,0,-9,6,0,-3,34.874996,0,0,1,46,3,4,1,1,1,2019,1,2,11,0,36,30,15,1,0,1,0,52.578159,52.578159,0,0,0,0,0,0,0,0,0,0,0,7.2603564,0,0,0,59.150002,49.669998,54.200001,57.490002,6,1,1,0,0,8,5,1,788.25,404413.44,0,0,11320.34 -9968,12290,22351,-9,-9,-9,2,1,0,40,2,0,0,0,1,-9,1,1,0,0,4,7.4480133,7.3092413,0,1,0,-9,4,0,4,72.008415,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,1,12,4,32,36,15,1,1,-9,0,4.1819754,4.1819754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,51.290001,48,56,6,1,1,0,0,11,2,1,343,539335.44,0,0,1501.2935 -9969,12291,22352,-9,22354,22353,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-966.8089,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,4,1,488,289715.13,0,0,4052.9048 -9969,12291,22353,22354,-9,-9,2,1,1,42,1,0,2,0,3,-9,2,1,0,0,3,8.8200588,8.9122152,0,2,0,-9,19,0,0,4.8043609,0,0,0,42,2,3,1,2,3,2019,1,1,10,0,40,40,15,1,0,1,0,19.038879,19.038879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,57.330002,53.459999,6,1,1,0,0,7,4,1,488,289715.13,0,0,4052.9048 -9969,12291,22354,22353,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.6529522,7.5942879,0,2,0,-9,19,0,0,-189.61856,0,0,1,42,3,3,1,2,2,2019,1,2,10,0,30,12,15,1,0,1,0,7.4087939,7.4087939,0,0,0,0,0,0,0,2,1,1,0,1.8307439,0,.22169302,3,57.330002,53.459999,52,54.509998,1,1,1,0,0,7,4,1,488,289715.13,0,0,4052.9048 -9969,12291,22355,-9,22354,22353,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.06506,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,488,289715.13,0,0,4052.9048 -9970,12292,22356,22357,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,5,7.8240166,7.9437084,0,1,0,-9,3,0,-2,42.827766,0,0,1,32,1,4,1,1,2,2019,1,2,7,0,40,40,15,1,0,1,0,8.1621923,8.1621923,0,0,0,0,0,0,0,0,0,0,0,3.2812281,0,0,0,57.060001,57.759998,51.240002,58.84,6,1,1,0,0,11,5,1,339,-47855.313,0,0,2667.8813 -9970,12292,22357,22356,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.5713739,8.5171604,0,1,0,-9,3,0,2,-33.87146,0,0,0,30,1,5,1,-9,-9,2019,1,1,13,4,41,45,15,1,1,1,0,10.631416,10.631416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,57.060001,57.759998,6,1,1,0,0,11,5,1,339,-47855.313,0,0,2667.8813 -9971,12293,22358,22360,-9,-9,2,1,1,42,1,0,2,0,2,-9,1,1,0,0,3,8.3230791,8.3265495,0,2,0,-9,9,0,4,-26.89966,0,0,0,38,2,4,1,2,2,2019,1,1,7,0,50,60,15,1,0,1,0,8.8801422,8.8801422,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.27,52.130001,41.299999,60.77,5,1,1,0,0,9,4,1,706,447085.25,0,0,3371.812 -9971,12293,22359,-9,22360,22358,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.4545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,706,447085.25,0,0,3371.812 -9971,12293,22360,22358,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,7.7556133,7.6733494,0,2,0,-9,9,0,-4,84.455452,0,0,1,42,2,3,1,2,2,2019,1,2,12,1,31,25,15,1,0,1,0,10.745916,10.745916,0,0,0,0,0,0,0,0,1,1,0,7.3198013,0,0,0,41.299999,60.77,60.27,52.130001,6,1,1,0,1,9,4,1,706,447085.25,0,0,3371.812 -9972,12294,22361,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,0,4,7.8391857,7.9948926,0,3,0,0,0,-9,0,-899.81525,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,36,36,15,1,0,-9,0,11.277312,11.277312,0,0,0,0,0,0,0,2,0,0,0,0,0,2.4625471,3,35.439999,62.099998,-9,-9,6,1,1,0,0,9,4,0,531,-71225.656,0,0,1061.7216 -9973,12295,22362,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1127.8318,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.650002,29.709999,-9,-9,3,1,1,0,0,12,1,0,193,0,0,0,957.81799 -9974,12296,22363,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,8.2806807,8.298069,3,0,-9,0,-9,0,-974.45667,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9769216,6.7502208,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,11,4,1,555,2204161.5,0,0,2411.0706 -9975,12297,22364,22365,-9,-9,1,1,1,57,1,1,1,0,2,-9,1,1,0,0,3,6.9435992,6.3980956,0,2,0,-9,7,0,6,70.531502,0,0,0,51,2,2,1,3,2,2019,1,2,10,1,50,40,15,1,0,1,0,1.6918228,1.6918228,0,0,0,0,0,0,0,0,0,0,0,4.4005475,0,0,0,51,49,30.700001,56.790001,5,3,4,0,0,8,2,1,849,399542.06,0,0,486.98083 -9975,12297,22365,22364,-9,-9,2,1,0,51,1,1,1,0,2,-9,2,1,0,0,2,0,0,0,2,0,-9,7,0,-6,51.310898,0,0,0,57,2,3,1,2,2,2019,1,1,24,12,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.700001,56.790001,51,49,2,1,1,0,0,8,2,1,849,399542.06,0,0,486.98083 -9975,12298,22366,-9,22365,22364,3,1,0,30,3,1,1,0,2,-9,6,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1009.8768,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.098369755,0,0,0,48,57,-9,-9,5,4,2,0,0,8,1,1,475.5,-18256.908,0,0,459.05078 -9975,12298,22367,-9,22366,-9,4,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-863.87964,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,1,1,475.5,-18256.908,0,0,459.05078 -9976,12299,22368,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-930.66028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.709999,39.93,-9,-9,6,1,1,0,1,13,1,0,723,-222666.92,0,0,370.31766 -9977,12300,22369,22370,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,3,0,6.6469178,6.7218199,1,0,-9,40,0,-2,128.6485,0,0,0,61,2,4,1,-9,3,2019,3,1,23,11,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.738728,6.6325707,0,0,32.599998,54.09,57.16,56.150002,3,1,1,0,0,4,4,1,541.5,915194.44,0,0,2358.0112 -9977,12300,22370,22369,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,6.1982665,8.3213835,8.2307091,1,0,-9,40,0,2,-141.64384,0,0,0,59,2,3,3,3,2,2019,2,2,12,1,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4400311,0,0,57.16,56.150002,32.599998,54.09,7,1,1,0,0,4,4,1,541.5,915194.44,0,0,2358.0112 -9978,12301,22371,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,7.6729078,7.9250488,3,0,-9,0,1,0,-906.16071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.9283519,8.0146685,0,0,50.41,53.709999,-9,-9,6,1,1,0,0,5,3,1,478,168712.88,0,0,1689.223 -9979,12302,22372,22373,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.8545456,8.5650558,6.7449961,1,0,-9,28,0,3,-76.36293,0,0,0,51,2,4,1,2,3,2019,1,1,6,0,40,50,15,1,0,1,0,17.091843,17.091843,0,0,0,0,0,0,0,0,0,0,0,1.8065939,6.852057,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,5,1,891.5,772963.75,0,0,4292.3389 -9979,12302,22373,22372,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,8.1801949,8.3459034,0,1,0,-9,28,0,-3,57.417469,0,0,0,54,2,4,1,2,2,2019,1,2,6,0,45,41,15,1,0,1,0,12.213196,12.213196,0,0,0,0,0,0,0,0,0,0,0,.72644645,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,5,1,891.5,772963.75,0,0,4292.3389 -9980,12303,22374,22375,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.8600817,7.7251048,0,1,0,-9,34,0,-6,95.449936,0,0,0,57,2,3,1,3,3,2019,1,2,10,0,67,62,15,1,0,1,0,5.7243338,5.7243338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,59.560001,40.310001,5,1,1,0,0,1,4,0,6526,136083.63,0,0,3351.3467 -9980,12303,22375,22374,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,7.6793513,7.9267268,0,1,0,-9,34,0,6,-92.810623,0,0,0,51,2,4,1,2,2,2019,1,1,11,0,37,36,15,1,0,1,0,9.7436161,9.7436161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.560001,40.310001,48.279999,60.18,2,1,1,0,0,1,4,0,6526,136083.63,0,0,3351.3467 -9980,12304,22376,-9,22374,22375,3,1,1,31,2,0,0,0,2,-9,2,1,0,0,3,8.0456057,8.2083607,0,3,0,0,0,-9,0,-1047.2173,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,52,52,15,1,0,-9,1,8.1675377,8.1675377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.759998,59.080002,-9,-9,3,1,1,0,0,1,4,0,1302,350970.06,0,0,1779.7336 -9980,12305,22377,-9,22374,22375,4,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,7.9717546,7.4796357,0,3,0,0,0,-9,0,-1070.2845,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,8.1648197,8.1648197,0,0,0,0,0,0,0,0,1,1,0,.36136329,0,0,0,49,58,-9,-9,5,1,1,0,0,1,3,0,488,-200509.98,0,0,2491.429 -9980,12306,22378,-9,22374,22375,5,1,1,26,2,0,0,0,2,-9,2,1,0,0,5,7.9664612,7.8483753,0,3,0,0,0,-9,0,-1022.3029,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,52,40,15,1,0,-9,1,7.4169431,7.4169431,0,0,0,0,0,0,0,0,1,1,0,.48366013,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,1,4,0,766,46187.75,0,0,772.6311 -9980,12307,22379,-9,22374,22375,6,1,1,22,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1004.1038,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,57.880001,-9,-9,5,1,1,0,0,1,1,0,116,124057.65,0,0,1105.6404 -9981,12308,22380,22381,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,0,5,8.2738075,8.5231905,0,2,0,-9,15,0,0,-68.405174,0,0,1,43,1,3,1,2,1,2019,1,2,7,0,20,0,15,1,0,1,0,17.232965,17.232965,0,0,0,0,0,0,0,0,0,0,0,7.040061,0,0,0,57.060001,57.759998,45.84,50.439999,6,1,1,0,0,2,5,1,502.25,813222.56,0,0,4454.8247 -9981,12308,22381,22380,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,3,9.1964178,8.8188953,0,2,0,-9,15,0,0,-8.8920498,0,0,0,43,2,5,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,14.049344,14.049344,0,0,0,0,0,0,0,0,0,0,0,3.4376097,0,0,0,45.84,50.439999,57.060001,57.759998,4,1,1,0,0,2,5,1,502.25,813222.56,0,0,4454.8247 -9981,12308,22382,-9,22380,22381,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.3447,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,502.25,813222.56,0,0,4454.8247 -9981,12308,22383,-9,22380,22381,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.4935,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,5,1,502.25,813222.56,0,0,4454.8247 -9982,12309,22384,22385,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,0,2,8.2190609,8.7309933,0,2,0,-9,8,0,0,-26.239983,0,0,0,42,1,4,3,3,2,2019,2,1,7,0,45,43,15,1,0,3,0,17.11512,17.11512,0,0,0,0,0,0,0,0,1,1,0,6.6237493,0,0,0,53.400002,47.490002,58.150002,52.91,6,1,1,0,0,4,4,1,1303.3334,474316.78,0,0,2941.3228 -9982,12309,22385,22384,-9,-9,1,1,0,42,1,0,1,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,8,0,0,94.248161,0,0,1,42,1,2,1,1,1,2019,3,2,8,0,0,26,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,53.400002,47.490002,6,1,1,1,1,4,4,1,1303.3334,474316.78,0,0,2941.3228 -9982,12309,22386,-9,22385,22384,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.4536,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,1303.3334,474316.78,0,0,2941.3228 -9983,12310,22387,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,4,7.3295393,8.0593615,6.9897571,3,0,0,0,-9,0,-910.25372,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,24,24,15,1,0,-9,0,8.9289503,8.9289503,0,0,0,0,0,0,0,0,1,1,0,0,6.7798777,0,0,51,52.080002,-9,-9,5,1,1,0,0,12,3,1,1110,471938.63,0,0,1664.1082 -9984,12311,22388,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,0,2,8.3388424,8.2551117,0,3,0,-9,0,1,0,-950.47638,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,33,12,69,66,15,1,1,-9,0,6.4386353,6.4386353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.780001,50.700001,-9,-9,2,1,1,0,1,11,4,0,552,-52719.176,0,0,2559.5974 -9985,12312,22389,-9,22390,22392,5,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.4514,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,1,0,875.75,59478.059,0,0,2122.3257 -9985,12312,22390,22392,-9,-9,1,1,0,42,1,0,4,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,25,0,1,0,0,0,1,41,3,1,3,2,2,2019,4,2,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.090004,1,31.34,49.52,34.860001,18.02,3,1,1,0,0,5,1,0,875.75,59478.059,0,0,2122.3257 -9985,12312,22391,-9,22390,22392,6,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.7053,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,1,0,875.75,59478.059,0,0,2122.3257 -9985,12312,22392,22390,-9,-9,2,1,1,41,1,0,4,0,3,-9,3,3,0,1,1,0,0,0,2,0,-9,25,0,-1,0,0,0,0,42,3,2,3,3,3,2019,4,1,26,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.860001,18.02,31.34,49.52,3,1,1,1,0,5,1,0,875.75,59478.059,0,0,2122.3257 -9986,12313,22393,-9,22395,22394,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-888.96448,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,0,651.25,126827.87,0,0,3617.5188 -9986,12313,22394,22395,-9,-9,1,1,1,30,1,1,2,0,2,-9,6,3,0,0,5,8.6674099,8.6792517,0,2,0,-9,1,-9,3,45.899284,-9,0,0,27,2,4,1,3,2,2019,3,2,10,0,40,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,55.790001,52.619999,6,1,1,0,0,10,4,0,651.25,126827.87,0,0,3617.5188 -9986,12313,22395,22394,-9,-9,2,1,0,27,1,1,2,0,2,-9,2,1,0,0,4,8.2862091,8.0599632,0,2,0,-9,1,-9,-3,93.392792,-9,1,1,30,2,5,3,-9,-9,2019,2,1,6,0,34,0,15,1,0,3,0,12.05709,12.05709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,54.099998,59.110001,6,1,1,0,0,10,4,0,651.25,126827.87,0,0,3617.5188 -9986,12313,22396,-9,22395,22394,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-961.80206,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,10,4,0,651.25,126827.87,0,0,3617.5188 -9987,12314,22397,-9,22398,22400,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-908.11163,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,7,5,1,433.5,869513.13,0,0,4463.5425 -9987,12314,22398,22400,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,8.3105831,8.5451212,0,2,0,-9,19,0,3,-88.289833,0,0,0,42,1,4,1,3,3,2019,1,2,9,0,28,25,15,1,0,1,0,18.202581,18.202581,0,0,0,0,0,0,0,0,1,1,0,2.8261864,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,7,5,1,433.5,869513.13,0,0,4463.5425 -9987,12314,22399,-9,22398,22400,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.51208,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,433.5,869513.13,0,0,4463.5425 -9987,12314,22400,22398,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.7492914,8.993331,0,2,0,-9,19,0,-3,100.74553,0,0,0,45,1,4,1,2,3,2019,1,1,8,0,40,40,15,1,0,1,0,21.422728,21.422728,0,0,0,0,0,0,0,0,1,1,0,.9518854,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,7,5,1,433.5,869513.13,0,0,4463.5425 -9988,12315,22401,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,8,3,1,1,1,0,5.5638051,5.5062585,3,0,0,0,-9,0,-1083.4419,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7688813,5.2555609,0,0,31.690001,21.059999,-9,-9,1,1,1,0,0,7,2,0,435,75494.461,0,0,1040.8789 -9989,12316,22402,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,2,0,3.2648327,3.3801842,3,0,0,0,-9,0,-1001.2088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.434329,0,0,64.220001,34.32,-9,-9,6,2,3,0,0,7,1,1,504,302460.03,0,0,508.14996 -9990,12317,22403,22404,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,4,7.9023314,8.4900532,0,1,0,-9,11,0,-17,-42.429607,0,0,1,54,1,3,1,1,1,2019,1,2,7,0,46,20,15,1,0,1,0,7.7917376,7.7917376,0,0,0,0,0,0,0,0,0,0,0,1.7828939,0,0,0,55.360001,54.240002,46.700001,46.060001,6,1,1,0,0,4,5,1,652.5,1294142.8,0,0,2637.2437 -9990,12317,22404,22403,-9,-9,2,1,1,54,1,0,0,0,1,-9,1,1,0,0,3,8.4631214,8.4984941,0,1,0,-9,10,0,17,53.825363,0,0,0,37,1,4,1,2,1,2019,1,1,15,5,50,35,15,1,1,1,0,12.097423,12.097423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.700001,46.060001,55.360001,54.240002,3,1,1,0,0,4,5,1,652.5,1294142.8,0,0,2637.2437 -9991,12318,22405,-9,22406,22408,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.16602,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,2,1,802.75,98308.289,0,0,1856.0272 -9991,12318,22406,22408,-9,-9,2,1,0,54,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,2,-35.197006,0,0,0,52,3,4,1,2,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.110001,52.880001,53,54,6,1,1,0,0,4,2,1,802.75,98308.289,0,0,1856.0272 -9991,12318,22407,-9,22406,22408,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.4855,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,2,1,802.75,98308.289,0,0,1856.0272 -9991,12318,22408,22406,-9,-9,1,1,1,52,1,0,2,0,3,-9,1,1,0,0,4,8.130827,8.1277637,0,2,0,-9,15,0,-2,66.210098,0,0,0,54,3,4,3,2,-9,2019,2,2,9,1,0,56,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49.110001,52.880001,6,1,1,0,0,4,2,1,802.75,98308.289,0,0,1856.0272 -9992,12319,22409,-9,-9,-9,1,1,0,18,2,0,0,1,2,0,7,2,0,0,4,0,6.3971987,6.1749754,3,0,0,0,-9,0,-1008.0118,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5235715,0,0,0,45.009998,57.459999,-9,-9,6,1,1,0,0,12,2,0,270,-9311.6143,0,0,152.71687 -9993,12320,22410,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,5.5653019,5.2058091,3,0,0,0,-9,0,-1061.5521,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0762055,5.4806228,0,0,60.73,18.879999,-9,-9,7,1,1,0,0,12,2,1,1241,-64659.328,0,0,1641.0985 -9994,12321,22411,-9,22412,22413,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.76904,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,6,3,1,879.66669,366875.53,0,0,2411.7568 -9994,12321,22412,22413,-9,-9,1,1,0,35,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,1,-42.643604,0,0,1,34,1,3,1,-9,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,49.389999,27.73,64.269997,7,1,1,0,0,6,3,1,879.66669,366875.53,0,0,2411.7568 -9994,12321,22413,22412,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,0,3,8.2240171,7.8251247,0,2,0,-9,8,0,-1,-12.147474,0,0,0,35,1,4,3,-9,-9,2019,2,1,26,10,37,42,15,1,1,3,0,10.84447,10.84447,0,0,0,0,0,0,0,0,1,1,0,7.2503438,0,0,0,27.73,64.269997,57.07,49.389999,5,1,1,0,0,6,3,1,879.66669,366875.53,0,0,2411.7568 -9995,12322,22414,22415,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,5,5.608541,5.7686629,0,1,0,-9,1,-9,0,56.044762,-9,0,0,54,1,3,1,2,2,2019,1,1,12,0,37,0,15,1,0,1,0,.77671123,.77671123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.849998,62.849998,50.029999,52.619999,5,1,1,0,0,11,4,1,2845.5,1944573,0,0,2086.252 -9995,12322,22415,22414,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,8.5784645,8.9531956,0,1,0,-9,1,-9,0,-47.958378,-9,0,0,54,1,5,1,1,2,2019,1,2,8,0,38,0,15,1,0,1,0,18.606651,18.606651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,42.849998,62.849998,6,1,1,0,0,11,4,1,2845.5,1944573,0,0,2086.252 -9996,12323,22416,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,4,8.2964268,8.0450344,0,3,0,0,0,-9,0,-998.00757,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,34,12,37,37,15,1,1,-9,0,11.860642,11.860642,0,0,0,0,0,0,0,7,1,1,0,0,0,4.7155347,3,21.959999,55.029999,-9,-9,2,1,1,0,0,10,4,1,286,47678.711,0,0,1128.4093 -9997,12324,22417,22418,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,40,0,-6,-84.143135,0,0,0,73,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.040001,54.119999,57.16,56.150002,7,1,1,0,0,5,2,1,472.5,1883351,0,0,2221.8489 -9997,12324,22418,22417,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,7.5005317,7.4716368,1,0,-9,35,0,6,135.3299,0,0,0,67,2,5,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2595296,0,0,57.16,56.150002,59.040001,54.119999,7,1,1,0,0,5,2,1,472.5,1883351,0,0,2221.8489 -9998,12325,22419,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,3,0,7.7205186,7.5765982,3,0,0,0,-9,0,-993.31744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6531324,0,0,62.029999,39.009998,-9,-9,6,1,1,0,0,2,3,0,227,527798.94,0,0,1139.8962 -9999,12326,22420,-9,-9,-9,1,1,1,73,2,0,0,0,2,-9,4,3,0,0,4,0,7.8993878,7.4999347,3,0,0,0,-9,0,-1136.5798,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7859812,7.7669573,0,0,66.360001,32.68,-9,-9,6,1,1,0,0,9,3,1,270,1270059,0,0,1321.4785 -10000,12327,22421,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,3,0,8.3233423,8.1330614,3,0,0,0,-9,0,-992.05383,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,2.9419341,0,0,0,0,31.753101,0,1,1,0,3.6747048,8.0992479,0,0,31.32,55.98,-9,-9,5,1,1,0,0,8,4,1,1073,1243897.3,0,0,3453.5139 -10001,12328,22422,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,5.8594513,6.0696168,3,0,0,0,-9,0,-1175.2147,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0710521,0,0,53,45,-9,-9,6,1,1,0,0,1,2,1,925,-15200.22,0,0,2912.1189 -10002,12329,22423,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,0,3,9.3775387,9.5287542,0,1,0,-9,16,0,1,2.3416533,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,12,0,60,60,15,1,0,-9,0,19.54987,19.54987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,57.16,56.150002,5,1,1,0,0,10,5,1,1538,523309.91,0,0,4517.5068 -10002,12330,22424,-9,-9,-9,2,1,1,44,2,0,0,0,2,-9,2,1,0,0,4,9.0801668,9.1999598,0,1,0,-9,15,0,-1,-116.38541,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,9,0,45,0,15,1,0,-9,0,22.155291,22.155291,0,0,0,0,0,0,0,0,0,0,0,4.4888544,0,0,0,57.16,56.150002,54.369999,54.799999,2,1,1,0,0,10,5,1,906,463255.06,0,0,4542.1299 -10003,12331,22425,-9,-9,-9,1,1,0,74,2,0,0,0,3,-9,4,3,0,0,4,0,7.1012793,7.1897054,3,0,0,0,-9,0,-1140.4591,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.1306129,32.523186,3,56.259998,50.099998,-9,-9,6,1,1,0,0,9,2,1,223,517089.91,0,0,640.57715 -10004,12332,22426,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,3,8.75741,8.7561398,0,3,0,0,0,-9,0,-998.07196,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,29,11,80,65,15,1,1,-9,0,8.1563044,8.1563044,0,0,0,0,0,0,0,0,0,0,0,3.9546621,0,0,0,37.790001,59.599998,-9,-9,2,1,1,0,0,2,5,1,393,104471.98,0,0,1797.7959 -10005,12333,22427,22428,-9,-9,2,1,0,50,1,0,0,0,1,-9,1,1,0,0,4,8.4253368,7.9155736,0,1,0,-9,30,0,0,-9.2691498,0,0,0,59,2,4,1,2,2,2019,1,1,9,0,12,14,15,1,0,1,0,39.578396,39.578396,0,0,0,0,0,0,0,0,0,0,0,6.4090662,0,0,0,57.16,56.150002,44.84,52.279999,6,1,1,0,0,2,5,1,378.5,832523.5,0,0,4053.5981 -10005,12333,22428,22427,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,4,8.3475895,8.6161757,0,1,0,-9,30,0,9,56.87159,0,0,0,50,1,4,1,3,3,2019,1,2,11,1,35,45,15,1,0,1,0,14.117373,14.117373,0,0,0,0,0,0,0,0,0,0,0,4.0659132,0,0,0,44.84,52.279999,57.16,56.150002,5,1,1,0,0,2,5,1,378.5,832523.5,0,0,4053.5981 -10006,12334,22429,-9,22433,22432,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1000.043,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,5,4,1,773.59998,997167.44,0,0,6089.4683 -10006,12334,22430,-9,22433,22432,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.7181,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,773.59998,997167.44,0,0,6089.4683 -10006,12334,22431,-9,22433,22432,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.88898,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,5,4,1,773.59998,997167.44,0,0,6089.4683 -10006,12334,22432,22433,-9,-9,1,1,1,49,1,0,3,0,1,-9,4,3,0,0,2,0,7.3729739,7.8078289,2,0,-9,22,0,5,-33.04335,0,0,0,44,1,3,1,3,3,2019,3,2,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7930317,0,0,47.950001,32.200001,53.950001,29.309999,6,1,1,0,0,5,4,1,773.59998,997167.44,0,0,6089.4683 -10006,12334,22433,22432,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,0,3,8.9492483,9.0848312,0,2,0,-9,22,0,-5,-159.57056,0,0,1,49,1,2,3,2,2,2019,2,1,11,1,23,27,15,1,0,4,0,39.981468,39.981468,0,0,0,0,0,0,0,5.48,1,1,0,2.5122468,0,0,1,53.950001,29.309999,47.950001,32.200001,6,1,1,0,0,5,4,1,773.59998,997167.44,0,0,6089.4683 -10007,12335,22434,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,0,4,7.5243793,7.8504648,0,3,0,0,0,-9,0,-1000.3317,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,33,11,42,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.1199999,73.110001,-9,-9,2,1,1,0,0,4,3,0,654,113437.74,0,0,352.74368 -10008,12336,22435,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,5.4547372,5.5710583,3,0,0,0,-9,0,-940.86969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2331295,5.6187348,0,0,56.5,45.630001,-9,-9,6,1,1,0,0,5,2,1,289,-172155.31,0,0,1034.4121 -10009,12337,22436,22437,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.6471066,6.9013762,1,0,-9,27,0,5,31.129757,0,0,0,70,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.8380861,6.5285125,0,0,41.169998,59.310001,60.119999,54.799999,1,1,1,0,0,7,2,1,468.5,356732.25,0,0,1558.2617 -10009,12337,22437,22436,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,5.4707317,5.3246851,1,0,-9,27,0,-5,107.70736,0,0,0,75,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.924509,4.9715409,0,0,60.119999,54.799999,41.169998,59.310001,7,1,1,0,0,7,2,1,468.5,356732.25,0,0,1558.2617 -10010,12338,22438,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,6.8754754,6.9375548,3,0,0,0,-9,0,-990.55566,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,1,0,0,14.224968,0,0,0,0,1,1,0,4.3242164,6.6996193,0,0,22.530001,33.09,-9,-9,4,1,1,0,0,6,2,1,590,301542.06,0,0,263.82742 -10011,12339,22439,22440,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,43,0,0,-62.154648,0,0,0,65,1,4,3,3,2,2019,4,2,6,0,0,52,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2792597,0,0,0,57.16,56.150002,60.43,46.439999,6,1,1,0,0,9,3,1,914,1490320.1,0,0,1381.3987 -10011,12339,22440,22439,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,6.4467816,7.5427642,7.4137626,1,0,-9,42,0,0,-86.794708,0,0,0,65,1,4,3,1,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6934497,7.3386779,0,0,60.43,46.439999,57.16,56.150002,6,1,1,0,0,9,3,1,914,1490320.1,0,0,1381.3987 -10012,12340,22441,-9,22444,-9,1,1,0,37,2,0,3,0,2,-9,2,1,0,0,4,6.5597944,6.6385765,0,3,0,0,0,-9,0,-872.79895,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,25,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.639999,57.240002,-9,-9,4,1,1,0,0,4,2,0,1583,151969.34,0,0,357.67572 -10012,12341,22442,-9,22444,-9,2,1,1,31,2,0,3,0,2,-9,2,1,0,0,2,8.0050344,7.77354,0,3,0,0,0,-9,0,-855.8335,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,37,0,15,1,1,-9,1,7.5152578,7.5152578,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.450001,51.41,-9,-9,5,1,1,0,0,4,4,0,526,-75327.773,0,0,737.96429 -10012,12342,22443,-9,22444,-9,3,1,1,33,2,0,3,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1002.9931,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.81,32.360001,-9,-9,1,1,1,0,1,4,1,0,704,0,0,0,-235.53496 -10012,12343,22444,-9,-9,-9,4,1,0,60,3,0,3,0,2,-9,8,3,1,1,1,0,5.2460537,5.36378,4,0,0,0,-9,0,-1000.7151,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.0493813,7.2105036,3,37,26,-9,-9,4,1,1,0,0,4,2,0,689,117832.4,0,0,-200.37843 -10012,12344,22445,-9,-9,22447,8,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1067.4135,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,1041,1016.4395,0,0,1633.4694 -10012,12344,22446,-9,-9,22447,6,1,0,15,2,0,3,1,3,-9,-9,2,0,0,1,0,0,0,3,0,0,0,-9,0,-963.43195,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,-9,-9,3,1,1,0,0,4,3,0,1041,1016.4395,0,0,1633.4694 -10012,12344,22447,-9,22444,-9,5,1,1,35,2,0,3,0,2,-9,2,1,0,0,5,7.6395278,7.1876607,0,3,0,0,0,-9,0,-940.32855,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.07,60.93,-9,-9,4,1,1,0,0,4,3,0,1041,1016.4395,0,0,1633.4694 -10012,12344,22448,-9,-9,22447,7,1,0,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,3,0,0,0,-9,0,-999.65765,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,4,3,0,1041,1016.4395,0,0,1633.4694 -10012,12345,22449,-9,-9,-9,9,1,1,63,2,0,3,0,3,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1053.993,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.830002,43.98,-9,-9,4,1,1,1,1,4,1,0,200,98175.273,0,0,739.77515 -10013,12346,22450,22451,-9,-9,2,1,0,53,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,9,0,-5,0,0,0,0,58,2,1,3,-9,-9,2019,4,1,23,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.805817,2,26.18,27.219999,51.25,13.8,4,1,1,0,0,10,1,1,364.5,-58916.148,0,0,1169.1453 -10013,12346,22451,22450,-9,-9,1,1,1,58,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,9,0,5,0,0,0,0,53,3,1,3,3,2,2019,4,2,22,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,13.8,26.18,27.219999,1,1,1,0,1,10,1,1,364.5,-58916.148,0,0,1169.1453 -10014,12347,22452,-9,22453,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1035.558,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,11,4,1,2241.5,60913.371,0,0,2659.2437 -10014,12347,22453,22454,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,0,3,8.1547546,8.4992762,0,2,0,-9,7,0,-2,0,-9,0,1,37,2,3,1,1,1,2019,1,3,16,4,28,0,15,1,1,1,0,15.344728,15.344728,0,0,0,0,0,0,0,0,1,1,0,1.9045949,0,0,0,32.709999,55.43,46.189999,42.169998,5,1,1,0,1,11,4,1,2241.5,60913.371,0,0,2659.2437 -10014,12347,22454,22453,-9,-9,3,1,1,37,1,0,2,0,2,-9,2,1,0,0,3,8.3258533,7.6323781,0,2,0,-9,7,0,2,0,0,0,0,35,2,3,1,-9,-9,2019,1,1,13,2,40,40,15,1,0,1,0,10.552956,10.552956,0,0,0,0,0,0,0,0,1,1,0,1.2097648,0,0,0,46.189999,42.169998,32.709999,55.43,3,1,1,0,0,11,4,1,2241.5,60913.371,0,0,2659.2437 -10014,12347,22455,-9,22453,22454,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.5979,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,4,1,2241.5,60913.371,0,0,2659.2437 -10015,12348,22456,22457,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,4.4555969,8.8636208,8.7986898,1,0,-9,8,0,9,8.8505974,0,0,0,55,1,5,1,2,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7592764,8.6048946,0,0,58.150002,52.91,57.060001,57.759998,6,1,1,0,0,5,5,1,602,2687884,0,0,5544.3716 -10015,12348,22457,22456,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,0,5,8.6776056,8.6998949,0,1,0,-9,8,0,0,16.266535,0,0,0,64,1,4,3,2,2,2019,2,1,6,0,38,37,15,1,0,4,0,15.917333,15.917333,0,0,0,0,0,0,0,0,0,0,0,1.1889076,0,0,0,57.060001,57.759998,58.150002,52.91,6,1,1,0,0,5,5,1,602,2687884,0,0,5544.3716 -10016,12349,22458,22459,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.8171568,7.6609025,1,0,-9,50,0,1,25.971272,0,0,0,71,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.8082638,0,0,62.18,30.639999,52,47,4,1,1,0,0,2,3,1,815,1093249.3,0,0,3249.0581 -10016,12349,22459,22458,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-1,-62.631245,0,0,0,72,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,62.18,30.639999,5,1,1,0,0,2,3,1,815,1093249.3,0,0,3249.0581 -10017,12350,22460,22461,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,16,0,-10,-67.927841,0,0,0,81,3,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.669998,50.459999,47.48,48.279999,6,1,1,0,0,10,2,1,727.5,-112304.49,0,0,1406.1724 -10017,12350,22461,22460,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,4.8302951,4.7158017,1,0,-9,22,0,10,146.842,0,0,0,71,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.9806123,4.7701068,0,0,47.48,48.279999,51.669998,50.459999,6,1,1,0,0,10,2,1,727.5,-112304.49,0,0,1406.1724 -10018,12351,22462,22463,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,3,9.2967014,9.5612965,0,1,0,-9,24,0,1,47.512444,0,0,0,50,1,4,3,-9,-9,2019,2,2,24,11,44,44,15,1,1,3,0,30.661015,30.661015,0,0,0,0,0,0,0,0,0,0,0,2.6331208,0,0,0,23.48,59.25,49.349998,59.639999,3,1,1,0,0,4,5,1,590.5,773926.88,0,0,4457.7305 -10018,12351,22463,22462,-9,-9,2,1,0,50,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,6,0,-1,-3.3001535,0,0,0,51,1,3,1,-9,-9,2019,3,1,12,0,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.133625,0,0,0,49.349998,59.639999,23.48,59.25,5,1,1,1,0,4,5,1,590.5,773926.88,0,0,4457.7305 -10019,12352,22464,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-999.71143,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,33,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.05,27.23,-9,-9,2,2,3,0,1,8,1,0,216,411197.44,0,0,2053.501 -10020,12353,22465,22466,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-8,17.014435,0,0,0,79,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,55.25,39.290001,71.620003,19.469999,7,1,1,0,0,11,2,1,535,478018.5,0,0,1172.584 -10020,12353,22466,22465,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,3,0,6.0783143,6.4018855,1,0,-9,8,0,8,-6.0910616,0,0,0,71,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,7.2621546,0,0,0,0,0,1,1,0,6.1449513,6.4698772,0,0,71.620003,19.469999,55.25,39.290001,6,1,1,0,0,11,2,1,535,478018.5,0,0,1172.584 -10021,12354,22467,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,0,2,0,6.0309992,6.113265,3,0,0,0,-9,0,-1074.5355,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.6329184,6.2364917,49.699608,3,48.439999,46.970001,-9,-9,6,1,1,0,0,2,2,0,891,524215.34,0,0,395.41208 -10022,12355,22468,22469,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,0,4,4.8163123,5.1024513,0,1,0,-9,34,0,3,-12.711104,0,0,0,59,2,2,1,3,2,2019,1,2,9,0,50,25,15,1,0,1,0,.40542057,.40542057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,53.66,35.16,6,1,1,0,0,8,3,1,257,2438866.5,0,0,3592.6521 -10022,12355,22469,22468,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,8.4306059,7.9576435,0,1,0,-9,34,0,-3,-75.995743,0,0,0,62,1,4,1,3,2,2019,1,1,11,1,30,32,15,1,0,1,0,14.403067,14.403067,0,0,0,0,0,0,0,0,0,0,0,8.0309048,0,0,0,53.66,35.16,57.16,56.150002,5,3,4,0,0,8,3,1,257,2438866.5,0,0,3592.6521 -10023,12356,22470,22471,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,0,2,7.715291,7.8901291,0,1,0,-9,5,0,-2,-99.296478,0,0,1,33,2,4,1,-9,-9,2019,1,2,15,3,40,40,15,1,0,1,0,8.4136658,8.4136658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.98,51.860001,54.790001,55.860001,4,1,1,0,0,4,5,1,4078,-24640.324,0,0,3153.8208 -10023,12356,22471,22470,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,0,4,8.795352,8.7576103,0,1,0,-9,5,0,2,53.08345,0,0,0,31,2,2,1,-9,-9,2019,1,1,10,0,55,58,15,1,0,1,0,11.249915,11.249915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,34.98,51.860001,7,1,1,0,0,4,5,1,4078,-24640.324,0,0,3153.8208 -10024,12357,22472,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,1,1,0,0,3,4.693779,6.9374061,7.047823,3,0,-9,0,1,0,-945.24176,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,16,24,15,1,1,-9,0,.98466003,.98466003,0,0,0,0,0,0,0,0,1,1,0,5.4038162,6.7398105,0,0,50,48,-9,-9,4,1,1,0,0,13,2,1,341,-173348.03,0,0,1835.0295 -10025,12358,22473,22474,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,2,7.9485936,7.8425398,0,1,0,-9,3,0,5,-91.80014,0,0,0,50,3,4,3,3,2,2019,2,2,5,0,38,38,15,1,0,3,0,9.8135805,9.8135805,0,0,0,0,0,0,0,0,1,1,0,5.0311408,0,0,0,44.080002,35.099998,57.16,56.150002,1,1,1,0,0,13,3,1,330.5,1190083.3,0,0,1124.0688 -10025,12358,22474,22473,-9,-9,2,1,0,50,1,0,0,0,3,-9,3,3,0,1,4,0,0,0,1,0,-9,3,0,-5,43.125778,0,0,0,55,3,2,1,3,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.32576,3,57.16,56.150002,44.080002,35.099998,6,1,1,1,0,13,3,1,330.5,1190083.3,0,0,1124.0688 -10026,12359,22475,22476,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.2654314,8.4901943,0,1,0,-9,31,0,-3,-67.75695,0,0,0,60,3,5,1,3,3,2019,1,1,12,1,22,22,15,1,0,1,0,24.747772,24.747772,0,0,0,0,0,0,0,2,0,0,0,2.6662679,0,0,3,43.709999,56.91,46.34,61.240002,5,1,1,0,0,9,5,1,1681.5,2067140,0,0,4498.7988 -10026,12359,22476,22475,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,5,8.6022663,9.1272774,8.0088034,1,0,-9,31,0,3,19.522282,0,0,0,57,2,3,1,3,3,2019,1,2,8,0,37,45,15,1,0,1,0,16.697487,16.697487,0,0,0,0,0,0,0,0,0,0,0,5.0141644,8.4736128,0,0,46.34,61.240002,43.709999,56.91,5,4,2,0,0,9,5,1,1681.5,2067140,0,0,4498.7988 -10026,12360,22477,-9,22475,22476,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,8.3309507,8.2221594,0,3,0,0,0,-9,0,-896.66486,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,41,44,15,1,0,-9,1,11.283293,11.283293,0,0,0,0,0,0,0,0,0,0,0,4.0857682,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,9,4,1,3190,-81009.734,0,0,1491.1616 -10026,12361,22478,-9,22475,22476,4,1,0,20,2,0,0,1,2,0,7,2,0,0,4,6.9258761,6.9007659,0,3,0,0,0,-9,0,-1104.9823,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,5,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.119999,51.57,-9,-9,7,1,1,0,0,9,2,1,266,-39876.012,0,0,565.77325 -10027,12362,22479,-9,22483,22481,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.35919,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,986.79999,63825.711,0,0,2897.5767 -10027,12362,22480,-9,22483,22481,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.76361,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,1,986.79999,63825.711,0,0,2897.5767 -10027,12362,22481,22483,-9,-9,2,1,1,34,1,0,3,0,1,-9,2,1,0,0,3,8.7111559,8.6807833,0,2,0,-9,11,0,3,-124.08717,0,0,0,31,2,4,1,2,2,2019,1,1,14,3,40,40,15,1,0,1,0,12.546764,12.546764,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.419998,58.049999,39.560001,56.040001,3,1,1,0,0,2,3,1,986.79999,63825.711,0,0,2897.5767 -10027,12362,22482,-9,22483,22481,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.94159,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,3,1,986.79999,63825.711,0,0,2897.5767 -10027,12362,22483,22481,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,0,4,6.3602171,7.1996384,5.7390366,2,0,-9,11,0,-3,-36.503365,0,0,1,34,1,3,1,2,2,2019,1,2,11,1,18,15,15,1,0,1,0,4.5798841,4.5798841,0,0,0,0,0,0,0,0,1,0,1,6.3497076,0,0,0,39.560001,56.040001,32.419998,58.049999,5,1,1,0,0,2,3,1,986.79999,63825.711,0,0,2897.5767 -10028,12363,22484,22487,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,8.8572998,8.8961668,0,2,0,-9,8,0,2,78.504913,0,0,1,36,1,3,1,-9,-9,2019,1,1,12,0,10,8,15,1,0,1,0,74.487778,74.487778,0,0,0,0,0,0,0,0,1,1,0,3.2964377,0,0,0,46.900002,56.66,54.959999,53.169998,6,1,1,0,0,11,5,1,1802.75,389269.13,0,0,4993.6748 -10028,12363,22485,-9,22484,22487,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.3904,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,1802.75,389269.13,0,0,4993.6748 -10028,12363,22486,-9,22484,22487,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.09656,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,5,1,1802.75,389269.13,0,0,4993.6748 -10028,12363,22487,22484,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,0,3,8.7354784,8.8220844,0,2,0,-9,14,0,-2,-48.696224,0,0,0,38,1,4,1,1,2,2019,1,2,6,0,37,37,15,1,0,1,0,18.310223,18.310223,0,0,0,0,0,0,0,0,1,1,0,3.1585705,0,0,0,54.959999,53.169998,46.900002,56.66,6,1,1,0,0,11,5,1,1802.75,389269.13,0,0,4993.6748 -10029,12364,22488,22489,-9,-9,1,1,0,62,1,0,0,0,3,-9,1,1,0,0,2,8.2912035,8.4230747,0,1,0,-9,46,0,-4,84.919571,0,0,0,66,2,3,1,3,2,2019,1,2,17,5,42,70,15,1,1,1,0,13.583087,13.583087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.560001,54.639999,57.330002,53.459999,5,1,1,0,0,7,5,1,1429.5,691889.63,0,0,5274.248 -10029,12364,22489,22488,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,0,3,7.6395116,7.705616,5.9977341,1,0,-9,46,0,4,-7.0950465,0,0,0,62,3,2,1,3,3,2019,1,1,8,0,50,50,15,1,0,1,0,5.2694507,5.2694507,0,0,0,0,0,0,0,0,1,1,0,6.4149013,6.0330396,0,0,57.330002,53.459999,35.560001,54.639999,6,1,1,0,0,7,5,1,1429.5,691889.63,0,0,5274.248 -10030,12365,22490,-9,-9,-9,1,1,1,64,2,0,1,0,2,-9,2,1,0,0,3,8.1094618,8.083251,0,4,0,0,0,-9,0,-832.71252,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,36,40,15,1,0,-9,0,9.3228273,9.3228273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,-9,-9,6,3,4,0,0,8,3,0,1465,1025333.8,0,0,1014.0303 -10030,12366,22491,-9,-9,22490,2,1,1,26,2,0,1,0,1,-9,2,1,0,0,4,8.4995928,8.5067844,0,3,0,0,0,-9,0,-985.70361,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,41,37,15,1,0,-9,1,14.41717,14.41717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.439999,56.389999,-9,-9,6,3,4,0,0,8,5,0,1122,-51017.152,0,0,1747.6672 -10031,12367,22492,-9,22493,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1070.8625,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,0,1490,54193.066,0,0,1573.5569 -10031,12367,22493,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,3,7.4077873,7.2209158,5.2887788,4,0,0,0,-9,0,-1042.3757,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,26,31,15,1,0,-9,0,7.3272247,7.3272247,0,0,0,0,0,0,0,0,1,1,0,5.2401443,0,0,0,61.450001,27.08,-9,-9,5,1,1,0,0,12,2,0,1490,54193.066,0,0,1573.5569 -10032,12368,22494,22495,-9,-9,1,1,0,68,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,7,0,8,0,0,0,0,60,2,1,3,3,3,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.92572,1,48.009998,30.83,64.57,18.049999,5,1,1,0,0,7,1,0,934.5,177345.97,0,0,2101.501 -10032,12368,22495,22494,-9,-9,2,1,1,60,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,-8,0,0,0,0,68,3,2,3,2,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2058854,0,0,1,64.57,18.049999,48.009998,30.83,4,1,1,0,0,7,1,0,934.5,177345.97,0,0,2101.501 -10033,12369,22496,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,2,0,6.6828814,6.2962146,3,0,0,0,-9,0,-1095.8396,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7666578,0,0,0,44.950001,34.889999,-9,-9,2,1,1,0,0,6,2,1,150,873293.38,0,0,182.96927 -10034,12370,22497,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,5,9.1331921,9.0407944,0,3,0,0,0,-9,0,-1030.4629,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,50,46,15,1,1,-9,0,23.500193,23.500193,0,0,0,0,0,0,0,0,0,0,0,1.064593,0,0,0,46.279999,62.599998,-9,-9,6,1,1,0,0,5,5,1,581,1801255.6,0,0,3065.895 -10035,12371,22498,22499,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,5,0,0,0,1,0,-9,36,0,0,-210.29596,0,0,0,59,2,5,1,3,3,2019,1,1,7,0,0,43,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.709999,52.34,63.970001,49.130001,6,1,1,0,0,12,3,1,1075.5,777219.63,0,0,1956.9597 -10035,12371,22499,22498,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,5,8.6769047,8.1268253,0,1,0,-9,36,0,0,-34.302647,0,0,0,59,2,5,1,3,-9,2019,1,2,6,0,8,38,15,1,0,1,0,55.798401,55.798401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.970001,49.130001,53.709999,52.34,7,1,1,0,0,12,3,1,1075.5,777219.63,0,0,1956.9597 -10035,12372,22500,-9,22499,22498,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,7.4797273,7.6898546,0,3,0,0,0,-9,0,-931.22479,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,4,37,40,15,1,1,-9,1,6.071157,6.071157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.73,60.049999,-9,-9,4,1,1,0,0,12,3,1,795,155483.27,0,0,14.314278 -10036,12373,22501,22502,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,0,3,7.7532396,7.6721592,0,1,0,-9,2,0,0,-80.247437,0,1,1,23,2,5,1,2,2,2019,1,2,22,8,42,40,15,1,1,1,0,6.0197659,6.0197659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.77,54.34,66.25,37.130001,5,1,1,0,0,6,4,0,299,-42683.148,0,0,1691.0994 -10036,12373,22502,22501,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,0,5,7.9158549,7.8211179,0,1,0,-9,2,0,0,-129.97391,0,1,0,23,2,3,1,-9,-9,2019,1,1,7,0,43,45,15,1,0,1,0,7.9817333,7.9817333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.25,37.130001,25.77,54.34,6,1,1,0,0,6,4,0,299,-42683.148,0,0,1691.0994 -10037,12374,22503,22504,-9,-9,1,1,0,54,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,26,0,-1,33.297253,0,0,0,55,2,4,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,53,54,5,2,3,0,1,8,2,0,656.5,691715.63,0,0,1135.5271 -10037,12374,22504,22503,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,7.8218579,7.3920217,0,1,0,-9,8,0,1,154.48834,0,0,0,54,3,4,3,-9,-9,2019,2,1,9,1,24,24,15,1,0,4,0,7.9484568,7.9484568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,55.189999,54.259998,6,2,3,0,0,8,2,0,656.5,691715.63,0,0,1135.5271 -10037,12375,22505,-9,22503,22504,3,1,0,19,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1167.2175,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,1,0,439,-71934.055,0,0,0 -10038,12376,22506,22507,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,2,0,6.2267451,6.405385,1,0,-9,8,0,-2,55.794418,0,0,0,86,3,3,3,3,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,6.4182892,0,3.6436868,0,0,0,1,1,0,7.1407337,6.59694,0,0,62.77,21.309999,57.27,35.610001,6,1,1,0,0,6,2,1,555,292104.5,0,0,2311.2004 -10038,12376,22507,22506,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,0,3,0,5.1579714,5.2131934,1,0,-9,8,0,2,-19.754486,0,0,0,84,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2835054,4.8465109,0,0,57.27,35.610001,62.77,21.309999,6,1,1,0,0,6,2,1,555,292104.5,0,0,2311.2004 -10039,12377,22508,22509,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,35,0,5,69.124588,0,0,0,69,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9434695,0,0,3,57.330002,53.459999,59.599998,46.990002,6,1,1,0,0,9,2,1,493,689767.06,0,0,276.0423 -10039,12377,22509,22508,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.3996291,6.3460269,1,0,-9,35,0,-5,26.237238,0,0,0,74,3,3,3,3,2,2019,4,1,6,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3859067,6.5267067,0,3,59.599998,46.990002,57.330002,53.459999,6,1,1,0,0,9,2,1,493,689767.06,0,0,276.0423 -10040,12378,22510,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,2,0,3.7646718,3.8365881,3,0,0,0,-9,0,-937.11731,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6672556,0,0,53.990002,16.17,-9,-9,5,4,5,0,0,8,1,0,507,-105303.01,0,0,832.7782 -10041,12379,22511,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,2,1,0,0,4,6.1143699,6.6573801,5.625948,3,0,0,0,-9,0,-1223.0211,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,3,0,15,1,0,-9,0,16.353289,16.353289,1,0,0,0,0,0,0,2,1,1,0,.94921976,5.8820615,1.6698937,3,59.139999,52.5,-9,-9,6,1,1,0,0,7,2,1,508,354435.94,0,0,987.07635 -10042,12380,22512,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,8.7495537,8.5241785,0,3,0,0,0,-9,0,-1011.4669,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,37,37,15,1,0,-9,0,12.115081,12.115081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,1,5,1,1194,80300.609,0,0,1783.9148 -10043,12381,22513,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,2,1,0,0,3,8.0862741,7.992084,0,3,0,0,0,-9,0,-1008.8314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,43,42,15,1,0,-9,0,7.9513378,7.9513378,0,0,0,0,0,0,0,0,1,1,0,3.2149947,0,0,0,51.169998,49.389999,-9,-9,4,2,3,0,0,2,4,1,224,2213.353,0,0,181.80731 -10044,12382,22514,22515,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,8.1634054,8.534462,1,0,-9,47,0,1,-104.53025,-9,0,0,67,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.637526,8.0337181,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,6,4,1,282.5,1850500.3,0,0,5202.2637 -10044,12382,22515,22514,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.5017886,7.8870039,1,0,-9,47,0,-1,10.43932,0,0,0,68,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9964771,7.6086349,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,6,4,1,282.5,1850500.3,0,0,5202.2637 -10045,12383,22516,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,0,3,0,7.7834058,7.2021623,3,0,0,0,-9,0,-1023.6552,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7529325,7.6870465,0,0,45.57,53.5,-9,-9,6,1,1,0,0,6,3,1,1701,106150.31,0,0,2044.2272 -10046,12384,22517,22518,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,4.4405823,4.279747,1,0,-9,46,0,-4,-5.0844741,0,0,0,72,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3996887,4.550231,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,9,4,1,2355.5,1766862.4,0,0,6112.501 -10046,12384,22518,22517,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,8.6466599,8.5593615,1,0,-9,46,0,4,99.995834,0,0,0,68,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8316631,8.3892317,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,9,4,1,2355.5,1766862.4,0,0,6112.501 -10047,12385,22519,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,4.227119,3.8297489,3,0,0,0,-9,0,-1127.027,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2774439,3.9048922,0,0,42.970001,37.400002,-9,-9,5,1,1,0,0,10,2,1,214,-51624.262,0,0,1406.0895 -10048,12386,22520,22521,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,3,7.3780594,7.7540851,0,2,0,-9,23,0,5,-45.104149,0,0,0,48,1,3,1,2,2,2019,1,2,2,0,8,40,15,1,0,1,0,31.445181,31.445181,0,0,0,0,0,0,0,0,1,1,0,.12757201,0,0,0,59.700001,53.75,38.119999,56.740002,7,2,3,0,0,8,5,1,636,487152.16,0,0,3794.4773 -10048,12386,22521,22520,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,3,9.1604347,8.7168446,0,2,0,-9,25,0,-5,25.726316,0,0,0,53,2,3,1,2,2,2019,1,1,10,0,55,40,15,1,0,1,0,16.417215,16.417215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.119999,56.740002,59.700001,53.75,3,2,3,0,0,8,5,1,636,487152.16,0,0,3794.4773 -10048,12386,22522,-9,22521,22520,5,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.7428,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,5,1,636,487152.16,0,0,3794.4773 -10048,12387,22523,-9,22521,22520,3,1,1,24,2,0,1,0,1,-9,2,1,0,0,4,8.0255404,7.6893115,0,3,0,0,0,-9,0,-1044.188,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,25,15,1,0,-9,1,12.172832,12.172832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,55.389999,-9,-9,6,2,3,0,0,8,3,1,313,241772.94,0,0,1157.3032 -10048,12388,22524,-9,22521,22520,4,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,6.7741852,6.5434675,0,3,0,0,0,-9,0,-960.3291,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,16,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.35506472,0,0,0,36.330002,57.959999,-9,-9,5,2,3,0,0,8,2,1,500,-211878.66,0,0,551.6571 -10049,12389,22525,22526,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,3,8.1920938,8.1518192,2.6998909,1,0,-9,34,0,-3,88.46122,0,0,0,68,1,5,1,3,2,2019,1,2,7,0,44,44,15,1,0,1,0,9.6623011,9.6623011,0,0,0,0,0,0,0,0,1,1,0,0,3.1080742,0,0,48.98,57.220001,57.060001,57.759998,6,1,1,0,0,7,5,1,2103.5,3182413.5,0,0,5145.8174 -10049,12389,22526,22525,-9,-9,2,1,1,68,1,0,0,0,1,-9,1,1,0,0,5,8.4144764,8.5728178,6.9911127,1,0,-9,34,0,3,-9.014884,0,0,0,65,2,3,1,2,2,2019,1,1,5,0,42,35,15,1,0,1,0,11.287238,11.287238,0,0,0,0,0,0,0,0,1,1,0,3.5190818,7.0186234,0,0,57.060001,57.759998,48.98,57.220001,7,1,1,0,0,7,5,1,2103.5,3182413.5,0,0,5145.8174 -10050,12390,22527,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-913.77728,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,34,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.33,42.32,-9,-9,4,1,1,0,0,9,1,0,502,0,0,0,1452.6597 -10051,12391,22528,-9,-9,-9,1,1,0,79,2,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-901.34558,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,5.8611913,0,5.5441518,0,0,27.324095,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,1,1,0,377,127083.97,0,0,1017.241 -10052,12392,22529,22531,-9,-9,2,1,0,30,1,1,1,0,2,-9,5,1,0,0,4,8.0729208,8.3616619,0,2,0,-9,10,0,-13,71.881516,0,0,1,43,1,4,1,2,2,2019,1,1,11,2,22,37,15,1,0,1,0,25.000198,25.000198,0,0,0,0,0,0,0,0,1,1,0,2.5001276,0,0,0,48,57,46.5,58.259998,5,1,1,0,0,4,5,1,838.33331,389501.09,0,0,3746.8423 -10052,12392,22530,-9,22529,22531,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-891.57886,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,5,1,838.33331,389501.09,0,0,3746.8423 -10052,12392,22531,22529,-9,-9,1,1,1,43,1,1,1,0,1,-9,2,1,0,0,4,8.2386332,8.4008417,0,2,0,-9,10,0,13,-28.64642,0,0,0,30,2,4,1,2,1,2019,1,2,11,3,40,41,15,1,0,1,0,13.177911,13.177911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,48,57,7,1,1,0,0,4,5,1,838.33331,389501.09,0,0,3746.8423 -10053,12393,22532,22533,-9,-9,1,1,0,36,1,0,3,0,2,-9,2,1,0,0,3,7.2004414,6.8862662,0,2,0,-9,8,0,-8,-47.861012,0,0,1,44,2,3,1,-9,-9,2019,1,2,8,0,13,15,15,1,0,1,0,9.2093029,9.2093029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.490002,58.84,57.330002,53.459999,5,3,4,0,0,10,3,0,1007.25,235842.47,0,0,2560.8108 -10053,12393,22533,22532,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,0,3,7.9488125,7.9997935,0,2,0,-9,8,0,8,52.77496,0,0,0,36,2,3,1,-9,-9,2019,1,1,11,0,45,40,15,1,0,1,0,7.056787,7.056787,0,0,0,0,0,0,0,0,1,1,0,2.7175701,0,0,0,57.330002,53.459999,45.490002,58.84,6,1,1,0,0,10,3,0,1007.25,235842.47,0,0,2560.8108 -10053,12393,22534,-9,22532,22533,4,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-953.07373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,10,3,0,1007.25,235842.47,0,0,2560.8108 -10053,12393,22535,-9,22532,22533,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.066,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,3,0,1007.25,235842.47,0,0,2560.8108 -10053,12394,22536,-9,22532,22533,3,1,0,18,2,0,3,0,2,-9,7,2,0,0,3,6.6521325,7.1346912,0,3,0,0,0,-9,0,-934.56293,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,27,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.099998,41.16,-9,-9,5,4,2,0,0,10,3,0,357,0,0,0,1097.9048 -10054,12395,22537,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,7.1162152,7.1737366,3,0,0,0,-9,0,-1110.9279,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6834912,6.9527311,0,0,55.119999,44.799999,-9,-9,6,1,1,0,0,4,2,1,838,285314.59,0,0,1997.9335 -10055,12396,22538,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,1,1,0,7.5516419,7.3954644,3,0,0,0,-9,0,-1032.9385,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.2906571,7.8789382,17.426086,3,55.639999,14.41,-9,-9,5,1,1,0,0,7,3,1,284,1147461.5,0,0,871.03473 -10056,12397,22539,22540,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,0,4,8.5605011,8.3307323,0,1,0,-9,4,0,-7,46.118114,0,1,1,35,1,4,1,2,2,2019,1,2,11,2,43,49,15,1,0,1,0,11.236914,11.236914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.259998,51.77,58.57,6,1,1,0,0,7,5,1,794.5,74676.641,0,0,2844.2432 -10056,12397,22540,22539,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.1785088,8.3498135,0,1,0,-9,4,0,7,11.018528,0,0,0,28,2,4,1,-9,-9,2019,1,1,10,1,42,50,15,1,0,1,0,14.744562,14.744562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.5,58.259998,6,1,1,0,0,7,5,1,794.5,74676.641,0,0,2844.2432 -10057,12398,22541,-9,22545,22543,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.39978,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,1,2,1,717.79999,-17569.756,0,0,1953.8574 -10057,12398,22542,-9,22545,22543,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.13928,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,1,2,1,717.79999,-17569.756,0,0,1953.8574 -10057,12398,22543,22545,-9,-9,1,1,1,39,1,0,3,0,1,-9,2,1,0,0,3,7.316278,7.0550733,0,2,0,-9,16,0,0,-123.55634,0,0,0,39,1,4,3,2,2,2019,2,2,11,1,24,39,15,1,0,3,0,7.2584181,7.2584181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.009998,36.799999,49,56,4,2,3,0,0,1,2,1,717.79999,-17569.756,0,0,1953.8574 -10057,12398,22544,-9,22545,22543,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.99231,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,1,2,1,717.79999,-17569.756,0,0,1953.8574 -10057,12398,22545,22543,-9,-9,2,1,0,39,1,0,3,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,0,-98.162758,0,0,1,39,1,3,1,3,2,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,55.009998,36.799999,6,2,3,0,0,1,2,1,717.79999,-17569.756,0,0,1953.8574 -10058,12399,22546,22547,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,2.2718337,2.5042608,0,1,0,-9,9,0,-1,-43.073868,-9,0,0,58,3,5,1,-9,-9,2019,1,1,6,0,12,0,15,1,0,1,0,.078767337,.078767337,0,0,0,0,0,0,0,7,0,0,0,0,0,7.4163237,3,56.580002,49.75,62.389999,56.709999,6,1,1,0,0,2,5,1,786,736740.5,0,0,7449.1709 -10058,12399,22547,22546,-9,-9,1,1,1,58,1,0,0,0,3,-9,1,1,0,0,5,9.7378607,9.3848162,0,1,0,-9,40,0,1,85.165222,0,0,0,57,2,4,1,3,3,2019,1,2,0,0,50,60,15,1,0,1,0,38.663204,38.663204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,56.580002,49.75,7,1,1,0,0,2,5,1,786,736740.5,0,0,7449.1709 -10059,12400,22548,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1075.1735,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,-9,-9,5,1,1,0,0,4,1,0,800,-116744.89,0,0,818.78186 -10060,12401,22549,-9,-9,-9,1,1,1,36,2,0,0,0,3,-9,2,1,0,0,5,7.4654636,7.4659505,0,3,0,0,0,-9,0,-1017.2377,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,41,41,15,1,0,-9,0,6.275198,6.275198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.07,63.369999,-9,-9,7,1,1,0,0,9,3,0,317,123951.06,0,0,1799.072 -10061,12402,22550,-9,22553,22551,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.5286,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,8,5,0,344.25,748830.56,0,0,4967.9775 -10061,12402,22551,22553,-9,-9,2,1,1,44,1,1,2,0,2,-9,2,1,0,0,4,8.6869764,8.6920357,0,2,0,-9,4,0,2,-54.821316,0,0,0,42,1,3,1,1,1,2019,1,1,9,0,45,45,15,1,0,1,0,16.628048,16.628048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,60,41.18,6,3,4,0,0,8,5,0,344.25,748830.56,0,0,4967.9775 -10061,12402,22552,-9,22553,22551,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.0643,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,5,0,344.25,748830.56,0,0,4967.9775 -10061,12402,22553,22551,-9,-9,1,1,0,42,1,1,2,0,1,-9,2,1,0,0,3,8.3260498,8.7061434,0,2,0,-9,4,0,-2,51.79277,0,0,1,44,2,4,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,18.870865,18.870865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60,41.18,52.43,55.57,6,1,1,0,0,8,5,0,344.25,748830.56,0,0,4967.9775 -10062,12403,22554,22555,-9,-9,2,1,0,40,1,0,0,0,2,-9,1,1,0,0,5,7.1958513,7.2431116,0,1,0,-9,11,0,-7,98.198273,0,0,1,47,2,5,1,2,2,2019,1,1,12,2,25,40,15,1,0,1,0,5.5906372,5.5906372,0,0,0,0,0,0,0,0,0,0,0,1.255582,0,0,0,51.669998,60.18,51.139999,60.450001,6,1,1,0,0,5,3,1,354,846591.25,0,0,2654.0105 -10062,12403,22555,22554,-9,-9,1,1,1,47,1,0,0,0,2,-9,1,1,0,0,5,6.8329911,7.6652431,7.0784636,1,0,-9,11,0,7,-6.9659476,0,0,0,40,2,5,1,2,2,2019,1,2,8,0,20,10,15,1,0,1,0,4.7587013,4.7587013,0,0,0,0,0,0,0,0,0,0,0,7.5999441,7.0435886,0,0,51.139999,60.450001,51.669998,60.18,6,1,1,0,0,5,3,1,354,846591.25,0,0,2654.0105 -10063,12404,22556,22557,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,4,-12.638321,0,0,0,72,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.162061,0,0,0,57.330002,53.459999,58.299999,52.91,6,1,1,0,0,5,2,1,1124.5,384338.06,0,0,114.13273 -10063,12404,22557,22556,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,5.2954288,5.640327,0,1,0,-9,54,0,-4,-39.115982,0,0,0,76,3,3,3,2,2,2019,4,2,6,0,15,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8318021,0,0,0,58.299999,52.91,57.330002,53.459999,6,1,1,0,0,5,2,1,1124.5,384338.06,0,0,114.13273 -10064,12405,22558,-9,-9,-9,1,1,0,47,2,0,1,0,3,-9,1,1,0,0,3,6.9152551,6.9509892,0,4,0,0,0,-9,0,-1123.4702,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,17,18,15,1,1,-9,0,5.7076445,5.7076445,0,0,0,0,0,0,0,2,1,1,0,0,0,8.3404341,3,41.490002,38.990002,-9,-9,2,4,2,0,1,8,2,0,548.5,-66784.063,0,0,2944.7817 -10064,12405,22559,-9,22558,-9,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-965.14117,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,4,2,0,0,8,2,0,548.5,-66784.063,0,0,2944.7817 -10064,12406,22560,-9,22558,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,0,2,7.1040778,7.0472908,0,3,0,0,0,-9,0,-981.71576,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,33,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,49.110001,-9,-9,5,4,2,0,0,8,3,0,208,-189774.5,0,0,287.82611 -10065,12407,22561,22562,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.8693905,9.1164389,0,1,0,-9,8,0,1,-149.52324,0,0,0,31,1,4,1,2,2,2019,1,2,11,0,42,41,15,1,0,1,0,22.618183,22.618183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,5,1,1,0,0,4,5,1,1470.5,188987.88,0,0,5458.6553 -10065,12407,22562,22561,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,8.8172283,9.0398769,0,1,0,-9,8,0,-1,-115.97293,0,0,1,32,1,4,1,2,2,2019,1,1,2,0,60,53,15,1,0,1,0,14.71636,14.71636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,4,5,1,1470.5,188987.88,0,0,5458.6553 -10066,12408,22563,-9,22564,22565,4,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1038.1953,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,9,2,0,636.5,173513.72,0,0,2692.2427 -10066,12408,22564,22565,-9,-9,2,1,0,41,1,1,4,0,2,-9,5,1,0,0,4,7.5439792,7.4150815,0,2,0,-9,6,-9,1,92.258949,-9,0,1,40,1,4,2,2,1,2019,2,1,6,0,22,0,15,1,0,2,0,8.9986124,8.9986124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,5,3,4,0,0,9,2,0,636.5,173513.72,0,0,2692.2427 -10066,12408,22565,22564,-9,-9,1,1,1,40,1,1,4,0,1,-9,7,2,0,0,4,0,0,0,2,0,-9,5,-9,-1,59.202679,-9,0,0,41,2,4,1,3,2,2019,3,2,10,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,4,4,2,0,0,9,2,0,636.5,173513.72,0,0,2692.2427 -10066,12408,22566,-9,22564,22565,5,1,1,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-966.60938,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,2,0,636.5,173513.72,0,0,2692.2427 -10066,12408,22567,-9,22564,22565,3,1,0,16,2,1,4,1,3,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-967.40308,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,5,3,4,0,0,9,2,0,636.5,173513.72,0,0,2692.2427 -10066,12408,22568,-9,22564,22565,6,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1050.2631,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,2,0,636.5,173513.72,0,0,2692.2427 -10067,12409,22569,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,4,9.120388,8.7213697,0,3,0,0,0,-9,0,-1026.1328,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,48,0,15,1,0,-9,0,17.347794,17.347794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.459999,47.200001,-9,-9,2,1,1,0,0,8,5,0,255,97001.242,0,0,2169.2449 -10068,12410,22570,22571,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.5361862,8.2405205,5.7199173,2,0,-9,6,0,-4,7.6915827,0,0,1,41,2,3,1,2,-9,2019,1,1,12,0,45,48,15,1,0,1,0,13.28487,13.28487,0,0,0,0,0,0,0,0,1,1,0,5.8208122,0,0,0,45.400002,56.189999,57.330002,53.459999,5,1,1,0,0,2,4,1,540.5,294197.88,0,0,3781.2705 -10068,12410,22571,22570,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,3,8.1298885,8.3728456,0,2,0,-9,6,0,4,76.113632,0,0,0,37,1,4,1,-9,2,2019,1,2,6,0,38,37,15,1,0,1,0,10.602112,10.602112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,45.400002,56.189999,6,1,1,0,0,2,4,1,540.5,294197.88,0,0,3781.2705 -10068,12410,22572,-9,22570,22571,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1028.3616,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,2,4,1,540.5,294197.88,0,0,3781.2705 -10068,12410,22573,-9,22570,22571,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.23224,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,4,1,540.5,294197.88,0,0,3781.2705 -10069,12411,22574,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,4,3,0,0,4,0,7.9866605,8.1800861,3,0,0,0,-9,0,-884.83435,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1915135,7.9338441,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,4,1,504,261234.55,0,0,2634.8337 -10070,12412,22575,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,2,0,4.0469694,4.2564611,3,0,0,0,-9,0,-1075.6254,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,32,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1032119,4.0354733,0,0,37.450001,38.380001,-9,-9,3,1,1,0,0,4,2,1,1909,263399.38,0,0,1422.376 -10071,12413,22576,22577,-9,-9,1,1,1,42,1,0,2,0,2,-9,1,1,0,0,4,8.8171511,8.9804316,0,2,0,-9,8,0,2,228.88365,0,0,0,40,3,1,3,3,3,2019,2,2,8,0,54,39,15,1,0,3,0,15.815272,15.815272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,47.220001,23.25,5,1,1,0,0,1,4,1,297.25,473293.41,0,0,3721.4758 -10071,12413,22577,22576,-9,-9,2,1,0,40,1,0,2,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,8,0,-2,-58.38929,0,0,1,42,2,4,1,-9,-9,2019,3,1,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.220001,23.25,54.200001,57.490002,4,1,1,0,1,1,4,1,297.25,473293.41,0,0,3721.4758 -10071,12413,22578,-9,22577,22576,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.0027,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,4,1,297.25,473293.41,0,0,3721.4758 -10071,12413,22579,-9,22577,22576,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.44067,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,297.25,473293.41,0,0,3721.4758 -10072,12414,22580,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,5,0,6.3666945,6.1032529,3,0,0,0,-9,0,-1062.1622,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2798452,6.7655125,0,0,51.369999,54.779999,-9,-9,6,1,1,0,0,5,2,0,351,196832.14,0,0,1162.3085 -10073,12415,22581,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,4,8.8462772,9.4381561,0,3,0,0,0,-9,0,-1048.3323,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,37,15,1,0,-9,0,22.592453,22.592453,0,0,0,0,0,0,0,0,1,1,0,7.36095,0,0,0,58.150002,52.91,-9,-9,5,1,1,0,0,6,5,1,727,1069973,0,0,5180.7495 -10074,12416,22582,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,6.3153672,6.4362879,3,0,0,0,-9,0,-1021.2084,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4894204,6.3957176,0,0,52.34,56.950001,-9,-9,6,1,1,0,0,10,2,1,229,91952.063,0,0,1519.6383 -10075,12417,22583,-9,-9,-9,1,1,1,51,3,0,0,0,1,-9,2,1,0,0,3,9.013689,8.7459269,0,3,0,0,0,-9,0,-995.02344,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,0,42,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.59,51.939999,-9,-9,4,1,1,0,0,11,5,1,941,811236.69,0,0,2732.9153 -10076,12418,22584,22585,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.3783369,7.9330454,0,1,0,-9,7,0,1,-5.9499083,0,0,0,51,2,4,1,3,2,2019,1,2,7,0,37,37,15,1,0,1,0,7.2651129,7.2651129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,40.48,60.049999,6,1,1,0,0,9,4,1,343,351210.16,0,0,2711.5322 -10076,12418,22585,22584,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.9200802,8.4524021,0,1,0,-9,7,0,-1,84.075333,0,0,0,52,2,4,1,2,3,2019,1,1,17,6,37,37,15,1,1,1,0,11.40187,11.40187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.049999,54.200001,57.490002,5,1,1,0,0,9,4,1,343,351210.16,0,0,2711.5322 -10076,12419,22586,-9,22585,22584,3,1,0,19,2,0,0,0,2,1,2,1,0,0,4,7.3765583,7.6081481,0,3,0,0,0,-9,0,-1112.7063,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,0,15,1,0,-9,1,5.4469924,5.4469924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,3,1,10700,-139545.66,0,0,378.56268 -10077,12420,22587,22591,-9,-9,1,1,0,37,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-7,-44.180199,0,0,1,44,2,4,1,3,2,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.195292,3,49,56,52,55,5,2,3,0,0,8,2,0,375.79999,-45886.793,0,0,852.38544 -10077,12420,22588,-9,22587,22591,4,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.0856,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,0,375.79999,-45886.793,0,0,852.38544 -10077,12420,22589,-9,22587,22591,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.8549,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,375.79999,-45886.793,0,0,852.38544 -10077,12420,22590,-9,22587,22591,6,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.1563,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,375.79999,-45886.793,0,0,852.38544 -10077,12420,22591,22587,22592,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,5.8812127,5.7409778,0,2,0,-9,7,0,7,93.571091,0,0,0,37,3,4,3,3,3,2019,2,1,9,1,24,0,15,1,0,3,0,1.5130005,1.5130005,0,0,0,0,0,0,0,2,1,1,0,0,0,.38158461,3,52,55,49,56,6,2,3,0,0,8,2,0,375.79999,-45886.793,0,0,852.38544 -10077,12421,22592,-9,-9,-9,3,1,0,78,3,0,3,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1054.7078,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,8,1,0,990,0,0,0,1410.2084 -10078,12422,22593,22594,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.2423377,7.2266283,0,1,0,-9,44,0,-4,-22.910103,-9,0,0,64,2,2,3,3,3,2019,2,1,6,0,24,0,15,1,0,3,0,6.8911386,6.8911386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,46.580002,42.880001,39.09,4,1,1,0,0,12,2,0,610,198095.11,0,0,1692.5609 -10078,12422,22594,22593,-9,-9,1,1,1,64,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,44,0,4,45.413326,0,0,0,60,2,3,1,2,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.880001,39.09,60.299999,46.580002,5,1,1,0,0,12,2,0,610,198095.11,0,0,1692.5609 -10079,12423,22595,22596,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,8.248333,8.1042681,0,1,0,-9,4,0,2,-57.625942,0,0,1,28,2,4,1,-9,-9,2019,1,1,17,5,43,42,15,1,1,1,0,12.078954,12.078954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.360001,45.439999,56.330002,40.290001,4,1,1,0,0,6,5,0,265,191028,0,0,3378.4038 -10079,12423,22596,22595,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.1205835,8.2489443,0,1,0,-9,4,0,-2,-20.443504,0,1,0,30,2,3,1,-9,-9,2019,1,2,6,0,40,38,15,1,0,1,0,10.057033,10.057033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.330002,40.290001,33.360001,45.439999,6,1,1,0,0,6,5,0,265,191028,0,0,3378.4038 -10080,12424,22597,-9,-9,-9,1,1,0,38,2,0,2,0,2,0,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-853.99976,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.184864,3,35.790001,57.009998,-9,-9,5,1,1,0,1,6,1,0,829.66669,71349.852,0,0,1845.5886 -10080,12424,22598,-9,22597,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-961.1532,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,6,1,0,829.66669,71349.852,0,0,1845.5886 -10080,12424,22599,-9,22597,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-954.85968,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,6,1,0,829.66669,71349.852,0,0,1845.5886 -10081,12425,22600,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,1,1,0,0,3,6.931694,7.2432423,0,3,0,-9,0,-9,0,-1007.5049,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,60,0,15,1,0,-9,0,2.419621,2.419621,0,0,0,0,0,0,0,0,0,0,0,7.4943571,0,0,0,49,50,-9,-9,5,1,1,0,0,6,2,1,388,28152.365,0,0,1354.7449 -10082,12426,22601,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,5,9.0554256,9.0594215,0,3,0,0,0,-9,0,-955.90228,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,70,77,15,1,0,-9,0,14.613083,14.613083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,4,5,1,649,510237.03,0,0,3532.0688 -10083,12427,22602,22604,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,3,8.4065647,8.9332504,0,2,0,-9,15,0,2,8.466136,0,0,1,38,1,4,1,2,1,2019,1,2,11,2,38,37,15,1,0,1,0,19.352734,19.352734,0,0,0,0,0,0,0,0,1,1,0,3.5465648,0,0,0,44.200001,34.950001,51,56,2,2,3,0,0,7,5,1,2169.6667,785534.25,0,0,3846.6782 -10083,12427,22603,-9,22602,22604,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.13794,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,5,1,2169.6667,785534.25,0,0,3846.6782 -10083,12427,22604,22602,-9,-9,2,1,1,38,1,0,1,0,1,-9,2,1,0,0,4,8.1359606,8.0396185,0,2,0,-9,6,0,-2,82.335373,0,0,0,40,2,3,1,-9,-9,2019,1,1,9,1,37,40,15,1,0,1,0,9.6377134,9.6377134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,44.200001,34.950001,5,2,3,0,0,7,5,1,2169.6667,785534.25,0,0,3846.6782 -10084,12428,22605,22606,-9,-9,2,1,1,45,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,22,0,-7,72.755638,-9,0,0,52,1,2,1,-9,-9,2019,3,1,32,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.57,16.200001,16.75,44.009998,1,1,1,0,1,4,3,0,585,142518.47,0,0,1700.4645 -10084,12428,22606,22605,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,2,8.1330204,7.8728948,0,1,0,-9,23,0,7,71.394058,-9,0,0,45,2,1,3,3,3,2019,2,2,29,11,37,0,15,1,1,3,0,8.4921322,8.4921322,0,0,0,0,0,0,0,89,1,1,0,0,0,117.1405,1,16.75,44.009998,33.57,16.200001,1,1,1,0,1,4,3,0,585,142518.47,0,0,1700.4645 -10085,12429,22607,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,1,2,6.828835,6.666894,0,3,0,0,0,-9,0,-952.44543,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,20,20,15,1,1,-9,0,4.8164835,4.8164835,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.124409,3,39.389999,37.66,-9,-9,3,1,1,0,1,7,2,0,704,202588.83,0,0,2709.8103 -10086,12430,22608,-9,-9,-9,1,1,0,21,2,0,0,0,2,1,3,3,0,0,5,0,0,0,1,0,1,1,-9,-3,0,-9,1,1,-9,-9,-9,-9,2,-9,2019,4,2,8,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.42879,1,49.369999,43.5,27.83,47.860001,7,1,1,1,0,8,1,0,1429,0,0,0,1584.8339 -10086,12431,22609,-9,-9,-9,2,1,0,24,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,1,0,-9,1,-9,3,0,-9,1,1,-9,-9,-9,-9,-9,-9,2019,4,1,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.423111,2,27.83,47.860001,49.369999,43.5,6,1,1,1,0,8,1,0,411,-23439.859,0,0,81.664314 -10087,12432,22610,22611,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,0,4,5.1275549,5.5970607,0,1,0,-9,11,0,-4,-13.619982,0,0,0,63,1,5,1,1,1,2019,1,1,8,0,35,32,15,1,0,1,0,.5334633,.5334633,0,0,0,0,0,0,0,0,1,1,0,7.6034932,0,0,0,52.310001,58.290001,57.060001,57.759998,7,1,1,0,0,5,2,1,543.5,977066.5,0,0,2851.1084 -10087,12432,22611,22610,-9,-9,1,1,0,63,1,0,0,0,1,-9,1,1,0,0,5,0,7.4119067,7.5787835,1,0,-9,11,0,4,-31.526731,0,0,0,59,1,4,1,2,2,2019,1,2,3,0,35,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1809707,0,0,57.060001,57.759998,52.310001,58.290001,7,1,1,0,0,5,2,1,543.5,977066.5,0,0,2851.1084 -10088,12433,22612,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,6.918026,6.7725759,0,3,0,0,0,-9,0,-1029.2672,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,14,14,15,1,0,-9,0,9.6537085,9.6537085,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.950001,47.68,-9,-9,6,1,1,0,0,11,2,0,976,202311.72,0,0,320.63907 -10088,12434,22613,-9,22612,-9,2,1,1,32,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-984.34521,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,9,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.040001,40.400002,-9,-9,4,1,1,1,0,11,1,0,596,0,0,0,0 -10089,12435,22614,22615,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,1,8.5420399,8.3312769,0,1,0,-9,6,0,1,40.590168,0,0,0,56,2,4,1,-9,-9,2019,1,1,12,2,37,38,15,1,0,1,0,17.63975,17.63975,0,0,0,0,0,0,0,0,0,0,0,3.2449572,0,0,0,46.279999,28.950001,54.200001,57.490002,5,1,1,0,0,9,4,1,207.5,777221.63,0,0,2947.9644 -10089,12435,22615,22614,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.6962485,7.7916908,0,1,0,-9,41,0,-1,-57.741932,0,0,0,57,2,1,1,2,3,2019,1,2,9,0,28,31,15,1,0,1,0,8.5956345,8.5956345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,46.279999,28.950001,6,1,1,0,0,9,4,1,207.5,777221.63,0,0,2947.9644 -10089,12436,22616,-9,22615,22614,3,1,1,24,3,0,0,0,1,-9,2,1,0,0,2,7.7793179,7.7930546,0,3,0,0,0,-9,0,-983.76044,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,38,0,15,1,1,-9,1,7.1306281,7.1306281,0,0,0,0,0,0,0,0,0,0,0,.52082056,0,0,0,36.009998,59.369999,-9,-9,2,1,1,0,0,9,3,1,73,-44211.785,0,0,589.24823 -10090,12437,22617,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,1,1,0,0,3,9.8510971,9.6355991,6.71556,3,0,0,0,-9,0,-1164.387,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,50,46,15,1,0,-9,0,36.709549,36.709549,0,0,0,0,0,0,0,2,0,0,0,8.2172413,0,9.1015549,3,47.580002,53.709999,-9,-9,3,1,1,0,0,7,5,1,147,303604.03,0,0,5758.2251 -10091,12438,22618,22619,-9,-9,2,1,1,97,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,73,0,7,0,0,0,0,90,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3663745,0,0,0,57,43,46.98,33.150002,6,1,1,0,0,6,1,1,1197.5,0,0,0,234.53752 -10091,12438,22619,22618,-9,-9,1,1,0,90,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,73,0,-7,0,0,0,0,97,3,3,3,2,2,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5445623,0,0,0,46.98,33.150002,57,43,6,1,1,0,0,6,1,1,1197.5,0,0,0,234.53752 -10092,12439,22620,22621,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,6.7315121,6.7630138,1,0,-9,8,0,-1,-55.197422,0,0,0,75,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7160864,0,0,57.16,56.150002,48.689999,43.790001,6,1,1,0,0,13,2,1,639.5,-23133.52,0,0,1023.2703 -10092,12439,22621,22620,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,1,45.151928,0,0,0,74,3,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.689999,43.790001,57.16,56.150002,6,1,1,0,0,13,2,1,639.5,-23133.52,0,0,1023.2703 -10093,12440,22622,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,0,3,9.3530025,9.4605656,0,3,0,0,0,-9,0,-1042.9392,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,40,41,15,1,1,-9,0,42.574219,42.574219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.400002,57.459999,-9,-9,5,1,1,0,0,9,5,1,374,200593.3,0,0,5334.0747 -10094,12441,22623,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,3,8.0100918,7.5507407,4.38304,3,0,0,0,-9,0,-1048.2753,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,37,15,1,0,-9,0,7.3179779,7.3179779,0,0,0,0,0,0,0,0,0,0,0,0,4.5114384,0,0,50.93,39.919998,-9,-9,4,1,1,0,0,9,4,1,1029,664976.56,0,0,1220.6096 -10094,12442,22624,-9,22623,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,8.1840563,7.9099069,0,3,0,0,0,-9,0,-1028.4644,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,38,37,15,1,1,-9,1,9.9903059,9.9903059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.099998,59.990002,-9,-9,5,1,1,0,0,9,4,1,598,4944.8115,0,0,570.84814 -10095,12443,22625,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,1,0,7.1164522,7.2949119,3,0,0,0,-9,0,-1148.6857,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,4,1,-9,0,0,0,1,1.0336453,0,0,0,0,77.443947,0,1,1,0,7.2970796,7.1802125,0,0,34.450001,27.98,-9,-9,5,1,1,0,0,2,2,1,904,119688.01,0,0,655.79352 -10096,12444,22626,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,4,8.0495157,7.8527737,0,3,0,0,0,-9,0,-945.7771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,42,44,15,1,0,-9,0,9.8221951,9.8221951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,2,1,1,0,0,12,4,1,229,42691.594,0,0,1197.4331 -10097,12445,22627,-9,-9,-9,1,1,1,39,3,0,0,0,1,-9,2,1,0,0,3,9.6208715,9.4599943,0,3,0,0,0,-9,0,-992.47937,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,41,76,15,1,0,-9,0,36.441914,36.441914,0,0,0,0,0,0,0,0,0,0,0,3.8760815,0,0,0,53.610001,52.369999,-9,-9,4,2,3,0,0,7,5,1,103,377242.91,0,0,3329.0198 -10098,12446,22628,-9,-9,-9,1,1,0,68,2,0,0,0,3,-9,4,3,0,0,3,0,5.2877736,5.248487,3,0,0,0,-9,0,-1057.0999,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.2814541,0,0,0,0,0,0,1,1,0,0,5.3207417,0,0,36.93,44.75,-9,-9,6,1,1,0,0,9,2,1,457,806220.19,0,0,1045.8867 -10099,12447,22629,22630,-9,-9,1,1,0,59,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,43,0,-4,111.66834,0,0,0,63,2,3,1,3,2,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.110001,38.34,56.580002,45.490002,6,1,1,0,0,5,5,1,868,2286552.8,0,0,3631.0386 -10099,12447,22630,22629,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,0,3,9.0282307,9.0353374,0,1,0,-9,9,0,4,-46.64859,0,0,0,59,2,2,3,-9,-9,2019,2,1,9,0,70,65,15,1,0,3,0,13.252988,13.252988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.580002,45.490002,52.110001,38.34,6,1,1,0,0,5,5,1,868,2286552.8,0,0,3631.0386 -10100,12448,22631,22632,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.7391863,8.6811075,0,1,0,-9,12,0,4,.464333,0,0,0,26,2,3,1,2,2,2019,1,1,12,1,55,61,15,1,0,1,0,15.700842,15.700842,0,0,0,0,0,0,0,0,0,0,0,.15057236,0,0,0,48.869999,58.549999,37.630001,40.860001,6,1,1,0,0,10,5,1,278.5,914635.94,0,0,3041.6816 -10100,12448,22632,22631,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,3,8.331665,8.2234468,0,1,0,-9,12,0,-4,-27.736258,0,1,1,30,2,4,1,-9,2,2019,1,2,10,0,38,38,15,1,0,1,0,14.047545,14.047545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.630001,40.860001,48.869999,58.549999,5,1,1,0,0,10,5,1,278.5,914635.94,0,0,3041.6816 -10101,12449,22633,-9,-9,-9,1,1,1,88,3,0,0,0,1,-9,4,3,0,0,3,0,9.8361645,9.7059002,3,0,0,0,-9,0,-978.27802,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,7,0,0,15,4,1,-9,0,0,0,1,2.030503,0,0,0,0,57.61039,0,1,1,0,8.5361156,9.5210037,0,0,51.049999,46.91,-9,-9,5,1,1,0,0,10,5,1,861,1392167.8,0,0,9826.9541 -10102,12450,22634,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,8.136982,8.3820562,6.2317104,3,0,0,0,-9,0,-1164.9288,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,42,47,15,1,0,-9,0,9.5380497,9.5380497,0,0,0,0,0,0,0,0,1,1,0,6.6245279,0,0,0,51.830002,57.200001,-9,-9,3,1,1,0,0,8,5,1,795.5,827314,0,0,2305.5571 -10102,12450,22635,-9,22634,-9,2,1,1,17,2,0,0,0,2,-9,11,3,0,0,3,6.6562195,6.9098201,0,3,0,0,0,-9,0,-932.13306,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,24,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.45781845,0,0,0,22.59,65.419998,-9,-9,2,1,1,0,0,8,5,1,795.5,827314,0,0,2305.5571 -10103,12451,22636,-9,22637,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-942.96173,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,4,1,651.66669,201129.53,0,0,4236.2993 -10103,12451,22637,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,0,4,8.4808836,8.9756069,7.6616817,4,0,0,0,-9,0,-1073.6777,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,45,50,15,1,0,-9,0,12.559008,12.559008,0,0,0,0,0,0,0,0,1,1,0,7.2694855,0,0,0,55.759998,52.639999,-9,-9,6,1,1,0,0,8,4,1,651.66669,201129.53,0,0,4236.2993 -10103,12451,22638,-9,22637,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1116.2532,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.26179031,0,0,0,46,59,-9,-9,5,1,1,0,0,8,4,1,651.66669,201129.53,0,0,4236.2993 -10103,12452,22639,-9,22637,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,0,4,7.0269184,7.0691328,0,3,0,0,0,-9,0,-902.32867,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1778781,0,0,0,48,59,-9,-9,5,1,1,0,0,8,2,1,486,-120060.37,0,0,919.39783 -10104,12453,22640,-9,22642,22645,3,1,1,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.7463,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,4,1,855.16669,179322.95,0,0,4452.5449 -10104,12453,22641,-9,22642,22645,5,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.627,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,4,1,855.16669,179322.95,0,0,4452.5449 -10104,12453,22642,22645,-9,-9,2,1,0,37,1,0,4,0,1,-9,6,3,0,0,2,6.9779706,6.8581924,0,2,0,-9,15,0,-1,12.603556,0,0,1,38,1,3,1,3,3,2019,3,1,7,0,16,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.459999,48.330002,36.369999,61.5,6,2,3,0,0,7,4,1,855.16669,179322.95,0,0,4452.5449 -10104,12453,22643,-9,22642,22645,4,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.7702,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,7,4,1,855.16669,179322.95,0,0,4452.5449 -10104,12453,22644,-9,22642,22645,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.51935,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,4,1,855.16669,179322.95,0,0,4452.5449 -10104,12453,22645,22642,-9,-9,1,1,1,38,1,0,4,0,1,-9,2,1,0,0,3,8.813241,9.0031929,0,2,0,-9,16,0,1,-130.56956,0,0,0,37,1,2,3,3,3,2019,2,2,14,2,37,40,15,1,0,3,0,19.517981,19.517981,0,0,0,0,0,0,0,0,1,1,0,6.7748251,0,0,0,36.369999,61.5,51.459999,48.330002,6,2,3,0,0,7,4,1,855.16669,179322.95,0,0,4452.5449 -10105,12454,22646,22648,-9,-9,2,1,1,40,1,1,1,0,1,-9,2,1,0,0,4,8.7620478,9.0206356,0,2,0,-9,6,0,6,-13.563572,0,0,0,34,1,4,1,-9,-9,2019,1,1,9,1,37,38,15,1,0,1,0,20.025801,20.025801,0,0,0,0,0,0,0,0,1,1,0,2.8337913,0,0,0,51,56,51.830002,57.200001,6,1,1,0,0,10,5,1,320.66666,527253.56,0,0,6221.3716 -10105,12454,22647,-9,22648,22646,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1063.9019,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,5,1,320.66666,527253.56,0,0,6221.3716 -10105,12454,22648,22646,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,8.3084135,8.3709211,0,2,0,-9,6,0,-6,-46.095104,0,0,1,40,1,4,1,1,2,2019,1,2,7,1,43,45,15,1,0,1,0,11.884842,11.884842,0,0,0,0,0,0,0,0,1,1,0,7.7691588,0,0,0,51.830002,57.200001,51,56,6,1,1,0,0,10,5,1,320.66666,527253.56,0,0,6221.3716 -10106,12455,22649,22650,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,4.892972,4.6661911,1,0,-9,49,0,1,23.837002,0,0,0,65,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9903235,4.8564219,17.083422,3,58.470001,50.220001,59.459999,46.990002,7,1,1,0,0,5,4,1,233.5,1706281.3,0,0,4900.876 -10106,12455,22650,22649,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,8.4348116,8.5933065,1,0,-9,49,0,-1,89.921577,0,0,0,66,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.9776089,8.4888964,15.486281,3,59.459999,46.990002,58.470001,50.220001,2,1,1,0,0,5,4,1,233.5,1706281.3,0,0,4900.876 -10107,12456,22651,22652,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.1311841,6.8757186,1,0,-9,9,0,23,-59.245777,0,0,0,45,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0900736,12.287617,3,63.560001,36.869999,49.279999,51.529999,6,1,1,0,0,8,2,0,990.5,434345.66,0,0,1476.408 -10107,12456,22652,22651,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,9,0,-23,6.3902497,0,0,0,68,2,3,3,2,3,2019,2,1,7,0,0,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.303686,3,49.279999,51.529999,63.560001,36.869999,5,1,1,0,0,8,2,0,990.5,434345.66,0,0,1476.408 -10107,12457,22653,-9,22652,22651,3,1,1,18,2,0,0,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1061.8268,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.1908994,3,44.939999,53.43,-9,-9,6,1,1,0,0,8,1,0,240,222123.45,0,0,0 -10108,12458,22654,22655,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,8.0643349,8.1696377,0,1,0,-9,5,0,-10,29.898748,0,0,0,65,2,3,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,9.0286341,9.0286341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,52.09,59.310001,49.810001,5,1,1,0,0,7,4,1,563,942320.63,0,0,2928.8604 -10108,12458,22655,22654,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,3,0,7.7492585,8.0530052,1,0,-9,5,0,10,-76.959557,0,0,0,55,2,2,1,3,3,2019,1,2,5,0,0,36,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0980449,7.6474948,0,0,59.310001,49.810001,49.279999,52.09,2,1,1,0,0,7,4,1,563,942320.63,0,0,2928.8604 -10109,12459,22656,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,3,7.4685664,7.5950317,6.623064,4,0,-9,0,-9,0,-1052.8406,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,23,0,15,1,0,-9,0,9.7402039,9.7402039,0,0,0,0,0,0,0,0,1,1,0,0,6.9114585,0,0,46.080002,57.200001,-9,-9,6,1,1,0,0,13,3,1,459,198551.33,0,0,2177.6287 -10110,12460,22657,-9,-9,-9,1,1,0,38,3,0,0,0,2,-9,2,1,0,0,2,7.4020777,7.5687485,0,3,0,-9,0,-9,0,-1043.8495,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,31,11,24,0,15,1,1,-9,0,8.8064232,8.8064232,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.469999,39.98,-9,-9,2,1,1,0,1,10,3,0,261,19004.855,0,0,1530.8839 -10111,12461,22658,22659,-9,-9,1,1,0,35,1,1,3,0,2,-9,2,1,0,0,4,7.2913127,7.3589301,0,2,0,-9,10,0,-5,67.525574,0,0,1,40,2,3,1,2,-9,2019,1,2,10,0,25,25,15,1,0,1,0,5.4513178,5.4513178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,35.299999,49.610001,7,1,1,0,0,2,4,1,862.5,86672.875,0,0,3058.3889 -10111,12461,22659,22658,-9,-9,2,1,1,40,1,1,3,0,2,-9,2,1,0,0,3,8.5572033,8.5929937,0,2,0,-9,10,0,5,-29.582228,0,0,0,35,2,4,1,3,-9,2019,1,1,11,1,50,40,15,1,0,1,0,13.163036,13.163036,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,35.299999,49.610001,54.200001,57.490002,5,1,1,0,0,2,4,1,862.5,86672.875,0,0,3058.3889 -10111,12461,22660,-9,22658,22659,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-988.21619,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,2,4,1,862.5,86672.875,0,0,3058.3889 -10111,12461,22661,-9,22658,22659,4,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.1972,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,862.5,86672.875,0,0,3058.3889 -10112,12462,22662,22664,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,2,8.8547001,9.0907097,0,2,0,-9,3,0,2,39.926186,0,0,0,43,2,3,1,3,2,2019,1,1,14,5,47,50,15,1,1,1,0,21.082394,21.082394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.33,53.810001,57.330002,53.459999,4,1,1,0,0,7,4,1,399.25,203081.45,0,0,3917.0537 -10112,12462,22663,-9,22664,22662,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.70178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,399.25,203081.45,0,0,3917.0537 -10112,12462,22664,22662,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,3,7.649014,7.3916888,0,2,0,-9,3,0,-2,140.3334,0,0,1,45,2,2,1,2,2,2019,1,2,8,0,30,25,15,1,0,1,0,6.3562589,6.3562589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,31.33,53.810001,2,1,1,0,0,7,4,1,399.25,203081.45,0,0,3917.0537 -10112,12462,22665,-9,22664,22662,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.9068,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,399.25,203081.45,0,0,3917.0537 -10113,12463,22666,22667,-9,-9,2,1,1,48,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,27,0,5,-69.187553,0,0,0,43,2,2,1,3,3,2019,3,1,33,12,0,28,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.1400003,38.560001,25.07,38.880001,1,2,3,0,1,10,2,1,1003.3333,-44833.227,0,0,1149.9972 -10113,12463,22667,22666,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,2,6.0541778,6.2888513,0,2,0,-9,27,0,-5,21.815477,0,0,1,48,2,1,3,3,-9,2019,2,2,22,8,6,25,15,1,1,3,0,8.4413481,8.4413481,0,0,0,0,0,0,0,74.5,1,1,0,0,0,82.805283,1,25.07,38.880001,8.1400003,38.560001,5,2,3,0,1,10,2,1,1003.3333,-44833.227,0,0,1149.9972 -10113,12463,22668,-9,22667,22666,5,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.6056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,10,2,1,1003.3333,-44833.227,0,0,1149.9972 -10113,12464,22669,-9,22667,22666,4,1,0,19,2,0,1,0,2,1,2,1,0,0,3,6.0002069,6.0592027,0,3,0,0,0,-9,0,-971.2475,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,24,0,15,1,0,-9,1,1.8655236,1.8655236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.860001,41.689999,-9,-9,4,2,3,0,0,10,2,1,873,-95832.141,0,0,624.69702 -10114,12465,22670,-9,22672,22673,6,1,1,17,2,0,4,1,-9,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1098.1925,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.440002,44.279999,-9,-9,7,2,3,0,0,8,2,1,443.33334,50355.438,0,0,3860.874 -10114,12465,22671,-9,22672,22673,4,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.349,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,2,1,443.33334,50355.438,0,0,3860.874 -10114,12465,22672,22673,-9,-9,2,1,0,39,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,18,0,-5,-61.460346,0,0,1,44,3,5,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,42.380001,47.779999,53.91,6,2,3,0,0,8,2,1,443.33334,50355.438,0,0,3860.874 -10114,12465,22673,22672,-9,-9,1,1,1,44,1,0,4,0,3,-9,1,1,0,0,5,7.9809542,7.6642342,0,2,0,-9,18,0,5,-34.031475,0,0,0,39,2,3,3,-9,-9,2019,2,2,11,0,45,49,15,1,0,3,0,6.4675636,6.4675636,0,0,0,0,0,0,0,0,1,1,0,7.5619764,0,0,0,47.779999,53.91,57.66,42.380001,5,1,1,0,0,8,2,1,443.33334,50355.438,0,0,3860.874 -10114,12465,22674,-9,22672,22673,5,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.67163,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,2,1,443.33334,50355.438,0,0,3860.874 -10114,12465,22675,-9,22672,22673,3,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.6694,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,8,2,1,443.33334,50355.438,0,0,3860.874 -10115,12466,22676,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,7.2457242,7.3120494,3,0,0,0,-9,0,-1079.3191,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,2.309871,0,5.4792871,0,27.365742,0,0,1,1,0,2.5008779,7.2818255,0,0,44.119999,36.549999,-9,-9,7,1,1,0,0,6,3,1,1401,266294.72,0,0,1778.6202 -10116,12467,22677,-9,22680,22681,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.86121,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,931.79999,3225718.3,0,0,6477.3286 -10116,12467,22678,-9,22680,22681,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.4448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,931.79999,3225718.3,0,0,6477.3286 -10116,12467,22679,-9,22680,22681,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1056.2599,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,9,5,1,931.79999,3225718.3,0,0,6477.3286 -10116,12467,22680,22681,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,0,4,8.8201494,9.0180645,0,2,0,-9,10,0,-12,126.89047,0,0,1,52,1,3,1,1,1,2019,1,2,7,0,46,50,15,1,0,1,0,23.022533,23.022533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,61.77,42.5,53.5,6,1,1,0,0,9,5,1,931.79999,3225718.3,0,0,6477.3286 -10116,12467,22681,22680,-9,-9,2,1,1,52,1,0,3,0,1,-9,2,1,0,0,3,9.2935133,9.2895508,0,2,0,-9,10,0,12,-163.61597,0,0,0,40,1,4,1,3,3,2019,1,1,23,11,50,45,15,1,1,1,0,23.54282,23.54282,0,0,0,0,0,0,0,0,0,0,0,1.7945427,0,0,0,42.5,53.5,41.59,61.77,5,1,1,0,0,9,5,1,931.79999,3225718.3,0,0,6477.3286 -10117,12468,22682,22683,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,5.4500246,8.4144726,8.3056068,1,0,-9,31,0,-3,35.964607,0,0,0,67,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0449152,8.3626814,0,0,60.119999,54.799999,56.740002,52.23,7,1,1,0,0,10,4,1,1554.5,2481500.8,0,0,4984.3726 -10117,12468,22683,22682,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.0065823,7.9200444,1,0,-9,31,0,3,134.73965,0,0,0,64,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6975303,7.6675978,0,0,56.740002,52.23,60.119999,54.799999,7,1,1,0,0,10,4,1,1554.5,2481500.8,0,0,4984.3726 -10118,12469,22684,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,1,0,5.7046623,5.3630233,3,0,0,0,-9,0,-946.66772,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,5.5267496,0,3,34.07,20.889999,-9,-9,3,1,1,0,0,12,2,0,754,-59385.492,0,0,1140.0173 -10119,12470,22685,22686,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,6.6626673,6.339695,0,2,0,-9,7,0,1,-43.772442,0,0,0,45,2,4,1,2,2,2019,1,2,7,0,13,0,15,1,0,1,0,6.9434853,6.9434853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,41.400002,48.57,7,1,1,0,0,5,3,1,507,56838.988,0,0,1392.6931 -10119,12470,22686,22685,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.1654844,7.8660159,0,2,0,-9,7,0,-1,-96.726494,0,0,0,46,2,4,1,2,2,2019,1,1,11,0,40,42,15,1,0,1,0,11.536697,11.536697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.400002,48.57,55.189999,54.259998,4,1,1,0,0,5,3,1,507,56838.988,0,0,1392.6931 -10119,12470,22687,-9,22685,22686,4,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1041.119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,5,3,1,507,56838.988,0,0,1392.6931 -10119,12471,22688,-9,22685,22686,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,6.0593839,6.1158423,0,3,0,0,0,-9,0,-1047.7999,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,9,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3134369,0,0,0,57.73,54.529999,-9,-9,7,1,1,0,0,5,2,1,883,-50555.469,0,0,220.84846 -10120,12472,22689,-9,22690,-9,2,1,0,17,2,0,2,1,3,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-929.78326,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61662108,0,0,0,35.380001,63.459999,-9,-9,5,1,1,0,0,10,4,1,669.66669,435699.47,0,0,4126.0986 -10120,12472,22690,-9,-9,-9,1,1,0,52,3,0,2,0,1,-9,2,1,0,0,3,7.9911637,8.4200792,7.3810182,4,0,0,0,-9,0,-945.19275,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,40,37,15,1,1,-9,0,11.792208,11.792208,0,0,0,0,0,0,0,0,1,1,0,8.2256994,0,0,0,25.120001,65.25,-9,-9,3,1,1,0,0,10,4,1,669.66669,435699.47,0,0,4126.0986 -10120,12472,22691,-9,22690,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-974.0686,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,4,1,669.66669,435699.47,0,0,4126.0986 -10121,12473,22692,-9,22693,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-955.57404,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.349998,59.990002,-9,-9,4,4,2,0,1,7,4,0,841.5,307830.88,0,0,2792.0659 -10121,12473,22693,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,3,8.6189365,8.3847723,0,4,0,-9,0,0,0,-937.85034,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,20,7,48,0,15,1,1,-9,0,12.683788,12.683788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.73,50.299999,-9,-9,2,4,2,0,1,7,4,0,841.5,307830.88,0,0,2792.0659 -10122,12474,22694,22695,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,7.2481141,7.6875687,0,1,0,-9,42,0,1,161.93642,0,0,0,60,2,3,1,3,3,2019,1,1,6,0,19,19,15,1,0,1,0,11.147729,11.147729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,52.91,32.880001,63.119999,6,1,1,0,0,5,5,1,1436.5,656244.38,0,0,2698.7119 -10122,12474,22695,22694,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.4421282,8.517457,0,1,0,-9,42,0,-1,-58.69426,0,0,0,61,2,4,1,3,3,2019,1,2,25,12,37,0,15,1,1,1,0,19.30744,19.30744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.880001,63.119999,58.299999,52.91,5,1,1,0,0,5,5,1,1436.5,656244.38,0,0,2698.7119 -10123,12475,22696,22697,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,1,0,6.2455339,6.6287084,1,0,-9,52,0,0,33.018063,0,0,0,71,2,2,3,3,3,2019,4,2,21,9,0,0,15,4,1,4,0,0,0,1,2.881295,9.3851404,0,0,7.2271948,56.040497,120,1,1,0,0,6.4552617,121.9417,1,33.529999,17.549999,47.869999,22.719999,3,1,1,0,0,4,2,1,879,307822.19,0,0,1750.7461 -10123,12475,22697,22696,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,5.1341877,5.0310206,1,0,-9,10,0,0,-31.349438,0,0,0,71,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,4.3781395,0,0,0,0,7.8025599,71.5,1,1,0,5.111804,5.2603831,69.800613,1,47.869999,22.719999,33.529999,17.549999,3,1,1,0,0,4,2,1,879,307822.19,0,0,1750.7461 -10124,12476,22698,-9,22699,22700,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1032.3555,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,404,6194.2227,0,0,2751.7507 -10124,12476,22699,22700,-9,-9,1,1,0,28,1,2,2,0,2,-9,5,1,0,0,4,6.9782348,6.9395704,0,2,0,-9,4,0,1,118.26659,0,1,1,27,2,3,1,2,2,2019,1,2,7,0,18,18,15,1,0,1,0,6.5702901,6.5702901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.049999,52.709999,44.18,36.43,7,1,1,0,0,10,4,0,404,6194.2227,0,0,2751.7507 -10124,12476,22700,22699,-9,-9,2,1,1,27,1,2,2,0,2,-9,1,1,0,0,3,8.9729662,8.7867146,0,2,0,-9,4,0,-1,-34.90292,0,1,0,28,2,4,1,-9,-9,2019,1,1,17,4,45,38,15,1,1,1,0,16.909267,16.909267,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.18,36.43,53.049999,52.709999,5,1,1,0,0,10,4,0,404,6194.2227,0,0,2751.7507 -10124,12476,22701,-9,22699,-9,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.02917,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,0,404,6194.2227,0,0,2751.7507 -10125,12477,22702,-9,22703,22705,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1144.4442,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,458.75,2366436.5,0,0,5862.2349 -10125,12477,22703,22705,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,7.5223236,7.4728265,0,2,0,-9,28,0,1,-145.77415,0,0,0,45,1,4,1,1,3,2019,1,2,14,3,26,39,15,1,0,1,0,9.7105618,9.7105618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.09,57.299999,41.169998,59.310001,6,1,1,0,0,9,5,1,458.75,2366436.5,0,0,5862.2349 -10125,12477,22704,-9,22703,22705,3,1,1,17,2,0,2,0,2,-9,7,2,0,0,4,6.3192472,6.4479556,0,2,0,0,0,-9,0,-1008.9506,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8596114,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,458.75,2366436.5,0,0,5862.2349 -10125,12477,22705,22703,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.7226305,9.5298882,0,2,0,-9,26,0,-1,103.2892,0,0,0,46,2,4,1,3,3,2019,1,1,21,9,60,55,15,1,1,1,0,27.455809,27.455809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,49.09,57.299999,5,1,1,0,0,9,5,1,458.75,2366436.5,0,0,5862.2349 -10126,12478,22706,22707,-9,-9,2,1,0,46,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,8,0,-12,0,0,0,0,58,2,2,3,-9,-9,2019,4,1,19,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.6092706,1,41.599998,23.15,37.650002,27.389999,2,1,1,0,0,4,1,0,759.5,132494.45,0,0,3098.0994 -10126,12478,22707,22706,-9,-9,1,1,1,58,1,0,0,0,2,-9,6,3,0,1,2,0,0,0,1,0,-9,8,0,12,0,0,0,0,46,2,2,3,3,3,2019,4,2,20,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.717903,1,37.650002,27.389999,41.599998,23.15,4,1,1,0,0,4,1,0,759.5,132494.45,0,0,3098.0994 -10127,12479,22708,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,0,4,8.9287786,9.1654396,0,3,0,0,0,-9,0,-989.1347,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,50,55,15,1,0,-9,0,21.116386,21.116386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,52,-9,-9,6,1,1,0,0,7,5,1,1484,640689.31,0,0,2589.2466 -10128,12480,22709,22710,-9,-9,2,1,0,74,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,56,0,-4,-10.891407,0,0,0,78,2,3,3,3,3,2019,4,1,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8760192,0,0,0,59.459999,46.990002,55.509998,43.540001,6,1,1,0,0,2,4,1,349,1939719.3,0,0,3938.2566 -10128,12480,22710,22709,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,8.5068464,8.2945948,1,0,-9,56,0,4,-14.141706,0,0,0,74,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9580953,8.6311312,0,0,55.509998,43.540001,59.459999,46.990002,7,1,1,0,0,2,4,1,349,1939719.3,0,0,3938.2566 -10129,12481,22711,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-989.7984,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,24.33,21.59,-9,-9,1,1,1,0,0,11,1,0,1015,34942.707,0,0,164.00084 -10129,12482,22712,-9,22711,-9,2,1,0,28,2,0,0,0,3,-9,2,1,0,0,4,7.6539898,7.716053,0,3,0,0,0,-9,0,-1095.1312,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,38,38,15,1,0,-9,1,6.720912,6.720912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,-9,-9,6,1,1,0,0,11,3,0,344,-31752.967,0,0,167.03926 -10130,12483,22713,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,6.8973594,7.0711303,0,3,0,0,0,-9,0,-983.66809,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,20,70,15,1,0,-9,0,6.2034769,6.2034769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,7,2,0,268,70584.703,0,0,632.71564 -10131,12484,22714,22715,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,4,8.3178072,8.1432276,0,1,0,-9,7,0,1,46.046619,0,0,0,56,3,4,1,-9,-9,2019,1,2,9,0,37,37,15,1,0,1,0,15.42076,15.42076,0,0,0,0,0,0,0,0,0,0,0,3.0862868,0,0,0,54,54,54.200001,57.490002,6,1,1,0,0,12,4,1,421.5,120183.35,0,0,2661.0876 -10131,12484,22715,22714,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,6.9932146,7.0211091,0,1,0,-9,40,0,-1,145.65756,0,0,0,57,3,4,1,-9,-9,2019,1,1,9,0,16,20,15,1,0,1,0,7.7532783,7.7532783,0,0,0,0,0,0,0,0,0,0,0,2.6397414,0,0,0,54.200001,57.490002,54,54,6,1,1,0,0,12,4,1,421.5,120183.35,0,0,2661.0876 -10132,12485,22716,22717,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,0,2,0,6.4941578,6.4636712,1,0,-9,35,0,2,38.949154,0,0,0,72,2,3,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.979331,6.4893713,0,1,61.200001,9.79,55.59,43.189999,1,1,1,0,0,9,2,1,820.5,556521.88,0,0,1445.1863 -10132,12485,22717,22716,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,6.0931797,6.3983378,1,0,-9,35,0,-2,98.486687,0,0,0,74,1,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,6.7210093,0,0,0,0,0,1,1,0,7.5398788,6.3808303,0,0,55.59,43.189999,61.200001,9.79,6,1,1,0,0,9,2,1,820.5,556521.88,0,0,1445.1863 -10133,12486,22718,22719,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,2,7.7716932,7.6865602,0,1,0,-9,10,0,3,-54.707253,0,0,0,58,2,3,3,3,2,2019,2,1,24,12,40,40,15,1,1,3,0,7.383832,7.383832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.110001,41.98,37.119999,51.5,2,1,1,0,0,11,3,1,594,390661.78,0,0,914.22406 -10133,12486,22719,22718,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,0,3,4.4458585,4.468389,0,1,0,-9,10,0,-3,-53.75346,0,0,0,61,2,2,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.3236315,0,0,3,37.119999,51.5,42.110001,41.98,4,1,1,0,0,11,3,1,594,390661.78,0,0,914.22406 -10134,12487,22720,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,3,8.1071424,8.3413467,0,3,0,0,0,-9,0,-880.84766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,46,47,15,1,0,-9,0,10.933859,10.933859,0,0,0,0,0,0,0,0,0,0,0,.70548445,0,0,0,62.419998,45.639999,-9,-9,4,1,1,0,0,9,4,0,254,327959.5,0,0,2393.5278 -10135,12488,22721,22722,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.4496603,8.3113441,0,1,0,-9,2,0,0,-127.37447,0,1,1,27,1,3,1,-9,-9,2019,1,1,1,0,37,37,15,1,0,1,0,14.319811,14.319811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,40.400002,58.619999,5,1,1,0,0,1,5,1,637.5,231967.45,0,0,3704.9819 -10135,12488,22722,22721,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,3,8.7686987,8.6902847,0,1,0,-9,2,0,0,5.6447206,0,1,0,27,1,5,1,-9,-9,2019,1,2,16,5,42,42,15,1,1,1,0,18.079992,18.079992,0,0,0,0,0,0,0,0,0,0,0,3.7663689,0,0,0,40.400002,58.619999,51.73,58.82,6,1,1,0,0,1,5,1,637.5,231967.45,0,0,3704.9819 -10136,12489,22723,22724,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,0,3,6.3178444,6.6334066,4.8835559,1,0,-9,42,0,4,-136.43028,0,0,0,59,3,3,1,3,3,2019,1,1,6,0,55,0,15,1,0,1,0,1.160732,1.160732,0,0,0,0,0,0,0,0,0,0,0,5.0180969,5.1372128,0,0,57.169998,45.439999,52.200001,49.07,6,1,1,0,0,12,2,1,1015,269387.56,0,0,608.39276 -10136,12489,22724,22723,-9,-9,1,1,0,59,1,0,0,0,3,-9,1,1,0,0,3,5.2243309,4.832037,0,1,0,-9,42,0,-4,40.663879,0,0,0,63,3,3,1,3,3,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.283462,0,0,0,52.200001,49.07,57.169998,45.439999,4,1,1,0,0,12,2,1,1015,269387.56,0,0,608.39276 -10137,12490,22725,22726,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,5,0,7.5938883,7.5301514,1,0,-9,45,0,-6,-21.430162,0,0,0,73,2,3,3,3,3,2019,4,2,7,1,0,17,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4459395,7.6823769,0,0,61.759998,40.48,60.299999,46.580002,7,1,1,0,0,10,3,1,520.5,688061.25,0,0,3166.8752 -10137,12490,22726,22725,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.699223,6.8787866,1,0,-9,45,0,6,-115.77945,0,0,0,67,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5689592,6.6739149,0,0,60.299999,46.580002,61.759998,40.48,6,1,1,0,0,10,3,1,520.5,688061.25,0,0,3166.8752 -10138,12491,22727,-9,22729,22728,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.7052,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,1,605,1311099,0,0,4926.8394 -10138,12491,22728,22729,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,4,8.6261501,8.8185329,0,2,0,-9,8,0,0,44.328403,0,0,0,46,1,2,1,-9,-9,2019,1,1,9,0,45,50,15,1,0,1,0,13.135736,13.135736,0,0,0,0,0,0,0,0,1,1,0,8.2954016,0,0,0,54.439999,51.82,45.619999,44.110001,5,1,1,0,0,13,4,1,605,1311099,0,0,4926.8394 -10138,12491,22729,22728,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,2,7.5472636,7.8563051,0,2,0,-9,8,0,0,21.289927,0,0,0,46,2,4,1,3,3,2019,1,2,14,2,22,22,15,1,0,1,0,11.821546,11.821546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.619999,44.110001,54.439999,51.82,6,1,1,0,0,13,4,1,605,1311099,0,0,4926.8394 -10139,12492,22730,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-948.71466,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.77413547,0,0,0,57.16,56.150002,-9,-9,5,1,1,1,0,7,1,0,1671,0,0,0,651.29053 -10140,12493,22731,22732,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,6.9500847,6.9586506,1,0,-9,8,0,3,-92.867477,0,0,0,74,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6880975,6.7327838,0,0,57.16,56.150002,54.790001,55.860001,2,1,1,0,0,13,2,1,440,682700.5,0,0,2313.3853 -10140,12493,22732,22731,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,7.0202494,6.8310571,1,0,-9,8,0,-3,-14.768789,0,0,0,77,2,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2423363,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,13,2,1,440,682700.5,0,0,2313.3853 -10141,12494,22733,22734,-9,-9,2,1,0,20,1,0,0,0,2,-9,2,1,0,0,3,7.348587,7.2890205,0,1,0,-9,3,0,-2,58.09713,0,1,1,22,2,3,1,-9,-9,2019,1,1,15,4,30,15,15,1,1,1,0,6.1557031,6.1557031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.360001,42.150002,49.040001,55.860001,6,1,1,0,0,10,4,0,1104.5,108211.29,0,0,2107.7378 -10141,12494,22734,22733,-9,-9,1,1,1,22,1,0,0,0,2,-9,2,1,0,0,3,8.0564575,7.9556732,0,1,0,-9,3,0,2,-74.910233,0,1,0,20,2,3,1,2,2,2019,1,2,3,0,50,50,15,1,0,1,0,6.6901612,6.6901612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,43.360001,42.150002,5,1,1,0,0,10,4,0,1104.5,108211.29,0,0,2107.7378 -10142,12495,22735,22736,-9,-9,1,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-3,-41.659729,0,0,0,85,1,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5080619,0,0,0,54.880001,32.639999,49.68,50.490002,6,1,1,0,0,10,5,1,691,2239893,0,0,8807.3027 -10142,12495,22736,22735,-9,-9,2,1,1,85,1,0,0,0,1,-9,4,3,0,0,2,0,9.4303274,9.7533331,1,0,-9,58,0,3,58.662521,0,0,0,82,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.530261,9.595314,11.312144,1,49.68,50.490002,54.880001,32.639999,7,1,1,0,0,10,5,1,691,2239893,0,0,8807.3027 -10143,12496,22737,-9,22738,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1051.5183,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.939999,53.18,-9,-9,6,1,1,0,0,9,2,1,551.5,198453.19,0,0,1067.9843 -10143,12496,22738,-9,-9,-9,1,1,0,51,3,0,2,0,3,-9,2,1,0,0,3,7.3589764,7.5039539,0,4,0,0,0,-9,0,-965.19666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,24,25,15,1,1,-9,0,9.4676208,9.4676208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.41,62.84,-9,-9,4,1,1,0,1,9,2,1,551.5,198453.19,0,0,1067.9843 -10144,12497,22739,-9,22740,22741,4,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.8474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,8,5,1,637.66669,625277.06,0,0,4762.5396 -10144,12497,22740,22741,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,8.9012327,8.8893251,0,2,0,-9,15,0,0,24.016386,0,0,1,51,2,4,1,2,2,2019,1,1,9,0,46,51,15,1,0,1,0,21.8167,21.8167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,63.630001,51.860001,6,3,4,0,0,8,5,1,637.66669,625277.06,0,0,4762.5396 -10144,12497,22741,22740,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.4141331,8.3576584,0,2,0,-9,15,0,9,-94.07737,0,0,0,42,2,4,1,2,1,2019,1,2,3,0,54,45,15,1,0,1,0,7.885962,7.885962,0,0,0,0,0,0,0,0,1,1,0,3.5931563,0,0,0,63.630001,51.860001,51.77,58.57,6,3,4,0,0,8,5,1,637.66669,625277.06,0,0,4762.5396 -10144,12498,22742,-9,22740,22741,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,7.858479,7.574687,0,3,0,0,0,-9,0,-1080.9125,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,30,37,15,1,0,-9,1,12.387293,12.387293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,8,3,1,1873,-1314.1947,0,0,1049.7821 -10145,12499,22743,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,0,3,7.7973738,7.9988265,6.8888354,3,0,0,0,-9,0,-853.12946,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,38,41,15,1,0,-9,0,8.0078564,8.0078564,0,0,0,0,0,0,0,0,0,0,0,4.138042,6.5119333,0,0,54.939999,53.18,-9,-9,6,1,1,0,0,6,4,1,101,179867.17,0,0,2512.2358 -10146,12500,22744,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1097.2393,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.09,9.3999996,-9,-9,5,1,1,0,0,10,1,0,309,273878.34,0,0,2630.4656 -10147,12501,22745,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-983.84363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,7,0,0,15,4,1,-9,0,0,0,1,0,0,11.701795,0,0,0,0,1,1,0,0,0,0,0,20.969999,24.530001,-9,-9,2,1,1,0,0,12,1,1,5256,350533.75,0,0,1249.4034 -10147,12502,22746,-9,22745,-9,2,1,0,57,3,0,0,0,3,-9,2,1,0,0,2,0,0,0,3,0,0,0,-9,0,-1023.6382,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,29,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,16.096628,3,41.459999,37.619999,-9,-9,4,1,1,0,0,12,1,1,313,120044.4,0,0,0 -10148,12503,22747,22748,-9,-9,2,1,1,52,1,0,0,0,3,-9,1,1,0,0,3,8.0045147,8.0427322,0,1,0,-9,8,0,6,125.40479,0,0,0,46,2,5,1,-9,-9,2019,1,1,11,1,40,39,15,1,0,1,0,6.3615718,6.3615718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,54.349998,57.84,5,2,3,0,0,1,3,1,619,232384.53,0,0,2045.5441 -10148,12503,22748,22747,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,5,6.8640695,7.188128,0,1,0,-9,27,0,-6,51.111259,0,0,0,52,3,3,1,-9,-9,2019,1,2,9,0,18,25,15,1,0,1,0,7.1313319,7.1313319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.349998,57.84,50,50,7,2,3,0,0,1,3,1,619,232384.53,0,0,2045.5441 -10148,12504,22749,-9,22748,22747,3,1,0,22,2,0,0,0,1,1,2,1,0,0,5,6.0854268,6.4932647,0,3,0,0,0,-9,0,-1088.7108,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,8,0,15,1,0,-9,1,7.5776148,7.5776148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,2,3,0,0,1,2,1,540,-62503.98,0,0,129.95523 -10148,12505,22750,-9,22748,22747,4,1,1,21,2,0,0,1,2,0,7,2,0,0,4,6.1666183,6.05759,0,3,0,0,0,-9,0,-1060.4945,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0092578,0,0,0,48,59,-9,-9,5,2,3,0,0,1,2,1,1897,70402.352,0,0,1469.9321 -10149,12506,22751,22753,-9,-9,2,1,0,46,1,0,2,0,1,-9,4,3,0,1,1,0,7.9631538,7.5897741,2,0,-9,2,0,1,-223.13507,0,0,0,45,2,3,3,3,3,2019,4,1,18,6,0,28,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.799603,7.7819099,0,0,42.529999,20.059999,39.080002,57.810001,6,1,1,0,0,12,2,1,664,-98947.133,0,0,2813.7236 -10149,12506,22752,-9,22751,22753,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.196,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,1,664,-98947.133,0,0,2813.7236 -10149,12506,22753,22751,-9,-9,1,1,1,45,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,-1,6.5564065,0,0,0,46,1,1,3,2,2,2019,4,2,17,5,0,48,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0582571,0,0,0,39.080002,57.810001,42.529999,20.059999,3,1,1,1,0,12,2,1,664,-98947.133,0,0,2813.7236 -10149,12507,22754,-9,22751,22753,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1070.5204,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6504908,0,0,0,48,59,-9,-9,5,1,1,0,0,12,2,1,705,-85957.844,0,0,-458.92731 -10150,12508,22755,22756,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,8.7767115,8.291254,0,2,0,-9,16,0,-21,-31.757843,0,0,1,60,2,4,1,2,2,2019,1,2,11,1,38,38,15,1,0,1,0,16.56184,16.56184,0,0,0,0,0,0,0,0,1,1,0,2.1128387,0,0,0,51.77,58.57,50.970001,53.419998,6,1,1,0,0,11,5,1,1135.5,1773721.8,0,0,4956.0547 -10150,12508,22756,22755,-9,-9,2,1,1,60,1,0,2,0,2,-9,2,1,0,0,4,8.5916805,9.1675158,7.0199046,2,0,-9,7,0,21,-34.761864,0,0,0,39,1,4,1,-9,-9,2019,1,1,9,1,39,42,15,1,0,1,0,19.62916,19.62916,0,0,0,0,0,0,0,0,1,1,0,0,7.2375441,0,0,50.970001,53.419998,51.77,58.57,6,1,1,0,0,11,5,1,1135.5,1773721.8,0,0,4956.0547 -10150,12508,22757,-9,22755,22756,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-857.54169,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,5,1,1135.5,1773721.8,0,0,4956.0547 -10150,12508,22758,-9,22755,22756,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.4853,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,1135.5,1773721.8,0,0,4956.0547 -10151,12509,22759,22760,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.9678402,9.2212086,0,1,0,-9,27,0,4,-43.024525,0,0,0,52,1,1,1,3,3,2019,1,2,11,0,38,40,15,1,0,1,0,29.769337,29.769337,0,0,0,0,0,0,0,0,0,0,0,6.3751359,0,0,0,58.720001,51.290001,53.240002,26.07,6,1,1,0,0,13,5,1,872.5,1077118.3,0,0,3680.47 -10151,12509,22760,22759,-9,-9,2,1,0,52,1,0,0,0,1,-9,1,1,0,0,1,7.2209406,7.2412586,0,1,0,-9,27,0,-4,-26.898378,0,0,0,56,2,4,1,3,3,2019,1,1,10,0,35,30,15,1,0,1,0,4.3818307,4.3818307,0,0,0,0,0,0,0,14.5,0,0,0,0,0,20.625111,3,53.240002,26.07,58.720001,51.290001,3,1,1,0,0,13,5,1,872.5,1077118.3,0,0,3680.47 -10151,12510,22761,-9,22760,22759,3,1,0,24,2,0,0,0,1,-9,7,2,0,0,4,6.3222661,6.5934215,0,3,0,0,0,-9,0,-991.51495,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,7,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,2,1,481,-37584.617,0,0,1620.2539 -10151,12511,22762,-9,22760,22759,4,1,1,20,2,0,0,1,2,0,7,2,0,0,4,7.0148993,6.5652409,0,3,0,0,0,-9,0,-938.65417,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.546752,0,0,0,51.240002,58.84,-9,-9,5,1,1,0,0,13,2,1,1110,-27744.615,0,0,1064.541 -10152,12512,22763,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,1,2,0,8.7643261,8.7334852,3,0,0,0,-9,0,-1002.4335,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5489082,8.7294827,0,0,47.099998,21.74,-9,-9,6,1,1,0,0,6,5,1,80,1920250.4,0,0,2490.9446 -10153,12513,22764,22765,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,0,3,0,6.6547174,7.0085588,1,0,-9,51,0,7,42.375801,0,0,0,84,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,9.4941359,0,0,0,0,27.5,1,1,0,2.2993402,7.2615056,26.429995,1,55,44,52,45,6,1,1,0,0,9,2,1,1666.5,508732.81,0,0,2264.6914 -10153,12513,22765,22764,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,51,0,-7,57.865105,0,0,0,91,3,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,3.713779,0,0,0,0,0,1,1,0,1.9077926,0,0,0,52,45,55,44,6,1,1,0,0,9,2,1,1666.5,508732.81,0,0,2264.6914 -10154,12514,22766,22767,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,0,3,7.6405859,7.7913265,0,1,0,-9,20,0,-4,27.375057,0,0,0,64,1,4,3,2,2,2019,2,1,10,1,30,30,15,1,0,4,0,7.5221505,7.5221505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,60.689999,53.18,5,1,1,0,0,9,3,1,628,724198,0,0,1273.5457 -10154,12514,22767,22766,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.3728404,7.0706344,1,0,-9,20,0,4,83.482552,0,0,0,60,1,3,1,2,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.233582,7.3718557,17.09738,3,60.689999,53.18,51,49,7,1,1,0,0,9,3,1,628,724198,0,0,1273.5457 -10155,12515,22768,22769,-9,-9,1,1,0,36,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,3,0,0,1.6911464,0,0,1,36,1,4,1,2,1,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.360001,49.48,51,56,6,1,1,0,0,10,4,1,644.75,948.1106,0,0,3636.6045 -10155,12515,22769,22768,-9,-9,2,1,1,36,1,1,2,0,1,-9,1,1,0,0,4,9.0347424,8.621048,0,2,0,-9,3,0,0,-24.227541,0,0,0,36,1,3,3,-9,-9,2019,2,1,10,1,75,70,15,1,0,3,0,8.4483385,8.4483385,0,0,0,0,0,0,0,0,1,1,0,7.2003822,0,0,0,51,56,51.360001,49.48,5,1,1,0,0,10,4,1,644.75,948.1106,0,0,3636.6045 -10155,12515,22770,-9,22768,22769,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.0925,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,644.75,948.1106,0,0,3636.6045 -10155,12515,22771,-9,22768,22769,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.2316,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,644.75,948.1106,0,0,3636.6045 -10156,12516,22772,22773,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,6.8036423,6.7405543,1,0,-9,59,0,5,-57.839336,0,0,0,78,3,3,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71675336,7.2230701,0,0,54.610001,49.130001,52,46,6,1,1,0,0,12,3,1,421.5,399544.69,0,0,2300.9043 -10156,12516,22773,22772,-9,-9,1,1,0,78,1,0,0,0,3,-9,2,1,0,0,3,6.4784212,6.819942,6.2520747,1,0,-9,59,0,-5,-34.845413,0,0,0,83,2,3,3,-9,-9,2019,2,2,6,0,15,0,15,1,0,4,0,5.7913699,5.7913699,1,0,0,0,0,0,0,0,1,1,0,1.2324148,6.3101125,0,0,52,46,54.610001,49.130001,5,1,1,0,0,12,3,1,421.5,399544.69,0,0,2300.9043 -10157,12517,22774,-9,-9,-9,1,1,0,22,3,1,1,0,2,-9,2,1,0,0,3,7.1766229,7.2779684,0,4,0,0,0,-9,0,-1029.8383,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,37,37,15,1,0,-9,0,4.2932782,4.2932782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.330002,55.93,-9,-9,4,3,4,0,0,5,2,0,1091.5,-50532.367,0,0,1157.882 -10157,12517,22775,-9,22774,-9,2,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1011.0825,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,5,2,0,1091.5,-50532.367,0,0,1157.882 -10158,12518,22776,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,0,3,6.846209,6.8257341,0,3,0,0,0,-9,0,-952.05615,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,55,15,1,0,-9,0,8.4004707,8.4004707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,54.529999,-9,-9,5,1,1,0,0,4,2,0,671,262954.13,0,0,785.32098 -10159,12519,22777,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,6.0356469,5.7806129,3,0,0,0,-9,0,-998.4295,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1805673,5.9085064,0,0,57.16,56.150002,-9,-9,2,1,1,0,0,5,2,1,139,207523.89,0,0,326.83301 -10160,12520,22778,22779,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,5,8.4888773,8.1698999,0,1,0,-9,7,0,0,-22.734129,0,1,0,27,1,3,1,-9,-9,2019,1,1,7,0,45,43,15,1,0,1,0,10.407787,10.407787,0,0,0,0,0,0,0,0,0,0,0,3.557251,0,0,0,54.689999,57.470001,45.459999,52.150002,6,1,1,0,0,2,5,1,213.5,114658.13,0,0,2346.1807 -10160,12520,22779,22778,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,7.4976788,7.3804121,0,1,0,-9,7,0,0,85.576187,0,1,1,27,1,5,1,1,1,2019,1,2,9,0,44,43,15,1,0,1,0,8.2788763,8.2788763,0,0,0,0,0,0,0,0,0,0,0,1.7137665,0,0,0,45.459999,52.150002,54.689999,57.470001,6,1,1,0,0,2,5,1,213.5,114658.13,0,0,2346.1807 -10161,12521,22780,22781,-9,-9,2,1,1,30,1,0,0,0,1,-9,1,1,0,0,3,7.7376909,7.4361644,0,1,0,-9,6,0,5,15.969719,0,1,0,25,1,4,1,-9,-9,2019,1,1,12,0,30,30,15,1,0,1,0,7.5490804,7.5490804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.509998,54.259998,54.200001,57.490002,6,1,1,0,0,9,4,0,1095,609191,0,0,3228.4509 -10161,12521,22781,22780,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,7.8679943,8.2528114,0,1,0,-9,6,0,-5,-139.41202,0,1,1,30,1,3,1,-9,-9,2019,1,2,5,0,35,37,15,1,0,1,0,10.014647,10.014647,0,0,0,0,0,0,0,0,0,0,0,.27848125,0,0,0,54.200001,57.490002,52.509998,54.259998,6,1,1,0,0,9,4,0,1095,609191,0,0,3228.4509 -10162,12522,22782,22783,-9,-9,1,1,1,46,1,0,0,0,1,-9,1,1,0,0,4,9.4562654,9.578783,0,1,0,-9,4,0,11,-37.881752,0,0,0,35,1,3,1,1,1,2019,1,2,11,1,16,30,15,1,0,1,0,110.00951,110.00951,0,0,0,0,0,0,0,0,0,0,0,7.0759406,0,0,0,52.23,55.599998,38.259998,60.700001,6,1,1,0,0,8,5,1,541,488345.13,0,0,8672.5215 -10162,12522,22783,22782,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,3,9.0004168,8.8406038,0,1,0,-9,4,0,-11,26.610449,0,0,1,46,1,4,1,-9,-9,2019,1,1,12,0,20,20,15,1,0,1,0,40.653465,40.653465,0,0,0,0,0,0,0,0,0,0,0,6.8526001,0,0,0,38.259998,60.700001,52.23,55.599998,6,1,1,0,0,8,5,1,541,488345.13,0,0,8672.5215 -10163,12523,22784,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,8.5171528,8.5215549,0,3,0,-9,0,-9,0,-928.87238,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,35,0,15,1,1,-9,0,20.667162,20.667162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.900002,-9,-9,1,1,1,0,0,12,5,0,385,187004.95,0,0,1329.5072 -10164,12524,22785,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,0,3,0,7.7668996,7.8689775,3,0,0,0,-9,0,-968.01544,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9101558,7.5253181,0,0,60.290001,52.110001,-9,-9,5,1,1,0,0,10,3,1,252,746110.19,0,0,2596.5012 -10165,12525,22786,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-982.13751,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,-9,-9,4,1,1,1,0,13,1,0,270,107349.8,0,0,1571.9739 -10165,12526,22787,-9,-9,22786,2,1,1,22,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-957.60553,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,1,0,13,1,0,207,-22030.928,0,0,936.47485 -10166,12527,22788,22789,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,9.4676323,8.891077,0,1,0,-9,9,0,-4,-68.643066,0,0,0,56,2,2,1,3,3,2019,1,2,12,0,37,36,15,1,0,1,0,33.100029,33.100029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.700001,58.009998,43.459999,30.35,5,1,1,0,0,13,5,1,585.5,1089239.1,0,0,6132.1582 -10166,12527,22789,22788,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,8.6744461,8.6747122,0,1,0,-9,9,0,4,-47.789719,0,0,0,52,1,4,1,3,2,2019,1,1,8,0,36,36,15,1,0,1,0,18.278826,18.278826,0,0,0,0,0,0,0,0,0,0,0,5.2247844,0,0,0,43.459999,30.35,40.700001,58.009998,6,1,1,0,0,13,5,1,585.5,1089239.1,0,0,6132.1582 -10166,12528,22790,-9,22789,22788,3,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1056.2887,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,13,1,1,661,-311781.47,0,0,0 -10167,12529,22791,22792,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,6.4264493,6.4556446,1,0,-9,53,0,-5,39.706367,0,0,0,79,2,4,3,-9,2,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9035048,6.3336592,0,0,57.16,56.150002,54.41,49.099998,6,1,1,0,0,5,2,1,584.5,744044.5,0,0,2924.5869 -10167,12529,22792,22791,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,7.2631836,7.154048,1,0,-9,53,0,5,46.240124,0,0,0,74,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3644609,7.0494208,0,0,54.41,49.099998,57.16,56.150002,7,1,1,0,0,5,2,1,584.5,744044.5,0,0,2924.5869 -10168,12530,22793,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,2,0,5.4136305,5.3804073,3,0,0,0,-9,0,-871.8222,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1146905,5.4502506,0,0,50.48,28.860001,-9,-9,7,1,1,0,0,5,2,0,740,6638.2388,0,0,768.06989 -10169,12531,22794,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,2,1,0,0,4,8.6067352,8.5062656,0,3,0,-9,0,1,0,-994.00891,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,40,40,15,1,1,-9,0,17.757278,17.757278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,-9,-9,5,1,1,0,0,10,5,1,308,-42976.465,0,0,2254.7432 -10170,12532,22795,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,3,8.0179806,7.8829856,0,3,0,0,0,-9,0,-1017.2803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,40,44,15,1,1,-9,0,7.1732569,7.1732569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.650002,58.34,-9,-9,6,1,1,0,0,7,3,1,568,737775.56,0,0,-169.22032 -10171,12533,22796,-9,22797,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-983.38129,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,515,35916.168,0,0,1938.9326 -10171,12533,22797,-9,-9,-9,1,1,0,46,3,0,2,0,1,-9,2,1,0,0,4,8.1224012,8.4644651,6.1435609,4,0,0,0,-9,0,-1021.5696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,60,68,15,1,0,-9,0,6.979733,6.979733,0,0,0,0,0,0,0,0,1,1,0,6.910677,0,0,0,43.540001,59.599998,-9,-9,6,1,1,0,0,4,3,1,515,35916.168,0,0,1938.9326 -10171,12533,22798,-9,22797,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-959.164,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,4,3,1,515,35916.168,0,0,1938.9326 -10172,12534,22799,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,5,8.6053419,8.833436,0,3,0,0,0,-9,0,-1059.4508,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,4,49,40,15,1,1,-9,0,14.322747,14.322747,0,0,0,0,0,0,0,2,0,0,0,3.980082,0,6.3501048,3,43.439999,61.220001,-9,-9,5,1,1,0,0,6,5,1,332,211908.28,0,0,1778.6134 -10173,12535,22800,-9,22801,22803,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.9498,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,892.5,596684.13,0,0,4249.3862 -10173,12535,22801,22803,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.687192,8.6612949,0,2,0,-9,10,0,-5,73.287186,0,0,1,44,2,3,1,2,1,2019,1,1,8,0,38,38,15,1,0,1,0,14.372307,14.372307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.23,50.709999,7,1,1,0,0,9,5,1,892.5,596684.13,0,0,4249.3862 -10173,12535,22802,-9,22801,22803,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,5.2504792,5.4866915,0,2,0,0,0,-9,0,-1032.7706,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23283826,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,892.5,596684.13,0,0,4249.3862 -10173,12535,22803,22801,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.855504,9.163806,0,2,0,-9,10,0,5,-13.830763,0,0,0,39,2,4,1,2,2,2019,1,2,8,0,40,45,15,1,0,1,0,23.35523,23.35523,0,0,0,0,0,0,0,0,1,1,0,1.5919083,0,0,0,48.23,50.709999,57.16,56.150002,6,1,1,0,0,9,5,1,892.5,596684.13,0,0,4249.3862 -10174,12536,22804,-9,22805,22806,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.18555,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,288.66666,271285.19,0,0,4775.771 -10174,12536,22805,22806,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,8.3529358,8.2634077,0,2,0,-9,20,0,-4,127.67505,0,0,0,53,2,4,1,3,2,2019,1,2,10,0,32,32,15,1,0,1,0,14.866701,14.866701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.349998,41.970001,53,54,4,1,1,0,0,2,4,1,288.66666,271285.19,0,0,4775.771 -10174,12536,22806,22805,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,4,8.304348,8.3004494,0,2,0,-9,7,0,4,-64.537956,0,0,0,49,1,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,12.172834,12.172834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,55.349998,41.970001,6,1,1,0,0,2,4,1,288.66666,271285.19,0,0,4775.771 -10175,12537,22807,22809,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,4,8.7183084,8.8579817,0,2,0,-9,10,0,2,14.508135,0,0,0,49,1,3,1,2,2,2019,1,1,7,0,39,0,15,1,0,1,0,18.606026,18.606026,0,0,0,0,0,0,0,0,0,0,0,2.7856228,0,0,0,60.119999,54.799999,36.369999,61.5,7,1,1,0,0,5,5,1,1038,563035.69,0,0,6087.0454 -10175,12537,22808,-9,22807,22809,3,1,1,17,2,0,1,1,2,-9,7,2,0,0,3,5.4649682,5.6355634,0,2,0,0,0,-9,0,-1105.9539,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4092624,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,1,5,5,1,1038,563035.69,0,0,6087.0454 -10175,12537,22809,22807,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,3,9.6441288,9.5991697,0,2,0,-9,10,0,-2,-32.162289,0,0,0,51,1,4,1,2,2,2019,1,2,21,9,54,87,15,1,1,1,0,29.885479,29.885479,0,0,0,0,0,0,0,0,0,0,0,3.7538095,0,0,0,36.369999,61.5,60.119999,54.799999,4,1,1,0,0,5,5,1,1038,563035.69,0,0,6087.0454 -10176,12538,22810,22811,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,9.3311129,9.3810825,6.7698627,1,0,-9,9,0,1,151.41301,0,0,0,63,2,4,3,3,3,2019,2,1,7,0,50,50,15,1,0,4,0,22.754122,22.754122,0,0,0,0,0,0,0,2,0,0,0,7.1697006,0,4.1831059,3,57.330002,53.459999,50.349998,49.869999,6,1,1,0,0,2,5,1,1016.5,1518718.3,0,0,3855.3381 -10176,12538,22811,22810,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-1,-47.409279,0,0,0,64,2,3,1,3,3,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2.2927275,3,50.349998,49.869999,57.330002,53.459999,7,1,1,0,0,2,5,1,1016.5,1518718.3,0,0,3855.3381 -10177,12539,22812,22813,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.9728408,6.9798155,1,0,-9,50,0,3,33.224491,0,0,0,69,2,3,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3736305,6.8209915,0,0,59.43,49.68,52.650002,51.639999,6,1,1,0,0,11,2,1,1280,461371.06,0,0,1825.0354 -10177,12539,22813,22812,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-3,-99.364601,0,0,0,72,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,51.639999,59.43,49.68,7,1,1,0,0,11,2,1,1280,461371.06,0,0,1825.0354 -10178,12540,22814,-9,22816,22815,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.8513,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,1203.25,778021.69,0,0,8311.5117 -10178,12540,22815,22816,-9,-9,2,1,1,48,1,0,2,0,3,-9,2,1,0,0,4,9.3647032,9.5892763,0,2,0,-9,9,0,2,-116.12033,0,0,0,46,1,5,1,-9,-9,2019,1,1,11,0,48,42,15,1,0,1,0,26.70223,26.70223,0,0,0,0,0,0,0,0,0,0,0,7.1258044,0,0,0,51.77,58.57,49.310001,58.560001,6,1,1,0,0,8,5,1,1203.25,778021.69,0,0,8311.5117 -10178,12540,22816,22815,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,5,9.1757708,9.2195597,0,2,0,-9,9,0,-2,-37.278728,0,0,0,48,3,4,1,1,1,2019,1,2,12,1,29,30,15,1,0,1,0,44.36882,44.36882,0,0,0,0,0,0,0,0,0,0,0,7.1688728,0,0,0,49.310001,58.560001,51.77,58.57,6,1,1,0,0,8,5,1,1203.25,778021.69,0,0,8311.5117 -10178,12540,22817,-9,22816,22815,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.93237,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1203.25,778021.69,0,0,8311.5117 -10179,12541,22818,22819,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,7.03022,6.8764038,1,0,-9,50,0,-4,-81.953804,0,0,0,69,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0250378,7.1872787,0,0,54.790001,55.860001,57.57,49.689999,6,1,1,0,0,5,3,1,678,565166.25,0,0,7502.2207 -10179,12541,22819,22818,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.2352366,7.2109904,1,0,-9,50,0,4,37.172539,0,0,0,65,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1449633,7.1753764,0,0,57.57,49.689999,54.790001,55.860001,6,1,1,0,0,5,3,1,678,565166.25,0,0,7502.2207 -10180,12542,22820,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.9778752,8.5018139,6.9605727,3,0,0,0,-9,0,-1038.7174,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,23,30,15,1,0,-9,0,19.94426,19.94426,0,0,0,0,0,0,0,7,0,0,0,7.2331276,7.5353737,15.8067,3,57.16,56.150002,-9,-9,6,1,1,0,0,10,5,0,539,726099.75,0,0,1568.3146 -10181,12543,22821,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,7.988308,7.9317951,3,0,0,0,-9,0,-1100.0808,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1034508,7.7940092,0,0,39.610001,38.459999,-9,-9,5,1,1,0,0,4,3,1,517,432940.56,0,0,2115.6243 -10182,12544,22822,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,4,7.3953514,7.894752,6.5573626,3,0,0,0,-9,0,-902.7713,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,20,0,15,1,0,-9,0,11.990143,11.990143,0,0,0,0,0,0,0,0,1,1,0,4.6520224,6.9513388,0,0,61.27,46.029999,-9,-9,2,1,1,0,0,8,3,1,571,766323.44,0,0,2844.4485 -10183,12545,22823,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,0,3,0,7.5798526,6.7418985,3,0,0,0,-9,0,-1031.2615,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5615859,7.17909,0,0,60.049999,42.650002,-9,-9,6,1,1,0,0,8,3,1,931,241663.73,0,0,2489.0305 -10184,12546,22824,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,7.8475723,7.752707,5.8539305,3,0,0,0,-9,0,-967.34473,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,38,38,15,1,0,-9,0,8.581172,8.581172,0,0,0,0,0,0,0,0,0,0,0,5.7382116,0,0,0,40.130001,53.209999,-9,-9,6,1,1,0,0,8,4,0,929,41767.309,0,0,2138.9028 -10185,12547,22825,-9,-9,-9,1,1,0,89,3,0,0,0,1,-9,4,3,0,0,3,0,7.2121072,7.1631842,3,0,0,0,-9,0,-982.68103,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,11.085359,0,1,1,0,0,7.0143776,0,0,60.439999,46.580002,-9,-9,6,1,1,0,0,12,2,1,494,306828.59,0,0,1522.4529 -10186,12548,22826,-9,22827,22828,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-921.54095,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,8,5,0,510.33334,455168.56,0,0,3009.6257 -10186,12548,22827,22828,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,0,4,7.8745694,8.0389767,0,2,0,-9,4,0,-5,-48.198345,-9,0,1,37,1,4,1,-9,-9,2019,1,1,11,2,32,0,15,1,0,1,0,10.532038,10.532038,0,0,0,0,0,0,0,0,1,1,0,1.9788253,0,0,0,47,57,50,57,5,4,4,0,0,8,5,0,510.33334,455168.56,0,0,3009.6257 -10186,12548,22828,22827,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,0,4,8.7672186,8.7065926,0,2,0,-9,4,0,5,-28.735287,-9,0,0,32,1,4,1,1,2,2019,1,2,10,1,62,0,15,1,0,1,0,12.257571,12.257571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,47,57,5,3,4,0,0,8,5,0,510.33334,455168.56,0,0,3009.6257 -10187,12549,22829,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,0,3,0,7.7702007,7.6131344,3,0,0,0,-9,0,-929.66815,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1693149,7.3806114,0,0,57.259998,38.439999,-9,-9,6,1,1,0,0,9,3,1,931,609605.81,0,0,648.78143 -10188,12550,22830,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-993.77991,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,17,-9,-9,3,1,1,0,0,6,1,0,489,125817.7,0,0,3735.281 -10189,12551,22831,22833,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,8.8689299,9.113308,0,2,0,-9,7,0,-5,-42.068218,0,0,1,43,3,5,1,2,3,2019,1,1,12,0,45,50,15,1,0,1,0,19.482967,19.482967,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,55.68,47.509998,5,1,1,0,0,7,5,1,612.75,226501.59,0,0,5058.9189 -10189,12551,22832,-9,22831,22833,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.04596,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,612.75,226501.59,0,0,5058.9189 -10189,12551,22833,22831,-9,-9,1,1,1,43,1,0,2,0,3,-9,1,1,0,0,5,8.2670002,8.2167759,0,2,0,-9,13,0,5,-69.728386,0,0,0,38,1,4,1,3,3,2019,1,2,11,2,55,40,15,1,0,1,0,8.3340473,8.3340473,0,0,0,0,0,0,0,0,1,1,0,6.8061476,0,0,0,55.68,47.509998,52.82,53.970001,6,1,1,0,0,7,5,1,612.75,226501.59,0,0,5058.9189 -10189,12551,22834,-9,22831,22833,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.8811,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,612.75,226501.59,0,0,5058.9189 -10190,12552,22835,-9,22837,22836,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,5.989336,5.7925353,0,2,0,0,0,-9,0,-957.96674,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.23,60.490002,-9,-9,5,1,1,0,0,10,3,1,686,696198.31,0,0,1257.2336 -10190,12552,22836,22837,-9,-9,1,1,1,61,1,0,1,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,34,0,6,22.430574,0,0,0,55,1,3,1,3,3,2019,1,2,11,1,0,1,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.529999,51.799999,29.24,57.029999,2,1,1,0,0,10,3,1,686,696198.31,0,0,1257.2336 -10190,12552,22837,22836,-9,-9,2,1,0,55,1,0,1,0,1,-9,2,1,0,0,3,8.1740294,8.108717,0,2,0,-9,36,0,-6,-13.421787,0,0,0,61,1,4,1,2,1,2019,1,1,17,4,51,56,15,1,1,1,0,7.0585732,7.0585732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.24,57.029999,51.529999,51.799999,2,1,1,0,0,10,3,1,686,696198.31,0,0,1257.2336 -10191,12553,22838,22839,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.0781517,8.3804522,5.8320756,1,0,-9,38,0,-5,-4.7790589,0,0,0,57,3,3,1,2,2,2019,1,1,7,0,35,35,15,1,0,1,0,12.226971,12.226971,0,0,0,0,0,0,0,0,0,0,0,0,5.7814074,0,0,59.310001,49.810001,53.709999,49.66,6,1,1,0,0,5,4,1,637,462850.13,0,0,2887.3684 -10191,12553,22839,22838,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,3,7.6719923,7.9386187,6.6021705,1,0,-9,38,0,5,52.256863,0,0,0,52,2,3,1,3,3,2019,1,2,6,0,37,0,15,1,0,1,0,5.7255125,5.7255125,0,0,0,0,0,0,0,0,0,0,0,6.1134834,6.8074498,0,0,53.709999,49.66,59.310001,49.810001,6,1,1,0,0,5,4,1,637,462850.13,0,0,2887.3684 -10192,12554,22840,22841,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,8.5127792,8.7519512,0,1,0,-9,4,0,1,-94.508698,0,1,0,27,1,5,1,-9,-9,2019,1,1,4,0,44,40,15,1,0,1,0,13.758469,13.758469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.049999,52.709999,48.220001,56.689999,6,1,1,0,0,2,5,1,1120,90664.969,0,0,3654.0552 -10192,12554,22841,22840,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.0568562,7.6380343,0,1,0,-9,4,0,-1,37.077396,0,1,1,28,1,4,1,-9,-9,2019,1,2,5,0,40,39,15,1,0,1,0,8.042511,8.042511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.220001,56.689999,53.049999,52.709999,7,1,1,0,0,2,5,1,1120,90664.969,0,0,3654.0552 -10193,12555,22842,22843,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,2,7.7894793,7.9264345,0,2,0,-9,10,0,4,10.768503,0,0,0,38,2,2,1,2,2,2019,1,2,11,1,40,0,15,1,0,1,0,7.341476,7.341476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.490002,48.490002,38.919998,51.700001,6,1,1,0,0,11,3,0,353,281338.09,0,0,2499.3462 -10193,12555,22843,22842,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,2,7.8030806,7.8335762,0,2,0,-9,10,0,-4,116.2404,0,0,1,42,2,2,1,3,-9,2019,1,1,12,2,29,35,15,1,0,1,0,10.047695,10.047695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.919998,51.700001,39.490002,48.490002,3,4,2,0,0,11,3,0,353,281338.09,0,0,2499.3462 -10194,12556,22844,-9,22845,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1269.0686,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,3,4,0,0,6,1,0,359,161173.42,0,0,1138.4272 -10194,12556,22845,-9,-9,-9,1,1,0,41,2,0,1,0,1,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-966.60754,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,39.82933,3,34.91,49.610001,-9,-9,3,3,4,0,1,6,1,0,359,161173.42,0,0,1138.4272 -10195,12557,22846,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,1,4,0,2.1512151,2.3818333,3,0,0,0,-9,0,-1040.1511,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,34,12,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8773818,0,0,0,40.84,44.66,-9,-9,4,2,3,0,1,6,2,1,1674,123368.26,0,0,-126.57054 -10196,12558,22847,22848,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-2,-19.75297,0,0,0,78,1,4,3,1,1,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1901021,0,0,0,42.599998,44.91,57.16,56.150002,6,1,1,0,0,12,3,1,680,265831.56,0,0,2614.0833 -10196,12558,22848,22847,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,0,4,0,7.7786388,7.5178738,1,0,-9,8,0,2,41.612118,0,0,0,76,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9480944,7.9195585,0,0,57.16,56.150002,42.599998,44.91,6,1,1,0,0,12,3,1,680,265831.56,0,0,2614.0833 -10197,12559,22849,22850,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,4,6.8186278,6.2932062,0,1,0,-9,32,0,1,35.434143,0,0,0,54,2,5,1,3,2,2019,1,2,6,0,2,10,15,1,0,1,0,51.323841,51.323841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.09,55.869999,2,1,1,0,0,4,4,1,279,918054.19,0,0,3762.1521 -10197,12559,22850,22849,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,8.7037735,8.6216583,0,1,0,-9,32,0,-1,110.94617,0,0,0,55,2,4,1,2,2,2019,1,1,11,0,41,40,15,1,0,1,0,12.895864,12.895864,0,0,0,0,0,0,0,0,0,0,0,7.1492434,0,0,0,55.09,55.869999,57.16,56.150002,6,1,1,0,0,4,4,1,279,918054.19,0,0,3762.1521 -10197,12560,22851,-9,22850,22849,3,1,0,21,2,0,0,1,2,0,7,2,0,0,5,5.2723575,5.5856009,0,3,0,0,0,-9,0,-1086.0522,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.69233441,0,0,0,51.389999,59.18,-9,-9,6,1,1,0,0,4,2,1,480,123022.05,0,0,-176.62503 -10198,12561,22852,22853,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,9.0366735,9.0780172,0,1,0,-9,5,0,4,-17.46612,0,0,0,45,1,5,1,-9,-9,2019,1,1,6,0,39,45,15,1,0,1,0,21.30139,21.30139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.099998,59.110001,5,1,1,0,0,5,5,1,689,596112.88,0,0,4358.2402 -10198,12561,22853,22852,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,0,5,8.545455,9.0444822,6.5304117,1,0,-9,5,0,-4,-28.18305,0,0,0,49,2,4,1,2,2,2019,1,2,12,0,21,55,15,1,0,1,0,47.835308,47.835308,0,0,0,0,0,0,0,0,0,0,0,7.1083913,0,0,0,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,5,5,1,689,596112.88,0,0,4358.2402 -10199,12562,22854,22855,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.5324278,8.7192373,0,1,0,-9,39,0,2,-102.86813,0,0,0,57,1,2,1,2,2,2019,1,2,11,0,48,48,15,1,0,1,0,16.677694,16.677694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,33.330002,32.32,6,1,1,0,0,5,5,1,1018.5,3165267.5,0,0,3375.6445 -10199,12562,22855,22854,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,2,8.5242968,8.0493555,0,1,0,-9,39,0,-2,205.46945,0,0,0,59,2,4,1,2,2,2019,1,1,22,9,35,34,15,1,1,1,0,18.208614,18.208614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,33.330002,32.32,54.200001,57.490002,4,1,1,0,0,5,5,1,1018.5,3165267.5,0,0,3375.6445 -10200,12563,22856,22857,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,3,8.3500185,8.6214495,0,1,0,-9,28,0,5,103.40704,0,0,0,54,1,4,1,3,2,2019,1,2,10,0,37,37,15,1,0,1,0,11.248169,11.248169,0,0,0,0,0,0,0,0,0,0,0,2.5610354,0,0,0,44.189999,58.009998,52.23,55.599998,6,1,1,0,0,13,5,1,1031,1280383.4,0,0,3535.4424 -10200,12563,22857,22856,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.4451141,8.4567804,0,1,0,-9,28,0,-5,71.016472,0,0,0,59,1,3,1,2,2,2019,1,1,11,0,37,37,15,1,0,1,0,17.009041,17.009041,0,0,0,0,0,0,0,0,0,0,0,3.1670356,0,0,0,52.23,55.599998,44.189999,58.009998,5,1,1,0,0,13,5,1,1031,1280383.4,0,0,3535.4424 -10201,12564,22858,22859,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,5.4727664,5.8197179,1,0,-9,48,0,-4,-3.1404548,0,0,0,69,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.076582,6.0337672,0,0,62.029999,36.18,58.720001,51.290001,6,1,1,0,0,10,4,1,51.5,2162567.3,0,0,4491.2988 -10201,12564,22859,22858,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,1.9388505,8.4085264,8.3133764,1,0,-9,48,0,4,89.356934,0,0,0,65,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2319591,8.5935287,0,0,58.720001,51.290001,62.029999,36.18,6,1,1,0,0,10,4,1,51.5,2162567.3,0,0,4491.2988 -10202,12565,22860,-9,22862,22864,3,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.9232,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.3586183,3,39.939999,55.919998,-9,-9,5,1,1,0,0,10,4,1,621.59998,794533.75,0,0,2793.8618 -10202,12565,22861,-9,22862,22864,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.6299,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,621.59998,794533.75,0,0,2793.8618 -10202,12565,22862,22864,-9,-9,1,1,0,41,1,0,3,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,21,0,-1,81.385529,0,0,1,42,1,3,1,2,2,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.580002,22.16,44.189999,58.009998,6,1,1,0,0,10,4,1,621.59998,794533.75,0,0,2793.8618 -10202,12565,22863,-9,22862,22864,4,1,0,16,2,0,3,1,2,-9,7,2,0,0,5,4.0896754,4.1914077,0,2,0,0,0,-9,0,-931.23804,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.45314613,0,0,3,51.73,58.82,-9,-9,7,1,1,0,0,10,4,1,621.59998,794533.75,0,0,2793.8618 -10202,12565,22864,22862,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,1,3,9.0773573,8.9143848,0,2,0,-9,9,0,1,31.511938,0,0,0,41,1,2,3,-9,-9,2019,2,1,15,5,40,42,15,1,1,3,0,28.573092,28.573092,0,0,0,0,0,0,0,7,1,1,0,0,0,8.7921553,1,44.189999,58.009998,58.580002,22.16,6,1,1,0,0,10,4,1,621.59998,794533.75,0,0,2793.8618 -10203,12566,22865,22866,-9,-9,1,1,1,43,1,0,0,0,2,-9,1,1,0,0,5,8.1725187,8.2997169,0,1,0,-9,6,0,-4,-40.675232,0,0,0,47,1,3,1,-9,-9,2019,1,2,5,0,35,35,15,1,0,1,0,12.88988,12.88988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,45.130001,41.57,6,1,1,0,0,10,5,1,610.5,1024812.1,0,0,5746.8496 -10203,12566,22866,22865,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,0,3,8.8095379,8.5715303,0,1,0,-9,6,0,4,-82.356354,0,0,0,43,2,5,1,-9,-9,2019,1,1,13,1,45,28,15,1,0,1,0,16.068575,16.068575,0,0,0,0,0,0,0,0,0,0,0,8.9473372,0,0,0,45.130001,41.57,57.060001,57.759998,5,1,1,0,0,10,5,1,610.5,1024812.1,0,0,5746.8496 -10204,12567,22867,22868,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,3,8.4509821,8.4846163,0,1,0,-9,16,0,0,-101.52683,0,0,0,59,2,5,1,2,3,2019,1,2,11,1,42,82,15,1,0,1,0,11.730598,11.730598,0,0,0,0,0,0,0,0,0,0,0,6.7979856,0,0,0,41.130001,40.48,56.189999,51.279999,6,1,1,0,0,7,5,1,2134,346649.09,0,0,8019.0625 -10204,12567,22868,22867,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,5,8.7820082,9.2678547,0,1,0,-9,16,0,0,-3.3704181,0,0,0,59,1,3,1,-9,1,2019,1,1,9,0,40,40,15,1,0,1,0,24.328627,24.328627,0,0,0,0,0,0,0,0,0,0,0,7.7879138,0,0,0,56.189999,51.279999,41.130001,40.48,7,1,1,0,0,7,5,1,2134,346649.09,0,0,8019.0625 -10204,12568,22869,-9,22867,22868,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,3,8.1951647,8.0132961,0,3,0,0,0,-9,0,-926.54468,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,40,39,15,1,0,-9,1,8.602129,8.602129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,2,1,1,0,0,7,4,1,1980,-30584.494,0,0,909.7616 -10205,12569,22870,22871,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.7696085,7.6748419,1,0,-9,55,0,-1,-50.332188,0,0,0,78,3,1,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.8724935,7.4714327,109.78731,1,52.32,36.860001,40,23,5,1,1,0,0,10,2,1,509,425802.84,0,0,3446.1152 -10205,12569,22871,22870,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,54,0,1,-23.684555,0,0,0,77,2,3,3,3,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1097331,0,0,0,40,23,52.32,36.860001,5,1,1,0,0,10,2,1,509,425802.84,0,0,3446.1152 -10206,12570,22872,22873,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,3.7977676,4.1179166,1,0,-9,51,0,1,-84.725372,0,0,0,70,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,1.299711,0,0,0,0,0,1,1,0,4.7100611,3.9706597,0,0,55.799999,42.23,59.07,26.99,4,1,1,0,0,1,2,0,938,318008.19,0,0,1032.9054 -10206,12570,22873,22872,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,51,0,-1,-36.060986,0,0,0,71,3,2,3,3,2,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.6810818,3,59.07,26.99,55.799999,42.23,6,1,1,0,0,1,2,0,938,318008.19,0,0,1032.9054 -10207,12571,22874,-9,22876,22875,3,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.2744,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,1,0,667,-15994.288,0,0,1590.6538 -10207,12571,22875,22876,-9,-9,2,1,1,30,1,1,4,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,4,0,4,0,0,0,0,26,2,3,3,-9,-9,2019,4,1,1,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.82,51.700001,33.099998,49.880001,7,3,4,1,0,8,1,0,667,-15994.288,0,0,1590.6538 -10207,12571,22876,22875,-9,-9,1,1,0,26,1,1,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-4,0,0,1,1,30,3,2,3,2,2,2019,4,2,2,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.099998,49.880001,35.82,51.700001,7,1,1,0,0,8,1,0,667,-15994.288,0,0,1590.6538 -10207,12571,22877,-9,22876,22875,5,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.4366,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,1,0,667,-15994.288,0,0,1590.6538 -10207,12571,22878,-9,22876,22875,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.4138,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,8,1,0,667,-15994.288,0,0,1590.6538 -10207,12571,22879,-9,22876,22875,4,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.5343,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,1,0,667,-15994.288,0,0,1590.6538 -10208,12572,22880,-9,22883,22881,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.6178,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,5,0,676,1902574.5,0,0,3968.6665 -10208,12572,22881,22883,-9,-9,2,1,1,41,1,1,2,0,1,-9,2,1,0,0,2,7.7947564,7.9392581,0,2,0,-9,5,0,4,62.41967,0,0,0,37,1,4,1,-9,-9,2019,1,1,21,9,23,37,15,1,1,1,0,14.468125,14.468125,0,0,0,0,0,0,0,0,1,1,0,.73839837,0,0,0,40.490002,39.720001,47.52,57.75,3,1,1,0,0,13,5,0,676,1902574.5,0,0,3968.6665 -10208,12572,22882,-9,22883,22881,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.88733,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,5,0,676,1902574.5,0,0,3968.6665 -10208,12572,22883,22881,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,0,4,8.9703856,8.6938562,0,2,0,-9,5,0,-4,-5.3935604,0,0,1,41,1,2,1,2,2,2019,1,2,14,3,38,38,15,1,0,1,0,22.684057,22.684057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,57.75,40.490002,39.720001,6,1,1,0,0,13,5,0,676,1902574.5,0,0,3968.6665 -10209,12573,22884,22885,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,0,5,8.5888405,8.4780741,0,1,0,-9,8,0,2,-101.97308,0,1,0,27,1,4,1,2,-9,2019,1,2,8,0,40,40,15,1,0,1,0,14.633883,14.633883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,43.459999,52.950001,6,1,1,0,0,9,5,0,555.5,9440.8125,0,0,3927.8513 -10209,12573,22885,22884,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.4227085,8.0604706,0,1,0,-9,8,0,-2,-.75972819,0,1,1,29,2,5,1,2,2,2019,1,1,13,1,44,43,15,1,0,1,0,8.2811337,8.2811337,0,0,0,0,0,0,0,0,0,0,0,3.0084281,0,0,0,43.459999,52.950001,48.18,61.799999,6,1,1,0,0,9,5,0,555.5,9440.8125,0,0,3927.8513 -10210,12574,22886,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,0,4,8.520875,8.9298792,0,3,0,0,0,-9,0,-1009.8467,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,37,36,15,1,0,-9,0,18.084545,18.084545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,52.639999,-9,-9,6,1,1,0,0,6,5,0,401,262170.22,0,0,2567.178 -10211,12575,22887,-9,22890,22889,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.4794,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,421,302496.19,0,0,4952.9082 -10211,12575,22888,-9,22890,22889,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.78271,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,421,302496.19,0,0,4952.9082 -10211,12575,22889,22890,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,9.3174248,9.7061644,0,2,0,-9,6,0,3,63.774231,0,0,0,34,1,4,1,2,2,2019,1,2,16,4,42,40,15,1,1,1,0,38.947739,38.947739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,54.200001,57.490002,5,1,1,0,0,12,5,1,421,302496.19,0,0,4952.9082 -10211,12575,22890,22889,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,0,4,8.099206,8.3857002,0,2,0,-9,6,0,-3,1.8222018,0,0,1,37,1,4,1,-9,-9,2019,1,1,10,0,25,24,15,1,0,1,0,22.276308,22.276308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,41.299999,60.77,6,1,1,0,0,12,5,1,421,302496.19,0,0,4952.9082 -10212,12576,22891,-9,22893,22892,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.04742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,5,1,611.66669,435208.72,0,0,5247.0664 -10212,12576,22892,22893,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,3,9.1006403,8.7164669,0,2,0,-9,10,0,3,-74.328499,0,0,0,35,1,4,1,2,2,2019,1,1,15,4,70,60,15,1,1,1,0,14.704556,14.704556,0,0,0,0,0,0,0,0,1,1,0,1.279116,0,0,0,46.73,54.330002,48.740002,51.669998,5,1,1,0,0,5,5,1,611.66669,435208.72,0,0,5247.0664 -10212,12576,22893,22892,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,0,4,8.4129019,8.6233568,0,2,0,-9,10,0,-3,114.78316,0,0,1,38,1,3,1,2,2,2019,1,2,6,0,17,16,15,1,0,1,0,33.919632,33.919632,0,0,0,0,0,0,0,0,1,1,0,.92606205,0,0,0,48.740002,51.669998,46.73,54.330002,6,1,1,0,0,5,5,1,611.66669,435208.72,0,0,5247.0664 -10213,12577,22894,-9,22895,22896,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-885.11499,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,468.25,1286584.5,0,0,6194.7876 -10213,12577,22895,22896,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,9.0526085,9.032836,0,2,0,-9,8,0,-8,14.763514,0,0,1,50,2,3,1,1,2,2019,1,2,6,0,37,38,15,1,0,1,0,26.342396,26.342396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,57.330002,53.459999,6,1,1,0,0,2,5,1,468.25,1286584.5,0,0,6194.7876 -10213,12577,22896,22895,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,0,3,8.9496861,9.151329,0,2,0,-9,8,0,8,45.79948,0,0,0,42,1,5,1,2,3,2019,1,1,9,0,40,40,15,1,0,1,0,17.342579,17.342579,0,0,0,0,0,0,0,0,1,1,0,8.5055685,0,0,0,57.330002,53.459999,51.73,58.82,2,1,1,0,0,2,5,1,468.25,1286584.5,0,0,6194.7876 -10213,12577,22897,-9,22895,22896,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-868.08929,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,468.25,1286584.5,0,0,6194.7876 -10214,12578,22898,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,2,8.3225555,8.1243172,0,3,0,0,0,-9,0,-1080.1768,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,38,40,15,1,0,-9,0,9.662921,9.662921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.560001,46.450001,-9,-9,6,1,1,0,0,1,4,0,1365,34389.734,0,0,1593.3821 -10214,12579,22899,-9,-9,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.4531474,7.5429525,0,3,0,-9,0,-9,0,-1015.0327,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,38,0,15,1,0,-9,0,4.6095481,4.6095481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,4,6,0,0,1,3,0,549,-46677.594,0,0,719.06946 -10215,12580,22900,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,0,4,9.1852531,8.7982988,0,3,0,0,0,-9,0,-948.28101,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,56,15,1,0,-9,0,30.782457,30.782457,0,0,0,0,0,0,0,0,0,0,0,4.75704,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,2,5,1,1565,59714.453,0,0,3367.3423 -10216,12581,22901,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,1,3,0,6.4379182,6.7461114,3,0,0,0,-9,0,-1015.0472,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9598906,6.5638528,0,0,52.040001,43.68,-9,-9,6,1,1,0,0,5,2,0,163,303727.47,0,0,838.1355 -10217,12582,22902,22903,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,5.4185963,5.3832088,1,0,-9,26,0,1,-46.151756,0,0,0,64,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,5.4553938,5.1817689,73.60981,1,52,48,50,47,5,1,1,0,0,5,2,0,1209.5,161229.84,0,0,789.56604 -10217,12582,22903,22902,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,26,0,-1,-24.607277,0,0,0,65,3,3,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,52,48,5,1,1,0,0,5,2,0,1209.5,161229.84,0,0,789.56604 -10218,12583,22904,22905,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,2,0,5.0952067,5.1433849,1,0,-9,58,0,6,-67.446594,0,0,0,76,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3199687,5.406352,0,0,51.720001,37.110001,42.689999,35.950001,6,1,1,0,0,7,2,1,1028,701217.44,0,0,2039.0369 -10218,12583,22905,22904,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,6.6968718,6.7237363,1,0,-9,48,0,-6,27.697701,0,0,0,82,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.2076116,6.6562896,1.2606289,1,42.689999,35.950001,51.720001,37.110001,7,1,1,0,0,7,2,1,1028,701217.44,0,0,2039.0369 -10219,12584,22906,22907,-9,-9,2,1,0,63,1,0,0,0,2,-9,1,1,0,0,3,7.1628528,8.0078831,7.7975488,1,0,-9,28,0,7,-22.198364,0,0,0,56,3,4,1,3,3,2019,1,1,24,12,35,40,15,1,1,1,0,4.379066,4.379066,0,0,0,0,0,0,0,0,0,0,0,0,7.3697062,0,0,36.189999,42.77,36.849998,61.32,3,1,1,0,0,9,5,1,529,422512.44,0,0,4193.1074 -10219,12584,22907,22906,-9,-9,1,1,1,56,1,0,0,0,3,-9,1,1,0,0,4,8.8864279,8.5199347,0,1,0,-9,28,0,-7,-95.713936,0,0,0,63,2,3,1,2,3,2019,1,2,16,4,35,40,15,1,1,1,0,19.970339,19.970339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.849998,61.32,36.189999,42.77,2,1,1,0,0,9,5,1,529,422512.44,0,0,4193.1074 -10220,12585,22908,22909,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,5,0,8.4035711,8.4195042,1,0,-9,6,0,-1,-11.673436,0,0,0,79,1,1,3,2,2,2019,4,1,9,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.3995714,0,1,54.5,57.5,65.660004,28.389999,7,1,1,0,0,11,4,1,775.5,965512.75,0,0,3440.4531 -10220,12585,22909,22908,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,1,0,7.8418393,7.7062273,1,0,-9,6,0,1,1.7541803,0,0,0,78,2,5,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8215251,7.9379368,0,0,65.660004,28.389999,54.5,57.5,6,1,1,0,0,11,4,1,775.5,965512.75,0,0,3440.4531 -10221,12586,22910,22911,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.413517,7.6256394,6.1803522,1,0,-9,44,0,-7,-109.6689,0,0,0,66,3,3,3,3,2,2019,2,1,21,9,22,22,15,1,1,4,0,8.5146341,8.5146341,0,0,0,0,0,0,0,2,1,1,0,6.0797787,6.4197612,0,3,46.290001,54.220001,49.290001,54.59,5,1,1,0,0,6,3,1,432.5,73947.984,0,0,1265.3899 -10221,12586,22911,22910,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,5.9990368,5.7690105,1,0,-9,44,0,7,144.35023,0,0,0,59,2,4,1,3,3,2019,3,2,23,9,0,37,15,4,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2385366,5.6758895,15.874799,3,49.290001,54.59,46.290001,54.220001,5,1,1,0,0,6,3,1,432.5,73947.984,0,0,1265.3899 -10222,12587,22912,-9,-9,-9,1,1,1,43,3,0,0,0,3,-9,2,1,0,0,5,8.3624945,8.1882362,0,3,0,0,0,-9,0,-930.35345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,40,15,1,0,-9,0,8.2347336,8.2347336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,4,4,1,5569,168914.86,0,0,1780.3624 -10223,12588,22913,22914,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-1,104.96581,0,0,0,69,3,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.980003,34.419998,60.290001,52.110001,7,1,1,0,0,13,2,0,889.5,376131.34,0,0,1998.9063 -10223,12588,22914,22913,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,5.6667881,5.6331458,1,0,-9,7,0,1,-41.158581,0,0,0,68,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2166224,0,0,60.290001,52.110001,65.980003,34.419998,6,1,1,0,0,13,2,0,889.5,376131.34,0,0,1998.9063 -10224,12589,22915,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,0,4,6.1551094,7.8189144,7.3969812,3,0,0,0,-9,0,-1072.5498,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,6,18,15,1,0,-9,0,8.1448488,8.1448488,0,0,0,0,0,0,0,0,1,1,0,6.3536005,6.8415146,0,0,56.57,57.779999,-9,-9,6,1,1,0,0,9,3,1,3638,331190.59,0,0,2434.9583 -10225,12590,22916,-9,-9,22918,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-975.94708,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,3,1,589.33331,64349.977,0,0,1939.0128 -10225,12590,22917,-9,-9,22918,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1138.6367,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,2,3,1,589.33331,64349.977,0,0,1939.0128 -10225,12590,22918,-9,-9,-9,1,1,1,36,3,0,2,0,2,-9,2,1,0,0,3,8.0775766,8.0844355,3.2115703,4,0,0,0,-9,0,-936.00958,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,40,25,15,1,0,-9,0,8.6787415,8.6787415,0,0,0,0,0,0,0,0,1,1,0,3.3461473,0,0,0,51.66,46.639999,-9,-9,6,2,3,0,0,2,3,1,589.33331,64349.977,0,0,1939.0128 -10226,12591,22919,22920,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,8.6291656,8.3339529,1,0,-9,52,0,3,-45.608074,0,0,0,70,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2865248,0,0,57.900002,51.84,57.16,56.150002,6,1,1,0,0,7,4,1,240,1436878,0,0,4671.8574 -10226,12591,22920,22919,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.4667125,7.7769504,1,0,-9,53,0,-3,2.9714465,0,0,0,73,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6208339,7.546772,0,0,57.16,56.150002,57.900002,51.84,7,1,1,0,0,7,4,1,240,1436878,0,0,4671.8574 -10227,12592,22921,-9,22923,22924,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.898,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,1,1215.75,195788.5,0,0,8063.7646 -10227,12592,22922,-9,22923,22924,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.8025,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,3,1,1215.75,195788.5,0,0,8063.7646 -10227,12592,22923,22924,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,0,4,7.893671,7.8590822,5.9120078,2,0,-9,11,0,8,-40.201721,0,0,1,32,2,4,1,1,1,2019,1,2,11,1,20,20,15,1,0,1,0,16.685703,16.685703,0,0,0,0,0,0,0,0,1,1,0,9.7187099,0,0,0,28.35,65.410004,41.060001,62.040001,6,1,1,0,0,9,3,1,1215.75,195788.5,0,0,8063.7646 -10227,12592,22924,22923,-9,-9,2,1,1,32,1,0,2,0,2,-9,1,1,0,0,4,7.7051826,7.8247557,0,2,0,-9,11,0,-8,-121.97652,0,0,0,40,1,4,1,1,1,2019,1,1,10,1,50,40,15,1,0,1,0,6.157753,6.157753,0,0,0,0,0,0,0,0,1,1,0,2.8201852,0,0,0,41.060001,62.040001,28.35,65.410004,6,1,1,0,0,9,3,1,1215.75,195788.5,0,0,8063.7646 -10228,12593,22925,22926,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,0,95.592766,0,0,0,64,2,3,3,3,-9,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.66,59.029999,28.879999,53,5,1,1,0,0,11,2,1,375,261027.59,0,0,2475.1143 -10228,12593,22926,22925,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,5.7750974,5.3047314,1,0,-9,48,0,0,9.5338621,0,0,0,64,3,3,3,3,-9,2019,4,2,24,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96985877,5.6615,0,0,28.879999,53,29.66,59.029999,3,1,1,0,0,11,2,1,375,261027.59,0,0,2475.1143 -10229,12594,22927,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-940.37286,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.98,54.619999,-9,-9,3,1,1,1,0,1,1,0,297,-49239.297,0,0,400.66901 -10230,12595,22928,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,8.585989,8.5718851,0,3,0,0,0,-9,0,-990.35229,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,55,37,15,1,0,-9,0,11.213696,11.213696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,13,5,1,828,47934.762,0,0,822.54846 -10231,12596,22929,22930,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,3,8.7605848,8.7420568,0,1,0,-9,6,0,1,-.99945956,-9,0,0,49,2,3,1,3,2,2019,1,2,11,1,45,0,15,1,0,1,0,16.974655,16.974655,0,0,0,0,0,0,0,0,0,0,0,2.4032044,0,0,0,43.32,52.98,56.549999,45.59,4,1,1,0,0,7,5,1,798.5,1095416.1,0,0,3925.8896 -10231,12596,22930,22929,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.9012594,8.7811375,0,1,0,-9,6,0,-1,-13.644193,-9,0,0,50,1,3,1,-9,-9,2019,1,1,13,1,41,0,15,1,0,1,0,17.254267,17.254267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.549999,45.59,43.32,52.98,6,1,1,0,0,7,5,1,798.5,1095416.1,0,0,3925.8896 -10232,12597,22931,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,1,3,7.8711543,8.003788,5.91115,4,0,0,0,-9,0,-1123.7709,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,33,36,15,1,0,-9,0,9.9256058,9.9256058,0,0,0,0,0,0,0,0,1,1,0,5.8608499,0,0,0,53.169998,43.02,-9,-9,6,1,1,0,0,11,3,1,964.33331,-101702.96,0,0,3271.7222 -10232,12597,22932,-9,22931,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-944.51941,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,1,964.33331,-101702.96,0,0,3271.7222 -10232,12597,22933,-9,22931,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-900.40332,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,3,1,964.33331,-101702.96,0,0,3271.7222 -10233,12598,22934,22937,-9,-9,1,1,0,48,1,0,2,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,31,0,-2,-43.529545,0,0,0,50,1,4,1,2,1,2019,3,2,21,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6714702,0,0,0,46.560001,37.029999,49.349998,59.639999,4,1,1,0,0,8,5,1,955,549582.88,0,0,3474.5486 -10233,12598,22935,-9,22934,22937,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1141.4237,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,8,5,1,955,549582.88,0,0,3474.5486 -10233,12598,22936,-9,22934,22937,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.36328,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,8,5,1,955,549582.88,0,0,3474.5486 -10233,12598,22937,22934,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,4,9.450923,9.4824257,0,2,0,-9,31,0,2,-51.559196,0,0,0,48,1,2,3,3,1,2019,2,1,16,6,43,44,15,1,1,3,0,33.529491,33.529491,0,0,0,0,0,0,0,0,0,0,0,1.4242432,0,0,0,49.349998,59.639999,46.560001,37.029999,5,1,1,0,0,8,5,1,955,549582.88,0,0,3474.5486 -10234,12599,22938,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,4,0,5.4312315,5.6066551,3,0,0,0,-9,0,-1010.9481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7397385,5.4451866,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,12,2,1,1439,114973.07,0,0,1914.8566 -10235,12600,22939,-9,22940,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-975.50275,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,1,0,771.33331,0,0,0,1239.4124 -10235,12600,22940,-9,-9,-9,1,1,0,26,2,1,2,0,2,-9,6,3,0,0,5,0,0,0,4,0,0,0,-9,0,-889.6319,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.9471631,3,52.66,56.939999,-9,-9,5,4,2,0,0,7,1,0,771.33331,0,0,0,1239.4124 -10235,12600,22941,-9,22940,-9,2,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-857.57251,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,7,1,0,771.33331,0,0,0,1239.4124 -10236,12601,22942,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,3,8.4262018,8.3488979,0,3,0,0,0,-9,0,-952.56726,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,37,37,15,1,0,-9,0,10.815763,10.815763,0,0,0,0,0,0,0,0,0,0,0,6.1541986,0,0,0,43.610001,56.009998,-9,-9,5,1,1,0,0,6,4,0,592,54771.484,0,0,2786.9629 -10237,12602,22943,22944,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,3,0,8.1018467,8.1533976,1,0,-9,42,0,-1,13.322626,0,0,0,62,1,3,1,3,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8558023,7.8843632,0,0,29.280001,63.830002,35.799999,59.5,6,1,1,0,0,9,5,1,531,2609616.5,0,0,2517.3794 -10237,12602,22944,22943,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,0,3,8.0714512,8.2109499,0,1,0,-9,42,0,1,52.750538,0,0,0,61,1,3,3,2,1,2019,2,1,13,2,25,25,15,1,0,4,0,26.125816,26.125816,0,0,0,0,0,0,0,0,0,0,0,1.9360991,0,0,0,35.799999,59.5,29.280001,63.830002,2,1,1,0,0,9,5,1,531,2609616.5,0,0,2517.3794 -10238,12603,22945,22946,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,9.2448454,9.0154257,0,1,0,-9,11,0,-2,-54.466568,0,0,0,57,3,2,1,-9,-9,2019,1,1,7,0,70,80,15,1,0,1,0,13.316627,13.316627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.689999,50.66,50.080002,6,1,1,0,0,4,5,1,664,593117.13,0,0,3537.4688 -10238,12603,22946,22945,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,0,2,6.263392,6.3468647,0,1,0,-9,30,0,2,56.304493,-9,0,0,55,2,2,1,3,3,2019,1,2,9,0,8,0,15,1,0,1,0,9.4425755,9.4425755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.66,50.080002,57.57,49.689999,4,1,1,0,0,4,5,1,664,593117.13,0,0,3537.4688 -10239,12604,22947,22948,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,1,1,0,2.1279058,2.5201602,1,0,-9,36,0,3,16.795832,0,0,0,65,3,2,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,2.300395,20.131046,3,44.32,16.32,46.02,37.310001,3,1,1,0,0,5,1,0,1092,-92179.961,0,0,4040.6094 -10239,12604,22948,22947,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,36,0,-3,58.307678,0,0,0,68,2,1,3,3,3,2019,4,2,26,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.206993,2,46.02,37.310001,44.32,16.32,2,1,1,0,0,5,1,0,1092,-92179.961,0,0,4040.6094 -10239,12605,22949,-9,22948,22947,3,1,1,30,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1030.7302,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,5,1,0,6282,-40816.652,0,0,444.24005 -10240,12606,22950,-9,22954,22953,1,1,1,31,2,0,0,0,2,-9,2,1,0,0,4,7.7965369,7.7731676,0,3,0,0,0,-9,0,-968.57037,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,45,35,15,1,0,-9,1,7.5733647,7.5733647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,58,-9,-9,5,2,3,0,0,8,3,1,2119,-71168.172,0,0,1655.4132 -10240,12607,22951,-9,22954,22953,2,1,0,22,2,0,0,1,1,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1052.9971,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6807873,3,34.810001,57.209999,-9,-9,5,2,3,0,0,8,1,1,147,-37547.746,0,0,0 -10240,12608,22952,-9,22954,22953,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.1004815,7.294879,0,3,0,0,0,-9,0,-966.92444,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,30,35,15,1,0,-9,1,4.8952422,4.8952422,0,0,0,0,0,0,0,0,1,1,0,.6116454,0,0,3,46,58,-9,-9,5,2,3,0,0,8,3,1,1931,0,0,0,-1363.7943 -10240,12609,22953,22954,-9,-9,5,1,1,64,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,11,0,4,0,0,0,0,60,3,3,3,-9,-9,2019,4,4,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,48,49,5,2,3,0,0,8,1,1,851.5,334168.88,0,0,2019.5779 -10240,12609,22954,22953,-9,-9,4,1,0,60,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,45,0,-4,0,0,0,0,64,3,3,3,3,2,2019,4,5,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.96590877,1,48,49,51,49,5,2,3,0,0,8,1,1,851.5,334168.88,0,0,2019.5779 -10241,12610,22955,22956,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,8,0,-7,0,0,0,0,63,3,3,3,3,3,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.709999,19.4,31.440001,50.220001,5,1,1,0,1,12,1,0,849.5,386007.31,0,0,584.12006 -10241,12610,22956,22955,-9,-9,1,1,1,63,1,0,0,0,3,-9,3,3,0,1,3,0,0,0,1,0,-9,8,0,7,0,0,0,0,56,3,1,3,-9,3,2019,4,2,24,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.9532,2,31.440001,50.220001,37.709999,19.4,4,1,1,1,0,12,1,0,849.5,386007.31,0,0,584.12006 -10242,12611,22957,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,2,1,0,0,5,9.0176182,9.1247635,2.0135119,3,0,0,0,-9,0,-929.48676,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,50,15,1,0,-9,0,21.539,21.539,0,0,0,0,0,0,0,2,0,0,0,0,2.3544273,2.7585604,3,62.389999,56.709999,-9,-9,6,1,1,0,0,7,5,0,5094,1012725.4,0,0,4278.5728 -10243,12612,22958,22959,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,7.7935681,7.9719992,0,1,0,-9,2,0,0,58.97131,-9,1,1,25,1,4,1,-9,-9,2019,1,1,12,2,41,0,15,1,0,1,0,6.7836046,6.7836046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.099998,63.290001,44.299999,58.080002,6,1,1,0,0,5,5,0,993.5,-29883.518,0,0,2651.7275 -10243,12612,22959,22958,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,0,4,8.6174469,8.1743431,0,1,0,-9,2,0,0,45.335011,0,1,0,25,1,4,1,-9,-9,2019,1,2,8,0,37,42,15,1,0,1,0,16.578026,16.578026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.299999,58.080002,36.099998,63.290001,6,1,1,0,0,5,5,0,993.5,-29883.518,0,0,2651.7275 -10244,12613,22960,-9,-9,-9,2,1,1,36,2,0,0,0,2,-9,2,1,0,0,4,8.4302807,8.649931,0,1,0,-9,6,0,-13,-20.935776,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,12,3,38,38,15,1,0,-9,0,14.870036,14.870036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,38.630001,56.700001,5,1,1,0,0,5,5,1,439,15616.821,0,0,549.2229 -10245,12614,22961,22962,-9,-9,1,1,1,27,1,0,3,0,2,-9,2,1,0,0,5,8.3140697,8.6308784,0,2,0,-9,7,0,-5,-7.7662177,0,1,0,32,3,3,3,-9,-9,2019,2,2,6,0,48,48,15,1,0,3,0,10.364587,10.364587,0,0,0,0,0,0,0,0,1,1,0,.3222101,0,0,0,48.77,60.16,46.080002,57.200001,6,1,1,0,0,10,3,0,706,-17537.416,0,0,2433.1748 -10245,12614,22962,22961,-9,-9,2,1,0,32,1,0,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,5,-101.9668,0,0,1,27,2,5,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,48.77,60.16,6,1,1,0,0,10,3,0,706,-17537.416,0,0,2433.1748 -10245,12614,22963,-9,22962,22961,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.82941,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,3,0,706,-17537.416,0,0,2433.1748 -10245,12614,22964,-9,22962,22961,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.98883,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,0,706,-17537.416,0,0,2433.1748 -10245,12614,22965,-9,22962,22961,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1213.4677,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,0,706,-17537.416,0,0,2433.1748 -10246,12615,22966,22967,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,8.3876543,8.8496857,7.3494267,1,0,-9,38,0,-3,102.92928,0,0,0,70,2,3,3,-9,2,2019,2,1,10,0,24,32,15,1,0,4,0,25.432423,25.432423,0,0,0,0,0,0,0,0,1,1,0,8.1541786,7.6512561,0,0,40.779999,48.75,41.119999,43.310001,5,1,1,0,0,6,5,1,677.5,883317.75,0,0,4701.7012 -10246,12615,22967,22966,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.4011035,7.11199,1,0,-9,38,0,3,28.605032,0,0,0,67,2,3,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,1,0,2.7158587,0,0,0,38.283669,0,1,1,0,0,7.2374973,0,0,41.119999,43.310001,40.779999,48.75,6,1,1,0,0,6,5,1,677.5,883317.75,0,0,4701.7012 -10247,12616,22968,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,3,3,0,0,4,8.8573227,8.8620977,8.031867,3,0,0,0,-9,0,-975.85736,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8437867,8.2619038,0,0,51.830002,57.200001,-9,-9,6,1,1,1,0,1,5,1,178,1575951.8,0,0,2707.4919 -10248,12617,22969,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,0,3,9.1284122,9.0652428,5.9771519,4,0,0,0,-9,0,-1071.5248,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,34,33,15,1,1,-9,0,28.823238,28.823238,0,0,0,0,0,0,0,27.5,1,1,0,6.0822797,0,38.873341,3,33.389999,54.830002,-9,-9,2,3,4,0,0,6,5,1,2363.5,2322628.3,0,0,2605.679 -10248,12617,22970,-9,22969,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-905.15289,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,6,5,1,2363.5,2322628.3,0,0,2605.679 -10249,12618,22971,22972,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,4.7473187,4.6160913,1,0,-9,52,0,1,100.09881,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.7369699,4.6376767,8.279974,3,62.490002,55.09,59.529999,56.439999,7,1,1,0,0,9,2,1,1665.5,934612.75,0,0,2026.8945 -10249,12618,22972,22971,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.5048056,6.4603357,1,0,-9,8,0,-1,-26.681126,0,0,0,70,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.8392043,6.7194686,8.9787455,3,59.529999,56.439999,62.490002,55.09,6,1,1,0,0,9,2,1,1665.5,934612.75,0,0,2026.8945 -10250,12619,22973,22974,-9,-9,1,1,0,52,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,8,0,0,-54.338291,0,0,0,52,1,2,1,-9,-9,2019,3,2,17,6,0,43,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.957612,0,6.1011615,3,43.34,43.599998,30.860001,45.73,3,2,3,1,0,8,5,1,925,4913106.5,0,0,6794.5146 -10250,12619,22974,22973,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,2,9.2230282,9.4035063,0,1,0,-9,8,0,0,103.26514,0,0,0,52,2,3,3,2,2,2019,2,1,23,10,55,53,15,1,1,3,0,21.557869,21.557869,0,0,0,0,0,0,0,0,0,0,0,8.7455206,0,0,0,30.860001,45.73,43.34,43.599998,3,2,3,0,0,8,5,1,925,4913106.5,0,0,6794.5146 -10251,12620,22975,22977,-9,-9,1,1,0,43,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,24,0,-8,-199.4527,0,0,1,51,3,3,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,44.700001,53.68,6,2,3,0,0,8,2,0,1095.6,646325.94,0,0,2851.7493 -10251,12620,22976,-9,22975,22977,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1090.6775,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,8,2,0,1095.6,646325.94,0,0,2851.7493 -10251,12620,22977,22975,-9,-9,2,1,1,51,1,0,3,0,3,-9,1,1,0,0,3,7.4094071,7.5950556,0,2,0,-9,24,0,8,-22.366554,0,0,0,43,2,4,3,3,3,2019,2,1,13,1,24,24,15,1,0,3,0,8.8803463,8.8803463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.700001,53.68,54.790001,55.860001,3,2,3,0,0,8,2,0,1095.6,646325.94,0,0,2851.7493 -10251,12620,22978,-9,22975,22977,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1049.933,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,8,2,0,1095.6,646325.94,0,0,2851.7493 -10251,12620,22979,-9,22975,22977,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.77661,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,1095.6,646325.94,0,0,2851.7493 -10252,12621,22980,-9,22981,-9,1,1,1,56,3,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-969.23334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,38,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.2005119,3,46.549999,44.150002,-9,-9,4,1,1,1,0,12,1,1,2508,385057.88,0,0,0 -10252,12622,22981,-9,-9,-9,2,1,0,81,3,0,0,0,2,-9,6,3,0,0,4,0,5.1868868,5.255506,3,0,0,0,-9,0,-1006.5771,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.2777963,0,0,51.240002,58.84,-9,-9,7,1,1,0,0,12,2,1,462,-234513.66,0,0,533.5213 -10253,12623,22982,22984,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,5,8.2793322,8.1113586,0,2,0,-9,11,0,19,-41.247482,0,0,0,31,2,1,1,2,1,2019,1,2,2,0,60,48,15,1,0,1,0,5.8379474,5.8379474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.790001,52.889999,45.220001,18.540001,6,2,3,0,0,6,4,1,580,761002.13,0,0,2774.6045 -10253,12623,22983,-9,22984,22982,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.481,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,4,1,580,761002.13,0,0,2774.6045 -10253,12623,22984,22982,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,1,1,7.7372637,7.4978824,0,2,0,-9,11,0,-19,-28.003681,0,0,1,50,2,5,1,2,-9,2019,1,1,19,8,42,37,15,1,1,1,0,6.3404512,6.3404512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.220001,18.540001,58.790001,52.889999,1,2,3,0,1,6,4,1,580,761002.13,0,0,2774.6045 -10254,12624,22985,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,5,8.879446,8.6907167,0,3,0,0,0,-9,0,-921.61945,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,53,50,15,1,0,-9,0,18.017698,18.017698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.630001,57.91,-9,-9,7,2,3,0,0,8,5,0,451,781583.06,0,0,1197.2041 -10254,12625,22986,-9,-9,-9,2,1,1,49,3,0,0,0,2,-9,2,1,0,0,3,8.7132912,8.4661655,0,3,0,0,0,-9,0,-974.05896,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,4,45,46,15,1,1,-9,0,16.810089,16.810089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,33.560001,-9,-9,6,2,3,0,0,8,5,0,1504,110329.92,0,0,2687.8813 -10254,12626,22987,-9,-9,-9,3,1,1,44,3,0,0,0,2,-9,2,1,0,0,4,8.5912828,8.9931602,0,3,0,0,0,-9,0,-1083.4528,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,3,37,46,15,1,0,-9,0,18.629761,18.629761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.290001,46.970001,-9,-9,6,2,3,0,0,8,5,0,1192,-40497.18,0,0,3475.1111 -10254,12627,22988,-9,-9,-9,4,1,1,43,3,0,0,0,2,-9,2,1,0,0,4,8.7876501,8.8082056,0,3,0,0,0,-9,0,-945.99548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,46,15,1,0,-9,0,20.279711,20.279711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,5,0,680,1194523.1,0,0,3013.3433 -10255,12628,22989,22990,-9,-9,1,1,0,57,1,0,0,0,2,-9,1,1,0,1,3,5.9896011,6.1027484,0,1,0,-9,34,0,-2,-112.09202,0,0,0,59,1,4,1,2,2,2019,1,2,23,8,5,12,15,1,1,1,0,12.151229,12.151229,0,0,0,0,0,0,0,0,1,1,0,2.4756374,0,0,0,37.529999,28.43,35.380001,63.459999,4,1,1,0,0,9,5,1,379.5,870582.94,0,0,3196.0674 -10255,12628,22990,22989,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,9.2594395,9.0710669,0,1,0,-9,34,0,2,-123.65357,0,0,0,57,2,3,1,2,1,2019,1,1,12,1,45,45,15,1,0,1,0,24.036861,24.036861,0,0,0,0,0,0,0,0,1,1,0,4.4016156,0,0,0,35.380001,63.459999,37.529999,28.43,5,1,1,0,0,9,5,1,379.5,870582.94,0,0,3196.0674 -10256,12629,22991,-9,-9,-9,1,1,0,48,2,1,2,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-936.02185,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.315918,3,38.279999,31.67,-9,-9,3,1,1,0,1,13,1,1,373,102810.23,0,0,1025.368 -10256,12630,22992,-9,22993,22994,6,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.3413,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,1,1,1339.3334,62789.023,0,0,1540.4763 -10256,12630,22993,22994,-9,-9,5,1,0,23,1,1,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,2,0,-3,0,0,1,1,26,3,5,3,-9,-9,2019,4,2,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.060001,64.459999,57.060001,57.759998,6,1,1,0,0,13,1,1,1339.3334,62789.023,0,0,1540.4763 -10256,12630,22994,22993,22991,-9,2,1,1,26,1,1,2,0,3,-9,8,3,1,1,5,0,0,0,2,0,-9,2,0,3,0,0,1,0,23,2,5,3,3,-9,2019,4,5,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,39.060001,64.459999,6,1,1,0,0,13,1,1,1339.3334,62789.023,0,0,1540.4763 -10256,12631,22995,-9,22991,-9,3,1,0,25,2,1,2,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1064.4526,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,1,1862,248160.44,0,0,923.35089 -10257,12632,22996,22997,-9,-9,1,1,1,58,1,0,1,0,3,-9,2,1,0,0,3,7.3563151,7.2274795,0,2,0,-9,4,0,7,74.524727,0,0,0,51,3,3,3,-9,-9,2019,2,2,10,1,26,26,15,1,0,3,0,8.3537474,8.3537474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,58.93,34.939999,5,2,3,0,0,2,2,1,567,-20764.676,0,0,1655.3268 -10257,12632,22997,22996,-9,-9,2,1,0,51,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-7,26.078932,0,0,0,58,3,3,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8453407,3,58.93,34.939999,50,49,5,2,3,0,0,2,2,1,567,-20764.676,0,0,1655.3268 -10257,12632,22998,-9,22997,22996,5,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-960.96222,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,2,3,0,0,2,2,1,567,-20764.676,0,0,1655.3268 -10258,12633,22999,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,4,0,7.4301591,7.7099848,3,0,0,0,-9,0,-927.09601,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3700981,7.6195073,0,0,66.800003,33.880001,-9,-9,7,1,1,0,0,9,3,1,143,603196.31,0,0,2082.4834 -10259,12634,23000,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,4,0,7.1770854,7.329258,3,0,0,0,-9,0,-889.11737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0822673,7.0945878,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,11,2,1,192,633502.63,0,0,-29.500429 -10260,12635,23001,23002,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,0,4,9.0056076,8.9213772,0,2,0,-9,4,0,-5,-15.530816,0,0,0,44,2,4,3,2,2,2019,2,2,18,6,43,45,15,1,1,3,0,16.901447,16.901447,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.869999,61.029999,44.080002,59.330002,5,1,1,0,0,7,4,1,567.5,251063.23,0,0,2439.467 -10260,12635,23002,23001,-9,-9,2,1,0,44,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,5,133.9494,0,0,1,39,1,4,1,-9,2,2019,3,1,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.65268975,3,44.080002,59.330002,37.869999,61.029999,5,1,1,0,0,7,4,1,567.5,251063.23,0,0,2439.467 -10260,12635,23003,-9,23002,23001,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1095.0701,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,4,1,567.5,251063.23,0,0,2439.467 -10260,12635,23004,-9,23002,23001,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.2734,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,1,567.5,251063.23,0,0,2439.467 -10261,12636,23005,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,2,7.6979141,8.1155872,6.0069504,3,0,0,0,-9,0,-1073.7495,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,37,37,15,1,0,-9,0,6.8819966,6.8819966,0,0,0,0,0,0,0,0,0,0,0,0,6.4617081,0,0,45.509998,48.290001,-9,-9,3,1,1,0,1,1,4,1,1885,158068.86,0,0,2796.2634 -10261,12637,23006,-9,23005,-9,2,1,0,22,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1027.1461,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.119999,53.02,-9,-9,5,1,1,0,0,1,1,1,236,-27355.197,0,0,-1689.3629 -10261,12638,23007,-9,23005,-9,3,1,1,26,2,0,0,0,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-986.1181,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.16,54.240002,-9,-9,3,1,1,0,1,1,1,1,197,-71088.203,0,0,0 -10262,12639,23008,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,1,1,0,6.9507074,6.6286287,3,0,0,0,-9,0,-1000.9943,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,4,1,-9,0,0,0,1,39.918571,0,0,0,0,403.09924,0,1,1,0,6.7087445,0,0,0,24.93,19.950001,-9,-9,1,4,2,0,1,10,2,0,1004,35180.355,0,0,706.66351 -10263,12640,23009,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-991.67834,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.77,16.84,-9,-9,6,1,1,0,0,9,1,0,738,63373.441,0,0,1092.1211 -10263,12641,23010,-9,23009,-9,2,1,1,28,2,0,0,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1014.8705,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,50,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,1,0,9,1,0,400,-121957.17,0,0,74.643753 -10264,12642,23011,23012,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,8.9621639,8.9509773,1,0,-9,53,0,7,-45.334076,0,0,0,74,2,3,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1103792,9.1848211,0,0,36.779999,50.869999,44.82,42.830002,4,1,1,0,0,4,5,1,954.5,358330.06,0,0,6377.9297 -10264,12642,23012,23011,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-7,-11.842605,0,0,0,81,2,3,3,2,2,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4629784,0,0,0,44.82,42.830002,36.779999,50.869999,7,1,1,0,0,4,5,1,954.5,358330.06,0,0,6377.9297 -10265,12643,23013,-9,23016,23015,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1123.1808,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,4,1,693,440099.78,0,0,3465.5068 -10265,12643,23014,-9,23016,23015,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-886.81268,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,4,1,693,440099.78,0,0,3465.5068 -10265,12643,23015,23016,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,9.4400816,9.0954876,0,2,0,-9,9,0,-2,-90.157112,0,0,0,48,2,4,3,-9,-9,2019,2,1,7,0,36,36,15,1,0,3,0,29.617397,29.617397,0,0,0,0,0,0,0,0,0,0,0,4.254684,0,0,0,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,12,4,1,693,440099.78,0,0,3465.5068 -10265,12643,23016,23015,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,2,114.69756,0,0,0,46,2,4,1,3,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,12,4,1,693,440099.78,0,0,3465.5068 -10266,12644,23017,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,1,2,0,6.8423448,7.0297127,3,0,0,0,-9,0,-939.81915,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.79083902,6.5662589,0,0,44.900002,25.52,-9,-9,6,4,2,0,0,8,2,1,1165,856154.44,0,0,1898.7205 -10266,12645,23018,-9,23017,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,0,3,0,3.7140474,3.8603384,3,0,0,0,-9,0,-907.09247,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9510672,0,0,46.860001,55.66,-9,-9,6,4,2,0,0,8,2,1,105,-134707.8,0,0,-515.1814 -10267,12646,23019,23021,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,3,8.4676676,8.4933262,0,2,0,-9,5,0,0,15.930652,0,0,0,38,1,4,1,-9,-9,2019,1,2,16,3,60,65,15,1,0,1,0,14.018783,14.018783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.240002,42.380001,58.150002,52.91,5,1,1,0,0,13,5,1,234.33333,370278.88,0,0,4202.7515 -10267,12646,23020,-9,23021,23019,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.47137,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,5,1,234.33333,370278.88,0,0,4202.7515 -10267,12646,23021,23019,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.7599401,8.6368856,0,2,0,-9,5,0,0,58.422287,0,0,1,38,2,3,1,-9,-9,2019,1,1,7,0,39,40,15,1,0,1,0,15.353277,15.353277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,46.240002,42.380001,6,1,1,0,0,13,5,1,234.33333,370278.88,0,0,4202.7515 -10268,12647,23022,23023,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,7.3987837,7.8290272,1,0,-9,42,0,12,23.931427,0,0,0,61,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2220402,0,0,47.650002,36.73,58.150002,52.91,6,1,1,0,0,8,4,0,425.5,990590.63,0,0,3581.2805 -10268,12647,23023,23022,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,4,8.1091633,7.8116846,0,1,0,-9,42,0,-12,59.559258,0,0,0,73,2,2,3,2,3,2019,2,1,7,0,37,37,15,1,0,4,0,10.355339,10.355339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,47.650002,36.73,6,1,1,0,0,8,4,0,425.5,990590.63,0,0,3581.2805 -10269,12648,23024,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,3,8.3561459,8.1947212,0,3,0,0,0,-9,0,-813.85242,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,126,112,15,1,0,-9,0,4.4803724,4.4803724,0,0,0,0,0,0,0,0,0,0,0,1.3089628,0,0,0,62.27,48.470001,-9,-9,6,1,1,0,0,10,5,0,583,360905.75,0,0,1573.7115 -10270,12649,23025,23026,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,3,0,7.5535803,7.877913,1,0,-9,57,0,1,-50.419834,0,0,0,76,3,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,11.356089,0,0,0,0,0,1,1,0,4.8812695,7.7241926,0,0,54,46,52.82,53.970001,6,1,1,0,0,4,3,1,262.5,718028.38,0,0,2531.0154 -10270,12649,23026,23025,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,57,0,-1,65.902191,0,0,0,77,1,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.1872993,0,3.3693588,1,52.82,53.970001,54,46,7,1,1,0,0,4,3,1,262.5,718028.38,0,0,2531.0154 -10271,12650,23027,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,4,3,0,0,2,0,7.5623026,7.2834821,3,0,0,0,-9,0,-1018.3294,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.7946877,0,0,51.150002,29.26,-9,-9,3,1,1,0,0,2,3,1,1206,886400.19,0,0,614.48126 -10271,12651,23028,-9,-9,23027,2,1,1,30,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-952.16302,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.969999,52.119999,-9,-9,2,1,1,1,0,2,1,1,1103,0,0,0,439.97354 -10272,12652,23029,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,2,7.2833986,7.341723,0,3,0,0,0,-9,0,-912.64893,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,35,15,15,1,1,-9,0,4.3934665,4.3934665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.4,34.450001,-9,-9,1,1,1,0,1,4,3,0,2192,-87447.414,0,0,536.48926 -10272,12653,23030,-9,23029,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,3,7.6179962,7.6486983,0,3,0,0,0,-9,0,-1007.5627,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,38,0,15,1,0,-9,1,6.3981361,6.3981361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,7,1,1,0,0,4,3,0,576,-24155.936,0,0,2016.8698 -10273,12654,23031,-9,23032,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-985.73499,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,2,0,508,41095.359,0,0,1089.8621 -10273,12654,23032,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,0,4,7.2160807,7.2655745,0,4,0,0,0,-9,0,-986.87878,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,28,22,15,1,0,-9,0,5.4329,5.4329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,12,2,0,508,41095.359,0,0,1089.8621 -10274,12655,23033,23034,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,7.9709134,7.9194551,1,0,-9,49,0,4,-54.005642,0,0,0,71,3,3,3,3,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2825537,7.9666967,0,0,46.639999,25.049999,53.23,42.900002,5,1,1,0,0,9,3,1,656,1170670.3,0,0,2741.686 -10274,12655,23034,23033,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-4,-77.592735,0,0,0,75,2,2,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6501942,0,0,0,53.23,42.900002,46.639999,25.049999,6,1,1,0,0,9,3,1,656,1170670.3,0,0,2741.686 -10275,12656,23035,23036,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.7917237,6.0398464,1,0,-9,6,0,9,-47.144215,0,0,0,62,2,3,1,3,3,2019,3,1,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4945722,0,0,53,46,48.650002,51.93,5,1,1,0,0,9,3,0,291.5,1056932.5,0,0,2846.2803 -10275,12656,23036,23035,-9,-9,1,1,0,62,1,0,0,0,2,-9,1,1,0,0,3,7.7201519,7.7661157,0,1,0,-9,42,0,0,-194.08559,0,0,0,71,3,3,3,2,3,2019,2,2,13,2,30,26,15,1,0,4,0,8.8416452,8.8416452,0,0,0,0,0,0,0,14.5,1,1,0,5.4150105,0,17.830883,3,48.650002,51.93,53,46,6,1,1,0,0,9,3,0,291.5,1056932.5,0,0,2846.2803 -10276,12657,23037,23038,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,8.4112949,8.0701389,0,1,0,-9,4,0,1,-109.98742,0,0,1,30,1,3,1,-9,2,2019,1,2,7,0,37,37,15,1,0,1,0,14.063886,14.063886,0,0,0,0,0,0,0,0,0,0,0,3.8368101,0,0,0,49.119999,57.279999,28.969999,59.759998,6,1,1,0,0,6,5,1,184,195411.47,0,0,4094.8223 -10276,12657,23038,23037,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,8.8188143,8.6791573,0,1,0,-9,4,0,-1,-35.500317,0,0,0,31,1,4,1,-9,-9,2019,1,1,19,7,42,40,15,1,1,1,0,13.569392,13.569392,0,0,0,0,0,0,0,0,0,0,0,4.0409565,0,0,0,28.969999,59.759998,49.119999,57.279999,6,1,1,0,0,6,5,1,184,195411.47,0,0,4094.8223 -10277,12658,23039,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,2,1,0,0,3,3.5138967,3.5829897,0,3,0,0,0,-9,0,-1027.1851,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1622515,0,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,4,2,1,1852,374697.72,0,0,1097.3655 -10278,12659,23040,23041,-9,-9,1,1,1,49,1,0,1,0,3,-9,2,1,0,1,1,8.1730852,7.9133091,0,2,0,-9,10,0,4,-65.667023,0,0,0,45,1,3,1,3,3,2019,1,2,12,1,42,43,15,1,0,1,0,7.244863,7.244863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.040001,22.780001,49.900002,51.279999,5,1,1,0,0,13,4,1,580.5,153607.72,0,0,3309.9468 -10278,12659,23041,23040,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,3,8.0858002,8.1259041,0,2,0,-9,10,0,-4,-40.482948,0,0,0,49,3,1,1,3,3,2019,1,1,12,0,38,37,15,1,0,1,0,9.7775803,9.7775803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.900002,51.279999,36.040001,22.780001,3,1,1,0,0,13,4,1,580.5,153607.72,0,0,3309.9468 -10278,12660,23042,-9,23041,23040,3,1,0,18,2,0,1,1,2,0,7,2,0,0,2,6.6387949,6.8815484,0,3,0,0,0,-9,0,-1123.9673,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,12,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.450001,51.43,-9,-9,5,1,1,0,0,13,2,1,1211,360020.56,0,0,80.032829 -10279,12661,23043,23045,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,0,2,8.1278706,8.2088671,0,2,0,-9,21,0,3,-155.88416,0,0,0,51,2,3,1,2,-9,2019,1,2,17,5,30,42,15,1,1,1,0,16.42321,16.42321,0,0,0,0,0,0,0,2,1,1,0,0,0,4.2515936,3,39.5,42.959999,38.75,53.759998,3,1,1,0,0,9,4,1,896.33331,1410562.8,0,0,2923.8926 -10279,12661,23044,-9,23045,23043,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.25909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,4,1,896.33331,1410562.8,0,0,2923.8926 -10279,12661,23045,23043,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,3,7.7757235,7.9975462,0,2,0,-9,21,0,-3,-54.655926,0,0,0,54,2,2,1,-9,-9,2019,1,1,13,1,8,8,15,1,0,1,0,33.002346,33.002346,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.75,53.759998,39.5,42.959999,4,1,1,0,0,9,4,1,896.33331,1410562.8,0,0,2923.8926 -10280,12662,23046,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,7.4102521,7.0522094,3,0,0,0,-9,0,-986.0899,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0055633,7.0100794,0,0,44.34,44.439999,-9,-9,4,1,1,0,0,2,2,1,1330,459859.69,0,0,1742.9131 -10281,12663,23047,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,3,0,7.3114944,7.3526788,3,0,0,0,-9,0,-909.23077,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8716545,7.3067837,0,0,55.369999,40.830002,-9,-9,6,1,1,0,0,10,3,1,156,695961.63,0,0,1720.4146 -10282,12664,23048,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,8.5309134,9.2291412,3,0,0,0,-9,0,-1053.7244,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6816511,8.9594011,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,11,5,1,620,175111.55,0,0,4834.0498 -10283,12665,23049,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,3,8.1544762,7.8523731,0,3,0,0,0,-9,0,-1048.8475,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,37,15,1,0,-9,0,10.156507,10.156507,0,0,0,0,0,0,0,0,0,0,0,3.568146,0,0,0,38.16,44.66,-9,-9,5,1,1,0,0,4,4,1,726,65056.328,0,0,1106.9824 -10284,12666,23050,23053,-9,-9,1,1,0,32,1,0,2,0,3,-9,2,1,0,0,3,6.893158,7.129879,0,2,0,-9,6,0,-1,-27.311752,0,0,1,33,2,5,1,2,2,2019,1,3,12,0,22,26,15,1,0,1,0,8.0957508,8.0957508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,54.259998,44.049999,51.220001,4,1,1,0,0,2,3,0,455,71445.656,0,0,3604.2244 -10284,12666,23051,-9,23050,23053,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.9021,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,455,71445.656,0,0,3604.2244 -10284,12666,23052,-9,23050,23053,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.8551,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,0,455,71445.656,0,0,3604.2244 -10284,12666,23053,23050,-9,-9,3,1,1,33,1,0,2,0,2,-9,2,1,0,0,5,7.867857,8.1087236,0,2,0,-9,6,0,1,-76.46711,0,0,0,32,3,3,1,-9,-9,2019,1,1,24,12,40,40,15,1,1,1,0,8.8313656,8.8313656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.049999,51.220001,49.580002,54.259998,7,1,1,0,0,2,3,0,455,71445.656,0,0,3604.2244 -10285,12667,23054,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1027.3943,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.150002,33.580002,-9,-9,3,1,1,0,0,9,1,0,97,24636.699,0,0,1303.2483 -10285,12668,23055,-9,23054,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,8.2891493,8.4643087,0,3,0,0,0,-9,0,-966.5816,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,46,54,15,1,1,-9,1,7.7804899,7.7804899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.41,64.050003,-9,-9,6,1,1,0,0,9,4,0,1121,-137094.55,0,0,1412.0596 -10286,12669,23056,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,1,2,0,6.3445134,6.29458,3,0,0,0,-9,0,-899.46814,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5980325,0,0,57.73,30.59,-9,-9,4,1,1,0,0,2,2,0,669,276723.97,0,0,1161.5446 -10287,12670,23057,23059,-9,-9,2,1,0,28,1,1,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,10,0,-3,-68.428062,0,1,1,31,2,3,1,2,2,2019,1,1,10,0,0,33,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.959999,46.52,29.91,57.889999,4,1,1,0,0,11,3,1,1082.75,11598.393,0,0,1658.9349 -10287,12670,23058,-9,23057,23059,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1121.502,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,11,3,1,1082.75,11598.393,0,0,1658.9349 -10287,12670,23059,23057,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,0,3,7.9153929,7.7606349,0,2,0,-9,10,0,3,-15.696463,0,0,0,28,2,3,1,2,2,2019,1,2,19,8,30,30,15,1,1,1,0,10.118232,10.118232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.91,57.889999,39.959999,46.52,3,1,1,0,0,11,3,1,1082.75,11598.393,0,0,1658.9349 -10287,12670,23060,-9,23057,23059,3,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.4895,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,1,1082.75,11598.393,0,0,1658.9349 -10288,12671,23061,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,1,5,0,6.0350685,6.0957618,3,0,0,0,-9,0,-997.21173,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8679862,0,0,57,52,-9,-9,5,1,1,0,0,5,2,1,1070,-174612.09,0,0,880.22174 -10289,12672,23062,-9,-9,-9,1,1,0,26,2,1,1,0,2,-9,2,1,0,0,3,7.8608208,7.7760863,0,4,0,0,0,-9,0,-1108.7487,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,25,15,1,0,-9,0,10.961832,10.961832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.509998,46.919998,-9,-9,4,1,1,0,0,4,3,0,465.5,105971.62,0,0,539.83716 -10289,12672,23063,-9,23062,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-880.44586,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,465.5,105971.62,0,0,539.83716 -10290,12673,23064,23065,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,8.9691,9.1828499,0,2,0,-9,21,0,1,-57.751728,0,0,0,43,1,5,1,2,1,2019,1,1,10,0,37,43,15,1,0,1,0,27.937666,27.937666,0,0,0,0,0,0,0,0,0,0,0,3.6455243,0,0,0,54.200001,57.490002,40.419998,63.93,6,1,1,0,0,8,5,1,680.75,927651.5,0,0,5118.7002 -10290,12673,23065,23064,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,5,8.3512526,8.4514046,0,2,0,-9,21,0,-1,114.3889,0,0,1,44,1,4,1,2,2,2019,1,2,13,1,27,31,15,1,0,1,0,18.890799,18.890799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.419998,63.93,54.200001,57.490002,5,1,1,0,0,8,5,1,680.75,927651.5,0,0,5118.7002 -10290,12673,23066,-9,23065,23064,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-916.37585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,8,5,1,680.75,927651.5,0,0,5118.7002 -10290,12673,23067,-9,23065,23064,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,5.0031433,4.6827641,0,2,0,0,0,-9,0,-1019.5632,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,3,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.16,32.18,-9,-9,6,1,1,0,0,8,5,1,680.75,927651.5,0,0,5118.7002 -10291,12674,23068,23069,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,5,7.8403311,7.9505243,0,1,0,-9,8,0,-16,-157.44713,0,0,0,63,2,1,1,-9,-9,2019,1,1,8,0,36,0,15,1,0,1,0,12.150525,12.150525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.129999,70.68,54.400002,28.02,6,1,1,0,0,11,4,1,276,998632,0,0,2822.0132 -10291,12674,23069,23068,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,1,1,7.7603045,7.6461768,0,1,0,-9,8,0,16,-89.647331,0,0,0,47,2,5,1,-9,-9,2019,1,2,10,1,60,45,15,1,0,1,0,4.4247394,4.4247394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.400002,28.02,31.129999,70.68,3,1,1,0,0,11,4,1,276,998632,0,0,2822.0132 -10292,12675,23070,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,0,4,0,5.7453585,5.58463,3,0,0,0,-9,0,-1086.7942,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,38,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7117128,5.4029694,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,9,2,1,512,363789.94,0,0,1383.1584 -10293,12676,23071,23074,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.397049,8.2430801,0,2,0,-9,16,0,5,34.474796,0,0,0,40,1,3,1,2,2,2019,1,2,6,0,46,48,15,1,0,1,0,12.024077,12.024077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,44.009998,41.98,6,1,1,0,0,1,5,1,733,504330.5,0,0,4235.936 -10293,12676,23072,-9,23074,23071,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.0851,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,5,1,733,504330.5,0,0,4235.936 -10293,12676,23073,-9,23074,23071,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.7565,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,5,1,733,504330.5,0,0,4235.936 -10293,12676,23074,23071,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,8.7552032,8.7768888,0,2,0,-9,18,0,-5,-109.14008,0,0,1,45,2,4,1,2,3,2019,1,1,16,4,39,47,15,1,1,1,0,19.687658,19.687658,0,0,0,0,0,0,0,0,1,1,0,1.0480462,0,0,0,44.009998,41.98,54.790001,55.860001,6,1,1,0,0,1,5,1,733,504330.5,0,0,4235.936 -10294,12677,23075,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,1,9.1932735,9.2848902,0,3,0,0,0,-9,0,-1024.7065,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,58,44,15,1,0,-9,0,19.249199,19.249199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.110001,30.77,-9,-9,6,1,1,0,0,1,5,1,947,45237.32,0,0,4063.2988 -10295,12678,23076,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-986.18274,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,1,1.6687444,0,0,0,6.4262104,37.869713,14.5,1,1,0,0,0,14.615628,3,47.459999,17.24,-9,-9,3,1,1,0,0,6,1,0,76,28668.709,0,0,752.50769 -10296,12679,23077,23078,-9,-9,1,1,0,38,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,4,0,-2,0,0,0,1,40,2,3,3,2,3,2019,4,2,20,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,41.950001,43.959999,55.639999,3,1,1,1,0,12,1,0,917,53309.453,0,0,630.07239 -10296,12679,23078,23077,-9,-9,2,1,1,40,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,4,0,2,0,-9,0,0,38,2,2,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1994658,3,43.959999,55.639999,33.07,41.950001,4,1,1,1,1,12,1,0,917,53309.453,0,0,630.07239 -10297,12680,23079,23080,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,2,0,6.8480182,6.457078,1,0,-9,52,0,1,63.849789,0,0,0,79,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.7810397,0,0,50.93,36.369999,56.5,48.330002,6,1,1,0,0,5,2,1,2802.5,35377.484,0,0,1320.6536 -10297,12680,23080,23079,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,2.5910108,2.8412311,1,0,-9,52,0,-1,-57.811813,0,0,0,80,3,2,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.356673,0,0,56.5,48.330002,50.93,36.369999,7,1,1,0,0,5,2,1,2802.5,35377.484,0,0,1320.6536 -10298,12681,23081,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,4,0,5.5881381,5.3756523,3,0,0,0,-9,0,-994.99316,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2368691,4.7834191,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,2,0,124,312913.56,0,0,1369.4204 -10299,12682,23082,-9,23083,23084,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.5691,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,1465,470976.53,0,0,6513.0933 -10299,12682,23083,23084,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,9.7653923,9.6477299,0,2,0,-9,15,0,4,-12.876037,0,0,1,36,2,3,1,2,2,2019,1,2,7,0,44,44,15,1,0,1,0,48.148556,48.148556,0,0,0,0,0,0,0,0,0,0,0,3.6836634,0,0,0,59.310001,49.810001,44.669998,37.650002,6,1,1,0,0,9,5,1,1465,470976.53,0,0,6513.0933 -10299,12682,23084,23083,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,3,8.6044083,8.3995066,0,2,0,-9,7,0,-4,-27.774622,0,0,0,40,1,3,1,2,-9,2019,1,1,18,7,35,45,15,1,1,1,0,15.852053,15.852053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.669998,37.650002,59.310001,49.810001,4,1,1,0,0,9,5,1,1465,470976.53,0,0,6513.0933 -10299,12682,23085,-9,23083,23084,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.0533,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1465,470976.53,0,0,6513.0933 -10300,12683,23086,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,0,4,8.7370882,9.0273399,0,3,0,0,0,-9,0,-883.27875,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,38,38,15,1,0,-9,0,23.174528,23.174528,0,0,0,0,0,0,0,0,0,0,0,2.9262598,0,0,0,28.41,64.050003,-9,-9,4,1,1,0,0,8,5,0,335,369366.94,0,0,1565.2507 -10301,12684,23087,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1016.0981,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0915718,0,0,0,35.349998,41.990002,-9,-9,5,1,1,0,0,10,1,1,1454,49758.883,0,0,1179.8705 -10301,12685,23088,-9,-9,23087,2,1,0,22,2,0,0,0,1,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-890.15106,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,24,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.41,55.549999,-9,-9,3,1,1,1,0,10,1,1,207,26897.512,0,0,1603.2249 -10302,12686,23089,23090,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,4.1729369,3.9250309,1,0,-9,9,0,4,-48.04525,0,0,0,73,3,4,3,2,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6994801,4.0551486,0,0,66.93,23.51,55.43,45.880001,7,1,1,0,0,7,2,1,484.5,590689.13,0,0,2374.6248 -10302,12686,23090,23089,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-4,101.17892,0,0,0,77,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2320485,0,0,0,55.43,45.880001,66.93,23.51,5,1,1,0,0,7,2,1,484.5,590689.13,0,0,2374.6248 -10303,12687,23091,23092,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,8.1512365,8.1290646,0,1,0,-9,7,0,10,-21.250683,0,0,0,49,2,3,1,3,-9,2019,1,2,12,0,37,37,15,1,0,1,0,9.9572601,9.9572601,0,0,0,0,0,0,0,0,0,0,0,3.4885156,0,0,0,43.360001,54.779999,46.080002,57.200001,4,1,1,0,0,2,4,1,1578.5,220264,0,0,1300.3115 -10303,12687,23092,23091,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.1488705,8.0638618,0,1,0,-9,7,0,-10,74.60862,0,0,0,59,2,2,1,2,2,2019,1,1,12,0,48,48,15,1,0,1,0,7.9109492,7.9109492,0,0,0,0,0,0,0,0,0,0,0,1.7204003,0,0,0,46.080002,57.200001,43.360001,54.779999,5,1,1,0,0,2,4,1,1578.5,220264,0,0,1300.3115 -10304,12688,23093,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,1,0,5.1359577,5.2457628,3,0,0,0,-9,0,-926.53595,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5717933,4.9839644,0,0,41.619999,20.799999,-9,-9,4,1,1,0,0,7,2,1,218,352768.78,0,0,581.00745 -10305,12689,23094,23097,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,5,8.1621237,8.2261658,0,2,0,-9,9,-9,11,39.643524,-9,0,0,39,1,3,1,-9,2,2019,1,2,5,0,72,0,15,1,0,1,0,7.5215926,7.5215926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,62.66,52.400002,7,2,3,0,0,8,3,0,1036.75,-14024.375,0,0,2526.9504 -10305,12689,23095,-9,23097,23094,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1017.2815,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,8,3,0,1036.75,-14024.375,0,0,2526.9504 -10305,12689,23096,-9,23097,23094,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-864.21185,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,0,1036.75,-14024.375,0,0,2526.9504 -10305,12689,23097,23094,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,6.4039707,6.8675785,0,2,0,-9,9,-9,-11,64.865265,-9,0,1,50,1,5,1,3,2,2019,1,1,4,0,14,0,15,1,0,1,0,6.2390094,6.2390094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,62.389999,56.709999,6,2,3,0,0,8,3,0,1036.75,-14024.375,0,0,2526.9504 -10306,12690,23098,23099,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,2,8.2293158,8.3730316,0,2,0,-9,27,0,-6,36.963211,0,0,0,52,1,4,1,3,3,2019,1,1,7,0,28,28,15,1,0,1,0,12.262084,12.262084,0,0,0,0,0,0,0,2,0,0,0,6.4864445,0,2.5134888,3,58.560001,46.450001,59.43,49.68,6,1,1,0,0,12,4,1,1461,210287.91,0,0,2256.8164 -10306,12690,23099,23098,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,8.6256809,8.3785763,0,2,0,-9,27,0,6,5.8146701,0,0,0,46,2,2,1,-9,-9,2019,1,2,3,0,45,30,15,1,0,1,0,13.181864,13.181864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,58.560001,46.450001,6,1,1,0,0,12,4,1,1461,210287.91,0,0,2256.8164 -10306,12691,23100,-9,23098,23099,3,1,0,20,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1134.6563,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.700001,-9,-9,2,1,1,0,0,12,1,1,62,125638.2,0,0,0 -10307,12692,23101,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,4,0,7.8292661,7.9698415,3,0,-9,0,1,0,-948.16071,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4872782,7.4484787,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,9,3,1,262,844320.44,0,0,2430.1926 -10308,12693,23102,23103,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,4,0,0,0,0,71,3,3,3,2,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0913274,0,0,0,53,47,45.970001,41.169998,5,1,1,0,0,10,1,0,1784,307585,0,0,797.80212 -10308,12693,23103,23102,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-4,0,0,0,0,75,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,2.4993505,0,0,0,0,1,1,0,0,0,0,0,45.970001,41.169998,53,47,4,1,1,0,0,10,1,0,1784,307585,0,0,797.80212 -10309,12694,23104,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1045.6187,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,-9,-9,6,1,1,1,1,13,1,1,587,8493.7734,0,0,976.8064 -10309,12695,23105,-9,-9,-9,2,1,1,51,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1123.6654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,1,13,1,1,2071,0,0,0,-494.4733 -10310,12696,23106,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1083.2833,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.5,38.650002,-9,-9,3,1,1,1,0,11,1,0,656,129392.73,0,0,-1440.7677 -10311,12697,23107,23108,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,5.527554,5.8455992,1,0,-9,47,0,-2,16.562843,0,0,0,75,3,2,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5409031,0,1,51.41,45.619999,60.709999,37.259998,1,1,1,0,0,5,2,1,1975.5,52046.324,0,0,2045.3235 -10311,12697,23108,23107,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,2,-22.50485,0,0,0,73,3,2,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76210332,0,0,0,60.709999,37.259998,51.41,45.619999,6,1,1,0,0,5,2,1,1975.5,52046.324,0,0,2045.3235 -10312,12698,23109,-9,23110,23111,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1066.6531,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,2,5,1,1135.6666,1178516.6,0,0,3631.4348 -10312,12698,23110,23111,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,8.559762,8.6072922,0,2,0,-9,21,0,-1,-24.421755,0,0,0,47,2,4,1,2,2,2019,1,1,10,0,36,36,15,1,0,1,0,17.765381,17.765381,0,0,0,0,0,0,0,0,1,1,0,2.0448418,0,0,0,51.77,58.57,57.16,56.150002,6,1,1,0,0,2,5,1,1135.6666,1178516.6,0,0,3631.4348 -10312,12698,23111,23110,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.3266478,8.3335724,0,2,0,-9,21,0,1,-17.006666,0,0,0,46,1,4,1,2,2,2019,1,2,11,1,37,37,15,1,0,1,0,12.921893,12.921893,0,0,0,0,0,0,0,0,1,1,0,.63151532,0,0,0,57.16,56.150002,51.77,58.57,6,1,1,0,0,2,5,1,1135.6666,1178516.6,0,0,3631.4348 -10313,12699,23112,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,3,7.6116533,8.3236399,7.1493101,3,0,0,0,-9,0,-827.0545,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,8,30,28,15,1,1,-9,0,7.6256475,7.6256475,0,0,0,0,0,0,0,0,0,0,0,7.0160432,7.6248598,0,0,29.540001,37.48,-9,-9,5,3,4,0,0,8,4,0,176,831340.88,0,0,1652.739 -10314,12700,23113,23114,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,6.6287861,6.4716806,1,0,-9,10,0,-6,-25.182375,0,0,0,84,3,4,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4027147,0,0,65.150002,29.299999,57.16,56.150002,6,1,1,0,0,9,2,1,1295,1086092.4,0,0,2097.1143 -10314,12700,23114,23113,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,6,76.43277,0,0,0,78,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,65.150002,29.299999,7,1,1,0,0,9,2,1,1295,1086092.4,0,0,2097.1143 -10315,12701,23115,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,0,7.0677848,7.5403304,3,0,-9,0,1,0,-1074.5499,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3567019,0,0,41.790001,54.119999,-9,-9,5,1,1,0,0,12,3,1,969,676937.25,0,0,1960.9926 -10316,12702,23116,-9,23118,23117,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.43561,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,769,266977.69,0,0,3061.1711 -10316,12702,23117,23118,-9,-9,1,1,1,38,1,0,1,0,1,-9,2,1,0,0,3,8.5762901,8.7960281,0,2,0,-9,12,0,2,2.5444527,0,0,0,36,2,4,1,2,-9,2019,1,2,10,0,50,45,15,1,0,1,0,14.892563,14.892563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,57.16,56.150002,5,1,1,0,0,4,5,1,769,266977.69,0,0,3061.1711 -10316,12702,23118,23117,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,0,4,7.8802996,7.8843246,0,2,0,-9,12,0,-2,-157.61157,0,0,1,38,1,3,1,2,2,2019,1,1,6,0,30,28,15,1,0,1,0,13.535675,13.535675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.369999,54.799999,6,1,1,0,0,4,5,1,769,266977.69,0,0,3061.1711 -10317,12703,23119,-9,23120,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-925.31787,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,0,1116.5,120237.91,0,0,2550.8838 -10317,12703,23120,-9,-9,-9,1,1,0,25,2,0,1,0,2,-9,1,1,0,0,4,7.6485457,7.9769278,0,4,0,0,0,-9,0,-1003.9792,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,20,18,15,1,0,-9,0,14.305516,14.305516,0,0,0,0,0,0,0,2,1,1,0,0,0,7.7533541,3,54.799999,50.32,-9,-9,7,1,1,0,0,5,3,0,1116.5,120237.91,0,0,2550.8838 -10318,12704,23121,23122,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,3,8.2245617,8.1338968,0,1,0,-9,16,0,10,107.13483,0,0,0,45,2,5,1,2,2,2019,1,2,7,0,25,25,15,1,0,1,0,14.714354,14.714354,0,0,0,0,0,0,0,0,0,0,0,4.6042738,0,0,0,54.959999,53.169998,57.060001,57.759998,6,1,1,0,0,10,5,1,1332.5,186496.69,0,0,2816.5361 -10318,12704,23122,23121,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,5,7.8445435,8.2221689,0,1,0,-9,17,0,-10,31.266911,0,0,0,55,1,3,1,2,3,2019,1,1,11,0,80,80,15,1,0,1,0,7.3037477,7.3037477,0,0,0,0,0,0,0,2,0,0,0,5.0236254,0,6.4139295,3,57.060001,57.759998,54.959999,53.169998,6,1,1,0,0,10,5,1,1332.5,186496.69,0,0,2816.5361 -10319,12705,23123,-9,23126,23124,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.26007,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,5,4,1,429.25,439601.66,0,0,2491.0232 -10319,12705,23124,23126,-9,-9,1,1,1,57,1,0,2,0,2,-9,1,1,0,0,5,6.7315917,6.8878021,0,2,0,-9,8,0,15,25.104151,0,0,0,42,1,5,1,2,-9,2019,1,2,7,0,12,30,15,1,0,1,0,8.328311,8.328311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,41.200001,62.389999,5,4,2,0,0,5,4,1,429.25,439601.66,0,0,2491.0232 -10319,12705,23125,-9,23126,23124,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.0874,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,5,4,1,429.25,439601.66,0,0,2491.0232 -10319,12705,23126,23124,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,8.7802629,8.6839867,0,2,0,-9,8,0,-15,-37.089985,0,0,1,57,2,5,1,2,3,2019,1,1,13,1,52,48,15,1,0,1,0,13.511867,13.511867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.200001,62.389999,57.060001,57.759998,5,1,1,0,1,5,4,1,429.25,439601.66,0,0,2491.0232 -10320,12706,23127,-9,23128,23130,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.2039,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,9,5,1,873.75,176403.03,0,0,3937.23 -10320,12706,23128,23130,-9,-9,2,1,0,35,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,-2,-129.7256,0,0,1,37,2,5,1,2,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,54.099998,59.110001,6,2,3,0,0,9,5,1,873.75,176403.03,0,0,3937.23 -10320,12706,23129,-9,23128,23130,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-978.86682,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,9,5,1,873.75,176403.03,0,0,3937.23 -10320,12706,23130,23128,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,5,9.2302113,9.1609402,0,2,0,-9,14,0,2,-96.434441,0,0,0,35,1,4,3,2,2,2019,2,2,6,0,42,44,15,1,0,3,0,23.728136,23.728136,0,0,0,0,0,0,0,0,0,0,0,3.6916757,0,0,0,54.099998,59.110001,49.349998,59.639999,6,1,1,0,0,9,5,1,873.75,176403.03,0,0,3937.23 -10321,12707,23131,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1122.1425,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.41,41.299999,-9,-9,6,1,1,1,0,4,1,0,423,-9184.5918,0,0,1159.4843 -10322,12708,23132,-9,23134,23135,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.0029,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1187.75,293924.19,0,0,3214.0542 -10322,12708,23133,-9,23134,23135,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.56384,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,1187.75,293924.19,0,0,3214.0542 -10322,12708,23134,23135,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,6.4358277,6.4759331,0,2,0,-9,7,0,-3,59.492622,0,0,1,38,1,3,1,2,1,2019,1,3,18,7,9,1,15,1,1,1,0,7.3487272,7.3487272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,18.709999,55.07,4,1,1,0,0,2,4,1,1187.75,293924.19,0,0,3214.0542 -10322,12708,23135,23134,-9,-9,3,1,1,38,1,0,2,0,1,-9,2,1,0,0,3,8.9016047,8.9327631,0,2,0,-9,7,0,3,-27.223146,0,0,0,35,1,4,1,-9,-9,2019,1,1,17,5,43,42,15,1,1,1,0,16.653734,16.653734,0,0,0,0,0,0,0,0,1,1,0,4.4976196,0,0,0,18.709999,55.07,45.91,59.889999,2,1,1,0,0,2,4,1,1187.75,293924.19,0,0,3214.0542 -10323,12709,23136,23137,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.982892,6.7664342,1,0,-9,43,0,-2,2.8566782,0,0,0,68,2,4,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5152049,7.2039862,0,0,53.919998,52.23,43.419998,62.330002,4,1,1,0,0,2,3,1,313.5,1003559.8,0,0,3812.2363 -10323,12709,23137,23136,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.7639899,6.9278684,1,0,-9,43,0,2,157.5497,0,0,0,66,2,3,3,3,-9,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0173187,0,0,43.419998,62.330002,53.919998,52.23,4,1,1,0,0,2,3,1,313.5,1003559.8,0,0,3812.2363 -10324,12710,23138,23139,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,1,8.2126207,8.7699623,7.592711,2,0,-9,4,0,2,88.420753,0,0,0,46,2,3,1,2,2,2019,1,4,19,7,67,67,15,1,1,1,0,9.1018677,9.1018677,0,0,0,0,0,0,0,0,1,1,0,7.4957895,0,0,0,47.82,39.57,55.959999,49.93,4,1,1,0,0,9,5,1,252.33333,846679.44,0,0,6670.6421 -10324,12710,23139,23138,-9,-9,4,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,9.1808815,9.1909065,0,2,0,-9,4,0,-2,88.614525,0,0,0,48,1,1,1,-9,-9,2019,1,1,11,1,38,37,15,1,0,1,0,33.175575,33.175575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,47.82,39.57,6,1,1,0,0,9,5,1,252.33333,846679.44,0,0,6670.6421 -10324,12710,23140,-9,23138,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-926.44836,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,9,5,1,252.33333,846679.44,0,0,6670.6421 -10324,12711,23141,-9,23138,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,0,5,6.3264232,6.5172749,0,3,0,0,0,-9,0,-1073.4445,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,9,2,1,1298,75846.148,0,0,-34.993637 -10325,12712,23142,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,6.9993048,6.9712696,3,0,0,0,-9,0,-1078.4127,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2182918,6.5653501,0,0,46.73,57.009998,-9,-9,6,1,1,0,0,10,2,1,297,322077.53,0,0,1337.0214 -10326,12713,23143,23144,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.477849,8.78936,0,1,0,-9,9,0,-2,-163.35199,0,0,0,56,2,4,1,2,3,2019,1,1,14,3,58,63,15,1,0,1,0,10.517775,10.517775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.889999,41.220001,36.220001,60.560001,2,1,1,0,0,7,5,0,366.5,427152.47,0,0,3518.79 -10326,12713,23144,23143,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.3049917,8.2709522,0,1,0,-9,36,0,2,127.70415,0,0,0,54,2,4,1,3,3,2019,1,2,20,9,47,46,15,1,1,1,0,9.5092592,9.5092592,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.7473335,3,36.220001,60.560001,39.889999,41.220001,6,1,1,0,0,7,5,0,366.5,427152.47,0,0,3518.79 -10326,12714,23145,-9,23144,23143,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,8.3293371,8.6081629,0,3,0,0,0,-9,0,-1054.3359,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,35,35,15,1,0,-9,1,13.934273,13.934273,0,0,0,0,0,0,0,0,0,0,0,2.6937864,0,0,0,49.119999,57.279999,-9,-9,6,1,1,0,0,7,4,0,99,44827.461,0,0,1068.0797 -10327,12715,23146,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,4,0,6.9532447,7.3906293,3,0,0,0,-9,0,-797.0813,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,25,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8630385,7.4567771,5.1480937,3,49.18,51.630001,-9,-9,6,1,1,0,0,7,3,1,527,704292.38,0,0,922.97247 -10327,12716,23147,-9,-9,23146,2,1,1,39,3,0,0,0,1,-9,2,1,0,0,4,8.2877798,8.2977686,0,3,0,0,0,-9,0,-1098.8459,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,35,0,15,1,0,-9,1,10.010201,10.010201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,1,1,0,0,7,4,1,6518,259405.63,0,0,1153.8394 -10328,12717,23148,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.2926049,6.9525409,0,3,0,0,0,-9,0,-1096.8237,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,22,20,15,1,0,-9,0,6.4365554,6.4365554,0,0,0,0,0,0,0,7,0,0,0,0,0,3.5558264,3,40.709999,62.41,-9,-9,2,1,1,0,0,13,2,0,2079,7139.7461,0,0,650.7403 -10329,12718,23149,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,2,7.9484553,7.8774042,0,3,0,0,0,-9,0,-920.18695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,9.0533085,9.0533085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.48,40.09,-9,-9,4,1,1,0,0,2,4,1,513,583804.56,0,0,1943.6293 -10330,12719,23150,23151,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,1,8.3195133,8.8968773,7.6527658,1,0,-9,40,0,3,30.717096,0,0,0,58,2,1,3,3,3,2019,2,2,9,0,43,41,15,1,0,4,0,13.646446,13.646446,0,0,0,0,0,0,0,0,0,0,0,5.1318135,8.4568663,0,0,58.919998,13.92,38.18,20.709999,6,1,1,0,0,13,5,1,605.5,6961579,0,0,3636.585 -10330,12719,23151,23150,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,1,0,7.4552617,7.237123,1,0,-9,40,0,-3,12.318711,0,0,0,61,3,1,1,3,3,2019,3,1,16,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.2387094,4.4759431,3,38.18,20.709999,58.919998,13.92,3,1,1,0,0,13,5,1,605.5,6961579,0,0,3636.585 -10331,12720,23152,-9,-9,-9,1,1,1,93,3,0,0,0,3,-9,4,3,0,0,3,0,5.6574931,5.6351399,3,0,0,0,-9,0,-1092.771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,30.760885,0,0,0,11.486921,321.0824,0,1,1,0,5.461812,5.3989248,0,0,56,44,-9,-9,6,1,1,0,0,5,2,1,292,317378.59,0,0,1407.0347 -10332,12721,23153,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1081.9993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,18.139999,-9,-9,5,1,1,0,0,12,1,0,230,0,0,0,602.7597 -10332,12722,23154,-9,23153,-9,2,1,1,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-988.95654,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.127856,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,12,1,0,846,51606.152,0,0,-538.96777 -10333,12723,23155,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-914.92767,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,52.09,-9,-9,7,1,1,0,0,5,1,1,207,-65339.281,0,0,1816.7343 -10334,12724,23156,23157,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,7.319201,7.2040491,1,0,-9,43,0,11,-170.57594,-9,0,0,60,2,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6736526,7.1511617,0,0,53,47,55.189999,54.259998,6,1,1,0,0,13,2,1,335.5,887603,0,0,951.10046 -10334,12724,23157,23156,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,4,0,6.4608107,6.1300454,1,0,-9,43,0,-11,-73.056786,0,0,0,71,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6574217,6.2829394,0,3,55.189999,54.259998,53,47,2,1,1,0,0,13,2,1,335.5,887603,0,0,951.10046 -10335,12725,23158,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-943.42999,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,23,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.380001,43.130001,-9,-9,5,1,1,0,0,2,1,1,412,0,0,0,2025.6311 -10336,12726,23159,23160,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.7257013,7.3677373,0,1,0,-9,41,0,-2,-21.848988,0,0,0,58,2,2,3,3,-9,2019,2,2,15,4,40,44,15,1,1,3,0,4.6135325,4.6135325,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.77,31.200001,42.349998,30.780001,5,1,1,0,1,11,3,0,1143.3334,21791.334,0,0,2883.1948 -10336,12726,23160,23159,-9,-9,2,1,1,58,1,0,0,0,2,-9,6,3,0,1,2,0,6.0963492,6.4724774,1,0,-9,41,0,2,-38.657639,0,0,0,56,2,3,1,-9,-9,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4681964,5.9258175,3,42.349998,30.780001,55.77,31.200001,6,1,1,0,1,11,3,0,1143.3334,21791.334,0,0,2883.1948 -10336,12726,23161,-9,23159,23160,4,1,1,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-926.8075,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,11,3,0,1143.3334,21791.334,0,0,2883.1948 -10337,12727,23162,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,4,7.912498,8.3439875,0,3,0,0,0,-9,0,-930.21741,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,41,39,15,1,0,-9,0,9.5285883,9.5285883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,6,1,1,0,0,11,4,1,1187,29113.129,0,0,994.10944 -10337,12728,23163,-9,-9,23162,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,7.7735343,7.7705984,0,3,0,0,0,-9,0,-991.18927,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,30,0,15,1,0,-9,1,10.8244,10.8244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,11,3,1,535,-23229.996,0,0,1218.2446 -10338,12729,23164,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-969.75592,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,52.139999,-9,-9,4,3,4,0,0,8,1,0,618,-18501.555,0,0,2402.938 -10338,12730,23165,-9,23164,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.6331363,7.742825,0,3,0,0,0,-9,0,-1053.1481,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,32,20,15,1,1,-9,1,6.7146358,6.7146358,0,0,0,0,0,0,0,7,1,1,0,0,0,10.396316,3,36.110001,55.540001,-9,-9,3,3,4,0,0,8,3,0,972,-47033.285,0,0,1850.6105 -10339,12731,23166,23167,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.6028309,7.2593732,1,0,-9,44,0,-3,8.9184418,0,0,0,65,3,2,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.770093,7.5100136,0,0,48.869999,58.549999,55.200001,49.400002,6,1,1,0,0,1,4,1,1534,791053.94,0,0,1889.8777 -10339,12731,23167,23166,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,0,2,8.2827663,8.3466425,6.4991527,1,0,-9,44,0,3,-12.65263,0,0,0,62,1,4,3,-9,-9,2019,2,2,10,0,45,35,15,1,0,4,0,9.6885366,9.6885366,0,0,0,0,0,0,0,0,0,0,0,3.4006338,6.4980621,0,0,55.200001,49.400002,48.869999,58.549999,6,1,1,0,0,1,4,1,1534,791053.94,0,0,1889.8777 -10340,12732,23168,23169,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,1,3,8.2565804,8.4347506,0,1,0,-9,8,0,-4,2.5741212,0,0,0,57,2,4,1,3,3,2019,1,3,11,0,38,38,15,1,0,1,0,12.934694,12.934694,0,0,0,0,0,0,0,7,1,1,0,0,0,.42764926,3,54.189999,45.220001,57.16,56.150002,6,1,1,0,0,4,5,1,511,3063250.3,0,0,3534.7598 -10340,12732,23169,23168,-9,-9,3,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.668911,8.9556026,5.4148388,1,0,-9,8,0,4,-104.04145,0,0,0,53,3,3,1,2,2,2019,1,1,6,0,33,34,15,1,0,1,0,30.664305,30.664305,0,0,0,0,0,0,0,0,1,1,0,5.9968271,6.1734004,0,0,57.16,56.150002,54.189999,45.220001,6,1,1,0,0,4,5,1,511,3063250.3,0,0,3534.7598 -10341,12733,23170,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,8.0575886,8.2796345,0,3,0,0,0,-9,0,-960.49506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,12.278128,12.278128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,4,4,1,81,169659.81,0,0,1445.6356 -10341,12734,23171,-9,-9,-9,2,1,1,33,2,0,0,0,1,-9,2,1,0,0,5,9.0400686,9.0123892,0,3,0,0,0,-9,0,-1076.1898,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,35,30,15,1,0,-9,0,29.991455,29.991455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,4,5,1,590,245655.2,0,0,2733.4902 -10342,12735,23172,23173,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,3,9.3696718,9.4810381,5.9538803,1,0,-9,26,0,13,-28.841305,0,0,0,47,1,4,1,-9,-9,2019,1,2,11,2,38,37,15,1,0,1,0,39.134377,39.134377,0,0,0,0,0,0,0,0,1,1,0,0,6.198679,0,0,49,48,53.419998,52.330002,5,1,1,0,0,9,5,1,437.5,1241301.6,0,0,13753.64 -10342,12735,23173,23172,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,0,4,9.6905079,9.5429296,0,1,0,-9,2,0,-13,-37.744495,0,0,0,60,1,3,1,2,2,2019,1,1,9,0,53,47,15,1,0,1,0,35.620312,35.620312,0,0,0,0,0,0,0,0,1,1,0,4.6420527,0,0,0,53.419998,52.330002,49,48,6,1,1,0,0,9,5,1,437.5,1241301.6,0,0,13753.64 -10343,12736,23174,23175,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,8.6256647,8.5728693,0,1,0,-9,4,0,-1,-115.70086,0,0,0,53,1,5,1,-9,-9,2019,1,1,12,0,38,45,15,1,0,1,0,19.358049,19.358049,0,0,0,0,0,0,0,0,0,0,0,6.6890788,0,0,0,41.110001,60.68,46.880001,60.959999,5,1,1,0,0,6,5,1,2596.5,1162530.1,0,0,4347.6055 -10343,12736,23175,23174,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,5,8.8491678,8.9468555,0,1,0,-9,4,0,1,2.1074028,0,0,0,52,1,4,1,1,1,2019,1,2,14,2,50,55,15,1,0,1,0,13.585824,13.585824,0,0,0,0,0,0,0,0,0,0,0,6.3870783,0,0,0,46.880001,60.959999,41.110001,60.68,6,1,1,0,0,6,5,1,2596.5,1162530.1,0,0,4347.6055 -10344,12737,23176,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,8.5748034,8.6474638,0,3,0,0,0,-9,0,-1039.734,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,37,50,15,1,0,-9,0,17.709469,17.709469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,8,5,1,792,212060.95,0,0,1922.1079 -10345,12738,23177,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-928.13641,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,3.0053434,0,0,0,0,1,1,0,0,0,0,0,41.110001,40.82,-9,-9,2,1,1,0,0,10,1,0,871,173934.83,0,0,1446.2949 -10346,12739,23178,23179,-9,-9,2,1,0,88,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,61,0,8,68.567139,0,0,0,80,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.110001,33.450001,60.349998,45.330002,6,1,1,0,0,10,2,0,579,322553.41,0,0,1895.9392 -10346,12739,23179,23178,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,5,0,6.1033177,6.1436343,1,0,-9,61,0,-8,-76.000137,0,0,0,88,3,2,3,2,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.480962,5.9083509,0,0,60.349998,45.330002,57.110001,33.450001,6,1,1,0,0,10,2,0,579,322553.41,0,0,1895.9392 -10347,12740,23180,23181,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.4239426,8.1921415,0,1,0,-9,8,0,-6,-38.721939,0,0,0,57,2,4,1,3,3,2019,1,1,11,0,38,38,15,1,0,1,0,13.559338,13.559338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,50.209999,49.919998,52.490002,6,1,1,0,0,13,5,1,669.5,550954.13,0,0,3534.594 -10347,12740,23181,23180,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,7.9893332,8.0232048,0,1,0,-9,8,0,6,.097520828,0,0,0,51,1,4,1,3,3,2019,1,2,15,3,38,38,15,1,0,1,0,9.6199474,9.6199474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.919998,52.490002,58.150002,50.209999,5,1,1,0,0,13,5,1,669.5,550954.13,0,0,3534.594 -10347,12741,23182,-9,23180,23181,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1073.2278,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,6,0,42,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.330002,53.169998,-9,-9,6,1,1,0,0,13,1,1,500,16702.408,0,0,0 -10348,12742,23183,23185,-9,-9,2,1,1,41,1,1,1,0,1,-9,2,1,0,0,4,8.9556284,9.0405807,0,2,0,-9,8,0,5,69.007111,0,0,0,36,1,2,1,-9,-9,2019,1,1,11,1,37,37,15,1,0,1,0,22.161732,22.161732,0,0,0,0,0,0,0,0,1,1,0,3.4906101,0,0,0,51.25,50.810001,28.83,48.240002,5,1,1,0,0,10,5,1,349.66666,551102.75,0,0,3790.3303 -10348,12742,23184,-9,23185,23183,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.0829,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,5,1,349.66666,551102.75,0,0,3790.3303 -10348,12742,23185,23183,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,0,2,7.7326536,8.3061533,7.9190984,2,0,-9,8,0,-5,96.488144,0,0,1,41,1,4,1,1,2,2019,1,2,21,9,38,35,15,1,1,1,0,6.5483351,6.5483351,0,0,0,0,0,0,0,0,1,1,0,7.269968,0,0,0,28.83,48.240002,51.25,50.810001,3,1,1,0,0,10,5,1,349.66666,551102.75,0,0,3790.3303 -10349,12743,23186,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,0,3,0,6.0700107,5.9286814,3,0,0,0,-9,0,-1045.5625,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1947637,0,0,53,44,-9,-9,6,3,4,0,0,8,2,0,216,194932.02,0,0,-452.69806 -10350,12744,23187,23189,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,7.7214842,8.3091297,7.5773873,2,0,-9,9,0,-1,93.084244,0,0,0,53,1,5,2,2,2,2019,2,2,6,0,21,21,15,1,0,2,0,12.751362,12.751362,0,0,0,0,0,0,0,0,1,1,0,7.8260694,0,0,0,54.200001,57.490002,48.77,60.16,6,1,1,0,0,4,4,1,588.33331,1897259.3,0,0,3003.6108 -10350,12744,23188,-9,23189,23187,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.1108,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,4,4,1,588.33331,1897259.3,0,0,3003.6108 -10350,12744,23189,23187,-9,-9,2,1,0,53,1,0,1,0,1,-9,7,2,0,0,5,7.8166776,7.9131117,0,2,0,-9,9,0,1,86.127983,1,0,0,52,1,4,1,1,1,2019,3,1,10,0,23,26,15,2,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.6939144,0,0,3,48.77,60.16,54.200001,57.490002,7,1,1,0,0,4,4,1,588.33331,1897259.3,0,0,3003.6108 -10351,12745,23190,23191,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.0893288,7.0759687,0,1,0,-9,35,0,3,-51.637833,0,0,0,56,1,4,1,-9,2,2019,1,2,7,0,10,10,15,1,0,1,0,15.535257,15.535257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.66,25.360001,54.790001,55.860001,5,1,1,0,0,10,5,1,409,327084.13,0,0,5635.1943 -10351,12745,23191,23190,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,9.1205139,9.1649246,0,1,0,-9,11,0,-3,-93.158806,0,0,0,59,2,2,1,-9,-9,2019,1,1,9,0,42,42,15,1,0,1,0,35.740463,35.740463,0,0,0,0,0,0,0,0,0,0,0,7.3457704,0,0,0,54.790001,55.860001,59.66,25.360001,7,1,1,0,0,10,5,1,409,327084.13,0,0,5635.1943 -10352,12746,23192,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,3,0,7.8454838,7.7174611,3,0,0,0,-9,0,-1114.5159,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,9.7335062,0,2.9861217,0,0,66.823784,0,1,1,0,.89440525,7.99441,0,0,61.389999,28.309999,-9,-9,4,1,1,0,0,8,3,1,126,503250.19,0,0,708.67511 -10353,12747,23193,23194,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,0,4,0,7.3380828,7.1589718,1,0,-9,31,0,0,-164.10808,0,0,0,73,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2757525,7.1075411,0,0,51.77,58.57,48.209999,50.73,6,1,1,0,0,10,5,1,747,1966092.3,0,0,4571.832 -10353,12747,23194,23193,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,8.687973,8.6139965,1,0,-9,31,0,0,-19.461082,0,0,0,73,1,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5471659,8.8137903,0,0,48.209999,50.73,51.77,58.57,6,1,1,0,0,10,5,1,747,1966092.3,0,0,4571.832 -10354,12748,23195,-9,23197,-9,3,1,1,13,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-890.21118,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,3,4,0,0,9,3,1,539.33331,55239.566,0,0,1169.3833 -10354,12748,23196,-9,23197,-9,2,1,0,14,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1000.4173,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,3,4,0,0,9,3,1,539.33331,55239.566,0,0,1169.3833 -10354,12748,23197,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,4,3,0,1,3,0,7.293633,7.4804711,3,0,0,0,-9,0,-919.91254,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1161537,0,0,63.41,39.700001,-9,-9,6,3,4,0,0,9,3,1,539.33331,55239.566,0,0,1169.3833 -10355,12749,23198,23199,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,5,8.0385885,8.3085823,0,1,0,-9,10,0,-3,57.718681,0,0,1,35,3,3,1,-9,-9,2019,1,1,7,0,39,38,15,1,0,1,0,9.7828989,9.7828989,0,0,0,0,0,0,0,0,0,0,0,1.1766465,0,0,0,54.630001,58.830002,55.959999,49.93,7,1,1,0,0,5,5,1,186,-97258,0,0,3662.5212 -10355,12749,23199,23198,-9,-9,1,1,1,35,1,0,0,0,3,-9,2,1,0,0,3,8.6923723,8.6776915,0,1,0,-9,10,0,3,-9.5057507,0,0,0,32,1,5,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,16.599794,16.599794,0,0,0,0,0,0,0,0,0,0,0,3.1621687,0,0,0,55.959999,49.93,54.630001,58.830002,6,1,1,0,0,5,5,1,186,-97258,0,0,3662.5212 -10356,12750,23200,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-939.95245,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,33,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.5722055,3,51.02,52.220001,-9,-9,6,1,1,0,0,1,1,0,411,-167234,0,0,1498.4258 -10357,12751,23201,23202,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.9849405,7.5669756,0,1,0,-9,9,0,0,14.505118,0,0,0,53,2,5,1,1,2,2019,1,1,9,0,46,80,15,1,0,1,0,4.9563723,4.9563723,0,0,0,0,0,0,0,0,0,0,0,7.2147541,0,0,0,53.220001,50.02,51.139999,60.450001,6,1,1,0,0,12,4,1,587,737305.81,0,0,1882.5068 -10357,12751,23202,23201,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,0,5,7.3966284,7.6404085,0,1,0,-9,9,0,0,-51.106201,0,0,0,53,2,3,1,2,2,2019,1,2,12,2,23,20,15,1,0,1,0,9.8404894,9.8404894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,53.220001,50.02,4,1,1,0,0,12,4,1,587,737305.81,0,0,1882.5068 -10358,12752,23203,23204,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,5,7.0653367,6.9783411,0,1,0,-9,33,0,2,-7.0763168,0,0,0,57,3,5,1,3,3,2019,1,1,7,0,38,40,15,1,0,1,0,3.7368751,3.7368751,0,0,0,0,0,0,0,0,0,0,0,1.7648305,0,0,0,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,4,3,1,464.5,605131,0,0,2082.5093 -10358,12752,23204,23203,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,0,5,7.9504118,7.7772245,0,1,0,-9,35,0,-2,135.59813,0,0,0,59,3,5,1,3,3,2019,1,2,6,0,30,41,15,1,0,1,0,10.949746,10.949746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,4,3,1,464.5,605131,0,0,2082.5093 -10359,12753,23205,-9,23208,23207,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.4661,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,3,0,853.20001,176822.91,0,0,3243.78 -10359,12753,23206,-9,23208,23207,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.68903,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,853.20001,176822.91,0,0,3243.78 -10359,12753,23207,23208,-9,-9,2,1,1,44,1,0,3,0,2,-9,1,1,0,0,4,6.7178535,6.9119668,0,2,0,-9,6,0,6,-76.804184,0,0,0,38,1,4,1,2,2,2019,1,1,12,0,26,28,15,1,0,1,0,4.8751397,4.8751397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,52.23,55.599998,4,1,1,0,1,1,3,0,853.20001,176822.91,0,0,3243.78 -10359,12753,23208,23207,-9,-9,1,1,0,38,1,0,3,0,1,-9,2,1,0,0,4,8.0888548,8.1464853,0,2,0,-9,6,0,-6,-109.22769,0,0,1,44,2,4,1,1,1,2019,1,2,10,3,50,50,15,1,0,1,0,10.003957,10.003957,0,0,0,0,0,0,0,0,1,1,0,3.2252669,0,0,0,52.23,55.599998,54.200001,57.490002,6,1,1,0,0,1,3,0,853.20001,176822.91,0,0,3243.78 -10359,12753,23209,-9,23208,23207,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.73059,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,3,0,853.20001,176822.91,0,0,3243.78 -10360,12754,23210,23211,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,4,0,0,0,1,0,-9,7,0,-4,-30.334486,0,0,0,72,3,3,3,3,2,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.560359,1,60.130001,49.27,60.560001,42.389999,6,1,1,0,0,12,2,1,448.5,280171.59,0,0,2441.9377 -10360,12754,23211,23210,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,5.8535748,6.0647697,1,0,-9,7,0,4,65.96479,0,0,0,68,3,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.9334416,0,0,60.560001,42.389999,60.130001,49.27,7,1,1,0,0,12,2,1,448.5,280171.59,0,0,2441.9377 -10361,12755,23212,-9,23215,23214,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-998.99426,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,1,893.5,-34816.988,0,0,2901.2622 -10361,12755,23213,-9,23215,23214,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1208.6937,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,1,893.5,-34816.988,0,0,2901.2622 -10361,12755,23214,23215,-9,-9,1,1,1,41,1,2,2,0,1,-9,2,1,0,0,4,8.3993177,8.7611265,0,2,0,-9,11,0,8,40.97617,0,0,0,33,1,4,1,1,1,2019,1,2,10,0,40,43,15,1,0,1,0,16.585569,16.585569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,41.02,51.02,52.060001,5,2,3,0,0,8,3,1,893.5,-34816.988,0,0,2901.2622 -10361,12755,23215,23214,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,11,0,-8,-4.3475027,0,0,1,41,1,4,1,1,1,2019,1,1,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,52.060001,47.91,41.02,6,2,3,0,0,8,3,1,893.5,-34816.988,0,0,2901.2622 -10362,12756,23216,23218,-9,-9,1,1,1,39,1,0,1,0,1,-9,1,1,0,0,4,8.8618078,8.5511532,0,2,0,-9,11,0,4,22.505957,0,0,0,35,1,4,1,2,1,2019,1,2,12,0,50,45,15,1,0,1,0,13.399671,13.399671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.060001,38.580002,42.060001,38.580002,4,2,3,0,0,2,5,1,382,231395.44,0,0,5305.9453 -10362,12756,23217,-9,23218,23216,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.8401,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,2,5,1,382,231395.44,0,0,5305.9453 -10362,12756,23218,23216,-9,-9,2,1,0,35,1,0,1,0,1,-9,1,1,0,0,4,8.9129028,8.417223,0,2,0,-9,11,0,-4,-62.147526,0,0,1,39,1,4,1,1,1,2019,1,1,12,0,50,40,15,1,0,1,0,15.375726,15.375726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.060001,38.580002,42.060001,38.580002,4,2,3,0,0,2,5,1,382,231395.44,0,0,5305.9453 -10363,12757,23219,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.1945791,8.3264561,0,3,0,-9,0,-9,0,-1001.3328,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,0,15,1,0,-9,0,12.659363,12.659363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,-9,-9,6,4,2,0,0,8,4,0,434,126360.56,0,0,2537.4104 -10364,12758,23220,23221,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,3,8.6310863,8.6509571,6.203002,2,0,-9,20,0,-12,-58.779339,0,0,1,54,2,4,1,3,2,2019,1,1,7,0,30,34,15,1,0,1,0,17.265261,17.265261,0,0,0,0,0,0,0,0,1,1,0,6.126699,0,0,0,50.110001,55.32,54.200001,57.490002,6,1,1,0,0,9,4,1,254.25,184241.2,0,0,3207.7646 -10364,12758,23221,23220,-9,-9,1,1,1,54,1,0,2,0,2,-9,1,1,0,0,4,7.6638298,7.6246324,0,2,0,-9,17,0,12,44.108948,0,0,0,42,1,3,1,2,1,2019,1,2,9,0,50,50,15,1,0,1,0,5.106379,5.106379,0,0,0,0,0,0,0,0,1,1,0,5.3871756,0,0,0,54.200001,57.490002,50.110001,55.32,6,1,1,0,0,9,4,1,254.25,184241.2,0,0,3207.7646 -10364,12758,23222,-9,23220,23221,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1008.2214,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,9,4,1,254.25,184241.2,0,0,3207.7646 -10364,12758,23223,-9,23220,23221,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-995.25031,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,4,1,254.25,184241.2,0,0,3207.7646 -10365,12759,23224,23225,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,1,30.303429,0,0,0,70,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.830002,39.43,39.150002,30.9,6,1,1,0,0,10,2,1,309,412559.75,0,0,2108.0571 -10365,12759,23225,23224,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,5.2416248,5.1349864,1,0,-9,53,0,-1,.53368038,0,0,0,71,3,2,3,3,3,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5385876,0,0,39.150002,30.9,55.830002,39.43,3,1,1,0,0,10,2,1,309,412559.75,0,0,2108.0571 -10365,12760,23226,-9,23224,23225,3,1,1,47,3,0,0,0,3,-9,2,1,0,0,1,0,0,0,3,0,-9,0,-9,0,-1044.2937,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,5,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.98,40.049999,-9,-9,3,1,1,0,0,10,1,1,359,-28258.418,0,0,0 -10366,12761,23227,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,2,1,0,0,2,6.5324979,6.098619,3.6098115,3,0,0,0,-9,0,-973.03406,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,15,15,15,1,0,-9,0,5.7802048,5.7802048,0,0,0,0,0,0,0,0,1,1,0,3.1737232,3.8998809,0,0,59.060001,32.529999,-9,-9,4,1,1,0,0,9,2,0,440,263777.47,0,0,1848.8108 -10366,12762,23228,-9,-9,-9,2,1,1,82,3,0,0,0,3,-9,4,3,0,0,1,0,4.4197659,4.4248462,3,0,0,0,-9,0,-905.44,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.5914602,0,0,46.080002,37.220001,-9,-9,7,1,1,0,0,9,2,0,375,-120082.8,0,0,974.39392 -10367,12763,23229,23230,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,5,8.2198944,8.2763462,0,1,0,-9,7,0,-4,110.56868,0,0,0,63,1,5,1,2,2,2019,1,1,9,0,39,39,15,1,0,1,0,14.708447,14.708447,0,0,0,0,0,0,0,0,0,0,0,5.5351343,0,0,0,57.060001,57.759998,54.689999,57.470001,6,1,1,0,0,2,4,1,1882,777184.5,0,0,2088.1025 -10367,12763,23230,23229,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,5,6.8055305,7.0459442,0,1,0,-9,7,0,4,49.677628,0,0,0,59,2,5,1,2,2,2019,1,2,6,0,38,35,15,1,0,1,0,4.3033223,4.3033223,0,0,0,0,0,0,0,0,0,0,0,4.7814193,0,0,0,54.689999,57.470001,57.060001,57.759998,6,1,1,0,0,2,4,1,1882,777184.5,0,0,2088.1025 -10368,12764,23231,-9,-9,-9,1,1,0,78,2,0,0,0,3,-9,4,3,0,0,3,0,6.619616,6.7889986,3,0,0,0,-9,0,-984.08014,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1272864,6.6256661,0,0,55.75,29.629999,-9,-9,6,1,1,0,0,6,2,0,1061,386566.84,0,0,1126.9978 -10369,12765,23232,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,-9,0,1,0,-1102.9138,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.0989103,0,37.189194,3,16.25,54.43,-9,-9,5,1,1,0,0,12,1,0,246,432794.56,0,0,113.64194 -10370,12766,23233,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,1,1,0,0,4,7.1736112,7.2025261,0,4,0,0,0,-9,0,-1076.1272,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,32,15,1,0,-9,0,4.192071,4.192071,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.830002,57.810001,-9,-9,6,1,1,0,0,13,2,1,993.5,90666.953,0,0,1510.6814 -10370,12766,23234,-9,23233,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-989.42377,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,13,2,1,993.5,90666.953,0,0,1510.6814 -10371,12767,23235,-9,23236,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,0,3,8.4277563,8.4681292,0,3,0,-9,0,-9,0,-1005.0157,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,37,0,15,1,1,-9,1,14.594611,14.594611,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.196104,3,29.219999,52.630001,-9,-9,3,1,1,0,1,8,4,1,555,158979.83,0,0,1288.3398 -10371,12768,23236,-9,-9,-9,2,1,0,79,3,0,0,0,3,-9,4,3,0,0,2,0,5.4595871,5.8252435,3,0,-9,0,-9,0,-881.84766,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,11.378441,0,0,13.335695,0,21.228485,0,1,1,0,0,5.6851282,0,0,40.91,24.75,-9,-9,4,1,1,0,0,8,2,1,146,238334.92,0,0,1256.2396 -10372,12769,23237,23238,-9,-9,1,1,0,23,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,2,0,-5,82.531624,0,1,1,28,2,5,1,-9,-9,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.870001,47.060001,30.24,51.200001,2,1,1,0,1,6,3,0,1261.5,92703.523,0,0,1639.5258 -10372,12769,23238,23237,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,5,7.9741106,7.7560458,0,1,0,-9,2,0,5,12.691733,-9,1,0,23,2,3,3,-9,-9,2019,2,1,22,10,38,0,15,1,1,3,0,7.6879745,7.6879745,0,0,0,0,0,0,0,2,1,1,0,0,0,3.3992586,2,30.24,51.200001,29.870001,47.060001,5,1,1,0,0,6,3,0,1261.5,92703.523,0,0,1639.5258 -10373,12770,23239,23240,-9,-9,2,1,1,52,1,0,0,0,3,-9,8,3,1,1,1,8.5223522,8.7816601,0,1,0,-9,10,0,1,42.093204,0,0,0,51,2,3,1,3,2,2019,3,1,18,8,37,37,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.939999,20.110001,48.75,39.73,1,1,1,0,0,12,5,1,1000.5,124597.39,0,0,4933.3501 -10373,12770,23240,23239,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.2572613,8.5064945,0,1,0,-9,10,0,-1,-192.43971,0,0,0,52,3,1,3,2,3,2019,2,2,17,5,28,14,15,1,1,3,0,24.480484,24.480484,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.928322,1,48.75,39.73,41.939999,20.110001,3,1,1,0,0,12,5,1,1000.5,124597.39,0,0,4933.3501 -10374,12771,23241,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,3,3,0,0,2,0,5.4527888,5.4357657,4,0,0,0,-9,0,-913.83221,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,16,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1186848,0,0,0,31.73,48.25,-9,-9,4,1,1,1,0,4,2,0,250,19682.121,0,0,2444.7219 -10375,12772,23242,23243,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,10,0,-5,0,0,0,0,76,3,2,3,3,3,2019,4,2,21,10,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,14.086677,1,41.110001,40.82,46,36,3,1,1,0,0,13,1,1,468,17170.59,0,0,1141.6517 -10375,12772,23243,23242,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,10,0,5,0,0,0,0,71,3,2,3,3,3,2019,4,1,27,11,0,0,15,4,1,4,0,0,0,1,0,20.204826,0,0,0,0,0,1,1,0,0,0,0,0,46,36,41.110001,40.82,4,1,1,0,0,13,1,1,468,17170.59,0,0,1141.6517 -10376,12773,23244,23245,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,7.2044749,6.9975028,1,0,-9,57,0,-1,35.847458,0,0,0,76,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9026537,0,0,63.41,39.700001,55.540001,48.689999,7,1,1,0,0,11,3,1,668,718320.25,0,0,1855.6333 -10376,12773,23245,23244,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,7.4263387,7.4844036,1,0,-9,57,0,1,-131.47765,0,0,0,75,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5772753,0,0,55.540001,48.689999,63.41,39.700001,7,1,1,0,0,11,3,1,668,718320.25,0,0,1855.6333 -10377,12774,23246,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,7.1782007,6.6197958,3,0,0,0,-9,0,-1102.3651,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4374065,6.9569449,0,0,51.549999,51.939999,-9,-9,6,1,1,0,0,9,2,0,591,600691.63,0,0,1044.0742 -10378,12775,23247,23248,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.4867187,6.3983655,1,0,-9,46,0,-11,11.634439,0,0,0,80,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6900816,0,0,50,47,53.009998,25.639999,5,1,1,0,0,5,2,1,400.5,35352.594,0,0,1302.2876 -10378,12775,23248,23247,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,2,0,3.6290932,3.7342646,1,0,-9,47,0,11,-58.122574,0,0,0,69,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.4841983,3.767493,0,0,53.009998,25.639999,50,47,5,1,1,0,0,5,2,1,400.5,35352.594,0,0,1302.2876 -10379,12776,23249,23250,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,3,8.5105801,8.5344086,0,1,0,-9,29,0,2,44.917252,0,0,0,44,2,5,1,2,3,2019,1,1,8,0,58,58,15,1,0,1,0,12.293531,12.293531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.759998,44.41,46.529999,61.330002,6,1,1,0,0,5,5,1,277.5,578774.19,0,0,3364.812 -10379,12776,23250,23249,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,5,9.0121765,8.6763048,5.5921879,1,0,-9,28,0,-2,74.924057,0,0,1,46,1,3,1,2,2,2019,1,2,12,1,51,60,15,1,0,1,0,15.59396,15.59396,0,0,0,0,0,0,0,0,0,0,0,6.7888346,0,0,0,46.529999,61.330002,44.759998,44.41,6,1,1,0,0,5,5,1,277.5,578774.19,0,0,3364.812 -10379,12777,23251,-9,23250,23249,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.4657497,8.3968945,0,3,0,0,0,-9,0,-1124.4119,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,39,38,15,1,0,-9,1,12.715653,12.715653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.400002,56.189999,-9,-9,5,1,1,0,0,5,5,1,715,-4183.6533,0,0,2310.7092 -10380,12778,23252,-9,-9,-9,1,1,0,85,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1085.4252,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.0907006,0,0,1,1,0,0,0,0,0,60.27,45.07,-9,-9,6,3,4,0,0,2,1,0,2664,10813.869,0,0,1536.3418 -10381,12779,23253,23254,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.5001078,7.8421392,1,0,-9,10,0,5,76.719505,0,0,0,70,2,3,3,3,3,2019,4,2,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.5304322,7.7243385,3.889255,3,30.42,52.560001,40.310001,51.860001,4,1,1,0,0,7,3,1,630.5,720736.75,0,0,2661.1172 -10381,12779,23254,23253,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,4.9794822,4.6720033,1,0,-9,10,0,-5,-91.159599,0,0,0,75,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.6785684,5.0092573,124.95431,3,40.310001,51.860001,30.42,52.560001,4,1,1,0,0,7,3,1,630.5,720736.75,0,0,2661.1172 -10382,12780,23255,-9,23258,23256,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.8979,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,5,1,1021.25,791405,0,0,9176.1758 -10382,12780,23256,23258,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,9.413434,9.5508423,0,2,0,-9,11,0,2,-36.69759,0,0,0,43,1,4,1,3,3,2019,1,2,14,1,45,77,15,1,0,1,0,31.427208,31.427208,0,0,0,0,0,0,0,0,0,0,0,7.6683273,0,0,0,44.189999,58.009998,46.099998,59.990002,5,1,1,0,0,9,5,1,1021.25,791405,0,0,9176.1758 -10382,12780,23257,-9,23258,23256,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.1959,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1021.25,791405,0,0,9176.1758 -10382,12780,23258,23256,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,6.4851003,6.848227,0,2,0,-9,11,0,-2,-5.5939817,0,0,1,45,1,3,1,1,2,2019,1,1,12,0,15,0,15,1,0,1,0,6.7347493,6.7347493,0,0,0,0,0,0,0,0,0,0,0,8.72334,0,0,0,46.099998,59.990002,44.189999,58.009998,6,1,1,0,0,9,5,1,1021.25,791405,0,0,9176.1758 -10383,12781,23259,-9,23261,23262,6,1,0,17,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1192.6569,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8504081,3,26.01,63.779999,-9,-9,4,2,3,0,0,8,1,0,944,0,0,0,1842.5 -10383,12781,23260,-9,23261,23262,7,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1095.3971,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,8,1,0,944,0,0,0,1842.5 -10383,12781,23261,23262,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,27,0,0,0,0,0,1,43,3,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.941946,3,50,55,51,56,6,2,3,0,0,8,1,0,944,0,0,0,1842.5 -10383,12781,23262,23261,-9,-9,2,1,1,43,1,0,2,0,3,-9,1,1,0,0,4,0,0,0,2,0,-9,27,0,0,0,0,0,0,43,2,4,3,3,3,2019,2,1,9,1,35,36,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50,55,6,2,3,0,1,8,1,0,944,0,0,0,1842.5 -10383,12782,23263,-9,23261,23262,4,1,0,22,2,0,2,0,2,-9,11,3,0,0,4,8.1238508,8.2539225,0,3,0,0,0,-9,0,-1010.2577,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,42,42,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.729598,3,35.630001,62.189999,-9,-9,6,2,3,0,0,8,4,0,656,2513.3047,0,0,1335.1765 -10384,12783,23264,-9,-9,-9,1,1,0,22,2,1,1,0,2,-9,2,1,0,0,4,6.4500337,6.8548751,0,4,0,-9,0,-9,0,-926.13617,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,16,0,15,1,0,-9,0,5.557858,5.557858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.509998,49.360001,-9,-9,5,3,4,0,0,8,2,0,1422.5,-116844,0,0,449.43829 -10384,12783,23265,-9,23264,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-910.07709,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,2,0,1422.5,-116844,0,0,449.43829 -10385,12784,23266,23267,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,60,0,-5,-72.562859,0,0,0,81,3,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,51.02,52.990002,51.279999,7,1,1,0,0,9,3,1,427,831483.06,0,0,2200.4243 -10385,12784,23267,23266,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,7.7082863,7.8170452,1,0,-9,60,0,5,-6.2401962,0,0,0,76,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.971242,7.6219821,0,0,52.990002,51.279999,56.18,51.02,7,1,1,0,0,9,3,1,427,831483.06,0,0,2200.4243 -10386,12785,23268,-9,-9,-9,1,1,0,34,2,0,1,0,3,-9,97,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1128.0619,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,27,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.610001,50.939999,-9,-9,3,1,1,0,1,4,1,0,233.5,73541.18,0,0,439.85587 -10386,12785,23269,-9,23268,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-881.49158,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,4,1,0,233.5,73541.18,0,0,439.85587 -10387,12786,23270,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,8.1542521,7.9124179,3,0,0,0,-9,0,-1092.1313,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.8629189,0,0,1,1,0,7.1143923,8.2157736,0,0,52.82,51.259998,-9,-9,2,1,1,0,0,8,4,1,424,1290358.1,0,0,1688.3755 -10388,12787,23271,23272,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,65,0,-1,0,0,0,0,85,3,3,3,3,3,2019,4,2,36,12,0,0,15,4,1,4,0,0,0,1,0,11.177173,17.524761,0,0,0,0,1,1,0,0,0,0,0,23.860001,20.5,62.75,29.030001,2,1,1,0,0,11,1,0,530.5,91948.844,0,0,1121.2358 -10388,12787,23272,23271,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,1,0,0,0,0,84,3,1,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,21.044258,0,0,0,120,1,1,0,0,0,116.73812,1,62.75,29.030001,23.860001,20.5,6,1,1,0,0,11,1,0,530.5,91948.844,0,0,1121.2358 -10389,12788,23273,23274,-9,-9,2,1,1,91,1,0,0,0,1,-9,4,3,0,0,3,0,7.7853637,7.6228538,1,0,-9,11,0,4,57.41214,0,0,0,87,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2984433,7.3759942,0,0,55,45,65.529999,36.060001,6,1,1,0,0,6,4,1,470,883606.69,0,0,2266.6516 -10389,12788,23274,23273,-9,-9,1,1,0,87,1,0,0,0,2,-9,4,3,0,0,3,0,8.252037,7.9421964,1,0,-9,41,0,-4,85.334297,0,0,0,91,1,3,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.6283703,7.8686786,74.135696,1,65.529999,36.060001,55,45,7,1,1,0,0,6,4,1,470,883606.69,0,0,2266.6516 -10390,12789,23275,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,0,4,0,8.3941879,8.364481,3,0,0,0,-9,0,-1097.3433,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,8,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0379467,8.0645943,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,2,4,1,2400,490063.25,0,0,1564.0787 -10390,12790,23276,-9,23275,-9,2,1,1,26,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1021.5023,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,19,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,1,0,2,1,1,981,-94587.906,0,0,0 -10391,12791,23277,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,1,1,0,0,3,0,5.1948595,4.8252873,3,0,0,0,-9,0,-966.66919,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,4,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3780951,4.9816437,0,0,54.380001,46.439999,-9,-9,4,1,1,0,0,12,2,1,228,631973.88,0,0,-1.0259733 -10392,12792,23278,-9,23280,23281,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.5664,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,5,1,837.75,468625.09,0,0,3500.4236 -10392,12792,23279,-9,23280,23281,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-938.27026,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,2,5,1,837.75,468625.09,0,0,3500.4236 -10392,12792,23280,23281,-9,-9,2,1,0,39,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,-4,95.762024,0,0,1,43,1,3,1,3,1,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.049999,45.349998,54.369999,54.799999,6,2,3,0,0,2,5,1,837.75,468625.09,0,0,3500.4236 -10392,12792,23281,23280,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,3,9.0203791,9.4637909,0,2,0,-9,14,0,4,56.948917,0,0,0,39,1,3,3,2,1,2019,2,2,9,0,0,37,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,60.049999,45.349998,5,2,3,0,0,2,5,1,837.75,468625.09,0,0,3500.4236 -10393,12793,23282,23283,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,6.8552561,7.1928258,0,1,0,-9,4,0,-3,8.525507,0,0,0,69,2,3,1,3,-9,2019,3,2,13,1,6,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.85545689,0,0,0,52,54.509998,57.330002,53.459999,5,1,1,0,0,10,4,1,2615.5,691425.38,0,0,4504.8638 -10393,12793,23283,23282,-9,-9,2,1,1,69,1,0,0,0,2,-9,1,1,0,0,3,8.3844852,8.5808249,0,1,0,-9,4,0,3,-41.684391,0,0,0,66,2,3,3,-9,-9,2019,2,1,6,0,20,20,15,1,0,4,0,23.519609,23.519609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,52,54.509998,7,1,1,0,0,10,4,1,2615.5,691425.38,0,0,4504.8638 -10394,12794,23284,23285,23287,-9,2,1,1,62,1,0,1,0,2,-9,2,1,0,0,4,9.7768812,9.372817,0,2,0,-9,15,0,13,117.29765,0,0,0,49,1,5,1,3,2,2019,1,1,9,0,35,30,15,1,0,1,0,48.443943,48.443943,0,0,0,0,0,0,0,2,1,1,0,0,0,5.4354744,3,54.790001,55.860001,49.25,61.25,6,1,1,0,0,9,5,1,1333.3334,946607.81,0,0,7527.9692 -10394,12794,23285,23284,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,5,9.5641823,9.452672,0,2,0,-9,15,0,-13,38.698032,0,0,0,62,2,4,1,2,3,2019,1,2,11,3,43,50,15,1,0,1,0,34.127197,34.127197,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.25,61.25,54.790001,55.860001,6,1,1,0,0,9,5,1,1333.3334,946607.81,0,0,7527.9692 -10394,12794,23286,-9,23285,23284,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.9613,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,1333.3334,946607.81,0,0,7527.9692 -10394,12795,23287,-9,-9,-9,4,1,0,84,3,0,1,0,3,-9,4,3,0,0,3,0,7.2513361,7.5199981,4,0,0,0,-9,0,-972.49792,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3006506,7.4472604,0,0,53,44,-9,-9,6,1,1,0,0,9,2,1,1105,589559.63,0,0,1016.3312 -10395,12796,23288,23289,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,5,0,8.3430605,8.1293468,1,0,-9,3,0,3,104.88421,0,0,0,59,1,3,3,3,3,2019,4,2,9,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1297612,8.4011192,0,0,54.099998,59.110001,48.119999,42.709999,6,1,1,0,0,10,4,1,342.5,3099582.5,0,0,4645.752 -10395,12796,23289,23288,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,0,3,0,7.2905459,7.1774507,1,0,-9,3,0,-3,103.14051,0,0,0,62,1,5,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0456705,7.4929399,0,0,48.119999,42.709999,54.099998,59.110001,6,1,1,0,0,10,4,1,342.5,3099582.5,0,0,4645.752 -10396,12797,23290,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,4,9.0204973,9.0068836,0,3,0,0,0,-9,0,-993.93048,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,50,45,15,1,0,-9,0,16.701641,16.701641,0,0,0,0,0,0,0,0,1,1,0,6.6618028,0,0,0,49.330002,51.630001,-9,-9,3,1,1,0,0,6,5,1,952,882272,0,0,2578.9868 -10397,12798,23291,23292,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.7867041,7.7944283,1,0,-9,10,0,-2,-61.01532,0,0,0,64,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1961823,7.4577737,0,0,60.119999,54.799999,60.93,36.009998,7,1,1,0,0,2,5,1,497,4031931,0,0,7353.1416 -10397,12798,23292,23291,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,2,7.8503838,9.5590286,9.2465239,1,0,-9,10,0,2,37.004967,0,0,0,62,1,4,3,-9,-9,2019,4,2,9,2,7,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9867225,9.432395,0,0,60.93,36.009998,60.119999,54.799999,6,1,1,0,0,2,5,1,497,4031931,0,0,7353.1416 -10398,12799,23293,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,6.9574518,6.7653103,3,0,0,0,-9,0,-937.16357,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.4732096,0,.67623329,0,0,0,0,1,1,0,4.2184701,6.8461208,0,0,62.57,35.900002,-9,-9,6,1,1,0,0,13,2,1,1009,550470.56,0,0,315.25778 -10399,12800,23294,23295,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.6844358,8.6129284,0,1,0,-9,8,0,-5,-7.4816809,0,0,1,37,1,4,1,1,1,2019,1,2,8,1,47,42,15,1,0,1,0,14.428864,14.428864,0,0,0,0,0,0,0,0,0,0,0,2.1003511,0,0,0,48.869999,58.549999,54.790001,55.860001,6,1,1,0,0,7,5,1,827,1261057.5,0,0,4075.2534 -10399,12800,23295,23294,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,0,4,8.6234121,8.6061077,0,1,0,-9,8,0,5,-23.316435,0,0,0,32,1,4,1,-9,-9,2019,1,1,11,2,40,35,15,1,0,1,0,15.441783,15.441783,0,0,0,0,0,0,0,0,0,0,0,1.1844705,0,0,0,54.790001,55.860001,48.869999,58.549999,6,1,1,0,0,7,5,1,827,1261057.5,0,0,4075.2534 -10400,12801,23296,-9,23298,23297,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.0818,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,1,594,170050.56,0,0,3332.6428 -10400,12801,23297,23298,-9,-9,2,1,1,53,1,0,1,0,3,-9,1,1,0,0,4,7.7065115,7.7558985,6.4958801,2,0,-9,15,0,8,-112.19566,0,0,0,45,1,3,1,3,3,2019,1,1,7,0,35,30,15,1,0,1,0,5.7101254,5.7101254,0,0,0,0,0,0,0,0,1,1,0,3.1876633,6.41645,0,0,57.16,56.150002,39,46.959999,6,1,1,0,0,4,4,1,594,170050.56,0,0,3332.6428 -10400,12801,23298,23297,-9,-9,1,1,0,45,1,0,1,0,1,-9,2,1,0,0,3,8.2964325,8.314229,0,2,0,-9,15,0,-8,18.265036,0,0,0,53,3,4,1,2,3,2019,1,2,12,0,37,42,15,1,0,1,0,14.425019,14.425019,0,0,0,0,0,0,0,0,1,1,0,2.6119158,0,0,0,39,46.959999,57.16,56.150002,6,1,1,0,0,4,4,1,594,170050.56,0,0,3332.6428 -10401,12802,23299,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,5.6810551,5.6985326,3,0,0,0,-9,0,-953.52319,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.9161677,10.586733,3,48.82,47.619999,-9,-9,5,1,1,0,0,10,2,0,726,381414.06,0,0,1402.9346 -10402,12803,23300,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-991.72363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.669998,21.91,-9,-9,3,1,1,0,0,9,1,1,329,132683.73,0,0,-734.2674 -10403,12804,23301,23302,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,0,4,0,8.5162754,8.0550003,1,0,-9,33,0,0,-28.172327,0,0,0,57,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4067044,8.3018732,0,0,57.16,56.150002,49,48,6,1,1,0,0,10,5,1,726.5,3352061.5,0,0,3832.2671 -10403,12804,23302,23301,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.6664133,8.5127134,0,1,0,-9,8,0,0,-57.004971,0,0,0,57,2,4,3,-9,-9,2019,2,1,11,2,25,25,15,1,0,4,0,25.672134,25.672134,0,0,0,0,0,0,0,0,0,0,0,5.2519345,0,0,0,49,48,57.16,56.150002,5,1,1,0,0,10,5,1,726.5,3352061.5,0,0,3832.2671 -10404,12805,23303,23304,-9,-9,2,1,0,58,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,18,0,-1,-83.515991,0,0,0,59,3,3,1,2,-9,2019,3,1,25,7,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.110001,14.37,55.75,50.299999,2,1,1,0,0,13,5,1,1246,232553.66,0,0,3784.2842 -10404,12805,23304,23303,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,3,8.6877623,9.20714,6.0534954,1,0,-9,21,0,1,-46.283714,0,0,0,58,2,1,3,3,3,2019,2,2,6,0,48,37,15,1,0,3,0,20.873373,20.873373,0,0,0,0,0,0,0,0,1,1,0,6.392107,6.1712837,0,0,55.75,50.299999,48.110001,14.37,6,1,1,0,0,13,5,1,1246,232553.66,0,0,3784.2842 -10405,12806,23305,23307,-9,-9,1,1,0,56,1,0,1,0,1,-9,2,1,0,0,4,8.567214,8.4933081,0,2,0,-9,35,0,-4,-95.020943,0,0,0,60,2,3,1,3,3,2019,1,2,10,0,47,40,15,1,0,1,0,12.877225,12.877225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.330002,39.68,54.369999,54.799999,6,1,1,0,0,12,5,1,957.66669,441182,0,0,3182.8853 -10405,12806,23306,-9,23305,23307,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.63947,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,12,5,1,957.66669,441182,0,0,3182.8853 -10405,12806,23307,23305,-9,-9,2,1,1,60,1,0,1,0,2,-9,2,1,0,0,3,8.4547501,8.4068813,0,2,0,-9,35,0,4,-79.281975,0,0,0,56,1,4,1,2,2,2019,1,1,8,0,42,42,15,1,0,1,0,12.454522,12.454522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,60.330002,39.68,6,1,1,0,0,12,5,1,957.66669,441182,0,0,3182.8853 -10406,12807,23308,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,2,7.907661,7.8174906,0,3,0,0,0,-9,0,-1103.3138,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,36,35,15,1,0,-9,0,9.2556181,9.2556181,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.880001,44.259998,-9,-9,3,1,1,0,1,11,3,0,202,520358.84,0,0,1619.1565 -10406,12808,23309,-9,23308,-9,2,1,1,29,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-880.55646,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.080002,44.799999,-9,-9,4,1,1,1,0,11,1,0,197,-125593.09,0,0,-1312.0374 -10407,12809,23310,-9,23311,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-974.49176,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,1256.5,1726.125,0,0,1959.9338 -10407,12809,23311,-9,-9,-9,1,1,0,38,3,0,1,0,1,-9,2,1,0,1,2,8.3305998,8.2355547,3.271842,4,0,0,0,-9,0,-1023.5244,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,27,10,0,40,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.0021467,0,112.55701,3,24.34,48.880001,-9,-9,2,1,1,0,0,13,4,1,1256.5,1726.125,0,0,1959.9338 -10408,12810,23312,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,6,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1013.4296,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,7,0,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.439999,44.939999,-9,-9,5,1,1,0,0,10,1,1,141,163214.53,0,0,0 -10409,12811,23313,-9,-9,23314,1,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.7020626,7.9974618,0,3,0,0,0,-9,0,-947.18201,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,8.0404539,8.0404539,0,0,0,0,0,0,0,0,0,0,0,2.9768822,0,0,0,52.990002,51.279999,-9,-9,7,1,1,0,0,2,3,1,842,222071.19,0,0,1620.9425 -10409,12812,23314,-9,-9,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,0,4,8.4470863,8.4391384,0,3,0,0,0,-9,0,-906.33508,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,40,15,1,0,-9,0,9.7473888,9.7473888,0,0,0,0,0,0,0,0,0,0,0,1.5801383,0,0,0,52,55,-9,-9,6,4,6,0,0,2,4,1,1333,77918.742,0,0,1750.1906 -10410,12813,23315,-9,23316,23317,6,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.4355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,401,323704.06,0,0,5479.751 -10410,12813,23316,23317,-9,-9,1,1,0,51,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,23,0,-1,133.55949,0,0,0,52,2,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.3615179,3,57.16,56.150002,41.59,61.77,6,1,1,0,0,5,4,1,401,323704.06,0,0,5479.751 -10410,12813,23317,23316,-9,-9,2,1,1,52,1,0,3,0,2,-9,2,1,0,0,4,9.3032179,9.4718323,0,2,0,-9,7,0,1,-50.651119,0,0,0,51,2,4,3,2,2,2019,2,1,19,7,51,49,15,1,1,3,0,34.726845,34.726845,0,0,0,0,0,0,0,2,1,1,0,6.6001158,0,4.0256944,3,41.59,61.77,57.16,56.150002,5,1,1,0,0,5,4,1,401,323704.06,0,0,5479.751 -10410,12813,23318,-9,23316,23317,4,1,1,17,2,0,3,1,2,0,7,2,0,0,5,6.724412,6.609272,0,2,0,0,0,-9,0,-1082.5857,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,1,31,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.91,56.220001,-9,-9,7,1,1,0,0,5,4,1,401,323704.06,0,0,5479.751 -10410,12813,23319,-9,23316,23317,5,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.26721,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,401,323704.06,0,0,5479.751 -10410,12814,23320,-9,23316,23317,3,1,1,18,2,0,3,0,2,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1023.0773,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,-9,-9,5,1,1,1,1,5,4,1,553,62294.434,0,0,0 -10411,12815,23321,-9,23323,23325,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.4735,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,4,1,1237.3334,500381.94,0,0,3614.9751 -10411,12815,23322,-9,23323,23325,4,1,1,12,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-893.77405,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,13,4,1,1237.3334,500381.94,0,0,3614.9751 -10411,12815,23323,23325,-9,-9,2,1,0,41,1,1,4,0,1,-9,2,1,0,0,5,9.0420322,8.898138,0,2,0,-9,10,0,-5,12.878674,0,0,1,46,2,5,1,3,2,2019,1,1,1,0,45,40,15,1,0,1,0,19.169346,19.169346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,57.060001,57.759998,6,1,1,0,0,13,4,1,1237.3334,500381.94,0,0,3614.9751 -10411,12815,23324,-9,23323,23325,3,1,1,12,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.73358,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,1237.3334,500381.94,0,0,3614.9751 -10411,12815,23325,23323,-9,-9,1,1,1,46,1,1,4,0,2,-9,2,1,0,0,5,7.8041596,7.9606252,0,2,0,-9,10,0,5,-141.97919,0,0,0,41,1,5,1,3,2,2019,1,2,6,0,33,33,15,1,0,1,0,10.598286,10.598286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,60.02,56.419998,6,1,1,0,0,13,4,1,1237.3334,500381.94,0,0,3614.9751 -10411,12815,23326,-9,23323,23325,5,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.6179,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,4,1,1237.3334,500381.94,0,0,3614.9751 -10412,12816,23327,23329,-9,-9,1,1,0,41,1,1,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-7,24.946163,0,0,1,48,2,4,1,3,2,2019,3,6,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,61.529999,59.150002,49.669998,6,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10412,12816,23328,-9,23327,-9,5,1,0,7,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1145.9192,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10412,12816,23329,23327,-9,-9,6,1,1,48,1,1,5,0,2,-9,2,1,0,0,4,7.9423466,7.9308515,0,2,0,-9,5,0,7,-30.630995,0,0,0,41,2,4,3,-9,-9,2019,2,1,11,1,41,45,15,1,0,3,0,8.3200483,8.3200483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,49.669998,45.32,61.529999,7,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10412,12816,23330,-9,23327,23329,8,1,1,2,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.0273,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10412,12816,23331,-9,23327,23329,7,1,0,3,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.3509,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10412,12816,23332,-9,23327,-9,3,1,0,11,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.46484,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10412,12816,23333,-9,23327,-9,4,1,0,10,2,1,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1031.2913,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,6,2,0,576,53048.961,0,0,3433.1538 -10413,12817,23334,-9,-9,-9,1,1,0,79,3,0,1,0,3,-9,4,3,0,1,3,0,6.0391755,6.2314892,4,0,0,0,-9,0,-1051.829,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,125.92471,0,132.49316,0,0,1,1,0,0,6.458323,0,0,52,46,-9,-9,6,1,1,0,0,2,2,1,2030,228251.59,0,0,2720.6094 -10413,12818,23335,-9,23334,-9,2,1,0,51,3,0,1,0,2,-9,2,1,0,0,2,7.7222519,8.1327372,0,3,0,0,0,-9,0,-899.37482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,40,15,1,0,-9,1,10.068442,10.068442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.200001,49.400002,-9,-9,4,1,1,0,0,2,4,1,755,-29278.316,0,0,1007.7118 -10413,12818,23336,-9,23335,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1184.7039,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,2,4,1,755,-29278.316,0,0,1007.7118 -10414,12819,23337,23338,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,5.4441791,5.5512486,1,0,-9,7,0,0,26.979191,0,0,0,64,2,3,1,3,2,2019,3,1,11,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3873663,0,0,50,47,35.75,56.450001,5,1,1,0,0,8,2,1,830.5,520205.25,0,0,1377.584 -10414,12819,23338,23337,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,0,7.248878,7.2447052,1,0,-9,45,0,0,130.69818,0,0,0,64,2,3,3,3,3,2019,2,2,13,4,0,37,15,1,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.9926887,7.5684643,122.09489,1,35.75,56.450001,50,47,6,1,1,0,0,8,2,1,830.5,520205.25,0,0,1377.584 -10415,12820,23339,23340,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,4,0,6.2986517,6.2699599,1,0,-9,3,0,4,-112.87672,0,0,0,57,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.163269,6.6382761,0,0,60.119999,54.799999,41.23,59.349998,7,1,1,0,0,2,3,1,262,188283.16,0,0,3767.1179 -10415,12820,23340,23339,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.7703199,8.2570448,0,1,0,-9,3,0,-4,-10.901049,0,0,0,61,2,4,3,-9,-9,2019,2,1,19,7,33,34,15,1,1,4,0,13.61281,13.61281,0,0,0,0,0,0,0,0,0,0,0,4.750751,0,0,0,41.23,59.349998,60.119999,54.799999,6,1,1,0,0,2,3,1,262,188283.16,0,0,3767.1179 -10416,12821,23341,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,6.6159129,6.8224473,3,0,0,0,-9,0,-1090.4969,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0511808,6.8458867,0,0,62.669998,49.540001,-9,-9,7,1,1,0,0,10,2,1,846,472878.25,0,0,1052.2776 -10417,12822,23342,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1138.2645,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.57,37.5,-9,-9,5,1,1,0,0,2,1,0,328,0,0,0,1481.6647 -10418,12823,23343,23344,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,3,8.3608828,8.3877563,0,1,0,-9,2,0,-4,49.881573,0,1,1,33,1,4,1,-9,-9,2019,1,1,16,4,45,40,15,1,1,1,0,12.824425,12.824425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.639999,52.959999,49.860001,55.310001,3,1,1,0,0,8,5,1,651.5,1554216.5,0,0,5131.0391 -10418,12823,23344,23343,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,9.2826405,9.2900505,0,1,0,-9,2,0,4,10.856875,0,0,0,29,2,3,1,-9,-9,2019,1,2,11,0,43,48,15,1,0,1,0,26.169922,26.169922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.860001,55.310001,40.639999,52.959999,5,1,1,0,0,8,5,1,651.5,1554216.5,0,0,5131.0391 -10419,12824,23345,-9,-9,-9,1,1,0,22,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1085.0493,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.900002,-9,-9,4,1,1,0,0,12,1,0,1083,-40077.645,0,0,1439.6635 -10420,12825,23346,23347,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.6386528,8.4414015,0,1,0,-9,8,0,-2,-60.896923,0,1,1,31,3,3,1,-9,-9,2019,1,1,9,0,41,41,15,1,0,1,0,13.929101,13.929101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,57.330002,53.459999,5,1,1,0,0,10,5,1,399,181995.09,0,0,2970.3271 -10420,12825,23347,23346,-9,-9,1,1,1,31,1,0,0,0,3,-9,2,1,0,0,3,8.1454659,8.0984716,0,1,0,-9,8,0,2,-117.32014,0,0,0,29,1,4,1,3,2,2019,1,2,9,0,38,38,15,1,0,1,0,8.5552464,8.5552464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,51.830002,57.200001,5,1,1,0,0,10,5,1,399,181995.09,0,0,2970.3271 -10421,12826,23348,23349,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,5,5.2273164,8.5079231,8.1673574,1,0,-9,45,0,1,3.7224145,0,0,0,70,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8074713,8.4852438,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,13,4,1,241,1254276.5,0,0,3423.1841 -10421,12826,23349,23348,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,45,0,-1,22.755791,0,0,0,71,1,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6928411,0,0,0,51.830002,57.200001,57.060001,57.759998,6,1,1,0,0,13,4,1,241,1254276.5,0,0,3423.1841 -10422,12827,23350,-9,-9,-9,1,1,0,43,2,0,3,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1030.4761,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.150002,23.76,-9,-9,5,1,1,0,0,11,1,0,653.5,-6205.1797,0,0,1248.6984 -10422,12827,23351,-9,23350,-9,3,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-965.86243,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,1,0,653.5,-6205.1797,0,0,1248.6984 -10422,12827,23352,-9,23350,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-990.23041,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,1,0,653.5,-6205.1797,0,0,1248.6984 -10422,12827,23353,-9,23350,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.02692,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.009998,43.110001,-9,-9,2,1,1,0,0,11,1,0,653.5,-6205.1797,0,0,1248.6984 -10423,12828,23354,23355,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,3,7.9829292,8.2340889,0,1,0,-9,8,0,-1,22.56352,0,0,0,62,3,3,3,-9,-9,2019,2,1,10,1,66,90,15,1,0,4,0,6.6268091,6.6268091,0,0,0,0,0,0,0,0,0,0,0,3.19438,0,0,0,51,48,58.32,50.220001,5,1,1,0,0,10,3,1,767,1078809,0,0,511.18561 -10423,12828,23355,23354,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,1,44.576283,0,0,0,61,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,51,48,7,1,1,0,0,10,3,1,767,1078809,0,0,511.18561 -10424,12829,23356,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,1,1,0,0,3,6.5440621,7.0897222,2.5804279,3,0,0,0,-9,0,-894.58112,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,90,0,15,1,0,-9,0,.97868544,.97868544,0,0,0,0,0,0,0,2,1,0,1,0,3.0927904,6.3474813,3,52.220001,38.130001,-9,-9,5,1,1,0,0,6,2,1,797,280709.91,0,0,3030.4397 -10425,12830,23357,23358,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.6414862,8.3687506,1,0,-9,21,0,5,102.94939,0,0,0,62,2,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5973053,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,4,4,1,919,1916960,0,0,5315.4756 -10425,12830,23358,23357,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.0641637,7.345799,1,0,-9,19,0,-5,211.74739,0,0,0,67,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3413005,7.532341,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,4,4,1,919,1916960,0,0,5315.4756 -10426,12831,23359,23360,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.4330149,8.2337637,0,1,0,-9,9,0,1,20.240393,0,0,0,53,3,4,1,2,3,2019,1,2,9,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8427253,0,0,0,58.32,50.220001,48.869999,58.549999,6,1,1,0,0,11,5,1,1798,156295.97,0,0,2834.6885 -10426,12831,23360,23359,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,8.2114859,7.7611213,0,1,0,-9,9,0,-1,-53.360779,0,0,0,54,2,3,1,-9,-9,2019,1,1,11,0,29,28,15,1,0,1,0,12.934589,12.934589,0,0,0,0,0,0,0,0,0,0,0,7.1501451,0,0,0,48.869999,58.549999,58.32,50.220001,6,1,1,0,0,11,5,1,1798,156295.97,0,0,2834.6885 -10426,12832,23361,-9,23360,23359,3,1,0,28,2,0,0,0,2,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-952.90295,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,57.549999,-9,-9,6,1,1,0,0,11,1,1,476,-52881.098,0,0,-1124.3896 -10426,12833,23362,-9,23360,23359,4,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,7.8267097,7.7946215,0,3,0,0,0,-9,0,-980.98401,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,30,54,15,1,0,-9,1,8.252737,8.252737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.139999,56.099998,-9,-9,6,1,1,0,0,11,3,1,507,-25562.729,0,0,866.98846 -10427,12834,23363,23364,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,5,0,5.7861362,5.3752613,1,0,-9,51,0,1,-105.72061,0,0,0,66,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6704283,5.5284219,0,0,58.049999,54.52,57.16,56.150002,6,1,1,0,0,8,2,1,1145.5,691858.38,0,0,2356.6023 -10427,12834,23364,23363,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.0877957,7.0627432,1,0,-9,51,0,-1,41.488106,0,0,0,67,3,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2732053,0,0,57.16,56.150002,58.049999,54.52,6,1,1,0,0,8,2,1,1145.5,691858.38,0,0,2356.6023 -10428,12835,23365,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1000.4456,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,55.32,-9,-9,5,1,1,0,0,4,1,1,387,-77268.555,0,0,-976.7229 -10429,12836,23366,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,5,7.2571955,7.7254763,6.6366582,4,0,0,0,-9,0,-981.49139,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,0,15,1,0,-9,0,8.0728178,8.0728178,0,0,0,0,0,0,0,0,1,1,0,6.9728937,0,0,0,43.919998,62.310001,-9,-9,6,1,1,0,0,5,3,1,472.5,-25266.516,0,0,1624.686 -10429,12836,23367,-9,23366,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.12646,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,1,472.5,-25266.516,0,0,1624.686 -10430,12837,23368,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,5,8.5569143,9.0276022,0,3,0,0,0,-9,0,-981.58972,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,31,12,43,43,15,1,1,-9,0,12.197433,12.197433,0,0,0,0,0,0,0,0,1,1,0,1.3521078,0,0,0,30.67,65.949997,-9,-9,3,1,1,0,0,9,5,1,327,838730.13,0,0,2335.6472 -10431,12838,23369,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,1,1,0,0,5,9.1107616,9.0843773,0,3,0,0,0,-9,0,-959.41309,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,60,20,15,1,0,-9,0,20.50458,20.50458,0,0,0,0,0,0,0,0,0,0,0,6.4222841,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,9,5,1,556,279041.03,0,0,3513.4534 -10432,12839,23370,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1081.7861,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7291641,0,0,0,39.66,35.639999,-9,-9,3,1,1,0,0,12,1,0,308,-181694.13,0,0,922.01611 -10433,12840,23371,23372,-9,-9,2,1,0,60,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,28,0,5,0,0,0,0,55,3,1,3,3,3,2019,4,1,30,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.76,23.91,38.560001,23.07,1,1,1,0,0,12,1,0,903.5,-25441.373,0,0,919.98669 -10433,12840,23372,23371,-9,-9,1,1,1,55,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,28,0,-5,0,0,0,0,60,2,1,3,-9,3,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.560001,23.07,18.76,23.91,4,1,1,0,0,12,1,0,903.5,-25441.373,0,0,919.98669 -10434,12841,23373,23374,-9,-9,2,1,0,26,1,0,1,0,2,-9,2,1,0,0,3,7.9034534,7.9904847,0,2,0,-9,4,0,0,20.191935,0,1,1,26,2,4,3,-9,-9,2019,2,1,20,7,44,0,15,1,1,3,0,7.1436472,7.1436472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,54.77,35.790001,46.84,5,1,1,0,1,1,3,1,761,-60189.02,0,0,1130.3969 -10434,12841,23374,23373,-9,-9,1,1,1,26,1,0,1,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,4,0,0,32.741642,-9,1,0,26,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,46.84,45.32,54.77,5,1,1,0,0,1,3,1,761,-60189.02,0,0,1130.3969 -10434,12841,23375,-9,23373,23374,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.3446,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,3,1,761,-60189.02,0,0,1130.3969 -10435,12842,23376,23377,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.2215276,7.2806225,1,0,-9,40,0,5,105.27667,0,0,0,65,2,3,3,3,2,2019,4,2,13,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0751672,7.0733151,0,0,53.560001,17.35,49.580002,55.59,4,1,1,0,0,5,2,1,733,432122.28,0,0,2210.8289 -10435,12842,23377,23376,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,6.220613,6.1397424,1,0,-9,9,0,-5,-61.754299,0,0,0,70,2,3,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4374914,6.289485,0,0,49.580002,55.59,53.560001,17.35,6,1,1,0,0,5,2,1,733,432122.28,0,0,2210.8289 -10436,12843,23378,23379,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-2,0,0,0,0,87,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.54809,1,52,45,54,45,6,4,5,0,0,8,1,0,596,210908.19,0,0,2117.5801 -10436,12843,23379,23378,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,57,0,2,0,0,0,0,85,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,6.1264157,120.54385,0,0,0,83.442062,0,1,1,0,0,0,0,0,54,45,52,45,6,4,5,0,0,8,1,0,596,210908.19,0,0,2117.5801 -10437,12844,23380,-9,23382,23381,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.15564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,895.25,586597.5,0,0,3644.543 -10437,12844,23381,23382,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,0,4,9.0536528,8.8619366,0,2,0,-9,28,0,0,-29.415766,0,0,0,51,2,3,1,2,3,2019,1,2,15,3,37,37,15,1,0,1,0,20.78476,20.78476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.060001,62.040001,58.759998,34.950001,5,1,1,0,0,6,5,1,895.25,586597.5,0,0,3644.543 -10437,12844,23382,23381,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,0,3,8.4531765,8.2790709,0,2,0,-9,28,0,0,53.725239,0,0,0,51,2,4,1,2,2,2019,1,1,11,1,35,35,15,1,0,1,0,13.628837,13.628837,0,0,0,0,0,0,0,0,1,1,0,2.7634845,0,0,0,58.759998,34.950001,41.060001,62.040001,4,1,1,0,1,6,5,1,895.25,586597.5,0,0,3644.543 -10437,12844,23383,-9,23382,23381,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.27515,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,895.25,586597.5,0,0,3644.543 -10438,12845,23384,23385,-9,-9,2,1,1,45,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,5,0,-19,87.803772,0,0,0,64,1,4,3,-9,-9,2019,4,1,17,4,0,38,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.513165,0,0,0,51.830002,57.200001,48.869999,58.549999,4,1,1,1,0,4,2,1,1143,493012.88,0,0,1188.1483 -10438,12845,23385,23384,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,6.7370744,6.2063351,1,0,-9,5,0,19,-.66399765,0,0,0,45,1,4,3,-9,-9,2019,4,2,10,0,0,24,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0234673,6.3811617,0,0,48.869999,58.549999,51.830002,57.200001,6,1,1,0,0,4,2,1,1143,493012.88,0,0,1188.1483 -10439,12846,23386,-9,23387,23388,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.2229,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,4,1,699,371263.28,0,0,6736.1328 -10439,12846,23387,23388,-9,-9,1,1,0,50,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,3,-45.096836,0,0,0,47,1,5,1,1,1,2019,3,2,13,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1008024,0,0,0,58.299999,39.5,36.889999,52.200001,6,2,3,0,0,9,4,1,699,371263.28,0,0,6736.1328 -10439,12846,23388,23387,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,5,8.8430462,8.9898567,0,2,0,-9,15,0,-3,-9.6263409,0,0,0,50,2,3,3,3,2,2019,2,1,17,6,38,39,15,1,1,3,0,20.626818,20.626818,0,0,0,0,0,0,0,0,1,1,0,7.4757962,0,0,0,36.889999,52.200001,58.299999,39.5,6,2,3,0,0,9,4,1,699,371263.28,0,0,6736.1328 -10439,12846,23389,-9,23387,23388,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.4389,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,4,1,699,371263.28,0,0,6736.1328 -10439,12846,23390,-9,23387,23388,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1120.7577,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,9,4,1,699,371263.28,0,0,6736.1328 -10440,12847,23391,-9,-9,23392,2,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1025.7788,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,1,0,736.5,98926.32,0,0,2593.1394 -10440,12847,23392,-9,-9,-9,1,1,1,36,3,0,3,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-853.54742,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,33,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.34,43.34,-9,-9,1,1,1,0,0,10,1,0,736.5,98926.32,0,0,2593.1394 -10440,12847,23393,-9,-9,23392,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1016.6108,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,736.5,98926.32,0,0,2593.1394 -10440,12847,23394,-9,-9,23392,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1092.0923,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,1,0,736.5,98926.32,0,0,2593.1394 -10441,12848,23395,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,6.2096548,6.3050289,3,0,0,0,-9,0,-1149.7446,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7683579,6.4523029,0,0,51.529999,43.93,-9,-9,6,1,1,0,0,1,2,1,473,447358.72,0,0,1744.4927 -10442,12849,23396,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-899.21075,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32.459999,-9,-9,1,1,1,0,1,6,1,0,1813,-99260.68,0,0,196.24376 -10443,12850,23397,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-898.50812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.4312145,0,0,0,35.060001,37.970001,-9,-9,7,1,1,0,0,7,1,1,427,-94565.773,0,0,334.96387 -10444,12851,23398,23399,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,8.5105267,8.5498152,0,1,0,-9,10,0,-3,70.644478,0,0,0,64,1,3,1,2,3,2019,1,2,19,7,38,39,15,1,1,1,0,15.775907,15.775907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.330002,60.150002,49.040001,55.860001,3,1,1,0,0,12,5,1,377.5,402508.53,0,0,3954.7363 -10444,12851,23399,23398,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,0,3,8.8536892,9.1379747,0,1,0,-9,10,0,3,58.573673,0,0,0,61,1,3,1,3,3,2019,1,1,11,2,39,41,15,1,0,1,0,19.91868,19.91868,0,0,0,0,0,0,0,0,0,0,0,5.3466539,0,0,0,49.040001,55.860001,39.330002,60.150002,6,1,1,0,0,12,5,1,377.5,402508.53,0,0,3954.7363 -10445,12852,23400,23402,-9,-9,4,1,1,57,1,0,3,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,15,9.1301613,-9,0,0,42,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,44.619999,40.369999,5,2,3,1,0,8,2,0,816.33331,233148.59,0,0,2023.7983 -10445,12852,23401,-9,23402,23400,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-990.06793,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,2,0,816.33331,233148.59,0,0,2023.7983 -10445,12852,23402,23400,-9,-9,1,1,0,42,1,0,3,0,2,-9,1,1,0,0,3,8.0229998,7.7657809,0,2,0,-9,1,-9,-15,-152.84358,-9,0,1,57,3,3,3,2,1,2019,2,4,9,1,40,0,15,1,0,3,0,8.3996363,8.3996363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.619999,40.369999,51,49,5,2,3,0,1,8,2,0,816.33331,233148.59,0,0,2023.7983 -10446,12853,23403,-9,-9,-9,1,1,0,21,2,0,0,0,2,0,7,2,0,0,4,5.8260856,5.750432,0,3,0,0,0,-9,0,-1004.2227,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.73,58.23,-9,-9,6,1,1,0,0,12,2,1,382,-92985.445,0,0,24.760094 -10447,12854,23404,23405,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,3,9.3744001,9.4980259,0,2,0,-9,19,-9,3,83.62542,-9,0,0,50,3,5,1,3,2,2019,1,2,7,0,53,0,15,1,0,1,0,23.794292,23.794292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,44.990002,48.009998,6,1,1,0,0,9,5,1,2187,2453421,0,0,5715.1787 -10447,12854,23405,23404,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,0,5,9.0926571,8.7087774,0,2,0,-9,19,-9,-3,22.752407,-9,0,0,53,2,3,1,2,2,2019,1,1,11,0,37,0,15,1,0,1,0,26.546476,26.546476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.990002,48.009998,54.369999,54.799999,7,1,1,0,0,9,5,1,2187,2453421,0,0,5715.1787 -10448,12855,23406,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,2,1,0,0,3,6.9902797,7.9697905,7.008534,3,0,0,0,-9,0,-1018.3645,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,19,35,15,1,0,-9,0,8.3743811,8.3743811,0,0,0,0,0,0,0,0,1,1,0,3.2447174,7.4469151,0,0,42.900002,50.310001,-9,-9,5,1,1,0,0,2,3,1,537,631619.94,0,0,1594.4668 -10449,12856,23407,-9,-9,-9,1,1,0,28,2,0,1,0,3,-9,3,3,0,1,4,0,0,0,4,0,-9,0,-9,0,-1043.1968,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41.878353,3,60,48.060001,-9,-9,6,1,1,1,0,5,1,0,290,-57229.793,0,0,1383.7239 -10450,12857,23408,-9,23412,23409,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-955.95294,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,312.20001,148069.34,0,0,1849.2526 -10450,12857,23409,23412,-9,-9,4,1,1,32,1,1,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,2,3.4687164,-9,0,0,30,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,46.310001,51.529999,6,1,1,1,0,9,1,0,312.20001,148069.34,0,0,1849.2526 -10450,12857,23410,-9,23412,23409,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1072.4757,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,312.20001,148069.34,0,0,1849.2526 -10450,12857,23411,-9,23412,23409,2,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1143.7236,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,1,0,312.20001,148069.34,0,0,1849.2526 -10450,12857,23412,23409,-9,-9,1,1,0,30,1,1,3,0,2,-9,6,3,0,0,3,0,4.6341963,4.8862672,2,0,-9,1,-9,-2,-99.320816,-9,0,1,32,2,3,3,2,3,2019,4,4,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7930217,0,0,0,46.310001,51.529999,46.57,54.66,6,1,1,0,0,9,1,0,312.20001,148069.34,0,0,1849.2526 -10451,12858,23413,23414,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,2,6.9246764,6.7895613,0,1,0,-9,9,0,-4,68.017242,0,0,0,56,2,3,1,3,3,2019,1,2,11,0,21,21,15,1,0,1,0,6.2413845,6.2413845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.790001,48.98,49.220001,47.48,6,1,1,0,0,5,5,1,435,87314.547,0,0,3592.1748 -10451,12858,23414,23413,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,3,9.3056984,9.3095064,0,1,0,-9,9,0,4,-63.143257,0,0,0,52,3,2,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,26.000711,26.000711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.220001,47.48,35.790001,48.98,6,1,1,0,0,5,5,1,435,87314.547,0,0,3592.1748 -10452,12859,23415,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1065.1146,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,2,0,15,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2815228,0,0,0,39.48,21.25,-9,-9,5,1,1,0,0,4,1,0,3609,0,0,0,-200.87408 -10453,12860,23416,23417,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,9.703639,9.4885387,1,0,-9,45,0,7,-106.2192,0,0,0,65,1,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3007503,9.1046724,0,0,59.290001,49.68,42.709999,37.110001,6,1,1,0,0,9,5,1,649.5,13340538,0,0,11125.299 -10453,12860,23417,23416,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,8.4524803,8.4943562,1,0,-9,45,0,-7,-.77202326,0,0,0,72,1,4,3,3,2,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1793022,8.5603752,0,0,42.709999,37.110001,59.290001,49.68,5,1,1,0,0,9,5,1,649.5,13340538,0,0,11125.299 -10454,12861,23418,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,1,1,0,0,4,7.3922396,7.1346154,0,3,0,0,0,-9,0,-902.72778,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0129547,0,0,0,17.610001,64.830002,-9,-9,2,1,1,0,0,8,2,1,274,230175.91,0,0,17.210501 -10455,12862,23419,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,3,7.9870872,8.029542,0,4,0,0,0,-9,0,-975.93085,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,45,35,15,1,0,-9,0,8.742177,8.742177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,56.029999,-9,-9,2,1,1,0,0,12,3,1,316.5,194134.47,0,0,1051.2963 -10455,12862,23420,-9,23419,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-861.5567,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,3,1,316.5,194134.47,0,0,1051.2963 -10456,12863,23421,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,3,8.7457848,8.8838263,0,3,0,0,0,-9,0,-940.95422,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,35,38,15,1,0,-9,0,18.497448,18.497448,0,0,0,0,0,0,0,0,0,0,0,2.5657358,0,0,0,48,49,-9,-9,5,1,1,0,0,8,5,1,665,885712.94,0,0,2063.6482 -10456,12864,23422,-9,23421,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.265542,8.2139635,0,3,0,0,0,-9,0,-969.38995,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,19,7,62,43,15,1,1,-9,1,6.1905522,6.1905522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.950001,64.540001,-9,-9,2,1,1,0,0,8,4,1,297,583605.81,0,0,821.56317 -10456,12865,23423,-9,23421,-9,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.2102213,7.8886132,0,3,0,0,0,-9,0,-992.60193,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,45,32,15,1,0,-9,1,10.090013,10.090013,0,0,0,0,0,0,0,0,0,0,0,3.9047527,0,0,0,49,58,-9,-9,5,1,1,0,0,8,4,1,636,-55162.102,0,0,1059.658 -10456,12866,23424,-9,23421,-9,4,1,0,21,2,0,0,1,2,0,7,2,0,0,4,6.0314317,5.5717831,0,3,0,0,0,-9,0,-1067.2545,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,4,1,1,0,0,8,2,1,1121,-87670.57,0,0,400.13336 -10457,12867,23425,23426,-9,-9,2,1,0,28,1,1,1,0,1,-9,5,1,0,0,3,0,0,0,2,0,-9,4,0,2,-60.109371,0,1,1,26,1,4,2,-9,-9,2019,2,1,14,3,0,32,15,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7756772,0,0,0,46.790001,41.889999,45.009998,57.459999,5,2,3,0,0,11,2,1,500.66666,51966.215,0,0,4133.4971 -10457,12867,23426,23425,-9,-9,1,1,1,26,1,1,1,0,1,0,7,2,0,0,4,6.8482318,7.0077066,0,2,0,-9,4,0,-2,47.990509,-9,1,0,28,1,3,1,1,1,2019,3,2,12,1,4,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6850982,0,0,0,45.009998,57.459999,46.790001,41.889999,6,1,1,0,0,11,2,1,500.66666,51966.215,0,0,4133.4971 -10457,12867,23427,-9,23425,23426,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1129.7742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,11,2,1,500.66666,51966.215,0,0,4133.4971 -10458,12868,23428,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-993.88715,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,1,1,0,1,13,1,1,749,130283.95,0,0,0 -10458,12869,23429,-9,23428,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,7.4920373,7.3476205,0,3,0,0,0,-9,0,-943.19653,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,20,26,15,1,0,-9,1,11.098133,11.098133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,3,1,501,85780.586,0,0,2176.8613 -10459,12870,23430,23431,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,0,4,7.4919777,7.6495972,0,1,0,-9,8,0,-3,-122.02876,0,0,0,55,3,3,1,3,3,2019,1,1,6,0,44,39,15,1,0,1,0,6.0159321,6.0159321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,50,49,7,1,1,0,0,13,4,0,592.5,62664.34,0,0,2351.0232 -10459,12870,23431,23430,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,3,7.9540339,8.0263023,0,1,0,-9,8,0,3,26.112394,0,0,0,52,3,4,1,3,3,2019,1,2,10,1,45,45,15,1,0,1,0,6.3296556,6.3296556,0,0,0,0,0,0,0,0,0,0,0,6.2250514,0,0,0,50,49,62.490002,55.09,5,1,1,0,0,13,4,0,592.5,62664.34,0,0,2351.0232 -10460,12871,23432,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,4,0,8.6852589,8.5262232,3,0,0,0,-9,0,-1030.6022,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4925575,8.7335224,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,9,5,1,147,3405934.5,0,0,3983.7341 -10461,12872,23433,23434,-9,-9,2,1,0,68,1,0,0,0,2,-9,1,1,0,0,3,7.7776432,8.0349712,0,1,0,-9,7,0,-3,-105.25043,0,0,0,71,2,4,1,-9,-9,2019,1,1,11,1,30,20,15,1,0,1,0,11.773035,11.773035,0,0,0,0,0,0,0,0,1,1,0,6.3431692,0,0,0,50,47,51.77,58.57,5,1,1,0,0,8,4,1,1055.5,1605816.8,0,0,6151.0547 -10461,12872,23434,23433,-9,-9,1,1,1,71,1,0,0,0,2,-9,1,1,0,0,4,7.3808179,7.4925842,5.5045953,1,0,-9,7,0,3,94.249489,0,0,0,68,2,3,1,2,2,2019,1,2,10,0,40,45,15,1,0,1,0,4.5646887,4.5646887,0,0,0,0,0,0,0,0,1,1,0,7.8878579,5.5713305,0,0,51.77,58.57,50,47,5,1,1,0,1,8,4,1,1055.5,1605816.8,0,0,6151.0547 -10462,12873,23435,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,1,1,0,0,3,8.8240767,8.9610825,0,3,0,0,0,-9,0,-949.94263,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,72,81,15,1,1,-9,0,11.021026,11.021026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,52.32,-9,-9,4,1,1,0,0,6,5,0,2179,339263.94,0,0,2105.6682 -10463,12874,23436,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,3,3,0,1,3,0,6.2650032,6.5020294,3,0,-9,0,-9,0,-1037.3367,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4909682,5.8334823,0,0,51,48,-9,-9,5,1,1,1,0,6,2,0,629,310165.03,0,0,920.38208 -10464,12875,23437,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,0,5,0,8.1356344,7.7173729,3,0,0,0,-9,0,-1000.215,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.789443,21.718903,3,62.389999,56.709999,-9,-9,7,1,1,0,0,12,4,1,864,608597.44,0,0,1443.0142 -10465,12876,23438,23439,-9,-9,1,1,0,67,1,0,0,0,3,-9,1,1,0,0,3,3.1678002,3.492202,2.3100996,1,0,-9,7,0,7,-34.130173,0,0,0,60,2,4,1,3,3,2019,1,3,10,0,15,15,15,1,0,1,0,.12433059,.12433059,0,0,0,0,0,0,0,2,1,1,0,2.2826443,1.8083621,2.9081557,3,53.139999,51.279999,60.84,47.650002,5,1,1,0,0,10,1,1,452.5,513360.44,0,0,70.609848 -10465,12876,23439,23438,-9,-9,3,1,1,60,1,0,0,0,2,-9,1,1,0,0,4,0,0,0,1,0,-9,7,0,-7,-8.9192724,0,0,0,67,3,3,1,-9,-9,2019,1,1,8,0,35,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3381681,0,0,0,60.84,47.650002,53.139999,51.279999,6,1,1,0,0,10,1,1,452.5,513360.44,0,0,70.609848 -10465,12877,23440,-9,23438,23439,2,1,0,39,2,0,0,0,2,-9,2,1,0,0,3,7.9164,8.1656456,0,3,0,0,0,-9,0,-1017.5228,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,40,41,15,1,1,-9,1,8.3081436,8.3081436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,55.720001,-9,-9,4,1,1,0,0,10,3,1,1243,77264.703,0,0,1476.4429 -10466,12878,23441,23442,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,9.1310921,9.4527769,0,1,0,1,1,-9,0,75.611992,0,0,0,30,1,3,1,2,2,2019,1,2,9,1,39,38,15,1,0,1,0,26.899555,26.899555,0,0,0,0,0,0,0,0,0,0,0,7.701457,0,0,0,49.630001,54.220001,49.040001,55.860001,6,1,1,0,0,8,5,1,672.5,22321.273,0,0,5297.8711 -10466,12878,23442,23441,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,3,8.8558149,8.8305559,0,1,0,-9,1,-9,0,178.88519,-9,0,1,30,1,3,1,-9,-9,2019,1,1,11,2,47,0,15,1,0,1,0,17.182816,17.182816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,49.630001,54.220001,5,1,1,0,0,8,5,1,672.5,22321.273,0,0,5297.8711 -10467,12879,23443,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,4,8.6431341,8.2759705,0,3,0,0,0,-9,0,-1040.0052,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,46,58,15,1,0,-9,0,13.797743,13.797743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,6,2,3,0,0,2,5,1,128,345603.25,0,0,873.7597 -10468,12880,23444,23445,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,0,4,8.5280285,8.6308556,0,1,0,-9,4,0,0,-152.45464,0,0,0,50,2,4,1,3,2,2019,1,2,9,1,40,40,15,1,0,1,0,12.568828,12.568828,0,0,0,0,0,0,0,0,1,1,0,2.7392728,0,0,0,53,55,60.130001,49.27,6,1,1,0,0,5,5,1,697.5,647848.75,0,0,3080.0063 -10468,12880,23445,23444,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.4458914,8.52425,0,1,0,-9,4,0,0,-125.27729,0,0,0,50,2,4,1,-9,-9,2019,1,1,12,0,38,37,15,1,0,1,0,18.419966,18.419966,0,0,0,0,0,0,0,0,1,1,0,1.2258139,0,0,0,60.130001,49.27,53,55,6,1,1,0,0,5,5,1,697.5,647848.75,0,0,3080.0063 -10469,12881,23446,-9,23449,23448,5,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1023.4211,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.91,60.470001,-9,-9,7,1,1,0,0,12,3,1,1106,563294.31,0,0,2970.834 -10469,12881,23447,-9,23449,23448,6,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.4725,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,1,1106,563294.31,0,0,2970.834 -10469,12881,23448,23449,-9,-9,2,1,1,50,1,0,2,0,2,-9,1,1,0,0,4,8.0878267,7.7858286,0,2,0,-9,7,0,2,-86.528519,0,0,0,48,2,2,1,3,3,2019,1,1,9,0,50,50,15,1,0,1,0,6.7264166,6.7264166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.509998,43.73,6,1,1,0,0,12,3,1,1106,563294.31,0,0,2970.834 -10469,12881,23449,23448,-9,-9,1,1,0,48,1,0,2,0,2,-9,1,1,0,0,2,7.2588954,7.0927558,0,2,0,-9,7,0,-2,189.35208,0,0,0,50,2,4,1,3,3,2019,1,2,9,0,47,45,15,1,0,1,0,4.2127671,4.2127671,0,0,0,0,0,0,0,2,1,1,0,0,0,.29783344,3,52.509998,43.73,51.830002,57.200001,5,1,1,0,0,12,3,1,1106,563294.31,0,0,2970.834 -10469,12882,23450,-9,23449,23448,4,1,0,21,2,0,2,0,2,-9,2,1,0,0,5,7.9125333,7.8213573,0,3,0,0,0,-9,0,-980.29053,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,43,46,15,1,0,-9,1,5.4218745,5.4218745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,3,1,295,40550.723,0,0,2939.2329 -10470,12883,23451,-9,23452,23453,3,1,0,13,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1071.8357,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,1,895,1162115.6,0,0,1849.2739 -10470,12883,23452,23453,-9,-9,2,1,0,61,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,1,36,-9,-1,1.0288062,0,0,0,62,2,2,1,3,3,2019,3,1,26,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,48.919998,37.32,1,1,1,0,0,2,3,1,895,1162115.6,0,0,1849.2739 -10470,12883,23453,23452,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,7.8046422,8.0970335,6.0807772,1,0,1,36,-9,1,-137.5713,0,0,0,61,3,1,3,3,3,2019,2,2,13,1,37,37,15,1,0,3,0,9.5629673,9.5629673,0,0,0,0,0,0,0,0,1,1,0,4.3366761,6.4471574,0,0,48.919998,37.32,16.040001,23.99,4,1,1,0,0,2,3,1,895,1162115.6,0,0,1849.2739 -10471,12884,23454,-9,-9,-9,1,1,1,22,2,0,0,0,1,-9,2,1,0,0,4,8.2175837,8.4183331,0,3,0,0,0,-9,0,-1156.3672,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,38,0,15,1,0,-9,0,13.079553,13.079553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,-9,-9,6,4,2,0,0,2,4,0,89,92565.086,0,0,2404.9385 -10471,12885,23455,-9,-9,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,0,5,8.0808277,7.9025555,6.0651746,3,0,-9,0,-9,0,-1005.2419,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,38,0,15,1,0,-9,0,10.204142,10.204142,0,0,0,0,0,0,0,0,0,0,0,6.4266825,0,0,0,49.25,61.25,-9,-9,5,1,1,0,0,2,4,0,277,-253731.48,0,0,1918.8444 -10471,12886,23456,-9,-9,-9,4,1,1,22,2,0,0,0,1,-9,2,1,0,0,4,8.3723164,8.4100971,0,3,0,-9,0,-9,0,-1131.1938,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,0,15,1,0,-9,0,15.366091,15.366091,0,0,0,0,0,0,0,0,0,0,0,.34829864,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,2,4,0,291,-24887.064,0,0,186.73056 -10472,12887,23457,23458,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,0,3,9.398489,9.568573,0,1,0,-9,6,0,5,-54.793243,0,0,0,42,1,4,1,1,1,2019,1,2,12,0,43,43,15,1,0,1,0,33.907318,33.907318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.509998,59.43,32.669998,63.540001,4,1,1,0,0,12,5,1,785,1344335.3,0,0,7117.1279 -10472,12887,23458,23457,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,4,9.1008892,9.0300035,0,1,0,-9,6,0,-5,17.101274,0,0,1,47,1,3,1,-9,-9,2019,1,1,26,10,65,65,15,1,1,1,0,18.949928,18.949928,0,0,0,0,0,0,0,0,0,0,0,1.8169682,0,0,0,32.669998,63.540001,38.509998,59.43,3,1,1,0,0,12,5,1,785,1344335.3,0,0,7117.1279 -10473,12888,23459,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,0,3,9.150651,8.8081837,0,3,0,-9,0,1,0,-1018.8882,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,22,11,48,48,15,1,1,-9,0,17.762724,17.762724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.799999,60.419998,-9,-9,4,2,3,0,0,8,5,1,1225.3334,491638.94,0,0,2361.5938 -10473,12888,23460,-9,23459,-9,4,1,0,12,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1042.8058,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,1,1225.3334,491638.94,0,0,2361.5938 -10473,12888,23461,-9,23459,-9,3,1,1,13,2,0,0,1,3,-9,-9,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1145.6512,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,8,5,1,1225.3334,491638.94,0,0,2361.5938 -10473,12889,23462,-9,-9,-9,2,1,1,49,3,0,0,0,1,-9,2,1,0,0,5,9.6563892,9.6346474,0,3,0,-9,0,1,0,-920.50317,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,45,9,15,1,0,-9,0,36.089859,36.089859,0,0,0,0,0,0,0,0,0,0,0,5.7256813,0,0,0,39.23,60.490002,-9,-9,3,1,1,0,0,8,5,1,214,469719.56,0,0,10135.456 -10474,12890,23463,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,4,0,5.7065043,6.3904157,3,0,-9,0,1,0,-972.95947,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3560817,5.5889149,0,0,61.119999,51.57,-9,-9,6,1,1,0,0,13,2,1,237,130191.13,0,0,1130.8556 -10475,12891,23464,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,6,3,0,0,3,0,0,0,3,0,-9,0,1,0,-1003.8115,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,7,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0106273,0,0,0,43.779999,46.060001,-9,-9,4,1,1,0,0,6,1,1,741,0,0,0,-372.99048 -10476,12892,23465,23466,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,0,4,7.0169516,6.8151174,0,2,0,-9,10,0,-2,-167.59624,0,0,0,53,2,3,1,2,2,2019,1,2,6,0,17,17,15,1,0,1,0,6.8956585,6.8956585,0,0,0,0,0,0,0,0,1,1,0,3.7275388,0,0,0,61.110001,48.860001,49,50,7,1,1,0,0,4,4,1,1049.6666,241562.39,0,0,2467.4971 -10476,12892,23466,23465,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,3,8.4743824,8.2942848,0,2,0,-9,10,0,2,59.902866,0,0,0,51,2,4,1,-9,-9,2019,1,1,11,1,40,40,15,1,0,1,0,12.671961,12.671961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,61.110001,48.860001,5,1,1,0,0,4,4,1,1049.6666,241562.39,0,0,2467.4971 -10476,12892,23467,-9,23465,23466,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1145.8475,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3489113,0,0,0,49.060001,58.639999,-9,-9,6,1,1,0,0,4,4,1,1049.6666,241562.39,0,0,2467.4971 -10476,12893,23468,-9,23465,23466,3,1,1,26,2,0,1,0,2,-9,2,1,0,0,4,8.0536165,8.2716789,0,3,0,0,0,-9,0,-1090.9152,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,39,39,15,1,0,-9,1,11.821762,11.821762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,4,4,1,425,-100775.7,0,0,388.04694 -10477,12894,23469,23470,-9,-9,1,1,1,51,1,0,0,0,2,-9,3,3,0,0,5,5.4221206,5.7382321,0,1,0,-9,5,0,11,-81.757584,0,0,0,40,2,2,1,3,3,2019,3,2,8,0,0,39,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6706065,0,1.3275162,1,54.099998,59.110001,57.57,17.379999,4,1,1,1,0,2,2,1,1448,382666.88,0,0,289.64755 -10477,12894,23470,23469,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,1,2,7.5862217,7.5003839,0,1,0,-9,5,0,-11,1.398545,0,0,1,51,2,5,3,-9,-9,2019,2,1,7,0,15,15,15,1,0,3,0,12.003331,12.003331,0,0,0,0,0,0,0,7,1,1,0,.33101746,0,8.4195185,3,57.57,17.379999,54.099998,59.110001,6,1,1,0,0,2,2,1,1448,382666.88,0,0,289.64755 -10478,12895,23471,23473,-9,-9,2,1,0,53,1,0,1,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,25,0,-8,-100.91138,0,0,0,61,3,2,1,3,2,2019,3,1,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.139999,40.990002,43.09,42.490002,3,2,3,1,1,8,2,0,791,1596569.9,0,0,1739.2415 -10478,12895,23472,-9,23471,23473,5,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.861,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,2,3,0,0,8,2,0,791,1596569.9,0,0,1739.2415 -10478,12895,23473,23471,-9,-9,1,1,1,61,1,0,1,0,3,-9,1,1,0,0,2,7.5051241,7.4630914,0,2,0,-9,25,0,8,64.593903,0,0,0,53,2,2,3,2,2,2019,2,2,9,1,30,30,15,1,0,3,0,5.5010023,5.5010023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,42.490002,32.139999,40.990002,5,2,3,0,1,8,2,0,791,1596569.9,0,0,1739.2415 -10478,12896,23474,-9,23471,23473,3,1,1,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-884.42584,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.330002,-9,-9,6,2,3,0,0,8,1,0,119,0,0,0,95.205048 -10478,12897,23475,-9,23471,23473,4,1,0,19,2,0,1,0,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-879.70886,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,18,5,0,21,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.639999,54.860001,-9,-9,1,2,3,0,1,8,1,0,733,-34587.555,0,0,0 -10479,12898,23476,23477,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,2,0,7.8913321,7.939908,1,0,-9,34,0,-7,22.632225,0,0,0,67,2,3,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9296255,7.7624154,0,0,51.009998,41.689999,52,54.509998,6,1,1,0,0,7,4,1,1300.5,1447880.3,0,0,2984.8965 -10479,12898,23477,23476,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,3.5290363,8.0036688,8.2608509,1,0,-9,35,0,7,-19.936396,0,0,0,60,2,2,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4915915,7.8651233,0,0,52,54.509998,51.009998,41.689999,6,1,1,0,0,7,4,1,1300.5,1447880.3,0,0,2984.8965 -10480,12899,23478,23479,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,5,-11.483584,0,0,0,72,2,4,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.168448,0,0,0,52,46,45.849998,61.259998,6,1,1,0,0,9,3,1,742.5,1010703.8,0,0,2509.0095 -10480,12899,23479,23478,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.744813,8.1894073,1,0,-9,7,0,-5,37.370235,0,0,0,77,2,3,3,2,2,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.556046,7.5549221,0,1,45.849998,61.259998,52,46,5,1,1,0,0,9,3,1,742.5,1010703.8,0,0,2509.0095 -10481,12900,23480,23481,-9,-9,1,1,0,50,1,0,1,0,2,-9,1,1,0,0,3,6.4491739,6.2232962,0,2,0,-9,6,-9,17,147.48192,-9,0,0,33,2,3,1,3,2,2019,1,2,9,0,50,0,15,1,0,1,0,1.4663851,1.4663851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,58.009998,48.139999,53.419998,6,1,1,0,0,4,4,1,452.66666,239858.2,0,0,3338.1816 -10481,12900,23481,23480,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,0,3,8.8956442,8.5930986,0,2,0,-9,1,-9,-17,-35.479214,-9,0,0,50,2,3,1,-9,-9,2019,1,1,11,1,44,0,15,1,0,1,0,14.931318,14.931318,0,0,0,0,0,0,0,0,1,1,0,6.758986,0,0,0,48.139999,53.419998,44.189999,58.009998,5,1,1,0,0,4,4,1,452.66666,239858.2,0,0,3338.1816 -10481,12900,23482,-9,23480,23481,5,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-993.44159,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,452.66666,239858.2,0,0,3338.1816 -10481,12901,23483,-9,23480,23481,4,1,0,19,2,0,1,0,2,-9,2,1,0,0,5,8.232152,7.969418,0,4,0,-9,0,-9,0,-905.8443,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,0,15,1,0,-9,0,12.054044,12.054044,0,0,0,0,0,0,0,0,1,1,0,1.1930953,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,4,3,1,204,-58666.031,0,0,1253.0332 -10482,12902,23484,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,0,4,8.1407843,8.1560154,0,4,0,-9,0,0,0,-1099.7905,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,38,38,15,1,0,-9,0,9.6674013,9.6674013,0,0,0,0,0,0,0,7,1,1,0,0,0,2.8100891,3,33.16,61,-9,-9,6,1,1,0,0,1,3,1,1494,128844.32,0,0,1809.9561 -10483,12903,23485,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,1,1,0,0,5,6.3139162,6.6758833,0,4,0,0,0,-9,0,-890.3219,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,35,30,15,1,1,-9,0,2.2152619,2.2152619,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.16,55.32,-9,-9,4,1,1,0,1,5,2,0,115,-180504.83,0,0,106.36844 -10483,12904,23486,-9,23485,-9,2,1,0,25,2,0,1,0,2,-9,97,3,0,0,4,7.7592497,8.0411968,0,3,0,0,0,-9,0,-1141.6449,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,5,3,0,370,93175.961,0,0,916.74683 -10483,12905,23487,-9,23485,-9,5,1,0,24,2,0,1,0,1,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-965.98413,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,5,1,0,618,-81092.609,0,0,0 -10483,12906,23488,-9,23485,-9,3,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,7.512816,7.6610303,0,3,0,0,0,-9,0,-1093.7882,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,45,0,15,1,0,-9,1,5.2096052,5.2096052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.169998,44.549999,-9,-9,6,1,1,0,0,5,3,0,1109,2647.0542,0,0,207.01311 -10483,12907,23489,-9,23485,-9,4,1,0,18,2,0,1,0,2,-9,3,3,0,0,3,5.3735781,5.4441147,0,3,0,0,0,-9,0,-984.9989,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,-9,-9,4,1,1,1,0,5,3,0,3206,282724.59,0,0,1195.6721 -10484,12908,23490,23491,-9,-9,4,1,1,55,1,0,2,0,3,-9,2,1,0,0,5,8.1028261,8.7408714,5.8882837,2,0,-9,1,-9,9,-12.633681,-9,0,0,46,1,2,1,-9,-9,2019,1,1,15,2,45,0,15,1,0,1,0,8.7924824,8.7924824,0,0,0,0,0,0,0,0,1,1,0,0,6.2284856,0,0,51.650002,49.549999,51.970001,27.610001,6,1,1,0,0,4,4,1,833.66669,522934.78,0,0,4663.7358 -10484,12908,23491,23490,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,2,8.559536,8.463686,6.8072038,2,0,1,1,-9,0,161.75612,0,0,0,55,3,5,1,-9,-9,2019,1,4,12,0,37,37,15,1,0,1,0,17.227831,17.227831,0,0,0,0,0,0,0,0,1,1,0,0,7.0142398,0,0,51.970001,27.610001,51.650002,49.549999,6,1,1,0,0,4,4,1,833.66669,522934.78,0,0,4663.7358 -10484,12908,23492,-9,23491,23490,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-976.62878,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,4,4,1,833.66669,522934.78,0,0,4663.7358 -10485,12909,23493,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,6.1251645,5.8677535,3,0,0,0,-9,0,-1083.447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,6.4793262,0,2,1,1,0,2.8034177,6.0205379,2.0422571,3,41.360001,34.009998,-9,-9,5,1,1,0,0,10,2,0,2354,432740.22,0,0,562.81085 -10486,12910,23494,23495,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,0,3,7.3549652,7.9106369,6.8457265,1,0,-9,37,0,-2,-97.49324,0,0,0,71,2,4,3,-9,-9,2019,2,1,34,12,18,19,15,1,1,4,0,10.434582,10.434582,1,0,47.603302,0,0,0,0,0,1,1,0,1.6127006,6.78827,0,0,3.96,71.480003,44.02,60.700001,1,1,1,0,0,9,5,1,117.5,1114623.8,0,0,4843.8145 -10486,12910,23495,23494,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.535881,8.3361006,1,0,-9,38,0,2,104.76368,0,0,0,69,2,3,1,2,3,2019,3,2,12,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.6263914,8.7698345,22.886385,1,44.02,60.700001,3.96,71.480003,5,1,1,0,0,9,5,1,117.5,1114623.8,0,0,4843.8145 -10487,12911,23496,-9,-9,-9,1,1,1,27,2,0,1,0,2,0,7,2,0,0,3,5.7222147,5.9208589,0,3,0,0,0,-9,0,-849.73706,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,17,7,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.766129,3,40.639999,52.959999,-9,-9,5,2,3,0,0,6,2,1,1238,127107.45,0,0,-22.468273 -10488,12912,23497,-9,-9,-9,1,1,1,91,3,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1073.632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,.27575043,0,0,0,0,22.450645,0,1,1,0,1.2916775,0,0,0,64.540001,20.059999,-9,-9,5,1,1,0,0,7,1,0,1679,19752.807,0,0,1572.3801 -10489,12913,23498,-9,-9,-9,1,1,0,49,2,0,1,0,1,-9,2,1,0,0,3,9.1449394,9.1521053,0,4,0,0,0,-9,0,-966.59009,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,38,41,15,1,0,-9,0,26.241024,26.241024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,4,4,2,0,0,8,5,1,3146.5,350786.84,0,0,3731.9607 -10489,12913,23499,-9,23498,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1033.9624,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0184426,0,0,0,62.389999,56.709999,-9,-9,7,4,2,0,0,8,5,1,3146.5,350786.84,0,0,3731.9607 -10490,12914,23500,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-959.43347,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.240002,42.389999,-9,-9,6,1,1,0,1,1,1,0,456,12962.152,0,0,746.7583 -10491,12915,23501,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,4,8.512311,8.4533501,0,3,0,0,0,-9,0,-975.40668,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,30,30,15,1,0,-9,0,16.664068,16.664068,0,0,0,0,0,0,0,0,0,0,0,.4546262,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,4,4,1,928,64073.875,0,0,1784.151 -10492,12916,23502,-9,23503,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-913.71185,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,4,2,0,0,8,5,1,321.5,297925.84,0,0,9925.2119 -10492,12916,23503,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,1,1,0,0,5,9.4062099,9.738245,6.5103588,4,0,0,0,-9,0,-929.297,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,40,35,15,1,1,-9,0,31.056725,31.056725,0,0,0,0,0,0,0,0,0,0,0,9.7875214,0,0,0,25.1,68.279999,-9,-9,3,1,1,0,0,8,5,1,321.5,297925.84,0,0,9925.2119 -10493,12917,23504,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,4,3,0,1,2,0,6.6443462,6.5264349,3,0,-9,0,1,0,-1018.4072,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6853089,6.9334402,0,0,22.639999,61.549999,-9,-9,3,1,1,0,0,10,2,1,1013,181272.73,0,0,228.15253 -10494,12918,23505,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,2,0,6.1226983,6.3687158,3,0,0,0,-9,0,-1035.0112,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6993856,0,0,36.790001,45.740002,-9,-9,5,1,1,0,0,13,2,1,110,68952.688,0,0,1573.9928 -10495,12919,23506,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.9627757,7.8015952,3,0,0,0,-9,0,-915.00909,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9845505,0,0,46.73,52.75,-9,-9,6,1,1,0,0,12,4,0,531,415598.31,0,0,2938.7488 -10496,12920,23507,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,3,8.6321659,8.4365368,0,3,0,0,0,-9,0,-1055.3075,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,40,7,15,1,0,-9,1,15.322535,15.322535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,-9,-9,4,2,3,0,0,7,5,1,593,190136.47,0,0,1908.4736 -10497,12921,23508,-9,23509,23510,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-854.35797,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,0,1384.6666,316908.81,0,0,2322.9849 -10497,12921,23509,23510,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,0,3,7.9226475,7.9562373,0,2,0,-9,3,0,-7,-64.226196,0,1,1,32,2,3,1,-9,-9,2019,1,3,8,0,42,44,15,1,0,1,0,7.4309387,7.4309387,0,0,0,0,0,0,0,0,1,1,0,.66401857,0,0,0,42.040001,56.459999,52.400002,52.91,5,1,1,0,0,9,4,0,1384.6666,316908.81,0,0,2322.9849 -10497,12921,23510,23509,-9,-9,3,1,1,32,1,1,1,0,2,-9,2,1,0,0,3,8.0487347,7.9618125,0,2,0,-9,3,0,7,34.01907,0,0,0,25,2,3,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,7.3588357,7.3588357,0,0,0,0,0,0,0,0,1,1,0,.50272214,0,0,0,52.400002,52.91,42.040001,56.459999,4,1,1,0,0,9,4,0,1384.6666,316908.81,0,0,2322.9849 -10498,12922,23511,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,6.6009779,6.6595812,3,0,0,0,-9,0,-944.13776,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6346021,6.5056005,0,0,53,44,-9,-9,6,1,1,0,0,2,2,1,498,141537.3,0,0,1917.8212 -10499,12923,23512,-9,23513,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-937.7063,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,2,1,433,142184.67,0,0,1925.9185 -10499,12923,23513,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,1,1,0,0,2,6.2033095,7.3770142,7.3382831,4,0,0,0,-9,0,-1024.0283,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,29,11,20,15,15,1,1,-9,0,3.4309595,3.4309595,0,0,0,0,0,0,0,0,1,1,0,7.2386637,0,0,0,17.790001,63.700001,-9,-9,3,1,1,0,0,4,2,1,433,142184.67,0,0,1925.9185 -10499,12923,23514,-9,23513,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-891.80011,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,2,1,433,142184.67,0,0,1925.9185 -10500,12924,23515,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,4,0,7.3453283,7.9359765,3,0,0,0,-9,0,-932.78833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2203491,7.658381,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,4,3,1,526,682121.44,0,0,2568.8809 -10501,12925,23516,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,0,4,7.8273516,7.9455938,0,4,0,0,0,-9,0,-1030.6541,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,38,15,1,0,-9,0,6.899991,6.899991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,5,3,0,1726,376468.69,0,0,1831.6835 -10502,12926,23517,-9,23518,23520,3,1,0,17,2,0,3,1,2,0,7,2,0,0,3,5.9477634,5.8404431,0,2,0,0,0,-9,0,-1026.6288,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.98,63,-9,-9,5,1,1,0,0,11,4,1,1687.2,494878.41,0,0,3837.6382 -10502,12926,23518,23520,-9,-9,1,1,0,46,1,0,3,0,2,-9,2,1,0,0,4,8.1552677,7.8935208,0,2,0,-9,9,0,0,-86.96357,0,0,0,46,1,4,1,2,2,2019,1,2,6,0,30,30,15,1,0,1,0,11.566119,11.566119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,54.790001,55.860001,6,1,1,0,0,11,4,1,1687.2,494878.41,0,0,3837.6382 -10502,12926,23519,-9,23518,23520,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1101.9175,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,11,4,1,1687.2,494878.41,0,0,3837.6382 -10502,12926,23520,23518,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,8.6179256,8.6359329,0,2,0,-9,9,0,0,-113.74146,0,0,0,46,2,4,1,2,3,2019,1,1,6,0,37,37,15,1,0,1,0,18.549892,18.549892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,62.490002,55.09,6,1,1,0,0,11,4,1,1687.2,494878.41,0,0,3837.6382 -10502,12926,23521,-9,23518,23520,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1037.0046,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,11,4,1,1687.2,494878.41,0,0,3837.6382 -10503,12927,23522,-9,23523,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-982.78558,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,1105.5,25968.217,0,0,2011.667 -10503,12927,23523,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,2,1,0,0,3,7.3742743,7.6503129,0,4,0,0,0,-9,0,-1123.129,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,20,23,15,1,0,-9,0,11.41912,11.41912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.09,47.299999,-9,-9,4,1,1,0,0,4,3,0,1105.5,25968.217,0,0,2011.667 -10504,12928,23524,23525,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,3,8.1781101,8.5260763,0,2,0,-9,6,0,-2,-115.49978,0,0,0,38,2,4,2,3,3,2019,2,2,9,0,35,38,15,1,0,2,0,15.85471,15.85471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.939999,50.330002,6,1,1,0,0,4,4,0,646.33331,104864.3,0,0,2283.9338 -10504,12928,23525,23524,23527,-9,2,1,0,38,1,0,1,0,2,-9,7,2,0,0,4,4.669528,5.0623407,0,2,0,-9,6,0,2,-47.758614,1,0,1,36,2,3,1,3,3,2019,3,1,5,0,0,44,15,2,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.939999,50.330002,57.330002,53.459999,5,1,1,0,0,4,4,0,646.33331,104864.3,0,0,2283.9338 -10504,12928,23526,-9,23525,23524,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1141.2777,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,0,646.33331,104864.3,0,0,2283.9338 -10504,12929,23527,-9,-9,-9,4,1,0,67,3,0,1,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-964.91132,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.389999,37.779999,-9,-9,6,1,1,0,0,4,1,0,4997,-105924.45,0,0,1116.1517 -10505,12930,23528,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-975.50421,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.080002,59.330002,-9,-9,6,1,1,0,0,5,1,1,2766,1806.9187,0,0,0 -10506,12931,23529,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-950.47375,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,23,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.32,50,-9,-9,4,1,1,0,0,11,1,1,3922,146520.14,0,0,718.90381 -10506,12932,23530,-9,-9,-9,2,1,0,45,2,0,1,0,1,-9,2,1,0,0,2,8.4316959,8.3912954,0,4,0,0,0,-9,0,-1082.1222,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,38,30,15,1,0,-9,0,11.435216,11.435216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.57,37.16,-9,-9,6,1,1,0,0,11,4,1,1237,28491.338,0,0,1451.045 -10506,12932,23531,-9,23530,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1111.4017,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,11,4,1,1237,28491.338,0,0,1451.045 -10507,12933,23532,-9,-9,-9,1,1,1,21,2,0,0,0,2,1,2,1,0,0,5,8.1296148,7.9992466,0,3,0,0,0,-9,0,-992.00385,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,0,15,1,0,-9,0,11.095945,11.095945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.889999,55.560001,-9,-9,1,2,3,0,0,7,4,0,1656,25222.178,0,0,2372.4033 -10508,12934,23533,23534,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,0,2,8.8987923,8.5384703,0,1,0,-9,5,0,3,53.750114,0,0,1,34,2,5,1,2,2,2019,1,2,11,0,30,40,15,1,0,1,0,19.974007,19.974007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.889999,54.509998,57.060001,57.759998,5,4,2,0,0,9,5,0,1116.5,77555.711,0,0,3644.5742 -10508,12934,23534,23533,-9,-9,2,1,1,34,1,0,0,0,2,-9,1,1,0,0,5,8.3851299,8.4090214,0,1,0,-9,5,0,-3,-82.124245,0,0,0,37,2,2,1,-9,-9,2019,1,1,7,0,35,35,15,1,0,1,0,11.751175,11.751175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,43.889999,54.509998,6,1,1,0,0,9,5,0,1116.5,77555.711,0,0,3644.5742 -10509,12935,23535,23537,-9,-9,1,1,1,76,1,0,1,0,2,-9,2,1,0,0,3,6.7964582,7.7233963,6.8218136,2,0,-9,33,0,24,134.54272,0,0,0,52,3,3,1,-9,-9,2019,1,2,10,1,8,8,15,1,0,1,0,14.421343,14.421343,0,0,0,0,0,0,0,0,1,1,0,0,6.8393874,0,0,53,47,47,49,5,1,1,0,0,6,3,0,886.33331,736283.94,0,0,2727.4023 -10509,12935,23536,-9,23537,23535,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-994.35431,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,6,3,0,886.33331,736283.94,0,0,2727.4023 -10509,12935,23537,23535,-9,-9,2,1,0,52,1,0,1,0,3,-9,1,1,0,0,3,6.8314548,6.922061,0,2,0,-9,33,0,-24,-97.918945,0,0,0,76,2,3,1,-9,-9,2019,1,1,12,2,16,16,15,1,0,1,0,5.4122477,5.4122477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,53,47,5,4,2,0,0,6,3,0,886.33331,736283.94,0,0,2727.4023 -10509,12936,23538,-9,-9,-9,4,1,0,19,2,0,1,1,2,0,7,2,0,0,3,6.8441224,6.5530639,4.6858397,4,0,0,0,-9,0,-1048.8309,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.501636,0,0,0,46.669998,55.57,-9,-9,6,4,2,0,0,6,2,0,919,134616.61,0,0,2998.9075 -10510,12937,23539,23540,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,8.5293522,8.7710772,0,1,0,-9,43,0,0,-20.281645,0,0,0,62,3,2,3,3,2,2019,2,2,4,0,37,0,15,1,0,3,0,17.029146,17.029146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.080002,30.639999,36.66,22.6,6,2,3,0,0,6,4,1,753.5,417473.5,0,0,2619.9399 -10510,12937,23540,23539,-9,-9,2,1,0,62,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,43,0,0,-19.311054,0,0,0,62,2,4,1,3,3,2019,3,1,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,22.6,68.080002,30.639999,6,2,3,1,0,6,4,1,753.5,417473.5,0,0,2619.9399 -10511,12938,23541,23542,-9,-9,2,1,1,75,1,0,0,0,2,-9,2,1,0,0,2,9.070219,9.0253963,6.0484772,1,0,-9,10,0,0,113.09744,-9,0,0,75,3,3,3,-9,-9,2019,2,1,12,1,15,0,15,1,0,3,0,89.398933,89.398933,0,0,0,0,0,0,0,0,1,1,0,0,6.1462126,0,0,58.740002,35.369999,48.450001,57.490002,5,1,1,0,0,13,5,1,513.5,3153840.3,0,0,5535.6299 -10511,12938,23542,23541,-9,-9,1,1,0,75,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,53,0,0,22.755644,0,0,0,75,2,2,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,58.740002,35.369999,6,1,1,0,0,13,5,1,513.5,3153840.3,0,0,5535.6299 -10512,12939,23543,23544,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,25,0,12,-17.70048,0,0,0,56,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,60.709999,44.82,7,1,1,0,0,4,4,1,171.5,568742.38,0,0,3312.501 -10512,12939,23544,23543,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,0,4,0,8.7104559,8.3704329,1,0,-9,25,0,-12,-30.964317,0,0,0,68,2,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.9145994,0,0,60.709999,44.82,60.02,56.419998,6,1,1,0,1,4,4,1,171.5,568742.38,0,0,3312.501 -10513,12940,23545,23546,-9,-9,1,1,1,37,1,1,3,0,2,-9,2,1,0,0,4,8.3498363,8.0894699,0,2,0,-9,7,0,7,23.127575,0,0,0,30,3,2,3,-9,-9,2019,2,2,8,0,40,35,15,1,0,3,0,10.635203,10.635203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,54.470001,32.27,5,1,1,0,0,1,3,0,1337.4,116602.78,0,0,3247.9038 -10513,12940,23546,23545,-9,-9,2,1,0,30,1,1,3,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,7,0,-7,-115.46147,0,0,1,37,2,4,1,-9,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.470001,32.27,48.869999,58.549999,6,1,1,0,0,1,3,0,1337.4,116602.78,0,0,3247.9038 -10513,12940,23547,-9,23546,23545,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.9542,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,3,0,1337.4,116602.78,0,0,3247.9038 -10513,12940,23548,-9,23546,23545,4,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-801.93616,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,1337.4,116602.78,0,0,3247.9038 -10513,12940,23549,-9,23546,23545,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.46814,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,1337.4,116602.78,0,0,3247.9038 -10514,12941,23550,-9,23552,-9,4,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-986.24634,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,1,0,822.20001,21939.908,0,0,1891.9606 -10514,12941,23551,-9,23552,-9,3,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-980.91431,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,1,0,822.20001,21939.908,0,0,1891.9606 -10514,12941,23552,-9,-9,-9,1,1,0,30,2,1,4,0,3,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-1100.9327,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,18,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.68,63.48,-9,-9,6,1,1,1,1,6,1,0,822.20001,21939.908,0,0,1891.9606 -10514,12941,23553,-9,23552,-9,5,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1060.1776,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,1,0,822.20001,21939.908,0,0,1891.9606 -10514,12941,23554,-9,23552,-9,2,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-913.67358,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,1,0,822.20001,21939.908,0,0,1891.9606 -10515,12942,23555,23556,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,0,4,8.421998,8.7401953,0,1,0,-9,2,0,3,27.090235,0,1,1,26,1,4,1,2,2,2019,1,2,11,0,45,45,15,1,0,1,0,14.992796,14.992796,0,0,0,0,0,0,0,7,0,0,0,0,0,12.585999,3,48.869999,58.549999,49,58,6,1,1,0,0,8,5,1,2204.5,-24201.109,0,0,5047.7148 -10515,12942,23556,23555,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,8.8084793,8.5828571,0,1,0,-9,2,0,-3,11.471066,0,1,0,29,2,4,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,17.858906,17.858906,0,0,0,0,0,0,0,0,0,0,0,1.5774772,0,0,0,49,58,48.869999,58.549999,5,4,1,0,0,8,5,1,2204.5,-24201.109,0,0,5047.7148 -10516,12943,23557,-9,23559,23558,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-831.52869,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,5,1,964.66669,452728.69,0,0,4345.7729 -10516,12943,23558,23559,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,0,3,9.3584671,9.1898861,0,2,0,-9,4,0,8,-9.1229744,0,0,0,29,1,4,1,-9,-9,2019,1,1,14,3,48,45,15,1,0,1,0,24.252182,24.252182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.459999,54.849998,45.91,59.889999,6,1,1,0,0,5,5,1,964.66669,452728.69,0,0,4345.7729 -10516,12943,23559,23558,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,0,4,8.2592239,8.3128338,0,2,0,-9,4,0,-8,26.674854,0,1,1,37,1,3,1,2,2,2019,1,2,10,0,42,60,15,1,0,1,0,14.851025,14.851025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,42.459999,54.849998,5,1,1,0,1,5,5,1,964.66669,452728.69,0,0,4345.7729 -10517,12944,23560,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,9.3345413,9.0313969,0,3,0,0,0,-9,0,-1103.767,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,29.55464,29.55464,0,0,0,0,0,0,0,0,0,0,0,2.7849674,0,0,0,46.439999,59.619999,-9,-9,6,1,1,0,0,7,5,1,1305,223339.08,0,0,3682.5415 -10518,12945,23561,-9,23562,-9,2,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.5525,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,1,0,329,-24453.078,0,0,582.96106 -10518,12945,23562,-9,-9,-9,1,1,0,24,2,1,2,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1017.9208,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.580002,41.299999,-9,-9,6,1,1,0,0,6,1,0,329,-24453.078,0,0,582.96106 -10518,12945,23563,-9,23562,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.9071,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,1,0,329,-24453.078,0,0,582.96106 -10519,12946,23564,-9,23565,23566,4,1,1,7,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-867.7525,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,6,0,0,11,3,0,1314.6666,731.20703,0,0,1774.5262 -10519,12946,23565,23566,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,1,4,7.5861502,7.2909727,0,1,0,-9,40,0,-2,80.851067,0,0,0,58,2,3,3,3,-9,2019,2,2,7,0,44,43,15,1,0,3,0,5.6534095,5.6534095,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.987272,3,60.130001,49.27,59.759998,31.719999,5,1,1,0,0,11,3,0,1314.6666,731.20703,0,0,1774.5262 -10519,12946,23566,23565,-9,-9,2,1,1,58,1,0,0,0,2,-9,6,3,0,0,3,0,6.9925346,6.9843054,1,0,-9,40,0,2,22.718029,0,0,0,56,2,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4196477,6.8936534,18.179729,3,59.759998,31.719999,60.130001,49.27,2,1,1,0,1,11,3,0,1314.6666,731.20703,0,0,1774.5262 -10520,12947,23567,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,2,0,5.0648375,5.5176649,3,0,0,0,-9,0,-955.95447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.4863186,3.8383076,3,56.330002,24.379999,-9,-9,5,1,1,0,0,10,2,0,267,297582.81,0,0,1006.5269 -10521,12948,23568,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,0,4,5.4572029,7.1116343,6.4074864,3,0,0,0,-9,0,-1043.9412,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6400795,0,0,0,45.23,56.209999,-9,-9,6,1,1,0,0,12,2,0,494,-2681.9873,0,0,2168.135 -10522,12949,23569,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,5,9.6256208,9.7435036,0,1,0,-9,3,0,0,-40.7855,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,8,0,60,52,15,1,0,-9,0,28.436768,28.436768,0,0,0,0,0,0,0,0,0,0,0,8.2935762,0,0,0,57.060001,57.759998,50,57,5,1,1,0,0,8,5,0,825,1462190.4,0,0,7520.4233 -10522,12950,23570,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.5822163,8.0511503,0,1,0,-9,3,0,0,-30.708899,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,1,50,0,15,1,0,-9,0,8.7840862,8.7840862,0,0,0,0,0,0,0,0,0,0,0,3.4562714,0,0,0,50,57,57.060001,57.759998,5,1,1,0,0,8,5,0,833,-78424.633,0,0,1541.6906 -10523,12951,23571,23572,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,7.7331877,8.2810516,0,1,0,-9,5,0,-3,-56.806499,0,0,0,51,1,3,1,1,1,2019,1,1,11,0,38,38,15,1,0,1,0,9.2222261,9.2222261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.630001,59.720001,57.330002,53.459999,6,1,1,0,0,11,5,1,540,1304431.4,0,0,4025.167 -10523,12951,23572,23571,-9,-9,1,1,1,51,1,0,0,0,1,-9,1,1,0,0,3,8.8539753,8.7085581,0,1,0,-9,5,0,3,-.48627087,0,0,0,48,1,4,1,2,2,2019,1,2,8,0,50,70,15,1,0,1,0,17.536568,17.536568,0,0,0,0,0,0,0,0,0,0,0,.0227024,0,0,0,57.330002,53.459999,46.630001,59.720001,6,1,1,0,0,11,5,1,540,1304431.4,0,0,4025.167 -10523,12952,23573,-9,23571,23572,3,1,1,22,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1043.6908,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,11,1,1,466,0,0,0,0 -10524,12953,23574,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,4.7624359,4.3791757,3,0,0,0,-9,0,-952.09723,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0067453,0,0,64.239998,44.830002,-9,-9,6,1,1,0,0,6,2,1,87,139526.36,0,0,1715.5728 -10525,12954,23575,23576,-9,-9,2,1,0,31,1,0,0,0,2,0,7,2,0,0,3,7.6660433,7.3557577,0,1,0,-9,4,0,-13,-184.36217,-9,0,1,44,3,2,1,-9,-9,2019,3,1,21,8,20,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.880001,53.93,56.279999,43.330002,3,1,1,0,0,2,4,0,467,453158.75,0,0,1879.0547 -10525,12954,23576,23575,-9,-9,1,1,1,44,1,0,0,0,3,-9,2,1,0,0,2,7.6121354,8.086009,0,1,0,-9,4,0,13,-36.881737,0,0,0,31,2,3,2,-9,-9,2019,2,2,9,0,30,0,15,1,0,2,0,11.451234,11.451234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.279999,43.330002,37.880001,53.93,6,1,1,0,0,2,4,0,467,453158.75,0,0,1879.0547 -10526,12955,23577,23578,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,7.1303716,6.7624388,1,0,-9,41,0,-2,46.572449,0,0,0,69,1,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5107522,7.1518741,0,0,61.279999,48.880001,55.349998,43.869999,7,1,1,0,0,6,3,1,996,283539.72,0,0,2999.0493 -10526,12955,23578,23577,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.3678122,7.3554392,1,0,-9,41,0,2,-61.125954,0,0,0,67,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3178492,7.2084694,0,0,55.349998,43.869999,61.279999,48.880001,5,1,1,0,0,6,3,1,996,283539.72,0,0,2999.0493 -10526,12956,23579,-9,23577,23578,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.4027233,8.3771,0,3,0,0,0,-9,0,-968.34973,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,40,0,15,1,0,-9,1,11.733026,11.733026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,1,1,0,0,6,4,1,328,-156202.06,0,0,3010.0342 -10527,12957,23580,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,0,4,8.6308489,9.0056448,0,3,0,0,0,-9,0,-994.81506,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,40,49,15,1,0,-9,0,17.025599,17.025599,0,0,0,0,0,0,0,2,1,1,0,7.6478243,0,0,3,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,404,103316.89,0,0,2716.321 -10528,12958,23581,-9,23585,23584,4,1,1,17,2,0,3,1,2,0,7,2,0,0,5,0,4.5990496,4.2250867,2,0,0,0,-9,0,-1045.9218,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0696788,0,6.2185788,3,57.060001,57.759998,-9,-9,5,2,3,0,0,4,2,1,820,170883.33,0,0,2337.3875 -10528,12958,23582,-9,23585,23584,5,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.15393,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,820,170883.33,0,0,2337.3875 -10528,12958,23583,-9,23585,23584,3,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-826.78094,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.672777,3,57.16,56.150002,-9,-9,6,2,3,0,0,4,2,1,820,170883.33,0,0,2337.3875 -10528,12958,23584,23585,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,1,2,0,0,0,2,0,-9,20,0,9,-42.775997,0,0,0,38,2,2,1,3,3,2019,1,1,24,12,0,35,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.18,50.810001,48.689999,45.700001,3,2,3,0,1,4,2,1,820,170883.33,0,0,2337.3875 -10528,12958,23585,23584,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,1,2,7.0362253,6.8862796,0,2,0,-9,20,0,0,-5.5364432,0,0,1,47,1,2,1,3,2,2019,1,2,12,0,16,18,15,1,0,1,0,5.9955134,5.9955134,0,0,0,0,0,0,0,42,1,1,0,0,0,42.897114,1,48.689999,45.700001,29.18,50.810001,5,2,3,0,1,4,2,1,820,170883.33,0,0,2337.3875 -10529,12959,23586,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,2,8.413887,9.0237112,8.0509195,3,0,0,0,-9,0,-1121.8365,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,42,45,15,1,0,-9,0,11.431974,11.431974,0,0,0,0,0,0,0,0,0,0,0,8.462698,0,0,0,63.849998,24.84,-9,-9,5,1,1,0,0,12,5,1,200,149738.81,0,0,3402.5432 -10529,12960,23587,-9,23586,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,8.1136751,8.0176287,0,3,0,0,0,-9,0,-991.47565,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,45,40,15,1,0,-9,1,6.5817676,6.5817676,0,0,0,0,0,0,0,0,0,0,0,.31006432,0,0,0,40.650002,57.360001,-9,-9,5,1,1,0,0,12,3,1,705,-64937.676,0,0,1331.5487 -10530,12961,23588,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,4,0,6.1216626,6.1351967,3,0,0,0,-9,0,-1021.1553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0877194,6.224926,0,0,60.240002,50.619999,-9,-9,6,1,1,0,0,12,2,1,565,147759.05,0,0,381.21921 -10531,12962,23589,23590,-9,-9,1,1,1,30,1,0,0,0,3,-9,2,1,0,0,5,8.0226564,8.3534985,0,1,0,-9,5,0,1,24.432156,0,0,0,29,1,4,1,2,2,2019,1,2,2,0,40,44,15,1,0,1,0,9.6481075,9.6481075,0,0,0,0,0,0,0,0,0,0,0,7.0682225,0,0,0,57.060001,57.759998,38.34,62.119999,7,1,1,0,0,4,5,1,394,124614.02,0,0,3548.8721 -10531,12962,23590,23589,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.4821129,8.6685677,0,1,0,-9,5,0,-1,-16.119841,0,1,1,30,3,5,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,14.852583,14.852583,0,0,0,0,0,0,0,0,0,0,0,7.0266986,0,0,0,38.34,62.119999,57.060001,57.759998,5,1,1,0,0,4,5,1,394,124614.02,0,0,3548.8721 -10532,12963,23591,23592,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,2,0,6.8460727,6.7434492,1,0,-9,44,0,0,37.029625,0,0,0,66,3,4,3,-9,-9,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.944582,6.9274869,0,0,35.009998,36.82,33.98,56,5,1,1,0,0,2,2,1,895.5,291699.59,0,0,1692.3159 -10532,12963,23592,23591,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,5.5560932,5.5146847,1,0,-9,44,0,0,-92.181519,0,0,0,66,3,2,3,2,-9,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,1,0,3.7608047,0,0,0,0,0,1,1,0,5.0117936,6.0950198,0,0,33.98,56,35.009998,36.82,6,1,1,0,0,2,2,1,895.5,291699.59,0,0,1692.3159 -10533,12964,23593,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,2,0,6.7909231,6.6494889,3,0,0,0,-9,0,-972.88922,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.5025282,6.9645452,0,0,55.549999,18.879999,-9,-9,7,1,1,0,0,4,2,0,979,386686.34,0,0,2502.8569 -10534,12965,23594,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.5021496,7.4231076,0,3,0,0,0,-9,0,-967.50598,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,20,45,15,1,0,-9,0,11.116355,11.116355,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,43.200001,59.970001,-9,-9,6,1,1,0,0,13,3,0,461,134802.25,0,0,1474.2109 -10535,12966,23595,23596,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,33,0,1,4.54842,0,0,0,57,1,4,1,2,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.0848198,3,71.099998,28.41,57.16,56.150002,6,1,1,0,0,9,5,1,2268.5,1140068.1,0,0,2784.6619 -10535,12966,23596,23595,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,9.021697,9.0927687,0,1,0,-9,9,0,-1,120.88062,0,0,0,58,2,2,3,2,1,2019,2,2,7,0,50,60,15,1,0,3,0,16.962357,16.962357,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.150002,71.099998,28.41,6,1,1,0,0,9,5,1,2268.5,1140068.1,0,0,2784.6619 -10535,12967,23597,-9,23595,23596,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,7.7132645,7.6124063,0,3,0,0,0,-9,0,-1067.6307,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,0,15,1,0,-9,1,6.1831408,6.1831408,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,9,3,1,1375,-25881.91,0,0,-315.92883 -10535,12968,23598,-9,23595,23596,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,6.1389337,6.4893479,0,3,0,0,0,-9,0,-977.10028,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,60,40,15,1,0,-9,1,1.1993515,1.1993515,0,0,0,0,0,0,0,0,1,1,0,3.2348485,0,0,0,46,58,-9,-9,5,1,1,0,0,9,2,1,677,-29128.986,0,0,977.09418 -10535,12969,23599,-9,23595,23596,5,1,0,21,2,0,0,1,2,0,7,2,0,1,3,4.9802413,5.5420451,0,3,0,0,0,-9,0,-1111.2457,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,2,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.024066,0,0,0,53.349998,26.74,-9,-9,5,1,1,0,0,9,2,1,352,104655.6,0,0,781.2597 -10535,12970,23600,-9,23595,23596,6,1,1,18,2,0,0,0,2,1,2,1,0,0,5,7.7007327,7.7224646,0,3,0,0,0,-9,0,-962.63495,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,55,0,15,1,0,-9,1,4.9654222,4.9654222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.34,58.540001,-9,-9,5,1,1,0,0,9,3,1,268,7649.895,0,0,1228.5708 -10536,12971,23601,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-922.56244,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.380001,25.870001,-9,-9,6,1,1,0,1,11,1,0,552,-36270.539,0,0,1755.1631 -10537,12972,23602,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,3,0,6.5973401,7.0271616,3,0,0,0,-9,0,-983.08765,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7843919,0,0,56,44,-9,-9,6,3,4,0,0,8,2,0,296,352889.44,0,0,934.53052 -10538,12973,23603,23606,-9,-9,1,1,1,48,1,0,3,0,1,0,7,2,0,0,3,6.68502,6.6658864,0,2,0,-9,15,0,11,-45.097191,-9,0,0,37,2,4,2,3,3,2019,4,2,10,0,1,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.8496475,3,57.330002,53.459999,47.490002,55.02,5,3,4,0,0,8,2,0,1041.6,196857.88,0,0,963.74835 -10538,12973,23604,-9,23606,23603,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.1478,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,0,1041.6,196857.88,0,0,963.74835 -10538,12973,23605,-9,23606,23603,4,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.9946,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,2,0,1041.6,196857.88,0,0,963.74835 -10538,12973,23606,23603,-9,-9,2,1,0,37,1,0,3,0,2,0,7,2,0,0,4,0,0,0,2,0,-9,15,0,-11,131.1002,-9,0,1,48,1,3,2,3,1,2019,4,1,9,0,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.490002,55.02,57.330002,53.459999,5,3,4,0,0,8,2,0,1041.6,196857.88,0,0,963.74835 -10538,12973,23607,-9,23606,23603,5,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-957.82776,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,3,4,0,0,8,2,0,1041.6,196857.88,0,0,963.74835 -10539,12974,23608,-9,23610,23609,4,1,1,17,2,0,0,0,2,1,2,3,0,0,5,6.2148657,6.0835304,0,1,0,0,0,-9,0,-970.92383,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,8,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2442572,0,0,0,49.25,61.25,-9,-9,7,1,1,0,0,7,5,1,1339,3185429.3,0,0,3374.5315 -10539,12974,23609,23610,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,5,8.81106,8.9895668,0,1,0,-9,20,0,0,-83.606033,-9,0,0,51,1,4,1,2,2,2019,1,2,2,0,50,0,15,1,0,1,0,18.453854,18.453854,0,0,0,0,0,0,0,0,1,1,0,6.9062448,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,7,5,1,1339,3185429.3,0,0,3374.5315 -10539,12974,23610,23609,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,6.8791876,7.0602264,0,1,0,-9,20,0,0,5.1821413,0,0,0,51,1,5,1,2,2,2019,1,1,9,0,17,17,15,1,0,1,0,6.5539703,6.5539703,0,0,0,0,0,0,0,0,1,1,0,2.9414706,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,7,5,1,1339,3185429.3,0,0,3374.5315 -10539,12975,23611,-9,23610,23609,3,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1110.7574,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.240002,58.900002,-9,-9,6,1,1,0,0,7,1,1,1494,55537.918,0,0,0 -10540,12976,23612,23613,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,8.1827421,8.3197174,1,0,-9,29,0,12,-33.200653,0,0,0,58,2,2,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.2696624,8.3030052,2.9962151,3,58.27,30.32,34.66,25.02,7,1,1,0,0,2,4,1,654,915236.5,0,0,4001.6423 -10540,12976,23613,23612,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,1,2,0,7.4328761,7.6989789,1,0,-9,29,0,-12,83.468628,0,0,0,70,3,2,3,2,2,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.4347014,7.3447866,52.475731,2,34.66,25.02,58.27,30.32,3,1,1,0,0,2,4,1,654,915236.5,0,0,4001.6423 -10541,12977,23614,23615,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.1782532,7.9800577,0,1,0,-9,6,0,-1,114.86027,0,0,0,60,2,2,3,2,2,2019,2,2,11,0,37,37,15,1,0,4,0,11.740211,11.740211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,53.630001,40.709999,2,1,1,0,0,11,4,1,1649,858508.63,0,0,3704.0469 -10541,12977,23615,23614,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,2,0,5.9470663,5.9024811,1,0,-9,6,0,1,8.2878885,0,0,0,59,2,4,1,-9,-9,2019,3,1,11,0,0,30,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.1494503,5.8105636,8.5075207,3,53.630001,40.709999,55.790001,52.619999,5,1,1,0,0,11,4,1,1649,858508.63,0,0,3704.0469 -10542,12978,23616,23617,-9,-9,1,1,1,74,1,0,0,0,2,-9,2,1,0,0,4,5.143187,7.1224627,7.2868104,1,0,-9,42,0,5,3.7038121,0,0,0,69,1,4,3,-9,-9,2019,2,2,6,0,4,8,15,1,0,4,0,5.0736079,5.0736079,0,0,0,0,0,0,0,0,1,1,0,5.1492896,7.1698489,0,0,62.400002,48.330002,57.16,56.150002,7,1,1,0,0,6,3,1,232,633075.5,0,0,2498.3982 -10542,12978,23617,23616,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,6.7350159,6.8919835,1,0,-9,42,0,-5,138.78778,0,0,0,74,2,4,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4011886,6.7690101,0,0,57.16,56.150002,62.400002,48.330002,6,1,1,0,0,6,3,1,232,633075.5,0,0,2498.3982 -10543,12979,23618,23619,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,5.8437638,5.9887109,1,0,-9,49,0,6,65.741753,0,0,0,66,3,1,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.670135,0,0,38.549999,27.33,35.049999,18.110001,7,1,1,0,0,2,2,1,1153,316930.22,0,0,1737.0026 -10543,12979,23619,23618,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,1,0,6.1955867,6.2410679,1,0,-9,49,0,-6,-35.810188,0,0,0,72,3,2,3,3,3,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.7667484,5.6774173,17.525871,1,35.049999,18.110001,38.549999,27.33,7,1,1,0,0,2,2,1,1153,316930.22,0,0,1737.0026 -10543,12980,23620,23621,-9,-9,5,1,0,18,1,0,0,0,2,-9,2,1,0,0,4,7.2282262,7.3759518,0,1,0,-9,2,0,-1,-8.7253389,0,1,1,19,2,3,3,-9,-9,2019,2,3,8,0,33,0,15,1,0,3,0,4.4061394,4.4061394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.150002,49.560001,41.23,59.349998,7,1,1,0,0,2,2,1,951,99487.328,0,0,1068.7614 -10543,12980,23621,23620,-9,-9,3,1,1,19,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,1,-89.628464,0,1,0,18,2,4,1,-9,-9,2019,3,5,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.349998,45.150002,49.560001,6,1,1,1,0,2,2,1,951,99487.328,0,0,1068.7614 -10544,12981,23622,23623,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,0,4,8.8495188,8.7963438,0,2,0,-9,2,0,-4,-1.1277781,0,0,1,34,2,4,1,-9,-9,2019,1,1,8,0,23,33,15,1,0,1,0,29.568079,29.568079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.220001,52.700001,54.200001,57.490002,6,1,1,0,0,10,5,1,783.66669,68743.031,0,0,4376.5483 -10544,12981,23623,23622,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.3341331,7.9999332,0,2,0,-9,2,0,4,149.22885,0,0,0,30,2,4,1,2,1,2019,1,2,9,0,50,50,15,1,0,1,0,7.5062542,7.5062542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,53.220001,52.700001,6,1,1,0,0,10,5,1,783.66669,68743.031,0,0,4376.5483 -10544,12981,23624,-9,23622,23623,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1024.6035,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,783.66669,68743.031,0,0,4376.5483 -10545,12982,23625,23627,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,0,5,6.6582513,6.4882498,0,2,0,-9,6,0,0,20.807901,0,0,0,50,1,4,1,3,3,2019,1,1,13,2,12,20,15,1,0,1,0,5.8211279,5.8211279,0,0,0,0,0,0,0,0,0,0,0,7.0374889,0,0,0,48.419998,60.529999,53,54,5,1,1,0,0,9,5,1,1312.6666,735690.56,0,0,8446.6729 -10545,12982,23626,-9,23625,23627,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-917.03351,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1839294,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,9,5,1,1312.6666,735690.56,0,0,8446.6729 -10545,12982,23627,23625,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,9.7892981,9.5299673,0,2,0,-9,6,0,0,110.8953,0,0,0,50,2,5,1,2,2,2019,1,2,9,1,50,0,15,1,0,1,0,40.573627,40.573627,0,0,0,0,0,0,0,0,0,0,0,1.8926138,0,0,0,53,54,48.419998,60.529999,6,1,1,0,0,9,5,1,1312.6666,735690.56,0,0,8446.6729 -10545,12983,23628,-9,23625,23627,4,1,0,20,2,0,1,1,1,0,7,2,0,0,5,7.6470327,7.5569458,0,3,0,0,0,-9,0,-985.02191,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,29,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.759998,58.080002,-9,-9,2,1,1,0,0,9,3,1,554,0,0,0,1638.1521 -10546,12984,23629,-9,23630,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,-9,0,-9,0,-1095.6331,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,12,1,0,823,-6786.5156,0,0,941.13159 -10546,12984,23630,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,6,3,0,1,3,0,0,0,4,0,-9,0,-9,0,-1026.0266,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.540001,47.5,-9,-9,3,1,1,0,0,12,1,0,823,-6786.5156,0,0,941.13159 -10547,12985,23631,-9,-9,-9,1,1,1,33,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,-9,0,-9,0,-881.86908,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,-9,-9,5,2,3,0,1,5,1,0,1658,-218576.98,0,0,2461.0154 -10548,12986,23632,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,3,0,6.0276284,5.8269157,3,0,0,0,-9,0,-1073.2133,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6531773,6.2011065,0,0,56.849998,43.09,-9,-9,5,1,1,0,0,9,2,0,307,647935.06,0,0,822.70056 -10549,12987,23633,23635,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,8.5980062,8.3356333,0,2,0,-9,5,0,2,-2.5969062,-9,0,0,44,1,3,1,-9,-9,2019,1,1,10,1,37,0,15,1,0,1,0,13.593318,13.593318,0,0,0,0,0,0,0,0,1,1,0,3.1120322,0,0,0,50,55,32.029999,59.32,6,1,1,0,0,13,5,1,346,210772.13,0,0,4093.2959 -10549,12987,23634,-9,23633,23635,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.41296,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,346,210772.13,0,0,4093.2959 -10549,12987,23635,23633,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,0,3,8.7688427,8.9473343,0,2,0,-9,5,0,-2,-22.708477,0,0,0,46,1,4,1,2,3,2019,1,2,19,7,37,40,15,1,1,1,0,21.02515,21.02515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.029999,59.32,50,55,3,1,1,0,0,13,5,1,346,210772.13,0,0,4093.2959 -10550,12988,23636,23637,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,9.3566246,9.2480354,0,2,0,-9,25,0,1,126.54861,0,0,0,48,1,4,1,2,2,2019,1,1,13,1,85,43,15,1,0,1,0,14.990559,14.990559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.459999,40.880001,54.200001,57.490002,4,1,1,0,0,8,5,1,566.33331,2175239.3,0,0,7143.1602 -10550,12988,23637,23636,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,9.0317841,9.3406601,0,2,0,-9,25,0,-1,81.833412,0,0,0,49,2,3,1,2,2,2019,1,2,16,6,40,0,15,1,1,1,0,22.083954,22.083954,0,0,0,0,0,0,0,0,0,0,0,6.2626843,0,0,0,54.200001,57.490002,43.459999,40.880001,6,1,1,0,0,8,5,1,566.33331,2175239.3,0,0,7143.1602 -10550,12988,23638,-9,23636,23637,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1024.0525,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.130001,47.490002,-9,-9,6,1,1,0,0,8,5,1,566.33331,2175239.3,0,0,7143.1602 -10550,12989,23639,-9,23636,23637,3,1,0,19,2,0,1,0,2,-9,2,1,0,0,3,7.7415562,7.7540846,0,3,0,0,0,-9,0,-959.13483,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,35,43,15,1,0,-9,1,8.2984409,8.2984409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.299999,-9,-9,6,1,1,0,0,8,3,1,1922,-86774.016,0,0,1586.364 -10551,12990,23640,-9,23642,-9,2,1,1,16,2,0,4,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.1924,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15015148,0,0,0,47,59,-9,-9,5,1,1,0,0,2,1,0,1595,-31457.936,0,0,1275.4362 -10551,12990,23641,-9,23642,-9,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1047.4872,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,2,1,0,1595,-31457.936,0,0,1275.4362 -10551,12990,23642,-9,-9,-9,1,1,0,34,2,0,4,0,3,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1008.235,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,1,0,2,1,0,1595,-31457.936,0,0,1275.4362 -10551,12990,23643,-9,23642,-9,4,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.9385,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,1,0,1595,-31457.936,0,0,1275.4362 -10551,12990,23644,-9,23642,-9,5,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-845.85303,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,1595,-31457.936,0,0,1275.4362 -10552,12991,23645,23646,-9,-9,1,1,1,26,1,0,0,0,1,0,7,2,0,0,4,0,6.3948526,6.1594687,1,0,1,1,-9,3,14.47086,-9,1,0,23,1,5,2,-9,-9,2019,4,2,6,0,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8522682,0,0,0,60.52,53.200001,54.689999,57.470001,7,1,1,0,0,1,2,0,320.5,60044.977,0,0,1096.4058 -10552,12991,23646,23645,-9,-9,2,1,0,23,1,0,0,1,1,-9,7,2,0,0,5,0,0,0,1,0,-9,1,-9,-3,67.391861,-9,1,1,26,1,4,2,-9,-9,2019,4,1,7,0,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0793011,0,0,0,54.689999,57.470001,60.52,53.200001,6,1,1,0,0,1,2,0,320.5,60044.977,0,0,1096.4058 -10553,12992,23647,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,1,0,5.3576488,5.0397024,3,0,0,0,-9,0,-920.18842,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,0,1,5.2189507,5.280632,0,0,55.77,34.380001,-9,-9,6,1,1,0,0,7,2,0,499,71510.953,0,0,885.76526 -10554,12993,23648,-9,23649,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1045.5211,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,4,0,951,66350.781,0,0,1786.3262 -10554,12993,23649,-9,-9,-9,1,1,0,34,2,0,1,0,1,-9,2,1,0,0,3,8.3743687,8.4422321,0,4,0,0,0,-9,0,-1116.0687,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,19,8,50,45,15,1,1,-9,0,13.014907,13.014907,0,0,0,0,0,0,0,0,1,1,0,.16814516,0,0,0,21.33,63.240002,-9,-9,4,3,4,0,0,8,4,0,951,66350.781,0,0,1786.3262 -10555,12994,23650,-9,23651,23653,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.4261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,0,315.75,421832.03,0,0,2356.9612 -10555,12994,23651,23653,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,7.362864,7.4008965,0,2,0,-9,15,0,-7,-62.021961,0,0,1,41,2,3,1,-9,2,2019,1,2,5,0,20,16,15,1,0,1,0,11.817612,11.817612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,42.5,53.5,6,1,1,0,0,4,3,0,315.75,421832.03,0,0,2356.9612 -10555,12994,23652,-9,23651,23653,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.16125,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,315.75,421832.03,0,0,2356.9612 -10555,12994,23653,23651,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,3,8.0030832,8.3078709,0,2,0,-9,8,0,7,96.69957,0,0,0,34,2,4,1,2,-9,2019,1,1,11,0,45,45,15,1,0,1,0,6.4820018,6.4820018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,53.5,57.16,56.150002,5,1,1,0,1,4,3,0,315.75,421832.03,0,0,2356.9612 -10556,12995,23654,-9,23655,23656,5,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,6.1199594,5.7186046,2,0,0,0,-9,0,-1024.8229,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.07795,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,4,1,873.5,619500.88,0,0,7819.1777 -10556,12995,23655,23656,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,0,5,8.2427349,8.0621128,0,2,0,-9,31,0,-1,97.334946,0,0,0,54,1,4,1,2,2,2019,1,2,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.2059342,0,25.884846,3,57.060001,57.759998,51.34,34.400002,2,1,1,0,0,9,4,1,873.5,619500.88,0,0,7819.1777 -10556,12995,23656,23655,-9,-9,2,1,1,54,1,0,2,0,1,-9,2,1,0,0,4,8.7444801,8.5486593,0,2,0,-9,31,0,1,116.20495,0,0,0,53,2,5,1,2,2,2019,1,1,10,2,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,9.8499336,0,21.520475,3,51.34,34.400002,57.060001,57.759998,6,1,1,0,0,9,4,1,873.5,619500.88,0,0,7819.1777 -10556,12995,23657,-9,23655,23656,6,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.39172,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,4,1,873.5,619500.88,0,0,7819.1777 -10556,12996,23658,-9,23655,23656,3,1,1,22,2,0,2,0,1,1,2,1,0,0,5,8.3633919,8.5029469,0,3,0,0,0,-9,0,-958.78479,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,0,15,1,0,-9,1,13.025666,13.025666,0,0,0,0,0,0,0,0,1,1,0,1.4883035,0,0,0,48.709999,61.529999,-9,-9,6,1,1,0,0,9,4,1,313,28352.9,0,0,1210.0249 -10556,12997,23659,-9,23655,23656,4,1,1,20,2,0,2,0,2,0,7,2,0,0,3,0,6.9982362,7.1137466,3,0,0,0,-9,0,-998.01624,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,27,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0854192,0,0,0,10.44,66.730003,-9,-9,4,1,1,0,0,9,2,1,331,81655.281,0,0,916.08942 -10557,12998,23660,23661,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,0,2,8.4817114,8.505106,0,1,0,-9,23,0,0,-57.560715,0,0,0,47,2,4,1,2,-9,2019,1,1,14,2,47,40,15,1,0,1,0,12.644582,12.644582,0,0,0,0,0,0,0,0,0,0,0,3.7677157,0,0,0,38.509998,48.900002,57.16,56.150002,3,1,1,0,0,2,5,1,1409.5,131676.2,0,0,3925.1509 -10557,12998,23661,23660,-9,-9,1,1,0,47,1,0,0,0,2,-9,1,1,0,0,4,8.7657356,8.8790035,0,1,0,-9,23,0,0,137.8755,0,0,0,47,1,2,1,3,2,2019,1,2,5,0,40,38,15,1,0,1,0,15.151935,15.151935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,38.509998,48.900002,6,1,1,0,0,2,5,1,1409.5,131676.2,0,0,3925.1509 -10558,12999,23662,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,1,1,0,0,4,7.0057297,6.7901359,0,3,0,0,0,-9,0,-961.0899,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,35,15,1,0,-9,0,4.7090702,4.7090702,0,0,0,0,0,0,0,0,1,1,0,6.9755826,0,0,0,54.790001,55.860001,-9,-9,6,4,2,0,0,2,2,1,305,209289.38,0,0,-252.08719 -10559,13000,23663,23666,-9,-9,1,1,0,41,1,0,2,0,1,-9,1,1,0,0,5,7.5102372,9.3333664,9.1273413,2,0,-9,19,0,-1,-23.011988,0,0,1,42,1,4,1,1,1,2019,1,2,5,0,50,40,15,1,0,1,0,4.9477201,4.9477201,0,0,0,0,0,0,0,0,0,0,0,9.80832,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,2,5,1,347.25,844193,0,0,14178.97 -10559,13000,23664,-9,23663,23666,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.50226,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,347.25,844193,0,0,14178.97 -10559,13000,23665,-9,23663,23666,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-951.65649,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,5,1,347.25,844193,0,0,14178.97 -10559,13000,23666,23663,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,7.1933908,7.432497,0,2,0,-9,19,0,1,3.6103933,0,0,0,41,1,5,1,2,2,2019,1,1,9,0,35,37,15,1,0,1,0,4.3482418,4.3482418,0,0,0,0,0,0,0,0,0,0,0,9.0525761,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,2,5,1,347.25,844193,0,0,14178.97 -10560,13001,23667,23669,-9,-9,2,1,0,42,1,0,2,0,3,-9,3,3,0,1,3,0,0,0,2,0,-9,7,0,1,49.195316,0,0,1,41,2,2,1,3,3,2019,3,1,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.869999,44.580002,36.169998,51.34,5,1,1,1,0,1,2,0,544,26816.498,0,0,2087.9961 -10560,13001,23668,-9,23667,23669,3,1,0,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-983.69934,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,4,1,1,0,0,1,2,0,544,26816.498,0,0,2087.9961 -10560,13001,23669,23667,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,0,2,7.99792,8.3530388,0,2,0,-9,7,0,-1,64.509804,0,0,0,42,3,3,3,2,1,2019,2,2,12,0,45,45,15,1,0,3,0,8.7296095,8.7296095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.169998,51.34,40.869999,44.580002,4,1,1,0,0,1,2,0,544,26816.498,0,0,2087.9961 -10561,13002,23670,-9,23673,23672,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1005.7438,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,1,903.25,1776434.3,0,0,3010.0488 -10561,13002,23671,-9,23673,23672,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1081.8536,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,4,1,903.25,1776434.3,0,0,3010.0488 -10561,13002,23672,23673,-9,-9,2,1,1,43,1,0,2,0,2,-9,1,1,0,0,4,8.536438,8.6374426,0,2,0,-9,8,0,-4,2.3682139,0,0,0,47,2,5,1,-9,-9,2019,1,1,9,1,40,38,15,1,0,1,0,13.242991,13.242991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.060001,57.759998,5,1,1,0,0,10,4,1,903.25,1776434.3,0,0,3010.0488 -10561,13002,23673,23672,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,5,7.5787597,7.6041808,0,2,0,-9,8,0,4,-8.5855856,0,0,0,43,2,4,1,2,3,2019,1,2,12,1,23,22,15,1,0,1,0,10.900607,10.900607,0,0,0,0,0,0,0,0,1,1,0,5.0957193,0,0,0,57.060001,57.759998,51,56,6,1,1,0,0,10,4,1,903.25,1776434.3,0,0,3010.0488 -10562,13003,23674,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,0,3,8.3361959,8.3055811,0,4,0,-9,0,1,0,-948.81439,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,12,42,43,15,1,1,-9,0,9.2610502,9.2610502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26,45.970001,-9,-9,2,1,1,0,0,10,3,1,2244.5,-27440.813,0,0,1003.4958 -10562,13003,23675,-9,23674,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.2273,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.84,47.650002,-9,-9,6,1,1,0,0,10,3,1,2244.5,-27440.813,0,0,1003.4958 -10562,13004,23676,-9,23674,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,7.7339778,8.0727978,0,3,0,0,0,-9,0,-1070.9934,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,41,0,15,1,0,-9,1,5.5369558,5.5369558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,10,3,1,699,-41587.457,0,0,2823.7246 -10563,13005,23677,23678,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,8.2492313,8.2382717,0,2,0,-9,6,0,0,-93.109421,0,0,1,34,2,3,1,2,2,2019,1,2,8,1,41,39,15,1,0,1,0,11.482129,11.482129,0,0,0,0,0,0,0,0,1,1,0,5.0380654,0,0,0,45.91,59.889999,43.119999,58.549999,6,1,1,0,0,9,4,1,594.75,268175.84,0,0,3016.6978 -10563,13005,23678,23677,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,3,8.4474649,8.0620222,0,2,0,-9,6,0,0,-15.466102,0,0,0,34,2,4,1,-9,-9,2019,1,1,15,3,37,37,15,1,0,1,0,11.517514,11.517514,0,0,0,0,0,0,0,0,1,1,0,5.2636809,0,0,0,43.119999,58.549999,45.91,59.889999,4,1,1,0,0,9,4,1,594.75,268175.84,0,0,3016.6978 -10563,13005,23679,-9,23677,23678,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.0137,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,594.75,268175.84,0,0,3016.6978 -10563,13005,23680,-9,23677,23678,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.41522,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,4,1,594.75,268175.84,0,0,3016.6978 -10564,13006,23681,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,1,1,0,7.3487539,7.1348786,3,0,0,0,-9,0,-968.97717,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.8648233,6.9558191,0,0,46.23,19.58,-9,-9,6,1,1,0,0,1,2,0,461,552515.56,0,0,1826.6389 -10565,13007,23682,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,4,7.3017554,8.4988499,7.404798,3,0,0,0,-9,0,-883.34344,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,22,15,1,0,-9,0,6.8450513,6.8450513,0,0,0,0,0,0,0,0,1,1,0,5.7508316,7.543817,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,7,4,1,111,184058.16,0,0,2040.5532 -10566,13008,23683,-9,23684,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1069.0197,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,1,0,495.5,71355.75,0,0,205.49718 -10566,13008,23684,-9,-9,-9,1,1,0,22,2,1,1,0,2,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-934.88452,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.889999,60.73,-9,-9,7,1,1,1,0,13,1,0,495.5,71355.75,0,0,205.49718 -10567,13009,23685,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,0,4,0,6.995338,6.8622413,3,0,0,0,-9,0,-1061.7399,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,.5043003,0,0,0,1.0552061,22.019815,0,1,1,0,0,7.365582,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,2,2,1,1287,592188,0,0,2012.9576 -10568,13010,23686,23687,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-2,-50.406757,0,0,0,69,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.59,36.84,53,47,6,1,1,0,0,4,2,1,1868.5,1153506,0,0,1213.0068 -10568,13010,23687,23686,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.29878,6.7350459,1,0,-9,6,0,2,-5.8620148,0,0,0,67,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3301091,0,0,53,47,60.59,36.84,5,1,1,0,0,4,2,1,1868.5,1153506,0,0,1213.0068 -10569,13011,23688,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,1,1,0,0,3,6.5972328,6.516952,0,3,0,0,0,-9,0,-939.63348,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,60,60,15,1,1,-9,0,1.0768245,1.0768245,0,0,0,0,0,0,0,0,1,1,0,1.8209627,0,0,0,45.580002,47.970001,-9,-9,5,1,1,0,0,12,2,0,797,343967.94,0,0,1133.5667 -10570,13012,23689,-9,23690,-9,2,1,1,16,2,0,2,1,3,-9,7,2,0,0,3,5.2831922,5.5490189,0,4,0,0,0,-9,0,-1042.3741,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.16,51.259998,-9,-9,5,1,1,0,0,9,3,1,558,334846.25,0,0,2507.801 -10570,13012,23690,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,0,4,7.8664851,8.0169687,6.2277198,4,0,0,0,-9,0,-832.00037,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,28,25,15,1,0,-9,0,11.647799,11.647799,0,0,0,0,0,0,0,0,1,1,0,6.8487501,0,0,0,45.799999,54.59,-9,-9,6,1,1,0,0,9,3,1,558,334846.25,0,0,2507.801 -10570,13012,23691,-9,23690,-9,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,4.5072765,4.3677912,0,4,0,0,0,-9,0,-1034.0229,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0436168,0,0,0,49.52,55.68,-9,-9,6,1,1,0,0,9,3,1,558,334846.25,0,0,2507.801 -10571,13013,23692,23693,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.8663101,8.6783218,0,1,0,-9,32,0,1,-78.695198,0,0,0,50,3,4,1,-9,-9,2019,1,2,9,0,42,35,15,1,0,1,0,14.96671,14.96671,0,0,0,0,0,0,0,2,0,0,0,4.1156855,0,7.3338389,3,46.48,53.759998,53,55,2,1,1,0,0,6,4,1,524,222829.06,0,0,2776.6199 -10571,13013,23693,23692,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,0,4,7.2728076,7.2506442,0,1,0,-9,32,0,-1,22.693535,0,0,0,51,2,3,1,2,2,2019,1,1,9,1,30,30,15,1,0,1,0,4.5006061,4.5006061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,46.48,53.759998,6,1,1,0,0,6,4,1,524,222829.06,0,0,2776.6199 -10572,13014,23694,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-939.0437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.860001,20.5,-9,-9,1,1,1,0,0,4,1,0,840,-26401.867,0,0,2441.708 -10573,13015,23695,-9,23696,-9,6,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-976.42133,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,7,3,0,1398,-191648.59,0,0,3788.0181 -10573,13015,23696,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,2,1,0,0,4,7.9507747,7.6648903,5.8455777,4,0,0,0,-9,0,-1052.1713,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,1,38,38,15,1,0,-9,0,7.1841431,7.1841431,0,0,0,0,0,0,0,14.5,1,1,0,6.1656609,0,18.147245,3,55.549999,32.419998,-9,-9,5,1,1,0,0,7,3,0,1398,-191648.59,0,0,3788.0181 -10573,13016,23697,-9,-9,-9,4,1,0,19,2,0,2,0,2,-9,2,1,0,0,5,7.5938411,7.8095875,0,4,0,0,0,-9,0,-844.74603,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,35,0,15,1,0,-9,0,7.182364,7.182364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,7,3,0,269,74914.789,0,0,818.95386 -10574,13017,23698,23699,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.8777037,8.7590837,0,1,0,-9,6,0,2,-46.395756,0,0,0,51,2,3,1,3,3,2019,1,2,17,5,40,50,15,1,1,1,0,18.588955,18.588955,0,0,0,0,0,0,0,0,0,0,0,7.6959519,0,0,0,38.009998,34.130001,54.959999,53.169998,5,1,1,0,0,9,5,1,767.5,1046351.8,0,0,5635.665 -10574,13017,23699,23698,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.0981741,7.1424541,0,1,0,-9,6,0,-2,-62.068409,-9,0,0,53,2,2,1,-9,-9,2019,1,1,8,0,22,0,15,1,0,1,0,7.7213149,7.7213149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,38.009998,34.130001,6,1,1,0,0,9,5,1,767.5,1046351.8,0,0,5635.665 -10575,13018,23700,23701,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,2,5.0704365,7.5691638,7.1017237,1,0,-9,59,0,-3,16.400928,0,0,0,81,3,2,3,3,3,2019,4,2,7,0,8,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8044426,7.2682409,0,0,56.41,44.91,41.360001,34.009998,7,1,1,0,0,6,2,1,808,388627.16,0,0,1873.9412 -10575,13018,23701,23700,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,2,0,3.9843631,4.0507278,1,0,-9,10,0,3,-40.576519,0,0,0,78,1,2,3,-9,-9,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.092164,4.0038347,0,0,41.360001,34.009998,56.41,44.91,6,1,1,0,0,6,2,1,808,388627.16,0,0,1873.9412 -10576,13019,23702,23703,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,6.2274175,6.6983166,1,0,-9,33,0,8,125.48285,0,0,0,65,2,5,1,3,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.0739906,6.5572309,12.666486,3,57.16,56.150002,46.529999,61.330002,6,1,1,0,0,2,4,1,603,378892.53,0,0,3734.8708 -10576,13019,23703,23702,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,5,8.3476181,8.4308252,5.6853027,1,0,-9,33,0,-8,-69.149429,0,0,0,73,2,4,3,3,3,2019,2,1,11,1,48,53,15,1,0,4,0,9.1728544,9.1728544,0,0,0,0,0,0,0,0,1,1,0,.93985391,6.0387616,0,0,46.529999,61.330002,57.16,56.150002,6,1,1,0,0,2,4,1,603,378892.53,0,0,3734.8708 -10577,13020,23704,23705,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,5,8.89112,8.7455645,0,1,0,-9,8,0,2,-15.955564,0,0,0,59,3,3,3,3,3,2019,2,1,6,0,45,47,15,1,0,3,0,14.193842,14.193842,0,0,0,0,0,0,0,0,0,0,0,1.5433319,0,0,0,62.389999,56.709999,36.790001,35.599998,7,1,1,0,0,11,4,0,764.5,1296108.9,0,0,2756.7166 -10577,13020,23705,23704,-9,-9,1,1,0,59,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,8,0,-2,-80.084236,0,0,0,61,2,5,1,-9,3,2019,3,2,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.790001,35.599998,62.389999,56.709999,6,1,1,1,0,11,4,0,764.5,1296108.9,0,0,2756.7166 -10578,13021,23706,23708,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,0,4,6.6010013,6.594245,0,2,0,-9,7,0,-5,-24.794218,0,1,1,34,1,4,1,3,2,2019,1,2,18,6,20,16,15,1,1,1,0,4.6671681,4.6671681,0,0,0,0,0,0,0,0,0,0,0,1.1333132,0,0,0,38.98,44.110001,39.549999,42.5,5,2,3,0,0,8,3,0,404.66666,302168.69,0,0,1744.7225 -10578,13021,23707,-9,23706,23708,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.8709,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,0,404.66666,302168.69,0,0,1744.7225 -10578,13021,23708,23706,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,0,4,7.6666045,8.0499229,0,2,0,-9,7,0,5,251.16096,0,0,0,29,1,4,1,3,1,2019,1,1,20,8,49,20,15,1,1,1,0,8.0908651,8.0908651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.549999,42.5,38.98,44.110001,4,2,3,0,0,8,3,0,404.66666,302168.69,0,0,1744.7225 -10579,13022,23709,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,0,4,7.3456125,7.0587826,0,4,0,0,0,-9,0,-1069.3781,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,23,23,15,1,0,-9,0,7.6855478,7.6855478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.580002,58.52,-9,-9,3,1,1,0,0,2,2,0,653.66669,-159513.69,0,0,1372.1412 -10579,13022,23710,-9,23709,-9,2,1,1,17,2,0,2,0,3,1,97,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1031.5391,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.349998,48.299999,-9,-9,6,1,1,0,0,2,2,0,653.66669,-159513.69,0,0,1372.1412 -10579,13022,23711,-9,23709,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.0784,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,653.66669,-159513.69,0,0,1372.1412 -10580,13023,23712,23713,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,8.8621788,8.7944603,0,1,0,-9,27,0,0,-33.749489,0,0,0,47,2,3,1,2,2,2019,1,1,12,0,40,38,15,1,0,1,0,17.935455,17.935455,0,0,0,0,0,0,0,0,1,1,0,2.4890711,0,0,0,43.200001,59.970001,47.02,44.599998,5,1,1,0,0,2,5,1,206.5,62862.527,0,0,4199.4316 -10580,13023,23713,23712,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,7.8476667,8.0370121,0,1,0,-9,28,0,0,-102.70952,0,0,0,47,2,4,1,2,1,2019,1,2,11,0,40,38,15,1,0,1,0,8.7481003,8.7481003,0,0,0,0,0,0,0,0,1,1,0,1.7360497,0,0,0,47.02,44.599998,43.200001,59.970001,5,1,1,0,0,2,5,1,206.5,62862.527,0,0,4199.4316 -10580,13024,23714,-9,23712,23713,3,1,1,19,2,0,0,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-945.82379,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,10,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.900002,57.009998,-9,-9,5,1,1,0,0,2,1,1,598,109689.33,0,0,0 -10581,13025,23715,23716,-9,-9,1,1,0,57,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,31,0,1,106.68734,0,0,0,56,2,3,1,2,3,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.2719018,3,53.150002,37.709999,42.799999,29.290001,5,1,1,0,1,2,4,1,1201,505616.69,0,0,3604.478 -10581,13025,23716,23715,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.6512785,8.7958431,7.1269841,1,0,-9,31,0,-1,-84.250496,0,0,0,57,3,3,3,2,3,2019,2,1,16,5,37,36,15,1,1,3,0,13.678052,13.678052,0,0,0,0,0,0,0,2,1,1,0,0,7.4851012,3.3914828,3,42.799999,29.290001,53.150002,37.709999,3,1,1,0,0,2,4,1,1201,505616.69,0,0,3604.478 -10581,13026,23717,-9,23715,23716,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,8.2684555,8.3443031,0,3,0,0,0,-9,0,-863.67194,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,40,15,1,0,-9,1,10.500469,10.500469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.220001,53.950001,-9,-9,4,1,1,0,0,2,4,1,502,-6735.0518,0,0,1012.2383 -10581,13027,23718,-9,23715,23716,4,1,1,23,2,0,0,0,1,-9,2,1,0,0,5,7.9282799,7.7446966,0,3,0,0,0,-9,0,-983.82385,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,45,36,15,1,0,-9,1,7.7056499,7.7056499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.360001,59.130001,-9,-9,2,1,1,0,0,2,4,1,254,-16861.361,0,0,589.47919 -10581,13028,23719,-9,23715,23716,5,1,0,21,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-886.33917,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,25,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8979744,0,0,0,39.709999,53.209999,-9,-9,4,1,1,1,0,2,1,1,701,-176462.3,0,0,640.5976 -10582,13029,23720,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1131.3795,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.389999,37.66,-9,-9,2,1,1,1,0,5,1,0,1316,43119.254,0,0,879.16156 -10583,13030,23721,23722,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,0,5,4.805028,6.6889644,6.5890474,1,0,-9,8,0,1,118.6011,0,0,0,83,2,3,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9075055,6.5537553,0,0,62.389999,56.709999,65.150002,29.299999,7,1,1,0,0,12,3,1,456.5,771121.63,0,0,2879.5054 -10583,13030,23722,23721,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,3,0,7.1627336,7.4034944,1,0,-9,8,0,-1,30.559271,0,0,0,84,1,5,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,6.3141336,0,0,0,0,0,1,1,0,4.271246,7.4876947,0,0,65.150002,29.299999,62.389999,56.709999,6,1,1,0,0,12,3,1,456.5,771121.63,0,0,2879.5054 -10584,13031,23723,-9,-9,-9,1,1,0,44,2,0,2,0,2,-9,7,2,0,0,4,0,6.3666339,6.670907,4,0,0,0,-9,0,-1037.8904,1,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,0,40,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3743653,0,11.621926,3,52.490002,46.299999,-9,-9,7,1,1,0,0,4,2,1,370,25420.691,0,0,14.608622 -10584,13032,23724,-9,23723,-9,2,1,1,19,2,0,2,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-999.24268,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,4,2,1,0,4,1,1,268,0,0,0,0 -10585,13033,23725,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,5.3561645,4.8350577,3,0,0,0,-9,0,-1038.4606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6441636,5.0672407,0,0,56.330002,51.02,-9,-9,6,1,1,0,0,2,2,1,1474,74479.063,0,0,337.69611 -10586,13034,23726,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,7.9081979,8.2023954,0,3,0,0,0,-9,0,-1085.566,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,35,36,15,1,1,-9,0,7.8140783,7.8140783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.889999,44.380001,-9,-9,4,1,1,0,1,2,4,1,2076,228263.83,0,0,2117.6331 -10587,13035,23727,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,2,1,0,0,3,8.1152248,7.8942165,5.5122356,4,0,0,0,-9,0,-1004.0714,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,18,6,37,37,15,1,1,-9,0,11.456873,11.456873,0,0,0,0,0,0,0,0,1,1,0,6.3351254,0,0,0,48.040001,43.959999,-9,-9,4,1,1,0,0,1,4,1,5360,-46316.59,0,0,513.34601 -10588,13036,23728,23729,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.9682674,8.5082474,0,1,0,-9,14,0,2,12.650841,0,0,0,42,2,2,1,3,2,2019,1,2,14,4,40,40,15,1,1,1,0,14.753107,14.753107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.990002,60.709999,51.43,45.599998,7,1,1,0,0,2,5,1,1549.5,379579.44,0,0,4439.9067 -10588,13036,23729,23728,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,2,8.2600393,8.2894773,0,1,0,-9,14,0,-2,68.443001,0,0,1,44,2,4,1,2,-9,2019,1,1,10,0,42,40,15,1,0,1,0,14.504358,14.504358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.43,45.599998,43.990002,60.709999,6,1,1,0,0,2,5,1,1549.5,379579.44,0,0,4439.9067 -10589,13037,23730,23733,-9,-9,1,1,0,42,1,0,3,0,1,-9,6,3,0,0,5,6.1779923,6.3948293,0,2,0,-9,10,0,-1,-7.2544289,0,0,1,43,1,3,1,2,2,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.59409928,0,0,0,51.139999,60.450001,43.369999,57.279999,5,1,1,0,0,9,5,1,593.79999,729831.69,0,0,4581.9521 -10589,13037,23731,-9,23730,23733,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.8892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,4,2,0,0,9,5,1,593.79999,729831.69,0,0,4581.9521 -10589,13037,23732,-9,23730,23733,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.84601,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,9,5,1,593.79999,729831.69,0,0,4581.9521 -10589,13037,23733,23730,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,3,9.5296354,9.4187622,0,2,0,-9,10,0,1,-118.5163,0,0,0,42,1,5,3,3,3,2019,2,1,11,0,46,53,15,1,0,3,0,31.2873,31.2873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.369999,57.279999,51.139999,60.450001,5,2,3,0,0,9,5,1,593.79999,729831.69,0,0,4581.9521 -10589,13037,23734,-9,23730,23733,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.23846,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,9,5,1,593.79999,729831.69,0,0,4581.9521 -10590,13038,23735,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,0,4,0,9.3191471,9.4058657,3,0,0,0,-9,0,-1030.3054,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1848311,9.1183453,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,5,1,142,1272497.1,0,0,4898.7295 -10591,13039,23736,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1029.578,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.040001,40.639999,-9,-9,7,1,1,0,0,2,1,1,643,71009.781,0,0,1833.8199 -10592,13040,23737,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,1,3,6.2557297,6.6283636,0,3,0,0,0,-9,0,-874.36053,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,12,15,1,0,-9,0,6.5498986,6.5498986,0,0,0,0,0,0,0,7,1,1,0,.32133782,0,1.0899423,3,62.66,52.400002,-9,-9,1,1,1,0,0,7,2,0,736,107822.63,0,0,1807.1769 -10593,13041,23738,-9,23739,23740,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.6627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,3,0,1070.6666,38136,0,0,2590.6282 -10593,13041,23739,23740,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,0,3,7.9072094,8.2776184,0,2,0,-9,6,0,-10,27.962276,0,0,1,41,2,3,1,3,2,2019,1,1,10,0,45,44,15,1,0,1,0,10.378271,10.378271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.5,49.220001,62.66,52.400002,6,1,1,0,0,12,3,0,1070.6666,38136,0,0,2590.6282 -10593,13041,23740,23739,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,6,0,10,-93.083168,0,0,0,31,2,3,1,3,3,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0142579,0,0,0,62.66,52.400002,45.5,49.220001,7,1,1,0,0,12,3,0,1070.6666,38136,0,0,2590.6282 -10594,13042,23741,23742,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,8.274683,8.4736137,0,1,0,-9,5,0,3,-74.68219,0,0,0,54,1,4,1,2,2,2019,1,2,10,1,47,36,15,1,0,1,0,12.580028,12.580028,0,0,0,0,0,0,0,2,0,0,0,0,0,5.597785,3,52,53,45.91,59.889999,6,1,1,0,0,10,4,1,1307.5,493392.75,0,0,2780.1755 -10594,13042,23742,23741,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,6.6411853,6.5280404,0,1,0,-9,5,0,-3,-17.383699,0,0,0,57,1,4,1,-9,-9,2019,1,1,12,1,40,38,15,1,0,1,0,1.869676,1.869676,0,0,0,0,0,0,0,2,0,0,0,3.0531027,0,6.359395,3,45.91,59.889999,52,53,3,1,1,0,0,10,4,1,1307.5,493392.75,0,0,2780.1755 -10595,13043,23743,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,0,3,8.0003452,8.3903637,0,3,0,0,0,-9,0,-921.55646,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,37,42,15,1,0,-9,0,9.2893667,9.2893667,0,0,0,0,0,0,0,0,0,0,0,.85424942,0,0,0,44.360001,54.040001,-9,-9,4,1,1,0,0,9,4,0,223,107291.99,0,0,2059.9031 -10596,13044,23744,23745,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,7.6261897,7.5839806,0,1,0,-9,6,0,-2,46.746147,0,0,0,55,2,4,1,3,3,2019,1,1,6,0,26,21,15,1,0,1,0,6.5880222,6.5880222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.139999,50.720001,53,54,7,1,1,0,0,13,5,1,1077.5,316870.91,0,0,4608.1416 -10596,13044,23745,23744,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.5724459,8.3277817,0,1,0,-9,6,0,2,20.117855,-9,0,0,53,3,3,1,3,3,2019,1,2,9,1,37,0,15,1,0,1,0,18.784342,18.784342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,48.139999,50.720001,6,1,1,0,0,13,5,1,1077.5,316870.91,0,0,4608.1416 -10596,13045,23746,-9,23744,23745,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.1359129,8.1544685,0,3,0,0,0,-9,0,-971.24048,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,0,15,1,0,-9,1,8.3957777,8.3957777,0,0,0,0,0,0,0,0,0,0,0,4.1330829,0,0,0,49,58,-9,-9,5,1,1,0,0,13,4,1,6646,45090.078,0,0,363.20551 -10597,13046,23747,-9,23749,-9,2,1,0,17,2,0,2,1,2,-9,7,2,0,0,4,7.4754558,7.7473774,0,4,0,0,0,-9,0,-975.3432,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,7,1,0,1409.3334,63629.578,0,0,3989.0784 -10597,13046,23748,-9,23749,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1066.5514,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,1,0,1409.3334,63629.578,0,0,3989.0784 -10597,13046,23749,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-981.39258,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,52.939999,-9,-9,3,1,1,0,0,7,1,0,1409.3334,63629.578,0,0,3989.0784 -10598,13047,23750,-9,-9,-9,1,1,0,43,2,0,1,0,1,-9,2,1,0,0,5,8.6591244,8.7115917,5.4810972,4,0,0,0,-9,0,-1047.5753,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,41,41,15,1,0,-9,0,16.691484,16.691484,0,0,0,0,0,0,0,0,1,1,0,6.1524386,0,0,0,42.75,61.950001,-9,-9,6,1,1,0,0,12,5,1,1696.5,191303.7,0,0,2105.543 -10598,13047,23751,-9,23750,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.061,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,1696.5,191303.7,0,0,2105.543 -10599,13048,23752,-9,23754,23753,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.09869,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,8,3,0,688.66669,495225.59,0,0,2524.603 -10599,13048,23753,23754,-9,-9,3,1,1,39,1,1,2,0,2,-9,2,1,0,0,2,8.552762,8.4490404,0,2,0,-9,7,0,9,27.67955,0,0,0,30,2,5,1,-9,-9,2019,1,1,12,1,50,65,15,1,0,1,0,10.198506,10.198506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.330002,43.889999,54.099998,59.110001,4,3,4,0,0,8,3,0,688.66669,495225.59,0,0,2524.603 -10599,13048,23754,23753,-9,-9,1,1,0,30,1,1,2,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,7,0,0,34.996124,0,0,1,39,2,2,1,2,-9,2019,1,3,5,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,55.330002,43.889999,4,3,4,0,1,8,3,0,688.66669,495225.59,0,0,2524.603 -10600,13049,23755,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,4,3,0,0,5,0,7.7064791,7.6647902,3,0,0,0,-9,0,-1059.3492,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,50,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5539553,7.766139,0,0,53.509998,60.740002,-9,-9,5,1,1,0,0,13,3,1,746,1794937.4,0,0,1904.0192 -10601,13050,23756,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1018.8729,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,8.0639524,3,57.34,50.599998,-9,-9,6,1,1,0,0,5,1,0,1563,-50486.426,0,0,625.72589 -10602,13051,23757,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,5,0,6.9523444,6.8876939,3,0,0,0,-9,0,-1093.7583,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6360359,0,0,53.349998,51.139999,-9,-9,7,1,1,0,0,11,2,0,86,630384.38,0,0,1595.0641 -10603,13052,23758,23759,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.2275476,8.1303654,1,0,-9,9,0,8,120.48886,0,0,0,63,1,4,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8420448,8.3451567,0,0,58.299999,52.91,57.16,56.150002,7,1,1,0,0,13,4,1,615,2059151.3,0,0,3594.9719 -10603,13052,23759,23758,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,7.8356681,7.997232,1,0,-9,9,0,-8,-1.9101119,0,0,0,71,1,4,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9003386,7.7307992,0,0,57.16,56.150002,58.299999,52.91,7,1,1,0,0,13,4,1,615,2059151.3,0,0,3594.9719 -10604,13053,23760,23761,-9,-9,1,1,1,27,1,0,0,0,2,-9,1,1,0,0,3,7.8550086,8.3743639,0,1,0,-9,4,0,3,177.26311,0,1,0,24,1,5,1,2,1,2019,1,2,5,0,35,24,15,1,0,1,0,11.763988,11.763988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,58.049999,54.52,6,1,1,0,0,9,4,0,548.5,-97940.672,0,0,2575.2224 -10604,13053,23761,23760,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,0,5,7.4260292,7.1490378,0,1,0,-9,4,0,-3,29.669662,0,1,1,27,2,3,1,-9,-9,2019,1,1,6,0,35,0,15,1,0,1,0,5.2203016,5.2203016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,58.32,50.220001,5,1,1,0,0,9,4,0,548.5,-97940.672,0,0,2575.2224 -10605,13054,23762,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,2,1,0,0,3,9.0119877,9.0080776,0,4,0,0,0,-9,0,-1099.8048,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,45,30,15,1,1,-9,0,22.608376,22.608376,0,0,0,0,0,0,0,0,0,0,0,7.2997799,0,0,0,33.75,58.860001,-9,-9,6,1,1,0,0,10,5,0,3837,417773.56,0,0,2313.2373 -10606,13055,23763,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-943.67346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.91,42.650002,-9,-9,4,1,1,0,1,4,1,0,1092,-71121.508,0,0,1615.8253 -10607,13056,23764,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,0,3,0,7.1697912,7.5936422,3,0,0,0,-9,0,-1135.9821,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5058265,0,0,44.84,44.400002,-9,-9,6,1,1,0,0,11,3,0,330,345165.28,0,0,1353.3145 -10608,13057,23765,23766,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,5,9.7362089,9.6415329,0,1,0,-9,15,0,2,63.285728,0,0,0,42,1,4,1,3,3,2019,1,2,10,0,60,60,15,1,0,1,0,27.674175,27.674175,0,0,0,0,0,0,0,0,0,0,0,5.6709461,0,0,0,54.099998,59.110001,50,55,6,1,1,0,0,8,5,1,1989.5,475585.69,0,0,13951.231 -10608,13057,23766,23765,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,4,9.6856985,9.7674885,0,1,0,-9,7,0,-2,46.486115,0,0,1,44,2,5,1,-9,-9,2019,1,1,10,1,60,38,15,1,0,1,0,32.650505,32.650505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.099998,59.110001,6,1,1,0,0,8,5,1,1989.5,475585.69,0,0,13951.231 -10609,13058,23767,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.3181133,8.2751894,0,3,0,0,0,-9,0,-817.09192,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,55,55,15,1,0,-9,0,10.634385,10.634385,0,0,0,0,0,0,0,0,0,0,0,1.5102646,0,0,0,52.259998,44.880001,-9,-9,6,1,1,0,0,8,4,0,3429,78938.008,0,0,2136.4456 -10610,13059,23768,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,1,2,8.3653412,8.6119232,6.6708632,3,0,-9,0,0,0,-1029.5695,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,20,0,15,1,0,-9,0,24.577675,24.577675,0,0,0,0,0,0,0,0,1,1,0,7.8252344,0,0,0,43.889999,20.74,-9,-9,5,1,1,0,0,5,5,1,263,134482.66,0,0,3105.9451 -10611,13060,23769,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,1,1,1.8805984,2.0343685,0,3,0,0,0,-9,0,-944.1098,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,38,38,15,1,1,-9,1,.023050211,.023050211,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.5802629,3,20.870001,36.540001,-9,-9,2,1,1,0,1,11,2,0,407,259973.69,0,0,609.83557 -10612,13061,23770,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,2,7.6901641,7.7698245,0,3,0,0,0,-9,0,-1124.2732,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,30,25,15,1,0,-9,0,9.9712839,9.9712839,0,0,0,0,0,0,0,7,1,1,0,1.9482939,0,6.3588748,3,49.470001,46.650002,-9,-9,4,1,1,0,0,7,3,1,1009,-19722.805,0,0,378.57657 -10612,13062,23771,-9,23770,-9,2,1,1,23,2,0,0,0,1,1,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1005.9527,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.389999,56.130001,-9,-9,3,1,1,1,0,7,1,1,745,96200.25,0,0,788.20911 -10613,13063,23772,23773,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,8.8472729,8.6846399,0,2,0,-9,9,0,16,115.24643,0,0,0,38,2,4,1,-9,-9,2019,1,1,9,0,50,50,15,1,0,1,0,16.47612,16.47612,0,0,0,0,0,0,0,2,1,1,0,0,0,4.7273512,3,60.130001,49.27,57.310001,50.610001,6,1,1,0,0,2,5,1,197.66667,1371501.1,0,0,3433.373 -10613,13063,23773,23772,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,7.8843226,7.5405083,0,2,0,-9,13,0,-16,19.074308,0,0,1,54,2,4,1,3,3,2019,1,2,12,1,30,36,15,1,0,1,0,10.088887,10.088887,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.310001,50.610001,60.130001,49.27,6,1,1,0,0,2,5,1,197.66667,1371501.1,0,0,3433.373 -10613,13063,23774,-9,23773,23772,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.6865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,197.66667,1371501.1,0,0,3433.373 -10614,13064,23775,23777,-9,-9,2,1,1,45,1,0,1,0,1,-9,1,1,0,0,4,6.7643752,6.4804072,0,2,0,-9,7,0,0,68.976433,0,0,0,45,1,5,1,-9,-9,2019,1,1,11,0,20,15,15,1,0,1,0,5.54637,5.54637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.009998,57.459999,59.43,58.049999,5,4,2,0,0,9,4,1,604,596887.88,0,0,2639.3101 -10614,13064,23776,-9,23777,23775,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.1485,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,9,4,1,604,596887.88,0,0,2639.3101 -10614,13064,23777,23775,-9,-9,1,1,0,45,1,0,1,0,1,-9,2,1,0,0,5,8.8278894,8.6740122,0,2,0,-9,7,0,0,-96.664841,0,0,0,45,1,4,1,-9,-9,2019,1,2,8,0,70,35,15,1,0,1,0,12.398553,12.398553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,45.009998,57.459999,7,1,1,0,0,9,4,1,604,596887.88,0,0,2639.3101 -10615,13065,23778,-9,23779,23780,4,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.74121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,5,1,1224,258354.45,0,0,3362.2751 -10615,13065,23779,23780,-9,-9,2,1,0,48,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,16,0,9,-17.715231,0,0,0,39,2,3,1,-9,-9,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,53.139999,57.330002,53.459999,6,1,1,1,0,4,5,1,1224,258354.45,0,0,3362.2751 -10615,13065,23780,23779,-9,-9,1,1,1,39,1,0,1,0,2,-9,1,1,0,0,3,9.0448427,9.1197453,0,2,0,-9,16,0,0,-5.5582461,0,0,0,48,2,4,3,2,2,2019,2,2,6,0,45,45,15,1,0,3,0,22.784121,22.784121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,50.009998,53.139999,6,1,1,0,0,4,5,1,1224,258354.45,0,0,3362.2751 -10616,13066,23781,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,3,0,6.8936925,6.600472,3,0,0,0,-9,0,-1064.532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.598671,0,0,47.369999,55.41,-9,-9,6,1,1,0,0,1,2,0,650,138956.64,0,0,836.51086 -10617,13067,23782,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,5,9.5860138,9.7247219,0,3,0,0,0,-9,0,-929.96899,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,57,15,1,0,-9,0,37.908585,37.908585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,12,5,1,1061,427152.78,0,0,4994.6504 -10618,13068,23783,-9,23784,23786,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.01172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,378.5,-46066.754,0,0,2500.1616 -10618,13068,23784,23786,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,5,7.7657022,7.4731832,0,2,0,-9,14,0,-3,-39.535889,0,0,1,37,2,4,1,2,2,2019,1,2,6,0,21,21,15,1,0,1,0,12.205877,12.205877,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,5,4,1,378.5,-46066.754,0,0,2500.1616 -10618,13068,23785,-9,23784,23786,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-837.08801,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,378.5,-46066.754,0,0,2500.1616 -10618,13068,23786,23784,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,8.4824448,8.2419567,0,2,0,-9,14,0,3,21.677898,0,0,0,34,2,5,1,2,2,2019,1,1,7,0,44,45,15,1,0,1,0,12.912029,12.912029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.060001,57.759998,6,1,1,0,0,5,4,1,378.5,-46066.754,0,0,2500.1616 -10619,13069,23787,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-908.60339,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8149307,0,0,0,36.130001,27.190001,-9,-9,5,1,1,0,0,11,1,1,915,157824.92,0,0,1864.1741 -10620,13070,23788,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,7.8378472,7.5946283,0,3,0,0,0,-9,0,-824.70532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,36,36,15,1,0,-9,0,8.092123,8.092123,0,0,0,0,0,0,0,0,0,0,0,4.5324559,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,8,3,0,1075,-21873.043,0,0,1104.1154 -10621,13071,23789,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,7.0036497,7.1314163,3,0,0,0,-9,0,-1046.1521,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3405263,6.653964,0,0,48.939999,36.990002,-9,-9,6,1,1,0,0,9,2,1,1013,558346.5,0,0,2235.761 -10622,13072,23790,-9,23793,23792,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.08276,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,703.5,152616.39,0,0,2658.217 -10622,13072,23791,-9,23793,23792,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-845.9469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,4,1,703.5,152616.39,0,0,2658.217 -10622,13072,23792,23793,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.1620092,8.3181238,0,2,0,-9,14,0,3,-65.258087,0,0,0,35,2,4,1,2,2,2019,1,2,6,0,41,40,15,1,0,1,0,8.7054911,8.7054911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,50.610001,48.139999,6,1,1,0,0,5,4,1,703.5,152616.39,0,0,2658.217 -10622,13072,23793,23792,-9,-9,2,1,0,35,1,0,2,0,2,-9,1,1,0,0,4,7.6985002,7.7113504,0,2,0,-9,14,0,-3,16.458876,0,0,1,38,2,4,1,2,2,2019,1,1,7,0,50,50,15,1,0,1,0,5.8099198,5.8099198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.610001,48.139999,45.91,59.889999,6,1,1,0,0,5,4,1,703.5,152616.39,0,0,2658.217 -10623,13073,23794,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,2,1,0,0,4,8.1375961,8.6314764,7.8810148,3,0,0,0,-9,0,-947.69763,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,22,22,15,1,0,-9,0,14.513387,14.513387,0,0,0,0,0,0,0,2,0,0,0,7.4215012,8.2157383,0,3,52.34,56.950001,-9,-9,6,1,1,0,0,8,5,1,807,206185.03,0,0,4755.3984 -10623,13074,23795,-9,23794,-9,2,1,0,21,2,0,0,0,1,1,2,1,0,0,4,7.3229032,7.5458088,0,3,0,0,0,-9,0,-952.51111,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,21,8,14,0,15,1,1,-9,1,14.303505,14.303505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.620001,65.589996,-9,-9,3,4,2,0,0,8,3,1,86,81215.43,0,0,-886.12091 -10624,13075,23796,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,4,0,7.7058001,7.2311683,3,0,0,0,-9,0,-1032.7958,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3709517,7.5530639,0,0,45.16,51.93,-9,-9,5,1,1,0,0,2,3,1,404,1093943,0,0,3347.1194 -10625,13076,23797,-9,-9,-9,1,1,0,22,2,0,0,0,1,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1077.0242,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,8.7689486,3,48.099998,36.599998,-9,-9,5,1,1,0,0,6,1,0,619,-137332.08,0,0,0 -10626,13077,23798,-9,-9,-9,1,1,1,74,2,0,0,0,1,-9,9,3,0,0,3,0,7.5458469,7.5568905,3,0,0,0,-9,0,-868.82019,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1102412,7.7231383,0,0,56.52,48.310001,-9,-9,7,1,1,0,0,12,3,1,2483,481164.91,0,0,1879.9419 -10627,13078,23799,-9,23800,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-995.67285,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,1,1,0,0,8,4,1,357.5,258830.19,0,0,2513.6228 -10627,13078,23800,-9,-9,-9,1,1,0,53,3,0,1,0,1,-9,3,3,0,0,1,8.5722713,8.2499676,0,4,0,0,0,-9,0,-1035.5443,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,20,9,28,28,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0085466,0,0,0,47.450001,20.75,-9,-9,5,1,1,1,0,8,4,1,357.5,258830.19,0,0,2513.6228 -10628,13079,23801,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,1,1,0,0,5,7.8424058,7.7482147,0,3,0,0,0,-9,0,-983.79358,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,25,15,1,0,-9,0,9.4131498,9.4131498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,6,4,1,1254,138982.03,0,0,1481.197 -10629,13080,23802,23803,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.2426901,8.3814421,1,0,-9,49,0,1,-175.86917,0,0,0,69,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5619822,8.194665,0,0,57.73,54.529999,51.830002,57.200001,7,1,1,0,0,6,4,1,480.5,831188.13,0,0,3608.5576 -10629,13080,23803,23802,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.8393669,7.5176258,1,0,-9,49,0,-1,38.868877,0,0,0,70,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6804047,7.6353769,0,0,51.830002,57.200001,57.73,54.529999,6,1,1,0,0,6,4,1,480.5,831188.13,0,0,3608.5576 -10630,13081,23804,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,2,0,7.0867758,6.7937932,3,0,0,0,-9,0,-1020.3689,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8764377,0,0,26.76,46.349998,-9,-9,4,1,1,0,0,2,2,1,300,308399.53,0,0,448.60181 -10631,13082,23805,23806,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,9.3929329,9.3639956,0,2,0,-9,23,0,1,-22.681608,0,0,0,45,1,5,1,2,1,2019,1,1,11,0,43,41,15,1,0,1,0,28.39052,28.39052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.700001,39.52,61.490002,4,1,1,0,0,8,5,1,523.33331,1714109,0,0,5322.7412 -10631,13082,23806,23805,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,5,8.5178127,8.8324766,0,2,0,-9,23,0,-1,1.8639148,0,0,0,46,1,3,1,2,2,2019,1,2,12,0,25,27,15,1,0,1,0,25.998026,25.998026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.52,61.490002,47.32,52.700001,5,1,1,0,0,8,5,1,523.33331,1714109,0,0,5322.7412 -10631,13082,23807,-9,23806,23805,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1078.0973,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,8,5,1,523.33331,1714109,0,0,5322.7412 -10631,13083,23808,-9,23806,23805,3,1,0,18,2,0,2,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1067.1189,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7276468,0,0,0,37.650002,44.91,-9,-9,4,1,1,0,0,8,5,1,405,-17057.131,0,0,371.67947 -10632,13084,23809,-9,-9,-9,1,1,0,70,2,0,0,0,3,-9,4,3,0,0,4,0,6.6760125,7.0057521,3,0,0,0,-9,0,-970.6637,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5295973,6.8147254,0,0,58.720001,51.290001,-9,-9,2,1,1,0,0,2,2,1,365,256372.95,0,0,405.16443 -10633,13085,23810,-9,-9,-9,1,1,1,81,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,32,-65.63063,0,0,0,-9,-9,-9,-9,3,3,2019,3,2,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,52.880001,53.75,54.919998,6,1,1,0,0,5,4,1,331,91106.273,0,0,-654.24957 -10633,13086,23811,-9,-9,-9,2,1,1,49,2,0,0,0,3,-9,1,1,0,0,4,8.7088051,8.7540665,0,1,0,-9,10,0,-32,105.13467,0,0,0,-9,-9,-9,-9,2,2,2019,2,1,12,1,30,30,15,1,0,-9,0,21.340048,21.340048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.75,54.919998,52.599998,52.880001,5,1,1,0,0,5,4,1,488,331638.16,0,0,2421.9214 -10634,13087,23812,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,2,1,0,0,4,7.6393652,7.3959651,0,3,0,0,0,-9,0,-921.70801,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,0,15,1,0,-9,0,8.0080624,8.0080624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.110001,56.110001,-9,-9,6,1,1,0,0,4,3,0,1758,-25423.566,0,0,1280.3895 -10635,13088,23813,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,1,1,0,0,2,0,6.5477118,6.1127181,3,0,0,0,-9,0,-888.46826,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9217572,6.0484715,0,0,34.200001,49.450001,-9,-9,3,1,1,0,1,9,2,0,1153,327490.84,0,0,1715.9275 -10636,13089,23814,-9,23815,23817,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.2928,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,458.5,112994.82,0,0,2922.4734 -10636,13089,23815,23817,-9,-9,2,1,0,40,1,0,2,0,2,-9,1,1,0,0,5,7.5927386,7.336194,0,2,0,-9,20,0,-6,-71.66391,0,0,1,46,2,4,1,3,2,2019,1,1,6,0,30,45,15,1,0,1,0,5.4966993,5.4966993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,48.869999,58.549999,6,1,1,0,0,2,4,1,458.5,112994.82,0,0,2922.4734 -10636,13089,23816,-9,23815,23817,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.7311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,4,1,458.5,112994.82,0,0,2922.4734 -10636,13089,23817,23815,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.7651691,8.8114529,0,2,0,-9,22,0,6,-102.34172,0,0,0,40,2,5,1,3,3,2019,1,2,16,4,47,45,15,1,1,1,0,14.997111,14.997111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.060001,57.759998,6,1,1,0,0,2,4,1,458.5,112994.82,0,0,2922.4734 -10637,13090,23818,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,5,8.7499437,8.8910065,0,3,0,-9,0,-9,0,-1012.0906,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,42,0,15,1,0,-9,0,18.751822,18.751822,0,0,0,0,0,0,0,0,1,1,0,6.3922772,0,0,0,57.060001,57.759998,-9,-9,2,1,1,0,0,11,5,1,394,-180838.84,0,0,2096.7727 -10638,13091,23819,23820,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,8.6890821,8.5155182,5.9363785,1,0,-9,5,0,0,44.188087,0,0,0,56,2,2,1,1,1,2019,1,2,14,2,46,41,15,1,0,1,0,12.958699,12.958699,0,0,0,0,0,0,0,0,0,0,0,6.7033854,6.5935073,0,0,51.169998,30.620001,54.200001,36.060001,3,1,1,0,0,9,5,1,2016,848503.25,0,0,4196.9619 -10638,13091,23820,23819,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,2,7.7800021,7.7578049,0,1,0,-9,5,0,0,68.150711,0,0,0,56,2,2,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,7.4259372,7.4259372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,36.060001,51.169998,30.620001,3,1,1,0,0,9,5,1,2016,848503.25,0,0,4196.9619 -10639,13092,23821,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,2,0,7.1254592,7.2238007,3,0,0,0,-9,0,-865.66382,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,9.0807924,0,0,1,1,0,0,7.3245816,0,0,51.689999,37.209999,-9,-9,6,1,1,0,0,2,3,1,400,410004.69,0,0,-396.40952 -10639,13093,23822,-9,23821,-9,2,1,0,48,3,0,0,0,2,-9,2,1,0,0,4,7.9062142,7.8599505,0,3,0,0,0,-9,0,-865.62073,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,38,57,15,1,0,-9,1,7.7859917,7.7859917,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.092371,3,35.75,59.470001,-9,-9,3,1,1,0,0,2,3,1,872,200004.05,0,0,1267.2159 -10640,13094,23823,-9,23824,-9,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1014.1123,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,1,0,938.5,-75057.633,0,0,2266.9258 -10640,13094,23824,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1136.6787,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,33,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,79.50016,3,28.02,36.099998,-9,-9,2,1,1,0,0,1,1,0,938.5,-75057.633,0,0,2266.9258 -10640,13095,23825,-9,23824,-9,2,1,1,23,2,0,1,0,2,0,7,2,0,0,4,6.3039737,6.0096273,0,3,0,0,0,-9,0,-1121.913,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.599998,61.599998,-9,-9,6,1,1,0,0,1,2,0,416,64535.156,0,0,846.81824 -10641,13096,23826,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,0,3.7636919,4.0535421,3,0,0,0,-9,0,-929.36584,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2375562,4.2718039,0,0,62.029999,41.709999,-9,-9,6,1,1,0,0,6,1,1,2304,57768.387,0,0,1408.4033 -10642,13097,23827,23828,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,0,2,5.6799903,5.9743099,0,1,0,-9,6,0,3,100.28535,0,0,0,60,2,3,1,3,3,2019,1,2,14,3,30,32,15,1,0,1,0,1.3531717,1.3531717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.48,33.799999,46.080002,57.200001,5,1,1,0,0,11,3,1,1088.5,238197.63,0,0,1219.423 -10642,13097,23828,23827,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.7284002,7.6903958,0,1,0,-9,6,0,-3,132.689,0,0,0,63,2,2,1,3,3,2019,1,1,9,0,32,32,15,1,0,1,0,9.2023144,9.2023144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,44.48,33.799999,6,1,1,0,0,11,3,1,1088.5,238197.63,0,0,1219.423 -10643,13098,23829,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,0,3,8.2876415,8.5051737,0,3,0,0,0,-9,0,-957.92914,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,9,37,37,15,1,1,-9,0,16.208006,16.208006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.950001,59.169998,-9,-9,6,1,1,0,0,12,4,1,1285,-89367.75,0,0,1715.5576 -10644,13099,23830,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,0,5,8.4556904,8.2797661,0,3,0,0,0,-9,0,-877.60199,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,11,2,37,52,15,1,0,-9,0,12.882248,12.882248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.220001,52.09,-9,-9,6,1,1,0,0,9,4,0,467,97162.695,0,0,-728.16168 -10645,13100,23831,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,7.6209002,7.7478952,3,0,0,0,-9,0,-1018.0775,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,10,0,0,15,4,1,-9,0,0,0,1,0,0,5.3700151,0,0,0,0,1,1,0,0,7.7117882,0,0,16.790001,35.220001,-9,-9,5,1,1,0,0,9,3,1,2572,869680.13,0,0,2111.3247 -10646,13101,23832,23833,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.7122693,7.6569209,0,1,0,-9,14,0,1,-2.1192653,-9,0,0,51,2,4,1,3,3,2019,1,2,12,0,33,0,15,1,0,1,0,8.2151003,8.2151003,0,0,0,0,0,0,0,7,0,0,0,0,0,8.4228239,3,57.16,56.150002,51.830002,57.200001,5,1,1,0,0,6,5,1,490,1175816,0,0,4571.9204 -10646,13101,23833,23832,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,8.3996506,8.9624224,0,1,0,-9,14,0,-1,-44.400311,-9,0,0,52,2,4,1,2,2,2019,1,1,8,0,44,0,15,1,0,1,0,19.120173,19.120173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,6,5,1,490,1175816,0,0,4571.9204 -10646,13102,23834,-9,23832,23833,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,5,8.6497583,8.6859045,0,3,0,0,0,-9,0,-1040.3926,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,1,16.732956,16.732956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,-9,-9,7,1,1,0,0,6,5,1,169,-82439.031,0,0,1008.9889 -10647,13103,23835,23837,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,8.5989552,8.5281935,0,2,0,-9,10,0,-5,58.820427,0,0,1,45,3,4,1,2,2,2019,1,1,12,0,32,27,15,1,0,1,0,18.5895,18.5895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.759998,51.400002,41.169998,59.310001,4,1,1,0,0,10,4,1,629.25,241869.91,0,0,3808.6963 -10647,13103,23836,-9,23835,23837,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1117.3491,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,629.25,241869.91,0,0,3808.6963 -10647,13103,23837,23835,-9,-9,1,1,1,45,1,0,2,0,3,-9,2,1,0,0,4,8.1442289,8.2903461,0,2,0,-9,10,0,5,-1.1774424,0,0,0,40,1,3,1,-9,2,2019,1,2,7,0,10,40,15,1,0,1,0,34.790134,34.790134,0,0,0,0,0,0,0,0,1,1,0,1.2663325,0,0,0,41.169998,59.310001,46.759998,51.400002,6,1,1,0,0,10,4,1,629.25,241869.91,0,0,3808.6963 -10647,13103,23838,-9,23835,23837,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.8273,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,10,4,1,629.25,241869.91,0,0,3808.6963 -10648,13104,23839,23840,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,-1,-5.8980837,0,0,0,73,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9700809,0,0,0,57.16,56.150002,61.830002,49.950001,7,1,1,0,0,11,4,1,878,1153765.9,0,0,3122.2625 -10648,13104,23840,23839,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.1929531,8.3437166,1,0,-9,10,0,1,290.8667,0,0,0,72,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.317574,8.4910946,0,0,61.830002,49.950001,57.16,56.150002,6,1,1,0,0,11,4,1,878,1153765.9,0,0,3122.2625 -10649,13105,23841,23844,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,8.7838593,8.5747347,0,2,0,-9,9,0,-3,12.676634,0,0,1,41,2,1,3,1,1,2019,2,1,5,0,52,49,15,1,0,3,0,13.817673,13.817673,0,0,0,0,0,0,0,0,1,1,0,4.9896846,0,0,0,48.869999,58.549999,56.349998,28.34,6,1,1,0,0,7,4,1,325.5,289500.56,0,0,4222.9937 -10649,13105,23842,-9,23841,23844,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.51318,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,325.5,289500.56,0,0,4222.9937 -10649,13105,23843,-9,23841,23844,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.3234,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,4,1,325.5,289500.56,0,0,4222.9937 -10649,13105,23844,23841,-9,-9,1,1,1,41,1,0,2,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,9,0,3,42.777714,0,0,0,38,1,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8999596,0,0,0,56.349998,28.34,48.869999,58.549999,3,1,1,0,0,7,4,1,325.5,289500.56,0,0,4222.9937 -10650,13106,23845,-9,23849,23846,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.75586,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,7,2,1,919.79999,429899.75,0,0,1140.165 -10650,13106,23846,23849,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,0,4,7.2902813,7.2900782,0,2,0,-9,6,0,-2,-89.608604,0,0,0,47,1,2,1,2,2,2019,1,1,9,0,30,40,15,1,0,1,0,4.655581,4.655581,0,0,0,0,0,0,0,0,1,1,0,3.9972458,0,0,0,63.389999,39.560001,39.32,26.93,2,1,1,0,0,7,2,1,919.79999,429899.75,0,0,1140.165 -10650,13106,23847,-9,23849,23846,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.28674,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,7,2,1,919.79999,429899.75,0,0,1140.165 -10650,13106,23848,-9,23849,23846,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.5105,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,7,2,1,919.79999,429899.75,0,0,1140.165 -10650,13106,23849,23846,-9,-9,1,1,0,47,1,0,3,0,1,-9,1,1,0,0,2,0,0,0,2,0,-9,6,0,2,-107.24524,0,0,0,45,2,4,1,1,1,2019,1,2,22,9,0,13,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,26.93,63.389999,39.560001,5,4,2,0,0,7,2,1,919.79999,429899.75,0,0,1140.165 -10651,13107,23850,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,1,1,0,0,4,7.4034066,7.1122441,0,3,0,0,0,-9,0,-986.19403,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,20,0,15,1,0,-9,0,8.8334589,8.8334589,0,0,0,0,0,0,0,0,1,1,0,7.4585934,0,0,0,57.43,49.130001,-9,-9,6,1,1,0,0,4,3,1,436,174467.22,0,0,1168.8796 -10652,13108,23851,-9,23852,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-975.20575,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,349,-17822.43,0,0,-341.28152 -10652,13108,23852,-9,-9,-9,1,1,0,35,2,0,3,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-940.07422,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,1,2,1,0,349,-17822.43,0,0,-341.28152 -10652,13109,23853,-9,23852,-9,2,1,1,18,2,0,3,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1022.4908,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,85.984131,3,50.689999,32.93,-9,-9,5,1,1,1,1,2,1,0,347,87348.852,0,0,0 -10653,13110,23854,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,0,3,7.4792004,7.0060058,5.18678,3,0,0,0,-9,0,-1016.4606,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,23,23,15,1,0,-9,0,6.7120547,6.7120547,0,0,0,0,0,0,0,0,1,1,0,0,5.3876014,0,0,50.259998,49.779999,-9,-9,5,1,1,0,0,12,3,1,517,310319.94,0,0,1197.5857 -10654,13111,23855,-9,23856,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-996.3587,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,13,3,0,2021.3334,-58331.18,0,0,3314.9561 -10654,13111,23856,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,0,4,8.0927753,8.0419321,0,4,0,0,0,-9,0,-981.19171,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,30,25,15,1,0,-9,0,11.658729,11.658729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,13,3,0,2021.3334,-58331.18,0,0,3314.9561 -10654,13111,23857,-9,23856,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1053.1617,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,13,3,0,2021.3334,-58331.18,0,0,3314.9561 -10655,13112,23858,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-956.29419,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.370001,44.869999,-9,-9,4,1,1,0,1,4,1,0,4872,22324.422,0,0,13.635901 -10656,13113,23859,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1052.5485,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,24,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.509998,23.049999,-9,-9,2,1,1,0,1,8,1,0,5006,311562.56,0,0,1528.0203 -10657,13114,23860,-9,23862,-9,2,1,0,17,2,0,2,1,3,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1034.2825,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.42746618,3,29.610001,41.16,-9,-9,2,1,1,0,1,2,1,0,1182,-154488.31,0,0,1887.3888 -10657,13114,23861,-9,23862,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-969.87646,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,1182,-154488.31,0,0,1887.3888 -10657,13114,23862,-9,-9,-9,1,1,0,41,3,0,2,0,3,-9,6,3,0,1,4,0,0,0,4,0,-9,0,-9,0,-1101.6213,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.950001,33.82,-9,-9,7,1,1,0,0,2,1,0,1182,-154488.31,0,0,1887.3888 -10658,13115,23863,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-908.79688,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.990002,6.1199999,-9,-9,5,1,1,0,0,13,1,0,432,-11544.487,0,0,1248.9543 -10659,13116,23864,23865,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,2,6.6073093,8.5274706,8.5084305,1,0,-9,8,0,-2,5.9335361,0,0,0,68,1,4,3,2,3,2019,4,2,14,3,3,3,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.280859,8.5035524,0,0,52.599998,26.209999,51.529999,51.799999,5,1,1,0,0,9,4,1,305,4234545,0,0,3866.8933 -10659,13116,23865,23864,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.3194776,7.6616774,1,0,-9,8,0,2,17.009594,0,0,0,66,1,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7557118,7.4334221,0,0,51.529999,51.799999,52.599998,26.209999,6,1,1,0,0,9,4,1,305,4234545,0,0,3866.8933 -10660,13117,23866,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1031.4102,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.521122,3,62.900002,48.630001,-9,-9,7,1,1,0,0,7,1,0,552,349162.75,0,0,1888.9236 -10661,13118,23867,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,4,7.9484658,8.0022039,6.122365,3,0,0,0,-9,0,-1015.0797,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,37,15,1,0,-9,0,7.2922959,7.2922959,0,0,0,0,0,0,0,0,1,1,0,0,6.3931379,0,0,57.169998,50.610001,-9,-9,6,1,1,0,0,2,4,1,1309,475551.69,0,0,1037.9568 -10662,13119,23868,23869,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,0,4,7.2578015,7.6070061,6.2177572,2,0,-9,5,0,-1,-102.86198,0,0,0,57,2,3,1,-9,-9,2019,1,1,19,7,22,22,15,1,1,1,0,7.6358142,7.6358142,0,0,0,0,0,0,0,0,1,1,0,5.9475102,0,0,0,40.580002,60.950001,58.32,50.220001,3,4,2,0,0,7,5,1,788,676301.13,0,0,3864.2961 -10662,13119,23869,23868,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,0,3,9.1589909,8.9292431,0,2,0,-9,5,0,1,-108.87076,0,0,0,56,2,4,1,2,2,2019,1,2,10,0,74,35,15,1,0,1,0,13.490661,13.490661,0,0,0,0,0,0,0,0,1,1,0,5.1600013,0,0,0,58.32,50.220001,40.580002,60.950001,6,1,1,0,0,7,5,1,788,676301.13,0,0,3864.2961 -10662,13119,23870,-9,23868,23869,4,1,0,16,2,0,1,1,-9,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-958.77216,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.740002,60.869999,-9,-9,6,1,1,0,0,7,5,1,788,676301.13,0,0,3864.2961 -10662,13120,23871,-9,23868,23869,3,1,0,25,2,0,1,0,2,-9,2,1,0,0,4,7.9157844,7.75319,0,3,0,0,0,-9,0,-1001.353,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,90,50,15,1,1,-9,1,3.093823,3.093823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,60.259998,-9,-9,2,1,1,0,0,7,3,1,1165,53873.461,0,0,-550.55182 -10663,13121,23872,-9,23873,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1036.1362,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,2,0,453.5,-126055.91,0,0,1403.3972 -10663,13121,23873,-9,-9,-9,1,1,0,22,2,1,1,0,2,-9,2,1,0,0,3,6.326973,6.3965406,0,4,0,-9,0,-9,0,-1051.2217,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,0,15,1,0,-9,0,4.5832176,4.5832176,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.341902,3,28.57,61.360001,-9,-9,4,1,1,0,0,12,2,0,453.5,-126055.91,0,0,1403.3972 -10664,13122,23874,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,2,7.9959974,8.2204304,0,3,0,-9,0,1,0,-968.61969,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,38,38,15,1,1,-9,0,11.076497,11.076497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.370001,49.07,-9,-9,4,1,1,0,0,11,4,1,665,61231.582,0,0,1197.2495 -10664,13123,23875,-9,23874,-9,2,1,1,30,3,0,0,0,2,-9,2,1,0,0,4,7.2887383,7.2840786,0,3,0,0,0,-9,0,-1054.8976,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,45,48,15,1,0,-9,1,3.7134709,3.7134709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,3,1,362,-84293.461,0,0,922.88562 -10665,13124,23876,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1075.1744,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.1807227,0,.20072521,0,9.0132151,0,0,1,1,0,0,0,0,0,60.759998,9.25,-9,-9,7,1,1,0,0,12,1,0,167,128543.99,0,0,2487.5483 -10666,13125,23877,23880,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.6666794,8.8865309,0,2,0,-9,21,0,-4,-55.03529,0,0,0,46,2,4,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,19.637938,19.637938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,41.759998,57.810001,5,1,1,0,0,7,4,1,619,388928.41,0,0,3865.5903 -10666,13125,23878,-9,23880,23877,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1070.2661,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,7,4,1,619,388928.41,0,0,3865.5903 -10666,13125,23879,-9,23880,23877,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.952,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,619,388928.41,0,0,3865.5903 -10666,13125,23880,23877,-9,-9,1,1,0,46,1,0,2,0,2,-9,1,1,0,0,4,7.8823705,7.7965937,0,2,0,-9,21,0,4,116.81359,0,0,0,42,1,4,1,2,2,2019,1,2,15,3,15,16,15,1,0,1,0,14.787544,14.787544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.759998,57.810001,49.860001,55.310001,6,1,1,0,0,7,4,1,619,388928.41,0,0,3865.5903 -10667,13126,23881,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1061.3701,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.3390055,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,10,1,1,695,-6778.4355,0,0,-231.92961 -10668,13127,23882,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-996.36963,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.919998,51.82,-9,-9,7,1,1,0,0,1,1,0,887,141429.41,0,0,1204.4816 -10669,13128,23883,-9,23885,23884,1,1,1,48,3,0,0,0,2,-9,1,1,0,0,4,8.7027216,8.6731339,0,3,0,0,0,-9,0,-985.42072,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,60,60,15,1,1,-9,1,11.70227,11.70227,0,0,0,0,0,0,0,7,1,1,0,7.4790034,0,9.4522495,3,38.98,44.110001,-9,-9,3,1,1,0,0,2,5,0,576,112111.67,0,0,2776.7271 -10669,13129,23884,23885,-9,-9,3,1,1,87,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,6,0,0,0,0,81,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,15.25287,0,0,0,0,0,1,1,0,0,0,0,0,54,45,50.130001,35.220001,6,1,1,0,0,2,1,0,1108.5,131437.59,0,0,2278.5156 -10669,13129,23885,23884,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,6,0,-6,0,0,0,0,87,3,3,3,-9,-9,2019,4,3,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.194466,1,50.130001,35.220001,54,45,7,1,1,0,0,2,1,0,1108.5,131437.59,0,0,2278.5156 -10670,13130,23886,23889,-9,-9,2,1,0,45,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,28,0,3,-22.751589,0,0,0,42,2,4,1,3,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.75,53.650002,51,56,4,2,3,0,0,4,2,1,1159,389965.25,0,0,2877.9199 -10670,13130,23887,-9,23886,23889,7,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.12781,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,1159,389965.25,0,0,2877.9199 -10670,13130,23888,-9,23886,23889,5,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.8146,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,2,1,1159,389965.25,0,0,2877.9199 -10670,13130,23889,23886,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,8.347497,7.6770091,0,2,0,-9,28,0,-3,-122.93181,0,0,0,45,3,4,3,3,3,2019,2,2,9,1,49,37,15,1,0,3,0,8.591094,8.591094,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,39.75,53.650002,5,2,3,0,0,4,2,1,1159,389965.25,0,0,2877.9199 -10670,13130,23890,-9,23886,23889,6,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-996.40625,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,4,2,1,1159,389965.25,0,0,2877.9199 -10670,13131,23891,-9,23886,23889,3,1,0,22,2,0,3,0,2,-9,1,1,0,0,4,7.451282,7.716342,0,3,0,0,0,-9,0,-891.72174,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,43,25,15,1,0,-9,1,5.5600734,5.5600734,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,58,-9,-9,5,2,3,0,0,4,3,1,843,-68710.109,0,0,390.68375 -10670,13132,23892,-9,23886,23889,4,1,0,20,2,0,3,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-946.09125,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.3691087,0,0,0,70.290001,42.139999,-9,-9,1,2,3,1,0,4,1,1,294,44336.297,0,0,-414.71536 -10671,13133,23893,23894,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,4.3891387,4.4008803,1,0,-9,9,0,0,-26.554367,0,0,0,74,3,2,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,48.348408,1.786234,0,0,0,1,1,0,0,4.12392,0,0,34.049999,44.25,45.73,45.450001,5,1,1,0,0,13,2,1,942,369271.69,0,0,1588.9009 -10671,13133,23894,23893,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,6.4530196,7.0686941,1,0,-9,9,0,0,127.66598,0,0,0,74,3,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8746905,0,0,45.73,45.450001,34.049999,44.25,5,1,1,0,0,13,2,1,942,369271.69,0,0,1588.9009 -10672,13134,23895,23896,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,0,4,7.5053821,7.4746737,0,2,0,-9,6,0,-3,-60.065247,0,0,1,33,2,3,1,-9,-9,2019,1,1,11,2,26,0,15,1,0,1,0,6.0791712,6.0791712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,30.280001,50.970001,5,1,1,0,0,11,5,0,416,214879.05,0,0,5440.7275 -10672,13134,23896,23895,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,0,3,8.9187288,8.9911337,0,2,0,-9,6,0,3,-3.868094,0,0,0,30,2,4,1,2,2,2019,1,2,15,4,51,0,15,1,1,1,0,19.725042,19.725042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.280001,50.970001,48,57,3,1,1,0,0,11,5,0,416,214879.05,0,0,5440.7275 -10672,13134,23897,-9,23895,23896,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.92883,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,0,416,214879.05,0,0,5440.7275 -10673,13135,23898,-9,23900,23899,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.93805,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,417.5,124500.21,0,0,4142.8516 -10673,13135,23899,23900,-9,-9,1,1,1,33,1,0,2,0,2,-9,2,1,0,1,3,8.2225399,8.4068623,0,2,0,-9,6,0,1,-26.88884,0,0,0,32,2,2,1,3,2,2019,1,2,14,2,43,38,15,1,0,1,0,9.2924347,9.2924347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,33.07,57.080002,5,1,1,0,0,5,3,1,417.5,124500.21,0,0,4142.8516 -10673,13135,23900,23899,-9,-9,2,1,0,32,1,0,2,0,2,-9,2,1,0,1,2,7.6132045,7.657373,0,2,0,-9,6,0,-1,-5.610405,0,0,1,33,2,3,1,-9,-9,2019,1,1,23,11,32,15,15,1,1,1,0,7.7513819,7.7513819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,57.080002,38.509998,59.43,4,1,1,0,0,5,3,1,417.5,124500.21,0,0,4142.8516 -10673,13135,23901,-9,23900,23899,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.62616,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,417.5,124500.21,0,0,4142.8516 -10674,13136,23902,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,7.814981,7.640409,3,0,0,0,-9,0,-1068.056,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2514272,7.944489,0,0,47.959999,23.959999,-9,-9,4,1,1,0,0,9,3,1,2501,579415.81,0,0,2895.9314 -10675,13137,23903,23904,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-5,-38.864784,0,0,0,72,3,2,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.549999,47.380001,48.68,32.150002,6,1,1,0,0,11,3,1,1390,904798.5,0,0,2791.7368 -10675,13137,23904,23903,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,2,0,7.6593981,7.8133788,1,0,-9,50,0,5,-109.28629,0,0,0,67,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.6670632,0,0,48.68,32.150002,52.549999,47.380001,6,1,1,0,0,11,3,1,1390,904798.5,0,0,2791.7368 -10676,13138,23905,-9,-9,-9,3,1,0,24,2,0,1,0,1,-9,2,1,0,0,3,8.6653166,8.3915176,0,3,0,0,0,-9,0,-880.22272,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,37,38,15,1,0,-9,1,16.529024,16.529024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.650002,57.360001,-9,-9,6,2,3,0,0,8,5,0,532,-120077.55,0,0,2110.2524 -10677,13139,23906,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1102.4631,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.639999,32.91,-9,-9,2,1,1,0,0,10,1,0,459,-98564.641,0,0,1921.6174 -10678,13140,23907,23908,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,0,4,8.5837784,8.8157129,0,2,0,-9,5,0,4,-66.343063,0,0,0,33,1,4,1,-9,-9,2019,1,1,10,0,35,37,15,1,0,1,0,20.325439,20.325439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,2,5,1,626.66669,98912.453,0,0,3586.8804 -10678,13140,23908,23907,-9,-9,1,1,0,33,1,1,1,0,1,-9,2,1,0,0,4,8.2317781,8.0187626,0,2,0,-9,5,0,-4,2.6809225,0,0,1,37,1,4,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,10.741465,10.741465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,2,5,1,626.66669,98912.453,0,0,3586.8804 -10678,13140,23909,-9,23908,23907,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.06854,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,1,626.66669,98912.453,0,0,3586.8804 -10679,13141,23910,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,1,1,0,0,4,8.331954,7.9279218,0,3,0,0,0,-9,0,-973.20544,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,35,15,1,0,-9,0,13.499643,13.499643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,2,4,1,356,118342.52,0,0,805.58832 -10680,13142,23911,23912,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,0,0,0,1,0,-9,6,0,2,-84.783272,0,0,0,31,1,4,1,1,1,2019,1,2,6,0,0,41,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.64817452,0,0,0,57.16,56.150002,48,57,6,2,3,0,0,8,3,0,530.5,344885.44,0,0,1224.2107 -10680,13142,23912,23911,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,8.303709,8.5929604,0,1,0,-9,6,0,-2,31.880697,0,0,1,33,1,4,1,-9,-9,2019,1,1,11,2,45,35,15,1,0,1,0,9.9270735,9.9270735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,57.16,56.150002,5,2,3,0,0,8,3,0,530.5,344885.44,0,0,1224.2107 -10681,13143,23913,23915,-9,-9,2,1,0,31,1,1,1,0,1,-9,2,1,0,0,4,8.2939053,8.3766499,0,2,0,-9,6,0,-1,105.20548,0,0,1,32,1,4,1,-9,-9,2019,1,1,11,1,27,62,15,1,0,1,0,14.629034,14.629034,0,0,0,0,0,0,0,0,1,1,0,7.9480038,0,0,0,51.830002,57.200001,40.830002,59.68,6,1,1,0,0,12,5,1,1266,147209.23,0,0,4523.4453 -10681,13143,23914,-9,23913,23915,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-884.93939,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,1266,147209.23,0,0,4523.4453 -10681,13143,23915,23913,-9,-9,1,1,1,32,1,1,1,0,1,-9,2,1,0,0,4,8.9162931,8.9882441,0,2,0,-9,6,0,1,19.926748,0,0,0,31,1,4,1,2,2,2019,1,2,6,0,40,44,15,1,0,1,0,24.111708,24.111708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.830002,59.68,51.830002,57.200001,7,1,1,0,0,12,5,1,1266,147209.23,0,0,4523.4453 -10682,13144,23916,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,7.3370972,7.5214105,3,0,0,0,-9,0,-967.06433,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.152072,6.4106126,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,11,3,1,566,433898.53,0,0,3040.4792 -10683,13145,23917,23918,-9,-9,1,1,0,60,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,43,0,1,17.555748,0,0,0,59,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8991747,0,0,0,48.869999,58.549999,54.119999,34.810001,7,1,1,0,0,1,3,1,837.5,788589.25,0,0,1070.0356 -10683,13145,23918,23917,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,0,2,0,8.1015902,7.807169,1,0,-9,8,0,-1,30.255138,0,0,0,60,3,4,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.306808,7.898468,0,0,54.119999,34.810001,48.869999,58.549999,5,1,1,0,0,1,3,1,837.5,788589.25,0,0,1070.0356 -10684,13146,23919,23920,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.5403996,8.5547447,0,1,0,-9,18,0,12,26.706974,0,0,0,40,2,2,1,-9,2,2019,1,1,8,0,42,48,15,1,0,1,0,12.714302,12.714302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,29.059999,45.59,6,1,1,0,0,7,5,1,2065.5,5786890.5,0,0,3207.1094 -10684,13146,23920,23919,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,2,7.7693052,8.080122,0,1,0,-9,18,0,-12,-79.791107,0,0,1,52,2,4,1,3,3,2019,1,2,27,10,38,38,15,1,1,1,0,10.186952,10.186952,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,29.059999,45.59,54.200001,57.490002,4,1,1,0,0,7,5,1,2065.5,5786890.5,0,0,3207.1094 -10685,13147,23921,-9,-9,-9,1,1,1,43,3,0,0,0,1,-9,97,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1000.0822,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,52,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0306964,0,0,0,51.970001,53.150002,-9,-9,6,1,1,0,1,2,1,1,555,126397.8,0,0,903.2821 -10686,13148,23922,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-1002.6932,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,24.01,-9,-9,6,3,4,0,0,8,1,0,403,50569.438,0,0,1631.1482 -10687,13149,23923,23924,-9,-9,3,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,8.5555305,8.2069702,0,2,0,-9,7,0,0,-127.10595,0,0,0,49,2,1,3,-9,-9,2019,2,1,12,2,37,37,15,1,0,3,0,13.280402,13.280402,0,0,0,0,0,0,0,0,0,0,0,3.5719459,0,0,0,47,50,16.84,49.689999,5,1,1,0,0,4,3,1,1564.5,320464.06,0,0,969.49908 -10687,13149,23924,23923,-9,-9,1,1,1,49,1,0,1,0,2,-9,3,3,0,0,1,0,0,0,2,0,-9,7,0,0,-79.434746,-9,0,0,49,2,3,1,-9,-9,2019,3,3,31,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.86042398,0,0,0,16.84,49.689999,47,50,2,1,1,1,0,4,3,1,1564.5,320464.06,0,0,969.49908 -10688,13150,23925,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,4,3,0,0,3,0,7.3979998,7.711781,3,0,0,0,-9,0,-948.87286,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,7.3184204,41.713657,3,55.349998,36.43,-9,-9,6,1,1,0,0,6,3,1,805,272866.88,0,0,1838.226 -10689,13151,23926,23927,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.4259515,7.609633,1,0,-9,8,0,-6,5.3145719,0,0,0,73,1,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0865512,7.8934517,0,0,59.32,44.130001,64.160004,35.240002,6,1,1,0,0,2,4,1,711.5,1488188,0,0,3007.4766 -10689,13151,23927,23926,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,7.6658411,8.0387716,1,0,-9,8,0,6,24.366766,0,0,0,67,1,4,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4096293,7.8030958,0,0,64.160004,35.240002,59.32,44.130001,6,1,1,0,0,2,4,1,711.5,1488188,0,0,3007.4766 -10690,13152,23928,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,4,3,0,0,3,0,7.6540976,7.4148426,3,0,0,0,-9,0,-1028.7109,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,12,0,37,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8206892,7.4600039,0,0,22.91,39.290001,-9,-9,2,1,1,0,0,6,3,1,170,200788.42,0,0,1256.8196 -10691,13153,23929,23930,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,9.3993711,9.2803793,0,1,0,-9,6,0,-1,13.94303,0,0,0,56,1,5,1,1,1,2019,1,1,10,1,35,36,15,1,0,1,0,35.800774,35.800774,0,0,0,0,0,0,0,0,0,0,0,5.2761021,0,0,0,52.310001,58.290001,57.060001,57.759998,6,1,1,0,0,6,5,0,804,1598567.8,0,0,11298.621 -10691,13153,23930,23929,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,5,9.8040352,9.7536917,0,1,0,-9,34,0,1,-2.8109,0,0,0,55,1,4,1,2,3,2019,1,2,7,0,58,58,15,1,0,1,0,35.865585,35.865585,0,0,0,0,0,0,0,0,0,0,0,4.5576715,0,0,0,57.060001,57.759998,52.310001,58.290001,6,1,1,0,0,6,5,0,804,1598567.8,0,0,11298.621 -10692,13154,23931,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,0,3,0,8.1000338,8.0252953,3,0,0,0,-9,0,-1094.4569,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1612339,7.8790016,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,4,4,1,389,469797.31,0,0,2419.8992 -10693,13155,23932,23933,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.7960196,6.7988219,1,0,-9,51,0,0,61.165535,0,0,0,71,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.68576,0,0,59.110001,36.290001,59.150002,40.209999,6,1,1,0,0,4,2,1,1597.5,443175.75,0,0,1047.8605 -10693,13155,23933,23932,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,4.6623898,4.5063844,1,0,-9,51,0,0,30.005013,0,0,0,71,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.8409061,0,0,59.150002,40.209999,59.110001,36.290001,6,1,1,0,0,4,2,1,1597.5,443175.75,0,0,1047.8605 -10694,13156,23934,23935,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,0,3,8.5172253,8.5987911,0,1,0,-9,6,0,5,33.815552,0,0,0,59,2,3,1,-9,-9,2019,1,1,10,1,40,80,15,1,0,1,0,14.397426,14.397426,0,0,0,0,0,0,0,0,1,1,0,2.0658245,0,0,0,52,47,55.970001,38.869999,5,1,1,0,0,2,4,1,2843.5,304539.03,0,0,3541.1633 -10694,13156,23935,23934,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.6888838,8.1483049,4.9833546,1,0,-9,6,0,-5,58.364788,0,0,0,64,3,3,1,3,-9,2019,1,2,12,1,30,30,15,1,0,1,0,8.9164734,8.9164734,0,0,0,0,0,0,0,0,1,1,0,0,4.9260173,0,0,55.970001,38.869999,52,47,2,1,1,0,0,2,4,1,2843.5,304539.03,0,0,3541.1633 -10695,13157,23936,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,0,3,8.3749056,8.3008451,0,3,0,0,0,-9,0,-1052.5055,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,35,35,15,1,1,-9,0,10.086982,10.086982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.459999,56.700001,-9,-9,3,1,1,0,1,6,4,1,84,192746.98,0,0,1133.8871 -10696,13158,23937,23938,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.9585028,6.9150825,1,0,-9,39,0,-7,-116.81007,0,0,0,73,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.883544,0,0,58.610001,40.490002,50.029999,52.619999,6,1,1,0,0,6,2,1,189,517309.59,0,0,1357.6466 -10696,13158,23938,23937,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.3493099,6.7721043,1,0,-9,8,0,7,21.671785,0,0,0,66,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0435004,6.3133302,0,0,50.029999,52.619999,58.610001,40.490002,7,1,1,0,0,6,2,1,189,517309.59,0,0,1357.6466 -10697,13159,23939,23940,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,7.3580499,7.4344735,1,0,-9,7,0,4,28.043106,0,0,0,66,3,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.927187,7.2670469,0,0,64.099998,34.299999,60.689999,53.18,5,1,1,0,0,9,2,1,1282.5,548790.88,0,0,1910.5405 -10697,13159,23940,23939,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-4,23.447115,0,0,0,70,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.59618139,0,0,0,60.689999,53.18,64.099998,34.299999,6,1,1,0,0,9,2,1,1282.5,548790.88,0,0,1910.5405 -10698,13160,23941,23942,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,9.3826017,9.2659359,0,1,0,-9,7,0,-7,2.4345,0,0,0,57,1,4,1,2,1,2019,1,1,9,0,60,50,15,1,0,1,0,18.792971,18.792971,0,0,0,0,0,0,0,0,0,0,0,6.6290359,0,0,0,54.200001,57.490002,55.790001,52.619999,7,1,1,0,0,10,5,1,318.5,1109937,0,0,4523.6289 -10698,13160,23942,23941,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,0,4,7.0288386,7.0140524,0,1,0,-9,7,0,7,.27636313,0,0,0,50,2,4,1,2,1,2019,1,2,8,0,50,60,15,1,0,1,0,2.3080854,2.3080854,0,0,0,0,0,0,0,0,0,0,0,3.5544286,0,0,0,55.790001,52.619999,54.200001,57.490002,6,1,1,0,0,10,5,1,318.5,1109937,0,0,4523.6289 -10699,13161,23943,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,7.0907001,7.4264202,3,0,0,0,-9,0,-916.51959,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1947877,7.7620392,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,3,1,517,154806.38,0,0,2241.8455 -10700,13162,23944,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,1,1,0,0,4,7.5003233,7.7032971,0,3,0,0,0,-9,0,-1042.5438,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,24,27,15,1,0,-9,0,12.124846,12.124846,0,0,0,0,0,0,0,0,0,0,0,4.6717982,0,0,0,49.41,58.279999,-9,-9,6,1,1,0,0,7,3,1,1285,901042.75,0,0,900.49847 -10701,13163,23945,23946,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.9316392,6.8588991,1,0,-9,50,0,-2,38.893749,0,0,0,79,3,3,3,3,-9,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.0557928,6.9737816,125.63588,1,46.509998,35.360001,39.139999,46.959999,5,1,1,0,0,12,2,1,1411.5,485576.38,0,0,2839.8311 -10701,13163,23946,23945,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,1,3,0,6.5004001,6.3336091,1,0,-9,50,0,2,-85.91021,0,0,0,77,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,74.056587,0,0,0,2.127713,0,1,1,0,6.0133042,6.1312962,0,0,39.139999,46.959999,46.509998,35.360001,6,1,1,0,0,12,2,1,1411.5,485576.38,0,0,2839.8311 -10702,13164,23947,-9,-9,-9,1,1,0,28,3,0,1,0,2,-9,2,1,0,0,2,7.2129517,7.1968608,0,4,0,-9,0,-9,0,-936.46875,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,24,0,15,1,0,-9,0,6.0901275,6.0901275,0,0,0,0,0,0,0,2,1,1,0,0,0,3.0523341,3,56.580002,47.389999,-9,-9,4,1,1,0,1,7,2,0,403.5,-5394.0781,0,0,1746.9424 -10702,13164,23948,-9,23947,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-930.32452,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,403.5,-5394.0781,0,0,1746.9424 -10703,13165,23949,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1033.7938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.16,39.619999,-9,-9,4,1,1,0,0,12,1,0,1183,286967.09,0,0,125.57502 -10704,13166,23950,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,5,0,7.717134,7.5655603,3,0,-9,0,1,0,-925.39868,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5158796,0,0,44.16,61.040001,-9,-9,5,1,1,0,0,13,3,1,387,206348.59,0,0,1046.9817 -10705,13167,23951,23952,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,7.6194367,7.7797756,0,1,0,-9,6,0,8,95.695763,0,0,0,48,2,3,1,-9,-9,2019,1,2,9,0,46,38,15,1,0,1,0,6.1923108,6.1923108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,52.880001,43.27,6,1,1,0,0,13,4,1,696,394327.09,0,0,2662.7192 -10705,13167,23952,23951,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.044404,7.887928,0,1,0,-9,6,0,-8,-62.581299,0,0,0,56,2,4,1,3,3,2019,1,1,16,4,36,36,15,1,1,1,0,10.864923,10.864923,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.463202,3,52.880001,43.27,54,54,6,1,1,0,0,13,4,1,696,394327.09,0,0,2662.7192 -10705,13168,23953,-9,23952,23951,3,1,1,23,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-1051.1656,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,30.450001,-9,-9,4,1,1,1,0,13,1,1,458,-94450.18,0,0,-256.2991 -10706,13169,23954,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,2,7.8282347,7.8642249,0,3,0,0,0,-9,0,-942.5072,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,30,30,15,1,0,-9,0,9.5088301,9.5088301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,30.379999,-9,-9,6,1,1,0,0,2,3,1,244,-20626.203,0,0,557.38092 -10707,13170,23955,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-972.60461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.259998,60.130001,-9,-9,5,1,1,0,0,6,1,1,536,234256.52,0,0,-439.83087 -10708,13171,23956,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-930.63818,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,6,1,1,0,0,7,1,0,736,56606.281,0,0,1655.3112 -10709,13172,23957,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,8,0,-6,-79.088692,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.27,53.82,58.150002,52.91,6,1,1,0,0,7,3,1,290,0,0,0,0 -10709,13173,23958,-9,-9,-9,2,1,0,51,2,0,0,0,3,-9,2,1,0,0,4,8.1645412,8.2130613,0,1,0,-9,8,0,6,59.145432,0,0,0,-9,-9,-9,-9,3,2,2019,2,1,7,0,40,37,15,1,0,-9,0,9.4542236,9.4542236,0,0,0,0,0,0,0,71.5,0,0,0,1.742105,0,73.061302,1,58.150002,52.91,33.27,53.82,6,1,1,0,0,7,3,1,884,294837.91,0,0,3645.4355 -10710,13174,23959,23960,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,6.4386454,6.5158319,1,0,-9,48,0,1,54.487961,0,0,0,68,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.54827541,6.2862678,0,0,59.450001,33.75,65.629997,42.66,6,1,1,0,0,4,3,1,760,1115471.8,0,0,1740.0609 -10710,13174,23960,23959,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.6815133,7.6716862,1,0,-9,48,0,-1,-183.5204,0,0,0,69,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9519334,0,3,65.629997,42.66,59.450001,33.75,7,1,1,0,0,4,3,1,760,1115471.8,0,0,1740.0609 -10711,13175,23961,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,0,4,8.4400024,8.7315855,0,3,0,0,0,-9,0,-934.57581,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,50,38,15,1,0,-9,0,13.302956,13.302956,0,0,0,0,0,0,0,0,0,0,0,4.943481,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,9,5,1,839,613338.63,0,0,3161.7927 -10712,13176,23962,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,2,1,0,0,4,7.4948931,7.448112,4.0851765,3,0,0,0,-9,0,-920.45203,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,36,24,15,1,0,-9,0,5.3755026,5.3755026,0,0,0,0,0,0,0,0,1,1,0,7.4011173,3.9954362,0,0,54,51,-9,-9,7,1,1,0,0,7,3,1,613,328602.28,0,0,3160.5935 -10712,13177,23963,-9,-9,-9,2,1,1,34,2,0,0,0,2,-9,2,1,0,0,4,8.2125874,8.007247,0,3,0,-9,0,-9,0,-940.74054,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,42,45,15,1,1,-9,0,9.3236656,9.3236656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.15,61.150002,-9,-9,1,1,1,0,0,7,4,1,191,-43478.469,0,0,2646.6946 -10713,13178,23964,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,3,8.5745363,8.2710009,0,3,0,0,0,-9,0,-968.72339,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,50,54,15,1,0,-9,0,10.349813,10.349813,0,0,0,0,0,0,0,14.5,0,0,0,3.9569576,0,13.900305,3,49.049999,42.290001,-9,-9,5,4,2,0,0,6,4,1,272,320958.31,0,0,1866.4276 -10714,13179,23965,-9,-9,23966,1,1,0,21,2,0,0,0,2,1,2,1,0,0,3,6.5484056,6.0778155,0,3,0,0,0,-9,0,-1040.4764,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,15,0,15,1,0,-9,1,3.8920827,3.8920827,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,25.65,57.400002,-9,-9,5,1,1,0,0,5,2,0,215,-94257.594,0,0,1345.7417 -10714,13180,23966,-9,-9,-9,2,1,1,44,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-946.59241,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,15.551026,3,57.57,9.5100002,-9,-9,6,1,1,0,0,5,1,0,726,-5223.814,0,0,1924.073 -10715,13181,23967,23968,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,0,5,8.8347769,8.6588202,0,2,0,-9,10,0,1,-3.4650965,0,0,0,53,1,3,1,3,2,2019,1,2,5,0,36,40,15,1,0,1,0,24.653065,24.653065,0,0,0,0,0,0,0,2,1,1,0,3.468816,0,0,3,60.02,56.419998,58.32,50.220001,6,1,1,0,0,12,5,1,3254.5,1140446.8,0,0,5473.6455 -10715,13181,23968,23967,-9,-9,2,1,0,53,1,0,2,0,1,-9,2,1,0,0,3,9.3599224,9.152338,0,2,0,-9,10,0,-1,-46.477116,0,0,0,54,1,5,1,2,2,2019,1,1,8,0,37,37,15,1,0,1,0,30.082132,30.082132,0,0,0,0,0,0,0,7,1,1,0,2.8745968,0,0,3,58.32,50.220001,60.02,56.419998,6,1,1,0,0,12,5,1,3254.5,1140446.8,0,0,5473.6455 -10716,13182,23969,-9,23973,23972,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-922.62299,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,1,0,503.39999,2167.6743,0,0,2050.2539 -10716,13182,23970,-9,23973,23972,4,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.33289,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,1,0,503.39999,2167.6743,0,0,2050.2539 -10716,13182,23971,-9,23973,23972,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1119.6743,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,1,0,503.39999,2167.6743,0,0,2050.2539 -10716,13182,23972,23973,-9,-9,1,1,1,37,1,1,3,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,3,0,2,0,0,0,0,35,2,1,3,3,3,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.45374,1,43.75,51.34,24.33,21.59,4,1,1,1,0,10,1,0,503.39999,2167.6743,0,0,2050.2539 -10716,13182,23973,23972,-9,-9,2,1,0,35,1,1,3,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,3,0,-2,0,0,0,1,37,3,2,3,-9,-9,2019,4,1,22,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.33,21.59,43.75,51.34,2,1,1,0,0,10,1,0,503.39999,2167.6743,0,0,2050.2539 -10717,13183,23974,-9,23975,23976,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.43036,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,905.5,1035424.1,0,0,6109.646 -10717,13183,23975,23976,-9,-9,2,1,0,40,1,1,2,0,1,-9,2,1,0,0,4,7.5392551,7.6483002,0,2,0,-9,8,0,-8,23.084024,0,0,1,48,1,4,1,-9,-9,2019,1,1,33,12,20,0,15,1,1,1,0,9.5536289,9.5536289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.85,67.029999,51.490002,57.57,5,1,1,0,0,7,5,1,905.5,1035424.1,0,0,6109.646 -10717,13183,23976,23975,-9,-9,1,1,1,48,1,1,2,0,1,-9,2,1,0,0,4,9.8130226,9.389986,0,2,0,-9,8,0,8,123.69446,0,0,0,40,1,4,1,3,2,2019,1,2,11,0,44,43,15,1,0,1,0,36.655815,36.655815,0,0,0,0,0,0,0,0,1,1,0,3.2919347,0,0,0,51.490002,57.57,24.85,67.029999,6,1,1,0,0,7,5,1,905.5,1035424.1,0,0,6109.646 -10717,13183,23977,-9,23975,23976,3,1,1,12,2,1,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-933.02875,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,5,1,905.5,1035424.1,0,0,6109.646 -10718,13184,23978,23979,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,7.2785382,6.9706001,1,0,-9,6,0,2,4.3000135,0,0,0,68,2,4,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1139984,0,0,43.200001,45.18,57.16,56.150002,3,1,1,0,0,5,3,1,588,433538.81,0,0,2970.436 -10718,13184,23979,23978,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.7145844,6.821444,1,0,-9,6,0,-2,-81.25045,0,0,0,70,3,2,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.63636994,7.2149215,0,0,57.16,56.150002,43.200001,45.18,6,1,1,0,1,5,3,1,588,433538.81,0,0,2970.436 -10719,13185,23980,-9,23981,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1025.2166,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,2,0,1155.5,187833.22,0,0,2653.7964 -10719,13185,23981,-9,-9,-9,1,1,0,26,2,1,1,0,2,-9,2,1,0,0,4,7.4647083,7.6195407,0,4,0,-9,0,-9,0,-1058.0138,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,25,0,15,1,0,-9,0,7.3552723,7.3552723,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.34,54.259998,-9,-9,7,1,1,0,0,9,2,0,1155.5,187833.22,0,0,2653.7964 -10720,13186,23982,23983,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,7.40448,7.8385968,0,1,0,-9,6,0,9,18.003708,0,0,0,44,2,3,1,-9,-9,2019,1,2,6,0,37,37,15,1,0,1,0,6.333169,6.333169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.529999,59.509998,38.720001,5,1,1,0,0,10,3,1,296.5,190761.72,0,0,2044.6206 -10720,13186,23983,23982,-9,-9,2,1,0,44,1,0,0,0,2,-9,1,1,0,0,3,6.5953856,7.0210633,0,1,0,-9,6,0,0,14.227854,0,0,1,53,2,4,1,2,1,2019,1,1,7,0,12,14,15,1,0,1,0,7.9629803,7.9629803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.509998,38.720001,57.73,54.529999,4,1,1,0,0,10,3,1,296.5,190761.72,0,0,2044.6206 -10721,13187,23984,-9,23985,23986,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1109.83,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,1,3,0,2058,244701.17,0,0,1591.5403 -10721,13187,23985,23986,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,2,7.7506905,7.7150321,0,2,0,-9,12,0,4,3.1998286,0,0,0,51,2,3,1,3,-9,2019,1,1,26,12,36,48,15,1,1,1,0,7.4025435,7.4025435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.68,35.189999,61.189999,42.110001,3,1,1,0,0,1,3,0,2058,244701.17,0,0,1591.5403 -10721,13187,23986,23985,-9,-9,1,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,12,0,-4,-17.981075,0,0,0,55,2,2,1,2,3,2019,1,2,1,0,96,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.255485,3,61.189999,42.110001,32.68,35.189999,6,1,1,0,0,1,3,0,2058,244701.17,0,0,1591.5403 -10722,13188,23987,23988,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,37,0,2,-18.13376,0,0,0,58,1,3,3,2,3,2019,4,2,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.3750191,0,14.039264,3,61.830002,44.419998,58.720001,43.419998,6,1,1,0,0,6,3,1,359.5,1300100.3,0,0,2322.4805 -10722,13188,23988,23987,-9,-9,2,1,0,58,1,0,0,0,1,-9,4,3,0,0,3,6.4838958,7.9991813,8.0992289,1,0,-9,37,0,-2,-136.29846,0,0,0,60,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.7843714,7.9307637,0,3,58.720001,43.419998,61.830002,44.419998,6,1,1,0,0,6,3,1,359.5,1300100.3,0,0,2322.4805 -10722,13189,23989,-9,23988,23987,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,6.8179965,7.0676055,0,3,0,0,0,-9,0,-971.96246,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,19,18,15,1,0,-9,1,5.5333767,5.5333767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.950001,-9,-9,5,1,1,0,0,6,2,1,423,-16834.531,0,0,1543.4244 -10722,13190,23990,-9,23988,23987,4,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1001.4462,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,24,9,0,45,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,55.57,-9,-9,4,1,1,0,0,6,1,1,556,-114655.54,0,0,0 -10722,13191,23991,-9,23988,23987,5,1,1,25,2,0,0,0,1,-9,2,1,0,0,5,6.8490005,6.9698243,0,3,0,0,0,-9,0,-1052.7709,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,17,17,15,1,0,-9,1,6.0869069,6.0869069,0,0,0,0,0,0,0,0,0,0,0,2.9001818,0,0,0,54.099998,59.110001,-9,-9,3,1,1,0,0,6,2,1,77,-51672.41,0,0,490.39761 -10723,13192,23992,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.7155585,7.5725203,3,0,0,0,-9,0,-947.29291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.146637,8.0191851,0,0,60.439999,46.580002,-9,-9,6,1,1,0,0,8,3,1,461,888310.13,0,0,2769.7258 -10724,13193,23993,23995,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,0,3,8.293725,8.4967918,0,2,0,-9,10,0,-1,57.455223,0,0,1,38,1,2,1,2,3,2019,1,1,12,3,31,28,15,1,0,1,0,15.346661,15.346661,0,0,0,0,0,0,0,0,1,1,0,4.0437751,0,0,0,45.459999,52.150002,51.009998,47.220001,5,1,1,0,0,6,4,1,636.25,201862.55,0,0,3688.1594 -10724,13193,23994,-9,23993,23995,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.6423,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,636.25,201862.55,0,0,3688.1594 -10724,13193,23995,23993,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,0,2,8.5827808,8.8633461,0,2,0,-9,10,0,1,4.1112075,0,0,0,37,1,3,1,2,2,2019,1,2,9,0,53,46,15,1,0,1,0,11.095339,11.095339,0,0,0,0,0,0,0,0,1,1,0,3.38361,0,0,0,51.009998,47.220001,45.459999,52.150002,6,1,1,0,0,6,4,1,636.25,201862.55,0,0,3688.1594 -10724,13193,23996,-9,23993,23995,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.20599,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,636.25,201862.55,0,0,3688.1594 -10725,13194,23997,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,4,0,6.6315284,6.3969359,3,0,0,0,-9,0,-948.64349,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8278031,6.1782155,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,2,1,242,80095.359,0,0,549.5614 -10726,13195,23998,-9,24001,23999,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.6358,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,5,1,387.5,326164.03,0,0,6885.9067 -10726,13195,23999,24001,-9,-9,1,1,1,39,1,0,2,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,6,0,-1,-113.49654,0,0,0,40,1,5,1,3,2,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7852316,0,0,0,62.389999,56.709999,57.060001,57.759998,7,1,1,0,0,2,5,1,387.5,326164.03,0,0,6885.9067 -10726,13195,24000,-9,24001,23999,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-859.27625,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,387.5,326164.03,0,0,6885.9067 -10726,13195,24001,23999,-9,-9,2,1,0,40,1,0,2,0,1,-9,1,1,0,0,5,9.5272837,9.3892918,0,2,0,-9,6,0,1,-26.2757,0,0,1,39,3,5,3,2,2,2019,2,1,6,0,40,40,15,1,0,3,0,31.82543,31.82543,0,0,0,0,0,0,0,0,1,1,0,8.481142,0,0,0,57.060001,57.759998,62.389999,56.709999,1,1,1,0,0,2,5,1,387.5,326164.03,0,0,6885.9067 -10727,13196,24002,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,3,0,6.3576956,6.3688841,3,0,0,0,-9,0,-986.10522,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6121125,6.0832019,0,0,54.779999,34.439999,-9,-9,3,1,1,0,0,6,2,1,233,-22996.219,0,0,2522.2986 -10727,13197,24003,-9,24002,-9,2,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.9212594,8.0175905,0,3,0,0,0,-9,0,-897.50055,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,47,40,15,1,0,-9,1,5.6751566,5.6751566,0,0,0,0,0,0,0,27.5,1,1,0,2.2060995,0,28.558586,3,47.740002,53.75,-9,-9,5,1,1,0,0,6,3,1,404,504523.41,0,0,1716.8799 -10728,13198,24004,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,7.411799,7.6029196,0,3,0,0,0,-9,0,-1127.1047,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,25,37,15,1,0,-9,0,8.3556023,8.3556023,0,0,0,0,0,0,0,0,0,0,0,2.005625,0,0,0,52.82,53.970001,-9,-9,7,1,1,0,0,5,3,1,359,-5086.7905,0,0,-340.20819 -10729,13199,24005,24006,-9,-9,3,1,1,35,1,0,1,0,1,-9,2,1,0,0,4,9.2064342,9.1174593,0,2,0,-9,2,0,7,-67.529289,0,0,0,28,2,5,1,-9,-9,2019,1,1,5,0,50,50,15,1,0,1,0,21.126019,21.126019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.650002,56.130001,6,1,1,0,0,6,5,1,530.33331,122167.79,0,0,3495.2991 -10729,13199,24006,24005,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,0,5,7.1519537,7.3439012,0,2,0,-9,2,0,-7,-77.976105,0,1,1,35,1,4,1,-9,-9,2019,1,3,6,0,26,25,15,1,0,1,0,6.3021922,6.3021922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.650002,56.130001,57.16,56.150002,6,1,1,0,0,6,5,1,530.33331,122167.79,0,0,3495.2991 -10729,13199,24007,-9,24006,24005,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.8522,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,5,1,530.33331,122167.79,0,0,3495.2991 -10730,13200,24008,-9,24009,24010,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.2057,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,4,1,655,451345.5,0,0,2599.323 -10730,13200,24009,24010,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,7.5553098,7.8590422,0,2,0,-9,20,0,-4,149.47952,0,0,1,48,1,5,1,2,2,2019,1,1,6,0,40,35,15,1,0,1,0,6.8382678,6.8382678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.330002,53.389999,62.389999,56.709999,6,2,3,0,0,6,4,1,655,451345.5,0,0,2599.323 -10730,13200,24010,24009,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,5,8.5157146,8.5525904,0,2,0,-9,20,0,4,-45.053833,0,0,0,44,2,3,1,3,3,2019,1,2,5,0,40,40,15,1,0,1,0,12.163769,12.163769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,42.330002,53.389999,7,2,3,0,0,6,4,1,655,451345.5,0,0,2599.323 -10731,13201,24011,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-972.40955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.98,22.059999,-9,-9,2,1,1,0,0,4,1,0,2955,19623.75,0,0,1843.9219 -10732,13202,24012,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,3,8.4317331,8.5090418,0,3,0,0,0,-9,0,-1010.066,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,36,15,1,0,-9,0,15.402392,15.402392,0,0,0,0,0,0,0,0,1,1,0,5.411418,0,0,0,47.150002,56.66,-9,-9,6,3,4,0,0,8,4,1,1928,578813.31,0,0,1818.9634 -10733,13203,24013,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,0,2,7.7074404,7.8688393,0,3,0,0,0,-9,0,-904.43481,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,20,0,15,1,1,-9,0,18.250256,18.250256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.529999,39.509998,-9,-9,5,1,1,0,0,7,4,0,331,349280.19,0,0,821.73071 -10734,13204,24014,24015,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,6.4893041,6.4292307,1,0,-9,10,0,1,34.124989,0,0,0,63,3,3,1,3,3,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.027689,6.3828988,0,0,57.490002,34.360001,69.139999,31.84,6,1,1,0,0,12,4,1,285,1024815.3,0,0,2481.3789 -10734,13204,24015,24014,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,3,8.0761795,8.2465572,0,1,0,-9,10,0,-1,-154.7952,0,0,0,64,2,3,3,-9,3,2019,2,2,7,0,44,42,15,1,0,4,0,9.7403126,9.7403126,0,0,0,0,0,0,0,0,0,0,0,7.4159436,0,0,0,69.139999,31.84,57.490002,34.360001,2,1,1,0,0,12,4,1,285,1024815.3,0,0,2481.3789 -10735,13205,24016,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,2,1,0,0,3,8.6916389,8.5090904,5.9405417,3,0,0,0,-9,0,-956.78864,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,37,37,15,1,0,-9,0,14.411087,14.411087,0,0,0,0,0,0,0,0,0,0,0,3.042104,6.250669,0,0,52.689999,43.18,-9,-9,5,1,1,0,0,4,5,0,1826,350102.97,0,0,2704.1758 -10736,13206,24017,24019,-9,-9,1,1,0,49,1,0,2,0,2,-9,97,3,0,1,3,0,0,0,2,0,-9,8,0,1,0,0,0,0,48,2,4,3,2,3,2019,4,5,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.509998,43.540001,52,55,5,1,1,0,0,13,1,1,829.75,59124.211,0,0,1814.1028 -10736,13206,24018,-9,24017,24019,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.0167,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,1,1,829.75,59124.211,0,0,1814.1028 -10736,13206,24019,24017,-9,-9,5,1,1,48,1,0,2,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,8,0,-1,0,0,0,0,49,2,3,3,-9,-9,2019,4,1,9,1,0,56,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,55.509998,43.540001,6,4,1,0,0,13,1,1,829.75,59124.211,0,0,1814.1028 -10736,13206,24020,-9,24017,24019,6,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-949.19714,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,1,1,829.75,59124.211,0,0,1814.1028 -10736,13207,24021,-9,24017,24019,3,1,0,19,2,0,2,0,2,-9,2,1,0,0,4,6.8228641,6.6860752,0,3,0,0,0,-9,0,-1000.7134,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,30,30,15,1,1,-9,1,2.8087912,2.8087912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,60.330002,-9,-9,6,1,1,0,0,13,2,1,1290,66376.617,0,0,-790.67548 -10737,13208,24022,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,-9,0,-9,0,-938.90369,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,55,-9,-9,5,4,2,0,1,6,1,0,1101,78891.273,0,0,388.85504 -10738,13209,24023,24024,-9,-9,2,1,0,56,1,0,0,0,1,-9,1,1,0,0,4,4.9505153,5.0495439,0,1,0,-9,36,0,-2,-32.005486,0,0,0,58,2,3,1,2,3,2019,1,1,9,0,23,25,15,1,0,1,0,.66124934,.66124934,0,0,0,0,0,0,0,2,0,0,0,1.696858,0,0,3,54.790001,55.860001,52.48,55.599998,6,1,1,0,0,13,2,1,416.5,453297.88,0,0,812.58655 -10738,13209,24024,24023,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,7.4057317,7.5239573,0,1,0,-9,10,0,2,83.958214,0,0,0,56,1,4,1,-9,-9,2019,1,2,7,0,45,40,15,1,0,1,0,4.5056987,4.5056987,0,0,0,0,0,0,0,0,0,0,0,1.5004963,0,0,0,52.48,55.599998,54.790001,55.860001,7,1,1,0,0,13,2,1,416.5,453297.88,0,0,812.58655 -10739,13210,24025,24026,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,0,4,7.7841864,7.4540658,0,2,0,-9,6,0,-1,-16.471254,0,0,1,41,2,3,1,-9,2,2019,1,1,9,0,6,27,15,1,0,1,0,36.030331,36.030331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,57.330002,53.459999,5,2,3,0,0,7,3,1,470.75,364360.13,0,0,2778.3818 -10739,13210,24026,24025,-9,-9,1,1,1,41,1,0,3,0,2,-9,2,1,0,0,3,8.6447687,8.7386923,0,2,0,-9,22,0,1,-24.804661,0,0,0,40,2,4,1,-9,-9,2019,1,2,12,0,41,41,15,1,0,1,0,13.410377,13.410377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,51.240002,58.84,6,2,3,0,0,7,3,1,470.75,364360.13,0,0,2778.3818 -10739,13210,24027,-9,24025,24026,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,3,1,470.75,364360.13,0,0,2778.3818 -10739,13210,24028,-9,24025,24026,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.775,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,7,3,1,470.75,364360.13,0,0,2778.3818 -10739,13211,24029,-9,24025,24026,3,1,1,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1063.2535,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,2,3,0,0,7,3,1,408,0,0,0,0 -10740,13212,24030,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,2,0,5.7604361,5.6488624,3,0,0,0,-9,0,-967.59271,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,2.0718794,0,0,0,0,29.449942,0,1,1,0,0,5.8749886,0,0,56.099998,25.969999,-9,-9,6,1,1,0,0,4,2,1,251,110538.41,0,0,786.04535 -10741,13213,24031,24032,-9,-9,2,1,1,60,1,0,0,0,3,-9,4,3,0,0,5,0,7.4352651,7.2869039,1,0,-9,10,0,0,.76708609,0,0,0,60,2,2,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3544636,0,0,62.389999,56.709999,38.389999,40.889999,7,1,1,0,0,5,4,1,380.5,697241.94,0,0,1403.8783 -10741,13213,24032,24031,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,2,7.7725811,8.0345335,0,1,0,-9,31,0,0,-96.233757,0,0,0,60,3,5,3,3,2,2019,2,2,15,3,45,37,15,1,0,4,0,7.0817332,7.0817332,0,0,0,0,0,0,0,0,0,0,0,5.1362877,0,0,0,38.389999,40.889999,62.389999,56.709999,4,1,1,0,0,5,4,1,380.5,697241.94,0,0,1403.8783 -10742,13214,24033,-9,24036,24035,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-891.61224,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,5,1,521.25,1454437.5,0,0,6569.3159 -10742,13214,24034,-9,24036,24035,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.13965,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,521.25,1454437.5,0,0,6569.3159 -10742,13214,24035,24036,-9,-9,1,1,1,52,1,0,2,0,2,-9,1,1,0,0,5,8.6399593,8.5001764,0,2,0,-9,18,0,7,-107.19176,0,0,0,45,2,4,1,3,2,2019,1,2,9,0,23,40,15,1,0,1,0,25.425106,25.425106,0,0,0,0,0,0,0,0,1,1,0,8.1712341,0,0,0,48.41,56.130001,52.57,48.580002,7,1,1,0,0,10,5,1,521.25,1454437.5,0,0,6569.3159 -10742,13214,24036,24035,-9,-9,2,1,0,45,1,0,2,0,2,-9,1,1,0,0,4,8.3412762,8.5868969,0,2,0,-9,18,0,-7,-47.664394,0,0,0,52,2,5,1,1,2,2019,1,1,7,1,15,25,15,1,0,1,0,48.267414,48.267414,0,0,0,0,0,0,0,7,1,1,0,7.8895421,0,3.108947,3,52.57,48.580002,48.41,56.130001,6,1,1,0,0,10,5,1,521.25,1454437.5,0,0,6569.3159 -10743,13215,24037,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,6.0801291,6.5871143,3,0,-9,0,1,0,-963.37457,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,30,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.100708,6.322051,0,0,29.870001,47.060001,-9,-9,3,1,1,0,0,9,2,1,172,575828,0,0,1382.7792 -10744,13216,24038,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,0,3,8.1718206,8.2646208,0,3,0,0,0,-9,0,-1050.9515,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,37,15,1,0,-9,0,9.8146315,9.8146315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.560001,49.110001,-9,-9,4,1,1,0,0,11,4,1,782,489743.03,0,0,1786.4347 -10745,13217,24039,-9,24040,24043,5,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.9271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,653.79999,891025.13,0,0,6966.77 -10745,13217,24040,24043,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.5184298,7.4039211,0,2,0,-9,20,0,0,-54.83139,0,0,1,42,2,4,1,2,2,2019,1,2,7,0,25,25,15,1,0,1,0,6.5613604,6.5613604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,55.34,54.259998,7,1,1,0,0,9,5,1,653.79999,891025.13,0,0,6966.77 -10745,13217,24041,-9,24040,24043,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.2283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,5,1,653.79999,891025.13,0,0,6966.77 -10745,13217,24042,-9,24040,24043,3,1,0,17,2,0,2,1,2,0,7,2,0,0,4,5.9802752,5.8398352,0,2,0,0,0,-9,0,-948.57043,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.259998,59.84,-9,-9,6,1,1,0,0,9,5,1,653.79999,891025.13,0,0,6966.77 -10745,13217,24043,24040,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,9.781004,9.8475513,0,2,0,-9,21,0,0,-45.578495,0,0,0,42,2,4,1,2,2,2019,1,1,4,0,40,35,15,1,0,1,0,48.495277,48.495277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,54.200001,57.490002,6,1,1,0,0,9,5,1,653.79999,891025.13,0,0,6966.77 -10746,13218,24044,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,1,1,0,0,4,7.9541574,8.0878038,0,3,0,0,0,-9,0,-1006.6022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,35,15,1,0,-9,0,13.056304,13.056304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.25,48.330002,-9,-9,6,1,1,0,0,9,4,1,155,120083.36,0,0,1797.5378 -10747,13219,24045,-9,24046,24047,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.82593,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,861.75,878152.94,0,0,5338.5107 -10747,13219,24046,24047,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,8.5327721,8.4739447,6.1799388,2,0,-9,4,0,0,48.222389,0,0,1,50,2,4,1,-9,-9,2019,1,1,10,0,53,48,15,1,0,1,0,10.245115,10.245115,0,0,0,0,0,0,0,0,1,1,0,7.0900216,0,0,0,37.919998,53.029999,50.34,56.400002,2,1,1,0,0,2,5,1,861.75,878152.94,0,0,5338.5107 -10747,13219,24047,24046,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.5781927,8.2630129,0,2,0,-9,4,0,9,5.7117062,0,0,0,41,1,3,1,2,2,2019,1,2,7,0,50,45,15,1,0,1,0,13.11765,13.11765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,56.400002,37.919998,53.029999,6,1,1,0,0,2,5,1,861.75,878152.94,0,0,5338.5107 -10747,13219,24048,-9,24046,24047,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.96356,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,1,861.75,878152.94,0,0,5338.5107 -10748,13220,24049,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,2,0,6.4913664,6.631608,3,0,0,0,-9,0,-1042.0885,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,6.2691593,8.8449945,3,55.610001,26.33,-9,-9,5,1,1,0,0,11,2,1,411,107519.11,0,0,1471.1006 -10749,13221,24050,24051,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,8.2310667,8.171627,0,2,0,-9,5,0,0,-114.68237,0,0,1,44,2,2,1,-9,-9,2019,1,4,14,2,57,58,15,1,0,1,0,7.3478842,7.3478842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.150002,34.73,62,31.200001,5,1,1,0,0,1,5,1,856.5,332055,0,0,4712.6064 -10749,13221,24051,24050,-9,-9,4,1,1,44,1,0,1,0,2,-9,2,1,0,0,2,8.8380461,8.9400034,0,2,0,-9,5,0,0,-124.61736,0,0,0,44,2,3,1,-9,-9,2019,1,1,7,0,44,46,15,1,0,1,0,20.341694,20.341694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62,31.200001,57.150002,34.73,6,1,1,0,0,1,5,1,856.5,332055,0,0,4712.6064 -10750,13222,24052,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,2,1,0,0,4,6.9397588,7.1488914,0,3,0,0,0,-9,0,-965.41443,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,14,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.84,58.02,-9,-9,5,1,1,0,0,11,2,0,435,456472.66,0,0,-178.30956 -10751,13223,24053,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,1,1,0,0,3,5.8287277,6.184649,0,3,0,0,0,-9,0,-983.91888,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,8,15,15,1,0,-9,0,5.2341628,5.2341628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,4,1,1,0,0,13,2,0,367,91961.422,0,0,-20.795715 -10752,13224,24054,24055,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,5,0,8.3057404,7.9839196,1,0,-9,57,0,-1,36.73148,0,0,0,80,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.628175,7.9936504,0,0,57.060001,57.759998,55.470001,52.91,7,1,1,0,0,4,3,1,343,1137441.5,0,0,2614.9409 -10752,13224,24055,24054,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,1,58.412769,0,0,0,79,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3934875,0,0,0,55.470001,52.91,57.060001,57.759998,7,1,1,0,0,4,3,1,343,1137441.5,0,0,2614.9409 -10753,13225,24056,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,5.793756,5.8785982,3,0,0,0,-9,0,-998.32849,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.0164466,0,0,0,1,1,0,0,5.9273109,0,0,50.23,47.060001,-9,-9,5,1,1,0,0,5,2,0,7724,-12219.137,0,0,1979.7214 -10754,13226,24057,24059,-9,-9,2,1,1,43,1,0,2,0,2,-9,1,1,0,0,4,6.9984035,7.1513443,0,2,0,-9,2,0,0,17.019321,0,0,0,43,2,3,1,-9,-9,2019,1,1,9,1,60,50,15,1,0,1,0,2.9737179,2.9737179,0,0,0,0,0,0,0,0,0,0,0,.95794153,0,0,0,51,56,57.330002,53.459999,6,1,1,0,0,10,4,1,401.25,155122.2,0,0,3219.626 -10754,13226,24058,-9,24059,24057,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.519,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,401.25,155122.2,0,0,3219.626 -10754,13226,24059,24057,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,3,8.7031622,8.3272848,0,2,0,-9,11,0,0,-63.335674,0,0,1,43,2,4,1,2,2,2019,1,2,10,0,20,20,15,1,0,1,0,30.293135,30.293135,0,0,0,0,0,0,0,0,0,0,0,8.1257992,0,0,0,57.330002,53.459999,51,56,5,1,1,0,0,10,4,1,401.25,155122.2,0,0,3219.626 -10754,13226,24060,-9,24059,24057,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.1133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,401.25,155122.2,0,0,3219.626 -10755,13227,24061,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,0,4,7.791718,7.969593,0,3,0,0,0,-9,0,-1122.0293,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,32,33,15,1,0,-9,0,7.8189688,7.8189688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,13,3,0,561,54668.773,0,0,2483.9392 -10756,13228,24062,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,5,8.0061102,8.3246326,6.2277374,3,0,0,0,-9,0,-1024.4695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,20,38,15,1,0,-9,1,12.360246,12.360246,0,0,0,0,0,0,0,14.5,1,1,0,4.8403325,7.1283364,25.392612,3,59.040001,54.119999,-9,-9,7,1,1,0,0,1,4,1,584,331621.25,0,0,764.42059 -10757,13229,24063,24064,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,7.8214655,7.7208576,0,2,0,-9,12,0,0,-20.158171,0,0,1,40,1,4,1,2,2,2019,1,2,12,0,21,21,15,1,0,1,0,13.264431,13.264431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.950001,64.540001,52,56,5,1,1,0,0,10,5,1,311.5,240379.81,0,0,4957.9858 -10757,13229,24064,24063,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,4,9.031435,9.2797251,0,2,0,-9,12,0,0,68.582504,0,0,0,40,1,4,1,2,1,2019,1,1,9,1,40,42,15,1,0,1,0,26.581818,26.581818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,32.950001,64.540001,5,1,1,0,0,10,5,1,311.5,240379.81,0,0,4957.9858 -10757,13229,24065,-9,24063,24064,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.0393,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,1,311.5,240379.81,0,0,4957.9858 -10757,13229,24066,-9,24063,24064,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.54608,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,5,1,311.5,240379.81,0,0,4957.9858 -10758,13230,24067,24068,-9,-9,2,1,0,27,1,2,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,-2,-49.905476,0,1,1,29,2,4,1,-9,-9,2019,3,1,10,0,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,62.490002,55.09,6,1,1,0,0,4,4,1,775.25,32628.682,0,0,2386.9734 -10758,13230,24068,24067,-9,-9,1,1,1,29,1,2,2,0,2,-9,2,1,0,0,4,8.9540339,8.8505011,0,2,0,-9,5,0,2,9.1835966,-9,1,0,27,1,3,3,-9,2,2019,2,2,7,0,48,0,15,1,0,3,0,15.060601,15.060601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,46.080002,57.200001,7,4,2,0,0,4,4,1,775.25,32628.682,0,0,2386.9734 -10758,13230,24069,-9,24067,24068,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.61481,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,4,4,1,775.25,32628.682,0,0,2386.9734 -10758,13230,24070,-9,24067,24068,4,1,1,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.5087,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,4,4,1,775.25,32628.682,0,0,2386.9734 -10759,13231,24071,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,0,3,7.3740735,7.0768723,0,3,0,0,0,-9,0,-1001.7104,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,30,25,15,1,0,-9,0,5.3704224,5.3704224,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1436224,3,49.869999,40.32,-9,-9,6,1,1,0,0,6,3,0,131,-10049.865,0,0,582.55042 -10760,13232,24072,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1032.6355,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7179626,0,0,0,38.27,50.610001,-9,-9,5,1,1,0,0,9,1,0,3596,0,0,0,1358.4612 -10761,13233,24073,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,5,8.3961468,8.3002691,0,3,0,0,0,-9,0,-927.65118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,57,48,15,1,0,-9,0,7.7803063,7.7803063,0,0,0,0,0,0,0,0,1,1,0,5.4176421,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,4,0,181,396987.94,0,0,1672.4761 -10762,13234,24074,-9,-9,-9,1,1,1,84,2,0,0,0,2,-9,4,3,0,0,3,0,6.5440011,6.6711535,3,0,0,0,-9,0,-919.98621,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.9020941,0,0,1,1,0,0,6.9507623,0,0,57.77,33.07,-9,-9,7,1,1,0,0,12,2,1,954,448205.88,0,0,1643.3936 -10763,13235,24075,24076,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,8.4208717,8.3189993,0,1,0,-9,1,-9,0,47.061459,-9,0,0,31,1,3,1,1,2,2019,1,2,11,0,38,0,15,1,0,1,0,12.120828,12.120828,0,0,0,0,0,0,0,0,0,0,0,5.5643787,0,0,0,54.369999,54.799999,57.330002,53.459999,6,1,1,0,0,13,5,1,592.5,69345.25,0,0,3212.1033 -10763,13235,24076,24075,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,3,8.0555048,7.9338422,0,1,0,-9,1,-9,0,-40.629749,-9,0,1,31,1,3,1,-9,-9,2019,1,1,6,0,38,0,15,1,0,1,0,10.997171,10.997171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,54.369999,54.799999,6,1,1,0,0,13,5,1,592.5,69345.25,0,0,3212.1033 -10764,13236,24077,24078,-9,-9,2,1,0,35,1,0,0,0,1,-9,1,1,0,0,5,7.9638109,7.6692801,0,1,0,-9,14,0,-4,-8.3767023,0,0,1,39,1,4,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,7.562674,7.562674,0,0,0,0,0,0,0,0,0,0,0,6.8462486,0,0,0,46.880001,60.959999,38,62.48,6,1,1,0,0,7,5,1,399.5,87359.195,0,0,4282.4512 -10764,13236,24078,24077,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,0,4,8.7834215,8.7733126,0,1,0,-9,14,0,4,-93.570053,0,0,0,35,1,5,1,2,2,2019,1,2,12,2,39,38,15,1,0,1,0,20.062014,20.062014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,62.48,46.880001,60.959999,2,1,1,0,0,7,5,1,399.5,87359.195,0,0,4282.4512 -10765,13237,24079,24080,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,7.8408117,7.6234612,0,1,0,-9,9,0,3,-65.819885,0,0,0,50,2,1,3,2,2,2019,2,1,7,0,36,35,15,1,0,3,0,8.3794594,8.3794594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,39.470001,32.610001,6,1,1,0,0,2,3,1,423.5,244246.31,0,0,1274.7427 -10765,13237,24080,24079,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,24,0,-3,71.175011,0,0,0,53,2,4,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1991522,0,0,0,39.470001,32.610001,57.16,56.150002,2,1,1,0,0,2,3,1,423.5,244246.31,0,0,1274.7427 -10766,13238,24081,24082,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,5,9.0739412,8.5481415,0,1,0,-9,8,0,6,-58.876137,0,0,0,34,1,3,1,2,2,2019,1,2,6,0,45,51,15,1,0,1,0,24.760744,24.760744,0,0,0,0,0,0,0,0,0,0,0,7.4223409,0,0,0,57.060001,57.759998,37.220001,53.060001,6,1,1,0,0,4,5,0,556,2373302.8,0,0,4803.1919 -10766,13238,24082,24081,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,0,3,8.9794321,8.8061008,0,1,0,-9,8,0,-6,-28.041391,0,0,1,40,2,5,1,-9,-9,2019,1,1,16,4,57,50,15,1,1,1,0,12.434447,12.434447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.220001,53.060001,57.060001,57.759998,3,1,1,0,0,4,5,0,556,2373302.8,0,0,4803.1919 -10767,13239,24083,24084,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,0,3,8.4101315,8.368926,0,1,0,-9,6,0,10,-93.056488,0,0,0,55,2,5,1,3,-9,2019,1,2,7,0,48,46,15,1,0,1,0,11.844984,11.844984,0,0,0,0,0,0,0,2,1,1,0,7.1106296,0,3.6807389,3,59.310001,49.810001,54.099998,59.110001,7,1,1,0,0,2,5,1,680,974807.25,0,0,3898.6445 -10767,13239,24084,24083,-9,-9,2,1,0,55,1,0,0,0,2,-9,1,1,0,0,5,8.1840906,8.4366627,0,1,0,-9,6,0,-10,70.044357,0,0,0,65,3,3,1,-9,-9,2019,1,1,8,0,20,30,15,1,0,1,0,20.563856,20.563856,0,0,0,0,0,0,0,7,1,1,0,0,0,9.0429993,3,54.099998,59.110001,59.310001,49.810001,7,1,1,0,0,2,5,1,680,974807.25,0,0,3898.6445 -10767,13240,24085,-9,24084,24083,3,1,0,23,2,0,0,0,1,1,2,1,0,0,4,7.1932621,7.6418209,0,3,0,0,0,-9,0,-1008.8837,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,17,0,15,1,0,-9,1,9.2967319,9.2967319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.599998,-9,-9,6,1,1,0,0,2,3,1,484,-6528.8125,0,0,1129.1582 -10768,13241,24086,24087,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,4,8.1635885,8.2016306,0,1,0,-9,8,0,-12,-4.2198782,-9,0,1,44,1,3,1,2,2,2019,1,1,11,2,40,0,15,1,0,1,0,9.9199085,9.9199085,0,0,0,0,0,0,0,0,0,0,0,6.5377383,0,0,0,48,57,60.889999,44.939999,5,1,1,0,0,9,5,1,256,257004.91,0,0,4516.6079 -10768,13241,24087,24086,-9,-9,1,1,1,44,1,0,0,0,1,-9,2,1,0,0,3,8.8321371,8.8285475,0,1,0,-9,8,0,12,-51.366737,0,0,0,32,2,4,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,21.181335,21.181335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.889999,44.939999,48,57,6,1,1,0,0,9,5,1,256,257004.91,0,0,4516.6079 -10769,13242,24088,24089,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,4,0,5.3144159,5.0416436,1,0,-9,39,0,-3,-27.575089,0,0,0,70,3,3,3,3,2,2019,4,2,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.3518353,5.3300729,0,3,59.889999,39.799999,51,46,6,1,1,0,0,6,1,1,676.5,426916.88,0,0,1002.0281 -10769,13242,24089,24088,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,3,-29.280825,0,0,0,67,3,4,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,59.889999,39.799999,5,1,1,0,0,6,1,1,676.5,426916.88,0,0,1002.0281 -10770,13243,24090,24091,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,0,3,7.8722191,7.9982004,4.6663318,1,0,-9,6,0,-10,59.579269,0,0,0,72,3,4,3,3,3,2019,2,2,8,0,39,41,15,1,0,4,0,7.7034216,7.7034216,0,0,0,0,0,0,0,0,1,1,0,4.7209897,0,0,0,57.900002,51.84,61.830002,49.950001,5,1,1,0,0,6,3,1,700.5,292998.63,0,0,3390.2222 -10770,13243,24091,24090,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,7.0615773,6.9457397,1,0,-9,6,0,10,21.199171,0,0,0,62,3,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9801831,7.0752735,0,0,61.830002,49.950001,57.900002,51.84,7,1,1,0,0,6,3,1,700.5,292998.63,0,0,3390.2222 -10771,13244,24092,24093,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,6.6234322,6.6961341,1,0,-9,6,0,-1,31.736549,0,0,0,76,2,3,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,10.453423,3.4192734,0,0,0,0,1,1,0,2.6300983,6.6822162,0,0,65.860001,22.15,54,46,7,1,1,0,0,13,3,1,904.5,609482.63,0,0,1717.8726 -10771,13244,24093,24092,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.6066794,7.6104922,1,0,-9,6,0,1,-98.492531,-9,0,0,75,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3358235,0,1,54,46,65.860001,22.15,6,4,1,0,0,13,3,1,904.5,609482.63,0,0,1717.8726 -10772,13245,24094,24095,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.1338863,7.1622081,0,1,0,-9,11,0,9,-80.598289,0,0,0,51,2,3,1,3,-9,2019,1,1,9,0,28,28,15,1,0,1,0,5.5342865,5.5342865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,55.959999,49.93,5,4,2,0,0,4,5,1,1537,168235.77,0,0,3350.1064 -10772,13245,24095,24094,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.9789286,8.818099,0,1,0,-9,11,0,0,20.503883,0,0,0,60,2,4,1,3,2,2019,1,2,8,0,48,48,15,1,0,1,0,16.811319,16.811319,0,0,0,0,0,0,0,0,0,0,0,.22025673,0,0,0,55.959999,49.93,55.790001,52.619999,6,1,1,0,0,4,5,1,1537,168235.77,0,0,3350.1064 -10773,13246,24096,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,8.0350113,8.2866726,3,0,0,0,-9,0,-945.2619,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0905738,7.9693398,0,0,61.279999,48.880001,-9,-9,7,1,1,0,0,6,4,1,255,764637.19,0,0,2128.373 -10774,13247,24097,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,0,0,-1032.0552,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.950001,46.950001,-9,-9,3,1,1,1,0,6,1,0,85,17571.434,0,0,0 -10775,13248,24098,-9,24100,24099,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.7388,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,4,1,1037.75,317911.78,0,0,4931.6675 -10775,13248,24099,24100,-9,-9,2,1,1,38,1,1,3,0,2,-9,2,1,0,0,3,8.7100563,8.788147,0,2,0,-9,7,0,2,21.869318,0,0,0,36,2,3,1,2,2,2019,1,1,9,2,35,35,15,1,0,1,0,18.577267,18.577267,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.639999,52.349998,31.84,51.650002,5,1,1,0,0,9,4,1,1037.75,317911.78,0,0,4931.6675 -10775,13248,24100,24099,-9,-9,1,1,0,36,1,1,3,0,2,-9,5,1,0,0,3,7.8896847,7.9429851,0,2,0,-9,7,0,-2,-25.229036,0,0,1,38,2,3,1,2,2,2019,1,2,12,0,1,16,15,1,0,1,0,277.1615,277.1615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.84,51.650002,47.639999,52.349998,2,1,1,0,0,9,4,1,1037.75,317911.78,0,0,4931.6675 -10775,13248,24101,-9,24100,24099,4,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.02301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,4,1,1037.75,317911.78,0,0,4931.6675 -10776,13249,24102,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,2,1,0,0,4,7.577415,7.8007035,5.4470453,3,0,0,0,-9,0,-1061.1389,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,48,46,15,1,0,-9,0,6.2659307,6.2659307,0,0,0,0,0,0,0,0,0,0,0,0,6.0558271,0,0,37.91,47.689999,-9,-9,6,4,2,0,0,6,4,1,219,918502.88,0,0,1927.8099 -10776,13250,24103,-9,24102,-9,2,1,1,34,2,0,0,0,1,-9,2,1,0,0,3,8.1507196,8.2592525,0,3,0,0,0,-9,0,-1054.1426,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,45,45,15,1,0,-9,1,11.337076,11.337076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,4,4,2,0,0,6,4,1,595,8772.6611,0,0,1462.6656 -10777,13251,24104,24105,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,8.1664362,7.8161249,1,0,-9,50,0,4,-8.8384924,0,0,0,79,2,1,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,5.9264593,0,0,0,0,0,120,1,1,0,10.063564,7.5543156,110.5703,1,48.98,32.349998,33.560001,17.190001,6,1,1,0,0,2,3,1,793,495909.88,0,0,12531.086 -10777,13251,24105,24104,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,50,0,-4,-42.385406,0,0,0,83,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,1,.23887882,70.501373,0,0,0,103.5133,0,1,1,0,0,0,0,0,33.560001,17.190001,48.98,32.349998,3,1,1,0,0,2,3,1,793,495909.88,0,0,12531.086 -10778,13252,24106,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1157.6171,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.73,50.869999,-9,-9,6,1,1,0,0,6,1,0,477,96977.156,0,0,1094.2611 -10779,13253,24107,24108,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,2,9.0110445,8.8247738,0,1,0,-9,26,0,8,71.774345,0,0,0,46,2,3,1,3,2,2019,1,1,13,2,55,25,15,1,0,1,0,12.656323,12.656323,0,0,0,0,0,0,0,0,1,0,1,4.6754866,0,0,0,44.419998,39.110001,52.990002,51.279999,4,2,3,0,1,8,5,1,2313.5,73268.344,0,0,4445.8867 -10779,13253,24108,24107,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.2064266,8.0683088,0,1,0,-9,26,0,-8,-25.34693,0,0,0,54,2,2,1,2,2,2019,1,2,11,0,31,0,15,1,0,1,0,11.46008,11.46008,0,0,0,0,0,0,0,2,1,0,1,0,0,1.0075355,2,52.990002,51.279999,44.419998,39.110001,5,2,3,0,0,8,5,1,2313.5,73268.344,0,0,4445.8867 -10779,13254,24109,-9,24108,24107,3,1,0,23,2,0,0,0,1,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-949.32166,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,30,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,0,1,0,0,6.6724582,3,48.869999,58.549999,-9,-9,5,2,3,0,0,8,1,1,2258,-57819.758,0,0,-161.62968 -10779,13255,24110,-9,24108,24107,4,1,1,19,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-966.57831,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.099998,59.110001,-9,-9,6,2,3,0,0,8,1,1,1767,2967.2898,0,0,-1207.8683 -10780,13256,24111,24112,-9,-9,2,1,0,54,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,32,0,-7,-43.780251,0,0,0,61,2,4,1,-9,-9,2019,3,1,11,2,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,37.360001,50.330002,5,2,3,0,0,4,3,1,479.5,586525.75,0,0,1156.7217 -10780,13256,24112,24111,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,7.5403876,7.9384246,0,1,0,-9,32,0,7,-7.4571204,0,0,0,54,2,3,3,3,3,2019,2,2,8,1,40,16,15,1,0,3,0,7.198863,7.198863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.360001,50.330002,48,49,5,2,3,0,0,4,3,1,479.5,586525.75,0,0,1156.7217 -10781,13257,24113,24114,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.2151852,8.3474503,0,2,0,-9,1,-9,18,81.536331,-9,0,1,23,2,3,1,-9,-9,2019,1,1,7,0,39,0,15,1,0,1,0,11.660542,11.660542,0,0,0,0,0,0,0,0,1,1,0,.41239479,0,0,0,57.16,56.150002,61.849998,47.259998,6,1,1,0,0,10,4,0,972,209529.34,0,0,2837.0657 -10781,13257,24114,24113,-9,-9,1,1,1,23,1,0,1,0,2,-9,2,1,0,0,3,8.0214949,7.7421069,0,2,0,-9,1,-9,-18,94.858978,-9,1,0,41,2,4,1,-9,-9,2019,1,2,7,0,39,0,15,1,0,1,0,7.7170706,7.7170706,0,0,0,0,0,0,0,0,1,1,0,1.1800274,0,0,0,61.849998,47.259998,57.16,56.150002,6,1,1,0,0,10,4,0,972,209529.34,0,0,2837.0657 -10781,13257,24115,-9,24113,-9,3,1,0,17,2,0,1,1,2,-9,7,2,0,0,4,5.5764203,5.7783709,0,2,0,-9,0,-9,0,-943.95746,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,7,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.450001,59.580002,-9,-9,3,1,1,0,0,10,4,0,972,209529.34,0,0,2837.0657 -10782,13258,24116,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,0,2,0,7.237041,7.5420456,3,0,0,0,-9,0,-1023.0154,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1417136,7.1258082,0,0,62.830002,33.619999,-9,-9,6,2,3,0,0,8,3,1,1134,141462.88,0,0,1425.8837 -10783,13259,24117,24118,-9,-9,1,1,1,60,1,0,2,0,1,-9,1,1,0,0,3,8.9349232,8.7687054,0,2,0,-9,1,-9,6,23.029142,-9,0,0,54,1,3,1,2,2,2019,1,2,12,1,20,0,15,1,0,1,0,32.439911,32.439911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,59.32,36.25,3,1,1,0,0,13,4,1,1878.6666,458446.81,0,0,4093.3267 -10783,13259,24118,24117,-9,-9,2,1,0,54,1,0,2,0,1,-9,2,1,0,0,3,7.6604543,7.1879702,0,2,0,-9,1,-9,-6,113.11859,-9,0,0,60,1,3,1,2,2,2019,1,1,9,0,50,0,15,1,0,1,0,4.238831,4.238831,0,0,0,0,0,0,0,0,1,1,0,7.0366831,0,0,0,59.32,36.25,49.040001,55.860001,5,1,1,0,0,13,4,1,1878.6666,458446.81,0,0,4093.3267 -10783,13259,24119,-9,24118,24117,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-857.77911,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,4,1,1878.6666,458446.81,0,0,4093.3267 -10784,13260,24120,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-942.51245,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,50.049999,-9,-9,6,1,1,0,0,10,1,0,463,0,0,0,489.2345 -10785,13261,24121,24122,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,1,2,7.5552316,7.7189503,0,1,0,-9,2,0,-11,-12.543032,0,0,1,48,2,5,1,-9,-9,2019,1,1,14,4,38,38,15,1,1,1,0,6.0126133,6.0126133,0,0,0,0,0,0,0,7,1,1,0,0,0,10.027141,3,45.669998,19.58,52.209999,59.91,6,1,1,0,0,2,5,1,385,39213.117,0,0,3694.2966 -10785,13261,24122,24121,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,5,8.8133631,8.6339035,0,1,0,-9,2,0,11,-44.958309,0,0,0,37,2,2,1,3,3,2019,1,2,9,0,36,37,15,1,0,1,0,18.647655,18.647655,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.033099,1,52.209999,59.91,45.669998,19.58,6,1,1,0,0,2,5,1,385,39213.117,0,0,3694.2966 -10786,13262,24123,-9,24124,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1000.481,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,3,1,833.5,112834.89,0,0,2673.1924 -10786,13262,24124,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,2,1,0,0,4,8.1264277,8.4326687,6.616529,4,0,0,0,-9,0,-1010.2391,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,39,32,15,1,0,-9,0,9.4762173,9.4762173,0,0,0,0,0,0,0,0,1,1,0,7.0740781,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,1,3,1,833.5,112834.89,0,0,2673.1924 -10786,13263,24125,-9,24124,-9,2,1,0,18,2,0,1,0,2,1,2,1,0,0,4,6.2330694,6.2255979,0,3,0,0,0,-9,0,-994.13043,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,12,0,15,1,0,-9,1,4.9515443,4.9515443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,-9,-9,6,1,1,0,0,1,2,1,524,7011.8081,0,0,-64.3116 -10787,13264,24126,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,0,5,0,7.3444219,7.3805442,3,0,0,0,-9,0,-1151.8533,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0377293,7.5103288,0,0,36.810001,68.269997,-9,-9,6,1,1,0,0,5,3,1,260,399389.38,0,0,2330.6812 -10788,13265,24127,24128,-9,-9,1,1,1,39,1,0,1,0,2,-9,2,1,0,0,3,8.365159,8.1187897,0,2,0,-9,3,0,3,10.351424,0,0,0,36,2,3,3,2,3,2019,2,2,8,0,46,0,15,1,0,3,0,9.9595509,9.9595509,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.580002,46.040001,53.139999,45.740002,6,1,1,0,0,5,4,0,897.66669,85614.313,0,0,3415.6047 -10788,13265,24128,24127,-9,-9,2,1,0,36,1,0,1,0,2,-9,3,3,0,0,3,0,7.2517991,7.0288396,2,0,-9,3,0,-3,84.25769,0,0,1,39,2,3,1,-9,-9,2019,3,1,16,4,0,25,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.3602371,0,0,0,53.139999,45.740002,58.580002,46.040001,4,1,1,1,0,5,4,0,897.66669,85614.313,0,0,3415.6047 -10788,13265,24129,-9,24128,24127,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.8783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,4,0,897.66669,85614.313,0,0,3415.6047 -10789,13266,24130,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-868.03455,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.35302,0,0,14.5,1,1,0,0,0,14.874471,3,52.970001,54.310001,-9,-9,7,1,1,0,0,7,1,0,825,167330.56,0,0,1218.2815 -10789,13267,24131,-9,24130,-9,2,1,1,49,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-901.99951,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.110001,30.16,-9,-9,4,1,1,0,0,7,1,0,687,72499.992,0,0,1585.444 -10790,13268,24132,24133,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,0,3,7.7336936,8.0711203,0,1,0,-9,7,0,8,-37.040794,0,0,0,49,1,5,1,3,2,2019,1,2,8,0,10,20,15,1,0,1,0,32.405819,32.405819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,48.77,60.16,6,1,1,0,0,9,5,1,334.5,791525.56,0,0,6046.6953 -10790,13268,24133,24132,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,5,8.9952488,9.2754021,0,1,0,-9,7,0,-8,-69.926712,0,0,0,57,1,3,1,2,2,2019,1,1,15,5,30,37,15,1,1,1,0,33.350491,33.350491,0,0,0,0,0,0,0,0,0,0,0,8.6258526,0,0,0,48.77,60.16,49.580002,55.59,6,1,1,0,0,9,5,1,334.5,791525.56,0,0,6046.6953 -10791,13269,24134,24135,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,4,7.7532125,7.6229758,0,1,0,-9,26,0,2,41.470177,0,0,0,58,2,4,1,2,2,2019,1,2,10,0,15,25,15,1,0,1,0,15.839136,15.839136,0,0,0,0,0,0,0,0,0,0,0,5.175261,0,0,0,54.790001,55.860001,58.93,40.189999,6,1,1,0,0,9,4,1,684.5,4683812,0,0,3306.1792 -10791,13269,24135,24134,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.3875132,8.221096,0,1,0,-9,26,0,-2,-43.954853,-9,0,0,60,1,4,1,2,1,2019,1,1,11,0,14,0,15,1,0,1,0,45.869644,45.869644,0,0,0,0,0,0,0,0,0,0,0,.14829321,0,0,0,58.93,40.189999,54.790001,55.860001,6,1,1,0,0,9,4,1,684.5,4683812,0,0,3306.1792 -10791,13270,24136,-9,24135,24134,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,8.7021074,8.4433823,0,3,0,0,0,-9,0,-954.97522,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,37,37,15,1,0,-9,1,11.53334,11.53334,0,0,0,0,0,0,0,0,0,0,0,4.6712012,0,0,0,43,53,-9,-9,6,1,1,0,0,9,4,1,552,66693.938,0,0,2258.0681 -10792,13271,24137,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,7.2920747,7.5246744,3,0,0,0,-9,0,-1069.8627,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5009484,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,3,1,1073,291304.63,0,0,1396.8259 -10793,13272,24138,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1076.4868,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,13.807884,0,0,1,1,0,0,0,0,0,61.52,42.41,-9,-9,6,3,4,0,0,8,1,0,376,70315.461,0,0,1195.5762 -10794,13273,24139,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,1,1,0,7.2828307,7.2417259,3,0,0,0,-9,0,-962.66461,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4667125,0,0,49.389999,16.870001,-9,-9,1,1,1,0,1,12,3,0,276,453282.56,0,0,-68.133736 -10795,13274,24140,24141,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,6.1912079,7.1948137,6.6900291,1,0,-9,9,0,-4,-52.706989,0,0,0,70,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4677668,0,0,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,6,4,1,435,1403095.6,0,0,3506.5334 -10795,13274,24141,24140,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.1971102,8.1253014,1,0,-9,45,0,4,-46.282463,0,0,0,66,1,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8588634,8.0270834,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,6,4,1,435,1403095.6,0,0,3506.5334 -10796,13275,24142,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,6.9181862,6.6986885,3,0,0,0,-9,0,-912.5545,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8405533,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,2,2,1,1097,442921.09,0,0,1431.2816 -10797,13276,24143,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1042.7522,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.68,20.24,-9,-9,6,2,3,0,0,8,1,0,441,229748.92,0,0,1774.7192 -10798,13277,24144,-9,-9,-9,1,1,1,85,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1085.6696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.7856941,0,0,1,1,0,4.9608107,0,0,0,59.849998,21.75,-9,-9,4,1,1,0,0,7,1,0,632,152597.5,0,0,1601.5231 -10799,13278,24145,-9,24147,24148,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.28485,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,372.5,277653.34,0,0,3576.9941 -10799,13278,24146,-9,24147,24148,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1156.9183,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,372.5,277653.34,0,0,3576.9941 -10799,13278,24147,24148,-9,-9,1,1,0,28,1,0,2,0,2,-9,2,1,0,0,4,7.6193066,7.5471911,0,2,0,-9,7,0,-2,-12.367304,0,1,1,30,2,5,1,-9,-9,2019,1,2,8,0,22,22,15,1,0,1,0,9.1238708,9.1238708,0,0,0,0,0,0,0,0,1,1,0,1.0731068,0,0,0,41.299999,60.77,59.43,58.049999,7,1,1,0,0,9,4,1,372.5,277653.34,0,0,3576.9941 -10799,13278,24148,24147,-9,-9,2,1,1,30,1,0,2,0,2,-9,2,1,0,0,5,8.5425539,8.7429104,0,2,0,-9,7,0,2,141.22009,0,0,0,28,2,4,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,15.503196,15.503196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,41.299999,60.77,6,1,1,0,0,9,4,1,372.5,277653.34,0,0,3576.9941 -10800,13279,24149,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,3,7.2110295,7.289238,0,3,0,0,0,-9,0,-929.53809,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,32,15,1,0,-9,0,5.1364012,5.1364012,0,0,0,0,0,0,0,2,0,0,0,4.4824524,0,4.7018266,3,44.220001,56.66,-9,-9,7,1,1,0,0,4,2,1,378,747975.69,0,0,201.68605 -10801,13280,24150,24151,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,10.110326,10.133068,0,1,0,-9,3,0,-14,18.647223,-9,0,0,70,1,5,3,-9,-9,2019,2,1,13,5,60,0,15,1,1,4,0,44.084732,44.084732,0,0,0,0,0,0,0,0,1,1,0,7.4752259,0,0,0,59.459999,19.85,57.630001,56.139999,7,1,1,0,0,6,5,1,263,5581414,0,0,15325.203 -10801,13280,24151,24150,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,5,7.5588508,9.0045519,8.8379517,1,0,-9,3,0,14,52.474365,0,0,0,56,1,4,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6762991,9.0320425,0,0,57.630001,56.139999,59.459999,19.85,6,1,1,0,0,6,5,1,263,5581414,0,0,15325.203 -10802,13281,24152,24153,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,0,3,8.3831539,7.9829931,0,1,0,-9,7,0,-5,74.360962,0,0,0,63,3,3,1,-9,-9,2019,1,1,11,2,38,38,15,1,0,1,0,10.294538,10.294538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,58.470001,50.220001,5,1,1,0,0,5,5,1,1236,410858.38,0,0,3028.3584 -10802,13281,24153,24152,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,3,7.9379239,8.0415649,5.4525199,1,0,-9,39,0,5,66.403725,0,0,0,58,3,3,1,3,3,2019,1,2,9,0,43,45,15,1,0,1,0,10.71307,10.71307,0,0,0,0,0,0,0,0,0,0,0,5.8386016,5.5570912,0,0,58.470001,50.220001,49,48,6,1,1,0,0,5,5,1,1236,410858.38,0,0,3028.3584 -10803,13282,24154,24155,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,5,8.5894241,8.7526827,0,1,0,-9,22,0,-1,52.652637,0,0,0,54,2,5,1,2,1,2019,1,1,11,1,50,50,15,1,0,1,0,14.794212,14.794212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.259998,55.310001,46.400002,59.869999,3,1,1,0,0,1,4,1,1167,776286.13,0,0,3849.1836 -10803,13282,24155,24154,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,0,0,0,1,0,-9,22,0,1,-72.70118,0,0,0,53,1,5,1,2,2,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.547358,0,0,0,46.400002,59.869999,53.259998,55.310001,2,1,1,0,0,1,4,1,1167,776286.13,0,0,3849.1836 -10804,13283,24156,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,4,0,6.1638374,6.4555993,3,0,0,0,-9,0,-1097.7458,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.645752,6.7715316,0,3,54.200001,57.490002,-9,-9,6,1,1,0,0,10,2,1,590,1142745,0,0,1082.626 -10805,13284,24157,24158,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.0557775,8.3054419,0,1,0,-9,5,0,2,4.1983914,0,1,0,27,1,4,1,2,2,2019,1,2,4,0,40,40,15,1,0,1,0,9.7620735,9.7620735,0,0,0,0,0,0,0,0,0,0,0,3.4227865,0,0,0,43.439999,58.700001,46.689999,58.349998,5,1,1,0,0,12,5,0,129,30858.018,0,0,4312.5303 -10805,13284,24158,24157,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.3052387,8.6026506,0,1,0,-9,5,0,-2,-75.021919,0,1,1,29,1,4,1,-9,-9,2019,1,1,7,0,38,43,15,1,0,1,0,14.304964,14.304964,0,0,0,0,0,0,0,0,0,0,0,2.2833204,0,0,0,46.689999,58.349998,43.439999,58.700001,6,1,1,0,0,12,5,0,129,30858.018,0,0,4312.5303 -10806,13285,24159,24160,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,0,2,8.2813196,8.40627,0,1,0,-9,21,0,1,-16.561499,0,0,0,45,1,4,1,2,2,2019,1,2,12,0,38,40,15,1,0,1,0,9.7955351,9.7955351,0,0,0,0,0,0,0,0,0,0,0,7.9078345,0,0,0,40.82,42.52,52.82,53.970001,6,2,3,0,0,12,5,1,859.5,807085,0,0,5854.6821 -10806,13285,24160,24159,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,9.1408653,8.5952816,0,1,0,-9,21,0,-1,-110.22976,0,0,0,46,1,2,1,3,3,2019,1,1,11,2,38,39,15,1,0,1,0,25.447992,25.447992,0,0,0,0,0,0,0,0,0,0,0,7.2003417,0,0,0,52.82,53.970001,40.82,42.52,6,2,3,0,0,12,5,1,859.5,807085,0,0,5854.6821 -10807,13286,24161,-9,-9,-9,1,1,1,49,3,1,1,0,3,-9,9,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1048.9655,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.41,27.33,-9,-9,3,1,1,0,0,9,1,0,376,-169521.98,0,0,1951.3503 -10807,13287,24162,-9,-9,24161,2,1,0,23,2,1,1,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1034.4473,0,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.169998,50.189999,-9,-9,5,1,1,1,0,9,1,0,473,-125009.92,0,0,-272.64429 -10807,13287,24163,-9,24162,-9,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-934.36389,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,473,-125009.92,0,0,-272.64429 -10808,13288,24164,-9,24165,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.7539,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,13,2,1,552.33331,4903.8188,0,0,1206.3534 -10808,13288,24165,-9,-9,-9,1,1,0,42,2,0,2,0,1,-9,2,1,0,0,4,7.1713781,7.2597895,0,4,0,0,0,-9,0,-1034.8085,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,25,20,15,1,0,-9,0,5.5011296,5.5011296,0,0,0,0,0,0,0,101,1,1,0,0,0,117.46254,3,52.400002,55.580002,-9,-9,6,1,1,0,1,13,2,1,552.33331,4903.8188,0,0,1206.3534 -10808,13288,24166,-9,24165,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1027.4745,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,13,2,1,552.33331,4903.8188,0,0,1206.3534 -10809,13289,24167,-9,-9,-9,1,1,0,21,2,1,1,0,2,-9,2,1,0,0,5,7.8474193,7.7600813,0,4,0,0,0,-9,0,-1139.9159,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,26,39,15,1,0,-9,0,11.398689,11.398689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,4,3,0,713.5,-163303.64,0,0,2457.1943 -10809,13289,24168,-9,24167,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.0073,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,713.5,-163303.64,0,0,2457.1943 -10810,13290,24169,-9,24171,24170,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.5392,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,701.75,177157.63,0,0,2547.3044 -10810,13290,24170,24171,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,7.83289,7.8194909,0,2,0,-9,17,0,6,-12.879449,0,0,0,39,2,4,1,3,3,2019,1,2,7,0,40,40,15,1,0,1,0,7.2751517,7.2751517,0,0,0,0,0,0,0,0,1,1,0,4.6915035,0,0,0,54.200001,57.490002,39.759998,59.880001,5,1,1,0,0,2,4,1,701.75,177157.63,0,0,2547.3044 -10810,13290,24171,24170,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.2397518,7.9509382,0,2,0,-9,10,0,-6,-46.53019,0,0,1,45,2,4,1,-9,-9,2019,1,1,16,5,29,20,15,1,1,1,0,11.288901,11.288901,0,0,0,0,0,0,0,0,1,1,0,4.0185876,0,0,0,39.759998,59.880001,54.200001,57.490002,5,1,1,0,0,2,4,1,701.75,177157.63,0,0,2547.3044 -10810,13290,24172,-9,24171,24170,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.03558,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,701.75,177157.63,0,0,2547.3044 -10811,13291,24173,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,4.6084938,4.7205968,3,0,0,0,-9,0,-1013.6027,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.17292155,4.4965296,0,0,60.060001,39.82,-9,-9,7,1,1,0,0,9,2,1,567,440803.28,0,0,669.92395 -10812,13292,24174,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,5,0,7.1750927,6.986526,3,0,0,0,-9,0,-957.12274,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8261304,7.7626486,0,0,61.700001,51.580002,-9,-9,6,1,1,0,0,7,3,1,143,792678.06,0,0,2057.2207 -10813,13293,24175,-9,-9,-9,3,1,0,83,3,1,1,0,3,-9,4,3,0,1,3,0,0,0,4,0,-9,0,-9,0,-951.43402,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,72.017502,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,1,1,0,0,13,1,1,327,-44775.668,0,0,1252.5377 -10813,13294,24176,-9,24175,-9,1,1,0,50,2,1,1,0,3,-9,2,1,0,1,5,6.3493438,6.3038096,0,3,0,0,0,-9,0,-1038.0125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,97,84,15,1,0,-9,1,.89188969,.89188969,0,0,0,0,0,0,0,29,1,1,0,0,0,113.09423,3,62.389999,56.709999,-9,-9,2,1,1,0,0,13,2,1,300,251712.61,0,0,394.59189 -10813,13295,24177,-9,24178,-9,4,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1034.7239,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,13,2,1,462,-15991.586,0,0,1437.7554 -10813,13295,24178,-9,24176,-9,2,1,0,23,2,1,1,0,2,-9,2,1,0,0,4,6.912035,6.7911744,0,3,0,0,0,-9,0,-1109.4874,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,20,40,15,1,0,-9,1,6.5853872,6.5853872,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.235428,3,60.119999,54.799999,-9,-9,7,1,1,0,0,13,2,1,462,-15991.586,0,0,1437.7554 -10814,13296,24179,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-940.16827,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,10.154339,0,0,0,0,1,1,0,0,0,0,0,67.709999,10.82,-9,-9,6,1,1,0,0,12,1,0,769,131690.48,0,0,1832.4619 -10815,13297,24180,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.3704357,8.2782869,0,3,0,0,0,-9,0,-987.08691,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,1,43,43,15,1,0,-9,0,12.620996,12.620996,0,0,0,0,0,0,0,0,0,0,0,.49325663,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,2,4,0,2144,87883.703,0,0,654.65863 -10816,13298,24181,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,1,1,0,0,3,6.1725898,6.268414,0,3,0,0,0,-9,0,-972.65216,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,70,63,15,1,0,-9,0,.71814603,.71814603,0,0,0,0,0,0,0,2,0,0,0,0,0,3.4276378,3,56.700001,42.759998,-9,-9,5,1,1,0,0,11,2,1,540,343673.28,0,0,-226.68622 -10816,13299,24182,-9,24181,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,2,7.0679474,7.1397791,0,3,0,0,0,-9,0,-1015.516,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,16,37,15,1,1,-9,1,8.4073477,8.4073477,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.506278,3,21.549999,45.919998,-9,-9,4,1,1,0,0,11,2,1,1270,48965.914,0,0,-607.80627 -10817,13300,24183,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,2,0,5.1973238,5.298903,3,0,0,0,-9,0,-1105.0378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3305721,0,0,40.130001,35.689999,-9,-9,4,1,1,0,1,6,2,1,7130,177039.13,0,0,839.88 -10818,13301,24184,24185,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,8.4588337,8.2744131,0,1,0,-9,5,0,-4,20.937725,0,0,1,35,1,4,1,-9,-9,2019,1,1,6,0,35,39,15,1,0,1,0,15.817422,15.817422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,52.639999,58.150002,52.91,6,4,2,0,0,9,5,1,176,223969.31,0,0,4566.0332 -10818,13301,24185,24184,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.8847952,8.8726349,0,1,0,-9,5,0,4,-11.229368,0,0,0,31,1,4,1,2,2,2019,1,2,7,0,38,39,15,1,0,1,0,20.725012,20.725012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,55.759998,52.639999,6,1,1,0,0,9,5,1,176,223969.31,0,0,4566.0332 -10819,13302,24186,24187,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,7.8065023,7.6343021,1,0,-9,9,0,-2,-40.485603,0,0,0,83,3,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,8.2608004,7.5052052,10.851586,1,53,46,52,45,6,1,1,0,0,11,3,1,546.5,535109.63,0,0,4304.8418 -10819,13302,24187,24186,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,3,0,5.8229132,5.7324777,1,0,-9,9,0,2,-55.242561,0,0,0,81,3,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,11.918096,0,0,0,0,0,1,1,0,7.1934247,5.9879737,0,0,52,45,53,46,6,1,1,0,0,11,3,1,546.5,535109.63,0,0,4304.8418 -10820,13303,24188,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,8,3,1,1,1,0,5.739172,5.8428059,3,0,0,0,-9,0,-999.94666,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,31,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4797211,0,0,0,35.810001,29.950001,-9,-9,2,1,1,0,0,7,2,0,398.5,175815.2,0,0,2063.1423 -10820,13303,24189,-9,24188,-9,3,1,1,16,2,0,0,0,2,-9,2,2,0,0,3,7.2822313,7.2016163,0,3,0,0,0,-9,0,-1076.8755,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,32,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.9300132,0,17.902578,3,44.900002,36.049999,-9,-9,3,1,1,0,0,7,2,0,398.5,175815.2,0,0,2063.1423 -10820,13304,24190,-9,24188,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,0,3,6.7529974,6.6700926,0,3,0,0,0,-9,0,-976.50562,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,44,0,15,1,0,-9,1,1.4331754,1.4331754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.849998,52.41,-9,-9,2,1,1,0,0,7,2,0,341,-44142.469,0,0,27.367554 -10821,13305,24191,24193,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,0,3,5.8428183,6.649941,5.6082907,2,0,-9,6,0,-4,-20.975777,0,0,1,36,2,4,1,2,2,2019,1,3,6,0,5,0,15,1,0,1,0,5.9148836,5.9148836,0,0,0,0,0,0,0,0,1,1,0,5.7774572,0,0,0,53.98,50.869999,51,57,6,1,1,0,0,4,3,0,699.33331,111884.58,0,0,2437.0054 -10821,13305,24192,-9,24191,24193,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.5504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,699.33331,111884.58,0,0,2437.0054 -10821,13305,24193,24191,-9,-9,3,1,1,36,1,0,2,0,2,-9,1,1,0,0,4,8.2689085,8.1845665,0,2,0,-9,6,0,4,64.202675,0,0,0,32,2,3,1,-9,-9,2019,1,1,10,1,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,53.98,50.869999,5,1,1,0,0,4,3,0,699.33331,111884.58,0,0,2437.0054 -10822,13306,24194,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,4,0,6.6327772,6.835062,3,0,0,0,-9,0,-1078.7157,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4529247,0,0,58.75,48.57,-9,-9,7,1,1,0,0,7,2,1,146,49879.035,0,0,728.64246 -10823,13307,24195,24197,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,0,3,8.8747282,9.1881437,0,2,0,-9,7,0,2,16.580175,0,0,0,35,1,3,3,-9,-9,2019,2,1,11,0,43,35,15,1,0,3,0,20.975538,20.975538,0,0,0,0,0,0,0,0,0,0,0,8.0819511,0,0,0,25.84,61.450001,41.529999,56.720001,5,1,1,0,0,9,4,0,932.75,302611.34,0,0,5750.8149 -10823,13307,24196,-9,24197,24195,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1047.2278,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,4,0,932.75,302611.34,0,0,5750.8149 -10823,13307,24197,24195,-9,-9,1,1,0,35,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-2,2.5380032,0,0,1,37,1,3,1,3,3,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.529999,56.720001,25.84,61.450001,5,2,3,0,0,9,4,0,932.75,302611.34,0,0,5750.8149 -10823,13307,24198,-9,24197,24195,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.60828,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,9,4,0,932.75,302611.34,0,0,5750.8149 -10824,13308,24199,-9,24200,24201,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.08496,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,0,826.25,-69784.719,0,0,1977.1796 -10824,13308,24200,24201,-9,-9,2,1,0,25,1,0,2,0,2,-9,2,1,0,0,1,6.7797074,6.8755226,0,2,0,-9,2,0,-4,13.906348,0,1,1,29,2,3,1,-9,-9,2019,1,1,22,9,16,16,15,1,1,1,0,6.5316415,6.5316415,0,0,0,0,0,0,0,42,1,1,0,0,0,47.727871,3,49.049999,22.43,48.799999,49.099998,5,1,1,0,0,10,3,0,826.25,-69784.719,0,0,1977.1796 -10824,13308,24201,24200,-9,-9,1,1,1,29,1,0,2,0,2,-9,2,1,0,0,3,7.9335213,7.7922816,0,2,0,-9,2,0,4,-41.410633,0,1,0,25,2,1,1,2,-9,2019,1,2,11,0,42,42,15,1,0,1,0,6.7040358,6.7040358,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.37746,2,48.799999,49.099998,49.049999,22.43,5,1,1,0,0,10,3,0,826.25,-69784.719,0,0,1977.1796 -10824,13308,24202,-9,24200,24201,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.86945,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,3,0,826.25,-69784.719,0,0,1977.1796 -10825,13309,24203,24204,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,7.7015104,7.466732,0,1,0,-9,8,0,1,80.115929,0,0,0,53,2,4,1,3,3,2019,1,2,12,2,30,28,15,1,0,1,0,7.5064101,7.5064101,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,37.959999,55.299999,35.970001,61.830002,4,1,1,0,0,12,4,1,433.5,394494.75,0,0,1462.5811 -10825,13309,24204,24203,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.281909,8.4024267,0,1,0,-9,8,0,-1,94.344276,0,0,0,54,2,3,1,-9,-9,2019,1,1,18,6,45,82,15,1,1,1,0,10.075414,10.075414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.970001,61.830002,37.959999,55.299999,5,1,1,0,0,12,4,1,433.5,394494.75,0,0,1462.5811 -10826,13310,24205,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,2,8.1233377,8.3180218,0,1,0,-9,3,0,1,10.480348,0,0,0,-9,-9,-9,-9,2,1,2019,-9,2,14,2,23,20,15,1,0,-9,0,16.373175,16.373175,0,0,0,0,0,0,0,0,0,0,0,1.7124729,0,0,0,20.709999,60.09,50,58,2,4,2,0,0,12,3,1,383,-140750.55,0,0,1077.1406 -10827,13311,24206,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,0,2,0,5.3896098,5.3599925,3,0,0,0,-9,0,-981.82281,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,2.7932472,0,6.9209456,0,0,23.850437,0,1,1,0,0,5.5224142,0,0,52.639999,33.209999,-9,-9,4,1,1,0,0,7,2,1,274,87795.938,0,0,1704.3988 -10828,13312,24207,24208,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.9787779,8.680604,0,1,0,-9,7,0,-6,-30.400419,0,0,0,56,3,2,1,3,3,2019,1,2,12,2,60,58,15,1,0,1,0,8.1028881,8.1028881,0,0,0,0,0,0,0,2,0,0,0,0,0,9.3155079,3,49.5,51.279999,42.720001,49.619999,6,1,1,0,0,9,4,1,678.5,605778.88,0,0,2675.3245 -10828,13312,24208,24207,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,2,6.770144,7.255743,0,1,0,-9,7,0,6,78.260513,0,0,0,50,2,4,1,3,3,2019,1,1,5,0,24,28,15,1,0,1,0,5.5296531,5.5296531,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.720001,49.619999,49.5,51.279999,6,1,1,0,0,9,4,1,678.5,605778.88,0,0,2675.3245 -10829,13313,24209,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,2,1,0,1,4,6.9251328,6.7231317,0,4,0,0,0,-9,0,-997.88788,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,20,0,15,1,1,-9,0,4.8038135,4.8038135,0,0,0,0,0,0,0,106,1,0,1,0,0,120.36642,3,36.200001,64.190002,-9,-9,4,1,1,0,0,7,2,0,459.60001,316295.5,0,0,2877.679 -10829,13313,24210,-9,24209,-9,5,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.9297,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,2,0,459.60001,316295.5,0,0,2877.679 -10829,13313,24211,-9,24209,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1017.642,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,1,1,0,0,7,2,0,459.60001,316295.5,0,0,2877.679 -10829,13313,24212,-9,24209,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-952.25861,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,459.60001,316295.5,0,0,2877.679 -10829,13313,24213,-9,24209,-9,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.38568,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,459.60001,316295.5,0,0,2877.679 -10830,13314,24214,24215,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,1,2,0,4.2695484,4.4134059,1,0,-9,42,0,-2,-11.868483,0,0,0,64,3,3,1,3,2,2019,3,1,18,8,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6410627,0,0,44.470001,27.139999,52,47,6,1,1,0,0,11,3,1,341,-1904.1309,0,0,838.40918 -10830,13314,24215,24214,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,0,3,8.0315123,7.9940906,0,1,0,-9,42,0,2,34.321953,0,0,0,62,2,2,3,3,2,2019,2,2,10,1,37,60,15,1,0,4,0,9.2413206,9.2413206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,44.470001,27.139999,5,1,1,0,0,11,3,1,341,-1904.1309,0,0,838.40918 -10831,13315,24216,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,1,1,0,0,3,9.461503,9.5583839,0,3,0,0,0,-9,0,-978.53754,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,60,50,15,1,0,-9,0,27.496666,27.496666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,55.599998,-9,-9,6,1,1,0,0,10,5,0,315,274827.41,0,0,7791.1968 -10832,13316,24217,24218,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,3,6.854929,6.6611447,0,2,0,-9,7,0,15,51.352268,0,0,0,34,2,4,3,3,3,2019,2,2,13,1,16,16,15,1,0,3,0,6.2056494,6.2056494,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.060001,51.060001,46.439999,59.619999,4,1,1,0,0,4,2,0,446.5,-2236.459,0,0,1469.1686 -10832,13316,24218,24217,-9,-9,2,1,0,34,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-15,-63.074955,0,0,1,49,2,3,1,2,3,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.3492131,3,46.439999,59.619999,48.060001,51.060001,3,1,1,0,0,4,2,0,446.5,-2236.459,0,0,1469.1686 -10832,13316,24219,-9,24218,24217,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.6411,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,2,0,446.5,-2236.459,0,0,1469.1686 -10832,13316,24220,-9,24218,24217,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-821.50824,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,446.5,-2236.459,0,0,1469.1686 -10833,13317,24221,24222,-9,-9,1,1,1,45,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,5,0,13,0,0,0,0,32,1,4,3,2,2,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.68,31.58,30.24,39.990002,4,1,1,0,0,2,1,0,803.5,-25998.797,0,0,2769.4609 -10833,13317,24222,24221,-9,-9,2,1,0,32,1,0,0,0,1,-9,97,3,0,1,4,0,0,0,1,0,-9,5,0,-13,0,0,0,1,45,2,2,3,-9,-9,2019,4,1,32,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.090824,3,30.24,39.990002,37.68,31.58,3,1,1,0,0,2,1,0,803.5,-25998.797,0,0,2769.4609 -10834,13318,24223,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,1,1,0,0,3,6.5871863,6.2311134,0,3,0,0,0,-9,0,-965.8501,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,26,10,30,50,15,1,1,-9,0,2.0083919,2.0083919,0,0,0,0,0,0,0,7,0,0,0,0,0,17.626945,3,25.5,65.43,-9,-9,3,1,1,0,1,10,2,1,645,1055355.1,0,0,104.41542 -10835,13319,24224,24225,-9,-9,2,1,0,49,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,2,0,-2,-158.26093,0,0,0,51,3,4,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,57.16,56.150002,6,2,3,0,0,8,4,1,818.5,2173377.8,0,0,2169.7026 -10835,13319,24225,24224,-9,-9,1,1,1,51,1,0,0,0,3,-9,2,1,0,0,4,8.4459467,8.4693365,0,1,0,-9,25,0,2,8.8085327,0,0,0,49,3,4,3,-9,-9,2019,2,2,6,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,62.490002,55.09,6,2,3,0,0,8,4,1,818.5,2173377.8,0,0,2169.7026 -10835,13320,24226,-9,24224,24225,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,7.2710848,7.561799,0,3,0,0,0,-9,0,-909.93811,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,47,0,15,1,0,-9,1,3.4338195,3.4338195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,2,3,0,0,8,3,1,1882,-6657.6143,0,0,1546.9772 -10836,13321,24227,24229,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,9.6274176,9.824894,0,2,0,-9,9,0,-2,162.0808,0,0,1,45,2,4,1,3,2,2019,1,2,11,0,30,21,15,1,0,1,0,59.418842,59.418842,0,0,0,0,0,0,0,0,1,1,0,2.7188168,0,0,0,56.259998,38.869999,55.099998,47.5,6,1,1,0,0,2,5,1,850.25,295844.28,0,0,8875.0664 -10836,13321,24228,-9,24227,24229,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.80511,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,850.25,295844.28,0,0,8875.0664 -10836,13321,24229,24227,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.7500687,8.5011473,0,2,0,-9,9,0,2,-147.20064,0,0,0,43,1,3,1,2,2,2019,1,1,15,4,43,44,15,1,1,1,0,12.797968,12.797968,0,0,0,0,0,0,0,0,1,1,0,8.2338629,0,0,0,55.099998,47.5,56.259998,38.869999,6,1,1,0,0,2,5,1,850.25,295844.28,0,0,8875.0664 -10836,13321,24230,-9,24227,24229,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.2316,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,850.25,295844.28,0,0,8875.0664 -10837,13322,24231,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-915.00464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.4775906,3,29.950001,28.16,-9,-9,4,1,1,0,0,11,1,0,1456,16198.618,0,0,1386.9966 -10837,13323,24232,-9,24231,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,7.706645,7.935307,0,3,0,0,0,-9,0,-1044.6603,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,70,46,15,1,0,-9,1,4.5236626,4.5236626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.290001,42.139999,-9,-9,6,1,1,0,0,11,3,0,4036,-122604.28,0,0,1107.1813 -10838,13324,24233,24234,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,0,4,7.1574502,7.2924213,0,2,0,-9,7,0,-8,59.70768,0,0,0,61,2,3,1,-9,-9,2019,1,1,10,1,20,0,15,1,0,1,0,7.254993,7.254993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,51,48,6,1,1,0,1,7,4,1,1709,760203.38,0,0,2276.0923 -10838,13324,24234,24233,-9,-9,1,1,1,61,1,0,1,0,2,-9,2,1,0,0,3,8.3412743,8.5542011,5.8464222,2,0,-9,30,0,8,-78.618126,0,0,0,53,2,4,1,3,3,2019,1,2,10,1,46,37,15,1,0,1,0,11.324584,11.324584,0,0,0,0,0,0,0,0,1,1,0,2.7270308,6.4630275,0,0,51,48,51,54,5,1,1,0,1,7,4,1,1709,760203.38,0,0,2276.0923 -10838,13325,24235,-9,24233,24234,3,1,0,24,3,0,1,0,1,-9,1,1,0,0,4,6.5545321,6.5493608,0,3,0,0,0,-9,0,-927.26074,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,35,10,15,1,0,-9,1,2.2751975,2.2751975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,7,2,1,952,164852.63,0,0,303.07257 -10838,13326,24236,-9,24233,24234,5,1,1,22,2,0,1,0,2,-9,2,1,0,0,4,8.5941515,8.3786287,0,3,0,-9,0,0,0,-1073.5601,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,39,15,1,0,-9,1,11.719414,11.719414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,5,1,834,14483.35,0,0,2531.5891 -10838,13327,24237,-9,24233,24234,4,1,0,18,2,0,1,1,2,0,7,2,0,0,4,3.887512,3.7548366,0,3,0,0,0,-9,0,-1015.7278,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,7,5,1,1627,117737.48,0,0,-24.252016 -10839,13328,24238,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,5,8.3932514,8.632844,0,3,0,0,0,-9,0,-951.75507,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,39,39,15,1,0,-9,0,14.560884,14.560884,0,0,0,0,0,0,0,0,0,0,0,.11198957,0,0,0,41.66,59.419998,-9,-9,6,1,1,0,0,12,5,0,375,464557.06,0,0,2000.1124 -10840,13329,24239,24240,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,5.5021935,5.181983,1,0,-9,9,0,-4,-75.486496,0,0,0,70,1,3,3,2,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2981691,5.4540992,0,0,52.919998,44.939999,30.4,46.790001,6,1,1,0,0,9,3,1,650,689813.19,0,0,2709.8284 -10840,13329,24240,24239,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,8.2644072,7.6965537,1,0,-9,49,0,4,81.508461,0,0,0,66,2,2,3,2,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5574496,7.7355099,0,0,30.4,46.790001,52.919998,44.939999,3,1,1,0,0,9,3,1,650,689813.19,0,0,2709.8284 -10841,13330,24241,-9,24242,24243,1,1,0,28,2,0,0,0,3,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-984.21545,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,4,2,0,0,9,1,0,585,110795.8,0,0,273.2175 -10841,13331,24242,24243,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,8.8966208,8.6218815,0,1,0,-9,45,0,-2,106.96032,0,0,0,67,1,4,1,2,2,2019,1,3,8,0,38,38,15,1,0,1,0,18.737793,18.737793,0,0,0,0,0,0,0,5.48,1,1,0,.40784237,0,7.7238107,3,60.119999,54.799999,57.16,56.150002,5,3,4,0,0,9,5,0,967,2644772.5,0,0,4558.7769 -10841,13331,24243,24242,-9,-9,3,1,1,67,1,0,0,0,1,-9,2,1,0,0,4,8.0615282,7.993701,6.8136277,1,0,-9,45,0,2,54.583096,0,0,0,65,2,4,1,3,3,2019,1,2,6,0,40,38,15,1,0,1,0,7.4650044,7.4650044,0,0,0,0,0,0,0,0,1,1,0,3.8944626,6.7737455,0,0,57.16,56.150002,60.119999,54.799999,6,3,4,0,0,9,5,0,967,2644772.5,0,0,4558.7769 -10842,13332,24244,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.1332617,8.3701305,0,3,0,0,0,-9,0,-981.95026,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,37,37,15,1,1,-9,0,11.756561,11.756561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.139999,44,-9,-9,5,1,1,0,1,11,4,1,1340,462984.69,0,0,2374.7219 -10842,13333,24245,-9,24244,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,6.8859711,6.8898811,0,3,0,0,0,-9,0,-904.3194,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,7,60,40,15,1,1,-9,1,1.9438514,1.9438514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.17,58.459999,-9,-9,4,1,1,0,1,11,2,1,590,-16391.912,0,0,103.8868 -10842,13334,24246,-9,24244,-9,3,1,1,21,2,0,0,0,2,-9,3,3,0,0,4,7.6052003,7.8932743,5.4683347,3,0,0,0,-9,0,-933.18579,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,7,5,70,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4808192,0,0,0,26.440001,62.16,-9,-9,5,1,1,1,1,11,3,1,246,115033.61,0,0,3114.0356 -10843,13335,24247,-9,24250,24249,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.5104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,0,997.75,97337.234,0,0,2792.5442 -10843,13335,24248,-9,24250,24249,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.7417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,11,4,0,997.75,97337.234,0,0,2792.5442 -10843,13335,24249,24250,-9,-9,3,1,1,29,1,0,2,0,2,-9,2,1,0,0,3,8.5281305,8.6300402,0,2,0,-9,6,0,-2,90.639885,0,1,0,31,2,4,1,-9,-9,2019,1,1,12,0,45,40,15,1,0,1,0,13.206435,13.206435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,49.099998,41.02,59.77,6,1,1,0,0,11,4,0,997.75,97337.234,0,0,2792.5442 -10843,13335,24250,24249,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,0,4,7.15135,7.2701111,0,2,0,-9,6,0,2,-117.01221,0,0,1,29,2,3,1,3,3,2019,1,3,8,0,16,14,15,1,0,1,0,8.8751392,8.8751392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.02,59.77,45.560001,49.099998,5,1,1,0,0,11,4,0,997.75,97337.234,0,0,2792.5442 -10844,13336,24251,24252,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.8183689,7.2648783,1,0,-9,54,0,1,-16.739256,0,0,0,77,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.1655059,7.381279,121.95383,1,49.869999,44.610001,34.16,45.59,6,1,1,0,0,2,3,1,2232.5,777178.75,0,0,2523.4299 -10844,13336,24252,24251,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,1,2,0,6.8286605,7.0531411,1,0,-9,54,0,-1,-46.012791,0,0,0,78,2,3,3,3,2,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,1,0,127.84569,0,0,0,0,0,1,1,0,2.2085454,7.2934966,0,0,34.16,45.59,49.869999,44.610001,3,1,1,0,0,2,3,1,2232.5,777178.75,0,0,2523.4299 -10845,13337,24253,24254,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,7.850852,7.8742476,0,1,0,-9,29,0,-3,14.630427,0,0,0,56,3,2,3,3,3,2019,2,2,20,8,35,40,15,1,1,3,0,6.141974,6.141974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.049999,44.110001,38.040001,31.33,3,1,1,0,1,11,3,1,826.5,267667.19,0,0,1465.2866 -10845,13337,24254,24253,-9,-9,2,1,1,56,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,29,0,3,-97.143394,0,0,0,53,3,4,1,2,3,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.040001,31.33,36.049999,44.110001,3,1,1,1,1,11,3,1,826.5,267667.19,0,0,1465.2866 -10846,13338,24255,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,7.2979016,7.4334974,0,3,0,0,0,-9,0,-1082.2546,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,36,38,15,1,0,-9,0,5.046032,5.046032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,2,3,0,716,14950.407,0,0,213.1963 -10847,13339,24256,24257,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,0,4,0,6.6456757,6.8741999,1,0,-9,44,0,4,-76.221771,0,0,0,61,2,3,3,-9,-9,2019,4,2,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9751012,6.9117513,0,0,57.16,56.150002,36.779999,41.130001,6,1,1,0,0,5,2,1,700.5,541688.25,0,0,1673.7771 -10847,13339,24257,24256,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,4.2663498,4.1099548,1,0,-9,44,0,-4,-125.29732,0,0,0,65,3,4,3,-9,-9,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5234268,4.2804928,0,0,36.779999,41.130001,57.16,56.150002,4,1,1,0,0,5,2,1,700.5,541688.25,0,0,1673.7771 -10848,13340,24258,-9,24260,24259,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-827.16333,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,604.75,609462.19,0,0,2721.5784 -10848,13340,24259,24260,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,0,5,9.275301,9.3017092,0,2,0,-9,2,0,7,80.6036,0,0,0,30,2,4,1,2,1,2019,1,2,17,5,72,60,15,1,1,1,0,15.453424,15.453424,0,0,0,0,0,0,0,0,1,1,0,2.9815698,0,0,0,24.809999,67.279999,33.049999,57.869999,3,1,1,0,0,7,5,1,604.75,609462.19,0,0,2721.5784 -10848,13340,24260,24259,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,0,4,6.8382483,6.3925629,0,2,0,-9,2,0,-7,-2.7320671,0,0,1,37,1,5,1,-9,-9,2019,1,1,12,0,12,11,15,1,0,1,0,8.8503704,8.8503704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.049999,57.869999,24.809999,67.279999,4,1,1,0,0,7,5,1,604.75,609462.19,0,0,2721.5784 -10848,13340,24261,-9,24260,24259,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.85809,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,604.75,609462.19,0,0,2721.5784 -10849,13341,24262,-9,-9,-9,1,1,1,22,2,0,0,0,1,1,2,1,0,0,4,9.018816,8.4894199,0,3,0,0,0,-9,0,-893.41675,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,40,0,15,1,1,-9,0,18.091372,18.091372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.809999,65.690002,-9,-9,6,1,1,0,0,8,5,0,1684,30566.402,0,0,2802.5955 -10850,13342,24263,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,4.4597402,4.2608485,0,3,0,0,0,-9,0,-1016.5915,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.91,24.309999,-9,-9,7,1,1,0,0,4,2,1,484,-37640.344,0,0,1719.2021 -10851,13343,24264,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,4,7.5566292,7.5102386,0,3,0,0,0,-9,0,-1080.4592,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,18,18,15,1,0,-9,0,11.401793,11.401793,0,0,0,0,0,0,0,0,0,0,0,5.6884742,0,0,0,37.830002,60.91,-9,-9,3,1,1,0,0,2,3,1,431,135983.78,0,0,568.32263 -10852,13344,24265,24266,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,3,8.2132854,7.8943806,0,1,0,-9,8,0,-3,23.315609,0,0,0,55,2,3,1,2,2,2019,1,2,12,0,37,39,15,1,0,1,0,10.090278,10.090278,0,0,0,0,0,0,0,0,0,0,0,4.3956485,0,0,0,39.880001,47.82,46.610001,56.93,4,1,1,0,0,6,5,1,1379,491281.56,0,0,2677.4102 -10852,13344,24266,24265,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.5726223,8.6482801,0,1,0,-9,8,0,3,-145.54454,0,0,0,52,3,3,1,3,3,2019,1,1,12,0,39,39,15,1,0,1,0,15.861345,15.861345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.610001,56.93,39.880001,47.82,5,1,1,0,0,6,5,1,1379,491281.56,0,0,2677.4102 -10853,13345,24267,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,3,8.5105352,8.5325613,0,3,0,0,0,-9,0,-927.89648,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,4,0,35,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,6,2,3,0,0,8,5,1,1169,106734.66,0,0,1377.9496 -10853,13346,24268,-9,24267,-9,2,1,1,26,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-955.97736,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.450001,45.880001,-9,-9,4,2,3,1,0,8,1,1,843,-5378.7715,0,0,0 -10854,13347,24269,-9,24271,24270,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.7415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,718.75,301123.25,0,0,2825.0259 -10854,13347,24270,24271,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,0,5,8.7566242,8.8694277,0,2,0,-9,5,0,-1,-19.063459,0,0,0,42,2,3,1,2,2,2019,1,2,9,0,60,55,15,1,0,1,0,10.629183,10.629183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,43.709999,56.91,6,1,1,0,0,6,4,1,718.75,301123.25,0,0,2825.0259 -10854,13347,24271,24270,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.1759639,7.3561106,0,2,0,-9,5,0,1,18.210602,0,0,1,41,2,5,1,3,3,2019,1,1,10,0,16,16,15,1,0,1,0,12.30205,12.30205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,57.060001,57.759998,5,1,1,0,0,6,4,1,718.75,301123.25,0,0,2825.0259 -10854,13347,24272,-9,24271,24270,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.26575,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,718.75,301123.25,0,0,2825.0259 -10855,13348,24273,24274,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,4,7.6106467,9.0915709,8.8441086,1,0,-9,6,0,9,-131.92683,0,0,0,53,1,5,1,2,-9,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8358951,8.568387,0,0,52.799999,21.67,58.049999,54.52,6,1,1,0,0,5,5,1,1350,550049.25,0,0,2581.7671 -10855,13348,24274,24273,-9,-9,2,1,0,53,1,0,0,0,1,-9,1,1,0,0,5,4.5656877,4.5258126,0,1,0,-9,6,0,0,113.99697,0,0,0,62,1,4,3,2,2,2019,2,1,7,0,40,43,15,1,0,4,0,.29623964,.29623964,0,0,0,0,0,0,0,0,0,0,0,1.6508663,0,0,0,58.049999,54.52,52.799999,21.67,6,1,1,0,0,5,5,1,1350,550049.25,0,0,2581.7671 -10855,13349,24275,-9,24274,24273,3,1,1,19,2,0,0,0,2,1,3,3,0,0,5,5.9643993,5.9294167,0,3,0,0,0,-9,0,-1063.3778,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1556154,0,0,0,60.02,56.419998,-9,-9,7,1,1,1,0,5,2,1,551,1658.8242,0,0,257.36243 -10856,13350,24276,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,2,1,0,0,4,7.138248,7.3090777,6.1875992,3,0,0,0,-9,0,-926.73279,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,20,20,15,1,0,-9,0,7.2333202,7.2333202,0,0,0,0,0,0,0,0,1,1,0,2.5911317,6.1933608,0,0,55.360001,54.240002,-9,-9,2,1,1,0,1,12,3,1,278,495797.03,0,0,1097.8545 -10857,13351,24277,-9,24279,24280,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.03076,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,776.25,617175.5,0,0,3852.0674 -10857,13351,24278,-9,24279,24280,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.98438,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,5,1,776.25,617175.5,0,0,3852.0674 -10857,13351,24279,24280,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,5,8.5426426,8.7451982,0,2,0,-9,17,0,-6,5.4415288,0,0,1,43,1,5,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,15.55477,15.55477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,49.25,61.25,6,1,1,0,0,11,5,1,776.25,617175.5,0,0,3852.0674 -10857,13351,24280,24279,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,5,8.668952,8.6979694,0,2,0,-9,17,0,6,-21.731005,0,0,0,37,1,5,1,2,1,2019,1,1,10,1,45,44,15,1,0,1,0,21.153503,21.153503,0,0,0,0,0,0,0,0,1,1,0,4.8379912,0,0,0,49.25,61.25,51.73,58.82,6,1,1,0,0,11,5,1,776.25,617175.5,0,0,3852.0674 -10858,13352,24281,-9,24282,24283,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.0396,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,1270.6666,-52859.195,0,0,3332.7615 -10858,13352,24282,24283,-9,-9,1,1,0,24,1,1,1,0,1,-9,2,1,0,0,4,7.4863582,7.515697,0,2,0,-9,2,0,-5,41.99987,0,1,1,29,2,4,1,-9,-9,2019,1,2,12,2,25,25,15,1,0,1,0,11.808796,11.808796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,50,58,6,1,1,0,0,2,3,0,1270.6666,-52859.195,0,0,3332.7615 -10858,13352,24283,24282,-9,-9,2,1,1,29,1,1,1,0,2,-9,2,1,0,0,4,7.8643494,7.911272,0,2,0,-9,2,0,5,-200.40012,-9,1,0,24,1,4,1,-9,-9,2019,1,1,10,1,24,0,15,1,0,1,0,12.414556,12.414556,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,46.5,58.259998,5,4,1,0,0,2,3,0,1270.6666,-52859.195,0,0,3332.7615 -10859,13353,24284,-9,24286,24288,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.3907,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,12,3,1,1184,1041583.5,0,0,3161.5876 -10859,13353,24285,-9,24286,24288,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,6.3561573,6.5090604,0,2,0,0,0,-9,0,-1088.6041,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.029999,57.23,-9,-9,6,1,1,0,0,12,3,1,1184,1041583.5,0,0,3161.5876 -10859,13353,24286,24288,-9,-9,2,1,0,52,1,0,2,0,2,-9,2,1,0,0,4,7.046329,7.4454412,0,2,0,-9,25,0,1,-11.858301,0,0,0,51,1,4,1,2,2,2019,1,1,18,7,23,15,15,1,1,1,0,6.4284306,6.4284306,0,0,0,0,0,0,0,0,1,1,0,.50286812,0,0,0,38.34,62.119999,54.200001,57.490002,3,1,1,0,1,12,3,1,1184,1041583.5,0,0,3161.5876 -10859,13353,24287,-9,24286,24288,5,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.08008,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,1,1184,1041583.5,0,0,3161.5876 -10859,13353,24288,24286,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,8.3081293,8.6837826,0,2,0,-9,25,0,-1,26.599268,0,0,0,52,2,4,1,2,2,2019,1,2,6,0,39,38,15,1,0,1,0,14.875533,14.875533,0,0,0,0,0,0,0,0,1,1,0,2.6520596,0,0,0,54.200001,57.490002,38.34,62.119999,6,1,1,0,0,12,3,1,1184,1041583.5,0,0,3161.5876 -10860,13354,24289,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1089.3401,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,12,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.106492,0,11.48667,3,35.84,61.77,-9,-9,3,1,1,0,0,6,1,1,607,284341.44,0,0,2574.2441 -10861,13355,24290,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,1,1,0,0,3,9.0258408,9.031251,7.059906,3,0,-9,0,-9,0,-1123.8815,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,65,0,15,1,0,-9,0,13.518466,13.518466,0,0,0,0,0,0,0,61,0,0,0,0,7.6949821,66.909554,3,54.700001,46.419998,-9,-9,6,4,5,0,0,8,5,0,379,261312.58,0,0,2240.9221 -10862,13356,24291,24292,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,5.8750224,5.69804,1,0,-9,8,0,0,11.258708,0,0,0,69,3,2,3,2,-9,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6621261,0,0,34.82,54.380001,38.240002,36.490002,4,1,1,0,1,12,2,1,1136.5,183146.75,0,0,944.83649 -10862,13356,24292,24291,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,0,-2.1708457,-9,0,0,69,2,3,3,-9,-9,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.0074968,0,0,0,38.240002,36.490002,34.82,54.380001,4,1,1,0,1,12,2,1,1136.5,183146.75,0,0,944.83649 -10863,13357,24293,-9,24294,24295,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1050.8076,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,5,1,286.33334,366976.97,0,0,3746.3611 -10863,13357,24294,24295,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,0,4,8.2456837,8.0377598,0,2,0,-9,1,-9,-2,-35.59734,-9,0,1,36,1,4,1,2,2,2019,1,2,11,2,30,0,15,1,0,1,0,14.164025,14.164025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,44.720001,56.459999,5,1,1,0,0,5,5,1,286.33334,366976.97,0,0,3746.3611 -10863,13357,24295,24294,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,4,8.587347,8.5113773,0,2,0,-9,1,-9,2,-25.236397,-9,0,0,34,2,4,1,-9,-9,2019,1,1,11,0,45,0,15,1,0,1,0,15.349479,15.349479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,56.459999,47,57,5,1,1,0,0,5,5,1,286.33334,366976.97,0,0,3746.3611 -10864,13358,24296,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,-9,0,1,0,-1187.6874,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.610001,49,-9,-9,3,1,1,0,1,13,1,1,220,-69353.93,0,0,1465.7689 -10865,13359,24297,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,2,0,4.7979999,4.7143207,3,0,0,0,-9,0,-1025.3197,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0867128,4.3685341,4.2665854,3,44.009998,32.360001,-9,-9,3,1,1,0,0,5,1,1,339,178754.3,0,0,-282.24493 -10866,13360,24298,24299,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,4.3328319,4.9607363,1,0,-9,2,0,-7,-124.53947,0,0,0,84,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.66070896,4.7593722,0,0,51,46,54,45,5,3,4,0,0,8,2,1,470.5,641946,0,0,971.77258 -10866,13360,24299,24298,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,5.8932166,6.0932326,1,0,-9,52,0,7,-20.485365,0,0,0,77,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.8019466,0,1,54,45,51,46,6,3,4,0,0,8,2,1,470.5,641946,0,0,971.77258 -10866,13361,24300,-9,-9,-9,3,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-964.81848,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,38,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,4,2,0,0,8,1,1,404,-75381.039,0,0,0 -10866,13362,24301,-9,-9,-9,4,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.149106,8.1399679,0,3,0,0,0,-9,0,-914.05005,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,36,15,1,0,-9,0,14.609892,14.609892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,31.200001,-9,-9,4,4,2,0,0,8,4,1,272,-4581.6021,0,0,973.7818 -10867,13363,24302,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,2,1,0,0,3,8.3370457,8.4641542,0,3,0,0,0,-9,0,-1016.7402,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,38,40,15,1,0,-9,0,10.281313,10.281313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,-9,-9,5,1,1,0,0,13,4,1,510,1347129.1,0,0,824.13208 -10868,13364,24303,-9,-9,-9,1,1,0,43,3,0,0,0,1,1,1,1,0,0,2,8.9458771,8.482645,0,3,0,0,0,-9,0,-1032.8251,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,15,5,20,0,15,1,1,-9,0,37.727921,37.727921,0,0,0,0,0,0,0,0,0,0,0,.8485111,0,0,0,58.48,28.629999,-9,-9,6,1,1,0,0,7,5,0,236,197391.59,0,0,3037.6316 -10869,13365,24304,-9,24307,24306,5,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.90918,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,13,2,1,395.25,52500.156,0,0,1462.4825 -10869,13365,24305,-9,24307,24306,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-829.26154,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,1,395.25,52500.156,0,0,1462.4825 -10869,13365,24306,24307,-9,-9,1,1,1,43,1,0,4,0,1,-9,1,1,0,0,4,7.1363459,6.9980273,0,2,0,-9,11,0,-5,93.691589,0,0,0,48,1,5,1,1,2,2019,1,2,6,0,50,0,15,1,0,1,0,2.7713223,2.7713223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,60.02,56.419998,6,1,1,0,0,13,2,1,395.25,52500.156,0,0,1462.4825 -10869,13365,24307,24306,-9,-9,2,1,0,48,1,0,4,0,1,-9,2,1,0,0,5,7.569376,7.3492203,0,2,0,-9,11,0,5,71.497879,0,0,0,43,1,4,1,2,1,2019,1,1,6,0,25,25,15,1,0,1,0,6.9340177,6.9340177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,51.830002,57.200001,6,1,1,0,0,13,2,1,395.25,52500.156,0,0,1462.4825 -10870,13366,24308,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-890.57446,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.259998,38.330002,-9,-9,4,1,1,0,0,2,1,0,764,-29235.127,0,0,1674.4015 -10871,13367,24309,24310,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,7.5884457,8.257226,6.9558682,1,0,-9,41,0,-5,-95.985596,0,0,0,65,1,2,3,2,2,2019,2,2,6,0,16,22,15,1,0,4,0,17.111158,17.111158,0,0,0,0,0,0,0,0,1,1,0,.73446393,7.3038192,0,0,57.16,56.150002,55.599998,47.799999,6,1,1,0,0,10,4,1,251.5,1350883.8,0,0,3882.7642 -10871,13367,24310,24309,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,2,0,7.9448156,7.9427967,1,0,-9,40,0,5,1.2119035,0,0,0,60,1,4,1,3,3,2019,3,1,7,0,0,36,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2246504,0,0,55.599998,47.799999,57.16,56.150002,6,1,1,0,0,10,4,1,251.5,1350883.8,0,0,3882.7642 -10872,13368,24311,24312,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,6,0,0,0,0,64,3,1,3,2,3,2019,4,2,18,6,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.38063,2,51.900002,53.610001,37,25,4,1,1,0,1,10,1,0,756,260536.33,0,0,1947.9694 -10872,13368,24312,24311,-9,-9,2,1,0,64,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,46,0,-6,0,0,0,0,70,2,3,3,2,2,2019,4,1,28,10,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,25,51.900002,53.610001,1,1,1,0,1,10,1,0,756,260536.33,0,0,1947.9694 -10873,13369,24313,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,2,8.0945854,8.5566673,0,3,0,0,0,-9,0,-1053.3812,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,10.808844,10.808844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.810001,51.82,-9,-9,4,1,1,0,0,5,4,1,880,89365.664,0,0,1082.7914 -10873,13370,24314,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,0,2,8.063653,7.8493648,0,3,0,0,0,-9,0,-1049.9877,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,41,35,15,1,0,-9,0,8.4034739,8.4034739,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,50.669998,42.049999,-9,-9,3,1,1,0,0,5,4,1,438,206170.95,0,0,817.51953 -10874,13371,24315,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,4,0,8.0444088,8.0707684,3,0,0,0,-9,0,-998.18939,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8327742,7.8333282,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,6,3,1,933,351259.06,0,0,1657.5941 -10874,13372,24316,-9,-9,-9,2,1,0,59,2,0,0,0,1,-9,1,1,0,0,4,6.7577853,6.7167811,0,3,0,0,0,-9,0,-1029.5195,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,10,4,15,1,0,-9,0,9.7775774,9.7775774,0,0,0,0,0,0,0,0,0,0,0,5.4681835,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,2,1,897,612413.31,0,0,1570.3083 -10875,13373,24317,24318,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,0,3,7.9482198,8.2424908,0,2,0,-9,10,0,9,9.3319674,0,0,0,45,1,4,1,-9,-9,2019,1,1,27,11,35,35,15,1,1,1,0,13.488862,13.488862,0,0,0,0,0,0,0,0,1,1,0,1.4525921,0,0,0,27.559999,56.580002,57.16,56.150002,6,1,1,0,0,12,5,1,897.5,373863.75,0,0,3619.6313 -10875,13373,24318,24317,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,0,4,8.7058544,8.7760954,0,2,0,-9,10,0,0,53.228619,0,0,0,54,2,3,1,3,2,2019,1,2,0,0,40,41,15,1,0,1,0,22.772255,22.772255,0,0,0,0,0,0,0,0,1,1,0,4.5951996,0,0,0,57.16,56.150002,27.559999,56.580002,6,1,1,0,0,12,5,1,897.5,373863.75,0,0,3619.6313 -10876,13374,24319,24320,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,38,0,6,0,0,0,0,63,3,2,3,-9,-9,2019,4,1,16,3,0,0,15,4,0,3,0,0,0,1,0,121.73338,0,0,0,0,0,1,1,0,0,0,0,0,32.330002,21.690001,42.459999,41.619999,5,1,1,0,0,9,1,0,486.5,380073.5,0,0,1070.0148 -10876,13374,24320,24319,-9,-9,1,1,0,63,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,38,0,-6,0,0,0,0,69,3,1,3,-9,-9,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.84475,1,42.459999,41.619999,32.330002,21.690001,6,1,1,1,0,9,1,0,486.5,380073.5,0,0,1070.0148 -10877,13375,24321,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,3,8.2576523,8.6947794,0,3,0,0,0,-9,0,-1105.9182,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,38,15,1,0,-9,0,13.541634,13.541634,0,0,0,0,0,0,0,7,1,1,0,0,0,5.8264751,3,60.630001,38.200001,-9,-9,5,1,1,0,0,9,4,0,1585,466150.53,0,0,1698.5696 -10878,13376,24322,24324,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,8.548152,8.3107176,0,2,0,-9,18,0,-6,35.031597,0,0,0,56,2,3,1,1,3,2019,1,2,6,0,55,45,15,1,0,1,0,10.138189,10.138189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,33.07,55.18,6,1,1,0,1,5,4,1,282.33334,437968.91,0,0,3145.541 -10878,13376,24323,-9,24322,24324,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1070.0422,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,1,1,0,0,5,4,1,282.33334,437968.91,0,0,3145.541 -10878,13376,24324,24322,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,0,3,8.2056322,8.0123119,0,2,0,-9,6,0,6,12.712062,0,0,0,50,2,4,1,-9,-9,2019,1,1,18,6,43,48,15,1,1,1,0,10.351587,10.351587,0,0,0,0,0,0,0,2,1,1,0,0,0,4.6826544,3,33.07,55.18,51.77,58.57,3,1,1,0,1,5,4,1,282.33334,437968.91,0,0,3145.541 -10879,13377,24325,24328,-9,-9,1,1,0,31,1,0,5,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,8,0,-9,0,1,23,2,2,3,2,2,2019,4,7,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.9243863,1,15.97,64.309998,28.059999,53.830002,4,1,1,1,0,2,1,0,649,6413.5322,0,0,2539.8806 -10879,13377,24326,-9,24325,24328,4,1,0,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-946.05212,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,1,0,649,6413.5322,0,0,2539.8806 -10879,13377,24327,-9,24325,24328,5,1,1,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1003.956,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,649,6413.5322,0,0,2539.8806 -10879,13377,24328,24325,-9,-9,7,1,1,23,1,0,5,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,1,-9,-8,0,-9,1,0,31,3,3,3,-9,-9,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.059999,53.830002,15.97,64.309998,3,4,1,0,0,2,1,0,649,6413.5322,0,0,2539.8806 -10879,13377,24329,-9,24325,24328,6,1,0,3,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-933.03949,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,1,0,649,6413.5322,0,0,2539.8806 -10880,13378,24330,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,5.696774,6.1597204,3,0,0,0,-9,0,-982.55493,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5744174,5.7749729,0,0,56.18,53.849998,-9,-9,6,1,1,0,0,6,2,1,588,253527.09,0,0,1656.2168 -10881,13379,24331,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,0,4,7.8267498,8.0142479,0,3,0,0,0,-9,0,-965.9978,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,42,15,1,0,-9,0,6.8691106,6.8691106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.310001,50.610001,-9,-9,6,1,1,0,0,9,3,1,2245,54090.105,0,0,922.09021 -10882,13380,24332,24333,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.8297539,7.9374642,2.7910779,1,0,-9,37,0,-5,47.914539,0,0,0,64,1,2,3,2,2,2019,2,1,9,1,27,26,15,1,0,4,0,11.249963,11.249963,0,0,0,0,0,0,0,2,0,0,0,3.2187042,3.1642222,4.7966814,3,64.150002,32.529999,45.060001,41.77,5,1,1,0,0,9,4,1,621,1919984.8,0,0,1620.785 -10882,13380,24333,24332,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,2,0,7.7474494,7.8919749,1,0,-9,37,0,5,37.823009,0,0,0,59,3,3,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.853653,7.7928448,0,0,45.060001,41.77,64.150002,32.529999,6,1,1,0,0,9,4,1,621,1919984.8,0,0,1620.785 -10883,13381,24334,-9,24335,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-963.38123,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,5,0,902.5,-13414.645,0,0,1882.401 -10883,13381,24335,-9,-9,-9,1,1,0,35,2,0,1,0,1,-9,2,1,0,0,3,8.8836908,8.9172096,0,4,0,0,0,-9,0,-1053.0983,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,24,12,46,50,15,1,1,-9,0,13.095148,13.095148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.93,60.889999,-9,-9,2,3,4,0,0,8,5,0,902.5,-13414.645,0,0,1882.401 -10884,13382,24336,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,4,7.8869619,8.4960814,6.9877338,3,0,0,0,-9,0,-1151.507,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,30,15,1,0,-9,0,7.2129583,7.2129583,0,0,0,0,0,0,0,0,1,1,0,6.4093385,6.9612174,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,10,4,1,1145,1445326.1,0,0,1916.4337 -10885,13383,24337,24338,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,4.8735662,5.4948893,1,0,-9,37,0,-10,-115.06857,0,0,0,81,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.7754233,5.1503873,8.4048805,1,67.120003,15.13,59.950001,31.809999,6,1,1,0,0,6,2,0,1489,60970.082,0,0,2108.3789 -10885,13383,24338,24337,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,37,0,10,19.373665,0,0,0,71,2,2,3,3,-9,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,.38391963,0,69.895332,1,59.950001,31.809999,67.120003,15.13,6,1,1,0,0,6,2,0,1489,60970.082,0,0,2108.3789 -10886,13384,24339,24342,-9,-9,2,1,1,36,1,1,4,0,1,-9,1,1,0,0,3,7.7974586,7.9420676,0,2,0,-9,7,0,3,120.00104,0,0,0,33,3,3,3,-9,-9,2019,2,1,6,0,40,40,15,1,0,3,0,8.007081,8.007081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.540001,38.990002,41.639999,38.990002,5,2,3,0,0,5,2,1,732.16669,126719.88,0,0,2007.8533 -10886,13384,24340,-9,24342,24339,6,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-915.97791,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,5,2,1,732.16669,126719.88,0,0,2007.8533 -10886,13384,24341,-9,24342,24339,3,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.5603,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,2,1,732.16669,126719.88,0,0,2007.8533 -10886,13384,24342,24339,-9,-9,1,1,0,33,1,1,4,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,-3,11.193621,0,0,1,36,1,3,1,3,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,38.990002,41.540001,38.990002,4,2,3,0,1,5,2,1,732.16669,126719.88,0,0,2007.8533 -10886,13384,24343,-9,24342,24339,5,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.37805,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,5,2,1,732.16669,126719.88,0,0,2007.8533 -10886,13384,24344,-9,24342,24339,4,1,1,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.09625,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,2,1,732.16669,126719.88,0,0,2007.8533 -10887,13385,24345,24346,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,1,3,6.2885375,6.3148446,0,1,0,-9,27,0,-28,-138.47238,0,0,0,78,3,1,3,2,2,2019,2,1,12,1,34,0,15,1,0,3,0,1.9243687,1.9243687,0,0,0,0,0,0,0,92,1,1,0,0,0,116.22972,1,44.91,28.02,36.610001,17.549999,5,1,1,0,1,2,2,0,615,86679.641,0,0,3775.8794 -10887,13385,24346,24345,-9,-9,1,1,0,78,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,29,0,28,47.421452,0,0,0,50,3,3,1,2,3,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,1,124.7753,115.68494,0,0,0,1143.7789,120,1,1,0,0,0,115.18116,1,36.610001,17.549999,44.91,28.02,3,1,1,1,1,2,2,0,615,86679.641,0,0,3775.8794 -10888,13386,24347,-9,-9,-9,1,1,0,74,2,0,0,0,3,-9,4,3,0,0,5,0,6.369173,6.2530022,3,0,0,0,-9,0,-980.95825,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6681285,6.4765391,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,12,2,1,483,-91081.422,0,0,1693.9318 -10889,13387,24348,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,6.9089503,6.7056136,3,0,0,0,-9,0,-1116.1196,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8622696,6.5597568,0,0,59.950001,25.68,-9,-9,6,4,2,0,0,6,2,1,1739,257552.22,0,0,1625.6257 -10890,13388,24349,24351,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,9.5748358,8.8928881,0,2,0,-9,9,0,-1,-109.3841,0,0,0,37,1,4,1,1,1,2019,1,2,15,4,55,55,15,1,1,1,0,22.991322,22.991322,0,0,0,0,0,0,0,0,1,1,0,4.2068944,0,0,0,33.009998,63.169998,39.900002,57.259998,6,1,1,0,0,12,5,1,347.66666,447169.72,0,0,7412.1504 -10890,13388,24350,-9,24351,24349,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-912.53461,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,5,1,347.66666,447169.72,0,0,7412.1504 -10890,13388,24351,24349,-9,-9,2,1,0,37,1,1,1,0,1,-9,5,1,0,0,4,9.1518335,9.0828743,0,2,0,-9,9,0,1,-41.705441,0,0,1,36,2,4,1,-9,-9,2019,1,1,15,6,45,45,15,1,1,1,0,28.614649,28.614649,0,0,0,0,0,0,0,0,1,1,0,7.3007717,0,0,0,39.900002,57.259998,33.009998,63.169998,6,1,1,0,0,12,5,1,347.66666,447169.72,0,0,7412.1504 -10891,13389,24352,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,1,0,6.6263046,6.157999,3,0,0,0,-9,0,-987.9021,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,17.200388,0,4.7921672,0,0,1,1,0,0,6.4351244,0,0,45.630001,21.209999,-9,-9,6,1,1,0,0,11,2,0,452,285358.16,0,0,2368.1843 -10892,13390,24353,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,4,7.8348227,7.5668054,0,3,0,0,0,-9,0,-949.14789,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,36,36,15,1,0,-9,0,6.8111153,6.8111153,0,0,0,0,0,0,0,0,0,0,0,3.2002325,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,482,-13021.574,0,0,306.60431 -10893,13391,24354,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1093.4818,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.083848,0,0,0,1,1,0,0,0,0,0,33.73,21.25,-9,-9,6,1,1,0,0,11,1,0,1405,135209.88,0,0,1074.1606 -10894,13392,24355,24358,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,8.2125378,8.2927532,0,2,0,-9,18,0,-3,2.6368668,0,0,1,40,2,2,1,2,2,2019,1,2,12,0,35,33,15,1,0,1,0,13.388167,13.388167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,55.310001,38.169998,42.150002,5,1,1,0,0,7,4,1,735,129365.47,0,0,3818.2737 -10894,13392,24356,-9,24355,24358,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.67047,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,1,735,129365.47,0,0,3818.2737 -10894,13392,24357,-9,24355,24358,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1080.7958,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,7,4,1,735,129365.47,0,0,3818.2737 -10894,13392,24358,24355,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,2,8.7547083,8.7907467,0,2,0,-9,18,0,3,-21.42321,0,0,0,37,2,4,1,1,1,2019,1,1,17,5,35,28,15,1,1,1,0,19.285549,19.285549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.169998,42.150002,50.009998,55.310001,4,1,1,0,0,7,4,1,735,129365.47,0,0,3818.2737 -10895,13393,24359,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,4,8.7093763,8.8684464,0,3,0,0,0,-9,0,-1122.8905,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,40,50,15,1,0,-9,0,15.406627,15.406627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,600,-71711.188,0,0,2412.9705 -10896,13394,24360,24361,-9,-9,1,1,1,53,1,0,0,0,1,-9,1,1,0,0,4,9.5701342,9.749774,0,1,0,-9,2,0,-3,92.217918,0,0,0,56,1,4,1,3,2,2019,1,2,6,0,20,0,15,1,0,1,0,90.973579,90.973579,0,0,0,0,0,0,0,0,0,0,0,8.40312,0,0,0,54.790001,55.860001,47.02,52.470001,6,1,1,0,0,10,5,1,761,400570.5,0,0,11665.472 -10896,13394,24361,24360,-9,-9,2,1,0,56,1,0,0,0,1,-9,1,1,0,0,4,7.8927937,8.0780935,0,1,0,-9,2,0,3,46.607464,0,0,0,53,1,4,1,2,2,2019,1,1,16,5,25,27,15,1,1,1,0,12.520023,12.520023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.02,52.470001,54.790001,55.860001,3,1,1,0,0,10,5,1,761,400570.5,0,0,11665.472 -10897,13395,24362,24363,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-3,-18.523542,0,0,0,80,2,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.43584877,0,18.283348,1,44.779999,56.369999,38.009998,24.67,5,1,1,0,0,13,2,1,929.5,149358.7,0,0,2322.5085 -10897,13395,24363,24362,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,1,0,6.0767913,6.0832024,1,0,-9,8,0,3,71.314507,0,0,0,77,3,3,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,7.923872,0,0,0,0,0,1,1,0,0,5.8863707,0,0,38.009998,24.67,44.779999,56.369999,4,1,1,0,0,13,2,1,929.5,149358.7,0,0,2322.5085 -10898,13396,24364,24365,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.0884781,7.9659014,3.719763,1,0,-9,2,0,1,71.695381,0,1,0,28,1,5,1,-9,-9,2019,1,2,7,1,45,0,15,1,0,1,0,10.464238,10.464238,0,0,0,0,0,0,0,0,0,0,0,3.9566667,0,0,0,55.759998,52.639999,57.060001,57.759998,5,1,1,0,0,4,4,0,732,72591.547,0,0,2547.022 -10898,13396,24365,24364,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,5,8.1978712,8.1497145,0,1,0,-9,2,0,-1,-18.766708,0,1,1,29,1,4,1,-9,-9,2019,1,1,4,0,38,42,15,1,0,1,0,8.4275665,8.4275665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,55.759998,52.639999,7,1,1,0,0,4,4,0,732,72591.547,0,0,2547.022 -10899,13397,24366,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,5.6678047,5.6855831,3,0,0,0,-9,0,-1009.876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.813611,5.7015915,0,0,62.27,32.41,-9,-9,6,1,1,0,0,4,2,1,1555,58419.176,0,0,-22.131449 -10900,13398,24367,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,7.4334679,7.3091698,0,3,0,0,0,-9,0,-904.16827,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,28,23,15,1,0,-9,0,7.4792633,7.4792633,0,0,0,0,0,0,0,0,0,0,0,.66158742,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,7,3,1,512,23423.844,0,0,2562.3496 -10900,13399,24368,-9,24367,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.0150423,7.8005137,0,3,0,0,0,-9,0,-1022.7254,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,40,15,1,0,-9,1,7.1928,7.1928,0,0,0,0,0,0,0,0,0,0,0,1.5255464,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,3,1,405,3622.0256,0,0,780.55646 -10901,13400,24369,-9,24371,24370,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.8090138,7.5950022,0,3,0,0,0,-9,0,-1094.6759,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,40,39,15,1,0,-9,1,7.7988539,7.7988539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,8,3,1,1112,-33748.984,0,0,1253.1567 -10901,13401,24370,24371,-9,-9,3,1,1,49,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,5,0,2,169.31754,0,0,0,47,2,3,1,-9,-9,2019,1,1,9,1,60,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.7389126,0,0,0,53,55,52.57,52.889999,6,4,1,0,0,8,2,1,1067.5,-63297.484,0,0,80426.688 -10901,13401,24371,24370,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,6.7219877,7.0171566,0,1,0,-9,5,0,-2,56.622002,0,0,0,49,1,4,1,-9,-9,2019,1,3,11,0,37,0,15,1,0,1,0,3.44048,3.44048,0,0,0,0,0,0,0,0,0,0,0,1.1113883,0,0,0,52.57,52.889999,53,55,4,1,1,0,0,8,2,1,1067.5,-63297.484,0,0,80426.688 -10902,13402,24372,24373,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.0093279,6.9128842,1,0,-9,9,0,0,-5.7737055,0,0,0,69,2,4,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.3000076,7.0690017,2.5737336,3,53.959999,48.029999,65.599998,48.209999,6,1,1,0,0,13,2,1,901,472507.66,0,0,1291.2234 -10902,13402,24373,24372,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,0,128.65919,0,0,0,69,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.599998,48.209999,53.959999,48.029999,6,4,1,0,0,13,2,1,901,472507.66,0,0,1291.2234 -10903,13403,24374,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,0,4,8.5783691,8.7277679,6.465014,4,0,-9,0,1,0,-988.41925,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,37,37,15,1,1,-9,0,21.632076,21.632076,0,0,0,0,0,0,0,2,1,1,0,6.3517828,0,10.497563,3,31.780001,59.650002,-9,-9,4,1,1,0,0,11,4,1,608,1213238,0,0,1945.5045 -10904,13404,24375,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,1,1,0,0,4,7.9486222,8.2666273,5.7404141,3,0,0,0,-9,0,-971.59833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,50,60,15,1,0,-9,0,6.5628839,6.5628839,0,0,0,0,0,0,0,0,1,1,0,5.7258286,5.4513421,0,0,59.709999,50.889999,-9,-9,6,1,1,0,0,10,4,1,323,-175341.09,0,0,1362.0099 -10905,13405,24376,24377,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,5,8.6365423,8.6647768,0,2,0,-9,27,0,-1,-43.657772,0,0,0,52,1,5,1,2,2,2019,1,2,11,0,45,50,15,1,0,1,0,15.970673,15.970673,0,0,0,0,0,0,0,0,1,1,0,2.3893576,0,0,0,55.09,55.869999,51.73,58.82,6,1,1,0,0,7,5,1,500,1476268.9,0,0,3962.0388 -10905,13405,24377,24376,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,0,5,8.550519,8.4278355,0,2,0,-9,27,0,1,-22.898472,0,0,0,51,1,5,1,2,1,2019,1,1,7,0,44,39,15,1,0,1,0,12.780952,12.780952,0,0,0,0,0,0,0,0,1,1,0,1.6940019,0,0,0,51.73,58.82,55.09,55.869999,6,1,1,0,0,7,5,1,500,1476268.9,0,0,3962.0388 -10905,13405,24378,-9,24376,24377,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.51721,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.630001,63.110001,-9,-9,5,1,1,0,0,7,5,1,500,1476268.9,0,0,3962.0388 -10905,13406,24379,-9,24376,24377,3,1,1,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1031.0894,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.570812,0,0,0,55.630001,55.599998,-9,-9,6,1,1,0,0,7,1,1,958,0,0,0,-1127.6213 -10906,13407,24380,24381,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,0,4,7.1107903,6.9809155,0,1,0,-9,27,0,8,-119.91978,0,0,0,56,2,4,3,2,2,2019,2,2,11,0,55,50,15,1,0,3,0,2.9466028,2.9466028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,47.970001,56.110001,6,1,1,0,0,6,2,1,339.5,-15448.926,0,0,2063.9788 -10906,13407,24381,24380,-9,-9,2,1,0,56,1,0,0,0,2,-9,3,3,0,0,4,0,5.4276619,5.4743495,1,0,-9,27,0,-8,57.589127,0,0,0,64,3,4,1,3,3,2019,3,1,11,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1392214,5.6211948,0,0,47.970001,56.110001,54.200001,57.490002,4,1,1,1,0,6,2,1,339.5,-15448.926,0,0,2063.9788 -10906,13408,24382,-9,24381,24380,3,1,0,19,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-961.24017,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.099998,59.990002,-9,-9,6,1,1,0,0,6,1,1,283,0,0,0,0 -10906,13409,24383,-9,24381,24380,4,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.0516615,7.9732919,0,3,0,0,0,-9,0,-1090.6123,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,48,0,15,1,0,-9,1,7.8121524,7.8121524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.48,63.439999,-9,-9,4,1,1,0,0,6,4,1,732,0,0,0,1990.0808 -10907,13410,24384,24385,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-3,-17.989752,0,0,0,79,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.029999,45.369999,57.330002,53.459999,7,1,1,0,0,5,2,1,788,401757.78,0,0,1544.4646 -10907,13410,24385,24384,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,6.4457808,6.7423487,1,0,-9,56,0,3,-110.13761,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5686893,0,0,57.330002,53.459999,60.029999,45.369999,7,1,1,0,0,5,2,1,788,401757.78,0,0,1544.4646 -10908,13411,24386,24387,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,0,2,8.2843227,8.2630892,0,1,0,-9,11,0,9,-18.659929,0,0,0,42,2,3,1,2,1,2019,1,2,14,2,37,37,15,1,0,1,0,13.17558,13.17558,0,0,0,0,0,0,0,0,0,0,0,2.6439285,0,0,0,43.389999,46.73,32.880001,55.080002,5,1,1,0,0,5,4,1,685.5,1044430,0,0,2282.051 -10908,13411,24387,24386,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,3,7.7299457,7.543211,0,1,0,-9,11,0,0,-6.6576858,0,0,1,51,1,2,1,2,2,2019,1,1,18,6,20,15,15,1,1,1,0,12.36445,12.36445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.880001,55.080002,43.389999,46.73,3,1,1,0,0,5,4,1,685.5,1044430,0,0,2282.051 -10909,13412,24388,24389,-9,-9,2,1,0,51,1,0,0,0,3,-9,3,3,0,0,2,7.0369191,6.7250609,0,1,0,-9,7,0,-5,59.885475,0,0,0,56,2,4,1,-9,-9,2019,3,1,14,2,20,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4609907,0,0,0,30.690001,47.32,60.119999,54.799999,4,1,1,1,0,5,5,1,1483,52500.898,0,0,3580.616 -10909,13412,24389,24388,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.5703259,8.5019674,6.7417884,1,0,-9,7,0,5,54.017246,0,0,0,51,3,2,3,2,2,2019,2,2,3,0,42,48,15,1,0,3,0,16.772142,16.772142,0,0,0,0,0,0,0,0,0,0,0,7.024157,7.1483874,0,0,60.119999,54.799999,30.690001,47.32,7,1,1,0,0,5,5,1,1483,52500.898,0,0,3580.616 -10910,13413,24390,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,5.4187384,5.5500555,3,0,0,0,-9,0,-984.86658,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3663754,0,0,46.5,58.259998,-9,-9,3,1,1,0,0,11,2,1,391,283037.5,0,0,1389.1188 -10911,13414,24391,24392,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,2,8.0161791,8.239048,0,1,0,-9,38,0,0,-4.1216865,0,0,0,62,1,4,3,3,1,2019,2,1,11,1,50,65,15,1,0,3,0,9.4783278,9.4783278,0,0,0,0,0,0,0,0,0,0,0,7.0470104,0,0,0,42.880001,45.529999,54.34,53.290001,4,1,1,0,0,6,3,0,516.5,532207.13,0,0,-385.77029 -10911,13414,24392,24391,-9,-9,1,1,0,62,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,38,0,0,-44.879864,0,0,0,62,1,2,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,53.290001,42.880001,45.529999,6,1,1,0,0,6,3,0,516.5,532207.13,0,0,-385.77029 -10912,13415,24393,-9,24395,24394,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1075.3231,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,1,3,0,668.33331,367402.72,0,0,1803.6617 -10912,13415,24394,24395,-9,-9,1,1,1,44,1,0,1,0,2,-9,1,1,0,0,3,8.2387352,8.6523542,0,2,0,-9,10,0,0,-60.70277,0,0,0,44,3,2,3,2,1,2019,2,2,12,1,40,45,15,1,0,3,0,9.8998899,9.8998899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.540001,54.119999,44.389999,39.119999,4,1,1,0,0,1,3,0,668.33331,367402.72,0,0,1803.6617 -10912,13415,24395,24394,-9,-9,2,1,0,44,1,0,1,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,10,0,0,105.56987,0,0,1,44,2,3,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1132793,0,0,0,44.389999,39.119999,38.540001,54.119999,4,1,1,1,0,1,3,0,668.33331,367402.72,0,0,1803.6617 -10912,13416,24396,-9,24395,24394,3,1,0,20,2,0,1,0,2,-9,11,3,0,0,4,8.0164909,8.2550421,0,3,0,0,0,-9,0,-1121.7603,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,1,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,6,1,1,0,0,1,4,0,2359,12079.613,0,0,544.56946 -10913,13417,24397,-9,-9,-9,1,1,0,27,2,0,0,0,1,0,7,2,0,0,4,6.3694277,6.3699145,0,3,0,0,0,-9,0,-862.56525,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.740002,63,-9,-9,6,2,3,0,0,4,2,1,87,-79666.258,0,0,1073.2577 -10914,13418,24398,-9,24399,-9,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-947.84216,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,222.5,-60419.121,0,0,1488.9497 -10914,13418,24399,-9,-9,-9,1,1,0,55,3,0,1,0,3,-9,3,3,0,0,4,0,6.2908521,6.8688297,4,0,0,0,-9,0,-1032.7147,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,36,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5193939,0,0,58.150002,52.91,-9,-9,5,3,4,1,0,8,2,0,222.5,-60419.121,0,0,1488.9497 -10914,13419,24400,-9,24399,-9,2,1,0,23,2,0,1,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1020.8171,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,22,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.32,58.470001,-9,-9,4,3,4,1,0,8,1,0,353,-40188.383,0,0,11.627123 -10915,13420,24401,24402,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,51,0,-4,0,0,0,0,78,3,3,3,2,-9,2019,4,2,26,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.28345,1,36.220001,17.49,54,46,4,1,1,0,1,7,1,0,963.5,489483.13,0,0,1973.4241 -10915,13420,24402,24401,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,4,0,0,0,0,74,3,1,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4720945,0,0,0,54,46,36.220001,17.49,6,1,1,0,0,7,1,0,963.5,489483.13,0,0,1973.4241 -10916,13421,24403,24404,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,5,7.6891232,7.3888011,0,1,0,-9,2,0,-5,-148.0672,0,1,1,27,2,4,1,2,1,2019,1,2,4,0,28,40,15,1,0,1,0,6.1107669,6.1107669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.669998,60.18,43.959999,62.060001,6,1,1,0,0,1,3,0,143.5,-57406.809,0,0,2084.7039 -10916,13421,24404,24403,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,0,4,7.4111996,7.392138,0,1,0,-9,2,0,5,78.223373,0,1,0,22,2,5,1,-9,-9,2019,1,1,13,2,24,40,15,1,0,1,0,6.4069138,6.4069138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.959999,62.060001,51.669998,60.18,4,1,1,0,0,1,3,0,143.5,-57406.809,0,0,2084.7039 -10917,13422,24405,24407,-9,-9,2,1,0,53,1,0,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,10,0,3,10.040753,0,0,0,50,3,3,1,1,1,2019,3,1,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.060001,57.759998,49.799999,54.330002,7,1,1,0,0,2,3,1,443.33334,937887.69,0,0,1883.2177 -10917,13422,24406,-9,24405,24407,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.1855,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,443.33334,937887.69,0,0,1883.2177 -10917,13422,24407,24405,-9,-9,1,1,1,50,1,0,1,0,3,-9,2,1,0,0,3,8.0245981,8.2773733,0,2,0,-9,10,0,-3,-14.906801,0,0,0,53,1,5,3,3,3,2019,2,2,12,0,40,40,15,1,0,3,0,10.175986,10.175986,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.799999,54.330002,57.060001,57.759998,4,1,1,0,1,2,3,1,443.33334,937887.69,0,0,1883.2177 -10918,13423,24408,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-936.25708,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6971242,0,0,0,53,40.540001,-9,-9,6,1,1,0,0,1,1,1,706,-34160.477,0,0,1529.9669 -10919,13424,24409,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,3,3,0,0,3,0,6.9677882,6.6946878,3,0,0,0,-9,0,-1177.2467,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,5,0,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2076869,7.1974401,0,0,64.220001,47.549999,-9,-9,6,1,1,1,0,7,2,1,99,946804.06,0,0,123.96393 -10919,13425,24410,-9,24409,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,8.0586882,8.4469566,0,3,0,0,0,-9,0,-1105.3136,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,22,9,20,60,15,1,1,-9,1,20.142805,20.142805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.610001,62.709999,-9,-9,3,1,1,0,0,7,4,1,464,148660.45,0,0,1594.3845 -10920,13426,24411,-9,24413,-9,2,1,1,16,2,0,2,0,2,-9,3,2,0,0,3,0,0,0,3,0,0,0,-9,0,-980.81549,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.84,61.77,-9,-9,3,1,1,1,0,9,2,0,1147,-29310.705,0,0,1633.988 -10920,13426,24412,-9,24413,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-887.93945,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,2,0,1147,-29310.705,0,0,1633.988 -10920,13426,24413,-9,24414,24415,1,1,0,44,2,0,2,0,2,-9,2,1,0,0,4,0,6.7612548,6.652698,3,0,0,0,-9,0,-972.63428,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,11,1,0,39,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8722696,0,0,0,52.34,56.950001,-9,-9,7,1,1,0,0,9,2,0,1147,-29310.705,0,0,1633.988 -10920,13427,24414,24415,-9,-9,4,1,0,67,1,0,2,0,2,-9,4,3,0,0,2,0,7.3209257,7.5425448,2,0,-9,6,0,-2,-15.044834,0,0,0,69,3,3,3,-9,-9,2019,4,5,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.051483121,7.0323691,0,0,65.809998,23.91,53,47,6,1,1,0,0,9,3,0,176,1161670.8,0,0,3051.9028 -10920,13427,24415,24414,-9,-9,5,1,1,69,1,0,2,0,3,-9,4,3,0,0,3,6.5688858,8.2901697,7.9290752,2,0,-9,6,0,2,138.34326,0,0,0,67,2,2,3,-9,-9,2019,4,4,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2273097,7.9868221,0,0,53,47,65.809998,23.91,5,1,1,0,0,9,3,0,176,1161670.8,0,0,3051.9028 -10921,13428,24416,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,1,1,0,0,4,7.7810903,7.5647678,6.2320886,3,0,0,0,-9,0,-816.89862,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,24,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.2407284,6.5768795,3,42.849998,60.330002,-9,-9,6,1,1,0,0,10,3,1,1420,166683.58,0,0,2443.4404 -10922,13429,24417,-9,-9,-9,1,1,0,89,3,0,0,0,1,-9,4,3,0,0,4,0,7.553432,7.7053394,3,0,0,0,-9,0,-1020.7649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.7763429,0,0,62.110001,45.630001,-9,-9,6,1,1,0,0,8,3,1,93,319630.22,0,0,2326.6738 -10923,13430,24418,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,0,2,7.220511,7.2547116,0,3,0,-9,0,-9,0,-966.83203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,6,20,0,15,1,1,-9,0,9.1441555,9.1441555,0,0,0,0,0,0,0,42,1,1,0,0,0,41.42754,3,52.939999,30.049999,-9,-9,4,1,1,0,1,5,2,0,569,30518.98,0,0,220.75743 -10924,13431,24419,24420,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,8.7057447,8.5886412,0,1,0,-9,23,0,-3,21.162203,0,0,0,53,2,3,1,2,3,2019,1,1,7,0,77,37,15,1,0,1,0,7.042028,7.042028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,54.029999,47.139999,5,4,2,0,0,4,4,1,1477,325547.41,0,0,2128.1987 -10924,13431,24420,24419,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,27,0,3,73.51915,0,0,0,50,1,3,1,2,2,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.029999,47.139999,54.959999,53.169998,6,1,1,0,0,4,4,1,1477,325547.41,0,0,2128.1987 -10925,13432,24421,24422,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-2,-15.185529,0,0,0,72,3,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,2.1511004,0,0,0,0,0,1,1,0,0,0,0,0,63.98,38.080002,60.330002,25.24,7,1,1,0,0,9,1,0,421,22723.334,0,0,1294.6101 -10925,13432,24422,24421,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,1,0,5.0835838,4.8411684,1,0,-9,54,0,2,48.16684,0,0,0,70,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3273821,4.9819651,0,0,60.330002,25.24,63.98,38.080002,7,1,1,0,0,9,1,0,421,22723.334,0,0,1294.6101 -10926,13433,24423,24424,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,2,7.9489589,7.7726207,0,2,0,-9,7,0,1,49.087399,0,0,0,45,2,4,1,3,3,2019,1,2,10,3,35,35,15,1,0,1,0,9.8357725,9.8357725,0,0,0,0,0,0,0,0,1,1,0,4.6033411,0,0,0,41.549999,43.599998,57.16,56.150002,3,1,1,0,0,10,4,1,1292,155427.58,0,0,3350.4573 -10926,13433,24424,24423,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.3697767,8.6378498,0,2,0,-9,7,0,-1,100.717,0,0,0,46,2,2,1,2,1,2019,1,1,6,0,37,43,15,1,0,1,0,15.038251,15.038251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,41.549999,43.599998,6,1,1,0,0,10,4,1,1292,155427.58,0,0,3350.4573 -10926,13433,24425,-9,24423,24424,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-834.42163,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,10,4,1,1292,155427.58,0,0,3350.4573 -10927,13434,24426,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,2,1,0,0,1,8.031044,8.7131348,0,3,0,0,0,-9,0,-1054.8965,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,0,15,1,0,-9,0,12.876595,12.876595,0,0,0,0,0,0,0,0,0,0,0,1.4982244,0,0,0,35.220001,32.790001,-9,-9,4,1,1,0,0,6,4,1,729,74406.156,0,0,1289.1262 -10928,13435,24427,24428,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,7.7304378,7.8831887,0,1,0,-9,27,0,8,-40.438217,0,0,0,42,2,5,1,-9,-9,2019,1,2,26,12,60,45,15,1,1,1,0,5.4775047,5.4775047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.01,51.73,53.73,52.790001,3,1,1,0,0,5,4,0,895.5,408182.19,0,0,2481.241 -10928,13435,24428,24427,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,5,7.8798141,7.9603786,0,1,0,-9,27,0,-8,-8.4965973,0,0,1,50,2,2,1,-9,-9,2019,1,1,11,0,25,20,15,1,0,1,0,11.720223,11.720223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.73,52.790001,21.01,51.73,6,1,1,0,0,5,4,0,895.5,408182.19,0,0,2481.241 -10928,13436,24429,-9,24428,24427,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,5,7.8369365,7.9818211,0,3,0,0,0,-9,0,-1036.7682,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,8,40,16,15,1,1,-9,1,6.7642965,6.7642965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.400002,56.889999,-9,-9,7,1,1,0,0,5,3,0,189,-97851.117,0,0,1410.3688 -10929,13437,24430,-9,-9,-9,1,1,1,94,3,0,0,0,3,-9,4,3,0,0,1,0,5.2401986,5.4401259,3,0,0,0,-9,0,-1073.8489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5979486,0,0,49.509998,21.83,-9,-9,5,1,1,0,0,5,2,0,593,26845.527,0,0,1955.5144 -10930,13438,24431,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,2,1,0,0,4,7.3034301,7.4606271,0,3,0,0,0,-9,0,-901.00763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,22,22,15,1,0,-9,0,9.8979425,9.8979425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,3,4,0,0,8,3,0,99,-73208.898,0,0,-123.58257 -10931,13439,24432,24433,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,2,8.1736221,8.1480074,0,1,0,-9,3,0,-5,152.98224,0,1,1,30,2,2,1,-9,-9,2019,1,1,21,8,49,50,15,1,1,1,0,7.3285937,7.3285937,0,0,0,0,0,0,0,0,0,0,0,1.1685421,0,0,0,34.040001,37.139999,46.560001,37.029999,5,1,1,0,0,6,4,1,371.5,45985.777,0,0,2404.4194 -10931,13439,24433,24432,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,0,2,7.490273,7.5090771,0,1,0,-9,3,0,5,18.313646,0,0,0,25,1,2,1,-9,-9,2019,1,2,11,0,43,75,15,1,0,1,0,5.7256474,5.7256474,0,0,0,0,0,0,0,0,0,0,0,1.6219397,0,0,0,46.560001,37.029999,34.040001,37.139999,6,1,1,0,0,6,4,1,371.5,45985.777,0,0,2404.4194 -10932,13440,24434,24435,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,0,65.435196,0,0,0,69,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,41.25259,0,0,0,0,0,1,1,0,0,0,0,0,40.130001,51.16,17.92,58.189999,6,1,1,0,0,2,2,1,635,839918.81,0,0,1890.3403 -10932,13440,24435,24434,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.6973257,6.3344994,1,0,-9,54,0,0,57.006474,0,0,0,69,3,2,3,3,3,2019,4,2,23,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.5745373,44.323532,1,17.92,58.189999,40.130001,51.16,6,1,1,0,0,2,2,1,635,839918.81,0,0,1890.3403 -10933,13441,24436,24437,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,6.0186467,5.8868732,1,0,-9,28,0,4,-54.363728,0,0,0,68,3,2,3,-9,-9,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6021886,5.5590901,0,0,45.169998,41.540001,42.119999,39.150002,6,1,1,0,0,6,3,1,1704,1156728.8,0,0,2489.3782 -10933,13441,24437,24436,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,7.7944946,7.3256474,1,0,-9,28,0,-4,-57.54879,0,0,0,72,3,2,3,3,3,2019,4,2,21,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3133373,0,0,42.119999,39.150002,45.169998,41.540001,2,1,1,0,0,6,3,1,1704,1156728.8,0,0,2489.3782 -10934,13442,24438,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,8,3,1,1,1,0,7.1996098,7.0811529,3,0,0,0,-9,0,-913.95319,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,32,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4573565,7.2429533,0,0,27.549999,31.08,-9,-9,3,1,1,0,0,12,2,1,118,809808.75,0,0,1796.4426 -10935,13443,24439,24440,-9,-9,1,1,1,41,1,0,0,0,1,-9,1,1,0,0,4,7.4301143,7.3673887,0,1,0,-9,5,-9,-1,21.716492,-9,0,0,42,1,4,1,3,2,2019,1,2,8,0,40,0,15,1,0,1,0,4.9340911,4.9340911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,50.25,56.540001,7,2,3,0,0,9,4,1,1094.5,2666102.5,0,0,2974.022 -10935,13443,24440,24439,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,4,7.9046512,8.0343285,0,1,0,-9,5,-9,1,76.716576,-9,0,1,41,1,4,1,1,1,2019,1,1,11,0,35,0,15,1,0,1,0,11.577461,11.577461,0,0,0,0,0,0,0,0,0,0,0,7.7835393,0,0,0,50.25,56.540001,57.16,56.150002,6,2,3,0,0,9,4,1,1094.5,2666102.5,0,0,2974.022 -10936,13444,24441,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,7.4685087,7.8063655,3,0,0,0,-9,0,-902.15167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2479262,7.1056151,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,10,3,1,312,604694.81,0,0,2290.051 -10937,13445,24442,24443,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.2471948,7.2897763,4.5054197,1,0,-9,6,0,-2,113.88161,0,0,0,61,2,3,1,3,3,2019,1,1,18,6,26,26,15,1,1,1,0,6.277822,6.277822,0,0,0,0,0,0,0,7,0,0,0,0,5.1449604,3.9956818,3,37.509998,58.259998,50.509998,42.98,5,1,1,0,0,5,5,1,650,153438.75,0,0,2998.5598 -10937,13445,24443,24442,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.9086924,8.7528982,5.1938157,1,0,-9,6,0,2,30.395035,0,0,0,59,2,3,1,3,3,2019,1,2,10,0,44,45,15,1,0,1,0,15.381864,15.381864,0,0,0,0,0,0,0,0,0,0,0,6.270195,5.4609776,0,0,50.509998,42.98,37.509998,58.259998,7,1,1,0,0,5,5,1,650,153438.75,0,0,2998.5598 -10938,13446,24444,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,1,1,0,0,3,8.8717232,8.9650545,0,3,0,-9,0,-9,0,-979.42548,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,20,0,15,1,0,-9,0,36.854359,36.854359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,-9,-9,7,2,3,0,0,7,5,1,752,256633.98,0,0,2002.1184 -10939,13447,24445,-9,24447,-9,2,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-899.89471,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,2,1,758.66669,110524.64,0,0,1544.0884 -10939,13447,24446,-9,24447,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.64807,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,6,2,1,758.66669,110524.64,0,0,1544.0884 -10939,13447,24447,-9,-9,-9,1,1,0,32,2,0,2,0,1,-9,2,1,0,0,4,7.7619033,7.3932877,0,4,0,0,0,-9,0,-1146.2432,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,30,31,15,1,0,-9,0,9.6609335,9.6609335,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.16,58.619999,-9,-9,5,1,1,0,0,6,2,1,758.66669,110524.64,0,0,1544.0884 -10940,13448,24448,24449,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,4,0,7.3012862,7.1591349,1,0,-9,38,0,3,-7.1317773,0,0,0,76,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3271813,0,0,44.049999,55.389999,54.200001,57.490002,5,1,1,0,0,12,3,1,535.5,1474088.9,0,0,2150.0347 -10940,13448,24449,24448,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.8217249,6.7625437,1,0,-9,38,0,-3,-60.273117,0,0,0,79,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2744825,6.7500319,3.5183833,3,54.200001,57.490002,44.049999,55.389999,6,1,1,0,0,12,3,1,535.5,1474088.9,0,0,2150.0347 -10941,13449,24450,-9,24451,-9,5,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1053.0458,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,1,1080.8,-69358.242,0,0,2121.6353 -10941,13449,24451,-9,-9,-9,1,1,0,52,3,0,4,0,1,-9,2,1,0,0,5,5.0524616,6.7526488,7.1250114,4,0,0,0,-9,0,-930.40814,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,5,6,15,1,0,-9,0,4.4868536,4.4868536,0,0,0,0,0,0,0,0,1,1,0,6.6911731,0,0,0,38.049999,59.68,-9,-9,3,1,1,0,0,12,2,1,1080.8,-69358.242,0,0,2121.6353 -10941,13449,24452,-9,24451,-9,2,1,0,17,2,0,4,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1130.1543,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1054664,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,12,2,1,1080.8,-69358.242,0,0,2121.6353 -10941,13449,24453,-9,24451,-9,3,1,0,17,2,0,4,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-965.19543,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4701732,0,0,0,42.540001,58.779999,-9,-9,3,1,1,0,0,12,2,1,1080.8,-69358.242,0,0,2121.6353 -10941,13449,24454,-9,24451,-9,4,1,0,14,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1000.0714,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,43,-9,-9,4,1,1,0,0,12,2,1,1080.8,-69358.242,0,0,2121.6353 -10942,13450,24455,24456,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,7.7873306,7.7397842,1,0,-9,10,0,0,-7.8951707,0,0,0,74,2,2,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0330229,7.8716688,0,0,57.16,56.150002,55.200001,49.400002,6,1,1,0,0,12,3,1,368.5,1074030.1,0,0,2819.1218 -10942,13450,24456,24455,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,6.1880193,6.065774,1,0,-9,10,0,0,-20.03615,0,0,0,74,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5782123,6.1498208,0,0,55.200001,49.400002,57.16,56.150002,6,1,1,0,0,12,3,1,368.5,1074030.1,0,0,2819.1218 -10943,13451,24457,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,6,3,0,1,2,0,5.0869861,5.4159884,3,0,0,0,-9,0,-1058.8558,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.0278111,40.804424,3,22.99,49.080002,-9,-9,3,1,1,0,0,9,2,0,389,-82321.531,0,0,793.53442 -10944,13452,24458,24460,-9,-9,2,1,0,32,1,1,1,0,1,-9,5,1,0,0,3,8.2007351,8.1404095,0,2,0,-9,5,0,-4,39.274223,0,0,1,36,2,4,1,-9,-9,2019,1,1,10,1,30,38,15,1,0,1,0,11.653629,11.653629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.990002,49.740002,56.330002,51.02,7,1,1,0,0,4,4,1,253,249739.31,0,0,2678.4126 -10944,13452,24459,-9,24458,24460,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1039.9465,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,253,249739.31,0,0,2678.4126 -10944,13452,24460,24458,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,8.1996317,8.2471886,0,2,0,-9,5,0,4,136.8705,0,0,0,32,1,3,1,-9,-9,2019,1,2,6,0,44,42,15,1,0,1,0,8.9705982,8.9705982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.330002,51.02,50.990002,49.740002,6,1,1,0,0,4,4,1,253,249739.31,0,0,2678.4126 -10945,13453,24461,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-896.25446,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.330002,35.549999,-9,-9,4,1,1,0,0,11,1,0,162,43497.926,0,0,457.53146 -10946,13454,24462,-9,-9,-9,1,1,0,99,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1156.9672,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1646276,0,0,0,55,42,-9,-9,6,1,1,0,0,9,1,1,324,103037.46,0,0,948.55542 -10946,13455,24463,-9,24462,-9,2,1,0,64,3,0,0,0,2,-9,2,1,0,0,4,6.1524439,7.1265211,6.3310132,3,0,0,0,-9,0,-1020.2325,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,10,10,15,1,0,-9,1,4.3463998,4.3463998,0,0,0,0,0,0,0,74.5,1,1,0,7.7799125,6.2268624,69.995255,3,45.860001,53.23,-9,-9,5,1,1,0,0,9,2,1,941,16842.816,0,0,819.70813 -10947,13456,24464,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,6.7302136,6.6968408,3,0,0,0,-9,0,-1161.4998,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5339022,7.0546131,0,0,59.360001,37.52,-9,-9,4,1,1,0,0,1,2,1,1099,212591.42,0,0,1858.0605 -10948,13457,24465,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,1,1,0,0,4,7.7830009,8.2080011,6.5743461,3,0,-9,0,1,0,-976.65167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,7.3342357,7.3342357,0,0,0,0,0,0,0,0,1,1,0,7.4478521,6.6820107,0,0,48.529999,50.880001,-9,-9,6,1,1,0,0,10,4,1,561,374303.31,0,0,2805.3735 -10949,13458,24466,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1013.3279,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4974794,0,0,0,46.869999,27.41,-9,-9,3,1,1,0,0,12,1,1,779,68149.172,0,0,1999.4926 -10950,13459,24467,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1016.821,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.290001,25.790001,-9,-9,6,4,5,0,1,5,2,1,454,-60823.133,0,0,3.2365608 -10951,13460,24468,24469,-9,-9,2,1,0,52,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,33,0,-2,62.84721,0,0,0,54,3,2,1,-9,-9,2019,3,1,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.220001,38.82,43.48,41.110001,5,2,3,0,0,6,2,1,764.5,-16883.207,0,0,-266.2504 -10951,13460,24469,24468,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,0,2,6.7462316,6.3852811,0,1,0,-9,33,0,2,-53.93222,0,0,0,52,3,2,3,-9,-9,2019,2,2,13,1,30,30,15,1,0,3,0,3.4584918,3.4584918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,41.110001,34.220001,38.82,5,2,3,0,0,6,2,1,764.5,-16883.207,0,0,-266.2504 -10951,13461,24470,-9,-9,24471,5,1,0,10,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-990.62634,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,6,1,1,502.5,2713.418,0,0,1039.3881 -10951,13461,24471,-9,24468,24469,3,1,1,23,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1092.2421,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,37,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4666917,0,0,0,49,58,-9,-9,5,2,3,1,1,6,1,1,502.5,2713.418,0,0,1039.3881 -10951,13462,24472,-9,24468,24469,4,1,0,19,2,0,0,1,2,0,7,2,0,0,3,0,6.8087707,6.9855137,3,0,0,0,-9,0,-1096.7568,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.971549,0,0,0,28.52,62.720001,-9,-9,3,2,3,0,0,6,2,1,669,41728.547,0,0,1248.8756 -10952,13463,24473,24474,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,0,3,9.271286,9.0135365,0,1,0,-9,10,0,5,90.795387,0,0,0,50,2,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,23.698471,23.698471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.310001,49.389999,57.16,56.150002,4,1,1,0,0,9,5,0,673.5,2612908.5,0,0,8080.2417 -10952,13463,24474,24473,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,0,4,8.8727179,8.5994473,0,1,0,-9,10,0,-5,-121.41235,0,0,0,55,2,3,1,2,3,2019,1,2,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.310001,49.389999,6,1,1,0,0,9,5,0,673.5,2612908.5,0,0,8080.2417 -10953,13464,24475,24476,-9,-9,1,1,1,30,1,0,0,0,1,-9,1,1,0,0,5,8.0466032,8.0539551,0,1,0,1,1,-9,4,-70.955368,0,0,0,26,1,4,1,1,1,2019,1,2,9,2,35,55,15,1,0,1,0,11.148545,11.148545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,57.16,56.150002,5,1,1,0,0,5,5,0,1575,17051.922,0,0,2212.5254 -10953,13464,24476,24475,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.2671614,8.2324305,0,1,0,-9,1,-9,-4,-77.061134,-9,1,1,30,1,5,1,-9,-9,2019,1,1,6,0,39,0,15,1,0,1,0,15.032222,15.032222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.689999,57.470001,6,1,1,0,1,5,5,0,1575,17051.922,0,0,2212.5254 -10954,13465,24477,24478,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,5,0,6.1637115,6.2430735,1,0,-9,18,0,-3,65.451233,0,0,0,78,1,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2852621,6.1555281,0,0,54.869999,51.919998,55.34,54.259998,7,1,1,0,0,5,4,1,538,1356865.8,0,0,3490.564 -10954,13465,24478,24477,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,4,0,8.5612583,8.7529421,1,0,-9,35,0,3,-2.4489944,0,0,0,75,2,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3063278,0,0,55.34,54.259998,54.869999,51.919998,7,1,1,0,0,5,4,1,538,1356865.8,0,0,3490.564 -10955,13466,24479,-9,24480,-9,3,1,0,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-913.72803,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.02,57.990002,-9,-9,3,1,1,0,0,2,3,0,872,-120373.38,0,0,1431.786 -10955,13466,24480,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,0,2,7.6305404,7.6398983,0,4,0,0,0,-9,0,-888.07709,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,8,40,82,15,1,1,-9,0,6.9549613,6.9549613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.389999,37.240002,-9,-9,3,1,1,0,0,2,3,0,872,-120373.38,0,0,1431.786 -10955,13467,24481,-9,24480,-9,2,1,0,21,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1005.9215,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.77,39.619999,-9,-9,6,1,1,0,0,2,1,0,612,-35385.473,0,0,-257.71948 -10956,13468,24482,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1158.6865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.5250735,0,0,0,0,1,1,0,0,0,0,0,69.099998,24.719999,-9,-9,6,1,1,0,0,7,1,0,3238,745152.81,0,0,1219.0181 -10957,13469,24483,24485,-9,-9,1,1,0,47,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,23,0,-6,100.97676,0,0,0,53,1,4,1,3,2,2019,3,2,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,61.529999,53,55,4,2,3,0,0,8,2,0,1087.25,3012034.3,0,0,3674.7725 -10957,13469,24484,-9,24483,24485,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.8864,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,2,0,1087.25,3012034.3,0,0,3674.7725 -10957,13469,24485,24483,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,0,4,7.7398782,7.7468534,0,2,0,-9,9,0,6,50.16946,0,0,0,47,2,4,3,-9,-9,2019,2,1,9,1,0,24,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,45.32,61.529999,6,2,3,0,0,8,2,0,1087.25,3012034.3,0,0,3674.7725 -10957,13469,24486,-9,24483,24485,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.559,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,1087.25,3012034.3,0,0,3674.7725 -10958,13470,24487,24488,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.7146926,6.7778802,1,0,-9,7,0,-5,25.382086,0,0,0,75,2,4,3,1,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,1.9097005,0,0,0,0,7,1,1,0,5.4841466,6.8724275,0,3,61.43,43.34,59.290001,49.68,5,1,1,0,0,6,2,1,286,407930.5,0,0,2604.1753 -10958,13470,24488,24487,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.0417151,6.3348198,1,0,-9,7,0,5,20.955109,0,0,0,70,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6288176,6.7015395,7.0511379,3,59.290001,49.68,61.43,43.34,6,1,1,0,0,6,2,1,286,407930.5,0,0,2604.1753 -10959,13471,24489,-9,24491,24490,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.84302,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,1,4,1,528.33331,-5444.3652,0,0,3402.9851 -10959,13471,24490,24491,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,0,1,8.3495436,8.6662064,0,2,0,-9,4,0,6,-46.83527,0,0,0,33,2,1,1,2,3,2019,1,2,11,0,42,38,15,1,0,1,0,13.407461,13.407461,0,0,0,0,0,0,0,0,1,1,0,7.4698997,0,0,0,39.669998,40.27,45.360001,45.950001,5,1,1,0,0,1,4,1,528.33331,-5444.3652,0,0,3402.9851 -10959,13471,24491,24490,-9,-9,2,1,0,33,1,1,1,0,2,-9,2,1,0,0,1,6.8753228,7.0266566,0,2,0,-9,4,0,-6,80.867798,0,0,1,39,2,1,1,-9,-9,2019,1,1,10,0,16,16,15,1,0,1,0,8.2855692,8.2855692,0,0,0,0,0,0,0,2,1,1,0,0,0,2.2877123,1,45.360001,45.950001,39.669998,40.27,6,1,1,0,0,1,4,1,528.33331,-5444.3652,0,0,3402.9851 -10960,13472,24492,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,2,1,0,0,2,7.238337,6.9417686,0,3,0,0,0,-9,0,-978.9082,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,50,15,1,0,-9,0,2.8755693,2.8755693,0,0,0,0,0,0,0,0,0,0,0,8.4926729,0,0,0,41.23,53.220001,-9,-9,4,1,1,0,0,9,3,0,696,365578.19,0,0,2015.9861 -10961,13473,24493,24494,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,6.9569921,8.4684906,8.3424826,1,0,-9,40,0,1,-23.827972,0,0,0,65,2,3,3,2,2,2019,4,2,17,6,0,15,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8994193,0,0,27.34,64.589996,49,47,5,1,1,0,0,4,4,1,859.5,1601285.3,0,0,7448.042 -10961,13473,24494,24493,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,40,0,-1,91.98101,0,0,0,66,1,4,3,2,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.6042833,0,0,3,49,47,27.34,64.589996,6,1,1,0,0,4,4,1,859.5,1601285.3,0,0,7448.042 -10962,13474,24495,-9,24496,-9,1,1,1,45,2,0,0,0,1,-9,1,1,0,0,3,7.4436607,7.83391,0,3,0,0,0,-9,0,-1110.1826,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,30,25,15,1,0,-9,1,8.467556,8.467556,0,0,0,0,0,0,0,2,1,1,0,3.4403703,0,0,3,47.529999,50.990002,-9,-9,6,4,2,0,0,7,3,0,1643,159338.05,0,0,1692.9375 -10962,13475,24496,-9,-9,-9,2,1,0,69,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-975.87415,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,4,1,1,0,0,7,1,0,191,57026.879,0,0,2385.9575 -10963,13476,24497,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,3,3,0,0,4,0,6.9432569,7.1459208,3,0,0,0,-9,0,-961.9881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.843905,0,0,45.560001,60.259998,-9,-9,5,1,1,1,0,12,2,0,426,338202.91,0,0,1399.3533 -10964,13477,24498,24499,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,-4,54.945122,0,0,0,74,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,34.060001,58.32,50.220001,6,1,1,0,0,7,1,1,982,277917.5,0,0,1077.1428 -10964,13477,24499,24498,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,4.9035258,5.0985818,1,0,-9,52,0,4,-42.005955,0,0,0,70,3,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,4.7080503,16.16687,1,58.32,50.220001,45.810001,34.060001,6,1,1,0,0,7,1,1,982,277917.5,0,0,1077.1428 -10965,13478,24500,24501,-9,-9,1,1,1,86,1,0,0,0,1,-9,4,3,0,0,3,0,7.9886456,7.9800811,1,0,-9,62,0,2,-37.35191,0,0,0,84,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9258456,7.7947397,0,0,59.209999,43.049999,55.709999,40.470001,6,1,1,0,0,12,4,1,375,1005890.6,0,0,4307.6812 -10965,13478,24501,24500,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,0,3,0,7.4269252,7.6986713,1,0,-9,62,0,-2,-53.575676,0,0,0,86,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,1.3689651,0,0,0,0,0,1,1,0,0,7.3853106,0,0,55.709999,40.470001,59.209999,43.049999,6,1,1,0,0,12,4,1,375,1005890.6,0,0,4307.6812 -10966,13479,24502,-9,-9,-9,1,1,0,22,2,2,2,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-989.52448,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,38.32,-9,-9,4,1,1,1,0,6,1,0,389.66666,-41391.59,0,0,224.98662 -10966,13479,24503,-9,24502,-9,2,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-955.07965,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,1,0,389.66666,-41391.59,0,0,224.98662 -10966,13479,24504,-9,24502,-9,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-854.12085,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,1,0,389.66666,-41391.59,0,0,224.98662 -10967,13480,24505,-9,-9,-9,1,1,0,94,2,0,0,0,3,-9,4,3,0,1,3,0,7.5325184,7.4236455,3,0,0,0,-9,0,-971.22729,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,5.6773272,0,0,0,3.3123257,20.007732,0,1,1,0,3.311126,7.7793574,0,0,53,44,-9,-9,6,1,1,0,0,7,3,1,822,233491.98,0,0,1590.4144 -10968,13481,24506,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,2,8.0745487,8.2616272,0,3,0,0,0,-9,0,-1073.7057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,38,15,1,0,-9,0,11.256558,11.256558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.59,39.360001,-9,-9,5,1,1,0,0,12,4,0,478,29648.393,0,0,-138.48033 -10969,13482,24507,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-908.35284,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,8,0,47,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.07426,3,28.860001,67.790001,-9,-9,3,1,1,1,1,11,1,1,130,157186.92,0,0,0 -10970,13483,24508,24510,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,7.040484,7.3285971,0,2,0,-9,29,0,-1,1.9417971,0,0,0,50,2,2,1,3,3,2019,1,2,10,0,23,22,15,1,0,1,0,9.0443287,9.0443287,0,0,0,0,0,0,0,0,1,1,0,3.6830492,0,0,0,48.869999,58.549999,32.169998,54.650002,4,1,1,0,0,10,4,1,717.66669,613360.94,0,0,3153.6155 -10970,13483,24509,-9,24508,24510,4,1,1,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-941.86218,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0875514,0,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,10,4,1,717.66669,613360.94,0,0,3153.6155 -10970,13483,24510,24508,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,2,8.6546955,8.6501484,7.3233342,2,0,-9,29,0,1,-111.17226,0,0,0,49,2,4,1,-9,2,2019,1,1,17,5,37,38,15,1,1,1,0,16.837908,16.837908,0,0,0,0,0,0,0,0,1,1,0,0,7.7359357,0,0,32.169998,54.650002,48.869999,58.549999,3,1,1,0,0,10,4,1,717.66669,613360.94,0,0,3153.6155 -10970,13484,24511,-9,24508,24510,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,5,7.4725404,7.7667031,0,3,0,0,0,-9,0,-951.98474,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,39,37,15,1,0,-9,1,7.4740691,7.4740691,0,0,0,0,0,0,0,0,1,1,0,1.7478725,0,0,0,49.25,61.25,-9,-9,1,1,1,0,0,10,3,1,1800,29094,0,0,1721.1788 -10971,13485,24512,24513,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,34,0,2,32.48241,0,0,0,60,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2187471,0,0,0,64.489998,32.700001,60.02,56.419998,6,1,1,0,0,10,3,1,1276.5,827264.63,0,0,1499.1003 -10971,13485,24513,24512,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,0,5,7.4786115,8.3365946,7.2646909,1,0,-9,34,0,-2,93.430313,0,0,0,62,2,2,3,2,-9,2019,4,2,6,0,6,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7245125,7.6079679,0,0,60.02,56.419998,64.489998,32.700001,6,1,1,0,0,10,3,1,1276.5,827264.63,0,0,1499.1003 -10971,13486,24514,-9,24513,24512,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,5,8.496007,8.384202,0,3,0,0,0,-9,0,-918.72351,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,55,38,15,1,0,-9,1,6.2584672,6.2584672,0,0,0,0,0,0,0,0,0,0,0,.61336833,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,4,1,345,-140359.78,0,0,2076.5298 -10972,13487,24515,24516,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.3466101,8.4225101,0,1,0,-9,4,0,2,51.790707,0,0,0,50,2,3,1,2,1,2019,1,1,12,2,38,37,15,1,0,1,0,16.086153,16.086153,0,0,0,0,0,0,0,7,1,1,0,7.2177114,0,5.8940725,3,38.720001,56.450001,43.459999,54.23,6,1,1,0,0,13,5,1,434,608470.38,0,0,3459.4883 -10972,13487,24516,24515,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.4285345,8.5889826,0,1,0,-9,4,0,-2,-64.330124,0,0,0,52,2,4,1,2,2,2019,1,2,11,0,32,30,15,1,0,1,0,15.387218,15.387218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.459999,54.23,38.720001,56.450001,5,1,1,0,0,13,5,1,434,608470.38,0,0,3459.4883 -10972,13488,24517,-9,24515,24516,3,1,1,20,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1115.0446,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,27.719999,58.93,-9,-9,2,1,1,1,0,13,1,1,1212,0,0,0,-209.72163 -10973,13489,24518,-9,24521,24519,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.1998,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,0,895.20001,154657.88,0,0,3199.6907 -10973,13489,24519,24521,-9,-9,1,1,1,32,1,0,3,0,2,-9,2,1,0,0,4,8.2432337,8.2001772,0,2,0,-9,4,0,3,80.017929,0,0,0,29,2,3,2,-9,-9,2019,2,2,7,0,60,50,15,1,0,2,0,7.4743881,7.4743881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,53.240002,50.009998,6,1,1,0,0,5,3,0,895.20001,154657.88,0,0,3199.6907 -10973,13489,24520,-9,24521,24519,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1105.5854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,3,0,895.20001,154657.88,0,0,3199.6907 -10973,13489,24521,24519,-9,-9,2,1,0,29,1,0,3,0,2,-9,7,2,0,0,3,0,0,0,2,0,-9,4,0,-3,-50.540417,1,1,1,32,2,4,1,-9,-9,2019,3,1,8,0,0,80,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.240002,50.009998,45.91,59.889999,6,1,1,0,0,5,3,0,895.20001,154657.88,0,0,3199.6907 -10973,13489,24522,-9,24521,24519,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.39178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,0,895.20001,154657.88,0,0,3199.6907 -10974,13490,24523,-9,24524,-9,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1073.8611,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,5,0,507,571617.06,0,0,1573.2026 -10974,13490,24524,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,4,9.0511942,8.7769499,0,4,0,-9,0,-9,0,-1079.1666,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,42,0,15,1,0,-9,0,17.587166,17.587166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,5,3,4,0,0,8,5,0,507,571617.06,0,0,1573.2026 -10975,13491,24525,24526,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,6.7152948,6.7343974,1,0,-9,8,0,-3,-39.61216,0,0,0,76,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.63189292,6.4325156,0,0,59.619999,35.919998,54.599998,55.889999,6,1,1,0,0,10,2,1,796.5,630412.31,0,0,1385.0214 -10975,13491,24526,24525,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,3,-78.208817,0,0,0,73,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,11.579299,0,0,0,0,0,1,1,0,1.0271647,0,0,0,54.599998,55.889999,59.619999,35.919998,6,1,1,0,0,10,2,1,796.5,630412.31,0,0,1385.0214 -10976,13492,24527,-9,-9,24528,1,1,1,43,3,0,0,0,2,-9,2,1,0,0,3,8.1010132,8.4423437,0,3,0,0,0,-9,0,-986.46228,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,42,42,15,1,0,-9,1,11.135502,11.135502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.259998,53.439999,-9,-9,3,1,1,0,0,4,4,1,432,-113367.3,0,0,2083.7002 -10976,13493,24528,-9,-9,-9,2,1,1,69,3,0,0,0,3,-9,4,3,0,0,2,0,7.3253989,6.900805,3,0,0,0,-9,0,-1004.6287,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7032748,6.9823513,0,0,63.07,43.09,-9,-9,7,1,1,0,0,4,2,1,1576,744495.75,0,0,2387.0198 -10977,13494,24529,24530,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,4,0,7.8241539,8.1108837,1,0,-9,60,0,3,94.861366,0,0,0,79,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9932582,8.4071512,0,0,55.580002,52.990002,54.200001,57.490002,6,1,1,0,0,10,3,1,252.5,391395.25,0,0,2700.7385 -10977,13494,24530,24529,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,60,0,-3,-85.983948,0,0,0,82,1,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9091671,0,0,0,54.200001,57.490002,55.580002,52.990002,7,1,1,0,0,10,3,1,252.5,391395.25,0,0,2700.7385 -10978,13495,24531,-9,24533,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-994.48834,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,1646.6666,-40708.723,0,0,772.77307 -10978,13495,24532,-9,24533,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1006.669,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,1646.6666,-40708.723,0,0,772.77307 -10978,13495,24533,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,6,3,0,1,3,0,6.1720319,5.7219186,4,0,-9,0,-9,0,-1085.314,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.729228,0,10.901746,3,12.67,37.32,-9,-9,2,1,1,0,1,9,2,0,1646.6666,-40708.723,0,0,772.77307 -10979,13496,24534,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,6.8135982,6.5372543,3,0,0,0,-9,0,-956.18079,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1495209,6.4290266,0,0,52.009998,38.25,-9,-9,6,1,1,0,0,13,2,1,149,235784.92,0,0,1817.1742 -10980,13497,24535,24536,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,0,4,0,7.3856287,7.6943951,1,0,-9,9,0,2,-105.8409,0,0,0,81,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.4606023,7.49575,0,0,59.740002,45.34,58.849998,33.57,6,1,1,0,0,10,3,1,466.5,981573.44,0,0,2050.7505 -10980,13497,24536,24535,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,6.3887286,6.1035995,1,0,-9,9,0,-2,-14.526276,0,0,0,83,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.6495309,5.8035684,0,0,58.849998,33.57,59.740002,45.34,6,1,1,0,0,10,3,1,466.5,981573.44,0,0,2050.7505 -10981,13498,24537,24538,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,4.98351,4.8948989,1,0,-9,55,0,-5,49.239014,0,0,0,81,3,1,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7138467,4.9674153,0,0,53.080002,49.779999,37.970001,27.940001,6,1,1,0,0,9,2,1,566,1351192.1,0,0,1601.4746 -10981,13498,24538,24537,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,1,0,7.5993047,7.3325357,1,0,-9,55,0,5,-18.519045,0,0,0,76,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2811775,0,0,37.970001,27.940001,53.080002,49.779999,5,1,1,0,0,9,2,1,566,1351192.1,0,0,1601.4746 -10981,13499,24539,-9,24537,24538,3,1,0,48,2,0,0,0,3,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1109.6272,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,5,1,1,1,0,9,1,1,2242,-44437.719,0,0,1046.1062 -10982,13500,24540,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,2,1,0,0,2,7.9457288,7.7978482,0,3,0,0,0,-9,0,-1021.288,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,28,28,15,1,0,-9,0,13.340154,13.340154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.639999,35.389999,-9,-9,5,1,1,0,0,9,3,1,438,1224885,0,0,1498.2565 -10983,13501,24541,24542,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,5,0,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,54.959999,53.169998,7,1,1,0,0,10,1,0,1928,81308.516,0,0,784.28479 -10983,13501,24542,24541,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-5,0,0,0,0,73,3,4,3,3,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,58.150002,52.91,7,1,1,0,0,10,1,0,1928,81308.516,0,0,784.28479 -10984,13502,24543,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-960.82043,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,13.885411,0,0,0,0,0,0,0,0,0,2.3925664,0,0,0,39.27,29.65,-9,-9,5,1,1,0,0,13,1,0,443,-140819.2,0,0,463.19693 -10985,13503,24544,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,3,8.4147243,8.5625973,0,3,0,-9,0,-9,0,-980.87469,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,1,0,-9,0,16.766073,16.766073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.119999,44.799999,-9,-9,3,1,1,0,0,7,5,0,449,358078.28,0,0,1988.9331 -10986,13504,24545,24546,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,0,-67.850632,0,0,0,61,1,5,1,3,2,2019,3,1,16,4,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8398924,0,0,0,45.18,54.77,57.060001,57.759998,6,1,1,0,0,10,5,1,491.5,1232643.8,0,0,2517.364 -10986,13504,24546,24545,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,5,9.2415886,8.9449186,0,1,0,-9,44,0,0,177.88542,0,0,0,61,1,3,3,3,2,2019,2,2,5,0,40,50,15,1,0,4,0,27.419659,27.419659,0,0,0,0,0,0,0,0,0,0,0,3.9135568,0,0,0,57.060001,57.759998,45.18,54.77,6,1,1,0,0,10,5,1,491.5,1232643.8,0,0,2517.364 -10987,13505,24547,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,1,0,6.1138735,6.291152,3,0,0,0,-9,0,-972.80096,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,1,6.2326107,0,1.5695548,2.7119296,0,2.7486162,0,1,1,0,0,6.4150391,0,0,27.24,23.07,-9,-9,7,1,1,0,0,8,2,1,247,27180.402,0,0,832.99139 -10988,13506,24548,24549,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,5,9.0332422,8.9232941,0,1,0,-9,2,0,-1,-86.721169,0,1,0,30,1,4,1,1,3,2019,1,2,7,0,40,45,15,1,0,1,0,25.419451,25.419451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,49.459999,56.91,7,1,1,0,0,6,5,1,398,73335.633,0,0,3528.4998 -10988,13506,24549,24548,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,0,0,0,1,0,-9,2,0,1,84.014946,-9,0,1,29,1,5,1,-9,-9,2019,1,1,9,0,40,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.459999,56.91,57.060001,57.759998,6,1,1,0,0,6,5,1,398,73335.633,0,0,3528.4998 -10989,13507,24550,24554,-9,-9,2,1,0,43,1,0,3,0,1,-9,2,1,0,0,4,8.8637009,9.277916,0,2,0,-9,8,0,0,-82.524193,0,0,1,43,1,3,3,2,2,2019,2,1,16,5,33,24,15,1,1,3,0,28.769297,28.769297,0,0,0,0,0,0,0,0,1,1,0,.31917146,0,0,0,30.870001,65.239998,34.650002,58.34,4,1,1,0,0,9,4,1,658.40002,573189.63,0,0,2587.5583 -10989,13507,24551,-9,24550,24554,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1036.4235,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,9,4,1,658.40002,573189.63,0,0,2587.5583 -10989,13507,24552,-9,24550,24554,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.75122,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,658.40002,573189.63,0,0,2587.5583 -10989,13507,24553,-9,24550,24554,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.4739,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,658.40002,573189.63,0,0,2587.5583 -10989,13507,24554,24550,-9,-9,1,1,1,43,1,0,3,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,8,0,0,-74.052383,0,0,0,43,1,4,1,2,2,2019,3,2,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.650002,58.34,30.870001,65.239998,3,1,1,1,0,9,4,1,658.40002,573189.63,0,0,2587.5583 -10990,13508,24555,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,4.957386,5.2505112,3,0,0,0,-9,0,-1134.6442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6902447,0,0,50,47,-9,-9,5,1,1,0,1,13,2,1,95,32282.117,0,0,11.71396 -10991,13509,24556,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-949.54547,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.469999,50.580002,-9,-9,2,1,1,1,1,6,1,0,1149,-180629.44,0,0,1512.6642 -10992,13510,24557,24558,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,0,5,7.4145737,7.5195179,0,1,0,-9,41,0,1,-145.50446,0,0,0,60,3,4,1,3,3,2019,1,1,5,0,50,38,15,1,0,1,0,4.5872831,4.5872831,0,0,0,0,0,0,0,14.5,0,0,0,1.2246783,0,14.352015,3,54.099998,59.110001,47.490002,55.02,6,1,1,0,0,9,3,1,1491.5,2578682,0,0,1971.4287 -10992,13510,24558,24557,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,4,6.7824731,6.7525678,0,1,0,-9,41,0,-1,-58.1227,0,0,0,61,1,5,1,3,2,2019,1,2,6,0,13,20,15,1,0,1,0,6.4692254,6.4692254,0,0,0,0,0,0,0,7,0,0,0,2.3439205,0,9.7489376,3,47.490002,55.02,54.099998,59.110001,2,1,1,0,0,9,3,1,1491.5,2578682,0,0,1971.4287 -10993,13511,24559,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-951.29407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.540001,42,-9,-9,6,1,1,0,0,8,1,0,358,244547.38,0,0,851.51111 -10994,13512,24560,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,0,2,0,8.2487268,8.3850946,3,0,0,0,-9,0,-941.83826,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.9647429,8.4217539,3.6287129,3,35.369999,21.77,-9,-9,4,1,1,0,0,9,4,1,180,1241657.3,0,0,3238.1829 -10995,13513,24561,24563,-9,-9,2,1,0,24,1,2,2,0,2,-9,2,1,0,0,3,7.5497427,7.5039296,0,2,0,-9,3,0,0,-46.574791,0,1,1,24,2,2,1,-9,-9,2019,1,1,11,0,30,24,15,1,0,1,0,9.7377911,9.7377911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,57.029999,24.83,58.25,6,1,1,0,0,9,4,0,574,82200.961,0,0,3708.5283 -10995,13513,24562,-9,24561,24563,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.49292,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,0,574,82200.961,0,0,3708.5283 -10995,13513,24563,24561,-9,-9,1,1,1,24,1,2,2,0,2,-9,2,1,0,0,2,8.8837471,8.9979248,0,2,0,-9,3,0,0,22.812759,0,1,0,24,2,3,1,-9,-9,2019,1,2,26,11,42,51,15,1,1,1,0,18.254042,18.254042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.83,58.25,46.799999,57.029999,5,1,1,0,0,9,4,0,574,82200.961,0,0,3708.5283 -10995,13513,24564,-9,24561,24563,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-871.79065,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,0,574,82200.961,0,0,3708.5283 -10996,13514,24565,24566,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,9.3145399,9.1301622,0,1,0,-9,11,0,3,-46.012646,0,0,0,53,1,4,1,-9,-9,2019,1,1,7,0,43,50,15,1,0,1,0,34.861832,34.861832,0,0,0,0,0,0,0,0,0,0,0,1.9303129,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,5,1,1341,1215050.8,0,0,3347.959 -10996,13514,24566,24565,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,7.1454277,6.7240343,0,1,0,-9,33,0,-3,103.86134,0,0,0,56,1,4,1,2,1,2019,1,2,9,0,17,11,15,1,0,1,0,6.7301393,6.7301393,0,0,0,0,0,0,0,0,0,0,0,1.8163285,0,0,0,57.16,56.150002,57.16,56.150002,2,1,1,0,0,10,5,1,1341,1215050.8,0,0,3347.959 -10996,13515,24567,-9,24566,24565,3,1,1,22,2,0,0,1,1,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1051.8997,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2947153,0,0,0,48.419998,60.529999,-9,-9,6,1,1,0,0,10,1,1,427,127989.14,0,0,236.03296 -10996,13516,24568,-9,24566,24565,4,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1064.3442,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7304224,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,10,1,1,530,178619.14,0,0,57.253693 -10997,13517,24569,-9,24570,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.1414,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,1150,466971.25,0,0,3165.7813 -10997,13517,24570,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,0,4,8.8314924,9.2402172,6.4562521,4,0,0,0,-9,0,-918.48938,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,53,85,15,1,0,-9,0,15.150013,15.150013,0,0,0,0,0,0,0,0,1,1,0,7.2071457,0,0,0,45.91,59.889999,-9,-9,4,1,1,0,0,6,5,1,1150,466971.25,0,0,3165.7813 -10998,13518,24571,24572,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,0,2,7.4971175,7.273324,0,1,0,-9,34,0,0,-34.466381,0,0,0,65,3,2,1,-9,2,2019,1,2,22,10,30,23,15,1,1,1,0,6.5674248,6.5674248,0,0,0,0,0,0,0,2,1,1,0,0,0,1.8871285,3,37.98,34.150002,39.700001,42.84,4,1,1,0,0,11,3,0,1557,699937.44,0,0,1232.3459 -10998,13518,24572,24571,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,0,2,7.5029526,7.6723752,4.9736071,1,0,-9,35,0,9,58.674538,0,0,0,56,3,2,1,3,2,2019,1,1,12,1,34,34,15,1,0,1,0,8.0972548,8.0972548,1,0,0,0,0,0,0,0,1,1,0,0,4.8434563,0,0,39.700001,42.84,37.98,34.150002,3,1,1,0,0,11,3,0,1557,699937.44,0,0,1232.3459 -10999,13519,24573,24575,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,8.5280123,8.5224867,0,2,0,-9,17,0,-3,-1.3973532,0,0,0,50,3,4,1,3,2,2019,1,1,18,6,45,35,15,1,1,1,0,14.162995,14.162995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.650002,51.259998,57.759998,54.509998,4,1,1,0,0,7,4,1,474.33334,-43258.23,0,0,2586.4812 -10999,13519,24574,-9,24575,24573,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.7766,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,4,1,474.33334,-43258.23,0,0,2586.4812 -10999,13519,24575,24573,-9,-9,1,1,0,50,1,0,1,0,3,-9,2,1,0,0,4,6.9357548,7.0705457,0,2,0,-9,16,0,3,109.57955,0,0,0,47,2,3,1,2,2,2019,1,2,7,0,25,25,15,1,0,1,0,4.5755639,4.5755639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,32.650002,51.259998,6,1,1,0,0,7,4,1,474.33334,-43258.23,0,0,2586.4812 -11000,13520,24576,24577,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,5.9232283,5.8705578,1,0,-9,9,0,2,13.310229,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7655854,5.7503786,0,0,54.369999,54.799999,59.139999,52.5,6,1,1,0,0,10,3,1,410,1417108.5,0,0,2340.2839 -11000,13520,24577,24576,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.9225678,8.1427107,1,0,-9,9,0,-2,-93.497803,0,0,0,69,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9856954,7.7896543,0,0,59.139999,52.5,54.369999,54.799999,6,1,1,0,0,10,3,1,410,1417108.5,0,0,2340.2839 -11001,13521,24578,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,2,0,7.0045924,6.9905739,3,0,0,0,-9,0,-1066.8308,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.1633787,0,0,51.669998,20.049999,-9,-9,2,1,1,0,0,2,2,1,201,142300.09,0,0,2029.4347 -11002,13522,24579,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.1777201,8.3035812,0,3,0,0,0,-9,0,-1043.1992,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,42,43,15,1,1,-9,0,10.808494,10.808494,0,0,0,0,0,0,0,0,0,0,0,7.6337037,0,0,0,49.799999,53.970001,-9,-9,5,1,1,0,0,10,4,1,903,-115639.13,0,0,1419.922 -11003,13523,24580,24582,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,5,9.1039686,9.2530022,0,2,0,-9,20,0,0,-3.907959,0,0,1,43,1,4,1,1,1,2019,1,2,5,1,43,50,15,1,0,1,0,31.38562,31.38562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.450001,50.709999,57.16,56.150002,6,1,1,0,0,2,5,1,462,3282889.5,0,0,10349.791 -11003,13523,24581,-9,24580,24582,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.8224,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,5,1,462,3282889.5,0,0,10349.791 -11003,13523,24582,24580,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,8.9001617,9.1713362,0,2,0,-9,20,0,0,-99.59407,0,0,0,43,1,5,1,2,2,2019,1,1,10,0,35,35,15,1,0,1,0,27.126947,27.126947,0,0,0,0,0,0,0,0,0,0,0,10.089549,0,0,0,57.16,56.150002,54.450001,50.709999,6,1,1,0,0,2,5,1,462,3282889.5,0,0,10349.791 -11003,13523,24583,-9,24580,24582,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1157.382,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,462,3282889.5,0,0,10349.791 -11004,13524,24584,-9,-9,24585,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,3,9.3137217,8.5711594,0,3,0,0,0,-9,0,-1051.6791,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,45,15,1,0,-9,1,16.139509,16.139509,0,0,0,0,0,0,0,2,0,0,0,7.7514358,0,2.6854622,3,51.939999,55.880001,-9,-9,6,2,3,0,0,4,5,1,1288,458238.59,0,0,3179.793 -11004,13525,24585,-9,-9,-9,2,1,1,62,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1073.1367,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,20,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,2,2,3,0,0,4,1,1,658,-38219.754,0,0,0 -11005,13526,24586,24588,-9,-9,2,1,0,50,1,0,2,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,28,0,-7,105.14919,0,0,0,57,3,3,1,3,2,2019,3,1,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.096695,3,48.290001,49.790001,57.919998,51.82,5,1,1,0,0,10,2,0,1274,442742.06,0,0,2556.7615 -11005,13526,24587,-9,24586,24588,3,1,1,17,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.7075,1,1,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,10,2,0,1274,442742.06,0,0,2556.7615 -11005,13526,24588,24586,-9,-9,1,1,1,57,1,0,2,0,3,-9,2,1,0,0,3,7.9639969,8.052989,0,2,0,-9,28,0,7,-79.128067,0,0,0,50,3,2,3,2,2,2019,2,2,6,0,43,40,15,1,0,3,0,7.8596311,7.8596311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.919998,51.82,48.290001,49.790001,4,1,1,0,0,10,2,0,1274,442742.06,0,0,2556.7615 -11005,13526,24589,-9,24586,24588,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-943.50354,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,10,2,0,1274,442742.06,0,0,2556.7615 -11006,13527,24590,24591,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,0,3,7.4807725,7.385211,0,2,0,-9,9,0,0,131.44563,-9,0,0,50,2,4,1,-9,-9,2019,1,1,8,1,40,0,15,1,0,1,0,5.1522551,5.1522551,0,0,0,0,0,0,0,0,1,1,0,2.4197383,0,0,0,48.259998,42.459999,54.200001,57.490002,5,1,1,0,0,6,3,1,1154.6666,401806.63,0,0,1881.7355 -11006,13527,24591,24590,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,7.8293991,7.6072168,0,2,0,-9,9,0,0,47.658928,0,0,0,50,2,3,1,3,2,2019,1,2,9,0,25,25,15,1,0,1,0,13.262227,13.262227,0,0,0,0,0,0,0,0,1,1,0,1.0890468,0,0,0,54.200001,57.490002,48.259998,42.459999,6,1,1,0,0,6,3,1,1154.6666,401806.63,0,0,1881.7355 -11006,13527,24592,-9,24591,24590,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.59631,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,-9,-9,6,1,1,0,0,6,3,1,1154.6666,401806.63,0,0,1881.7355 -11007,13528,24593,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1020.5778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,6,1,1,0,0,9,1,0,656,410625.75,0,0,1283.1306 -11008,13529,24594,24595,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,6.279983,5.8735366,1,0,-9,7,0,13,-57.37888,0,0,0,69,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.4658175,115.66544,1,56.18,45.98,50,47,6,1,1,0,0,13,2,0,503.5,422375.13,0,0,907.30188 -11008,13529,24595,24594,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-13,-126.71181,-9,0,0,82,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0520914,0,0,0,50,47,56.18,45.98,5,1,1,0,0,13,2,0,503.5,422375.13,0,0,907.30188 -11009,13530,24596,24597,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,0,3,0,6.1070857,5.6239023,1,0,-9,19,0,9,-130.84879,0,0,0,53,3,3,1,-9,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6866503,0,0,46.720001,31.17,25.610001,62.709999,7,1,1,0,0,1,4,1,838,8046.7383,0,0,2223.7627 -11009,13530,24597,24596,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,0,3,8.5143919,8.3371391,0,1,0,-9,19,0,0,-1.2093207,0,0,0,62,3,3,3,3,2,2019,2,1,22,8,40,43,15,1,1,4,0,12.585272,12.585272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.610001,62.709999,46.720001,31.17,5,1,1,0,0,1,4,1,838,8046.7383,0,0,2223.7627 -11010,13531,24598,24599,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,7.1958594,7.0099845,1,0,-9,49,0,2,73.293732,0,0,0,66,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6633668,7.005971,0,0,58.150002,52.91,57.330002,53.459999,6,1,1,0,0,1,2,1,386.5,492372.38,0,0,2126.6997 -11010,13531,24599,24598,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,4.4121013,4.539216,1,0,-9,49,0,-2,-46.248562,0,0,0,68,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9168987,4.4406991,0,0,57.330002,53.459999,58.150002,52.91,6,1,1,0,0,1,2,1,386.5,492372.38,0,0,2126.6997 -11011,13532,24600,24601,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.6447964,6.864996,1,0,-9,3,0,-7,-101.79176,0,0,0,75,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6511307,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,12,3,1,992,629992.63,0,0,7273.959 -11011,13532,24601,24600,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,8.1052494,8.2649269,1,0,-9,3,0,7,68.297958,0,0,0,68,2,4,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0286093,7.8912444,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,12,3,1,992,629992.63,0,0,7273.959 -11012,13533,24602,24603,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,0,5,7.5653944,7.5940361,0,1,0,-9,1,-9,-1,27.57098,-9,0,0,31,1,3,1,-9,-9,2019,1,2,14,5,39,0,15,1,1,1,0,9.0177307,9.0177307,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,56.59,44.130001,52,54.509998,7,1,1,0,0,5,4,0,462.5,52593.16,0,0,2956.6411 -11012,13533,24603,24602,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,3,8.2357311,8.375391,0,1,0,-9,1,-9,1,86.145493,-9,0,1,30,2,5,1,-9,-9,2019,1,1,11,0,55,0,15,1,0,1,0,8.4041033,8.4041033,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,52,54.509998,56.59,44.130001,7,1,1,0,0,5,4,0,462.5,52593.16,0,0,2956.6411 -11013,13534,24604,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,0,5,8.1335077,8.3298016,0,3,0,-9,0,1,0,-1099.7152,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,2,54,43,15,1,0,-9,0,12.296747,12.296747,0,0,0,0,0,0,0,0,1,1,0,6.1128058,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,1,5,1,1418,315841.16,0,0,1655.3397 -11014,13535,24605,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,0,3,7.6726565,7.9801784,0,3,0,0,0,-9,0,-912.73608,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,6.3536453,6.3536453,0,0,0,0,0,0,0,0,1,1,0,3.8266413,0,0,0,61.279999,48.880001,-9,-9,6,1,1,0,0,9,3,0,331,1189749.4,0,0,1440.5023 -11015,13536,24606,24607,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,5,0,6.8458695,6.6941729,1,0,-9,6,0,11,-82.993866,0,0,0,57,2,4,1,3,3,2019,3,2,10,0,0,5,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.024004,6.5421128,0,0,48.18,61.799999,51.830002,57.200001,6,1,1,0,0,2,4,1,1129.5,216965.44,0,0,3750.3665 -11015,13536,24607,24606,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.6374502,8.6057386,0,1,0,-9,6,0,-11,-57.410583,0,0,0,68,2,5,3,-9,-9,2019,2,1,7,0,37,35,15,1,0,4,0,16.785416,16.785416,0,0,0,0,0,0,0,0,1,1,0,7.2232361,0,0,0,51.830002,57.200001,48.18,61.799999,6,2,3,0,0,2,4,1,1129.5,216965.44,0,0,3750.3665 -11016,13537,24608,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,2,0,8.1147575,7.5309396,3,0,0,0,-9,0,-1064.1349,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,50,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8992887,0,0,53.630001,40.709999,-9,-9,5,1,1,0,0,5,3,0,720,442654.25,0,0,937.64789 -11016,13538,24609,-9,24608,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.538455,7.82618,0,3,0,0,0,-9,0,-1104.5129,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,2,30,41,15,1,0,-9,1,9.5444603,9.5444603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.150002,42.959999,-9,-9,5,1,1,0,0,5,3,0,391,-95042.594,0,0,515.32837 -11017,13539,24610,24611,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,7.6669083,7.5771317,1,0,-9,53,0,6,-33.881367,0,0,0,70,2,1,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.13253,7.4018412,2.6020205,2,39.450001,36.290001,30.27,25.469999,3,1,1,0,0,2,3,1,1465.5,959208.63,0,0,3330.5205 -11017,13539,24611,24610,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,1,1,0,6.7218871,7.0987959,1,0,-9,53,0,-6,-72.707428,0,0,0,76,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,30.215361,0,0,0,0,0,1,1,0,4.7005949,6.8284245,0,0,30.27,25.469999,39.450001,36.290001,2,1,1,0,0,2,3,1,1465.5,959208.63,0,0,3330.5205 -11018,13540,24612,-9,-9,-9,1,1,1,46,3,0,0,0,1,-9,2,1,0,0,3,8.8155832,9.2412434,0,3,0,0,0,-9,0,-891.45636,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,60,56,15,1,0,-9,0,12.350389,12.350389,0,0,0,0,0,0,0,0,1,1,0,6.1649008,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,5,0,1666,524539.19,0,0,3745.772 -11019,13541,24613,24618,-9,-9,2,1,1,49,1,0,4,0,1,-9,2,1,0,0,3,8.8116207,8.8538008,0,2,0,-9,23,0,5,1.7877489,0,0,0,44,2,5,1,2,-9,2019,1,1,10,0,37,37,15,1,0,1,0,22.847612,22.847612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,35.529999,63.810001,3,1,1,0,0,5,4,1,447.33334,568911.25,0,0,3963.3521 -11019,13541,24614,-9,24618,24613,5,1,1,10,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1009.9309,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,5,4,1,447.33334,568911.25,0,0,3963.3521 -11019,13541,24615,-9,24618,24613,3,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.55695,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,447.33334,568911.25,0,0,3963.3521 -11019,13541,24616,-9,24618,24613,6,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1104.7744,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,447.33334,568911.25,0,0,3963.3521 -11019,13541,24617,-9,24618,24613,4,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.8405,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,447.33334,568911.25,0,0,3963.3521 -11019,13541,24618,24613,-9,-9,1,1,0,44,1,0,4,0,2,-9,2,1,0,0,5,7.1890163,7.5290608,0,2,0,-9,23,0,-5,-14.818205,0,0,1,49,1,3,1,3,2,2019,1,2,9,2,25,15,15,1,0,1,0,4.7491837,4.7491837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.529999,63.810001,57.330002,53.459999,6,1,1,0,0,5,4,1,447.33334,568911.25,0,0,3963.3521 -11020,13542,24619,24620,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,0,3,7.2585568,7.1547775,0,1,0,-9,6,0,-5,20.988497,0,1,1,27,2,3,1,-9,-9,2019,1,2,26,10,38,0,15,1,1,1,0,4.3573356,4.3573356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.860001,57.220001,47.540001,37.220001,2,1,1,0,0,4,3,0,940,8846.8516,0,0,959.65039 -11020,13542,24620,24619,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,0,3,7.843235,7.4840102,0,1,0,-9,6,0,5,21.044458,0,1,0,22,2,3,1,-9,-9,2019,1,1,12,3,40,40,15,1,0,1,0,6.3739686,6.3739686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.540001,37.220001,32.860001,57.220001,4,1,1,0,0,4,3,0,940,8846.8516,0,0,959.65039 -11021,13543,24621,24622,-9,-9,2,1,1,62,1,0,0,0,3,-9,8,3,1,1,2,0,3.8548605,3.7730587,1,0,-9,38,0,3,-3.3405712,0,0,0,59,2,4,1,3,3,2019,3,1,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3709874,4.0152979,0,0,46.459999,25.4,42.27,55.970001,4,3,4,0,1,5,3,0,1121.5,101171.16,0,0,2221.345 -11021,13543,24622,24621,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.981627,7.6938305,0,1,0,-9,38,0,-3,38.137009,0,0,0,62,3,2,3,3,3,2019,2,2,11,0,26,26,15,1,0,3,0,10.48096,10.48096,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.8151827,1,42.27,55.970001,46.459999,25.4,6,4,2,0,1,5,3,0,1121.5,101171.16,0,0,2221.345 -11022,13544,24623,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1098.5612,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3204117,0,0,0,48.450001,57.490002,-9,-9,4,1,1,0,0,4,1,1,66,357929.84,0,0,484.53165 -11022,13545,24624,-9,24623,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.4238997,7.6307564,0,3,0,-9,0,-9,0,-851.90881,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,2,0,38,0,15,1,0,-9,1,7.3270602,7.3270602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,4,3,1,484,-21589.98,0,0,1363.8147 -11023,13546,24625,24626,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,2,8.8471861,8.4562407,0,1,0,-9,21,0,0,-20.108728,0,0,0,56,1,3,1,3,3,2019,1,2,10,1,37,37,15,1,0,1,0,17.431353,17.431353,0,0,0,0,0,0,0,14.5,0,0,0,2.1696379,0,23.148317,3,43.189999,50.709999,40.75,58.259998,6,1,1,0,0,5,5,1,887,1857026.3,0,0,3218.7163 -11023,13546,24626,24625,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,3,8.0640621,8.0669441,0,1,0,-9,21,0,0,3.6185503,0,0,0,56,1,2,1,3,3,2019,1,1,15,6,38,38,15,1,1,1,0,10.604718,10.604718,0,0,0,0,0,0,0,0,0,0,0,1.1014867,0,0,0,40.75,58.259998,43.189999,50.709999,5,1,1,0,0,5,5,1,887,1857026.3,0,0,3218.7163 -11024,13547,24627,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1082.6783,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6167407,0,0,0,53.5,51.02,-9,-9,6,1,1,0,0,5,1,1,280,56957.254,0,0,1212.2776 -11025,13548,24628,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,0,1,0,7.2802067,7.6532512,3,0,0,0,-9,0,-1101.6207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8952594,7.6140151,0,0,46.150002,14.39,-9,-9,7,1,1,0,0,4,3,1,372,514029.03,0,0,978.30414 -11026,13549,24629,-9,-9,-9,1,1,0,62,3,0,2,0,2,-9,4,3,0,1,1,0,2.5792546,2.4098167,4,0,0,0,-9,0,-997.95477,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3819578,2.4859066,0,0,43.52,27.469999,-9,-9,3,1,1,0,0,11,1,1,1054,-12374.856,0,0,1417.9591 -11026,13550,24630,-9,24631,-9,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-947.69025,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,3,1,720,-47122.523,0,0,2047.5651 -11026,13550,24631,-9,24629,-9,2,1,0,36,3,0,2,0,1,-9,2,1,0,0,3,7.9147925,8.0531092,5.4598413,3,0,0,0,-9,0,-877.7796,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,17,5,32,32,15,1,1,-9,1,8.5407219,8.5407219,0,0,0,0,0,0,0,14.5,1,1,0,6.2031951,0,3.2212889,3,29.879999,54.16,-9,-9,3,1,1,0,0,11,3,1,720,-47122.523,0,0,2047.5651 -11026,13550,24632,-9,24631,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1019.0588,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,1,720,-47122.523,0,0,2047.5651 -11027,13551,24633,-9,-9,-9,1,1,0,67,2,0,0,0,3,-9,4,3,0,0,4,0,6.882122,6.4372163,3,0,0,0,-9,0,-1016.4866,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6768427,6.5409989,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,10,2,1,813,707831.5,0,0,180.73761 -11028,13552,24634,24635,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,0,3,8.568121,8.3375282,0,1,0,-9,8,0,-1,-112.07571,0,0,0,34,1,3,1,2,2,2019,1,1,12,2,37,39,15,1,0,1,0,13.246155,13.246155,0,0,0,0,0,0,0,0,0,0,0,.45424145,0,0,0,52.990002,51.279999,41.880001,48.450001,6,1,1,0,0,6,5,1,499,-162143.3,0,0,4423.3179 -11028,13552,24635,24634,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,3,8.3404665,8.5726824,8.1435194,1,0,-9,8,0,1,91.603447,0,0,1,33,2,3,1,2,3,2019,1,2,12,1,44,41,15,1,0,1,0,10.689928,10.689928,0,0,0,0,0,0,0,0,0,0,0,8.721632,0,0,0,41.880001,48.450001,52.990002,51.279999,6,1,1,0,0,6,5,1,499,-162143.3,0,0,4423.3179 -11029,13553,24636,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,0,5,9.722024,9.606843,0,3,0,0,0,-9,0,-979.56067,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,57,80,15,1,0,-9,0,29.131115,29.131115,0,0,0,0,0,0,0,7,0,0,0,5.7872167,0,5.678124,3,62.389999,56.709999,-9,-9,7,1,1,0,0,12,5,1,2960,1062778.8,0,0,5814.2026 -11030,13554,24637,24638,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,7.9928174,8.230794,0,2,0,-9,9,0,1,157.18419,0,0,0,48,2,3,1,3,3,2019,1,2,6,0,30,30,15,1,0,1,0,13.194111,13.194111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52,54.509998,6,1,1,0,0,12,4,1,1995.5,422207.69,0,0,3131.8813 -11030,13554,24638,24637,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,3,8.5236397,8.383728,0,2,0,-9,9,0,-1,23.376797,0,0,0,49,2,4,1,2,2,2019,1,1,8,0,44,44,15,1,0,1,0,12.118002,12.118002,0,0,0,0,0,0,0,0,1,1,0,3.0897217,0,0,0,52,54.509998,57.16,56.150002,6,1,1,0,0,12,4,1,1995.5,422207.69,0,0,3131.8813 -11030,13555,24639,-9,24637,24638,3,1,1,18,2,0,1,0,2,-9,11,3,0,0,4,6.7033768,6.5671411,0,3,0,0,0,-9,0,-915.08881,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5763706,0,0,0,47.009998,58,-9,-9,5,1,1,0,0,12,2,1,113,83989.953,0,0,-97.469055 -11031,13556,24640,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,0,3,8.3172817,8.0360193,0,3,0,0,0,-9,0,-937.63507,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,39,44,15,1,0,-9,0,11.569975,11.569975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,1,1,0,0,5,4,0,4218,99536.648,0,0,1829.7023 -11031,13557,24641,-9,-9,24640,2,1,1,24,2,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-898.88916,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.220001,55.740002,-9,-9,4,1,1,1,1,5,1,0,297,-2070.1216,0,0,1548.9496 -11032,13558,24642,-9,24645,24646,3,1,1,11,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.9688,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,2,0,507.79999,-11487.649,0,0,2755.5913 -11032,13558,24643,-9,24645,24646,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.6597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,2,0,507.79999,-11487.649,0,0,2755.5913 -11032,13558,24644,-9,24645,24646,4,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.7045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,2,0,507.79999,-11487.649,0,0,2755.5913 -11032,13558,24645,24646,-9,-9,1,1,0,34,1,1,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,-3,87.099007,0,0,1,37,2,4,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.669998,53.139999,51,56,6,1,1,0,0,1,2,0,507.79999,-11487.649,0,0,2755.5913 -11032,13558,24646,24645,-9,-9,2,1,1,37,1,1,3,0,2,-9,2,1,0,0,4,7.9936094,8.0771456,0,2,0,-9,21,0,3,-180.91087,0,0,0,34,2,3,3,3,-9,2019,2,1,10,1,42,42,15,1,0,3,0,6.6302996,6.6302996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,36.669998,53.139999,5,1,1,0,0,1,2,0,507.79999,-11487.649,0,0,2755.5913 -11033,13559,24647,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,4,3,0,0,2,0,8.3023033,8.4727726,3,0,0,0,-9,0,-1025.7096,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.2574062,0,3,46,39,-9,-9,4,1,1,0,0,2,5,1,1593,582043.5,0,0,1823.0275 -11034,13560,24648,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,1,2,0,6.3365684,6.3770618,3,0,-9,0,-9,0,-907.81384,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3930349,0,0,38.400002,38.060001,-9,-9,5,1,1,0,0,13,2,0,1114,133001.31,0,0,1370.16 -11035,13561,24649,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,4,0,7.8322792,7.7403908,3,0,0,0,-9,0,-1061.5101,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8567512,7.9245071,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,3,1,570,1136195.9,0,0,3453.1582 -11036,13562,24650,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,0,4,8.4586849,8.623764,7.1101551,4,0,-9,0,-9,0,-1001.6381,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,38,0,15,1,0,-9,0,13.203007,13.203007,0,0,0,0,0,0,0,0,1,1,0,7.1300974,0,0,0,52.970001,53.970001,-9,-9,6,2,3,0,0,9,4,1,809,1302197.6,0,0,3395.5039 -11037,13563,24651,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1109.9595,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.700001,19.41,-9,-9,7,1,1,0,0,2,1,0,714,-37503.102,0,0,609.83575 -11038,13564,24652,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,0,4,8.8318176,8.7300243,0,3,0,0,0,-9,0,-984.81805,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,50,50,15,1,0,-9,0,11.118385,11.118385,0,0,0,0,0,0,0,0,0,0,0,1.6023289,0,0,0,53.48,53.709999,-9,-9,6,1,1,0,0,9,5,1,661,1043154.2,0,0,2263.6023 -11039,13565,24653,24654,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,5,8.2192116,8.3230314,0,1,0,-9,6,0,1,-157.27214,0,0,0,53,3,1,3,3,3,2019,2,1,11,0,38,37,15,1,0,3,0,10.988256,10.988256,0,0,0,0,0,0,0,88,1,1,0,0,0,120.28136,1,53.509998,60.740002,23.34,30.360001,7,1,1,0,0,6,3,1,756.5,343106.06,0,0,1507.271 -11039,13565,24654,24653,-9,-9,1,1,0,53,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,36,0,-1,29.457312,0,0,0,54,3,5,1,3,-9,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.34,30.360001,53.509998,60.740002,6,1,1,0,0,6,3,1,756.5,343106.06,0,0,1507.271 -11039,13566,24655,-9,24654,24653,3,1,1,30,2,0,0,0,3,-9,3,3,0,0,5,5.9560723,6.2311835,0,3,0,0,0,-9,0,-1076.4163,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,4,8,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,118,1,1,0,0,0,116.49424,3,32.720001,43.470001,-9,-9,2,1,1,1,0,6,2,1,619,225406.02,0,0,-218.81076 -11040,13567,24656,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.2313352,6.8606987,3,0,0,0,-9,0,-972.76752,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.447444,6.6345387,0,0,42.689999,48.060001,-9,-9,6,1,1,0,1,7,2,0,765,773882.81,0,0,2259.1685 -11041,13568,24657,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,3,6.6503172,7.0441699,0,4,0,0,0,-9,0,-969.45374,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,3,16,17,15,1,0,-9,0,6.0607562,6.0607562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.639999,49.84,-9,-9,5,1,1,0,0,2,2,0,767,95334.117,0,0,1383.4442 -11041,13568,24658,-9,24657,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1042.9258,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,2,2,0,767,95334.117,0,0,1383.4442 -11042,13569,24659,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,2,0,8.1681337,8.0913353,3,0,0,0,-9,0,-950.63336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8656869,7.9497037,0,0,51.419998,32.060001,-9,-9,5,1,1,0,0,5,4,1,1699,163639.22,0,0,886.1098 -11042,13570,24660,-9,24659,-9,2,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.7705951,7.8169179,0,3,0,0,0,-9,0,-1053.4003,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,30,30,15,1,0,-9,1,11.54653,11.54653,0,0,0,0,0,0,0,14.5,1,1,0,4.0596881,0,10.961282,3,59.529999,56.439999,-9,-9,1,1,1,0,0,5,4,1,3260,260886.5,0,0,1966.0652 -11043,13571,24661,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-839.32202,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.2512083,0,13.203897,3,54.610001,51.040001,-9,-9,4,1,1,1,0,11,1,0,1271,-58596.895,0,0,727.13434 -11043,13572,24662,-9,-9,24661,2,1,1,19,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-891.04248,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,1,0,11,1,0,418,0,0,0,916.24103 -11044,13573,24663,24664,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,7.5547528,7.8296618,0,1,0,-9,18,0,-7,48.917816,0,0,0,48,1,3,1,-9,-9,2019,1,1,27,11,40,40,15,1,1,1,0,7.7923393,7.7923393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.720001,56.810001,30.290001,40.240002,3,1,1,0,0,4,4,0,719,413922.63,0,0,2576.2124 -11044,13573,24664,24663,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,7.8103528,7.6481657,0,1,0,-9,19,0,7,-41.730865,0,0,0,41,2,3,1,3,3,2019,1,2,22,10,42,0,15,1,1,1,0,5.4904537,5.4904537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.290001,40.240002,35.720001,56.810001,2,1,1,0,1,4,4,0,719,413922.63,0,0,2576.2124 -11045,13574,24665,24666,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,1,1,0,4.4555783,4.2742596,1,0,-9,43,0,-2,215.58141,0,0,0,74,2,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,24.373405,0,0,0,0,0,1,1,0,0,4.5291824,0,0,46.43,23.41,54.040001,20.940001,3,1,1,0,0,2,2,1,1055,343248.88,0,0,2531.0171 -11045,13574,24666,24665,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,3,0,6.6004858,6.4787183,1,0,-9,43,0,2,3.9229934,0,0,0,72,2,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.4933472,10.131939,1,54.040001,20.940001,46.43,23.41,6,1,1,0,0,2,2,1,1055,343248.88,0,0,2531.0171 -11046,13575,24667,-9,24668,24669,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.76117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,1037,223231.91,0,0,3682.4417 -11046,13575,24668,24669,-9,-9,2,1,0,33,1,1,2,0,2,-9,2,1,0,0,4,7.6980524,7.5232658,0,2,0,-9,14,0,-4,-59.720188,0,0,1,37,2,5,1,2,2,2019,1,1,10,0,31,32,15,1,0,1,0,7.8704453,7.8704453,0,0,0,0,0,0,0,0,1,1,0,2.7019663,0,0,0,51.830002,57.200001,57.060001,57.759998,5,1,1,0,0,4,4,1,1037,223231.91,0,0,3682.4417 -11046,13575,24669,24668,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,5,8.370369,8.3701563,0,2,0,-9,14,0,4,51.018814,0,0,0,33,2,4,1,2,2,2019,1,2,6,0,53,49,15,1,0,1,0,9.7399626,9.7399626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51.830002,57.200001,7,1,1,0,0,4,4,1,1037,223231.91,0,0,3682.4417 -11046,13575,24670,-9,24668,24669,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.09888,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,1037,223231.91,0,0,3682.4417 -11047,13576,24671,-9,-9,-9,1,1,1,79,2,0,0,0,2,-9,4,3,0,0,3,0,4.7625828,4.4620528,3,0,0,0,-9,0,-1031.4941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.9866109,5.1323786,122.37318,3,62.43,34.91,-9,-9,7,3,4,0,0,8,2,0,482,507267.09,0,0,-703.26276 -11048,13577,24672,-9,-9,-9,5,1,0,36,3,0,2,0,1,-9,2,1,0,0,3,7.3344302,7.739418,0,4,0,0,0,-9,0,-985.0813,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,20,0,15,1,0,-9,0,9.9440908,9.9440908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.919998,51.82,-9,-9,6,3,4,0,0,7,2,0,601,72931.984,0,0,636.15936 -11049,13578,24673,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,4,0,8.0204439,7.770483,3,0,0,0,-9,0,-929.35175,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3297095,7.8644156,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,3,1,3609,1014718.2,0,0,2977.0808 -11050,13579,24674,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,1,1,0,0,3,0,7.656929,7.6567335,3,0,0,0,-9,0,-959.96344,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,4,0,15,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1199775,7.1382365,0,0,49.049999,37.09,-9,-9,6,1,1,0,0,13,3,1,247,2618.3845,0,0,525.19525 -11051,13580,24675,24676,-9,-9,3,1,1,57,1,0,1,0,3,-9,8,3,1,1,4,0,0,0,2,0,-9,4,0,1,-8.5868998,0,0,0,56,2,2,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,54.380001,28.01,6,1,1,0,0,12,3,0,1231.6666,1169344.1,0,0,3386.1016 -11051,13580,24676,24675,-9,-9,1,1,0,56,1,0,1,0,2,-9,2,1,0,1,2,8.474144,8.3638783,0,2,0,-9,40,0,-1,-6.8524332,0,0,0,57,3,4,3,-9,-9,2019,2,3,16,5,35,28,15,1,1,3,0,11.293257,11.293257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.380001,28.01,54,53,5,1,1,0,0,12,3,0,1231.6666,1169344.1,0,0,3386.1016 -11051,13580,24677,-9,24676,24675,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1079.8195,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,12,3,0,1231.6666,1169344.1,0,0,3386.1016 -11052,13581,24678,-9,-9,-9,1,1,0,75,3,1,1,0,3,-9,4,3,0,1,1,0,0,0,4,0,0,0,-9,0,-1115.0442,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.48,28.309999,-9,-9,5,1,1,0,0,2,1,0,266,-207048.64,0,0,1836.8365 -11052,13582,24679,-9,24680,-9,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1057.9531,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,1,0,1603.5,68516.016,0,0,0 -11052,13582,24680,-9,24678,-9,2,1,0,30,2,1,1,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-900.3158,-9,0,1,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,2,1,0,1603.5,68516.016,0,0,0 -11053,13583,24681,24683,-9,-9,2,1,0,45,1,0,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,22,0,-2,-38.974987,0,0,0,47,2,3,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,57.330002,53.459999,6,2,3,0,0,2,2,1,636.20001,2989.5881,0,0,1601.6719 -11053,13583,24682,-9,24681,24683,5,1,1,13,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1006.6572,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,2,2,1,636.20001,2989.5881,0,0,1601.6719 -11053,13583,24683,24681,-9,-9,1,1,1,47,1,0,4,0,2,-9,2,1,0,0,3,7.4124446,7.2596097,0,2,0,-9,22,0,2,-194.20509,0,0,0,45,3,4,3,3,3,2019,2,2,10,0,29,30,15,1,0,3,0,5.1683617,5.1683617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,50,55,6,2,3,0,0,2,2,1,636.20001,2989.5881,0,0,1601.6719 -11053,13583,24684,-9,24681,24683,4,1,1,16,2,0,4,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1043.2876,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,-9,-9,6,2,3,0,0,2,2,1,636.20001,2989.5881,0,0,1601.6719 -11053,13583,24685,-9,24681,24683,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.35999,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,2,1,636.20001,2989.5881,0,0,1601.6719 -11053,13584,24686,-9,24681,24683,3,1,1,18,2,0,4,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1024.4833,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,2,3,0,0,2,2,1,1722,0,0,0,0 -11054,13585,24687,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,4,0,5.7335525,6.2000589,3,0,0,0,-9,0,-1031.2534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.560286,5.960351,0,0,59.529999,56.439999,-9,-9,6,4,5,0,0,8,2,1,992,924132.13,0,0,350.05997 -11055,13586,24688,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,2,1,0,0,5,8.4941111,8.3899984,0,3,0,0,0,-9,0,-1109.3926,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,35,36,15,1,0,-9,0,19.353319,19.353319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.700001,58.279999,-9,-9,7,1,1,0,0,1,5,1,305,195307.41,0,0,1872.9928 -11056,13587,24689,-9,24691,24690,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1127.4475,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,1657.75,259134.45,0,0,4064.0713 -11056,13587,24690,24691,-9,-9,1,1,1,42,1,0,2,0,2,-9,1,1,0,0,4,8.3113737,8.1008701,0,2,0,-9,7,0,3,17.794123,0,0,0,39,1,2,1,1,2,2019,1,2,12,0,40,60,15,1,0,1,0,10.651698,10.651698,0,0,0,0,0,0,0,2,1,1,0,0,0,3.0799007,3,57.459999,47.779999,48.130001,40.189999,6,1,1,0,0,5,5,1,1657.75,259134.45,0,0,4064.0713 -11056,13587,24691,24690,-9,-9,2,1,0,39,1,0,2,0,1,-9,1,1,0,0,2,9.1689043,8.7128229,0,2,0,-9,7,0,-3,-21.834473,0,0,1,42,2,4,1,1,1,2019,1,1,10,0,35,40,15,1,0,1,0,25.349144,25.349144,0,0,0,0,0,0,0,0,1,1,0,.44556537,0,0,0,48.130001,40.189999,57.459999,47.779999,6,1,1,0,0,5,5,1,1657.75,259134.45,0,0,4064.0713 -11056,13587,24692,-9,24691,24690,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.34521,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,5,1,1657.75,259134.45,0,0,4064.0713 -11057,13588,24693,24694,-9,-9,2,1,0,52,1,0,2,0,1,-9,2,1,0,0,1,9.1852369,8.9224482,0,2,0,-9,6,0,-2,120.78361,0,0,0,54,1,3,1,3,2,2019,1,1,28,11,38,0,15,1,1,1,0,25.378794,25.378794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.91,53.02,30.700001,62.919998,4,1,1,0,0,13,4,1,691,1743797.8,0,0,5333.4077 -11057,13588,24694,24693,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,0,3,8.2538319,8.0574503,0,2,0,-9,6,0,2,-91.837585,0,0,0,52,1,1,1,2,2,2019,1,2,21,9,37,0,15,1,1,1,0,10.429826,10.429826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.700001,62.919998,23.91,53.02,4,1,1,0,0,13,4,1,691,1743797.8,0,0,5333.4077 -11057,13588,24695,-9,24693,24694,4,1,0,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.5364,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,28,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.889999,65.32,-9,-9,2,1,1,0,0,13,4,1,691,1743797.8,0,0,5333.4077 -11057,13589,24696,-9,24693,24694,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,5.9085546,6.0184855,0,3,0,0,0,-9,0,-923.1955,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,2,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.759998,54.509998,-9,-9,7,1,1,0,0,13,4,1,851,-185147.41,0,0,602.38525 -11058,13590,24697,24698,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.202877,8.3031874,0,1,0,-9,7,0,-1,-38.729233,0,0,0,52,3,3,1,3,3,2019,1,1,4,1,48,48,15,1,0,1,0,9.639637,9.639637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.91,42.91,55.959999,49.93,6,1,1,0,0,11,5,1,583.5,1055287.5,0,0,3648.5146 -11058,13590,24698,24697,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,0,3,8.7616844,8.7045975,0,1,0,-9,7,0,1,-3.5921876,0,0,0,51,1,4,1,2,-9,2019,1,2,14,3,50,50,15,1,0,1,0,15.19751,15.19751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,58.91,42.91,6,1,1,0,0,11,5,1,583.5,1055287.5,0,0,3648.5146 -11058,13591,24699,-9,24697,24698,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.2983055,7.5965252,0,3,0,0,0,-9,0,-978.59882,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,1,39,0,15,1,0,-9,1,4.2725186,4.2725186,0,0,0,0,0,0,0,0,0,0,0,.63541973,0,0,0,46.139999,54.220001,-9,-9,6,1,1,0,0,11,3,1,547,-78411.773,0,0,108.52214 -11059,13592,24700,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,0,3,8.1549225,8.1552448,0,3,0,0,0,-9,0,-1076.2263,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,19,7,38,43,15,1,1,-9,0,9.9611492,9.9611492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,58.060001,-9,-9,2,1,1,0,1,2,4,1,374,142180.56,0,0,725.23242 -11060,13593,24701,24702,-9,-9,2,1,1,36,1,0,0,0,3,-9,8,3,1,1,4,0,0,0,1,0,-9,5,0,5,0,0,0,0,31,3,2,3,-9,-9,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,8.3800001,61.75,5,4,2,0,1,4,1,0,2992.5,-47016.984,0,0,1880.5115 -11060,13593,24702,24701,-9,-9,1,1,0,31,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,5,0,-5,0,0,0,1,36,3,4,3,3,3,2019,4,2,22,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.095909,2,8.3800001,61.75,51,57,2,1,1,0,1,4,1,0,2992.5,-47016.984,0,0,1880.5115 -11061,13594,24703,-9,24705,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.1701,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,1,551,327212.31,0,0,1550.5392 -11061,13594,24704,-9,24705,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.18237,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,551,327212.31,0,0,1550.5392 -11061,13594,24705,-9,-9,-9,1,1,0,37,2,0,2,0,1,-9,2,1,0,0,4,8.3057041,8.1326313,0,2,0,-9,1,0,6,-33.863049,0,0,1,-9,-9,-9,-9,1,2,2019,1,4,27,10,37,30,15,1,1,-9,0,12.065815,12.065815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.809999,68.160004,33.98,53.200001,6,1,1,0,1,10,4,1,551,327212.31,0,0,1550.5392 -11061,13595,24706,-9,-9,-9,4,1,0,31,2,0,2,0,1,-9,2,1,0,0,3,8.2837172,8.3369713,0,2,0,-9,1,-9,-6,-3.3328557,-9,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,16,4,42,0,15,1,1,-9,0,10.248482,10.248482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.98,53.200001,16.809999,68.160004,5,1,1,0,0,10,4,1,250,294928.63,0,0,912.05701 -11062,13596,24707,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,2,8.4804163,8.7519484,0,3,0,0,0,-9,0,-1068.2745,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,41,15,1,0,-9,0,16.795147,16.795147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.52,53.299999,-9,-9,4,1,1,0,0,10,5,1,996,106755.92,0,0,2005.3915 -11063,13597,24708,24709,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,7,0,-7,-125.45488,0,0,0,70,3,2,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.169998,21.860001,64.239998,34.299999,5,1,1,0,0,6,2,1,359.5,413013,0,0,1520.587 -11063,13597,24709,24708,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,7.2053308,7.310329,1,0,-9,45,0,7,62.277882,0,0,0,63,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.1510501,0,0,64.239998,34.299999,58.169998,21.860001,6,1,1,0,0,6,2,1,359.5,413013,0,0,1520.587 -11064,13598,24710,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-931.22272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,10.56,-9,-9,6,1,1,0,0,13,1,0,444,0,0,0,999.93011 -11065,13599,24711,24713,-9,-9,1,1,1,63,1,0,1,0,1,-9,4,3,0,0,5,0,0,0,2,0,-9,17,0,6,0,0,0,0,57,3,4,3,2,2,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7545872,0,0,0,57.060001,57.759998,52.400002,55.580002,7,1,1,0,0,8,1,0,519,-90212.523,0,0,5022.0098 -11065,13599,24712,-9,24713,24711,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.45258,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,20,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.040001,64.75,-9,-9,5,1,1,0,0,8,1,0,519,-90212.523,0,0,5022.0098 -11065,13599,24713,24711,-9,-9,2,1,0,57,1,0,1,0,3,-9,4,3,0,0,4,0,0,0,2,0,-9,24,0,-6,0,0,0,0,63,1,5,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,55.580002,57.060001,57.759998,7,1,1,0,0,8,1,0,519,-90212.523,0,0,5022.0098 -11066,13600,24714,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,6.157208,5.9153113,3,0,0,0,-9,0,-1011.9266,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,5,0,0,15,4,1,-9,0,0,0,1,.48289165,0,0,0,0,0,0,1,1,0,3.676626,5.814713,0,0,37.75,33.029999,-9,-9,5,1,1,0,0,13,2,0,1292,352117.16,0,0,891.97559 -11067,13601,24715,-9,24716,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1098.9585,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,3,4,0,0,8,1,1,418.5,22565.029,0,0,661.68726 -11067,13601,24716,-9,-9,-9,1,1,0,51,3,0,1,0,1,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-961.93036,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.452438,3,39.16,35.299999,-9,-9,1,3,4,1,1,8,1,1,418.5,22565.029,0,0,661.68726 -11068,13602,24717,24718,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,5.1112189,4.8515096,1,0,-9,7,0,6,32.025826,0,0,0,62,2,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.546627,4.9381504,0,0,60.290001,52.110001,41.82,57.720001,6,1,1,0,0,4,3,1,1188,589802.69,0,0,2256.9033 -11068,13602,24718,24717,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.6563635,7.3738856,0,1,0,-9,7,0,-6,-54.97427,0,0,0,68,3,3,3,3,2,2019,2,1,12,0,28,28,15,1,0,4,0,8.8115053,8.8115053,0,0,0,0,0,0,0,0,1,1,0,3.2627819,0,0,0,41.82,57.720001,60.290001,52.110001,5,1,1,0,0,4,3,1,1188,589802.69,0,0,2256.9033 -11069,13603,24719,24720,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,5,0,7.8886099,8.3872385,1,0,-9,30,0,6,-94.710945,0,0,0,60,1,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3732133,8.4394064,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,9,5,1,556,1369492,0,0,4288.8047 -11069,13603,24720,24719,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,8.654789,8.7291851,0,1,0,-9,30,0,-6,105.75208,0,0,0,66,1,5,3,2,3,2019,2,2,6,0,60,70,15,1,0,4,0,10.438341,10.438341,0,0,0,0,0,0,0,0,1,1,0,4.9986305,0,0,0,57.16,56.150002,57.060001,57.759998,2,1,1,0,0,9,5,1,556,1369492,0,0,4288.8047 -11069,13604,24721,-9,24720,24719,3,1,1,23,2,0,0,0,1,-9,2,1,0,0,5,8.0851278,8.3954878,0,3,0,0,0,-9,0,-1022.873,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,43,39,15,1,0,-9,1,10.977346,10.977346,0,0,0,0,0,0,0,0,1,1,0,2.8447444,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,9,4,1,2000,167062.52,0,0,2310.0801 -11070,13605,24722,24723,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.051744,6.8334913,0,1,0,-9,4,0,-3,-176.89554,0,0,0,62,2,2,3,3,3,2019,2,1,11,2,37,36,15,1,0,3,0,3.4744658,3.4744658,0,0,0,0,0,0,0,0,1,1,0,.94537783,0,0,0,49,48,41.540001,28.469999,5,1,1,0,0,13,3,0,634.5,331811.25,0,0,1860.6156 -11070,13605,24723,24722,-9,-9,1,1,1,62,1,0,0,0,2,-9,8,3,1,1,2,0,6.966042,6.9328022,1,0,-9,4,0,3,91.736267,0,0,0,59,2,3,1,3,3,2019,3,2,16,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.954628,7.2434311,0,0,41.540001,28.469999,49,48,3,1,1,0,0,13,3,0,634.5,331811.25,0,0,1860.6156 -11071,13606,24724,-9,-9,-9,1,1,1,33,3,0,0,0,1,-9,2,1,0,0,4,8.5659952,8.6029425,0,3,0,-9,0,1,0,-993.9552,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,43,46,15,1,0,-9,0,12.453334,12.453334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.169998,59.310001,-9,-9,6,2,3,0,0,6,5,1,750,-78418.859,0,0,913.26288 -11071,13607,24725,-9,-9,-9,2,1,0,32,3,0,0,0,1,-9,2,1,0,0,4,8.855835,8.4271317,0,3,0,-9,0,1,0,-1148.8367,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,41,37,15,1,1,-9,0,13.833406,13.833406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,-9,-9,6,2,3,0,0,6,5,1,143,51792.582,0,0,955.14685 -11072,13608,24726,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,3,8.5041428,8.3607912,0,3,0,0,0,-9,0,-1013.4125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,36,36,15,1,0,-9,0,10.927649,10.927649,0,0,0,0,0,0,0,0,0,0,0,4.5505571,0,0,0,47.529999,50.990002,-9,-9,5,1,1,0,0,10,4,1,445,320698.53,0,0,283.00751 -11073,13609,24727,-9,24729,24728,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-883.60901,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,1,683,245597.91,0,0,2585.6494 -11073,13609,24728,24729,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,7.7857924,7.4099088,0,2,0,-9,17,-9,0,72.425316,-9,0,0,48,2,4,1,2,2,2019,1,1,0,0,41,0,15,1,0,1,0,7.1212058,7.1212058,0,0,0,0,0,0,0,85,1,0,1,0,0,129.45717,3,47.619999,50.740002,54.200001,57.490002,7,1,1,0,1,12,3,1,683,245597.91,0,0,2585.6494 -11073,13609,24729,24728,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,1,4,7.0411291,6.7906919,0,2,0,-9,15,-9,0,175.89273,-9,0,0,48,2,4,1,3,3,2019,1,2,7,0,20,0,15,1,0,1,0,8.1745415,8.1745415,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.200001,57.490002,47.619999,50.740002,5,1,1,0,0,12,3,1,683,245597.91,0,0,2585.6494 -11074,13610,24730,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,6.2391391,6.0343695,3,0,0,0,-9,0,-880.16333,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1720605,0,0,44.09,39.139999,-9,-9,6,1,1,0,0,7,2,1,524,-55242.145,0,0,395.32986 -11075,13611,24731,-9,-9,-9,1,1,0,32,3,0,1,0,1,-9,1,1,0,1,5,7.2485952,7.3216262,0,4,0,0,0,-9,0,-1034.793,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,10,25,15,1,0,-9,0,15.537806,15.537806,0,0,0,0,0,0,0,71.5,1,1,0,8.8174515,0,74.228836,3,57.060001,57.759998,-9,-9,6,2,3,0,0,8,2,1,1148.5,9828.6367,0,0,3134.9902 -11075,13611,24732,-9,24731,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-885.80157,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,1,1148.5,9828.6367,0,0,3134.9902 -11075,13612,24733,-9,-9,-9,3,1,0,25,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,4,0,-9,0,-9,0,-1004.0048,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,6,3,4,1,0,8,1,1,496,42113.816,0,0,-698.60559 -11076,13613,24734,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,0,3,0,7.2849393,7.159822,3,0,0,0,-9,0,-1072.4231,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.0077453,11.117347,3,39.639999,57.52,-9,-9,5,1,1,0,0,11,3,1,453,290552.06,0,0,717.78448 -11077,13614,24735,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,2,0,7.2844262,7.4995275,3,0,0,0,-9,0,-1002.6711,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3852749,7.0786004,0,0,54.700001,34.630001,-9,-9,2,1,1,0,0,13,3,1,2085,358576.25,0,0,1686.0786 -11078,13615,24736,24737,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,9.2310896,8.9056454,0,1,0,-9,4,0,1,-160.09525,0,0,0,53,2,3,1,2,2,2019,1,2,9,0,43,51,15,1,0,1,0,28.214624,28.214624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,38.779999,52.41,6,1,1,0,0,10,5,1,503.5,1051961.5,0,0,3058.0544 -11078,13615,24737,24736,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,7.5058031,7.5498567,0,1,0,-9,4,0,-1,87.065826,0,0,0,54,2,3,1,-9,-9,2019,1,1,11,1,28,24,15,1,0,1,0,6.3164783,6.3164783,0,0,0,0,0,0,0,0,0,0,0,2.7291961,0,0,0,38.779999,52.41,57.330002,53.459999,6,1,1,0,0,10,5,1,503.5,1051961.5,0,0,3058.0544 -11079,13616,24738,-9,-9,-9,1,1,1,70,2,0,0,0,1,-9,4,3,0,0,2,0,8.2561235,8.4051514,3,0,0,0,-9,0,-1068.0853,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.5988007,8.4042521,0,0,66.760002,29.059999,-9,-9,3,1,1,0,0,9,4,1,210,1020348.3,0,0,3218.907 -11080,13617,24739,-9,24741,24742,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.75433,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,5,1,422.20001,2927771.5,0,0,11772.517 -11080,13617,24740,-9,24741,24742,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.94391,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,5,1,422.20001,2927771.5,0,0,11772.517 -11080,13617,24741,24742,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,0,4,8.1860781,8.0698223,0,2,0,-9,6,0,0,14.958591,0,0,0,47,1,2,1,2,2,2019,1,2,9,0,7,15,15,1,0,1,0,60.515587,60.515587,0,0,0,0,0,0,0,0,0,0,0,7.45151,0,0,0,51.240002,58.84,49.139999,44.060001,6,1,1,0,0,8,5,1,422.20001,2927771.5,0,0,11772.517 -11080,13617,24742,24741,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,2,9.8201866,9.8836813,0,2,0,-9,6,0,0,67.329208,0,0,0,47,1,4,1,2,2,2019,1,1,9,0,50,45,15,1,0,1,0,42.391808,42.391808,0,0,0,0,0,0,0,0,0,0,0,6.9881196,0,0,0,49.139999,44.060001,51.240002,58.84,6,1,1,0,0,8,5,1,422.20001,2927771.5,0,0,11772.517 -11080,13617,24743,-9,24741,24742,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.46942,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,422.20001,2927771.5,0,0,11772.517 -11081,13618,24744,24745,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,1,2,6.4058938,6.8714905,0,1,0,-9,34,0,0,196.62883,0,0,0,56,2,2,1,2,2,2019,1,2,25,10,7,7,15,1,1,1,0,14.877277,14.877277,0,0,0,0,0,0,0,27.5,1,1,0,5.9961076,0,34.032467,3,43.200001,36.029999,51.610001,40.049999,4,1,1,0,0,8,5,1,1645.5,1587268.5,0,0,4811.3794 -11081,13618,24745,24744,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,2,9.8010015,9.8484697,0,1,0,-9,34,0,0,56.728188,0,0,0,56,2,2,1,2,2,2019,1,1,11,0,42,40,15,1,0,1,0,36.280727,36.280727,0,0,0,0,0,0,0,0,1,1,0,4.854866,0,0,0,51.610001,40.049999,43.200001,36.029999,6,1,1,0,0,8,5,1,1645.5,1587268.5,0,0,4811.3794 -11081,13619,24746,-9,24744,24745,3,1,1,23,2,0,0,0,1,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-973.11298,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,8,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.25,61.150002,-9,-9,3,1,1,1,0,8,1,1,832,-110107.59,0,0,1000.5009 -11082,13620,24747,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.5163422,8.6477919,0,3,0,0,0,-9,0,-942.57385,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,37,90,15,1,0,-9,0,21.235464,21.235464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,-9,-9,6,1,1,0,0,9,5,1,1227,-70075.648,0,0,2425.3977 -11083,13621,24748,24749,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,9.1999617,9.6626701,1,0,-9,19,0,6,35.054523,0,0,0,62,1,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,9.2312403,9.5994139,1.9203689,3,52,54.509998,57.16,56.150002,6,1,1,0,0,8,5,1,881.5,902061.06,0,0,10102.316 -11083,13621,24749,24748,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.1849537,7.1427393,1,0,-9,6,0,-6,-153.01987,0,0,0,68,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1297126,7.4229002,2.6203804,3,57.16,56.150002,52,54.509998,6,1,1,0,0,8,5,1,881.5,902061.06,0,0,10102.316 -11083,13622,24750,-9,24749,24748,3,1,1,25,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1027.2313,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4347801,0,0,0,26.82,55.720001,-9,-9,1,1,1,0,0,8,1,1,421,0,0,0,924.79785 -11084,13623,24751,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,2,0,6.5126624,6.278686,3,0,-9,0,1,0,-1050.0305,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,26,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3675308,6.7455459,3,31.74,37.189999,-9,-9,2,1,1,0,0,7,2,1,185,43105.316,0,0,-1708.5552 -11085,13624,24752,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,0,3,7.4415617,7.7378268,5.9110894,3,0,0,0,-9,0,-1112.0181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,22,23,15,1,0,-9,0,6.2087212,6.2087212,0,0,0,0,0,0,0,0,1,1,0,0,5.4687762,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,13,3,0,2055,234212.39,0,0,822.13708 -11085,13625,24753,-9,24752,-9,2,1,1,35,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1010.2437,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,1,0,13,1,0,464,0,0,0,1282.075 -11086,13626,24754,24755,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,0,-53.123981,0,0,0,86,3,1,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.94648,1,45.790001,42.630001,37.849998,15.67,6,2,3,0,0,2,2,0,557.5,434340.88,0,0,4135.9512 -11086,13626,24755,24754,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,1,1,0,7.4353437,7.6500072,1,0,-9,10,0,9,-54.018017,0,0,0,77,3,2,3,2,2,2019,4,2,21,8,0,0,15,4,1,4,0,0,0,1,0,81.383537,0,0,0,0,0,1,1,0,7.0314116,7.9136801,0,0,37.849998,15.67,45.790001,42.630001,4,2,3,0,0,2,2,0,557.5,434340.88,0,0,4135.9512 -11087,13627,24756,24757,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,5,8.3874884,8.539547,0,1,0,-9,16,0,-10,-65.374664,0,0,0,54,1,4,1,2,3,2019,1,1,11,0,80,80,15,1,0,1,0,5.0257077,5.0257077,0,0,0,0,0,0,0,2,0,0,0,3.0689981,0,.69054061,3,62.389999,56.709999,52.43,55.57,7,1,1,0,0,10,5,1,939,171092.78,0,0,4084.9629 -11087,13627,24757,24756,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,7.9690728,7.7900887,0,1,0,-9,15,0,10,3.1735971,0,0,0,44,2,5,1,2,2,2019,1,2,6,0,25,26,15,1,0,1,0,16.019459,16.019459,0,0,0,0,0,0,0,0,0,0,0,5.6962247,0,0,0,52.43,55.57,62.389999,56.709999,6,1,1,0,0,10,5,1,939,171092.78,0,0,4084.9629 -11088,13628,24758,24759,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.3820925,8.6745014,0,1,0,-9,3,0,4,6.4478121,0,0,0,45,2,4,1,3,3,2019,1,3,14,2,49,49,15,1,0,1,0,9.8002062,9.8002062,0,0,0,0,0,0,0,0,0,0,0,7.6150837,0,0,0,31.290001,61.290001,50.459999,53.68,3,1,1,0,0,9,5,0,330.5,187949.8,0,0,4203.6201 -11088,13628,24759,24758,-9,-9,3,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.275342,8.4339924,0,1,0,-9,3,0,-4,108.94659,0,0,0,49,2,3,1,-9,-9,2019,1,1,7,0,37,37,15,1,0,1,0,13.184501,13.184501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.459999,53.68,31.290001,61.290001,6,1,1,0,0,9,5,0,330.5,187949.8,0,0,4203.6201 -11088,13629,24760,-9,24759,24758,2,1,0,19,2,0,0,0,2,1,2,1,0,0,4,7.6401362,7.5752096,0,3,0,0,0,-9,0,-1024.0902,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,16,0,15,1,0,-9,1,18.464191,18.464191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,3,0,768,-95320.953,0,0,1067.6998 -11089,13630,24761,24762,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.0719347,7.4538097,1,0,-9,56,0,0,34.642231,0,0,0,78,1,5,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,6.8671088,.46440157,3,64.150002,32.529999,60.419998,54.810001,6,1,1,0,0,10,3,1,513.5,1418829.8,0,0,2801.7329 -11089,13630,24762,24761,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,0,5,0,8.0607042,7.6986141,1,0,-9,56,0,0,-27.397066,0,0,0,78,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2478833,7.8812275,7.0210433,3,60.419998,54.810001,64.150002,32.529999,7,1,1,0,0,10,3,1,513.5,1418829.8,0,0,2801.7329 -11090,13631,24763,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,4,0,6.4633775,6.1158323,3,0,0,0,-9,0,-1078.4674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,18.082506,0,0,3.8048441,0,99.141701,0,1,1,0,0,6.8491864,0,0,45.950001,21.690001,-9,-9,6,1,1,0,0,12,2,1,1188,76057.477,0,0,1927.4163 -11091,13632,24764,24767,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,8.6693325,8.9202795,0,2,0,-9,3,-9,8,-28.202236,-9,0,0,40,1,3,1,2,2,2019,1,1,14,3,43,0,15,1,0,1,0,18.418526,18.418526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.610001,53.880001,62.27,42.939999,5,1,1,0,1,9,5,1,377.25,-35128.555,0,0,4094.8721 -11091,13632,24765,-9,24767,24764,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1035.0145,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,377.25,-35128.555,0,0,4094.8721 -11091,13632,24766,-9,24767,24764,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1054.5807,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,377.25,-35128.555,0,0,4094.8721 -11091,13632,24767,24764,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,8.5834427,8.4259157,0,2,0,-9,6,-9,-8,37.115013,-9,0,1,48,2,3,1,2,2,2019,1,2,7,0,32,0,15,1,0,1,0,19.674763,19.674763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.939999,35.610001,53.880001,4,1,1,0,0,9,5,1,377.25,-35128.555,0,0,4094.8721 -11092,13633,24768,-9,24770,24769,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.3471,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,1,0,296.66666,-69042.961,0,0,2172.5522 -11092,13633,24769,24770,-9,-9,1,1,1,43,1,0,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,17,0,11,0,0,0,0,32,2,4,2,-9,2,2019,4,2,23,8,0,0,15,3,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.82,24.700001,49,56,4,1,1,0,0,11,1,0,296.66666,-69042.961,0,0,2172.5522 -11092,13633,24770,24769,-9,-9,2,1,0,32,1,0,2,0,2,0,7,2,0,0,4,0,0,0,2,0,-9,17,0,-11,0,-9,0,1,43,2,2,3,2,2,2019,4,1,11,2,0,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.570889,1,49,56,46.82,24.700001,5,1,1,0,0,11,1,0,296.66666,-69042.961,0,0,2172.5522 -11093,13634,24771,24772,-9,-9,2,1,0,54,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,9,0,-3,-38.367973,0,0,0,57,3,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,2.1867337,0,37.278961,3,56.59,49.889999,56.860001,50.75,2,1,1,0,0,5,3,1,361,945066.88,0,0,1289.8546 -11093,13634,24772,24771,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,0,4,8.1146069,7.9734664,0,1,0,-9,9,0,3,-20.152828,0,0,0,54,3,3,3,2,2,2019,2,2,6,0,45,65,15,1,0,3,0,8.1859837,8.1859837,0,0,0,0,0,0,0,0,1,0,1,4.2629609,0,0,0,56.860001,50.75,56.59,49.889999,2,1,1,0,0,5,3,1,361,945066.88,0,0,1289.8546 -11093,13635,24773,-9,24771,24772,3,1,1,27,2,0,0,0,2,-9,1,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1045.6876,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.389999,56.709999,-9,-9,2,1,1,0,0,5,1,1,71,46834.066,0,0,-779.61011 -11094,13636,24774,24775,-9,-9,1,1,1,89,1,0,0,0,1,-9,4,3,0,0,3,0,8.2715673,7.6856937,1,0,-9,7,0,13,-126.92345,0,0,0,76,2,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,4.1755404,0,0,0,0,0,1,1,0,4.4720964,7.8176832,0,0,61.130001,33.740002,55.990002,46.529999,7,1,1,0,0,4,3,1,148.5,827063.63,0,0,3924.6187 -11094,13636,24775,24774,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,3.6345305,3.2818666,1,0,-9,7,0,-13,104.1285,0,0,0,89,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,2.2341964,0,0,0,0,82.247292,0,1,1,0,5.643662,3.5276005,0,0,55.990002,46.529999,61.130001,33.740002,5,1,1,0,0,4,3,1,148.5,827063.63,0,0,3924.6187 -11095,13637,24776,24777,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,8.2704668,8.3696527,1,0,-9,8,0,6,82.752098,0,0,0,66,3,2,3,3,2,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.7217917,8.3862219,5.5041885,2,34.209999,51.939999,45.400002,32.259998,6,1,1,0,0,9,3,1,552,1081873.6,0,0,2077.9182 -11095,13637,24777,24776,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,40,0,-6,70.046722,0,0,0,72,2,3,3,2,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,13.472564,0,0,0,0,7,1,1,0,0,0,12.208209,3,45.400002,32.259998,34.209999,51.939999,4,1,1,0,0,9,3,1,552,1081873.6,0,0,2077.9182 -11096,13638,24778,24780,-9,-9,1,1,0,32,1,0,3,0,2,-9,2,1,0,0,5,8.1507359,8.0248089,0,2,0,-9,6,0,-8,50.959846,0,0,1,40,2,4,1,-9,-9,2019,1,2,7,0,39,37,15,1,0,1,0,10.654499,10.654499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,60.119999,54.799999,4,1,1,0,0,1,3,0,887.33331,251596.27,0,0,2779.4414 -11096,13638,24779,-9,24778,24780,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.72797,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,887.33331,251596.27,0,0,2779.4414 -11096,13638,24780,24778,-9,-9,2,1,1,40,1,0,3,0,2,-9,1,1,0,0,4,7.6240215,7.7206368,0,2,0,-9,6,0,8,48.748524,0,0,0,32,2,5,1,-9,-9,2019,1,1,6,0,30,12,15,1,0,1,0,9.3900194,9.3900194,0,0,0,0,0,0,0,0,1,1,0,.55002958,0,0,0,60.119999,54.799999,57.060001,57.759998,7,1,1,0,0,1,3,0,887.33331,251596.27,0,0,2779.4414 -11097,13639,24781,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,0,4,8.9852209,9.0296841,0,3,0,0,0,-9,0,-1052.1284,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,54,15,1,0,-9,0,15.189584,15.189584,0,0,0,0,0,0,0,0,0,0,0,1.2937143,0,0,0,61.68,49.950001,-9,-9,6,1,1,0,0,12,5,0,2345,86426.836,0,0,2893.5859 -11098,13640,24782,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,0,4,8.8742914,9.3767767,0,3,0,0,0,-9,0,-1139.5546,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,60,52,15,1,0,-9,0,13.775109,13.775109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,56.459999,-9,-9,5,1,1,0,0,9,5,1,453,3501274.3,0,0,2146.5234 -11099,13641,24783,-9,-9,-9,1,1,1,24,2,0,1,0,2,0,7,2,0,0,1,0,0,0,3,0,0,0,-9,0,-1023.1172,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,26,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.48,54.439999,-9,-9,1,1,1,0,0,11,1,0,488,-55885.961,0,0,0 -11100,13642,24784,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-944.45416,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.17,26.709999,-9,-9,1,1,1,0,1,6,1,0,431,114918.59,0,0,2252.4111 -11100,13643,24785,-9,24784,-9,2,1,1,33,2,0,0,0,2,-9,97,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1067.0206,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.0071173,3,40.25,25.09,-9,-9,4,1,1,0,1,6,1,0,487,-28654.656,0,0,0 -11101,13644,24786,24787,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,1,0,0,0,0,83,3,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,29.648895,0,0,0,27.5,1,1,0,0,0,36.611198,1,45.75,28.07,34.470001,18.629999,6,1,1,0,0,11,1,0,281,258656.98,0,0,2631.5859 -11101,13644,24787,24786,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,64,0,-1,0,0,0,0,84,3,3,3,3,3,2019,4,2,19,4,0,0,15,4,1,4,0,0,0,1,0,12.055597,20.611996,0,0,0,0,1,1,0,0,0,0,0,34.470001,18.629999,45.75,28.07,2,1,1,0,0,11,1,0,281,258656.98,0,0,2631.5859 -11102,13645,24788,24790,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.0961461,6.9290657,0,1,0,-9,24,0,-7,-140.57411,0,0,0,59,3,4,1,3,3,2019,1,2,9,1,16,16,15,1,0,1,0,8.3304815,8.3304815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.639999,58.75,51.279999,6,1,1,0,0,2,4,1,431,380686.56,0,0,3359.7366 -11102,13645,24789,-9,24788,24790,5,1,1,17,2,0,0,1,2,0,7,2,0,0,5,6.0518327,5.4377041,0,1,0,0,0,-9,0,-908.15363,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.630001,56.139999,-9,-9,6,1,1,0,0,2,4,1,431,380686.56,0,0,3359.7366 -11102,13645,24790,24788,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,8.5261364,8.647294,0,1,0,-9,23,0,7,47.438461,0,0,0,52,2,4,1,3,3,2019,1,1,7,0,48,50,15,1,0,1,0,12.561829,12.561829,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,51.279999,48.77,57.639999,6,1,1,0,0,2,4,1,431,380686.56,0,0,3359.7366 -11102,13646,24791,-9,24788,24790,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.4402046,8.4550095,0,3,0,0,0,-9,0,-895.74402,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,41,48,15,1,0,-9,1,11.478905,11.478905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,2,4,1,340,39504.898,0,0,1849.0592 -11102,13647,24792,-9,24788,24790,4,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.4469743,7.3062587,0,3,0,0,0,-9,0,-974.26526,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,0,15,1,0,-9,1,6.2541914,6.2541914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,2,3,1,439,-25838.25,0,0,957.67188 -11103,13648,24793,-9,24795,24794,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.00299,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,758.33331,358302.81,0,0,3715.8545 -11103,13648,24794,24795,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,8.6169529,8.9526739,0,2,0,-9,8,0,-3,20.263527,0,0,0,50,2,4,1,3,3,2019,1,1,6,0,41,37,15,1,0,1,0,14.381805,14.381805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.82,53.970001,6,1,1,0,0,2,4,1,758.33331,358302.81,0,0,3715.8545 -11103,13648,24795,24794,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,0,4,8.0367985,7.6842523,0,2,0,-9,8,0,3,-151.0927,0,0,0,47,2,4,1,2,2,2019,1,2,13,2,37,35,15,1,0,1,0,7.1660118,7.1660118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,57.16,56.150002,2,1,1,0,0,2,4,1,758.33331,358302.81,0,0,3715.8545 -11103,13649,24796,-9,24795,24794,3,1,0,18,2,0,2,0,2,1,3,3,0,0,3,6.9134898,7.0734434,0,3,0,0,0,-9,0,-988.69977,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.279999,57.07,-9,-9,2,1,1,1,0,2,4,1,255,-227486.19,0,0,647.46509 -11104,13650,24797,24798,-9,-9,1,1,0,55,1,0,0,0,1,-9,4,3,0,0,3,6.1845813,7.9886303,7.6403556,1,0,-9,37,0,-2,17.918144,0,0,0,57,2,4,1,2,2,2019,3,2,8,0,10,31,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6070561,8.1424541,7.4685626,3,55.959999,49.93,61.119999,51.57,6,1,1,0,0,5,5,1,1902.5,942903.44,0,0,2372.6338 -11104,13650,24798,24797,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.5594788,8.5362329,0,1,0,-9,36,0,2,-202.07999,0,0,0,55,1,3,3,2,1,2019,2,1,6,0,47,40,15,1,0,4,0,12.942138,12.942138,0,0,0,0,0,0,0,2,0,0,0,4.8865261,0,3.8388534,3,61.119999,51.57,55.959999,49.93,7,1,1,0,0,5,5,1,1902.5,942903.44,0,0,2372.6338 -11105,13651,24799,24800,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,0,3,8.2074118,8.0806484,0,2,0,-9,35,0,-7,-157.87291,0,0,0,63,2,4,1,2,2,2019,1,1,11,1,21,21,15,1,0,1,0,17.822262,17.822262,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.009998,48.98,33.139999,64.629997,3,1,1,0,0,13,5,1,261.66666,618314.25,0,0,3698.6252 -11105,13651,24800,24799,-9,-9,1,1,1,63,1,0,1,0,2,-9,2,1,0,0,4,8.7335567,8.3281174,0,2,0,-9,35,0,7,-55.675797,0,0,0,56,2,3,1,3,3,2019,1,2,12,0,36,45,15,1,0,1,0,23.499269,23.499269,0,0,0,0,0,0,0,0,1,1,0,2.3665657,0,0,0,33.139999,64.629997,52.009998,48.98,6,1,1,0,0,13,5,1,261.66666,618314.25,0,0,3698.6252 -11105,13651,24801,-9,24799,24800,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1049.1274,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.419998,63.93,-9,-9,6,1,1,0,0,13,5,1,261.66666,618314.25,0,0,3698.6252 -11106,13652,24802,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,0,4,0,4.7102299,4.8698645,3,0,0,0,-9,0,-920.68115,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9823456,0,0,0,43.23,58.279999,-9,-9,6,1,1,0,0,7,2,1,32,451919.75,0,0,99.253952 -11107,13653,24803,24804,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.2392831,7.2881722,1,0,-9,49,0,1,-139.19211,0,0,0,70,1,5,1,3,2,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1207309,7.401792,0,3,52.970001,48.43,60.02,56.419998,6,1,1,0,0,6,5,1,876,2301026,0,0,6746.7222 -11107,13653,24804,24803,-9,-9,1,1,1,70,1,0,0,0,1,-9,2,1,0,0,5,7.3462992,9.0519152,8.6888771,1,0,-9,49,0,-1,-6.5271673,0,0,0,71,1,4,3,3,3,2019,2,2,6,0,10,0,15,1,0,4,0,19.757359,19.757359,0,0,0,0,0,0,0,2,1,1,0,7.3834949,8.9673071,5.9228969,3,60.02,56.419998,52.970001,48.43,7,1,1,0,0,6,5,1,876,2301026,0,0,6746.7222 -11108,13654,24805,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,1,1,0,0,3,8.4606152,8.4990416,0,3,0,0,0,-9,0,-1044.6161,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,35,30,15,1,0,-9,0,16.927576,16.927576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,2,1,1,0,0,9,5,1,345,374133.94,0,0,2550.1453 -11109,13655,24806,24807,-9,-9,2,1,1,37,1,1,3,0,3,-9,1,1,0,0,3,0,0,0,2,0,-9,13,0,5,0,0,0,0,32,2,3,3,3,3,2019,2,1,11,2,0,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7119819,0,0,0,47,52,44,52,5,2,3,0,0,4,1,1,458.5,11376.105,0,0,2154.2996 -11109,13655,24807,24806,-9,-9,1,1,0,32,1,1,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,13,0,-5,0,0,0,1,37,3,3,1,3,3,2019,3,2,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.336206,0,0,0,44,52,47,52,6,2,3,0,0,4,1,1,458.5,11376.105,0,0,2154.2996 -11109,13655,24808,-9,24807,24806,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.91809,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,4,1,1,458.5,11376.105,0,0,2154.2996 -11109,13655,24809,-9,24807,24806,4,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.0294,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,458.5,11376.105,0,0,2154.2996 -11110,13656,24810,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,0,3,0,8.1408539,8.1739855,3,0,0,0,-9,0,-958.25079,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4232907,8.168786,0,0,57.509998,47.91,-9,-9,6,1,1,0,0,1,4,1,924,1096947.8,0,0,2192.9529 -11111,13657,24811,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,1,2,0,8.3401165,8.1463747,3,0,0,0,-9,0,-1021.1243,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,6.8230443,0,0,0,0,57.730461,0,1,1,0,4.9689651,7.859879,0,0,43.98,40.939999,-9,-9,3,1,1,0,0,9,4,1,291,1424916.4,0,0,1241.1995 -11112,13658,24812,24813,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-3,-28.009401,0,0,0,75,2,5,3,2,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8228064,0,0,0,51,46,62.389999,56.709999,6,1,1,0,0,4,2,1,527,561707.38,0,0,2370.627 -11112,13658,24813,24812,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,5,0,7.2789173,7.6956015,1,0,-9,51,0,3,40.531391,0,0,0,72,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9490098,7.6895685,0,0,62.389999,56.709999,51,46,7,1,1,0,0,4,2,1,527,561707.38,0,0,2370.627 -11113,13659,24814,-9,-9,-9,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,7.5574965,8.0994167,0,3,0,0,0,-9,0,-914.07703,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,78,43,15,1,0,-9,1,4.2313056,4.2313056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,52,-9,-9,5,1,1,0,0,4,3,0,525,-46595.387,0,0,945.09674 -11113,13660,24815,-9,-9,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.5710874,7.7855029,0,3,0,0,0,-9,0,-1136.5751,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,47,15,1,0,-9,1,6.2273788,6.2273788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.799999,44.259998,-9,-9,4,1,1,0,0,4,3,0,1385,118777.88,0,0,1776.5162 -11114,13661,24816,24817,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,5,0,5.7544322,5.5261803,1,0,-9,1,-9,-4,-56.792202,-9,0,0,78,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8742528,6.0348849,0,0,60.02,56.419998,55.43,45.880001,7,1,1,0,0,6,2,1,367.5,1587860.3,0,0,2315.188 -11114,13661,24817,24816,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.3393312,6.9189067,1,0,1,1,-9,4,124.75311,0,0,0,74,3,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2440336,7.1415739,0,0,55.43,45.880001,60.02,56.419998,6,1,1,0,0,6,2,1,367.5,1587860.3,0,0,2315.188 -11115,13662,24818,24819,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,6.3185191,6.2293963,1,0,-9,35,0,-3,-10.06758,0,0,0,70,3,4,3,3,2,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.561779,6.1854844,0,0,48.279999,60.18,46.310001,56.450001,6,1,1,0,0,10,2,1,1264,474384.44,0,0,1335.2141 -11115,13662,24819,24818,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.3753605,6.3095312,1,0,-9,9,0,3,124.63586,0,0,0,67,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3657556,6.3728247,0,0,46.310001,56.450001,48.279999,60.18,6,1,1,0,0,10,2,1,1264,474384.44,0,0,1335.2141 -11116,13663,24820,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,4,7.6911445,7.9513235,0,3,0,-9,0,1,0,-794.77118,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,39,39,15,1,0,-9,0,8.1280527,8.1280527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.509998,36.580002,-9,-9,5,1,1,0,0,6,4,1,1027,220074.02,0,0,1476.5521 -11117,13664,24821,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-839.47656,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,30,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.389999,14.45,-9,-9,3,1,1,0,1,4,1,1,2000,-39454.176,0,0,221.20662 -11118,13665,24822,24823,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,0,3,7.6616216,7.7599101,0,2,0,-9,33,0,-12,44.590889,0,0,0,69,2,3,3,3,2,2019,2,1,8,0,20,22,15,1,0,4,0,11.152945,11.152945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,53.57,38.93,6,1,1,0,0,9,4,1,639,1147689,0,0,3795.5239 -11118,13665,24823,24822,-9,-9,1,1,1,69,1,0,1,0,2,-9,4,3,0,0,3,0,8.6226234,8.477109,2,0,-9,32,0,12,1.8945467,0,0,0,57,2,3,1,2,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8267574,8.2186117,0,0,53.57,38.93,57.330002,53.459999,5,1,1,0,0,9,4,1,639,1147689,0,0,3795.5239 -11118,13666,24824,-9,24822,24823,3,1,0,18,2,0,1,0,2,-9,7,2,0,0,5,6.3542967,6.3725257,0,3,0,0,0,-9,0,-932.88263,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.950001,63.66,-9,-9,5,1,1,0,0,9,4,1,178,36276.965,0,0,492.29257 -11119,13667,24825,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1004.826,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,14.680833,0,0,0,0,1,1,0,0,0,0,0,44.09,20.379999,-9,-9,3,1,1,0,0,2,1,0,1311,99803.211,0,0,1275.0171 -11119,13668,24826,-9,24825,-9,2,1,0,33,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-949.64349,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,29,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.26,53.860001,-9,-9,2,1,1,0,1,2,1,0,780,69848.117,0,0,1003.7204 -11120,13669,24827,24828,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,5,8.1734123,8.1727924,0,2,0,-9,26,0,4,53.653389,0,0,0,44,2,3,1,2,2,2019,1,1,8,0,42,45,15,1,0,1,0,9.7729416,9.7729416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,59.310001,49.810001,5,1,1,0,0,4,3,1,1293.25,124503.58,0,0,2559.9949 -11120,13669,24828,24827,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,7.7212362,7.7405114,0,2,0,-9,26,0,-4,-103.63412,0,0,1,48,2,5,1,2,2,2019,1,2,8,0,35,28,15,1,0,1,0,6.5780702,6.5780702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,48.77,60.16,6,1,1,0,0,4,3,1,1293.25,124503.58,0,0,2559.9949 -11120,13669,24829,-9,24828,24827,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.72614,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.017506519,0,0,0,47.77,56.48,-9,-9,6,1,1,0,0,4,3,1,1293.25,124503.58,0,0,2559.9949 -11120,13669,24830,-9,24828,24827,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.4884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,1,1293.25,124503.58,0,0,2559.9949 -11121,13670,24831,24832,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,0,5,8.7840395,8.7131643,0,2,0,-9,23,0,6,-10.769675,0,0,0,46,1,4,1,-9,-9,2019,1,1,12,0,35,37,15,1,0,1,0,18.990194,18.990194,0,0,0,0,0,0,0,0,0,0,0,1.3852736,0,0,0,52.240002,58.560001,54.200001,57.490002,6,1,1,0,0,8,5,1,448.33334,3373729,0,0,5523.5762 -11121,13670,24832,24831,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,4,8.8790522,9.2698193,0,2,0,-9,26,0,-6,22.524345,0,0,0,52,1,5,1,2,2,2019,1,2,6,1,56,45,15,1,0,1,0,21.341936,21.341936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52.240002,58.560001,4,1,1,0,0,8,5,1,448.33334,3373729,0,0,5523.5762 -11121,13670,24833,-9,24832,24831,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-995.55371,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,8,5,1,448.33334,3373729,0,0,5523.5762 -11121,13671,24834,-9,24832,24831,3,1,1,18,2,0,2,1,3,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-984.33911,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,4,3,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.299999,57.540001,-9,-9,6,1,1,0,0,8,5,1,1064,0,0,0,0 -11122,13672,24835,24836,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.2689447,8.3876982,0,1,0,-9,2,0,-5,-47.447922,0,1,1,31,2,4,1,2,3,2019,1,2,10,0,35,37,15,1,0,1,0,11.258633,11.258633,0,0,0,0,0,0,0,0,0,0,0,2.7476885,0,0,0,54.200001,57.490002,50,57,6,1,1,0,0,1,5,1,750,-95980.43,0,0,7718.5186 -11122,13672,24836,24835,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,0,4,9.7173328,9.6677198,0,1,0,-9,2,0,5,-70.847389,0,0,0,26,1,4,1,-9,-9,2019,1,1,10,1,40,45,15,1,0,1,0,46.731625,46.731625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,54.200001,57.490002,5,1,1,0,0,1,5,1,750,-95980.43,0,0,7718.5186 -11123,13673,24837,24838,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.9148216,7.909852,0,1,0,-9,41,0,1,34.072659,0,0,0,56,3,4,1,3,3,2019,1,2,13,1,24,24,15,1,0,1,0,12.426309,12.426309,0,0,0,0,0,0,0,0,0,0,0,3.7778583,0,0,0,40.490002,52.950001,37.580002,59.68,3,2,3,0,1,9,3,1,280,729114.5,0,0,6489.3711 -11123,13673,24838,24837,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,0,4,5.9004111,6.177814,0,1,0,-9,41,0,-1,7.3545747,0,0,0,57,2,3,1,3,3,2019,1,1,14,3,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9802418,0,0,0,37.580002,59.68,40.490002,52.950001,3,1,1,0,0,9,3,1,280,729114.5,0,0,6489.3711 -11123,13674,24839,-9,24837,24838,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.2585878,8.4439783,0,3,0,0,0,-9,0,-891.49078,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,37,42,15,1,0,-9,1,15.125864,15.125864,0,0,0,0,0,0,0,0,0,0,0,2.1832068,0,0,0,47.52,57.75,-9,-9,6,1,1,0,0,9,4,1,472,123884.38,0,0,1024.4199 -11123,13675,24840,-9,24837,24838,4,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,9.4183292,9.026103,0,3,0,0,0,-9,0,-1022.2066,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,0,0,45,47,15,1,0,-9,1,27.808447,27.808447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,4,2,0,0,9,5,1,166,9576.4775,0,0,2877.0811 -11124,13676,24841,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,5.8865256,5.5716166,3,0,0,0,-9,0,-1068.127,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,3.7484438,0,0,0,0,80.594002,0,1,1,0,7.9130177,5.8527212,0,0,49.619999,29.809999,-9,-9,6,1,1,0,0,2,2,1,1359,300362.78,0,0,3225.937 -11125,13677,24842,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1041.4901,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.419998,25.700001,-9,-9,6,1,1,0,0,13,1,0,404,-79961.445,0,0,2782.2612 -11126,13678,24843,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,7.4951639,7.5848684,3,0,0,0,-9,0,-1006.7781,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6331182,0,0,48.290001,37.16,-9,-9,5,1,1,0,0,7,3,1,1674,871621.75,0,0,1675.5313 -11127,13679,24844,-9,24846,24845,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-930.5639,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,13,4,1,710.75,273867.31,0,0,3683.3618 -11127,13679,24845,24846,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.4247952,8.5160313,0,2,0,-9,7,0,-4,60.134689,0,0,0,44,2,4,1,3,2,2019,1,2,12,0,44,37,15,1,0,1,0,12.752232,12.752232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,50,55,4,1,1,0,0,13,4,1,710.75,273867.31,0,0,3683.3618 -11127,13679,24846,24845,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,8.1563816,7.8104486,0,2,0,-9,7,0,4,144.20834,0,0,1,40,2,3,1,3,3,2019,1,1,10,1,25,34,15,1,0,1,0,13.760243,13.760243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,46.080002,57.200001,6,1,1,0,0,13,4,1,710.75,273867.31,0,0,3683.3618 -11127,13679,24847,-9,24846,24845,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.2502,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,710.75,273867.31,0,0,3683.3618 -11128,13680,24848,24849,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.1168575,8.3165741,0,1,0,-9,7,0,-1,2.9181192,0,0,0,36,1,4,1,1,2,2019,1,1,13,2,37,38,15,1,0,1,0,14.938874,14.938874,0,0,0,0,0,0,0,0,0,0,0,3.8267272,0,0,0,46.389999,60.990002,52.23,55.599998,3,4,5,0,0,8,5,1,250,139131.42,0,0,3817.9824 -11128,13680,24849,24848,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,8.0450773,8.4528055,0,1,0,-9,7,0,1,-1.7436606,0,0,1,35,1,4,1,1,1,2019,1,2,7,0,40,20,15,1,0,1,0,12.209891,12.209891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,46.389999,60.990002,6,4,5,0,0,8,5,1,250,139131.42,0,0,3817.9824 -11129,13681,24850,24851,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,4.555243,4.673008,1,0,-9,58,0,-1,-41.724041,0,0,0,77,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.6964021,123.6328,1,52,45,54,46,6,1,1,0,0,1,1,0,687.5,92204.828,0,0,1674.5027 -11129,13681,24851,24850,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,58,0,1,-46.049862,0,0,0,76,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,52,45,5,1,1,0,0,1,1,0,687.5,92204.828,0,0,1674.5027 -11130,13682,24852,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,2,8.4079027,8.1638432,0,3,0,0,0,-9,0,-910.99677,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,43,47,15,1,0,-9,0,11.304089,11.304089,0,0,0,0,0,0,0,0,1,1,0,2.1927707,0,0,0,39.259998,36.200001,-9,-9,5,1,1,0,0,10,4,1,160,122786.13,0,0,-346.84689 -11130,13683,24853,-9,-9,-9,2,1,0,41,2,0,0,0,2,-9,2,1,0,0,4,7.8384256,8.2094355,0,3,0,0,0,-9,0,-1042.1531,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,0,15,1,0,-9,0,10.525966,10.525966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,6,1,1,0,0,10,4,1,238,-106956.4,0,0,1488.9327 -11131,13684,24854,24855,-9,-9,2,1,1,66,1,0,0,0,3,-9,2,1,0,0,3,8.0309219,8.2369604,6.9892306,1,0,-9,7,0,10,-96.96714,0,0,0,56,2,3,1,-9,-9,2019,1,1,10,1,38,39,15,1,0,1,0,8.2707272,8.2707272,0,0,0,0,0,0,0,0,0,0,0,2.8078709,7.045568,0,0,52,48,57.330002,53.459999,5,1,1,0,0,4,4,1,2447,514623.88,0,0,1855.1351 -11131,13684,24855,24854,-9,-9,1,1,0,56,1,0,0,0,2,-9,1,1,0,0,3,7.1909442,7.337935,5.4477878,1,0,-9,13,0,-10,-122.58749,0,0,0,66,3,3,1,-9,-9,2019,1,2,6,0,38,35,15,1,0,1,0,3.9962876,3.9962876,0,0,0,0,0,0,0,0,0,0,0,5.2490854,5.3948669,0,0,57.330002,53.459999,52,48,7,1,1,0,0,4,4,1,2447,514623.88,0,0,1855.1351 -11132,13685,24856,24857,-9,-9,1,1,0,21,1,0,0,0,2,-9,9,3,0,0,5,6.8005996,6.6733274,0,1,0,-9,1,-9,-4,-34.361118,-9,1,1,25,2,4,1,-9,-9,2019,3,2,5,0,37,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,49.860001,55.310001,6,1,1,0,0,4,3,0,655,166703.41,0,0,1461.9473 -11132,13685,24857,24856,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,7.725358,8.1644087,0,1,0,-9,1,-9,4,16.198231,-9,1,0,21,2,5,3,-9,-9,2019,2,1,12,0,40,0,15,1,0,3,0,7.1972609,7.1972609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.860001,55.310001,59.43,58.049999,3,1,1,0,0,4,3,0,655,166703.41,0,0,1461.9473 -11133,13686,24858,-9,24859,-9,2,1,0,17,2,0,1,1,3,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-954.06189,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.209999,-9,-9,6,1,1,0,0,1,2,0,311,-1962.5391,0,0,1423.8296 -11133,13686,24859,-9,-9,-9,1,1,0,46,2,0,1,0,3,-9,2,1,0,0,4,6.911983,6.9630642,0,4,0,0,0,-9,0,-1031.9567,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,16,16,15,1,0,-9,0,5.6668253,5.6668253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,1,2,0,311,-1962.5391,0,0,1423.8296 -11134,13687,24860,-9,-9,-9,1,1,1,53,2,0,0,0,3,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-994.58502,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,65,42,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,2,1,0,594,0,0,0,-681.34576 -11135,13688,24861,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,3,0,8.0154867,7.9069939,3,0,0,0,-9,0,-1037.5474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9036155,8.1353035,0,0,64.150002,32.529999,-9,-9,5,3,4,0,0,8,3,1,1485,1727506.9,0,0,2742.9297 -11135,13689,24862,-9,24861,-9,2,1,0,41,2,0,0,0,1,-9,2,1,0,0,2,8.1454554,8.3553238,0,3,0,0,0,-9,0,-884.8927,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,35,35,15,1,0,-9,1,12.117104,12.117104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.459999,45.880001,-9,-9,3,3,4,0,0,8,4,1,433,74156.813,0,0,1246.6147 -11135,13689,24863,-9,24862,-9,3,1,0,15,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-978.43884,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,4,1,433,74156.813,0,0,1246.6147 -11136,13690,24864,24865,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.1218805,8.6271858,0,1,0,-9,2,0,4,23.686069,-9,0,0,28,2,3,1,-9,-9,2019,1,1,14,3,40,0,15,1,0,1,0,11.243761,11.243761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.669998,61.060001,43.310001,58.639999,5,1,1,0,0,12,4,1,1760,215031.63,0,0,2235.2974 -11136,13690,24865,24864,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,0,3,7.9332547,8.1736374,0,1,0,-9,2,0,-4,82.902084,0,1,1,32,1,4,1,2,2,2019,1,2,17,6,48,48,15,1,1,1,0,7.9404278,7.9404278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.310001,58.639999,43.669998,61.060001,5,1,1,0,0,12,4,1,1760,215031.63,0,0,2235.2974 -11137,13691,24866,24867,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,8.5941515,8.5940924,0,1,0,-9,1,-9,1,-5.0172896,-9,1,0,27,2,4,1,-9,-9,2019,1,1,12,0,37,0,15,1,0,1,0,20.46014,20.46014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,45.880001,57.279999,6,1,1,0,0,11,5,1,463,-661.10565,0,0,4293.1284 -11137,13691,24867,24866,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,8.6294861,8.4379406,0,1,0,-9,1,-9,-1,73.953712,-9,1,1,28,1,4,1,-9,-9,2019,1,2,9,0,46,0,15,1,0,1,0,12.112716,12.112716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.880001,57.279999,57.16,56.150002,7,1,1,0,0,11,5,1,463,-661.10565,0,0,4293.1284 -11138,13692,24868,-9,24870,24869,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-987.40106,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,11,3,1,343,201327.45,0,0,2875.8655 -11138,13692,24869,24870,-9,-9,2,1,1,55,1,0,1,0,1,-9,2,1,0,1,4,8.4543371,8.3824282,0,2,0,-9,23,0,5,-6.5730658,0,0,0,50,1,4,3,2,1,2019,2,1,7,0,39,41,15,1,0,3,0,12.804214,12.804214,0,0,0,0,0,0,0,87,1,1,0,5.3407378,0,116.28994,3,57.16,56.150002,57.16,56.150002,6,1,1,0,0,11,3,1,343,201327.45,0,0,2875.8655 -11138,13692,24870,24869,-9,-9,1,1,0,50,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,23,0,-5,-326.0784,0,0,0,55,1,4,1,2,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1162791,0,117.14073,3,57.16,56.150002,57.16,56.150002,6,1,1,0,0,11,3,1,343,201327.45,0,0,2875.8655 -11139,13693,24871,24872,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,9,0,-2,-50.187878,0,0,0,67,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,16.108978,0,0,0,0,0,1,1,0,0,0,0,0,62.200001,18.639999,57.16,56.150002,6,1,1,0,0,5,3,1,370.5,1205415.5,0,0,2841.0845 -11139,13693,24872,24871,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.5462208,7.4314437,1,0,-9,9,0,2,-29.749651,0,0,0,65,3,2,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.5052457,21.752447,1,57.16,56.150002,62.200001,18.639999,6,1,1,0,0,5,3,1,370.5,1205415.5,0,0,2841.0845 -11140,13694,24873,24874,-9,-9,2,1,0,46,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,4,0,10,0,0,0,0,36,2,3,3,-9,-9,2019,4,1,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.099998,42.150002,43.139999,45.43,3,1,1,1,1,9,1,0,761,-10446.102,0,0,555.24982 -11140,13694,24874,24873,-9,-9,1,1,1,36,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,4,0,-10,0,-9,0,0,46,2,2,3,2,2,2019,4,2,13,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.139999,45.43,38.099998,42.150002,3,4,2,0,1,9,1,0,761,-10446.102,0,0,555.24982 -11141,13695,24875,-9,-9,-9,1,1,1,79,2,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1202.9459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1447647,0,0,0,56.220001,45.75,-9,-9,7,1,1,0,0,5,1,0,388,5722.584,0,0,1973.4259 -11142,13696,24876,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,3,0,6.6001024,6.620708,3,0,0,0,-9,0,-1078.47,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,1.9447721,0,0,0,0,0,0,1,1,0,0,6.7659993,0,0,55.860001,43.169998,-9,-9,7,1,1,0,0,4,2,1,144,169721.05,0,0,-519.39801 -11143,13697,24877,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,1,1,0,7.1673431,7.4216881,3,0,0,0,-9,0,-1021.5148,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.71497798,7.5883741,0,0,47.889999,27.15,-9,-9,5,1,1,0,0,11,3,1,764,169880.91,0,0,109.62263 -11144,13698,24878,24879,-9,-9,1,1,0,75,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,-3,6.991961,0,0,0,78,1,4,1,2,1,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,3.0350492,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,56.779999,46.68,7,1,1,0,0,4,4,1,965.5,1058500,0,0,3411.9263 -11144,13698,24879,24878,-9,-9,2,1,1,78,1,0,0,0,1,-9,2,1,0,0,4,7.913311,8.8769417,7.5671821,1,0,-9,55,0,3,1.3293841,0,0,0,75,1,4,3,-9,3,2019,2,1,10,1,22,25,15,1,0,4,0,17.193577,17.193577,0,0,0,0,0,0,0,0,1,1,0,0,7.7195239,0,0,56.779999,46.68,52.82,53.970001,6,1,1,0,0,4,4,1,965.5,1058500,0,0,3411.9263 -11145,13699,24880,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,6.6857996,6.6326866,3,0,0,0,-9,0,-964.08862,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8769922,0,3,53,52,-9,-9,7,4,2,0,0,8,2,1,626,434133.25,0,0,753.79596 -11146,13700,24881,-9,24882,24884,2,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.0199,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,5,1,643,135674.94,0,0,4154.8018 -11146,13700,24882,24884,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,0,5,6.9007692,7.1035738,0,2,0,-9,4,0,-7,11.046676,0,0,1,37,1,4,1,-9,-9,2019,1,3,6,0,26,25,15,1,0,1,0,4.9262633,4.9262633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.650002,56.130001,57.16,56.150002,6,1,1,0,0,6,5,1,643,135674.94,0,0,4154.8018 -11146,13700,24883,-9,24882,24884,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-962.25867,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,5,1,643,135674.94,0,0,4154.8018 -11146,13700,24884,24882,-9,-9,3,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,9.0803661,9.4214201,0,2,0,-9,4,0,7,-33.857456,0,0,0,30,2,5,1,-9,-9,2019,1,1,5,0,50,50,15,1,0,1,0,21.540684,21.540684,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.650002,56.130001,6,1,1,0,0,6,5,1,643,135674.94,0,0,4154.8018 -11147,13701,24885,24886,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,3,7.4451509,7.2385554,0,1,0,-9,33,0,-5,124.04487,0,0,0,59,2,3,1,3,-9,2019,1,2,7,0,36,35,15,1,0,1,0,6.0998688,6.0998688,0,0,0,0,0,0,0,2,0,0,0,0,0,.74070507,3,61.290001,43.34,31.360001,56.419998,5,1,1,0,0,6,5,1,834,417644.72,0,0,1559.9008 -11147,13701,24886,24885,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,8.5983591,8.836874,0,1,0,-9,33,0,5,-43.160309,0,0,0,54,3,3,1,3,3,2019,1,1,11,1,45,42,15,1,0,1,0,16.382729,16.382729,0,0,0,0,0,0,0,2,0,0,0,0,0,.27238199,3,31.360001,56.419998,61.290001,43.34,5,1,1,0,0,6,5,1,834,417644.72,0,0,1559.9008 -11148,13702,24887,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,2,1,0,0,2,7.0723076,7.3572011,5.4492168,4,0,0,0,-9,0,-1031.0354,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,15,16,15,1,0,-9,0,6.8233628,6.8233628,0,0,0,0,0,0,0,0,1,1,0,5.7420859,0,0,0,39.57,47.240002,-9,-9,4,1,1,0,1,9,2,0,286.5,-156693.2,0,0,1417.2854 -11148,13702,24888,-9,24887,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1063.6703,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,286.5,-156693.2,0,0,1417.2854 -11149,13703,24889,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,5,0,7.1929331,7.1834407,3,0,0,0,-9,0,-987.19623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.951519,0,0,64.129997,46.299999,-9,-9,7,1,1,0,0,8,2,1,68,225557.45,0,0,1891.5768 -11150,13704,24890,24891,-9,-9,1,1,0,38,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,2,0,0,0,1,36,2,5,1,3,2,2019,3,2,2,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,62.389999,56.709999,6,2,3,0,0,7,1,1,705,-23648.334,0,0,831.30188 -11150,13704,24891,24890,-9,-9,2,1,1,36,1,0,4,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,10,0,-2,0,0,0,0,38,2,3,3,-9,-9,2019,2,1,1,0,25,25,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,57.330002,53.459999,7,2,3,0,0,7,1,1,705,-23648.334,0,0,831.30188 -11150,13704,24892,-9,24890,24891,5,1,1,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1063.4445,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,2,3,0,0,7,1,1,705,-23648.334,0,0,831.30188 -11150,13704,24893,-9,24890,24891,3,1,1,17,2,0,4,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-914.12622,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.540001,62.09,-9,-9,7,2,3,0,0,7,1,1,705,-23648.334,0,0,831.30188 -11150,13704,24894,-9,24890,24891,6,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.25354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,7,1,1,705,-23648.334,0,0,831.30188 -11151,13705,24895,24897,-9,-9,2,1,0,31,1,2,2,0,2,-9,5,1,0,0,3,8.5626545,8.6309547,0,2,0,-9,7,0,3,-58.418243,0,0,1,28,2,3,1,-9,-9,2019,1,1,12,1,38,0,15,1,0,1,0,17.502234,17.502234,0,0,0,0,0,0,0,0,1,1,0,2.5073531,0,0,0,52,54.509998,52,54.509998,6,1,1,0,0,2,4,1,1005.25,518792.31,0,0,4869.3149 -11151,13705,24896,-9,24895,24897,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.94061,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,1005.25,518792.31,0,0,4869.3149 -11151,13705,24897,24895,-9,-9,1,1,1,28,1,2,2,0,2,-9,2,1,0,0,3,8.1302328,8.3135309,0,2,0,-9,7,0,-3,19.501669,0,1,0,31,2,3,1,-9,-9,2019,1,2,10,0,46,0,15,1,0,1,0,10.81246,10.81246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,52,54.509998,6,1,1,0,0,2,4,1,1005.25,518792.31,0,0,4869.3149 -11151,13705,24898,-9,24895,24897,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-967.24536,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,1005.25,518792.31,0,0,4869.3149 -11152,13706,24899,24900,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,0,3,7.8850675,8.1244545,7.1734595,1,0,-9,8,0,15,51.601662,0,0,0,52,2,2,3,2,3,2019,2,1,10,0,40,37,15,1,0,3,0,9.2339516,9.2339516,0,0,0,0,0,0,0,0,1,1,0,6.9927855,7.5754371,0,0,51.349998,50.810001,36.549999,22.58,5,1,1,0,0,7,4,0,427,521766.72,0,0,1559.0293 -11152,13706,24900,24899,-9,-9,1,1,1,52,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,8,0,-15,-69.517776,0,0,0,67,2,3,1,1,1,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.549999,22.58,51.349998,50.810001,3,4,2,1,0,7,4,0,427,521766.72,0,0,1559.0293 -11153,13707,24901,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,5,8.7137861,8.8303738,0,3,0,0,0,-9,0,-1079.9254,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,0,17.007557,17.007557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.939999,58.27,-9,-9,4,1,1,0,0,13,5,1,199,435999.38,0,0,1662.0425 -11154,13708,24902,24903,-9,-9,1,1,0,50,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,6,0,-11,0,0,0,0,61,3,3,3,3,2,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.130001,32.560001,55.18,31.25,6,1,1,1,0,12,1,0,856,175912.75,0,0,1049.4211 -11154,13708,24903,24902,-9,-9,2,1,1,61,1,0,0,0,3,-9,3,3,0,1,3,0,0,0,1,0,-9,6,0,11,0,0,0,0,50,3,2,3,-9,-9,2019,4,1,14,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.18,31.25,57.130001,32.560001,5,1,1,1,1,12,1,0,856,175912.75,0,0,1049.4211 -11155,13709,24904,24906,-9,-9,2,1,0,32,1,0,2,0,2,-9,1,1,0,0,3,6.1604829,6.0074458,0,2,0,-9,4,-9,-7,91.403526,-9,0,1,39,3,4,1,2,1,2019,1,1,14,2,35,0,15,1,0,1,0,1.3643349,1.3643349,0,0,0,0,0,0,0,0,1,1,0,4.6615453,0,0,0,47.290001,37.580002,36.860001,41.099998,3,2,3,0,0,9,2,0,382,-1099.6895,0,0,235.3851 -11155,13709,24905,-9,24904,24906,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-953.01434,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,2,0,382,-1099.6895,0,0,235.3851 -11155,13709,24906,24904,-9,-9,1,1,1,39,1,0,2,0,3,-9,2,1,0,0,4,0,0,0,2,0,-9,4,-9,7,36.790947,-9,0,0,32,2,3,1,-9,-9,2019,1,2,12,2,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5490987,0,0,0,36.860001,41.099998,47.290001,37.580002,5,2,3,0,1,9,2,0,382,-1099.6895,0,0,235.3851 -11155,13709,24907,-9,24904,24906,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1016.2303,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,2,0,382,-1099.6895,0,0,235.3851 -11156,13710,24908,24909,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,5,8.7343149,8.70049,0,1,0,-9,5,0,-6,6.0563765,0,0,0,56,1,3,1,-9,-9,2019,1,1,13,1,60,57,15,1,0,1,0,12.149752,12.149752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,61.509998,63.650002,49.16,6,1,1,0,0,7,5,1,611.5,873834.5,0,0,9745.2793 -11156,13710,24909,24908,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,3,9.3196068,9.5435133,0,1,0,-9,5,0,6,-28.476864,0,0,0,50,1,5,1,3,2,2019,1,2,8,0,45,45,15,1,0,1,0,24.907375,24.907375,0,0,0,0,0,0,0,0,0,0,0,8.4504004,0,0,0,63.650002,49.16,45.810001,61.509998,6,1,1,0,0,7,5,1,611.5,873834.5,0,0,9745.2793 -11157,13711,24910,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,5.0899029,5.0392647,3,0,0,0,-9,0,-971.31653,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3702997,4.8345451,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,2,1,272,20716.375,0,0,1947.5396 -11158,13712,24911,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,1,1,0,0,4,9.5160427,8.9600668,4.1052165,3,0,0,0,-9,0,-899.80853,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,30,30,15,1,0,-9,0,39.906746,39.906746,0,0,0,0,0,0,0,0,0,0,0,7.875555,3.9804137,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,9,5,1,701,2798799.8,0,0,3995.1611 -11159,13713,24912,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-994.88623,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.200001,19.219999,-9,-9,3,1,1,0,0,1,1,0,275,-61717.559,0,0,570.16241 -11160,13714,24913,24914,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,37,0,5,-80.050659,0,0,0,56,1,3,1,2,2,2019,3,2,12,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.880001,41.16,48,48,5,1,1,0,0,8,3,1,629,1468603.5,0,0,1540.3397 -11160,13714,24914,24913,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,3,8.2438774,8.0308781,0,1,0,-9,31,0,-5,-81.558372,-9,0,0,61,1,2,3,3,3,2019,2,1,11,2,18,0,15,1,0,4,0,28.062998,28.062998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,40.880001,41.16,5,3,4,0,0,8,3,1,629,1468603.5,0,0,1540.3397 -11161,13715,24915,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,0,5,9.6208601,9.1765413,0,3,0,0,0,-9,0,-1067.6727,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,27,26,15,1,1,-9,0,49.208679,49.208679,0,0,0,0,0,0,0,0,1,1,0,3.8586524,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,9,5,1,336,930319.75,0,0,3712.6982 -11162,13716,24916,24917,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,4,8.4332256,8.4097261,0,2,0,-9,9,0,-15,17.153734,0,0,1,56,1,4,1,-9,-9,2019,1,2,17,7,38,38,15,1,1,1,0,14.678358,14.678358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.190001,61.279999,43.200001,59.970001,5,1,1,0,0,8,5,0,1266,1459981.9,0,0,3897.439 -11162,13716,24917,24916,-9,-9,2,1,1,56,1,0,1,0,1,-9,1,1,0,0,4,8.4439888,8.5908489,0,2,0,-9,9,0,15,98.087723,0,0,0,41,1,4,1,3,3,2019,1,1,7,0,30,30,15,1,0,1,0,24.098627,24.098627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,31.190001,61.279999,5,3,4,0,0,8,5,0,1266,1459981.9,0,0,3897.439 -11162,13716,24918,-9,24916,24917,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-830.2514,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,0,1266,1459981.9,0,0,3897.439 -11163,13717,24919,24920,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,2,9.0949869,9.080164,0,1,0,-9,8,0,-3,87.601418,0,0,0,62,3,5,1,3,-9,2019,1,1,7,0,38,38,15,1,0,1,0,26.14115,26.14115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.16,48.060001,48.080002,60.889999,6,1,1,0,0,9,5,1,315,222927.98,0,0,4819.5322 -11163,13717,24920,24919,-9,-9,1,1,0,62,1,0,0,0,3,-9,1,1,0,0,5,8.3388233,8.4186068,0,1,0,-9,8,0,3,191.70798,0,0,0,59,2,2,1,2,2,2019,1,2,9,2,20,20,15,1,0,1,0,23.158058,23.158058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.080002,60.889999,58.16,48.060001,7,1,1,0,0,9,5,1,315,222927.98,0,0,4819.5322 -11164,13718,24921,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,8.5768938,8.462492,0,3,0,0,0,-9,0,-1038.0013,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,48,35,15,1,0,-9,0,12.245636,12.245636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,8,5,0,789,22588.553,0,0,2699.5769 -11165,13719,24922,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,1,0,4.0489459,4.2126231,3,0,0,0,-9,0,-967.20728,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.2639432,0,0,1,1,0,3.0556736,4.4450164,0,0,43.27,20.92,-9,-9,6,1,1,0,0,1,1,0,409,-141858.16,0,0,2676.856 -11166,13720,24923,24925,-9,-9,2,1,0,50,1,0,2,0,2,-9,1,1,0,0,2,7.2822919,7.0821137,0,2,0,-9,29,0,0,21.562138,0,0,0,59,1,3,1,2,2,2019,1,1,12,1,18,20,15,1,0,1,0,9.4112854,9.4112854,0,0,0,0,0,0,0,2,1,1,0,0,0,8.7072811,3,53.560001,36.43,45.32,54.77,6,1,1,0,0,13,4,1,414,768671.63,0,0,4288.0186 -11166,13720,24924,-9,24923,24925,4,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1034.3026,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.360001,59.259998,-9,-9,2,1,1,0,0,13,4,1,414,768671.63,0,0,4288.0186 -11166,13720,24925,24923,-9,-9,1,1,1,59,1,0,2,0,1,-9,2,1,0,0,3,9.0961056,9.0596151,0,2,0,-9,29,0,9,49.248386,0,0,0,50,2,2,1,2,2,2019,1,2,16,5,42,45,15,1,1,1,0,19.259703,19.259703,0,0,0,0,0,0,0,0,1,1,0,3.8495276,0,0,0,45.32,54.77,53.560001,36.43,6,1,1,0,0,13,4,1,414,768671.63,0,0,4288.0186 -11166,13721,24926,-9,24927,-9,6,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-997.03778,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,1,1,473.5,-111384.05,0,0,720.35089 -11166,13721,24927,-9,24923,24925,5,1,0,24,2,0,2,0,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1097.9929,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.950001,49.790001,-9,-9,6,1,1,0,0,13,1,1,473.5,-111384.05,0,0,720.35089 -11166,13722,24928,-9,24923,24925,3,1,0,22,2,0,2,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-944.25977,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,1,0,13,1,1,4433,-94309.57,0,0,541.79266 -11167,13723,24929,-9,-9,-9,1,1,1,43,2,0,2,0,3,-9,2,1,0,0,4,7.7065473,7.7268996,0,4,0,-9,0,-9,0,-958.30115,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2316751,0,0,0,52,55,-9,-9,5,1,1,0,0,8,2,1,307,62145.242,0,0,1577.3099 -11167,13724,24930,-9,-9,24929,2,1,1,20,2,0,2,0,2,-9,2,1,0,0,5,7.2456818,7.0221171,0,3,0,-9,0,-9,0,-1040.0653,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,1,28,0,15,1,0,-9,1,6.7481952,6.7481952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.66,53.709999,-9,-9,5,4,2,0,0,8,2,1,247,84235.93,0,0,1406.8971 -11168,13725,24931,-9,-9,-9,1,1,0,36,2,1,4,0,3,-9,6,3,0,0,5,0,0,0,4,0,-9,0,-9,0,-918.32239,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.630001,46.73,-9,-9,6,1,1,0,0,2,1,0,827,8263.4336,0,0,1675.2777 -11168,13725,24932,-9,24931,-9,4,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-908.1803,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,827,8263.4336,0,0,1675.2777 -11168,13725,24933,-9,24931,-9,3,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-920.32684,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,827,8263.4336,0,0,1675.2777 -11168,13725,24934,-9,24931,-9,5,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-942.88422,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,1,0,827,8263.4336,0,0,1675.2777 -11169,13726,24935,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,2,0,6.5266585,6.8514981,3,0,0,0,-9,0,-884.1817,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.1047058,4.9227805,0,0,1,1,0,5.8844557,7.1006417,0,0,35.07,31.5,-9,-9,5,1,1,0,0,10,2,1,455,216130.42,0,0,1645.7168 -11169,13727,24936,-9,24935,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,0,4,8.9664021,8.698348,5.7721248,3,0,0,0,-9,0,-1027.6732,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,37,15,1,0,-9,1,32.202579,32.202579,0,0,0,0,0,0,0,14.5,1,1,0,5.4815578,0,15.578501,3,51.830002,57.200001,-9,-9,6,1,1,0,0,10,5,1,325,368084.47,0,0,2719.5461 -11170,13728,24937,24939,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,5,8.6493769,8.9925747,0,2,0,-9,8,0,-2,-83.724548,0,0,0,51,1,3,1,2,1,2019,1,2,7,0,46,43,15,1,0,1,0,18.537111,18.537111,0,0,0,0,0,0,0,0,0,0,0,5.6086884,0,0,0,60.040001,48.049999,49.580002,55.59,6,1,1,0,0,9,5,1,246.66667,1041051.4,0,0,6227.314 -11170,13728,24938,-9,24937,24939,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.1623,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,246.66667,1041051.4,0,0,6227.314 -11170,13728,24939,24937,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,9.613431,9.4393435,0,2,0,-9,8,0,2,-44.052341,0,0,0,49,1,5,1,1,2,2019,1,1,12,0,48,46,15,1,0,1,0,31.222797,31.222797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,60.040001,48.049999,5,1,1,0,0,9,5,1,246.66667,1041051.4,0,0,6227.314 -11170,13729,24940,-9,24937,24939,3,1,1,18,2,0,1,0,2,-9,2,1,0,0,3,7.7777553,7.6750855,0,3,0,0,0,-9,0,-952.69604,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,38,0,15,1,1,-9,1,9.1845617,9.1845617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.509998,59.43,-9,-9,5,1,1,0,0,9,3,1,1415,42847.992,0,0,478.75601 -11171,13730,24941,24942,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,5,0,6.0877085,6.040514,1,0,-9,6,0,-1,47.432896,0,0,0,62,2,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.1124015,5.5032125,3.9859641,3,57.060001,57.759998,61.27,46.029999,7,1,1,0,0,12,3,1,229,945223.13,0,0,5534.6621 -11171,13730,24942,24941,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.8182201,8.0353308,1,0,-9,6,0,1,66.709351,0,0,0,61,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3275824,8.3139334,0,0,61.27,46.029999,57.060001,57.759998,6,1,1,0,0,12,3,1,229,945223.13,0,0,5534.6621 -11172,13731,24943,24944,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,4,8.6146936,8.7255926,0,1,0,-9,2,0,-3,-69.371025,0,0,1,34,2,5,1,-9,-9,2019,1,1,7,0,60,56,15,1,0,1,0,12.148564,12.148564,0,0,0,0,0,0,0,0,0,0,0,7.4068561,0,0,0,54.200001,57.490002,54.099998,59.110001,7,1,1,0,0,10,5,1,865,239915.17,0,0,2993.0684 -11172,13731,24944,24943,-9,-9,1,1,1,34,1,0,0,0,2,-9,1,1,0,0,5,6.5215096,6.6080651,0,1,0,-9,2,0,3,7.5594583,0,0,0,31,1,4,1,-9,-9,2019,1,2,9,0,50,40,15,1,0,1,0,1.6251855,1.6251855,0,0,0,0,0,0,0,0,0,0,0,1.0507704,0,0,0,54.099998,59.110001,54.200001,57.490002,6,1,1,0,0,10,5,1,865,239915.17,0,0,2993.0684 -11173,13732,24945,24946,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.325635,8.3159876,0,1,0,-9,26,0,6,17.508816,0,0,0,49,2,3,1,2,2,2019,1,2,16,4,46,48,15,1,1,1,0,9.3885574,9.3885574,0,0,0,0,0,0,0,0,1,1,0,1.3223951,0,0,0,34.790001,57.07,19.799999,50.369999,5,1,1,0,0,9,5,1,197.5,-28839.469,0,0,2746.6526 -11173,13732,24946,24945,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.28794,8.040823,0,1,0,-9,26,0,-6,74.943726,0,0,0,55,2,4,1,2,2,2019,1,1,30,11,45,48,15,1,1,1,0,10.766486,10.766486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.799999,50.369999,34.790001,57.07,3,1,1,0,1,9,5,1,197.5,-28839.469,0,0,2746.6526 -11173,13733,24947,-9,24946,24945,3,1,0,18,2,0,0,1,2,0,7,2,0,0,4,7.10853,6.979928,0,3,0,0,0,-9,0,-921.48193,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,22,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,9,2,1,1120,-205115.44,0,0,277.24561 -11174,13734,24948,24949,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,0,3,0,7.4741659,7.6061964,1,0,-9,40,0,-4,6.9024343,0,0,0,63,1,4,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.6427741,7.431109,2.4335771,3,48.450001,49.459999,58.900002,45.740002,5,1,1,0,0,2,3,1,631,2013156.8,0,0,1889.511 -11174,13734,24949,24948,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,4,0,6.2465782,6.310955,1,0,-9,40,0,4,-66.874252,0,0,0,59,1,3,3,2,2,2019,4,2,6,0,0,50,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.2403369,12.765084,3,58.900002,45.740002,48.450001,49.459999,6,1,1,0,0,2,3,1,631,2013156.8,0,0,1889.511 -11175,13735,24950,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,3,7.8753428,8.109869,7.3631611,3,0,0,0,-9,0,-1036.2786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,28,28,15,1,0,-9,0,7.6813145,7.6813145,0,0,0,0,0,0,0,0,0,0,0,4.8409767,7.3732753,0,0,39.5,56.189999,-9,-9,3,1,1,0,0,4,4,1,2166,155096.48,0,0,1649.1226 -11176,13736,24951,-9,-9,-9,1,1,0,53,2,0,4,0,3,-9,1,1,0,0,4,8.9043064,8.8659096,0,4,0,-9,0,0,0,-918.66925,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,20,19,15,1,0,-9,0,49.679398,49.679398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,7,4,0,614.5,527160.63,0,0,2702.3154 -11176,13736,24952,-9,24951,-9,3,1,0,16,2,0,4,1,2,-9,7,2,0,0,4,5.6110382,5.7450004,0,4,0,0,0,-9,0,-933.21179,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,7,4,0,614.5,527160.63,0,0,2702.3154 -11176,13737,24953,-9,24951,-9,2,1,1,18,2,0,4,0,2,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-967.03796,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.709999,59.439999,-9,-9,5,1,1,1,0,7,4,0,724,0,0,0,0 -11176,13738,24954,-9,24951,-9,5,1,1,36,2,0,4,0,2,-9,6,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-889.56451,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.810001,51.82,-9,-9,3,1,1,0,1,7,1,0,653,141398.95,0,0,1411.4242 -11177,13739,24955,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.2930503,7.5546904,3,0,0,0,-9,0,-998.81342,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3624616,7.1200294,0,0,53.619999,46.84,-9,-9,6,1,1,0,0,10,2,1,331,345471.41,0,0,1202.3298 -11178,13740,24956,-9,-9,-9,1,1,0,77,2,0,0,0,3,-9,4,3,0,1,4,0,3.5733006,3.55845,3,0,0,0,-9,0,-875.74951,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,3.4180748,47.91824,3,55.779999,49.919998,-9,-9,6,1,1,0,0,11,1,0,440,-44416.566,0,0,1904.1082 -11179,13741,24957,-9,-9,-9,1,1,0,24,3,0,0,0,2,-9,2,1,0,0,4,8.1045027,8.2624302,0,3,0,0,0,-9,0,-1102.8109,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,0,9.8834095,9.8834095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.150002,52.900002,-9,-9,6,1,1,0,0,9,4,1,516,114972.07,0,0,632.77686 -11180,13742,24958,-9,24961,24959,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.712,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,0,644.5,24179.736,0,0,3005.6362 -11180,13742,24959,24961,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,3,7.8591518,8.2850142,0,2,0,-9,6,0,-8,25.853355,0,0,0,42,2,1,3,2,-9,2019,2,1,4,1,42,38,15,1,0,3,0,10.223592,10.223592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,30.440001,51.32,4,1,1,0,0,9,3,0,644.5,24179.736,0,0,3005.6362 -11180,13742,24960,-9,24961,24959,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.14148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,0,644.5,24179.736,0,0,3005.6362 -11180,13742,24961,24959,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,6,0,8,66.870567,0,0,1,34,2,3,1,-9,2,2019,3,2,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,78.817657,3,30.440001,51.32,49.630001,54.220001,4,1,1,0,1,9,3,0,644.5,24179.736,0,0,3005.6362 -11181,13743,24962,24963,-9,-9,2,1,1,72,1,0,0,0,1,-9,2,1,0,0,4,7.4203258,8.0933018,6.7606726,1,0,-9,9,0,-1,60.285099,0,0,0,73,1,3,3,2,2,2019,2,1,7,0,12,10,15,1,0,4,0,16.241884,16.241884,0,0,0,0,0,0,0,0,1,1,0,8.9602633,6.8303218,0,0,57.16,56.150002,61.610001,37.790001,6,1,1,0,0,4,3,1,497,905828.63,0,0,8125.6099 -11181,13743,24963,24962,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,1,14.059546,0,0,0,72,1,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,5.8756199,0,0,0,0,0,0,1,1,0,8.9897661,0,0,0,61.610001,37.790001,57.16,56.150002,6,1,1,0,0,4,3,1,497,905828.63,0,0,8125.6099 -11182,13744,24964,24965,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,6.157547,6.769486,1,0,-9,45,0,6,-121.36098,0,0,0,65,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0911093,6.8329802,0,0,56.5,48.330002,49.52,30.16,6,1,1,0,0,11,2,1,493.5,200538.33,0,0,1305.4884 -11182,13744,24965,24964,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,45,0,-6,-100.18231,0,0,0,71,2,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88290179,0,0,0,49.52,30.16,56.5,48.330002,5,1,1,0,0,11,2,1,493.5,200538.33,0,0,1305.4884 -11183,13745,24966,24967,-9,-9,1,1,1,48,1,0,0,0,3,-9,8,3,1,1,2,3.6072373,3.6862969,0,1,0,-9,7,0,4,.090048812,0,0,0,44,2,4,1,-9,-9,2019,3,2,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.18,25.540001,54.200001,57.490002,6,1,1,0,1,5,3,1,1195.5,15090.121,0,0,876.5907 -11183,13745,24967,24966,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,7.7498388,7.911387,0,1,0,-9,7,0,-4,146.12244,0,0,1,48,3,2,3,-9,-9,2019,2,1,7,0,41,42,15,1,0,3,0,5.8872747,5.8872747,0,0,0,0,0,0,0,0,0,0,0,.080557816,0,0,0,54.200001,57.490002,54.18,25.540001,6,2,3,0,0,5,3,1,1195.5,15090.121,0,0,876.5907 -11184,13746,24968,24969,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,4,8.165452,8.5000677,6.0933795,1,0,-9,1,-9,-3,142.18106,-9,1,1,26,1,4,1,-9,-9,2019,1,1,10,1,38,0,15,1,0,1,0,9.3284216,9.3284216,0,0,0,0,0,0,0,0,0,0,0,6.4147072,0,0,0,48.869999,58.549999,54.790001,55.860001,5,1,1,0,0,10,5,1,965,385950.59,0,0,4387.7168 -11184,13746,24969,24968,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,9.229701,9.0561266,0,1,0,1,1,-9,3,-35.105534,0,1,0,23,1,4,1,1,1,2019,1,2,9,0,39,50,15,1,0,1,0,28.197186,28.197186,0,0,0,0,0,0,0,0,0,0,0,2.5534451,0,0,0,54.790001,55.860001,48.869999,58.549999,6,1,1,0,0,10,5,1,965,385950.59,0,0,4387.7168 -11185,13747,24970,-9,24973,24972,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.4599,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,382,536242.81,0,0,2512.1538 -11185,13747,24971,-9,24973,24972,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-980.69672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,4,1,382,536242.81,0,0,2512.1538 -11185,13747,24972,24973,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,2,8.6138897,8.6921434,0,2,0,-9,17,0,5,-51.34481,0,0,0,42,2,4,1,2,2,2019,1,1,6,0,60,58,15,1,0,1,0,12.543714,12.543714,0,0,0,0,0,0,0,0,1,1,0,1.3024372,0,0,0,60.540001,39.98,48.869999,58.549999,2,1,1,0,0,9,4,1,382,536242.81,0,0,2512.1538 -11185,13747,24973,24972,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.1846781,6.8135343,0,2,0,-9,17,0,-5,-143.66714,0,0,1,47,2,2,1,2,3,2019,1,2,9,0,0,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0249643,0,0,0,48.869999,58.549999,60.540001,39.98,7,1,1,0,0,9,4,1,382,536242.81,0,0,2512.1538 -11186,13748,24974,24975,-9,-9,1,1,1,47,1,0,2,0,3,-9,1,1,0,0,3,9.677351,9.5729704,0,2,0,-9,24,0,4,89.58812,0,0,0,43,2,5,1,3,2,2019,1,2,23,11,60,60,15,1,1,1,0,34.366238,34.366238,0,0,0,0,0,0,0,0,1,1,0,6.3684912,0,0,0,42.110001,37.380001,43.860001,63.669998,6,2,3,0,0,4,5,1,638,806598.13,0,0,7110.8066 -11186,13748,24975,24974,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,0,5,8.2779808,8.0721331,0,2,0,-9,24,0,-4,-96.932983,0,0,1,47,3,3,1,3,2,2019,1,1,10,0,40,48,15,1,0,1,0,11.665995,11.665995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.860001,63.669998,42.110001,37.380001,4,2,3,0,0,4,5,1,638,806598.13,0,0,7110.8066 -11186,13748,24976,-9,24975,24974,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-990.47913,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,2,3,0,0,4,5,1,638,806598.13,0,0,7110.8066 -11186,13749,24977,-9,24975,24974,3,1,1,18,2,0,2,1,2,0,7,2,0,0,5,7.3458657,7.3166761,0,3,0,0,0,-9,0,-1145.5591,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,27,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.869999,-9,-9,7,2,3,0,0,4,5,1,733,108610.86,0,0,107.88103 -11187,13750,24978,24980,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,7.9241724,7.6308403,0,2,0,-9,23,0,4,94.914108,0,0,0,40,2,4,1,2,2,2019,1,1,9,1,39,42,15,1,0,1,0,7.2029438,7.2029438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.98,59.349998,6,1,1,0,0,9,3,0,1996.3334,-28100.807,0,0,2459.4839 -11187,13750,24979,-9,24980,24978,5,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-890.76654,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,0,1996.3334,-28100.807,0,0,2459.4839 -11187,13750,24980,24978,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,6.4918313,6.6868339,0,2,0,-9,23,0,-4,37.699757,0,0,1,44,2,4,1,2,2,2019,1,2,11,0,11,7,15,1,0,1,0,5.7457585,5.7457585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,52,55,5,1,1,0,0,9,3,0,1996.3334,-28100.807,0,0,2459.4839 -11187,13751,24981,-9,24980,24978,4,1,1,19,2,0,1,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-994.91388,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,1,1,9,1,0,179,-2356.8906,0,0,0 -11188,13752,24982,24983,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,8.3138008,8.5506973,0,1,0,-9,44,0,-1,46.415005,0,0,0,66,2,2,3,2,3,2019,2,2,19,7,37,37,15,1,1,4,0,11.061336,11.061336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,57.099998,49.470001,32.98,4,1,1,0,0,13,5,1,1099.5,514921.38,0,0,4828.2974 -11188,13752,24983,24982,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,7.889255,7.6544795,1,0,-9,44,0,1,67.325218,0,0,0,65,2,4,1,2,2,2019,3,1,14,2,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.6943345,7.7793188,0,0,49.470001,32.98,43.84,57.099998,4,1,1,0,0,13,5,1,1099.5,514921.38,0,0,4828.2974 -11188,13753,24984,-9,24982,24983,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,5,8.0984497,8.3251209,0,3,0,0,0,-9,0,-1040.484,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,37,30,15,1,0,-9,1,9.6028481,9.6028481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.060001,60.240002,-9,-9,6,1,1,0,0,13,4,1,222,-186114.98,0,0,1536.0923 -11189,13754,24985,-9,24986,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1052.6274,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,1,0,538,-56582.781,0,0,1321.9277 -11189,13754,24986,-9,-9,-9,1,1,0,35,2,0,3,0,1,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-974.33789,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,5,1,0,538,-56582.781,0,0,1321.9277 -11189,13754,24987,-9,24986,-9,2,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1003.2141,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,1,0,538,-56582.781,0,0,1321.9277 -11189,13754,24988,-9,24986,-9,3,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-962.72644,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,1,0,538,-56582.781,0,0,1321.9277 -11190,13755,24989,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,2,1,0,1,3,6.9613771,6.8419733,0,4,0,0,0,-9,0,-1059.8496,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,23,0,15,1,0,-9,0,6.0232162,6.0232162,0,0,0,0,0,0,0,2,1,1,0,0,0,8.4351912,3,47,49,-9,-9,5,3,4,0,0,8,2,0,1213,81644.508,0,0,2291.2119 -11190,13755,24990,-9,24989,-9,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-942.172,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,2,0,1213,81644.508,0,0,2291.2119 -11190,13755,24991,-9,24989,-9,4,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.87231,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.650002,47.669998,-9,-9,7,3,4,0,0,8,2,0,1213,81644.508,0,0,2291.2119 -11190,13756,24992,-9,24989,-9,2,1,1,20,2,0,2,0,2,-9,2,1,0,0,4,7.8154392,7.8643732,0,3,0,0,0,-9,0,-974.15942,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,27,0,15,1,0,-9,1,13.511135,13.511135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,8,4,0,340,243987.86,0,0,828.63147 -11191,13757,24993,24994,-9,-9,1,1,1,38,1,1,1,0,1,-9,2,1,0,0,4,8.9810247,9.0901518,0,2,0,-9,7,0,9,-118.61947,0,0,0,29,1,2,3,2,2,2019,2,2,11,0,60,50,15,1,0,3,0,16.689037,16.689037,0,0,0,0,0,0,0,27.5,1,1,0,6.9846506,0,31.401375,1,57.16,56.150002,39.560001,34.810001,6,1,1,0,0,11,5,1,559.66669,180182.95,0,0,3861.3936 -11191,13757,24994,24993,-9,-9,2,1,0,29,1,1,1,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,7,0,0,46.516331,0,1,1,38,1,4,1,-9,-9,2019,3,1,17,5,0,42,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.560001,34.810001,57.16,56.150002,6,1,1,0,0,11,5,1,559.66669,180182.95,0,0,3861.3936 -11191,13757,24995,-9,24994,24993,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-936.30237,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,559.66669,180182.95,0,0,3861.3936 -11192,13758,24996,24997,-9,-9,2,1,1,44,1,2,2,0,3,-9,2,1,0,0,4,8.4004593,8.0908241,0,2,0,-9,5,0,1,-123.18613,0,0,0,43,2,2,1,-9,-9,2019,1,1,11,0,46,46,15,1,0,1,0,8.0879602,8.0879602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,31.33,34.389999,6,1,1,0,0,2,4,1,560.25,170330.02,0,0,2255.4272 -11192,13758,24997,24996,-9,-9,1,1,0,43,1,2,2,0,2,-9,5,1,0,0,2,7.6984768,7.8853803,0,2,0,-9,5,0,-1,44.005749,0,0,1,44,3,4,1,2,3,2019,1,2,20,6,32,40,15,1,1,1,0,9.1094818,9.1094818,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.33,34.389999,55.189999,54.259998,6,1,1,0,0,2,4,1,560.25,170330.02,0,0,2255.4272 -11192,13758,24998,-9,24997,24996,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1105.9622,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,4,1,560.25,170330.02,0,0,2255.4272 -11192,13758,24999,-9,24997,24996,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.58295,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,4,1,560.25,170330.02,0,0,2255.4272 -11193,13759,25000,-9,25002,-9,2,1,1,16,2,0,2,1,3,-9,7,2,0,1,3,0,0,0,4,0,0,0,-9,0,-980.56818,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.25,56.52,-9,-9,4,1,1,0,0,12,1,0,485.66666,115789.27,0,0,1831.2061 -11193,13759,25001,-9,25002,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-965.63483,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,1,0,485.66666,115789.27,0,0,1831.2061 -11193,13759,25002,-9,-9,-9,1,1,0,55,3,0,2,0,3,-9,6,3,0,0,4,0,3.2776535,3.0885952,4,0,0,0,-9,0,-916.87201,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,3.1602507,72.659584,3,47.779999,40.209999,-9,-9,6,1,1,0,0,12,1,0,485.66666,115789.27,0,0,1831.2061 -11194,13760,25003,-9,-9,-9,1,1,1,101,3,0,0,0,1,-9,4,3,0,0,5,0,8.5375233,8.5817862,3,0,0,0,-9,0,-906.03784,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2414217,8.3114443,0,0,56.259998,44.59,-9,-9,7,1,1,0,0,5,4,1,376,844735.63,0,0,4465.9668 -11195,13761,25004,25007,-9,-9,1,1,0,45,1,0,2,0,1,-9,1,1,0,0,5,9.22861,9.067009,0,2,0,-9,20,0,-1,-58.467041,0,0,0,46,1,3,1,1,1,2019,1,2,11,3,80,30,15,1,0,1,0,12.431708,12.431708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.529999,61.330002,55.610001,50.299999,7,1,1,0,0,5,5,1,370.5,539252.06,0,0,6575.7983 -11195,13761,25005,-9,25004,25007,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.76257,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,370.5,539252.06,0,0,6575.7983 -11195,13761,25006,-9,25004,25007,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.70758,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,370.5,539252.06,0,0,6575.7983 -11195,13761,25007,25004,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,8.8919725,9.0166588,0,2,0,-9,10,0,1,56.767876,0,0,0,45,1,5,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,16.310387,16.310387,0,0,0,0,0,0,0,0,0,0,0,3.4689851,0,0,0,55.610001,50.299999,46.529999,61.330002,6,1,1,0,0,5,5,1,370.5,539252.06,0,0,6575.7983 -11196,13762,25008,25009,-9,-9,2,1,1,62,1,0,0,0,3,-9,4,3,0,0,3,0,7.3547392,7.581389,1,0,-9,8,0,3,31.16893,0,0,0,59,2,4,1,-9,-9,2019,3,1,16,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.342319,7.4807463,0,0,37.689999,58.700001,35.049999,60.200001,3,1,1,0,0,12,4,1,668,1300020,0,0,2694.0173 -11196,13762,25009,25008,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.4441595,7.8903337,3.7185192,1,0,-9,8,0,-3,-209.1749,0,0,0,62,3,3,3,3,3,2019,2,2,16,5,37,37,15,1,1,4,0,15.095079,15.095079,0,0,0,0,0,0,0,0,0,0,0,4.1567764,3.7329748,0,0,35.049999,60.200001,37.689999,58.700001,3,1,1,0,0,12,4,1,668,1300020,0,0,2694.0173 -11197,13763,25010,25011,-9,-9,3,1,1,36,1,0,0,0,2,-9,2,1,0,0,4,9.1050453,8.9893312,0,1,0,-9,3,0,-16,54.689442,0,0,0,52,2,4,1,-9,-9,2019,1,1,10,1,38,38,15,1,0,1,0,23.788603,23.788603,0,0,0,0,0,0,0,0,1,1,0,7.0928898,0,0,0,51,56,54.200001,57.490002,5,4,1,0,0,9,5,1,386.5,555206.5,0,0,5849.3188 -11197,13763,25011,25010,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.3840656,8.5421057,0,1,0,-9,3,0,16,-71.760612,0,0,0,36,2,4,1,2,2,2019,1,3,8,0,35,37,15,1,0,1,0,17.039133,17.039133,0,0,0,0,0,0,0,0,1,1,0,2.9666259,0,0,0,54.200001,57.490002,51,56,6,1,1,0,0,9,5,1,386.5,555206.5,0,0,5849.3188 -11197,13764,25012,-9,25011,25010,2,1,0,20,2,0,0,1,2,0,7,2,0,0,4,5.0118098,6.8895969,6.6263323,3,0,0,0,-9,0,-950.91315,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1295309,0,0,0,50.619999,53.790001,-9,-9,6,1,1,0,0,9,2,1,618,-6724.1792,0,0,1363.0447 -11198,13765,25013,25014,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,1,4,0,8.2227449,8.1562395,1,0,-9,6,0,3,-89.612991,0,0,0,66,2,1,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.7817979,115.53263,1,60.119999,54.799999,47.84,9.75,7,1,1,0,0,2,3,0,1170,1074260,0,0,2983.7568 -11198,13765,25014,25013,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,6,0,-3,-21.874056,0,0,0,69,2,4,3,3,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4459767,0,0,0,47.84,9.75,60.119999,54.799999,3,1,1,0,0,2,3,0,1170,1074260,0,0,2983.7568 -11199,13766,25015,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,5,0,7.7637911,7.4063478,3,0,0,0,-9,0,-983.75439,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2482829,7.6213713,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,1,3,1,894,290158.31,0,0,2853.2639 -11200,13767,25016,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.8862095,8.6060591,0,3,0,0,0,-9,0,-1047.5427,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,50,50,15,1,0,-9,0,11.816814,11.816814,0,0,0,0,0,0,0,0,0,0,0,4.0949411,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,4,5,1,240,137755.73,0,0,2174.9941 -11201,13768,25017,25018,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,4.1945367,4.1730838,1,0,-9,51,0,1,106.87073,0,0,0,71,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.5244112,4.0819921,118.28014,1,57.330002,53.459999,49.91,30.469999,6,1,1,0,0,1,2,1,2060.5,721680.5,0,0,2878.7559 -11201,13768,25018,25017,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,1,2,0,4.5069985,4.338212,1,0,-9,7,0,-1,.8126362,0,0,0,72,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,8.6736326,0,0,0,0,0,1,1,0,0,4.7226028,0,0,49.91,30.469999,57.330002,53.459999,7,1,1,0,0,1,2,1,2060.5,721680.5,0,0,2878.7559 -11202,13769,25019,-9,25020,25021,2,1,1,27,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-918.89099,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,28,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.790001,62.959999,-9,-9,2,2,3,1,0,8,1,1,1542,-36216.293,0,0,0 -11202,13770,25020,25021,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,3,6.8405142,6.6981831,0,1,0,-9,36,0,-8,-14.623726,0,0,0,62,2,3,1,3,3,2019,1,3,12,0,10,10,15,1,0,1,0,8.3372746,8.3372746,0,0,0,0,0,0,0,0,0,0,0,2.4052665,0,0,0,37.919998,53.029999,40.639999,52.959999,6,1,1,0,0,8,3,1,704.5,366759.59,0,0,1844.6904 -11202,13770,25021,25020,-9,-9,3,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,7.7006464,7.8461332,0,1,0,-9,7,0,8,75.822021,0,0,0,54,3,3,1,-9,-9,2019,1,1,12,0,39,38,15,1,0,1,0,8.9788933,8.9788933,0,0,0,0,0,0,0,0,0,0,0,3.47998,0,0,0,40.639999,52.959999,37.919998,53.029999,5,1,1,0,0,8,3,1,704.5,366759.59,0,0,1844.6904 -11203,13771,25022,-9,-9,-9,2,1,1,46,3,0,0,0,2,-9,2,1,0,0,3,8.8791838,9.0524998,0,3,0,-9,0,1,0,-1084.4331,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,48,55,15,1,1,-9,0,18.955008,18.955008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.48,42.779999,-9,-9,3,1,1,0,0,7,5,1,608,55047.664,0,0,2315.7109 -11204,13772,25023,25024,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,9.0243015,8.7659159,1,0,-9,34,0,8,-32.731827,0,0,0,55,2,2,3,2,2,2019,4,1,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.285078,9.1161327,0,0,57.91,46.310001,21.120001,57.029999,3,1,1,0,1,6,4,1,203.5,1868518.5,0,0,2877.0283 -11204,13772,25024,25023,-9,-9,1,1,0,55,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,35,0,-8,110.2134,0,0,0,63,2,3,3,2,2,2019,4,2,21,8,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.120001,57.029999,57.91,46.310001,3,1,1,0,1,6,4,1,203.5,1868518.5,0,0,2877.0283 -11204,13773,25025,-9,25024,25023,3,1,0,22,2,0,0,0,1,-9,7,2,0,0,4,8.0153656,7.8629217,0,3,0,0,0,-9,0,-962.77289,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,48,38,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,56.439999,-9,-9,5,1,1,0,1,6,3,1,713,-19550.453,0,0,331.17984 -11205,13774,25026,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,2,0,8.7195292,8.648653,3,0,0,0,-9,0,-854.23041,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.1324596,0,3,60.139999,44.41,-9,-9,7,1,1,0,0,5,5,0,358,1435655.9,0,0,4738.7456 -11206,13775,25027,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1036.3099,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.860001,56.91,-9,-9,6,1,1,0,0,13,1,1,506,-26621.029,0,0,1262.7144 -11207,13776,25028,25029,-9,-9,1,1,1,49,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,16,0,7,0,0,0,0,42,2,1,3,2,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,55,18.76,23.91,6,1,1,1,0,13,1,0,890,0,0,0,3095.2075 -11207,13776,25029,25028,-9,-9,2,1,0,42,1,0,0,0,2,-9,3,3,0,1,1,0,0,0,1,0,-9,16,0,-7,0,0,0,1,49,2,4,3,2,2,2019,4,1,32,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.38816,1,18.76,23.91,53,55,1,1,1,1,0,13,1,0,890,0,0,0,3095.2075 -11208,13777,25030,25031,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,0,5,9.0552616,9.9530659,8.9911661,1,0,-9,2,0,0,-59.885601,0,0,0,62,1,4,1,-9,-9,2019,1,1,7,0,30,30,15,1,0,1,0,38.090923,38.090923,0,0,0,0,0,0,0,0,0,0,0,9.9431629,7.693758,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,8,5,1,2613.5,3518276,0,0,17831.895 -11208,13777,25031,25030,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,4,9.7904062,9.4260073,5.9632773,1,0,-9,30,0,0,-233.05255,0,0,0,62,1,5,1,1,1,2019,1,2,7,0,40,40,15,1,0,1,0,43.762085,43.762085,0,0,0,0,0,0,0,0,0,0,0,7.8170443,6.2709627,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,8,5,1,2613.5,3518276,0,0,17831.895 -11209,13778,25032,25034,-9,-9,1,1,1,30,1,0,1,0,2,-9,3,3,0,0,3,9.8299389,10.040071,0,2,0,-9,6,0,-5,40.689339,0,0,0,35,2,5,1,3,3,2019,3,2,18,6,43,43,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.0602407,0,9.53374,3,31.16,51.919998,50.009998,55.66,5,3,4,1,0,8,5,0,508.33334,598314.13,0,0,13792.602 -11209,13778,25033,-9,25034,25032,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.3833,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,5,0,508.33334,598314.13,0,0,13792.602 -11209,13778,25034,25032,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,0,5,8.3379269,8.6717176,0,2,0,-9,6,0,5,44.317379,0,0,1,30,2,3,3,-9,-9,2019,2,1,11,0,51,39,15,1,0,3,0,11.072753,11.072753,0,0,0,0,0,0,0,0,1,1,0,4.0642557,0,0,0,50.009998,55.66,31.16,51.919998,6,1,1,0,0,8,5,0,508.33334,598314.13,0,0,13792.602 -11210,13779,25035,25036,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,0,3,4.9322486,8.405756,8.2186422,1,0,-9,8,0,3,-22.288307,0,0,0,59,1,5,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.499507,0,0,51,48,57.060001,57.759998,5,1,1,0,0,2,4,1,1320,2849531.8,0,0,2316.7515 -11210,13779,25036,25035,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,5,0,7.4074597,7.0946875,1,0,-9,27,0,-3,93.595703,0,0,0,62,1,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8766942,7.1221418,0,0,57.060001,57.759998,51,48,7,1,1,0,0,2,4,1,1320,2849531.8,0,0,2316.7515 -11211,13780,25037,25039,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.4725533,8.224741,0,2,0,-9,19,0,5,-38.056259,0,0,0,44,2,4,1,2,2,2019,1,1,7,0,56,55,15,1,0,1,0,8.5379076,8.5379076,0,0,0,0,0,0,0,0,1,1,0,2.6404285,0,0,0,62.82,46.709999,49.459999,56.91,5,1,1,0,0,9,4,1,726.75,337045.34,0,0,3227.407 -11211,13780,25038,-9,25039,25037,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.52283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,726.75,337045.34,0,0,3227.407 -11211,13780,25039,25037,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.8040466,7.3745508,0,2,0,-9,19,0,-5,-119.193,0,0,1,49,2,4,1,2,3,2019,1,2,10,2,25,15,15,1,0,1,0,8.0890732,8.0890732,0,0,0,0,0,0,0,0,1,1,0,3.0868118,0,0,0,49.459999,56.91,62.82,46.709999,6,1,1,0,0,9,4,1,726.75,337045.34,0,0,3227.407 -11211,13780,25040,-9,25039,25037,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.5082,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,2,1,1,0,0,9,4,1,726.75,337045.34,0,0,3227.407 -11212,13781,25041,25042,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,9.8286934,9.6603479,7.227026,1,0,-9,35,0,2,-40.912651,0,0,0,56,2,4,3,-9,-9,2019,2,2,9,1,60,60,15,1,0,3,0,29.903818,29.903818,0,0,0,0,0,0,0,7,0,0,0,7.7101603,0,12.519394,3,52,54.509998,52,53,5,1,1,0,0,9,5,1,369,318065.56,0,0,4345.6748 -11212,13781,25042,25041,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,7,0,-2,15.013587,0,0,0,58,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8610379,0,0,0,52,53,52,54.509998,6,1,1,0,0,9,5,1,369,318065.56,0,0,4345.6748 -11213,13782,25043,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,0,4,0,8.7617722,8.8074884,3,0,-9,0,1,0,-950.32159,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9775634,8.9395227,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,5,1,482,2438847.3,0,0,5466.9399 -11214,13783,25044,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,8.1881199,8.4024458,0,3,0,0,0,-9,0,-1125.6554,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,45,46,15,1,0,-9,0,10.25173,10.25173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.259998,-9,-9,5,1,1,0,0,8,4,1,301,287175.72,0,0,1007.5959 -11215,13784,25045,25046,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,7.1575837,7.7899098,6.4736395,1,0,-9,10,0,2,49.107136,-9,0,0,71,2,3,3,-9,-9,2019,4,1,15,3,12,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2164919,7.0493402,0,0,39.599998,43.990002,59.990002,44.009998,5,1,1,0,0,4,3,1,894,854173.69,0,0,1081.8359 -11215,13784,25046,25045,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-2,34.930885,0,0,0,73,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.990002,44.009998,39.599998,43.990002,6,1,1,0,0,4,3,1,894,854173.69,0,0,1081.8359 -11216,13785,25047,25048,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.6950641,7.5136905,1,0,-9,58,0,-6,27.62146,0,0,0,83,3,1,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.0708566,7.4962759,44.383778,1,46.34,51.52,24.93,19.950001,6,1,1,0,0,6,3,1,274.5,563828.88,0,0,2794.4067 -11216,13785,25048,25047,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,1,1,0,7.096662,6.5106153,1,0,-9,58,0,6,76.764595,0,0,0,77,2,3,3,3,3,2019,4,1,23,7,0,0,15,4,1,4,0,0,0,1,0,23.724113,0,0,0,0,0,1,1,0,3.3229721,7.1624241,0,0,24.93,19.950001,46.34,51.52,3,1,1,0,0,6,3,1,274.5,563828.88,0,0,2794.4067 -11217,13786,25049,-9,25052,25050,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1081.5677,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,3,0,1844.75,53011.867,0,0,1364.0416 -11217,13786,25050,25052,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,5,7.6142211,7.6125355,0,2,0,-9,25,0,1,-53.470619,0,0,0,47,2,4,1,3,3,2019,1,2,11,4,38,16,15,1,1,1,0,6.7137685,6.7137685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.620003,40.110001,57.16,56.150002,4,3,4,0,0,7,3,0,1844.75,53011.867,0,0,1364.0416 -11217,13786,25051,-9,25052,25050,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-973.76563,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,7,3,4,0,0,7,3,0,1844.75,53011.867,0,0,1364.0416 -11217,13786,25052,25050,-9,-9,2,1,0,47,1,0,2,0,2,-9,1,1,0,0,4,7.5132756,7.370997,0,2,0,-9,25,0,-1,-3.7118227,0,0,0,48,2,5,1,2,1,2019,1,1,10,0,28,29,15,1,0,1,0,7.7699142,7.7699142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,65.620003,40.110001,5,3,4,0,0,7,3,0,1844.75,53011.867,0,0,1364.0416 -11218,13787,25053,25054,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,2,0,-2,-87.712006,0,0,0,63,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0692191,0,0,0,58.150002,52.91,59.459999,46.990002,6,2,3,0,0,7,3,1,466,1872388.9,0,0,3113.7588 -11218,13787,25054,25053,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,7.8478608,8.4284954,1,0,-9,32,0,2,81.442604,0,0,0,61,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7103024,8.3627577,0,0,59.459999,46.990002,58.150002,52.91,6,2,3,0,0,7,3,1,466,1872388.9,0,0,3113.7588 -11218,13788,25055,-9,25053,25054,3,1,1,33,3,0,0,0,1,-9,2,1,0,0,4,8.8931456,9.2194557,0,3,0,0,0,-9,0,-1120.106,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,72,45,15,1,0,-9,1,12.390625,12.390625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.830002,49.950001,-9,-9,6,2,3,0,0,7,5,1,724,443966.84,0,0,1079.6511 -11219,13789,25056,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,0,3,9.0356188,8.4898434,0,3,0,0,0,-9,0,-957.87726,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,36,41,15,1,0,-9,0,14.352182,14.352182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.950001,52.41,-9,-9,5,1,1,0,0,8,5,0,459,-154107.91,0,0,2260.061 -11220,13790,25057,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,0,3,8.0245857,8.0591946,0,3,0,0,0,-9,0,-1156.6616,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,40,40,15,1,0,-9,0,5.9064808,5.9064808,0,0,0,0,0,0,0,0,0,0,0,3.4968729,0,0,0,46.080002,57.200001,-9,-9,2,1,1,0,0,12,3,1,385,319447.31,0,0,458.56985 -11221,13791,25058,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,7.4423523,7.5326948,3,0,0,0,-9,0,-965.41309,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.057837,7.4471612,0,0,50.880001,26.879999,-9,-9,6,1,1,0,0,10,3,0,238,460327.75,0,0,3070.4172 -11222,13792,25059,25060,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,0,5,8.3229418,8.3692675,0,2,0,-9,12,0,4,41.264977,0,0,0,29,2,4,1,-9,2,2019,1,2,6,0,37,37,15,1,0,1,0,13.115355,13.115355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,7,4,0,384,206415.36,0,0,2784.4985 -11222,13792,25060,25059,-9,-9,2,1,0,29,1,0,1,0,2,-9,2,1,0,0,4,6.835885,7.1468625,0,2,0,-9,12,0,-4,-83.900955,0,1,1,33,2,5,1,2,3,2019,1,1,7,0,24,18,15,1,0,1,0,6.505208,6.505208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,7,4,0,384,206415.36,0,0,2784.4985 -11222,13792,25061,-9,25060,25059,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.8307,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,0,384,206415.36,0,0,2784.4985 -11223,13793,25062,25063,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,1,2,5.9575176,6.2938538,0,1,0,-9,31,0,0,-52.793446,0,0,0,59,1,3,1,1,1,2019,1,2,14,1,0,21,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4056174,0,0,0,35.689999,35.439999,47.310001,48.299999,2,1,1,0,1,2,2,0,1065,176318.38,0,0,1324.1417 -11223,13793,25063,25062,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,1,3,7.4422903,7.1695452,0,1,0,-9,32,0,0,-57.310791,0,0,0,59,2,2,1,2,2,2019,1,1,14,1,50,70,15,1,0,1,0,3.4898565,3.4898565,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.310001,48.299999,35.689999,35.439999,4,1,1,0,1,2,2,0,1065,176318.38,0,0,1324.1417 -11223,13794,25064,-9,25062,25063,3,1,0,19,2,0,0,0,2,1,2,1,0,0,3,6.6063442,6.5036564,0,3,0,0,0,-9,0,-1008.7463,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,18,3,24,0,15,1,0,-9,1,2.6709762,2.6709762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.599998,44.91,-9,-9,4,1,1,0,1,2,2,0,1553,111932.79,0,0,-479.05496 -11224,13795,25065,25066,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,43,0,11,0,0,0,0,61,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,37.790001,53.990002,22.52,5,1,1,0,0,6,1,0,804.5,-15.0625,0,0,2349.8838 -11224,13795,25066,25065,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,10,0,-11,0,0,0,0,72,3,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.990002,22.52,56.57,37.790001,7,1,1,0,0,6,1,0,804.5,-15.0625,0,0,2349.8838 -11225,13796,25067,-9,25070,25071,2,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1116.6677,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,8,4,0,660,310077.56,0,0,3873.2058 -11225,13796,25068,-9,25070,25071,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-974.48053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,3,4,0,0,8,4,0,660,310077.56,0,0,3873.2058 -11225,13796,25069,-9,25070,25071,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.92578,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,4,0,660,310077.56,0,0,3873.2058 -11225,13796,25070,25071,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,0,5,8.4142914,8.6493158,0,2,0,-9,16,0,5,-31.540693,0,0,1,35,2,4,1,2,2,2019,1,4,6,0,36,36,15,1,0,1,0,14.755176,14.755176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,50,57,6,3,4,0,0,8,4,0,660,310077.56,0,0,3873.2058 -11225,13796,25071,25070,-9,-9,4,1,1,35,1,0,3,0,2,-9,2,1,0,0,4,8.4052715,8.3223333,0,2,0,-9,9,0,-5,-182.26923,0,0,0,40,1,5,1,-9,-9,2019,1,1,10,1,40,35,15,1,0,1,0,10.941928,10.941928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.689999,57.470001,5,3,4,0,0,8,4,0,660,310077.56,0,0,3873.2058 -11226,13797,25072,25073,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,2,0,6.3988805,5.9583082,1,0,-9,41,0,-3,-163.70226,0,0,0,66,1,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.771636,6.2012019,0,0,37.220001,36,53.900002,51.439999,3,1,1,0,0,9,3,1,663,1689499.5,0,0,3653.4282 -11226,13797,25073,25072,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,5,0,8.2244749,8.2440109,1,0,-9,40,0,3,-83.80822,0,0,0,63,1,2,3,2,2,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.8126521,8.4896641,3.8974998,3,53.900002,51.439999,37.220001,36,6,1,1,0,0,9,3,1,663,1689499.5,0,0,3653.4282 -11226,13798,25074,-9,25072,25073,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,8.4963446,8.2332077,0,3,0,0,0,-9,0,-1046.384,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,29,0,15,1,0,-9,1,14.580585,14.580585,0,0,0,0,0,0,0,0,1,1,0,.94294715,0,0,0,45.849998,43.57,-9,-9,6,1,1,0,0,9,4,1,1965,-45465.172,0,0,2256.8135 -11227,13799,25075,25076,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,0,-93.360352,0,0,0,75,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3866086,0,0,0,60.700001,47.650002,57.330002,53.459999,6,1,1,0,0,6,3,1,235.5,756433.19,0,0,3984.502 -11227,13799,25076,25075,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,8.5400753,8.2147045,1,0,-9,50,0,0,101.71882,0,0,0,75,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1170559,7.1395741,0,0,57.330002,53.459999,60.700001,47.650002,6,1,1,0,0,6,3,1,235.5,756433.19,0,0,3984.502 -11228,13800,25077,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,1,1,0,0,2,6.7797017,7.1264491,0,1,0,-9,15,0,-7,32.781658,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,20,7,50,60,15,1,1,-9,0,2.2712462,2.2712462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.27,40.310001,38.009998,50.189999,2,1,1,0,1,9,2,1,1847,-35784.258,0,0,-302.48349 -11228,13801,25078,-9,-9,-9,2,1,0,55,2,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,15,0,7,29.388943,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,15,4,50,60,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,20.452517,3,38.009998,50.189999,24.27,40.310001,6,1,1,0,1,9,2,1,393,73139.109,0,0,0 -11229,13802,25079,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,0,3,7.9444456,7.6327882,0,3,0,-9,0,-9,0,-1070.09,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,0,15,1,0,-9,0,10.956478,10.956478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.380001,46.77,-9,-9,2,1,1,0,0,7,4,0,47,-204278.8,0,0,502.23883 -11230,13803,25080,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-895.81665,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.724533,3,57.490002,34.360001,-9,-9,6,2,3,1,0,2,1,1,6592,335420.91,0,0,2072.4058 -11230,13804,25081,-9,25080,-9,3,1,0,24,2,0,0,0,1,-9,7,2,0,0,5,6.0812702,6.1747499,0,3,0,0,0,-9,0,-918.28204,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,28,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,7.4782987,3,35.529999,63.810001,-9,-9,3,2,3,0,0,2,2,1,2579,-248754.92,0,0,980.94452 -11230,13805,25082,-9,25080,-9,4,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.4917417,7.4042039,0,3,0,0,0,-9,0,-1037.7756,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,38,38,15,1,0,-9,1,5.4929633,5.4929633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,2,3,1,112,40965.52,0,0,2082.1421 -11231,13806,25083,-9,-9,-9,1,1,0,67,3,1,2,0,2,-9,4,3,0,0,3,0,7.1589065,7.4009519,4,0,0,0,-9,0,-865.66461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0096316,6.8912396,0,0,44.610001,42.040001,-9,-9,5,1,1,0,0,9,2,1,264,1596393.3,0,0,1114.5747 -11231,13807,25084,-9,25085,25086,5,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.0167,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,380.75,342270.19,0,0,2173.4905 -11231,13807,25085,25086,25083,-9,3,1,0,37,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,3,-121.83289,0,0,1,34,2,4,1,2,-9,2019,3,2,4,1,0,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.077363,0,0,0,55.360001,51.57,50,57,6,1,1,0,0,9,4,1,380.75,342270.19,0,0,2173.4905 -11231,13807,25086,25085,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,0,4,8.9395275,8.9305229,0,2,0,-9,7,0,-3,-1.7420758,0,0,0,37,1,3,3,-9,-9,2019,2,3,10,1,35,40,15,1,0,3,0,21.494989,21.494989,0,0,0,0,0,0,0,0,1,1,0,5.0668988,0,0,0,50,57,55.360001,51.57,5,1,1,0,0,9,4,1,380.75,342270.19,0,0,2173.4905 -11231,13807,25087,-9,25085,25086,4,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.55963,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,380.75,342270.19,0,0,2173.4905 -11232,13808,25088,25089,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,3,8.5683336,8.9849758,0,2,0,-9,19,0,-6,-101.44563,0,0,0,47,1,3,1,2,3,2019,1,1,13,1,50,0,15,1,0,1,0,13.793583,13.793583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.299999,46.150002,44.09,51.57,5,1,1,0,0,4,5,1,395,451273.13,0,0,4852.062 -11232,13808,25089,25088,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.5068626,8.3070784,0,2,0,-9,19,0,6,-57.697102,0,0,0,41,1,3,1,2,2,2019,1,2,17,5,50,38,15,1,1,1,0,9.6389542,9.6389542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.09,51.57,52.299999,46.150002,5,1,1,0,0,4,5,1,395,451273.13,0,0,4852.062 -11233,13809,25090,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,8.0293074,7.9425988,3,0,0,0,-9,0,-1046.9257,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.075491,0,0,53,44,-9,-9,6,1,1,0,0,4,3,1,991,203176.03,0,0,1851.6088 -11234,13810,25091,25092,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,0,3,8.456872,8.2247934,0,2,0,-9,23,0,-3,-41.959015,0,0,1,46,2,3,1,2,-9,2019,1,2,12,2,55,10,15,1,0,1,0,10.540855,10.540855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,55.59,55.360001,51.57,5,1,1,0,0,2,4,1,5305.5,1273266.9,0,0,2894.3499 -11234,13810,25092,25091,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,8.2794552,8.5277214,0,2,0,-9,23,0,3,-97.409325,0,0,0,43,1,3,1,3,3,2019,1,1,13,2,48,65,15,1,0,1,0,9.9844322,9.9844322,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.274459,3,55.360001,51.57,49.580002,55.59,4,1,1,0,0,2,4,1,5305.5,1273266.9,0,0,2894.3499 -11234,13811,25093,-9,25091,25092,3,1,1,18,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-978.99768,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,2,4,1,179,-70032.555,0,0,0 -11235,13812,25094,-9,-9,-9,1,1,1,73,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1145.3882,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,13,1,1,1000,100374.91,0,0,-445.83768 -11236,13813,25095,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,3,3,0,0,4,0,8.9352751,9.1413679,3,0,0,0,-9,0,-984.19702,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,11,0,38,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7122593,0,0,0,7.9899998,62.459999,-9,-9,3,4,5,1,0,8,5,1,1157,392112.5,0,0,3811.6155 -11237,13814,25096,-9,25097,25098,1,1,1,42,2,0,0,0,1,-9,2,1,0,0,5,8.1595592,8.4575844,0,3,0,0,0,-9,0,-1104.4845,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,39,15,1,0,-9,1,11.13346,11.13346,0,0,0,0,0,0,0,2,1,1,0,3.1501844,0,2.7981374,3,57.060001,57.759998,-9,-9,6,2,3,0,0,5,4,1,2807,548683.5,0,0,1399.1174 -11237,13815,25097,25098,-9,-9,3,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,41,0,2,91.222473,0,0,0,71,3,2,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,1,0,0,7.3554974,0,4.2786622,0,0,1,1,0,0,0,0,0,53.630001,20.040001,43.919998,24.34,6,2,3,0,0,5,1,1,304.5,274388.94,0,0,487.61182 -11237,13815,25098,25097,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,1,2,0,3.7431295,3.6974201,1,0,-9,41,0,-2,-46.45116,0,0,0,73,3,2,3,3,3,2019,4,3,11,3,0,0,15,4,0,4,0,0,0,1,0,0,0,.72398031,0,0,0,1,1,0,4.0526333,3.5665424,0,0,43.919998,24.34,53.630001,20.040001,5,2,3,0,0,5,1,1,304.5,274388.94,0,0,487.61182 -11238,13816,25099,25100,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,8.6882639,8.3900919,0,1,0,-9,8,0,0,-114.24303,0,0,0,57,1,3,1,2,2,2019,1,2,11,0,52,47,15,1,0,1,0,15.402877,15.402877,0,0,0,0,0,0,0,0,0,0,0,4.2240653,0,0,0,47.009998,58,55.529999,51.549999,6,1,1,0,0,10,5,1,430,1647000.6,0,0,4299.7256 -11238,13816,25100,25099,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,3,8.1876755,8.374485,0,1,0,-9,8,0,0,-48.519058,0,0,0,57,2,4,1,2,2,2019,1,1,7,0,40,33,15,1,0,1,0,12.587555,12.587555,0,0,0,0,0,0,0,0,0,0,0,4.9069786,0,0,0,55.529999,51.549999,47.009998,58,6,1,1,0,0,10,5,1,430,1647000.6,0,0,4299.7256 -11238,13817,25101,-9,25099,25100,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,7.5783553,7.7776055,0,3,0,0,0,-9,0,-935.41266,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,38,0,15,1,0,-9,1,10.748166,10.748166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,10,4,1,723,-868.40564,0,0,1128.4562 -11238,13818,25102,-9,25099,25100,4,1,1,21,2,0,0,1,2,0,7,2,0,0,4,6.5546422,6.7594013,5.9081821,3,0,0,0,-9,0,-1030.5426,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9019957,0,0,0,54.200001,57.490002,-9,-9,1,1,1,0,0,10,2,1,121,115180.05,0,0,266.26141 -11239,13819,25103,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1036.96,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.57,28.620001,-9,-9,6,1,1,0,0,10,1,1,5278,246810.22,0,0,81.198593 -11240,13820,25104,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,4,3,0,1,2,0,8.0479717,8.17311,3,0,0,0,-9,0,-958.75684,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,8.6008682,8.2444983,41.60302,0,46.029999,18.67,-9,-9,4,3,4,0,0,8,4,1,487,702873.56,0,0,3073.8027 -11240,13821,25105,-9,25104,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,1,4,0,0,0,3,0,0,0,-9,0,-931.94299,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,4,3,4,0,0,8,1,1,96,0,0,0,1104.515 -11241,13822,25106,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,2,9.1036062,9.0349932,0,3,0,0,0,-9,0,-1050.7223,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,37,15,1,0,-9,0,26.637133,26.637133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,44.73,-9,-9,3,1,1,0,0,6,5,0,656,181044.7,0,0,2686.3008 -11242,13823,25107,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,0,3,8.4126463,8.2648392,0,3,0,0,0,-9,0,-1010.2784,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,41,38,15,1,1,-9,0,11.55473,11.55473,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.172586,3,17.450001,66.57,-9,-9,2,1,1,0,1,11,4,0,829,196073.17,0,0,2412.8589 -11243,13824,25108,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,4.6375294,4.6945672,3,0,0,0,-9,0,-1077.8567,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.817831,0,0,46.740002,39.18,-9,-9,6,1,1,0,0,1,2,0,348,398939,0,0,1928.902 -11244,13825,25109,25110,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,3,7.0381637,7.2785139,0,2,0,-9,4,-9,-6,64.93676,-9,0,0,51,2,3,1,2,1,2019,1,1,21,9,20,0,15,1,1,1,0,7.1928144,7.1928144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.879999,53,44.169998,49.990002,3,1,1,0,1,7,4,1,410,1886389.3,0,0,2995.0195 -11244,13825,25110,25109,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,8.6403732,8.4343414,0,2,0,-9,4,-9,6,-187.77283,-9,0,0,45,1,3,1,2,1,2019,1,2,13,1,35,0,15,1,0,1,0,14.498353,14.498353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.169998,49.990002,28.879999,53,4,1,1,0,1,7,4,1,410,1886389.3,0,0,2995.0195 -11244,13825,25111,-9,25109,25110,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-778.5647,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,4,1,410,1886389.3,0,0,2995.0195 -11245,13826,25112,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,4,7.911798,7.9559922,0,3,0,0,0,-9,0,-998.90869,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,30,60,15,1,0,-9,0,8.4311142,8.4311142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,2,3,0,877,204473.33,0,0,1317.8186 -11246,13827,25113,25115,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,0,3,8.8582783,8.3649273,0,2,0,-9,10,0,1,-82.395851,0,0,1,35,1,4,1,2,2,2019,1,2,7,0,39,49,15,1,0,1,0,16.695066,16.695066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.580002,55.59,57.16,56.150002,6,1,1,0,0,2,5,1,4002.6667,400303.81,0,0,6290.2607 -11246,13827,25114,-9,25113,25115,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.3962,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,2,5,1,4002.6667,400303.81,0,0,6290.2607 -11246,13827,25115,25113,-9,-9,2,1,1,35,1,1,1,0,1,-9,2,1,0,0,4,9.2532568,8.9011602,0,2,0,-9,10,0,-1,-58.239918,0,0,0,36,1,3,1,1,1,2019,1,1,5,0,45,43,15,1,0,1,0,23.826021,23.826021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,49.580002,55.59,6,1,1,0,0,2,5,1,4002.6667,400303.81,0,0,6290.2607 -11247,13828,25116,25117,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,50,0,1,-119.93711,0,0,0,75,1,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,55.259998,55.849998,6,1,1,0,0,6,4,1,996,1106836.8,0,0,2987.1543 -11247,13828,25117,25116,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,5,7.5437799,8.3088818,7.9319129,1,0,-9,50,0,-1,21.901768,0,0,0,76,3,5,3,3,2,2019,4,2,6,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6334553,7.5007949,0,0,55.259998,55.849998,54.689999,57.470001,6,1,1,0,0,6,4,1,996,1106836.8,0,0,2987.1543 -11248,13829,25118,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,1,1,0,0,4,8.199873,8.1689396,0,3,0,0,0,-9,0,-1103.6747,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,55,55,15,1,0,-9,0,6.8545666,6.8545666,0,0,0,0,0,0,0,0,0,0,0,3.8448503,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,5,4,1,220,35098.809,0,0,613.93323 -11249,13830,25119,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,4,3,0,0,4,5.9007888,8.0916471,7.5343184,3,0,0,0,-9,0,-938.60724,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,5,54,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.2474804,7.2992969,3,64.230003,44.689999,-9,-9,7,1,1,0,0,5,4,1,249,1886823,0,0,2164.1611 -11250,13831,25120,25121,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,5,8.3934631,8.3323088,0,1,0,-9,7,0,1,-47.989994,0,0,1,29,1,4,1,-9,-9,2019,1,1,10,0,44,42,15,1,0,1,0,13.814775,13.814775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.889999,59.639999,46.439999,59.619999,5,1,1,0,0,10,5,1,430.5,-233237.19,0,0,3212.1553 -11250,13831,25121,25120,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.6906481,8.3959322,0,1,0,-9,7,0,-1,-87.448685,0,1,0,30,1,5,1,1,1,2019,1,2,11,1,52,55,15,1,0,1,0,12.745201,12.745201,0,0,0,0,0,0,0,2,0,0,0,.11037772,0,3.7805412,3,46.439999,59.619999,46.889999,59.639999,6,1,1,0,0,10,5,1,430.5,-233237.19,0,0,3212.1553 -11251,13832,25122,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,0,3,0,6.6463194,6.6186848,3,0,0,0,-9,0,-967.23285,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.367691,6.5259461,0,0,64.959999,40.380001,-9,-9,6,1,1,0,0,6,2,1,2215,258436.69,0,0,689.4433 -11252,13833,25123,25124,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,36,0,3,0,0,0,0,58,3,1,3,3,3,2019,4,2,33,11,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.39088,1,17.02,29.120001,24.93,19.950001,1,1,1,0,1,13,1,0,311.5,-22216.008,0,0,1666.1609 -11252,13833,25124,25123,-9,-9,2,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,36,0,-3,0,0,0,0,61,3,1,3,3,3,2019,4,1,26,10,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.950001,17.02,29.120001,1,1,1,0,1,13,1,0,311.5,-22216.008,0,0,1666.1609 -11253,13834,25125,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1039.0441,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,1,0,0,.14540562,0,0,0,0,1,1,0,0,0,0,0,24.59,29.59,-9,-9,3,1,1,0,0,10,1,0,486,16388.814,0,0,514.15564 -11254,13835,25126,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1047.8013,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,119.18783,3,38.459999,46.189999,-9,-9,5,1,1,1,1,2,1,0,844,-74164.906,0,0,757.79205 -11254,13836,25127,-9,25126,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,2,6.7600651,6.7160611,0,3,0,0,0,-9,0,-1041.4701,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,20,8,14,17,15,1,1,-9,1,6.6533899,6.6533899,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.799999,46.73,-9,-9,3,4,2,0,0,2,2,0,740,91332.961,0,0,1201.8052 -11255,13837,25128,25130,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,0,3,7.8746519,7.844636,0,2,0,-9,8,0,-4,40.416325,0,0,1,34,2,3,1,2,-9,2019,1,2,6,0,29,28,15,1,0,1,0,9.8870678,9.8870678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,55.360001,51.57,6,1,1,0,0,7,4,1,825.33331,419812.88,0,0,3812.4219 -11255,13837,25129,-9,25128,25130,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.5564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,1,825.33331,419812.88,0,0,3812.4219 -11255,13837,25130,25128,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,0,3,8.2912312,8.543931,0,2,0,-9,8,0,4,-23.885611,0,0,0,30,2,3,1,-9,-9,2019,1,1,7,0,55,52,15,1,0,1,0,10.038108,10.038108,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1666431,3,55.360001,51.57,54.369999,54.799999,6,1,1,0,0,7,4,1,825.33331,419812.88,0,0,3812.4219 -11256,13838,25131,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,0,2,0,7.1927428,7.016294,3,0,0,0,-9,0,-980.29071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,39,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6911788,7.0682273,0,0,44.689999,33.869999,-9,-9,5,1,1,0,0,1,2,1,243,177926.08,0,0,1098.4103 -11257,13839,25132,25133,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,0,3,0,6.7300506,6.6651354,1,0,-9,60,0,0,-108.31281,0,0,0,83,2,2,3,2,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,3.7594554,0,0,0,0,120,1,1,0,5.8192668,6.7455139,112.60291,2,47.759998,48.16,51.650002,44.349998,6,1,1,0,0,5,3,1,2097.5,283333.16,0,0,3091.1484 -11257,13839,25133,25132,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,1,2,0,7.6258259,7.4165082,1,0,-9,60,0,0,-23.621801,0,0,0,83,3,3,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,6.9098644,0,0,0,0,0,1,1,0,6.4215417,7.2025266,0,0,51.650002,44.349998,47.759998,48.16,6,1,1,0,0,5,3,1,2097.5,283333.16,0,0,3091.1484 -11258,13840,25134,25135,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,1,2,0,3.7304418,3.6240549,1,0,-9,45,0,1,-51.553879,0,0,0,76,3,3,3,3,3,2019,4,1,22,9,0,0,15,4,1,4,0,0,0,1,0,5.8072567,0,0,0,0,0,1,1,0,0,3.8957026,0,0,33.439999,36.279999,45.290001,41.439999,5,1,1,0,0,1,2,1,514.5,171076.47,0,0,1458.3573 -11258,13840,25135,25134,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,5.3215299,5.583859,1,0,-9,45,0,-1,-38.860344,0,0,0,77,2,2,3,3,2,2019,4,2,19,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.0000802,5.4497676,124.89697,1,45.290001,41.439999,33.439999,36.279999,5,1,1,0,0,1,2,1,514.5,171076.47,0,0,1458.3573 -11259,13841,25136,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,0,2,0,7.2465625,7.0270376,3,0,0,0,-9,0,-878.69604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,1,7.3062496,0,0,0,0,20.982977,0,1,1,0,0,7.3553772,0,0,42.889999,33.470001,-9,-9,3,1,1,0,0,2,2,0,561,305549.5,0,0,691.29407 -11260,13842,25137,-9,25139,25138,4,1,0,17,2,0,1,0,-9,-9,7,2,0,0,4,5.5576162,5.7451024,0,2,0,0,0,-9,0,-1084.4635,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2861576,0,0,0,34.810001,61.470001,-9,-9,4,1,1,0,0,4,3,1,499.33334,599407.38,0,0,3617.2197 -11260,13842,25138,25139,-9,-9,2,1,1,63,1,0,1,0,1,-9,4,3,0,0,2,0,7.7830615,7.8380017,2,0,-9,25,0,11,-55.860195,0,0,0,52,2,5,1,2,2,2019,3,1,16,6,0,24,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6083217,7.915225,0,0,31.73,48.25,56.470001,59.400002,5,1,1,0,0,4,3,1,499.33334,599407.38,0,0,3617.2197 -11260,13842,25139,25138,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,5,6.9693437,7.6280379,0,2,0,-9,24,0,-11,34.177086,0,0,0,63,1,2,3,2,1,2019,2,2,6,0,20,20,15,1,0,4,0,7.5613632,7.5613632,0,0,0,0,0,0,0,0,0,0,0,7.2975149,0,0,0,56.470001,59.400002,31.73,48.25,7,1,1,0,0,4,3,1,499.33334,599407.38,0,0,3617.2197 -11260,13843,25140,-9,25139,25138,3,1,0,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1020.0295,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.249624,0,0,0,60.419998,54.810001,-9,-9,6,1,1,0,0,4,1,1,117,78094.859,0,0,328.08191 -11261,13844,25141,25142,-9,-9,2,1,0,47,1,0,3,0,2,-9,2,1,0,0,2,0,0,0,2,0,-9,19,0,-5,102.32558,0,0,0,52,1,3,1,2,2,2019,1,1,8,0,50,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.419998,25.41,47.099998,43.220001,5,1,1,0,0,2,5,1,644,700237.5,0,0,3674.4517 -11261,13844,25142,25141,-9,-9,1,1,1,52,1,0,3,0,1,-9,2,1,0,0,3,9.520587,9.745306,0,2,0,-9,19,0,5,100.77066,0,0,0,47,2,2,1,2,2,2019,1,2,13,2,18,48,15,1,0,1,0,97.528938,97.528938,0,0,0,0,0,0,0,0,1,1,0,6.6778312,0,0,0,47.099998,43.220001,57.419998,25.41,3,1,1,0,0,2,5,1,644,700237.5,0,0,3674.4517 -11262,13845,25143,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,8,3,1,1,2,6.992311,6.8441539,0,3,0,0,0,-9,0,-1050.3431,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.02,29.690001,-9,-9,6,1,1,0,0,9,2,0,558,223390.67,0,0,1439.3401 -11263,13846,25144,-9,25146,25148,3,1,1,13,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1105.557,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,915.33331,213648.27,0,0,2988.5127 -11263,13846,25145,-9,25146,25148,5,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.17413,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,915.33331,213648.27,0,0,2988.5127 -11263,13846,25146,25148,-9,-9,2,1,0,38,1,1,4,0,1,-9,1,1,0,0,3,6.5486498,6.8689055,0,2,0,-9,11,0,1,18.766426,0,0,1,37,1,5,1,2,2,2019,1,1,14,3,18,10,15,1,0,1,0,5.1123657,5.1123657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.799999,60.419998,46,61.599998,6,1,1,0,0,2,3,1,915.33331,213648.27,0,0,2988.5127 -11263,13846,25147,-9,25146,25148,4,1,1,11,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.5968,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,915.33331,213648.27,0,0,2988.5127 -11263,13846,25148,25146,-9,-9,1,1,1,37,1,1,4,0,1,-9,2,1,0,0,5,8.8383837,8.7877874,0,2,0,-9,11,0,-1,43.31057,0,0,0,38,1,3,1,2,2,2019,1,2,8,0,39,37,15,1,0,1,0,16.047373,16.047373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61.599998,38.799999,60.419998,6,1,1,0,0,2,3,1,915.33331,213648.27,0,0,2988.5127 -11263,13846,25149,-9,25146,25148,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.5876,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,3,1,915.33331,213648.27,0,0,2988.5127 -11264,13847,25150,25153,-9,-9,2,1,1,39,1,1,3,0,2,-9,2,1,0,0,3,7.9228578,8.0720997,0,2,0,-9,6,0,3,20.214602,0,0,0,36,2,3,3,3,3,2019,2,1,10,1,44,48,15,1,0,3,0,5.7710228,5.7710228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.119999,37.779999,49.689999,44.959999,5,2,3,0,0,5,2,0,803.79999,50661.191,0,0,887.58606 -11264,13847,25151,-9,25153,25150,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.6429,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,5,2,0,803.79999,50661.191,0,0,887.58606 -11264,13847,25152,-9,25153,25150,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.28375,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,2,0,803.79999,50661.191,0,0,887.58606 -11264,13847,25153,25150,-9,-9,1,1,0,36,1,1,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,10,0,-3,-132.53876,0,0,1,39,2,3,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.689999,44.959999,41.119999,37.779999,4,2,3,0,1,5,2,0,803.79999,50661.191,0,0,887.58606 -11264,13847,25154,-9,25153,25150,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.6281,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,2,0,803.79999,50661.191,0,0,887.58606 -11265,13848,25155,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1052.6617,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,1,6,1,0,906,546675.19,0,0,1911.1277 -11266,13849,25156,25157,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,4,8.3717375,8.4862261,0,2,0,-9,8,0,3,74.818726,0,0,0,46,1,5,1,-9,-9,2019,1,1,8,1,40,40,15,1,0,1,0,13.21051,13.21051,0,0,0,0,0,0,0,2,1,1,0,3.8411832,0,7.517159,3,51.830002,57.200001,57.060001,57.759998,6,1,1,0,0,4,5,1,1127.75,1544578.4,0,0,5068.0234 -11266,13849,25157,25156,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,0,5,8.9744053,9.2703466,6.7447252,2,0,-9,26,0,-3,133.50948,0,0,0,49,1,4,1,2,2,2019,1,2,8,0,30,35,15,1,0,1,0,30.88526,30.88526,0,0,0,0,0,0,0,0,1,1,0,6.7199254,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,4,5,1,1127.75,1544578.4,0,0,5068.0234 -11266,13849,25158,-9,25157,25156,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-924.47205,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,4,5,1,1127.75,1544578.4,0,0,5068.0234 -11266,13849,25159,-9,25157,25156,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1135.7346,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,1127.75,1544578.4,0,0,5068.0234 -11267,13850,25160,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,0,2,6.9436207,7.2949576,5.5780158,3,0,0,0,-9,0,-1003.2045,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,20,15,1,0,-9,0,5.1317263,5.1317263,0,0,0,0,0,0,0,27.5,1,1,0,4.228292,5.4586625,34.715134,3,44.549999,36.490002,-9,-9,5,1,1,0,0,5,2,1,1241,78119.617,0,0,-530.72583 -11268,13851,25161,25162,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,41,0,-1,-76.957024,0,0,0,65,3,5,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.984798,0,28.079065,3,45.32,53.5,57.060001,57.759998,4,1,1,0,0,2,2,1,468.5,539360.81,0,0,1467.0042 -11268,13851,25162,25161,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,5,0,6.8939223,7.289187,1,0,-9,41,0,1,-52.916218,0,0,0,64,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.6028981,7.137558,21.831387,3,57.060001,57.759998,45.32,53.5,5,1,1,0,0,2,2,1,468.5,539360.81,0,0,1467.0042 -11268,13852,25163,-9,25161,25162,3,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,7.763051,7.9983869,0,3,0,0,0,-9,0,-921.70105,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.4657369,6.4657369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,2,3,1,875,69343.914,0,0,323.54416 -11269,13853,25164,25165,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,56,0,-2,0,0,0,0,75,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,56.099998,49.93,6,1,1,0,0,2,1,1,499.5,153750.67,0,0,1276.0844 -11269,13853,25165,25164,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,2,0,0,0,0,73,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.099998,49.93,59.529999,56.439999,6,1,1,0,0,2,1,1,499.5,153750.67,0,0,1276.0844 -11270,13854,25166,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,0,3,2.9775674,6.7074223,6.6733017,3,0,0,0,-9,0,-980.03497,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788096,0,0,0,38.91,57.830002,-9,-9,2,1,1,0,0,4,2,0,1327,51274.234,0,0,1007.9031 -11271,13855,25167,25168,-9,-9,2,1,1,82,1,0,0,0,1,-9,4,3,0,0,4,0,7.2082353,7.5010815,1,0,-9,56,0,3,75.83622,0,0,0,79,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.467787,7.254148,0,0,57.759998,54.509998,51,46,1,1,1,0,0,1,3,1,343.5,830587.5,0,0,2593.9668 -11271,13855,25168,25167,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.8151574,7.8376908,1,0,-9,56,0,-3,-47.582333,-9,0,0,82,1,4,3,3,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8105636,7.9081807,0,0,51,46,57.759998,54.509998,6,1,1,0,0,1,3,1,343.5,830587.5,0,0,2593.9668 -11272,13856,25169,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,1,1,0,0,3,7.0884113,7.0548596,0,3,0,0,0,-9,0,-1093.6897,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,45,40,15,1,1,-9,0,2.7788796,2.7788796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.41,61.919998,-9,-9,4,4,5,0,0,8,2,0,212,-269683.16,0,0,381.04523 -11273,13857,25170,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,5.3267083,5.4699373,3,0,0,0,-9,0,-1012.9996,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1936588,0,0,52.23,55.599998,-9,-9,7,1,1,0,0,6,2,1,642,134310.75,0,0,634.54547 -11274,13858,25171,25175,-9,-9,2,1,0,51,1,0,3,0,1,-9,2,1,0,0,4,8.9300699,9.2589817,0,2,0,-9,8,0,-1,97.949684,0,0,0,52,1,4,1,2,2,2019,1,1,8,1,37,37,15,1,0,1,0,27.664055,27.664055,0,0,0,0,0,0,0,0,1,1,0,2.6383717,0,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,12,5,1,917,754976,0,0,5576.8071 -11274,13858,25172,-9,25171,25175,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.5923,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,917,754976,0,0,5576.8071 -11274,13858,25173,-9,25171,25175,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1127.3165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,12,5,1,917,754976,0,0,5576.8071 -11274,13858,25174,-9,25171,25175,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.1601,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,917,754976,0,0,5576.8071 -11274,13858,25175,25171,-9,-9,1,1,1,52,1,0,3,0,1,-9,2,1,0,0,4,8.6648769,8.2804327,0,2,0,-9,8,0,1,63.495239,0,0,0,51,1,4,1,3,2,2019,1,2,6,0,40,40,15,1,0,1,0,14.222269,14.222269,0,0,0,0,0,0,0,2,1,1,0,2.7469404,0,2.5263085,3,62.490002,55.09,57.16,56.150002,6,1,1,0,0,12,5,1,917,754976,0,0,5576.8071 -11275,13859,25176,-9,-9,-9,1,1,0,91,3,0,0,0,1,-9,4,3,0,0,3,0,6.6254363,6.6554198,3,0,0,0,-9,0,-938.06677,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,86.741753,0,0,0,0,795.31293,0,1,1,0,4.5439968,6.6034918,0,0,62.419998,42.939999,-9,-9,4,1,1,0,0,6,2,1,174,506990.16,0,0,185.20244 -11276,13860,25177,25178,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,2,8.7991619,8.6296721,0,1,0,-9,42,0,-2,-31.862545,0,0,0,60,2,3,3,2,2,2019,2,2,33,12,60,50,15,1,1,3,0,17.592882,17.592882,0,0,0,0,0,0,0,5.48,1,1,0,.71180242,0,11.356961,3,21.059999,43.259998,51.169998,49.389999,3,1,1,0,0,10,5,1,1234.5,1788711,0,0,3776.2307 -11276,13860,25178,25177,-9,-9,2,1,1,60,1,0,0,0,2,-9,3,3,0,1,3,0,6.8816667,7.1467161,1,0,-9,9,0,2,96.984016,0,0,0,58,1,2,1,-9,-9,2019,3,1,20,8,0,43,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.334826,6.666285,.52124566,3,51.169998,49.389999,21.059999,43.259998,5,1,1,1,0,10,5,1,1234.5,1788711,0,0,3776.2307 -11277,13861,25179,-9,25180,25181,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1066.7585,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,324.33334,435096.5,0,0,3920.3276 -11277,13861,25180,25181,-9,-9,2,1,0,29,1,0,1,0,1,-9,2,1,0,0,4,8.4734621,8.488554,5.6726322,2,0,-9,1,-9,-2,-40.465023,-9,1,1,31,2,4,1,-9,-9,2019,1,1,5,0,30,0,15,1,0,1,0,16.956755,16.956755,0,0,0,0,0,0,0,0,1,1,0,6.483531,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,1,5,5,1,324.33334,435096.5,0,0,3920.3276 -11277,13861,25181,25180,-9,-9,1,1,1,31,1,0,1,0,2,-9,2,1,0,0,4,8.6930561,8.756402,0,2,0,-9,1,-9,2,-97.42086,-9,0,0,29,1,4,1,2,1,2019,1,2,12,0,38,0,15,1,0,1,0,21.762556,21.762556,0,0,0,0,0,0,0,0,1,1,0,3.299262,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,5,5,1,324.33334,435096.5,0,0,3920.3276 -11278,13862,25182,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,4,0,7.2455173,7.1343594,3,0,-9,0,1,0,-992.73755,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0047231,0,0,53.740002,45.32,-9,-9,6,1,1,0,0,7,2,1,1771,634541.75,0,0,1206.2109 -11279,13863,25183,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-992.61908,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60228109,0,0,0,53,44,-9,-9,6,1,1,0,0,11,1,1,401,55036.898,0,0,548.98633 -11280,13864,25184,25186,-9,-9,1,1,1,46,1,1,2,0,2,-9,2,1,0,0,4,8.6188889,8.3154383,0,2,0,-9,1,-9,8,119.46816,-9,0,0,38,1,4,1,3,3,2019,1,2,10,0,44,0,15,1,0,1,0,15.461017,15.461017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,48.279999,60.18,6,1,1,0,0,7,4,0,566.5,223896.45,0,0,2371.054 -11280,13864,25185,-9,25186,25184,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-898.85028,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,0,566.5,223896.45,0,0,2371.054 -11280,13864,25186,25184,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,0,4,7.2631059,7.3776278,0,2,0,-9,1,-9,-8,41.630577,-9,0,1,46,2,4,1,2,2,2019,1,1,7,0,14,0,15,1,0,1,0,17.834499,17.834499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,60.119999,54.799999,6,1,1,0,0,7,4,0,566.5,223896.45,0,0,2371.054 -11280,13864,25187,-9,25186,25184,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-986.9483,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,0,566.5,223896.45,0,0,2371.054 -11281,13865,25188,25189,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,2,0,8.6545734,8.9895287,1,0,-9,56,0,4,-15.443469,0,0,0,76,2,4,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1108227,8.5367107,0,0,38.240002,25.76,55.34,54.259998,5,1,1,0,0,7,5,1,1697.5,1581487,0,0,4256.7583 -11281,13865,25189,25188,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.6036263,6.6414013,1,0,-9,56,0,-4,85.284462,0,0,0,80,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6584363,0,0,55.34,54.259998,38.240002,25.76,7,1,1,0,0,7,5,1,1697.5,1581487,0,0,4256.7583 -11282,13866,25190,-9,25192,25191,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.61218,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,6,0,0,13,1,0,489.33334,-37361.852,0,0,2144.9326 -11282,13866,25191,25192,-9,-9,1,1,1,28,1,0,1,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,6,0,2,0,0,1,0,26,3,3,3,3,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.349998,56.59,38.630001,56.700001,6,1,1,1,0,13,1,0,489.33334,-37361.852,0,0,2144.9326 -11282,13866,25192,25191,-9,-9,2,1,0,26,1,0,1,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,6,0,-2,0,0,1,1,28,3,3,3,-9,-9,2019,4,1,23,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.630001,56.700001,48.349998,56.59,5,4,1,1,0,13,1,0,489.33334,-37361.852,0,0,2144.9326 -11283,13867,25193,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,5,0,7.8053846,7.9419065,3,0,0,0,-9,0,-1094.2479,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3103635,7.9228354,8.3137608,3,62.150002,49.939999,-9,-9,7,1,1,0,0,13,3,1,215,565381.56,0,0,1049.4967 -11284,13868,25194,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1067.0958,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,8,0,0,15,4,1,-9,0,0,0,1,5.5329351,0,0,0,0,42.981441,0,1,1,0,4.1632791,0,0,0,21.799999,26.98,-9,-9,1,1,1,0,0,10,1,0,335,52684.094,0,0,3106.7983 -11285,13869,25195,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,0,4,7.6588082,7.8827291,0,3,0,0,0,-9,0,-1050.7303,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,36,36,15,1,0,-9,0,5.4299302,5.4299302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,13,3,1,204,93597.641,0,0,120.96976 -11286,13870,25196,-9,-9,-9,1,1,1,83,2,0,0,0,2,-9,4,3,0,0,4,0,7.9115524,8.0766706,3,0,0,0,-9,0,-985.03851,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,9.9262848,0,0,0,0,68.858223,0,1,1,0,0,7.7488189,0,0,52.580002,50.040001,-9,-9,6,1,1,0,0,11,4,1,851,682988.75,0,0,3860.8232 -11287,13871,25197,25199,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,0,4,7.8574133,7.3690014,0,2,0,-9,15,0,-4,62.661919,0,0,1,36,2,4,1,2,3,2019,1,1,6,0,30,27,15,1,0,1,0,8.5445566,8.5445566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.630001,59.720001,58.150002,52.91,6,1,1,0,0,7,4,0,441,22000.807,0,0,2806.3074 -11287,13871,25198,-9,25197,25199,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.90369,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,4,0,441,22000.807,0,0,2806.3074 -11287,13871,25199,25197,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.1910172,8.096014,0,2,0,-9,15,0,4,33.855824,0,0,0,32,2,4,1,-9,2,2019,1,2,10,1,37,7,15,1,0,1,0,10.795981,10.795981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,46.630001,59.720001,6,1,1,0,0,7,4,0,441,22000.807,0,0,2806.3074 -11288,13872,25200,-9,25203,25202,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.4877,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,4,1,1166.4,246442.52,0,0,2745.0754 -11288,13872,25201,-9,25203,25202,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.42291,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,1166.4,246442.52,0,0,2745.0754 -11288,13872,25202,25203,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,8.7384548,8.5816526,0,2,0,-9,8,0,0,82.946648,0,0,0,44,1,1,1,-9,-9,2019,1,2,5,0,39,40,15,1,0,1,0,19.814796,19.814796,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,52.23,55.599998,43.419998,36.060001,6,1,1,0,0,13,4,1,1166.4,246442.52,0,0,2745.0754 -11288,13872,25203,25202,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,1,1,7.0029998,7.5149369,0,2,0,-9,8,0,0,129.76715,0,0,1,44,1,4,1,2,3,2019,1,1,15,3,25,25,15,1,0,1,0,7.0337801,7.0337801,0,0,0,0,0,0,0,2,1,1,0,0,0,7.0467191,3,43.419998,36.060001,52.23,55.599998,6,1,1,0,0,13,4,1,1166.4,246442.52,0,0,2745.0754 -11288,13872,25204,-9,25203,25202,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.43048,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,4,1,1166.4,246442.52,0,0,2745.0754 -11289,13873,25205,25206,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.5235081,7.4456325,1,0,-9,29,0,6,28.378456,0,0,0,61,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2698517,0,0,54.790001,55.860001,57.060001,57.759998,6,1,1,0,0,2,4,1,1260.5,1682880.3,0,0,2922.0322 -11289,13873,25206,25205,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,5,0,7.9086823,7.7428975,1,0,-9,27,0,-6,63.530693,0,0,0,67,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6022167,0,0,57.060001,57.759998,54.790001,55.860001,7,1,1,0,0,2,4,1,1260.5,1682880.3,0,0,2922.0322 -11290,13874,25207,25208,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,1,0,5.4590039,5.472198,1,0,-9,10,0,3,41.709484,0,0,0,78,2,1,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,1,0,17.216408,0,0,0,0,0,1,1,0,0,5.9215202,0,0,52.150002,20.84,34.599998,31.690001,4,1,1,0,0,11,2,1,222,257092.34,0,0,2686.8003 -11290,13874,25208,25207,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,1,1,0,6.6195526,6.8937564,1,0,-9,10,0,-3,-66.896812,0,0,0,81,3,1,3,3,3,2019,4,1,25,11,0,0,15,4,1,4,0,0,0,1,0,11.80287,0,0,0,0,0,1,1,0,0,7.1778798,0,0,34.599998,31.690001,52.150002,20.84,3,1,1,0,0,11,2,1,222,257092.34,0,0,2686.8003 -11291,13875,25209,25210,-9,-9,1,1,0,49,1,0,1,0,3,-9,2,1,0,0,4,8.093462,7.8021846,0,2,0,-9,20,-9,-5,81.30117,-9,0,0,54,2,4,1,1,1,2019,1,2,11,0,40,0,15,1,0,1,0,9.431036,9.431036,0,0,0,0,0,0,0,0,1,1,0,2.9050345,0,0,0,46.16,58.619999,54.200001,57.490002,5,1,1,0,0,11,4,1,778.33331,861266.56,0,0,2543.6812 -11291,13875,25210,25209,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,8.0982742,8.0448132,0,2,0,-9,20,-9,5,-141.18494,-9,0,0,49,3,4,1,-9,2,2019,1,1,11,0,45,0,15,1,0,1,0,6.707231,6.707231,0,0,0,0,0,0,0,0,1,1,0,3.6980155,0,0,0,54.200001,57.490002,46.16,58.619999,7,1,1,0,0,11,4,1,778.33331,861266.56,0,0,2543.6812 -11291,13875,25211,-9,25209,25210,4,1,0,17,2,0,1,0,2,-9,2,3,0,0,5,6.9011464,6.6440659,0,2,0,-9,0,-9,0,-1083.7544,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,21,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5192063,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,11,4,1,778.33331,861266.56,0,0,2543.6812 -11291,13876,25212,-9,25209,25210,3,1,1,18,2,0,1,1,2,-9,7,2,0,0,5,5.763989,5.1119523,0,3,0,-9,0,-9,0,-1030.4423,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6809204,0,0,0,51.389999,59.18,-9,-9,6,1,1,0,0,11,4,1,416,-114822.79,0,0,635.58417 -11292,13877,25213,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,1,1,0,0,4,8.4828196,8.3647938,0,3,0,0,0,-9,0,-949.71124,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,40,15,1,0,-9,0,16.467543,16.467543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,7,5,0,542,585691.69,0,0,2223.7217 -11293,13878,25214,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-1085.6881,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.900002,51.290001,-9,-9,5,3,4,1,1,6,1,0,727,57374.477,0,0,1365.8235 -11294,13879,25215,25216,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,3.0754735,2.732512,1,0,-9,36,0,-5,-126.5036,0,0,0,79,3,3,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,2.7189386,33.654991,3,54.73,35.669998,51.939999,40.740002,6,1,1,0,0,10,2,1,898,658427.63,0,0,2009.8079 -11294,13879,25216,25215,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,7.2591648,7.2429743,1,0,-9,8,0,5,-39.748566,0,0,0,74,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,2.4003303,7.0757113,7.8423929,3,51.939999,40.740002,54.73,35.669998,6,1,1,0,0,10,2,1,898,658427.63,0,0,2009.8079 -11295,13880,25217,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,1,1,0,0,4,9.4316835,9.6269093,7.0408592,3,0,0,0,-9,0,-907.2486,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,10,10,15,1,0,-9,0,107.40484,107.40484,0,0,0,0,0,0,0,2,0,0,0,0,7.6474133,3.7438388,3,57.16,56.150002,-9,-9,6,1,1,0,0,6,5,1,2470,194036.36,0,0,5658.959 -11296,13881,25218,-9,25221,25219,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.8644,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,811.75,42925.234,0,0,3873.0991 -11296,13881,25219,25221,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.4740448,8.3839483,0,2,0,-9,13,0,3,37.306118,0,0,0,32,1,4,1,2,2,2019,1,2,7,0,61,56,15,1,0,1,0,10.422871,10.422871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,56.18,53.849998,2,1,1,0,0,11,4,1,811.75,42925.234,0,0,3873.0991 -11296,13881,25220,-9,25221,25219,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.62335,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,1,811.75,42925.234,0,0,3873.0991 -11296,13881,25221,25219,-9,-9,2,1,0,32,1,0,2,0,1,-9,2,1,0,0,4,7.8977551,8.0830488,0,2,0,-9,12,0,-3,117.09811,0,0,1,35,2,4,1,2,2,2019,1,1,7,0,24,24,15,1,0,1,0,10.470829,10.470829,0,0,0,0,0,0,0,0,1,1,0,5.1862364,0,0,0,56.18,53.849998,57.16,56.150002,6,1,1,0,0,11,4,1,811.75,42925.234,0,0,3873.0991 -11297,13882,25222,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,3,7.4525342,7.664732,0,3,0,0,0,-9,0,-1084.0874,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.220001,58.43,-9,-9,6,1,1,0,0,10,3,1,699,15972.606,0,0,-2.3193119 -11297,13883,25223,-9,25222,-9,2,1,1,18,3,0,0,0,2,-9,1,1,0,0,2,8.048913,8.0493965,0,3,0,0,0,-9,0,-985.95111,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,40,0,15,1,1,-9,1,7.3147612,7.3147612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.110001,41.970001,-9,-9,2,1,1,0,0,10,3,1,188,40148.066,0,0,2156.7817 -11298,13884,25224,25225,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,0,3,7.9743409,8.2245188,0,1,0,-9,27,0,-1,71.303947,0,0,0,49,3,3,1,3,3,2019,1,2,11,0,37,50,15,1,0,1,0,10.415281,10.415281,0,0,0,0,0,0,0,7,0,0,0,.38588712,0,8.0004463,3,52,54.509998,60.290001,52.110001,6,1,1,0,0,6,5,1,678,645208.75,0,0,3010.5928 -11298,13884,25225,25224,-9,-9,2,1,1,49,1,0,0,0,3,-9,2,1,0,0,3,8.3835316,8.3411255,0,1,0,-9,27,0,1,67.96106,0,0,0,48,3,3,1,3,3,2019,1,1,11,0,38,37,15,1,0,1,0,11.57901,11.57901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,52,54.509998,5,1,1,0,0,6,5,1,678,645208.75,0,0,3010.5928 -11298,13885,25226,-9,25224,25225,3,1,1,25,2,0,0,0,2,0,7,2,0,0,4,7.1979651,8.9108486,8.8798418,3,0,0,0,-9,0,-1014.0636,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1946077,0,0,0,38.09,63.389999,-9,-9,5,1,1,0,0,6,5,1,1305,56350.012,0,0,3924.0684 -11299,13886,25227,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,1,2,7.8125243,7.5538912,0,3,0,0,0,-9,0,-989.84479,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,7.0876307,7.0876307,1,0,0,.34780347,2.5573678,0,0,0,1,1,0,0,0,0,0,64.639999,21.969999,-9,-9,4,1,1,0,0,12,3,0,52,68217.547,0,0,1952.7794 -11300,13887,25228,25229,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.858942,8.6788788,0,1,0,-9,15,0,-6,26.778131,0,0,0,46,2,3,1,2,2,2019,1,2,9,1,60,45,15,1,0,1,0,9.5957441,9.5957441,0,0,0,0,0,0,0,0,0,0,0,.3132807,0,0,0,51,56,52.060001,42.540001,6,1,1,0,0,9,5,1,262.5,189276.78,0,0,3696.2583 -11300,13887,25229,25228,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.1077833,8.0052328,0,1,0,-9,15,0,6,-133.84946,0,0,0,40,2,4,1,2,-9,2019,1,1,11,0,40,45,15,1,0,1,0,10.250058,10.250058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.060001,42.540001,51,56,6,1,1,0,0,9,5,1,262.5,189276.78,0,0,3696.2583 -11301,13888,25230,25231,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,8.7831163,9.0817547,8.4912386,1,0,-9,10,0,6,-86.983902,0,0,0,53,2,2,3,3,3,2019,2,1,16,4,28,37,15,1,1,4,0,28.530939,28.530939,0,0,0,0,0,0,0,14.5,1,1,0,8.0011091,8.4018955,15.084233,2,44.490002,47.34,39.23,28.059999,3,1,1,0,0,2,5,1,863.5,200192.53,0,0,4531.3545 -11301,13888,25231,25230,-9,-9,1,1,1,53,1,0,0,0,2,-9,4,3,0,1,2,0,7.8884177,7.5596576,1,0,-9,10,0,-6,-81.313499,0,0,0,59,2,2,1,3,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.618896,0,0,39.23,28.059999,44.490002,47.34,5,1,1,0,0,2,5,1,863.5,200192.53,0,0,4531.3545 -11301,13889,25232,-9,25230,25231,3,1,0,21,2,0,0,0,2,-9,7,2,0,0,3,7.7638292,7.4902635,0,3,0,0,0,-9,0,-862.18573,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,30,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.92686325,0,0,0,26.18,61.09,-9,-9,4,1,1,0,0,2,3,1,608,223941.97,0,0,1208.8853 -11302,13890,25233,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1005.2954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,50.84,-9,-9,6,1,1,0,0,12,1,0,1242,-93363.148,0,0,-244.74341 -11303,13891,25234,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,2,0,7.1392403,7.4407964,3,0,0,0,-9,0,-1118.0848,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,2.8516543,0,1,1,0,5.2927938,7.5450301,0,0,53.080002,18.030001,-9,-9,4,1,1,0,0,12,3,1,250,236952.75,0,0,1714.6656 -11304,13892,25235,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,7.2270679,7.0132613,0,3,0,0,0,-9,0,-1033.8571,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,32,30,15,1,0,-9,0,5.5383301,5.5383301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.029999,53.23,-9,-9,3,1,1,0,1,9,3,0,348,110234.35,0,0,987.18542 -11304,13893,25236,-9,25235,-9,2,1,1,37,2,0,0,0,2,-9,1,1,0,0,4,8.1360178,7.7271156,0,3,0,0,0,-9,0,-1055.2169,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,35,30,15,1,0,-9,1,11.701743,11.701743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,4,0,567,-17478.766,0,0,2148.6743 -11305,13894,25237,25238,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,5,0,6.9766593,7.2014437,1,0,-9,43,0,-1,-22.561413,0,0,0,64,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1567407,0,0,59.599998,52.5,57.16,56.150002,7,1,1,0,0,2,4,1,512,2142607.5,0,0,4011.8105 -11305,13894,25238,25237,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,8.0469198,8.9276285,7.6852045,1,0,-9,43,0,1,47.105282,0,0,0,63,1,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1616426,8.0867672,0,3,57.16,56.150002,59.599998,52.5,6,1,1,0,0,2,4,1,512,2142607.5,0,0,4011.8105 -11306,13895,25239,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1005.1164,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.98532,3,44.599998,28.049999,-9,-9,4,1,1,0,0,13,1,0,332,265912.84,0,0,1750.1082 -11306,13896,25240,-9,-9,25239,2,1,1,21,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1031.455,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,13,1,0,515,241796.78,0,0,1722.2611 -11307,13897,25241,25242,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,5,8.5980778,8.6400738,0,1,0,-9,9,0,-8,-78.021774,0,0,0,66,2,5,1,3,3,2019,1,1,8,1,43,42,15,1,0,1,0,13.026526,13.026526,0,0,0,0,0,0,0,0,1,1,0,2.6492517,0,0,0,51.139999,60.450001,51.139999,60.450001,6,1,1,0,0,5,5,1,503.5,305561.56,0,0,3970.8984 -11307,13897,25242,25241,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,0,5,7.1728501,7.8081689,7.122263,1,0,-9,9,0,8,-34.092316,0,0,0,58,2,5,1,3,2,2019,1,2,9,0,12,12,15,1,0,1,0,13.703675,13.703675,0,0,0,0,0,0,0,0,1,1,0,2.7492054,7.4740496,0,0,51.139999,60.450001,51.139999,60.450001,5,1,1,0,0,5,5,1,503.5,305561.56,0,0,3970.8984 -11308,13898,25243,25244,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.7689867,7.7911587,1,0,-9,35,0,-6,26.562273,0,0,0,78,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.7698021,116.99748,1,35.68,40.970001,54,46,4,1,1,0,0,2,3,1,579.5,1672744,0,0,2713.2766 -11308,13898,25244,25243,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.6841078,7.4706874,1,0,-9,35,0,6,58.328377,0,0,0,72,2,2,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2646251,7.9231586,0,0,54,46,35.68,40.970001,6,1,1,0,0,2,3,1,579.5,1672744,0,0,2713.2766 -11309,13899,25245,-9,-9,-9,1,1,1,50,3,0,0,0,3,-9,9,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1083.7612,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,2,3,0,0,6,1,0,481,-93234.742,0,0,66.775764 -11310,13900,25246,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-996.09314,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.900002,47.299999,-9,-9,5,3,4,0,0,8,1,0,92,944610.44,0,0,863.32782 -11311,13901,25247,25248,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,5,0,6.9858284,6.8081102,1,0,-9,39,0,6,88.461655,0,0,0,62,3,5,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6531334,7.2608976,0,0,65.68,44.279999,57.060001,57.759998,7,1,1,0,0,11,2,1,843.5,6985.0234,0,0,160.85326 -11311,13901,25248,25247,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,0,5,0,5.3941555,4.9311671,1,0,-9,39,0,-6,-23.725657,0,0,0,68,3,5,3,3,2,2019,2,2,11,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5168002,5.219759,0,0,57.060001,57.759998,65.68,44.279999,1,1,1,0,0,11,2,1,843.5,6985.0234,0,0,160.85326 -11312,13902,25249,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,1,2,0,8.7141972,8.583353,3,0,0,0,-9,0,-1072.5756,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8187983,8.2230768,0,0,61.029999,31.709999,-9,-9,7,1,1,0,0,2,5,1,1047,545082.13,0,0,2934.7832 -11313,13903,25250,25251,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.1251011,8.537015,0,1,0,-9,7,0,-5,163.54773,0,0,0,51,2,3,1,-9,-9,2019,1,4,11,0,37,38,15,1,0,1,0,10.936773,10.936773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,59.599998,46.990002,4,1,1,0,0,2,5,1,464.5,1457834,0,0,2665.5627 -11313,13903,25251,25250,-9,-9,4,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.3923988,8.3046207,0,1,0,-9,7,0,5,1.4601057,0,0,0,46,2,3,1,-9,-9,2019,1,1,7,0,42,42,15,1,0,1,0,13.756281,13.756281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.599998,46.990002,54.959999,53.169998,6,1,1,0,0,2,5,1,464.5,1457834,0,0,2665.5627 -11314,13904,25252,25253,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.7205377,7.885107,0,1,0,-9,26,0,11,6.2764287,0,0,0,46,1,5,1,2,3,2019,1,1,7,0,7,10,15,1,0,1,0,47.582188,47.582188,0,0,0,0,0,0,0,2,0,0,0,7.5838971,0,4.2084851,3,57.16,56.150002,62.389999,56.709999,2,1,1,0,0,7,3,1,1099,-133981.86,0,0,1632.6235 -11314,13904,25253,25252,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,0,5,0,0,0,1,0,-9,27,0,-11,-28.779022,0,0,0,57,2,4,1,2,1,2019,1,2,7,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,7,3,1,1099,-133981.86,0,0,1632.6235 -11315,13905,25254,25255,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,9.1139994,9.0519476,0,2,0,-9,9,0,-8,-42.37933,0,0,1,51,2,3,1,2,2,2019,1,2,10,0,42,40,15,1,0,1,0,30.89571,30.89571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,40.099998,53.23,6,1,1,0,0,9,5,1,513,1516332.6,0,0,5994.2896 -11315,13905,25255,25254,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,3,8.9819508,9.0833168,0,2,0,-9,6,0,8,-12.712392,0,0,0,43,1,4,1,2,2,2019,1,1,12,1,45,42,15,1,0,1,0,21.269617,21.269617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.099998,53.23,62.490002,55.09,6,1,1,0,0,9,5,1,513,1516332.6,0,0,5994.2896 -11315,13905,25256,-9,25254,25255,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.32031,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,513,1516332.6,0,0,5994.2896 -11315,13905,25257,-9,25254,25255,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.42365,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,513,1516332.6,0,0,5994.2896 -11316,13906,25258,-9,25259,-9,2,1,0,17,2,0,1,1,2,-9,7,2,0,0,3,6.4633842,6.6129279,0,4,0,0,0,-9,0,-1090.3862,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7736444,0,0,0,27.9,50.900002,-9,-9,2,1,1,0,0,6,2,0,736.5,99879.742,0,0,1069.5614 -11316,13906,25259,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,4,6.7565699,7.3638902,6.4030528,4,0,0,0,-9,0,-1051.8365,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,17,17,15,1,0,-9,0,7.6780534,7.6780534,0,0,0,0,0,0,0,14.5,1,1,0,6.3604074,0,13.793432,3,55.959999,47.07,-9,-9,5,1,1,0,0,6,2,0,736.5,99879.742,0,0,1069.5614 -11317,13907,25260,-9,25261,25263,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.249,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,0,840.25,40656.309,0,0,2058.925 -11317,13907,25261,25263,-9,-9,1,1,0,27,1,2,2,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,6,0,-1,135.27806,0,1,1,28,2,4,1,2,3,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.613351,3,27.32,33.919998,51.73,56.299999,4,1,1,0,0,5,3,0,840.25,40656.309,0,0,2058.925 -11317,13907,25262,-9,25261,25263,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1027.1978,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,0,840.25,40656.309,0,0,2058.925 -11317,13907,25263,25261,-9,-9,2,1,1,28,1,2,2,0,2,-9,2,1,0,0,4,8.5418987,8.4343491,0,2,0,-9,6,0,1,18.631462,0,1,0,27,2,1,3,-9,-9,2019,2,1,12,1,39,0,15,1,0,3,0,14.785725,14.785725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,56.299999,27.32,33.919998,6,1,1,0,0,5,3,0,840.25,40656.309,0,0,2058.925 -11318,13908,25264,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,0,4,7.189054,7.7227416,6.3274102,4,0,0,0,-9,0,-909.94641,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,30,27,15,1,0,-9,0,5.7975545,5.7975545,0,0,0,0,0,0,0,0,1,0,1,6.5474949,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,4,3,0,622.5,47028.652,0,0,1290.4377 -11318,13908,25265,-9,25264,-9,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-934.35449,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,622.5,47028.652,0,0,1290.4377 -11318,13909,25266,-9,25264,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,7.7647486,7.8362145,0,3,0,0,0,-9,0,-1073.7716,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,37,37,15,1,1,-9,1,6.3565865,6.3565865,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.16,58.619999,-9,-9,4,1,1,0,0,4,3,0,728,-225346.19,0,0,972.76489 -11319,13910,25267,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,9.2423658,8.9247532,0,1,0,-9,8,0,-7,-85.201584,0,0,1,-9,-9,-9,-9,1,2,2019,1,2,6,0,38,35,15,1,0,-9,0,27.678951,27.678951,0,0,0,0,0,0,0,0,0,0,0,5.4072604,0,0,0,58.720001,51.290001,57.16,56.150002,6,1,1,0,0,6,5,1,1969,85934.719,0,0,2685.6462 -11319,13911,25268,-9,-9,-9,2,1,0,38,2,0,0,0,2,-9,2,1,0,0,4,8.520751,8.3199673,0,1,0,-9,8,0,7,-73.260513,0,0,1,-9,-9,-9,-9,2,2,2019,1,1,4,0,38,39,15,1,0,-9,0,15.694611,15.694611,0,0,0,0,0,0,0,0,0,0,0,5.1786799,0,0,0,57.16,56.150002,58.720001,51.290001,6,1,1,0,0,6,5,1,1195,147850.05,0,0,3300.2935 -11320,13912,25269,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,2,0,6.6961951,6.7784042,3,0,0,0,-9,0,-933.0069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,4.8033962,0,.65286428,0,0,0,0,1,1,0,3.0669847,6.1324468,0,0,67.589996,16.219999,-9,-9,6,1,1,0,0,7,2,0,421,589864.88,0,0,295.06494 -11321,13913,25270,25271,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,7.7134614,7.9466515,0,1,0,-9,8,0,-3,41.874962,0,0,1,33,3,3,1,-9,-9,2019,1,1,6,0,37,39,15,1,0,1,0,6.2775683,6.2775683,0,0,0,0,0,0,0,0,0,0,0,.87517899,0,0,0,51.830002,57.200001,57.330002,53.459999,6,1,1,0,0,5,4,1,576,196192.59,0,0,3132.5635 -11321,13913,25271,25270,-9,-9,1,1,1,33,1,0,0,0,3,-9,2,1,0,0,3,8.4617844,8.284831,0,1,0,-9,8,0,3,85.453918,0,0,0,30,1,4,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,10.801486,10.801486,0,0,0,0,0,0,0,0,0,0,0,4.6018419,0,0,0,57.330002,53.459999,51.830002,57.200001,2,1,1,0,0,5,4,1,576,196192.59,0,0,3132.5635 -11322,13914,25272,25273,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,4.323154,4.3672543,1,0,-9,8,0,-1,-56.770065,0,0,0,78,2,3,3,3,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6838636,0,0,56.07,45.75,56.470001,38.939999,6,1,1,0,0,13,4,1,460.5,1047933.3,0,0,3666.2959 -11322,13914,25273,25272,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,8.4827366,8.270443,1,0,-9,8,0,1,-142.45804,0,0,0,77,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2925167,0,0,56.470001,38.939999,56.07,45.75,6,1,1,0,0,13,4,1,460.5,1047933.3,0,0,3666.2959 -11323,13915,25274,25275,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-1,0,0,0,0,66,2,3,3,2,2,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.633644,3,58.32,50.220001,52,48,6,1,1,0,0,12,1,1,2377.5,-2496.418,0,0,1051.5093 -11323,13915,25275,25274,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,1,0,-9,0,0,65,3,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8728781,0,0,0,52,48,58.32,50.220001,5,1,1,0,0,12,1,1,2377.5,-2496.418,0,0,1051.5093 -11324,13916,25276,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.4753532,7.9104776,0,3,0,0,0,-9,0,-966.30389,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,42,44,15,1,0,-9,0,7.0673728,7.0673728,0,0,0,0,0,0,0,0,0,0,0,1.3685653,0,0,0,48.810001,59.91,-9,-9,3,1,1,0,0,2,3,0,395,49069.34,0,0,590.60291 -11325,13917,25277,25278,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,0,4,9.0546618,9.3180151,0,2,0,-9,6,0,0,-47.61694,0,0,0,52,1,3,1,-9,-9,2019,1,1,7,0,38,46,15,1,0,1,0,23.872454,23.872454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.02,58.849998,34.900002,57.07,6,1,1,0,0,13,5,1,585.33331,1002919.8,0,0,5504.0811 -11325,13917,25278,25277,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,3,9.5754156,8.8420963,0,2,0,-9,6,0,0,-44.832825,0,0,0,52,1,4,1,3,3,2019,1,2,23,11,40,50,15,1,1,1,0,25.479155,25.479155,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8858914,3,34.900002,57.07,38.02,58.849998,5,1,1,0,0,13,5,1,585.33331,1002919.8,0,0,5504.0811 -11325,13917,25279,-9,25277,25278,4,1,0,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.431,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.279999,62.599998,-9,-9,6,1,1,0,0,13,5,1,585.33331,1002919.8,0,0,5504.0811 -11325,13918,25280,-9,25277,25278,3,1,1,19,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-865.42731,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,55.720001,-9,-9,6,1,1,0,0,13,1,1,256,103124.91,0,0,0 -11326,13919,25281,25282,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,5.9451785,5.7303991,1,0,-9,50,0,-1,18.137781,0,0,0,67,2,4,1,3,3,2019,3,1,14,2,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6226969,0,0,33.07,41.950001,59.73,42.630001,3,1,1,0,0,9,3,0,758.5,939373.75,0,0,2565.9453 -11326,13919,25282,25281,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,4,7.7363625,7.8929591,6.1491437,1,0,-9,50,0,1,-15.809215,0,0,0,66,3,2,3,3,3,2019,2,2,8,0,40,40,15,1,0,4,0,5.7860131,5.7860131,0,0,0,0,0,0,0,7,1,1,0,4.4094954,6.3891387,5.5540152,3,59.73,42.630001,33.07,41.950001,4,1,1,0,0,9,3,0,758.5,939373.75,0,0,2565.9453 -11327,13920,25283,25284,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,1,4,0,4.6259933,4.4522848,1,0,-9,1,-9,2,34.291348,-9,0,0,75,3,1,3,-9,-9,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,13.458035,0,0,0,0,0,1,1,0,5.1294732,4.6670299,0,0,57.959999,31.809999,61.389999,15.11,6,1,1,0,0,11,2,0,728.5,265738.69,0,0,3227.2524 -11327,13920,25284,25283,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,1,0,5.8729906,5.7389188,1,0,1,1,-9,-2,-14.55962,0,0,0,77,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,9.5280466,0,0,0,0,14.5,1,1,0,4.7794223,5.6376743,15.087309,1,61.389999,15.11,57.959999,31.809999,5,1,1,0,0,11,2,0,728.5,265738.69,0,0,3227.2524 -11328,13921,25285,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-887.84808,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.55189222,0,0,3,62.389999,56.709999,-9,-9,7,1,1,0,0,9,1,0,1938,-219625.94,0,0,-651.46759 -11329,13922,25286,25287,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,7.9619689,8.3642216,7.2262239,1,0,-9,19,0,5,-16.73386,0,0,0,56,3,2,3,2,2,2019,2,2,8,0,23,24,15,1,0,3,0,12.3518,12.3518,0,0,0,0,0,0,0,0,1,1,0,0,7.252902,0,0,51.240002,58.84,44,38,7,1,1,0,0,12,4,1,358.5,1238416.3,0,0,2657.344 -11329,13922,25287,25286,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,2,0,6.3299732,6.0197201,1,0,-9,19,0,-5,-15.797957,0,0,0,61,3,4,1,-9,-9,2019,3,1,31,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90270066,5.7964859,0,0,44,38,51.240002,58.84,4,1,1,0,0,12,4,1,358.5,1238416.3,0,0,2657.344 -11330,13923,25288,-9,25290,25289,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.89594,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,695.33331,359955.16,0,0,1366.7321 -11330,13923,25289,25290,-9,-9,3,1,1,28,1,0,1,0,2,-9,2,1,0,0,4,8.5995007,8.5344028,0,2,0,-9,5,0,0,.82019424,0,1,0,28,2,3,3,-9,-9,2019,2,1,3,0,8,35,15,1,0,3,0,71.397232,71.397232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,55.310001,43,53,7,1,1,0,0,10,4,0,695.33331,359955.16,0,0,1366.7321 -11330,13923,25290,25289,-9,-9,1,1,0,28,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,0,-20.427315,0,1,1,28,2,4,1,2,3,2019,3,3,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,50.009998,55.310001,7,1,1,0,0,10,4,0,695.33331,359955.16,0,0,1366.7321 -11331,13924,25291,-9,-9,-9,1,1,0,18,2,0,2,0,2,-9,11,3,0,0,2,7.2115016,7.3713875,0,3,0,0,0,-9,0,-945.91504,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,40,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.219999,46.5,-9,-9,1,1,1,0,1,11,3,0,827,-18313.1,0,0,129.65298 -11332,13925,25292,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,0,4,6.4504318,6.5291476,0,4,0,0,0,-9,0,-945.117,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,16,19,15,1,0,-9,0,6.6592369,6.6592369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.110001,49.759998,-9,-9,5,1,1,0,0,9,2,0,198,45246.168,0,0,2071.8899 -11332,13926,25293,-9,25292,-9,2,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,7.5945468,7.5739374,0,3,0,0,0,-9,0,-976.57263,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,37,25,15,1,0,-9,1,5.5223293,5.5223293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,9,3,0,110,56663.82,0,0,679.58716 -11332,13927,25294,-9,25292,-9,3,1,0,18,2,0,1,1,2,0,7,2,0,0,3,7.1268091,7.340611,0,3,0,0,0,-9,0,-1046.9788,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,2,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.549999,35.91,-9,-9,6,1,1,0,0,9,3,0,388,-25139.809,0,0,1935.1436 -11333,13928,25295,25296,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,1,1,0,3.8426046,4.1948066,1,0,-9,17,0,16,150.42261,0,0,0,42,1,2,1,3,2,2019,3,1,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4368501,4.3660903,0,0,45.32,22.68,61.52,45.110001,5,1,1,0,0,2,3,1,948.5,85209.281,0,0,4613.5693 -11333,13928,25296,25295,-9,-9,1,1,0,42,1,0,0,0,1,-9,2,1,0,0,2,8.3648605,8.5703592,0,1,0,-9,17,0,-16,-33.997101,0,0,1,58,1,1,3,2,1,2019,2,2,9,1,35,71,15,1,0,4,0,12.138497,12.138497,0,0,0,0,0,0,0,7,1,1,0,3.3091989,0,12.521538,1,61.52,45.110001,45.32,22.68,6,1,1,0,0,2,3,1,948.5,85209.281,0,0,4613.5693 -11334,13929,25297,-9,25298,25299,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.79858,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,1142.25,433910.31,0,0,4165.6958 -11334,13929,25298,25299,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,4,8.3323841,8.4704905,0,2,0,-9,6,0,-1,-85.993347,0,0,0,51,1,4,1,1,2,2019,1,1,10,1,36,22,15,1,0,1,0,15.537857,15.537857,0,0,0,0,0,0,0,0,1,1,0,1.5402216,0,0,0,51,54,41.299999,60.77,6,1,1,0,0,8,5,1,1142.25,433910.31,0,0,4165.6958 -11334,13929,25299,25298,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,8.8321533,8.519598,0,2,0,-9,6,0,1,-51.776596,0,0,0,50,1,4,1,2,2,2019,1,2,20,8,45,44,15,1,1,1,0,14.681323,14.681323,0,0,0,0,0,0,0,0,1,1,0,2.3326681,0,0,0,41.299999,60.77,51,54,4,1,1,0,1,8,5,1,1142.25,433910.31,0,0,4165.6958 -11334,13929,25300,-9,25298,25299,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-885.61932,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,1142.25,433910.31,0,0,4165.6958 -11335,13930,25301,25302,-9,-9,1,1,0,48,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,11,0,-5,-91.488228,0,0,0,53,1,4,1,3,2,2019,3,2,27,9,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.07,28.219999,52.77,55.330002,3,3,4,1,1,9,3,0,367,208794.3,0,0,2091.1794 -11335,13930,25302,25301,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,7.8829875,7.8382125,0,1,0,-9,6,0,5,-8.4042377,0,0,0,48,2,1,3,3,2,2019,2,1,1,0,40,40,15,1,0,3,0,8.4282761,8.4282761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.330002,42.07,28.219999,5,3,4,0,1,9,3,0,367,208794.3,0,0,2091.1794 -11336,13931,25303,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,8.3838301,8.5222206,3,0,0,0,-9,0,-987.6347,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.118814,8.3752642,0,0,59.310001,46.959999,-9,-9,6,1,1,0,0,4,4,1,246,2082391.1,0,0,1854.3928 -11337,13932,25304,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,1,1,0,0,4,8.4377623,8.5674429,0,3,0,0,0,-9,0,-987.55444,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,40,60,15,1,0,-9,0,14.93322,14.93322,0,0,0,0,0,0,0,0,1,1,0,1.8446085,0,0,0,44.259998,59.43,-9,-9,6,1,1,0,0,9,5,0,180,143443.39,0,0,1524.2369 -11338,13933,25305,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1072.8707,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.310001,50.200001,-9,-9,4,1,1,0,1,1,1,0,693,103119.18,0,0,1153.2949 -11339,13934,25306,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,7.4830923,7.1376934,3,0,0,0,-9,0,-1027.5713,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.8607597,0,0,0,3.6524103,34.509338,0,1,1,0,.95042747,7.4332666,0,0,48,34,-9,-9,6,1,1,0,0,5,3,1,3034,397478.22,0,0,2281.7527 -11340,13935,25307,-9,25309,25311,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1132.6444,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,-9,-9,5,1,1,0,0,13,2,1,688.40002,-7820.4131,0,0,1789.4087 -11340,13935,25308,-9,25309,25311,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-979.56976,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,13,2,1,688.40002,-7820.4131,0,0,1789.4087 -11340,13935,25309,25311,-9,-9,2,1,0,40,1,1,3,0,2,-9,5,1,0,0,5,7.6276746,7.4944191,0,2,0,-9,11,0,-2,-64.956779,0,0,1,42,2,4,1,3,3,2019,1,1,10,0,25,25,15,1,0,1,0,7.9362636,7.9362636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,50,57,7,1,1,0,0,13,2,1,688.40002,-7820.4131,0,0,1789.4087 -11340,13935,25310,-9,25309,25311,4,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.18536,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,1,688.40002,-7820.4131,0,0,1789.4087 -11340,13935,25311,25309,-9,-9,1,1,1,42,1,1,3,0,2,-9,1,1,0,0,4,6.1048732,5.9421501,0,2,0,-9,11,0,2,73.760406,0,0,0,40,2,5,1,2,2,2019,1,2,10,1,35,38,15,1,0,1,0,1.4233289,1.4233289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.060001,57.759998,5,1,1,0,0,13,2,1,688.40002,-7820.4131,0,0,1789.4087 -11341,13936,25312,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,1,0,7.3975849,7.0933084,3,0,0,0,-9,0,-1001.2238,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,7,0,0,15,4,1,-9,0,0,0,1,0,0,7.6792202,0,2.8055394,0,0,1,1,0,0,7.3596816,0,0,25.91,22.25,-9,-9,2,1,1,0,0,12,3,0,278,412126.69,0,0,1852.9344 -11342,13937,25313,25314,-9,-9,1,1,1,36,1,0,0,0,2,-9,1,1,0,0,4,8.4490681,8.0523043,0,1,0,-9,1,-9,4,56.83947,-9,0,0,32,2,4,1,2,2,2019,1,2,4,0,45,0,15,1,0,1,0,8.135746,8.135746,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,59.139999,52.5,49.970001,56.66,7,1,1,0,0,13,4,1,572.5,145239.44,0,0,3198.4265 -11342,13937,25314,25313,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,4,8.2303314,7.7450604,0,1,0,-9,1,-9,-4,-16.160334,-9,0,1,36,2,4,1,1,2,2019,1,1,11,1,37,0,15,1,0,1,0,7.1824503,7.1824503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.970001,56.66,59.139999,52.5,6,1,1,0,0,13,4,1,572.5,145239.44,0,0,3198.4265 -11343,13938,25315,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,4,0,7.0208745,6.9176812,3,0,0,0,-9,0,-963.59875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0298004,0,0,68.629997,30.24,-9,-9,7,1,1,0,0,13,2,1,158,53407.855,0,0,1064.8011 -11344,13939,25316,25317,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,0,3,9.1925936,9.1341867,0,2,0,-9,20,0,7,-44.839886,0,0,0,45,1,3,1,3,3,2019,1,2,11,1,39,39,15,1,0,1,0,35.942799,35.942799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.950001,50.889999,62.66,52.400002,5,2,3,0,0,8,4,1,742.33331,1057016,0,0,5402.0347 -11344,13939,25317,25316,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,3,7.6127033,7.7186866,0,2,0,-9,20,0,-7,36.988636,0,0,0,52,1,3,1,3,1,2019,1,1,6,0,38,44,15,1,0,1,0,6.1654243,6.1654243,0,0,0,0,0,0,0,0,1,1,0,6.534575,0,0,0,62.66,52.400002,53.950001,50.889999,7,2,3,0,0,8,4,1,742.33331,1057016,0,0,5402.0347 -11344,13939,25318,-9,25317,25316,4,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.44965,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.09,56.75,-9,-9,4,2,3,0,0,8,4,1,742.33331,1057016,0,0,5402.0347 -11344,13940,25319,-9,25317,25316,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1070.4728,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,2,3,0,0,8,4,1,528,-202333.08,0,0,0 -11345,13941,25320,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-995.37866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8026717,3,23.690001,49.330002,-9,-9,4,1,1,0,1,5,1,0,280,-171695.56,0,0,798.65112 -11345,13942,25321,-9,25320,-9,2,1,0,21,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-999.39294,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,33,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.661894,3,22.360001,25.23,-9,-9,1,1,1,0,1,5,1,0,911,-103320.58,0,0,-212.75847 -11346,13943,25322,25323,-9,-9,1,1,1,37,1,0,0,0,1,-9,1,1,0,0,3,9.5151291,9.7949238,0,1,0,-9,6,0,6,88.720734,0,0,0,31,1,4,3,1,1,2019,2,2,15,3,55,44,15,1,0,3,0,33.710926,33.710926,0,0,0,0,0,0,0,0,0,0,0,3.0283988,0,0,0,39.880001,50.52,47,57,5,2,3,0,0,8,5,1,344,1361094.3,0,0,7330.0586 -11346,13943,25323,25322,-9,-9,2,1,0,31,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,-6,118.80127,0,0,1,37,1,3,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,39.880001,50.52,5,2,3,0,0,8,5,1,344,1361094.3,0,0,7330.0586 -11347,13944,25324,-9,25326,-9,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-976.27716,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,2,0,646,-4931.1563,0,0,1234.6901 -11347,13944,25325,-9,25326,-9,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-991.54578,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,7,2,0,646,-4931.1563,0,0,1234.6901 -11347,13944,25326,-9,-9,-9,1,1,0,41,3,0,3,0,2,-9,2,1,0,0,3,6.5505323,7.0302548,0,4,0,-9,0,1,0,-859.9292,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,11,15,36,15,1,1,-9,0,7.8243356,7.8243356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.870001,58.959999,-9,-9,4,1,1,0,1,7,2,0,646,-4931.1563,0,0,1234.6901 -11347,13944,25327,-9,25326,-9,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1008.8409,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,0,646,-4931.1563,0,0,1234.6901 -11347,13945,25328,-9,25326,-9,2,1,0,19,2,0,3,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1008.3259,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.860001,51.439999,-9,-9,2,1,1,1,1,7,1,0,1159,-57227.355,0,0,0 -11348,13946,25329,-9,-9,-9,1,1,0,45,3,0,3,0,1,-9,2,1,0,0,3,9.3731318,8.6957455,0,4,0,0,0,-9,0,-1077.574,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,63,58,15,1,0,-9,0,16.005175,16.005175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.369999,40.830002,-9,-9,3,3,4,0,0,8,4,1,435.33334,554156.13,0,0,4489.2158 -11348,13946,25330,-9,25329,-9,6,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1009.5781,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,4,1,435.33334,554156.13,0,0,4489.2158 -11348,13946,25331,-9,25329,-9,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.3091,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,4,1,435.33334,554156.13,0,0,4489.2158 -11348,13947,25332,-9,-9,25333,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-986.63538,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,2,1,560.5,-27914.973,0,0,1105.2871 -11348,13947,25333,-9,25329,-9,2,1,1,20,2,0,3,1,2,0,7,2,0,0,4,6.7337399,7.0096011,0,3,0,0,0,-9,0,-940.6134,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.290001,55.450001,-9,-9,3,3,4,0,0,8,2,1,560.5,-27914.973,0,0,1105.2871 -11349,13948,25334,25336,-9,-9,2,1,1,57,1,0,1,0,2,-9,1,1,0,0,5,6.6668949,7.0874014,5.4188304,2,0,-9,4,0,15,19.754004,0,0,0,42,2,2,1,-9,-9,2019,1,1,7,0,20,24,15,1,0,1,0,4.6971841,4.6971841,0,0,0,0,0,0,0,0,1,1,0,6.9102383,5.6085176,0,0,57.060001,57.759998,32.169998,54.650002,5,1,1,0,0,9,3,1,1455.6666,158285.09,0,0,2854.2817 -11349,13948,25335,-9,25336,25334,5,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.0361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,1455.6666,158285.09,0,0,2854.2817 -11349,13948,25336,25334,-9,-9,1,1,0,42,1,0,1,0,2,-9,1,1,0,0,2,8.0066023,8.1940584,0,2,0,-9,4,0,-15,30.386948,0,0,1,57,2,5,1,3,2,2019,1,2,17,5,30,0,15,1,1,1,0,12.51508,12.51508,0,0,0,0,0,0,0,7,1,1,0,0,0,10.067474,3,32.169998,54.650002,57.060001,57.759998,6,1,1,0,0,9,3,1,1455.6666,158285.09,0,0,2854.2817 -11349,13949,25337,-9,25336,25334,3,1,1,21,2,0,1,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1091.6044,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,9,1,1,282,20494.553,0,0,-79.829147 -11349,13950,25338,-9,25336,25334,4,1,1,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.3221,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,58.990002,-9,-9,6,1,1,0,0,9,1,1,1371,-92859.258,0,0,0 -11350,13951,25339,25340,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.1477857,6.8428836,1,0,-9,8,0,3,110.5791,0,0,0,67,1,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3059092,7.3031559,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,4,3,1,224.5,732226.63,0,0,2106.8196 -11350,13951,25340,25339,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.2169533,6.9986277,1,0,-9,8,0,-3,-58.23407,0,0,0,70,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.2143717,12.538458,3,57.16,56.150002,57.16,56.150002,7,1,1,0,0,4,3,1,224.5,732226.63,0,0,2106.8196 -11351,13952,25341,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1005.7846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.7583041,0,0,1,1,0,.40913615,0,0,0,61.689999,15.28,-9,-9,6,1,1,0,0,10,1,1,843,210643.66,0,0,-647.90045 -11352,13953,25342,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,0,4,0,4.5721946,4.7419696,3,0,0,0,-9,0,-945.50769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1762824,4.7569194,0,0,55,50.209999,-9,-9,6,1,1,0,0,9,2,1,3111,972322.94,0,0,-685.03619 -11352,13954,25343,-9,25342,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.6073589,8.583395,0,3,0,0,0,-9,0,-986.13171,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,16,6,38,38,15,1,1,-9,1,15.188931,15.188931,0,0,0,0,0,0,0,0,0,0,0,4.0174227,0,0,0,36.009998,56.189999,-9,-9,5,1,1,0,0,9,5,1,230,-9062.7842,0,0,1565.452 -11353,13955,25344,-9,25345,25348,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.63275,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,4,1,1,668,7581.1289,0,0,1557.4811 -11353,13955,25345,25348,-9,-9,2,1,0,31,1,0,3,0,1,-9,6,3,0,0,2,0,0,0,2,0,-9,2,0,1,0,0,0,1,30,2,4,3,2,2,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.117092,3,60.529999,48.349998,50,57,7,2,3,0,0,4,1,1,668,7581.1289,0,0,1557.4811 -11353,13955,25346,-9,25345,25348,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.5187,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,4,1,1,668,7581.1289,0,0,1557.4811 -11353,13955,25347,-9,25345,25348,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.4381,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,4,1,1,668,7581.1289,0,0,1557.4811 -11353,13955,25348,25345,-9,-9,1,1,1,30,1,0,3,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,2,0,-1,0,0,0,0,31,1,2,3,-9,-9,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,60.529999,48.349998,5,1,1,1,0,4,1,1,668,7581.1289,0,0,1557.4811 -11354,13956,25349,25350,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,5,7.7839613,8.3782244,7.5330091,1,0,-9,26,0,-6,207.00412,0,0,0,67,2,4,3,2,2,2019,2,2,11,2,15,20,15,1,0,3,0,14.184025,14.184025,0,0,0,0,0,0,0,2,1,1,0,1.5445164,7.4167323,0,3,55.240002,55.869999,54.200001,57.490002,6,1,1,0,0,7,4,1,369.5,1339775.3,0,0,3840.6157 -11354,13956,25350,25349,-9,-9,2,1,1,67,1,0,0,0,2,-9,8,3,1,1,4,0,4.9788532,4.7538023,1,0,-9,27,0,6,-57.335758,0,0,0,61,1,5,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2218475,4.9845304,0,0,54.200001,57.490002,55.240002,55.869999,6,1,1,0,0,7,4,1,369.5,1339775.3,0,0,3840.6157 -11355,13957,25351,25352,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,4.4551034,4.3059731,1,0,-9,33,0,13,-83.006912,0,0,0,58,2,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6252594,0,0,53.990002,48.040001,59.540001,44.150002,5,3,4,0,0,8,3,1,1153,1825657.3,0,0,1685.2485 -11355,13957,25352,25351,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.4823799,8.096014,0,1,0,-9,33,0,-13,-64.719475,0,0,0,71,1,3,3,2,1,2019,2,2,3,0,42,24,15,1,0,4,0,11.584297,11.584297,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.540001,44.150002,53.990002,48.040001,5,3,4,0,0,8,3,1,1153,1825657.3,0,0,1685.2485 -11355,13958,25353,-9,25352,25351,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.1170893,8.222415,0,3,0,0,0,-9,0,-1060.8342,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,48,16,15,1,0,-9,1,8.8200827,8.8200827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,51.639999,-9,-9,6,3,4,0,0,8,4,1,438,49939.172,0,0,1531.7395 -11356,13959,25354,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,3,0,5.2257376,5.4076915,3,0,0,0,-9,0,-989.18024,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7088307,5.7578015,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,8,2,1,196,-5416.6982,0,0,-820.25897 -11357,13960,25355,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,4,8.0803165,8.1360741,0,3,0,0,0,-9,0,-989.17322,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,45,43,15,1,1,-9,0,8.9595604,8.9595604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.330002,37.93,-9,-9,4,1,1,0,0,5,4,1,252,20051.402,0,0,1578.9122 -11358,13961,25356,25358,-9,-9,1,1,0,47,1,0,2,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,18,0,2,18.338427,0,0,0,45,1,4,1,3,3,2019,3,2,19,7,0,31,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.080002,57.810001,51.150002,53.52,5,1,1,1,0,10,4,1,644.75,634921.5,0,0,3761.2207 -11358,13961,25357,-9,25356,25358,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.9833,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.860001,50.57,-9,-9,6,1,1,0,0,10,4,1,644.75,634921.5,0,0,3761.2207 -11358,13961,25358,25356,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.0014706,9.3277531,0,2,0,-9,4,0,-2,-39.020512,0,0,0,47,1,3,3,2,3,2019,2,1,8,2,43,42,15,1,0,3,0,25.13582,25.13582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.150002,53.52,39.080002,57.810001,6,1,1,0,0,10,4,1,644.75,634921.5,0,0,3761.2207 -11358,13961,25359,-9,25356,25358,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1130.2052,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,644.75,634921.5,0,0,3761.2207 -11359,13962,25360,25361,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.4923248,8.1343822,0,1,0,1,1,-9,1,19.406988,0,1,1,26,1,5,1,3,2,2019,1,2,20,8,47,30,15,1,1,1,0,9.4749975,9.4749975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.560001,61.919998,62.389999,56.709999,5,2,3,0,0,2,4,1,469,-59429.543,0,0,2105.9075 -11359,13962,25361,25360,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,0,5,7.4146681,7.4641109,0,1,0,-9,1,-9,-1,37.606472,-9,1,0,27,1,5,1,-9,-9,2019,1,1,0,0,36,0,15,1,0,1,0,5.0976543,5.0976543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,33.560001,61.919998,7,2,3,0,0,2,4,1,469,-59429.543,0,0,2105.9075 -11360,13963,25362,-9,25365,25363,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.60065,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,13,5,0,301,107364.27,0,0,5284.1396 -11360,13963,25363,25365,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,0,4,7.5564647,7.3117166,0,2,0,-9,7,0,1,-48.065662,0,0,0,32,2,4,1,-9,-9,2019,1,2,0,0,36,84,15,1,0,1,0,4.8759742,4.8759742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,62.490002,55.09,7,2,3,0,0,13,5,0,301,107364.27,0,0,5284.1396 -11360,13963,25364,-9,25365,25363,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-864.49567,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,13,5,0,301,107364.27,0,0,5284.1396 -11360,13963,25365,25363,-9,-9,2,1,0,32,1,1,2,0,2,-9,2,1,0,0,4,9.1904125,9.1323185,0,2,0,-9,8,0,-1,81.863113,0,0,1,33,1,4,1,2,3,2019,1,1,0,0,60,48,15,1,0,1,0,22.248098,22.248098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,62.490002,55.09,1,2,3,0,0,13,5,0,301,107364.27,0,0,5284.1396 -11361,13964,25366,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,6.9713073,7.2511935,0,3,0,0,0,-9,0,-1013.2399,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,24,15,1,0,-9,0,6.366467,6.366467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.400002,36.459999,-9,-9,7,1,1,0,0,13,2,1,590,130837.99,0,0,870.25757 -11361,13965,25367,-9,25366,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,8.2487755,8.3893948,0,3,0,0,0,-9,0,-962.56958,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,49,4,15,1,0,-9,1,9.5311604,9.5311604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,4,1,1,0,0,13,4,1,1111,170600.33,0,0,1226.9965 -11362,13966,25368,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-921.44128,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.5540586,3,54.689999,57.470001,-9,-9,6,1,1,0,0,12,1,0,744,297188.31,0,0,1487.208 -11363,13967,25369,25370,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,0,2,7.8674512,7.9633627,0,1,0,-9,1,-9,-6,27.270866,-9,0,0,48,2,3,1,-9,-9,2019,1,2,12,0,44,0,15,1,0,1,0,5.9632888,5.9632888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.889999,53.59,54.73,30.139999,4,1,1,0,0,9,4,1,774,55457.477,0,0,1412.6567 -11363,13967,25370,25369,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.5762696,7.6411099,0,1,0,-9,1,-9,6,39.762287,-9,0,0,42,2,2,1,-9,-9,2019,1,1,13,3,36,0,15,1,0,1,0,6.6828208,6.6828208,0,0,0,0,0,0,0,0,0,0,0,.72842717,0,0,0,54.73,30.139999,40.889999,53.59,6,1,1,0,0,9,4,1,774,55457.477,0,0,1412.6567 -11364,13968,25371,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,6.1447477,6.2778001,3,0,0,0,-9,0,-957.41718,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,42.934292,0,0,0,0,0,0,1,1,0,7.7198558,6.2949424,0,0,53,45,-9,-9,6,1,1,0,0,13,2,1,155,220317.67,0,0,1459.9922 -11365,13969,25372,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,6.7828813,7.2165427,3,0,0,0,-9,0,-955.34509,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.635752,6.9585223,0,3,41.060001,48.630001,-9,-9,6,1,1,0,0,7,2,1,1540,1008466.1,0,0,2550.1292 -11366,13970,25373,25374,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,7.0547137,7.6438088,1,0,-9,20,0,1,-80.761566,0,0,0,62,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7379889,7.5725517,0,0,55.360001,51.57,49.439999,54.259998,5,1,1,0,0,1,2,1,719.5,977446.19,0,0,194.62897 -11366,13970,25374,25373,-9,-9,2,1,0,62,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,20,0,-1,154.73271,0,0,0,63,1,3,3,3,2,2019,4,1,7,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.439999,54.259998,55.360001,51.57,6,1,1,1,0,1,2,1,719.5,977446.19,0,0,194.62897 -11367,13971,25375,-9,-9,-9,1,1,0,42,3,0,0,0,1,-9,2,1,0,0,3,8.2087936,8.2735119,0,3,0,0,0,-9,0,-1088.2905,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,52,52,15,1,0,-9,0,9.7201166,9.7201166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,7,4,0,867,481525.56,0,0,965.4184 -11368,13972,25376,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,1,1,0,0,3,8.4330902,8.6616554,0,3,0,0,0,-9,0,-999.01398,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,4,5,15,1,1,-9,0,140.15501,140.15501,0,0,0,0,0,0,0,0,0,0,0,10.335309,0,0,0,51.900002,43.68,-9,-9,6,1,1,0,0,13,5,1,386,305433.59,0,0,9028.3652 -11369,13973,25377,25378,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,1,3,5.7900863,5.7781701,0,2,0,-9,8,0,1,5.4390092,0,0,1,40,2,2,1,3,3,2019,1,1,13,1,5,0,15,1,0,1,0,7.8578568,7.8578568,0,0,0,0,0,0,0,120,1,1,0,0,0,121.67155,3,28.57,61.360001,39.610001,47.009998,5,1,1,0,0,11,4,0,660,69484.211,0,0,3430.8845 -11369,13973,25378,25377,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,0,2,8.7749338,8.5840454,0,2,0,-9,8,0,-1,28.893654,0,0,0,41,2,3,1,3,2,2019,1,2,12,1,43,40,15,1,0,1,0,11.867002,11.867002,0,0,0,0,0,0,0,7,1,1,0,0,0,5.1667347,3,39.610001,47.009998,28.57,61.360001,5,1,1,0,0,11,4,0,660,69484.211,0,0,3430.8845 -11369,13973,25379,-9,25377,25378,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.05304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,4,0,660,69484.211,0,0,3430.8845 -11369,13974,25380,-9,25377,25378,3,1,1,20,2,0,2,0,2,0,7,2,0,0,4,5.7923489,5.8867607,0,3,0,0,0,-9,0,-998.84363,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,.51948911,0,11.478911,3,48.869999,58.549999,-9,-9,5,1,1,0,1,11,2,0,481,2228.2063,0,0,-200.19901 -11370,13975,25381,25382,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,4,0,5.9294758,5.5890617,1,0,-9,6,0,4,109.61963,0,0,0,82,3,2,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,1,0,0,26.117966,0,0,0,0,1,1,0,0,5.5750465,0,0,47.389999,38.990002,42.599998,35.040001,1,1,1,0,0,8,2,1,342,650091.25,0,0,1017.1411 -11370,13975,25382,25381,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,2,0,6.7915969,6.6485653,1,0,-9,6,0,-4,-91.514847,0,0,0,86,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,26.322182,0,0,0,0,1,1,0,0,6.6515217,0,0,42.599998,35.040001,47.389999,38.990002,5,1,1,0,0,8,2,1,342,650091.25,0,0,1017.1411 -11370,13976,25383,-9,25382,25381,3,1,0,50,2,0,0,0,2,-9,1,1,0,0,3,8.2429724,8.5373154,0,3,0,0,0,-9,0,-1117.3409,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,50,15,1,0,-9,1,18.019083,18.019083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,-9,-9,6,1,1,0,0,8,5,1,312,1310135.8,0,0,1674.2711 -11371,13977,25384,25385,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.4459753,8.6554022,0,1,0,-9,17,0,1,-56.204048,0,0,0,50,2,4,3,3,2,2019,2,2,6,0,0,26,15,1,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.4170322,0,4.4045048,3,55.580002,52.990002,51.529999,51.799999,5,1,1,0,0,9,4,1,821.5,343396.19,0,0,4373.0205 -11371,13977,25385,25384,-9,-9,2,1,1,50,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,17,0,-1,-43.569836,0,0,0,51,1,4,1,2,2,2019,3,1,8,0,0,21,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1151569,0,0,0,51.529999,51.799999,55.580002,52.990002,6,1,1,0,0,9,4,1,821.5,343396.19,0,0,4373.0205 -11372,13978,25386,-9,25387,25391,4,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.79181,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,1,1,890.33331,328461.28,0,0,3647.8276 -11372,13978,25387,25391,-9,-9,1,1,0,37,1,1,4,0,1,-9,6,3,0,1,2,0,0,0,2,0,-9,6,0,-3,0,0,0,1,40,1,1,3,2,1,2019,4,3,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.284126,1,47.119999,46.150002,40.330002,18.290001,6,1,1,0,0,2,1,1,890.33331,328461.28,0,0,3647.8276 -11372,13978,25388,-9,25387,25391,6,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.6013,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,1,1,890.33331,328461.28,0,0,3647.8276 -11372,13978,25389,-9,25387,25391,2,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.34375,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,1,890.33331,328461.28,0,0,3647.8276 -11372,13978,25390,-9,25387,25391,5,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.3774,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,1,1,890.33331,328461.28,0,0,3647.8276 -11372,13978,25391,25387,-9,-9,3,1,1,40,1,1,4,0,1,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,3,0,0,0,0,37,1,2,3,-9,-9,2019,4,1,25,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.330002,18.290001,47.119999,46.150002,3,1,1,0,0,2,1,1,890.33331,328461.28,0,0,3647.8276 -11373,13979,25392,25393,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,9.5275679,9.5270281,0,2,0,-9,29,0,2,40.033939,0,0,0,50,2,4,3,2,2,2019,2,1,13,1,45,41,15,1,0,3,0,25.899857,25.899857,0,0,0,0,0,0,0,74.5,1,1,0,0,0,67.273216,3,49.060001,58.639999,54.200001,57.490002,6,1,1,0,0,12,5,1,403.5,1599895.8,0,0,3667.1421 -11373,13979,25393,25392,-9,-9,1,1,0,50,1,0,1,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,29,0,-2,16.450895,0,0,0,52,1,4,1,1,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.74796,3,54.200001,57.490002,49.060001,58.639999,2,1,1,0,0,12,5,1,403.5,1599895.8,0,0,3667.1421 -11373,13980,25394,-9,25393,25392,4,1,1,22,2,0,1,0,2,1,2,1,0,0,4,7.6050172,7.3605075,0,3,0,0,0,-9,0,-985.02399,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,35,0,15,1,0,-9,1,5.8064137,5.8064137,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,35.91,63.189999,-9,-9,5,1,1,0,0,12,3,1,260,8044.8818,0,0,473.95041 -11374,13981,25395,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,6.9057326,6.6790361,3,0,0,0,-9,0,-993.49695,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8549623,6.4371858,0,0,59.139999,52.5,-9,-9,6,1,1,0,0,7,2,1,2027,973965.75,0,0,4034.3171 -11375,13982,25396,-9,-9,-9,1,1,0,35,2,0,1,0,2,-9,2,1,0,0,4,6.4446826,6.5533085,0,4,0,0,0,-9,0,-1003.1739,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,12,12,15,1,0,-9,0,5.8437514,5.8437514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,2,0,1577.5,133997.08,0,0,939.67108 -11375,13982,25397,-9,25396,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-990.34393,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,0,1577.5,133997.08,0,0,939.67108 -11375,13983,25398,-9,25396,-9,2,1,1,19,2,0,1,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1087.6017,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,1,1,1,1,13,1,0,2047,-117351.49,0,0,0 -11376,13984,25399,25400,-9,-9,1,1,0,64,1,0,0,0,3,-9,2,1,0,0,4,7.5817895,7.7201223,6.592061,1,0,-9,37,0,3,-160.6692,0,0,0,61,3,4,1,3,2,2019,1,2,8,0,16,24,15,1,0,1,0,14.607011,14.607011,0,0,0,0,0,0,0,2,0,0,0,0,6.1722083,0,3,57.16,56.150002,50.650002,60.470001,7,1,1,0,0,2,4,1,1083,519662.19,0,0,2558.627 -11376,13984,25400,25399,-9,-9,2,1,1,61,1,0,0,0,3,-9,1,1,0,0,4,8.110199,8.0920029,5.8700643,1,0,-9,37,0,-3,-136.94037,0,0,0,64,3,4,1,3,2,2019,1,1,8,0,35,35,15,1,0,1,0,9.4645605,9.4645605,0,0,0,0,0,0,0,0,0,0,0,6.3150434,5.88098,0,0,50.650002,60.470001,57.16,56.150002,7,1,1,0,0,2,4,1,1083,519662.19,0,0,2558.627 -11377,13985,25401,25402,-9,-9,2,1,1,52,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,24,0,5,0,0,0,0,47,2,2,3,3,2,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.91,35.389999,30.219999,47.34,3,1,1,0,1,2,1,0,1486.6666,-23486.742,0,0,1529.2809 -11377,13985,25402,25401,-9,-9,1,1,0,47,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,24,0,-5,0,0,0,0,52,2,1,3,2,2,2019,4,2,18,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.219999,47.34,20.91,35.389999,3,1,1,0,0,2,1,0,1486.6666,-23486.742,0,0,1529.2809 -11377,13985,25403,-9,25402,25401,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.05902,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.26,65.199997,-9,-9,4,1,1,0,1,2,1,0,1486.6666,-23486.742,0,0,1529.2809 -11378,13986,25404,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-960.92566,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.119999,51.57,-9,-9,7,1,1,0,0,13,1,0,378,365174.38,0,0,1245.9509 -11379,13987,25405,25406,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.5438566,7.4792786,1,0,-9,8,0,-1,-78.916718,0,0,0,70,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9642549,7.3931656,0,0,49.349998,59.639999,57.16,56.150002,6,1,1,0,0,2,3,1,1615.5,1045448.6,0,0,1998.6992 -11379,13987,25406,25405,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.803443,6.8262348,1,0,-9,8,0,1,150.86531,0,0,0,69,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3682094,6.6923599,0,0,57.16,56.150002,49.349998,59.639999,6,1,1,0,0,2,3,1,1615.5,1045448.6,0,0,1998.6992 -11380,13988,25407,25408,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.6357837,7.7604389,1,0,-9,55,0,-2,-56.92065,0,0,0,74,2,4,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5868592,0,0,43.330002,38.610001,52.23,55.599998,6,1,1,0,0,6,3,1,357.5,631032.63,0,0,2376.2471 -11380,13988,25408,25407,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,55,0,2,5.5050249,0,0,0,72,2,2,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.599998,43.330002,38.610001,6,1,1,0,0,6,3,1,357.5,631032.63,0,0,2376.2471 -11381,13989,25409,25410,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,9.7165117,9.6415777,0,1,0,-9,30,0,0,11.896882,0,0,0,55,2,2,3,3,3,2019,2,2,18,7,43,85,15,1,1,4,0,37.915291,37.915291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.16,49.23,43.849998,34.279999,6,1,1,0,0,6,5,1,606,503540.56,0,0,5928.5957 -11381,13989,25410,25409,-9,-9,2,1,0,55,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,30,0,0,-27.881119,0,0,0,55,1,3,1,3,2,2019,3,1,12,0,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.63741571,0,0,0,43.849998,34.279999,34.16,49.23,6,1,1,0,0,6,5,1,606,503540.56,0,0,5928.5957 -11381,13990,25411,-9,25410,25409,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.6488667,8.6248121,0,3,0,0,0,-9,0,-977.21637,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,20,48,15,1,0,-9,1,29.436167,29.436167,0,0,0,0,0,0,0,27.5,0,0,0,0,0,21.591829,3,43.439999,58.700001,-9,-9,6,1,1,0,0,6,5,1,1130,-8348.7334,0,0,2456.0769 -11381,13991,25412,-9,25410,25409,4,1,1,23,2,0,0,0,1,1,2,1,0,0,5,7.74651,7.7861295,0,3,0,0,0,-9,0,-1007.975,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,40,0,15,1,0,-9,1,7.0026288,7.0026288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.389999,59.18,-9,-9,6,1,1,0,0,6,3,1,124,2896.7305,0,0,1922.1188 -11381,13992,25413,-9,25410,25409,5,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,8.2359972,8.0563612,0,3,0,0,0,-9,0,-946.85345,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,35,0,15,1,0,-9,1,9.1085739,9.1085739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,6,4,1,1106,-1584.3195,0,0,1116.3083 -11381,13993,25414,-9,25410,25409,6,1,1,19,2,0,0,1,2,0,7,2,0,0,4,6.3089194,6.5552278,0,3,0,0,0,-9,0,-994.13672,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,6,2,1,691,53207.508,0,0,1247.7054 -11382,13994,25415,25417,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,8.8348923,9.0176277,0,2,0,-9,17,0,-4,37.719952,0,0,1,48,1,5,1,2,2,2019,1,2,12,0,36,30,15,1,0,1,0,20.999216,20.999216,0,0,0,0,0,0,0,0,0,0,0,7.6525435,0,0,0,40.470001,55.650002,57.060001,57.759998,2,1,1,0,0,6,5,1,815.5,750264.94,0,0,9517.4248 -11382,13994,25416,-9,25415,25417,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.603,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,815.5,750264.94,0,0,9517.4248 -11382,13994,25417,25415,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,5,9.6964693,9.8228436,0,2,0,-9,15,0,4,-80.916954,0,0,0,44,2,4,1,3,3,2019,1,1,5,0,33,28,15,1,0,1,0,62.977974,62.977974,0,0,0,0,0,0,0,0,0,0,0,2.9920974,0,0,0,57.060001,57.759998,40.470001,55.650002,6,1,1,0,0,6,5,1,815.5,750264.94,0,0,9517.4248 -11382,13994,25418,-9,25415,25417,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-955.85077,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,5,1,815.5,750264.94,0,0,9517.4248 -11383,13995,25419,-9,25421,25423,4,1,0,17,2,0,3,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-983.08746,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,3,0,0,15,2,0,-9,0,0,0,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,7,5,1,535.59998,222274.45,0,0,10775.365 -11383,13995,25420,-9,25421,25423,5,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-960.05176,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,5,1,535.59998,222274.45,0,0,10775.365 -11383,13995,25421,25423,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,0,5,7.3458686,7.2636204,0,2,0,-9,8,0,3,-.92671686,0,0,0,45,2,4,1,2,1,2019,1,1,22,10,30,15,15,1,1,1,0,4.8294039,4.8294039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.18,63.009998,52.310001,58.290001,4,1,1,0,0,7,5,1,535.59998,222274.45,0,0,10775.365 -11383,13995,25422,-9,25421,25423,3,1,0,17,2,0,3,1,2,0,7,2,0,0,5,5.5071335,5.4877696,0,2,0,0,0,-9,0,-975.00421,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,7,5,1,535.59998,222274.45,0,0,10775.365 -11383,13995,25423,25421,-9,-9,1,1,1,45,1,0,3,0,2,-9,2,1,0,0,4,9.7003508,9.7046041,0,2,0,-9,8,0,-3,73.367065,0,0,0,48,1,5,1,3,3,2019,1,2,8,0,40,42,15,1,0,1,0,42.850349,42.850349,0,0,0,0,0,0,0,0,0,0,0,7.6381359,0,0,0,52.310001,58.290001,34.18,63.009998,6,1,1,0,0,7,5,1,535.59998,222274.45,0,0,10775.365 -11384,13996,25424,25425,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,0,5,0,5.3677254,5.1364522,1,0,-9,39,0,2,79.133171,0,0,0,57,2,3,1,2,2,2019,3,1,6,0,0,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.1643705,5.060708,0,0,61.009998,53.18,50.029999,52.619999,7,1,1,0,0,9,3,1,1032.5,517022.09,0,0,4103.0435 -11384,13996,25425,25424,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.4858332,7.9934301,5.93399,1,0,-9,36,0,-2,-115.63604,0,0,0,59,2,5,3,2,2,2019,2,2,11,2,18,18,15,1,0,4,0,11.391587,11.391587,0,0,0,0,0,0,0,0,0,0,0,6.2269831,0,0,0,50.029999,52.619999,61.009998,53.18,6,1,1,0,0,9,3,1,1032.5,517022.09,0,0,4103.0435 -11385,13997,25426,-9,25427,25428,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,4.8579321,4.6684513,0,2,0,0,0,-9,0,-1040.3265,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6011462,0,0,0,32.849998,66.150002,-9,-9,3,1,1,0,0,4,4,1,660,580181.38,0,0,2214.5066 -11385,13997,25427,25428,-9,-9,1,1,0,60,1,0,1,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,19,0,10,-56.113014,0,0,0,50,1,2,1,2,2,2019,1,2,13,2,0,54,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.4276161,0,11.177521,2,52.400002,55.580002,41.880001,33.630001,7,1,1,0,0,4,4,1,660,580181.38,0,0,2214.5066 -11385,13997,25428,25427,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,2,9.1182194,9.0632343,0,2,0,-9,18,0,-10,46.58754,0,0,0,60,1,4,1,1,1,2019,1,1,20,9,38,38,15,1,1,1,0,23.097887,23.097887,0,0,0,0,0,0,0,0,1,1,0,7.0454001,0,0,0,41.880001,33.630001,52.400002,55.580002,6,1,1,0,0,4,4,1,660,580181.38,0,0,2214.5066 -11386,13998,25429,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1036.1414,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,6,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.889999,56.259998,-9,-9,5,2,3,0,0,8,1,0,671,12416.236,0,0,261.33905 -11387,13999,25430,-9,25433,-9,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1155.8807,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,1,0,1112.75,-34602.578,0,0,1442.9081 -11387,13999,25431,-9,25433,-9,2,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1018.0313,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,1,1,0,1112.75,-34602.578,0,0,1442.9081 -11387,13999,25432,-9,25433,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1119.7092,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,1,0,1112.75,-34602.578,0,0,1442.9081 -11387,13999,25433,-9,-9,-9,1,1,0,36,3,0,3,0,2,-9,3,3,0,0,4,0,0,0,4,0,-9,0,1,0,-1145.2783,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,-9,-9,7,1,1,1,0,1,1,0,1112.75,-34602.578,0,0,1442.9081 -11388,14000,25434,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,3,8.0185194,8.1633511,0,1,0,-9,4,0,5,-48.631432,0,0,1,-9,-9,-9,-9,2,2,2019,2,2,19,9,42,43,15,1,1,-9,0,8.5881433,8.5881433,0,0,0,0,0,0,0,0,1,1,0,2.6617844,0,0,0,28.25,59.939999,47.459999,39,5,1,1,0,0,4,3,0,373,59102.547,0,0,1705.4806 -11388,14001,25435,-9,-9,-9,2,1,0,27,2,0,0,0,1,-9,7,2,0,0,4,0,6.7485404,6.6957388,1,0,-9,4,0,-5,49.697906,1,1,1,-9,-9,-9,-9,-9,-9,2019,3,1,11,0,0,37,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6359239,0,0,0,47.459999,39,28.25,59.939999,5,1,1,0,0,4,3,0,454,-135047.3,0,0,306.9772 -11389,14002,25436,25437,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,1,0,5.8001952,6.1737313,1,0,-9,8,0,-1,-9.3330317,-9,0,0,81,3,2,3,-9,-9,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.8683643,0,0,0,44.5,24.450001,55.209999,11.56,4,1,1,0,0,7,2,1,1812,378354.75,0,0,2324.8403 -11389,14002,25437,25436,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,2,0,5.5307822,5.5043097,1,0,-9,8,0,1,-67.774063,0,0,0,80,3,1,3,-9,-9,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,12.045515,0,0,0,0,0,1,1,0,0,5.5804019,0,0,55.209999,11.56,44.5,24.450001,6,1,1,0,0,7,2,1,1812,378354.75,0,0,2324.8403 -11390,14003,25438,25441,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,9.510603,9.7277193,0,2,0,-9,14,0,-1,4.0928922,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,1,45,60,15,1,0,1,0,38.815601,38.815601,0,0,0,0,0,0,0,0,0,0,0,5.5506015,0,0,0,53,55,51,54,6,1,1,0,0,8,5,1,1400.5,914058.69,0,0,8830.8857 -11390,14003,25439,-9,25441,25438,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1061.7722,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,8,5,1,1400.5,914058.69,0,0,8830.8857 -11390,14003,25440,-9,25441,25438,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.1825,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,1400.5,914058.69,0,0,8830.8857 -11390,14003,25441,25438,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,9.3835564,9.181098,0,2,0,-9,14,0,1,28.37405,0,0,0,46,1,4,1,2,2,2019,1,2,10,1,30,50,15,1,0,1,0,38.014969,38.014969,0,0,0,0,0,0,0,0,0,0,0,8.6633701,0,0,0,51,54,53,55,6,1,1,0,0,8,5,1,1400.5,914058.69,0,0,8830.8857 -11391,14004,25442,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1021.7737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,13,1,1,1836,-144532.53,0,0,1162.1459 -11391,14005,25443,-9,25442,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,0,4,7.7618842,7.7869015,0,3,0,0,0,-9,0,-951.64679,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,0,15,1,0,-9,1,6.8974547,6.8974547,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.5737247,3,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,219,183061.75,0,0,1927.2314 -11392,14006,25444,25445,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,2,8.2305069,8.4022617,0,1,0,-9,8,0,1,-7.7864199,0,0,0,60,2,4,1,3,3,2019,1,2,23,11,35,35,15,1,1,1,0,13.216757,13.216757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.1,40.060001,48.529999,58.91,3,1,1,0,0,11,4,1,2110.5,324025.06,0,0,2245.3752 -11392,14006,25445,25444,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.5625267,7.6331592,0,1,0,-9,8,0,-1,-67.773399,0,0,0,61,3,2,1,3,3,2019,1,1,20,8,35,21,15,1,1,1,0,8.0854654,8.0854654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,31.1,40.060001,3,1,1,0,0,11,4,1,2110.5,324025.06,0,0,2245.3752 -11393,14007,25446,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,0,3,7.8616633,7.784256,6.1196117,3,0,0,0,-9,0,-973.22223,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,9,24,23,15,1,1,-9,0,10.088059,10.088059,0,0,0,0,0,0,0,0,1,1,0,.66961658,5.6241822,0,0,42.959999,48.950001,-9,-9,3,1,1,0,0,2,3,1,584,444653.97,0,0,1541.717 -11394,14008,25447,25448,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,8.2146769,8.4102993,1,0,-9,45,0,-1,-34.70063,0,0,0,67,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,31.837227,0,0,0,0,0,1,1,0,6.5926428,8.3502235,0,0,61.849998,44.549999,52.880001,56.68,6,1,1,0,0,8,5,1,955,3179912.8,0,0,6869.7056 -11394,14008,25448,25447,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.3398037,8.7859821,1,0,-9,45,0,1,-34.912422,0,0,0,66,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,7.0840812,0,0,0,0,0,1,1,0,7.0509081,8.5666895,0,0,52.880001,56.68,61.849998,44.549999,7,1,1,0,0,8,5,1,955,3179912.8,0,0,6869.7056 -11395,14009,25449,25452,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,3,8.3823366,8.8700256,0,2,0,-9,7,0,9,104.70034,0,0,1,30,2,2,1,2,3,2019,1,2,7,0,31,40,15,1,0,1,0,18.542734,18.542734,0,0,0,0,0,0,0,0,1,1,0,2.9548666,0,0,0,57.330002,53.459999,46.810001,50.900002,6,1,1,0,0,11,5,1,1054.75,57984.324,0,0,4288.9185 -11395,14009,25450,-9,25449,25452,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.64661,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1054.75,57984.324,0,0,4288.9185 -11395,14009,25451,-9,25449,25452,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1119.7284,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1054.75,57984.324,0,0,4288.9185 -11395,14009,25452,25449,-9,-9,2,1,1,30,1,0,2,0,2,-9,2,1,0,0,2,8.8839331,9.1387281,0,2,0,-9,7,0,0,-28.493021,0,0,0,39,2,3,1,-9,-9,2019,1,1,10,0,48,40,15,1,0,1,0,15.863066,15.863066,0,0,0,0,0,0,0,2,1,1,0,0,0,12.784482,3,46.810001,50.900002,57.330002,53.459999,6,1,1,0,0,11,5,1,1054.75,57984.324,0,0,4288.9185 -11396,14010,25453,25454,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,7.2670698,7.7263346,0,1,0,-9,38,0,0,-75.114449,0,0,0,61,3,2,3,2,3,2019,2,2,11,0,30,31,15,1,0,4,0,5.2315898,5.2315898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.619999,49.099998,53.380001,41.98,4,1,1,0,1,11,3,1,1125.5,223415.47,0,0,1580.8177 -11396,14010,25454,25453,-9,-9,2,1,1,61,1,0,0,0,3,-9,4,3,0,0,2,0,6.1331587,5.9631777,1,0,-9,41,0,0,11.740818,0,0,0,61,2,2,1,3,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2228408,0,0,53.380001,41.98,43.619999,49.099998,5,1,1,0,0,11,3,1,1125.5,223415.47,0,0,1580.8177 -11397,14011,25455,-9,-9,-9,1,1,0,47,3,0,0,0,1,-9,2,1,0,0,3,7.8213449,8.1644812,0,3,0,0,0,-9,0,-928.43982,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,36,36,15,1,0,-9,0,10.546481,10.546481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.279999,45.639999,-9,-9,6,1,1,0,0,13,4,1,513,-282038.56,0,0,220.06401 -11397,14012,25456,-9,25455,-9,2,1,1,20,2,0,0,0,2,-9,9,3,0,0,4,0,0,0,3,0,0,0,-9,0,-988.03827,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,1,1,645,130281.46,0,0,-92.017494 -11398,14013,25457,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,3,8.7583828,8.7226057,0,1,0,-9,6,0,-7,117.55802,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,22,9,43,51,15,1,1,-9,0,19.632473,19.632473,0,0,0,0,0,0,0,0,0,0,0,6.3620658,0,0,0,31.35,59.919998,49.529999,23.66,4,1,1,0,0,12,5,1,311,12921.315,0,0,3301.3071 -11398,14014,25458,-9,-9,-9,2,1,1,41,2,0,0,0,1,-9,2,1,0,0,1,9.107069,9.4361134,0,1,0,-9,6,0,7,-1.1884879,0,0,0,-9,-9,-9,-9,1,1,2019,1,1,14,4,52,58,15,1,1,-9,0,20.933786,20.933786,0,0,0,0,0,0,0,0,0,0,0,7.0192857,0,0,0,49.529999,23.66,31.35,59.919998,4,1,1,0,0,12,5,1,174,251089.52,0,0,3254.4348 -11399,14015,25459,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,3,7.9880023,7.9914947,0,3,0,0,0,-9,0,-967.26172,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,42,15,1,0,-9,0,11.591509,11.591509,0,0,0,0,0,0,0,0,1,1,0,.81073648,0,0,0,52.57,52.889999,-9,-9,6,1,1,0,0,12,4,0,604,-93649.234,0,0,2332.5889 -11400,14016,25460,25462,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.8705726,7.9274426,0,2,0,-9,24,0,-1,-62.445068,0,0,0,47,1,2,1,2,2,2019,1,2,10,0,30,30,15,1,0,1,0,9.4459572,9.4459572,0,0,0,0,0,0,0,0,1,1,0,2.4652026,0,0,0,53.060001,45.59,30.42,36.369999,6,1,1,0,0,2,4,1,155,313829.34,0,0,3991.136 -11400,14016,25461,-9,25460,25462,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1024.0616,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,2,4,1,155,313829.34,0,0,3991.136 -11400,14016,25462,25460,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,2,8.6609793,8.7895355,0,2,0,-9,25,0,1,43.87624,0,0,0,46,2,4,1,2,-9,2019,1,1,14,3,45,50,15,1,0,1,0,16.544739,16.544739,0,0,0,0,0,0,0,0,1,1,0,3.7383299,0,0,0,30.42,36.369999,53.060001,45.59,2,1,1,0,0,2,4,1,155,313829.34,0,0,3991.136 -11401,14017,25463,-9,25465,25466,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.1068,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6833034,0,0,0,30.709999,65.699997,-9,-9,4,1,1,0,0,11,4,1,302.25,1485278.3,0,0,3376.7073 -11401,14017,25464,-9,25465,25466,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-928.2323,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,11,4,1,302.25,1485278.3,0,0,3376.7073 -11401,14017,25465,25466,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,5,7.8879805,7.6690092,0,2,0,-9,9,0,-1,132.64667,0,0,0,51,1,4,1,2,2,2019,1,1,12,0,25,24,15,1,0,1,0,12.506309,12.506309,0,0,0,0,0,0,0,0,1,1,0,6.5940256,0,0,0,54.099998,59.110001,54.200001,57.490002,6,1,1,0,0,11,4,1,302.25,1485278.3,0,0,3376.7073 -11401,14017,25466,25465,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,8.5354328,8.7450809,0,2,0,-9,9,0,1,111.61427,0,0,0,50,1,5,1,1,2,2019,1,2,10,0,37,37,15,1,0,1,0,17.629074,17.629074,0,0,0,0,0,0,0,0,1,1,0,1.1658591,0,0,0,54.200001,57.490002,54.099998,59.110001,6,1,1,0,0,11,4,1,302.25,1485278.3,0,0,3376.7073 -11402,14018,25467,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-921.31012,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,11.83,40.91,-9,-9,1,1,1,0,1,9,1,0,1978,65439.293,0,0,1183.0062 -11402,14019,25468,-9,25467,-9,2,1,0,20,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1076.7913,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,39,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,15.333674,3,32.32,54.650002,-9,-9,3,4,2,1,1,9,1,0,1509,-73960.719,0,0,204.02791 -11402,14020,25469,-9,-9,-9,3,1,1,48,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-935.37048,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,41.259998,52.779999,-9,-9,4,3,4,1,1,9,1,0,221,-148962,0,0,1564.6667 -11403,14021,25470,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,0,5,0,7.3281703,7.5047855,3,0,0,0,-9,0,-979.58862,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2382498,7.2305717,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,5,3,1,926,776665.69,0,0,1568.5675 -11404,14022,25471,-9,25472,25474,4,1,1,23,2,0,1,0,2,-9,11,3,0,0,5,8.0314713,7.9173899,0,4,0,0,0,-9,0,-1014.7792,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,37,39,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.419998,60.529999,-9,-9,6,1,1,0,0,2,3,1,922,95897.344,0,0,2154.5708 -11404,14023,25472,25474,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.0133657,7.9967008,0,2,0,-9,8,0,10,62.835091,0,0,0,37,2,3,1,-9,-9,2019,1,1,12,0,44,25,15,1,0,1,0,6.3763695,6.3763695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.080002,57.810001,47.220001,53.970001,6,1,1,0,0,2,4,1,1910,299016.81,0,0,3243.7815 -11404,14023,25473,-9,25472,25474,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1082.1991,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,2,4,1,1910,299016.81,0,0,3243.7815 -11404,14023,25474,25472,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,0,3,8.3418941,8.0144606,0,2,0,-9,8,0,-10,36.820881,0,0,0,47,2,3,1,2,-9,2019,1,2,12,0,45,45,15,1,0,1,0,9.8425713,9.8425713,0,0,0,0,0,0,0,2,1,1,0,0,0,5.0901484,3,47.220001,53.970001,39.080002,57.810001,3,1,1,0,0,2,4,1,1910,299016.81,0,0,3243.7815 -11405,14024,25475,25477,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,0,3,9.0261164,9.0558414,0,2,0,-9,4,0,2,13.523327,0,0,0,32,2,4,1,2,2,2019,1,2,5,0,44,41,15,1,0,1,0,21.974352,21.974352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,6,5,1,881,195437.22,0,0,4003.585 -11405,14024,25476,-9,25477,25475,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.39355,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,5,1,881,195437.22,0,0,4003.585 -11405,14024,25477,25475,-9,-9,2,1,0,32,1,1,1,0,2,-9,2,1,0,0,4,8.0752192,8.0145054,0,2,0,-9,4,0,-2,-1.4306509,0,0,1,34,1,3,1,-9,-9,2019,1,1,8,0,23,23,15,1,0,1,0,16.489513,16.489513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.330002,53.459999,6,1,1,0,0,6,5,1,881,195437.22,0,0,4003.585 -11406,14025,25478,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-904.71149,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.169998,15.39,-9,-9,2,1,1,0,0,11,1,0,2808,-70154.422,0,0,252.33852 -11407,14026,25479,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,0,4,0,5.942852,5.9710951,3,0,0,0,-9,0,-920.44379,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1789055,0,0,50.450001,46.950001,-9,-9,2,1,1,0,0,12,2,0,354,111468.77,0,0,1350.8795 -11408,14027,25480,25481,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,1,4,0,5.8863358,6.2293582,1,0,-9,1,-9,0,65.009125,-9,0,0,67,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2005529,6.2823892,2.2675662,3,57.16,56.150002,63.060001,29.540001,6,1,1,0,0,12,2,1,220.5,475537.13,0,0,2267.5012 -11408,14027,25481,25480,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,1,2,0,5.0868478,5.5205493,1,0,-9,1,-9,0,19.912323,-9,0,0,67,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.1875677,5.0998073,5.2973809,3,63.060001,29.540001,57.16,56.150002,5,1,1,0,0,12,2,1,220.5,475537.13,0,0,2267.5012 -11409,14028,25482,25483,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,0,3,7.9156184,7.9031229,0,1,0,-9,9,0,0,-117.30138,0,0,0,38,2,4,1,-9,-9,2019,1,1,15,3,38,38,15,1,0,1,0,8.6662464,8.6662464,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.4451838,3,51.41,56.150002,46.400002,57.349998,6,1,1,0,0,2,4,0,891.5,43779.18,0,0,2544.9194 -11409,14028,25483,25482,-9,-9,1,1,0,38,1,0,0,0,2,-9,2,1,0,0,4,7.9592013,8.0409966,0,1,0,-9,9,0,0,-63.044052,0,0,1,38,1,3,1,3,3,2019,1,2,9,0,38,38,15,1,0,1,0,9.1484566,9.1484566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.400002,57.349998,51.41,56.150002,5,1,1,0,0,2,4,0,891.5,43779.18,0,0,2544.9194 -11410,14029,25484,25485,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,5,8.1336346,8.10917,0,1,0,-9,1,-9,6,28.59832,-9,1,0,22,1,4,1,2,2,2019,1,2,18,6,40,0,15,1,1,1,0,10.107182,10.107182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.529999,64.730003,19.92,66.489998,5,1,1,0,0,2,4,0,1722.5,174131.63,0,0,2823.5964 -11410,14029,25485,25484,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,0,4,7.9840746,8.0231228,0,1,0,-9,1,-9,-6,70.358681,-9,1,1,28,2,5,1,-9,-9,2019,1,1,30,11,48,0,15,1,1,1,0,8.5096197,8.5096197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.92,66.489998,38.529999,64.730003,6,1,1,0,0,2,4,0,1722.5,174131.63,0,0,2823.5964 -11411,14030,25486,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,1,3,6.6290727,6.9599409,0,3,0,0,0,-9,0,-1010.8903,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,3,10,10,15,1,0,-9,0,7.9113717,7.9113717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.889999,59.549999,-9,-9,6,1,1,0,0,11,2,0,661,-20189.053,0,0,2229.9697 -11412,14031,25487,25488,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,9.4800644,9.4198456,0,1,0,-9,35,0,-1,9.8355951,0,0,0,59,1,5,1,2,2,2019,1,1,9,0,50,0,15,1,0,1,0,30.345839,30.345839,0,0,0,0,0,0,0,0,0,0,0,9.2394924,0,0,0,46.34,48.810001,51.389999,59.18,6,1,1,0,0,7,5,1,363,2031381.8,0,0,13556.324 -11412,14031,25488,25487,-9,-9,1,1,0,59,1,0,0,0,1,-9,1,1,0,0,5,9.6575632,9.521719,0,1,0,-9,35,0,1,-27.247313,0,0,0,58,2,3,1,2,2,2019,1,2,9,2,30,30,15,1,0,1,0,62.60664,62.60664,0,0,0,0,0,0,0,0,0,0,0,3.4142668,0,0,0,51.389999,59.18,46.34,48.810001,7,1,1,0,0,7,5,1,363,2031381.8,0,0,13556.324 -11412,14032,25489,-9,25488,25487,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.9435105,7.8161654,0,3,0,0,0,-9,0,-985.82166,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,44,20,15,1,0,-9,1,7.1855254,7.1855254,0,0,0,0,0,0,0,0,0,0,0,.16546752,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,7,3,1,459,20916.418,0,0,2488.9978 -11413,14033,25490,-9,25492,25491,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1032.3241,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,18,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.380001,61.66,-9,-9,6,1,1,0,0,12,5,0,240,1625386.3,0,0,7319.4131 -11413,14033,25491,25492,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,5,9.1775084,8.8609123,0,2,0,-9,23,0,-3,-38.705334,0,0,0,49,1,5,1,2,1,2019,1,1,7,0,37,40,15,1,0,1,0,22.802347,22.802347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,54.099998,59.110001,6,1,1,0,0,12,5,0,240,1625386.3,0,0,7319.4131 -11413,14033,25492,25491,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,5,9.002471,9.2401142,0,2,0,-9,23,0,3,230.35265,0,0,0,46,2,5,1,1,2,2019,1,2,7,0,37,43,15,1,0,1,0,23.295387,23.295387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,54.099998,59.110001,6,1,1,0,0,12,5,0,240,1625386.3,0,0,7319.4131 -11414,14034,25493,25494,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.4359884,6.376514,1,0,-9,50,0,-1,-138.04024,0,0,0,71,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.72493631,6.4951901,0,0,53.779999,56.439999,57.16,56.150002,7,1,1,0,0,1,5,1,567,1372088.8,0,0,5398.4795 -11414,14034,25494,25493,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.8872776,8.7400131,1,0,-9,50,0,1,68.532532,0,0,0,70,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6598473,0,0,57.16,56.150002,53.779999,56.439999,6,1,1,0,0,1,5,1,567,1372088.8,0,0,5398.4795 -11415,14035,25495,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.4730358,7.4915876,0,3,0,0,0,-9,0,-1042.6965,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,24,41,15,1,0,-9,0,7.6586266,7.6586266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.849998,-9,-9,5,1,1,0,1,13,3,1,426,149626.36,0,0,1371.5616 -11416,14036,25496,25498,-9,-9,7,1,1,34,1,0,6,0,2,-9,97,3,0,1,2,0,0,0,2,0,-9,6,0,-2,-55.732208,0,0,0,36,3,2,3,-9,-9,2019,4,1,24,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.00595,3,40.889999,48.060001,32.889999,45.91,4,1,1,0,0,5,1,0,624.75,49614.676,0,0,4342.2388 -11416,14036,25497,-9,25498,25496,8,1,0,4,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.90765,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,1,0,624.75,49614.676,0,0,4342.2388 -11416,14036,25498,25496,-9,-9,1,1,0,36,1,0,6,0,3,-9,6,3,0,1,2,0,5.9515276,5.7874556,2,0,-9,6,0,2,72.297226,0,0,1,34,2,2,3,3,3,2019,4,7,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3203912,0,0,0,32.889999,45.91,40.889999,48.060001,3,1,1,0,0,5,1,0,624.75,49614.676,0,0,4342.2388 -11416,14036,25499,-9,25498,25496,6,1,1,7,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.5422,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,1,0,624.75,49614.676,0,0,4342.2388 -11417,14037,25500,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1089.9191,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.950001,19.74,-9,-9,3,4,2,0,0,9,1,0,708,-187001.78,0,0,1512.9685 -11418,14038,25501,25502,-9,-9,2,1,0,72,1,0,0,0,1,-9,2,1,0,0,4,6.5594864,7.0502305,0,1,0,-9,45,0,6,57.000549,0,0,0,66,1,5,1,1,1,2019,1,1,8,1,1,1,15,1,0,1,0,107.61328,107.61328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.959999,34.700001,54.689999,57.470001,6,1,1,0,0,9,5,1,473.5,2076322.3,0,0,6186.832 -11418,14038,25502,25501,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,0,5,9.0164585,8.9346333,5.3728299,1,0,-9,45,0,-6,-44.438107,0,0,0,72,1,4,1,2,2,2019,1,2,8,0,45,40,15,1,0,1,0,20.629276,20.629276,0,0,0,0,0,0,0,0,0,0,0,9.9564409,5.159143,0,0,54.689999,57.470001,61.959999,34.700001,6,1,1,0,0,9,5,1,473.5,2076322.3,0,0,6186.832 -11419,14039,25503,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,0,2,0,6.2948432,5.9297209,3,0,0,0,-9,0,-1140.4989,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6349654,0,0,36.419998,44.540001,-9,-9,5,1,1,0,0,8,2,1,281,393788.03,0,0,1474.9679 -11420,14040,25504,-9,25505,-9,1,1,1,51,2,0,0,0,3,-9,2,1,0,0,4,7.3029408,7.6946945,0,3,0,0,0,-9,0,-1112.833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,56,15,1,0,-9,1,5.2267742,5.2267742,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.060001,46.84,-9,-9,2,1,1,0,1,8,3,0,752,744949.38,0,0,1486.5989 -11420,14041,25505,-9,-9,-9,2,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1005.8221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1465336,0,0,0,52,45,-9,-9,6,1,1,0,0,8,1,0,273,-175668.16,0,0,360.05432 -11421,14042,25506,-9,25507,25509,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.52087,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,389.5,291715.31,0,0,4052.5161 -11421,14042,25507,25509,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.1294603,8.0455112,0,2,0,-9,11,0,-5,18.925949,0,0,1,42,1,4,1,2,2,2019,1,2,9,0,31,64,15,1,0,1,0,15.153495,15.153495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,54.009998,53.439999,5,1,1,0,0,2,5,1,389.5,291715.31,0,0,4052.5161 -11421,14042,25508,-9,25507,25509,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.13043,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,389.5,291715.31,0,0,4052.5161 -11421,14042,25509,25507,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.8914204,8.7269478,0,2,0,-9,11,0,5,34.82188,0,0,0,37,1,4,1,2,2,2019,1,1,9,0,37,37,15,1,0,1,0,20.30196,20.30196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.009998,53.439999,54.200001,57.490002,6,1,1,0,0,2,5,1,389.5,291715.31,0,0,4052.5161 -11422,14043,25510,-9,25514,25512,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1122.1815,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,63,-9,-9,5,1,1,0,0,4,3,1,641.40002,206983.55,0,0,2849.5918 -11422,14043,25511,-9,25514,25512,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.46686,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,1,641.40002,206983.55,0,0,2849.5918 -11422,14043,25512,25514,-9,-9,1,1,1,45,1,0,3,0,2,-9,1,1,0,0,4,7.7371516,7.7654896,0,2,0,-9,19,0,5,-33.036724,0,0,0,40,1,3,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,8.1696196,8.1696196,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.240002,58.84,43.709999,56.91,6,1,1,0,0,4,3,1,641.40002,206983.55,0,0,2849.5918 -11422,14043,25513,-9,25514,25512,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.64221,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,3,1,641.40002,206983.55,0,0,2849.5918 -11422,14043,25514,25512,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,0,3,8.0605516,7.8635511,0,2,0,-9,19,0,-5,33.791813,0,0,1,45,2,4,1,2,2,2019,1,1,17,5,24,20,15,1,1,1,0,13.642878,13.642878,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.709999,56.91,51.240002,58.84,5,1,1,0,1,4,3,1,641.40002,206983.55,0,0,2849.5918 -11423,14044,25515,25516,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,0,5,9.0738964,8.8982306,0,1,0,-9,7,0,7,67.918465,0,0,0,28,2,5,1,2,2,2019,1,2,8,0,67,60,15,1,0,1,0,13.569771,13.569771,0,0,0,0,0,0,0,0,0,0,0,4.3869281,0,0,0,54.099998,59.110001,56.25,52.619999,6,1,1,0,0,4,5,1,768,1166407.1,0,0,3907.2874 -11423,14044,25516,25515,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,0,5,8.0771093,8.0301208,0,1,0,-9,7,0,-7,-106.17558,0,1,1,35,2,5,1,-9,-9,2019,1,1,6,0,44,41,15,1,0,1,0,9.4489012,9.4489012,0,0,0,0,0,0,0,0,0,0,0,2.8979189,0,0,0,56.25,52.619999,54.099998,59.110001,6,1,1,0,0,4,5,1,768,1166407.1,0,0,3907.2874 -11424,14045,25517,25518,-9,-9,2,1,0,44,1,0,1,0,1,-9,1,1,0,0,3,9.3660431,9.5674534,0,2,0,-9,20,0,1,-159.22304,0,0,1,43,1,4,1,2,3,2019,1,1,11,0,30,37,15,1,0,1,0,73.478142,73.478142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.330002,55.93,51,56,5,2,3,0,0,8,5,1,772,2250345.5,0,0,25561.596 -11424,14045,25518,25517,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,4,8.7074232,9.1960754,0,2,0,-9,20,0,-1,177.04033,0,0,0,44,1,3,1,1,1,2019,1,2,10,1,56,74,15,1,0,1,0,12.605836,12.605836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,46.330002,55.93,5,2,3,0,0,8,5,1,772,2250345.5,0,0,25561.596 -11424,14045,25519,-9,25517,25518,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.8624,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,1,772,2250345.5,0,0,25561.596 -11425,14046,25520,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,5.7626591,5.9163275,0,3,0,0,0,-9,0,-1020.7484,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,7,12,15,1,0,-9,0,5.127852,5.127852,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.02,56.419998,-9,-9,6,3,4,0,0,6,2,1,139,-177424.55,0,0,334.64258 -11426,14047,25521,25522,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,7.4676561,7.5039659,0,1,0,-9,3,0,-7,50.334206,0,1,1,32,1,3,1,-9,-9,2019,1,1,11,2,30,37,15,1,0,1,0,6.6073484,6.6073484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,49.799999,54.330002,5,2,3,0,0,8,3,0,1262.5,-1370.1953,0,0,1511.0107 -11426,14047,25522,25521,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,3,7.333396,7.6253705,0,1,0,-9,3,0,7,15.037801,0,0,0,25,1,4,1,3,1,2019,1,2,11,1,20,47,15,1,0,1,0,7.5613885,7.5613885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.799999,54.330002,48,57,2,2,3,0,0,8,3,0,1262.5,-1370.1953,0,0,1511.0107 -11427,14048,25523,-9,25524,25526,2,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,7.6984615,7.646069,0,3,0,0,0,-9,0,-1007.5922,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,25,32,15,1,0,-9,1,10.069849,10.069849,0,0,0,0,0,0,0,0,1,1,0,3.2892878,0,0,0,49.02,58.889999,-9,-9,6,1,1,0,0,7,3,1,151,-217.1833,0,0,-221.50537 -11427,14049,25524,25526,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,6.2212992,6.4267216,0,2,0,-9,6,0,-6,-36.123558,0,0,1,50,2,4,1,2,2,2019,1,4,19,6,10,15,15,1,1,1,0,7.6470146,7.6470146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.580002,52.790001,53,55,3,1,1,0,0,7,4,1,394,1122776.4,0,0,2033.6229 -11427,14049,25525,-9,25524,25526,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,5.4706669,5.9078422,0,2,0,0,0,-9,0,-933.80768,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82737404,0,0,0,48,59,-9,-9,5,1,1,0,0,7,4,1,394,1122776.4,0,0,2033.6229 -11427,14049,25526,25524,-9,-9,4,1,1,50,1,0,1,0,2,-9,1,1,0,0,4,8.9798279,8.777317,0,2,0,-9,6,0,6,-7.8629198,0,0,0,44,2,3,1,-9,-9,2019,1,1,9,1,50,40,15,1,0,1,0,18.592333,18.592333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,44.580002,52.790001,6,4,1,0,0,7,4,1,394,1122776.4,0,0,2033.6229 -11428,14050,25527,25529,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.1265535,7.9751344,0,2,0,-9,29,0,-1,7.163641,0,0,0,47,2,4,1,3,-9,2019,1,2,8,0,35,41,15,1,0,1,0,8.8944263,8.8944263,0,0,0,0,0,0,0,2,1,1,0,0,0,6.2550464,3,44.259998,59.43,52.43,55.57,6,1,1,0,0,2,4,1,756,269666,0,0,4158.9277 -11428,14050,25528,-9,25527,25529,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1110.9799,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,2,4,1,756,269666,0,0,4158.9277 -11428,14050,25529,25527,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,9.0191011,8.9503593,0,2,0,-9,28,0,1,91.201752,0,0,0,46,2,4,1,-9,-9,2019,1,1,6,0,39,43,15,1,0,1,0,16.654186,16.654186,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,44.259998,59.43,5,1,1,0,0,2,4,1,756,269666,0,0,4158.9277 -11428,14050,25530,-9,25527,25529,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1058.8623,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,2,4,1,756,269666,0,0,4158.9277 -11428,14051,25531,-9,25527,25529,3,1,0,19,2,0,2,0,2,0,7,2,0,0,4,6.0509663,6.1665564,0,3,0,0,0,-9,0,-932.5929,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,2,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.099998,59.990002,-9,-9,6,1,1,0,0,2,2,1,408,175005.95,0,0,797.5611 -11429,14052,25532,25533,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,7.2254615,6.9941578,1,0,-9,31,0,16,8.9260225,0,0,0,55,2,5,1,1,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48476496,6.8077178,0,0,58.150002,52.91,57.060001,57.759998,6,1,1,0,0,4,3,1,637,399365.44,0,0,2028.2029 -11429,14052,25533,25532,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,5,0,7.2939892,7.38344,1,0,-9,33,0,-16,31.482456,0,0,0,71,3,4,3,2,2,2019,2,2,5,0,0,38,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3861804,0,0,57.060001,57.759998,58.150002,52.91,6,1,1,0,0,4,3,1,637,399365.44,0,0,2028.2029 -11429,14053,25534,-9,25533,25532,3,1,1,23,2,0,0,0,1,-9,1,1,0,0,5,7.5829182,7.9467592,0,3,0,0,0,-9,0,-1115.8607,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,38,15,1,0,-9,1,5.5035157,5.5035157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,4,3,1,540,-114643.35,0,0,1535.532 -11430,14054,25535,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.4803696,7.8348637,3,0,-9,0,1,0,-1001.5605,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2127361,7.3700156,0,0,61.48,39.150002,-9,-9,6,1,1,0,0,9,3,1,567,209066.42,0,0,1677.6425 -11431,14055,25536,25537,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,2,8.3292408,9.0251637,8.2819653,1,0,-9,32,0,-1,25.519264,0,0,0,58,3,1,3,2,3,2019,2,1,16,4,37,37,15,1,1,3,0,14.917295,14.917295,0,0,0,0,0,0,0,2,1,1,0,7.3126817,8.5088377,1.6127107,3,27.719999,21.299999,36.299999,20.18,3,1,1,0,0,2,5,1,386.5,1890035.9,0,0,3686.3325 -11431,14055,25537,25536,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,32,0,1,4.2595186,0,0,0,57,2,2,1,2,3,2019,3,2,24,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.299999,20.18,27.719999,21.299999,1,1,1,0,1,2,5,1,386.5,1890035.9,0,0,3686.3325 -11431,14056,25538,-9,25537,25536,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,8.0157461,7.8937545,0,3,0,0,0,-9,0,-1030.7124,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,41,15,1,0,-9,1,7.9722466,7.9722466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.080002,52.700001,-9,-9,3,1,1,0,0,2,3,1,225,161869.81,0,0,1730.7542 -11431,14057,25539,-9,25537,25536,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,7.9757829,8.067275,0,3,0,0,0,-9,0,-975.67621,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,38,45,15,1,0,-9,1,11.018214,11.018214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,2,4,1,956,143404.23,0,0,852.60333 -11431,14058,25540,-9,25537,25536,5,1,0,22,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-978.19043,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.23,54.759998,-9,-9,5,1,1,1,1,2,1,1,674,0,0,0,0 -11432,14059,25541,-9,-9,-9,1,1,0,32,3,0,1,0,3,-9,6,3,0,0,4,0,5.861928,5.5642858,4,0,-9,0,1,0,-1013.0844,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,15,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.0086379,0,0,0,27.280001,65.959999,-9,-9,5,1,1,0,0,5,2,0,334,118474.11,0,0,806.25574 -11432,14059,25542,-9,25541,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1071.2813,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,2,0,334,118474.11,0,0,806.25574 -11433,14060,25543,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,2,1,0,0,5,7.6431961,7.5597553,0,4,0,-9,0,-9,0,-848.52228,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,23,0,15,1,0,-9,0,10.752423,10.752423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,12,2,0,797,231732.27,0,0,1267.6279 -11433,14060,25544,-9,25543,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-980.21582,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,0,797,231732.27,0,0,1267.6279 -11434,14061,25545,25546,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,4.1057253,4.4861917,1,0,-9,61,0,1,4.7838163,0,0,0,76,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,28.275694,0,0,0,0,0,1,1,0,4.6732407,3.9483182,0,0,46.68,44.5,39.48,38.560001,5,1,1,0,0,12,2,0,605.5,642479.25,0,0,1680.2671 -11434,14061,25546,25545,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,6.5238252,6.6756849,1,0,-9,61,0,-1,-96.418999,0,0,0,77,3,3,3,3,3,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3699069,6.7345581,0,0,39.48,38.560001,46.68,44.5,5,1,1,0,0,12,2,0,605.5,642479.25,0,0,1680.2671 -11435,14062,25547,-9,25549,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.2819,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,1,0,377.5,17740.672,0,0,1249.8663 -11435,14062,25548,-9,25549,-9,3,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1138.6984,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,377.5,17740.672,0,0,1249.8663 -11435,14062,25549,-9,-9,-9,1,1,0,33,2,1,3,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-987.03174,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.740002,50.279999,-9,-9,7,1,1,0,0,4,1,0,377.5,17740.672,0,0,1249.8663 -11435,14062,25550,-9,25549,-9,2,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1017.8475,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,4,1,0,377.5,17740.672,0,0,1249.8663 -11436,14063,25551,-9,-9,-9,1,1,1,22,2,0,2,0,2,-9,2,1,0,0,4,8.9065886,9.4355783,0,3,0,0,0,-9,0,-985.22095,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,2,16,0,15,1,0,-9,1,59.637695,59.637695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,5,4,2,0,0,8,5,0,1135,377111.44,0,0,3269.8916 -11437,14064,25552,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,0,4,9.0708075,9.4728031,6.1081443,3,0,0,0,-9,0,-1120.0371,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,45,50,15,1,0,-9,0,21.58909,21.58909,0,0,0,0,0,0,0,0,1,1,0,6.7256308,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,9,5,1,120.5,626994.75,0,0,3160.5081 -11437,14064,25553,-9,25552,-9,3,1,1,17,2,0,0,1,2,0,7,2,0,0,4,3.7038305,3.3213785,0,3,0,0,0,-9,0,-1088.3857,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.093473077,0,0,0,51.830002,57.200001,-9,-9,6,4,2,0,0,9,5,1,120.5,626994.75,0,0,3160.5081 -11437,14065,25554,-9,25552,-9,2,1,0,18,2,0,0,1,2,0,7,2,0,0,3,6.2401409,8.4969854,8.317359,3,0,0,0,-9,0,-1092.8672,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2475691,0,0,0,45.630001,54.630001,-9,-9,6,4,2,0,0,9,5,1,58,-68090.578,0,0,1502.8331 -11438,14066,25555,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,0,4,0,8.284193,8.3278656,3,0,0,0,-9,0,-872.40198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2921019,8.0920553,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,4,1,87,71250.422,0,0,3510.9868 -11439,14067,25556,-9,25557,25559,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1002.567,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,7,2,1,843.79999,585982.25,0,0,1729.5062 -11439,14067,25557,25559,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,0,2,6.1161079,6.5331569,0,2,0,-9,14,0,-10,-57.66246,0,0,0,55,2,3,1,3,3,2019,1,2,13,1,6,6,15,1,0,1,0,8.4207258,8.4207258,0,0,0,0,0,0,0,0,1,1,0,3.6200945,0,0,0,51.200001,41.779999,54.049999,41.389999,6,1,1,0,0,7,2,1,843.79999,585982.25,0,0,1729.5062 -11439,14067,25558,-9,25557,25559,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1054.2024,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,1,843.79999,585982.25,0,0,1729.5062 -11439,14067,25559,25557,-9,-9,2,1,1,55,1,0,3,0,2,-9,1,1,0,0,3,7.698503,7.7181797,0,2,0,-9,14,0,10,7.1611886,0,0,0,45,1,2,1,2,2,2019,1,1,9,0,50,55,15,1,0,1,0,4.3507309,4.3507309,0,0,0,0,0,0,0,0,1,1,0,1.613413,0,0,0,54.049999,41.389999,51.200001,41.779999,4,1,1,0,0,7,2,1,843.79999,585982.25,0,0,1729.5062 -11439,14067,25560,-9,25557,25559,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1058.6265,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,2,1,843.79999,585982.25,0,0,1729.5062 -11440,14068,25561,-9,25562,-9,1,1,1,54,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1081.6031,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54,-9,-9,6,3,4,0,0,7,1,1,247,13888.66,0,0,441.75418 -11440,14069,25562,-9,-9,-9,2,1,0,94,3,0,0,0,3,-9,4,3,0,0,1,0,6.5192156,6.9166713,3,0,0,0,-9,0,-1028.7373,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8503509,5.5746646,3,46.540001,15.61,-9,-9,5,3,4,0,0,7,2,1,572,370894.75,0,0,-604.45691 -11441,14070,25563,-9,25564,25565,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.2354,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,550.66669,429449.81,0,0,4087.5405 -11441,14070,25564,25565,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,8.4611635,8.6450596,0,2,0,-9,11,-9,-3,-89.230309,-9,0,0,48,1,3,1,-9,-9,2019,1,2,14,3,35,0,15,1,0,1,0,19.807901,19.807901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.830002,52.990002,48.450001,49.459999,6,1,1,0,0,2,5,1,550.66669,429449.81,0,0,4087.5405 -11441,14070,25565,25564,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,0,3,9.0659723,9.0627441,0,2,0,-9,13,-9,3,75.58699,-9,0,0,45,2,3,1,3,3,2019,1,1,11,0,37,0,15,1,0,1,0,23.827116,23.827116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,49.459999,49.830002,52.990002,6,1,1,0,0,2,5,1,550.66669,429449.81,0,0,4087.5405 -11442,14071,25566,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,3,0,4.7666216,4.9194117,3,0,0,0,-9,0,-946.763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.681334,0,0,2,1,1,0,0,5.0082622,0,3,39.57,24.67,-9,-9,5,1,1,0,0,2,2,1,779,16166.467,0,0,1563.309 -11443,14072,25567,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-795.49298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.8302803,75.584618,0,0,0,1,1,0,0,0,0,0,57.720001,23.49,-9,-9,6,1,1,0,0,13,1,0,406,-136777.05,0,0,1112.1807 -11443,14073,25568,-9,25567,-9,2,1,1,47,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1049.0336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.42,46.060001,-9,-9,3,1,1,0,0,13,1,0,723,69610.367,0,0,2644.6455 -11444,14074,25569,-9,25572,25570,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.9105,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,697.20001,1106527,0,0,3016.2847 -11444,14074,25570,25572,-9,-9,2,1,1,50,1,0,3,0,3,-9,2,1,0,0,4,7.1906924,7.1567106,0,2,0,-9,23,0,8,-12.843638,0,0,0,42,2,4,3,3,3,2019,2,1,9,1,24,24,15,1,0,3,0,8.4391727,8.4391727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,49,55,6,2,3,0,0,8,2,0,697.20001,1106527,0,0,3016.2847 -11444,14074,25571,-9,25572,25570,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.54895,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,2,0,697.20001,1106527,0,0,3016.2847 -11444,14074,25572,25570,-9,-9,1,1,0,42,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,23,0,-8,94.869164,0,0,1,50,3,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,53,55,6,2,3,0,0,8,2,0,697.20001,1106527,0,0,3016.2847 -11444,14074,25573,-9,25572,25570,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-936.97186,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,8,2,0,697.20001,1106527,0,0,3016.2847 -11445,14075,25574,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,0,2,8.5702906,8.7302732,0,3,0,0,0,-9,0,-1139.7552,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,37,0,15,1,0,-9,0,15.014012,15.014012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.700001,46.459999,-9,-9,6,1,1,0,0,11,5,1,424,250538.89,0,0,1780.1473 -11446,14076,25575,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1000.3318,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.6789774,0,0,0,0,1,1,0,2.9316962,0,0,0,52.830002,49.110001,-9,-9,5,1,1,0,0,10,1,0,918,108534.35,0,0,1047.9437 -11447,14077,25576,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1066.8706,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.25,57.34,-9,-9,5,1,1,0,0,5,1,0,201,0,0,0,525.6051 -11447,14078,25577,-9,25576,-9,2,1,1,19,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-993.7124,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.889999,49.209999,-9,-9,6,1,1,1,0,5,1,0,169,0,0,0,-107.10417 -11448,14079,25578,25579,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.3671331,8.5031271,0,1,0,-9,8,0,0,-28.930159,0,0,0,65,1,5,3,2,2,2019,2,1,22,10,39,39,15,1,1,4,0,12.538863,12.538863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.040001,43.099998,19.07,70.07,3,1,1,0,0,10,4,1,638.5,2079351.3,0,0,1663.6084 -11448,14079,25579,25578,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,5,0,6.1046543,6.0509224,1,0,-9,8,0,9,20.063894,0,0,0,56,2,3,1,3,2,2019,3,2,19,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0639753,0,0,19.07,70.07,36.040001,43.099998,4,1,1,0,0,10,4,1,638.5,2079351.3,0,0,1663.6084 -11449,14080,25580,25581,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.9133992,7.2145658,1,0,-9,4,0,2,95.26532,0,0,0,74,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7618961,6.9573045,0,0,54.130001,48.040001,57.16,56.150002,6,1,1,0,0,7,2,1,974.5,683912,0,0,2748.3806 -11449,14080,25581,25580,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,6.5986748,6.101213,1,0,-9,4,0,-2,-6.4871192,0,0,0,76,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.907886,6.3993011,0,0,57.16,56.150002,54.130001,48.040001,6,1,1,0,0,7,2,1,974.5,683912,0,0,2748.3806 -11450,14081,25582,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,1,0,7.6469097,7.5397687,3,0,0,0,-9,0,-953.08765,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,126.04411,0,0,0,0,1184.8033,0,1,1,0,4.2516704,7.7563066,0,0,45,16.049999,-9,-9,5,1,1,0,0,13,3,0,175,595939.81,0,0,3917.9558 -11451,14082,25583,25584,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,4,0,6.0106969,5.9184494,1,0,-9,49,0,6,13.049242,0,0,0,68,3,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1849704,6.2683387,0,0,60.119999,54.799999,54.790001,55.860001,6,1,1,0,0,7,2,0,528,706114.31,0,0,1203.4117 -11451,14082,25584,25583,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,49,0,-6,-107.84269,0,0,0,74,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,60.119999,54.799999,7,1,1,0,0,7,2,0,528,706114.31,0,0,1203.4117 -11452,14083,25585,25586,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,3,8.6328001,8.6236734,0,1,0,-9,12,0,0,41.785049,0,0,1,35,1,3,1,2,2,2019,1,2,3,0,45,50,15,1,0,1,0,14.345881,14.345881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,52.990002,51.279999,6,1,1,0,0,8,5,1,370.5,-122633.32,0,0,3863.0547 -11452,14083,25586,25585,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,3,8.7946396,8.731287,0,1,0,-9,6,0,0,-81.878944,0,0,0,35,1,3,1,2,2,2019,1,1,7,0,40,40,15,1,0,1,0,18.067879,18.067879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,58.32,50.220001,6,1,1,0,0,8,5,1,370.5,-122633.32,0,0,3863.0547 -11453,14084,25587,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1033.7229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,52.880001,-9,-9,7,1,1,0,0,12,1,1,116,-52332.828,0,0,979.73444 -11454,14085,25588,25589,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,5,9.31252,9.5937691,0,1,0,-9,6,0,-2,46.056839,0,0,1,42,2,3,1,2,2,2019,1,2,6,0,39,50,15,1,0,1,0,38.210453,38.210453,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,63.98,38.080002,7,1,1,0,0,12,5,1,1409,1573648.6,0,0,5498.3975 -11454,14085,25589,25588,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,3,8.5167828,8.5253048,6.2963486,1,0,-9,6,0,2,-40.102055,0,0,0,40,2,5,1,3,2,2019,1,1,7,0,42,42,15,1,0,1,0,10.942934,10.942934,0,0,0,0,0,0,0,0,1,1,0,0,6.4897676,0,0,63.98,38.080002,62.389999,56.709999,6,1,1,0,0,12,5,1,1409,1573648.6,0,0,5498.3975 -11454,14086,25590,-9,25588,25589,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.8705935,7.7552915,0,3,0,0,0,-9,0,-962.37091,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,36,30,15,1,0,-9,1,8.1032438,8.1032438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,12,3,1,381,16345.373,0,0,1333.5931 -11455,14087,25591,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,5,8.3774652,8.7688227,3.8193886,3,0,-9,0,-9,0,-1065.6261,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,0,15,1,0,-9,0,15.789197,15.789197,0,0,0,0,0,0,0,0,1,1,0,7.0774951,0,0,0,50.860001,55.040001,-9,-9,6,1,1,0,0,2,5,0,244,105853.7,0,0,2056.6899 -11456,14088,25592,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,2,1,0,0,3,9.335803,9.4852018,0,1,0,-9,10,0,-3,-26.883474,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,17,4,43,40,15,1,1,-9,0,27.281826,27.281826,0,0,0,0,0,0,0,14.5,0,0,0,0,0,15.747798,3,46.09,43.639999,57.66,50.59,3,1,1,0,0,13,5,1,1472,337857.13,0,0,2887.4783 -11456,14089,25593,-9,-9,-9,2,1,0,67,2,0,0,0,2,-9,2,1,0,0,5,9.0598593,8.8100462,0,1,0,-9,10,0,3,-10.306725,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,7,0,43,43,15,1,0,-9,0,16.896338,16.896338,0,0,0,0,0,0,0,0,0,0,0,5.7530751,0,0,0,57.66,50.59,46.09,43.639999,7,1,1,0,0,13,5,1,848,-25362.457,0,0,3653.7429 -11457,14090,25594,25595,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,5,8.8268909,8.5064583,6.8311543,1,0,-9,2,0,-7,48.538437,-9,0,0,62,3,4,1,-9,-9,2019,1,1,9,1,52,0,15,1,0,1,0,12.589116,12.589116,0,0,0,0,0,0,0,0,0,0,0,0,7.3741894,0,0,51.139999,60.450001,48.869999,58.549999,6,1,1,0,0,9,5,1,1132.5,428999.06,0,0,3965.4329 -11457,14090,25595,25594,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,0,4,8.2474995,8.4518185,6.986186,1,0,-9,2,0,7,44.35405,0,0,0,55,2,5,1,3,3,2019,1,2,8,0,43,45,15,1,0,1,0,9.0569611,9.0569611,0,0,0,0,0,0,0,0,0,0,0,0,7.5119038,0,0,48.869999,58.549999,51.139999,60.450001,6,1,1,0,0,9,5,1,1132.5,428999.06,0,0,3965.4329 -11458,14091,25596,25597,-9,-9,1,1,1,47,1,0,2,0,2,-9,1,1,0,0,4,7.6674948,7.896811,0,2,0,-9,7,0,3,107.19411,0,0,0,44,2,3,1,3,3,2019,1,2,9,1,40,40,15,1,0,1,0,7.9628382,7.9628382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50.029999,52.619999,6,1,1,0,0,2,4,1,966,426903.97,0,0,3646.8428 -11458,14091,25597,25596,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,8.6309538,8.695653,0,2,0,-9,7,0,-3,-13.592466,0,0,1,47,2,4,1,3,3,2019,1,1,13,1,40,40,15,1,0,1,0,15.636077,15.636077,0,0,0,0,0,0,0,0,1,1,0,6.5463948,0,0,0,50.029999,52.619999,52,55,5,1,1,0,0,2,4,1,966,426903.97,0,0,3646.8428 -11458,14091,25598,-9,25597,25596,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.50891,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,2,4,1,966,426903.97,0,0,3646.8428 -11458,14091,25599,-9,25597,25596,5,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.72467,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,966,426903.97,0,0,3646.8428 -11458,14092,25600,-9,25597,25596,3,1,1,24,2,0,2,0,2,-9,1,1,0,0,4,7.9821839,8.176177,0,3,0,0,0,-9,0,-1003.2067,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,9.4976873,9.4976873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,2,3,1,92,86082.992,0,0,1231.7642 -11459,14093,25601,-9,-9,-9,1,1,0,24,2,1,2,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1143.4088,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.119999,61.849998,-9,-9,5,1,1,1,1,13,1,0,1023,20819.475,0,0,1454.181 -11459,14093,25602,-9,25601,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1124.9412,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,1023,20819.475,0,0,1454.181 -11459,14093,25603,-9,25601,-9,2,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-932.30438,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,1023,20819.475,0,0,1454.181 -11460,14094,25604,25605,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,2,9.494874,9.3750134,0,2,0,-9,6,0,5,61.733116,0,0,0,38,2,4,1,-9,-9,2019,1,1,10,1,38,37,15,1,0,1,0,29.026678,29.026678,0,0,0,0,0,0,0,0,1,1,0,8.3186941,0,0,0,53.799999,40.360001,48.869999,58.549999,5,1,1,0,0,8,5,1,552.33331,411247.41,0,0,4922.9131 -11460,14094,25605,25604,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,8.0215626,8.2412004,0,2,0,-9,6,0,-5,-19.262207,0,0,1,43,2,2,1,2,3,2019,1,2,10,0,31,34,15,1,0,1,0,11.694017,11.694017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,53.799999,40.360001,5,1,1,0,0,8,5,1,552.33331,411247.41,0,0,4922.9131 -11460,14094,25606,-9,25605,25604,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.0292,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,552.33331,411247.41,0,0,4922.9131 -11461,14095,25607,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,6.6548238,6.6724524,3,0,0,0,-9,0,-981.98608,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,12,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.6843377,6.4606152,2.2073338,3,56.049999,45.759998,-9,-9,6,1,1,0,0,7,2,1,1215,7839.1538,0,0,-157.13478 -11462,14096,25608,25609,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,3,8.3468199,8.5430088,0,1,0,-9,7,0,0,-31.138559,0,0,1,32,1,4,1,-9,-9,2019,1,1,27,12,44,43,15,1,1,1,0,11.395383,11.395383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.870001,58.939999,57.16,56.150002,5,1,1,0,0,2,5,1,584.5,119705.76,0,0,4294.4487 -11462,14096,25609,25608,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.9001341,8.8297939,0,1,0,-9,7,0,0,1.8149791,0,0,0,32,2,3,1,2,2,2019,1,2,6,0,62,65,15,1,0,1,0,11.810555,11.810555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,24.870001,58.939999,6,1,1,0,0,2,5,1,584.5,119705.76,0,0,4294.4487 -11463,14097,25610,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,5,8.1359873,8.3586035,0,3,0,0,0,-9,0,-904.20721,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,39,15,1,0,-9,0,10.801501,10.801501,0,0,0,0,0,0,0,14.5,0,0,0,0,0,3.4360158,3,56.900002,47.040001,-9,-9,5,1,1,0,0,6,4,0,2732,48290.5,0,0,992.79272 -11463,14098,25611,-9,-9,-9,2,1,1,57,3,0,0,0,1,-9,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1054.6875,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.990002,48.040001,-9,-9,5,1,1,0,0,6,1,0,340,219698.95,0,0,0 -11464,14099,25612,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-978.95428,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.509998,47.91,-9,-9,6,1,1,0,0,7,1,0,663,64819.004,0,0,220.47281 -11465,14100,25613,-9,25616,25615,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-963.92914,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,2,3,0,0,6,2,1,575.25,103473.92,0,0,1869.1526 -11465,14100,25614,-9,25616,25615,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.35352,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,6,2,1,575.25,103473.92,0,0,1869.1526 -11465,14100,25615,25616,-9,-9,1,1,1,53,1,0,2,0,3,-9,2,1,0,0,3,7.7256379,7.9471169,0,2,0,-9,22,0,9,-51.210693,0,0,0,44,1,2,3,-9,-9,2019,2,2,12,0,40,44,15,1,0,3,0,7.3794417,7.3794417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,37.860001,41.16,4,2,3,0,0,6,2,1,575.25,103473.92,0,0,1869.1526 -11465,14100,25616,25615,-9,-9,2,1,0,44,1,0,2,0,1,-9,3,3,0,0,2,0,0,0,2,0,-9,22,0,0,-133.95796,0,0,1,53,3,3,1,2,2,2019,3,1,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.860001,41.16,38.16,44.66,4,2,3,1,0,6,2,1,575.25,103473.92,0,0,1869.1526 -11465,14101,25617,-9,25616,25615,3,1,0,19,2,0,2,0,2,-9,7,2,0,0,3,5.9519105,6.4694281,5.476429,3,0,0,0,-9,0,-1048.993,1,1,1,-9,-9,-9,-9,1,3,2019,-9,0,10,0,8,12,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9296975,0,0,0,46.080002,57.200001,-9,-9,2,2,3,0,0,6,2,1,78,-57870.938,0,0,-85.413101 -11466,14102,25618,25619,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,5,0,6.8843889,6.730535,1,0,-9,23,0,-2,10.009536,0,0,0,75,1,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8573222,6.8947144,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,2,5,1,538,2384338,0,0,6169.8652 -11466,14102,25619,25618,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,5,0,8.9976168,9.0021658,1,0,-9,23,0,2,-18.245691,0,0,0,73,1,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,9.2271023,0,3,57.060001,57.759998,54.099998,59.110001,7,1,1,0,0,2,5,1,538,2384338,0,0,6169.8652 -11467,14103,25620,25621,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,0,3,7.4476237,8.2231894,6.5366874,1,0,-9,3,0,0,-100.22945,0,0,0,55,1,4,1,-9,-9,2019,1,1,7,0,30,33,15,1,0,1,0,8.2152414,8.2152414,0,0,0,0,0,0,0,0,0,0,0,0,6.516077,0,0,55.360001,51.57,54.200001,57.490002,7,1,1,0,0,4,4,1,1264,360097.19,0,0,2388.061 -11467,14103,25621,25620,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,7.62885,8.2896452,6.9048839,1,0,-9,3,0,0,107.24483,0,0,0,55,3,3,1,3,2,2019,1,2,12,0,4,4,15,1,0,1,0,62.011852,62.011852,0,0,0,0,0,0,0,0,0,0,0,0,6.9018154,0,0,54.200001,57.490002,55.360001,51.57,6,1,1,0,0,4,4,1,1264,360097.19,0,0,2388.061 -11468,14104,25622,-9,25623,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.0510607,8.1916714,0,3,0,0,0,-9,0,-1059.71,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,55,50,15,1,0,-9,1,6.3298497,6.3298497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,-9,-9,6,4,2,0,0,5,4,0,449,0,0,0,1513.8423 -11468,14105,25623,-9,-9,-9,2,1,0,46,2,0,0,0,2,-9,2,1,0,0,1,7.8046427,7.6264539,0,3,0,0,0,-9,0,-1026.8933,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,25,15,1,0,-9,0,7.3252406,7.3252406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.709999,29.040001,-9,-9,5,4,2,0,1,5,3,0,279,43447.059,0,0,558.01978 -11468,14106,25624,-9,25623,-9,3,1,1,18,2,0,0,0,2,-9,2,1,0,0,4,6.4266105,6.4307542,0,3,0,0,0,-9,0,-1085.8652,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,14,0,15,1,0,-9,1,4.7056346,4.7056346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.029999,36.209999,-9,-9,7,3,4,0,0,5,2,0,2939,0,0,0,1083.1351 -11469,14107,25625,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,0,4,7.3458977,8.0269699,7.3189816,4,0,0,0,-9,0,-962.76001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,25,20,15,1,0,-9,0,7.1668005,7.1668005,0,0,0,0,0,0,0,0,1,1,0,7.6651182,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,7,3,0,676,52731.273,0,0,1851.535 -11469,14108,25626,-9,25625,-9,2,1,1,21,2,0,1,0,2,-9,2,1,0,0,4,7.8843713,8.1292801,0,3,0,0,0,-9,0,-1064.9609,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,40,37,15,1,0,-9,1,7.2707567,7.2707567,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,-9,-9,6,1,1,0,0,7,3,0,633,146126.13,0,0,2334.5911 -11469,14109,25627,-9,25625,-9,3,1,0,18,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-981.45721,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,7,3,0,940,113612.62,0,0,0 -11470,14110,25628,25629,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.3253164,7.4350696,0,2,0,-9,9,0,1,196.81911,0,0,1,40,3,5,1,3,3,2019,1,2,20,7,45,42,15,1,1,1,0,5.377553,5.377553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.24,64.610001,51.139999,60.450001,4,1,1,0,0,11,4,1,1313.75,251932.17,0,0,3842.7329 -11470,14110,25629,25628,-9,-9,2,1,1,40,1,0,2,0,3,-9,2,1,0,0,5,8.5419598,8.3942604,0,2,0,-9,9,0,-1,15.183243,0,0,0,41,2,4,1,-9,-9,2019,1,1,8,1,49,42,15,1,0,1,0,11.676697,11.676697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,30.24,64.610001,4,1,1,0,0,11,4,1,1313.75,251932.17,0,0,3842.7329 -11470,14110,25630,-9,25628,25629,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.1745,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,4,1,1313.75,251932.17,0,0,3842.7329 -11470,14110,25631,-9,25628,25629,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.7671,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,1,1313.75,251932.17,0,0,3842.7329 -11471,14111,25632,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,3,0,6.772419,6.5733452,3,0,0,0,-9,0,-904.26172,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,35,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.8025198,6.4889922,0,0,54.900002,54.529999,-9,-9,6,1,1,0,0,1,2,1,327,307759.34,0,0,520.74872 -11472,14112,25633,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,0,4,9.321557,9.2709131,0,3,0,0,0,-9,0,-1085.3374,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,0,0,38,0,15,1,0,-9,0,39.453846,39.453846,0,0,0,0,0,0,0,0,0,0,0,1.638651,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,9,5,0,224,370638,0,0,5360.0815 -11473,14113,25634,25635,-9,-9,2,1,0,46,1,0,3,0,2,-9,2,1,0,0,4,8.0820017,8.1910362,0,2,0,-9,15,0,2,-9.2926054,0,0,0,44,1,4,1,2,1,2019,1,1,14,4,29,38,15,1,1,1,0,13.504044,13.504044,0,0,0,0,0,0,0,0,0,0,0,3.5379229,0,0,0,35.970001,61.830002,51.830002,57.200001,5,1,1,0,0,7,5,1,938.20001,2671790.5,0,0,5853.0825 -11473,14113,25635,25634,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,0,4,9.7245674,9.1935301,0,2,0,-9,6,0,-2,136.37662,0,0,0,46,2,4,1,-9,-9,2019,1,2,8,0,48,48,15,1,0,1,0,32.702049,32.702049,0,0,0,0,0,0,0,0,0,0,0,4.6580992,0,0,0,51.830002,57.200001,35.970001,61.830002,6,4,5,0,0,7,5,1,938.20001,2671790.5,0,0,5853.0825 -11473,14113,25636,-9,25634,25635,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.037,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,7,5,1,938.20001,2671790.5,0,0,5853.0825 -11473,14113,25637,-9,25634,25635,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1026.2379,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,5,4,2,0,0,7,5,1,938.20001,2671790.5,0,0,5853.0825 -11473,14113,25638,-9,25634,25635,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-965.21643,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,5,4,5,0,0,7,5,1,938.20001,2671790.5,0,0,5853.0825 -11474,14114,25639,-9,25642,25640,4,1,1,16,2,0,6,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.53082,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.630001,53.630001,-9,-9,6,3,4,0,0,8,2,0,1415.75,364700.69,0,0,1824.499 -11474,14114,25640,25642,-9,-9,7,1,1,47,1,0,6,0,3,-9,2,1,0,0,3,8.0608854,8.0153093,0,2,0,-9,6,0,1,74.994995,-9,0,0,46,3,4,3,-9,-9,2019,2,1,13,1,30,0,15,1,0,3,0,11.034947,11.034947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.93,53.25,51,54,5,3,4,0,0,8,2,0,1415.75,364700.69,0,0,1824.499 -11474,14114,25641,-9,25642,25640,3,1,0,17,2,0,6,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-837.13379,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.370003,47,-9,-9,6,3,4,0,0,8,2,0,1415.75,364700.69,0,0,1824.499 -11474,14114,25642,25640,-9,-9,1,1,0,46,1,0,6,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-1,28.639349,-9,0,0,47,3,3,1,3,2,2019,3,7,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,45.93,53.25,6,3,4,0,0,8,2,0,1415.75,364700.69,0,0,1824.499 -11475,14115,25643,25644,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,0,2,0,4.5694404,5.416503,1,0,-9,6,0,3,-15.299603,0,0,0,56,2,4,3,3,3,2019,4,2,28,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7551236,5.0543523,0,0,33.040001,29.73,58.299999,52.91,5,1,1,0,0,12,3,1,1801.5,1269836.3,0,0,1591.3219 -11475,14115,25644,25643,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,0,4,0,7.7072773,7.8874893,1,0,-9,6,0,-3,88.742561,0,0,0,59,2,2,3,3,3,2019,4,1,15,5,0,28,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.9622087,8.3913813,4.2871699,3,58.299999,52.91,33.040001,29.73,6,1,1,0,0,12,3,1,1801.5,1269836.3,0,0,1591.3219 -11476,14116,25645,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,7.4021049,8.0685196,7.7328172,3,0,0,0,-9,0,-1057.9584,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,25,40,15,1,0,-9,0,8.0002499,8.0002499,0,0,0,0,0,0,0,7,1,1,0,.17954631,7.2652555,.27123293,3,52.369999,56.93,-9,-9,7,1,1,0,0,7,4,1,275,242981.14,0,0,2383.5256 -11477,14117,25646,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,6.1388984,5.9013238,3,0,0,0,-9,0,-948.04291,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7363214,0,0,23.049999,39.290001,-9,-9,3,1,1,0,0,10,2,0,886,736133.25,0,0,476.54608 -11478,14118,25647,25648,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,8.5137424,8.4529667,1,0,-9,53,0,0,103.20675,0,0,0,75,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2007957,8.6174192,0,0,62.099998,51.16,57.16,56.150002,6,1,1,0,0,9,4,1,998.5,2825374.3,0,0,4568.7178 -11478,14118,25648,25647,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,6.7523141,6.541172,1,0,-9,53,0,0,-64.249367,0,0,0,75,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3083432,6.7978563,0,0,57.16,56.150002,62.099998,51.16,6,1,1,0,0,9,4,1,998.5,2825374.3,0,0,4568.7178 -11479,14119,25649,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,1,1,0,0,3,7.0613599,7.3039937,0,3,0,-9,0,-9,0,-1001.3831,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,15,0,15,1,0,-9,0,12.80158,12.80158,0,0,0,0,0,0,0,0,0,0,0,3.6643555,0,0,0,44.43,56.740002,-9,-9,6,1,1,0,0,7,3,1,838,203149.14,0,0,-231.50696 -11479,14120,25650,-9,25649,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,7.827641,7.6612139,0,3,0,-9,0,-9,0,-972.82306,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,47,0,15,1,0,-9,1,5.8132329,5.8132329,0,0,0,0,0,0,0,0,0,0,0,2.8300042,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,3,1,552,176155.39,0,0,1367.1665 -11480,14121,25651,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,0,3,0,4.1236892,3.7365882,3,0,0,0,-9,0,-1078.1697,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2600567,3.7628329,0,3,44.27,26.469999,-9,-9,6,1,1,0,0,5,1,1,381,101759.29,0,0,162.56291 -11481,14122,25652,-9,25654,25653,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-875.76294,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,9,5,1,537.5,86644.008,0,0,6347.0562 -11481,14122,25653,25654,-9,-9,1,1,1,56,1,0,2,0,1,-9,2,1,0,0,4,9.6467409,9.6073866,0,2,0,-9,23,0,12,-8.4823704,0,0,0,44,1,4,1,2,2,2019,1,2,12,2,43,42,15,1,0,1,0,45.028347,45.028347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,54.200001,57.490002,6,1,1,0,0,9,5,1,537.5,86644.008,0,0,6347.0562 -11481,14122,25654,25653,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.766819,8.4421968,0,2,0,-9,23,0,-12,130.80872,0,0,1,56,1,4,1,2,2,2019,1,1,7,0,45,46,15,1,0,1,0,11.821012,11.821012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,9,5,1,537.5,86644.008,0,0,6347.0562 -11481,14122,25655,-9,25654,25653,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.27802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,537.5,86644.008,0,0,6347.0562 -11482,14123,25656,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,1,1,0,0,2,0,0,0,3,0,0,0,-9,0,-1051.2529,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.369999,29.040001,-9,-9,6,1,1,0,0,10,1,1,425,83763.656,0,0,0 -11483,14124,25657,25658,-9,-9,1,1,1,70,1,0,0,0,3,-9,1,1,0,0,2,5.2075543,7.4469256,7.5209441,1,0,-9,23,0,15,47.129337,0,0,0,55,2,4,1,3,3,2019,1,2,7,0,7,5,15,1,0,1,0,2.275811,2.275811,0,0,0,0,0,0,0,0,1,1,0,6.7808537,7.3915114,0,0,59.779999,40.380001,50.650002,60.470001,6,1,1,0,0,7,3,1,284,2429269,0,0,2513.1431 -11483,14124,25658,25657,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.5882101,7.2788401,0,1,0,-9,23,0,-15,-57.673309,0,0,0,70,3,2,1,3,3,2019,1,1,7,0,20,24,15,1,0,1,0,10.194335,10.194335,0,0,0,0,0,0,0,0,1,1,0,3.9203675,0,0,0,50.650002,60.470001,59.779999,40.380001,6,1,1,0,0,7,3,1,284,2429269,0,0,2513.1431 -11484,14125,25659,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,0,3,8.4207621,8.2901011,0,3,0,0,0,-9,0,-939.47363,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,65,60,15,1,0,-9,0,9.8944721,9.8944721,0,0,0,0,0,0,0,0,0,0,0,6.5017014,0,0,0,50.220001,52.720001,-9,-9,5,1,1,0,0,10,4,1,553,270887.38,0,0,1940.5193 -11485,14126,25660,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-921.53906,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.91,42.91,-9,-9,5,1,1,0,0,4,1,0,326,-133564.02,0,0,447.13727 -11486,14127,25661,25662,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,38,0,2,27.77747,0,0,0,62,2,4,3,3,2,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,49.02,56.380001,5,1,1,0,0,1,2,0,789,447561.78,0,0,2129.2961 -11486,14127,25662,25661,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,5.994936,6.045989,1,0,-9,38,0,-2,-103.91037,0,0,0,64,3,3,3,3,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.5509048,6.1622,75.831024,1,49.02,56.380001,50,47,6,1,1,0,0,1,2,0,789,447561.78,0,0,2129.2961 -11487,14128,25663,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1037.5098,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.779999,43.950001,-9,-9,4,1,1,0,0,13,1,0,243,-14411.45,0,0,1598.0502 -11488,14129,25664,-9,25665,25666,5,1,1,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-901.55627,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,6,2,0,798.33331,75534.078,0,0,1782.9896 -11488,14129,25665,25666,-9,-9,2,1,0,48,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,30,0,0,171.17773,0,0,0,57,1,3,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4165096,0,0,0,60.119999,54.799999,57.330002,53.459999,6,2,3,0,0,6,2,0,798.33331,75534.078,0,0,1782.9896 -11488,14129,25666,25665,-9,-9,1,1,1,57,1,0,1,0,1,-9,1,1,0,0,3,6.5109057,6.2524629,0,2,0,-9,30,0,9,-141.89345,0,0,0,48,3,4,3,-9,-9,2019,2,2,10,2,50,40,15,1,0,3,0,1.6651675,1.6651675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,60.119999,54.799999,6,2,3,0,1,6,2,0,798.33331,75534.078,0,0,1782.9896 -11488,14130,25667,-9,25665,25666,3,1,1,23,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1019.7303,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.369999,61.5,-9,-9,2,2,3,0,0,6,1,0,1699,156556.98,0,0,-3.1297822 -11488,14131,25668,-9,25665,25666,4,1,0,21,2,0,1,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1117.4219,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,14,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.439999,54.599998,-9,-9,6,2,3,0,0,6,1,0,367,-282291.84,0,0,1393.6818 -11489,14132,25669,25670,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,4,8.4811897,8.4542055,0,1,0,-9,6,0,-2,15.977107,0,0,0,58,2,4,1,3,3,2019,1,1,8,0,50,45,15,1,0,1,0,9.8233891,9.8233891,0,0,0,0,0,0,0,0,0,0,0,3.5322692,0,0,0,55.73,53.98,54.790001,55.860001,6,1,1,0,0,1,5,1,587,105056.13,0,0,1940.3462 -11489,14132,25670,25669,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,8.7590618,8.3754292,0,1,0,-9,6,0,2,-11.73319,0,0,0,56,2,4,1,3,3,2019,1,2,11,2,32,30,15,1,0,1,0,13.383936,13.383936,0,0,0,0,0,0,0,0,0,0,0,3.0381367,0,0,0,54.790001,55.860001,55.73,53.98,6,1,1,0,0,1,5,1,587,105056.13,0,0,1940.3462 -11490,14133,25671,25672,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,21,0,-14,0,0,0,0,76,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.85666865,0,30.873421,1,59.630001,41.439999,47.720001,29.84,5,1,1,0,0,4,1,0,931.5,-14928.354,0,0,3200.4658 -11490,14133,25672,25671,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,9,0,14,0,0,0,0,62,2,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,23.96768,0,1,1,0,0,0,0,0,47.720001,29.84,59.630001,41.439999,5,1,1,0,0,4,1,0,931.5,-14928.354,0,0,3200.4658 -11491,14134,25673,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,2,7.412529,8.0553789,0,3,0,0,0,-9,0,-910.85785,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,13,17,15,1,0,-9,0,20.74398,20.74398,0,0,0,0,0,0,0,2,0,0,0,3.6237559,0,0,3,47.889999,36.259998,-9,-9,1,1,1,0,0,11,3,1,680,281956.16,0,0,1134.1284 -11492,14135,25674,25676,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,0,5,7.2163553,7.2598972,0,2,0,-9,6,0,1,-50.922539,0,0,1,31,2,5,1,1,2,2019,1,1,19,7,20,20,15,1,1,1,0,5.8465662,5.8465662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.59,65.739998,41.77,60.77,3,1,1,0,1,6,3,1,1148.3334,280090.63,0,0,2253.7412 -11492,14135,25675,-9,25674,25676,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1013.082,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,3,1,1148.3334,280090.63,0,0,2253.7412 -11492,14135,25676,25674,-9,-9,1,1,1,31,1,1,1,0,2,-9,1,1,0,0,5,7.7981296,7.6298475,0,2,0,-9,6,0,-1,80.284378,0,0,0,32,1,5,1,2,2,2019,1,2,4,0,40,40,15,1,0,1,0,6.021224,6.021224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.77,60.77,25.59,65.739998,6,1,1,0,0,6,3,1,1148.3334,280090.63,0,0,2253.7412 -11493,14136,25677,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,7.0023203,7.4385314,3,0,0,0,-9,0,-861.8858,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3944427,6.9954329,0,0,41.34,56.619999,-9,-9,5,1,1,0,0,7,2,0,435,-173854.44,0,0,1028.8707 -11494,14137,25678,-9,25679,25680,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.6737,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,5,1,1254.3334,807516.44,0,0,4851.0698 -11494,14137,25679,25680,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.5186052,8.7929811,0,2,0,-9,11,0,-6,168.96385,0,0,1,43,2,3,1,-9,-9,2019,1,2,12,0,87,40,15,1,0,1,0,7.2072506,7.2072506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,54.959999,53.169998,6,1,1,0,0,6,5,1,1254.3334,807516.44,0,0,4851.0698 -11494,14137,25680,25679,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.7981863,8.3649616,0,2,0,-9,11,0,6,55.661591,0,0,0,37,1,4,1,-9,-9,2019,1,1,12,0,37,37,15,1,0,1,0,16.7073,16.7073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.790001,55.860001,6,1,1,0,0,6,5,1,1254.3334,807516.44,0,0,4851.0698 -11495,14138,25681,25683,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,7.8921967,7.8722363,0,2,0,-9,6,0,-1,-25.752855,0,0,0,50,1,5,1,2,2,2019,1,2,7,0,21,21,15,1,0,1,0,11.745962,11.745962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.630001,59.720001,46.880001,60.959999,2,1,1,0,0,4,4,1,520,160705.61,0,0,3423.5476 -11495,14138,25682,-9,25683,25681,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.5585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,1,520,160705.61,0,0,3423.5476 -11495,14138,25683,25681,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,5,8.0073404,8.5167274,7.2178245,2,0,-9,6,0,1,62.076309,0,0,0,49,1,4,1,1,1,2019,1,1,9,0,25,25,15,1,0,1,0,16.31052,16.31052,0,0,0,0,0,0,0,0,1,1,0,7.0675702,0,0,0,46.880001,60.959999,46.630001,59.720001,7,1,1,0,0,4,4,1,520,160705.61,0,0,3423.5476 -11496,14139,25684,25685,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,5,8.9206228,8.6953869,0,1,0,-9,1,-9,-5,-34.351162,-9,0,0,38,1,3,1,-9,-9,2019,1,1,6,0,35,0,15,1,0,1,0,17.160032,17.160032,0,0,0,0,0,0,0,0,0,0,0,3.0862541,0,0,0,56.470001,59.400002,28.57,61.360001,6,1,1,0,0,2,5,1,754.5,334852.38,0,0,3995.9419 -11496,14139,25685,25684,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,0,3,8.8960533,8.7362766,0,1,0,-9,1,-9,5,-51.154472,-9,0,1,33,1,5,1,-9,-9,2019,1,2,16,6,38,0,15,1,1,1,0,21.265444,21.265444,0,0,0,0,0,0,0,0,0,0,0,2.382354,0,0,0,28.57,61.360001,56.470001,59.400002,5,1,1,0,0,2,5,1,754.5,334852.38,0,0,3995.9419 -11497,14140,25686,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,97,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1103.7965,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.60725,3,42.439999,33.599998,-9,-9,3,1,1,0,1,9,1,0,2043,92352.953,0,0,-257.74414 -11498,14141,25687,-9,25688,25689,6,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1160.8253,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,5,0,0,6,4,1,358.5,316649.56,0,0,3327.1926 -11498,14141,25688,25689,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,0,3,8.0042429,8.0428505,0,2,0,-9,24,-9,-4,71.238518,-9,0,0,52,2,3,1,3,3,2019,1,2,7,0,30,0,15,1,0,1,0,11.146767,11.146767,0,0,0,0,0,0,0,0,1,1,0,.67420745,0,0,0,43.119999,58.549999,58.32,50.220001,2,4,5,0,0,6,4,1,358.5,316649.56,0,0,3327.1926 -11498,14141,25689,25688,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,3,8.8232088,8.5650902,0,2,0,-9,1,-9,4,97.618591,-9,0,0,48,1,3,1,-9,-9,2019,1,1,12,0,48,0,15,1,0,1,0,14.186639,14.186639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,43.119999,58.549999,5,4,5,0,0,6,4,1,358.5,316649.56,0,0,3327.1926 -11498,14141,25690,-9,25688,25689,5,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-965.07471,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,5,0,0,6,4,1,358.5,316649.56,0,0,3327.1926 -11498,14142,25691,-9,25688,25689,3,1,1,26,3,0,2,0,1,-9,2,1,0,0,4,7.9282866,8.3375053,0,3,0,-9,0,-9,0,-1021.7885,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,40,0,15,1,0,-9,1,9.2090988,9.2090988,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,60.470001,-9,-9,6,4,5,0,0,6,4,1,160,17032.982,0,0,1592.8215 -11498,14143,25692,-9,25688,25689,4,1,1,21,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,3,0,-9,0,-9,0,-990.66211,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.540001,58.849998,-9,-9,6,4,5,0,0,6,1,1,618,-99932.211,0,0,0 -11499,14144,25693,-9,25695,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1106.0199,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,1,0,678,132470.53,0,0,2779.1494 -11499,14144,25694,-9,25695,-9,2,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-988.0495,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,1,0,678,132470.53,0,0,2779.1494 -11499,14144,25695,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-901.513,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,24.450001,-9,-9,3,1,1,0,0,7,1,0,678,132470.53,0,0,2779.1494 -11500,14145,25696,-9,25698,-9,2,1,0,16,2,1,2,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-994.67072,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.17587087,0,0,0,41.990002,53.75,-9,-9,4,1,1,0,0,5,2,0,919.33331,37312.938,0,0,1032.6968 -11500,14145,25697,-9,25698,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1125.8613,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,0,919.33331,37312.938,0,0,1032.6968 -11500,14145,25698,-9,-9,-9,1,1,0,43,2,1,2,0,2,-9,6,3,0,0,3,0,6.3630285,6.4368353,4,0,0,0,-9,0,-893.7168,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.4787083,0,20.060141,3,34.73,60.049999,-9,-9,4,1,1,0,0,5,2,0,919.33331,37312.938,0,0,1032.6968 -11501,14146,25699,-9,25700,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-976.45178,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,0,2076,-24012.883,0,0,2621.7808 -11501,14146,25700,-9,-9,-9,1,1,0,54,3,0,2,0,3,-9,6,3,0,1,4,0,3.3982959,3.1344807,4,0,0,0,-9,0,-1120.9285,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,3.4966626,31.194832,3,52.380001,50.07,-9,-9,6,1,1,0,0,12,1,0,2076,-24012.883,0,0,2621.7808 -11501,14146,25701,-9,25700,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-862.84503,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,0,2076,-24012.883,0,0,2621.7808 -11502,14147,25702,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,3,0,4.4370465,4.6129417,3,0,0,0,-9,0,-1077.4847,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5121012,0,0,55,45,-9,-9,6,2,3,0,0,8,1,0,259,199940.73,0,0,1711.4883 -11502,14148,25703,25704,-9,25702,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.0952368,8.0433092,0,1,0,-9,20,0,12,53.615326,0,0,0,35,3,4,1,1,1,2019,1,3,9,1,37,50,15,1,0,1,0,9.6463413,9.6463413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,49,56,6,2,3,0,0,8,4,0,476.5,422868.06,0,0,3763.594 -11502,14148,25704,25703,-9,-9,3,1,0,35,1,0,0,0,3,-9,2,1,0,0,4,8.0287046,8.3360653,0,1,0,-9,20,0,-12,31.303991,0,0,1,47,2,4,1,2,2,2019,1,2,11,2,25,35,15,1,0,1,0,14.79478,14.79478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,56,53,55,5,2,3,0,0,8,4,0,476.5,422868.06,0,0,3763.594 -11503,14149,25705,25706,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,8,0,0,0,0,67,3,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.5,50.040001,51.139999,45.169998,1,2,3,0,0,5,1,0,876.5,336714.38,0,0,1387.0215 -11503,14149,25706,25705,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-8,0,0,0,0,75,3,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,45.169998,55.5,50.040001,7,2,3,0,0,5,1,0,876.5,336714.38,0,0,1387.0215 -11504,14150,25707,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,8.4676743,8.545146,0,3,0,0,0,-9,0,-1069.7869,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,38,40,15,1,1,-9,0,11.344306,11.344306,0,0,0,0,0,0,0,0,0,0,0,1.6904783,0,0,0,29.870001,62.189999,-9,-9,2,1,1,0,1,7,4,1,99,126071.56,0,0,1546.2009 -11504,14151,25708,-9,-9,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,8.3007784,8.2816133,0,3,0,0,0,-9,0,-935.13159,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,45,50,15,1,0,-9,0,8.4770069,8.4770069,0,0,0,0,0,0,0,0,0,0,0,6.5627217,0,0,0,62.66,52.400002,-9,-9,2,1,1,0,0,7,4,1,693,156374.64,0,0,2680.5913 -11505,14152,25709,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,6.9027672,6.8582225,3,0,0,0,-9,0,-1019.0236,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8100936,6.8209982,0,0,55.189999,30.32,-9,-9,6,1,1,0,0,9,2,1,388,465180.78,0,0,1668.6674 -11506,14153,25710,25711,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,3,8.7039433,8.6215382,5.3973851,1,0,-9,38,0,5,38.813171,0,0,0,62,1,4,3,3,3,2019,2,2,9,0,14,16,15,1,0,4,0,37.20908,37.20908,0,0,0,0,0,0,0,0,1,1,0,5.8818417,5.276217,0,0,52.990002,51.279999,48.869999,58.549999,6,1,1,0,0,2,4,1,209,1666914,0,0,1997.9005 -11506,14153,25711,25710,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,5.6041803,5.8614378,1,0,-9,38,0,-5,20.645321,0,0,0,67,2,3,1,3,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5936229,5.5443048,0,0,48.869999,58.549999,52.990002,51.279999,6,1,1,0,0,2,4,1,209,1666914,0,0,1997.9005 -11507,14154,25712,25714,-9,-9,1,1,1,53,1,0,1,0,2,-9,1,1,0,0,3,7.7837372,7.6494226,0,2,0,-9,10,0,2,91.620506,0,0,0,51,2,3,3,2,2,2019,2,2,13,4,60,50,15,1,1,3,0,4.8431082,4.8431082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.110001,50.75,34.790001,58.34,4,1,1,0,0,6,3,1,580.40002,645522.5,0,0,2246.7788 -11507,14154,25713,-9,25714,25712,5,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.97931,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,580.40002,645522.5,0,0,2246.7788 -11507,14154,25714,25712,-9,-9,2,1,0,51,1,0,1,0,2,-9,6,3,0,0,3,0,7.5036459,7.7041526,2,0,-9,10,0,-2,13.962883,0,0,0,53,2,3,1,2,2,2019,3,1,15,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9320893,0,0,0,34.790001,58.34,51.110001,50.75,4,1,1,0,0,6,3,1,580.40002,645522.5,0,0,2246.7788 -11507,14154,25715,-9,25714,25712,4,1,1,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1013.8854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,6,3,1,580.40002,645522.5,0,0,2246.7788 -11507,14154,25716,-9,25714,25712,6,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.6913,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,6,3,1,580.40002,645522.5,0,0,2246.7788 -11508,14155,25717,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1002.7734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,5,1,0,377,12126.112,0,0,2213.3945 -11509,14156,25718,-9,-9,-9,1,1,1,42,3,0,0,0,1,-9,2,1,0,0,4,8.5696192,8.5188093,0,3,0,0,0,-9,0,-943.51678,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,42,42,15,1,1,-9,0,13.537573,13.537573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.810001,61.470001,-9,-9,3,1,1,0,0,7,5,0,917,189586.73,0,0,2485.3203 -11510,14157,25719,25720,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,0,0,0,0,0,83,3,3,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.0429978,0,11.556792,3,64.160004,29.700001,54.919998,40.970001,7,1,1,0,0,4,1,1,1217,195678.88,0,0,-9.1588011 -11510,14157,25720,25719,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,9,0,0,0,0,74,2,3,3,-9,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.0060534,0,20.479118,3,54.919998,40.970001,64.160004,29.700001,7,1,1,0,0,4,1,1,1217,195678.88,0,0,-9.1588011 -11511,14158,25721,25722,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,0,3,7.0616775,7.2242417,4.3334827,1,0,-9,1,-9,3,84.10096,-9,0,0,63,2,4,1,-9,-9,2019,1,1,6,0,21,0,15,1,0,1,0,6.6673026,6.6673026,0,0,0,0,0,0,0,0,1,1,0,0,4.4981132,0,0,54.959999,53.169998,60.52,53.200001,6,1,1,0,0,7,4,0,291,57250.98,0,0,2405.0669 -11511,14158,25722,25721,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,0,4,8.5100479,8.3673391,0,1,0,-9,1,-9,-3,-55.222137,-9,0,0,66,2,3,1,3,3,2019,1,2,6,0,45,0,15,1,0,1,0,13.057673,13.057673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.200001,54.959999,53.169998,6,1,1,0,0,7,4,0,291,57250.98,0,0,2405.0669 -11512,14159,25723,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,0,2,0,7.6948223,7.8157587,3,0,0,0,-9,0,-996.48688,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.033721,7.9954262,6.2183871,3,63.330002,22.52,-9,-9,6,1,1,0,0,10,3,1,626,447050.41,0,0,3048.8799 -11513,14160,25724,25726,-9,-9,3,1,1,49,1,0,1,0,3,-9,3,3,0,1,1,0,0,0,2,0,-9,5,0,10,0,0,0,0,39,2,1,3,-9,-9,2019,4,1,32,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.6505399,2,37.619999,20.209999,41.240002,30.33,2,1,1,1,0,13,1,0,644,-7980.4546,0,0,2390.3574 -11513,14160,25725,-9,25726,25724,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.43768,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.18904495,3,26.1,59.610001,-9,-9,6,1,1,0,0,13,1,0,644,-7980.4546,0,0,2390.3574 -11513,14160,25726,25724,-9,-9,1,1,0,39,1,0,1,0,2,-9,3,3,0,1,1,0,0,0,2,0,-9,5,0,-10,0,0,0,1,49,3,1,3,3,3,2019,4,3,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4549267,3,41.240002,30.33,37.619999,20.209999,4,1,1,1,0,13,1,0,644,-7980.4546,0,0,2390.3574 -11514,14161,25727,25728,-9,-9,3,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.1800413,8.1216822,0,1,0,-9,7,0,-7,-87.688057,0,0,0,61,3,4,1,-9,-9,2019,1,1,12,0,37,47,15,1,0,1,0,12.088352,12.088352,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.1912,3,35.639999,55.099998,46.439999,59.619999,6,1,1,0,0,9,5,1,492.5,439922.06,0,0,3712.8149 -11514,14161,25728,25727,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,7.5703831,8.159811,7.3509736,1,0,-9,7,0,7,-22.361485,0,0,0,54,2,3,1,3,2,2019,1,3,10,1,38,38,15,1,0,1,0,5.2520027,5.2520027,0,0,0,0,0,0,0,14.5,1,1,0,0,7.606977,14.601963,3,46.439999,59.619999,35.639999,55.099998,5,1,1,0,0,9,5,1,492.5,439922.06,0,0,3712.8149 -11515,14162,25729,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1088.1075,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,1,1,0,0,10,1,0,464,113177.2,0,0,1840.6686 -11516,14163,25730,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-977.41431,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.470001,36.880001,-9,-9,3,1,1,0,0,2,1,1,151,222084.86,0,0,-248.34206 -11516,14164,25731,-9,-9,-9,2,1,1,50,3,0,0,0,1,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-894.59882,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2756076,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,1,1,1605,383419.91,0,0,-905.25415 -11517,14165,25732,-9,25738,25734,5,1,1,13,2,0,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-930.51996,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11517,14165,25733,-9,25738,25734,4,1,1,15,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.7762,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11517,14165,25734,25738,-9,-9,1,1,1,40,1,0,5,0,3,-9,8,3,1,1,4,0,0,0,2,0,-9,16,0,2,0,0,0,0,38,2,2,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,38.16,49.27,6,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11517,14165,25735,-9,25738,25734,3,1,0,17,2,0,5,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-973.6369,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.049999,64.300003,-9,-9,4,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11517,14165,25736,-9,25738,25734,7,1,1,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1187.339,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11517,14165,25737,-9,25738,25734,6,1,1,8,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.57019,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11517,14165,25738,25734,-9,-9,2,1,0,38,1,0,5,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,16,0,-2,0,0,0,1,40,3,4,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.796879,1,38.16,49.27,51,56,4,2,3,0,0,6,1,1,668.14288,30743.875,0,0,3560.1821 -11518,14166,25739,-9,-9,-9,1,1,1,35,3,0,0,0,1,-9,2,1,0,0,5,8.8985453,9.310318,0,3,0,0,0,-9,0,-911.81158,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,47,48,15,1,0,-9,0,20.383387,20.383387,0,0,0,0,0,0,0,0,1,1,0,.24809292,0,0,0,60.02,56.419998,-9,-9,1,1,1,0,0,12,5,1,606,54434.75,0,0,2995.4211 -11519,14167,25740,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.9481411,9.0069761,0,3,0,0,0,-9,0,-918.43805,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,60,60,15,1,0,-9,0,13.928108,13.928108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.93,49.950001,-9,-9,6,1,1,0,0,11,5,0,1363,298564.84,0,0,-278.45923 -11520,14168,25741,25742,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.541213,8.3244095,0,1,0,-9,10,0,-1,40.888145,0,0,0,59,1,5,1,2,1,2019,1,1,11,0,31,33,15,1,0,1,0,18.943848,18.943848,0,0,0,0,0,0,0,7,0,0,0,2.589792,0,9.0558558,3,43.849998,50.34,54.099998,59.110001,4,1,1,0,0,1,5,1,191.5,3383169.5,0,0,8060.1895 -11520,14168,25742,25741,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,5,9.8782959,9.3515902,0,1,0,-9,10,0,1,-46.207901,0,0,0,58,1,3,1,2,3,2019,1,2,7,0,30,30,15,1,0,1,0,67.981003,67.981003,0,0,0,0,0,0,0,0,0,0,0,3.8172145,0,0,0,54.099998,59.110001,43.849998,50.34,6,1,1,0,0,1,5,1,191.5,3383169.5,0,0,8060.1895 -11520,14169,25743,-9,25741,25742,4,1,1,26,2,0,0,0,1,-9,2,1,0,0,5,7.3781676,7.7556734,0,3,0,-9,0,-9,0,-1118.6617,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,28,11,30,0,15,1,1,-9,1,7.7057858,7.7057858,0,0,0,0,0,0,0,0,0,0,0,.6946137,0,0,0,26.9,62.16,-9,-9,3,1,1,0,0,1,3,1,1846,-9638.335,0,0,917.42114 -11520,14170,25744,-9,25741,25742,3,1,0,18,2,0,0,0,2,1,2,1,0,0,3,7.7037206,7.8266497,0,3,0,0,0,-9,0,-925.96558,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,35,0,15,1,0,-9,1,6.5998077,6.5998077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,1,3,1,548,-83663.258,0,0,1222.3785 -11521,14171,25745,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,1,0,6.3562665,5.7140174,3,0,0,0,-9,0,-1005.9063,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4836373,0,0,41.290001,24.559999,-9,-9,6,1,1,0,0,11,2,0,184,240036.7,0,0,869.99957 -11522,14172,25746,25747,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,5,0,8.5480118,8.1366692,1,0,-9,42,0,-3,64.661774,0,0,0,71,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9016457,8.0094233,0,0,51.709999,58.830002,53.82,45.880001,6,1,1,0,0,8,5,1,450,2018320.5,0,0,4009.2554 -11522,14172,25747,25746,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,2,0,8.6769829,8.1632767,1,0,-9,42,0,3,43.664864,0,0,0,68,1,5,3,1,1,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1219201,8.1251059,0,0,53.82,45.880001,51.709999,58.830002,6,1,1,0,0,8,5,1,450,2018320.5,0,0,4009.2554 -11523,14173,25748,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,4,9.2653399,9.1391697,0,3,0,-9,0,-9,0,-964.61084,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,78,0,15,1,0,-9,0,11.124145,11.124145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.369999,44.389999,-9,-9,6,1,1,0,0,5,5,1,152,1619121.8,0,0,2514.1265 -11524,14174,25749,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,1,0,4.3247313,4.2537799,3,0,0,0,-9,0,-968.16766,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,78.860992,0,0,7.5299182,13.995823,800.76654,0,1,1,0,0,3.7191367,0,0,33.799999,37.380001,-9,-9,4,1,1,0,0,9,2,1,548,298274.59,0,0,1311.554 -11525,14175,25750,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,5,7.8034625,8.467248,0,3,0,0,0,-9,0,-860.61945,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,35,15,1,0,-9,0,10.692184,10.692184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.299999,59.889999,-9,-9,5,1,1,0,0,12,4,0,2978,-116867.91,0,0,2278.0518 -11526,14176,25751,25753,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,9.0426331,9.179986,0,2,0,-9,24,0,-2,4.7173529,0,0,0,52,1,3,1,1,2,2019,1,1,8,0,45,45,15,1,0,1,0,23.38765,23.38765,0,0,0,0,0,0,0,0,0,0,0,3.6359305,0,0,0,43.540001,59.599998,53.240002,50.009998,6,1,1,0,0,7,5,1,902.66669,1423181,0,0,6114.4238 -11526,14176,25752,-9,25753,25751,3,1,1,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1052.4076,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,7,1,1,0,0,7,5,1,902.66669,1423181,0,0,6114.4238 -11526,14176,25753,25751,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,3,8.7609758,9.0139494,0,2,0,-9,24,0,2,-15.198992,0,0,0,50,1,4,1,2,3,2019,1,2,8,1,50,47,15,1,0,1,0,16.462938,16.462938,0,0,0,0,0,0,0,0,0,0,0,1.0464222,0,0,0,53.240002,50.009998,43.540001,59.599998,1,1,1,0,0,7,5,1,902.66669,1423181,0,0,6114.4238 -11527,14177,25754,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,0,3,8.7938423,8.5447426,4.8022575,3,0,0,0,-9,0,-1013.447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,35,40,15,1,1,-9,0,21.189623,21.189623,0,0,0,0,0,0,0,7,0,0,0,5.2445598,5.4777613,0,3,34.959999,54.380001,-9,-9,3,1,1,0,0,8,5,0,725,219650.05,0,0,2978.8848 -11528,14178,25755,25756,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,6.7618823,6.2369404,1,0,-9,48,0,-1,31.276237,0,0,0,66,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6114159,6.7473297,0,0,51,47,55.790001,52.619999,5,1,1,0,0,11,4,1,1954,1854060.3,0,0,5715.9619 -11528,14178,25756,25755,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,8.533535,8.879015,1,0,-9,48,0,1,-68.704796,0,0,0,65,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.457696,8.701251,0,0,55.790001,52.619999,51,47,1,1,1,0,0,11,4,1,1954,1854060.3,0,0,5715.9619 -11529,14179,25757,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,0,4,9.5825233,9.9095182,0,3,0,0,0,-9,0,-1078.533,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,60,55,15,1,0,-9,0,35.299549,35.299549,0,0,0,0,0,0,0,2,1,1,0,3.9780834,0,0,3,62.639999,49.560001,-9,-9,6,1,1,0,0,7,5,1,813,1081881,0,0,5237.4326 -11530,14180,25758,-9,25761,25759,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.8783,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,3,1,607,348043.25,0,0,2968.7815 -11530,14180,25759,25761,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,1,8.5540676,8.4091454,0,2,0,-9,5,0,-1,23.320719,0,0,0,42,3,1,1,2,2,2019,1,1,12,2,38,40,15,1,0,1,0,10.778981,10.778981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.119999,18.77,21.370001,22.93,6,1,1,0,0,13,3,1,607,348043.25,0,0,2968.7815 -11530,14180,25760,-9,25761,25759,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-875.65417,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,13,3,1,607,348043.25,0,0,2968.7815 -11530,14180,25761,25759,-9,-9,1,1,0,42,1,0,2,0,3,-9,2,1,0,0,1,6.6716571,6.9054985,0,2,0,-9,5,0,1,-37.809654,0,0,1,41,2,1,1,2,2,2019,1,2,33,11,16,16,15,1,1,1,0,8.0899391,8.0899391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.370001,22.93,48.119999,18.77,4,1,1,0,0,13,3,1,607,348043.25,0,0,2968.7815 -11531,14181,25762,25763,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,5,0,6.6640553,6.9055014,1,0,-9,48,0,-2,-36.027565,0,0,0,69,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7910829,0,0,60.02,56.419998,54.200001,57.490002,7,1,1,0,0,1,5,1,613.5,2211795.3,0,0,4812.4072 -11531,14181,25763,25762,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,9.2904091,8.8615112,1,0,-9,48,0,2,-14.943863,0,0,0,67,3,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.021292,8.8224525,0,0,54.200001,57.490002,60.02,56.419998,7,1,1,0,0,1,5,1,613.5,2211795.3,0,0,4812.4072 -11532,14182,25764,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,2,1,0,0,4,6.7275977,7.9279103,6.9454865,3,0,0,0,-9,0,-1066.7957,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,17,14,15,1,0,-9,0,5.87572,5.87572,0,0,0,0,0,0,0,2,1,1,0,0,7.1500397,7.264462,3,45.330002,53.16,-9,-9,4,1,1,0,0,10,3,1,1589,95940.32,0,0,1474.7716 -11532,14183,25765,-9,25764,-9,2,1,1,41,2,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-927.49207,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.440001,32.419998,-9,-9,2,1,1,1,1,10,1,1,1435,0,0,0,1263.2379 -11533,14184,25766,25767,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,5,0,5.1900096,5.459022,1,0,-9,6,0,-7,-69.35733,0,0,0,78,3,4,1,2,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6781111,5.1998477,9.8653078,3,62.389999,56.709999,53.93,52.080002,7,1,1,0,0,13,2,1,404.5,83708.328,0,0,1911.0452 -11533,14184,25767,25766,-9,-9,1,1,1,78,1,0,0,0,3,-9,1,1,0,0,4,0,0,0,1,0,-9,6,0,7,-105.31395,0,0,0,71,2,5,3,3,3,2019,2,2,8,0,70,0,15,1,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.93,52.080002,62.389999,56.709999,6,1,1,0,0,13,2,1,404.5,83708.328,0,0,1911.0452 -11534,14185,25768,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,5,8.1650124,8.3266506,0,3,0,0,0,-9,0,-1039.5796,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,41,40,15,1,0,-9,0,9.2957163,9.2957163,0,0,0,0,0,0,0,0,1,0,1,2.6483378,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,11,4,1,302,34352.676,0,0,847.97253 -11534,14186,25769,-9,25768,-9,2,1,0,22,2,0,0,0,1,1,2,1,0,0,4,7.7435155,7.8690882,0,3,0,0,0,-9,0,-1162.1273,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,30,0,15,1,0,-9,1,8.4413595,8.4413595,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,11,3,1,333,-42655.43,0,0,-804.24475 -11535,14187,25770,25771,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,7.8786931,7.9635372,1,0,-9,45,0,6,-111.97038,0,0,0,65,1,3,1,2,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1990275,7.8020768,0,0,58.32,50.220001,56.52,48.310001,6,1,1,0,0,7,3,1,659,82015.055,0,0,2454.5708 -11535,14187,25771,25770,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,0,3,0,5.6288843,6.0201149,1,0,-9,45,0,-6,-107.1207,0,0,0,71,1,3,3,2,1,2019,2,2,6,0,15,2,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2830477,5.4002285,0,0,56.52,48.310001,58.32,50.220001,6,1,1,0,0,7,3,1,659,82015.055,0,0,2454.5708 -11536,14188,25772,25773,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,2,6.5236878,8.0713005,8.1903601,1,0,-9,45,0,5,21.880678,0,0,0,62,2,3,1,3,3,2019,3,1,16,4,4,5,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7035537,7.7349792,0,0,13.66,41.52,50.650002,53.709999,2,1,1,0,0,2,4,1,2235.5,979584.88,0,0,3747.9631 -11536,14188,25773,25772,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.6242123,7.8865356,0,1,0,-9,45,0,-5,50.929691,0,0,0,67,1,2,3,2,2,2019,2,2,10,0,1,10,15,1,0,4,0,257.80112,257.80112,0,0,0,0,0,0,0,0,1,1,0,4.1700044,0,0,0,50.650002,53.709999,13.66,41.52,6,1,1,0,0,2,4,1,2235.5,979584.88,0,0,3747.9631 -11537,14189,25774,-9,-9,-9,1,1,0,36,2,1,1,0,1,-9,5,1,0,0,2,0,6.0638461,5.9736896,4,0,0,0,-9,0,-983.42938,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4073086,0,0,0,31.09,45.59,-9,-9,3,1,1,0,0,8,2,0,724.5,53357.297,0,0,81.879456 -11537,14189,25775,-9,25774,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1052.1082,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,8,2,0,724.5,53357.297,0,0,81.879456 -11538,14190,25776,-9,25777,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1134.9174,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,-9,-9,6,3,4,0,0,7,1,1,195,-38263.121,0,0,-327.00818 -11538,14191,25777,-9,-9,-9,2,1,0,93,3,0,0,0,3,-9,4,3,0,0,1,0,6.0958667,5.9182148,3,0,0,0,-9,0,-1122.5331,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7106528,0,0,49.290001,30.65,-9,-9,5,3,4,0,0,7,2,1,175,411522.13,0,0,132.49031 -11539,14192,25778,25779,-9,-9,7,1,0,28,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-6,-16.806364,0,1,1,34,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,57,50,57,5,2,3,0,0,8,3,1,742.25,-45538.41,0,0,2728.3438 -11539,14192,25779,25778,25785,25786,1,1,1,34,1,0,3,0,2,-9,2,1,0,0,4,8.6066942,8.3882933,0,2,0,-9,5,0,6,192.56462,0,0,0,28,3,4,3,3,3,2019,2,7,10,1,38,35,15,1,0,3,0,16.009892,16.009892,0,0,0,0,0,0,0,0,1,1,0,3.3289638,0,0,3,50,57,47,57,5,2,3,0,0,8,3,1,742.25,-45538.41,0,0,2728.3438 -11539,14192,25780,-9,25778,25779,9,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.73993,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,742.25,-45538.41,0,0,2728.3438 -11539,14192,25781,-9,25778,25779,8,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1216.2253,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,1,742.25,-45538.41,0,0,2728.3438 -11539,14193,25782,-9,25785,25786,2,1,1,27,2,0,3,0,2,-9,2,1,0,0,4,6.7734518,7.096333,0,3,0,0,0,-9,0,-968.99066,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,30,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,58,-9,-9,5,2,3,0,0,8,2,1,1059,-150190.53,0,0,-285.94485 -11539,14194,25783,-9,25785,25786,3,1,0,18,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-943.25568,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,-9,-9,5,2,3,0,0,8,3,1,705,-23682.521,0,0,0 -11539,14195,25784,-9,25785,25786,4,1,0,20,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-922.87708,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,-9,-9,5,2,3,0,0,8,1,1,874,105559.6,0,0,-713.74719 -11539,14196,25785,25786,-9,-9,5,1,0,56,1,0,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,41,0,-4,0,0,0,0,60,3,3,3,3,2,2019,4,6,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.872767,1,49,48,51,48,5,2,3,0,0,8,1,1,626.5,358253.06,0,0,2325.1731 -11539,14196,25786,25785,-9,-9,6,1,1,60,1,0,3,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,4,0,0,0,0,56,3,3,3,-9,-9,2019,4,5,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,48,5,2,3,1,0,8,1,1,626.5,358253.06,0,0,2325.1731 -11540,14197,25787,25788,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.7676649,8.6592684,0,1,0,-9,11,0,1,9.6450005,-9,0,0,54,2,3,1,-9,-9,2019,1,1,11,0,57,0,15,1,0,1,0,9.3952684,9.3952684,0,0,0,0,0,0,0,0,0,0,0,3.5456851,0,0,0,56.82,45.810001,49.040001,55.860001,6,1,1,0,0,4,5,1,1357,227159.69,0,0,3784.324 -11540,14197,25788,25787,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.1914654,8.1261225,0,1,0,-9,36,0,-1,-8.02526,0,0,0,55,2,3,1,3,3,2019,1,2,12,0,32,32,15,1,0,1,0,11.437275,11.437275,0,0,0,0,0,0,0,0,0,0,0,3.7196496,0,0,0,49.040001,55.860001,56.82,45.810001,5,1,1,0,0,4,5,1,1357,227159.69,0,0,3784.324 -11541,14198,25789,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1095.9812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.000126,0,0,0,56.18,48.32,-9,-9,1,1,1,0,0,9,1,0,827,10274.814,0,0,389.7681 -11542,14199,25790,25791,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,0,5,8.6314831,9.0242014,0,1,0,-9,7,0,1,-71.613731,0,0,0,37,2,5,1,2,2,2019,1,2,10,0,47,44,15,1,0,1,0,22.44479,22.44479,0,0,0,0,0,0,0,0,0,0,0,3.9345286,0,0,0,54.099998,59.110001,40.950001,63.66,6,1,1,0,0,1,5,1,355,541198.25,0,0,3388.8984 -11542,14199,25791,25790,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,0,5,8.512063,8.246398,0,1,0,-9,7,0,-1,-43.983135,0,0,1,38,2,5,1,-9,-9,2019,1,1,13,6,41,45,15,1,1,1,0,16.902422,16.902422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.950001,63.66,54.099998,59.110001,3,1,1,0,0,1,5,1,355,541198.25,0,0,3388.8984 -11543,14200,25792,25793,-9,-9,2,1,0,50,1,0,0,0,1,-9,97,3,0,0,3,0,0,0,1,0,-9,8,0,-13,0,0,0,0,63,1,4,1,2,-9,2019,3,1,20,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.799999,49.169998,48.869999,58.549999,3,2,3,0,0,8,1,1,610,982624.5,0,0,0 -11543,14200,25793,25792,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,13,0,13,0,0,0,0,50,1,3,3,2,2,2019,2,2,7,0,0,16,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,63.799999,49.169998,2,2,3,0,0,8,1,1,610,982624.5,0,0,0 -11544,14201,25794,25795,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,8.0121403,7.9261789,1,0,-9,6,0,2,-24.382133,0,0,0,67,2,4,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5580845,7.9620724,0,0,50.060001,55.279999,58.900002,45.740002,6,1,1,0,0,2,3,1,675.5,1259854.8,0,0,4644.416 -11544,14201,25795,25794,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.1064267,7.1075287,1,0,-9,6,0,-2,18.260345,0,0,0,69,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.075942,0,0,58.900002,45.740002,50.060001,55.279999,6,1,1,0,0,2,3,1,675.5,1259854.8,0,0,4644.416 -11545,14202,25796,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,2,0,6.4173923,6.3774805,3,0,0,0,-9,0,-1078.7378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4029121,6.1564755,0,0,49.369999,35.689999,-9,-9,6,1,1,0,0,12,2,0,773,155175.09,0,0,1314.7245 -11546,14203,25797,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-976.61072,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.34,22.34,-9,-9,4,1,1,0,0,6,1,0,272,295105.09,0,0,1121.0947 -11547,14204,25798,-9,25799,25800,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.2654,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,5,1,522,1243881.6,0,0,4881.4951 -11547,14204,25799,25800,-9,-9,2,1,0,37,1,1,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-5,17.674164,0,0,1,42,1,3,1,-9,-9,2019,3,1,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,47.150002,56.66,6,1,1,0,0,12,5,1,522,1243881.6,0,0,4881.4951 -11547,14204,25800,25799,-9,-9,1,1,1,42,1,1,1,0,1,-9,1,1,0,0,3,9.7137146,9.6483669,0,2,0,-9,6,0,5,-122.08769,0,0,0,37,1,4,3,1,1,2019,2,2,7,0,35,35,15,1,0,3,0,42.964596,42.964596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.150002,56.66,48.869999,58.549999,6,1,1,0,0,12,5,1,522,1243881.6,0,0,4881.4951 -11548,14205,25801,25803,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,8.2143793,7.8786511,0,2,0,-9,9,0,7,75.266594,0,0,0,35,1,5,1,3,2,2019,1,1,9,0,37,37,15,1,0,1,0,12.116288,12.116288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.07,49.950001,54.349998,57.84,5,2,3,0,0,2,5,1,527.75,803645.5,0,0,4324.3564 -11548,14205,25802,-9,25803,25801,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.7238,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,2,5,1,527.75,803645.5,0,0,4324.3564 -11548,14205,25803,25801,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,5,8.8750534,8.6525612,0,2,0,-9,9,0,-7,-5.5037637,0,0,1,42,1,3,1,3,3,2019,1,2,9,0,45,45,15,1,0,1,0,15.505684,15.505684,0,0,0,0,0,0,0,2,1,1,0,6.658246,0,10.024061,3,54.349998,57.84,56.07,49.950001,6,2,3,0,0,2,5,1,527.75,803645.5,0,0,4324.3564 -11548,14205,25804,-9,25803,25801,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.38409,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,5,1,527.75,803645.5,0,0,4324.3564 -11549,14206,25805,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,3,8.2663078,8.3152075,0,3,0,0,0,-9,0,-970.82019,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,0,13.083168,13.083168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.470001,50.220001,-9,-9,6,1,1,0,0,8,4,0,181,49704.574,0,0,-168.63654 -11550,14207,25806,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,2,0,6.8651228,6.7706561,3,0,0,0,-9,0,-994.42456,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7833443,0,0,53.279999,31.01,-9,-9,4,1,1,0,0,1,2,1,153,394417.81,0,0,1538.772 -11551,14208,25807,25808,-9,-9,1,1,1,59,1,0,1,0,2,-9,1,1,0,1,4,9.3930807,9.9170179,2.1404788,2,0,-9,28,0,8,-26.638075,0,0,0,51,3,4,1,-9,3,2019,1,2,6,0,40,0,15,1,0,1,0,40.386475,40.386475,0,0,0,0,0,0,0,0,1,1,0,2.8142538,2.8378446,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,5,5,1,336.33334,74877.047,0,0,5898.0112 -11551,14208,25808,25807,-9,-9,2,1,0,51,1,0,1,0,3,-9,2,1,0,0,4,8.2221384,7.9681811,0,2,0,-9,28,0,-8,40.929737,0,0,0,59,2,4,1,2,2,2019,1,1,12,0,33,30,15,1,0,1,0,9.4248476,9.4248476,0,0,0,0,0,0,0,0,1,1,0,3.3862476,0,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,5,5,1,336.33334,74877.047,0,0,5898.0112 -11551,14208,25809,-9,25808,25807,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.74573,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,5,1,336.33334,74877.047,0,0,5898.0112 -11552,14209,25810,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,2,1,0,0,3,5.9141946,7.3877478,6.9363108,3,0,0,0,-9,0,-954.58142,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,8,8,15,1,0,-9,0,6.8774614,6.8774614,0,0,0,0,0,0,0,0,1,1,0,0,7.6216478,0,0,61.849998,47.259998,-9,-9,6,1,1,0,0,10,3,1,393,107550.2,0,0,1205.621 -11553,14210,25811,25812,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,0,5,6.2046819,6.2474861,0,1,0,-9,36,0,1,-115.81134,0,0,0,59,2,2,1,2,2,2019,1,2,12,1,20,30,15,1,0,1,0,3.2991631,3.2991631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,57.57,44.16,4,1,1,0,0,7,5,1,1656,2328258.5,0,0,4318.6055 -11553,14210,25812,25811,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,2,9.5610313,9.3374443,0,1,0,-9,36,0,-1,.083594732,0,0,0,60,1,5,1,2,2,2019,1,1,10,0,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,44.16,51.139999,60.450001,6,1,1,0,0,7,5,1,1656,2328258.5,0,0,4318.6055 -11553,14211,25813,-9,25811,25812,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,8.2032137,8.0699358,0,3,0,0,0,-9,0,-975.03595,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,43,44,15,1,0,-9,1,11.939898,11.939898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,7,4,1,295,-44271.82,0,0,2473.0823 -11554,14212,25814,25816,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,0,3,8.3124981,8.4106865,0,2,0,-9,3,0,8,-164.21878,0,0,0,28,2,3,3,3,3,2019,2,2,8,0,40,37,15,1,0,3,0,13.822122,13.822122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.23,46.77,40.880001,33.849998,5,3,4,0,0,2,3,0,525.33331,411117.34,0,0,1643.1216 -11554,14212,25815,-9,25816,25814,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.7515,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,2,3,0,525.33331,411117.34,0,0,1643.1216 -11554,14212,25816,25814,-9,-9,2,1,0,28,1,1,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,3,0,-8,-43.73167,0,1,1,36,1,3,1,-9,-9,2019,3,1,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.880001,33.849998,54.23,46.77,6,3,4,0,0,2,3,0,525.33331,411117.34,0,0,1643.1216 -11555,14213,25817,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,0,3,0,6.6675706,6.9330511,3,0,0,0,-9,0,-1000.7819,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,7.1387196,0,0,0,0,1,1,0,0,6.9021974,0,0,53.389999,44.470001,-9,-9,6,1,1,0,0,5,2,0,1056,488159.78,0,0,1650.5026 -11556,14214,25818,25819,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,5.5477896,5.5380607,1,0,-9,6,0,-6,-188.25302,0,0,0,72,3,3,3,3,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8036261,5.3282781,0,0,46.389999,60.990002,60.049999,45.349998,6,1,1,0,0,4,3,1,1360,553155.06,0,0,2272.7808 -11556,14214,25819,25818,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,8.0667601,8.2066669,1,0,-9,6,0,6,163.46426,0,0,0,66,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1132712,7.8222175,0,0,60.049999,45.349998,46.389999,60.990002,6,1,1,0,0,4,3,1,1360,553155.06,0,0,2272.7808 -11557,14215,25820,25821,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,-3,-128.74046,0,0,0,81,3,4,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,49.27,56.950001,6,1,1,0,0,10,4,1,1009.5,992721.06,0,0,3490.8284 -11557,14215,25821,25820,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,4,0,8.288229,8.6571026,1,0,-9,60,0,3,138.89006,0,0,0,78,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7449465,8.2352943,0,0,49.27,56.950001,52,45,6,1,1,0,0,10,4,1,1009.5,992721.06,0,0,3490.8284 -11558,14216,25822,25823,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.4813943,6.5549269,1,0,-9,47,0,6,21.916206,0,0,0,64,3,3,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4805765,6.4322476,0,0,54.200001,57.490002,55.360001,51.57,6,1,1,0,0,10,2,1,647,305764.03,0,0,1541.8149 -11558,14216,25823,25822,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,5.2001362,4.9285645,2.5355318,1,0,-9,47,0,-6,-37.517155,0,0,0,70,3,4,3,3,3,2019,4,1,7,0,7,4,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.2672156,2.2946026,8.6910334,3,55.360001,51.57,54.200001,57.490002,6,1,1,0,0,10,2,1,647,305764.03,0,0,1541.8149 -11559,14217,25824,25825,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.818572,8.3821907,0,1,0,-9,36,0,1,9.7623386,0,0,0,56,2,4,1,2,-9,2019,1,2,11,0,48,48,15,1,0,1,0,11.056995,11.056995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,46.580002,54.200001,57.490002,6,1,1,0,0,10,5,1,794.5,186540.83,0,0,2888.0725 -11559,14217,25825,25824,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.6068254,7.7440848,0,1,0,-9,10,0,-1,72.297836,0,0,0,57,2,3,1,-9,-9,2019,1,1,7,0,30,0,15,1,0,1,0,8.5409193,8.5409193,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,60.299999,46.580002,6,1,1,0,0,10,5,1,794.5,186540.83,0,0,2888.0725 -11560,14218,25826,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,1,1,0,0,4,9.2525549,9.5923243,0,3,0,0,0,-9,0,-936.38873,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,3,60,60,15,1,0,-9,0,21.913239,21.913239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,43.48,-9,-9,5,1,1,0,0,8,5,1,986,1182695,0,0,3712.877 -11561,14219,25827,-9,-9,-9,1,1,0,32,2,0,0,0,1,1,2,1,0,0,4,8.195055,8.3674088,0,3,0,0,0,-9,0,-984.2569,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,38,0,15,1,0,-9,0,11.940468,11.940468,0,0,0,0,0,0,0,0,0,0,0,2.7693493,0,0,0,46.049999,55.689999,-9,-9,6,1,1,0,0,2,4,1,174,60184.191,0,0,2058.6321 -11562,14220,25828,25829,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,1,3,8.5835066,8.4861851,0,1,0,-9,10,0,-2,-98.623009,0,0,0,59,2,3,1,3,-9,2019,1,2,10,0,40,40,15,1,0,1,0,13.627436,13.627436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,49.459999,32.950001,48.189999,5,1,1,0,0,2,5,1,1155.5,1152631.9,0,0,4412.5034 -11562,14220,25829,25828,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.6486664,8.7014303,6.228519,1,0,-9,10,0,2,5.1946349,0,0,0,57,3,3,1,2,2,2019,1,1,24,8,36,38,15,1,1,1,0,14.346798,14.346798,0,0,0,0,0,0,0,0,1,1,0,0,6.8464584,0,0,32.950001,48.189999,48.450001,49.459999,5,1,1,0,0,2,5,1,1155.5,1152631.9,0,0,4412.5034 -11563,14221,25830,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,4,7.8921585,8.241498,0,3,0,0,0,-9,0,-1118.1908,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,0,7.2042947,7.2042947,0,0,0,0,0,0,0,2,1,1,0,0,0,.50977677,3,52.93,55.310001,-9,-9,6,1,1,0,0,2,3,1,262,-52429.887,0,0,1141.3855 -11564,14222,25831,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,3,7.8820982,7.8148389,0,3,0,0,0,-9,0,-1015.8802,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,95,55,15,1,0,-9,0,4.1246662,4.1246662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,9,4,0,169,13254.251,0,0,1555.3666 -11565,14223,25832,25833,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,7.2955775,7.5117397,1,0,-9,9,0,-6,103.49192,0,0,0,70,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3921106,7.2059345,0,0,46.549999,45.860001,41.259998,28.58,5,1,1,0,0,11,3,1,1330.5,1428706,0,0,3667.0801 -11565,14223,25833,25832,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,6.6644053,6.9104009,1,0,-9,9,0,6,-44.911827,0,0,0,64,2,3,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9409192,6.9699516,0,0,41.259998,28.58,46.549999,45.860001,6,1,1,0,0,11,3,1,1330.5,1428706,0,0,3667.0801 -11566,14224,25834,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-925.36865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.6566782,0,0,0,64.57,36.450001,-9,-9,6,1,1,0,0,10,1,1,278,142091.39,0,0,1399.9803 -11567,14225,25835,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1021.2734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,1,-9,0,0,0,1,1.5647185,0,0,0,10.83713,0,0,1,1,0,1.0664039,0,0,0,38.75,21.889999,-9,-9,4,1,1,0,0,9,1,0,724,-2856.9707,0,0,2287.2117 -11568,14226,25836,25837,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,8.2399483,8.241704,0,1,0,-9,1,-9,-1,-29.893009,-9,0,0,64,2,2,1,-9,-9,2019,1,1,16,5,45,0,15,1,1,1,0,11.524266,11.524266,0,0,0,0,0,0,0,0,0,0,0,2.1581438,0,0,0,61,34.09,56.189999,46.16,6,1,1,0,0,12,5,1,504.5,2447330.3,0,0,4822.2949 -11568,14226,25837,25836,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,8.9904089,9.1978149,4.073874,1,0,-9,39,-9,1,93.326233,-9,0,0,63,1,4,1,3,-9,2019,1,2,7,0,40,0,15,1,0,1,0,21.360929,21.360929,0,0,0,0,0,0,0,0,0,0,0,3.1869471,4.529285,0,0,56.189999,46.16,61,34.09,6,1,1,0,0,12,5,1,504.5,2447330.3,0,0,4822.2949 -11569,14227,25838,25839,-9,-9,2,1,0,70,1,2,2,0,2,-9,1,1,0,0,3,6.4656196,5.8957968,0,2,0,-9,52,0,-3,-49.095291,0,0,0,73,2,1,3,-9,-9,2019,2,1,7,0,7,9,15,1,0,4,0,12.220996,12.220996,0,0,0,0,0,0,0,0,1,1,0,3.4228458,0,0,0,53.139999,45.740002,50.09,31.4,6,1,1,0,0,7,3,1,477.5,317704.88,0,0,2821.6416 -11569,14227,25839,25838,-9,-9,1,1,1,73,1,2,2,0,2,-9,4,3,0,0,1,0,7.9451327,8.0693169,2,0,-9,52,0,3,94.674217,0,0,0,70,2,3,1,3,3,2019,3,2,19,7,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4824543,0,0,50.09,31.4,53.139999,45.740002,5,1,1,0,0,7,3,1,477.5,317704.88,0,0,2821.6416 -11570,14228,25840,25841,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,0,8.0348749,8.0110893,1,0,-9,47,0,-3,176.62012,0,0,0,67,3,1,3,3,2,2019,4,1,8,1,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.8365612,7.8146338,4.1998334,1,57.73,30.59,34.470001,19.620001,5,1,1,0,0,6,3,1,2116,1397330.5,0,0,2255.5488 -11570,14228,25841,25840,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,47,0,3,-14.066893,0,0,0,64,2,2,3,3,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3654332,0,0,0,34.470001,19.620001,57.73,30.59,2,1,1,0,0,6,3,1,2116,1397330.5,0,0,2255.5488 -11571,14229,25842,25843,-9,-9,1,1,1,54,1,0,0,0,3,-9,4,3,0,1,1,0,6.4402628,6.7953639,1,0,-9,31,0,1,58.109825,0,0,0,53,2,3,1,3,3,2019,3,2,13,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8450197,6.2686949,0,0,20.9,21.84,43.900002,57.009998,2,1,1,0,0,12,4,1,425.5,209491.91,0,0,1700.1545 -11571,14229,25843,25842,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.1497698,8.0996065,0,1,0,-9,31,0,-1,39.252922,0,0,0,54,3,1,3,2,2,2019,2,1,11,0,37,37,15,1,0,4,0,12.798032,12.798032,0,0,0,0,0,0,0,7,1,1,0,0,0,9.4753637,1,43.900002,57.009998,20.9,21.84,6,1,1,0,0,12,4,1,425.5,209491.91,0,0,1700.1545 -11572,14230,25844,25845,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,4,103.78785,0,0,0,74,2,4,3,3,3,2019,4,1,6,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.73,16.629999,53.419998,52.330002,7,1,1,0,0,10,2,1,578,728592.13,0,0,1593.9155 -11572,14230,25845,25844,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,4,0,7.3185081,7.0333042,1,0,-9,48,0,-4,51.724056,0,0,0,78,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0420837,7.1027822,0,0,53.419998,52.330002,58.73,16.629999,6,1,1,0,0,10,2,1,578,728592.13,0,0,1593.9155 -11573,14231,25846,25847,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.1584358,8.323658,1,0,-9,6,0,5,108.1022,0,0,0,64,3,1,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7150583,8.2297668,.16934866,3,49.34,47.5,39.369999,34.869999,6,1,1,0,0,9,3,1,1082.5,1454049.3,0,0,2899.0962 -11573,14231,25847,25846,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,38,0,-5,101.11377,0,0,0,69,2,3,3,2,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.9380268,3,39.369999,34.869999,49.34,47.5,6,1,1,0,0,9,3,1,1082.5,1454049.3,0,0,2899.0962 -11574,14232,25848,25849,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,8.3071995,8.3324528,0,2,0,-9,10,0,-5,116.88667,0,0,0,52,2,4,1,-9,-9,2019,1,1,11,0,47,43,15,1,0,1,0,10.079015,10.079015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,56.439999,52.369999,6,2,3,0,0,8,5,1,2103.5,615786,0,0,3160.5659 -11574,14232,25849,25848,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,9.1271162,8.9710302,0,2,0,-9,24,0,5,57.784645,0,0,0,47,2,4,1,2,2,2019,1,2,10,0,35,0,15,1,0,1,0,26.834921,26.834921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.439999,52.369999,54.450001,56.220001,6,2,3,0,0,8,5,1,2103.5,615786,0,0,3160.5659 -11574,14233,25850,-9,25848,25849,3,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-974.5166,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,1,1,1207,0,0,0,0 -11575,14234,25851,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,4,8.3274021,8.5866089,0,3,0,0,0,-9,0,-1137.7687,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,30,30,15,1,0,-9,0,15.600646,15.600646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,55.119999,-9,-9,6,1,1,0,0,11,4,1,748,463769.19,0,0,2277.4839 -11575,14235,25852,-9,25851,-9,2,1,0,29,2,0,0,0,2,-9,2,1,0,0,4,7.3198867,7.7910657,0,3,0,0,0,-9,0,-1078.5341,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,29,39,15,1,0,-9,1,8.4644213,8.4644213,0,0,0,0,0,0,0,0,0,0,0,1.8168428,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,11,3,1,695,-215681.61,0,0,251.11111 -11575,14236,25853,-9,25851,-9,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,7.6808891,7.8469024,0,3,0,0,0,-9,0,-905.32965,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,35,0,15,1,0,-9,1,5.3051071,5.3051071,0,0,0,0,0,0,0,0,0,0,0,7.908175,0,0,0,46.889999,54.32,-9,-9,5,1,1,0,0,11,3,1,1076,-95579.594,0,0,2113.429 -11576,14237,25854,25857,-9,-9,1,1,0,35,1,0,5,0,2,-9,3,3,0,1,1,0,0,0,2,0,-9,6,0,-4,0,0,0,1,39,3,4,3,3,3,2019,4,7,30,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.630001,19.190001,51,56,3,2,3,1,0,2,1,1,1649.25,515.65918,0,0,3555.5542 -11576,14237,25855,-9,25854,25857,6,1,0,7,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.0423,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,1,1,1649.25,515.65918,0,0,3555.5542 -11576,14237,25856,-9,25854,25857,5,1,1,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1127.4841,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,2,1,1,1649.25,515.65918,0,0,3555.5542 -11576,14237,25857,25854,-9,-9,7,1,1,39,1,0,5,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,4,0,0,0,0,35,2,1,3,-9,-9,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,32.630001,19.190001,5,2,3,1,0,2,1,1,1649.25,515.65918,0,0,3555.5542 -11577,14238,25858,-9,25859,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1022.1874,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,3,1,3196,-97874.695,0,0,1122.047 -11577,14238,25859,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,0,5,8.1058168,8.1117144,0,4,0,0,0,-9,0,-1023.6169,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,34,30,15,1,0,-9,0,10.532393,10.532393,0,0,0,0,0,0,0,0,0,0,0,3.6221237,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,10,3,1,3196,-97874.695,0,0,1122.047 -11578,14239,25860,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,7.5655246,7.3739781,3,0,0,0,-9,0,-1062.1371,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.1027861,0,0,0,14.5,1,1,0,0,7.4330764,17.066729,3,57.939999,43.459999,-9,-9,7,1,1,0,0,13,3,1,655,408903.91,0,0,609.46442 -11579,14240,25861,25865,-9,-9,1,1,0,33,1,0,4,0,2,-9,2,1,0,0,5,7.9447036,7.9448948,0,2,0,-9,6,0,-10,109.41203,0,0,1,43,1,4,1,2,3,2019,1,2,6,0,22,19,15,1,0,1,0,23.64039,23.64039,0,0,0,0,0,0,0,0,0,0,0,6.8408742,0,0,0,62.389999,56.709999,52,56,6,1,1,0,0,13,4,1,364,1016371.8,0,0,4813.9771 -11579,14240,25862,-9,25861,25865,3,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.3086,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,4,1,364,1016371.8,0,0,4813.9771 -11579,14240,25863,-9,25861,25865,5,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.7273,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,364,1016371.8,0,0,4813.9771 -11579,14240,25864,-9,25861,25865,6,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.8147,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,4,1,364,1016371.8,0,0,4813.9771 -11579,14240,25865,25861,-9,-9,2,1,1,43,1,0,4,0,1,-9,2,1,0,0,4,8.6242437,8.712904,0,2,0,-9,6,0,10,-20.014677,0,0,0,33,2,5,1,-9,-9,2019,1,1,9,1,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0592861,0,0,0,52,56,62.389999,56.709999,6,4,1,0,0,13,4,1,364,1016371.8,0,0,4813.9771 -11579,14240,25866,-9,25861,25865,4,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.45465,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,364,1016371.8,0,0,4813.9771 -11580,14241,25867,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,2,0,7.4077973,7.9153352,3,0,0,0,-9,0,-911.04022,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,1,1.6516519,0,0,0,0,2.6136689,0,1,1,0,6.1657281,7.8749852,0,0,38.400002,30.16,-9,-9,2,1,1,0,0,1,3,1,390,463053.78,0,0,2219.5125 -11581,14242,25868,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,0,2,0,6.7567902,6.8763514,3,0,0,0,-9,0,-1089.6205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,77.594536,0,0,0,0,0,1,1,0,6.4169788,6.932157,0,0,36.75,29.690001,-9,-9,5,1,1,0,0,13,2,1,211,103511.89,0,0,913.2345 -11582,14243,25869,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,4.9769549,5.8623009,5.3919945,3,0,0,0,-9,0,-1001.9043,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,4,4,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3496923,0,0,56.52,48.310001,-9,-9,7,1,1,0,0,2,2,0,305,49633.844,0,0,8.5699749 -11583,14244,25870,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,4,8.3282604,8.4171638,0,3,0,0,0,-9,0,-1080.528,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,38,37,15,1,1,-9,0,11.603374,11.603374,0,0,0,0,0,0,0,0,0,0,0,2.8809793,0,0,0,41.299999,60.77,-9,-9,5,1,1,0,0,7,4,0,958,255744.09,0,0,2853.9072 -11584,14245,25871,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,2,0,7.6046305,7.7566366,3,0,0,0,-9,0,-923.94556,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9071943,7.8214831,5.9812393,3,38.110001,43.849998,-9,-9,3,1,1,0,0,5,3,1,419,504677,0,0,1860.2714 -11585,14246,25872,25873,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,1,2,0,5.6857862,5.5826426,1,0,-9,64,0,2,54.297508,0,0,0,80,3,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,49.262505,0,0,0,0,0,1,1,0,0,5.7977347,0,0,36.720001,31.969999,47.68,37.630001,5,1,1,0,0,7,2,0,286.5,470944.22,0,0,3200.0688 -11585,14246,25873,25872,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,64,0,-2,111.81022,0,0,0,82,3,2,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,7.395102,0,0,0,0,42,1,1,0,0,0,45.259487,1,47.68,37.630001,36.720001,31.969999,4,1,1,0,0,7,2,0,286.5,470944.22,0,0,3200.0688 -11586,14247,25874,25875,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,4,0,6.0612192,6.0206146,1,0,-9,10,0,3,-20.128283,0,0,0,76,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,12.110925,0,0,0,0,0,1,1,0,7.2368731,5.8061223,0,0,57.16,56.150002,60.290001,52.110001,7,1,1,0,0,13,2,1,867,96708.766,0,0,2097.9363 -11586,14247,25875,25874,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,4.392374,4.6201644,1,0,-9,10,0,-3,-10.054089,0,0,0,79,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5080347,4.4493556,0,0,60.290001,52.110001,57.16,56.150002,7,1,1,0,0,13,2,1,867,96708.766,0,0,2097.9363 -11587,14248,25876,-9,25878,25877,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.3931,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,3,1,577,126259.55,0,0,2324.6658 -11587,14248,25877,25878,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.2635746,8.2364988,0,2,0,-9,6,0,-2,50.040554,0,0,0,37,2,4,1,2,2,2019,1,1,12,0,41,46,15,1,0,1,0,9.664463,9.664463,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,39.900002,57.259998,54.950001,45.450001,4,1,1,0,0,10,3,1,577,126259.55,0,0,2324.6658 -11587,14248,25878,25877,-9,-9,1,1,0,37,1,0,2,0,2,-9,1,1,0,0,4,7.1925063,7.248085,0,2,0,-9,18,0,2,-72.665192,0,0,1,35,2,4,1,3,2,2019,1,2,12,0,30,20,15,1,0,1,0,4.9441433,4.9441433,0,0,0,0,0,0,0,2,1,1,0,0,0,1.134788,3,54.950001,45.450001,39.900002,57.259998,5,1,1,0,0,10,3,1,577,126259.55,0,0,2324.6658 -11588,14249,25879,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,3,8.2501431,8.41325,0,3,0,-9,0,-9,0,-891.37726,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,0,15,1,0,-9,0,14.386569,14.386569,0,0,0,0,0,0,0,0,0,0,0,7.2041659,0,0,0,43.650002,58.279999,-9,-9,4,2,3,0,0,8,5,0,744,38450.992,0,0,4428.228 -11589,14250,25880,25881,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,0,5,9.6210251,9.5503559,0,1,0,-9,2,0,1,-21.646751,-9,0,0,37,1,2,1,1,2,2019,1,1,12,0,40,0,15,1,0,1,0,44.3312,44.3312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,59.700001,43.220001,6,1,1,0,0,8,5,1,886.5,208937.77,0,0,7531.5742 -11589,14250,25881,25880,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,1,2,8.0688066,8.3661194,0,1,0,-9,2,0,-1,-106.44063,0,0,1,38,1,5,1,2,2,2019,1,2,10,0,48,40,15,1,0,1,0,8.4614372,8.4614372,0,0,0,0,0,0,0,0,1,1,0,7.9577341,0,0,0,59.700001,43.220001,57.060001,57.759998,4,1,1,0,0,8,5,1,886.5,208937.77,0,0,7531.5742 -11590,14251,25882,25883,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.8706932,8.7849503,0,1,0,-9,8,0,0,38.90646,0,0,0,65,2,4,3,2,2,2019,2,1,8,0,55,48,15,1,0,4,0,12.516657,12.516657,0,0,0,0,0,0,0,0,1,1,0,1.4377617,0,0,0,57.16,56.150002,54.200001,57.490002,7,1,1,0,0,6,5,1,723.5,45699.629,0,0,2969.7705 -11590,14251,25883,25882,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.6990771,6.6549606,1,0,-9,8,0,9,122.57117,0,0,0,56,2,4,1,2,2,2019,3,2,8,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7043772,0,0,54.200001,57.490002,57.16,56.150002,5,1,1,0,0,6,5,1,723.5,45699.629,0,0,2969.7705 -11591,14252,25884,-9,25885,25887,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,5,5,1,1044,404870.75,0,0,3854.2119 -11591,14252,25885,25887,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,0,4,8.7358484,8.6489925,0,2,0,-9,4,0,-2,165.78865,-9,0,1,36,1,5,1,-9,-9,2019,1,1,11,2,38,0,15,1,0,1,0,21.041033,21.041033,0,0,0,0,0,0,0,0,1,1,0,4.5172524,0,0,0,49,56,57.060001,57.759998,5,2,3,0,0,5,5,1,1044,404870.75,0,0,3854.2119 -11591,14252,25886,-9,25885,25887,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.1824,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,5,1,1044,404870.75,0,0,3854.2119 -11591,14252,25887,25885,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,0,5,8.1644068,8.4383345,0,2,0,-9,8,0,2,-41.422741,0,0,0,34,1,4,1,-9,-9,2019,1,2,10,0,35,35,15,1,0,1,0,12.952364,12.952364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,49,56,6,2,3,0,0,5,5,1,1044,404870.75,0,0,3854.2119 -11592,14253,25888,-9,25889,25890,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.0665,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,0,360.33334,63139.926,0,0,2397.3589 -11592,14253,25889,25890,-9,-9,2,1,0,33,1,1,1,0,2,-9,2,1,0,0,3,7.4902725,7.80548,0,2,0,-9,3,0,-3,1.7571516,0,0,1,36,3,5,1,-9,-9,2019,1,1,6,0,48,30,15,1,0,1,0,4.6699286,4.6699286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,51.139999,60.450001,6,1,1,0,0,12,3,0,360.33334,63139.926,0,0,2397.3589 -11592,14253,25890,25889,-9,-9,1,1,1,36,1,1,1,0,3,-9,2,1,0,0,5,7.8908911,7.8259335,0,2,0,-9,3,0,3,-52.420815,0,0,0,33,2,3,1,3,3,2019,1,2,7,0,44,45,15,1,0,1,0,6.4711313,6.4711313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,57.330002,53.459999,4,1,1,0,0,12,3,0,360.33334,63139.926,0,0,2397.3589 -11593,14254,25891,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,1,1,0,5.2481918,5.4420009,3,0,0,0,-9,0,-992.56592,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,13.197059,0,0,0,0,154.99698,0,1,1,0,4.284173,5.5647964,0,0,33.700001,25.219999,-9,-9,7,1,1,0,0,11,2,0,675,-120686.08,0,0,1041.4121 -11594,14255,25892,-9,25895,25893,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.0021,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,276.75,-23259.324,0,0,1296.051 -11594,14255,25893,25895,-9,-9,2,1,1,28,1,0,2,0,2,-9,2,1,0,0,4,8.0768051,8.3154211,0,2,0,-9,8,0,2,.63181853,0,1,0,26,2,4,1,2,2,2019,1,1,6,0,48,56,15,1,0,1,0,8.6132603,8.6132603,0,0,0,0,0,0,0,0,1,1,0,3.0580597,0,0,0,57.16,56.150002,43.540001,59.599998,7,1,1,0,1,4,3,0,276.75,-23259.324,0,0,1296.051 -11594,14255,25894,-9,25895,25893,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.47943,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,276.75,-23259.324,0,0,1296.051 -11594,14255,25895,25893,-9,-9,1,1,0,26,1,0,2,0,2,-9,2,1,0,0,4,7.2624054,7.2931371,0,2,0,-9,8,0,-2,-129.23155,0,1,1,28,2,4,1,2,2,2019,1,2,14,2,36,0,15,1,0,1,0,4.4133196,4.4133196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,57.16,56.150002,6,1,1,0,0,4,3,0,276.75,-23259.324,0,0,1296.051 -11595,14256,25896,25897,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.3240128,8.3678179,0,1,0,-9,2,0,-5,66.600502,0,0,0,55,2,3,1,2,-9,2019,1,2,11,0,41,39,15,1,0,1,0,11.514986,11.514986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.860001,55.66,50,49,6,1,1,0,0,1,4,1,1093.5,188645.97,0,0,3302.4702 -11595,14256,25897,25896,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,0,3,7.8369303,7.829412,0,1,0,-9,2,0,5,41.715607,-9,0,0,50,2,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,5.1469927,5.1469927,0,0,0,0,0,0,0,0,0,0,0,7.1594133,0,0,0,50,49,46.860001,55.66,5,1,1,0,0,1,4,1,1093.5,188645.97,0,0,3302.4702 -11596,14257,25898,-9,25899,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,6.9409313,6.7961011,0,4,0,0,0,-9,0,-894.98956,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.709999,59.93,-9,-9,6,3,4,0,0,8,3,1,1169.5,1279781.6,0,0,2036.9473 -11596,14257,25899,-9,-9,-9,1,1,0,54,2,0,1,0,1,-9,4,3,0,0,4,8.0322495,8.2577896,6.0799041,4,0,0,0,-9,0,-1039.1708,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,34,35,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.1032782,0,3,32.16,33.639999,-9,-9,1,3,4,0,1,8,3,1,1169.5,1279781.6,0,0,2036.9473 -11597,14258,25900,25901,-9,-9,2,1,0,69,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,53,0,-1,0,0,0,0,70,3,4,3,3,3,2019,4,1,11,1,0,0,15,3,0,4,0,0,0,1,0,134.63702,0,0,0,0,0,1,1,0,0,0,0,0,51,47,57.16,56.150002,5,1,1,0,0,6,1,1,367,79171.938,0,0,2514.9556 -11597,14258,25901,25900,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,53,0,1,0,0,0,0,69,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.02116,1,57.16,56.150002,51,47,6,1,1,0,0,6,1,1,367,79171.938,0,0,2514.9556 -11597,14259,25902,-9,25900,25901,3,1,1,40,2,0,0,0,2,-9,2,1,0,0,3,8.3502512,8.3544579,0,3,0,0,0,-9,0,-1044.7104,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,37,48,15,1,0,-9,1,11.014077,11.014077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,6,4,1,153,822897.88,0,0,2002.7449 -11598,14260,25903,25905,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,9.2161121,8.9902449,0,2,0,-9,6,0,2,113.4335,0,0,0,49,2,3,1,3,3,2019,1,2,11,1,45,46,15,1,0,1,0,20.721025,20.721025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,51.790001,44.830002,55.130001,6,1,1,0,0,6,4,1,661,125260.7,0,0,3146.7661 -11598,14260,25904,-9,25905,25903,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,5.1181707,5.252008,4.5199366,2,0,0,0,-9,0,-914.28137,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5823989,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,4,1,661,125260.7,0,0,3146.7661 -11598,14260,25905,25903,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,6.8400578,7.0190439,0,2,0,-9,6,0,-2,45.736477,0,0,0,51,2,3,1,3,3,2019,1,1,16,4,15,15,15,1,1,1,0,9.5839205,9.5839205,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.450375,3,44.830002,55.130001,45.810001,51.790001,6,1,1,0,0,6,4,1,661,125260.7,0,0,3146.7661 -11598,14261,25906,-9,25905,25903,3,1,0,19,2,0,1,0,2,-9,7,2,0,0,4,7.0537567,6.876915,0,3,0,0,0,-9,0,-958.64221,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,28,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,6,2,1,884,-14127.669,0,0,420.27213 -11599,14262,25907,-9,25908,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-880.22748,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,1960.5,429165.06,0,0,2138.0559 -11599,14262,25908,-9,-9,-9,1,1,0,50,2,0,2,0,1,-9,2,1,0,0,3,8.2843952,8.6564913,7.8766875,4,0,-9,0,0,0,-1017.7621,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,35,45,15,1,1,-9,0,14.338351,14.338351,0,0,0,0,0,0,0,0,1,1,0,8.3289347,0,0,0,13.62,62.889999,-9,-9,2,1,1,0,1,9,4,1,1960.5,429165.06,0,0,2138.0559 -11600,14263,25909,25910,-9,-9,2,1,1,20,1,1,1,0,2,-9,2,1,0,0,5,8.3751745,8.4801073,0,2,0,-9,1,-9,0,24.747166,-9,1,0,20,2,5,1,-9,-9,2019,1,1,6,0,58,0,15,1,0,1,0,9.8068657,9.8068657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,60.02,56.419998,7,1,1,0,0,7,4,1,238.33333,-63691.254,0,0,2791.3333 -11600,14263,25910,25909,-9,-9,1,1,0,20,1,1,1,0,2,-9,2,1,0,0,5,7.465096,7.7663307,0,2,0,1,1,-9,0,-50.898407,0,1,1,20,2,5,1,3,2,2019,1,2,6,0,50,35,15,1,0,1,0,5.9744043,5.9744043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,60.02,56.419998,6,1,1,0,0,7,4,1,238.33333,-63691.254,0,0,2791.3333 -11600,14263,25911,-9,25910,25909,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-981.82861,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,238.33333,-63691.254,0,0,2791.3333 -11601,14264,25912,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,2,1,0,0,5,7.864099,7.8042812,0,3,0,0,0,-9,0,-987.53729,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,36,42,15,1,0,-9,0,9.8736429,9.8736429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,13,4,1,380,-63501.742,0,0,818.15741 -11602,14265,25913,25914,-9,-9,1,1,0,59,1,0,0,0,1,-9,8,3,1,1,3,0,4.3300343,4.4725046,1,0,-9,6,0,0,105.08268,0,0,0,68,1,1,3,2,2,2019,4,2,17,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.4428358,0,32.732105,3,32.91,24.91,45.740002,26.85,2,1,1,0,0,12,3,1,473,1777469,0,0,2555.6643 -11602,14265,25914,25913,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,1,1,0,8.1569576,7.9929266,1,0,-9,6,0,9,166.97739,0,0,0,59,1,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3239882,8.2521791,0,1,45.740002,26.85,32.91,24.91,3,1,1,0,0,12,3,1,473,1777469,0,0,2555.6643 -11603,14266,25915,-9,-9,-9,1,1,1,67,3,0,1,0,2,-9,4,3,0,1,3,0,0,0,4,0,0,0,-9,0,-887.36108,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.5287602,0,0,0,2,1,1,0,0,0,0,3,58.73,29.860001,-9,-9,2,1,1,0,1,12,1,0,216,73045.18,0,0,2131.1309 -11603,14267,25916,-9,-9,25915,2,1,1,22,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1020.678,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.619999,45.299999,-9,-9,4,4,5,1,1,12,1,0,534,-11850.511,0,0,0 -11603,14268,25917,-9,-9,25915,3,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-958.65015,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,1,12,1,0,968,-29660.078,0,0,0 -11604,14269,25918,25919,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,11,0,4,0,0,0,0,59,3,1,3,-9,-9,2019,4,1,11,3,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.91727,2,42.23,49.990002,28.620001,25,3,1,1,0,0,4,1,0,2170.5,-28627.074,0,0,2951.9258 -11604,14269,25919,25918,-9,-9,1,1,1,59,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,11,0,-4,0,0,0,0,63,3,2,3,-9,-9,2019,4,2,29,10,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,109.20619,3,28.620001,25,42.23,49.990002,2,1,1,0,1,4,1,0,2170.5,-28627.074,0,0,2951.9258 -11605,14270,25920,25921,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,8.4747276,8.4541245,0,2,0,-9,25,0,-10,-128.39462,0,0,0,58,1,4,1,2,2,2019,1,2,10,0,23,23,15,1,0,1,0,19.401972,19.401972,0,0,0,0,0,0,0,0,0,0,0,2.2129536,0,0,0,51.77,58.57,35.529999,53.970001,6,1,1,0,0,7,5,1,460,2501722.8,0,0,5869.5459 -11605,14270,25921,25920,-9,-9,2,1,1,58,1,0,1,0,1,-9,2,1,0,0,4,9.5082397,9.5292377,0,2,0,-9,25,0,10,-116.5191,0,0,0,48,2,4,1,2,1,2019,1,1,22,10,50,43,15,1,1,1,0,33.131737,33.131737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.529999,53.970001,51.77,58.57,4,1,1,0,0,7,5,1,460,2501722.8,0,0,5869.5459 -11605,14270,25922,-9,25920,25921,5,1,1,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1041.3564,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,7,5,1,460,2501722.8,0,0,5869.5459 -11605,14271,25923,-9,25920,25921,3,1,0,23,2,0,1,0,1,-9,2,1,0,0,5,8.0510311,8.3926086,0,3,0,0,0,-9,0,-927.75543,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,38,0,15,1,0,-9,1,10.138243,10.138243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,7,4,1,344,73993.82,0,0,974.21417 -11605,14272,25924,-9,25920,25921,4,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,6.8735538,7.0555525,0,3,0,0,0,-9,0,-1044.7661,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3320022,0,0,0,45,59,-9,-9,5,1,1,0,0,7,2,1,830,39281.512,0,0,1200.9415 -11606,14273,25925,25926,-9,-9,1,1,1,54,1,0,0,0,2,-9,3,3,0,0,3,0,7.0463185,6.8686686,1,0,-9,5,0,4,69.283638,0,0,0,50,2,4,1,3,2,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1436391,0,0,56.5,48.330002,51,54,6,1,1,1,0,11,3,1,792,254766.38,0,0,1230.2566 -11606,14273,25926,25925,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.0824976,8.0763454,0,1,0,-9,5,0,-4,-34.520916,0,0,0,54,2,3,3,-9,-9,2019,2,1,10,1,37,37,15,1,0,3,0,12.464877,12.464877,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,56.5,48.330002,6,1,1,0,0,11,3,1,792,254766.38,0,0,1230.2566 -11606,14274,25927,-9,25926,25925,3,1,0,19,2,0,0,0,2,1,2,1,0,1,5,7.5163198,7.6795211,0,3,0,0,0,-9,0,-989.68701,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,1,0,30,0,15,1,0,-9,1,6.4856339,6.4856339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.529999,61.330002,-9,-9,6,1,1,0,0,11,3,1,326,-89450.383,0,0,578.8407 -11607,14275,25928,25929,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,1,0,5.3551421,5.2838826,1,0,-9,10,0,-4,18.296278,0,0,0,74,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2505956,5.105515,0,0,37.740002,25.049999,46.34,51.52,1,1,1,0,0,11,4,1,1383.5,1356437.1,0,0,3460.6316 -11607,14275,25929,25928,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,8.4169283,8.3251143,1,0,-9,10,0,4,-56.991348,0,0,0,70,3,1,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6016355,8.3781176,0,0,46.34,51.52,37.740002,25.049999,5,2,3,0,0,11,4,1,1383.5,1356437.1,0,0,3460.6316 -11608,14276,25930,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,4,0,5.9633226,5.8656316,3,0,0,0,-9,0,-954.46649,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3907449,5.5803771,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,2,0,423,56988.637,0,0,394.32809 -11609,14277,25931,-9,25934,25932,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-991.2182,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,4,2,0,0,10,3,1,544.75,771022.69,0,0,1766.2288 -11609,14277,25932,25934,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,7.8402243,8.6680908,0,2,0,-9,10,0,4,48.772114,0,0,0,43,1,4,1,1,1,2019,1,2,6,0,39,42,15,1,0,1,0,14.107473,14.107473,0,0,0,0,0,0,0,0,1,1,0,7.4708815,0,0,0,59.529999,56.439999,57.16,56.150002,7,1,1,0,0,10,3,1,544.75,771022.69,0,0,1766.2288 -11609,14277,25933,-9,25934,25932,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.96454,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,10,3,1,544.75,771022.69,0,0,1766.2288 -11609,14277,25934,25932,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,6.9688268,7.0344744,0,2,0,-9,10,0,-4,14.300823,0,0,1,47,1,4,1,-9,-9,2019,1,1,6,0,16,12,15,1,0,1,0,5.4981532,5.4981532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.529999,56.439999,7,2,3,0,0,10,3,1,544.75,771022.69,0,0,1766.2288 -11610,14278,25935,25936,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,39,0,-1,8.5062284,0,0,0,70,2,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.23151,3,49.52,29.25,51.82,46.830002,6,1,1,0,0,2,2,1,764.5,-62409.773,0,0,432.11328 -11610,14278,25936,25935,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,5.3766613,5.9217844,1,0,-9,39,0,1,-69.534538,0,0,0,69,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.3875794,0,3,51.82,46.830002,49.52,29.25,4,1,1,0,0,2,2,1,764.5,-62409.773,0,0,432.11328 -11611,14279,25937,25938,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,1,6.9099927,7.2025943,0,1,0,-9,2,0,-2,133.20033,0,1,1,28,1,2,1,2,3,2019,1,2,23,11,20,21,15,1,1,1,0,7.0969596,7.0969596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.559999,30.870001,50.27,48.860001,2,1,1,0,0,9,5,0,1564,198040.41,0,0,3473.5894 -11611,14279,25938,25937,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,2,9.1331844,8.6261969,0,1,0,-9,2,0,2,-90.268906,0,1,0,26,1,1,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,23.772015,23.772015,0,0,0,0,0,0,0,2,0,0,0,0,0,4.9489393,1,50.27,48.860001,30.559999,30.870001,4,1,1,0,0,9,5,0,1564,198040.41,0,0,3473.5894 -11612,14280,25939,25941,-9,-9,1,1,1,40,1,0,1,0,2,-9,2,1,0,0,4,8.7240343,8.8173857,0,2,0,-9,4,0,2,-18.360989,0,0,0,38,1,4,1,2,2,2019,1,2,10,1,37,40,15,1,0,1,0,15.046816,15.046816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,53.900002,52.09,5,1,1,0,0,13,5,1,554.66669,7932.3569,0,0,4735.0244 -11612,14280,25940,-9,25941,25939,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.39313,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,5,1,554.66669,7932.3569,0,0,4735.0244 -11612,14280,25941,25939,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.3870335,8.463378,0,2,0,-9,4,0,-2,-75.830345,0,0,1,40,2,4,1,2,2,2019,1,1,10,0,24,26,15,1,0,1,0,24.57239,24.57239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.900002,52.09,51,56,6,1,1,0,0,13,5,1,554.66669,7932.3569,0,0,4735.0244 -11613,14281,25942,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,2,7.6938677,7.6836414,0,3,0,0,0,-9,0,-1045.3423,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,44,33,15,1,0,-9,0,6.0624781,6.0624781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,37.18,-9,-9,6,1,1,0,0,2,3,1,327,389230.47,0,0,370.51834 -11613,14282,25943,-9,25942,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,7.7661729,7.7181754,0,3,0,0,0,-9,0,-1007.5941,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,37,40,15,1,0,-9,1,7.3399248,7.3399248,0,0,0,0,0,0,0,0,1,1,0,.78426713,0,0,0,50,58,-9,-9,5,1,1,0,0,2,3,1,556,231220.17,0,0,1303.2504 -11613,14283,25944,-9,25942,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.1548452,7.5822396,0,3,0,0,0,-9,0,-1051.2438,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,39,25,15,1,0,-9,1,3.7652571,3.7652571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,54.040001,-9,-9,3,1,1,0,0,2,3,1,953,165118.91,0,0,1027.4562 -11614,14284,25945,25946,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,8.8437872,8.7966633,0,2,0,-9,20,0,-3,-89.77787,0,0,0,47,2,1,1,-9,-9,2019,1,2,18,7,37,37,15,1,1,1,0,19.045502,19.045502,0,0,0,0,0,0,0,89,1,1,0,0,0,121.43122,1,46.259998,54.240002,29.52,38.169998,5,1,1,0,0,9,4,1,725.5,297370.81,0,0,3328.2485 -11614,14284,25946,25945,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,1,7.7093349,7.5808496,0,2,0,-9,8,0,3,-26.410273,0,0,0,44,1,4,1,2,3,2019,1,1,24,11,50,35,15,1,1,1,0,5.4422894,5.4422894,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.52,38.169998,46.259998,54.240002,4,1,1,0,0,9,4,1,725.5,297370.81,0,0,3328.2485 -11615,14285,25947,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.5782418,6.7796149,3,0,0,0,-9,0,-1009.9426,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2546434,6.3493624,0,0,60.900002,39.41,-9,-9,7,1,1,0,0,13,2,1,730,152201.72,0,0,1069.4712 -11616,14286,25948,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,7.0949416,6.728343,3,0,0,0,-9,0,-842.98547,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.3389626,7.343595,0,3,45.970001,51.900002,-9,-9,6,1,1,0,0,8,2,1,101,983474.19,0,0,1997.7666 -11617,14287,25949,-9,-9,25951,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.35553,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,4,2,0,0,8,5,1,1567.6666,964595.75,0,0,6722.9912 -11617,14287,25950,25951,-9,-9,3,1,0,40,1,0,1,0,1,-9,2,1,0,0,5,9.2295322,9.282403,0,2,0,-9,5,0,-10,-77.009384,0,0,1,50,1,3,1,1,1,2019,1,1,22,10,39,34,15,1,1,1,0,32.321659,32.321659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.380001,58.02,50.32,48.419998,5,1,1,0,0,8,5,1,1567.6666,964595.75,0,0,6722.9912 -11617,14287,25951,25950,-9,-9,1,1,1,50,1,0,1,0,1,-9,1,1,0,0,3,9.3376961,9.008461,0,2,0,-9,5,0,10,17.00638,0,0,0,40,1,5,1,2,3,2019,1,3,10,0,45,50,15,1,0,1,0,21.362894,21.362894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.32,48.419998,50.380001,58.02,6,2,3,0,0,8,5,1,1567.6666,964595.75,0,0,6722.9912 -11618,14288,25952,-9,-9,-9,5,1,1,20,2,0,2,0,2,1,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1057.4235,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.67,46.939999,-9,-9,2,1,1,1,1,5,1,0,478,20914.17,0,0,713.76862 -11619,14289,25953,25954,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,0,4,0,7.2262163,7.5939498,1,0,-9,52,0,0,-135.0804,0,0,0,82,1,1,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.5583315,61.633701,1,57.16,56.150002,54.380001,24.08,7,1,1,0,0,13,4,1,605.5,1013335.6,0,0,2960.6597 -11619,14289,25954,25953,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,1,0,7.9163575,7.7754245,1,0,-9,52,0,9,60.144947,0,0,0,73,1,4,3,3,3,2019,4,2,11,4,0,0,15,4,1,4,0,0,0,1,0,134.72488,0,0,0,0,0,1,1,0,0,7.8098888,0,0,54.380001,24.08,57.16,56.150002,6,1,1,0,0,13,4,1,605.5,1013335.6,0,0,2960.6597 -11620,14290,25955,25956,-9,-9,1,1,0,30,1,0,1,0,1,-9,2,1,0,0,5,8.4327984,8.5442228,0,2,0,-9,8,0,-2,-110.855,0,0,1,32,2,5,1,2,2,2019,1,2,7,2,38,38,15,1,0,1,0,15.566549,15.566549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.099998,59.110001,7,1,1,0,0,9,5,1,753,150887.3,0,0,4695.5679 -11620,14290,25956,25955,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,5,8.089489,8.2731085,0,2,0,-9,6,0,2,65.254097,0,0,0,30,1,5,1,2,2,2019,1,1,10,0,50,40,15,1,0,1,0,13.797378,13.797378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,9,5,1,753,150887.3,0,0,4695.5679 -11620,14290,25957,-9,25955,25956,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.641,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,753,150887.3,0,0,4695.5679 -11621,14291,25958,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-947.73572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,42.25,-9,-9,6,1,1,0,0,2,1,1,625,-13264.924,0,0,3580.4419 -11622,14292,25959,25960,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,46,0,6,4.3778358,0,0,0,78,3,1,3,-9,-9,2019,4,1,13,4,0,0,15,4,1,4,0,0,0,1,0,129.55632,0,0,0,0,0,1,1,0,0,0,0,0,23.790001,23.190001,39.560001,34.970001,4,1,1,0,1,4,2,0,516.5,443292.25,0,0,1317.6758 -11622,14292,25960,25959,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,1,0,5.2743196,5.0341401,1,0,-9,46,0,-6,-36.352612,0,0,0,84,3,1,3,-9,-9,2019,4,2,11,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,5.0798788,116.47297,1,39.560001,34.970001,23.790001,23.190001,6,1,1,0,0,4,2,0,516.5,443292.25,0,0,1317.6758 -11623,14293,25961,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1061.6534,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.051176,3,48.689999,35.560001,-9,-9,2,1,1,0,0,4,1,0,729,0,0,0,388.35016 -11623,14293,25962,-9,25961,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1089.9579,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,1,0,729,0,0,0,388.35016 -11624,14294,25963,25965,-9,-9,1,1,1,49,1,0,2,0,3,-9,1,1,0,0,4,7.4191251,7.7735972,0,2,0,-9,9,0,2,24.120209,-9,0,0,47,2,4,1,-9,2,2019,1,2,6,0,40,0,15,1,0,1,0,4.8375096,4.8375096,0,0,0,0,0,0,0,0,1,0,1,2.0166831,0,0,0,57.16,56.150002,57.16,56.150002,5,1,1,0,0,13,3,1,544.5,546935.81,0,0,2791.0469 -11624,14294,25964,-9,25965,25963,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.98163,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,3,1,544.5,546935.81,0,0,2791.0469 -11624,14294,25965,25963,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,8.1175652,7.6187968,0,2,0,-9,9,0,-2,51.369644,0,0,0,49,3,4,1,3,3,2019,1,1,7,0,30,5,15,1,0,1,0,10.249207,10.249207,0,0,0,0,0,0,0,0,1,0,1,1.258193,0,0,0,57.16,56.150002,57.16,56.150002,5,1,1,0,0,13,3,1,544.5,546935.81,0,0,2791.0469 -11624,14294,25966,-9,25965,25963,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-865.71143,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.66507375,0,0,0,56.959999,56.860001,-9,-9,1,1,1,0,0,13,3,1,544.5,546935.81,0,0,2791.0469 -11625,14295,25967,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-979.0697,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,24,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8690562,0,0,0,59.59,41.66,-9,-9,6,1,1,0,0,7,1,1,795,-187956.2,0,0,664.04181 -11626,14296,25968,25969,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,8,0,1,0,0,0,0,59,2,3,1,2,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.2353616,0,119.52004,3,53.68,45.470001,50,49,5,1,1,0,0,12,1,1,1545.5,420746.63,0,0,1851.2898 -11626,14296,25969,25968,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,8,0,-1,0,0,0,0,60,2,3,3,2,3,2019,2,1,10,1,80,70,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6718144,0,0,3,50,49,53.68,45.470001,5,1,1,0,0,12,1,1,1545.5,420746.63,0,0,1851.2898 -11626,14297,25970,-9,25968,25969,3,1,1,27,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1058.5847,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,12,1,1,1233,0,0,0,429.33966 -11627,14298,25971,25972,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-3,-14.670881,0,0,0,73,2,2,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.6255168,0,112.72901,3,65.959999,34.279999,45.130001,50.009998,6,1,1,0,0,2,2,1,479.5,234607.33,0,0,756.84753 -11627,14298,25972,25971,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,7.1932611,6.9182358,1,0,-9,50,0,3,-22.805435,0,0,0,70,3,4,3,-9,-9,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.334712,128.16052,3,45.130001,50.009998,65.959999,34.279999,5,1,1,0,0,2,2,1,479.5,234607.33,0,0,756.84753 -11627,14299,25973,-9,25971,25972,3,1,1,44,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-944.52466,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.82,33.700001,-9,-9,7,1,1,0,0,2,1,1,1833,72132.336,0,0,762.93604 -11628,14300,25974,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,1,1,0,0,4,8.9017057,8.4242907,0,3,0,0,0,-9,0,-945.82275,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,56,45,15,1,0,-9,0,11.98131,11.98131,0,0,0,0,0,0,0,0,0,0,0,4.110188,0,0,0,45.290001,54.84,-9,-9,3,1,1,0,0,9,5,1,467,398216,0,0,2239.5332 -11629,14301,25975,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,7.2608476,7.1516457,3,0,0,0,-9,0,-830.84869,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3590794,0,0,0,66.370003,38.360001,-9,-9,7,1,1,0,0,2,3,1,1247,482931.44,0,0,2817.1694 -11630,14302,25976,-9,25978,25977,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1004.7592,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,9,3,1,1363,203339.16,0,0,2270.2051 -11630,14302,25977,25978,-9,-9,2,1,1,55,1,0,2,0,2,-9,2,1,0,0,4,8.1048174,8.3931627,0,2,0,-9,33,0,-2,24.868916,0,0,0,57,2,4,1,2,3,2019,1,1,7,0,43,42,15,1,0,1,0,10.473665,10.473665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.869999,51.290001,56.900002,49.400002,4,1,1,0,0,9,3,1,1363,203339.16,0,0,2270.2051 -11630,14302,25978,25977,-9,-9,1,1,0,57,1,0,2,0,2,-9,1,1,0,0,4,7.361156,7.2856908,0,2,0,-9,33,0,2,55.798424,0,0,0,55,2,4,1,3,3,2019,1,2,10,0,35,25,15,1,0,1,0,4.5696669,4.5696669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.900002,49.400002,58.869999,51.290001,4,1,1,0,0,9,3,1,1363,203339.16,0,0,2270.2051 -11631,14303,25979,-9,-9,-9,1,1,0,45,3,0,1,0,1,-9,2,1,0,0,4,8.3298998,8.2244644,5.7577267,4,0,0,0,-9,0,-870.33765,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,33,31,15,1,0,-9,0,14.693796,14.693796,0,0,0,0,0,0,0,7,1,1,0,6.5224056,0,5.0155058,3,58.150002,52.91,-9,-9,6,1,1,0,0,10,4,1,1184.5,30125.844,0,0,2121.7725 -11631,14303,25980,-9,25979,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1115.4125,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,10,4,1,1184.5,30125.844,0,0,2121.7725 -11632,14304,25981,25982,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,8.1204119,8.5243502,7.7602715,1,0,-9,1,-9,-2,-87.457947,-9,0,0,51,2,4,1,-9,-9,2019,1,1,10,1,30,0,15,1,0,1,0,10.095752,10.095752,0,0,0,0,0,0,0,0,0,0,0,7.0073786,7.3832421,0,0,51,54,48.869999,58.549999,6,1,1,0,0,1,5,1,296.5,199022.31,0,0,6464.8594 -11632,14304,25982,25981,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,9.272933,9.2504864,0,1,0,-9,24,-9,2,-6.9129868,-9,0,0,49,2,4,1,2,2,2019,1,2,12,0,87,0,15,1,0,1,0,15.058127,15.058127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,51,54,6,1,1,0,0,1,5,1,296.5,199022.31,0,0,6464.8594 -11633,14305,25983,25984,-9,-9,1,1,0,65,1,0,0,0,1,-9,2,1,0,0,5,7.9264159,8.0976105,0,1,0,-9,9,0,2,72.564926,0,0,0,63,3,4,1,2,2,2019,1,2,10,0,24,24,15,1,0,1,0,12.302865,12.302865,0,0,0,0,0,0,0,0,0,0,0,3.8430319,0,0,0,54.689999,57.470001,58.150002,52.91,6,1,1,0,0,10,3,1,1235.5,553444.94,0,0,1954.1007 -11633,14305,25984,25983,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,0,4,5.6081338,6.0352397,0,1,0,-9,9,0,-2,-9.5310354,0,0,0,65,1,5,1,2,3,2019,1,1,8,0,35,40,15,1,0,1,0,1.034822,1.034822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,54.689999,57.470001,6,1,1,0,0,10,3,1,1235.5,553444.94,0,0,1954.1007 -11634,14306,25985,25987,-9,-9,1,1,1,51,1,0,1,0,3,-9,2,1,0,0,4,7.4666252,7.8924251,0,2,0,-9,3,0,2,81.743378,0,0,0,49,2,2,3,3,3,2019,2,2,12,0,25,30,15,1,0,3,0,9.467638,9.467638,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.470001,56.25,34.290001,33.040001,2,4,5,0,0,13,2,1,1427.3334,176482.22,0,0,3344.095 -11634,14306,25986,-9,25987,25985,5,1,1,16,2,0,1,0,2,-9,3,2,0,0,3,6.6772485,6.4183993,0,2,0,0,0,-9,0,-1112.7333,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.92533988,0,0,0,62.66,52.400002,-9,-9,7,1,1,1,0,13,2,1,1427.3334,176482.22,0,0,3344.095 -11634,14306,25987,25985,-9,-9,2,1,0,49,1,0,1,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,3,0,-2,7.3102188,0,0,0,51,3,4,1,2,2,2019,3,1,16,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,.52183264,0,7.2804508,3,34.290001,33.040001,33.470001,56.25,4,1,1,1,1,13,2,1,1427.3334,176482.22,0,0,3344.095 -11634,14307,25988,-9,25987,25985,3,1,1,21,2,0,1,0,2,-9,7,2,0,0,5,7.1018,7.3219519,0,3,0,0,0,-9,0,-997.58868,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,18,16,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.235431,0,0,0,57.650002,56.130001,-9,-9,6,1,1,0,0,13,2,1,642,0,0,0,612.60577 -11634,14308,25989,-9,25987,25985,4,1,1,19,2,0,1,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-811.34424,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.720001,58.130001,-9,-9,1,1,1,0,0,13,1,1,647,-38395.875,0,0,2903.3665 -11635,14309,25990,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-830.34686,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,25.269032,0,0,1,1,0,0,0,0,0,44.169998,23.07,-9,-9,6,1,1,0,0,13,1,1,678,131596.73,0,0,2193.1113 -11635,14310,25991,-9,-9,-9,2,1,1,77,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-863.6825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,52.419998,-9,-9,6,1,1,0,0,13,1,1,397,-11311.49,0,0,1077.8271 -11636,14311,25992,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-977.0976,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.969999,21.299999,-9,-9,1,1,1,0,0,12,1,0,250,-48470.945,0,0,1540.1709 -11637,14312,25993,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1025.0426,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,30.121983,3,52,45,-9,-9,6,1,1,0,0,5,1,0,657,27349.252,0,0,845.02039 -11637,14313,25994,-9,-9,-9,2,1,1,79,3,0,0,0,3,-9,4,3,0,1,3,0,6.2928014,6.1346121,3,0,0,0,-9,0,-952.76917,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,76.05732,0,0,0,0,0,1,1,0,6.6943545,6.1575556,0,0,54,46,-9,-9,6,1,1,0,0,5,2,0,2830,281263.22,0,0,2179.8918 -11638,14314,25995,-9,25996,-9,5,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-963.09009,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,5,1,0,1282.25,-35386.375,0,0,2120.1772 -11638,14314,25996,-9,-9,-9,1,1,0,37,3,0,4,0,3,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1052.8323,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,-9,-9,4,3,4,0,0,5,1,0,1282.25,-35386.375,0,0,2120.1772 -11638,14314,25997,-9,25996,-9,3,1,1,17,2,0,4,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-881.25305,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,3,4,0,0,5,1,0,1282.25,-35386.375,0,0,2120.1772 -11638,14314,25998,-9,25996,-9,4,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-971.22144,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,5,1,0,1282.25,-35386.375,0,0,2120.1772 -11638,14315,25999,-9,25996,-9,2,1,1,18,2,0,4,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1000.823,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,3,4,0,0,5,1,0,320,-143107.31,0,0,0 -11639,14316,26000,26001,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,4,7.0709968,6.8487673,0,1,0,-9,47,0,4,-21.79632,0,0,0,63,3,3,3,-9,-9,2019,2,2,4,0,16,16,15,1,0,3,0,8.4493151,8.4493151,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,70.559998,37.830002,7,2,3,0,0,5,2,1,579,254445.81,0,0,991.37341 -11639,14316,26001,26000,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,47,0,-4,-28.234358,0,0,0,67,2,4,1,3,2,2019,3,1,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.559998,37.830002,59.529999,56.439999,7,2,3,0,0,5,2,1,579,254445.81,0,0,991.37341 -11639,14317,26002,-9,-9,26003,3,1,0,17,2,0,0,1,3,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1137.5352,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,7,2,3,0,0,5,1,1,655.5,0,0,0,-890.40741 -11639,14317,26003,-9,-9,-9,4,1,1,18,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.804,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2137086,0,0,0,62.490002,55.09,-9,-9,7,2,3,1,0,5,1,1,655.5,0,0,0,-890.40741 -11640,14318,26004,26005,-9,-9,1,1,0,70,1,0,0,0,3,-9,2,1,0,0,4,0,0,0,1,0,-9,42,0,2,-195.31721,0,0,0,68,2,4,3,3,3,2019,2,2,8,1,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4567041,0,0,0,54.200001,57.490002,60.119999,54.799999,7,1,1,0,0,4,3,1,341.5,212776.11,0,0,3316.7192 -11640,14318,26005,26004,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,8.0693693,7.8671532,1,0,-9,9,0,-2,-56.526089,0,0,0,70,3,4,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6419892,8.0330906,0,0,60.119999,54.799999,54.200001,57.490002,7,1,1,0,0,4,3,1,341.5,212776.11,0,0,3316.7192 -11641,14319,26006,-9,26009,26007,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1005.5294,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,5,5,1,837,842288.13,0,0,6818.54 -11641,14319,26007,26009,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,0,3,8.1123886,9.0705433,8.6942406,2,0,-9,7,0,0,3.4780617,0,0,0,34,1,3,1,2,3,2019,1,1,6,0,30,50,15,1,0,1,0,11.842031,11.842031,0,0,0,0,0,0,0,0,1,1,0,8.3081026,0,0,0,55.959999,49.93,50.419998,51.349998,6,2,3,0,0,5,5,1,837,842288.13,0,0,6818.54 -11641,14319,26008,-9,26009,26007,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.80634,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,837,842288.13,0,0,6818.54 -11641,14319,26009,26007,-9,-9,1,1,0,34,1,1,2,0,1,-9,5,1,0,0,3,8.3634434,8.6199694,0,2,0,-9,7,0,0,-20.702667,0,0,1,34,1,3,1,2,2,2019,1,2,11,1,37,39,15,1,0,1,0,13.309231,13.309231,0,0,0,0,0,0,0,0,1,1,0,.23767357,0,0,0,50.419998,51.349998,55.959999,49.93,6,1,1,0,0,5,5,1,837,842288.13,0,0,6818.54 -11642,14320,26010,26011,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.5324192,7.506043,4.3045068,1,0,-9,10,0,2,.93268263,0,0,0,58,2,5,1,2,-9,2019,1,1,20,6,20,20,15,1,1,1,0,9.4499063,9.4499063,0,0,0,0,0,0,0,0,0,0,0,0,4.494761,0,0,39.82,55.84,51.139999,60.450001,3,1,1,0,0,1,3,1,737.5,54570.82,0,0,2042.6951 -11642,14320,26011,26010,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,5,8.2529697,7.6826339,0,1,0,-9,10,0,-2,151.54044,0,0,0,60,2,3,1,2,1,2019,1,2,8,0,50,45,15,1,0,1,0,6.3940892,6.3940892,0,0,0,0,0,0,0,0,0,0,0,2.1384861,0,0,0,51.139999,60.450001,39.82,55.84,3,1,1,0,0,1,3,1,737.5,54570.82,0,0,2042.6951 -11642,14321,26012,-9,26010,26011,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,7.9670563,7.9722238,0,3,0,0,0,-9,0,-945.96332,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,8,38,38,15,1,1,-9,1,7.0496788,7.0496788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.599998,55.009998,-9,-9,6,1,1,0,0,1,4,1,507,17946.049,0,0,1373.182 -11643,14322,26013,-9,-9,-9,1,1,1,21,2,0,0,0,1,-9,3,3,0,0,4,0,6.5023828,6.1354499,3,0,0,0,-9,0,-1041.272,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9463906,0,0,0,49.91,58.02,-9,-9,7,1,1,1,0,12,2,0,1193,38580.676,0,0,-605.54657 -11644,14323,26014,26015,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,5,0,7.261939,7.2122493,1,0,-9,34,0,12,69.831474,0,0,0,69,2,3,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7344689,6.7863712,0,0,46.400002,59.869999,58.73,29.860001,6,1,1,0,0,2,3,1,382,655909.25,0,0,2244.1797 -11644,14323,26015,26014,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.5215311,7.5951366,1,0,-9,34,0,-12,37.701756,0,0,0,81,2,5,3,2,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5724056,7.4109259,0,0,58.73,29.860001,46.400002,59.869999,5,1,1,0,0,2,3,1,382,655909.25,0,0,2244.1797 -11645,14324,26016,26017,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.7784443,6.5462027,1,0,-9,47,0,-1,-22.374107,0,0,0,70,3,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,.96002221,2.9449413,0,0,0,11.717287,0,1,1,0,2.4819269,6.7655735,0,0,58.32,50.220001,60.119999,54.799999,7,1,1,0,0,9,3,1,1098.5,1446348.3,0,0,1767.1533 -11645,14324,26017,26016,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,7.9269896,7.6955314,1,0,-9,47,0,1,46.872963,0,0,0,69,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4034247,0,0,60.119999,54.799999,58.32,50.220001,6,1,1,0,0,9,3,1,1098.5,1446348.3,0,0,1767.1533 -11646,14325,26018,-9,26019,26021,1,1,0,24,2,0,2,0,2,-9,2,1,0,0,4,8.0600977,7.7133069,0,3,0,0,0,-9,0,-931.55792,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,1,0,39,41,15,1,0,-9,1,9.3061323,9.3061323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,4,0,153,55022.109,0,0,1720.3969 -11646,14326,26019,26021,-9,-9,3,1,0,44,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-7,-108.83688,0,0,1,51,3,4,1,-9,-9,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,54,6,2,3,0,0,8,2,0,604.5,112293.98,0,0,1389.8695 -11646,14326,26020,-9,26019,26021,5,1,0,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.18109,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,56.509998,-9,-9,6,2,3,0,0,8,2,0,604.5,112293.98,0,0,1389.8695 -11646,14326,26021,26019,-9,-9,2,1,1,51,1,0,2,0,3,-9,2,1,0,0,4,7.6250844,7.6714993,0,2,0,-9,7,0,7,104.35313,0,0,0,44,3,4,3,-9,-9,2019,2,3,9,1,24,40,15,1,0,3,0,13.526532,13.526532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50,55,6,2,3,0,0,8,2,0,604.5,112293.98,0,0,1389.8695 -11646,14326,26022,-9,26019,26021,6,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.4153,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,2,0,604.5,112293.98,0,0,1389.8695 -11646,14327,26023,-9,26019,26021,4,1,1,21,2,0,2,0,2,-9,2,1,0,0,4,7.195055,7.4512019,0,3,0,0,0,-9,0,-1027.7844,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,37,15,1,0,-9,1,6.8840423,6.8840423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,0,319,76600.758,0,0,1418.5721 -11647,14328,26024,-9,26025,-9,2,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-922.83759,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,0,500,48617.609,0,0,2153.8674 -11647,14328,26025,-9,-9,-9,1,1,0,27,2,1,3,0,2,-9,6,3,0,0,4,0,6.0150676,5.9133849,4,0,0,0,-9,0,-1027.8285,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4532433,0,0,0,37.779999,55.700001,-9,-9,5,1,1,0,0,7,2,0,500,48617.609,0,0,2153.8674 -11647,14328,26026,-9,26025,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-992.90826,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,2,0,500,48617.609,0,0,2153.8674 -11647,14328,26027,-9,26025,-9,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.8228,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,500,48617.609,0,0,2153.8674 -11648,14329,26028,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,1,2,0,5.1088614,5.1735096,3,0,-9,0,-9,0,-954.31415,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.3977523,0,0,27.559999,39.41,-9,-9,4,1,1,0,1,4,2,0,355,105968.27,0,0,1679.1517 -11649,14330,26029,26030,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.1958861,7.3331742,0,1,0,-9,7,0,0,-44.86417,0,0,0,66,2,3,3,3,3,2019,2,1,9,0,24,30,15,1,0,4,0,5.6991234,5.6991234,0,0,0,0,0,0,0,7,1,1,0,0,0,3.4009435,3,47.07,53.970001,52.580002,47.360001,6,1,1,0,0,1,3,1,806.5,130441.7,0,0,1953.0326 -11649,14330,26030,26029,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,7.4775629,7.6177034,1,0,-9,7,0,9,-89.672386,0,0,0,57,2,3,1,3,2,2019,3,2,16,4,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.2070432,7.3235145,12.696588,3,52.580002,47.360001,47.07,53.970001,3,1,1,0,0,1,3,1,806.5,130441.7,0,0,1953.0326 -11649,14331,26031,-9,26029,-9,3,1,1,31,2,0,0,0,2,-9,2,1,0,0,2,7.906189,8.1475554,0,3,0,0,0,-9,0,-945.75818,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,0,15,1,0,-9,1,10.383466,10.383466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.34,39.139999,-9,-9,4,1,1,0,0,1,3,1,538,23956.852,0,0,888.35565 -11650,14332,26032,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1095.8931,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.189999,36.580002,-9,-9,7,1,1,0,0,9,1,1,467,-179241.95,0,0,-202.57756 -11651,14333,26033,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,1,2,6.5681958,7.720685,7.6633339,3,0,0,0,-9,0,-982.15118,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.2248046,7.7527452,0,0,57.98,20.77,-9,-9,6,1,1,0,0,4,3,1,505,1165569.4,0,0,1451.9872 -11652,14334,26034,26035,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.5588751,7.4453826,0,1,0,-9,39,0,-3,87.074211,0,0,0,58,2,4,1,3,3,2019,1,1,9,0,30,27,15,1,0,1,0,6.9944453,6.9944453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,54.200001,57.490002,4,1,1,0,1,1,3,0,542.5,16931.365,0,0,779.36182 -11652,14334,26035,26034,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,6.8148742,6.706398,0,1,0,-9,37,0,3,52.630459,0,0,0,55,2,3,1,3,-9,2019,1,2,12,1,12,14,15,1,0,1,0,7.8610291,7.8610291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,52.990002,51.279999,3,1,1,0,1,1,3,0,542.5,16931.365,0,0,779.36182 -11653,14335,26036,26037,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,6,0,0,0,0,64,2,2,3,3,3,2019,4,2,2,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,38.41,21.799999,7,1,1,0,0,2,1,0,218,-39278.438,0,0,2068.5388 -11653,14335,26037,26036,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,43,0,-6,0,0,0,0,70,3,3,3,3,3,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.41,21.799999,62.66,52.400002,3,1,1,0,0,2,1,0,218,-39278.438,0,0,2068.5388 -11654,14336,26038,-9,26040,26039,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.9104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,9,2,1,513.33331,245452.81,0,0,1802.3861 -11654,14336,26039,26040,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,7.6037908,7.3365254,0,2,0,-9,16,0,7,-106.57549,0,0,0,38,2,3,3,3,3,2019,2,2,7,0,30,30,15,1,0,3,0,6.1451101,6.1451101,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.69676,1,36.73,57.630001,45.75,34.52,3,4,2,0,0,9,2,1,513.33331,245452.81,0,0,1802.3861 -11654,14336,26040,26039,-9,-9,2,1,0,38,1,0,1,0,2,-9,8,3,1,1,3,0,0,0,2,0,-9,7,0,-7,-145.47815,0,0,1,45,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,34.52,36.73,57.630001,3,2,3,0,1,9,2,1,513.33331,245452.81,0,0,1802.3861 -11655,14337,26041,26042,-9,-9,1,1,1,66,1,0,0,0,2,-9,1,1,0,0,4,7.1207404,6.9812188,0,1,0,-9,4,0,-3,47.709221,0,0,0,69,2,3,3,3,3,2019,2,2,6,0,30,30,15,1,0,4,0,6.254024,6.254024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,52.48,55.599998,6,1,1,0,0,7,2,0,1032.5,529391.88,0,0,1757.472 -11655,14337,26042,26041,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,4.5745816,4.4884577,1,0,-9,4,0,3,73.011002,0,0,0,66,2,4,1,-9,-9,2019,3,1,6,0,0,18,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5860243,0,0,52.48,55.599998,60.119999,54.799999,6,1,1,0,0,7,2,0,1032.5,529391.88,0,0,1757.472 -11656,14338,26043,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,8.5274601,8.6124573,0,3,0,0,0,-9,0,-1059.4224,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,70,35,15,1,1,-9,0,8.991044,8.991044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.200001,63.27,-9,-9,6,1,1,0,0,12,5,1,267,22169.281,0,0,1794.0973 -11657,14339,26044,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,4,7.0697031,7.0862803,0,3,0,0,0,-9,0,-1023.9896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,0,15,1,0,-9,0,8.8366604,8.8366604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,2,2,0,591,219604.23,0,0,1352.8445 -11658,14340,26045,26046,-9,-9,2,1,0,60,1,0,0,0,2,-9,6,3,0,0,4,0,6.3726439,6.2783141,1,0,-9,39,0,-1,-6.9248772,0,0,0,61,2,5,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5536447,6.2339792,0,0,56.09,44.259998,39.689999,62.389999,4,1,1,0,0,2,2,1,773,152173.19,0,0,1436.4288 -11658,14340,26046,26045,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,5,6.8710761,6.8732982,0,1,0,-9,10,0,1,-46.990669,0,0,0,60,2,4,3,-9,-9,2019,2,2,7,0,0,45,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.689999,62.389999,56.09,44.259998,7,1,1,0,0,2,2,1,773,152173.19,0,0,1436.4288 -11659,14341,26047,-9,-9,-9,1,1,0,78,2,0,0,0,1,-9,4,3,0,0,4,0,7.1637001,7.2286777,3,0,0,0,-9,0,-1200.5737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5596066,7.4800406,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,3,1,275,851017.75,0,0,1308.8073 -11660,14342,26048,-9,26052,26049,1,1,1,23,2,0,2,0,1,1,2,1,0,0,5,7.312264,7.4171729,0,3,0,0,0,-9,0,-1205.2775,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,16,0,15,1,0,-9,1,12.732524,12.732524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,1,1,3,0,549,47064.656,0,0,1267.7224 -11660,14343,26049,26052,-9,-9,3,1,1,51,1,0,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,25,0,10,0,0,0,0,41,2,5,3,-9,-9,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,62.389999,56.709999,6,2,3,1,1,1,1,0,507,75558.563,0,0,0 -11660,14343,26050,-9,26052,26049,6,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1162.2823,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,1,1,0,507,75558.563,0,0,0 -11660,14343,26051,-9,26052,26049,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1011.4039,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,1,1,0,507,75558.563,0,0,0 -11660,14343,26052,26049,-9,-9,2,1,0,41,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,25,0,-10,0,0,0,1,51,3,4,3,2,3,2019,4,3,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,53,54,1,2,3,0,1,1,1,0,507,75558.563,0,0,0 -11660,14344,26053,-9,26052,26049,4,1,1,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-912.66974,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,1,0,2746,-137945.8,0,0,0 -11661,14345,26054,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1101.5077,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,130.50064,0,0,0,0,1134.0194,0,1,1,0,0,0,0,0,46.130001,24.309999,-9,-9,3,1,1,0,0,9,1,0,568,-129652.94,0,0,656.4483 -11662,14346,26055,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,0,3,8.3676414,8.3484468,0,3,0,0,0,-9,0,-1000.665,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,40,40,15,1,1,-9,0,13.39662,13.39662,0,0,0,0,0,0,0,0,0,0,0,3.0111325,0,0,0,33.66,61.57,-9,-9,3,1,1,0,0,2,4,0,96,861551,0,0,1500.8054 -11663,14347,26056,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-961.45215,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,0,10,1,0,294,379159.38,0,0,1284.0326 -11664,14348,26057,26059,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,2,0,1,0,0,0,0,68,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.056191,1,53,47,50,47,5,1,1,0,0,11,1,0,672.33331,-23202.213,0,0,2440.7644 -11664,14348,26058,-9,26059,26057,3,1,1,14,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1063.9894,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,1,0,672.33331,-23202.213,0,0,2440.7644 -11664,14348,26059,26057,-9,-9,2,1,0,68,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,2,0,-1,0,0,0,0,69,3,3,3,3,3,2019,4,1,11,1,0,0,15,3,0,4,0,0,0,1,0,11.341229,0,0,0,0,0,1,1,0,0,0,0,0,50,47,53,47,5,1,1,0,0,11,1,0,672.33331,-23202.213,0,0,2440.7644 -11665,14349,26060,-9,26063,26065,4,1,1,11,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-922.59033,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,6,2,1,686.66669,10801.517,0,0,2228.4492 -11665,14349,26061,-9,26063,26065,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.049,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,1,686.66669,10801.517,0,0,2228.4492 -11665,14349,26062,-9,26063,26065,3,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.08441,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,2,1,686.66669,10801.517,0,0,2228.4492 -11665,14349,26063,26065,-9,-9,2,1,0,33,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,-1,-85.458931,0,0,1,34,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,41.419998,38.669998,44.400002,3,1,1,0,0,6,2,1,686.66669,10801.517,0,0,2228.4492 -11665,14349,26064,-9,26063,26065,5,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.1335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,1,686.66669,10801.517,0,0,2228.4492 -11665,14349,26065,26063,-9,-9,1,1,1,34,1,0,4,0,2,-9,1,1,0,0,3,7.5557895,7.6693048,0,2,0,-9,9,0,1,21.262377,0,0,0,33,2,3,3,3,3,2019,2,2,9,0,30,30,15,1,0,3,0,5.9293704,5.9293704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.669998,44.400002,39.150002,41.419998,3,1,1,0,0,6,2,1,686.66669,10801.517,0,0,2228.4492 -11666,14350,26066,26067,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,0,13.236599,0,0,0,81,2,3,3,3,3,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.740002,22.92,47.02,36.57,6,1,1,0,0,13,2,1,544,325390.94,0,0,2415.5137 -11666,14350,26067,26066,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,0,3,0,6.0367398,6.6511641,1,0,-9,8,0,0,16.970854,0,0,0,81,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,6.3109994,0,0,0,0,19.741318,2,1,1,0,0,6.2329164,0,1,47.02,36.57,49.740002,22.92,5,1,1,0,0,13,2,1,544,325390.94,0,0,2415.5137 -11667,14351,26068,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,0,4,0,6.199749,5.8973603,3,0,0,0,-9,0,-1122.3351,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0734382,6.0871754,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,2,1,1260,178442.14,0,0,827.93286 -11668,14352,26069,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,3,7.8578629,7.5391159,0,1,0,-9,7,0,-8,-44.748993,0,0,1,-9,-9,-9,-9,2,3,2019,2,2,13,1,40,0,15,1,0,-9,0,9.4819832,9.4819832,0,0,0,0,0,0,0,5.48,1,1,0,0,0,9.3931093,1,44.189999,58.009998,29.190001,19.440001,6,1,1,0,1,13,3,0,195,115071.98,0,0,2914.9539 -11668,14353,26070,-9,-9,-9,2,1,0,46,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,7,0,8,103.50365,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,20,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.190001,19.440001,44.189999,58.009998,1,1,1,0,0,13,3,0,1594,-32005.199,0,0,359.39917 -11668,14354,26071,-9,26070,-9,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.4584737,7.4825811,0,3,0,0,0,-9,0,-1016.0055,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,42,36,15,1,0,-9,1,5.184401,5.184401,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.4782033,3,52.990002,51.279999,-9,-9,5,1,1,0,0,13,3,0,1818,46655.293,0,0,1025.9171 -11669,14355,26072,-9,-9,-9,1,1,0,85,3,0,0,0,1,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-921.86487,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9572291,0,0,0,43.57,25.040001,-9,-9,6,3,4,0,0,9,1,1,1471,49093.895,0,0,-277.49234 -11670,14356,26073,-9,26075,26074,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1087.2379,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,11,2,1,621,150244.55,0,0,779.20154 -11670,14356,26074,26075,-9,-9,1,1,1,36,1,0,1,0,2,-9,1,1,0,0,2,0,0,0,2,0,-9,1,-9,3,-6.776824,-9,0,0,33,2,3,1,2,2,2019,1,2,15,4,37,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,44.650002,39.220001,55.189999,5,1,1,0,0,11,2,1,621,150244.55,0,0,779.20154 -11670,14356,26075,26074,-9,-9,2,1,0,33,1,0,1,0,2,-9,2,1,0,0,3,7.3832469,7.3847108,0,2,0,-9,1,-9,-3,-17.789274,-9,0,1,36,2,2,1,-9,-9,2019,1,1,13,1,26,0,15,1,0,1,0,7.5006585,7.5006585,0,0,0,0,0,0,0,0,1,1,0,4.6861959,0,0,0,39.220001,55.189999,33.07,44.650002,4,1,1,0,0,11,2,1,621,150244.55,0,0,779.20154 -11671,14357,26076,-9,-9,-9,1,1,0,65,2,0,0,0,2,-9,4,3,0,0,4,0,6.8771195,7.0882578,1,0,-9,18,0,9,-84.007568,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,14,2,0,36,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9175806,0,0,43.419998,62.330002,52.259998,47.709999,6,1,1,0,0,8,4,1,627,267480.31,0,0,-86.288452 -11671,14358,26077,-9,-9,-9,2,1,0,56,2,0,0,0,1,-9,2,1,0,0,3,8.5150757,8.320857,0,1,0,-9,18,0,0,13.481863,0,0,0,-9,-9,-9,-9,2,3,2019,2,1,11,0,21,35,15,1,0,-9,0,18.882175,18.882175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.259998,47.709999,43.419998,62.330002,6,1,1,0,0,8,4,1,233,378463.22,0,0,577.72217 -11672,14359,26078,26079,-9,-9,1,1,0,63,1,0,0,0,1,-9,1,1,0,0,3,8.5189533,8.3112411,0,1,0,-9,10,0,-1,-45.726124,0,0,0,64,2,3,1,1,2,2019,1,2,20,9,11,13,15,1,1,1,0,46.346691,46.346691,0,0,0,0,0,0,0,0,0,0,0,2.2833395,0,0,0,34.290001,53.060001,62.27,40.23,4,1,1,0,0,8,5,1,723,478969.31,0,0,3433.5969 -11672,14359,26079,26078,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,0,3,8.299572,8.2805014,4.1581645,1,0,-9,10,0,1,39.435184,0,0,0,63,1,3,1,-9,-9,2019,1,1,8,0,60,0,15,1,0,1,0,8.1617117,8.1617117,0,0,0,0,0,0,0,0,0,0,0,4.2925386,4.4047017,0,0,62.27,40.23,34.290001,53.060001,5,1,1,0,0,8,5,1,723,478969.31,0,0,3433.5969 -11673,14360,26080,26081,-9,-9,1,1,1,74,1,0,0,0,2,-9,2,1,0,0,3,7.1881924,8.5959244,8.2223005,1,0,-9,55,0,1,57.185841,0,0,0,73,3,1,3,3,3,2019,2,2,9,0,23,22,15,1,0,4,0,8.9228516,8.9228516,1,0,0,0,0,0,0,71.5,1,1,0,0,7.7246079,73.774612,1,55.360001,51.57,52.209999,15.52,6,1,1,0,0,2,4,1,700,1305243.5,0,0,4071.6372 -11673,14360,26081,26080,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,55,0,-1,-.18606305,0,0,0,74,2,3,1,3,3,2019,3,1,8,1,0,0,15,4,0,1,0,0,0,1,0,21.987894,0,0,0,0,0,1,1,0,0,0,0,0,52.209999,15.52,55.360001,51.57,5,1,1,0,0,2,4,1,700,1305243.5,0,0,4071.6372 -11674,14361,26082,-9,-9,-9,1,1,1,73,3,0,1,0,3,-9,4,3,0,1,1,0,6.2248931,6.4248962,4,0,0,0,-9,0,-947.25916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0791268,0,0,33.48,28.059999,-9,-9,7,1,1,0,0,12,2,1,648,103287.45,0,0,304.77881 -11674,14362,26083,-9,26084,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,3,0,0,0,-9,0,-946.52081,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,12,3,1,322.5,40140.266,0,0,1073.3016 -11674,14362,26084,-9,-9,26082,2,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,7.5192356,7.8506875,0,3,0,0,0,-9,0,-988.41705,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,35,37,15,1,0,-9,1,6.4563794,6.4563794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.529999,41.779999,-9,-9,6,1,1,0,0,12,3,1,322.5,40140.266,0,0,1073.3016 -11675,14363,26085,-9,26086,26087,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.45166,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,3,0,721.66669,379511.44,0,0,1987.3115 -11675,14363,26086,26087,-9,-9,2,1,0,28,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-24,32.808094,-9,1,1,52,2,3,1,-9,-9,2019,3,1,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.849998,52.43,49,50,2,1,1,0,0,8,3,0,721.66669,379511.44,0,0,1987.3115 -11675,14363,26087,26086,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.4423618,8.3554134,0,2,0,-9,7,0,24,-144.72823,0,0,0,28,3,3,3,3,3,2019,2,2,11,2,44,43,15,1,0,3,0,15.776193,15.776193,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,47.849998,52.43,5,1,1,0,1,8,3,0,721.66669,379511.44,0,0,1987.3115 -11676,14364,26088,-9,26091,26089,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.5688,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,1,1,1467.25,59141.465,0,0,966.57959 -11676,14364,26089,26091,-9,-9,2,1,1,36,1,1,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,5,0,1,0,0,0,0,35,2,2,1,-9,-9,2019,3,1,18,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.77,25.85,52.689999,31.65,2,1,1,0,0,6,1,1,1467.25,59141.465,0,0,966.57959 -11676,14364,26090,-9,26091,26089,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.19305,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,1,1,1467.25,59141.465,0,0,966.57959 -11676,14364,26091,26089,-9,-9,1,1,0,35,1,1,2,0,2,-9,1,1,0,0,2,0,0,0,2,0,-9,5,0,-1,0,0,0,1,36,2,1,3,-9,-9,2019,2,2,17,5,10,51,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.689999,31.65,32.77,25.85,3,1,1,0,0,6,1,1,1467.25,59141.465,0,0,966.57959 -11677,14365,26092,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,3,0,7.138732,6.8614874,3,0,0,0,-9,0,-1005.0586,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0348845,7.1773238,0,0,61.860001,41.720001,-9,-9,6,1,1,0,0,7,2,1,341,529504.06,0,0,2974.4678 -11678,14366,26093,-9,26094,26095,6,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-989.46094,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,6,3,0,696.75,189523.31,0,0,2969.468 -11678,14366,26094,26095,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,1,7.7970085,7.9206114,0,2,0,-9,30,0,1,-51.856415,0,0,0,47,2,1,3,3,3,2019,2,1,16,5,38,38,15,1,1,3,0,8.5429802,8.5429802,0,0,0,0,0,0,0,42,1,1,0,0,0,38.972847,2,34.080002,39.060001,26.059999,24.75,4,2,3,0,0,6,3,0,696.75,189523.31,0,0,2969.468 -11678,14366,26095,26094,-9,-9,1,1,1,47,1,0,2,0,2,-9,3,3,0,1,1,0,0,0,2,0,-9,30,0,-1,23.350468,0,0,0,48,2,1,1,-9,-9,2019,3,2,24,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.059999,24.75,34.080002,39.060001,1,2,3,1,0,6,3,0,696.75,189523.31,0,0,2969.468 -11678,14366,26096,-9,26094,26095,5,1,1,16,2,0,2,1,-9,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1158.4233,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.470859,3,51.060001,56.509998,-9,-9,3,2,3,0,0,6,3,0,696.75,189523.31,0,0,2969.468 -11678,14367,26097,-9,26094,26095,3,1,1,24,2,0,2,0,2,-9,2,1,0,0,3,7.5814266,7.6740518,0,3,0,0,0,-9,0,-1013.9796,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,47,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.316025,3,38.720001,53.77,-9,-9,4,2,3,0,0,6,3,0,319,-36954.246,0,0,1931.3837 -11678,14368,26098,-9,26094,26095,4,1,1,20,2,0,2,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-894.13269,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,22,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.51,47.41,-9,-9,2,2,3,0,0,6,1,0,618,7556.1196,0,0,699.18707 -11679,14369,26099,26100,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.7747316,9.0111418,6.9474792,1,0,-9,16,0,2,-134.85818,0,0,0,44,2,2,1,3,2,2019,1,2,10,0,38,38,15,1,0,1,0,20.753197,20.753197,0,0,0,0,0,0,0,0,0,0,0,0,7.2882857,0,0,58.150002,52.91,45.93,41.470001,7,1,1,0,0,2,5,1,1660,1923696.6,0,0,3897.0244 -11679,14369,26100,26099,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,2,8.6907282,8.6286993,0,1,0,-9,16,0,-2,74.479187,0,0,1,46,2,4,1,2,-9,2019,1,1,12,0,39,43,15,1,0,1,0,19.660995,19.660995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.93,41.470001,58.150002,52.91,6,1,1,0,0,2,5,1,1660,1923696.6,0,0,3897.0244 -11680,14370,26101,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,2,0,5.7266841,6.3988428,3,0,0,0,-9,0,-950.48737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.8025146,0,0,58.02,31.59,-9,-9,5,1,1,0,0,5,2,1,562,137440.8,0,0,22.405506 -11681,14371,26102,26103,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,2,48.253368,0,0,0,60,1,3,3,1,1,2019,4,2,4,0,0,43,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,49.040001,55.860001,6,1,1,0,0,5,2,1,1660.5,2011807.3,0,0,693.07953 -11681,14371,26103,26102,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,7.1873121,7.4842529,1,0,-9,9,0,-2,58.016666,0,0,0,62,1,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2711959,7.0600023,0,0,49.040001,55.860001,48.279999,60.18,6,1,1,0,0,5,2,1,1660.5,2011807.3,0,0,693.07953 -11681,14372,26104,-9,26103,26102,3,1,1,23,2,0,0,0,1,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1026.2158,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,59.91,-9,-9,6,1,1,1,0,5,1,1,441,21690.537,0,0,-978.16656 -11682,14373,26105,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,8.4042101,8.3191652,0,3,0,-9,0,-9,0,-1018.0496,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,1,44,0,15,1,0,-9,0,9.1664619,9.1664619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,4,4,0,231,-110894.92,0,0,1917.6146 -11683,14374,26106,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-873.85602,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.47571763,0,0,0,31.66,54.5,-9,-9,3,1,1,0,0,10,1,0,194,-58019.199,0,0,933.96344 -11684,14375,26107,26108,-9,-9,2,1,0,27,1,0,0,0,1,-9,3,3,0,0,4,8.3435135,8.2763987,0,1,0,-9,3,0,-2,104.2993,0,1,1,29,1,4,1,-9,-9,2019,3,1,18,6,43,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,57.16,56.150002,6,1,1,1,0,8,5,0,974.5,184405.34,0,0,4203.7891 -11684,14375,26108,26107,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.5726871,8.9007397,0,1,0,-9,3,0,2,-6.6007309,-9,1,0,27,1,4,3,2,2,2019,2,2,7,0,38,0,15,1,0,3,0,19.006193,19.006193,0,0,0,0,0,0,0,0,0,0,0,1.0802599,0,0,0,57.16,56.150002,46.389999,60.990002,6,1,1,0,0,8,5,0,974.5,184405.34,0,0,4203.7891 -11685,14376,26109,26110,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.2355032,8.5412254,0,1,0,-9,25,0,11,90.115295,0,0,0,45,2,3,1,3,3,2019,1,1,9,0,45,50,15,1,0,1,0,10.919033,10.919033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.119999,51.57,45.860001,48.970001,6,1,1,0,0,12,4,1,201,497794.81,0,0,2694.6787 -11685,14376,26110,26109,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,7.9276958,8.1330862,0,1,0,-9,25,0,-11,41.885925,0,0,0,56,2,4,1,2,2,2019,1,2,15,4,27,27,15,1,1,1,0,10.627126,10.627126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.860001,48.970001,61.119999,51.57,5,1,1,0,0,12,4,1,201,497794.81,0,0,2694.6787 -11685,14377,26111,-9,26110,26109,3,1,0,18,2,0,0,1,2,0,7,2,0,0,3,6.5393777,6.5157061,0,3,0,0,0,-9,0,-1096.5237,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,25,10,14,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.040001,55.900002,-9,-9,3,1,1,0,0,12,2,1,342,13684.487,0,0,-597.62793 -11686,14378,26112,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,0,4,8.3167009,8.195282,0,3,0,0,0,-9,0,-834.7312,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,37,40,15,1,0,-9,0,13.81882,13.81882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.380001,62.299999,-9,-9,5,1,1,0,0,8,4,0,148,323375.84,0,0,2014.146 -11687,14379,26113,-9,-9,-9,1,1,0,36,3,0,0,0,1,-9,2,1,0,0,5,9.0882206,9.1327257,0,3,0,-9,0,1,0,-1077.9049,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,45,37,15,1,1,-9,0,24.017363,24.017363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.309999,58.560001,-9,-9,3,2,3,0,0,6,5,1,60,40176.199,0,0,2519.8308 -11688,14380,26114,26116,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,3,7.3458638,7.8264818,0,2,0,-9,5,0,-7,-214.67131,0,0,1,44,2,4,1,1,2,2019,1,2,9,0,24,20,15,1,0,1,0,8.5885525,8.5885525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.52,38,52,55,6,1,1,0,0,5,4,1,470,165733.09,0,0,2133.834 -11688,14380,26115,-9,26114,26116,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.8571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,470,165733.09,0,0,2133.834 -11688,14380,26116,26114,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.4141216,8.3834124,0,2,0,-9,5,0,7,-81.491043,0,0,0,37,2,3,1,3,-9,2019,1,1,9,1,40,46,15,1,0,1,0,11.444195,11.444195,0,0,0,0,0,0,0,0,0,0,0,.78086394,0,0,0,52,55,55.52,38,5,1,1,0,0,5,4,1,470,165733.09,0,0,2133.834 -11688,14380,26117,-9,26114,26116,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.9921,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,470,165733.09,0,0,2133.834 -11689,14381,26118,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1023.2025,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.889999,18.610001,-9,-9,2,1,1,0,0,12,1,0,1146,219946.75,0,0,443.29831 -11690,14382,26119,26120,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,6.0429726,6.0465655,1,0,-9,40,0,9,-51.965359,0,0,0,70,2,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3169394,5.6979561,0,0,61.790001,32.240002,60.02,56.419998,6,1,1,0,0,2,2,1,437.5,771176.88,0,0,1981.542 -11690,14382,26120,26119,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,5,0,6.6452332,6.3859553,1,0,-9,40,0,0,82.15435,0,0,0,79,2,3,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6299953,6.6838937,0,0,60.02,56.419998,61.790001,32.240002,7,1,1,0,0,2,2,1,437.5,771176.88,0,0,1981.542 -11691,14383,26121,26122,-9,-9,2,1,1,85,1,0,0,0,3,-9,2,1,0,0,3,3.4693999,3.3822775,0,1,0,-9,10,0,5,-60.369663,0,0,0,80,3,4,3,-9,-9,2019,2,1,9,0,25,0,15,1,0,4,0,.15104483,.15104483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,58.299999,52.91,6,1,1,0,0,9,2,1,327.5,318997.88,0,0,1058.6682 -11691,14383,26122,26121,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,62,0,-5,39.308632,0,0,0,85,3,3,1,2,2,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7687888,0,2.7025597,1,58.299999,52.91,54,45,6,1,1,0,0,9,2,1,327.5,318997.88,0,0,1058.6682 -11692,14384,26123,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,3,9.1640787,8.9890842,0,3,0,-9,0,-9,0,-921.28198,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,40,0,15,1,0,-9,0,23.796654,23.796654,0,0,0,0,0,0,0,0,0,0,0,4.3812618,0,0,0,51.240002,50.959999,-9,-9,5,1,1,0,0,8,5,0,635,-6184.937,0,0,2863.3567 -11693,14385,26124,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,1,2,7.9649839,7.6753378,0,3,0,0,0,-9,0,-971.30042,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,40,33,15,1,0,-9,0,6.6900983,6.6900983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.369999,17.15,-9,-9,4,1,1,0,0,2,3,0,1926,182941.44,0,0,1400.8735 -11694,14386,26125,26126,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.4869061,8.7880096,7.1376133,1,0,-9,6,0,-2,75.875832,0,0,0,58,3,3,1,2,2,2019,1,1,18,6,37,37,15,1,1,1,0,16.570015,16.570015,0,0,0,0,0,0,0,14.5,1,1,0,7.6860485,0,22.204975,3,55.16,24.790001,55.360001,51.57,6,1,1,0,0,10,5,1,418,1426841.3,0,0,5386.2158 -11694,14386,26126,26125,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,0,3,8.2614985,8.0713692,2.0023687,1,0,-9,6,0,2,-57.754971,0,0,0,56,2,4,1,3,3,2019,1,2,5,0,38,38,15,1,0,1,0,11.129097,11.129097,0,0,0,0,0,0,0,7,1,1,0,2.2628281,0,10.090189,3,55.360001,51.57,55.16,24.790001,5,1,1,0,0,10,5,1,418,1426841.3,0,0,5386.2158 -11694,14387,26127,-9,-9,-9,3,1,0,22,2,0,0,1,3,0,7,2,0,1,4,0,0,0,3,0,0,0,-9,0,-1106.9269,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,52.5,-9,-9,7,1,1,0,0,10,1,1,5386,53971.195,0,0,121.7505 -11695,14388,26128,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,7.1506848,7.6528478,3,0,0,0,-9,0,-1069.71,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4127316,7.1942606,0,0,50.66,48.18,-9,-9,6,1,1,0,0,7,3,1,3253,921741.88,0,0,928.59204 -11696,14389,26129,-9,-9,-9,1,1,0,57,3,0,1,0,3,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-975.42554,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.970001,46.759998,-9,-9,5,1,1,0,0,1,1,0,232,-8388.3916,0,0,1347.6617 -11696,14390,26130,-9,26129,-9,2,1,1,34,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-949.7937,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.16,40.720001,-9,-9,3,1,1,1,1,1,1,0,897.5,8460.4814,0,0,918.31689 -11696,14390,26131,-9,-9,26130,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-960.19202,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,0,897.5,8460.4814,0,0,918.31689 -11697,14391,26132,26133,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,2,0,8.4678783,8.5412092,1,0,-9,44,0,-2,98.862732,0,0,0,67,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4241362,0,0,61.279999,35.650002,59.700001,53.75,3,1,1,0,0,7,4,1,544.5,1545248.8,0,0,3659.5393 -11697,14391,26133,26132,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,2,23.43404,0,0,0,65,2,2,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0957882,0,0,0,59.700001,53.75,61.279999,35.650002,6,1,1,0,0,7,4,1,544.5,1545248.8,0,0,3659.5393 -11698,14392,26134,-9,26136,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.58,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,2,1,490,17830.709,0,0,1517.1334 -11698,14392,26135,-9,26136,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1063.8536,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,1,490,17830.709,0,0,1517.1334 -11698,14392,26136,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,1,1,0,1,2,6.8317571,7.4318662,6.5148621,4,0,0,0,-9,0,-918.41138,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,58,50,15,1,1,-9,0,1.677313,1.677313,0,0,0,0,0,0,0,0,1,1,0,6.4220638,0,0,0,31.040001,33.389999,-9,-9,3,1,1,0,0,9,2,1,490,17830.709,0,0,1517.1334 -11699,14393,26137,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,2,7.5238118,7.6010017,0,3,0,0,0,-9,0,-1013.5582,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,16,16,15,1,0,-9,0,11.004544,11.004544,0,0,0,0,0,0,0,0,1,1,0,3.2962854,0,0,0,58.07,33.060001,-9,-9,6,1,1,0,0,12,3,1,358,775570.25,0,0,810.71106 -11700,14394,26138,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,4,0,8.1401091,8.1816044,3,0,-9,0,1,0,-1094.8485,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2667217,8.5595188,0,0,45.16,51.93,-9,-9,3,1,1,0,0,9,4,1,815,1183790.6,0,0,2913.7727 -11701,14395,26139,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,0,3,0,7.8580074,8.0688858,3,0,0,0,-9,0,-835.83063,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5381207,7.9283009,0,0,58.470001,44.689999,-9,-9,6,1,1,0,0,7,3,0,416,981769.63,0,0,2113.198 -11702,14396,26140,-9,26143,26142,5,1,0,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.7595,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,4,1,376.83334,237201.59,0,0,3025.6318 -11702,14396,26141,-9,26143,26142,4,1,1,4,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.18634,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,4,1,376.83334,237201.59,0,0,3025.6318 -11702,14396,26142,26143,-9,-9,2,1,1,40,1,2,4,0,1,-9,2,1,0,0,4,9.1107349,9.0793772,0,2,0,-9,12,0,1,21.987267,0,0,0,39,1,4,3,2,2,2019,2,1,6,0,40,36,15,1,0,3,0,25.178274,25.178274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,39.869999,58.610001,6,2,3,0,0,8,4,1,376.83334,237201.59,0,0,3025.6318 -11702,14396,26143,26142,-9,-9,1,1,0,39,1,2,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,12,0,-1,-188.11227,0,0,1,40,1,4,1,-9,-9,2019,3,2,18,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.869999,58.610001,57.16,56.150002,6,1,1,0,0,8,4,1,376.83334,237201.59,0,0,3025.6318 -11702,14396,26144,-9,26143,26142,3,1,0,7,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.0294,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,4,1,376.83334,237201.59,0,0,3025.6318 -11702,14396,26145,-9,26143,26142,6,1,1,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-932.31836,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,4,1,376.83334,237201.59,0,0,3025.6318 -11703,14397,26146,-9,26148,26147,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.43713,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,569.25,46832.238,0,0,1208.041 -11703,14397,26147,26148,-9,-9,4,1,1,34,1,0,2,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,3,0,9,0,-9,0,0,25,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,40.23,61.310001,6,1,1,1,0,13,1,0,569.25,46832.238,0,0,1208.041 -11703,14397,26148,26147,-9,-9,1,1,0,25,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,3,0,0,0,-9,1,1,34,2,5,3,3,-9,2019,4,4,18,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5368762,0,0,0,40.23,61.310001,51.389999,59.18,4,1,1,1,1,13,1,0,569.25,46832.238,0,0,1208.041 -11703,14397,26149,-9,26148,26147,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.6703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,569.25,46832.238,0,0,1208.041 -11704,14398,26150,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,2,1,0,0,2,8.2712479,7.9479203,0,3,0,0,0,-9,0,-964.05267,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,20,22,15,1,0,-9,0,19.503691,19.503691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.27,33.02,-9,-9,6,1,1,0,0,2,4,0,1921,53978.98,0,0,920.33917 -11705,14399,26151,26152,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,2,7.8874397,8.0040159,0,2,0,-9,17,0,2,65.54789,0,0,0,39,2,3,1,1,3,2019,1,1,11,0,30,30,15,1,0,1,0,12.10162,12.10162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,50.279999,46.080002,57.200001,5,1,1,0,1,9,4,0,713.75,308745.78,0,0,3071.7078 -11705,14399,26152,26151,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,3,8.0382614,8.1833429,0,2,0,-9,18,0,-2,54.676586,0,0,1,41,2,2,1,2,2,2019,1,2,12,1,38,40,15,1,0,1,0,10.810787,10.810787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,44.59,50.279999,5,1,1,0,1,9,4,0,713.75,308745.78,0,0,3071.7078 -11705,14399,26153,-9,26152,26151,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.322,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,0,713.75,308745.78,0,0,3071.7078 -11705,14399,26154,-9,26152,26151,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.62494,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,0,713.75,308745.78,0,0,3071.7078 -11706,14400,26155,-9,26156,26158,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1064.8416,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3622608,0,0,0,22.610001,61,-9,-9,3,1,1,0,0,9,5,1,300,653137.88,0,0,8743.0078 -11706,14400,26156,26158,-9,-9,2,1,0,52,1,0,2,0,1,-9,1,1,0,0,5,8.8196707,9.5605936,8.0037737,2,0,-9,21,0,-3,12.4674,0,0,0,55,1,4,1,1,1,2019,1,1,23,9,0,30,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.2199793,0,0,0,51.369999,21.360001,27.809999,65.690002,6,1,1,0,0,9,5,1,300,653137.88,0,0,8743.0078 -11706,14400,26157,-9,26156,26158,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1105.9597,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,300,653137.88,0,0,8743.0078 -11706,14400,26158,26156,-9,-9,1,1,1,55,1,0,2,0,1,-9,2,1,0,0,4,9.5351171,9.8831129,0,2,0,-9,22,0,3,33.711807,0,0,0,52,1,5,1,2,2,2019,1,2,24,12,45,45,15,1,1,1,0,33.075409,33.075409,0,0,0,0,0,0,0,0,1,1,0,4.8540378,0,0,0,27.809999,65.690002,51.369999,21.360001,3,1,1,0,0,9,5,1,300,653137.88,0,0,8743.0078 -11707,14401,26159,26160,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,8.4965343,8.7797871,1,0,-9,58,0,2,54.208073,0,0,0,74,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8225241,8.42803,0,0,57.330002,53.459999,60.799999,32.650002,6,1,1,0,0,5,4,1,676.5,1463575.9,0,0,4688.937 -11707,14401,26160,26159,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-2,-2.3797441,0,0,0,76,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.5319672,0,0,0,60.799999,32.650002,57.330002,53.459999,6,1,1,0,0,5,4,1,676.5,1463575.9,0,0,4688.937 -11708,14402,26161,26162,-9,-9,2,1,0,67,1,0,0,0,3,-9,1,1,0,0,4,9.1782236,9.4247417,5.853848,1,0,-9,49,0,1,-14.164348,0,0,0,66,3,3,3,3,2,2019,2,1,9,1,25,20,15,1,0,4,0,58.552952,58.552952,0,0,0,0,0,0,0,27.5,1,1,0,6.2141767,5.9022026,33.641834,3,49.27,56.950001,52,48,6,1,1,0,0,2,5,1,1890.5,400914.5,0,0,4868.9307 -11708,14402,26162,26161,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,6.8515558,6.6505942,1,0,-9,49,0,-1,3.7780781,0,0,0,67,3,4,1,3,-9,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9834609,6.8550982,0,0,52,48,49.27,56.950001,5,1,1,0,0,2,5,1,1890.5,400914.5,0,0,4868.9307 -11709,14403,26163,26164,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,4,7.8996515,7.9058909,0,2,0,-9,14,0,-16,-19.891354,0,0,1,55,2,4,1,3,3,2019,1,2,6,0,30,30,15,1,0,1,0,10.908779,10.908779,0,0,0,0,0,0,0,7,1,1,0,0,0,9.614933,3,54.599998,50.689999,54.790001,55.860001,6,1,1,0,0,2,5,1,531,818479.81,0,0,3286.4363 -11709,14403,26164,26163,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,4,8.6637383,8.617981,0,2,0,-9,10,0,16,1.9362071,0,0,0,39,2,4,1,-9,-9,2019,1,1,10,0,43,50,15,1,0,1,0,17.276009,17.276009,0,0,0,0,0,0,0,2,1,1,0,0,0,1.6194959,3,54.790001,55.860001,54.599998,50.689999,6,1,1,0,0,2,5,1,531,818479.81,0,0,3286.4363 -11709,14403,26165,-9,26163,26164,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1147.1371,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,5,1,531,818479.81,0,0,3286.4363 -11710,14404,26166,26167,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,0,5,8.5821581,8.0453377,0,1,0,1,1,-9,0,-4.0435224,0,1,0,26,1,3,1,2,1,2019,1,2,7,0,35,35,15,1,0,1,0,16.061956,16.061956,0,0,0,0,0,0,0,0,0,0,0,3.4344232,0,0,0,48.77,60.16,8.8299999,64.910004,6,1,1,0,0,9,5,1,948.5,113582.94,0,0,2953.1763 -11710,14404,26167,26166,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,3,8.6095943,8.4187975,0,1,0,-9,1,-9,0,20.052902,-9,1,1,26,2,5,1,-9,-9,2019,1,1,28,11,37,0,15,1,1,1,0,13.539371,13.539371,0,0,0,0,0,0,0,0,0,0,0,3.228472,0,0,0,8.8299999,64.910004,48.77,60.16,6,1,1,0,0,9,5,1,948.5,113582.94,0,0,2953.1763 -11711,14405,26168,26169,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,0,4,8.1709013,8.1606007,0,1,0,-9,7,0,-5,-74.268097,0,0,1,41,3,4,1,3,3,2019,1,2,12,1,32,38,15,1,0,1,0,13.6078,13.6078,0,0,0,0,0,0,0,7,0,0,0,0,0,4.0786276,3,58.43,39.369999,51,56,6,1,1,0,0,13,5,0,509,382597.41,0,0,2903.6926 -11711,14405,26169,26168,-9,-9,2,1,1,41,1,0,0,0,3,-9,2,1,0,0,4,8.48839,8.3632374,0,1,0,-9,7,0,5,102.24543,-9,0,0,36,2,4,1,-9,-9,2019,1,1,9,1,30,0,15,1,0,1,0,17.79542,17.79542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,58.43,39.369999,6,4,1,0,0,13,5,0,509,382597.41,0,0,2903.6926 -11712,14406,26170,26171,-9,-9,1,1,0,54,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,-3,-46.816021,0,0,0,57,2,3,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0758312,0,0,0,48.540001,54.5,46.080002,47.709999,6,1,1,0,0,11,5,1,1917,361788.75,0,0,3479.5264 -11712,14406,26171,26170,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,0,3,8.5509443,8.6184063,0,1,0,-9,6,0,3,-21.658276,0,0,0,54,2,4,3,3,2,2019,2,1,15,3,44,16,15,1,0,3,0,24.116337,24.116337,0,0,0,0,0,0,0,2,0,0,0,0,0,8.8568726,3,46.080002,47.709999,48.540001,54.5,4,1,1,0,0,11,5,1,1917,361788.75,0,0,3479.5264 -11712,14407,26172,-9,26170,26171,3,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,8.1649494,7.9581199,0,3,0,0,0,-9,0,-1096.3556,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,8,15,1,0,-9,1,9.4496813,9.4496813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,11,3,1,1063,154180.89,0,0,92.957527 -11713,14408,26173,26174,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,2,0,8.3263903,8.5774679,1,0,-9,46,0,5,-52.794147,0,0,0,65,2,4,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3682318,8.5676184,0,0,60.299999,36.049999,57.16,56.150002,6,1,1,0,0,7,4,1,400.5,2394001.5,0,0,4010.1016 -11713,14408,26174,26173,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,5.1487398,5.2331481,1,0,-9,46,0,-5,-41.227974,0,0,0,70,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4392219,4.9791079,0,0,57.16,56.150002,60.299999,36.049999,6,1,1,0,0,7,4,1,400.5,2394001.5,0,0,4010.1016 -11714,14409,26175,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,0,3,8.3748713,8.5516834,0,3,0,0,0,-9,0,-1006.1574,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,14.452355,14.452355,0,0,0,0,0,0,0,0,1,1,0,1.7087401,0,0,0,59.310001,49.810001,-9,-9,6,1,1,0,0,5,5,1,946,54063.023,0,0,1277.3127 -11715,14410,26176,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,4,9.0771999,9.5759583,0,3,0,0,0,-9,0,-999.79169,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,70,57,15,1,0,-9,0,15.893654,15.893654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,7,5,0,1234,-106698.58,0,0,4395.1523 -11716,14411,26177,-9,26178,26179,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.45068,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,1,580,-10503.82,0,0,2138.1333 -11716,14411,26178,26179,-9,-9,1,1,0,27,1,1,1,0,2,-9,2,1,0,0,4,7.1859922,6.3721743,0,2,0,-9,4,0,-2,82.93145,0,1,1,29,1,5,1,2,-9,2019,1,2,7,0,14,14,15,1,0,1,0,9.2390604,9.2390604,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,61.119999,51.57,62.389999,56.709999,6,1,1,0,0,11,3,1,580,-10503.82,0,0,2138.1333 -11716,14411,26179,26178,-9,-9,2,1,1,29,1,1,1,0,1,-9,2,1,0,0,5,8.091116,8.064971,0,2,0,-9,4,0,2,-58.869629,0,1,0,27,2,4,1,-9,-9,2019,1,1,7,0,50,8,15,1,0,1,0,7.9046731,7.9046731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,61.119999,51.57,6,1,1,0,0,11,3,1,580,-10503.82,0,0,2138.1333 -11717,14412,26180,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,1,2,0,6.3771114,6.2024136,3,0,0,0,-9,0,-968.72955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.795073,0,0,51.849998,43.98,-9,-9,5,1,1,0,0,2,2,0,380,-63202.641,0,0,1609.2306 -11718,14413,26181,-9,26182,-9,5,1,1,6,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-982.95465,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,542.66669,102566.38,0,0,4084.2427 -11718,14413,26182,-9,-9,-9,1,1,0,28,3,1,6,0,1,-9,1,1,0,1,3,6.7659392,7.0243654,0,4,0,0,0,-9,0,-867.92084,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,16,16,15,1,0,-9,0,7.3570681,7.3570681,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.927277,3,56.5,48.330002,-9,-9,6,1,1,0,0,2,2,0,542.66669,102566.38,0,0,4084.2427 -11718,14413,26183,-9,26182,-9,2,1,0,13,2,1,6,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1091.0449,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,2,2,0,542.66669,102566.38,0,0,4084.2427 -11718,14413,26184,-9,26182,-9,7,1,1,0,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-941.28589,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,542.66669,102566.38,0,0,4084.2427 -11718,14413,26185,-9,26182,-9,4,1,1,8,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1039.0197,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,542.66669,102566.38,0,0,4084.2427 -11718,14413,26186,-9,26182,-9,6,1,1,4,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1036.6495,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,0,542.66669,102566.38,0,0,4084.2427 -11719,14414,26187,26188,-9,-9,1,1,0,54,1,0,0,0,1,-9,6,3,0,0,2,0,0,0,1,0,-9,8,0,3,-80.473152,0,0,0,51,2,3,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,20.120001,37.41,51.830002,4,1,1,0,0,11,3,1,232,1452445.3,0,0,1281.0237 -11719,14414,26188,26187,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.0665379,8.202879,0,1,0,-9,8,0,-3,60.138351,0,0,0,54,1,2,3,2,2,2019,2,1,14,3,58,57,15,1,0,3,0,8.2363453,8.2363453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.41,51.830002,50.91,20.120001,5,1,1,0,0,11,3,1,232,1452445.3,0,0,1281.0237 -11720,14415,26189,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,3,7.9535418,7.8362994,0,3,0,-9,0,1,0,-912.76044,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,33,25,15,1,0,-9,0,9.4741669,9.4741669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.07,38.130001,-9,-9,5,1,1,0,0,13,3,1,648,-112483.88,0,0,-33.109035 -11721,14416,26190,-9,-9,26191,2,1,0,17,2,0,1,0,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1026.6632,1,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.220001,55.389999,-9,-9,6,1,1,0,0,6,5,1,1100.5,3779007.5,0,0,8075.7773 -11721,14416,26191,-9,-9,-9,1,1,1,64,3,0,1,0,1,-9,1,1,0,0,4,9.6933861,9.7275696,7.1349106,4,0,0,0,-9,0,-1076.3289,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,35,50,15,1,0,-9,0,78.519951,78.519951,0,0,0,0,0,0,0,2,1,1,0,7.1290331,7.3363996,3.640765,3,35.439999,62.099998,-9,-9,6,1,1,0,0,6,5,1,1100.5,3779007.5,0,0,8075.7773 -11722,14417,26192,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,2,1,0,0,4,8.8475971,8.9880733,6.4621119,1,0,-9,9,0,19,33.82666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,2,6,0,40,55,15,1,0,-9,0,23.947689,23.947689,0,0,0,0,0,0,0,2,0,0,0,6.987082,6.6461444,0,3,41.169998,59.310001,52,55,6,1,1,0,0,11,5,1,441,400204.31,0,0,2549.0701 -11723,14418,26193,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-940.08429,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.368715,0,0,0,57.919998,36.689999,-9,-9,7,1,1,0,0,10,1,0,1028,338493.16,0,0,1907.8885 -11724,14419,26194,26197,-9,-9,2,1,1,55,1,0,2,0,2,-9,2,1,0,1,2,7.4947824,7.2915158,0,2,0,-9,7,0,3,8.9255228,0,0,0,52,1,3,1,2,1,2019,1,1,17,5,20,70,15,1,1,1,0,10.931687,10.931687,0,0,0,0,0,0,0,2,1,1,0,0,0,5.2047248,3,32.630001,39.169998,38.799999,49.689999,2,1,1,0,1,9,3,1,1027.5,607876.88,0,0,2591.4749 -11724,14419,26195,-9,26197,26194,4,1,1,17,2,0,2,1,2,0,7,2,0,0,5,4.916647,5.5817094,5.0191932,2,0,0,0,-9,0,-1056.21,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1430397,0,0,0,55.259998,55.849998,-9,-9,7,1,1,0,0,9,3,1,1027.5,607876.88,0,0,2591.4749 -11724,14419,26196,-9,26197,26194,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,4.6371369,5.179224,2,0,0,0,-9,0,-966.88702,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0836015,0,0,0,40.490002,55.630001,-9,-9,5,1,1,0,0,9,3,1,1027.5,607876.88,0,0,2591.4749 -11724,14419,26197,26194,-9,-9,1,1,0,52,1,0,2,0,1,-9,1,1,0,0,3,7.5426731,7.5989194,0,2,0,-9,24,0,-3,-28.938063,0,0,0,55,2,2,1,3,2,2019,1,2,19,8,40,20,15,1,1,1,0,6.4594002,6.4594002,0,0,0,0,0,0,0,86,1,1,0,1.671793,0,118.97627,2,38.799999,49.689999,32.630001,39.169998,3,1,1,0,0,9,3,1,1027.5,607876.88,0,0,2591.4749 -11725,14420,26198,26199,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.6225119,8.917098,0,1,0,-9,30,0,-6,29.041304,0,0,0,55,2,4,1,2,2,2019,1,1,8,0,42,43,15,1,0,1,0,12.569897,12.569897,0,0,0,0,0,0,0,7,1,1,0,0,0,3.3565545,3,49.860001,55.310001,44.02,60.700001,6,1,1,0,0,4,5,1,210.33333,271486.13,0,0,4207.6001 -11725,14420,26199,26198,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.9095154,8.5956202,0,1,0,-9,29,0,6,-108.10179,0,0,0,49,1,4,1,-9,2,2019,1,2,11,0,45,50,15,1,0,1,0,15.330182,15.330182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.700001,49.860001,55.310001,6,1,1,0,0,4,5,1,210.33333,271486.13,0,0,4207.6001 -11725,14420,26200,-9,26198,26199,4,1,0,17,2,0,0,1,2,-9,7,2,0,0,4,6.212873,6.2015386,0,1,0,0,0,-9,0,-1038.1863,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,4,5,1,210.33333,271486.13,0,0,4207.6001 -11725,14421,26201,-9,26198,26199,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,7.81107,7.9472327,0,3,0,0,0,-9,0,-999.12915,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,35,35,15,1,0,-9,1,9.4501944,9.4501944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.529999,63.810001,-9,-9,3,1,1,0,0,4,3,1,135,8698.8809,0,0,166.62523 -11726,14422,26202,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,3,6.4509754,6.3201041,0,3,0,0,0,-9,0,-1045.5664,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,10,10,15,1,0,-9,0,8.4961586,8.4961586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,4,1,1,0,1,2,2,0,769,27978.688,0,0,753.26923 -11726,14423,26203,-9,26202,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,6.9101629,6.8906202,0,3,0,0,0,-9,0,-944.40204,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,20,8,15,1,0,-9,1,6.3223853,6.3223853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,6,1,1,0,0,2,2,0,719,-119477.38,0,0,-210.9525 -11727,14424,26204,26205,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,2,8.1975794,8.0631447,0,2,0,-9,16,0,0,-55.546169,0,0,1,39,1,5,1,1,1,2019,1,1,11,0,23,27,15,1,0,1,0,17.10771,17.10771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.560001,36.139999,57.060001,57.759998,6,1,1,0,0,5,5,1,616.25,945764.31,0,0,5346.8135 -11727,14424,26205,26204,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,5,9.5472116,9.4035158,0,2,0,-9,16,0,0,-36.482052,0,0,0,39,1,2,1,2,2,2019,1,2,11,0,50,48,15,1,0,1,0,30.640699,30.640699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.560001,36.139999,6,1,1,0,0,5,5,1,616.25,945764.31,0,0,5346.8135 -11727,14424,26206,-9,26204,26205,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.74603,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,616.25,945764.31,0,0,5346.8135 -11727,14424,26207,-9,26204,26205,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.7236,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,5,1,616.25,945764.31,0,0,5346.8135 -11728,14425,26208,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,3.9071958,5.8460555,5.6416554,3,0,0,0,-9,0,-901.55865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0148234,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,9,2,1,68,399533.13,0,0,1351.8345 -11729,14426,26209,-9,-9,-9,1,1,0,37,2,0,2,0,3,-9,2,1,0,0,4,6.692872,6.628479,0,4,0,0,0,-9,0,-1000.9671,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,18,21,15,1,0,-9,0,4.5615435,4.5615435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,2,1,1,0,1,5,2,0,621,24789.691,0,0,1983.3497 -11730,14427,26210,26211,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,7,0,0,-124.36303,0,0,0,60,2,3,3,-9,-9,2019,2,1,12,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.82,46.830002,49,48,4,1,1,0,0,6,1,1,1079,-70735.625,0,0,-148.6797 -11730,14427,26211,26210,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,0,3,0,4.4911208,3.9279408,1,0,-9,24,0,0,-83.87899,0,0,0,60,2,2,1,3,3,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7406397,4.0632496,0,0,49,48,51.82,46.830002,5,1,1,0,1,6,1,1,1079,-70735.625,0,0,-148.6797 -11731,14428,26212,26213,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,5.8296137,5.8974042,1,0,-9,42,0,-3,-13.331968,0,0,0,71,3,1,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6367512,5.6619868,4.5680017,1,62.02,28.48,61.02,34.57,6,1,1,0,0,9,2,1,465,102866.56,0,0,1064.1663 -11731,14428,26213,26212,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,1,0,6.6106749,6.5562353,1,0,-9,42,0,3,-46.418526,0,0,0,68,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.350491,0,0,61.02,34.57,62.02,28.48,6,1,1,0,0,9,2,1,465,102866.56,0,0,1064.1663 -11732,14429,26214,-9,-9,-9,1,1,1,54,3,0,2,0,1,-9,1,1,0,0,5,0,6.7548122,6.8204312,4,0,0,0,-9,0,-1016.4362,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,60,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.483242,8.4646358,3,57.060001,57.759998,-9,-9,7,1,1,0,0,12,2,1,453,0,0,0,12.475043 -11732,14430,26215,-9,-9,26214,2,1,1,20,2,0,2,1,2,-9,7,2,0,0,4,6.5355458,6.7593045,0,3,0,0,0,-9,0,-1108.9767,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,24,8,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.25,65.43,-9,-9,5,1,1,0,0,12,2,1,281,-13828.107,0,0,256.80994 -11732,14431,26216,-9,-9,26214,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,7.1043329,7.1735597,3,0,0,0,-9,0,-1049.682,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8350239,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,2,1,247,-18488.797,0,0,227.50333 -11733,14432,26217,26218,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,8.4895744,8.6957626,0,1,0,-9,25,0,-2,-12.514985,0,0,0,56,2,2,1,2,2,2019,1,2,7,0,40,38,15,1,0,1,0,19.487036,19.487036,0,0,0,0,0,0,0,2,0,0,0,4.9247632,0,0,3,60.02,56.419998,51.650002,44.349998,6,1,1,0,0,4,4,1,514,169846.83,0,0,1302.4092 -11733,14432,26218,26217,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,25,0,2,-38.645988,0,0,0,54,2,5,1,2,2,2019,1,1,12,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1.006162,3,51.650002,44.349998,60.02,56.419998,6,1,1,0,0,4,4,1,514,169846.83,0,0,1302.4092 -11734,14433,26219,26220,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,2,7.7225018,8.2323742,5.5303617,1,0,-9,29,0,5,-14.150842,0,0,0,50,2,4,1,2,2,2019,1,2,9,2,30,29,15,1,0,1,0,9.7324228,9.7324228,0,0,0,0,0,0,0,0,1,1,0,0,6.086843,0,0,57.259998,33.77,49.560001,47.209999,6,1,1,0,0,1,5,0,395,493450.31,0,0,3452.2546 -11734,14433,26220,26219,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.2142572,8.6657486,0,1,0,-9,29,0,-5,-82.991409,0,0,0,55,1,2,1,2,-9,2019,1,1,11,0,38,40,15,1,0,1,0,13.092104,13.092104,0,0,0,0,0,0,0,2,1,1,0,.9489786,0,0,3,49.560001,47.209999,57.259998,33.77,6,1,1,0,0,1,5,0,395,493450.31,0,0,3452.2546 -11735,14434,26221,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1038.5573,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.774712,3,50.650002,53.709999,-9,-9,2,1,1,0,0,12,1,1,541,136432.52,0,0,1313.8846 -11736,14435,26222,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,2,8.1714811,8.2826109,0,3,0,0,0,-9,0,-1028.5636,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,42,15,1,0,-9,0,11.446678,11.446678,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,52.240002,50.75,-9,-9,4,1,1,0,0,12,4,1,294,96650.633,0,0,1071.8455 -11737,14436,26223,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,0,3,7.137629,7.0537863,0,3,0,0,0,-9,0,-1065.8721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,16,15,1,0,-9,0,9.352169,9.352169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.709999,53.93,-9,-9,6,1,1,0,0,7,2,1,1988,453188.5,0,0,1148.5767 -11738,14437,26224,-9,26225,26226,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.7324,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,0,642.66669,23978.406,0,0,1900.0658 -11738,14437,26225,26226,-9,-9,1,1,0,24,1,0,1,0,2,-9,2,1,0,0,4,6.1907945,5.8894262,0,2,0,-9,3,0,-4,-96.409393,0,1,1,28,3,2,1,2,-9,2019,1,2,6,0,8,8,15,1,0,1,0,5.6729717,5.6729717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.119999,51.57,56.34,46.169998,7,1,1,0,0,13,2,0,642.66669,23978.406,0,0,1900.0658 -11738,14437,26226,26225,-9,-9,2,1,1,28,1,0,1,0,3,-9,2,1,0,0,2,7.4038296,7.2225833,0,2,0,-9,3,0,4,28.969818,0,1,0,24,2,4,1,-9,-9,2019,1,1,9,0,26,16,15,1,0,1,0,8.7732573,8.7732573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.34,46.169998,61.119999,51.57,6,1,1,0,0,13,2,0,642.66669,23978.406,0,0,1900.0658 -11739,14438,26227,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,2,1,0,0,3,7.714632,7.3233414,0,3,0,0,0,-9,0,-1000.0219,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,5,0,28,24,15,1,0,-9,0,7.4477515,7.4477515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,6,2,3,0,0,5,3,0,366,31204.426,0,0,-3.0149148 -11740,14439,26228,-9,-9,-9,1,1,0,40,2,0,2,0,2,-9,2,1,0,0,3,6.4478936,6.9706616,0,4,0,0,0,-9,0,-965.26697,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,17,16,15,1,0,-9,0,7.0617394,7.0617394,0,0,0,0,0,0,0,7,1,1,0,0,0,7.9317245,3,50.630001,50.990002,-9,-9,4,1,1,0,0,12,2,0,686,100574.88,0,0,1006.5516 -11741,14440,26229,26230,-9,-9,1,1,0,61,1,0,0,0,2,-9,1,1,0,0,4,0,7.8884072,7.4518552,1,0,-9,10,0,-10,1.3801084,0,0,0,71,3,4,3,-9,-9,2019,2,2,6,0,0,8,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4085383,0,0,60.119999,54.799999,57.16,56.150002,6,1,1,0,0,9,3,1,1122,845982.44,0,0,2012.7739 -11741,14440,26230,26229,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,5.6167455,4.9626975,1,0,-9,10,0,10,5.7120295,0,0,0,61,2,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3520484,4.8838468,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,9,3,1,1122,845982.44,0,0,2012.7739 -11742,14441,26231,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,5,8.0961323,7.8094144,0,3,0,0,0,-9,0,-1029.4426,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,47,15,1,0,-9,0,9.5499058,9.5499058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,10,4,1,140,259494.27,0,0,2093.4536 -11742,14442,26232,-9,-9,26231,2,1,1,20,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1028.5481,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.310001,-9,-9,7,1,1,1,1,10,1,1,301,36206.551,0,0,-417.97479 -11743,14443,26233,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1009.2182,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.6,48.029999,-9,-9,6,3,4,0,1,8,1,0,758,47406.922,0,0,2078.8406 -11744,14444,26234,26235,-9,-9,1,1,1,63,1,0,0,0,3,-9,4,3,0,0,3,0,6.9347944,6.8969026,1,0,-9,32,0,5,-21.348019,0,0,0,58,1,4,1,3,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.112431,7.2040534,0,0,38.75,43.02,58.299999,52.91,5,1,1,0,0,9,4,1,310.5,826281.19,0,0,2838.8862 -11744,14444,26235,26234,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,8.1920786,8.3726559,0,1,0,-9,11,0,-5,-43.815117,0,0,0,63,3,3,3,1,1,2019,2,1,7,0,65,30,15,1,0,4,0,8.4992809,8.4992809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,52.91,38.75,43.02,1,1,1,0,0,9,4,1,310.5,826281.19,0,0,2838.8862 -11744,14445,26236,-9,26235,26234,3,1,0,26,2,0,0,0,1,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1078.5446,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,1,0,9,1,1,1045,-501.12595,0,0,0 -11745,14446,26237,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,5,6.0641122,6.7215319,6.1873417,3,0,0,0,-9,0,-1024.6091,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,6,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.2973051,0,0,59.040001,54.119999,-9,-9,6,1,1,0,0,7,2,1,643,447006.72,0,0,1013.6261 -11746,14447,26238,26239,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,5,8.5649366,8.4197712,0,1,0,-9,27,0,2,43.663696,0,0,0,55,1,4,1,2,1,2019,1,1,6,0,17,20,15,1,0,1,0,34.223122,34.223122,0,0,0,0,0,0,0,0,0,0,0,4.9498258,0,0,0,62.389999,56.709999,53,54,7,1,1,0,0,10,5,1,1682.5,444178.41,0,0,6054.1045 -11746,14447,26239,26238,-9,-9,1,1,1,55,1,0,0,0,1,-9,1,1,0,0,4,9.1756229,9.4457407,0,1,0,-9,9,0,-2,83.085487,0,0,0,57,1,5,1,-9,-9,2019,1,2,9,1,30,35,15,1,0,1,0,55.966167,55.966167,0,0,0,0,0,0,0,0,0,0,0,5.6210527,0,0,0,53,54,62.389999,56.709999,6,1,1,0,0,10,5,1,1682.5,444178.41,0,0,6054.1045 -11747,14448,26240,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,2,0,6.4516749,6.5780087,3,0,0,0,-9,0,-935.77142,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,6.261107,0,0,0,7.0104241,0,0,1,1,0,0,6.3713694,0,0,61.790001,16.18,-9,-9,5,1,1,0,0,2,2,1,178,198735.63,0,0,1915.9583 -11748,14449,26241,26242,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,3,8.0590858,7.9093013,4.5319071,1,0,-9,8,0,-21,7.9587364,0,0,1,63,3,2,3,-9,-9,2019,2,1,12,0,39,39,15,1,0,3,0,8.2610703,8.2610703,0,0,0,0,0,0,0,7,0,0,0,0,4.7089605,14.563712,3,39.439999,57.549999,37.599998,43.759998,3,1,1,0,1,4,3,0,992,313907.47,0,0,1202.6125 -11748,14449,26242,26241,-9,-9,1,1,1,63,1,0,0,0,3,-9,3,3,0,0,2,0,6.1199508,5.7983284,1,0,-9,22,0,21,92.339607,0,0,0,42,2,3,1,3,3,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,6.054934,0,3,37.599998,43.759998,39.439999,57.549999,5,1,1,1,0,4,3,0,992,313907.47,0,0,1202.6125 -11749,14450,26243,26244,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,2,8.2748423,8.6428194,0,1,0,-9,9,0,-5,65.598366,0,0,0,61,2,2,3,3,3,2019,2,1,11,0,37,37,15,1,0,3,0,11.650093,11.650093,0,0,0,0,0,0,0,27.5,0,0,0,0,0,22.972027,1,43.279999,24.379999,27.620001,37.700001,5,1,1,0,0,4,3,1,820.5,86449.023,0,0,2212.6611 -11749,14450,26244,26243,-9,-9,1,1,0,61,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,9,0,5,3.1110671,0,0,0,56,2,2,1,3,2,2019,3,2,24,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.620001,37.700001,43.279999,24.379999,4,1,1,0,0,4,3,1,820.5,86449.023,0,0,2212.6611 -11750,14451,26245,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,3,8.8867531,8.8384485,0,3,0,0,0,-9,0,-974.6734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,48,60,15,1,0,-9,0,14.435185,14.435185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,1,5,1,307,309932.94,0,0,2936.9302 -11751,14452,26246,26247,-9,-9,1,1,1,34,1,1,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,3,0,5,-56.90712,0,0,0,29,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.560001,54.549999,47,57,7,1,1,1,0,8,2,0,564,201646.25,0,0,2241.957 -11751,14452,26247,26246,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,4,7.4684649,7.1682229,0,2,0,-9,3,0,-5,-9.3463249,0,1,1,34,2,4,3,-9,-9,2019,2,1,11,2,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,57.560001,54.549999,5,1,1,0,0,8,2,0,564,201646.25,0,0,2241.957 -11751,14452,26248,-9,26247,26246,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-930.73975,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,2,0,564,201646.25,0,0,2241.957 -11752,14453,26249,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1070.2629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,-9,-9,5,1,1,0,1,13,1,0,294,142773.77,0,0,-407.58881 -11752,14454,26250,-9,-9,-9,2,1,1,69,2,0,0,0,2,-9,4,3,0,1,3,0,6.2120481,6.0242157,3,0,0,0,-9,0,-1080.155,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9969788,10.908209,3,51,48,-9,-9,5,1,1,0,0,13,2,0,351,258326.91,0,0,1464.5856 -11753,14455,26251,-9,-9,-9,1,1,0,42,2,1,2,0,3,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1078.4753,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.237194,3,16.629999,34.650002,-9,-9,2,1,1,1,1,13,1,0,406,-52347.375,0,0,1106.8795 -11753,14456,26252,-9,26251,-9,2,1,1,21,2,1,2,0,3,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-870.75165,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.369999,52.700001,-9,-9,4,1,1,1,0,13,1,0,597,-41574.398,0,0,249.17502 -11753,14457,26253,-9,26251,-9,4,1,0,23,2,1,2,0,3,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1052.7896,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,-9,-9,4,1,1,1,0,13,1,0,637,-31799.906,0,0,302.65344 -11753,14457,26254,-9,26253,-9,5,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-987.14252,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,637,-31799.906,0,0,302.65344 -11753,14457,26255,-9,26253,-9,6,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1086.1516,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,637,-31799.906,0,0,302.65344 -11753,14458,26256,-9,26251,-9,3,1,1,24,2,1,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1008.7255,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.349998,39.529999,-9,-9,2,1,1,1,1,13,1,0,805,-59518.375,0,0,351.26035 -11754,14459,26257,26258,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,8.6925592,8.6251383,0,1,0,-9,31,0,-1,-35.698917,0,0,0,54,1,4,1,2,1,2019,1,2,9,1,20,20,15,1,0,1,0,34.882717,34.882717,0,0,0,0,0,0,0,0,0,0,0,3.4906497,0,0,0,54.369999,54.799999,59.290001,49.68,6,1,1,0,0,4,5,1,1822,1147294.9,0,0,2845.3394 -11754,14459,26258,26257,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,8.6219969,8.8353987,0,1,0,-9,31,0,1,78.078545,0,0,0,53,1,3,1,1,2,2019,1,1,6,0,41,42,15,1,0,1,0,18.156906,18.156906,0,0,0,0,0,0,0,0,0,0,0,4.8313451,0,0,0,59.290001,49.68,54.369999,54.799999,6,1,1,0,0,4,5,1,1822,1147294.9,0,0,2845.3394 -11755,14460,26259,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,0,3,8.9681301,8.4936705,0,3,0,0,0,-9,0,-1103.7729,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,50,53,15,1,0,-9,0,12.556813,12.556813,0,0,0,0,0,0,0,0,0,0,0,3.6138926,0,0,0,42.869999,55.860001,-9,-9,5,1,1,0,0,10,5,0,646,276988.47,0,0,1594.4408 -11756,14461,26260,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,5.7461991,6.291965,3,0,0,0,-9,0,-992.81696,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0665188,5.9899673,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,12,2,1,358,335495.09,0,0,-199.02182 -11757,14462,26261,-9,-9,-9,1,1,1,87,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-965.7345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.0509317,0,0,0,4.9569702,53.162102,0,1,1,0,2.3944438,0,0,0,55,45,-9,-9,6,1,1,0,0,13,1,1,566,-55996.02,0,0,-357.42767 -11758,14463,26262,-9,-9,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.9875898,8.2297544,0,3,0,0,0,-9,0,-976.69501,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,37,15,1,0,-9,1,7.0138454,7.0138454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,3,1,1769,172963.94,0,0,200.39949 -11758,14464,26263,-9,-9,-9,4,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.4159393,7.051218,0,3,0,0,0,-9,0,-1020.2484,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,31,31,15,1,0,-9,1,6.0724769,6.0724769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,4,3,1,474,-90161.453,0,0,1258.0349 -11759,14465,26264,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,1,0,6.1096339,6.0364494,3,0,-9,0,-9,0,-1034.6179,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.2835965,5.5640202,0,0,1,1,0,0,5.8703241,0,0,55.200001,9.2200003,-9,-9,5,1,1,0,0,1,2,0,89,86178.234,0,0,66.375755 -11760,14466,26265,26266,-9,-9,1,1,0,55,1,0,0,0,3,-9,3,3,0,1,3,0,0,0,1,0,-9,10,0,-6,0,0,0,0,61,3,3,3,3,-9,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.548943,1,37.689999,58.700001,50,49,6,1,1,1,0,12,1,0,413.5,595148.13,0,0,2566.8101 -11760,14466,26266,26265,-9,-9,2,1,1,61,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,10,0,6,0,0,0,0,55,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,37.689999,58.700001,5,1,1,1,0,12,1,0,413.5,595148.13,0,0,2566.8101 -11761,14467,26267,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,0,4,8.2779856,8.4507828,0,3,0,0,0,-9,0,-993.68445,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,40,40,15,1,0,-9,0,12.159213,12.159213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,10,4,1,1808,-143548.64,0,0,2200.6113 -11762,14468,26268,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,4,3,0,0,1,0,7.7688441,7.7232118,3,0,0,0,-9,0,-1015.3876,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2451563,7.8854089,0,0,50.040001,47.77,-9,-9,6,1,1,0,0,10,3,1,348,237664.8,0,0,1241.4513 -11763,14469,26269,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1013.6195,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.560001,46,-9,-9,7,1,1,1,0,1,1,0,130,-2748.2837,0,0,1025.2959 -11764,14470,26270,-9,26271,-9,3,1,0,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1058.4807,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,7,1,0,1100.5,54076.805,0,0,-94.758621 -11764,14470,26271,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,1,1,0,0,4,0,0,0,4,0,0,0,-9,0,-1030.7054,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,20,20,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,1,0,1100.5,54076.805,0,0,-94.758621 -11764,14471,26272,-9,26271,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-996.65808,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,8,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,53.790001,-9,-9,4,1,1,0,1,7,1,0,184,0,0,0,0 -11765,14472,26273,26274,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,7.5468554,7.5085974,0,1,0,-9,40,0,2,-65.611565,0,0,0,60,2,3,1,3,2,2019,1,1,6,0,50,54,15,1,0,1,0,4.7353277,4.7353277,0,0,0,0,0,0,0,0,0,0,0,3.2566807,0,0,0,57.330002,53.459999,44.950001,48.18,6,1,1,0,0,1,3,1,1002,391107.44,0,0,1156.6392 -11765,14472,26274,26273,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,0,3,6.9346828,6.8761539,0,1,0,-9,40,0,-2,89.844788,0,0,0,62,2,3,1,3,3,2019,1,2,7,1,40,45,15,1,0,1,0,2.2425492,2.2425492,0,0,0,0,0,0,0,0,0,0,0,.93062598,0,0,0,44.950001,48.18,57.330002,53.459999,5,1,1,0,0,1,3,1,1002,391107.44,0,0,1156.6392 -11766,14473,26275,26276,-9,-9,2,1,0,53,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,3,0,-3,-38.89521,0,0,0,56,2,3,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.150002,42.16,52,54.509998,3,1,1,0,1,1,2,1,842.5,195269.66,0,0,1935.5961 -11766,14473,26276,26275,-9,-9,1,1,1,56,1,0,1,0,2,-9,1,1,0,0,3,0,7.6313906,7.0398164,2,0,-9,3,0,3,-56.697617,0,0,0,53,2,2,3,3,3,2019,2,2,9,0,37,37,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2970514,7.3493872,0,0,52,54.509998,38.150002,42.16,5,1,1,0,0,1,2,1,842.5,195269.66,0,0,1935.5961 -11767,14474,26277,26280,-9,-9,1,1,0,43,1,0,2,0,3,-9,2,1,0,0,3,7.3578591,7.0765133,0,2,0,-9,14,0,-15,-84.068855,0,0,1,58,2,3,1,2,3,2019,1,2,10,0,22,20,15,1,0,1,0,7.8295755,7.8295755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.599998,50.450001,52.400002,52.91,6,1,1,0,0,10,4,1,494.5,2038841.5,0,0,3662.7671 -11767,14474,26278,-9,26277,26280,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.80682,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,494.5,2038841.5,0,0,3662.7671 -11767,14474,26279,-9,26277,26280,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.64795,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,494.5,2038841.5,0,0,3662.7671 -11767,14474,26280,26277,-9,-9,2,1,1,58,1,0,2,0,2,-9,2,1,0,0,3,8.4888496,8.9680939,6.4590511,2,0,-9,14,0,15,53.278259,0,0,0,43,3,3,1,1,1,2019,1,1,12,0,53,50,15,1,0,1,0,10.266477,10.266477,0,0,0,0,0,0,0,0,1,1,0,7.125875,0,0,0,52.400002,52.91,42.599998,50.450001,4,1,1,0,0,10,4,1,494.5,2038841.5,0,0,3662.7671 -11768,14475,26281,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,2,1,0,0,4,8.6167145,8.6883802,6.9815035,3,0,0,0,-9,0,-1011.1552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,41,37,15,1,0,-9,0,9.3073034,9.3073034,0,0,0,0,0,0,0,0,1,1,0,7.7513461,7.3332691,0,0,45.009998,57.459999,-9,-9,6,1,1,0,0,2,5,1,614,1588874.3,0,0,1938.8903 -11769,14476,26282,26283,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,8.1373425,8.2632236,1,0,-9,50,0,3,-14.760215,0,0,0,67,3,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,124.94555,134.04935,0,0,0,1127.9396,0,1,1,0,4.1513596,7.8123069,0,0,46.669998,32.880001,54.200001,57.490002,5,1,1,0,0,8,4,1,328.5,1294658,0,0,3269.1946 -11769,14476,26283,26282,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,7.1422315,6.9984622,1,0,-9,50,0,-3,71.032959,0,0,0,70,2,1,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3466139,7.430666,.32442039,1,54.200001,57.490002,46.669998,32.880001,6,1,1,0,0,8,4,1,328.5,1294658,0,0,3269.1946 -11770,14477,26284,26285,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,7.0407119,6.9833746,1,0,-9,51,0,-2,34.398182,0,0,0,72,3,4,3,3,-9,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.2314701,7.0777354,12.022816,3,45.720001,55.84,57.16,56.150002,6,1,1,0,0,10,3,1,296,1128397.1,0,0,3777.4663 -11770,14477,26285,26284,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,7.6887069,7.8077869,1,0,-9,51,0,2,-48.673931,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.5813303,7.4861302,12.132545,3,57.16,56.150002,45.720001,55.84,2,1,1,0,0,10,3,1,296,1128397.1,0,0,3777.4663 -11771,14478,26286,26287,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,5,0,8.2757673,8.6265783,1,0,-9,44,0,1,16.416578,0,0,0,72,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.8467851,8.4892788,5.222724,3,54.689999,57.470001,57,45.43,6,1,1,0,0,10,4,1,735,1176119.5,0,0,4576.0713 -11771,14478,26287,26286,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.0941148,5.980402,1,0,-9,44,0,-1,9.1277514,0,0,0,73,1,5,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9790072,6.0044608,0,0,57,45.43,54.689999,57.470001,6,1,1,0,0,10,4,1,735,1176119.5,0,0,4576.0713 -11772,14479,26288,26289,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,6.4668021,6.4993305,1,0,-9,52,0,2,-131.29848,0,0,0,69,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9849343,6.4962749,0,3,49.41,58.279999,50,47,5,1,1,0,0,7,2,1,750,542080.81,0,0,1600.5625 -11772,14479,26289,26288,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.9043412,6.6412935,1,0,-9,52,0,-2,22.268829,-9,0,0,71,3,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1155169,7.2303724,0,0,50,47,49.41,58.279999,5,1,1,0,0,7,2,1,750,542080.81,0,0,1600.5625 -11773,14480,26290,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1036.7932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.8101673,0,56.066936,0,1,1,0,2.0714273,0,0,0,53,44,-9,-9,6,1,1,0,0,1,1,1,675,-21612.373,0,0,781.57245 -11774,14481,26291,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,2,1,0,0,3,8.7822504,9.1800756,7.5783153,3,0,0,0,-9,0,-978.07996,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,38,35,15,1,0,-9,0,14.157867,14.157867,0,0,0,0,0,0,0,0,1,1,0,5.3991251,7.3751302,0,0,60.599998,43.75,-9,-9,4,1,1,0,0,8,5,1,367,2043896.4,0,0,3498.3347 -11775,14482,26292,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,0,4,9.3734732,9.8177633,0,3,0,0,0,-9,0,-1060.4563,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,57,47,15,1,0,-9,0,29.302187,29.302187,0,0,0,0,0,0,0,0,0,0,0,3.3806674,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,5,0,1650,481275.09,0,0,4987.2168 -11776,14483,26293,26294,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.0799084,7.94946,0,1,0,-9,2,0,-10,87.54908,0,0,0,64,2,5,3,2,-9,2019,2,3,8,0,30,38,15,1,0,4,0,13.506099,13.506099,0,0,0,0,0,0,0,0,0,0,0,6.955369,0,0,0,53.189999,45.709999,57.060001,57.759998,6,1,1,0,0,4,4,1,1219,498340.25,0,0,3857.2275 -11776,14483,26294,26293,-9,-9,3,1,1,64,1,0,0,0,2,-9,4,3,0,0,5,0,7.6840219,7.870667,1,0,-9,2,0,10,-6.0449214,-9,0,0,54,2,3,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2269659,7.6643939,0,0,57.060001,57.759998,53.189999,45.709999,7,1,1,0,0,4,4,1,1219,498340.25,0,0,3857.2275 -11777,14484,26295,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,6.7361078,6.8601356,3,0,-9,0,1,0,-936.39838,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,9,0,0,15,4,1,-9,0,0,0,1,0,0,46.444321,3.4559736,0,0,0,1,1,0,0,6.6591272,0,0,25.93,53.209999,-9,-9,1,1,1,0,0,13,2,1,855,802854.69,0,0,646.15271 -11778,14485,26296,26297,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.1790695,8.2583752,5.8486753,1,0,-9,42,0,-4,123.56865,0,0,0,63,2,1,1,-9,-9,2019,1,2,8,0,42,42,15,1,0,1,0,11.585756,11.585756,0,0,0,0,0,0,0,2,0,0,0,0,6.0929294,0,2,54.959999,53.169998,53.799999,38.02,6,1,1,0,0,10,5,1,177,1397427.8,0,0,2612.6284 -11778,14485,26297,26296,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,1,8.4738407,8.2131987,3.4991732,1,0,-9,42,0,4,-81.705841,0,0,0,59,2,3,1,3,-9,2019,1,1,11,1,42,42,15,1,0,1,0,11.506928,11.506928,0,0,0,0,0,0,0,2,0,0,0,0,4.2411699,0,3,53.799999,38.02,54.959999,53.169998,5,1,1,0,0,10,5,1,177,1397427.8,0,0,2612.6284 -11779,14486,26298,26299,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,6.8448586,6.5889473,1,0,-9,49,0,0,113.49357,0,0,0,71,2,1,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1569653,6.7474976,130.07242,1,52.380001,55.599998,27.389999,21.15,4,1,1,0,0,2,2,0,962.5,339907.81,0,0,1456.7075 -11779,14486,26299,26298,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,49,0,0,-33.135639,0,0,0,71,3,4,3,3,3,2019,4,2,25,11,0,0,15,4,1,4,0,0,0,1,0,125.0187,0,0,0,0,0,1,1,0,0,0,0,0,27.389999,21.15,52.380001,55.599998,3,1,1,0,0,2,2,0,962.5,339907.81,0,0,1456.7075 -11780,14487,26300,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,5,9.3182306,9.2463551,5.234941,3,0,0,0,-9,0,-1067.6221,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,42,42,15,1,0,-9,0,27.195778,27.195778,0,0,0,0,0,0,0,0,0,0,0,6.1130242,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,10,5,1,504,1247641.1,0,0,4968.9624 -11781,14488,26301,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,1,3,0,9.1483183,9.2084961,3,0,0,0,-9,0,-1134.4364,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.5573592,8.7385969,5.8922114,3,46.889999,28.540001,-9,-9,6,1,1,0,0,7,5,1,112,1356269.8,0,0,5615.9385 -11782,14489,26302,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,4,0,6.7751074,6.2116365,3,0,0,0,-9,0,-920.07941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8195534,6.0885539,0,0,57.16,56.150002,-9,-9,1,1,1,0,0,9,2,1,512,314323.53,0,0,766.17291 -11783,14490,26303,26304,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,1,3,0,5.972652,6.1056542,1,0,-9,30,0,16,-64.365456,0,0,0,54,3,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2061024,6.2911463,0,0,63.98,38.080002,55.299999,55.599998,5,1,1,0,0,2,4,1,254.5,606467.25,0,0,2047.571 -11783,14490,26304,26303,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,4,8.1375217,8.0133886,0,1,0,-9,30,0,-16,31.325275,0,0,0,70,2,3,3,2,2,2019,2,1,9,0,44,44,15,1,0,4,0,10.126804,10.126804,0,0,0,0,0,0,0,2,1,1,0,0,0,9.9888401,1,55.299999,55.599998,63.98,38.080002,6,1,1,0,0,2,4,1,254.5,606467.25,0,0,2047.571 -11784,14491,26305,26306,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.8136835,6.3326812,1,0,-9,41,0,3,84.964508,0,0,0,74,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,6.7105799,.87116522,1,49.98,33.52,40.380001,31.719999,7,4,2,0,0,7,2,1,537,798040.38,0,0,1185.5793 -11784,14491,26306,26305,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,1,2,0,6.1382985,6.1203561,1,0,-9,40,0,-3,-33.731663,0,0,0,77,2,3,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,30.484879,0,0,0,0,0,1,1,0,5.7158384,6.24159,0,0,40.380001,31.719999,49.98,33.52,5,1,1,0,0,7,2,1,537,798040.38,0,0,1185.5793 -11785,14492,26307,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1003.6546,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.790001,35.380001,-9,-9,5,2,3,0,1,4,1,0,365,-52753.098,0,0,332.82019 -11786,14493,26308,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,1,3,0,1.5394336,1.8844372,3,0,0,0,-9,0,-1015.5462,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,27.302753,0,0,0,0,1,1,0,5.6800799,1.7176635,0,0,63.029999,22.209999,-9,-9,6,1,1,0,0,9,1,1,1661,371865.13,0,0,1931.3745 -11787,14494,26309,-9,-9,-9,1,1,1,47,3,0,5,0,1,-9,2,1,0,0,5,7.0371904,7.1130047,0,4,0,0,0,-9,0,-1002.7141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,17,16,15,1,0,-9,0,6.1486335,6.1486335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,3,4,0,1,5,2,0,213,541051.56,0,0,2359.0115 -11787,14495,26310,-9,-9,26309,2,1,0,20,2,0,5,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1057.2983,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,3,4,0,0,5,1,0,126,113208.13,0,0,0 -11787,14496,26311,-9,-9,26309,3,1,0,18,2,0,5,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-977.8493,-9,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,1,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,3,4,0,0,5,2,0,215,117836.45,0,0,0 -11788,14497,26312,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,7.9638829,8.090744,0,3,0,-9,0,0,0,-950.94696,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,48,48,15,1,0,-9,1,5.7351909,5.7351909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,-9,-9,6,1,1,0,1,4,4,1,301,6854.043,0,0,369.45764 -11789,14498,26313,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,7.183075,6.9707465,0,3,0,0,0,-9,0,-1021.3885,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,24,0,15,1,0,-9,0,6.3553982,6.3553982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,4,1,1,0,1,1,3,1,1830,0,0,0,623.28796 -11790,14499,26314,-9,26316,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1075.7834,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,4,0,1280.6666,-4530.791,0,0,1713.579 -11790,14499,26315,-9,26316,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-946.06903,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,1280.6666,-4530.791,0,0,1713.579 -11790,14499,26316,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,0,4,8.5321541,8.8635845,0,4,0,0,0,-9,0,-1100.0283,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,50,15,1,0,-9,0,14.555785,14.555785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.34,60.950001,-9,-9,4,1,1,0,0,4,4,0,1280.6666,-4530.791,0,0,1713.579 -11791,14500,26317,26318,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.6111159,7.6108284,0,1,0,-9,28,0,-1,-103.38165,0,0,0,52,2,4,1,3,3,2019,1,1,8,0,15,20,15,1,0,1,0,10.49734,10.49734,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8177619,3,57.330002,53.459999,53,54,6,1,1,0,0,5,4,1,839,680001.38,0,0,3144.5049 -11791,14500,26318,26317,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.1000738,8.06429,0,1,0,-9,7,0,1,46.259289,0,0,0,51,2,3,1,-9,-9,2019,1,2,9,1,70,60,15,1,0,1,0,5.3042192,5.3042192,0,0,0,0,0,0,0,0,1,1,0,3.9510353,0,0,0,53,54,57.330002,53.459999,6,1,1,0,0,5,4,1,839,680001.38,0,0,3144.5049 -11791,14501,26319,-9,26317,26318,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,6.3146572,5.9465122,0,3,0,0,0,-9,0,-1011.9944,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,1.2276366,1.2276366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,5,2,1,1137,85830.047,0,0,879.56989 -11792,14502,26320,26321,-9,-9,2,1,0,48,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,7,0,0,26.455833,0,0,0,57,2,4,1,-9,-9,2019,3,1,35,12,0,39,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.62703854,0,0,0,26.459999,42.279999,42.330002,46.700001,1,1,1,1,1,12,3,1,567,474854.69,0,0,1821.7844 -11792,14502,26321,26320,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,0,4,7.9668865,7.7362175,0,1,0,-9,7,0,9,63.261261,0,0,0,48,2,2,3,3,2,2019,2,2,9,0,14,14,15,1,0,3,0,21.155081,21.155081,0,0,0,0,0,0,0,2,1,1,0,3.5649495,0,0,3,42.330002,46.700001,26.459999,42.279999,7,1,1,0,0,12,3,1,567,474854.69,0,0,1821.7844 -11793,14503,26322,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,0,4,0,8.1500053,8.1886797,3,0,0,0,-9,0,-954.89764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1112452,8.2892046,0,0,61.509998,49.959999,-9,-9,6,1,1,0,0,8,4,1,291,1104821.6,0,0,1477.818 -11794,14504,26323,26325,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.4066534,8.3788395,0,2,0,-9,7,0,0,10.508681,0,0,0,47,2,3,3,2,2,2019,2,1,8,0,44,44,15,1,0,4,0,14.337606,14.337606,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,52.990002,51.279999,2,1,1,0,0,12,4,1,1173,335897.28,0,0,3451.7639 -11794,14504,26324,-9,26325,26323,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.3865,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.439999,59.619999,-9,-9,6,1,1,0,0,12,4,1,1173,335897.28,0,0,3451.7639 -11794,14504,26325,26323,-9,-9,1,1,0,47,1,0,2,0,2,-9,4,3,0,0,3,8.3911228,8.3425255,0,2,0,-9,7,0,0,-83.161598,0,0,0,47,2,3,1,3,3,2019,3,2,8,0,32,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.51745629,3,52.990002,51.279999,57.330002,53.459999,2,1,1,0,0,12,4,1,1173,335897.28,0,0,3451.7639 -11795,14505,26326,26327,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.6433773,8.5602331,0,1,0,-9,14,0,-7,-39.077129,0,0,0,61,1,3,1,2,2,2019,1,2,11,2,40,52,15,1,0,1,0,16.439825,16.439825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.099998,59.990002,44.130001,59.369999,7,1,1,0,0,6,5,1,473.5,694733.13,0,0,3578.6753 -11795,14505,26327,26326,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,0,3,7.8105803,7.8440504,0,1,0,-9,14,0,7,61.810204,0,0,0,54,1,4,1,1,3,2019,1,1,8,0,28,63,15,1,0,1,0,12.620671,12.620671,0,0,0,0,0,0,0,0,0,0,0,1.32043,0,0,0,44.130001,59.369999,46.099998,59.990002,6,1,1,0,0,6,5,1,473.5,694733.13,0,0,3578.6753 -11796,14506,26328,-9,26330,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.2337,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,511.60001,50095.867,0,0,1750.0298 -11796,14506,26329,-9,26330,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.74365,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,511.60001,50095.867,0,0,1750.0298 -11796,14506,26330,26332,-9,-9,1,1,0,31,1,0,3,0,2,-9,7,2,0,0,4,0,0,0,2,0,-9,2,0,0,29.210983,1,0,1,40,3,5,1,2,3,2019,3,5,21,8,0,16,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.809999,65.690002,60.27,46.91,6,1,1,0,0,2,2,0,511.60001,50095.867,0,0,1750.0298 -11796,14506,26331,-9,26330,-9,2,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.5993,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,511.60001,50095.867,0,0,1750.0298 -11796,14506,26332,26330,-9,-9,5,1,1,40,1,0,3,0,3,-9,1,1,0,0,5,7.3808956,7.7771235,0,2,0,-9,2,0,9,165.53377,0,0,0,31,2,4,2,-9,-9,2019,2,1,12,0,16,0,15,1,0,2,0,10.832057,10.832057,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,60.27,46.91,27.809999,65.690002,5,1,1,0,0,2,2,0,511.60001,50095.867,0,0,1750.0298 -11797,14507,26333,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,2,7.7633486,7.9062705,0,3,0,0,0,-9,0,-1009.5441,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,1,0,40,45,15,1,0,-9,0,7.0471053,7.0471053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.689999,-9,-9,5,1,1,0,0,9,3,0,439,21736.934,0,0,779.62036 -11797,14508,26334,-9,-9,26333,2,1,1,23,2,0,0,0,2,-9,2,1,0,0,2,8.0290718,7.8805475,0,3,0,0,0,-9,0,-931.06573,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,4,39,46,15,1,1,-9,1,6.3759713,6.3759713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.759998,49.099998,-9,-9,5,1,1,0,0,9,3,0,300,-88356.836,0,0,-806.46521 -11798,14509,26335,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,1,1,0,0,4,8.5378199,8.5198164,0,3,0,0,0,-9,0,-1110.8162,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,10,15,15,1,0,-9,0,46.915176,46.915176,0,0,0,0,0,0,0,0,0,0,0,4.3521385,0,0,0,50.34,56.400002,-9,-9,6,1,1,0,0,4,4,1,134,82410.109,0,0,2931.386 -11799,14510,26336,26337,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.5079975,6.8362288,1,0,-9,6,0,-1,163.7628,0,0,0,69,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1402702,6.4629202,0,0,57.16,56.150002,52.150002,48.98,6,1,1,0,0,2,2,1,967.5,188155.97,0,0,1722.0057 -11799,14510,26337,26336,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,5.1014342,5.0742936,1,0,-9,6,0,1,-91.916183,0,0,0,68,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7688537,5.3344159,0,0,52.150002,48.98,57.16,56.150002,6,1,1,0,0,2,2,1,967.5,188155.97,0,0,1722.0057 -11800,14511,26338,26339,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.2511435,7.898118,0,1,0,-9,31,0,4,84.631798,0,0,0,48,1,3,1,2,3,2019,1,1,9,0,28,30,15,1,0,1,0,19.447687,19.447687,0,0,0,0,0,0,0,7,0,0,0,0,0,6.121006,3,63.240002,42.389999,29.02,43.259998,6,1,1,0,0,1,5,1,900,304903.66,0,0,2827.4438 -11800,14511,26339,26338,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,8.4262276,8.3619566,0,1,0,-9,30,0,-4,39.716969,0,0,0,52,2,4,1,2,1,2019,1,2,21,8,42,37,15,1,1,1,0,10.085801,10.085801,0,0,0,0,0,0,0,27.5,0,0,0,0,0,30.902061,3,29.02,43.259998,63.240002,42.389999,4,1,1,0,0,1,5,1,900,304903.66,0,0,2827.4438 -11801,14512,26340,26341,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,1,3,6.2830033,7.2503948,6.6373544,1,0,-9,39,0,-5,-47.701519,0,0,0,65,2,2,3,3,2,2019,2,2,12,0,6,11,15,1,0,4,0,12.84592,12.84592,0,0,0,0,0,0,0,42,1,1,0,5.9772949,6.6435933,35.866917,1,44.009998,42.889999,50.16,30.120001,3,1,1,0,0,9,3,0,1904.5,947223,0,0,2251.7588 -11801,14512,26341,26340,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,1,2,0,6.2954383,6.3263283,1,0,-9,39,0,5,-7.842051,0,0,0,60,1,3,1,3,2,2019,3,1,12,2,0,0,15,4,0,1,0,0,0,1,17.33218,2.1067612,0,0,0,191.76794,0,1,1,0,0,6.3190775,0,0,50.16,30.120001,44.009998,42.889999,4,1,1,0,0,9,3,0,1904.5,947223,0,0,2251.7588 -11801,14513,26342,-9,-9,-9,3,1,1,49,2,0,0,0,3,-9,2,1,0,0,2,8.2592402,8.1681871,0,3,0,0,0,-9,0,-1021.097,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,43,40,15,1,1,-9,0,11.141222,11.141222,0,0,0,0,0,0,0,14.5,1,1,0,4.7058187,0,15.832844,3,31.02,49.869999,-9,-9,4,1,1,0,0,9,4,0,947,247812.16,0,0,2643.325 -11802,14514,26343,26344,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,0,2,0,8.5311546,8.6860304,1,0,-9,37,0,7,32.810532,0,0,0,56,1,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.758162,8.6357594,1.7598343,1,54.610001,51.040001,57.16,56.150002,6,1,1,0,0,2,5,1,1519,899652.38,0,0,5513.4229 -11802,14514,26344,26343,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.6477003,8.8302355,6.4057717,1,0,-9,38,0,-7,-185.12689,0,0,0,63,1,2,3,2,1,2019,2,2,9,0,9,0,15,1,0,4,0,84.233994,84.233994,0,0,0,0,0,0,0,0,0,0,0,4.9601755,6.7433887,0,0,57.16,56.150002,54.610001,51.040001,6,1,1,0,0,2,5,1,1519,899652.38,0,0,5513.4229 -11803,14515,26345,26346,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,1,2,0,6.3586416,6.4531188,1,0,-9,8,0,9,-24.642309,0,0,0,61,2,1,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,29.123091,0,0,7,1,0,1,0,6.8227758,2.5933897,1,41.59,36.580002,33.299999,22.870001,6,1,1,0,0,11,2,0,1011.5,260282.41,0,0,2360.5322 -11803,14515,26346,26345,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,8,0,0,16.701433,0,0,0,70,3,2,3,3,3,2019,4,2,23,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.299999,22.870001,41.59,36.580002,5,1,1,0,0,11,2,0,1011.5,260282.41,0,0,2360.5322 -11803,14516,26347,-9,26346,26345,3,1,1,34,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1011.723,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,12.90182,3,9.3999996,65.199997,-9,-9,2,1,1,1,1,11,1,0,453,0,0,0,-67.470375 -11803,14517,26348,-9,26346,26345,4,1,1,29,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1077.7019,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,42.348499,3,35.790001,48.98,-9,-9,4,1,1,1,0,11,1,0,768,-96127.742,0,0,302.67905 -11804,14518,26349,-9,-9,-9,1,1,0,19,3,0,0,0,2,1,6,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1109.5441,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,2,1,0,448,0,0,0,0 -11805,14519,26350,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1023.4217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,13,1,0,196,-87.204231,0,0,3693.9512 -11806,14520,26351,26352,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,5,7.5415978,7.3814712,0,2,0,-9,8,0,-4,.92486662,0,0,0,49,2,5,1,-9,-9,2019,1,1,14,3,21,35,15,1,0,1,0,10.759396,10.759396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.91,54.169998,30.219999,61.23,5,1,1,0,0,4,3,0,454,145792.02,0,0,2518.8506 -11806,14520,26352,26351,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,5,8.112812,8.0377617,0,2,0,-9,8,0,4,53.118828,0,0,0,45,2,5,1,2,2,2019,1,2,10,1,40,80,15,1,0,1,0,8.1259375,8.1259375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.219999,61.23,26.91,54.169998,4,1,1,0,0,4,3,0,454,145792.02,0,0,2518.8506 -11806,14521,26353,-9,26351,26352,3,1,0,23,2,0,1,0,2,-9,2,1,0,0,4,7.2339096,7.3085008,0,3,0,0,0,-9,0,-1017.9633,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,20,31,15,1,0,-9,1,7.7746396,7.7746396,0,0,0,0,0,0,0,0,1,1,0,2.1332669,0,0,0,46,58,-9,-9,5,1,1,0,0,4,3,0,266,180433.44,0,0,617.74384 -11806,14522,26354,-9,26351,26352,4,1,0,25,2,0,1,0,2,-9,2,1,0,0,5,7.51407,7.5757623,0,3,0,0,0,-9,0,-953.08093,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,37,15,1,0,-9,1,9.3605099,9.3605099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.540001,62.09,-9,-9,4,1,1,0,0,4,3,0,466,-81455.195,0,0,1151.3512 -11806,14523,26355,-9,26351,26352,5,1,1,21,2,0,1,0,2,1,2,1,0,0,4,7.8541427,7.9569149,0,3,0,0,0,-9,0,-947.30634,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,20,0,15,1,0,-9,1,14.01375,14.01375,0,0,0,0,0,0,0,0,1,1,0,.46328706,0,0,0,52.48,54.330002,-9,-9,5,1,1,0,0,4,3,0,217,-70733.336,0,0,1768.9274 -11806,14524,26356,-9,26351,26352,6,1,1,18,2,0,1,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-961.90613,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5144999,0,0,0,29.379999,48.099998,-9,-9,3,1,1,0,0,4,3,0,2344,127018.16,0,0,-98.245117 -11807,14525,26357,26358,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,9,-7.7190013,0,0,0,70,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6866858,0,0,0,55.529999,51.549999,48.540001,54.5,6,1,1,0,0,4,2,1,3699.5,691198,0,0,2200.9521 -11807,14525,26358,26357,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.0501771,7.342268,1,0,-9,57,0,0,-81.444283,0,0,0,79,3,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6901464,0,0,48.540001,54.5,55.529999,51.549999,6,1,1,0,0,4,2,1,3699.5,691198,0,0,2200.9521 -11807,14526,26359,-9,26358,26357,3,1,1,51,3,0,0,0,3,-9,2,1,0,0,3,8.1683617,8.2940722,0,3,0,0,0,-9,0,-985.01233,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,40,15,1,0,-9,1,11.367764,11.367764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.970001,-9,-9,5,1,1,0,0,4,4,1,10011,693234.31,0,0,1202.3807 -11808,14527,26360,26361,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,6.7701502,6.5595193,1,0,-9,9,0,4,26.727406,0,0,0,72,3,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0908926,6.5752931,0,0,63.799999,46.310001,48.740002,51.669998,6,1,1,0,0,12,2,1,585.5,1788619.8,0,0,2604.4756 -11808,14527,26361,26360,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,4,0,6.207159,5.9349737,1,0,-9,9,0,-4,77.366333,0,0,0,76,3,4,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1405373,0,0,48.740002,51.669998,63.799999,46.310001,5,1,1,0,0,12,2,1,585.5,1788619.8,0,0,2604.4756 -11809,14528,26362,-9,26364,26363,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1032.7043,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,4,0,274,217240.16,0,0,2957.5286 -11809,14528,26363,26364,-9,-9,2,1,1,42,1,1,2,0,2,-9,3,3,0,0,5,0,7.9291468,7.8186173,2,0,-9,2,0,2,122.3046,0,0,0,40,1,3,1,1,1,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9224629,0,0,0,57.630001,56.139999,44.900002,52.439999,6,3,4,1,0,8,4,0,274,217240.16,0,0,2957.5286 -11809,14528,26364,26363,-9,-9,1,1,0,40,1,1,2,0,1,-9,5,1,0,0,3,8.5233412,8.3822479,0,2,0,-9,2,0,-2,37.118694,0,0,1,42,2,5,3,2,2,2019,2,2,11,3,38,38,15,1,0,3,0,13.989501,13.989501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.900002,52.439999,57.630001,56.139999,6,1,1,0,0,8,4,0,274,217240.16,0,0,2957.5286 -11809,14528,26365,-9,26364,26363,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1123.6031,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,4,0,274,217240.16,0,0,2957.5286 -11810,14529,26366,26367,-9,-9,2,1,0,64,1,0,1,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,0,-68.860428,0,0,0,64,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.0286293,0,0,0,57.060001,57.759998,45.91,59.889999,7,1,1,0,0,9,3,1,838.5,306557.13,0,0,1947.1765 -11810,14529,26367,26366,-9,-9,1,1,1,64,1,0,1,0,2,-9,2,1,0,0,4,8.2987595,8.0897398,0,2,0,-9,8,0,0,-60.970459,0,0,0,64,2,5,3,3,3,2019,2,2,10,0,40,40,15,1,0,3,0,10.05903,10.05903,0,0,0,0,0,0,0,0,1,0,1,3.905931,0,0,0,45.91,59.889999,57.060001,57.759998,7,1,1,0,0,9,3,1,838.5,306557.13,0,0,1947.1765 -11810,14530,26368,-9,26369,-9,4,1,0,16,2,0,1,0,3,-9,97,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1000.4347,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.57,57.779999,-9,-9,6,1,1,0,0,9,3,1,326.5,-16828.82,0,0,2287.2742 -11810,14530,26369,-9,26366,26367,3,1,0,39,2,0,1,0,2,-9,1,1,0,0,4,7.7343364,7.8622293,4.1041265,3,0,0,0,-9,0,-978.66852,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,38,15,1,0,-9,1,6.1906486,6.1906486,0,0,0,0,0,0,0,0,1,0,1,3.5057442,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,1,9,3,1,326.5,-16828.82,0,0,2287.2742 -11811,14531,26370,26371,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,3,8.0301342,8.1365833,0,1,0,1,1,-9,-1,52.882656,0,0,0,51,2,3,1,2,2,2019,1,3,7,0,37,37,15,1,0,1,0,8.2442045,8.2442045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.150002,54.82,54.959999,53.169998,7,1,1,0,0,12,5,1,1226,1540511.3,0,0,4351.6104 -11811,14531,26371,26370,-9,-9,3,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,9.1342478,8.768136,0,1,0,-9,1,-9,1,-124.40768,-9,0,0,50,1,3,1,-9,-9,2019,1,1,7,0,35,0,15,1,0,1,0,23.351612,23.351612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,41.150002,54.82,6,1,1,0,0,12,5,1,1226,1540511.3,0,0,4351.6104 -11811,14532,26372,-9,26371,26370,2,1,1,20,2,0,0,0,2,1,2,1,0,0,4,7.1833558,6.8772454,0,3,0,0,0,-9,0,-993.94269,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,15,0,15,1,0,-9,1,7.0648727,7.0648727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,2,1,1,0,0,12,2,1,1014,-40453.215,0,0,1041.1219 -11812,14533,26373,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,5,8.5246334,8.6707773,0,3,0,-9,0,-9,0,-968.19403,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,35,0,15,1,0,-9,0,17.8421,17.8421,0,0,0,0,0,0,0,0,0,0,0,7.1323733,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,9,5,1,711,145453.25,0,0,2454.0027 -11813,14534,26374,26375,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.1059637,7.7053862,0,1,0,-9,4,0,-5,32.032616,0,1,1,34,2,5,1,-9,-9,2019,1,1,10,0,36,38,15,1,0,1,0,11.741752,11.741752,0,0,0,0,0,0,0,0,0,0,0,.8576805,0,0,0,40.02,54.540001,51.669998,60.18,6,1,1,0,0,5,5,1,779.5,43529.305,0,0,3577.1494 -11813,14534,26375,26374,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,0,5,8.7412605,8.8096838,0,1,0,-9,4,0,5,-79.150002,0,0,0,29,1,4,1,2,1,2019,1,2,8,0,40,39,15,1,0,1,0,19.017578,19.017578,0,0,0,0,0,0,0,0,0,0,0,2.6846554,0,0,0,51.669998,60.18,40.02,54.540001,6,1,1,0,0,5,5,1,779.5,43529.305,0,0,3577.1494 -11814,14535,26376,26377,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,1,4,0,7.0042105,6.8235507,1,0,-9,10,0,0,-156.20909,0,0,0,74,2,3,1,3,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2863679,6.8207016,0,0,54.200001,57.490002,57.330002,53.459999,2,1,1,0,0,6,2,1,335.5,38248.375,0,0,2344.835 -11814,14535,26377,26376,-9,-9,1,1,0,74,1,0,0,0,2,-9,2,1,0,0,3,6.5785537,6.9442816,0,1,0,-9,10,0,0,-91.906029,0,0,0,74,2,4,3,3,3,2019,2,2,7,0,14,14,15,1,0,4,0,6.4990044,6.4990044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,6,2,1,335.5,38248.375,0,0,2344.835 -11815,14536,26378,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,2,8.4877605,8.1741829,0,3,0,0,0,-9,0,-1027.146,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,45,39,15,1,0,-9,0,14.099527,14.099527,0,0,0,0,0,0,0,0,0,0,0,6.4094849,0,0,0,40.52,39.950001,-9,-9,6,1,1,0,0,10,5,1,757,238214.7,0,0,1837.777 -11816,14537,26379,26380,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,0,3,0,7.4061193,7.6041594,1,0,-9,52,0,-2,118.09307,0,0,0,75,1,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8205914,7.7194824,0,0,47.66,52.330002,55.860001,43.169998,5,1,1,0,0,4,4,1,1051,1108045.6,0,0,2577.8792 -11816,14537,26380,26379,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,6.4840894,8.1497068,7.3162279,1,0,-9,52,0,2,-30.395969,0,0,0,73,1,3,3,3,2,2019,4,1,10,1,8,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0424848,7.2881684,0,0,55.860001,43.169998,47.66,52.330002,6,1,1,0,0,4,4,1,1051,1108045.6,0,0,2577.8792 -11817,14538,26381,26382,-9,-9,1,1,0,43,1,0,0,0,3,-9,2,1,0,0,4,7.3808656,7.4724526,0,1,0,-9,20,0,3,-74.11364,0,0,1,40,2,4,1,-9,2,2019,1,2,5,0,25,30,15,1,0,1,0,10.00596,10.00596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.349998,57.799999,59.529999,56.439999,6,1,1,0,0,12,4,0,269.5,434873.59,0,0,2088.1719 -11817,14538,26382,26381,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.2019358,8.1794014,0,1,0,-9,20,0,-3,-21.921003,0,0,0,43,3,4,1,3,2,2019,1,1,8,1,50,60,15,1,0,1,0,8.4897594,8.4897594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,43.349998,57.799999,4,1,1,0,0,12,4,0,269.5,434873.59,0,0,2088.1719 -11817,14539,26383,-9,26381,26382,3,1,1,20,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-964.81195,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,1,0,12,1,0,481,0,0,0,0 -11818,14540,26384,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,1,0,4.2854915,3.9675589,3,0,0,0,-9,0,-881.54462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3527198,0,0,42.450001,12.16,-9,-9,3,1,1,0,0,1,2,0,322,-403652.41,0,0,604.68176 -11819,14541,26385,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.0282984,8.1691446,0,3,0,0,0,-9,0,-1046.7271,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,38,15,1,0,-9,0,10.55009,10.55009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.23,45.900002,-9,-9,6,2,3,0,0,8,4,0,1814,-9181.2207,0,0,138.88211 -11820,14542,26386,-9,26389,26388,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.36694,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,686.75,488384.09,0,0,3715.6304 -11820,14542,26387,-9,26389,26388,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.40674,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,686.75,488384.09,0,0,3715.6304 -11820,14542,26388,26389,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,0,2,8.9357319,8.8691597,0,2,0,-9,19,0,2,-10.694879,0,0,0,34,1,2,1,2,2,2019,1,1,7,0,58,45,15,1,0,1,0,12.978711,12.978711,0,0,0,0,0,0,0,0,1,1,0,2.9409642,0,0,0,54.209999,47.099998,45.419998,40.27,6,1,1,0,0,4,4,1,686.75,488384.09,0,0,3715.6304 -11820,14542,26389,26388,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,2,7.401083,7.5768309,0,2,0,-9,19,0,-2,-12.992634,0,0,1,36,1,2,1,2,3,2019,1,2,12,0,19,19,15,1,0,1,0,9.7685833,9.7685833,0,0,0,0,0,0,0,0,1,1,0,3.2615016,0,0,0,45.419998,40.27,54.209999,47.099998,6,1,1,0,0,4,4,1,686.75,488384.09,0,0,3715.6304 -11821,14543,26390,-9,26392,26391,3,1,1,16,2,0,4,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1095.1359,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,4,2,0,558.75,1145996.9,0,0,2998.0107 -11821,14543,26391,26392,-9,-9,2,1,1,46,1,0,4,0,2,-9,2,1,0,0,4,7.8518157,7.5072808,0,2,0,-9,20,0,-2,-43.079636,0,0,0,48,2,3,3,-9,-9,2019,2,1,8,0,35,30,15,1,0,3,0,9.0867748,9.0867748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49.040001,55.860001,6,1,1,0,0,4,2,0,558.75,1145996.9,0,0,2998.0107 -11821,14543,26392,26391,-9,-9,1,1,0,48,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,20,0,2,-91.327644,0,0,0,46,2,4,1,-9,-9,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,57.16,56.150002,6,1,1,0,0,4,2,0,558.75,1145996.9,0,0,2998.0107 -11821,14543,26393,-9,26392,26391,6,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.20172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,558.75,1145996.9,0,0,2998.0107 -11822,14544,26394,-9,26395,26397,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.82544,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,5,1,671,381058.06,0,0,4383.4424 -11822,14544,26395,26397,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.1273079,8.6250954,0,2,0,-9,23,0,-1,88.473167,0,0,0,46,1,3,1,3,2,2019,1,1,8,0,30,31,15,1,0,1,0,14.459184,14.459184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,41.990002,53.75,6,1,1,0,0,1,5,1,671,381058.06,0,0,4383.4424 -11822,14544,26396,-9,26395,26397,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,4.11064,4.0280337,0,2,0,0,0,-9,0,-893.14154,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,1,5,1,671,381058.06,0,0,4383.4424 -11822,14544,26397,26395,-9,-9,1,1,1,46,1,0,1,0,1,-9,1,1,0,0,3,8.809001,9.2421894,0,2,0,-9,16,0,1,70.834976,0,0,0,45,2,4,1,3,2,2019,1,2,22,10,42,53,15,1,1,1,0,26.37742,26.37742,0,0,0,0,0,0,0,0,0,0,0,1.9007035,0,0,0,41.990002,53.75,52.82,53.970001,4,1,1,0,0,1,5,1,671,381058.06,0,0,4383.4424 -11823,14545,26398,26399,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,-3,-87.466812,0,0,0,69,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.080002,41.91,54.779999,26.41,6,1,1,0,0,12,2,1,753,369652.63,0,0,479.66089 -11823,14545,26399,26398,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,6.3000641,6.2596269,1,0,-9,32,0,3,-37.33218,0,0,0,66,3,3,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7462058,0,0,54.779999,26.41,53.080002,41.91,4,1,1,0,0,12,2,1,753,369652.63,0,0,479.66089 -11824,14546,26400,26401,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,0,3,0,8.4137955,8.2183161,1,0,-9,57,0,1,85.485588,0,0,0,80,2,3,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5814054,8.5065613,0,0,57.619999,43.720001,54.959999,53.169998,6,1,1,0,0,9,3,1,1018.5,1200206.5,0,0,3111.4658 -11824,14546,26401,26400,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-1,-19.727808,0,0,0,81,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9814775,0,0,0,54.959999,53.169998,57.619999,43.720001,5,1,1,0,0,9,3,1,1018.5,1200206.5,0,0,3111.4658 -11825,14547,26402,26403,-9,-9,1,1,1,24,1,1,1,0,3,-9,2,1,0,0,4,8.0086365,8.0682726,0,2,0,-9,4,0,1,147.8887,0,1,0,23,2,3,3,-9,-9,2019,2,2,23,10,44,39,15,1,1,3,0,9.2168455,9.2168455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.690001,59,23.92,62.27,2,1,1,0,0,5,3,0,1181,-7128.3271,0,0,1796.4418 -11825,14547,26403,26402,-9,-9,2,1,0,23,1,1,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-1,-84.497604,0,1,1,24,3,4,1,-9,-9,2019,3,1,30,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.92,62.27,18.690001,59,4,1,1,0,0,5,3,0,1181,-7128.3271,0,0,1796.4418 -11825,14547,26404,-9,26403,26402,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.8442,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,3,0,1181,-7128.3271,0,0,1796.4418 -11826,14548,26405,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,1,3,8.173049,7.877615,0,3,0,0,0,-9,0,-1045.1522,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,37,38,15,1,1,-9,0,8.3359671,8.3359671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.969999,35.43,-9,-9,6,1,1,0,0,11,4,0,286,50479.438,0,0,1739.4779 -11827,14549,26406,26407,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,1,0,0,0,0,79,3,4,3,-9,-9,2019,4,1,9,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4.4304833,0,0,0,46.25,45.080002,66.610001,31.41,6,1,1,0,0,12,1,1,868.5,167647.41,0,0,357.78931 -11827,14549,26407,26406,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-1,0,0,0,0,80,2,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3.9753587,0,0,0,66.610001,31.41,46.25,45.080002,6,1,1,0,0,12,1,1,868.5,167647.41,0,0,357.78931 -11828,14550,26408,26409,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,0,2,8.8577337,8.8310232,0,1,0,-9,40,0,-8,-91.505508,0,0,0,72,3,3,1,2,2,2019,1,2,8,1,43,40,15,1,0,1,0,15.40306,15.40306,0,0,0,0,0,0,0,0,1,1,0,1.8189347,0,0,0,60.869999,22.24,58.099998,39.279999,6,1,1,0,0,6,5,1,321,2229228,0,0,3274.5835 -11828,14550,26409,26408,-9,-9,2,1,0,72,1,0,0,0,3,-9,2,1,0,0,3,6.9964209,7.2472234,5.8253365,1,0,-9,40,0,8,20.707537,0,0,0,64,1,2,1,3,2,2019,1,1,8,0,10,8,15,1,0,1,0,11.449408,11.449408,0,0,0,0,0,0,0,0,1,1,0,1.0263945,5.6123967,0,0,58.099998,39.279999,60.869999,22.24,6,1,1,0,1,6,5,1,321,2229228,0,0,3274.5835 -11829,14551,26410,26411,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,4,8.280221,8.1894064,0,2,0,-9,5,0,9,-95.517967,0,0,0,28,3,4,3,-9,-9,2019,2,2,10,0,45,48,15,1,0,3,0,9.5677958,9.5677958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,47,57,6,2,3,0,0,6,3,1,476,-5586.2207,0,0,1459.8197 -11829,14551,26411,26410,-9,-9,2,1,0,28,1,1,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,0,39.755402,0,1,1,37,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,51.490002,57.57,5,2,3,0,0,6,3,1,476,-5586.2207,0,0,1459.8197 -11829,14551,26412,-9,26411,26410,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.345,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,3,1,476,-5586.2207,0,0,1459.8197 -11829,14551,26413,-9,26411,26410,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1096.0814,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,6,3,1,476,-5586.2207,0,0,1459.8197 -11830,14552,26414,26415,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,2,8.3568888,8.4480734,0,2,0,-9,6,0,-3,-8.3467464,0,0,0,48,2,2,1,2,2,2019,1,2,0,0,40,50,15,1,0,1,0,11.079429,11.079429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.459999,39.689999,53.48,46.240002,7,1,1,0,0,6,5,1,427.5,514869.88,0,0,4810.561 -11830,14552,26415,26414,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,2,9.3480873,9.5543871,0,2,0,-9,6,0,3,-17.945131,0,0,0,45,2,2,1,2,2,2019,1,1,10,0,65,40,15,1,0,1,0,17.249199,17.249199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.48,46.240002,58.459999,39.689999,5,1,1,0,0,6,5,1,427.5,514869.88,0,0,4810.561 -11830,14552,26416,-9,26414,26415,5,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.8237,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,427.5,514869.88,0,0,4810.561 -11830,14552,26417,-9,26414,26415,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.4819,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,5,1,427.5,514869.88,0,0,4810.561 -11830,14553,26418,-9,26414,26415,3,1,0,18,2,0,2,0,2,-9,7,2,0,0,3,5.9548779,6.4016185,5.4202771,3,0,0,0,-9,0,-1062.0531,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,9,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6952891,0,0,0,39.860001,35.599998,-9,-9,5,1,1,0,0,6,2,1,301,221480.14,0,0,1018.5763 -11831,14554,26419,26421,-9,-9,1,1,1,40,1,1,1,0,2,-9,2,1,0,0,4,7.4239593,7.7684617,0,2,0,-9,6,0,6,-68.494072,0,0,0,34,1,3,1,3,2,2019,1,2,12,1,21,20,15,1,0,1,0,14.310411,14.310411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.939999,49.779999,48.450001,57.490002,6,1,1,0,0,9,2,0,951.33331,260968.42,0,0,1671.3656 -11831,14554,26420,-9,26421,26419,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1198.8143,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,951.33331,260968.42,0,0,1671.3656 -11831,14554,26421,26419,-9,-9,2,1,0,34,1,1,1,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,6,0,-6,56.997059,0,0,1,40,2,4,1,2,3,2019,1,1,6,2,3,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,52.939999,49.779999,5,1,1,0,0,9,2,0,951.33331,260968.42,0,0,1671.3656 -11832,14555,26422,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,8.6249161,8.3610744,0,3,0,0,0,-9,0,-869.19592,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,67,52,15,1,0,-9,0,8.6934242,8.6934242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,57.830002,-9,-9,5,1,1,0,0,9,5,0,1278,415583.84,0,0,1936.642 -11833,14556,26423,26425,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.3055267,8.3406267,0,2,0,-9,22,0,0,49.249165,0,0,0,46,3,4,1,2,2,2019,1,2,9,0,26,20,15,1,0,1,0,15.626804,15.626804,0,0,0,0,0,0,0,2,1,1,0,1.1762447,0,8.0337191,3,58.330002,47.360001,52,55,6,1,1,0,0,10,4,1,658,217213.27,0,0,2850.9058 -11833,14556,26424,-9,26423,26425,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.49036,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,658,217213.27,0,0,2850.9058 -11833,14556,26425,26423,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,4,8.415349,8.2681627,0,2,0,-9,7,0,0,-6.8475418,0,0,0,46,2,4,1,-9,-9,2019,1,1,9,1,37,37,15,1,0,1,0,14.158802,14.158802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,58.330002,47.360001,6,1,1,0,0,10,4,1,658,217213.27,0,0,2850.9058 -11833,14556,26426,-9,26423,26425,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.5293,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,10,4,1,658,217213.27,0,0,2850.9058 -11834,14557,26427,26428,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.2447701,8.5681524,0,1,0,-9,30,0,1,18.923986,0,0,0,48,1,4,1,2,3,2019,1,2,9,0,38,38,15,1,0,1,0,16.104931,16.104931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,11,5,1,610.5,1266569.8,0,0,3806.9614 -11834,14557,26428,26427,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,9.2454071,9.3243246,0,1,0,-9,30,0,-1,55.9296,0,0,0,49,2,3,1,2,2,2019,1,1,6,0,45,41,15,1,0,1,0,20.481903,20.481903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,11,5,1,610.5,1266569.8,0,0,3806.9614 -11835,14558,26429,-9,-9,-9,1,1,0,29,2,0,1,0,1,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.91815,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,30,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.559999,66.129997,-9,-9,1,4,2,0,1,7,1,0,202,-77.628906,0,0,1279.3182 -11835,14558,26430,-9,26429,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1031.5454,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,4,2,0,0,7,1,0,202,-77.628906,0,0,1279.3182 -11836,14559,26431,26432,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,6.4035239,6.773077,1,0,-9,47,0,1,-13.797197,0,0,0,66,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.1380444,6.5924273,.6024552,3,55.130001,34.07,50,47,5,1,1,0,0,10,2,1,416,586300.13,0,0,1747.9883 -11836,14559,26432,26431,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,-1,-42.65506,0,0,0,67,3,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,55.130001,34.07,5,1,1,0,0,10,2,1,416,586300.13,0,0,1747.9883 -11837,14560,26433,26434,-9,-9,2,1,0,47,1,0,4,0,1,-9,2,1,0,0,4,10.028216,9.9227123,0,2,0,-9,21,0,-3,116.68745,0,0,0,50,1,4,1,2,2,2019,1,1,8,0,36,36,15,1,0,1,0,68.118645,68.118645,0,0,0,0,0,0,0,0,0,0,0,4.9392042,0,0,0,55.580002,52.990002,47.490002,55.02,6,1,1,0,0,9,5,1,538.79999,2873750.5,0,0,28433.631 -11837,14560,26434,26433,-9,-9,1,1,1,50,1,0,4,0,1,-9,2,1,0,0,4,9.7090158,9.6204996,0,2,0,-9,21,0,3,64.78968,0,0,0,47,1,4,1,1,1,2019,1,2,7,0,80,55,15,1,0,1,0,20.12969,20.12969,0,0,0,0,0,0,0,0,0,0,0,7.3982143,0,0,0,47.490002,55.02,55.580002,52.990002,6,1,1,0,0,9,5,1,538.79999,2873750.5,0,0,28433.631 -11837,14560,26435,-9,26433,26434,5,1,1,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.32159,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,538.79999,2873750.5,0,0,28433.631 -11837,14560,26436,-9,26433,26434,6,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.29565,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,538.79999,2873750.5,0,0,28433.631 -11837,14560,26437,-9,26433,26434,4,1,1,16,2,0,4,1,3,-9,7,2,0,0,5,0,4.1904292,4.0508618,2,0,0,0,-9,0,-974.66003,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7519515,0,0,0,60.990002,53.200001,-9,-9,7,1,1,0,0,9,5,1,538.79999,2873750.5,0,0,28433.631 -11837,14561,26438,-9,26433,26434,3,1,0,18,2,0,4,1,2,0,7,2,0,0,4,6.4047594,6.3986416,4.3471165,3,0,0,0,-9,0,-1069.5063,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2985735,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,9,5,1,524,-63320.32,0,0,619.03857 -11838,14562,26439,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,1,0,7.0647693,7.1901417,3,0,0,0,-9,0,-926.6864,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9917803,0,0,42.43,21.33,-9,-9,5,1,1,0,0,12,3,0,581,489483.09,0,0,2274.7234 -11839,14563,26440,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1039.2377,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.98,29.33,-9,-9,6,1,1,0,0,7,1,1,572,-103981.8,0,0,-980.84137 -11839,14564,26441,-9,26440,-9,2,1,1,33,3,0,0,0,3,-9,2,1,0,0,4,8.5520687,8.4434023,0,3,0,-9,0,-9,0,-925.41821,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,57,0,15,1,0,-9,1,9.271142,9.271142,0,0,0,0,0,0,0,0,1,1,0,3.0979836,0,0,0,55.34,54.259998,-9,-9,6,1,1,0,0,7,5,1,251,-130764.16,0,0,2579.1306 -11840,14565,26442,-9,26443,26444,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-988.96002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,7,4,1,607.75,534225.94,0,0,4391.1875 -11840,14565,26443,26444,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.1054869,7.9950967,0,2,0,-9,16,0,-1,-92.882561,0,0,1,40,2,2,1,3,2,2019,1,2,15,3,48,45,15,1,0,1,0,7.8093271,7.8093271,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.950001,55.689999,52.990002,40.75,6,2,3,0,0,7,4,1,607.75,534225.94,0,0,4391.1875 -11840,14565,26444,26443,26446,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,2,8.6532583,8.7936802,0,2,0,-9,16,0,1,-36.631138,0,0,0,39,2,4,1,3,3,2019,1,1,12,0,40,40,15,1,0,1,0,17.139408,17.139408,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.809019,3,52.990002,40.75,31.950001,55.689999,4,2,3,0,0,7,4,1,607.75,534225.94,0,0,4391.1875 -11840,14565,26445,-9,26443,26444,5,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.5159,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,4,1,607.75,534225.94,0,0,4391.1875 -11840,14566,26446,-9,-9,-9,3,1,0,87,3,0,2,0,2,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1040.9124,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,11.093323,0,0,0,1,1,0,0,0,0,0,55.049999,34.27,-9,-9,4,2,3,0,0,7,1,1,263,-26586.508,0,0,0 -11841,14567,26447,26448,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,0,1,7.2080259,7.5183687,0,2,0,-9,20,0,8,-2.3899498,-9,0,0,48,3,3,3,3,1,2019,2,1,12,0,24,0,15,1,0,3,0,9.6099977,9.6099977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.349998,41.799999,50.810001,40.150002,6,2,3,0,0,8,2,0,339.5,92385.758,0,0,1281.031 -11841,14567,26448,26447,-9,-9,1,1,0,48,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,-8,-46.158363,-9,0,0,56,2,1,1,3,2,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.810001,40.150002,48.349998,41.799999,6,2,3,0,0,8,2,0,339.5,92385.758,0,0,1281.031 -11841,14568,26449,-9,26448,26447,3,1,0,25,2,0,1,0,1,-9,2,1,0,0,3,8.1724453,7.9613996,0,3,0,0,0,-9,0,-946.54279,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,35,37,15,1,0,-9,1,11.312047,11.312047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,48.549999,-9,-9,4,2,3,0,0,8,4,0,291,2458.3784,0,0,1183.9447 -11841,14569,26450,-9,26448,26447,4,1,1,18,2,0,1,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-896.19263,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.990002,53.200001,-9,-9,6,2,3,1,0,8,4,0,5665,0,0,0,-107.09176 -11842,14570,26451,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,1,0,7.0230064,7.3297415,3,0,0,0,-9,0,-1055.9872,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4051671,6.9575028,0,0,48.049999,20.469999,-9,-9,4,1,1,0,0,5,2,1,927,230577.38,0,0,1855.8165 -11843,14571,26452,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1190.7781,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,4.7878447,0,0,5.1381845,3.4878433,29.725256,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,13,1,1,605,58021.953,0,0,1089.4413 -11844,14572,26453,26454,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,9.1885214,9.0974064,0,1,0,-9,7,0,-4,-85.620735,0,0,0,58,2,3,3,-9,-9,2019,2,1,7,0,52,40,15,1,0,4,0,20.22875,20.22875,0,0,0,0,0,0,0,0,0,0,0,4.0414066,0,0,0,54.200001,57.490002,37.439999,59.970001,6,1,1,0,0,12,5,1,354,150886.28,0,0,2818.8914 -11844,14572,26454,26453,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,4,-16.431923,0,0,0,54,2,4,1,3,3,2019,3,2,13,2,0,11,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6336627,0,0,0,37.439999,59.970001,54.200001,57.490002,6,1,1,0,0,12,5,1,354,150886.28,0,0,2818.8914 -11845,14573,26455,26456,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,5,9.0388746,9.1459351,0,1,0,-9,28,0,0,-51.562622,0,0,0,52,1,3,3,2,1,2019,2,1,9,2,45,46,15,1,0,3,0,23.404991,23.404991,0,0,0,0,0,0,0,0,0,0,0,2.6189194,0,0,0,54.099998,59.110001,60.290001,52.110001,6,1,1,0,0,10,5,1,293,2462691.3,0,0,3055.8994 -11845,14573,26456,26455,-9,-9,1,1,0,52,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,28,0,0,76.046814,0,0,0,52,1,5,1,3,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,2.0543652,0,11.092492,3,60.290001,52.110001,54.099998,59.110001,6,1,1,0,0,10,5,1,293,2462691.3,0,0,3055.8994 -11845,14574,26457,-9,26456,26455,3,1,0,23,2,0,0,0,1,-9,3,3,0,0,2,7.5573392,7.4327097,0,3,0,0,0,-9,0,-1029.1726,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,28,22,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.43,55.029999,-9,-9,3,1,1,1,0,10,3,1,1083,73991.016,0,0,2189.2878 -11845,14575,26458,-9,26456,26455,4,1,1,21,2,0,0,1,2,0,7,2,0,0,5,0,6.0368948,5.8327308,3,0,0,0,-9,0,-1037.4004,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1958232,0,0,0,46.880001,60.959999,-9,-9,5,1,1,0,0,10,2,1,1762,184198.05,0,0,74.609718 -11846,14576,26459,26460,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.7621441,6.9247079,1,0,-9,8,0,-1,-33.929489,0,0,0,74,2,3,3,2,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,9.5800276,0,0,0,0,0,1,1,0,0,7.0141211,0,0,47.080002,43.23,60.049999,42.650002,6,1,1,0,0,5,4,1,1142,1376847.6,0,0,3029.7991 -11846,14576,26460,26459,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,8.2475471,8.3972988,1,0,-9,8,0,1,-19.1385,0,0,0,73,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8664364,7.9733243,0,0,60.049999,42.650002,47.080002,43.23,5,1,1,0,0,5,4,1,1142,1376847.6,0,0,3029.7991 -11847,14577,26461,26462,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,0,2,7.4886842,7.7165022,0,1,0,-9,21,0,5,31.702566,0,0,0,43,2,3,1,3,3,2019,1,2,12,1,20,20,15,1,0,1,0,11.452457,11.452457,0,0,0,0,0,0,0,71.5,0,0,0,0,0,73.175125,3,34.049999,44.25,43.610001,56.009998,3,1,1,0,0,11,4,1,785.66669,-46691.512,0,0,2463.5593 -11847,14577,26462,26461,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,3,8.1405697,8.1763353,0,1,0,-9,21,0,-5,13.527101,0,0,1,48,3,2,1,2,3,2019,1,1,11,0,40,36,15,1,0,1,0,11.436596,11.436596,0,0,0,0,0,0,0,71.5,0,0,0,0,0,78.082489,3,43.610001,56.009998,34.049999,44.25,4,1,1,0,0,11,4,1,785.66669,-46691.512,0,0,2463.5593 -11847,14577,26463,-9,26462,26461,4,1,0,17,2,0,0,0,2,1,11,3,0,0,4,5.6206269,5.8468714,0,1,0,0,0,-9,0,-994.74805,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,30,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.74099904,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,11,4,1,785.66669,-46691.512,0,0,2463.5593 -11847,14578,26464,-9,26462,26461,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.1961842,8.1825876,0,3,0,0,0,-9,0,-927.69861,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,48,108,15,1,0,-9,1,8.4498291,8.4498291,0,0,0,0,0,0,0,0,0,0,0,1.8171144,0,0,0,49.459999,56.91,-9,-9,5,1,1,0,0,11,4,1,186,-53668.938,0,0,1810.7528 -11848,14579,26465,-9,26467,26466,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.2755,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,11,5,1,713.66669,342489.03,0,0,4167.5376 -11848,14579,26466,26467,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,9.2467165,8.6541767,0,2,0,-9,16,0,2,-104.44876,0,0,0,42,2,5,1,2,2,2019,1,1,12,0,38,38,15,1,0,1,0,25.126492,25.126492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,2,3,0,0,11,5,1,713.66669,342489.03,0,0,4167.5376 -11848,14579,26467,26466,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,5,8.6441784,8.7228384,0,2,0,-9,17,0,-2,-100.32749,0,0,1,44,1,4,1,2,2,2019,1,2,4,0,38,38,15,1,0,1,0,19.428835,19.428835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,7,2,3,0,0,11,5,1,713.66669,342489.03,0,0,4167.5376 -11849,14580,26468,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,3,0,7.4944439,7.2590904,3,0,0,0,-9,0,-1006.8579,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.100498,7.3168168,.25967747,3,57.540001,34.450001,-9,-9,6,1,1,0,0,13,3,1,2889,302887.06,0,0,1799.5302 -11850,14581,26469,-9,26471,-9,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.07214,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,1,616.66669,64852.531,0,0,910.33502 -11850,14581,26470,-9,26471,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.47064,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,4,4,1,616.66669,64852.531,0,0,910.33502 -11850,14581,26471,-9,-9,-9,1,1,0,48,2,0,2,0,1,-9,2,1,0,0,5,7.9684863,7.6006079,0,2,0,-9,14,0,-2,-30.539093,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,15,3,20,18,15,1,0,-9,0,14.100694,14.100694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.060001,60.240002,42.950001,61.240002,5,1,1,0,1,4,4,1,616.66669,64852.531,0,0,910.33502 -11850,14582,26472,-9,-9,-9,2,1,0,50,2,0,2,0,1,-9,2,1,0,0,4,8.2963028,8.5237236,0,2,0,-9,14,0,2,2.7431216,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,17,4,55,75,15,1,1,-9,0,8.6938515,8.6938515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.950001,61.240002,46.060001,60.240002,3,1,1,0,1,4,4,1,873,741377.88,0,0,3573.1128 -11851,14583,26473,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1082.7705,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,50.209999,-9,-9,6,1,1,0,0,13,1,1,644,158569.16,0,0,2087.9138 -11852,14584,26474,26475,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,5,5.4723792,5.3831935,0,1,0,-9,32,-9,-1,-19.299814,-9,0,0,60,2,5,1,3,3,2019,1,2,10,0,3,0,15,1,0,1,0,9.3633223,9.3633223,0,0,0,0,0,0,0,0,0,0,0,4.7478046,0,0,0,57.060001,57.759998,54.669998,57.490002,7,1,1,0,0,6,4,1,500,326402.38,0,0,2755.7012 -11852,14584,26475,26474,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,8.5925865,8.7910376,0,1,0,-9,32,-9,1,-5.4823737,-9,0,0,59,2,5,1,2,1,2019,1,1,2,0,43,0,15,1,0,1,0,16.219135,16.219135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.669998,57.490002,57.060001,57.759998,6,1,1,0,0,6,4,1,500,326402.38,0,0,2755.7012 -11853,14585,26476,26477,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,1,4,7.6600833,7.2642841,4.4441018,1,0,-9,36,0,-7,-43.301952,0,0,0,68,2,4,1,2,3,2019,1,1,7,0,28,27,15,1,0,1,0,7.5104179,7.5104179,0,0,0,0,0,0,0,0,1,1,0,6.8822069,4.6678185,0,0,30.32,59.619999,54.790001,55.860001,7,1,1,0,0,9,5,0,294.5,789488.13,0,0,4971.2695 -11853,14585,26477,26476,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,0,4,9.1365814,9.3025761,6.6439061,1,0,-9,36,0,7,119.35655,0,0,0,61,3,4,1,3,3,2019,1,2,7,0,33,27,15,1,0,1,0,33.448738,33.448738,0,0,0,0,0,0,0,0,1,1,0,0,6.8672605,0,0,54.790001,55.860001,30.32,59.619999,6,1,1,0,0,9,5,0,294.5,789488.13,0,0,4971.2695 -11854,14586,26478,-9,26479,26481,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.4358,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,6,4,1,744.25,590239.69,0,0,4181.9487 -11854,14586,26479,26481,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,8.3837118,8.3272142,0,2,0,-9,12,0,-4,-227.33183,0,0,1,44,1,3,1,2,3,2019,1,2,12,2,55,55,15,1,0,1,0,11.29975,11.29975,0,0,0,0,0,0,0,2,1,1,0,0,0,.76233095,3,37.360001,54.650002,43.25,51.98,5,2,3,0,0,6,4,1,744.25,590239.69,0,0,4181.9487 -11854,14586,26480,-9,26479,26481,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.42035,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,6,4,1,744.25,590239.69,0,0,4181.9487 -11854,14586,26481,26479,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,3,8.4927263,8.5882711,0,2,0,-9,10,0,4,47.186958,0,0,0,40,1,3,1,2,1,2019,1,1,18,7,43,43,15,1,1,1,0,13.030847,13.030847,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.66272,3,43.25,51.98,37.360001,54.650002,6,1,1,0,0,6,4,1,744.25,590239.69,0,0,4181.9487 -11855,14587,26482,26483,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,46,0,-5,0,0,0,0,69,3,5,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.9944718,3,63.41,29.17,62.389999,56.709999,5,2,3,0,0,8,1,1,499,860203.25,0,0,1873.099 -11855,14587,26483,26482,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,46,0,5,0,0,0,0,64,2,2,3,2,2,2019,4,1,1,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3154092,0,7.775775,3,62.389999,56.709999,63.41,29.17,7,2,3,0,0,8,1,1,499,860203.25,0,0,1873.099 -11856,14588,26484,-9,-9,-9,1,1,1,36,3,0,0,0,1,-9,2,1,0,0,3,9.4587898,9.2170286,0,3,0,0,0,-9,0,-1015.7004,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,70,15,1,0,-9,0,28.668131,28.668131,0,0,0,0,0,0,0,0,0,0,0,8.5948868,0,0,0,47.07,53.970001,-9,-9,4,1,1,0,0,10,5,1,341,-74369.906,0,0,5854.1416 -11857,14589,26485,-9,26487,26488,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.6711,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,600,862430.75,0,0,5256.7183 -11857,14589,26486,-9,26487,26488,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.65143,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,600,862430.75,0,0,5256.7183 -11857,14589,26487,26488,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,8.7783175,8.8550377,0,2,0,-9,10,0,0,206.23398,0,0,0,45,2,3,1,-9,-9,2019,1,1,8,0,30,26,15,1,0,1,0,29.613987,29.613987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.689999,58.349998,41.470001,58.080002,5,4,2,0,0,9,5,1,600,862430.75,0,0,5256.7183 -11857,14589,26488,26487,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,9.2377129,9.226058,0,2,0,-9,10,0,0,-143.05063,0,0,0,45,1,4,1,1,1,2019,1,2,15,4,38,39,15,1,1,1,0,29.661428,29.661428,0,0,0,0,0,0,0,0,0,0,0,5.4304862,0,0,0,41.470001,58.080002,46.689999,58.349998,6,1,1,0,0,9,5,1,600,862430.75,0,0,5256.7183 -11858,14590,26489,26490,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,2,0,8.6214247,8.577014,1,0,-9,8,0,2,-75.561928,0,0,0,62,2,5,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5045755,8.3312063,0,0,47.369999,44.880001,57.060001,57.759998,6,1,1,0,0,11,4,1,450,621089.63,0,0,2615.9316 -11858,14590,26490,26489,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,5,0,6.5062771,6.9992399,1,0,-9,8,0,-2,124.52245,0,0,0,64,1,2,3,2,2,2019,4,2,8,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,6.3036032,23.017433,3,57.060001,57.759998,47.369999,44.880001,6,1,1,0,0,11,4,1,450,621089.63,0,0,2615.9316 -11859,14591,26491,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,4,3,0,0,3,0,7.9382339,8.298481,3,0,0,0,-9,0,-897.12799,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,43,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1087437,0,0,52.400002,52.91,-9,-9,6,1,1,0,0,7,4,1,197,1474544.9,0,0,2234.012 -11859,14592,26492,-9,-9,26491,2,1,0,22,2,0,0,0,2,-9,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-994.80731,1,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,16,4,0,43,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7707534,0,0,0,34,42.779999,-9,-9,6,1,1,0,0,7,1,1,400,0,0,0,-99.227371 -11860,14593,26493,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,2,1,0,0,5,8.5608063,8.4497166,0,3,0,0,0,-9,0,-1007.2878,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,80,40,15,1,0,-9,0,5.7333841,5.7333841,0,0,0,0,0,0,0,7,0,0,0,0,0,15.542793,3,62.389999,56.709999,-9,-9,7,1,1,0,0,12,4,0,296,35841.957,0,0,235.47133 -11861,14594,26494,26496,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,0,3,8.1956167,8.1928835,0,2,0,-9,10,0,-6,-53.214588,0,0,1,38,2,4,1,-9,-9,2019,1,1,12,0,35,35,15,1,0,1,0,10.720012,10.720012,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.9637721,3,54.959999,53.169998,41.169998,59.310001,5,1,1,0,1,8,3,0,997.66669,-54077.082,0,0,2067.5256 -11861,14594,26495,-9,26494,26496,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.5018,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,5,0,0,8,3,0,997.66669,-54077.082,0,0,2067.5256 -11861,14594,26496,26494,-9,-9,1,1,1,38,1,0,1,0,2,-9,1,1,0,0,4,6.4061446,6.3790536,0,2,0,-9,11,0,6,-32.353283,0,0,0,32,2,3,1,-9,-9,2019,1,2,8,0,25,25,15,1,0,1,0,3.0939977,3.0939977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,54.959999,53.169998,6,1,1,0,1,8,3,0,997.66669,-54077.082,0,0,2067.5256 -11862,14595,26497,26498,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,3,0,-2,28.459793,0,0,0,77,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,105.77672,0,0,0,0,0,1,1,0,0,0,0,0,51,46,52.400002,47.709999,6,1,1,0,0,4,2,1,444,288721.38,0,0,1744.6089 -11862,14595,26498,26497,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.3787365,7.0288458,1,0,-9,3,0,2,5.2512207,0,0,0,75,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,7.4717669,6.6491194,66.610229,1,52.400002,47.709999,51,46,6,1,1,0,0,4,2,1,444,288721.38,0,0,1744.6089 -11863,14596,26499,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,3,8.522193,8.4239645,0,3,0,0,0,-9,0,-1111.2551,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,40,40,15,1,1,-9,0,17.548653,17.548653,0,0,0,0,0,0,0,0,0,0,0,5.4058547,0,0,0,31.280001,47.740002,-9,-9,4,1,1,0,0,6,5,1,183,982084.81,0,0,1466.1885 -11863,14597,26500,-9,26499,-9,2,1,0,19,2,0,0,0,2,-9,7,2,0,0,5,0,5.6996188,5.4441724,3,0,0,0,-9,0,-1053.4307,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1302338,0,0,0,26.68,63.41,-9,-9,4,1,1,0,0,6,2,1,470,56203.34,0,0,1150.8363 -11864,14598,26501,-9,26502,26503,3,1,0,17,2,0,2,1,2,0,7,2,0,0,5,0,5.1543603,5.0755491,2,0,0,0,-9,0,-1087.2325,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3115964,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,5,4,1,582.5,491567.63,0,0,3361.6023 -11864,14598,26502,26503,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,3,8.7970057,8.8884583,0,2,0,-9,29,0,-2,53.48835,0,0,0,48,1,4,1,2,1,2019,1,1,10,1,68,65,15,1,0,1,0,12.399555,12.399555,0,0,0,0,0,0,0,0,1,1,0,2.4539683,0,0,0,49.610001,54.240002,48.869999,58.549999,5,1,1,0,0,5,4,1,582.5,491567.63,0,0,3361.6023 -11864,14598,26503,26502,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,8.1970882,8.2735415,0,2,0,-9,29,0,2,6.516098,0,0,0,46,1,3,1,2,2,2019,1,2,6,0,40,45,15,1,0,1,0,9.7136345,9.7136345,0,0,0,0,0,0,0,0,1,1,0,2.799057,0,0,0,48.869999,58.549999,49.610001,54.240002,5,1,1,0,0,5,4,1,582.5,491567.63,0,0,3361.6023 -11864,14598,26504,-9,26502,26503,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-971.36639,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,5,0,0,5,4,1,582.5,491567.63,0,0,3361.6023 -11865,14599,26505,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,0,3,7.2018652,7.5154843,0,3,0,0,0,-9,0,-868.87854,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,39,35,15,1,0,-9,0,3.9621637,3.9621637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.259998,-9,-9,3,1,1,0,0,1,3,1,517,119787.93,0,0,2529.9248 -11866,14600,26506,26507,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,1,0,0,0,0,68,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,63.790001,42.259998,6,1,1,0,0,6,1,1,1231.5,510092.13,0,0,339.87192 -11866,14600,26507,26506,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-1,0,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.13243243,0,0,0,63.790001,42.259998,54.790001,55.860001,6,1,1,0,0,6,1,1,1231.5,510092.13,0,0,339.87192 -11867,14601,26508,-9,26509,26510,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-871.9668,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,6,4,1,559.66669,-9952.4189,0,0,2444.1604 -11867,14601,26509,26510,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,7.0402875,6.7495027,0,2,0,-9,30,0,0,-81.975662,0,0,0,52,2,5,1,2,2,2019,1,2,12,0,6,5,15,1,0,1,0,18.835333,18.835333,0,0,0,0,0,0,0,2,1,1,0,.030770158,0,3.0233529,3,58.07,46.290001,38.810001,62.110001,6,1,1,0,0,6,4,1,559.66669,-9952.4189,0,0,2444.1604 -11867,14601,26510,26509,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,5,8.8524523,8.4482641,0,2,0,-9,30,0,0,-53.318958,0,0,0,52,2,3,1,2,1,2019,1,1,15,5,40,40,15,1,1,1,0,19.4771,19.4771,0,0,0,0,0,0,0,2,1,1,0,2.664453,0,10.084115,3,38.810001,62.110001,58.07,46.290001,5,1,1,0,0,6,4,1,559.66669,-9952.4189,0,0,2444.1604 -11868,14602,26511,-9,26513,26512,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,8.8456326,9.0326004,0,3,0,0,0,-9,0,-1106.8502,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,50,37,15,1,0,-9,1,14.347814,14.347814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,8,5,1,1002,183580.58,0,0,1659.5311 -11868,14603,26512,26513,-9,-9,3,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,8.7160873,8.7033672,1,0,-9,7,0,-3,74.171097,0,0,0,69,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0585761,8.604495,0,0,54.139999,42.509998,51,47,4,1,1,0,0,8,5,1,460,2173829.3,0,0,5249.9648 -11868,14603,26513,26512,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,3,0,6.7162371,6.5582743,1,0,-9,7,0,3,-26.367762,0,0,0,66,1,3,3,-9,-9,2019,4,3,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7390709,0,0,51,47,54.139999,42.509998,5,1,1,0,0,8,5,1,460,2173829.3,0,0,5249.9648 -11869,14604,26514,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,0,3,0,6.956491,6.6749263,3,0,0,0,-9,0,-906.97125,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6146412,7.035111,0,0,40.400002,58.619999,-9,-9,6,1,1,0,0,11,2,1,543,499431.41,0,0,1616.1202 -11870,14605,26515,26516,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,0,0,0,0,0,77,2,2,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.81952,1,54,46,64.059998,15.57,6,1,1,0,0,4,1,0,1077.5,241652.44,0,0,2426.6519 -11870,14605,26516,26515,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,58,0,0,0,0,0,0,77,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,32.380276,2.365752,0,0,0,0,1,1,0,0,0,0,0,64.059998,15.57,54,46,7,1,1,0,0,4,1,0,1077.5,241652.44,0,0,2426.6519 -11871,14606,26517,-9,-9,-9,1,1,0,41,3,0,4,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-987.08185,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,37.84,-9,-9,4,1,1,0,1,7,1,0,2031,43883.742,0,0,2146.5491 -11871,14606,26518,-9,26517,-9,4,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-843.86359,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,1,0,2031,43883.742,0,0,2146.5491 -11871,14606,26519,-9,26517,-9,5,1,0,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-892.72485,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,1,0,2031,43883.742,0,0,2146.5491 -11872,14607,26520,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,0,2,7.2261348,7.6477442,0,4,0,0,0,-9,0,-1060.4836,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,24,24,15,1,0,-9,0,8.1436272,8.1436272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,57.880001,-9,-9,4,1,1,0,0,1,2,0,591.66669,17567.26,0,0,1804.6007 -11872,14607,26521,-9,26520,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1051.0271,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,2,0,591.66669,17567.26,0,0,1804.6007 -11872,14607,26522,-9,26520,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1091.5377,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,2,0,591.66669,17567.26,0,0,1804.6007 -11873,14608,26523,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,4,3,0,0,4,0,9.1287289,8.7852564,3,0,-9,0,1,0,-1035.0686,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9014506,9.1415434,0,0,49.119999,57.279999,-9,-9,4,1,1,0,0,6,5,1,561,3915158.3,0,0,5070.269 -11874,14609,26524,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,4,9.9931812,9.8370199,0,3,0,0,0,-9,0,-1097.9537,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,48,47,15,1,0,-9,0,38.439579,38.439579,0,0,0,0,0,0,0,0,0,0,0,2.9138591,0,0,0,60.119999,54.799999,-9,-9,5,1,1,0,0,11,5,0,300,1568891,0,0,5564.3423 -11875,14610,26525,26526,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,4.9684644,4.609396,1,0,-9,7,0,-1,31.007973,0,0,0,76,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.8101091,0,0,54.439999,51.82,55.790001,52.619999,6,1,1,0,0,8,2,1,1298.5,490831.97,0,0,2287.5132 -11875,14610,26526,26525,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,6.5147552,6.1519036,1,0,-9,7,0,1,59.046741,0,0,0,75,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8840771,6.4667273,0,0,55.790001,52.619999,54.439999,51.82,7,1,1,0,0,8,2,1,1298.5,490831.97,0,0,2287.5132 -11876,14611,26527,-9,26529,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1015.593,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,6,1,0,1647,-54697.652,0,0,1762.0238 -11876,14611,26528,-9,26529,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1047.89,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,6,1,0,1647,-54697.652,0,0,1762.0238 -11876,14611,26529,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,1,1,0,0,4,0,0,0,4,0,0,0,-9,0,-994.8537,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.259998,56.189999,-9,-9,5,3,4,0,0,6,1,0,1647,-54697.652,0,0,1762.0238 -11877,14612,26530,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-884.03595,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.580002,22.68,-9,-9,4,1,1,0,0,9,1,0,272,7192.8618,0,0,781.72638 -11878,14613,26531,26532,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,2,0,0,0,0,66,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,47,5,1,1,0,0,6,1,0,2278.5,62333.789,0,0,2273.8293 -11878,14613,26532,26531,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,-2,0,0,0,0,68,3,3,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,51,48,5,1,1,0,0,6,1,0,2278.5,62333.789,0,0,2273.8293 -11879,14614,26533,-9,26534,-9,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1037.6611,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,4,1,0,843.66669,-80523.016,0,0,932.31531 -11879,14614,26534,-9,-9,-9,1,1,0,45,2,1,2,0,3,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1008.7524,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.849998,50.34,-9,-9,3,1,1,0,1,4,1,0,843.66669,-80523.016,0,0,932.31531 -11879,14614,26535,-9,26534,-9,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-956.8277,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,1,0,843.66669,-80523.016,0,0,932.31531 -11879,14615,26536,-9,26534,-9,2,1,1,20,2,1,2,0,2,-9,2,1,0,0,2,7.4180555,7.5150499,0,3,0,0,0,-9,0,-898.64252,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,6,0,35,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.299999,47.009998,-9,-9,4,4,2,0,1,4,3,0,933,-89715.055,0,0,1395.8234 -11880,14616,26537,26538,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,2,7.5186648,7.399498,0,1,0,-9,3,0,15,-34.100132,0,0,1,27,2,3,1,-9,-9,2019,1,1,17,5,32,28,15,1,1,1,0,5.7385831,5.7385831,0,0,0,0,0,0,0,2,0,0,0,0,0,6.4603376,3,35.959999,29.879999,58.32,50.220001,6,1,1,0,0,6,4,0,205,-32692.105,0,0,2093.6587 -11880,14616,26538,26537,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,3,7.9836464,7.919971,0,1,0,-9,3,0,-15,140.58353,0,1,0,42,2,2,1,2,2,2019,1,2,6,0,44,45,15,1,0,1,0,7.1190567,7.1190567,0,0,0,0,0,0,0,0,0,0,0,1.0050075,0,0,0,58.32,50.220001,35.959999,29.879999,6,1,1,0,0,6,4,0,205,-32692.105,0,0,2093.6587 -11881,14617,26539,26540,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,5,7.3331699,7.4247408,0,1,0,-9,3,0,-11,25.377928,0,1,1,39,2,4,1,-9,-9,2019,1,1,7,0,20,30,15,1,0,1,0,8.9103508,8.9103508,0,0,0,0,0,0,0,0,0,0,0,2.8191173,0,0,0,57.060001,57.759998,46.16,58.619999,6,1,1,0,0,6,5,1,758.5,-54488.559,0,0,2211.4766 -11881,14617,26540,26539,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,8.669857,8.5802422,0,1,0,-9,3,0,11,12.411342,0,0,0,28,1,5,1,1,2,2019,1,2,8,0,50,55,15,1,0,1,0,12.33847,12.33847,0,0,0,0,0,0,0,0,0,0,0,2.2326751,0,0,0,46.16,58.619999,57.060001,57.759998,5,1,1,0,0,6,5,1,758.5,-54488.559,0,0,2211.4766 -11882,14618,26541,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1025.9419,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.84,37.34,-9,-9,2,1,1,0,1,9,1,0,451,69786.594,0,0,872.06329 -11883,14619,26542,26543,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-8,63.76498,0,0,0,69,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6841807,0,6.5286956,3,54.790001,55.860001,52,47,6,1,1,0,0,13,3,1,1414.5,2224342,0,0,1036.5405 -11883,14619,26543,26542,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.7144237,7.5137653,1,0,-9,7,0,8,52.365318,0,0,0,61,1,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7750592,7.9465599,0,0,52,47,54.790001,55.860001,5,1,1,0,0,13,3,1,1414.5,2224342,0,0,1036.5405 -11884,14620,26544,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,6,3,0,0,3,0,7.7299066,7.7526755,3,0,0,0,-9,0,-944.16473,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.8876534,7.8327341,31.614664,3,34.91,45.009998,-9,-9,4,1,1,0,0,2,3,1,966,404292.94,0,0,2620.0273 -11885,14621,26545,26546,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,7.8915,7.6347151,0,1,0,-9,29,0,1,59.818718,0,0,0,51,1,5,1,3,3,2019,1,1,13,5,60,60,15,1,1,1,0,5.246314,5.246314,0,0,0,0,0,0,0,0,0,0,0,3.2912436,0,0,0,46.389999,60.990002,43.57,62.68,6,1,1,0,0,11,4,1,103.5,1717751.6,0,0,2940.147 -11885,14621,26546,26545,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,5,8.3758392,8.1644478,0,1,0,-9,28,0,-1,43.889942,0,0,0,52,1,4,1,1,1,2019,1,2,12,1,37,36,15,1,0,1,0,12.834047,12.834047,0,0,0,0,0,0,0,0,0,0,0,3.9180307,0,0,0,43.57,62.68,46.389999,60.990002,6,1,1,0,0,11,4,1,103.5,1717751.6,0,0,2940.147 -11885,14622,26547,-9,26546,26545,3,1,1,19,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1017.3013,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,14,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,11,1,1,569,-35323.105,0,0,0 -11886,14623,26548,26549,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,1,0,2.4083586,2.5912762,1,0,-9,17,0,14,105.2071,0,0,0,58,3,1,3,3,2,2019,4,2,28,10,0,0,15,4,1,3,0,0,0,1,0,44.992207,0,0,0,0,0,1,1,0,2.4513667,2.5668819,0,0,30.01,20.17,39.400002,19.83,2,1,1,0,0,5,2,1,870.5,156128.95,0,0,3065.2141 -11886,14623,26549,26548,-9,-9,2,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,6.3801174,6.691865,1,0,-9,17,0,-14,33.629986,0,0,0,72,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.5103002,23.361748,1,39.400002,19.83,30.01,20.17,5,1,1,0,0,5,2,1,870.5,156128.95,0,0,3065.2141 -11887,14624,26550,26551,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,8.2049227,8.1080503,1,0,-9,6,0,3,120.11655,0,0,0,64,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6289916,7.6328325,8.6444921,3,55.299999,55.599998,43.610001,46.080002,6,1,1,0,0,9,3,1,469,936424.88,0,0,3806.7747 -11887,14624,26551,26550,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,6.6027722,6.6224051,1,0,-9,6,0,-3,11.202705,0,0,0,67,2,4,3,3,3,2019,4,1,20,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.167747,6.4084201,0,3,43.610001,46.080002,55.299999,55.599998,6,1,1,0,0,9,3,1,469,936424.88,0,0,3806.7747 -11888,14625,26552,26553,-9,-9,1,1,1,53,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,28,0,-3,-67.025848,0,0,0,56,3,3,1,-9,-9,2019,3,2,15,3,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.32843745,0,0,3,34.52,52.919998,36.5,43.75,3,2,3,1,0,8,2,1,3402,1550.541,0,0,-156.16309 -11888,14625,26553,26552,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,3,6.5689144,6.9467049,0,1,0,-9,5,0,3,90.448341,0,0,0,53,3,3,3,3,3,2019,2,1,13,1,15,15,15,1,0,3,0,5.5569983,5.5569983,0,0,0,0,0,0,0,0,0,0,0,2.5358527,0,0,0,36.5,43.75,34.52,52.919998,4,2,3,0,0,8,2,1,3402,1550.541,0,0,-156.16309 -11888,14626,26554,-9,26553,26552,3,1,1,27,2,0,0,0,1,-9,2,1,0,0,3,8.2534466,8.3900957,0,3,0,0,0,-9,0,-917.85345,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,0,15,1,0,-9,1,9.5067263,9.5067263,0,0,0,0,0,0,0,0,0,0,0,1.5672277,0,0,0,46.650002,55.59,-9,-9,4,2,3,0,0,8,4,1,179,92374.336,0,0,1967.5051 -11889,14627,26555,26556,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.4652414,8.5707207,0,1,0,-9,24,0,2,-14.09227,0,0,0,51,1,3,1,2,-9,2019,1,1,17,8,40,40,15,1,1,1,0,12.370373,12.370373,0,0,0,0,0,0,0,0,0,0,0,4.6259255,0,0,0,46,61.599998,44.48,41.830002,6,1,1,0,0,9,5,1,837,1449646.8,0,0,4038.0386 -11889,14627,26556,26555,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,7.9109654,8.2423306,0,1,0,-9,24,0,-2,59.911747,0,0,0,53,2,5,1,2,2,2019,1,2,16,5,30,25,15,1,1,1,0,11.056112,11.056112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.48,41.830002,46,61.599998,4,1,1,0,0,9,5,1,837,1449646.8,0,0,4038.0386 -11889,14628,26557,-9,26556,26555,3,1,0,22,2,0,0,0,2,-9,7,2,0,0,2,6.2185116,6.5222354,0,3,0,0,0,-9,0,-1086.1583,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,21,9,10,19,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9626077,0,0,0,26.719999,48.959999,-9,-9,4,1,1,0,0,9,2,1,92,-22356.162,0,0,7546.1592 -11890,14629,26558,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,3,8.8108692,8.9364214,0,3,0,0,0,-9,0,-987.05829,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,41,42,15,1,0,-9,0,22.042034,22.042034,0,0,0,0,0,0,0,0,0,0,0,6.1860237,0,0,0,36.200001,56.310001,-9,-9,5,1,1,0,0,13,5,1,278,703040.63,0,0,1888.2554 -11891,14630,26559,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,6.9762893,7.1241779,3,0,0,0,-9,0,-887.39569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7851214,7.113317,0,0,52.970001,53.970001,-9,-9,6,1,1,0,0,5,2,1,1297,64375.008,0,0,1730.2119 -11892,14631,26560,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,0,3,0,7.3384161,7.1556392,3,0,0,0,-9,0,-1011.6735,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2401452,0,0,57.66,45.080002,-9,-9,6,1,1,0,0,2,3,1,59,424181.13,0,0,1727.9939 -11893,14632,26561,26562,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,9.255475,9.7018499,0,2,0,-9,9,0,0,68.589752,0,0,1,38,2,3,3,2,2,2019,2,1,9,0,38,38,15,1,0,3,0,42.249367,42.249367,0,0,0,0,0,0,0,0,1,1,0,1.214334,0,0,0,51.98,51.669998,41.790001,57.73,4,1,1,0,0,2,5,1,560.25,231503.17,0,0,4397.5303 -11893,14632,26562,26561,-9,-9,1,1,1,38,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,0,79.176704,0,0,0,38,1,4,1,2,2,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.790001,57.73,51.98,51.669998,6,1,1,0,0,2,5,1,560.25,231503.17,0,0,4397.5303 -11893,14632,26563,-9,26561,26562,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.21179,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,560.25,231503.17,0,0,4397.5303 -11893,14632,26564,-9,26561,26562,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.52728,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,560.25,231503.17,0,0,4397.5303 -11894,14633,26565,26566,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,3,0,7.0438967,6.7622337,1,0,-9,61,0,6,-34.489388,0,0,0,79,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,13.021136,0,0,0,0,0,1,1,0,0,7.0489717,0,0,47.75,36.389999,63.400002,45.23,6,1,1,0,0,5,2,1,558.5,510638.19,0,0,1331.3184 -11894,14633,26566,26565,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,6.4537826,6.3254819,1,0,-9,9,0,-6,150.35617,0,0,0,85,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,19.358208,0,0,0,0,0,1,1,0,0,6.4885454,0,0,63.400002,45.23,47.75,36.389999,6,1,1,0,0,5,2,1,558.5,510638.19,0,0,1331.3184 -11895,14634,26567,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,2,7.4259505,7.8217878,0,3,0,0,0,-9,0,-907.64111,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,30,35,15,1,0,-9,0,9.0816374,9.0816374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,30.379999,-9,-9,4,1,1,0,0,2,3,0,326,-68527.086,0,0,1773.1569 -11896,14635,26568,26569,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,9.0680799,9.3806982,7.7086697,1,0,-9,10,0,0,-9.2499161,0,0,0,62,2,3,1,3,3,2019,1,1,11,0,30,35,15,1,0,1,0,32.491772,32.491772,0,0,0,0,0,0,0,0,0,0,0,5.7624502,8.1277609,0,0,35.240002,56.700001,42.52,53.48,6,1,1,0,0,11,5,1,291,1038791,0,0,5784.7998 -11896,14635,26569,26568,-9,-9,1,1,0,62,1,0,0,0,2,-9,1,1,0,0,3,7.3604727,7.7621698,4.7147894,1,0,-9,10,0,0,-133.5105,0,0,0,62,2,3,1,3,3,2019,1,2,13,1,15,10,15,1,0,1,0,12.920048,12.920048,0,0,0,0,0,0,0,0,0,0,0,4.3193746,4.1763163,0,0,42.52,53.48,35.240002,56.700001,5,1,1,0,0,11,5,1,291,1038791,0,0,5784.7998 -11897,14636,26570,26571,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,0,5,0,7.8880267,7.6453385,1,0,-9,4,0,0,15.205928,0,0,0,67,1,4,1,2,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8266888,7.6835189,0,0,60.02,56.419998,61.119999,51.57,6,1,1,0,0,11,4,1,1591,2190792.5,0,0,3803.5928 -11897,14636,26571,26570,-9,-9,2,1,1,67,1,0,0,0,1,-9,1,1,0,0,4,7.7516313,7.7548304,0,1,0,-9,4,0,0,106.78441,0,0,0,67,1,5,3,2,2,2019,2,1,9,0,8,24,15,1,0,4,0,29.278738,29.278738,0,0,0,0,0,0,0,0,1,1,0,6.9751449,0,0,0,61.119999,51.57,60.02,56.419998,6,1,1,0,0,11,4,1,1591,2190792.5,0,0,3803.5928 -11898,14637,26572,26573,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,0,4,8.7995653,8.9424009,0,2,0,-9,10,0,-18,84.868935,0,0,0,69,1,2,3,3,2,2019,2,1,16,4,42,38,15,1,1,4,0,16.91379,16.91379,0,0,0,0,0,0,0,0,1,1,0,2.4650655,0,0,0,44.02,60.700001,52.810001,49.130001,6,1,1,0,0,9,4,1,536.5,1168232.9,0,0,4270.21 -11898,14637,26573,26572,-9,-9,1,1,1,69,1,0,2,0,1,-9,4,3,0,0,2,0,7.9631686,7.9918771,2,0,-9,10,0,18,132.48209,0,0,0,51,1,4,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4672055,7.6306162,0,3,52.810001,49.130001,44.02,60.700001,4,1,1,0,0,9,4,1,536.5,1168232.9,0,0,4270.21 -11899,14638,26574,26575,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,1,3,0,6.9200826,6.8114009,1,0,-9,57,0,-2,-22.985142,0,0,0,79,2,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,13.616743,0,0,0,0,0,1,1,0,0,6.8228612,0,0,52.669998,36.490002,62.490002,55.09,6,1,1,0,0,1,2,1,3718,43213.57,0,0,892.31714 -11899,14638,26575,26574,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,57,0,2,109.57487,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,62.490002,55.09,52.669998,36.490002,1,1,1,0,0,1,2,1,3718,43213.57,0,0,892.31714 -11900,14639,26576,26577,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,1,0,7.7121563,7.6083202,1,0,-9,53,0,4,30.381569,0,0,0,70,2,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7720585,7.6645627,0,0,59.080002,32.669998,60.119999,54.799999,6,1,1,0,0,5,3,1,485.5,1058561.5,0,0,2599.2876 -11900,14639,26577,26576,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,53,0,-4,151.61749,0,0,0,74,2,1,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6019969,0,0,0,60.119999,54.799999,59.080002,32.669998,2,1,1,0,0,5,3,1,485.5,1058561.5,0,0,2599.2876 -11901,14640,26578,26579,-9,-9,1,1,0,41,1,0,0,0,1,-9,1,1,0,0,1,8.5562019,8.571991,0,1,0,-9,3,0,-5,-54.41304,0,0,1,46,1,4,1,2,2,2019,1,2,22,9,40,40,15,1,1,1,0,14.822263,14.822263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,46.419998,46.900002,56.66,4,2,3,0,0,11,5,1,444.5,1075027.9,0,0,4352.6836 -11901,14640,26579,26578,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,8.5915489,8.3713322,0,1,0,-9,3,0,5,34.791756,0,0,0,41,1,1,1,-9,-9,2019,1,1,11,1,41,38,15,1,0,1,0,13.678747,13.678747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.900002,56.66,35.73,46.419998,4,1,1,0,0,11,5,1,444.5,1075027.9,0,0,4352.6836 -11902,14641,26580,26581,-9,-9,2,1,0,35,1,0,0,0,1,-9,3,3,0,0,3,7.9979568,7.748064,0,1,0,-9,13,0,-4,115.78825,0,0,1,39,1,4,1,1,1,2019,3,1,13,3,35,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9498897,0,0,0,44.41,51.220001,26.15,67.860001,5,1,1,1,0,10,4,1,425.5,76819.641,0,0,2441.3901 -11902,14641,26581,26580,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,0,4,7.6126623,8.0284386,0,1,0,-9,13,0,4,174.19698,0,0,0,35,1,3,3,2,2,2019,2,2,19,6,70,0,15,1,1,3,0,5.1549001,5.1549001,0,0,0,0,0,0,0,0,0,0,0,4.8600898,0,0,0,26.15,67.860001,44.41,51.220001,6,1,1,0,0,10,4,1,425.5,76819.641,0,0,2441.3901 -11903,14642,26582,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,5,9.4010448,9.4211998,0,3,0,0,0,-9,0,-1070.2787,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,45,53,15,1,0,-9,0,26.233047,26.233047,0,0,0,0,0,0,0,0,0,0,0,3.2613628,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,9,5,1,1660,399261.59,0,0,3496.3621 -11904,14643,26583,26584,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,6.6768904,6.5835137,1,0,-9,8,0,-4,52.521957,0,0,0,78,2,3,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,8.2250452,6.7706451,76.345978,1,38.84,39.259998,52,46,5,1,1,0,0,6,2,1,1378,728846.25,0,0,2736.3279 -11904,14643,26584,26583,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,3,0,6.175209,6.0900445,1,0,-9,8,0,4,197.22145,0,0,0,74,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.586689,5.7667046,0,0,52,46,38.84,39.259998,6,1,1,0,0,6,2,1,1378,728846.25,0,0,2736.3279 -11905,14644,26585,26586,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.9268808,8.6973238,0,1,0,-9,2,0,6,90.455078,0,0,0,24,1,5,1,-9,-9,2019,1,1,10,1,38,0,15,1,0,1,0,21.230837,21.230837,0,0,0,0,0,0,0,0,0,0,0,3.0041635,0,0,0,49,58,54.630001,58.830002,5,4,1,0,0,8,5,0,427.5,71518.094,0,0,4467.8315 -11905,14644,26586,26585,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,5,8.8599958,8.7408266,0,1,0,-9,2,0,-6,-12.650072,0,1,1,30,1,4,1,-9,-9,2019,1,2,10,0,45,42,15,1,0,1,0,16.48526,16.48526,0,0,0,0,0,0,0,0,0,0,0,3.4980149,0,0,0,54.630001,58.830002,49,58,6,1,1,0,0,8,5,0,427.5,71518.094,0,0,4467.8315 -11906,14645,26587,26588,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,2,9.1562786,9.251132,0,2,0,-9,8,0,-1,-81.492531,0,0,0,46,2,2,1,2,2,2019,1,1,12,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7462449,0,0,0,35.439999,44.939999,49.880001,39.389999,4,1,1,0,0,7,5,1,535.5,1033777.4,0,0,5544.1543 -11906,14645,26588,26587,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,2,8.1005058,8.7066307,0,2,0,-9,8,0,1,64.144272,0,0,0,45,1,2,1,2,2,2019,1,2,16,4,38,34,15,1,1,1,0,9.8002367,9.8002367,0,0,0,0,0,0,0,7,1,1,0,2.83744,0,1.1901948,3,49.880001,39.389999,35.439999,44.939999,4,1,1,0,0,7,5,1,535.5,1033777.4,0,0,5544.1543 -11907,14646,26589,26590,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.7159166,8.7907858,7.1155267,1,0,-9,17,0,2,-109.63094,0,0,0,45,2,2,1,3,2,2019,1,2,8,0,38,38,15,1,0,1,0,20.722305,20.722305,0,0,0,0,0,0,0,0,0,0,0,3.3937054,7.6601338,0,0,54.200001,57.490002,45.419998,40.27,7,1,1,0,0,2,5,1,1520,488627.66,0,0,4803.0674 -11907,14646,26590,26589,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,2,8.7560873,8.6888657,0,1,0,-9,17,0,-2,66.294937,0,0,0,47,2,4,1,2,-9,2019,1,1,11,0,40,39,15,1,0,1,0,14.212182,14.212182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.419998,40.27,54.200001,57.490002,6,1,1,0,0,2,5,1,1520,488627.66,0,0,4803.0674 -11908,14647,26591,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,1,3,0,6.356513,6.1713738,3,0,0,0,-9,0,-1048.9801,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,32,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1401701,0,0,64.410004,28.43,-9,-9,6,1,1,0,0,10,2,0,310,435273.69,0,0,1189.2742 -11909,14648,26592,-9,26594,26593,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,8.0495987,8.0644236,0,3,0,0,0,-9,0,-1026.0203,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,20,0,15,1,0,-9,1,23.213879,23.213879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,9,4,0,304,-63491.414,0,0,1190.6088 -11909,14649,26593,26594,-9,-9,3,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.9128494,8.8261261,0,1,0,-9,4,0,4,116.89216,0,0,0,53,2,2,1,-9,-9,2019,1,1,8,0,42,40,15,1,0,1,0,18.752653,18.752653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,55.799999,42.23,5,1,1,0,0,9,5,0,408,372545.81,0,0,4924.1367 -11909,14649,26594,26593,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,2,8.7887573,8.5499668,0,1,0,-9,4,0,-4,28.687279,0,0,0,57,2,3,1,3,3,2019,1,3,7,0,40,35,15,1,0,1,0,17.702711,17.702711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.799999,42.23,55.959999,49.93,3,1,1,0,0,9,5,0,408,372545.81,0,0,4924.1367 -11910,14650,26595,26596,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,3,8.2998905,7.9894609,0,1,0,-9,17,0,-16,56.115902,0,0,0,61,1,1,3,1,3,2019,2,1,10,2,39,44,15,1,0,3,0,9.9761658,9.9761658,0,0,0,0,0,0,0,0,1,1,0,9.6485643,0,0,0,38.639999,55.029999,34.529999,22.129999,3,1,1,0,1,4,3,1,339,577826,0,0,10312.921 -11910,14650,26596,26595,-9,-9,1,1,1,61,1,0,0,0,1,-9,8,3,1,1,1,0,0,0,1,0,-9,17,0,16,41.185612,0,0,0,45,1,3,1,2,1,2019,3,2,22,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.529999,22.129999,38.639999,55.029999,1,1,1,0,1,4,3,1,339,577826,0,0,10312.921 -11911,14651,26597,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1070.9207,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.700001,26.67,-9,-9,6,1,1,0,0,10,1,0,907,274345.41,0,0,710.7561 -11912,14652,26598,26599,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,-17,0,0,0,0,85,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.57,48.950001,51.240002,42.799999,7,3,4,0,0,8,1,0,777,1649597.8,0,0,465.578 -11912,14652,26599,26598,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,17,0,0,0,0,68,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,42.799999,58.57,48.950001,7,3,4,0,0,8,1,0,777,1649597.8,0,0,465.578 -11913,14653,26600,26601,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,0,4,8.578722,8.6341791,0,2,0,-9,3,0,-1,-50.833534,0,0,1,34,1,4,1,1,1,2019,1,3,8,0,30,30,15,1,0,1,0,22.53146,22.53146,0,0,0,0,0,0,0,0,1,1,0,5.7057228,0,0,0,46.98,59.349998,50,57,6,1,1,0,0,10,5,1,767.5,626453.38,0,0,4734.0762 -11913,14653,26601,26600,-9,-9,3,1,1,34,1,1,2,0,1,-9,2,1,0,0,4,8.3170357,8.6165037,0,2,0,-9,3,0,1,-72.141594,0,0,0,33,1,4,1,-9,-9,2019,1,1,10,1,37,43,15,1,0,1,0,15.86018,15.86018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,46.98,59.349998,5,4,5,0,0,10,5,1,767.5,626453.38,0,0,4734.0762 -11913,14653,26602,-9,26600,26601,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.0854,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,767.5,626453.38,0,0,4734.0762 -11913,14653,26603,-9,26600,-9,2,1,0,11,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.6896,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,767.5,626453.38,0,0,4734.0762 -11914,14654,26604,26605,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,7.9650364,7.8575239,0,1,0,-9,10,0,0,111.72403,0,0,0,55,3,2,1,3,3,2019,1,1,11,2,30,30,15,1,0,1,0,10.133231,10.133231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.619999,43.189999,55.049999,38.470001,4,1,1,0,0,12,4,0,508,20639.594,0,0,2919.509 -11914,14654,26605,26604,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,2,8.3737726,8.121191,4.4290142,1,0,-9,10,0,0,-7.0870256,0,0,0,55,2,2,1,3,3,2019,1,2,10,1,40,40,15,1,0,1,0,11.414428,11.414428,0,0,0,0,0,0,0,0,0,0,0,1.4351494,4.6846437,0,0,55.049999,38.470001,42.619999,43.189999,4,1,1,0,0,12,4,0,508,20639.594,0,0,2919.509 -11915,14655,26606,-9,26609,26610,5,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.9797,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,1,0,1316.2,3089.2227,0,0,2210.6001 -11915,14655,26607,-9,26609,26610,3,1,1,5,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.43225,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,1,0,1316.2,3089.2227,0,0,2210.6001 -11915,14655,26608,-9,26609,26610,6,1,1,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-983.40729,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,1,0,1316.2,3089.2227,0,0,2210.6001 -11915,14655,26609,26610,-9,-9,1,1,0,29,1,2,4,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,4,0,1,0,0,1,1,28,2,5,3,3,-9,2019,4,4,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.82,42.639999,60.02,56.419998,7,1,1,0,0,4,1,0,1316.2,3089.2227,0,0,2210.6001 -11915,14655,26610,26609,-9,-9,4,1,1,28,1,2,4,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,4,0,-1,0,0,1,0,29,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,54.82,42.639999,7,1,1,1,0,4,1,0,1316.2,3089.2227,0,0,2210.6001 -11916,14656,26611,26612,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,5,8.7047338,9.0666618,0,2,0,-9,30,0,-2,6.6131425,-9,0,0,51,1,3,1,2,-9,2019,1,2,0,0,37,0,15,1,0,1,0,28.567457,28.567457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,44.630001,47.029999,6,4,2,0,0,6,5,0,419.5,3416805.5,0,0,6192.5024 -11916,14656,26612,26611,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,8.8906202,8.8087292,0,2,0,-9,23,0,2,5.1935906,-9,0,0,49,1,5,1,2,2,2019,1,1,11,0,45,0,15,1,0,1,0,20.85821,20.85821,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,44.630001,47.029999,57.060001,57.759998,4,4,2,0,0,6,5,0,419.5,3416805.5,0,0,6192.5024 -11917,14657,26613,-9,26616,26618,5,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.1063,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,9,5,1,810.83331,2840251.8,0,0,5723.7393 -11917,14657,26614,-9,26616,26618,6,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.80219,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,9,5,1,810.83331,2840251.8,0,0,5723.7393 -11917,14657,26615,-9,26616,26618,3,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.44983,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,9,5,1,810.83331,2840251.8,0,0,5723.7393 -11917,14657,26616,26618,-9,-9,2,1,0,42,1,0,4,0,1,-9,2,1,0,0,4,8.4656143,8.4467535,0,2,0,-9,23,0,-11,97.182823,0,0,1,53,1,4,1,2,2,2019,1,1,9,0,25,20,15,1,0,1,0,22.699417,22.699417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,57.16,56.150002,6,3,4,0,0,9,5,1,810.83331,2840251.8,0,0,5723.7393 -11917,14657,26617,-9,26616,26618,4,1,1,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.26764,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,9,5,1,810.83331,2840251.8,0,0,5723.7393 -11917,14657,26618,26616,-9,-9,1,1,1,53,1,0,4,0,1,-9,2,1,0,0,4,9.7737923,9.3259592,0,2,0,-9,21,0,11,42.724258,0,0,0,42,1,4,1,3,3,2019,1,2,8,0,60,60,15,1,0,1,0,29.686007,29.686007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.240002,58.84,6,3,4,0,0,9,5,1,810.83331,2840251.8,0,0,5723.7393 -11918,14658,26619,-9,26622,26621,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.25763,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,1,1,613.75,204856.72,0,0,23.177904 -11918,14658,26620,-9,26622,26621,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.7052,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,1,613.75,204856.72,0,0,23.177904 -11918,14658,26621,26622,-9,-9,2,1,1,42,1,0,2,0,1,-9,3,3,0,0,2,0,0,0,2,0,-9,15,0,3,0,0,0,0,39,1,3,3,2,1,2019,4,1,23,8,0,37,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.42,60.009998,47.07,53.970001,2,1,1,1,1,12,1,1,613.75,204856.72,0,0,23.177904 -11918,14658,26622,26621,-9,-9,1,1,0,39,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,-3,0,0,0,1,42,1,2,3,2,2,2019,4,2,14,2,0,23,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.970001,23.42,60.009998,3,1,1,0,0,12,1,1,613.75,204856.72,0,0,23.177904 -11919,14659,26623,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,0,5,8.2552929,8.4673223,0,3,0,0,0,-9,0,-1058.4735,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,9.1331396,9.1331396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,11,4,0,1295,-106270.18,0,0,1134.8457 -11920,14660,26624,26625,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.9501042,7.9588056,0,1,0,-9,8,0,2,24.484491,0,0,0,47,2,3,1,2,2,2019,1,2,12,0,45,34,15,1,0,1,0,5.5587568,5.5587568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,52,54.509998,5,1,1,0,0,4,5,1,506.5,90815.484,0,0,2797.9858 -11920,14660,26625,26624,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,8.4354944,8.3662224,0,1,0,-9,8,0,-2,22.221941,0,0,0,49,2,3,1,1,2,2019,1,1,8,0,48,45,15,1,0,1,0,11.99434,11.99434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,52,54.509998,6,1,1,0,0,4,5,1,506.5,90815.484,0,0,2797.9858 -11921,14661,26626,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,0,3,0,6.6120787,7.0384798,3,0,0,0,-9,0,-1010.1205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9337318,6.6244912,0,0,60.889999,44.939999,-9,-9,7,1,1,0,0,13,2,1,651,-55573.027,0,0,1920.0162 -11922,14662,26627,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,0,2,0,5.2526269,5.2817826,3,0,0,0,-9,0,-887.86237,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3547421,0,0,53.619999,16.43,-9,-9,5,1,1,0,0,2,2,0,341,251924.64,0,0,925.9679 -11923,14663,26628,26629,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,4.7021084,4.693078,1,0,-9,53,0,-2,40.451092,0,0,0,74,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3918982,0,0,58.150002,52.91,55.93,52.619999,6,1,1,0,0,5,2,1,152,289043.56,0,0,1614.8546 -11923,14663,26629,26628,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.6286435,7.0568075,1,0,-9,53,0,2,-24.959938,0,0,0,72,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4347205,7.3522501,0,0,55.93,52.619999,58.150002,52.91,6,1,1,0,0,5,2,1,152,289043.56,0,0,1614.8546 -11924,14664,26630,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,1,1,0,0,5,6.3629575,6.7229514,0,3,0,0,0,-9,0,-1022.338,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,15,15,15,1,0,-9,0,3.8329513,3.8329513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,51.150002,-9,-9,1,3,4,0,0,8,2,1,948,-311568.69,0,0,993.25861 -11925,14665,26631,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,0,3,9.3599081,9.1103086,0,3,0,0,0,-9,0,-855.46582,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,43,38,15,1,0,-9,0,31.425936,31.425936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,4,1,1,0,0,8,5,1,1381,315852.22,0,0,2640.4927 -11926,14666,26632,26633,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,0,0,0,0,0,61,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6813996,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,5,1,1,815.5,363696.75,0,0,429.64505 -11926,14666,26633,26632,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,41,0,0,0,0,0,0,61,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3029566,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,5,1,1,815.5,363696.75,0,0,429.64505 -11927,14667,26634,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,5.8697281,6.4349465,4.6734252,3,0,0,0,-9,0,-966.42169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,6,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.169873,4.503418,0,0,47.889999,56.25,-9,-9,5,1,1,0,0,12,2,1,691,271630.63,0,0,1485.2981 -11928,14668,26635,26636,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,3,0,5.7023335,5.7128568,1,0,-9,53,0,-3,-98.607918,0,0,0,77,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,16.12311,0,20.629534,0,0,82.385406,0,1,1,0,5.694973,5.842453,0,0,51,46,53,46,5,1,1,0,0,10,2,1,1414,773218.25,0,0,472.56186 -11928,14668,26636,26635,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,5.2494793,5.1902666,1,0,-9,53,0,3,-28.892532,0,0,0,74,3,3,3,-9,-9,2019,4,1,34,12,0,0,15,4,1,4,0,0,0,1,25.871134,0,5.8882375,0,7.402935,255.0784,0,1,1,0,5.4294395,5.4176631,0,0,53,46,51,46,1,1,1,0,0,10,2,1,1414,773218.25,0,0,472.56186 -11929,14669,26637,26639,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,7.5619755,7.2332277,0,2,0,-9,9,0,-6,-38.571804,0,0,1,45,2,3,1,1,2,2019,1,1,10,0,23,15,15,1,0,1,0,10.323943,10.323943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,29.030001,58.400002,5,4,2,0,0,6,3,1,215.66667,135588.36,0,0,2683.907 -11929,14669,26638,-9,26637,26639,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.4226,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,6,3,1,215.66667,135588.36,0,0,2683.907 -11929,14669,26639,26637,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,7.893877,7.9585195,0,2,0,-9,9,0,6,-29.692343,0,0,0,39,1,4,1,-9,-9,2019,1,2,19,7,40,5,15,1,1,1,0,6.8686061,6.8686061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.030001,58.400002,55.790001,52.619999,3,1,1,0,0,6,3,1,215.66667,135588.36,0,0,2683.907 -11930,14670,26640,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,1,1,0,0,5,8.8695898,8.6599579,3.8641069,3,0,0,0,-9,0,-1215.9834,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,24.768639,24.768639,0,0,0,0,0,0,0,0,0,0,0,8.4957857,3.6120636,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,9,5,1,185,1353868.6,0,0,4211.002 -11931,14671,26641,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,0,2,8.2187462,8.1807823,0,3,0,0,0,-9,0,-998.29102,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,49,50,15,1,0,-9,0,8.2290831,8.2290831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.830002,54.389999,-9,-9,3,1,1,0,1,5,4,1,606,526916.56,0,0,778.58911 -11932,14672,26642,26643,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.7545214,9.0146828,0,1,0,-9,10,0,0,-10.448189,0,0,0,56,3,4,1,3,3,2019,1,1,15,5,43,38,15,1,1,1,0,12.441567,12.441567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.490002,58.84,48.869999,58.549999,6,1,1,0,0,9,5,1,1417,-74134.445,0,0,3498.5273 -11932,14672,26643,26642,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,0,4,8.2809792,8.2070522,0,1,0,-9,10,0,0,-11.7362,0,0,0,56,2,3,1,2,3,2019,1,2,11,0,24,40,15,1,0,1,0,19.886877,19.886877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,45.490002,58.84,6,1,1,0,0,9,5,1,1417,-74134.445,0,0,3498.5273 -11933,14673,26644,-9,26646,26645,1,1,0,35,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1010.0596,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,29,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,-9,-9,1,1,1,0,0,7,1,1,1668,91827.859,0,0,-407.98907 -11933,14674,26645,26646,-9,-9,3,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,7.7692785,7.5075145,0,1,0,-9,8,0,-6,-154.3037,0,0,0,67,2,3,3,-9,-9,2019,2,2,10,0,40,40,15,1,0,4,0,6.6744828,6.6744828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.549999,58.299999,54.779999,34.439999,6,1,1,0,1,7,3,1,237,-11156.094,0,0,1894.2562 -11933,14674,26646,26645,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,6,-67.609756,0,0,0,61,3,3,1,-9,-9,2019,3,3,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.779999,34.439999,46.549999,58.299999,5,1,1,0,0,7,3,1,237,-11156.094,0,0,1894.2562 -11934,14675,26647,26648,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,5.8757329,5.8183217,1,0,-9,49,0,-3,24.023954,0,0,0,71,1,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.7100112,5.9642639,15.402164,3,54.200001,57.490002,57.32,38.32,6,1,1,0,0,5,4,1,327,1458446.5,0,0,3841.3867 -11934,14675,26648,26647,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,8.409668,8.6507006,1,0,-9,11,0,3,37.166656,0,0,0,68,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.7279522,8.1945086,11.881412,3,57.32,38.32,54.200001,57.490002,6,1,1,0,0,5,4,1,327,1458446.5,0,0,3841.3867 -11934,14676,26649,-9,26647,26648,3,1,1,40,2,0,0,0,2,-9,2,1,0,0,3,9.3087111,9.3115568,0,3,0,0,0,-9,0,-998.74072,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,53,48,15,1,0,-9,1,19.384008,19.384008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.330002,49.84,-9,-9,6,1,1,0,0,5,5,1,1119,28784.1,0,0,3747.5298 -11934,14677,26650,-9,26647,26648,4,1,1,35,2,0,0,0,3,-9,97,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1029.2798,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.77092105,0,0,0,37.689999,50.540001,-9,-9,5,1,1,0,0,5,1,1,656,0,0,0,3016.3259 -11935,14678,26651,26652,-9,-9,1,1,0,85,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,61,0,0,103.21975,0,0,0,85,1,4,3,3,3,2019,4,2,24,8,0,0,15,4,1,4,0,0,0,1,0,120.29867,0,0,0,0,0,1,1,0,0,0,0,0,38.880001,43.029999,49.16,32.349998,6,1,1,0,0,6,3,1,2096,816334,0,0,3760.3772 -11935,14678,26652,26651,-9,-9,2,1,1,85,1,0,0,0,1,-9,4,3,0,0,4,0,8.3499584,8.1134472,1,0,-9,61,0,0,-197.01678,0,0,0,85,2,2,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,33.196156,25.333845,0,0,0,120,1,1,0,7.9960852,7.9385366,122.37495,2,49.16,32.349998,38.880001,43.029999,6,1,1,0,0,6,3,1,2096,816334,0,0,3760.3772 -11936,14679,26653,-9,26655,26654,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-871.21387,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,4,1,425,585815.31,0,0,3766.4927 -11936,14679,26654,26655,-9,-9,1,1,1,43,1,1,2,0,1,-9,2,1,0,0,4,8.7372408,9.0069475,0,2,0,-9,11,0,4,-87.886002,0,0,0,39,2,4,3,2,2,2019,2,2,7,0,40,40,15,1,0,3,0,19.271002,19.271002,0,0,0,0,0,0,0,0,1,1,0,3.9677899,0,0,0,60.119999,54.799999,57.16,56.150002,6,1,1,0,0,5,4,1,425,585815.31,0,0,3766.4927 -11936,14679,26655,26654,-9,-9,2,1,0,39,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-4,131.80688,0,0,1,43,1,4,1,2,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.194241,0,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,5,4,1,425,585815.31,0,0,3766.4927 -11936,14679,26656,-9,26655,26654,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.99799,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,425,585815.31,0,0,3766.4927 -11937,14680,26657,26658,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,9.2013426,8.8563194,0,2,0,-9,20,0,-8,8.1768475,0,0,0,53,1,2,1,-9,-9,2019,1,2,18,7,44,47,15,1,1,1,0,24.428459,24.428459,0,0,0,0,0,0,0,0,1,1,0,1.1183922,0,0,0,44.490002,61.790001,36.349998,55.389999,6,1,1,0,0,9,5,1,350,910373.94,0,0,3411.2058 -11937,14680,26658,26657,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,0,2,7.4781737,7.3076,0,2,0,-9,20,0,8,-14.281889,0,0,0,45,1,4,1,3,3,2019,1,1,14,3,5,0,15,1,0,1,0,44.41291,44.41291,0,0,0,0,0,0,0,0,1,1,0,.87292421,0,0,0,36.349998,55.389999,44.490002,61.790001,3,3,4,0,0,9,5,1,350,910373.94,0,0,3411.2058 -11937,14680,26659,-9,26657,26658,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.68781,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,9,5,1,350,910373.94,0,0,3411.2058 -11937,14680,26660,-9,26657,26658,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.96667,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,9,5,1,350,910373.94,0,0,3411.2058 -11938,14681,26661,26662,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.929688,7.9896607,7.0669994,1,0,-9,26,0,-6,28.659399,0,0,0,67,2,3,1,2,1,2019,1,1,15,3,21,14,15,1,0,1,0,15.436283,15.436283,0,0,0,0,0,0,0,0,1,1,0,5.5774574,7.1859293,0,0,40.880001,59.720001,57.91,46.310001,5,1,1,0,0,12,5,1,319,488828.84,0,0,4023.7676 -11938,14681,26662,26661,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,7.9211617,8.0363216,7.2535191,1,0,-9,29,0,6,91.667557,0,0,0,61,2,3,1,-9,2,2019,1,2,10,0,17,23,15,1,0,1,0,14.583113,14.583113,0,0,0,0,0,0,0,0,1,1,0,6.3777251,7.6431451,0,0,57.91,46.310001,40.880001,59.720001,6,1,1,0,0,12,5,1,319,488828.84,0,0,4023.7676 -11939,14682,26663,26664,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,7.6749706,7.537364,0,1,0,-9,7,0,-2,114.02476,0,0,0,55,2,2,1,3,3,2019,1,1,8,0,20,20,15,1,0,1,0,14.27352,14.27352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,58.139999,42.540001,4,1,1,0,0,6,4,1,406,-6143.5234,0,0,1791.9558 -11939,14682,26664,26663,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,8.0580378,7.9965668,0,1,0,-9,7,0,2,-109.19094,0,0,0,53,3,3,1,3,3,2019,1,2,12,1,38,40,15,1,0,1,0,8.7508001,8.7508001,0,0,0,0,0,0,0,0,0,0,0,3.9854374,0,0,0,58.139999,42.540001,52,54.509998,6,1,1,0,0,6,4,1,406,-6143.5234,0,0,1791.9558 -11940,14683,26665,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,4,0,6.5076199,6.4688921,3,0,0,0,-9,0,-1005.5813,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.34208599,6.5407352,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,9,2,1,386,365975.84,0,0,1147.4398 -11941,14684,26666,26667,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.3218093,7.4551797,1,0,-9,6,0,-5,-142.95047,0,0,0,74,3,3,3,3,2,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,7.0077448,64.965477,1,42.939999,45.41,53,46,2,1,1,0,0,13,2,1,465.5,426220.19,0,0,2071.1155 -11941,14684,26667,26666,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,1,3,0,2.5093811,2.4810131,1,0,-9,6,0,5,-4.0992608,0,0,0,69,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,13.224079,16.335382,0,0,0,0,0,1,1,0,0,2.5959001,0,0,53,46,42.939999,45.41,6,1,1,0,0,13,2,1,465.5,426220.19,0,0,2071.1155 -11942,14685,26668,26670,-9,-9,1,1,0,37,1,1,2,0,2,-9,2,1,0,0,4,7.097199,7.2555208,0,2,0,-9,8,0,-2,60.997387,0,0,1,39,1,3,1,2,1,2019,1,2,23,11,18,18,15,1,1,1,0,6.3278661,6.3278661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.099998,57.740002,43.82,6,1,1,0,1,10,4,0,538,269074.38,0,0,2749.4368 -11942,14685,26669,-9,26668,26670,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.95062,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,0,538,269074.38,0,0,2749.4368 -11942,14685,26670,26668,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,0,3,8.7085361,8.7970438,0,2,0,-9,8,0,2,30.153767,0,0,0,37,2,4,1,-9,-9,2019,1,1,13,1,42,46,15,1,0,1,0,22.107828,22.107828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.740002,43.82,31.77,61.099998,6,1,1,0,0,10,4,0,538,269074.38,0,0,2749.4368 -11942,14685,26671,-9,26668,26670,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.4187,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,0,538,269074.38,0,0,2749.4368 -11943,14686,26672,-9,-9,-9,1,1,0,81,2,0,0,0,3,-9,4,3,0,1,3,0,5.8893871,5.7059913,3,0,0,0,-9,0,-925.07166,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,4.5408812,0,0,0,0,60.583542,0,1,1,0,0,6.1890426,0,0,37.099998,39.869999,-9,-9,6,1,1,0,0,10,2,0,1200,253513.64,0,0,480.46814 -11944,14687,26673,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,4,3,0,0,1,0,7.1333151,7.3996472,3,0,0,0,-9,0,-862.76007,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3396554,6.985671,0,0,35.07,32.790001,-9,-9,2,1,1,0,0,6,2,1,618,294720.34,0,0,1306.5077 -11945,14688,26674,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,3,8.3954372,8.3044825,0,3,0,0,0,-9,0,-1023.428,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,56,39,15,1,0,-9,0,6.701623,6.701623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.450001,57.490002,-9,-9,5,1,1,0,0,5,4,1,719,38948.383,0,0,1551.7125 -11946,14689,26675,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,3,0,7.8625484,7.8772764,3,0,0,0,-9,0,-947.13159,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2372751,7.8857627,0,0,54,44,-9,-9,6,1,1,0,0,9,3,1,501,571722.19,0,0,2758.5771 -11947,14690,26676,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,1,1,8.1140852,7.9328265,0,3,0,0,0,-9,0,-852.49615,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,34,12,20,38,15,1,1,-9,0,19.89106,19.89106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.8699999,51.09,-9,-9,1,1,1,0,0,5,4,1,450,-52318.656,0,0,1172.9163 -11948,14691,26677,26678,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,41,-9,9,0,-9,0,0,67,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,1,0,0,0,13.687004,0,0,0,1,1,0,0,0,0,0,52,47,49,48,5,2,3,0,0,8,1,1,443.5,529922.94,0,0,1182.3868 -11948,14691,26678,26677,-9,-9,2,1,0,67,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,41,-9,0,0,-9,0,0,76,3,3,3,3,3,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,1,0,1.1747729,0,2.6148117,0,0,0,1,1,0,0,0,0,0,49,48,52,47,5,2,3,0,0,8,1,1,443.5,529922.94,0,0,1182.3868 -11949,14692,26679,-9,26680,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.61414,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,4,3,1,311,22815.033,0,0,2096.2109 -11949,14692,26680,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,2,1,0,0,5,8.3379631,8.5190134,0,4,0,0,0,-9,0,-1017.9811,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,32,30,15,1,0,-9,0,19.284634,19.284634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,4,3,1,311,22815.033,0,0,2096.2109 -11949,14693,26681,-9,26680,-9,2,1,1,20,3,0,2,0,2,-9,2,1,0,0,4,7.5222697,7.5391102,0,3,0,0,0,-9,0,-970.6991,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,40,38,15,1,1,-9,1,4.1453352,4.1453352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.060001,62.040001,-9,-9,5,1,1,0,0,4,3,1,594,-138731.92,0,0,1073.3053 -11949,14694,26682,-9,26680,-9,3,1,1,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1051.9664,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,4,3,1,191,0,0,0,0 -11950,14695,26683,26684,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-5,93.170906,0,0,0,73,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.0488024,3,59.07,43.049999,50.740002,44.07,7,1,1,0,0,12,2,1,502,247575.91,0,0,1155.877 -11950,14695,26684,26683,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,1,4,0,5.5932503,5.3257089,1,0,-9,51,0,5,103.8075,0,0,0,68,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2463441,5.7535739,0,0,50.740002,44.07,59.07,43.049999,5,1,1,0,0,12,2,1,502,247575.91,0,0,1155.877 -11951,14696,26685,-9,26686,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,1,1,7.8817019,8.1637955,7.0165472,3,0,0,0,-9,0,-1008.8503,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,12,50,48,15,1,1,-9,1,7.7996087,7.7996087,0,0,0,0,0,0,0,27.5,1,1,0,7.3809733,6.802752,23.39098,3,37.740002,19.51,-9,-9,5,1,1,0,0,4,4,0,398,968597.38,0,0,2317.9849 -11951,14697,26686,-9,-9,-9,2,1,0,80,3,0,0,0,3,-9,4,3,0,1,2,0,6.6493626,6.3182573,3,0,0,0,-9,0,-897.20935,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4319348,6.5667963,0,0,48.200001,20.190001,-9,-9,4,1,1,0,0,4,2,0,4925,227215.91,0,0,2033.6211 -11952,14698,26687,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.9044695,7.9502058,0,3,0,0,0,-9,0,-1017.5965,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,38,4,15,1,0,-9,0,9.7502785,9.7502785,0,0,0,0,0,0,0,0,0,0,0,1.8561493,0,0,0,53.450001,49.529999,-9,-9,4,1,1,0,0,7,4,0,364,-176505.7,0,0,2111.6472 -11953,14699,26688,-9,26691,26689,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.23724,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,11,5,1,491.25,137154.73,0,0,6542.8706 -11953,14699,26689,26691,-9,-9,2,1,1,36,1,0,2,0,2,-9,1,1,0,1,3,9.2469969,9.5010014,0,2,0,-9,8,0,0,-.6269387,0,0,0,36,2,3,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,40.888283,40.888283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,45.27,52.060001,5,2,3,0,0,11,5,1,491.25,137154.73,0,0,6542.8706 -11953,14699,26690,-9,26691,26689,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-990.18512,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,11,5,1,491.25,137154.73,0,0,6542.8706 -11953,14699,26691,26689,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,3,7.6273937,7.6335268,0,2,0,-9,17,0,0,302.09286,0,0,1,36,2,3,1,2,3,2019,1,2,11,0,20,20,15,1,0,1,0,11.074202,11.074202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,52.060001,54.369999,54.799999,3,2,3,0,0,11,5,1,491.25,137154.73,0,0,6542.8706 -11954,14700,26692,26693,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.6151776,7.5728102,1,0,-9,52,0,-1,71.334419,0,0,0,72,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5558591,0,0,57.919998,51.82,53.709999,49.66,6,1,1,0,0,2,2,1,1844.5,1053678.4,0,0,2583.6846 -11954,14700,26693,26692,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,1,-119.84335,0,0,0,71,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4789183,0,0,0,53.709999,49.66,57.919998,51.82,5,1,1,0,0,2,2,1,1844.5,1053678.4,0,0,2583.6846 -11955,14701,26694,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,4,8.4010687,8.3882704,0,3,0,0,0,-9,0,-955.07861,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,45,50,15,1,0,-9,0,9.6226883,9.6226883,0,0,0,0,0,0,0,0,0,0,0,8.853549,0,0,0,55.790001,52.619999,-9,-9,6,1,1,0,0,10,4,1,455,503256.19,0,0,4256.3403 -11956,14702,26695,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,2,8.3469801,7.8559923,0,3,0,0,0,-9,0,-931.00092,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,10,35,38,15,1,1,-9,0,12.191191,12.191191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.200001,46.349998,-9,-9,2,1,1,0,1,6,4,0,387,78481.016,0,0,2002.2644 -11957,14703,26696,26699,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,0,4,8.0162525,7.7789369,0,2,0,-9,14,0,-2,-79.895576,0,0,1,45,1,4,1,-9,-9,2019,1,2,3,0,28,0,15,1,0,1,0,13.261724,13.261724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.799999,56.68,51,56,6,1,1,0,0,12,5,1,791.40002,552683.13,0,0,6152.5889 -11957,14703,26697,-9,26696,26699,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.12079,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,791.40002,552683.13,0,0,6152.5889 -11957,14703,26698,-9,26696,26699,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-997.66418,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,12,5,1,791.40002,552683.13,0,0,6152.5889 -11957,14703,26699,26696,-9,-9,2,1,1,45,1,0,3,0,1,-9,2,1,0,0,4,9.5976639,9.5912819,0,2,0,-9,8,0,2,81.463951,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,1,35,35,15,1,0,1,0,52.10675,52.10675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,49.799999,56.68,5,1,1,0,0,12,5,1,791.40002,552683.13,0,0,6152.5889 -11957,14703,26700,-9,26696,26699,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.8147,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,791.40002,552683.13,0,0,6152.5889 -11958,14704,26701,26702,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,9.1832695,9.1345081,0,1,0,-9,38,0,2,-86.606163,0,0,0,56,2,3,3,-9,2,2019,2,1,6,0,54,42,15,1,0,3,0,23.849703,23.849703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,53.610001,52.369999,6,1,1,0,0,6,5,1,450.5,887002.19,0,0,3462.6836 -11958,14704,26702,26701,-9,-9,1,1,0,56,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,38,0,-2,99.057175,0,0,0,58,2,3,1,-9,-9,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,6.0258017,3,53.610001,52.369999,58.32,50.220001,6,1,1,1,0,6,5,1,450.5,887002.19,0,0,3462.6836 -11959,14705,26703,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-988.77661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7475805,0,0,0,41.740002,57.700001,-9,-9,5,1,1,0,0,10,1,0,754,96748.211,0,0,427.16583 -11960,14706,26704,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-918.07202,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,-9,-9,7,4,2,1,0,6,1,0,521,0,0,0,1568.7877 -11961,14707,26705,26706,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.677319,6.7094703,1,0,-9,34,0,-13,92.197693,0,0,0,78,1,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9016933,0,0,57.16,56.150002,53.139999,51.279999,6,1,1,0,0,10,3,1,656.5,858594.75,0,0,2925.395 -11961,14707,26706,26705,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,7.5330849,7.6092386,1,0,-9,34,0,13,40.819393,0,0,0,65,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.648624,7.564126,0,0,53.139999,51.279999,57.16,56.150002,6,1,1,0,0,10,3,1,656.5,858594.75,0,0,2925.395 -11962,14708,26707,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,7,2,0,0,2,0,4.3761721,4.2482638,3,0,0,0,-9,0,-1053.855,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,28,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.885493,0,0,0,31.639999,54.919998,-9,-9,4,1,1,0,0,8,2,0,1062,124644.51,0,0,102.60199 -11963,14709,26708,26709,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.0448818,7.8650174,0,1,0,-9,9,0,1,55.51223,0,0,0,56,3,2,1,-9,-9,2019,1,1,10,1,48,40,15,1,0,1,0,8.569602,8.569602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,45.040001,33.509998,5,1,1,0,0,4,4,1,1032,-5504.3262,0,0,1693.901 -11963,14709,26709,26708,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,0,2,7.9738884,7.4374976,0,1,0,-9,23,0,-1,46.776066,0,0,0,57,2,3,1,3,3,2019,1,2,17,6,20,34,15,1,1,1,0,14.314575,14.314575,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,45.040001,33.509998,50,49,6,1,1,0,0,4,4,1,1032,-5504.3262,0,0,1693.901 -11963,14710,26710,-9,26709,26708,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.2796688,7.6186738,0,3,0,0,0,-9,0,-1058.6863,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,38,15,1,0,-9,1,4.6966105,4.6966105,0,0,0,0,0,0,0,0,0,0,0,2.0140343,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,4,3,1,598,0,0,0,2406.1382 -11964,14711,26711,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,1,2,0,0,0,3,0,-9,0,1,0,-1026.6075,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.880001,33.950001,-9,-9,2,1,1,0,0,8,1,0,194,1126251.3,0,0,2130.7856 -11965,14712,26712,26713,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,5.2014542,4.8163118,1,0,-9,9,0,1,-149.42184,0,0,0,74,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3348339,5.4066586,0,0,64,38.07,62.490002,55.09,7,1,1,0,0,8,4,1,1079,1816564.8,0,0,4740.0557 -11965,14712,26713,26712,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,0,4,6.8853431,8.7412148,8.4747887,1,0,-9,53,0,-1,-83.716705,0,0,0,75,2,3,3,2,1,2019,4,2,6,0,3,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.8225636,8.5158787,0,0,62.490002,55.09,64,38.07,7,1,1,0,0,8,4,1,1079,1816564.8,0,0,4740.0557 -11966,14713,26714,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,5.6183052,5.9024,3,0,0,0,-9,0,-970.76666,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1818814,5.7858782,0,0,57.57,49.689999,-9,-9,2,1,1,0,0,12,2,1,181,23301.404,0,0,1512.6703 -11967,14714,26715,26716,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,5.0686693,5.3725796,1,0,-9,7,0,-3,87.643936,0,0,0,67,2,3,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6252084,5.1167088,0,0,48.23,50.709999,54.959999,53.169998,1,1,1,0,0,8,2,1,905.5,829060.13,0,0,2457.9897 -11967,14714,26716,26715,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.7180929,6.5775352,1,0,-9,7,0,3,-.98703396,0,0,0,64,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4834123,6.9016881,0,0,54.959999,53.169998,48.23,50.709999,7,1,1,0,0,8,2,1,905.5,829060.13,0,0,2457.9897 -11968,14715,26717,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,7.1068645,7.0456481,3,0,0,0,-9,0,-973.39142,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2714372,7.0424328,0,0,38.740002,61.790001,-9,-9,6,1,1,0,0,13,2,1,1290,92065.359,0,0,-326.28333 -11969,14716,26718,-9,26719,-9,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-962.70264,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.59,59.060001,-9,-9,2,1,1,0,1,5,2,0,1678,-47693.258,0,0,2146.8914 -11969,14716,26719,-9,-9,-9,1,1,0,39,2,0,3,0,3,-9,2,1,0,0,2,7.1882186,7.4175367,5.5540624,4,0,0,0,-9,0,-895.28973,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,35,0,15,1,0,-9,0,4.4092498,4.4092498,0,0,0,0,0,0,0,0,1,1,0,5.2780452,0,0,0,33.720001,38.619999,-9,-9,4,1,1,0,0,5,2,0,1678,-47693.258,0,0,2146.8914 -11970,14717,26720,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,2,1,0,0,3,7.4046264,7.4979219,0,3,0,0,0,-9,0,-898.05023,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,30,30,15,1,0,-9,0,5.7963777,5.7963777,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.82,29.950001,-9,-9,3,1,1,0,0,11,3,1,1316,-9310.1748,0,0,1345.7538 -11971,14718,26721,26722,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.3970323,7.4433818,1,0,-9,10,0,1,88.279495,0,0,0,65,1,5,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1940417,7.530849,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,2,4,1,2648.5,2381015.5,0,0,3551.9902 -11971,14718,26722,26721,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,5,0,7.683785,7.84689,1,0,-9,48,0,-1,-40.15696,0,0,0,66,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7874022,7.8963695,.35788527,3,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,2,4,1,2648.5,2381015.5,0,0,3551.9902 -11972,14719,26723,26724,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,5,8.3752575,8.1220675,0,1,0,-9,1,-9,5,-57.04631,-9,0,0,40,1,2,1,-9,-9,2019,1,1,9,0,38,0,15,1,0,1,0,9.0616693,9.0616693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,40.59,37.459999,6,4,2,0,0,9,5,1,336,732947.19,0,0,4198.7241 -11972,14719,26724,26723,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,0,2,8.717103,8.9204931,0,1,0,1,1,-9,-5,-75.188774,0,0,1,45,1,5,1,2,2,2019,1,2,14,2,40,0,15,1,0,1,0,15.95341,15.95341,0,0,0,0,0,0,0,0,0,0,0,6.2449708,0,0,0,40.59,37.459999,51.73,58.82,5,1,1,0,0,9,5,1,336,732947.19,0,0,4198.7241 -11973,14720,26725,-9,26727,26728,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.28925,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,0,563.75,306513.63,0,0,3483.905 -11973,14720,26726,-9,26727,26728,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1154.1425,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,5,4,0,563.75,306513.63,0,0,3483.905 -11973,14720,26727,26728,-9,-9,1,1,0,30,1,1,2,0,1,-9,2,1,0,0,4,8.6208572,8.3409462,0,2,0,-9,7,0,-3,-66.77977,0,0,1,33,2,4,1,2,1,2019,1,2,11,2,47,0,15,1,0,1,0,10.269943,10.269943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,50,56,5,1,1,0,0,5,4,0,563.75,306513.63,0,0,3483.905 -11973,14720,26728,26727,-9,-9,2,1,1,33,1,1,2,0,2,-9,2,1,0,0,4,8.3175869,8.3694744,0,2,0,-9,7,0,3,31.591232,0,0,0,30,1,4,1,1,2,2019,1,1,10,1,45,60,15,1,0,1,0,12.540257,12.540257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,48,56,5,1,1,0,0,5,4,0,563.75,306513.63,0,0,3483.905 -11974,14721,26729,26730,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,5.9998922,6.0257187,1,0,-9,9,0,5,97.508728,0,0,0,60,2,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4937136,6.4418745,0,0,58.889999,45.900002,58.720001,51.290001,6,1,1,0,0,9,4,1,1308.5,1275231.3,0,0,3626.1138 -11974,14721,26730,26729,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.6744299,8.3988342,5.3518662,1,0,-9,9,0,-5,41.760628,0,0,0,65,3,3,3,2,2,2019,2,2,7,0,42,43,15,1,0,4,0,14.757198,14.757198,0,0,0,0,0,0,0,0,1,1,0,5.6135254,5.4037323,0,0,58.720001,51.290001,58.889999,45.900002,7,1,1,0,0,9,4,1,1308.5,1275231.3,0,0,3626.1138 -11975,14722,26731,-9,-9,-9,1,1,1,75,2,0,0,0,1,-9,4,3,0,0,5,0,8.4435358,8.6300325,3,0,0,0,-9,0,-1047.0715,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5823622,0,0,59.040001,54.119999,-9,-9,7,1,1,0,0,12,4,1,1501,984615.25,0,0,2721.7639 -11976,14723,26732,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1055.2113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,31.709999,19.27,-9,-9,2,1,1,0,1,9,1,0,844,-64093.086,0,0,206.21022 -11977,14724,26733,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,1,1,0,0,4,6.981432,6.8876595,4.9544382,3,0,0,0,-9,0,-918.53314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,4,0,15,1,0,-9,0,27.315456,27.315456,0,0,0,0,0,0,0,0,1,1,0,5.3602867,5.0155549,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,13,2,1,1289,245754.25,0,0,2307.9502 -11978,14725,26734,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,0,4,7.9191222,7.8676944,0,3,0,0,0,-9,0,-926.62958,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,36,35,15,1,0,-9,0,14.107924,14.107924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.529999,56.369999,-9,-9,5,3,4,0,0,8,4,0,3289,146078.55,0,0,2498.3237 -11979,14726,26735,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-999.61121,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.16,21.33,-9,-9,1,1,1,0,0,12,1,0,1343,0,0,0,2451.5154 -11980,14727,26736,26737,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,2,0,3.5334575,3.5506747,1,0,-9,7,0,-5,-48.239944,0,0,0,78,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.9355059,3.4100151,127.53556,1,38.310001,39.529999,41.369999,21.719999,2,1,1,0,0,2,1,1,859.5,287895.53,0,0,1236.0708 -11980,14727,26737,26736,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,1,0,3.4800477,3.6278985,1,0,-9,7,0,5,118.44936,0,0,0,73,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,36.561218,0,0,0,0,0,1,1,0,3.4305582,3.07342,0,0,41.369999,21.719999,38.310001,39.529999,3,1,1,0,0,2,1,1,859.5,287895.53,0,0,1236.0708 -11981,14728,26738,-9,-9,-9,1,1,0,61,2,0,0,0,3,-9,4,3,0,0,3,0,7.1957026,7.098947,3,0,0,0,-9,0,-922.60907,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5010037,7.1756835,0,0,64.150002,38.07,-9,-9,6,1,1,0,0,2,2,1,919,450007.31,0,0,574.07745 -11982,14729,26739,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,5.7451582,6.0531034,3,0,0,0,-9,0,-1114.3342,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8679376,4.5742664,0,0,57.34,42.720001,-9,-9,6,1,1,0,0,7,2,1,198,165157.31,0,0,1049.3046 -11983,14730,26740,26741,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,9.4796839,9.3062849,0,1,0,-9,30,0,3,-100.80232,0,0,0,53,2,2,1,2,-9,2019,1,1,11,2,35,37,15,1,0,1,0,37.455933,37.455933,0,0,0,0,0,0,0,2,0,0,0,0,0,1.4794271,3,47.439999,51.529999,42.110001,34.75,5,1,1,0,0,10,5,1,1073,1194412.8,0,0,5247.623 -11983,14730,26741,26740,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,9.0140743,8.8848238,0,1,0,-9,30,0,-3,14.659043,0,0,0,56,2,2,1,2,2,2019,1,2,25,10,46,40,15,1,1,1,0,18.273855,18.273855,0,0,0,0,0,0,0,2,0,0,0,0,0,2.1062627,3,42.110001,34.75,47.439999,51.529999,5,1,1,0,0,10,5,1,1073,1194412.8,0,0,5247.623 -11983,14731,26742,-9,26740,26741,3,1,1,25,2,0,0,0,1,1,2,1,0,0,3,7.181973,7.0393934,0,3,0,0,0,-9,0,-1130.5076,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1.2016263,0,9.6502295,3,40.779999,52.959999,-9,-9,2,1,1,0,0,10,2,1,111,-115209.23,0,0,-357.45557 -11984,14732,26743,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,0,4,8.2364178,8.1831465,0,1,0,-9,3,0,-2,6.4346519,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,8,0,40,48,15,1,0,-9,0,10.554214,10.554214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,38.259998,60.700001,6,1,1,0,0,7,5,1,547,76333.953,0,0,1628.0432 -11984,14733,26744,-9,-9,-9,2,1,1,39,2,0,0,0,2,-9,1,1,0,0,3,8.9135904,8.5914745,0,1,0,-9,3,0,2,-78.302315,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,14,3,53,0,15,1,0,-9,0,17.310589,17.310589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.259998,60.700001,54.200001,57.490002,6,1,1,0,0,7,5,1,364,500692.28,0,0,3268.0085 -11985,14734,26745,26746,-9,-9,1,1,1,87,1,0,0,0,2,-9,4,3,0,0,2,0,8.568574,8.6495047,1,0,-9,8,0,-2,5.4773464,0,0,0,89,2,4,3,2,2,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,1.4247639,0,0,0,0,0,1,1,0,3.3973494,8.7684364,0,0,31.92,27.68,53.439999,55.060001,5,1,1,0,0,12,4,1,2062.5,866758,0,0,3362.6067 -11985,14734,26746,26745,-9,-9,2,1,0,89,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,2,-78.09108,0,0,0,87,2,2,3,3,3,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.179697,1,53.439999,55.060001,31.92,27.68,7,1,1,0,0,12,4,1,2062.5,866758,0,0,3362.6067 -11986,14735,26747,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,7.0290112,6.9668846,3,0,0,0,-9,0,-1022.8655,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8326263,0,0,48.669998,44.130001,-9,-9,2,1,1,0,0,6,2,1,198,272587.34,0,0,1661.2686 -11987,14736,26748,26749,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,63,0,-2,37.50526,0,0,0,81,3,2,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.939999,21.610001,34.470001,18.35,4,1,1,0,0,7,2,1,232,571823.38,0,0,3196.2798 -11987,14736,26749,26748,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,1,2,0,7.0088387,7.21807,1,0,-9,63,0,2,-11.877171,0,0,0,79,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1250086,6.7902756,0,0,34.470001,18.35,53.939999,21.610001,6,1,1,0,0,7,2,1,232,571823.38,0,0,3196.2798 -11988,14737,26750,-9,-9,-9,1,1,0,85,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-973.68976,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.619999,41.349998,-9,-9,6,1,1,0,0,1,1,1,431,0,0,0,325.25259 -11989,14738,26751,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,7.8210487,7.7782989,0,3,0,0,0,-9,0,-997.26117,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,37,15,1,0,-9,0,9.085434,9.085434,0,0,0,0,0,0,0,0,0,0,0,.56069177,0,0,0,55.439999,52.990002,-9,-9,6,1,1,0,0,13,3,0,569,-74627.969,0,0,1323.2399 -11990,14739,26752,26753,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.2684965,6.3110499,1,0,-9,45,0,4,126.96383,0,0,0,66,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3337131,0,0,57.630001,45.09,25.92,54.34,6,1,1,0,1,9,2,1,635,801250,0,0,1997.6249 -11990,14739,26753,26752,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-4,76.678383,0,0,0,70,3,3,3,-9,-9,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.92,54.34,57.630001,45.09,3,1,1,0,1,9,2,1,635,801250,0,0,1997.6249 -11991,14740,26754,-9,26755,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1002.1736,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,1,0,647,32813.09,0,0,-21.507666 -11991,14740,26755,-9,-9,-9,1,1,0,39,3,0,2,0,3,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-920.10583,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.18,48.32,-9,-9,4,1,1,0,0,7,1,0,647,32813.09,0,0,-21.507666 -11991,14740,26756,-9,26755,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-871.04474,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,1,0,647,32813.09,0,0,-21.507666 -11992,14741,26757,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,2,0,7.9296508,7.7033477,3,0,0,0,-9,0,-1072.4896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.38519239,8.1144867,0,0,52.279999,34.380001,-9,-9,3,1,1,0,0,4,4,0,851,927643.69,0,0,2673.6772 -11993,14742,26758,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1019.7156,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60595757,0,0,0,29.98,35.049999,-9,-9,2,2,3,0,0,10,1,1,1026,15847.627,0,0,-1647.8928 -11994,14743,26759,-9,26760,26761,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1038.3914,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,8,5,1,1027.75,1712319.9,0,0,5088.2695 -11994,14743,26760,26761,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,9.0839691,9.201211,0,2,0,-9,22,0,-7,-20.771154,0,0,1,48,1,5,1,2,2,2019,1,2,17,6,49,49,15,1,1,1,0,19.089676,19.089676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,62.48,57.060001,57.759998,6,1,1,0,0,8,5,1,1027.75,1712319.9,0,0,5088.2695 -11994,14743,26761,26760,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,5,8.6802082,8.3650274,0,2,0,-9,19,0,7,-22.678673,0,0,0,41,1,4,1,-9,-9,2019,1,1,10,0,41,36,15,1,0,1,0,14.387313,14.387313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,38,62.48,6,1,1,0,0,8,5,1,1027.75,1712319.9,0,0,5088.2695 -11994,14743,26762,-9,26760,26761,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.49042,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,5,1,1027.75,1712319.9,0,0,5088.2695 -11995,14744,26763,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,3,9.5921412,9.6340656,0,3,0,0,0,-9,0,-961.56378,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,90,46,15,1,0,-9,0,16.234316,16.234316,0,0,0,0,0,0,0,0,0,0,0,8.1013412,0,0,0,49.040001,55.860001,-9,-9,4,1,1,0,0,8,5,0,168,65754.523,0,0,5126.7158 -11996,14745,26764,26765,-9,-9,2,1,1,29,1,2,4,0,2,-9,1,1,0,0,4,8.8849325,8.3643017,0,2,0,-9,7,0,2,80.940598,0,1,0,27,2,5,3,-9,-9,2019,2,1,10,1,45,30,15,1,0,3,0,14.767381,14.767381,0,0,0,0,0,0,0,0,1,1,0,2.3684671,0,0,0,49,58,49.25,61.25,5,1,1,0,0,11,3,1,809.59998,3272.769,0,0,3575.4277 -11996,14745,26765,26764,-9,-9,1,1,0,27,1,2,4,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,7,0,-2,-.30463645,0,1,1,29,2,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2428732,0,0,0,49.25,61.25,49,58,6,1,1,0,0,11,3,1,809.59998,3272.769,0,0,3575.4277 -11996,14745,26766,-9,26765,26764,3,1,0,6,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.14819,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,1,809.59998,3272.769,0,0,3575.4277 -11996,14745,26767,-9,26765,26764,6,1,0,1,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.3239,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,1,809.59998,3272.769,0,0,3575.4277 -11996,14745,26768,-9,26765,26764,5,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-856.5368,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,1,809.59998,3272.769,0,0,3575.4277 -11997,14746,26769,-9,26770,26771,5,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-827.04102,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,2,3,0,0,8,1,0,1278,135024.36,0,0,1261.7716 -11997,14746,26770,26771,-9,-9,1,1,0,43,1,0,2,0,3,-9,2,1,0,0,3,0,0,0,2,0,-9,16,0,-2,0,0,0,1,45,3,3,1,2,1,2019,1,2,13,2,0,3,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.869999,44.580002,38.16,44.66,5,2,3,0,0,8,1,0,1278,135024.36,0,0,1261.7716 -11997,14746,26771,26770,-9,-9,2,1,1,45,1,0,2,0,3,-9,2,1,0,0,3,0,0,0,2,0,-9,16,0,2,0,-9,0,0,43,3,3,1,2,2,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.16,44.66,40.869999,44.580002,5,2,3,0,0,8,1,0,1278,135024.36,0,0,1261.7716 -11997,14747,26772,-9,26770,26771,3,1,0,22,2,0,2,1,2,0,7,2,0,0,4,6.4284234,6.5093327,0,3,0,0,0,-9,0,-1018.9751,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,21,8,18,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.16,48.16,-9,-9,4,2,3,0,0,8,2,0,597,125190.56,0,0,508.45773 -11998,14748,26773,-9,-9,-9,1,1,0,38,3,0,3,0,3,-9,2,1,0,0,4,6.7835698,6.7672238,0,4,0,0,0,-9,0,-897.1192,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,16,0,15,1,0,-9,0,7.5986242,7.5986242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,5,2,3,0,1,8,2,0,359.33334,-90900.914,0,0,1579.6354 -11998,14748,26774,-9,26773,-9,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-894.75348,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,2,0,359.33334,-90900.914,0,0,1579.6354 -11998,14748,26775,-9,26773,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.1978,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,2,0,359.33334,-90900.914,0,0,1579.6354 -11999,14749,26776,26777,-9,-9,2,1,0,53,1,0,1,0,3,-9,2,1,0,0,4,8.5632181,8.4444742,0,2,0,-9,21,0,0,-78.574722,0,0,0,53,2,1,1,2,2,2019,1,1,10,0,35,36,15,1,0,1,0,17.294735,17.294735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.060001,62.040001,45.52,26.860001,7,1,1,0,0,12,5,1,317,564595.88,0,0,3981.2571 -11999,14749,26777,26776,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,1,8.653676,8.292079,0,2,0,-9,21,0,0,81.026848,0,0,0,53,3,4,1,2,2,2019,1,2,21,9,40,50,15,1,1,1,0,16.546791,16.546791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.52,26.860001,41.060001,62.040001,3,1,1,0,0,12,5,1,317,564595.88,0,0,3981.2571 -11999,14749,26778,-9,26776,26777,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.09686,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,317,564595.88,0,0,3981.2571 -12000,14750,26779,26780,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.486105,8.6352692,0,1,0,-9,29,0,-1,21.309298,0,0,0,50,2,1,3,3,2,2019,2,1,7,0,37,39,15,1,0,3,0,17.260471,17.260471,0,0,0,0,0,0,0,7,1,1,0,0,0,10.014441,1,57.16,56.150002,45.919998,36.220001,7,2,3,0,0,5,4,1,1002,689681.88,0,0,3331.8826 -12000,14750,26780,26779,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,30,0,1,-87.814148,0,0,0,49,2,4,1,3,1,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.919998,36.220001,57.16,56.150002,1,4,2,0,0,5,4,1,1002,689681.88,0,0,3331.8826 -12000,14751,26781,-9,26780,26779,3,1,1,24,2,0,0,0,2,-9,1,1,0,0,5,4.8482146,4.6212969,0,3,0,0,0,-9,0,-922.24634,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,6,0,15,1,0,-9,1,2.6837673,2.6837673,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.68392,3,62.389999,56.709999,-9,-9,6,4,2,0,0,5,2,1,843,-95091.734,0,0,505.99362 -12001,14752,26782,26783,-9,-9,1,1,0,50,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,32,0,-5,-26.871567,0,0,0,55,2,4,1,3,3,2019,3,2,17,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.49606374,0,0,0,43.18,14.61,53,54,3,2,3,0,0,8,3,1,437,214824.19,0,0,2772.8687 -12001,14752,26783,26782,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,4,8.4034786,8.4124289,0,2,0,-9,7,0,5,-54.963768,0,0,0,50,3,1,3,-9,-9,2019,2,1,9,1,40,40,15,1,0,3,0,13.127862,13.127862,0,0,0,0,0,0,0,0,1,1,0,3.4385617,0,0,0,53,54,43.18,14.61,6,2,3,0,0,8,3,1,437,214824.19,0,0,2772.8687 -12001,14753,26784,-9,26782,26783,4,1,1,25,2,0,1,0,2,-9,2,1,0,0,4,7.700511,7.5756202,0,3,0,0,0,-9,0,-1095.5427,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,35,15,1,0,-9,1,5.4157958,5.4157958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,3,1,73,-129334.16,0,0,1316.6045 -12001,14754,26785,-9,26782,26783,5,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-969.25433,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,3,1,614,127735.01,0,0,0 -12001,14755,26786,26787,-9,-9,6,1,0,27,1,0,1,0,2,-9,2,1,0,0,4,8.1769524,8.0494528,0,2,0,-9,2,0,0,21.471182,0,1,1,27,2,4,1,-9,-9,2019,1,3,11,2,35,35,15,1,0,1,0,9.2457523,9.2457523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,49,58,5,4,2,0,0,8,3,1,635.5,82641.672,0,0,1534.3892 -12001,14755,26787,26786,26782,26783,3,1,1,27,1,0,1,0,2,-9,2,1,0,0,4,7.3965111,7.4638133,0,2,0,-9,2,0,0,48.07814,0,1,0,27,2,4,1,3,2,2019,1,6,10,1,40,37,15,1,0,1,0,5.8090062,5.8090062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,47,57,5,2,3,0,0,8,3,1,635.5,82641.672,0,0,1534.3892 -12002,14756,26788,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,4,3,0,0,3,0,7.6591511,7.9018836,3,0,0,0,-9,0,-997.11823,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5360103,7.8089728,0,0,45.540001,49.310001,-9,-9,4,1,1,0,0,7,3,1,1099,190956.8,0,0,885.60596 -12003,14757,26789,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,0,5,8.4263077,8.35606,0,3,0,0,0,-9,0,-979.48407,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,50,49,15,1,0,-9,0,12.445451,12.445451,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.720001,55.580002,-9,-9,6,1,1,0,0,12,5,0,1533,-244246.59,0,0,1978.3773 -12004,14758,26790,26791,-9,-9,1,1,1,74,1,0,0,0,2,-9,1,1,0,0,3,6.6862407,8.64079,8.0685816,1,0,-9,46,0,-2,38.975937,0,0,0,76,2,3,3,-9,-9,2019,2,2,7,0,0,20,15,1,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.138133,7.9695077,1.6976717,3,62.18,36.18,51.759998,47.75,6,1,1,0,0,9,4,1,587.5,1723977.6,0,0,6770.5679 -12004,14758,26791,26790,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.8564606,8.3452864,1,0,-9,46,0,2,-30.252363,0,0,0,74,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0693893,7.8583908,0,0,51.759998,47.75,62.18,36.18,2,2,3,0,0,9,4,1,587.5,1723977.6,0,0,6770.5679 -12005,14759,26792,-9,26795,-9,2,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1104.5275,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,0,1180.25,-56696.766,0,0,3079.9456 -12005,14759,26793,26795,-9,-9,3,1,1,27,1,1,2,0,2,-9,2,1,0,0,4,8.0244741,8.2068996,0,2,0,-9,4,0,-2,-42.781681,0,1,0,29,2,4,1,-9,-9,2019,1,1,10,1,40,42,15,1,0,1,0,11.432608,11.432608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,48.77,57.639999,5,1,1,0,0,11,3,0,1180.25,-56696.766,0,0,3079.9456 -12005,14759,26794,-9,26795,26793,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.82367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,0,1180.25,-56696.766,0,0,3079.9456 -12005,14759,26795,26793,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,0,4,7.0631108,6.9743333,0,2,0,-9,4,0,2,-32.407684,0,1,1,27,2,4,1,3,3,2019,1,3,13,1,16,15,15,1,0,1,0,6.790895,6.790895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.639999,49,58,4,1,1,0,0,11,3,0,1180.25,-56696.766,0,0,3079.9456 -12006,14760,26796,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1001.3281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.639999,23.5,-9,-9,6,1,1,0,0,13,1,1,360,-20940.617,0,0,467.70798 -12007,14761,26797,-9,26799,26798,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1172.5431,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,287.5,187850.16,0,0,4894.627 -12007,14761,26798,26799,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,0,4,8.4086351,8.5339212,0,2,0,-9,7,0,0,72.872475,0,0,0,38,1,4,1,2,2,2019,1,1,12,0,36,39,15,1,0,1,0,16.190163,16.190163,0,0,0,0,0,0,0,0,1,1,0,5.1833782,0,0,0,51.810001,57.220001,53.810001,51.060001,2,1,1,0,0,11,5,1,287.5,187850.16,0,0,4894.627 -12007,14761,26799,26798,-9,-9,1,1,0,38,1,1,2,0,1,-9,5,1,0,0,4,8.9752865,8.8348713,0,2,0,-9,7,0,0,46.939507,0,0,1,38,1,4,1,2,2,2019,1,2,7,0,47,42,15,1,0,1,0,19.556633,19.556633,0,0,0,0,0,0,0,0,1,1,0,4.8993115,0,0,0,53.810001,51.060001,51.810001,57.220001,6,1,1,0,0,11,5,1,287.5,187850.16,0,0,4894.627 -12007,14761,26800,-9,26799,26798,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.14838,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,5,1,287.5,187850.16,0,0,4894.627 -12008,14762,26801,-9,26803,26802,1,1,1,39,2,0,0,0,1,-9,1,1,0,0,5,9.0328722,8.9880161,7.0723453,3,0,0,0,-9,0,-880.41229,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,4,1,40,40,15,1,0,-9,1,20.657503,20.657503,0,0,0,0,0,0,0,0,1,1,0,6.798337,8.0343637,0,0,60.02,56.419998,-9,-9,6,4,2,0,0,9,5,1,568,288123.06,0,0,5028.0322 -12008,14763,26802,26803,-9,-9,2,1,1,74,1,0,0,0,1,-9,1,1,0,0,3,8.4720926,8.7127409,0,1,0,-9,7,0,-3,28.729042,0,0,0,77,1,4,3,-9,-9,2019,2,3,9,1,50,10,15,1,0,4,0,11.980204,11.980204,0,0,0,0,0,0,0,0,1,1,0,4.6107326,0,0,0,53,46,62.490002,55.09,6,4,5,0,0,9,4,1,377,2070613.5,0,0,3556.5654 -12008,14763,26803,26802,-9,-9,3,1,0,77,1,0,0,0,1,-9,4,3,0,0,4,0,5.0414653,5.3755722,1,0,-9,7,0,3,-191.12161,0,0,0,74,1,3,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9774671,0,0,62.490002,55.09,53,46,7,1,1,0,0,9,4,1,377,2070613.5,0,0,3556.5654 -12009,14764,26804,26805,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,8.9901228,9.2426701,0,2,0,-9,19,0,0,88.676842,0,0,0,45,1,5,1,3,2,2019,1,2,4,0,43,42,15,1,0,1,0,22.531954,22.531954,0,0,0,0,0,0,0,0,0,0,0,5.0076447,0,0,0,57.16,56.150002,49.84,59.619999,6,1,1,0,0,12,5,1,419.75,232199.94,0,0,5881.2251 -12009,14764,26805,26804,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,5,8.7216396,8.8870449,0,2,0,-9,21,0,0,-112.82604,0,0,0,45,1,4,1,3,3,2019,1,1,8,0,31,30,15,1,0,1,0,25.283003,25.283003,0,0,0,0,0,0,0,0,0,0,0,4.7447915,0,0,0,49.84,59.619999,57.16,56.150002,6,1,1,0,0,12,5,1,419.75,232199.94,0,0,5881.2251 -12009,14764,26806,-9,26805,26804,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.98004,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,419.75,232199.94,0,0,5881.2251 -12009,14764,26807,-9,26805,26804,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.4528,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,419.75,232199.94,0,0,5881.2251 -12010,14765,26808,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,2,7.815176,7.8609219,6.4393706,4,0,0,0,-9,0,-1134.9735,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,23,23,15,1,0,-9,0,12.380665,12.380665,0,0,0,0,0,0,0,0,1,1,0,5.7123671,0,0,0,62.419998,32.41,-9,-9,6,1,1,0,0,7,3,0,1613,-7053.8164,0,0,1529.1333 -12010,14765,26809,-9,26808,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-980.02539,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,3,0,1613,-7053.8164,0,0,1529.1333 -12011,14766,26810,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-982.32013,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,-9,-9,5,2,3,0,0,5,1,0,124,-9612.8955,0,0,705.99811 -12012,14767,26811,-9,26812,26813,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1013.7091,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,2183.6667,-19078.484,0,0,3767.9753 -12012,14767,26812,26813,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,0,4,8.788559,8.5159044,0,2,0,-9,3,0,-2,-25.868761,0,0,1,32,1,4,1,3,3,2019,1,2,10,0,50,50,15,1,0,1,0,13.203828,13.203828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.080002,58.41,51.830002,57.200001,5,1,1,0,0,11,5,1,2183.6667,-19078.484,0,0,3767.9753 -12012,14767,26813,26812,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,0,4,8.2203341,7.9701366,0,2,0,-9,3,0,2,-31.307934,0,0,0,30,1,4,1,-9,-9,2019,1,1,6,0,45,37,15,1,0,1,0,9.0006037,9.0006037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,41.080002,58.41,7,1,1,0,0,11,5,1,2183.6667,-19078.484,0,0,3767.9753 -12013,14768,26814,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,8.6164923,8.6398211,0,3,0,0,0,-9,0,-924.6377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,45,50,15,1,0,-9,0,14.542743,14.542743,0,0,0,0,0,0,0,0,1,1,0,2.2319784,0,0,0,38.509998,59.43,-9,-9,3,1,1,0,0,7,5,1,183,565309.69,0,0,1122.4802 -12014,14769,26815,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,3,8.0914049,8.2269201,0,3,0,0,0,-9,0,-1051.2703,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,45,0,15,1,0,-9,0,8.2364359,8.2364359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.790001,51.639999,-9,-9,5,1,1,0,0,7,4,0,91,117486.98,0,0,1717.4305 -12015,14770,26816,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,3,0,6.3964038,6.6908355,3,0,0,0,-9,0,-1054.6824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7273803,6.5188193,0,0,64.019997,27,-9,-9,6,1,1,0,0,2,2,0,1862,153054.08,0,0,593.93463 -12016,14771,26817,-9,26820,26819,5,1,0,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1158.4969,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,1,850.5,57671.973,0,0,3970.1885 -12016,14771,26818,-9,26820,26819,6,1,0,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.0137,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,1,850.5,57671.973,0,0,3970.1885 -12016,14771,26819,26820,-9,-9,2,1,1,53,1,0,4,0,3,-9,1,1,0,0,4,7.7915006,7.8141246,0,2,0,-9,7,0,8,157.72577,-9,0,0,45,1,5,1,-9,-9,2019,1,1,9,1,80,0,15,1,0,1,0,3.5506911,3.5506911,0,0,0,0,0,0,0,0,1,1,0,6.932754,0,0,0,53,54,59.43,58.049999,6,1,1,0,0,13,2,1,850.5,57671.973,0,0,3970.1885 -12016,14771,26820,26819,-9,-9,1,1,0,45,1,0,4,0,1,-9,1,1,0,0,5,6.4791813,6.6949291,0,2,0,-9,12,0,-8,-9.2087278,0,0,0,53,3,4,1,3,3,2019,1,2,4,0,15,15,15,1,0,1,0,4.1735516,4.1735516,0,0,0,0,0,0,0,0,1,1,0,6.8414664,0,0,0,59.43,58.049999,53,54,6,1,1,0,1,13,2,1,850.5,57671.973,0,0,3970.1885 -12016,14771,26821,-9,26820,26819,4,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.0756,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,1,850.5,57671.973,0,0,3970.1885 -12016,14771,26822,-9,26820,26819,3,1,0,17,2,0,4,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-883.98645,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,13,2,1,850.5,57671.973,0,0,3970.1885 -12017,14772,26823,26824,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.3455048,8.4139004,0,1,0,-9,15,0,-5,64.954002,0,0,0,56,2,3,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,12.506651,12.506651,0,0,0,0,0,0,0,0,0,0,0,5.2207112,0,0,0,63.130001,44.02,50,49,7,1,1,0,0,2,5,1,388.5,2760401,0,0,3110.3398 -12017,14772,26824,26823,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.6123114,8.4358187,0,1,0,-9,14,0,5,38.913811,0,0,0,51,2,3,1,2,2,2019,1,2,10,1,41,42,15,1,0,1,0,14.906754,14.906754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,63.130001,44.02,5,1,1,0,0,2,5,1,388.5,2760401,0,0,3110.3398 -12018,14773,26825,26826,-9,-9,2,1,0,49,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,32,0,-6,0,0,0,0,55,3,1,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.13278,1,46.080002,57.200001,33.59,20.26,4,2,3,0,0,4,1,1,662.5,-75820.156,0,0,998.33887 -12018,14773,26826,26825,-9,-9,1,1,1,55,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,32,0,6,0,0,0,0,49,3,3,3,3,3,2019,4,2,15,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.59,20.26,46.080002,57.200001,4,2,3,0,0,4,1,1,662.5,-75820.156,0,0,998.33887 -12018,14774,26827,-9,26825,26826,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,6.2365851,6.4514256,0,3,0,0,0,-9,0,-954.41138,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,37,0,15,1,0,-9,1,1.8229017,1.8229017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,2,3,0,0,4,2,1,260,195596.39,0,0,-452.54303 -12018,14775,26828,-9,26825,26826,4,1,1,28,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1025.222,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,58,-9,-9,5,2,3,1,0,4,1,1,58,-38640.109,0,0,-98.909988 -12019,14776,26829,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,8.4824572,8.2850637,0,3,0,0,0,-9,0,-992.8067,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,60,57,15,1,0,-9,0,8.2152023,8.2152023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.360001,56.119999,-9,-9,5,1,1,0,0,13,5,1,648,-7646.0542,0,0,795.59576 -12020,14777,26830,26831,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,4,8.4653721,8.4492273,0,1,0,-9,7,0,12,126.97113,0,0,0,30,2,3,1,-9,-9,2019,1,1,10,0,43,43,15,1,0,1,0,12.440075,12.440075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,54.959999,53.169998,6,1,1,0,0,4,4,1,340,326617.13,0,0,2314.5271 -12020,14777,26831,26830,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,7.9777093,8.1102085,0,1,0,-9,7,0,-12,-23.938469,0,0,1,42,2,4,1,2,-9,2019,1,2,9,0,38,37,15,1,0,1,0,7.5441771,7.5441771,0,0,0,0,0,0,0,0,0,0,0,2.0926499,0,0,0,54.959999,53.169998,54.790001,55.860001,5,1,1,0,0,4,4,1,340,326617.13,0,0,2314.5271 -12021,14778,26832,26833,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.3258553,8.5303478,0,1,0,-9,26,0,-7,101.84828,0,0,0,59,3,2,1,3,3,2019,1,1,9,0,33,33,15,1,0,1,0,12.110587,12.110587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,56.990002,51.889999,35.98,6,1,1,0,0,2,5,1,872,351932.88,0,0,2974.0752 -12021,14778,26833,26832,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,2,8.6956892,8.7840443,0,1,0,-9,27,0,7,-87.023483,0,0,0,52,2,3,1,3,2,2019,1,2,10,0,51,48,15,1,0,1,0,14.956772,14.956772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.889999,35.98,41,56.990002,5,1,1,0,0,2,5,1,872,351932.88,0,0,2974.0752 -12022,14779,26834,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,4,0,6.1040859,5.9508343,3,0,0,0,-9,0,-918.82336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.32879347,6.3161817,10.673763,3,48.279999,60.18,-9,-9,6,1,1,0,0,6,2,1,1493,235960.2,0,0,199.59715 -12023,14780,26835,26836,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,4,0,8.4948425,8.3946342,1,0,-9,55,0,1,39.382229,0,0,0,76,1,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.8688617,8.5570507,0,1,61.259998,51.57,67.57,24.02,7,1,1,0,0,9,4,1,1251,458044.53,0,0,5821.8394 -12023,14780,26836,26835,-9,-9,2,1,0,76,1,0,0,0,1,-9,1,1,0,1,3,7.4808373,7.5813999,5.7958446,1,0,-9,55,0,-1,116.83001,0,0,0,77,1,4,3,3,2,2019,2,1,8,1,15,15,15,1,0,4,0,14.67438,14.67438,1,0,0,0,0,0,0,0,1,1,0,6.0970149,6.18116,0,0,67.57,24.02,61.259998,51.57,7,1,1,0,0,9,4,1,1251,458044.53,0,0,5821.8394 -12024,14781,26837,26838,-9,-9,1,1,0,47,1,0,1,0,1,-9,1,1,0,0,4,7.9932575,7.9058628,0,2,0,-9,23,0,0,-20.457664,0,0,0,47,1,4,1,2,1,2019,1,2,12,0,15,15,15,1,0,1,0,22.666239,22.666239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,33.830002,63.900002,6,1,1,0,0,8,5,1,285,792993.25,0,0,9829.8027 -12024,14781,26838,26837,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,9.8885593,9.9431973,0,2,0,-9,23,0,0,80.030472,0,0,0,47,1,4,1,2,1,2019,1,1,12,0,50,52,15,1,0,1,0,38.319172,38.319172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.830002,63.900002,48.869999,58.549999,6,1,1,0,0,8,5,1,285,792993.25,0,0,9829.8027 -12024,14781,26839,-9,26837,26838,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,4.5547285,4.4161878,0,2,0,0,0,-9,0,-1086.0693,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,-9,-9,5,1,1,0,0,8,5,1,285,792993.25,0,0,9829.8027 -12025,14782,26840,26842,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.8228846,8.6740456,0,2,0,-9,10,0,-1,13.982297,0,0,0,43,2,3,1,1,1,2019,1,2,9,0,40,37,15,1,0,1,0,18.727243,18.727243,0,0,0,0,0,0,0,0,0,0,0,1.8712411,0,0,0,46.98,59.349998,35.220001,56.720001,6,1,1,0,0,11,5,1,1554.6666,2238366.8,0,0,7989.8203 -12025,14782,26841,-9,26842,26840,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.9623,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1554.6666,2238366.8,0,0,7989.8203 -12025,14782,26842,26840,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,9.7039871,9.8512421,0,2,0,-9,8,0,1,36.897999,0,0,1,42,1,4,1,3,2,2019,1,1,19,7,55,50,15,1,1,1,0,37.305458,37.305458,0,0,0,0,0,0,0,0,0,0,0,6.5014014,0,0,0,35.220001,56.720001,46.98,59.349998,5,1,1,0,0,11,5,1,1554.6666,2238366.8,0,0,7989.8203 -12026,14783,26843,-9,26846,26844,3,1,0,17,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.6814,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45,59,-9,-9,5,1,1,0,0,2,1,0,1132,-3074.5293,0,0,2257.5713 -12026,14783,26844,26846,-9,-9,1,1,1,47,1,0,2,0,3,-9,3,3,0,1,5,0,0,0,2,0,-9,5,0,10,0,0,0,0,37,2,4,3,-9,-9,2019,4,2,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.191809,2,46.34,38.200001,58.860001,21.48,4,1,1,1,0,2,1,0,1132,-3074.5293,0,0,2257.5713 -12026,14783,26845,-9,26846,26844,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-954.41193,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,1,0,1132,-3074.5293,0,0,2257.5713 -12026,14783,26846,26844,-9,-9,2,1,0,37,1,0,2,0,2,-9,8,3,1,1,4,0,0,0,2,0,-9,5,0,-10,0,0,0,1,47,3,5,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.434269,3,58.860001,21.48,46.34,38.200001,4,1,1,0,0,2,1,0,1132,-3074.5293,0,0,2257.5713 -12027,14784,26847,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,2,1,0,0,4,9.4126921,9.291954,0,3,0,0,0,-9,0,-939.12592,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,120,60,15,1,0,-9,0,11.278522,11.278522,0,0,0,0,0,0,0,0,1,1,0,3.1648381,0,0,0,41.639999,42.57,-9,-9,2,1,1,0,0,4,5,1,151,801100.63,0,0,4477.3979 -12028,14785,26848,26851,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,5,8.9977627,8.9068708,0,2,0,-9,28,0,0,-68.266075,0,0,0,55,3,4,3,2,2,2019,2,1,8,0,40,41,15,1,0,3,0,18.521832,18.521832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,50.110001,54.040001,6,1,1,0,0,1,4,1,1550,339442.84,0,0,2220.4758 -12028,14785,26849,-9,26848,26851,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.7461,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,4,1,1550,339442.84,0,0,2220.4758 -12028,14785,26850,-9,26848,26851,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-927.95477,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.459999,61.869999,-9,-9,6,1,1,0,0,1,4,1,1550,339442.84,0,0,2220.4758 -12028,14785,26851,26848,-9,-9,1,1,1,55,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,38,0,9,93.825134,0,0,0,46,1,5,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.110001,54.040001,51.73,58.82,6,1,1,0,0,1,4,1,1550,339442.84,0,0,2220.4758 -12029,14786,26852,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,3,8.2947454,8.3318958,0,3,0,0,0,-9,0,-1067.7078,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,43,30,15,1,0,-9,0,10.872357,10.872357,0,0,0,0,0,0,0,2,0,0,0,4.1696033,0,0,3,50.419998,53.849998,-9,-9,2,1,1,0,0,11,4,0,224,433064.03,0,0,948.79565 -12030,14787,26853,26854,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,5.2014575,7.5825205,7.5447054,1,0,-9,10,0,4,-2.1228209,-9,0,0,67,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7075548,0,0,57.16,56.150002,53.049999,52.709999,6,1,1,0,0,2,4,1,230.5,2205904.5,0,0,3824.4604 -12030,14787,26854,26853,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.9408894,8.256731,1,0,-9,35,0,-4,-8.6656895,0,0,0,71,2,4,3,3,2,2019,4,2,14,4,0,20,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7594113,0,0,53.049999,52.709999,57.16,56.150002,6,1,1,0,0,2,4,1,230.5,2205904.5,0,0,3824.4604 -12031,14788,26855,26856,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,0,2,7.7955413,8.1592207,0,1,0,-9,29,0,2,-84.018555,0,0,0,50,3,2,1,2,2,2019,1,1,20,8,50,60,15,1,1,1,0,6.7487354,6.7487354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,55.66,44.380001,31.309999,3,1,1,0,1,5,4,1,723,392683,0,0,1979.3604 -12031,14788,26856,26855,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,0,2,7.8944488,7.47328,0,1,0,-9,28,0,-2,63.758392,0,0,0,52,2,2,1,-9,2,2019,1,2,13,2,24,19,15,1,0,1,0,13.29179,13.29179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.380001,31.309999,38.75,55.66,3,1,1,0,1,5,4,1,723,392683,0,0,1979.3604 -12031,14789,26857,-9,26856,26855,3,1,1,22,2,0,0,0,1,1,2,1,0,0,4,7.5640655,7.140738,0,3,0,0,0,-9,0,-892.73553,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,20,9,28,0,15,1,1,-9,1,6.7911201,6.7911201,0,0,0,0,0,0,0,0,0,0,0,1.4940256,0,0,0,23.18,49.080002,-9,-9,5,1,1,0,0,5,3,1,202,-103828.69,0,0,1552.0549 -12032,14790,26858,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,0,2,0,7.4046006,7.0406909,3,0,0,0,-9,0,-1108.3967,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,5.1074581,0,0,0,0,30.822897,0,1,1,0,7.6869869,7.1782475,0,0,51.650002,52.380001,-9,-9,5,1,1,0,0,10,3,0,2910,356559.5,0,0,2273.2637 -12033,14791,26859,26861,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,3,8.5125895,8.7723722,0,2,0,-9,10,0,3,77.494629,0,0,0,46,2,4,1,1,1,2019,1,2,11,0,40,40,15,1,0,1,0,19.276304,19.276304,0,0,0,0,0,0,0,0,1,1,0,4.1474366,0,0,0,41.470001,58.080002,51.240002,58.84,5,1,1,0,0,8,5,1,617.5,-75422.203,0,0,3717.842 -12033,14791,26860,-9,26861,26859,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.1095,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,1,617.5,-75422.203,0,0,3717.842 -12033,14791,26861,26859,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.4196672,8.5477343,0,2,0,-9,10,0,-3,-138.45227,0,0,0,49,2,3,1,3,3,2019,1,1,7,0,35,35,15,1,0,1,0,16.999428,16.999428,0,0,0,0,0,0,0,0,1,1,0,4.4749622,0,0,0,51.240002,58.84,41.470001,58.080002,5,1,1,0,0,8,5,1,617.5,-75422.203,0,0,3717.842 -12033,14791,26862,-9,26861,26859,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,4.3203206,4.0340624,2,0,0,0,-9,0,-1156.0865,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7291212,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,8,5,1,617.5,-75422.203,0,0,3717.842 -12034,14792,26863,26864,-9,-9,1,1,1,51,1,0,1,0,2,-9,1,1,0,0,3,6.4245458,6.5663886,0,2,0,-9,10,0,3,-61.908669,0,0,0,48,1,4,1,2,3,2019,1,2,12,0,45,50,15,1,0,1,0,1.987931,1.987931,0,0,0,0,0,0,0,0,0,0,0,7.7247539,0,0,0,60.290001,52.110001,32.48,59.490002,6,1,1,0,0,12,3,1,709,33702.707,0,0,3281.9946 -12034,14792,26864,26863,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,4,7.7706866,7.8196979,0,2,0,-9,10,0,-3,67.114304,0,0,0,51,2,3,1,2,2,2019,1,1,14,2,38,38,15,1,0,1,0,6.1364069,6.1364069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.48,59.490002,60.290001,52.110001,4,1,1,0,0,12,3,1,709,33702.707,0,0,3281.9946 -12034,14792,26865,-9,26864,26863,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.41681,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,1,709,33702.707,0,0,3281.9946 -12035,14793,26866,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,2,0,6.0404224,5.8004537,3,0,0,0,-9,0,-884.19824,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5218635,0,0,47.91,28.34,-9,-9,5,1,1,0,1,6,2,1,433,535823.69,0,0,-840.37067 -12036,14794,26867,26868,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.2646475,8.6846685,0,1,0,-9,6,0,2,-37.526695,0,0,0,53,2,4,1,-9,-9,2019,1,2,14,3,55,57,15,1,0,1,0,10.064677,10.064677,0,0,0,0,0,0,0,0,0,0,0,7.244967,0,0,0,48.139999,53.419998,36.959999,53.52,7,1,1,0,0,7,5,1,699.5,287959.75,0,0,4004.1128 -12036,14794,26868,26867,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.0730648,8.0153542,0,1,0,-9,6,0,-2,-16.529606,0,0,0,55,2,3,1,-9,-9,2019,1,1,9,1,55,44,15,1,0,1,0,8.1862335,8.1862335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.959999,53.52,48.139999,53.419998,4,3,4,0,0,7,5,1,699.5,287959.75,0,0,4004.1128 -12037,14795,26869,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,7.0710039,6.9534016,3,0,0,0,-9,0,-1027.1215,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1639357,0,0,62.18,36.18,-9,-9,5,3,4,0,0,8,2,0,267,798595.94,0,0,1443.495 -12038,14796,26870,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1010.3369,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.369999,61.5,-9,-9,4,1,1,0,1,13,2,0,371,5551.9961,0,0,1170.3739 -12038,14797,26871,-9,26870,-9,2,1,0,36,2,0,0,0,2,-9,2,1,0,0,2,8.2586107,7.7959409,0,3,0,0,0,-9,0,-924.82544,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,18,6,46,40,15,1,1,-9,1,9.3551283,9.3551283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.490002,49.099998,-9,-9,3,1,1,0,0,13,4,0,258,143993.56,0,0,840.66644 -12039,14798,26872,26874,-9,-9,2,1,1,34,1,1,3,0,2,-9,2,1,0,0,3,9.0973835,9.4218597,0,2,0,-9,13,0,0,17.140425,0,0,0,34,2,4,1,2,-9,2019,1,1,7,0,48,58,15,1,0,1,0,17.079216,17.079216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.740002,52.330002,57.16,56.150002,6,1,1,0,0,6,4,0,796.59998,92636.18,0,0,3766.2427 -12039,14798,26873,-9,26874,26872,4,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.5815,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,796.59998,92636.18,0,0,3766.2427 -12039,14798,26874,26872,-9,-9,1,1,0,34,1,1,3,0,2,-9,2,1,0,0,4,7.5645456,7.6051917,0,2,0,-9,13,0,0,47.093384,0,0,1,34,2,3,1,-9,-9,2019,1,2,6,0,19,19,15,1,0,1,0,10.103606,10.103606,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50.740002,52.330002,7,1,1,0,0,6,4,0,796.59998,92636.18,0,0,3766.2427 -12039,14798,26875,-9,26874,26872,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.835,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,0,796.59998,92636.18,0,0,3766.2427 -12039,14798,26876,-9,26874,26872,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.6364,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,0,796.59998,92636.18,0,0,3766.2427 -12040,14799,26877,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,2,8.7451172,9.0044222,0,3,0,-9,0,-9,0,-968.20343,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,1,50,0,15,1,0,-9,0,19.76605,19.76605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.439999,-9,-9,4,3,4,0,0,8,5,1,315,324536.53,0,0,1414.0243 -12041,14800,26878,26879,-9,-9,1,1,1,59,1,0,0,0,1,-9,8,3,1,1,3,0,0,0,1,0,-9,6,0,9,7.444098,0,0,0,50,2,5,1,3,3,2019,3,2,32,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.6999998,44.200001,51.529999,57.009998,7,2,3,0,1,2,2,1,1119,224306.67,0,0,981.35608 -12041,14800,26879,26878,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,1,5,6.479526,6.4120464,0,1,0,-9,6,0,0,3.2727706,0,0,0,59,1,3,3,3,2,2019,2,1,0,0,16,16,15,1,0,3,0,4.8479028,4.8479028,0,0,0,0,0,0,0,7,1,1,0,0,0,9.658,1,51.529999,57.009998,9.6999998,44.200001,7,2,3,0,1,2,2,1,1119,224306.67,0,0,981.35608 -12041,14801,26880,-9,26879,26878,3,1,1,22,2,0,0,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1041.8477,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.009998,66.639999,-9,-9,6,2,3,0,0,2,1,1,742,-15211.876,0,0,-515.19305 -12042,14802,26881,26882,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,9.2544985,9.1083879,0,1,0,-9,21,0,4,-46.942902,0,0,0,53,1,4,1,2,2,2019,1,1,18,7,50,58,15,1,1,1,0,19.717976,19.717976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.040001,55.799999,46.389999,60.990002,5,1,1,0,0,12,5,1,334,1912627,0,0,5300.7905 -12042,14802,26882,26881,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,8.9157963,8.8732882,0,1,0,-9,21,0,-4,-104.97617,0,0,0,57,1,4,1,2,2,2019,1,2,5,0,58,58,15,1,0,1,0,18.690926,18.690926,0,0,0,0,0,0,0,0,0,0,0,1.9881155,0,0,0,46.389999,60.990002,35.040001,55.799999,5,1,1,0,0,12,5,1,334,1912627,0,0,5300.7905 -12043,14803,26883,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,4,3,0,0,3,0,6.954597,7.2905622,1,0,-9,35,0,9,-54.709621,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,2,18,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.3777761,7.0646214,12.689718,3,46.080002,57.200001,52,53,5,1,1,0,0,5,3,1,407,188062.67,0,0,550.0069 -12043,14804,26884,-9,-9,-9,2,1,0,55,2,0,0,0,2,-9,2,1,0,0,4,8.1244669,8.0471764,0,1,0,-9,4,0,0,15.928114,0,0,0,-9,-9,-9,-9,-9,-9,2019,2,1,10,1,32,40,15,1,0,-9,0,9.9916945,9.9916945,0,0,0,0,0,0,0,0,1,1,0,2.8110714,0,0,0,52,53,46.080002,57.200001,6,1,1,0,0,5,3,1,618,108857.71,0,0,1410.2753 -12044,14805,26885,26886,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,41,0,-3,0,0,0,0,64,3,1,3,3,2,2019,4,1,11,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,44.77,39.560001,5,2,3,0,0,7,1,1,386,276082.13,0,0,636.62903 -12044,14805,26886,26885,-9,-9,1,1,1,64,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,41,0,3,0,0,0,0,61,3,3,3,3,3,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,39.560001,49,48,5,2,3,0,1,7,1,1,386,276082.13,0,0,636.62903 -12045,14806,26887,26888,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.7578239,7.7415261,0,1,0,-9,34,0,-11,-63.464474,0,0,0,70,3,2,3,3,3,2019,2,1,9,0,30,38,15,1,0,4,0,11.163517,11.163517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.470001,52.189999,39.150002,48.860001,6,1,1,0,0,2,4,1,791,1030056.6,0,0,3456.7825 -12045,14806,26888,26887,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,8.2664804,8.5691729,1,0,-9,30,0,11,58.181107,0,0,0,59,2,2,1,3,3,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.7976952,8.3308878,0,0,39.150002,48.860001,49.470001,52.189999,1,1,1,0,0,2,4,1,791,1030056.6,0,0,3456.7825 -12046,14807,26889,26892,-9,-9,1,1,0,40,1,1,2,0,1,-9,2,1,0,0,4,8.2486219,8.5386047,0,2,0,-9,7,0,-6,128.48581,0,0,1,46,1,5,1,-9,-9,2019,1,2,11,0,21,23,15,1,0,1,0,26.744141,26.744141,0,0,0,0,0,0,0,0,1,1,0,4.8370838,0,0,0,44.080002,59.330002,57.060001,57.759998,5,4,2,0,0,6,5,0,582.25,3440285.3,0,0,5931.2085 -12046,14807,26890,-9,26889,26892,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.1405,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,6,5,0,582.25,3440285.3,0,0,5931.2085 -12046,14807,26891,-9,26889,26892,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.27448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,6,5,0,582.25,3440285.3,0,0,5931.2085 -12046,14807,26892,26889,-9,-9,2,1,1,46,1,1,2,0,1,-9,1,1,0,0,5,9.0750971,9.2005367,0,2,0,-9,7,0,6,-54.319618,0,0,0,40,1,4,1,-9,-9,2019,1,1,7,1,30,28,15,1,0,1,0,32.768429,32.768429,0,0,0,0,0,0,0,0,1,1,0,2.4421377,0,0,0,57.060001,57.759998,44.080002,59.330002,3,1,1,0,0,6,5,0,582.25,3440285.3,0,0,5931.2085 -12047,14808,26893,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,0,3,0,7.9960566,8.1835938,3,0,0,0,-9,0,-996.72485,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9638977,7.6512427,0,0,57.68,42.360001,-9,-9,6,1,1,0,0,2,3,1,161,416638.44,0,0,2521.1218 -12048,14809,26894,26896,-9,-9,2,1,0,44,1,0,2,0,1,-9,1,1,0,0,3,6.3149781,6.3559308,0,2,0,-9,15,0,-2,-12.904545,0,0,1,46,1,5,1,2,1,2019,1,1,17,5,20,20,15,1,1,1,0,3.0571983,3.0571983,0,0,0,0,0,0,0,0,1,1,0,7.7990685,0,0,0,41.23,59.349998,64.959999,41.869999,4,2,3,0,0,8,2,1,861.5,0,0,0,1408.8827 -12048,14809,26895,-9,26894,26896,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.67859,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,1,861.5,0,0,0,1408.8827 -12048,14809,26896,26894,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,0,0,0,2,0,-9,15,0,2,-53.936096,0,0,0,44,1,3,1,3,3,2019,1,2,3,1,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.959999,41.869999,41.23,59.349998,7,2,3,0,0,8,2,1,861.5,0,0,0,1408.8827 -12048,14809,26897,-9,26894,26896,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.10345,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,1,861.5,0,0,0,1408.8827 -12049,14810,26898,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,4,7.5407186,7.8528776,7.1477513,3,0,0,0,-9,0,-873.26306,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,21,0,15,1,0,-9,0,8.7971449,8.7971449,0,0,0,0,0,0,0,0,1,1,0,6.8588085,7.3682418,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,4,1,903,1019384.4,0,0,1270.8767 -12050,14811,26899,26900,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,7.5134673,8.3754044,6.132894,1,0,-9,42,0,2,-51.757725,0,0,0,60,3,5,3,3,2,2019,2,2,6,0,36,25,15,1,0,4,0,7.7654881,7.7654881,0,0,0,0,0,0,0,0,0,0,0,5.773057,6.5155416,0,0,50.119999,48.450001,50.540001,62.09,6,1,1,0,0,9,3,1,452,889706.88,0,0,1225.2444 -12050,14811,26900,26899,-9,-9,2,1,0,60,1,0,0,0,3,-9,4,3,0,0,5,0,6.8890891,6.8770666,1,0,-9,8,0,-2,-3.1760819,0,0,0,62,3,3,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7493563,6.5011988,0,0,50.540001,62.09,50.119999,48.450001,7,1,1,0,0,9,3,1,452,889706.88,0,0,1225.2444 -12051,14812,26901,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,3,0,5.9897366,5.6527128,3,0,0,0,-9,0,-985.41357,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9352546,0,0,52,54.509998,-9,-9,6,1,1,0,0,5,2,1,154,204097.53,0,0,-143.57466 -12052,14813,26902,26903,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.142148,7.611464,1,0,-9,8,0,-2,-146.82353,0,0,0,79,2,1,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,3.1205401,7.430336,119.9035,1,61.200001,20.32,48.130001,10.74,6,1,1,0,0,2,3,1,969,679796.13,0,0,3570.8064 -12052,14813,26903,26902,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,1,0,7.409667,7.2157216,1,0,-9,8,0,2,75.322144,0,0,0,77,2,3,3,3,3,2019,4,2,24,8,0,0,15,4,1,4,0,0,0,1,0,73.416183,0,0,0,0,0,1,1,0,3.5524833,7.0750055,0,0,48.130001,10.74,61.200001,20.32,2,1,1,0,0,2,3,1,969,679796.13,0,0,3570.8064 -12053,14814,26904,-9,26906,26905,1,1,0,31,3,0,0,0,1,-9,2,1,0,0,4,8.9592505,9.2684708,0,3,0,-9,0,1,0,-1053.9795,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,48,40,15,1,0,-9,1,19.300806,19.300806,0,0,0,0,0,0,0,0,0,0,0,2.7093475,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,301,138471.23,0,0,2643.9897 -12053,14815,26905,26906,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,8.0638304,7.9090562,5.9677558,1,0,-9,1,-9,-4,-83.270004,-9,0,0,64,1,3,1,-9,-9,2019,1,3,12,1,37,0,15,1,0,1,0,9.8405361,9.8405361,0,0,0,0,0,0,0,7,0,0,0,6.5040812,0,11.212081,3,59.43,49.68,50.029999,52.619999,6,1,1,0,0,9,5,1,500,1756034.8,0,0,4249.8965 -12053,14815,26906,26905,-9,-9,3,1,0,64,1,0,0,0,1,-9,2,1,0,0,3,8.8059626,8.6323032,0,1,0,-9,1,-9,4,43.228466,-9,0,0,60,1,4,1,-9,-9,2019,1,2,8,1,38,0,15,1,0,1,0,19.548111,19.548111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,59.43,49.68,6,1,1,0,0,9,5,1,500,1756034.8,0,0,4249.8965 -12054,14816,26907,26908,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.1449432,8.0393925,0,1,0,-9,26,0,-8,70.996994,0,0,0,58,3,4,1,2,2,2019,1,2,8,1,45,42,15,1,0,1,0,8.4870644,8.4870644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.759998,30.639999,53.389999,52.349998,6,1,1,0,0,6,5,1,655,1080563,0,0,3838.4973 -12054,14816,26908,26907,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,4,8.8119736,8.7581215,0,1,0,-9,29,0,8,78.016495,0,0,0,50,2,4,1,2,2,2019,1,1,12,3,69,70,15,1,0,1,0,10.265469,10.265469,0,0,0,0,0,0,0,0,0,0,0,3.0716703,0,0,0,53.389999,52.349998,56.759998,30.639999,6,1,1,0,0,6,5,1,655,1080563,0,0,3838.4973 -12054,14817,26909,-9,26907,26908,3,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,7.7832346,8.0294352,0,3,0,0,0,-9,0,-910.69788,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,32,37,15,1,0,-9,1,10.105047,10.105047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.259998,48.880001,-9,-9,5,1,1,0,0,6,3,1,167,110595.2,0,0,1313.7914 -12055,14818,26910,26911,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,2,8.2241373,8.7316217,0,1,0,-9,7,0,4,-146.83922,0,0,0,48,2,4,1,3,3,2019,1,2,14,2,52,54,15,1,0,1,0,13.715211,13.715211,0,0,0,0,0,0,0,0,0,0,0,8.5455894,0,0,0,38.709999,47.540001,54.790001,55.860001,3,1,1,0,1,9,5,1,1500,2935551.3,0,0,4690.6084 -12055,14818,26911,26910,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.3473301,8.278038,0,1,0,-9,7,0,-4,-23.717478,0,0,0,52,2,2,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,18.362236,18.362236,0,0,0,0,0,0,0,0,0,0,0,1.8213212,0,0,0,54.790001,55.860001,38.709999,47.540001,6,1,1,0,0,9,5,1,1500,2935551.3,0,0,4690.6084 -12056,14819,26912,-9,-9,-9,1,1,0,82,2,0,0,0,3,-9,4,3,0,0,4,0,6.5466576,6.5227008,3,0,0,0,-9,0,-1076.5166,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2801747,0,0,65.07,44.279999,-9,-9,6,1,1,0,0,2,2,1,130,228979.84,0,0,-886.30322 -12057,14820,26913,26914,-9,-9,2,1,0,54,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,31,0,-5,48.195789,0,0,0,59,2,1,3,2,2,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.1380806,1,46.48,58.279999,40.720001,26.18,4,1,1,0,0,4,2,1,385.66666,50311.801,0,0,1841.2029 -12057,14820,26914,26913,-9,-9,1,1,1,59,1,0,1,0,2,-9,8,3,1,1,1,0,5.4567332,5.6769423,2,0,-9,31,0,5,-20.98834,0,0,0,54,2,4,3,3,3,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5785236,5.4809661,0,0,40.720001,26.18,46.48,58.279999,3,1,1,0,0,4,2,1,385.66666,50311.801,0,0,1841.2029 -12057,14820,26915,-9,26913,26914,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.90417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,2,1,385.66666,50311.801,0,0,1841.2029 -12058,14821,26916,-9,-9,-9,1,1,0,20,2,2,2,0,2,-9,6,3,0,0,4,7.6455359,7.3017673,0,4,0,-9,0,0,0,-1013.9496,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,18,6,36,33,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,40.82,-9,-9,2,1,1,0,0,6,2,0,632,146127.58,0,0,1439.2893 -12058,14821,26917,-9,26916,-9,3,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-942.53888,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,2,0,632,146127.58,0,0,1439.2893 -12058,14821,26918,-9,26916,-9,2,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1027.0413,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,2,0,632,146127.58,0,0,1439.2893 -12059,14822,26919,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,3,7.2068214,7.7761664,6.0361505,4,0,0,0,-9,0,-1096.0333,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,28,25,15,1,0,-9,0,6.6554656,6.6554656,0,0,0,0,0,0,0,0,1,1,0,6.0394502,0,0,0,57.34,47.919998,-9,-9,7,1,1,0,0,11,3,1,814.5,204479.44,0,0,564.21387 -12059,14822,26920,-9,26919,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.6882,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,11,3,1,814.5,204479.44,0,0,564.21387 -12060,14823,26921,-9,26922,-9,1,1,0,60,2,0,0,0,2,-9,4,3,0,0,4,0,6.4740186,6.7952352,3,0,0,0,-9,0,-1074.1168,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2358689,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,6,2,1,216,274046.63,0,0,441.56439 -12060,14824,26922,-9,-9,-9,2,1,0,90,3,0,0,0,3,-9,4,3,0,1,2,0,6.7422385,6.6630988,3,0,0,0,-9,0,-884.99573,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3791013,6.7408614,0,0,34.77,23.4,-9,-9,5,1,1,0,0,6,2,1,119,160033.63,0,0,791.34747 -12061,14825,26923,26924,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.5222416,8.2769947,0,1,0,-9,3,0,5,1.9474262,0,0,0,55,2,3,1,-9,-9,2019,1,1,11,0,47,49,15,1,0,1,0,10.076303,10.076303,0,0,0,0,0,0,0,0,0,0,0,1.4763021,0,0,0,46.080002,57.200001,49.040001,55.860001,5,1,1,0,0,11,5,1,1609,1128759.3,0,0,3681.4019 -12061,14825,26924,26923,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.9748635,7.7936835,4.7445283,1,0,-9,3,0,-5,29.603765,0,0,0,60,2,3,1,2,-9,2019,1,2,12,0,32,40,15,1,0,1,0,9.8797369,9.8797369,0,0,0,0,0,0,0,0,0,0,0,0,5.2286444,0,0,49.040001,55.860001,46.080002,57.200001,5,1,1,0,0,11,5,1,1609,1128759.3,0,0,3681.4019 -12062,14826,26925,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-983.51495,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,3,4,1,0,8,1,0,1156,62885.973,0,0,1454.7479 -12063,14827,26926,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,0,3,2.8744395,7.7169428,7.7361979,3,0,0,0,-9,0,-1073.1982,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6556034,7.5196362,0,0,52.009998,48.98,-9,-9,6,1,1,0,0,7,3,0,1143,99999.953,0,0,2390.8313 -12064,14828,26927,26928,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,7.4345436,7.5897908,1,0,-9,7,0,1,42.024765,0,0,0,68,3,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.1199918,0,0,52.93,55.310001,57.060001,57.759998,7,1,1,0,0,13,2,1,1165.5,1045750.4,0,0,1834.556 -12064,14828,26928,26927,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,5,0,5.7915397,5.8953714,1,0,-9,7,0,-1,-19.435358,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9767885,0,0,57.060001,57.759998,52.93,55.310001,6,1,1,0,0,13,2,1,1165.5,1045750.4,0,0,1834.556 -12065,14829,26929,26930,-9,-9,2,1,0,48,1,0,1,0,3,-9,2,1,0,0,3,7.571022,7.5297475,0,2,0,-9,14,-9,-3,77.910461,-9,0,0,51,2,4,1,2,2,2019,1,1,14,4,25,0,15,1,1,1,0,10.96178,10.96178,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.183012,3,41.23,59.349998,48.869999,58.549999,6,1,1,0,0,13,4,1,781.5,868814.81,0,0,2898.5283 -12065,14829,26930,26929,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.1968317,8.4543982,0,2,0,-9,14,-9,3,30.036959,-9,0,0,48,3,3,1,2,2,2019,1,2,9,0,43,0,15,1,0,1,0,13.195794,13.195794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,41.23,59.349998,2,1,1,0,0,13,4,1,781.5,868814.81,0,0,2898.5283 -12066,14830,26931,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,5,0,6.3091483,6.0101256,3,0,0,0,-9,0,-1010.0541,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1706388,6.2141986,0,0,50.560001,43.32,-9,-9,6,1,1,0,0,5,2,1,203,123371.55,0,0,1438.0544 -12067,14831,26932,26933,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,8.4499149,8.5301437,0,2,0,-9,24,0,0,75.535957,0,0,0,44,2,4,1,2,2,2019,1,2,9,1,37,42,15,1,0,1,0,14.957378,14.957378,0,0,0,0,0,0,0,0,1,1,0,3.858094,0,0,0,52,55,54.200001,57.490002,5,1,1,0,0,13,4,1,770.5,188525.27,0,0,1922.9524 -12067,14831,26933,26932,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,7.4654684,7.7499461,0,2,0,-9,24,0,0,46.324345,0,0,1,44,2,4,1,2,2,2019,1,1,6,0,25,25,15,1,0,1,0,7.4398837,7.4398837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,52,55,7,1,1,0,0,13,4,1,770.5,188525.27,0,0,1922.9524 -12068,14832,26934,26935,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,5,9.1692238,9.0736094,0,1,0,-9,6,0,2,-21.232224,0,0,0,52,1,4,1,2,2,2019,1,2,8,0,40,42,15,1,0,1,0,24.567669,24.567669,0,0,0,0,0,0,0,0,0,0,0,6.0522237,0,0,0,54.099998,59.110001,51.240002,58.84,6,1,1,0,0,12,5,1,170.5,514870.38,0,0,5236.5449 -12068,14832,26935,26934,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.8282776,8.9613438,0,1,0,-9,6,0,-2,51.102905,0,0,0,54,2,5,1,3,2,2019,1,1,9,0,31,34,15,1,0,1,0,26.62352,26.62352,0,0,0,0,0,0,0,5.48,0,0,0,5.0823293,0,16.556587,3,51.240002,58.84,54.099998,59.110001,2,1,1,0,0,12,5,1,170.5,514870.38,0,0,5236.5449 -12069,14833,26936,26937,-9,-9,1,1,0,28,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-27,0,0,1,1,55,3,1,3,-9,-9,2019,4,2,22,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.350273,1,34.43,35.099998,27.110001,20.15,3,1,1,0,0,2,1,0,1074.5,211198.22,0,0,3101.6492 -12069,14833,26937,26936,-9,-9,2,1,1,55,1,0,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,7,0,27,0,0,0,0,28,2,3,3,-9,-9,2019,4,1,20,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.110001,20.15,34.43,35.099998,6,1,1,0,0,2,1,0,1074.5,211198.22,0,0,3101.6492 -12069,14833,26938,-9,26936,26937,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.6761,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,1074.5,211198.22,0,0,3101.6492 -12069,14833,26939,-9,26936,26937,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.97046,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,1,0,1074.5,211198.22,0,0,3101.6492 -12070,14834,26940,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,4.603673,4.3708119,3,0,0,0,-9,0,-816.15668,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5436959,4.4669914,4.9565315,3,50.27,44.25,-9,-9,6,1,1,0,0,9,2,1,553,313808.75,0,0,1073.119 -12071,14835,26941,-9,26943,-9,2,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-922.92383,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,1259,-21872.76,0,0,1651.0527 -12071,14835,26942,-9,26943,-9,4,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-939.44916,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,2,0,1259,-21872.76,0,0,1651.0527 -12071,14835,26943,-9,-9,-9,1,1,0,30,2,1,3,0,2,-9,2,1,0,0,5,7.6383834,7.5090332,0,4,0,-9,0,-9,0,-1029.0807,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,16,0,15,1,0,-9,0,14.494555,14.494555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,59,-9,-9,6,2,3,0,0,8,2,0,1259,-21872.76,0,0,1651.0527 -12071,14835,26944,-9,26943,-9,3,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1020.7842,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,2,0,1259,-21872.76,0,0,1651.0527 -12072,14836,26945,-9,26947,26946,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1042.859,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,678.75,178383.5,0,0,4599.981 -12072,14836,26946,26947,-9,-9,1,1,1,40,1,2,2,0,1,-9,2,1,0,0,5,8.566659,8.6868792,0,2,0,-9,3,0,5,-132.06548,0,0,0,35,1,3,1,2,3,2019,1,2,5,0,48,50,15,1,0,1,0,12.803327,12.803327,0,0,0,0,0,0,0,0,1,1,0,3.1826632,0,0,0,57.060001,57.759998,49.98,43.25,7,1,1,0,0,5,5,1,678.75,178383.5,0,0,4599.981 -12072,14836,26947,26946,-9,-9,2,1,0,35,1,2,2,0,1,-9,2,1,0,0,3,8.2638102,8.2787323,0,2,0,-9,3,0,-5,4.038197,0,0,1,40,1,5,1,3,3,2019,1,1,14,4,55,24,15,1,1,1,0,7.6032743,7.6032743,0,0,0,0,0,0,0,0,1,1,0,1.2907732,0,0,0,49.98,43.25,57.060001,57.759998,6,1,1,0,0,5,5,1,678.75,178383.5,0,0,4599.981 -12072,14836,26948,-9,26947,26946,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.71362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,5,1,678.75,178383.5,0,0,4599.981 -12073,14837,26949,-9,-9,-9,1,1,1,78,2,0,0,0,2,-9,4,3,0,0,3,0,6.2370982,6.3603253,3,0,0,0,-9,0,-1007.9277,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9492049,6.5713649,0,0,52.970001,51.290001,-9,-9,6,1,1,0,0,2,2,1,1289,261709.69,0,0,437.42413 -12074,14838,26950,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,0,4,7.4895096,7.7406049,5.4960446,4,0,0,0,-9,0,-961.72949,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,21,21,15,1,0,-9,0,10.620171,10.620171,0,0,0,0,0,0,0,0,1,1,0,5.3800812,0,0,0,44.900002,41.419998,-9,-9,4,1,1,0,0,4,3,1,551,226174.81,0,0,1377.804 -12074,14838,26951,-9,26950,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1145.8741,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,1,551,226174.81,0,0,1377.804 -12075,14839,26952,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1053.5408,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,48,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.459999,46.990002,-9,-9,6,1,1,0,0,9,1,1,825,0,0,0,598.06323 -12076,14840,26953,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,3,7.1823187,7.1887431,0,4,0,0,0,-9,0,-1074.2821,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,19,29,15,1,0,-9,0,8.039794,8.039794,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.810001,43.860001,-9,-9,3,1,1,0,0,1,2,0,145,-42906.227,0,0,1547.1682 -12076,14840,26954,-9,26953,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-999.51111,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,1,2,0,145,-42906.227,0,0,1547.1682 -12076,14841,26955,-9,26953,-9,2,1,1,20,2,0,1,0,2,1,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-953.3056,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.43,47.150002,-9,-9,3,1,1,0,0,1,1,0,484,-103650.39,0,0,418.93835 -12077,14842,26956,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,8.1558533,8.2949133,3,0,0,0,-9,0,-900.8623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8796225,7.9746609,0,0,48.450001,44.259998,-9,-9,6,1,1,0,0,7,4,1,1461,974209.44,0,0,2509.6956 -12078,14843,26957,-9,-9,-9,1,1,0,61,2,0,0,0,3,-9,2,1,0,0,4,7.1199236,7.1686754,0,3,0,0,0,-9,0,-1065.53,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,18,15,1,0,-9,0,6.0672817,6.0672817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,1,1,0,0,6,2,0,556,115421.79,0,0,488.18729 -12079,14844,26958,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.9899669,7.753571,3,0,0,0,-9,0,-1032.4277,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0976491,8.225667,0,0,54.450001,56.220001,-9,-9,7,1,1,0,0,8,3,1,3574,657070.88,0,0,1765.551 -12079,14845,26959,-9,26958,-9,2,1,1,33,2,0,0,0,2,-9,3,3,0,0,3,5.6603632,5.6252599,0,3,0,0,0,-9,0,-1037.2639,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9869794,0,0,0,43.900002,57.009998,-9,-9,6,4,2,1,0,8,2,1,290,141996.92,0,0,185.9435 -12080,14846,26960,26962,-9,-9,2,1,1,30,1,1,2,0,2,-9,1,1,0,0,4,7.7213559,8.03971,0,2,0,-9,4,0,1,54.440643,0,0,0,29,2,3,1,-9,-9,2019,1,1,10,1,60,60,15,1,0,1,0,5.0917668,5.0917668,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,44.220001,27.049999,6,1,1,0,0,10,3,1,401.25,-26567.014,0,0,2963.1211 -12080,14846,26961,-9,26962,26960,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-967.95807,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,3,1,401.25,-26567.014,0,0,2963.1211 -12080,14846,26962,26960,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,0,3,7.076087,7.083015,0,2,0,-9,4,0,-1,-66.570595,0,1,1,30,2,4,1,2,2,2019,1,2,11,2,28,25,15,1,0,1,0,5.2771945,5.2771945,0,0,0,0,0,0,0,2,1,1,0,0,0,1.191871,3,44.220001,27.049999,51.830002,57.200001,7,1,1,0,0,10,3,1,401.25,-26567.014,0,0,2963.1211 -12080,14846,26963,-9,26962,26960,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.52136,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,401.25,-26567.014,0,0,2963.1211 -12081,14847,26964,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,2,0,6.9457569,6.7541094,3,0,0,0,-9,0,-1031.4895,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,24,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3748522,7.0359197,0,0,15.03,51.580002,-9,-9,3,1,1,0,0,4,2,0,1122,555847.44,0,0,924.23004 -12082,14848,26965,26966,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,7.1134777,7.2740693,0,2,0,-9,7,0,-1,-35.845596,0,0,1,41,1,5,1,1,2,2019,1,1,11,1,25,23,15,1,0,1,0,8.1302357,8.1302357,0,0,0,0,0,0,0,0,1,1,0,6.2682939,0,0,0,49,56,62.389999,56.709999,5,1,1,0,0,12,3,1,884.25,156799.94,0,0,2799.5747 -12082,14848,26966,26965,-9,-9,1,1,1,41,1,0,2,0,1,-9,1,1,0,0,5,7.2086163,7.2459579,0,2,0,-9,7,0,1,88.895454,0,0,0,40,1,4,1,3,2,2019,1,2,6,0,40,40,15,1,0,1,0,4.690465,4.690465,0,0,0,0,0,0,0,0,1,1,0,6.8599691,0,0,0,62.389999,56.709999,49,56,6,1,1,0,0,12,3,1,884.25,156799.94,0,0,2799.5747 -12082,14848,26967,-9,26965,26966,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.8083,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,3,1,884.25,156799.94,0,0,2799.5747 -12082,14848,26968,-9,26965,26966,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.1847,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,884.25,156799.94,0,0,2799.5747 -12083,14849,26969,26970,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,5.2176504,5.0607262,1,0,-9,7,0,1,87.457047,0,0,0,76,2,5,3,3,3,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2287946,5.0554457,0,0,40.98,55.389999,56.23,52.630001,6,1,1,0,0,11,3,1,750,469201.91,0,0,2898.4463 -12083,14849,26970,26969,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,5,0,8.2023163,8.478097,1,0,-9,7,0,-1,79.615761,0,0,0,77,3,4,3,-9,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0956988,8.2471285,0,0,56.23,52.630001,40.98,55.389999,6,1,1,0,0,11,3,1,750,469201.91,0,0,2898.4463 -12084,14850,26971,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,0,5,8.1377029,8.2443409,0,3,0,-9,0,0,0,-1008.3993,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,11,43,41,15,1,1,-9,0,10.120608,10.120608,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,20.5,60.799999,-9,-9,3,1,1,0,0,4,4,1,204,-175471.72,0,0,2664.7161 -12085,14851,26972,-9,-9,-9,1,1,0,83,2,0,0,0,2,-9,4,3,0,0,2,0,7.5290108,7.6408815,3,0,0,0,-9,0,-933.25299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3057945,7.4096322,0,0,61.68,28.84,-9,-9,7,1,1,0,0,2,3,1,1348,479851.88,0,0,245.64931 -12086,14852,26973,26974,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,54,0,-2,58.404148,0,0,0,72,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,7.106575,0,0,0,0,0,1,1,0,0,0,0,0,63.009998,25.24,54.959999,53.169998,6,2,3,0,0,8,2,1,571,795910.69,0,0,1976.9355 -12086,14852,26974,26973,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.4906406,7.592669,1,0,-9,54,0,2,57.750687,0,0,0,70,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7581286,7.087234,0,0,54.959999,53.169998,63.009998,25.24,6,2,3,0,0,8,2,1,571,795910.69,0,0,1976.9355 -12086,14853,26975,-9,26973,26974,3,1,0,51,2,0,0,0,1,-9,1,1,0,0,3,8.7416897,8.6018429,0,3,0,0,0,-9,0,-984.57269,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,20,0,15,1,0,-9,1,33.996174,33.996174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,2,3,0,0,8,5,1,1177,1261142.6,0,0,2025.0883 -12087,14854,26976,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-981.95007,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.10699,3,34.09,23.67,-9,-9,2,1,1,0,0,9,1,0,435.5,134391.58,0,0,-294.43091 -12087,14854,26977,-9,26976,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-981.74493,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,435.5,134391.58,0,0,-294.43091 -12088,14855,26978,26980,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,2,8.3360462,8.116806,0,2,0,-9,9,0,0,28.651255,0,0,1,39,2,4,1,2,2,2019,1,2,12,0,24,50,15,1,0,1,0,16.024899,16.024899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.02,44.380001,57.16,56.150002,5,1,1,0,0,1,4,1,594.25,169239.83,0,0,3129.7922 -12088,14855,26979,-9,26978,26980,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-895.41235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,1,4,1,594.25,169239.83,0,0,3129.7922 -12088,14855,26980,26978,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,8.6422672,8.4206066,0,2,0,-9,9,0,0,23.532959,0,0,0,39,2,2,1,-9,-9,2019,1,1,9,0,45,90,15,1,0,1,0,13.802435,13.802435,0,0,0,0,0,0,0,2,1,1,0,0,0,3.0166764,3,57.16,56.150002,48.02,44.380001,5,1,1,0,0,1,4,1,594.25,169239.83,0,0,3129.7922 -12088,14855,26981,-9,26978,26980,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.86,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,594.25,169239.83,0,0,3129.7922 -12089,14856,26982,26983,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,1,2,0,8.2888412,8.1172104,1,0,-9,11,0,-1,60.704811,0,0,0,57,2,5,1,-9,-9,2019,3,1,34,12,0,38,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1899462,0,3,8.8000002,49.200001,62.389999,56.709999,3,1,1,0,0,4,5,1,434.5,94964.953,0,0,3791.7114 -12089,14856,26983,26982,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,1,5,7.9402275,8.0979042,0,1,0,-9,37,0,1,-77.020447,0,0,0,56,2,2,3,1,1,2019,2,2,7,0,40,37,15,1,0,4,0,13.041175,13.041175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,8.8000002,49.200001,7,1,1,0,0,4,5,1,434.5,94964.953,0,0,3791.7114 -12090,14857,26984,26985,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,0,4,8.0656223,7.8382535,0,1,0,-9,8,0,0,21.030493,0,0,0,53,1,4,1,-9,-9,2019,1,1,9,1,20,16,15,1,0,1,0,14.552634,14.552634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,53.810001,53.560001,6,1,1,0,0,5,5,1,819,170051.89,0,0,2510.395 -12090,14857,26985,26984,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,8.5267315,8.5538778,0,1,0,-9,8,0,0,55.528111,0,0,0,53,3,4,1,2,2,2019,1,2,4,0,37,38,15,1,0,1,0,13.725894,13.725894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.810001,53.560001,53,54,6,1,1,0,0,5,5,1,819,170051.89,0,0,2510.395 -12091,14858,26986,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,2,1,0,0,3,9.3776722,9.6217184,0,3,0,0,0,-9,0,-954.25928,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,50,120,15,1,1,-9,0,22.856222,22.856222,0,0,0,0,0,0,0,0,0,0,0,2.8368061,0,0,0,28.57,61.360001,-9,-9,6,1,1,0,0,4,5,1,2112,153803.67,0,0,2687.2527 -12092,14859,26987,-9,26988,26989,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.40344,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,431,25270.064,0,0,3238.499 -12092,14859,26988,26989,-9,-9,1,1,0,32,1,0,4,0,2,-9,2,1,0,0,3,7.629271,7.4586148,0,2,0,-9,10,0,-1,11.566215,0,0,1,33,2,2,1,2,2,2019,1,3,21,9,35,32,15,1,1,1,0,7.7447295,7.7447295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.190001,55.740002,26.92,57.41,4,1,1,0,0,9,3,0,431,25270.064,0,0,3238.499 -12092,14859,26989,26988,-9,-9,3,1,1,33,1,0,4,0,2,-9,2,1,0,0,2,8.1869898,7.9792776,0,2,0,-9,10,0,1,-73.857979,0,0,0,32,2,3,1,-9,-9,2019,1,1,15,2,45,55,15,1,0,1,0,10.508213,10.508213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.92,57.41,17.190001,55.740002,4,1,1,0,0,9,3,0,431,25270.064,0,0,3238.499 -12092,14859,26990,-9,26988,26989,2,1,1,16,2,0,4,0,1,-9,97,2,0,0,5,7.349896,7.2133942,0,2,0,0,0,-9,0,-1021.8959,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7326632,0,0,0,46.799999,54.310001,-9,-9,5,1,1,0,0,9,3,0,431,25270.064,0,0,3238.499 -12092,14859,26991,-9,26988,26989,4,1,1,11,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1096.5934,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,9,3,0,431,25270.064,0,0,3238.499 -12092,14859,26992,-9,26988,26989,5,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.21454,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,431,25270.064,0,0,3238.499 -12093,14860,26993,26994,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,0,3,6.8554659,6.6625943,0,1,0,-9,7,0,-5,67.593361,0,0,0,74,3,3,3,2,2,2019,2,1,13,2,16,0,15,1,0,4,0,6.1623721,6.1623721,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.610001,56.93,58.330002,39.490002,1,1,1,0,0,5,2,0,836.5,160435.94,0,0,2146.2979 -12093,14860,26994,26993,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,5,247.17401,0,0,0,69,2,3,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,58.330002,39.490002,46.610001,56.93,6,1,1,0,0,5,2,0,836.5,160435.94,0,0,2146.2979 -12094,14861,26995,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,4,7.2004519,7.1676683,0,3,0,0,0,-9,0,-1027.0485,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,20,18,15,1,0,-9,0,8.0205231,8.0205231,0,0,0,0,0,0,0,2,0,0,0,0,0,5.7951016,3,53.48,49.509998,-9,-9,5,1,1,0,1,10,2,1,1287,392236.13,0,0,2513.7537 -12094,14862,26996,-9,26995,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,0,4,7.5815873,7.9133806,0,3,0,0,0,-9,0,-1023.8849,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,50,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8346388,0,0,0,46.5,58.259998,-9,-9,6,1,1,0,0,10,3,1,1144,123080.56,0,0,1241.8448 -12094,14863,26997,-9,26995,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,5.9695745,5.7421679,0,3,0,0,0,-9,0,-879.21332,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,4,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6811669,0,0,0,44.02,60.700001,-9,-9,6,1,1,0,0,10,2,1,495,157497.83,0,0,-225.74019 -12095,14864,26998,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,1,2,0,6.9961052,6.8676128,3,0,0,0,-9,0,-1067.2347,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,45.456299,0,1,1,0,0,6.6645827,0,0,32.91,32.349998,-9,-9,4,1,1,0,0,5,2,0,677,238958.02,0,0,1419.5947 -12096,14865,26999,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,4,0,5.7375851,5.8037324,3,0,0,0,-9,0,-1062.0867,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67146069,5.6483798,0,0,63.389999,45.09,-9,-9,6,1,1,0,0,7,2,0,887,210302.84,0,0,393.23962 -12097,14866,27000,27002,-9,-9,1,1,0,32,1,1,1,0,1,-9,5,1,0,0,3,8.3766699,8.6358709,0,2,0,-9,6,0,1,-55.001827,0,0,1,31,1,5,1,2,2,2019,1,2,17,5,0,38,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.639999,48.689999,51.73,58.82,6,1,1,0,0,7,5,1,328,381257.09,0,0,3504.5957 -12097,14866,27001,-9,27000,27002,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-986.86078,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,328,381257.09,0,0,3504.5957 -12097,14866,27002,27000,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,0,5,8.5067577,8.5135813,0,2,0,-9,6,0,-1,17.810986,0,0,0,32,1,3,1,-9,-9,2019,1,1,12,0,38,38,15,1,0,1,0,17.853895,17.853895,0,0,0,0,0,0,0,0,1,1,0,1.8042928,0,0,0,51.73,58.82,49.639999,48.689999,6,1,1,0,0,7,5,1,328,381257.09,0,0,3504.5957 -12098,14867,27003,27004,-9,-9,1,1,0,54,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,36,0,-6,-18.028574,0,0,0,60,2,4,3,2,2,2019,4,2,18,7,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.5676384,0,9.3787107,3,36.099998,63.290001,54.200001,57.490002,6,1,1,0,0,9,3,1,677.5,2098294,0,0,1553.1373 -12098,14867,27004,27003,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,7.5932345,7.9618645,1,0,-9,36,0,6,-3.4273503,0,0,0,54,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.8984466,8.1320715,1.8327882,3,54.200001,57.490002,36.099998,63.290001,6,1,1,0,0,9,3,1,677.5,2098294,0,0,1553.1373 -12099,14868,27005,27006,-9,-9,2,1,0,65,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,45,0,-3,-69.588905,0,0,0,68,3,4,1,2,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.844196,0,0,0,57.330002,53.459999,52.77,55.330002,6,1,1,0,0,10,2,1,1597,745403.25,0,0,1311.7954 -12099,14868,27006,27005,-9,-9,1,1,1,68,1,0,0,0,3,-9,1,1,0,0,4,7.3739924,7.6467929,0,1,0,-9,45,0,3,-83.75248,0,0,0,65,2,3,3,2,2,2019,2,2,9,0,45,55,15,1,0,3,0,4.4225407,4.4225407,1,0,15.648298,0,0,0,0,0,1,1,0,3.7458429,0,0,0,52.77,55.330002,57.330002,53.459999,6,1,1,0,0,10,2,1,1597,745403.25,0,0,1311.7954 -12100,14869,27007,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1069.679,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.8743529,3.6210284,0,0,1,1,0,1.4106708,0,0,0,52,45,-9,-9,6,1,1,0,0,4,1,1,556,83201.367,0,0,1066.0188 -12101,14870,27008,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,7.4264674,7.7058229,0,3,0,0,0,-9,0,-975.87274,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,25,25,15,1,0,-9,0,7.03267,7.03267,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,47.509998,-9,-9,3,3,4,0,1,9,3,0,195,102385.9,0,0,1992.714 -12102,14871,27009,27010,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,3,8.3870659,8.5255384,0,2,0,-9,9,0,1,-99.006393,0,0,0,48,3,4,1,3,3,2019,1,1,11,0,48,38,15,1,0,1,0,15.152205,15.152205,0,0,0,0,0,0,0,0,1,1,0,2.1681502,0,0,0,57.330002,53.459999,48.369999,43.779999,6,1,1,0,0,12,4,1,800.66669,173705.75,0,0,2459.4229 -12102,14871,27010,27009,-9,-9,1,1,0,48,1,0,1,0,3,-9,2,1,0,0,4,7.4094262,7.3336258,0,2,0,-9,9,0,-1,150.17857,0,0,0,49,2,3,1,3,3,2019,1,2,12,0,12,12,15,1,0,1,0,14.809319,14.809319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.369999,43.779999,57.330002,53.459999,6,1,1,0,0,12,4,1,800.66669,173705.75,0,0,2459.4229 -12102,14871,27011,-9,27010,27009,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1065.502,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,12,4,1,800.66669,173705.75,0,0,2459.4229 -12103,14872,27012,-9,27015,27013,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.6268,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,441.75,25846.141,0,0,3388.7192 -12103,14872,27013,27015,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,0,3,7.9698281,8.0559235,0,2,0,-9,9,0,2,-17.157187,0,0,0,33,2,3,1,-9,-9,2019,1,1,6,0,100,50,15,1,0,1,0,3.1503079,3.1503079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.060001,55.279999,49.040001,55.860001,4,1,1,0,0,10,4,1,441.75,25846.141,0,0,3388.7192 -12103,14872,27014,-9,27015,27013,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.6631,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,10,4,1,441.75,25846.141,0,0,3388.7192 -12103,14872,27015,27013,-9,-9,1,1,0,33,1,1,2,0,2,-9,2,1,0,0,3,7.9632764,8.1337357,0,2,0,-9,9,0,-2,-36.286652,0,0,1,35,1,3,1,1,2,2019,1,2,11,1,54,45,15,1,0,1,0,7.0064807,7.0064807,0,0,0,0,0,0,0,0,0,0,0,1.3829476,0,0,0,49.040001,55.860001,41.060001,55.279999,6,1,1,0,0,10,4,1,441.75,25846.141,0,0,3388.7192 -12104,14873,27016,27017,-9,-9,1,1,0,67,1,0,0,0,2,-9,1,1,0,0,3,8.72542,8.6568165,0,1,0,-9,37,0,3,88.107925,0,0,0,64,2,3,1,2,3,2019,1,2,9,0,20,30,15,1,0,1,0,28.870832,28.870832,0,0,0,0,0,0,0,0,1,1,0,3.3665533,0,0,0,62.27,48.470001,54.130001,48.040001,6,1,1,0,0,2,5,1,590,1580305,0,0,5536.292 -12104,14873,27017,27016,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,0,3,9.0038643,8.7737951,6.720048,1,0,-9,37,0,-3,-2.1484075,0,0,0,67,2,3,1,-9,-9,2019,1,1,10,0,50,50,15,1,0,1,0,13.741906,13.741906,0,0,0,0,0,0,0,0,1,1,0,6.7456598,6.8975997,0,0,54.130001,48.040001,62.27,48.470001,6,1,1,0,0,2,5,1,590,1580305,0,0,5536.292 -12105,14874,27018,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,2,8.6060047,8.5491705,0,3,0,0,0,-9,0,-913.56476,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,40,15,1,0,-9,0,15.998409,15.998409,0,0,0,0,0,0,0,2,0,0,0,3.0483999,0,6.1383548,3,61.279999,35.650002,-9,-9,5,1,1,0,0,2,5,1,345,-78139.242,0,0,2439.6309 -12106,14875,27019,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,7.296463,7.3985791,3,0,0,0,-9,0,-1074.5039,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.511548,6.9025807,0,0,48.419998,55.98,-9,-9,6,1,1,0,0,6,3,1,286,613603.63,0,0,1095.3129 -12107,14876,27020,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-906.97314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.810001,37.849998,-9,-9,6,1,1,0,0,7,1,1,1446,334027.56,0,0,435.88092 -12108,14877,27021,27022,-9,-9,2,1,0,63,1,0,0,0,2,-9,3,3,0,0,3,0,6.6789889,6.2875252,1,0,-9,9,0,1,53.592022,0,0,0,62,3,3,1,3,3,2019,3,1,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.830852,6.8782406,0,0,41.639999,38.990002,38.27,52.669998,5,1,1,1,0,12,4,1,810.5,1631164.6,0,0,3788.4312 -12108,14877,27022,27021,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,8.7001333,8.4843531,0,1,0,-9,9,0,-1,48.526947,0,0,0,63,2,3,3,-9,3,2019,2,2,12,0,42,48,15,1,0,3,0,13.742319,13.742319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.27,52.669998,41.639999,38.990002,6,1,1,0,0,12,4,1,810.5,1631164.6,0,0,3788.4312 -12109,14878,27023,27025,-9,-9,1,1,0,39,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-3,-92.106438,0,0,1,42,2,2,1,2,2,2019,3,2,10,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.369999,40.830002,34.720001,46.560001,6,1,1,0,0,2,2,1,272.5,35059.797,0,0,1866.9652 -12109,14878,27024,-9,27023,27025,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-835.14911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,1,272.5,35059.797,0,0,1866.9652 -12109,14878,27025,27023,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,0,2,7.6871133,7.8668003,0,2,0,-9,7,0,3,-118.87943,0,0,0,39,2,3,3,2,2,2019,2,1,13,1,25,23,15,1,0,3,0,12.028562,12.028562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.720001,46.560001,55.369999,40.830002,5,1,1,0,0,2,2,1,272.5,35059.797,0,0,1866.9652 -12109,14878,27026,-9,27023,27025,3,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.08649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,1,272.5,35059.797,0,0,1866.9652 -12110,14879,27027,27028,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,9.7751989,9.4812899,0,1,0,-9,3,0,-5,8.1739616,0,0,0,55,2,2,1,2,-9,2019,1,1,6,0,55,52,15,1,0,1,0,28.163889,28.163889,0,0,0,0,0,0,0,0,1,1,0,8.3686476,0,0,0,60.119999,54.799999,56.349998,37.799999,6,1,1,0,0,10,5,1,918.5,1471872.5,0,0,5049.8921 -12110,14879,27028,27027,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,2,0,0,0,1,0,-9,3,0,5,-7.7152753,0,0,0,50,2,4,1,2,3,2019,1,2,9,0,15,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4579949,0,0,0,56.349998,37.799999,60.119999,54.799999,6,1,1,0,0,10,5,1,918.5,1471872.5,0,0,5049.8921 -12110,14880,27029,-9,27027,27028,3,1,1,18,2,0,0,0,2,1,2,1,0,0,4,6.6641846,6.6239204,0,3,0,0,0,-9,0,-1043.3322,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,8,0,15,1,0,-9,1,15.945615,15.945615,0,0,0,0,0,0,0,0,1,1,0,2.7917798,0,0,0,47.259998,56.73,-9,-9,6,1,1,0,0,10,2,1,354,-70690.828,0,0,108.75391 -12111,14881,27030,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-998.89368,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.40947044,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,11,1,1,1750,77636.039,0,0,487.24289 -12112,14882,27031,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,3,0,6.615406,6.6282206,3,0,0,0,-9,0,-1020.668,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3857746,6.7088027,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,5,2,1,850,345161.63,0,0,1606.1868 -12113,14883,27032,-9,-9,27033,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-992.29102,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,4,1,392.5,450687.25,0,0,3110.6003 -12113,14883,27033,-9,-9,-9,1,1,1,64,3,0,1,0,2,-9,4,3,0,0,3,0,8.4222269,8.125843,4,0,0,0,-9,0,-986.20758,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3421283,8.1345625,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,13,4,1,392.5,450687.25,0,0,3110.6003 -12114,14884,27034,27035,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,6.5986376,6.7189307,1,0,1,1,-9,0,-70.405632,0,0,0,68,3,5,1,3,3,2019,3,1,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2276137,6.1865191,0,0,55.790001,52.619999,54.099998,59.110001,6,1,1,0,0,7,3,0,791,1678268,0,0,3739.4749 -12114,14884,27035,27034,-9,-9,1,1,0,68,1,0,0,0,3,-9,2,1,0,0,5,7.1781616,7.207428,0,1,0,1,1,-9,0,-120.60357,0,0,0,68,1,4,3,3,3,2019,2,2,6,0,28,25,15,1,0,4,0,6.2333541,6.2333541,0,0,0,0,0,0,0,0,1,1,0,6.7650509,0,0,0,54.099998,59.110001,55.790001,52.619999,7,1,1,0,0,7,3,0,791,1678268,0,0,3739.4749 -12115,14885,27036,27037,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,9.6063881,9.7772264,0,1,0,-9,1,-9,-4,12.344552,-9,0,0,57,2,3,1,2,-9,2019,1,1,11,1,57,0,15,1,0,1,0,31.663328,31.663328,0,0,0,0,0,0,0,0,0,0,0,7.0573397,0,0,0,60.02,56.419998,58.48,41.860001,7,1,1,0,0,10,5,1,437,898558.81,0,0,6724.2412 -12115,14885,27037,27036,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,0,3,6.4099178,6.369307,0,1,0,-9,1,-9,4,-88.671394,-9,0,0,53,2,5,1,2,3,2019,1,2,7,1,2,0,15,1,0,1,0,28.52813,28.52813,0,0,0,0,0,0,0,0,0,0,0,7.7837415,0,0,0,58.48,41.860001,60.02,56.419998,6,1,1,0,0,10,5,1,437,898558.81,0,0,6724.2412 -12115,14886,27038,-9,27036,27037,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,3,7.53159,7.4250698,0,3,0,-9,0,-9,0,-1035.2665,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,23,0,15,1,1,-9,1,9.5672369,9.5672369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.75,60.630001,-9,-9,5,1,1,0,0,10,3,1,1680,-70557.719,0,0,1177.9524 -12116,14887,27039,-9,27042,27041,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.6937,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,3,0,725,76628.352,0,0,2524.1262 -12116,14887,27040,-9,27042,27041,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.88483,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,0,725,76628.352,0,0,2524.1262 -12116,14887,27041,27042,27044,27043,1,1,1,39,1,1,2,0,3,-9,2,1,0,0,3,7.8031487,7.7652326,0,2,0,-9,7,0,4,-11.616382,0,0,0,35,3,4,1,3,2,2019,1,2,11,0,30,40,15,1,0,1,0,9.445919,9.445919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,52.48,54.330002,6,1,1,0,0,13,3,0,725,76628.352,0,0,2524.1262 -12116,14887,27042,27041,-9,-9,2,1,0,35,1,1,2,0,3,-9,2,1,0,0,4,7.5307193,7.0027194,0,2,0,-9,7,0,-4,55.901558,0,0,1,39,3,3,1,2,-9,2019,1,1,9,0,24,40,15,1,0,1,0,5.8567295,5.8567295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.330002,55.360001,51.57,6,1,1,0,0,13,3,0,725,76628.352,0,0,2524.1262 -12116,14888,27043,27044,-9,-9,5,1,1,65,1,1,2,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,1,-9,8,0,-9,0,0,57,3,3,3,2,2,2019,4,6,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.240002,26.68,50.400002,37.68,6,1,1,1,1,13,1,0,1382,20843.035,0,0,1636.6158 -12116,14888,27044,27043,-9,-9,6,1,0,57,1,1,2,0,3,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,-8,0,-9,0,0,65,3,2,3,-9,-9,2019,4,5,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.400002,37.68,60.240002,26.68,6,1,1,1,0,13,1,0,1382,20843.035,0,0,1636.6158 -12117,14889,27045,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,2,8.1077747,8.1637745,0,3,0,0,0,-9,0,-1102.9978,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,40,37,15,1,0,-9,0,12.550977,12.550977,0,0,0,0,0,0,0,0,0,0,0,3.4124784,0,0,0,28.07,54.029999,-9,-9,2,1,1,0,0,2,4,0,2463,210057.94,0,0,1171.183 -12118,14890,27046,27048,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,0,2,8.1579332,8.3998861,0,2,0,-9,26,0,11,28.368118,0,0,0,47,3,3,3,3,3,2019,2,1,17,5,44,44,15,1,1,3,0,10.718198,10.718198,0,0,0,0,0,0,0,7,1,1,0,0,0,15.718346,3,29.540001,46.029999,40.080002,57.509998,3,1,1,0,0,6,3,1,656.66669,60328.836,0,0,1988.9926 -12118,14890,27047,-9,27048,27046,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1220.0112,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.720001,58.130001,-9,-9,7,1,1,0,0,6,3,1,656.66669,60328.836,0,0,1988.9926 -12118,14890,27048,27046,-9,-9,1,1,0,47,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,26,0,-11,-56.122818,0,0,0,58,2,2,1,-9,3,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.080002,57.509998,29.540001,46.029999,5,1,1,0,0,6,3,1,656.66669,60328.836,0,0,1988.9926 -12118,14891,27049,-9,27048,27046,3,1,1,23,2,0,1,0,3,-9,2,1,0,0,4,7.8433566,8.2021952,0,3,0,0,0,-9,0,-1105.6683,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,38,40,15,1,0,-9,1,10.286243,10.286243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,6,4,1,944,15818.577,0,0,1595.8242 -12118,14892,27050,-9,27048,27046,5,1,0,23,2,0,1,0,2,-9,3,3,0,0,4,5.29006,5.4635367,0,3,0,0,0,-9,0,-1166.1563,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,1,0,6,2,1,436,0,0,0,-397.59827 -12119,14893,27051,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-948.72552,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.4491439,0,0,0,38.990002,43.23,-9,-9,4,1,1,0,0,10,1,0,903,-51489.422,0,0,-74.205666 -12120,14894,27052,27053,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,6.5648737,6.7830453,0,1,0,-9,8,0,-3,24.785063,0,0,0,56,2,2,1,3,3,2019,1,1,10,1,10,14,15,1,0,1,0,10.664436,10.664436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,39.32,54.040001,6,2,3,0,0,9,4,1,253.5,935274.75,0,0,2514.759 -12120,14894,27053,27052,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,2,8.2221146,8.3305969,0,1,0,-9,8,0,3,16.762745,0,0,0,53,3,4,1,3,3,2019,1,2,12,0,50,55,15,1,0,1,0,10.360829,10.360829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,54.040001,51,54,4,2,3,0,0,9,4,1,253.5,935274.75,0,0,2514.759 -12121,14895,27054,27056,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,2,7.2403021,7.2806787,0,2,0,-9,9,0,9,2.8388631,0,0,0,42,2,3,1,2,3,2019,1,1,31,12,30,30,15,1,1,1,0,5.5260282,5.5260282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.33,36.869999,42.220001,56.110001,2,1,1,0,0,2,3,1,450.33334,117335.63,0,0,2563 -12121,14895,27055,-9,27054,27056,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.00171,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,1,450.33334,117335.63,0,0,2563 -12121,14895,27056,27054,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,7.9138379,8.2414742,0,2,0,-9,23,0,0,-50.197727,0,0,0,51,2,2,1,2,2,2019,1,2,13,2,46,53,15,1,0,1,0,9.1604319,9.1604319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.220001,56.110001,20.33,36.869999,5,1,1,0,0,2,3,1,450.33334,117335.63,0,0,2563 -12121,14896,27057,-9,27054,27056,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,4,7.3941107,7.6014361,0,3,0,0,0,-9,0,-945.94165,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,38,15,1,0,-9,1,4.28057,4.28057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,3,1,1372,33328.297,0,0,1385.9725 -12122,14897,27058,27059,-9,-9,2,1,0,62,1,0,0,0,1,-9,8,3,1,1,2,0,0,0,1,0,-9,43,0,0,-130.96033,0,0,0,62,1,4,1,2,2,2019,3,1,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.419998,25.950001,61.470001,40.470001,4,1,1,0,0,6,4,0,746,1684008.9,0,0,2746.8064 -12122,14897,27059,27058,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,4,9.0949593,8.8365402,0,1,0,-9,43,0,0,32.209473,0,0,0,62,1,2,3,2,2,2019,2,2,6,0,48,50,15,1,0,3,0,14.612466,14.612466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.470001,40.470001,40.419998,25.950001,6,1,1,0,0,6,4,0,746,1684008.9,0,0,2746.8064 -12122,14898,27060,-9,27058,27059,3,1,1,31,2,0,0,0,1,-9,2,1,0,0,2,8.2893667,8.3535395,0,3,0,0,0,-9,0,-936.42548,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,36,12,51,52,15,1,1,-9,1,8.2795773,8.2795773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,.44999999,63.900002,-9,-9,2,1,1,0,0,6,4,0,1053,15749.39,0,0,1096.3163 -12122,14899,27061,-9,27058,27059,4,1,0,23,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-821.78723,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,22,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,2,1,1,0,0,6,1,0,116,27275.668,0,0,-6.1902699 -12123,14900,27062,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,2,1,0,0,2,8.2396593,8.4937334,0,3,0,0,0,-9,0,-917.37469,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,40,15,1,0,-9,0,9.5071735,9.5071735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.439999,46.970001,-9,-9,5,3,4,0,0,6,4,1,297,-20533.953,0,0,2785.5288 -12124,14901,27063,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1068.4473,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,1,1,922,156332.7,0,0,1067.6526 -12125,14902,27064,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,5.4330406,5.8134017,3,0,0,0,-9,0,-1023.1251,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3777089,0,0,36.779999,41.130001,-9,-9,5,1,1,0,0,13,2,1,583,-73753.867,0,0,1508.2188 -12126,14903,27065,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,3,7.523931,7.628921,0,4,0,0,0,-9,0,-997.92932,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,0,15,1,0,-9,0,5.9928398,5.9928398,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.139999,45.740002,-9,-9,4,1,1,0,0,1,2,0,1064,20387.297,0,0,802.11969 -12127,14904,27066,-9,-9,-9,1,1,0,68,3,0,2,0,3,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-929.78345,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2532613,0,0,0,66.370003,27.83,-9,-9,7,1,1,0,0,9,1,1,1087,-54646.375,0,0,122.35139 -12127,14905,27067,27069,-9,-9,3,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.8387346,8.9545937,0,2,0,-9,16,0,-5,-171.35989,0,0,0,40,2,5,1,2,2,2019,1,2,6,0,50,55,15,1,0,1,0,13.299639,13.299639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,60.02,56.419998,7,1,1,0,0,9,4,1,199,73861.797,0,0,2891.3313 -12127,14905,27068,-9,27069,27067,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.44409,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,4,1,199,73861.797,0,0,2891.3313 -12127,14905,27069,27067,27066,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,5,7.8122935,7.9258761,0,2,0,-9,17,0,5,-60.285912,0,0,1,35,2,4,1,3,-9,2019,1,3,6,0,38,41,15,1,0,1,0,7.328845,7.328845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,57.16,56.150002,1,1,1,0,0,9,4,1,199,73861.797,0,0,2891.3313 -12127,14905,27070,-9,27069,27067,5,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.11792,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,199,73861.797,0,0,2891.3313 -12128,14906,27071,27072,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,0,3,6.9064212,6.6959448,0,1,0,-9,14,0,-10,20.871872,0,0,0,57,2,3,3,2,1,2019,2,2,5,0,16,0,15,1,0,3,0,5.3240819,5.3240819,0,0,0,0,0,0,0,0,1,1,0,5.9976602,0,0,0,54.369999,54.799999,53.169998,36.240002,6,2,3,0,1,7,2,0,818.5,329848.91,0,0,2717.9268 -12128,14906,27072,27071,-9,-9,2,1,1,57,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,14,0,10,-76.583443,0,0,0,47,1,3,1,-9,-9,2019,3,1,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.169998,36.240002,54.369999,54.799999,6,1,1,1,0,7,2,0,818.5,329848.91,0,0,2717.9268 -12128,14907,27073,-9,-9,-9,3,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,6.9675827,7.1400084,0,3,0,0,0,-9,0,-1047.2396,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,15,15,15,1,0,-9,0,7.2434902,7.2434902,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,7,2,0,200,-84063.156,0,0,12.999175 -12129,14908,27074,27076,-9,-9,2,1,0,43,1,0,3,0,2,-9,2,1,0,0,3,8.2097321,7.9797602,0,2,0,-9,21,0,-1,-67.691658,0,0,1,44,1,5,1,2,3,2019,1,1,17,5,40,42,15,1,1,1,0,10.033557,10.033557,0,0,0,0,0,0,0,2,1,1,0,7.1627684,0,4.8154597,3,28.58,55.830002,54.099998,59.110001,5,1,1,0,0,13,4,1,794.79999,774625.88,0,0,3538.7783 -12129,14908,27075,-9,27074,27076,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.4867,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,1,794.79999,774625.88,0,0,3538.7783 -12129,14908,27076,27074,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,0,5,8.7780075,8.609621,0,2,0,-9,21,0,1,34.582291,0,0,0,43,2,3,1,3,2,2019,1,2,9,0,48,40,15,1,0,1,0,14.281859,14.281859,0,0,0,0,0,0,0,7,1,1,0,0,0,8.0023603,3,54.099998,59.110001,28.58,55.830002,5,1,1,0,0,13,4,1,794.79999,774625.88,0,0,3538.7783 -12129,14908,27077,-9,27074,27076,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.44489,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,794.79999,774625.88,0,0,3538.7783 -12129,14908,27078,-9,27074,27076,3,1,0,16,2,0,3,0,-9,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-993.80676,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,13,4,1,794.79999,774625.88,0,0,3538.7783 -12130,14909,27079,27081,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,0,5,8.2652922,8.4741678,0,2,0,-9,2,0,-13,51.863247,0,1,0,39,2,3,1,-9,-9,2019,1,1,12,1,48,60,15,1,0,1,0,8.3296566,8.3296566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,44.299999,55.279999,6,1,1,0,0,5,4,0,562,52122.633,0,0,3040.3704 -12130,14909,27080,-9,27081,27079,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-846.08801,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,0,562,52122.633,0,0,3040.3704 -12130,14909,27081,27079,-9,-9,1,1,0,39,1,1,1,0,2,-9,5,1,0,0,3,7.8403449,8.1525784,0,2,0,-9,2,0,13,35.271889,0,0,1,26,2,5,1,1,1,2019,1,2,10,2,38,42,15,1,0,1,0,9.5130997,9.5130997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.299999,55.279999,48.77,60.16,5,1,1,0,0,5,4,0,562,52122.633,0,0,3040.3704 -12131,14910,27082,27084,-9,-9,1,1,0,24,1,0,1,0,1,0,7,2,0,0,2,6.2925749,6.2368646,0,2,0,-9,5,0,-7,-98.000961,-9,1,1,31,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.439999,48.18,41.470001,58.080002,4,1,1,0,0,6,3,0,384.33334,172674,0,0,1651.3671 -12131,14910,27083,-9,27082,27084,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.6649,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,3,0,384.33334,172674,0,0,1651.3671 -12131,14910,27084,27082,-9,-9,2,1,1,31,1,0,1,0,2,-9,2,1,0,0,3,8.1095285,8.3295889,0,2,0,-9,5,0,7,149.21768,0,0,0,24,1,2,2,-9,-9,2019,2,1,17,5,40,45,15,1,1,2,0,9.7650604,9.7650604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.470001,58.080002,34.439999,48.18,4,1,1,0,0,6,3,0,384.33334,172674,0,0,1651.3671 -12132,14911,27085,27086,-9,-9,1,1,0,52,1,0,0,0,2,-9,8,3,1,1,1,0,3.8354034,3.7809856,1,0,-9,16,0,-8,94.158951,0,0,0,60,2,2,3,-9,-9,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,3.941859,22.922047,1,56.27,20.58,37.880001,27.26,5,1,1,0,0,12,2,0,1948.5,46427.031,0,0,1812.9927 -12132,14911,27086,27085,-9,-9,2,1,1,60,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,16,0,8,-82.392838,0,0,0,52,2,1,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.880001,27.26,56.27,20.58,6,1,1,0,0,12,2,0,1948.5,46427.031,0,0,1812.9927 -12133,14912,27087,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,2,0,7.4372487,7.383368,3,0,0,0,-9,0,-1118.7216,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0723052,7.2771249,0,0,23.76,31.41,-9,-9,3,1,1,0,0,1,3,1,1398,1023572.8,0,0,1667.2784 -12133,14913,27088,-9,27087,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,8.1617498,7.9922204,0,3,0,0,0,-9,0,-954.0094,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,24,9,37,38,15,1,1,-9,1,10.117583,10.117583,0,0,0,0,0,0,0,0,1,1,0,2.7250006,0,0,0,21.6,53.950001,-9,-9,5,1,1,0,0,1,4,1,408,-33384.66,0,0,295.03061 -12134,14914,27089,27090,-9,-9,1,1,0,72,1,0,0,0,2,-9,1,1,0,0,4,5.4361548,5.645493,0,1,0,-9,53,0,-1,-23.396408,0,0,0,73,2,3,1,3,-9,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0452442,0,0,0,60.84,43.450001,53,47,1,1,1,0,0,12,4,1,673,815368.63,0,0,3437.7202 -12134,14914,27090,27089,-9,-9,2,1,1,73,1,0,0,0,2,-9,1,1,0,1,3,8.5786066,8.5541887,0,1,0,-9,7,0,1,-84.930359,0,0,0,72,2,4,1,-9,-9,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6900148,0,0,0,53,47,60.84,43.450001,6,1,1,0,0,12,4,1,673,815368.63,0,0,3437.7202 -12135,14915,27091,-9,-9,-9,1,1,0,54,2,0,1,0,1,-9,1,1,0,0,3,5.8726606,6.1462121,0,4,0,0,0,-9,0,-1009.4117,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,40,40,15,1,1,-9,0,.99789608,.99789608,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.509998,40.290001,-9,-9,5,3,4,0,1,7,2,1,445,415025.25,0,0,1794.7822 -12135,14915,27092,-9,27091,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1008.4631,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,7,2,1,445,415025.25,0,0,1794.7822 -12136,14916,27093,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,2,1,0,0,2,7.004498,7.6061196,6.1101832,3,0,0,0,-9,0,-896.56335,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,22,23,15,1,0,-9,0,6.1297741,6.1297741,0,0,0,0,0,0,0,0,1,1,0,0,6.2252407,0,0,44.290001,47.709999,-9,-9,5,1,1,0,0,2,3,1,1900,513882.81,0,0,1787.3988 -12137,14917,27094,27096,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,0,3,9.0032587,9.0832176,0,2,0,-9,11,0,-1,51.21994,0,0,0,49,1,4,1,-9,-9,2019,1,1,12,0,42,43,15,1,0,1,0,22.086086,22.086086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.610001,56.93,49.799999,56.68,5,1,1,0,0,8,5,1,837,1139935.6,0,0,5238.8735 -12137,14917,27095,-9,27094,27096,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.07068,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,5,1,837,1139935.6,0,0,5238.8735 -12137,14917,27096,27094,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,0,4,8.9376507,9.0886669,0,2,0,-9,21,0,1,-68.617989,0,0,0,48,1,3,1,2,2,2019,1,2,10,0,50,60,15,1,0,1,0,13.853196,13.853196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.799999,56.68,46.610001,56.93,5,1,1,0,0,8,5,1,837,1139935.6,0,0,5238.8735 -12138,14918,27097,-9,-9,-9,1,1,0,66,3,0,2,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1009.8005,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,10,1,1,1247,0,0,0,1730.4835 -12138,14919,27098,-9,27097,-9,2,1,0,43,3,0,2,0,2,-9,6,3,0,1,2,0,5.1967826,5.3400207,3,0,0,0,-9,0,-965.84357,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,4.8811841,0,118.31055,3,32.560001,36.669998,-9,-9,3,1,1,0,0,10,2,1,525,8168.1836,0,0,1686.6426 -12138,14919,27099,-9,27098,-9,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-997.57684,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,525,8168.1836,0,0,1686.6426 -12139,14920,27100,27101,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.8433247,9.0474005,1,0,-9,6,0,19,84.623772,0,0,0,50,2,4,1,-9,-9,2019,3,1,14,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6510367,8.913619,0,0,36.599998,57.389999,44.830002,41.43,4,1,1,0,0,8,5,1,772.5,1135107.9,0,0,5853.8535 -12139,14920,27101,27100,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.7565031,8.8547525,0,1,0,-9,6,0,-19,10.207838,0,0,0,69,1,4,3,3,2,2019,2,2,27,10,90,50,15,1,1,4,0,7.13625,7.13625,0,0,0,0,0,0,0,0,1,1,0,3.1164343,0,0,3,44.830002,41.43,36.599998,57.389999,3,3,4,0,0,8,5,1,772.5,1135107.9,0,0,5853.8535 -12140,14921,27102,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,4,6.5349698,6.7154493,5.8011537,3,0,0,0,-9,0,-868.67163,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,8,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9146878,6.1442361,0,3,55.73,53.98,-9,-9,6,1,1,0,0,8,2,1,698,840089,0,0,1056.9509 -12140,14922,27103,-9,-9,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,1,8.1465321,8.3106861,0,3,0,0,0,-9,0,-827.64532,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,35,0,15,1,1,-9,0,10.743759,10.743759,0,0,0,0,0,0,0,0,1,1,0,.058466692,0,0,0,29.43,41.009998,-9,-9,1,1,1,0,0,8,4,1,469,-32215.137,0,0,436.11438 -12141,14923,27104,27105,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.6928463,9.5530624,0,2,0,-9,8,0,0,94.27977,0,0,0,42,1,4,1,-9,-9,2019,1,1,12,0,44,43,15,1,0,1,0,32.433987,32.433987,0,0,0,0,0,0,0,0,0,0,0,7.172811,0,0,0,46.900002,56.66,57.16,56.150002,5,1,1,0,0,10,5,1,383,4792835,0,0,6537.334 -12141,14923,27105,27104,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.4963179,8.4132061,0,2,0,-9,15,0,0,76.453606,0,0,1,42,1,4,1,1,1,2019,1,2,8,0,34,38,15,1,0,1,0,16.505522,16.505522,0,0,0,0,0,0,0,0,0,0,0,1.7219747,0,0,0,57.16,56.150002,46.900002,56.66,6,1,1,0,0,10,5,1,383,4792835,0,0,6537.334 -12141,14923,27106,-9,27105,27104,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1011.4191,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,5,1,383,4792835,0,0,6537.334 -12141,14923,27107,-9,27105,27104,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.3656,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,383,4792835,0,0,6537.334 -12142,14924,27108,-9,-9,-9,1,1,1,93,3,0,0,0,3,-9,4,3,0,0,4,0,4.7262125,4.4547739,3,0,0,0,-9,0,-1051.0088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7340775,4.3246531,0,0,51.380001,54.630001,-9,-9,5,1,1,0,0,6,1,1,298,-45670.98,0,0,1475.8563 -12143,14925,27109,27110,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,9.4940014,9.5888605,0,1,0,-9,10,0,5,-132.72403,0,0,0,54,2,4,1,3,3,2019,1,2,14,2,45,45,15,1,0,1,0,29.400263,29.400263,0,0,0,0,0,0,0,0,0,0,0,4.7060089,0,0,0,52.380001,55.599998,54.790001,55.860001,6,1,1,0,0,2,5,1,418,474944.25,0,0,4482.0356 -12143,14925,27110,27109,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,6.8291192,7.0303359,0,1,0,-9,10,0,-5,-39.992828,0,0,0,59,2,4,1,2,2,2019,1,1,7,0,18,18,15,1,0,1,0,6.5068188,6.5068188,0,0,0,0,0,0,0,0,0,0,0,4.1181574,0,0,0,54.790001,55.860001,52.380001,55.599998,7,1,1,0,0,2,5,1,418,474944.25,0,0,4482.0356 -12143,14926,27111,-9,27110,27109,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.4644814,8.2237482,0,3,0,0,0,-9,0,-1077.3206,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,41,38,15,1,0,-9,1,12.88352,12.88352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,-9,-9,7,1,1,0,0,2,5,1,295,63372.012,0,0,2335.0657 -12144,14927,27112,-9,27113,27114,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-918.44861,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,9,3,1,1260.5,71255.992,0,0,2053.0527 -12144,14927,27113,27114,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,5.9871597,5.9658246,0,2,0,-9,7,0,-10,-62.823402,0,0,1,52,2,4,1,3,2,2019,1,2,11,0,18,21,15,1,0,1,0,2.5988595,2.5988595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.880001,56.68,51.919998,51.529999,5,1,1,0,0,9,3,1,1260.5,71255.992,0,0,2053.0527 -12144,14927,27114,27113,-9,-9,2,1,1,52,1,0,2,0,2,-9,1,1,0,0,4,8.3275499,8.3895521,0,2,0,-9,7,0,10,-59.33403,0,0,0,42,2,4,1,-9,-9,2019,1,1,12,0,54,55,15,1,0,1,0,6.3724136,6.3724136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.919998,51.529999,52.880001,56.68,6,1,1,0,0,9,3,1,1260.5,71255.992,0,0,2053.0527 -12144,14927,27115,-9,27113,27114,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1072.5826,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,9,3,1,1260.5,71255.992,0,0,2053.0527 -12145,14928,27116,27117,-9,-9,2,1,1,39,1,0,1,0,3,-9,2,1,0,0,4,8.4505138,8.4264269,0,2,0,-9,11,0,2,-25.834011,0,0,0,37,1,4,1,3,3,2019,1,1,9,1,50,50,15,1,0,1,0,8.8612242,8.8612242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,49,55,5,1,1,0,0,7,4,1,464.66666,386355.09,0,0,2509.5049 -12145,14928,27117,27116,-9,-9,1,1,0,37,1,0,1,0,1,-9,1,1,0,0,4,7.7355232,7.8132987,0,2,0,-9,11,0,-2,55.178082,0,0,1,39,3,4,1,1,2,2019,1,2,11,2,47,42,15,1,0,1,0,6.4783015,6.4783015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,56,5,1,1,0,0,7,4,1,464.66666,386355.09,0,0,2509.5049 -12145,14928,27118,-9,27117,27116,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.3864,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,464.66666,386355.09,0,0,2509.5049 -12146,14929,27119,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,6.3806224,6.3191004,3,0,0,0,-9,0,-1188.9811,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7011929,0,0,57.150002,29.190001,-9,-9,6,1,1,0,0,9,2,0,2188,191621.95,0,0,1893.1202 -12147,14930,27120,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,2,1,0,0,4,8.7381639,8.6388178,5.1361713,3,0,0,0,-9,0,-840.65442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,60,80,15,1,0,-9,0,9.4821301,9.4821301,0,0,0,0,0,0,0,0,1,1,0,4.6451821,5.1338062,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,11,5,1,476,532319.88,0,0,3350.3787 -12148,14931,27121,27123,-9,-9,1,1,1,65,1,0,1,0,2,-9,2,1,0,0,2,7.9465017,8.5043087,7.0104008,2,0,-9,39,0,1,-121.53835,0,0,0,64,3,1,3,3,3,2019,2,2,11,0,37,37,15,1,0,3,0,8.3329344,8.3329344,0,0,0,0,0,0,0,71.5,1,1,0,5.1102014,7.5980282,73.73291,1,56.740002,44.560001,19.01,22.639999,5,1,1,0,0,2,3,1,875,84839.383,0,0,3581.5417 -12148,14931,27122,-9,27123,27121,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.123,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.990002,49.990002,-9,-9,6,1,1,0,0,2,3,1,875,84839.383,0,0,3581.5417 -12148,14931,27123,27121,-9,-9,2,1,0,64,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,39,0,-1,62.680359,0,0,0,65,2,2,1,3,3,2019,3,1,24,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,56.740002,44.560001,1,1,1,0,0,2,3,1,875,84839.383,0,0,3581.5417 -12149,14932,27124,-9,27126,27125,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.46881,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,4,1,231.25,327655.88,0,0,3435.9719 -12149,14932,27125,27126,-9,-9,2,1,1,42,1,1,2,0,1,-9,2,1,0,0,2,8.3077917,8.2091265,0,2,0,-9,8,0,2,58.726353,0,0,0,40,1,3,1,-9,-9,2019,1,1,25,8,32,37,15,1,1,1,0,13.179585,13.179585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.68,57.419998,55.529999,51.549999,2,1,1,0,1,9,4,1,231.25,327655.88,0,0,3435.9719 -12149,14932,27126,27125,-9,-9,1,1,0,40,1,1,2,0,1,-9,2,1,0,0,3,8.5664129,8.3692884,0,2,0,-9,8,0,-2,-22.266472,0,0,1,42,1,2,1,2,2,2019,1,2,6,0,39,30,15,1,0,1,0,12.324534,12.324534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.529999,51.549999,23.68,57.419998,6,1,1,0,0,9,4,1,231.25,327655.88,0,0,3435.9719 -12149,14932,27127,-9,27126,27125,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.31067,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,231.25,327655.88,0,0,3435.9719 -12150,14933,27128,27129,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,0,-30.830683,0,0,0,73,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,2.8547633,0,78.169174,1,51.279999,45.200001,54.939999,26.26,5,1,1,0,0,4,2,1,634.5,433389.19,0,0,1330.2206 -12150,14933,27129,27128,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,2,0,7.5306325,7.1936069,1,0,-9,9,0,0,104.46638,0,0,0,73,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,116.92616,11.43187,4.733037,.80711889,0,0,1,1,0,6.5872135,7.6061053,0,0,54.939999,26.26,51.279999,45.200001,6,1,1,0,0,4,2,1,634.5,433389.19,0,0,1330.2206 -12151,14934,27130,-9,-9,-9,1,1,0,46,2,0,1,0,3,-9,2,1,0,0,2,7.7052808,7.8041754,0,4,0,0,0,-9,0,-893.44556,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,12,52,46,15,1,1,-9,0,5.158813,5.158813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.98,53.630001,-9,-9,3,1,1,0,1,6,3,0,138,63812.051,0,0,1113.0834 -12151,14935,27131,-9,27130,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-984.18127,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,52.450001,-9,-9,4,1,1,0,0,6,3,0,396,0,0,0,0 -12152,14936,27132,27133,-9,-9,2,1,0,25,1,0,0,0,1,1,2,1,0,0,4,8.0233536,8.324296,0,1,0,-9,3,0,-2,-46.402035,-9,1,1,27,2,5,1,-9,-9,2019,1,1,10,0,38,0,15,1,0,1,0,13.423198,13.423198,0,0,0,0,0,0,0,0,0,0,0,7.5571113,0,0,0,54.200001,57.490002,60.02,56.419998,6,1,1,0,0,12,5,1,402,-69082.336,0,0,4024.5991 -12152,14936,27133,27132,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,5,8.4141493,8.4205446,0,1,0,-9,3,0,2,-64.345322,0,1,0,25,1,4,1,-9,-9,2019,1,2,10,0,65,56,15,1,0,1,0,7.8777032,7.8777032,0,0,0,0,0,0,0,0,0,0,0,4.3587713,0,0,0,60.02,56.419998,54.200001,57.490002,7,1,1,0,0,12,5,1,402,-69082.336,0,0,4024.5991 -12153,14937,27134,27135,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.4634261,6.441659,1,0,-9,7,0,-2,36.335201,0,0,0,68,2,4,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7472658,6.4601998,.22451131,3,26.48,52.73,37.34,52.919998,5,1,1,0,0,13,2,1,579.5,917309.75,0,0,1012.1964 -12153,14937,27135,27134,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,2,-45.181175,0,0,0,66,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,.078450203,0,0,0,0,0,1,1,0,0,0,0,0,37.34,52.919998,26.48,52.73,5,1,1,0,0,13,2,1,579.5,917309.75,0,0,1012.1964 -12154,14938,27136,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,0,2,8.1088886,7.8970475,0,3,0,0,0,-9,0,-973.37274,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,40,15,1,0,-9,0,9.8204269,9.8204269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,40.240002,-9,-9,4,1,1,0,0,13,4,0,774,151729.36,0,0,802.97607 -12155,14939,27137,27138,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.2071247,8.2926903,7.051631,1,0,-9,10,0,-3,80.563301,0,0,0,63,2,3,3,2,1,2019,2,1,12,0,37,37,15,1,0,4,0,13.615835,13.615835,0,0,0,0,0,0,0,0,0,0,0,1.6482749,7.3518953,0,0,50.119999,49.779999,51.700001,49.110001,5,1,1,0,0,4,4,1,1565.5,972892.31,0,0,1854.0476 -12155,14939,27138,27137,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,5.7673688,5.2666502,1,0,-9,10,0,3,-12.056654,0,0,0,60,2,3,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.93847173,5.6725621,0,0,51.700001,49.110001,50.119999,49.779999,2,1,1,0,0,4,4,1,1565.5,972892.31,0,0,1854.0476 -12156,14940,27139,27140,-9,-9,2,1,0,52,1,0,0,0,2,-9,10,3,0,0,4,0,0,0,1,0,-9,7,0,6,184.49287,0,0,0,46,2,3,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.6903605,1,19.959999,66.910004,42.139999,38.73,5,1,1,0,0,9,2,0,1495.5,100596.49,0,0,1819.9478 -12156,14940,27140,27139,-9,-9,1,1,1,46,1,0,0,0,2,-9,1,1,0,1,3,5.282568,5.6704493,0,1,0,-9,5,0,-6,-12.80236,0,0,0,52,2,4,3,-9,-9,2019,2,2,20,8,30,30,15,1,1,3,0,.86862522,.86862522,0,0,0,0,0,0,0,2,1,1,0,0,0,1.5424629,3,42.139999,38.73,19.959999,66.910004,4,1,1,0,0,9,2,0,1495.5,100596.49,0,0,1819.9478 -12157,14941,27141,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,0,5,7.795723,7.9231658,0,3,0,0,0,-9,0,-1116.9125,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,26,22,15,1,0,-9,0,9.0309868,9.0309868,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.7976604,3,62.150002,49.939999,-9,-9,7,1,1,0,0,9,3,1,631,942337.44,0,0,1879.9086 -12158,14942,27142,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-942.20227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.3005896,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,1,1,0,356,15180.551,0,0,1480.2139 -12159,14943,27143,-9,27145,27144,5,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.43384,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,3,1,742.66669,202136.53,0,0,1299.048 -12159,14943,27144,27145,-9,-9,1,1,1,42,1,1,1,0,1,-9,2,1,0,0,3,7.9770651,8.3736906,0,2,0,-9,3,0,15,98.081139,0,0,0,27,1,3,3,2,3,2019,2,4,9,0,48,40,15,1,0,3,0,9.2801428,9.2801428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,39.119999,37.240002,4,2,3,0,0,4,3,1,742.66669,202136.53,0,0,1299.048 -12159,14943,27145,27144,-9,-9,4,1,0,27,1,1,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,3,0,-15,11.789303,0,1,1,42,1,3,1,-9,-9,2019,3,1,16,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.119999,37.240002,49.040001,55.860001,1,2,3,0,0,4,3,1,742.66669,202136.53,0,0,1299.048 -12160,14944,27146,27148,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,3,8.2208748,8.3100891,0,2,0,-9,18,0,0,11.612552,0,0,1,42,1,3,1,3,3,2019,1,2,9,0,22,18,15,1,0,1,0,17.651634,17.651634,0,0,0,0,0,0,0,0,1,1,0,1.7210417,0,0,0,57.93,46.290001,57.330002,53.459999,6,1,1,0,0,11,4,1,518.66669,348712.22,0,0,4098.4692 -12160,14944,27147,-9,27146,27148,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.87225,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,4,1,518.66669,348712.22,0,0,4098.4692 -12160,14944,27148,27146,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,8.3562603,8.6342669,0,2,0,-9,15,0,0,136.0305,0,0,0,42,1,3,1,2,2,2019,1,1,7,1,39,40,15,1,0,1,0,21.063499,21.063499,0,0,0,0,0,0,0,0,1,1,0,7.0997,0,0,0,57.330002,53.459999,57.93,46.290001,5,1,1,0,0,11,4,1,518.66669,348712.22,0,0,4098.4692 -12161,14945,27149,27150,-9,-9,1,1,0,34,1,0,0,0,2,-9,2,1,0,0,5,8.3554335,8.5178156,0,1,0,-9,6,0,0,86.064369,0,0,1,34,1,5,1,3,2,2019,1,2,6,0,44,40,15,1,0,1,0,14.68107,14.68107,0,0,0,0,0,0,0,0,0,0,0,1.6736133,0,0,0,57.060001,57.759998,60.02,56.419998,7,1,1,0,0,10,5,1,571,48808.656,0,0,5862.5205 -12161,14945,27150,27149,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,5,8.9146996,9.0807066,0,1,0,-9,6,0,0,68.464462,0,0,0,34,2,5,1,-9,-9,2019,1,1,6,0,39,38,15,1,0,1,0,26.55724,26.55724,0,0,0,0,0,0,0,2,0,0,0,2.9706776,0,0,3,60.02,56.419998,57.060001,57.759998,6,1,1,0,0,10,5,1,571,48808.656,0,0,5862.5205 -12162,14946,27151,27152,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,5,0,7.1812215,7.050231,1,0,-9,42,0,1,146.72502,0,0,0,71,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0547051,7.3437538,0,0,46.380001,59.889999,41.099998,48.400002,5,1,1,0,0,2,3,1,427,2285446,0,0,3004.9194 -12162,14946,27152,27151,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.5130386,7.4427142,1,0,-9,3,0,-1,82.840858,0,0,0,72,1,5,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2620082,7.211288,0,0,41.099998,48.400002,46.380001,59.889999,6,1,1,0,0,2,3,1,427,2285446,0,0,3004.9194 -12163,14947,27153,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1091.9229,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,35,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.07,59.68,-9,-9,4,1,1,1,0,12,1,1,346,182423.64,0,0,396.13126 -12164,14948,27154,27155,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.0270395,6.8485169,1,0,-9,52,0,3,71.193573,0,0,0,67,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8249946,0,0,57.16,56.150002,57.939999,43.43,5,1,1,0,0,12,2,0,829,33115.133,0,0,628.65985 -12164,14948,27155,27154,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-3,-74.584328,0,0,0,70,2,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.939999,43.43,57.16,56.150002,6,1,1,0,1,12,2,0,829,33115.133,0,0,628.65985 -12165,14949,27156,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1117.9828,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,31.638279,2.3853488,2.8194668,0,0,1,1,0,0,0,0,0,44.34,11.36,-9,-9,6,1,1,0,0,7,1,0,1225,0,0,0,443.24216 -12165,14950,27157,-9,27156,-9,2,1,1,51,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1092.6047,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,39,-9,-9,4,1,1,1,0,7,1,0,1568,-14650.461,0,0,-20.276628 -12165,14951,27158,-9,27156,-9,3,1,0,47,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1025.0414,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,78.132462,3,46.32,53.439999,-9,-9,4,1,1,1,0,7,1,0,1038,-244857.75,0,0,2279.4709 -12165,14952,27159,-9,27158,-9,4,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1063.3765,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,1,0,366,0,0,0,2525.9841 -12166,14953,27160,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,1,1,0,0,4,9.3329878,9.4727411,0,3,0,0,0,-9,0,-992.51257,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,50,60,15,1,0,-9,0,23.274069,23.274069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.91,55.330002,-9,-9,6,1,1,0,0,10,5,0,335,657611.63,0,0,2569.8977 -12167,14954,27161,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,6.0121593,5.9649825,3,0,0,0,-9,0,-1004.455,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5286946,0,0,27.809999,65.690002,-9,-9,6,1,1,0,0,6,2,1,220,433087,0,0,742.86548 -12168,14955,27162,-9,27163,27164,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.32855,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,8,5,0,849.25,166564.89,0,0,4115.6084 -12168,14955,27163,27164,-9,-9,1,1,0,34,1,1,2,0,2,-9,2,1,0,0,4,8.4762058,8.4342976,0,2,0,-9,4,0,-5,6.1139278,0,0,1,39,1,3,1,2,2,2019,1,3,11,2,48,49,15,1,0,1,0,11.334449,11.334449,0,0,0,0,0,0,0,0,1,1,0,2.9158406,0,0,0,48,57,48.700001,56.220001,5,3,4,0,0,8,5,0,849.25,166564.89,0,0,4115.6084 -12168,14955,27164,27163,-9,-9,3,1,1,39,1,1,2,0,1,-9,2,1,0,0,3,8.5697126,8.518568,0,2,0,-9,4,0,5,43.283318,0,0,0,34,2,4,1,-9,-9,2019,1,1,12,1,40,48,15,1,0,1,0,12.673321,12.673321,0,0,0,0,0,0,0,0,1,1,0,.73591769,0,0,0,48.700001,56.220001,48,57,5,3,4,0,0,8,5,0,849.25,166564.89,0,0,4115.6084 -12168,14955,27165,-9,27163,27164,2,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.71393,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,5,0,849.25,166564.89,0,0,4115.6084 -12169,14956,27166,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-887.1535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.939999,25.51,-9,-9,4,1,1,0,0,2,1,0,92,0,0,0,1286.5344 -12170,14957,27167,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,3,8.1075563,8.2465467,0,3,0,0,0,-9,0,-977.18512,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,38,15,1,0,-9,0,9.9483404,9.9483404,0,0,0,0,0,0,0,0,1,1,0,4.8597074,0,0,0,54.939999,53.18,-9,-9,6,1,1,0,0,2,4,1,440,150433.94,0,0,963.79211 -12171,14958,27168,-9,27170,27169,3,1,1,16,2,0,1,0,-9,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.3536,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,1,711.66669,594254.25,0,0,662.29602 -12171,14958,27169,27170,-9,-9,1,1,1,50,1,0,1,0,3,-9,1,1,0,0,4,0,0,0,2,0,-9,21,0,5,6.2070537,0,0,0,45,2,4,1,-9,-9,2019,1,2,9,1,90,84,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,38.040001,56.720001,6,1,1,0,0,10,2,1,711.66669,594254.25,0,0,662.29602 -12171,14958,27170,27169,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.4175172,7.1916132,0,2,0,-9,21,0,-5,33.903751,0,0,0,50,3,4,1,-9,-9,2019,1,1,18,6,26,27,15,1,1,1,0,5.8603516,5.8603516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.040001,56.720001,52,55,4,1,1,0,0,10,2,1,711.66669,594254.25,0,0,662.29602 -12172,14959,27171,-9,27174,27173,4,1,0,16,2,0,1,0,2,-9,2,2,0,0,3,4.0814295,3.7169666,0,2,0,0,0,-9,0,-1178.2404,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,57.720001,-9,-9,6,1,1,0,0,5,5,1,746.5,669385.5,0,0,5061.9033 -12172,14959,27172,-9,27174,27173,5,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.43445,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,5,5,1,746.5,669385.5,0,0,5061.9033 -12172,14959,27173,27174,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,9.0513105,8.9460449,0,2,0,-9,24,0,0,-9.9569693,0,0,0,46,1,3,1,3,2,2019,1,1,8,0,37,38,15,1,0,1,0,19.095526,19.095526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,47.220001,45.939999,6,1,1,0,0,5,5,1,746.5,669385.5,0,0,5061.9033 -12172,14959,27174,27173,-9,-9,1,1,0,46,1,0,1,0,1,-9,1,1,0,0,3,8.0962,8.2559071,0,2,0,-9,24,0,0,113.84615,0,0,0,46,1,4,1,2,2,2019,1,2,8,0,16,16,15,1,0,1,0,23.353432,23.353432,0,0,0,0,0,0,0,0,1,1,0,2.2822502,0,0,0,47.220001,45.939999,49.41,58.279999,6,1,1,0,0,5,5,1,746.5,669385.5,0,0,5061.9033 -12172,14960,27175,-9,27174,27173,3,1,0,19,2,0,1,0,2,1,2,1,0,0,4,7.6975803,7.7861428,0,3,0,0,0,-9,0,-879.69263,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,11,0,15,1,0,-9,1,18.46254,18.46254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.439999,52.369999,-9,-9,7,1,1,0,0,5,3,1,887,-147573.98,0,0,672.58569 -12173,14961,27176,27178,-9,-9,1,1,0,26,1,1,1,0,2,-9,2,1,0,0,5,8.0757599,7.8715806,0,2,0,-9,3,0,-2,67.779419,0,1,1,28,2,2,1,2,2,2019,1,2,8,0,14,8,15,1,0,1,0,23.026617,23.026617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.360001,58.529999,40.779999,46.700001,6,1,1,0,0,12,4,1,549,159373.08,0,0,1520.6672 -12173,14961,27177,-9,27176,27178,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.65863,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,549,159373.08,0,0,1520.6672 -12173,14961,27178,27176,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,0,2,8.1645021,8.453805,0,2,0,-9,3,0,2,34.405991,0,1,0,26,2,5,1,-9,-9,2019,1,1,11,3,38,41,15,1,0,1,0,12.032434,12.032434,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.779999,46.700001,49.360001,58.529999,6,1,1,0,0,12,4,1,549,159373.08,0,0,1520.6672 -12174,14962,27179,-9,27181,27180,2,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-918.28253,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,1,13,3,1,548.75,270937.03,0,0,2249.8303 -12174,14962,27180,27181,-9,-9,3,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.7184563,8.4781694,0,2,0,-9,8,0,-1,-88.395531,0,0,0,39,3,4,1,-9,-9,2019,1,1,10,1,42,42,15,1,0,1,0,11.134368,11.134368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,44.389999,51.41,5,4,1,0,0,13,3,1,548.75,270937.03,0,0,2249.8303 -12174,14962,27181,27180,-9,-9,1,1,0,39,1,0,2,0,3,-9,1,1,0,0,4,6.525629,6.7841158,0,2,0,-9,8,0,1,-8.7994862,0,0,1,38,2,4,1,3,3,2019,1,3,11,0,42,42,15,1,0,1,0,2.3188777,2.3188777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.389999,51.41,51,57,6,1,1,0,0,13,3,1,548.75,270937.03,0,0,2249.8303 -12174,14962,27182,-9,27181,27180,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1011.1813,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,13,3,1,548.75,270937.03,0,0,2249.8303 -12175,14963,27183,27184,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,1,0,6.5013313,6.2763748,1,0,-9,7,0,2,61.615372,0,0,0,65,1,4,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7857866,6.6054683,0,3,51.91,33.290001,54.200001,57.490002,5,1,1,0,0,8,2,1,1437.5,466143.28,0,0,1403.7349 -12175,14963,27184,27183,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,4.7854791,4.9337416,1,0,-9,7,0,-2,13.778089,0,0,0,67,1,1,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.44408575,5.1564846,0,0,54.200001,57.490002,51.91,33.290001,6,1,1,0,0,8,2,1,1437.5,466143.28,0,0,1403.7349 -12176,14964,27185,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-971.30469,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,0,15,4,1,-9,0,0,0,1,0,0,4.126802,0,0,0,7,1,1,0,0,0,0,3,40.380001,31.719999,-9,-9,4,1,1,0,0,1,1,0,1581,152048.98,0,0,1448.5187 -12177,14965,27186,-9,27187,-9,2,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1087.5376,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,1,0,403,75110.266,0,0,1842.8563 -12177,14965,27187,-9,-9,-9,1,1,0,24,3,1,2,0,2,-9,3,3,0,1,3,0,0,0,4,0,-9,0,-9,0,-936.60388,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,37.509998,-9,-9,5,1,1,1,0,1,1,0,403,75110.266,0,0,1842.8563 -12177,14965,27188,-9,27187,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1072.525,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,1,1,0,403,75110.266,0,0,1842.8563 -12178,14966,27189,27190,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,4,0,8.295743,8.317873,1,0,-9,9,0,1,-5.0961609,0,0,0,60,2,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,8.1776094,3.5912781,3,57.16,56.150002,48.279999,22.700001,6,1,1,0,0,12,4,1,541,1609586,0,0,2054.5354 -12178,14966,27190,27189,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,3,0,7.1077986,6.9189219,1,0,-9,9,0,-1,42.408066,0,0,0,61,2,4,3,2,3,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.0271645,7.1888223,14.722633,3,48.279999,22.700001,57.16,56.150002,5,1,1,0,0,12,4,1,541,1609586,0,0,2054.5354 -12179,14967,27191,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,7.6226659,7.6404109,0,3,0,0,0,-9,0,-883.80121,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,72,39,15,1,1,-9,0,4.0197949,4.0197949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.809999,51.73,-9,-9,2,1,1,0,1,6,3,1,1193,-323487.59,0,0,222.43927 -12179,14968,27192,27193,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,6.4249878,6.2663512,1,0,-9,6,0,-3,6.479362,0,0,0,78,3,3,3,-9,-9,2019,4,3,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3579359,0,0,39.990002,30.49,45.889999,38.34,5,1,1,0,0,6,2,1,823,1670224.5,0,0,1594.7266 -12179,14968,27193,27192,-9,-9,3,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,6.5700874,6.5660415,1,0,-9,6,0,3,-2.0016043,0,0,0,75,2,2,3,-9,-9,2019,4,2,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6953373,0,0,45.889999,38.34,39.990002,30.49,5,1,1,0,0,6,2,1,823,1670224.5,0,0,1594.7266 -12180,14969,27194,-9,-9,-9,1,1,0,53,3,0,1,0,1,-9,2,1,0,0,4,8.1698103,7.8487506,0,4,0,0,0,-9,0,-1084.8735,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,37,38,15,1,0,-9,0,11.496847,11.496847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.119999,56.919998,-9,-9,5,3,4,0,0,8,3,0,1670,758349.88,0,0,1712.1348 -12180,14970,27195,-9,27194,-9,2,1,1,21,2,0,1,0,2,1,2,1,0,0,5,7.3793583,7.4889693,0,3,0,0,0,-9,0,-1084.7158,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,25,0,15,1,0,-9,1,7.067832,7.067832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.919998,62.310001,-9,-9,5,3,4,0,0,8,3,0,157,107973.02,0,0,545.56293 -12180,14971,27196,-9,-9,-9,3,1,0,20,2,0,1,0,2,1,2,1,0,0,4,0,0,0,4,0,0,0,-9,0,-954.85944,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,4,1,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.05198,0,0,0,45.73,46.02,-9,-9,4,3,4,0,0,8,1,0,2166,51705.316,0,0,1766.5038 -12181,14972,27197,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,0,2,0,6.0339184,6.0792079,3,0,0,0,-9,0,-921.17407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,8.1252327,0,0,0,0,1,1,0,0,6.3993492,0,0,51,35,-9,-9,5,1,1,0,0,7,2,0,402,327171.38,0,0,1400.8198 -12182,14973,27198,-9,27201,27200,10,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.26874,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,0,662.25,33821.555,0,0,2840.5283 -12182,14973,27199,-9,27201,27200,9,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.124,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,2,0,662.25,33821.555,0,0,2840.5283 -12182,14973,27200,27201,-9,-9,2,1,1,49,1,0,4,0,2,-9,2,1,0,0,2,7.8017673,7.9314446,0,2,0,-9,25,0,3,-113.53153,0,0,0,46,3,4,1,2,2,2019,1,1,8,0,38,42,15,1,0,1,0,9.0569954,9.0569954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,44.16,50,55,5,1,1,0,0,13,2,0,662.25,33821.555,0,0,2840.5283 -12182,14973,27201,27200,-9,-9,1,1,0,46,1,0,4,0,3,-9,2,1,0,0,4,6.9333062,6.8933921,0,2,0,-9,25,0,-3,35.662716,0,0,0,49,2,2,1,3,-9,2019,1,2,10,1,16,0,15,1,0,1,0,5.9145498,5.9145498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,57.57,44.16,6,1,1,0,0,13,2,0,662.25,33821.555,0,0,2840.5283 -12182,14974,27202,-9,27201,27200,3,1,0,23,2,0,4,0,2,1,2,1,0,0,4,7.3646345,7.5186701,0,3,0,0,0,-9,0,-1075.4628,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,4.7308378,4.7308378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.84,48.970001,-9,-9,5,1,1,0,0,13,3,0,723,19072.502,0,0,-565.42975 -12182,14975,27203,-9,27201,27200,4,1,0,22,2,0,4,0,2,-9,2,1,0,0,5,6.3216357,6.1221986,0,3,0,0,0,-9,0,-903.46875,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,12,12,15,1,0,-9,1,4.8809667,4.8809667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,-9,-9,6,1,1,0,0,13,2,0,463,-181920.98,0,0,-240.91577 -12182,14976,27204,-9,27201,27200,5,1,0,20,2,0,4,0,2,1,2,1,0,0,5,7.6280766,7.496789,0,3,0,0,0,-9,0,-1066.2325,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,5.0377626,5.0377626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,3,0,458,36579.418,0,0,150.76711 -12182,14977,27205,-9,27201,27200,6,1,1,19,2,0,4,0,2,1,2,1,0,0,3,6.2189422,6.3603001,0,3,0,0,0,-9,0,-1057.4688,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,7,0,15,1,0,-9,1,8.0601177,8.0601177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,13,2,0,394,34716.906,0,0,1558.4235 -12183,14978,27206,27207,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,2,6.3548975,6.2915959,0,1,0,-9,22,0,-2,-17.993849,0,0,0,55,2,3,1,-9,-9,2019,1,1,12,1,14,17,15,1,0,1,0,5.1901736,5.1901736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.52,22.540001,57.330002,53.459999,3,1,1,0,1,2,2,1,320,9235.4141,0,0,1032.7557 -12183,14978,27207,27206,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,7.1865807,7.0738897,0,1,0,-9,22,0,2,-41.741997,0,0,0,53,2,2,1,-9,-9,2019,1,2,6,0,25,26,15,1,0,1,0,4.8015842,4.8015842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,45.52,22.540001,5,1,1,0,1,2,2,1,320,9235.4141,0,0,1032.7557 -12184,14979,27208,27209,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,42,0,1,-50.729435,0,0,0,68,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,3.7321808,0,0,0,0,0,1,1,0,0,0,0,0,66.050003,8.9099998,57.16,56.150002,6,1,1,0,0,7,2,1,1115,259348.63,0,0,1727.1353 -12184,14979,27209,27208,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,6.715641,6.6297321,1,0,-9,10,0,-1,48.493507,0,0,0,69,3,1,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6383591,134.94725,1,57.16,56.150002,66.050003,8.9099998,6,1,1,0,0,7,2,1,1115,259348.63,0,0,1727.1353 -12185,14980,27210,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1002.4312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.240458,3,61.27,41.18,-9,-9,6,1,1,0,0,6,1,0,981,-28685.201,0,0,643.1084 -12186,14981,27211,27212,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.0563993,5.3974953,1,0,-9,55,0,1,-23.00437,0,0,0,72,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.5885601,5.2755709,8.1570892,3,63.27,42.400002,52.639999,49.139999,7,1,1,0,0,5,2,1,2231,750462.31,0,0,1682.793 -12186,14981,27212,27211,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,4.8013453,5.1055942,1,0,-9,9,0,-1,20.497187,0,0,0,73,2,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3955135,4.6916938,0,0,52.639999,49.139999,63.27,42.400002,3,1,1,0,0,5,2,1,2231,750462.31,0,0,1682.793 -12187,14982,27213,27214,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,-5,37.346607,0,0,0,77,2,4,3,-9,-9,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4872258,0,0,0,52.400002,52.91,57.16,56.150002,6,1,1,0,0,4,4,1,676.5,677373.5,0,0,4178.2129 -12187,14982,27214,27213,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,8.6781139,8.694068,1,0,-9,45,0,5,-60.885201,0,0,0,72,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1059308,8.3408794,0,0,57.16,56.150002,52.400002,52.91,6,1,1,0,0,4,4,1,676.5,677373.5,0,0,4178.2129 -12188,14983,27215,-9,27217,27218,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1090.4888,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,2,5,1,535.59998,1421425,0,0,10562.93 -12188,14983,27216,-9,27217,27218,5,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-897.91974,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,5,1,535.59998,1421425,0,0,10562.93 -12188,14983,27217,27218,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,0,5,9.4108315,9.215333,4.251904,2,0,-9,25,0,-1,-43.454109,0,0,1,45,1,4,1,1,2,2019,1,2,9,1,40,48,15,1,0,1,0,31.766905,31.766905,0,0,0,0,0,0,0,0,1,1,0,4.6824422,4.4368353,0,0,41.709999,62.130001,49.459999,56.91,6,1,1,0,0,2,5,1,535.59998,1421425,0,0,10562.93 -12188,14983,27218,27217,-9,-9,2,1,1,45,1,0,3,0,1,-9,1,1,0,0,4,9.4105682,9.4569645,0,2,0,-9,24,0,1,13.210496,0,0,0,44,1,5,1,2,3,2019,1,1,8,0,40,40,15,1,0,1,0,38.147217,38.147217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,41.709999,62.130001,6,1,1,0,0,2,5,1,535.59998,1421425,0,0,10562.93 -12188,14983,27219,-9,27217,27218,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.0007,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,5,1,535.59998,1421425,0,0,10562.93 -12189,14984,27220,-9,27221,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-897.6778,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,0,761,-53644.965,0,0,1699.0137 -12189,14984,27221,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,0,3,6.7787232,7.0943933,0,4,0,0,0,-9,0,-1025.2455,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,16,15,1,0,-9,0,7.2098784,7.2098784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.27,46.93,-9,-9,4,1,1,0,0,13,2,0,761,-53644.965,0,0,1699.0137 -12189,14984,27222,-9,27221,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-972.00769,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,13,2,0,761,-53644.965,0,0,1699.0137 -12190,14985,27223,27224,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.2075605,7.8846674,1,0,-9,6,0,-3,-131.67834,0,0,0,71,2,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9840398,0,1,52.880001,56.68,58.650002,28.610001,6,1,1,0,0,5,4,1,1160,1647313.9,0,0,3893.562 -12190,14985,27224,27223,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,7.8973136,7.8546357,1,0,-9,6,0,3,-15.277086,0,0,0,68,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5421143,7.2848768,0,0,58.650002,28.610001,52.880001,56.68,5,1,1,0,0,5,4,1,1160,1647313.9,0,0,3893.562 -12191,14986,27225,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,0,2,8.2177515,8.2809,0,3,0,0,0,-9,0,-977.54181,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,43,42,15,1,0,-9,0,12.978457,12.978457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.880001,51.82,-9,-9,7,1,1,0,0,5,4,1,865,390100.66,0,0,1085.9847 -12192,14987,27226,27227,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,0,2,7.4497528,7.5553479,0,2,0,-9,7,0,-7,23.63942,0,1,1,36,2,3,3,1,2,2019,2,3,22,10,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.969999,32.830002,46.029999,50.540001,3,1,1,0,1,4,2,0,743.66669,145707.95,0,0,1466.6082 -12192,14987,27227,27226,-9,-9,3,1,1,36,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,7,0,7,129.61197,0,0,0,29,2,2,1,-9,-9,2019,3,1,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.029999,50.540001,19.969999,32.830002,4,1,1,1,0,4,2,0,743.66669,145707.95,0,0,1466.6082 -12192,14987,27228,-9,27226,27227,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.6677,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,743.66669,145707.95,0,0,1466.6082 -12193,14988,27229,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,1,3,0,7.0602221,7.420845,3,0,0,0,-9,0,-923.62708,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,67.955826,0,0,0,0,1,1,0,0,7.092452,0,0,53,44,-9,-9,6,1,1,0,0,8,3,0,207,381642.56,0,0,2640.7546 -12194,14989,27230,-9,-9,-9,1,1,0,50,2,0,1,0,1,-9,6,3,0,0,5,0,0,0,4,0,0,0,-9,0,-917.20563,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0974398,0,0,0,58.049999,54.52,-9,-9,6,1,1,0,0,6,1,1,377,0,0,0,2185.251 -12194,14989,27231,-9,27230,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1111.3467,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,1,1,377,0,0,0,2185.251 -12195,14990,27232,27233,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,32,0,-4,-49.897678,0,0,0,57,2,4,1,2,2,2019,3,2,25,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.68,26.059999,57.16,56.150002,4,1,1,0,0,1,4,0,577,249235.91,0,0,1090.1224 -12195,14990,27233,27232,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.4374037,8.1420364,0,1,0,-9,34,0,4,73.077362,0,0,0,53,2,2,3,-9,-9,2019,2,1,6,0,36,50,15,1,0,3,0,14.436015,14.436015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,40.68,26.059999,6,1,1,0,0,1,4,0,577,249235.91,0,0,1090.1224 -12195,14991,27234,-9,27232,27233,3,1,0,29,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1117.8159,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.87,63.41,-9,-9,3,1,1,0,1,1,1,0,164,0,0,0,1149.1978 -12196,14992,27235,27236,-9,-9,2,1,0,68,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,7,0,-1,49.854408,0,0,0,69,2,4,1,-9,-9,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,60.700001,47.650002,5,1,1,0,0,10,2,1,1322.5,281070.91,0,0,1934.5455 -12196,14992,27236,27235,-9,-9,1,1,1,69,1,0,1,0,2,-9,2,1,0,0,4,6.8712974,6.6739383,0,2,0,-9,50,0,1,58.599682,0,0,0,68,3,3,3,2,3,2019,2,2,6,0,12,0,15,1,0,4,0,8.0742712,8.0742712,0,0,0,0,0,0,0,0,1,1,0,1.4273986,0,0,0,60.700001,47.650002,50,47,7,1,1,0,0,10,2,1,1322.5,281070.91,0,0,1934.5455 -12197,14993,27237,27238,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,9.0978966,9.129096,0,1,0,-9,7,0,7,123.72036,0,0,0,43,1,4,1,2,2,2019,1,2,10,2,35,45,15,1,0,1,0,31.117798,31.117798,0,0,0,0,0,0,0,0,0,0,0,7.7915444,0,0,0,41.529999,63.130001,56.919998,49.389999,6,1,1,0,0,8,5,1,926,1824772.8,0,0,6703.0425 -12197,14993,27238,27237,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,0,4,9.0766506,8.8754559,0,1,0,-9,7,0,-7,-35.222858,0,0,1,50,2,4,1,-9,-9,2019,1,1,6,0,50,55,15,1,0,1,0,17.268835,17.268835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.919998,49.389999,41.529999,63.130001,6,1,1,0,0,8,5,1,926,1824772.8,0,0,6703.0425 -12198,14994,27239,27240,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,4,0,7.5031772,7.5763497,1,0,-9,6,0,-1,174.43359,0,0,0,62,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.5618424,7.6499567,3.9732988,3,57.16,56.150002,56.650002,32.060001,6,1,1,0,0,12,3,1,934,799190.81,0,0,1834.7292 -12198,14994,27240,27239,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,6.5105529,6.1437039,1,0,-9,6,0,1,-99.150696,0,0,0,61,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0819378,6.3042159,0,0,56.650002,32.060001,57.16,56.150002,6,1,1,0,0,12,3,1,934,799190.81,0,0,1834.7292 -12199,14995,27241,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,8,3,1,1,1,0,4.4190745,4.267117,3,0,0,0,-9,0,-999.41785,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3203664,0,0,31.9,19.360001,-9,-9,2,1,1,0,0,6,2,0,618,40870.207,0,0,-134.14784 -12200,14996,27242,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,7.6211028,7.6021819,3,0,0,0,-9,0,-924.7085,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3937984,0,0,37.599998,43.759998,-9,-9,3,1,1,0,0,12,3,1,337,450512.47,0,0,1371.105 -12201,14997,27243,27244,-9,-9,2,1,1,37,1,2,2,0,2,-9,2,1,0,0,4,8.815835,8.810482,0,2,0,-9,3,0,-2,17.999289,0,0,0,39,2,4,1,-9,-9,2019,1,1,6,0,44,46,15,1,0,1,0,14.838952,14.838952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,51.450001,50.439999,7,1,1,0,0,4,4,1,1556,170718.25,0,0,3828.8462 -12201,14997,27244,27243,-9,-9,1,1,0,39,1,2,2,0,2,-9,2,1,0,0,4,8.2334175,8.3999424,0,2,0,-9,3,0,2,-9.8674316,0,0,1,37,2,4,1,2,2,2019,1,2,12,2,24,24,15,1,0,1,0,17.384514,17.384514,0,0,0,0,0,0,0,0,1,1,0,4.1768842,0,0,0,51.450001,50.439999,54.200001,57.490002,6,1,1,0,0,4,4,1,1556,170718.25,0,0,3828.8462 -12201,14997,27245,-9,27244,27243,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1139.8766,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,1556,170718.25,0,0,3828.8462 -12201,14997,27246,-9,27244,27243,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-894.3222,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,1,1556,170718.25,0,0,3828.8462 -12202,14998,27247,27248,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.0468149,7.1094794,1,0,-9,4,0,8,-41.57338,0,0,0,59,1,5,1,-9,-9,2019,3,1,13,4,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5660524,7.0704737,0,0,44.939999,42.48,51.610001,61.540001,7,1,1,0,0,10,3,1,1749.5,424754.03,0,0,2891.7266 -12202,14998,27248,27247,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,0,5,7.7807007,7.4795718,0,1,0,-9,4,0,-8,65.017227,0,0,0,67,2,3,3,2,-9,2019,2,2,10,0,20,20,15,1,0,4,0,11.161045,11.161045,0,0,0,0,0,0,0,0,1,1,0,2.2788591,0,0,0,51.610001,61.540001,44.939999,42.48,7,1,1,0,0,10,3,1,1749.5,424754.03,0,0,2891.7266 -12203,14999,27249,27250,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.5552578,8.6067991,0,1,0,-9,8,0,0,0,0,0,0,57,1,5,1,3,3,2019,1,1,9,0,35,37,15,1,0,1,0,13.485085,13.485085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.529999,62.389999,56.709999,6,1,1,0,0,1,5,1,444.5,1262833.5,0,0,4733.6636 -12203,14999,27250,27249,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,5,8.3569527,8.5114117,0,1,0,-9,8,0,0,0,0,0,0,57,1,4,1,2,3,2019,1,2,6,0,37,40,15,1,0,1,0,12.661941,12.661941,0,0,0,0,0,0,0,14.5,0,0,0,0,0,18.047991,3,62.389999,56.709999,57.73,54.529999,7,1,1,0,0,1,5,1,444.5,1262833.5,0,0,4733.6636 -12204,15000,27251,-9,-9,-9,1,1,0,38,2,1,1,0,2,-9,2,1,0,0,3,8.7425814,8.6085176,0,2,0,1,1,-9,1,-164.96053,0,0,1,-9,-9,-9,-9,3,3,2019,-9,3,18,6,41,39,15,1,1,-9,0,10.157908,10.157908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.75,58.32,48,57,5,1,1,0,0,8,4,0,619.5,179008.92,0,0,1903.1021 -12204,15000,27252,-9,27251,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.3279,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,8,4,0,619.5,179008.92,0,0,1903.1021 -12205,15001,27253,-9,-9,-9,1,1,0,45,3,0,0,0,1,-9,2,1,0,0,4,9.1645737,9.1644535,0,3,0,0,0,-9,0,-1086.1154,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,40,45,15,1,0,-9,0,24.078182,24.078182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,2,5,1,1458,244070.17,0,0,2609.8484 -12206,15002,27254,-9,27256,27255,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1166.8358,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,3,4,0,0,8,4,0,1975,437762.38,0,0,3578.6484 -12206,15002,27255,27256,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,8.6399994,8.0632343,0,2,0,-9,16,0,4,-9.695941,0,0,0,41,2,2,1,2,2,2019,1,1,11,0,36,38,15,1,0,1,0,15.823329,15.823329,0,0,0,0,0,0,0,7,1,1,0,0,0,7.2814045,1,53.459999,53.93,40.779999,27.620001,5,3,4,0,0,8,4,0,1975,437762.38,0,0,3578.6484 -12206,15002,27256,27255,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,2,8.3081408,8.2859163,0,2,0,-9,16,0,-4,-54.022938,0,0,1,45,1,4,1,3,3,2019,1,2,13,1,40,0,15,1,0,1,0,9.3993559,9.3993559,0,0,0,0,0,0,0,0,1,1,0,2.9588614,0,0,0,40.779999,27.620001,53.459999,53.93,5,3,4,0,0,8,4,0,1975,437762.38,0,0,3578.6484 -12206,15002,27257,-9,27256,27255,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.0238,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,8,4,0,1975,437762.38,0,0,3578.6484 -12207,15003,27258,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1033.4269,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.32,63.939999,-9,-9,6,1,1,0,0,12,1,0,1447,187040.47,0,0,715.9079 -12208,15004,27259,27260,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.3798141,8.2651243,6.5343986,1,0,-9,43,0,-4,-2.7194519,0,0,0,64,2,3,1,3,3,2019,1,2,18,7,40,39,15,1,1,1,0,11.675029,11.675029,0,0,0,0,0,0,0,0,0,0,0,8.0270958,6.7406063,0,0,29.32,59.389999,36.349998,53.490002,5,1,1,0,0,2,5,1,680,820490.75,0,0,5053.6401 -12208,15004,27260,27259,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,9.04498,9.0940447,7.8564811,1,0,-9,10,0,4,-53.585087,0,0,0,60,2,3,1,-9,-9,2019,1,1,16,5,37,36,15,1,1,1,0,17.085197,17.085197,0,0,0,0,0,0,0,0,0,0,0,0,8.131094,0,0,36.349998,53.490002,29.32,59.389999,4,1,1,0,0,2,5,1,680,820490.75,0,0,5053.6401 -12209,15005,27261,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,2,1,0,0,3,7.364419,8.2695436,7.5972242,3,0,0,0,-9,0,-1034.5479,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,27,15,1,0,-9,0,7.2145305,7.2145305,0,0,0,0,0,0,0,0,0,0,0,2.5622671,7.9537339,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,7,4,1,382,1270029.5,0,0,2809.6355 -12209,15006,27262,-9,-9,27261,2,1,0,37,2,0,0,0,2,-9,2,1,0,0,1,7.7321525,8.0639448,0,3,0,0,0,-9,0,-1057.1232,0,0,1,-9,-9,-9,-9,-9,1,2019,-9,0,15,4,37,38,15,1,1,-9,1,8.5022087,8.5022087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.880001,19.940001,-9,-9,6,1,1,0,0,7,3,1,504,-30690.32,0,0,1790.3732 -12210,15007,27263,27264,-9,-9,1,1,0,44,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,28,0,0,62.050438,0,0,1,53,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,52.970001,51.290001,6,1,1,0,0,5,3,0,1130.5,265196.94,0,0,2473.168 -12210,15007,27264,27263,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,0,3,8.2699366,8.1868086,0,2,0,-9,27,0,9,-80.024422,0,0,0,44,2,4,3,2,2,2019,2,1,10,0,40,40,15,1,0,3,0,10.518824,10.518824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.970001,51.290001,55.189999,54.259998,5,1,1,0,0,5,3,0,1130.5,265196.94,0,0,2473.168 -12210,15008,27265,-9,27263,27264,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,3,7.2351437,7.4466143,0,3,0,0,0,-9,0,-1078.9851,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,16,15,1,0,-9,1,5.189075,5.189075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.619999,46.84,-9,-9,6,1,1,0,0,5,3,0,1160,-1753.033,0,0,1232.0911 -12211,15009,27266,-9,27268,27267,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.896,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,1,0,1893.3334,324874.97,0,0,1490.7173 -12211,15009,27267,27268,-9,-9,1,1,1,55,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,3,0,14,0,0,0,0,41,3,4,3,-9,-9,2019,4,5,18,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.129999,27.15,50,55,4,1,1,0,1,5,1,0,1893.3334,324874.97,0,0,1490.7173 -12211,15009,27268,27267,-9,-9,5,1,0,41,1,0,1,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,3,0,-14,0,0,0,1,55,3,1,3,-9,-9,2019,4,1,10,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,24.129999,27.15,2,1,1,1,1,5,1,0,1893.3334,324874.97,0,0,1490.7173 -12211,15010,27269,-9,27268,27267,2,1,1,21,2,0,1,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1037.5277,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.139999,31.91,-9,-9,1,1,1,0,0,5,1,0,111,-92282.008,0,0,-907.29755 -12211,15011,27270,-9,27268,27267,4,1,1,19,2,0,1,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1089.9083,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,24,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,50.119999,-9,-9,2,1,1,1,0,5,1,0,1527,-39384.258,0,0,-458.66156 -12212,15012,27271,-9,27274,27273,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.7991,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,919.25,142375.28,0,0,3017.449 -12212,15012,27272,-9,27274,27273,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.0569,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,919.25,142375.28,0,0,3017.449 -12212,15012,27273,27274,-9,-9,2,1,1,47,1,0,2,0,1,-9,1,1,0,0,2,7.8731976,8.1879759,0,2,0,-9,16,0,2,46.684494,0,0,0,45,1,5,1,2,1,2019,1,1,12,0,35,45,15,1,0,1,0,9.6099062,9.6099062,0,0,0,0,0,0,0,0,1,1,0,3.0793519,0,0,0,46.549999,47.77,51.139999,60.450001,3,1,1,0,0,9,4,1,919.25,142375.28,0,0,3017.449 -12212,15012,27274,27273,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,5,8.6985493,8.521924,0,2,0,-9,16,0,-2,86.304047,0,0,0,47,1,2,1,2,1,2019,1,2,11,0,22,22,15,1,0,1,0,35.056408,35.056408,0,0,0,0,0,0,0,0,1,1,0,3.2464399,0,0,0,51.139999,60.450001,46.549999,47.77,3,1,1,0,0,9,4,1,919.25,142375.28,0,0,3017.449 -12213,15013,27275,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,2,1,0,0,4,7.2483702,7.3742647,6.2278919,3,0,0,0,-9,0,-1041.1978,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,40,15,1,0,-9,0,4.0956869,4.0956869,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0609002,8.7161531,3,60.119999,54.799999,-9,-9,7,1,1,0,0,9,3,1,2004,57136.988,0,0,1540.5186 -12214,15014,27276,27277,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,8.5951834,9.067358,0,2,0,-9,3,0,-4,112.83788,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,1,40,45,15,1,0,1,0,17.630617,17.630617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.16,56.150002,6,1,1,0,0,12,4,1,286,557960.63,0,0,9381.1582 -12214,15014,27277,27276,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,7.7685513,7.8114305,0,2,0,-9,10,0,4,48.591171,0,0,0,46,1,4,1,2,2,2019,1,2,10,0,18,25,15,1,0,1,0,15.044853,15.044853,0,0,0,0,0,0,0,7,1,1,0,8.6541061,0,7.6865268,3,57.16,56.150002,52,55,6,1,1,0,0,12,4,1,286,557960.63,0,0,9381.1582 -12214,15014,27278,-9,27277,27276,4,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.9978,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,286,557960.63,0,0,9381.1582 -12214,15015,27279,-9,27277,27276,3,1,0,20,2,0,1,0,2,-9,1,1,0,0,1,7.3885274,7.3871918,0,3,0,0,0,-9,0,-1044.1406,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,35,36,15,1,0,-9,1,4.7817435,4.7817435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.509998,29.690001,-9,-9,5,1,1,0,0,12,3,1,619,97841.789,0,0,352.271 -12215,15016,27280,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,2,1,0,0,5,9.1313038,8.7841196,0,3,0,0,0,-9,0,-1089.422,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,50,50,15,1,0,-9,0,18.23595,18.23595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.150002,44.369999,-9,-9,2,1,1,0,0,7,5,1,325,285103.78,0,0,2386.9055 -12216,15017,27281,27282,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,7.1556001,7.2200465,0,1,0,-9,36,0,-3,93.501266,0,0,0,59,2,4,1,3,3,2019,1,2,15,3,17,17,15,1,0,1,0,8.4583492,8.4583492,0,0,0,0,0,0,0,0,0,0,0,3.6366658,0,0,0,46.560001,37.029999,68.589996,38.619999,5,2,3,0,0,8,5,1,469,515562.97,0,0,3951.1433 -12216,15017,27282,27281,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,9.003294,8.8090343,0,1,0,-9,10,0,3,-111.15166,0,0,0,56,2,2,1,-9,-9,2019,1,1,4,0,49,51,15,1,0,1,0,20.401474,20.401474,0,0,0,0,0,0,0,2,0,0,0,5.6184249,0,0,3,68.589996,38.619999,46.560001,37.029999,6,2,3,0,0,8,5,1,469,515562.97,0,0,3951.1433 -12216,15018,27283,-9,27281,27282,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.8472042,8.802536,0,3,0,0,0,-9,0,-1059.3593,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,39,38,15,1,0,-9,1,19.149273,19.149273,0,0,0,0,0,0,0,0,0,0,0,5.8415294,0,0,0,51.41,56.150002,-9,-9,6,2,3,0,0,8,5,1,899,34138.125,0,0,1814.2452 -12216,15019,27284,-9,27281,27282,4,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,9.0618095,9.0710964,0,3,0,0,0,-9,0,-912.82373,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,45,43,15,1,0,-9,1,19.745016,19.745016,0,0,0,0,0,0,0,0,0,0,0,4.7964406,0,0,0,37.810001,62.389999,-9,-9,6,2,3,0,0,8,5,1,709,-266231.28,0,0,2349.5073 -12216,15020,27285,-9,27281,27282,5,1,0,20,2,0,0,0,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-928.13745,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.26056555,0,0,0,48.419998,37.580002,-9,-9,5,2,3,0,0,8,1,1,531,-20093.494,0,0,1139.5042 -12217,15021,27286,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1034.6956,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.719999,35.07,-9,-9,1,1,1,0,0,11,1,0,623,109403.05,0,0,989.91339 -12218,15022,27287,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,0,3,9.2692213,9.5419149,7.5667605,3,0,0,0,-9,0,-1053.6339,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,42,47,15,1,0,-9,0,28.748075,28.748075,0,0,0,0,0,0,0,0,1,1,0,5.1114001,7.6596518,0,0,48.700001,50.689999,-9,-9,6,1,1,0,0,12,5,1,454,-116255.77,0,0,4535.4082 -12219,15023,27288,27289,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,7.2360258,7.2621899,0,1,0,-9,51,0,-5,-117.71933,0,0,0,70,3,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,54.630001,47.84,2,1,1,0,0,8,4,1,263.5,2083654.9,0,0,4409.5132 -12219,15023,27289,27288,-9,-9,2,1,1,70,1,0,0,0,3,-9,1,1,0,0,4,7.6388135,8.7256508,7.3514123,1,0,-9,50,0,5,-149.73555,0,0,0,65,3,3,3,3,3,2019,2,1,7,0,10,40,15,1,0,4,0,27.03476,27.03476,0,0,0,0,0,0,0,0,1,1,0,7.3907833,7.5272717,0,0,54.630001,47.84,58.32,50.220001,2,1,1,0,0,8,4,1,263.5,2083654.9,0,0,4409.5132 -12220,15024,27290,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,4,3,0,0,4,0,8.1040258,7.640553,3,0,0,0,-9,0,-1092.8184,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0819387,7.982008,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,7,3,1,297,339076.28,0,0,3214.4028 -12221,15025,27291,27292,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,8.7097692,8.8295298,0,1,0,-9,6,0,-2,17.024675,0,0,0,62,1,3,1,3,3,2019,1,1,15,3,43,41,15,1,0,1,0,17.991274,17.991274,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,43.540001,35.669998,49.040001,55.860001,3,1,1,0,0,12,5,1,197.5,1818803,0,0,4199.9014 -12221,15025,27292,27291,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,3,8.7773256,8.3966913,0,1,0,-9,6,0,2,-.9721514,0,0,0,60,2,2,1,3,3,2019,1,2,10,0,50,48,15,1,0,1,0,15.176548,15.176548,0,0,0,0,0,0,0,2,0,0,0,.52205771,0,4.0277514,3,49.040001,55.860001,43.540001,35.669998,5,1,1,0,0,12,5,1,197.5,1818803,0,0,4199.9014 -12221,15026,27293,-9,27292,27291,3,1,0,24,2,0,0,0,1,1,2,1,0,0,5,8.2839632,8.3679008,0,3,0,0,0,-9,0,-1127.4052,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,32,0,15,1,0,-9,1,11.908957,11.908957,0,0,0,0,0,0,0,2,0,0,0,1.4223797,0,3.633261,3,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,1,340,77861.781,0,0,1832.1503 -12221,15027,27294,-9,27292,27291,4,1,1,22,2,0,0,0,1,1,2,1,0,0,5,6.478045,6.5626287,0,3,0,0,0,-9,0,-1051.1825,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,32,0,15,1,0,-9,1,2.874387,2.874387,0,0,0,0,0,0,0,0,0,0,0,5.5540471,0,0,0,58.049999,54.52,-9,-9,7,1,1,0,0,12,2,1,463,36146.648,0,0,355.22549 -12222,15028,27295,27296,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,0,5,0,8.6363459,8.5959177,1,0,-9,34,0,-1,-108.21646,0,0,0,59,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1636024,8.9359932,0,0,60.02,56.419998,55.189999,54.259998,7,1,1,0,0,4,4,1,1088.5,2337769,0,0,2759.103 -12222,15028,27296,27295,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,4,0,5.672492,5.5553722,1,0,-9,34,0,1,-64.306282,0,0,0,58,2,5,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,2.7608662,5.5957804,1.7856731,3,55.189999,54.259998,60.02,56.419998,7,1,1,0,0,4,4,1,1088.5,2337769,0,0,2759.103 -12223,15029,27297,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,4,7.8896685,7.7850108,0,3,0,0,0,-9,0,-970.02759,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,29,29,15,1,1,-9,0,8.8887386,8.8887386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.33,57.950001,-9,-9,4,1,1,0,0,13,3,1,184,828763.38,0,0,1869.2054 -12224,15030,27298,27299,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,7.243567,7.3680425,1,0,-9,5,0,2,18.417688,0,0,0,66,2,3,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9405972,7.3693433,0,0,66.610001,34.59,38.919998,49.799999,6,1,1,0,0,7,2,1,1645.5,673201.44,0,0,3060.6157 -12224,15030,27299,27298,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,5,0,-2,-109.70568,0,0,0,68,3,2,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.919998,49.799999,66.610001,34.59,7,1,1,0,0,7,2,1,1645.5,673201.44,0,0,3060.6157 -12225,15031,27300,-9,-9,-9,1,1,1,63,3,0,1,0,1,-9,2,1,0,0,5,8.1256332,7.9129381,0,4,0,0,0,-9,0,-1062.4739,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,16,30,15,1,0,-9,0,32.155315,32.155315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,59.400002,-9,-9,6,1,1,0,0,12,3,1,982,1268076.8,0,0,372.29968 -12226,15032,27301,27302,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,2.4773581,2.6935484,1,0,-9,47,0,2,-173.60399,0,0,0,68,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3200848,2.5820761,0,0,62.82,33.310001,55.959999,49.93,6,1,1,0,0,6,3,1,1466,1077989,0,0,2729.135 -12226,15032,27302,27301,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,7.7142243,7.5167537,1,0,-9,47,0,-2,17.669655,0,0,0,70,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3301291,7.5338721,0,0,55.959999,49.93,62.82,33.310001,6,1,1,0,0,6,3,1,1466,1077989,0,0,2729.135 -12227,15033,27303,-9,27304,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1051.1254,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,0,1322.6666,372102.91,0,0,2154.8689 -12227,15033,27304,-9,-9,-9,1,1,0,37,2,0,2,0,1,-9,2,1,0,0,5,8.2109175,8.5235033,5.8942089,4,0,0,0,-9,0,-976.16992,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,43,15,1,0,-9,0,13.834307,13.834307,0,0,0,0,0,0,0,0,1,1,0,6.3531966,0,0,0,58.200001,54.529999,-9,-9,6,1,1,0,0,10,4,0,1322.6666,372102.91,0,0,2154.8689 -12227,15033,27305,-9,27304,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1016.3558,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,0,1322.6666,372102.91,0,0,2154.8689 -12228,15034,27306,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,2,1,0,0,2,8.3545752,7.9895225,0,3,0,0,0,-9,0,-1012.3915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,40,37,15,1,0,-9,0,12.050828,12.050828,0,0,0,0,0,0,0,7,0,0,0,0,0,1.4801289,3,40.580002,38.59,-9,-9,4,1,1,0,0,7,4,1,144,401662.97,0,0,1378.389 -12229,15035,27307,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,0,3,8.2889986,8.6480389,6.9306192,3,0,0,0,-9,0,-874.36957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,1,36,70,15,1,0,-9,0,14.881035,14.881035,0,0,0,0,0,0,0,0,1,1,0,6.9574828,6.9500575,0,0,60.290001,52.110001,-9,-9,5,1,1,0,0,13,5,1,571,94012.523,0,0,2835.8723 -12229,15036,27308,-9,27307,-9,2,1,1,24,2,0,0,0,2,1,2,1,0,1,4,8.4302177,8.1576757,0,3,0,0,0,-9,0,-991.85107,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,40,0,15,1,0,-9,1,11.320524,11.320524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,-9,-9,5,1,1,0,0,13,4,1,865,-68155.539,0,0,2560.7676 -12230,15037,27309,27310,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,5.3076987,5.2530231,1,0,-9,7,0,-4,29.205118,0,0,0,75,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7811999,0,0,0,51.830002,57.200001,61.68,28.84,6,1,1,0,0,7,2,1,696,599662.31,0,0,1971.8422 -12230,15037,27310,27309,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,2,0,7.1788192,7.25247,1,0,-9,7,0,4,125.40456,0,0,0,71,3,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3328648,7.1020265,0,0,61.68,28.84,51.830002,57.200001,6,1,1,0,0,7,2,1,696,599662.31,0,0,1971.8422 -12231,15038,27311,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,6.5728021,6.6966047,3,0,0,0,-9,0,-1113.6515,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0628953,6.5970287,0,0,52,54.509998,-9,-9,6,1,1,0,0,2,2,1,393,323984.75,0,0,1165.2865 -12232,15039,27312,27313,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,0,5,8.8688488,8.8429289,6.514595,1,0,-9,10,0,-3,-121.96333,0,0,0,70,3,2,3,2,3,2019,2,2,7,0,30,34,15,1,0,4,0,21.912079,21.912079,0,0,0,0,0,0,0,0,1,1,0,6.0343227,6.1662064,0,0,54.349998,57.84,54.610001,43.009998,6,1,1,0,0,10,4,1,939,852657,0,0,3664.3696 -12232,15039,27313,27312,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,3,-119.92113,0,0,0,67,2,5,1,-9,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3361714,0,0,0,54.610001,43.009998,54.349998,57.84,6,1,1,0,0,10,4,1,939,852657,0,0,3664.3696 -12233,15040,27314,27316,-9,-9,3,1,1,34,1,0,1,0,2,-9,2,1,0,0,4,7.8120818,7.6787977,0,2,0,-9,3,0,0,82.441994,0,0,0,43,2,4,1,-9,-9,2019,1,1,10,0,35,37,15,1,0,1,0,8.4383554,8.4383554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,40.860001,55.369999,4,1,1,0,0,2,3,0,555.66669,173470.72,0,0,2549.0503 -12233,15040,27315,-9,27316,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,4.1773109,4.3682866,2,0,0,0,-9,0,-1069.0767,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.383215,0,0,0,38.34,62.119999,-9,-9,4,1,1,0,0,2,3,0,555.66669,173470.72,0,0,2549.0503 -12233,15040,27316,27314,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,4,7.9953966,7.6312342,0,2,0,-9,3,0,9,-108.36631,0,0,1,34,2,4,1,3,3,2019,1,3,15,3,23,33,15,1,0,1,0,12.895314,12.895314,0,0,0,0,0,0,0,7,1,1,0,0,0,17.999796,3,40.860001,55.369999,48.869999,58.549999,2,1,1,0,0,2,3,0,555.66669,173470.72,0,0,2549.0503 -12234,15041,27317,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-980.56488,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.450001,8.5200005,-9,-9,6,1,1,0,0,11,1,0,376,152565.64,0,0,1637.326 -12235,15042,27318,27319,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-1,0,0,0,0,79,3,4,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.610001,46.91,48.75,47.599998,2,1,1,0,0,2,1,0,483,-96023.5,0,0,1292.8398 -12235,15042,27319,27318,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,1,0,0,0,0,78,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,47.599998,42.610001,46.91,2,1,1,0,0,2,1,0,483,-96023.5,0,0,1292.8398 -12236,15043,27320,27321,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,0,3,8.2885714,7.9419537,0,2,0,-9,6,0,2,-54.190208,0,0,0,28,1,3,1,2,3,2019,1,2,12,4,40,40,15,1,1,1,0,10.319319,10.319319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.970001,57.009998,52,54.509998,4,1,1,0,0,2,4,1,346,394398.22,0,0,2698.1455 -12236,15043,27321,27320,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,0,3,7.5993342,7.7940741,0,2,0,-9,8,0,-2,-58.787277,0,1,1,30,1,3,1,1,2,2019,1,1,9,0,37,0,15,1,0,1,0,8.008729,8.008729,0,0,0,0,0,0,0,0,1,1,0,2.1923289,0,0,0,52,54.509998,40.970001,57.009998,5,1,1,0,0,2,4,1,346,394398.22,0,0,2698.1455 -12236,15043,27322,-9,27321,27320,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1144.7375,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,346,394398.22,0,0,2698.1455 -12237,15044,27323,27324,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,5,0,7.2805715,7.7078056,1,0,-9,9,0,-1,26.861284,0,0,0,69,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8408265,7.5323863,0,3,62.389999,56.709999,58.150002,52.91,1,1,1,0,0,2,3,1,829.5,943637.44,0,0,1096.3063 -12237,15044,27324,27323,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,1,-69.514153,0,0,0,68,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.92853653,3,58.150002,52.91,62.389999,56.709999,6,1,1,0,0,2,3,1,829.5,943637.44,0,0,1096.3063 -12238,15045,27325,27326,-9,-9,1,1,1,30,1,0,1,0,1,-9,2,1,0,0,3,7.7410469,7.6483545,0,2,0,-9,7,0,-5,48.134148,0,0,0,35,1,5,1,2,1,2019,1,2,11,0,38,38,15,1,0,1,0,8.3160658,8.3160658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.509998,51.57,58.639999,46.16,5,2,3,0,0,4,4,1,834,23966.586,0,0,2812.1006 -12238,15045,27326,27325,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,0,5,8.1624346,8.0823307,0,2,0,-9,7,0,5,-92.553551,0,0,1,30,1,3,1,-9,-9,2019,1,1,11,0,40,32,15,1,0,1,0,11.359108,11.359108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.639999,46.16,55.509998,51.57,7,1,1,0,0,4,4,1,834,23966.586,0,0,2812.1006 -12238,15045,27327,-9,27326,27325,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.0097,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,4,4,1,834,23966.586,0,0,2812.1006 -12239,15046,27328,-9,27329,-9,2,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-860.8205,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,3,0,2201.3333,-7858.6885,0,0,2374.2327 -12239,15046,27329,-9,-9,-9,1,1,0,38,3,0,2,0,1,-9,1,1,0,0,4,6.9158473,8.0472145,7.431551,4,0,0,0,-9,0,-1052.4481,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,10,10,15,1,1,-9,0,11.600057,11.600057,0,0,0,0,0,0,0,0,1,1,0,7.9744954,0,0,0,28.16,65.32,-9,-9,3,1,1,0,0,8,3,0,2201.3333,-7858.6885,0,0,2374.2327 -12239,15046,27330,-9,27329,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1033.334,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,3,0,2201.3333,-7858.6885,0,0,2374.2327 -12240,15047,27331,27332,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,5.7040467,5.7782326,1,0,-9,44,0,8,-137.83507,0,0,0,68,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,2.6566746,1.9837765,0,0,0,0,1,1,0,6.3524408,5.7931571,0,0,65.279999,34.830002,50.16,56.75,7,1,1,0,0,2,2,1,511,452040.06,0,0,1491.1079 -12240,15047,27332,27331,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,-8,-221.84735,0,0,0,76,2,3,3,-9,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.16,56.75,65.279999,34.830002,6,1,1,0,0,2,2,1,511,452040.06,0,0,1491.1079 -12241,15048,27333,27334,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,0,2,0,7.3844934,7.3569365,1,0,-9,33,0,1,-49.817654,0,0,0,57,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9008427,7.4455752,0,0,58.560001,46.450001,51.830002,57.200001,7,1,1,0,0,12,2,1,758.5,224527.33,0,0,3421.0195 -12241,15048,27334,27333,-9,-9,1,1,0,57,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,33,0,-1,-25.790321,0,0,0,58,1,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,58.560001,46.450001,7,1,1,0,0,12,2,1,758.5,224527.33,0,0,3421.0195 -12241,15049,27335,-9,27334,27333,3,1,1,22,2,0,0,0,2,0,7,2,0,0,4,8.4241095,8.4022894,0,3,0,0,0,-9,0,-848.9422,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6538422,0,0,0,43.200001,59.970001,-9,-9,6,1,1,0,0,12,4,1,449,-208068.2,0,0,2242.1511 -12241,15050,27336,-9,27334,27333,4,1,1,19,2,0,0,0,2,-9,2,1,0,0,5,7.3296719,7.6997776,0,3,0,0,0,-9,0,-1025.2781,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,35,20,15,1,0,-9,1,5.0172758,5.0172758,0,0,0,0,0,0,0,0,0,0,0,1.9331083,0,0,0,36.09,58.580002,-9,-9,7,1,1,0,0,12,3,1,974,65152.684,0,0,237.58951 -12242,15051,27337,27338,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,0,4,8.4187479,8.4284792,0,1,0,-9,16,0,11,-26.389931,0,0,0,44,1,4,1,2,1,2019,1,1,11,2,60,50,15,1,0,1,0,7.5037799,7.5037799,0,0,0,0,0,0,0,0,1,1,0,6.4239812,0,0,0,43.540001,59.599998,58.150002,52.91,5,1,1,0,0,4,5,0,746,769933.75,0,0,2845.9624 -12242,15051,27338,27337,-9,-9,1,1,0,44,1,0,0,0,1,-9,2,1,0,0,4,8.1408863,8.4983816,0,1,0,-9,15,0,-11,73.021576,0,0,1,55,2,4,1,2,2,2019,1,2,10,0,42,40,15,1,0,1,0,14.203947,14.203947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,43.540001,59.599998,6,1,1,0,0,4,5,0,746,769933.75,0,0,2845.9624 -12242,15052,27339,-9,27338,27337,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,6.388701,6.8083992,0,3,0,0,0,-9,0,-1059.8629,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,2,0,469,0,0,0,826.80096 -12243,15053,27340,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,2,7.9219112,7.5655055,0,3,0,0,0,-9,0,-975.91199,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,38,62,15,1,1,-9,0,7.5559621,7.5559621,0,0,0,0,0,0,0,2,1,1,0,0,0,6.2800498,3,31.469999,51.200001,-9,-9,3,1,1,0,0,12,3,1,204,-99190.117,0,0,426.69983 -12244,15054,27341,27342,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,9.5798197,9.4616518,0,1,0,-9,20,0,1,.93462759,0,0,0,53,1,2,3,2,1,2019,2,2,2,0,42,44,15,1,0,3,0,39.152302,39.152302,0,0,0,0,0,0,0,0,0,0,0,3.2827623,0,0,0,54.66,47.77,35.099998,33.919998,6,1,1,0,0,7,5,1,275.5,997417.94,0,0,3668.1458 -12244,15054,27342,27341,-9,-9,2,1,0,53,1,0,0,0,1,-9,6,3,0,0,2,0,6.5159807,6.4423871,1,0,-9,20,0,-1,31.582436,0,0,0,54,1,3,1,2,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3012223,0,0,0,35.099998,33.919998,54.66,47.77,6,1,1,0,0,7,5,1,275.5,997417.94,0,0,3668.1458 -12245,15055,27343,-9,27344,27347,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.8153,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,3,1,683.59998,504972.75,0,0,2659.4536 -12245,15055,27344,27347,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,0,5,7.2071762,7.0228777,0,2,0,-9,2,0,0,-40.943226,0,0,1,44,3,5,1,3,3,2019,1,2,12,1,20,28,15,1,0,1,0,9.5386705,9.5386705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.900002,47.09,49.68,40.91,5,2,3,0,0,8,3,1,683.59998,504972.75,0,0,2659.4536 -12245,15055,27345,-9,27344,27347,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.43878,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,3,1,683.59998,504972.75,0,0,2659.4536 -12245,15055,27346,-9,27344,27347,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.4912,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,683.59998,504972.75,0,0,2659.4536 -12245,15055,27347,27344,-9,-9,2,1,1,44,1,0,3,0,3,-9,1,1,0,0,5,8.7614956,8.3382568,0,2,0,-9,2,0,9,-1.5165545,0,0,0,35,2,5,1,3,1,2019,1,1,12,3,50,40,15,1,0,1,0,10.523717,10.523717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,40.91,44.900002,47.09,6,2,3,0,0,8,3,1,683.59998,504972.75,0,0,2659.4536 -12246,15056,27348,27349,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,0,2,8.1636086,8.0643473,5.5593152,2,0,-9,15,0,-2,-56.407288,0,0,1,45,2,4,1,3,3,2019,1,2,15,4,33,35,15,1,1,1,0,10.661596,10.661596,0,0,0,0,0,0,0,0,1,1,0,6.5393496,0,0,0,36.990002,42.919998,52,55,4,1,1,0,0,2,4,1,323.5,23305.543,0,0,2925.8835 -12246,15056,27349,27348,-9,-9,2,1,1,45,1,0,1,0,2,-9,1,1,0,0,4,7.6558723,7.8468337,0,2,0,-9,15,0,2,-12.659391,0,0,0,43,1,2,1,3,3,2019,1,1,9,1,30,40,15,1,0,1,0,12.723099,12.723099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.990002,42.919998,6,1,1,0,0,2,4,1,323.5,23305.543,0,0,2925.8835 -12246,15057,27350,-9,27348,27349,3,1,1,27,2,0,1,0,2,-9,2,1,0,0,4,8.2674608,8.2503986,0,3,0,0,0,-9,0,-1159.1107,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,47,43,15,1,0,-9,1,8.9970264,8.9970264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,4,1,482,121913.2,0,0,2011.84 -12246,15058,27351,-9,27348,27349,4,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-949.04382,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,2,4,1,995,0,0,0,0 -12247,15059,27352,27353,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,5,0,8.4520626,8.306797,1,0,-9,45,0,3,27.599142,0,0,0,65,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.138154,7.9830465,0,0,57.060001,57.759998,53.68,45.470001,7,1,1,0,0,9,3,1,551,1016247.8,0,0,3495.9009 -12247,15059,27353,27352,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,-3,136.82301,0,0,0,68,1,5,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2405877,0,0,0,53.68,45.470001,57.060001,57.759998,6,1,1,0,0,9,3,1,551,1016247.8,0,0,3495.9009 -12248,15060,27354,27355,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,11,0,-1,11.49369,0,0,0,75,2,2,3,3,3,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,1,0,5.9953599,7.151474,0,0,0,0,1,1,0,2.8044937,0,0,0,45.189999,18.49,49.459999,37.049999,6,1,1,0,0,9,2,0,566,372091.31,0,0,1767.4828 -12248,15060,27355,27354,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,4.9332914,5.2278609,1,0,-9,55,0,1,-103.31139,0,0,0,74,2,2,3,2,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2122254,4.8862357,0,0,49.459999,37.049999,45.189999,18.49,6,1,1,0,0,9,2,0,566,372091.31,0,0,1767.4828 -12249,15061,27356,27357,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,2,9.0602674,9.1270084,0,1,0,-9,7,0,4,-99.707001,0,0,0,48,1,2,1,-9,-9,2019,1,1,12,0,38,37,15,1,0,1,0,32.695328,32.695328,0,0,0,0,0,0,0,0,0,0,0,4.1404753,0,0,0,40.110001,48.43,16.9,51.91,3,1,1,0,0,7,5,1,808,609508.25,0,0,6454.9238 -12249,15061,27357,27356,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,0,2,8.699297,8.5762529,0,1,0,-9,7,0,-4,-15.020266,0,0,0,52,1,2,1,1,-9,2019,1,2,32,12,43,42,15,1,1,1,0,16.216742,16.216742,0,0,0,0,0,0,0,0,0,0,0,4.4819183,0,0,0,16.9,51.91,40.110001,48.43,2,1,1,0,0,7,5,1,808,609508.25,0,0,6454.9238 -12250,15062,27358,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,3,7.6476703,7.8439088,5.952599,3,0,0,0,-9,0,-1039.269,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,20,0,15,1,0,-9,0,12.347042,12.347042,0,0,0,0,0,0,0,0,1,1,0,1.4500362,5.8732738,0,0,51,49,-9,-9,5,1,1,0,0,1,3,0,2000,169567,0,0,343.51947 -12250,15063,27359,-9,-9,27358,2,1,1,33,2,0,0,0,1,-9,1,1,0,0,2,7.1496058,7.6374688,0,3,0,0,0,-9,0,-1157.6564,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,50,0,15,1,0,-9,1,5.1794791,5.1794791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,-9,-9,5,1,1,0,0,1,3,0,249,117534.15,0,0,1659.511 -12251,15064,27360,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,0,2,8.0145016,7.7042136,0,3,0,0,0,-9,0,-1081.3131,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,38,39,15,1,0,-9,0,10.388451,10.388451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.779999,31.77,-9,-9,4,1,1,0,0,11,4,1,394,-129149.35,0,0,1923.35 -12252,15065,27361,27362,-9,-9,1,1,0,48,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,28,0,-11,0,0,0,0,59,2,5,3,2,3,2019,4,2,15,3,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.7180367,3,48.450001,57.490002,51.139999,60.450001,6,1,1,0,0,1,1,1,420.5,29801.355,0,0,161.44759 -12252,15065,27362,27361,-9,-9,2,1,1,59,1,0,1,0,2,-9,4,3,0,0,5,0,0,0,2,0,-9,28,0,11,0,0,0,0,48,2,3,3,-9,1,2019,4,1,13,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6481829,0,0,0,51.139999,60.450001,48.450001,57.490002,6,1,1,0,0,1,1,1,420.5,29801.355,0,0,161.44759 -12253,15066,27363,27364,-9,-9,4,1,1,43,1,0,1,0,3,-9,2,1,0,0,2,8.8414459,9.1502132,0,2,0,-9,6,0,0,-56.115925,0,0,0,43,2,1,3,-9,-9,2019,2,1,8,0,60,52,15,1,0,3,0,16.255676,16.255676,0,0,0,0,0,0,0,42,1,1,0,0,0,46.618671,1,44.209999,50.209999,21.43,21.57,3,1,1,0,0,12,4,1,1865,489231.53,0,0,4717.9531 -12253,15066,27364,27363,-9,-9,1,1,0,43,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,0,3.6127884,0,0,1,43,3,2,1,3,-9,2019,3,4,35,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.43,21.57,44.209999,50.209999,1,1,1,0,0,12,4,1,1865,489231.53,0,0,4717.9531 -12254,15067,27365,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,0,4,9.1510086,9.296834,0,3,0,0,0,-9,0,-1110.5763,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,43,15,1,0,-9,0,29.304031,29.304031,0,0,0,0,0,0,0,0,1,1,0,7.1468368,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,1,5,1,712,16945.758,0,0,3440.3943 -12255,15068,27366,27367,-9,-9,4,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,8.5298891,8.7678652,0,2,0,-9,5,0,3,18.726215,0,0,0,34,2,4,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,16.359608,16.359608,0,0,0,0,0,0,0,0,1,1,0,3.8951108,0,0,0,51,57,51.830002,57.200001,5,4,1,0,0,5,4,1,890.5,282457.75,0,0,3470.8469 -12255,15068,27367,27366,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,7.9414363,8.0927,6.5729003,2,0,-9,5,0,-3,-74.480614,0,0,1,37,2,4,1,2,2,2019,1,4,11,0,35,36,15,1,0,1,0,9.4234838,9.4234838,0,0,0,0,0,0,0,0,1,1,0,6.2627673,0,0,0,51.830002,57.200001,51,57,7,1,1,0,0,5,4,1,890.5,282457.75,0,0,3470.8469 -12255,15068,27368,-9,27367,27366,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-792.94464,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,890.5,282457.75,0,0,3470.8469 -12255,15068,27369,-9,27367,27366,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.5923,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,890.5,282457.75,0,0,3470.8469 -12256,15069,27370,27371,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,41,0,3,91.275063,0,0,0,67,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1186097,0,0,0,54.200001,57.490002,54.959999,53.169998,6,1,1,0,0,4,3,1,209.5,968766.81,0,0,2233.0049 -12256,15069,27371,27370,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,7.8829098,7.8074818,1,0,-9,8,0,-3,42.466808,0,0,0,70,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4223502,7.7849717,0,0,54.959999,53.169998,54.200001,57.490002,7,1,1,0,0,4,3,1,209.5,968766.81,0,0,2233.0049 -12257,15070,27372,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,2,0,6.2241993,6.4228387,3,0,0,0,-9,0,-1040.4293,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,5.2936993,0,0,2.5355358,3.4366043,30.112732,0,1,1,0,6.5547676,6.0826125,0,0,54.380001,22.809999,-9,-9,4,1,1,0,0,9,2,0,577,527609.5,0,0,1774.9906 -12258,15071,27373,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-974.10065,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0823267,0,0,0,62.849998,38.459999,-9,-9,6,1,1,0,0,7,1,1,604,-43636.543,0,0,992.50482 -12259,15072,27374,27375,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,28,0,-5,-5.0916085,0,0,0,64,2,4,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.209999,44.650002,50.759998,45.970001,5,1,1,0,0,10,3,1,484.5,1737208.8,0,0,2153.5952 -12259,15072,27375,27374,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.9521532,7.7782698,1,0,-9,28,0,5,15.621687,0,0,0,59,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8253164,8.1855316,0,0,50.759998,45.970001,33.209999,44.650002,6,1,1,0,0,10,3,1,484.5,1737208.8,0,0,2153.5952 -12260,15073,27376,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,1,1,0,0,5,9.7848969,10.194193,8.5229959,3,0,0,0,-9,0,-912.57556,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,30,15,15,1,0,-9,0,68.50399,68.50399,0,0,0,0,0,0,0,0,1,1,0,5.1877999,8.0518599,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,9,5,1,391,2633011,0,0,16188.162 -12261,15074,27377,-9,27379,27380,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1116.8169,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,2,0,680,15319.85,0,0,2321.843 -12261,15074,27378,-9,27379,27380,2,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.53741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,680,15319.85,0,0,2321.843 -12261,15074,27379,27380,-9,-9,1,1,0,25,1,1,2,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,3,0,-1,-29.805851,0,1,1,26,2,3,1,-9,-9,2019,3,3,16,4,0,20,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,43,51.66,54.880001,4,1,1,1,0,4,2,0,680,15319.85,0,0,2321.843 -12261,15074,27380,27379,-9,-9,3,1,1,26,1,1,2,0,2,-9,1,1,0,0,3,7.4152389,7.1693325,0,2,0,-9,3,0,1,88.766792,0,1,0,25,2,2,3,-9,-9,2019,2,1,8,0,32,35,15,1,0,3,0,5.4851608,5.4851608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,38,43,6,1,1,0,0,4,2,0,680,15319.85,0,0,2321.843 -12262,15075,27381,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1027.9949,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82666594,0,0,0,37,28,-9,-9,4,1,1,0,0,7,1,0,1259,28350.889,0,0,516.31427 -12263,15076,27382,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,4,0,7.9297757,7.647326,3,0,-9,0,1,0,-938.85785,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.48273396,7.7758665,0,0,29.66,56.630001,-9,-9,3,1,1,0,0,10,3,1,333,936980.75,0,0,2374.9382 -12264,15077,27383,-9,-9,-9,2,1,0,68,3,0,0,0,1,-9,4,3,0,0,3,0,7.3608866,7.7105675,3,0,-9,0,1,0,-914.57965,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3042107,7.4480777,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,6,3,1,806,429662.5,0,0,790.21448 -12265,15078,27384,-9,27386,27387,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.6124,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,3,0,580,82639.594,0,0,5063.7256 -12265,15078,27385,-9,27386,27387,2,1,0,16,2,1,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.3949,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,3,0,580,82639.594,0,0,5063.7256 -12265,15078,27386,27387,-9,-9,1,1,0,33,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,3,-63.816818,0,0,1,30,2,4,1,-9,2,2019,3,5,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50,57,6,1,1,0,0,1,3,0,580,82639.594,0,0,5063.7256 -12265,15078,27387,27386,-9,-9,5,1,1,30,1,1,3,0,2,-9,2,1,0,0,4,8.3545685,8.0760937,0,2,0,-9,3,0,-3,1.7864748,0,0,0,33,2,4,3,-9,-9,2019,2,1,10,1,42,45,15,1,0,3,0,12.732244,12.732244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.16,56.150002,5,1,1,0,0,1,3,0,580,82639.594,0,0,5063.7256 -12265,15078,27388,-9,27386,27387,4,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.4321,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,580,82639.594,0,0,5063.7256 -12266,15079,27389,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,3,8.5897789,8.7081356,0,3,0,0,0,-9,0,-1045.2117,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,60,50,15,1,1,-9,0,11.001163,11.001163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.689999,60.23,-9,-9,3,1,1,0,1,8,5,1,395,927176.63,0,0,1160.3719 -12267,15080,27390,27391,-9,-9,1,1,0,68,1,0,0,0,1,-9,2,1,0,0,3,5.9610014,6.1079721,0,1,0,-9,41,0,0,68.204796,0,0,0,68,3,4,1,2,1,2019,1,2,7,0,6,4,15,1,0,1,0,7.3559737,7.3559737,0,0,0,0,0,0,0,0,1,1,0,3.9640951,0,0,0,53.529999,51,60.119999,54.799999,6,1,1,0,0,12,3,1,254.5,982557.5,0,0,4270.3691 -12267,15080,27391,27390,-9,-9,2,1,1,68,1,0,0,0,3,-9,1,1,0,0,4,7.9871817,7.9613881,4.9364572,1,0,-9,41,0,0,72.195747,0,0,0,68,1,3,1,-9,-9,2019,1,1,6,0,30,40,15,1,0,1,0,13.83648,13.83648,0,0,0,0,0,0,0,0,1,1,0,4.3549743,5.2425508,0,0,60.119999,54.799999,53.529999,51,7,1,1,0,0,12,3,1,254.5,982557.5,0,0,4270.3691 -12268,15081,27392,27393,-9,-9,1,1,1,54,1,0,0,0,1,-9,1,1,0,0,3,9.2566195,8.8546124,0,1,0,-9,35,0,1,0,0,0,0,53,1,5,1,2,2,2019,1,2,6,0,50,0,15,1,0,1,0,22.99222,22.99222,0,0,0,0,0,0,0,0,0,0,0,3.007411,0,0,0,57.330002,53.459999,59.43,58.049999,7,1,1,0,0,9,5,1,423.5,3048265,0,0,6475.6514 -12268,15081,27393,27392,-9,-9,2,1,0,53,1,0,0,0,1,-9,1,1,0,0,5,9.3572397,9.2249708,0,1,0,-9,34,0,-1,0,0,0,0,54,1,3,1,2,2,2019,1,1,6,0,35,30,15,1,0,1,0,28.900364,28.900364,0,0,0,0,0,0,0,0,0,0,0,3.6464393,0,0,0,59.43,58.049999,57.330002,53.459999,7,1,1,0,0,9,5,1,423.5,3048265,0,0,6475.6514 -12269,15082,27394,27395,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,0,4,0,7.9691663,7.8876719,1,0,-9,6,0,2,52.670364,0,0,0,58,2,4,1,2,2,2019,3,1,7,1,0,8,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4880123,0,0,57.16,56.150002,57.16,56.150002,5,1,1,0,0,12,4,1,789,1807679.5,0,0,1933.8356 -12269,15082,27395,27394,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.8035216,7.9595408,0,1,0,-9,6,0,-2,138.4771,0,0,0,60,1,4,3,3,3,2019,2,2,6,0,30,30,15,1,0,4,0,7.9625988,7.9625988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,1,1,1,0,0,12,4,1,789,1807679.5,0,0,1933.8356 -12269,15083,27396,-9,27395,27394,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,5,7.8398514,7.9083977,0,3,0,0,0,-9,0,-1037.1855,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,0,35,0,15,1,0,-9,1,11.348753,11.348753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,12,4,1,233,-94461.781,0,0,1658.8258 -12270,15084,27397,-9,27400,27401,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.2564,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,8,4,1,708.79999,1432582,0,0,4872.2139 -12270,15084,27398,-9,27400,27401,5,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.67413,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,4,1,708.79999,1432582,0,0,4872.2139 -12270,15084,27399,-9,27400,27401,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.63898,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,8,4,1,708.79999,1432582,0,0,4872.2139 -12270,15084,27400,27401,-9,-9,2,1,0,47,1,0,3,0,1,-9,2,1,0,0,5,8.4684677,8.3709393,0,2,0,-9,16,0,-1,34.847931,0,0,0,48,1,4,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,15.03139,15.03139,0,0,0,0,0,0,0,0,0,0,0,7.7126341,0,0,0,60.02,56.419998,58.150002,52.91,6,3,4,0,0,8,4,1,708.79999,1432582,0,0,4872.2139 -12270,15084,27401,27400,-9,-9,1,1,1,48,1,0,3,0,1,-9,2,1,0,0,4,8.6994381,8.8851042,0,2,0,-9,16,0,1,21.431007,0,0,0,47,1,5,1,-9,-9,2019,1,2,4,0,50,49,15,1,0,1,0,14.47718,14.47718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,60.02,56.419998,6,3,4,0,0,8,4,1,708.79999,1432582,0,0,4872.2139 -12271,15085,27402,-9,27404,27403,2,1,0,19,2,0,0,0,2,-9,2,1,0,0,5,6.8338118,6.7641768,0,3,0,0,0,-9,0,-964.6507,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,20,25,15,1,0,-9,1,4.7259307,4.7259307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,4,2,1,740,211990.08,0,0,-636.46039 -12271,15086,27403,27404,-9,-9,3,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,9.2345247,9.1458549,6.5089259,1,0,-9,5,0,5,32.917446,0,0,0,42,2,5,1,-9,-9,2019,1,1,12,1,49,49,15,1,0,1,0,19.322493,19.322493,0,0,0,0,0,0,0,0,1,1,0,5.933938,0,0,0,46.389999,60.990002,56.720001,58.130001,5,1,1,0,0,4,5,1,389,70841.156,0,0,5421.1875 -12271,15086,27404,27403,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,0,5,8.2008028,8.3063774,0,1,0,-9,5,0,-5,-23.939022,0,0,1,47,2,4,1,2,3,2019,1,3,6,0,44,37,15,1,0,1,0,10.085464,10.085464,0,0,0,0,0,0,0,7,1,1,0,0,0,7.6264606,3,56.720001,58.130001,46.389999,60.990002,7,1,1,0,0,4,5,1,389,70841.156,0,0,5421.1875 -12272,15087,27405,27406,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,7.9008141,8.0577316,5.8285632,1,0,-9,25,0,12,40.841644,0,0,0,50,2,3,1,3,2,2019,1,2,15,3,37,38,15,1,0,1,0,9.3749876,9.3749876,0,0,0,0,0,0,0,0,0,0,0,0,6.1163135,0,0,41.209999,45.799999,29.719999,52.59,3,1,1,0,0,5,4,1,316.5,476256.5,0,0,2044.3531 -12272,15087,27406,27405,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.4729104,7.5964189,0,1,0,-9,25,0,-12,-26.968628,0,0,0,62,1,3,1,1,2,2019,1,1,22,8,21,20,15,1,1,1,0,9.2103128,9.2103128,0,0,0,0,0,0,0,0,0,0,0,1.4809713,0,0,0,29.719999,52.59,41.209999,45.799999,3,1,1,0,0,5,4,1,316.5,476256.5,0,0,2044.3531 -12273,15088,27407,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,1,1,0,5.7617903,5.6529503,3,0,0,0,-9,0,-1094.8688,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,13.277105,0,0,0,0,51.305798,0,1,1,0,3.6260886,5.6447668,0,0,68.07,17.6,-9,-9,6,1,1,0,0,6,2,1,1392,501623.09,0,0,1392.6816 -12274,15089,27408,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.4012003,8.3092022,0,3,0,0,0,-9,0,-1056.5393,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,37,38,15,1,0,-9,0,11.37148,11.37148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.209999,60.790001,-9,-9,6,1,1,0,0,12,4,0,353,-35378.734,0,0,2310.4417 -12275,15090,27409,27411,-9,-9,1,1,0,55,1,0,1,0,1,-9,1,1,0,0,5,9.0484352,9.2134542,0,2,0,-9,15,0,16,111.58965,0,0,0,39,3,5,1,-9,-9,2019,1,2,7,0,35,36,15,1,0,1,0,29.553589,29.553589,0,0,0,0,0,0,0,0,1,1,0,3.0934577,0,0,0,57.060001,57.759998,37.419998,63,6,1,1,0,0,9,5,1,586,556914.88,0,0,3509.4058 -12275,15090,27410,-9,27409,27411,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1030.5828,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,9,5,1,586,556914.88,0,0,3509.4058 -12275,15090,27411,27409,-9,-9,2,1,1,39,1,0,1,0,3,-9,2,1,0,0,5,0,0,0,2,0,-9,18,0,-16,39.247807,0,0,0,55,1,5,1,3,3,2019,1,1,17,5,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.419998,63,57.060001,57.759998,4,1,1,0,0,9,5,1,586,556914.88,0,0,3509.4058 -12276,15091,27412,27413,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,1,0,1.7574388,1.6024492,1,0,-9,52,0,4,35.898857,0,0,0,75,2,3,3,2,2,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,6.8376756,0,0,0,0,0,1,1,0,0,1.7863718,0,0,52.23,29.33,42.220001,45.380001,5,1,1,0,0,2,2,1,350,-18473.238,0,0,2005.5479 -12276,15091,27413,27412,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,-4,9.7955904,0,0,0,79,2,1,3,2,2,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,6.4013886,2,42.220001,45.380001,52.23,29.33,6,1,1,0,0,2,2,1,350,-18473.238,0,0,2005.5479 -12277,15092,27414,-9,27416,27415,3,1,1,17,2,0,2,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.29327,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,1,12,3,0,479,202310.5,0,0,2599.3003 -12277,15092,27415,27416,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,7.7632051,7.5300593,0,2,0,-9,11,0,4,63.731842,0,0,0,42,2,4,1,-9,3,2019,1,1,12,0,39,36,15,1,0,1,0,6.2856283,6.2856283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.389999,52.950001,40.119999,56.009998,6,1,1,0,0,12,3,0,479,202310.5,0,0,2599.3003 -12277,15092,27416,27415,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,8.1203327,7.9806237,0,2,0,-9,11,0,-4,66.547745,0,0,1,46,2,4,1,3,2,2019,1,2,13,2,39,0,15,1,0,1,0,8.5576496,8.5576496,0,0,0,0,0,0,0,2,1,1,0,0,0,6.752089,3,40.119999,56.009998,46.389999,52.950001,5,1,1,0,0,12,3,0,479,202310.5,0,0,2599.3003 -12277,15092,27417,-9,27416,27415,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.05792,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,3,0,479,202310.5,0,0,2599.3003 -12278,15093,27418,27419,-9,-9,2,1,1,29,1,0,1,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,6,0,1,48.423744,0,1,0,28,1,4,1,-9,-9,2019,3,1,15,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.740002,25.67,40.580002,60.950001,3,1,1,0,1,1,3,0,761,9304.2705,0,0,2408.3193 -12278,15093,27419,27418,-9,-9,1,1,0,28,1,0,1,0,1,-9,1,1,0,0,4,7.7486591,8.0831013,0,2,0,-9,6,0,-1,2.930613,0,1,1,29,2,2,3,2,-9,2019,2,2,11,2,40,30,15,1,0,3,0,8.9317884,8.9317884,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.433321,1,40.580002,60.950001,50.740002,25.67,4,1,1,0,1,1,3,0,761,9304.2705,0,0,2408.3193 -12278,15093,27420,-9,27419,27418,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.7037,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,1,3,0,761,9304.2705,0,0,2408.3193 -12279,15094,27421,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,4,3,0,0,2,0,7.9538913,7.5061193,3,0,0,0,-9,0,-1031.5012,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4837995,7.7710609,0,0,42.18,36.790001,-9,-9,5,1,1,0,0,12,4,1,621,588015.25,0,0,2546.1357 -12280,15095,27422,27423,-9,-9,2,1,0,74,1,0,0,0,1,-9,1,1,0,1,1,7.8552213,7.8873415,6.3938079,1,0,-9,53,0,-1,-110.34377,0,0,0,75,1,4,3,3,2,2019,2,1,9,0,12,15,15,1,0,4,0,21.924709,21.924709,1,0,4.8761296,0,0,0,0,2,1,1,0,4.4753423,6.2416887,5.4843073,3,60.66,25.09,64.230003,44.689999,6,1,1,0,0,9,5,1,769.5,508536.16,0,0,5438.0068 -12280,15095,27423,27422,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,4,0,8.3603363,8.2489052,1,0,-9,53,0,1,65.207443,0,0,0,74,1,1,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4147358,8.0874233,4.0112357,2,64.230003,44.689999,60.66,25.09,7,1,1,0,0,9,5,1,769.5,508536.16,0,0,5438.0068 -12281,15096,27424,27426,-9,-9,1,1,0,28,1,0,1,0,2,-9,1,1,0,0,5,7.3276234,7.4593196,0,2,0,-9,8,0,-2,15.341256,0,1,1,30,2,5,1,3,2,2019,1,2,10,1,30,30,15,1,0,1,0,6.5098376,6.5098376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.349998,64.529999,55.169998,58.560001,3,1,1,0,0,2,3,0,711,42909.984,0,0,1896.3787 -12281,15096,27425,-9,27424,27426,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.3247,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,2,3,0,711,42909.984,0,0,1896.3787 -12281,15096,27426,27424,-9,-9,2,1,1,30,1,0,1,0,2,-9,2,1,0,0,5,8.1542225,8.3727674,0,2,0,-9,8,0,2,83.737312,0,0,0,28,2,5,1,2,2,2019,1,1,4,0,37,42,15,1,0,1,0,9.7510176,9.7510176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.169998,58.560001,36.349998,64.529999,7,4,5,0,0,2,3,0,711,42909.984,0,0,1896.3787 -12282,15097,27427,-9,27428,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1052.8862,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,1,1,0,0,7,2,1,1040.3334,-26649.951,0,0,965.79175 -12282,15097,27428,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,2,1,0,0,4,7.2730403,7.4617472,0,4,0,-9,0,1,0,-842.88007,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,30,34,15,1,0,-9,0,6.5524025,6.5524025,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.830002,51.110001,-9,-9,6,1,1,0,1,7,2,1,1040.3334,-26649.951,0,0,965.79175 -12282,15097,27429,-9,27428,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-996.54224,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,1,1040.3334,-26649.951,0,0,965.79175 -12283,15098,27430,27431,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,8.7391167,8.7271061,0,2,0,-9,15,0,2,97.88929,0,0,0,41,2,4,1,2,2,2019,1,1,12,0,38,38,15,1,0,1,0,17.063253,17.063253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.759998,56.630001,48.900002,53.240002,6,2,3,0,0,11,5,1,998.33331,120478.34,0,0,5844.6992 -12283,15098,27431,27430,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,8.8666182,8.5643511,0,2,0,-9,16,0,-2,92.7668,0,0,1,43,2,4,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,16.490347,16.490347,0,0,0,0,0,0,0,42,1,1,0,3.2037439,0,44.209881,3,48.900002,53.240002,34.759998,56.630001,7,2,3,0,0,11,5,1,998.33331,120478.34,0,0,5844.6992 -12283,15098,27432,-9,27431,27430,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.3934,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,11,5,1,998.33331,120478.34,0,0,5844.6992 -12284,15099,27433,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,3,3,0,0,4,0,.68314999,.61736721,3,0,0,0,-9,0,-954.36206,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.42870367,0,0,62.490002,55.09,-9,-9,6,4,5,1,0,10,2,1,411,240429.08,0,0,483.80341 -12285,15100,27434,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,0,2,0,7.4515643,7.4083138,3,0,0,0,-9,0,-1042.0376,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7103429,0,0,46.75,31.6,-9,-9,6,1,1,0,0,6,3,1,3371,320403.44,0,0,2169.2422 -12286,15101,27435,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,1,1,0,0,4,6.2238903,5.9042525,0,3,0,0,0,-9,0,-1012.8638,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,55,50,15,1,0,-9,0,1.0700225,1.0700225,0,0,0,0,0,0,0,0,0,0,0,.67354614,0,0,0,58.720001,51.290001,-9,-9,6,1,1,0,0,7,2,1,1178,1372910.3,0,0,-293.07211 -12286,15102,27436,-9,-9,27435,2,1,1,20,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1041.9476,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.700001,45.869999,-9,-9,6,1,1,0,0,7,1,1,1792,87697.953,0,0,0 -12287,15103,27437,-9,27439,27438,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.61975,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,1517,1060537.4,0,0,3638.2236 -12287,15103,27438,27439,-9,-9,1,1,1,49,1,0,1,0,3,-9,2,1,0,0,3,7.8005056,8.0460749,0,2,0,-9,7,0,1,75.449326,0,0,0,48,1,2,1,3,3,2019,1,2,11,0,40,36,15,1,0,1,0,8.9078131,8.9078131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.939999,53.790001,43.84,47.84,6,1,1,0,0,13,5,1,1517,1060537.4,0,0,3638.2236 -12287,15103,27439,27438,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,2,9.1383629,9.1002331,0,2,0,-9,7,0,-1,-12.198774,0,0,0,49,3,3,1,-9,-9,2019,1,1,12,0,28,30,15,1,0,1,0,37.010761,37.010761,0,0,0,0,0,0,0,2,1,1,0,0,0,4.053299,3,43.84,47.84,47.939999,53.790001,6,1,1,0,0,13,5,1,1517,1060537.4,0,0,3638.2236 -12288,15104,27440,-9,27441,27442,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.1665,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,4,3,1,1096.5,29805.967,0,0,2508.3313 -12288,15104,27441,27442,-9,-9,1,1,0,40,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,-2,8.6698961,0,0,1,42,2,3,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.619999,53.529999,5,2,3,0,0,4,3,1,1096.5,29805.967,0,0,2508.3313 -12288,15104,27442,27441,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,8.4352245,8.2680492,0,2,0,-9,6,0,2,41.836628,0,0,0,40,3,3,3,3,3,2019,2,1,11,0,41,38,15,1,0,3,0,11.598707,11.598707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.619999,53.529999,54.959999,53.169998,5,2,3,0,0,4,3,1,1096.5,29805.967,0,0,2508.3313 -12288,15104,27443,-9,27441,27442,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.3286,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,3,1,1096.5,29805.967,0,0,2508.3313 -12289,15105,27444,-9,27447,-9,5,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1031.6798,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,1,770,186489.42,0,0,3055.0029 -12289,15105,27445,-9,27447,-9,3,1,1,13,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1072.5598,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,3,1,770,186489.42,0,0,3055.0029 -12289,15105,27446,-9,27447,-9,4,1,1,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1042.0997,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,3,1,770,186489.42,0,0,3055.0029 -12289,15105,27447,-9,-9,-9,1,1,0,39,3,0,4,0,1,-9,2,1,0,0,5,8.683219,8.7078686,7.3272262,4,0,0,0,-9,0,-963.43182,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,45,45,15,1,0,-9,0,7.9501171,7.9501171,0,0,0,0,0,0,0,0,1,1,0,7.656127,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,12,3,1,770,186489.42,0,0,3055.0029 -12289,15105,27448,-9,27447,-9,2,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-856.6698,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,3,1,770,186489.42,0,0,3055.0029 -12290,15106,27449,-9,27451,27452,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-994.66266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,5,1,841.5,349929.38,0,0,5325.0894 -12290,15106,27450,-9,27451,27452,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1093.8041,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,5,1,841.5,349929.38,0,0,5325.0894 -12290,15106,27451,27452,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,1,2,7.6024427,7.5595188,0,2,0,-9,8,0,6,-17.205769,0,0,0,40,2,4,1,3,3,2019,1,2,13,3,24,30,15,1,0,1,0,9.4059687,9.4059687,0,0,0,0,0,0,0,0,1,1,0,3.3011765,0,0,0,60.560001,29.040001,51,56,6,1,1,0,0,13,5,1,841.5,349929.38,0,0,5325.0894 -12290,15106,27452,27451,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,4,9.1137972,9.1040277,0,2,0,-9,8,0,-6,44.541172,0,0,0,46,2,2,1,-9,-9,2019,1,1,9,1,37,37,15,1,0,1,0,32.789944,32.789944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,60.560001,29.040001,6,1,1,0,0,13,5,1,841.5,349929.38,0,0,5325.0894 -12291,15107,27453,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.6795216,8.4951973,0,3,0,0,0,-9,0,-1010.2841,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,55,45,15,1,0,-9,0,13.147175,13.147175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,5,5,0,249,215775.98,0,0,1643.4258 -12292,15108,27454,-9,27455,27456,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1042.6481,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,3,1,714,-66535.531,0,0,3131.8135 -12292,15108,27455,27456,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,1,-9,0,39.376488,-9,0,1,39,1,4,1,2,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,54.509998,51,56,5,1,1,0,0,8,3,1,714,-66535.531,0,0,3131.8135 -12292,15108,27456,27455,-9,-9,2,1,1,39,1,0,3,0,1,-9,1,1,0,0,4,8.9308596,8.823719,0,2,0,-9,1,-9,0,51.733704,-9,0,0,39,2,3,3,-9,-9,2019,2,1,9,1,45,0,15,1,0,3,0,21.21456,21.21456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,52,54.509998,6,1,1,0,0,8,3,1,714,-66535.531,0,0,3131.8135 -12292,15108,27457,-9,27455,27456,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-872.73871,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,3,1,714,-66535.531,0,0,3131.8135 -12292,15109,27458,-9,27455,27456,3,1,1,18,2,0,3,1,2,-9,7,2,0,0,4,5.0241857,4.9568381,0,3,0,-9,0,-9,0,-979.89081,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1438217,0,0,0,48,59,-9,-9,5,1,1,0,0,8,3,1,631,-105536.91,0,0,-189.43359 -12293,15110,27459,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,0,3,7.9865518,8.1821194,0,3,0,0,0,-9,0,-1014.1628,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,112,50,15,1,0,-9,0,3.6372337,3.6372337,0,0,0,0,0,0,0,0,0,0,0,2.4451609,0,0,0,51.389999,48.130001,-9,-9,5,1,1,0,0,10,4,0,423,-15581.074,0,0,1006.8837 -12294,15111,27460,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,0,3,9.1239176,9.1345873,0,3,0,0,0,-9,0,-1018.5698,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,40,15,1,0,-9,0,23.938517,23.938517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,2,5,1,1401,69208.883,0,0,2010.4113 -12295,15112,27461,-9,-9,-9,1,1,1,72,3,1,1,0,2,-9,2,1,0,0,4,0,6.1611018,6.0169511,4,0,0,0,-9,0,-1062.6653,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8183064,6.0208182,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,13,2,1,1236,252099.39,0,0,-275.66452 -12295,15113,27462,27463,-9,27461,2,1,1,36,1,1,1,0,2,-9,2,1,0,0,4,9.7552443,9.9866867,0,2,0,-9,4,0,4,34.862343,0,0,0,32,2,4,1,2,2,2019,1,3,10,1,60,48,15,1,0,1,0,29.815186,29.815186,0,0,0,0,0,0,0,0,1,1,0,6.2061195,0,0,0,51,57,48,57,5,1,1,0,0,13,5,1,186.66667,305474.53,0,0,8677.1133 -12295,15113,27463,27462,-9,-9,3,1,0,32,1,1,1,0,2,-9,2,1,0,0,4,8.3601475,8.2147884,0,2,0,-9,4,0,-4,-22.257687,0,0,1,36,2,4,1,-9,-9,2019,1,2,11,2,30,37,15,1,0,1,0,17.833542,17.833542,0,0,0,0,0,0,0,0,1,1,0,3.8859081,0,0,0,48,57,51,57,5,1,1,0,0,13,5,1,186.66667,305474.53,0,0,8677.1133 -12295,15113,27464,-9,27463,27462,4,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.7103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,5,1,186.66667,305474.53,0,0,8677.1133 -12296,15114,27465,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,-9,0,1,0,-915.71021,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.709999,18.35,-9,-9,1,1,1,0,1,9,1,0,1022,-52305.926,0,0,1448.7817 -12297,15115,27466,27467,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,7.2822514,7.6392474,0,1,0,-9,8,0,-2,-95.703865,0,1,1,31,1,3,1,1,1,2019,1,2,7,2,24,36,15,1,0,1,0,10.405676,10.405676,0,0,0,0,0,0,0,0,0,0,0,9.2371302,0,0,0,48.639999,44.099998,54.369999,54.799999,7,1,1,0,0,5,5,1,940,331243.22,0,0,5411.1367 -12297,15115,27467,27466,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,9.0674152,8.9071693,0,1,0,-9,8,0,2,114.59196,0,0,0,29,1,5,1,2,2,2019,1,1,8,0,41,40,15,1,0,1,0,22.906754,22.906754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,48.639999,44.099998,6,1,1,0,0,5,5,1,940,331243.22,0,0,5411.1367 -12298,15116,27468,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,6,3,0,0,3,0,6.7215676,6.9607449,3,0,0,0,-9,0,-1053.4501,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.0779557,0,24.967831,3,45.580002,47.970001,-9,-9,4,1,1,0,0,2,2,1,400,280848.59,0,0,493.12378 -12299,15117,27469,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,0,4,8.445508,8.2814541,0,3,0,0,0,-9,0,-926.90057,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,41,37,15,1,0,-9,1,13.275574,13.275574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,7,5,1,1401,266378.78,0,0,1235.6565 -12300,15118,27470,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,8,3,1,1,2,0,3.8498755,4.2809758,3,0,0,0,-9,0,-955.9574,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9341581,4.0957336,0,0,38.639999,29.690001,-9,-9,2,1,1,0,0,10,2,0,1129,-223607.52,0,0,2364.3496 -12301,15119,27471,-9,27472,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,7.8203363,7.7217302,0,3,0,0,0,-9,0,-1209.7958,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,48,20,15,1,0,-9,1,5.9278026,5.9278026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,8,3,0,686,19629.98,0,0,2454.9004 -12301,15120,27472,-9,-9,-9,2,1,0,60,2,0,0,0,2,-9,2,1,0,0,3,7.9287262,8.1851254,0,3,0,0,0,-9,0,-1031.449,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,43,40,15,1,0,-9,0,8.3928595,8.3928595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.700001,26.92,-9,-9,5,4,2,0,0,8,4,0,2250,343207.06,0,0,1987.9755 -12301,15121,27473,-9,27472,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.967288,7.7903075,0,3,0,0,0,-9,0,-965.09601,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,41,65,15,1,0,-9,1,8.3024426,8.3024426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.330002,47.959999,-9,-9,5,4,2,0,0,8,4,0,632,-53381.559,0,0,641.3092 -12302,15122,27474,27475,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,2,8.3552427,8.5552883,0,1,0,-9,38,0,-5,-40.365974,0,0,0,60,2,5,1,2,2,2019,1,2,16,4,29,30,15,1,1,1,0,20.705357,20.705357,0,0,0,0,0,0,0,0,0,0,0,7.3429508,0,0,0,39.16,44.439999,40.740002,59.619999,4,1,1,0,0,10,5,1,2915,1555614,0,0,4634.6611 -12302,15122,27475,27474,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,8.1011419,8.6842117,7.7657719,1,0,-9,9,0,5,84.815636,0,0,0,55,1,2,1,3,2,2019,1,1,9,1,42,40,15,1,0,1,0,9.6570482,9.6570482,0,0,0,0,0,0,0,0,0,0,0,1.1853864,7.508615,0,0,40.740002,59.619999,39.16,44.439999,6,1,1,0,0,10,5,1,2915,1555614,0,0,4634.6611 -12303,15123,27476,27477,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.5342708,6.544179,1,0,-9,7,0,-1,10.262784,0,0,0,77,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,3.123683,6.6095777,15.261371,3,72.449997,24.6,54,46,6,1,1,0,0,13,3,1,2001.5,612213.44,0,0,1586.2356 -12303,15123,27477,27476,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.2022362,7.3660975,1,0,-9,7,0,1,-56.565113,0,0,0,76,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3319302,0,0,54,46,72.449997,24.6,6,4,1,0,0,13,3,1,2001.5,612213.44,0,0,1586.2356 -12304,15124,27478,-9,-9,-9,1,1,0,31,3,1,2,0,2,-9,5,1,0,0,4,7.5029202,7.5306854,0,4,0,-9,0,-9,0,-993.24249,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,23,0,15,1,0,-9,0,7.4123931,7.4123931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.709999,62.41,-9,-9,4,1,1,0,0,9,2,0,659,151168.09,0,0,1821.7654 -12304,15125,27479,-9,-9,-9,2,1,1,34,3,1,2,0,2,-9,2,1,0,0,3,7.2812467,7.5329723,0,4,0,-9,0,-9,0,-1088.4757,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,30,0,15,1,1,-9,0,8.7327509,8.7327509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.889999,56.25,-9,-9,3,1,1,0,0,9,2,0,177,185919.72,0,0,1743.6266 -12305,15126,27480,27481,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,11,0,20,0,0,0,0,57,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.16971263,0,78.588882,1,57.16,56.150002,41.689999,17.76,7,1,1,0,0,7,1,0,562,626217.5,0,0,1288.4781 -12305,15126,27481,27480,-9,-9,2,1,0,57,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,9,0,-20,0,0,0,0,77,3,4,3,-9,-9,2019,4,1,13,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4507024,0,0,0,41.689999,17.76,57.16,56.150002,1,1,1,0,0,7,1,0,562,626217.5,0,0,1288.4781 -12306,15127,27482,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,1,1,0,1,2,0,6.6219912,5.772192,4,0,0,0,-9,0,-1008.9628,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,10,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4651899,0,0,0,54.889999,24.92,-9,-9,7,1,1,0,0,7,2,0,827,153025.28,0,0,2192.3643 -12306,15128,27483,-9,27482,-9,3,1,1,20,2,0,1,0,2,-9,1,1,0,0,4,7.8002229,7.9468479,0,3,0,-9,0,-9,0,-944.00061,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,40,0,15,1,0,-9,1,7.142755,7.142755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,4,0,335,-114656.52,0,0,146.11656 -12307,15129,27484,27485,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,7.994844,7.8840332,0,2,0,-9,23,0,0,-42.325832,0,0,1,43,2,4,1,3,2,2019,1,1,17,6,37,37,15,1,1,1,0,6.3613386,6.3613386,0,0,0,0,0,0,0,0,1,1,0,3.6865969,0,0,0,47.060001,44.369999,50.43,53.689999,6,1,1,0,0,10,4,1,1168.5,26504.93,0,0,3267.623 -12307,15129,27485,27484,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.3506212,8.5591536,7.1296811,2,0,-9,23,0,0,-35.595512,0,0,0,43,2,3,1,2,2,2019,1,2,7,0,38,40,15,1,0,1,0,14.164825,14.164825,0,0,0,0,0,0,0,0,1,1,0,4.3414235,6.9441423,0,0,50.43,53.689999,47.060001,44.369999,6,1,1,0,0,10,4,1,1168.5,26504.93,0,0,3267.623 -12307,15130,27486,-9,27484,27485,3,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,7.2078381,7.3833294,0,3,0,0,0,-9,0,-1044.6483,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,20,7,27,34,15,1,1,-9,1,11.035892,11.035892,0,0,0,0,0,0,0,0,1,1,0,.44986773,0,0,0,25.139999,68.029999,-9,-9,5,1,1,0,0,10,3,1,4111,-53739.25,0,0,1258.165 -12307,15131,27487,-9,27484,27485,4,1,0,18,2,0,1,0,2,-9,7,2,0,0,3,7.3199544,6.8729405,0,3,0,0,0,-9,0,-997.05316,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.438704,0,0,0,33.389999,36.279999,-9,-9,3,1,1,0,0,10,4,1,384,-40581.945,0,0,1355.8804 -12308,15132,27488,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,0,5,8.4187546,8.2858267,0,3,0,0,0,-9,0,-1087.531,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,37,35,15,1,0,-9,0,10.937256,10.937256,0,0,0,0,0,0,0,0,0,0,0,.52136713,0,0,0,48.77,60.16,-9,-9,4,1,1,0,0,4,4,0,653,-6453.7593,0,0,1198.9714 -12309,15133,27489,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1011.7875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.057512499,0,0,0,54.360001,15.73,-9,-9,4,1,1,0,0,5,1,0,749,206436.48,0,0,1160.2496 -12310,15134,27490,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.7045841,7.6721649,3,0,0,0,-9,0,-797.18359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6172838,0,3,56.669998,42.779999,-9,-9,6,1,1,0,0,11,3,1,108,294170.31,0,0,1736.91 -12311,15135,27491,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,5,6.9686747,6.7823067,5.0537925,3,0,0,0,-9,0,-958.63538,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.6095448,5.7473102,15.291378,3,54.099998,59.110001,-9,-9,7,1,1,0,0,7,2,1,5535,177003.61,0,0,572.80737 -12312,15136,27492,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-981.93524,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.549999,48.299999,-9,-9,6,2,3,0,0,8,1,0,644,-66387.891,0,0,2124.2043 -12313,15137,27493,-9,-9,-9,1,1,0,20,2,0,0,1,2,-9,7,2,0,0,3,0,7.7239342,7.729609,3,0,0,0,-9,0,-999.2583,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7557936,0,0,0,33.66,61.57,-9,-9,4,1,1,0,0,10,3,0,364,5387.2026,0,0,1575.3665 -12314,15138,27494,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,5.5136166,5.6841149,3,0,0,0,-9,0,-898.23206,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6389508,0,0,50.189999,36.009998,-9,-9,5,1,1,0,0,5,2,0,1821,301339.13,0,0,1424.0577 -12314,15139,27495,-9,27494,-9,2,1,1,42,2,0,0,0,2,-9,3,3,0,0,3,0,9.0559015,8.9670792,3,0,0,0,-9,0,-905.88708,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,9.0496521,.45523134,3,48.98,57.220001,-9,-9,5,1,1,1,0,5,5,0,221,1251400.3,0,0,3890.7075 -12315,15140,27496,-9,-9,-9,1,1,0,37,3,0,2,0,2,-9,2,1,0,0,4,7.6327143,7.8714457,7.119648,4,0,0,0,-9,0,-1048.3218,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,26,26,15,1,0,-9,0,7.8556108,7.8556108,0,0,0,0,0,0,0,0,1,1,0,6.9688687,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,1,5,3,0,701.66669,-38531.512,0,0,2730.1296 -12315,15140,27497,-9,27496,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1193.6799,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,0,701.66669,-38531.512,0,0,2730.1296 -12315,15140,27498,-9,27496,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-970.85443,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,3,0,701.66669,-38531.512,0,0,2730.1296 -12316,15141,27499,27500,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.6169324,8.020812,1,0,-9,26,0,-3,-70.171013,0,0,0,67,2,4,3,2,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0281706,7.57479,0,0,52.380001,55.599998,58.299999,47.380001,6,1,1,0,0,9,3,1,459.5,1746703.9,0,0,4104.1182 -12316,15141,27500,27499,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.0339088,7.2877526,1,0,-9,7,0,3,-17.480896,0,0,0,64,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2625937,0,0,58.299999,47.380001,52.380001,55.599998,6,1,1,0,0,9,3,1,459.5,1746703.9,0,0,4104.1182 -12317,15142,27501,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,1,1,0,0,4,8.1899977,7.7363787,0,3,0,0,0,-9,0,-1017.4244,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,50,15,1,0,-9,0,7.9391193,7.9391193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.349998,-9,-9,5,1,1,0,0,10,4,1,638,136023.02,0,0,-562.15546 -12318,15143,27502,27503,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,6.125905,6.1218672,1,0,-9,9,0,3,25.0401,0,0,0,71,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9306567,5.7927814,0,0,37.66,47.849998,60.060001,39.82,4,1,1,0,0,6,2,1,442,498843.63,0,0,1230.248 -12318,15143,27503,27502,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,4.5623746,4.8281465,1,0,-9,9,0,-3,-106.86841,0,0,0,74,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6591725,0,0,60.060001,39.82,37.66,47.849998,6,1,1,0,0,6,2,1,442,498843.63,0,0,1230.248 -12319,15144,27504,-9,-9,-9,3,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,8.230175,8.0441084,0,3,0,-9,0,-9,0,-822.61633,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,36,0,15,1,0,-9,0,10.055047,10.055047,0,0,0,0,0,0,0,0,0,0,0,3.5613618,0,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,8,4,0,1380,-39482.926,0,0,966.224 -12319,15145,27505,27506,-9,-9,2,1,1,23,1,0,0,0,1,-9,2,1,0,0,5,8.0924988,7.7656193,5.7399845,1,0,-9,2,0,0,-54.993938,0,1,0,23,1,5,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,7.7931213,7.7931213,0,0,0,0,0,0,0,0,0,0,0,7.9010882,0,0,0,57.060001,57.759998,43.380001,62.580002,6,1,1,0,0,8,5,0,318.5,28295.496,0,0,5034.6592 -12319,15145,27506,27505,-9,-9,1,1,0,23,1,0,0,0,1,-9,2,1,0,0,5,8.1010513,8.5970421,5.9450564,1,0,-9,2,0,0,-40.45229,0,1,1,23,1,5,1,1,1,2019,1,2,12,0,25,16,15,1,0,1,0,19.897644,19.897644,0,0,0,0,0,0,0,0,0,0,0,5.6566572,0,0,0,43.380001,62.580002,57.060001,57.759998,6,1,1,0,0,8,5,0,318.5,28295.496,0,0,5034.6592 -12320,15146,27507,27508,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,0,1,0,7.6054378,7.2559457,1,0,-9,43,0,3,184.56146,0,0,0,60,2,4,1,3,3,2019,3,1,25,11,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4453349,0,0,30.870001,31.07,31.02,45.110001,5,1,1,0,0,6,4,0,591.5,1350502.3,0,0,3337.6536 -12320,15146,27508,27507,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.8509979,7.7605395,5.0214553,1,0,-9,43,0,-3,55.553211,0,0,0,63,3,1,3,3,3,2019,2,2,15,6,35,35,15,1,1,4,0,6.743063,6.743063,0,0,0,0,0,0,0,7,0,0,0,6.606966,5.2070661,6.584023,2,31.02,45.110001,30.870001,31.07,6,1,1,0,0,6,4,0,591.5,1350502.3,0,0,3337.6536 -12321,15147,27509,27511,-9,-9,2,1,1,40,1,1,2,0,1,-9,2,1,0,0,4,8.5541363,8.5970325,0,2,0,-9,8,0,5,-130.50183,0,0,0,35,1,4,1,-9,-9,2019,1,1,9,0,36,36,15,1,0,1,0,16.056715,16.056715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,54.790001,55.860001,6,1,1,0,0,2,5,1,1327.25,197692.66,0,0,3965.3425 -12321,15147,27510,-9,27511,27509,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.8669,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,1327.25,197692.66,0,0,3965.3425 -12321,15147,27511,27509,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,0,4,8.6443024,8.7432728,0,2,0,-9,8,0,-5,138.81371,0,0,1,40,1,4,1,2,2,2019,1,2,11,0,47,50,15,1,0,1,0,13.865392,13.865392,0,0,0,0,0,0,0,0,1,1,0,.46024624,0,0,0,54.790001,55.860001,48.869999,58.549999,6,1,1,0,0,2,5,1,1327.25,197692.66,0,0,3965.3425 -12321,15147,27512,-9,27511,27509,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.19061,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,5,1,1327.25,197692.66,0,0,3965.3425 -12322,15148,27513,27515,-9,-9,2,1,0,32,1,0,2,0,2,-9,2,1,0,0,4,8.7928991,8.6188898,0,2,0,-9,1,-9,-12,-137.00781,-9,0,1,44,2,3,1,-9,-9,2019,1,1,11,2,40,0,15,1,0,1,0,18.098106,18.098106,0,0,0,0,0,0,0,0,1,1,0,2.6438117,0,0,0,49,56,54.959999,53.169998,5,1,1,0,0,4,5,1,510.66666,168161.58,0,0,4205.623 -12322,15148,27514,-9,27513,-9,5,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1026.2067,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,510.66666,168161.58,0,0,4205.623 -12322,15148,27515,27513,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.251709,8.6300859,0,2,0,1,1,-9,12,-14.294816,0,0,0,32,2,4,1,2,2,2019,1,2,6,0,40,45,15,1,0,1,0,11.632355,11.632355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,49,56,7,1,1,0,0,4,5,1,510.66666,168161.58,0,0,4205.623 -12323,15149,27516,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,4,0,5.2505579,5.3181553,3,0,0,0,-9,0,-1038.781,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0156183,5.3293219,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,4,2,1,960,9173.3057,0,0,4.3999557 -12324,15150,27517,-9,27519,27518,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.417,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,6,5,1,686.75,549822.94,0,0,7100.6914 -12324,15150,27518,27519,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,0,3,9.531868,9.4708433,0,2,0,-9,3,0,-1,-45.1964,0,0,0,34,1,4,2,1,1,2019,2,2,12,2,0,35,15,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,53,51.490002,57.57,4,3,4,0,0,6,5,1,686.75,549822.94,0,0,7100.6914 -12324,15150,27519,27518,-9,-9,2,1,0,34,1,1,2,0,1,0,7,2,0,0,4,7.4306374,7.4912648,0,2,0,-9,3,0,1,-51.196659,-9,0,1,33,1,3,1,-9,-9,2019,3,1,12,1,11,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,47,53,5,3,4,0,0,6,5,1,686.75,549822.94,0,0,7100.6914 -12324,15150,27520,-9,27519,27518,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.0273,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,6,5,1,686.75,549822.94,0,0,7100.6914 -12325,15151,27521,-9,-9,-9,1,1,0,51,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1155.4956,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.459999,37.049999,-9,-9,2,1,1,0,0,9,1,0,303.5,17544.334,0,0,1803.2064 -12325,15151,27522,-9,27521,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,5.4352088,5.836288,4,0,0,0,-9,0,-975.65375,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6076131,0,0,0,41.82,57.720001,-9,-9,3,1,1,0,0,9,1,0,303.5,17544.334,0,0,1803.2064 -12326,15152,27523,-9,27525,27524,3,1,0,16,2,0,1,0,2,-9,2,2,0,0,2,6.5436783,6.5483451,0,2,0,0,0,-9,0,-908.05273,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,10,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.310001,41,-9,-9,3,1,1,0,0,4,4,1,690,11082.17,0,0,3194.2207 -12326,15152,27524,27525,-9,-9,2,1,1,48,1,0,1,0,3,-9,2,1,0,0,3,8.5728703,8.9087267,0,2,0,-9,11,0,2,60.412872,0,0,0,46,2,3,3,3,2,2019,2,1,12,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,49.040001,55.860001,4,1,1,0,0,4,4,1,690,11082.17,0,0,3194.2207 -12326,15152,27525,27524,-9,-9,1,1,0,46,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,11,0,-2,-116.2206,0,0,0,48,3,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,41.34,56.619999,4,1,1,1,0,4,4,1,690,11082.17,0,0,3194.2207 -12327,15153,27526,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1104.1545,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.28776214,0,0,0,48,56,-9,-9,5,1,1,1,0,5,1,0,49,-41416.328,0,0,934.34747 -12328,15154,27527,-9,-9,-9,1,1,1,87,3,0,0,0,1,-9,4,3,0,0,5,0,9.0696297,9.0205383,3,0,0,0,-9,0,-1022.8442,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4207706,9.2013769,0,0,57.650002,56.130001,-9,-9,7,1,1,0,0,11,5,1,258,1232801.6,0,0,5086.1616 -12329,15155,27528,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,2,8.3040504,8.4854841,0,3,0,0,0,-9,0,-1013.3916,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,35,0,15,1,0,-9,0,9.7282982,9.7282982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.32,54.650002,-9,-9,6,1,1,0,0,7,4,0,215,102865.67,0,0,1476.0051 -12330,15156,27529,-9,27530,27532,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.4716,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,1,300.5,387647.28,0,0,3237.1426 -12330,15156,27530,27532,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,0,5,8.4986048,8.6029634,0,2,0,-9,19,0,-5,-10.10237,0,0,1,45,2,3,1,2,2,2019,1,1,7,0,33,31,15,1,0,1,0,15.393985,15.393985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.169998,58.560001,42.220001,56.110001,6,1,1,0,0,10,4,1,300.5,387647.28,0,0,3237.1426 -12330,15156,27531,-9,27530,27532,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.91461,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,300.5,387647.28,0,0,3237.1426 -12330,15156,27532,27530,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,8.4230995,8.3826704,0,2,0,-9,20,0,5,29.390287,0,0,0,40,2,5,1,2,2,2019,1,2,12,1,38,37,15,1,0,1,0,11.592879,11.592879,0,0,0,0,0,0,0,0,1,1,0,2.4437544,0,0,0,42.220001,56.110001,49.169998,58.560001,6,1,1,0,0,10,4,1,300.5,387647.28,0,0,3237.1426 -12331,15157,27533,27534,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,0,0,0,0,0,71,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,45.740002,52.040001,5,1,1,0,0,2,1,1,306,211861.09,0,0,1499.7174 -12331,15157,27534,27533,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,0,0,0,0,0,71,2,3,3,3,2,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1342163,0,3.2842133,3,45.740002,52.040001,52,47,5,1,1,0,0,2,1,1,306,211861.09,0,0,1499.7174 -12332,15158,27535,27536,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.0903463,8.2442713,0,2,0,-9,8,0,-1,-36.797691,0,0,0,50,2,3,3,3,3,2019,2,1,7,0,41,40,15,1,0,3,0,9.7725153,9.7725153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,43.709999,56.91,6,1,1,0,0,6,3,1,420,77488.133,0,0,1613.5511 -12332,15158,27536,27535,-9,-9,1,1,0,50,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,24,0,1,-110.26534,0,0,0,49,2,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38255799,0,0,0,43.709999,56.91,57.16,56.150002,6,1,1,0,0,6,3,1,420,77488.133,0,0,1613.5511 -12333,15159,27537,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,0,3,0,0,0,4,0,0,0,-9,0,-995.54333,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,16,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.15,47.139999,-9,-9,3,1,1,0,0,12,1,0,9845,169640.44,0,0,1479.8607 -12334,15160,27538,27539,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,8.7466526,8.9732246,0,1,0,-9,7,0,3,-79.389603,0,0,0,50,1,4,1,1,1,2019,1,2,16,5,30,20,15,1,1,1,0,26.825211,26.825211,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,45.459999,57.330002,45.849998,61.259998,6,1,1,0,0,5,5,1,3524.5,1480232.3,0,0,7182.8447 -12334,15160,27539,27538,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,9.2198124,9.5116777,0,1,0,-9,7,0,-3,-91.913483,0,0,0,53,1,4,1,2,2,2019,1,1,12,0,47,42,15,1,0,1,0,26.715616,26.715616,0,0,0,0,0,0,0,7,0,0,0,0,0,15.018517,3,45.849998,61.259998,45.459999,57.330002,6,1,1,0,0,5,5,1,3524.5,1480232.3,0,0,7182.8447 -12335,15161,27540,27542,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,8.9988499,9.0003748,0,2,0,-9,17,0,-8,15.001122,0,0,1,47,1,5,1,1,2,2019,1,2,11,1,28,32,15,1,0,1,0,34.870857,34.870857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,51.73,58.82,6,1,1,0,0,13,5,1,907,1379803.5,0,0,5576.7319 -12335,15161,27541,-9,27540,27542,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.5557,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,907,1379803.5,0,0,5576.7319 -12335,15161,27542,27540,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,5,8.621686,8.3893948,0,2,0,-9,8,0,8,-9.9905424,0,0,0,39,1,4,1,-9,-9,2019,1,1,10,0,40,48,15,1,0,1,0,16.967852,16.967852,0,0,0,0,0,0,0,0,1,1,0,4.1881375,0,0,0,51.73,58.82,51.240002,58.84,5,1,1,0,0,13,5,1,907,1379803.5,0,0,5576.7319 -12335,15161,27543,-9,27540,27542,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1063.156,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,13,5,1,907,1379803.5,0,0,5576.7319 -12336,15162,27544,27546,-9,-9,1,1,0,33,1,1,1,0,1,-9,5,1,0,0,3,8.3781691,8.074688,0,2,0,-9,9,0,0,46.118618,0,0,1,33,2,3,1,2,3,2019,1,2,10,1,38,30,15,1,0,1,0,13.217,13.217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.709999,56.91,54.959999,53.169998,6,1,1,0,0,2,5,1,344.33334,164479.44,0,0,4529.1147 -12336,15162,27545,-9,27544,27546,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1093.5382,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,5,1,344.33334,164479.44,0,0,4529.1147 -12336,15162,27546,27544,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,0,3,8.9344187,8.6359015,0,2,0,-9,9,0,0,-42.136631,0,0,0,33,1,3,1,-9,-9,2019,1,1,6,0,44,42,15,1,0,1,0,17.585634,17.585634,0,0,0,0,0,0,0,0,1,1,0,2.1127505,0,0,0,54.959999,53.169998,43.709999,56.91,6,1,1,0,0,2,5,1,344.33334,164479.44,0,0,4529.1147 -12337,15163,27547,27548,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,5,8.3759756,8.3990107,0,2,0,-9,16,0,-10,45.21191,0,0,1,43,2,3,1,2,3,2019,1,2,9,0,40,40,15,1,0,1,0,12.488564,12.488564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,39.689999,56.279999,5,1,1,0,0,4,4,1,776,204190.22,0,0,3751.4692 -12337,15163,27548,27547,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,3,8.2937298,8.500844,0,2,0,-9,16,0,10,-20.295622,0,0,0,33,2,5,1,3,3,2019,1,1,7,0,40,42,15,1,0,1,0,16.260056,16.260056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.689999,56.279999,54.099998,59.110001,5,1,1,0,0,4,4,1,776,204190.22,0,0,3751.4692 -12337,15163,27549,-9,27547,27548,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.6031,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,776,204190.22,0,0,3751.4692 -12337,15163,27550,-9,27547,27548,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.34479,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,776,204190.22,0,0,3751.4692 -12338,15164,27551,-9,27554,27555,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.0293,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,3,0,1154,230693.48,0,0,3521.3503 -12338,15164,27552,-9,27554,27555,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-949.89478,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,1,3,0,1154,230693.48,0,0,3521.3503 -12338,15164,27553,-9,27554,27555,6,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.9919,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,3,0,1154,230693.48,0,0,3521.3503 -12338,15164,27554,27555,-9,-9,2,1,0,35,1,0,3,0,2,-9,2,1,0,0,2,7.7280369,7.4664879,0,2,0,-9,17,0,-12,3.833775,0,0,1,47,1,3,1,2,2,2019,1,1,12,0,25,0,15,1,0,1,0,8.7693233,8.7693233,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.900002,32.73,43.84,58.369999,5,1,1,0,0,1,3,0,1154,230693.48,0,0,3521.3503 -12338,15164,27555,27554,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,0,3,7.9502373,8.1181936,0,2,0,-9,16,0,12,9.3177233,0,0,0,35,2,2,1,1,1,2019,1,2,10,0,37,37,15,1,0,1,0,10.796424,10.796424,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.369999,52.900002,32.73,5,1,1,0,0,1,3,0,1154,230693.48,0,0,3521.3503 -12338,15164,27556,-9,27554,27555,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,2,5.16155,5.1504908,0,2,0,0,0,-9,0,-976.2486,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.669998,29.51,-9,-9,4,1,1,0,0,1,3,0,1154,230693.48,0,0,3521.3503 -12339,15165,27557,27559,-9,-9,2,1,1,48,1,0,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,22,0,4,0,0,0,0,44,2,5,1,2,2,2019,1,1,9,0,40,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,55.580002,62.389999,56.709999,6,1,1,0,0,9,1,1,903.75,160059.72,0,0,-295.4758 -12339,15165,27558,-9,27559,27557,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.4561,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,1,1,903.75,160059.72,0,0,-295.4758 -12339,15165,27559,27557,-9,-9,1,1,0,44,1,0,2,0,2,-9,1,1,0,0,5,0,0,0,2,0,-9,22,0,-4,0,0,0,1,48,2,4,1,2,2,2019,1,2,6,0,10,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,52.400002,55.580002,7,1,1,0,0,9,1,1,903.75,160059.72,0,0,-295.4758 -12339,15165,27560,-9,27559,27557,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-901.17114,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,1,1,903.75,160059.72,0,0,-295.4758 -12340,15166,27561,27562,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,8.5855503,8.8513689,0,1,0,-9,8,0,2,-39.072094,-9,0,0,57,1,3,3,-9,-9,2019,2,1,6,0,40,0,15,1,0,4,0,19.711361,19.711361,0,0,0,0,0,0,0,0,0,0,0,7.3626766,0,0,0,57.16,56.150002,51.419998,48.119999,7,1,1,0,0,11,4,1,1179.5,1654649,0,0,3973.6624 -12340,15166,27562,27561,-9,-9,1,1,0,57,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,36,0,-2,-9.1660881,0,0,0,59,1,4,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3879576,0,0,0,51.419998,48.119999,57.16,56.150002,7,1,1,0,0,11,4,1,1179.5,1654649,0,0,3973.6624 -12340,15167,27563,-9,27562,27561,3,1,0,24,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-903.72394,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8136587,0,0,0,41.68,63.48,-9,-9,5,1,1,1,0,11,1,1,252,-65016.629,0,0,-480.94342 -12341,15168,27564,27565,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,0,5,8.4356279,8.3759394,0,2,0,-9,19,0,1,11.582397,0,0,1,42,1,5,1,2,3,2019,1,1,9,1,37,29,15,1,0,1,0,14.776227,14.776227,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.540001,62.09,61.009998,53.18,5,2,3,0,0,8,5,1,194,1373449.8,0,0,4089.7498 -12341,15168,27565,27564,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,5,8.9590282,9.0266771,0,2,0,-9,19,0,-1,-147.46184,0,0,0,43,1,5,1,1,1,2019,1,2,6,0,74,62,15,1,0,1,0,13.354824,13.354824,0,0,0,0,0,0,0,0,1,1,0,3.5074501,0,0,0,61.009998,53.18,50.540001,62.09,6,2,3,0,0,8,5,1,194,1373449.8,0,0,4089.7498 -12342,15169,27566,27567,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-4,0,0,0,0,70,3,3,3,3,3,2019,4,1,21,9,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.99841,1,30.02,55.16,53,47,5,1,1,0,0,13,1,0,359,-1301.752,0,0,3195.6555 -12342,15169,27567,27566,-9,-9,1,1,1,70,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,6,0,4,0,0,0,0,66,3,3,3,3,3,2019,4,2,10,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8441582,0,0,0,53,47,30.02,55.16,5,1,1,0,0,13,1,0,359,-1301.752,0,0,3195.6555 -12342,15170,27568,-9,27566,27567,3,1,1,33,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-898.70459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.98,54.639999,-9,-9,6,1,1,1,0,13,1,0,853,73388.234,0,0,1072.8008 -12342,15170,27569,-9,-9,27568,4,1,1,17,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1010.6273,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.419998,57.290001,-9,-9,6,1,1,0,0,13,1,0,853,73388.234,0,0,1072.8008 -12343,15171,27570,-9,27573,27571,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.3868,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,643,-10506.667,0,0,2077.4524 -12343,15171,27571,27573,-9,-9,2,1,1,31,1,0,3,0,2,-9,1,1,0,0,4,7.1734724,7.3400989,0,2,0,-9,13,0,0,47.574875,0,0,0,31,2,5,1,2,-9,2019,1,1,19,5,60,75,15,1,1,1,0,3.2778795,3.2778795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.560001,38.450001,51.139999,60.450001,6,1,1,0,0,2,3,1,643,-10506.667,0,0,2077.4524 -12343,15171,27572,-9,27573,27571,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-857.30182,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,2,3,1,643,-10506.667,0,0,2077.4524 -12343,15171,27573,27571,-9,-9,1,1,0,31,1,0,3,0,2,-9,1,1,0,0,5,7.4253497,7.2234726,0,2,0,-9,13,0,0,16.524685,0,0,1,31,2,4,1,-9,-9,2019,1,2,9,0,32,40,15,1,0,1,0,6.575635,6.575635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,53.560001,38.450001,6,1,1,0,0,2,3,1,643,-10506.667,0,0,2077.4524 -12343,15171,27574,-9,27573,27571,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.4592,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,1,643,-10506.667,0,0,2077.4524 -12344,15172,27575,-9,-9,-9,2,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,7.6133971,7.1793356,3,0,0,0,-9,0,-1029.7517,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.0781789,0,0,0,0,52.278049,0,1,1,0,0,7.496408,0,0,59.150002,20.540001,-9,-9,2,1,1,0,0,5,3,0,153,461335.47,0,0,1368.0367 -12344,15173,27576,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,4.1392846,3.982466,3,0,0,0,-9,0,-1014.5869,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,4.3679466,0,3,42.720001,27.940001,-9,-9,7,1,1,0,0,5,1,0,316,198458.69,0,0,1388.1187 -12345,15174,27577,27578,-9,-9,2,1,1,39,1,1,1,0,1,-9,1,1,0,0,5,7.8493457,8.1062651,0,2,0,-9,6,0,1,16.062622,0,0,0,38,1,4,1,1,2,2019,1,1,20,9,40,55,15,1,1,1,0,8.0980139,8.0980139,0,0,0,0,0,0,0,0,1,1,0,2.5241377,0,0,0,46.279999,62.599998,51.02,56.130001,5,1,1,0,0,9,5,1,339.66666,334242.78,0,0,4182.2104 -12345,15174,27578,27577,-9,-9,1,1,0,38,1,1,1,0,1,-9,5,1,0,0,4,9.0091,8.7220192,0,2,0,-9,6,0,-1,18.925133,0,0,1,39,1,5,1,2,2,2019,1,2,9,1,50,55,15,1,0,1,0,15.216152,15.216152,0,0,0,0,0,0,0,0,1,1,0,2.9709167,0,0,0,51.02,56.130001,46.279999,62.599998,6,1,1,0,0,9,5,1,339.66666,334242.78,0,0,4182.2104 -12345,15174,27579,-9,27578,27577,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1007.5052,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,5,1,339.66666,334242.78,0,0,4182.2104 -12346,15175,27580,27581,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,1,2,0,6.0181689,6.1087537,1,0,-9,44,0,-3,-148.87181,0,0,0,74,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,7.5181475,7.2942252,0,0,0,0,0,1,1,0,6.1730003,5.8824544,0,0,58.759998,24.43,50.380001,30.780001,7,1,1,0,0,9,2,0,423.5,369906.84,0,0,2892.0017 -12346,15175,27581,27580,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,44,0,3,64.359833,0,0,0,71,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,5.9335165,12.574228,0,0,0,0,0,1,1,0,0,0,0,0,50.380001,30.780001,58.759998,24.43,7,1,1,0,0,9,2,0,423.5,369906.84,0,0,2892.0017 -12347,15176,27582,27583,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,5.9616604,6.1506267,1,0,-9,28,0,9,2.7928216,0,0,0,59,3,3,1,3,3,2019,3,2,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2930574,0,0,50,47,51,49,5,3,4,0,1,8,3,0,341.5,2067238,0,0,2692.2476 -12347,15176,27583,27582,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,3,7.7289429,8.0522509,0,1,0,-9,9,0,0,-47.612579,0,0,0,68,3,3,3,-9,-9,2019,2,1,10,1,40,40,15,1,0,4,0,6.4719958,6.4719958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,50,47,5,3,4,0,0,8,3,0,341.5,2067238,0,0,2692.2476 -12348,15177,27584,-9,27587,27586,2,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.9106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,1004.25,-63858.621,0,0,2439.6533 -12348,15177,27585,-9,27587,27586,3,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.55371,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,1004.25,-63858.621,0,0,2439.6533 -12348,15177,27586,27587,-9,-9,4,1,1,29,1,1,2,0,2,-9,2,1,0,0,2,8.0992012,7.864922,0,2,0,-9,2,0,3,69.46981,0,1,0,26,2,2,3,-9,-9,2019,2,1,2,0,43,40,15,1,0,3,0,8.4811411,8.4811411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.610001,51.040001,44.200001,51.880001,6,1,1,0,0,4,3,0,1004.25,-63858.621,0,0,2439.6533 -12348,15177,27587,27586,-9,-9,1,1,0,26,1,1,2,0,2,-9,9,3,0,1,2,0,5.8686247,6.1162195,2,0,-9,2,0,-3,73.438751,0,1,1,29,2,2,1,2,2,2019,3,4,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.8284106,0,24.024046,3,44.200001,51.880001,54.610001,51.040001,5,1,1,0,0,4,3,0,1004.25,-63858.621,0,0,2439.6533 -12349,15178,27588,27591,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,0,3,7.7815037,7.8879995,0,2,0,-9,20,0,-4,3.0852191,0,0,1,42,2,4,1,2,3,2019,1,2,18,5,33,31,15,1,1,1,0,8.0560732,8.0560732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,53.419998,56.860001,50.75,5,1,1,0,1,6,3,1,652,531532.13,0,0,3583.9597 -12349,15178,27589,-9,27588,27591,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1088.902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,3,1,652,531532.13,0,0,3583.9597 -12349,15178,27590,-9,27588,27591,5,1,0,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-869.15271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,6,3,1,652,531532.13,0,0,3583.9597 -12349,15178,27591,27588,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,8.4470034,8.1885071,0,2,0,-9,20,0,4,23.004234,0,0,0,38,2,3,1,2,2,2019,1,1,7,0,43,45,15,1,0,1,0,10.426298,10.426298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.860001,50.75,48.279999,53.419998,6,1,1,0,0,6,3,1,652,531532.13,0,0,3583.9597 -12349,15178,27592,-9,27588,27591,3,1,1,17,2,0,3,1,2,0,7,2,0,0,4,5.6778784,5.6810842,0,2,0,0,0,-9,0,-899.9057,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.830002,-9,-9,5,1,1,0,0,6,3,1,652,531532.13,0,0,3583.9597 -12350,15179,27593,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.7698159,7.197206,3,0,0,0,-9,0,-1058.6511,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.9412107,6.8493447,78.239059,3,45.990002,46.68,-9,-9,4,1,1,0,0,2,2,1,1074,112915.86,0,0,253.65291 -12351,15180,27594,-9,27595,27597,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.67383,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,8,2,0,849.59998,198799.27,0,0,2356.2075 -12351,15180,27595,27597,-9,-9,1,1,0,47,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,-1,-49.097683,0,0,0,48,2,3,1,2,3,2019,3,5,20,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.4619899,3,46.310001,41.900002,19.34,53.330002,3,3,4,0,0,8,2,0,849.59998,198799.27,0,0,2356.2075 -12351,15180,27596,-9,27595,27597,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.71729,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,2,0,849.59998,198799.27,0,0,2356.2075 -12351,15180,27597,27595,-9,-9,5,1,1,48,1,0,3,0,2,-9,1,1,0,0,3,8.2353354,7.758142,0,2,0,-9,4,0,1,-3.5097167,0,0,0,47,2,4,3,-9,-9,2019,2,1,19,7,30,30,15,1,1,3,0,12.132702,12.132702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.34,53.330002,46.310001,41.900002,2,1,1,0,1,8,2,0,849.59998,198799.27,0,0,2356.2075 -12351,15180,27598,-9,27595,27597,2,1,1,16,2,0,3,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-989.39545,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.279999,62.599998,-9,-9,6,4,2,0,0,8,2,0,849.59998,198799.27,0,0,2356.2075 -12352,15181,27599,-9,27601,27600,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.2023,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,1,402,166623.84,0,0,1824.3334 -12352,15181,27600,27601,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,3,7.8996696,8.0096893,0,2,0,-9,9,0,2,-144.0201,0,0,0,44,2,3,3,3,2,2019,2,1,8,0,40,0,15,1,0,3,0,9.4798698,9.4798698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,46.080002,57.200001,4,1,1,0,0,4,2,1,402,166623.84,0,0,1824.3334 -12352,15181,27601,27600,-9,-9,1,1,0,44,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,9,0,-2,17.956934,0,0,1,46,3,3,1,-9,-9,2019,3,2,11,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,52,54.509998,4,1,1,0,0,4,2,1,402,166623.84,0,0,1824.3334 -12352,15181,27602,-9,27601,27600,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-981.99048,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,4,2,1,402,166623.84,0,0,1824.3334 -12353,15182,27603,27604,-9,-9,1,1,0,36,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,5,0,-6,-101.64258,0,0,1,42,2,4,1,2,2,2019,3,2,17,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.349998,14.98,54.200001,57.490002,6,1,1,0,0,12,3,0,549,-39434.781,0,0,2897.1533 -12353,15182,27604,27603,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,4,8.3334446,8.6591024,0,1,0,-9,5,0,6,30.627762,0,0,0,36,2,1,3,-9,-9,2019,2,1,17,6,49,0,15,1,1,3,0,11.849727,11.849727,0,0,0,0,0,0,0,42,1,1,0,0,0,53.339817,2,54.200001,57.490002,44.349998,14.98,6,1,1,0,0,12,3,0,549,-39434.781,0,0,2897.1533 -12354,15183,27605,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,1,1,0,0,4,7.1257067,7.7506647,6.8575678,3,0,0,0,-9,0,-1023.2018,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,37,38,15,1,0,-9,0,4.6380773,4.6380773,0,0,0,0,0,0,0,0,1,1,0,0,6.4129415,0,0,48.360001,54.849998,-9,-9,6,4,2,0,0,5,3,1,851,213367.86,0,0,2023.8765 -12355,15184,27606,27609,-9,-9,1,1,0,39,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,12,0,1,-36.493565,0,0,1,38,1,4,1,2,3,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.139999,45.740002,30.530001,65.610001,6,4,2,0,0,8,5,1,505.75,360713.94,0,0,7696.9614 -12355,15184,27607,-9,27606,27609,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.81659,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,5,1,505.75,360713.94,0,0,7696.9614 -12355,15184,27608,-9,27606,27609,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.0166,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,8,5,1,505.75,360713.94,0,0,7696.9614 -12355,15184,27609,27606,-9,-9,2,1,1,38,1,0,2,0,1,-9,1,1,0,0,4,9.5911579,9.6000462,0,2,0,-9,3,0,-1,-17.416599,0,0,0,39,1,3,3,-9,-9,2019,2,1,17,6,42,40,15,1,1,3,0,49.943459,49.943459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.530001,65.610001,53.139999,45.740002,4,1,1,0,0,8,5,1,505.75,360713.94,0,0,7696.9614 -12356,15185,27610,27611,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,4,9.298645,9.0590591,0,2,0,-9,12,0,-8,0,0,0,1,47,2,3,1,2,2,2019,1,1,10,0,45,0,15,1,0,1,0,23.901527,23.901527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.360001,51.57,5,1,1,0,0,2,5,1,701.33331,318745.78,0,0,8119.4238 -12356,15185,27611,27610,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,9.2307501,9.3291931,0,2,0,-9,14,0,8,0,0,0,0,39,1,4,1,2,2,2019,1,2,6,0,42,0,15,1,0,1,0,29.757231,29.757231,0,0,0,0,0,0,0,0,0,0,0,.67518562,0,0,0,55.360001,51.57,57.16,56.150002,6,1,1,0,0,2,5,1,701.33331,318745.78,0,0,8119.4238 -12356,15185,27612,-9,27610,27611,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.2991,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,5,1,701.33331,318745.78,0,0,8119.4238 -12357,15186,27613,-9,-9,-9,1,1,1,30,3,0,0,0,2,-9,2,1,0,0,3,8.3637743,8.5171738,0,3,0,-9,0,-9,0,-917.79382,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,35,0,15,1,0,-9,0,19.335608,19.335608,0,0,0,0,0,0,0,91,1,1,0,0,0,124.06346,3,37.02,47.889999,-9,-9,3,2,3,0,0,8,5,0,388,444668.41,0,0,2162.9954 -12358,15187,27614,-9,27616,27617,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.4988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,2,0,936.5,-33423.387,0,0,1961.5538 -12358,15187,27615,-9,27616,27617,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-966.72015,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,2,0,936.5,-33423.387,0,0,1961.5538 -12358,15187,27616,27617,-9,-9,2,1,0,25,1,2,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,3,0,-4,73.118271,0,1,1,29,2,2,1,-9,-9,2019,3,1,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.030001,40.880001,39.950001,36.040001,4,1,1,0,1,13,2,0,936.5,-33423.387,0,0,1961.5538 -12358,15187,27617,27616,-9,-9,1,1,1,29,1,2,2,0,2,-9,2,1,0,0,2,7.8428001,7.5920215,0,2,0,-9,3,0,4,-33.363934,0,1,0,25,2,2,3,-9,-9,2019,2,2,23,10,41,37,15,1,1,3,0,7.1521673,7.1521673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.950001,36.040001,29.030001,40.880001,6,1,1,0,0,13,2,0,936.5,-33423.387,0,0,1961.5538 -12359,15188,27618,27619,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,63,0,3,0,0,0,0,83,3,2,3,3,3,2019,4,2,20,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.830002,40.68,40.59,50.560001,4,1,1,0,1,1,1,1,502.5,124135.21,0,0,1849.6787 -12359,15188,27619,27618,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,63,0,-3,0,0,0,0,86,3,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,50.560001,38.830002,40.68,6,1,1,0,0,1,1,1,502.5,124135.21,0,0,1849.6787 -12360,15189,27620,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1049.5475,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,7.3299999,-9,-9,2,1,1,0,0,5,1,0,409,-66482.672,0,0,1505.3905 -12361,15190,27621,-9,-9,-9,6,1,0,64,3,1,3,0,3,-9,8,3,1,1,2,0,0,0,4,0,-9,0,-9,0,-1024.9901,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.279999,36.849998,-9,-9,4,1,1,0,0,4,1,0,351,98332.758,0,0,172.44609 -12361,15191,27622,-9,27624,27626,4,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.30945,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,1,0,687.20001,42511.984,0,0,1288.631 -12361,15191,27623,-9,27624,27626,5,1,0,15,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1009.7571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,1,0,687.20001,42511.984,0,0,1288.631 -12361,15191,27624,27626,-9,-9,1,1,0,32,1,1,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,-11,0,0,0,1,43,2,2,3,3,2,2019,4,3,13,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.860001,59.860001,2.4200001,65.790001,4,1,1,0,0,4,1,0,687.20001,42511.984,0,0,1288.631 -12361,15191,27625,-9,27624,27626,2,1,1,14,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1052.8289,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,1,0,687.20001,42511.984,0,0,1288.631 -12361,15191,27626,27624,27621,-9,3,1,1,43,1,1,3,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,3,0,11,0,0,0,0,32,2,4,3,3,-9,2019,4,1,19,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2.4200001,65.790001,36.860001,59.860001,3,1,1,0,0,4,1,0,687.20001,42511.984,0,0,1288.631 -12362,15192,27627,27628,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.6688662,8.0968094,0,1,0,-9,36,0,2,40.894753,0,0,0,57,2,4,1,3,2,2019,1,2,11,0,27,21,15,1,0,1,0,10.912056,10.912056,0,0,0,0,0,0,0,0,0,0,0,2.072489,0,0,0,54.200001,57.490002,54,54,6,1,1,0,0,9,5,1,481.5,1619124,0,0,3280.4998 -12362,15192,27628,27627,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.9790754,9.1005802,0,1,0,-9,7,0,-2,-7.2781606,0,0,0,59,2,4,1,-9,-9,2019,1,1,9,0,40,45,15,1,0,1,0,26.429008,26.429008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54.200001,57.490002,6,1,1,0,0,9,5,1,481.5,1619124,0,0,3280.4998 -12363,15193,27629,-9,27631,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.9493,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,400.66666,-85059.273,0,0,2166.0522 -12363,15193,27630,-9,27631,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-994.42255,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,6,2,0,400.66666,-85059.273,0,0,2166.0522 -12363,15193,27631,-9,-9,-9,1,1,0,35,3,0,2,0,1,-9,2,1,0,0,3,7.1914539,7.0654778,6.2046843,4,0,0,0,-9,0,-949.88098,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,20,0,15,1,0,-9,0,8.6411123,8.6411123,0,0,0,0,0,0,0,0,1,1,0,6.2849593,0,0,0,43.369999,57.279999,-9,-9,5,1,1,0,0,6,2,0,400.66666,-85059.273,0,0,2166.0522 -12364,15194,27632,27635,-9,-9,1,1,1,43,1,2,2,0,2,-9,2,1,0,0,4,8.8131933,8.9737644,0,2,0,-9,4,0,6,-5.0984998,0,0,0,37,1,4,1,2,1,2019,1,2,12,0,40,45,15,1,0,1,0,19.027765,19.027765,0,0,0,0,0,0,0,0,1,1,0,5.3379951,0,0,0,54.200001,57.490002,51.830002,57.200001,2,1,1,0,0,12,5,1,893,505293.84,0,0,3992.4399 -12364,15194,27633,-9,27635,27632,4,1,1,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.2208,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,1,893,505293.84,0,0,3992.4399 -12364,15194,27634,-9,27635,27632,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.7943,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,1,893,505293.84,0,0,3992.4399 -12364,15194,27635,27632,-9,-9,2,1,0,37,1,2,2,0,1,-9,2,1,0,0,4,8.2067461,8.1642981,0,2,0,-9,4,0,-6,37.682899,0,0,1,43,2,4,1,-9,-9,2019,1,1,6,0,30,0,15,1,0,1,0,15.22276,15.22276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,54.200001,57.490002,6,1,1,0,0,12,5,1,893,505293.84,0,0,3992.4399 -12365,15195,27636,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,3,8.6010723,8.8117781,7.2406402,3,0,0,0,-9,0,-1078.3607,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,44,44,15,1,0,-9,0,11.737175,11.737175,0,0,0,0,0,0,0,0,1,1,0,6.6285939,0,0,0,49,50,-9,-9,2,1,1,0,0,8,5,1,309,-171868.89,0,0,2362.9148 -12366,15196,27637,-9,27639,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1065.4019,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,4,1,0,558.66669,79654.406,0,0,1785.6974 -12366,15196,27638,-9,27639,-9,3,1,0,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-972.25092,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,3,4,0,0,4,1,0,558.66669,79654.406,0,0,1785.6974 -12366,15196,27639,-9,-9,-9,1,1,0,43,2,0,2,0,2,-9,6,3,0,0,5,0,0,0,4,0,0,0,-9,0,-1093.7399,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.780001,59.990002,-9,-9,4,3,4,0,0,4,1,0,558.66669,79654.406,0,0,1785.6974 -12367,15197,27640,27642,-9,-9,1,1,1,31,1,1,1,0,2,-9,2,1,0,0,4,8.4450006,8.1679287,0,2,0,-9,4,0,2,-12.58543,0,0,0,29,2,5,1,2,2,2019,1,2,14,5,40,40,15,1,1,1,0,9.4214029,9.4214029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,57.060001,57.759998,6,1,1,0,0,10,4,1,335.66666,-69308.82,0,0,2572.0427 -12367,15197,27641,-9,27642,27640,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.6816,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,335.66666,-69308.82,0,0,2572.0427 -12367,15197,27642,27640,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,5,7.6279883,7.6515121,0,2,0,-9,4,0,-2,-52.85622,0,1,1,31,2,4,1,-9,-9,2019,1,1,6,1,37,40,15,1,0,1,0,6.9130511,6.9130511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,49.349998,59.639999,7,1,1,0,0,10,4,1,335.66666,-69308.82,0,0,2572.0427 -12368,15198,27643,-9,-9,-9,2,1,1,58,2,0,0,0,1,-9,2,1,0,0,3,8.0238132,8.2251015,0,3,0,0,0,-9,0,-867.1615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,40,38,15,1,1,-9,1,10.943837,10.943837,0,0,0,0,0,0,0,27.5,1,1,0,6.0927086,0,19.800903,3,26.780001,53.919998,-9,-9,2,1,1,0,0,12,4,1,811,66393.102,0,0,1549.7551 -12369,15199,27644,27645,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.5549407,7.241796,1,0,-9,48,0,-1,-30.201475,0,0,0,70,1,3,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.385674,7.6771808,6.4348235,2,54.200001,57.490002,59.599998,46.990002,6,1,1,0,0,13,5,1,812,2348483,0,0,5586.5264 -12369,15199,27645,27644,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,8.6051264,8.7248821,1,0,-9,48,0,1,17.2724,0,0,0,69,1,4,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6756458,0,0,59.599998,46.990002,54.200001,57.490002,6,1,1,0,0,13,5,1,812,2348483,0,0,5586.5264 -12370,15200,27646,-9,27647,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-969.71759,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,5,1,1,0,0,13,2,0,1556.5,16495.408,0,0,2549.2131 -12370,15200,27647,-9,-9,-9,1,1,0,40,2,0,2,0,2,-9,2,1,0,1,4,6.8476048,6.565547,0,4,0,0,0,-9,0,-965.3656,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,15,14,15,1,0,-9,0,8.2171926,8.2171926,0,0,0,0,0,0,0,42,1,1,0,0,0,40.312977,3,48,56,-9,-9,5,1,1,0,0,13,2,0,1556.5,16495.408,0,0,2549.2131 -12371,15201,27648,-9,27649,27650,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.85547,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,0,618.66669,234987,0,0,2598.2488 -12371,15201,27649,27650,-9,-9,2,1,0,41,1,0,1,0,3,-9,1,1,0,0,4,6.9569626,7.1554661,0,2,0,-9,22,0,-1,-4.1665111,0,0,1,42,2,3,1,2,2,2019,1,1,16,5,32,24,15,1,1,1,0,3.5847769,3.5847769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.450001,62.919998,31.24,54.619999,5,1,1,0,0,9,4,0,618.66669,234987,0,0,2598.2488 -12371,15201,27650,27649,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.6223803,8.6715164,0,2,0,-9,22,0,1,37.140755,0,0,0,41,3,4,1,2,2,2019,1,2,17,5,60,47,15,1,1,1,0,10.036803,10.036803,0,0,0,0,0,0,0,0,0,0,0,7.2039666,0,0,0,31.24,54.619999,36.450001,62.919998,5,1,1,0,0,9,4,0,618.66669,234987,0,0,2598.2488 -12372,15202,27651,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,6.1823545,6.1652489,0,3,0,-9,0,-9,0,-973.84277,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,7,0,15,1,0,-9,0,6.246037,6.246037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,7,3,4,0,0,4,2,0,1810,403866.03,0,0,1748.3203 -12373,15203,27652,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-885.35626,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,4,1,-9,0,0,0,1,0,0,4.7012749,0,15.587448,0,0,1,1,0,0,0,0,0,32.34,28.790001,-9,-9,4,1,1,0,0,8,1,0,319,449645.66,0,0,-102.32802 -12374,15204,27653,-9,27655,27654,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-912.38031,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,5,1,623,333172.88,0,0,3893.6655 -12374,15204,27654,27655,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,0,3,8.9712124,9.2789755,0,2,0,-9,7,0,1,-66.682869,0,0,0,30,1,4,1,1,1,2019,1,1,9,0,58,55,15,1,0,1,0,17.358562,17.358562,0,0,0,0,0,0,0,0,0,0,0,1.6102477,0,0,0,52,54.509998,43.790001,58.330002,6,1,1,0,0,2,5,1,623,333172.88,0,0,3893.6655 -12374,15204,27655,27654,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,0,4,8.2000418,8.2227678,0,2,0,-9,7,0,-1,-73.883484,0,0,1,31,1,3,1,-9,-9,2019,1,2,9,0,48,50,15,1,0,1,0,9.1455011,9.1455011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.790001,58.330002,52,54.509998,6,1,1,0,0,2,5,1,623,333172.88,0,0,3893.6655 -12375,15205,27656,27657,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.7032385,8.6594524,0,1,0,-9,16,0,11,41.268032,0,0,0,43,2,2,1,-9,-9,2019,1,1,6,0,44,44,15,1,0,1,0,19.289425,19.289425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,52,33.25,6,1,1,0,0,10,5,1,1008.5,409808.03,0,0,4649.4824 -12375,15205,27657,27656,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,1,2,7.7363977,7.8983197,0,1,0,-9,16,0,-11,83.207443,0,0,1,54,2,4,1,2,3,2019,1,2,7,0,13,22,15,1,0,1,0,16.866547,16.866547,0,0,0,0,0,0,0,0,1,1,0,7.9647965,0,0,0,52,33.25,60.119999,54.799999,6,1,1,0,0,10,5,1,1008.5,409808.03,0,0,4649.4824 -12375,15206,27658,-9,27657,27656,3,1,1,19,2,0,0,0,2,1,2,1,0,0,5,7.7779255,7.6380229,0,3,0,0,0,-9,0,-1013.4636,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,0,15,1,0,-9,1,7.9036198,7.9036198,0,0,0,0,0,0,0,0,1,1,0,2.9214313,0,0,0,54.689999,57.470001,-9,-9,5,1,1,0,0,10,3,1,3937,-80124.227,0,0,911.85913 -12376,15207,27659,-9,27660,27661,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.09174,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,2004,1166519.5,0,0,4736.0029 -12376,15207,27660,27661,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,3,8.6521788,8.2242985,0,2,0,-9,24,0,1,30.667227,0,0,0,49,2,2,1,-9,2,2019,1,1,7,0,30,30,15,1,0,1,0,17.71316,17.71316,0,0,0,0,0,0,0,0,1,1,0,1.3752766,0,0,0,52.689999,48.709999,31.15,49.43,5,1,1,0,0,7,5,1,2004,1166519.5,0,0,4736.0029 -12376,15207,27661,27660,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,2,9.0735092,8.5038166,0,2,0,-9,24,0,-1,14.862395,0,0,0,50,1,3,1,-9,2,2019,1,2,14,2,50,45,15,1,0,1,0,18.619184,18.619184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.15,49.43,52.689999,48.709999,2,1,1,0,0,7,5,1,2004,1166519.5,0,0,4736.0029 -12376,15208,27662,-9,27660,27661,3,1,1,18,2,0,1,0,2,-9,2,1,0,0,2,7.4229298,7.6438942,0,3,0,0,0,-9,0,-931.35382,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,45,0,15,1,0,-9,1,4.7760911,4.7760911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.310001,36.43,-9,-9,4,1,1,0,0,7,3,1,1895,62508.055,0,0,-90.168526 -12377,15209,27663,27664,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,7,0,-2,42.44508,0,0,0,70,1,5,3,2,1,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8347402,0,0,0,53.259998,55.310001,55.09,55.869999,6,1,1,0,0,9,3,1,925,988156.25,0,0,2702.5757 -12377,15209,27664,27663,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,5,0,8.3164101,8.0001278,1,0,-9,7,0,2,71.502731,0,0,0,68,1,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.796,7.9496655,0,0,55.09,55.869999,53.259998,55.310001,6,1,1,0,0,9,3,1,925,988156.25,0,0,2702.5757 -12378,15210,27665,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.7685843,7.5274382,3,0,-9,0,1,0,-1052.213,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4140387,6.1758509,3,48.869999,58.549999,-9,-9,4,1,1,0,0,11,3,1,1590,670281.69,0,0,830.85907 -12379,15211,27666,27667,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.84482,9.024807,0,1,0,-9,7,0,-8,-40.499409,0,0,0,57,1,2,1,2,2,2019,1,1,10,1,45,45,15,1,0,1,0,18.017385,18.017385,0,0,0,0,0,0,0,0,0,0,0,2.7997038,0,0,0,53.900002,52.09,46.66,19.299999,6,1,1,0,0,7,5,1,1340,1156416.8,0,0,4803.9429 -12379,15211,27667,27666,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,2,8.2785721,8.2728443,0,1,0,-9,7,0,8,108.13762,0,0,0,49,2,4,1,3,3,2019,1,2,15,3,35,37,15,1,0,1,0,12.153286,12.153286,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.2790098,3,46.66,19.299999,53.900002,52.09,3,1,1,0,0,7,5,1,1340,1156416.8,0,0,4803.9429 -12380,15212,27668,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,4,0,6.2867703,6.6084352,3,0,0,0,-9,0,-1141.3917,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2217011,0,0,53.57,45.34,-9,-9,4,1,1,0,0,9,2,1,1149,1119874.9,0,0,586.15564 -12381,15213,27669,27670,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,5.9663868,6.3351254,1,0,-9,10,0,-1,-.3501507,0,0,0,76,3,3,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.575489,5.9523315,0,0,48.990002,50.41,52,47,7,1,1,0,0,11,2,1,535,315039.81,0,0,2562.8496 -12381,15213,27670,27669,-9,-9,1,1,1,76,1,0,0,0,3,-9,1,1,0,0,3,4.8780622,7.4024315,7.3970685,1,0,-9,10,0,1,-10.192152,0,0,0,75,2,4,3,3,3,2019,2,2,10,1,50,45,15,1,0,4,0,.39513677,.39513677,0,0,0,0,0,0,0,0,1,1,0,4.9089856,7.2926459,0,0,52,47,48.990002,50.41,5,1,1,0,0,11,2,1,535,315039.81,0,0,2562.8496 -12382,15214,27671,27673,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,8.4809542,8.5071077,0,2,0,-9,2,0,-5,-63.073101,-9,0,1,44,2,2,1,2,1,2019,1,2,7,0,43,0,15,1,0,1,0,11.729303,11.729303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,43.619999,49.099998,6,1,1,0,0,12,4,1,1006,77231.633,0,0,3277.938 -12382,15214,27672,-9,27671,27673,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.2179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,1006,77231.633,0,0,3277.938 -12382,15214,27673,27671,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,2,8.4527884,8.3249836,0,2,0,-9,2,0,5,-177.78459,0,0,0,39,2,4,1,2,2,2019,1,1,11,2,39,39,15,1,0,1,0,10.562405,10.562405,0,0,0,0,0,0,0,2,1,1,0,0,0,7.1583462,3,43.619999,49.099998,54.200001,57.490002,5,1,1,0,0,12,4,1,1006,77231.633,0,0,3277.938 -12382,15214,27674,-9,27671,27673,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.547,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,12,4,1,1006,77231.633,0,0,3277.938 -12383,15215,27675,-9,27677,27676,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.04407,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,4,1,425.66666,214367.66,0,0,3016.2207 -12383,15215,27676,27677,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,0,4,9.0866356,8.9319725,0,2,0,-9,6,0,0,-98.620094,0,0,0,33,1,3,1,2,1,2019,1,1,6,0,45,44,15,1,0,1,0,17.639847,17.639847,0,0,0,0,0,0,0,0,1,1,0,2.7417443,0,0,0,62.490002,55.09,18.440001,63.330002,6,1,1,0,0,2,4,1,425.66666,214367.66,0,0,3016.2207 -12383,15215,27677,27676,-9,-9,1,1,0,33,1,1,1,0,1,-9,5,1,0,0,3,7.3142757,7.0236006,0,2,0,-9,6,0,0,-38.033958,0,0,1,33,1,4,1,2,2,2019,1,2,34,11,45,37,15,1,1,1,0,2.8044546,2.8044546,0,0,0,0,0,0,0,0,1,1,0,1.7825423,0,0,0,18.440001,63.330002,62.490002,55.09,2,1,1,0,0,2,4,1,425.66666,214367.66,0,0,3016.2207 -12384,15216,27678,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,2,5.9809399,5.886044,0,3,0,0,0,-9,0,-971.37042,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,19,7,21,0,15,1,1,-9,0,1.8255011,1.8255011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.25,56.110001,-9,-9,1,2,3,0,1,8,2,0,753,283585.63,0,0,-1336.8496 -12385,15217,27679,-9,-9,27680,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-934.72186,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,3,1,714.33331,109487.83,0,0,3843.5837 -12385,15217,27680,-9,-9,-9,1,1,1,42,3,0,3,0,2,-9,2,1,0,0,3,8.0645561,8.119195,0,4,0,0,0,-9,0,-930.59705,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,37,15,1,0,-9,0,10.081092,10.081092,0,0,0,0,0,0,0,0,1,1,0,8.1403446,0,0,0,43.02,57.639999,-9,-9,6,1,1,0,0,11,3,1,714.33331,109487.83,0,0,3843.5837 -12385,15217,27681,-9,-9,27680,2,1,1,17,2,0,3,0,2,1,11,3,0,0,4,7.2985187,7.3429642,0,4,0,0,0,-9,0,-915.66266,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,1,9,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,51.389999,-9,-9,4,1,1,0,0,11,3,1,714.33331,109487.83,0,0,3843.5837 -12386,15218,27682,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,0,2,8.7226324,8.8281851,0,3,0,0,0,-9,0,-925.42926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,9,80,78,15,1,1,-9,0,10.294949,10.294949,0,0,0,0,0,0,0,0,0,0,0,7.2990189,0,0,0,32.09,36.82,-9,-9,2,1,1,0,0,10,5,1,871,2183864.3,0,0,2047.8268 -12387,15219,27683,27684,-9,-9,2,1,0,43,1,0,0,0,1,-9,7,2,0,0,3,0,0,0,1,0,-9,4,0,0,-116.15775,1,0,1,43,2,4,1,-9,-9,2019,3,1,9,1,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,57.16,56.150002,6,1,1,0,0,11,3,0,215.5,12673.199,0,0,1985.7512 -12387,15219,27684,27683,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,4,7.7810316,7.2734852,0,1,0,-9,4,0,0,82.763969,0,0,0,43,1,3,2,2,2,2019,2,2,6,0,69,50,15,1,0,2,0,5.2914977,5.2914977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,52,54.509998,6,1,1,0,0,11,3,0,215.5,12673.199,0,0,1985.7512 -12388,15220,27685,27686,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,5.4286771,5.5879035,1,0,-9,60,0,-2,-37.491226,0,0,0,81,3,4,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1489505,5.9009643,6.2292285,3,57.73,54.529999,59.540001,45.700001,7,1,1,0,0,9,2,1,564.5,626200.38,0,0,1698.5522 -12388,15220,27686,27685,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,4,0,6.3712397,6.582552,1,0,-9,60,0,2,20.567188,0,0,0,79,3,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3189616,6.4906449,3.5418794,3,59.540001,45.700001,57.73,54.529999,6,1,1,0,0,9,2,1,564.5,626200.38,0,0,1698.5522 -12389,15221,27687,27688,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,-2,-95.318756,0,0,0,80,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,60.290001,52.110001,2,1,1,0,0,7,2,0,1051.5,593364.75,0,0,2280.085 -12389,15221,27688,27687,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,3,0,5.8642106,5.5117631,1,0,-9,60,0,2,9.6987267,0,0,0,78,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.9365044,0,0,60.290001,52.110001,57.330002,53.459999,7,1,1,0,0,7,2,0,1051.5,593364.75,0,0,2280.085 -12390,15222,27689,-9,27690,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-991.48474,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,4,2,0,0,9,5,1,3114,1411589.5,0,0,3173.3591 -12390,15222,27690,-9,-9,-9,1,1,0,41,3,0,1,0,1,-9,2,1,0,0,4,8.5533485,9.066021,7.3601813,4,0,0,0,-9,0,-1005.0338,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,52,40,15,1,0,-9,0,16.591431,16.591431,0,0,0,0,0,0,0,0,1,1,0,7.4324121,0,0,0,51.240002,58.84,-9,-9,6,4,2,0,0,9,5,1,3114,1411589.5,0,0,3173.3591 -12391,15223,27691,27693,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,0,4,7.9263029,7.2773814,0,2,0,-9,6,0,2,53.218529,0,1,1,27,2,4,1,2,3,2019,1,2,7,1,29,28,15,1,0,1,0,6.3109107,6.3109107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,40.470001,55.650002,6,1,1,0,0,5,3,1,520,-7009.9902,0,0,2055.7339 -12391,15223,27692,-9,27691,27693,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.74121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,1,520,-7009.9902,0,0,2055.7339 -12391,15223,27693,27691,-9,-9,2,1,1,27,1,1,2,0,2,-9,2,1,0,0,4,8.2047462,8.3908558,0,2,0,-9,6,0,-2,27.442404,0,1,0,29,2,4,1,2,2,2019,1,1,19,6,43,42,15,1,1,1,0,9.3217964,9.3217964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.470001,55.650002,54.450001,56.220001,4,1,1,0,0,5,3,1,520,-7009.9902,0,0,2055.7339 -12391,15223,27694,-9,27691,27693,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-978.8479,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,1,520,-7009.9902,0,0,2055.7339 -12392,15224,27695,-9,27698,27697,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.3066,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,412.25,209332.69,0,0,3520.2471 -12392,15224,27696,-9,27698,27697,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.97778,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,412.25,209332.69,0,0,3520.2471 -12392,15224,27697,27698,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,2,9.0655127,9.0080309,0,2,0,-9,2,0,2,-53.50832,0,0,0,42,2,4,1,3,2,2019,1,1,9,0,50,61,15,1,0,1,0,17.872656,17.872656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.77,45.880001,58.720001,51.290001,5,1,1,0,0,7,4,1,412.25,209332.69,0,0,3520.2471 -12392,15224,27698,27697,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.2613802,7.0711899,0,2,0,-9,2,0,-2,-47.507336,0,0,1,44,2,2,1,2,2,2019,1,2,11,0,25,25,15,1,0,1,0,5.8141346,5.8141346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.720001,51.290001,39.77,45.880001,6,1,1,0,0,7,4,1,412.25,209332.69,0,0,3520.2471 -12393,15225,27699,27700,-9,-9,1,1,0,52,1,0,2,0,1,-9,2,1,0,0,4,8.9258108,9.0905514,0,2,0,-9,28,0,-4,-47.55262,0,0,0,56,2,2,1,2,2,2019,1,2,15,4,52,55,15,1,1,1,0,22.747234,22.747234,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,53.939999,45.889999,5,1,1,0,0,5,4,1,1365,695745.31,0,0,3439.771 -12393,15225,27700,27699,-9,-9,2,1,1,56,1,0,2,0,2,-9,1,1,0,0,2,0,0,0,2,0,-9,28,0,4,-2.5145082,0,0,0,52,1,4,1,2,2,2019,1,1,7,0,10,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.939999,45.889999,48.810001,59.91,4,1,1,0,0,5,4,1,1365,695745.31,0,0,3439.771 -12393,15225,27701,-9,27699,27700,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.362,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,5,4,1,1365,695745.31,0,0,3439.771 -12393,15225,27702,-9,27699,27700,3,1,1,17,2,0,2,1,2,-9,7,2,0,0,5,5.9219556,6.1074405,0,2,0,0,0,-9,0,-1030.1459,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.25051504,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,4,1,1365,695745.31,0,0,3439.771 -12394,15226,27703,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,0,4,0,8.1809511,8.2049961,3,0,0,0,-9,0,-1049.7876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4898183,7.8897166,7.939343,3,57.16,56.150002,-9,-9,6,1,1,0,0,12,4,1,168,697711.75,0,0,2703.3982 -12395,15227,27704,27705,-9,-9,1,1,0,54,1,0,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,4,0,8,-14.442019,0,0,0,46,2,5,1,2,3,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0372219,0,0,0,61.009998,53.18,60,56.43,6,1,1,0,0,6,4,1,628,73405.227,0,0,4349.3301 -12395,15227,27705,27704,-9,-9,3,1,1,46,1,0,1,0,2,-9,2,1,0,0,5,8.8351793,9.0335083,0,2,0,-9,4,0,-8,-31.687092,0,0,0,54,1,5,3,-9,-9,2019,2,1,6,0,38,40,15,1,0,3,0,23.552088,23.552088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60,56.43,61.009998,53.18,7,1,1,0,0,6,4,1,628,73405.227,0,0,4349.3301 -12396,15228,27706,27707,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,0,3,8.396924,8.1347952,2.129921,1,0,-9,6,0,-2,25.861631,0,0,0,57,2,4,1,3,3,2019,1,1,13,3,37,39,15,1,0,1,0,11.909125,11.909125,0,0,0,0,0,0,0,2,0,0,0,7.3407817,2.9269023,6.2120004,3,43.950001,51.240002,45.91,59.889999,6,1,1,0,0,5,5,1,319,194340.69,0,0,4211.3823 -12396,15228,27707,27706,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.7385931,8.4280558,0,1,0,-9,6,0,2,94.785477,0,0,0,55,3,3,1,2,2,2019,1,2,13,2,37,40,15,1,0,1,0,13.698609,13.698609,0,0,0,0,0,0,0,0,0,0,0,5.2124867,0,0,0,45.91,59.889999,43.950001,51.240002,4,1,1,0,0,5,5,1,319,194340.69,0,0,4211.3823 -12396,15229,27708,-9,27706,27707,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,6.5315442,6.4958458,0,3,0,0,0,-9,0,-902.87616,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,15,15,15,1,0,-9,1,5.8763022,5.8763022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.439999,55.459999,-9,-9,2,1,1,0,0,5,2,1,164,24913.725,0,0,405.91492 -12397,15230,27709,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,3,7.8435717,7.8968463,0,3,0,0,0,-9,0,-1092.1451,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,37,37,15,1,0,-9,0,9.8239489,9.8239489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.470001,58.080002,-9,-9,6,1,1,0,0,10,4,0,1759,103019.34,0,0,1996.0614 -12397,15231,27710,-9,27709,-9,2,1,0,24,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1081.3799,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,8,0,20,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0999999,72.459999,-9,-9,2,1,1,1,0,10,1,0,379,-154619.38,0,0,0 -12397,15232,27711,-9,27709,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.6926317,7.4128089,0,3,0,0,0,-9,0,-883.87531,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,40,42,15,1,0,-9,1,6.4148984,6.4148984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.73,46.299999,-9,-9,4,1,1,0,0,10,3,0,158,66285.258,0,0,1023.6181 -12398,15233,27712,-9,27715,27713,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1039.6552,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,4,1,701.5,697180.81,0,0,3686.0032 -12398,15233,27713,27715,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,0,4,8.5431862,8.4770727,0,2,0,-9,9,0,2,-70.128258,0,0,0,37,2,4,1,-9,-9,2019,1,1,11,0,48,45,15,1,0,1,0,12.482331,12.482331,0,0,0,0,0,0,0,0,1,1,0,1.5124497,0,0,0,58.150002,52.91,51.830002,57.200001,6,1,1,0,0,7,4,1,701.5,697180.81,0,0,3686.0032 -12398,15233,27714,-9,27715,27713,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.0989,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,4,1,701.5,697180.81,0,0,3686.0032 -12398,15233,27715,27713,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,7.6855578,7.6688285,0,2,0,-9,21,0,-2,211.01414,0,0,1,39,2,4,1,2,2,2019,1,2,9,0,17,19,15,1,0,1,0,11.813242,11.813242,0,0,0,0,0,0,0,0,1,1,0,1.0276204,0,0,0,51.830002,57.200001,58.150002,52.91,6,1,1,0,0,7,4,1,701.5,697180.81,0,0,3686.0032 -12399,15234,27716,-9,27719,27718,3,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.95593,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,0,1016.4,270479.22,0,0,5046.8203 -12399,15234,27717,-9,27719,27718,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.2872,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,10,5,0,1016.4,270479.22,0,0,5046.8203 -12399,15234,27718,27719,-9,-9,2,1,1,38,1,0,3,0,1,-9,2,1,0,0,4,9.6297693,9.7028437,0,2,0,-9,14,0,0,67.122452,0,0,0,38,1,4,1,2,2,2019,1,1,9,0,70,50,15,1,0,1,0,20.933142,20.933142,0,0,0,0,0,0,0,2,1,1,0,4.3723469,0,0,3,51.240002,58.84,49.09,57.299999,6,1,1,0,0,10,5,0,1016.4,270479.22,0,0,5046.8203 -12399,15234,27719,27718,-9,-9,1,1,0,38,1,0,3,0,1,-9,2,1,0,0,4,7.451726,7.4392891,0,2,0,-9,14,0,0,20.355587,0,0,1,38,1,4,1,2,2,2019,1,2,12,0,20,23,15,1,0,1,0,9.8546162,9.8546162,0,0,0,0,0,0,0,2,1,1,0,0,0,10.934695,3,49.09,57.299999,51.240002,58.84,5,1,1,0,0,10,5,0,1016.4,270479.22,0,0,5046.8203 -12399,15234,27720,-9,27719,27718,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.26917,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,5,0,1016.4,270479.22,0,0,5046.8203 -12400,15235,27721,-9,-9,-9,1,1,0,22,2,0,0,1,2,-9,7,2,0,0,3,7.1282492,7.3350949,0,3,0,0,0,-9,0,-1094.0288,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.51803386,0,0,0,42.5,53.5,-9,-9,5,1,1,0,0,12,2,0,707,-90424.867,0,0,-437.36401 -12401,15236,27722,-9,27723,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-935.74579,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,263,60277.531,0,0,1626.0585 -12401,15236,27723,-9,27724,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,0,4,6.7380438,6.8908424,5.4092584,3,0,0,0,-9,0,-939.96899,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,18,15,1,0,-9,1,7.7730269,7.7730269,0,0,0,0,0,0,0,0,1,1,0,6.1186709,0,0,0,45.07,56.099998,-9,-9,5,1,1,0,0,9,3,1,263,60277.531,0,0,1626.0585 -12401,15237,27724,-9,-9,-9,2,1,0,74,3,0,1,0,3,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1040.115,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.41,48.310001,-9,-9,6,1,1,0,0,9,1,1,1092,104931.42,0,0,-20.431736 -12402,15238,27725,27726,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,9.2137051,8.869585,0,1,0,-9,23,0,7,40.145416,0,0,0,48,1,4,1,3,3,2019,1,2,17,5,35,39,15,1,1,1,0,36.528194,36.528194,0,0,0,0,0,0,0,0,0,0,0,4.4989934,0,0,0,26.16,61.110001,50,55,5,2,3,0,0,8,5,1,384.5,4472183,0,0,4974.1235 -12402,15238,27726,27725,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,7.7045956,7.5615492,0,1,0,-9,23,0,-7,4.9977374,0,0,0,55,1,3,1,3,1,2019,1,1,10,1,40,40,15,1,0,1,0,6.6861334,6.6861334,0,0,0,0,0,0,0,0,0,0,0,7.477644,0,0,0,50,55,26.16,61.110001,6,2,3,0,0,8,5,1,384.5,4472183,0,0,4974.1235 -12402,15239,27727,-9,27726,27725,3,1,0,21,2,0,0,1,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-854.88239,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.419998,63.93,-9,-9,5,2,3,0,0,8,1,1,896,-57173.523,0,0,0 -12402,15240,27728,-9,27726,27725,4,1,1,20,2,0,0,1,2,0,7,2,0,0,3,8.2836504,8.0368738,0,3,0,0,0,-9,0,-1004.5504,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.400002,52.91,-9,-9,5,2,3,0,0,8,4,1,1344,208944.48,0,0,2079.2764 -12403,15241,27729,27731,-9,-9,1,1,0,47,1,0,1,0,1,-9,6,3,0,0,4,6.0860996,5.8544288,0,2,0,-9,26,0,0,120.84721,0,0,0,47,1,4,1,2,2,2019,3,2,7,0,2,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.435688,0,0,3,57.16,56.150002,58.150002,52.91,6,1,1,0,0,1,5,1,333.33334,1584500.9,0,0,13142.6 -12403,15241,27730,-9,27729,27731,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.37628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,333.33334,1584500.9,0,0,13142.6 -12403,15241,27731,27729,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,4,9.4722424,9.5471134,0,2,0,-9,11,0,0,-61.20723,0,0,0,47,1,4,3,-9,-9,2019,2,1,5,0,50,51,15,1,0,3,0,36.627865,36.627865,0,0,0,0,0,0,0,0,0,0,0,4.9481192,0,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,1,5,1,333.33334,1584500.9,0,0,13142.6 -12404,15242,27732,27733,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,0,3,8.4485865,8.5895548,0,1,0,-9,9,0,-5,6.0364671,0,0,0,58,2,3,1,-9,-9,2019,1,1,11,1,36,38,15,1,0,1,0,15.82769,15.82769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,49.290001,54.59,5,1,1,0,0,11,5,1,598.5,246548.31,0,0,4198.3027 -12404,15242,27733,27732,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,9.3388929,8.9472113,0,1,0,-9,9,0,5,4.04812,0,0,0,53,3,3,1,2,3,2019,1,2,9,0,36,30,15,1,0,1,0,22.535187,22.535187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.290001,54.59,49,50,6,1,1,0,0,11,5,1,598.5,246548.31,0,0,4198.3027 -12405,15243,27734,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,4,3,0,0,2,0,8.0007877,7.7372742,3,0,0,0,-9,0,-1052.7657,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,3.7862492,8.3784008,7.4724379,3,58.970001,32.529999,-9,-9,6,1,1,0,0,7,4,1,592,1997931.4,0,0,2617.6123 -12406,15244,27735,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,3,7.656889,8.0190535,0,3,0,0,0,-9,0,-1030.2439,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,37,15,1,0,-9,0,8.2829199,8.2829199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,4,4,1,764,-44230.066,0,0,421.13153 -12407,15245,27736,27738,-9,-9,1,1,1,31,1,0,2,0,2,-9,2,1,0,0,3,8.6675758,8.3509293,0,2,0,-9,10,0,-13,-20.331797,0,0,0,44,2,4,1,2,2,2019,1,2,12,2,37,37,15,1,0,1,0,16.132381,16.132381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.380001,57.970001,49.41,58.279999,6,1,1,0,0,5,4,1,1943,118440.81,0,0,2641.2271 -12407,15245,27737,-9,27738,27736,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1127.5354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,4,1,1943,118440.81,0,0,2641.2271 -12407,15245,27738,27736,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.7377634,7.7910428,0,2,0,-9,10,0,13,73.293243,0,0,1,31,2,3,1,2,2,2019,1,1,9,0,19,18,15,1,0,1,0,13.530045,13.530045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,38.380001,57.970001,6,1,1,0,0,5,4,1,1943,118440.81,0,0,2641.2271 -12407,15245,27739,-9,27738,27736,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.6416,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,1943,118440.81,0,0,2641.2271 -12408,15246,27740,-9,27741,-9,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-977.39771,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,2,2,1,842.75,275046.53,0,0,2959.3286 -12408,15246,27741,-9,-9,-9,1,1,0,43,3,0,3,0,1,-9,8,3,1,1,4,7.662889,7.6216598,0,4,0,0,0,-9,0,-967.20789,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,24,24,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.610001,30.99,-9,-9,6,1,1,0,1,2,2,1,842.75,275046.53,0,0,2959.3286 -12408,15246,27742,-9,27741,-9,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1011.3351,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,2,2,1,842.75,275046.53,0,0,2959.3286 -12408,15246,27743,-9,27741,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1039.792,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,1,842.75,275046.53,0,0,2959.3286 -12409,15247,27744,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1081.5806,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.15,36.630001,-9,-9,1,1,1,0,1,2,1,0,1236,-63367.969,0,0,-239.57805 -12410,15248,27745,27746,-9,-9,2,1,0,59,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,8,0,-2,-.96250021,0,0,0,61,1,5,1,3,3,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1319475,0,0,0,38.509998,59.43,54.689999,57.470001,6,1,1,0,0,5,5,1,1444,3882515.5,0,0,6540.0635 -12410,15248,27746,27745,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,5,9.746664,9.6005201,0,1,0,-9,8,0,2,86.015091,0,0,0,59,1,3,3,1,1,2019,2,2,9,0,43,46,15,1,0,3,0,48.68998,48.68998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,38.509998,59.43,5,1,1,0,0,5,5,1,1444,3882515.5,0,0,6540.0635 -12410,15249,27747,-9,27745,27746,3,1,1,22,2,0,0,1,1,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-887.39648,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,5,1,1,379,111294.38,0,0,0 -12411,15250,27748,27749,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.3920527,6.7483649,1,0,-9,44,0,-2,9.6160679,0,0,0,66,3,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0370011,6.9904151,0,0,60.119999,54.799999,60.290001,52.110001,7,1,1,0,0,9,2,1,582.5,594947.19,0,0,1710.6492 -12411,15250,27749,27748,-9,-9,2,1,0,66,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,44,0,2,-33.114178,0,0,0,64,2,4,3,2,2,2019,4,1,8,0,0,45,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9987018,0,0,0,60.290001,52.110001,60.119999,54.799999,7,1,1,1,0,9,2,1,582.5,594947.19,0,0,1710.6492 -12412,15251,27750,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,8.2776537,8.1981688,0,3,0,0,0,-9,0,-1132.6827,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,53,46,15,1,1,-9,0,7.5753655,7.5753655,0,0,0,0,0,0,0,0,0,0,0,2.3129945,0,0,0,18.5,61.970001,-9,-9,3,1,1,0,0,8,4,0,334,-30072.836,0,0,2178.9485 -12413,15252,27751,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,5,0,0,0,3,0,0,0,-9,0,-1037.6801,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.639999,38.009998,-9,-9,6,1,1,0,0,12,1,1,1805,52509.352,0,0,2118.1956 -12414,15253,27752,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,0,3,0,7.5745468,7.8886185,3,0,0,0,-9,0,-926.59949,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8510861,7.4781451,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,9,3,1,188,610428.13,0,0,1875.6295 -12415,15254,27753,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,7.6792893,7.4954495,0,3,0,0,0,-9,0,-1119.2139,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,34,0,15,1,1,-9,0,8.0836658,8.0836658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.200001,33.900002,-9,-9,3,1,1,0,1,1,3,1,915,122084.19,0,0,1332.3312 -12416,15255,27754,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,7.9884005,7.9868555,0,3,0,0,0,-9,0,-887.6792,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,43,40,15,1,0,-9,0,7.4704275,7.4704275,0,0,0,0,0,0,0,0,0,0,0,1.0002266,0,0,0,54.740002,57.220001,-9,-9,6,1,1,0,0,11,3,0,1493,274931.22,0,0,-553.25537 -12416,15256,27755,27756,27754,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,0,3,7.8679309,7.5507202,0,1,0,-9,2,0,-4,156.4959,-9,1,1,26,2,3,1,2,2,2019,1,3,19,5,40,0,15,1,1,1,0,8.2499943,8.2499943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9700003,64.919998,60.290001,52.110001,3,1,1,0,0,11,4,0,1027,-38902.41,0,0,2567.531 -12416,15256,27756,27755,-9,-9,3,1,1,26,1,0,0,0,2,-9,2,1,0,0,3,8.3400898,8.0778904,0,1,0,-9,2,0,4,-95.914886,-9,1,0,22,2,3,1,-9,-9,2019,1,2,6,0,50,0,15,1,0,1,0,9.1008892,9.1008892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,8.9700003,64.919998,7,1,1,0,0,11,4,0,1027,-38902.41,0,0,2567.531 -12417,15257,27757,27758,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,8.2454624,8.3243017,1,0,-9,33,0,-8,98.282822,0,0,0,77,2,4,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.613718,8.2273579,6.9086523,3,51.240002,58.84,50.43,53.689999,4,1,1,0,0,9,5,1,491.5,1842589.8,0,0,5410.0586 -12417,15257,27758,27757,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,8.1803961,8.1501341,1,0,-9,26,0,8,-63.72221,0,0,0,69,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9559197,8.4916954,0,0,50.43,53.689999,51.240002,58.84,3,1,1,0,0,9,5,1,491.5,1842589.8,0,0,5410.0586 -12418,15258,27759,-9,27760,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1004.2488,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,3,4,0,0,6,5,1,653,61633.242,0,0,2263.5356 -12418,15258,27760,-9,-9,-9,1,1,0,46,2,0,1,0,1,-9,2,1,0,0,3,9.0370483,9.2709522,6.0577307,4,0,0,0,-9,0,-1030.5918,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,45,38,15,1,0,-9,0,15.507495,15.507495,0,0,0,0,0,0,0,14.5,1,1,0,5.7936335,0,6.5574884,3,42.240002,34.52,-9,-9,5,3,4,0,0,6,5,1,653,61633.242,0,0,2263.5356 -12419,15259,27761,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,3,0,7.1261163,7.0244155,3,0,0,0,-9,0,-1113.0801,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8351517,7.007381,0,0,60.049999,42.650002,-9,-9,5,1,1,0,0,9,2,1,2667,852382.5,0,0,1554.1798 -12420,15260,27762,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,0,4,8.6934185,8.733202,0,3,0,0,0,-9,0,-1006.7972,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,37,38,15,1,0,-9,0,17.730564,17.730564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,9,5,1,718,992054.56,0,0,3084.1443 -12421,15261,27763,27764,-9,-9,2,1,0,31,1,2,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,0,44.17519,-9,0,1,31,1,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,57.16,56.150002,5,3,4,0,0,6,3,0,719.5,121680.6,0,0,3759.822 -12421,15261,27764,27763,-9,-9,1,1,1,31,1,2,2,0,1,-9,2,1,0,0,4,8.5569305,8.7411795,0,2,0,-9,1,-9,0,41.747902,-9,0,0,31,1,4,3,1,1,2019,2,2,6,0,37,0,15,1,0,3,0,18.624445,18.624445,0,0,0,0,0,0,0,0,1,1,0,7.2455235,0,0,0,57.16,56.150002,51.490002,57.57,5,3,4,0,0,6,3,0,719.5,121680.6,0,0,3759.822 -12421,15261,27765,-9,27763,27764,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-963.25378,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,6,3,0,719.5,121680.6,0,0,3759.822 -12421,15261,27766,-9,27763,27764,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-984.18408,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,6,3,0,719.5,121680.6,0,0,3759.822 -12422,15262,27767,-9,27769,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-865.24109,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,1,0,404.66666,-12696.939,0,0,1184.4182 -12422,15262,27768,-9,27769,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-979.76398,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,1,0,404.66666,-12696.939,0,0,1184.4182 -12422,15262,27769,-9,-9,-9,1,1,0,26,2,0,2,0,3,-9,6,3,0,0,3,0,0,0,4,0,-9,0,0,0,-1050.2363,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.780001,59.669998,-9,-9,3,1,1,0,0,11,1,0,404.66666,-12696.939,0,0,1184.4182 -12423,15263,27770,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,1,0,-932.9845,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9595473,0,0,0,41.200001,59.369999,-9,-9,6,1,1,0,0,11,1,1,1320,113502.64,0,0,1204.9225 -12424,15264,27771,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,1,3,0,7.5337071,7.2413559,3,0,0,0,-9,0,-920.07996,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3939347,7.3094525,0,0,64.300003,32.529999,-9,-9,6,1,1,0,0,9,3,1,179,424009.09,0,0,2629.8557 -12425,15265,27772,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,1,0,6.4549947,6.4069977,3,0,0,0,-9,0,-1052.7961,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,10,0,0,15,4,1,-9,0,0,0,1,0,0,127.52346,0,0,0,0,1,1,0,0,6.438375,0,0,36.57,22.969999,-9,-9,2,1,1,0,1,2,2,1,880,-87.793602,0,0,1167.5529 -12425,15266,27773,-9,27772,-9,2,1,0,52,2,0,0,0,3,-9,97,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1016.9537,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.29155,3,33.330002,45.080002,-9,-9,3,1,1,0,1,2,1,1,975,-166261.5,0,0,913.16949 -12426,15267,27774,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,6.9427171,7.1601634,3,0,0,0,-9,0,-939.02301,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4947553,0,0,58.470001,44.689999,-9,-9,6,1,1,0,0,10,2,1,369,114959.66,0,0,1047.5605 -12427,15268,27775,-9,-9,-9,1,1,1,31,3,0,0,0,1,-9,2,1,0,0,3,8.8036079,8.7499256,0,3,0,0,0,-9,0,-967.50208,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,35,42,15,1,0,-9,0,23.102625,23.102625,0,0,0,0,0,0,0,0,1,1,0,2.515559,0,0,0,38.889999,53.759998,-9,-9,5,1,1,0,0,7,5,1,595,206063.75,0,0,2142.8689 -12428,15269,27776,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,2,0,7.5578713,7.5925198,3,0,0,0,-9,0,-977.08832,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1776714,7.517416,0,0,65.239998,20.33,-9,-9,4,1,1,0,0,9,3,0,663,771719.44,0,0,1707.4705 -12429,15270,27777,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,2,0,8.4126892,8.2161837,3,0,0,0,-9,0,-921.763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2752261,8.5172205,.95506114,3,47.549999,33.799999,-9,-9,4,1,1,0,1,2,4,1,528,164549.45,0,0,1332.1683 -12430,15271,27778,-9,27781,27779,4,1,1,16,2,0,3,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1065.735,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,2,3,0,0,4,2,1,1024.5,465622.97,0,0,3416.8108 -12430,15271,27779,27781,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,1,3,7.6323071,7.5791521,0,2,0,-9,19,0,9,-136.49854,0,0,0,37,2,4,1,3,3,2019,1,1,23,11,35,51,15,1,1,1,0,7.7754588,7.7754588,0,0,0,0,0,0,0,7,1,1,0,0,0,9.514946,3,37.02,47.889999,37.610001,55.720001,3,2,3,0,1,4,2,1,1024.5,465622.97,0,0,3416.8108 -12430,15271,27780,-9,27781,27779,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1085.5989,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.880001,43.27,-9,-9,5,2,3,0,1,4,2,1,1024.5,465622.97,0,0,3416.8108 -12430,15271,27781,27779,-9,-9,1,1,0,37,1,0,3,0,2,-9,2,1,0,0,4,6.6813178,6.4950137,0,2,0,-9,19,0,0,-7.2864189,0,0,1,46,1,3,1,3,2,2019,1,2,21,9,18,18,15,1,1,1,0,5.7420564,5.7420564,0,0,0,0,0,0,0,42,1,1,0,0,0,44.781754,1,37.610001,55.720001,37.02,47.889999,3,2,3,0,1,4,2,1,1024.5,465622.97,0,0,3416.8108 -12431,15272,27782,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,0,3,0,8.2613945,8.2012444,3,0,0,0,-9,0,-1031.2148,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.1898804,5.9053092,3,58.639999,44.669998,-9,-9,6,1,1,0,0,5,4,1,330,1067185.9,0,0,1706.4495 -12432,15273,27783,-9,-9,-9,1,1,0,45,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-886.1864,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.530001,56.599998,-9,-9,3,1,1,1,0,12,1,1,1049,242169.47,0,0,1620.2637 -12433,15274,27784,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,2,8.0990753,7.9394445,0,3,0,0,0,-9,0,-1019.8947,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,10,47,43,15,1,1,-9,0,7.8693929,7.8693929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.700001,36.73,-9,-9,2,1,1,0,1,9,4,1,690,1187.6389,0,0,1600.6724 -12434,15275,27785,27786,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,2,0,6.0192952,5.7632809,1,0,-9,10,0,0,-46.327641,0,0,0,79,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3975234,6.3082199,0,0,58.32,36.990002,57.330002,53.459999,6,1,1,0,0,5,4,1,841,1497843.3,0,0,3029.0088 -12434,15275,27786,27785,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,8.357275,8.4455814,1,0,-9,10,0,0,-162.70016,0,0,0,79,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.8759379,8.3380804,0,0,57.330002,53.459999,58.32,36.990002,6,1,1,0,0,5,4,1,841,1497843.3,0,0,3029.0088 -12435,15276,27787,-9,-9,-9,1,1,1,81,2,0,0,0,2,-9,4,3,0,0,4,0,8.5456533,8.5841932,3,0,0,0,-9,0,-1119.4244,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9075246,8.3840227,0,0,58,50,-9,-9,6,1,1,0,0,11,4,1,105,814783,0,0,1756.0004 -12436,15277,27788,-9,-9,27789,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1070.5192,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,5,4,1,619.66669,60217.348,0,0,1913.1981 -12436,15277,27789,-9,-9,-9,1,1,1,44,3,0,1,0,2,-9,2,1,0,0,3,8.8325329,8.5132713,0,4,0,0,0,-9,0,-1057.4725,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,46,47,15,1,0,-9,0,12.729689,12.729689,0,0,0,0,0,0,0,0,1,1,0,3.9781694,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,5,4,1,619.66669,60217.348,0,0,1913.1981 -12436,15277,27790,-9,-9,27789,2,1,0,17,2,0,1,0,2,1,2,3,0,0,5,6.1416841,6.2491713,0,4,0,0,0,-9,0,-912.93134,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,2,15,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1511674,0,2.7508428,3,47.389999,56.639999,-9,-9,6,1,1,0,0,5,4,1,619.66669,60217.348,0,0,1913.1981 -12437,15278,27791,-9,27794,27793,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.6566,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,521.5,151609.41,0,0,3624.5825 -12437,15278,27792,-9,27794,27793,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.5152,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,521.5,151609.41,0,0,3624.5825 -12437,15278,27793,27794,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,0,5,8.6796799,8.6179943,0,2,0,-9,18,0,-2,18.682505,0,0,0,41,1,4,1,2,3,2019,1,2,3,0,40,22,15,1,0,1,0,13.505503,13.505503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.84,59.619999,54.200001,57.490002,7,1,1,0,0,10,4,1,521.5,151609.41,0,0,3624.5825 -12437,15278,27794,27793,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,8.2228594,8.1194735,6.3224115,2,0,-9,15,0,2,3.9732215,0,0,1,39,2,5,1,2,2,2019,1,1,10,1,29,21,15,1,0,1,0,15.772417,15.772417,0,0,0,0,0,0,0,0,1,1,0,7.416913,0,0,0,54.200001,57.490002,49.84,59.619999,7,1,1,0,0,10,4,1,521.5,151609.41,0,0,3624.5825 -12438,15279,27795,27796,-9,-9,1,1,1,93,1,0,0,0,2,-9,4,3,0,1,3,0,7.1632514,7.3899384,1,0,-9,71,0,3,-60.804802,0,0,0,90,3,4,3,3,3,2019,4,2,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.626966,7.3753018,5.6239038,1,49.279999,44.66,47.279999,36.18,5,1,1,0,0,6,2,1,386.5,395898.88,0,0,1552.911 -12438,15279,27796,27795,-9,-9,2,1,0,90,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,71,0,-3,141.88205,0,0,0,93,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.42778653,0,0,0,47.279999,36.18,49.279999,44.66,2,1,1,0,0,6,2,1,386.5,395898.88,0,0,1552.911 -12439,15280,27797,27799,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,3,8.5715809,8.4090834,0,2,0,-9,4,0,1,22.621206,0,0,1,40,1,5,1,1,2,2019,1,2,10,0,37,37,15,1,0,1,0,18.857714,18.857714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,54.689999,57.470001,6,1,1,0,0,6,5,1,653.66669,1758470.3,0,0,4856.5791 -12439,15280,27798,-9,-9,27799,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.29199,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,653.66669,1758470.3,0,0,4856.5791 -12439,15280,27799,27797,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,0,5,9.4037066,9.0753374,0,2,0,-9,4,0,-1,24.509546,0,0,0,41,1,3,1,-9,-9,2019,1,1,9,1,52,52,15,1,0,1,0,25.993521,25.993521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,55.360001,51.57,7,1,1,0,0,6,5,1,653.66669,1758470.3,0,0,4856.5791 -12440,15281,27800,27801,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,4,9.1242323,8.9959984,0,1,0,-9,7,0,2,-35.725513,0,0,0,41,2,3,1,2,2,2019,1,2,10,0,43,40,15,1,0,1,0,21.438633,21.438633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,33.82,42.48,6,1,1,0,0,11,5,1,1225,605069,0,0,4974.2734 -12440,15281,27801,27800,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,3,8.7414331,8.7619381,0,1,0,-9,7,0,-2,-76.802521,0,0,1,43,2,4,1,2,2,2019,1,1,20,8,45,45,15,1,1,1,0,16.308979,16.308979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.82,42.48,54.200001,57.490002,5,1,1,0,0,11,5,1,1225,605069,0,0,4974.2734 -12441,15282,27802,27805,-9,-9,1,1,1,41,1,0,4,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,17,0,1,-46.213051,0,0,0,40,2,3,1,2,1,2019,3,2,20,9,0,60,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,57.029999,31.67,51.669998,3,2,3,1,0,7,2,0,814.16669,18133.373,0,0,1053.9476 -12441,15282,27803,-9,27805,27802,6,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.06616,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,2,0,814.16669,18133.373,0,0,1053.9476 -12441,15282,27804,-9,27805,27802,5,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.4934,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,2,0,0,7,2,0,814.16669,18133.373,0,0,1053.9476 -12441,15282,27805,27802,-9,-9,2,1,0,40,1,0,4,0,2,-9,2,1,0,0,3,7.2103958,6.6690178,0,2,0,-9,17,0,-1,39.029785,0,0,1,41,1,3,3,-9,-9,2019,2,1,27,12,20,17,15,1,1,3,0,6.3362231,6.3362231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.67,51.669998,46.799999,57.029999,6,1,1,0,0,7,2,0,814.16669,18133.373,0,0,1053.9476 -12441,15282,27806,-9,27805,27802,3,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.4509,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,2,0,814.16669,18133.373,0,0,1053.9476 -12441,15282,27807,-9,27805,27802,4,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.5227,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,2,0,814.16669,18133.373,0,0,1053.9476 -12442,15283,27808,27809,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,49,0,-4,126.01438,0,0,0,71,3,5,3,3,-9,2019,4,2,13,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.049999,26.02,43.360001,46.07,5,2,3,0,1,5,2,1,658.5,612341.38,0,0,319.29504 -12442,15283,27809,27808,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,5,0,6.8919129,7.2900338,1,0,-9,49,0,4,14.053699,0,0,0,67,3,1,3,3,3,2019,4,1,10,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9470811,0,0,43.360001,46.07,35.049999,26.02,1,2,3,0,0,5,2,1,658.5,612341.38,0,0,319.29504 -12443,15284,27810,27811,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,0,3,0,7.4283304,7.4438791,1,0,-9,19,0,10,-65.231049,0,0,0,59,1,4,3,3,3,2019,2,1,13,2,40,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.88451,7.2067685,0,0,47.889999,49.490002,51.189999,52.169998,5,1,1,0,0,2,3,1,449,901155.5,0,0,5248.1929 -12443,15284,27811,27810,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,0,4,0,7.3465137,7.0468817,1,0,-9,22,0,-10,-31.450003,0,0,0,69,1,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5919027,7.3389902,0,0,51.189999,52.169998,47.889999,49.490002,6,1,1,0,0,2,3,1,449,901155.5,0,0,5248.1929 -12444,15285,27812,27813,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,5,7.717463,8.2425508,7.1264572,1,0,-9,6,0,8,62.550575,0,0,0,53,2,2,1,3,2,2019,1,2,12,2,38,37,15,1,0,1,0,6.5660043,6.5660043,0,0,0,0,0,0,0,0,0,0,0,0,7.311811,0,0,37.369999,58.84,46.639999,39.400002,4,1,1,0,0,5,4,0,488.5,198016.2,0,0,2408.6094 -12444,15285,27813,27812,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,2,8.198534,7.944953,0,1,0,-9,12,0,-8,8.9752254,0,0,0,61,3,5,1,3,3,2019,1,1,9,0,38,33,15,1,0,1,0,9.1871357,9.1871357,0,0,0,0,0,0,0,2,0,0,0,.33230972,0,3.0684707,3,46.639999,39.400002,37.369999,58.84,4,1,1,0,0,5,4,0,488.5,198016.2,0,0,2408.6094 -12445,15286,27814,27817,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,3,8.5609484,8.453084,0,2,0,-9,7,0,-3,84.510269,0,0,0,53,2,3,1,2,2,2019,1,2,12,0,42,42,15,1,0,1,0,16.845098,16.845098,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,30.139999,51.220001,60.439999,46.580002,3,1,1,0,0,4,4,1,406.25,327419.97,0,0,3305.8921 -12445,15286,27815,-9,27817,27814,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.9096,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,406.25,327419.97,0,0,3305.8921 -12445,15286,27816,-9,27817,27814,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1032.1018,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,4,4,1,406.25,327419.97,0,0,3305.8921 -12445,15286,27817,27814,-9,-9,2,1,0,53,1,0,2,0,2,-9,2,1,0,0,3,7.4705801,7.5194178,5.8334661,2,0,-9,7,0,3,37.464375,0,0,0,50,2,3,1,-9,-9,2019,1,1,10,0,25,30,15,1,0,1,0,7.0618997,7.0618997,0,0,0,0,0,0,0,0,1,1,0,5.9585786,0,0,0,60.439999,46.580002,30.139999,51.220001,6,1,1,0,0,4,4,1,406.25,327419.97,0,0,3305.8921 -12446,15287,27818,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,0,5,0,8.8985043,8.7273035,3,0,-9,0,1,0,-1008.5178,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1278975,8.9632149,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,10,5,0,378,1736099.3,0,0,3147.4602 -12447,15288,27819,27820,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,0,5,0,8.3399496,8.1886511,1,0,-9,21,0,-4,-26.215204,0,0,0,67,1,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7852182,8.335886,0,0,57.060001,57.759998,52.509998,54.259998,6,1,1,0,0,5,4,1,381.5,2212048,0,0,2574.2512 -12447,15288,27820,27819,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,7.2723913,7.5197372,1,0,-9,17,0,4,-95.2174,0,0,0,63,1,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9745784,7.5192399,0,0,52.509998,54.259998,57.060001,57.759998,6,1,1,0,0,5,4,1,381.5,2212048,0,0,2574.2512 -12448,15289,27821,27822,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,4.8291831,5.2171221,1,0,-9,5,0,-2,-30.740374,0,0,0,68,2,5,1,2,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.95774043,5.0970297,0,0,51.73,43.560001,57.060001,57.759998,6,1,1,0,0,10,3,1,1334,1446137.8,0,0,3234.0991 -12448,15289,27822,27821,-9,-9,2,1,1,68,1,0,0,0,2,-9,2,1,0,0,5,8.2105999,8.2429876,6.7923708,1,0,-9,5,0,2,-110.88209,0,0,0,66,2,3,3,3,2,2019,2,1,5,0,24,28,15,1,0,4,0,13.539368,13.539368,0,0,0,0,0,0,0,0,1,1,0,6.55444,6.8304329,0,0,57.060001,57.759998,51.73,43.560001,7,1,1,0,0,10,3,1,1334,1446137.8,0,0,3234.0991 -12448,15290,27823,-9,27821,27822,3,1,0,20,2,0,0,0,2,-9,7,2,0,0,5,6.2947707,6.1576185,0,3,0,0,0,-9,0,-849.39777,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,13,38,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.299999,66.589996,-9,-9,5,1,1,0,0,10,2,1,421,220850.13,0,0,1620.7963 -12449,15291,27824,27825,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,5,0,5.134913,5.0059652,1,0,-9,46,0,0,105.07638,0,0,0,64,1,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.85781,5.4794269,0,0,62.389999,56.709999,60.119999,54.799999,7,1,1,0,0,6,5,1,874.5,2302120.5,0,0,4574.2593 -12449,15291,27825,27824,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,9.0287247,8.7512293,1,0,-9,46,0,0,-125.43569,0,0,0,64,3,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3017697,8.5057611,0,0,60.119999,54.799999,62.389999,56.709999,7,1,1,0,0,6,5,1,874.5,2302120.5,0,0,4574.2593 -12450,15292,27826,27827,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,2,7.9771266,8.3321714,0,1,0,-9,7,0,10,-108.46143,0,0,0,45,3,3,1,2,2,2019,1,1,9,0,42,53,15,1,0,1,0,9.7749014,9.7749014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.220001,23.040001,50.93,48.48,6,1,1,0,0,8,4,0,406.5,486550.13,0,0,3275.5066 -12450,15292,27827,27826,-9,-9,1,1,1,45,1,0,0,0,3,-9,2,1,0,0,3,8.1186619,7.8452668,0,1,0,-9,7,0,-10,-9.824687,0,0,0,55,1,2,1,3,2,2019,1,2,13,2,36,36,15,1,0,1,0,10.738658,10.738658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.93,48.48,62.220001,23.040001,5,3,4,0,0,8,4,0,406.5,486550.13,0,0,3275.5066 -12451,15293,27828,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,6.048562,6.2184758,3,0,0,0,-9,0,-918.91119,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.21597,.54505134,3,51.41,29.690001,-9,-9,5,1,1,0,0,12,2,1,1414,162675.25,0,0,2069.1482 -12452,15294,27829,27830,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,32,0,10,7.7895341,0,0,0,72,1,3,1,2,-9,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0852678,0,0,0,63.009998,41.299999,54.509998,50.599998,7,1,1,0,0,7,4,1,1230,1535939.3,0,0,3892.2705 -12452,15294,27830,27829,-9,-9,2,1,1,72,1,0,0,0,1,-9,1,1,0,0,3,7.7699723,8.0055532,7.628685,1,0,-9,32,0,-10,-219.42386,0,0,0,82,3,3,3,2,2,2019,2,1,7,0,32,36,15,1,0,4,0,10.773485,10.773485,0,0,0,0,0,0,0,0,1,1,0,7.5522399,7.5956473,0,0,54.509998,50.599998,63.009998,41.299999,7,1,1,0,0,7,4,1,1230,1535939.3,0,0,3892.2705 -12453,15295,27831,27832,-9,-9,1,1,1,62,1,1,2,0,3,-9,2,1,0,0,3,7.0723014,7.5720606,6.5666075,2,0,-9,35,0,2,-105.96265,0,0,0,60,3,2,1,3,3,2019,1,2,12,0,16,16,15,1,0,1,0,9.3343735,9.3343735,0,0,0,0,0,0,0,0,1,1,0,0,6.0143242,0,0,46.080002,57.200001,35.68,40.970001,4,2,3,0,0,4,2,1,674.5,-44749.797,0,0,1719.0989 -12453,15295,27832,27831,-9,-9,2,1,0,60,1,1,2,0,3,-9,2,1,0,0,2,0,0,0,2,0,-9,42,0,-2,-89.727966,0,0,0,62,3,3,1,3,3,2019,1,1,18,6,0,11,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.68,40.970001,46.080002,57.200001,4,2,3,0,0,4,2,1,674.5,-44749.797,0,0,1719.0989 -12453,15296,27833,27834,-9,-9,4,1,1,31,1,1,2,0,1,-9,2,1,0,0,2,8.0766048,7.8060999,0,2,0,-9,5,0,1,-35.849171,0,0,0,30,2,3,1,-9,-9,2019,1,3,9,0,50,46,15,1,0,1,0,10.467597,10.467597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,48.349998,43.119999,58.549999,4,2,3,0,0,4,3,1,1616,116713.74,0,0,2487.8916 -12453,15296,27834,27833,27832,27831,3,1,0,30,1,1,2,0,2,-9,2,1,0,0,3,7.7321253,7.6328974,0,2,0,-9,5,0,-1,60.701839,0,0,1,31,1,2,1,3,3,2019,1,4,12,0,40,40,15,1,0,1,0,5.4617071,5.4617071,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,58.549999,60.529999,48.349998,4,2,3,0,0,4,3,1,1616,116713.74,0,0,2487.8916 -12453,15296,27835,-9,27834,27833,6,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.788,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,4,3,1,1616,116713.74,0,0,2487.8916 -12453,15296,27836,-9,27834,27833,5,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.048,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,3,1,1616,116713.74,0,0,2487.8916 -12454,15297,27837,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,0,3,0,7.2537818,7.3146391,3,0,0,0,-9,0,-1027.9064,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1255274,6.9795027,2.2127528,3,50.400002,45.84,-9,-9,2,1,1,0,0,9,2,1,1614,-149590.23,0,0,602.53705 -12455,15298,27838,27839,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,0,3,8.6799316,8.4451008,0,1,0,-9,14,0,-2,106.06219,0,0,0,40,1,2,3,3,3,2019,2,2,3,0,36,36,15,1,0,3,0,16.607731,16.607731,0,0,0,0,0,0,0,2,1,1,0,2.7879915,0,0,1,56.560001,39.93,32.810001,29.67,5,2,3,0,0,2,4,1,704,358824.69,0,0,3500.689 -12455,15298,27839,27838,-9,-9,2,1,0,40,1,0,0,0,1,-9,8,3,1,1,2,0,0,0,1,0,-9,14,0,2,60.646221,0,0,1,38,1,3,1,2,2,2019,3,1,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.810001,29.67,56.560001,39.93,3,1,1,0,0,2,4,1,704,358824.69,0,0,3500.689 -12456,15299,27840,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,2,1,0,0,4,8.109581,8.0977154,0,3,0,0,0,-9,0,-1133.5077,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,43,40,15,1,0,-9,0,10.165915,10.165915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,2,4,1,2198,89956.523,0,0,547.96082 -12457,15300,27841,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-913.76648,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.189999,44.84,-9,-9,6,1,1,0,0,1,1,0,493,-46194.918,0,0,871.55865 -12458,15301,27842,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,0,4,0,7.3017049,7.5247164,3,0,0,0,-9,0,-1022.7542,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6342025,0,0,56.18,53.849998,-9,-9,6,1,1,0,0,2,3,1,161,338490.97,0,0,2145.5486 -12459,15302,27843,27844,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,1,3,6.7954803,6.7785554,0,1,0,-9,29,0,-16,-13.300985,0,0,0,64,3,2,3,-9,-9,2019,2,2,12,0,15,15,15,1,0,4,0,7.2286439,7.2286439,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.785198,2,49.439999,43.52,43.439999,23.25,4,1,1,0,0,7,2,0,222.5,-107260.23,0,0,1272.2128 -12459,15302,27844,27843,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,29,0,16,68.134102,0,0,0,48,3,3,1,3,3,2019,3,1,15,4,0,0,15,4,1,1,0,0,0,1,0,21.143959,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,23.25,49.439999,43.52,7,1,1,0,0,7,2,0,222.5,-107260.23,0,0,1272.2128 -12460,15303,27845,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,0,4,6.4143214,6.3751311,0,3,0,-9,0,0,0,-1051.49,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,27,11,6,6,15,1,1,-9,0,11.486203,11.486203,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,56,-9,-9,1,1,1,0,1,4,2,0,1063,129839.98,0,0,1193.4541 -12460,15304,27846,-9,-9,-9,2,1,1,30,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,-9,0,0,0,-1101.0508,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,4.0047569,0,69.64415,3,62.389999,56.709999,-9,-9,7,1,1,1,0,4,1,0,439,10382.967,0,0,-11.382355 -12461,15305,27847,27848,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,5,8.2239981,8.4959955,0,1,0,-9,4,0,-6,23.901001,0,1,1,32,1,4,1,2,1,2019,1,2,12,0,37,36,15,1,0,1,0,12.354952,12.354952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.759998,56.93,45.82,54.57,6,1,1,0,0,8,5,0,534,554195.75,0,0,6806.3857 -12461,15305,27848,27847,-9,-9,2,1,1,32,1,0,0,0,1,-9,1,1,0,0,4,9.9942636,9.642108,0,1,0,-9,4,0,6,-6.0763793,0,0,0,26,1,5,1,-9,-9,2019,1,1,7,0,60,58,15,1,0,1,0,29.858822,29.858822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,49.759998,56.93,6,1,1,0,0,8,5,0,534,554195.75,0,0,6806.3857 -12462,15306,27849,27850,-9,-9,2,1,1,66,1,0,0,0,2,-9,2,1,0,0,2,8.3422441,8.2017984,7.5198827,1,0,-9,40,0,-6,-40.533405,0,0,0,72,3,2,3,3,3,2019,2,1,9,0,18,25,15,1,0,4,0,25.489666,25.489666,0,0,0,0,0,0,0,7,1,1,0,0,7.705605,11.813506,3,61.279999,35.650002,63.59,18.09,6,1,1,0,0,8,4,0,328,1704538.5,0,0,4203.8701 -12462,15306,27850,27849,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,2,0,3.0748022,3.2780788,1,0,-9,40,0,6,-89.602638,0,0,0,66,2,2,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,1,0,2.1154528,0,0,0,0,7,1,1,0,4.0037613,3.5768297,7.4128227,3,63.59,18.09,61.279999,35.650002,6,1,1,0,0,8,4,0,328,1704538.5,0,0,4203.8701 -12463,15307,27851,27852,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.6680021,8.6588593,1,0,-9,43,0,4,-9.0104237,0,0,0,66,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6526215,8.8839788,0,0,55.790001,52.619999,44.599998,52.77,7,1,1,0,0,12,5,1,692,619094.88,0,0,6292.5898 -12463,15307,27852,27851,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,8.5910091,8.8609848,1,0,-9,43,0,-4,1.303597,0,0,0,70,2,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3776612,8.6581249,0,0,44.599998,52.77,55.790001,52.619999,7,1,1,0,0,12,5,1,692,619094.88,0,0,6292.5898 -12464,15308,27853,-9,27856,-9,6,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-972.95587,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,12,2,1,556.75,48179.215,0,0,2339.2678 -12464,15308,27854,-9,27856,-9,5,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-988.51782,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,12,2,1,556.75,48179.215,0,0,2339.2678 -12464,15308,27855,-9,27856,-9,4,1,0,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-905.17621,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,12,2,1,556.75,48179.215,0,0,2339.2678 -12464,15308,27856,-9,-9,-9,1,1,0,47,3,0,3,0,2,-9,2,1,0,0,4,7.0633807,7.2712302,0,4,0,0,0,-9,0,-934.75732,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,16,16,15,1,0,-9,0,8.9980135,8.9980135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,-9,-9,6,2,3,0,0,12,2,1,556.75,48179.215,0,0,2339.2678 -12464,15309,27857,-9,27856,-9,2,1,0,24,2,0,3,0,1,1,2,1,0,0,4,7.7193069,7.2813888,0,3,0,0,0,-9,0,-1073.1691,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,29,0,15,1,0,-9,1,7.0983734,7.0983734,0,0,0,0,0,0,0,0,1,1,0,1.9010577,0,0,0,47,58,-9,-9,5,2,3,0,0,12,3,1,109,-7459.2104,0,0,893.46277 -12465,15310,27858,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-955.90143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,0,0,119.69467,0,6.3297963,0,0,1,1,0,0,0,0,0,29.01,30.16,-9,-9,4,1,1,0,0,2,1,0,134,-193726.58,0,0,1589.6525 -12466,15311,27859,27860,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,3,9.1641006,9.0052662,0,1,0,-9,37,0,2,24.799957,0,0,0,61,2,4,1,2,3,2019,1,1,7,0,42,47,15,1,0,1,0,25.429283,25.429283,0,0,0,0,0,0,0,2,0,0,0,5.559648,0,3.4273367,3,57.68,42.360001,65.059998,41.580002,5,1,1,0,0,10,5,1,426,3848272.3,0,0,6299.7998 -12466,15311,27860,27859,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,8.135313,8.2767572,6.0439119,1,0,-9,37,0,-2,28.601126,0,0,0,63,1,3,1,2,3,2019,1,2,7,0,36,30,15,1,0,1,0,14.490761,14.490761,0,0,0,0,0,0,0,0,0,0,0,6.9576612,5.9068589,0,0,65.059998,41.580002,57.68,42.360001,6,1,1,0,0,10,5,1,426,3848272.3,0,0,6299.7998 -12467,15312,27861,27862,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,5.7718105,5.7711196,1,0,-9,6,0,-4,-93.988228,0,0,0,84,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.0845366,72.089577,1,53,45,55,45,6,1,1,0,0,2,2,1,395.5,332755.97,0,0,1472.2876 -12467,15312,27862,27861,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,3,0,6.3684587,6.8618426,1,0,-9,61,0,4,-68.413803,0,0,0,80,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6512685,6.7115765,0,0,55,45,53,45,6,1,1,0,0,2,2,1,395.5,332755.97,0,0,1472.2876 -12468,15313,27863,27864,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,6.1373663,5.9042802,0,1,0,-9,42,0,-14,104.32005,0,0,0,77,3,2,3,-9,-9,2019,2,2,0,0,6,8,15,1,0,4,0,6.5108533,6.5108533,0,0,0,0,0,0,0,0,1,1,0,1.9062185,0,0,0,62.66,52.400002,49.869999,50.459999,1,1,1,0,0,10,2,0,236.5,17196.758,0,0,1566.6481 -12468,15313,27864,27863,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,14,-82.899475,0,0,0,63,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.869999,50.459999,62.66,52.400002,5,1,1,0,0,10,2,0,236.5,17196.758,0,0,1566.6481 -12469,15314,27865,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,1,3,5.8980279,6.3485842,4.5923309,3,0,0,0,-9,0,-756.9599,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,8,0,15,1,0,-9,0,7.6885686,7.6885686,0,0,0,0,0,0,0,0,1,1,0,0,4.8077579,0,0,57.93,46.290001,-9,-9,7,1,1,0,0,2,2,1,290,111057.02,0,0,-1158.2233 -12469,15315,27866,-9,27865,-9,2,1,1,35,2,0,0,0,3,-9,2,1,0,0,2,7.9048433,8.1724081,0,3,0,0,0,-9,0,-1043.9205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,42,42,15,1,0,-9,1,7.0356107,7.0356107,0,0,0,0,0,0,0,2,1,1,0,0,0,12.474705,3,45.549999,39.91,-9,-9,4,1,1,0,0,2,3,1,724,39590.035,0,0,1480.9419 -12469,15316,27867,-9,27865,-9,3,1,1,37,2,0,0,0,2,-9,2,1,0,0,5,7.3990622,7.4986496,0,3,0,0,0,-9,0,-995.80151,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,50,55,15,1,0,-9,1,4.9481392,4.9481392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.540001,58.849998,-9,-9,7,1,1,0,0,2,3,1,208,-82449.477,0,0,1303.9186 -12470,15317,27868,27869,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,8.6108418,8.953721,0,1,0,-9,8,0,-8,112.31532,0,0,0,53,1,4,1,1,1,2019,1,2,14,4,38,37,15,1,1,1,0,17.660879,17.660879,0,0,0,0,0,0,0,0,0,0,0,5.9046068,0,0,0,52.43,55.57,54.200001,57.490002,6,1,1,0,0,7,5,1,1117,1631010.3,0,0,6438.1582 -12470,15317,27869,27868,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,4,9.5105944,9.3871908,0,1,0,-9,8,0,8,12.462873,0,0,0,45,1,4,1,1,1,2019,1,1,9,0,39,38,15,1,0,1,0,37.588047,37.588047,0,0,0,0,0,0,0,0,0,0,0,5.3014884,0,0,0,54.200001,57.490002,52.43,55.57,5,1,1,0,0,7,5,1,1117,1631010.3,0,0,6438.1582 -12471,15318,27870,27873,-9,-9,1,1,1,52,1,0,2,0,3,-9,1,1,0,0,4,7.3164263,7.4958792,0,2,0,-9,13,0,9,73.307968,0,0,0,43,1,4,3,2,2,2019,2,2,7,0,50,50,15,1,0,3,0,3.9966669,3.9966669,0,0,0,0,0,0,0,2,1,1,0,0,0,7.0046883,3,57.16,56.150002,48.900002,53.240002,6,1,1,0,0,9,2,1,1082,178087.88,0,0,574.96313 -12471,15318,27871,-9,27873,27870,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.54749,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,2,1,1082,178087.88,0,0,574.96313 -12471,15318,27872,-9,27873,27870,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1108.4319,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,9,2,1,1082,178087.88,0,0,574.96313 -12471,15318,27873,27870,-9,-9,2,1,0,43,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,13,0,0,-49.024487,0,0,1,52,3,4,1,3,3,2019,3,1,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.0592036,3,48.900002,53.240002,57.16,56.150002,6,2,3,0,0,9,2,1,1082,178087.88,0,0,574.96313 -12472,15319,27874,27875,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,5,8.3987589,8.541501,0,1,0,-9,1,-9,0,0,-9,1,0,28,1,4,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,14.054708,14.054708,0,0,0,0,0,0,0,0,0,0,0,2.0589154,0,0,0,59.43,58.049999,55.93,52.619999,7,1,1,0,0,13,5,0,633.5,7080.7051,0,0,3809.2131 -12472,15319,27875,27874,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.6139069,8.5148859,0,1,0,1,1,-9,0,0,0,1,1,28,1,5,1,3,3,2019,1,2,1,0,34,40,15,1,0,1,0,16.021439,16.021439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.93,52.619999,59.43,58.049999,7,1,1,0,0,13,5,0,633.5,7080.7051,0,0,3809.2131 -12473,15320,27876,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,3,8.3615417,8.6338434,0,3,0,0,0,-9,0,-957.40369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,48,15,1,0,-9,0,14.396145,14.396145,0,0,0,0,0,0,0,0,1,1,0,7.4171858,0,0,0,56.110001,44.400002,-9,-9,5,1,1,0,0,7,4,0,595,222005.03,0,0,2577.4077 -12474,15321,27877,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,0,2,0,6.997098,7.1325741,3,0,0,0,-9,0,-931.27557,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.4076371,6.870584,0,0,66.370003,25.129999,-9,-9,6,1,1,0,0,7,2,1,627,-91775.398,0,0,418.48904 -12475,15322,27878,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,1,1,0,0,4,5.9046035,5.7814255,0,3,0,0,0,-9,0,-1094.1073,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,30,30,15,1,0,-9,0,1.2353842,1.2353842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,3,1,1,0,1,12,2,0,3778,205413.58,0,0,-251.134 -12476,15323,27879,27880,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.2718463,7.1931152,1,0,-9,49,0,-1,-98.954079,0,0,0,70,2,4,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4016595,0,0,62.110001,40.77,48.869999,58.549999,6,1,1,0,0,12,3,1,589.5,960063.13,0,0,2458.3691 -12476,15323,27880,27879,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.4843516,6.8978848,1,0,-9,49,0,1,-114.19295,0,0,0,69,2,2,3,2,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1163497,7.5030766,0,0,48.869999,58.549999,62.110001,40.77,6,1,1,0,0,12,3,1,589.5,960063.13,0,0,2458.3691 -12477,15324,27881,27882,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,2,0,7.6253562,7.9167109,1,0,-9,5,0,-10,78.359825,0,0,0,81,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,5.9027896,0,0,0,0,0,1,1,0,3.8128636,8.0049896,0,0,60.950001,22.450001,58.119999,25.719999,7,1,1,0,0,11,4,1,556,880690.38,0,0,4841.4775 -12477,15324,27882,27881,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,8.1682367,8.0631857,1,0,-9,5,0,10,43.622372,0,0,0,71,1,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.6181688,8.4382849,0,0,58.119999,25.719999,60.950001,22.450001,6,1,1,0,0,11,4,1,556,880690.38,0,0,4841.4775 -12478,15325,27883,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1089.434,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.369999,40.830002,-9,-9,6,1,1,0,0,11,1,0,1189,-6221.751,0,0,2330.3015 -12479,15326,27884,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,0,2,0,7.0759063,6.7148447,3,0,0,0,-9,0,-1004.9861,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.4476404,0,0,60.110001,22.85,-9,-9,6,1,1,0,0,9,2,1,634,603802.94,0,0,1463.0807 -12480,15327,27885,27888,-9,-9,1,1,0,40,1,1,2,0,2,-9,2,1,0,0,3,7.6663575,7.7281718,0,2,0,-9,3,0,-7,66.545982,0,0,1,47,2,4,1,3,1,2019,1,4,13,2,23,23,15,1,0,1,0,13.39074,13.39074,0,0,0,0,0,0,0,27.5,0,0,0,0,0,29.110874,3,43.349998,47.68,53,55,5,4,2,0,0,5,4,1,819,593422.44,0,0,3255.1318 -12480,15327,27886,-9,27885,27888,3,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.61902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,5,4,1,819,593422.44,0,0,3255.1318 -12480,15327,27887,-9,27885,27888,2,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-796.72119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,5,4,1,819,593422.44,0,0,3255.1318 -12480,15327,27888,27885,-9,-9,4,1,1,47,1,1,2,0,2,-9,2,1,0,0,4,8.4316683,8.5993042,0,2,0,-9,3,0,7,25.936773,0,0,0,40,2,3,1,-9,-9,2019,1,1,9,1,40,38,15,1,0,1,0,16.030401,16.030401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,53,55,43.349998,47.68,6,4,2,0,0,5,4,1,819,593422.44,0,0,3255.1318 -12481,15328,27889,27890,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.6325088,7.5809417,1,0,-9,51,0,2,-28.827606,0,0,0,72,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4088173,7.685288,0,0,53.389999,52.349998,50.41,53.709999,2,1,1,0,0,9,3,1,301,1090035.3,0,0,2617.3892 -12481,15328,27890,27889,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.9501262,6.606761,1,0,-9,51,0,-2,-116.73962,0,0,0,74,2,4,3,2,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0027885,7.0632458,0,0,50.41,53.709999,53.389999,52.349998,6,1,1,0,0,9,3,1,301,1090035.3,0,0,2617.3892 -12482,15329,27891,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,0,4,4.7912498,8.1450987,8.0053625,3,0,0,0,-9,0,-972.34808,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,2,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.888999,7.9932976,7.9702024,3,51.77,58.57,-9,-9,6,1,1,0,0,13,4,1,216,1088138.8,0,0,2035.168 -12483,15330,27892,27893,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,6.5751081,6.8263187,1,0,-9,10,0,12,62.300552,0,0,0,56,2,2,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4243593,6.7413845,6.5099955,3,63.41,39.700001,54.57,38.709999,4,1,1,0,0,10,3,1,894,949821.13,0,0,3783.0723 -12483,15330,27893,27892,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,7.4714398,7.6378336,0,1,0,-9,10,0,-12,85.947762,0,0,0,68,2,3,3,2,2,2019,2,1,9,0,34,33,15,1,0,4,0,6.1859055,6.1859055,0,0,0,0,0,0,0,14.5,1,1,0,6.9058986,0,8.690794,3,54.57,38.709999,63.41,39.700001,4,1,1,0,1,10,3,1,894,949821.13,0,0,3783.0723 -12484,15331,27894,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,4,3,0,0,4,0,7.5309505,7.3553815,3,0,0,0,-9,0,-993.14459,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.559094,7.7836308,0,0,42.84,55.93,-9,-9,6,2,3,0,0,12,3,1,131,753731.81,0,0,999.62415 -12485,15332,27895,27897,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.0275488,7.3963695,0,2,0,-9,18,0,0,-21.062738,0,0,0,42,1,3,3,1,1,2019,2,1,20,8,19,20,15,1,1,3,0,11.426745,11.426745,0,0,0,0,0,0,0,0,1,1,0,.65626681,0,0,0,40.27,57.009998,47.720001,49.509998,6,1,1,0,0,1,5,1,549.25,1201861.9,0,0,5018.7803 -12485,15332,27896,-9,27897,27895,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-979.41943,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,549.25,1201861.9,0,0,5018.7803 -12485,15332,27897,27895,-9,-9,1,1,0,42,1,0,2,0,1,-9,6,3,0,0,3,9.4801321,9.1336946,0,2,0,-9,18,0,0,-15.570004,0,0,1,42,1,4,1,2,2,2019,3,2,18,7,44,36,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0255995,0,0,0,47.720001,49.509998,40.27,57.009998,5,1,1,0,0,1,5,1,549.25,1201861.9,0,0,5018.7803 -12485,15332,27898,-9,27897,27895,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,549.25,1201861.9,0,0,5018.7803 -12486,15333,27899,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,1,1,0,0,3,6.8789482,6.8261118,0,3,0,0,0,-9,0,-988.89105,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,63,42,15,1,0,-9,0,1.6615516,1.6615516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,-9,-9,5,1,1,0,0,13,2,1,170,38924.57,0,0,1160.1786 -12487,15334,27900,-9,27901,27903,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.7963,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,3,1,590.79999,693785.69,0,0,2573.4126 -12487,15334,27901,27903,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-8,-62.267551,0,0,1,45,1,3,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,58.470001,44.689999,5,2,3,0,0,6,3,1,590.79999,693785.69,0,0,2573.4126 -12487,15334,27902,-9,27901,27903,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.82251,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,3,1,590.79999,693785.69,0,0,2573.4126 -12487,15334,27903,27901,-9,-9,1,1,1,45,1,0,3,0,1,-9,2,1,0,0,3,8.6240978,8.308918,0,2,0,-9,19,0,8,-93.903481,0,0,0,37,2,4,3,3,3,2019,2,2,15,4,37,38,15,1,1,3,0,12.805143,12.805143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,44.689999,49,56,5,2,3,0,0,6,3,1,590.79999,693785.69,0,0,2573.4126 -12487,15334,27904,-9,27901,27903,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-875.36426,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,6,3,1,590.79999,693785.69,0,0,2573.4126 -12488,15335,27905,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,0,3,0,6.2676015,6.6205821,3,0,0,0,-9,0,-1000.6313,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3595004,0,0,54,46,-9,-9,6,3,4,0,0,8,2,0,1612,370401.19,0,0,-14.323682 -12489,15336,27906,27907,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,0,5,0,0,0,1,0,-9,10,0,14,0,0,0,0,47,1,5,3,2,2,2019,2,2,6,0,35,20,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,58.610001,43.049999,57.290001,6,2,3,0,0,8,1,1,456.5,447779.91,0,0,0 -12489,15336,27907,27906,-9,-9,2,1,0,47,1,0,0,0,1,-9,6,3,0,0,5,0,0,0,1,0,-9,5,0,-14,0,-9,0,0,61,1,5,1,2,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.049999,57.290001,40.48,58.610001,7,2,3,0,0,8,1,1,456.5,447779.91,0,0,0 -12490,15337,27908,27909,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,2,7.3011341,6.8160777,0,1,0,-9,8,0,-1,-10.574567,0,0,0,60,2,3,1,3,2,2019,1,1,21,9,20,20,15,1,1,1,0,9.2594252,9.2594252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.599998,45.880001,38.509998,59.43,3,1,1,0,0,9,3,1,308.5,964838.13,0,0,1474.8511 -12490,15337,27909,27908,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,7.4838834,7.6549249,0,1,0,-9,8,0,1,17.586123,0,0,0,59,3,2,1,3,3,2019,1,2,12,1,30,30,15,1,0,1,0,7.4218025,7.4218025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.509998,59.43,33.599998,45.880001,5,1,1,0,0,9,3,1,308.5,964838.13,0,0,1474.8511 -12490,15338,27910,-9,27908,27909,3,1,1,36,2,0,0,0,2,-9,2,1,0,0,3,8.0163116,7.7770877,0,3,0,0,0,-9,0,-1139.2448,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,35,35,15,1,0,-9,1,9.6006775,9.6006775,0,0,0,0,0,0,0,0,0,0,0,.45160514,0,0,0,42.869999,45.209999,-9,-9,4,1,1,0,0,9,4,1,95,-83650.539,0,0,883.88245 -12491,15339,27911,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,1,0,-922.45618,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,2,3,1,0,8,1,1,236,84214.5,0,0,0 -12491,15340,27912,27913,27911,27916,2,1,1,29,1,0,0,0,2,-9,3,3,0,1,5,0,0,0,1,0,-9,4,0,5,0,0,1,0,24,2,5,3,2,2,2019,4,5,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.810001,45.009998,55.419998,37.790001,3,2,3,1,0,8,1,1,697.5,-61553.008,0,0,1707.0681 -12491,15340,27913,27912,-9,-9,5,1,0,24,1,0,0,0,2,-9,3,3,0,0,5,0,0,0,1,0,-9,4,0,-5,0,0,1,1,29,2,5,3,-9,-9,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.265581,1,55.419998,37.790001,34.810001,45.009998,6,2,3,1,0,8,1,1,697.5,-61553.008,0,0,1707.0681 -12491,15341,27914,27915,27911,27916,3,1,1,26,1,0,0,0,2,-9,2,1,0,0,5,9.0927315,8.9964094,0,1,0,1,1,-9,1,-24.404139,0,1,0,25,1,5,1,2,2,2019,1,6,9,1,35,40,15,1,0,1,0,26.630369,26.630369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.450001,47.52,40.23,49.23,7,2,3,0,0,8,5,1,847,220438.61,0,0,5553.1074 -12491,15341,27915,27914,-9,-9,6,1,0,25,1,0,0,0,1,-9,2,1,0,0,5,8.6606417,8.5790262,0,1,0,-9,1,-9,-1,-42.267105,-9,1,1,26,2,5,1,-9,-9,2019,1,3,6,0,38,0,15,1,0,1,0,15.073688,15.073688,0,0,0,0,0,0,0,0,1,1,0,4.6306782,0,0,0,40.23,49.23,58.450001,47.52,4,2,3,0,0,8,5,1,847,220438.61,0,0,5553.1074 -12491,15342,27916,-9,-9,-9,4,1,1,55,3,0,0,0,2,-9,2,1,0,0,2,0,0,0,3,0,-9,0,1,0,-901.38336,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,38,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1730084,3,36.549999,25.33,-9,-9,2,2,3,0,0,8,1,1,301,-8484.4873,0,0,0 -12492,15343,27917,-9,27918,27919,5,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1006.7919,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,2,3,0,0,8,1,0,885.40002,-6379.9526,0,0,2260.3003 -12492,15343,27918,27919,-9,-9,1,1,0,40,1,0,2,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,22,0,-12,0,0,0,1,52,3,4,3,3,3,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.29317,1,57.57,49.689999,54,54,6,2,3,0,0,8,1,0,885.40002,-6379.9526,0,0,2260.3003 -12492,15343,27919,27918,-9,-9,2,1,1,52,1,0,2,0,3,-9,8,3,1,1,4,0,0,0,2,0,-9,22,0,12,0,0,0,0,40,3,2,3,3,3,2019,4,1,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,57.57,49.689999,6,2,3,0,0,8,1,0,885.40002,-6379.9526,0,0,2260.3003 -12492,15343,27920,-9,27918,27919,4,1,0,17,2,0,2,0,2,1,2,3,0,0,4,5.6394553,5.2304902,0,2,0,0,0,-9,0,-831.70294,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,4,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,5,2,3,0,0,8,1,0,885.40002,-6379.9526,0,0,2260.3003 -12492,15343,27921,-9,27918,27919,6,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.7753,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,885.40002,-6379.9526,0,0,2260.3003 -12492,15344,27922,-9,27918,27919,3,1,0,20,2,0,2,0,2,1,2,1,0,0,4,6.946559,6.9388518,0,3,0,0,0,-9,0,-1045.2703,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,18,0,15,1,0,-9,1,8.8225651,8.8225651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,6,2,3,0,0,8,2,0,428,-89559.063,0,0,744.10846 -12493,15345,27923,-9,27924,27925,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.25909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,4,1,685,154311.23,0,0,3509.9121 -12493,15345,27924,27925,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,7.7648153,7.7884274,0,2,0,-9,30,0,0,155.83234,0,0,0,49,2,4,1,2,2,2019,1,1,9,0,25,24,15,1,0,1,0,10.121058,10.121058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,54.200001,57.490002,5,1,1,0,0,10,4,1,685,154311.23,0,0,3509.9121 -12493,15345,27925,27924,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.5377054,8.4315243,0,2,0,-9,30,0,0,100.76718,0,0,0,49,2,4,1,2,1,2019,1,2,12,0,52,49,15,1,0,1,0,14.857566,14.857566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,48.869999,58.549999,4,1,1,0,0,10,4,1,685,154311.23,0,0,3509.9121 -12494,15346,27926,27927,-9,-9,2,1,0,57,1,0,0,0,2,-9,6,3,0,0,2,0,7.0809875,7.5257502,1,0,-9,5,0,3,17.447277,-9,0,0,54,1,3,1,3,3,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,6.9658155,6.817461,3,51.209999,28.219999,53.220001,48.439999,5,1,1,0,0,13,4,1,313.5,443420.41,0,0,2858.3767 -12494,15346,27927,27926,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,8.3574333,8.1272812,0,1,0,-9,5,0,-3,-43.244839,0,0,0,57,2,2,3,2,3,2019,2,2,10,0,38,35,15,1,0,3,0,14.278924,14.278924,0,0,0,0,0,0,0,2,0,0,0,0,0,.97657466,3,53.220001,48.439999,51.209999,28.219999,5,1,1,0,0,13,4,1,313.5,443420.41,0,0,2858.3767 -12495,15347,27928,27932,-9,-9,1,1,0,45,1,0,4,0,2,-9,2,1,0,0,3,7.4423232,7.4088192,0,2,0,-9,24,0,-5,-48.067543,0,0,0,50,1,3,1,3,2,2019,1,2,12,6,21,25,15,1,1,1,0,9.3642159,9.3642159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.799999,63.720001,49.290001,54.59,3,1,1,0,1,5,4,1,911.33331,824271.88,0,0,3686.6174 -12495,15347,27929,-9,27928,27932,6,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.43964,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,911.33331,824271.88,0,0,3686.6174 -12495,15347,27930,-9,27928,27932,3,1,0,16,2,0,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.811,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.110001,60.68,-9,-9,6,1,1,0,0,5,4,1,911.33331,824271.88,0,0,3686.6174 -12495,15347,27931,-9,27928,27932,4,1,0,16,2,0,4,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-910.48486,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.549999,58.299999,-9,-9,5,1,1,0,0,5,4,1,911.33331,824271.88,0,0,3686.6174 -12495,15347,27932,27928,-9,-9,2,1,1,50,1,0,4,0,1,-9,2,1,0,0,3,8.8330765,9.1302385,0,2,0,-9,24,0,5,34.801651,0,0,0,45,2,3,1,2,-9,2019,1,1,12,1,43,37,15,1,0,1,0,21.278858,21.278858,0,0,0,0,0,0,0,0,1,1,0,3.499356,0,0,0,49.290001,54.59,28.799999,63.720001,3,1,1,0,0,5,4,1,911.33331,824271.88,0,0,3686.6174 -12495,15347,27933,-9,27928,27932,5,1,1,11,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1038.035,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,5,4,1,911.33331,824271.88,0,0,3686.6174 -12496,15348,27934,27935,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.0431328,7.2440939,1,0,-9,6,0,-5,86.455322,0,0,0,74,1,4,3,3,3,2019,4,1,21,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.6806612,7.1615419,113.92452,3,54,51,51.830002,57.200001,3,1,1,0,0,11,3,1,406,941935.75,0,0,2392.9937 -12496,15348,27935,27934,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,5.8013272,7.0093961,7.1512384,1,0,-9,6,0,5,1.2053826,0,0,0,69,2,4,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.9811664,7.026001,119.8621,3,51.830002,57.200001,54,51,6,1,1,0,0,11,3,1,406,941935.75,0,0,2392.9937 -12497,15349,27936,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,6.5856957,6.8038759,3,0,0,0,-9,0,-1049.822,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1952419,6.8584762,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,7,2,1,320,259325.66,0,0,1607.8065 -12498,15350,27937,27938,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,9.3258915,8.813695,0,1,0,-9,10,0,-3,36.183979,0,0,0,61,1,3,3,-9,-9,2019,2,1,5,0,50,50,15,1,0,3,0,21.775236,21.775236,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.914246,1,60.119999,54.799999,66.379997,24.790001,6,3,4,0,0,8,5,1,611.5,252223.19,0,0,2129.6589 -12498,15350,27938,27937,-9,-9,1,1,1,61,1,0,0,0,1,-9,8,3,1,1,3,0,0,0,1,0,-9,40,0,3,62.235031,0,0,0,58,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.379997,24.790001,60.119999,54.799999,6,3,4,0,0,8,5,1,611.5,252223.19,0,0,2129.6589 -12499,15351,27939,27940,-9,-9,2,1,1,50,1,0,1,0,1,-9,1,1,0,0,3,8.8167458,8.5899172,0,2,0,-9,1,-9,5,94.314514,-9,0,0,45,2,5,1,-9,-9,2019,1,1,11,0,38,0,15,1,0,1,0,18.36204,18.36204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.330002,53.459999,54.689999,57.470001,5,3,4,0,0,6,4,1,1316.5,667904.13,0,0,3717.2053 -12499,15351,27940,27939,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,5,7.6506925,7.7797952,0,2,0,-9,21,-9,-5,127.71181,-9,0,0,50,1,3,1,-9,-9,2019,1,2,6,0,35,0,15,1,0,1,0,7.3372512,7.3372512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,57.330002,53.459999,6,3,4,0,0,6,4,1,1316.5,667904.13,0,0,3717.2053 -12499,15352,27941,-9,27940,27939,3,1,1,25,2,0,1,0,2,-9,2,1,0,0,5,7.8884344,7.5781093,0,3,0,-9,0,-9,0,-1064.3218,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,38,0,15,1,0,-9,1,9.1758404,9.1758404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,62.869999,-9,-9,5,3,4,0,0,6,3,1,2510,74152.703,0,0,2066.2075 -12500,15353,27942,27945,-9,-9,1,1,1,31,1,1,2,0,2,-9,1,1,0,0,4,5.3778667,5.522727,0,2,0,-9,5,0,4,-18.495045,0,0,0,27,2,4,3,2,2,2019,2,2,12,1,56,40,15,1,0,3,0,.61467057,.61467057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,51.830002,57.200001,5,1,1,0,0,2,2,1,1070,-8328.8311,0,0,-9.6883945 -12500,15353,27943,-9,27945,27942,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.0415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,2,1,1070,-8328.8311,0,0,-9.6883945 -12500,15353,27944,-9,27945,27942,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.45105,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,1,1070,-8328.8311,0,0,-9.6883945 -12500,15353,27945,27942,-9,-9,2,1,0,27,1,1,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,-4,116.75673,0,1,1,31,2,4,1,-9,-9,2019,3,1,7,0,0,26,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,43.200001,59.970001,6,1,1,1,0,2,2,1,1070,-8328.8311,0,0,-9.6883945 -12501,15354,27946,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,2,8.9968653,8.6003857,0,3,0,0,0,-9,0,-937.02118,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,50,40,15,1,1,-9,0,15.741919,15.741919,0,0,0,0,0,0,0,0,0,0,0,.54781502,0,0,0,37.41,41.299999,-9,-9,5,3,4,0,0,5,5,1,318,141038.11,0,0,1747.0656 -12502,15355,27947,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,7.7175484,7.9039664,3,0,0,0,-9,0,-989.37976,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.994216,4.3000703,0,0,50.900002,15.72,-9,-9,6,1,1,0,0,2,3,1,75,68649.211,0,0,2277.0723 -12503,15356,27948,27949,-9,-9,1,1,1,28,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,3,0,0,77.878128,0,1,0,28,1,3,1,-9,-9,2019,3,2,11,2,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7702267,0,0,0,46.389999,60.990002,44.950001,52.41,5,1,1,1,0,5,4,1,2654,-81406.32,0,0,1562.7194 -12503,15356,27949,27948,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,3,8.5432606,8.5148525,0,1,0,-9,3,0,0,156.72391,0,1,1,28,1,4,3,-9,-9,2019,2,1,12,0,38,38,15,1,0,3,0,17.258606,17.258606,0,0,0,0,0,0,0,0,0,0,0,2.7227709,0,0,0,44.950001,52.41,46.389999,60.990002,5,1,1,0,0,5,4,1,2654,-81406.32,0,0,1562.7194 -12504,15357,27950,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,3,0,7.3014035,7.2154012,3,0,0,0,-9,0,-1198.8236,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.317944,7.3745728,0,0,52.150002,48.98,-9,-9,6,1,1,0,0,9,3,1,173,1068651.8,0,0,3360.4268 -12505,15358,27951,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-937.92822,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.389999,40.889999,-9,-9,3,1,1,0,0,13,1,0,583,-62478.234,0,0,2514.9343 -12506,15359,27952,-9,-9,-9,1,1,0,22,2,0,0,1,1,0,7,2,0,0,3,7.0513468,7.0914245,0,3,0,0,0,-9,0,-968.27789,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,14,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.189999,35.150002,-9,-9,4,1,1,0,0,12,2,0,1133,-133318.59,0,0,347.7392 -12507,15360,27953,27954,-9,-9,1,1,1,25,1,0,0,0,2,-9,97,3,0,0,5,8.5682478,8.4431467,0,1,0,-9,1,-9,3,-43.186665,-9,1,0,22,2,4,1,2,2,2019,3,2,13,4,30,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.57,48.709999,42.009998,56.540001,5,1,1,0,0,9,4,0,2534,-9539.7969,0,0,1977.1377 -12507,15360,27954,27953,-9,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,0,4,7.8704019,7.8954935,0,1,0,-9,1,-9,-3,52.969509,-9,1,1,25,2,5,3,-9,-9,2019,2,1,10,0,38,0,15,1,0,3,0,9.9155016,9.9155016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.009998,56.540001,44.57,48.709999,6,1,1,0,0,9,4,0,2534,-9539.7969,0,0,1977.1377 -12508,15361,27955,-9,27956,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1069.08,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,45,-9,-9,4,1,1,0,0,7,3,0,1302,153698.28,0,0,2830.4832 -12508,15361,27956,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,0,3,7.8527775,7.9619141,6.7331557,4,0,0,0,-9,0,-914.54553,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,73,38,15,1,1,-9,0,3.5238929,3.5238929,0,0,0,0,0,0,0,0,1,1,0,7.5362196,0,0,0,22.299999,51.990002,-9,-9,1,1,1,0,1,7,3,0,1302,153698.28,0,0,2830.4832 -12508,15361,27957,-9,27956,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1058.7488,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,7,3,0,1302,153698.28,0,0,2830.4832 -12509,15362,27958,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,0,2,0,8.244936,7.8118196,3,0,0,0,-9,0,-1001.446,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9190769,0,0,40.580002,43.790001,-9,-9,5,1,1,0,0,8,4,1,1186,1367604.9,0,0,969.34601 -12510,15363,27959,27960,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,1,4,0,7.6558352,7.8130198,1,0,-9,9,0,0,45.776089,0,0,0,71,1,1,3,2,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.8307362,8.0773649,121.14856,1,18.35,34.630001,50.82,27.059999,1,1,1,0,0,12,4,1,581.5,1836094.8,0,0,4282.7891 -12510,15363,27960,27959,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,1,1,0,8.0598955,8.5322418,1,0,-9,9,0,9,-98.477364,0,0,0,62,1,4,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,63.721622,0,0,0,0,0,1,1,0,3.207407,7.9217329,0,0,50.82,27.059999,18.35,34.630001,6,1,1,0,0,12,4,1,581.5,1836094.8,0,0,4282.7891 -12511,15364,27961,27963,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,0,4,8.5094624,8.3654013,0,2,0,-9,11,0,-2,60.676991,0,0,0,50,2,4,1,2,2,2019,1,2,7,0,34,34,15,1,0,1,0,12.935595,12.935595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,42.220001,58.790001,6,1,1,0,0,6,5,1,512.66669,1172442.9,0,0,4672.5708 -12511,15364,27962,-9,27961,27963,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.9636,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,512.66669,1172442.9,0,0,4672.5708 -12511,15364,27963,27961,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.9943733,8.9808607,0,2,0,-9,11,0,2,68.510841,0,0,0,48,1,4,1,2,2,2019,1,1,14,2,35,40,15,1,0,1,0,23.486151,23.486151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.220001,58.790001,54.790001,55.860001,6,1,1,0,0,6,5,1,512.66669,1172442.9,0,0,4672.5708 -12512,15365,27964,27966,-9,-9,1,1,1,51,1,0,3,0,1,-9,2,1,0,0,4,7.1962214,7.0959172,0,2,0,-9,19,0,14,11.187588,0,0,0,37,2,4,3,3,2,2019,2,2,6,0,27,27,15,1,0,3,0,7.050364,7.050364,0,0,0,0,0,0,0,0,1,1,0,3.033627,0,0,0,54.790001,55.860001,46.75,56.990002,6,2,3,0,0,7,2,0,559.5,-43128.176,0,0,1912.7695 -12512,15365,27965,-9,27966,27964,3,1,1,16,2,0,3,0,2,-9,8,2,1,1,4,0,0,0,2,0,0,0,-9,0,-955.67969,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,2,0,559.5,-43128.176,0,0,1912.7695 -12512,15365,27966,27964,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-14,-63.899708,0,0,1,51,1,4,1,3,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8648157,0,0,0,46.75,56.990002,54.790001,55.860001,6,2,3,0,0,7,2,0,559.5,-43128.176,0,0,1912.7695 -12512,15365,27967,-9,27966,27964,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.41071,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,2,0,559.5,-43128.176,0,0,1912.7695 -12513,15366,27968,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,5,8.4704971,8.301549,0,3,0,0,0,-9,0,-1060.9745,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,6,50,15,1,0,-9,0,96.884842,96.884842,0,0,0,0,0,0,0,2,0,0,0,4.4368615,0,0,3,54.099998,59.110001,-9,-9,1,1,1,0,0,9,5,1,368,665619.31,0,0,2457.8516 -12514,15367,27969,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,8.2765484,8.1327047,0,3,0,0,0,-9,0,-983.86774,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,48,46,15,1,0,-9,0,10.411738,10.411738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,2,3,0,0,2,4,1,280,676572.81,0,0,1877.4902 -12515,15368,27970,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,0,4,8.864912,8.7027245,0,3,0,0,0,-9,0,-954.63049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,60,36,15,1,0,-9,0,13.890612,13.890612,0,0,0,0,0,0,0,27.5,0,0,0,0,0,23.057407,3,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,0,272,220734.91,0,0,2572.353 -12516,15369,27971,27972,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.7049236,7.6846962,1,0,-9,47,0,5,18.017509,0,0,0,64,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4002496,7.7233233,0,0,47.150002,56.66,53.720001,41.27,6,1,1,0,0,5,3,1,329,1064908.6,0,0,2016.3723 -12516,15369,27972,27971,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,4,0,6.5813704,6.3601928,1,0,-9,47,0,-5,11.738603,0,0,0,69,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3016469,6.2683897,0,0,53.720001,41.27,47.150002,56.66,6,1,1,0,0,5,3,1,329,1064908.6,0,0,2016.3723 -12517,15370,27973,27974,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,8.6359606,8.2499275,1,0,-9,7,0,2,63.47266,0,0,0,74,1,3,1,2,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2013969,8.4660959,0,0,56.16,47.110001,61.040001,39.41,6,1,1,0,0,4,4,1,263.5,1991304.3,0,0,4530.2773 -12517,15370,27974,27973,-9,-9,2,1,0,74,1,0,0,0,1,-9,1,1,0,0,3,7.4774227,8.1188707,7.2372971,1,0,-9,7,0,-2,56.078056,0,0,0,76,1,3,3,3,3,2019,2,1,9,0,30,15,15,1,0,4,0,4.9485936,4.9485936,1,0,0,0,0,0,0,0,1,1,0,3.9569395,7.0199032,0,0,61.040001,39.41,56.16,47.110001,6,1,1,0,0,4,4,1,263.5,1991304.3,0,0,4530.2773 -12518,15371,27975,-9,-9,-9,1,1,1,49,2,0,0,0,3,-9,2,1,0,0,3,8.043539,7.9034152,0,3,0,0,0,-9,0,-912.75452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,43,43,15,1,0,-9,0,8.3859768,8.3859768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,56.990002,-9,-9,4,2,3,0,0,2,4,1,505,73312.898,0,0,-407.96652 -12519,15372,27976,-9,27978,27979,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.6244,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,1,1,558,128227.89,0,0,1491.9939 -12519,15372,27977,-9,27978,27979,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-918.5799,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,1,1,558,128227.89,0,0,1491.9939 -12519,15372,27978,27979,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,6,0,-2,0,0,0,1,35,1,3,2,2,3,2019,2,1,10,3,0,33,15,1,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.220001,47.16,48.349998,50.73,6,1,1,0,0,6,1,1,558,128227.89,0,0,1491.9939 -12519,15372,27979,27978,-9,-9,1,1,1,35,1,2,2,0,1,-9,7,2,0,0,3,0,0,0,2,0,-9,6,0,2,0,1,0,0,33,1,4,1,2,2,2019,3,2,13,2,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.349998,50.73,53.220001,47.16,6,1,1,0,0,6,1,1,558,128227.89,0,0,1491.9939 -12520,15373,27980,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,0,4,8.6687574,8.7555161,7.4653373,3,0,0,0,-9,0,-1001.765,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,0,15,1,0,-9,0,16.523191,16.523191,0,0,0,0,0,0,0,0,0,0,0,6.5909247,8.1523724,0,0,58.150002,52.91,-9,-9,5,1,1,0,0,1,5,1,830,368176.75,0,0,1776.6105 -12521,15374,27981,-9,27984,27983,3,1,0,16,2,0,3,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.53528,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.419998,64.809998,-9,-9,4,2,3,0,0,2,4,0,447.25,359145.88,0,0,3337.9065 -12521,15374,27982,-9,27984,27983,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.9383,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,2,4,0,447.25,359145.88,0,0,3337.9065 -12521,15374,27983,27984,-9,-9,1,1,1,45,1,0,3,0,1,-9,2,1,0,0,2,9.5091677,9.4492064,0,2,0,-9,19,0,5,-116.62855,0,0,0,40,1,2,1,3,1,2019,1,2,21,9,70,52,15,1,1,1,0,14.962714,14.962714,0,0,0,0,0,0,0,0,1,1,0,.859366,0,0,0,36.389999,36.740002,43.360001,46.75,2,2,3,0,0,2,4,0,447.25,359145.88,0,0,3337.9065 -12521,15374,27984,27983,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,0,2,0,0,0,2,0,-9,18,0,-5,-51.666153,0,0,1,45,1,2,1,3,1,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.360001,46.75,36.389999,36.740002,4,2,3,0,0,2,4,0,447.25,359145.88,0,0,3337.9065 -12522,15375,27985,27986,-9,-9,2,1,0,32,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,3,0,-3,0,0,0,1,35,2,2,3,-9,-9,2019,4,1,29,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.1999998,67.709999,36.5,43.279999,1,1,1,1,1,6,1,0,397.5,0,0,0,1397.8212 -12522,15375,27986,27985,-9,-9,1,1,1,35,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,3,0,3,0,0,0,0,32,2,2,3,2,1,2019,4,2,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.5,43.279999,4.1999998,67.709999,4,1,1,0,1,6,1,0,397.5,0,0,0,1397.8212 -12523,15376,27987,-9,-9,-9,1,1,0,22,2,0,0,0,1,1,2,1,0,0,4,8.2107458,8.231287,0,3,0,0,0,-9,0,-891.64191,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,37,0,15,1,0,-9,0,10.426069,10.426069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,8,4,0,1653,85714.883,0,0,530.99493 -12523,15377,27988,-9,-9,-9,2,1,1,20,2,0,0,1,2,-9,7,2,0,0,5,0,0,0,3,0,-9,0,-9,0,-1029.142,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.630001,58.830002,-9,-9,6,1,1,0,0,8,1,0,698,192806.7,0,0,0 -12523,15378,27989,-9,-9,-9,3,1,1,20,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-901.90198,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.810001,59.970001,-9,-9,5,1,1,0,0,8,1,0,212,-7183.3633,0,0,-398.34372 -12524,15379,27990,27991,-9,-9,2,1,1,46,1,0,2,0,3,-9,1,1,0,0,4,8.2829094,8.1815701,0,2,0,-9,14,0,-5,43.224842,0,0,0,51,2,5,1,3,3,2019,1,1,8,0,84,50,15,1,0,1,0,5.0591917,5.0591917,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.3149176,3,60.119999,54.799999,48.18,61.799999,7,1,1,0,0,2,3,1,650.25,212169.36,0,0,2692.0852 -12524,15379,27991,27990,-9,-9,1,1,0,51,1,0,2,0,2,-9,2,1,0,0,5,6.4770741,6.0610175,0,2,0,-9,14,0,5,-119.41193,0,0,0,46,3,4,1,2,3,2019,1,2,10,1,9,9,15,1,0,1,0,6.7723813,6.7723813,0,0,0,0,0,0,0,7,1,1,0,0,0,10.831484,3,48.18,61.799999,60.119999,54.799999,5,1,1,0,0,2,3,1,650.25,212169.36,0,0,2692.0852 -12524,15379,27992,-9,27991,27990,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.2117,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,1,650.25,212169.36,0,0,2692.0852 -12524,15379,27993,-9,27991,27990,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1028.9268,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,2,3,1,650.25,212169.36,0,0,2692.0852 -12525,15380,27994,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,0,4,7.0767117,8.1165962,8.1448946,3,0,0,0,-9,0,-975.24042,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,25,0,15,1,0,-9,0,6.1155243,6.1155243,0,0,0,0,0,0,0,0,0,0,0,0,7.6363111,0,0,55.189999,54.259998,-9,-9,2,1,1,0,0,12,4,1,190,12739.83,0,0,939.26849 -12526,15381,27995,27996,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,2,7.1676931,6.9399257,0,1,0,-9,32,0,-3,61.723549,0,0,0,62,1,3,1,2,2,2019,1,1,8,0,50,60,15,1,0,1,0,2.2349751,2.2349751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.98,42.130001,51.669998,50.459999,5,1,1,0,0,7,4,1,1712.5,686667.63,0,0,2468.2729 -12526,15381,27996,27995,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,0,3,7.7397456,8.5883226,7.7982006,1,0,-9,32,0,3,83.321838,0,0,0,59,2,2,1,1,3,2019,1,2,12,0,17,17,15,1,0,1,0,17.965572,17.965572,0,0,0,0,0,0,0,0,0,0,0,2.9210608,7.6316433,0,0,51.669998,50.459999,55.98,42.130001,6,1,1,0,0,7,4,1,1712.5,686667.63,0,0,2468.2729 -12527,15382,27997,27998,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,8.7349358,8.4234018,0,2,0,-9,7,0,6,-14.754288,0,0,0,45,1,5,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,12.742418,12.742418,0,0,0,0,0,0,0,0,1,1,0,4.6640081,0,0,0,60.119999,54.799999,48.119999,63.16,7,1,1,0,0,11,4,1,784.33331,324163.94,0,0,3557.4983 -12527,15382,27998,27997,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,5,8.4214048,8.1153364,0,2,0,-9,7,0,-6,-72.298782,0,0,0,51,2,4,1,2,2,2019,1,1,11,1,35,35,15,1,0,1,0,10.302511,10.302511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.119999,63.16,60.119999,54.799999,6,1,1,0,0,11,4,1,784.33331,324163.94,0,0,3557.4983 -12527,15382,27999,-9,27998,27997,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1134.9127,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,11,4,1,784.33331,324163.94,0,0,3557.4983 -12528,15383,28000,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,4,0,8.0833178,8.3456583,3,0,0,0,-9,0,-984.88232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3031964,8.2193537,0,0,60.52,53.200001,-9,-9,6,1,1,0,0,11,4,1,1369,1070020.6,0,0,1853.1976 -12529,15384,28001,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,5,7.7433486,7.3968163,0,3,0,0,0,-9,0,-890.83716,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,38,49,15,1,1,-9,0,6.7504735,6.7504735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,56,-9,-9,1,3,4,0,1,4,3,0,456,13207.214,0,0,1520.9906 -12530,15385,28002,28003,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,0,5,8.3310671,8.3394165,0,2,0,-9,12,-9,8,-57.280865,-9,0,0,36,2,5,1,2,2,2019,1,1,8,0,37,0,15,1,0,1,0,12.902954,12.902954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,54.099998,59.110001,6,1,1,0,0,4,3,1,638.40002,82071.688,0,0,3160.8203 -12530,15385,28003,28002,-9,-9,1,1,0,36,1,0,3,0,2,-9,2,1,0,0,5,7.4651103,7.8184867,0,2,0,-9,12,-9,-8,107.73676,-9,0,1,44,2,5,1,2,2,2019,1,2,6,0,30,0,15,1,0,1,0,9.1192322,9.1192322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,48.77,60.16,7,1,1,0,0,4,3,1,638.40002,82071.688,0,0,3160.8203 -12530,15385,28004,-9,28003,28002,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-948.41364,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,638.40002,82071.688,0,0,3160.8203 -12530,15385,28005,-9,28003,28002,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-939.28687,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,638.40002,82071.688,0,0,3160.8203 -12530,15385,28006,-9,28003,28002,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-917.94012,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,1,638.40002,82071.688,0,0,3160.8203 -12531,15386,28007,28008,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,4,8.2904911,8.2939215,0,1,0,-9,8,0,1,103.26419,0,0,0,53,3,2,1,3,3,2019,1,2,8,0,44,44,15,1,0,1,0,8.0946894,8.0946894,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50.599998,36.509998,5,1,1,0,0,6,4,1,452,238390.13,0,0,2803.4641 -12531,15386,28008,28007,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,2,7.3798375,7.3858981,0,1,0,-9,8,0,-1,31.374727,0,0,0,54,3,4,1,3,3,2019,1,1,13,1,30,26,15,1,0,1,0,7.1217127,7.1217127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.599998,36.509998,57.16,56.150002,2,1,1,0,0,6,4,1,452,238390.13,0,0,2803.4641 -12532,15387,28009,28010,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,4,0,22,-32.720257,0,0,0,49,2,3,1,3,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1007195,0,0,0,42.200001,33.810001,53.779999,56.439999,7,1,1,0,0,9,3,1,496,1207490.3,0,0,2042.2251 -12532,15387,28010,28009,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.4074678,8.1915064,0,1,0,-9,4,0,-22,7.7589707,0,0,0,71,2,2,3,-9,-9,2019,2,1,9,1,50,50,15,1,0,4,0,9.8959227,9.8959227,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.216705,1,53.779999,56.439999,42.200001,33.810001,6,2,3,0,0,9,3,1,496,1207490.3,0,0,2042.2251 -12533,15388,28011,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,2,1,0,1,1,8.3533363,8.1933594,0,3,0,0,0,-9,0,-990.1377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,40,40,15,1,1,-9,0,11.485116,11.485116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.490002,33.09,-9,-9,2,1,1,0,0,7,4,1,425,108430.27,0,0,1453.0862 -12534,15389,28012,28013,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.8575144,8.7268238,0,1,0,-9,8,0,2,-142.93225,0,0,0,55,1,4,3,2,2,2019,2,2,9,0,48,55,15,1,0,4,0,12.930914,12.930914,0,0,0,0,0,0,0,0,0,0,0,.4746224,0,0,0,54,54,65.629997,42.66,6,1,1,0,0,10,5,1,851.5,1718701.5,0,0,2906.0862 -12534,15389,28013,28012,-9,-9,2,1,0,55,1,0,0,0,1,-9,4,3,0,0,4,0,7.6804018,7.3759112,1,0,-9,31,0,-2,-9.5784941,0,0,0,57,1,4,1,1,1,2019,3,1,1,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423053,7.1376486,0,0,65.629997,42.66,54,54,7,1,1,0,0,10,5,1,851.5,1718701.5,0,0,2906.0862 -12534,15390,28014,-9,28013,28012,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,8.0168991,7.9706903,0,3,0,0,0,-9,0,-839.55341,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,42,45,15,1,0,-9,1,9.3043308,9.3043308,0,0,0,0,0,0,0,0,0,0,0,5.103549,0,0,0,54.380001,41.240002,-9,-9,6,1,1,0,0,10,4,1,681,-98101.641,0,0,2606.7905 -12534,15391,28015,-9,28013,28012,4,1,0,22,2,0,0,0,2,-9,1,1,0,0,4,7.0839028,7.1797748,0,3,0,0,0,-9,0,-936.42743,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,40,37,15,1,0,-9,1,3.5540476,3.5540476,0,0,0,0,0,0,0,0,0,0,0,.80971974,0,0,0,46.5,58.259998,-9,-9,6,1,1,0,0,10,2,1,520,278232.75,0,0,1047.1843 -12535,15392,28016,28017,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,7.742754,8.1643934,0,2,0,-9,29,0,5,-121.69189,0,0,0,46,1,4,1,-9,2,2019,1,1,9,0,40,40,15,1,0,1,0,6.1384678,6.1384678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,54.040001,54.200001,57.490002,4,1,1,0,0,9,3,1,983,107160.48,0,0,2693.9429 -12535,15392,28017,28016,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,7.3338132,7.364018,0,2,0,-9,28,0,-5,-31.174366,0,0,0,51,2,3,1,2,2,2019,1,2,12,0,24,29,15,1,0,1,0,8.2081966,8.2081966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.360001,54.040001,6,1,1,0,0,9,3,1,983,107160.48,0,0,2693.9429 -12535,15392,28018,-9,28017,28016,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.2437,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,62.84,-9,-9,6,1,1,0,0,9,3,1,983,107160.48,0,0,2693.9429 -12535,15393,28019,-9,28017,28016,3,1,0,22,2,0,1,0,2,-9,7,2,0,0,4,6.0780897,5.9568429,0,3,0,0,0,-9,0,-984.0246,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,1,28,8,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,2,1,283,55856.465,0,0,-238.19479 -12536,15394,28020,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,2,6.5129685,6.8603125,0,3,0,0,0,-9,0,-1083.7836,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,14,40,15,1,0,-9,0,8.0628195,8.0628195,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.830002,37.91,-9,-9,3,1,1,0,0,11,2,0,1065,-89828.352,0,0,132.97771 -12536,15395,28021,-9,28020,-9,2,1,1,31,2,0,0,0,3,-9,2,1,0,0,2,7.5168471,7.2218585,0,3,0,0,0,-9,0,-1090.0746,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,24,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,3.2590075,3,56.34,40.630001,-9,-9,4,1,1,0,0,11,3,0,450,-19762.951,0,0,1924.3644 -12537,15396,28022,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.2595091,8.0760756,0,3,0,0,0,-9,0,-993.88593,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,21,8,38,30,15,1,1,-9,0,9.8782549,9.8782549,0,0,0,0,0,0,0,0,0,0,0,1.7873607,0,0,0,37.759998,55.720001,-9,-9,5,1,1,0,0,4,4,1,2047,135512.23,0,0,2766.8892 -12538,15397,28023,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,0,4,8.9645233,8.8753662,0,3,0,0,0,-9,0,-1134.2372,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,51,39,15,1,0,-9,0,18.756535,18.756535,0,0,0,0,0,0,0,0,0,0,0,3.4617758,0,0,0,49.459999,56.91,-9,-9,4,1,1,0,0,2,5,1,2293,478614.22,0,0,2744.4897 -12539,15398,28024,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.7465954,8.6331215,0,3,0,0,0,-9,0,-1027.3445,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,43,44,15,1,0,-9,0,18.390339,18.390339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,7,5,1,270,743.62476,0,0,607.04932 -12540,15399,28025,-9,28026,-9,2,1,0,17,2,0,0,1,2,0,7,2,0,0,5,5.4741073,5.6771984,0,3,0,0,0,-9,0,-1020.1953,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,3,4,0,0,8,4,1,668,401472.53,0,0,2534.0229 -12540,15399,28026,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,4,8.5900097,8.1240234,0,3,0,0,0,-9,0,-1012.4385,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,21,0,15,1,0,-9,0,20.231621,20.231621,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.220001,39.959999,-9,-9,4,3,4,0,0,8,4,1,668,401472.53,0,0,2534.0229 -12541,15400,28027,28028,-9,-9,2,1,1,36,1,0,1,0,1,-9,2,1,0,0,3,9.1956558,9.2664394,7.797544,2,0,-9,5,0,2,34.841228,0,0,0,34,1,3,1,1,1,2019,1,1,12,0,40,44,15,1,0,1,0,26.143013,26.143013,0,0,0,0,0,0,0,0,1,1,0,7.8919282,0,0,0,47.790001,53.790001,51.34,49.369999,6,1,1,0,0,5,5,1,318.33334,303780.03,0,0,4453.9473 -12541,15400,28028,28027,-9,-9,1,1,0,34,1,0,1,0,1,-9,2,1,0,0,3,7.3509417,7.3930492,0,2,0,-9,5,0,-2,-86.65184,0,0,1,36,1,3,1,2,3,2019,1,2,6,0,29,24,15,1,0,1,0,8.0320501,8.0320501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.34,49.369999,47.790001,53.790001,6,1,1,0,0,5,5,1,318.33334,303780.03,0,0,4453.9473 -12541,15400,28029,-9,28028,28027,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.6218,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,318.33334,303780.03,0,0,4453.9473 -12542,15401,28030,28031,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,3,9.1371441,9.1296206,5.4435029,2,0,-9,5,0,3,-62.967697,0,0,1,36,2,4,1,-9,-9,2019,1,1,13,1,43,41,15,1,0,1,0,23.053858,23.053858,0,0,0,0,0,0,0,0,1,1,0,5.3069053,0,0,0,44.02,47.290001,55.189999,54.259998,5,1,1,0,0,10,5,0,1152.3334,245835.19,0,0,4749.3823 -12542,15401,28031,28030,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.1710148,8.2406263,0,2,0,-9,5,0,-3,69.001144,0,0,0,39,1,3,1,2,3,2019,1,2,9,0,35,35,15,1,0,1,0,11.659238,11.659238,0,0,0,0,0,0,0,0,1,1,0,2.0594072,0,0,0,55.189999,54.259998,44.02,47.290001,6,1,1,0,0,10,5,0,1152.3334,245835.19,0,0,4749.3823 -12542,15401,28032,-9,28030,28031,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.52197,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,0,1152.3334,245835.19,0,0,4749.3823 -12543,15402,28033,28034,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.6235032,7.2846904,1,0,-9,32,0,3,-22.36005,0,0,0,58,1,4,1,-9,-9,2019,3,1,12,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6670265,0,0,53.68,45.470001,38.150002,62.02,6,1,1,0,0,6,5,1,325,1953120.9,0,0,6005.5947 -12543,15402,28034,28033,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,9.6168556,9.5855665,0,1,0,-9,32,0,-3,-75.464516,0,0,0,61,2,3,3,-9,-9,2019,2,2,16,3,43,45,15,1,0,4,0,36.532036,36.532036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.150002,62.02,53.68,45.470001,3,1,1,0,0,6,5,1,325,1953120.9,0,0,6005.5947 -12544,15403,28035,28036,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,1,1,0,6.5462341,6.4332452,1,0,-9,52,0,0,-109.29596,0,0,0,69,2,3,3,-9,-9,2019,4,2,15,6,0,0,15,4,1,4,0,0,0,1,0,22.950659,0,0,0,0,0,1,1,0,5.9477401,6.5895305,0,0,35.529999,19.08,54.669998,42.240002,1,1,1,0,0,2,2,1,509.5,74324.883,0,0,1717.03 -12544,15403,28036,28035,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,1,3,0,4.915144,4.9527965,1,0,-9,52,0,0,-10.065783,0,0,0,69,3,1,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.4031057,4.8967452,67.705856,1,54.669998,42.240002,35.529999,19.08,6,1,1,0,0,2,2,1,509.5,74324.883,0,0,1717.03 -12544,15404,28037,-9,28036,28035,3,1,0,47,2,0,0,0,2,-9,2,1,0,0,4,8.4569883,8.0476427,5.743856,3,0,0,0,-9,0,-1063.8821,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,1,10.605308,10.605308,0,0,0,0,0,0,0,2,1,1,0,7.5461588,5.6295962,10.546643,3,57.16,56.150002,-9,-9,6,1,1,0,0,2,4,1,222,259654.73,0,0,2287.1306 -12545,15405,28038,-9,28039,28040,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.0801,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,2,1,685.25,134251.02,0,0,1151.9548 -12545,15405,28039,28040,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,6.8472357,7.4213047,0,2,0,-9,21,0,-2,-95.941261,0,0,0,47,3,3,1,-9,-9,2019,1,2,11,0,18,16,15,1,0,1,0,7.8068218,7.8068218,0,0,0,0,0,0,0,0,1,1,0,.562069,0,0,0,47.52,57.75,49,50,6,1,1,0,0,10,2,1,685.25,134251.02,0,0,1151.9548 -12545,15405,28040,28039,-9,-9,2,1,1,47,1,0,2,0,3,-9,1,1,0,0,3,7.330442,7.2861829,0,2,0,-9,8,0,2,-174.77763,0,0,0,45,2,4,1,-9,-9,2019,1,1,11,1,40,45,15,1,0,1,0,4.8182178,4.8182178,0,0,0,0,0,0,0,0,1,1,0,1.5918727,0,0,0,49,50,47.52,57.75,5,1,1,0,0,10,2,1,685.25,134251.02,0,0,1151.9548 -12545,15405,28041,-9,28039,28040,3,1,0,16,2,0,2,0,-9,-9,3,2,0,0,4,0,0,0,2,0,0,0,-9,0,-839.5351,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.396162,0,0,0,35.970001,61.830002,-9,-9,6,1,1,1,0,10,2,1,685.25,134251.02,0,0,1151.9548 -12546,15406,28042,28043,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,8.0710125,8.012763,1,0,-9,28,0,1,47.457535,0,0,0,64,1,2,3,2,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.6521759,7.874496,.30273435,3,55.939999,47.09,43.59,46.41,6,1,1,0,0,8,4,1,259,2360718,0,0,3418.1602 -12546,15406,28043,28042,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,2,0,7.1146088,7.3097596,1,0,-9,28,0,-1,-12.997429,0,0,0,65,1,4,3,1,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.8159213,7.1076398,0,3,43.59,46.41,55.939999,47.09,6,1,1,0,0,8,4,1,259,2360718,0,0,3418.1602 -12547,15407,28044,-9,28047,28045,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.6653,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,0,325.75,279657.09,0,0,3286.2158 -12547,15407,28045,28047,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,4,8.5550051,8.4761181,0,2,0,-9,14,0,11,-14.092673,0,0,0,33,1,3,1,2,2,2019,1,1,9,1,40,45,15,1,0,1,0,14.988865,14.988865,0,0,0,0,0,0,0,0,1,1,0,1.2602658,0,0,0,56.18,51.02,45.990002,51.880001,6,1,1,0,0,9,4,0,325.75,279657.09,0,0,3286.2158 -12547,15407,28046,-9,28047,28045,5,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.0361,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,0,325.75,279657.09,0,0,3286.2158 -12547,15407,28047,28045,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,0,3,7.7463088,7.7133718,0,2,0,-9,16,0,-11,-131.35202,0,0,1,44,2,4,1,2,2,2019,1,2,10,1,26,27,15,1,0,1,0,12.38866,12.38866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.990002,51.880001,56.18,51.02,6,1,1,0,0,9,4,0,325.75,279657.09,0,0,3286.2158 -12547,15408,28048,-9,28047,28045,3,1,0,21,2,0,2,0,2,-9,2,1,0,0,4,7.0779724,6.928812,0,4,0,0,0,-9,0,-944.83044,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,12,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,2,0,256,103656.62,0,0,-141.83919 -12548,15409,28049,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,2,7.7757931,8.2298183,0,3,0,0,0,-9,0,-1009.303,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,17,12,15,1,0,-9,0,17.656782,17.656782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.68,31.83,-9,-9,6,1,1,0,0,11,4,1,132,60465.16,0,0,1729.8007 -12549,15410,28050,-9,-9,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.6189537,8.9859924,0,3,0,0,0,-9,0,-1052.132,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,3,30,40,15,1,0,-9,1,22.060488,22.060488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.259998,-9,-9,5,3,4,0,0,8,5,1,1210,729.70825,0,0,2803.5061 -12549,15411,28051,-9,-9,-9,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.388113,8.4952183,0,3,0,0,0,-9,0,-941.76801,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,37,35,15,1,0,-9,1,11.457387,11.457387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,5,3,4,0,0,8,5,1,1054,107437.74,0,0,872.01178 -12550,15412,28052,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,0,3,7.3206272,7.5068002,5.3751926,4,0,0,0,-9,0,-1022.8464,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,4,27,0,15,1,1,-9,0,6.6091146,6.6091146,0,0,0,0,0,0,0,7,1,1,0,5.7476215,0,0,3,54.099998,41.150002,-9,-9,4,1,1,0,0,13,3,1,252.5,87587.211,0,0,2169.9668 -12550,15412,28053,-9,28052,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1057.0503,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,252.5,87587.211,0,0,2169.9668 -12551,15413,28054,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,0,5,8.6497526,8.9624624,0,3,0,0,0,-9,0,-1023.5087,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,49,48,15,1,0,-9,0,15.528854,15.528854,0,0,0,0,0,0,0,0,0,0,0,4.1720848,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,10,5,1,1053,390094.72,0,0,3571.0571 -12551,15414,28055,-9,-9,28054,2,1,1,25,2,0,0,0,2,1,2,1,0,0,5,7.1784301,7.3457088,0,3,0,0,0,-9,0,-875.88245,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,1,37,0,15,1,0,-9,1,4.1138024,4.1138024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,-9,-9,6,1,1,0,0,10,2,1,889,-627.45172,0,0,290.66443 -12552,15415,28056,-9,-9,-9,4,1,1,30,2,0,1,0,2,-9,2,1,0,0,3,6.3002381,6.1941462,0,3,0,0,0,-9,0,-1020.3855,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,12,40,15,1,0,-9,1,3.5719426,3.5719426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.029999,45.360001,-9,-9,5,2,3,0,0,4,2,1,1235,25976.701,0,0,1840.663 -12553,15416,28057,-9,28060,28059,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.3235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,381,499491.25,0,0,2482.2808 -12553,15416,28058,-9,28060,28059,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.3067,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,381,499491.25,0,0,2482.2808 -12553,15416,28059,28060,-9,-9,1,1,1,42,1,1,2,0,2,-9,2,1,0,0,4,7.7123275,7.8523707,0,2,0,-9,14,0,6,172.59898,0,0,0,36,2,4,1,3,3,2019,1,2,9,1,37,37,15,1,0,1,0,8.6861401,8.6861401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49.91,58.02,4,1,1,0,0,2,3,1,381,499491.25,0,0,2482.2808 -12553,15416,28060,28059,-9,-9,2,1,0,36,1,1,2,0,2,-9,2,1,0,0,4,7.7650943,7.717339,0,2,0,-9,7,0,-6,25.984819,0,0,1,42,2,4,1,-9,-9,2019,1,1,13,3,22,20,15,1,0,1,0,13.411189,13.411189,0,0,0,0,0,0,0,0,1,1,0,1.4477355,0,0,0,49.91,58.02,57.16,56.150002,6,1,1,0,0,2,3,1,381,499491.25,0,0,2482.2808 -12554,15417,28061,28062,-9,-9,1,1,1,68,1,0,0,0,3,-9,1,1,0,0,3,8.412117,8.6257505,0,1,0,-9,44,0,1,15.740985,0,0,0,67,3,4,3,3,3,2019,2,2,9,0,70,60,15,1,0,3,0,8.4865704,8.4865704,1,0,4.2154937,0,0,0,9.68048,0,1,1,0,1.5040816,0,0,0,53.099998,52.619999,52.93,55.310001,6,1,1,0,0,13,4,1,828,1663485.3,0,0,3600.5142 -12554,15417,28062,28061,-9,-9,2,1,0,67,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,44,0,-1,-14.44714,0,0,0,68,3,3,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.93,55.310001,53.099998,52.619999,6,1,1,0,0,13,4,1,828,1663485.3,0,0,3600.5142 -12555,15418,28063,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1101.3525,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.720001,18.879999,-9,-9,3,1,1,0,0,9,1,0,3843,72349.164,0,0,-70.172653 -12555,15419,28064,-9,28063,-9,2,1,1,27,2,0,0,0,3,-9,2,1,0,0,4,7.590219,7.5542159,0,3,0,0,0,-9,0,-1009.1321,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,50,0,15,1,0,-9,1,4.5039911,4.5039911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.939999,58.009998,-9,-9,6,1,1,0,0,9,3,0,1446,-44234.016,0,0,532.17023 -12555,15420,28065,-9,28063,-9,3,1,1,21,2,0,0,1,2,0,7,2,0,0,4,6.8582101,6.8137379,0,3,0,0,0,-9,0,-1068,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,9,2,0,184,157420.34,0,0,1815.0117 -12556,15421,28066,28067,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,38,0,-4,75.785187,0,0,0,61,1,3,1,3,3,2019,3,1,13,2,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.169998,52.080002,63.259998,45.23,6,1,1,0,0,2,5,1,2128,2344318.5,0,0,3765.6626 -12556,15421,28067,28066,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,3,9.3868542,9.2088852,0,1,0,-9,38,0,4,1.5884042,0,0,0,57,1,3,3,2,2,2019,2,2,8,0,45,47,15,1,0,4,0,28.33967,28.33967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.259998,45.23,48.169998,52.080002,6,1,1,0,0,2,5,1,2128,2344318.5,0,0,3765.6626 -12556,15422,28068,-9,28066,28067,3,1,1,23,2,0,0,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1096.4242,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,1,0,2,1,1,3007,-53843.266,0,0,0 -12557,15423,28069,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-953.17163,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,6,1,1,0,0,2,1,1,583,446087.31,0,0,8.055665 -12558,15424,28070,28071,-9,-9,2,1,0,31,1,1,2,0,2,-9,2,1,0,0,4,7.0837426,6.9183178,0,2,0,-9,7,0,0,85.044464,0,0,1,31,2,3,1,-9,-9,2019,1,1,6,0,16,16,15,1,0,1,0,10.310778,10.310778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,25.299999,43.759998,6,1,1,0,1,11,3,1,785.5,143997.63,0,0,3343.2017 -12558,15424,28071,28070,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,1,3,7.9657974,8.1993885,5.8363051,2,0,-9,7,0,0,43.252899,0,0,0,31,2,4,1,-9,-9,2019,1,2,18,6,37,40,15,1,1,1,0,12.790488,12.790488,0,0,0,0,0,0,0,0,1,1,0,5.7078166,0,0,0,25.299999,43.759998,57.16,56.150002,3,1,1,0,1,11,3,1,785.5,143997.63,0,0,3343.2017 -12558,15424,28072,-9,28070,28071,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.51636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,3,1,785.5,143997.63,0,0,3343.2017 -12558,15424,28073,-9,28070,28071,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.88916,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,11,3,1,785.5,143997.63,0,0,3343.2017 -12559,15425,28074,28075,-9,-9,1,1,0,64,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,33,0,-7,0,0,0,0,71,3,1,3,3,3,2019,4,2,15,4,0,0,15,3,1,4,0,0,0,1,0,6.8745842,0,0,0,0,42,1,1,0,0,0,45.208874,1,37.02,37.369999,30.620001,22.93,4,1,1,0,0,2,1,0,628.5,229362.22,0,0,1702.48 -12559,15425,28075,28074,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,33,0,7,0,0,0,0,64,3,2,3,-9,-9,2019,4,1,17,5,0,0,15,4,1,3,0,0,0,1,0,21.84959,0,0,0,0,0,1,1,0,0,0,0,0,30.620001,22.93,37.02,37.369999,2,1,1,0,0,2,1,0,628.5,229362.22,0,0,1702.48 -12560,15426,28076,28078,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,8.6563578,8.8725548,0,2,0,-9,12,0,4,74.503174,0,0,0,42,1,3,1,2,1,2019,1,1,9,0,30,46,15,1,0,1,0,22.409557,22.409557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,51,49.5,48.939999,6,1,1,0,0,6,5,1,1825.6666,1060512.3,0,0,4026.3674 -12560,15426,28077,-9,28078,28076,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.26886,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,6,5,1,1825.6666,1060512.3,0,0,4026.3674 -12560,15426,28078,28076,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,3,8.5996904,8.743928,0,2,0,-9,14,0,-4,-51.524658,0,0,1,46,1,3,1,2,3,2019,1,2,12,0,45,50,15,1,0,1,0,19.615135,19.615135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.5,48.939999,48,51,7,2,3,0,0,6,5,1,1825.6666,1060512.3,0,0,4026.3674 -12561,15427,28079,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,2,0,7.3107171,8.0121746,3,0,0,0,-9,0,-928.54071,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4551754,0,3,57.330002,34.689999,-9,-9,7,1,1,0,0,4,3,1,237,111212.41,0,0,1597.9761 -12562,15428,28080,-9,-9,-9,1,1,1,54,3,0,0,0,1,-9,2,1,0,0,5,8.347146,8.5712242,5.9533625,3,0,0,0,-9,0,-860.74939,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,38,38,15,1,0,-9,0,14.1303,14.1303,0,0,0,0,0,0,0,0,0,0,0,6.6917815,0,0,0,56.470001,59.400002,-9,-9,5,1,1,0,0,12,5,0,719,911374.88,0,0,2780.6448 -12563,15429,28081,28082,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,0,4,8.6178761,8.1739826,0,1,0,-9,8,0,-3,-11.910792,0,0,0,44,1,2,1,3,2,2019,1,2,8,0,37,37,15,1,0,1,0,14.584017,14.584017,0,0,0,0,0,0,0,2,0,0,0,0,0,2.3968263,3,54.740002,57.220001,45.990002,38.650002,6,1,1,0,0,10,5,1,302.5,552012.38,0,0,4406.2769 -12563,15429,28082,28081,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,0,2,9.2253199,8.7934065,0,1,0,-9,8,0,3,-61.275871,0,0,1,41,1,4,1,3,2,2019,1,1,13,2,36,33,15,1,0,1,0,21.645609,21.645609,0,0,0,0,0,0,0,2,0,0,0,.34125793,0,.069973245,3,45.990002,38.650002,54.740002,57.220001,5,1,1,0,0,10,5,1,302.5,552012.38,0,0,4406.2769 -12564,15430,28083,-9,-9,-9,1,1,1,47,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-958.34259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.939999,16.65,-9,-9,5,1,1,0,0,2,1,0,887,18994.742,0,0,946.95947 -12565,15431,28084,-9,28085,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1049.5637,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,5,3,0,927,32509.113,0,0,1871.9606 -12565,15431,28085,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,1,1,0,0,4,7.7152619,7.5047679,5.0039716,4,0,0,0,-9,0,-1121.8167,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,16,16,15,1,0,-9,0,15.768074,15.768074,0,0,0,0,0,0,0,0,1,1,0,5.2958398,0,0,0,50.360001,52.77,-9,-9,6,1,1,0,0,5,3,0,927,32509.113,0,0,1871.9606 -12566,15432,28086,28089,-9,-9,3,1,1,37,1,0,2,0,1,-9,2,1,0,0,4,9.7121572,9.4124584,0,2,0,-9,8,0,4,-10.158357,0,0,0,33,2,2,2,-9,-9,2019,2,1,10,0,50,60,15,1,0,2,0,40.022476,40.022476,0,0,0,0,0,0,0,0,1,1,0,.13954841,0,0,0,38.099998,55.360001,37.950001,44.900002,4,1,1,0,0,9,5,0,603.5,468769.56,0,0,5606.4326 -12566,15432,28087,-9,28089,28086,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.8285,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,0,603.5,468769.56,0,0,5606.4326 -12566,15432,28088,-9,28089,28086,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.60895,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,0,603.5,468769.56,0,0,5606.4326 -12566,15432,28089,28086,-9,-9,1,1,0,33,1,0,2,0,2,-9,7,2,0,0,2,7.7143044,8.0764351,0,2,0,-9,8,0,-4,107.49698,1,0,1,37,1,4,1,2,2,2019,3,3,19,6,15,22,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.950001,44.900002,38.099998,55.360001,2,1,1,0,1,9,5,0,603.5,468769.56,0,0,5606.4326 -12567,15433,28090,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,2,0,7.7996573,7.7922359,3,0,0,0,-9,0,-916.47754,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7560425,7.9031277,0,0,63.41,29.17,-9,-9,6,1,1,0,0,1,3,1,306,771276,0,0,2519.5225 -12568,15434,28091,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,1,0,7.5218616,7.4718537,3,0,0,0,-9,0,-1069.0328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7767513,7.472219,0,0,40.43,34.66,-9,-9,3,1,1,0,0,5,3,1,439,798293.25,0,0,828.22614 -12569,15435,28092,28094,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,0,4,8.6165009,8.5413847,0,2,0,-9,9,0,-1,-97.336189,0,0,0,42,2,3,1,1,1,2019,1,2,12,1,37,43,15,1,0,1,0,19.978802,19.978802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.790001,62.549999,25.02,64.339996,6,1,1,0,0,11,5,1,764,1866780.4,0,0,7227.1445 -12569,15435,28093,-9,28094,28092,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.09802,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,764,1866780.4,0,0,7227.1445 -12569,15435,28094,28092,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,9.7811918,9.6274233,0,2,0,-9,7,0,1,20.872501,-9,0,1,41,1,4,1,3,2,2019,1,1,22,7,50,0,15,1,1,1,0,41.011475,41.011475,0,0,0,0,0,0,0,0,0,0,0,4.371789,0,0,0,25.02,64.339996,36.790001,62.549999,3,1,1,0,0,11,5,1,764,1866780.4,0,0,7227.1445 -12570,15436,28095,28096,-9,-9,2,1,1,72,1,0,0,0,3,-9,1,1,0,0,3,8.762001,8.8420258,0,1,0,-9,7,0,8,166.06261,0,0,0,64,2,4,1,3,2,2019,1,1,10,1,25,30,15,1,0,1,0,28.188099,28.188099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,57.16,56.150002,5,1,1,0,0,10,5,0,295.5,1725137.6,0,0,4567.2896 -12570,15436,28096,28095,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,4,7.1460423,7.4500537,0,1,0,-9,7,0,-8,37.438507,0,0,0,72,3,3,1,2,1,2019,1,2,6,0,30,15,15,1,0,1,0,4.6083527,4.6083527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,53,47,6,1,1,0,0,10,5,0,295.5,1725137.6,0,0,4567.2896 -12571,15437,28097,28098,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.1768074,8.2089977,0,1,0,-9,29,0,-15,60.033474,0,0,0,72,2,5,3,3,2,2019,2,1,7,0,40,40,15,1,0,4,0,9.6256504,9.6256504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,45.029999,44.209999,53.82,7,3,4,0,0,8,4,0,1142.5,1005580.4,0,0,2714.7085 -12571,15437,28098,28097,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,5,0,0,0,1,0,-9,29,0,15,120.2072,0,0,0,57,2,3,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.209999,53.82,46.98,45.029999,7,3,4,0,0,8,4,0,1142.5,1005580.4,0,0,2714.7085 -12572,15438,28099,-9,28102,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1067.134,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,686.75,-24047.072,0,0,1133.285 -12572,15438,28100,-9,28102,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1022.4625,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,3,0,686.75,-24047.072,0,0,1133.285 -12572,15438,28101,-9,28102,-9,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-905.71356,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,3,0,686.75,-24047.072,0,0,1133.285 -12572,15438,28102,-9,28103,-9,1,1,0,31,2,0,3,0,3,-9,2,1,0,0,4,7.3415284,7.3047514,0,3,0,0,0,-9,0,-1071.926,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,23,0,15,1,1,-9,1,7.6512456,7.6512456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.310001,41.27,-9,-9,5,1,1,0,0,2,3,0,686.75,-24047.072,0,0,1133.285 -12572,15439,28103,-9,-9,-9,2,1,0,66,3,0,3,0,3,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-957.89386,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,22.6,-9,-9,4,1,1,0,0,2,1,0,528,-73567.711,0,0,-903.37976 -12573,15440,28104,-9,28107,28105,6,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.60693,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,1,1184.25,419560.91,0,0,2552.772 -12573,15440,28105,28107,-9,-9,1,1,1,37,1,0,4,0,1,-9,2,1,0,0,5,8.6881695,8.6082926,0,2,0,-9,18,0,-4,32.762741,0,0,0,41,1,4,3,3,3,2019,2,2,11,1,40,40,15,1,0,3,0,20.645144,20.645144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,54.52,54.790001,55.860001,6,2,3,0,0,2,3,1,1184.25,419560.91,0,0,2552.772 -12573,15440,28106,-9,28107,28105,7,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.8461,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,2,3,1,1184.25,419560.91,0,0,2552.772 -12573,15440,28107,28105,-9,-9,2,1,0,41,1,0,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,4,-3.4104068,0,0,1,37,1,5,1,3,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,58.049999,54.52,7,2,3,0,0,2,3,1,1184.25,419560.91,0,0,2552.772 -12573,15441,28108,-9,-9,-9,3,1,1,39,3,0,4,0,1,-9,1,1,0,0,4,8.2669907,7.9783792,0,4,0,0,0,-9,0,-963.91638,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,5,60,75,15,1,1,-9,0,8.2257109,8.2257109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,53.290001,-9,-9,5,2,3,0,0,2,3,1,741,-12659.283,0,0,1218.5472 -12574,15442,28109,28110,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.0759306,8.0833941,0,1,0,-9,8,0,-6,-14.163459,0,0,0,64,2,2,1,-9,2,2019,1,1,6,0,40,40,15,1,0,1,0,7.4681835,7.4681835,0,0,0,0,0,0,0,0,0,0,0,1.1988151,0,0,0,57.330002,53.459999,58.169998,42.52,5,1,1,0,0,2,5,1,503.5,1945197,0,0,3823.1147 -12574,15442,28110,28109,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,8.9198236,8.7890415,0,1,0,-9,8,0,6,31.183044,0,0,0,58,2,3,1,3,3,2019,1,2,6,0,50,50,15,1,0,1,0,16.959747,16.959747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.169998,42.52,57.330002,53.459999,6,1,1,0,0,2,5,1,503.5,1945197,0,0,3823.1147 -12575,15443,28111,28113,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,2,8.8980942,8.4786987,0,2,0,-9,22,0,-1,31.30331,0,0,1,45,1,3,1,2,2,2019,1,1,7,0,40,40,15,1,0,1,0,16.31031,16.31031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.209999,43.869999,57.330002,53.459999,5,1,1,0,0,2,5,1,1184,3130873,0,0,5609.166 -12575,15443,28112,-9,28111,28113,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.97516,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,1184,3130873,0,0,5609.166 -12575,15443,28113,28111,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,9.0401993,9.2972698,0,2,0,-9,22,0,1,-43.439575,0,0,0,44,2,2,1,2,2,2019,1,2,6,0,41,43,15,1,0,1,0,27.162767,27.162767,0,0,0,0,0,0,0,0,1,1,0,1.3079891,0,0,0,57.330002,53.459999,55.209999,43.869999,6,1,1,0,0,2,5,1,1184,3130873,0,0,5609.166 -12575,15443,28114,-9,28111,28113,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.12,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,1184,3130873,0,0,5609.166 -12576,15444,28115,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,7.6405983,7.6702471,6.485177,3,0,0,0,-9,0,-1114.679,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,30,15,1,0,-9,0,5.5724335,5.5724335,0,0,0,0,0,0,0,0,0,0,0,5.0104733,6.9040089,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,3,1,609,12975.033,0,0,1535.1069 -12577,15445,28116,28119,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,2,7.435339,7.157155,0,2,0,-9,10,0,-3,-48.040546,0,0,1,41,1,5,1,2,-9,2019,1,2,12,0,0,14,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,40.709999,44.009998,54.099998,59.110001,4,1,1,0,0,11,4,1,1181.75,552032.25,0,0,2952.1035 -12577,15445,28117,-9,28116,28119,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-899.36957,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,1181.75,552032.25,0,0,2952.1035 -12577,15445,28118,-9,28116,28119,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.13641,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,11,4,1,1181.75,552032.25,0,0,2952.1035 -12577,15445,28119,28116,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,5,8.7395897,8.4726925,0,2,0,-9,10,0,3,-39.980843,0,0,0,38,2,2,1,2,2,2019,1,1,9,1,35,45,15,1,0,1,0,19.160568,19.160568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,40.709999,44.009998,6,1,1,0,0,11,4,1,1181.75,552032.25,0,0,2952.1035 -12578,15446,28120,28121,-9,-9,2,1,0,42,1,0,1,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,9,0,-2,60.604618,0,0,1,44,3,4,1,3,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.419998,44.540001,33.509998,60.630001,5,2,3,0,0,9,2,0,2322.5,54370.469,0,0,644.159 -12578,15446,28121,28120,-9,-9,1,1,1,44,1,0,1,0,3,-9,2,1,0,0,4,7.9050899,7.9903965,0,2,0,-9,9,0,2,-39.885242,0,0,0,42,3,2,3,3,2,2019,2,2,6,0,36,38,15,1,0,3,0,8.3975677,8.3975677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.509998,60.630001,36.419998,44.540001,6,2,3,0,0,9,2,0,2322.5,54370.469,0,0,644.159 -12578,15447,28122,-9,28120,28121,3,1,1,19,2,0,1,0,2,-9,2,1,0,0,5,8.1365891,8.3698721,0,3,0,0,0,-9,0,-960.37201,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,42,43,15,1,0,-9,1,9.1711206,9.1711206,0,0,0,0,0,0,0,0,0,0,0,.98580295,0,0,0,52.720001,55.580002,-9,-9,6,2,3,0,0,9,4,0,530,153179.56,0,0,1632.48 -12578,15448,28123,-9,28120,28121,4,1,0,18,2,0,1,0,2,0,7,2,0,0,5,0,5.2626591,5.2312641,3,0,0,0,-9,0,-960.16443,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.423821,0,0,0,70.290001,42.139999,-9,-9,7,2,3,0,0,9,4,0,977,-191422.31,0,0,-274.04178 -12579,15449,28124,28125,-9,-9,1,1,0,35,1,0,0,0,3,-9,2,1,0,0,5,5.1661305,5.2208776,0,1,0,-9,8,0,3,62.29987,0,0,1,32,3,3,1,-9,-9,2019,1,2,11,4,60,40,15,1,1,1,0,.29656276,.29656276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.419998,37.790001,54.959999,53.169998,7,1,1,0,0,7,3,0,820,0,0,0,2283.7168 -12579,15449,28125,28124,-9,-9,2,1,1,32,1,0,0,0,3,-9,2,1,0,0,3,8.2039957,8.0377531,0,1,0,-9,8,0,-3,81.683784,0,0,0,35,3,5,1,-9,-9,2019,1,1,6,0,60,14,15,1,0,1,0,6.6280189,6.6280189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,55.419998,37.790001,5,1,1,0,0,7,3,0,820,0,0,0,2283.7168 -12580,15450,28126,28127,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,0,3,6.9087586,6.9097624,0,2,0,-9,28,0,-3,.37434885,0,0,0,55,2,4,1,-9,2,2019,1,2,9,0,13,14,15,1,0,1,0,8.1895618,8.1895618,0,0,0,0,0,0,0,0,0,0,0,1.5653949,0,0,0,52,54.509998,46.630001,59.720001,5,1,1,0,0,7,4,1,2680.5,739193.06,0,0,1268.4885 -12580,15450,28127,28126,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,4,8.4930458,8.7078409,0,2,0,-9,28,0,3,-2.9101498,0,0,0,52,2,3,1,-9,3,2019,1,1,12,0,40,40,15,1,0,1,0,20.699497,20.699497,0,0,0,0,0,0,0,0,0,0,0,3.4525464,0,0,0,46.630001,59.720001,52,54.509998,4,1,1,0,0,7,4,1,2680.5,739193.06,0,0,1268.4885 -12581,15451,28128,28129,-9,-9,1,1,0,38,1,0,0,0,2,-9,2,1,0,0,4,8.5465927,8.4974823,0,1,0,-9,3,0,-4,157.8739,0,0,1,42,2,5,1,2,2,2019,1,2,6,0,50,57,15,1,0,1,0,12.735071,12.735071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,57.060001,57.759998,5,1,1,0,0,7,5,1,480,478559.56,0,0,3247.1553 -12581,15451,28129,28128,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,5,8.2877569,8.1230717,0,1,0,-9,3,0,4,-88.980026,0,0,0,38,2,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,11.883184,11.883184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,51.830002,57.200001,7,1,1,0,0,7,5,1,480,478559.56,0,0,3247.1553 -12582,15452,28130,28132,-9,-9,2,1,0,44,1,0,2,0,2,-9,1,1,0,0,3,7.4752727,7.1794243,0,2,0,-9,26,0,-3,-15.64337,0,0,1,47,1,3,1,3,2,2019,1,1,23,10,18,20,15,1,1,1,0,8.5748272,8.5748272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.15,62.439999,52,54.509998,4,1,1,0,0,9,5,1,1210.25,1163852,0,0,4611.6123 -12582,15452,28131,-9,28130,28132,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-995.81543,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,9,5,1,1210.25,1163852,0,0,4611.6123 -12582,15452,28132,28130,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,9.132987,8.8379126,0,2,0,-9,26,0,3,10.764888,0,0,0,44,2,3,1,2,2,2019,1,2,7,0,50,40,15,1,0,1,0,20.454552,20.454552,0,0,0,0,0,0,0,0,1,1,0,3.0177963,0,0,0,52,54.509998,26.15,62.439999,6,1,1,0,0,9,5,1,1210.25,1163852,0,0,4611.6123 -12582,15452,28133,-9,28130,28132,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-935.53961,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,9,5,1,1210.25,1163852,0,0,4611.6123 -12583,15453,28134,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,2,1,0,0,2,8.7201643,8.9251833,0,3,0,0,0,-9,0,-971.95587,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,38,15,1,0,-9,0,21.062002,21.062002,0,0,0,0,0,0,0,0,0,0,0,7.4153199,0,0,0,38.360001,51.73,-9,-9,5,1,1,0,0,12,5,1,112,127341.3,0,0,4763.5542 -12584,15454,28135,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,4.5791888,4.7496734,3,0,0,0,-9,0,-1080.5099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,1.5966077,0,0,0,0,1,1,0,0,4.9284191,0,0,67.260002,25.66,-9,-9,6,1,1,0,0,9,2,1,234,608557.19,0,0,1020.2827 -12585,15455,28136,28137,-9,-9,2,1,1,20,1,1,1,0,2,-9,2,1,0,0,4,7.6264725,7.4292202,0,2,0,-9,1,-9,1,-63.689831,-9,1,0,19,2,3,3,-9,-9,2019,2,1,9,1,40,0,15,1,0,3,0,5.5714698,5.5714698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.880001,53.009998,54.23,44.07,5,1,1,0,0,9,2,0,301.66666,-7562.3384,0,0,847.03033 -12585,15455,28137,28136,-9,-9,1,1,0,19,1,1,1,0,2,1,3,3,0,0,3,0,0,0,2,0,1,1,-9,-1,78.748116,-9,1,1,20,2,4,1,-9,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.23,44.07,48.880001,53.009998,6,1,1,1,0,9,2,0,301.66666,-7562.3384,0,0,847.03033 -12585,15455,28138,-9,28137,28136,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1155.3953,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,2,0,301.66666,-7562.3384,0,0,847.03033 -12586,15456,28139,-9,-9,-9,1,1,0,44,3,0,1,0,3,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-977.92151,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.639999,39.369999,-9,-9,4,1,1,0,0,6,1,1,280,-105411.91,0,0,1428.7557 -12587,15457,28140,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,0,4,3.7787185,6.7637062,6.6780634,3,0,0,0,-9,0,-1052.2413,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6978731,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,10,2,0,232,142462.23,0,0,1550.1838 -12588,15458,28141,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,0,3,8.3314734,8.2724638,0,3,0,0,0,-9,0,-997.38757,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,50,15,1,0,-9,0,13.155845,13.155845,0,0,0,0,0,0,0,0,0,0,0,.34833366,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,2,5,0,497,304203.63,0,0,2481.5049 -12589,15459,28142,28143,-9,-9,1,1,1,89,1,0,0,0,3,-9,4,3,0,0,5,0,5.6719623,5.3927951,1,0,-9,10,0,0,62.41502,0,0,0,89,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6729217,5.0335093,0,0,58.049999,54.52,52,45,7,1,1,0,0,11,2,1,139,402379.44,0,0,29.447571 -12589,15459,28143,28142,-9,-9,2,1,0,89,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,0,-86.327248,0,0,0,89,3,5,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9463464,0,0,0,52,45,58.049999,54.52,6,1,1,0,0,11,2,1,139,402379.44,0,0,29.447571 -12590,15460,28144,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-903.75641,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.1659985,3,48.279999,60.18,-9,-9,7,1,1,0,0,11,1,0,439,49947.055,0,0,1067.1362 -12591,15461,28145,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,2,1,0,0,3,8.8551302,8.5575781,6.302074,3,0,0,0,-9,0,-941.05304,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,95,126,15,1,0,-9,0,7.0879173,7.0879173,0,0,0,0,0,0,0,31,1,1,0,6.1068039,0,115.68675,3,51.43,36.709999,-9,-9,6,1,1,0,0,9,5,1,306,198339.45,0,0,2444.9592 -12591,15462,28146,-9,-9,-9,2,1,1,28,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1080.8907,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,9,1,1,84,-72357.703,0,0,0 -12592,15463,28147,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,8.3529644,8.3612013,0,3,0,0,0,-9,0,-1038.2096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,50,50,15,1,0,-9,0,8.969841,8.969841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,4,1,2873,-109162.45,0,0,1536.002 -12593,15464,28148,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,1,1,0,0,4,8.0793819,8.103734,0,3,0,-9,0,1,0,-1083.5492,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,50,35,15,1,0,-9,0,5.5186992,5.5186992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.619999,56.48,-9,-9,2,1,1,0,0,12,3,0,641,146814.95,0,0,379.66644 -12594,15465,28149,28150,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,43,0,-7,0,0,0,0,86,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,55.200001,49.400002,7,1,1,0,0,12,1,1,267.5,339441.31,0,0,921.54736 -12594,15465,28150,28149,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,43,0,7,0,0,0,0,79,3,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5708408,0,0,0,55.200001,49.400002,57.060001,57.759998,6,1,1,0,0,12,1,1,267.5,339441.31,0,0,921.54736 -12595,15466,28151,28152,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,4.6411009,4.8389778,1,0,-9,8,0,-2,39.905994,0,0,0,74,2,4,3,3,2,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3026421,4.7596312,0,3,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,10,3,1,560,1231764.8,0,0,3515.8447 -12595,15466,28152,28151,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,8.1043119,7.9777284,1,0,-9,8,0,2,12.273172,0,0,0,72,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.102139,8.3308611,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,10,3,1,560,1231764.8,0,0,3515.8447 -12596,15467,28153,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1037.4709,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,9,1,0,708,275897.94,0,0,1006.5118 -12597,15468,28154,-9,-9,-9,1,1,0,35,2,0,3,0,2,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1053.9146,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,16,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.990002,-9,-9,4,1,1,1,0,7,1,0,307.66666,-92093.258,0,0,488.98563 -12597,15468,28155,-9,28154,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.0934,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,1,0,307.66666,-92093.258,0,0,488.98563 -12597,15468,28156,-9,28154,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1018.4039,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,1,0,307.66666,-92093.258,0,0,488.98563 -12598,15469,28157,28160,-9,-9,2,1,0,39,1,0,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-5,29.212729,0,0,1,44,3,3,1,3,2,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,47.91,51.060001,5,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12598,15469,28158,-9,28157,28160,5,1,0,11,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.4843,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12598,15469,28159,-9,28157,28160,3,1,1,16,2,0,5,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.814,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12598,15469,28160,28157,-9,-9,1,1,1,44,1,0,5,0,3,-9,2,1,0,0,3,7.5099945,7.4566545,0,2,0,-9,21,0,5,28.555193,0,0,0,39,3,4,3,3,2,2019,2,2,8,0,30,24,15,1,0,3,0,5.4372287,5.4372287,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,51.060001,49,56,4,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12598,15469,28161,-9,28157,28160,7,1,0,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.5071,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12598,15469,28162,-9,28157,28160,6,1,0,7,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1157.427,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12598,15469,28163,-9,28157,28160,4,1,0,13,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.8299,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,1132.2858,24096.279,0,0,3108.4397 -12599,15470,28164,28165,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,1,2,0,5.1346378,5.2350922,1,0,-9,35,0,-15,-43.282681,0,0,0,77,2,1,3,-9,-9,2019,4,1,13,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,5.0689907,70.773781,1,49.169998,36.049999,46.599998,14.25,4,3,4,0,0,7,1,1,1607,238720.56,0,0,1283.558 -12599,15470,28165,28164,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,35,0,15,-2.2613487,0,0,0,62,2,2,3,-9,-9,2019,4,2,17,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.599998,14.25,49.169998,36.049999,5,3,4,0,0,7,1,1,1607,238720.56,0,0,1283.558 -12600,15471,28166,-9,-9,-9,1,1,0,32,3,0,2,0,1,-9,2,1,0,0,3,8.1772184,8.5850649,6.6344128,4,0,0,0,-9,0,-955.52979,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,20,16,15,1,0,-9,0,23.290522,23.290522,0,0,0,0,0,0,0,0,1,1,0,7.9132209,0,0,0,40.650002,57.360001,-9,-9,5,1,1,0,0,10,3,1,443,358448.56,0,0,3043.1677 -12600,15471,28167,-9,28166,-9,2,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1045.6479,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,1,443,358448.56,0,0,3043.1677 -12600,15471,28168,-9,28166,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-934.98035,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,443,358448.56,0,0,3043.1677 -12601,15472,28169,28170,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,5,8.7066994,8.6232128,0,2,0,-9,9,0,-2,78.951393,0,0,0,49,1,4,1,2,2,2019,1,1,7,0,38,44,15,1,0,1,0,18.471443,18.471443,0,0,0,0,0,0,0,0,1,1,0,2.250783,0,0,0,57.060001,57.759998,57.73,54.529999,6,1,1,0,0,8,5,1,619.5,626191.13,0,0,6669.3696 -12601,15472,28170,28169,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,9.4097776,9.4536104,0,2,0,-9,9,0,2,21.661274,0,0,0,47,2,5,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,40.380264,40.380264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,57.060001,57.759998,6,1,1,0,0,8,5,1,619.5,626191.13,0,0,6669.3696 -12602,15473,28171,28172,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.4399853,7.6271362,0,1,0,-9,39,0,-3,14.14947,0,0,0,58,2,4,1,3,3,2019,1,2,12,0,25,25,15,1,0,1,0,10.273845,10.273845,0,0,0,0,0,0,0,0,0,0,0,.6287781,0,0,0,51.240002,58.84,57.16,56.150002,5,1,1,0,0,9,5,1,1265,986415.06,0,0,3675.0037 -12602,15473,28172,28171,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.6780319,8.5377007,0,1,0,-9,10,0,3,169.30241,0,0,0,55,2,4,1,-9,-9,2019,1,1,9,0,52,53,15,1,0,1,0,16.005972,16.005972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.240002,58.84,6,1,1,0,0,9,5,1,1265,986415.06,0,0,3675.0037 -12602,15474,28173,-9,28171,28172,3,1,0,29,2,0,0,0,2,-9,2,1,0,0,3,7.6682844,7.6390533,0,3,0,0,0,-9,0,-1094.7825,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,1,5.7590132,5.7590132,0,0,0,0,0,0,0,0,0,0,0,1.099303,0,0,0,44.009998,54.41,-9,-9,3,1,1,0,0,9,3,1,484,72538.547,0,0,1772.5052 -12603,15475,28174,28175,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,8.377573,8.5022526,0,1,0,-9,4,0,1,83.201462,0,0,0,61,2,4,3,-9,-9,2019,2,1,10,1,40,40,15,1,0,3,0,14.749994,14.749994,0,0,0,0,0,0,0,0,0,0,0,3.2349744,0,0,0,51,49,48.869999,58.549999,5,1,1,0,0,5,4,1,394.5,517722.31,0,0,2224.0996 -12603,15475,28175,28174,-9,-9,1,1,0,61,1,0,0,0,2,-9,6,3,0,0,4,0,3.5473998,3.5061197,1,0,-9,38,0,-1,78.015297,0,0,0,62,1,3,1,2,3,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5189922,0,0,48.869999,58.549999,51,49,4,1,1,0,0,5,4,1,394.5,517722.31,0,0,2224.0996 -12604,15476,28176,-9,28178,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1122.3828,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,1,0,624.66669,-106428.83,0,0,1546.5316 -12604,15476,28177,-9,28178,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-920.98706,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,1,0,624.66669,-106428.83,0,0,1546.5316 -12604,15476,28178,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.5594,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,0,21,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,5,1,1,1,0,9,1,0,624.66669,-106428.83,0,0,1546.5316 -12605,15477,28179,28180,-9,-9,2,1,1,54,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,32,0,0,45.806583,0,0,0,54,3,4,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,51,54,7,2,3,1,1,8,3,1,344,-17266.688,0,0,757.33917 -12605,15477,28180,28179,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,7.7693081,7.7553821,0,1,0,-9,32,0,0,113.68816,0,0,0,54,3,3,3,-9,-9,2019,2,2,3,0,35,36,15,1,0,3,0,7.9017787,7.9017787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,60.290001,52.110001,7,2,3,0,0,8,3,1,344,-17266.688,0,0,757.33917 -12606,15478,28181,-9,28182,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-997.0296,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,741.5,969874.13,0,0,1983.2107 -12606,15478,28182,-9,-9,-9,1,1,0,51,2,0,2,0,2,-9,2,1,0,0,3,7.9809065,8.0337372,0,4,0,0,0,-9,0,-966.2326,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,36,28,15,1,0,-9,0,8.6025782,8.6025782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.490002,45.98,-9,-9,3,1,1,0,0,12,3,1,741.5,969874.13,0,0,1983.2107 -12607,15479,28183,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,0,2,0,6.4727683,6.9080682,3,0,0,0,-9,0,-926.89844,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,8.4630613,0,1,1,0,.27831769,6.8500624,0,0,52.880001,22.01,-9,-9,4,1,1,0,0,8,2,1,662,358675.25,0,0,880.44623 -12608,15480,28184,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,0,3,8.9666872,8.8759995,0,3,0,0,0,-9,0,-1077.1873,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,1,38,37,15,1,0,-9,0,18.908426,18.908426,0,0,0,0,0,0,0,0,0,0,0,1.9970672,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,2,5,1,57,-69383.969,0,0,1323.928 -12609,15481,28185,28186,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.9471292,9.1286936,0,1,0,-9,38,0,-1,-63.218651,0,0,0,59,2,4,1,3,3,2019,1,2,6,0,42,36,15,1,0,1,0,21.043941,21.043941,0,0,0,0,0,0,0,7,0,0,0,2.5349069,0,20.291716,3,59.310001,49.810001,57.16,56.150002,6,1,1,0,0,13,5,1,1287,692175.38,0,0,4519.9795 -12609,15481,28186,28185,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.6061602,8.5127392,0,1,0,-9,38,0,1,20.462965,0,0,0,58,2,3,1,2,-9,2019,1,1,8,0,37,37,15,1,0,1,0,16.23447,16.23447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,59.310001,49.810001,7,1,1,0,0,13,5,1,1287,692175.38,0,0,4519.9795 -12610,15482,28187,28188,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,0,4,8.2301254,8.1885128,0,1,0,-9,7,0,7,9.6278419,0,0,0,31,2,2,1,2,2,2019,1,2,0,0,38,38,15,1,0,1,0,11.614835,11.614835,0,0,0,0,0,0,0,14.5,1,1,0,5.736979,0,19.262518,1,54.200001,57.490002,32.200001,38.169998,6,1,1,0,0,13,5,1,241.5,-95756.344,0,0,3987.2432 -12610,15482,28188,28187,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,1,2,7.7866116,7.8417096,0,1,0,-9,7,0,-7,-36.731899,0,0,1,38,1,4,1,-9,-9,2019,1,1,15,4,30,31,15,1,1,1,0,10.5833,10.5833,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.200001,38.169998,54.200001,57.490002,4,1,1,0,1,13,5,1,241.5,-95756.344,0,0,3987.2432 -12611,15483,28189,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-959.44092,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,1,10,1,0,355,-55939.898,0,0,1169.7184 -12612,15484,28190,28191,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.0057254,6.1053071,1,0,-9,10,0,-4,26.24436,0,0,0,74,2,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1533465,6.0441742,0,0,57.09,43.990002,56.09,36.700001,6,1,1,0,0,2,2,1,118,725868.63,0,0,2437.4053 -12612,15484,28191,28190,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,6.0139122,6.5185308,1,0,-9,10,0,4,-38.976593,0,0,0,70,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7413538,6.5780263,0,0,56.09,36.700001,57.09,43.990002,6,1,1,0,0,2,2,1,118,725868.63,0,0,2437.4053 -12613,15485,28192,-9,-9,-9,1,1,0,43,2,0,0,0,3,-9,2,1,0,0,4,7.4913907,7.7529316,0,3,0,0,0,-9,0,-928.54822,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,30,0,15,1,0,-9,0,7.9614105,7.9614105,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,3,0,572,74467.016,0,0,1741.5981 -12613,15486,28193,-9,28192,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.0560746,7.0543056,0,3,0,0,0,-9,0,-970.49182,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,0,15,1,0,-9,1,3.4993923,3.4993923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,4,1,1,0,0,12,2,0,150,-2342.9246,0,0,669.35834 -12613,15487,28194,-9,28192,-9,3,1,0,19,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1085.2561,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,31.73,-9,-9,5,1,1,1,0,12,1,0,719,-165752.91,0,0,1906.3422 -12614,15488,28195,-9,28197,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-957.94574,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,270.66666,88348.086,0,0,1524.0807 -12614,15488,28196,-9,28197,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-933.29681,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,270.66666,88348.086,0,0,1524.0807 -12614,15488,28197,-9,-9,-9,1,1,0,44,2,0,2,0,1,-9,2,1,0,0,5,8.0724525,8.1307926,0,4,0,0,0,-9,0,-942.67712,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,35,36,15,1,1,-9,0,8.6266499,8.6266499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.919998,61.040001,-9,-9,3,1,1,0,0,2,3,0,270.66666,88348.086,0,0,1524.0807 -12615,15489,28198,-9,-9,-9,1,1,1,93,3,0,0,0,2,-9,4,3,0,0,4,0,7.0874233,6.5882788,3,0,0,0,-9,0,-857.62885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,.23110688,0,0,0,0,0,0,1,1,0,5.986392,6.6658516,0,0,59.490002,44.110001,-9,-9,6,1,1,0,0,11,2,1,1240,205280.81,0,0,779.20697 -12616,15490,28199,-9,-9,-9,3,1,0,26,2,0,3,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-986.94281,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.419998,59.09,-9,-9,6,1,1,0,1,8,1,0,722,-50866.242,0,0,1706.9647 -12617,15491,28200,28201,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.6708288,7.4650679,0,1,0,-9,25,0,6,118.85782,0,0,0,49,2,3,1,2,2,2019,1,2,11,0,26,24,15,1,0,1,0,8.3197012,8.3197012,0,0,0,0,0,0,0,5.48,0,0,0,6.4549141,0,.38759962,3,59.630001,41.439999,46.310001,51.529999,5,1,1,0,0,5,5,1,549.5,282646.63,0,0,3359.5669 -12617,15491,28201,28200,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.8050547,8.8019457,0,1,0,-9,10,0,-6,7.9588547,0,0,0,55,2,3,1,-9,-9,2019,1,1,12,2,50,53,15,1,0,1,0,17.541306,17.541306,0,0,0,0,0,0,0,0,0,0,0,6.3719616,0,0,0,46.310001,51.529999,59.630001,41.439999,6,1,1,0,0,5,5,1,549.5,282646.63,0,0,3359.5669 -12618,15492,28202,28203,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,2,0,3.456471,3.5367494,1,0,-9,7,0,7,-26.209726,0,0,0,59,2,1,3,3,3,2019,4,2,15,4,0,52,15,4,1,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7845566,3.2884047,0,0,41.880001,28.1,39.43,33.509998,6,1,1,0,0,5,1,0,847.5,-85183.703,0,0,1374.4388 -12618,15492,28203,28202,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,0,1,0,0,0,1,0,-9,7,0,-7,83.479454,0,0,0,66,3,2,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.43,33.509998,41.880001,28.1,6,1,1,0,0,5,1,0,847.5,-85183.703,0,0,1374.4388 -12619,15493,28204,-9,-9,-9,1,1,0,47,3,0,0,0,1,-9,2,1,0,0,4,9.5925007,9.4961233,0,3,0,0,0,-9,0,-974.5517,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,38,38,15,1,0,-9,0,40.346687,40.346687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.120001,63.98,-9,-9,6,1,1,0,0,12,5,1,159,803374.94,0,0,3908.4739 -12620,15494,28205,28206,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,33,0,1,7.0324755,0,0,0,57,2,4,1,3,2,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.352437,0,0,0,57.060001,57.759998,43.669998,61.060001,6,1,1,0,0,9,4,1,455.5,2388080,0,0,1318.8501 -12620,15494,28206,28205,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,8.4057531,8.502759,0,1,0,-9,33,0,-1,98.156395,0,0,0,58,1,5,3,2,2,2019,2,1,17,6,25,25,15,1,1,4,0,21.615234,21.615234,0,0,0,0,0,0,0,0,0,0,0,1.8355664,0,0,0,43.669998,61.060001,57.060001,57.759998,5,1,1,0,0,9,4,1,455.5,2388080,0,0,1318.8501 -12620,15495,28207,-9,28206,28205,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.6331429,7.6864324,0,3,0,0,0,-9,0,-1045.2996,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,1,38,0,15,1,0,-9,1,7.5774212,7.5774212,0,0,0,0,0,0,0,0,0,0,0,3.9517665,0,0,0,47.630001,43.040001,-9,-9,6,1,1,0,1,9,3,1,282,-29081.959,0,0,1855.1219 -12621,15496,28208,-9,28209,28210,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.2859,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,5,1,1301,680875.38,0,0,4835.8521 -12621,15496,28209,28210,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,0,4,7.8494439,7.9129629,0,2,0,-9,8,0,0,-5.8968124,0,0,1,46,1,4,1,2,2,2019,1,2,6,0,23,23,15,1,0,1,0,12.316409,12.316409,0,0,0,0,0,0,0,0,0,0,0,3.2241249,0,0,0,57.16,56.150002,35.860001,64.550003,2,1,1,0,0,2,5,1,1301,680875.38,0,0,4835.8521 -12621,15496,28210,28209,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,8.9059238,9.2500639,0,2,0,-9,8,0,9,59.412586,0,0,0,37,2,4,1,-9,-9,2019,1,1,21,10,43,40,15,1,1,1,0,30.147463,30.147463,0,0,0,0,0,0,0,0,0,0,0,2.151159,0,0,0,35.860001,64.550003,57.16,56.150002,6,1,1,0,0,2,5,1,1301,680875.38,0,0,4835.8521 -12622,15497,28211,28212,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,1,4,0,6.5088158,6.7272458,1,0,-9,48,0,-4,-136.54166,0,0,0,70,1,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.1787686,6.690495,8.936635,2,60.73,35.369999,52,47,5,2,3,0,0,8,4,1,755.5,1156830,0,0,3764.313 -12622,15497,28212,28211,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,8.3367224,8.529356,1,0,-9,8,0,4,-4.0445251,0,0,0,66,1,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4690418,0,0,52,47,60.73,35.369999,5,2,3,0,0,8,4,1,755.5,1156830,0,0,3764.313 -12623,15498,28213,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,0,5,7.7895036,7.8629327,0,4,0,0,0,-9,0,-892.70239,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,65,45,15,1,0,-9,0,5.4033327,5.4033327,0,0,0,0,0,0,0,2,1,1,0,0,0,3.9497595,3,57.060001,57.759998,-9,-9,7,1,1,0,0,10,3,0,243,20680.758,0,0,798.28357 -12623,15498,28214,-9,28213,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-982.1665,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,-9,-9,7,1,1,0,0,10,3,0,243,20680.758,0,0,798.28357 -12624,15499,28215,28216,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.1381397,8.243618,0,1,0,1,1,-9,2,15.645453,0,1,1,24,1,5,1,-9,-9,2019,1,2,19,7,38,37,15,1,1,1,0,9.5857077,9.5857077,0,0,0,0,0,0,0,0,0,0,0,.56564373,0,0,0,48.869999,58.549999,51.73,58.82,6,1,1,0,0,10,5,1,753.5,360181,0,0,3820.1814 -12624,15499,28216,28215,-9,-9,2,1,1,24,1,0,0,0,1,-9,2,1,0,0,5,8.3736553,8.4376144,0,1,0,-9,1,-9,-2,-83.847984,-9,1,0,26,1,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,12.088617,12.088617,0,0,0,0,0,0,0,0,0,0,0,.49936226,0,0,0,51.73,58.82,48.869999,58.549999,6,1,1,0,0,10,5,1,753.5,360181,0,0,3820.1814 -12625,15500,28217,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,4,0,7.9808078,7.5992384,3,0,0,0,-9,0,-1013.5456,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4319482,7.9375219,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,6,3,1,211,706288.06,0,0,2169.186 -12626,15501,28218,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-943.75171,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,36,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0588694,0,2.9623492,3,59.48,46.970001,-9,-9,7,1,1,0,0,11,1,1,240,138461.69,0,0,488.4787 -12627,15502,28219,-9,-9,-9,3,1,1,42,2,0,0,0,2,-9,2,1,0,0,3,8.1296253,8.2463255,0,3,0,0,0,-9,0,-1045.7821,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,37,0,15,1,0,-9,1,10.242246,10.242246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,5,3,4,0,0,8,4,1,3805,105962.22,0,0,1956.222 -12628,15503,28220,-9,28221,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-987.5567,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,1,471.5,68588.859,0,0,1868.8225 -12628,15503,28221,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,2,1,0,0,3,7.9167075,8.0309277,0,4,0,0,0,-9,0,-1006.0145,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,6,31,15,1,0,-9,0,57.379818,57.379818,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.209999,51.34,-9,-9,4,1,1,0,0,6,3,1,471.5,68588.859,0,0,1868.8225 -12629,15504,28222,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,4,8.5962486,8.3188925,0,3,0,0,0,-9,0,-956.82886,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,0,18.162231,18.162231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,2,1,1,0,0,4,5,1,589,517597.44,0,0,1671.0476 -12630,15505,28223,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,0,5,8.9406519,8.8568592,0,3,0,0,0,-9,0,-942.35583,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,50,48,15,1,0,-9,0,18.228725,18.228725,0,0,0,0,0,0,0,0,1,1,0,1.528393,0,0,0,39.849998,61.59,-9,-9,6,2,3,0,0,8,5,1,806,333211.22,0,0,3010.2905 -12631,15506,28224,-9,28226,28225,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.4155,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,3,1,767.79999,132521.72,0,0,2853.7664 -12631,15506,28225,28226,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,8.181756,8.4278555,0,2,0,-9,6,0,3,-66.635178,0,0,0,39,2,3,1,3,3,2019,1,2,8,0,39,35,15,1,0,1,0,11.578468,11.578468,0,0,0,0,0,0,0,0,1,1,0,5.4459834,0,0,0,45.259998,56.189999,35.130001,54.360001,5,2,3,0,0,6,3,1,767.79999,132521.72,0,0,2853.7664 -12631,15506,28226,28225,-9,-9,2,1,0,39,1,0,3,0,2,-9,2,1,0,0,3,7.7667122,7.1251073,0,2,0,-9,6,0,-3,-13.211349,0,0,1,42,2,4,1,3,3,2019,1,1,11,2,23,22,15,1,0,1,0,8.4297132,8.4297132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.130001,54.360001,45.259998,56.189999,6,2,3,0,0,6,3,1,767.79999,132521.72,0,0,2853.7664 -12631,15506,28227,-9,28226,28225,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-993.25629,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,6,3,1,767.79999,132521.72,0,0,2853.7664 -12631,15506,28228,-9,28226,28225,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.07703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,3,1,767.79999,132521.72,0,0,2853.7664 -12632,15507,28229,-9,-9,-9,1,1,0,26,2,1,2,0,2,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1047.0695,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.880001,38.459999,-9,-9,4,1,1,1,0,6,1,0,1411,20373.428,0,0,1115.2814 -12632,15507,28230,-9,28229,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-919.39563,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,1,0,1411,20373.428,0,0,1115.2814 -12632,15507,28231,-9,28229,-9,2,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-992.1142,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,1,0,1411,20373.428,0,0,1115.2814 -12633,15508,28232,-9,28233,28234,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-855.88293,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,11,5,1,339.75,3402338.3,0,0,5064.2173 -12633,15508,28233,28234,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.8092022,8.7818708,0,2,0,-9,8,0,0,73.191666,0,0,0,50,1,4,1,2,1,2019,1,1,11,0,41,40,15,1,0,1,0,15.994058,15.994058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,54.200001,57.490002,6,1,1,0,0,11,5,1,339.75,3402338.3,0,0,5064.2173 -12633,15508,28234,28233,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,8.8767023,9.6070204,0,2,0,-9,8,0,0,31.891264,0,0,0,50,1,4,1,2,1,2019,1,2,11,0,41,45,15,1,0,1,0,36.931095,36.931095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,48.279999,60.18,6,1,1,0,0,11,5,1,339.75,3402338.3,0,0,5064.2173 -12633,15508,28235,-9,28233,28234,3,1,1,17,2,0,1,1,2,0,7,2,0,0,4,6.7519741,6.8400807,0,2,0,0,0,-9,0,-1015.5589,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.200001,59.970001,-9,-9,6,1,1,0,0,11,5,1,339.75,3402338.3,0,0,5064.2173 -12634,15509,28236,28237,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,0,4,9.5509748,9.0340796,0,1,0,-9,14,0,-1,-63.694244,0,0,0,42,1,3,3,1,1,2019,2,2,8,0,52,52,15,1,0,3,0,28.481014,28.481014,0,0,0,0,0,0,0,0,0,0,0,5.2049279,0,0,0,57.16,56.150002,60.290001,52.110001,6,1,1,0,0,9,5,0,731.5,305657.94,0,0,3794.665 -12634,15509,28237,28236,-9,-9,2,1,0,42,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,12,0,1,-24.032324,0,0,1,41,1,4,1,3,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5727341,0,0,0,60.290001,52.110001,57.16,56.150002,6,2,3,1,0,9,5,0,731.5,305657.94,0,0,3794.665 -12635,15510,28238,-9,28240,28239,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.0919,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,2,0,653.25,-74876,0,0,1836.3916 -12635,15510,28239,28240,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,7.4876633,7.58675,0,2,0,-9,6,0,12,39.228405,0,0,0,30,2,4,3,-9,-9,2019,2,1,10,1,30,25,15,1,0,3,0,6.8747129,6.8747129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.900002,38.700001,44.509998,54.540001,4,1,1,0,0,10,2,0,653.25,-74876,0,0,1836.3916 -12635,15510,28240,28239,-9,-9,1,1,0,30,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-12,32.357944,0,0,1,42,2,3,1,3,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.509998,54.540001,56.900002,38.700001,6,1,1,0,0,10,2,0,653.25,-74876,0,0,1836.3916 -12635,15510,28241,-9,28240,28239,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.90607,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,2,0,653.25,-74876,0,0,1836.3916 -12636,15511,28242,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,4,8.3826103,8.3385973,4.0726056,3,0,0,0,-9,0,-990.41992,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,45,52,15,1,0,-9,0,12.537378,12.537378,0,0,0,0,0,0,0,0,1,1,0,3.7559178,3.8889959,0,0,59.220001,33.290001,-9,-9,6,1,1,0,0,9,5,1,1045,802717.81,0,0,1784.6365 -12637,15512,28243,28245,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.2948751,8.1597147,0,2,0,-9,6,0,11,-161.4879,0,0,0,41,2,4,1,3,3,2019,1,1,12,2,42,56,15,1,0,1,0,11.268961,11.268961,0,0,0,0,0,0,0,0,1,1,0,.51735234,0,0,0,52.09,50.400002,35.880001,60.919998,6,1,1,0,0,11,4,1,754.66669,828745.88,0,0,2968.9514 -12637,15512,28244,-9,28245,28243,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1148.7867,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,4,1,754.66669,828745.88,0,0,2968.9514 -12637,15512,28245,28243,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.0219936,8.1027718,0,2,0,-9,6,0,-11,-29.609037,0,0,1,52,2,4,1,2,2,2019,1,2,10,0,39,39,15,1,0,1,0,10.963745,10.963745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.880001,60.919998,52.09,50.400002,1,1,1,0,0,11,4,1,754.66669,828745.88,0,0,2968.9514 -12638,15513,28246,28247,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,2,8.5437565,8.5514727,0,1,0,-9,20,0,7,-2.8977652,0,0,0,43,1,4,3,2,1,2019,2,2,14,2,38,41,15,1,0,3,0,13.232869,13.232869,0,0,0,0,0,0,0,0,1,1,0,5.4867916,0,0,0,47.560001,48.93,51.240002,58.84,4,2,3,0,0,10,4,1,631,578809.88,0,0,2640.8459 -12638,15513,28247,28246,-9,-9,2,1,1,43,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,20,0,-7,-6.5344276,0,0,0,50,1,2,1,1,1,2019,3,1,16,5,0,43,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.97984034,0,0,0,51.240002,58.84,47.560001,48.93,5,1,1,1,0,10,4,1,631,578809.88,0,0,2640.8459 -12639,15514,28248,28249,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,37,0,1,97.488785,0,0,0,81,3,3,3,3,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,16.199957,0,0,0,0,0,1,1,0,0,0,0,0,31.639999,35.619999,50.009998,33.75,7,1,1,0,0,7,2,1,113.5,809930.25,0,0,1206.1163 -12639,15514,28249,28248,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,1,3,0,5.7116022,5.7267599,1,0,-9,37,0,-1,-25.691788,0,0,0,82,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.6726527,5.3916235,28.582554,1,50.009998,33.75,31.639999,35.619999,6,1,1,0,0,7,2,1,113.5,809930.25,0,0,1206.1163 -12640,15515,28250,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,7.5661345,7.5791683,3,0,0,0,-9,0,-1032.7076,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,127.26781,0,0,0,0,1187.2883,0,1,1,0,0,7.7761683,0,0,66.129997,18.360001,-9,-9,7,1,1,0,0,5,3,1,1082,322117.5,0,0,1093.9277 -12641,15516,28251,-9,-9,-9,1,1,0,55,2,0,1,0,3,-9,2,1,0,1,4,7.2163758,7.0002007,5.5983682,4,0,0,0,-9,0,-882.3808,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,22,21,15,1,0,-9,0,7.8181167,7.8181167,0,0,0,0,0,0,0,2,1,1,0,5.4195833,0,6.2796679,3,45.91,59.889999,-9,-9,2,1,1,0,0,4,2,1,856,172370.02,0,0,1988.9155 -12641,15516,28252,-9,28251,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-890.81964,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,4,2,1,856,172370.02,0,0,1988.9155 -12642,15517,28253,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,1,0,8.3830414,8.3547192,3,0,0,0,-9,0,-862.62177,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.4443979,8.2423878,0,0,35.720001,36.82,-9,-9,5,1,1,0,0,11,4,1,129,703146.88,0,0,3782.863 -12643,15518,28254,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,0,3,7.8465881,7.7202086,0,3,0,0,0,-9,0,-957.20563,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,39,0,15,1,0,-9,0,8.0881262,8.0881262,0,0,0,0,0,0,0,0,0,0,0,2.6091235,0,0,0,58.470001,44.689999,-9,-9,6,1,1,0,0,6,3,0,553,105990.13,0,0,1674.3687 -12644,15519,28255,-9,-9,-9,1,1,0,23,2,0,1,0,1,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1067.0885,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,16,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,3,4,1,0,8,1,0,109.5,112104,0,0,1697.121 -12644,15519,28256,-9,28255,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1089.9585,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,1,0,109.5,112104,0,0,1697.121 -12645,15520,28257,28258,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,4.5924211,4.8961663,1,0,-9,5,0,1,-2.3400555,0,0,0,67,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2183261,4.8245697,0,0,53,47,50,46,5,1,1,0,0,6,1,1,309.5,4847.4648,0,0,1879.4507 -12645,15520,28258,28257,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-1,45.212181,0,0,0,68,3,3,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,53,47,5,1,1,0,0,6,1,1,309.5,4847.4648,0,0,1879.4507 -12646,15521,28259,-9,-9,-9,1,1,1,23,2,0,0,1,1,0,7,2,0,0,2,5.2222381,5.3530102,0,3,0,0,0,-9,0,-1033.7267,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.599998,55.040001,-9,-9,6,1,1,0,0,12,2,0,1789,107791.95,0,0,2520.8618 -12647,15522,28260,-9,-9,-9,1,1,1,22,2,0,0,0,2,0,7,2,0,1,1,0,0,0,3,0,0,0,-9,0,-1083.6709,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.7034321,3,27.639999,25.41,-9,-9,2,4,2,0,0,8,1,0,230,25455.885,0,0,2376.5049 -12648,15523,28261,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,3,0,7.1562777,6.5581255,3,0,0,0,-9,0,-1051.3459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0749006,0,0,53.630001,33.27,-9,-9,1,1,1,0,0,4,2,1,1657,243507.95,0,0,671.83527 -12649,15524,28262,-9,28264,28263,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1177.9634,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,12,5,1,851.5,1105842.3,0,0,5420.6694 -12649,15524,28263,28264,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,3,8.9973555,8.951169,0,2,0,-9,9,0,4,29.08073,0,0,0,47,1,3,1,2,1,2019,1,1,12,0,38,40,15,1,0,1,0,28.797447,28.797447,0,0,0,0,0,0,0,0,1,1,0,7.5167789,0,0,0,58.32,50.220001,44.189999,58.009998,6,1,1,0,0,12,5,1,851.5,1105842.3,0,0,5420.6694 -12649,15524,28264,28263,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.8780289,8.6929388,0,2,0,-9,9,0,-4,-109.45084,0,0,0,51,1,3,1,2,2,2019,1,2,19,8,45,40,15,1,1,1,0,13.658613,13.658613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,58.009998,58.32,50.220001,6,1,1,0,0,12,5,1,851.5,1105842.3,0,0,5420.6694 -12649,15524,28265,-9,28264,28263,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.93866,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,5,1,851.5,1105842.3,0,0,5420.6694 -12650,15525,28266,28267,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.0939903,6.9406967,0,1,0,-9,15,0,-4,-15.158433,0,0,0,54,1,3,1,3,3,2019,1,2,3,0,20,27,15,1,0,1,0,5.6008039,5.6008039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.369999,55.41,52.990002,51.279999,2,1,1,0,0,7,5,1,3901.5,739767.75,0,0,3583.5903 -12650,15525,28267,28266,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,3,9.3707018,8.85357,0,1,0,-9,15,0,4,11.136685,0,0,0,50,2,3,1,3,2,2019,1,1,9,0,35,40,15,1,0,1,0,22.491152,22.491152,0,0,0,0,0,0,0,2,0,0,0,1.3568666,0,0,3,52.990002,51.279999,47.369999,55.41,5,1,1,0,0,7,5,1,3901.5,739767.75,0,0,3583.5903 -12651,15526,28268,-9,28269,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,0,3,8.146286,7.6582236,0,3,0,0,0,-9,0,-956.40259,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,1,8.5742655,8.5742655,0,0,0,0,0,0,0,71.5,1,1,0,2.4495671,0,71.87281,3,59.040001,48.599998,-9,-9,2,1,1,0,0,6,4,0,950,148651.53,0,0,531.44269 -12651,15527,28269,-9,-9,-9,2,1,0,96,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-972.9895,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,42,-9,-9,6,1,1,0,0,6,1,0,295,0,0,0,2560.6694 -12652,15528,28270,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,4,8.3754044,8.4055777,0,3,0,-9,0,-9,0,-1089.0333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,0,10.886234,10.886234,0,0,0,0,0,0,0,0,1,1,0,4.7567015,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,7,4,0,354,-428579.47,0,0,1753.7357 -12653,15529,28271,28275,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,0,4,7.7791767,7.9603806,0,2,0,-9,12,0,0,-138.85759,0,0,1,36,1,4,1,2,2,2019,1,2,12,1,15,15,15,1,0,1,0,14.681736,14.681736,0,0,0,0,0,0,0,2,1,1,0,1.1157844,0,6.5870695,3,48.869999,58.549999,55.189999,54.259998,6,1,1,0,0,10,4,0,1394.4,538971.19,0,0,3819.3865 -12653,15529,28272,-9,28271,28275,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.1817,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,1394.4,538971.19,0,0,3819.3865 -12653,15529,28273,-9,28271,28275,4,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.92419,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,0,1394.4,538971.19,0,0,3819.3865 -12653,15529,28274,-9,28271,28275,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.8977,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,4,0,1394.4,538971.19,0,0,3819.3865 -12653,15529,28275,28271,-9,-9,2,1,1,36,1,1,3,0,1,-9,2,1,0,0,4,9.2231064,9.0009489,0,2,0,-9,12,0,0,-49.235802,0,0,0,36,1,4,1,2,2,2019,1,1,7,0,60,12,15,1,0,1,0,18.837336,18.837336,0,0,0,0,0,0,0,0,1,1,0,7.4084468,0,0,0,55.189999,54.259998,48.869999,58.549999,6,1,1,0,0,10,4,0,1394.4,538971.19,0,0,3819.3865 -12654,15530,28276,28277,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.0191455,7.1845446,1,0,-9,7,0,3,25.165541,0,0,0,62,2,4,1,2,1,2019,3,2,0,0,0,34,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.3417621,7.2404542,5.2564735,3,41.23,59.349998,59.150002,49.669998,6,1,1,0,0,7,4,1,2366.5,1297175,0,0,3487.9988 -12654,15530,28277,28276,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,4,8.0658541,8.3202763,6.638526,1,0,-9,7,0,-3,-24.54917,0,0,0,65,2,3,3,3,3,2019,2,1,9,0,50,49,15,1,0,4,0,6.6947861,6.6947861,0,0,0,0,0,0,0,0,1,1,0,6.9885325,7.013,0,0,59.150002,49.669998,41.23,59.349998,6,1,1,0,0,7,4,1,2366.5,1297175,0,0,3487.9988 -12655,15531,28278,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,4,8.1561556,8.2827511,6.424891,3,0,0,0,-9,0,-966.5871,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,39,40,15,1,0,-9,0,14.033834,14.033834,0,0,0,0,0,0,0,0,1,1,0,0,6.6487436,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,9,5,1,1251,282834.13,0,0,2488.3611 -12656,15532,28279,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,4,0,6.1134658,6.3867612,3,0,0,0,-9,0,-924.83136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1809716,4.5877337,0,0,64.860001,44.650002,-9,-9,6,1,1,0,0,11,2,1,591,540400.81,0,0,920.94189 -12657,15533,28280,-9,28281,28282,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.75848,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,710.66669,-24317.453,0,0,2814.5144 -12657,15533,28281,28282,-9,-9,2,1,0,40,1,0,1,0,3,-9,2,1,0,0,4,7.8880334,7.7770176,0,2,0,-9,17,0,-2,39.158951,0,0,1,42,2,3,1,2,2,2019,1,1,12,0,40,40,15,1,0,1,0,6.1406474,6.1406474,0,0,0,0,0,0,0,86,1,1,0,0,0,125.92013,3,51.220001,39.959999,55.099998,28.43,6,1,1,0,0,13,4,1,710.66669,-24317.453,0,0,2814.5144 -12657,15533,28282,28281,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,8.5141659,8.7154455,0,2,0,-9,17,0,2,23.950808,0,0,0,40,3,4,1,2,2,2019,1,2,12,0,56,46,15,1,0,1,0,8.9986525,8.9986525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.099998,28.43,51.220001,39.959999,5,1,1,0,0,13,4,1,710.66669,-24317.453,0,0,2814.5144 -12658,15534,28283,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-931.76178,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,26,-9,-9,3,1,1,0,0,10,1,0,179,-5064.4165,0,0,1210.5537 -12659,15535,28284,-9,28285,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-962.0813,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,2,2,0,1656,45048.355,0,0,1611.6571 -12659,15535,28285,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,2,1,0,0,4,7.9143944,7.7196159,0,4,0,-9,0,-9,0,-921.47662,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,1,0,22,0,15,1,0,-9,0,12.76708,12.76708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.93,50.18,-9,-9,6,3,4,0,0,2,2,0,1656,45048.355,0,0,1611.6571 -12660,15536,28286,-9,28287,28288,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-972.62469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,11,3,1,272.5,204132.06,0,0,2552.9705 -12660,15536,28287,28288,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,5,8.4380198,8.3595085,0,2,0,-9,17,0,-11,109.57249,-9,0,1,53,2,3,3,3,3,2019,2,2,7,0,41,0,15,1,0,3,0,13.222708,13.222708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,44.700001,53.68,4,1,1,0,0,11,3,1,272.5,204132.06,0,0,2552.9705 -12660,15536,28288,28287,-9,-9,2,1,1,53,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,17,0,11,-174.92184,0,0,0,42,2,5,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.700001,53.68,57.060001,57.759998,4,1,1,0,0,11,3,1,272.5,204132.06,0,0,2552.9705 -12660,15536,28289,-9,28287,28288,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.4319,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,11,3,1,272.5,204132.06,0,0,2552.9705 -12661,15537,28290,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,0,3,7.9496474,7.9808402,0,3,0,0,0,-9,0,-1020.5317,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,37,41,15,1,0,-9,0,11.666103,11.666103,0,0,0,0,0,0,0,0,0,0,0,5.5570512,0,0,0,32.310001,56.700001,-9,-9,4,1,1,0,0,12,4,1,586,176887.13,0,0,1589.7173 -12662,15538,28291,28292,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,6,0,3,0,0,0,0,70,2,2,3,3,-9,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.530758,1,40.09,33.419998,42.990002,33.439999,3,1,1,0,0,5,1,1,354,217133.14,0,0,910.50269 -12662,15538,28292,28291,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,6,0,-3,0,0,0,0,73,3,2,3,-9,-9,2019,4,1,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.990002,33.439999,40.09,33.419998,6,1,1,0,0,5,1,1,354,217133.14,0,0,910.50269 -12663,15539,28293,28294,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,0,1,7.6399484,7.6657887,0,2,0,-9,9,0,-2,-135.54222,0,0,1,41,2,1,1,2,2,2019,1,2,35,12,38,26,15,1,1,1,0,7.9120641,7.9120641,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.040562,3,16.110001,37.759998,52.599998,19.450001,3,1,1,0,1,4,4,0,537,89150.742,0,0,2637.7722 -12663,15539,28294,28293,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,1,1,8.4170437,8.3869295,0,2,0,-9,9,0,2,97.786682,0,0,0,39,2,1,1,2,1,2019,1,1,12,3,38,43,15,1,0,1,0,14.181275,14.181275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,19.450001,16.110001,37.759998,6,1,1,0,1,4,4,0,537,89150.742,0,0,2637.7722 -12663,15539,28295,-9,28293,28294,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.0503,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,0,537,89150.742,0,0,2637.7722 -12664,15540,28296,28297,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,0,64.626366,0,0,0,82,2,3,3,3,3,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.45204,1,54.369999,54.799999,54,45,5,1,1,0,0,6,2,0,1599.5,545255.75,0,0,1607.9646 -12664,15540,28297,28296,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,3,0,6.7829671,6.4834867,1,0,-9,50,0,9,31.427311,0,0,0,73,2,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6128926,0,0,54,45,54.369999,54.799999,6,1,1,0,0,6,2,0,1599.5,545255.75,0,0,1607.9646 -12665,15541,28298,28299,-9,-9,2,1,0,36,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,4,0,-5,0,0,0,1,41,1,4,1,-9,-9,2019,3,1,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.562243,0,0,0,46.630001,59.720001,47.150002,55.389999,6,1,1,0,0,11,1,1,342,247461.5,0,0,-698.41699 -12665,15541,28299,28298,-9,-9,1,1,1,41,1,0,0,0,1,-9,1,1,0,0,4,0,0,0,1,0,-9,4,0,5,0,0,0,0,36,2,4,3,2,2,2019,2,2,17,6,30,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5012908,0,0,0,47.150002,55.389999,46.630001,59.720001,5,1,1,0,0,11,1,1,342,247461.5,0,0,-698.41699 -12666,15542,28300,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.7263923,7.7797623,0,3,0,0,0,-9,0,-991.82867,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,27,10,40,0,15,1,1,-9,0,7.6329107,7.6329107,0,0,0,0,0,0,0,2,0,0,0,0,0,7.2458053,3,26.15,61.16,-9,-9,4,1,1,0,0,5,3,0,168,45277.371,0,0,753.80157 -12667,15543,28301,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,3,0,7.7073855,7.3658733,3,0,0,0,-9,0,-1141.3207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,7,0,0,15,4,1,-9,0,0,0,1,4.2443676,0,0,1.9900174,7.8956356,34.093266,0,1,1,0,2.556695,7.1936698,0,0,52.16,26.139999,-9,-9,6,1,1,0,0,10,3,1,299,716306.56,0,0,2614.0657 -12668,15544,28302,28303,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,0,4,8.0669336,8.5157871,0,1,0,-9,5,0,0,-45.55209,0,0,1,42,2,3,1,2,3,2019,1,2,19,7,50,60,15,1,1,1,0,8.011343,8.011343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.790001,57.130001,56.07,49.950001,5,1,1,0,0,9,5,1,966,203215.11,0,0,4478.4854 -12668,15544,28303,28302,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,3,9.1796408,8.9856548,0,1,0,-9,5,0,9,.18365383,0,0,0,33,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,23.101566,23.101566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.07,49.950001,25.790001,57.130001,6,1,1,0,0,9,5,1,966,203215.11,0,0,4478.4854 -12669,15545,28304,28305,-9,-9,1,1,1,83,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,5,0,17,0,0,0,0,66,3,1,3,3,3,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,1,14.1159,20.163807,0,0,0,0,0,1,1,0,0,0,0,0,20.969999,24.530001,20.73,25.799999,2,2,3,0,1,6,1,1,627.5,160872.58,0,0,1839.4917 -12669,15545,28305,28304,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,5,0,-17,0,0,0,0,83,3,1,3,3,3,2019,4,1,17,5,0,0,15,4,1,3,0,0,0,1,0,0,0,0,8.1537695,0,14.5,1,1,0,0,0,14.462088,1,20.73,25.799999,20.969999,24.530001,2,2,3,0,1,6,1,1,627.5,160872.58,0,0,1839.4917 -12669,15546,28306,-9,-9,-9,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,8.0242929,8.141119,0,3,0,0,0,-9,0,-1081.1959,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,35,44,15,1,0,-9,0,8.9570999,8.9570999,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,45.150002,57.459999,-9,-9,6,2,3,0,0,6,3,1,409,157356.19,0,0,539.85559 -12670,15547,28307,28308,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,6.7075186,7.3162174,6.8012409,1,0,-9,8,0,-10,-70.456863,0,0,0,66,2,4,3,3,3,2019,2,1,6,0,12,12,15,1,0,4,0,8.7674875,8.7674875,0,0,0,0,0,0,0,14.5,1,1,0,7.9821286,6.8813462,18.473797,3,57.16,56.150002,56.919998,49.389999,6,1,1,0,0,2,2,1,661.5,652745.88,0,0,3200.7139 -12670,15547,28308,28307,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,34,0,10,16.336027,0,0,0,56,1,4,1,2,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4253998,0,21.965895,3,56.919998,49.389999,57.16,56.150002,6,1,1,0,0,2,2,1,661.5,652745.88,0,0,3200.7139 -12670,15548,28309,-9,28307,28308,3,1,0,29,2,0,0,0,3,-9,97,3,0,1,5,0,0,0,3,0,0,0,-9,0,-987.58411,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.25,51.700001,-9,-9,7,1,1,0,0,2,1,1,112,26761.764,0,0,819.85535 -12671,15549,28310,28311,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,6.4158812,6.7175751,1,0,-9,51,0,3,-10.184911,0,0,0,70,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3817992,6.6257811,0,0,57.16,56.150002,61.68,26.01,7,1,1,0,0,10,2,1,1495.5,125555.94,0,0,1894.7349 -12671,15549,28311,28310,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,51,0,-3,.28439078,0,0,0,73,3,4,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,18.348232,7.3017111,0,0,0,2,1,1,0,6.0303521,0,7.9592304,3,61.68,26.01,57.16,56.150002,6,1,1,0,0,10,2,1,1495.5,125555.94,0,0,1894.7349 -12672,15550,28312,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1098.698,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.191092,3,34.099998,49.009998,-9,-9,6,1,1,1,0,10,1,0,406,75900.289,0,0,-244.5343 -12673,15551,28313,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,2,0,5.0830102,5.1916099,3,0,0,0,-9,0,-1067.3972,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1502066,0,0,0,38.77,40.419998,-9,-9,5,1,1,0,0,5,2,1,621,20095.291,0,0,252.74898 -12673,15552,28314,-9,28313,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,0,4,7.8852692,7.88868,6.3728318,3,0,0,0,-9,0,-991.13269,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,37,35,15,1,0,-9,1,8.9266386,8.9266386,0,0,0,0,0,0,0,0,1,1,0,0,6.7024159,0,0,52,55,-9,-9,6,1,1,0,0,5,4,1,476,74586.742,0,0,2633.3123 -12674,15553,28315,28316,-9,-9,1,1,1,50,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,25,0,3,0,0,0,0,47,2,2,3,-9,2,2019,4,2,16,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.6055589,3,40.25,15.6,36.93,45.740002,4,1,1,0,0,7,1,0,272.5,-20072.275,0,0,1434.0679 -12674,15553,28316,28315,-9,-9,2,1,0,47,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,25,0,-3,0,0,0,0,50,2,1,3,2,2,2019,4,1,12,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,109.30465,2,36.93,45.740002,40.25,15.6,6,1,1,1,1,7,1,0,272.5,-20072.275,0,0,1434.0679 -12674,15554,28317,-9,28316,28315,3,1,0,20,2,0,0,0,2,1,2,1,0,1,4,6.9053493,6.8035789,0,3,0,0,0,-9,0,-943.34088,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,40,0,15,1,0,-9,1,3.1670084,3.1670084,0,0,0,0,0,0,0,7,1,1,0,0,0,5.6955013,3,54.740002,57.220001,-9,-9,6,1,1,0,0,7,2,0,450,213315.42,0,0,1586.1451 -12675,15555,28318,28321,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.5854301,8.7013683,0,2,0,-9,6,0,6,-39.068714,0,0,0,40,2,5,1,2,2,2019,1,2,10,0,39,59,15,1,0,1,0,14.526999,14.526999,0,0,0,0,0,0,0,0,1,1,0,7.0285764,0,0,0,48.869999,58.549999,59.43,58.049999,5,1,1,0,0,10,4,1,710.5,195441.25,0,0,3706.3157 -12675,15555,28319,-9,28321,28318,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.2429,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,710.5,195441.25,0,0,3706.3157 -12675,15555,28320,-9,28321,28318,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1102.4486,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,10,4,1,710.5,195441.25,0,0,3706.3157 -12675,15555,28321,28318,-9,-9,2,1,0,40,1,0,2,0,2,-9,1,1,0,0,5,7.2747717,7.4187608,0,2,0,-9,6,0,-6,109.85456,0,0,1,46,2,4,1,2,2,2019,1,1,6,0,25,30,15,1,0,1,0,8.0981541,8.0981541,0,0,0,0,0,0,0,0,1,1,0,5.3276906,0,0,0,59.43,58.049999,48.869999,58.549999,6,1,1,0,0,10,4,1,710.5,195441.25,0,0,3706.3157 -12676,15556,28322,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-988.2077,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,16.816397,0,10.551329,0,0,1,1,0,0,0,0,0,52,46,-9,-9,6,1,1,0,0,11,1,0,235,332721,0,0,3372.5193 -12677,15557,28323,28324,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,5,7.9344635,8.1942053,0,1,0,-9,6,0,-3,80.274376,0,0,0,55,2,2,3,1,3,2019,2,2,7,1,40,40,15,1,0,3,0,7.001976,7.001976,0,0,0,0,0,0,0,0,0,0,0,3.0899498,0,0,0,56.77,46.830002,38.450001,39.529999,7,1,1,0,0,6,3,1,994,70689.492,0,0,2046.4723 -12677,15557,28324,28323,-9,-9,2,1,1,55,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,6,0,3,-2.7242219,0,0,0,52,2,5,1,3,3,2019,3,1,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0858421,0,0,0,38.450001,39.529999,56.77,46.830002,3,1,1,0,0,6,3,1,994,70689.492,0,0,2046.4723 -12678,15558,28325,28327,-9,-9,1,1,0,22,1,0,1,0,2,-9,2,1,0,0,4,7.4395056,7.5148206,0,2,0,-9,3,0,-4,164.1884,0,1,1,26,2,4,1,3,3,2019,1,3,12,0,36,44,15,1,0,1,0,4.9139061,4.9139061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.18,65.980003,57.16,56.150002,6,1,1,0,0,4,3,0,481,99605.617,0,0,2152.8755 -12678,15558,28326,-9,28325,28327,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.0404,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,3,0,481,99605.617,0,0,2152.8755 -12678,15558,28327,28325,-9,-9,3,1,1,26,1,0,1,0,2,-9,2,1,0,0,4,8.0499554,8.1711884,0,2,0,-9,3,0,4,17.18808,0,1,0,22,2,4,1,-9,-9,2019,1,1,8,1,40,39,15,1,0,1,0,10.019015,10.019015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,30.18,65.980003,6,1,1,0,0,4,3,0,481,99605.617,0,0,2152.8755 -12679,15559,28328,28329,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,5,9.1454277,8.7958803,0,1,0,-9,25,0,-1,-14.585484,0,0,0,53,2,3,1,3,2,2019,1,1,11,0,40,40,15,1,0,1,0,19.790052,19.790052,0,0,0,0,0,0,0,0,0,0,0,7.5622144,0,0,0,50.299999,56.650002,59.700001,53.75,6,1,1,0,0,2,5,1,228,489895.16,0,0,5304.3833 -12679,15559,28329,28328,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,0,3,7.6961827,7.9426069,0,1,0,-9,26,0,1,-9.8160057,0,0,0,52,1,5,1,-9,-9,2019,1,2,6,0,50,40,15,1,0,1,0,4.423398,4.423398,0,0,0,0,0,0,0,0,0,0,0,7.3670864,0,0,0,59.700001,53.75,50.299999,56.650002,7,1,1,0,0,2,5,1,228,489895.16,0,0,5304.3833 -12679,15560,28330,-9,28328,28329,3,1,1,22,2,0,0,0,1,-9,2,1,0,0,5,8.2312174,7.9785976,0,3,0,0,0,-9,0,-863.14453,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,40,40,15,1,0,-9,1,10.664678,10.664678,0,0,0,0,0,0,0,0,0,0,0,1.4248662,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,2,4,1,606,-117857.66,0,0,1198.2385 -12679,15561,28331,-9,28328,28329,4,1,0,21,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-970.68268,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.610001,54.240002,-9,-9,6,1,1,0,0,2,1,1,323,0,0,0,0 -12680,15562,28332,28333,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,6.9083834,6.6254692,1,0,-9,56,0,-1,34.348919,-9,0,0,72,2,3,1,3,3,2019,3,2,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.636364,6.3658557,0,0,50,47,52,48,5,1,1,0,0,9,5,0,594.5,1763793,0,0,4714.7881 -12680,15562,28333,28332,-9,-9,2,1,1,72,1,0,0,0,2,-9,1,1,0,0,3,8.781518,8.9212446,0,1,0,-9,11,0,1,-44.938789,-9,0,0,71,3,3,3,-9,-9,2019,2,1,10,1,40,0,15,1,0,4,0,15.370777,15.370777,0,0,0,0,0,0,0,0,1,1,0,7.5423369,0,0,0,52,48,50,47,5,1,1,0,0,9,5,0,594.5,1763793,0,0,4714.7881 -12681,15563,28334,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,5,0,7.0735264,6.8475747,3,0,0,0,-9,0,-931.13196,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0620999,7.3593092,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,6,2,1,728,628617.88,0,0,221.46799 -12682,15564,28335,28336,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,4,8.8277941,8.9932175,5.5586534,2,0,-9,4,0,-8,95.771767,0,1,1,37,2,5,1,-9,-9,2019,1,1,18,7,38,37,15,1,1,1,0,25.395323,25.395323,0,0,0,0,0,0,0,0,1,1,0,5.7346287,0,0,0,39.09,60.150002,54.099998,59.110001,5,1,1,0,0,10,5,1,725.66669,632.95703,0,0,6205.8032 -12682,15564,28336,28335,-9,-9,1,1,1,37,1,1,1,0,2,-9,2,1,0,0,5,7.6444607,7.4650731,0,2,0,-9,4,0,8,-42.18729,0,0,0,29,2,4,1,3,2,2019,1,2,10,1,61,56,15,1,0,1,0,2.9405081,2.9405081,0,0,0,0,0,0,0,0,1,1,0,8.288208,0,0,0,54.099998,59.110001,39.09,60.150002,6,1,1,0,0,10,5,1,725.66669,632.95703,0,0,6205.8032 -12682,15564,28337,-9,28335,28336,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.5789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,5,1,725.66669,632.95703,0,0,6205.8032 -12683,15565,28338,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.3744445,7.1225171,0,3,0,0,0,-9,0,-1047.412,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6087784,0,0,0,43.540001,59.599998,-9,-9,5,1,1,0,0,1,3,1,726,46625.551,0,0,2087.2947 -12684,15566,28339,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.6601491,7.5759959,3,0,0,0,-9,0,-983.33197,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4029222,7.4460611,0,0,53,46,-9,-9,6,1,1,0,0,13,3,1,1484,556883.31,0,0,1030.525 -12685,15567,28340,28341,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,4,9.7867746,9.4252386,0,2,0,-9,23,0,2,-95.817619,0,0,0,49,2,5,1,2,1,2019,1,1,10,0,60,50,15,1,0,1,0,34.00787,34.00787,0,0,0,0,0,0,0,2,0,0,0,7.2922673,0,6.9186563,3,51.810001,57.220001,54.099998,59.110001,6,1,1,0,0,9,5,1,509.33334,269472.09,0,0,12990.35 -12685,15567,28341,28340,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,5,9.1553431,9.1764593,0,2,0,-9,23,0,-2,45.740215,0,0,0,51,2,4,1,2,2,2019,1,2,9,0,24,10,15,1,0,1,0,52.027367,52.027367,0,0,0,0,0,0,0,2,0,0,0,0,0,2.6431036,3,54.099998,59.110001,51.810001,57.220001,6,1,1,0,0,9,5,1,509.33334,269472.09,0,0,12990.35 -12685,15567,28342,-9,28341,28340,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.23694,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,509.33334,269472.09,0,0,12990.35 -12685,15568,28343,-9,28341,28340,3,1,0,19,3,0,2,1,2,0,7,2,0,0,4,0,5.3110986,4.9772196,3,0,0,0,-9,0,-920.75275,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0592589,0,0,0,48.869999,58.549999,-9,-9,7,1,1,0,0,9,2,1,353,24950.582,0,0,-577.85583 -12685,15569,28344,-9,28341,28340,4,1,0,18,2,0,2,1,2,0,7,2,0,0,3,0,3.883661,3.338557,3,0,0,0,-9,0,-1025.3208,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8888831,0,0,0,38.509998,59.43,-9,-9,5,1,1,0,1,9,5,1,792,144233.17,0,0,406.57019 -12686,15570,28345,-9,28346,-9,2,1,0,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-883.97766,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,1344.3334,-29579.848,0,0,2198.5249 -12686,15570,28346,-9,-9,-9,1,1,0,34,2,1,2,0,2,-9,5,1,0,0,2,7.7898207,7.6406016,0,3,0,0,0,-9,0,-1184.5316,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,1,6.7204337,6.7204337,0,0,0,0,0,0,0,7,1,1,0,0,0,15.819289,3,44.16,47.5,-9,-9,5,1,1,0,0,2,3,1,1344.3334,-29579.848,0,0,2198.5249 -12686,15570,28347,-9,28346,-9,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1110.7513,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,3,1,1344.3334,-29579.848,0,0,2198.5249 -12687,15571,28348,28349,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,1,3,0,8.070056,8.1445942,1,0,-9,9,0,-3,-22.763111,0,0,0,74,2,2,3,3,2,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.8847055,7.9451547,111.10832,1,53.080002,47.110001,50.209999,24.35,5,1,1,0,0,5,4,1,557.5,1405394.9,0,0,3837.5195 -12687,15571,28349,28348,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,7.3677564,7.5842557,1,0,-9,9,0,3,-22.251701,0,0,0,71,1,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0421371,7.6823049,0,0,50.209999,24.35,53.080002,47.110001,5,1,1,0,0,5,4,1,557.5,1405394.9,0,0,3837.5195 -12688,15572,28350,28353,-9,-9,1,1,1,47,1,1,2,0,1,-9,2,1,0,0,4,9.8586016,9.6636457,0,2,0,-9,7,0,8,-33.21381,0,0,0,39,1,4,3,3,2,2019,2,2,8,0,43,42,15,1,0,3,0,33.72739,33.72739,0,0,0,0,0,0,0,0,1,1,0,2.363559,0,0,0,49.860001,55.310001,42.299999,57.540001,6,1,1,0,0,7,5,1,290.5,643463.25,0,0,4865.4048 -12688,15572,28351,-9,28353,28350,3,1,1,11,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.7049,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,5,1,290.5,643463.25,0,0,4865.4048 -12688,15572,28352,-9,28353,28350,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-937.70093,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,290.5,643463.25,0,0,4865.4048 -12688,15572,28353,28350,-9,-9,2,1,0,39,1,1,2,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,7,0,-8,-75.471939,0,0,1,47,1,4,1,-9,-9,2019,3,1,15,4,0,36,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3591881,0,0,0,42.299999,57.540001,49.860001,55.310001,6,1,1,1,0,7,5,1,290.5,643463.25,0,0,4865.4048 -12689,15573,28354,28355,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,8.7041121,8.3956642,0,1,0,-9,3,0,0,-31.233334,0,1,0,26,1,3,1,-9,-9,2019,1,2,8,0,37,37,15,1,0,1,0,16.124237,16.124237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,24.57,59.279999,6,1,1,0,0,5,5,0,428,-6954.1328,0,0,3120.9187 -12689,15573,28355,28354,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,3,7.5660253,7.426003,0,1,0,-9,3,0,0,-68.200691,0,1,1,26,1,4,1,-9,-9,2019,1,1,17,5,32,41,15,1,1,1,0,9.7319794,9.7319794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.57,59.279999,54.790001,55.860001,5,1,1,0,0,5,5,0,428,-6954.1328,0,0,3120.9187 -12690,15574,28356,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,4,0,5.9422755,5.6477914,3,0,0,0,-9,0,-1080.9683,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9933968,0,0,42.439999,52,-9,-9,4,1,1,0,0,9,2,1,524,476493.38,0,0,156.29181 -12691,15575,28357,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,5.8618069,5.9285827,3,0,0,0,-9,0,-1141.8538,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,5.8566771,5.0740337,3,54.959999,53.169998,-9,-9,6,1,1,0,0,6,2,1,862,532669.88,0,0,-278.51099 -12692,15576,28358,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,1,1,0,0,3,7.5446625,7.3730478,0,3,0,0,0,-9,0,-1173.1152,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,25,0,15,1,0,-9,0,8.1798487,8.1798487,0,0,0,0,0,0,0,0,0,0,0,2.2531209,0,0,0,31.93,58.41,-9,-9,6,1,1,0,0,4,3,1,1296,276446.75,0,0,324.14456 -12693,15577,28359,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1028.6926,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2143025,0,0,0,59.630001,30.91,-9,-9,3,1,1,0,0,9,1,0,714,-85417.664,0,0,1252.1665 -12694,15578,28360,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,5.9861326,5.9944577,3,0,0,0,-9,0,-1006.5549,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.1476855,0,0,0,0,1,1,0,0,5.9717698,0,0,68.940002,17.02,-9,-9,6,1,1,0,0,7,2,1,349,424779.91,0,0,2226.665 -12695,15579,28361,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,2,0,5.9121413,6.1844945,3,0,0,0,-9,0,-1046.8938,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,0,20.145857,0,3.8273587,0,0,0,1,1,0,0,5.6830487,0,0,35.490002,40.880001,-9,-9,4,2,3,0,0,2,2,1,2196,128642.05,0,0,2311.6348 -12696,15580,28362,-9,28363,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1069.8579,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,4,1,461,-5316.6602,0,0,1555.5264 -12696,15580,28363,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,0,4,8.3793945,8.6419649,0,4,0,0,0,-9,0,-992.86407,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,49,50,15,1,0,-9,0,12.446187,12.446187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.599998,44.619999,-9,-9,7,4,2,0,0,8,4,1,461,-5316.6602,0,0,1555.5264 -12697,15581,28364,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-962.3512,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,10.16037,41.91111,0,0,1,1,0,0,0,0,0,40.650002,26.16,-9,-9,2,1,1,0,0,9,1,1,2787,-67361.813,0,0,237.43425 -12698,15582,28365,28366,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,6.9892011,6.752491,1,0,-9,53,0,6,74.15081,0,0,0,71,2,4,3,3,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7102528,6.9924412,0,0,54,46,57.16,56.150002,6,1,1,0,0,11,2,1,448.5,508280.56,0,0,2124.5564 -12698,15582,28366,28365,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,6.7765083,6.5423689,1,0,-9,53,0,-6,1.7979907,0,0,0,77,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.8800039,6.0270257,0,0,57.16,56.150002,54,46,7,1,1,0,0,11,2,1,448.5,508280.56,0,0,2124.5564 -12699,15583,28367,-9,28369,28368,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.5384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,4,1,677.66669,48342.992,0,0,2384.0605 -12699,15583,28368,28369,-9,-9,3,1,1,34,1,0,1,0,2,-9,2,1,0,0,3,8.7620611,8.8042488,0,2,0,-9,3,0,-1,-25.518267,0,0,0,35,2,3,1,1,1,2019,1,1,10,0,35,35,15,1,0,1,0,16.099997,16.099997,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,39.740002,39.790001,5,2,3,0,0,9,4,1,677.66669,48342.992,0,0,2384.0605 -12699,15583,28369,28368,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,0,3,7.6839471,7.5394073,0,2,0,-9,3,0,1,-155.679,0,0,1,34,2,3,1,1,2,2019,1,3,24,11,37,37,15,1,1,1,0,7.1122818,7.1122818,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,39.790001,46.669998,55.57,6,1,1,0,0,9,4,1,677.66669,48342.992,0,0,2384.0605 -12700,15584,28370,28371,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,5,0,7.6691489,7.7446408,1,0,-9,31,0,0,71.662537,0,0,0,64,2,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9215171,7.2158704,0,0,60.02,56.419998,57.16,56.150002,6,1,1,0,0,1,3,1,1362.5,1602067.4,0,0,1082.1536 -12700,15584,28371,28370,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,6.8107734,6.8814259,1,0,-9,31,0,0,-70.660065,0,0,0,64,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4736049,6.7522125,0,0,57.16,56.150002,60.02,56.419998,6,1,1,0,0,1,3,1,1362.5,1602067.4,0,0,1082.1536 -12701,15585,28372,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,2,1,0,0,5,7.563674,8.8280649,8.5186901,3,0,0,0,-9,0,-967.20032,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,40,15,1,0,-9,0,10.129835,10.129835,0,0,0,0,0,0,0,0,1,1,0,7.1065068,8.617754,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,5,1,669,8500721,0,0,4770.9097 -12702,15586,28373,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-998.48407,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,32,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.90341,3,24.93,19.950001,-9,-9,4,1,1,0,1,7,1,0,168,-145981.84,0,0,787.42084 -12703,15587,28374,28378,-9,-9,1,1,0,32,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-7,130.71922,0,0,1,39,2,4,1,-9,-9,2019,3,2,14,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.330002,55.93,51,56,6,1,1,0,0,10,5,0,737.20001,168128,0,0,6525.5938 -12703,15587,28375,-9,28374,28378,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.33264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,0,737.20001,168128,0,0,6525.5938 -12703,15587,28376,-9,28374,28378,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-895.35089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,5,0,737.20001,168128,0,0,6525.5938 -12703,15587,28377,-9,28374,28378,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.53064,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,0,737.20001,168128,0,0,6525.5938 -12703,15587,28378,28374,-9,-9,2,1,1,39,1,0,3,0,2,-9,1,1,0,0,4,9.4645748,9.6222391,0,2,0,-9,8,0,7,28.499151,0,0,0,32,2,3,3,-9,-9,2019,2,1,10,1,50,50,15,1,0,3,0,34.000664,34.000664,0,0,0,0,0,0,0,0,1,1,0,6.0660825,0,0,0,51,56,46.330002,55.93,5,1,1,0,0,10,5,0,737.20001,168128,0,0,6525.5938 -12704,15588,28379,28380,-9,-9,2,1,1,46,1,0,0,0,1,-9,1,1,0,0,3,6.7415547,6.5564466,0,1,0,-9,6,0,2,22.118441,0,0,0,44,2,3,1,2,2,2019,1,1,8,0,42,34,15,1,0,1,0,1.6625353,1.6625353,0,0,0,0,0,0,0,0,0,0,0,7.2085662,0,0,0,32.259998,58.07,39.610001,57.540001,6,1,1,0,0,2,3,1,1009.5,1524924.9,0,0,2646.1833 -12704,15588,28380,28379,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,7.8055086,7.7358265,0,1,0,-9,6,0,-2,-20.859507,0,0,1,46,1,3,1,2,2,2019,1,2,12,1,32,32,15,1,0,1,0,9.3119068,9.3119068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.610001,57.540001,32.259998,58.07,6,1,1,0,0,2,3,1,1009.5,1524924.9,0,0,2646.1833 -12705,15589,28381,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,4,8.7503805,8.6672974,0,3,0,0,0,-9,0,-1026.7046,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,50,15,1,0,-9,0,15.304743,15.304743,0,0,0,0,0,0,0,0,1,1,0,6.859087,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,5,1,285,199994.3,0,0,2876.2576 -12706,15590,28382,28383,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,9.2711353,8.9616632,0,2,0,-9,29,0,0,2.3458071,0,0,0,49,2,4,1,2,2,2019,1,2,8,0,47,57,15,1,0,1,0,22.789135,22.789135,0,0,0,0,0,0,0,0,0,0,0,5.2316699,0,0,0,54.200001,57.490002,53,55,6,1,1,0,0,4,5,1,852,921170.88,0,0,2651.6934 -12706,15590,28383,28382,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,0,4,5.1228819,5.2887807,0,2,0,-9,29,0,0,-77.756805,0,0,0,49,1,4,1,3,3,2019,1,1,9,1,40,60,15,1,0,1,0,.51906836,.51906836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,54.200001,57.490002,6,1,1,0,0,4,5,1,852,921170.88,0,0,2651.6934 -12706,15591,28384,-9,28382,28383,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1088.5615,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,4,5,1,393,78541.297,0,0,0 -12707,15592,28385,28386,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,0,17.066574,0,0,0,69,3,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,42.93,47.759998,52.080002,6,1,1,0,0,12,2,1,1020.5,101010.36,0,0,1307.9517 -12707,15592,28386,28385,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.6340828,6.6775432,1,0,-9,49,0,0,119.22894,0,0,0,69,3,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0297766,6.5156322,0,0,47.759998,52.080002,57.330002,42.93,6,1,1,0,0,12,2,1,1020.5,101010.36,0,0,1307.9517 -12708,15593,28387,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,4,3,0,0,3,0,7.3047543,7.2591066,3,0,0,0,-9,0,-1097.6359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,0,0,0,5.5569525,7.3136044,36.496574,3,60.110001,33.380001,-9,-9,3,1,1,0,0,13,2,1,359,334218.16,0,0,916.96082 -12709,15594,28388,28389,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,3.4564986,3.6603966,1,0,-9,6,0,-5,-20.045351,0,0,0,79,3,2,3,-9,2,2019,4,1,23,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1377339,3.0365283,0,0,32.84,42.880001,36.23,44.439999,5,1,1,0,0,10,2,1,626,442924.63,0,0,2101.5439 -12709,15594,28389,28388,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,2,0,6.8694854,7.126061,1,0,-9,6,0,5,-15.965319,0,0,0,74,3,3,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3318095,6.8521018,0,0,36.23,44.439999,32.84,42.880001,3,1,1,0,0,10,2,1,626,442924.63,0,0,2101.5439 -12710,15595,28390,-9,28391,28393,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.58167,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,962,103028,0,0,4090.876 -12710,15595,28391,28393,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,7.7758198,7.7982106,0,2,0,-9,9,0,0,-107.71305,0,0,1,38,2,4,1,3,3,2019,1,2,8,0,23,0,15,1,0,1,0,12.235404,12.235404,0,0,0,0,0,0,0,0,1,1,0,2.48862,0,0,0,54.790001,55.860001,54.740002,57.220001,6,1,1,0,0,12,4,1,962,103028,0,0,4090.876 -12710,15595,28392,-9,28391,28393,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.0367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,962,103028,0,0,4090.876 -12710,15595,28393,28391,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.9233131,8.9156561,0,2,0,-9,9,0,0,-55.247677,0,0,0,38,2,4,1,-9,-9,2019,1,1,7,0,52,50,15,1,0,1,0,15.805984,15.805984,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,54.790001,55.860001,6,1,1,0,0,12,4,1,962,103028,0,0,4090.876 -12711,15596,28394,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-982.14667,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.939999,42.23,-9,-9,2,1,1,0,0,5,1,0,534,-151420.44,0,0,-177.6273 -12712,15597,28395,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,8.8866739,8.6538687,0,3,0,0,0,-9,0,-1009.7416,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,35,40,15,1,0,-9,0,27.758415,27.758415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,13,5,1,625,529503.75,0,0,2121.6123 -12713,15598,28396,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1035.2588,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.889999,16.17,-9,-9,2,1,1,0,1,4,1,0,743,-65433.441,0,0,968.06366 -12713,15599,28397,-9,28396,-9,2,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-980.9082,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,6.5356169,3,57.16,56.150002,-9,-9,6,1,1,0,0,4,1,0,2017,20791.947,0,0,0 -12714,15600,28398,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-986.16925,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,1.8330644,0,0,0,0,59.296234,0,1,1,0,0,0,0,0,57.450001,30.059999,-9,-9,7,1,1,0,0,2,1,0,1251,-184698.72,0,0,1729.3628 -12715,15601,28399,28400,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,6.6884027,7.0446081,1,0,-9,8,0,-11,-29.216352,0,0,0,80,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.5739789,6.6032867,14.673351,3,55.48,44.52,61.849998,47.259998,6,1,1,0,0,12,3,1,863.5,685987.25,0,0,2922.1821 -12715,15601,28400,28399,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,1,3,0,7.0515823,7.3877459,1,0,-9,8,0,11,113.52062,0,0,0,69,2,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.2331686,0,3,61.849998,47.259998,55.48,44.52,6,1,1,0,0,12,3,1,863.5,685987.25,0,0,2922.1821 -12716,15602,28401,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,4.7935934,4.3117757,3,0,0,0,-9,0,-899.46606,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9542503,4.8901415,0,0,53,46,-9,-9,5,1,1,0,0,4,2,1,924,46586.207,0,0,2273.9131 -12717,15603,28402,28403,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,5,8.1320944,8.1189489,6.5806065,1,0,-9,8,0,3,63.839504,0,0,0,56,1,2,1,-9,-9,2019,1,1,7,0,12,50,15,1,0,1,0,23.126587,23.126587,0,0,0,0,0,0,0,0,0,0,0,.58592075,6.7432275,0,0,54.099998,59.110001,46.709999,44.139999,6,1,1,0,0,7,4,1,501.5,385424,0,0,2137.8489 -12717,15603,28403,28402,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,2,6.5946245,6.7634506,0,1,0,-9,15,0,-3,-49.538666,0,0,0,59,1,5,1,2,3,2019,1,2,19,8,25,0,15,1,1,1,0,4.0962005,4.0962005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.709999,44.139999,54.099998,59.110001,6,1,1,0,0,7,4,1,501.5,385424,0,0,2137.8489 -12717,15604,28404,-9,28403,28402,3,1,0,22,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1094.7367,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,7,1,1,1344,3117.5461,0,0,0 -12718,15605,28405,28406,-9,-9,2,1,0,50,1,0,0,0,3,-9,8,3,1,1,4,0,0,0,1,0,-9,8,0,1,4.9195676,0,0,0,49,2,3,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.845289,0,55.804138,3,44.700001,41.790001,56.5,48.330002,7,1,1,0,0,13,2,1,289,-42428.434,0,0,1900.7256 -12718,15605,28406,28405,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,7.3608422,7.271719,0,1,0,-9,8,0,-1,-17.412788,0,0,0,50,3,4,3,2,3,2019,2,2,9,0,32,41,15,1,0,3,0,4.8293905,4.8293905,0,0,0,0,0,0,0,0,1,1,0,2.7361844,0,0,0,56.5,48.330002,44.700001,41.790001,6,1,1,0,0,13,2,1,289,-42428.434,0,0,1900.7256 -12718,15606,28407,-9,28405,28406,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.2316761,8.1298561,0,3,0,0,0,-9,0,-1037.0791,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,36,15,1,0,-9,1,13.521483,13.521483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.759998,52.639999,-9,-9,6,1,1,0,0,13,4,1,1352,-32762.143,0,0,2142.2529 -12718,15607,28408,-9,28405,28406,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,8.7853527,8.1781693,0,3,0,0,0,-9,0,-1036.6608,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,37,40,15,1,0,-9,1,13.297461,13.297461,0,0,0,0,0,0,0,27.5,1,1,0,2.7089829,0,18.9112,3,62.389999,56.709999,-9,-9,6,1,1,0,0,13,4,1,1107,-140482.78,0,0,976.07227 -12719,15608,28409,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,3,8.3027897,8.5999079,0,3,0,0,0,-9,0,-1004.3254,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,37,15,1,0,-9,0,13.200001,13.200001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.900002,60.310001,-9,-9,6,1,1,0,0,11,5,1,189,193839.66,0,0,2543.3477 -12719,15609,28410,-9,28409,-9,2,1,1,19,2,0,0,0,2,-9,7,2,0,0,3,6.0947533,5.9426503,0,3,0,0,0,-9,0,-1032.7365,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,11,2,1,435,-38283.113,0,0,1654.5394 -12720,15610,28411,-9,-9,-9,1,1,1,21,2,0,0,0,1,1,2,1,0,0,4,7.7300148,7.7667007,0,3,0,0,0,-9,0,-1004.6648,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,41,0,15,1,0,-9,0,7.2911596,7.2911596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,3,0,283,132229.2,0,0,858.76105 -12721,15611,28412,28413,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,2,-163.49634,0,0,0,67,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,28.209999,58.07,46.290001,4,1,1,0,0,10,3,1,876.5,1117324.1,0,0,3265.1489 -12721,15611,28413,28412,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,8.1783981,8.2677135,1,0,-9,10,0,-2,-87.510315,0,0,0,69,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7472284,8.2847776,0,0,58.07,46.290001,61.279999,28.209999,6,1,1,0,0,10,3,1,876.5,1117324.1,0,0,3265.1489 -12722,15612,28414,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,0,3,8.5821962,8.4974384,0,3,0,-9,0,1,0,-1096.4202,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,37,37,15,1,0,-9,0,16.831734,16.831734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.009998,57.810001,-9,-9,6,1,1,0,0,11,5,1,332,338628.81,0,0,2726.6785 -12723,15613,28415,28416,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.2216196,8.2902241,0,1,0,-9,9,0,4,0,0,0,0,49,2,3,1,3,2,2019,1,2,23,10,38,38,15,1,1,1,0,12.371334,12.371334,0,0,0,0,0,0,0,14.5,1,1,0,3.3934987,0,20.525579,3,51.580002,49.200001,37.59,48.98,3,1,1,0,0,12,5,1,591.5,88607.75,0,0,2635.3271 -12723,15613,28416,28415,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.0966368,8.2643642,0,1,0,-9,9,0,-4,0,0,0,0,53,2,4,1,-9,3,2019,1,1,16,4,39,37,15,1,1,1,0,12.365428,12.365428,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8815145,3,37.59,48.98,51.580002,49.200001,4,1,1,0,0,12,5,1,591.5,88607.75,0,0,2635.3271 -12724,15614,28417,28418,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,2,0,7.3651462,7.2544012,1,0,-9,53,0,0,-212.40869,0,0,0,72,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.321558,0,0,46,36,61.959999,29.84,6,1,1,0,0,12,2,0,553.5,618832.69,0,0,4278.3506 -12724,15614,28418,28417,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,10,0,0,-39.533421,0,0,0,72,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.959999,29.84,46,36,6,1,1,0,0,12,2,0,553.5,618832.69,0,0,4278.3506 -12725,15615,28419,-9,28421,28422,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-997.75269,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,7,3,1,809.59998,647964.44,0,0,2659.8091 -12725,15615,28420,-9,28421,28422,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.98932,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,3,1,809.59998,647964.44,0,0,2659.8091 -12725,15615,28421,28422,-9,-9,1,1,0,38,1,0,3,0,1,-9,7,2,0,0,4,0,0,0,2,0,-9,16,0,-5,-68.464157,1,0,1,43,1,4,1,1,1,2019,3,2,7,0,0,10,15,2,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.24454,3,41.169998,59.310001,57.16,56.150002,7,3,4,0,1,7,3,1,809.59998,647964.44,0,0,2659.8091 -12725,15615,28422,28421,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,8.9942055,8.9410915,0,2,0,-9,16,0,5,51.298672,0,0,0,38,1,4,2,2,2,2019,2,1,9,0,39,40,15,1,0,2,0,20.123083,20.123083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,41.169998,59.310001,6,3,4,0,0,7,3,1,809.59998,647964.44,0,0,2659.8091 -12725,15615,28423,-9,28421,28422,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.5933,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,7,3,1,809.59998,647964.44,0,0,2659.8091 -12726,15616,28424,28425,-9,-9,1,1,1,70,1,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,46,0,1,0,0,0,0,69,3,4,3,3,3,2019,2,2,8,0,0,70,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.700001,42.759998,54.790001,55.860001,6,1,1,0,0,13,2,1,258,234833.86,0,0,1002.228 -12726,15616,28425,28424,-9,-9,2,1,0,69,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,46,0,-1,0,0,0,0,70,3,3,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,56.700001,42.759998,5,1,1,0,0,13,2,1,258,234833.86,0,0,1002.228 -12727,15617,28426,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,0,3,8.2354593,8.3644371,5.287878,3,0,0,0,-9,0,-1054.3599,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,41,37,15,1,0,-9,0,9.7132797,9.7132797,0,0,0,0,0,0,0,0,1,1,0,0,5.2397161,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,8,4,0,247,-27595.414,0,0,1611.9935 -12728,15618,28427,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,0,4,0,8.0695753,7.6564155,3,0,0,0,-9,0,-1095.5792,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7460327,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,13,3,1,1086,607372.88,0,0,1079.9042 -12729,15619,28428,28429,-9,-9,2,1,1,56,1,0,2,0,3,-9,2,1,0,0,4,8.4054747,8.3327646,0,2,0,-9,21,0,9,24.747854,0,0,0,47,2,2,1,3,3,2019,1,1,9,1,55,56,15,1,0,1,0,9.1015882,9.1015882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,35.369999,50.59,6,1,1,0,0,9,4,1,1328.75,902228.13,0,0,2745.9185 -12729,15619,28429,28428,-9,-9,1,1,0,47,1,0,2,0,2,-9,1,1,0,1,2,6.9359703,7.0347323,0,2,0,-9,21,0,0,41.104191,0,0,0,56,3,4,1,1,1,2019,1,2,13,2,16,20,15,1,0,1,0,7.1080046,7.1080046,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.369999,50.59,53,54,5,4,2,0,0,9,4,1,1328.75,902228.13,0,0,2745.9185 -12729,15619,28430,-9,28429,28428,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.77063,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,1328.75,902228.13,0,0,2745.9185 -12729,15619,28431,-9,28429,28428,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.344,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,4,1,1328.75,902228.13,0,0,2745.9185 -12730,15620,28432,28433,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,0,2,0,7.7747126,7.755753,1,0,-9,17,0,5,85.103828,0,0,0,61,3,3,1,2,2,2019,3,2,15,3,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5897541,0,0,49.669998,24.620001,37.259998,42.23,4,1,1,0,0,4,3,1,339,481097,0,0,2915.6292 -12730,15620,28433,28432,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,0,3,7.5461617,7.3094263,0,1,0,-9,17,0,-5,-4.7851973,0,0,0,66,3,2,3,2,2,2019,2,1,12,0,7,0,15,1,0,4,0,24.944326,24.944326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.259998,42.23,49.669998,24.620001,4,1,1,0,0,4,3,1,339,481097,0,0,2915.6292 -12731,15621,28434,-9,-9,-9,1,1,1,52,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1045.9015,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.380001,34.419998,-9,-9,2,1,1,0,1,13,1,0,838,-203087.36,0,0,1858.7733 -12732,15622,28435,-9,28438,28436,6,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.812,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,1,1,668.5,296102.94,0,0,780.64618 -12732,15622,28436,28438,-9,-9,1,1,1,47,1,0,3,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,7,0,2,0,0,0,0,45,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.709999,15.11,48.400002,46.029999,5,2,3,0,0,4,1,1,668.5,296102.94,0,0,780.64618 -12732,15622,28437,-9,28438,28436,5,1,1,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.05432,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,54.32,-9,-9,6,2,3,0,0,4,1,1,668.5,296102.94,0,0,780.64618 -12732,15622,28438,28436,-9,-9,2,1,0,45,1,0,3,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,29,0,-2,0,0,0,0,47,2,1,3,3,3,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.290031,1,48.400002,46.029999,35.709999,15.11,6,2,3,0,0,4,1,1,668.5,296102.94,0,0,780.64618 -12732,15623,28439,-9,28438,28436,3,1,0,22,2,0,3,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-983.92133,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,1,0,4,1,1,1005,-87199.086,0,0,0 -12733,15624,28440,28441,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,8.4548826,8.3635864,0,1,0,-9,32,0,4,53.391926,0,0,0,55,2,3,1,3,3,2019,1,1,12,0,40,43,15,1,0,1,0,13.628602,13.628602,0,0,0,0,0,0,0,0,0,0,0,3.4771826,0,0,0,46.900002,56.66,49.040001,55.860001,5,1,1,0,0,10,5,1,394.5,1238499.8,0,0,5370.5879 -12733,15624,28441,28440,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,9.3394852,9.6595535,0,1,0,-9,32,0,-4,86.453804,0,0,0,59,3,4,1,2,3,2019,1,2,12,1,53,48,15,1,0,1,0,18.204412,18.204412,0,0,0,0,0,0,0,0,0,0,0,3.1763003,0,0,0,49.040001,55.860001,46.900002,56.66,6,1,1,0,0,10,5,1,394.5,1238499.8,0,0,5370.5879 -12734,15625,28442,28443,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,0,3,0,5.6483283,6.1772175,1,0,-9,6,0,-8,147.37578,0,0,0,68,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.855299,5.6439452,0,0,49,48,59.700001,53.75,7,1,1,0,0,7,3,1,688.5,1057455.3,0,0,2421.0723 -12734,15625,28443,28442,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,7.6385636,7.4544368,1,0,-9,6,0,8,-35.825478,0,0,0,60,2,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1132746,7.8380451,0,0,59.700001,53.75,49,48,7,1,1,0,0,7,3,1,688.5,1057455.3,0,0,2421.0723 -12735,15626,28444,-9,28445,28446,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-832.82794,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,2188.6667,99463.898,0,0,2768.3701 -12735,15626,28445,28446,-9,-9,1,1,0,37,1,1,1,0,1,-9,2,1,0,0,4,8.4435902,8.4622612,0,2,0,-9,10,0,0,48.904995,0,0,1,37,3,4,1,3,2,2019,1,2,8,0,31,0,15,1,0,1,0,15.738053,15.738053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,30.889999,61.610001,5,1,1,0,0,5,4,1,2188.6667,99463.898,0,0,2768.3701 -12735,15626,28446,28445,-9,-9,2,1,1,37,1,1,1,0,3,-9,1,1,0,0,4,8.0303621,7.8962741,0,2,0,-9,10,0,0,-83.975548,0,0,0,37,1,4,1,2,2,2019,1,1,17,6,36,34,15,1,1,1,0,10.044203,10.044203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.889999,61.610001,48.869999,58.549999,3,1,1,0,1,5,4,1,2188.6667,99463.898,0,0,2768.3701 -12736,15627,28447,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,7.9386659,8.1672907,0,3,0,0,0,-9,0,-1047.3654,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,50,15,1,0,-9,0,8.4386692,8.4386692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.02,63.18,-9,-9,3,1,1,0,0,7,4,0,1082,640155.44,0,0,1277.0013 -12737,15628,28448,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-989.99976,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,43,-9,-9,6,1,1,0,0,9,1,1,314,52279.41,0,0,231.63867 -12737,15629,28449,-9,28448,-9,3,1,1,60,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-953.60583,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.6945,3,55,53,-9,-9,6,1,1,0,0,9,1,1,269,-59453.723,0,0,441.77698 -12738,15630,28450,28451,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,1,60.639168,0,0,0,57,3,1,1,3,3,2019,3,3,26,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.965785,3,32.200001,35.5,42.389999,13.53,2,1,1,0,0,5,3,1,583.66669,487632.06,0,0,2457.1567 -12738,15630,28451,28450,-9,-9,3,1,1,57,1,0,0,0,3,-9,2,1,0,0,1,7.7064576,7.5853734,0,1,0,-9,4,0,-1,-156.81113,0,0,0,58,3,1,3,-9,-9,2019,2,1,16,4,40,40,15,1,1,3,0,7.3818703,7.3818703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.389999,13.53,32.200001,35.5,2,1,1,0,1,5,3,1,583.66669,487632.06,0,0,2457.1567 -12738,15630,28452,-9,-9,28451,2,1,0,16,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1034.8723,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.058655,3,46.709999,45.959999,-9,-9,2,1,1,0,0,5,3,1,583.66669,487632.06,0,0,2457.1567 -12739,15631,28453,28454,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.1385298,9.2347908,0,1,0,-9,9,0,4,36.577663,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,0,42,43,15,1,0,1,0,27.465673,27.465673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,46.75,56.990002,6,1,1,0,0,2,5,1,294,1672157,0,0,4682.6777 -12739,15631,28454,28453,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.0875931,8.2375069,0,1,0,-9,31,0,-4,-145.61961,0,0,0,54,1,4,1,2,2,2019,1,2,10,0,40,45,15,1,0,1,0,9.7223711,9.7223711,0,0,0,0,0,0,0,0,0,0,0,3.793905,0,0,0,46.75,56.990002,57.16,56.150002,6,1,1,0,0,2,5,1,294,1672157,0,0,4682.6777 -12739,15632,28455,-9,28454,28453,3,1,0,21,2,0,0,0,1,1,9,3,0,0,4,0,0,0,3,0,0,0,-9,0,-911.54065,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.63450265,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,2,1,1,667,-49247.836,0,0,-417.53311 -12740,15633,28456,-9,28457,28458,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.2832,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,680.75,432948.53,0,0,4308.3203 -12740,15633,28457,28458,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,0,4,8.13134,8.509696,0,2,0,-9,21,0,0,95.618095,0,0,0,48,1,4,1,3,2,2019,1,2,5,1,23,19,15,1,0,1,0,21.146065,21.146065,0,0,0,0,0,0,0,2,1,1,0,5.7735977,0,4.6228151,3,54.200001,57.490002,40.07,57.25,6,1,1,0,0,10,5,1,680.75,432948.53,0,0,4308.3203 -12740,15633,28458,28457,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,9.0222292,8.672452,0,2,0,-9,20,0,0,66.452728,0,0,0,48,1,4,1,2,1,2019,1,1,10,2,44,41,15,1,0,1,0,18.658512,18.658512,0,0,0,0,0,0,0,0,1,1,0,4.8654547,0,0,0,40.07,57.25,54.200001,57.490002,5,1,1,0,0,10,5,1,680.75,432948.53,0,0,4308.3203 -12740,15633,28459,-9,28457,28458,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-988.4035,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,10,5,1,680.75,432948.53,0,0,4308.3203 -12741,15634,28460,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,1,1,0,0,4,3.7368047,5.6635094,5.8393941,3,0,0,0,-9,0,-1022.0074,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,7,0,15,1,0,-9,0,.68526161,.68526161,0,0,0,0,0,0,0,119,0,0,0,.86440653,5.8896046,112.26552,3,46.630001,59.720001,-9,-9,7,1,1,0,0,10,2,1,755,-73788.094,0,0,725.30487 -12742,15635,28461,-9,28462,28464,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.7908,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,718,843954.94,0,0,4706.5928 -12742,15635,28462,28464,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,5,8.8927307,8.2507124,0,2,0,-9,19,0,0,39.160061,0,0,1,44,2,5,1,2,3,2019,1,2,9,0,32,30,15,1,0,1,0,21.652597,21.652597,0,0,0,0,0,0,0,0,1,1,0,2.3122392,0,0,0,51.139999,60.450001,46.060001,60.240002,7,1,1,0,0,9,5,1,718,843954.94,0,0,4706.5928 -12742,15635,28463,-9,28462,28464,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.40936,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,718,843954.94,0,0,4706.5928 -12742,15635,28464,28462,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,5,9.0671158,8.8570204,0,2,0,-9,19,0,0,-1.3667382,0,0,0,44,1,5,1,2,2,2019,1,1,12,3,44,42,15,1,0,1,0,22.152529,22.152529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.060001,60.240002,51.139999,60.450001,6,1,1,0,0,9,5,1,718,843954.94,0,0,4706.5928 -12743,15636,28465,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,0,3,0,7.4699283,7.5574298,3,0,0,0,-9,0,-1088.8955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2979758,7.6880474,0,0,25.16,60.139999,-9,-9,5,1,1,0,0,4,3,1,487,828750.63,0,0,1143.6938 -12744,15637,28466,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,2,1,0,0,3,8.6069651,8.9358845,0,3,0,0,0,-9,0,-927.55994,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,37,15,1,0,-9,0,18.913656,18.913656,0,0,0,0,0,0,0,0,0,0,0,.2208405,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,7,5,1,930,1224559.6,0,0,4044.8035 -12745,15638,28467,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,0,5,0,3.7176857,3.5961101,3,0,0,0,-9,0,-935.32452,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7960236,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,4,1,0,148,237233.28,0,0,116.54157 -12746,15639,28468,-9,28470,28469,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.3915,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,612.66669,-58630.102,0,0,3535.634 -12746,15639,28469,28470,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,0,4,8.5152893,8.2737799,0,2,0,-9,2,0,4,16.717054,0,1,0,24,2,3,1,2,2,2019,1,2,12,1,42,48,15,1,0,1,0,14.180772,14.180772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,49.259998,54.610001,2,1,1,0,0,2,5,1,612.66669,-58630.102,0,0,3535.634 -12746,15639,28470,28469,-9,-9,2,1,0,24,1,1,1,0,2,-9,2,1,0,0,3,8.4006014,8.0655079,0,2,0,-9,2,0,-4,-43.507473,0,1,1,28,2,4,1,-9,-9,2019,1,1,9,0,20,20,15,1,0,1,0,18.631472,18.631472,0,0,0,0,0,0,0,2,1,1,0,0,0,12.895735,3,49.259998,54.610001,48.869999,58.549999,6,1,1,0,0,2,5,1,612.66669,-58630.102,0,0,3535.634 -12747,15640,28471,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,2,1,0,0,2,8.1158485,8.1899338,6.870913,3,0,0,0,-9,0,-996.66064,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,39,39,15,1,0,-9,0,9.7425613,9.7425613,0,0,0,0,0,0,0,14.5,1,1,0,1.4861828,6.8515291,20.032244,3,51.459999,45.59,-9,-9,4,1,1,0,0,7,4,1,2410,892677.75,0,0,2758.4299 -12748,15641,28472,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,2,6.2474236,6.3492627,5.6759701,3,0,-9,0,-9,0,-972.10272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,20,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1036057,5.123064,0,0,9.4200001,52.419998,-9,-9,1,1,1,0,0,9,2,0,154,178618.55,0,0,932.5094 -12749,15642,28473,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1030.9653,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,40.770672,0,0,1.9682146,3.1706452,357.48044,0,1,1,0,5.9441776,0,0,0,50,47,-9,-9,5,1,1,0,0,4,1,1,465,0,0,0,1744.9044 -12750,15643,28474,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,0,3,8.5537682,8.6395273,0,3,0,0,0,-9,0,-1050.584,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,1,38,35,15,1,0,-9,0,14.275102,14.275102,0,0,0,0,0,0,0,0,0,0,0,2.5981669,0,0,0,31.290001,61.290001,-9,-9,3,1,1,0,0,2,5,1,154,-100139.15,0,0,1703.5983 -12751,15644,28475,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1038.6351,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,34,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.76,22.379999,-9,-9,2,1,1,0,1,9,1,1,373,-192536.17,0,0,1505.0448 -12752,15645,28476,28477,-9,-9,3,1,0,57,1,0,0,0,1,-9,1,1,0,0,3,8.0514259,7.6624355,0,1,0,-9,4,0,-1,-105.556,0,0,0,58,2,2,1,-9,-9,2019,1,1,9,0,35,40,15,1,0,1,0,11.363731,11.363731,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.040001,55.860001,61.040001,26.18,5,1,1,0,0,5,3,1,1535,1408694.8,0,0,1059.1001 -12752,15645,28477,28476,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,2,6.5259194,6.9710093,6.0165253,1,0,-9,4,0,1,-41.92297,0,0,0,57,1,3,1,1,1,2019,1,3,13,1,20,25,15,1,0,1,0,4.3354936,4.3354936,0,0,0,0,0,0,0,0,1,0,1,5.7493553,6.0922127,0,0,61.040001,26.18,49.040001,55.860001,6,1,1,0,0,5,3,1,1535,1408694.8,0,0,1059.1001 -12752,15646,28478,-9,28476,28477,2,1,0,23,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-939.21149,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.830002,57.200001,-9,-9,3,1,1,1,0,5,1,1,815,46021.188,0,0,0 -12753,15647,28479,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,0,4,7.9344044,7.9615793,0,3,0,0,0,-9,0,-1011.0161,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,24,28,15,1,1,-9,0,18.086123,18.086123,0,0,0,0,0,0,0,0,0,0,0,1.5059468,0,0,0,50.200001,49.869999,-9,-9,6,1,1,0,0,6,4,0,1476,138117.33,0,0,1890.7679 -12754,15648,28480,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,1,0,6.8997698,7.1404719,3,0,0,0,-9,0,-1039.7532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,10,0,0,15,4,1,-9,0,0,0,1,0,0,2.7264307,0,0,0,0,1,1,0,0,6.822206,0,0,16.040001,23.99,-9,-9,1,1,1,0,1,9,2,1,284,196569.28,0,0,2221.8003 -12755,15649,28481,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,0,4,6.7312808,7.0795379,0,3,0,0,0,-9,0,-1031.1353,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,16,16,15,1,0,-9,0,7.5100279,7.5100279,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.790001,53.43,-9,-9,5,1,1,0,0,2,2,1,171,163703.06,0,0,1027.3483 -12756,15650,28482,28483,-9,-9,2,1,0,31,1,1,1,0,1,-9,97,3,0,0,4,0,0,0,2,0,-9,2,0,2,-26.480085,-9,0,1,29,1,4,2,-9,-9,2019,4,1,7,1,0,0,15,3,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8112726,0,0,0,48.189999,54.860001,57.16,56.150002,6,1,1,0,0,7,3,1,1119.6666,-33787.305,0,0,4801.2959 -12756,15650,28483,28482,-9,-9,1,1,1,29,1,1,1,0,1,-9,7,2,0,0,4,8.299881,8.3761806,0,2,0,-9,2,0,-2,-65.219696,-9,1,0,31,1,4,3,-9,-9,2019,4,2,3,0,26,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.131398,0,0,0,57.16,56.150002,48.189999,54.860001,7,1,1,0,0,7,3,1,1119.6666,-33787.305,0,0,4801.2959 -12756,15650,28484,-9,28482,28483,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.08789,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,3,1,1119.6666,-33787.305,0,0,4801.2959 -12757,15651,28485,28486,-9,-9,1,1,1,61,1,0,1,0,1,-9,2,1,0,0,2,7.6052341,7.4301291,3.6226816,2,0,-9,40,0,2,89.881554,0,0,0,59,1,4,3,3,2,2019,2,2,12,0,7,36,15,1,0,4,0,33.581303,33.581303,0,0,0,0,0,0,0,7,1,1,0,0,3.7334144,12.653974,3,50.130001,38.119999,42.18,50.990002,5,1,1,0,1,5,3,1,250,1468622.8,0,0,1833.3135 -12757,15651,28486,28485,-9,-9,2,1,0,59,1,0,1,0,1,-9,4,3,0,0,4,0,7.9005795,7.6845436,2,0,-9,40,0,-2,-166.44524,0,0,0,61,1,2,1,2,2,2019,3,1,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.5486517,12.752813,3,42.18,50.990002,50.130001,38.119999,3,1,1,0,0,5,3,1,250,1468622.8,0,0,1833.3135 -12757,15652,28487,-9,28489,28488,5,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.7356,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,550,45515.273,0,0,3154.7485 -12757,15652,28488,28489,28486,28485,3,1,1,27,1,0,1,0,2,-9,2,1,0,0,2,7.2552509,7.2601962,0,2,0,-9,8,0,1,-72.672592,0,1,0,26,2,3,1,1,1,2019,1,4,9,1,20,0,15,1,0,1,0,12.154744,12.154744,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.84095,3,48.630001,47.060001,36.02,38.700001,4,1,1,0,0,5,4,1,550,45515.273,0,0,3154.7485 -12757,15652,28489,28488,-9,-9,4,1,0,26,1,0,1,0,2,-9,2,1,0,1,3,7.9970918,8.0600691,0,2,0,-9,8,0,-1,109.92529,0,1,1,27,2,2,1,-9,-9,2019,1,3,23,10,42,6,15,1,1,1,0,9.1192207,9.1192207,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.443989,3,36.02,38.700001,48.630001,47.060001,3,1,1,0,1,5,4,1,550,45515.273,0,0,3154.7485 -12758,15653,28490,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,2,0,7.5289497,6.7566037,3,0,0,0,-9,0,-966.27307,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5824003,7.2538671,0,0,54.849998,34.630001,-9,-9,5,1,1,0,1,11,2,1,311,557289.56,0,0,1020.8201 -12759,15654,28491,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,1,2,0,5.1723051,4.9050341,3,0,0,0,-9,0,-872.71918,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.950007,5.1493692,0,0,39.34,33.360001,-9,-9,5,1,1,0,0,6,2,0,760,72102.117,0,0,2696.2168 -12760,15655,28492,28493,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,4,0,5.3448892,5.530623,1,0,-9,53,0,1,8.2911596,0,0,0,72,2,5,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7430611,0,0,54.669998,43.450001,62.389999,56.709999,6,1,1,0,0,5,2,1,2118,511706.44,0,0,2623.6858 -12760,15655,28493,28492,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,5,0,6.6947465,6.9324117,1,0,-9,53,0,-1,-65.471436,0,0,0,73,3,4,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1217744,6.6388669,0,0,62.389999,56.709999,54.669998,43.450001,7,1,1,0,0,5,2,1,2118,511706.44,0,0,2623.6858 -12761,15656,28494,28496,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,0,4,9.3331308,9.2026567,0,2,0,-9,8,0,-1,-21.217146,0,0,0,60,2,4,2,2,2,2019,2,1,8,0,38,40,15,1,0,2,0,26.708591,26.708591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,44.59,59.080002,6,1,1,0,0,9,5,1,537,2862794.5,0,0,3325.6887 -12761,15656,28495,-9,28496,28494,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-898.21857,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,-9,-9,6,1,1,0,0,9,5,1,537,2862794.5,0,0,3325.6887 -12761,15656,28496,28494,-9,-9,1,1,0,60,1,0,1,0,2,-9,7,2,0,0,4,0,7.5628681,7.4595923,2,0,-9,8,0,1,-32.944111,1,0,0,59,1,4,1,2,1,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4131756,0,0,44.59,59.080002,57.16,56.150002,6,1,1,0,0,9,5,1,537,2862794.5,0,0,3325.6887 -12762,15657,28497,-9,28502,28499,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.63849,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,0,543.16669,442742.66,0,0,4167.5078 -12762,15657,28498,-9,28502,28499,5,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1105.76,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,3,0,543.16669,442742.66,0,0,4167.5078 -12762,15657,28499,28502,-9,-9,1,1,1,44,1,0,4,0,1,-9,2,1,0,0,4,9.0028267,8.7499428,0,2,0,-9,7,0,7,30.880585,0,0,0,37,2,3,3,-9,-9,2019,2,2,9,1,30,30,15,1,0,3,0,26.617357,26.617357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,39.07,39.060001,6,2,3,0,0,8,3,0,543.16669,442742.66,0,0,4167.5078 -12762,15657,28500,-9,28502,28499,3,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.54932,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,3,0,543.16669,442742.66,0,0,4167.5078 -12762,15657,28501,-9,28502,28499,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.6425,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,3,0,543.16669,442742.66,0,0,4167.5078 -12762,15657,28502,28499,-9,-9,2,1,0,37,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,18,0,-7,62.218754,0,0,1,44,1,4,1,2,2,2019,3,1,11,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.07,39.060001,52,55,4,2,3,0,0,8,3,0,543.16669,442742.66,0,0,4167.5078 -12763,15658,28503,-9,28507,28506,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.3354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,3,1,961.16669,151865.66,0,0,3117.3589 -12763,15658,28504,-9,28507,28506,3,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.3932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,3,1,961.16669,151865.66,0,0,3117.3589 -12763,15658,28505,-9,28507,28506,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1121.8812,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,1,961.16669,151865.66,0,0,3117.3589 -12763,15658,28506,28507,-9,-9,2,1,1,45,1,0,4,0,2,-9,2,1,0,0,3,8.3371286,8.5524149,0,2,0,-9,19,0,7,58.070335,0,0,0,38,2,4,1,3,3,2019,1,1,6,0,55,54,15,1,0,1,0,9.8665009,9.8665009,0,0,0,0,0,0,0,0,1,1,0,3.8638783,0,0,0,56.59,49.889999,57.16,56.150002,6,2,3,0,0,8,3,1,961.16669,151865.66,0,0,3117.3589 -12763,15658,28507,28506,-9,-9,1,1,0,38,1,0,4,0,2,-9,2,1,0,0,4,7.7240958,7.7869201,0,2,0,-9,19,0,-7,-123.40512,0,0,1,45,2,3,1,2,2,2019,1,2,9,0,32,33,15,1,0,1,0,9.8276882,9.8276882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,56.59,49.889999,6,2,3,0,0,8,3,1,961.16669,151865.66,0,0,3117.3589 -12763,15658,28508,-9,28507,28506,4,1,1,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.8829,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,3,1,961.16669,151865.66,0,0,3117.3589 -12764,15659,28509,-9,28511,28510,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.2295,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,453,651939.38,0,0,5667.7886 -12764,15659,28510,28511,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,0,3,9.4272614,9.4910164,0,2,0,-9,3,0,1,136.43788,0,0,0,41,1,3,1,-9,-9,2019,1,1,11,3,60,60,15,1,0,1,0,21.623955,21.623955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.209999,50.73,38.509998,59.43,4,1,1,0,0,7,5,1,453,651939.38,0,0,5667.7886 -12764,15659,28511,28510,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,3,7.826612,7.609086,0,2,0,-9,9,0,-1,-59.416569,0,0,1,42,1,3,1,2,2,2019,1,2,10,1,30,32,15,1,0,1,0,9.4527998,9.4527998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,59.43,48.209999,50.73,6,1,1,0,0,7,5,1,453,651939.38,0,0,5667.7886 -12765,15660,28512,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,0,2,8.7059727,8.6277018,0,3,0,0,0,-9,0,-943.27606,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,35,40,15,1,1,-9,0,12.670091,12.670091,0,0,0,0,0,0,0,0,1,1,0,2.1504219,0,0,0,25.6,60.209999,-9,-9,1,1,1,0,0,7,5,1,451,12706.361,0,0,2853.636 -12766,15661,28513,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1044.1866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.7975769,3,40.029999,32.080002,-9,-9,5,1,1,0,0,13,1,0,1101,-156372.66,0,0,1176.2292 -12766,15662,28514,-9,28513,-9,2,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,7.3734341,7.7262793,0,3,0,0,0,-9,0,-1098.5283,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,37,45,15,1,0,-9,1,4.862895,4.862895,0,0,0,0,0,0,0,0,1,1,0,1.1783017,0,0,0,50.650002,60.470001,-9,-9,7,1,1,0,0,13,3,0,120,-125629.09,0,0,1545.7809 -12766,15663,28515,-9,28513,-9,3,1,1,27,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1020.0654,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.67,50.130001,-9,-9,5,1,1,0,0,13,1,0,377,0,0,0,599.15948 -12767,15664,28516,28517,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,5,8.133666,8.2650776,6.7912364,1,0,-9,7,0,1,87.540619,0,0,0,47,2,4,1,3,3,2019,1,1,15,3,30,33,15,1,0,1,0,13.153248,13.153248,0,0,0,0,0,0,0,0,0,0,0,4.4503374,6.9440012,0,0,33.389999,65.879997,57.16,56.150002,7,1,1,0,0,11,4,1,450,47125.039,0,0,3009.7988 -12767,15664,28517,28516,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,7.4592247,7.6028891,0,1,0,-9,7,0,-1,-29.122498,0,0,0,48,2,5,1,2,2,2019,1,2,10,0,41,15,15,1,0,1,0,4.048521,4.048521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.150002,33.389999,65.879997,6,1,1,0,0,11,4,1,450,47125.039,0,0,3009.7988 -12767,15665,28518,-9,28516,28517,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.303381,8.2768164,0,3,0,0,0,-9,0,-929.19617,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,35,37,15,1,0,-9,1,12.211361,12.211361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,11,4,1,114,-38096.086,0,0,2642.0259 -12768,15666,28519,28520,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,7.5055656,7.5007668,0,1,0,-9,7,0,4,1.8398799,0,0,0,50,2,4,1,3,3,2019,1,2,7,0,6,10,15,1,0,1,0,34.229366,34.229366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.419998,42.939999,53,55,7,1,1,0,0,6,5,1,818,390172.69,0,0,3288.0771 -12768,15666,28520,28519,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.849906,8.8668041,0,1,0,-9,7,0,-4,-40.938236,-9,0,0,54,2,3,1,-9,-9,2019,1,1,9,1,50,0,15,1,0,1,0,16.513477,16.513477,0,0,0,0,0,0,0,0,0,0,0,6.9958749,0,0,0,53,55,62.419998,42.939999,6,1,1,0,0,6,5,1,818,390172.69,0,0,3288.0771 -12769,15667,28521,-9,28524,-9,2,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.9673,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,970.75,5956.1479,0,0,2909.9321 -12769,15667,28522,-9,28524,28523,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1088.3077,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,1,0,970.75,5956.1479,0,0,2909.9321 -12769,15667,28523,28524,-9,-9,3,1,1,29,1,1,2,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,2,0,1,0,0,1,0,28,2,2,3,-9,-9,2019,4,1,21,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.049999,21.51,34.049999,44.25,2,1,1,0,0,2,1,0,970.75,5956.1479,0,0,2909.9321 -12769,15667,28524,28523,-9,-9,1,1,0,28,1,1,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,2,0,-1,0,0,1,1,29,3,1,3,2,2,2019,4,3,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,18.711302,1,34.049999,44.25,27.049999,21.51,4,1,1,0,0,2,1,0,970.75,5956.1479,0,0,2909.9321 -12770,15668,28525,28528,-9,-9,1,1,0,34,1,0,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,18,0,-7,75.124146,0,0,1,41,1,3,1,2,3,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.91,35.59,41.880001,45.75,5,1,1,0,0,5,4,1,435.20001,468490.53,0,0,3058.1072 -12770,15668,28526,-9,28525,28528,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.39862,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,435.20001,468490.53,0,0,3058.1072 -12770,15668,28527,-9,28525,28528,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.40033,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,435.20001,468490.53,0,0,3058.1072 -12770,15668,28528,28525,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,0,3,9.1295128,9.0698509,0,2,0,-9,18,0,7,8.8336287,0,0,0,34,2,2,3,3,3,2019,2,1,11,0,50,53,15,1,0,3,0,19.537842,19.537842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.880001,45.75,28.91,35.59,5,1,1,0,0,5,4,1,435.20001,468490.53,0,0,3058.1072 -12770,15668,28529,-9,28525,28528,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.1386,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,435.20001,468490.53,0,0,3058.1072 -12771,15669,28530,28531,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,5,0,8.6105738,8.5545778,1,0,-9,24,0,8,83.048706,0,0,0,67,2,4,3,3,3,2019,4,1,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6932182,8.5332937,0,3,55.09,55.869999,52.91,55.330002,6,1,1,0,0,9,5,1,397,950497.56,0,0,5639.2852 -12771,15669,28531,28530,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,8.0864954,7.9366617,1,0,-9,31,0,-8,-46.486805,0,0,0,75,2,5,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6216612,8.368576,.4939118,3,52.91,55.330002,55.09,55.869999,5,1,1,0,0,9,5,1,397,950497.56,0,0,5639.2852 -12772,15670,28532,28533,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,8.0831518,8.152132,0,1,0,-9,8,0,3,119.93761,0,0,0,41,2,5,1,-9,-9,2019,1,1,10,0,38,38,15,1,0,1,0,9.0802279,9.0802279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,13,5,1,1332.5,269586.88,0,0,3771.7297 -12772,15670,28533,28532,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,0,5,8.5983906,8.2145729,0,1,0,-9,8,0,-3,14.360823,0,0,1,44,2,4,1,1,1,2019,1,2,10,0,40,40,15,1,0,1,0,13.334634,13.334634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,13,5,1,1332.5,269586.88,0,0,3771.7297 -12773,15671,28534,-9,28537,28535,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.81866,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,475.25,138905.56,0,0,1502.9918 -12773,15671,28535,28537,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,0,5,5.527494,5.4118309,0,2,0,-9,20,0,-2,-31.932974,0,0,0,43,1,4,1,2,3,2019,1,2,8,1,35,35,15,1,0,1,0,.71527058,.71527058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.34,61.240002,49.91,58.02,6,1,1,0,0,10,3,1,475.25,138905.56,0,0,1502.9918 -12773,15671,28536,-9,28537,28535,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.69354,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,475.25,138905.56,0,0,1502.9918 -12773,15671,28537,28535,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.2605162,8.6604767,0,2,0,-9,17,0,2,2.1616914,0,0,1,41,2,5,1,2,2,2019,1,1,8,0,29,29,15,1,0,1,0,12.332773,12.332773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,58.02,46.34,61.240002,6,1,1,0,0,10,3,1,475.25,138905.56,0,0,1502.9918 -12774,15672,28538,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,1,2,0,5.8657093,5.138979,3,0,0,0,-9,0,-1138.972,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.5050044,0,0,44.860001,32.400002,-9,-9,6,1,1,0,0,7,2,0,1261,40622.414,0,0,1123.3324 -12775,15673,28539,-9,28540,28541,1,1,1,32,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-965.0777,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.490536,3,12.81,48.740002,-9,-9,2,1,1,0,1,2,1,0,1187,124233.87,0,0,970.56952 -12775,15674,28540,28541,-9,-9,3,1,0,57,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,8,0,0,126.07056,0,0,0,57,3,4,1,3,3,2019,3,2,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.188482,3,42.450001,12.16,36.43,58.860001,4,1,1,0,1,2,4,0,1055.5,607673.63,0,0,2740.3562 -12775,15674,28541,28540,-9,-9,2,1,1,57,1,0,0,0,3,-9,1,1,0,0,4,8.5229149,8.3874998,0,1,0,-9,8,0,0,-35.678337,0,0,0,57,2,1,3,3,3,2019,2,3,13,2,50,45,15,1,0,3,0,10.114435,10.114435,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.173231,1,36.43,58.860001,42.450001,12.16,4,1,1,0,0,2,4,0,1055.5,607673.63,0,0,2740.3562 -12776,15675,28542,28543,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,7.5593982,7.6078167,0,1,0,-9,3,0,-6,0,-9,0,0,55,2,4,1,2,2,2019,1,1,9,0,55,0,15,1,0,1,0,4.7119174,4.7119174,0,0,0,0,0,0,0,0,0,0,0,2.4991124,0,0,0,57.16,56.150002,48.849998,50.529999,2,1,1,0,0,12,3,1,248,272771.13,0,0,1843.6113 -12776,15675,28543,28542,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.336381,7.4601521,0,1,0,-9,3,0,6,0,0,0,0,49,1,4,1,1,1,2019,1,2,10,0,50,50,15,1,0,1,0,4.8692751,4.8692751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.849998,50.529999,57.16,56.150002,6,1,1,0,0,12,3,1,248,272771.13,0,0,1843.6113 -12777,15676,28544,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,0,5,8.1860027,8.2108135,6.7190671,4,0,-9,0,-9,0,-1015.4667,-9,0,1,-9,-9,-9,-9,3,1,2019,-9,0,8,0,20,0,15,1,0,-9,0,19.036877,19.036877,0,0,0,0,0,0,0,0,1,1,0,6.8201141,0,0,0,50.380001,58.02,-9,-9,6,1,1,0,0,6,3,1,682,138287.31,0,0,1515.8761 -12778,15677,28545,28546,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,5,0,8.7649183,8.8785782,1,0,-9,53,0,5,64.526337,0,0,0,71,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.792985,8.5557375,7.9774351,3,62.389999,56.709999,52.23,55.599998,7,1,1,0,0,7,5,1,79.5,3369119.5,0,0,5183.0483 -12778,15677,28546,28545,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.7372694,7.7535582,1,0,-9,52,0,-5,-42.495087,0,0,0,76,1,5,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9778423,8.0127153,0,0,52.23,55.599998,62.389999,56.709999,6,1,1,0,0,7,5,1,79.5,3369119.5,0,0,5183.0483 -12779,15678,28547,-9,28549,28548,5,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.10254,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,5,1,1208.3334,1369868.9,0,0,4986.7144 -12779,15678,28548,28549,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,0,4,8.9938068,8.8721075,0,2,0,-9,29,0,1,52.540981,0,0,0,50,1,2,1,1,1,2019,1,2,10,0,42,42,15,1,0,1,0,22.124592,22.124592,0,0,0,0,0,0,0,0,0,0,0,2.1161654,0,0,0,47.490002,55.02,47.849998,38.849998,4,1,1,0,0,8,5,1,1208.3334,1369868.9,0,0,4986.7144 -12779,15678,28549,28548,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,2,9.1745558,9.1317272,0,2,0,-9,29,0,-1,142.0168,0,0,0,51,1,4,1,3,2,2019,1,1,9,1,12,49,15,1,0,1,0,90.826553,90.826553,0,0,0,0,0,0,0,0,0,0,0,1.7756926,0,0,3,47.849998,38.849998,47.490002,55.02,2,2,3,0,0,8,5,1,1208.3334,1369868.9,0,0,4986.7144 -12779,15679,28550,-9,28549,28548,3,1,0,21,2,0,1,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1017.8779,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6465732,0,0,0,30.700001,62.919998,-9,-9,6,4,2,0,0,8,1,1,396,-233188.13,0,0,-665.97424 -12779,15680,28551,-9,28549,28548,4,1,1,19,2,0,1,0,2,1,2,1,0,0,3,6.493753,6.2258549,0,3,0,0,0,-9,0,-1015.5519,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,17,0,15,1,0,-9,1,4.4634848,4.4634848,0,0,0,0,0,0,0,0,0,0,0,.39779824,0,0,0,43.369999,57.279999,-9,-9,4,4,2,0,0,8,2,1,843,-218089.5,0,0,-1080.1968 -12780,15681,28552,28553,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.7087932,6.4524188,1,0,-9,35,0,0,33.508408,0,0,0,70,2,4,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9274368,6.9044566,0,0,53,47,53.279999,44.34,5,1,1,0,0,9,3,1,173.5,601327.38,0,0,1679.0692 -12780,15681,28553,28552,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.487658,7.8246579,1,0,-9,35,0,0,-61.36047,0,0,0,70,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8741641,7.4518476,0,0,53.279999,44.34,53,47,6,1,1,0,0,9,3,1,173.5,601327.38,0,0,1679.0692 -12781,15682,28554,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,0,4,0,7.4250441,7.1754565,3,0,0,0,-9,0,-989.26788,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.465486,7.9095984,0,0,61.830002,44.419998,-9,-9,6,1,1,0,0,13,3,1,673,510400.53,0,0,1877.8547 -12782,15683,28555,28558,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.9632292,9.0513706,0,2,0,-9,18,0,0,5.5723634,0,0,0,46,2,3,1,-9,-9,2019,1,1,6,0,45,55,15,1,0,1,0,21.214216,21.214216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.049999,37.509998,52,54.509998,6,1,1,0,0,7,4,1,1307,435676.41,0,0,2670.6577 -12782,15683,28556,-9,28558,28555,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.6665,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,1307,435676.41,0,0,2670.6577 -12782,15683,28557,-9,28558,28555,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1107.5107,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,1307,435676.41,0,0,2670.6577 -12782,15683,28558,28555,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,3,7.7184176,7.6630073,0,2,0,-9,18,0,0,-82.008598,0,0,0,46,2,4,1,-9,-9,2019,1,2,7,0,24,25,15,1,0,1,0,10.789595,10.789595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,59.049999,37.509998,2,1,1,0,0,7,4,1,1307,435676.41,0,0,2670.6577 -12783,15684,28559,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,1,1,0,0,2,6.6568942,6.3154001,0,3,0,0,0,-9,0,-948.76544,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,30,30,15,1,0,-9,0,3.6524067,3.6524067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.369999,31.85,-9,-9,6,1,1,0,0,5,2,1,593,40261.566,0,0,981.89581 -12783,15685,28560,-9,28559,-9,2,1,1,23,2,0,0,0,2,-9,97,3,0,0,2,0,0,0,3,0,0,0,-9,0,-975.38342,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3655765,0,0,0,24.620001,47.509998,-9,-9,2,1,1,0,0,5,1,1,454,0,0,0,89.830154 -12784,15686,28561,28562,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,6.5768886,6.6319132,0,1,0,-9,2,0,-12,.85432148,0,0,0,71,3,2,3,-9,-9,2019,2,1,7,0,16,16,15,1,0,4,0,5.433301,5.433301,0,0,0,0,0,0,0,0,1,1,0,6.5043406,0,0,0,58.32,50.220001,62.27,32.41,6,1,1,0,0,7,3,1,998.5,894981.75,0,0,2413.7822 -12784,15686,28562,28561,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,7.0619631,7.4700327,1,0,-9,2,0,12,-38.58997,0,0,0,59,2,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1981235,7.3411965,0,0,62.27,32.41,58.32,50.220001,6,1,1,0,0,7,3,1,998.5,894981.75,0,0,2413.7822 -12785,15687,28563,28564,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,0,5,8.8275986,8.8313932,0,2,0,-9,16,0,-1,-33.57222,-9,0,1,42,1,4,1,2,2,2019,1,2,11,0,52,0,15,1,0,1,0,23.016056,23.016056,0,0,0,0,0,0,0,42,1,1,0,0,0,41.865448,3,48.77,60.16,54.200001,57.490002,6,1,1,0,0,6,5,1,674.33331,477137.81,0,0,4700.6528 -12785,15687,28564,28563,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.3081245,8.3011637,0,2,0,-9,14,0,1,4.7129097,0,0,0,41,1,5,1,2,1,2019,1,1,10,1,44,45,15,1,0,1,0,11.850371,11.850371,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.200001,57.490002,48.77,60.16,6,1,1,0,1,6,5,1,674.33331,477137.81,0,0,4700.6528 -12785,15687,28565,-9,28563,28564,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.09216,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,5,1,674.33331,477137.81,0,0,4700.6528 -12786,15688,28566,-9,28569,28568,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.0527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,493.75,297035.25,0,0,3066.9746 -12786,15688,28567,-9,28569,28568,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.69037,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,493.75,297035.25,0,0,3066.9746 -12786,15688,28568,28569,-9,-9,2,1,1,42,1,0,2,0,2,-9,1,1,0,0,4,8.3966532,8.2522573,0,2,0,-9,15,0,3,-31.230219,0,0,0,39,2,4,1,-9,-9,2019,1,1,5,0,40,40,15,1,0,1,0,11.927855,11.927855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.380001,51.040001,57.16,56.150002,6,1,1,0,0,10,4,1,493.75,297035.25,0,0,3066.9746 -12786,15688,28569,28568,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,7.9428105,7.8396249,0,2,0,-9,15,0,-3,-3.5105107,0,0,1,42,2,4,1,2,3,2019,1,2,7,0,23,24,15,1,0,1,0,13.578224,13.578224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.380001,51.040001,3,1,1,0,0,10,4,1,493.75,297035.25,0,0,3066.9746 -12787,15689,28570,-9,28572,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-963.95465,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,4,3,1,327.33334,189635.22,0,0,1082.9658 -12787,15689,28571,-9,28572,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1109.9758,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,4,3,1,327.33334,189635.22,0,0,1082.9658 -12787,15689,28572,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,1,3,7.1301422,7.9141855,6.5834517,4,0,0,0,-9,0,-933.9444,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,12,26,15,1,1,-9,0,13.255507,13.255507,0,0,0,0,0,0,0,14.5,1,1,0,6.8726845,0,19.595024,3,46.080002,57.200001,-9,-9,5,1,1,0,0,4,3,1,327.33334,189635.22,0,0,1082.9658 -12788,15690,28573,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,1,2,7.173738,7.1027694,0,3,0,0,0,-9,0,-980.43323,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,9,17,0,15,1,1,-9,0,8.6994371,8.6994371,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.376411,0,31.25,34.529999,-9,-9,2,4,2,0,1,8,2,0,1026,638076.06,0,0,53.587105 -12789,15691,28574,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,7.7232404,7.7791414,3,0,0,0,-9,0,-890.56854,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5238447,0,0,46.48,55.599998,-9,-9,5,3,4,0,0,8,3,1,309,277361.5,0,0,1052.6865 -12790,15692,28575,28577,-9,-9,1,1,1,51,1,1,1,0,1,-9,2,1,0,0,3,8.9243689,8.5536299,0,2,0,-9,4,0,5,-129.05537,0,0,0,46,1,3,1,2,1,2019,1,2,24,12,39,41,15,1,1,1,0,18.151041,18.151041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.09,50.369999,46.610001,41.799999,3,1,1,0,0,13,5,1,1587.3334,1494714.1,0,0,4634.9102 -12790,15692,28576,-9,28577,28575,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.0556,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,5,1,1587.3334,1494714.1,0,0,4634.9102 -12790,15692,28577,28575,-9,-9,2,1,0,46,1,1,1,0,1,-9,2,1,0,0,3,8.6824923,8.4658251,0,2,0,-9,4,0,-5,-31.6583,0,0,0,51,1,3,1,-9,-9,2019,1,1,11,0,50,45,15,1,0,1,0,12.70934,12.70934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.610001,41.799999,29.09,50.369999,6,1,1,0,0,13,5,1,1587.3334,1494714.1,0,0,4634.9102 -12791,15693,28578,28579,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,0,5,9.3322735,9.488636,0,1,0,-9,7,0,3,34.940231,0,0,0,32,1,3,1,-9,-9,2019,1,1,7,0,35,40,15,1,0,1,0,37.795036,37.795036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,42.630001,35.75,6,1,1,0,0,8,5,1,511.5,-56003.691,0,0,4931.2783 -12791,15693,28579,28578,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,3,7.9402781,8.0340147,0,1,0,-9,7,0,-3,-33.143597,0,0,1,35,2,5,1,2,2,2019,1,2,22,9,42,15,15,1,1,1,0,10.116071,10.116071,0,0,0,0,0,0,0,0,0,0,0,2.8957512,0,0,0,42.630001,35.75,57.060001,57.759998,5,1,1,0,0,8,5,1,511.5,-56003.691,0,0,4931.2783 -12792,15694,28580,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1079.3651,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.5027561,3,32.150002,18.09,-9,-9,2,1,1,0,1,9,1,0,3171,-61356.523,0,0,1598.0167 -12792,15695,28581,-9,-9,-9,2,1,1,62,3,0,0,0,3,-9,8,3,1,1,1,0,6.4728994,6.5401235,3,0,0,0,-9,0,-943.48352,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.23501022,6.4731774,.82285577,3,42.450001,17.700001,-9,-9,3,1,1,0,0,9,2,0,309,562891.56,0,0,1213.4863 -12793,15696,28582,28584,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.763052,8.6841612,0,2,0,-9,10,0,2,-48.225559,0,0,0,34,2,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,15.928653,15.928653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,45.91,59.889999,7,1,1,0,0,6,5,1,338.33334,88456.516,0,0,3531.4263 -12793,15696,28583,-9,28584,28582,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.55035,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,338.33334,88456.516,0,0,3531.4263 -12793,15696,28584,28582,-9,-9,2,1,0,34,1,0,1,0,2,-9,2,1,0,0,4,8.3067656,8.4816055,0,2,0,-9,17,0,-2,-144.87134,0,0,1,36,2,4,1,2,3,2019,1,1,7,0,40,40,15,1,0,1,0,11.947424,11.947424,0,0,0,0,0,0,0,0,1,1,0,1.2630844,0,0,0,45.91,59.889999,57.16,56.150002,6,1,1,0,0,6,5,1,338.33334,88456.516,0,0,3531.4263 -12794,15697,28585,-9,-9,-9,1,1,0,20,2,0,0,0,3,-9,1,1,0,0,3,8.9884405,9.008647,0,1,0,-9,2,0,-11,9.37644,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,2,11,0,0,19,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,48,57,6,1,1,0,0,10,5,0,415,89634.898,0,0,3759.8887 -12795,15698,28586,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,7.0131192,7.3623013,3,0,0,0,-9,0,-991.15564,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1769524,7.0519009,0,0,58.470001,44.689999,-9,-9,6,1,1,0,0,4,2,1,199,84631.258,0,0,2163.3779 -12796,15699,28587,-9,28588,28589,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1117.7919,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,36.240002,-9,-9,6,1,1,0,0,2,4,1,760.5,271768.38,0,0,3150.5144 -12796,15699,28588,28589,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,3,8.5434875,8.1902819,0,2,0,-9,19,0,-3,91.59584,0,0,1,38,1,5,1,2,2,2019,1,2,11,1,41,37,15,1,0,1,0,8.3295135,8.3295135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.939999,55.880001,48.419998,60.529999,6,1,1,0,0,2,4,1,760.5,271768.38,0,0,3150.5144 -12796,15699,28589,28588,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,5,8.4151011,8.1305351,0,2,0,-9,19,0,3,-34.479675,0,0,0,35,1,3,1,3,2,2019,1,1,9,0,51,53,15,1,0,1,0,8.3717995,8.3717995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.419998,60.529999,51.939999,55.880001,3,1,1,0,0,2,4,1,760.5,271768.38,0,0,3150.5144 -12796,15699,28590,-9,28588,28589,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-721.47955,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,1,760.5,271768.38,0,0,3150.5144 -12797,15700,28591,-9,28593,28592,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.68829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,426.33334,271474.19,0,0,3797.5825 -12797,15700,28592,28593,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,0,5,8.5949268,8.5038557,0,2,0,-9,8,0,-4,79.988075,0,0,0,38,1,4,1,-9,-9,2019,1,1,7,0,39,36,15,1,0,1,0,17.861137,17.861137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,45.91,59.889999,6,1,1,0,0,2,5,1,426.33334,271474.19,0,0,3797.5825 -12797,15700,28593,28592,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.656642,9.1223316,0,2,0,-9,8,0,4,-95.897209,0,0,1,34,2,5,1,2,2,2019,1,2,10,0,77,37,15,1,0,1,0,8.543685,8.543685,0,0,0,0,0,0,0,0,1,1,0,2.4450376,0,0,0,45.91,59.889999,57.060001,57.759998,6,1,1,0,0,2,5,1,426.33334,271474.19,0,0,3797.5825 -12798,15701,28594,28595,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,17,0,-4,-98.447899,0,0,0,72,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8776717,0,0,0,54.099998,59.110001,56.110001,44.400002,6,1,1,0,0,7,2,1,808.5,789845,0,0,1562.9617 -12798,15701,28595,28594,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,3,0,7.4540043,7.8363848,1,0,-9,17,0,4,132.6969,0,0,0,68,1,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4088049,7.2768517,0,0,56.110001,44.400002,54.099998,59.110001,6,1,1,0,0,7,2,1,808.5,789845,0,0,1562.9617 -12799,15702,28596,28597,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.9595842,8.9408855,0,1,0,-9,7,0,4,2.4906056,0,0,0,56,1,3,1,2,3,2019,1,1,7,0,40,35,15,1,0,1,0,27.206491,27.206491,0,0,0,0,0,0,0,0,0,0,0,4.5075507,0,0,0,54.959999,53.169998,60.619999,43.73,6,1,1,0,0,12,5,1,454.5,866277.63,0,0,5122.5635 -12799,15702,28597,28596,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,3,8.9536133,8.5627689,0,1,0,-9,35,0,-4,-95.813568,0,0,0,60,2,3,1,3,3,2019,1,2,6,0,39,38,15,1,0,1,0,19.420832,19.420832,0,0,0,0,0,0,0,0,0,0,0,3.4826164,0,0,0,60.619999,43.73,54.959999,53.169998,6,1,1,0,0,12,5,1,454.5,866277.63,0,0,5122.5635 -12799,15703,28598,-9,28597,28596,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.6234741,8.3993778,0,3,0,0,0,-9,0,-883.93231,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,39,0,15,1,0,-9,1,20.757145,20.757145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.200001,37.380001,-9,-9,6,1,1,0,0,12,5,1,412,-132644.47,0,0,1335.9912 -12800,15704,28599,28601,-9,-9,1,1,1,43,1,0,2,0,1,-9,1,1,0,0,2,9.4859686,9.4901943,0,2,0,-9,15,0,5,-129.5484,0,0,0,38,2,4,3,2,2,2019,2,2,20,7,32,36,15,1,1,3,0,52.685059,52.685059,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8254123,2,44.139999,42.509998,35.779999,38.700001,4,2,3,0,0,7,5,1,865,410486.19,0,0,7250.7114 -12800,15704,28600,-9,28601,28599,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-862.51611,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,7,5,1,865,410486.19,0,0,7250.7114 -12800,15704,28601,28599,-9,-9,2,1,0,38,1,0,2,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,15,0,-5,129.9386,0,0,1,43,1,2,1,2,2,2019,3,1,20,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.935204,3,35.779999,38.700001,44.139999,42.509998,5,2,3,0,0,7,5,1,865,410486.19,0,0,7250.7114 -12801,15705,28602,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,2,0,6.1589746,6.0156832,3,0,0,0,-9,0,-1095.6669,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,1,6.3319268,0,11.171518,0,0,0,0,1,1,0,.79830909,6.5879283,0,0,50.48,18.120001,-9,-9,3,1,1,0,0,9,2,0,2242,299595.44,0,0,2121.1467 -12802,15706,28603,-9,28605,28606,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.57349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,1,1073,290565.19,0,0,2050.5381 -12802,15706,28604,-9,28605,28606,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.9574,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,1073,290565.19,0,0,2050.5381 -12802,15706,28605,28606,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,0,5,7.3239655,7.1787066,0,2,0,-9,16,0,-13,-78.07914,0,0,1,55,2,3,1,3,3,2019,3,2,13,2,8,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7334826,0,0,0,50.240002,58.02,52,54.509998,6,1,1,0,0,12,3,1,1073,290565.19,0,0,2050.5381 -12802,15706,28606,28605,-9,-9,2,1,1,55,1,0,2,0,2,-9,1,1,0,0,3,7.9538789,7.7248454,0,2,0,-9,15,0,13,-184.70058,0,0,0,42,2,5,3,2,1,2019,2,1,10,0,42,40,15,1,0,3,0,9.2115574,9.2115574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,50.240002,58.02,6,1,1,0,0,12,3,1,1073,290565.19,0,0,2050.5381 -12803,15707,28607,28608,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,5,8.456687,8.5203886,0,1,0,-9,33,0,6,52.444954,0,0,0,54,1,4,1,2,2,2019,1,2,5,0,40,40,15,1,0,1,0,11.096538,11.096538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,58.150002,52.91,6,1,1,0,0,7,5,1,1136.5,913861.06,0,0,3968.0063 -12803,15707,28608,28607,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.6865234,8.1363516,0,1,0,-9,32,0,-6,-105.15303,0,0,0,60,1,5,1,2,1,2019,1,1,11,0,25,24,15,1,0,1,0,19.728207,19.728207,0,0,0,0,0,0,0,2,0,0,0,4.4042587,0,10.72245,3,58.150002,52.91,58.049999,54.52,6,1,1,0,0,7,5,1,1136.5,913861.06,0,0,3968.0063 -12804,15708,28609,28612,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,9.0807409,9.0878487,0,2,0,-9,7,0,1,-83.64592,0,0,1,40,1,3,1,-9,-9,2019,1,1,21,9,37,43,15,1,1,1,0,26.093073,26.093073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,58.32,50.220001,6,1,1,0,0,9,5,1,1209.25,1273863.6,0,0,5284.3032 -12804,15708,28610,-9,28609,28612,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.21576,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1209.25,1273863.6,0,0,5284.3032 -12804,15708,28611,-9,28609,28612,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.60992,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1209.25,1273863.6,0,0,5284.3032 -12804,15708,28612,28609,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,3,8.5058193,8.6135855,0,2,0,-9,7,0,-1,-11.903242,0,0,0,41,2,4,1,2,3,2019,1,2,13,1,38,38,15,1,0,1,0,22.071604,22.071604,0,0,0,0,0,0,0,0,1,1,0,1.0943236,0,0,0,58.32,50.220001,46.16,58.619999,6,1,1,0,0,9,5,1,1209.25,1273863.6,0,0,5284.3032 -12805,15709,28613,28614,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.6540575,8.3688841,0,1,0,-9,8,0,-1,37.834229,0,0,0,48,1,4,1,-9,-9,2019,1,1,11,0,37,37,15,1,0,1,0,18.945433,18.945433,0,0,0,0,0,0,0,0,0,0,0,1.2047995,0,0,0,51.830002,57.200001,54.790001,55.860001,7,1,1,0,0,11,5,1,339,689595.63,0,0,4173.041 -12805,15709,28614,28613,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,4,8.7010756,8.8930101,0,1,0,-9,8,0,1,140.67285,0,0,0,47,2,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,26.95611,26.95611,0,0,0,0,0,0,0,0,0,0,0,.83235884,0,0,0,54.790001,55.860001,51.830002,57.200001,7,1,1,0,0,11,5,1,339,689595.63,0,0,4173.041 -12806,15710,28615,-9,-9,-9,1,1,1,54,3,0,0,0,1,1,97,3,0,0,3,0,7.196846,7.662775,3,0,0,0,-9,0,-1043.6072,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1410723,7.377821,0,0,57.93,46.290001,-9,-9,6,1,1,0,0,10,3,1,1241,595407.25,0,0,2513.9436 -12807,15711,28616,-9,28619,28620,3,1,1,17,2,0,3,1,2,-9,7,2,0,0,4,6.0263038,5.9602189,0,2,0,0,0,-9,0,-1011.5917,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1407876,0,0,0,36.790001,62.549999,-9,-9,2,1,1,0,0,1,4,1,592.40002,1203384.3,0,0,3852.5286 -12807,15711,28617,-9,28619,28620,5,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.6714,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,4,1,592.40002,1203384.3,0,0,3852.5286 -12807,15711,28618,-9,28619,28620,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1146.8075,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,1,4,1,592.40002,1203384.3,0,0,3852.5286 -12807,15711,28619,28620,-9,-9,2,1,0,53,1,0,3,0,1,-9,1,1,0,0,5,8.064929,7.6744189,0,2,0,-9,21,0,-1,10.689122,0,0,0,54,1,4,1,3,3,2019,1,1,6,0,18,30,15,1,0,1,0,14.952294,14.952294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,62.490002,55.09,6,1,1,0,0,1,4,1,592.40002,1203384.3,0,0,3852.5286 -12807,15711,28620,28619,-9,-9,1,1,1,54,1,0,3,0,1,-9,2,1,0,0,4,8.5969038,8.5177259,0,2,0,-9,21,0,1,69.222298,0,0,0,53,1,5,1,2,2,2019,1,2,8,0,40,38,15,1,0,1,0,14.994301,14.994301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,51.73,58.82,6,1,1,0,0,1,4,1,592.40002,1203384.3,0,0,3852.5286 -12808,15712,28621,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,0,4,8.5366917,8.4451141,0,3,0,0,0,-9,0,-1039.411,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,18,55,15,1,0,-9,0,37.928638,37.928638,0,0,0,0,0,0,0,0,0,0,0,8.1553936,0,0,0,47.09,52.790001,-9,-9,6,2,3,0,0,8,5,1,1370,417326.72,0,0,3958.9563 -12809,15713,28622,28623,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,0,3,9.0505829,9.2726688,0,1,0,-9,3,0,12,-.88039213,0,0,0,39,1,4,1,-9,-9,2019,1,1,12,0,37,37,15,1,0,1,0,29.75157,29.75157,0,0,0,0,0,0,0,0,0,0,0,6.7976665,0,0,0,42.240002,52.48,56.18,53.849998,3,1,1,0,0,9,5,1,2233.5,2373900.3,0,0,7152.9893 -12809,15713,28623,28622,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,0,4,8.8526583,8.8369379,0,1,0,-9,3,0,-12,46.162384,0,0,1,51,1,3,1,-9,-9,2019,1,2,9,2,47,42,15,1,0,1,0,16.17849,16.17849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.849998,42.240002,52.48,6,1,1,0,0,9,5,1,2233.5,2373900.3,0,0,7152.9893 -12810,15714,28624,28625,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,0,5,0,8.2103672,8.4659824,1,0,-9,19,0,-4,19.061283,0,0,0,65,1,2,3,3,3,2019,4,2,8,0,0,22,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1859059,8.0138969,0,0,57.060001,57.759998,55.18,49.419998,6,1,1,0,0,5,4,1,1361.5,1829518.8,0,0,2644.2849 -12810,15714,28625,28624,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,2,0,7.6448889,7.5661416,1,0,-9,15,0,4,-15.916223,0,0,0,61,1,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9978282,7.6160216,0,0,55.18,49.419998,57.060001,57.759998,6,1,1,0,0,5,4,1,1361.5,1829518.8,0,0,2644.2849 -12811,15715,28626,28627,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,5,0,6.3971109,6.9352698,1,0,-9,50,0,-2,-32.171684,0,0,0,72,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3567948,6.556746,0,0,57.060001,57.759998,52.48,55.599998,6,1,1,0,0,5,3,1,1357.5,1321367.9,0,0,3280.1389 -12811,15715,28627,28626,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.4606762,7.1094947,1,0,-9,50,0,2,64.627235,0,0,0,70,2,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4006166,7.40381,0,0,52.48,55.599998,57.060001,57.759998,7,1,1,0,0,5,3,1,1357.5,1321367.9,0,0,3280.1389 -12812,15716,28628,28631,-9,-9,4,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,7.7103939,7.6664534,0,2,0,-9,10,0,1,-17.128242,0,0,0,37,1,1,3,2,2,2019,2,1,8,0,38,38,15,1,0,3,0,6.5233073,6.5233073,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.577152,1,51.830002,57.200001,27.889999,18.610001,4,1,1,0,0,12,2,0,423.25,80338.008,0,0,836.0788 -12812,15716,28629,-9,28631,28628,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1071.9897,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,12,2,0,423.25,80338.008,0,0,836.0788 -12812,15716,28630,-9,28631,28628,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1012.9022,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,12,2,0,423.25,80338.008,0,0,836.0788 -12812,15716,28631,28628,-9,-9,1,1,0,37,1,0,2,0,1,-9,8,3,1,1,1,4.543489,4.8078876,0,2,0,-9,10,0,-1,107.85462,0,0,1,38,2,4,1,2,2,2019,3,4,15,2,2,2,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.889999,18.610001,51.830002,57.200001,3,1,1,0,1,12,2,0,423.25,80338.008,0,0,836.0788 -12813,15717,28632,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,1,3,0,5.2509141,5.10987,3,0,-9,0,-9,0,-997.09424,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4456944,5.3893952,0,0,39.650002,56.189999,-9,-9,6,1,1,0,0,4,2,1,895,338224.94,0,0,984.53448 -12814,15718,28633,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,2,8.8959675,8.7125807,0,3,0,0,0,-9,0,-943.65198,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,0,15,1,0,-9,0,21.207369,21.207369,0,0,0,0,0,0,0,0,0,0,0,.1899177,0,0,0,57.93,35.759998,-9,-9,4,1,1,0,0,5,5,1,278,463138.78,0,0,1879.4581 -12815,15719,28634,-9,28635,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,1,6.2966743,6.2508664,0,3,0,0,0,-9,0,-1040.0626,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,8,6,18,15,1,1,-9,1,9.2803478,9.2803478,0,0,0,0,0,0,0,42,1,1,0,1.0764028,0,49.593662,3,26.07,29.15,-9,-9,1,1,1,0,1,10,2,1,221,400167.47,0,0,1080.0093 -12815,15720,28635,-9,-9,-9,2,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,7.4379354,7.3809304,3,0,0,0,-9,0,-1172.3839,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,0,0,17.337076,0,0,0,0,1,1,0,7.553721,7.512064,0,0,52.709999,45.959999,-9,-9,2,1,1,0,0,10,3,1,186,562714.06,0,0,851.38031 -12816,15721,28636,28637,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.5060515,7.730505,1,0,-9,9,0,-1,-143.21443,0,0,0,69,3,5,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4904504,0,0,50.650002,53.709999,58.049999,54.52,6,1,1,0,0,6,3,1,1459,1175884.6,0,0,2109.2153 -12816,15721,28637,28636,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,5,0,6.1671877,5.8624206,1,0,-9,9,0,1,-38.05117,0,0,0,68,2,3,3,-9,3,2019,4,2,8,0,0,19,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4767909,5.6502967,0,0,58.049999,54.52,50.650002,53.709999,6,1,1,0,0,6,3,1,1459,1175884.6,0,0,2109.2153 -12817,15722,28638,28639,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.676722,7.8554654,0,1,0,-9,8,0,1,-22.239954,0,0,0,56,2,2,3,3,2,2019,2,1,9,0,32,32,15,1,0,4,0,6.3652368,6.3652368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,54.029999,33.91,6,1,1,0,0,2,4,1,1695.5,287976.13,0,0,3204.7349 -12817,15722,28639,28638,-9,-9,1,1,1,56,1,0,0,0,2,-9,4,3,0,0,2,7.0086498,8.2148762,7.6994433,1,0,-9,8,0,-1,-72.87619,0,0,0,57,2,3,1,3,3,2019,3,2,10,1,25,30,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8122882,7.6375713,0,0,54.029999,33.91,57.330002,53.459999,6,1,1,0,0,2,4,1,1695.5,287976.13,0,0,3204.7349 -12818,15723,28640,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,8.3750553,7.8359766,0,3,0,0,0,-9,0,-953.67438,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,38,40,15,1,0,-9,0,10.679893,10.679893,0,0,0,0,0,0,0,2,0,0,0,0,0,4.7821708,3,62.490002,55.09,-9,-9,7,1,1,0,0,7,4,0,1163,77022.344,0,0,-248.02812 -12819,15724,28641,-9,28642,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1064.1807,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,2,2,0,344,-81674.906,0,0,2089.7244 -12819,15724,28642,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,1,1,0,0,3,6.2510118,6.5027828,0,4,0,0,0,-9,0,-1010.5984,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,20,16,15,1,1,-9,0,3.7768571,3.7768571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.610001,62.709999,-9,-9,2,1,1,0,1,2,2,0,344,-81674.906,0,0,2089.7244 -12819,15725,28643,-9,28642,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,0,3,5.8945646,6.0498185,0,3,0,0,0,-9,0,-963.93585,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,19,7,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.17,48.459999,-9,-9,4,1,1,0,0,2,2,0,277,-40987.984,0,0,1280.9705 -12820,15726,28644,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,8.6636314,8.6043329,0,3,0,0,0,-9,0,-962.77911,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,47,57,15,1,1,-9,0,13.706335,13.706335,0,0,0,0,0,0,0,7,0,0,0,0,0,9.5757027,3,32.84,60.849998,-9,-9,5,1,1,0,0,4,5,0,173,429796.41,0,0,1889.5465 -12821,15727,28645,28646,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,0,3,8.9631977,8.9911966,0,2,0,-9,9,0,-1,28.248806,0,0,0,34,1,5,1,3,2,2019,1,1,14,2,50,35,15,1,0,1,0,15.932261,15.932261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.610001,59.470001,54.689999,57.470001,6,1,1,0,0,10,5,1,1172,293865.41,0,0,4310.7632 -12821,15727,28646,28645,-9,-9,1,1,0,34,1,0,1,0,1,-9,2,1,0,0,5,8.2795963,8.6523714,0,2,0,-9,9,0,1,121.96568,0,0,1,33,2,3,1,2,1,2019,1,2,11,0,39,39,15,1,0,1,0,11.060658,11.060658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,26.610001,59.470001,2,1,1,0,0,10,5,1,1172,293865.41,0,0,4310.7632 -12821,15727,28647,-9,28646,28645,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.27118,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,1172,293865.41,0,0,4310.7632 -12822,15728,28648,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,2,1,0,0,3,8.7059078,8.8881683,6.0656953,1,0,-9,22,0,22,83.565216,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,8,0,45,40,15,1,0,-9,0,9.4851933,9.4851933,0,0,0,0,0,0,0,0,1,1,0,6.7396479,6.1368103,0,0,53.779999,56.439999,50.459999,36.310001,6,1,1,0,0,9,5,0,1577,2023971.5,0,0,4114.0674 -12822,15729,28649,-9,-9,-9,2,1,1,45,2,0,0,0,3,-9,2,1,0,0,3,8.1837158,8.4324255,0,1,0,-9,19,0,-22,29.123995,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,8,0,38,38,15,1,0,-9,0,10.568778,10.568778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.459999,36.310001,53.779999,56.439999,6,1,1,0,0,9,5,0,1111,408620.09,0,0,2791.3826 -12823,15730,28650,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1031.468,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.900002,30.25,-9,-9,4,1,1,0,0,2,1,0,367,163716.38,0,0,2117.3508 -12824,15731,28651,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,4,3,0,0,3,0,7.5536308,7.8620672,3,0,0,0,-9,0,-1078.7836,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,18,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0811739,0,0,57.639999,39.560001,-9,-9,6,1,1,0,0,10,3,1,158,748657.38,0,0,1933.9629 -12825,15732,28652,-9,28653,28655,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.96869,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,643.25,50514.738,0,0,2451.2158 -12825,15732,28653,28655,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.1377621,6.7542539,0,2,0,-9,16,0,4,-74.148926,0,0,1,38,2,4,1,2,2,2019,1,2,7,0,16,16,15,1,0,1,0,8.9519758,8.9519758,0,0,0,0,0,0,0,0,1,1,0,3.4182572,0,0,0,52.599998,52.880001,44.41,43.959999,6,1,1,0,0,5,4,1,643.25,50514.738,0,0,2451.2158 -12825,15732,28654,-9,28653,28655,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-876.81354,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,4,1,643.25,50514.738,0,0,2451.2158 -12825,15732,28655,28653,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,9.1518917,9.0033255,0,2,0,-9,10,0,-4,-61.017914,0,0,0,42,2,3,1,2,2,2019,1,1,1,0,37,37,15,1,0,1,0,22.336479,22.336479,0,0,0,0,0,0,0,0,1,1,0,3.4456193,0,0,0,44.41,43.959999,52.599998,52.880001,4,1,1,0,0,5,4,1,643.25,50514.738,0,0,2451.2158 -12826,15733,28656,-9,-9,28657,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1034.515,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,5,0,750,103253.64,0,0,3255.3979 -12826,15733,28657,-9,-9,-9,1,1,1,48,3,0,1,0,2,-9,1,1,0,0,4,9.1143169,8.7611322,0,4,0,0,0,-9,0,-929.12225,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,55,50,15,1,0,-9,0,16.443399,16.443399,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,55.439999,52.990002,-9,-9,6,1,1,0,0,9,5,0,750,103253.64,0,0,3255.3979 -12827,15734,28658,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,0,2,6.7512097,7.1177082,0,4,0,0,0,-9,0,-1026.9503,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,16,16,15,1,0,-9,0,8.9329662,8.9329662,0,0,0,0,0,0,0,7,1,1,0,2.7679501,0,14.333385,3,58.650002,25.780001,-9,-9,6,4,2,0,0,12,2,0,462,5553.5,0,0,2582.5459 -12827,15734,28659,-9,28658,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1113.2549,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,462,5553.5,0,0,2582.5459 -12828,15735,28660,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,0,3,0,7.0737691,7.426033,3,0,0,0,-9,0,-1057.6226,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2711208,7.5649753,0,0,55.57,40.470001,-9,-9,6,1,1,0,0,11,3,1,401,547996.88,0,0,2150.8823 -12829,15736,28661,28664,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,8.4933701,8.3935022,0,2,0,-9,10,0,2,-26.935091,0,0,0,43,1,3,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,14.229931,14.229931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,45.73,57.57,5,1,1,0,0,2,4,1,1579.5,754269.19,0,0,3250.0029 -12829,15736,28662,-9,28664,28661,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-1021.6296,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,2,4,1,1579.5,754269.19,0,0,3250.0029 -12829,15736,28663,-9,28664,28661,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-855.43829,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,4,2,0,0,2,4,1,1579.5,754269.19,0,0,3250.0029 -12829,15736,28664,28661,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,8.2161942,8.1591539,0,2,0,-9,10,0,-2,55.918934,0,0,1,45,1,4,1,3,3,2019,1,1,13,1,50,45,15,1,0,1,0,8.4089518,8.4089518,0,0,0,0,0,0,0,0,1,1,0,3.667043,0,0,0,45.73,57.57,58.150002,52.91,4,1,1,0,0,2,4,1,1579.5,754269.19,0,0,3250.0029 -12830,15737,28665,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,0,4,8.0892286,7.8585901,0,3,0,-9,0,-9,0,-878.82013,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,0,8.4104252,8.4104252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.060001,44.060001,-9,-9,6,1,1,0,0,12,3,0,302,-10874.928,0,0,1624.1469 -12831,15738,28666,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,4,8.2695541,8.61024,0,3,0,0,0,-9,0,-961.63995,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,45,15,1,0,-9,0,8.6853905,8.6853905,0,0,0,0,0,0,0,0,1,1,0,6.1343694,0,0,0,47.470001,51.080002,-9,-9,6,1,1,0,0,10,4,1,452,290606.19,0,0,2361.2056 -12832,15739,28667,28668,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,5.6972213,5.7788239,1,0,-9,7,0,-2,78.026192,0,0,0,72,2,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4451675,5.4369783,0,0,54.200001,57.490002,51.41,34.889999,2,1,1,0,0,2,2,1,282,251415.17,0,0,1442.7678 -12832,15739,28668,28667,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,5.5156584,5.2962947,1,0,-9,7,0,2,102.29134,0,0,0,70,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3886557,0,0,51.41,34.889999,54.200001,57.490002,6,1,1,0,0,2,2,1,282,251415.17,0,0,1442.7678 -12833,15740,28669,-9,28670,28672,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.1046,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,3,1,397.25,36605.648,0,0,3474.4277 -12833,15740,28670,28672,-9,-9,2,1,0,34,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,0,-103.65987,0,0,1,34,1,4,1,3,1,2019,3,1,11,2,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4137106,0,0,0,49,56,51.77,58.57,5,2,3,0,0,8,3,1,397.25,36605.648,0,0,3474.4277 -12833,15740,28671,-9,28670,28672,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-985.93079,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,3,1,397.25,36605.648,0,0,3474.4277 -12833,15740,28672,28670,-9,-9,1,1,1,34,1,1,2,0,1,-9,2,1,0,0,4,8.3945856,8.5275459,0,2,0,-9,10,0,0,-121.37412,0,0,0,34,1,4,3,1,1,2019,2,2,4,0,40,40,15,1,0,3,0,14.072046,14.072046,0,0,0,0,0,0,0,0,1,1,0,6.3080311,0,0,0,51.77,58.57,49,56,6,2,3,0,0,8,3,1,397.25,36605.648,0,0,3474.4277 -12834,15741,28673,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,5,8.3740444,7.9778509,0,3,0,0,0,-9,0,-1024.8094,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,52,51,15,1,0,-9,0,5.5355077,5.5355077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.330002,53.77,-9,-9,6,1,1,0,0,12,4,1,340,32324.104,0,0,1860.6459 -12835,15742,28674,28675,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,1,3,0,4.1872411,3.7736061,1,0,-9,8,0,5,-99.096695,0,0,0,74,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,121.77547,0,0,0,0,0,1,1,0,3.5874505,3.8607426,0,0,54,46,51,46,6,1,1,0,0,2,1,1,738,955987.06,0,0,2256.0518 -12835,15742,28675,28674,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-5,17.064383,0,0,0,79,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.31634,1,51,46,54,46,5,1,1,0,0,2,1,1,738,955987.06,0,0,2256.0518 -12836,15743,28676,28677,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,0,4,7.5940008,8.1115036,0,1,0,-9,1,-9,-4,-28.076416,-9,0,0,56,2,3,1,2,3,2019,1,1,12,0,45,0,15,1,0,1,0,5.7782426,5.7782426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,60.549999,51.41,56.150002,6,1,1,0,0,11,4,1,1328.5,948564.75,0,0,2762.5447 -12836,15743,28677,28676,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.2264652,8.1382885,0,1,0,-9,1,-9,4,63.413052,-9,0,0,52,2,4,1,2,3,2019,1,2,11,0,40,0,15,1,0,1,0,10.298412,10.298412,0,0,0,0,0,0,0,0,0,0,0,6.7757435,0,0,0,51.41,56.150002,47.93,60.549999,5,1,1,0,0,11,4,1,1328.5,948564.75,0,0,2762.5447 -12837,15744,28678,28679,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,4,0,5.1302514,5.2305331,1,0,-9,8,0,0,-56.937698,0,0,0,87,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2073355,0,0,60.869999,42.099998,53,44,7,1,1,0,0,11,2,1,293,179622.3,0,0,2357.2065 -12837,15744,28679,28678,-9,-9,2,1,0,87,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,0,-16.14436,0,0,0,87,3,4,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5517673,0,0,0,53,44,60.869999,42.099998,6,1,1,0,0,11,2,1,293,179622.3,0,0,2357.2065 -12838,15745,28680,-9,28681,28682,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.94196,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,1355.25,447317.31,0,0,3963.2271 -12838,15745,28681,28682,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,0,3,8.0763283,7.9630785,0,2,0,-9,7,0,-19,-58.36631,0,0,1,55,2,3,1,2,2,2019,1,2,11,1,27,26,15,1,0,1,0,8.7705021,8.7705021,0,0,0,0,0,0,0,0,1,1,0,1.8102627,0,0,0,45.240002,53.41,40.02,45.200001,5,1,1,0,0,5,4,1,1355.25,447317.31,0,0,3963.2271 -12838,15745,28682,28681,-9,-9,2,1,1,55,1,1,2,0,2,-9,2,1,0,0,3,8.5076351,8.4720831,7.629046,2,0,-9,7,0,19,-132.52145,0,0,0,36,1,3,1,2,3,2019,1,1,8,0,48,0,15,1,0,1,0,10.404396,10.404396,0,0,0,0,0,0,0,0,1,1,0,0,7.85953,0,0,40.02,45.200001,45.240002,53.41,3,1,1,0,0,5,4,1,1355.25,447317.31,0,0,3963.2271 -12838,15745,28683,-9,28681,28682,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.05042,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,1355.25,447317.31,0,0,3963.2271 -12839,15746,28684,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,5,0,7.9402132,7.7191148,3,0,0,0,-9,0,-921.56708,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4068856,0,0,47.779999,57.869999,-9,-9,4,1,1,0,0,9,3,1,457,1276290.3,0,0,228.57631 -12840,15747,28685,-9,28690,28689,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.69989,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,801.33331,143368.91,0,0,2672.405 -12840,15747,28686,-9,28690,28689,6,1,0,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.3029,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,4,1,801.33331,143368.91,0,0,2672.405 -12840,15747,28687,-9,28690,28689,4,1,1,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.0661,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,4,1,801.33331,143368.91,0,0,2672.405 -12840,15747,28688,-9,28690,28689,3,1,1,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1104.4531,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,801.33331,143368.91,0,0,2672.405 -12840,15747,28689,28690,-9,-9,2,1,1,39,1,0,4,0,1,-9,2,1,0,0,5,9.1875486,8.8170118,0,2,0,-9,21,0,1,17.590981,0,0,0,38,1,4,3,1,1,2019,2,1,9,1,45,37,15,1,0,3,0,25.291883,25.291883,0,0,0,0,0,0,0,0,0,0,0,6.1831307,0,0,0,51.73,58.82,49.240002,53.09,6,1,1,0,0,2,4,1,801.33331,143368.91,0,0,2672.405 -12840,15747,28690,28689,-9,-9,1,1,0,38,1,0,4,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,21,0,-1,2.8367825,0,0,1,39,1,5,1,1,1,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8591971,0,0,0,49.240002,53.09,51.73,58.82,6,1,1,0,0,2,4,1,801.33331,143368.91,0,0,2672.405 -12841,15748,28691,28693,-9,-9,1,1,1,38,1,0,3,0,2,-9,2,1,0,0,3,8.5058365,8.274416,0,2,0,-9,8,0,7,115.45074,0,0,0,31,3,3,3,-9,-9,2019,2,2,8,0,44,40,15,1,0,3,0,8.8648844,8.8648844,0,0,0,0,0,0,0,82,1,1,0,0,0,120.5256,3,55.509998,51.57,43.84,58.369999,5,1,1,0,0,1,3,0,775.59998,-30772.055,0,0,3165.6851 -12841,15748,28692,-9,28693,28691,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.85425,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,775.59998,-30772.055,0,0,3165.6851 -12841,15748,28693,28691,-9,-9,2,1,0,31,1,0,3,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,8,0,-7,73.006042,0,0,1,38,2,3,1,-9,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.07647,3,43.84,58.369999,55.509998,51.57,6,1,1,0,0,1,3,0,775.59998,-30772.055,0,0,3165.6851 -12841,15748,28694,-9,28693,28691,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.5349,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,3,0,775.59998,-30772.055,0,0,3165.6851 -12841,15748,28695,-9,28693,28691,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.907,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,775.59998,-30772.055,0,0,3165.6851 -12842,15749,28696,28697,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,46,0,2,0,0,0,0,67,3,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,68.5,29.18,6,1,1,0,0,12,1,0,713.5,176718.92,0,0,349.73474 -12842,15749,28697,28696,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-2,0,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.5,29.18,51.240002,58.84,6,1,1,0,0,12,1,0,713.5,176718.92,0,0,349.73474 -12843,15750,28698,-9,-9,-9,1,1,0,60,3,0,1,0,2,-9,2,1,0,0,3,7.6558433,8.3928261,8.1595335,4,0,0,0,-9,0,-1022.9658,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,22,24,15,1,0,-9,0,10.519876,10.519876,0,0,0,0,0,0,0,7,1,1,0,8.8241787,0,3.3049269,3,32.380001,40.32,-9,-9,3,1,1,0,0,6,4,1,606,1092227,0,0,1964.4041 -12844,15751,28699,28700,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,4,0,8.1274748,8.2228985,1,0,-9,6,0,2,-15.432113,0,0,0,73,1,4,1,2,-9,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7350774,7.6742144,0,0,54.790001,55.860001,61.41,46.029999,6,1,1,0,0,4,4,1,474,909455.38,0,0,4613.3154 -12844,15751,28700,28699,-9,-9,2,1,0,73,1,0,0,0,1,-9,1,1,0,0,4,7.7328558,8.4273853,7.0893903,1,0,-9,6,0,-2,-29.992905,0,0,0,75,1,4,3,3,3,2019,2,1,7,0,15,24,15,1,0,4,0,16.534294,16.534294,1,0,0,0,0,0,0,0,1,1,0,4.4061122,7.004653,0,0,61.41,46.029999,54.790001,55.860001,6,1,1,0,0,4,4,1,474,909455.38,0,0,4613.3154 -12845,15752,28701,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,0,3,8.680728,8.6992741,5.7109628,3,0,0,0,-9,0,-946.98169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,85,80,15,1,0,-9,0,8.9849796,8.9849796,0,0,0,0,0,0,0,0,0,0,0,0,6.0886745,0,0,33.369999,60.580002,-9,-9,6,1,1,0,0,12,5,1,2690,965370.69,0,0,1143.5553 -12846,15753,28702,28703,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,65,0,2,-4.2559714,0,0,0,84,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7700701,0,0,0,52.040001,28.74,61.119999,51.57,6,1,1,0,0,4,2,1,1128.5,378006.75,0,0,1481.9153 -12846,15753,28703,28702,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,4.6290603,4.6421447,1,0,-9,65,0,-2,-66.827591,0,0,0,86,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9114618,4.6785212,0,0,61.119999,51.57,52.040001,28.74,7,1,1,0,0,4,2,1,1128.5,378006.75,0,0,1481.9153 -12847,15754,28704,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-947.69373,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,-9,-9,6,1,1,0,0,2,1,1,209,10936.103,0,0,1340.4865 -12848,15755,28705,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,0,4,9.0892754,8.7537336,0,3,0,0,0,-9,0,-1094.8459,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,37,15,1,0,-9,0,29.568087,29.568087,0,0,0,0,0,0,0,0,1,1,0,7.0359988,0,0,0,61.119999,51.57,-9,-9,6,1,1,0,0,6,5,0,4729,1099458.4,0,0,3898.0518 -12849,15756,28706,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,2,1,0,0,3,7.3381953,7.502707,0,3,0,0,0,-9,0,-1014.902,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,41,48,15,1,0,-9,0,4.4446468,4.4446468,0,0,0,0,0,0,0,2,0,0,0,7.2708998,0,3.3549201,3,53.139999,51.279999,-9,-9,7,1,1,0,0,2,3,1,1414,731679.13,0,0,1421.9973 -12850,15757,28707,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,5,8.1078863,8.1042328,0,3,0,-9,0,-9,0,-1008.989,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,50,0,15,1,0,-9,0,10.143536,10.143536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,6,4,1,574,-9068.3574,0,0,1629.6907 -12851,15758,28708,-9,-9,-9,2,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,8.136919,8.0652361,0,3,0,0,0,-9,0,-911.01282,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,44,40,15,1,0,-9,0,8.8456573,8.8456573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.119999,57.279999,-9,-9,5,1,1,0,0,11,4,0,1051,66194.32,0,0,1330.2351 -12851,15759,28709,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,8.172965,8.0358915,0,3,0,0,0,-9,0,-834.05798,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,0,7.4554706,7.4554706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.459999,52.150002,-9,-9,6,1,1,0,0,11,3,0,116,-72546.711,0,0,1167.1348 -12852,15760,28710,28711,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,8.557497,8.2787294,1,0,-9,37,0,2,125.38188,0,0,0,63,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.9248145,8.4132299,0,3,55.189999,54.259998,57.16,56.150002,6,1,1,0,0,7,4,1,446,3309707,0,0,2658.0188 -12852,15760,28711,28710,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,5.7805023,6.0316772,1,0,-9,9,0,-2,-27.895895,0,0,0,65,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.175281,6.4289041,0,0,57.16,56.150002,55.189999,54.259998,6,1,1,0,0,7,4,1,446,3309707,0,0,2658.0188 -12853,15761,28712,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,3,7.3854856,7.4054327,0,3,0,0,0,-9,0,-978.58728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,23,22,15,1,0,-9,0,8.8940144,8.8940144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.959999,53.580002,-9,-9,6,1,1,0,0,6,3,1,802,302788.06,0,0,583.85071 -12854,15762,28713,28714,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,9.1247702,9.6022825,0,1,0,-9,30,0,-2,93.890572,0,0,0,59,1,4,3,2,2,2019,2,2,8,1,38,37,15,1,0,3,0,32.798565,32.798565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,58.299999,47.380001,6,1,1,0,0,13,5,0,505.5,1123971.8,0,0,4064.4531 -12854,15762,28714,28713,-9,-9,2,1,0,59,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,10,0,2,-22.356539,0,0,0,57,1,4,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.2607758,0,9.3782806,3,58.299999,47.380001,48.869999,58.549999,7,1,1,1,0,13,5,0,505.5,1123971.8,0,0,4064.4531 -12855,15763,28715,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,8.042119,7.9115195,0,3,0,-9,0,-9,0,-969.2948,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,50,0,15,1,0,-9,0,7.48522,7.48522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.810001,53.540001,-9,-9,4,1,1,0,0,10,4,0,366,131057.11,0,0,2103.8835 -12856,15764,28716,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,4,8.8144808,8.6460018,6.1697884,3,0,0,0,-9,0,-920.93042,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,38,15,1,0,-9,0,18.854414,18.854414,0,0,0,0,0,0,0,0,0,0,0,6.4915385,0,0,0,51.77,58.57,-9,-9,5,1,1,0,0,13,5,1,2009,1992588.1,0,0,1383.984 -12856,15765,28717,-9,28716,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,0,5,7.5839858,7.5293159,0,3,0,0,0,-9,0,-927.65802,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,32,31,15,1,0,-9,1,6.1652598,6.1652598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.810001,59.639999,-9,-9,6,1,1,0,0,13,3,1,389,205115.42,0,0,1479.9421 -12857,15766,28718,28719,-9,-9,2,1,1,55,1,0,0,0,3,-9,1,1,0,0,3,9.463316,9.6913328,0,1,0,-9,3,0,1,-2.2389028,0,0,0,54,1,4,1,-9,-9,2019,1,1,6,0,39,40,15,1,0,1,0,50.477112,50.477112,0,0,0,0,0,0,0,0,0,0,0,5.6099072,0,0,0,43.130001,48.34,57.16,56.150002,5,1,1,0,0,10,5,1,589.5,1621104.5,0,0,69052.313 -12857,15766,28719,28718,-9,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,0,4,9.4867134,9.5214167,0,1,0,-9,3,0,-1,41.914135,0,0,0,55,3,3,1,2,2,2019,1,2,8,0,50,40,15,1,0,1,0,25.186554,25.186554,0,0,0,0,0,0,0,0,0,0,0,7.346529,0,0,0,57.16,56.150002,43.130001,48.34,5,1,1,0,0,10,5,1,589.5,1621104.5,0,0,69052.313 -12858,15767,28720,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,0,4,7.8248482,7.89821,0,3,0,-9,0,-9,0,-1044.7321,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,45,0,15,1,0,-9,0,7.1294136,7.1294136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,4,1,1,0,0,6,3,0,1100,166836.41,0,0,689.11945 -12859,15768,28721,28722,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,4,8.0654535,7.8520193,0,1,0,-9,24,0,-2,-2.876796,0,0,1,45,2,4,1,2,2,2019,1,2,11,0,39,25,15,1,0,1,0,7.4797754,7.4797754,0,0,0,0,0,0,0,0,0,0,0,1.8012164,0,0,0,41.470001,56.810001,52.82,53.970001,6,1,1,0,0,9,5,1,466.5,40845.484,0,0,3038.5383 -12859,15768,28722,28721,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.7005615,8.7148561,0,1,0,-9,24,0,2,4.0149689,0,0,0,43,2,4,1,2,2,2019,1,1,9,0,37,41,15,1,0,1,0,14.438813,14.438813,0,0,0,0,0,0,0,0,0,0,0,.83418941,0,0,0,52.82,53.970001,41.470001,56.810001,6,1,1,0,0,9,5,1,466.5,40845.484,0,0,3038.5383 -12859,15769,28723,-9,28721,28722,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.1385007,7.2056661,0,3,0,0,0,-9,0,-909.38422,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,18,20,15,1,0,-9,1,8.8427448,8.8427448,0,0,0,0,0,0,0,0,0,0,0,3.628535,0,0,0,46,58,-9,-9,5,1,1,0,0,9,2,1,2306,-128177.77,0,0,443.09424 -12859,15770,28724,-9,28721,28722,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-875.65796,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3880816,0,0,0,46,58,-9,-9,5,1,1,0,0,9,1,1,317,-8661.8809,0,0,-153.21999 -12860,15771,28725,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.1056662,8.3915043,0,3,0,0,0,-9,0,-981.88672,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,38,40,15,1,0,-9,0,9.6719799,9.6719799,0,0,0,0,0,0,0,0,1,1,0,1.432317,0,0,0,54.939999,50.330002,-9,-9,6,4,2,0,0,6,4,0,313,-76550.664,0,0,1168.2532 -12861,15772,28726,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-957.45129,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0496995,0,0,0,56.48,36.43,-9,-9,6,1,1,0,0,6,1,1,179,63646,0,0,-867.4588 -12862,15773,28727,28728,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,1,0,6.6157103,6.4714041,1,0,-9,6,0,2,-184.71761,0,0,0,64,1,4,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1631956,6.5921082,0,0,57.16,24.34,54.200001,57.490002,6,1,1,0,0,8,2,1,229.5,1415628.1,0,0,2063.1501 -12862,15773,28728,28727,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-2,22.280235,0,0,0,66,1,1,3,-9,-9,2019,4,1,9,0,0,52,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.076323,0,0,3,54.200001,57.490002,57.16,24.34,6,1,1,0,0,8,2,1,229.5,1415628.1,0,0,2063.1501 -12863,15774,28729,28730,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.6202593,8.4636459,0,1,0,-9,12,0,-1,-18.131973,0,0,1,34,1,4,1,2,2,2019,1,1,7,0,40,38,15,1,0,1,0,15.804141,15.804141,0,0,0,0,0,0,0,0,0,0,0,3.1345606,0,0,0,55.790001,52.619999,54.200001,57.490002,6,1,1,0,0,7,5,1,985.5,-1594.25,0,0,2393.5708 -12863,15774,28730,28729,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,8.8854208,8.5259762,0,1,0,-9,12,0,1,-110.62994,0,0,0,33,1,4,1,3,3,2019,1,2,4,0,49,47,15,1,0,1,0,13.436649,13.436649,0,0,0,0,0,0,0,0,0,0,0,3.2651026,0,0,0,54.200001,57.490002,55.790001,52.619999,7,1,1,0,0,7,5,1,985.5,-1594.25,0,0,2393.5708 -12864,15775,28731,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,0,4,8.2205048,7.9461679,0,3,0,0,0,-9,0,-1054.0975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,40,40,15,1,0,-9,0,11.704357,11.704357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.07,54.560001,-9,-9,4,1,1,0,0,13,4,1,420,424713.41,0,0,2179.6799 -12865,15776,28732,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,4,0,7.6551147,7.662334,3,0,0,0,-9,0,-1105.7811,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.12140196,7.6967292,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,9,3,1,305,599940.63,0,0,2222.3813 -12866,15777,28733,-9,28736,28735,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.25549,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,13,4,1,1062.25,56287.695,0,0,3856.6628 -12866,15777,28734,-9,28736,28735,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.76862,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,13,4,1,1062.25,56287.695,0,0,3856.6628 -12866,15777,28735,28736,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.2722368,8.4252186,0,2,0,-9,14,0,0,62.442467,0,0,0,42,1,5,1,2,3,2019,1,1,10,0,37,37,15,1,0,1,0,12.242373,12.242373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,35.75,66.169998,6,1,1,0,0,13,4,1,1062.25,56287.695,0,0,3856.6628 -12866,15777,28736,28735,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,8.4852505,8.5161991,0,2,0,-9,14,0,0,-146.97049,0,0,1,42,2,4,1,3,1,2019,1,2,24,11,33,37,15,1,1,1,0,19.119484,19.119484,0,0,0,0,0,0,0,0,1,1,0,6.2378745,0,0,0,35.75,66.169998,59.529999,56.439999,6,4,2,0,0,13,4,1,1062.25,56287.695,0,0,3856.6628 -12867,15778,28737,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,0,3,0,4.5553837,4.5138106,3,0,0,0,-9,0,-1033.8705,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5598888,0,0,50,47,-9,-9,6,2,3,0,0,7,2,1,1049,672582.38,0,0,-230.60294 -12868,15779,28738,28739,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.8102808,6.6864786,1,0,-9,50,0,-2,-8.9310942,0,0,0,78,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.5942426,0,3,53.099998,52.619999,56.5,48.330002,6,1,1,0,0,2,2,1,1376.5,357737.91,0,0,1813.3674 -12868,15779,28739,28738,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,2,29.420984,0,0,0,76,2,3,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.1761425,0,0,0,56.5,48.330002,53.099998,52.619999,6,1,1,0,0,2,2,1,1376.5,357737.91,0,0,1813.3674 -12869,15780,28740,28741,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,5.2276416,5.1675544,1,0,-9,20,0,-4,-83.832657,0,0,0,72,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8241153,5.3427887,0,0,42.220001,56.110001,60.290001,52.110001,7,1,1,0,0,9,3,1,673,867077.94,0,0,2296.2964 -12869,15780,28741,28740,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.6976385,7.3436275,1,0,-9,20,0,4,-17.402115,0,0,0,68,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1357467,7.901597,0,0,60.290001,52.110001,42.220001,56.110001,7,1,1,0,0,9,3,1,673,867077.94,0,0,2296.2964 -12870,15781,28742,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,3,0,6.6615739,6.9152198,3,0,0,0,-9,0,-1047.8364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9912896,0,0,53,47,-9,-9,5,1,1,0,0,4,2,1,789,393876.25,0,0,1252.1584 -12871,15782,28743,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,0,4,7.7236032,7.678957,0,3,0,0,0,-9,0,-925.81073,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,24,0,15,1,0,-9,0,8.1347008,8.1347008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.689999,53.790001,-9,-9,4,2,3,0,0,2,3,0,512,428081.66,0,0,1781.5044 -12872,15783,28744,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,1,1,0,0,3,7.069695,7.4937134,0,3,0,0,0,-9,0,-984.18823,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,40,50,15,1,0,-9,0,3.2262142,3.2262142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.130001,59.369999,-9,-9,5,1,1,0,0,2,2,1,1195,-25476.941,0,0,465.51694 -12873,15784,28745,28746,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,-4,0,0,0,0,71,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,2.1959956,0,1.0976014,3,49,47,45.259998,45.610001,4,1,1,0,0,12,1,1,646,223090.64,0,0,1795.3428 -12873,15784,28746,28745,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,4,0,0,0,0,67,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.259998,45.610001,49,47,4,1,1,0,0,12,1,1,646,223090.64,0,0,1795.3428 -12874,15785,28747,28748,-9,-9,1,1,1,59,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,8,0,2,20.62282,0,0,0,57,3,2,1,2,2,2019,3,2,18,6,0,38,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1576014,0,0,0,51.02,49.389999,52.900002,34.310001,3,1,1,1,0,5,3,1,637.5,1311924.5,0,0,1921.1519 -12874,15785,28748,28747,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,0,2,8.215641,8.0843029,4.9469967,1,0,-9,8,0,-2,62.244713,0,0,0,59,2,3,3,3,3,2019,2,1,16,3,37,38,15,1,0,3,0,12.438738,12.438738,0,0,0,0,0,0,0,0,1,1,0,4.0845299,5.5054874,0,0,52.900002,34.310001,51.02,49.389999,6,1,1,0,1,5,3,1,637.5,1311924.5,0,0,1921.1519 -12875,15786,28749,28750,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,0,2,7.3118033,7.4699326,0,2,0,-9,9,0,1,90.087112,0,0,1,35,1,4,1,2,2,2019,1,2,11,0,16,22,15,1,0,1,0,15.723303,15.723303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.689999,29.25,58.720001,51.290001,7,1,1,0,0,9,4,1,1116.3334,78066.813,0,0,2771.2979 -12875,15786,28750,28749,-9,-9,2,1,1,35,1,0,1,0,1,-9,2,1,0,0,4,8.3503895,8.6681013,0,2,0,-9,9,0,-1,-23.344934,0,0,0,36,1,2,1,1,2,2019,1,1,7,1,38,39,15,1,0,1,0,13.700383,13.700383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.720001,51.290001,60.689999,29.25,6,1,1,0,0,9,4,1,1116.3334,78066.813,0,0,2771.2979 -12875,15786,28751,-9,28749,28750,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-866.03839,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,4,1,1116.3334,78066.813,0,0,2771.2979 -12876,15787,28752,28753,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.065331,6.9909434,1,0,-9,10,0,-5,50.884663,0,0,0,73,3,2,3,3,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3092132,7.0077949,0,0,53.450001,49.529999,59.709999,21.42,6,1,1,0,0,5,3,1,224.5,1141374.3,0,0,3126.4453 -12876,15787,28753,28752,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,7.1862726,7.6137013,7.0223045,1,0,-9,10,0,5,36.281551,0,0,0,68,1,4,3,3,3,2019,4,1,11,2,15,20,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0491524,7.1143384,0,0,59.709999,21.42,53.450001,49.529999,6,1,1,0,0,5,3,1,224.5,1141374.3,0,0,3126.4453 -12877,15788,28754,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,4,8.5249186,8.7216101,0,3,0,0,0,-9,0,-887.60217,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,30,21,15,1,0,-9,0,17.511333,17.511333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,5,1,1,0,0,7,4,1,294,673903.94,0,0,1572.5365 -12878,15789,28755,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,1,1,0,7.5662541,7.2244205,3,0,0,0,-9,0,-1002.5696,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4279113,0,0,51.639999,12.2,-9,-9,4,1,1,0,1,12,3,0,413,503237.63,0,0,992.23309 -12879,15790,28756,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,4,0,4.802947,5.1792784,3,0,0,0,-9,0,-964.44281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.5797861,4.9625049,0,0,52.93,55.310001,-9,-9,6,1,1,0,0,9,2,1,1780,241975.72,0,0,404.92197 -12880,15791,28757,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,5.003933,4.8284807,3,0,0,0,-9,0,-986.56262,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7053199,0,0,44.040001,40.369999,-9,-9,7,1,1,0,0,6,1,1,280,389642.28,0,0,830.84546 -12881,15792,28758,-9,28760,28759,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-865.90509,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,4,5,0,0,7,5,1,586,589785.13,0,0,5238.3237 -12881,15792,28759,28760,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,9.4589338,9.5476332,0,2,0,-9,14,0,5,90.196724,0,0,0,36,1,4,3,2,1,2019,2,1,12,0,50,48,15,1,0,3,0,30.044445,30.044445,0,0,0,0,0,0,0,0,0,0,0,4.5418949,0,0,0,37.41,56.09,38.119999,59.41,5,4,5,0,0,7,5,1,586,589785.13,0,0,5238.3237 -12881,15792,28760,28759,-9,-9,1,1,0,36,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,14,0,-5,-41.853317,0,0,1,41,1,4,1,1,1,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3366375,0,0,0,38.119999,59.41,37.41,56.09,5,4,5,0,0,7,5,1,586,589785.13,0,0,5238.3237 -12882,15793,28761,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,3,8.7913361,8.5685883,0,3,0,0,0,-9,0,-962.85077,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,9,1,40,42,15,1,0,-9,0,15.705469,15.705469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.009998,49.849998,-9,-9,6,3,4,0,0,8,5,0,279,94891.102,0,0,2426.1362 -12882,15794,28762,-9,-9,-9,2,1,0,38,2,0,0,0,1,-9,1,1,0,0,4,7.9399133,8.0326881,0,3,0,0,0,-9,0,-1064.4517,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,30,0,15,1,0,-9,0,9.4472389,9.4472389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.689999,58.349998,-9,-9,6,3,4,0,0,8,3,0,987,-103599.7,0,0,1978.0867 -12882,15795,28763,-9,28762,-9,3,1,0,32,2,0,0,0,2,-9,2,1,0,0,4,8.6557274,8.4075346,0,3,0,0,0,-9,0,-1195.2596,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,43,41,15,1,0,-9,0,12.05686,12.05686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.060001,53.470001,-9,-9,6,3,4,0,0,8,5,0,466,-33164.215,0,0,841.95197 -12882,15796,28764,-9,-9,-9,4,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.2320719,8.2596407,0,3,0,0,0,-9,0,-1070.3351,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,46,40,15,1,0,-9,0,11.316042,11.316042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.759998,51.169998,-9,-9,5,3,4,0,0,8,4,0,1173,354717.03,0,0,1583.6803 -12883,15797,28765,28766,-9,-9,3,1,1,35,1,0,1,0,2,-9,2,1,0,0,4,8.2709675,8.5897112,0,2,0,-9,5,0,-14,96.695328,-9,0,0,49,1,4,1,-9,-9,2019,1,1,6,0,42,0,15,1,0,1,0,13.014034,13.014034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,57.16,56.150002,7,2,3,0,0,9,5,1,517.33331,279522.47,0,0,6984.0137 -12883,15797,28766,28765,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,9.2359381,9.1401625,4.4324784,2,0,-9,5,0,14,-54.888088,0,0,0,35,2,4,1,2,1,2019,1,3,0,0,44,38,15,1,0,1,0,22.727539,22.727539,0,0,0,0,0,0,0,0,0,0,0,7.7314892,0,0,0,57.16,56.150002,55.189999,54.259998,6,1,1,0,0,9,5,1,517.33331,279522.47,0,0,6984.0137 -12883,15797,28767,-9,28766,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,6.7157178,6.7786412,5.1821623,2,0,0,0,-9,0,-1014.7577,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3462143,0,0,0,38.880001,61.849998,-9,-9,4,1,1,0,0,9,5,1,517.33331,279522.47,0,0,6984.0137 -12884,15798,28768,28769,-9,-9,2,1,1,41,1,0,0,0,1,-9,2,1,0,0,3,8.7911768,8.8939629,0,1,0,-9,18,0,-7,59.526329,0,0,0,48,1,3,1,1,1,2019,1,1,8,0,57,57,15,1,0,1,0,15.83043,15.83043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,49.689999,52.990002,6,1,1,0,0,10,5,1,489,206297.22,0,0,4169.2432 -12884,15798,28769,28768,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,8.7889376,8.8329325,0,1,0,-9,18,0,7,-67.900162,0,0,0,41,1,3,1,2,1,2019,1,2,15,4,43,30,15,1,1,1,0,12.471813,12.471813,0,0,0,0,0,0,0,0,0,0,0,4.6502132,0,0,0,49.689999,52.990002,57.330002,53.459999,5,2,3,0,0,10,5,1,489,206297.22,0,0,4169.2432 -12885,15799,28770,28771,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,5,0,8.0959511,8.0574198,1,0,-9,26,0,-1,75.160027,0,0,0,61,1,5,3,1,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.542244,7.6581898,0,0,57.060001,57.759998,55.240002,47.84,7,1,1,0,0,6,4,1,979,2075600.5,0,0,3903.1704 -12885,15799,28771,28770,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,5,0,8.391798,8.0574541,1,0,-9,29,0,1,94.603226,0,0,0,60,1,5,3,2,2,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.937583,7.9095168,0,0,55.240002,47.84,57.060001,57.759998,7,1,1,0,0,6,4,1,979,2075600.5,0,0,3903.1704 -12886,15800,28772,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,0,3,7.6693077,8.236577,0,3,0,0,0,-9,0,-1143.0179,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,49,15,1,0,-9,0,8.5043459,8.5043459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,7,4,1,932,183462.2,0,0,1048.1329 -12887,15801,28773,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-847.11676,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,5,1,1,0,0,4,1,1,4267,-142185.8,0,0,1723.3782 -12888,15802,28774,28775,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,0,3,8.0830402,8.0684042,0,2,0,-9,11,0,4,-87.509491,-9,0,0,52,2,4,1,-9,-9,2019,1,1,10,0,21,0,15,1,0,1,0,15.082888,15.082888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.27,43.84,57.16,56.150002,6,1,1,0,0,6,5,1,631.5,443840.06,0,0,4125.9111 -12888,15802,28775,28774,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.6301785,8.7237253,0,2,0,-9,14,0,-4,48.2677,0,0,0,56,2,3,1,2,2,2019,1,2,7,0,60,60,15,1,0,1,0,13.859034,13.859034,0,0,0,0,0,0,0,0,0,0,0,1.2550002,0,0,0,57.16,56.150002,54.27,43.84,6,1,1,0,0,6,5,1,631.5,443840.06,0,0,4125.9111 -12888,15803,28776,-9,28774,28775,4,1,1,26,2,0,1,0,2,-9,2,1,0,0,3,9.2327518,8.8874807,0,3,0,0,0,-9,0,-1016.785,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,0,15,1,0,-9,1,16.505718,16.505718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.939999,49.529999,-9,-9,6,1,1,0,0,6,5,1,936,-14914.194,0,0,3115.7966 -12888,15804,28777,-9,28774,28775,6,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,8.1509542,7.9213467,0,3,0,0,0,-9,0,-925.46405,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,78,15,1,0,-9,1,7.9537249,7.9537249,0,0,0,0,0,0,0,0,0,0,0,6.1032734,0,0,0,41.43,56.369999,-9,-9,5,1,1,0,0,6,4,1,1997,63153.555,0,0,1181.5098 -12889,15805,28778,28779,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.9199677,8.2326565,1,0,-9,50,0,0,-45.779392,0,0,0,69,2,3,3,2,1,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4594531,7.7331214,0,0,56.330002,51.02,61.040001,39.41,6,1,1,0,0,6,4,1,532.5,1227870.8,0,0,5848.6367 -12889,15805,28779,28778,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.6882663,7.525188,1,0,-9,50,0,0,-213.44583,0,0,0,69,2,4,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.5564508,7.7732725,0,0,61.040001,39.41,56.330002,51.02,6,1,1,0,0,6,4,1,532.5,1227870.8,0,0,5848.6367 -12890,15806,28780,-9,28782,28781,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-951.22906,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,4,2,0,0,8,3,1,404.75,39552.629,0,0,2884.249 -12890,15806,28781,28782,-9,-9,2,1,1,49,1,0,2,0,3,-9,97,3,0,1,3,8.0604105,8.3459883,0,2,0,-9,20,0,-5,64.432426,0,0,0,54,2,2,3,3,3,2019,4,1,11,0,40,58,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,11.294593,3,59.700001,53.75,42.110001,29.549999,5,3,4,0,1,8,3,1,404.75,39552.629,0,0,2884.249 -12890,15806,28782,28781,-9,-9,1,1,0,54,1,0,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,20,0,5,-2.4335432,0,0,0,49,3,3,3,3,2,2019,4,2,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.110001,29.549999,59.700001,53.75,3,1,1,0,1,8,3,1,404.75,39552.629,0,0,2884.249 -12890,15806,28783,-9,28782,28781,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-975.36456,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,45,-9,-9,4,4,2,0,0,8,3,1,404.75,39552.629,0,0,2884.249 -12890,15807,28784,-9,28782,28781,3,1,0,19,2,0,2,0,2,-9,2,1,0,0,3,7.6303883,7.80582,0,3,0,0,0,-9,0,-965.07959,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,25,11,58,0,15,1,1,-9,1,4.9063926,4.9063926,0,0,0,0,0,0,0,14.5,1,0,1,0,0,11.939299,3,12.45,59.240002,-9,-9,3,4,2,0,0,8,3,1,380,-12752.591,0,0,447.09998 -12891,15808,28785,28786,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.7134194,7.5652561,1,0,-9,15,0,8,20.372051,0,0,0,58,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.537745,7.8403597,0,0,57.73,54.529999,29.709999,39.360001,6,1,1,0,0,7,3,0,1057.5,926741.13,0,0,1938.158 -12891,15808,28786,28785,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,15,0,-8,-46.315598,0,0,0,66,3,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.9667983,0,9.4826889,3,29.709999,39.360001,57.73,54.529999,6,1,1,0,0,7,3,0,1057.5,926741.13,0,0,1938.158 -12892,15809,28787,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1122.6306,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.38079315,0,0,0,51.209999,31.049999,-9,-9,7,1,1,0,0,1,1,1,583,-5331.8574,0,0,1017.251 -12893,15810,28788,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,-9,0,1,0,-788.08588,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4718974,0,0,0,55.790001,47.77,-9,-9,6,1,1,0,0,13,1,1,133,216334.88,0,0,1346.5334 -12893,15811,28789,-9,-9,28788,2,1,0,39,2,0,0,0,2,-9,2,1,0,0,3,7.1715965,7.3888936,0,3,0,0,0,-9,0,-973.60187,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,5,0,33,22,15,1,0,-9,1,4.73774,4.73774,0,0,0,0,0,0,0,0,1,1,0,5.1336541,0,0,0,49.509998,41.82,-9,-9,1,1,1,0,0,13,3,1,898,-97508.063,0,0,360.50089 -12893,15812,28790,-9,-9,28788,3,1,1,37,2,0,0,0,2,-9,2,1,0,0,5,8.1990786,8.2174959,0,3,0,0,0,-9,0,-946.41656,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,37,40,15,1,0,-9,1,12.772743,12.772743,0,0,0,0,0,0,0,0,1,1,0,4.8150821,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,4,1,244,123293.91,0,0,1802.7648 -12894,15813,28791,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,0,3,0,7.5411568,7.9072061,3,0,0,0,-9,0,-1002.8145,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,19,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68956167,8.0148869,0,0,53.779999,48.41,-9,-9,6,1,1,0,0,4,3,1,514,1109729.1,0,0,1058.5804 -12895,15814,28792,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,1,3,0,6.9714689,7.0687466,3,0,0,0,-9,0,-897.96143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6098423,0,0,50.330002,29.450001,-9,-9,7,1,1,0,0,9,2,1,923,224210.08,0,0,636.89526 -12896,15815,28793,28794,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,4,8.4619455,8.583683,0,1,0,-9,1,-9,1,64.643883,-9,0,0,36,1,4,1,2,2,2019,1,2,8,0,46,0,15,1,0,1,0,12.977655,12.977655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,47.490002,55.02,6,1,1,0,0,11,5,0,1076.5,51484.383,0,0,3454.2363 -12896,15815,28794,28793,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,8.0641584,8.2417316,0,1,0,-9,1,-9,-1,-85.540672,-9,0,1,37,1,4,1,2,2,2019,1,1,6,0,41,0,15,1,0,1,0,8.8100891,8.8100891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.490002,55.02,48.869999,58.549999,7,1,1,0,0,11,5,0,1076.5,51484.383,0,0,3454.2363 -12897,15816,28795,-9,28797,28796,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1090.9604,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,5,1,759.5,955129.25,0,0,9172.3477 -12897,15816,28796,28797,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,5,9.7912197,9.6662731,0,2,0,-9,17,0,4,.22876753,0,0,0,46,2,4,1,3,3,2019,1,1,6,0,35,30,15,1,0,1,0,47.07629,47.07629,0,0,0,0,0,0,0,0,0,0,0,2.7647946,0,0,0,57.060001,57.759998,44,52.68,6,1,1,0,0,6,5,1,759.5,955129.25,0,0,9172.3477 -12897,15816,28797,28796,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.7453232,8.8428135,0,2,0,-9,19,0,-4,46.90942,0,0,0,50,1,5,1,2,2,2019,1,2,12,0,38,30,15,1,0,1,0,18.634096,18.634096,0,0,0,0,0,0,0,0,0,0,0,7.3650684,0,0,0,44,52.68,57.060001,57.759998,2,1,1,0,0,6,5,1,759.5,955129.25,0,0,9172.3477 -12897,15816,28798,-9,28797,28796,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.56525,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,5,1,759.5,955129.25,0,0,9172.3477 -12898,15817,28799,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-1025.3629,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.054800414,0,0,0,41.34,56.619999,-9,-9,6,1,1,0,0,6,1,1,1224,162837.05,0,0,751.20447 -12899,15818,28800,-9,-9,-9,1,1,0,59,3,0,1,0,2,-9,97,3,0,1,2,0,0,0,4,0,0,0,-9,0,-989.94952,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.4359307,0,122.7202,3,55.5,41.040001,-9,-9,4,1,1,0,0,6,1,0,1419,39011.656,0,0,1025.8574 -12899,15819,28801,-9,28800,-9,4,1,0,18,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-896.93005,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,8,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.84168106,3,17.07,59.799999,-9,-9,3,1,1,0,0,6,2,0,1949,0,0,0,0 -12900,15820,28802,28803,-9,-9,1,1,1,53,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,7,0,1,0,0,0,0,52,2,3,3,-9,-9,2019,4,2,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4823468,3,58.380001,19.16,45.349998,54.75,4,1,1,0,1,9,1,0,506.5,603558.13,0,0,1434.5052 -12900,15820,28803,28802,-9,-9,2,1,0,52,1,0,0,0,2,-9,97,3,0,1,3,0,0,0,1,0,-9,7,0,-1,0,0,0,0,53,3,2,3,3,-9,2019,4,1,12,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.84626,3,45.349998,54.75,58.380001,19.16,6,1,1,0,0,9,1,0,506.5,603558.13,0,0,1434.5052 -12900,15821,28804,-9,28803,28802,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.767293,7.8054924,0,3,0,0,0,-9,0,-871.25732,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,16,0,15,1,0,-9,1,20.05669,20.05669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,9,3,0,418,-100304.56,0,0,1865.6841 -12900,15822,28805,-9,28803,28802,4,1,1,21,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-934.12482,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,9,1,0,2082,0,0,0,-907.2442 -12901,15823,28806,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,5.7055531,5.3825378,3,0,0,0,-9,0,-949.87415,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7121124,0,0,60.400002,31.549999,-9,-9,6,1,1,0,0,6,2,1,98,487944.28,0,0,1267.9121 -12902,15824,28807,28808,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.1968799,6.6276531,1,0,-9,8,0,6,98.476387,0,0,0,58,1,4,1,2,2,2019,3,1,7,0,0,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4465504,7.4477372,0,0,61.27,46.029999,57.16,56.150002,2,1,1,0,0,12,4,1,145,214214.78,0,0,1874.9165 -12902,15824,28808,28807,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,8.2266474,8.1266766,0,1,0,-9,8,0,-6,174.14537,0,0,0,64,2,4,3,3,3,2019,2,2,11,0,37,37,15,1,0,4,0,11.352074,11.352074,0,0,0,0,0,0,0,14.5,0,0,0,0,0,8.3583269,3,57.16,56.150002,61.27,46.029999,6,1,1,0,0,12,4,1,145,214214.78,0,0,1874.9165 -12903,15825,28809,28810,-9,-9,2,1,0,66,1,0,0,0,1,-9,1,1,0,0,4,6.2010646,7.7447596,7.4855161,1,0,-9,10,0,-2,-21.262457,0,0,0,68,1,4,1,-9,-9,2019,1,1,8,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0919075,7.3087301,0,0,59.529999,56.439999,59.290001,49.68,7,1,1,0,0,10,5,1,388,2583479,0,0,9191.9199 -12903,15825,28810,28809,-9,-9,1,1,1,68,1,0,0,0,1,-9,1,1,0,0,4,7.8032527,9.4236565,8.9986534,1,0,-9,46,0,2,-149.08765,0,0,0,66,1,4,1,2,2,2019,1,2,6,0,8,20,15,1,0,1,0,35.962753,35.962753,0,0,0,0,0,0,0,0,1,1,0,0,9.3251829,0,0,59.290001,49.68,59.529999,56.439999,6,1,1,0,0,10,5,1,388,2583479,0,0,9191.9199 -12904,15826,28811,-9,-9,28812,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1005.4741,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,4,1,711,123238.09,0,0,1881.8728 -12904,15826,28812,-9,-9,-9,1,1,1,42,3,0,1,0,2,-9,2,1,0,0,5,8.5160284,8.8254652,0,4,0,0,0,-9,0,-1069.4595,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,38,15,1,0,-9,0,23.35718,23.35718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,13,4,1,711,123238.09,0,0,1881.8728 -12905,15827,28813,-9,28815,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1030.5364,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,8,2,0,943.75,150634.88,0,0,3394.3455 -12905,15827,28814,-9,28815,-9,2,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-953.03992,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,943.75,150634.88,0,0,3394.3455 -12905,15827,28815,-9,-9,-9,1,1,0,39,2,0,3,0,2,-9,2,1,0,0,5,6.9587398,7.0408797,0,4,0,0,0,-9,0,-1013.3987,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,1,0,18,17,15,1,0,-9,0,8.3882265,8.3882265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.439999,61.220001,-9,-9,4,3,4,0,1,8,2,0,943.75,150634.88,0,0,3394.3455 -12905,15827,28816,-9,28815,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-939.06274,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,943.75,150634.88,0,0,3394.3455 -12906,15828,28817,-9,28820,28818,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.21875,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,855,72779.203,0,0,2507.1069 -12906,15828,28818,28820,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,5,8.1487541,8.3348007,0,2,0,-9,17,0,3,70.947357,0,0,0,32,2,4,3,2,2,2019,2,1,10,0,40,40,15,1,0,3,0,10.341707,10.341707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,40.959999,61.139999,5,1,1,0,0,6,3,0,855,72779.203,0,0,2507.1069 -12906,15828,28819,-9,28820,28818,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.86005,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,0,855,72779.203,0,0,2507.1069 -12906,15828,28820,28818,-9,-9,1,1,0,32,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,-3,-18.57416,0,0,1,35,2,5,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.959999,61.139999,54.689999,57.470001,5,1,1,0,0,6,3,0,855,72779.203,0,0,2507.1069 -12907,15829,28821,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,1,1,0,0,3,9.0721149,9.3829126,8.5510607,3,0,0,0,-9,0,-1029.1407,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,14,7,15,1,0,-9,0,73.792358,73.792358,0,0,0,0,0,0,0,0,1,1,0,8.8804293,8.7103615,0,0,53.639999,37.669998,-9,-9,4,1,1,0,0,10,5,1,499,1059471.6,0,0,6392.2129 -12908,15830,28822,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,-9,0,1,0,-987.3429,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.43,17.059999,-9,-9,5,1,1,0,0,12,1,0,1140,-15703.299,0,0,564.16254 -12909,15831,28823,-9,-9,-9,1,1,1,95,3,0,0,0,3,-9,4,3,0,0,4,0,5.5082121,5.8814173,3,0,0,0,-9,0,-916.47565,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1390638,5.963356,0,0,54.939999,50.330002,-9,-9,6,1,1,0,0,7,2,1,934,163086.61,0,0,205.43233 -12910,15832,28824,-9,-9,-9,1,1,0,18,2,0,0,0,2,1,2,1,0,0,2,6.3974137,6.8847113,0,3,0,0,0,-9,0,-1089.9442,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,4,0,15,1,0,-9,0,25.617218,25.617218,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.389999,44.919998,-9,-9,4,1,1,0,0,1,2,0,105,-44922.328,0,0,1451.9346 -12911,15833,28825,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,3,8.1579218,8.4745092,6.0266733,4,0,0,0,-9,0,-1119.9215,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,7,38,15,1,0,-9,0,73.615341,73.615341,0,0,0,0,0,0,0,0,1,1,0,6.1849179,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,2,3,1,741.33331,113770.62,0,0,1808.2726 -12911,15833,28826,-9,28825,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.3236,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,1,741.33331,113770.62,0,0,1808.2726 -12911,15833,28827,-9,28825,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-978.62335,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,3,1,741.33331,113770.62,0,0,1808.2726 -12912,15834,28828,-9,28829,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,3.7810361,4.867928,3.8162558,4,0,0,0,-9,0,-1106.0674,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.293848,0,0,0,49.349998,59.639999,-9,-9,7,1,1,0,0,7,2,0,446.5,-77031.406,0,0,1753.174 -12912,15834,28829,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,7.1772251,7.3696375,0,4,0,0,0,-9,0,-1128.9822,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,25,25,15,1,0,-9,0,6.3968635,6.3968635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,7,2,0,446.5,-77031.406,0,0,1753.174 -12913,15835,28830,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,2,1,0,0,3,7.9326315,8.3504829,0,3,0,0,0,-9,0,-1099.9734,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,50,50,15,1,0,-9,0,9.1621094,9.1621094,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.370003,38.360001,-9,-9,6,1,1,0,0,1,4,0,958,392175.41,0,0,1502.8634 -12914,15836,28831,28832,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.5338626,7.210547,0,1,0,-9,31,0,-8,-22.038733,0,0,0,60,2,5,1,-9,-9,2019,1,1,10,1,35,38,15,1,0,1,0,5.3674755,5.3674755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,65.080002,20.129999,6,2,3,0,0,4,3,1,417,892778.25,0,0,1001.9061 -12914,15836,28832,28831,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,5,6.6525464,6.832922,0,1,0,-9,31,0,8,-20.942278,0,0,0,52,2,4,1,3,3,2019,1,2,17,6,16,38,15,1,1,1,0,5.304142,5.304142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.080002,20.129999,52,53,7,2,3,0,0,4,3,1,417,892778.25,0,0,1001.9061 -12915,15837,28833,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,0,4,8.2781715,8.9471216,7.5268836,3,0,0,0,-9,0,-1075.0853,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,0,15,1,0,-9,0,9.7872591,9.7872591,0,0,0,0,0,0,0,0,0,0,0,7.7796574,7.71527,0,0,48.279999,60.18,-9,-9,5,1,1,0,0,1,5,1,737,51229.938,0,0,1971.7474 -12916,15838,28834,28835,-9,-9,2,1,1,33,1,0,2,0,1,-9,2,1,0,0,4,8.845542,8.8974094,0,2,0,-9,14,0,-1,94.705368,0,0,0,34,2,4,1,2,2,2019,1,1,12,0,37,38,15,1,0,1,0,21.523323,21.523323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,56.400002,51.830002,57.200001,6,1,1,0,0,1,4,1,1176.5,448699.38,0,0,4341.3125 -12916,15838,28835,28834,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,7.87637,7.9799757,0,2,0,-9,14,0,1,-39.890667,0,0,1,33,1,4,1,2,2,2019,1,2,10,0,30,38,15,1,0,1,0,12.88509,12.88509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,50.34,56.400002,6,1,1,0,0,1,4,1,1176.5,448699.38,0,0,4341.3125 -12916,15838,28836,-9,28835,28834,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.6828,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,1176.5,448699.38,0,0,4341.3125 -12916,15838,28837,-9,28835,28834,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.9886,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,1176.5,448699.38,0,0,4341.3125 -12917,15839,28838,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,3,0,4.9646945,5.3918095,3,0,0,0,-9,0,-824.83868,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0455637,0,0,44.349998,38.91,-9,-9,5,1,1,0,0,12,2,0,556,-214013.08,0,0,940.32623 -12918,15840,28839,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,6.3580484,6.3744884,3,0,0,0,-9,0,-1019.054,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9062166,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,2,1,334,385044.75,0,0,1260.5759 -12919,15841,28840,-9,28841,28842,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.07599,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,2,0,582.5,117928.87,0,0,1973.4143 -12919,15841,28841,28842,-9,-9,2,1,0,30,1,2,2,0,1,-9,6,3,0,1,2,0,0,0,2,0,-9,6,0,0,114.79039,0,0,1,30,3,5,1,2,3,2019,3,1,13,1,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.060001,38.709999,53.610001,41.419998,5,1,1,0,0,13,2,0,582.5,117928.87,0,0,1973.4143 -12919,15841,28842,28841,-9,-9,1,1,1,30,1,2,2,0,3,-9,2,1,0,1,5,7.585206,7.5632048,0,2,0,-9,6,0,0,6.0836,0,0,0,30,1,2,3,3,2,2019,2,2,9,0,39,39,15,1,0,3,0,7.4418139,7.4418139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,41.419998,34.060001,38.709999,4,1,1,0,0,13,2,0,582.5,117928.87,0,0,1973.4143 -12919,15841,28843,-9,28841,28842,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-917.18506,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,2,0,582.5,117928.87,0,0,1973.4143 -12920,15842,28844,-9,-9,-9,1,1,1,31,3,0,0,0,2,-9,2,1,0,0,4,8.0609999,8.0524998,0,3,0,-9,0,1,0,-943.24518,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,38,37,15,1,0,-9,0,9.7661495,9.7661495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.560001,60.259998,-9,-9,4,1,1,0,0,13,4,0,596,137177.09,0,0,1081.5283 -12921,15843,28845,28846,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.8389874,8.2356939,1,0,-9,2,0,-2,39.735947,-9,0,0,66,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0973709,7.718008,0,0,62.490002,55.09,52,48,7,1,1,0,0,13,4,1,568.5,920346.31,0,0,2788.052 -12921,15843,28846,28845,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.5244293,7.4744334,1,0,-9,38,0,2,-28.134146,0,0,0,64,1,4,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.676518,0,0,52,48,62.490002,55.09,5,1,1,0,0,13,4,1,568.5,920346.31,0,0,2788.052 -12922,15844,28847,-9,28849,28848,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.59778,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,0,565,90089.734,0,0,4286.437 -12922,15844,28848,28849,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,5,8.3269758,8.5840054,0,2,0,-9,7,0,13,-54.159897,0,0,0,30,2,4,1,-9,-9,2019,1,1,8,0,40,46,15,1,0,1,0,14.958631,14.958631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,36.450001,62.919998,6,1,1,0,0,4,4,0,565,90089.734,0,0,4286.437 -12922,15844,28849,28848,-9,-9,1,1,0,30,1,0,2,0,2,-9,2,1,0,0,4,8.1341944,8.2170057,0,2,0,-9,7,0,-13,-.68675828,0,0,1,43,2,5,1,2,2,2019,1,2,15,3,42,50,15,1,0,1,0,11.46909,11.46909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.450001,62.919998,57.060001,57.759998,2,1,1,0,0,4,4,0,565,90089.734,0,0,4286.437 -12922,15844,28850,-9,28849,28848,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-920.0791,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,0,565,90089.734,0,0,4286.437 -12923,15845,28851,28854,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,6.4946537,6.5642295,0,2,0,-9,2,0,-2,125.03046,0,0,1,42,1,4,1,-9,-9,2019,1,1,8,0,7,0,15,1,0,1,0,10.922577,10.922577,0,0,0,0,0,0,0,0,1,1,0,7.9477911,0,0,0,54.790001,55.860001,51,56,6,1,1,0,0,9,5,1,600,1200056.9,0,0,5975.3965 -12923,15845,28852,-9,28851,28854,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.26337,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,5,1,600,1200056.9,0,0,5975.3965 -12923,15845,28853,-9,28851,28854,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1149.2253,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,600,1200056.9,0,0,5975.3965 -12923,15845,28854,28851,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.4405041,9.5651903,0,2,0,-9,8,0,2,-16.491217,0,0,0,40,1,4,1,2,3,2019,1,2,9,1,40,42,15,1,0,1,0,38.7658,38.7658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.790001,55.860001,5,1,1,0,0,9,5,1,600,1200056.9,0,0,5975.3965 -12924,15846,28855,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,3,7.813478,7.8333235,0,3,0,0,0,-9,0,-992.89471,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,35,15,1,0,-9,0,7.4721627,7.4721627,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.259998,54.060001,-9,-9,6,1,1,0,1,7,3,0,948,9098.1133,0,0,763.31262 -12925,15847,28856,28857,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,0,5,8.3243923,8.5073109,0,1,0,-9,2,0,-1,32.532295,0,1,1,26,2,5,1,-9,-9,2019,1,2,17,7,52,37,15,1,1,1,0,8.833497,8.833497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.099998,64.879997,54.099998,59.110001,5,1,1,0,0,11,4,1,915,-29349.477,0,0,1556.9038 -12925,15847,28857,28856,-9,-9,2,1,1,26,1,0,0,0,2,-9,1,1,0,0,5,7.2784395,6.9561381,0,1,0,-9,2,0,1,-6.965199,0,1,0,25,1,5,1,-9,-9,2019,1,1,7,0,55,40,15,1,0,1,0,2.661896,2.661896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,33.099998,64.879997,6,1,1,0,0,11,4,1,915,-29349.477,0,0,1556.9038 -12926,15848,28858,28859,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,0,4,8.544795,8.2604046,0,1,0,-9,7,0,-12,-133.50018,0,0,0,61,2,5,1,-9,-9,2019,1,1,9,1,53,57,15,1,0,1,0,9.6053829,9.6053829,0,0,0,0,0,0,0,0,0,0,0,.2193829,0,0,0,52,55,60.02,56.419998,6,4,1,0,0,7,5,1,248.5,292845.72,0,0,5626.6406 -12926,15848,28859,28858,-9,-9,1,1,0,61,1,0,0,0,2,-9,1,1,0,0,5,8.1928587,8.5231943,5.1244102,1,0,-9,7,0,12,-51.952663,0,0,0,49,3,4,1,3,2,2019,1,2,7,0,30,35,15,1,0,1,0,16.718298,16.718298,0,0,0,0,0,0,0,2,0,0,0,7.5874949,5.4384432,0,3,60.02,56.419998,52,55,1,1,1,0,0,7,5,1,248.5,292845.72,0,0,5626.6406 -12927,15849,28860,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,5.5948625,5.9150076,3,0,0,0,-9,0,-1131.8444,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.1771989,0,0,1,1,0,0,5.5979705,0,0,49,47,-9,-9,5,1,1,0,0,8,2,1,795,410212.16,0,0,642.21863 -12928,15850,28861,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,1,1,0,0,3,8.5415812,9.0485373,7.6611624,3,0,0,0,-9,0,-970.83771,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,30,12,30,30,15,1,1,-9,0,22.644033,22.644033,0,0,0,0,0,0,0,2,1,1,0,7.8974771,0,0,3,32.360001,59.759998,-9,-9,3,1,1,0,0,2,5,1,599,969326.88,0,0,3072.3098 -12928,15851,28862,-9,28861,-9,2,1,1,24,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1180.6149,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,36,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,2,1,1,639,0,0,0,0 -12928,15852,28863,-9,28861,-9,3,1,0,26,2,0,0,0,1,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1049.6603,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,24,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.219999,25.17,-9,-9,3,1,1,1,0,2,1,1,1088,-47212.93,0,0,1581.9424 -12929,15853,28864,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.3673501,7.0778785,3,0,0,0,-9,0,-1047.4987,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0576601,6.8765726,0,0,54.240002,49.389999,-9,-9,6,1,1,0,0,9,2,1,258,737083.75,0,0,905.6261 -12930,15854,28865,28866,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,7.9840274,8.2682934,0,2,0,-9,3,0,1,123.9193,0,0,0,45,3,1,3,3,2,2019,2,2,10,0,40,46,15,1,0,3,0,8.2196693,8.2196693,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.450001,57.490002,42.209999,34.099998,3,1,1,0,1,5,3,1,550,1234176.5,0,0,2367.1543 -12930,15854,28866,28865,-9,-9,2,1,1,45,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,3,0,-1,8.4905996,0,0,0,46,2,3,1,3,2,2019,3,1,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.209999,34.099998,48.450001,57.490002,2,1,1,0,1,5,3,1,550,1234176.5,0,0,2367.1543 -12930,15855,28867,-9,28865,28866,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,3,7.4093132,6.9320121,0,3,0,0,0,-9,0,-962.41382,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,20,7,35,0,15,1,1,-9,1,3.1445665,3.1445665,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.25,63.02,-9,-9,3,1,1,0,0,5,3,1,1038,100809.16,0,0,1175.967 -12931,15856,28868,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-995.57562,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38414738,0,0,0,65.239998,41.59,-9,-9,7,1,1,0,0,11,1,1,1019,78313.328,0,0,936.80969 -12932,15857,28869,28871,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,0,3,8.8357067,8.4800949,0,2,0,-9,6,0,6,97.142822,0,0,0,42,2,4,1,-9,-9,2019,1,2,10,0,55,55,15,1,0,1,0,9.4441204,9.4441204,0,0,0,0,0,0,0,0,1,1,0,.24640182,0,0,0,54.369999,54.799999,35.330002,56.799999,3,1,1,0,0,6,4,1,820.66669,581847.19,0,0,3067.8655 -12932,15857,28870,-9,28871,28869,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.32642,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,4,1,820.66669,581847.19,0,0,3067.8655 -12932,15857,28871,28869,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,7.923099,8.0231972,0,2,0,-9,23,0,-6,-111.57705,0,0,1,48,2,3,1,3,3,2019,1,1,22,10,43,39,15,1,1,1,0,7.8441548,7.8441548,0,0,0,0,0,0,0,0,1,1,0,1.849843,0,0,0,35.330002,56.799999,54.369999,54.799999,4,1,1,0,0,6,4,1,820.66669,581847.19,0,0,3067.8655 -12932,15858,28872,-9,28871,28869,3,1,1,18,2,0,1,0,2,-9,11,3,0,0,3,7.3480573,7.1131096,0,3,0,0,0,-9,0,-1117.3442,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1145706,0,0,0,55.360001,51.57,-9,-9,6,1,1,0,0,6,2,1,349,-84387.367,0,0,971.99207 -12933,15859,28873,28876,-9,-9,2,1,1,38,1,0,2,0,3,-9,2,1,0,0,3,7.7724395,7.5522699,0,2,0,-9,2,0,6,1.6091727,-9,0,0,32,2,4,1,3,-9,2019,1,1,14,4,43,0,15,1,1,1,0,7.7030196,7.7030196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.259998,51.240002,58.84,6,1,1,0,0,5,3,0,749.25,84240.172,0,0,2343.854 -12933,15859,28874,-9,28876,28873,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.5149,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,0,749.25,84240.172,0,0,2343.854 -12933,15859,28875,-9,28876,28873,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.65729,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,5,3,0,749.25,84240.172,0,0,2343.854 -12933,15859,28876,28873,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,0,4,6.8302445,6.6672292,0,2,0,-9,2,0,-6,56.959103,0,0,1,38,3,3,1,3,3,2019,1,2,12,4,16,16,15,1,1,1,0,7.7918749,7.7918749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,40.75,58.259998,6,1,1,0,0,5,3,0,749.25,84240.172,0,0,2343.854 -12934,15860,28877,28878,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.9590731,8.970067,0,1,0,-9,2,0,-4,-29.191147,0,0,0,60,1,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,22.580828,22.580828,0,0,0,0,0,0,0,14.5,0,0,0,4.1675997,0,24.081362,3,56.939999,49.529999,30.4,64.150002,6,1,1,0,0,5,5,1,809.5,994649.25,0,0,4804.0801 -12934,15860,28878,28877,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,8.6728096,8.4085226,0,1,0,-9,2,0,4,24.925562,0,0,0,56,2,3,1,2,2,2019,1,2,8,1,48,55,15,1,0,1,0,12.34512,12.34512,0,0,0,0,0,0,0,0,0,0,0,2.2237563,0,0,0,30.4,64.150002,56.939999,49.529999,7,1,1,0,0,5,5,1,809.5,994649.25,0,0,4804.0801 -12935,15861,28879,28880,-9,-9,2,1,1,31,1,0,0,0,1,-9,1,1,0,0,4,8.69592,8.9312258,0,1,0,-9,2,0,-3,40.472862,0,0,0,34,2,4,1,-9,-9,2019,1,1,10,1,35,40,15,1,0,1,0,20.399042,20.399042,0,0,0,0,0,0,0,0,0,0,0,5.0867119,0,0,0,50,57,49,56,5,1,1,0,0,1,5,1,646,92588.594,0,0,3334.0986 -12935,15861,28880,28879,-9,-9,1,1,0,34,1,0,0,0,2,-9,1,1,0,0,4,7.437746,7.3705659,0,1,0,-9,2,0,3,-102.43892,0,0,1,31,1,4,1,-9,-9,2019,1,2,11,2,30,30,15,1,0,1,0,4.1643519,4.1643519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,50,57,5,1,1,0,0,1,5,1,646,92588.594,0,0,3334.0986 -12936,15862,28881,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1012.3695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.52,41.950001,-9,-9,6,1,1,0,0,13,1,1,918,-63844.285,0,0,647.60345 -12937,15863,28882,28883,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,6,0,-1,-53.751469,0,0,0,79,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,14.065817,0,0,0,0,0,1,1,0,0,0,0,0,38.32,30.5,49.779999,23.35,6,1,1,0,0,13,2,1,406.5,254997.56,0,0,3201.1206 -12937,15863,28883,28882,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,2,0,6.3161983,6.3686953,1,0,-9,6,0,1,-62.287476,0,0,0,78,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.2540607,74.840424,1,49.779999,23.35,38.32,30.5,5,1,1,0,0,13,2,1,406.5,254997.56,0,0,3201.1206 -12938,15864,28884,28885,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,4,8.1756163,8.6478834,6.968606,1,0,-9,6,0,6,-28.947306,0,0,0,50,2,2,1,3,2,2019,1,2,9,0,40,24,15,1,0,1,0,9.3871927,9.3871927,0,0,0,0,0,0,0,0,1,1,0,7.1132278,6.9097819,0,0,54,54,27.4,58.5,6,3,4,0,0,8,5,1,455.5,194075.72,0,0,4700.5591 -12938,15864,28885,28884,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,8.4774332,8.581275,0,1,0,-9,6,0,-6,81.057228,0,0,0,56,2,4,1,2,2,2019,1,1,22,8,40,70,15,1,1,1,0,12.627765,12.627765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.4,58.5,54,54,2,1,1,0,1,8,5,1,455.5,194075.72,0,0,4700.5591 -12939,15865,28886,28887,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.2920527,8.2535801,7.5231481,1,0,-9,37,0,-3,-5.1464043,0,0,0,63,2,2,3,2,2,2019,2,1,11,0,26,10,15,1,0,4,0,7.5163994,7.5163994,0,0,0,0,0,0,0,0,1,1,0,4.3958955,7.1045136,0,0,58.259998,35.209999,53.810001,32.330002,5,1,1,0,0,6,4,1,873,994842.38,0,0,3126.7314 -12939,15865,28887,28886,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,2,5.09863,8.148447,8.0303659,1,0,-9,37,0,3,-31.875937,0,0,0,60,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7339754,7.9091058,0,3,53.810001,32.330002,58.259998,35.209999,6,1,1,0,0,6,4,1,873,994842.38,0,0,3126.7314 -12940,15866,28888,28889,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.434082,8.4033422,1,0,-9,7,0,-1,84.685143,0,0,0,70,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4443722,8.123661,0,0,56.900002,38.700001,61.119999,51.57,6,1,1,0,0,1,5,1,773,1210564.8,0,0,5570.5732 -12940,15866,28889,28888,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.9540167,8.2631941,1,0,-9,7,0,1,13.127971,0,0,0,69,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3849239,8.4034233,0,0,61.119999,51.57,56.900002,38.700001,7,1,1,0,0,1,5,1,773,1210564.8,0,0,5570.5732 -12941,15867,28890,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,0,3,0,8.3511696,7.7081642,3,0,0,0,-9,0,-1021.491,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.3800955,7.9140925,2.6869299,3,40.93,53.950001,-9,-9,5,1,1,0,0,5,4,1,18,1320267,0,0,2527.3105 -12942,15868,28891,28893,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,0,3,8.4287062,8.4736366,0,2,0,-9,2,0,-16,-23.23575,0,0,0,51,2,2,1,-9,-9,2019,1,1,13,2,45,44,15,1,0,1,0,13.276732,13.276732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.709999,51.810001,47.959999,45.740002,5,1,1,0,0,4,4,1,335.33334,35184.117,0,0,2560.3145 -12942,15868,28892,-9,28893,28891,5,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1137.4913,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,335.33334,35184.117,0,0,2560.3145 -12942,15868,28893,28891,-9,-9,1,1,0,51,1,0,1,0,2,-9,1,1,0,0,2,6.8281946,6.9953361,0,2,0,-9,7,0,16,39.020851,0,0,0,35,2,3,1,3,2,2019,1,2,11,0,50,50,15,1,0,1,0,2.2267489,2.2267489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.959999,45.740002,48.709999,51.810001,5,1,1,0,0,4,4,1,335.33334,35184.117,0,0,2560.3145 -12943,15869,28894,28895,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,11,0,9,75.676071,0,0,0,63,3,3,1,3,3,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,1,0,5.2339206,0,0,0,0,0,1,1,0,0,0,0,0,60.110001,21.860001,50,49,7,1,1,0,0,4,3,1,811.5,641209,0,0,2081.0986 -12943,15869,28895,28894,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,0,3,8.1531353,8.0549402,0,1,0,-9,11,0,0,65.507088,-9,0,0,72,2,3,3,3,3,2019,2,1,10,1,40,0,15,1,0,4,0,10.756844,10.756844,0,0,0,0,0,0,0,0,1,1,0,4.3666058,0,0,1,50,49,60.110001,21.860001,5,1,1,0,0,4,3,1,811.5,641209,0,0,2081.0986 -12944,15870,28896,28897,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,0,4,8.6515989,8.6490116,0,1,0,-9,7,0,4,54.6502,0,0,0,61,3,4,1,3,3,2019,1,1,6,0,25,15,15,1,0,1,0,30.176989,30.176989,0,0,0,0,0,0,0,7,1,1,0,0,0,4.7276673,3,58.389999,44.540001,55.790001,52.619999,5,1,1,0,0,13,5,1,956,1102956.5,0,0,6261.4697 -12944,15870,28897,28896,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,8.9053478,9.0062876,0,1,0,-9,7,0,-4,19.527184,0,0,0,65,2,4,1,3,3,2019,1,2,8,0,35,35,15,1,0,1,0,28.247173,28.247173,0,0,0,0,0,0,0,2,1,1,0,0,0,3.2851498,3,55.790001,52.619999,58.389999,44.540001,5,1,1,0,0,13,5,1,956,1102956.5,0,0,6261.4697 -12944,15871,28898,-9,28896,28897,3,1,1,37,2,0,0,0,3,-9,2,1,0,0,3,8.2076492,8.1810427,0,3,0,0,0,-9,0,-764.59265,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,50,0,15,1,0,-9,1,8.0729761,8.0729761,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.330002,53.459999,-9,-9,4,1,1,0,0,13,4,1,153,-38974.66,0,0,1003.2676 -12945,15872,28899,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1052.9108,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,20,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.011502,3,32.459999,21.879999,-9,-9,1,1,1,0,1,11,1,0,685,-112446.21,0,0,230.9209 -12945,15873,28900,-9,28899,-9,2,1,0,26,2,0,0,0,3,-9,2,1,0,0,5,7.1750927,7.2324467,0,3,0,0,0,-9,0,-978.60608,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,20,20,15,1,0,-9,1,7.1257701,7.1257701,0,0,0,0,0,0,0,0,1,1,0,.044225205,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,11,2,0,3377,60488.02,0,0,1077.2388 -12946,15874,28901,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,3.7540751,3.5793333,3,0,0,0,-9,0,-952.37579,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7392619,0,0,55.43,45.880001,-9,-9,6,1,1,0,0,6,2,0,208,419094.5,0,0,1656.9952 -12947,15875,28902,-9,28903,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1018.3251,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,0,1741,97185.375,0,0,1125.2183 -12947,15875,28903,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,1,1,0,0,4,5.8267674,5.6212454,0,4,0,0,0,-9,0,-1054.7859,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,30,15,1,0,-9,0,.77377862,.77377862,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,2,0,1741,97185.375,0,0,1125.2183 -12947,15875,28904,-9,28903,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1120.2451,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,1,1,0,0,5,2,0,1741,97185.375,0,0,1125.2183 -12948,15876,28905,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,8.9149084,8.9589567,0,3,0,0,0,-9,0,-1035.8477,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,49,15,1,0,-9,0,14.96528,14.96528,0,0,0,0,0,0,0,0,0,0,0,4.2440376,0,0,0,52.299999,57.200001,-9,-9,6,1,1,0,0,2,5,1,3504,141610.08,0,0,3359.7429 -12949,15877,28906,28908,-9,-9,1,1,1,51,1,0,2,0,1,-9,1,1,0,0,3,9.1832666,9.2455339,0,2,0,-9,8,0,1,-83.093163,0,0,0,50,2,3,1,2,1,2019,1,2,24,12,32,36,15,1,1,1,0,35.478455,35.478455,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.447403,3,23.030001,58.380001,48.450001,57.490002,4,1,1,0,1,9,5,1,1170.6666,1317530,0,0,5431.3599 -12949,15877,28907,-9,28908,28906,3,1,1,17,2,0,2,1,-9,0,7,2,0,0,5,5.7503061,5.28686,0,2,0,0,0,-9,0,-1015.2946,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,22,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.370001,68.589996,-9,-9,4,1,1,0,0,9,5,1,1170.6666,1317530,0,0,5431.3599 -12949,15877,28908,28906,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,0,3,7.8459773,7.8808942,0,2,0,-9,8,0,-1,-73.252823,0,0,0,51,1,3,1,3,1,2019,1,1,22,10,30,30,15,1,1,1,0,14.084996,14.084996,0,0,0,0,0,0,0,71.5,0,0,0,1.0618194,0,75.623314,3,48.450001,57.490002,23.030001,58.380001,4,1,1,0,0,9,5,1,1170.6666,1317530,0,0,5431.3599 -12950,15878,28909,-9,28910,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-930.1358,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,0,383,-128781.26,0,0,1147.0311 -12950,15878,28910,-9,-9,-9,1,1,0,24,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-979.31763,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,30,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.709999,43.630001,-9,-9,2,1,1,1,1,1,1,0,383,-128781.26,0,0,1147.0311 -12951,15879,28911,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,2,8.8112392,8.6018143,0,3,0,0,0,-9,0,-860.73596,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,47,50,15,1,0,-9,0,14.884359,14.884359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.810001,30.790001,-9,-9,6,1,1,0,1,12,5,1,1123,351396.19,0,0,1092.5049 -12952,15880,28912,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,9.5068417,9.8989897,3,0,0,0,-9,0,-1024.8687,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,10.296869,8.7406425,34.310833,3,51.41,56.150002,-9,-9,5,1,1,0,0,12,5,1,236,2058835,0,0,21994.023 -12952,15881,28913,-9,28912,-9,2,1,0,40,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-959.97803,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.389999,16.93,-9,-9,1,1,1,0,0,12,1,1,612,156502.56,0,0,1064.73 -12952,15882,28914,-9,28912,-9,3,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.8906879,8.5785065,0,3,0,0,0,-9,0,-1017.6879,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,36,15,1,0,-9,1,17.963612,17.963612,0,0,0,0,0,0,0,0,1,1,0,3.3369801,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,5,1,1065,86496.07,0,0,1803.2993 -12953,15883,28915,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1026.1896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.84,43.990002,-9,-9,6,1,1,0,0,2,1,1,274,60531.16,0,0,1174.2118 -12954,15884,28916,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,0,4,0,7.808661,8.0935507,3,0,0,0,-9,0,-1012.6789,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.9274149,0,0,52.52,51.400002,-9,-9,6,1,1,0,0,7,4,1,729,637523.88,0,0,1607.9274 -12955,15885,28917,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,3,7.6688061,7.8463211,0,3,0,0,0,-9,0,-1015.7556,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,37,15,1,0,-9,0,8.8429117,8.8429117,0,0,0,0,0,0,0,0,0,0,0,3.6484196,0,0,0,41.470001,58.080002,-9,-9,6,1,1,0,0,13,3,1,981,239546.41,0,0,329.69547 -12956,15886,28918,28919,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,1,4,0,6.9161224,6.6660709,1,0,-9,9,0,-8,38.1493,0,0,0,75,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5024891,6.5088158,0,0,66.199997,41.049999,62.25,48.330002,7,1,1,0,0,7,2,1,1274,408878.66,0,0,2068.2153 -12956,15886,28919,28918,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,2.6629374,2.9185524,1,0,-9,9,0,8,6.4019403,0,0,0,67,3,4,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.5271735,3.1405318,0,0,62.25,48.330002,66.199997,41.049999,7,1,1,0,0,7,2,1,1274,408878.66,0,0,2068.2153 -12957,15887,28920,28921,-9,-9,1,1,1,79,1,0,0,0,3,-9,1,1,0,0,2,7.571106,7.5493593,0,1,0,-9,61,0,-1,-88.334,0,0,0,80,1,4,3,3,3,2019,2,2,18,6,30,0,15,1,1,4,0,5.9281793,5.9281793,1,0,11.226664,0,0,0,0,0,1,1,0,0,0,0,0,44.77,45.970001,48.91,47.709999,3,1,1,0,1,13,3,1,735.5,254850.16,0,0,1649.6682 -12957,15887,28921,28920,-9,-9,2,1,0,80,1,0,0,0,1,-9,4,3,0,0,4,0,7.433754,7.3316998,1,0,-9,61,0,1,-89.878128,0,0,0,79,3,2,1,3,3,2019,3,1,19,7,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.0904889,0,0,48.91,47.709999,44.77,45.970001,3,1,1,0,0,13,3,1,735.5,254850.16,0,0,1649.6682 -12958,15888,28922,-9,-9,-9,2,1,0,69,3,0,1,0,3,-9,4,3,0,1,2,0,0,0,4,0,0,0,-9,0,-975.75568,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.1839728,0,41.876656,0,0,64.385033,0,1,1,0,0,0,0,0,42.990002,34.68,-9,-9,6,1,1,0,0,1,1,1,361,0,0,0,-467.09103 -12958,15889,28923,28925,-9,-9,4,1,1,58,1,0,1,0,2,-9,4,3,0,1,2,0,7.5756965,7.7794294,2,0,-9,3,0,13,-123.14368,0,0,0,45,1,4,3,-9,-9,2019,4,1,14,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6415882,3.5798392,3,32.330002,35.549999,47.380001,37.080002,5,1,1,0,0,1,2,1,860.33331,285240.5,0,0,1866.3921 -12958,15889,28924,-9,28925,28923,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.84338,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,2,1,860.33331,285240.5,0,0,1866.3921 -12958,15889,28925,28923,28922,-9,1,1,0,45,1,0,1,0,1,-9,6,3,0,1,4,0,0,0,2,0,-9,3,0,-13,-17.72624,0,0,0,58,2,2,3,2,3,2019,4,4,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,47.380001,37.080002,32.330002,35.549999,6,1,1,0,0,1,2,1,860.33331,285240.5,0,0,1866.3921 -12959,15890,28926,28927,-9,-9,1,1,0,57,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,8,0,-3,0,0,0,0,60,3,4,3,3,2,2019,4,2,28,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.470001,17.139999,57.16,56.150002,1,1,1,0,1,1,1,0,782.5,266283.38,0,0,1538.1654 -12959,15890,28927,28926,-9,-9,2,1,1,60,1,0,0,0,3,-9,6,3,0,1,4,0,0,0,1,0,-9,8,0,3,0,0,0,0,57,3,1,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.03234,1,57.16,56.150002,39.470001,17.139999,7,1,1,0,0,1,1,0,782.5,266283.38,0,0,1538.1654 -12960,15891,28928,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,2,1,0,0,3,7.9387703,7.8025026,0,3,0,0,0,-9,0,-1083.2819,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,40,43,15,1,0,-9,0,8.4353504,8.4353504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,54.259998,-9,-9,5,3,4,0,0,6,4,1,2872,276803.53,0,0,611.36981 -12961,15892,28929,28930,-9,-9,2,1,0,62,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,33,0,2,6.0508738,0,0,0,60,1,5,1,2,1,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1363425,0,0,0,55.529999,51.549999,57.060001,57.759998,6,1,1,0,0,10,3,1,1095,1944059.9,0,0,812.64252 -12961,15892,28930,28929,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,5,7.4321933,7.4726553,0,1,0,-9,33,0,-2,-47.531181,0,0,0,62,1,3,3,3,2,2019,2,2,6,0,45,60,15,1,0,3,0,5.3348961,5.3348961,0,0,0,0,0,0,0,0,1,1,0,3.5695996,0,0,0,57.060001,57.759998,55.529999,51.549999,5,1,1,0,0,10,3,1,1095,1944059.9,0,0,812.64252 -12961,15893,28931,-9,28929,28930,3,1,1,21,2,0,0,0,1,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1090.2229,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.44971785,0,0,0,49.299999,59.889999,-9,-9,6,1,1,1,0,10,1,1,166,-32691.027,0,0,1221.3651 -12962,15894,28932,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,2,0,4.5900245,4.2142386,3,0,0,0,-9,0,-1044.8875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3663738,3.828424,0,0,35.419998,35.68,-9,-9,5,1,1,0,0,9,2,1,666,121271.32,0,0,735.23016 -12963,15895,28933,28936,-9,-9,1,1,0,35,1,1,3,0,3,-9,2,1,0,0,4,7.5179167,7.7672005,0,2,0,-9,15,0,-2,4.0582399,0,0,1,37,2,4,1,2,2,2019,1,2,11,0,19,16,15,1,0,1,0,10.825566,10.825566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.689999,58.349998,36.799999,61.220001,5,1,1,0,0,4,4,1,1023,28090.559,0,0,3103.073 -12963,15895,28934,-9,28933,28936,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.91895,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,1023,28090.559,0,0,3103.073 -12963,15895,28935,-9,28933,28936,4,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.6182,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,1023,28090.559,0,0,3103.073 -12963,15895,28936,28933,-9,-9,2,1,1,37,1,1,3,0,2,-9,2,1,0,0,4,8.7474766,8.8230963,0,2,0,-9,15,0,2,72.938171,0,0,0,35,3,4,1,3,2,2019,1,1,11,1,50,60,15,1,0,1,0,13.853609,13.853609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.799999,61.220001,46.689999,58.349998,6,1,1,0,0,4,4,1,1023,28090.559,0,0,3103.073 -12963,15895,28937,-9,28933,28936,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.4962,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,1023,28090.559,0,0,3103.073 -12964,15896,28938,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-975.56024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.799999,20.91,-9,-9,4,1,1,0,0,13,1,0,431,24729.842,0,0,325.6218 -12965,15897,28939,-9,28941,28940,5,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1025.9779,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,11,4,1,396,167178.78,0,0,3300.5129 -12965,15897,28940,28941,-9,-9,2,1,1,50,1,0,1,0,3,-9,1,1,0,0,4,7.9376178,7.8723297,0,2,0,-9,9,0,-1,96.937836,-9,0,0,51,1,2,1,-9,-9,2019,1,1,9,1,50,0,15,1,0,1,0,6.7371669,6.7371669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.48,26.66,6,1,1,0,0,11,4,1,396,167178.78,0,0,3300.5129 -12965,15897,28941,28940,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,2,8.0092325,7.9254837,0,2,0,-9,9,0,1,-56.143738,0,0,0,50,3,4,1,3,2,2019,1,2,13,2,35,33,15,1,0,1,0,9.9134855,9.9134855,0,0,0,0,0,0,0,2,1,1,0,5.6612358,0,5.9891276,3,57.48,26.66,52,55,4,1,1,0,0,11,4,1,396,167178.78,0,0,3300.5129 -12966,15898,28942,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,4,0,8.3988762,8.5546618,3,0,0,0,-9,0,-871.78052,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8515496,8.357729,0,0,66.349998,41.049999,-9,-9,7,1,1,0,0,11,4,1,307,665796.31,0,0,2611.7837 -12966,15899,28943,-9,-9,28942,2,1,1,46,2,0,0,0,2,-9,2,1,0,0,5,7.5635023,7.7507029,0,3,0,0,0,-9,0,-1012.6424,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,8,0,37,38,15,1,0,-9,1,7.3328047,7.3328047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,4,1,1,0,0,11,3,1,2288,-90239.172,0,0,782.54669 -12967,15900,28944,-9,-9,-9,1,1,0,73,3,0,1,0,3,-9,4,3,0,1,1,0,0,0,4,0,0,0,-9,0,-987.98621,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,4,0,0,15,4,1,-9,0,0,0,1,0,0,13.703055,0,3.1811574,0,0,1,1,0,0,0,0,0,15.54,40.299999,-9,-9,5,1,1,0,0,6,1,1,1002,40485.133,0,0,613.60236 -12967,15901,28945,-9,28946,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-922.80164,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,2,1,992,-51905.676,0,0,918.87476 -12967,15901,28946,-9,28944,-9,2,1,0,47,2,0,1,0,3,-9,1,1,0,0,4,6.9011788,7.0639811,0,3,0,0,0,-9,0,-920.92609,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,12,16,15,1,0,-9,1,10.592074,10.592074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.709999,64.779999,-9,-9,5,1,1,0,0,6,2,1,992,-51905.676,0,0,918.87476 -12968,15902,28947,-9,28950,28948,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.90277,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,4,2,0,0,8,5,1,558.40002,277948.34,0,0,10399.067 -12968,15902,28948,28950,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,0,5,9.6984539,9.6826639,0,2,0,-9,25,0,0,-38.476871,0,0,0,46,1,3,1,3,2,2019,1,1,12,1,47,45,15,1,0,1,0,47.736961,47.736961,0,0,0,0,0,0,0,0,0,0,0,5.4511371,0,0,0,48.77,60.16,47,50,6,1,1,0,0,8,5,1,558.40002,277948.34,0,0,10399.067 -12968,15902,28949,-9,28950,28948,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.4377,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,8,5,1,558.40002,277948.34,0,0,10399.067 -12968,15902,28950,28948,-9,-9,1,1,0,46,1,0,3,0,1,-9,2,1,0,0,3,9.3473368,8.9942627,0,2,0,-9,25,0,0,-33.093483,0,0,0,46,1,5,1,1,1,2019,1,2,4,0,45,50,15,1,0,1,0,23.311316,23.311316,0,0,0,0,0,0,0,0,0,0,0,6.0060077,0,0,0,47,50,48.77,60.16,6,2,3,0,0,8,5,1,558.40002,277948.34,0,0,10399.067 -12968,15902,28951,-9,28950,28948,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.4962,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,5,1,558.40002,277948.34,0,0,10399.067 -12969,15903,28952,-9,28953,28954,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.1603,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,412.33334,798201.75,0,0,7198.438 -12969,15903,28953,28954,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,7.6741333,7.9423447,0,2,0,-9,20,0,-15,4.4997945,0,0,1,55,1,4,1,2,1,2019,1,2,20,9,12,11,15,1,1,1,0,17.626457,17.626457,0,0,0,0,0,0,0,0,0,0,0,5.3695889,0,0,0,40.860001,54.380001,53.470001,51.099998,6,1,1,0,0,9,5,1,412.33334,798201.75,0,0,7198.438 -12969,15903,28954,28953,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,0,4,9.7406158,9.7041426,0,2,0,-9,8,0,15,.74395984,0,0,0,40,1,4,1,-9,-9,2019,1,1,13,1,50,46,15,1,0,1,0,42.243324,42.243324,0,0,0,0,0,0,0,0,0,0,0,4.9181089,0,0,0,53.470001,51.099998,40.860001,54.380001,6,1,1,0,0,9,5,1,412.33334,798201.75,0,0,7198.438 -12970,15904,28955,-9,28959,28960,6,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1007.685,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,2,0,274.5,41074.996,0,0,2890.7117 -12970,15904,28956,-9,28959,28960,5,1,1,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.4034,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,2,0,274.5,41074.996,0,0,2890.7117 -12970,15904,28957,-9,28959,28960,2,1,1,15,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1109.2211,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,12,2,0,274.5,41074.996,0,0,2890.7117 -12970,15904,28958,-9,28959,28960,4,1,1,10,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.47461,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,274.5,41074.996,0,0,2890.7117 -12970,15904,28959,28960,-9,-9,1,1,0,36,1,1,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,2,-14.900082,0,0,1,34,3,4,1,2,3,2019,3,3,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.07,52.700001,54.959999,41.959999,2,1,1,0,0,12,2,0,274.5,41074.996,0,0,2890.7117 -12970,15904,28960,28959,-9,-9,3,1,1,34,1,1,4,0,3,-9,2,1,0,0,4,7.9503603,8.1555319,0,2,0,-9,6,0,-2,-73.714912,0,0,0,36,2,4,3,-9,-9,2019,2,1,9,2,36,36,15,1,0,3,0,11.528965,11.528965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,41.959999,53.07,52.700001,5,1,1,0,0,12,2,0,274.5,41074.996,0,0,2890.7117 -12971,15905,28961,-9,28962,28963,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.16156,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,753.66669,1857817.8,0,0,2885.4778 -12971,15905,28962,28963,-9,-9,1,1,0,48,1,0,2,0,2,-9,1,1,0,0,4,6.9735937,7.1545997,0,2,0,-9,26,0,1,-43.302925,0,0,0,47,2,4,1,2,2,2019,1,2,6,0,24,7,15,1,0,1,0,4.6789713,4.6789713,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,43.139999,61.330002,6,1,1,0,0,10,4,1,753.66669,1857817.8,0,0,2885.4778 -12971,15905,28963,28962,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,9.0831099,9.0717201,0,2,0,-9,24,0,-1,73.227325,0,0,0,48,2,4,1,2,3,2019,1,1,7,0,47,45,15,1,0,1,0,24.821163,24.821163,0,0,0,0,0,0,0,2,1,1,0,.63687551,0,0,3,43.139999,61.330002,57.16,56.150002,5,1,1,0,0,10,4,1,753.66669,1857817.8,0,0,2885.4778 -12971,15906,28964,-9,28962,28963,3,1,1,18,2,0,2,1,2,0,7,2,0,0,2,0,3.4560554,3.5052936,3,0,0,0,-9,0,-943.14185,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9835255,0,0,0,43.099998,53.419998,-9,-9,6,1,1,0,0,10,4,1,2739,19598.395,0,0,508.31741 -12972,15907,28965,28966,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,4,0,-1,0,0,0,0,68,2,4,3,3,3,2019,4,2,24,10,0,0,15,4,1,4,0,0,0,1,0,15.944597,0,0,0,0,0,1,1,0,0,0,0,0,37.43,17,51.240002,58.84,1,1,1,0,0,7,1,1,193.5,669729,0,0,1909.0068 -12972,15907,28966,28965,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,4,0,1,0,0,0,0,67,2,2,3,-9,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,37.43,17,6,1,1,0,0,7,1,1,193.5,669729,0,0,1909.0068 -12973,15908,28967,28969,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,0,2,8.9276171,8.7959957,0,2,0,-9,10,0,1,-2.9226027,0,0,0,34,1,4,1,2,2,2019,1,1,22,7,40,51,15,1,1,1,0,22.112305,22.112305,0,0,0,0,0,0,0,0,1,1,0,2.5053511,0,0,0,15.67,62.139999,54.060001,49.459999,3,1,1,0,1,12,4,1,803.75,218284.69,0,0,2296.8416 -12973,15908,28968,-9,28969,28967,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.0343,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,4,1,803.75,218284.69,0,0,2296.8416 -12973,15908,28969,28967,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,0,4,7.2466984,7.3007483,0,2,0,-9,10,0,-1,81.322769,0,0,1,35,2,2,1,2,2,2019,1,2,8,1,14,14,15,1,0,1,0,11.490044,11.490044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.060001,49.459999,15.67,62.139999,5,1,1,0,1,12,4,1,803.75,218284.69,0,0,2296.8416 -12973,15908,28970,-9,28969,28967,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-835.71716,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,803.75,218284.69,0,0,2296.8416 -12974,15909,28971,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1094.7878,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,3.2993453,0,0,0,0,0,0,1,1,0,0,0,0,0,50.189999,31.34,-9,-9,7,1,1,0,0,9,1,0,132,-80845.023,0,0,1444.4849 -12975,15910,28972,-9,28975,28974,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1095.1782,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,5,0,0,8,4,0,682.25,1317262.6,0,0,4259.1895 -12975,15910,28973,-9,28975,28974,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.15326,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,5,0,0,8,4,0,682.25,1317262.6,0,0,4259.1895 -12975,15910,28974,28975,-9,-9,2,1,1,58,1,0,3,0,1,-9,2,1,0,0,4,8.4024687,8.489953,0,2,0,-9,7,0,15,44.614498,0,0,0,43,2,4,1,3,3,2019,1,1,8,0,60,60,15,1,0,1,0,12.122914,12.122914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,50,55,6,4,5,0,0,8,4,0,682.25,1317262.6,0,0,4259.1895 -12975,15910,28975,28974,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,1,4,7.9484744,7.8941088,0,2,0,-9,20,0,-15,-130.49437,0,0,1,58,1,4,1,3,3,2019,1,2,10,1,32,32,15,1,0,1,0,9.8478947,9.8478947,0,0,0,0,0,0,0,42,1,1,0,0,0,50.621635,3,50,55,54,54,6,4,5,0,1,8,4,0,682.25,1317262.6,0,0,4259.1895 -12976,15911,28976,28977,-9,-9,2,1,0,40,1,0,0,0,3,-9,2,1,0,0,3,7.491322,7.6596932,0,1,0,-9,6,0,3,6.9576664,0,0,1,37,2,4,1,3,3,2019,1,1,10,1,32,35,15,1,0,1,0,4.4897985,4.4897985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.950001,40.580002,37.290001,55.07,2,1,1,0,0,6,4,0,1156.5,-71069.453,0,0,1375.7229 -12976,15911,28977,28976,-9,-9,1,1,1,37,1,0,0,0,2,-9,2,1,0,0,4,8.4008474,8.3316069,0,1,0,-9,6,0,-3,-118.16967,0,0,0,40,3,3,1,3,3,2019,1,2,9,0,41,41,15,1,0,1,0,12.466643,12.466643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.290001,55.07,52.950001,40.580002,5,1,1,0,0,6,4,0,1156.5,-71069.453,0,0,1375.7229 -12976,15912,28978,-9,28976,28977,3,1,0,18,2,0,0,0,2,-9,2,1,0,0,3,7.2469106,7.2388349,0,3,0,0,0,-9,0,-1059.7281,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,41,0,15,1,0,-9,1,4.6046572,4.6046572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.369999,57.279999,-9,-9,6,1,1,0,0,6,3,0,377,24794.938,0,0,1471.6571 -12977,15913,28979,28980,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,8.8560791,8.8446674,0,1,0,-9,7,0,0,-.03213441,0,0,0,32,1,2,1,2,3,2019,1,1,4,0,38,45,15,1,0,1,0,25.890886,25.890886,0,0,0,0,0,0,0,0,0,0,0,1.2269937,0,0,0,55.93,52.619999,53.23,47.509998,5,1,1,0,0,7,5,1,941.5,36683.727,0,0,5586.8896 -12977,15913,28980,28979,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,2,8.5892897,8.8128548,0,1,0,-9,7,0,0,62.541756,0,0,1,32,1,4,1,2,3,2019,1,2,9,0,50,50,15,1,0,1,0,13.812647,13.812647,0,0,0,0,0,0,0,0,0,0,0,1.5000472,0,0,0,53.23,47.509998,55.93,52.619999,5,1,1,0,0,7,5,1,941.5,36683.727,0,0,5586.8896 -12978,15914,28981,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,5.6814165,6.0042806,3,0,0,0,-9,0,-1060.941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.8889952,.40995306,3,53.23,42.900002,-9,-9,6,1,1,0,0,10,2,0,1224,206621.31,0,0,930.80389 -12979,15915,28982,28983,-9,-9,1,1,0,46,1,0,2,0,1,-9,1,1,0,0,4,8.319932,8.7562227,0,2,0,-9,2,0,-4,-23.973928,0,0,0,50,1,5,1,2,2,2019,1,2,14,3,60,50,15,1,0,1,0,11.739453,11.739453,0,0,0,0,0,0,0,0,0,0,0,8.1387596,0,0,0,47.049999,56.66,55.200001,57.220001,5,1,1,0,0,11,5,0,553.25,2540066,0,0,9874.248 -12979,15915,28983,28982,-9,-9,2,1,1,50,1,0,2,0,1,-9,1,1,0,0,5,9.6294785,9.4546642,0,2,0,-9,2,0,4,55.668919,0,0,0,46,1,4,1,2,2,2019,1,1,6,0,45,32,15,1,0,1,0,36.236519,36.236519,0,0,0,0,0,0,0,0,0,0,0,7.7961845,0,0,0,55.200001,57.220001,47.049999,56.66,6,1,1,0,0,11,5,0,553.25,2540066,0,0,9874.248 -12979,15915,28984,-9,28982,28983,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-935.50842,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,11,5,0,553.25,2540066,0,0,9874.248 -12979,15915,28985,-9,28982,28983,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.80206,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,0,553.25,2540066,0,0,9874.248 -12980,15916,28986,28987,-9,-9,1,1,0,57,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,24,0,9,-52.150341,0,0,0,48,3,2,1,-9,-9,2019,3,2,25,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2991924,0,10.155762,3,36.43,29.51,37.779999,49.080002,2,1,1,1,0,11,3,1,478,-106431.94,0,0,2246.8982 -12980,15916,28987,28986,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,2,8.1327763,8.0266027,0,1,0,-9,24,0,0,174.14479,0,0,0,57,2,2,3,3,-9,2019,2,1,18,7,40,45,15,1,1,3,0,7.6076989,7.6076989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,37.779999,49.080002,36.43,29.51,2,1,1,0,0,11,3,1,478,-106431.94,0,0,2246.8982 -12981,15917,28988,28992,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,-5,-48.226887,0,0,1,42,3,5,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,48.5,49.740002,46.869999,6,2,3,0,0,8,5,1,822.40002,289998.53,0,0,8469.8887 -12981,15917,28989,-9,28988,28992,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.68854,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,822.40002,289998.53,0,0,8469.8887 -12981,15917,28990,-9,28988,28992,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.83942,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,5,1,822.40002,289998.53,0,0,8469.8887 -12981,15917,28991,-9,28988,28992,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-921.13245,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,5,1,822.40002,289998.53,0,0,8469.8887 -12981,15917,28992,28988,-9,-9,1,1,1,42,1,0,3,0,3,-9,1,1,0,0,5,9.5993109,9.5960999,0,2,0,-9,16,0,5,158.5789,0,0,0,37,2,4,3,-9,-9,2019,2,2,19,5,40,20,15,1,1,3,0,48.472031,48.472031,0,0,0,0,0,0,0,0,1,1,0,7.4846492,0,0,0,49.740002,46.869999,39.16,48.5,4,1,1,0,0,8,5,1,822.40002,289998.53,0,0,8469.8887 -12982,15918,28993,28994,-9,-9,1,1,0,61,1,0,0,0,3,-9,4,3,0,0,1,0,5.4102645,5.7322259,1,0,-9,37,0,1,-169.85175,0,0,0,60,3,4,3,3,3,2019,4,2,18,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6915131,0,0,38.610001,31.530001,54,54,4,1,1,0,0,11,2,1,385.5,128754.46,0,0,731.34314 -12982,15918,28994,28993,-9,-9,2,1,1,60,1,0,0,0,3,-9,4,3,0,0,4,0,6.3814697,6.456234,1,0,-9,2,0,-1,-17.058767,0,0,0,61,3,1,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2223787,0,0,54,54,38.610001,31.530001,4,1,1,0,0,11,2,1,385.5,128754.46,0,0,731.34314 -12983,15919,28995,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,0,3,7.6224604,7.7719221,0,3,0,0,0,-9,0,-1076.8339,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,39,40,15,1,0,-9,0,7.5864921,7.5864921,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.161552,3,53.98,50.869999,-9,-9,1,1,1,0,0,11,3,0,267,-36099.145,0,0,1396.225 -12984,15920,28996,28999,-9,-9,1,1,0,51,1,0,2,0,1,-9,1,1,0,0,5,8.4042482,9.0439548,0,2,0,-9,8,0,-2,54.127762,0,0,0,53,1,2,1,2,2,2019,1,2,7,0,20,46,15,1,0,1,0,38.507843,38.507843,0,0,0,0,0,0,0,0,0,0,0,3.6293414,0,0,0,57.060001,57.759998,49.869999,50.459999,6,3,4,0,0,2,5,1,1099.5,755317.13,0,0,6886.4209 -12984,15920,28997,-9,28996,28999,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1003.4911,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,4,2,0,0,2,5,1,1099.5,755317.13,0,0,6886.4209 -12984,15920,28998,-9,28996,28999,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-895.09534,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,5,1,1099.5,755317.13,0,0,6886.4209 -12984,15920,28999,28996,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,0,2,9.980217,9.7660589,0,2,0,-9,8,0,2,-76.183624,0,0,0,51,1,5,1,3,3,2019,1,1,7,0,55,50,15,1,0,1,0,29.729467,29.729467,0,0,0,0,0,0,0,0,0,0,0,5.4219379,0,0,0,49.869999,50.459999,57.060001,57.759998,6,1,1,0,0,2,5,1,1099.5,755317.13,0,0,6886.4209 -12985,15921,29000,29001,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.8536882,8.4190588,0,1,0,-9,10,0,8,-56.035038,0,0,0,53,1,3,1,3,3,2019,1,2,15,3,36,36,15,1,0,1,0,21.466806,21.466806,0,0,0,0,0,0,0,0,0,0,0,2.313375,0,0,0,49.029999,46.259998,62.029999,36.18,5,1,1,0,0,8,5,1,2956,678382.56,0,0,4669.9141 -12985,15921,29001,29000,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,8.8319368,8.7011156,0,1,0,-9,10,0,-8,-89.257103,0,0,0,61,2,3,1,3,3,2019,1,1,6,0,16,37,15,1,0,1,0,36.993511,36.993511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.029999,36.18,49.029999,46.259998,5,1,1,0,0,8,5,1,2956,678382.56,0,0,4669.9141 -12985,15922,29002,-9,29001,29000,3,1,1,30,2,0,0,0,2,0,7,2,0,0,4,5.0698004,5.0675616,0,3,0,0,0,-9,0,-901.37708,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,2,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6970156,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,8,2,1,330,156380.55,0,0,-1362.489 -12985,15923,29003,-9,29001,29000,4,1,0,21,2,0,0,0,2,-9,7,2,0,0,3,6.1535335,6.1377087,0,3,0,0,0,-9,0,-1001.8979,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,21,9,8,33,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,55.16,-9,-9,3,1,1,0,0,8,2,1,2121,15500.565,0,0,1116.9672 -12986,15924,29004,29005,-9,-9,2,1,0,59,1,0,0,0,1,-9,3,3,0,0,3,7.9404078,8.1268072,0,1,0,-9,7,0,3,14.74558,0,0,0,56,2,2,3,3,2,2019,4,1,10,0,38,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,56.349998,45.630001,42.009998,37.59,5,1,1,1,0,4,3,0,1348,317676.94,0,0,1849.1033 -12986,15924,29005,29004,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,7,0,-3,-42.620853,0,0,0,59,1,3,3,3,3,2019,4,2,18,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.009998,37.59,56.349998,45.630001,3,1,1,0,1,4,3,0,1348,317676.94,0,0,1849.1033 -12987,15925,29006,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,0,2,0,4.1601481,4.4046769,3,0,-9,0,-9,0,-854.44348,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.799583,4.3165059,0,0,43.450001,38.380001,-9,-9,6,1,1,0,1,7,1,0,436,445950.38,0,0,1649.5121 -12988,15926,29007,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,6,3,0,0,3,0,8.444458,8.1341686,3,0,0,0,-9,0,-868.03217,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9336734,7.9731016,0,0,59.459999,36.25,-9,-9,6,1,1,0,0,12,4,1,118,1343238.5,0,0,3341.2014 -12989,15927,29008,29009,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,7.0639234,7.4871349,1,0,-9,47,0,-5,-76.11422,0,0,0,68,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0258489,7.3369241,0,0,57.060001,57.759998,55.189999,54.259998,7,1,1,0,0,7,3,1,218.5,992490.13,0,0,3864.5322 -12989,15927,29009,29008,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.1555138,7.2228684,1,0,-9,8,0,5,-4.0338864,0,0,0,63,2,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4341774,6.8658495,0,0,55.189999,54.259998,57.060001,57.759998,6,1,1,0,0,7,3,1,218.5,992490.13,0,0,3864.5322 -12990,15928,29010,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,0,5,7.0660477,7.4422159,5.4448919,3,0,0,0,-9,0,-1106.4883,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,24,24,15,1,0,-9,0,7.273797,7.273797,0,0,0,0,0,0,0,0,0,0,0,6.3698559,5.6517105,0,0,42.759998,57.529999,-9,-9,5,1,1,0,0,7,3,1,391,6710.4463,0,0,775.57727 -12991,15929,29011,29012,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,3,8.3565731,8.4453611,0,1,0,-9,36,0,-4,-33.229855,0,0,0,61,2,3,1,3,3,2019,1,2,6,0,39,39,15,1,0,1,0,17.552025,17.552025,0,0,0,0,0,0,0,0,0,0,0,3.1304362,0,0,0,61.279999,48.880001,59.48,44.27,2,1,1,0,0,12,5,1,1668.5,908625.5,0,0,4579.4189 -12991,15929,29012,29011,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,9.0100784,9.0286026,0,1,0,-9,8,0,4,-32.616146,0,0,0,57,1,3,1,2,3,2019,1,1,6,0,40,40,15,1,0,1,0,18.921047,18.921047,0,0,0,0,0,0,0,0,0,0,0,6.3869863,0,0,0,59.48,44.27,61.279999,48.880001,6,1,1,0,0,12,5,1,1668.5,908625.5,0,0,4579.4189 -12991,15930,29013,-9,29011,29012,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,4,8.6454668,8.4814386,0,3,0,0,0,-9,0,-1054.9279,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,45,39,15,1,0,-9,1,13.790425,13.790425,0,0,0,0,0,0,0,0,0,0,0,3.8850665,0,0,0,52.48,54.330002,-9,-9,6,1,1,0,0,12,5,1,984,29449.219,0,0,565.60321 -12992,15931,29014,29015,-9,-9,2,1,0,72,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,56,0,-1,0,0,0,0,73,3,3,3,3,3,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.990002,24,54.959999,53.169998,6,1,1,0,0,6,1,1,325,418393.97,0,0,2412.7966 -12992,15931,29015,29014,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,1,0,0,0,0,72,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.473946,1,54.959999,53.169998,56.990002,24,6,1,1,0,0,6,1,1,325,418393.97,0,0,2412.7966 -12992,15932,29016,-9,29014,29015,3,1,1,43,2,0,0,0,2,-9,2,1,0,0,3,8.1749649,8.2332821,0,3,0,0,0,-9,0,-1017.8627,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,1,9.6021538,9.6021538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.040001,48.599998,-9,-9,2,1,1,0,0,6,4,1,747,308075.5,0,0,1246.8198 -12993,15933,29017,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,8.1087227,8.2803707,0,3,0,0,0,-9,0,-990.328,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,40,40,15,1,1,-9,0,11.51204,11.51204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.98,63,-9,-9,2,1,1,0,0,7,4,0,365,212866.38,0,0,1957.8378 -12993,15934,29018,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.2246504,8.0771074,0,3,0,0,0,-9,0,-937.75293,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,50,50,15,1,0,-9,0,9.7493372,9.7493372,0,0,0,0,0,0,0,0,0,0,0,6.5698147,0,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,7,4,0,798,40760.742,0,0,1755.2958 -12994,15935,29019,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,1,1,0,0,3,7.3013139,6.9435449,0,3,0,0,0,-9,0,-960.0589,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,11,20,30,15,1,1,-9,0,5.9059706,5.9059706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.23,65.129997,-9,-9,5,1,1,0,0,7,2,1,527,317053.06,0,0,1235.8021 -12994,15936,29020,-9,29019,-9,2,1,0,18,2,0,0,0,2,-9,7,2,0,0,4,0,5.4060354,4.9648175,3,0,0,0,-9,0,-997.34424,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,14,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0949836,0,0,0,41.779999,61.860001,-9,-9,6,1,1,0,0,7,2,1,354,180208.31,0,0,70.454254 -12995,15937,29021,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,0,3,3.345458,3.5043993,0,3,0,0,0,-9,0,-882.50037,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9092188,0,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,5,2,0,1071,901557.06,0,0,508.27399 -12996,15938,29022,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,2,7.8060398,7.8407459,0,3,0,0,0,-9,0,-1164.0278,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,38,37,15,1,0,-9,0,7.5014687,7.5014687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,45.799999,-9,-9,3,1,1,0,0,4,3,0,2843,115836.69,0,0,20.779972 -12997,15939,29023,29024,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,0,2,8.3626051,7.9760213,5.6707716,1,0,-9,18,0,4,34.959412,0,0,0,60,3,3,1,3,3,2019,1,2,8,0,39,65,15,1,0,1,0,11.791086,11.791086,0,0,0,0,0,0,0,0,0,0,0,2.4113848,5.8867636,0,0,58.759998,29.959999,48,48,4,1,1,0,0,12,5,1,452,886452.63,0,0,2549.3237 -12997,15939,29024,29023,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,8.386241,8.4906836,5.3699756,1,0,-9,14,0,-4,107.5097,0,0,0,64,3,2,1,3,3,2019,1,1,20,9,37,38,15,1,1,1,0,10.44663,10.44663,0,0,0,0,0,0,0,0,0,0,0,0,5.7481308,0,0,48,48,58.759998,29.959999,6,1,1,0,0,12,5,1,452,886452.63,0,0,2549.3237 -12998,15940,29025,-9,-9,-9,1,1,0,29,3,0,0,0,1,-9,5,1,0,0,4,0,0,0,3,0,0,0,-9,0,-873.47009,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,32,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.049999,57.869999,-9,-9,6,1,1,0,0,10,1,0,982,24654.311,0,0,0 -12999,15941,29026,29028,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.6930962,8.9109869,0,2,0,-9,22,0,0,-69.710541,0,0,0,47,1,4,1,2,2,2019,1,2,8,0,43,50,15,1,0,1,0,15.528229,15.528229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,12,5,1,844.25,484526.72,0,0,4403.0884 -12999,15941,29027,-9,29026,29028,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1068.5171,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,12,5,1,844.25,484526.72,0,0,4403.0884 -12999,15941,29028,29026,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,8.6123047,9.1384916,0,2,0,-9,22,0,0,50.68401,0,0,0,47,1,3,1,2,2,2019,1,1,7,0,37,36,15,1,0,1,0,25.2083,25.2083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.330002,53.459999,6,1,1,0,0,12,5,1,844.25,484526.72,0,0,4403.0884 -12999,15941,29029,-9,29026,29028,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1017.9382,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,5,1,844.25,484526.72,0,0,4403.0884 -13000,15942,29030,29031,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,0,5,4.5772505,8.3272305,8.0795088,1,0,-9,42,0,6,96.215599,0,0,0,68,1,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3957462,8.4069815,0,0,62.389999,56.709999,62.389999,56.709999,7,1,1,0,0,11,4,1,1067.5,1346428.1,0,0,4436.2808 -13000,15942,29031,29030,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,5,0,7.8236842,7.6128278,1,0,-9,46,0,-6,-124.30186,0,0,0,74,1,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2461238,7.870152,0,0,62.389999,56.709999,62.389999,56.709999,7,1,1,0,0,11,4,1,1067.5,1346428.1,0,0,4436.2808 -13001,15943,29032,29033,-9,-9,1,1,1,59,1,0,2,0,3,-9,2,1,0,0,2,7.3390827,7.2164922,0,2,0,-9,38,0,0,-46.066818,0,0,0,59,1,3,1,3,2,2019,1,2,6,1,20,38,15,1,0,1,0,7.4720163,7.4720163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,73.970001,17.6,50.099998,51.700001,5,2,3,0,0,5,3,1,497.5,382815.06,0,0,1052.2737 -13001,15943,29033,29032,-9,-9,2,1,0,59,1,0,2,0,1,-9,2,1,0,0,3,7.8355885,8.0466738,0,2,0,-9,38,0,0,-25.235767,0,0,0,59,3,2,1,3,2,2019,1,1,6,0,20,45,15,1,0,1,0,15.742827,15.742827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.099998,51.700001,73.970001,17.6,5,2,3,0,0,5,3,1,497.5,382815.06,0,0,1052.2737 -13001,15944,29034,-9,29033,29032,3,1,1,32,2,0,2,0,2,-9,2,1,0,0,5,8.5357943,8.3158588,0,3,0,0,0,-9,0,-1050.9219,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,54,53,15,1,0,-9,1,9.219923,9.219923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.439999,52.09,-9,-9,4,2,3,0,0,5,5,1,383,97125.25,0,0,485.36374 -13001,15945,29035,-9,29036,-9,5,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-945.55939,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,3,1,721.33331,-54615.926,0,0,980.59503 -13001,15945,29036,-9,29033,29032,4,1,0,34,3,0,2,0,1,-9,2,1,0,0,4,8.0962143,8.3805809,0,3,0,0,0,-9,0,-1008.175,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,15,4,29,28,15,1,1,-9,1,11.585331,11.585331,0,0,0,0,0,0,0,0,1,1,0,.62165749,0,0,0,40.959999,61.139999,-9,-9,5,2,3,0,0,5,3,1,721.33331,-54615.926,0,0,980.59503 -13001,15945,29037,-9,29036,-9,6,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1015.3108,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,3,1,721.33331,-54615.926,0,0,980.59503 -13002,15946,29038,-9,29039,-9,1,1,1,47,3,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1101.5868,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.26691,3,34.630001,59.139999,-9,-9,4,1,1,1,0,12,1,0,1225,-133293.66,0,0,230.85327 -13002,15947,29039,-9,-9,-9,2,1,0,74,3,0,0,0,3,-9,4,3,0,1,2,0,6.9689617,6.9000292,3,0,0,0,-9,0,-867.17725,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.0924911,0,0,1,1,0,0,6.8539138,0,0,47.580002,27.91,-9,-9,6,1,1,0,0,12,2,0,1120,193772.27,0,0,3216.3767 -13003,15948,29040,29041,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.9586563,8.0086889,1,0,-9,10,0,-1,-23.248087,0,0,0,71,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9704003,7.6763225,13.873824,3,57.16,56.150002,58.150002,52.91,7,1,1,0,0,6,3,1,617.5,805323.5,0,0,3301.5386 -13003,15948,29041,29040,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,5.6728482,5.3928494,1,0,-9,41,0,1,-84.794571,-9,0,0,70,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2426515,5.4510527,0,0,58.150002,52.91,57.16,56.150002,7,1,1,0,0,6,3,1,617.5,805323.5,0,0,3301.5386 -13004,15949,29042,29043,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.2783041,8.3160343,0,2,0,-9,5,0,3,-27.041773,0,0,0,44,2,4,1,3,2,2019,1,1,7,0,37,37,15,1,0,1,0,10.279088,10.279088,0,0,0,0,0,0,0,0,1,1,0,.39340383,0,0,0,57.16,56.150002,46.16,58.619999,5,1,1,0,0,2,4,0,1118.6666,10596.306,0,0,2978.7632 -13004,15949,29043,29042,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,6.9916563,7.4704833,5.9151049,2,0,-9,5,0,-3,-61.637383,0,0,1,47,2,4,1,2,2,2019,1,2,10,1,20,20,15,1,0,1,0,5.4882617,5.4882617,0,0,0,0,0,0,0,0,1,1,0,6.2854609,0,0,0,46.16,58.619999,57.16,56.150002,5,1,1,0,0,2,4,0,1118.6666,10596.306,0,0,2978.7632 -13004,15949,29044,-9,29043,29042,4,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.4845,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,0,1118.6666,10596.306,0,0,2978.7632 -13005,15950,29045,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,8,3,1,1,2,8.6104383,8.7625475,3.4188979,3,0,0,0,-9,0,-864.70337,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,27,9,6,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1847429,3.5274863,0,0,31.709999,35.950001,-9,-9,4,1,1,0,1,9,5,1,277,157686.63,0,0,3472.1592 -13006,15951,29046,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,1,1,0,0,3,7.3880363,7.2615604,0,3,0,0,0,-9,0,-1114.3241,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,30,12,60,0,15,1,1,-9,0,2.6917377,2.6917377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.97,64.309998,-9,-9,3,1,1,0,0,4,3,0,844,56334.508,0,0,1035.2502 -13007,15952,29047,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,4,8.5542288,8.9830055,0,3,0,-9,0,-9,0,-1074.916,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,0,15,1,0,-9,0,14.917474,14.917474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.400002,-9,-9,6,1,1,0,0,10,5,0,764,2749.7322,0,0,1699.6683 -13008,15953,29048,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,3,8.0351458,8.0099649,0,3,0,0,0,-9,0,-953.04102,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,43,15,1,0,-9,0,8.2733297,8.2733297,0,0,0,0,0,0,0,0,0,0,0,4.8507395,0,0,0,41.82,57.720001,-9,-9,4,1,1,0,0,2,4,1,707,-43758.777,0,0,-86.249062 -13009,15954,29049,29050,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.9794893,8.4357185,0,1,0,-9,4,0,-2,37.545315,0,0,0,48,2,4,1,2,2,2019,1,1,14,2,37,39,15,1,0,1,0,9.244236,9.244236,0,0,0,0,0,0,0,0,0,0,0,2.1456387,0,0,0,46.16,58.619999,53.369999,52.369999,6,1,1,0,0,11,5,1,767.5,24255.035,0,0,2639.2539 -13009,15954,29050,29049,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.31569,8.5847111,0,1,0,-9,4,0,2,-119.12236,0,0,0,46,2,4,1,2,2,2019,1,2,21,9,37,37,15,1,1,1,0,14.182507,14.182507,0,0,0,0,0,0,0,0,0,0,0,3.4892566,0,0,0,53.369999,52.369999,46.16,58.619999,6,1,1,0,0,11,5,1,767.5,24255.035,0,0,2639.2539 -13010,15955,29051,29052,-9,-9,1,1,1,21,1,0,0,0,1,0,7,2,0,0,5,7.2504134,7.3920522,0,1,0,1,1,-9,-1,125.89884,-9,1,0,22,2,1,3,1,1,2019,4,2,9,1,0,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4060407,0,0,0,44.849998,60.439999,24.209999,49.939999,6,1,1,0,0,12,2,0,407,51336.141,0,0,482.81467 -13010,15955,29052,29051,-9,-9,2,1,0,22,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,1,-9,1,58.719803,-9,1,1,21,1,5,2,-9,-9,2019,4,1,20,8,0,0,15,3,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.209999,49.939999,44.849998,60.439999,5,1,1,1,0,12,2,0,407,51336.141,0,0,482.81467 -13011,15956,29053,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,0,5,9.4598808,9.8074026,0,3,0,0,0,-9,0,-1018.2647,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,72,36,15,1,0,-9,0,24.398413,24.398413,0,0,0,0,0,0,0,0,0,0,0,6.575552,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,12,5,1,176,729609,0,0,6535.1523 -13012,15957,29054,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,0,3,8.9145203,8.5388308,0,3,0,0,0,-9,0,-1009.8633,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,47,45,15,1,0,-9,0,11.276782,11.276782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.709999,52.349998,-9,-9,5,3,4,0,0,4,5,1,757,39744.965,0,0,1898.9385 -13013,15958,29055,-9,29057,29056,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.23059,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,454.33334,18503.725,0,0,2252.2024 -13013,15958,29056,29057,-9,-9,2,1,1,37,1,1,1,0,2,-9,2,1,0,0,3,8.5532722,8.1824389,0,2,0,-9,15,0,-4,121.67953,0,0,0,41,2,4,1,2,3,2019,1,1,8,0,47,48,15,1,0,1,0,8.1545343,8.1545343,0,0,0,0,0,0,0,2,1,1,0,3.1201026,0,5.6825657,3,49.630001,54.220001,49.939999,58.009998,5,1,1,0,0,7,4,1,454.33334,18503.725,0,0,2252.2024 -13013,15958,29057,29056,-9,-9,1,1,0,41,1,1,1,0,2,-9,2,1,0,0,4,7.3895278,7.1488433,0,2,0,-9,15,0,4,-67.976677,0,0,1,37,2,3,1,3,2,2019,1,2,9,0,24,24,15,1,0,1,0,7.3373446,7.3373446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.939999,58.009998,49.630001,54.220001,6,1,1,0,1,7,4,1,454.33334,18503.725,0,0,2252.2024 -13014,15959,29058,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,2,1,0,0,3,6.8028827,7.0913925,6.2864661,3,0,0,0,-9,0,-913.94135,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,17,17,15,1,0,-9,0,5.2048035,5.2048035,1,0,0,0,0,0,0,0,1,1,0,3.9827745,6.1281676,0,0,53.18,30.700001,-9,-9,4,1,1,0,0,6,3,0,465,239499.61,0,0,1424.1439 -13015,15960,29059,29061,-9,-9,2,1,0,33,1,1,2,0,2,-9,2,1,0,0,2,7.8739057,7.8883286,0,2,0,-9,5,0,-5,-28.087311,0,0,1,38,2,2,1,-9,-9,2019,1,1,12,3,42,45,15,1,0,1,0,5.5967579,5.5967579,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.450001,33.75,20.120001,43.759998,5,1,1,0,0,4,3,0,1393.75,167884.73,0,0,3066.7793 -13015,15960,29060,-9,29059,29061,4,1,0,16,2,1,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-916.9812,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,4,3,0,1393.75,167884.73,0,0,3066.7793 -13015,15960,29061,29059,-9,-9,1,1,1,38,1,1,2,0,2,-9,2,1,0,0,2,8.1960621,8.2063847,0,2,0,-9,5,0,5,129.45744,0,0,0,33,2,2,1,-9,-9,2019,1,2,21,9,38,40,15,1,1,1,0,9.2670822,9.2670822,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.120001,43.759998,59.450001,33.75,3,1,1,0,1,4,3,0,1393.75,167884.73,0,0,3066.7793 -13015,15960,29062,-9,29059,29061,3,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.51318,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,1393.75,167884.73,0,0,3066.7793 -13016,15961,29063,-9,29064,-9,2,1,1,17,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1055.7722,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0069327,0,0,0,47,60,-9,-9,5,1,1,0,0,5,3,1,903.33331,218946.42,0,0,2311.8875 -13016,15961,29064,-9,-9,-9,1,1,0,49,2,0,2,0,2,-9,2,1,0,0,3,7.7467318,8.1471624,7.0701728,4,0,-9,0,-9,0,-1079.9126,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,47,0,15,1,0,-9,0,6.6190748,6.6190748,0,0,0,0,0,0,0,0,1,1,0,7.2631493,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,0,5,3,1,903.33331,218946.42,0,0,2311.8875 -13016,15961,29065,-9,29064,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,4.8855286,4.6618266,4,0,-9,0,-9,0,-1021.912,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8969913,0,0,0,46.98,59.349998,-9,-9,6,1,1,0,0,5,3,1,903.33331,218946.42,0,0,2311.8875 -13017,15962,29066,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,7.0532165,6.5898032,3,0,0,0,-9,0,-995.93732,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7210994,0,0,50,47,-9,-9,5,1,1,0,0,2,2,1,158,436952,0,0,1331.7462 -13018,15963,29067,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-945.90961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,10.633809,0,0,0,29.875051,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,13,1,1,886,234025.45,0,0,1072.0802 -13019,15964,29068,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,0,3,0,7.8365116,7.8418002,3,0,0,0,-9,0,-987.47528,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1142797,7.923779,0,0,46.560001,50.259998,-9,-9,6,1,1,0,0,9,3,1,469,1448086.6,0,0,1987.9731 -13020,15965,29069,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1162.234,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.582384,3,51.639999,19.940001,-9,-9,7,1,1,0,0,5,1,0,450,67236.516,0,0,1553.1077 -13020,15966,29070,-9,29069,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,0,3,8.5274734,8.5289183,0,3,0,-9,0,-9,0,-867.08264,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,38,0,15,1,0,-9,1,16.312845,16.312845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.630001,54.220001,-9,-9,6,1,1,0,0,5,4,0,303,258576.8,0,0,1333.3684 -13021,15967,29071,29072,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,1,3,6.0199056,6.0314665,0,1,0,-9,30,0,4,-12.590463,0,0,0,54,2,2,1,-9,-9,2019,1,2,6,0,10,0,15,1,0,1,0,4.2265601,4.2265601,0,0,0,0,0,0,0,2,1,1,0,.30309078,0,1.6341817,2,61.93,32.240002,53.349998,11.01,6,1,1,0,0,6,3,1,164,395258,0,0,2107.3423 -13021,15967,29072,29071,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,1,2,7.9694552,7.8540969,0,1,0,-9,30,0,-4,-43.257191,0,0,0,58,2,3,1,-9,-9,2019,1,1,13,2,40,38,15,1,0,1,0,8.872014,8.872014,0,0,0,0,0,0,0,2,1,1,0,3.4202232,0,9.9154654,2,53.349998,11.01,61.93,32.240002,4,1,1,0,0,6,3,1,164,395258,0,0,2107.3423 -13022,15968,29073,29074,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,2,8.2373581,8.0966587,0,1,0,-9,8,0,-7,-25.715582,0,0,0,61,3,1,1,-9,-9,2019,1,1,13,1,40,40,15,1,0,1,0,7.9850526,7.9850526,0,0,0,0,0,0,0,7,1,0,1,0,0,7.4881387,1,45.759998,47.02,37.459999,20.67,3,1,1,0,0,12,5,1,551.5,306281.44,0,0,3660.7764 -13022,15968,29074,29073,-9,-9,1,1,0,61,1,0,0,0,3,-9,1,1,0,0,1,8.3885832,8.4434242,0,1,0,-9,8,0,7,-39.103863,0,0,0,54,2,2,1,3,3,2019,1,2,18,4,8,40,15,1,1,1,0,63.34964,63.34964,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.459999,20.67,45.759998,47.02,2,1,1,0,1,12,5,1,551.5,306281.44,0,0,3660.7764 -13023,15969,29075,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,0,4,0,7.0847969,7.2258844,3,0,0,0,-9,0,-1078.5907,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.5510845,6.9959621,29.19418,3,58.889999,51.279999,-9,-9,6,1,1,0,0,7,2,0,642,252453.2,0,0,1327.5614 -13024,15970,29076,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,4,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1032.3102,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.650002,56.130001,-9,-9,6,1,1,0,0,4,1,1,128,24544.203,0,0,0 -13025,15971,29077,29078,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.989634,8.0184364,0,1,0,-9,36,0,-16,20.973015,0,0,0,74,3,5,1,2,2,2019,1,2,8,0,36,53,15,1,0,1,0,9.1211586,9.1211586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,2,3,1,509.5,764232.88,0,0,3208.9976 -13025,15971,29078,29077,-9,-9,2,1,1,74,1,0,0,0,3,-9,2,1,0,0,5,7.029459,7.1388865,4.8350296,1,0,-9,27,0,16,12.985292,0,0,0,58,2,4,1,3,3,2019,1,1,5,0,24,24,15,1,0,1,0,4.5587316,4.5587316,0,0,0,0,0,0,0,0,1,1,0,4.6932445,5.0798631,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,2,3,1,509.5,764232.88,0,0,3208.9976 -13026,15972,29079,-9,29080,-9,1,1,0,60,3,0,0,0,3,-9,3,3,0,0,3,0,5.9184332,6.1626434,3,0,0,0,-9,0,-876.3468,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,1.9336139,6.1136055,67.931618,3,48,48,-9,-9,5,1,1,1,0,4,2,1,453,342791.53,0,0,-186.67194 -13026,15973,29080,-9,-9,-9,2,1,0,89,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-997.28534,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,124.27586,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,4,1,1,1141,-102315.17,0,0,1334.5671 -13027,15974,29081,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1036.0944,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.93,19.35,-9,-9,3,1,1,0,0,11,1,0,1037,20575.479,0,0,2050.0713 -13028,15975,29082,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,0,3,7.9928498,7.9467149,0,3,0,0,0,-9,0,-982.67328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,40,40,15,1,0,-9,0,7.2131882,7.2131882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,5,3,4,0,0,2,3,0,568,75847.188,0,0,2033.7177 -13029,15976,29083,29084,-9,-9,1,1,1,28,1,1,1,0,1,-9,2,1,0,0,3,8.5972424,8.1851511,0,2,0,-9,3,0,-1,75.71727,0,1,0,29,1,4,1,1,1,2019,1,2,5,1,45,50,15,1,0,1,0,9.8232794,9.8232794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.18,51.369999,60.119999,54.799999,7,1,1,0,0,10,4,1,591.33331,42864.016,0,0,3102.3254 -13029,15976,29084,29083,-9,-9,2,1,0,29,1,1,1,0,1,-9,5,1,0,0,4,7.5667524,7.7790685,0,2,0,-9,3,0,1,13.420258,-9,1,1,28,1,3,1,-9,-9,2019,1,1,10,0,35,0,15,1,0,1,0,8.3045206,8.3045206,0,0,0,0,0,0,0,0,1,1,0,1.6777772,0,0,0,60.119999,54.799999,53.18,51.369999,6,1,1,0,0,10,4,1,591.33331,42864.016,0,0,3102.3254 -13029,15976,29085,-9,29084,29083,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1176.1592,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,4,1,591.33331,42864.016,0,0,3102.3254 -13030,15977,29086,29087,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,0,2,7.3400035,8.0921469,8.3245955,1,0,-9,9,0,-1,41.66206,0,0,0,58,2,3,1,3,3,2019,3,2,10,1,20,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6241102,0,0,47.549999,33.799999,56.099998,49.93,6,1,1,0,0,2,4,1,103.5,435225.94,0,0,3544.3218 -13030,15977,29087,29086,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.5882115,7.6285925,0,1,0,-9,9,0,1,-95.879501,0,0,0,57,2,2,3,3,2,2019,2,1,8,0,32,32,15,1,0,4,0,6.4878426,6.4878426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.099998,49.93,47.549999,33.799999,7,1,1,0,0,2,4,1,103.5,435225.94,0,0,3544.3218 -13031,15978,29088,-9,29089,-9,1,1,1,63,2,0,0,0,3,-9,2,1,0,0,4,8.1399946,8.5122185,5.2493763,3,0,0,0,-9,0,-1072.5757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,49,38,15,1,0,-9,1,6.5012541,6.5012541,0,0,0,0,0,0,0,7,1,1,0,3.9463134,5.7517266,4.5099716,3,59.860001,48.060001,-9,-9,7,1,1,0,0,5,4,1,765,-12485.36,0,0,1064.9626 -13031,15979,29089,-9,-9,-9,2,1,0,87,3,0,0,0,3,-9,4,3,0,0,3,0,3.1570001,3.2998426,3,0,0,0,-9,0,-1099.801,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9997435,2.7817292,0,0,54,44,-9,-9,6,1,1,0,0,5,1,1,347,-76570.297,0,0,1523.4668 -13032,15980,29090,29092,-9,-9,1,1,0,35,1,0,1,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,6,0,1,17.041149,0,0,1,34,1,5,1,2,3,2019,1,2,20,6,0,28,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,42.849998,62.849998,5,1,1,0,0,9,4,1,823.66669,140554.13,0,0,2750.9238 -13032,15980,29091,-9,29090,29092,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.31116,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,823.66669,140554.13,0,0,2750.9238 -13032,15980,29092,29090,-9,-9,2,1,1,34,1,0,1,0,1,-9,2,1,0,0,5,8.8860149,8.7374544,0,2,0,-9,6,0,-1,14.024231,0,0,0,35,1,4,1,2,2,2019,1,1,8,1,47,47,15,1,0,1,0,15.334043,15.334043,0,0,0,0,0,0,0,0,1,1,0,4.0676055,0,0,0,42.849998,62.849998,45.91,59.889999,5,1,1,0,0,9,4,1,823.66669,140554.13,0,0,2750.9238 -13033,15981,29093,29094,-9,-9,1,1,0,52,1,0,0,0,3,-9,6,3,0,0,1,0,0,0,1,0,-9,16,0,-12,47.224213,0,0,0,64,2,5,1,2,3,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.779999,32.130001,60.02,56.419998,5,1,1,0,0,10,3,0,816,105182.75,0,0,1810.1643 -13033,15981,29094,29093,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,5,7.8087602,7.6944661,0,1,0,-9,16,0,12,7.9475813,0,0,0,52,3,1,3,2,3,2019,2,1,7,0,37,0,15,1,0,3,0,8.81252,8.81252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,39.779999,32.130001,5,1,1,0,0,10,3,0,816,105182.75,0,0,1810.1643 -13034,15982,29095,29096,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,8.6274729,8.5978813,0,1,0,-9,8,0,-14,86.922295,0,0,0,63,2,4,1,2,2,2019,1,2,23,11,40,55,15,1,1,1,0,17.555063,17.555063,0,0,0,0,0,0,0,0,0,0,0,3.458312,0,0,0,18.969999,57.66,54.200001,57.490002,5,1,1,0,1,10,5,1,1138.5,906297.63,0,0,3623.0151 -13034,15982,29096,29095,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,0,4,7.5068769,7.8397069,0,1,0,-9,8,0,14,-158.08493,0,0,0,49,1,3,1,3,2,2019,1,1,13,2,50,45,15,1,0,1,0,7.4771686,7.4771686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,18.969999,57.66,6,1,1,0,1,10,5,1,1138.5,906297.63,0,0,3623.0151 -13035,15983,29097,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,2,1,0,0,3,8.0191078,7.8721914,0,3,0,0,0,-9,0,-915.82709,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,37,38,15,1,0,-9,0,11.295627,11.295627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,2,1,1,0,0,6,4,1,473,-181945.59,0,0,1344.4032 -13036,15984,29098,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,0,3,8.3361006,8.5302629,4.9724112,4,0,0,0,-9,0,-1000.6052,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,57,47,15,1,1,-9,0,9.4881811,9.4881811,0,0,0,0,0,0,0,0,1,1,0,5.5744605,0,0,0,38.759998,58.16,-9,-9,4,1,1,0,0,1,4,1,604.5,44704.23,0,0,2806.0781 -13036,15984,29099,-9,29098,-9,3,1,1,17,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-870.13074,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,57.73,-9,-9,6,1,1,0,0,1,4,1,604.5,44704.23,0,0,2806.0781 -13037,15985,29100,29101,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,5.6332717,5.7659969,1,0,-9,6,0,-3,-59.994423,0,0,0,69,2,4,3,2,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3924198,5.9493589,0,0,61.830002,44.419998,60.119999,54.799999,7,1,1,0,0,6,2,1,863.5,271634.66,0,0,2284.5532 -13037,15985,29101,29100,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,3,29.269529,0,0,0,66,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7701511,0,0,0,60.119999,54.799999,61.830002,44.419998,7,1,1,0,0,6,2,1,863.5,271634.66,0,0,2284.5532 -13038,15986,29102,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-982.00983,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.529999,43.740002,-9,-9,6,1,1,0,0,6,1,1,272,182886.25,0,0,-334.53928 -13039,15987,29103,29104,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,3,8.9965305,8.7854815,0,2,0,-9,10,0,2,-26.387707,0,0,0,46,1,4,1,2,1,2019,1,2,36,12,41,42,15,1,1,1,0,21.313913,21.313913,0,0,0,0,0,0,0,0,1,1,0,2.6575313,0,0,0,20.23,65.129997,25.42,65.410004,2,1,1,0,0,12,5,1,807.5,1668466.5,0,0,3039.0378 -13039,15987,29104,29103,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,4,8.297617,8.2871304,0,2,0,-9,10,0,-2,-6.0103011,0,0,0,48,2,3,1,2,1,2019,1,1,21,9,34,33,15,1,1,1,0,11.423275,11.423275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.42,65.410004,20.23,65.129997,4,1,1,0,0,12,5,1,807.5,1668466.5,0,0,3039.0378 -13040,15988,29105,-9,-9,-9,1,1,0,54,2,0,2,0,1,-9,2,1,0,0,1,7.5300603,7.7238092,0,4,0,0,0,-9,0,-1079.5344,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,55,25,15,1,1,-9,0,4.8165884,4.8165884,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.799999,30.459999,-9,-9,3,3,4,0,1,8,2,0,434,97404.711,0,0,1841.9939 -13040,15989,29106,-9,29105,-9,2,1,0,32,2,0,2,0,2,-9,2,1,0,0,3,8.0063686,8.1259613,0,3,0,0,0,-9,0,-937.75659,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,48,0,15,1,0,-9,1,6.7653604,6.7653604,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.990002,48.02,-9,-9,2,3,4,0,0,8,4,0,925,-5744.5913,0,0,2215.1367 -13040,15990,29107,-9,29105,-9,3,1,0,29,2,0,2,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-799.05225,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,0,44,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.330002,55.93,-9,-9,6,3,4,0,0,8,1,0,523,49266.223,0,0,0 -13040,15991,29108,-9,29105,-9,4,1,0,25,2,0,2,0,1,-9,2,1,0,0,3,7.5998993,7.8597493,0,3,0,0,0,-9,0,-997.56927,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,43,0,15,1,0,-9,1,6.7492647,6.7492647,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.91,48.98,-9,-9,6,3,4,0,0,8,3,0,1015,29282.67,0,0,608.19611 -13040,15992,29109,-9,29105,-9,5,1,0,20,2,0,2,0,2,-9,2,1,0,0,4,7.1384516,7.6223922,0,3,0,0,0,-9,0,-910.18225,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,16,16,15,1,1,-9,1,9.4779596,9.4779596,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.740002,55.32,-9,-9,5,4,2,0,0,8,3,0,318,3570.9465,0,0,1215.688 -13040,15993,29110,-9,29105,-9,6,1,0,18,2,0,2,1,3,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-996.33887,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.469999,44.5,-9,-9,4,3,4,0,0,8,4,0,200,183584.2,0,0,-14.832547 -13040,15994,29111,-9,29105,-9,8,1,0,30,2,0,2,0,1,-9,2,1,0,0,3,8.0735388,8.5173254,0,3,0,0,0,-9,0,-1095.7115,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,1,37,39,15,1,0,-9,1,9.1445704,9.1445704,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.419998,52.369999,-9,-9,5,3,4,0,0,8,4,0,141,25698.242,0,0,1297.059 -13041,15995,29112,29113,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.8738613,8.8343687,0,1,0,-9,8,0,-3,107.13297,0,0,1,35,1,4,1,1,1,2019,1,2,12,0,43,40,15,1,0,1,0,27.903597,27.903597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,45.119999,54.860001,5,1,1,0,0,8,5,1,1244,523903.78,0,0,4906.5186 -13041,15995,29113,29112,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.7468081,8.8445101,0,1,0,-9,8,0,3,173.4483,0,0,0,32,1,4,1,-9,-9,2019,1,1,12,0,50,45,15,1,0,1,0,13.999861,13.999861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.119999,54.860001,51.830002,57.200001,6,1,1,0,0,8,5,1,1244,523903.78,0,0,4906.5186 -13042,15996,29114,-9,-9,-9,1,1,1,36,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-999.56427,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.700001,43.52,-9,-9,4,1,1,0,0,4,1,0,480,-58583.121,0,0,1657.5419 -13043,15997,29115,-9,29118,29117,2,1,0,17,2,0,1,0,2,-9,2,3,0,0,4,3.0125666,3.114291,0,2,0,0,0,-9,0,-929.36859,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.049999,39,-9,-9,5,1,1,0,0,2,5,1,811.75,32903.055,0,0,4539.8784 -13043,15997,29116,-9,29118,29117,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1023.0125,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,5,1,811.75,32903.055,0,0,4539.8784 -13043,15997,29117,29118,-9,-9,4,1,1,29,1,0,1,0,2,-9,2,1,0,0,4,8.7621717,9.0135527,0,2,0,-9,5,0,-12,158.69225,-9,1,0,41,2,4,1,-9,-9,2019,1,1,7,1,37,0,15,1,0,1,0,16.949257,16.949257,0,0,0,0,0,0,0,0,1,1,0,2.2946966,0,0,0,47.490002,55.02,51.240002,58.84,5,1,1,0,0,2,5,1,811.75,32903.055,0,0,4539.8784 -13043,15997,29118,29117,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.2341385,8.3083858,6.4790239,2,0,-9,5,0,12,90.146683,0,0,1,29,2,4,1,2,2,2019,1,4,13,2,36,36,15,1,0,1,0,9.8961115,9.8961115,0,0,0,0,0,0,0,0,1,1,0,7.4783397,0,0,0,51.240002,58.84,47.490002,55.02,6,1,1,0,0,2,5,1,811.75,32903.055,0,0,4539.8784 -13044,15998,29119,-9,29121,29122,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1007.017,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,2,3,0,0,6,3,1,1261.75,185935.75,0,0,2416.5513 -13044,15998,29120,-9,29121,29122,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.69904,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,3,1,1261.75,185935.75,0,0,2416.5513 -13044,15998,29121,29122,-9,-9,2,1,0,40,1,0,2,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,18,0,-6,-213.38913,0,0,1,46,2,4,1,2,2,2019,3,1,15,3,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.16,52.619999,40.709999,62.41,2,2,3,0,1,6,3,1,1261.75,185935.75,0,0,2416.5513 -13044,15998,29122,29121,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,7.9475489,8.3913288,0,2,0,-9,18,0,6,-26.928812,0,0,0,40,3,5,3,-9,-9,2019,2,2,11,1,48,39,15,1,0,3,0,7.8353157,7.8353157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.709999,62.41,50.16,52.619999,3,2,3,0,0,6,3,1,1261.75,185935.75,0,0,2416.5513 -13045,15999,29123,29124,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,0,4,0,5.9691348,6.0409522,1,0,-9,52,0,8,7.1552567,0,0,0,83,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1052914,6.564784,0,0,58,50,62.009998,38.869999,6,1,1,0,0,6,3,1,300.5,588613.19,0,0,3270.2354 -13045,15999,29124,29123,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,0,4,0,7.8060155,7.8500557,1,0,-9,52,0,-8,-7.7367158,0,0,0,91,3,4,3,2,3,2019,4,2,11,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.5181375,7.632679,0,0,62.009998,38.869999,58,50,6,1,1,0,0,6,3,1,300.5,588613.19,0,0,3270.2354 -13046,16000,29125,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,4,0,7.3480639,7.6311436,3,0,0,0,-9,0,-978.58087,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3840957,0,0,62.700001,43.990002,-9,-9,6,1,1,0,0,13,3,0,1128,11668.06,0,0,838.39301 -13047,16001,29126,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,8.112833,8.4159698,0,3,0,0,0,-9,0,-924.98529,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,0,13.333534,13.333534,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.860001,47.439999,-9,-9,6,1,1,0,0,12,5,1,163,-22051.693,0,0,981.48273 -13048,16002,29127,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,8.0169277,8.0638247,4.9978504,3,0,0,0,-9,0,-1050.0586,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,4,37,47,15,1,1,-9,0,13.477903,13.477903,0,0,0,0,0,0,0,0,1,1,0,6.7717352,5.5053592,0,0,37.369999,51.73,-9,-9,2,1,1,0,0,10,4,0,295,486962.66,0,0,1815.0842 -13048,16003,29128,-9,29127,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,1,8.1796417,8.16014,0,3,0,0,0,-9,0,-925.52795,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,5,25,15,1,1,-9,1,87.129608,87.129608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.1500001,47.860001,-9,-9,1,1,1,0,1,10,4,0,347,165325.98,0,0,1755.9491 -13048,16004,29129,-9,29127,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.1272883,7.2105031,0,3,0,0,0,-9,0,-1034.9667,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,32,24,15,1,0,-9,1,6.3164687,6.3164687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.099998,-9,-9,4,1,1,0,0,10,3,0,933,63721.586,0,0,2168.2917 -13049,16005,29130,-9,29131,-9,1,1,1,44,2,0,0,0,1,-9,1,1,0,0,4,7.8639669,7.5586033,0,3,0,0,0,-9,0,-1022.9647,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,25,35,15,1,0,-9,1,11.993779,11.993779,0,0,0,0,0,0,0,2,1,1,0,3.7457907,0,0,3,55.360001,54.240002,-9,-9,6,4,2,0,0,7,3,0,302,58733.695,0,0,892.69489 -13049,16006,29131,-9,-9,-9,2,1,0,68,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-879.2041,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.580002,46.919998,-9,-9,6,1,1,0,0,7,1,0,163,39851.594,0,0,407.5321 -13050,16007,29132,29133,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,7.5055122,7.8935256,1,0,-9,53,0,1,37.640671,0,0,0,69,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5290799,7.7649803,0,0,38.849998,43.93,55.360001,51.57,6,1,1,0,0,13,3,1,313,409653.84,0,0,3563.2593 -13050,16007,29133,29132,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,4.6184158,4.7540932,1,0,-9,53,0,-1,28.761272,0,0,0,70,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5925565,0,0,55.360001,51.57,38.849998,43.93,7,1,1,0,0,13,3,1,313,409653.84,0,0,3563.2593 -13051,16008,29134,29135,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.0210352,7.1779652,1,0,-9,26,0,-1,156.86276,0,0,0,66,1,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,2.1750722,2.9727149,0,0,0,11.522031,0,1,1,0,6.2674785,6.8148971,0,0,50,47,59.459999,46.990002,5,1,1,0,0,8,4,1,1262.5,3373960,0,0,4950.0615 -13051,16008,29135,29134,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,8.6556129,8.4568386,1,0,-9,27,0,1,-5.34656,0,0,0,65,2,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0069728,8.8876171,0,0,59.459999,46.990002,50,47,6,1,1,0,0,8,4,1,1262.5,3373960,0,0,4950.0615 -13052,16009,29136,29137,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,1,3,0,0,0,1,0,-9,39,0,3,-31.284258,0,0,0,57,1,3,1,2,2,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.68,29.57,57.900002,51.84,6,3,4,0,0,8,5,1,793,2873622.5,0,0,3011.7969 -13052,16009,29137,29136,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,3,8.8114758,9.0280209,0,1,0,-9,9,0,-3,95.167297,0,0,0,60,1,3,3,-9,-9,2019,2,1,8,0,50,45,15,1,0,4,0,18.769865,18.769865,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.193523,1,57.900002,51.84,67.68,29.57,6,3,4,0,0,8,5,1,793,2873622.5,0,0,3011.7969 -13053,16010,29138,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-944.0979,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,1,0,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,1,0,2,1,0,527,0,0,0,97.56041 -13054,16011,29139,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,0,3,0,7.4826889,7.2847676,3,0,0,0,-9,0,-1085.8629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5203619,0,0,52.5,46.119999,-9,-9,6,1,1,0,0,13,3,1,166,392166.38,0,0,1637.1293 -13055,16012,29140,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,5.9869218,6.1227889,3,0,0,0,-9,0,-1014.4239,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5368109,6.3421807,0,0,64.550003,39.169998,-9,-9,7,1,1,0,0,10,2,1,615,539331.25,0,0,823.50159 -13056,16013,29141,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,2,0,7.1616793,7.3642206,3,0,0,0,-9,0,-1104.6592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0349655,7.2068849,2.9654582,3,57.799999,41.32,-9,-9,6,1,1,0,0,2,3,1,689,511199.97,0,0,62.909332 -13056,16014,29142,-9,29141,-9,2,1,0,36,2,0,0,0,2,-9,5,1,0,0,5,8.3084049,8.2018423,0,3,0,0,0,-9,0,-969.21619,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,42,45,15,1,0,-9,1,10.009661,10.009661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,2,4,1,202,18283.785,0,0,3245.1626 -13057,16015,29143,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,5.5779099,5.7965293,3,0,0,0,-9,0,-1008.7452,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.1592329,0,0,1,1,0,0,5.7336373,0,0,55.599998,27.129999,-9,-9,6,1,1,0,0,6,2,1,369,451131.5,0,0,1898.4008 -13058,16016,29144,29145,-9,-9,1,1,0,34,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,1,7,-9,-4,-78.433067,0,0,1,38,2,4,1,2,-9,2019,3,4,27,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.336853,3,30.290001,21.51,51,57,3,1,1,0,0,4,3,1,729.75,157503.8,0,0,3183.8555 -13058,16016,29145,29144,-9,-9,4,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.7774134,8.4888649,0,2,0,-9,1,-9,4,66.764687,-9,0,0,34,2,1,3,-9,-9,2019,2,1,10,1,37,0,15,1,0,3,0,17.822241,17.822241,0,0,0,0,0,0,0,0,1,1,0,2.4262254,0,0,1,51,57,30.290001,21.51,5,1,1,0,0,4,3,1,729.75,157503.8,0,0,3183.8555 -13058,16016,29146,-9,29144,29145,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.5288,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,729.75,157503.8,0,0,3183.8555 -13058,16016,29147,-9,29144,29145,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1125.6699,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,4,3,1,729.75,157503.8,0,0,3183.8555 -13059,16017,29148,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,2,1,0,0,4,7.3740082,7.261395,0,4,0,0,0,-9,0,-923.16034,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,17,0,15,1,0,-9,0,8.9759312,8.9759312,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.777529,3,41.470001,56.810001,-9,-9,5,1,1,0,0,11,2,0,353.5,26007.91,0,0,1703.6106 -13059,16017,29149,-9,29148,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-952.20282,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,0,353.5,26007.91,0,0,1703.6106 -13060,16018,29150,29151,-9,-9,1,1,1,34,1,0,2,0,2,-9,2,1,0,0,3,9.0257282,8.6731634,0,2,0,-9,13,0,4,125.95021,0,0,0,30,2,4,1,2,2,2019,1,2,11,0,45,45,15,1,0,1,0,14.704874,14.704874,0,0,0,0,0,0,0,0,1,1,0,.37692687,0,0,0,57.330002,53.459999,48.869999,58.549999,6,1,1,0,0,8,4,1,1429.5,262637.22,0,0,3742.6682 -13060,16018,29151,29150,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,0,4,7.6328297,7.9130759,0,2,0,-9,12,0,-4,104.81285,0,0,1,34,2,3,1,3,2,2019,1,1,7,0,19,18,15,1,0,1,0,10.700825,10.700825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.330002,53.459999,6,1,1,0,0,8,4,1,1429.5,262637.22,0,0,3742.6682 -13060,16018,29152,-9,29151,29150,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.12042,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1429.5,262637.22,0,0,3742.6682 -13060,16018,29153,-9,29151,29150,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.49768,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,4,1,1429.5,262637.22,0,0,3742.6682 -13061,16019,29154,29155,-9,-9,1,1,1,79,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,54,0,0,0,0,0,0,79,2,5,3,3,-9,2019,4,2,10,0,0,0,15,3,0,4,0,0,0,1,0,.11003821,0,0,0,0,0,1,1,0,0,0,0,0,53.689999,27.18,54.049999,49.740002,6,1,1,0,1,11,1,0,679,312855.69,0,0,2022.1375 -13061,16019,29155,29154,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,54,0,0,0,0,0,0,79,3,1,3,3,1,2019,4,1,12,2,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.664024,1,54.049999,49.740002,53.689999,27.18,4,1,1,0,0,11,1,0,679,312855.69,0,0,2022.1375 -13062,16020,29156,-9,-9,-9,3,1,1,24,2,0,1,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-972.38373,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.610001,56.009998,-9,-9,4,2,3,1,1,7,1,1,3093,18262.414,0,0,0 -13063,16021,29157,29158,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,2,0,6.3283925,6.0914307,1,0,-9,49,0,1,7.8366179,0,0,0,68,3,3,3,3,3,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6055088,6.4837937,0,0,49.330002,27.690001,51,46,2,1,1,0,0,5,2,1,316,494992.91,0,0,3246.8916 -13063,16021,29158,29157,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-1,-76.223701,-9,0,0,69,3,2,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,49.330002,27.690001,5,1,1,0,0,5,2,1,316,494992.91,0,0,3246.8916 -13064,16022,29159,-9,29160,-9,1,1,0,66,2,0,0,0,3,-9,4,3,0,0,2,0,5.9481263,6.0366921,3,0,0,0,-9,0,-1033.6697,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,9,0,0,15,4,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0176992,118.23809,3,43.220001,40.09,-9,-9,4,3,4,0,0,8,2,0,821,271079,0,0,938.09821 -13064,16023,29160,-9,-9,-9,2,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-866.85938,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,3,4,0,0,8,1,0,2141,134407.72,0,0,1125.3344 -13065,16024,29161,29162,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,5,7.2364712,7.3602409,0,2,0,-9,16,0,8,-18.856823,0,0,0,38,3,5,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,7.0070319,7.0070319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,56.959999,56.860001,7,2,3,0,0,2,2,1,1082.25,256518.92,0,0,1327.2943 -13065,16024,29162,29161,-9,-9,1,1,0,38,1,0,2,0,3,-9,2,1,0,0,5,6.2226,5.7202477,0,2,0,-9,16,0,-8,14.940086,0,0,1,46,3,5,1,-9,-9,2019,1,2,6,1,6,6,15,1,0,1,0,5.7429614,5.7429614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.959999,56.860001,62.389999,56.709999,6,2,3,0,0,2,2,1,1082.25,256518.92,0,0,1327.2943 -13065,16024,29163,-9,29162,29161,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.8966,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,2,2,1,1082.25,256518.92,0,0,1327.2943 -13065,16024,29164,-9,29162,29161,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-931.90601,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,6,2,3,0,0,2,2,1,1082.25,256518.92,0,0,1327.2943 -13066,16025,29165,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,1,1,0,0,4,8.2886982,8.1818256,6.1780963,3,0,-9,0,-9,0,-1092.8198,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,2,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4899619,6.4424314,0,3,45.060001,51.02,-9,-9,6,1,1,0,1,9,4,1,588,538314.69,0,0,2088.1382 -13067,16026,29166,-9,-9,29167,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-858.19537,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,2,1,0,754,573388,0,0,873.1579 -13067,16026,29167,-9,-9,-9,1,1,1,50,3,0,1,0,3,-9,3,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1115.0427,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.169998,38.709999,-9,-9,3,3,4,1,0,2,1,0,754,573388,0,0,873.1579 -13068,16027,29168,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,1,1,0,0,3,9.1177483,9.0851803,0,3,0,0,0,-9,0,-943.23541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,10,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.119999,53.990002,-9,-9,3,1,1,0,0,7,5,1,415,392312.84,0,0,3648.0901 -13069,16028,29169,29170,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,8.5542536,8.6140327,5.2801571,1,0,-9,4,0,2,-198.44238,0,0,0,56,2,3,1,2,2,2019,1,1,9,1,60,60,15,1,0,1,0,12.452408,12.452408,0,0,0,0,0,0,0,0,0,0,0,0,5.4069023,0,0,58.02,42.119999,53.560001,49.66,6,1,1,0,0,7,5,1,298,361181.75,0,0,3222.2739 -13069,16028,29170,29169,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.4675112,7.828649,0,1,0,-9,4,0,-2,-56.827396,0,0,0,58,1,3,1,2,2,2019,1,2,7,0,27,29,15,1,0,1,0,10.22981,10.22981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.560001,49.66,58.02,42.119999,6,1,1,0,0,7,5,1,298,361181.75,0,0,3222.2739 -13069,16029,29171,-9,29170,29169,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.474298,7.7422094,0,3,0,0,0,-9,0,-941.62128,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,35,0,15,1,0,-9,1,7.3042779,7.3042779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,7,3,1,997,-132258.2,0,0,2249.1763 -13070,16030,29172,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,2,1,0,1,3,5.9680839,6.1280117,4.1589875,3,0,0,0,-9,0,-875.67218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,8,15,1,0,-9,0,3.7543278,3.7543278,1,0,0,0,2.4364865,0,0,2,1,1,0,0,4.3857861,.29487956,3,54.959999,53.169998,-9,-9,6,1,1,0,0,2,2,1,894,20434.947,0,0,1501.605 -13071,16031,29173,29174,-9,-9,2,1,0,73,1,0,1,0,2,-9,4,3,0,0,4,0,8.1429253,8.4227819,2,0,-9,55,0,-2,-100.86737,0,0,0,75,2,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.5144997,6.8913217,0,0,50.93,54.77,48.849998,58.560001,6,1,1,0,0,5,3,1,162.5,1249592,0,0,3650.7563 -13071,16031,29174,29173,-9,-9,1,1,1,75,1,0,1,0,2,-9,4,3,0,0,4,0,5.7755551,5.6426368,2,0,-9,55,0,2,59.208374,0,0,0,73,2,4,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0178146,5.6631942,1.0919684,3,48.849998,58.560001,50.93,54.77,5,1,1,0,0,5,3,1,162.5,1249592,0,0,3650.7563 -13072,16032,29175,29176,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,8.9710159,8.8461657,0,1,0,-9,41,0,3,-116.1118,0,0,0,61,2,2,3,2,2,2019,2,2,6,0,35,48,15,1,0,4,0,22.108698,22.108698,0,0,0,0,0,0,0,0,0,0,0,2.1058865,0,0,0,59.310001,49.810001,37.700001,39.59,5,1,1,0,0,1,4,1,294,765229.38,0,0,3030.0864 -13072,16032,29176,29175,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,41,0,-3,-155.43932,0,0,0,64,2,3,1,2,1,2019,3,1,21,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.700001,39.59,59.310001,49.810001,4,1,1,0,0,1,4,1,294,765229.38,0,0,3030.0864 -13073,16033,29177,29178,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,7.3781443,7.4852052,1,0,-9,8,0,-1,106.69437,0,0,0,68,1,3,3,-9,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7500057,7.4980278,0,0,27.700001,50.610001,44.25,56.639999,3,1,1,0,0,4,3,1,1338.5,2067626.5,0,0,3061.1519 -13073,16033,29178,29177,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,3,0,5.8658171,5.9207487,1,0,-9,8,0,1,-86.177368,0,0,0,67,1,3,3,2,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5039005,5.8079882,0,0,44.25,56.639999,27.700001,50.610001,5,1,1,0,0,4,3,1,1338.5,2067626.5,0,0,3061.1519 -13074,16034,29179,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,4,3,0,0,2,0,8.3145218,8.6368647,3,0,0,0,-9,0,-1032.1328,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1312561,8.5763769,0,0,57.57,49.689999,-9,-9,6,1,1,0,0,2,5,1,66,820391.25,0,0,2839.1465 -13075,16035,29180,-9,-9,-9,1,1,1,80,2,0,0,0,2,-9,4,3,0,0,2,0,7.4459682,7.921165,3,0,0,0,-9,0,-967.9502,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.2384334,0,0,1,1,0,1.1733778,7.6358194,0,0,44.32,38.200001,-9,-9,6,1,1,0,0,11,3,1,653,473349.31,0,0,636.3399 -13076,16036,29181,29182,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,5.1080122,5.0702314,1,0,-9,7,0,1,-80.151154,0,0,0,73,3,5,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,8.6934261,2.6908817,0,0,21.897861,0,1,1,0,5.639214,4.6643333,0,0,52.990002,29.15,30.209999,48.25,7,1,1,0,0,8,2,0,1178,817923.69,0,0,169.33134 -13076,16036,29182,29181,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,5,0,5.6683712,5.7566071,1,0,-9,7,0,-1,-86.308327,0,0,0,74,2,3,3,3,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7362213,0,0,30.209999,48.25,52.990002,29.15,7,1,1,0,1,8,2,0,1178,817923.69,0,0,169.33134 -13077,16037,29183,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-876.81622,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.869999,16.690001,-9,-9,5,1,1,0,1,7,1,0,701,142127.33,0,0,302.50357 -13078,16038,29184,29185,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.4542294,8.5210791,0,2,0,-9,19,0,2,-4.1399479,0,0,0,38,2,5,1,2,2,2019,1,2,9,0,47,44,15,1,0,1,0,11.65316,11.65316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.240002,53.41,51.73,58.82,6,1,1,0,0,6,4,1,504,375517.13,0,0,3417.8892 -13078,16038,29185,29184,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,0,5,8.0640879,7.9734201,0,2,0,-9,16,0,-2,-2.0539973,0,0,1,40,2,3,1,3,3,2019,1,1,11,1,30,32,15,1,0,1,0,9.8962536,9.8962536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,45.240002,53.41,6,1,1,0,0,6,4,1,504,375517.13,0,0,3417.8892 -13078,16038,29186,-9,29185,29184,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.5861,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,4,1,504,375517.13,0,0,3417.8892 -13078,16038,29187,-9,29185,29184,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-847.06085,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,1,504,375517.13,0,0,3417.8892 -13079,16039,29188,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,3,0,4.2870812,4.2695255,3,0,0,0,-9,0,-1009.7707,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1311865,3.9851022,0,0,49.43,33.919998,-9,-9,6,1,1,0,0,9,2,1,2613,38448.957,0,0,-175.13354 -13080,16040,29189,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,0,4,0,7.584723,7.6461749,3,0,0,0,-9,0,-955.23602,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4678078,0,0,57.32,47.779999,-9,-9,6,1,1,0,0,5,3,1,681,564984.56,0,0,2903.8799 -13081,16041,29190,29191,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,0,4,6.6626067,7.0553703,0,2,0,-9,19,0,4,-94.532745,0,0,0,44,2,4,1,-9,-9,2019,1,2,9,1,85,80,15,1,0,1,0,1.180441,1.180441,0,0,0,0,0,0,0,0,1,1,0,.90818912,0,0,0,54.200001,57.490002,57.310001,50.610001,6,1,1,0,0,10,2,1,406,-4559.0928,0,0,1426.3461 -13081,16041,29191,29190,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,7.3886781,7.4505897,0,2,0,-9,19,0,-4,55.812569,0,0,1,48,3,4,1,-9,-9,2019,1,1,9,0,28,27,15,1,0,1,0,6.8643584,6.8643584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.310001,50.610001,54.200001,57.490002,5,1,1,0,0,10,2,1,406,-4559.0928,0,0,1426.3461 -13081,16041,29192,-9,29191,29190,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-985.03046,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,2,1,406,-4559.0928,0,0,1426.3461 -13082,16042,29193,29194,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,-6,-162.76085,0,0,0,80,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.259998,45.23,53.02,53.93,6,1,1,0,1,2,2,0,881,656003.69,0,0,1586.9817 -13082,16042,29194,29193,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,4,0,7.3262582,7.6966777,1,0,-9,57,0,6,88.052147,0,0,0,74,3,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2709923,0,0,53.02,53.93,63.259998,45.23,6,1,1,0,1,2,2,0,881,656003.69,0,0,1586.9817 -13083,16043,29195,29198,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,0,5,9.0246592,9.0213766,0,2,0,-9,9,0,0,-58.349197,0,0,0,48,1,4,1,2,2,2019,1,1,10,3,45,44,15,1,0,1,0,25.380596,25.380596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.939999,59.599998,54.790001,55.860001,4,1,1,0,0,8,5,1,595.5,2593409.8,0,0,5919.6411 -13083,16043,29196,-9,29195,29198,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.0011,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,595.5,2593409.8,0,0,5919.6411 -13083,16043,29197,-9,29195,29198,3,1,0,16,2,0,2,1,2,0,7,2,0,0,4,0,2.6641352,2.9353118,2,0,0,0,-9,0,-987.37866,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9123691,0,0,0,41.139999,59.200001,-9,-9,6,1,1,0,0,8,5,1,595.5,2593409.8,0,0,5919.6411 -13083,16043,29198,29195,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,9.2004032,9.0309162,0,2,0,-9,9,0,0,-9.3026829,0,0,0,48,1,5,1,3,3,2019,1,2,3,1,47,40,15,1,0,1,0,25.639551,25.639551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,46.939999,59.599998,6,1,1,0,0,8,5,1,595.5,2593409.8,0,0,5919.6411 -13084,16044,29199,-9,29200,-9,3,1,1,16,2,0,1,0,2,-9,3,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1009.5477,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.27,48.860001,-9,-9,3,1,1,1,0,9,2,1,710.5,292164.84,0,0,1888.0464 -13084,16044,29200,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,1,2,7.4562755,7.6474309,5.9117064,4,0,0,0,-9,0,-1165.5608,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,16,16,15,1,0,-9,0,12.687847,12.687847,0,0,0,0,0,0,0,2,1,1,0,5.5911722,0,0,3,60.669998,21.24,-9,-9,6,1,1,0,1,9,2,1,710.5,292164.84,0,0,1888.0464 -13084,16045,29201,-9,29200,-9,2,1,0,21,2,0,1,0,1,1,2,1,0,0,3,7.1970668,7.5550485,0,3,0,0,0,-9,0,-1021.1571,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,29,0,15,1,0,-9,1,6.811408,6.811408,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.5706234,3,49.919998,44.619999,-9,-9,4,1,1,0,0,9,3,1,996,162298.17,0,0,1108.7651 -13085,16046,29202,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,1,1,0,0,3,6.3920603,6.2964387,5.3371062,3,0,0,0,-9,0,-905.71106,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,2,0,15,1,0,-9,0,24.883455,24.883455,0,0,0,0,0,0,0,7,1,1,0,3.837359,5.1376157,5.582468,3,55.529999,51.549999,-9,-9,6,1,1,0,0,2,2,0,392,252331.58,0,0,410.24106 -13086,16047,29203,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,0,3,0,7.4109592,7.1061778,3,0,-9,0,1,0,-991.7785,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.4186816,0,0,0,1,1,0,4.9388919,7.5061622,0,0,28.07,54.619999,-9,-9,4,1,1,0,0,9,2,1,1256,609440.38,0,0,748.92828 -13087,16048,29204,29205,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.5647411,7.8574119,0,1,0,-9,30,0,7,-132.66292,0,0,0,52,2,4,3,3,3,2019,2,1,6,0,30,30,15,1,0,3,0,7.3566699,7.3566699,0,0,0,0,0,0,0,96,1,1,0,0,0,118.45638,1,47.509998,39.220001,52,55,6,1,1,0,0,13,2,1,4732,368084.19,0,0,851.60724 -13087,16048,29205,29204,-9,-9,1,1,1,52,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,30,0,-7,-25.381676,0,0,0,59,2,2,1,3,3,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,47.509998,39.220001,6,1,1,0,0,13,2,1,4732,368084.19,0,0,851.60724 -13087,16049,29206,-9,29204,29205,3,1,0,19,2,0,0,0,2,-9,7,2,0,0,5,7.5300522,7.4333043,0,3,0,0,0,-9,0,-990.89331,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,13,3,1,202,167283.67,0,0,1339.2119 -13088,16050,29207,29208,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.9264932,8.1695929,0,1,0,-9,28,0,5,63.116432,0,0,0,48,3,2,1,-9,-9,2019,1,2,13,1,58,48,15,1,0,1,0,8.0354443,8.0354443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,47.599998,40.470001,4,1,1,0,0,9,4,0,345.5,721558.25,0,0,2141.0017 -13088,16050,29208,29207,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,0,2,7.7324467,7.3200154,0,1,0,-9,28,0,-5,86.055824,0,0,0,53,2,3,1,-9,3,2019,1,1,14,2,42,37,15,1,0,1,0,4.2413101,4.2413101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.599998,40.470001,38.16,44.66,4,1,1,0,0,9,4,0,345.5,721558.25,0,0,2141.0017 -13088,16051,29209,-9,29208,29207,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.9618936,8.1695938,0,3,0,0,0,-9,0,-806.94098,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,40,0,15,1,0,-9,1,7.2243671,7.2243671,0,0,0,0,0,0,0,0,1,1,0,2.4954834,0,0,0,28.74,46.470001,-9,-9,4,1,1,0,0,9,3,0,857,93112.297,0,0,756.29224 -13089,16052,29210,29214,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,0,3,8.6068707,8.6260548,0,2,0,-9,7,0,3,-24.077713,0,0,0,33,2,4,3,2,2,2019,2,2,18,6,55,35,15,1,1,3,0,14.815196,14.815196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,26.58,62.16,5,1,1,0,1,2,4,0,648.59998,108433.84,0,0,3670.2146 -13089,16052,29211,-9,29214,29210,3,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.96606,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,4,0,648.59998,108433.84,0,0,3670.2146 -13089,16052,29212,-9,29214,29210,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.2433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,0,648.59998,108433.84,0,0,3670.2146 -13089,16052,29213,-9,29214,29210,4,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-907.34869,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,0,648.59998,108433.84,0,0,3670.2146 -13089,16052,29214,29210,-9,-9,2,1,0,33,1,0,3,0,2,-9,8,3,1,1,4,7.5700288,7.3036518,0,2,0,-9,7,0,-3,16.522934,0,0,1,36,2,3,1,-9,-9,2019,3,1,14,3,16,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.58,62.16,52.990002,51.279999,6,1,1,0,1,2,4,0,648.59998,108433.84,0,0,3670.2146 -13090,16053,29215,29216,-9,-9,1,1,1,41,1,0,0,0,3,-9,2,1,0,0,4,9.1558886,9.2003574,0,1,0,-9,8,0,10,106.62514,0,0,0,31,2,3,1,-9,-9,2019,1,2,10,1,78,60,15,1,0,1,0,15.720926,15.720926,0,0,0,0,0,0,0,0,0,0,0,.74572939,0,0,0,48.869999,58.549999,49.52,56.950001,6,1,1,0,0,2,5,1,1603,372896.94,0,0,4516.5479 -13090,16053,29216,29215,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,0,3,7.6427813,7.5583129,0,1,0,-9,8,0,-10,11.421745,0,0,1,41,3,4,1,-9,-9,2019,1,1,8,0,28,34,15,1,0,1,0,9.171916,9.171916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.950001,48.869999,58.549999,6,1,1,0,0,2,5,1,1603,372896.94,0,0,4516.5479 -13091,16054,29217,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1030.0244,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,7,1,1,197,120903.95,0,0,343.81384 -13092,16055,29218,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.8309121,7.8045158,3,0,0,0,-9,0,-1117.4652,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3966303,7.6944265,0,0,50.790001,51.099998,-9,-9,5,1,1,0,0,11,3,1,769,417814.78,0,0,2676.1987 -13093,16056,29219,29220,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.7119751,7.8246679,0,1,0,-9,3,-9,0,218.95181,-9,0,0,64,3,3,3,-9,-9,2019,2,1,6,0,30,0,15,1,0,4,0,8.0102034,8.0102034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.540001,35.93,56.52,45.610001,6,1,1,0,0,4,3,0,304,134956.17,0,0,1312.4629 -13093,16056,29220,29219,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,1,3,0,6.0400367,5.8898172,1,0,-9,3,-9,9,-78.860611,-9,0,0,55,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,1,0,4.0691795,0,0,0,0,7,1,1,0,0,6.177639,5.0102892,3,56.52,45.610001,65.540001,35.93,5,1,1,0,0,4,3,0,304,134956.17,0,0,1312.4629 -13094,16057,29221,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,1,1,0,0,3,6.0928864,7.0805807,6.593276,4,0,0,0,-9,0,-996.14539,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,22,22,15,1,0,-9,0,3.3195598,3.3195598,0,0,0,0,0,0,0,0,1,1,0,6.6954432,0,0,0,49.509998,35.369999,-9,-9,3,1,1,0,0,10,2,0,781,0,0,0,1059.2335 -13095,16058,29222,29223,-9,-9,1,1,1,89,1,0,0,0,1,-9,4,3,0,0,3,0,8.4705067,8.7963934,1,0,-9,3,0,24,-39.979496,0,0,0,65,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.2750835,8.7668953,0,0,63.439999,39.68,62.490002,55.09,6,1,1,0,0,9,4,1,1190,1172203.3,0,0,3467.9429 -13095,16058,29223,29222,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,3,0,-24,3.3309116,0,0,0,89,1,3,3,-9,-9,2019,4,1,5,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.5122218,1,62.490002,55.09,63.439999,39.68,7,2,3,0,0,9,4,1,1190,1172203.3,0,0,3467.9429 -13096,16059,29224,29225,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,5,9.6353178,9.6329002,0,2,0,-9,19,0,-2,12.680968,0,0,0,51,1,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,49.501526,49.501526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.650002,58.599998,51.830002,57.200001,6,1,1,0,0,8,5,1,901.5,517874,0,0,11263.148 -13096,16059,29225,29224,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,4,9.0646343,9.2567959,0,2,0,-9,19,0,2,-69.939926,0,0,0,49,2,5,1,3,2,2019,1,1,4,0,35,29,15,1,0,1,0,27.388317,27.388317,0,0,0,0,0,0,0,0,0,0,0,.38416964,0,0,0,51.830002,57.200001,46.650002,58.599998,6,1,1,0,0,8,5,1,901.5,517874,0,0,11263.148 -13097,16060,29226,29227,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.7115474,7.8336945,1,0,-9,42,0,2,-79.764915,0,0,0,62,2,4,3,3,2,2019,4,1,10,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1677256,7.4204111,0,0,58.150002,52.91,58.150002,52.91,6,1,1,0,0,6,3,1,795,1778033.5,0,0,614.39862 -13097,16060,29227,29226,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.0150661,7.3970995,1,0,-9,42,0,-2,-14.032489,0,0,0,64,1,4,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.093261,7.055687,0,0,58.150002,52.91,58.150002,52.91,7,1,1,0,0,6,3,1,795,1778033.5,0,0,614.39862 -13098,16061,29228,29229,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,0,4,0,7.3192835,6.8586836,1,0,-9,7,0,-1,13.713043,0,0,0,86,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6271629,6.7146006,0,0,61.259998,51.57,56.189999,40.290001,6,1,1,0,0,13,2,1,580.5,479495.91,0,0,2157.3047 -13098,16061,29229,29228,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,1,4,0,6.1208143,5.8291216,1,0,-9,7,0,1,-70.569351,0,0,0,85,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.8937693,0,0,56.189999,40.290001,61.259998,51.57,7,1,1,0,0,13,2,1,580.5,479495.91,0,0,2157.3047 -13099,16062,29230,29231,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,0,5,7.8403387,8.0693417,0,1,0,-9,1,-9,-3,11.442123,-9,1,1,26,2,4,1,-9,-9,2019,1,1,10,0,49,0,15,1,0,1,0,9.7914276,9.7914276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.630001,61.310001,49.689999,55.66,6,1,1,0,0,9,5,1,385.5,262128,0,0,2856.9194 -13099,16062,29231,29230,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,0,4,8.6842337,8.4857073,0,1,0,1,1,-9,3,45.73531,0,1,0,23,1,5,1,2,3,2019,1,2,9,0,49,45,15,1,0,1,0,10.895138,10.895138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.689999,55.66,43.630001,61.310001,4,1,1,0,0,9,5,1,385.5,262128,0,0,2856.9194 -13100,16063,29232,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-916.3443,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.799999,41.68,-9,-9,5,1,1,0,0,9,1,0,145,-99440.664,0,0,1660.1322 -13100,16064,29233,-9,-9,-9,2,1,0,19,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1003.0267,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,-9,-9,6,1,1,0,0,9,1,0,483,0,0,0,1944.6185 -13101,16065,29234,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1013.9058,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,-9,-9,6,1,1,0,0,13,1,1,949,42486.504,0,0,1834.5055 -13102,16066,29235,-9,29239,-9,2,1,1,12,2,1,4,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1077.7572,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,-9,-9,4,2,3,0,0,4,2,1,1224.4,-10229.313,0,0,2441.3962 -13102,16066,29236,-9,29239,-9,3,1,1,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1012.2106,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,4,2,1,1224.4,-10229.313,0,0,2441.3962 -13102,16066,29237,-9,29239,-9,4,1,1,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1092.675,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,4,2,1,1224.4,-10229.313,0,0,2441.3962 -13102,16066,29238,-9,29239,-9,5,1,0,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1051.0487,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,2,3,0,0,4,2,1,1224.4,-10229.313,0,0,2441.3962 -13102,16066,29239,-9,-9,-9,1,1,0,34,3,1,4,0,3,-9,2,1,0,0,3,7.3842082,7.5364127,0,4,0,-9,0,1,0,-1014.1335,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,0,-9,0,12.425278,12.425278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.849998,51.25,-9,-9,4,2,3,0,1,4,2,1,1224.4,-10229.313,0,0,2441.3962 -13103,16067,29240,29241,-9,-9,1,1,0,52,1,0,1,0,3,-9,2,1,0,0,3,8.2075014,8.2557154,0,2,0,-9,31,0,-2,119.84971,0,0,0,54,2,4,1,2,2,2019,1,2,9,0,45,38,15,1,0,1,0,8.4918451,8.4918451,0,0,0,0,0,0,0,0,1,1,0,1.5549586,0,0,0,41.34,56.619999,54,54,6,1,1,0,0,1,4,1,751,939048.06,0,0,3837.4988 -13103,16067,29241,29240,-9,-9,2,1,1,54,1,0,1,0,2,-9,1,1,0,0,4,8.595232,8.3462772,0,2,0,-9,6,0,2,-99.621712,0,0,0,52,3,3,1,-9,-9,2019,1,1,9,1,50,60,15,1,0,1,0,13.210349,13.210349,0,0,0,0,0,0,0,0,1,1,0,4.1353164,0,0,0,54,54,41.34,56.619999,6,1,1,0,0,1,4,1,751,939048.06,0,0,3837.4988 -13103,16067,29242,-9,29240,29241,4,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,6.2982602,6.4694004,0,2,0,0,0,-9,0,-1071.4148,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,4,1,751,939048.06,0,0,3837.4988 -13103,16068,29243,-9,29240,29241,3,1,0,20,2,0,1,1,2,0,7,2,0,0,5,7.0985203,7.1360564,0,3,0,0,0,-9,0,-1111.4175,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,6,1,1,0,0,1,2,1,1065,-205753.42,0,0,283.8681 -13104,16069,29244,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,0,4,8.4822273,8.4949493,0,3,0,0,0,-9,0,-985.67133,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,40,15,1,0,-9,0,13.136215,13.136215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,13,5,0,1466,116117.84,0,0,1588.879 -13105,16070,29245,29246,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,0,5,7.0427041,7.1222649,0,1,0,-9,10,0,-7,-97.442093,0,0,0,63,2,3,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,5.4244871,5.4244871,0,0,0,0,0,0,0,0,0,0,0,4.5562778,0,0,0,48.709999,61.529999,46.880001,45.970001,6,1,1,0,0,10,3,1,993,-55427.852,0,0,1552.3325 -13105,16070,29246,29245,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,0,3,7.1276159,7.1118374,4.1752586,1,0,-9,10,0,7,-115.20606,0,0,0,56,1,5,1,3,3,2019,1,1,12,0,25,20,15,1,0,1,0,5.4061728,5.4061728,0,0,0,0,0,0,0,0,0,0,0,2.4289167,4.1605115,0,0,46.880001,45.970001,48.709999,61.529999,3,1,1,0,0,10,3,1,993,-55427.852,0,0,1552.3325 -13106,16071,29247,29249,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,4,7.1812792,7.0268455,0,2,0,-9,7,0,0,-27.866943,0,0,0,51,2,2,1,2,2,2019,1,1,6,0,20,18,15,1,0,1,0,6.7556129,6.7556129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.09,51.580002,52.240002,50.75,7,1,1,0,0,13,4,1,828.33331,547787.38,0,0,4231.8691 -13106,16071,29248,-9,29247,29249,5,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.97839,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,13,4,1,828.33331,547787.38,0,0,4231.8691 -13106,16071,29249,29247,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,9.047801,8.9816284,0,2,0,-9,7,0,0,174.36783,0,0,0,51,1,4,1,2,3,2019,1,2,8,0,40,40,15,1,0,1,0,16.175879,16.175879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,61.09,51.580002,6,1,1,0,0,13,4,1,828.33331,547787.38,0,0,4231.8691 -13106,16072,29250,-9,29247,29249,3,1,0,23,2,0,1,0,1,-9,2,1,0,0,4,8.393548,8.2096729,0,3,0,0,0,-9,0,-1020.3775,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,1,38,35,15,1,0,-9,1,13.318521,13.318521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,13,4,1,685,-109457.32,0,0,18.7327 -13106,16073,29251,-9,29247,29249,4,1,1,21,2,0,1,0,2,1,2,1,0,0,4,7.8183298,7.954792,0,3,0,0,0,-9,0,-1069.2245,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,38,0,15,1,0,-9,1,6.7367363,6.7367363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,-9,-9,5,1,1,0,0,13,3,1,2085,-69076.148,0,0,1378.2267 -13107,16074,29252,29253,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,6.2352796,6.1226187,1,0,-9,8,0,7,94.986092,0,0,0,68,3,3,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2107491,0,0,60.290001,52.110001,62.57,40.110001,6,1,1,0,0,13,2,1,391.5,166487.53,0,0,1318.9906 -13107,16074,29253,29252,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-7,-100.70732,0,0,0,75,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.57,40.110001,60.290001,52.110001,7,1,1,0,0,13,2,1,391.5,166487.53,0,0,1318.9906 -13108,16075,29254,29255,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.4187822,8.5439682,0,1,0,1,1,-9,-7,63.240711,0,0,0,60,2,3,1,2,2,2019,1,2,13,3,37,40,15,1,0,1,0,15.889169,15.889169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,57.330002,53.459999,6,1,1,0,0,9,5,1,793,262708.56,0,0,4194.1279 -13108,16075,29255,29254,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.2552519,8.1871405,0,1,0,-9,1,-9,7,87.407814,-9,0,0,53,2,4,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,10.97748,10.97748,0,0,0,0,0,0,0,7,0,0,0,0,0,4.8762269,3,57.330002,53.459999,48.869999,58.549999,7,1,1,0,0,9,5,1,793,262708.56,0,0,4194.1279 -13109,16076,29256,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1115.0631,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,4,1,-9,0,0,0,1,0,0,74.503334,0,0,0,0,1,1,0,0,0,0,0,28.620001,34.459999,-9,-9,4,1,1,0,0,13,1,1,3054,-19872.545,0,0,90.370415 -13109,16077,29257,-9,29256,-9,2,1,0,46,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1066.1606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,7,6,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,81.459152,3,35.07,53.110001,-9,-9,3,1,1,0,1,13,1,1,476,0,0,0,0 -13110,16078,29258,-9,-9,-9,1,1,0,45,3,0,0,0,1,-9,2,1,0,0,5,9.3623924,9.3892984,0,3,0,0,0,-9,0,-995.11072,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,45,15,1,0,-9,0,24.987511,24.987511,0,0,0,0,0,0,0,0,1,1,0,6.6507912,0,0,0,46.880001,60.959999,-9,-9,6,1,1,0,0,2,5,1,115,382940.22,0,0,3608.0977 -13111,16079,29259,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,5,0,6.6754003,6.8093915,3,0,-9,0,-9,0,-942.56628,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.061491,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,2,1,116,803106.38,0,0,864.78748 -13112,16080,29260,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,6.4805446,6.1268606,3,0,0,0,-9,0,-958.8407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3985734,0,0,62.18,36.18,-9,-9,6,1,1,0,0,6,2,0,1194,262479.13,0,0,1214.5894 -13113,16081,29261,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,2,7.8927679,7.55442,0,3,0,0,0,-9,0,-902.13501,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,30,40,15,1,0,-9,0,6.8221188,6.8221188,0,0,0,0,0,0,0,5.48,0,0,0,0,0,8.8032246,3,57.57,44.16,-9,-9,5,1,1,0,0,9,3,0,378,-61102.555,0,0,859.42773 -13113,16082,29262,-9,-9,29261,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,2,8.0190659,7.6589737,0,3,0,0,0,-9,0,-1014.6337,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,4,37,39,15,1,1,-9,1,6.7935286,6.7935286,0,0,0,0,0,0,0,0,0,0,0,.41338548,0,0,0,53.34,48.860001,-9,-9,6,1,1,0,0,9,3,0,158,-193890.59,0,0,1428.6465 -13114,16083,29263,29265,-9,-9,2,1,1,37,1,0,2,0,2,-9,1,1,0,0,2,9.2259178,9.19349,0,2,0,-9,14,0,4,22.292168,0,0,0,33,2,2,3,2,2,2019,2,1,12,3,18,41,15,1,0,3,0,51.100403,51.100403,0,0,0,0,0,0,0,7,1,1,0,0,0,3.7367275,1,41.939999,56.68,34.299999,37.439999,5,1,1,0,0,5,4,1,775.75,113829.16,0,0,3623.0317 -13114,16083,29264,-9,29265,29263,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-890.24219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,775.75,113829.16,0,0,3623.0317 -13114,16083,29265,29263,-9,-9,1,1,0,33,1,0,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,13,0,-4,127.59372,0,0,1,37,2,2,1,-9,-9,2019,3,2,27,10,0,5,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.299999,37.439999,41.939999,56.68,3,1,1,0,0,5,4,1,775.75,113829.16,0,0,3623.0317 -13114,16083,29266,-9,29265,29263,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.6649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,4,1,775.75,113829.16,0,0,3623.0317 -13115,16084,29267,-9,29268,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1140.2046,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,1,0,2611,-19344.854,0,0,2042.5104 -13115,16084,29268,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-858.68195,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.85721,3,22.450001,40.200001,-9,-9,1,1,1,0,0,12,1,0,2611,-19344.854,0,0,2042.5104 -13116,16085,29269,29270,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,1,1,0,.92345202,.65208507,1,0,-9,38,0,3,36.910313,0,0,0,67,3,2,3,3,3,2019,4,1,11,3,0,0,15,4,0,4,0,0,0,1,0,71.779938,0,0,0,0,0,1,1,0,0,1.0065132,0,0,61.860001,12.59,41.869999,32.52,4,1,1,0,0,5,1,0,490,0,0,0,2879.8828 -13116,16085,29270,29269,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,38,0,-3,-115.25649,-9,0,0,70,2,1,3,3,3,2019,4,2,24,12,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,36.008831,1,41.869999,32.52,61.860001,12.59,3,1,1,0,0,5,1,0,490,0,0,0,2879.8828 -13117,16086,29271,29272,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,9.0144014,8.8236628,0,1,0,-9,8,0,3,67.860954,0,0,0,49,3,4,1,-9,-9,2019,1,1,10,0,38,42,15,1,0,1,0,20.689186,20.689186,0,0,0,0,0,0,0,0,0,0,0,7.2548552,0,0,0,51.240002,58.84,38.130001,50.049999,5,1,1,0,0,4,5,1,327,1492112.3,0,0,2936.6543 -13117,16086,29272,29271,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,0,4,7.3596854,7.1669869,0,1,0,-9,32,0,-3,-48.319088,0,0,0,52,2,4,1,-9,2,2019,1,2,22,10,20,20,15,1,1,1,0,8.0900803,8.0900803,0,0,0,0,0,0,0,0,0,0,0,7.6274672,0,0,0,38.130001,50.049999,51.240002,58.84,6,1,1,0,0,4,5,1,327,1492112.3,0,0,2936.6543 -13117,16087,29273,-9,29272,29271,3,1,1,19,2,0,0,0,2,1,2,1,0,0,4,7.2781634,7.1064038,0,3,0,0,0,-9,0,-1091.7461,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,40,0,15,1,0,-9,1,4.1558409,4.1558409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,42.509998,-9,-9,4,1,1,0,0,4,3,1,387,8009.2817,0,0,1126.7065 -13118,16088,29274,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,1,7.9248571,7.9321599,0,3,0,0,0,-9,0,-1077.9136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,37,39,15,1,1,-9,0,9.5489149,9.5489149,0,0,0,0,0,0,0,2,1,1,0,7.4491081,0,.7019316,3,44.52,35.630001,-9,-9,2,1,1,0,1,9,4,0,917,1952235.9,0,0,3157.7549 -13119,16089,29275,29276,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.9351397,8.0597048,7.302732,1,0,-9,37,0,0,-80.501488,0,0,0,59,2,4,1,2,2,2019,1,1,9,0,28,30,15,1,0,1,0,14.885896,14.885896,0,0,0,0,0,0,0,0,0,0,0,7.8847485,7.2925363,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,4,4,1,1276.5,683911.13,0,0,2029.7021 -13119,16089,29276,29275,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,6.5369949,6.5547962,0,1,0,-9,37,0,0,99.798035,0,0,0,59,2,4,1,3,2,2019,1,2,6,0,25,24,15,1,0,1,0,3.4063847,3.4063847,0,0,0,0,0,0,0,0,0,0,0,7.3029037,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,4,4,1,1276.5,683911.13,0,0,2029.7021 -13120,16090,29277,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,4,7.9817324,7.6406355,0,3,0,0,0,-9,0,-1025.9386,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,16,16,15,1,0,-9,0,17.552015,17.552015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,3,1,1126,68489.406,0,0,1120.0709 -13121,16091,29278,29279,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,3,7.3498292,7.6304955,0,1,0,-9,23,-9,4,9.789711,-9,0,0,55,2,3,1,3,3,2019,1,1,7,0,20,0,15,1,0,1,0,10.233293,10.233293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.040001,39.41,58.080002,40.759998,6,1,1,0,0,13,5,1,1571.5,1451333,0,0,3398.8823 -13121,16091,29279,29278,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,3,8.9387608,8.8611078,0,1,0,-9,23,-9,-4,104.84432,-9,0,0,59,3,3,1,2,3,2019,1,2,6,0,40,0,15,1,0,1,0,19.462029,19.462029,0,0,0,0,0,0,0,0,0,0,0,4.0734873,0,0,0,58.080002,40.759998,61.040001,39.41,6,1,1,0,0,13,5,1,1571.5,1451333,0,0,3398.8823 -13121,16092,29280,-9,29278,29279,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,7.968616,7.9662528,0,3,0,-9,0,-9,0,-1109.0924,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,39,0,15,1,0,-9,1,6.9285965,6.9285965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,52.220001,-9,-9,5,1,1,0,0,13,3,1,1240,77056.07,0,0,508.677 -13121,16093,29281,-9,29278,29279,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.1367512,7.6399112,0,3,0,-9,0,-9,0,-1160.9116,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,37,0,15,1,0,-9,1,8.294445,8.294445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,2149,-19287.746,0,0,183.40373 -13122,16094,29282,-9,29283,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-899.54279,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,8,5,0,1386,1497.3701,0,0,1766.4707 -13122,16094,29283,-9,-9,-9,1,1,0,30,2,1,1,0,2,-9,2,1,0,0,2,8.8443966,8.7175674,0,4,0,0,0,-9,0,-1064.7847,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,30,10,38,39,15,1,1,-9,0,15.146173,15.146173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.39,55.610001,-9,-9,1,3,4,0,1,8,5,0,1386,1497.3701,0,0,1766.4707 -13123,16095,29284,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,0,2,8.9470301,8.9445963,0,3,0,0,0,-9,0,-1142.4745,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,10,41,0,15,1,1,-9,0,21.055374,21.055374,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,48.27,23.82,-9,-9,4,3,4,0,0,8,5,0,632,49981.59,0,0,2865.5029 -13124,16096,29285,-9,29287,29286,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,7.1507049,7.1755891,0,3,0,0,0,-9,0,-1000.1071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,0,15,1,0,-9,1,3.8459857,3.8459857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,7,2,1,652,-111979.12,0,0,655.76202 -13124,16097,29286,29287,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,4,0,2,0,0,0,0,61,3,3,3,-9,-9,2019,4,3,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49,48,5,2,3,0,0,7,1,1,1345,-15567.772,0,0,341.21359 -13124,16097,29287,29286,-9,-9,3,1,0,61,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,4,0,-2,0,0,0,0,63,3,3,3,-9,-9,2019,4,2,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,52,48,5,2,3,0,0,7,1,1,1345,-15567.772,0,0,341.21359 -13125,16098,29288,29289,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,51,0,-1,-.085753702,0,0,0,73,1,3,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7981396,0,0,0,54.689999,57.470001,43.029999,53.23,6,1,1,0,0,10,3,1,813,1258171.5,0,0,2689.7139 -13125,16098,29289,29288,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,7.4038019,7.4787064,1,0,-9,51,0,1,-89.354301,0,0,0,72,1,5,3,1,3,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3486061,0,0,43.029999,53.23,54.689999,57.470001,6,1,1,0,0,10,3,1,813,1258171.5,0,0,2689.7139 -13126,16099,29290,29291,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,0,3,6.8068266,6.9461284,0,1,0,-9,39,-9,-3,76.814072,-9,0,0,69,3,1,3,-9,-9,2019,2,2,7,0,15,0,15,1,0,4,0,8.4915752,8.4915752,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.433495,1,56.549999,45.59,46.110001,16.790001,5,1,1,0,0,5,2,1,407.5,481028.13,0,0,1289.95 -13126,16099,29291,29290,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,39,-9,3,21.777376,-9,0,0,66,3,3,1,-9,-9,2019,3,1,27,11,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.110001,16.790001,56.549999,45.59,2,1,1,0,0,5,2,1,407.5,481028.13,0,0,1289.95 -13127,16100,29292,29293,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.1573782,7.2593651,0,1,0,-9,8,0,-2,98.13382,0,0,0,53,2,4,1,3,3,2019,1,1,17,6,15,15,15,1,1,1,0,8.0169687,8.0169687,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.090031,3,47.740002,53.75,44.529999,56.369999,6,1,1,0,0,6,5,1,138.5,1448171.5,0,0,3558.8813 -13127,16100,29293,29292,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.9862099,9.0645676,0,1,0,-9,8,0,2,40.977493,0,0,0,51,2,4,1,3,3,2019,1,2,11,0,45,44,15,1,0,1,0,22.632683,22.632683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.529999,56.369999,47.740002,53.75,6,1,1,0,0,6,5,1,138.5,1448171.5,0,0,3558.8813 -13127,16101,29294,-9,29292,29293,3,1,0,21,2,0,0,0,1,1,2,1,0,0,5,7.7179193,7.3063512,0,3,0,0,0,-9,0,-1067.1438,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,5.5797925,5.5797925,0,0,0,0,0,0,0,2,0,0,0,0,0,10.456831,3,46.060001,60.240002,-9,-9,6,1,1,0,0,6,3,1,210,-39691.414,0,0,1676.2184 -13128,16102,29295,29296,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,0,3,7.274816,7.5854459,0,2,0,-9,5,0,3,90.113144,0,0,0,46,1,3,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,3.8887286,3.8887286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.18,60.48,43.029999,20.92,4,1,1,0,0,4,3,1,814,372375.09,0,0,1930.7194 -13128,16102,29296,29295,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,3,7.7561941,8.1910667,0,2,0,-9,5,0,-3,51.746662,0,0,0,49,2,3,1,-9,-9,2019,1,1,17,6,31,18,15,1,1,1,0,7.9033103,7.9033103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.029999,20.92,33.18,60.48,5,1,1,0,0,4,3,1,814,372375.09,0,0,1930.7194 -13128,16103,29297,-9,29296,-9,3,1,0,18,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-1057.3656,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.700001,51.59,-9,-9,6,1,1,0,1,4,3,1,732,-170710.91,0,0,0 -13129,16104,29298,29299,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,5,0,1,0,0,0,0,61,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,23.496599,3,55.759998,28.700001,49,48,6,2,3,0,0,6,1,1,161,158829.11,0,0,0 -13129,16104,29299,29298,-9,-9,2,1,0,61,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,5,0,-1,0,0,0,0,62,3,2,3,-9,-9,2019,4,1,11,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49,48,55.759998,28.700001,5,2,3,0,0,6,1,1,161,158829.11,0,0,0 -13129,16105,29300,-9,29299,29298,3,1,1,24,2,0,0,0,2,1,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1078.4487,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4501968,0,0,0,49,58,-9,-9,5,2,3,0,0,6,1,1,693,132329.73,0,0,117.65419 -13129,16106,29301,29302,-9,-9,5,1,0,30,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,1,-9,1,52.049946,-9,0,1,29,1,5,1,-9,-9,2019,3,4,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,48,57,59.330002,51.290001,5,4,3,1,0,6,4,1,390.5,14114.039,0,0,3114.4277 -13129,16106,29302,29301,29299,29298,4,1,1,29,1,0,0,0,1,-9,1,1,0,0,5,8.7769175,9.1009407,0,1,0,1,1,-9,-1,37.375683,0,1,0,30,1,4,3,3,3,2019,2,5,6,0,40,40,15,1,0,3,0,22.390759,22.390759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.330002,51.290001,48,57,7,2,3,0,0,6,4,1,390.5,14114.039,0,0,3114.4277 -13130,16107,29303,-9,29304,29306,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1001.66,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,6,4,0,1176.25,308832.44,0,0,3626.2246 -13130,16107,29304,29306,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,5,7.7958956,7.9862552,0,2,0,-9,6,0,-4,-18.92522,0,0,1,40,2,2,1,3,3,2019,1,1,10,0,40,37,15,1,0,1,0,8.4874144,8.4874144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,45.549999,39.91,6,1,1,0,0,6,4,0,1176.25,308832.44,0,0,3626.2246 -13130,16107,29305,-9,29304,29306,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.2231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,4,0,1176.25,308832.44,0,0,3626.2246 -13130,16107,29306,29304,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,0,2,8.3727922,8.4042511,0,2,0,-9,22,0,4,-47.107002,0,0,0,36,2,5,1,3,3,2019,1,2,8,2,52,60,15,1,0,1,0,13.255035,13.255035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.549999,39.91,54.099998,59.110001,7,1,1,0,0,6,4,0,1176.25,308832.44,0,0,3626.2246 -13131,16108,29307,29308,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,4,9.2784872,9.168931,0,1,0,-9,7,0,2,74.733063,0,0,0,35,1,4,1,2,2,2019,1,2,10,1,55,45,15,1,0,1,0,22.943293,22.943293,0,0,0,0,0,0,0,0,0,0,0,2.5902259,0,0,0,51,56,51.240002,58.84,5,1,1,0,0,8,5,1,2330.5,1562516.8,0,0,6605.6064 -13131,16108,29308,29307,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,4,9.1749182,9.1124945,0,1,0,-9,7,0,-2,-56.477345,-9,0,1,37,1,4,1,2,2,2019,1,1,9,2,65,0,15,1,0,1,0,15.472437,15.472437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,51,56,6,1,1,0,0,8,5,1,2330.5,1562516.8,0,0,6605.6064 -13132,16109,29309,29310,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,6.7334323,6.7043462,1,0,-9,50,0,0,37.802402,0,0,0,74,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3184643,6.6895075,0,0,57.16,56.150002,53.150002,40.209999,6,1,1,0,0,9,2,1,428,575357.25,0,0,1458.239 -13132,16109,29310,29309,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,0,3,0,6.5110879,6.43431,1,0,-9,50,0,0,56.492649,0,0,0,74,1,4,3,3,3,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7996702,6.5326867,0,0,53.150002,40.209999,57.16,56.150002,3,1,1,0,0,9,2,1,428,575357.25,0,0,1458.239 -13133,16110,29311,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,0,4,8.3245049,8.8791552,6.4074845,4,0,0,0,-9,0,-1009.6418,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,0,15,1,0,-9,0,14.867654,14.867654,0,0,0,0,0,0,0,0,1,1,0,6.6488342,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,8,4,1,70,621882.63,0,0,1906.792 -13133,16110,29312,-9,29311,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-858.92438,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,8,4,1,70,621882.63,0,0,1906.792 -13134,16111,29313,-9,29315,29314,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1051.1442,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,2,3,0,0,4,3,1,598,33961.977,0,0,2618.1558 -13134,16111,29314,29315,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,3,8.207201,8.1955719,0,2,0,-9,12,0,7,-141.79184,0,0,0,43,3,2,1,3,2,2019,1,2,10,0,48,48,15,1,0,1,0,8.5432749,8.5432749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,46.560001,42.23,4,1,1,0,0,4,3,1,598,33961.977,0,0,2618.1558 -13134,16111,29315,29314,-9,-9,2,1,0,43,1,0,2,0,3,-9,2,1,0,0,2,7.7069073,7.5994487,0,2,0,-9,12,0,-7,-26.458246,0,0,1,50,2,3,1,-9,-9,2019,1,1,11,0,30,40,15,1,0,1,0,8.0215998,8.0215998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.560001,42.23,43.599998,51.610001,5,2,3,0,0,4,3,1,598,33961.977,0,0,2618.1558 -13134,16111,29316,-9,29315,29314,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.11121,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,4,3,1,598,33961.977,0,0,2618.1558 -13135,16112,29317,29319,-9,-9,2,1,0,27,1,1,2,0,2,-9,2,1,0,0,4,6.7738395,7.0224299,0,2,0,-9,7,0,-3,-30.213221,0,1,1,30,3,4,1,2,2,2019,1,1,7,0,22,19,15,1,0,1,0,7.3449402,7.3449402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,815.25,26104.688,0,0,1925.1556 -13135,16112,29318,-9,29317,29319,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.1963,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,3,1,815.25,26104.688,0,0,1925.1556 -13135,16112,29319,29317,-9,-9,1,1,1,30,1,1,2,0,3,-9,1,1,0,0,4,8.2210054,7.7504625,0,2,0,-9,7,0,3,-70.491508,0,0,0,27,2,4,1,2,2,2019,1,2,6,0,40,35,15,1,0,1,0,7.5903859,7.5903859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,815.25,26104.688,0,0,1925.1556 -13135,16112,29320,-9,29317,29319,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.30347,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,1,815.25,26104.688,0,0,1925.1556 -13136,16113,29321,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,0,4,7.1165953,7.7884827,6.7239089,3,0,0,0,-9,0,-922.85333,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,20,15,1,0,-9,0,7.511704,7.511704,0,0,0,0,0,0,0,0,1,1,0,4.7540789,7.3157306,0,0,56.330002,51.02,-9,-9,6,1,1,0,0,8,3,1,2423,372661.38,0,0,770.53625 -13137,16114,29322,-9,-9,-9,1,1,0,44,3,0,0,0,2,-9,2,1,0,0,3,7.6120491,7.6067491,0,3,0,0,0,-9,0,-1002.5258,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,30,0,15,1,0,-9,0,10.409547,10.409547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.73,49.639999,-9,-9,5,2,3,0,0,4,3,1,1523,-54908.871,0,0,1162.5127 -13138,16115,29323,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,0,5,7.6221056,8.0383892,7.339355,3,0,0,0,-9,0,-1020.1624,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9079885,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,5,4,0,519,60476.164,0,0,2871.1677 -13139,16116,29324,29326,-9,-9,2,1,0,42,1,0,3,0,2,-9,1,1,0,0,3,8.1557627,8.5706663,0,2,0,-9,8,0,0,-173.33966,0,0,1,42,1,2,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,9.3301792,9.3301792,0,0,0,0,0,0,0,0,1,1,0,7.0280995,0,0,0,52.540001,54.240002,38.560001,55.57,7,1,1,0,0,2,3,1,429.5,151280.59,0,0,2428.25 -13139,16116,29325,-9,29324,29326,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.64026,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,429.5,151280.59,0,0,2428.25 -13139,16116,29326,29324,-9,-9,1,1,1,42,1,0,3,0,1,-9,1,1,0,0,2,7.379087,7.2073812,0,2,0,-9,8,0,0,-28.940815,0,0,0,42,2,3,1,2,2,2019,1,2,17,6,40,28,15,1,1,1,0,4.6374373,4.6374373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.560001,55.57,52.540001,54.240002,4,1,1,0,0,2,3,1,429.5,151280.59,0,0,2428.25 -13139,16116,29327,-9,29324,29326,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.3879,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,1,429.5,151280.59,0,0,2428.25 -13140,16117,29328,-9,29333,29330,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.44299,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,1,0,550.5,17076.613,0,0,3284.7358 -13140,16117,29329,-9,29333,29330,4,1,1,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1113.3911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,9,1,0,550.5,17076.613,0,0,3284.7358 -13140,16117,29330,29333,-9,29334,2,1,1,34,1,0,4,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,11,0,-2,0,0,0,0,36,2,3,3,2,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,44.110001,50.110001,5,1,1,1,0,9,1,0,550.5,17076.613,0,0,3284.7358 -13140,16117,29331,-9,29333,29330,3,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.7061,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,1,0,550.5,17076.613,0,0,3284.7358 -13140,16117,29332,-9,29333,29330,5,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.09357,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,550.5,17076.613,0,0,3284.7358 -13140,16117,29333,29330,-9,-9,1,1,0,36,1,0,4,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,11,0,2,0,0,0,1,34,2,4,3,2,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.717152,3,44.110001,50.110001,49,58,5,1,1,0,0,9,1,0,550.5,17076.613,0,0,3284.7358 -13140,16118,29334,-9,-9,-9,7,1,1,62,3,0,4,0,3,-9,1,1,0,0,4,8.0729723,7.9278955,5.7391043,4,0,0,0,-9,0,-1105.4896,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,60,55,15,1,0,-9,0,5.803072,5.803072,0,0,0,0,0,0,0,0,1,1,0,0,6.1037869,0,0,50.869999,42.5,-9,-9,6,1,1,0,0,9,3,0,779,1133050.6,0,0,1444.8591 -13141,16119,29335,29336,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,7.977706,8.2049522,6.4797564,1,0,-9,17,0,2,74.174377,0,0,0,60,2,4,1,3,3,2019,1,2,6,0,26,30,15,1,0,1,0,12.214457,12.214457,0,0,0,0,0,0,0,2,0,0,0,0,7.2144489,.89138132,3,64.43,30.91,58.150002,52.91,6,1,1,0,0,11,4,0,2888,1617075.3,0,0,1545.4147 -13141,16119,29336,29335,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.9348307,7.9232106,0,1,0,-9,10,0,-2,74.657974,0,0,0,62,2,3,1,3,2,2019,1,1,7,0,22,30,15,1,0,1,0,13.581394,13.581394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,64.43,30.91,7,1,1,0,0,11,4,0,2888,1617075.3,0,0,1545.4147 -13142,16120,29337,29338,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,6.8390598,6.9235911,0,1,0,-9,8,0,-1,25.456926,0,0,0,62,3,3,1,-9,-9,2019,1,1,7,0,15,15,15,1,0,1,0,8.2495937,8.2495937,0,0,0,0,0,0,0,2,0,0,0,0,0,2.5627117,3,60.599998,43.75,51.139999,40,6,1,1,0,0,4,3,0,198,907674.38,0,0,2041.4579 -13142,16120,29338,29337,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,7.6579266,8.029829,0,1,0,-9,8,0,1,74.734032,0,0,0,61,2,3,1,3,3,2019,1,2,10,0,38,45,15,1,0,1,0,8.539257,8.539257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,40,60.599998,43.75,4,1,1,0,0,4,3,0,198,907674.38,0,0,2041.4579 -13143,16121,29339,29341,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,4,9.4487982,9.1169748,0,2,0,-9,18,-9,5,-16.669611,-9,0,0,46,2,4,1,2,2,2019,1,1,8,0,40,0,15,1,0,1,0,29.756798,29.756798,0,0,0,0,0,0,0,0,1,1,0,2.8515527,0,0,0,51.830002,57.200001,31.860001,58.389999,6,1,1,0,0,9,5,1,665.66669,721776.75,0,0,5853.5435 -13143,16121,29340,-9,29341,29339,4,1,0,17,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1083.0665,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0089121,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,9,5,1,665.66669,721776.75,0,0,5853.5435 -13143,16121,29341,29339,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,8.6757011,8.5067644,0,2,0,-9,18,-9,-5,-185.93445,-9,0,0,51,1,4,1,3,3,2019,1,2,22,8,50,0,15,1,1,1,0,15.185622,15.185622,0,0,0,0,0,0,0,2,1,1,0,0,0,.13633902,3,31.860001,58.389999,51.830002,57.200001,5,1,1,0,0,9,5,1,665.66669,721776.75,0,0,5853.5435 -13143,16122,29342,-9,29341,29339,3,1,1,20,2,0,1,1,2,-9,7,2,0,0,5,6.9055653,7.2134404,0,3,0,-9,0,-9,0,-1039.5604,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,50,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.85480857,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,9,2,1,156,15004.487,0,0,482.77832 -13144,16123,29343,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,1,2,0,6.8384457,6.7686863,3,0,0,0,-9,0,-902.7774,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2285781,6.9070091,0,0,30.610001,41.790001,-9,-9,6,1,1,0,0,4,2,1,189,282410.41,0,0,2365.6216 -13145,16124,29344,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,6.7284012,6.3121982,3,0,0,0,-9,0,-1197.3434,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2659864,6.2853665,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,9,2,1,834,422918.59,0,0,556.60797 -13146,16125,29345,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-953.30237,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.810001,33.18,-9,-9,7,1,1,0,0,12,1,0,258,41545.617,0,0,-450.58008 -13147,16126,29346,29347,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-2,71.670616,0,0,0,73,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.900002,45.740002,54.959999,53.169998,6,1,1,0,0,11,2,1,328.5,244555.22,0,0,1229.3048 -13147,16126,29347,29346,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.8357291,6.9576468,1,0,-9,7,0,2,53.15815,0,0,0,71,3,4,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9000268,6.2967386,0,0,54.959999,53.169998,58.900002,45.740002,6,1,1,0,0,11,2,1,328.5,244555.22,0,0,1229.3048 -13148,16127,29348,29349,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,7.4813914,7.5224957,1,0,-9,8,0,4,-69.172073,0,0,0,67,3,2,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8167968,7.2285886,0,0,57.16,56.150002,29.84,53.009998,7,1,1,0,0,9,3,1,493.5,1013740.9,0,0,3274.1204 -13148,16127,29349,29348,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,2,0,6.9203715,6.9844093,1,0,-9,8,0,-4,20.168159,0,0,0,71,3,4,3,3,2,2019,4,1,24,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0618424,6.895792,0,0,29.84,53.009998,57.16,56.150002,5,1,1,0,0,9,3,1,493.5,1013740.9,0,0,3274.1204 -13149,16128,29350,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,2,0,7.1874084,7.6192894,3,0,0,0,-9,0,-1023.138,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.88378,0,0,58.700001,46.459999,-9,-9,7,1,1,0,0,2,3,1,950,477866.16,0,0,2079.6899 -13150,16129,29351,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1026.3677,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.220001,33.34,-9,-9,6,1,1,0,0,9,1,0,407,42467.504,0,0,798.82593 -13151,16130,29352,29355,-9,-9,3,1,1,29,1,1,2,0,2,-9,2,1,0,0,2,7.9790254,8.1002283,0,2,0,-9,1,-9,-3,84.929138,-9,1,0,32,1,5,3,-9,-9,2019,2,1,6,0,36,0,15,1,0,3,0,8.7918844,8.7918844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,54.689999,57.470001,7,1,1,0,1,1,3,0,455.25,-65838.328,0,0,2604.3052 -13151,16130,29353,-9,29355,29352,2,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.05359,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,3,0,455.25,-65838.328,0,0,2604.3052 -13151,16130,29354,-9,29355,29352,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-936.54071,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,3,0,455.25,-65838.328,0,0,2604.3052 -13151,16130,29355,29352,-9,-9,1,1,0,32,1,1,2,0,1,-9,6,3,0,0,5,0,6.2837911,6.1880741,2,0,1,1,-9,3,-101.62711,0,0,1,29,2,2,1,2,-9,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0269599,0,0,0,54.689999,57.470001,57.57,49.689999,6,1,1,0,0,1,3,0,455.25,-65838.328,0,0,2604.3052 -13152,16131,29356,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,5,7.6294122,7.5131373,0,3,0,-9,0,-9,0,-1040.8463,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,21,0,15,1,0,-9,0,11.058517,11.058517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,11,3,1,1752,-32625.338,0,0,1976.0471 -13153,16132,29357,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1069.7203,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,37.939999,-9,-9,6,3,4,0,0,2,2,0,109,10817.029,0,0,695.44189 -13154,16133,29358,29359,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,8.0118418,8.0478201,0,1,0,-9,4,0,-4,82.060455,0,0,0,50,2,3,1,-9,-9,2019,1,1,11,0,18,18,15,1,0,1,0,17.722572,17.722572,0,0,0,0,0,0,0,0,0,0,0,.10097101,0,0,0,57.16,56.150002,38.639999,55.029999,7,1,1,0,0,10,5,1,1323,580862.25,0,0,3092.1851 -13154,16133,29359,29358,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,0,3,8.658906,8.6644545,0,1,0,-9,4,0,4,-90.490868,0,0,0,46,2,4,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,12.258001,12.258001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.639999,55.029999,57.16,56.150002,5,1,1,0,0,10,5,1,1323,580862.25,0,0,3092.1851 -13155,16134,29360,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-958.84528,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7785549,0,0,0,45.59,34.400002,-9,-9,5,1,1,0,0,4,1,1,825,-117301.03,0,0,846.23755 -13156,16135,29361,-9,29363,29362,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,3.7776663,3.9138834,2,0,0,0,-9,0,-926.48871,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7501347,0,0,0,57.09,43.990002,-9,-9,6,1,1,0,0,9,5,1,645.33331,1759614.9,0,0,5537.7383 -13156,16135,29362,29363,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,0,4,9.0726194,9.0451984,0,2,0,-9,6,0,7,89.365112,0,0,0,44,1,5,1,3,3,2019,1,1,14,3,47,0,15,1,0,1,0,20.665152,20.665152,0,0,0,0,0,0,0,0,1,1,0,2.1155529,0,0,0,54.200001,57.490002,54.099998,59.110001,6,1,1,0,0,9,5,1,645.33331,1759614.9,0,0,5537.7383 -13156,16135,29363,29362,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,0,5,8.8428802,8.9307089,0,2,0,-9,6,0,-7,-13.925055,0,0,1,51,1,4,1,3,2,2019,1,2,8,0,40,0,15,1,0,1,0,20.478792,20.478792,0,0,0,0,0,0,0,0,1,1,0,3.676904,0,0,0,54.099998,59.110001,54.200001,57.490002,6,1,1,0,0,9,5,1,645.33331,1759614.9,0,0,5537.7383 -13156,16136,29364,-9,29363,29362,3,1,0,18,2,0,1,0,2,1,2,1,0,0,5,7.2780285,7.3237748,0,3,0,0,0,-9,0,-992.48309,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,4,1,24,0,15,1,0,-9,1,7.0452218,7.0452218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.509998,60.740002,-9,-9,7,1,1,0,0,9,3,1,848,143885.7,0,0,540.46893 -13157,16137,29365,-9,29366,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.88666,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,6,1,0,680.5,-139771.17,0,0,707.07605 -13157,16137,29366,-9,-9,-9,1,1,0,35,3,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-1006.367,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,21,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.700001,35.59,-9,-9,4,2,3,0,0,6,1,0,680.5,-139771.17,0,0,707.07605 -13158,16138,29367,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-984.59235,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.3507195,3,38.970001,26.860001,-9,-9,3,1,1,0,1,13,1,0,552,-96688.461,0,0,1150.2854 -13159,16139,29368,29369,-9,-9,2,1,0,50,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,10,0,-7,-60.734287,0,0,0,57,2,5,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6452618,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,4,5,1,351.5,1101783,0,0,23595.736 -13159,16139,29369,29368,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,0,5,0,9.7486868,9.6521034,1,0,-9,26,0,7,22.844416,0,0,0,50,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.081944,8.9893084,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,4,5,1,351.5,1101783,0,0,23595.736 -13160,16140,29370,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,4,8.2984676,8.0459538,0,3,0,0,0,-9,0,-833.19458,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,35,15,1,0,-9,0,10.528784,10.528784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,4,1,1,0,0,11,4,1,293,319487.59,0,0,716.54413 -13161,16141,29371,29372,-9,-9,1,1,1,22,1,0,0,0,1,-9,2,1,0,0,4,7.8827467,8.0585852,0,1,0,-9,2,0,0,-63.070152,0,1,0,22,1,3,3,3,3,2019,2,2,24,10,45,24,15,1,1,3,0,6.7427211,6.7427211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.440001,62.16,21.700001,57.91,4,1,1,0,1,6,3,0,277,43016.254,0,0,1104.5813 -13161,16141,29372,29371,-9,-9,2,1,0,22,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,0,-7.9132009,0,1,1,22,1,4,1,-9,-9,2019,3,1,15,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.700001,57.91,26.440001,62.16,3,1,1,1,1,6,3,0,277,43016.254,0,0,1104.5813 -13162,16142,29373,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,0,3,0,4.8509302,4.8348441,3,0,0,0,-9,0,-1091.6653,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7545853,0,0,42.560001,46.59,-9,-9,6,1,1,0,0,9,2,0,139,649418.5,0,0,-1129.1544 -13163,16143,29374,29375,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-2,-52.933136,0,0,0,71,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6523232,0,0,0,60.119999,54.799999,51.830002,57.200001,6,1,1,0,0,10,3,1,473.5,1095945,0,0,3566.6201 -13163,16143,29375,29374,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.5171161,7.7479272,1,0,-9,6,0,2,-114.23093,0,0,0,69,2,4,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3826523,7.7096896,0,0,51.830002,57.200001,60.119999,54.799999,6,1,1,0,0,10,3,1,473.5,1095945,0,0,3566.6201 -13164,16144,29376,29377,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,5.4015684,4.8834043,0,1,0,-9,3,0,-2,88.040833,0,0,0,56,3,4,1,3,3,2019,1,2,8,0,75,60,15,1,0,1,0,.39313945,.39313945,0,0,0,0,0,0,0,0,0,0,0,2.9068892,0,0,0,58.869999,51.290001,65.059998,41.580002,6,1,1,0,0,12,5,1,2297,514881,0,0,4904.2393 -13164,16144,29377,29376,-9,-9,2,1,0,56,1,0,0,0,3,-9,1,1,0,0,4,8.9355373,8.9216814,0,1,0,-9,3,0,2,131.44565,0,0,0,54,2,4,1,-9,-9,2019,1,1,9,0,29,34,15,1,0,1,0,26.341908,26.341908,0,0,0,0,0,0,0,0,0,0,0,7.5419269,0,0,0,65.059998,41.580002,58.869999,51.290001,6,1,1,0,0,12,5,1,2297,514881,0,0,4904.2393 -13164,16145,29378,-9,29377,29376,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.5676394,7.5893092,0,3,0,0,0,-9,0,-957.44763,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,40,25,15,1,0,-9,1,6.9007387,6.9007387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,12,3,1,774,-80603.609,0,0,953.7536 -13165,16146,29379,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,0,3,7.8687811,7.9633813,6.577908,4,0,0,0,-9,0,-1040.8379,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,30,30,15,1,0,-9,0,9.141283,9.141283,0,0,0,0,0,0,0,0,1,1,0,6.2654004,0,0,0,35.610001,55.450001,-9,-9,6,1,1,0,0,9,3,1,532.33331,400858.31,0,0,2121.1138 -13165,16146,29380,-9,29379,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-998.10809,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,9,3,1,532.33331,400858.31,0,0,2121.1138 -13165,16146,29381,-9,29379,-9,3,1,0,17,2,0,1,0,2,-9,7,2,0,0,4,5.8513737,5.9147305,4.8694921,4,0,0,0,-9,0,-983.68091,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5510755,0,0,0,31.23,61.380001,-9,-9,5,1,1,0,0,9,3,1,532.33331,400858.31,0,0,2121.1138 -13166,16147,29382,29383,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,9.2208529,9.2163172,0,1,0,-9,4,0,4,92.401001,0,0,0,51,2,4,3,2,1,2019,2,2,10,0,43,43,15,1,0,3,0,32.000122,32.000122,0,0,0,0,0,0,0,2,0,0,0,7.1305184,0,0,3,54.200001,57.490002,51,54,6,1,1,0,0,12,5,1,731.5,2449628.8,0,0,4019.5771 -13166,16147,29383,29382,-9,-9,2,1,0,51,1,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,4,0,-4,-25.488287,0,0,0,55,1,4,1,-9,-9,2019,3,1,10,1,0,43,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,54.200001,57.490002,6,1,1,1,0,12,5,1,731.5,2449628.8,0,0,4019.5771 -13167,16148,29384,-9,29385,29386,5,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.01935,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,467.5,213925.88,0,0,4603.8921 -13167,16148,29385,29386,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,0,5,7.8966503,7.9885364,0,2,0,-9,13,0,4,59.7784,0,0,1,31,2,4,1,2,3,2019,1,2,4,0,30,25,15,1,0,1,0,8.0579977,8.0579977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,6,1,1,0,0,2,5,1,467.5,213925.88,0,0,4603.8921 -13167,16148,29386,29385,-9,-9,2,1,1,31,1,1,2,0,2,-9,2,1,0,0,4,9.1792326,9.1699066,0,2,0,-9,6,0,-4,-43.640549,0,0,0,35,2,5,1,-9,-9,2019,1,1,10,1,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,51.73,58.82,5,1,1,0,0,2,5,1,467.5,213925.88,0,0,4603.8921 -13167,16148,29387,-9,29385,29386,4,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.2254,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,5,1,467.5,213925.88,0,0,4603.8921 -13168,16149,29388,29389,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,35,0,-6,0,0,0,0,76,3,3,3,-9,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.009998,39.560001,65.139999,34.830002,7,1,1,0,0,5,1,1,885.5,718230.44,0,0,1314.0175 -13168,16149,29389,29388,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,35,0,6,0,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.139999,34.830002,60.009998,39.560001,6,1,1,0,0,5,1,1,885.5,718230.44,0,0,1314.0175 -13169,16150,29390,29391,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.1112413,7.4838734,0,1,0,-9,25,0,-5,-14.044204,0,0,0,64,2,2,1,3,3,2019,1,1,12,0,22,34,15,1,0,1,0,6.5389905,6.5389905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.009998,42.900002,35.049999,35.48,2,1,1,0,0,1,4,0,1267.5,461488.06,0,0,3050.325 -13169,16150,29391,29390,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,1,2,8.0871859,8.2861128,6.9488215,1,0,-9,28,0,5,-13.332188,0,0,0,59,2,2,1,3,3,2019,1,2,12,0,49,55,15,1,0,1,0,5.4710212,5.4710212,0,0,0,0,0,0,0,0,1,1,0,6.1375451,6.8913441,0,0,35.049999,35.48,37.009998,42.900002,4,1,1,0,1,1,4,0,1267.5,461488.06,0,0,3050.325 -13170,16151,29392,29393,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.1729813,8.0031214,0,1,0,-9,31,0,8,-64.400352,0,0,0,50,2,3,1,-9,-9,2019,1,2,10,0,40,51,15,1,0,1,0,9.437397,9.437397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.830002,38.689999,49.040001,55.860001,6,1,1,0,0,2,4,0,903,179614.13,0,0,2267.2437 -13170,16151,29393,29392,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,7.3812189,7.0637455,0,1,0,-9,31,0,-8,18.259438,0,0,0,58,2,3,1,2,2,2019,1,1,11,0,33,30,15,1,0,1,0,4.8753262,4.8753262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,50.830002,38.689999,6,1,1,0,0,2,4,0,903,179614.13,0,0,2267.2437 -13170,16152,29394,29395,-9,-9,4,1,1,35,1,0,0,0,2,-9,3,3,0,0,5,0,0,0,1,0,-9,2,0,9,117.00244,0,0,0,26,2,4,1,-9,-9,2019,3,3,15,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,67.220001,55.759998,52.639999,6,1,1,1,1,2,2,0,874.5,35191.98,0,0,998.83472 -13170,16152,29395,29394,29393,29392,3,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,7.09342,7.2199235,0,1,0,-9,2,0,0,-124.83912,0,1,1,35,2,5,3,2,2,2019,2,4,9,2,40,25,15,1,0,3,0,4.1496477,4.1496477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,52.639999,30.42,67.220001,5,1,1,0,0,2,2,0,874.5,35191.98,0,0,998.83472 -13171,16153,29396,29397,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,-1,79.640579,0,0,0,67,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,57.16,56.150002,7,1,1,0,0,7,4,1,946,2024451.5,0,0,3547.8784 -13171,16153,29397,29396,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,8.4113026,8.957181,1,0,-9,45,0,1,66.225563,0,0,0,66,3,3,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.5245225,8.696147,6.910708,3,57.16,56.150002,54.959999,53.169998,6,1,1,0,0,7,4,1,946,2024451.5,0,0,3547.8784 -13172,16154,29398,29400,-9,-9,1,1,0,45,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,25,0,-4,43.613632,0,0,0,49,2,4,1,2,3,2019,3,2,16,4,0,20,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.650002,60.470001,53,54,6,1,1,1,0,4,2,1,1267.75,190308.17,0,0,884.63281 -13172,16154,29399,-9,29398,29400,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.66718,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,4,2,1,1267.75,190308.17,0,0,884.63281 -13172,16154,29400,29398,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,7.7177773,7.9856343,0,2,0,-9,6,0,4,52.057743,0,0,0,45,2,4,3,-9,-9,2019,2,1,9,1,40,40,15,1,0,3,0,7.1024418,7.1024418,0,0,0,0,0,0,0,0,0,0,0,2.4249315,0,0,0,53,54,50.650002,60.470001,6,1,1,0,0,4,2,1,1267.75,190308.17,0,0,884.63281 -13172,16154,29401,-9,29398,29400,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-994.65564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,4,2,1,1267.75,190308.17,0,0,884.63281 -13173,16155,29402,29403,-9,-9,3,1,1,23,1,1,2,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,3,0,2,0,0,1,0,21,3,5,3,-9,-9,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.389999,52.349998,49.02,43.43,6,1,1,1,0,13,1,0,1339,-133534.19,0,0,1819.9928 -13173,16155,29403,29402,-9,-9,1,1,0,21,1,1,2,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,3,0,-2,0,0,1,1,23,3,4,3,3,-9,2019,4,3,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,43.43,53.389999,52.349998,7,1,1,0,0,13,1,0,1339,-133534.19,0,0,1819.9928 -13173,16155,29404,-9,29403,29402,2,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.39734,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,1,0,1339,-133534.19,0,0,1819.9928 -13173,16155,29405,-9,29403,29402,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1143.2646,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,1,0,1339,-133534.19,0,0,1819.9928 -13174,16156,29406,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,5,7.8296566,7.973381,0,3,0,0,0,-9,0,-1081.3947,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,30,30,15,1,0,-9,0,13.026489,13.026489,0,0,0,0,0,0,0,0,0,0,0,7.3240767,0,0,0,58.049999,54.52,-9,-9,7,1,1,0,0,5,4,1,1028,676865,0,0,2432.6167 -13175,16157,29407,-9,29409,29408,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.94354,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,453.25,152594.36,0,0,4197.2798 -13175,16157,29408,29409,-9,-9,2,1,1,40,1,1,2,0,1,-9,2,1,0,0,4,8.5698071,8.7521133,0,2,0,-9,9,0,5,-39.830002,0,0,0,35,1,5,1,2,2,2019,1,1,7,0,37,0,15,1,0,1,0,15.554151,15.554151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.099998,42.919998,54.689999,57.470001,6,1,1,0,0,2,4,1,453.25,152594.36,0,0,4197.2798 -13175,16157,29409,29408,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,0,5,8.4787922,8.2295504,0,2,0,-9,9,0,-5,27.730633,0,0,1,40,1,4,1,2,2,2019,1,2,9,0,65,27,15,1,0,1,0,7.4901419,7.4901419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,62.099998,42.919998,6,1,1,0,0,2,4,1,453.25,152594.36,0,0,4197.2798 -13175,16157,29410,-9,29409,29408,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.4303,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,4,1,453.25,152594.36,0,0,4197.2798 -13176,16158,29411,-9,29412,29413,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.6061,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,1172.25,69271.906,0,0,4064.5601 -13176,16158,29412,29413,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,8.2846785,8.2400436,0,2,0,-9,28,0,-1,-28.848732,0,0,0,46,2,4,1,3,-9,2019,1,2,8,0,41,40,15,1,0,1,0,8.6927032,8.6927032,0,0,0,0,0,0,0,2,1,1,0,0,0,.62902588,3,49.41,58.279999,55.389999,54.220001,6,1,1,0,0,2,5,1,1172.25,69271.906,0,0,4064.5601 -13176,16158,29413,29412,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.8453035,8.711936,0,2,0,-9,27,0,1,-17.430128,0,0,0,45,2,4,1,-9,-9,2019,1,1,12,0,43,39,15,1,0,1,0,23.365171,23.365171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.389999,54.220001,49.41,58.279999,5,1,1,0,0,2,5,1,1172.25,69271.906,0,0,4064.5601 -13176,16158,29414,-9,29412,29413,5,1,1,11,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-932.50574,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,2,5,1,1172.25,69271.906,0,0,4064.5601 -13176,16159,29415,-9,29412,29413,3,1,0,18,2,0,2,0,2,-9,7,2,0,0,4,6.9532924,6.9013867,0,3,0,0,0,-9,0,-978.75793,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,2,2,1,1062,-29543.166,0,0,1436.3245 -13177,16160,29416,-9,29417,29418,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.5872,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,5,1,415.5,429355.47,0,0,15722.542 -13177,16160,29417,29418,-9,-9,1,1,0,42,1,0,2,0,1,-9,1,1,0,0,4,6.8279676,6.7737503,0,2,0,-9,20,0,-6,59.138058,0,0,1,48,1,3,1,2,3,2019,1,2,12,0,18,0,15,1,0,1,0,6.3576956,6.3576956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,53.139999,51.279999,5,1,1,0,0,5,5,1,415.5,429355.47,0,0,15722.542 -13177,16160,29418,29417,-9,-9,2,1,1,48,1,0,2,0,1,-9,1,1,0,0,3,9.5776424,9.6804161,0,2,0,-9,10,0,6,-118.96425,0,0,0,42,1,4,1,-9,-9,2019,1,1,10,0,50,50,15,1,0,1,0,36.773041,36.773041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.139999,51.279999,45.91,59.889999,6,1,1,0,0,5,5,1,415.5,429355.47,0,0,15722.542 -13177,16160,29419,-9,29417,29418,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-970.97455,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,5,5,1,415.5,429355.47,0,0,15722.542 -13178,16161,29420,29421,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,2,7.5460773,7.1292071,0,1,0,-9,24,0,-4,20.437828,0,0,0,51,2,3,1,-9,-9,2019,1,1,18,6,24,16,15,1,1,1,0,5.3479156,5.3479156,0,0,0,0,0,0,0,7,0,0,0,0,0,8.7807331,3,48.639999,36.330002,54.900002,54.529999,6,1,1,0,0,10,4,1,858,422850.19,0,0,1435.6029 -13178,16161,29421,29420,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,7.9470744,8.0000725,0,1,0,-9,28,0,4,45.540882,0,0,0,47,2,2,1,2,2,2019,1,2,6,0,30,34,15,1,0,1,0,12.815466,12.815466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.900002,54.529999,48.639999,36.330002,6,1,1,0,0,10,4,1,858,422850.19,0,0,1435.6029 -13178,16162,29422,-9,29420,29421,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.5521331,8.0596352,0,3,0,0,0,-9,0,-987.82153,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,37,0,15,1,0,-9,1,7.1113958,7.1113958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.68,49.950001,-9,-9,7,1,1,0,0,10,3,1,221,229844.14,0,0,1764.222 -13179,16163,29423,29424,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.8252301,7.0264421,1,0,-9,49,0,3,96.518875,0,0,0,66,2,2,3,3,-9,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.4878855,6.8060088,19.636776,1,41.880001,45.75,29.91,25.889999,6,1,1,0,0,9,3,1,622,2561127,0,0,2200.6348 -13179,16163,29424,29423,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,6.9365416,6.9724016,1,0,-9,49,0,-3,45.549961,0,0,0,69,3,3,3,3,3,2019,4,1,19,6,0,0,15,4,1,4,0,0,0,1,0,20.35932,0,0,0,0,0,1,1,0,4.3382254,7.1560183,0,0,29.91,25.889999,41.880001,45.75,2,1,1,0,0,9,3,1,622,2561127,0,0,2200.6348 -13180,16164,29425,29426,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,2,6.6235557,6.5473409,4.9724803,1,0,-9,10,0,3,-186.39758,0,0,0,60,2,4,3,3,3,2019,2,2,20,8,10,19,15,1,1,4,0,7.3879852,7.3879852,0,0,0,0,0,0,0,0,0,0,0,5.2942929,5.0671463,0,0,29.65,43.43,57.16,56.150002,4,1,1,0,0,12,3,1,697.5,159922.63,0,0,2823.5681 -13180,16164,29426,29425,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,7.9756618,8.3712692,1,0,-9,10,0,-3,-25.932499,0,0,0,63,2,2,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.8802805,7.7930827,0,3,57.16,56.150002,29.65,43.43,6,1,1,0,0,12,3,1,697.5,159922.63,0,0,2823.5681 -13181,16165,29427,29428,-9,-9,1,1,1,24,1,1,1,0,2,-9,2,1,0,0,3,8.805068,9.0854368,0,2,0,-9,3,0,2,26.485937,0,1,0,22,2,4,1,-9,-9,2019,1,2,8,0,53,57,15,1,0,1,0,14.791585,14.791585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,49.950001,49.439999,56.93,6,1,1,0,0,4,4,1,1488.3334,251383.69,0,0,3678.5076 -13181,16165,29428,29427,-9,-9,2,1,0,22,1,1,1,0,2,-9,2,1,0,0,4,7.2630816,7.2630768,0,2,0,-9,3,0,-2,43.41824,0,1,1,24,2,3,1,-9,-9,2019,1,1,6,1,17,38,15,1,0,1,0,9.994154,9.994154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.439999,56.93,55.93,49.950001,6,1,1,0,0,4,4,1,1488.3334,251383.69,0,0,3678.5076 -13181,16165,29429,-9,29428,29427,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1061.6979,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,1,1488.3334,251383.69,0,0,3678.5076 -13182,16166,29430,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,1,1,0,6.5287652,6.6244059,3,0,0,0,-9,0,-941.84039,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.1049623,6.8342319,0,0,42.529999,14.86,-9,-9,5,1,1,0,0,12,2,1,811,218745.28,0,0,491.39395 -13183,16167,29431,29432,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,3,0,5.8663554,6.2965565,1,0,-9,56,0,-3,-40.244709,0,0,0,77,2,3,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8538885,0,0,50,46,53,46,5,1,1,0,0,10,2,1,306,169353.52,0,0,1441.1636 -13183,16167,29432,29431,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.9647398,7.1863551,1,0,-9,56,0,3,20.179567,0,0,0,74,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,6.893889,117.98547,1,53,46,50,46,5,1,1,0,0,10,2,1,306,169353.52,0,0,1441.1636 -13184,16168,29433,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,6.1914096,6.1884646,3,0,0,0,-9,0,-1065.7563,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3050392,6.3176503,4.1588149,3,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,1,281,-29866.285,0,0,30.215502 -13185,16169,29434,29435,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.7365947,7.6808486,1,0,-9,9,0,4,4.9338303,0,0,0,67,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0855975,7.5763607,0,0,58.07,46.290001,54.380001,46.77,7,1,1,0,0,9,3,1,875.5,1232439,0,0,2718.6841 -13185,16169,29435,29434,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,3,0,5.7902241,5.9122844,1,0,-9,9,0,-4,-17.887505,0,0,0,71,2,3,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4590708,5.9680161,0,0,54.380001,46.77,58.07,46.290001,6,1,1,0,0,9,3,1,875.5,1232439,0,0,2718.6841 -13185,16170,29436,-9,29435,29434,3,1,1,37,2,0,0,0,2,-9,2,1,0,0,3,8.4661913,7.745276,0,3,0,0,0,-9,0,-930.14734,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,44,40,15,1,0,-9,1,8.6311617,8.6311617,0,0,0,0,0,0,0,0,1,1,0,.034016706,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,1,9,4,1,665,-255844.3,0,0,2393.3098 -13186,16171,29437,-9,29442,29441,6,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.1162,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,4,1,487,31757.895,0,0,3413.8979 -13186,16171,29438,-9,29442,29441,4,1,1,10,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1058.5645,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,4,1,487,31757.895,0,0,3413.8979 -13186,16171,29439,-9,29442,29441,5,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.0657,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,487,31757.895,0,0,3413.8979 -13186,16171,29440,-9,29442,29441,3,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.7115,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,2,4,1,487,31757.895,0,0,3413.8979 -13186,16171,29441,29442,-9,-9,2,1,1,34,1,0,4,0,1,-9,1,1,0,0,4,8.8316975,8.9307156,0,2,0,-9,6,0,-1,44.031647,0,0,0,35,2,4,1,-9,-9,2019,1,1,10,1,40,40,15,1,0,1,0,22.410679,22.410679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48.580002,53.59,5,1,1,0,0,2,4,1,487,31757.895,0,0,3413.8979 -13186,16171,29442,29441,-9,-9,1,1,0,35,1,0,4,0,2,-9,2,1,0,0,4,7.0534801,7.2806792,0,2,0,-9,16,0,1,-107.15247,0,0,1,34,1,4,1,2,2,2019,1,2,7,0,20,20,15,1,0,1,0,7.1784048,7.1784048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.580002,53.59,51,56,6,1,1,0,0,2,4,1,487,31757.895,0,0,3413.8979 -13187,16172,29443,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,8.3554068,8.3608732,0,1,0,-9,7,0,-17,6.7500577,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,18,6,10,47,15,1,1,-9,0,60.157135,60.157135,0,0,0,0,0,0,0,0,0,0,0,3.2311389,0,0,0,30.700001,62.919998,54.200001,57.490002,3,2,3,0,0,10,5,1,169,164798.64,0,0,2193.5652 -13187,16173,29444,-9,-9,-9,2,1,1,57,2,0,0,0,1,-9,2,1,0,0,4,9.4894876,9.7864752,0,1,0,-9,7,0,17,92.122627,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,9,0,40,60,15,1,0,-9,0,40.599998,40.599998,0,0,0,0,0,0,0,0,0,0,0,6.02314,0,0,0,54.200001,57.490002,30.700001,62.919998,6,1,1,0,0,10,5,1,709,227130.75,0,0,7236.2559 -13188,16174,29445,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,4,3,0,0,3,0,7.781342,7.7920828,3,0,0,0,-9,0,-1147.9644,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.37003,7.6994915,0,0,51.919998,28.66,-9,-9,6,1,1,0,0,11,3,1,593,213365,0,0,1584.7457 -13189,16175,29446,29447,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,6.6020761,6.8780365,1,0,-9,6,0,4,-71.860275,0,0,0,60,2,4,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8379545,6.8375287,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,10,3,1,410.5,584691.94,0,0,1974.2043 -13189,16175,29447,29446,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.0314908,7.4024239,6.58922,1,0,-9,6,0,-4,-16.487356,0,0,0,64,2,4,3,2,-9,2019,2,1,10,0,20,15,15,1,0,4,0,6.3172297,6.3172297,0,0,0,0,0,0,0,0,0,0,0,6.9223509,6.8999386,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,410.5,584691.94,0,0,1974.2043 -13190,16176,29448,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1050.8973,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.68,14.53,-9,-9,3,1,1,0,0,1,1,0,129,-3763.7668,0,0,2633.2712 -13191,16177,29449,29450,-9,-9,1,1,1,43,1,0,0,0,3,-9,2,1,0,0,5,8.4055557,8.1297235,0,1,0,-9,2,0,15,4.2019162,0,0,0,28,2,3,1,2,2,2019,1,2,6,0,40,45,15,1,0,1,0,12.838148,12.838148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,32.360001,59.759998,6,1,1,0,0,4,4,0,746.5,5404792,0,0,2090.0161 -13191,16177,29450,29449,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,0,3,7.0293407,7.0901279,0,1,0,-9,2,0,-15,-1.5724736,0,1,1,43,3,5,1,-9,-9,2019,1,1,14,2,20,40,15,1,0,1,0,7.2114468,7.2114468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.360001,59.759998,62.389999,56.709999,6,1,1,0,0,4,4,0,746.5,5404792,0,0,2090.0161 -13192,16178,29451,29452,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,1,3,0,5.8857727,6.0043826,1,0,-9,7,0,1,-56.930786,0,0,0,70,3,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.822495,6.1340985,3.5036826,3,41.75,33.34,46.389999,60.990002,6,1,1,0,0,8,2,1,973.5,489195.81,0,0,2247.418 -13192,16178,29452,29451,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,6.1323457,6.0908818,1,0,-9,53,0,-1,18.124006,0,0,0,71,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6838727,6.2092767,8.3600416,3,46.389999,60.990002,41.75,33.34,6,1,1,0,0,8,2,1,973.5,489195.81,0,0,2247.418 -13193,16179,29453,29454,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,0,5,8.3836794,8.6201687,0,2,0,-9,10,0,-6,2.8820031,0,0,0,54,2,3,1,2,2,2019,1,1,22,9,35,35,15,1,1,1,0,13.951512,13.951512,0,0,0,0,0,0,0,0,1,1,0,.28463098,0,0,0,34.740002,65.349998,47.240002,53.950001,3,1,1,0,0,11,4,1,538.5,1841383.3,0,0,2840.6655 -13193,16179,29454,29453,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,0,3,8.6094856,8.3423214,0,2,0,-9,10,0,6,-60.341587,0,0,0,48,1,5,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,14.103415,14.103415,0,0,0,0,0,0,0,0,1,1,0,3.942476,0,0,0,47.240002,53.950001,34.740002,65.349998,5,1,1,0,0,11,4,1,538.5,1841383.3,0,0,2840.6655 -13194,16180,29455,-9,29456,29457,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1087.4115,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.24,64.209999,-9,-9,3,1,1,0,0,4,3,1,458.33334,368684.31,0,0,2590.2922 -13194,16180,29456,29457,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,4,7.3358498,7.2590985,0,2,0,-9,6,0,-2,-32.407967,0,0,0,53,2,3,1,2,2,2019,1,1,10,0,25,25,15,1,0,1,0,6.5199695,6.5199695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,45.290001,33.209999,6,1,1,0,0,4,3,1,458.33334,368684.31,0,0,2590.2922 -13194,16180,29457,29456,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,0,3,7.5308628,7.5044723,0,2,0,-9,6,0,2,85.003159,0,0,0,51,2,4,1,2,2,2019,1,2,15,4,25,25,15,1,1,1,0,8.8657722,8.8657722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.290001,33.209999,57.16,56.150002,6,1,1,0,0,4,3,1,458.33334,368684.31,0,0,2590.2922 -13194,16181,29458,-9,29456,29457,3,1,0,22,2,0,1,1,2,0,7,2,0,0,4,6.3810687,6.2143497,0,3,0,0,0,-9,0,-893.19324,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.259998,59.43,-9,-9,6,1,1,0,0,4,2,1,460,49978.625,0,0,1089.2639 -13195,16182,29459,29461,-9,-9,1,1,1,27,1,1,3,0,2,-9,2,1,0,1,3,7.2909956,7.2878451,0,2,0,-9,5,0,-1,-71.313332,0,1,0,28,2,4,3,-9,-9,2019,2,2,20,6,24,0,15,1,1,3,0,6.9251285,6.9251285,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.970001,28.18,19.82,53.150002,4,1,1,0,0,5,2,0,487.60001,128599.88,0,0,1738.0775 -13195,16182,29460,-9,29461,29459,4,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.03894,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,2,0,487.60001,128599.88,0,0,1738.0775 -13195,16182,29461,29459,-9,-9,2,1,0,28,1,1,3,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,5,0,1,61.910183,-9,1,1,27,2,3,1,-9,-9,2019,3,1,25,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.82,53.150002,40.970001,28.18,4,1,1,1,1,5,2,0,487.60001,128599.88,0,0,1738.0775 -13195,16182,29462,-9,29461,29459,3,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.3154,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,2,0,487.60001,128599.88,0,0,1738.0775 -13195,16182,29463,-9,29461,29459,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1006.8829,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,2,0,487.60001,128599.88,0,0,1738.0775 -13196,16183,29464,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,0,4,0,8.2368326,8.2717104,3,0,0,0,-9,0,-1034.4296,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.4733725,8.5747671,0,0,62.099998,51.16,-9,-9,6,1,1,0,0,4,4,1,324,887431.56,0,0,4401.4922 -13197,16184,29465,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1117.1484,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.299999,25.32,-9,-9,5,1,1,0,0,12,1,0,531,-153675.98,0,0,1476.9504 -13198,16185,29466,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,1,1,0,0,4,9.2148695,9.2153873,0,3,0,0,0,-9,0,-1033.0933,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,30,35,15,1,0,-9,0,34.838058,34.838058,0,0,0,0,0,0,0,0,0,0,0,6.1111708,0,0,0,61.84,41.580002,-9,-9,6,1,1,0,0,9,5,1,102,2121092.3,0,0,4246.4399 -13199,16186,29467,29468,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,9.3772326,9.326395,0,1,0,-9,7,0,0,-18.666866,0,0,0,33,1,5,1,-9,-9,2019,1,1,8,0,51,42,15,1,0,1,0,24.6085,24.6085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,45.220001,63.139999,5,1,1,0,0,10,5,1,1416.5,617512.19,0,0,5892.5654 -13199,16186,29468,29467,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,5,8.971446,8.953577,0,1,0,-9,7,0,0,-25.150593,0,0,1,33,1,4,1,1,1,2019,1,2,10,1,52,60,15,1,0,1,0,20.038685,20.038685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.220001,63.139999,54.200001,57.490002,4,1,1,0,0,10,5,1,1416.5,617512.19,0,0,5892.5654 -13200,16187,29469,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,0,5,8.6434765,8.6208086,0,3,0,0,0,-9,0,-1111.306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,39,38,15,1,0,-9,0,16.786785,16.786785,0,0,0,0,0,0,0,0,0,0,0,4.2066898,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,8,5,1,721,229160.84,0,0,1782.3312 -13200,16188,29470,-9,-9,-9,2,1,0,47,2,0,0,0,1,-9,2,1,0,0,5,8.5848608,8.8390942,0,3,0,0,0,-9,0,-1034.04,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,5,0,43,45,15,1,0,-9,0,12.524286,12.524286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.709999,54.889999,-9,-9,7,1,1,0,0,8,5,1,529,51706.191,0,0,1734.9081 -13201,16189,29471,29472,-9,-9,1,1,1,48,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,27,0,3,-4.8918238,0,0,0,45,2,5,1,3,2,2019,3,2,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.580002,39.990002,50.060001,46.52,2,4,2,1,1,2,2,1,521.5,156841.88,0,0,667.01044 -13201,16189,29472,29471,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,5,7.0188413,6.9422517,0,2,0,-9,27,0,-3,-10.616291,0,0,0,48,2,3,3,3,1,2019,2,1,4,0,16,24,15,1,0,3,0,8.7113714,8.7113714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.060001,46.52,33.580002,39.990002,6,2,3,0,0,2,2,1,521.5,156841.88,0,0,667.01044 -13201,16190,29473,-9,29472,29471,3,1,1,24,2,0,1,0,1,-9,2,1,0,0,3,7.979167,7.9540124,0,3,0,0,0,-9,0,-1007.553,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,50,15,15,1,1,-9,1,9.2072277,9.2072277,0,0,0,0,0,0,0,7,1,1,0,0,0,12.108834,3,35.860001,48.650002,-9,-9,4,2,3,0,0,2,4,1,892,-106070.72,0,0,1048.9954 -13202,16191,29474,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.2042198,8.3002872,0,3,0,0,0,-9,0,-974.14441,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,42,0,15,1,0,-9,0,11.089936,11.089936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,46.889999,-9,-9,6,1,1,0,0,8,4,0,682,141968.86,0,0,508.52991 -13203,16192,29475,-9,29476,29477,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1124.2734,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,2,4,0,1388,155972.95,0,0,2677.4089 -13203,16192,29476,29477,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,0,3,7.2952209,7.3162904,0,2,0,-9,4,0,1,105.71135,0,0,1,30,1,5,1,2,3,2019,1,3,7,0,29,26,15,1,0,1,0,5.6702971,5.6702971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,44.810001,48.18,61.799999,6,1,1,0,0,2,4,0,1388,155972.95,0,0,2677.4089 -13203,16192,29477,29476,-9,-9,3,1,1,30,1,1,2,0,1,-9,2,1,0,0,5,8.4470825,7.994565,0,2,0,-9,4,0,-1,56.548939,0,0,0,31,1,3,1,-9,-9,2019,1,1,7,0,48,38,15,1,0,1,0,11.366018,11.366018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.799999,55.27,44.810001,6,4,2,0,0,2,4,0,1388,155972.95,0,0,2677.4089 -13203,16192,29478,-9,29476,29477,2,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.9637,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,2,4,0,1388,155972.95,0,0,2677.4089 -13204,16193,29479,-9,29480,29481,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.88129,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,12,5,1,314.33334,1519530.9,0,0,9326.9541 -13204,16193,29480,29481,-9,-9,2,1,0,44,1,0,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,21,0,0,-16.015659,0,0,1,44,1,4,1,3,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,57.16,56.150002,7,4,2,0,0,12,5,1,314.33334,1519530.9,0,0,9326.9541 -13204,16193,29481,29480,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,9.7913628,9.5424852,0,2,0,-9,19,0,0,20.11706,-9,0,0,44,1,5,3,-9,-9,2019,2,2,8,0,90,0,15,1,0,3,0,18.801764,18.801764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,55.09,55.869999,6,1,1,0,0,12,5,1,314.33334,1519530.9,0,0,9326.9541 -13205,16194,29482,29483,-9,-9,2,1,0,31,1,0,0,0,2,-9,1,1,0,0,3,7.234498,7.1597729,0,1,0,-9,10,0,0,-54.345306,0,0,1,31,3,5,1,1,1,2019,1,1,11,4,20,12,15,1,1,1,0,8.8326359,8.8326359,0,0,0,0,0,0,0,0,0,0,0,.66770661,0,0,0,50.59,34.959999,59.43,58.049999,6,4,2,0,0,5,3,0,1142.5,22144.529,0,0,2197.6084 -13205,16194,29483,29482,-9,-9,1,1,1,31,1,0,0,0,3,-9,1,1,0,0,5,7.7667408,7.5381794,0,1,0,-9,10,0,0,43.286598,0,0,0,31,2,3,1,1,1,2019,1,2,10,0,14,14,15,1,0,1,0,14.464738,14.464738,0,0,0,0,0,0,0,0,0,0,0,.47453424,0,0,0,59.43,58.049999,50.59,34.959999,2,1,1,0,0,5,3,0,1142.5,22144.529,0,0,2197.6084 -13206,16195,29484,29485,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,8.8408375,8.5635471,6.3965611,1,0,-9,39,0,-1,-15.138142,0,0,0,62,2,4,1,-9,-9,2019,1,2,8,0,37,40,15,1,0,1,0,17.531614,17.531614,0,0,0,0,0,0,0,0,0,0,0,0,6.4583936,0,0,60.290001,52.110001,57.16,56.150002,2,1,1,0,0,8,5,1,391,441836.63,0,0,3763.4849 -13206,16195,29485,29484,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,7.963171,7.7918921,5.2032342,1,0,-9,39,0,1,-22.339855,0,0,0,61,3,3,1,3,3,2019,1,1,10,0,37,42,15,1,0,1,0,7.1113014,7.1113014,0,0,0,0,0,0,0,0,0,0,0,0,5.4050941,0,0,57.16,56.150002,60.290001,52.110001,5,1,1,0,0,8,5,1,391,441836.63,0,0,3763.4849 -13207,16196,29486,-9,29487,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-925.85339,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,148.33333,-3844.0715,0,0,2011.3594 -13207,16196,29487,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,0,4,8.9628735,8.7318468,0,4,0,0,0,-9,0,-986.21063,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,47,57,15,1,1,-9,0,14.451712,14.451712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.450001,62.919998,-9,-9,6,1,1,0,0,7,4,1,148.33333,-3844.0715,0,0,2011.3594 -13207,16196,29488,-9,29487,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-849.63519,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,148.33333,-3844.0715,0,0,2011.3594 -13208,16197,29489,29490,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.8581691,7.7771225,1,0,-9,51,0,-1,-70.838364,0,0,0,74,3,2,3,2,2,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.7098103,7.738441,15.411233,3,44.880001,38.639999,63.650002,35.93,4,1,1,0,0,8,4,1,492.5,1589753.8,0,0,4665.6543 -13208,16197,29490,29489,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,8.384676,7.9277816,1,0,-9,51,0,1,84.777184,0,0,0,73,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2599707,11.328538,3,63.650002,35.93,44.880001,38.639999,6,1,1,0,0,8,4,1,492.5,1589753.8,0,0,4665.6543 -13209,16198,29491,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,3,0,6.507618,6.6779923,3,0,0,0,-9,0,-944.82117,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8643675,0,0,52.310001,40.619999,-9,-9,6,1,1,0,0,6,2,1,294,232751.84,0,0,1658.7933 -13210,16199,29492,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,0,2,8.5318613,8.4930248,0,3,0,0,0,-9,0,-1053.9175,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,28,11,37,0,15,1,1,-9,0,13.280823,13.280823,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,30.969999,30.35,-9,-9,5,1,1,0,0,11,4,1,746,428468.09,0,0,2437.749 -13211,16200,29493,-9,29494,29495,2,1,0,19,2,0,1,0,2,-9,7,2,0,0,3,6.9045396,6.6902471,0,3,0,0,0,-9,0,-1054.6686,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.220001,45.099998,-9,-9,6,1,1,0,1,10,2,0,1456,161098.67,0,0,1239.1401 -13211,16201,29494,29495,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,2,7.7002058,7.5636077,0,2,0,-9,3,0,-6,8.02847,0,0,0,54,2,4,1,2,2,2019,1,4,11,2,38,40,15,1,0,1,0,7.3402696,7.3402696,0,0,0,0,0,0,0,27.5,1,1,0,0,0,39.855236,3,47.419998,46.009998,61.119999,51.57,5,1,1,0,0,10,4,0,861.5,364927.34,0,0,4532.3511 -13211,16201,29495,29494,-9,-9,4,1,1,54,1,0,1,0,2,-9,2,1,0,0,4,9.0695648,8.4342937,0,2,0,-9,3,0,6,.053792007,0,0,0,48,2,2,1,-9,-9,2019,1,1,6,0,43,41,15,1,0,1,0,16.799706,16.799706,0,0,0,0,0,0,0,0,1,1,0,6.0035162,0,0,0,61.119999,51.57,47.419998,46.009998,6,1,1,0,0,10,4,0,861.5,364927.34,0,0,4532.3511 -13212,16202,29496,29497,-9,-9,1,1,0,42,1,0,1,0,2,-9,1,1,0,0,2,7.3012476,7.7467761,0,2,0,-9,26,0,-5,-32.582951,0,0,1,47,2,3,1,3,3,2019,1,2,11,1,22,30,15,1,0,1,0,7.0807314,7.0807314,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.509998,53.529999,62.66,52.400002,4,1,1,0,0,5,2,1,742.5,149339.47,0,0,1044.6158 -13212,16202,29497,29496,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,26,0,5,-89.582649,0,0,0,42,2,2,1,3,3,2019,1,1,8,0,0,43,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9344859,0,0,0,62.66,52.400002,46.509998,53.529999,6,1,1,0,0,5,2,1,742.5,149339.47,0,0,1044.6158 -13213,16203,29498,29499,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,50,0,0,48.539143,0,0,0,75,2,1,3,2,2,2019,4,1,27,8,0,10,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.5107552,0,114.4128,1,31.82,41.93,34.52,27.530001,3,1,1,0,0,4,2,1,564,125651.16,0,0,1422.0444 -13213,16203,29499,29498,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,1,0,6.1542921,6.5869904,1,0,-9,50,0,0,29.402687,0,0,0,75,3,3,3,2,2,2019,4,2,17,6,0,0,15,4,1,4,0,0,0,1,0,.40998822,0,2.8012865,0,0,0,1,1,0,3.7790275,6.3066673,0,0,34.52,27.530001,31.82,41.93,4,1,1,0,0,4,2,1,564,125651.16,0,0,1422.0444 -13214,16204,29500,29501,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,8.0079002,8.0932913,1,0,-9,8,0,-2,150.57124,0,0,0,67,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1045682,8.5036392,0,0,56.77,52.220001,51.91,42.220001,6,1,1,0,0,10,3,1,1459.5,1059428.6,0,0,2852.9946 -13214,16204,29501,29500,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,42,0,2,-46.878979,0,0,0,65,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96690857,0,0,0,51.91,42.220001,56.77,52.220001,5,1,1,0,0,10,3,1,1459.5,1059428.6,0,0,2852.9946 -13215,16205,29502,-9,-9,-9,1,1,0,40,2,0,2,0,1,-9,2,1,0,0,4,8.3567057,8.7351227,0,2,0,-9,13,0,2,-38.604427,0,0,1,-9,-9,-9,-9,2,1,2019,1,2,10,0,41,43,15,1,0,-9,0,11.204909,11.204909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,51.830002,57.200001,6,1,1,0,0,2,4,1,248.33333,127645.55,0,0,1125.4293 -13215,16205,29503,-9,29502,-9,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.9526,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,4,1,248.33333,127645.55,0,0,1125.4293 -13215,16205,29504,-9,29502,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.4518,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,4,1,248.33333,127645.55,0,0,1125.4293 -13215,16206,29505,-9,-9,-9,2,1,0,38,2,0,2,0,1,-9,2,1,0,0,4,7.8919435,7.7089767,0,2,0,-9,13,0,-2,-43.549484,0,0,1,-9,-9,-9,-9,3,3,2019,1,1,7,0,30,20,15,1,0,-9,0,11.398564,11.398564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,54.200001,57.490002,6,1,1,0,0,2,4,1,322,-36158.988,0,0,1126.4506 -13216,16207,29506,29507,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,14,0,4,121.91996,0,0,0,65,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4392562,0,0,0,47.07,53.970001,57.16,56.150002,4,1,1,0,0,10,2,1,345,469475.44,0,0,2743.4719 -13216,16207,29507,29506,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.8839803,7.3366547,1,0,-9,14,0,-4,-41.538197,0,0,0,69,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8432016,0,0,57.16,56.150002,47.07,53.970001,6,1,1,0,0,10,2,1,345,469475.44,0,0,2743.4719 -13217,16208,29508,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-935.44421,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,0,15,4,1,-9,0,0,0,1,7.0389175,0,16.719721,0,0,54.981575,0,1,1,0,0,0,0,0,29.860001,20.5,-9,-9,4,1,1,0,0,13,1,0,787,-52503.645,0,0,2860.2463 -13218,16209,29509,29510,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,3,9.3996153,9.4073162,0,1,0,-9,8,0,6,44.858536,0,0,0,53,1,5,1,3,2,2019,1,2,10,3,45,43,15,1,0,1,0,34.628399,34.628399,0,0,0,0,0,0,0,0,0,0,0,8.8330231,0,0,0,58.32,50.220001,51.73,58.82,6,1,1,0,0,7,5,1,2827,2602750,0,0,8031.6826 -13218,16209,29510,29509,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,5,8.8835649,8.6717625,0,1,0,-9,8,0,-6,-95.058777,0,0,0,59,1,3,1,-9,-9,2019,1,1,7,0,50,60,15,1,0,1,0,18.419897,18.419897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,58.32,50.220001,6,1,1,0,0,7,5,1,2827,2602750,0,0,8031.6826 -13219,16210,29511,29512,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,2,7.7837801,7.7877884,0,1,0,-9,1,-9,0,0,-9,1,1,27,1,3,1,-9,-9,2019,1,1,26,10,40,0,15,1,1,1,0,6.1259727,6.1259727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,42.029999,26.690001,60.830002,3,4,2,0,0,13,4,0,432,98814.031,0,0,1936.09 -13219,16210,29512,29511,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,3,8.1323547,7.9386644,0,1,0,-9,1,-9,0,0,-9,1,0,27,1,2,1,2,2,2019,1,2,14,2,38,0,15,1,0,1,0,7.469913,7.469913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.690001,60.830002,30.42,42.029999,6,1,1,0,0,13,4,0,432,98814.031,0,0,1936.09 -13220,16211,29513,29514,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,4,9.0561438,8.7010975,0,1,0,-9,1,-9,-11,28.569765,-9,0,1,46,1,5,1,-9,-9,2019,1,2,8,0,72,0,15,1,0,1,0,9.2889442,9.2889442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.060001,57.759998,7,1,1,0,0,12,5,1,968,2211965.3,0,0,4873.9756 -13220,16211,29514,29513,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,5,8.6366186,9.0131636,0,1,0,-9,1,-9,11,95.406235,-9,0,0,35,1,4,1,-9,-9,2019,1,1,10,2,37,0,15,1,0,1,0,23.183205,23.183205,0,0,0,0,0,0,0,0,0,0,0,5.4135218,0,0,0,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,12,5,1,968,2211965.3,0,0,4873.9756 -13221,16212,29515,29516,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.9989958,8.9734564,0,2,0,-9,6,0,-4,-1.8038838,0,0,1,44,1,2,1,1,2,2019,1,3,7,1,43,44,15,1,0,1,0,16.251293,16.251293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,41.810001,47.189999,6,1,1,0,0,4,5,1,986.5,1043347.3,0,0,4004.6902 -13221,16212,29516,29515,-9,-9,3,1,1,44,1,0,2,0,1,-9,2,1,0,0,2,8.4969702,8.8271236,0,2,0,-9,6,0,4,-43.800922,0,0,0,40,1,4,1,-9,-9,2019,1,1,24,11,49,55,15,1,1,1,0,16.423746,16.423746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.810001,47.189999,54.200001,57.490002,2,1,1,0,1,4,5,1,986.5,1043347.3,0,0,4004.6902 -13221,16212,29517,-9,29515,29516,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.23914,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,986.5,1043347.3,0,0,4004.6902 -13221,16212,29518,-9,29515,29516,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-958.4906,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,5,1,986.5,1043347.3,0,0,4004.6902 -13222,16213,29519,29520,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,8.4365377,8.371871,0,1,0,-9,2,0,-1,9.2027063,0,0,0,31,1,5,1,1,2,2019,1,2,12,1,58,55,15,1,0,1,0,7.9156508,7.9156508,0,0,0,0,0,0,0,0,0,0,0,1.1632537,0,0,0,46.459999,50.259998,54.099998,59.110001,6,1,1,0,0,2,5,1,492.5,75175.438,0,0,4427.8711 -13222,16213,29520,29519,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,0,5,8.2063913,8.4596519,0,1,0,-9,2,0,1,16.546543,-9,0,1,30,1,4,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,14.863982,14.863982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,46.459999,50.259998,6,1,1,0,0,2,5,1,492.5,75175.438,0,0,4427.8711 -13223,16214,29521,-9,-9,-9,1,1,1,78,2,0,0,0,1,-9,4,3,0,0,3,0,7.1700096,7.5056105,3,0,0,0,-9,0,-879.44397,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,1.5129955,0,0,0,0,59.079269,0,1,1,0,6.2865553,7.1279936,0,0,57.799999,36.709999,-9,-9,5,1,1,0,0,9,3,1,890,376426.28,0,0,552.12048 -13224,16215,29522,29523,-9,-9,3,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.9939146,9.5116634,6.6303473,1,0,-9,6,0,0,-70.770134,0,0,0,52,2,4,1,-9,-9,2019,1,1,8,0,39,40,15,1,0,1,0,27.45673,27.45673,0,0,0,0,0,0,0,0,1,1,0,7.1724234,0,0,0,54.200001,57.490002,52.310001,58.290001,6,1,1,0,0,2,5,1,3956.5,1153831,0,0,5347.3428 -13224,16215,29523,29522,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.7259827,7.6280594,0,1,0,-9,6,0,0,-107.28139,0,0,0,52,2,4,1,2,2,2019,1,3,8,0,30,30,15,1,0,1,0,9.4227667,9.4227667,0,0,0,0,0,0,0,2,1,1,0,0,0,.1445602,3,52.310001,58.290001,54.200001,57.490002,5,1,1,0,0,2,5,1,3956.5,1153831,0,0,5347.3428 -13225,16216,29524,29525,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,1,5,8.5369711,8.5249615,4.5064616,1,0,-9,26,0,-4,89.283592,0,0,0,59,2,3,3,2,2,2019,2,2,10,0,41,44,15,1,0,4,0,17.488277,17.488277,0,0,0,0,0,0,0,7,1,1,0,5.3668451,4.9488912,1.6440878,1,54.099998,59.110001,41.790001,57.73,6,1,1,0,0,2,4,1,407.5,367743.88,0,0,3410.127 -13225,16216,29525,29524,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,1,3,5.8409791,5.8197236,4.4899335,1,0,-9,26,0,4,-15.874209,0,0,0,55,1,5,1,3,2,2019,3,1,9,0,5,10,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5253201,4.7462234,0,0,41.790001,57.73,54.099998,59.110001,6,1,1,0,0,2,4,1,407.5,367743.88,0,0,3410.127 -13226,16217,29526,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.6307526,8.476469,0,3,0,0,0,-9,0,-1012.6262,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,60,48,15,1,0,-9,0,12.417593,12.417593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.490002,52.939999,-9,-9,4,1,1,0,0,6,5,1,167,-253760.84,0,0,2701.9673 -13227,16218,29527,29529,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,4,8.257206,8.0563087,0,2,0,-9,10,0,7,-17.602787,0,0,0,40,1,4,1,-9,-9,2019,1,1,12,1,19,19,15,1,0,1,0,23.696775,23.696775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,44.599998,33.490002,64.260002,5,1,1,0,0,12,5,1,495.33334,614995.88,0,0,4515.313 -13227,16218,29528,-9,29527,29529,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1035.5258,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,5,1,495.33334,614995.88,0,0,4515.313 -13227,16218,29529,29527,-9,-9,1,1,1,40,1,0,1,0,1,-9,2,1,0,0,4,8.9045429,9.3073177,0,2,0,-9,16,0,-7,52.89249,0,0,0,47,1,4,1,2,1,2019,1,2,16,4,45,40,15,1,1,1,0,21.054134,21.054134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.490002,64.260002,52.77,44.599998,5,3,4,0,0,12,5,1,495.33334,614995.88,0,0,4515.313 -13228,16219,29530,29531,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,61,0,1,-98.639465,0,0,0,80,2,4,3,3,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,46.799999,55.75,6,1,1,0,0,11,2,1,484,380843.5,0,0,363.79855 -13228,16219,29531,29530,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,1,4,0,7.004714,7.2956538,1,0,-9,61,0,-1,9.0575466,0,0,0,81,3,3,3,3,3,2019,4,1,9,0,0,7,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.3667994,7.2527399,36.23774,1,46.799999,55.75,52,45,6,1,1,0,0,11,2,1,484,380843.5,0,0,363.79855 -13229,16220,29532,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,9.2003813,9.2782345,3,0,-9,0,-9,0,-954.03937,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8702307,0,0,45.32,54.77,-9,-9,6,1,1,0,0,8,5,1,512,1178016.9,0,0,4397.5435 -13230,16221,29533,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-976.88525,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,6.4712534,0,0,6.7367997,0,30.372734,0,1,1,0,5.4308758,0,0,0,51,46,-9,-9,5,1,1,0,0,4,1,0,209,-79359.438,0,0,265.83456 -13231,16222,29534,29536,-9,-9,2,1,1,25,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,1,0,0,1,0,24,2,1,3,2,2,2019,4,1,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,49.349998,59.639999,28.43,20.959999,6,1,1,0,1,10,1,0,474,-19358.205,0,0,1207.1501 -13231,16222,29535,-9,29536,29534,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-881.95953,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,1,0,474,-19358.205,0,0,1207.1501 -13231,16222,29536,29534,-9,-9,1,1,0,24,1,1,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,-1,0,0,1,1,25,2,4,3,3,3,2019,4,2,27,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.43,20.959999,49.349998,59.639999,2,1,1,0,1,10,1,0,474,-19358.205,0,0,1207.1501 -13232,16223,29537,-9,-9,-9,1,1,0,73,3,0,1,0,3,-9,4,3,0,0,4,0,7.6085539,7.9118638,4,0,0,0,-9,0,-872.96851,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1775589,7.7509518,0,0,61.799999,45.759998,-9,-9,7,1,1,0,0,7,3,1,456,624889.25,0,0,1319.9008 -13233,16224,29538,29539,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,7.5565648,7.409502,0,1,0,-9,37,0,-3,30.016623,0,0,0,56,2,5,1,3,3,2019,1,2,12,0,25,25,15,1,0,1,0,11.214974,11.214974,0,0,0,0,0,0,0,0,0,0,0,.13031065,0,0,0,54.099998,49.389999,54.099998,59.110001,6,1,1,0,0,9,5,1,703,1473941.6,0,0,3218.9851 -13233,16224,29539,29538,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,5,8.5728407,8.540822,0,1,0,-9,8,0,3,133.59793,0,0,0,53,2,3,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,15.182049,15.182049,0,0,0,0,0,0,0,0,0,0,0,1.6498632,0,0,0,54.099998,59.110001,54.099998,49.389999,7,1,1,0,0,9,5,1,703,1473941.6,0,0,3218.9851 -13233,16225,29540,-9,29538,29539,3,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,7.7189755,7.9468923,0,3,0,0,0,-9,0,-1033.9764,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,5,40,36,15,1,1,-9,1,5.7146502,5.7146502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.189999,53.98,-9,-9,3,1,1,0,0,9,3,1,278,62374.57,0,0,932.64606 -13234,16226,29541,29542,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,9.2246771,8.9645863,0,1,0,-9,9,0,3,174.34015,0,0,0,37,1,3,1,-9,-9,2019,1,1,9,2,43,37,15,1,0,1,0,22.873404,22.873404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.369999,52.349998,53.98,42.84,6,1,1,0,0,10,5,1,318,2208806.5,0,0,4999.5273 -13234,16226,29542,29541,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,3,8.3594055,8.269948,0,1,0,-9,9,0,-3,60.123604,0,0,1,40,2,4,1,-9,-9,2019,1,2,9,0,36,35,15,1,0,1,0,13.863065,13.863065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.98,42.84,47.369999,52.349998,6,1,1,0,0,10,5,1,318,2208806.5,0,0,4999.5273 -13235,16227,29543,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,1,3,7.7775145,7.808043,0,3,0,0,0,-9,0,-934.2597,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,43,15,1,0,-9,0,6.4993744,6.4993744,0,0,0,0,0,0,0,0,1,1,0,1.9283818,0,0,0,54.099998,37.189999,-9,-9,5,1,1,0,0,12,3,1,979,-19621.188,0,0,2158.5059 -13236,16228,29544,29545,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,0,3,6.3990569,6.6031809,0,1,0,-9,46,0,2,66.577667,0,0,0,67,1,4,3,2,2,2019,2,1,13,1,7,0,15,1,0,4,0,10.493006,10.493006,0,0,0,0,0,0,0,0,1,1,0,2.8209455,0,0,0,57.09,46.700001,53.959999,50.73,5,1,1,0,0,6,3,1,552.5,820552.38,0,0,7397.5996 -13236,16228,29545,29544,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.0687122,8.3030376,1,0,-9,46,0,-2,-62.04776,0,0,0,69,2,3,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1883221,8.3285542,0,0,53.959999,50.73,57.09,46.700001,6,1,1,0,0,6,3,1,552.5,820552.38,0,0,7397.5996 -13236,16229,29546,-9,29544,29545,3,1,1,33,2,0,0,0,1,-9,2,1,0,0,2,7.8358207,8.0768614,0,3,0,0,0,-9,0,-892.27625,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,35,0,15,1,0,-9,1,9.4836197,9.4836197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.560001,48.93,-9,-9,4,1,1,0,0,6,4,1,398,-108765.79,0,0,1730.1219 -13237,16230,29547,29548,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,5,0,8.1704216,8.0036097,1,0,-9,8,0,0,-45.673149,0,0,0,66,1,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.9172583,67.123085,3,57.060001,57.759998,52,53,6,1,1,0,0,12,4,1,685,4668029.5,0,0,3875.8667 -13237,16230,29548,29547,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.6040297,7.9415417,1,0,-9,44,0,0,-6.0445943,0,0,0,66,1,5,3,3,2,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5811296,7.1747274,9.1836815,3,52,53,57.060001,57.759998,6,1,1,0,0,12,4,1,685,4668029.5,0,0,3875.8667 -13238,16231,29549,29550,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,6.5754013,6.9179096,1,0,-9,40,0,-1,-103.36661,0,0,0,68,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0363765,6.9952841,0,0,54.740002,57.220001,61.43,43.34,6,1,1,0,0,6,3,1,1630.5,1540665.1,0,0,2361.9407 -13238,16231,29550,29549,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,7.4816022,7.1932726,1,0,-9,40,0,1,-13.421675,0,0,0,67,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4834852,7.3524537,0,0,61.43,43.34,54.740002,57.220001,2,1,1,0,0,6,3,1,1630.5,1540665.1,0,0,2361.9407 -13239,16232,29551,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,3,8.5037851,8.9340572,0,3,0,-9,0,-9,0,-937.56427,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,62,0,15,1,0,-9,0,11.032083,11.032083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,2,5,0,149,165257.05,0,0,1635.3186 -13240,16233,29552,29553,-9,-9,2,1,0,51,1,0,1,0,1,-9,1,1,0,0,4,6.4585962,6.2591362,0,2,0,-9,23,0,0,121.58654,0,0,0,51,1,4,1,3,3,2019,1,1,8,1,50,42,15,1,0,1,0,1.1502529,1.1502529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.849998,61.259998,59.529999,56.439999,5,1,1,0,0,13,3,1,1000,1002218.4,0,0,2453.3135 -13240,16233,29553,29552,-9,-9,1,1,1,51,1,0,1,0,1,-9,1,1,0,0,4,8.4432812,8.2377405,0,2,0,-9,25,0,0,-80.035683,-9,0,0,51,1,4,1,2,2,2019,1,2,4,0,60,0,15,1,0,1,0,10.800407,10.800407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,45.849998,61.259998,6,1,1,0,0,13,3,1,1000,1002218.4,0,0,2453.3135 -13240,16234,29554,-9,29552,29553,3,1,0,19,2,0,1,1,2,0,7,2,0,0,4,6.4131446,6.44449,0,3,0,0,0,-9,0,-832.55542,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,3,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,-9,-9,6,1,1,0,0,13,2,1,1048,14384.361,0,0,-229.86319 -13241,16235,29555,29556,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,0,2,0,7.8226833,7.843914,1,0,-9,53,0,5,41.863174,0,0,0,73,2,4,3,-9,2,2019,4,1,24,10,0,0,15,4,1,4,0,0,0,1,0,81.227554,0,0,0,0,0,1,1,0,5.6613779,8.0017214,0,0,27.799999,32.150002,51.240002,58.84,3,1,1,0,0,2,4,1,440,1541676.3,0,0,3375.1616 -13241,16235,29556,29555,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.4448061,7.2763195,1,0,-9,52,0,-5,12.591166,0,0,0,78,1,2,3,-9,2,2019,4,2,13,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.35358,7.6341095,74.637711,1,51.240002,58.84,27.799999,32.150002,4,1,1,0,0,2,4,1,440,1541676.3,0,0,3375.1616 -13242,16236,29557,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,2,7.011168,7.2286863,0,4,0,-9,0,-9,0,-1114.0829,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,19,32,15,1,0,-9,0,6.5176435,6.5176435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,33.470001,-9,-9,5,1,1,0,0,5,2,0,1048,37771.207,0,0,817.65991 -13242,16236,29558,-9,29557,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1154.1306,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,5,2,0,1048,37771.207,0,0,817.65991 -13242,16237,29559,-9,29557,-9,2,1,1,20,2,0,1,0,1,1,2,1,0,0,4,7.1488061,7.1887426,0,3,0,0,0,-9,0,-961.31757,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,31,0,15,1,0,-9,1,5.3133698,5.3133698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.150002,57.459999,-9,-9,4,1,1,0,0,5,3,0,166,223947.47,0,0,-403.14453 -13243,16238,29560,29561,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,8.3147326,8.3454561,0,1,0,-9,8,0,3,-44.981037,0,0,0,45,2,1,1,1,2,2019,1,2,25,11,38,40,15,1,1,1,0,9.4704103,9.4704103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.84,40.040001,25.77,41.139999,3,1,1,0,0,12,4,0,350,386578.88,0,0,2132.3696 -13243,16238,29561,29560,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,1,8.1660872,7.7917213,0,1,0,-9,8,0,-3,39.618565,0,0,0,48,2,3,1,-9,-9,2019,1,1,27,10,37,40,15,1,1,1,0,11.560096,11.560096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.77,41.139999,26.84,40.040001,3,4,5,0,0,12,4,0,350,386578.88,0,0,2132.3696 -13244,16239,29562,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-998.39178,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,40,15,4,0,-9,0,0,0,1,0,0,9.9607401,15.319813,0,0,0,1,1,0,0,0,0,0,38.110001,17.67,-9,-9,5,1,1,0,0,11,1,1,465,-33520.266,0,0,1593.4167 -13245,16240,29563,29564,-9,-9,2,1,1,68,1,0,0,0,2,-9,2,1,0,0,3,8.3314209,8.7417707,7.4771619,1,0,-9,7,0,-2,68.099098,0,0,0,70,1,4,3,-9,-9,2019,2,1,10,1,30,36,15,1,0,4,0,19.387794,19.387794,0,0,0,0,0,0,0,0,1,1,0,4.7048321,7.439198,0,0,52,47,62.490002,55.09,5,4,1,0,0,8,5,1,145.5,2351764,0,0,5327.2793 -13245,16240,29564,29563,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.460546,7.35042,1,0,-9,7,0,2,-42.84798,0,0,0,68,2,3,1,3,3,2019,3,2,3,0,0,36,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1805103,7.2424345,0,0,62.490002,55.09,52,47,7,1,1,0,0,8,5,1,145.5,2351764,0,0,5327.2793 -13246,16241,29565,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,0,3,0,4.6267753,4.3676839,3,0,0,0,-9,0,-863.69501,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3086238,0,0,51,47,-9,-9,5,1,1,0,0,1,1,1,678,278933.59,0,0,30.685747 -13246,16242,29566,-9,29565,-9,2,1,1,43,2,0,0,0,2,-9,2,1,0,0,4,8.1393061,8.2011089,0,3,0,0,0,-9,0,-1065.3835,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,37,37,15,1,0,-9,1,11.65349,11.65349,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.606906,3,54.790001,55.860001,-9,-9,5,1,1,0,0,1,4,1,683,-1179.855,0,0,1073.4557 -13246,16243,29567,-9,29565,-9,3,1,1,39,2,0,0,0,1,-9,2,1,0,0,3,8.5446396,8.8128757,0,3,0,0,0,-9,0,-1036.965,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,43,15,1,0,-9,1,16.219378,16.219378,0,0,0,0,0,0,0,0,1,1,0,4.6001124,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,1,4,1,636,-63654.246,0,0,1957.5889 -13247,16244,29568,29569,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,1,9.4312973,9.2911186,0,1,0,-9,10,0,-24,51.322685,0,0,0,69,2,4,3,2,1,2019,2,2,24,10,37,41,15,1,1,4,0,50.888134,50.888134,0,0,0,0,0,0,0,2,1,1,0,5.2146091,0,0,3,26.93,25.700001,46.09,44.849998,2,1,1,0,0,8,5,1,1173,2350192.8,0,0,4754.3086 -13247,16244,29569,29568,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,5.4931998,5.4639645,1,0,-9,10,0,24,60.157478,0,0,0,45,2,1,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,36.222782,0,0,0,0,0,1,1,0,2.6842365,5.8978443,0,0,46.09,44.849998,26.93,25.700001,6,1,1,0,0,8,5,1,1173,2350192.8,0,0,4754.3086 -13248,16245,29570,29571,-9,-9,1,1,0,65,1,0,0,0,3,-9,2,1,0,0,5,7.1862359,7.5818405,6.2861648,1,0,-9,38,0,3,33.563885,0,0,0,62,3,4,1,3,2,2019,1,2,7,0,16,16,15,1,0,1,0,10.132748,10.132748,0,0,0,0,0,0,0,2,1,1,0,0,6.4356766,3.4802151,3,48.18,54.419998,61.119999,51.57,7,1,1,0,0,2,5,1,711.5,791985.69,0,0,6087.144 -13248,16245,29571,29570,-9,-9,2,1,1,62,1,0,0,0,3,-9,1,1,0,0,4,8.838233,8.8366528,8.221386,1,0,-9,38,0,-3,125.64697,0,0,0,65,3,5,1,3,2,2019,1,1,6,0,40,35,15,1,0,1,0,15.115312,15.115312,0,0,0,0,0,0,0,0,1,1,0,7.6766219,8.136075,0,0,61.119999,51.57,48.18,54.419998,6,1,1,0,0,2,5,1,711.5,791985.69,0,0,6087.144 -13249,16246,29572,29573,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,1,21.27607,0,0,0,70,2,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,50.459999,21.870001,6,1,1,0,0,12,2,0,1135.5,410429.75,0,0,3228.7346 -13249,16246,29573,29572,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,1,1,0,5.5782676,5.6529365,1,0,-9,7,0,-1,39.152351,0,0,0,71,3,3,3,2,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,4.802135,0,0,0,1,1,0,.80266511,5.652122,0,0,50.459999,21.870001,54.959999,53.169998,6,1,1,0,0,12,2,0,1135.5,410429.75,0,0,3228.7346 -13250,16247,29574,29575,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.9151683,8.0647621,1,0,-9,43,0,-2,92.721474,0,0,0,68,1,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7382994,7.8525615,0,0,57.73,54.529999,57.16,56.150002,7,1,1,0,0,8,5,1,285.5,3182620.3,0,0,6127.9614 -13250,16247,29575,29574,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.556448,8.4819136,1,0,-9,8,0,2,49.461491,0,0,0,66,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8060911,8.5798893,0,0,57.16,56.150002,57.73,54.529999,6,1,1,0,0,8,5,1,285.5,3182620.3,0,0,6127.9614 -13251,16248,29576,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,1,1,0,0,4,8.5675659,8.6286182,0,3,0,0,0,-9,0,-1015.8977,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,30,15,1,0,-9,0,16.405813,16.405813,0,0,0,0,0,0,0,0,1,1,0,2.324486,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,4,5,1,363,641948.63,0,0,2592.6167 -13252,16249,29577,29580,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,2,7.907866,7.519629,0,2,0,-9,2,0,-1,13.712846,0,0,0,48,2,4,1,2,1,2019,1,1,14,3,17,17,15,1,0,1,0,11.904626,11.904626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.709999,36.349998,52,55,3,1,1,0,0,4,4,1,969,1144012.3,0,0,3561.0337 -13252,16249,29578,-9,29577,29580,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1138.4524,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,1,969,1144012.3,0,0,3561.0337 -13252,16249,29579,-9,29577,29580,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.0783,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,4,1,969,1144012.3,0,0,3561.0337 -13252,16249,29580,29577,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,8.6689157,8.827734,0,2,0,-9,2,0,1,-21.428102,0,0,0,47,2,2,1,2,2,2019,1,2,9,1,60,45,15,1,0,1,0,13.535824,13.535824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,41.709999,36.349998,6,1,1,0,0,4,4,1,969,1144012.3,0,0,3561.0337 -13253,16250,29581,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,1,0,6.6575503,6.7547936,3,0,0,0,-9,0,-928.30078,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0723653,6.6109591,0,0,61.110001,22.59,-9,-9,5,1,1,0,0,11,2,1,191,229909.78,0,0,1320.2737 -13254,16251,29582,29583,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,5.1488743,4.9091911,1,0,-9,53,0,-4,-17.299366,0,0,0,78,3,1,3,3,3,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,1,1.1975513,0,0,0,0,0,14.5,1,1,0,0,4.6595926,11.024825,1,32.009998,33.200001,25.219999,32.380001,2,1,1,0,1,2,1,1,457,129629.46,0,0,2100.2056 -13254,16251,29583,29582,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,53,0,4,-121.12421,0,0,0,74,3,2,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,17.268848,3.27986,0,0,0,0,0,1,1,0,0,0,0,0,25.219999,32.380001,32.009998,33.200001,2,1,1,0,0,2,1,1,457,129629.46,0,0,2100.2056 -13255,16252,29584,-9,-9,-9,1,1,0,54,2,0,2,0,1,-9,2,1,0,0,3,8.003912,7.7672648,0,4,0,0,0,-9,0,-1122.8812,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,37,15,1,0,-9,0,11.556336,11.556336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,47.630001,-9,-9,4,1,1,0,0,8,3,0,344,781017.19,0,0,1759.1995 -13255,16253,29585,-9,29584,-9,2,1,0,37,2,0,2,0,2,-9,2,1,0,0,2,8.1240835,8.0911484,0,3,0,0,0,-9,0,-1072.6124,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,31,29,15,1,1,-9,1,13.1944,13.1944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.559999,56.169998,-9,-9,3,4,2,0,0,8,4,0,352.66666,99309.656,0,0,1260.0137 -13255,16253,29586,-9,29585,-9,5,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-994.81616,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,4,0,352.66666,99309.656,0,0,1260.0137 -13255,16253,29587,-9,29585,-9,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-932.68353,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,4,0,352.66666,99309.656,0,0,1260.0137 -13256,16254,29588,-9,-9,-9,1,1,0,71,2,0,0,0,1,-9,4,3,0,0,3,0,7.4185667,6.9898605,3,0,0,0,-9,0,-930.83124,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9901991,7.3769932,0,0,48.209999,50.73,-9,-9,4,1,1,0,0,9,3,1,612,375782.22,0,0,1990.7666 -13257,16255,29589,29590,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,2,7.8914437,8.4614391,6.5591969,2,0,-9,4,0,-13,3.7949872,0,0,0,58,3,3,1,3,3,2019,1,3,12,0,41,38,15,1,0,1,0,8.2877283,8.2877283,0,0,0,0,0,0,0,0,1,1,0,7.1580482,0,0,0,34.630001,52.23,61.040001,39.41,5,1,1,0,0,6,5,1,656.5,592630.31,0,0,4664.3364 -13257,16255,29590,29589,-9,-9,3,1,1,58,1,0,1,0,3,-9,2,1,0,0,3,8.7575436,8.4818716,0,2,0,-9,4,0,13,-19.128023,0,0,0,45,2,2,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,10.03933,10.03933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.040001,39.41,34.630001,52.23,4,1,1,0,0,6,5,1,656.5,592630.31,0,0,4664.3364 -13258,16256,29591,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,1,4,0,8.0384407,8.1153727,3,0,0,0,-9,0,-974.19623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.3767595,8.2721777,77.617256,3,57.16,56.150002,-9,-9,2,1,1,0,0,8,4,1,342,1134486.4,0,0,3399.812 -13259,16257,29592,29593,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,59,0,-2,-5.4779825,0,0,0,82,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,2.9874227,0,0,0,0,0,1,1,0,3.5240698,0,0,0,52,45,54,45,6,1,1,0,0,12,2,1,453,179251.42,0,0,2498.1594 -13259,16257,29593,29592,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,7.2666678,7.213943,1,0,-9,59,0,2,73.207649,0,0,0,80,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,3.32515,0,0,0,1,1,0,2.9996586,6.8482385,0,0,54,45,52,45,6,1,1,0,0,12,2,1,453,179251.42,0,0,2498.1594 -13260,16258,29594,29595,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,4.2190733,4.0344996,1,0,-9,44,0,-4,-7.3875208,0,0,0,70,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7040324,4.3216033,0,0,60.119999,54.799999,60.119999,54.799999,7,1,1,0,0,9,4,1,653.5,1497040.1,0,0,9040.5742 -13260,16258,29595,29594,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.5954742,8.427989,1,0,-9,44,0,4,31.292719,0,0,0,66,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.822278,8.5750465,0,0,60.119999,54.799999,60.119999,54.799999,7,1,1,0,0,9,4,1,653.5,1497040.1,0,0,9040.5742 -13261,16259,29596,-9,-9,-9,1,1,0,53,3,0,1,0,3,-9,2,1,0,0,2,7.2547069,7.1890297,0,4,0,0,0,-9,0,-999.73999,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,20,16,15,1,0,-9,0,6.6453238,6.6453238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.57,29.01,-9,-9,3,1,1,0,0,11,2,0,580,-26260.604,0,0,1458.6343 -13262,16260,29597,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,2,8.4922848,8.6593819,0,3,0,0,0,-9,0,-990.06372,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,50,38,15,1,0,-9,0,17.71036,17.71036,0,0,0,0,0,0,0,7,0,0,0,0,0,2.8568382,3,62.810001,26.6,-9,-9,5,1,1,0,0,13,5,1,210,43379.773,0,0,1678.5221 -13263,16261,29598,29599,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.6750169,7.3497028,0,1,0,-9,34,0,-2,-111.86817,0,0,0,57,2,5,1,2,2,2019,1,2,12,3,18,18,15,1,0,1,0,10.262564,10.262564,0,0,0,0,0,0,0,0,0,0,0,8.891983,0,0,0,44.029999,38.349998,54.5,49.470001,6,1,1,0,0,9,5,1,712.5,697276.5,0,0,4493.2803 -13263,16261,29599,29598,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,5,9.1928053,9.102973,0,1,0,-9,37,0,2,-58.883156,0,0,0,55,2,3,1,2,2,2019,1,1,7,1,41,35,15,1,0,1,0,34.745522,34.745522,0,0,0,0,0,0,0,0,0,0,0,6.8630934,0,0,0,54.5,49.470001,44.029999,38.349998,6,1,1,0,0,9,5,1,712.5,697276.5,0,0,4493.2803 -13264,16262,29600,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,4.8431907,5.1067543,3,0,0,0,-9,0,-1064.5447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.5112348,0,0,53.98,50.869999,-9,-9,7,1,1,0,0,1,2,1,134,-68148.203,0,0,1723.7513 -13265,16263,29601,29602,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,8.7843666,8.6965218,0,1,0,-9,18,0,1,54.570782,0,0,0,54,1,4,1,2,2,2019,1,1,10,2,55,47,15,1,0,1,0,15.651761,15.651761,0,0,0,0,0,0,0,0,0,0,0,1.0820017,0,0,0,48.279999,60.18,46.5,58.259998,6,1,1,0,0,10,5,1,1140.5,921062,0,0,2695.4995 -13265,16263,29602,29601,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.1553812,8.0046186,0,1,0,-9,17,0,-1,58.075493,0,0,0,55,1,4,1,2,1,2019,1,2,8,0,35,37,15,1,0,1,0,11.113599,11.113599,0,0,0,0,0,0,0,0,0,0,0,.59526348,0,0,0,46.5,58.259998,48.279999,60.18,5,1,1,0,0,10,5,1,1140.5,921062,0,0,2695.4995 -13266,16264,29603,29604,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,3,7.4030504,7.3633862,0,1,0,-9,7,0,-2,111.22461,0,0,0,50,2,4,1,3,2,2019,1,1,11,0,38,40,15,1,0,1,0,3.1532047,3.1532047,0,0,0,0,0,0,0,0,0,0,0,8.0281754,0,0,0,56.5,48.330002,54.790001,55.860001,4,1,1,0,0,9,3,0,1004,414554.81,0,0,2351.3777 -13266,16264,29604,29603,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,0,4,7.6812434,7.3788204,0,1,0,-9,7,0,2,-97.481331,0,0,0,48,3,3,1,2,2,2019,1,2,9,0,30,37,15,1,0,1,0,7.4462137,7.4462137,0,0,0,0,0,0,0,0,0,0,0,2.4350803,0,0,0,54.790001,55.860001,56.5,48.330002,6,1,1,0,0,9,3,0,1004,414554.81,0,0,2351.3777 -13266,16265,29605,-9,29604,29603,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.0329494,8.1328287,0,3,0,0,0,-9,0,-986.96124,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,43,43,15,1,0,-9,1,6.8117394,6.8117394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,0,484,-100234.52,0,0,1687.6796 -13267,16266,29606,29607,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,0,3,0,7.7691941,8.127327,1,0,-9,54,0,1,90.641251,0,0,0,73,1,4,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7036004,7.7005272,0,0,62.18,36.18,57.16,56.150002,6,1,1,0,0,4,4,1,1397.5,1561289.8,0,0,2566.7629 -13267,16266,29607,29606,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,8.1157341,8.1957035,1,0,-9,54,0,-1,-72.576828,0,0,0,74,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7631421,7.9546037,0,0,57.16,56.150002,62.18,36.18,7,1,1,0,0,4,4,1,1397.5,1561289.8,0,0,2566.7629 -13268,16267,29608,29609,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,0,4,0,7.6200247,7.6236334,1,0,-9,48,0,8,62.022964,0,0,0,75,2,4,3,3,2,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5369885,7.8876171,0,0,59.139999,52.5,54.200001,57.490002,7,1,1,0,0,9,3,1,1567,1093109.1,0,0,3153.0029 -13268,16267,29609,29608,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,6.6975937,6.639945,1,0,-9,48,0,-8,-10.883901,0,0,0,83,3,4,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5195837,6.594378,0,0,54.200001,57.490002,59.139999,52.5,7,1,1,0,0,9,3,1,1567,1093109.1,0,0,3153.0029 -13269,16268,29610,29611,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,8.597928,8.5033054,0,2,0,-9,10,0,1,26.997202,0,0,0,44,2,3,1,3,3,2019,1,2,7,0,38,40,15,1,0,1,0,15.864911,15.864911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,42.119999,49.349998,5,1,1,0,0,9,4,1,851.66669,236013.72,0,0,2716.5476 -13269,16268,29611,29610,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,7.6137028,7.3224807,0,2,0,-9,10,0,-1,77.854309,0,0,1,45,2,4,1,2,3,2019,1,1,22,10,35,26,15,1,1,1,0,3.902004,3.902004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.119999,49.349998,51.830002,57.200001,3,4,2,0,0,9,4,1,851.66669,236013.72,0,0,2716.5476 -13269,16268,29612,-9,29611,29610,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.8054,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,851.66669,236013.72,0,0,2716.5476 -13270,16269,29613,29614,-9,-9,1,1,1,62,1,0,0,0,2,1,4,3,0,0,2,0,7.8978095,7.7996225,1,0,-9,36,0,3,-1.8254097,-9,0,0,59,2,3,1,3,3,2019,3,2,20,7,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5959482,7.9620934,0,0,29.200001,40.860001,52.310001,25.68,6,1,1,0,0,6,3,1,1762,200812.86,0,0,1834.0306 -13270,16269,29614,29613,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,0,3,6.5284958,6.4984021,0,1,0,-9,36,0,-3,-30.341364,0,0,0,62,2,2,3,2,2,2019,2,1,11,0,10,12,15,1,0,4,0,7.3732872,7.3732872,0,0,0,0,0,0,0,14.5,1,1,0,4.6605101,0,14.532523,3,52.310001,25.68,29.200001,40.860001,3,1,1,0,0,6,3,1,1762,200812.86,0,0,1834.0306 -13271,16270,29615,29616,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,8.3079309,8.0952616,1,0,-9,9,0,2,-48.844906,0,0,0,62,2,2,1,3,3,2019,3,2,8,0,0,46,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.990849,8.2560797,6.3759599,3,50.959999,45.549999,27.139999,44.639999,6,1,1,0,0,5,4,1,1037,175850.25,0,0,2909.668 -13271,16270,29616,29615,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,1,2,6.9397159,7.1731286,4.2132993,1,0,-9,9,0,-2,-46.374744,0,0,0,64,2,3,3,3,3,2019,2,1,22,9,21,26,15,1,1,4,0,8.8933954,8.8933954,0,0,0,0,0,0,0,14.5,1,1,0,0,4.4379792,17.251904,3,27.139999,44.639999,50.959999,45.549999,4,1,1,0,0,5,4,1,1037,175850.25,0,0,2909.668 -13272,16271,29617,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,4,8.0656185,8.1582031,0,3,0,0,0,-9,0,-994.42914,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,40,40,15,1,0,-9,0,8.8038301,8.8038301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.330002,47.360001,-9,-9,2,1,1,0,0,12,3,0,384,11040.673,0,0,772.4212 -13272,16272,29618,-9,29617,-9,2,1,0,19,2,0,0,0,2,1,2,1,0,1,5,6.9766774,6.5835767,0,3,0,0,0,-9,0,-953.52661,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,18,0,15,1,0,-9,1,6.2152362,6.2152362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.349998,57.84,-9,-9,6,1,1,0,0,12,2,0,649,65004.02,0,0,2540.6904 -13273,16273,29619,29620,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,7.902688,8.091032,5.3441329,1,0,-9,6,0,10,48.240597,0,0,0,50,3,3,1,3,3,2019,1,2,13,1,42,14,15,1,0,1,0,7.1170831,7.1170831,0,0,0,0,0,0,0,0,0,0,0,5.9383841,5.4975224,0,0,45.150002,57.459999,57.330002,53.459999,6,1,1,0,0,11,4,1,1007.5,760667.63,0,0,3100.623 -13273,16273,29620,29619,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,0,3,8.2630148,8.5366411,0,1,0,-9,6,0,-10,-173.61043,0,0,0,60,2,4,1,2,2,2019,1,1,6,0,51,22,15,1,0,1,0,8.8515453,8.8515453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,45.150002,57.459999,6,1,1,0,0,11,4,1,1007.5,760667.63,0,0,3100.623 -13274,16274,29621,29623,-9,-9,1,1,1,36,1,0,2,0,3,-9,1,1,0,0,4,8.4836884,8.3736563,0,2,0,-9,12,-9,2,3.7835984,-9,0,0,34,2,4,1,3,3,2019,1,2,10,1,30,0,15,1,0,1,0,19.077518,19.077518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,49.66,55.68,5,2,3,0,0,4,3,0,1103,-14852.193,0,0,3211.3252 -13274,16274,29622,-9,29623,29621,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-932.71075,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,3,0,1103,-14852.193,0,0,3211.3252 -13274,16274,29623,29621,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,0,4,6.0013628,6.2719226,0,2,0,-9,12,-9,-2,157.81096,-9,0,1,36,3,4,1,3,3,2019,1,1,5,1,28,0,15,1,0,1,0,1.8739271,1.8739271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.66,55.68,51,57,6,2,3,0,0,4,3,0,1103,-14852.193,0,0,3211.3252 -13274,16274,29624,-9,29623,29621,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-996.25922,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,3,0,1103,-14852.193,0,0,3211.3252 -13275,16275,29625,-9,29626,29628,3,1,0,17,2,0,2,0,2,1,3,3,0,0,3,0,0,0,2,0,0,0,-9,0,-900.55817,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0100162,0,0,0,42,54,-9,-9,4,1,1,1,0,9,2,1,1452,342791.5,0,0,1522.2181 -13275,16275,29626,29628,-9,-9,1,1,0,50,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,20,0,-10,84.416931,0,0,0,60,3,5,1,3,3,2019,3,2,19,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.35,55.959999,62.389999,56.709999,5,1,1,0,0,9,2,1,1452,342791.5,0,0,1522.2181 -13275,16275,29627,-9,29626,29628,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1095.1531,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,9,2,1,1452,342791.5,0,0,1522.2181 -13275,16275,29628,29626,-9,-9,2,1,1,60,1,0,2,0,3,-9,2,1,0,0,5,8.0508528,8.1203594,0,2,0,-9,20,0,10,-153.50446,0,0,0,50,3,3,3,-9,-9,2019,2,1,6,0,36,0,15,1,0,3,0,9.4675999,9.4675999,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,25.35,55.959999,7,1,1,0,0,9,2,1,1452,342791.5,0,0,1522.2181 -13276,16276,29629,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,2,0,5.7745066,5.8813539,3,0,0,0,-9,0,-1001.7891,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4680023,5.7289801,0,0,54.169998,24.17,-9,-9,5,1,1,0,0,1,2,1,309,394341.94,0,0,640.12372 -13277,16277,29630,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,7.9658914,8.4362421,0,3,0,0,0,-9,0,-1082.2781,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,12,39,37,15,1,1,-9,0,11.887393,11.887393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.220001,49.650002,-9,-9,3,1,1,0,0,9,4,1,485,418041.81,0,0,372.67844 -13278,16278,29631,29632,-9,-9,2,1,0,57,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,37,0,-1,144.17039,0,0,0,58,2,4,1,3,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.830002,14.54,49.459999,56.91,5,1,1,0,0,11,4,1,852.5,935515.44,0,0,1657.8722 -13278,16278,29632,29631,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.4220343,8.3252563,0,1,0,-9,37,0,1,62.996632,0,0,0,57,2,1,3,3,2,2019,2,2,7,0,46,44,15,1,0,3,0,9.8557043,9.8557043,0,0,0,0,0,0,0,2,1,1,0,0,0,7.2659974,2,49.459999,56.91,48.830002,14.54,6,1,1,0,0,11,4,1,852.5,935515.44,0,0,1657.8722 -13278,16279,29633,-9,29631,29632,4,1,0,31,2,0,0,0,1,-9,2,1,0,1,2,7.2978392,7.4201708,0,3,0,0,0,-9,0,-1006.3189,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,5,25,0,15,1,1,-9,1,7.7320733,7.7320733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.719999,46.889999,-9,-9,4,1,1,0,0,11,3,1,138,129283.62,0,0,2085.1411 -13279,16280,29634,-9,29637,29636,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.32343,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,881.5,378406.84,0,0,7652.7642 -13279,16280,29635,-9,29637,29636,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.6576,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,5,1,881.5,378406.84,0,0,7652.7642 -13279,16280,29636,29637,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,0,3,9.0101805,8.8083849,0,2,0,-9,30,0,5,-54.173401,0,0,0,50,1,5,1,2,2,2019,1,1,10,0,40,39,15,1,0,1,0,24.321928,24.321928,0,0,0,0,0,0,0,0,0,0,0,6.6309004,0,0,0,59.880001,48.200001,33.630001,64.610001,6,1,1,0,0,10,5,1,881.5,378406.84,0,0,7652.7642 -13279,16280,29637,29636,-9,-9,1,1,0,50,1,0,2,0,1,-9,2,1,0,0,5,10.020349,9.4000282,4.5646377,2,0,-9,30,0,-5,-116.61487,0,0,0,55,1,3,1,2,2,2019,1,2,11,0,53,46,15,1,0,1,0,44.382668,44.382668,0,0,0,0,0,0,0,0,0,0,0,6.6414971,0,0,0,33.630001,64.610001,59.880001,48.200001,6,1,1,0,0,10,5,1,881.5,378406.84,0,0,7652.7642 -13280,16281,29638,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,4,0,7.0476084,6.8932171,3,0,-9,0,-9,0,-980.82928,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,.063902475,0,0,1,1,0,0,6.906002,0,0,62.009998,36.16,-9,-9,6,1,1,0,0,9,2,1,1759,343231.13,0,0,75.493416 -13281,16282,29639,29640,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.9329071,8.7561436,0,1,0,-9,3,0,-3,53.716782,0,0,1,35,2,5,1,-9,-9,2019,1,1,7,0,56,60,15,1,0,1,0,12.128355,12.128355,0,0,0,0,0,0,0,0,0,0,0,7.7551265,0,0,0,51.240002,58.84,57.060001,57.759998,6,1,1,0,0,10,5,1,689.5,201112.09,0,0,4975.8154 -13281,16282,29640,29639,-9,-9,1,1,1,35,1,0,0,0,2,-9,1,1,0,0,5,8.6251888,8.4309034,0,1,0,-9,3,0,3,22.872869,0,0,0,32,1,4,1,-9,-9,2019,1,2,4,0,55,50,15,1,0,1,0,10.667127,10.667127,0,0,0,0,0,0,0,0,0,0,0,.24021691,0,0,0,57.060001,57.759998,51.240002,58.84,6,1,1,0,0,10,5,1,689.5,201112.09,0,0,4975.8154 -13282,16283,29641,-9,29642,29643,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1022.6285,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,5,4,0,846.5,520490.09,0,0,2968.8518 -13282,16283,29642,29643,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,5,8.008419,8.1733551,0,2,0,-9,15,0,-1,94.713234,0,0,1,41,1,4,1,3,3,2019,1,2,7,0,16,40,15,1,0,1,0,29.987423,29.987423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.380001,53.470001,74.940002,27.58,6,2,3,0,0,5,4,0,846.5,520490.09,0,0,2968.8518 -13282,16283,29643,29642,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,7.7432299,7.5427928,0,2,0,-9,15,0,1,-67.624756,0,0,0,40,1,5,1,2,2,2019,1,1,5,0,35,35,15,1,0,1,0,8.7258768,8.7258768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74.940002,27.58,63.380001,53.470001,6,2,3,0,0,5,4,0,846.5,520490.09,0,0,2968.8518 -13282,16283,29644,-9,29642,29643,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.64777,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,5,4,0,846.5,520490.09,0,0,2968.8518 -13283,16284,29645,-9,29649,29646,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.69781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,4,0,781.59998,342418.56,0,0,3146.1309 -13283,16284,29646,29649,-9,-9,4,1,1,40,1,0,2,0,2,-9,2,1,0,0,3,8.7311964,8.1281166,5.2648411,2,0,-9,7,0,0,56.457268,0,0,0,40,2,3,1,-9,-9,2019,1,1,11,0,48,45,15,1,0,1,0,10.040039,10.040039,0,0,0,0,0,0,0,0,1,1,0,5.3525882,0,0,0,53.139999,51.279999,46.220001,50.630001,5,1,1,0,0,9,4,0,781.59998,342418.56,0,0,3146.1309 -13283,16284,29647,-9,29649,29646,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.3422,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,0,781.59998,342418.56,0,0,3146.1309 -13283,16284,29648,-9,29649,29646,2,1,0,16,2,0,2,0,2,-9,2,2,0,0,5,5.2790771,5.0794311,0,2,0,0,0,-9,0,-1146.1338,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.299999,58.970001,-9,-9,6,1,1,0,0,9,4,0,781.59998,342418.56,0,0,3146.1309 -13283,16284,29649,29646,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,0,3,6.9076896,6.8056989,0,2,0,-9,7,0,0,-26.359259,0,0,1,40,2,3,1,3,-9,2019,1,4,12,0,10,5,15,1,0,1,0,9.7202692,9.7202692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.220001,50.630001,53.139999,51.279999,6,1,1,0,0,9,4,0,781.59998,342418.56,0,0,3146.1309 -13284,16285,29650,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,3,7.6940188,7.7742767,6.222991,3,0,-9,0,-9,0,-940.01807,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,33,0,15,1,1,-9,0,7.0225859,7.0225859,0,0,0,0,0,0,0,0,0,0,0,6.9963822,6.0950627,0,0,7.77,61.040001,-9,-9,3,1,1,0,0,7,3,1,641,35362.242,0,0,1959.9725 -13285,16286,29651,29652,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.8287325,7.5652695,1,0,-9,42,0,-2,-22.753736,0,0,0,66,2,3,1,2,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.460804,8.0900688,0,0,57.16,56.150002,58.32,50.220001,6,1,1,0,0,5,4,1,738.5,2620170,0,0,3773.7544 -13285,16286,29652,29651,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,3,6.738399,7.7892962,7.4483204,1,0,-9,42,0,2,169.91049,0,0,0,64,1,4,3,3,3,2019,2,2,6,0,16,15,15,1,0,4,0,5.8747411,5.8747411,0,0,0,0,0,0,0,0,1,1,0,1.1159077,7.6102486,0,0,58.32,50.220001,57.16,56.150002,7,1,1,0,0,5,4,1,738.5,2620170,0,0,3773.7544 -13286,16287,29653,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,0,2,7.3897519,7.1156054,0,4,0,0,0,-9,0,-1019.1475,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,19,18,15,1,0,-9,0,7.9529324,7.9529324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.16,30.52,-9,-9,4,2,3,0,0,6,2,1,1385,94790.031,0,0,2038.9658 -13286,16287,29654,-9,29653,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-919.73218,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,2,3,0,0,6,2,1,1385,94790.031,0,0,2038.9658 -13286,16287,29655,-9,29653,-9,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1025.1895,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,6,2,1,1385,94790.031,0,0,2038.9658 -13286,16288,29656,-9,29653,-9,2,1,1,19,2,0,2,0,2,-9,11,3,0,0,5,7.1926904,6.8922915,0,3,0,0,0,-9,0,-1003.8311,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,18,12,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,4,2,0,0,6,2,1,2966,115307.46,0,0,736.3905 -13287,16289,29657,29658,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,2,0,7.2894669,7.6045952,1,0,-9,10,0,-3,46.927986,0,0,0,68,3,4,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.9568467,7.3170128,5.4496751,3,55.950001,36.700001,47.610001,49.380001,3,1,1,0,0,8,3,1,723.5,1711734,0,0,3495.6172 -13287,16289,29658,29657,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,6.303575,6.2962775,1,0,-9,43,0,3,-40.905861,0,0,0,65,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3699985,6.6738696,8.0662708,3,47.610001,49.380001,55.950001,36.700001,7,1,1,0,0,8,3,1,723.5,1711734,0,0,3495.6172 -13288,16290,29659,29660,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,0,3,8.4604616,8.2971611,0,1,0,-9,23,0,1,-155.33095,0,0,0,48,2,4,1,2,-9,2019,1,2,15,2,30,40,15,1,0,1,0,19.578728,19.578728,0,0,0,0,0,0,0,2,1,1,0,0,0,3.2245674,3,44.080002,28.549999,52.23,55.599998,6,1,1,0,0,1,4,1,521,57746.852,0,0,4940.0342 -13288,16290,29660,29659,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,0,4,7.3965592,7.4319682,0,1,0,-9,7,0,-1,-37.186077,0,0,0,49,2,3,1,2,2,2019,1,1,8,0,50,55,15,1,0,1,0,3.4371209,3.4371209,0,0,0,0,0,0,0,2,1,1,0,0,0,3.6583655,3,52.23,55.599998,44.080002,28.549999,6,1,1,0,0,1,4,1,521,57746.852,0,0,4940.0342 -13289,16291,29661,29662,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,5.9171576,6.1653366,1,0,-9,7,0,10,-9.7939167,0,0,0,69,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.783443,6.3609586,0,0,62.029999,41.709999,49.43,46.560001,7,1,1,0,0,7,2,1,1022.5,431781.31,0,0,2355.3662 -13289,16291,29662,29661,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-10,-49.225918,0,0,0,79,3,3,3,3,2,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.70628268,0,0,0,49.43,46.560001,62.029999,41.709999,3,1,1,0,0,7,2,1,1022.5,431781.31,0,0,2355.3662 -13290,16292,29663,-9,29664,29667,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.50739,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,3,1,361.39999,351014.66,0,0,2834.0332 -13290,16292,29664,29667,-9,-9,2,1,0,34,1,0,3,0,2,-9,2,1,0,0,3,8.2083826,8.0217028,0,2,0,-9,16,0,-5,36.23307,0,0,1,39,2,3,1,3,3,2019,1,1,14,4,50,49,15,1,1,1,0,7.5312037,7.5312037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.85,41.82,57.330002,53.459999,5,2,3,0,0,2,3,1,361.39999,351014.66,0,0,2834.0332 -13290,16292,29665,-9,29664,29667,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.89716,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,3,1,361.39999,351014.66,0,0,2834.0332 -13290,16292,29666,-9,29664,29667,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,3,1,361.39999,351014.66,0,0,2834.0332 -13290,16292,29667,29664,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,0,3,7.8277392,7.7943377,0,2,0,-9,16,0,5,1.7842611,0,0,0,34,2,3,1,3,3,2019,1,2,12,0,40,45,15,1,0,1,0,6.1516237,6.1516237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,28.85,41.82,6,2,3,0,0,2,3,1,361.39999,351014.66,0,0,2834.0332 -13291,16293,29668,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,2,8.2801561,7.9462819,0,3,0,0,0,-9,0,-889.33527,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,11,0,23,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.74,51.490002,-9,-9,3,1,1,0,0,2,4,1,1179,160128.75,0,0,1462.1421 -13292,16294,29669,29670,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.7510862,5.4096732,1,0,-9,9,0,-1,-92.577713,0,0,0,73,2,4,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1778636,0,0,0,54.959999,53.169998,61.68,49.950001,6,1,1,0,0,11,4,1,1478,685596.81,0,0,5187.1626 -13292,16294,29670,29669,-9,-9,1,1,0,73,1,0,0,0,2,-9,1,1,0,0,4,7.2038918,8.8634319,8.7883816,1,0,-9,9,0,1,-38.270325,0,0,0,72,2,3,3,2,2,2019,2,2,9,0,10,13,15,1,0,4,0,14.50494,14.50494,0,0,0,0,0,0,0,2,1,1,0,2.7802131,8.610034,0,3,61.68,49.950001,54.959999,53.169998,6,1,1,0,0,11,4,1,1478,685596.81,0,0,5187.1626 -13293,16295,29671,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,1,2,0,6.9982948,7.2444787,3,0,0,0,-9,0,-1084.1492,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.0757337,7.2845545,0,0,33.490002,29.6,-9,-9,3,1,1,0,0,10,2,0,300,494347.38,0,0,1524.5811 -13294,16296,29672,29673,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,2,7.3007288,7.3509498,0,1,0,-9,6,0,3,-32.587795,0,0,0,54,3,3,1,3,3,2019,1,2,8,0,28,0,15,1,0,1,0,7.0448408,7.0448408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.68,53.73,61.549999,39.16,7,1,1,0,0,5,3,1,400,207856.09,0,0,2383.6064 -13294,16296,29673,29672,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,3,7.6540856,7.6361604,0,1,0,-9,6,0,-3,21.906607,0,0,0,57,2,2,1,2,3,2019,1,1,5,0,38,32,15,1,0,1,0,6.921473,6.921473,0,0,0,0,0,0,0,0,0,0,0,.14806342,0,0,0,61.549999,39.16,48.68,53.73,6,1,1,0,0,5,3,1,400,207856.09,0,0,2383.6064 -13295,16297,29674,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,3,7.8568778,8.1312952,0,1,0,-9,4,0,3,68.458336,0,0,0,-9,-9,-9,-9,-9,-9,2019,2,2,8,0,36,37,15,1,0,-9,0,8.9872551,8.9872551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,55.57,62.490002,55.09,4,1,1,0,1,4,3,1,574,34420.125,0,0,1346.0375 -13295,16298,29675,-9,-9,-9,2,1,1,32,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,1,0,-9,4,0,-3,103.71918,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,6,0,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,46.669998,55.57,5,1,1,1,1,4,3,1,268,0,0,0,0 -13296,16299,29676,29677,-9,-9,2,1,0,52,1,0,0,0,3,-9,97,3,0,0,2,0,0,0,1,0,-9,1,-9,3,-41.82502,-9,0,0,49,2,3,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7992787,0,0,0,39.700001,42.84,39.900002,49.389999,4,1,1,0,0,6,4,1,1033,497026,0,0,2789.415 -13296,16299,29677,29676,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.6457882,8.8279486,0,1,0,-9,1,-9,-3,-88.093094,-9,0,0,52,3,2,3,3,3,2019,2,2,11,0,45,0,15,1,0,3,0,13.585121,13.585121,0,0,0,0,0,0,0,0,0,0,0,6.6369629,0,0,0,39.900002,49.389999,39.700001,42.84,5,1,1,0,0,6,4,1,1033,497026,0,0,2789.415 -13297,16300,29678,29679,-9,-9,1,1,0,33,1,1,1,0,1,-9,1,1,0,0,4,6.8633847,6.754169,0,2,0,-9,6,0,1,39.535789,0,0,1,32,1,4,1,-9,-9,2019,1,2,18,6,10,10,15,1,1,1,0,10.81488,10.81488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.339996,50,57,5,1,1,0,0,2,4,1,832,-15853.54,0,0,2995.0417 -13297,16300,29679,29678,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,0,4,8.4979982,8.6754103,0,2,0,-9,6,0,-1,47.962162,0,0,0,33,1,4,1,-9,-9,2019,1,1,10,1,38,38,15,1,0,1,0,15.831758,15.831758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,30.77,64.339996,5,1,1,0,0,2,4,1,832,-15853.54,0,0,2995.0417 -13297,16300,29680,-9,29678,29679,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.9811,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,832,-15853.54,0,0,2995.0417 -13298,16301,29681,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,2,1,0,0,4,7.9039516,7.8478527,0,3,0,0,0,-9,0,-1039.8323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,36,36,15,1,0,-9,0,8.1888752,8.1888752,0,0,0,0,0,0,0,0,0,0,0,4.0697985,0,0,0,43.419998,62.330002,-9,-9,6,1,1,0,0,7,4,0,617,109774.51,0,0,312.54486 -13299,16302,29682,29683,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,0,4,8.2173967,8.6918507,7.8245034,1,0,-9,28,0,2,-10.725578,0,0,0,55,2,5,1,3,2,2019,1,1,10,0,25,25,15,1,0,1,0,12.992503,12.992503,0,0,0,0,0,0,0,0,0,0,0,0,7.4470201,0,0,62.369999,48.349998,54.099998,59.110001,6,1,1,0,0,6,5,1,384,628952.75,0,0,4165.2402 -13299,16302,29683,29682,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,5,8.4791517,8.0393229,0,1,0,-9,28,0,-2,-76.670418,0,0,0,57,3,4,1,3,3,2019,1,2,9,0,23,24,15,1,0,1,0,15.448684,15.448684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,62.369999,48.349998,6,1,1,0,0,6,5,1,384,628952.75,0,0,4165.2402 -13300,16303,29684,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,1,1,0,0,4,7.7679672,7.6528888,0,3,0,0,0,-9,0,-967.00165,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,13,15,1,0,-9,0,22.33502,22.33502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,3,0,231,-87993.938,0,0,1248.1224 -13300,16304,29685,-9,29684,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,8.0080271,8.1412306,0,3,0,0,0,-9,0,-991.50189,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,50,0,15,1,0,-9,1,8.5017633,8.5017633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.880001,49.060001,-9,-9,4,1,1,0,0,9,4,0,1441,-27009.127,0,0,1462.6658 -13301,16305,29686,29687,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,6.4304352,6.2482491,1,0,-9,51,0,-1,-23.198685,0,0,0,74,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3313808,0,0,53,47,51,46,6,1,1,0,0,13,2,1,285,211080.59,0,0,2110.0576 -13301,16305,29687,29686,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,1,-59.324993,0,0,0,73,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7847548,0,0,0,51,46,53,47,5,1,1,0,0,13,2,1,285,211080.59,0,0,2110.0576 -13302,16306,29688,29689,-9,-9,1,1,0,34,1,0,3,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,14,0,-5,29.79447,0,0,1,39,2,5,1,3,-9,2019,1,2,36,12,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.099998,39.630001,40.130001,62.93,1,2,3,0,1,4,2,1,1037.3334,12885.706,0,0,545.36951 -13302,16306,29689,29688,-9,-9,2,1,1,39,1,0,3,0,2,-9,1,1,0,0,5,7.2674541,7.1992264,0,2,0,-9,4,0,5,58.290081,0,0,0,34,2,3,1,-9,-9,2019,1,1,23,11,20,97,15,1,1,1,0,8.799283,8.799283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.130001,62.93,42.099998,39.630001,5,2,3,0,1,4,2,1,1037.3334,12885.706,0,0,545.36951 -13302,16306,29690,-9,29688,29689,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.1288,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,4,2,1,1037.3334,12885.706,0,0,545.36951 -13303,16307,29691,-9,29694,29693,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.8613,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,1489,59295.078,0,0,3347.886 -13303,16307,29692,-9,29694,29693,3,1,0,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-806.1109,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,1489,59295.078,0,0,3347.886 -13303,16307,29693,29694,-9,-9,1,1,1,41,1,1,2,0,2,-9,2,1,0,0,5,9.1186533,9.2268944,0,2,0,-9,7,0,4,-34.964687,0,0,0,37,2,4,3,2,2,2019,2,2,5,0,45,45,15,1,0,3,0,22.652954,22.652954,0,0,0,0,0,0,0,0,1,1,0,7.2643657,0,0,0,57.060001,57.759998,56.009998,51.369999,6,1,1,0,0,7,4,1,1489,59295.078,0,0,3347.886 -13303,16307,29694,29693,-9,-9,2,1,0,37,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-4,46.259712,0,0,1,41,2,5,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.009998,51.369999,57.060001,57.759998,6,1,1,0,0,7,4,1,1489,59295.078,0,0,3347.886 -13304,16308,29695,29696,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,7.1120191,6.6989517,1,0,-9,11,0,5,-5.6146626,0,0,0,68,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9711695,7.251545,0,0,52,47,58.32,50.220001,5,1,1,0,0,1,3,1,538,534171.5,0,0,1928.443 -13304,16308,29696,29695,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.0536933,6.9751377,1,0,-9,51,0,-5,63.704166,0,0,0,73,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8085225,7.0297022,.39508912,3,58.32,50.220001,52,47,6,1,1,0,0,1,3,1,538,534171.5,0,0,1928.443 -13305,16309,29697,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.5758057,7.2701359,3,0,0,0,-9,0,-1135.882,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5843813,7.4198513,0,0,54.200001,57.490002,-9,-9,6,3,4,0,0,6,3,1,1511,513393.31,0,0,1692.7766 -13306,16310,29698,29701,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,1,9.6385298,9.3624563,0,2,0,-9,27,0,-2,-13.613809,0,0,1,46,1,5,1,2,1,2019,1,2,35,12,41,35,15,1,1,1,0,30.673496,30.673496,0,0,0,0,0,0,0,0,1,1,0,6.4182196,0,0,0,18.09,44.970001,58.049999,54.52,3,1,1,0,0,8,5,1,623.25,908448.44,0,0,7899.4463 -13306,16310,29699,-9,29698,29701,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.8605,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,5,1,623.25,908448.44,0,0,7899.4463 -13306,16310,29700,-9,29698,29701,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1116.3862,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,623.25,908448.44,0,0,7899.4463 -13306,16310,29701,29698,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,9.3194532,9.295393,0,2,0,-9,27,0,2,57.596844,0,0,0,44,1,1,1,3,1,2019,1,1,8,0,42,39,15,1,0,1,0,31.146484,31.146484,0,0,0,0,0,0,0,0,1,1,0,2.193013,0,0,0,58.049999,54.52,18.09,44.970001,6,1,1,0,0,8,5,1,623.25,908448.44,0,0,7899.4463 -13307,16311,29702,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,0,5,8.2278643,8.3272848,0,3,0,0,0,-9,0,-991.78107,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,40,40,15,1,0,-9,0,9.280468,9.280468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.919998,58.91,-9,-9,7,1,1,0,0,5,4,0,232,-8748.9268,0,0,622.6496 -13308,16312,29703,29704,-9,-9,1,1,0,49,1,0,0,0,3,-9,1,1,0,1,4,7.6505356,7.3482118,0,1,0,-9,2,0,1,-99.705475,0,0,0,48,2,3,1,3,2,2019,1,2,8,0,40,50,15,1,0,1,0,5.3500071,5.3500071,0,0,0,0,0,0,0,0,1,1,0,5.3876643,0,0,0,50.439999,48.16,56.110001,44.400002,6,1,1,0,0,11,4,1,386,208011.56,0,0,2525.8623 -13308,16312,29704,29703,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,0,3,8.0933075,8.1036482,0,1,0,-9,2,0,-1,-35.616329,0,0,0,49,3,4,1,3,2,2019,1,1,11,1,60,70,15,1,0,1,0,6.3604336,6.3604336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.110001,44.400002,50.439999,48.16,6,1,1,0,0,11,4,1,386,208011.56,0,0,2525.8623 -13308,16313,29705,-9,29703,29704,3,1,1,23,2,0,0,0,2,-9,1,1,0,0,5,7.6477065,7.8261604,4.8807411,3,0,0,0,-9,0,-1031.5817,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,60,70,15,1,0,-9,1,4.4043508,4.4043508,0,0,0,0,0,0,0,0,1,1,0,4.6809602,4.5782127,0,0,48.18,61.799999,-9,-9,6,1,1,0,0,11,3,1,248,244563.73,0,0,648.85773 -13308,16314,29706,-9,29703,29704,4,1,1,20,2,0,0,0,2,-9,1,1,0,0,5,7.400372,7.7723999,0,3,0,0,0,-9,0,-844.15271,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,60,70,15,1,0,-9,1,4.23245,4.23245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,11,3,1,803,130806.63,0,0,645.11932 -13309,16315,29707,29708,-9,-9,1,1,0,51,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,31,0,-11,0,0,0,0,62,2,5,3,2,3,2019,4,2,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.0565352,0,18.03937,3,55.189999,54.259998,56.23,52.630001,6,1,1,0,0,1,1,1,611.5,73096.992,0,0,747.50488 -13309,16315,29708,29707,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,31,0,11,0,0,0,0,51,2,4,3,-9,1,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.1122046,0,1.579596,3,56.23,52.630001,55.189999,54.259998,7,1,1,0,0,1,1,1,611.5,73096.992,0,0,747.50488 -13310,16316,29709,-9,29711,29710,3,1,0,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-856.33228,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.75,61.560001,-9,-9,5,1,1,0,0,9,4,0,1239.3334,70149.281,0,0,2558.1472 -13310,16316,29710,29711,-9,-9,2,1,1,42,1,0,1,0,3,-9,1,1,0,0,2,8.9838095,8.9156656,0,2,0,-9,25,0,0,41.440269,0,0,0,42,2,4,1,3,3,2019,1,1,14,2,40,38,15,1,0,1,0,20.373037,20.373037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.380001,54.209999,43.200001,59.970001,2,1,1,0,0,9,4,0,1239.3334,70149.281,0,0,2558.1472 -13310,16316,29711,29710,-9,-9,1,1,0,42,1,0,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,28,0,0,-15.297674,0,0,1,42,3,2,1,3,2,2019,1,2,19,7,12,11,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.200001,59.970001,35.380001,54.209999,4,1,1,0,0,9,4,0,1239.3334,70149.281,0,0,2558.1472 -13311,16317,29712,-9,29716,29714,2,1,0,25,2,0,2,0,2,-9,2,1,0,0,4,8.0333261,8.0463696,0,3,0,0,0,-9,0,-927.74323,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,35,35,15,1,0,-9,1,10.452716,10.452716,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,47.5,-9,-9,6,1,1,0,0,7,4,1,902,-208216.94,0,0,1271.7606 -13311,16318,29713,-9,29716,29714,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.5415,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,5,1,653,377499.31,0,0,5301.7725 -13311,16318,29714,29716,-9,-9,5,1,1,48,1,0,2,0,1,-9,2,1,0,0,3,9.4317102,9.0038643,0,2,0,-9,6,0,1,-33.570522,0,0,0,47,2,4,1,-9,-9,2019,1,1,6,0,60,60,15,1,0,1,0,21.973267,21.973267,0,0,0,0,0,0,0,0,1,1,0,3.7466743,0,0,0,54.959999,53.169998,40.709999,62.41,6,1,1,0,0,7,5,1,653,377499.31,0,0,5301.7725 -13311,16318,29715,-9,29716,29714,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-904.36566,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,5,1,653,377499.31,0,0,5301.7725 -13311,16318,29716,29714,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,7.7366018,7.6091518,6.2096052,2,0,-9,6,0,-1,53.490685,0,0,0,48,1,3,1,2,3,2019,1,5,13,4,21,21,15,1,1,1,0,9.9945488,9.9945488,0,0,0,0,0,0,0,0,1,1,0,5.7339091,0,0,0,40.709999,62.41,54.959999,53.169998,5,1,1,0,0,7,5,1,653,377499.31,0,0,5301.7725 -13312,16319,29717,-9,-9,-9,1,1,0,45,2,0,1,0,1,-9,2,1,0,0,5,8.318429,8.6469345,0,4,0,0,0,-9,0,-978.60156,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,44,0,15,1,0,-9,0,9.8693924,9.8693924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,3,4,0,0,8,4,0,1475,1007612.3,0,0,1792.0278 -13312,16319,29718,-9,29717,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,4.4366469,4.4435325,4,0,0,0,-9,0,-1078.4292,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8624344,0,0,0,57.330002,53.459999,-9,-9,4,3,4,0,0,8,4,0,1475,1007612.3,0,0,1792.0278 -13313,16320,29719,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,2,1,0,0,4,7.1233296,8.0188837,7.8758278,3,0,0,0,-9,0,-1098.6061,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,17,24,15,1,0,-9,0,7.1657271,7.1657271,0,0,0,0,0,0,0,0,0,0,0,7.0945888,7.0854268,0,0,36.029999,59.009998,-9,-9,5,1,1,0,0,7,3,1,2313,2595911.5,0,0,607.935 -13314,16321,29720,29721,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.5839825,8.755538,0,1,0,-9,9,0,1,-40.968983,0,0,1,29,1,4,1,2,2,2019,1,2,10,2,41,39,15,1,0,1,0,19.559753,19.559753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,44.869999,56.459999,6,1,1,0,0,7,5,1,607.5,-14608.916,0,0,4853.5864 -13314,16321,29721,29720,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.5455189,8.4517708,0,1,0,-9,9,0,-1,-60.339676,0,1,0,30,1,4,1,-9,-9,2019,1,1,10,2,41,40,15,1,0,1,0,15.471969,15.471969,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.869999,56.459999,58.150002,52.91,6,1,1,0,0,7,5,1,607.5,-14608.916,0,0,4853.5864 -13315,16322,29722,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,2,1,0,0,5,8.5438423,8.5591812,6.3891363,3,0,0,0,-9,0,-1021.7677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,51,51,15,1,0,-9,0,11.358634,11.358634,0,0,0,0,0,0,0,14.5,0,0,0,7.2004151,7.0281324,27.910332,3,57.060001,57.759998,-9,-9,2,1,1,0,0,7,5,1,3533,-73356.797,0,0,2780.032 -13316,16323,29723,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,1,2,0,6.6040726,6.4360104,3,0,0,0,-9,0,-1015.5612,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,5.8706179,0,0,0,0,42.86232,0,1,1,0,0,6.2731504,0,0,39.900002,37.400002,-9,-9,5,1,1,0,0,2,2,1,2628,121678.8,0,0,2566.4834 -13317,16324,29724,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,8.1285934,8.1011934,0,3,0,0,0,-9,0,-1019.5674,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,36,15,1,0,-9,0,8.679451,8.679451,0,0,0,0,0,0,0,5.48,1,1,0,4.6050105,0,16.22817,3,54.740002,57.220001,-9,-9,6,1,1,0,0,8,4,1,1200,576101.19,0,0,1114.4891 -13318,16325,29725,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-933.94275,1,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,35,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3966527,0,0,0,41.07,60.93,-9,-9,2,1,1,0,0,11,1,1,1736,0,0,0,256.9993 -13319,16326,29726,-9,29728,29727,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.887,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,4,1,686.33331,38645.008,0,0,4776.8789 -13319,16326,29727,29728,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,0,2,7.2436504,8.3183069,6.970643,2,0,-9,6,0,0,-85.904633,0,0,0,44,2,4,1,-9,-9,2019,1,1,10,0,65,75,15,1,0,1,0,3.3856153,3.3856153,0,0,0,0,0,0,0,0,1,1,0,7.7079892,6.8572936,0,0,40.330002,50.790001,44.02,60.700001,5,1,1,0,0,6,4,1,686.33331,38645.008,0,0,4776.8789 -13319,16326,29728,29727,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,8.1640692,8.3148632,0,2,0,-9,6,0,9,8.318759,0,0,1,35,2,2,1,2,2,2019,1,2,12,0,23,23,15,1,0,1,0,18.384398,18.384398,0,0,0,0,0,0,0,0,1,1,0,7.4428272,0,0,0,44.02,60.700001,40.330002,50.790001,6,1,1,0,0,6,4,1,686.33331,38645.008,0,0,4776.8789 -13320,16327,29729,-9,-9,-9,1,1,0,83,3,0,0,0,1,-9,4,3,0,0,3,0,8.5478506,8.8559618,3,0,0,0,-9,0,-1011.0521,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8102999,0,0,62.18,36.18,-9,-9,5,1,1,0,0,5,5,1,1154,386903.72,0,0,3412.938 -13321,16328,29730,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,2,1,0,0,3,8.0964861,8.1674767,0,3,0,0,0,-9,0,-1127.5981,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,18,7,62,65,15,1,1,-9,0,7.7631464,7.7631464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.369999,57.889999,-9,-9,3,4,2,0,1,7,4,1,203,318391.81,0,0,1834.1606 -13322,16329,29731,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-984.91974,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,6,1,0,224,97955.508,0,0,456.39554 -13323,16330,29732,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,0,2,8.5929651,8.7274771,6.0520072,3,0,0,0,-9,0,-951.55011,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,45,50,15,1,0,-9,0,15.754287,15.754287,0,0,0,0,0,0,0,0,0,0,0,6.3130822,6.6110597,0,0,52.889999,46.290001,-9,-9,5,1,1,0,0,2,5,1,558,278477.63,0,0,1590.0774 -13324,16331,29733,29734,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.228549,8.5867863,0,1,0,-9,8,0,5,-3.3038504,0,0,0,40,1,3,1,-9,-9,2019,1,1,13,2,32,32,15,1,0,1,0,13.410652,13.410652,0,0,0,0,0,0,0,0,0,0,0,.0018897051,0,0,0,41.299999,60.77,52.25,53.240002,6,1,1,0,0,9,4,1,344,2048076.8,0,0,3037.3799 -13324,16331,29734,29733,-9,-9,1,1,1,40,1,0,0,0,1,-9,1,1,0,0,3,7.6205487,7.4098849,0,1,0,-9,8,0,-5,-82.841766,0,0,0,45,2,4,1,2,1,2019,1,2,7,0,25,35,15,1,0,1,0,9.7579803,9.7579803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,53.240002,41.299999,60.77,6,1,1,0,0,9,4,1,344,2048076.8,0,0,3037.3799 -13325,16332,29735,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1021.6459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.709999,18.35,-9,-9,3,1,1,0,0,2,1,0,834,93150.055,0,0,1629.2905 -13326,16333,29736,29737,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,7.5160322,7.5512776,0,1,0,-9,42,0,1,-89.952286,0,0,0,59,2,4,3,3,3,2019,2,2,9,0,50,50,15,1,0,4,0,3.9167902,3.9167902,0,0,0,0,0,0,0,0,0,0,0,2.8958871,0,0,0,58.560001,44.549999,66.440002,47.810001,6,1,1,0,0,10,2,1,2719.5,151036.69,0,0,2088.6914 -13326,16333,29737,29736,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,42,0,-1,-44.084431,0,0,0,60,2,3,1,2,3,2019,3,1,4,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2912107,0,0,0,66.440002,47.810001,58.560001,44.549999,7,1,1,0,0,10,2,1,2719.5,151036.69,0,0,2088.6914 -13327,16334,29738,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,7.5381746,7.5318103,3,0,0,0,-9,0,-908.53571,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.305697,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,5,3,1,1414,82637.977,0,0,2785.6741 -13328,16335,29739,29740,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,7.8808384,7.9023333,1,0,-9,7,0,3,42.318794,0,0,0,63,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.9633932,8.3785725,121.62452,2,51.66,38.82,42.16,37.919998,6,1,1,0,0,5,3,1,302.5,1414354,0,0,1837.9994 -13328,16335,29740,29739,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,7,0,-3,-161.81966,0,0,0,66,2,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0263443,0,0,0,42.16,37.919998,51.66,38.82,6,1,1,0,0,5,3,1,302.5,1414354,0,0,1837.9994 -13329,16336,29741,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,2,1,0,0,4,8.4709978,8.3526402,0,3,0,0,0,-9,0,-1093.6014,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,55,60,15,1,0,-9,0,8.7933769,8.7933769,0,0,0,0,0,0,0,0,0,0,0,.81230444,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,4,0,552,-147893.45,0,0,1250.6268 -13330,16337,29742,-9,-9,-9,1,1,0,39,3,0,2,0,1,-9,2,1,0,0,3,8.0078945,8.3392038,7.3022799,4,0,0,0,-9,0,-933.89392,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,22,10,15,1,0,-9,0,14.894053,14.894053,0,0,0,0,0,0,0,0,1,1,0,7.9206042,0,0,0,46.080002,57.200001,-9,-9,5,1,1,0,0,8,4,1,877.33331,-87518.797,0,0,2203.5703 -13330,16337,29743,-9,29742,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.03705,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,4,1,877.33331,-87518.797,0,0,2203.5703 -13330,16337,29744,-9,29742,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1051.4874,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,4,1,877.33331,-87518.797,0,0,2203.5703 -13331,16338,29745,-9,29751,29748,5,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.47,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13331,16338,29746,-9,29751,29748,3,1,0,17,2,0,2,1,2,0,7,2,0,0,3,5.7858171,5.8998103,0,2,0,0,0,-9,0,-984.56464,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,3,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,58.52,-9,-9,4,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13331,16338,29747,-9,29751,29748,7,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.5039,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13331,16338,29748,29751,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.319747,8.7336702,0,2,0,-9,6,0,5,-135.51004,0,0,0,39,1,1,1,-9,-9,2019,1,1,9,1,40,42,15,1,0,1,0,12.234337,12.234337,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49.349998,31.450001,5,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13331,16338,29749,-9,29751,29748,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,7.0437579,6.8041511,0,2,0,0,0,-9,0,-865.547,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,3,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.68,49.950001,-9,-9,7,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13331,16338,29750,-9,29751,29748,6,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-968.00409,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13331,16338,29751,29748,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,1,8.1328821,8.6299829,0,2,0,-9,21,0,-5,-63.660828,0,0,1,44,2,4,1,2,2,2019,1,2,24,10,23,19,15,1,1,1,0,18.296764,18.296764,0,0,0,0,0,0,0,2,1,1,0,0,0,4.3483181,3,49.349998,31.450001,52,55,4,1,1,0,0,9,4,0,1672.7142,270978.63,0,0,5013.6099 -13332,16339,29752,-9,29754,29753,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.9861,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,2,0,710.66669,-93424.18,0,0,2248.106 -13332,16339,29753,29754,-9,-9,1,1,1,26,1,0,1,0,2,-9,2,1,0,0,3,7.2946014,7.3369031,0,2,0,-9,4,0,1,.96671343,0,1,0,25,2,3,3,-9,-9,2019,2,2,14,4,24,24,15,1,1,3,0,7.8410549,7.8410549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,52.93,52.639999,4,1,1,0,0,4,2,0,710.66669,-93424.18,0,0,2248.106 -13332,16339,29754,29753,-9,-9,2,1,0,25,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-1,-163.48392,0,1,1,26,2,3,1,-9,-9,2019,3,1,15,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.93,52.639999,48.450001,57.490002,7,1,1,0,0,4,2,0,710.66669,-93424.18,0,0,2248.106 -13333,16340,29755,29756,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,0,4,9.4620066,9.8615503,0,1,0,-9,20,-9,7,-11.640595,-9,0,0,54,2,3,1,2,2,2019,1,1,8,0,50,0,15,1,0,1,0,36.408115,36.408115,0,0,0,0,0,0,0,0,0,0,0,3.7032011,0,0,0,60.43,46.439999,47,49,6,1,1,0,0,5,5,1,430,2974204,0,0,7492.1743 -13333,16340,29756,29755,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,0,3,6.8749933,8.0931911,7.6481919,1,0,-9,21,-9,-7,-19.044577,-9,0,0,61,1,4,1,-9,3,2019,1,2,12,2,25,0,15,1,0,1,0,5.3569965,5.3569965,0,0,0,0,0,0,0,0,0,0,0,5.8369684,8.0115805,0,0,47,49,60.43,46.439999,5,1,1,0,0,5,5,1,430,2974204,0,0,7492.1743 -13333,16341,29757,-9,29756,29755,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.6753812,7.8059921,0,3,0,-9,0,-9,0,-1146.3905,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,30,0,15,1,0,-9,1,8.4598799,8.4598799,0,0,0,0,0,0,0,0,0,0,0,1.2771105,0,0,0,46,58,-9,-9,5,1,1,0,0,5,3,1,1176,17414.5,0,0,1688.2828 -13334,16342,29758,-9,29759,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.9178,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,5,3,0,1654.5,434026.5,0,0,1610.835 -13334,16342,29759,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,1,1,0,0,4,7.9440403,7.8633232,6.2289519,4,0,0,0,-9,0,-998.79114,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,42,40,15,1,0,-9,0,5.9228616,5.9228616,0,0,0,0,0,0,0,0,1,1,0,6.2693663,0,0,0,48.529999,58.91,-9,-9,5,3,4,0,0,5,3,0,1654.5,434026.5,0,0,1610.835 -13335,16343,29760,29763,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,5,9.6772985,10.010825,0,2,0,-9,10,0,3,-26.177313,0,0,0,49,2,4,1,2,2,2019,1,1,6,0,60,60,15,1,0,1,0,27.609636,27.609636,0,0,0,0,0,0,0,0,1,1,0,2.8906987,0,0,0,60.419998,54.810001,58.299999,52.91,7,1,1,0,0,2,5,1,506.5,426398.66,0,0,6778.4087 -13335,16343,29761,-9,29763,29760,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.8924,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,506.5,426398.66,0,0,6778.4087 -13335,16343,29762,-9,29763,29760,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,6.4235702,6.1730223,0,2,0,0,0,-9,0,-1033.303,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4138288,0,0,0,35.970001,61.830002,-9,-9,5,1,1,0,0,2,5,1,506.5,426398.66,0,0,6778.4087 -13335,16343,29763,29760,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,4,8.0440092,8.159544,0,2,0,-9,10,0,-3,-10.752138,0,0,0,52,2,5,1,2,3,2019,1,2,6,0,30,30,15,1,0,1,0,14.199883,14.199883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,60.419998,54.810001,7,1,1,0,0,2,5,1,506.5,426398.66,0,0,6778.4087 -13336,16344,29764,29765,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,45,0,-5,-93.867134,0,0,0,68,3,3,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1829705,0,0,0,60.119999,54.799999,52,47,6,1,1,0,0,13,2,1,1884.5,1803040.5,0,0,1336.3748 -13336,16344,29765,29764,-9,-9,1,1,1,68,1,0,0,0,3,-9,1,1,0,0,3,7.5223022,7.387743,0,1,0,-9,45,0,5,33.666885,0,0,0,63,2,4,3,3,3,2019,2,2,10,1,45,60,15,1,0,3,0,3.7549253,3.7549253,0,0,0,0,0,0,0,0,1,1,0,6.1811461,0,0,0,52,47,60.119999,54.799999,5,1,1,0,0,13,2,1,1884.5,1803040.5,0,0,1336.3748 -13337,16345,29766,29767,-9,-9,1,1,0,40,1,0,0,0,2,-9,1,1,0,0,5,7.2009249,7.3606782,0,1,0,-9,21,0,-2,15.241238,0,0,1,42,2,5,1,2,1,2019,1,2,8,0,42,42,15,1,0,1,0,4.5449705,4.5449705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,62.389999,56.709999,6,1,1,0,0,7,5,1,483,181123.72,0,0,2628.71 -13337,16345,29767,29766,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,0,5,8.5926981,8.774353,0,1,0,-9,8,0,2,-56.114307,0,0,0,40,2,5,1,-9,-9,2019,1,1,8,1,41,42,15,1,0,1,0,18.24062,18.24062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,57.060001,57.759998,7,1,1,0,0,7,5,1,483,181123.72,0,0,2628.71 -13338,16346,29768,-9,-9,-9,1,1,0,48,3,0,3,0,2,-9,1,1,0,0,3,6.823113,6.716743,0,4,0,0,0,-9,0,-992.35425,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,16,18,15,1,0,-9,0,8.442111,8.442111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.279999,44.02,-9,-9,3,4,2,0,1,6,2,0,1049,0,0,0,2448.8167 -13338,16346,29769,-9,29768,-9,2,1,1,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.0695,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.259998,56.189999,-9,-9,4,4,2,0,0,6,2,0,1049,0,0,0,2448.8167 -13338,16346,29770,-9,29768,-9,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1072.1595,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,6,2,0,1049,0,0,0,2448.8167 -13338,16346,29771,-9,29768,-9,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-952.33722,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,4,2,0,0,6,2,0,1049,0,0,0,2448.8167 -13339,16347,29772,29773,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,6.3071814,5.8973899,1,0,-9,9,0,-1,-25.397167,0,0,0,67,1,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7944791,6.1521797,0,0,44.59,35.139999,50.709999,52.349998,4,1,1,0,0,11,3,1,1464.5,1102809.6,0,0,2171.5959 -13339,16347,29773,29772,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,7.9679656,7.8083463,1,0,-9,9,0,1,54.095432,0,0,0,66,2,2,3,2,2,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8093638,7.8915033,0,0,50.709999,52.349998,44.59,35.139999,6,1,1,0,0,11,3,1,1464.5,1102809.6,0,0,2171.5959 -13340,16348,29774,-9,-9,-9,1,1,0,47,3,0,2,0,1,-9,2,1,0,0,4,8.7666359,8.7327585,7.5581408,4,0,0,0,-9,0,-1018.255,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,20,30,15,1,1,-9,0,29.463158,29.463158,0,0,0,0,0,0,0,0,1,1,0,7.7461619,0,0,0,30.59,64.25,-9,-9,3,1,1,0,0,10,4,1,2454,778190.81,0,0,2814.6663 -13340,16348,29775,-9,29774,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1077.2649,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,2454,778190.81,0,0,2814.6663 -13340,16348,29776,-9,29774,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1009.6992,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,10,4,1,2454,778190.81,0,0,2814.6663 -13341,16349,29777,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-962.82495,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.110001,22.299999,-9,-9,6,1,1,0,0,6,1,0,446,0,0,0,2281.5552 -13342,16350,29778,29779,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,0,2,0,5.3974118,5.4583039,1,0,-9,57,0,-2,127.95477,0,0,0,81,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4486189,0,0,0,47.310001,50.200001,58.080002,43.459999,5,1,1,0,0,2,2,1,417,224831.36,0,0,1596.6821 -13342,16350,29779,29778,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,4.6944132,5.3821397,1,0,-9,57,0,2,-149.75873,0,0,0,79,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8337464,5.1627011,0,0,58.080002,43.459999,47.310001,50.200001,6,1,1,0,0,2,2,1,417,224831.36,0,0,1596.6821 -13343,16351,29780,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.0674982,7.9207606,0,3,0,-9,0,-9,0,-928.70691,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,42,0,15,1,0,-9,0,10.711466,10.711466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,4,0,243,-109159.17,0,0,1394.9983 -13344,16352,29781,29783,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.800211,8.8617592,0,2,0,-9,24,0,7,-1.9322237,0,0,0,41,2,4,1,3,3,2019,1,1,9,1,37,37,15,1,0,1,0,19.958855,19.958855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.720001,32.950001,49,55,4,2,3,0,1,6,5,1,603.66669,297929.72,0,0,4716.6587 -13344,16352,29782,-9,29783,29781,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-883.3208,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,5,1,603.66669,297929.72,0,0,4716.6587 -13344,16352,29783,29781,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,8.2582645,7.9858961,0,2,0,-9,24,0,-7,10.799575,-9,0,1,48,2,4,1,-9,-9,2019,1,2,10,1,35,0,15,1,0,1,0,12.466138,12.466138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,57.720001,32.950001,6,2,3,0,0,6,5,1,603.66669,297929.72,0,0,4716.6587 -13345,16353,29784,-9,-9,-9,1,1,0,40,3,0,3,0,2,-9,1,1,0,0,5,0,0,0,4,0,0,0,-9,0,-949.87384,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,17,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,12,1,1,376,288848.25,0,0,0 -13346,16354,29785,-9,29786,29788,4,1,1,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.5148,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,604.20001,520779.13,0,0,6066.7959 -13346,16354,29786,29788,-9,-9,2,1,0,40,1,1,3,0,1,-9,2,1,0,0,3,9.041193,9.335207,0,2,0,-9,7,0,-2,-64.285751,0,0,1,42,1,4,1,-9,1,2019,1,1,8,0,24,12,15,1,0,1,0,45.633854,45.633854,0,0,0,0,0,0,0,0,1,1,0,.97669607,0,0,0,54.970001,47.630001,48.07,47.869999,6,1,1,0,0,9,5,1,604.20001,520779.13,0,0,6066.7959 -13346,16354,29787,-9,29786,29788,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.24426,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,604.20001,520779.13,0,0,6066.7959 -13346,16354,29788,29786,-9,-9,1,1,1,42,1,1,3,0,1,-9,1,1,0,0,4,9.2023211,9.0287304,0,2,0,-9,7,0,2,9.0267344,0,0,0,40,1,3,1,2,2,2019,1,2,11,1,50,50,15,1,0,1,0,23.519419,23.519419,0,0,0,0,0,0,0,0,1,1,0,1.483555,0,0,0,48.07,47.869999,54.970001,47.630001,5,1,1,0,0,9,5,1,604.20001,520779.13,0,0,6066.7959 -13346,16354,29789,-9,29786,29788,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.70428,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,604.20001,520779.13,0,0,6066.7959 -13347,16355,29790,29791,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,7.72084,8.060173,0,1,0,-9,7,0,-6,53.426212,0,0,0,60,3,3,3,2,2,2019,2,1,15,3,28,27,15,1,0,3,0,13.586997,13.586997,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.77,50.950001,40.380001,50.48,3,1,1,0,1,12,3,1,381.5,486539.53,0,0,996.30573 -13347,16355,29791,29790,-9,-9,1,1,1,60,1,0,0,0,3,-9,3,3,0,0,3,0,4.6807418,4.8719463,1,0,-9,7,0,6,-83.695587,0,0,0,54,2,4,1,2,3,2019,3,2,10,1,0,96,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.985147,4.7676969,0,0,40.380001,50.48,47.77,50.950001,6,1,1,1,0,12,3,1,381.5,486539.53,0,0,996.30573 -13347,16356,29792,-9,29790,29791,3,1,1,26,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1024.5903,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,49,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,1,0,12,1,1,864,-105443.35,0,0,620.9577 -13347,16357,29793,-9,29790,29791,4,1,1,20,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1027.9041,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.889999,54.630001,-9,-9,6,1,1,1,0,12,1,1,276,-83158.492,0,0,97.970787 -13348,16358,29794,29795,-9,-9,3,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.406332,8.2740679,0,1,0,-9,1,-9,-1,-102.40739,-9,0,0,48,3,3,1,-9,-9,2019,1,1,6,0,48,0,15,1,0,1,0,8.0099859,8.0099859,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.119999,54.799999,59.459999,46.990002,6,1,1,0,0,4,3,0,1060.5,240175.55,0,0,1881.8552 -13348,16358,29795,29794,-9,-9,1,1,0,48,1,0,0,0,3,-9,1,1,0,1,3,0,0,0,1,0,-9,1,-9,1,54.533131,-9,0,0,47,2,4,1,3,3,2019,1,3,11,0,15,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.293804,3,59.459999,46.990002,60.119999,54.799999,2,1,1,0,0,4,3,0,1060.5,240175.55,0,0,1881.8552 -13348,16359,29796,-9,29795,29794,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.2850227,7.3242002,0,3,0,-9,0,-9,0,-1074.8217,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,35,0,15,1,0,-9,1,6.1196547,6.1196547,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.580002,47.970001,-9,-9,5,1,1,0,0,4,3,0,270,115868,0,0,-1656.7931 -13349,16360,29797,29798,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,6.8303094,7.0167561,1,0,-9,43,0,3,-127.79247,0,0,0,76,3,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6711726,0,0,54.580002,43.700001,40.369999,29.809999,7,4,2,0,0,7,2,1,1799,668800.13,0,0,1268.6685 -13349,16360,29798,29797,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,4.8411055,5.3282933,1,0,-9,42,0,-3,16.310509,0,0,0,79,2,3,3,3,3,2019,4,1,17,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.62097,5.2842431,0,0,40.369999,29.809999,54.580002,43.700001,3,1,1,0,0,7,2,1,1799,668800.13,0,0,1268.6685 -13350,16361,29799,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,8,3,1,1,3,0,5.5395317,5.2795734,3,0,0,0,-9,0,-1064.2827,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4993382,0,0,51,49,-9,-9,5,1,1,0,0,11,2,0,1426,-2731.457,0,0,931.0495 -13351,16362,29800,29801,-9,-9,1,1,0,88,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,65,0,-1,50.603943,0,0,0,89,3,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6252928,0,0,1,57.060001,57.759998,37.91,45.93,6,1,1,0,0,10,3,1,376.5,750687.19,0,0,2351.7905 -13351,16362,29801,29800,-9,-9,2,1,1,89,1,0,0,0,3,-9,4,3,0,0,3,0,7.3506021,7.5061626,1,0,-9,65,0,1,-2.0507572,0,0,0,88,3,5,3,2,2,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6814427,0,0,37.91,45.93,57.060001,57.759998,5,1,1,0,0,10,3,1,376.5,750687.19,0,0,2351.7905 -13352,16363,29802,29803,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.3665886,6.3112254,1,0,-9,39,0,10,53.793835,0,0,0,56,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3465466,9.9633789,3,62.66,52.400002,31.41,46.619999,6,2,3,0,1,8,2,0,746,785407.19,0,0,1730.4053 -13352,16363,29803,29802,-9,-9,2,1,0,56,1,0,0,0,1,-9,6,3,0,0,3,0,0,0,1,0,-9,39,0,-10,14.425605,0,0,0,66,2,3,3,2,2,2019,4,1,12,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.41,46.619999,62.66,52.400002,6,2,3,0,0,8,2,0,746,785407.19,0,0,1730.4053 -13352,16364,29804,-9,29803,29802,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.8851223,8.7747412,0,3,0,0,0,-9,0,-995.01782,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,43,47,15,1,0,-9,1,18.316811,18.316811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.07,52.43,-9,-9,6,2,3,0,0,8,5,0,98,115883.7,0,0,2501.5039 -13352,16365,29805,-9,29803,29802,4,1,1,21,2,0,0,0,1,1,2,1,0,0,5,7.794786,7.5595264,0,3,0,0,0,-9,0,-963.93762,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,36,0,15,1,0,-9,1,7.0127258,7.0127258,0,0,0,0,0,0,0,0,1,1,0,1.48923,0,0,0,43.09,61.580002,-9,-9,4,2,3,0,0,8,3,0,176,-73422.313,0,0,1479.8776 -13353,16366,29806,29807,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,1,-44.368732,0,0,0,64,3,4,3,-9,-9,2019,4,1,6,0,0,41,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7741034,0,0,0,46.48,53.759998,60.119999,54.799999,6,1,1,0,0,7,2,1,1142.5,596255.13,0,0,2015.6033 -13353,16366,29807,29806,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,4,0,4.974648,4.4448771,1,0,-9,8,0,-1,18.835178,0,0,0,65,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2924781,4.8082542,0,0,60.119999,54.799999,46.48,53.759998,7,1,1,0,0,7,2,1,1142.5,596255.13,0,0,2015.6033 -13354,16367,29808,29809,-9,-9,1,1,0,57,1,0,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,9,0,-2,99.778732,0,0,0,59,1,3,1,1,1,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5262794,0,0,0,59.330002,51.290001,50,49,6,1,1,0,0,12,5,1,631.66669,370684,0,0,4168.9253 -13354,16367,29809,29808,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,0,3,9.3486881,9.1316862,0,2,0,-9,9,0,2,-48.258183,0,0,0,57,1,5,3,1,1,2019,2,1,10,1,24,32,15,1,0,3,0,64.901062,64.901062,0,0,0,0,0,0,0,0,0,0,0,1.9609007,0,0,0,50,49,59.330002,51.290001,5,1,1,0,0,12,5,1,631.66669,370684,0,0,4168.9253 -13354,16367,29810,-9,29808,29809,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,5.9588509,5.8125057,0,2,0,0,0,-9,0,-963.51099,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.98,54.779999,-9,-9,6,1,1,0,0,12,5,1,631.66669,370684,0,0,4168.9253 -13355,16368,29811,29812,29813,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,4,8.3826857,8.0624952,0,1,0,-9,33,-9,1,-11.91399,-9,0,0,60,1,4,1,2,2,2019,1,2,10,0,40,0,15,1,0,1,0,11.998404,11.998404,0,0,0,0,0,0,0,0,1,1,0,3.2732491,0,0,0,48.279999,60.18,54.200001,57.490002,6,1,1,0,0,9,5,1,384.5,2604161.5,0,0,3662.7122 -13355,16368,29812,29811,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,7.6174116,8.4859009,7.5572929,1,0,-9,33,-9,-1,-.50774819,-9,0,0,61,3,4,1,3,3,2019,1,1,7,0,37,0,15,1,0,1,0,6.8890977,6.8890977,0,0,0,0,0,0,0,0,1,1,0,.27066401,8.231823,0,0,54.200001,57.490002,48.279999,60.18,6,1,1,0,0,9,5,1,384.5,2604161.5,0,0,3662.7122 -13355,16369,29813,-9,-9,-9,3,1,0,85,3,0,0,0,2,-9,4,3,0,0,3,0,7.7002788,7.6829166,3,0,-9,0,-9,0,-1002.8941,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0405583,7.701324,0,0,43.009998,53.240002,-9,-9,6,1,1,0,0,9,3,1,478,799709.13,0,0,143.28023 -13356,16370,29814,29815,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,4,0,5.6234527,5.2503366,1,0,-9,4,0,2,-17.568953,0,0,0,62,3,4,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5.6632795,0,3,56.189999,45.490002,57.16,56.150002,6,1,1,0,0,12,4,1,628,189847.81,0,0,1873.5471 -13356,16370,29815,29814,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,0,4,7.8928165,8.2481575,6.4775381,1,0,-9,4,0,-2,-73.305725,0,0,0,64,3,4,3,3,3,2019,2,2,7,0,60,60,15,1,0,4,0,5.9297886,5.9297886,0,0,0,0,0,0,0,0,0,0,0,3.8481934,7.2391148,0,0,57.16,56.150002,56.189999,45.490002,6,1,1,0,0,12,4,1,628,189847.81,0,0,1873.5471 -13357,16371,29816,-9,29818,29819,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.8062,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,743,102007.03,0,0,2705.3635 -13357,16371,29817,-9,29818,29819,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.969,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,743,102007.03,0,0,2705.3635 -13357,16371,29818,29819,-9,-9,2,1,0,30,1,0,2,0,2,-9,6,3,0,0,3,5.1790028,5.2084594,0,2,0,-9,7,0,-16,108.6032,0,0,1,46,1,4,1,2,-9,2019,3,1,9,1,5,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7349946,0,0,0,32.360001,59.759998,51.830002,57.200001,6,1,1,0,1,7,4,1,743,102007.03,0,0,2705.3635 -13357,16371,29819,29818,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,8.6115246,8.519331,0,2,0,-9,7,0,16,-46.478516,0,0,0,30,2,3,3,2,2,2019,2,2,8,1,36,36,15,1,0,3,0,22.653841,22.653841,0,0,0,0,0,0,0,0,1,1,0,1.9289746,0,0,0,51.830002,57.200001,32.360001,59.759998,6,1,1,0,1,7,4,1,743,102007.03,0,0,2705.3635 -13358,16372,29820,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-993.51599,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,43.73,-9,-9,1,1,1,0,0,7,1,1,291,-26870.115,0,0,606.8855 -13359,16373,29821,-9,29823,29822,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.08,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,1,821.66669,316665.34,0,0,3516.4761 -13359,16373,29822,29823,-9,-9,1,1,1,32,1,0,1,0,1,-9,2,1,0,0,5,9.8658953,9.5269279,0,2,0,-9,12,0,-1,124.704,0,0,0,33,1,4,3,1,1,2019,2,2,12,1,50,53,15,1,0,3,0,30.202087,30.202087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.830002,57.200001,5,2,3,0,0,8,5,1,821.66669,316665.34,0,0,3516.4761 -13359,16373,29823,29822,-9,-9,2,1,0,33,1,0,1,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,12,0,1,61.286686,0,0,1,32,1,5,1,1,1,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,51.73,58.82,6,2,3,1,0,8,5,1,821.66669,316665.34,0,0,3516.4761 -13360,16374,29824,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,3,8.0352201,8.2390442,0,3,0,0,0,-9,0,-1072.9664,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,36,15,1,0,-9,0,10.455685,10.455685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.310001,51.529999,-9,-9,6,1,1,0,0,2,4,1,556,131408.22,0,0,124.14525 -13360,16375,29825,-9,-9,29824,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.9918389,7.5528541,0,3,0,0,0,-9,0,-1076.1031,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,35,15,1,0,-9,1,7.1511188,7.1511188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,3,1,687,53743.738,0,0,1439.0702 -13361,16376,29826,29827,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,8.2636833,7.9115133,0,1,0,-9,10,0,-1,22.707378,0,0,0,62,3,2,1,3,2,2019,1,2,12,1,48,60,15,1,0,1,0,7.4658122,7.4658122,0,0,0,0,0,0,0,7,0,0,0,0,0,17.316828,3,55.619999,23.5,51.119999,40.419998,5,1,1,0,1,1,4,0,439,874159.63,0,0,2263.835 -13361,16376,29827,29826,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,2,7.9132762,7.8985043,4.787919,1,0,-9,10,0,1,77.35894,0,0,0,61,2,2,1,3,3,2019,1,1,8,0,68,96,15,1,0,1,0,4.6137075,4.6137075,0,0,0,0,0,0,0,0,0,0,0,0,4.7740135,0,0,51.119999,40.419998,55.619999,23.5,4,1,1,0,1,1,4,0,439,874159.63,0,0,2263.835 -13362,16377,29828,29829,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,0,3,7.4885802,7.5503626,0,1,0,-9,9,0,1,-48.884537,0,0,0,56,1,3,1,2,3,2019,1,2,6,0,40,45,15,1,0,1,0,5.6267743,5.6267743,0,0,0,0,0,0,0,0,0,0,0,3.1664681,0,0,0,57.330002,53.459999,57.330002,53.459999,7,1,1,0,0,9,4,1,170.5,665941.44,0,0,2715.646 -13362,16377,29829,29828,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,3,7.7441254,7.7310734,0,1,0,-9,9,0,-1,5.3637085,0,0,0,57,3,3,1,2,2,2019,1,1,8,0,20,19,15,1,0,1,0,14.761946,14.761946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.330002,53.459999,6,1,1,0,0,9,4,1,170.5,665941.44,0,0,2715.646 -13362,16378,29830,-9,29829,29828,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.5277748,8.5020552,0,3,0,0,0,-9,0,-1050.4733,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,5,41,38,15,1,1,-9,1,16.869453,16.869453,0,0,0,0,0,0,0,2,0,0,0,0,0,.82135135,3,40.880001,59.720001,-9,-9,5,1,1,0,1,9,5,1,2255,-67696.156,0,0,2014.2268 -13363,16379,29831,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1126.3214,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.130001,25.309999,-9,-9,4,4,5,0,0,8,1,0,309,-128535.97,0,0,1723.4595 -13364,16380,29832,-9,29834,29833,1,1,1,38,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1005.5016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.83,24.469999,-9,-9,2,1,1,0,1,6,1,1,353,37883.621,0,0,1741.6528 -13364,16381,29833,29834,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,8.8594074,8.7599554,1,0,-9,2,0,5,110.73512,-9,0,0,62,3,3,3,-9,-9,2019,4,3,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4802694,8.6934786,0,0,52,47,50,47,5,1,1,0,0,6,4,1,601.5,2021816,0,0,3289.9211 -13364,16381,29834,29833,-9,-9,3,1,0,62,1,0,0,0,3,-9,4,3,0,0,3,0,5.0582857,5.4565554,1,0,-9,2,0,-5,-156.12401,-9,0,0,67,3,3,3,-9,-9,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1438789,0,0,50,47,52,47,5,4,1,0,0,6,4,1,601.5,2021816,0,0,3289.9211 -13365,16382,29835,29836,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,7.6370893,7.7154636,1,0,-9,11,0,2,95.546143,0,0,0,69,3,2,3,3,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.6810102,7.7128005,0,0,50.209999,43.119999,59.450001,33.75,6,1,1,0,0,2,3,1,2034,591907.63,0,0,2311.6328 -13365,16382,29836,29835,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,-2,-2.3248053,0,0,0,71,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6570599,0,0,0,59.450001,33.75,50.209999,43.119999,6,1,1,0,0,2,3,1,2034,591907.63,0,0,2311.6328 -13366,16383,29837,29838,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,0,5,8.7549887,8.7681284,0,2,0,-9,29,0,-1,-55.292431,0,0,0,51,1,4,1,2,2,2019,1,1,12,1,50,50,15,1,0,1,0,16.354965,16.354965,0,0,0,0,0,0,0,0,1,1,0,7.6509333,0,0,0,40.950001,63.66,41.209999,54.009998,2,1,1,0,0,12,4,0,1329.5,1521588.9,0,0,4784.6343 -13366,16383,29838,29837,-9,-9,1,1,0,51,1,0,1,0,1,-9,1,1,0,0,4,5.6676898,6.4665594,5.8766861,2,0,-9,29,0,1,36.375221,0,0,0,50,1,5,1,1,1,2019,1,2,14,3,36,25,15,1,0,1,0,.87000173,.87000173,0,0,0,0,0,0,0,0,1,1,0,8.3121252,0,0,0,41.209999,54.009998,40.950001,63.66,5,1,1,0,0,12,4,0,1329.5,1521588.9,0,0,4784.6343 -13367,16384,29839,29840,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,2,0,8.217948,8.3324862,1,0,-9,6,0,-1,-7.3527908,0,0,0,69,1,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.52209,0,0,38.889999,51.459999,59.459999,36.25,6,1,1,0,0,9,4,1,1811,1841600.9,0,0,3188.5469 -13367,16384,29840,29839,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.4223766,7.4938216,1,0,-9,6,0,1,-22.487967,0,0,0,68,1,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3017235,7.3079305,0,0,59.459999,36.25,38.889999,51.459999,6,1,1,0,0,9,4,1,1811,1841600.9,0,0,3188.5469 -13368,16385,29841,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,3,8.2405348,8.318615,0,3,0,-9,0,0,0,-1077.1985,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,12,40,15,1,0,-9,0,34.725903,34.725903,0,0,0,0,0,0,0,0,0,0,0,5.6073122,0,0,0,36.93,56.27,-9,-9,4,1,1,0,0,12,4,1,717,-45010.418,0,0,1166.2372 -13369,16386,29842,29844,-9,-9,1,1,0,33,1,1,3,0,2,-9,1,1,0,0,3,4.9889946,6.0479803,4.9493937,2,0,-9,5,0,-1,-74.53299,0,0,1,34,2,4,1,2,2,2019,1,3,7,0,15,0,15,1,0,1,0,.9308877,.9308877,0,0,0,0,0,0,0,0,1,1,0,5.7604704,0,0,0,59.139999,47.330002,49,57,6,1,1,0,0,6,3,1,820.79999,109776.2,0,0,2170.1335 -13369,16386,29843,-9,29842,29844,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.9497,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,6,3,1,820.79999,109776.2,0,0,2170.1335 -13369,16386,29844,29842,-9,-9,3,1,1,34,1,1,3,0,2,-9,2,1,0,0,4,8.5979242,8.7411423,0,2,0,-9,5,0,1,65.924965,0,0,0,33,2,3,1,-9,-9,2019,1,1,10,1,50,63,15,1,0,1,0,9.6501131,9.6501131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,59.139999,47.330002,5,1,1,0,0,6,3,1,820.79999,109776.2,0,0,2170.1335 -13369,16386,29845,-9,29842,29844,2,1,1,10,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-968.00702,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,6,3,1,820.79999,109776.2,0,0,2170.1335 -13369,16386,29846,-9,29842,29844,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.78986,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,820.79999,109776.2,0,0,2170.1335 -13370,16387,29847,29848,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,8.7151937,8.6800947,0,1,0,1,1,-9,-8,71.890709,0,1,1,34,1,4,1,2,2,2019,1,2,12,1,57,60,15,1,0,1,0,14.74781,14.74781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.490002,47.77,51.830002,57.200001,5,1,1,0,0,5,5,0,538.5,504451.63,0,0,5588.2861 -13370,16387,29848,29847,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,8.7914152,8.9702654,0,1,0,-9,1,-9,8,-14.684353,-9,0,0,26,1,4,1,-9,-9,2019,1,1,7,0,60,0,15,1,0,1,0,17.322958,17.322958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,57.490002,47.77,6,1,1,0,0,5,5,0,538.5,504451.63,0,0,5588.2861 -13371,16388,29849,29850,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,8.1568127,7.936554,1,0,-9,51,0,3,48.203743,0,0,0,67,2,2,3,3,3,2019,4,2,20,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,8.053956,8.1703644,65.739235,1,39.48,51.009998,38.189999,19.09,3,1,1,0,0,11,4,1,1134.5,955311.06,0,0,3842.8989 -13371,16388,29850,29849,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,51,0,-3,-132.04703,0,0,0,70,2,3,3,3,3,2019,4,1,28,10,0,0,15,4,1,4,0,0,0,1,119.41487,126.80292,0,0,0,1230.1023,0,1,1,0,.3732751,0,0,0,38.189999,19.09,39.48,51.009998,3,1,1,0,0,11,4,1,1134.5,955311.06,0,0,3842.8989 -13372,16389,29851,29852,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,8.3009672,8.4703035,1,0,-9,44,0,3,55.867008,0,0,0,62,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7354283,8.1867714,2.3802352,3,53.810001,48.389999,58.150002,52.91,6,1,1,0,0,8,4,1,479,1234337.8,0,0,2610.3022 -13372,16389,29852,29851,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,-3,87.185555,0,0,0,65,2,3,3,2,3,2019,4,2,11,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.0575929,0,0,3,58.150002,52.91,53.810001,48.389999,6,1,1,0,0,8,4,1,479,1234337.8,0,0,2610.3022 -13373,16390,29853,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,0,2,0,6.7230568,6.9133763,3,0,0,0,-9,0,-965.06958,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,.42715803,0,0,0,5.1100168,30.877268,0,1,1,0,0,6.4618864,0,0,54.77,26.74,-9,-9,6,1,1,0,0,11,2,0,230,277513.44,0,0,2516.043 -13374,16391,29854,-9,29856,29858,4,1,0,17,2,0,2,1,2,0,7,2,0,0,3,5.6133442,5.9078445,0,2,0,0,0,-9,0,-792.23871,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.230003,38.889999,-9,-9,7,1,1,0,0,12,5,1,644,1139991.9,0,0,5564.2305 -13374,16391,29855,-9,29856,29858,5,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.03705,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,644,1139991.9,0,0,5564.2305 -13374,16391,29856,29858,-9,-9,1,1,0,48,1,0,2,0,2,-9,1,1,0,0,4,9.4598389,9.2217131,0,2,0,-9,20,0,0,-122.16984,0,0,0,48,2,4,1,2,2,2019,1,2,16,3,25,20,15,1,0,1,0,39.318943,39.318943,0,0,0,0,0,0,0,7,1,1,0,0,0,6.9035158,3,36.880001,58.73,52,55,2,1,1,0,1,12,5,1,644,1139991.9,0,0,5564.2305 -13374,16391,29857,-9,29856,29858,6,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-852.40656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,5,1,644,1139991.9,0,0,5564.2305 -13374,16391,29858,29856,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,7.8979359,7.8528852,0,2,0,-9,20,0,0,-46.624886,0,0,0,48,2,4,1,-9,-9,2019,1,1,9,1,55,50,15,1,0,1,0,4.7860842,4.7860842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.880001,58.73,6,1,1,0,0,12,5,1,644,1139991.9,0,0,5564.2305 -13374,16392,29859,-9,29856,29858,3,1,0,19,2,0,2,1,2,0,7,2,0,0,4,7.3439565,7.3675394,0,3,0,0,0,-9,0,-1110.1409,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,12,3,1,456,85612.688,0,0,38.200516 -13375,16393,29860,29861,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.4627466,8.8790483,6.9995222,1,0,-9,9,0,6,21.076094,0,0,0,52,3,3,1,-9,-9,2019,1,1,7,0,38,38,15,1,0,1,0,18.997124,18.997124,0,0,0,0,0,0,0,0,0,0,0,6.8721066,7.5728288,0,0,54.790001,55.860001,47.639999,37.66,6,2,3,0,0,6,5,1,517,710151.63,0,0,4652.7129 -13375,16393,29861,29860,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,3,8.5000744,8.5086021,0,1,0,-9,38,0,-6,33.542652,0,0,0,58,2,4,1,3,3,2019,1,2,16,4,40,52,15,1,1,1,0,14.118385,14.118385,0,0,0,0,0,0,0,0,0,0,0,3.5702374,0,0,0,47.639999,37.66,54.790001,55.860001,3,2,3,0,0,6,5,1,517,710151.63,0,0,4652.7129 -13375,16394,29862,-9,29861,29860,3,1,1,29,2,0,0,0,1,-9,2,1,0,0,4,8.7829256,8.4466791,0,3,0,0,0,-9,0,-1062.3585,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,38,15,1,0,-9,1,12.97578,12.97578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,2,3,0,0,6,5,1,510,20958.76,0,0,88.063911 -13376,16395,29863,-9,-9,-9,1,1,0,28,2,0,2,0,1,-9,2,1,0,0,3,8.3213062,8.1647606,0,4,0,-9,0,-9,0,-942.49097,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,16,3,24,0,15,1,0,-9,0,20.282419,20.282419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.059999,49.84,-9,-9,3,1,1,0,0,4,3,0,618.66669,81206.125,0,0,2417.5354 -13376,16395,29864,-9,29863,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-985.86829,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,618.66669,81206.125,0,0,2417.5354 -13376,16395,29865,-9,29863,-9,2,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1011.1863,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,618.66669,81206.125,0,0,2417.5354 -13377,16396,29866,29869,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,7.8733606,7.8259192,0,2,0,-9,4,0,-2,-61.619434,0,0,1,38,1,4,1,-9,-9,2019,1,1,6,0,16,24,15,1,0,1,0,21.176846,21.176846,0,0,0,0,0,0,0,0,1,1,0,2.0996945,0,0,0,54.200001,57.490002,62.5,49.560001,7,1,1,0,0,11,5,1,624.75,404332.91,0,0,4148.6689 -13377,16396,29867,-9,29866,29869,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.8947,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,11,5,1,624.75,404332.91,0,0,4148.6689 -13377,16396,29868,-9,29866,29869,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.33514,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,5,1,624.75,404332.91,0,0,4148.6689 -13377,16396,29869,29866,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,9.1343184,9.0992823,0,2,0,-9,4,0,2,-39.118767,0,0,0,36,2,4,1,1,1,2019,1,2,8,0,37,37,15,1,0,1,0,28.877642,28.877642,0,0,0,0,0,0,0,0,1,1,0,2.6468208,0,0,0,62.5,49.560001,54.200001,57.490002,7,1,1,0,0,11,5,1,624.75,404332.91,0,0,4148.6689 -13378,16397,29870,29873,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,0,3,7.666162,7.7255497,0,2,0,-9,6,0,4,-76.016106,0,0,0,31,2,4,3,-9,-9,2019,2,1,7,0,40,40,15,1,0,3,0,8.4595852,8.4595852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,47.200001,58.099998,5,1,1,0,0,13,3,0,594.5,202257.56,0,0,2035.9841 -13378,16397,29871,-9,29873,29870,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.7407,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,594.5,202257.56,0,0,2035.9841 -13378,16397,29872,-9,29873,29870,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-984.4903,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,3,0,594.5,202257.56,0,0,2035.9841 -13378,16397,29873,29870,-9,-9,1,1,0,31,1,1,2,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,6,0,-4,19.552631,0,0,1,35,2,3,1,2,-9,2019,3,2,12,0,0,21,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.200001,58.099998,60.290001,52.110001,4,1,1,0,0,13,3,0,594.5,202257.56,0,0,2035.9841 -13379,16398,29874,29875,-9,-9,2,1,1,59,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,8,0,7,0,0,0,0,52,3,1,3,3,1,2019,4,1,24,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.900002,36.419998,33.639999,33.57,4,2,3,1,0,2,1,1,467.5,248073.48,0,0,780.34058 -13379,16398,29875,29874,-9,-9,1,1,0,52,1,0,0,0,3,-9,6,3,0,1,1,0,0,0,1,0,-9,35,0,-7,0,0,0,0,59,3,2,3,3,2,2019,4,2,20,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.639999,33.57,45.900002,36.419998,4,2,3,0,0,2,1,1,467.5,248073.48,0,0,780.34058 -13379,16399,29876,-9,29875,29874,3,1,1,29,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-980.7749,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.34,30.370001,-9,-9,4,2,3,1,0,2,1,1,526,65950.719,0,0,-39.006229 -13380,16400,29877,29880,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,8.7530146,8.6724482,0,2,0,-9,13,0,0,-21.316217,0,0,0,37,1,4,1,2,-9,2019,1,2,16,5,45,46,15,1,1,1,0,15.954944,15.954944,0,0,0,0,0,0,0,0,1,1,0,3.4018657,0,0,0,43.200001,59.970001,54.790001,55.860001,5,1,1,0,0,13,5,0,910.75,632374.31,0,0,5265.3784 -13380,16400,29878,-9,29880,29877,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.58154,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,0,910.75,632374.31,0,0,5265.3784 -13380,16400,29879,-9,29880,29877,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.39691,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,0,910.75,632374.31,0,0,5265.3784 -13380,16400,29880,29877,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.5839052,8.6424112,0,2,0,-9,13,0,0,32.240509,0,0,1,37,2,4,1,3,-9,2019,1,1,8,0,40,37,15,1,0,1,0,19.834229,19.834229,0,0,0,0,0,0,0,0,1,1,0,3.2061927,0,0,0,54.790001,55.860001,43.200001,59.970001,6,1,1,0,0,13,5,0,910.75,632374.31,0,0,5265.3784 -13381,16401,29881,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,4,0,4.4985561,4.8315225,3,0,0,0,-9,0,-941.53357,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.1201339,5.4469395,0,0,0,1,1,0,0,4.617867,0,0,59.740002,42.509998,-9,-9,7,1,1,0,0,2,2,0,1076,256973.25,0,0,765.7934 -13382,16402,29882,29883,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,2,0,5.9257197,6.3875518,1,0,-9,6,0,-4,-132.93546,0,0,0,82,3,3,3,3,2,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4621572,5.8967605,0,0,53.02,15.44,55,45,7,1,1,0,0,2,2,1,403,150333.94,0,0,1071.6063 -13382,16402,29883,29882,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,4,68.494484,0,0,0,78,2,2,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.67923,1,55,45,53.02,15.44,6,1,1,0,0,2,2,1,403,150333.94,0,0,1071.6063 -13383,16403,29884,-9,29886,-9,2,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-910.11584,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,6,1,0,818.66669,83051.336,0,0,767.58142 -13383,16403,29885,-9,29886,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-932.14392,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,6,1,0,818.66669,83051.336,0,0,767.58142 -13383,16403,29886,-9,-9,-9,1,1,0,27,2,0,2,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1015.2603,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,5,4,2,0,0,6,1,0,818.66669,83051.336,0,0,767.58142 -13384,16404,29887,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1022.1731,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56322467,0,0,0,57.25,35.630001,-9,-9,1,1,1,0,0,6,1,1,585,193446.91,0,0,74.752411 -13385,16405,29888,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,2,1,0,0,5,8.6652384,8.461977,7.695086,3,0,0,0,-9,0,-838.84808,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,15,42,15,1,0,-9,0,32.051655,32.051655,0,0,0,0,0,0,0,14.5,1,1,0,0,8.3436108,10.28438,3,57.060001,57.759998,-9,-9,7,1,1,0,0,1,5,1,577,2207201.8,0,0,3833.0198 -13386,16406,29889,29890,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,0,4,7.0185652,7.8724499,7.1080561,1,0,-9,48,0,0,97.767921,0,0,0,67,1,4,3,3,3,2019,2,1,9,0,8,8,15,1,0,4,0,12.804572,12.804572,0,0,0,0,0,0,0,0,1,1,0,0,7.1242108,0,0,54.200001,57.490002,49.91,58.02,6,1,1,0,0,2,4,1,796.5,2393328.3,0,0,2729.4917 -13386,16406,29890,29889,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.7889352,7.6481123,1,0,-9,48,0,0,-3.0050559,0,0,0,67,2,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4489808,7.562387,0,0,49.91,58.02,54.200001,57.490002,6,1,1,0,0,2,4,1,796.5,2393328.3,0,0,2729.4917 -13387,16407,29891,-9,-9,-9,1,1,0,65,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-858.98456,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,7.5742717,0,0,1,1,0,2.8095584,0,0,0,40.950001,24.93,-9,-9,3,1,1,0,0,11,1,0,1826,563.72095,0,0,696.94586 -13388,16408,29892,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,3,8.5592651,8.6107111,0,3,0,-9,0,1,0,-951.31042,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,0,-9,0,13.372067,13.372067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,-9,-9,5,1,1,0,0,12,5,1,387,1102697.3,0,0,533.66205 -13388,16409,29893,-9,29892,-9,4,1,0,18,2,0,0,0,2,1,2,1,0,0,4,7.5673242,7.3671417,0,3,0,0,0,-9,0,-1067.0909,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,16,3,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.120001,60.080002,-9,-9,4,1,1,0,0,12,3,1,501,98581.375,0,0,1420.6155 -13389,16410,29894,29895,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,1,3,2.0174971,2.0861714,0,2,0,-9,11,0,3,25.537376,0,0,0,47,1,4,1,-9,-9,2019,1,1,10,0,40,48,15,1,0,1,0,.024911696,.024911696,0,0,0,0,0,0,0,0,1,0,1,7.4969568,0,0,0,46.400002,52.900002,48.279999,60.18,6,1,1,0,0,10,4,1,1324.5,423775.75,0,0,3838.8149 -13389,16410,29895,29894,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,4,9.0917654,9.0200081,0,2,0,-9,23,0,-3,68.391365,0,0,0,50,2,3,1,2,2,2019,1,2,15,4,42,10,15,1,1,1,0,24.009838,24.009838,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.279999,60.18,46.400002,52.900002,6,1,1,0,0,10,4,1,1324.5,423775.75,0,0,3838.8149 -13389,16411,29896,-9,29895,29894,3,1,0,19,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-969.89154,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,10,1,1,610,-5138.7729,0,0,880.20825 -13390,16412,29897,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,0,2,7.9279308,8.1499043,7.2352824,3,0,0,0,-9,0,-913.1972,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,33,36,15,1,0,-9,0,9.1596279,9.1596279,0,0,0,0,0,0,0,0,0,0,0,.99417812,7.0412807,0,0,59.400002,40.849998,-9,-9,6,1,1,0,0,13,4,1,475,122047.84,0,0,3134.8503 -13391,16413,29898,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1077.7186,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,44,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8725462,3,29.77,55.299999,-9,-9,5,1,1,1,0,6,1,0,1119,48322.602,0,0,0 -13392,16414,29899,29900,-9,-9,2,1,1,40,1,0,0,0,1,-9,2,1,0,0,3,8.7466583,8.7506332,0,1,0,-9,2,0,13,-38.105518,0,0,0,27,1,4,1,-9,-9,2019,1,1,10,0,38,43,15,1,0,1,0,15.808396,15.808396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.700001,38.279999,63.48,5,1,1,0,0,2,5,0,339,359993.25,0,0,2617.2314 -13392,16414,29900,29899,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.4954271,8.4548368,0,1,0,-9,2,0,-13,4.2439647,0,1,1,40,1,3,1,2,2,2019,1,2,23,7,37,37,15,1,1,1,0,16.469883,16.469883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.279999,63.48,47.32,52.700001,3,1,1,0,0,2,5,0,339,359993.25,0,0,2617.2314 -13393,16415,29901,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,2,7.8270411,7.6760106,0,3,0,0,0,-9,0,-1129.9208,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,35,40,15,1,0,-9,0,8.6156902,8.6156902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.689999,-9,-9,6,1,1,0,0,1,3,0,763,91511.383,0,0,729.87097 -13394,16416,29902,29903,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-3,51.374107,0,0,0,80,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.650002,51.639999,60.700001,47.650002,5,1,1,0,0,10,2,1,1053,-38858.117,0,0,1620.7937 -13394,16416,29903,29902,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,0,4,0,7.200388,6.6484632,1,0,-9,46,0,3,-115.08367,0,0,0,77,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5806372,6.7116518,0,0,60.700001,47.650002,52.650002,51.639999,6,1,1,0,0,10,2,1,1053,-38858.117,0,0,1620.7937 -13395,16417,29904,-9,-9,-9,1,1,0,41,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1014.2706,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,31,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.33392167,0,0,0,19.83,40.060001,-9,-9,1,1,1,0,0,12,1,0,1826,0,0,0,1930.7191 -13396,16418,29905,-9,29908,29909,5,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.78558,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,0,650,158949.3,0,0,2119.8748 -13396,16418,29906,-9,29908,-9,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.0298,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,0,650,158949.3,0,0,2119.8748 -13396,16418,29907,-9,29908,29909,6,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-900.23828,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,0,650,158949.3,0,0,2119.8748 -13396,16418,29908,29909,-9,-9,2,1,0,39,1,0,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,9,0,3,87.792892,0,0,1,36,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,40.310001,42.560001,52.139999,3,1,1,0,0,4,3,0,650,158949.3,0,0,2119.8748 -13396,16418,29909,29908,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,0,3,8.4096241,8.628355,0,2,0,-9,9,0,-3,-91.977638,0,0,0,39,2,2,3,2,3,2019,2,2,12,0,40,48,15,1,0,3,0,13.176362,13.176362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.560001,52.139999,33.66,40.310001,5,1,1,0,0,4,3,0,650,158949.3,0,0,2119.8748 -13396,16419,29910,-9,29908,-9,3,1,0,19,2,0,3,0,2,0,7,2,0,0,2,6.521244,6.3426118,0,3,0,0,0,-9,0,-912.32758,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,20,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.530001,42.279999,-9,-9,2,1,1,0,0,4,2,0,676,146113.53,0,0,569.26636 -13397,16420,29911,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,2,7.730864,8.006608,0,3,0,0,0,-9,0,-982.05994,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,37,39,15,1,0,-9,0,10.835551,10.835551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,24.700001,-9,-9,3,1,1,0,0,7,4,1,387,206696.28,0,0,2251.6216 -13398,16421,29912,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,0,3,7.7300844,7.8766732,0,3,0,0,0,-9,0,-1013.3549,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,18,18,15,1,0,-9,1,11.016997,11.016997,0,0,0,0,0,0,0,0,1,1,0,6.5033569,0,0,0,41.34,56.619999,-9,-9,6,1,1,0,0,11,3,1,387,-214857.36,0,0,782.64642 -13399,16422,29913,29914,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.500627,7.9633517,1,0,-9,7,0,-2,-115.47807,0,0,0,70,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3836795,7.7437258,0,0,57.509998,47.75,57.16,56.150002,6,1,1,0,0,13,4,1,211.5,1262746.6,0,0,3378.9834 -13399,16422,29914,29913,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.08321,8.0034609,1,0,-9,7,0,2,80.573448,0,0,0,68,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0538607,0,0,57.16,56.150002,57.509998,47.75,6,1,1,0,0,13,4,1,211.5,1262746.6,0,0,3378.9834 -13400,16423,29915,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,4,0,7.7539234,7.5641613,3,0,0,0,-9,0,-930.83331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,11,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6904268,7.5019217,0,0,51.830002,57.200001,-9,-9,2,1,1,0,0,2,3,1,581,998795.06,0,0,1290.2072 -13401,16424,29916,-9,-9,-9,2,1,1,29,2,0,0,0,1,-9,1,1,0,0,4,9.3606358,9.8121643,0,3,0,-9,0,-9,0,-1004.1027,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,50,0,15,1,0,-9,0,39.861538,39.861538,0,0,0,0,0,0,0,0,0,0,0,2.7474144,0,0,0,46.630001,59.720001,-9,-9,5,1,1,0,0,8,5,0,347,262015.03,0,0,4270.4189 -13401,16425,29917,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,1,1,0,0,5,9.6425867,9.4932003,0,3,0,0,0,-9,0,-944.70227,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,4,65,0,15,1,1,-9,0,25.113466,25.113466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.360001,65.290001,-9,-9,6,1,1,0,0,8,5,0,504,10019.523,0,0,9322.0596 -13402,16426,29918,29919,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.6234841,7.3073664,0,1,0,-9,33,0,-4,-6.3943801,0,0,0,60,1,3,1,2,2,2019,1,2,12,2,39,28,15,1,0,1,0,5.2235718,5.2235718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,5,1,1,0,0,5,4,1,806.5,614688.75,0,0,2488.7715 -13402,16426,29919,29918,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,3,8.4963884,8.4457445,0,1,0,-9,33,0,4,99.500008,0,0,0,56,2,3,1,2,2,2019,1,1,10,1,38,42,15,1,0,1,0,12.000252,12.000252,0,0,0,0,0,0,0,2,0,0,0,0,0,3.3318856,3,50,49,48,49,5,1,1,0,0,5,4,1,806.5,614688.75,0,0,2488.7715 -13402,16427,29920,-9,29918,29919,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,8.6911716,8.8144474,0,3,0,0,0,-9,0,-985.65649,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,35,30,15,1,0,-9,1,21.81505,21.81505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,5,5,1,333,-152946.72,0,0,1739.0856 -13403,16428,29921,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-936.85126,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,31.17,-9,-9,3,1,1,0,1,6,1,0,1572,239186.83,0,0,1209.7294 -13404,16429,29922,29923,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,1,1,8.170393,8.1871281,0,1,0,-9,8,0,1,-78.435394,0,0,0,49,2,2,1,2,2,2019,1,2,36,12,39,38,15,1,1,1,0,11.273492,11.273492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.68,33.66,50.610001,44.529999,5,1,1,0,0,1,5,1,771,763304.69,0,0,3284.0684 -13404,16429,29923,29922,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,2,8.3792639,8.9909201,0,1,0,-9,8,0,-1,37.744564,0,0,0,50,2,1,1,-9,-9,2019,1,1,11,0,43,49,15,1,0,1,0,13.707839,13.707839,0,0,0,0,0,0,0,2,1,1,0,0,0,4.2031832,1,50.610001,44.529999,27.68,33.66,6,1,1,0,0,1,5,1,771,763304.69,0,0,3284.0684 -13405,16430,29924,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,3,0,6.6140246,6.7878904,3,0,0,0,-9,0,-1118.5051,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1357932,6.5847588,0,0,51.169998,49.389999,-9,-9,3,1,1,0,0,5,2,1,1236,488619.69,0,0,1883.4413 -13406,16431,29925,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,6.6118546,6.6019545,3,0,0,0,-9,0,-988.99249,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2963223,6.999042,0,0,45.119999,45.400002,-9,-9,6,1,1,0,0,12,2,1,499,383821.16,0,0,125.65924 -13407,16432,29926,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,0,5,0,7.3386488,7.0570784,3,0,0,0,-9,0,-981.8728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4946151,0,0,67.919998,41.849998,-9,-9,7,1,1,0,0,12,3,1,85,-139434.2,0,0,605.9834 -13408,16433,29927,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,0,3,0,6.9416666,6.8152876,3,0,0,0,-9,0,-1115.5725,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,0,45,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.8587649,6.8685484,9.9278746,3,39.5,56.189999,-9,-9,4,1,1,0,0,2,2,1,1853,106349.49,0,0,481.7644 -13408,16434,29928,-9,29927,-9,2,1,1,32,2,0,0,0,1,-9,2,1,0,0,3,7.5402431,7.6841159,0,3,0,0,0,-9,0,-1029.3738,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,22,22,15,1,0,-9,1,11.558161,11.558161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.470001,58.080002,-9,-9,3,1,1,0,0,2,3,1,371,16302.414,0,0,58.449993 -13409,16435,29929,29930,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,1,3,0,6.8398132,7.0739484,1,0,-9,10,0,0,-66.051361,0,0,0,71,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2712803,6.9710712,0,0,50,47,45.560001,60.259998,5,1,1,0,0,7,3,1,204.5,1032042.8,0,0,4171.314 -13409,16435,29930,29929,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.4517541,7.3547678,1,0,-9,40,0,0,44.598316,0,0,0,71,2,3,3,2,3,2019,4,2,9,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.1135111,7.6682858,26.677841,1,45.560001,60.259998,50,47,5,1,1,0,0,7,3,1,204.5,1032042.8,0,0,4171.314 -13410,16436,29931,-9,-9,-9,3,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.5495176,8.5035534,0,3,0,0,0,-9,0,-989.95294,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,38,15,1,0,-9,1,11.157149,11.157149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,5,4,1,542,8149.0732,0,0,2330.9111 -13411,16437,29932,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1014.1151,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9498801,0,0,0,42.810001,39.77,-9,-9,6,1,1,0,0,5,1,1,313,-26346.471,0,0,172.22603 -13412,16438,29933,29934,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.2909136,7.2266078,1,0,-9,37,0,5,-52.310085,0,0,0,60,1,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0623832,7.3307657,0,0,61.119999,51.57,49.970001,40.310001,6,1,1,0,0,10,5,1,599,1962964.5,0,0,2709.2236 -13412,16438,29934,29933,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,0,3,8.4080086,8.6942844,0,1,0,-9,36,0,-5,-64.014282,0,0,0,65,1,4,3,2,-9,2019,2,1,10,1,40,42,15,1,0,4,0,18.926128,18.926128,0,0,0,0,0,0,0,0,0,0,0,4.3670077,0,0,0,49.970001,40.310001,61.119999,51.57,5,1,1,0,0,10,5,1,599,1962964.5,0,0,2709.2236 -13413,16439,29935,29936,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,2,0,7.156909,7.1772885,1,0,-9,6,0,2,47.094227,0,0,0,80,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9030857,7.2230806,0,0,50.130001,47.52,54.790001,55.860001,7,1,1,0,0,6,2,1,483,473286,0,0,1480.0195 -13413,16439,29936,29935,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-2,-2.0263886,0,0,0,82,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9609282,0,0,0,54.790001,55.860001,50.130001,47.52,6,1,1,0,0,6,2,1,483,473286,0,0,1480.0195 -13414,16440,29937,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,3,8.2881451,8.4514265,0,3,0,0,0,-9,0,-1073.7432,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,40,15,1,0,-9,0,11.843123,11.843123,0,0,0,0,0,0,0,0,0,0,0,1.0339748,0,0,0,52.82,51.630001,-9,-9,5,1,1,0,0,6,4,1,389,454354.38,0,0,397.6181 -13415,16441,29938,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1039.543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.549999,21.98,-9,-9,5,1,1,0,0,13,1,0,319,153307.83,0,0,774.8551 -13416,16442,29939,29940,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,2,0,6.0409455,6.2953806,1,0,-9,58,0,-2,-31.626928,0,0,0,79,2,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4356875,0,0,60.290001,33.349998,60.900002,34.099998,6,1,1,0,0,5,2,1,1175,383464.69,0,0,1630.2072 -13416,16442,29940,29939,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,4,0,7.453444,7.0956831,1,0,-9,58,0,2,-2.6133764,0,0,0,77,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3731027,0,0,60.900002,34.099998,60.290001,33.349998,6,1,1,0,0,5,2,1,1175,383464.69,0,0,1630.2072 -13417,16443,29941,29942,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,1,3,6.3527651,6.8250723,0,1,0,-9,27,0,4,175.16484,0,0,0,49,1,4,1,-9,-9,2019,1,2,12,1,10,10,15,1,0,1,0,10.083811,10.083811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.02,58.57,46.099998,59.990002,6,1,1,0,0,2,2,1,1971,800722.5,0,0,5780.6479 -13417,16443,29942,29941,-9,-9,2,1,0,49,1,0,0,0,1,-9,1,1,0,0,4,6.3135071,6.4127045,0,1,0,-9,5,0,-4,98.365715,0,0,0,53,3,3,1,-9,-9,2019,1,1,12,3,30,40,15,1,0,1,0,1.8868381,1.8868381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.099998,59.990002,46.02,58.57,5,1,1,0,0,2,2,1,1971,800722.5,0,0,5780.6479 -13417,16444,29943,-9,29942,29941,3,1,0,21,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-916.28296,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.709999,60.27,-9,-9,5,1,1,0,0,2,1,1,588,0,0,0,0 -13417,16445,29944,-9,29942,29941,4,1,1,18,2,0,0,1,2,0,7,2,0,0,4,7.3514261,7.5508504,0,3,0,0,0,-9,0,-951.81488,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,59.130001,-9,-9,4,1,1,0,0,2,3,1,1549,148505.09,0,0,1374.189 -13418,16446,29945,29947,-9,-9,3,1,1,28,1,1,1,0,3,-9,2,1,0,0,3,7.835722,7.9777131,0,2,0,-9,2,0,4,28.351896,-9,1,0,24,2,2,3,-9,-9,2019,2,1,12,0,40,0,15,1,0,3,0,9.6929264,9.6929264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,54.119999,34.099998,43.009998,4,1,1,0,0,4,3,0,339,-36220.348,0,0,1341.9705 -13418,16446,29946,-9,29947,29945,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.37323,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,3,0,339,-36220.348,0,0,1341.9705 -13418,16446,29947,29945,-9,-9,1,1,0,24,1,1,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,2,0,-4,74.33345,0,1,1,28,3,3,1,2,2,2019,3,3,24,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.099998,43.009998,41.639999,54.119999,2,1,1,0,1,4,3,0,339,-36220.348,0,0,1341.9705 -13419,16447,29948,29949,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,0,4,9.0043106,9.1807365,0,1,0,-9,41,0,0,2.5753739,0,0,0,65,1,3,1,2,3,2019,1,2,7,0,20,36,15,1,0,1,0,40.988758,40.988758,0,0,0,0,0,0,0,2,1,1,0,0,0,8.1740875,3,55.360001,54.240002,41.23,59.349998,6,1,1,0,0,11,5,1,540.5,4378858,0,0,6984.4463 -13419,16447,29949,29948,-9,-9,2,1,1,65,1,0,0,0,1,-9,1,1,0,0,3,8.7412157,8.6284428,0,1,0,-9,41,0,0,-106.1545,0,0,0,65,1,4,1,2,2,2019,1,1,13,2,40,40,15,1,0,1,0,18.536625,18.536625,0,0,0,0,0,0,0,0,1,1,0,7.5522957,0,0,0,41.23,59.349998,55.360001,54.240002,6,1,1,0,0,11,5,1,540.5,4378858,0,0,6984.4463 -13420,16448,29950,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1153.9707,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,31,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.379999,38.970001,-9,-9,4,1,1,0,0,6,1,0,282,116612.3,0,0,226.26405 -13421,16449,29951,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,3,8.2861423,7.7944617,0,3,0,0,0,-9,0,-1014.4277,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,33,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,56.93,-9,-9,5,1,1,0,0,12,4,0,683,-87310.07,0,0,2082.9434 -13422,16450,29952,-9,29955,29954,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1099.61,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,4,4,1,444.79999,562523.81,0,0,4182.3838 -13422,16450,29953,-9,29955,29954,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.9268,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,444.79999,562523.81,0,0,4182.3838 -13422,16450,29954,29955,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,8.9975805,8.7654428,0,2,0,-9,7,0,1,70.027786,0,0,0,43,1,2,1,3,1,2019,1,1,10,0,43,43,15,1,0,1,0,22.173998,22.173998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,60.330002,18.6,60.82,5,1,1,0,0,4,4,1,444.79999,562523.81,0,0,4182.3838 -13422,16450,29955,29954,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,0,2,7.687305,8.0710745,0,2,0,-9,7,0,-1,80.148842,0,0,1,44,2,4,1,2,2,2019,1,2,32,12,30,30,15,1,1,1,0,10.857144,10.857144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.6,60.82,42.849998,60.330002,3,1,1,0,1,4,4,1,444.79999,562523.81,0,0,4182.3838 -13422,16450,29956,-9,29955,29954,4,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.1981,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,444.79999,562523.81,0,0,4182.3838 -13423,16451,29957,29958,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,2,0,7.144402,7.3211093,1,0,-9,8,0,1,33.712795,0,0,0,80,1,4,3,3,2,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,2.050724,0,0,0,0,0,1,1,0,4.3153791,7.2606335,0,0,29.559999,44.889999,54.740002,51.689999,3,1,1,0,0,2,2,1,388,738047.63,0,0,1483.2427 -13423,16451,29958,29957,-9,-9,2,1,0,80,1,0,0,0,1,-9,4,3,0,0,4,0,4.3416634,3.9829667,1,0,-9,8,0,-1,23.356459,0,0,0,81,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.8046087,4.5443521,0,0,54.740002,51.689999,29.559999,44.889999,6,1,1,0,0,2,2,1,388,738047.63,0,0,1483.2427 -13424,16452,29959,29960,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,4,7.8479567,7.9811711,0,1,0,-9,36,0,4,-65.555687,0,0,0,53,2,3,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,8.0768747,8.0768747,0,0,0,0,0,0,0,2,0,0,0,0,0,4.5087891,3,51.240002,58.84,43.369999,49.25,4,1,1,0,0,2,3,1,989,692024.75,0,0,1853.7568 -13424,16452,29960,29959,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,7.3760939,7.7065058,0,1,0,-9,36,0,-4,-98.018288,0,0,0,57,3,4,1,2,2,2019,1,1,10,0,60,0,15,1,0,1,0,3.015341,3.015341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.369999,49.25,51.240002,58.84,6,1,1,0,0,2,3,1,989,692024.75,0,0,1853.7568 -13425,16453,29961,29962,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,3,9.0634203,8.8077955,.64241004,1,0,-9,7,0,-2,-28.706091,0,0,0,65,2,3,3,-9,-9,2019,2,2,10,1,40,40,15,1,0,4,0,26.180895,26.180895,0,0,0,0,0,0,0,0,1,1,0,4.2533364,1.0817286,0,0,51,48,49.700001,45.869999,5,1,1,0,0,9,5,1,843.5,2758839.5,0,0,4116.96 -13425,16453,29962,29961,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.795455,8.0809736,1,0,-9,7,0,2,-49.408886,0,0,0,63,1,3,1,2,2,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4193139,7.7200522,7.8375435,3,49.700001,45.869999,51,48,6,1,1,0,0,9,5,1,843.5,2758839.5,0,0,4116.96 -13426,16454,29963,29964,-9,-9,2,1,1,71,1,0,0,0,1,-9,1,1,0,0,4,6.7882266,7.6898417,7.1588569,1,0,-9,52,0,1,-145.31914,0,0,0,70,1,4,3,1,1,2019,2,1,7,0,40,45,15,1,0,4,0,2.8621399,2.8621399,0,0,0,0,0,0,0,0,1,1,0,0,6.941534,0,0,54.200001,57.490002,54.77,55.869999,6,1,1,0,0,4,5,1,340.5,3212899,0,0,5007.9136 -13426,16454,29964,29963,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.4580765,8.21735,1,0,-9,52,0,-1,45.885006,0,0,0,71,1,4,1,3,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3493748,7.9594316,0,0,54.77,55.869999,54.200001,57.490002,6,1,1,0,0,4,5,1,340.5,3212899,0,0,5007.9136 -13427,16455,29965,-9,29968,-9,2,1,1,17,2,0,4,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-867.23932,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,0,751.40002,13356.822,0,0,2620.6899 -13427,16455,29966,-9,29968,-9,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1102.412,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,3,4,0,0,8,2,0,751.40002,13356.822,0,0,2620.6899 -13427,16455,29967,-9,29968,-9,3,1,1,15,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-822.2038,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,8,2,0,751.40002,13356.822,0,0,2620.6899 -13427,16455,29968,-9,-9,-9,1,1,0,41,2,0,4,0,3,-9,2,1,0,0,4,7.7374496,7.5671248,0,4,0,0,0,-9,0,-951.47754,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,25,23,15,1,0,-9,0,13.146975,13.146975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.639999,55.400002,-9,-9,7,3,4,0,0,8,2,0,751.40002,13356.822,0,0,2620.6899 -13427,16455,29969,-9,29968,-9,5,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-924.05298,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,751.40002,13356.822,0,0,2620.6899 -13428,16456,29970,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-966.71063,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.66,25.09,-9,-9,1,1,1,0,1,13,1,0,669,143319.84,0,0,1082.0284 -13428,16457,29971,-9,29970,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.7289791,7.2828927,0,3,0,0,0,-9,0,-1168.9797,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,40,0,15,1,0,-9,1,6.2508245,6.2508245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,1,13,3,0,1471,89266.844,0,0,1147.1147 -13428,16458,29972,-9,29970,-9,3,1,0,19,2,0,0,0,2,1,2,1,0,0,4,6.7979937,6.7232919,0,3,0,0,0,-9,0,-1040.5839,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,20,0,15,1,0,-9,1,5.0130825,5.0130825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,1,13,2,0,1069,84865.523,0,0,-279.99564 -13429,16459,29973,-9,29974,29975,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-938.87775,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,4,3,1,1029,368836.63,0,0,1145.3848 -13429,16459,29974,29975,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.650249,7.6490898,0,2,0,-9,17,0,-7,86.363487,0,0,0,53,2,3,1,2,2,2019,1,2,9,1,18,18,15,1,0,1,0,10.026409,10.026409,0,0,0,0,0,0,0,0,1,1,0,7.3555212,0,0,0,55.189999,54.259998,52,54.509998,6,1,1,0,0,4,3,1,1029,368836.63,0,0,1145.3848 -13429,16459,29975,29974,-9,-9,2,1,1,53,1,0,1,0,2,-9,1,1,0,0,3,6.5973759,6.681489,0,2,0,-9,18,0,7,29.724842,0,0,0,46,2,4,1,2,2,2019,1,1,12,0,60,60,15,1,0,1,0,1.4737328,1.4737328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,55.189999,54.259998,5,1,1,0,0,4,3,1,1029,368836.63,0,0,1145.3848 -13430,16460,29976,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,6.2433629,6.083703,3,0,0,0,-9,0,-998.30103,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.1677489,0,3,60.290001,52.110001,-9,-9,7,1,1,0,0,2,2,1,267,317938.88,0,0,-535.78632 -13431,16461,29977,29978,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,0,41.36586,0,0,0,57,2,4,3,-9,-9,2019,4,1,16,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.5230446,0,11.988994,3,38.529999,62.209999,50.91,54.790001,6,1,1,0,0,4,4,1,1201.5,1905132.3,0,0,2002.7676 -13431,16461,29978,29977,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,0,4,0,8.4341211,8.6502666,1,0,-9,32,0,0,-45.763069,0,0,0,57,2,4,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.4808416,8.2503738,11.205785,3,50.91,54.790001,38.529999,62.209999,7,1,1,0,0,4,4,1,1201.5,1905132.3,0,0,2002.7676 -13432,16462,29979,29980,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,53,0,-5,24.79546,0,0,0,75,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.33862764,0,0,0,59.310001,49.810001,40.299999,46.200001,7,1,1,0,0,12,2,1,658,309975,0,0,1800.0364 -13432,16462,29980,29979,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,1,3,0,5.5538902,5.4105282,1,0,-9,53,0,5,106.45266,0,0,0,70,2,3,3,-9,-9,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7755303,5.5774007,0,0,40.299999,46.200001,59.310001,49.810001,3,1,1,0,0,12,2,1,658,309975,0,0,1800.0364 -13433,16463,29981,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,0,3,7.8566356,7.6851521,0,3,0,0,0,-9,0,-1028.8888,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,30,15,1,0,-9,0,9.6436157,9.6436157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,4,1,1,0,0,12,3,1,207,-94174.055,0,0,1210.2733 -13434,16464,29982,29983,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,2,7.205132,7.2227635,0,1,0,-9,27,0,8,11.036843,0,0,0,49,2,3,1,3,2,2019,1,1,15,4,27,27,15,1,1,1,0,6.191555,6.191555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.700001,33.049999,54.369999,54.799999,4,1,1,0,0,6,3,1,492,472998.41,0,0,1367.2225 -13434,16464,29983,29982,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.0057745,6.9657717,0,1,0,-9,27,0,-8,3.8520994,0,0,0,57,2,2,1,-9,2,2019,1,2,6,0,15,15,15,1,0,1,0,9.2425547,9.2425547,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.4416256,3,54.369999,54.799999,51.700001,33.049999,5,1,1,0,0,6,3,1,492,472998.41,0,0,1367.2225 -13434,16465,29984,-9,29983,29982,3,1,1,19,2,0,0,1,2,0,7,2,0,0,4,5.5825496,5.4693832,0,3,0,0,0,-9,0,-967.79004,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,1,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.970001,55.18,-9,-9,7,1,1,0,0,6,2,1,310,-3901.2717,0,0,496.327 -13435,16466,29985,29986,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,3,9.0041552,9.2218609,0,2,0,-9,8,0,2,-2.4738414,0,0,0,51,1,3,1,-9,-9,2019,1,1,19,7,44,47,15,1,1,1,0,21.351641,21.351641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.119999,59.150002,56.939999,49.529999,3,1,1,0,1,1,5,1,858.5,1559515.3,0,0,5453.5225 -13435,16466,29986,29985,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,3,8.8239069,9.0973024,0,2,0,-9,26,0,-2,-11.608043,0,0,0,53,1,3,1,2,3,2019,1,2,7,0,33,43,15,1,0,1,0,24.186724,24.186724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,36.119999,59.150002,5,1,1,0,1,1,5,1,858.5,1559515.3,0,0,5453.5225 -13436,16467,29987,29988,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,2,0,0,0,0,69,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,28.458757,0,0,0,0,0,1,1,0,0,0,0,0,46.52,39.57,40.540001,52.049999,2,1,1,0,0,13,1,1,1234.5,95745.188,0,0,124.72369 -13436,16467,29988,29987,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,-2,0,0,0,0,71,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.970821,2,40.540001,52.049999,46.52,39.57,6,1,1,0,0,13,1,1,1234.5,95745.188,0,0,124.72369 -13436,16468,29989,-9,29988,29987,3,1,1,47,3,0,0,0,2,-9,2,1,0,0,4,8.0365105,7.828958,0,3,0,0,0,-9,0,-973.66779,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,45,15,1,0,-9,1,11.818174,11.818174,0,0,0,0,0,0,0,0,1,1,0,2.6179173,0,0,0,63.66,40.77,-9,-9,4,1,1,0,0,13,4,1,255,511145.97,0,0,1085.1348 -13437,16469,29990,29991,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,3,6.9926138,7.4507189,5.5137205,1,0,-9,36,0,3,62.804638,0,0,0,58,2,3,3,3,2,2019,2,2,11,2,15,15,15,1,0,4,0,10.401829,10.401829,0,0,0,0,0,0,0,0,0,0,0,3.4693332,5.7322531,0,0,49,48,62.029999,36.18,5,1,1,0,0,7,4,1,785.5,64558.723,0,0,2848.3574 -13437,16469,29991,29990,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,0,3,0,8.108016,8.265749,1,0,-9,36,0,-3,25.220661,0,0,0,61,1,3,1,3,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1226597,0,0,62.029999,36.18,49,48,6,1,1,0,0,7,4,1,785.5,64558.723,0,0,2848.3574 -13438,16470,29992,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-999.05438,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,58.369999,-9,-9,6,1,1,0,0,12,1,0,2299,21582.326,0,0,0 -13439,16471,29993,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,2,1,0,0,4,8.1707659,8.3147707,0,3,0,0,0,-9,0,-912.23016,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,41,41,15,1,0,-9,0,9.7630835,9.7630835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,7,4,0,1591,-20666.047,0,0,907.92377 -13440,16472,29994,29996,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,0,2,6.7014508,7.1705036,0,1,0,-9,42,0,-5,36.1521,0,0,0,67,2,1,3,3,3,2019,2,1,13,1,19,20,15,1,0,4,0,5.9480748,5.9480748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.209999,28.629999,64.309998,22.15,6,1,1,0,0,2,3,1,894,446116.91,0,0,2514.6792 -13440,16472,29995,-9,29994,29996,3,1,0,15,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1157.6809,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,1,894,446116.91,0,0,2514.6792 -13440,16472,29996,29994,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,1,0,8.2529497,8.0436506,1,0,-9,42,0,5,-53.16341,0,0,0,62,3,2,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1008883,0,0,64.309998,22.15,47.209999,28.629999,6,1,1,0,0,2,3,1,894,446116.91,0,0,2514.6792 -13441,16473,29997,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1023.7905,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,26.77,-9,-9,3,1,1,0,0,9,1,0,971,-83935.563,0,0,684.05945 -13442,16474,29998,-9,-9,-9,1,1,0,54,2,0,0,0,3,-9,2,1,0,0,2,7.4057426,7.3819046,0,3,0,-9,0,-9,0,-1114.4241,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,20,0,15,1,0,-9,0,7.6012788,7.6012788,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.849998,29.1,-9,-9,4,1,1,0,0,4,3,1,243,-165940.05,0,0,1241.4363 -13442,16475,29999,-9,29998,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,0,4,8.4205198,8.5239973,0,3,0,-9,0,-9,0,-1108.635,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,47,0,15,1,0,-9,1,9.9793653,9.9793653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,4,4,1,377,94019.938,0,0,2294.6445 -13443,16476,30000,30001,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.7360468,8.3804703,0,1,0,-9,12,0,3,10.365569,0,0,0,50,1,3,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,16.109423,16.109423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.68,58.580002,63.02,35.77,6,1,1,0,0,6,5,1,481,347899.41,0,0,5191.8521 -13443,16476,30001,30000,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,8.9648705,8.9977646,0,1,0,-9,12,0,-3,139.30403,0,0,0,53,2,4,1,2,2,2019,1,1,7,0,32,54,15,1,0,1,0,34.523327,34.523327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.02,35.77,54.68,58.580002,7,1,1,0,0,6,5,1,481,347899.41,0,0,5191.8521 -13443,16477,30002,-9,30001,30000,3,1,0,21,2,0,0,0,3,-9,2,1,0,0,3,6.3347011,6.3301711,0,3,0,0,0,-9,0,-1016.435,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,30,15,1,0,-9,1,1.6207536,1.6207536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.700001,56.220001,-9,-9,6,1,1,0,0,6,2,1,312,66917.328,0,0,287.02759 -13444,16478,30003,30004,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.9037304,8.7130146,0,1,0,-9,40,0,2,48.388741,0,0,0,56,2,3,1,2,2,2019,1,1,12,0,60,60,15,1,0,1,0,16.175999,16.175999,0,0,0,0,0,0,0,0,0,0,0,4.0004416,0,0,0,57.34,47.919998,39.5,56.189999,6,1,1,0,0,12,5,1,307,608854.88,0,0,3559.0415 -13444,16478,30004,30003,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.3888674,8.0865297,0,1,0,-9,40,0,-2,34.578171,0,0,0,58,2,3,1,3,3,2019,1,2,13,2,33,33,15,1,0,1,0,15.115885,15.115885,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.241904,3,39.5,56.189999,57.34,47.919998,4,1,1,0,0,12,5,1,307,608854.88,0,0,3559.0415 -13445,16479,30005,30006,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,0,5,7.1018519,8.0733223,7.5949764,1,0,-9,6,0,1,146.55949,0,0,0,58,2,3,1,2,2,2019,1,1,6,0,12,0,15,1,0,1,0,8.9900799,8.9900799,0,0,0,0,0,0,0,2,0,0,0,0,7.6672397,0,3,60.02,56.419998,53.98,52.110001,6,1,1,0,0,13,5,1,1236,1115151.3,0,0,3369.3552 -13445,16479,30006,30005,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.975543,8.7427769,0,1,0,-9,6,0,-1,-27.311743,0,0,0,59,1,5,1,3,3,2019,1,2,12,3,43,43,15,1,0,1,0,16.520798,16.520798,0,0,0,0,0,0,0,0,0,0,0,5.9851856,0,0,0,53.98,52.110001,60.02,56.419998,6,1,1,0,0,13,5,1,1236,1115151.3,0,0,3369.3552 -13446,16480,30007,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,0,4,8.9466906,9.1192169,0,3,0,0,0,-9,0,-1007.6237,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,32,120,15,1,0,-9,0,36.26759,36.26759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.580002,49.75,-9,-9,6,1,1,0,0,6,5,1,316,597631.06,0,0,2100.0698 -13447,16481,30008,30009,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,1,1,7.9148679,8.2414265,7.4045401,1,0,-9,8,0,-5,-54.794075,0,0,0,64,2,5,1,-9,-9,2019,1,2,30,10,37,37,15,1,1,1,0,10.552971,10.552971,0,0,0,0,0,0,0,0,1,1,0,0,7.1749959,0,0,21.879999,24.139999,69.459999,39.709999,2,1,1,0,0,4,5,1,1289.5,1815023,0,0,3452.3911 -13447,16481,30009,30008,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,5,7.5237088,8.1456594,6.5493798,1,0,-9,8,0,5,19.681004,0,0,0,59,1,1,1,-9,-9,2019,1,1,4,0,39,34,15,1,0,1,0,6.2953024,6.2953024,0,0,0,0,0,0,0,0,1,1,0,0,6.8392663,0,0,69.459999,39.709999,21.879999,24.139999,6,1,1,0,1,4,5,1,1289.5,1815023,0,0,3452.3911 -13448,16482,30010,30011,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,3,0,0,0,0,65,1,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0969882,0,0,0,53,47,60.139999,44.41,5,1,1,0,0,2,1,1,691,266271.38,0,0,845.84332 -13448,16482,30011,30010,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,-3,0,0,0,0,68,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.139999,44.41,53,47,6,1,1,0,0,2,1,1,691,266271.38,0,0,845.84332 -13449,16483,30012,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,0,4,0,3.3755102,2.9303882,3,0,0,0,-9,0,-1023.2509,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4906003,3.0858319,0,0,46.630001,59.720001,-9,-9,6,1,1,0,0,5,2,1,2441,92456.578,0,0,1675.1809 -13450,16484,30013,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,2,8.148036,8.0403109,0,3,0,0,0,-9,0,-1015.8537,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,3,42,75,15,1,0,-9,0,8.7178411,8.7178411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,23.610001,-9,-9,4,1,1,0,0,2,4,1,881,285450.03,0,0,2328.2297 -13450,16485,30014,-9,30013,-9,2,1,0,30,2,0,0,0,2,0,7,2,0,0,3,6.4854937,6.6725283,0,3,0,0,0,-9,0,-1005.5463,-9,0,1,-9,-9,-9,-9,2,1,2019,-9,0,22,7,11,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.080002,43.490002,-9,-9,2,1,1,0,1,2,2,1,267,2955.46,0,0,1079.3574 -13451,16486,30015,30016,-9,-9,1,1,0,75,1,0,0,0,1,-9,4,3,0,0,5,0,6.6557498,6.7717953,1,0,-9,25,0,-2,-128.11876,0,0,0,77,1,5,3,2,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.6160891,6.7591953,2.7700186,3,49.25,61.25,48.959999,60.259998,6,1,1,0,0,2,5,1,297.5,2432510,0,0,6062.2119 -13451,16486,30016,30015,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,5,0,9.0369177,8.9460459,1,0,-9,25,0,2,-140.08917,0,0,0,75,1,5,3,2,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.3632123,8.8979406,4.4391208,3,48.959999,60.259998,49.25,61.25,6,1,1,0,0,2,5,1,297.5,2432510,0,0,6062.2119 -13452,16487,30017,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1036.2552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.919998,49.389999,-9,-9,7,1,1,0,0,12,1,1,517,11243.614,0,0,113.02835 -13453,16488,30018,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,0,3,0,8.2731361,8.2207165,3,0,0,0,-9,0,-983.19556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6463046,8.1203108,0,0,59.119999,36.619999,-9,-9,5,1,1,0,0,1,4,1,557,965630.25,0,0,1828.9609 -13454,16489,30019,30020,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,0,4,8.049365,7.7610269,0,2,0,-9,10,0,5,49.258549,0,0,0,53,3,4,1,-9,-9,2019,1,1,9,0,44,0,15,1,0,1,0,5.4064665,5.4064665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,61.73,45.119999,52.029999,6,1,1,0,0,9,3,0,631.5,578017.31,0,0,2336.314 -13454,16489,30020,30019,-9,-9,1,1,0,53,1,0,1,0,3,-9,2,1,0,0,4,7.4383287,7.6552196,0,2,0,-9,10,0,-5,-88.73941,0,0,0,58,2,4,1,2,2,2019,1,2,6,0,28,28,15,1,0,1,0,6.1570168,6.1570168,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.58066,3,45.119999,52.029999,35.790001,61.73,1,1,1,0,0,9,3,0,631.5,578017.31,0,0,2336.314 -13454,16490,30021,-9,30020,30019,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,7.0700521,6.9149022,0,3,0,0,0,-9,0,-941.2511,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,16,45,15,1,0,-9,1,6.5575867,6.5575867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62,52.77,-9,-9,6,1,1,0,0,9,2,0,144,119598.33,0,0,225.33551 -13455,16491,30022,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,7.102674,7.10677,3,0,0,0,-9,0,-1051.5919,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3589151,7.0817738,0,0,43.830002,43.240002,-9,-9,6,1,1,0,0,9,2,1,827,1058148.4,0,0,952.93805 -13456,16492,30023,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1012.204,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,8.6432619,0,0,0,0,137.19835,0,1,1,0,0,0,0,0,35.169998,15.39,-9,-9,2,1,1,0,0,9,1,0,261,274017.28,0,0,856.7124 -13457,16493,30024,30025,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,0,4,7.1729193,7.2755017,5.1954904,1,0,-9,15,0,-10,-35.423569,0,0,0,68,3,3,1,-9,-9,2019,1,2,3,0,48,40,15,1,0,1,0,2.8005645,2.8005645,0,0,0,0,0,0,0,2,0,0,0,0,5.2917733,0,3,57.16,56.150002,51,48,6,1,1,0,0,4,4,1,641,295691.88,0,0,2175.3833 -13457,16493,30025,30024,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,0,3,7.8906107,8.5455418,6.5826125,1,0,-9,9,0,10,1.3396918,0,0,0,58,2,4,1,-9,-9,2019,1,1,10,1,44,40,15,1,0,1,0,8.5558949,8.5558949,0,0,0,0,0,0,0,0,0,0,0,0,6.0737109,0,0,51,48,57.16,56.150002,5,1,1,0,0,4,4,1,641,295691.88,0,0,2175.3833 -13458,16494,30026,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,4,9.0281553,8.808322,0,3,0,0,0,-9,0,-964.20789,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,37,37,15,1,0,-9,0,26.87237,26.87237,0,0,0,0,0,0,0,0,1,1,0,1.2691733,0,0,0,37.990002,47.349998,-9,-9,3,1,1,0,0,11,5,1,96,447743.44,0,0,3859.9514 -13458,16495,30027,-9,30026,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,8.8068218,8.7211809,0,3,0,0,0,-9,0,-927.46155,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,11,5,1,305,122988.94,0,0,3138.7107 -13459,16496,30028,30030,-9,-9,1,1,0,40,1,1,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-5,-20.316174,0,0,1,45,1,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,55,5,2,3,0,0,8,2,1,871.79999,1192778.1,0,0,3278.2493 -13459,16496,30029,-9,30028,30030,5,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.37378,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,1,871.79999,1192778.1,0,0,3278.2493 -13459,16496,30030,30028,-9,-9,2,1,1,45,1,1,4,0,1,-9,2,1,0,0,4,7.9325051,8.0204468,0,2,0,-9,6,0,5,-51.76532,0,0,0,40,2,4,3,-9,-9,2019,2,1,9,1,40,40,15,1,0,3,0,8.0597677,8.0597677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,50,55,6,2,3,0,0,8,2,1,871.79999,1192778.1,0,0,3278.2493 -13459,16496,30031,-9,30028,30030,6,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-986.85571,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,1,871.79999,1192778.1,0,0,3278.2493 -13459,16496,30032,-9,30028,30030,3,1,1,16,2,1,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.9903,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.889999,53.75,-9,-9,3,2,3,0,0,8,2,1,871.79999,1192778.1,0,0,3278.2493 -13460,16497,30033,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,6.8756061,7.1479368,3,0,0,0,-9,0,-998.39209,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4644098,6.7583094,0,0,40.720001,54.380001,-9,-9,4,1,1,0,0,9,2,1,890,672505.06,0,0,1547.7964 -13461,16498,30034,30036,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,0,3,7.7813358,8.104207,0,2,0,-9,5,0,-1,2.7437468,0,0,1,35,2,3,1,-9,-9,2019,1,1,13,1,24,20,15,1,0,1,0,11.778193,11.778193,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.549999,48.279999,33.389999,54.830002,5,1,1,0,0,1,5,1,667,250870.02,0,0,4161.6655 -13461,16498,30035,-9,30034,30036,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-822.76105,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,1,5,1,667,250870.02,0,0,4161.6655 -13461,16498,30036,30034,-9,-9,1,1,1,35,1,1,1,0,2,-9,2,1,0,0,3,9.1504297,8.7398071,0,2,0,-9,5,0,1,53.579449,0,0,0,34,1,3,1,2,2,2019,1,2,16,4,40,35,15,1,1,1,0,23.980513,23.980513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.389999,54.830002,44.549999,48.279999,5,1,1,0,0,1,5,1,667,250870.02,0,0,4161.6655 -13462,16499,30037,-9,30039,30038,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.1355,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,4,5,1,1321.25,1693955.5,0,0,4300.4087 -13462,16499,30038,30039,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,8.7006712,8.8078632,0,2,0,-9,18,0,6,17.179638,0,0,0,41,1,2,1,3,3,2019,1,1,12,2,40,47,15,1,0,1,0,15.768845,15.768845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,31.540001,43.959999,6,2,3,0,0,4,5,1,1321.25,1693955.5,0,0,4300.4087 -13462,16499,30039,30038,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,2,8.5434752,8.6547508,0,2,0,-9,20,0,-6,-40.395142,0,0,1,47,1,3,1,3,2,2019,1,2,22,11,36,34,15,1,1,1,0,15.42756,15.42756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.540001,43.959999,45.73,57.57,3,1,1,0,0,4,5,1,1321.25,1693955.5,0,0,4300.4087 -13462,16499,30040,-9,30039,30038,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-997.4585,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,4,5,1,1321.25,1693955.5,0,0,4300.4087 -13463,16500,30041,-9,-9,-9,1,1,0,21,2,0,0,0,1,1,3,3,0,0,3,8.5429993,7.8863206,4.2077703,3,0,0,0,-9,0,-996.75262,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,38,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7221923,0,0,0,15.73,57.549999,-9,-9,2,1,1,1,0,8,4,0,628,38056.148,0,0,2156.3489 -13464,16501,30042,30043,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,5.9954133,6.0304594,1,0,-9,53,0,-1,11.874075,0,0,0,73,2,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0920596,0,0,53.970001,40.34,52.240002,50.75,6,1,1,0,0,6,2,1,1375,489731.69,0,0,1677.1799 -13464,16501,30043,30042,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,6.9168053,7.2412724,1,0,-9,53,0,1,-119.69411,0,0,0,72,3,2,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9627728,0,0,52.240002,50.75,53.970001,40.34,5,1,1,0,0,6,2,1,1375,489731.69,0,0,1677.1799 -13465,16502,30044,30046,-9,-9,2,1,1,39,1,2,2,0,2,-9,2,1,0,0,5,8.561717,8.6448612,0,2,0,-9,3,0,7,69.378471,0,0,0,32,1,4,1,-9,-9,2019,1,1,9,0,40,45,15,1,0,1,0,17.556871,17.556871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.669998,60.18,43.48,60.970001,6,1,1,0,0,11,5,1,476.75,710998.56,0,0,4515.813 -13465,16502,30045,-9,30046,30044,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-953.97058,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,5,1,476.75,710998.56,0,0,4515.813 -13465,16502,30046,30044,-9,-9,1,1,0,32,1,2,2,0,1,-9,2,1,0,0,4,8.1956263,8.4571095,0,2,0,-9,3,0,-7,-64.27401,0,0,1,39,2,5,1,2,2,2019,1,2,12,3,39,10,15,1,0,1,0,13.39205,13.39205,0,0,0,0,0,0,0,0,1,1,0,.76503688,0,0,0,43.48,60.970001,51.669998,60.18,6,1,1,0,0,11,5,1,476.75,710998.56,0,0,4515.813 -13465,16502,30047,-9,30046,30044,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1062.0183,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,5,1,476.75,710998.56,0,0,4515.813 -13466,16503,30048,30049,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.80124,7.5326648,1,0,-9,6,0,2,50.66468,0,0,0,69,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0448661,7.8967242,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,10,3,1,1026,966538.56,0,0,3090.8992 -13466,16503,30049,30048,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.3264461,7.3229499,1,0,-9,6,0,-2,22.931654,0,0,0,71,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1160293,7.3803787,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,10,3,1,1026,966538.56,0,0,3090.8992 -13467,16504,30050,-9,-9,-9,1,1,0,40,3,0,3,0,2,-9,3,3,0,0,2,0,5.5310421,5.5311532,4,0,0,0,-9,0,-1016.0461,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,84,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2940559,0,0,0,47.549999,33.799999,-9,-9,6,1,1,1,0,10,2,0,1543.5,-27705.328,0,0,2549.7166 -13467,16504,30051,-9,30050,-9,3,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-938.82233,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,6,0,0,10,2,0,1543.5,-27705.328,0,0,2549.7166 -13467,16504,30052,-9,30050,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1011.9771,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,10,2,0,1543.5,-27705.328,0,0,2549.7166 -13467,16504,30053,-9,30050,-9,2,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-954.67419,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,10,2,0,1543.5,-27705.328,0,0,2549.7166 -13468,16505,30054,30056,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,4,6.2224941,6.5084352,0,2,0,-9,6,0,4,69.48642,0,0,0,42,2,2,3,-9,-9,2019,2,1,9,1,30,0,15,1,0,3,0,2.1553962,2.1553962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,50.66,50.080002,6,2,3,0,0,5,2,1,1333.6666,16253.46,0,0,1052.7939 -13468,16505,30055,-9,30056,30054,5,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.39447,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.18,48.310001,-9,-9,4,2,3,0,0,5,2,1,1333.6666,16253.46,0,0,1052.7939 -13468,16505,30056,30054,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,23,0,-4,-66.06134,0,0,1,46,3,4,1,2,2,2019,3,2,1,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.66,50.080002,53,55,6,4,2,0,0,5,2,1,1333.6666,16253.46,0,0,1052.7939 -13468,16506,30057,-9,30056,30054,4,1,1,18,2,0,2,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1064.4098,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.389999,43.299999,-9,-9,4,4,2,0,0,5,1,1,103,-41478.066,0,0,0 -13469,16507,30058,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,0,4,9.1505079,9.1530342,0,3,0,0,0,-9,0,-893.70789,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,40,40,15,1,0,-9,0,29.154142,29.154142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,8,5,1,1027,70949.969,0,0,3472.6897 -13470,16508,30059,30060,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,1,0,0,0,1,0,-9,39,0,1,120.92031,0,0,0,61,1,5,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1384599,0,0,0,49.110001,45.349998,49.869999,58.27,6,1,1,0,0,9,3,1,668.5,625162.38,0,0,1054.4589 -13470,16508,30060,30059,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,5,0,8.0512123,8.201561,1,0,-9,35,0,-1,-107.25429,0,0,0,62,1,1,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,8.1856518,123.22655,1,49.869999,58.27,49.110001,45.349998,6,1,1,0,0,9,3,1,668.5,625162.38,0,0,1054.4589 -13470,16509,30061,-9,30060,30059,3,1,1,22,2,0,0,0,3,1,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-982.54517,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,1,1,141,60685.512,0,0,0 -13471,16510,30062,-9,30064,-9,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,4,0,-9,0,-9,0,-934.21094,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,5,2,0,415,111696.25,0,0,1201.9889 -13471,16510,30063,-9,30064,-9,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,-9,0,-9,0,-828.38708,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,5,2,0,415,111696.25,0,0,1201.9889 -13471,16510,30064,-9,-9,-9,1,1,0,42,2,0,2,0,3,-9,2,1,0,0,3,7.6791472,7.5696211,5.9309382,4,0,-9,0,-9,0,-1063.9891,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,19,7,40,0,15,1,1,-9,0,5.6802378,5.6802378,0,0,0,0,0,0,0,0,1,1,0,5.6753263,0,0,0,30.66,49.259998,-9,-9,3,1,1,0,0,5,2,0,415,111696.25,0,0,1201.9889 -13471,16511,30065,-9,30064,-9,2,1,1,23,2,0,2,0,2,-9,8,3,1,1,4,0,0,0,3,0,-9,0,-9,0,-925.22784,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,5,1,0,17,0,0,0,1598.8267 -13471,16512,30066,-9,30064,-9,3,1,0,19,2,0,2,0,2,-9,2,1,0,0,2,6.6977186,6.651546,0,3,0,-9,0,-9,0,-1006.005,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,23,8,12,0,15,1,1,-9,1,8.1484823,8.1484823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.690001,50.919998,-9,-9,2,1,1,0,0,5,2,0,679,37003.906,0,0,-520.67896 -13472,16513,30067,30069,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,0,3,8.2568569,7.8761425,0,2,0,-9,7,0,-2,62.319736,0,1,0,29,2,3,1,-9,-9,2019,1,1,11,0,42,43,15,1,0,1,0,8.8269911,8.8269911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.299999,52.040001,47.189999,45.82,6,1,1,0,0,2,3,0,326.66666,18830.766,0,0,1007.4459 -13472,16513,30068,-9,30069,30067,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.50598,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,326.66666,18830.766,0,0,1007.4459 -13472,16513,30069,30067,-9,-9,1,1,0,29,1,0,1,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,7,0,2,-103.57272,0,1,1,27,2,3,1,2,3,2019,1,2,12,0,15,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47.189999,45.82,45.299999,52.040001,5,1,1,0,0,2,3,0,326.66666,18830.766,0,0,1007.4459 -13473,16514,30070,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,2,1,0,0,2,7.4828444,8.0677671,7.5665574,3,0,0,0,-9,0,-1033.118,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,20,24,15,1,0,-9,0,9.8237152,9.8237152,0,0,0,0,0,0,0,0,0,0,0,0,7.2915626,0,0,48.889999,48.16,-9,-9,5,1,1,0,0,9,4,1,593,1490923.6,0,0,1468.1409 -13474,16515,30071,30072,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,10.022593,9.8798113,8.5592279,1,0,-9,16,0,1,-74.690689,0,0,0,58,1,4,1,3,3,2019,1,1,9,1,20,15,15,1,0,1,0,110.92393,110.92393,0,0,0,0,0,0,0,0,0,0,0,4.9902759,8.5627394,0,0,60.290001,52.110001,60.119999,54.799999,7,1,1,0,0,2,5,1,1052.5,190520.72,0,0,21268.396 -13474,16515,30072,30071,-9,-9,1,1,0,58,1,0,0,0,1,-9,1,1,0,0,4,9.8741112,9.7709589,0,1,0,-9,16,0,-1,-18.235676,0,0,0,59,2,3,1,3,2,2019,1,2,7,0,50,50,15,1,0,1,0,33.427055,33.427055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,60.290001,52.110001,6,1,1,0,0,2,5,1,1052.5,190520.72,0,0,21268.396 -13475,16516,30073,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,0,4,0,7.8106523,8.3258801,3,0,0,0,-9,0,-1071.5845,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0347261,0,0,49.669998,51.259998,-9,-9,7,1,1,0,0,11,4,1,231,961588.25,0,0,2641.6841 -13475,16517,30074,-9,-9,30073,2,1,0,22,2,0,0,1,2,0,7,2,0,0,3,5.9741864,6.3712664,0,3,0,0,0,-9,0,-1029.7626,-9,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,7,0,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,11,2,1,1423,209108.39,0,0,2352.3799 -13476,16518,30075,30076,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.3627114,7.288558,0,1,0,-9,10,0,-2,-170.96654,0,0,0,53,2,3,1,-9,-9,2019,1,1,17,6,25,22,15,1,1,1,0,7.3536448,7.3536448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.169998,50.599998,55.610001,50.299999,6,1,1,0,0,1,4,1,280.5,164946.92,0,0,1373.0122 -13476,16518,30076,30075,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.8160391,7.6451416,0,1,0,-9,10,0,2,-26.004927,0,0,0,51,2,3,1,2,2,2019,1,2,5,0,39,39,15,1,0,1,0,8.1247263,8.1247263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.610001,50.299999,37.169998,50.599998,7,1,1,0,0,1,4,1,280.5,164946.92,0,0,1373.0122 -13476,16519,30077,-9,30075,30076,3,1,1,21,2,0,0,0,1,1,2,1,0,0,4,6.7907224,6.8861609,0,3,0,0,0,-9,0,-984.62744,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,16,0,15,1,1,-9,1,7.895278,7.895278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.939999,60.380001,-9,-9,2,1,1,0,1,1,2,1,755,0,0,0,386.04541 -13477,16520,30078,30079,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-2,-34.953228,0,0,0,70,1,4,3,2,3,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0228262,0,0,0,43.360001,44.849998,47.07,56.639999,6,1,1,0,0,4,3,1,226,794782.5,0,0,3199.5474 -13477,16520,30079,30078,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.9301577,7.8008394,1,0,-9,6,0,2,-104.70572,0,0,0,68,2,3,3,2,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1675792,7.7818298,0,0,47.07,56.639999,43.360001,44.849998,6,1,1,0,0,4,3,1,226,794782.5,0,0,3199.5474 -13477,16521,30080,-9,30078,30079,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,5,7.8435497,7.5089402,0,3,0,0,0,-9,0,-1149.2123,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,35,15,15,1,0,-9,1,8.5103416,8.5103416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,4,1,1,0,0,4,3,1,1846,120097.06,0,0,890.93408 -13478,16522,30081,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,3.3474939,3.4096467,3,0,0,0,-9,0,-927.34485,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5536523,3.4145882,0,0,43.599998,51.610001,-9,-9,5,1,1,0,0,9,1,1,327,244679.48,0,0,1217.562 -13479,16523,30082,-9,30084,30086,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.796,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,4,1,1062.6,180275.03,0,0,3153.8333 -13479,16523,30083,-9,30084,30086,4,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1124.1995,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1062.6,180275.03,0,0,3153.8333 -13479,16523,30084,30086,-9,-9,1,1,0,39,1,1,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,-3,-125.67786,0,0,1,42,1,3,1,2,2,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.25,56.639999,56.5,48.330002,6,1,1,0,0,8,4,1,1062.6,180275.03,0,0,3153.8333 -13479,16523,30085,-9,30084,30086,3,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.1697,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,1062.6,180275.03,0,0,3153.8333 -13479,16523,30086,30084,-9,-9,2,1,1,42,1,1,3,0,1,-9,2,1,0,0,3,9.176342,9.398387,0,2,0,-9,8,0,3,-94.987137,0,0,0,39,1,3,3,-9,-9,2019,2,1,7,0,50,57,15,1,0,3,0,20.761827,20.761827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,48.330002,44.25,56.639999,5,1,1,0,0,8,4,1,1062.6,180275.03,0,0,3153.8333 -13480,16524,30087,-9,30088,-9,2,1,0,11,2,1,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1006.4487,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,12,1,0,1913,-137432.78,0,0,1607.6061 -13480,16524,30088,-9,-9,-9,1,1,0,37,2,1,2,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-1032.7307,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.950001,53.150002,-9,-9,5,1,1,0,0,12,1,0,1913,-137432.78,0,0,1607.6061 -13480,16524,30089,-9,30088,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-978.86871,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,1,0,1913,-137432.78,0,0,1607.6061 -13481,16525,30090,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,1,1,0,0,5,4.8378296,5.0795107,0,3,0,0,0,-9,0,-1005.6693,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,10,0,15,1,0,-9,0,2.0197034,2.0197034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.869999,-9,-9,2,3,4,0,1,8,2,0,353,123804.52,0,0,-379.10089 -13482,16526,30091,-9,30092,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1160.6558,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,4,3,0,605.66669,33373.105,0,0,1900.0244 -13482,16526,30092,-9,-9,-9,1,1,0,30,2,0,2,0,1,-9,2,1,0,0,4,7.93818,8.0011034,5.4525256,4,0,0,0,-9,0,-909.17224,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,41,39,15,1,0,-9,0,7.9478955,7.9478955,0,0,0,0,0,0,0,0,1,1,0,5.8323398,0,0,0,51.830002,57.200001,-9,-9,5,4,2,0,0,4,3,0,605.66669,33373.105,0,0,1900.0244 -13482,16526,30093,-9,30092,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1138.4575,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,4,3,0,605.66669,33373.105,0,0,1900.0244 -13483,16527,30094,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,5,7.2496738,7.2046046,0,3,0,0,0,-9,0,-1058.9285,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,8,12,15,1,0,-9,0,17.741356,17.741356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,1,2,1,445,214956.53,0,0,539.36395 -13484,16528,30095,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1052.7454,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,16.782202,15.075415,0,0,0,1,1,0,.48868802,0,0,0,44,28.75,-9,-9,3,1,1,0,0,11,1,1,251,1932.1571,0,0,21.445477 -13485,16529,30096,-9,30098,30097,2,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.27576,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,4,0,586.33331,-39809.219,0,0,2590.7271 -13485,16529,30097,30098,-9,-9,3,1,1,28,1,0,1,0,2,-9,2,1,0,0,4,7.9571042,8.3095617,0,2,0,-9,5,0,4,100.36392,0,1,0,24,2,4,1,-9,-9,2019,1,1,11,0,39,39,15,1,0,1,0,9.6424503,9.6424503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,32.07,58.470001,5,1,1,0,0,4,4,0,586.33331,-39809.219,0,0,2590.7271 -13485,16529,30098,30097,-9,-9,1,1,0,24,1,0,1,0,2,-9,2,1,0,0,4,8.0017223,7.8318887,0,2,0,-9,5,0,-4,-22.711676,0,1,1,28,2,4,1,3,3,2019,1,3,21,8,37,38,15,1,1,1,0,8.5606537,8.5606537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.07,58.470001,59.529999,56.439999,4,1,1,0,0,4,4,0,586.33331,-39809.219,0,0,2590.7271 -13486,16530,30099,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-881.9469,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.959999,37.93,-9,-9,5,1,1,0,0,13,1,0,1096,-120501.45,0,0,1992.2146 -13487,16531,30100,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,5.428277,5.4846387,3,0,0,0,-9,0,-1002.8497,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4627981,0,0,51,46,-9,-9,5,1,1,0,0,8,2,0,696,356772.75,0,0,-1027.3 -13488,16532,30101,30102,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,3,6.3543534,6.5054073,0,1,0,-9,36,0,-8,-19.168699,0,0,0,68,3,3,1,2,2,2019,1,2,9,1,40,40,15,1,0,1,0,1.9684608,1.9684608,0,0,0,0,0,0,0,2,1,1,0,.65802681,0,0,3,66.379997,32.82,57.330002,53.459999,6,1,1,0,0,6,3,1,518,899256.94,0,0,1334.7787 -13488,16532,30102,30101,-9,-9,2,1,0,68,1,0,0,0,3,-9,2,1,0,0,3,7.1422496,7.533937,5.4977398,1,0,-9,36,0,8,-53.496849,0,0,0,60,1,3,1,3,2,2019,1,1,9,0,27,25,15,1,0,1,0,5.288465,5.288465,0,0,0,0,0,0,0,0,1,1,0,5.607882,6.1617932,0,0,57.330002,53.459999,66.379997,32.82,6,1,1,0,0,6,3,1,518,899256.94,0,0,1334.7787 -13489,16533,30103,30104,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,1,3,0,7.0687714,6.5527749,1,0,-9,57,0,3,55.75547,0,0,0,74,2,2,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,16.471977,0,0,0,0,0,1,1,0,3.9155869,6.5615902,0,0,46.450001,39.560001,60.540001,34.779999,7,1,1,0,0,6,2,1,883,540440.63,0,0,2748.0681 -13489,16533,30104,30103,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,4.347342,3.9963427,1,0,-9,57,0,-3,-22.969019,0,0,0,77,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,19.299992,74.5,1,1,0,3.55723,4.1658487,63.792294,1,60.540001,34.779999,46.450001,39.560001,7,1,1,0,0,6,2,1,883,540440.63,0,0,2748.0681 -13490,16534,30105,30106,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,18,0,-11,0,0,0,0,64,2,2,3,3,3,2019,4,2,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7049208,0,0,0,54.369999,54.799999,49.23,38.900002,6,1,1,0,0,4,1,0,570.5,267880.13,0,0,1217.6744 -13490,16534,30106,30105,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,18,0,11,0,0,0,0,53,2,3,3,3,3,2019,4,1,7,1,0,30,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.23,38.900002,54.369999,54.799999,7,1,1,0,0,4,1,0,570.5,267880.13,0,0,1217.6744 -13491,16535,30107,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,2,1,0,0,3,7.8098607,7.6140413,0,3,0,0,0,-9,0,-1001.6019,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,4,35,30,15,1,1,-9,0,5.7295947,5.7295947,0,0,0,0,0,0,0,0,0,0,0,1.7101812,0,0,0,40.860001,46.259998,-9,-9,7,1,1,0,0,12,3,0,128,596678.94,0,0,1310.9817 -13492,16536,30108,30109,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,5,0,3.1680372,3.0598536,1,0,-9,31,0,15,-4.6152124,0,0,0,59,2,2,1,3,2,2019,3,2,14,3,0,0,15,4,0,1,0,0,0,1,0,21.54495,0,0,0,0,0,1,1,0,3.227453,3.4895709,0,0,59,54,44,38,5,3,4,0,0,8,3,0,833,931926.5,0,0,2251.668 -13492,16536,30109,30108,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.9615269,7.9827256,0,1,0,-9,31,0,-15,41.747284,0,0,0,74,2,5,3,3,2,2019,2,1,10,1,40,35,15,1,0,4,0,8.5095701,8.5095701,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.821091,1,44,38,59,54,2,3,4,0,1,8,3,0,833,931926.5,0,0,2251.668 -13493,16537,30110,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.1399493,7.1387577,3,0,0,0,-9,0,-966.77094,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9870615,7.4335666,0,3,50.27,44.25,-9,-9,6,1,1,0,0,7,2,1,200,911162.75,0,0,1157.5183 -13494,16538,30111,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,6.6628184,6.6139941,3,0,0,0,-9,0,-988.57257,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,8.9549103,6.5562148,0,0,0,1,1,0,5.0587645,6.3597035,0,0,38.509998,38.759998,-9,-9,7,1,1,0,0,9,2,1,1289,884347.75,0,0,-119.65688 -13495,16539,30112,-9,30113,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-863.45624,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,3,0,1142.6666,31082.516,0,0,2186.3799 -13495,16539,30113,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,0,4,8.0266972,8.5765686,5.8507872,4,0,0,0,-9,0,-964.73358,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,38,39,15,1,1,-9,0,10.406289,10.406289,0,0,0,0,0,0,0,0,1,1,0,6.6513557,0,0,0,31.120001,63.98,-9,-9,5,1,1,0,0,5,3,0,1142.6666,31082.516,0,0,2186.3799 -13495,16539,30114,-9,30113,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-813.69482,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,3,0,1142.6666,31082.516,0,0,2186.3799 -13496,16540,30115,30116,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,2,0,6.3448143,6.4483137,1,0,-9,3,0,5,129.14355,0,0,0,62,2,1,3,2,2,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4589591,6.6529379,0,0,57.09,33.470001,49.599998,35.84,3,1,1,0,0,5,2,1,273.5,271654.38,0,0,798.4472 -13496,16540,30116,30115,-9,-9,2,1,0,62,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,3,0,-5,-52.279404,0,0,0,67,2,2,3,3,3,2019,4,1,22,9,0,33,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.599998,35.84,57.09,33.470001,3,1,1,0,0,5,2,1,273.5,271654.38,0,0,798.4472 -13497,16541,30117,30118,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,2,8.1415482,8.7363453,0,1,0,-9,39,0,-1,67.848526,0,0,0,58,2,1,3,3,2,2019,2,2,12,0,38,42,15,1,0,4,0,13.739967,13.739967,0,0,0,0,0,0,0,0,0,0,0,.2522848,0,0,0,45,36.360001,40.549999,29.030001,5,1,1,0,0,12,4,1,809.5,365640.41,0,0,3311.9058 -13497,16541,30118,30117,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,0,1,0,7.4780431,7.3197141,1,0,-9,39,0,1,-38.008198,0,0,0,57,2,2,1,3,2,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.0772338,0,3,40.549999,29.030001,45,36.360001,4,1,1,0,0,12,4,1,809.5,365640.41,0,0,3311.9058 -13498,16542,30119,-9,30121,-9,3,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-871.91254,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,0,612,34425.25,0,0,2256.5703 -13498,16542,30120,-9,30121,-9,2,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1069.5012,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,0,612,34425.25,0,0,2256.5703 -13498,16542,30121,-9,-9,-9,1,1,0,32,3,0,3,0,2,-9,2,1,0,0,3,8.3744555,8.204669,6.1212964,4,0,-9,0,1,0,-912.29169,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,36,15,1,0,-9,0,14.046136,14.046136,0,0,0,0,0,0,0,0,1,1,0,6.313108,0,0,0,52.990002,51.279999,-9,-9,6,1,1,0,0,7,3,0,612,34425.25,0,0,2256.5703 -13498,16542,30122,-9,30121,-9,4,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-984.297,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,0,612,34425.25,0,0,2256.5703 -13499,16543,30123,30124,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.7659864,8.341053,0,1,0,-9,6,0,-8,-103.08754,0,0,0,57,2,3,1,-9,-9,2019,1,1,7,0,22,26,15,1,0,1,0,14.673337,14.673337,0,0,0,0,0,0,0,14.5,0,0,0,0,0,19.148788,3,57.16,56.150002,50,49,6,1,1,0,0,7,4,1,509.5,366111.88,0,0,2684.7153 -13499,16543,30124,30123,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.0663967,7.9567761,0,1,0,-9,6,0,8,1.8912783,0,0,0,49,2,4,1,2,3,2019,1,2,6,0,36,37,15,1,0,1,0,11.076882,11.076882,0,0,0,0,0,0,0,2,0,0,0,0,0,5.7003002,3,50,49,57.16,56.150002,6,1,1,0,0,7,4,1,509.5,366111.88,0,0,2684.7153 -13500,16544,30125,30126,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,0,-70.740822,0,0,0,71,3,2,3,2,2,2019,4,2,5,0,0,25,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.530087,0,0,0,58.43,51.57,44.330002,27.139999,6,1,1,0,0,10,2,1,880.5,468945.44,0,0,287.17084 -13500,16544,30126,30125,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.6489062,6.6447878,1,0,-9,52,0,0,-37.957447,0,0,0,71,1,3,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6966946,6.5244904,0,0,44.330002,27.139999,58.43,51.57,4,1,1,0,0,10,2,1,880.5,468945.44,0,0,287.17084 -13501,16545,30127,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,0,4,5.6600742,7.7224669,7.2128625,3,0,0,0,-9,0,-1015.9495,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,3,0,15,1,0,-9,0,11.780793,11.780793,0,0,0,0,0,0,0,0,1,1,0,0,7.2371716,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,4,3,0,513,343115.75,0,0,1002.5768 -13502,16546,30128,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1047.5135,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,50,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2.6032088,3,53.389999,49.669998,-9,-9,5,1,1,1,0,13,1,0,653,-189723.75,0,0,0 -13503,16547,30129,30130,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.1481438,8.7940102,6.6399374,1,0,-9,6,0,2,-55.080944,0,0,0,56,3,4,1,3,3,2019,1,2,10,0,41,41,15,1,0,1,0,12.261935,12.261935,0,0,0,0,0,0,0,0,0,0,0,0,7.1713037,0,0,63.240002,42.389999,62.490002,55.09,6,1,1,0,0,13,4,1,592,182183.78,0,0,2932.627 -13503,16547,30130,30129,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,7.9539618,7.9083872,0,1,0,-9,6,0,-2,31.685287,0,0,0,58,2,4,1,3,3,2019,1,1,6,0,28,28,15,1,0,1,0,7.7280645,7.7280645,0,0,0,0,0,0,0,0,0,0,0,3.9859362,0,0,0,62.490002,55.09,63.240002,42.389999,7,1,1,0,0,13,4,1,592,182183.78,0,0,2932.627 -13503,16548,30131,-9,30130,30129,3,1,1,30,2,0,0,0,2,-9,2,1,0,0,4,7.8141232,7.8034949,0,3,0,0,0,-9,0,-1065.5728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,42,15,1,0,-9,1,7.5323277,7.5323277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.580002,52.990002,-9,-9,6,1,1,0,0,13,3,1,419,47733.027,0,0,1818.8186 -13504,16549,30132,30133,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.0757771,7.9599862,1,0,-9,7,0,2,-69.547508,0,0,0,68,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6856203,7.9677734,0,0,50.41,53.709999,53.959999,50.73,6,1,1,0,0,2,3,1,969,1086785.3,0,0,3939.386 -13504,16549,30133,30132,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.8707905,6.8766403,1,0,-9,7,0,-2,19.189625,0,0,0,70,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3568239,0,0,53.959999,50.73,50.41,53.709999,6,1,1,0,0,2,3,1,969,1086785.3,0,0,3939.386 -13505,16550,30134,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,0,3,8.9372339,8.7567205,0,3,0,0,0,-9,0,-989.93909,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,2,43,41,15,1,0,-9,0,22.118462,22.118462,0,0,0,0,0,0,0,0,0,0,0,.76866955,0,0,0,47.299999,51.130001,-9,-9,2,1,1,0,0,4,5,1,568,645781.19,0,0,1815.5581 -13506,16551,30135,30136,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,1,0,7.5040021,7.2637315,1,0,-9,8,0,-1,122.48352,0,0,0,74,3,2,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.2671089,7.2918892,127.47643,3,55.68,24.790001,37.02,37.369999,4,1,1,0,0,1,2,1,416.5,841233.94,0,0,2720.9539 -13506,16551,30136,30135,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,1,-50.048962,0,0,0,73,2,1,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,15.369233,0,0,0,0,120,1,1,0,2.2227197,0,115.20481,3,37.02,37.369999,55.68,24.790001,5,1,1,0,0,1,2,1,416.5,841233.94,0,0,2720.9539 -13506,16552,30137,-9,30136,30135,3,1,1,48,2,0,0,0,2,1,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-970.32617,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,-9,-9,5,1,1,0,0,1,1,1,767,43231.418,0,0,202.31738 -13507,16553,30138,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,0,3,0,7.7193208,7.3815432,3,0,0,0,-9,0,-1087.3782,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2815413,7.5703683,0,0,47.529999,45.459999,-9,-9,6,1,1,0,0,7,3,1,834,844974.81,0,0,2815.1501 -13508,16554,30139,30140,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,24,0,4,0,0,0,0,76,1,2,3,3,3,2019,4,2,24,11,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,8.5897007,1,34.639999,15.66,41.610001,32.75,2,1,1,0,0,8,1,0,664.5,74114.758,0,0,3319.688 -13508,16554,30140,30139,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,1,2,0,0,0,1,0,-9,24,0,-4,0,0,0,0,80,2,1,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,118.15843,1,41.610001,32.75,34.639999,15.66,5,1,1,0,0,8,1,0,664.5,74114.758,0,0,3319.688 -13509,16555,30141,30142,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,0,4,9.467926,9.3227615,0,1,0,-9,32,0,16,12.171286,0,0,0,52,1,5,2,2,2,2019,2,1,11,0,52,53,15,1,0,2,0,29.210659,29.210659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.84,45.599998,48.18,61.799999,3,1,1,0,0,9,5,1,458,3219967.8,0,0,3097.7539 -13509,16555,30142,30141,-9,-9,1,1,0,52,1,0,0,0,1,-9,7,2,0,0,5,0,0,0,1,0,-9,32,0,-16,44.570816,1,0,0,68,1,4,1,2,1,2019,3,2,11,2,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6400609,0,0,0,48.18,61.799999,52.84,45.599998,3,1,1,0,0,9,5,1,458,3219967.8,0,0,3097.7539 -13509,16556,30143,-9,30142,30141,3,1,0,22,2,0,0,1,1,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-856.81659,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,24,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.200001,63.27,-9,-9,3,1,1,0,0,9,1,1,666,-1192.0027,0,0,0 -13510,16557,30144,-9,-9,-9,1,1,1,82,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1082.9719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.970001,61.889999,-9,-9,6,1,1,0,0,5,1,0,422,-84688.43,0,0,-21.969854 -13511,16558,30145,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,2,0,6.9785643,6.7634068,3,0,0,0,-9,0,-870.61224,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6025429,0,0,32.07,42.689999,-9,-9,6,1,1,0,0,2,2,1,151,225144.97,0,0,2703.4814 -13512,16559,30146,30149,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,0,4,8.8755722,8.8006268,0,2,0,-9,14,0,0,96.763641,0,0,0,31,2,4,1,-9,2,2019,1,1,10,1,45,40,15,1,0,1,0,22.080374,22.080374,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.077101,3,50,57,48,56,5,1,1,0,0,4,4,1,763.25,-25898.807,0,0,3159.981 -13512,16559,30147,-9,30149,30146,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.93097,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,763.25,-25898.807,0,0,3159.981 -13512,16559,30148,-9,30149,30146,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.1073,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,4,4,1,763.25,-25898.807,0,0,3159.981 -13512,16559,30149,30146,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,1,4,7.2733793,7.1148715,0,2,0,-9,16,0,0,-62.377251,0,0,1,31,2,4,1,2,2,2019,1,2,11,2,20,20,15,1,0,1,0,7.6704621,7.6704621,0,0,0,0,0,0,0,74.5,1,1,0,0,0,83.319687,3,48,56,50,57,5,1,1,0,0,4,4,1,763.25,-25898.807,0,0,3159.981 -13513,16560,30150,30151,-9,-9,1,1,0,37,1,0,3,0,2,0,7,2,0,1,4,0,0,0,2,0,-9,14,0,-5,-15.84296,-9,0,1,42,2,4,1,2,3,2019,3,2,9,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.939865,2,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,11,2,1,2143,-24666.666,0,0,2977.6746 -13513,16560,30151,30150,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,7.934967,7.7061906,0,2,0,-9,14,0,5,85.642807,0,0,0,37,2,4,2,3,3,2019,2,1,7,0,37,37,15,1,0,2,0,8.9296827,8.9296827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,11,2,1,2143,-24666.666,0,0,2977.6746 -13513,16560,30152,-9,30150,30151,6,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.7726,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,2,1,2143,-24666.666,0,0,2977.6746 -13513,16561,30153,-9,30150,30151,3,1,0,20,2,0,3,0,2,1,2,1,0,0,3,7.2661934,7.5034714,0,3,0,0,0,-9,0,-1128.1903,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,36,0,15,1,1,-9,1,3.5001292,3.5001292,0,0,0,0,0,0,0,0,1,1,0,1.5699935,0,0,0,35.310001,41.82,-9,-9,3,1,1,0,0,11,3,1,345,-136611.3,0,0,316.43771 -13514,16562,30154,30155,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,8.4022532,8.2937832,0,2,0,-9,8,0,-1,65.126389,0,0,1,37,2,3,1,2,3,2019,1,1,12,2,37,36,15,1,0,1,0,11.37491,11.37491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.690001,62.360001,56.349998,48.330002,5,1,1,0,0,10,4,1,1807,416040.72,0,0,3486.6155 -13514,16562,30155,30154,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,0,3,8.299387,8.4946394,0,2,0,-9,8,0,1,-19.228121,0,0,0,36,2,4,1,1,2,2019,1,2,7,0,40,40,15,1,0,1,0,10.947851,10.947851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.349998,48.330002,31.690001,62.360001,5,1,1,0,0,10,4,1,1807,416040.72,0,0,3486.6155 -13514,16562,30156,-9,30154,30155,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-867.19781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1807,416040.72,0,0,3486.6155 -13515,16563,30157,-9,30160,30159,1,1,1,32,2,0,0,0,2,-9,1,1,0,0,4,9.4718714,9.2894735,0,3,0,0,0,-9,0,-1021.7529,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,35.377693,35.377693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,13,5,1,467,-63839.281,0,0,3601.5288 -13515,16564,30158,-9,30160,30159,2,1,0,31,2,0,0,0,2,-9,2,1,0,0,5,7.6619372,7.5690622,0,3,0,0,0,-9,0,-907.78528,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,40,15,1,0,-9,1,7.648519,7.648519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,3,1,1527,-27178.832,0,0,1630.0646 -13515,16565,30159,30160,-9,-9,3,1,1,66,1,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,7,0,6,-145.476,0,0,0,60,3,3,1,3,3,2019,1,4,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49,48,5,1,1,0,0,13,2,1,1925.5,155401.97,0,0,1903.3442 -13515,16565,30160,30159,-9,-9,4,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,7.2763467,7.0364752,0,1,0,-9,7,0,-6,108.67455,0,0,0,66,3,3,1,3,3,2019,1,3,11,2,19,19,15,1,0,1,0,6.3571916,6.3571916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,52,48,5,1,1,0,0,13,2,1,1925.5,155401.97,0,0,1903.3442 -13515,16566,30161,-9,30160,30159,5,1,1,29,2,0,0,0,2,-9,2,1,0,0,5,8.1616955,8.1128626,0,3,0,0,0,-9,0,-982.83282,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,8.7825556,8.7825556,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,4,1,1870,42729.887,0,0,1374.3088 -13515,16567,30162,-9,30160,30159,6,1,1,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1063.679,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,-9,-9,2,1,1,0,1,13,1,1,96,0,0,0,1075.7697 -13516,16568,30163,30164,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,0,4,8.4043016,8.475316,0,2,0,-9,3,0,3,-78.555084,0,0,0,30,1,4,1,2,2,2019,1,2,10,1,42,42,15,1,0,1,0,12.049092,12.049092,0,0,0,0,0,0,0,0,1,1,0,7.3145051,0,0,0,42.049999,58.799999,54.790001,55.860001,6,1,1,0,0,2,4,1,656.66669,225359.89,0,0,3620.5969 -13516,16568,30164,30163,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,0,4,8.4029579,8.3342361,0,2,0,-9,3,0,-3,-53.280212,0,0,1,33,2,4,1,-9,-9,2019,1,1,9,1,39,0,15,1,0,1,0,12.113288,12.113288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,42.049999,58.799999,6,1,1,0,0,2,4,1,656.66669,225359.89,0,0,3620.5969 -13516,16568,30165,-9,30164,30163,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1080.0393,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,1,656.66669,225359.89,0,0,3620.5969 -13517,16569,30166,30167,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,8.3727064,8.618679,1,0,-9,8,0,4,21.200327,0,0,0,74,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8519716,8.2169409,0,0,43.540001,59.599998,44.32,40.259998,7,1,1,0,0,2,4,1,870.5,1883335.3,0,0,5771.9263 -13517,16569,30167,30166,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-4,115.65802,0,0,0,78,2,4,3,3,2,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.981087,0,0,0,44.32,40.259998,43.540001,59.599998,6,1,1,0,0,2,4,1,870.5,1883335.3,0,0,5771.9263 -13518,16570,30168,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,5.2034121,5.5271926,3,0,0,0,-9,0,-962.64868,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1868525,0,0,61.279999,48.880001,-9,-9,7,1,1,0,0,8,2,0,344,551833.19,0,0,2001.7587 -13519,16571,30169,30170,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.3182497,8.1966276,0,1,0,-9,24,0,0,-19.344572,0,0,0,53,2,4,1,2,2,2019,1,1,8,0,48,48,15,1,0,1,0,11.131629,11.131629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,60.119999,54.799999,6,1,1,0,0,7,4,1,547,156075.53,0,0,1721.6067 -13519,16571,30170,30169,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.4938679,7.4215331,0,1,0,-9,24,0,0,-42.574745,0,0,0,53,2,4,1,2,2,2019,1,2,6,0,33,32,15,1,0,1,0,6.9939017,6.9939017,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.210175,3,60.119999,54.799999,58.150002,52.91,6,1,1,0,0,7,4,1,547,156075.53,0,0,1721.6067 -13519,16572,30171,-9,30170,30169,3,1,1,28,2,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1002.8967,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,38,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4454682,0,0,0,54.369999,54.799999,-9,-9,3,1,1,1,0,7,1,1,225,-324637.97,0,0,19.679773 -13520,16573,30172,-9,-9,-9,1,1,1,51,3,1,1,0,2,-9,8,3,1,1,2,4.8514962,4.7369928,0,4,0,-9,0,-9,0,-1029.5695,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.73,29.67,-9,-9,4,1,1,0,1,9,2,0,1923,-166080.5,0,0,1527.5793 -13520,16574,30173,-9,30174,-9,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-850.19116,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,325.5,10638.158,0,0,-623.77686 -13520,16574,30174,-9,-9,30172,2,1,0,25,2,1,1,0,3,-9,6,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1020.325,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.75,56.389999,-9,-9,7,1,1,0,0,9,1,0,325.5,10638.158,0,0,-623.77686 -13521,16575,30175,30176,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.7422276,8.4908562,0,1,0,-9,20,0,-5,-30.682583,0,0,0,53,1,3,1,3,3,2019,1,2,12,2,44,46,15,1,0,1,0,15.593647,15.593647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.66,50.5,52,54.509998,6,1,1,0,0,9,5,1,849,666881.63,0,0,5673.9355 -13521,16575,30176,30175,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,0,3,9.0698862,8.9306507,0,1,0,-9,20,0,5,-58.426979,0,0,0,48,2,4,1,2,2,2019,1,1,9,0,50,70,15,1,0,1,0,18.609606,18.609606,0,0,0,0,0,0,0,0,0,0,0,1.3661747,0,0,0,52,54.509998,39.66,50.5,6,1,1,0,0,9,5,1,849,666881.63,0,0,5673.9355 -13521,16576,30177,-9,30175,30176,3,1,1,22,2,0,0,0,1,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-932.99146,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.52941203,0,0,0,43.919998,62.310001,-9,-9,6,1,1,1,0,9,1,1,1580,-60611.16,0,0,-502.04617 -13521,16577,30178,-9,30175,30176,4,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,7.3409047,7.3528404,0,3,0,0,0,-9,0,-897.78638,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,15,4,29,23,15,1,1,-9,1,6.2975473,6.2975473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.529999,58.91,-9,-9,6,1,1,0,0,9,3,1,834,-16098.485,0,0,2347.1782 -13522,16578,30179,30180,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,0,5,8.2274742,8.1527195,0,1,0,-9,6,0,7,-62.341423,0,0,0,26,1,5,1,2,1,2019,1,2,8,0,42,40,15,1,0,1,0,10.270693,10.270693,0,0,0,0,0,0,0,2,0,0,0,0,0,2.4346962,3,57.060001,57.759998,54.099998,59.110001,6,1,1,0,0,7,5,1,240,420796.97,0,0,3753.855 -13522,16578,30180,30179,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,5,8.7701302,8.6021643,0,1,0,-9,6,0,-7,43.365692,0,1,1,33,2,5,1,2,2,2019,1,1,6,0,8,35,15,1,0,1,0,63.62989,63.62989,0,0,0,0,0,0,0,0,0,0,0,4.6599789,0,0,0,54.099998,59.110001,57.060001,57.759998,6,1,1,0,0,7,5,1,240,420796.97,0,0,3753.855 -13523,16579,30181,-9,30182,30185,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-977.91547,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,642.40002,-27352.193,0,0,1739.3739 -13523,16579,30182,30185,-9,-9,2,1,0,30,1,0,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,1,-9,-1,34.243244,-9,0,1,31,2,4,1,-9,-9,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.23,47.349998,49.860001,55.310001,3,1,1,1,0,2,2,0,642.40002,-27352.193,0,0,1739.3739 -13523,16579,30183,-9,30182,30185,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-968.3374,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,2,0,642.40002,-27352.193,0,0,1739.3739 -13523,16579,30184,-9,30182,30185,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-995.17633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,2,0,642.40002,-27352.193,0,0,1739.3739 -13523,16579,30185,30182,-9,-9,1,1,1,31,1,0,3,0,2,-9,1,1,0,0,4,7.3280354,7.2577152,0,2,0,-9,1,-9,1,40.995502,-9,0,0,30,2,3,3,2,2,2019,2,2,10,0,60,0,15,1,0,3,0,3.3625147,3.3625147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,32.23,47.349998,4,1,1,0,0,2,2,0,642.40002,-27352.193,0,0,1739.3739 -13524,16580,30186,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,4,7.8288131,7.8165607,0,3,0,0,0,-9,0,-942.91174,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,43,40,15,1,0,-9,0,7.0223832,7.0223832,0,0,0,0,0,0,0,0,0,0,0,.52629125,0,0,0,55.939999,47.09,-9,-9,6,1,1,0,0,12,3,1,149,205329.52,0,0,1512.4268 -13524,16581,30187,-9,30186,-9,2,1,0,23,2,0,0,0,2,1,2,1,0,0,4,5.7733369,6.0325494,0,3,0,0,0,-9,0,-914.3609,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,14,0,15,1,0,-9,1,2.7980511,2.7980511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,12,2,1,182,-80005.594,0,0,-87.268555 -13525,16582,30188,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,0,4,0,7.7429891,7.8809891,3,0,0,0,-9,0,-1057.8475,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,8,1,0,36,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4919171,8.0048981,0,0,50.009998,49.779999,-9,-9,6,1,1,0,0,8,3,1,384,1017337.4,0,0,1100.3926 -13526,16583,30189,30191,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,0,4,8.6265659,8.6769447,0,2,0,-9,11,0,-1,18.365492,0,0,1,35,1,4,1,2,2,2019,1,1,6,0,38,50,15,1,0,1,0,15.528273,15.528273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,6,1,1,0,0,4,5,1,292,673167.31,0,0,4686.2285 -13526,16583,30190,-9,30189,30191,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-981.00366,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,4,5,1,292,673167.31,0,0,4686.2285 -13526,16583,30191,30189,-9,-9,1,1,1,35,1,1,1,0,1,-9,2,1,0,0,4,9.0506754,9.2874594,0,2,0,-9,11,0,1,10.603063,0,0,0,34,1,4,1,2,2,2019,1,2,6,0,38,40,15,1,0,1,0,20.031889,20.031889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,4,5,1,292,673167.31,0,0,4686.2285 -13527,16584,30192,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,0,4,0,8.4079247,8.2277832,3,0,0,0,-9,0,-1052.9574,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1012349,8.155983,0,0,37.740002,42.169998,-9,-9,6,1,1,0,0,11,4,1,796,758592.94,0,0,2855.3633 -13528,16585,30193,30194,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.8678255,6.87217,1,0,-9,54,0,0,-18.55978,0,0,0,77,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8971052,0,0,53,46,51,46,5,1,1,0,0,13,3,1,1590.5,873673.13,0,0,1579.9786 -13528,16585,30194,30193,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,6.9641733,7.0157166,1,0,-9,54,0,0,129.47488,0,0,0,77,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8294845,0,0,51,46,53,46,5,1,1,0,0,13,3,1,1590.5,873673.13,0,0,1579.9786 -13529,16586,30195,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,7.3361464,7.2806525,3,0,0,0,-9,0,-1053.0023,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,1.751596,0,0,0,0,45.086624,2,1,1,0,0,7.5387988,0,3,51.84,51.669998,-9,-9,7,1,1,0,0,9,3,1,659,521473.22,0,0,509.54645 -13530,16587,30196,30197,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,36,0,1,-72.69545,0,0,0,60,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,26.286062,3,55.360001,54.240002,51.240002,58.84,7,1,1,0,0,4,4,1,1068,1569604.5,0,0,3399.1528 -13530,16587,30197,30196,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,8.8678179,8.9282789,1,0,-9,36,0,-1,-49.066261,0,0,0,61,2,4,3,3,3,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.741312,8.8193417,0,0,51.240002,58.84,55.360001,54.240002,5,1,1,0,0,4,4,1,1068,1569604.5,0,0,3399.1528 -13531,16588,30198,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,3,7.0682187,7.0003662,0,3,0,0,0,-9,0,-1075.5621,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,16,0,15,1,1,-9,0,6.257421,6.257421,0,0,0,0,0,0,0,0,1,1,0,4.4524069,0,0,0,48.139999,53.419998,-9,-9,4,1,1,0,1,9,2,1,640,99766.602,0,0,-874.37488 -13531,16589,30199,-9,30198,-9,2,1,0,21,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-907.78192,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.209999,49.580002,-9,-9,5,1,1,1,0,9,1,1,904,-27181.361,0,0,0 -13532,16590,30200,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1099.7601,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.040001,38.310001,-9,-9,4,1,1,0,0,12,1,0,737,-74735.992,0,0,347.41312 -13533,16591,30201,30202,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,0,3,8.1921129,7.8724098,0,1,0,-9,25,0,0,4.8520479,0,0,0,49,2,3,1,2,2,2019,1,2,9,0,40,38,15,1,0,1,0,12.259155,12.259155,0,0,0,0,0,0,0,0,0,0,0,6.8825555,0,0,0,52.990002,36.139999,54.959999,53.169998,6,1,1,0,0,10,3,1,346,39838.391,0,0,2277.5776 -13533,16591,30202,30201,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,2,0,0,92.195236,0,0,0,49,3,3,1,-9,-9,2019,1,1,6,0,60,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,52.990002,36.139999,6,1,1,0,0,10,3,1,346,39838.391,0,0,2277.5776 -13533,16592,30203,-9,30201,30202,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,5,7.9736137,7.6943331,0,3,0,0,0,-9,0,-1027.4265,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,45,15,1,0,-9,1,7.0898137,7.0898137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,10,4,1,520,-24702.553,0,0,1074.6688 -13533,16593,30204,-9,30201,30202,4,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,8.3472147,8.3055191,0,3,0,0,0,-9,0,-1018.1876,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,45,45,15,1,0,-9,1,10.001233,10.001233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,10,4,1,141,5623.0288,0,0,2411.074 -13534,16594,30205,30206,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,5.941298,7.9654217,7.8896236,1,0,-9,8,0,4,110.98323,0,0,0,64,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6214101,7.8460441,0,0,57.16,56.150002,52.23,55.599998,6,1,1,0,0,13,3,1,349.5,1305383.4,0,0,2966.356 -13534,16594,30206,30205,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-4,-6.3594551,0,0,0,68,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4844589,0,0,0,52.23,55.599998,57.16,56.150002,6,1,1,0,0,13,3,1,349.5,1305383.4,0,0,2966.356 -13535,16595,30207,-9,30208,30209,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1030.3248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,1,289.5,36500.813,0,0,2457.4668 -13535,16595,30208,30209,-9,-9,1,1,0,23,1,1,2,0,2,-9,1,1,0,0,3,6.8560143,7.0412884,0,2,0,-9,4,0,-2,50.963474,0,1,1,25,2,2,1,2,1,2019,1,2,21,8,10,20,15,1,1,1,0,11.258797,11.258797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.209999,16.309999,59.27,2,1,1,0,0,5,3,1,289.5,36500.813,0,0,2457.4668 -13535,16595,30209,30208,-9,-9,2,1,1,25,1,1,2,0,2,-9,2,1,0,0,2,8.1999884,8.5959444,0,2,0,-9,4,0,2,68.940704,0,1,0,23,2,3,1,-9,-9,2019,1,1,25,11,50,50,15,1,1,1,0,13.602885,13.602885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.309999,59.27,33.43,59.209999,3,1,1,0,0,5,3,1,289.5,36500.813,0,0,2457.4668 -13535,16595,30210,-9,30208,30209,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.89117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,1,289.5,36500.813,0,0,2457.4668 -13536,16596,30211,30213,-9,-9,1,1,1,32,1,0,1,0,2,-9,2,1,0,0,4,8.1935921,8.0402126,0,2,0,-9,11,0,4,79.828224,0,0,0,28,2,4,1,-9,2,2019,1,2,9,0,37,37,15,1,0,1,0,11.247909,11.247909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,7,3,0,329,-58726.234,0,0,2198.8923 -13536,16596,30212,-9,30213,30211,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.0905,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,0,329,-58726.234,0,0,2198.8923 -13536,16596,30213,30211,-9,-9,2,1,0,28,1,0,1,0,2,-9,2,1,0,0,4,7.0186806,7.3043165,0,2,0,-9,11,0,-4,-143.86647,0,1,1,32,2,4,1,2,3,2019,1,1,7,0,18,19,15,1,0,1,0,9.1734667,9.1734667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,7,3,0,329,-58726.234,0,0,2198.8923 -13537,16597,30214,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,1,1,0,0,2,0,5.5365891,5.5117545,3,0,0,0,-9,0,-1042.4673,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,30,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.4025373,5.229259,0,0,47.459999,15.97,-9,-9,4,1,1,0,0,10,2,1,942,-90570.563,0,0,1351.079 -13538,16598,30215,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,0,1,0,6.6063614,6.2469172,3,0,0,0,-9,0,-886.34027,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8440132,6.8102512,0,0,58.639999,20.74,-9,-9,6,1,1,0,0,10,2,0,503,462951.38,0,0,579.58496 -13539,16599,30216,30217,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,-1,-84.153885,0,0,0,75,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6747918,0,0,0,57.330002,53.459999,56.939999,49.529999,6,1,1,0,0,10,2,1,733.5,1163739.9,0,0,1234.4764 -13539,16599,30217,30216,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.0344868,7.1496677,1,0,-9,56,0,1,-95.960609,0,0,0,74,2,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9148383,7.0388017,0,0,56.939999,49.529999,57.330002,53.459999,5,1,1,0,0,10,2,1,733.5,1163739.9,0,0,1234.4764 -13540,16600,30218,-9,30222,-9,2,1,1,15,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1188.0858,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,1446.2,-42431.754,0,0,3342.5718 -13540,16600,30219,-9,30222,-9,3,1,1,13,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.3848,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,1446.2,-42431.754,0,0,3342.5718 -13540,16600,30220,-9,30222,-9,4,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1026.8951,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,1,0,1446.2,-42431.754,0,0,3342.5718 -13540,16600,30221,-9,30222,-9,5,1,1,1,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1028.1221,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,1,0,1446.2,-42431.754,0,0,3342.5718 -13540,16600,30222,-9,-9,-9,1,1,0,39,3,1,4,0,2,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-919.05811,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.85193,3,48.279999,60.18,-9,-9,7,1,1,0,0,9,1,0,1446.2,-42431.754,0,0,3342.5718 -13541,16601,30223,30225,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,0,3,9.4155159,9.4418669,0,2,0,-9,10,0,-2,50.325211,0,0,0,47,1,4,1,-9,-9,2019,1,1,10,0,37,0,15,1,0,1,0,35.124477,35.124477,0,0,0,0,0,0,0,0,0,0,0,1.4140954,0,0,0,42.77,58.91,40.84,58.009998,3,1,1,0,0,8,5,1,512,1539981.3,0,0,6913.8413 -13541,16601,30224,-9,30223,30225,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-954.37958,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,8,5,1,512,1539981.3,0,0,6913.8413 -13541,16601,30225,30223,-9,-9,1,1,1,47,1,0,1,0,1,-9,1,1,0,0,4,7.4454255,7.0044475,0,2,0,-9,21,0,2,26.790234,0,0,0,45,1,3,1,1,1,2019,1,2,10,0,45,0,15,1,0,1,0,4.2672811,4.2672811,0,0,0,0,0,0,0,0,0,0,0,8.370163,0,0,0,40.84,58.009998,42.77,58.91,6,1,1,0,0,8,5,1,512,1539981.3,0,0,6913.8413 -13542,16602,30226,-9,30227,30228,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-951.03351,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,10,4,1,722,462153.47,0,0,6106.623 -13542,16602,30227,30228,-9,-9,3,1,0,42,1,0,3,0,1,-9,1,1,0,0,4,.27411228,8.1302481,8.0943069,2,0,-9,4,0,-8,-50.516533,0,0,1,50,2,4,1,-9,-9,2019,1,1,4,0,25,0,15,1,0,1,0,.00073981262,.00073981262,0,0,0,0,0,0,0,0,1,1,0,9.1070061,0,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,10,4,1,722,462153.47,0,0,6106.623 -13542,16602,30228,30227,-9,-9,1,1,1,50,1,0,3,0,2,-9,1,1,0,0,4,8.5007191,8.3178577,0,2,0,-9,4,0,8,-94.216667,0,0,0,42,1,4,1,2,2,2019,1,3,7,0,50,80,15,1,0,1,0,10.643676,10.643676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,10,4,1,722,462153.47,0,0,6106.623 -13542,16602,30229,-9,30227,30228,6,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1133.2451,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,722,462153.47,0,0,6106.623 -13542,16602,30230,-9,30227,30228,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.0002,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,722,462153.47,0,0,6106.623 -13543,16603,30231,-9,30233,30235,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.13983,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,3,1,512,1694915.6,0,0,3243.3328 -13543,16603,30232,-9,30233,30235,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.5214,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,512,1694915.6,0,0,3243.3328 -13543,16603,30233,30235,-9,-9,2,1,0,45,1,0,3,0,2,-9,6,3,0,0,4,6.2736659,6.2770782,0,2,0,-9,22,0,-6,-120.01443,0,0,0,51,2,4,1,3,3,2019,3,1,11,0,12,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.58558655,0,0,0,54.200001,57.490002,55.759998,52.639999,6,1,1,0,0,13,3,1,512,1694915.6,0,0,3243.3328 -13543,16603,30234,-9,30233,30235,3,1,1,16,2,0,3,1,3,-9,7,2,0,0,4,6.0467,5.7920671,0,2,0,0,0,-9,0,-1077.2661,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,13,3,1,512,1694915.6,0,0,3243.3328 -13543,16603,30235,30233,-9,-9,1,1,1,51,1,0,3,0,2,-9,1,1,0,0,4,8.9124374,8.6887751,0,2,0,-9,22,0,6,82.787987,0,0,0,45,2,4,3,3,3,2019,2,2,11,0,70,60,15,1,0,3,0,7.8511024,7.8511024,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.759998,52.639999,54.200001,57.490002,5,1,1,0,0,13,3,1,512,1694915.6,0,0,3243.3328 -13544,16604,30236,30239,-9,-9,1,1,1,42,1,1,2,0,2,-9,2,1,0,0,3,8.4588757,8.7306576,0,2,0,-9,7,0,7,-107.00168,0,0,0,35,1,3,1,2,2,2019,1,2,9,0,43,43,15,1,0,1,0,13.206199,13.206199,0,0,0,0,0,0,0,0,1,1,0,2.2467504,0,0,0,55.959999,49.93,51.619999,45.049999,6,1,1,0,0,4,4,1,1666.75,467893.16,0,0,3380.9949 -13544,16604,30237,-9,30239,30236,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1070.869,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,1666.75,467893.16,0,0,3380.9949 -13544,16604,30238,-9,30239,30236,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.33063,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,1666.75,467893.16,0,0,3380.9949 -13544,16604,30239,30236,-9,-9,2,1,0,35,1,1,2,0,1,-9,5,1,0,0,3,8.0060911,7.9725928,0,2,0,-9,7,0,-7,-32.718922,0,0,1,42,2,3,1,2,1,2019,1,1,11,1,38,38,15,1,0,1,0,11.353888,11.353888,0,0,0,0,0,0,0,0,1,1,0,1.764663,0,0,0,51.619999,45.049999,55.959999,49.93,6,1,1,0,0,4,4,1,1666.75,467893.16,0,0,3380.9949 -13545,16605,30240,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,4,0,5.4439783,5.6280828,3,0,0,0,-9,0,-1060.0652,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7182484,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,13,2,1,256,100998.97,0,0,1210.1847 -13546,16606,30241,-9,-9,-9,3,1,1,33,3,0,0,0,2,-9,2,1,0,0,4,8.6557322,8.1314783,0,3,0,0,0,-9,0,-1167.699,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,0,15,1,0,-9,1,10.429276,10.429276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,57,-9,-9,5,2,3,0,0,6,4,1,623,270366.19,0,0,215.72484 -13547,16607,30242,30243,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.2647943,8.0702848,0,1,0,-9,7,0,0,-2.7876709,0,0,0,57,2,5,1,3,3,2019,1,1,11,1,47,48,15,1,0,1,0,7.5649624,7.5649624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,57.060001,57.759998,5,1,1,0,0,12,5,1,762,1691781.5,0,0,4053.4038 -13547,16607,30243,30242,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,5,8.6597748,8.8258333,0,1,0,-9,7,0,0,65.019318,0,0,0,57,2,4,1,2,2,2019,1,2,7,0,46,47,15,1,0,1,0,16.200724,16.200724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54.200001,57.490002,6,1,1,0,0,12,5,1,762,1691781.5,0,0,4053.4038 -13548,16608,30244,-9,30246,30248,2,1,1,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.474,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,1,519.59998,70219.344,0,0,2313.665 -13548,16608,30245,-9,30246,30248,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.73987,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,1,519.59998,70219.344,0,0,2313.665 -13548,16608,30246,30248,-9,-9,1,1,0,35,1,1,3,0,1,-9,6,3,0,1,3,0,5.6966605,5.9377723,2,0,-9,4,0,-3,-59.818283,0,0,1,38,1,2,3,2,1,2019,4,3,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.0434651,0,39.600773,1,47.419998,49.639999,36.27,47.360001,6,1,1,0,0,2,2,1,519.59998,70219.344,0,0,2313.665 -13548,16608,30247,-9,30246,30248,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.3318,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,1,519.59998,70219.344,0,0,2313.665 -13548,16608,30248,30246,-9,-9,3,1,1,38,1,1,3,0,1,-9,8,3,1,1,2,0,3.815309,3.6439326,2,0,-9,4,0,3,32.664707,0,0,0,35,1,3,3,-9,-9,2019,4,1,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0237136,0,0,0,36.27,47.360001,47.419998,49.639999,5,1,1,0,0,2,2,1,519.59998,70219.344,0,0,2313.665 -13549,16609,30249,30250,-9,-9,2,1,0,59,1,0,0,0,2,-9,97,3,0,0,5,0,0,0,1,0,-9,29,0,3,0,0,0,0,56,3,2,3,-9,-9,2019,4,1,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.115967,1,45.810001,61.509998,46,39,3,1,1,0,0,6,1,0,1922.5,0,0,0,828.99133 -13549,16609,30250,30249,-9,-9,1,1,1,56,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,28,0,-3,0,0,0,0,59,2,5,3,-9,-9,2019,4,2,26,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,45.810001,61.509998,3,2,3,0,0,6,1,0,1922.5,0,0,0,828.99133 -13550,16610,30251,-9,30253,30252,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1180.0414,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,337.66666,17788.707,0,0,1940.3517 -13550,16610,30252,30253,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,0,3,7.8104577,8.0035515,0,2,0,-9,9,0,5,50.685814,0,0,0,28,2,3,1,2,2,2019,1,2,10,0,45,40,15,1,0,1,0,6.1537943,6.1537943,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.52,42.220001,57.330002,53.459999,3,1,1,0,0,4,4,1,337.66666,17788.707,0,0,1940.3517 -13550,16610,30253,30252,-9,-9,2,1,0,28,1,1,1,0,2,-9,2,1,0,0,3,7.5237761,7.7451782,0,2,0,-9,9,0,-5,37.208981,0,1,1,33,2,3,1,-9,-9,2019,1,1,6,0,32,32,15,1,0,1,0,8.244381,8.244381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,48.52,42.220001,5,1,1,0,0,4,4,1,337.66666,17788.707,0,0,1940.3517 -13551,16611,30254,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,1,0,-1029.121,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4406066,0,0,0,37.900002,51.459999,-9,-9,5,1,1,0,0,8,1,1,735,-147487.69,0,0,-114.79876 -13552,16612,30255,-9,30256,30257,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.9493,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,304.66666,563447,0,0,3140.646 -13552,16612,30256,30257,-9,-9,2,1,0,43,1,0,3,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,15,0,-3,.66605181,0,0,1,46,1,2,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.78635722,3,57.060001,57.759998,40.880001,38.459999,6,1,1,0,0,8,4,1,304.66666,563447,0,0,3140.646 -13552,16612,30257,30256,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,0,2,8.7040997,8.8217936,0,2,0,-9,14,0,3,75.878281,0,0,0,43,1,5,3,2,2,2019,2,2,12,2,48,45,15,1,0,3,0,19.742098,19.742098,0,0,0,0,0,0,0,0,1,1,0,2.5599332,0,0,0,40.880001,38.459999,57.060001,57.759998,5,1,1,0,0,8,4,1,304.66666,563447,0,0,3140.646 -13553,16613,30258,30259,-9,-9,1,1,0,38,1,0,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,17,0,-5,28.635689,0,0,1,43,3,4,1,3,3,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,5,2,3,0,0,8,2,0,508.33334,319157.94,0,0,2251.5869 -13553,16613,30259,30258,-9,-9,2,1,1,43,1,0,4,0,3,-9,2,1,0,0,4,7.2073665,7.3436317,0,2,0,-9,17,0,5,150.87375,0,0,0,38,3,4,3,3,3,2019,2,1,9,1,24,25,15,1,0,3,0,5.5578609,5.5578609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,5,2,3,0,0,8,2,0,508.33334,319157.94,0,0,2251.5869 -13553,16613,30260,-9,30258,30259,5,1,1,12,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1099.353,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,8,2,0,508.33334,319157.94,0,0,2251.5869 -13553,16613,30261,-9,30258,30259,4,1,1,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.1257,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,2,0,508.33334,319157.94,0,0,2251.5869 -13553,16613,30262,-9,30258,30259,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.59601,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,0,508.33334,319157.94,0,0,2251.5869 -13553,16613,30263,-9,30258,30259,3,1,0,14,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-955.31116,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,43,-9,-9,4,2,3,0,0,8,2,0,508.33334,319157.94,0,0,2251.5869 -13554,16614,30264,30265,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,3,8.7095537,8.7653646,0,2,0,-9,21,0,-3,-18.763975,0,0,1,45,2,4,1,2,2,2019,1,2,9,1,42,37,15,1,0,1,0,13.369023,13.369023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,52,55,5,1,1,0,0,4,4,1,729,492408.94,0,0,4469.1396 -13554,16614,30265,30264,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,8.6870823,8.6645823,0,2,0,-9,7,0,3,-64.290291,0,0,0,42,1,3,1,-9,-9,2019,1,1,9,1,37,37,15,1,0,1,0,17.513462,17.513462,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48.700001,56.220001,6,1,1,0,0,4,4,1,729,492408.94,0,0,4469.1396 -13554,16614,30266,-9,30264,30265,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1203.3788,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,1,729,492408.94,0,0,4469.1396 -13554,16614,30267,-9,30264,30265,3,1,0,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-930.00641,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,4,4,1,729,492408.94,0,0,4469.1396 -13555,16615,30268,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,2,1,0,0,3,8.0877409,8.1466465,0,3,0,-9,0,1,0,-1004.8265,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,60,60,15,1,0,-9,0,4.9282212,4.9282212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.099998,41.759998,-9,-9,3,2,3,0,0,12,4,1,128,0,0,0,907.40771 -13556,16616,30269,-9,30271,30270,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.88245,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,479.60001,549867.81,0,0,5916.4258 -13556,16616,30270,30271,-9,-9,1,1,1,49,1,0,3,0,3,-9,1,1,0,0,4,9.6256428,9.414196,0,2,0,-9,7,0,12,50.257236,-9,0,0,37,2,5,3,-9,-9,2019,2,2,9,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0570726,0,0,0,53,55,54.099998,59.110001,6,4,1,0,0,13,5,1,479.60001,549867.81,0,0,5916.4258 -13556,16616,30271,30270,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,17,0,-12,-30.622715,0,0,1,49,3,4,1,1,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.60334665,0,7.017365,3,54.099998,59.110001,53,55,7,1,1,0,0,13,5,1,479.60001,549867.81,0,0,5916.4258 -13556,16616,30272,-9,30271,30270,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.171,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,5,1,479.60001,549867.81,0,0,5916.4258 -13556,16616,30273,-9,30271,30270,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.0439,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,5,1,479.60001,549867.81,0,0,5916.4258 -13557,16617,30274,-9,30276,30277,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1112.6464,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,6,4,1,351.75,530318.88,0,0,2548.3403 -13557,16617,30275,-9,30276,30277,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.13708,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,6,4,1,351.75,530318.88,0,0,2548.3403 -13557,16617,30276,30277,-9,-9,2,1,0,45,1,0,2,0,1,-9,7,2,0,0,2,0,0,0,2,0,-9,20,0,-4,-182.76947,1,0,0,49,1,3,1,-9,-9,2019,3,1,5,0,0,21,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.830002,51.59,39.330002,60.150002,6,1,1,0,0,6,4,1,351.75,530318.88,0,0,2548.3403 -13557,16617,30277,30276,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,0,3,8.9548607,8.8218985,0,2,0,-9,21,0,4,28.229912,0,0,0,45,1,2,2,-9,-9,2019,2,2,13,2,47,38,15,1,0,2,0,19.166101,19.166101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.330002,60.150002,41.830002,51.59,5,2,3,0,0,6,4,1,351.75,530318.88,0,0,2548.3403 -13558,16618,30278,30279,-9,-9,1,1,0,53,1,0,3,0,1,-9,2,1,0,0,4,9.7742739,9.9217291,0,2,0,-9,30,0,1,-44.310604,0,0,0,52,1,3,1,-9,-9,2019,1,2,6,0,50,45,15,1,0,1,0,34.06176,34.06176,0,0,0,0,0,0,0,0,0,0,0,3.095768,0,0,0,46.5,58.259998,46.080002,57.200001,5,3,4,0,0,8,5,1,835.33331,1931373.9,0,0,10182.679 -13558,16618,30279,30278,-9,-9,2,1,1,52,1,0,3,0,1,-9,2,1,0,0,3,9.9771109,9.4974079,0,2,0,-9,11,0,-1,-97.734161,0,0,0,53,1,4,1,-9,-9,2019,1,1,12,2,87,52,15,1,0,1,0,18.458857,18.458857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.080002,57.200001,46.5,58.259998,3,1,1,0,0,8,5,1,835.33331,1931373.9,0,0,10182.679 -13558,16618,30280,-9,30278,30279,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.5756,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,8,5,1,835.33331,1931373.9,0,0,10182.679 -13559,16619,30281,30282,-9,-9,1,1,1,73,1,0,0,0,2,-9,1,1,0,0,4,6.1827302,6.8905134,6.8341575,1,0,-9,4,0,0,-9.4095755,0,0,0,73,2,2,3,3,3,2019,2,2,24,11,35,40,15,1,1,4,0,1.7526016,1.7526016,0,0,0,0,0,0,0,0,1,1,0,4.5908027,6.78128,0,0,42.189999,58.810001,52.119999,31.77,6,1,1,0,0,6,3,1,550.5,292081.06,0,0,2051.1589 -13559,16619,30282,30281,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,2,0,6.1672864,6.1374927,1,0,-9,4,0,0,51.877369,0,0,0,73,2,4,1,3,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.067249902,6.3998222,0,0,52.119999,31.77,42.189999,58.810001,6,1,1,0,0,6,3,1,550.5,292081.06,0,0,2051.1589 -13560,16620,30283,-9,-9,-9,2,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,7.0198636,6.3916516,3,0,0,0,-9,0,-983.6051,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,6.9152122,14.841027,3,58.09,32.73,-9,-9,6,1,1,0,0,5,2,1,958,163830.94,0,0,2270.0603 -13561,16621,30284,30285,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.1584806,8.4849443,0,1,0,-9,8,0,4,85.242104,0,0,1,40,2,4,1,3,3,2019,1,2,11,0,1,40,15,1,0,1,0,364.90454,364.90454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.139999,53.970001,60.119999,54.799999,6,1,1,0,0,9,5,0,1268.5,201354.88,0,0,3295.6309 -13561,16621,30285,30284,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,8.1097231,8.1251202,0,1,0,-9,8,0,-4,11.837615,0,0,0,44,2,3,1,-9,-9,2019,1,1,4,0,40,45,15,1,0,1,0,13.289999,13.289999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,50.139999,53.970001,7,1,1,0,0,9,5,0,1268.5,201354.88,0,0,3295.6309 -13562,16622,30286,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,0,3,8.0195894,8.2185001,0,3,0,0,0,-9,0,-1025.9922,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,30,15,1,0,-9,0,13.754565,13.754565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.709999,52.349998,-9,-9,6,1,1,0,0,11,4,1,52,530985.88,0,0,1630.7819 -13562,16623,30287,-9,30286,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.7618423,7.8465753,0,3,0,0,0,-9,0,-970.03833,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,30,25,15,1,0,-9,1,6.8042874,6.8042874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.459999,56.91,-9,-9,3,1,1,0,0,11,3,1,1072,-1356.9395,0,0,2665.1611 -13562,16624,30288,-9,30286,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,7.4339375,7.7383456,0,3,0,0,0,-9,0,-910.62695,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,40,25,15,1,0,-9,1,6.267158,6.267158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,11,3,1,3783,-61704.09,0,0,856.01599 -13562,16625,30289,-9,30286,-9,4,1,0,21,2,0,0,0,2,0,7,2,0,0,3,5.4163733,5.8507776,0,3,0,0,0,-9,0,-882.66638,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,5,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.447655,0,0,0,38.5,55.029999,-9,-9,6,1,1,0,0,11,2,1,747,40848.418,0,0,-427.94989 -13563,16626,30290,-9,30291,30295,6,1,0,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.3987,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,558.83331,1282982.9,0,0,11847.54 -13563,16626,30291,30295,-9,-9,2,1,0,47,1,0,4,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,-2,108.99741,0,0,0,49,1,5,1,2,2,2019,3,1,19,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,108.05763,3,25.799999,54.330002,46.400002,59.869999,4,1,1,0,0,9,5,1,558.83331,1282982.9,0,0,11847.54 -13563,16626,30292,-9,30291,30295,3,1,0,16,2,0,4,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-838.87598,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2217505,0,0,0,46.880001,60.959999,-9,-9,6,1,1,0,0,9,5,1,558.83331,1282982.9,0,0,11847.54 -13563,16626,30293,-9,30291,30295,4,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.9989,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,558.83331,1282982.9,0,0,11847.54 -13563,16626,30294,-9,30291,30295,5,1,1,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.80548,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,558.83331,1282982.9,0,0,11847.54 -13563,16626,30295,30291,-9,-9,1,1,1,49,1,0,4,0,1,-9,2,1,0,0,5,9.5740128,9.9123154,0,2,0,-9,25,0,2,-7.2095556,0,0,0,47,1,3,3,2,3,2019,2,2,11,1,70,70,15,1,0,3,0,28.499048,28.499048,0,0,0,0,0,0,0,0,1,1,0,3.2603126,0,0,0,46.400002,59.869999,25.799999,54.330002,3,1,1,0,0,9,5,1,558.83331,1282982.9,0,0,11847.54 -13564,16627,30296,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-988.90692,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,-9,-9,6,3,4,1,1,8,1,0,318,-152969.03,0,0,1633.7301 -13564,16628,30297,-9,30296,-9,2,1,1,36,2,0,0,0,2,-9,2,1,0,0,4,8.252552,8.0476103,0,3,0,0,0,-9,0,-933.70197,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,38,0,15,1,0,-9,1,11.87012,11.87012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,3,4,0,0,8,4,0,1632,-69029.453,0,0,1396.2887 -13565,16629,30298,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,2,1,0,0,4,9.1062241,8.915204,0,3,0,0,0,-9,0,-1036.0018,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,42,47,15,1,1,-9,0,20.409637,20.409637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.990002,59.25,-9,-9,4,1,1,0,1,6,5,0,404,-3603.7598,0,0,2668.2139 -13566,16630,30299,-9,30300,30303,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.17896,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1248.4,631583.13,0,0,6006.7954 -13566,16630,30300,30303,-9,-9,1,1,0,46,1,0,3,0,1,-9,2,1,0,0,5,8.5810108,8.5238075,0,2,0,-9,17,0,-1,-56.221138,0,0,0,47,1,5,1,2,1,2019,1,2,8,0,23,21,15,1,0,1,0,29.404932,29.404932,0,0,0,0,0,0,0,0,0,0,0,1.4603225,0,0,0,51.139999,60.450001,59.43,58.049999,6,1,1,0,0,9,5,1,1248.4,631583.13,0,0,6006.7954 -13566,16630,30301,-9,30300,30303,3,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-952.40723,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,9,5,1,1248.4,631583.13,0,0,6006.7954 -13566,16630,30302,-9,30300,30303,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1002.0373,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,9,5,1,1248.4,631583.13,0,0,6006.7954 -13566,16630,30303,30300,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,5,9.3362551,9.3566628,0,2,0,-9,17,0,1,-46.315838,0,0,0,46,1,5,1,2,2,2019,1,1,6,0,43,40,15,1,0,1,0,32.91106,32.91106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,51.139999,60.450001,7,1,1,0,0,9,5,1,1248.4,631583.13,0,0,6006.7954 -13567,16631,30304,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,8.0371885,7.9315038,0,3,0,-9,0,-9,0,-860.40723,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,4,0,39,0,15,1,0,-9,0,9.5138121,9.5138121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,54.220001,-9,-9,6,3,4,0,0,8,4,0,278,135335.75,0,0,1298.7919 -13568,16632,30305,30308,-9,-9,2,1,0,39,1,0,2,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-2,-215.94957,0,0,1,41,2,4,1,-9,-9,2019,3,1,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.110001,49.830002,46.169998,50.259998,5,1,1,0,1,1,3,1,1121.25,141503.55,0,0,2605.9915 -13568,16632,30306,-9,30305,30308,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-945.5705,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,1,3,1,1121.25,141503.55,0,0,2605.9915 -13568,16632,30307,-9,30305,30308,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.8704,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,1121.25,141503.55,0,0,2605.9915 -13568,16632,30308,30305,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,0,4,8.6500673,8.5418215,0,2,0,-9,7,0,2,3.8559525,0,0,0,39,3,3,3,3,3,2019,2,2,12,0,39,39,15,1,0,3,0,13.981832,13.981832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.169998,50.259998,48.110001,49.830002,4,1,1,0,0,1,3,1,1121.25,141503.55,0,0,2605.9915 -13569,16633,30309,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,5,0,5.5482335,5.2568984,3,0,0,0,-9,0,-992.51184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.6930108,4.0027928,6.711894,3,64.370003,50.23,-9,-9,6,1,1,0,0,13,2,1,322,292977.25,0,0,1313.6548 -13570,16634,30310,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,2,9.3930159,9.0434113,5.3951106,3,0,0,0,-9,0,-1076.953,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,15,3,15,1,0,-9,0,72.45092,72.45092,0,0,0,0,0,0,0,0,1,1,0,0,6.6127753,0,0,56.200001,40.630001,-9,-9,5,1,1,0,0,5,5,1,2592,92796.016,0,0,1722.3278 -13570,16635,30311,-9,30310,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,8.6783676,8.3928108,0,3,0,0,0,-9,0,-1017.9645,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,45,60,15,1,0,-9,1,11.473323,11.473323,0,0,0,0,0,0,0,0,1,1,0,5.6282167,0,0,0,44.759998,49.599998,-9,-9,6,1,1,0,0,5,4,1,648,-134952.63,0,0,3244.7495 -13570,16636,30312,-9,30310,-9,3,1,0,19,2,0,0,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-963.39038,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,28,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.450001,54.630001,-9,-9,4,1,1,1,1,5,1,1,1469,0,0,0,0 -13571,16637,30313,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,0,2,8.9047346,9.2409277,4.0762119,3,0,0,0,-9,0,-962.05573,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,7,40,50,15,1,1,-9,0,27.680529,27.680529,0,0,0,0,0,0,0,0,0,0,0,4.4292636,0,0,0,47.360001,52.91,-9,-9,5,1,1,0,0,8,5,0,1048,1674510,0,0,2164.613 -13572,16638,30314,30315,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.8179193,6.7150741,1,0,-9,54,0,4,80.570847,0,0,0,72,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5703454,7.2333298,0,0,55.790001,52.619999,54.959999,53.169998,6,1,1,0,0,10,2,1,1257,512719.31,0,0,1453.333 -13572,16638,30315,30314,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,-4,-61.009499,0,0,0,76,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0984015,0,0,0,54.959999,53.169998,55.790001,52.619999,6,1,1,0,0,10,2,1,1257,512719.31,0,0,1453.333 -13573,16639,30316,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1047.147,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,26,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6416073,0,0,3,49.040001,55.860001,-9,-9,5,1,1,1,1,8,1,1,231,-163292.16,0,0,745.3316 -13574,16640,30317,30321,-9,-9,1,1,1,34,1,1,5,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,6,0,-2,0,0,0,0,36,3,4,3,2,3,2019,4,2,31,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.459999,31.559999,46.5,58.259998,3,1,1,1,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13574,16640,30318,-9,30321,30317,7,1,0,0,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1025.0049,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13574,16640,30319,-9,30321,30317,4,1,1,8,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.8799,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13574,16640,30320,-9,30321,30317,6,1,0,4,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1168.6869,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13574,16640,30321,30317,-9,-9,2,1,0,36,1,1,5,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,2,0,0,0,1,34,2,2,3,-9,-9,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.259998,23.459999,31.559999,7,1,1,0,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13574,16640,30322,-9,30321,30317,5,1,1,7,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.8213,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13574,16640,30323,-9,30321,30317,3,1,0,14,2,1,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.81177,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,1,0,953.28571,4969.8438,0,0,3016.1328 -13575,16641,30324,30325,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,36,0,6,0,0,0,0,71,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.8895862,3,50.279999,37.779999,61.610001,37.790001,7,1,1,0,0,5,1,1,314,238000.56,0,0,855.8327 -13575,16641,30325,30324,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,36,0,-6,0,0,0,0,77,3,2,3,-9,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.3484111,3,61.610001,37.790001,50.279999,37.779999,6,1,1,0,0,5,1,1,314,238000.56,0,0,855.8327 -13576,16642,30326,30327,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,0,5,7.907105,7.8999596,0,1,0,-9,7,0,0,-54.873219,0,0,0,37,1,3,1,2,2,2019,1,1,4,0,36,30,15,1,0,1,0,8.9175539,8.9175539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.810001,61.509998,50.599998,51,6,1,1,0,0,5,4,1,880.5,112287.4,0,0,2358.9565 -13576,16642,30327,30326,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,0,3,8.2137241,8.5331144,0,1,0,-9,9,0,0,47.058662,0,0,1,37,1,5,1,2,1,2019,1,2,8,1,36,36,15,1,0,1,0,14.155819,14.155819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.599998,51,45.810001,61.509998,6,1,1,0,0,5,4,1,880.5,112287.4,0,0,2358.9565 -13577,16643,30328,-9,-9,-9,1,1,0,52,3,0,2,0,1,-9,2,1,0,0,2,7.7508411,7.5865984,0,4,0,0,0,-9,0,-824.60797,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,8,22,16,15,1,1,-9,0,10.804005,10.804005,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.25,41.73,-9,-9,2,3,4,0,0,8,2,1,911,36324.547,0,0,1015.8579 -13577,16643,30329,-9,30328,-9,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-961.94489,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,1,911,36324.547,0,0,1015.8579 -13577,16644,30330,-9,30328,-9,2,1,0,19,2,0,2,0,2,-9,3,3,0,0,2,6.2145214,6.2011337,0,3,0,0,0,-9,0,-860.76239,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,24,10,15,7,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.77,44.400002,-9,-9,3,3,4,1,1,8,2,1,653,41232.398,0,0,875.7713 -13577,16645,30331,-9,30328,-9,3,1,0,18,2,0,2,1,2,0,7,2,0,0,1,0,0,0,3,0,0,0,-9,0,-901.67126,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,35,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,5.1399999,57.84,-9,-9,1,3,4,0,1,8,2,1,865,-167247.19,0,0,0 -13578,16646,30332,30333,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,0,4,8.5334845,8.4318848,0,1,0,-9,27,0,0,-25.335966,-9,0,0,48,2,4,1,2,2,2019,1,1,9,1,50,0,15,1,0,1,0,13.056279,13.056279,0,0,0,0,0,0,0,0,0,0,0,4.6943583,0,0,0,53,54,41.310001,55.240002,6,1,1,0,0,11,5,1,1721,1534578.5,0,0,4091.1091 -13578,16646,30333,30332,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.3053198,8.2821388,0,1,0,-9,27,0,0,5.5202641,0,0,0,48,2,4,1,2,2,2019,1,2,15,4,37,40,15,1,1,1,0,15.768754,15.768754,0,0,0,0,0,0,0,0,0,0,0,6.4849854,0,0,0,41.310001,55.240002,53,54,6,1,1,0,0,11,5,1,1721,1534578.5,0,0,4091.1091 -13578,16647,30334,-9,30333,30332,3,1,0,21,2,0,0,0,1,1,2,1,0,0,5,7.2061586,7.5281291,0,3,0,0,0,-9,0,-973.20239,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,0,15,1,0,-9,1,5.7614179,5.7614179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,11,2,1,394,125668.37,0,0,1385.7571 -13579,16648,30335,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,1,1,0,0,2,8.0313587,8.0059109,0,3,0,0,0,-9,0,-1000.9063,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,60,50,15,1,1,-9,0,5.3924942,5.3924942,0,0,0,0,0,0,0,0,1,1,0,2.9607038,0,0,0,50.049999,24.16,-9,-9,2,1,1,0,1,7,4,1,1423,382457.16,0,0,671.51111 -13580,16649,30336,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,4,0,6.8640089,6.5176454,3,0,0,0,-9,0,-959.74408,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8144798,6.9872336,0,0,47.529999,49.720001,-9,-9,7,1,1,0,0,11,2,1,1869,341562.72,0,0,1486.9883 -13581,16650,30337,30338,-9,-9,1,1,1,43,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,6,0,-2,0,0,0,0,45,3,1,3,3,3,2019,4,2,20,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.26641,2,56.349998,21.690001,37.48,17.040001,6,1,1,1,1,4,1,0,548,24435.359,0,0,1753.0349 -13581,16650,30338,30337,-9,-9,2,1,0,45,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,2,0,0,0,0,43,3,1,3,3,3,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.48,17.040001,56.349998,21.690001,1,1,1,0,1,4,1,0,548,24435.359,0,0,1753.0349 -13582,16651,30339,-9,30341,30340,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.4742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,6,5,0,405,424599.25,0,0,5981.5806 -13582,16651,30340,30341,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,3,9.0290041,9.2042999,0,2,0,-9,10,0,3,-82.787865,0,0,0,33,1,3,1,2,1,2019,1,1,11,0,40,50,15,1,0,1,0,29.215721,29.215721,0,0,0,0,0,0,0,0,0,0,0,1.188634,0,0,0,60.299999,46.580002,49.689999,52.990002,5,2,3,0,0,6,5,0,405,424599.25,0,0,5981.5806 -13582,16651,30341,30340,-9,-9,1,1,0,33,1,1,1,0,1,-9,2,1,0,0,3,8.5871353,8.5519629,0,2,0,-9,10,0,-3,-119.68388,0,0,1,36,1,3,1,2,1,2019,1,2,10,0,27,35,15,1,0,1,0,23.562799,23.562799,0,0,0,0,0,0,0,0,0,0,0,1.9857246,0,0,0,49.689999,52.990002,60.299999,46.580002,5,2,3,0,0,6,5,0,405,424599.25,0,0,5981.5806 -13583,16652,30342,-9,-9,-9,1,1,0,46,2,0,2,0,3,-9,2,1,0,0,3,0,0,0,4,0,0,0,-9,0,-1018.814,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.5399264,3,52.990002,51.279999,-9,-9,5,1,1,0,0,6,1,1,476,114001.47,0,0,723.17896 -13583,16652,30343,-9,30342,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-806.67926,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,1,1,476,114001.47,0,0,723.17896 -13583,16652,30344,-9,30342,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-951.0144,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,6,1,1,476,114001.47,0,0,723.17896 -13584,16653,30345,30346,-9,-9,2,1,0,54,1,0,0,0,2,-9,1,1,0,0,4,6.7480502,6.5104184,0,1,0,-9,31,0,-8,132.36447,0,0,0,62,2,4,1,2,3,2019,1,1,6,0,40,40,15,1,0,1,0,2.5739069,2.5739069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.209999,49.459999,61.84,41.580002,5,1,1,0,0,12,2,1,336.5,60169.273,0,0,-46.72229 -13584,16653,30346,30345,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,0,4,6.0666847,6.1118245,0,1,0,-9,31,0,8,-18.193775,0,0,0,54,2,4,1,2,2,2019,1,2,7,0,60,60,15,1,0,1,0,.82653373,.82653373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.84,41.580002,54.209999,49.459999,2,1,1,0,0,12,2,1,336.5,60169.273,0,0,-46.72229 -13584,16654,30347,-9,30345,30346,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.7145166,8.2252436,0,3,0,0,0,-9,0,-990.59668,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,40,15,1,0,-9,1,16.824778,16.824778,0,0,0,0,0,0,0,0,0,0,0,1.8104515,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,12,5,1,429,35491.719,0,0,642.72278 -13585,16655,30348,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,0,3,8.0642071,8.3192024,0,3,0,0,0,-9,0,-958.42395,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,46,39,15,1,1,-9,0,9.7032833,9.7032833,0,0,0,0,0,0,0,7,1,1,0,2.3578682,0,6.2941289,3,38.790001,48,-9,-9,5,1,1,0,0,7,4,0,2607,-100029.24,0,0,2678.647 -13586,16656,30349,30350,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-1,-50.535583,0,0,0,73,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,4.6837506,0,0,0,0,0,1,1,0,0,0,0,0,62.18,36.18,40.529999,23.690001,6,1,1,0,0,13,2,1,625,187980.91,0,0,1174.3147 -13586,16656,30350,30349,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,6.2224789,6.0540543,1,0,-9,6,0,1,-74.525635,0,0,0,72,2,3,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.330596,6.4531655,0,0,40.529999,23.690001,62.18,36.18,5,1,1,0,0,13,2,1,625,187980.91,0,0,1174.3147 -13587,16657,30351,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,0,2,6.6842899,6.5394716,0,3,0,0,0,-9,0,-964.883,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,15,25,15,1,0,-9,0,5.6306844,5.6306844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.970001,30.08,-9,-9,3,2,3,0,0,2,2,0,1086,177591.34,0,0,56.603676 -13588,16658,30352,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,1,0,6.9276948,7.0510278,3,0,0,0,-9,0,-1099.9561,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5176637,7.0906425,0,0,24.190001,23.76,-9,-9,1,1,1,0,1,2,2,1,669,430552.5,0,0,1500.0994 -13589,16659,30353,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,1,4,8.1588268,7.8968163,0,3,0,0,0,-9,0,-994.14655,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,38,15,1,0,-9,0,8.5322733,8.5322733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,2,3,0,571,-175256.63,0,0,2115.53 -13590,16660,30354,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,1,1,0,0,5,8.7289181,8.4124613,0,3,0,0,0,-9,0,-929.45691,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,55,60,15,1,0,-9,0,13.161329,13.161329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,9,5,1,449,-43815.535,0,0,3335.5078 -13591,16661,30355,-9,30358,30357,5,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1019.9966,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,3,1,837.79999,106792.67,0,0,2831.0244 -13591,16661,30356,-9,30358,30357,4,1,0,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1164.03,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,3,1,837.79999,106792.67,0,0,2831.0244 -13591,16661,30357,30358,-9,-9,2,1,1,42,1,2,3,0,2,-9,2,1,0,0,3,8.4923611,8.7579775,0,2,0,-9,7,0,11,128.51076,0,0,0,31,2,5,1,-9,-9,2019,1,1,10,0,55,55,15,1,0,1,0,8.7551384,8.7551384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.41,62.84,48.77,60.16,3,1,1,0,0,5,3,1,837.79999,106792.67,0,0,2831.0244 -13591,16661,30358,30357,-9,-9,1,1,0,31,1,2,3,0,2,-9,2,1,0,0,5,7.0688677,7.0436206,0,2,0,-9,7,0,-11,-24.091511,0,0,1,42,2,3,1,-9,-9,2019,1,2,11,1,15,17,15,1,0,1,0,9.2167053,9.2167053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,33.41,62.84,6,1,1,0,0,5,3,1,837.79999,106792.67,0,0,2831.0244 -13591,16661,30359,-9,30358,30357,3,1,0,5,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.99603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,3,1,837.79999,106792.67,0,0,2831.0244 -13592,16662,30360,-9,-9,-9,1,1,0,52,2,0,0,0,3,-9,2,1,0,0,5,8.1671724,8.0979748,0,3,0,0,0,-9,0,-1028.9841,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,38,15,1,0,-9,0,10.448988,10.448988,0,0,0,0,0,0,0,7,0,0,0,0,0,8.1766777,3,41.07,60.93,-9,-9,4,1,1,0,0,12,4,1,444,104787.98,0,0,702.10437 -13593,16663,30361,30363,-9,-9,1,1,1,54,1,0,1,0,2,-9,1,1,0,0,5,10.055711,9.8761721,0,2,0,-9,9,0,2,-20.17536,0,0,0,52,1,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,49.346008,49.346008,0,0,0,0,0,0,0,7,1,1,0,2.8890998,0,11.010576,3,48.18,61.799999,54.950001,39.619999,7,1,1,0,0,9,5,1,328.66666,3450976.8,0,0,15158.8 -13593,16663,30362,-9,30363,30361,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.2506,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,328.66666,3450976.8,0,0,15158.8 -13593,16663,30363,30361,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,0,3,9.0435162,8.8876429,0,2,0,-9,9,0,-2,-110.59702,0,0,0,54,2,5,1,2,1,2019,1,1,12,1,42,42,15,1,0,1,0,19.409925,19.409925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.950001,39.619999,48.18,61.799999,5,1,1,0,0,9,5,1,328.66666,3450976.8,0,0,15158.8 -13594,16664,30364,30365,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,1,3,0,6.4492092,6.9152727,1,0,-9,29,0,-2,63.942299,0,0,0,67,3,4,3,-9,2,2019,4,1,6,0,0,50,15,4,0,4,0,0,0,1,0,7.6761308,0,0,0,0,0,1,1,0,0,6.7138891,0,0,63.419998,31.67,63.240002,47.919998,6,1,1,0,0,9,2,1,822,523724.63,0,0,2213.4146 -13594,16664,30365,30364,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,5.6227965,5.1005321,1,0,-9,28,0,2,-1.0840132,0,0,0,65,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2965004,5.6919775,0,0,63.240002,47.919998,63.419998,31.67,7,1,1,0,0,9,2,1,822,523724.63,0,0,2213.4146 -13595,16665,30366,30367,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,3,7.9510999,8.6025543,7.1565356,1,0,-9,15,-9,2,-18.242523,-9,0,0,50,1,4,1,3,2,2019,1,2,11,1,22,0,15,1,0,1,0,18.900961,18.900961,0,0,0,0,0,0,0,0,0,0,0,0,7.8573093,0,0,47.57,51.43,60.119999,54.799999,6,1,1,0,0,9,5,1,1326.5,1170998.3,0,0,4445.7637 -13595,16665,30367,30366,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,8.4501362,9.029871,7.1296825,1,0,-9,1,-9,-2,-201.88332,-9,0,0,52,1,3,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,14.125166,14.125166,0,0,0,0,0,0,0,0,0,0,0,0,7.1453414,0,0,60.119999,54.799999,47.57,51.43,6,1,1,0,0,9,5,1,1326.5,1170998.3,0,0,4445.7637 -13595,16666,30368,-9,30366,30367,3,1,0,22,2,0,0,1,2,-9,7,2,0,0,5,0,0,0,3,0,-9,0,-9,0,-1038.8602,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64.900002,-9,-9,6,1,1,0,0,9,1,1,743,-88168.258,0,0,0 -13596,16667,30369,-9,30370,-9,5,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-964.95007,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,1,486.33334,49300.57,0,0,1398.26 -13596,16667,30370,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1034.7296,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.3914824,3,32.630001,39.049999,-9,-9,4,1,1,0,1,13,1,1,486.33334,49300.57,0,0,1398.26 -13596,16667,30371,-9,30370,-9,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1092.0082,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,1,1,486.33334,49300.57,0,0,1398.26 -13597,16668,30372,30373,-9,-9,2,1,1,64,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,39,0,-8,-13.415335,0,0,0,72,3,3,3,2,2,2019,4,1,16,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.509998,24.200001,61.849998,47.259998,6,1,1,0,0,4,2,1,401.5,3020.4307,0,0,794.71716 -13597,16668,30373,30372,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,3,0,6.1565776,6.0456305,1,0,-9,39,0,8,-147.1949,0,0,0,64,2,1,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.7620959,6.1097636,120.33923,1,61.849998,47.259998,36.509998,24.200001,6,1,1,0,0,4,2,1,401.5,3020.4307,0,0,794.71716 -13598,16669,30374,-9,-9,-9,1,1,0,44,2,0,2,0,1,-9,2,1,0,0,4,7.8636837,7.8034778,0,4,0,0,0,-9,0,-1030.9181,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,30,20,15,1,0,-9,0,9.0160351,9.0160351,0,0,0,0,0,0,0,96,1,1,0,0,0,123.10296,3,57.16,56.150002,-9,-9,6,1,1,0,1,13,2,1,954,152904.34,0,0,1409.3347 -13598,16669,30375,-9,30374,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1116.8021,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,13,2,1,954,152904.34,0,0,1409.3347 -13598,16669,30376,-9,30374,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1109.811,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,13,2,1,954,152904.34,0,0,1409.3347 -13599,16670,30377,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,4,9.2126951,9.1934013,0,4,0,0,0,-9,0,-949.26135,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,39,35,15,1,0,-9,0,25.09214,25.09214,0,0,0,0,0,0,0,0,1,1,0,1.1802686,0,0,0,57.16,56.150002,-9,-9,6,4,2,0,0,8,5,1,452.5,675371.5,0,0,2901.5757 -13599,16670,30378,-9,30377,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-951.52142,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,3,4,0,0,8,5,1,452.5,675371.5,0,0,2901.5757 -13599,16671,30379,-9,30377,-9,2,1,1,24,2,0,1,0,2,-9,2,1,0,0,5,7.7342377,7.5272117,0,3,0,0,0,-9,0,-1024.9586,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,60,15,1,0,-9,1,8.1780624,8.1780624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,-9,-9,2,3,4,0,0,8,4,1,2706,-94156.484,0,0,775.17786 -13600,16672,30380,-9,-9,-9,1,1,1,32,3,0,0,0,1,-9,2,1,0,0,4,8.7204952,8.9717503,0,3,0,-9,0,1,0,-1061.3942,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,5,40,60,15,1,1,-9,0,26.72925,26.72925,0,0,0,0,0,0,0,0,0,0,0,7.4101043,0,0,0,39.990002,62.580002,-9,-9,4,1,1,0,0,2,5,0,189,127081.34,0,0,3700.9905 -13601,16673,30381,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,2,8.6007996,8.6084852,0,3,0,0,0,-9,0,-987.95044,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,12,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7423787,0,0,0,47.200001,34.16,-9,-9,5,1,1,0,0,7,4,1,1227,1757072.4,0,0,1682.6283 -13602,16674,30382,-9,30384,30385,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.4994,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,508,858165.69,0,0,5229.7383 -13602,16674,30383,-9,30384,30385,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.124,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,508,858165.69,0,0,5229.7383 -13602,16674,30384,30385,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,8.3724737,8.2161789,0,2,0,-9,18,0,0,-42.649422,0,0,1,42,1,5,1,3,3,2019,1,1,6,0,17,21,15,1,0,1,0,23.421186,23.421186,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,57.060001,57.759998,7,1,1,0,0,12,5,1,508,858165.69,0,0,5229.7383 -13602,16674,30385,30384,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,5,9.3601732,9.493969,0,2,0,-9,16,0,0,-94.398056,0,0,0,42,1,5,1,3,2,2019,1,2,4,0,44,39,15,1,0,1,0,31.773405,31.773405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,60.02,56.419998,7,1,1,0,0,12,5,1,508,858165.69,0,0,5229.7383 -13603,16675,30386,30387,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,5,8.1697016,7.9673014,0,1,0,-9,9,0,0,25.759743,0,0,0,58,3,3,1,3,3,2019,1,2,7,0,35,45,15,1,0,1,0,12.157108,12.157108,0,0,0,0,0,0,0,0,0,0,0,3.1126971,0,0,0,64.660004,50.23,57.330002,53.459999,7,2,3,0,0,9,5,1,1737.5,96915.539,0,0,3142.6216 -13603,16675,30387,30386,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,0,3,8.2350521,8.0268517,0,1,0,-9,9,0,0,-76.477478,0,0,0,58,2,5,1,3,3,2019,1,1,10,0,34,34,15,1,0,1,0,13.931934,13.931934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,64.660004,50.23,6,2,3,0,0,9,5,1,1737.5,96915.539,0,0,3142.6216 -13604,16676,30388,30390,-9,-9,2,1,0,42,1,0,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,18,0,-15,0,0,0,1,57,3,3,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.95193,1,49,56,50,49,5,2,3,0,1,8,1,0,1310,132242.75,0,0,1912.0743 -13604,16676,30389,-9,30388,30390,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.9742,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,1,0,1310,132242.75,0,0,1912.0743 -13604,16676,30390,30388,-9,-9,1,1,1,57,1,0,3,0,3,-9,8,3,1,1,3,0,0,0,2,0,-9,18,0,15,0,0,0,0,42,3,4,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,49,56,5,2,3,0,1,8,1,0,1310,132242.75,0,0,1912.0743 -13605,16677,30391,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,2,1,0,0,4,7.4730902,7.7718291,6.7794657,3,0,0,0,-9,0,-971.64386,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,17,15,1,0,-9,0,7.4359932,7.4359932,0,0,0,0,0,0,0,0,0,0,0,0,7.1033306,0,0,49.119999,57.279999,-9,-9,5,1,1,0,0,2,3,1,681,131886.55,0,0,690.75201 -13606,16678,30392,-9,-9,-9,1,1,1,36,3,0,0,0,3,-9,2,1,0,0,3,8.5461092,8.4639063,0,3,0,0,0,-9,0,-1028.5112,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,38,43,15,1,0,-9,0,13.503245,13.503245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.279999,51.349998,-9,-9,5,1,1,0,0,13,4,1,342,-13249.379,0,0,853.86908 -13607,16679,30393,30394,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,4.964673,4.5340796,1,0,-9,56,0,-3,-21.231091,0,0,0,79,3,2,3,3,3,2019,4,1,15,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.8388376,0,0,52.799999,20.299999,41.540001,31.17,6,2,3,0,1,5,2,1,305,304826.63,0,0,970.55835 -13607,16679,30394,30393,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,2,0,5.1601114,5.2190452,1,0,-9,56,0,3,-41.396133,0,0,0,76,3,2,3,3,3,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.1002846,0,1,41.540001,31.17,52.799999,20.299999,6,2,3,0,1,5,2,1,305,304826.63,0,0,970.55835 -13608,16680,30395,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,6.7898335,6.6383657,3,0,0,0,-9,0,-963.18805,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,13.333569,0,0,1,1,0,0,6.403203,0,0,56.07,28.559999,-9,-9,5,1,1,0,0,10,2,1,270,97647.047,0,0,-286.14331 -13608,16681,30396,-9,-9,-9,2,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,6.5300198,6.2818971,3,0,0,0,-9,0,-1014.3486,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.464283,0,0,57.330002,53.459999,-9,-9,7,1,1,0,0,10,2,1,245,257091.44,0,0,204.50322 -13609,16682,30397,30398,-9,-9,2,1,0,51,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,36,0,-14,0,0,0,0,65,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,52,48,6,2,3,0,0,8,1,0,1494.3334,454474.03,0,0,2661.1458 -13609,16682,30398,30397,-9,-9,1,1,1,65,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,27,0,14,0,0,0,0,51,3,4,3,-9,-9,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,51,54,5,2,3,0,0,8,1,0,1494.3334,454474.03,0,0,2661.1458 -13609,16682,30399,-9,30397,30398,4,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.80701,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,1,0,1494.3334,454474.03,0,0,2661.1458 -13610,16683,30400,30401,-9,-9,1,1,0,57,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,28,0,-7,0,0,0,0,64,3,3,3,2,-9,2019,4,2,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.384645,3,47.310001,50.200001,52,48,4,1,1,0,0,1,1,0,745,-46816.434,0,0,2315.1575 -13610,16683,30401,30400,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,7,0,0,0,0,57,3,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,47.310001,50.200001,5,1,1,0,0,1,1,0,745,-46816.434,0,0,2315.1575 -13610,16684,30402,-9,30400,30401,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.8661399,7.5935206,0,3,0,0,0,-9,0,-1001.8253,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,35,35,15,1,0,-9,1,8.2814732,8.2814732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,1,3,0,1186,83023.555,0,0,1705.882 -13611,16685,30403,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,0,4,7.854641,7.9097543,0,3,0,0,0,-9,0,-946.50586,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,39,23,15,1,0,-9,0,5.4319029,5.4319029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,-9,-9,5,1,1,0,0,2,3,1,1660,450748.66,0,0,619.612 -13612,16686,30404,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,0,3,9.6828003,9.4636087,0,3,0,0,0,-9,0,-1025.6907,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,60,0,15,1,0,-9,0,29.050938,29.050938,0,0,0,0,0,0,0,0,0,0,0,6.3567257,0,0,0,47.939999,48.259998,-9,-9,6,1,1,0,0,9,5,1,151,481300.69,0,0,6805.3911 -13612,16687,30405,-9,30404,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,3,7.8377757,7.9825807,0,3,0,0,0,-9,0,-944.69421,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,41,42,15,1,0,-9,1,10.254976,10.254976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.889999,51.080002,-9,-9,6,1,1,0,0,9,4,1,174,22411.734,0,0,1723.6488 -13612,16688,30406,-9,30404,-9,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,2,7.6884193,7.5789995,0,3,0,0,0,-9,0,-1152.7067,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,35,45,15,1,0,-9,1,9.0662489,9.0662489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.52,48.189999,-9,-9,5,1,1,0,0,9,3,1,321,-53718.773,0,0,2004.0472 -13613,16689,30407,30409,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,7.3324065,7.7259188,0,2,0,-9,8,0,-5,10.061673,0,0,0,50,3,3,1,3,3,2019,1,1,12,2,20,20,15,1,0,1,0,9.171361,9.171361,0,0,0,0,0,0,0,0,1,1,0,5.8609638,0,0,0,40.470001,55.650002,45.599998,49.540001,6,1,1,0,0,6,2,1,896.33331,54076.848,0,0,1925.0914 -13613,16689,30408,-9,30407,30409,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.6073,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,1,896.33331,54076.848,0,0,1925.0914 -13613,16689,30409,30407,-9,-9,1,1,1,50,1,0,2,0,3,-9,2,1,0,0,3,7.2685504,7.2963781,0,2,0,-9,8,0,5,-55.905567,0,0,0,45,2,4,1,-9,-9,2019,1,2,12,0,20,0,15,1,0,1,0,6.2614064,6.2614064,0,0,0,0,0,0,0,0,1,1,0,2.0102534,0,0,0,45.599998,49.540001,40.470001,55.650002,5,1,1,0,0,6,2,1,896.33331,54076.848,0,0,1925.0914 -13614,16690,30410,30411,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,5,0,7.6218843,7.7568278,1,0,-9,6,0,0,84.816528,0,0,0,74,3,4,3,2,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,1.8921007,0,0,0,0,0,1,1,0,1.3974329,7.6480341,0,0,54.099998,59.110001,56.77,52.220001,7,1,1,0,0,10,2,1,292.5,223170.13,0,0,1232.9484 -13614,16690,30411,30410,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,0,-127.63125,0,0,0,74,3,5,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1690946,0,0,0,56.77,52.220001,54.099998,59.110001,6,1,1,0,0,10,2,1,292.5,223170.13,0,0,1232.9484 -13615,16691,30412,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,6,3,0,0,4,0,6.2921376,6.4062109,3,0,0,0,-9,0,-881.79779,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3721623,6.7108874,0,0,43.139999,61.330002,-9,-9,6,4,5,0,0,8,2,1,83,734234.06,0,0,1580.9778 -13616,16692,30413,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,8.6628695,8.3758078,4.2121463,3,0,0,0,-9,0,-988.79993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,49,43,15,1,0,-9,0,15.118361,15.118361,0,0,0,0,0,0,0,7,1,1,0,4.5756774,4.5612264,3.7331207,3,53.779999,48.41,-9,-9,6,1,1,0,0,2,5,1,182,1794059.9,0,0,1759.0194 -13617,16693,30414,30417,-9,-9,1,1,0,32,1,0,2,0,2,-9,1,1,0,0,4,7.4346528,7.8306155,0,2,0,-9,13,0,-7,96.316116,0,0,1,39,2,3,1,-9,2,2019,1,2,8,1,15,7,15,1,0,1,0,18.425083,18.425083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.419998,62.330002,43.599998,51.610001,6,1,1,0,0,4,4,0,650.5,139133.31,0,0,4000.4824 -13617,16693,30415,-9,30414,30417,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.711,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,0,650.5,139133.31,0,0,4000.4824 -13617,16693,30416,-9,30414,30417,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1071.7051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,0,650.5,139133.31,0,0,4000.4824 -13617,16693,30417,30414,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,0,3,8.7261333,8.6423311,0,2,0,-9,6,0,7,56.432953,0,0,0,32,2,4,1,2,-9,2019,1,1,11,2,45,40,15,1,0,1,0,11.55794,11.55794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,43.419998,62.330002,6,1,1,0,0,4,4,0,650.5,139133.31,0,0,4000.4824 -13618,16694,30418,30419,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,-1,33.508495,0,0,0,81,3,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.0916402,0,0,0,56.110001,44.400002,60.279999,43.740002,6,1,1,0,0,2,2,1,542,540192.31,0,0,979.64246 -13618,16694,30419,30418,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,4,0,7.1450491,7.3378959,1,0,-9,55,0,1,-71.327644,0,0,0,80,3,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6459846,0,0,60.279999,43.740002,56.110001,44.400002,6,1,1,0,0,2,2,1,542,540192.31,0,0,979.64246 -13619,16695,30420,30422,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,0,4,9.4782658,9.4452877,0,2,0,-9,4,0,-5,-11.826275,0,0,0,57,1,5,1,1,2,2019,1,1,7,0,43,35,15,1,0,1,0,38.815231,38.815231,0,0,0,0,0,0,0,0,0,0,0,4.4987636,0,0,0,60.299999,43.720001,54.099998,59.110001,5,1,1,0,0,9,5,1,934.66669,3565254,0,0,7638.5654 -13619,16695,30421,-9,30420,30422,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1027.569,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,9,5,1,934.66669,3565254,0,0,7638.5654 -13619,16695,30422,30420,-9,-9,1,1,1,57,1,0,1,0,1,-9,2,1,0,0,5,8.9303722,9.2222443,0,2,0,-9,11,0,5,-56.522854,0,0,0,52,1,4,1,2,3,2019,1,2,6,0,70,65,15,1,0,1,0,11.852041,11.852041,0,0,0,0,0,0,0,0,0,0,0,5.0683618,0,0,0,54.099998,59.110001,60.299999,43.720001,6,1,1,0,0,9,5,1,934.66669,3565254,0,0,7638.5654 -13620,16696,30423,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,6.4137931,5.9790926,3,0,0,0,-9,0,-1054.4957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3966541,6.0673513,0,0,53.23,47.509998,-9,-9,6,1,1,0,0,2,2,1,944,115420.79,0,0,1332.2731 -13621,16697,30424,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,2,1,0,0,4,8.3169308,8.198288,0,3,0,0,0,-9,0,-1050.4048,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,34,46,15,1,0,-9,0,12.597162,12.597162,0,0,0,0,0,0,0,0,1,1,0,5.9060535,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,4,1,720,193543.16,0,0,1505.1096 -13622,16698,30425,30426,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,6.6538482,6.785892,1,0,-9,6,0,-1,101.46504,0,0,0,68,3,2,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.5299249,0,0,54.959999,53.169998,39,54.389999,5,1,1,0,0,9,3,1,706.5,629665.19,0,0,2109.4373 -13622,16698,30426,30425,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,7.2241812,7.5262446,1,0,-9,6,0,1,-64.070923,0,0,0,67,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9537668,7.5430794,0,0,39,54.389999,54.959999,53.169998,6,1,1,0,0,9,3,1,706.5,629665.19,0,0,2109.4373 -13623,16699,30427,-9,30430,30429,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1125.719,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,696.75,402738.88,0,0,6135.0605 -13623,16699,30428,-9,30430,30429,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-987.5224,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,5,1,696.75,402738.88,0,0,6135.0605 -13623,16699,30429,30430,-9,-9,1,1,1,36,1,0,2,0,2,-9,1,1,0,0,3,7.5682778,7.820909,0,2,0,-9,9,0,-3,125.66802,0,0,0,39,1,3,1,3,2,2019,1,2,11,1,37,40,15,1,0,1,0,8.6699638,8.6699638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,33.900002,60.310001,4,1,1,0,0,9,5,1,696.75,402738.88,0,0,6135.0605 -13623,16699,30430,30429,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,9.52668,9.8027124,0,2,0,-9,9,0,3,40.704632,0,0,1,36,2,3,1,2,2,2019,1,1,21,9,50,40,15,1,1,1,0,40.167015,40.167015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.900002,60.310001,49.290001,54.59,2,1,1,0,0,9,5,1,696.75,402738.88,0,0,6135.0605 -13624,16700,30431,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,3,0,6.970253,6.7179604,3,0,0,0,-9,0,-994.28595,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.1395309,6.5144854,0,0,50,46,-9,-9,5,1,1,0,0,6,2,0,298,517979.09,0,0,2297.6218 -13625,16701,30432,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-960.15027,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8681252,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,1,1,440,-125848.35,0,0,-529.98773 -13626,16702,30433,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,6.84584,6.4682398,3,0,0,0,-9,0,-1088,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2687135,6.5827694,1.0385072,3,58.720001,51.290001,-9,-9,6,1,1,0,0,9,2,1,382,445671.16,0,0,2170.3 -13627,16703,30434,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,1,0,4.6997714,4.9593139,3,0,0,0,-9,0,-884.70697,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.6542382,0,0,39.16,36.57,-9,-9,5,1,1,0,0,6,2,0,290,40375.352,0,0,-214.94046 -13628,16704,30435,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,0,5,0,7.523231,7.4446125,3,0,0,0,-9,0,-1052.2588,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.089026,7.5549755,0,0,51.459999,27.790001,-9,-9,5,1,1,0,0,2,3,1,410,633332.94,0,0,533.90295 -13629,16705,30436,30437,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,2,3.171541,4.0593004,3.2061403,1,0,-9,40,0,1,136.30421,0,0,0,60,1,2,3,2,2,2019,2,2,14,3,9,12,15,1,0,4,0,.40975547,.40975547,0,0,0,0,0,0,0,2,0,0,0,0,3.5734658,7.9180536,3,42.599998,29.190001,42.849998,45.549999,4,1,1,0,0,10,5,1,629.5,1625675.1,0,0,4040.364 -13629,16705,30437,30436,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,0,2,8.1879101,9.0772152,8.2451935,1,0,-9,40,0,-1,72.253441,0,0,0,61,2,2,1,2,3,2019,3,1,25,11,0,30,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9044776,8.0357313,0,0,42.849998,45.549999,42.599998,29.190001,6,1,1,0,1,10,5,1,629.5,1625675.1,0,0,4040.364 -13629,16706,30438,-9,30436,30437,3,1,1,29,3,0,0,0,1,-9,2,1,0,0,3,7.4155974,7.40732,0,3,0,0,0,-9,0,-879.94366,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,18,6,24,12,15,1,1,-9,1,10.142547,10.142547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,53,-9,-9,3,1,1,0,0,10,3,1,137,7297.3735,0,0,1060.8411 -13630,16707,30439,30440,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,0,3,7.9454312,8.1109238,0,2,0,-9,9,0,6,100.58126,0,0,0,38,2,4,1,2,1,2019,1,1,12,0,40,40,15,1,0,1,0,7.9196548,7.9196548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.650002,57.360001,44.189999,56.73,3,2,3,0,1,8,3,1,511.25,443393.38,0,0,1994.0956 -13630,16707,30440,30439,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,0,4,7.1036224,7.3373852,0,2,0,-9,19,0,-6,-42.041527,0,0,1,44,1,3,1,2,2,2019,1,2,12,0,20,20,15,1,0,1,0,7.0956426,7.0956426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,56.73,40.650002,57.360001,6,2,3,0,1,8,3,1,511.25,443393.38,0,0,1994.0956 -13630,16707,30441,-9,30440,30439,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.1636,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,511.25,443393.38,0,0,1994.0956 -13630,16707,30442,-9,30440,30439,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.82135,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,8,3,1,511.25,443393.38,0,0,1994.0956 -13631,16708,30443,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,1,3,0,7.7468677,7.6442342,3,0,0,0,-9,0,-1075.3694,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.7174621,0,0,52,47,-9,-9,5,1,1,0,0,12,3,1,1511,619545.56,0,0,3172.4133 -13632,16709,30444,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,2,0,6.4968634,6.375495,3,0,0,0,-9,0,-909.74615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.1405964,0,0,50.630001,22.73,-9,-9,5,1,1,0,0,13,2,1,855,164629.58,0,0,1286.4554 -13633,16710,30445,-9,30447,30448,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1022.0554,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,7,4,1,443.75,342646.75,0,0,3071.4707 -13633,16710,30446,-9,30447,30448,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-848.72626,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,7,4,1,443.75,342646.75,0,0,3071.4707 -13633,16710,30447,30448,-9,-9,2,1,0,43,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,17,0,1,-35.557045,0,0,1,42,1,3,1,3,1,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,52.400002,52.91,7,2,3,0,0,7,4,1,443.75,342646.75,0,0,3071.4707 -13633,16710,30448,30447,-9,-9,1,1,1,42,1,0,2,0,1,-9,1,1,0,0,3,9.0604973,8.9196281,0,2,0,-9,17,0,-1,56.312721,0,0,0,43,2,3,3,1,1,2019,2,2,10,0,60,48,15,1,0,3,0,14.014522,14.014522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,52.91,54.369999,54.799999,5,2,3,0,0,7,4,1,443.75,342646.75,0,0,3071.4707 -13634,16711,30449,30450,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,3,0,5.4740129,5.0669785,1,0,-9,34,0,17,62.49371,0,0,0,51,1,3,1,3,3,2019,3,1,19,6,0,0,15,4,1,1,0,0,0,1,0,7.5505214,0,0,0,0,0,1,1,0,0,5.083631,0,0,49.849998,23.16,53.98,50.869999,2,1,1,0,0,11,2,0,191,676390.38,0,0,1394.436 -13634,16711,30450,30449,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,6.6514497,6.1447239,0,1,0,-9,34,0,-17,76.318863,0,0,0,68,1,3,3,3,3,2019,2,2,7,0,35,43,15,1,0,4,0,1.6106845,1.6106845,0,0,0,0,0,0,0,2,1,1,0,0,0,.20976932,1,53.98,50.869999,49.849998,23.16,6,1,1,0,0,11,2,0,191,676390.38,0,0,1394.436 -13635,16712,30451,30453,-9,-9,1,1,0,36,1,0,2,0,1,1,2,1,0,0,4,8.4519262,8.2568016,0,2,0,-9,12,0,-2,-65.277824,-9,0,1,38,2,4,1,3,3,2019,1,2,16,5,30,0,15,1,1,1,0,18.828781,18.828781,0,0,0,0,0,0,0,0,0,0,0,2.821806,0,0,0,46.09,47.560001,51,56,5,3,4,0,0,9,5,1,652.66669,445745.25,0,0,8116.8364 -13635,16712,30452,-9,30451,30453,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.62433,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,9,5,1,652.66669,445745.25,0,0,8116.8364 -13635,16712,30453,30451,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,8.6675711,8.8757591,0,2,0,-9,6,0,2,99.325371,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,1,40,38,15,1,0,1,0,16.917582,16.917582,0,0,0,0,0,0,0,0,0,0,0,8.6951857,0,0,0,51,56,46.09,47.560001,5,1,1,0,0,9,5,1,652.66669,445745.25,0,0,8116.8364 -13636,16713,30454,30455,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,6,-86.510368,0,0,0,74,2,1,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.63814944,0,0,0,55.110001,47.630001,55.200001,9.2200003,7,1,1,0,0,10,2,1,2760.5,900925.81,0,0,2357.0178 -13636,16713,30455,30454,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,1,0,7.2463212,7.4186316,1,0,-9,15,0,-6,-26.690086,0,0,0,80,3,3,3,3,3,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4809089,7.1837397,0,0,55.200001,9.2200003,55.110001,47.630001,5,1,1,0,0,10,2,1,2760.5,900925.81,0,0,2357.0178 -13637,16714,30456,30457,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,56,0,0,0,0,0,0,78,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.29766,1,56.639999,28.07,54,46,5,1,1,0,0,5,1,1,348,75534.125,0,0,1900.9077 -13637,16714,30457,30456,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,9,0,0,0,0,69,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,126.62784,0,0,0,0,0,1,1,0,2.4800978,0,0,0,54,46,56.639999,28.07,6,1,1,0,0,5,1,1,348,75534.125,0,0,1900.9077 -13638,16715,30458,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,8.865346,8.6442804,0,3,0,0,0,-9,0,-1019.2326,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,40,15,1,0,-9,0,18.039595,18.039595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.450001,43.740002,-9,-9,5,1,1,0,0,7,5,1,4368,377836.97,0,0,1239.8325 -13639,16716,30459,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,-9,0,0,0,-831.26471,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,9,0,38,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.799999,44.5,-9,-9,1,1,1,0,0,4,1,0,2206,-18405.658,0,0,0 -13640,16717,30460,-9,30462,30461,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-994.1228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,3,1,912.66669,62883.711,0,0,1444.0321 -13640,16717,30461,30462,-9,-9,2,1,1,35,1,1,1,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,2,0,-1,40.353016,-9,0,0,36,2,4,1,-9,-9,2019,1,1,22,11,36,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.630001,62.189999,35.970001,61.830002,6,1,1,0,0,10,3,1,912.66669,62883.711,0,0,1444.0321 -13640,16717,30462,30461,-9,-9,1,1,0,36,1,1,1,0,2,-9,5,1,0,0,4,8.1271925,8.3623972,0,2,0,-9,2,0,1,36.865395,0,0,1,35,2,4,1,2,2,2019,1,2,18,6,36,41,15,1,1,1,0,12.348372,12.348372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.970001,61.830002,35.630001,62.189999,6,1,1,0,0,10,3,1,912.66669,62883.711,0,0,1444.0321 -13641,16718,30463,30464,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,6,0,-4,86.477364,0,0,0,66,2,2,3,3,3,2019,4,1,18,6,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.30365,3,33.470001,48.380001,61.07,21.870001,2,1,1,0,0,13,3,1,678.5,858512.06,0,0,1881.2728 -13641,16718,30464,30463,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,7.6297855,7.6051273,1,0,-9,6,0,4,-93.290756,0,0,0,62,3,3,3,3,3,2019,4,2,7,1,0,20,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0833521,7.9313912,0,0,61.07,21.870001,33.470001,48.380001,6,1,1,0,0,13,3,1,678.5,858512.06,0,0,1881.2728 -13642,16719,30465,30466,-9,-9,1,1,0,40,1,0,1,0,1,-9,2,1,0,0,2,7.5479589,7.3986945,0,2,0,-9,1,-9,-5,-9.6281309,-9,0,1,45,1,2,1,2,2,2019,1,2,0,0,10,0,15,1,0,1,0,21.825699,21.825699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.650002,34.950001,39.950001,45.529999,6,1,1,0,0,2,5,1,655,382404.84,0,0,4135.1064 -13642,16719,30466,30465,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,0,2,8.8856525,8.9493923,0,2,0,-9,1,-9,5,-45.607174,-9,0,0,40,1,2,1,2,2,2019,1,1,13,1,45,0,15,1,0,1,0,16.450964,16.450964,0,0,0,0,0,0,0,0,1,1,0,3.0340905,0,0,0,39.950001,45.529999,50.650002,34.950001,4,1,1,0,0,2,5,1,655,382404.84,0,0,4135.1064 -13642,16719,30467,-9,30465,30466,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-914.68622,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,5,1,655,382404.84,0,0,4135.1064 -13643,16720,30468,30469,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.8843565,8.1227293,1,0,-9,48,0,2,-107.62486,0,0,0,70,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.9270864,.15466137,3,58.07,46.290001,50,47,3,1,1,0,0,5,3,1,1502.5,1047906.1,0,0,2965.3496 -13643,16720,30469,30468,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,-2,-21.279819,0,0,0,72,2,3,3,3,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,9.5288019,3,50,47,58.07,46.290001,4,1,1,0,0,5,3,1,1502.5,1047906.1,0,0,2965.3496 -13644,16721,30470,-9,30471,30472,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.97083,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,1374.3334,1328704.4,0,0,6111.0796 -13644,16721,30471,30472,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.8114147,8.6916342,0,2,0,-9,14,0,0,13.193155,0,0,0,45,2,3,1,2,1,2019,1,2,9,0,83,47,15,1,0,1,0,10.317828,10.317828,0,0,0,0,0,0,0,0,0,0,0,.83809191,0,0,0,55.790001,52.619999,54.549999,49.25,6,1,1,0,0,7,5,1,1374.3334,1328704.4,0,0,6111.0796 -13644,16721,30472,30471,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,9.0687437,9.3995943,0,2,0,-9,4,0,0,10.805199,0,0,0,45,2,4,1,-9,-9,2019,1,1,3,0,42,35,15,1,0,1,0,27.612492,27.612492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.549999,49.25,55.790001,52.619999,7,1,1,0,0,7,5,1,1374.3334,1328704.4,0,0,6111.0796 -13645,16722,30473,30474,-9,-9,1,1,0,62,1,0,0,0,2,-9,1,1,0,0,3,6.7805209,6.7477002,0,1,0,-9,45,0,-5,-63.460518,0,0,0,67,2,4,3,3,3,2019,2,2,10,0,16,12,15,1,0,4,0,7.2739124,7.2739124,0,0,0,0,0,0,0,7,1,1,0,0,0,6.5564017,1,51.02,49.389999,53.509998,42.630001,6,1,1,0,0,7,2,1,1079,341079.19,0,0,1246.374 -13645,16722,30474,30473,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,5.5339251,5.8999352,1,0,-9,45,0,5,37.378277,0,0,0,62,2,3,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7562513,5.5864654,0,0,53.509998,42.630001,51.02,49.389999,6,1,1,0,0,7,2,1,1079,341079.19,0,0,1246.374 -13646,16723,30475,30476,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,4.105329,4.2755466,1,0,-9,52,0,-2,-81.475731,0,0,0,73,3,4,3,2,-9,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,1,0,48.062572,0,0,0,0,2,1,1,0,3.9775426,4.0949268,5.2682724,3,50.91,20.120001,43.349998,57.799999,5,1,1,0,0,9,2,1,483.5,596497.44,0,0,639.65137 -13646,16723,30476,30475,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,4,0,6.6404152,6.5037298,1,0,-9,52,0,2,-29.673599,0,0,0,71,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2559409,6.4367018,0,1,43.349998,57.799999,50.91,20.120001,6,1,1,0,0,9,2,1,483.5,596497.44,0,0,639.65137 -13647,16724,30477,30478,-9,-9,2,1,0,52,1,0,0,0,2,-9,3,3,0,1,2,7.0857902,7.0773039,0,1,0,-9,6,0,-2,-10.973511,-9,0,0,54,3,4,1,2,2,2019,3,1,30,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.8935204,3,29.129999,38.169998,42.419998,50.43,4,1,1,1,1,13,4,1,367,935802.19,0,0,1969.5896 -13647,16724,30478,30477,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,4,8.0800247,8.142725,0,1,0,-9,6,0,2,-13.459108,0,0,0,52,2,2,3,3,3,2019,2,2,12,0,25,0,15,1,0,3,0,16.658031,16.658031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.419998,50.43,29.129999,38.169998,6,4,5,0,0,13,4,1,367,935802.19,0,0,1969.5896 -13647,16725,30479,-9,30477,30478,3,1,1,24,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-920.505,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.549999,37.919998,-9,-9,5,1,1,0,0,13,1,1,1178,-50428.309,0,0,795.11914 -13647,16726,30480,-9,30477,30478,4,1,1,22,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-895.83856,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.540001,34.689999,-9,-9,4,1,1,0,0,13,1,1,193,0,0,0,345.49988 -13647,16727,30481,-9,30477,30478,5,1,1,19,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1008.2452,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,39.27,-9,-9,3,1,1,0,0,13,1,1,1275,76902.352,0,0,3012.6321 -13648,16728,30482,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.3294678,8.42735,0,3,0,-9,0,0,0,-976.5957,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,35,35,15,1,0,-9,0,17.313349,17.313349,0,0,0,0,0,0,0,0,0,0,0,6.6043077,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,4,0,353,-36360.168,0,0,1912.4955 -13649,16729,30483,30484,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,7.7679758,7.7955103,0,1,0,-9,7,0,-3,3.0057058,0,0,0,56,1,2,1,-9,-9,2019,1,1,6,0,39,39,15,1,0,1,0,7.0030918,7.0030918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.709999,44.419998,31.82,39.220001,6,2,3,0,0,5,5,1,415,2326731.8,0,0,3562.3906 -13649,16729,30484,30483,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,2,8.6341352,8.6385736,0,1,0,-9,28,0,3,176.71968,0,0,0,53,3,4,1,3,2,2019,1,2,24,11,40,39,15,1,1,1,0,19.376976,19.376976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.82,39.220001,50.709999,44.419998,1,2,3,0,1,5,5,1,415,2326731.8,0,0,3562.3906 -13649,16730,30485,-9,30483,30484,3,1,1,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-982.26837,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,9,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,-9,-9,5,2,3,0,0,5,1,1,426,0,0,0,-490.95932 -13649,16731,30486,-9,30483,30484,4,1,0,25,3,0,0,0,2,-9,2,1,0,0,4,8.5313044,8.1131668,0,3,0,0,0,-9,0,-1039.389,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,10,0,44,38,15,1,0,-9,1,14.235761,14.235761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,2,3,0,0,5,4,1,465,121395.66,0,0,1846.9138 -13650,16732,30487,30488,-9,-9,2,1,1,53,1,0,0,0,3,-9,3,3,0,0,1,0,0,0,1,0,-9,27,0,1,-79.961655,0,0,0,52,2,2,1,-9,-9,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.549999,31.73,43,39,2,1,1,1,1,2,3,0,375,176235.22,0,0,1022.6682 -13650,16732,30488,30487,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,8.1770554,8.5096951,0,1,0,-9,27,0,-1,6.0709147,0,0,0,53,3,1,3,3,2,2019,2,2,10,0,30,30,15,1,0,3,0,13.387459,13.387459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,40.549999,31.73,6,1,1,0,0,2,3,0,375,176235.22,0,0,1022.6682 -13650,16733,30489,-9,30488,30487,3,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,7.3317027,7.2905965,0,3,0,0,0,-9,0,-1072.8787,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,40,37,15,1,0,-9,1,5.2527475,5.2527475,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.849998,39.09,-9,-9,5,1,1,0,0,2,3,0,113,141296.33,0,0,1316.3555 -13650,16734,30490,-9,30488,30487,4,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,7.9031348,8.0510578,0,3,0,0,0,-9,0,-1002.1563,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,42,15,1,0,-9,1,7.4638901,7.4638901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.209999,46.759998,-9,-9,5,1,1,0,0,2,4,0,342,-70794.867,0,0,-244.75824 -13651,16735,30491,30492,-9,-9,1,1,0,58,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,39,0,-8,8.8327904,0,0,0,66,3,2,1,3,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.790001,52.619999,57.57,49.689999,6,1,1,0,0,5,3,1,373.5,61649.754,0,0,2234.0908 -13651,16735,30492,30491,-9,-9,2,1,1,66,1,0,0,0,3,-9,1,1,0,0,2,8.0969362,8.5236406,0,1,0,-9,38,0,8,57.648399,0,0,0,58,3,4,3,3,3,2019,2,1,9,0,20,20,15,1,0,3,0,23.21916,23.21916,0,0,0,0,0,0,0,0,1,1,0,6.3619885,0,0,0,57.57,49.689999,55.790001,52.619999,6,1,1,0,0,5,3,1,373.5,61649.754,0,0,2234.0908 -13652,16736,30493,30494,-9,-9,2,1,0,55,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,35,0,1,0,0,0,0,54,2,2,3,3,3,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.52,18.379999,36.599998,41.689999,4,1,1,0,0,13,1,0,795.5,-76098.891,0,0,2594.2031 -13652,16736,30494,30493,-9,-9,1,1,1,54,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,31,0,-1,0,0,0,0,55,3,1,3,3,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,67.646255,1,36.599998,41.689999,34.52,18.379999,2,1,1,0,0,13,1,0,795.5,-76098.891,0,0,2594.2031 -13652,16737,30495,-9,30493,30494,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,7.8376637,8.2330704,0,3,0,0,0,-9,0,-1021.3202,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,40,15,1,0,-9,1,6.9968395,6.9968395,0,0,0,0,0,0,0,2,1,1,0,.26890522,0,4.4767561,3,54.849998,55.889999,-9,-9,5,1,1,0,1,13,3,0,577,45664.859,0,0,890.01221 -13653,16738,30496,-9,30497,-9,3,1,0,17,2,0,0,0,2,-9,1,3,0,0,4,7.5732183,7.586679,0,3,0,0,0,-9,0,-829.30804,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,3,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.264579,3,39.32,53.48,-9,-9,4,2,3,0,1,2,3,1,622.5,58213.793,0,0,2097.3262 -13653,16738,30497,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,3,7.760879,7.5537939,0,3,0,0,0,-9,0,-903.00287,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,30,30,15,1,1,-9,0,7.53931,7.53931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.17,58.869999,-9,-9,4,2,3,0,1,2,3,1,622.5,58213.793,0,0,2097.3262 -13653,16739,30498,-9,30497,-9,2,1,0,20,2,0,0,0,2,-9,7,2,0,0,1,6.1835351,6.1227627,0,3,0,0,0,-9,0,-1146.9037,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,8,12,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,.48902351,0,14.011845,3,29.120001,38.529999,-9,-9,3,2,3,0,1,2,2,1,364,-26624.285,0,0,1358.9108 -13654,16740,30499,30501,-9,-9,1,1,1,42,1,1,2,0,1,-9,2,1,0,0,4,8.8280821,9.2259665,0,2,0,-9,19,0,1,-56.45689,0,0,0,41,2,2,1,2,2,2019,1,2,8,1,47,50,15,1,0,1,0,25.903864,25.903864,0,0,0,0,0,0,0,0,0,0,0,2.9768171,0,0,0,54.200001,57.490002,48.470001,46.950001,6,1,1,0,0,2,5,1,876.33331,190595.05,0,0,3342.2305 -13654,16740,30500,-9,30501,30499,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.8502,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,876.33331,190595.05,0,0,3342.2305 -13654,16740,30501,30499,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,0,2,8.9340858,8.6407967,0,2,0,-9,19,0,-1,-65.968689,0,0,1,42,1,4,1,2,2,2019,1,1,5,0,37,38,15,1,0,1,0,19.556982,19.556982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.470001,46.950001,54.200001,57.490002,6,1,1,0,0,2,5,1,876.33331,190595.05,0,0,3342.2305 -13655,16741,30502,30503,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,1,4,6.8364549,6.7926946,0,2,0,-9,27,0,-6,-35.253586,0,0,1,50,1,4,3,2,2,2019,2,2,11,1,14,16,15,1,0,3,0,7.6263552,7.6263552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,5,2,3,0,0,8,2,0,261.33334,882095.69,0,0,1788.3364 -13655,16741,30503,30502,-9,-9,2,1,1,50,1,0,1,0,1,-9,97,3,0,1,4,0,0,0,2,0,-9,27,0,6,-1.1513906,0,0,0,44,2,4,1,2,1,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.934433,1,52,55,49,55,6,2,3,0,0,8,2,0,261.33334,882095.69,0,0,1788.3364 -13655,16741,30504,-9,30502,30503,4,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.5024,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,261.33334,882095.69,0,0,1788.3364 -13655,16742,30505,-9,30502,30503,3,1,1,22,2,0,1,0,1,-9,2,1,0,0,4,8.0075226,7.9536872,0,3,0,0,0,-9,0,-1054.1344,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,43,40,15,1,0,-9,1,9.9844675,9.9844675,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.150928,3,54.599998,55.889999,-9,-9,7,2,3,0,0,8,4,0,636,-49473.98,0,0,579.16174 -13656,16743,30506,30508,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.5495005,8.8281174,0,2,0,-9,18,0,-3,-117.42294,0,0,0,47,2,4,3,-9,-9,2019,2,2,9,0,55,55,15,1,0,3,0,10.506199,10.506199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.740002,51.610001,43.139999,61.330002,4,1,1,0,1,8,4,0,810.33331,77281,0,0,3053.1536 -13656,16743,30507,-9,30508,30506,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.17126,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,8,4,0,810.33331,77281,0,0,3053.1536 -13656,16743,30508,30506,-9,-9,2,1,0,47,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,18,0,3,-29.832788,0,0,0,44,2,3,1,2,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.139999,61.330002,43.740002,51.610001,3,3,4,1,1,8,4,0,810.33331,77281,0,0,3053.1536 -13657,16744,30509,-9,-9,-9,1,1,0,29,3,0,2,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-924.87402,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.418201,3,43.09,39.880001,-9,-9,5,1,1,0,0,5,1,0,733.33331,-34285.313,0,0,1743.4304 -13657,16744,30510,-9,30509,-9,2,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-889.36365,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,1,0,733.33331,-34285.313,0,0,1743.4304 -13657,16744,30511,-9,30509,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1035.9766,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,1,0,733.33331,-34285.313,0,0,1743.4304 -13658,16745,30512,-9,-9,-9,1,1,0,32,3,1,3,0,2,-9,2,1,0,0,3,8.3633442,8.7274628,0,4,0,0,0,-9,0,-957.43201,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,38,38,15,1,0,-9,0,12.645942,12.645942,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,58.549999,-9,-9,5,1,1,0,0,9,3,0,622.75,9987.7002,0,0,2111.0994 -13658,16745,30513,-9,30512,-9,2,1,1,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-999.32147,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,622.75,9987.7002,0,0,2111.0994 -13658,16745,30514,-9,30512,-9,4,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1039.3297,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,9,3,0,622.75,9987.7002,0,0,2111.0994 -13658,16745,30515,-9,30512,-9,3,1,1,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.0316,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,622.75,9987.7002,0,0,2111.0994 -13659,16746,30516,30517,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,5,9.6141281,9.5514317,0,1,0,-9,8,0,0,3.702672,0,0,0,52,1,4,1,1,1,2019,1,2,7,0,40,41,15,1,0,1,0,49.273884,49.273884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,41.060001,62.040001,6,1,1,0,0,6,5,1,738.5,1502902.9,0,0,7134.7705 -13659,16746,30517,30516,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,9.2959185,9.5935268,0,1,0,-9,8,0,0,-101.9344,0,0,0,52,1,5,1,3,2,2019,1,1,17,7,53,53,15,1,1,1,0,30.067921,30.067921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.060001,62.040001,51.139999,60.450001,5,1,1,0,0,6,5,1,738.5,1502902.9,0,0,7134.7705 -13660,16747,30518,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1045.7184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.25,20.77,-9,-9,4,1,1,0,0,10,1,0,781,-79043.688,0,0,1443.0863 -13661,16748,30519,30520,-9,-9,1,1,0,69,1,0,0,0,2,-9,1,1,0,1,2,4.118258,6.8526502,6.7604508,1,0,-9,49,0,-5,1.1256578,0,0,0,74,3,3,1,3,3,2019,1,2,10,1,2,0,15,1,0,1,0,3.0299294,3.0299294,1,0,7.3334856,0,0,0,0,0,1,1,0,7.6723905,6.5550847,0,0,58.48,15.4,58.32,50.220001,5,1,1,0,0,10,3,1,342,411177.13,0,0,2385.4233 -13661,16748,30520,30519,-9,-9,2,1,1,74,1,0,0,0,3,-9,1,1,0,0,3,3.7546473,7.4642177,7.6298547,1,0,-9,49,0,5,90.292717,0,0,0,69,2,2,1,3,3,2019,1,1,7,0,50,40,15,1,0,1,0,.14682423,.14682423,1,0,0,0,0,0,0,2,1,1,0,7.7425852,7.0558157,0,1,58.32,50.220001,58.48,15.4,7,1,1,0,0,10,3,1,342,411177.13,0,0,2385.4233 -13662,16749,30521,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,4,3,0,0,3,0,7.450161,7.6770949,3,0,0,0,-9,0,-951.22034,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2426934,7.3885336,0,0,57.919998,51.82,-9,-9,7,1,1,0,0,13,3,1,776,1097534.9,0,0,983.64703 -13663,16750,30522,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,4,0,6.6846504,6.8321419,3,0,0,0,-9,0,-1124.3364,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,125.2446,0,0,0,0,1229.6655,0,1,1,0,0,6.6544933,0,0,57.57,27.219999,-9,-9,6,1,1,0,0,13,2,0,530,67959.805,0,0,1571.5135 -13664,16751,30523,30524,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.5659952,8.3963757,0,1,0,-9,29,0,-14,-44.658558,0,0,0,67,3,3,1,1,2,2019,1,2,10,0,64,87,15,1,0,1,0,8.9948177,8.9948177,0,0,0,0,0,0,0,2,1,1,0,4.9542832,0,2.04317,3,51.110001,50.75,53,47,6,1,1,0,0,5,4,1,702.5,319242.69,0,0,3675.6797 -13664,16751,30524,30523,-9,-9,2,1,1,67,1,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,6,0,14,112.73737,0,0,0,53,2,3,1,-9,2,2019,1,1,10,1,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9305935,0,0,0,53,47,51.110001,50.75,5,1,1,0,0,5,4,1,702.5,319242.69,0,0,3675.6797 -13664,16752,30525,-9,30523,30524,3,1,0,18,2,0,0,0,2,-9,2,1,0,0,4,7.7357941,7.6667666,0,3,0,0,0,-9,0,-852.17218,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,35,0,15,1,0,-9,1,6.8125153,6.8125153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,5,3,1,878,282930.13,0,0,865.1839 -13665,16753,30526,30527,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,2,0,6.0487146,6.0954237,1,0,-9,9,0,4,15.943979,0,0,0,73,2,4,3,3,2,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0220199,0,0,49.049999,22.15,53.740002,42.490002,7,1,1,0,0,11,2,1,321,143358.91,0,0,1053.0291 -13665,16753,30527,30526,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-4,140.26869,0,0,0,77,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.740002,42.490002,49.049999,22.15,6,1,1,0,0,11,2,1,321,143358.91,0,0,1053.0291 -13666,16754,30528,30529,-9,-9,2,1,1,60,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,19,0,-3,23.062841,-9,0,0,63,3,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4985447,0,0,0,51,49,58.32,50.220001,5,1,1,0,0,7,4,1,1022.5,505962,0,0,3426.0339 -13666,16754,30529,30528,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,0,3,8.7312737,8.610714,0,1,0,-9,19,0,3,23.564873,0,0,0,60,2,3,3,3,3,2019,2,2,7,0,44,42,15,1,0,3,0,14.285786,14.285786,0,0,0,0,0,0,0,0,0,0,0,5.4112911,0,0,0,58.32,50.220001,51,49,2,1,1,0,0,7,4,1,1022.5,505962,0,0,3426.0339 -13667,16755,30530,-9,-9,-9,1,1,1,100,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-920.97009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.1150632,49.138302,0,1,1,0,3.4010253,0,0,0,56.610001,42.610001,-9,-9,6,1,1,0,0,13,1,0,1765,-17122.023,0,0,2164.8718 -13668,16756,30531,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,1,1,0,0,5,8.1702223,8.2421331,0,3,0,0,0,-9,0,-984.32465,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,35,15,1,0,-9,0,12.684366,12.684366,0,0,0,0,0,0,0,0,0,0,0,8.0918026,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,4,0,1286,1161316.4,0,0,1865.7596 -13669,16757,30532,30533,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,8.4594088,8.5678663,1,0,-9,44,0,5,-29.715401,0,0,0,63,2,5,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7517819,8.4870586,0,0,57.330002,53.459999,57.060001,57.759998,6,1,1,0,0,7,4,1,666.5,1247089.5,0,0,2617.2979 -13669,16757,30533,30532,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,5.2597866,5.1452756,1,0,-9,44,0,-5,47.020256,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3268185,0,0,57.060001,57.759998,57.330002,53.459999,6,1,1,0,0,7,4,1,666.5,1247089.5,0,0,2617.2979 -13670,16758,30534,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,2,1,0,0,2,6.9923387,7.0061569,0,4,0,0,0,-9,0,-962.97028,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,16,4,16,17,15,1,1,-9,0,8.6959696,8.6959696,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.68,43.959999,-9,-9,5,1,1,0,0,12,2,0,959.5,-3691.9277,0,0,2179.0557 -13670,16758,30535,-9,30534,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-864.87836,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,2,0,959.5,-3691.9277,0,0,2179.0557 -13671,16759,30536,-9,30539,30537,2,1,1,17,2,0,1,1,2,0,7,2,0,0,4,6.4396505,6.6165466,0,2,0,0,0,-9,0,-942.47125,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.53828138,0,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,9,5,0,795.25,427131.63,0,0,6496.2612 -13671,16759,30537,30539,-9,-9,4,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,9.1417952,9.0691833,0,2,0,-9,1,-9,10,-100.86528,-9,0,0,38,2,5,1,-9,-9,2019,1,1,6,0,45,0,15,1,0,1,0,27.920221,27.920221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,48.77,60.16,7,1,1,0,0,9,5,0,795.25,427131.63,0,0,6496.2612 -13671,16759,30538,-9,30539,30537,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.08221,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,0,795.25,427131.63,0,0,6496.2612 -13671,16759,30539,30537,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,5,8.7540112,8.815793,7.2654004,2,0,1,1,-9,-10,23.597385,0,0,1,48,2,4,1,2,2,2019,1,4,7,0,38,37,15,1,0,1,0,15.791354,15.791354,0,0,0,0,0,0,0,0,1,1,0,7.0794034,0,0,0,48.77,60.16,51.77,58.57,7,1,1,0,0,9,5,0,795.25,427131.63,0,0,6496.2612 -13672,16760,30540,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-949.37238,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,21,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3115242,0,0,0,22.209999,57.66,-9,-9,2,4,2,0,1,9,1,0,1376,0,0,0,583.48993 -13673,16761,30541,30542,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,1,3,0,5.8945756,6.0904388,1,0,-9,47,0,2,-81.157532,0,0,0,77,1,2,3,2,3,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1931281,0,0,51.290001,39.669998,57.32,25.09,4,1,1,0,0,2,3,1,424,797008.38,0,0,3303.6167 -13673,16761,30542,30541,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,1,2,0,8.2335892,8.264924,1,0,-9,48,0,-2,-85.489296,0,0,0,79,3,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9320941,0,0,57.32,25.09,51.290001,39.669998,5,1,1,0,0,2,3,1,424,797008.38,0,0,3303.6167 -13674,16762,30543,30544,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.2553539,8.0526752,0,1,0,-9,7,0,2,-43.401409,0,0,1,28,1,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,8.1071177,8.1071177,0,0,0,0,0,0,0,0,0,0,0,2.5578909,0,0,0,48.529999,58.91,63.060001,53.470001,6,1,1,0,0,10,4,0,292,31707.539,0,0,2672.6641 -13674,16762,30544,30543,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,7.9718323,8.1071281,0,1,0,-9,7,0,-2,10.877824,0,1,0,30,1,4,1,-9,-9,2019,1,2,7,0,42,40,15,1,0,1,0,7.808804,7.808804,0,0,0,0,0,0,0,0,0,0,0,1.954538,0,0,0,63.060001,53.470001,48.529999,58.91,5,1,1,0,0,10,4,0,292,31707.539,0,0,2672.6641 -13675,16763,30545,30546,-9,-9,1,1,0,54,1,0,0,0,2,-9,4,3,0,1,4,0,4.1776919,4.6573305,1,0,-9,27,0,0,-116.06526,0,0,0,54,2,5,3,-9,-9,2019,4,4,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.0516262,0,3,50.25,56.540001,35.5,63.82,3,1,1,0,0,6,3,1,1133.5,1211779.3,0,0,1132.6174 -13675,16763,30546,30545,-9,-9,4,1,1,54,1,0,0,0,2,-9,4,3,0,0,5,0,7.7582726,7.9656472,1,0,-9,4,0,0,-110.11452,0,0,0,54,2,4,3,2,2,2019,4,1,15,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,0,1,3.5069747,8.1506596,.35427865,3,35.5,63.82,50.25,56.540001,3,1,1,0,0,6,3,1,1133.5,1211779.3,0,0,1132.6174 -13675,16764,30547,-9,30545,30546,2,1,1,24,2,0,0,0,1,1,3,3,0,0,2,0,6.8585968,6.5874591,3,0,0,0,-9,0,-1086.7083,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.1553249,0,0,0,19.99,56.310001,-9,-9,4,1,1,1,1,6,2,1,1889,-126604.24,0,0,16.302916 -13676,16765,30548,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,1,1,0,0,3,8.649044,8.5183001,0,3,0,0,0,-9,0,-1181.2533,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,40,40,15,1,1,-9,0,15.425034,15.425034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.360001,61.889999,-9,-9,5,1,1,0,0,9,5,0,385,-81324.734,0,0,2878.1191 -13677,16766,30549,30550,-9,-9,2,1,0,38,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,14,-9,-5,28.372869,-9,0,1,43,1,3,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.369999,39.349998,57.330002,53.459999,4,1,1,0,0,11,4,1,674.33331,491308.25,0,0,2588.3157 -13677,16766,30550,30549,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,3,8.5611057,8.861166,0,2,0,-9,14,-9,5,125.42621,-9,0,0,38,2,2,3,2,2,2019,2,2,9,0,40,0,15,1,0,3,0,17.850874,17.850874,0,0,0,0,0,0,0,0,1,1,0,1.7255878,0,0,0,57.330002,53.459999,47.369999,39.349998,6,1,1,0,0,11,4,1,674.33331,491308.25,0,0,2588.3157 -13677,16766,30551,-9,30549,30550,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-997.58344,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,11,4,1,674.33331,491308.25,0,0,2588.3157 -13678,16767,30552,30553,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,0,5,9.0866213,8.6481552,0,1,0,-9,1,-9,0,-86.475578,-9,0,1,32,1,3,1,-9,-9,2019,1,1,7,1,38,0,15,1,0,1,0,19.582981,19.582981,0,0,0,0,0,0,0,0,0,0,0,7.3038573,0,0,0,57.060001,57.759998,50.720001,46.82,6,3,4,0,0,10,5,1,662.5,318058.44,0,0,4677.6729 -13678,16767,30553,30552,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,3,8.1049004,7.8843379,0,1,0,1,1,-9,0,-63.747818,0,0,0,32,2,5,1,2,2,2019,1,2,11,0,33,30,15,1,0,1,0,8.2333355,8.2333355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.720001,46.82,57.060001,57.759998,6,1,1,0,0,10,5,1,662.5,318058.44,0,0,4677.6729 -13679,16768,30554,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-841.61499,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.59,32.09,-9,-9,3,1,1,0,0,2,1,0,1786,209986.88,0,0,1513.1713 -13679,16769,30555,-9,30554,-9,2,1,1,48,2,0,0,0,1,-9,2,1,0,0,4,7.545588,7.587863,0,3,0,0,0,-9,0,-1024.3673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,1,6.5834351,6.5834351,0,0,0,0,0,0,0,7,1,1,0,0,0,16.263571,3,48.790001,47.689999,-9,-9,4,1,1,0,0,2,3,0,172,327445.69,0,0,178.66876 -13680,16770,30556,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1060.0123,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0601454,0,0,0,60.529999,48.349998,-9,-9,7,1,1,0,0,10,1,1,1154,-115443.29,0,0,902.47333 -13681,16771,30557,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,3,9.5618153,9.4966459,0,3,0,0,0,-9,0,-1103.6908,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,18,7,50,58,15,1,1,-9,0,34.600224,34.600224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.400002,58.619999,-9,-9,3,1,1,0,0,5,5,1,344,1554467.3,0,0,5567.5698 -13681,16772,30558,-9,30557,-9,2,1,0,23,2,0,0,0,1,-9,7,2,0,0,4,0,5.508811,5.5766482,3,0,0,0,-9,0,-982.03302,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,1,0,30,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6077094,0,0,0,38.91,60.5,-9,-9,5,1,1,0,0,5,2,1,179,-110309.71,0,0,988.57172 -13682,16773,30559,30560,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,1,3,0,5.882947,6.308857,1,0,-9,56,0,6,70.525078,0,0,0,73,3,2,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4728227,5.6775618,0,0,55.119999,42.099998,62.990002,25.26,6,1,1,0,0,9,2,1,1757.5,924835.13,0,0,2605.8994 -13682,16773,30560,30559,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,56,0,-6,60.761856,0,0,0,79,2,3,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.990002,25.26,55.119999,42.099998,6,1,1,0,0,9,2,1,1757.5,924835.13,0,0,2605.8994 -13683,16774,30561,-9,30563,30562,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.6758,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,12,4,1,1901,1344977,0,0,4227.4209 -13683,16774,30562,30563,-9,-9,1,1,1,52,1,0,2,0,1,-9,1,1,0,0,5,8.3062496,8.3539,0,2,0,-9,28,0,2,23.694275,0,0,0,50,1,5,1,2,2,2019,1,2,10,2,47,48,15,1,0,1,0,8.3008928,8.3008928,0,0,0,0,0,0,0,0,1,1,0,6.4471955,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,12,4,1,1901,1344977,0,0,4227.4209 -13683,16774,30563,30562,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,5,8.264802,8.7455997,0,2,0,-9,28,0,-2,-109.7977,0,0,0,52,1,5,1,2,1,2019,1,1,6,0,27,28,15,1,0,1,0,22.817177,22.817177,0,0,0,0,0,0,0,0,1,1,0,4.1151905,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,12,4,1,1901,1344977,0,0,4227.4209 -13683,16774,30564,-9,30563,30562,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.27484,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,1901,1344977,0,0,4227.4209 -13684,16775,30565,-9,-9,-9,1,1,0,29,3,0,0,0,1,-9,2,1,0,0,4,7.7636452,8.1834068,0,3,0,0,0,-9,0,-1044.5046,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,36,37,15,1,0,-9,0,7.6722674,7.6722674,0,0,0,0,0,0,0,0,0,0,0,2.1952786,0,0,0,45.77,51.860001,-9,-9,6,4,2,0,0,7,4,1,113,-11724.573,0,0,556.85498 -13685,16776,30566,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,0,4,0,7.7302589,7.4312162,3,0,0,0,-9,0,-1032.4213,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4665241,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,12,3,1,220,435167.81,0,0,323.44745 -13686,16777,30567,-9,30568,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1033.3354,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,230,-6179.5898,0,0,748.10089 -13686,16777,30568,-9,-9,-9,1,1,0,36,3,0,1,0,2,-9,2,1,0,0,4,8.1256657,7.9978499,0,4,0,-9,0,-9,0,-830.27185,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,30,0,15,1,0,-9,0,9.4465494,9.4465494,0,0,0,0,0,0,0,0,1,1,0,.67586541,0,0,0,37.59,51.650002,-9,-9,2,1,1,0,0,9,3,1,230,-6179.5898,0,0,748.10089 -13687,16778,30569,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-984.83588,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.0170392,0,2.7514348,3,41.299999,34.16,-9,-9,3,1,1,0,0,12,1,0,851,0,0,0,1912.8481 -13688,16779,30570,30571,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,9.0878792,8.8658714,0,1,0,-9,24,0,0,-51.220276,0,0,0,63,2,3,3,2,2,2019,2,1,9,0,80,70,15,1,0,4,0,11.533774,11.533774,0,0,0,0,0,0,0,7,0,0,0,0,0,7.5087967,3,57.330002,53.459999,57.740002,33.09,6,1,1,0,0,11,5,1,165.5,183715.81,0,0,3606.5488 -13688,16779,30571,30570,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,6.9683309,7.0262451,1,0,-9,25,0,9,-42.76363,0,0,0,54,2,3,1,2,2,2019,3,2,10,1,0,27,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.8128738,7.1134682,11.680183,3,57.740002,33.09,57.330002,53.459999,6,1,1,0,0,11,5,1,165.5,183715.81,0,0,3606.5488 -13689,16780,30572,30573,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,7.760829,7.3765874,0,2,0,-9,7,0,-2,-67.854713,0,0,1,45,2,4,1,3,3,2019,1,1,25,11,39,40,15,1,1,1,0,8.3858633,8.3858633,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,33.07,37.560001,55.189999,54.259998,4,1,1,0,0,10,3,1,1052.3334,185565.64,0,0,2179.0315 -13689,16780,30573,30572,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,7.7714539,8.0561419,0,2,0,-9,7,0,2,20.546339,0,0,0,43,2,3,1,-9,-9,2019,1,2,9,0,39,40,15,1,0,1,0,7.8754663,7.8754663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,33.07,37.560001,6,1,1,0,0,10,3,1,1052.3334,185565.64,0,0,2179.0315 -13689,16780,30574,-9,30572,30573,3,1,1,17,2,0,1,1,2,0,7,2,0,0,4,6.3367486,6.2205176,0,2,0,0,0,-9,0,-1050.2279,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.75,47.32,-9,-9,5,1,1,0,0,10,3,1,1052.3334,185565.64,0,0,2179.0315 -13690,16781,30575,30576,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,2,7.341363,7.1094885,0,1,0,-9,30,0,0,119.37648,0,0,0,46,3,2,1,-9,1,2019,1,2,16,4,23,5,15,1,1,1,0,6.9187713,6.9187713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.970001,39.830002,57.57,49.689999,3,1,1,0,0,11,3,0,1138,288340.13,0,0,1748.5209 -13690,16781,30576,30575,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,0,2,7.6832094,7.6953745,0,1,0,-9,7,0,0,17.867786,0,0,0,46,3,2,1,3,3,2019,1,1,7,0,38,38,15,1,0,1,0,7.0631533,7.0631533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.689999,46.970001,39.830002,7,1,1,0,0,11,3,0,1138,288340.13,0,0,1748.5209 -13690,16782,30577,-9,30575,30576,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,7.6414371,7.5112262,0,3,0,0,0,-9,0,-933.74017,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,38,0,15,1,0,-9,1,6.4618964,6.4618964,0,0,0,0,0,0,0,2,0,0,0,0,0,4.8449254,3,54.959999,53.169998,-9,-9,6,1,1,0,0,11,3,0,711,163052.05,0,0,620.22607 -13691,16783,30578,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-969.69379,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6300297,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,10,1,1,799,379256.09,0,0,-186.27287 -13692,16784,30579,30581,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,8.9258423,9.1483536,0,2,0,-9,24,0,1,17.047499,0,0,0,47,1,5,3,2,2,2019,2,1,17,6,43,0,15,1,1,3,0,29.708254,29.708254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.85,40.59,45.810001,61.509998,3,1,1,0,0,8,5,1,1082,241492.34,0,0,2747.7625 -13692,16784,30580,-9,30579,30581,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1059.6938,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,8,5,1,1082,241492.34,0,0,2747.7625 -13692,16784,30581,30579,-9,-9,1,1,1,47,1,0,1,0,1,-9,3,3,0,0,5,0,0,0,2,0,-9,24,0,-1,34.026459,0,0,0,48,2,3,1,2,2,2019,3,2,17,5,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4596243,0,0,0,45.810001,61.509998,31.85,40.59,2,1,1,1,0,8,5,1,1082,241492.34,0,0,2747.7625 -13692,16785,30582,-9,30579,30581,3,1,0,18,2,0,1,0,2,-9,2,1,0,0,4,7.6758575,7.6675315,0,3,0,0,0,-9,0,-959.59888,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,20,8,43,0,15,1,1,-9,1,6.0437121,6.0437121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.42,65.410004,-9,-9,4,1,1,0,0,8,3,1,1206,-56614.625,0,0,632.12311 -13693,16786,30583,30584,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,1,2,0,9.2161207,9.2556133,1,0,-9,52,0,10,150.97418,0,0,0,70,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.097703,8.8294287,0,0,52.830002,49.110001,54.970001,37.110001,6,2,3,0,0,2,5,1,341.5,1608883.8,0,0,5871.6816 -13693,16786,30584,30583,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,-10,20.039822,0,0,0,80,1,2,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,37.110001,52.830002,49.110001,6,2,3,0,0,2,5,1,341.5,1608883.8,0,0,5871.6816 -13694,16787,30585,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,4,0,6.2198954,6.3097243,3,0,0,0,-9,0,-922.96283,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.8929482,0,0,54.48,36.700001,-9,-9,7,1,1,0,0,7,2,0,857,638369.56,0,0,2684.2158 -13695,16788,30586,30587,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,8.5307655,8.4314747,0,1,0,-9,40,0,0,163.58438,0,0,0,59,2,3,3,-9,3,2019,2,1,6,0,50,50,15,1,0,3,0,11.926248,11.926248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.200001,47.869999,46.68,6,1,1,0,0,9,4,1,1041.5,2052576.5,0,0,1379.5969 -13695,16788,30587,30586,-9,-9,1,1,0,59,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,40,0,0,-72.046608,0,0,0,59,3,4,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.869999,46.68,60.52,53.200001,6,1,1,0,0,9,4,1,1041.5,2052576.5,0,0,1379.5969 -13696,16789,30588,30589,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,0,3,7.5017376,7.5578604,0,1,0,-9,8,0,-3,67.293808,0,0,0,51,2,2,1,2,3,2019,1,2,23,7,38,38,15,1,1,1,0,7.4589272,7.4589272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.209999,48.560001,41.849998,38.849998,5,1,1,0,0,9,4,1,600.5,397370.69,0,0,2879.8794 -13696,16789,30589,30588,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.2465639,8.3579054,0,1,0,-9,8,0,3,69.797295,0,0,0,48,3,3,1,3,3,2019,1,1,16,3,55,42,15,1,0,1,0,9.8121252,9.8121252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.849998,38.849998,29.209999,48.560001,3,1,1,0,0,9,4,1,600.5,397370.69,0,0,2879.8794 -13696,16790,30590,-9,30588,30589,3,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.5338802,7.8286161,0,3,0,0,0,-9,0,-936.73364,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,3,42,38,15,1,0,-9,1,6.4071574,6.4071574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.369999,60.23,-9,-9,5,1,1,0,0,9,3,1,412,234268.19,0,0,253.07719 -13697,16791,30591,30592,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.0390592,7.3256593,1,0,-9,6,0,-1,100.799,0,0,0,75,1,3,3,1,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9317102,7.3122945,0,0,52.380001,55.599998,55.59,43.189999,6,1,1,0,0,12,2,1,326,20251.895,0,0,3492.1799 -13697,16791,30592,30591,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,6.1955695,6.0683055,1,0,-9,6,0,1,-46.385956,0,0,0,74,2,4,3,2,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5259695,5.9847536,0,0,55.59,43.189999,52.380001,55.599998,5,1,1,0,0,12,2,1,326,20251.895,0,0,3492.1799 -13698,16792,30593,30594,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,8.0474539,8.3633852,0,2,0,-9,9,0,-2,-57.903389,0,0,0,48,2,3,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,11.74335,11.74335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.599998,40.139999,52.540001,4,1,1,0,0,11,3,1,666.5,110541.91,0,0,2206.9988 -13698,16792,30594,30593,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.1218019,7.1305466,0,2,0,-9,9,0,2,4.6669607,0,0,0,46,2,3,1,3,2,2019,1,1,28,11,16,16,15,1,1,1,0,6.9379325,6.9379325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.139999,52.540001,52.48,55.599998,4,1,1,0,1,11,3,1,666.5,110541.91,0,0,2206.9988 -13699,16793,30595,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,7.785121,7.7638869,0,3,0,-9,0,0,0,-1000.7244,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,17,5,43,48,15,1,1,-9,0,6.2022905,6.2022905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,49.990002,-9,-9,3,1,1,0,0,12,3,0,186,29147.527,0,0,1499.957 -13700,16794,30596,30597,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,1,2,0,7.0424237,6.8768272,1,0,-9,6,0,-1,-31.546799,0,0,0,68,2,4,3,3,2,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2233171,0,0,32.68,35.189999,54.490002,50.459999,3,1,1,0,0,1,2,1,586.5,521960.31,0,0,772.33026 -13700,16794,30597,30596,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,1,65.173775,0,0,0,67,3,2,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.490002,50.459999,32.68,35.189999,7,1,1,0,0,1,2,1,586.5,521960.31,0,0,772.33026 -13701,16795,30598,30599,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.8470478,8.5964336,0,1,0,-9,9,0,-5,133.43996,0,0,0,58,2,3,1,1,1,2019,1,1,8,0,40,39,15,1,0,1,0,13.396894,13.396894,0,0,0,0,0,0,0,0,0,0,0,2.7816133,0,0,0,57.330002,53.459999,57.73,41.119999,6,1,1,0,0,12,5,1,315,133279.84,0,0,2891.8813 -13701,16795,30599,30598,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.5729427,7.8267846,0,1,0,-9,9,0,5,-27.718784,0,0,0,53,2,3,1,3,2,2019,1,2,11,1,20,25,15,1,0,1,0,10.527984,10.527984,0,0,0,0,0,0,0,14.5,0,0,0,0,0,20.396067,3,57.73,41.119999,57.330002,53.459999,4,1,1,0,0,12,5,1,315,133279.84,0,0,2891.8813 -13702,16796,30600,30601,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,6.8989067,7.005084,5.1796689,1,0,-9,11,0,-1,-99.775307,0,0,0,58,3,3,1,-9,-9,2019,1,2,12,0,18,18,15,1,0,1,0,10.026755,10.026755,0,0,0,0,0,0,0,0,0,0,0,4.4198298,5.1932282,0,0,52.580002,47.360001,52,54.509998,6,1,1,0,0,5,4,1,325,400553.78,0,0,2217.4868 -13702,16796,30601,30600,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,3,7.9321165,7.8930006,6.7020998,1,0,-9,11,0,1,-129.04274,0,0,0,57,2,3,1,3,2,2019,1,1,11,0,32,32,15,1,0,1,0,9.2711439,9.2711439,0,0,0,0,0,0,0,0,0,0,0,2.696672,7.0470481,0,0,52,54.509998,52.580002,47.360001,6,1,1,0,0,5,4,1,325,400553.78,0,0,2217.4868 -13703,16797,30602,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,2,9.0316982,8.803483,0,3,0,0,0,-9,0,-937.99121,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,47,15,1,0,-9,0,17.568691,17.568691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.450001,33.75,-9,-9,3,1,1,0,0,12,5,1,1121,99098.391,0,0,1975.5939 -13704,16798,30603,-9,30604,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,1,0,0,0,4,0,0,0,-9,0,-809.83875,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,20,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,1,1,0,0,6,5,1,489.33334,1556446.6,0,0,3375.1162 -13704,16798,30604,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,2,1,0,0,3,8.6693068,8.8754721,6.7762313,4,0,0,0,-9,0,-1070.3368,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,42,38,15,1,0,-9,0,16.844925,16.844925,0,0,0,0,0,0,0,0,1,1,0,7.1013517,0,0,0,46.389999,45.080002,-9,-9,3,1,1,0,0,6,5,1,489.33334,1556446.6,0,0,3375.1162 -13704,16798,30605,-9,30604,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1034.2983,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,6,5,1,489.33334,1556446.6,0,0,3375.1162 -13705,16799,30606,30607,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,0,3,7.1385417,7.4307208,0,1,0,-9,6,0,-7,-108.58727,0,0,1,45,1,5,1,-9,-9,2019,1,1,16,4,27,45,15,1,1,1,0,6.1903152,6.1903152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.619999,50.48,43.57,43.169998,4,2,3,0,0,9,5,0,242,2263246.5,0,0,3656.8491 -13705,16799,30607,30606,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,0,5,9.2736864,9.0263052,0,1,0,-9,6,0,7,36.812767,0,0,0,38,1,3,1,-9,-9,2019,1,2,18,6,40,37,15,1,1,1,0,32.102978,32.102978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,43.169998,43.619999,50.48,6,2,3,0,0,9,5,0,242,2263246.5,0,0,3656.8491 -13706,16800,30608,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,4,3,0,0,4,0,8.1088104,7.9556217,3,0,0,0,-9,0,-1036.6957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2520046,7.9339585,0,0,43.669998,61.060001,-9,-9,3,1,1,0,0,8,3,1,670,1723739.5,0,0,622.6073 -13707,16801,30609,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,3,0,5.2003121,4.7299418,3,0,0,0,-9,0,-1054.3025,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,12.733291,0,5.5265059,0,0,1,1,0,0,4.9061007,0,0,51,46,-9,-9,6,1,1,0,0,11,2,0,253,43796.352,0,0,1424.1979 -13708,16802,30610,-9,30611,30612,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1055.0968,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,2,1,1008.8,-89203.836,0,0,1030.8561 -13708,16802,30611,30612,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,0,4,6.3708253,6.3384061,0,2,0,-9,13,0,-10,-163.55502,0,0,1,54,2,3,1,3,3,2019,1,2,12,0,6,3,15,1,0,1,0,8.2537956,8.2537956,0,0,0,0,0,0,0,0,1,1,0,3.0260417,0,0,0,54.200001,57.490002,51.419998,48.119999,6,1,1,0,0,7,2,1,1008.8,-89203.836,0,0,1030.8561 -13708,16802,30612,30611,-9,-9,2,1,1,54,1,0,3,0,2,-9,1,1,0,0,3,4.1769114,4.383224,0,2,0,-9,13,0,10,33.013531,0,0,0,44,1,4,1,2,2,2019,1,1,8,0,55,50,15,1,0,1,0,.15941396,.15941396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.419998,48.119999,54.200001,57.490002,4,1,1,0,0,7,2,1,1008.8,-89203.836,0,0,1030.8561 -13708,16802,30613,-9,30611,30612,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-821.84973,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,2,1,1008.8,-89203.836,0,0,1030.8561 -13708,16802,30614,-9,30611,30612,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1047.0814,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,7,2,1,1008.8,-89203.836,0,0,1030.8561 -13709,16803,30615,-9,-9,-9,3,1,1,56,3,0,0,0,3,-9,2,1,0,0,3,8.8256731,8.5052099,0,3,0,0,0,-9,0,-1093.4856,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,38,48,15,1,0,-9,0,19.596506,19.596506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.880001,51.790001,-9,-9,3,1,1,0,0,2,5,1,4422,2288216.3,0,0,1488.7795 -13709,16804,30616,-9,-9,30615,4,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,8.1696301,7.8921194,0,3,0,0,0,-9,0,-845.92065,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,16,4,40,40,15,1,1,-9,1,6.3386497,6.3386497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,45.57,-9,-9,3,1,1,0,0,2,4,1,315,-11228.504,0,0,310.02039 -13709,16805,30617,30618,-9,30615,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,4,8.2597504,8.0231075,0,1,0,-9,4,0,1,110.74132,0,1,0,25,2,3,1,-9,3,2019,1,1,10,1,40,40,15,1,0,1,0,9.6352501,9.6352501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.57,57.709999,39.849998,45.09,5,1,1,0,0,2,4,1,171,13112.121,0,0,1698.5309 -13709,16805,30618,30617,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,0,3,8.2277336,8.2600613,0,1,0,-9,4,0,-1,21.052681,0,1,1,26,2,4,1,-9,-9,2019,1,2,12,1,45,45,15,1,0,1,0,8.3924437,8.3924437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.849998,45.09,41.57,57.709999,4,1,1,0,0,2,4,1,171,13112.121,0,0,1698.5309 -13710,16806,30619,30620,-9,-9,4,1,0,29,1,0,0,0,2,-9,3,3,0,0,5,0,0,0,1,0,-9,4,0,2,0,0,1,1,27,2,3,1,-9,-9,2019,3,1,6,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,69.43,35.529999,54.939999,53.18,7,2,3,1,0,6,1,0,303,10147.063,0,0,74.844231 -13710,16806,30620,30619,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,0,3,0,0,0,1,0,-9,4,0,-2,0,0,1,0,29,2,5,3,-9,3,2019,2,4,7,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.939999,53.18,69.43,35.529999,2,2,3,0,0,6,1,0,303,10147.063,0,0,74.844231 -13710,16807,30621,30622,-9,-9,3,1,0,28,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,6,0,1,-5.8004394,0,1,1,27,2,4,1,-9,-9,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.0720888,0,0,0,54.77,26.280001,49.240002,54.34,3,2,3,0,1,6,3,0,539.5,165309.84,0,0,1845.3365 -13710,16807,30622,30621,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,0,4,8.0416517,8.3868961,0,1,0,-9,6,0,-1,-70.073311,0,1,0,28,2,2,3,-9,3,2019,2,3,11,2,50,0,15,1,0,3,0,7.8366985,7.8366985,0,0,0,0,0,0,0,2,1,0,1,0,0,2.0238974,3,49.240002,54.34,54.77,26.280001,1,2,3,0,0,6,3,0,539.5,165309.84,0,0,1845.3365 -13711,16808,30623,30624,-9,-9,2,1,1,38,1,0,0,0,1,-9,7,2,0,0,3,0,0,0,1,0,-9,5,0,3,15.360531,1,0,0,35,1,5,1,-9,-9,2019,3,1,15,3,0,95,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.349998,53.490002,51.049999,48.16,5,1,1,0,0,10,5,1,782,96159.281,0,0,2450.9321 -13711,16808,30624,30623,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,5,8.9513397,8.8898697,0,1,0,-9,5,0,-3,-57.363171,0,0,1,38,1,3,2,3,2,2019,2,2,11,1,47,52,15,1,0,2,0,18.585104,18.585104,0,0,0,0,0,0,0,0,1,1,0,7.7070074,0,0,0,51.049999,48.16,36.349998,53.490002,5,1,1,0,0,10,5,1,782,96159.281,0,0,2450.9321 -13712,16809,30625,30626,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.2330332,7.345963,0,1,0,-9,7,0,-4,10.621932,0,0,0,63,3,4,1,3,2,2019,1,1,10,0,24,29,15,1,0,1,0,5.9928689,5.9928689,0,0,0,0,0,0,0,0,0,0,0,4.6870356,0,0,0,51.27,48.119999,43.880001,57.52,6,1,1,0,0,12,4,1,188,233208.56,0,0,2975.2915 -13712,16809,30626,30625,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,0,4,8.0059872,8.2910967,6.9670506,1,0,-9,7,0,4,-87.677238,0,0,0,59,2,3,1,2,2,2019,1,2,7,1,38,39,15,1,0,1,0,10.843131,10.843131,0,0,0,0,0,0,0,0,0,0,0,0,7.1845679,0,0,43.880001,57.52,51.27,48.119999,6,1,1,0,0,12,4,1,188,233208.56,0,0,2975.2915 -13713,16810,30627,30628,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.4581852,8.6878672,7.3877053,1,0,-9,31,0,5,96.633377,0,0,0,56,2,4,3,3,3,2019,2,2,12,0,38,39,15,1,0,3,0,15.410631,15.410631,0,0,0,0,0,0,0,0,0,0,0,7.195869,7.410955,0,0,46.5,58.259998,40.470001,55.650002,4,1,1,0,0,6,5,1,426.5,1149009.1,0,0,3447.397 -13713,16810,30628,30627,-9,-9,2,1,0,56,1,0,0,0,2,-9,3,3,0,0,4,7.5900049,7.8076448,0,1,0,-9,31,0,-5,54.622009,0,0,0,61,2,4,1,-9,-9,2019,3,1,12,0,0,24,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4058084,0,0,0,40.470001,55.650002,46.5,58.259998,4,1,1,1,0,6,5,1,426.5,1149009.1,0,0,3447.397 -13714,16811,30629,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,6.7322354,6.4906511,3,0,0,0,-9,0,-1100.6611,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.799583,0,0,46.790001,41.889999,-9,-9,7,4,2,0,0,8,2,1,615,534428.63,0,0,-1172.7543 -13715,16812,30630,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,6.2285886,6.3732018,3,0,0,0,-9,0,-974.31561,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.76396769,6.1352692,0,3,53,52,-9,-9,7,1,1,0,0,6,2,1,1208,138849.78,0,0,11.698825 -13716,16813,30631,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,0,2,0,7.3667727,7.3311005,3,0,0,0,-9,0,-973.29767,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.3760939,7.6041274,0,0,52.560001,18.09,-9,-9,5,1,1,0,0,12,3,1,1660,1057968.6,0,0,2376.4946 -13717,16814,30632,30634,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,9.0039101,8.8411779,0,2,0,-9,16,0,2,-48.980209,0,0,0,35,2,5,1,2,2,2019,1,2,12,0,43,60,15,1,0,1,0,17.834444,17.834444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,43.119999,43.09,61.580002,6,1,1,0,0,9,4,1,705,368766.19,0,0,3813.9419 -13717,16814,30633,-9,30634,30632,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.6722,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,9,4,1,705,368766.19,0,0,3813.9419 -13717,16814,30634,30632,-9,-9,2,1,0,35,1,0,2,0,2,-9,1,1,0,0,5,7.282382,7.4296699,0,2,0,-9,8,0,-2,-83.633018,0,0,1,37,2,4,1,-9,-9,2019,1,1,17,6,16,25,15,1,1,1,0,11.964947,11.964947,0,0,0,0,0,0,0,0,1,1,0,6.9310255,0,0,0,43.09,61.580002,56.18,43.119999,5,4,2,0,0,9,4,1,705,368766.19,0,0,3813.9419 -13717,16814,30635,-9,30634,30632,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.7301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,9,4,1,705,368766.19,0,0,3813.9419 -13718,16815,30636,30637,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,6.6097507,7.0102506,1,0,-9,43,0,-2,87.763161,0,0,0,68,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3100171,6.6372223,0,0,58.150002,52.91,49.41,58.279999,6,1,1,0,0,9,5,1,991,2144286.3,0,0,4175.5503 -13718,16815,30637,30636,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,5.0616961,8.827652,8.7371063,1,0,-9,43,0,2,-55.483253,0,0,0,66,2,4,3,3,3,2019,4,1,11,1,1,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8097231,9.1887188,0,0,49.41,58.279999,58.150002,52.91,6,1,1,0,0,9,5,1,991,2144286.3,0,0,4175.5503 -13719,16816,30638,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,0,5,8.3671627,8.558672,0,3,0,0,0,-9,0,-979.54974,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,37,37,15,1,0,-9,0,11.54561,11.54561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.02,58.889999,-9,-9,5,1,1,0,0,13,4,1,85,-387293.34,0,0,1886.9166 -13720,16817,30639,30640,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,0,1,7.8372984,8.2861319,7.9108872,1,0,-9,43,0,3,-66.632133,0,0,0,61,2,2,3,3,3,2019,2,2,6,0,45,0,15,1,0,4,0,6.3770061,6.3770061,0,0,0,0,0,0,0,14.5,1,1,0,0,7.9015093,17.379736,1,58.939999,21.93,40.73,23.32,5,1,1,0,0,13,4,1,365.5,97842.367,0,0,3137.2754 -13720,16817,30640,30639,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,1,2,0,5.5848064,5.7269602,1,0,-9,43,0,-3,-45.59977,0,0,0,64,3,1,1,3,3,2019,3,1,18,7,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6727014,0,0,40.73,23.32,58.939999,21.93,5,1,1,0,0,13,4,1,365.5,97842.367,0,0,3137.2754 -13721,16818,30641,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1154.8152,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,46.709999,-9,-9,4,1,1,1,0,11,1,1,140,101852.29,0,0,488.8808 -13722,16819,30642,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,0,5,0,7.461133,7.3700881,3,0,0,0,-9,0,-1070.8247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.84232,7.2899766,0,0,57,54,-9,-9,7,1,1,0,0,2,3,0,741,377414.78,0,0,551.95734 -13723,16820,30643,30644,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,4,0,-2,-7.7955852,0,0,0,78,2,4,3,3,3,2019,4,1,36,12,0,0,15,4,1,4,0,0,0,1,.78408259,0,0,0,0,68.545181,5.48,1,1,0,0,0,4.275785,1,16.040001,23.99,40.02,47.880001,1,1,1,0,1,4,2,1,937.5,417921.44,0,0,237.69403 -13723,16820,30644,30643,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,5.027544,4.7195315,1,0,-9,4,0,2,-12.127937,0,0,0,76,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.4789057,4.9904313,12.154629,1,40.02,47.880001,16.040001,23.99,4,1,1,0,0,4,2,1,937.5,417921.44,0,0,237.69403 -13724,16821,30645,30646,-9,-9,1,1,1,51,1,0,2,0,3,-9,2,1,0,0,3,8.1159182,8.2273741,0,2,0,-9,10,0,10,37.428909,0,0,0,41,1,2,1,-9,-9,2019,1,2,10,2,40,40,15,1,0,1,0,13.694897,13.694897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.450001,37.009998,50.27,48.860001,3,2,3,0,0,8,3,1,647,663996.75,0,0,2878.0757 -13724,16821,30646,30645,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,2,7.7505507,7.6770949,0,2,0,-9,10,0,-10,14.425623,0,0,1,51,3,3,1,-9,-9,2019,1,1,10,0,28,25,15,1,0,1,0,8.5893488,8.5893488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.27,48.860001,42.450001,37.009998,6,2,3,0,0,8,3,1,647,663996.75,0,0,2878.0757 -13724,16821,30647,-9,30646,30645,6,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-897.28564,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,1,647,663996.75,0,0,2878.0757 -13724,16821,30648,-9,30646,30645,5,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.4,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,3,1,647,663996.75,0,0,2878.0757 -13724,16822,30649,-9,30646,30645,3,1,0,24,2,0,2,0,1,-9,2,1,0,0,3,7.6228776,7.7732134,0,3,0,0,0,-9,0,-998.60492,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,10,1,35,34,15,1,0,-9,1,5.6202359,5.6202359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.610001,56.93,-9,-9,5,2,3,0,0,8,3,1,2953,-66568.672,0,0,1984.9564 -13724,16823,30650,-9,30646,30645,4,1,1,23,2,0,2,0,2,-9,2,1,0,0,3,6.9256725,7.0152726,0,3,0,0,0,-9,0,-892.06506,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,11,1,28,8,15,1,0,-9,1,5.2705445,5.2705445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,58.549999,-9,-9,6,2,3,0,0,8,2,1,1369,-202608.89,0,0,831.69458 -13725,16824,30651,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1012.941,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4.2197652,3,38.389999,48.48,-9,-9,4,1,1,1,0,2,1,0,1162,-25985.586,0,0,0 -13726,16825,30652,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,0,5,8.7176247,8.5436697,0,3,0,0,0,-9,0,-925.10352,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,60,45,15,1,0,-9,0,10.446124,10.446124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,2,1,1,0,0,2,5,1,657,-135955.75,0,0,3089.7356 -13727,16826,30653,30654,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,1,3,0,5.4620233,5.2446008,1,0,-9,7,0,0,-71.964874,0,0,0,75,1,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,7.0525079,0,0,0,0,0,1,1,0,2.6147566,5.9152017,0,0,58.080002,40.759998,61.619999,34.959999,7,1,1,0,0,1,2,1,782,401062.06,0,0,2034.9078 -13727,16826,30654,30653,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,0,3,0,6.9730959,7.0249281,1,0,-9,7,0,9,-122.47659,0,0,0,66,2,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6341767,6.6825328,0,0,61.619999,34.959999,58.080002,40.759998,6,1,1,0,0,1,2,1,782,401062.06,0,0,2034.9078 -13728,16827,30655,30656,-9,-9,1,1,0,83,1,0,0,0,1,-9,4,3,0,0,3,0,6.834321,7.0253148,1,0,-9,58,0,-1,40.99474,0,0,0,84,3,4,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0460839,0,0,56.790001,38.59,62.25,48.330002,6,1,1,0,0,9,4,1,1078,858457.88,0,0,2876.8311 -13728,16827,30656,30655,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,7.7565198,8.0090332,1,0,-9,58,0,1,-97.264755,0,0,0,83,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3613622,8.1789255,0,0,62.25,48.330002,56.790001,38.59,6,1,1,0,0,9,4,1,1078,858457.88,0,0,2876.8311 -13729,16828,30657,-9,30659,-9,1,1,1,44,3,0,0,0,1,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-966.0025,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.6220431,3,36.419998,44.540001,-9,-9,5,2,3,1,0,2,1,1,684,42879.332,0,0,1035.2505 -13729,16829,30658,-9,30659,-9,2,1,1,40,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1058.5792,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,2,3,0,0,2,1,1,302,-116905.52,0,0,1603.1709 -13729,16830,30659,-9,-9,-9,3,1,0,69,3,0,0,0,1,-9,4,3,0,0,3,0,7.1467695,7.2200856,3,0,0,0,-9,0,-1085.3556,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0808377,7.2073283,0,0,50,47,-9,-9,5,2,3,0,0,2,3,1,675,567056.88,0,0,460.22672 -13730,16831,30660,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,0,2,0,5.3406515,5.4594116,3,0,0,0,-9,0,-1061.973,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,13.125492,0,0,0,0,0,0,1,1,0,0,4.997611,0,0,37.169998,26.299999,-9,-9,1,1,1,0,0,11,2,0,397,110804.33,0,0,422.89108 -13731,16832,30661,-9,-9,-9,3,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,6.3278093,6.311532,3,0,-9,0,-9,0,-1030.6646,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.10777,0,0,52,45,-9,-9,6,4,6,0,0,1,2,0,282,308632.19,0,0,238.97467 -13731,16833,30662,30663,-9,-9,2,1,0,20,1,0,0,0,2,-9,2,1,0,0,4,8.1862793,7.8368268,0,1,0,-9,2,0,0,24.086407,0,1,1,20,2,3,1,-9,-9,2019,1,1,9,0,52,40,15,1,0,1,0,6.6095791,6.6095791,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.632271,3,57.16,56.150002,36.040001,48.299999,5,1,1,0,0,1,4,0,705.5,33760.098,0,0,3016.427 -13731,16833,30663,30662,-9,-9,1,1,1,20,1,0,0,0,2,-9,2,1,0,0,3,7.8542194,8.0524797,0,1,0,-9,2,0,0,3.3883212,0,1,0,20,2,4,1,-9,-9,2019,1,2,10,0,46,50,15,1,0,1,0,8.2721128,8.2721128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.040001,48.299999,57.16,56.150002,4,1,1,0,0,1,4,0,705.5,33760.098,0,0,3016.427 -13732,16834,30664,30665,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,10,0,-5,0,0,0,0,61,1,5,3,3,3,2019,4,1,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.900002,15.65,57.060001,57.759998,3,1,1,0,0,12,1,1,255,659843.56,0,0,3771.8896 -13732,16834,30665,30664,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,10,0,5,0,0,0,0,56,2,1,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.2759047,0,2.2701478,1,57.060001,57.759998,45.900002,15.65,6,1,1,0,0,12,1,1,255,659843.56,0,0,3771.8896 -13733,16835,30666,-9,30669,-9,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-988.23926,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,1,0,845.40002,53928.375,0,0,809.01947 -13733,16835,30667,-9,30669,-9,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-902.36127,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,7,1,0,845.40002,53928.375,0,0,809.01947 -13733,16835,30668,-9,30669,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1021.5004,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,1,0,845.40002,53928.375,0,0,809.01947 -13733,16835,30669,-9,-9,-9,2,1,0,29,3,0,3,0,3,-9,6,3,0,0,4,0,3.7721179,3.5867331,4,0,0,0,-9,0,-939.09741,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.4211743,0,117.93792,3,46.16,58.619999,-9,-9,5,1,1,0,0,7,1,0,845.40002,53928.375,0,0,809.01947 -13733,16835,30670,-9,30669,-9,1,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-978.86188,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,7,1,0,845.40002,53928.375,0,0,809.01947 -13734,16836,30671,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,6,3,0,0,4,0,7.5746427,7.627696,3,0,0,0,-9,0,-1005.548,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3364778,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,3,1,324,642357.88,0,0,1230.1287 -13734,16837,30672,-9,30671,-9,2,1,1,23,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1178.6974,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.48723879,0,0,0,41.490002,63.380001,-9,-9,3,1,1,1,0,9,1,1,857,54658.242,0,0,-36.215214 -13735,16838,30673,30674,-9,-9,2,1,0,44,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,6,0,-2,20.004873,0,0,1,46,2,4,1,2,2,2019,3,1,11,0,0,44,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7.3588133,3,49.290001,54.59,57.16,56.150002,6,1,1,1,0,10,4,1,348.5,-45536.578,0,0,1678.887 -13735,16838,30674,30673,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.3207121,8.4238319,0,1,0,-9,6,0,2,-15.731524,0,0,0,44,2,3,3,2,2,2019,2,2,6,0,42,48,15,1,0,3,0,12.891435,12.891435,0,0,0,0,0,0,0,0,0,0,0,1.5685253,0,0,0,57.16,56.150002,49.290001,54.59,6,1,1,0,0,10,4,1,348.5,-45536.578,0,0,1678.887 -13735,16839,30675,-9,30673,30674,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,3,6.987627,6.9728069,0,3,0,0,0,-9,0,-1022.0638,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,24,15,1,0,-9,1,4.6556611,4.6556611,0,0,0,0,0,0,0,0,0,0,0,.31981933,0,0,0,59.299999,38.970001,-9,-9,5,1,1,0,0,10,2,1,1109,0,0,0,624.67444 -13736,16840,30676,-9,30677,30678,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.4711,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,1244.6,566911.88,0,0,6263.9131 -13736,16840,30677,30678,-9,-9,1,1,0,40,1,1,3,0,1,-9,2,1,0,1,4,9.0436287,9.1843672,0,2,0,-9,17,0,3,66.793617,0,0,1,37,1,4,1,2,2,2019,1,2,11,0,40,44,15,1,0,1,0,27.604902,27.604902,0,0,0,0,0,0,0,74.5,1,1,0,1.480108,0,65.601997,3,48.810001,59.91,51,56,6,1,1,0,0,9,5,1,1244.6,566911.88,0,0,6263.9131 -13736,16840,30678,30677,-9,-9,2,1,1,37,1,1,3,0,1,-9,2,1,0,0,4,9.0793352,9.1861839,0,2,0,-9,6,0,-3,41.864578,-9,0,0,40,1,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,24.37472,24.37472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,48.810001,59.91,5,1,1,0,0,9,5,1,1244.6,566911.88,0,0,6263.9131 -13736,16840,30679,-9,30677,30678,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.2524,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,1244.6,566911.88,0,0,6263.9131 -13736,16840,30680,-9,30677,30678,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.0626,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1244.6,566911.88,0,0,6263.9131 -13737,16841,30681,-9,30685,30684,5,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.7982,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,2,0,1554.2,-38707.828,0,0,1021.3959 -13737,16841,30682,-9,30685,30684,4,1,1,14,2,1,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1070.5509,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,8,2,0,1554.2,-38707.828,0,0,1021.3959 -13737,16841,30683,-9,30685,30684,3,1,0,17,2,1,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.39008,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.849998,61.860001,-9,-9,5,2,3,0,0,8,2,0,1554.2,-38707.828,0,0,1021.3959 -13737,16841,30684,30685,-9,-9,1,1,1,42,1,1,3,0,2,-9,2,1,0,0,3,5.4874568,5.5193162,0,2,0,-9,20,0,4,-33.840588,0,0,0,38,3,4,3,3,3,2019,2,2,10,2,30,60,15,1,0,3,0,.81770182,.81770182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,51,49,56,7,2,3,0,0,8,2,0,1554.2,-38707.828,0,0,1021.3959 -13737,16841,30685,30684,-9,-9,2,1,0,38,1,1,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-4,-27.242741,0,0,1,42,2,3,1,3,2,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,48,51,5,2,3,0,0,8,2,0,1554.2,-38707.828,0,0,1021.3959 -13738,16842,30686,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-925.39337,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.990002,49.189999,-9,-9,6,1,1,0,0,11,1,1,5485,94095.961,0,0,482.88843 -13739,16843,30687,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,1,1,0,1,2,7.2017703,6.9802809,5.6252794,3,0,0,0,-9,0,-1101.0864,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,15,20,15,1,1,-9,0,9.2906466,9.2906466,0,0,0,0,0,0,0,42,1,1,0,5.4958649,0,38.323299,3,38.990002,33.73,-9,-9,3,1,1,0,0,7,3,0,517,-62267.09,0,0,2796.6082 -13740,16844,30688,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,5,0,6.2560987,6.1499949,3,0,0,0,-9,0,-962.14929,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0895238,11.221318,3,48.77,60.16,-9,-9,5,1,1,0,0,5,2,1,798,10175.78,0,0,788.96802 -13741,16845,30689,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.1860838,8.1990042,0,3,0,0,0,-9,0,-937.29376,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,60,75,15,1,0,-9,0,5.7622757,5.7622757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,4,0,1362,-72949.633,0,0,1090.2333 -13741,16846,30690,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,0,2,7.8258023,7.6752915,0,3,0,0,0,-9,0,-1017.7732,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,22,6,39,35,15,1,1,-9,0,9.0992146,9.0992146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.690001,54.509998,-9,-9,1,1,1,0,1,6,3,0,105,-24736.123,0,0,2795.1602 -13742,16847,30691,30692,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.4413872,8.7533636,8.1977663,1,0,-9,36,0,-4,50.268963,0,0,0,64,2,4,3,2,-9,2019,2,2,11,0,60,40,15,1,0,4,0,6.3079181,6.3079181,0,0,0,0,0,0,0,0,1,1,0,6.4609399,8.1060858,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,11,5,1,347.5,2336054.8,0,0,4560.8223 -13742,16847,30692,30691,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,6.3829365,7.621151,7.1708555,1,0,-9,36,0,4,-71.203148,0,0,0,60,2,4,1,3,-9,2019,3,1,12,0,8,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5855069,7.2031116,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,11,5,1,347.5,2336054.8,0,0,4560.8223 -13742,16848,30693,-9,30692,30691,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,8.1483212,8.1064148,0,3,0,0,0,-9,0,-937.1001,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,38,37,15,1,0,-9,1,9.8217688,9.8217688,0,0,0,0,0,0,0,0,1,1,0,5.0256987,0,0,0,35.900002,60.41,-9,-9,4,1,1,0,0,11,4,1,1385,-116097.48,0,0,566.73108 -13743,16849,30694,-9,-9,-9,1,1,1,36,3,0,0,0,2,-9,2,1,0,0,4,8.5275021,8.9737797,0,3,0,0,0,-9,0,-954.84009,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,13.771119,13.771119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.439999,58.700001,-9,-9,5,1,1,0,0,10,5,1,841,111696.7,0,0,2118.1753 -13743,16850,30695,-9,-9,30694,2,1,0,18,2,0,0,1,2,0,7,2,0,0,3,6.6570435,6.6746478,0,3,0,0,0,-9,0,-1007.5155,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,17,5,9,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.75961375,0,0,0,31,60.290001,-9,-9,6,1,1,0,0,10,2,1,2250,167399.61,0,0,950.81146 -13744,16851,30696,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,0,5,8.754097,8.5835171,0,4,0,0,0,-9,0,-1009.4476,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,9,30,29,15,1,1,-9,0,19.747591,19.747591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.459999,61.869999,-9,-9,5,1,1,0,0,1,4,1,506,9924.7773,0,0,2131.4846 -13744,16851,30697,-9,30696,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-972.21014,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,4,1,506,9924.7773,0,0,2131.4846 -13745,16852,30698,30701,-9,-9,1,1,1,38,1,0,4,0,2,-9,2,1,0,0,4,8.600565,8.6708488,0,2,0,-9,15,0,-4,-6.7487278,0,0,0,42,2,3,3,-9,-9,2019,2,2,6,0,52,44,15,1,0,3,0,13.355815,13.355815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,61.849998,47.259998,7,1,1,0,0,9,3,1,1067.1666,23658.311,0,0,3043.0767 -13745,16852,30699,-9,30701,30698,4,1,0,13,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-987.28827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,9,3,1,1067.1666,23658.311,0,0,3043.0767 -13745,16852,30700,-9,30701,30698,7,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.6763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,1067.1666,23658.311,0,0,3043.0767 -13745,16852,30701,30698,-9,-9,2,1,0,42,1,0,4,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,4,49.165253,0,0,1,38,2,4,1,1,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.849998,47.259998,57.16,56.150002,6,1,1,0,0,9,3,1,1067.1666,23658.311,0,0,3043.0767 -13745,16852,30702,-9,30701,30698,6,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.86707,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,1,1067.1666,23658.311,0,0,3043.0767 -13745,16852,30703,-9,30701,30698,5,1,0,11,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-907.48633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,9,3,1,1067.1666,23658.311,0,0,3043.0767 -13745,16853,30704,-9,30701,30698,3,1,0,18,2,0,4,0,2,-9,7,2,0,0,4,6.6903386,6.8744512,0,3,0,0,0,-9,0,-1037.4125,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.5,60.389999,-9,-9,3,1,1,0,0,9,2,1,2212,108214.7,0,0,-205.67175 -13746,16854,30705,30707,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,3,8.502038,8.1922846,0,2,0,-9,13,0,-2,116.23802,0,0,1,40,1,3,1,2,2,2019,1,2,10,0,42,15,15,1,0,1,0,11.167257,11.167257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,38.990002,60.52,5,1,1,0,0,9,5,1,891.5,647672.75,0,0,4993.3232 -13746,16854,30706,-9,30705,30707,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.5885,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,891.5,647672.75,0,0,4993.3232 -13746,16854,30707,30705,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,3,9.2417955,9.5563011,0,2,0,-9,13,0,2,-57.737808,0,0,0,38,1,3,1,2,3,2019,1,1,12,3,47,47,15,1,0,1,0,24.6528,24.6528,0,0,0,0,0,0,0,0,0,0,0,7.4228721,0,0,0,38.990002,60.52,51.41,56.150002,6,1,1,0,0,9,5,1,891.5,647672.75,0,0,4993.3232 -13746,16854,30708,-9,30705,30707,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.89374,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,891.5,647672.75,0,0,4993.3232 -13747,16855,30709,30710,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,4,0,4.1662908,3.9700782,1,0,-9,52,0,3,154.39534,0,0,0,72,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.5585663,4.2430706,0,0,54,51,59.060001,21.950001,7,1,1,0,0,9,3,1,415.5,1051782.4,0,0,2404.1169 -13747,16855,30710,30709,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,1,0,7.9561133,7.7673769,1,0,-9,52,0,-3,-36.182198,0,0,0,75,3,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,5.6347437,4.5081663,0,0,6.3229818,0,0,1,1,0,0,8.0876493,0,0,59.060001,21.950001,54,51,6,1,1,0,0,9,3,1,415.5,1051782.4,0,0,2404.1169 -13747,16856,30711,-9,-9,-9,3,1,0,62,2,0,0,0,2,-9,4,3,0,1,1,0,7.5009422,7.4894919,3,0,0,0,-9,0,-969.90796,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2381225,7.2769241,0,0,47.529999,12.38,-9,-9,4,1,1,0,0,9,3,1,271,1403929.6,0,0,3009.1389 -13747,16857,30712,-9,-9,-9,4,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,6.9776044,7.183877,5.0806098,3,0,0,0,-9,0,-944.42725,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,30,25,15,1,1,-9,0,6.0644827,6.0644827,0,0,0,0,0,0,0,0,1,1,0,0,5.4030123,0,0,48.490002,39.59,-9,-9,6,1,1,0,0,9,3,1,738,142048.41,0,0,1817.5593 -13748,16858,30713,30714,-9,-9,2,1,0,50,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,21,0,-1,0,0,0,0,51,2,4,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.79099,1,51,54,53,54,6,1,1,0,0,5,1,0,2618,58046.934,0,0,2361.7515 -13748,16858,30714,30713,-9,-9,1,1,1,51,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,21,0,1,0,0,0,0,50,2,4,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,54,51,54,6,1,1,0,0,5,1,0,2618,58046.934,0,0,2361.7515 -13749,16859,30715,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,0,2,7.9863319,7.7782073,0,3,0,0,0,-9,0,-1065.7363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,30,15,1,0,-9,0,11.354063,11.354063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.09,42.540001,-9,-9,3,3,4,0,1,8,3,1,433,371247.84,0,0,440.25342 -13749,16860,30716,-9,30715,-9,2,1,0,24,2,0,0,1,1,0,7,2,0,0,3,0,5.426827,5.2974586,3,0,0,0,-9,0,-1054.5574,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6496701,0,0,0,59.310001,49.810001,-9,-9,5,3,4,0,0,8,2,1,1846,261867.02,0,0,627.14618 -13749,16861,30717,-9,30715,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,3,7.5900841,7.8581567,0,3,0,0,0,-9,0,-1093.1108,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,42,0,15,1,0,-9,1,5.3640361,5.3640361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.34,47.5,-9,-9,6,3,4,0,0,8,3,1,214,96639.359,0,0,1245.7026 -13750,16862,30718,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,4,8.335763,8.2187643,0,3,0,0,0,-9,0,-1072.6139,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,37,15,1,0,-9,0,14.298499,14.298499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,-9,-9,5,3,4,0,0,6,4,0,272,264482.91,0,0,2252.103 -13751,16863,30719,30721,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,0,4,8.161109,8.3540688,0,2,0,-9,6,0,1,98.17305,0,1,1,28,2,3,1,2,2,2019,1,2,6,0,31,0,15,1,0,1,0,12.665582,12.665582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.119999,57.279999,57.330002,53.459999,7,1,1,0,0,9,4,0,814.66669,-52349.777,0,0,3102.9597 -13751,16863,30720,-9,30719,30721,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.11499,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,0,814.66669,-52349.777,0,0,3102.9597 -13751,16863,30721,30719,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,0,3,7.9517694,7.8385086,0,2,0,-9,6,0,-1,-82.112022,0,1,0,29,1,4,1,-9,-9,2019,1,1,6,0,40,38,15,1,0,1,0,8.6872787,8.6872787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,49.119999,57.279999,6,1,1,0,0,9,4,0,814.66669,-52349.777,0,0,3102.9597 -13752,16864,30722,-9,30723,30725,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-816.41168,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,2,0,455,1638.0808,0,0,783.31433 -13752,16864,30723,30725,-9,-9,1,1,0,25,1,0,2,0,2,-9,2,1,0,0,3,6.9724226,6.5490174,0,2,0,-9,2,0,-2,.35811624,0,1,1,27,2,4,1,-9,-9,2019,1,3,12,0,12,14,15,1,0,1,0,6.6503711,6.6503711,0,0,0,0,0,0,0,42,1,1,0,0,0,48.290707,3,35.790001,44.369999,38.98,44.110001,4,1,1,0,1,9,2,0,455,1638.0808,0,0,783.31433 -13752,16864,30724,-9,30723,30725,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1072.9696,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,455,1638.0808,0,0,783.31433 -13752,16864,30725,30723,-9,-9,3,1,1,27,1,0,2,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,2,0,2,73.220924,-9,1,0,25,2,3,1,-9,-9,2019,1,1,13,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,44.110001,35.790001,44.369999,4,1,1,0,0,9,2,0,455,1638.0808,0,0,783.31433 -13753,16865,30726,-9,-9,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,0,5,3.6973524,4.9264722,4.0878029,3,0,0,0,-9,0,-1142.0751,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9855011,0,0,0,47.580002,56.73,-9,-9,5,1,1,0,0,6,1,1,722,0,0,0,-819.76202 -13754,16866,30727,30728,-9,-9,2,1,0,72,1,0,0,0,2,-9,2,1,0,0,3,7.7753963,7.7437358,0,1,0,-9,56,0,-2,-31.573805,0,0,0,74,2,2,3,3,3,2019,2,1,10,0,30,30,15,1,0,4,0,7.4421582,7.4421582,0,0,0,0,0,0,0,0,1,1,0,1.2856004,0,0,0,51.25,46.549999,45.790001,42.630001,5,1,1,0,0,2,3,1,87.5,1079350.3,0,0,2623.3035 -13754,16866,30728,30727,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,2,0,6.834281,7.1386042,1,0,-9,56,0,2,-25.842924,0,0,0,72,2,3,1,3,3,2019,3,2,12,1,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.2566876,6.1338515,0,0,45.790001,42.630001,51.25,46.549999,4,1,1,0,0,2,3,1,87.5,1079350.3,0,0,2623.3035 -13755,16867,30729,-9,30730,-9,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-923.81738,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,1,0,494,-95055.656,0,0,1280.0667 -13755,16867,30730,-9,-9,-9,1,1,0,42,2,1,2,0,3,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-967.81073,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,53.509998,-9,-9,3,1,1,0,0,13,1,0,494,-95055.656,0,0,1280.0667 -13755,16867,30731,-9,30730,-9,3,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-987.65985,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,0,494,-95055.656,0,0,1280.0667 -13755,16868,30732,-9,30730,-9,2,1,1,19,2,1,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1096.9841,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,2,1,1,0,0,13,1,0,184,0,0,0,0 -13756,16869,30733,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,1,1,0,0,1,.21651345,.1073919,0,3,0,0,0,-9,0,-955.83539,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,29,12,40,35,15,1,1,-9,0,.00096949202,.00096949202,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.129075,3,28.540001,33.040001,-9,-9,2,1,1,0,1,6,1,0,593,-184933.5,0,0,283.31134 -13757,16870,30734,30735,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,0,4,8.7034369,8.5945005,0,2,0,-9,9,0,1,-14.171406,0,0,0,52,1,4,1,3,2,2019,1,2,6,0,50,35,15,1,0,1,0,15.085775,15.085775,0,0,0,0,0,0,0,2,1,1,0,0,0,3.3501756,3,60.700001,47.650002,52.77,55.330002,7,1,1,0,0,12,5,1,348,2408820.5,0,0,4143.4912 -13757,16870,30735,30734,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,8.8078251,9.0176611,0,2,0,-9,9,0,-1,14.882756,0,0,0,53,1,4,1,3,2,2019,1,1,12,0,50,50,15,1,0,1,0,13.676976,13.676976,0,0,0,0,0,0,0,0,1,1,0,3.6498339,0,0,0,52.77,55.330002,60.700001,47.650002,5,1,1,0,0,12,5,1,348,2408820.5,0,0,4143.4912 -13757,16870,30736,-9,30734,30735,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-905.93286,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,12,5,1,348,2408820.5,0,0,4143.4912 -13758,16871,30737,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.2818112,7.1265478,0,3,0,0,0,-9,0,-1009.7991,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,15,15,1,0,-9,0,9.1552725,9.1552725,0,0,0,0,0,0,0,0,1,1,0,3.4888732,0,0,0,58.080002,21.85,-9,-9,5,1,1,0,0,10,3,1,193,6883.0059,0,0,698.58771 -13759,16872,30738,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,0,5,8.6754751,8.2594423,0,3,0,0,0,-9,0,-911.84387,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,38,42,15,1,0,-9,0,15.151212,15.151212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,60.240002,-9,-9,6,1,1,0,0,9,4,0,122,-47768.359,0,0,743.09637 -13760,16873,30739,30740,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,4,0,8.3570795,8.0053148,1,0,-9,40,0,4,84.955368,0,0,0,59,1,5,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2692471,8.0937262,0,0,59.529999,56.439999,57.060001,57.759998,7,1,1,0,0,2,4,1,734.5,1277373.3,0,0,4162.4331 -13760,16873,30740,30739,-9,-9,2,1,0,59,1,0,0,0,1,-9,1,1,0,0,5,6.2529984,7.6019845,7.4866071,1,0,-9,40,0,-4,.87278014,0,0,0,63,1,4,3,3,3,2019,2,1,6,0,3,4,15,1,0,4,0,17.590918,17.590918,0,0,0,0,0,0,0,0,0,0,0,2.8392522,7.4565225,0,0,57.060001,57.759998,59.529999,56.439999,7,1,1,0,0,2,4,1,734.5,1277373.3,0,0,4162.4331 -13761,16874,30741,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,-9,0,-9,0,-942.51318,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.650002,17.34,-9,-9,4,3,4,0,1,8,1,0,1356,101889.53,0,0,-330.21249 -13762,16875,30742,30743,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,1,57.464298,0,0,0,76,3,4,3,3,2,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.7249926,0,28.667488,1,31.75,53.09,58.200001,52.009998,5,1,1,0,0,10,2,1,234.5,1079739,0,0,1763.8527 -13762,16875,30743,30742,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,7.4689822,7.7917404,1,0,-9,8,0,-1,-43.581661,0,0,0,77,3,4,3,2,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,26.245586,0,0,0,0,0,1,1,0,2.0418167,7.8128343,0,0,58.200001,52.009998,31.75,53.09,7,1,1,0,0,10,2,1,234.5,1079739,0,0,1763.8527 -13763,16876,30744,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,8.2008762,8.2299919,0,3,0,0,0,-9,0,-1066.7216,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,36,15,1,0,-9,0,10.796224,10.796224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.299999,58.700001,-9,-9,6,1,1,0,0,8,4,1,813,24878.887,0,0,1387.9475 -13764,16877,30745,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-930.12842,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.66585672,0,0,0,40.330002,35.66,-9,-9,6,1,1,0,0,13,1,1,4117,-52664.902,0,0,819.33746 -13765,16878,30746,30747,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.7978344,7.8837166,0,2,0,-9,17,0,-3,-82.560455,0,0,1,44,2,4,1,2,3,2019,1,2,11,0,23,26,15,1,0,1,0,11.756525,11.756525,0,0,0,0,0,0,0,0,1,1,0,2.9619985,0,0,0,59.150002,49.669998,57.16,56.150002,5,1,1,0,0,10,5,1,581.5,1723155.5,0,0,4613.478 -13765,16878,30747,30746,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,0,4,9.1754742,8.9285975,0,2,0,-9,17,0,3,-2.3869004,0,0,0,41,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,21.941072,21.941072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.150002,49.669998,6,1,1,0,0,10,5,1,581.5,1723155.5,0,0,4613.478 -13765,16878,30748,-9,30746,30747,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.20831,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,1,581.5,1723155.5,0,0,4613.478 -13765,16878,30749,-9,30746,30747,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-834.05475,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,5,1,581.5,1723155.5,0,0,4613.478 -13766,16879,30750,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,1,0,5.8627062,5.4490724,3,0,0,0,-9,0,-1041.6141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6601439,5.9143987,0,0,48.200001,13.44,-9,-9,6,1,1,0,0,11,2,1,248,252528.38,0,0,1599.0819 -13767,16880,30751,30752,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,4,9.0677357,8.9003105,0,2,0,-9,21,0,8,10.718572,0,0,0,43,2,4,3,-9,-9,2019,2,2,9,1,32,40,15,1,0,3,0,31.187407,31.187407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,47.23,56.75,6,1,1,0,0,6,4,1,689.66669,205431.84,0,0,5423.2969 -13767,16880,30752,30751,-9,-9,2,1,0,43,1,0,1,0,2,-9,6,3,0,0,4,3.9015074,4.0254788,0,2,0,-9,21,0,-8,88.961662,0,0,1,51,2,4,1,2,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.9587221,0,7.0897145,3,47.23,56.75,53,54,6,1,1,0,0,6,4,1,689.66669,205431.84,0,0,5423.2969 -13767,16880,30753,-9,30752,30751,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.54315,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,4,1,689.66669,205431.84,0,0,5423.2969 -13768,16881,30754,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,0,4,7.6646209,7.8219295,0,3,0,0,0,-9,0,-988.98761,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,40,42,15,1,1,-9,0,8.2929268,8.2929268,0,0,0,0,0,0,0,0,1,1,0,2.6563292,0,0,0,35.57,63.560001,-9,-9,3,1,1,0,0,7,3,1,438,-40849.809,0,0,1696.9603 -13769,16882,30755,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.3155107,8.2799807,0,3,0,-9,0,0,0,-1168.1163,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,39,15,1,0,-9,0,20.566824,20.566824,0,0,0,0,0,0,0,7,0,0,0,6.9225864,0,11.800299,3,57.16,56.150002,-9,-9,6,1,1,0,0,10,5,1,223,67163.813,0,0,2134.6707 -13770,16883,30756,30757,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,0,3,8.1429577,8.105525,0,1,0,-9,8,0,0,91.158806,0,0,0,38,2,2,3,-9,-9,2019,2,1,12,2,37,37,15,1,0,3,0,9.3196831,9.3196831,0,0,0,0,0,0,0,2,1,1,0,3.6284606,0,0,1,52,54.509998,30.799999,51.119999,5,1,1,0,0,7,3,0,558,30801.408,0,0,1942.0508 -13770,16883,30757,30756,-9,-9,1,1,0,38,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,8,0,0,26.089403,0,0,1,38,1,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3355687,0,0,0,30.799999,51.119999,52,54.509998,3,1,1,0,0,7,3,0,558,30801.408,0,0,1942.0508 -13771,16884,30758,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-969.77075,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,24.030001,-9,-9,6,1,1,0,0,12,1,1,504,83138.727,0,0,2921.6475 -13772,16885,30759,-9,-9,-9,1,1,1,91,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1031.7996,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.830002,36.830002,-9,-9,2,1,1,0,0,1,1,1,851,-55682.074,0,0,251.42442 -13773,16886,30760,-9,30762,-9,5,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1035.1754,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,2,0,1174.3334,78104.633,0,0,2375.5476 -13773,16886,30761,-9,30762,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-924.44525,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,2,0,1174.3334,78104.633,0,0,2375.5476 -13773,16886,30762,-9,-9,-9,1,1,0,50,2,0,2,0,2,-9,6,3,0,0,3,0,6.935051,6.5064144,4,0,0,0,-9,0,-849.02808,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9544163,0,2.7911148,3,41.529999,44.529999,-9,-9,5,1,1,0,1,8,2,0,1174.3334,78104.633,0,0,2375.5476 -13773,16887,30763,-9,30762,-9,2,1,1,28,2,0,2,0,2,-9,2,1,0,0,4,7.7655969,7.6694546,0,3,0,0,0,-9,0,-1139.0361,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,30,33,15,1,1,-9,1,7.2911339,7.2911339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.279999,61.389999,-9,-9,5,4,2,0,0,8,3,0,264,5934.3643,0,0,833.78571 -13773,16888,30764,-9,30762,-9,3,1,0,22,2,0,2,0,2,-9,2,1,0,0,3,6.4642472,6.5197392,0,3,0,0,0,-9,0,-990.44019,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,9,26,15,1,1,-9,1,9.4553642,9.4553642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,56.68,-9,-9,4,4,2,0,0,8,2,0,1514,-101258.37,0,0,542.69482 -13774,16889,30765,-9,-9,-9,2,1,1,31,2,0,0,0,2,-9,2,1,0,0,3,7.9897647,7.6992879,0,3,0,0,0,-9,0,-982.14722,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,37,44,15,1,1,-9,0,6.9270191,6.9270191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.400002,58.619999,-9,-9,3,1,1,0,0,11,3,0,414,129098.06,0,0,707.32379 -13774,16890,30766,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,0,3,7.9386029,8.1188793,0,3,0,0,0,-9,0,-1058.6875,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,38,15,1,0,-9,0,8.7803421,8.7803421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.099998,57.790001,-9,-9,6,1,1,0,0,11,4,0,878,-81214.203,0,0,493.13556 -13775,16891,30767,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,2,0,6.7656741,6.5352383,3,0,0,0,-9,0,-948.85803,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.2378762,0,0,0,1,1,0,0,6.9709492,0,0,57.330002,32.200001,-9,-9,7,1,1,0,0,6,2,1,2021,-20730.982,0,0,1120.8165 -13776,16892,30768,30769,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,6.3066831,6.8813663,1,0,-9,29,0,-3,-60.308689,0,0,0,71,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7175319,6.786972,0,0,41.299999,60.77,48.68,46.619999,5,1,1,0,0,10,4,1,2151,2019229.3,0,0,3803.1851 -13776,16892,30769,30768,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,8.4606524,8.8816242,1,0,-9,8,0,3,-3.0308754,0,0,0,68,1,4,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,19.36796,0,0,0,0,0,1,1,0,7.7557259,8.9958925,0,0,48.68,46.619999,41.299999,60.77,4,1,1,0,0,10,4,1,2151,2019229.3,0,0,3803.1851 -13777,16893,30770,30772,-9,-9,2,1,1,57,1,0,2,0,1,-9,2,1,0,0,2,0,0,0,2,0,-9,9,0,14,44.538349,-9,0,0,43,2,3,1,-9,-9,2019,1,1,14,4,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,38.34,42.029999,42.919998,4,1,1,0,0,12,3,0,462.33334,682163.44,0,0,1896.5796 -13777,16893,30771,-9,30772,30770,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.49133,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,0,462.33334,682163.44,0,0,1896.5796 -13777,16893,30772,30770,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,3,8.2677698,8.1675539,0,2,0,-9,9,0,-14,39.614071,0,0,1,57,1,2,1,2,3,2019,1,2,9,0,40,40,15,1,0,1,0,9.4782305,9.4782305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.029999,42.919998,55.360001,38.34,6,1,1,0,0,12,3,0,462.33334,682163.44,0,0,1896.5796 -13778,16894,30773,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,1,0,4.4968619,4.2965674,3,0,0,0,-9,0,-1155.3317,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,3.4474945,0,0,1,1,0,.82405251,4.118803,0,0,44.900002,18.889999,-9,-9,2,1,1,0,0,12,2,1,208,414466.34,0,0,1063.2235 -13779,16895,30774,30775,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,4.7989659,4.6648269,1,0,-9,38,0,-1,-127.60998,0,0,0,66,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7036829,0,0,57.16,56.150002,51.84,47.709999,6,1,1,0,0,8,4,1,717.5,1504049.5,0,0,5338.4829 -13779,16895,30775,30774,-9,-9,1,1,1,66,1,0,0,0,2,-9,1,1,0,0,4,8.303894,8.4286871,6.1603837,1,0,-9,38,0,1,-43.405159,0,0,0,65,2,4,3,3,2,2019,2,2,9,1,30,30,15,1,0,4,0,16.536352,16.536352,0,0,0,0,0,0,0,0,1,1,0,7.9325438,6.5773821,0,0,51.84,47.709999,57.16,56.150002,6,1,1,0,0,8,4,1,717.5,1504049.5,0,0,5338.4829 -13780,16896,30776,30777,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,4,9.6214876,9.8138628,0,1,0,-9,29,0,3,-80.567642,0,0,0,47,1,4,3,2,1,2019,2,2,9,1,55,50,15,1,0,3,0,24.832966,24.832966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,57.73,54.529999,6,2,3,0,0,9,5,1,929,6446902,0,0,6553.6206 -13780,16896,30777,30776,-9,-9,2,1,0,47,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,8,0,-3,88.62722,0,0,0,50,1,4,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.1867275,0,0,0,57.73,54.529999,53,55,7,2,3,0,0,9,5,1,929,6446902,0,0,6553.6206 -13781,16897,30778,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,8.067214,8.0717497,3,0,0,0,-9,0,-1024.8058,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.8906112,8.1795731,12.438454,3,59.419998,45.630001,-9,-9,6,1,1,0,0,13,4,1,1345,1188079.6,0,0,1860.9519 -13782,16898,30779,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,0,3,9.64013,9.795763,0,3,0,-9,0,-9,0,-948.65594,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,84,0,15,1,0,-9,0,19.390581,19.390581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.880001,58.549999,-9,-9,3,1,1,0,0,12,5,1,1454,32591.117,0,0,4992.1445 -13783,16899,30780,-9,-9,-9,3,1,1,19,2,0,1,0,2,-9,2,1,0,0,5,7.6752291,8.1285553,6.5147948,3,0,0,0,-9,0,-978.88452,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,35,0,15,1,0,-9,1,9.0232821,9.0232821,0,0,0,0,0,0,0,0,1,1,0,6.809092,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,5,4,0,432,62305.668,0,0,-195.45038 -13784,16900,30781,30782,-9,-9,3,1,0,25,1,0,0,0,1,-9,3,3,0,0,4,8.2728548,8.1180601,0,1,0,-9,1,-9,-5,6.2804375,-9,1,1,30,1,5,1,-9,-9,2019,3,1,11,2,40,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.0046889,0,8.5647268,3,47,58,48.77,60.16,5,1,1,1,0,10,4,1,345,193659.17,0,0,3345.1216 -13784,16900,30782,30781,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,8.1802187,8.300169,0,1,0,1,1,-9,5,-81.565735,0,0,0,25,1,4,3,-9,-9,2019,2,3,16,4,40,40,15,1,1,3,0,11.870261,11.870261,0,0,0,0,0,0,0,0,0,0,0,6.3943739,0,0,0,48.77,60.16,47,58,5,1,1,0,0,10,4,1,345,193659.17,0,0,3345.1216 -13784,16901,30783,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.110549,8.200757,0,3,0,-9,0,-9,0,-940.59332,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,10,40,0,15,1,1,-9,0,10.145864,10.145864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.23,61.720001,-9,-9,2,1,1,0,0,10,4,1,1955,-95033.375,0,0,1952.6533 -13785,16902,30784,-9,30786,30785,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1153.5551,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,5,1,1119.3334,375775.03,0,0,4261.7188 -13785,16902,30785,30786,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,8.6653175,8.7873077,0,2,0,-9,17,0,4,-.4600338,0,0,0,40,2,4,1,-9,-9,2019,1,1,9,1,38,50,15,1,0,1,0,16.230507,16.230507,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,38.34,62.119999,5,1,1,0,0,6,5,1,1119.3334,375775.03,0,0,4261.7188 -13785,16902,30786,30785,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,8.0396481,8.2373257,0,2,0,-9,17,0,-4,138.76025,0,0,1,44,2,4,1,2,2,2019,1,2,16,5,35,23,15,1,1,1,0,12.697486,12.697486,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8846622,3,38.34,62.119999,52,55,5,1,1,0,0,6,5,1,1119.3334,375775.03,0,0,4261.7188 -13786,16903,30787,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,2,1,0,0,3,7.5843492,8.7222776,8.1004591,3,0,0,0,-9,0,-1046.8463,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,33,20,15,1,0,-9,0,10.150563,10.150563,0,0,0,0,0,0,0,0,0,0,0,0,8.2775202,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,2,5,1,1607,24342.797,0,0,3549.7764 -13787,16904,30788,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,0,1,8.1836109,7.9776425,0,3,0,0,0,-9,0,-1020.8876,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,40,15,1,0,-9,0,9.6289768,9.6289768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.830002,14.13,-9,-9,3,3,4,0,0,8,4,0,1392,478506,0,0,2360.5042 -13787,16905,30789,-9,30788,-9,2,1,1,28,2,0,0,0,1,-9,2,1,0,0,5,8.5987577,8.3926668,0,3,0,0,0,-9,0,-927.72241,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,51,40,15,1,0,-9,1,9.2439365,9.2439365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.220001,63.139999,-9,-9,3,3,4,0,0,8,5,0,1202,20377.705,0,0,727.25098 -13788,16906,30790,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,5,0,3.2369697,3.1032934,3,0,0,0,-9,0,-947.12775,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.5118024,3.177393,0,0,50.540001,62.09,-9,-9,7,1,1,0,0,10,1,1,849,91205.578,0,0,90.216156 -13789,16907,30791,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,2,7.9970813,7.9455895,0,3,0,0,0,-9,0,-1020.774,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,61,0,15,1,0,-9,0,6.113637,6.113637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.880001,51.259998,-9,-9,6,1,1,0,0,5,4,0,825,229963.66,0,0,2774.3767 -13789,16908,30792,-9,-9,30791,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,2,7.8939133,7.9502087,0,3,0,0,0,-9,0,-916.54364,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,45,15,1,0,-9,1,7.0059695,7.0059695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.639999,33.900002,-9,-9,3,1,1,0,1,5,3,0,350,424136.03,0,0,1408.1686 -13790,16909,30793,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,4,0,8.2918577,8.2874823,3,0,0,0,-9,0,-1019.8214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.348815,8.2557631,0,0,39.389999,57.52,-9,-9,7,1,1,0,0,4,4,1,1401,66939.898,0,0,2316.2517 -13791,16910,30794,30795,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,1,1,0,8.0769892,7.7129688,1,0,-9,3,0,7,-94.636635,0,0,0,56,2,2,3,2,2,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.8468142,74.377518,1,53.259998,23.16,25.26,31.879999,6,1,1,0,0,2,3,1,672.5,390742.72,0,0,2018.9292 -13791,16910,30795,30794,-9,-9,2,1,0,56,1,0,0,0,2,-9,3,3,0,1,2,0,0,0,1,0,-9,3,0,-7,-52.683224,0,0,0,63,2,1,3,3,2,2019,4,1,31,12,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,65.305908,1,25.26,31.879999,53.259998,23.16,2,1,1,1,1,2,3,1,672.5,390742.72,0,0,2018.9292 -13792,16911,30796,-9,-9,-9,1,1,1,53,2,0,0,0,1,1,2,1,0,0,3,8.2845888,7.9776125,0,3,0,0,0,-9,0,-1113.4504,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,54,0,15,1,0,-9,0,8.0854445,8.0854445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,8,4,0,1681,411151.53,0,0,940.53436 -13793,16912,30797,-9,30799,30800,2,1,1,21,2,0,1,0,2,-9,2,1,0,0,4,7.9198098,8.1441622,0,3,0,0,0,-9,0,-939.11481,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,25,15,1,0,-9,1,9.7518406,9.7518406,0,0,0,0,0,0,0,0,1,1,0,4.3771796,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,4,1,1009,-133188.34,0,0,842.24542 -13793,16913,30798,-9,30799,30800,3,1,1,16,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.5129,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,7,4,1,738,581274.56,0,0,2604.7632 -13793,16913,30799,30800,-9,-9,1,1,0,45,1,0,1,0,2,-9,1,1,0,0,3,5.6726675,6.0656586,0,2,0,-9,7,0,-6,75.938789,0,0,0,51,2,4,1,2,2,2019,1,4,7,1,35,10,15,1,0,1,0,1.3562522,1.3562522,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.630001,54.220001,53,55,5,1,1,0,0,7,4,1,738,581274.56,0,0,2604.7632 -13793,16913,30800,30799,-9,-9,4,1,1,51,1,0,1,0,2,-9,1,1,0,0,4,8.894969,8.7125483,0,2,0,-9,7,0,6,-85.133354,0,0,0,45,2,3,1,-9,-9,2019,1,1,9,1,60,50,15,1,0,1,0,11.560616,11.560616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,49.630001,54.220001,6,4,1,0,0,7,4,1,738,581274.56,0,0,2604.7632 -13794,16914,30801,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,2,1,0,0,3,8.6968546,8.0248747,0,4,0,-9,0,-9,0,-1081.2527,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,16,4,38,0,15,1,1,-9,0,14.313196,14.313196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.919998,37.900002,-9,-9,3,1,1,0,0,2,4,1,1488,100508.86,0,0,2742.2556 -13795,16915,30802,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,1,1,0,0,2,7.2398014,7.7194343,7.060184,3,0,0,0,-9,0,-977.091,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,25,0,15,1,0,-9,0,5.0479422,5.0479422,0,0,0,0,0,0,0,0,1,1,0,0,7.0263295,0,0,43.610001,44.02,-9,-9,5,2,3,0,0,8,3,0,367,1052890,0,0,1553.2334 -13796,16916,30803,-9,30804,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1126.9584,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,3,0,1062.3334,1564142.3,0,0,1690.1558 -13796,16916,30804,-9,-9,-9,1,1,0,54,3,0,2,0,1,-9,2,1,0,0,4,7.9710779,8.4931355,0,4,0,0,0,-9,0,-992.91998,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,14.318739,14.318739,0,0,0,0,0,0,0,0,1,1,0,3.8387277,0,0,0,38.849998,61.860001,-9,-9,3,1,1,0,0,10,3,0,1062.3334,1564142.3,0,0,1690.1558 -13796,16916,30805,-9,30804,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1017.5698,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,10,3,0,1062.3334,1564142.3,0,0,1690.1558 -13797,16917,30806,30807,-9,-9,1,1,0,38,1,0,0,0,1,-9,1,1,0,0,5,4.9806008,4.9963269,0,1,0,-9,19,0,-1,10.387779,0,0,1,39,1,4,1,1,1,2019,1,2,12,3,30,12,15,1,0,1,0,.57188517,.57188517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.830002,62.099998,40.77,61.040001,5,1,1,0,0,6,5,0,523,180749.22,0,0,3542.7388 -13797,16917,30807,30806,-9,-9,2,1,1,39,1,0,0,0,1,-9,2,1,0,0,4,8.9727554,9.1301126,0,1,0,-9,19,0,1,65.465828,0,0,0,38,1,5,1,2,1,2019,1,1,10,0,45,45,15,1,0,1,0,18.310663,18.310663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.77,61.040001,38.830002,62.099998,6,1,1,0,0,6,5,0,523,180749.22,0,0,3542.7388 -13798,16918,30808,30809,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,8.2686272,8.2375345,0,1,0,-9,7,0,2,-63.665318,0,0,0,54,2,4,1,3,3,2019,1,1,9,0,37,37,15,1,0,1,0,10.430738,10.430738,0,0,0,0,0,0,0,0,0,0,0,2.7660625,0,0,0,54.689999,57.470001,58.150002,52.91,6,1,1,0,0,13,5,1,1129,288998.41,0,0,4096.25 -13798,16918,30809,30808,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.6650362,8.6762409,0,1,0,-9,7,0,-2,-42.439621,0,0,0,56,2,5,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,22.448112,22.448112,0,0,0,0,0,0,0,0,0,0,0,.48899832,0,0,0,58.150002,52.91,54.689999,57.470001,6,1,1,0,0,13,5,1,1129,288998.41,0,0,4096.25 -13798,16919,30810,-9,30808,30809,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.1523256,7.288043,0,3,0,0,0,-9,0,-1059.9669,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,0,15,1,0,-9,1,3.9380026,3.9380026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,13,2,1,208,-53111.746,0,0,179.85587 -13798,16920,30811,-9,30808,30809,4,1,0,19,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1153.5637,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,1,518,-161695.44,0,0,-643.50171 -13799,16921,30812,30813,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.1603932,7.2654834,1,0,-9,8,0,0,164.4959,0,0,0,71,2,4,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.983736,0,0,61.860001,36.52,47.700001,45.759998,6,1,1,0,0,12,4,1,1777,1316715.8,0,0,4241.9727 -13799,16921,30813,30812,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.482955,8.2967863,1,0,-9,8,0,0,-28.53867,0,0,0,71,2,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.8836732,8.2890501,0,3,47.700001,45.759998,61.860001,36.52,6,1,1,0,0,12,4,1,1777,1316715.8,0,0,4241.9727 -13800,16922,30814,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,0,5,6.2873054,6.3612657,0,3,0,0,0,-9,0,-824.41821,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2059033,0,0,0,66.519997,43.869999,-9,-9,7,1,1,0,0,2,2,1,2350,124035.09,0,0,1459.6256 -13801,16923,30815,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,0,3,8.171669,8.1067343,0,3,0,0,0,-9,0,-892.96069,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,38,15,1,0,-9,0,9.3374109,9.3374109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,52.91,-9,-9,5,1,1,0,0,5,4,0,449,64103.121,0,0,1857.8171 -13801,16924,30816,-9,30815,-9,2,1,1,23,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1013.2138,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,48,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,5,1,0,532,10472.003,0,0,846.62616 -13802,16925,30817,30818,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,8.1490612,8.4391537,0,1,0,-9,32,0,-6,-148.37146,0,0,0,55,2,4,1,2,2,2019,1,1,8,0,36,36,15,1,0,1,0,13.251149,13.251149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,5,5,0,484,2470821.5,0,0,3543.1743 -13802,16925,30818,30817,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.4637203,8.1547298,5.1003051,1,0,-9,32,0,6,10.735226,0,0,0,49,2,4,1,3,3,2019,1,2,6,0,38,37,15,1,0,1,0,11.498251,11.498251,0,0,0,0,0,0,0,0,0,0,0,5.451529,5.4559169,0,0,54.200001,57.490002,57.16,56.150002,5,1,1,0,0,5,5,0,484,2470821.5,0,0,3543.1743 -13803,16926,30819,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,3,8.2562943,7.8926573,0,3,0,0,0,-9,0,-1027.7094,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,6,38,40,15,1,1,-9,0,13.820671,13.820671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.07,60.889999,-9,-9,4,4,5,0,0,7,4,0,519,288528.22,0,0,1259.3124 -13804,16927,30820,30821,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,6.390583,5.6414099,1,0,-9,46,0,-2,37.477173,0,0,0,67,1,3,3,2,2,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.0635777,18.850105,3,55.529999,51.549999,44.470001,49.860001,6,1,1,0,0,5,3,1,1504,1589956.5,0,0,2732.3999 -13804,16927,30821,30820,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,8.0266457,7.934485,1,0,-9,46,0,2,-19.847103,0,0,0,65,2,3,3,3,2,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3553462,7.8829327,0,3,44.470001,49.860001,55.529999,51.549999,6,1,1,0,0,5,3,1,1504,1589956.5,0,0,2732.3999 -13805,16928,30822,30823,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,7.096417,7.1300349,1,0,-9,57,0,-3,-68.648911,0,0,0,79,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3075728,7.1508198,0,0,57.16,56.150002,47.970001,37.509998,5,1,1,0,0,2,3,1,900,1524901.5,0,0,2827.4392 -13805,16928,30823,30822,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.7856202,8.0712843,1,0,-9,57,0,3,15.475207,0,0,0,76,2,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,8.1729879,0,2.0079021,0,0,0,1,1,0,2.1595123,7.5847301,0,0,47.970001,37.509998,57.16,56.150002,5,1,1,0,0,2,3,1,900,1524901.5,0,0,2827.4392 -13805,16929,30824,-9,-9,-9,3,1,1,21,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-882.93433,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,6,1,0,2,1,1,796,90491.32,0,0,-560.58643 -13806,16930,30825,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,0,2,8.2408133,8.1214285,0,3,0,0,0,-9,0,-1026.6224,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,26,35,15,1,0,-9,0,21.420578,21.420578,0,0,0,0,0,0,0,0,1,1,0,2.6852946,0,0,0,58.299999,34.18,-9,-9,6,1,1,0,0,11,4,1,481,163690.08,0,0,2674.9648 -13806,16931,30826,-9,-9,30825,2,1,1,22,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1050.3182,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,6,1,1,1,0,11,1,1,1318,3406.4692,0,0,1724.4713 -13806,16932,30827,-9,-9,30825,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,6.9425454,6.9177403,0,3,0,0,0,-9,0,-992.65247,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,20,0,15,1,1,-9,1,5.5080557,5.5080557,0,0,0,0,0,0,0,0,1,1,0,1.1700453,0,0,0,41.279999,60.790001,-9,-9,6,1,1,0,0,11,2,1,778,-165858.41,0,0,1302.3502 -13807,16933,30828,-9,30831,30830,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.4777,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,5,1,2249,626303,0,0,4626.8022 -13807,16933,30829,-9,30831,30830,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1088.361,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,8,5,1,2249,626303,0,0,4626.8022 -13807,16933,30830,30831,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.2135191,9.2571678,0,2,0,-9,8,0,1,136.59285,0,0,0,42,1,4,1,2,2,2019,1,2,12,0,37,38,15,1,0,1,0,26.142826,26.142826,0,0,0,0,0,0,0,0,1,1,0,.29106873,0,0,0,45.91,59.889999,48.869999,58.549999,4,1,1,0,1,8,5,1,2249,626303,0,0,4626.8022 -13807,16933,30831,30830,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,9.7452116,9.5933828,5.5791683,2,0,-9,8,0,-1,1.5433767,0,0,1,43,1,4,1,-9,-9,2019,1,1,10,1,24,27,15,1,0,1,0,65.649437,65.649437,0,0,0,0,0,0,0,0,1,1,0,6.5619335,0,0,0,48.869999,58.549999,45.91,59.889999,5,1,1,0,0,8,5,1,2249,626303,0,0,4626.8022 -13808,16934,30832,-9,30834,30833,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.2012,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,7,5,1,772,3870.9636,0,0,4288.9858 -13808,16934,30833,30834,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,5,8.343112,8.8288307,0,2,0,-9,4,0,-1,47.202412,0,0,0,35,1,5,1,2,2,2019,1,2,5,0,35,37,15,1,0,1,0,14.129053,14.129053,0,0,0,0,0,0,0,0,0,0,0,6.9752469,0,0,0,57.060001,57.759998,60.02,56.419998,7,1,1,0,0,7,5,1,772,3870.9636,0,0,4288.9858 -13808,16934,30834,30833,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,0,5,8.5652943,8.2497969,0,2,0,-9,4,0,1,53.53706,0,0,1,34,2,5,1,-9,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1626701,0,0,0,60.02,56.419998,57.060001,57.759998,7,3,4,0,0,7,5,1,772,3870.9636,0,0,4288.9858 -13809,16935,30835,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,0,4,0,8.0332088,7.7496567,3,0,0,0,-9,0,-930.9353,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0885749,7.7986026,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,6,3,1,729,604728,0,0,2219.9495 -13810,16936,30836,30838,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,5,9.9496813,9.85851,0,2,0,-9,14,0,-8,12.30681,0,0,0,46,2,5,3,2,2,2019,2,1,5,0,55,50,15,1,0,3,0,31.815081,31.815081,0,0,0,0,0,0,0,0,0,0,0,7.0829325,0,0,0,59.43,58.049999,56.470001,59.400002,6,2,3,0,0,7,5,1,358.75,1402511.5,0,0,7946.1968 -13810,16936,30837,-9,30838,30836,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1222.332,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,5,1,358.75,1402511.5,0,0,7946.1968 -13810,16936,30838,30836,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,14,0,8,21.257193,0,0,0,38,1,5,1,2,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,59.400002,59.43,58.049999,6,1,1,0,0,7,5,1,358.75,1402511.5,0,0,7946.1968 -13810,16936,30839,-9,30838,30836,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1134.322,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,4,2,0,0,7,5,1,358.75,1402511.5,0,0,7946.1968 -13811,16937,30840,30841,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,9.3779984,9.4010563,0,1,0,-9,16,0,4,127.78991,0,0,0,49,2,3,1,3,3,2019,1,2,7,0,40,40,15,1,0,1,0,25.240788,25.240788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,28.33,54.599998,6,1,1,0,0,9,5,1,645.5,903222.38,0,0,4103.6025 -13811,16937,30841,30840,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,8.4249592,8.6630878,0,1,0,-9,16,0,-4,-102.22399,0,0,0,53,2,4,1,3,3,2019,1,1,31,12,40,33,15,1,1,1,0,14.470943,14.470943,0,0,0,0,0,0,0,2,0,0,0,4.4365721,0,6.0431585,3,28.33,54.599998,57.16,56.150002,5,1,1,0,0,9,5,1,645.5,903222.38,0,0,4103.6025 -13812,16938,30842,-9,-9,-9,1,1,0,52,2,0,0,0,3,-9,2,1,0,0,2,8.0102825,7.7250333,0,3,0,0,0,-9,0,-1039.6489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,50,44,15,1,1,-9,0,7.0688329,7.0688329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.67,53.029999,-9,-9,3,1,1,0,0,5,4,0,804,76275.023,0,0,1402.431 -13813,16939,30843,30844,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,5,0,6.1086669,6.1247215,1,0,-9,1,-9,-2,-97.401939,-9,0,0,73,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1413436,0,0,57.060001,57.759998,53.959999,50.73,6,1,1,0,0,7,3,1,333,2452657,0,0,2956.4844 -13813,16939,30844,30843,-9,-9,1,1,1,73,1,0,0,0,2,-9,1,1,0,0,4,7.4859948,7.5040231,6.9073448,1,0,-9,1,-9,2,-45.403793,-9,0,0,71,2,5,3,2,2,2019,2,2,9,0,15,0,15,1,0,4,0,13.960906,13.960906,0,0,0,0,0,0,0,0,1,1,0,6.7757382,7.1115022,0,0,53.959999,50.73,57.060001,57.759998,6,1,1,0,0,7,3,1,333,2452657,0,0,2956.4844 -13814,16940,30845,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-991.45892,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,1,0,2,1,0,165,175442.23,0,0,-983.72418 -13815,16941,30846,30847,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,5,0,6.0748601,6.1046596,1,0,-9,61,0,-1,17.749098,0,0,0,81,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,21.689739,0,0,0,0,0,1,1,0,3.9860396,6.3171544,0,0,49.970001,43.119999,57.09,24.969999,7,1,1,0,0,6,2,1,592,434726.41,0,0,1598.778 -13815,16941,30847,30846,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,61,0,1,-90.647316,0,0,0,80,3,5,3,2,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,24.969999,49.970001,43.119999,7,1,1,0,0,6,2,1,592,434726.41,0,0,1598.778 -13816,16942,30848,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,97,3,0,0,4,6.1510777,7.7698841,7.4993343,3,0,0,0,-9,0,-1222.3254,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,20,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3034019,0,0,58.720001,51.290001,-9,-9,5,3,4,0,0,8,3,1,1827,963545.5,0,0,684.39063 -13817,16943,30849,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-994.90076,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.52,42.41,-9,-9,6,1,1,0,0,12,1,0,255,-115175.93,0,0,1295.4767 -13818,16944,30850,30851,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,2,0,7.6849904,7.9416337,1,0,-9,30,0,-5,26.828405,0,0,0,70,2,3,3,2,2,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6342158,8.2915745,0,0,41.68,39.200001,37.209999,52.869999,5,2,3,0,0,8,4,1,453,1487358,0,0,2912.2156 -13818,16944,30851,30850,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.6952462,7.9183969,1,0,-9,4,0,5,52.103321,0,0,0,65,1,2,3,-9,-9,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5005903,7.3989091,0,0,37.209999,52.869999,41.68,39.200001,3,1,1,0,0,8,4,1,453,1487358,0,0,2912.2156 -13819,16945,30852,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,9.6210203,9.8103886,7.7320805,3,0,0,0,-9,0,-1036.027,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,43,52,15,1,0,-9,0,41.379848,41.379848,0,0,0,0,0,0,0,2,0,0,0,0,7.8843579,2.0706279,3,57.330002,53.459999,-9,-9,6,1,1,0,0,4,5,0,1297,686080.81,0,0,5430.7808 -13819,16946,30853,-9,30852,-9,2,1,1,20,2,0,0,1,2,-9,7,2,0,0,4,7.2146163,6.8792577,0,3,0,0,0,-9,0,-852.5921,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7106,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,4,2,0,557,49113.75,0,0,663.32336 -13820,16947,30854,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,0,4,7.9467487,8.3352098,5.1026144,3,0,0,0,-9,0,-1031.7367,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,36,36,15,1,0,-9,0,11.474926,11.474926,0,0,0,0,0,0,0,0,1,1,0,1.588659,5.162528,0,0,48.279999,60.18,-9,-9,6,1,1,0,0,8,4,0,84,673797.31,0,0,3066.3079 -13821,16948,30855,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1011.6957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.51,23.91,-9,-9,3,1,1,1,1,5,1,0,417,0,0,0,-267.62564 -13821,16949,30856,-9,30855,-9,2,1,1,38,2,0,0,0,2,-9,2,1,0,0,4,8.7386179,8.6869211,6.3191223,3,0,0,0,-9,0,-1028.3928,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,55,47,15,1,0,-9,1,12.635092,12.635092,0,0,0,0,0,0,0,0,1,0,1,6.9403591,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,5,5,0,135,64637.41,0,0,2970.7036 -13822,16950,30857,30858,-9,-9,4,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.263299,8.3294525,0,2,0,-9,7,0,1,-21.759806,0,0,0,34,1,1,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,12.211871,12.211871,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.812088,1,47.360001,53.68,19.01,22.639999,5,1,1,0,0,12,3,0,638.25,185760.97,0,0,1759.5099 -13822,16950,30858,30857,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,1,6.5889411,6.6196198,0,2,0,-9,7,0,-1,-43.132267,0,0,1,35,2,4,1,2,2,2019,1,4,31,10,2,35,15,1,1,1,0,32.30991,32.30991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,47.360001,53.68,3,1,1,0,1,12,3,0,638.25,185760.97,0,0,1759.5099 -13822,16950,30859,-9,30858,30857,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-860.1684,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,0,638.25,185760.97,0,0,1759.5099 -13822,16950,30860,-9,30858,30857,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.3578,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,3,0,638.25,185760.97,0,0,1759.5099 -13823,16951,30861,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,4,0,7.2452679,7.2687378,3,0,0,0,-9,0,-961.40936,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0465932,7.3324413,0,0,51.709999,59.93,-9,-9,7,1,1,0,0,2,3,1,232,456172.59,0,0,912.06702 -13824,16952,30862,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,0,3,0,6.0816102,6.3791904,3,0,0,0,-9,0,-1073.0754,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.5450065,6.3073955,15.573321,3,58.32,50.220001,-9,-9,6,1,1,0,0,13,2,1,826,369930.69,0,0,-302.55246 -13825,16953,30863,-9,-9,-9,1,1,0,76,2,0,0,0,3,-9,4,3,0,0,3,0,5.8157554,5.9451861,3,0,0,0,-9,0,-840.0047,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9191895,0,0,51.529999,41.310001,-9,-9,6,1,1,0,0,6,2,1,1597,644098.31,0,0,158.45563 -13826,16954,30864,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,0,4,0,8.2075367,8.0772772,3,0,0,0,-9,0,-1082.4417,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,5.3645501,8.0188122,75.707581,3,54.200001,57.490002,-9,-9,5,1,1,0,0,13,4,1,964,904189.06,0,0,1948.8969 -13827,16955,30865,30867,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,0,4,7.887939,8.3147945,0,2,0,-9,4,0,-2,-87.319382,0,1,1,30,2,4,1,-9,-9,2019,1,2,9,0,40,33,15,1,0,1,0,9.0214252,9.0214252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,49.41,58.279999,6,1,1,0,0,7,4,1,724,112512.17,0,0,2765.9824 -13827,16955,30866,-9,30865,30867,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.0722,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,724,112512.17,0,0,2765.9824 -13827,16955,30867,30865,-9,-9,2,1,1,30,1,0,1,0,2,-9,2,1,0,0,4,8.0418825,8.3182955,0,2,0,-9,4,0,2,-62.581055,0,0,0,28,2,4,1,-9,-9,2019,1,1,11,0,48,50,15,1,0,1,0,8.7970715,8.7970715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,57.16,56.150002,6,1,1,0,0,7,4,1,724,112512.17,0,0,2765.9824 -13828,16956,30868,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,2,0,5.7710567,6.0206409,3,0,0,0,-9,0,-1030.0627,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1465535,5.8878751,0,0,57.16,37.75,-9,-9,6,1,1,0,0,6,2,1,210,109785.6,0,0,1109.3356 -13829,16957,30869,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,0,4,9.2328997,8.9937859,0,3,0,0,0,-9,0,-1067.9854,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,51,15,1,0,-9,0,16.929251,16.929251,0,0,0,0,0,0,0,0,0,0,0,.83019137,0,0,0,49.52,55.68,-9,-9,6,1,1,0,0,6,5,1,870,234519.11,0,0,2051.5471 -13830,16958,30870,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1036.5516,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.580002,37.619999,-9,-9,6,1,1,0,0,12,1,1,118,0,0,0,848.5174 -13831,16959,30871,30872,-9,-9,2,1,0,60,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,8,0,-1,-182.11188,0,0,0,61,3,4,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,45.529999,53.130001,5,1,1,0,0,5,2,0,848,167926.94,0,0,3018.7158 -13831,16959,30872,30871,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,1,4,6.5642095,6.8202853,0,1,0,-9,8,0,1,-31.564978,0,0,0,60,3,3,3,3,3,2019,2,2,7,0,12,12,15,1,0,3,0,6.8555431,6.8555431,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.420097,1,45.529999,53.130001,49,48,7,1,1,0,0,5,2,0,848,167926.94,0,0,3018.7158 -13832,16960,30873,30875,-9,-9,2,1,0,33,1,0,2,0,3,-9,1,1,0,0,4,0,0,0,2,0,-9,15,0,-17,-96.307358,0,0,1,50,2,4,1,2,2,2019,1,1,6,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,58.150002,52.91,6,1,1,0,0,4,5,1,1448.75,862942,0,0,3720.2444 -13832,16960,30874,-9,30873,30875,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1088.7017,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,1,1448.75,862942,0,0,3720.2444 -13832,16960,30875,30873,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.9860821,9.1850204,0,2,0,-9,15,0,17,109.63385,0,0,0,33,3,4,1,3,2,2019,1,2,8,0,53,50,15,1,0,1,0,22.104755,22.104755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,54.200001,57.490002,6,1,1,0,0,4,5,1,1448.75,862942,0,0,3720.2444 -13832,16960,30876,-9,30873,30875,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.5924,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,1448.75,862942,0,0,3720.2444 -13833,16961,30877,30880,-9,-9,2,1,1,54,1,1,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,6,0,19,24.60705,0,0,0,35,1,2,1,2,3,2019,1,1,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3520203,0,0,0,43.5,39.189999,41.68,35.25,4,1,1,0,0,5,2,1,350,653569.75,0,0,1157.7358 -13833,16961,30878,-9,30880,30877,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.9393,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,1,350,653569.75,0,0,1157.7358 -13833,16961,30879,-9,30880,30877,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-866.58215,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,2,1,350,653569.75,0,0,1157.7358 -13833,16961,30880,30877,-9,-9,1,1,0,35,1,1,2,0,1,-9,5,1,0,0,2,8.0028973,7.7043562,0,2,0,-9,6,0,-19,4.4503021,0,0,1,54,2,3,1,2,2,2019,1,2,16,4,26,0,15,1,1,1,0,12.09686,12.09686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.68,35.25,43.5,39.189999,4,1,1,0,0,5,2,1,350,653569.75,0,0,1157.7358 -13834,16962,30881,30884,-9,-9,1,1,0,32,1,2,3,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,9,0,-1,1.9033158,0,0,1,33,2,3,1,2,2,2019,1,2,9,1,42,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52.16,46.150002,6,3,4,0,1,8,3,0,697.40002,264776.19,0,0,2781.2852 -13834,16962,30882,-9,30881,30884,4,1,0,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.67584,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,3,0,697.40002,264776.19,0,0,2781.2852 -13834,16962,30883,-9,30881,30884,3,1,1,15,2,2,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-921.84839,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,3,4,0,0,8,3,0,697.40002,264776.19,0,0,2781.2852 -13834,16962,30884,30881,-9,-9,2,1,1,33,1,2,3,0,2,-9,2,1,0,0,3,8.215044,8.1285658,0,2,0,-9,9,0,1,44.036007,-9,0,0,32,1,4,1,-9,-9,2019,1,1,15,4,39,0,15,1,1,1,0,10.541245,10.541245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.16,46.150002,51.830002,57.200001,3,1,1,0,1,8,3,0,697.40002,264776.19,0,0,2781.2852 -13834,16962,30885,-9,30881,30884,5,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1037.2715,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,3,0,697.40002,264776.19,0,0,2781.2852 -13835,16963,30886,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.2041206,6.0604591,3,0,0,0,-9,0,-997.18506,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,.94591653,0,0,0,1,1,0,2.1018867,5.6952105,0,0,49.110001,43.419998,-9,-9,5,1,1,0,0,5,2,0,233,214183.59,0,0,-901.85681 -13836,16964,30887,30888,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,4,0,7.3849111,7.6552734,1,0,-9,6,0,3,142.09271,0,0,0,73,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5688972,7.6825166,0,0,57.16,56.150002,63.93,31.049999,6,1,1,0,0,6,2,1,891.5,564950.69,0,0,2168.9275 -13836,16964,30888,30887,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,4.0698261,3.934185,1,0,-9,6,0,-3,-47.514606,0,0,0,76,1,4,3,2,2,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,2.6787472,0,0,0,0,0,1,1,0,4.2103672,4.0866919,0,0,63.93,31.049999,57.16,56.150002,7,1,1,0,0,6,2,1,891.5,564950.69,0,0,2168.9275 -13837,16965,30889,-9,30891,30892,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-928.72375,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,6,5,1,1726.5,2599685.8,0,0,5216.2539 -13837,16965,30890,-9,30891,30892,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1079.819,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,6,5,1,1726.5,2599685.8,0,0,5216.2539 -13837,16965,30891,30892,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,8.5754137,8.0594683,0,2,0,-9,8,0,-3,87.864159,0,0,0,51,2,2,1,2,2,2019,1,2,4,0,38,0,15,1,0,1,0,13.083358,13.083358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.310001,49.810001,58.560001,46.450001,6,1,1,0,0,6,5,1,1726.5,2599685.8,0,0,5216.2539 -13837,16965,30892,30891,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,2,9.4988585,9.0076857,0,2,0,-9,8,0,3,51.466793,-9,0,0,48,2,3,1,2,2,2019,1,1,10,0,40,0,15,1,0,1,0,31.403629,31.403629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.560001,46.450001,59.310001,49.810001,6,1,1,0,0,6,5,1,1726.5,2599685.8,0,0,5216.2539 -13838,16966,30893,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,0,2,7.8452878,7.9522457,0,3,0,0,0,-9,0,-1035.5465,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,39,41,15,1,1,-9,0,9.6925821,9.6925821,0,0,0,0,0,0,0,2,0,0,0,1.2923063,0,9.7899103,3,33.889999,57.810001,-9,-9,2,1,1,0,0,4,4,1,333,37511.898,0,0,640.82605 -13839,16967,30894,30895,-9,-9,2,1,0,61,1,0,0,0,2,-9,1,1,0,0,4,9.26019,9.2912922,0,1,0,-9,41,0,1,-39.753033,0,0,0,60,3,2,1,2,2,2019,1,1,13,2,40,40,15,1,0,1,0,30.371418,30.371418,0,0,0,0,0,0,0,0,0,0,0,2.4938056,0,0,0,51.470001,53.169998,63.650002,35.93,5,1,1,0,0,6,5,1,766,1481864.8,0,0,5531.6846 -13839,16967,30895,30894,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,2,8.6440821,9.1200132,0,1,0,-9,41,0,-1,47.150883,0,0,0,61,2,4,1,3,3,2019,1,2,8,1,42,43,15,1,0,1,0,23.427172,23.427172,0,0,0,0,0,0,0,0,0,0,0,3.2399292,0,0,0,63.650002,35.93,51.470001,53.169998,5,1,1,0,0,6,5,1,766,1481864.8,0,0,5531.6846 -13840,16968,30896,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1047.8215,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.687727,0,0,0,0,1,1,0,0,0,0,0,46.799999,17.959999,-9,-9,7,1,1,0,0,8,1,0,261,553696.31,0,0,1099.4706 -13841,16969,30897,-9,-9,-9,1,1,1,88,3,0,0,0,1,-9,4,3,0,0,5,0,8.6196976,9.1916018,3,0,0,0,-9,0,-899.69446,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5857501,8.8592377,0,0,56.709999,41.41,-9,-9,6,1,1,0,0,11,5,1,207,1336926.1,0,0,4833.4395 -13842,16970,30898,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,3,0,5.8564286,5.5826097,3,0,0,0,-9,0,-938.80365,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2738076,5.6194782,0,0,39.43,45.799999,-9,-9,6,1,1,0,0,4,2,1,1216,181182.92,0,0,749.04803 -13843,16971,30899,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1074.1206,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,5,1,1,0,1,12,1,0,277,371953.75,0,0,709.22723 -13844,16972,30900,30901,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,0,2,0,6.885354,7.4213333,1,0,-9,6,0,-1,36.301262,0,0,0,84,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,3.692122,0,0,0,0,0,1,1,0,6.7881436,6.9754701,0,0,64.239998,34.299999,62.490002,55.09,7,4,5,0,0,2,2,1,649,460316.72,0,0,3124.8408 -13844,16972,30901,30900,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,0,4,0,5.443995,5.4378185,1,0,-9,6,0,1,-61.175411,0,0,0,83,3,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6562028,5.3115377,0,0,62.490002,55.09,64.239998,34.299999,7,2,3,0,0,2,2,1,649,460316.72,0,0,3124.8408 -13845,16973,30902,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,1,0,4.4528728,4.2383623,3,0,-9,0,1,0,-991.9613,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.5090923,4.2776861,108.85134,3,44,23,-9,-9,6,1,1,0,0,1,2,0,309,-51561.824,0,0,1058.6705 -13845,16974,30903,-9,-9,-9,2,1,0,79,3,0,0,0,3,-9,4,3,0,0,1,0,4.6312947,4.756413,3,0,-9,0,1,0,-1061.1156,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.6984839,0,122.09198,3,47.419998,23.01,-9,-9,7,1,1,0,0,1,2,0,245,89278.109,0,0,1501.2522 -13846,16975,30904,-9,-9,-9,2,1,0,63,3,0,0,0,2,-9,8,3,1,1,1,0,6.612721,6.0840521,3,0,0,0,-9,0,-1097.8419,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.92086238,6.0815673,0,0,37,25,-9,-9,3,1,1,0,0,6,2,1,414,242638.88,0,0,514.32593 -13847,16976,30905,30907,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,2,9.0004473,9.1886063,0,2,0,-9,8,0,1,-4.1681595,0,0,0,45,2,4,1,-9,-9,2019,1,1,14,3,42,44,15,1,0,1,0,22.673201,22.673201,0,0,0,0,0,0,0,7,1,1,0,0,0,8.586689,3,50,44.939999,32.900002,57.869999,5,1,1,0,0,5,5,1,948,10017.607,0,0,3744.8079 -13847,16976,30906,-9,30907,30905,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1116.1407,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,5,1,948,10017.607,0,0,3744.8079 -13847,16976,30907,30905,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.3634124,7.0651145,0,2,0,-9,8,0,-1,-124.30744,0,0,0,46,2,2,1,-9,-9,2019,1,2,21,9,23,23,15,1,1,1,0,6.4295273,6.4295273,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.171804,3,32.900002,57.869999,50,44.939999,5,1,1,0,0,5,5,1,948,10017.607,0,0,3744.8079 -13848,16977,30908,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,4,3,0,0,4,0,8.6589661,8.3281097,3,0,0,0,-9,0,-927.91248,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.421176,8.9355469,0,0,52.48,52.75,-9,-9,7,1,1,0,0,11,5,1,269,951975.31,0,0,3214.7095 -13849,16978,30909,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,5,8.1539345,8.5733194,6.8024492,3,0,0,0,-9,0,-1063.8806,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,36,38,15,1,0,-9,0,14.135758,14.135758,0,0,0,0,0,0,0,0,0,0,0,5.0196214,7.0828562,0,0,57.060001,57.759998,-9,-9,7,3,4,0,0,8,5,0,2962,226558.95,0,0,1677.072 -13849,16979,30910,-9,30909,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,8.8637114,8.647151,0,3,0,0,0,-9,0,-1036.8425,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,35,15,1,0,-9,1,22.868883,22.868883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.540001,59.599998,-9,-9,5,3,4,0,0,8,5,0,495,0,0,0,2298.9448 -13849,16980,30911,-9,30909,-9,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.4153051,8.1641998,0,3,0,0,0,-9,0,-990.38965,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,35,35,15,1,0,-9,1,13.186123,13.186123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.700001,-9,-9,4,3,4,0,0,8,4,0,2308,30518.578,0,0,3051.9844 -13850,16981,30912,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,1,1,0,0,4,8.456871,8.0929699,0,3,0,0,0,-9,0,-849.09711,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,35,35,15,1,0,-9,0,15.830064,15.830064,0,0,0,0,0,0,0,0,0,0,0,4.4406872,0,0,0,49.860001,55.310001,-9,-9,5,2,3,0,0,8,4,1,645,212123.92,0,0,1872.6573 -13851,16982,30913,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,3,8.4758472,8.460598,0,3,0,0,0,-9,0,-903.20447,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,54,49,15,1,0,-9,0,10.499372,10.499372,0,0,0,0,0,0,0,0,1,1,0,7.6168389,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,5,5,1,3967,114400.02,0,0,1913.7251 -13851,16983,30914,-9,30913,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,7.7411809,7.6367607,0,3,0,0,0,-9,0,-1008.9116,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,50,15,1,0,-9,1,4.8432198,4.8432198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,5,3,1,954,50654.742,0,0,535.56653 -13852,16984,30915,30916,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.1912208,7.1143336,0,1,0,-9,43,0,-1,73.893776,0,0,0,61,3,3,1,-9,-9,2019,1,2,8,1,19,18,15,1,0,1,0,8.4602871,8.4602871,0,0,0,0,0,0,0,0,0,0,0,1.9235464,0,0,0,51.41,56.150002,62.43,40.110001,6,1,1,0,0,7,3,1,1770,814679.75,0,0,1135.4099 -13852,16984,30916,30915,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,6.5725188,7.4347982,6.6534972,1,0,-9,43,0,1,30.128008,0,0,0,60,2,3,1,-9,-9,2019,1,1,8,0,15,10,15,1,0,1,0,7.7249203,7.7249203,0,0,0,0,0,0,0,0,0,0,0,2.2595787,6.5585418,0,0,62.43,40.110001,51.41,56.150002,6,1,1,0,0,7,3,1,1770,814679.75,0,0,1135.4099 -13853,16985,30917,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,1,2,0,6.8783135,6.8635745,3,0,0,0,-9,0,-1010.687,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,8.2414398,0,0,0,0,1,1,0,4.1812658,6.8159347,0,0,55.900002,19.299999,-9,-9,6,1,1,0,0,4,2,1,118,237739.8,0,0,1879.5294 -13854,16986,30918,30919,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,0,4,7.3531418,7.6527472,0,2,0,-9,15,0,-17,24.803598,0,0,1,57,2,4,1,2,2,2019,1,1,8,0,29,23,15,1,0,1,0,7.3143644,7.3143644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,43.540001,59.599998,6,1,1,0,0,10,4,1,992.59998,988210.94,0,0,3084.1082 -13854,16986,30919,30918,-9,-9,1,1,1,57,1,0,3,0,2,-9,2,1,0,0,4,8.995348,8.8089476,0,2,0,-9,14,0,17,74.46032,0,0,0,40,1,4,1,2,2,2019,1,2,11,0,40,39,15,1,0,1,0,20.672417,20.672417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.540001,59.599998,57.16,56.150002,6,1,1,0,0,10,4,1,992.59998,988210.94,0,0,3084.1082 -13854,16986,30920,-9,30918,30919,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.4541,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,992.59998,988210.94,0,0,3084.1082 -13854,16986,30921,-9,30918,30919,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-984.24994,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,1,992.59998,988210.94,0,0,3084.1082 -13854,16986,30922,-9,30918,30919,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1100.0933,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,1,992.59998,988210.94,0,0,3084.1082 -13855,16987,30923,30926,-9,-9,2,1,1,38,1,0,2,0,2,-9,6,3,0,1,5,0,0,0,2,0,-9,22,0,-7,0,0,0,0,45,3,2,3,-9,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.14749,2,54.099998,59.110001,44.66,43.040001,6,1,1,0,0,1,1,0,810.75,-27735.563,0,0,2341.9438 -13855,16987,30924,-9,30926,30923,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.94769,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,1,0,810.75,-27735.563,0,0,2341.9438 -13855,16987,30925,-9,30926,30923,5,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.11035,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,1,0,810.75,-27735.563,0,0,2341.9438 -13855,16987,30926,30923,-9,-9,1,1,0,45,1,0,2,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,22,0,7,0,0,0,0,38,2,5,3,3,3,2019,4,2,13,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.36456,3,44.66,43.040001,54.099998,59.110001,2,1,1,0,0,1,1,0,810.75,-27735.563,0,0,2341.9438 -13855,16988,30927,-9,30926,30923,3,1,1,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1009.9034,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.630001,59.720001,-9,-9,7,1,1,0,0,1,1,0,820,0,0,0,0 -13856,16989,30928,30930,-9,-9,2,1,0,46,1,1,2,0,1,-9,2,1,0,0,4,8.3598347,8.3658228,0,2,0,-9,6,0,10,-11.839992,0,0,0,36,1,4,1,-9,-9,2019,1,1,10,1,36,36,15,1,0,1,0,14.161544,14.161544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,41.169998,59.310001,6,4,2,0,0,1,4,1,579.5,167562,0,0,3876.9841 -13856,16989,30929,-9,30928,30930,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-931.10077,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,1,4,1,579.5,167562,0,0,3876.9841 -13856,16989,30930,30928,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,8.4012604,8.2335129,0,2,0,-9,6,0,-10,132.6669,0,0,0,46,1,4,1,2,2,2019,1,2,12,0,37,38,15,1,0,1,0,11.954661,11.954661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.169998,59.310001,50,55,6,1,1,0,0,1,4,1,579.5,167562,0,0,3876.9841 -13856,16989,30931,-9,30928,30930,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.8448,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,1,4,1,579.5,167562,0,0,3876.9841 -13857,16990,30932,30933,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.0449495,7.5116267,0,1,0,-9,21,0,-11,-11.915227,0,0,0,67,2,3,1,-9,-9,2019,1,1,6,0,40,41,15,1,0,1,0,8.4681311,8.4681311,0,0,0,0,0,0,0,0,1,1,0,4.2414274,0,0,0,57.16,56.150002,54.369999,54.799999,6,1,1,0,0,10,4,1,1024.5,87932.422,0,0,3082.074 -13857,16990,30933,30932,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,7.8223257,8.6115303,7.2756362,1,0,-9,21,0,11,113.52686,0,0,0,56,2,4,1,3,-9,2019,1,2,6,0,24,24,15,1,0,1,0,10.129416,10.129416,0,0,0,0,0,0,0,0,1,1,0,4.195477,7.3356838,0,0,54.369999,54.799999,57.16,56.150002,6,1,1,0,0,10,4,1,1024.5,87932.422,0,0,3082.074 -13858,16991,30934,30935,-9,-9,2,1,1,66,1,0,0,0,2,-9,2,1,0,0,2,7.4306087,7.3940883,0,1,0,-9,8,0,3,-26.13365,0,0,0,63,3,3,1,-9,-9,2019,1,1,10,0,27,0,15,1,0,1,0,7.7458286,7.7458286,0,0,0,0,0,0,0,0,0,0,0,3.2268815,0,0,0,62.18,20.120001,62.57,40.110001,6,1,1,0,0,7,4,0,444.5,1013002.8,0,0,2856.3567 -13858,16991,30935,30934,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,0,3,8.357646,8.295105,0,1,0,-9,8,0,-3,99.927032,0,0,0,66,2,2,1,3,-9,2019,1,2,10,0,38,48,15,1,0,1,0,12.648999,12.648999,0,0,0,0,0,0,0,0,0,0,0,4.1602092,0,0,0,62.57,40.110001,62.18,20.120001,6,1,1,0,0,7,4,0,444.5,1013002.8,0,0,2856.3567 -13859,16992,30936,30937,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,4,0,5.3414359,5.8454428,1,0,-9,61,0,-2,-62.345531,0,0,0,82,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.522491,5.9732676,0,0,48.540001,54.5,58.470001,50.220001,6,1,1,0,0,9,2,1,1545.5,551276.88,0,0,609.9823 -13859,16992,30937,30936,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,6.5639563,6.5933075,1,0,-9,61,0,2,56.144142,0,0,0,80,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1301827,6.3210745,0,0,58.470001,50.220001,48.540001,54.5,7,1,1,0,0,9,2,1,1545.5,551276.88,0,0,609.9823 -13860,16993,30938,-9,30941,-9,1,1,0,53,3,0,2,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-991.50183,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.12518,3,25.969999,23.379999,-9,-9,4,3,4,1,0,8,1,0,478,-10403.813,0,0,1356.542 -13860,16993,30939,-9,30938,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1027.7223,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,1,0,478,-10403.813,0,0,1356.542 -13860,16993,30940,-9,30938,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1049.3982,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,1,0,478,-10403.813,0,0,1356.542 -13860,16994,30941,-9,-9,-9,4,1,0,83,3,0,2,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1127.6934,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,3,4,0,0,8,1,0,2255,-59697.309,0,0,730.46045 -13861,16995,30942,30943,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,0,5,0,6.6632733,6.749187,1,0,-9,40,0,0,113.97501,0,0,0,62,1,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.1804247,32.9967,3,60.02,56.419998,62.389999,56.709999,6,1,1,0,0,12,3,1,591,1073851.9,0,0,2919.0796 -13861,16995,30943,30942,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,0,5,0,7.9863105,7.9624491,1,0,-9,4,0,0,20.406118,0,0,0,62,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.960001,76.870567,3,62.389999,56.709999,60.02,56.419998,7,1,1,0,0,12,3,1,591,1073851.9,0,0,2919.0796 -13862,16996,30944,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,0,5,9.603756,9.6358786,0,3,0,0,0,-9,0,-940.73749,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,57,57,15,1,0,-9,0,33.597389,33.597389,0,0,0,0,0,0,0,2,0,0,0,6.2251768,0,7.4505062,3,62.389999,56.709999,-9,-9,7,1,1,0,0,12,5,1,268,334667.03,0,0,5418.7217 -13863,16997,30945,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,3.6499283,6.8804426,7.1547346,3,0,0,0,-9,0,-1089.5171,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4006286,6.779027,9.8667984,3,60.869999,42.099998,-9,-9,6,1,1,0,0,10,2,1,204,18735.877,0,0,976.51648 -13864,16998,30946,30947,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,2,0,8.4401398,8.1401482,1,0,-9,6,0,-1,63.849701,0,0,0,79,2,2,3,3,-9,2019,4,1,24,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7091789,8.1347561,0,0,37.240002,40.060001,48.209999,37.939999,5,1,1,0,0,7,4,1,621.5,2135882,0,0,6048.1631 -13864,16998,30947,30946,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,2,5.188108,7.2920346,7.4640441,1,0,-9,6,0,1,86.113335,0,0,0,78,2,2,3,2,2,2019,4,2,23,10,15,20,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3259702,7.4782186,0,0,48.209999,37.939999,37.240002,40.060001,3,1,1,0,0,7,4,1,621.5,2135882,0,0,6048.1631 -13865,16999,30948,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,9.2054901,8.9962749,0,3,0,0,0,-9,0,-866.98517,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,50,60,15,1,1,-9,0,25.398787,25.398787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,58.009998,-9,-9,6,1,1,0,0,7,5,1,320,582333.5,0,0,3941.7058 -13866,17000,30949,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-949.43579,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.720001,21.59,-9,-9,1,1,1,0,0,4,1,0,3884,193924.72,0,0,1129.4968 -13866,17001,30950,-9,30949,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,7.2900524,7.5573697,0,3,0,0,0,-9,0,-1121.7805,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,40,12,15,1,0,-9,1,6.7761993,6.7761993,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.9129782,3,54.689999,57.470001,-9,-9,6,1,1,0,0,4,3,0,162,-76029.867,0,0,-436.51132 -13867,17002,30951,30952,-9,-9,1,1,1,31,1,0,0,0,1,-9,1,1,0,0,3,8.4991283,8.5160513,0,1,0,-9,4,0,4,-38.37896,0,0,0,27,1,4,1,1,2,2019,1,2,8,0,46,47,15,1,0,1,0,13.920088,13.920088,0,0,0,0,0,0,0,0,0,0,0,.027006045,0,0,0,51.189999,49.369999,54.740002,57.220001,6,1,1,0,0,5,5,1,453.5,764131.63,0,0,4305.8281 -13867,17002,30952,30951,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.5582333,8.5890999,0,1,0,-9,4,0,-4,-66.187248,0,1,1,31,1,3,1,-9,-9,2019,1,1,6,0,50,52,15,1,0,1,0,13.368909,13.368909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.740002,57.220001,51.189999,49.369999,6,1,1,0,0,5,5,1,453.5,764131.63,0,0,4305.8281 -13868,17003,30953,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,0,5,0,3.2300158,3.4091265,3,0,0,0,-9,0,-950.92316,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.441318,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,10,2,1,709,414683.97,0,0,1524.9468 -13869,17004,30954,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,0,4,9.2328939,9.5742283,0,3,0,0,0,-9,0,-1052.6871,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,45,60,15,1,0,-9,0,27.91077,27.91077,0,0,0,0,0,0,0,0,0,0,0,5.7095847,0,0,0,48.869999,58.549999,-9,-9,4,1,1,0,0,8,5,1,512,542031.25,0,0,5084.8843 -13870,17005,30955,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,0,3,0,6.1659565,6.0855207,3,0,0,0,-9,0,-1148.1963,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,1.9053193,0,0,1,1,0,0,5.8853092,0,0,20.559999,41.720001,-9,-9,2,1,1,0,0,9,2,1,1552,151885.11,0,0,728.85132 -13871,17006,30956,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,5,0,6.3854418,5.9588346,3,0,0,0,-9,0,-1078.7126,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,8.2495279,0,0,0,0,1,1,0,1.1193901,6.1717095,0,0,62.650002,33.310001,-9,-9,7,1,1,0,0,6,2,0,262,302272.22,0,0,363.40262 -13872,17007,30957,30959,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,0,4,8.4158745,8.890192,0,2,0,-9,12,-9,-1,-30.002996,-9,0,0,42,1,3,3,2,2,2019,2,2,19,6,38,0,15,1,1,3,0,15.900719,15.900719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.08,62.630001,63.59,31.32,3,1,1,0,1,2,3,0,635.66669,312011.38,0,0,2031.4153 -13872,17007,30958,-9,30959,30957,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-944.80353,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,3,0,635.66669,312011.38,0,0,2031.4153 -13872,17007,30959,30957,-9,-9,2,1,0,42,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,12,-9,1,31.43058,-9,0,1,41,1,4,1,2,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.59,31.32,28.08,62.630001,6,1,1,0,1,2,3,0,635.66669,312011.38,0,0,2031.4153 -13873,17008,30960,-9,30961,30963,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.02661,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,722.25,52694.242,0,0,2773.4631 -13873,17008,30961,30963,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,0,3,8.2042847,8.4332199,0,2,0,-9,8,0,-1,-28.220741,0,0,1,37,2,4,1,2,-9,2019,1,2,11,0,25,41,15,1,0,1,0,19.071999,19.071999,0,0,0,0,0,0,0,0,1,1,0,4.0869493,0,0,0,44.830002,55.130001,58.150002,52.91,6,1,1,0,0,7,5,1,722.25,52694.242,0,0,2773.4631 -13873,17008,30962,-9,30961,30963,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.9903,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,722.25,52694.242,0,0,2773.4631 -13873,17008,30963,30961,-9,-9,2,1,1,37,1,1,2,0,2,-9,2,1,0,0,4,8.5720863,8.6893253,0,2,0,-9,8,0,1,-160.7655,0,0,0,36,1,3,1,2,-9,2019,1,1,8,0,40,40,15,1,0,1,0,14.344896,14.344896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,44.830002,55.130001,6,1,1,0,0,7,5,1,722.25,52694.242,0,0,2773.4631 -13874,17009,30964,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,0,3,0,7.8666897,8.2260113,3,0,0,0,-9,0,-1019.2493,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3404102,7.87429,0,0,52,47,-9,-9,5,1,1,0,0,4,3,1,143,860438.63,0,0,2230.2219 -13875,17010,30965,-9,-9,-9,1,1,0,89,3,0,0,0,1,-9,4,3,0,0,4,0,7.0683432,7.11657,3,0,0,0,-9,0,-938.75995,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9832959,0,0,60.040001,36.970001,-9,-9,6,1,1,0,0,9,2,1,1693,864279.44,0,0,2214.5281 -13875,17011,30966,-9,30965,-9,2,1,1,60,2,0,0,0,3,-9,2,1,0,0,3,7.2872043,7.5618858,0,3,0,0,0,-9,0,-1011.1227,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,39,39,15,1,1,-9,1,5.4827676,5.4827676,0,0,0,0,0,0,0,14.5,1,1,0,2.249408,0,18.611742,3,33.310001,61.939999,-9,-9,6,1,1,0,0,9,3,1,462,-10158.281,0,0,2325.2668 -13876,17012,30967,30968,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,59,0,1,0,0,0,0,76,3,4,3,3,3,2019,4,1,30,10,0,0,15,4,1,4,0,0,0,1,0,69.255592,0,0,0,0,0,1,1,0,0,0,0,0,11.1,37.209999,43.18,55.57,2,1,1,0,0,6,1,1,2140.5,74653.367,0,0,345.65686 -13876,17012,30968,30967,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-1,0,0,0,0,77,3,1,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.0356445,0,72.007614,1,43.18,55.57,11.1,37.209999,3,1,1,0,0,6,1,1,2140.5,74653.367,0,0,345.65686 -13877,17013,30969,-9,-9,-9,1,1,1,67,3,0,1,0,2,-9,4,3,0,1,2,0,0,0,4,0,0,0,-9,0,-844.10583,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,5.600585,0,0,0,1,1,0,0,0,0,0,42.040001,32.240002,-9,-9,4,1,1,0,0,4,1,0,647,197369.02,0,0,1415.8997 -13877,17014,30970,-9,-9,30969,2,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-939.23523,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,0,4,1,0,321,-42385.711,0,0,-20.635988 -13878,17015,30971,30972,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,2,8.5032597,8.4500618,0,1,0,-9,7,0,1,10.710908,0,0,0,53,2,3,3,-9,-9,2019,2,2,10,0,53,55,15,1,0,3,0,9.8833628,9.8833628,0,0,0,0,0,0,0,0,0,0,0,2.992451,0,0,0,46.189999,39.869999,50.599998,51,6,1,1,0,0,6,4,1,1183.5,230540.34,0,0,1894.9833 -13878,17015,30972,30971,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,0,3,3.9900565,3.4485676,0,1,0,-9,8,0,-1,-44.847649,0,0,0,54,3,2,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,.5108943,0,10.500424,3,50.599998,51,46.189999,39.869999,6,1,1,0,0,6,4,1,1183.5,230540.34,0,0,1894.9833 -13879,17016,30973,30975,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,9,0,-10,0,0,0,0,61,2,3,1,2,2,2019,1,2,17,5,0,49,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,47.07,47.610001,52.369999,4,1,1,0,0,12,1,1,690.33331,84072.547,0,0,9.6217957 -13879,17016,30974,-9,30973,30975,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-982.96118,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,12,1,1,690.33331,84072.547,0,0,9.6217957 -13879,17016,30975,30973,-9,-9,2,1,1,61,1,0,1,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,9,0,10,0,0,0,0,51,1,3,1,-9,-9,2019,1,1,10,0,0,36,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7808743,0,0,0,47.610001,52.369999,35.790001,47.07,4,1,1,0,0,12,1,1,690.33331,84072.547,0,0,9.6217957 -13880,17017,30976,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,2,0,6.3428831,6.2368345,3,0,0,0,-9,0,-943.56238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.3126712,0,0,0,0,67.824989,0,1,1,0,0,6.3839068,0,0,55.470001,29.040001,-9,-9,6,1,1,0,0,13,2,1,340,586480.13,0,0,1456.6565 -13881,17018,30977,-9,30979,30981,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.9773,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,3,1,401.79999,671450.25,0,0,2798.728 -13881,17018,30978,-9,30979,30981,4,1,0,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.5425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,9,3,1,401.79999,671450.25,0,0,2798.728 -13881,17018,30979,30981,-9,-9,2,1,0,42,1,1,3,0,2,-9,2,1,0,0,3,8.3664694,7.9211898,0,2,0,-9,15,0,2,63.209572,0,0,1,40,2,3,1,-9,-9,2019,1,1,1,0,30,38,15,1,0,1,0,11.665677,11.665677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,46.380001,51.349998,34.349998,2,2,3,0,0,9,3,1,401.79999,671450.25,0,0,2798.728 -13881,17018,30980,-9,30979,30981,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.4637,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,9,3,1,401.79999,671450.25,0,0,2798.728 -13881,17018,30981,30979,-9,-9,1,1,1,40,1,1,3,0,2,-9,2,1,0,0,3,7.9079261,7.9736495,0,2,0,-9,15,0,-2,-116.91805,0,0,0,42,2,3,1,2,2,2019,1,2,13,2,40,48,15,1,0,1,0,7.6147504,7.6147504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.349998,34.349998,55.189999,46.380001,6,2,3,0,0,9,3,1,401.79999,671450.25,0,0,2798.728 -13882,17019,30982,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,0,3,0,7.1684632,7.2897086,3,0,0,0,-9,0,-993.5144,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,15.039627,0,0,0,0,139.60951,0,1,1,0,0,7.2122049,0,0,28,39.860001,-9,-9,5,1,1,0,0,9,3,0,2267,374650.88,0,0,1725.6453 -13883,17020,30983,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1052.3918,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,11,1,1,545,68253.852,0,0,1149.0144 -13884,17021,30984,-9,-9,-9,2,1,1,77,3,0,0,0,3,-9,4,3,0,0,3,0,6.7550025,6.6923156,3,0,0,0,-9,0,-1053.6002,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7469006,0,0,54,46,-9,-9,6,4,6,0,0,11,2,0,679,334285.25,0,0,2395.3809 -13884,17022,30985,30986,-9,30984,3,1,1,53,1,0,0,0,3,-9,2,1,0,0,3,8.3326378,8.5599928,0,1,0,-9,4,0,5,9.6615448,0,0,0,48,2,3,3,-9,3,2019,2,1,9,2,46,46,15,1,0,3,0,9.8864832,9.8864832,0,0,0,0,0,0,0,71.5,1,1,0,0,0,62.525852,3,53.700001,43.09,39.599998,43.990002,6,1,1,0,0,11,3,0,406.5,1067774,0,0,1948.8232 -13884,17022,30986,30985,-9,-9,1,1,0,48,1,0,0,0,2,-9,6,3,0,1,3,0,0,0,1,0,-9,4,0,-5,28.339632,0,0,0,53,3,3,1,2,-9,2019,3,3,26,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,107.52427,3,39.599998,43.990002,53.700001,43.09,5,1,1,0,0,11,3,0,406.5,1067774,0,0,1948.8232 -13885,17023,30987,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,0,4,8.9703236,9.0795298,0,3,0,0,0,-9,0,-1142.8295,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,40,41,15,1,0,-9,0,20.355661,20.355661,0,0,0,0,0,0,0,0,0,0,0,1.6756706,0,0,0,44.259998,59.43,-9,-9,2,1,1,0,0,4,5,1,507,-59503.266,0,0,3705.1958 -13886,17024,30988,30989,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,0,4,8.1472807,8.1146297,0,2,0,-9,7,0,-4,-41.631462,0,0,1,36,1,5,1,2,2,2019,1,1,17,5,27,34,15,1,1,1,0,15.422147,15.422147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.150002,49.759998,46.619999,58.619999,5,1,1,0,0,9,5,1,604,683724.25,0,0,3778.3711 -13886,17024,30989,30988,-9,-9,1,1,1,36,1,0,1,0,1,-9,2,1,0,0,5,8.7592802,8.7256041,0,2,0,-9,11,0,4,25.645035,0,0,0,32,2,4,1,2,2,2019,1,2,10,0,39,40,15,1,0,1,0,16.154427,16.154427,0,0,0,0,0,0,0,2,1,1,0,0,0,7.7051578,3,46.619999,58.619999,39.150002,49.759998,6,1,1,0,0,9,5,1,604,683724.25,0,0,3778.3711 -13886,17024,30990,-9,30988,30989,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-885.99316,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,604,683724.25,0,0,3778.3711 -13887,17025,30991,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,2,1,0,0,4,9.7530718,9.5689878,0,3,0,-9,0,0,0,-1132.4203,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,58,0,15,1,0,-9,0,28.276957,28.276957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.849998,58.560001,-9,-9,3,1,1,0,0,5,5,1,620,918456.44,0,0,5356.9761 -13887,17026,30992,-9,30991,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,7.8344417,7.7579107,5.3652678,3,0,0,0,-9,0,-1065.4095,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,30,0,15,1,0,-9,1,8.5581856,8.5581856,0,0,0,0,0,0,0,0,0,0,0,5.6915698,0,0,0,54.200001,49.259998,-9,-9,5,1,1,0,0,5,3,1,1695,127160.21,0,0,514.69897 -13888,17027,30993,30994,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,4.5610251,4.4276814,1,0,-9,10,0,1,101.18892,0,0,0,68,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.1889558,0,0,58.150002,52.91,62.27,48.470001,7,1,1,0,0,1,3,0,303,903193.5,0,0,2781.314 -13888,17027,30994,30993,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.5715051,7.5502701,1,0,-9,10,0,-1,24.446289,0,0,0,69,2,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8945891,7.6397414,0,0,62.27,48.470001,58.150002,52.91,6,1,1,0,0,1,3,0,303,903193.5,0,0,2781.314 -13889,17028,30995,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,2,0,7.8817763,7.966424,3,0,0,0,-9,0,-956.53998,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8717394,8.2890215,0,0,59.700001,43.220001,-9,-9,6,1,1,0,0,7,3,1,800,49795.758,0,0,1621.5873 -13890,17029,30996,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,1,1,0,0,3,4.9506736,4.9832573,0,3,0,0,0,-9,0,-966.27783,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,.45538169,.45538169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.439999,37.810001,-9,-9,6,1,1,0,0,4,2,1,775,-63214.715,0,0,-656.65729 -13891,17030,30997,-9,-9,-9,1,1,0,67,2,0,0,0,1,-9,2,1,0,0,4,9.6954823,9.8298178,5.1328077,1,0,-9,34,0,2,25.696129,0,0,0,-9,-9,-9,-9,3,3,2019,2,2,13,2,35,35,15,1,0,-9,0,43.244755,43.244755,0,0,0,0,0,0,0,0,1,1,0,6.5848131,5.2673883,0,0,49.349998,59.639999,54.200001,57.490002,6,1,1,0,0,9,5,1,1351,395455.03,0,0,9562.1016 -13891,17031,30998,-9,-9,-9,2,1,0,65,2,0,0,0,1,-9,4,3,0,0,4,0,7.7902613,7.711133,1,0,-9,34,0,-2,22.626308,0,0,0,-9,-9,-9,-9,2,2,2019,3,1,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2229635,7.5109138,0,0,54.200001,57.490002,49.349998,59.639999,6,1,1,0,0,9,5,1,189,727690.75,0,0,1711.525 -13892,17032,30999,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,0,3,0,7.8301978,7.4347539,3,0,0,0,-9,0,-936.73566,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.8212519,7.70329,11.787546,3,50.900002,52.450001,-9,-9,6,1,1,0,0,11,3,0,172,738177.63,0,0,400.23022 -13892,17033,31000,-9,-9,30999,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,7.8058057,8.1677341,0,3,0,0,0,-9,0,-1066.4097,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,40,47,15,1,0,-9,1,9.6593046,9.6593046,0,0,0,0,0,0,0,0,0,0,0,.078819603,0,0,0,48.709999,51.810001,-9,-9,6,1,1,0,0,11,4,0,72,73678.469,0,0,1084.1628 -13893,17034,31001,31002,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,0,3,7.6645885,7.5947437,0,2,0,-9,3,0,5,68.638649,0,0,0,29,2,3,1,-9,-9,2019,1,1,12,0,20,15,15,1,0,1,0,11.981483,11.981483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,52.990002,51.279999,4,1,1,0,0,13,2,0,713,-94322.789,0,0,1958.4865 -13893,17034,31002,31001,-9,-9,1,1,0,29,1,1,1,0,2,-9,5,1,0,0,3,0,0,0,2,0,-9,3,0,-5,51.667751,0,1,1,34,2,3,1,-9,-9,2019,1,2,10,1,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.13954873,0,0,0,52.990002,51.279999,41.34,56.619999,6,1,1,0,0,13,2,0,713,-94322.789,0,0,1958.4865 -13893,17034,31003,-9,31002,31001,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-996.09772,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,0,713,-94322.789,0,0,1958.4865 -13894,17035,31004,31005,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,5.8929629,6.1057668,1,0,-9,8,0,-2,-9.4030361,0,0,0,78,2,4,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5087156,5.6170688,0,0,53,46,47.099998,56.619999,6,1,1,0,0,10,3,1,2315.5,1063993,0,0,2556.5171 -13894,17035,31005,31004,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.3945861,7.3624005,1,0,-9,44,0,2,58.560085,0,0,0,76,3,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7065625,7.152257,0,0,47.099998,56.619999,53,46,6,1,1,0,0,10,3,1,2315.5,1063993,0,0,2556.5171 -13895,17036,31006,31007,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,0,3,8.263319,7.6208682,0,1,0,-9,32,0,9,94.396553,0,0,0,55,2,5,1,1,-9,2019,1,2,6,0,20,20,15,1,0,1,0,20.74095,20.74095,0,0,0,0,0,0,0,0,0,0,0,4.6338253,0,0,0,60.869999,44.959999,57.060001,57.759998,6,1,1,0,0,6,4,1,1386,860473.19,0,0,2875.7002 -13895,17036,31007,31006,-9,-9,2,1,0,55,1,0,0,0,2,-9,1,1,0,0,5,7.2882276,7.1489038,6.3113294,1,0,-9,32,0,0,51.344429,0,0,0,64,1,3,1,3,-9,2019,1,1,6,0,15,15,15,1,0,1,0,9.5510893,9.5510893,0,0,0,0,0,0,0,0,0,0,0,2.843111,5.7130718,0,0,57.060001,57.759998,60.869999,44.959999,7,1,1,0,0,6,4,1,1386,860473.19,0,0,2875.7002 -13896,17037,31008,31009,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,0,5,8.201067,7.7749462,0,2,0,-9,5,0,-34,-55.850834,0,1,1,59,2,4,1,2,2,2019,1,2,8,0,37,38,15,1,0,1,0,8.3273754,8.3273754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,62.099998,51.16,6,1,1,0,0,2,4,0,763,156030.69,0,0,2744.8193 -13896,17037,31009,31008,-9,-9,2,1,1,59,1,1,1,0,2,-9,1,1,0,0,4,8.1375694,8.1405182,0,2,0,-9,5,0,34,-16.609381,0,0,0,25,2,5,1,-9,-9,2019,1,1,6,0,50,60,15,1,0,1,0,8.6302681,8.6302681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.099998,51.16,57.060001,57.759998,6,1,1,0,0,2,4,0,763,156030.69,0,0,2744.8193 -13896,17037,31010,-9,31008,31009,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1130.4238,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,0,763,156030.69,0,0,2744.8193 -13897,17038,31011,31012,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,7.4039207,7.2018971,0,1,0,-9,32,0,-2,138.511,0,0,0,52,1,4,1,2,2,2019,1,2,8,0,20,28,15,1,0,1,0,7.8378496,7.8378496,0,0,0,0,0,0,0,0,0,0,0,7.1693988,0,0,0,51,52.080002,54,54,6,1,1,0,0,9,5,1,464,811905.81,0,0,6386.4248 -13897,17038,31012,31011,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,9.2851706,9.4447279,0,1,0,-9,6,0,2,126.50132,0,0,0,50,1,4,1,-9,-9,2019,1,1,9,1,60,55,15,1,0,1,0,23.9184,23.9184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,51,52.080002,6,1,1,0,0,9,5,1,464,811905.81,0,0,6386.4248 -13897,17039,31013,-9,31011,31012,3,1,1,21,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1082.3252,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.610001,56.93,-9,-9,5,1,1,1,1,9,1,1,1247,-116573.47,0,0,0 -13897,17040,31014,-9,31011,31012,4,1,1,21,2,0,0,0,2,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-898.47992,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,35,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,9,1,1,741,83222.07,0,0,0 -13898,17041,31015,-9,31016,31018,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.7073,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,0,1700.75,1020857,0,0,2809.7568 -13898,17041,31016,31018,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.6355224,7.4911842,0,2,0,-9,23,0,-8,14.249221,0,0,1,49,2,4,1,2,3,2019,1,1,8,0,28,28,15,1,0,1,0,8.8602552,8.8602552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,59.860001,48.060001,6,1,1,0,0,12,4,0,1700.75,1020857,0,0,2809.7568 -13898,17041,31017,-9,31016,31018,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,5.654182,5.573626,0,2,0,0,0,-9,0,-988.41016,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,3,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,4,0,1700.75,1020857,0,0,2809.7568 -13898,17041,31018,31016,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.1360159,8.5111799,0,2,0,-9,23,0,8,-1.6529553,0,0,0,41,2,4,1,-9,3,2019,1,2,9,0,44,42,15,1,0,1,0,12.455927,12.455927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.860001,48.060001,57.16,56.150002,5,3,4,0,0,12,4,0,1700.75,1020857,0,0,2809.7568 -13899,17042,31019,31020,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.690352,6.3743653,1,0,-9,9,0,-4,-14.176928,-9,0,0,75,2,3,1,3,3,2019,3,1,16,4,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.3591852,6.5093603,0,0,38.169998,43.73,46.080002,57.200001,6,1,1,0,0,4,3,1,121.5,571490.38,0,0,2758.938 -13899,17042,31020,31019,-9,-9,1,1,1,75,1,0,0,0,2,-9,2,1,0,0,3,7.2405581,7.2760692,5.538734,1,0,-9,9,0,4,-47.086807,0,0,0,71,3,2,3,3,3,2019,2,2,8,0,20,25,15,1,0,4,0,9.034153,9.034153,0,0,0,0,0,0,0,0,1,1,0,6.2871799,5.4318109,0,0,46.080002,57.200001,38.169998,43.73,5,1,1,0,0,4,3,1,121.5,571490.38,0,0,2758.938 -13900,17043,31021,-9,31025,31022,3,1,1,16,2,0,3,1,2,-9,7,2,0,0,5,0,4.3267674,4.7860484,2,0,0,0,-9,0,-1088.1123,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7044759,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,12,4,1,676.59998,428502.34,0,0,5539.2939 -13900,17043,31022,31025,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,0,4,8.811945,8.5901489,0,2,0,-9,7,0,5,77.81707,0,0,0,41,2,5,1,2,2,2019,1,2,3,0,36,35,15,1,0,1,0,23.212303,23.212303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.73,58.82,6,1,1,0,0,12,4,1,676.59998,428502.34,0,0,5539.2939 -13900,17043,31023,-9,31025,31022,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.3949,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,676.59998,428502.34,0,0,5539.2939 -13900,17043,31024,-9,31025,31022,4,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1065.5631,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,676.59998,428502.34,0,0,5539.2939 -13900,17043,31025,31022,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,0,5,8.2361069,8.8610516,7.3575544,2,0,-9,7,0,-5,-51.05595,0,0,1,46,1,4,1,-9,-9,2019,1,1,6,0,19,18,15,1,0,1,0,24.15424,24.15424,0,0,0,0,0,0,0,0,1,1,0,7.601088,0,0,0,51.73,58.82,57.16,56.150002,6,1,1,0,0,12,4,1,676.59998,428502.34,0,0,5539.2939 -13901,17044,31026,31027,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,1,3,7.1541858,7.0815873,0,1,0,-9,12,0,5,65.471321,0,0,0,43,2,1,3,2,-9,2019,2,1,8,1,20,18,15,1,0,3,0,7.1601839,7.1601839,0,0,0,0,0,0,0,7,1,1,0,0,0,5.5210309,1,49.669998,43.389999,33.189999,27.059999,6,4,2,0,0,6,2,0,388,-95823.047,0,0,1016.0717 -13901,17044,31027,31026,-9,-9,1,1,0,43,1,0,0,0,2,-9,3,3,0,0,1,0,0,0,1,0,-9,13,0,-5,.87111932,0,0,1,48,2,3,1,3,3,2019,3,2,23,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.189999,27.059999,49.669998,43.389999,5,3,4,1,0,6,2,0,388,-95823.047,0,0,1016.0717 -13902,17045,31028,31029,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.4644756,7.5789385,1,0,-9,46,0,-2,60.018627,0,0,0,67,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7726817,6.8521771,0,0,56.580002,49.75,60.869999,44.959999,6,1,1,0,0,10,4,1,609.5,2203832.3,0,0,4626.1572 -13902,17045,31029,31028,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,8.2420731,8.4638376,1,0,-9,45,0,2,-62.318863,0,0,0,65,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.848464,8.5773354,0,0,60.869999,44.959999,56.580002,49.75,6,1,1,0,0,10,4,1,609.5,2203832.3,0,0,4626.1572 -13902,17046,31030,-9,31028,31029,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,5,8.0640936,7.8486991,0,3,0,0,0,-9,0,-1007.8383,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,39,39,15,1,0,-9,1,8.6292868,8.6292868,0,0,0,0,0,0,0,0,1,1,0,2.166616,0,0,0,54.099998,59.110001,-9,-9,5,1,1,0,0,10,3,1,297,306491.56,0,0,400.38208 -13903,17047,31031,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,4,0,7.2368131,6.7657828,3,0,0,0,-9,0,-1051.3218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8170233,7.0218501,0,3,63.66,46.310001,-9,-9,6,1,1,0,0,5,2,1,659,711014.94,0,0,1438.0592 -13904,17048,31032,31033,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,2,7.2947912,7.3496695,0,1,0,-9,6,0,-8,-71.257195,0,0,0,62,3,3,1,3,3,2019,1,1,15,3,23,30,15,1,0,1,0,8.3221693,8.3221693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.68,32.810001,44.240002,33.610001,5,1,1,0,0,11,4,1,216.5,606146.75,0,0,2695.2983 -13904,17048,31033,31032,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,8.091217,8.321804,3.8460398,1,0,-9,6,0,8,-199.08971,0,0,0,54,3,2,1,3,2,2019,1,2,16,4,37,37,15,1,1,1,0,12.710683,12.710683,0,0,0,0,0,0,0,0,1,1,0,3.8435464,4.0339222,0,0,44.240002,33.610001,29.68,32.810001,4,1,1,0,0,11,4,1,216.5,606146.75,0,0,2695.2983 -13904,17049,31034,-9,31032,31033,3,1,1,25,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-862.20612,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,1,1,1903,46895.129,0,0,991.4704 -13905,17050,31035,-9,-9,-9,1,1,0,54,2,0,1,0,2,-9,2,1,0,0,3,8.4309664,8.5252876,0,4,0,0,0,-9,0,-1088.7057,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,30,20,15,1,1,-9,0,18.387068,18.387068,0,0,0,0,0,0,0,0,1,1,0,1.0058217,0,0,0,47,49,-9,-9,5,3,4,0,0,8,4,1,586.5,322781.94,0,0,2371.104 -13905,17050,31036,-9,31035,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-854.87415,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,3,4,0,0,8,4,1,586.5,322781.94,0,0,2371.104 -13906,17051,31037,-9,31038,-9,6,1,0,15,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.3145,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,2,2,0,624.16669,93527.633,0,0,2789.0859 -13906,17051,31038,-9,-9,-9,1,1,0,39,3,0,6,0,2,-9,6,3,0,0,4,0,7.5159626,7.2624574,4,0,0,0,-9,0,-969.48053,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7905192,0,0,0,48.650002,55.84,-9,-9,7,2,3,0,0,2,2,0,624.16669,93527.633,0,0,2789.0859 -13906,17051,31039,-9,31038,-9,2,1,0,13,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1160.1885,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,2,2,0,624.16669,93527.633,0,0,2789.0859 -13906,17051,31040,-9,31038,-9,7,1,0,5,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1032.2336,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,0,624.16669,93527.633,0,0,2789.0859 -13906,17051,31041,-9,31038,-9,3,1,1,11,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1007.2533,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,2,0,624.16669,93527.633,0,0,2789.0859 -13906,17051,31042,-9,31038,-9,4,1,1,10,2,0,6,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.1626,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,2,0,624.16669,93527.633,0,0,2789.0859 -13907,17052,31043,-9,31044,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-948.18091,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,2,3,0,268.5,-142837.92,0,0,3308.0945 -13907,17052,31044,-9,-9,-9,1,1,0,49,2,0,2,0,1,-9,2,1,0,0,4,8.1634312,7.937995,5.4911499,4,0,0,0,-9,0,-983.25928,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,30,9,15,1,0,-9,0,11.802803,11.802803,0,0,0,0,0,0,0,0,1,1,0,5.3529167,0,0,0,54.200001,57.490002,-9,-9,6,3,4,0,0,2,3,0,268.5,-142837.92,0,0,3308.0945 -13907,17053,31045,-9,31044,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,0,3,6.0689788,5.6409764,0,3,0,0,0,-9,0,-1041.4095,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,19,6,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,47.919998,-9,-9,3,3,4,0,0,2,3,0,364,76039.906,0,0,-1831.9688 -13908,17054,31046,31047,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,4,8.3780842,8.118269,6.5481734,1,0,-9,9,0,1,119.91228,0,0,0,54,3,2,1,3,3,2019,1,2,8,0,44,44,15,1,0,1,0,10.906519,10.906519,0,0,0,0,0,0,0,0,0,0,0,0,6.4765272,0,0,65.059998,41.580002,33.459999,40.349998,5,1,1,0,0,6,4,1,364.5,-59776.867,0,0,1670.3531 -13908,17054,31047,31046,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,2,7.5786529,7.517056,0,1,0,-9,9,0,-1,59.440327,0,0,0,55,3,4,1,3,3,2019,1,1,26,11,26,30,15,1,1,1,0,6.5663047,6.5663047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.459999,40.349998,65.059998,41.580002,1,1,1,0,1,6,4,1,364.5,-59776.867,0,0,1670.3531 -13909,17055,31048,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,2,0,5.2342901,5.3500595,3,0,0,0,-9,0,-844.88916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2156949,0,0,41.369999,20.450001,-9,-9,3,1,1,0,1,6,2,0,690,-7479.7051,0,0,1355.0685 -13910,17056,31049,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,5,8.1977358,8.3791208,0,3,0,0,0,-9,0,-998.37457,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,39,15,1,0,-9,0,13.263713,13.263713,0,0,0,0,0,0,0,0,0,0,0,2.2827702,0,0,0,43.889999,62.330002,-9,-9,6,1,1,0,0,12,4,1,1217,883331.69,0,0,1969.9888 -13911,17057,31050,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,0,4,8.1616545,8.1177006,0,3,0,0,0,-9,0,-879.43994,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,37,15,1,0,-9,0,11.780428,11.780428,0,0,0,0,0,0,0,0,1,1,0,2.1764698,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,6,4,1,352,544449.13,0,0,1700.6251 -13912,17058,31051,31052,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,5,0,7,-80.178452,0,0,0,67,1,3,3,2,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.240002,47.919998,57.330002,53.459999,7,1,1,0,0,5,5,1,1095.5,2321374.5,0,0,8073.1992 -13912,17058,31052,31051,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,9.3620176,9.018363,1,0,-9,5,0,-7,186.35109,0,0,0,74,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.3647189,9.3377676,0,3,57.330002,53.459999,63.240002,47.919998,7,1,1,0,0,5,5,1,1095.5,2321374.5,0,0,8073.1992 -13913,17059,31053,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,0,2,8.4853354,8.3726349,0,3,0,0,0,-9,0,-974.29791,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,60,60,15,1,1,-9,0,10.903909,10.903909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.48,51.950001,-9,-9,2,1,1,0,0,5,5,1,250,869771.69,0,0,3615.1775 -13914,17060,31054,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,0,4,8.4977398,8.5779819,0,3,0,0,0,-9,0,-991.46631,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,40,15,1,0,-9,0,15.235701,15.235701,0,0,0,0,0,0,0,0,0,0,0,2.9772625,0,0,0,40.98,59.349998,-9,-9,6,1,1,0,0,9,5,1,709,173622.39,0,0,2570.8748 -13915,17061,31055,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,4,0,6.3661075,6.2926826,3,0,0,0,-9,0,-1038.1334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3202448,0,0,58.75,51.279999,-9,-9,7,1,1,0,0,7,2,0,3201,100582.07,0,0,1526.7048 -13916,17062,31056,31057,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,0,5,8.2348166,8.2644911,0,1,0,-9,2,0,3,39.51815,0,0,1,32,1,3,1,2,2,2019,1,2,8,0,40,42,15,1,0,1,0,12.489494,12.489494,0,0,0,0,0,0,0,0,0,0,0,.450656,0,0,0,54.099998,59.110001,43.119999,58.549999,6,1,1,0,0,9,5,1,571.5,280627.84,0,0,3802.9653 -13916,17062,31057,31056,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,3,8.7377806,8.6686516,0,1,0,-9,2,0,-3,133.14983,0,0,0,35,1,5,1,-9,-9,2019,1,1,13,1,56,51,15,1,0,1,0,10.936125,10.936125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.119999,58.549999,54.099998,59.110001,6,1,1,0,0,9,5,1,571.5,280627.84,0,0,3802.9653 -13917,17063,31058,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-971.49518,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.98,57.220001,-9,-9,5,1,1,0,0,9,1,0,1629,0,0,0,0 -13918,17064,31059,31060,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,2,0,7.9627099,7.9219046,1,0,-9,8,0,4,132.10144,0,0,0,68,2,3,3,2,3,2019,4,1,14,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.600821,7.7952085,0,0,47.549999,33.799999,40.970001,44.580002,6,1,1,0,0,13,4,1,466,1440611.8,0,0,2906.8818 -13918,17064,31060,31059,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.3728771,6.9403186,1,0,-9,8,0,-4,-163.91426,0,0,0,72,1,2,3,2,2,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4961171,7.2560811,0,0,40.970001,44.580002,47.549999,33.799999,5,1,1,0,0,13,4,1,466,1440611.8,0,0,2906.8818 -13919,17065,31061,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,7,2,0,0,2,0,6.6254339,6.9869661,3,0,0,0,-9,0,-1054.4762,1,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,43,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8011212,0,0,0,52.360001,45.23,-9,-9,5,1,1,0,0,9,2,0,110,-50092.926,0,0,-364.9823 -13920,17066,31062,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,6.9372187,7.0527039,3,0,0,0,-9,0,-1029.6442,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.2665012,6.7423172,0,0,56.77,52.220001,-9,-9,6,1,1,0,0,5,2,1,328,407882.34,0,0,883.16559 -13921,17067,31063,31064,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.709373,7.3601756,1,0,-9,40,0,3,-91.889565,0,0,0,59,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3569541,0,0,61.279999,48.880001,62.490002,55.09,6,1,1,0,0,11,2,1,504,1230515.9,0,0,1670.3123 -13921,17067,31064,31063,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,40,0,-3,-48.75948,0,0,0,62,2,3,3,3,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,61.279999,48.880001,7,1,1,0,0,11,2,1,504,1230515.9,0,0,1670.3123 -13922,17068,31065,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,6.9967051,6.6562638,3,0,0,0,-9,0,-848.85327,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.0265217,0,0,0,0,1,1,0,1.6063368,6.8786631,0,0,50.130001,43.450001,-9,-9,5,1,1,0,0,10,2,1,937,101454.27,0,0,1353.5575 -13923,17069,31066,-9,31069,31067,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.7191,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,2,0,563.25,142786.2,0,0,2358.3196 -13923,17069,31067,31069,-9,-9,3,1,1,38,1,0,2,0,2,-9,8,3,1,1,3,0,6.2081523,5.9772482,2,0,-9,6,0,3,-11.425597,0,0,0,35,3,4,3,-9,-9,2019,4,1,15,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.9336014,0,17.095356,3,37.709999,46.25,42.389999,54.830002,4,1,1,0,0,7,2,0,563.25,142786.2,0,0,2358.3196 -13923,17069,31068,-9,31069,31067,2,1,0,16,2,0,2,0,2,-9,11,2,0,0,4,5.4596519,6.9102373,6.6873827,2,0,0,0,-9,0,-1063.5675,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9306321,0,3.4980881,3,48.610001,56.07,-9,-9,6,1,1,0,0,7,2,0,563.25,142786.2,0,0,2358.3196 -13923,17069,31069,31067,-9,-9,1,1,0,35,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-3,43.815628,0,0,1,38,2,3,3,2,-9,2019,4,3,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.389999,54.830002,37.709999,46.25,6,1,1,0,0,7,2,0,563.25,142786.2,0,0,2358.3196 -13924,17070,31070,31071,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,7.7270617,7.9210205,0,1,0,-9,36,0,-2,-56.819187,0,0,0,58,2,2,1,1,3,2019,1,2,10,0,32,38,15,1,0,1,0,9.7774544,9.7774544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,61.279999,35.650002,6,1,1,0,0,2,4,1,624.5,107437.78,0,0,3284.885 -13924,17070,31071,31070,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,2,8.0597086,8.3151588,0,1,0,-9,37,0,2,112.86117,0,0,0,56,2,4,1,3,3,2019,1,1,7,0,38,37,15,1,0,1,0,11.347882,11.347882,0,0,0,0,0,0,0,2,0,0,0,0,0,2.8184547,3,61.279999,35.650002,51.830002,57.200001,6,1,1,0,0,2,4,1,624.5,107437.78,0,0,3284.885 -13925,17071,31072,31073,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,4.946784,4.5586452,1,0,-9,39,0,9,9.0558453,0,0,0,63,1,4,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5933509,0,0,61.16,53.18,47.549999,57.73,6,1,1,0,0,13,3,0,531,1328651.4,0,0,2113.6006 -13925,17071,31073,31072,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,7.8730931,7.9670091,6.0113168,1,0,-9,39,0,0,-106.54757,0,0,0,72,2,5,3,2,3,2019,2,1,9,0,30,25,15,1,0,4,0,10.025665,10.025665,0,0,0,0,0,0,0,0,1,1,0,0,5.902236,0,0,47.549999,57.73,61.16,53.18,6,1,1,0,0,13,3,0,531,1328651.4,0,0,2113.6006 -13925,17072,31074,-9,31073,31072,3,1,0,33,2,0,0,0,1,-9,2,1,0,0,3,8.244132,8.233057,0,3,0,0,0,-9,0,-962.5882,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,19,7,0,40,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.049999,51.540001,-9,-9,3,1,1,0,0,13,4,0,651,207294.08,0,0,1826.3965 -13926,17073,31075,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1050.9973,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.549999,28.620001,-9,-9,6,1,1,0,0,11,1,0,908,-161721.42,0,0,225.0024 -13927,17074,31076,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1018.2957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.380001,32.23,-9,-9,4,1,1,0,0,11,1,0,1643,-21175.332,0,0,312.88895 -13928,17075,31077,31079,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,3,8.1867189,7.7862253,0,2,0,-9,3,0,2,-113.11038,0,0,0,46,2,2,1,2,2,2019,1,1,11,0,42,84,15,1,0,1,0,9.0089979,9.0089979,0,0,0,0,0,0,0,7,1,1,0,0,0,8.1188822,3,43.919998,47.650002,33.23,52.669998,4,1,1,0,0,11,4,0,668,19559.871,0,0,2343.925 -13928,17075,31078,-9,31079,31077,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,0,668,19559.871,0,0,2343.925 -13928,17075,31079,31077,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,2,8.0273275,7.8790874,0,2,0,-9,3,0,-2,36.748947,0,0,0,48,2,3,1,3,3,2019,1,2,15,4,37,37,15,1,1,1,0,8.213686,8.213686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.23,52.669998,43.919998,47.650002,4,1,1,0,0,11,4,0,668,19559.871,0,0,2343.925 -13929,17076,31080,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,0,2,7.8200622,7.9239469,0,3,0,0,0,-9,0,-972.42914,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,42,0,15,1,0,-9,0,8.8847017,8.8847017,0,0,0,0,0,0,0,0,0,0,0,.167557,0,0,0,49.849998,50.470001,-9,-9,5,1,1,0,0,8,4,1,552,-183000.92,0,0,1108.1595 -13929,17077,31081,31082,-9,-9,2,1,1,36,1,0,0,0,1,-9,2,1,0,0,4,8.5065918,8.7331505,0,1,0,-9,1,-9,3,-27.626762,-9,0,0,33,1,4,1,-9,-9,2019,1,3,12,0,42,0,15,1,0,1,0,14.004294,14.004294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.209999,52.57,54.200001,57.490002,6,1,1,0,0,8,5,1,619.5,-36612.773,0,0,3691.5291 -13929,17077,31082,31081,-9,-9,3,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.6978903,8.7129364,0,1,0,-9,1,-9,-3,-.42815778,-9,0,1,36,1,4,1,-9,-9,2019,1,2,6,0,39,0,15,1,0,1,0,14.743384,14.743384,0,0,0,0,0,0,0,0,0,0,0,.75597793,0,0,0,54.200001,57.490002,47.209999,52.57,7,1,1,0,0,8,5,1,619.5,-36612.773,0,0,3691.5291 -13930,17078,31083,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,0,2,8.052145,8.2311087,2.7372541,3,0,0,0,-9,0,-986.97864,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,42,37,15,1,1,-9,0,7.4422965,7.4422965,0,0,0,0,0,0,0,7,0,0,0,2.5451682,0,9.5560341,3,22.889999,60.290001,-9,-9,5,1,1,0,0,2,4,1,711,202757.52,0,0,1859.2849 -13931,17079,31084,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,0,3,8.1044159,8.0284986,0,3,0,0,0,-9,0,-1009.2815,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,37,38,15,1,0,-9,0,8.9225178,8.9225178,0,0,0,0,0,0,0,0,1,1,0,4.1632409,0,0,0,38.540001,49.610001,-9,-9,4,1,1,0,1,7,4,1,564,51533.605,0,0,1001.8573 -13932,17080,31085,-9,31086,-9,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1053.5081,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,4,1,1,1338.3334,-8505.5049,0,0,1366.7542 -13932,17080,31086,-9,-9,-9,1,1,0,41,3,0,3,0,2,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-1051.842,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.029999,45.299999,-9,-9,5,2,3,0,0,4,1,1,1338.3334,-8505.5049,0,0,1366.7542 -13932,17080,31087,-9,31086,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.4108,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,1,1,1338.3334,-8505.5049,0,0,1366.7542 -13933,17081,31088,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-920.79675,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,4,0,0,15,4,1,-9,0,0,0,1,0,0,19.652281,0,0,0,0,1,1,0,0,0,0,0,46.700001,20.01,-9,-9,3,1,1,0,0,2,1,0,281,127239.54,0,0,968.54413 -13934,17082,31089,31090,-9,-9,2,1,0,34,1,1,1,0,2,-9,5,1,0,0,4,7.7900009,8.1325197,0,2,0,-9,6,0,-5,78.567024,-9,0,1,39,2,3,1,-9,-9,2019,1,1,8,0,36,0,15,1,0,1,0,8.080719,8.080719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,44.759998,35.549999,60.77,7,1,1,0,0,5,4,1,1392.3334,688467.69,0,0,2839.8977 -13934,17082,31090,31089,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,0,3,8.5347452,8.2929401,0,2,0,-9,6,0,5,-108.00134,0,0,0,34,2,4,1,3,3,2019,1,2,15,4,37,37,15,1,1,1,0,13.1747,13.1747,0,0,0,0,0,0,0,0,1,1,0,.94265366,0,0,0,35.549999,60.77,50.34,44.759998,6,1,1,0,0,5,4,1,1392.3334,688467.69,0,0,2839.8977 -13934,17082,31091,-9,31089,31090,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-911.31537,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,4,1,1392.3334,688467.69,0,0,2839.8977 -13935,17083,31092,31093,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,3,0,6.7175565,6.8424373,1,0,-9,6,0,-6,-56.020153,0,0,0,88,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5144898,6.7378645,0,0,54.48,42.799999,51.84,42.209999,6,1,1,0,0,4,3,1,457,479242.69,0,0,2114.6313 -13935,17083,31093,31092,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,0,3,0,7.1534057,7.4088774,1,0,-9,6,0,6,-99.856064,0,0,0,82,2,3,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6414022,8.0067968,0,0,51.84,42.209999,54.48,42.799999,6,1,1,0,0,4,3,1,457,479242.69,0,0,2114.6313 -13936,17084,31094,31095,-9,-9,1,1,1,49,1,0,4,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,21,0,8,0,0,0,0,41,3,4,3,-9,-9,2019,2,2,9,1,0,24,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50,55,5,2,3,0,1,8,1,0,962.25,0,0,0,1598.2594 -13936,17084,31095,31094,-9,-9,2,1,0,41,1,0,4,0,3,-9,3,3,0,0,4,0,0,0,2,0,-9,21,0,-8,0,0,0,1,49,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,54,5,2,3,1,1,8,1,0,962.25,0,0,0,1598.2594 -13936,17084,31096,-9,31095,31094,6,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.56885,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,1,0,962.25,0,0,0,1598.2594 -13936,17084,31097,-9,31095,31094,5,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.52893,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,962.25,0,0,0,1598.2594 -13937,17085,31098,31099,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,0,4,0,8.4859228,8.4088745,1,0,-9,22,0,2,9.3121662,0,0,0,65,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2386065,7.7739887,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,9,4,1,415.5,2995301.8,0,0,3781.9307 -13937,17085,31099,31098,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,8.2417183,8.0092602,1,0,-9,23,0,-2,-110.54393,0,0,0,67,1,4,3,-9,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6906314,7.8019848,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,9,4,1,415.5,2995301.8,0,0,3781.9307 -13938,17086,31100,31102,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,0,4,8.267725,8.2358227,0,2,0,-9,8,0,0,-37.836937,0,0,0,37,1,5,1,3,3,2019,1,2,7,0,40,40,15,1,0,1,0,12.014199,12.014199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,49.360001,58.529999,6,1,1,0,0,2,4,1,714.75,14977.602,0,0,2806.957 -13938,17086,31101,-9,31102,31100,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-903.92212,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,4,1,714.75,14977.602,0,0,2806.957 -13938,17086,31102,31100,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,0,5,8.2771759,8.2894402,0,2,0,-9,8,0,0,-35.146233,0,0,1,37,2,4,1,-9,-9,2019,1,1,11,1,30,27,15,1,0,1,0,13.009223,13.009223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.360001,58.529999,49.349998,59.639999,6,1,1,0,0,2,4,1,714.75,14977.602,0,0,2806.957 -13938,17086,31103,-9,31102,31100,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.7755,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,4,1,714.75,14977.602,0,0,2806.957 -13939,17087,31104,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.6891832,8.1983318,0,3,0,0,0,-9,0,-939.28455,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,37,37,15,1,0,-9,0,18.694901,18.694901,0,0,0,0,0,0,0,0,0,0,0,2.0662625,0,0,0,51.830002,57.200001,-9,-9,4,1,1,0,0,12,5,1,490,155239.17,0,0,1563.2212 -13940,17088,31105,-9,-9,31106,1,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-886.92035,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.02,60.939999,-9,-9,7,1,1,0,0,4,1,0,595,158874.22,0,0,0 -13940,17089,31106,-9,-9,-9,2,1,1,67,3,0,1,0,2,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1080.4929,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,1,0,0,3.2066729,0,0,0,0,1,1,0,0,0,0,0,50.490002,42.959999,-9,-9,7,1,1,0,0,4,1,0,926,4791.793,0,0,2039.0835 -13941,17090,31107,31108,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-8,0,0,0,0,81,3,2,3,3,3,2019,4,1,14,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.9332447,1,42.990002,46.540001,63.240002,23.99,5,1,1,0,0,11,1,1,702,259933.28,0,0,1473.4883 -13941,17090,31108,31107,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,8,0,0,0,0,73,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,2.8220437,17.363998,0,0,0,45.560371,0,1,1,0,0,0,0,0,63.240002,23.99,42.990002,46.540001,6,1,1,0,0,11,1,1,702,259933.28,0,0,1473.4883 -13941,17091,31109,-9,31107,31108,3,1,1,51,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-997.82294,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.779999,56.439999,-9,-9,6,1,1,0,0,11,1,1,272,0,0,0,94.392296 -13942,17092,31110,31111,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,1,1,0,6.7184987,6.9388595,1,0,-9,39,0,-2,-43.157108,0,0,0,61,2,4,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1311364,6.981184,0,0,59.310001,20.68,46.5,58.259998,6,1,1,0,0,2,5,1,659.5,1415922.3,0,0,4151.4131 -13942,17092,31111,31110,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.2986135,8.7999296,7.6733871,1,0,-9,39,0,2,2.0419195,0,0,0,59,2,1,3,3,2,2019,2,2,9,0,21,21,15,1,0,4,0,19.119658,19.119658,0,0,0,0,0,0,0,0,1,1,0,0,8.2313623,0,0,46.5,58.259998,59.310001,20.68,6,1,1,0,0,2,5,1,659.5,1415922.3,0,0,4151.4131 -13943,17093,31112,31113,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,0,2,0,7.8974638,8.3014727,1,0,-9,53,0,1,74.544579,0,0,0,80,2,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.3892879,8.0829811,0,0,59.32,25.719999,61.689999,15.28,6,1,1,0,0,10,3,1,503,1149690.5,0,0,2365.7725 -13943,17093,31113,31112,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,0,2,0,6.4358993,6.4041672,1,0,-9,53,0,-1,13.757947,0,0,0,81,1,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.77491,6.6579614,0,0,61.689999,15.28,59.32,25.719999,6,1,1,0,0,10,3,1,503,1149690.5,0,0,2365.7725 -13944,17094,31114,31115,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,0,5,9.3530006,8.8291054,0,1,0,-9,9,0,1,89.224258,0,0,0,35,1,5,1,2,2,2019,1,2,7,0,45,50,15,1,0,1,0,24.477776,24.477776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,54.099998,59.110001,6,1,1,0,0,1,5,0,958.5,677803.88,0,0,5547.4609 -13944,17094,31115,31114,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,5,8.763279,9.0391235,0,1,0,-9,9,0,-1,66.95929,0,0,1,36,1,5,1,2,2,2019,1,1,6,0,39,38,15,1,0,1,0,18.028776,18.028776,0,0,0,0,0,0,0,0,0,0,0,1.2037432,0,0,0,54.099998,59.110001,54.099998,59.110001,6,1,1,0,0,1,5,0,958.5,677803.88,0,0,5547.4609 -13945,17095,31116,-9,31117,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1016.2405,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,8,3,0,797.66669,260689.59,0,0,1488.3282 -13945,17095,31117,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,0,4,7.9353595,7.7960172,0,4,0,0,0,-9,0,-962.69531,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,49,31,15,1,0,-9,0,5.6615376,5.6615376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,4,2,0,0,8,3,0,797.66669,260689.59,0,0,1488.3282 -13945,17095,31118,-9,31117,-9,2,1,0,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1025.2184,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,3,0,797.66669,260689.59,0,0,1488.3282 -13946,17096,31119,31120,-9,-9,2,1,0,88,1,0,0,0,2,-9,4,3,0,1,3,0,0,0,1,0,-9,1,-9,-3,0,-9,0,0,91,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,16.78577,0,0,0,120,1,1,0,4.1265478,0,116.26305,1,53,44,56,44,6,1,1,0,0,11,1,1,574.5,275014.97,0,0,1888.9622 -13946,17096,31120,31119,-9,-9,1,1,1,91,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,1,-9,3,0,-9,0,0,88,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0844398,0,0,0,56,44,53,44,6,1,1,0,0,11,1,1,574.5,275014.97,0,0,1888.9622 -13947,17097,31121,31122,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.3789625,7.5519462,1,0,-9,39,0,-1,-58.821194,0,0,0,67,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6185961,7.2292714,0,0,57.16,56.150002,54.200001,57.490002,2,1,1,0,0,1,3,1,907,765253.25,0,0,2395.6797 -13947,17097,31122,31121,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.311511,7.4462299,1,0,-9,39,0,1,40.909946,0,0,0,66,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.993053,7.4180117,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,1,3,1,907,765253.25,0,0,2395.6797 -13948,17098,31123,31124,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.9289856,8.7159767,0,2,0,-9,10,0,3,-134.84763,0,0,0,41,2,4,1,-9,-9,2019,1,1,9,0,37,38,15,1,0,1,0,19.072962,19.072962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.689999,56.27,46.849998,47.290001,6,1,1,0,0,10,4,1,1267,1497083,0,0,4280.9941 -13948,17098,31124,31123,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.8034849,7.7258801,0,2,0,-9,10,0,-3,24.055895,0,0,1,44,2,4,1,2,2,2019,1,2,12,1,30,22,15,1,0,1,0,9.8066673,9.8066673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.849998,47.290001,42.689999,56.27,4,1,1,0,0,10,4,1,1267,1497083,0,0,4280.9941 -13948,17098,31125,-9,31124,31123,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.03406,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1267,1497083,0,0,4280.9941 -13948,17098,31126,-9,31124,31123,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.1495,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1267,1497083,0,0,4280.9941 -13949,17099,31127,31128,-9,-9,2,1,1,70,1,0,0,0,2,-9,1,1,0,0,3,8.1248503,8.2063951,6.8594441,1,0,-9,11,0,2,-117.2299,0,0,0,68,3,2,3,-9,-9,2019,2,1,10,1,24,42,15,1,0,4,0,15.52396,15.52396,0,0,0,0,0,0,0,0,1,1,0,6.8740096,7.0708957,0,1,52,48,56.009998,30.139999,5,1,1,0,0,4,4,1,857,1829878.3,0,0,3340.6328 -13949,17099,31128,31127,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,5.8621817,5.0409751,1,0,-9,51,0,-2,-46.482944,0,0,0,70,2,3,1,3,3,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,1,0,12.42326,0,0,0,0,0,1,1,0,5.5254922,0,0,0,56.009998,30.139999,52,48,6,1,1,0,0,4,4,1,857,1829878.3,0,0,3340.6328 -13950,17100,31129,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,0,2,0,7.4124794,7.549685,3,0,0,0,-9,0,-1124.543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5428014,7.5866842,5.6453371,3,54.419998,33.630001,-9,-9,5,1,1,0,0,13,3,1,863,385302.53,0,0,1853.3931 -13951,17101,31130,-9,31133,31132,6,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.81439,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,5,4,1,333.75,32981.039,0,0,3365.0894 -13951,17101,31131,-9,31133,31132,7,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.33948,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,5,4,1,333.75,32981.039,0,0,3365.0894 -13951,17101,31132,31133,31135,31134,2,1,1,35,1,0,2,0,2,-9,2,1,0,0,4,8.5779562,8.328804,0,2,0,-9,6,0,0,-146.58281,0,0,0,35,2,4,1,2,2,2019,1,1,10,1,40,37,15,1,0,1,0,14.141232,14.141232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,46.560001,57.02,5,2,3,0,0,5,4,1,333.75,32981.039,0,0,3365.0894 -13951,17101,31133,31132,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,7.6119843,7.9448924,0,2,0,-9,11,0,0,91.580322,0,0,1,35,2,4,1,3,3,2019,1,2,13,3,45,25,15,1,0,1,0,6.959682,6.959682,0,0,0,0,0,0,0,2,1,1,0,3.4201021,0,.49808204,3,46.560001,57.02,51,56,5,2,3,0,0,5,4,1,333.75,32981.039,0,0,3365.0894 -13951,17102,31134,31135,31136,-9,3,1,1,60,1,0,2,0,2,-9,2,1,0,0,4,8.4071779,7.9443984,0,2,0,-9,6,0,1,87.38871,0,0,0,59,2,4,3,3,-9,2019,2,4,8,0,37,38,15,1,0,3,0,14.490111,14.490111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55,53,45.880001,51.75,6,2,3,0,0,5,3,1,800.5,1289480.3,0,0,3864.8687 -13951,17102,31135,31134,-9,-9,4,1,0,59,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,42,0,-1,6.5681448,0,0,0,60,2,4,1,3,3,2019,3,3,20,7,0,38,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.5234091,0,29.914024,3,45.880001,51.75,55,53,5,2,3,1,0,5,3,1,800.5,1289480.3,0,0,3864.8687 -13951,17103,31136,-9,-9,-9,5,1,0,79,3,0,2,0,3,-9,4,3,0,0,3,0,5.4828119,5.6146483,4,0,0,0,-9,0,-989.7984,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4745474,5.6677413,0,0,53,45,-9,-9,6,2,3,0,0,5,2,1,2008,126120.2,0,0,868.94238 -13952,17104,31137,31138,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,8.2926397,8.6770859,1,0,-9,48,0,-3,12.467215,0,0,0,69,2,5,3,-9,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.87751818,8.4914837,0,3,50.220001,52.720001,62.389999,56.709999,6,1,1,0,0,7,5,1,345,199527.22,0,0,5343.5542 -13952,17104,31138,31137,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,5,0,7.6883125,7.6055632,1,0,-9,48,0,3,-40.454628,0,0,0,66,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5446801,7.5011668,0,0,62.389999,56.709999,50.220001,52.720001,7,1,1,0,0,7,5,1,345,199527.22,0,0,5343.5542 -13953,17105,31139,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,1,1,0,0,2,8.1246777,8.1110611,0,3,0,0,0,-9,0,-968.24768,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,10,24,20,15,1,1,-9,0,15.013027,15.013027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.01,54.209999,-9,-9,1,1,1,0,1,8,4,1,471,-2486.0913,0,0,204.24364 -13954,17106,31140,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,1,1,0,0,4,8.3076801,9.1091938,8.8418055,3,0,0,0,-9,0,-1096.4678,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,6,0,15,1,0,-9,0,91.133614,91.133614,0,0,0,0,0,0,0,0,0,0,0,1.7127137,8.8845434,0,0,54.450001,56.220001,-9,-9,6,4,2,0,0,2,5,1,1439,30691.908,0,0,5421.8315 -13955,17107,31141,31142,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.3053951,7.8153481,0,1,0,-9,30,0,-2,-59.104416,0,0,0,52,1,3,1,2,2,2019,1,1,12,1,33,32,15,1,0,1,0,10.696606,10.696606,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.7795763,3,44.66,57.830002,20.4,61.16,6,1,1,0,0,2,5,1,429,852670,0,0,4396.5469 -13955,17107,31142,31141,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,9.0792665,8.8514662,0,1,0,-9,30,0,2,-26.092344,0,0,0,50,2,4,1,3,3,2019,1,2,19,6,43,47,15,1,1,1,0,21.817204,21.817204,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.243162,3,20.4,61.16,44.66,57.830002,2,1,1,0,0,2,5,1,429,852670,0,0,4396.5469 -13955,17108,31143,-9,31141,31142,3,1,0,20,2,0,0,0,2,1,2,1,0,0,2,5.679378,5.7502022,0,3,0,0,0,-9,0,-916.23486,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,3,37,0,15,1,0,-9,1,.84504783,.84504783,0,0,0,0,0,0,0,0,1,1,0,4.067153,0,0,0,19.09,57.830002,-9,-9,5,1,1,0,0,2,2,1,279,63533.121,0,0,-812.20483 -13956,17109,31144,31145,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,4,8.7450562,8.9527178,0,1,0,-9,8,0,1,-38.352482,0,0,0,61,1,5,1,2,2,2019,1,1,11,1,47,42,15,1,0,1,0,20.943621,20.943621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.610001,59.060001,59.330002,51.290001,6,1,1,0,0,11,5,0,308.5,1757442,0,0,6776.668 -13956,17109,31145,31144,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,0,5,9.1330948,8.9678822,0,1,0,-9,8,0,-1,-108.47265,0,0,0,62,1,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,26.805334,26.805334,0,0,0,0,0,0,0,7,0,0,0,1.6521964,0,9.9377689,3,59.330002,51.290001,44.610001,59.060001,7,1,1,0,0,11,5,0,308.5,1757442,0,0,6776.668 -13957,17110,31146,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,2,1,0,0,3,8.1625366,8.0976133,0,3,0,0,0,-9,0,-994.07568,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,30,15,1,0,-9,0,16.713181,16.713181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.830002,35.93,-9,-9,6,2,3,0,0,8,4,0,326,-856.3634,0,0,1659.2549 -13958,17111,31147,31148,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,8.5310078,8.886631,7.0552654,1,0,-9,3,0,4,-32.126785,0,0,0,50,2,4,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,18.509205,18.509205,0,0,0,0,0,0,0,0,0,0,0,7.2759919,6.7589059,0,0,57.16,56.150002,56.330002,51.02,6,1,1,0,0,9,5,1,985,1789518.3,0,0,4576.0869 -13958,17111,31148,31147,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.7927275,8.6611719,0,1,0,-9,3,0,-4,-27.796585,0,0,0,54,1,4,1,-9,-9,2019,1,1,8,0,29,29,15,1,0,1,0,20.990345,20.990345,0,0,0,0,0,0,0,0,0,0,0,3.997035,0,0,0,56.330002,51.02,57.16,56.150002,6,1,1,0,0,9,5,1,985,1789518.3,0,0,4576.0869 -13959,17112,31149,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,1,1,0,5.4998417,5.4180665,3,0,0,0,-9,0,-873.0658,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,5.5520244,0,0,46.970001,33.080002,-9,-9,6,1,1,0,0,12,2,0,472,-23825.076,0,0,1924.257 -13960,17113,31150,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,2,1,0,0,4,7.931601,7.6640024,0,3,0,0,0,-9,0,-964.27582,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,36,15,1,0,-9,0,9.141675,9.141675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,13,3,1,820,-37392.301,0,0,861.72504 -13961,17114,31151,31152,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,3,7.8394151,7.9285784,0,1,0,-9,7,0,-3,-31.367271,0,1,1,32,1,4,1,1,1,2019,1,2,11,0,40,40,15,1,0,1,0,7.2297263,7.2297263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.580002,47.970001,48.869999,58.549999,6,1,1,0,0,6,5,0,864.5,322350.81,0,0,3931.9375 -13961,17114,31152,31151,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,0,4,9.00317,9.3769112,0,1,0,-9,7,0,3,-63.770687,0,0,0,29,1,3,1,-9,-9,2019,1,1,10,0,43,43,15,1,0,1,0,29.856081,29.856081,0,0,0,0,0,0,0,0,0,0,0,4.1241002,0,0,0,48.869999,58.549999,45.580002,47.970001,6,1,1,0,0,6,5,0,864.5,322350.81,0,0,3931.9375 -13962,17115,31153,-9,31155,31157,8,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1027.5872,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,514,228586.63,0,0,3373.0195 -13962,17115,31154,-9,31155,31157,7,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-1094.3336,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,4,4,1,514,228586.63,0,0,3373.0195 -13962,17115,31155,31157,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,0,5,8.6002846,8.4755402,0,2,0,-9,1,-9,-2,-24.090223,-9,0,0,48,2,3,1,3,2,2019,1,1,12,2,38,0,15,1,0,1,0,19.532583,19.532583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.599998,47.369999,39.099998,57.790001,6,1,1,0,0,4,4,1,514,228586.63,0,0,3373.0195 -13962,17115,31156,-9,31155,31157,6,1,0,16,2,0,3,0,3,-9,3,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1024.1553,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,1,1,1,0,4,4,1,514,228586.63,0,0,3373.0195 -13962,17115,31157,31155,-9,-9,1,1,1,48,1,0,3,0,2,-9,1,1,0,0,3,7.6777225,7.8035054,0,2,0,-9,1,-9,2,132.3985,-9,0,0,46,1,5,1,3,3,2019,1,2,9,1,55,0,15,1,0,1,0,4.9188976,4.9188976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.099998,57.790001,47.599998,47.369999,7,1,1,0,0,4,4,1,514,228586.63,0,0,3373.0195 -13962,17116,31158,-9,31155,31157,5,1,1,20,2,0,3,0,2,-9,2,1,0,0,5,7.6832633,7.5122156,0,3,0,-9,0,-9,0,-1023.5034,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,5,42,0,15,1,1,-9,1,6.4771757,6.4771757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.990002,53.799999,-9,-9,3,1,1,0,0,4,3,1,2375,-10323.001,0,0,506.38055 -13963,17117,31159,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,5,8.7188721,8.7172718,0,3,0,0,0,-9,0,-1027.644,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,34,40,15,1,0,-9,0,20.387527,20.387527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,58.560001,-9,-9,6,1,1,0,0,7,5,1,413,95938.563,0,0,3005.8657 -13964,17118,31160,31161,-9,-9,2,1,0,50,1,0,0,0,2,-9,4,3,0,0,4,0,7.8262987,7.3630652,1,0,-9,5,0,-6,121.83015,0,0,0,56,1,4,3,-9,-9,2019,4,1,10,1,0,36,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.2999704,7.7977371,15.223708,3,55.189999,54.259998,44.919998,57.599998,7,3,4,0,0,7,4,1,288,-10836.898,0,0,2747.1067 -13964,17118,31161,31160,-9,-9,1,1,1,56,1,0,0,0,1,-9,4,3,0,0,4,0,7.9626231,8.2548552,1,0,-9,5,0,6,-119.14433,0,0,0,50,2,4,3,2,3,2019,4,2,12,2,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1507673,0,0,44.919998,57.599998,55.189999,54.259998,6,1,1,0,0,7,4,1,288,-10836.898,0,0,2747.1067 -13964,17119,31162,-9,31160,31161,3,1,0,27,2,0,0,0,2,-9,6,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1097.0635,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,4,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,7,1,1,0,0,7,1,1,244,-201880.64,0,0,1642.241 -13965,17120,31163,-9,31164,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-859.10358,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,9,2,1,550,62540.305,0,0,673.02661 -13965,17120,31164,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,1,1,0,0,3,6.659184,7.1607842,6.4462399,4,0,0,0,-9,0,-887.50067,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,12,0,16,16,15,1,0,-9,0,6.0460119,6.0460119,0,0,0,0,0,0,0,0,1,1,0,6.4062858,0,0,0,49.52,56.950001,-9,-9,6,1,1,0,0,9,2,1,550,62540.305,0,0,673.02661 -13966,17121,31165,-9,31166,31167,1,1,1,25,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1004.7808,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,5,1,1,355,0,0,0,341.14368 -13966,17122,31166,31167,-9,-9,3,1,0,60,1,0,0,0,3,-9,2,1,0,0,2,6.8971558,7.4861784,0,1,0,-9,41,0,-3,-1.5735438,0,0,0,63,2,3,3,2,3,2019,2,2,23,11,16,8,15,1,1,4,0,7.8243003,7.8243003,0,0,0,0,0,0,0,5.48,1,1,0,1.9117289,0,0,3,33.650002,51.049999,51,48,3,1,1,0,0,5,2,1,704.5,465947.75,0,0,876.1731 -13966,17122,31167,31166,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,3,36.908386,-9,0,0,60,3,2,1,-9,-9,2019,3,3,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,33.650002,51.049999,5,1,1,0,0,5,2,1,704.5,465947.75,0,0,876.1731 -13966,17123,31168,-9,31166,31167,4,1,0,28,2,0,0,0,2,-9,2,1,0,0,4,8.2925072,8.1188211,0,3,0,0,0,-9,0,-904.50763,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,0,15,1,0,-9,1,9.0008497,9.0008497,0,0,0,0,0,0,0,0,1,1,0,4.1871481,0,0,0,47,57,-9,-9,5,1,1,0,0,5,4,1,295,20463.094,0,0,2263.814 -13967,17124,31169,31170,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,0,4,8.2850723,8.2633781,0,2,0,-9,14,0,2,-45.98386,0,0,0,37,1,4,1,-9,-9,2019,1,1,9,0,58,60,15,1,0,1,0,7.3016424,7.3016424,0,0,0,0,0,0,0,0,1,1,0,6.3813705,0,0,0,59.150002,49.669998,59.529999,56.439999,6,1,1,0,0,1,4,1,1273.5,28210.242,0,0,4228.6582 -13967,17124,31170,31169,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.373353,8.7777691,0,2,0,-9,14,0,-2,-76.344551,0,0,1,39,2,4,1,-9,-9,2019,1,2,5,0,45,45,15,1,0,1,0,13.096291,13.096291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,59.150002,49.669998,6,1,1,0,0,1,4,1,1273.5,28210.242,0,0,4228.6582 -13968,17125,31171,-9,-9,-9,1,1,0,48,2,0,2,0,2,-9,1,1,0,0,3,7.3478503,7.3960238,0,4,0,0,0,-9,0,-993.26123,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,35,12,15,15,15,1,1,-9,0,11.724874,11.724874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.720001,39.200001,-9,-9,3,3,4,0,1,8,2,0,1896,-225423.31,0,0,591.35828 -13968,17126,31172,-9,31171,-9,2,1,1,24,2,0,2,0,2,-9,1,1,0,0,5,6.3959031,6.8050432,0,3,0,0,0,-9,0,-1055.5529,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,40,30,15,1,0,-9,1,2.0665886,2.0665886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.290001,42.139999,-9,-9,7,3,4,0,0,8,2,0,365,97743.961,0,0,186.9581 -13968,17127,31173,-9,31171,-9,3,1,1,20,2,0,2,0,2,1,11,3,0,0,3,7.3768039,7.5591421,0,3,0,0,0,-9,0,-1146.9801,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,22,11,40,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.080002,38.91,-9,-9,4,3,4,0,0,8,3,0,180,79297.789,0,0,100.65618 -13969,17128,31174,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,0,1,0,6.9083476,7.3067555,3,0,0,0,-9,0,-882.96771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,6.8304558,3.8830874,3,36.720001,22.639999,-9,-9,4,1,1,0,0,12,2,0,4729,199050.02,0,0,892.59705 -13969,17129,31175,-9,-9,-9,2,1,1,78,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-956.88092,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,29.350357,0,0,0,0,1,1,0,0,0,0,0,53.240002,26.040001,-9,-9,6,1,1,0,0,12,1,0,579,50288.039,0,0,1066.955 -13969,17130,31176,-9,-9,31175,3,1,0,56,2,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1045.6332,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,13,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.648403,3,49.630001,54.220001,-9,-9,2,1,1,0,0,12,1,0,110,145716.72,0,0,540.13263 -13970,17131,31177,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,0,1,0,7.6063051,7.4473686,3,0,0,0,-9,0,-964.22101,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,.57974446,0,5.3950529,0,0,1,1,0,5.8955903,7.6515708,0,0,45.32,16.49,-9,-9,3,1,1,0,0,2,3,1,318,594278,0,0,384.84052 -13971,17132,31178,-9,31180,31181,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.6027,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,5,1,499.75,1296458.4,0,0,6448.5059 -13971,17132,31179,-9,31180,31181,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.0705,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,5,1,499.75,1296458.4,0,0,6448.5059 -13971,17132,31180,31181,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,5,8.1898327,8.3218231,0,2,0,-9,17,0,-3,61.434467,0,0,1,40,1,3,1,1,1,2019,1,2,12,1,21,21,15,1,0,1,0,26.425108,26.425108,0,0,0,0,0,0,0,0,0,0,0,1.4097054,0,0,0,46.34,61.240002,49.630001,54.220001,6,1,1,0,0,10,5,1,499.75,1296458.4,0,0,6448.5059 -13971,17132,31181,31180,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,3,9.6963444,9.4874125,0,2,0,-9,18,0,3,-272.77612,0,0,0,37,1,5,1,1,3,2019,1,1,4,0,58,56,15,1,0,1,0,32.255592,32.255592,0,0,0,0,0,0,0,0,0,0,0,3.7077692,0,0,0,49.630001,54.220001,46.34,61.240002,5,1,1,0,0,10,5,1,499.75,1296458.4,0,0,6448.5059 -13972,17133,31182,31183,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,8.0589371,7.7139125,0,1,0,-9,7,0,-4,-16.402494,0,0,0,55,2,2,1,3,3,2019,1,2,11,0,47,46,15,1,0,1,0,5.9220862,5.9220862,0,0,0,0,0,0,0,7,1,1,0,0,0,10.069724,1,54.369999,38.740002,49.02,20.92,4,1,1,0,0,4,4,1,431,790725.94,0,0,2941.2212 -13972,17133,31183,31182,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,1,2,7.5910382,7.7453566,0,1,0,-9,7,0,4,-11.539504,0,0,0,51,2,2,1,-9,-9,2019,1,1,11,2,30,30,15,1,0,1,0,11.03511,11.03511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,20.92,54.369999,38.740002,6,1,1,0,0,4,4,1,431,790725.94,0,0,2941.2212 -13972,17134,31184,-9,31183,31182,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.0491962,6.7002549,0,3,0,0,0,-9,0,-1024.9504,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,0,15,1,0,-9,1,4.2101741,4.2101741,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,4,2,1,317,91672.898,0,0,1511.0341 -13973,17135,31185,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,0,4,8.480794,8.5419674,0,3,0,0,0,-9,0,-912.51044,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,50,45,15,1,0,-9,0,12.237,12.237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,7,5,1,737,-242185.28,0,0,2402.1963 -13973,17136,31186,-9,31185,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,5,7.6761804,7.7918353,0,3,0,0,0,-9,0,-905.39813,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,37,45,15,1,0,-9,1,7.6175671,7.6175671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,7,3,1,330,-86239.891,0,0,1495.8881 -13974,17137,31187,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1178.4452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.3599634,3,43.48,43.810001,-9,-9,6,1,1,0,0,13,1,0,307,54537.16,0,0,2274.7375 -13975,17138,31188,31189,-9,-9,2,1,1,90,1,0,0,0,1,-9,4,3,0,1,3,0,8.4751444,8.6470213,1,0,-9,17,0,22,32.565338,0,0,0,68,1,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,33.372086,0,0,0,0,0,1,1,0,6.4592323,8.4432364,0,0,62.580002,23.84,57.060001,57.759998,6,1,1,0,0,10,4,1,1520.5,1969798.4,0,0,6018.5605 -13975,17138,31189,31188,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,5,0,7.6580973,7.8111258,1,0,-9,17,0,-22,-7.8875256,0,0,0,90,1,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.3585525,7.8481388,120.53371,1,57.060001,57.759998,62.580002,23.84,6,1,1,0,0,10,4,1,1520.5,1969798.4,0,0,6018.5605 -13976,17139,31190,31191,-9,-9,1,1,0,39,1,0,0,0,2,-9,2,1,0,0,4,7.839931,7.8077445,0,1,0,-9,3,0,3,43.637798,0,0,1,36,2,5,1,3,3,2019,1,3,19,8,38,40,15,1,1,1,0,9.2407103,9.2407103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.299999,64.169998,60.990002,53.200001,6,1,1,0,0,9,5,0,715,110300.67,0,0,3807.324 -13976,17139,31191,31190,-9,-9,3,1,1,36,1,0,0,0,2,-9,2,1,0,0,5,8.4382868,8.2875309,0,1,0,-9,3,0,-3,-21.178562,0,0,0,39,2,4,1,-9,-9,2019,1,1,5,0,55,53,15,1,0,1,0,9.4343014,9.4343014,0,0,0,0,0,0,0,0,0,0,0,6.6881113,0,0,0,60.990002,53.200001,33.299999,64.169998,7,1,1,0,0,9,5,0,715,110300.67,0,0,3807.324 -13976,17140,31192,-9,31190,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.1434631,8.2982359,0,3,0,0,0,-9,0,-928.24011,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,39,45,15,1,0,-9,1,12.756267,12.756267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,0,1187,6770.3159,0,0,1101.1903 -13977,17141,31193,31194,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.4520941,8.7995033,0,2,0,-9,15,0,0,-50.467396,0,0,1,52,1,3,1,3,2,2019,1,2,9,0,33,33,15,1,0,1,0,15.671338,15.671338,0,0,0,0,0,0,0,0,1,1,0,3.4750333,0,0,0,59.290001,49.68,52,54.509998,6,2,3,0,0,4,4,1,1027.3334,1556920.6,0,0,2814.252 -13977,17141,31194,31193,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,0,3,8.1834164,8.1609468,0,2,0,-9,15,0,9,-21.295395,0,0,0,43,1,4,1,3,3,2019,1,1,8,0,42,50,15,1,0,1,0,9.7228632,9.7228632,0,0,0,0,0,0,0,0,1,1,0,1.5404099,0,0,0,52,54.509998,59.290001,49.68,6,2,3,0,0,4,4,1,1027.3334,1556920.6,0,0,2814.252 -13977,17141,31195,-9,31193,31194,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1228.4429,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,4,4,1,1027.3334,1556920.6,0,0,2814.252 -13977,17142,31196,-9,31193,31194,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-916.0968,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,6,2,3,0,0,4,4,1,1072,53487.227,0,0,0 -13978,17143,31197,31198,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,0,2,8.6753922,9.0124655,0,2,0,-9,1,-9,0,77.316147,-9,0,0,42,2,3,1,-9,-9,2019,1,1,15,3,37,0,15,1,0,1,0,22.806452,22.806452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.66,43.369999,45.689999,53.27,4,1,1,0,1,9,5,1,468.5,293465.63,0,0,4091.8486 -13978,17143,31198,31197,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,8.3436651,8.4058695,0,2,0,-9,9,-9,0,22.616867,-9,0,1,42,1,2,1,3,2,2019,1,2,12,0,39,0,15,1,0,1,0,10.319122,10.319122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.689999,53.27,38.66,43.369999,5,1,1,0,0,9,5,1,468.5,293465.63,0,0,4091.8486 -13979,17144,31199,31200,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,7.8330669,7.6605439,0,1,0,-9,1,-9,5,-54.164799,-9,0,0,25,2,2,1,-9,-9,2019,1,1,12,3,37,0,15,1,0,1,0,9.02283,9.02283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.900002,60.41,35.790001,57.009998,5,1,1,0,0,4,4,0,359.5,-103950.89,0,0,1891.4844 -13979,17144,31200,31199,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,0,2,7.5241842,8.1725807,0,1,0,1,1,-9,-5,-152.85876,0,1,1,30,1,3,1,-9,-9,2019,1,2,16,4,39,37,15,1,1,1,0,7.1299186,7.1299186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.790001,57.009998,35.900002,60.41,5,1,1,0,0,4,4,0,359.5,-103950.89,0,0,1891.4844 -13980,17145,31201,31202,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,2,0,5.5591655,5.5540414,1,0,-9,49,0,-5,-37.876961,0,0,0,75,3,4,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.6677597,5.481142,0,0,53.700001,33.470001,54.790001,55.860001,6,1,1,0,0,2,2,1,442.5,531198,0,0,1851.2413 -13980,17145,31202,31201,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,7.3897209,7.4119544,1,0,-9,49,0,5,100.09729,0,0,0,70,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0920773,7.5070963,0,0,54.790001,55.860001,53.700001,33.470001,6,1,1,0,0,2,2,1,442.5,531198,0,0,1851.2413 -13981,17146,31203,31204,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,5.4351354,5.8490705,1,0,-9,57,0,-2,118.9715,0,0,0,76,3,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,2.0834618,0,0,0,0,0,1,1,0,0,5.691431,0,0,63.830002,43.619999,60.290001,52.110001,7,1,1,0,0,4,2,1,922.5,302925.84,0,0,1752.6572 -13981,17146,31204,31203,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,6.0962005,6.3683829,1,0,-9,57,0,2,90.271736,0,0,0,74,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3967619,0,0,60.290001,52.110001,63.830002,43.619999,7,1,1,0,0,4,2,1,922.5,302925.84,0,0,1752.6572 -13982,17147,31205,31206,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,9.2821608,9.2513161,0,1,0,-9,10,0,3,30.942347,0,0,0,52,1,4,1,-9,-9,2019,1,1,9,0,50,50,15,1,0,1,0,24.772182,24.772182,0,0,0,0,0,0,0,0,0,0,0,3.3784256,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,10,5,1,995,1396983.9,0,0,3272.9702 -13982,17147,31206,31205,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,6.7952914,6.7247796,0,1,0,-9,32,0,-3,-88.299675,0,0,0,55,1,4,1,2,1,2019,1,2,9,0,11,10,15,1,0,1,0,8.2744684,8.2744684,0,0,0,0,0,0,0,0,0,0,0,1.6276474,0,0,0,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,10,5,1,995,1396983.9,0,0,3272.9702 -13982,17148,31207,-9,31206,31205,3,1,1,21,2,0,0,1,1,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1065.8298,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.23839633,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,10,1,1,314,47153.461,0,0,771.48444 -13982,17149,31208,-9,31206,31205,4,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1122.4833,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2568216,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,1,1,1445,0,0,0,-1068.6703 -13983,17150,31209,-9,-9,-9,1,1,0,57,3,0,1,0,2,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-985.60303,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.169998,27.290001,-9,-9,6,1,1,1,0,11,1,1,1286,141563.81,0,0,1284.8906 -13983,17150,31210,-9,31209,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-919.51855,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,40.490002,54.509998,-9,-9,5,1,1,0,0,11,1,1,1286,141563.81,0,0,1284.8906 -13983,17151,31211,-9,31209,-9,3,1,1,19,2,0,1,0,2,1,2,1,0,0,4,7.2396193,7.3858247,0,3,0,0,0,-9,0,-1023.5519,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,39,0,15,1,0,-9,1,4.3203359,4.3203359,0,0,0,0,0,0,0,0,1,1,0,2.2701657,0,0,0,50.560001,46.68,-9,-9,6,1,1,0,0,11,3,1,376,-145257.95,0,0,1784.2993 -13983,17152,31212,-9,31209,-9,4,1,1,19,2,0,1,0,2,1,2,1,0,0,4,7.5638113,7.3265958,0,3,0,0,0,-9,0,-977.39001,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,39,0,15,1,0,-9,1,4.9093595,4.9093595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.830002,57.259998,-9,-9,4,1,1,0,0,11,3,1,522,77646.711,0,0,1373.457 -13984,17153,31213,31214,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,50,0,-2,-125.23285,0,0,0,71,1,2,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,8.4853468,0,0,0,0,0,1,1,0,7.727962,0,0,0,57.16,56.150002,55.200001,17.09,6,1,1,0,0,12,2,1,992,548772.81,0,0,2461.3828 -13984,17153,31214,31213,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,2,0,7.3084364,6.970036,1,0,-9,48,0,2,-104.89474,0,0,0,69,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,5.939579,0,0,0,0,0,1,1,0,0,7.3357611,0,0,55.200001,17.09,57.16,56.150002,6,1,1,0,0,12,2,1,992,548772.81,0,0,2461.3828 -13985,17154,31215,31216,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,8.0404148,8.2326393,0,1,0,-9,41,0,1,99.465599,0,0,0,57,1,4,1,2,2,2019,1,1,8,0,39,38,15,1,0,1,0,10.883772,10.883772,0,0,0,0,0,0,0,0,0,0,0,2.8595979,0,0,0,48.939999,54.950001,41.290001,55.130001,5,1,1,0,0,9,5,1,1645.5,2211023,0,0,3021.7056 -13985,17154,31216,31215,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,0,4,8.8512287,8.7950602,0,1,0,-9,41,0,-1,-158.52406,0,0,0,58,1,3,1,3,2,2019,1,2,15,4,44,37,15,1,1,1,0,14.166109,14.166109,0,0,0,0,0,0,0,2,0,0,0,3.6569715,0,0,3,41.290001,55.130001,48.939999,54.950001,4,1,1,0,0,9,5,1,1645.5,2211023,0,0,3021.7056 -13986,17155,31217,31218,-9,-9,1,1,0,57,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,40,0,-1,-55.934963,0,0,0,58,3,3,1,3,3,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.15,49.84,54.380001,49.27,4,1,1,0,0,12,4,0,220.5,431755.19,0,0,2517.064 -13986,17155,31218,31217,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,3,8.5098248,8.7331095,0,1,0,-9,8,0,1,-2.8899717,0,0,0,57,3,3,3,-9,-9,2019,2,1,10,2,60,50,15,1,0,3,0,12.787119,12.787119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.380001,49.27,27.15,49.84,6,1,1,0,0,12,4,0,220.5,431755.19,0,0,2517.064 -13987,17156,31219,-9,-9,-9,1,1,1,20,2,0,0,0,2,0,7,2,0,0,3,0,7.4094067,7.1556644,3,0,0,0,-9,0,-889.57935,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5682807,0,0,0,47.689999,55.060001,-9,-9,6,1,1,0,0,13,3,0,336,-141028.17,0,0,2103.0857 -13987,17157,31220,-9,-9,-9,2,1,1,20,2,0,0,1,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-960.60638,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.169998,58.560001,-9,-9,6,1,1,0,1,13,1,0,220,0,0,0,0 -13988,17158,31221,31222,-9,-9,2,1,0,64,1,0,0,0,2,-9,8,3,1,1,1,0,6.6420259,6.2730851,1,0,-9,6,0,-8,64.688995,0,0,0,72,2,3,3,3,3,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1670847,0,0,55.630001,17.57,45.970001,51.900002,2,1,1,0,0,2,2,1,1264.5,128826.61,0,0,2234.897 -13988,17158,31222,31221,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,8,40.130535,0,0,0,64,2,1,3,3,3,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.67573,1,45.970001,51.900002,55.630001,17.57,3,1,1,0,0,2,2,1,1264.5,128826.61,0,0,2234.897 -13989,17159,31223,-9,-9,-9,1,1,0,65,2,0,0,0,2,-9,2,1,0,0,3,6.7598848,7.7368484,7.2481675,3,0,0,0,-9,0,-975.91681,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,14,14,15,1,0,-9,0,8.8146315,8.8146315,0,0,0,0,0,0,0,0,1,1,0,4.2313943,7.2189617,0,0,52,54.509998,-9,-9,6,1,1,0,0,7,3,1,602,330486.41,0,0,2828.9846 -13990,17160,31224,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.1165857,7.8863196,0,3,0,0,0,-9,0,-987.71613,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,30,38,15,1,0,-9,0,9.7443962,9.7443962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.889999,54.380001,-9,-9,5,1,1,0,0,4,3,1,319,-123384.06,0,0,404.43851 -13991,17161,31225,-9,-9,-9,1,1,0,40,3,0,1,0,3,-9,2,1,0,0,4,7.047287,7.1778035,0,4,0,0,0,-9,0,-1175.937,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,24,15,1,0,-9,0,7.7784457,7.7784457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,4,1,1,0,0,13,2,0,691,68635.625,0,0,150.20346 -13991,17161,31226,-9,31225,-9,3,1,1,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1036.804,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,2,0,691,68635.625,0,0,150.20346 -13991,17162,31227,-9,31225,-9,2,1,0,20,2,0,1,0,2,1,2,1,0,0,5,6.5546074,7.0263119,0,3,0,0,0,-9,0,-993.54272,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,20,0,15,1,0,-9,1,5.3805513,5.3805513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,13,2,0,321,172218,0,0,259.01599 -13992,17163,31228,31229,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,47,0,-1,104.82934,0,0,0,70,1,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7268639,0,0,0,52.599998,52.880001,57.16,56.150002,6,1,1,0,0,5,4,1,306,2266802.8,0,0,4189.1729 -13992,17163,31229,31228,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.4616671,8.3188553,1,0,-9,46,0,1,49.767761,0,0,0,69,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7372255,0,0,57.16,56.150002,52.599998,52.880001,6,1,1,0,0,5,4,1,306,2266802.8,0,0,4189.1729 -13992,17164,31230,-9,31228,31229,3,1,1,41,2,0,0,0,2,-9,1,1,0,0,4,7.4385686,7.1322393,0,3,0,0,0,-9,0,-999.46368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,4,5,15,1,0,-9,1,35.925953,35.925953,0,0,0,0,0,0,0,0,1,1,0,1.1593262,0,0,0,53.389999,52.349998,-9,-9,5,1,1,0,0,5,2,1,380,66147.656,0,0,277.29572 -13993,17165,31231,31232,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,4,0,7.7425861,7.801888,1,0,-9,51,0,0,15.592226,0,0,0,81,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.6714463,7.7057033,13.583468,1,57.16,56.150002,51.970001,33.139999,7,1,1,0,0,13,4,1,1682,1131206.3,0,0,4876.2603 -13993,17165,31232,31231,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,0,2,0,7.5817962,8.0168648,1,0,-9,51,0,9,16.106504,0,0,0,72,1,4,3,3,3,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0047846,7.6205411,0,0,51.970001,33.139999,57.16,56.150002,7,1,1,0,0,13,4,1,1682,1131206.3,0,0,4876.2603 -13994,17166,31233,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,0,4,7.9605265,7.7872186,0,3,0,0,0,-9,0,-1059.7865,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,3,1,37,37,15,1,0,-9,0,9.5280952,9.5280952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,4,3,0,645,-60761.504,0,0,164.40714 -13995,17167,31234,31235,-9,-9,2,1,0,36,1,0,2,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,14,0,-10,0,0,0,1,46,1,3,1,1,2,2019,1,1,6,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.619999,56.48,54.369999,54.799999,6,1,1,0,0,8,1,1,886.5,281322.41,0,0,481.04889 -13995,17167,31235,31234,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,16,0,10,0,0,0,0,36,1,4,1,3,2,2019,1,2,10,0,0,41,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,47.619999,56.48,5,2,3,0,0,8,1,1,886.5,281322.41,0,0,481.04889 -13995,17167,31236,-9,31234,31235,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.8627,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,1,1,886.5,281322.41,0,0,481.04889 -13995,17167,31237,-9,31234,31235,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.59418,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,1,1,886.5,281322.41,0,0,481.04889 -13996,17168,31238,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,2,0,7.0180702,6.8345242,3,0,0,0,-9,0,-1175.3903,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6935692,6.7768307,0,0,33.73,23.93,-9,-9,6,1,1,0,0,7,2,1,1283,230847.92,0,0,2081.521 -13997,17169,31239,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,0,2,7.7145543,7.6851115,0,3,0,0,0,-9,0,-1055.6234,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,12,35,39,15,1,1,-9,0,9.0916481,9.0916481,0,0,0,0,0,0,0,0,0,0,0,1.1975276,0,0,0,21.469999,47.18,-9,-9,3,1,1,0,0,9,3,1,518,412560.16,0,0,609.21063 -13998,17170,31240,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,4,8.004303,8.0560608,0,3,0,0,0,-9,0,-1070.6942,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,0,9.3846998,9.3846998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.279999,-9,-9,5,1,1,0,0,10,4,0,162,169683.91,0,0,348.30844 -13999,17171,31241,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,0,3,0,6.4906664,7.0207143,3,0,0,0,-9,0,-964.1377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9228358,6.8262081,0,0,60.200001,39.82,-9,-9,6,1,1,0,0,5,2,1,3173,194277.16,0,0,387.82458 -14000,17172,31242,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-963.35046,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.98452,3,30.99,24.02,-9,-9,2,1,1,0,1,2,1,0,236,-108352.41,0,0,2208.0767 -14001,17173,31243,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,0,4,8.0125761,8.0688353,0,3,0,-9,0,0,0,-983.06891,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,43,40,15,1,1,-9,0,8.5891485,8.5891485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.620001,58.939999,-9,-9,4,1,1,0,0,2,4,0,365,-14128.425,0,0,1582.5679 -14002,17174,31244,31245,-9,-9,1,1,1,51,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,10,0,-1,0,0,0,0,52,2,2,3,3,2,2019,4,2,26,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.422523,1,27.719999,32.029999,26.809999,29.85,2,1,1,0,1,13,1,0,440,-16328.824,0,0,1513.3353 -14002,17174,31245,31244,-9,-9,2,1,0,52,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,10,0,1,0,0,0,0,51,3,2,3,2,2,2019,4,1,23,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.809999,29.85,27.719999,32.029999,3,1,1,0,0,13,1,0,440,-16328.824,0,0,1513.3353 -14003,17175,31246,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,5,8.8100376,8.5779829,0,3,0,0,0,-9,0,-939.34003,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,55,37,15,1,0,-9,0,14.245923,14.245923,0,0,0,0,0,0,0,2,1,1,0,8.2231131,0,0,3,60.02,56.419998,-9,-9,7,1,1,0,0,7,5,1,1335,10102.1,0,0,4553.2993 -14004,17176,31247,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,1,1,0,0,5,5.7784195,5.7977886,0,3,0,0,0,-9,0,-952.6377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,65,15,1,0,-9,0,.69817966,.69817966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,2,1,1,0,0,13,2,1,608,60572.969,0,0,790.03485 -14004,17177,31248,-9,-9,31247,2,1,0,22,2,0,0,0,1,-9,2,1,0,0,5,8.3718748,8.3155651,0,3,0,0,0,-9,0,-1119.0013,-9,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,9,0,38,0,15,1,0,-9,1,12.071736,12.071736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.27,57.220001,-9,-9,5,1,1,0,0,13,4,1,879,-46157.68,0,0,575.33295 -14005,17178,31249,31250,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,8.1072111,8.3553553,7.139564,1,0,-9,30,0,-2,18.411692,0,0,0,61,3,2,3,2,3,2019,2,2,13,1,36,29,15,1,0,3,0,8.2626143,8.2626143,0,0,0,0,0,0,0,0,1,1,0,4.71205,7.2582765,0,0,40.509998,55.740002,46.560001,37.029999,4,1,1,0,0,2,3,1,320,1190936,0,0,1820.3276 -14005,17178,31250,31249,-9,-9,2,1,0,61,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,30,0,2,46.588165,0,0,0,59,3,4,1,3,3,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0545504,0,0,0,46.560001,37.029999,40.509998,55.740002,6,1,1,0,0,2,3,1,320,1190936,0,0,1820.3276 -14006,17179,31251,-9,31252,31253,5,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-808.336,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,13,3,1,1071,272775.78,0,0,1529.8794 -14006,17179,31252,31253,-9,-9,2,1,0,56,1,0,1,0,2,-9,4,3,0,0,5,0,0,0,2,0,-9,27,0,1,-172.64336,0,0,0,55,1,5,1,2,3,2019,3,1,9,0,0,15,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3782067,0,0,0,51.669998,60.18,58.049999,54.52,6,1,1,0,0,13,3,1,1071,272775.78,0,0,1529.8794 -14006,17179,31253,31252,-9,-9,1,1,1,55,1,0,1,0,1,-9,2,1,0,0,5,8.2718296,8.1561861,0,2,0,-9,27,0,-1,-24.946335,0,0,0,56,2,5,3,3,3,2019,2,2,5,0,30,30,15,1,0,4,0,14.704569,14.704569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,54.52,51.669998,60.18,6,1,1,0,0,13,3,1,1071,272775.78,0,0,1529.8794 -14006,17180,31254,-9,31252,31253,3,1,1,23,2,0,1,0,1,-9,2,1,0,0,4,8.0104399,8.0021048,0,3,0,0,0,-9,0,-1036.4419,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,37,0,15,1,1,-9,1,13.158051,13.158051,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.099998,63.290001,-9,-9,3,1,1,0,0,13,4,1,535,101994.81,0,0,1000.5138 -14006,17181,31255,-9,31252,31253,4,1,0,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-983.75446,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,1,367,218743.8,0,0,670.34045 -14007,17182,31256,-9,31258,31257,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.144,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,4,1,342.33334,688994.81,0,0,2847.1299 -14007,17182,31257,31258,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,0,5,7.4790235,7.6595583,0,2,0,-9,31,0,-7,53.339008,0,0,0,57,2,1,1,2,2,2019,1,2,8,1,55,60,15,1,0,1,0,3.2170911,3.2170911,0,0,0,0,0,0,0,0,1,1,0,6.6219459,0,0,0,58.049999,54.52,38.610001,37.98,6,1,1,0,0,5,4,1,342.33334,688994.81,0,0,2847.1299 -14007,17182,31258,31257,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,0,1,8.9546909,8.763216,0,2,0,-9,7,0,7,-21.169552,0,0,0,50,2,5,1,-9,-9,2019,1,1,26,12,68,62,15,1,1,1,0,11.261011,11.261011,0,0,0,0,0,0,0,0,1,1,0,6.6856689,0,0,0,38.610001,37.98,58.049999,54.52,1,1,1,0,0,5,4,1,342.33334,688994.81,0,0,2847.1299 -14007,17183,31259,-9,31258,31257,3,1,0,21,2,0,1,0,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1094.5237,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,1,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,5,1,1,1002,39973.492,0,0,0 -14008,17184,31260,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,6.9566479,7.0575047,3,0,0,0,-9,0,-905.61255,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.7648253,0,0,1,1,0,0,6.6708951,0,0,51,46,-9,-9,6,1,1,0,0,11,2,0,537,176337.58,0,0,771.7782 -14009,17185,31261,31262,-9,-9,1,1,0,57,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,42,0,-1,0,0,0,0,58,2,2,3,3,-9,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.669998,10.31,42.52,30.76,3,1,1,0,0,4,1,0,588.5,72211.07,0,0,2465.7881 -14009,17185,31262,31261,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,7,0,1,0,0,0,0,57,2,1,3,-9,-9,2019,4,1,14,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,30.76,49.669998,10.31,3,1,1,0,0,4,1,0,588.5,72211.07,0,0,2465.7881 -14010,17186,31263,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1035.3857,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,31,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.74,41.740002,-9,-9,7,1,1,0,0,12,1,0,245,108559,0,0,2251.5447 -14011,17187,31264,31265,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.8161898,6.7824597,1,0,-9,30,0,6,129.84055,0,0,0,66,3,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4057417,6.8948393,0,0,53.220001,48.439999,57.16,56.150002,6,1,1,0,0,10,2,1,473,1148820.8,0,0,2047.8871 -14011,17187,31265,31264,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,0,4,6.6644788,6.6172218,5.3529267,1,0,-9,35,0,-6,102.81649,0,0,0,72,3,3,3,3,3,2019,2,2,10,0,10,0,15,1,0,4,0,8.1990986,8.1990986,0,0,0,0,0,0,0,0,1,1,0,0,5.5778599,0,0,57.16,56.150002,53.220001,48.439999,6,1,1,0,0,10,2,1,473,1148820.8,0,0,2047.8871 -14012,17188,31266,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,7.4032059,7.1423697,0,2,0,-9,8,0,-7,31.453161,0,0,1,-9,-9,-9,-9,2,3,2019,1,2,12,0,35,40,15,1,0,-9,0,3.8940964,3.8940964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,36.689999,42.48,41.169998,5,1,1,0,0,2,2,0,470.5,25758.754,0,0,1425.359 -14012,17188,31267,-9,31266,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.7606,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,0,470.5,25758.754,0,0,1425.359 -14012,17189,31268,-9,-9,-9,2,1,0,40,2,0,1,0,2,-9,2,1,0,0,4,6.9171238,6.5951314,0,2,0,-9,8,0,7,66.219429,0,0,1,-9,-9,-9,-9,2,1,2019,1,1,13,1,16,0,15,1,0,-9,0,7.5476494,7.5476494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,41.169998,40.23,36.689999,5,1,1,0,0,2,2,0,151,-16555.297,0,0,382.25214 -14013,17190,31269,-9,31270,-9,3,1,1,10,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1086.8317,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,2,0,1244.3334,42285.531,0,0,2172.1809 -14013,17190,31270,-9,-9,-9,2,1,0,27,2,1,2,0,2,-9,2,1,0,0,3,6.7944574,6.9554563,0,3,0,0,0,-9,0,-1105.6207,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,17,0,15,1,0,-9,1,7.4461799,7.4461799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,4,1,1,0,0,6,2,0,1244.3334,42285.531,0,0,2172.1809 -14013,17190,31271,-9,31270,-9,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1089.9086,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,0,1244.3334,42285.531,0,0,2172.1809 -14014,17191,31272,-9,31275,-9,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1084.1001,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,6,2,0,1032,88057.125,0,0,2805.8247 -14014,17191,31273,-9,31275,-9,2,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1007.0002,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,4,2,0,0,6,2,0,1032,88057.125,0,0,2805.8247 -14014,17191,31274,-9,31275,-9,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1009.9055,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,6,2,0,1032,88057.125,0,0,2805.8247 -14014,17191,31275,-9,-9,-9,1,1,0,47,3,0,3,0,2,-9,1,1,0,0,2,6.7809768,7.0882869,0,4,0,0,0,-9,0,-1192.6846,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,9,18,18,15,1,1,-9,0,7.3647637,7.3647637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.150002,35.459999,-9,-9,2,4,2,0,1,6,2,0,1032,88057.125,0,0,2805.8247 -14015,17192,31276,31277,-9,-9,2,1,1,54,1,0,2,0,1,-9,2,1,0,0,5,9.6987371,9.4164257,0,2,0,-9,7,0,3,-5.7463331,0,0,0,51,2,5,1,-9,-9,2019,1,1,6,0,48,52,15,1,0,1,0,40.932369,40.932369,0,0,0,0,0,0,0,0,0,0,0,5.6811113,0,0,0,57.060001,57.759998,46.279999,62.599998,7,1,1,0,0,7,5,1,1040,955776,0,0,5530.4434 -14015,17192,31277,31276,-9,-9,1,1,0,51,1,0,2,0,2,-9,2,1,0,0,5,7.9163318,7.9504871,0,2,0,-9,18,0,-3,26.669266,0,0,0,54,1,5,1,3,2,2019,1,2,9,0,17,17,15,1,0,1,0,18.227036,18.227036,0,0,0,0,0,0,0,0,0,0,0,5.7889209,0,0,0,46.279999,62.599998,57.060001,57.759998,6,1,1,0,0,7,5,1,1040,955776,0,0,5530.4434 -14016,17193,31278,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,0,4,0,6.1981001,6.1311135,3,0,0,0,-9,0,-968.42761,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.212039,6.5888748,4.3090267,3,58.75,51.279999,-9,-9,5,1,1,0,0,11,2,1,290,443497.69,0,0,733.76697 -14017,17194,31279,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-1056.235,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.90747,3,49,56,-9,-9,5,1,1,0,0,11,1,0,1283,-86169.188,0,0,2556.9719 -14018,17195,31280,31281,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,6.9047503,6.8772287,0,1,0,-9,19,-9,-2,-197.88554,-9,0,0,58,2,3,1,2,2,2019,1,1,10,0,16,0,15,1,0,1,0,7.0816512,7.0816512,0,0,0,0,0,0,0,7,0,0,0,0,0,21.436218,3,58.07,46.290001,50,49,6,1,1,0,0,12,3,0,1003,426703.44,0,0,1112.996 -14018,17195,31281,31280,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,6.977304,7.4119287,0,1,0,-9,27,-9,2,60.69294,-9,0,0,56,2,3,1,3,3,2019,1,2,11,0,47,0,15,1,0,1,0,2.3890104,2.3890104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,58.07,46.290001,6,1,1,0,0,12,3,0,1003,426703.44,0,0,1112.996 -14019,17196,31282,31283,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,4,7.7215838,8.0460272,0,1,0,-9,4,0,9,-79.534386,0,0,0,42,2,2,1,-9,-9,2019,1,2,7,0,38,41,15,1,0,1,0,8.5949602,8.5949602,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.001446,1,57.73,54.529999,36.799999,39.41,6,1,1,0,0,10,3,0,617.5,73181.188,0,0,1246.7542 -14019,17196,31283,31282,-9,-9,2,1,0,42,1,0,0,0,2,-9,1,1,0,1,2,6.8469329,6.7665915,0,1,0,-9,4,0,0,-168.51363,0,0,1,51,2,4,1,2,1,2019,1,1,11,0,13,16,15,1,0,1,0,6.9669337,6.9669337,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.799999,39.41,57.73,54.529999,6,1,1,0,0,10,3,0,617.5,73181.188,0,0,1246.7542 -14020,17197,31284,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,0,1,8.3462124,8.3908558,4.705543,3,0,0,0,-9,0,-997.2644,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,65,72,15,1,0,-9,0,9.0992317,9.0992317,0,0,0,0,0,0,0,0,0,0,0,6.1732144,5.0284004,0,0,56.369999,24.709999,-9,-9,5,1,1,0,0,11,5,1,732,526874.19,0,0,2082.4285 -14021,17198,31285,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,0,4,9.309185,9.1666393,0,3,0,0,0,-9,0,-976.271,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,45,44,15,1,0,-9,0,21.188133,21.188133,0,0,0,0,0,0,0,0,0,0,0,3.0382173,0,0,0,51.959999,43.66,-9,-9,5,1,1,0,0,9,5,1,190,447330.22,0,0,3806.4268 -14022,17199,31286,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-887.39636,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.990002,48.040001,-9,-9,6,1,1,0,0,12,1,0,370,-154073.47,0,0,861.84857 -14023,17200,31287,31288,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,58,0,-3,15.129096,0,0,0,79,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5068483,0,0,0,51.830002,57.200001,41.59,43.369999,6,1,1,0,0,5,2,1,729.5,140828.47,0,0,1400.4612 -14023,17200,31288,31287,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,0,2,0,6.4631963,6.6764336,1,0,-9,58,0,3,4.2243462,0,0,0,76,3,4,3,3,3,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8033056,6.9788537,0,0,41.59,43.369999,51.830002,57.200001,6,1,1,0,0,5,2,1,729.5,140828.47,0,0,1400.4612 -14024,17201,31289,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,0,2,0,6.6249838,6.5810447,3,0,0,0,-9,0,-927.58881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4536762,0,0,37.419998,35.77,-9,-9,3,1,1,0,1,5,2,1,244,189762.89,0,0,293.54398 -14025,17202,31290,31291,-9,-9,2,1,0,41,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,3,0,-2,-86.209267,0,0,1,43,1,5,1,-9,-9,2019,3,1,0,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,66.339996,49.419998,7,2,3,1,0,9,2,1,287.5,357111.91,0,0,454.81805 -14025,17202,31291,31290,-9,-9,1,1,1,43,1,0,0,0,1,-9,1,1,0,0,5,6.4979057,6.734201,0,1,0,-9,3,0,2,114.75302,0,0,0,41,1,4,3,-9,-9,2019,2,2,0,0,40,40,15,1,0,3,0,2.5740666,2.5740666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.339996,49.419998,62.490002,55.09,6,2,3,0,0,9,2,1,287.5,357111.91,0,0,454.81805 -14026,17203,31292,31293,-9,-9,1,1,0,59,1,0,0,0,2,-9,1,1,0,0,4,6.9422455,7.3900652,0,1,0,-9,7,0,7,-11.865216,0,0,0,52,2,4,1,3,3,2019,1,2,8,0,24,30,15,1,0,1,0,5.1540322,5.1540322,0,0,0,0,0,0,0,14.5,0,0,0,7.150218,0,13.593907,3,58.150002,52.91,59.529999,56.439999,6,1,1,0,0,10,3,1,383,167018.13,0,0,2344.6836 -14026,17203,31293,31292,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,0,4,7.164763,6.7883902,0,1,0,-9,7,0,-7,-97.508331,-9,0,0,59,2,4,1,-9,-9,2019,1,1,7,0,30,0,15,1,0,1,0,3.896663,3.896663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,58.150002,52.91,6,1,1,0,0,10,3,1,383,167018.13,0,0,2344.6836 -14027,17204,31294,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-943.47473,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,65,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.66,38.310001,-9,-9,4,1,1,1,0,2,1,0,305,-21255.932,0,0,996.05731 -14028,17205,31295,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1022.8174,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,6,1,0,6280,90423.18,0,0,678.59503 -14029,17206,31296,31297,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,22,0,1,0,0,0,0,42,2,3,3,2,2,2019,2,1,9,0,0,39,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.439999,47.32,49.990002,4,1,1,0,1,7,1,0,1278,-41732.773,0,0,0 -14029,17206,31297,31296,-9,-9,1,1,0,42,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,24,0,-1,0,0,0,1,43,2,2,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,49.990002,46.32,53.439999,3,1,1,1,0,7,1,0,1278,-41732.773,0,0,0 -14029,17207,31298,-9,31297,31296,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,8.2877054,7.919076,0,3,0,0,0,-9,0,-1075.8182,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,41,15,1,0,-9,1,10.361439,10.361439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.759998,55.32,-9,-9,6,1,1,0,0,7,4,0,389,2033.5277,0,0,1136.6676 -14030,17208,31299,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,1,1,0,0,5,7.7003603,7.8655066,0,3,0,0,0,-9,0,-959.76892,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,3,45,70,15,1,0,-9,0,6.2961226,6.2961226,0,0,0,0,0,0,0,0,0,0,0,1.3904179,0,0,0,44.310001,60.709999,-9,-9,5,2,3,0,0,9,3,0,1477,-51092.352,0,0,1597.0422 -14031,17209,31300,-9,-9,-9,1,1,0,25,2,0,0,0,1,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-951.39966,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.970001,60.950001,-9,-9,5,1,1,0,0,4,1,0,864,46629.848,0,0,0 -14031,17210,31301,-9,-9,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,7.0452428,6.9027367,0,3,0,-9,0,-9,0,-1051.8331,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8370819,0,0,0,47,57,-9,-9,5,4,6,0,0,4,2,0,392,-116440.57,0,0,1082.8143 -14032,17211,31302,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,0,3,0,6.1791129,6.0168753,3,0,0,0,-9,0,-906.11505,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.123517,0,0,49,48,-9,-9,5,1,1,0,0,2,2,1,317,432528.38,0,0,-649.16321 -14032,17212,31303,-9,-9,-9,2,1,1,50,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1052.2916,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.639999,38.82,-9,-9,1,1,1,1,1,2,1,1,3072,81583.711,0,0,62.862343 -14033,17213,31304,-9,-9,-9,1,1,0,40,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-863.53583,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,4,2,0,0,8,1,0,1283,-2888.4016,0,0,1895.5717 -14034,17214,31305,31306,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,24,0,-2,22.886387,0,0,0,68,2,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,48.380001,46.48,7,1,1,0,0,2,2,1,929.5,649835.5,0,0,2898.5908 -14034,17214,31306,31305,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,7.2544456,7.4386973,1,0,-9,24,0,2,-43.783314,0,0,0,66,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2790003,0,0,48.380001,46.48,57.16,56.150002,7,1,1,0,0,2,2,1,929.5,649835.5,0,0,2898.5908 -14035,17215,31307,31308,-9,-9,2,1,0,38,1,0,2,0,1,-9,1,1,0,0,4,7.3869224,7.0166435,0,2,0,-9,9,0,-1,-10.148065,0,0,1,39,1,3,1,1,1,2019,1,1,8,0,30,35,15,1,0,1,0,6.339283,6.339283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,40.810001,52.939999,6,1,1,0,0,2,4,1,559.5,241313.23,0,0,2879.5818 -14035,17215,31308,31307,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,3,8.3573666,8.187849,0,2,0,-9,9,0,1,145.36526,0,0,0,38,1,4,1,2,2,2019,1,2,18,6,43,50,15,1,1,1,0,12.409616,12.409616,0,0,0,0,0,0,0,0,1,1,0,4.8158069,0,0,0,40.810001,52.939999,51.240002,58.84,6,1,1,0,0,2,4,1,559.5,241313.23,0,0,2879.5818 -14035,17215,31309,-9,31307,31308,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1009.8628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,2,4,1,559.5,241313.23,0,0,2879.5818 -14035,17215,31310,-9,31307,31308,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.41016,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,559.5,241313.23,0,0,2879.5818 -14036,17216,31311,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,0,3,7.2898455,7.8049965,0,4,0,-9,0,1,0,-893.74579,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,23,17,15,1,0,-9,0,8.8500614,8.8500614,0,0,0,0,0,0,0,2,1,1,0,2.0776608,0,0,3,47.66,52.330002,-9,-9,5,1,1,0,0,7,3,0,588.66669,124646.35,0,0,2325.5796 -14036,17216,31312,-9,31311,-9,4,1,1,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1065.2075,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,7,3,0,588.66669,124646.35,0,0,2325.5796 -14036,17216,31313,-9,31311,-9,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,5.3129778,5.1683125,0,4,0,0,0,-9,0,-944.13745,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.028070554,0,0,0,38.639999,62,-9,-9,5,1,1,0,0,7,3,0,588.66669,124646.35,0,0,2325.5796 -14037,17217,31314,-9,31315,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-980.38434,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,3,4,0,0,8,5,1,431.33334,72505.508,0,0,3224.8591 -14037,17217,31315,-9,-9,-9,1,1,0,52,2,0,2,0,2,-9,1,1,0,1,3,9.046031,8.7479496,6.1353326,4,0,0,0,-9,0,-905.56403,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,36,37,15,1,0,-9,0,27.29845,27.29845,0,0,0,0,0,0,0,2,1,1,0,5.8097382,0,0,3,64.790001,45.93,-9,-9,6,3,4,0,0,8,5,1,431.33334,72505.508,0,0,3224.8591 -14037,17217,31316,-9,31315,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.4932,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,5,1,431.33334,72505.508,0,0,3224.8591 -14038,17218,31317,31318,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,0,5,8.4800558,8.7021494,0,2,0,-9,3,0,-5,-68.960167,0,0,1,38,2,4,1,2,3,2019,1,1,5,0,38,35,15,1,0,1,0,16.883272,16.883272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.200001,57.490002,7,1,1,0,0,5,4,1,745.5,160815.38,0,0,3468.3782 -14038,17218,31318,31317,-9,-9,1,1,1,38,1,0,2,0,2,-9,1,1,0,0,4,7.8603888,7.6030874,0,2,0,-9,3,0,5,-54.077633,0,0,0,33,2,5,1,2,-9,2019,1,2,12,0,42,42,15,1,0,1,0,4.7899523,4.7899523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.060001,57.759998,6,1,1,0,0,5,4,1,745.5,160815.38,0,0,3468.3782 -14038,17218,31319,-9,31317,31318,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.0128,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,745.5,160815.38,0,0,3468.3782 -14038,17218,31320,-9,31317,31318,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.1123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,745.5,160815.38,0,0,3468.3782 -14039,17219,31321,-9,31323,31322,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-875.71204,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,5,1,255.25,3416199.5,0,0,5730.2886 -14039,17219,31322,31323,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,3,9.404664,9.8073187,0,2,0,-9,10,0,8,-96.770851,0,0,0,42,1,5,1,3,2,2019,1,2,12,0,43,45,15,1,0,1,0,41.860806,41.860806,0,0,0,0,0,0,0,0,1,1,0,2.5760696,0,0,0,40.290001,53.32,40.200001,61.220001,4,1,1,0,0,7,5,1,255.25,3416199.5,0,0,5730.2886 -14039,17219,31323,31322,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,7.9790273,7.7335548,0,2,0,-9,10,0,-8,-68.581398,0,0,1,50,1,3,1,-9,-9,2019,1,1,12,0,33,35,15,1,0,1,0,10.986183,10.986183,0,0,0,0,0,0,0,0,1,1,0,3.1691482,0,0,0,40.200001,61.220001,40.290001,53.32,5,1,1,0,0,7,5,1,255.25,3416199.5,0,0,5730.2886 -14039,17219,31324,-9,31323,31322,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.3133,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,255.25,3416199.5,0,0,5730.2886 -14040,17220,31325,-9,31328,31326,6,1,0,12,2,0,5,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-979.6698,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,11,3,0,767.66669,1143144.3,0,0,4326.4009 -14040,17220,31326,31328,-9,-9,1,1,1,50,1,0,5,0,1,-9,2,1,0,0,3,8.6435251,8.6670809,0,2,0,-9,6,0,12,-27.078384,0,0,0,38,2,4,1,2,-9,2019,1,2,12,1,60,55,15,1,0,1,0,11.197835,11.197835,0,0,0,0,0,0,0,0,1,1,0,4.0132842,0,0,0,39.790001,57.189999,53.970001,39.66,3,1,1,0,1,11,3,0,767.66669,1143144.3,0,0,4326.4009 -14040,17220,31327,-9,31328,31326,5,1,0,15,2,0,5,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1062.0337,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,11,3,0,767.66669,1143144.3,0,0,4326.4009 -14040,17220,31328,31326,-9,-9,2,1,0,38,1,0,5,0,2,-9,1,1,0,0,4,7.2334466,7.2335548,0,2,0,-9,6,0,-12,-115.17929,0,0,1,50,1,3,1,-9,-9,2019,1,1,12,0,25,25,15,1,0,1,0,5.0656552,5.0656552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.970001,39.66,39.790001,57.189999,6,1,1,0,0,11,3,0,767.66669,1143144.3,0,0,4326.4009 -14040,17220,31329,-9,31328,31326,7,1,1,11,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.38989,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,3,0,767.66669,1143144.3,0,0,4326.4009 -14040,17220,31330,-9,31328,31326,4,1,1,15,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1134.5098,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,0,767.66669,1143144.3,0,0,4326.4009 -14041,17221,31331,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,4,8.6414957,8.5372381,0,3,0,0,0,-9,0,-1014.8664,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,46,44,15,1,0,-9,0,14.020634,14.020634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,2,5,0,872,35394.441,0,0,1382.3871 -14042,17222,31332,-9,-9,31334,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1117.6654,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,5,1,0,639.66669,85644.953,0,0,421.20569 -14042,17222,31333,-9,-9,31334,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1087.4041,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,1,0,639.66669,85644.953,0,0,421.20569 -14042,17222,31334,-9,-9,-9,1,1,1,42,3,0,2,0,2,-9,8,3,1,1,1,0,0,0,4,0,-9,0,1,0,-914.95288,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.969999,24.530001,-9,-9,3,1,1,0,0,5,1,0,639.66669,85644.953,0,0,421.20569 -14043,17223,31335,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1058.1531,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.82,33.119999,-9,-9,2,2,3,0,1,6,1,1,320,170315.86,0,0,-289.49323 -14043,17224,31336,-9,31335,-9,2,1,0,31,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-976.03503,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.27,36.099998,-9,-9,2,2,3,1,1,6,1,1,902,-180615.25,0,0,-3.307179 -14043,17225,31337,-9,31335,-9,3,1,1,30,2,0,0,0,3,-9,2,1,0,0,5,8.2298403,8.0634413,0,3,0,0,0,-9,0,-861.96594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,50,35,15,1,0,-9,1,8.5799913,8.5799913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,60,-9,-9,3,2,3,0,0,6,4,1,1628,83624.336,0,0,991.29456 -14043,17226,31338,-9,31335,-9,4,1,0,27,3,0,0,0,2,-9,3,3,0,0,4,6.3227878,6.2505941,0,3,0,0,0,-9,0,-1019.2728,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,20,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.470001,56.189999,-9,-9,3,2,3,1,1,6,2,1,2476,-21008.383,0,0,-867.32831 -14043,17227,31339,-9,31335,-9,5,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.0104532,7.7516174,0,3,0,0,0,-9,0,-1099.1556,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,40,58,15,1,0,-9,1,9.9176788,9.9176788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.830002,54.77,-9,-9,3,2,3,0,1,6,4,1,854,-65084.898,0,0,2292.0278 -14043,17228,31340,-9,31335,-9,6,1,1,21,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1079.834,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.349998,59.91,-9,-9,3,2,3,1,1,6,1,1,435,-72306.883,0,0,0 -14044,17229,31341,-9,31344,31343,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-968.43781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,326.75,513732.63,0,0,1963.1885 -14044,17229,31342,-9,31344,-9,2,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.4941,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,3,0,326.75,513732.63,0,0,1963.1885 -14044,17229,31343,31344,-9,-9,3,1,1,26,1,1,2,0,2,-9,2,1,0,0,5,8.0046949,8.1193428,0,2,0,-9,2,0,2,-36.454762,0,1,0,24,2,4,3,-9,-9,2019,2,1,6,0,48,49,15,1,0,3,0,7.080442,7.080442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,54.200001,57.490002,7,1,1,0,0,7,3,0,326.75,513732.63,0,0,1963.1885 -14044,17229,31344,31343,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,0,4,0,5.9352889,5.598031,2,0,-9,2,0,-2,46.562653,0,1,1,26,2,5,1,-9,-9,2019,3,3,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.1921945,0,2.2119982,3,54.200001,57.490002,51.73,58.82,7,1,1,0,0,7,3,0,326.75,513732.63,0,0,1963.1885 -14045,17230,31345,31346,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,5.4437337,7.4311905,7.6806984,1,0,-9,7,0,-7,139.8409,0,0,0,69,1,4,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7857385,7.820056,0,0,54.200001,57.490002,54.790001,55.860001,6,1,1,0,0,12,3,1,221,870950.25,0,0,5095.7109 -14045,17230,31346,31345,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,4.9268184,5.0447817,1,0,-9,7,0,7,-73.840858,0,0,0,62,2,4,3,3,3,2019,4,2,10,0,0,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5889034,5.295711,0,0,54.790001,55.860001,54.200001,57.490002,6,1,1,0,0,12,3,1,221,870950.25,0,0,5095.7109 -14046,17231,31347,-9,31348,31350,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.5339,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,5,1,1011.75,1226010.8,0,0,5543.3101 -14046,17231,31348,31350,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,8.6482086,8.524025,0,2,0,-9,14,0,-6,112.92108,0,0,1,45,1,3,1,2,2,2019,1,2,17,7,38,39,15,1,1,1,0,12.920378,12.920378,0,0,0,0,0,0,0,0,0,0,0,3.165379,0,0,0,45.529999,43.919998,45.75,53.150002,3,3,4,0,0,7,5,1,1011.75,1226010.8,0,0,5543.3101 -14046,17231,31349,-9,31348,31350,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1045.2185,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,45,-9,-9,4,4,2,0,0,7,5,1,1011.75,1226010.8,0,0,5543.3101 -14046,17231,31350,31348,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,3,9.4481888,9.199975,0,2,0,-9,16,0,6,2.4984648,0,0,0,39,1,3,1,-9,-9,2019,1,1,10,1,55,55,15,1,0,1,0,19.055141,19.055141,0,0,0,0,0,0,0,0,0,0,0,2.5642245,0,0,0,45.75,53.150002,45.529999,43.919998,5,1,1,0,0,7,5,1,1011.75,1226010.8,0,0,5543.3101 -14047,17232,31351,31352,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,9.1778765,8.985383,0,1,0,-9,5,0,1,5.6886292,0,1,0,28,1,4,1,1,1,2019,1,1,5,1,60,48,15,1,0,1,0,15.176447,15.176447,0,0,0,0,0,0,0,0,0,0,0,1.6752964,0,0,0,51.240002,58.84,48.869999,58.549999,6,1,1,0,0,2,5,1,1639,376114.31,0,0,5235.0342 -14047,17232,31352,31351,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.9380112,8.7231674,0,1,0,-9,5,0,-1,114.84682,0,1,1,29,1,4,1,-9,-9,2019,1,2,9,0,40,53,15,1,0,1,0,20.270266,20.270266,0,0,0,0,0,0,0,0,0,0,0,1.3512822,0,0,0,48.869999,58.549999,51.240002,58.84,6,1,1,0,0,2,5,1,1639,376114.31,0,0,5235.0342 -14048,17233,31353,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,4,8.5055561,9.16467,7.6710763,3,0,0,0,-9,0,-1022.4739,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,17,20,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6655269,8.1219788,0,0,65.370003,35.919998,-9,-9,5,1,1,0,0,12,5,1,1959,1236201.4,0,0,3415.207 -14049,17234,31354,-9,31355,31356,3,1,1,24,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-841.13062,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.219999,61.830002,-9,-9,4,1,1,1,0,2,1,0,922,104829.57,0,0,1716.9519 -14049,17235,31355,31356,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,1,1,6.6698837,6.7855034,0,1,0,-9,3,0,-5,117.1265,0,0,0,62,3,2,3,-9,-9,2019,2,1,30,11,10,0,15,1,1,3,0,8.4765892,8.4765892,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,2,27.889999,18.610001,46.189999,41.029999,1,1,1,0,0,2,2,0,833.5,90385.219,0,0,789.38373 -14049,17235,31356,31355,-9,-9,1,1,1,62,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,3,0,5,77.350502,0,0,0,57,2,1,1,3,3,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.391647,2,46.189999,41.029999,27.889999,18.610001,4,1,1,0,0,2,2,0,833.5,90385.219,0,0,789.38373 -14050,17236,31357,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-992.27649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,6,1,0,111,93303.57,0,0,1329.9629 -14051,17237,31358,31359,-9,-9,2,1,0,60,1,0,0,0,2,-9,6,3,0,0,5,0,0,0,1,0,-9,43,0,-1,-30.78916,0,0,0,61,2,3,1,2,3,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0342011,0,0,0,62.389999,56.709999,56.43,51.02,7,1,1,0,0,10,2,1,336,-56427.586,0,0,624.96796 -14051,17237,31359,31358,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,3,3.8055255,3.9176989,0,1,0,-9,43,0,1,-112.33878,0,0,0,60,2,5,3,3,3,2019,2,2,7,0,45,50,15,1,0,3,0,.12175342,.12175342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.43,51.02,62.389999,56.709999,6,1,1,0,0,10,2,1,336,-56427.586,0,0,624.96796 -14052,17238,31360,31361,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,3,8.1140318,8.3162508,0,1,0,-9,23,0,-2,-93.232094,0,0,0,48,2,3,1,2,2,2019,1,1,9,0,35,35,15,1,0,1,0,8.0679197,8.0679197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,52.220001,57.330002,53.459999,3,1,1,0,0,12,5,1,935,362170.94,0,0,3763.9844 -14052,17238,31361,31360,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.2646046,8.3864641,0,1,0,-9,23,0,2,2.8237953,0,0,0,46,2,3,1,-9,2,2019,1,2,12,0,35,35,15,1,0,1,0,16.886202,16.886202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,51.02,52.220001,5,1,1,0,0,12,5,1,935,362170.94,0,0,3763.9844 -14052,17239,31362,-9,31360,31361,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,7.9240799,7.6634784,0,3,0,0,0,-9,0,-924.20911,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,40,15,1,0,-9,1,8.0871782,8.0871782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.860001,59.060001,-9,-9,3,1,1,0,0,12,4,1,338,41285.543,0,0,126.30196 -14052,17240,31363,-9,31360,31361,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,5.9037533,5.9270439,0,3,0,0,0,-9,0,-822.92163,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,2,25,37,15,1,0,-9,1,1.6927086,1.6927086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.18,47.779999,-9,-9,4,1,1,0,0,12,2,1,1024,-93560,0,0,563.15839 -14053,17241,31364,31365,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,8.7124014,8.3943472,0,1,0,-9,3,0,3,37.865517,0,0,0,36,1,3,1,-9,-9,2019,1,1,6,0,45,40,15,1,0,1,0,14.095366,14.095366,0,0,0,0,0,0,0,2,0,0,0,0,0,1.8985405,3,54.200001,57.490002,37.790001,59.599998,6,1,1,0,0,9,5,0,595.5,208858.91,0,0,3152.3359 -14053,17241,31365,31364,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,3,8.329318,8.1907911,0,1,0,-9,3,0,-3,126.66108,0,0,1,39,2,4,1,3,3,2019,1,2,20,8,82,37,15,1,1,1,0,6.3586402,6.3586402,0,0,0,0,0,0,0,7,0,0,0,2.5722866,0,2.2352302,3,37.790001,59.599998,54.200001,57.490002,5,1,1,0,0,9,5,0,595.5,208858.91,0,0,3152.3359 -14054,17242,31366,31369,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,0,5,7.5993023,7.8155036,0,2,0,-9,4,0,-8,35.468094,0,0,1,43,2,5,1,-9,-9,2019,1,1,8,0,30,30,15,1,0,1,0,6.2227025,6.2227025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,46.209999,58.07,6,1,1,0,0,13,4,1,459.75,56845.734,0,0,3069.3428 -14054,17242,31367,-9,31366,31369,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1008.61,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,459.75,56845.734,0,0,3069.3428 -14054,17242,31368,-9,31366,31369,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.8276,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,459.75,56845.734,0,0,3069.3428 -14054,17242,31369,31366,-9,-9,1,1,1,43,1,1,2,0,2,-9,2,1,0,0,5,8.6920633,8.7059097,0,2,0,-9,4,0,8,89.946915,0,0,0,35,1,5,1,2,2,2019,1,2,6,0,46,45,15,1,0,1,0,11.435748,11.435748,0,0,0,0,0,0,0,0,1,1,0,4.2799554,0,0,0,46.209999,58.07,57.060001,57.759998,7,1,1,0,0,13,4,1,459.75,56845.734,0,0,3069.3428 -14055,17243,31370,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-960.38055,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.469131,0,0,0,47.389999,48.419998,-9,-9,6,1,1,0,0,6,1,1,285,-54011.109,0,0,904.32501 -14055,17244,31371,-9,31370,-9,2,1,1,50,3,0,0,0,2,-9,2,1,0,0,4,8.2803926,7.6315522,0,3,0,0,0,-9,0,-848.01538,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,1,8.0246277,8.0246277,0,0,0,0,0,0,0,2,1,1,0,0,0,6.1540685,3,45.849998,61.259998,-9,-9,5,1,1,0,0,6,4,1,527,0,0,0,-209.83125 -14056,17245,31372,31373,-9,-9,2,1,0,62,1,0,1,0,1,-9,2,1,0,0,2,8.7753563,8.8603735,0,2,0,-9,23,0,10,60.860344,0,0,0,52,1,3,1,2,2,2019,1,1,9,1,35,8,15,1,0,1,0,21.282389,21.282389,0,0,0,0,0,0,0,0,0,0,0,4.7607346,0,0,0,56.34,40.630001,42.360001,56.119999,6,1,1,0,0,13,5,1,879.5,2520214.5,0,0,4648.4912 -14056,17245,31373,31372,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,3,8.8260078,8.7581797,0,2,0,-9,25,0,-10,-55.6152,0,0,0,62,1,2,1,3,3,2019,1,2,11,0,45,50,15,1,0,1,0,15.047795,15.047795,0,0,0,0,0,0,0,0,0,0,0,4.8139849,0,0,0,42.360001,56.119999,56.34,40.630001,5,1,1,0,0,13,5,1,879.5,2520214.5,0,0,4648.4912 -14056,17246,31374,-9,31372,31373,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1071.3446,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.060001,58.639999,-9,-9,6,1,1,0,0,13,5,1,1617,-41767.242,0,0,0 -14057,17247,31375,31376,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,0,5,7.7294192,7.9314842,0,1,0,-9,8,0,-2,60.778522,0,0,0,57,2,3,1,3,3,2019,1,2,8,0,47,46,15,1,0,1,0,7.3307743,7.3307743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,50,49,6,1,1,0,0,11,3,1,1045,1335245.9,0,0,2236.9331 -14057,17247,31376,31375,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,0,0,0,1,0,-9,8,0,2,-58.022182,-9,0,0,55,3,5,1,3,-9,2019,1,1,10,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,51.139999,60.450001,5,1,1,0,0,11,3,1,1045,1335245.9,0,0,2236.9331 -14058,17248,31377,-9,-9,-9,1,1,1,90,3,0,0,0,1,-9,4,3,0,0,3,0,8.5850601,8.5040035,3,0,0,0,-9,0,-1038.9574,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4986067,8.6587667,0,0,56,44,-9,-9,6,1,1,0,0,9,5,1,841,461761.5,0,0,3620.8467 -14059,17249,31378,31379,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,9.4900484,10.036543,0,1,0,-9,8,0,4,-15.453862,0,0,0,49,1,3,1,-9,-9,2019,1,1,12,0,38,38,15,1,0,1,0,63.519939,63.519939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.599998,52.77,33.66,61.57,5,1,1,0,0,7,5,1,880,282129.09,0,0,25759.496 -14059,17249,31379,31378,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,3,8.8618402,8.4028664,0,1,0,-9,8,0,-4,1.5040741,0,0,0,53,1,3,1,1,-9,2019,1,2,12,1,41,43,15,1,0,1,0,16.226952,16.226952,0,0,0,0,0,0,0,0,0,0,0,4.3091884,0,0,0,33.66,61.57,44.599998,52.77,3,1,1,0,0,7,5,1,880,282129.09,0,0,25759.496 -14060,17250,31380,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,2,1,0,0,4,7.5718875,7.9594297,0,3,0,-9,0,-9,0,-918.8139,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,27,8,40,0,15,1,1,-9,0,6.9343481,6.9343481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,58.990002,-9,-9,1,1,1,0,1,11,3,0,226,199044.19,0,0,865.75775 -14060,17251,31381,-9,31380,-9,2,1,0,21,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-970.82806,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.189999,45.470001,-9,-9,2,1,1,1,1,11,1,0,1485,16213.451,0,0,832.99451 -14061,17252,31382,31383,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,0,2,5.9013171,6.1582365,0,1,0,-9,31,0,-6,64.566681,0,0,0,58,3,1,1,-9,2,2019,1,2,11,0,6,6,15,1,0,1,0,8.5581331,8.5581331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,44.16,62.490002,17.43,5,1,1,0,0,8,3,0,911,861413.44,0,0,2191.9175 -14061,17252,31383,31382,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,0,1,8.2284775,8.467411,0,1,0,-9,33,0,6,83.234673,0,0,0,52,3,2,1,3,3,2019,1,1,8,1,40,42,15,1,0,1,0,9.5942039,9.5942039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,17.43,57.57,44.16,5,1,1,0,0,8,3,0,911,861413.44,0,0,2191.9175 -14062,17253,31384,-9,31386,31388,4,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.0272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,1176.8,138467.69,0,0,1981.5592 -14062,17253,31385,-9,31386,31388,3,1,1,16,2,0,3,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.84174,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.509998,58.150002,-9,-9,5,1,1,0,0,10,3,1,1176.8,138467.69,0,0,1981.5592 -14062,17253,31386,31388,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,0,4,6.6675763,6.6971583,0,2,0,-9,8,0,0,45.075577,0,0,1,53,2,4,1,2,2,2019,1,1,20,8,16,16,15,1,1,1,0,5.7468734,5.7468734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.339996,48.279999,60.18,3,1,1,0,0,10,3,1,1176.8,138467.69,0,0,1981.5592 -14062,17253,31387,-9,31386,31388,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.2784,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,1176.8,138467.69,0,0,1981.5592 -14062,17253,31388,31386,-9,-9,1,1,1,53,1,0,3,0,2,-9,2,1,0,0,4,8.3133068,8.2490807,0,2,0,-9,8,0,9,-14.102858,0,0,0,44,2,4,1,2,2,2019,1,2,9,0,60,78,15,1,0,1,0,9.7187233,9.7187233,0,0,0,0,0,0,0,0,1,1,0,.31693459,0,0,0,48.279999,60.18,30.77,64.339996,6,1,1,0,0,10,3,1,1176.8,138467.69,0,0,1981.5592 -14063,17254,31389,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,0,4,0,6.0522032,6.155314,3,0,0,0,-9,0,-1040.0175,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.5587573,5.8148685,0,0,66.260002,25.92,-9,-9,6,1,1,0,0,5,2,1,784,105991.54,0,0,863.1427 -14064,17255,31390,31391,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,4,7.8736916,7.9877057,0,1,0,1,1,-9,0,-25.607296,0,1,1,24,2,4,1,-9,-9,2019,1,2,12,0,50,48,15,1,0,1,0,6.9207478,6.9207478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,49.439999,56.93,6,1,1,0,0,5,4,1,370,215406.34,0,0,2108.7783 -14064,17255,31391,31390,-9,-9,2,1,1,24,1,0,0,0,2,-9,2,1,0,0,4,8.0044012,8.1367245,0,1,0,-9,1,-9,0,186.42737,-9,1,0,24,1,4,1,-9,-9,2019,1,1,6,0,42,0,15,1,0,1,0,10.779878,10.779878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.439999,56.93,54.790001,55.860001,6,1,1,0,0,5,4,1,370,215406.34,0,0,2108.7783 -14065,17256,31392,-9,31397,31394,3,1,1,17,2,1,4,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.88,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,4,1,647,75392.547,0,0,4309.4507 -14065,17256,31393,-9,31397,31394,4,1,0,15,2,1,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1075.189,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,43,-9,-9,4,1,1,0,0,7,4,1,647,75392.547,0,0,4309.4507 -14065,17256,31394,31397,-9,-9,2,1,1,45,1,1,4,0,2,-9,2,1,0,0,3,8.2553549,8.3659706,0,2,0,-9,6,0,0,-103.96498,0,0,0,45,1,4,1,-9,3,2019,1,1,12,0,40,40,15,1,0,1,0,10.996191,10.996191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,40.759998,59.139999,52.5,4,1,1,0,0,7,4,1,647,75392.547,0,0,4309.4507 -14065,17256,31395,-9,31397,31394,5,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.3711,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,647,75392.547,0,0,4309.4507 -14065,17256,31396,-9,31397,31394,6,1,1,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.21362,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,4,1,647,75392.547,0,0,4309.4507 -14065,17256,31397,31394,-9,-9,1,1,0,45,1,1,4,0,1,-9,2,1,0,0,4,8.6033192,8.3443613,0,2,0,-9,6,0,0,26.104645,0,0,0,45,2,3,1,2,1,2019,1,2,5,0,34,24,15,1,0,1,0,13.147561,13.147561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,52.5,40.59,40.759998,6,1,1,0,0,7,4,1,647,75392.547,0,0,4309.4507 -14066,17257,31398,31399,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,3,0,6.8708735,6.9944034,1,0,-9,31,0,2,-73.3414,0,0,0,68,2,1,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,2.7102532,6.8991623,15.331573,1,59.709999,40.18,25.91,25.08,6,1,1,0,0,5,3,1,723.5,904924.25,0,0,2947.8059 -14066,17257,31399,31398,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,1,1,0,8.0157671,7.735167,1,0,-9,2,0,-2,-35.817406,0,0,0,70,1,3,3,3,3,2019,4,1,36,12,0,0,15,4,1,4,0,0,0,1,0,130.21922,0,0,0,0,0,1,1,0,3.296778,7.4659896,0,0,25.91,25.08,59.709999,40.18,1,1,1,0,0,5,3,1,723.5,904924.25,0,0,2947.8059 -14067,17258,31400,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,1,1,0,0,4,7.6151271,7.326066,0,3,0,0,0,-9,0,-1026.2107,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,50,15,1,0,-9,0,4.4277639,4.4277639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,13,3,1,154,-118406.91,0,0,1884.3833 -14068,17259,31401,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.731391,8.0560999,0,3,0,-9,0,0,0,-1114.0714,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,39,28,15,1,1,-9,0,8.0029612,8.0029612,0,0,0,0,0,0,0,0,0,0,0,2.0693774,0,0,0,44.02,60.700001,-9,-9,3,1,1,0,0,4,3,0,226,118019.27,0,0,651.4046 -14069,17260,31402,31405,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,3,8.7896042,8.5339699,0,2,0,-9,9,0,1,-54.528454,0,0,0,44,2,4,1,2,1,2019,1,1,8,0,48,50,15,1,0,1,0,16.819708,16.819708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.189999,49.369999,52.400002,55.580002,5,1,1,0,0,12,4,1,357.25,395070.53,0,0,3493.3916 -14069,17260,31403,-9,31405,31402,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.29297,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,4,1,357.25,395070.53,0,0,3493.3916 -14069,17260,31404,-9,31405,31402,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1032.1393,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,12,4,1,357.25,395070.53,0,0,3493.3916 -14069,17260,31405,31402,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.3140273,7.5819397,0,2,0,-9,9,0,-1,112.8605,0,0,1,45,2,3,1,2,2,2019,1,2,6,0,25,27,15,1,0,1,0,9.1488771,9.1488771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.400002,55.580002,51.189999,49.369999,5,1,1,0,0,12,4,1,357.25,395070.53,0,0,3493.3916 -14070,17261,31406,31407,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,2,8.2568665,8.5181704,6.5955067,1,0,-9,37,0,1,11.129952,0,0,0,56,3,1,1,3,-9,2019,1,2,15,4,38,38,15,1,1,1,0,12.622648,12.622648,0,0,0,0,0,0,0,27.5,1,0,1,0,6.9646854,31.928057,1,32.91,53.009998,30.6,18.530001,3,1,1,0,0,4,4,0,542,514406.81,0,0,2990.5215 -14070,17261,31407,31406,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,1,1,6.5734849,6.4639797,0,1,0,-9,37,0,-1,88.535568,0,0,0,57,2,2,1,2,2,2019,1,1,24,11,18,8,15,1,1,1,0,5.1268606,5.1268606,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.6,18.530001,32.91,53.009998,2,1,1,0,0,4,4,0,542,514406.81,0,0,2990.5215 -14070,17262,31408,-9,31407,31406,3,1,0,29,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-991.32245,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,44.669895,3,35.32,58.41,-9,-9,4,1,1,1,0,4,1,0,262,-104257.51,0,0,686.74628 -14071,17263,31409,31410,-9,-9,1,1,1,49,1,0,0,0,1,1,2,1,0,0,4,9.3425407,9.4813089,0,1,0,-9,8,0,-4,102.18412,-9,0,0,53,1,2,3,3,3,2019,2,2,10,0,50,0,15,1,0,3,0,28.192333,28.192333,0,0,0,0,0,0,0,0,0,0,0,4.8198962,0,0,0,48.869999,58.549999,56.34,40.630001,6,1,1,0,0,12,5,1,620.5,239172.59,0,0,3220.8706 -14071,17263,31410,31409,-9,-9,2,1,0,53,1,0,0,0,1,-9,6,3,0,0,2,0,0,0,1,0,-9,8,0,4,-67.562469,0,0,0,49,1,4,1,2,1,2019,3,1,6,0,0,37,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1077685,0,0,0,56.34,40.630001,48.869999,58.549999,5,1,1,0,0,12,5,1,620.5,239172.59,0,0,3220.8706 -14072,17264,31411,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,0,2,0,6.9249072,6.9358482,3,0,0,0,-9,0,-1066.7056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8663173,7.0201359,0,0,34.66,25.02,-9,-9,6,1,1,0,0,5,2,1,225,371027.63,0,0,1825.8621 -14072,17265,31412,-9,31411,-9,2,1,0,59,3,0,0,0,2,-9,2,1,0,0,5,8.0166807,8.0705948,0,3,0,0,0,-9,0,-985.92676,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,30,30,15,1,0,-9,1,11.150558,11.150558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,5,4,1,722,67211.328,0,0,1808.3116 -14073,17266,31413,31414,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,8.7721891,8.6000919,0,1,0,-9,10,0,0,-23.6164,0,0,0,52,2,4,1,-9,-9,2019,1,1,9,0,44,41,15,1,0,1,0,18.216301,18.216301,0,0,0,0,0,0,0,0,0,0,0,4.9022765,0,0,0,41.849998,56.369999,57.16,56.150002,1,1,1,0,0,4,5,1,753.5,345456.34,0,0,3404.2627 -14073,17266,31414,31413,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,7.9538021,7.5804119,0,1,0,-9,27,0,0,-83.348167,0,0,0,52,1,3,1,2,-9,2019,1,2,4,0,19,21,15,1,0,1,0,14.54757,14.54757,0,0,0,0,0,0,0,0,0,0,0,.42527422,0,0,0,57.16,56.150002,41.849998,56.369999,5,1,1,0,0,4,5,1,753.5,345456.34,0,0,3404.2627 -14074,17267,31415,31418,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,0,3,8.3297577,8.5238361,0,2,0,-9,17,0,0,60.615234,0,0,1,41,1,4,1,2,2,2019,1,2,9,0,28,30,15,1,0,1,0,21.395018,21.395018,0,0,0,0,0,0,0,0,1,1,0,2.4854202,0,0,0,50.599998,45.799999,46.919998,60.709999,6,1,1,0,0,13,5,1,574.59998,896201.31,0,0,4983.7065 -14074,17267,31416,-9,31415,31418,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1018.568,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,13,5,1,574.59998,896201.31,0,0,4983.7065 -14074,17267,31417,-9,31415,31418,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.8325,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,5,1,574.59998,896201.31,0,0,4983.7065 -14074,17267,31418,31415,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,0,4,9.0080347,8.7259665,0,2,0,-9,17,0,0,29.05986,0,0,0,41,1,3,1,2,2,2019,1,1,9,0,41,37,15,1,0,1,0,24.80632,24.80632,0,0,0,0,0,0,0,0,1,1,0,3.3220844,0,0,0,46.919998,60.709999,50.599998,45.799999,6,1,1,0,0,13,5,1,574.59998,896201.31,0,0,4983.7065 -14074,17267,31419,-9,31415,31418,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.45184,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,5,1,574.59998,896201.31,0,0,4983.7065 -14075,17268,31420,31421,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,8.3670778,8.0468435,1,0,-9,10,0,2,-18.169224,0,0,0,70,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9109912,8.0663271,0,0,57.060001,57.759998,51.77,58.57,7,1,1,0,0,7,4,1,661.5,1423593.6,0,0,3643.7446 -14075,17268,31421,31420,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.3269401,7.4674311,1,0,-9,10,0,-2,-39.528645,0,0,0,72,2,5,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.298924,7.4618688,3.973531,3,51.77,58.57,57.060001,57.759998,6,1,1,0,0,7,4,1,661.5,1423593.6,0,0,3643.7446 -14076,17269,31422,31423,-9,-9,1,1,1,82,1,0,2,0,1,-9,4,3,0,0,3,0,0,0,2,0,-9,58,0,3,-145.52264,0,0,0,79,2,5,3,2,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,57.209999,45.32,6,1,1,0,0,9,2,1,396.5,1311538.5,0,0,3899.1802 -14076,17269,31423,31422,-9,-9,2,1,0,79,1,0,2,0,2,-9,4,3,0,0,5,0,7.6915627,7.9175482,2,0,-9,58,0,-3,-57.320652,0,0,0,82,1,3,3,2,1,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.366231,7.9023576,0,0,57.209999,45.32,54,45,6,1,1,0,0,9,2,1,396.5,1311538.5,0,0,3899.1802 -14077,17270,31424,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,0,5,6.8889894,6.9907885,0,3,0,0,0,-9,0,-916.29773,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,24,20,15,1,0,-9,0,3.8672512,3.8672512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,13,2,1,387,-89359.023,0,0,1657.0819 -14078,17271,31425,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,1,2,0,6.7793136,6.9437122,3,0,0,0,-9,0,-1071.8134,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5499334,4.8764343,0,0,54.709999,27.51,-9,-9,5,2,3,0,0,8,2,1,281,899212.13,0,0,1127.5327 -14078,17272,31426,-9,-9,31425,2,1,0,40,3,0,0,0,1,-9,2,1,0,0,4,8.0404682,8.062746,0,3,0,-9,0,-9,0,-995.50323,-9,0,1,-9,-9,-9,-9,-9,1,2019,-9,0,10,1,40,0,15,1,0,-9,1,10.215892,10.215892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,55,-9,-9,5,2,3,0,0,8,4,1,548,295270.63,0,0,1638.6362 -14079,17273,31427,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,1,0,7.0242724,7.2086387,3,0,0,0,-9,0,-867.62457,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0124402,7.0756254,0,0,54.389999,15.72,-9,-9,4,1,1,0,0,11,3,1,496,-4474.3135,0,0,1206.3898 -14080,17274,31428,31429,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,0,4,8.2290411,8.1046276,0,1,0,-9,1,-9,-14,-20.699127,-9,0,0,48,1,3,1,-9,-9,2019,1,1,8,2,37,0,15,1,0,1,0,12.793788,12.793788,0,0,0,0,0,0,0,0,0,0,0,1.2856504,0,0,0,44.490002,61.790001,48.27,36.259998,6,1,1,0,0,2,5,1,1181,40446.305,0,0,5465.4971 -14080,17274,31429,31428,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,9.1887541,9.2199287,0,1,0,1,1,-9,14,103.24256,0,0,0,34,2,4,1,2,2,2019,1,2,14,5,0,50,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0172391,0,0,0,48.27,36.259998,44.490002,61.790001,6,1,1,0,0,2,5,1,1181,40446.305,0,0,5465.4971 -14081,17275,31430,-9,-9,-9,1,1,0,37,3,0,2,0,2,-9,2,1,0,0,3,7.5284657,7.0888677,0,4,0,0,0,-9,0,-839.80664,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,34,37,15,1,0,-9,0,6.1588793,6.1588793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.02,56.48,-9,-9,5,3,4,0,0,4,2,0,249.66667,-8320.2969,0,0,2463.9495 -14081,17275,31431,-9,31430,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1149.5291,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,4,2,0,249.66667,-8320.2969,0,0,2463.9495 -14081,17275,31432,-9,31430,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-900.9679,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,4,2,0,249.66667,-8320.2969,0,0,2463.9495 -14082,17276,31433,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,1,1,0,0,3,0,8.4014406,8.0972137,3,0,0,0,-9,0,-942.42407,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,6,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6100645,8.0280209,0,0,42.220001,50.91,-9,-9,6,1,1,0,0,10,4,1,328,1132027,0,0,2759.7017 -14083,17277,31434,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,0,5,9.0515671,9.1722803,0,3,0,0,0,-9,0,-1064.4967,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,5,0,38,50,15,1,0,-9,0,33.064613,33.064613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,9,5,1,294,149705.59,0,0,2976.0334 -14084,17278,31435,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,1,1,0,6.7372746,6.7955575,3,0,0,0,-9,0,-1148.1676,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9166627,0,0,39.790001,26.59,-9,-9,5,1,1,0,0,12,2,1,1664,207630.95,0,0,1789.5055 -14085,17279,31436,31437,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,9.2837267,9.0966091,7.8481803,1,0,-9,7,0,2,104.122,0,0,0,55,3,4,1,-9,2,2019,1,2,8,0,45,50,15,1,0,1,0,28.2342,28.2342,0,0,0,0,0,0,0,0,0,0,0,3.0168304,8.3873425,0,0,58.299999,52.91,54.200001,57.490002,6,1,1,0,0,2,5,1,2510,1308388.9,0,0,5461.1533 -14085,17279,31437,31436,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,0,4,6.5701079,7.189466,6.2980318,1,0,-9,7,0,-2,-54.104782,0,0,0,57,2,4,1,2,2,2019,1,1,7,0,11,11,15,1,0,1,0,6.5676928,6.5676928,0,0,0,0,0,0,0,0,0,0,0,0,6.5045886,0,0,54.200001,57.490002,58.299999,52.91,6,1,1,0,0,2,5,1,2510,1308388.9,0,0,5461.1533 -14086,17280,31438,-9,-9,-9,4,1,0,33,3,1,1,0,1,-9,2,1,0,0,4,8.3281708,8.4090309,0,3,0,-9,0,-9,0,-950.42755,-9,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,0,15,1,0,-9,1,9.3112125,9.3112125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,2,3,0,0,8,4,0,564,62634.352,0,0,1749.3486 -14087,17281,31439,-9,31441,31440,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.1449,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,4,1,411,-52707.852,0,0,2736.377 -14087,17281,31440,31441,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.4339809,8.3357973,0,2,0,-9,12,0,1,-140.61385,0,0,0,46,2,4,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,12.606107,12.606107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.150002,44.130001,46.98,59.349998,6,1,1,0,0,7,4,1,411,-52707.852,0,0,2736.377 -14087,17281,31441,31440,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.4288898,7.4356785,0,2,0,-9,12,0,-1,1.1310408,0,0,0,47,2,4,1,2,2,2019,1,1,12,1,25,25,15,1,0,1,0,8.8698397,8.8698397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,53.150002,44.130001,6,1,1,0,0,7,4,1,411,-52707.852,0,0,2736.377 -14088,17282,31442,-9,31443,31444,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.32239,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,4,1,1838.3334,16830.785,0,0,2291.459 -14088,17282,31443,31444,-9,-9,1,1,0,41,1,0,1,0,2,-9,1,1,0,0,3,7.0732131,7.2824707,0,2,0,-9,9,0,-3,8.6517649,0,0,1,44,3,4,1,-9,-9,2019,1,2,7,1,14,0,15,1,0,1,0,7.4262733,7.4262733,0,0,0,0,0,0,0,42,1,1,0,0,0,44.580021,3,47.549999,44.330002,52,55,5,1,1,0,0,2,4,1,1838.3334,16830.785,0,0,2291.459 -14088,17282,31444,31443,-9,-9,2,1,1,44,1,0,1,0,3,-9,1,1,0,0,4,8.5419788,8.5485659,0,2,0,-9,4,0,3,2.6115556,-9,0,0,41,2,3,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,13.51157,13.51157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,47.549999,44.330002,5,1,1,0,0,2,4,1,1838.3334,16830.785,0,0,2291.459 -14089,17283,31445,31446,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.035058,6.848527,1,0,-9,4,0,-5,70.33297,0,0,0,73,2,3,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8331571,7.0546246,0,0,43.43,54.299999,43.610001,56.009998,5,1,1,0,0,4,2,1,2182.5,523361.88,0,0,1540.9661 -14089,17283,31446,31445,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.7293053,6.8158083,1,0,-9,4,0,5,-47.045033,0,0,0,68,1,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6552675,7.1912923,0,0,43.610001,56.009998,43.43,54.299999,6,1,1,0,0,4,2,1,2182.5,523361.88,0,0,1540.9661 -14090,17284,31447,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,3,0,8.3466568,8.3289013,3,0,0,0,-9,0,-970.76477,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9505382,8.4443884,0,3,57.73,46.66,-9,-9,6,1,1,0,0,6,5,1,180,1241056.3,0,0,2568.3962 -14091,17285,31448,31450,-9,-9,1,1,0,29,1,2,3,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,4,0,-8,63.683155,0,1,1,37,2,4,1,2,2,2019,3,2,21,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.47726,3,23.26,59.470001,57.16,56.150002,6,1,1,0,0,4,2,0,983,92652.953,0,0,3075.7954 -14091,17285,31449,-9,31448,31450,4,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.4116,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,4,2,0,983,92652.953,0,0,3075.7954 -14091,17285,31450,31448,-9,-9,2,1,1,37,1,2,3,0,2,-9,2,1,0,0,4,7.5749168,7.806478,0,2,0,-9,4,0,8,73.247871,0,0,0,29,2,4,3,-9,-9,2019,2,1,9,1,28,30,15,1,0,3,0,7.7987647,7.7987647,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.718,3,57.16,56.150002,23.26,59.470001,7,3,4,0,0,4,2,0,983,92652.953,0,0,3075.7954 -14091,17285,31451,-9,31448,31450,3,1,1,7,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.84412,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,4,2,0,983,92652.953,0,0,3075.7954 -14091,17285,31452,-9,31448,31450,5,1,1,1,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.7341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,4,2,0,983,92652.953,0,0,3075.7954 -14092,17286,31453,31456,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,8.7377501,8.3098412,0,2,0,-9,9,0,0,-27.256456,0,0,1,42,1,4,1,-9,-9,2019,1,1,11,0,54,29,15,1,0,1,0,13.273492,13.273492,0,0,0,0,0,0,0,0,1,1,0,.50986707,0,0,0,39.77,60.220001,48.810001,59.91,6,1,1,0,0,9,5,1,972.75,681204.63,0,0,3539.27 -14092,17286,31454,-9,31453,31456,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.23755,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,972.75,681204.63,0,0,3539.27 -14092,17286,31455,-9,31453,31456,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.50781,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,9,5,1,972.75,681204.63,0,0,3539.27 -14092,17286,31456,31453,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.538269,8.7807703,0,2,0,-9,9,0,0,69.172348,0,0,0,42,1,5,1,2,2,2019,1,2,8,0,38,38,15,1,0,1,0,20.467953,20.467953,0,0,0,0,0,0,0,0,1,1,0,2.5498884,0,0,0,48.810001,59.91,39.77,60.220001,6,1,1,0,0,9,5,1,972.75,681204.63,0,0,3539.27 -14093,17287,31457,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,7.8456783,9.2515535,9.034667,3,0,0,0,-9,0,-914.61255,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9030981,0,0,47,49,-9,-9,5,3,4,0,0,8,5,0,481,448744.94,0,0,3834.0898 -14093,17288,31458,-9,31457,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.9888763,7.9941878,0,3,0,0,0,-9,0,-957.62714,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,25,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,8,4,0,291,-111803.09,0,0,479.65475 -14093,17289,31459,-9,31457,-9,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,8.1479721,8.0912666,0,3,0,0,0,-9,0,-1081.2183,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,39,0,15,1,0,-9,1,11.108306,11.108306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,8,4,0,656,-143846.2,0,0,2033.5613 -14094,17290,31460,31461,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,5,8.7404604,8.7296085,0,1,0,-9,9,0,-21,7.9868755,0,0,0,72,1,1,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,4,0,15.135077,15.135077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51.779999,25.17,7,1,1,0,0,7,5,1,743.5,2404633,0,0,5934.9492 -14094,17290,31461,31460,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,1,8.7728271,8.8763094,0,1,0,-9,9,0,21,40.253407,0,0,0,51,1,5,1,-9,3,2019,3,2,11,2,40,48,15,4,0,1,0,0,0,1,0,6.4874978,0,0,0,0,0,1,1,0,0,0,0,0,51.779999,25.17,57.060001,57.759998,5,1,1,0,0,7,5,1,743.5,2404633,0,0,5934.9492 -14095,17291,31462,31463,-9,-9,1,1,1,44,1,1,2,0,1,-9,1,1,0,0,4,2.2177145,2.3381872,0,2,0,-9,13,0,12,11.535765,0,0,0,32,2,3,3,2,2,2019,2,2,24,11,50,30,15,1,1,3,0,.023059644,.023059644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.869999,36.110001,47.939999,53.790001,2,2,3,0,0,7,1,0,437,399601.91,0,0,1625.949 -14095,17291,31463,31462,-9,-9,2,1,0,32,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,13,0,-12,-65.326027,0,0,1,44,1,4,1,2,1,2019,3,1,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.939999,53.790001,38.869999,36.110001,6,2,3,0,0,7,1,0,437,399601.91,0,0,1625.949 -14095,17291,31464,-9,31463,31462,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.5056,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,1,0,437,399601.91,0,0,1625.949 -14095,17291,31465,-9,31463,31462,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-966.58728,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,7,1,0,437,399601.91,0,0,1625.949 -14096,17292,31466,31467,-9,-9,1,1,0,73,1,0,0,0,2,-9,2,1,0,0,3,6.8516879,6.5282545,0,1,0,-9,9,0,1,-13.491517,0,0,0,72,2,4,3,3,3,2019,2,2,6,0,14,14,15,1,0,4,0,7.0048137,7.0048137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.470001,50.220001,57.73,54.529999,6,1,1,0,0,6,3,1,1208,230556.98,0,0,2773.0208 -14096,17292,31467,31466,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,4,0,6.7796364,7.131412,1,0,-9,9,0,-1,87.105545,0,0,0,73,2,3,1,3,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9059978,7.1035867,0,0,57.73,54.529999,58.470001,50.220001,6,1,1,0,0,6,3,1,1208,230556.98,0,0,2773.0208 -14097,17293,31468,31469,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,7.1286931,6.8743925,1,0,-9,55,0,4,-89.470261,0,0,0,73,2,4,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,1,0,.21386991,0,0,0,0,0,1,1,0,0,6.6896253,0,0,54,46,57.16,56.150002,6,1,1,0,0,5,2,1,725.5,640976.56,0,0,2625.6309 -14097,17293,31469,31468,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,5.7813473,5.8764782,0,1,0,-9,55,0,-4,10.4175,0,0,0,77,3,3,3,2,2,2019,4,2,6,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7077723,0,3.839798,3,57.16,56.150002,54,46,6,1,1,0,0,5,2,1,725.5,640976.56,0,0,2625.6309 -14098,17294,31470,31473,-9,-9,1,1,0,40,1,0,2,0,2,-9,1,1,0,0,3,7.8238702,7.7092595,0,2,0,-9,21,0,-4,49.594734,0,0,1,44,2,3,1,2,2,2019,1,2,16,4,25,1,15,1,1,1,0,10.998789,10.998789,0,0,0,0,0,0,0,0,1,1,0,6.5090404,0,0,0,47.700001,41.5,52,54.509998,6,1,1,0,0,10,4,1,430.5,1573889.8,0,0,5283.5889 -14098,17294,31471,-9,31470,31473,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,7.3068814,7.4631915,0,2,0,0,0,-9,0,-1010.8226,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,45,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,63.400002,-9,-9,6,1,1,0,0,10,4,1,430.5,1573889.8,0,0,5283.5889 -14098,17294,31472,-9,31470,31473,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-996.02283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,10,4,1,430.5,1573889.8,0,0,5283.5889 -14098,17294,31473,31470,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.8465939,8.3435717,0,2,0,-9,21,0,4,54.836983,0,0,0,40,2,3,1,2,3,2019,1,1,8,0,41,42,15,1,0,1,0,15.04381,15.04381,0,0,0,0,0,0,0,0,1,1,0,2.2840459,0,0,0,52,54.509998,47.700001,41.5,6,1,1,0,0,10,4,1,430.5,1573889.8,0,0,5283.5889 -14099,17295,31474,31475,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.066515,8.184268,1,0,1,1,-9,4,45.591908,0,0,0,65,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2401981,8.1005325,0,0,57.330002,53.459999,58.549999,46.110001,6,1,1,0,0,12,4,1,678.5,1467102,0,0,3055.9839 -14099,17295,31475,31474,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,6.9673476,6.8418918,1,0,-9,1,-9,-4,30.396208,-9,0,0,69,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2443204,0,0,58.549999,46.110001,57.330002,53.459999,1,1,1,0,0,12,4,1,678.5,1467102,0,0,3055.9839 -14100,17296,31476,-9,31478,31479,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1075.6842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,2,1,0,830.75,118196.96,0,0,3319.001 -14100,17296,31477,-9,31478,31479,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.9044,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,830.75,118196.96,0,0,3319.001 -14100,17296,31478,31479,-9,-9,2,1,0,42,1,0,2,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,14,0,0,0,1,28,2,3,3,-9,-9,2019,4,1,24,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.06803,3,29.18,35.709999,40.900002,56.09,1,1,1,0,0,2,1,0,830.75,118196.96,0,0,3319.001 -14100,17296,31479,31478,-9,-9,1,1,1,28,1,0,2,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,6,0,-14,0,0,1,0,42,2,1,3,-9,-9,2019,4,2,16,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,130.2991,1,40.900002,56.09,29.18,35.709999,4,1,1,0,0,2,1,0,830.75,118196.96,0,0,3319.001 -14101,17297,31480,31481,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,6.2716928,7.8488488,7.4018574,1,0,-9,42,0,3,-164.7392,0,0,0,64,1,5,1,2,2,2019,3,2,6,0,16,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2661428,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,10,5,1,782,975455.75,0,0,4080.0735 -14101,17297,31481,31480,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,0,5,8.8286295,8.8750677,0,1,0,-9,42,0,-3,42.436447,0,0,0,67,2,4,3,2,2,2019,2,1,9,0,41,38,15,1,0,4,0,17.290174,17.290174,0,0,0,0,0,0,0,0,1,1,0,6.0092983,0,0,0,54.099998,59.110001,57.16,56.150002,7,1,1,0,0,10,5,1,782,975455.75,0,0,4080.0735 -14102,17298,31482,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,7.4805932,6.9399643,3,0,0,0,-9,0,-931.7785,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.1731964,7.271769,16.244909,3,51,46,-9,-9,5,2,3,0,0,8,2,1,1471,109895.35,0,0,1377.4008 -14103,17299,31483,31484,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,5,0,8.9387007,8.5189438,1,0,-9,47,0,-1,37.010426,0,0,0,73,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.393713,9.0562134,0,0,54.349998,57.84,63.080002,37.549999,7,1,1,0,0,9,5,1,279,2287676,0,0,5553.6201 -14103,17299,31484,31483,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,2,0,6.0250044,5.7290134,1,0,-9,47,0,1,57.16925,0,0,0,72,1,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3645711,6.0012593,0,0,63.080002,37.549999,54.349998,57.84,7,1,1,0,0,9,5,1,279,2287676,0,0,5553.6201 -14104,17300,31485,31486,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,39,0,8,-2.1424868,0,0,0,62,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.380001,51.32,41.200001,30.23,6,1,1,0,0,9,2,1,444.5,354823.03,0,0,324.34985 -14104,17300,31486,31485,-9,-9,2,1,1,62,1,0,0,0,3,-9,4,3,0,0,1,0,6.0699959,6.3002863,1,0,-9,39,0,-8,43.622627,0,0,0,70,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.7974539,6.0735717,0,1,41.200001,30.23,41.380001,51.32,5,1,1,0,0,9,2,1,444.5,354823.03,0,0,324.34985 -14105,17301,31487,-9,-9,-9,1,1,0,63,3,0,1,0,2,-9,4,3,0,1,5,0,6.9051809,6.9173794,4,0,0,0,-9,0,-1182.5359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.6240085,7.1406369,35.115536,3,57.060001,57.759998,-9,-9,5,1,1,0,0,2,2,1,316,301966.19,0,0,1585.8459 -14105,17302,31488,-9,31487,-9,2,1,0,31,2,0,1,0,2,-9,2,1,0,0,3,0,6.1066689,6.1621313,3,0,0,0,-9,0,-1082.678,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,7,0,20,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9633384,0,0,0,45.580002,45.139999,-9,-9,6,1,1,0,0,2,2,1,1108,-58569.891,0,0,936.76874 -14105,17302,31489,-9,31488,-9,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1032.7245,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,1,1108,-58569.891,0,0,936.76874 -14106,17303,31490,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,0,3,8.2167025,8.2792902,0,3,0,0,0,-9,0,-926.784,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,42,51,15,1,0,-9,0,10.486351,10.486351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,49.810001,-9,-9,6,1,1,0,0,10,4,0,702,96186.719,0,0,1289.6487 -14107,17304,31491,31492,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,2,7.4379468,7.2559481,5.8961983,1,0,-9,44,0,-1,18.247505,0,0,0,62,2,4,3,3,2,2019,2,2,17,5,15,15,15,1,1,4,0,10.602608,10.602608,0,0,0,0,0,0,0,0,0,0,0,6.6865792,6.2968106,0,0,45.02,47.07,60.119999,54.799999,6,1,1,0,0,1,4,1,378,1207470.3,0,0,2199.98 -14107,17304,31492,31491,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.8139067,8.2969084,1,0,-9,44,0,1,.27821812,0,0,0,61,3,2,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7168574,7.816824,0,0,60.119999,54.799999,45.02,47.07,6,1,1,0,0,1,4,1,378,1207470.3,0,0,2199.98 -14108,17305,31493,31494,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,5.8755355,5.3815498,1,0,-9,7,0,4,58.144981,0,0,0,72,3,1,3,-9,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.77300215,5.9849668,0,1,54,46,35.169998,15.39,6,1,1,0,0,7,2,0,1019.5,277317.13,0,0,1773.7568 -14108,17305,31494,31493,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,49,0,-4,33.014236,0,0,0,76,3,3,3,2,-9,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.65533,2,35.169998,15.39,54,46,4,1,1,0,1,7,2,0,1019.5,277317.13,0,0,1773.7568 -14109,17306,31495,-9,31496,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1084.6532,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,0,603,-16895.822,0,0,1560.4694 -14109,17306,31496,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,2,1,0,0,3,7.5070138,7.3975797,5.8024144,4,0,0,0,-9,0,-1063.696,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,25,20,15,1,0,-9,0,8.9849176,8.9849176,0,0,0,0,0,0,0,0,1,0,1,4.9578238,0,0,0,48.779999,35.419998,-9,-9,6,1,1,0,1,2,2,0,603,-16895.822,0,0,1560.4694 -14109,17306,31497,-9,31496,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1043.5272,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,2,0,603,-16895.822,0,0,1560.4694 -14110,17307,31498,-9,31500,31505,4,1,0,6,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.6083,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31499,-9,31500,31505,2,1,0,11,2,1,6,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-881.64514,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,2,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31500,31505,-9,-9,1,1,0,30,1,1,6,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-15,-120.53203,0,0,1,45,2,3,1,3,3,2019,3,5,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.080002,52.57,48.349998,56.59,7,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31501,-9,31500,31505,3,1,0,8,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.72473,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31502,-9,31500,31505,7,1,0,4,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.6533,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31503,-9,31500,31505,6,1,0,5,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.9713,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31504,-9,31500,31505,8,1,0,0,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-955.73633,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14110,17307,31505,31500,-9,-9,5,1,1,45,1,1,6,0,2,-9,2,1,0,0,3,7.5967813,7.3415151,0,2,0,-9,7,0,15,-20.697622,0,0,0,30,3,3,3,-9,-9,2019,2,1,7,0,24,35,15,1,0,3,0,7.4978247,7.4978247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.349998,56.59,44.080002,52.57,6,3,4,0,0,7,2,0,647.5,18871.111,0,0,2028.0355 -14111,17308,31506,31507,-9,-9,1,1,0,55,1,0,1,0,1,-9,8,3,1,1,1,0,0,0,2,0,-9,2,0,9,0,0,0,0,46,2,5,3,-9,-9,2019,4,2,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.889999,14,59.43,58.049999,5,1,1,0,0,11,1,0,419.5,-146597.88,0,0,1127.8878 -14111,17308,31507,31506,-9,-9,2,1,1,46,1,0,1,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,2,0,0,0,0,0,0,55,1,1,3,2,2,2019,4,1,3,0,0,42,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.7611694,0,25.365753,1,59.43,58.049999,49.889999,14,6,1,1,1,0,11,1,0,419.5,-146597.88,0,0,1127.8878 -14112,17309,31508,-9,-9,-9,1,1,0,75,3,0,1,0,3,-9,4,3,0,1,3,0,0,0,4,0,-9,0,-9,0,-1135.4371,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,27.910416,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,6,1,1,1083,8386.0439,0,0,1372.6113 -14112,17310,31509,-9,31508,-9,2,1,0,50,2,0,1,0,3,-9,1,1,0,0,4,6.666779,6.9554734,0,3,0,-9,0,-9,0,-875.15106,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,16,0,15,1,0,-9,1,9.9532347,9.9532347,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.44046,3,45.91,59.889999,-9,-9,6,1,1,0,0,6,2,1,667.5,58918.191,0,0,1006.3646 -14112,17310,31510,-9,31509,-9,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-957.93512,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,1,667.5,58918.191,0,0,1006.3646 -14113,17311,31511,-9,31512,31513,4,1,1,17,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-924.89301,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,-9,-9,7,1,1,0,0,6,4,1,1712.6666,17712.857,0,0,2477.8958 -14113,17311,31512,31513,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,0,3,6.8332396,7.1531019,0,2,0,-9,1,-9,0,-27.768793,-9,0,0,47,2,4,1,3,-9,2019,1,2,15,4,30,0,15,1,1,1,0,3.3964329,3.3964329,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.677392,3,36.400002,41.599998,52,55,6,1,1,0,0,6,4,1,1712.6666,17712.857,0,0,2477.8958 -14113,17311,31513,31512,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.604557,9.0278835,0,2,0,-9,1,-9,0,49.078323,-9,0,0,47,3,3,1,3,3,2019,1,1,9,1,45,0,15,1,0,1,0,15.043541,15.043541,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,55,36.400002,41.599998,6,1,1,0,0,6,4,1,1712.6666,17712.857,0,0,2477.8958 -14113,17312,31514,-9,31512,31513,3,1,0,21,2,0,1,0,2,-9,8,3,1,1,4,0,0,0,3,0,-9,0,-9,0,-978.53345,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7508075,0,0,0,46,58,-9,-9,5,1,1,0,0,6,1,1,688,13102.162,0,0,142.2039 -14114,17313,31515,31516,-9,-9,2,1,1,58,1,0,0,0,1,-9,1,1,0,0,5,7.8421679,7.8651309,0,1,0,-9,10,0,-4,-60.820084,0,0,0,62,1,4,1,1,1,2019,1,1,7,0,32,30,15,1,0,1,0,12.209239,12.209239,0,0,0,0,0,0,0,0,0,0,0,6.2102208,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,5,4,1,1548.5,977364.88,0,0,2864.9165 -14114,17313,31516,31515,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,0,4,7.2222877,7.7552686,7.3626757,1,0,-9,10,0,4,94.644241,0,0,0,58,1,5,1,2,2,2019,1,2,6,0,30,30,15,1,0,1,0,6.3993783,6.3993783,0,0,0,0,0,0,0,0,0,0,0,1.7158587,7.7379217,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,5,4,1,1548.5,977364.88,0,0,2864.9165 -14114,17314,31517,-9,31516,31515,3,1,1,22,2,0,0,0,1,1,97,3,0,0,3,6.7573824,6.2762027,0,3,0,0,0,-9,0,-1092.4991,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.549999,60.77,-9,-9,5,1,1,0,0,5,2,1,3623,17582.174,0,0,1194.1113 -14115,17315,31518,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,5,8.4998541,8.5069551,0,3,0,0,0,-9,0,-949.68219,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,35,35,15,1,0,-9,0,17.17885,17.17885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,5,0,2546,205409.56,0,0,2228.3843 -14116,17316,31519,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,2,1,0,0,4,9.2079391,9.2595329,0,4,0,-9,0,1,0,-951.35156,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,35,35,15,1,1,-9,0,21.653971,21.653971,0,0,0,0,0,0,0,0,0,0,0,8.4571037,0,0,0,33.139999,64.629997,-9,-9,5,4,2,0,0,8,4,1,411.66666,551617.63,0,0,4303.7075 -14116,17316,31520,-9,31519,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-986.06195,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,4,1,411.66666,551617.63,0,0,4303.7075 -14116,17316,31521,-9,31519,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-869.17896,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,4,1,411.66666,551617.63,0,0,4303.7075 -14117,17317,31522,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,2,1,0,0,3,8.1917048,8.2979994,0,3,0,0,0,-9,0,-1133.9701,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,39,15,1,0,-9,0,8.3091297,8.3091297,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.400002,36.459999,-9,-9,6,1,1,0,0,12,4,0,2912,321032.19,0,0,955.25006 -14118,17318,31523,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,6.3434272,6.5423594,3,0,0,0,-9,0,-1057.7706,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0768771,6.5180798,0,0,53.860001,44.130001,-9,-9,7,1,1,0,0,9,2,1,1591,66913.313,0,0,109.9742 -14119,17319,31524,31525,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,4,0,7.0716963,7.2437825,1,0,-9,38,0,-1,-6.5256338,0,0,0,73,1,4,3,3,3,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,1,0,28.602627,2.4043889,0,0,0,0,1,1,0,2.7866371,7.4388933,0,0,51.240002,58.84,64.470001,51.450001,6,1,1,0,0,12,4,1,793.5,1167246.5,0,0,4565.835 -14119,17319,31525,31524,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,8.1475477,8.2199087,1,0,-9,4,0,1,-39.044296,-9,0,0,72,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.1569562,7.9968791,72.54705,1,64.470001,51.450001,51.240002,58.84,6,1,1,0,0,12,4,1,793.5,1167246.5,0,0,4565.835 -14119,17320,31526,-9,31524,31525,3,1,0,28,2,0,0,0,1,1,2,1,0,0,4,7.7588234,7.9198112,0,3,0,0,0,-9,0,-1048.5161,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,10,2,47,0,15,1,0,-9,1,7.2067323,7.2067323,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1708715,3,43.27,56.93,-9,-9,6,1,1,0,0,12,3,1,286,88255.508,0,0,1258.7596 -14120,17321,31527,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,0,4,8.6576538,8.7413721,5.1920156,3,0,0,0,-9,0,-1008.8766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,37,15,1,0,-9,0,13.749483,13.749483,0,0,0,0,0,0,0,2,0,0,0,6.4349313,5.5567245,0,3,52.580002,51.279999,-9,-9,7,1,1,0,0,8,5,1,1301,837496.56,0,0,2069.271 -14121,17322,31528,31529,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.327105,7.4646363,1,0,-9,3,0,6,-17.59977,0,0,0,67,3,1,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,4.304842,0,0,0,0,41.560684,120,1,1,0,6.2349524,7.5614524,119.84359,1,53.119999,37.599998,36.889999,18.549999,7,1,1,0,0,11,2,1,998,476891.19,0,0,2789.9492 -14121,17322,31529,31528,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,3,0,-6,-39.384609,0,0,0,73,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,41.928787,0,0,2.3813758,0,0,1,1,0,.87668741,0,0,0,36.889999,18.549999,53.119999,37.599998,6,1,1,0,0,11,2,1,998,476891.19,0,0,2789.9492 -14122,17323,31530,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,4,5.9842033,7.8243885,7.6887388,3,0,0,0,-9,0,-1048.7579,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,2,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3481536,7.8644505,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,7,4,1,328,771423.94,0,0,2527.4861 -14123,17324,31531,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,4,0,6.9197903,7.1259732,3,0,0,0,-9,0,-990.99805,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2277379,0,0,37.049999,59.959999,-9,-9,6,1,1,0,0,8,2,1,505,51012.52,0,0,1183.924 -14124,17325,31532,31533,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,0,2,8.5396814,8.9898796,0,2,0,-9,8,0,3,-18.773779,0,0,0,41,2,3,1,3,3,2019,1,2,12,1,41,38,15,1,0,1,0,17.578323,17.578323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.509998,37.080002,48.150002,48.009998,3,2,3,0,1,6,4,1,1176.6,320341.41,0,0,4406.3379 -14124,17325,31533,31532,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,0,3,8.2598972,8.1609821,0,2,0,-9,8,0,-3,27.426134,0,0,1,44,2,2,1,3,3,2019,1,1,8,1,37,23,15,1,0,1,0,8.9808722,8.9808722,0,0,0,0,0,0,0,0,1,1,0,7.1009583,0,0,0,48.150002,48.009998,58.509998,37.080002,5,2,3,0,1,6,4,1,1176.6,320341.41,0,0,4406.3379 -14124,17325,31534,-9,31533,31532,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.42175,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,6,4,1,1176.6,320341.41,0,0,4406.3379 -14124,17325,31535,-9,31533,31532,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1080.8118,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,6,4,1,1176.6,320341.41,0,0,4406.3379 -14124,17325,31536,-9,31533,31532,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.60944,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,6,4,1,1176.6,320341.41,0,0,4406.3379 -14125,17326,31537,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,2,1,0,0,4,9.6211939,10.001234,0,3,0,0,0,-9,0,-1063.0173,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,51,48,15,1,0,-9,0,32.386734,32.386734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.560001,52.330002,-9,-9,6,1,1,0,0,12,5,1,255,1197836.4,0,0,2789.7124 -14126,17327,31538,-9,-9,-9,1,1,1,82,3,0,0,0,1,-9,4,3,0,0,4,0,8.6200294,8.3204393,3,0,0,0,-9,0,-1154.8134,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3384771,8.5809126,7.8478088,3,49.439999,56.93,-9,-9,6,1,1,0,0,11,5,1,166,1775844.6,0,0,3450.3679 -14127,17328,31539,31540,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,4.7172618,4.9461603,1,0,-9,9,0,2,-175.05212,0,0,0,76,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,.073080428,0,0,0,0,0,1,1,0,0,4.5387282,0,0,53.900002,42.630001,54.369999,54.799999,6,1,1,0,0,10,2,1,367.5,308125.84,0,0,1671.025 -14127,17328,31540,31539,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,3.5007935,3.4517033,1,0,-9,9,0,-2,-61.319313,0,0,0,78,2,3,3,3,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.512074,3.5868616,0,0,54.369999,54.799999,53.900002,42.630001,6,1,1,0,0,10,2,1,367.5,308125.84,0,0,1671.025 -14128,17329,31541,-9,31542,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,5.1950026,4.890605,4,0,0,0,-9,0,-994.83533,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4485569,0,0,0,41.450001,60.439999,-9,-9,6,1,1,0,0,12,4,0,633.5,534996.63,0,0,2454.0771 -14128,17329,31542,-9,-9,-9,1,1,0,40,2,0,1,0,1,-9,2,1,0,0,2,8.7730379,8.7529593,5.0286012,4,0,0,0,-9,0,-994.98895,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,35,44,15,1,1,-9,0,20.347311,20.347311,0,0,0,0,0,0,0,0,1,1,0,5.276216,0,0,0,26.450001,55.98,-9,-9,3,1,1,0,0,12,4,0,633.5,534996.63,0,0,2454.0771 -14129,17330,31543,31544,-9,-9,2,1,1,65,1,0,0,0,3,-9,1,1,0,0,3,4.0123801,4.4321322,0,1,0,-9,9,0,-4,44.808907,0,0,0,69,3,2,3,3,3,2019,2,1,10,1,33,55,15,1,0,4,0,.15150718,.15150718,0,0,0,0,0,0,0,0,1,1,0,8.3103514,0,0,0,52,48,21.16,41.990002,5,1,1,0,0,7,2,1,360,568111.63,0,0,2747.1233 -14129,17330,31544,31543,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,2,0,7.4158344,7.3337827,1,0,-9,42,0,4,-110.05853,0,0,0,65,3,3,1,3,3,2019,3,2,24,11,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9036584,7.2329769,3.7025852,3,21.16,41.990002,52,48,3,1,1,0,0,7,2,1,360,568111.63,0,0,2747.1233 -14130,17331,31545,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-850.44427,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.090338357,0,0,0,53,46,-9,-9,5,1,1,0,0,12,1,0,886,21833.338,0,0,1912.015 -14131,17332,31546,31548,-9,-9,1,1,0,42,1,0,1,0,3,-9,2,1,0,0,3,7.3948765,7.2878118,0,2,0,-9,17,0,-7,-81.299248,0,0,1,49,2,4,1,3,3,2019,1,2,12,1,19,19,15,1,0,1,0,9.1296625,9.1296625,0,0,0,0,0,0,0,0,1,1,0,4.541358,0,0,0,46.27,57.299999,52.82,53.970001,6,1,1,0,0,4,5,1,461.33334,382940.28,0,0,3884.2883 -14131,17332,31547,-9,31546,31548,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-902.25977,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,461.33334,382940.28,0,0,3884.2883 -14131,17332,31548,31546,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.9550152,8.7081594,0,2,0,-9,7,0,7,-53.135918,0,0,0,42,3,3,1,-9,-9,2019,1,1,8,0,37,48,15,1,0,1,0,17.50046,17.50046,0,0,0,0,0,0,0,0,1,1,0,4.8178611,0,0,0,52.82,53.970001,46.27,57.299999,6,1,1,0,0,4,5,1,461.33334,382940.28,0,0,3884.2883 -14132,17333,31549,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.1802998,8.0108376,0,3,0,-9,0,-9,0,-1211.4689,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,0,15,1,0,-9,0,11.970901,11.970901,0,0,0,0,0,0,0,0,0,0,0,5.0509038,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,4,0,684,104627.52,0,0,1741.8293 -14133,17334,31550,31552,-9,-9,2,1,1,32,1,0,1,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,9,0,1,0,0,0,0,31,3,2,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.16974583,3,42.639999,50.880001,52.240002,50.75,4,1,1,1,0,5,1,0,1527.3334,-42877.711,0,0,1816.698 -14133,17334,31551,-9,31552,31550,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1104.5513,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,1,0,1527.3334,-42877.711,0,0,1816.698 -14133,17334,31552,31550,-9,-9,1,1,0,31,1,0,1,0,3,-9,3,3,0,1,2,0,0,0,2,0,-9,9,0,-1,0,0,0,1,32,2,3,3,3,-9,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.240002,50.75,42.639999,50.880001,6,1,1,1,0,5,1,0,1527.3334,-42877.711,0,0,1816.698 -14134,17335,31553,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1084.2609,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.280001,27.51,-9,-9,4,1,1,0,0,9,1,0,1225,102319.96,0,0,1221.2191 -14135,17336,31554,31555,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,1,3,0,4.6990638,4.764122,1,0,-9,1,-9,9,25.220507,-9,0,0,70,3,4,3,-9,-9,2019,4,3,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.5824122,4.4169145,122.35235,1,57.330002,53.459999,62.25,45.630001,7,1,1,0,0,12,1,1,490,86168.617,0,0,1733.7836 -14135,17336,31555,31554,-9,-9,3,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,1,-9,0,21.413471,-9,0,0,79,3,3,3,-9,-9,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,14.871758,0,0,0,0,0,1,1,0,7.3486438,0,0,0,62.25,45.630001,57.330002,53.459999,6,1,1,0,0,12,1,1,490,86168.617,0,0,1733.7836 -14135,17337,31556,-9,31555,31554,1,1,1,45,2,0,0,0,2,-9,2,1,0,0,4,8.1008329,8.0851898,0,3,0,0,0,-9,0,-987.39557,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,37,35,15,1,0,-9,1,10.787023,10.787023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,4,1,81,319518.94,0,0,1763.9197 -14136,17338,31557,31558,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,7.224226,7.1193666,1,0,-9,48,0,-6,50.782967,0,0,0,74,2,4,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2257552,7.0480685,0,0,40.290001,42.139999,63.240002,42.389999,3,1,1,0,0,2,3,1,508.5,1437717.5,0,0,3133.4685 -14136,17338,31558,31557,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.1266761,7.2435675,1,0,-9,48,0,6,-10.850588,0,0,0,68,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8952219,7.6406064,4.342504,3,63.240002,42.389999,40.290001,42.139999,6,1,1,0,0,2,3,1,508.5,1437717.5,0,0,3133.4685 -14137,17339,31559,31560,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,1,1,0,6.3334446,6.8245611,1,0,-9,50,0,3,120.72957,0,0,0,65,3,2,3,3,2,2019,4,2,24,9,0,0,15,4,1,3,0,0,0,1,0,131.85005,0,0,0,0,0,1,1,0,0,6.6788044,0,0,24,25.700001,46.32,53.439999,5,1,1,0,0,7,2,1,1096,104019.05,0,0,743.34845 -14137,17339,31560,31559,-9,-9,2,1,0,65,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,50,0,-3,-58.488903,0,0,0,68,3,1,3,3,3,2019,4,1,12,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.37254,1,46.32,53.439999,24,25.700001,6,1,1,0,0,7,2,1,1096,104019.05,0,0,743.34845 -14138,17340,31561,31562,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,5,0,7.4673276,7.4285598,1,0,-9,7,0,-1,-22.907635,0,0,0,67,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7448158,7.4644508,0,0,58.049999,54.52,59.529999,56.439999,6,1,1,0,0,2,2,1,260,822819.13,0,0,2553.1384 -14138,17340,31562,31561,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,1,-88.013649,0,0,0,66,2,5,3,-9,-9,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,58.049999,54.52,7,1,1,0,0,2,2,1,260,822819.13,0,0,2553.1384 -14139,17341,31563,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,3,0,6.9821062,6.9957108,3,0,0,0,-9,0,-1064.166,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0835376,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,4,2,1,2008,492732.06,0,0,411.41907 -14140,17342,31564,31565,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,4.9262547,5.055089,1,0,-9,51,0,5,64.681404,0,0,0,70,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3431108,5.200335,0,0,53.459999,42.77,54.369999,54.799999,6,1,1,0,0,7,2,0,373.5,1435411.9,0,0,1146.5911 -14140,17342,31565,31564,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-5,101.37054,0,0,0,75,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.3411622,0,0,0,54.369999,54.799999,53.459999,42.77,7,1,1,0,0,7,2,0,373.5,1435411.9,0,0,1146.5911 -14141,17343,31566,31567,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,8.8287687,8.5695219,0,2,0,-9,8,0,4,130.30246,0,0,0,43,1,4,1,-9,-9,2019,1,1,9,1,45,45,15,1,0,1,0,18.02533,18.02533,0,0,0,0,0,0,0,0,1,1,0,1.5709161,0,0,0,52,55,46.099998,59.990002,6,2,3,0,0,9,5,1,845.33331,1139484.3,0,0,5240.0767 -14141,17343,31567,31566,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.9112139,8.7331905,0,2,0,-9,20,0,-4,1.2849565,0,0,1,47,1,4,1,3,3,2019,1,2,11,0,40,38,15,1,0,1,0,20.612255,20.612255,0,0,0,0,0,0,0,0,1,1,0,6.9693065,0,0,0,46.099998,59.990002,52,55,5,2,3,0,0,9,5,1,845.33331,1139484.3,0,0,5240.0767 -14141,17343,31568,-9,31567,31566,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.49329,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,5,1,845.33331,1139484.3,0,0,5240.0767 -14142,17344,31569,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1067.0601,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,35.5,33.439999,-9,-9,2,2,3,0,1,4,1,1,1394.5,11436.539,0,0,1350.8176 -14142,17344,31570,-9,31569,-9,4,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-973.40143,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,4,1,1,1394.5,11436.539,0,0,1350.8176 -14142,17345,31571,-9,31572,-9,5,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-950.56891,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,4,5,1,273,-89237.914,0,0,2882.7998 -14142,17345,31572,-9,31569,-9,2,1,0,21,2,0,1,0,2,-9,2,1,0,1,5,8.4995575,8.4993238,0,3,0,0,0,-9,0,-980.70874,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,5,60,36,15,1,1,-9,1,8.6722097,8.6722097,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.779999,64.279999,-9,-9,5,2,3,0,0,4,5,1,273,-89237.914,0,0,2882.7998 -14142,17346,31573,-9,31569,-9,3,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,7.7594099,7.949192,0,3,0,0,0,-9,0,-946.94458,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.25,45.630001,-9,-9,5,2,3,0,1,4,3,1,59,-51295.703,0,0,1472.0032 -14143,17347,31574,-9,31576,31575,1,1,0,36,3,0,0,0,1,-9,2,1,0,0,4,8.0970373,8.1535225,0,3,0,0,0,-9,0,-1006.9744,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,38,40,15,1,0,-9,1,9.9472733,9.9472733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,2,3,0,0,8,4,1,773,192779.67,0,0,1509.7328 -14143,17348,31575,31576,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,6.8100524,7.2834826,1,0,-9,51,0,9,25.117617,0,0,0,70,1,3,3,3,3,2019,4,3,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.0931554,21.809813,3,54,46,51,46,6,2,3,0,0,8,3,1,366,1084847.9,0,0,2561.7217 -14143,17348,31576,31575,-9,-9,3,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,7.3075671,7.119637,1,0,-9,51,0,0,-116.88073,0,0,0,79,1,3,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.446938,22.521143,3,51,46,54,46,5,2,3,0,0,8,3,1,366,1084847.9,0,0,2561.7217 -14143,17349,31577,-9,31576,31575,4,1,0,46,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-959.49792,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,2,3,0,0,8,1,1,422,6028.8901,0,0,746.10968 -14144,17350,31578,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1025.3875,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.469999,21.77,-9,-9,1,1,1,0,1,12,1,0,196,0,0,0,114.9119 -14145,17351,31579,31580,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,0,5,8.859952,9.3387985,0,1,0,-9,9,0,1,9.6820726,0,0,0,35,1,4,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,27.999388,27.999388,0,0,0,0,0,0,0,0,0,0,0,2.8316832,0,0,0,51.73,58.82,57.16,56.150002,6,1,1,0,0,2,5,1,750,184214.73,0,0,4386.2637 -14145,17351,31580,31579,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,4,8.3059568,8.5098934,0,1,0,-9,9,0,-1,75.644806,0,0,1,36,1,5,1,-9,-9,2019,1,1,5,0,37,37,15,1,0,1,0,11.339969,11.339969,0,0,0,0,0,0,0,0,0,0,0,4.4574313,0,0,0,57.16,56.150002,51.73,58.82,6,1,1,0,0,2,5,1,750,184214.73,0,0,4386.2637 -14146,17352,31581,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-995.14014,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.64,39.029999,-9,-9,2,1,1,0,0,9,1,0,166,7749.5317,0,0,296.67953 -14147,17353,31582,31583,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,7.2304893,7.1074891,0,1,0,-9,31,0,0,-102.69091,0,0,0,51,2,3,1,3,3,2019,1,2,9,0,23,22,15,1,0,1,0,6.7423553,6.7423553,0,0,0,0,0,0,0,0,0,0,0,3.6586332,0,0,0,47.009998,58,30.639999,56.25,5,1,1,0,0,10,5,1,553.5,1488934.5,0,0,3409.9854 -14147,17353,31583,31582,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.8685102,8.7796192,7.3360152,1,0,-9,31,0,0,84.446548,0,0,0,51,2,4,1,-9,2,2019,1,1,23,11,38,38,15,1,1,1,0,12.67786,12.67786,0,0,0,0,0,0,0,0,0,0,0,3.748641,7.4689817,0,0,30.639999,56.25,47.009998,58,3,1,1,0,0,10,5,1,553.5,1488934.5,0,0,3409.9854 -14147,17354,31584,-9,31582,31583,3,1,0,22,2,0,0,0,2,0,7,2,0,0,4,7.3879189,7.1695118,0,3,0,0,0,-9,0,-1054.9694,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,23,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,10,3,1,591,-12166.95,0,0,-408.69217 -14148,17355,31585,31587,-9,-9,2,1,1,50,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,28,0,-3,7.9878559,0,0,0,53,1,3,1,2,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9346032,0,0,0,43.939999,58,57.34,39.889999,3,3,4,1,0,8,4,1,481.66666,132070.61,0,0,2610.415 -14148,17355,31586,-9,31587,31585,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.88696,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,4,1,481.66666,132070.61,0,0,2610.415 -14148,17355,31587,31585,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,0,3,8.8214264,8.7607288,0,2,0,-9,28,0,3,65.167427,0,0,0,50,2,4,3,3,3,2019,2,2,10,0,45,51,15,1,0,3,0,19.627264,19.627264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,39.889999,43.939999,58,6,3,4,0,0,8,4,1,481.66666,132070.61,0,0,2610.415 -14149,17356,31588,-9,31592,31589,5,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1056.4211,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,0,438.20001,127442.58,0,0,4175.5991 -14149,17356,31589,31592,-9,-9,2,1,1,35,1,0,3,0,2,-9,2,1,0,0,4,8.3943558,8.2609577,0,2,0,-9,7,0,-2,170.17534,0,0,0,37,1,4,1,-9,-9,2019,1,1,10,1,37,37,15,1,0,1,0,13.242392,13.242392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,55.790001,52.619999,5,1,1,0,0,9,4,0,438.20001,127442.58,0,0,4175.5991 -14149,17356,31590,-9,31592,31589,4,1,1,16,2,0,3,1,3,-9,7,2,0,0,4,4.238163,4.5209446,0,2,0,0,0,-9,0,-996.07513,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,3,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,1,9,4,0,438.20001,127442.58,0,0,4175.5991 -14149,17356,31591,-9,31592,31589,6,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.7272,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,0,438.20001,127442.58,0,0,4175.5991 -14149,17356,31592,31589,-9,-9,1,1,0,37,1,0,3,0,1,1,2,1,0,1,4,8.4696083,8.8366022,6.777061,2,0,-9,7,0,2,-82.907913,-9,0,1,35,2,4,1,2,1,2019,1,2,8,0,42,0,15,1,0,1,0,13.294097,13.294097,0,0,0,0,0,0,0,27.5,1,1,0,7.104857,0,26.864697,3,55.790001,52.619999,50,57,6,1,1,0,0,9,4,0,438.20001,127442.58,0,0,4175.5991 -14149,17357,31593,-9,31592,31589,3,1,1,18,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-896.64581,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,9,4,0,635,-54869.086,0,0,0 -14150,17358,31594,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.7525826,7.2050366,3,0,0,0,-9,0,-1034.9163,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7522151,7.3746452,0,0,45.73,57.57,-9,-9,6,1,1,0,0,12,3,1,468,572995.13,0,0,3218.6853 -14151,17359,31595,-9,31598,31597,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.519,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,5,4,1,471.75,288605.63,0,0,4551.811 -14151,17359,31596,-9,31598,31597,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1013.6721,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,4,2,0,0,5,4,1,471.75,288605.63,0,0,4551.811 -14151,17359,31597,31598,-9,-9,1,1,1,43,1,2,2,0,2,-9,2,1,0,0,3,8.8412418,8.6151733,0,2,0,-9,4,0,10,12.326503,0,0,0,33,1,5,3,1,1,2019,2,2,10,1,77,0,15,1,0,3,0,10.246836,10.246836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.93,49.400002,57.060001,57.759998,6,4,5,0,0,5,4,1,471.75,288605.63,0,0,4551.811 -14151,17359,31598,31597,-9,-9,2,1,0,33,1,2,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,4,0,-10,92.057259,0,0,1,43,2,3,1,-9,-9,2019,3,1,7,0,0,5,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6487846,0,0,0,57.060001,57.759998,53.93,49.400002,7,4,2,0,0,5,4,1,471.75,288605.63,0,0,4551.811 -14152,17360,31599,31600,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,37,0,5,10.15012,0,0,0,58,1,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.419998,50.189999,39.990002,55.830002,5,1,1,0,0,10,3,1,1459,1289835,0,0,682.61011 -14152,17360,31600,31599,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,7.9512486,8.2137432,5.0320215,1,0,-9,39,0,-5,41.85297,0,0,0,63,1,3,3,2,1,2019,2,1,15,3,54,54,15,1,0,4,0,5.788115,5.788115,0,0,0,0,0,0,0,0,0,0,0,5.2025456,0,0,0,39.990002,55.830002,49.419998,50.189999,2,1,1,0,0,10,3,1,1459,1289835,0,0,682.61011 -14153,17361,31601,-9,31603,31602,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.50311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,885.33331,133769.08,0,0,3415.7349 -14153,17361,31602,31603,-9,-9,1,1,1,34,1,0,1,0,2,-9,2,1,0,0,3,8.6407843,9.3639622,0,2,0,-9,8,0,-3,120.36458,0,0,0,37,2,4,1,2,2,2019,1,2,10,0,43,46,15,1,0,1,0,21.342278,21.342278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.360001,54.029999,54.200001,57.490002,4,1,1,0,0,12,5,1,885.33331,133769.08,0,0,3415.7349 -14153,17361,31603,31602,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,4,7.7743664,7.8974638,0,2,0,-9,8,0,3,-42.596077,0,0,1,34,2,3,1,-9,-9,2019,1,1,12,0,27,23,15,1,0,1,0,8.5693283,8.5693283,0,0,0,0,0,0,0,0,1,1,0,1.0620358,0,0,0,54.200001,57.490002,38.360001,54.029999,5,1,1,0,0,12,5,1,885.33331,133769.08,0,0,3415.7349 -14154,17362,31604,-9,-9,-9,1,1,0,55,3,0,1,0,1,-9,2,1,0,0,5,8.7971992,8.7679119,0,4,0,0,0,-9,0,-931.88446,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,50,50,15,1,0,-9,0,13.483577,13.483577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,4,1,912,824863.69,0,0,1472.8149 -14155,17363,31605,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,0,4,8.089838,8.1127205,0,4,0,0,0,-9,0,-1000.8179,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,24,30,15,1,1,-9,0,13.896561,13.896561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.040001,59.740002,-9,-9,2,1,1,0,0,11,3,1,330.5,43340.602,0,0,876.96277 -14155,17363,31606,-9,31605,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.9647,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,3,1,330.5,43340.602,0,0,876.96277 -14156,17364,31607,-9,-9,-9,1,1,1,28,2,1,6,0,2,-9,2,1,0,0,2,7.8275352,7.4501624,0,3,0,0,0,-9,0,-1136.1987,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,20,20,15,1,0,-9,1,9.6111946,9.6111946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.279999,46.610001,-9,-9,7,2,3,0,0,2,3,1,1196,-130268.02,0,0,175.17853 -14156,17364,31608,-9,-9,31607,11,1,1,2,2,1,6,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1010.385,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,2,3,1,1196,-130268.02,0,0,175.17853 -14157,17365,31609,-9,31611,31612,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1005.2886,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,7,3,0,490,19811.32,0,0,3209.9487 -14157,17365,31610,-9,31611,31612,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.6985,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,3,0,490,19811.32,0,0,3209.9487 -14157,17365,31611,31612,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,0,4,6.8352051,7.0209694,0,2,0,-9,8,0,-2,1.6007216,0,0,1,32,2,4,1,2,2,2019,1,2,7,0,9,10,15,1,0,1,0,19.546864,19.546864,0,0,0,0,0,0,0,0,1,1,0,.68767112,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,7,3,0,490,19811.32,0,0,3209.9487 -14157,17365,31612,31611,-9,-9,2,1,1,32,1,1,2,0,2,-9,2,1,0,0,4,8.6253767,8.3523283,0,2,0,-9,8,0,2,-137.84961,0,0,0,30,2,4,1,-9,-9,2019,1,1,7,0,65,60,15,1,0,1,0,7.1663089,7.1663089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,4,1,1,0,0,7,3,0,490,19811.32,0,0,3209.9487 -14158,17366,31613,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-955.53552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,5.475502,3,21.18,22.84,-9,-9,1,1,1,0,1,6,1,0,979,46388.449,0,0,978.62555 -14158,17367,31614,-9,31613,-9,2,1,0,22,2,0,0,0,2,-9,97,3,0,1,2,0,0,0,3,0,0,0,-9,0,-958.31177,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,21,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,0,1,.53769022,0,43.131001,3,24.27,45.849998,-9,-9,2,1,1,0,1,6,1,0,917,-309275.31,0,0,622.07928 -14159,17368,31615,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-978.60657,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,17,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3893838,0,0,0,43.650002,45.849998,-9,-9,3,1,1,1,0,12,1,1,588,-104970.89,0,0,-690.69049 -14160,17369,31616,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,3,0,5.6404457,5.5680046,3,0,0,0,-9,0,-1069.4585,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7953043,0,0,52,48,-9,-9,5,1,1,0,1,10,2,0,587,187233.95,0,0,1278.4989 -14161,17370,31617,31618,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,8.6703835,8.6639662,0,1,0,-9,31,0,0,86.208542,0,0,0,55,1,3,1,-9,-9,2019,1,2,11,0,53,12,15,1,0,1,0,13.178887,13.178887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,55.240002,41.860001,6,3,4,0,0,8,5,0,963.5,2301372.5,0,0,6328.0518 -14161,17370,31618,31617,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,8.9919748,8.9176826,7.4627795,1,0,-9,31,0,0,-117.59289,0,0,0,55,1,4,1,-9,-9,2019,1,1,6,0,50,50,15,1,0,1,0,17.494362,17.494362,0,0,0,0,0,0,0,0,0,0,0,7.2309146,7.2745447,0,0,55.240002,41.860001,54.790001,55.860001,6,3,4,0,0,8,5,0,963.5,2301372.5,0,0,6328.0518 -14161,17371,31619,-9,31617,31618,4,1,0,24,2,0,0,0,1,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-947.72467,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,35,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.529999,46.68,-9,-9,6,3,4,0,0,8,1,0,394,-77357.578,0,0,0 -14162,17372,31620,-9,31622,31621,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-761.28748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,1139,396196.16,0,0,4047.4912 -14162,17372,31621,31622,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,4,9.1553755,9.0082273,0,2,0,-9,8,0,-8,87.986748,0,0,0,48,2,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,22.581413,22.581413,0,0,0,0,0,0,0,0,1,1,0,4.3107615,0,0,0,51,56,52.25,53.240002,6,1,1,0,0,6,4,1,1139,396196.16,0,0,4047.4912 -14162,17372,31622,31621,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,7.878962,7.6149521,0,2,0,-9,21,0,8,100.07564,0,0,0,40,2,4,1,2,-9,2019,1,2,11,0,28,28,15,1,0,1,0,9.5540476,9.5540476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.240002,51,56,5,1,1,0,0,6,4,1,1139,396196.16,0,0,4047.4912 -14162,17372,31623,-9,31622,31621,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-918.18896,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,6,4,1,1139,396196.16,0,0,4047.4912 -14163,17373,31624,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,4,0,5.2740827,5.3233781,3,0,0,0,-9,0,-959.49341,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.4893954,0,0,0,0,52.88792,0,1,1,0,0,5.6598177,0,0,50.099998,38.91,-9,-9,1,1,1,0,0,2,2,1,221,323235.59,0,0,675.77527 -14164,17374,31625,31626,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,64,0,-4,-50.211948,0,0,0,87,2,3,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,69.116379,0,0,0,0,0,1,1,0,3.5462804,0,0,0,62.529999,27.780001,58.669998,39.119999,7,1,1,0,0,10,2,1,1092.5,238302.81,0,0,1819.9978 -14164,17374,31626,31625,-9,-9,1,1,1,87,1,0,0,0,2,-9,4,3,0,0,3,0,6.8873782,7.2241817,1,0,-9,64,0,4,179.2007,0,0,0,83,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,6.7974105,6.9948893,76.084618,1,58.669998,39.119999,62.529999,27.780001,6,1,1,0,0,10,2,1,1092.5,238302.81,0,0,1819.9978 -14165,17375,31627,31629,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,5,9.0961895,8.7225437,0,2,0,-9,10,0,-4,28.575729,0,0,0,51,1,4,1,2,2,2019,1,2,14,4,47,50,15,1,1,1,0,20.347984,20.347984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.049999,62.720001,44.66,57.830002,6,1,1,0,0,2,5,1,535.25,2374815.5,0,0,6720.5815 -14165,17375,31628,-9,31627,31629,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-887.95905,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,2,5,1,535.25,2374815.5,0,0,6720.5815 -14165,17375,31629,31627,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,9.3095064,9.0564671,0,2,0,-9,10,0,4,-44.623913,0,0,0,47,1,5,1,2,2,2019,1,1,16,5,39,39,15,1,1,1,0,22.20582,22.20582,0,0,0,0,0,0,0,0,0,0,0,2.9695039,0,0,0,44.66,57.830002,35.049999,62.720001,6,1,1,0,0,2,5,1,535.25,2374815.5,0,0,6720.5815 -14165,17375,31630,-9,31627,31629,3,1,1,17,2,0,2,0,2,-9,7,2,0,0,5,7.4112983,7.5312381,0,2,0,0,0,-9,0,-1095.6389,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.830002,56.009998,-9,-9,7,1,1,0,0,2,5,1,535.25,2374815.5,0,0,6720.5815 -14166,17376,31631,31632,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,2,8.3086758,8.1379194,0,1,0,-9,30,0,5,105.34552,0,0,0,45,2,4,1,3,2,2019,1,2,12,0,39,43,15,1,0,1,0,10.149017,10.149017,0,0,0,0,0,0,0,0,0,0,0,2.2244813,0,0,0,46.32,53.439999,52.82,53.970001,5,1,1,0,0,10,5,1,243,351823.84,0,0,3234.0117 -14166,17376,31632,31631,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,8.485815,8.3171854,0,1,0,-9,30,0,-5,59.243309,0,0,0,50,2,2,1,1,1,2019,1,1,9,0,45,49,15,1,0,1,0,9.9386034,9.9386034,0,0,0,0,0,0,0,0,0,0,0,2.0898645,0,0,0,52.82,53.970001,46.32,53.439999,6,1,1,0,0,10,5,1,243,351823.84,0,0,3234.0117 -14167,17377,31633,31634,-9,-9,2,1,1,40,1,1,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,8,0,12,0,0,0,0,28,2,1,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.369999,31.030001,6.9699998,50.169998,6,1,1,1,0,11,1,0,645,-24982.029,0,0,2120.3154 -14167,17377,31634,31633,-9,-9,1,1,0,28,1,1,2,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,8,0,-12,0,0,1,1,40,2,3,3,-9,-9,2019,4,2,31,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.9699998,50.169998,61.369999,31.030001,1,1,1,0,0,11,1,0,645,-24982.029,0,0,2120.3154 -14167,17377,31635,-9,31634,31633,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.8842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,1,0,645,-24982.029,0,0,2120.3154 -14167,17377,31636,-9,31634,31633,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.9861,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,1,0,645,-24982.029,0,0,2120.3154 -14168,17378,31637,31638,-9,-9,2,1,0,38,1,0,0,0,2,-9,2,1,0,0,5,8.8633709,8.9514723,0,1,0,-9,16,0,-5,-86.041306,0,0,1,43,2,5,1,3,3,2019,1,1,7,0,37,37,15,1,0,1,0,25.229801,25.229801,0,0,0,0,0,0,0,0,0,0,0,4.1347842,0,0,0,54.630001,58.830002,57.060001,57.759998,6,1,1,0,0,5,5,1,738.5,565089.5,0,0,5214.5146 -14168,17378,31638,31637,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,5,8.9747257,8.548254,0,1,0,-9,17,0,5,-113.54267,0,0,0,38,2,5,1,2,2,2019,1,2,5,0,39,40,15,1,0,1,0,18.075022,18.075022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54.630001,58.830002,6,1,1,0,0,5,5,1,738.5,565089.5,0,0,5214.5146 -14169,17379,31639,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-955.54871,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,35,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9096318,0,0,0,18.27,26.950001,-9,-9,1,1,1,0,0,9,1,1,985,51692.609,0,0,1531.7313 -14170,17380,31640,31641,-9,-9,2,1,0,64,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,6,0,-5,47.991013,0,0,0,69,1,2,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.780396,1,55.119999,42.099998,59.970001,12.12,6,1,1,0,0,2,3,1,2783,991604.13,0,0,1361.0048 -14170,17380,31641,31640,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,1,2,0,8.2875996,8.1625128,1,0,-9,44,0,5,80.721924,0,0,0,64,3,3,3,2,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,1,0,2.5363247,0,0,0,0,0,1,1,0,0,8.6335144,0,0,59.970001,12.12,55.119999,42.099998,5,1,1,0,0,2,3,1,2783,991604.13,0,0,1361.0048 -14171,17381,31642,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,0,1,8.1002207,7.9077387,0,3,0,0,0,-9,0,-1144.2582,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,48,48,15,1,0,-9,0,7.1155968,7.1155968,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.800259,3,55.73,16.98,-9,-9,2,1,1,0,0,12,4,0,351,1913555.1,0,0,678.76215 -14171,17382,31643,-9,-9,-9,2,1,0,21,2,0,0,0,2,1,2,1,0,0,3,6.7699356,7.0670724,0,3,0,0,0,-9,0,-1136.041,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,3,16,0,15,1,0,-9,0,7.5785904,7.5785904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.759998,50.299999,-9,-9,6,1,1,0,0,12,2,0,835,-184327.3,0,0,380.56882 -14172,17383,31644,-9,31645,31646,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.9245,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,510,675339.94,0,0,3863.6101 -14172,17383,31645,31646,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,4,7.8251901,8.0038939,0,2,0,-9,23,0,4,-70.956543,0,0,0,45,1,4,1,2,2,2019,1,2,9,0,25,24,15,1,0,1,0,11.382756,11.382756,0,0,0,0,0,0,0,0,0,0,0,1.4056697,0,0,0,52.23,55.599998,44.02,60.700001,6,1,1,0,0,9,5,1,510,675339.94,0,0,3863.6101 -14172,17383,31646,31645,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,4,9.5832949,9.5052118,0,2,0,-9,23,0,-4,10.352007,0,0,0,49,2,4,1,2,2,2019,1,1,12,1,40,45,15,1,0,1,0,43.042549,43.042549,0,0,0,0,0,0,0,0,0,0,0,2.4407547,0,0,0,44.02,60.700001,52.23,55.599998,5,1,1,0,0,9,5,1,510,675339.94,0,0,3863.6101 -14172,17383,31647,-9,31645,31646,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1018.9022,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,9,5,1,510,675339.94,0,0,3863.6101 -14173,17384,31648,31649,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,0,4,5.8958802,5.7326159,0,1,0,-9,10,0,4,32.448578,0,0,0,62,2,4,1,2,2,2019,1,2,6,0,25,35,15,1,0,1,0,1.5504788,1.5504788,0,0,0,0,0,0,0,0,1,1,0,4.3883948,0,0,0,61.119999,51.57,57.16,56.150002,7,1,1,0,0,2,4,1,524,603451.38,0,0,3487.8445 -14173,17384,31649,31648,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,8.5548468,8.517499,0,1,0,-9,10,0,-4,-55.805565,0,0,0,66,1,4,1,2,2,2019,1,1,7,0,39,40,15,1,0,1,0,17.915173,17.915173,0,0,0,0,0,0,0,2,1,1,0,5.9635077,0,5.569859,3,57.16,56.150002,61.119999,51.57,7,1,1,0,0,2,4,1,524,603451.38,0,0,3487.8445 -14174,17385,31650,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.0866346,8.4413671,0,3,0,0,0,-9,0,-973.45337,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,1,40,15,1,0,-9,0,427.22815,427.22815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.650002,57.360001,-9,-9,3,1,1,0,0,11,4,1,131,294263.31,0,0,1081.8459 -14174,17386,31651,-9,31650,-9,2,1,1,28,3,0,0,0,2,-9,2,1,0,0,3,8.7667675,8.7237892,0,3,0,0,0,-9,0,-990.81824,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,39,32,15,1,0,-9,1,18.343832,18.343832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,4,1,1,0,0,11,5,1,456,45599.969,0,0,2543.926 -14175,17387,31652,31653,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,7.6369071,7.7233243,1,0,-9,9,0,2,41.729897,0,0,0,76,1,4,1,2,-9,2019,3,2,7,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.26789,7.5284839,0,0,47.139999,41.529999,57.490002,47.77,6,1,1,0,0,4,4,1,599,1540266.3,0,0,4217.9619 -14175,17387,31653,31652,-9,-9,2,1,0,76,1,0,0,0,1,-9,1,1,0,0,4,7.6544724,8.1093493,7.3296227,1,0,-9,9,0,-2,10.896084,0,0,0,78,1,3,3,3,3,2019,2,1,8,0,25,20,15,1,0,4,0,7.4165611,7.4165611,0,0,0,0,0,0,0,0,1,1,0,5.4139457,6.9915543,0,0,57.490002,47.77,47.139999,41.529999,6,1,1,0,0,4,4,1,599,1540266.3,0,0,4217.9619 -14176,17388,31654,31655,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,9.042428,8.8729429,0,1,0,-9,28,0,-1,-127.12077,0,0,0,52,1,4,1,2,2,2019,1,1,9,0,46,46,15,1,0,1,0,22.584482,22.584482,0,0,0,0,0,0,0,0,0,0,0,1.789754,0,0,0,50.419998,53.849998,57.16,56.150002,6,1,1,0,0,9,5,1,312.5,1499491.8,0,0,3981.9263 -14176,17388,31655,31654,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,8.1123009,8.0994406,0,1,0,-9,28,0,1,-16.385349,0,0,0,51,1,3,1,1,1,2019,1,2,6,0,38,48,15,1,0,1,0,10.017759,10.017759,0,0,0,0,0,0,0,0,0,0,0,1.3638432,0,0,0,57.16,56.150002,50.419998,53.849998,6,1,1,0,0,9,5,1,312.5,1499491.8,0,0,3981.9263 -14177,17389,31656,31657,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,4,9.1016741,8.9860945,0,1,0,-9,6,0,5,68.489647,0,0,0,48,1,3,1,-9,-9,2019,1,1,8,0,43,42,15,1,0,1,0,22.288942,22.288942,0,0,0,0,0,0,0,2,0,0,0,0,0,5.1746044,3,51.830002,57.200001,51.41,56.150002,6,1,1,0,0,2,5,0,785,526013,0,0,4221.25 -14177,17389,31657,31656,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,0,3,8.5748081,8.3355951,0,1,0,-9,6,0,-5,105.30886,0,0,0,53,1,4,1,3,3,2019,1,2,11,2,43,44,15,1,0,1,0,12.007135,12.007135,0,0,0,0,0,0,0,2,0,0,0,0,0,2.5740569,3,51.41,56.150002,51.830002,57.200001,6,1,1,0,0,2,5,0,785,526013,0,0,4221.25 -14178,17390,31658,31659,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,6.8765326,6.8538566,0,1,0,-9,36,0,-1,-50.574043,0,0,0,59,1,4,1,3,2,2019,1,2,8,0,15,17,15,1,0,1,0,6.553062,6.553062,0,0,0,0,0,0,0,0,1,1,0,8.4434385,0,0,0,54.200001,57.490002,54,53,6,4,2,0,0,7,5,1,846.5,372209.78,0,0,5471.8213 -14178,17390,31659,31658,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,0,4,8.9420776,8.6884108,0,1,0,-9,7,0,1,121.22115,-9,0,0,58,2,4,1,-9,-9,2019,1,1,8,0,24,0,15,1,0,1,0,35.65752,35.65752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,54.200001,57.490002,6,1,1,0,0,7,5,1,846.5,372209.78,0,0,5471.8213 -14179,17391,31660,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1047.1036,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,0,1,0,0,7.4703116,3,37.419998,25.030001,-9,-9,2,1,1,0,0,12,1,0,275,-12171.976,0,0,1396.8795 -14180,17392,31661,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,0,3,8.7039719,8.471509,0,3,0,0,0,-9,0,-952.74957,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,5,40,52,15,1,1,-9,0,11.446171,11.446171,0,0,0,0,0,0,0,0,0,0,0,2.9683726,0,0,0,45.080002,27.67,-9,-9,6,1,1,0,0,13,4,0,94,229162.69,0,0,659.84698 -14181,17393,31662,31663,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,1,4,0,6.7700362,6.424861,1,0,-9,45,0,-11,82.224129,0,0,0,83,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8073797,15.044646,3,53.049999,52.709999,40.110001,28.799999,7,2,3,0,1,7,2,0,1349.5,514725.75,0,0,3469.8481 -14181,17393,31663,31662,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,7.1732645,7.0431046,1,0,-9,46,0,11,-32.227119,0,0,0,72,1,4,3,3,3,2019,4,2,15,5,0,0,15,4,1,4,0,0,0,1,0,13.682364,0,0,0,0,0,1,1,0,0,7.4004464,0,0,40.110001,28.799999,53.049999,52.709999,7,2,3,0,0,7,2,0,1349.5,514725.75,0,0,3469.8481 -14181,17394,31664,-9,31662,31663,3,1,0,37,3,0,0,0,1,-9,2,1,0,0,4,7.790216,8.0550394,0,3,0,0,0,-9,0,-962.62073,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,30,40,15,1,0,-9,1,14.582139,14.582139,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.150002,50.830002,-9,-9,6,2,3,0,0,7,4,0,286,137870.77,0,0,1387.2114 -14182,17395,31665,31666,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,1,0,0,0,0,76,3,2,3,3,2,2019,4,2,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.302772,0,0,2,35.57,49.830002,70.620003,12.18,6,1,1,0,0,12,1,1,2011,247491.13,0,0,3265.564 -14182,17395,31666,31665,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,6,0,-1,0,0,0,0,77,2,3,3,1,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,.87956899,0,0,0,0,2,1,1,0,7.3885994,0,.47725162,3,70.620003,12.18,35.57,49.830002,6,1,1,0,0,12,1,1,2011,247491.13,0,0,3265.564 -14183,17396,31667,31668,-9,-9,1,1,1,58,1,0,0,0,3,-9,8,3,1,1,1,0,5.8135462,5.6384258,1,0,-9,34,0,7,-47.012306,0,0,0,51,2,3,1,3,3,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5394444,0,0,31.9,19.360001,55.369999,40.830002,2,2,3,0,0,6,3,1,790.5,2179.6484,0,0,2982.5171 -14183,17396,31668,31667,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,8.0385637,8.2141047,0,1,0,-9,8,0,-7,-92.54377,0,0,0,58,3,1,3,3,3,2019,2,1,11,0,38,32,15,1,0,3,0,10.451103,10.451103,0,0,0,0,0,0,0,2,1,1,0,7.1909065,0,7.3190451,2,55.369999,40.830002,31.9,19.360001,4,2,3,0,0,6,3,1,790.5,2179.6484,0,0,2982.5171 -14183,17397,31669,-9,31668,31667,3,1,0,33,2,0,0,0,2,-9,2,1,0,0,4,8.1761312,7.9786854,0,3,0,0,0,-9,0,-1133.9159,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,41,45,15,1,0,-9,1,11.464316,11.464316,0,0,0,0,0,0,0,2,1,1,0,1.7104077,0,2.7731807,3,42.689999,50.73,-9,-9,3,2,3,0,0,6,4,1,214,-39504.852,0,0,1285.8096 -14183,17398,31670,-9,31668,31667,4,1,0,31,2,0,0,0,1,-9,1,1,0,0,4,7.4755969,7.6110582,0,3,0,0,0,-9,0,-868.52429,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,20,0,15,1,0,-9,1,12.448412,12.448412,0,0,0,0,0,0,0,7,1,1,0,0,0,2.8900332,3,43.68,53.029999,-9,-9,6,2,3,0,0,6,3,1,422,198830.92,0,0,905.74115 -14183,17399,31671,-9,31668,31667,5,1,1,28,2,0,0,0,1,-9,2,1,0,0,4,8.0733032,8.0593319,0,3,0,0,0,-9,0,-995.14551,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,26,10,38,38,15,1,1,-9,1,12.104546,12.104546,0,0,0,0,0,0,0,7,1,1,0,1.2222539,0,14.722597,3,17.889999,59.259998,-9,-9,1,2,3,0,0,6,4,1,2111,158195.84,0,0,2473.6006 -14184,17400,31672,-9,31673,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.97748,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,4,1,0,244.66667,5679.9946,0,0,342.9787 -14184,17400,31673,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-952.23926,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.571709,3,43.98,34.490002,-9,-9,5,3,4,0,0,4,1,0,244.66667,5679.9946,0,0,342.9787 -14184,17400,31674,-9,31673,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-896.8999,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.040001,49.130001,-9,-9,7,3,4,0,0,4,1,0,244.66667,5679.9946,0,0,342.9787 -14185,17401,31675,-9,-9,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,1,3,6.4005961,6.2626433,0,3,0,0,0,-9,0,-957.29797,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,10,10,15,1,0,-9,0,8.2863808,8.2863808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.110001,45,-9,-9,4,1,1,0,0,13,2,1,525,693931.31,0,0,848.83423 -14186,17402,31676,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1075.4028,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.1667147,0,0,0,1,1,0,2.237704,0,0,0,52,46,-9,-9,6,1,1,0,0,4,1,0,506,220836.84,0,0,2715.2583 -14187,17403,31677,-9,31679,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-938.29242,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,13,2,1,584.66669,0,0,0,1891.6932 -14187,17403,31678,-9,31679,-9,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,1,5.4894872,6.3609347,5.5749278,4,0,0,0,-9,0,-1018.3533,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,7,6,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.756659,0,0,0,31.860001,35.73,-9,-9,5,1,1,0,0,13,2,1,584.66669,0,0,0,1891.6932 -14187,17403,31679,-9,-9,-9,1,1,0,48,3,0,3,0,2,-9,6,3,0,0,2,6.3221569,6.7319212,0,4,0,0,0,-9,0,-1006.5078,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,3,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.689999,-9,-9,6,1,1,0,1,13,2,1,584.66669,0,0,0,1891.6932 -14187,17404,31680,-9,31679,-9,2,1,0,18,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1044.7736,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,2,1,687,23896.59,0,0,213.1205 -14188,17405,31681,-9,31683,-9,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-922.47418,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,4,3,1,395.33334,5777.875,0,0,2464.8687 -14188,17405,31682,-9,31683,-9,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,4.8789768,4.8096609,0,4,0,0,0,-9,0,-956.16876,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.73,52.619999,-9,-9,4,1,1,0,0,4,3,1,395.33334,5777.875,0,0,2464.8687 -14188,17405,31683,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,0,3,7.4529333,7.7000532,6.9758577,4,0,0,0,-9,0,-994.22504,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,16,16,15,1,0,-9,0,12.159335,12.159335,0,0,0,0,0,0,0,7,1,1,0,7.5622787,0,18.623489,3,47.650002,44.32,-9,-9,5,1,1,0,0,4,3,1,395.33334,5777.875,0,0,2464.8687 -14188,17406,31684,-9,31683,-9,2,1,0,19,2,0,2,0,2,-9,7,2,0,0,4,5.175931,4.8949418,0,3,0,0,0,-9,0,-1139.1511,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,6,14,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,4,2,1,908,23814.043,0,0,-188.57784 -14189,17407,31685,31686,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,5.5806613,5.7691784,1,0,-9,49,-9,1,23.821812,-9,0,0,78,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4240799,0,0,55.790001,52.619999,49.279999,52.09,7,1,1,0,0,11,2,1,583.5,354739.69,0,0,1748.1536 -14189,17407,31686,31685,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,0,7.1846323,6.8600793,1,0,-9,50,-9,-1,3.7122359,-9,0,0,79,3,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0124207,7.0795856,0,0,49.279999,52.09,55.790001,52.619999,6,1,1,0,0,11,2,1,583.5,354739.69,0,0,1748.1536 -14190,17408,31687,31688,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.7425003,8.6797075,0,1,0,-9,14,0,0,41.4053,0,0,0,53,2,3,1,2,2,2019,1,1,9,1,40,39,15,1,0,1,0,15.920733,15.920733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,54.959999,53.169998,6,1,1,0,0,10,5,1,591.5,1491008,0,0,3346.895 -14190,17408,31688,31687,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.245697,7.9682055,0,1,0,-9,15,0,0,-29.924858,0,0,0,53,2,5,1,3,3,2019,1,2,8,0,38,38,15,1,0,1,0,10.55562,10.55562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,54.099998,59.110001,6,1,1,0,0,10,5,1,591.5,1491008,0,0,3346.895 -14191,17409,31689,-9,31691,31690,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1095.61,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,0,1088,386040.69,0,0,4264.5156 -14191,17409,31690,31691,-9,-9,3,1,1,36,1,0,2,0,1,-9,2,1,0,0,3,9.7655649,9.6657734,0,2,0,-9,6,0,5,-5.4956269,0,0,0,31,2,3,3,-9,-9,2019,2,1,8,0,60,60,15,1,0,3,0,32.159031,32.159031,0,0,0,0,0,0,0,0,0,0,0,.61549222,0,0,0,54.369999,54.799999,60.450001,41.049999,5,1,1,0,0,9,5,0,1088,386040.69,0,0,4264.5156 -14191,17409,31691,31690,-9,-9,1,1,0,31,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-5,83.612999,0,0,1,36,1,3,1,2,2,2019,3,3,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1.7346319,3,60.450001,41.049999,54.369999,54.799999,6,1,1,0,0,9,5,0,1088,386040.69,0,0,4264.5156 -14191,17409,31692,-9,31691,31690,2,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.91156,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,0,1088,386040.69,0,0,4264.5156 -14192,17410,31693,31694,-9,-9,2,1,1,67,1,0,0,0,3,-9,2,1,0,0,2,7.2002134,7.7445579,7.1574163,1,0,-9,33,0,-5,13.563135,0,0,0,72,3,3,3,3,2,2019,2,1,6,0,24,24,15,1,0,4,0,6.6193819,6.6193819,0,0,0,0,0,0,0,0,1,1,0,4.1897206,7.1047087,0,0,57.57,49.689999,57.330002,53.459999,6,1,1,0,0,9,3,1,201.5,943833.88,0,0,2455.1812 -14192,17410,31694,31693,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,33,0,5,32.721931,0,0,0,67,3,2,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2049909,0,.31029248,3,57.330002,53.459999,57.57,49.689999,6,1,1,0,0,9,3,1,201.5,943833.88,0,0,2455.1812 -14193,17411,31695,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,4,3,0,0,3,0,6.2544818,5.9821177,3,0,0,0,-9,0,-991.80933,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.98484719,6.0738659,0,0,68.110001,22.42,-9,-9,6,1,1,0,0,9,2,1,238,243233.08,0,0,628.16101 -14194,17412,31696,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,5,8.702426,8.3467684,0,3,0,0,0,-9,0,-898.89331,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,35,70,15,1,1,-9,0,17.55131,17.55131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.720001,55.580002,-9,-9,2,1,1,0,0,8,5,1,118,-13786.011,0,0,2894.8862 -14195,17413,31697,-9,-9,-9,1,1,0,92,3,0,0,0,1,-9,4,3,0,1,3,0,8.6460981,8.2954426,3,0,0,0,-9,0,-1077.501,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,42.224701,0,0,0,0,1,1,0,6.9759569,8.8904352,0,0,53,44,-9,-9,6,2,3,0,0,8,5,0,240,1223217,0,0,3776.8152 -14196,17414,31698,31699,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,7.6401243,7.5283117,0,1,0,-9,39,0,1,28.804766,0,0,0,54,3,4,1,3,3,2019,1,2,21,9,18,0,15,1,1,1,0,12.20243,12.20243,0,0,0,0,0,0,0,7,0,0,0,0,0,6.244071,3,44,39,43.48,57.009998,3,2,3,0,1,9,3,1,855,767301,0,0,2449.3499 -14196,17414,31699,31698,-9,-9,2,1,1,54,1,0,0,0,3,-9,1,1,0,0,4,6.7733188,6.8954611,0,1,0,-9,39,0,-1,-125.90759,-9,0,0,55,2,2,1,3,3,2019,1,1,10,3,50,0,15,1,0,1,0,2.371855,2.371855,0,0,0,0,0,0,0,0,0,0,0,7.7937293,0,0,0,43.48,57.009998,44,39,6,1,1,0,0,9,3,1,855,767301,0,0,2449.3499 -14196,17415,31700,-9,31698,31699,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,5,8.4312372,8.7429094,0,3,0,0,0,-9,0,-979.38055,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,1,38,40,15,1,0,-9,1,16.074055,16.074055,0,0,0,0,0,0,0,0,0,0,0,2.4212506,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,5,1,683,10297.112,0,0,3275.176 -14196,17416,31701,-9,31698,31699,4,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.2745142,8.4044266,0,3,0,0,0,-9,0,-889.39978,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,0,0,47,52,15,1,0,-9,1,8.0064402,8.0064402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,4,2,0,0,9,4,1,101,99306.211,0,0,853.59326 -14197,17417,31702,31703,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,0,0,0,1,0,-9,5,0,-6,-122.94711,0,0,0,67,2,4,1,-9,-9,2019,1,1,23,11,0,12,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3633962,0,0,0,36.759998,37.080002,51.830002,57.200001,4,1,1,0,0,8,4,0,764.5,1343579.5,0,0,2661.1077 -14197,17417,31703,31702,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,4,8.1182184,8.5182371,6.9982657,1,0,-9,5,0,6,28.258356,0,0,0,61,2,3,1,3,3,2019,1,2,8,0,28,40,15,1,0,1,0,12.863705,12.863705,0,0,0,0,0,0,0,0,1,1,0,7.0924578,7.3234634,0,0,51.830002,57.200001,36.759998,37.080002,5,1,1,0,0,8,4,0,764.5,1343579.5,0,0,2661.1077 -14198,17418,31704,31705,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-1,-8.0459385,0,0,0,77,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,3.1522367,0,0,0,0,0,1,1,0,0,0,0,0,52,46,39.32,48.189999,6,1,1,0,0,12,2,1,666,550010.25,0,0,2084.8809 -14198,17418,31705,31704,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.5757732,7.3690796,1,0,-9,6,0,1,-56.733395,0,0,0,76,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1041703,2.3694987,1,39.32,48.189999,52,46,7,1,1,0,0,12,2,1,666,550010.25,0,0,2084.8809 -14199,17419,31706,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,5.8643303,6.4066691,3,0,0,0,-9,0,-1089.9719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7882538,4.6054969,0,0,52.389999,37.779999,-9,-9,6,1,1,0,0,12,2,1,121,439235.75,0,0,1090.1099 -14200,17420,31707,31710,-9,-9,2,1,1,58,1,0,3,0,1,-9,4,3,0,0,4,0,8.5111151,8.3220234,2,0,-9,26,0,4,-27.207502,0,0,0,54,1,5,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4628448,8.2911205,0,0,57.16,56.150002,51.139999,60.450001,6,1,1,0,0,6,4,1,548.20001,632648.81,0,0,4863.9751 -14200,17420,31708,-9,31710,31707,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-986.60553,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.42,59.98,-9,-9,2,1,1,0,0,6,4,1,548.20001,632648.81,0,0,4863.9751 -14200,17420,31709,-9,31710,31707,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.8188,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,548.20001,632648.81,0,0,4863.9751 -14200,17420,31710,31707,-9,-9,1,1,0,54,1,0,3,0,1,-9,2,1,0,1,5,8.0814743,7.9388862,0,2,0,-9,26,0,-4,-29.999645,0,0,0,58,1,4,3,2,2,2019,2,2,12,2,25,26,15,1,0,4,0,13.653844,13.653844,0,0,0,0,0,0,0,0,1,1,0,7.5229988,0,0,0,51.139999,60.450001,57.16,56.150002,6,1,1,0,0,6,4,1,548.20001,632648.81,0,0,4863.9751 -14200,17420,31711,-9,31710,31707,4,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-981.13715,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,6,4,1,548.20001,632648.81,0,0,4863.9751 -14201,17421,31712,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-962.24536,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.860001,26.549999,-9,-9,6,1,1,0,0,7,1,0,413,436824.06,0,0,1002.0477 -14202,17422,31713,-9,-9,31714,2,1,0,13,2,0,0,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-962.90674,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,2,2,1,752,1062018.3,0,0,10.147049 -14202,17422,31714,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,3,0,6.8079395,6.6073828,3,0,0,0,-9,0,-1093.103,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0374575,6.5796299,0,3,41.91,51.049999,-9,-9,6,1,1,0,0,2,2,1,752,1062018.3,0,0,10.147049 -14203,17423,31715,31716,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,2,0,6.1667771,6.1061912,1,0,-9,10,0,1,45.551842,0,0,0,76,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.2234974,0,0,50.110001,36.549999,57.330002,53.459999,6,1,1,0,0,13,2,1,2414.5,314777.81,0,0,1635.0514 -14203,17423,31716,31715,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-1,-130.81931,0,0,0,77,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,50.110001,36.549999,6,1,1,0,0,13,2,1,2414.5,314777.81,0,0,1635.0514 -14204,17424,31717,31718,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,0,4,8.1552401,8.1620502,0,1,0,-9,27,0,-2,102.38036,0,0,0,55,3,4,1,3,3,2019,1,2,8,0,50,50,15,1,0,1,0,8.4430752,8.4430752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.060001,57.720001,52,53,6,1,1,0,0,7,3,1,488,536395.13,0,0,1184.0098 -14204,17424,31718,31717,-9,-9,2,1,0,55,1,0,0,0,3,-9,1,1,0,0,4,5.3298702,5.317276,0,1,0,-9,27,0,2,-31.608969,0,0,0,53,2,4,1,3,-9,2019,1,1,10,1,30,30,15,1,0,1,0,.88770276,.88770276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,46.060001,57.720001,6,1,1,0,0,7,3,1,488,536395.13,0,0,1184.0098 -14204,17425,31719,-9,31718,31717,3,1,1,34,2,0,0,0,3,-9,2,1,0,0,4,8.3602142,8.3279381,0,3,0,0,0,-9,0,-996.84631,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,48,15,1,0,-9,1,11.738583,11.738583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,7,4,1,681,97415.203,0,0,1489.4664 -14205,17426,31720,31722,-9,-9,2,1,0,54,1,0,1,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,33,0,-3,0,0,0,0,57,3,1,3,3,2,2019,4,1,31,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.1217637,0,13.768468,2,39.139999,25.52,29.780001,17.809999,6,1,1,0,0,7,1,1,569.33331,175951.56,0,0,4365.8057 -14205,17426,31721,-9,31720,31722,4,1,1,16,2,0,1,1,3,-9,7,2,0,0,2,2.9818232,2.899286,0,2,0,0,0,-9,0,-931.76862,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,18,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.2602731,0,13.249645,3,38.23,51.52,-9,-9,5,1,1,0,0,7,1,1,569.33331,175951.56,0,0,4365.8057 -14205,17426,31722,31720,-9,-9,1,1,1,57,1,0,1,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,33,0,3,0,0,0,0,54,2,1,3,3,2,2019,4,2,20,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.9990706,0,22.165108,3,29.780001,17.809999,39.139999,25.52,4,1,1,0,0,7,1,1,569.33331,175951.56,0,0,4365.8057 -14205,17427,31723,-9,31720,31722,3,1,1,23,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-847.4281,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,7,1,1,359,0,0,0,788.034 -14206,17428,31724,-9,31727,31725,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.97424,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,765.75,32617.701,0,0,2803.8904 -14206,17428,31725,31727,-9,-9,1,1,1,24,1,1,2,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,3,0,2,0,0,1,0,22,2,4,3,3,3,2019,4,2,14,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.629999,71.370003,33.240002,48.23,6,1,1,1,1,4,1,0,765.75,32617.701,0,0,2803.8904 -14206,17428,31726,-9,31727,31725,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.58514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,1,0,765.75,32617.701,0,0,2803.8904 -14206,17428,31727,31725,-9,-9,2,1,0,22,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,3,0,-2,0,0,1,1,24,2,5,3,-9,-9,2019,4,1,24,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.240002,48.23,24.629999,71.370003,5,1,1,0,1,4,1,0,765.75,32617.701,0,0,2803.8904 -14207,17429,31728,-9,31731,31730,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1013.9149,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,2,5,0,1878,2000016.1,0,0,5778.1372 -14207,17429,31729,-9,31731,31730,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.6492,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,0,1878,2000016.1,0,0,5778.1372 -14207,17429,31730,31731,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,0,2,9.2426319,9.1956253,0,2,0,-9,17,0,3,9.0002308,0,0,0,41,1,3,1,2,1,2019,1,1,13,3,48,0,15,1,0,1,0,19.415438,19.415438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.830002,42.540001,51.099998,52.080002,3,1,1,0,0,2,5,0,1878,2000016.1,0,0,5778.1372 -14207,17429,31731,31730,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,8.360672,8.306962,0,2,0,-9,17,0,-3,-36.760696,0,0,1,44,1,2,1,2,2,2019,1,2,10,1,28,28,15,1,0,1,0,21.240143,21.240143,0,0,0,0,0,0,0,0,1,1,0,1.0713327,0,0,0,51.099998,52.080002,46.830002,42.540001,6,1,1,0,0,2,5,0,1878,2000016.1,0,0,5778.1372 -14208,17430,31732,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,2,1,0,0,3,8.4654493,8.4861622,0,3,0,0,0,-9,0,-1014.8607,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,9,42,37,15,1,1,-9,0,11.405047,11.405047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.169998,47.849998,-9,-9,5,1,1,0,0,11,5,1,686,366616.28,0,0,3441.9487 -14209,17431,31733,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-967.74939,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.040001,55.860001,-9,-9,6,1,1,0,0,12,1,1,114,253658.22,0,0,680.29932 -14210,17432,31734,31735,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,7.8025346,7.9022446,0,2,0,-9,7,0,-1,-97.546005,0,0,0,47,2,4,1,2,2,2019,1,1,13,1,37,37,15,1,0,1,0,13.58153,13.58153,0,0,0,0,0,0,0,0,0,0,0,1.4263439,0,0,0,40.650002,57.360001,57.16,56.150002,4,1,1,0,0,5,5,1,1085.6666,1850572.3,0,0,4843.8228 -14210,17432,31735,31734,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,9.3962555,9.3217144,0,2,0,-9,7,0,1,22.798862,0,0,0,46,2,3,1,2,2,2019,1,2,8,0,53,40,15,1,0,1,0,21.545465,21.545465,0,0,0,0,0,0,0,0,0,0,0,1.839275,0,0,0,57.16,56.150002,40.650002,57.360001,6,1,1,0,0,5,5,1,1085.6666,1850572.3,0,0,4843.8228 -14210,17432,31736,-9,31734,31735,4,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1024.2769,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,5,1,1085.6666,1850572.3,0,0,4843.8228 -14210,17433,31737,-9,31734,31735,3,1,0,18,2,0,1,0,2,1,3,3,0,0,5,7.5462728,7.491384,0,3,0,0,0,-9,0,-962.57751,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,36,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5424926,0,0,0,49.02,58.889999,-9,-9,6,1,1,1,0,5,3,1,76,7589.1885,0,0,862.13452 -14211,17434,31738,-9,31741,31740,6,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-877.82501,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,3,1,396.25,1371008,0,0,1707.3805 -14211,17434,31739,-9,31741,31740,5,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-961.97681,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.6869206,0,0,0,49.580002,55.59,-9,-9,5,4,2,0,0,8,3,1,396.25,1371008,0,0,1707.3805 -14211,17434,31740,31741,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,0,3,8.2351608,8.2260952,0,2,0,-9,23,0,4,-14.314919,0,0,0,46,2,2,1,2,2,2019,1,2,15,4,39,42,15,1,1,1,0,11.30256,11.30256,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.099998,57.790001,46.400002,41.450001,4,1,1,0,0,8,3,1,396.25,1371008,0,0,1707.3805 -14211,17434,31741,31740,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,2,0,0,0,2,0,-9,23,0,-4,-2.9830885,0,0,0,50,1,3,1,2,3,2019,1,1,16,5,0,41,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.400002,41.450001,39.099998,57.790001,5,4,5,0,0,8,3,1,396.25,1371008,0,0,1707.3805 -14211,17435,31742,-9,31741,31740,3,1,0,19,2,0,2,1,2,0,7,2,0,0,3,6.6130366,6.8716083,0,3,0,0,0,-9,0,-1169.2754,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,4,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.27,57.299999,-9,-9,6,4,2,0,0,8,2,1,364,-183161.34,0,0,1403.3101 -14211,17436,31743,-9,31741,31740,4,1,1,18,2,0,2,1,2,0,7,2,0,0,2,6.2557054,6.4215355,0,3,0,0,0,-9,0,-1032.2346,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.0055728,0,0,0,53.080002,47.84,-9,-9,3,4,2,0,0,8,2,1,2142,62018.293,0,0,-198.71376 -14212,17437,31744,31745,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,5.8642697,7.8721857,7.6806946,1,0,-9,6,0,-1,-2.4940622,0,0,0,75,2,2,3,3,2,2019,4,2,6,0,1,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6828752,7.7275105,0,0,52.25,53.240002,59.259998,16.35,6,1,1,0,0,7,3,0,1211.5,1641797.4,0,0,2559.4871 -14212,17437,31745,31744,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,1,41.884239,0,0,0,74,2,3,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,0,7.8404388,0,0,0,0,1,1,0,0,0,0,0,59.259998,16.35,52.25,53.240002,6,1,1,0,0,7,3,0,1211.5,1641797.4,0,0,2559.4871 -14213,17438,31746,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-905.91528,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.4769974,3,57.169998,34.709999,-9,-9,6,1,1,0,0,5,1,1,599,-114674.87,0,0,115.42403 -14214,17439,31747,31748,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,6,0,-12,0,0,0,0,68,3,3,3,-9,-9,2019,4,1,16,4,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.5,20.360001,56.18,48.68,4,1,1,0,0,6,1,0,1807.5,-44893.578,0,0,1806.2151 -14214,17439,31748,31747,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,39,0,12,0,0,0,0,56,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.884481,1,56.18,48.68,38.5,20.360001,6,1,1,0,0,6,1,0,1807.5,-44893.578,0,0,1806.2151 -14215,17440,31749,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,3,0,8.5208111,8.2578859,3,0,0,0,-9,0,-879.96124,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5701108,7.9660444,0,0,52.790001,51.639999,-9,-9,6,1,1,0,0,8,4,1,183,1116806,0,0,1307.8926 -14216,17441,31750,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,0,4,8.5671148,8.8680191,0,3,0,0,0,-9,0,-935.58527,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,52,43,15,1,0,-9,0,13.82308,13.82308,0,0,0,0,0,0,0,0,0,0,0,1.6857911,0,0,0,28.33,61.360001,-9,-9,6,1,1,0,0,9,5,1,175,244186,0,0,1555.3268 -14217,17442,31751,-9,31754,-9,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1066.8479,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,2,0,496.25,49790.992,0,0,2076.1418 -14217,17442,31752,-9,31754,-9,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1093.4578,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,2,0,496.25,49790.992,0,0,2076.1418 -14217,17442,31753,-9,31754,-9,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1030.885,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,496.25,49790.992,0,0,2076.1418 -14217,17442,31754,-9,-9,-9,1,1,0,34,3,0,3,0,3,-9,2,1,0,0,3,7.0315127,6.9467568,0,4,0,0,0,-9,0,-1043.1774,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,16,16,15,1,0,-9,0,7.5736918,7.5736918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.939999,49.169998,-9,-9,5,1,1,0,1,12,2,0,496.25,49790.992,0,0,2076.1418 -14218,17443,31755,-9,31756,31757,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.1227,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,2,3,1,976.66669,52567.531,0,0,2262.7166 -14218,17443,31756,31757,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.0881262,8.1617708,0,2,0,-9,6,0,0,-17.884104,0,0,1,38,2,4,1,2,2,2019,1,2,5,0,36,70,15,1,0,1,0,8.5557375,8.5557375,0,0,0,0,0,0,0,0,1,1,0,.17900306,0,0,0,55.790001,52.619999,55.299999,55.599998,7,1,1,0,0,2,3,1,976.66669,52567.531,0,0,2262.7166 -14218,17443,31757,31756,-9,-9,2,1,1,38,1,0,1,0,2,-9,1,1,0,0,4,7.468904,7.0706816,0,2,0,-9,6,0,0,52.320435,0,0,0,38,1,4,1,-9,-9,2019,1,1,6,0,20,15,15,1,0,1,0,6.0458188,6.0458188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.299999,55.599998,55.790001,52.619999,5,1,1,0,0,2,3,1,976.66669,52567.531,0,0,2262.7166 -14219,17444,31758,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-889.81433,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,45,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.599998,34.290001,-9,-9,5,1,1,0,1,2,1,0,501,-130567.52,0,0,144.66075 -14220,17445,31759,31760,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,3,9.7415895,9.5537834,0,2,0,-9,8,0,-2,-48.064518,0,0,0,52,1,5,1,2,2,2019,1,1,12,3,50,40,15,1,0,1,0,40.723583,40.723583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.700001,56.220001,40.73,61.290001,6,1,1,0,0,9,5,0,624,2729642.3,0,0,9399.6582 -14220,17445,31760,31759,-9,-9,1,1,0,52,1,0,2,0,1,-9,2,1,0,0,5,8.1207218,8.2153568,0,2,0,-9,22,0,2,12.124557,0,0,0,50,1,3,1,1,2,2019,1,2,21,9,45,50,15,1,1,1,0,12.667508,12.667508,0,0,0,0,0,0,0,7,0,0,0,3.8424277,0,1.6441121,3,40.73,61.290001,48.700001,56.220001,3,1,1,0,0,9,5,0,624,2729642.3,0,0,9399.6582 -14220,17445,31761,-9,31760,31759,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1150.0563,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,0,624,2729642.3,0,0,9399.6582 -14220,17446,31762,-9,31760,31759,3,1,0,19,2,0,2,1,2,-9,7,2,0,0,4,6.5407629,6.6947298,0,3,0,0,0,-9,0,-1096.212,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,2,0,557,-6248.1123,0,0,802.19659 -14221,17447,31763,-9,-9,-9,1,1,0,81,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1229.6609,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,5.9499002,0,0,0,0,19.63883,0,1,1,0,0,0,0,0,32.709999,40.619999,-9,-9,3,2,3,0,1,8,1,0,583,1945.942,0,0,715.21283 -14222,17448,31764,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,3,9.6129494,9.5989361,0,3,0,0,0,-9,0,-1072.0742,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,50,15,1,0,-9,0,29.469677,29.469677,0,0,0,0,0,0,0,0,0,0,0,4.2927489,0,0,0,54.939999,53.18,-9,-9,6,2,3,0,0,8,5,0,2326,58211.633,0,0,7842.0483 -14223,17449,31765,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,2,0,6.7124348,6.3631597,3,0,0,0,-9,0,-1042.5459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.1671667,0,0,1,1,0,0,6.3065724,0,0,56.599998,23.1,-9,-9,6,1,1,0,0,12,2,1,138,2493.4629,0,0,1256.6062 -14224,17450,31766,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1217.3815,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,22,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.99,65.610001,-9,-9,4,1,1,0,0,13,1,1,3475,-10377.01,0,0,0 -14225,17451,31767,31769,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,4,8.8101454,8.5319929,0,2,0,-9,4,0,2,126.64941,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,1,35,37,15,1,0,1,0,30.50046,30.50046,0,0,0,0,0,0,0,0,0,0,0,7.0197816,0,0,0,51,56,51.080002,54.77,6,4,1,0,0,9,5,1,912.33331,602345.25,0,0,6556.0986 -14225,17451,31768,-9,31769,31767,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.062,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,912.33331,602345.25,0,0,6556.0986 -14225,17451,31769,31767,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,0,4,9.2884798,9.1031961,0,2,0,-9,4,0,-2,24.835743,0,0,1,38,1,4,1,2,2,2019,1,2,7,0,40,45,15,1,0,1,0,32.96843,32.96843,0,0,0,0,0,0,0,0,0,0,0,7.4500194,0,0,0,51.080002,54.77,51,56,6,1,1,0,0,9,5,1,912.33331,602345.25,0,0,6556.0986 -14226,17452,31770,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,1,1,6.5369158,6.6746273,0,3,0,0,0,-9,0,-1054.2051,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,15,15,15,1,0,-9,0,6.9629478,6.9629478,0,0,0,0,0,0,0,7,1,1,0,0,0,14.037545,3,51.66,19.42,-9,-9,6,1,1,0,0,4,2,0,1400,-36063.762,0,0,1186.8894 -14227,17453,31771,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,1,1,0,1,1,6.4387951,7.5177727,6.5816274,4,0,0,0,-9,0,-1051.9119,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,50,50,15,1,1,-9,0,1.8919971,1.8919971,0,0,0,0,0,0,0,0,1,1,0,7.4429708,0,0,0,26.51,21.780001,-9,-9,2,1,1,0,1,9,2,1,643.33331,-62469.113,0,0,1067.0455 -14227,17453,31772,-9,31771,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1010.094,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,2,1,643.33331,-62469.113,0,0,1067.0455 -14227,17453,31773,-9,31771,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-999.46075,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,1,643.33331,-62469.113,0,0,1067.0455 -14228,17454,31774,-9,31777,31775,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.816,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,509.5,383020.38,0,0,2888.9365 -14228,17454,31775,31777,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,0,4,8.5682402,8.4656076,0,2,0,-9,8,0,8,141.29547,0,0,0,36,3,1,1,2,3,2019,1,2,10,0,40,39,15,1,0,1,0,18.5467,18.5467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.610001,49.009998,13.57,51.169998,6,1,1,0,0,5,4,1,509.5,383020.38,0,0,2888.9365 -14228,17454,31776,-9,31777,31775,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.42822,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,4,1,509.5,383020.38,0,0,2888.9365 -14228,17454,31777,31775,-9,-9,2,1,0,36,1,0,2,0,3,-9,2,1,0,0,1,7.3108664,7.4965672,0,2,0,-9,8,0,-8,101.79771,0,0,1,44,1,4,1,-9,-9,2019,1,1,26,10,28,22,15,1,1,1,0,5.8174996,5.8174996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.57,51.169998,49.610001,49.009998,6,4,1,0,0,5,4,1,509.5,383020.38,0,0,2888.9365 -14229,17455,31778,31780,-9,-9,2,1,0,36,1,1,4,0,1,-9,5,1,0,0,4,0,0,0,2,0,-9,12,0,-2,-170.94719,0,0,1,38,1,4,1,2,2,2019,1,1,8,0,0,13,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,57.16,56.150002,6,1,1,0,0,13,3,1,579.66669,80532.344,0,0,2660.979 -14229,17455,31779,-9,31778,31780,5,1,0,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.3959,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,579.66669,80532.344,0,0,2660.979 -14229,17455,31780,31778,-9,-9,1,1,1,38,1,1,4,0,1,-9,2,1,0,0,4,8.9043074,8.6654186,0,2,0,-9,12,0,2,74.242538,0,0,0,36,1,4,1,2,2,2019,1,2,11,0,43,42,15,1,0,1,0,13.833548,13.833548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,58.150002,52.91,6,1,1,0,0,13,3,1,579.66669,80532.344,0,0,2660.979 -14229,17455,31781,-9,31778,31780,3,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.14935,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,13,3,1,579.66669,80532.344,0,0,2660.979 -14229,17455,31782,-9,31778,31780,6,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-968.33215,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,3,1,579.66669,80532.344,0,0,2660.979 -14229,17455,31783,-9,31778,31780,4,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.45697,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,13,3,1,579.66669,80532.344,0,0,2660.979 -14230,17456,31784,31785,-9,-9,2,1,1,66,1,0,0,0,1,-9,1,1,0,0,3,7.3759766,8.0535469,7.3674765,1,0,-9,16,0,10,96.041618,0,0,0,56,1,3,3,3,3,2019,2,1,23,9,25,40,15,1,1,4,0,6.7815347,6.7815347,0,0,0,0,0,0,0,2,1,1,0,3.0750809,7.7095284,0,3,40.790001,47.419998,41.23,51.32,6,1,1,0,0,2,4,1,984.5,2632317.3,0,0,3244.0664 -14230,17456,31785,31784,-9,-9,1,1,0,56,1,0,0,0,1,-9,4,3,0,0,3,0,7.5663381,7.9184189,1,0,-9,19,0,-10,146.82364,0,0,0,66,1,3,1,3,3,2019,3,2,20,9,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.63089406,7.7563128,0,3,41.23,51.32,40.790001,47.419998,5,1,1,0,0,2,4,1,984.5,2632317.3,0,0,3244.0664 -14230,17457,31786,-9,31785,31784,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,4,8.3242483,8.4409904,0,3,0,0,0,-9,0,-980.27686,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,40,0,15,1,0,-9,1,10.359564,10.359564,0,0,0,0,0,0,0,0,1,1,0,4.960072,0,0,0,39.580002,57.610001,-9,-9,6,1,1,0,0,2,4,1,499,283124.34,0,0,2159.031 -14230,17458,31787,-9,31785,31784,4,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.2620993,8.5840874,0,3,0,0,0,-9,0,-1003.6102,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,55,48,15,1,0,-9,1,8.0429058,8.0429058,0,0,0,0,0,0,0,0,1,1,0,6.0328345,0,0,0,57.900002,51.84,-9,-9,6,1,1,0,0,2,5,1,263,-11332.573,0,0,1985.2899 -14231,17459,31788,31789,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,6.8148904,6.5395541,1,0,-9,6,0,2,74.655586,0,0,0,76,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,6.0251212,0,0,0,0,0,1,1,0,0,6.926743,0,0,62.169998,41.709999,56.099998,49.93,7,1,1,0,0,11,2,1,499,376868.53,0,0,-20.124546 -14231,17459,31789,31788,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-2,-80.671089,0,0,0,78,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.099998,49.93,62.169998,41.709999,7,1,1,0,0,11,2,1,499,376868.53,0,0,-20.124546 -14232,17460,31790,31791,-9,-9,1,1,0,31,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,-3,33.442184,0,0,1,34,2,2,1,2,2,2019,3,2,12,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.790001,47.07,24.68,47.060001,6,2,3,0,0,8,2,0,971.75,65023.242,0,0,1371.3829 -14232,17460,31791,31790,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,0,2,7.5481706,7.4980578,0,2,0,-9,11,0,3,53.148281,0,0,0,31,3,4,3,3,2,2019,2,1,28,12,30,24,15,1,1,3,0,6.2896075,6.2896075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,47.060001,49.790001,47.07,4,2,3,0,0,8,2,0,971.75,65023.242,0,0,1371.3829 -14232,17460,31792,-9,31790,31791,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.4892,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,971.75,65023.242,0,0,1371.3829 -14232,17460,31793,-9,31790,31791,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.58582,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,2,0,971.75,65023.242,0,0,1371.3829 -14233,17461,31794,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,1,1,0,0,3,0,6.6741929,7.1002021,3,0,0,0,-9,0,-1048.5807,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,60,48,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5804362,0,0,52.950001,39.080002,-9,-9,6,1,1,0,0,11,2,0,799,224290.14,0,0,608.57153 -14234,17462,31795,31796,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,0,2,8.7757845,8.7516947,5.6311407,2,0,-9,2,0,3,70.014633,0,0,1,33,2,4,1,-9,-9,2019,1,1,29,12,41,38,15,1,1,1,0,19.001987,19.001987,0,0,0,0,0,0,0,0,1,1,0,5.969759,0,0,0,31.93,45.18,55.790001,52.619999,3,1,1,0,0,10,5,0,426.33334,144779.53,0,0,3624.3743 -14234,17462,31796,31795,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,0,4,7.9022994,8.0738192,0,2,0,-9,2,0,-3,65.893456,0,0,0,36,2,2,1,2,3,2019,1,2,7,0,35,35,15,1,0,1,0,11.801171,11.801171,0,0,0,0,0,0,0,0,1,1,0,.14024825,0,0,0,55.790001,52.619999,31.93,45.18,6,1,1,0,0,10,5,0,426.33334,144779.53,0,0,3624.3743 -14234,17462,31797,-9,31795,31796,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.2517,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,5,0,426.33334,144779.53,0,0,3624.3743 -14235,17463,31798,-9,31799,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-996.28625,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,5,2,1,656.5,-116219.4,0,0,1462.2565 -14235,17463,31799,-9,-9,-9,1,1,0,28,3,0,1,0,2,-9,2,1,0,0,3,7.2142119,7.2459774,0,4,0,0,0,-9,0,-999.7514,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,18,6,15,1,0,-9,0,7.4865675,7.4865675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.419998,48.119999,-9,-9,5,2,3,0,0,5,2,1,656.5,-116219.4,0,0,1462.2565 -14235,17464,31800,-9,-9,-9,3,1,0,31,3,0,1,0,1,-9,2,1,0,0,2,8.6033001,8.7285557,0,4,0,0,0,-9,0,-1050.532,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,44,50,15,1,0,-9,0,14.725816,14.725816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.529999,54.119999,-9,-9,5,2,3,0,0,5,4,1,2356,172782.91,0,0,2565.9016 -14236,17465,31801,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,3,0,8.0679636,7.6930761,3,0,0,0,-9,0,-1111.8601,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.034277,7.9803424,0,0,37.459999,36.919998,-9,-9,3,1,1,0,0,4,3,1,1256,383324.91,0,0,1868.7946 -14237,17466,31802,31803,-9,-9,1,1,0,63,1,0,0,0,3,-9,6,3,0,0,2,0,4.3724437,4.4994483,1,0,-9,39,0,1,-159.20184,0,0,0,62,1,3,1,2,-9,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,4.2319183,41.411156,3,36.029999,40.599998,58.380001,32.389999,4,1,1,0,0,4,5,1,868.5,1860515.9,0,0,3278.9829 -14237,17466,31803,31802,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,8.6932459,8.8936996,7.5108218,1,0,-9,9,0,-1,31.023058,0,0,0,63,3,2,3,-9,-9,2019,2,1,12,2,45,50,15,1,0,3,0,22.282726,22.282726,0,0,0,0,0,0,0,0,1,1,0,7.3145628,7.5887246,0,0,58.380001,32.389999,36.029999,40.599998,5,1,1,0,0,4,5,1,868.5,1860515.9,0,0,3278.9829 -14238,17467,31804,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,0,5,6.3785315,7.3949819,7.3644562,3,0,0,0,-9,0,-1072.3094,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,3,0,15,1,0,-9,0,30.185314,30.185314,0,0,0,0,0,0,0,2,1,1,0,7.0000491,6.9904771,0,3,61.580002,51.560001,-9,-9,6,1,1,0,0,13,3,1,414,30525.92,0,0,3521.8862 -14239,17468,31805,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,0,4,8.70333,8.8254499,5.4132633,4,0,0,0,-9,0,-1001.1384,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,35,35,15,1,0,-9,0,26.312147,26.312147,0,0,0,0,0,0,0,0,1,1,0,7.6037135,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,12,5,1,422,242117.11,0,0,3081.0686 -14240,17469,31806,31807,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,0,3,0,7.3438306,7.3669333,1,0,-9,56,0,-2,-47.619518,0,0,0,88,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,4.8160977,7.3433981,12.005828,1,55,45,53,44,6,1,1,0,0,8,2,1,326.5,480782.97,0,0,2587.6494 -14240,17469,31807,31806,-9,-9,2,1,0,88,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,56,0,2,6.038125,0,0,0,86,2,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,25.254284,0,0,5.9757562,50.915615,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,0,8,2,1,326.5,480782.97,0,0,2587.6494 -14241,17470,31808,31809,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,8.8285446,8.5187893,0,1,0,-9,7,0,3,-135.16687,0,0,0,32,1,5,1,2,2,2019,1,2,7,0,79,40,15,1,0,1,0,6.6182175,6.6182175,0,0,0,0,0,0,0,0,0,0,0,1.7937372,0,0,0,57.16,56.150002,53.34,56.669998,7,1,1,0,0,2,5,1,802,404754.69,0,0,4306.2422 -14241,17470,31809,31808,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,0,5,8.9926405,9.1169586,0,1,0,-9,7,0,-3,24.029297,0,0,1,35,1,4,1,-9,-9,2019,1,1,9,0,50,45,15,1,0,1,0,18.779716,18.779716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.34,56.669998,57.16,56.150002,7,1,1,0,0,2,5,1,802,404754.69,0,0,4306.2422 -14242,17471,31810,31811,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,3,0,0,0,1,0,-9,10,0,1,-19.308289,0,0,0,57,3,3,1,3,3,2019,1,2,24,12,0,24,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.610001,39,50.139999,53.970001,3,1,1,0,0,12,2,0,471,291991.09,0,0,875.40857 -14242,17471,31811,31810,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,7.1019764,7.2133288,0,1,0,-9,10,0,-1,-164.82103,0,0,0,58,2,3,1,3,3,2019,1,1,11,0,18,28,15,1,0,1,0,7.8312855,7.8312855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.139999,53.970001,41.610001,39,6,1,1,0,0,12,2,0,471,291991.09,0,0,875.40857 -14243,17472,31812,31813,-9,-9,1,1,0,43,1,1,2,0,1,-9,2,1,0,0,5,8.918746,8.9563828,0,2,0,-9,14,0,-2,-12.876903,0,0,1,45,1,5,1,2,1,2019,1,2,7,0,35,40,15,1,0,1,0,33.706177,33.706177,0,0,0,0,0,0,0,0,0,0,0,7.0056987,0,0,0,51.73,58.82,38.810001,62.110001,6,1,1,0,0,2,5,1,348,794686,0,0,7654.9766 -14243,17472,31813,31812,-9,-9,2,1,1,45,1,1,2,0,1,-9,2,1,0,0,5,9.5965414,8.9782419,0,2,0,-9,14,0,2,118.80592,0,0,0,43,1,5,1,2,1,2019,1,1,17,5,52,52,15,1,1,1,0,27.132133,27.132133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.810001,62.110001,51.73,58.82,6,1,1,0,0,2,5,1,348,794686,0,0,7654.9766 -14243,17472,31814,-9,31812,31813,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.0302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,348,794686,0,0,7654.9766 -14243,17472,31815,-9,31812,31813,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1139.8931,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,348,794686,0,0,7654.9766 -14244,17473,31816,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,1,0,5.9598508,5.7906518,3,0,0,0,-9,0,-930.3952,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7166715,0,0,37.43,18.27,-9,-9,6,1,1,0,0,4,2,0,659,27922.076,0,0,1116.6885 -14245,17474,31817,-9,31820,31819,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.60077,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,3,1,409.25,907222.69,0,0,2308.0251 -14245,17474,31818,-9,31820,31819,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.84399,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,9,3,1,409.25,907222.69,0,0,2308.0251 -14245,17474,31819,31820,-9,-9,2,1,1,56,1,0,2,0,1,-9,1,1,0,0,3,7.9949365,7.9040856,0,2,0,-9,16,0,13,69.931442,0,0,0,43,2,4,1,2,1,2019,1,1,14,3,50,50,15,1,0,1,0,6.3538499,6.3538499,0,0,0,0,0,0,0,0,1,1,0,4.4553785,0,0,0,48.59,53.290001,42.400002,51.91,3,4,2,0,0,9,3,1,409.25,907222.69,0,0,2308.0251 -14245,17474,31820,31819,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,0,4,7.4288201,7.4612722,0,2,0,-9,16,0,-13,-77.403938,0,0,1,56,1,3,1,-9,-9,2019,1,2,18,6,15,16,15,1,1,1,0,15.032379,15.032379,0,0,0,0,0,0,0,0,1,1,0,3.840512,0,0,0,42.400002,51.91,48.59,53.290001,3,1,1,0,0,9,3,1,409.25,907222.69,0,0,2308.0251 -14246,17475,31821,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,8,3,1,1,5,0,0,0,3,0,0,0,-9,0,-1016.7917,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,10,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.82,68.099998,-9,-9,5,1,1,0,0,6,1,0,120,241899.67,0,0,1456.615 -14247,17476,31822,31823,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,8.773304,8.5159845,0,1,0,-9,29,0,0,51.318546,0,0,0,54,2,4,1,3,2,2019,1,2,31,11,45,42,15,1,1,1,0,16.396093,16.396093,0,0,0,0,0,0,0,7,0,0,0,1.2142986,0,.98556983,3,30.65,58.16,53,54,4,1,1,0,0,4,5,1,615.5,583321,0,0,3857.1301 -14247,17476,31823,31822,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.4926682,8.4701958,0,1,0,-9,7,0,0,-54.73122,0,0,0,54,2,2,1,-9,-9,2019,1,1,9,1,35,35,15,1,0,1,0,14.99181,14.99181,0,0,0,0,0,0,0,0,0,0,0,3.9291894,0,0,0,53,54,30.65,58.16,6,1,1,0,0,4,5,1,615.5,583321,0,0,3857.1301 -14248,17477,31824,31825,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,7.0024362,7.2963371,1,0,-9,6,0,-1,26.781412,0,0,0,71,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6116314,7.2961206,0,0,60.700001,47.650002,57.330002,53.459999,6,1,1,0,0,2,3,1,486,710075.19,0,0,3150.8784 -14248,17477,31825,31824,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.7387981,7.4682126,1,0,-9,6,0,1,-38.785542,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5113835,7.3404489,0,0,57.330002,53.459999,60.700001,47.650002,6,1,1,0,0,2,3,1,486,710075.19,0,0,3150.8784 -14249,17478,31826,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-989.34546,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.189999,27.059999,-9,-9,6,1,1,0,0,12,1,0,913,-68300.523,0,0,1168.8219 -14250,17479,31827,31828,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,0,4,0,7.8422575,7.822,1,0,-9,6,0,2,-45.582024,0,0,0,63,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0196404,7.5253677,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,6,3,1,661,1227368.3,0,0,1917.6465 -14250,17479,31828,31827,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,5.8880868,5.9322467,1,0,-9,12,0,-2,-34.86298,0,0,0,65,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2023892,0,0,57.16,56.150002,60.119999,54.799999,1,1,1,0,0,6,3,1,661,1227368.3,0,0,1917.6465 -14251,17480,31829,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,2,1,0,0,3,8.3609648,8.2942877,0,3,0,0,0,-9,0,-1046.0927,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,46,45,15,1,0,-9,0,12.266502,12.266502,0,0,0,0,0,0,0,0,0,0,0,6.920372,0,0,0,52.880001,43.27,-9,-9,5,1,1,0,0,7,4,0,363,266376.16,0,0,1980.5822 -14252,17481,31830,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-939.85211,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.049999,48.810001,-9,-9,4,1,1,0,0,11,1,1,715,-117338.15,0,0,1451.9086 -14253,17482,31831,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-946.08917,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.779999,26.65,-9,-9,5,1,1,0,0,13,1,0,267,18695.682,0,0,1407.1007 -14254,17483,31832,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,5,0,4.6274705,4.4961958,3,0,0,0,-9,0,-944.44684,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9330516,0,0,0,69.07,35.779999,-9,-9,7,1,1,0,0,7,2,0,241,493134.91,0,0,636.0274 -14255,17484,31833,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,0,3,7.5656967,7.5014491,4.953722,3,0,0,0,-9,0,-810.19232,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,28,28,15,1,0,-9,0,8.4387341,8.4387341,0,0,0,0,0,0,0,0,0,0,0,0,5.2593889,0,0,31.549999,62.299999,-9,-9,4,1,1,0,1,11,3,1,302,-5199.2642,0,0,515.59985 -14255,17485,31834,-9,31833,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,0,1,6.6343727,6.7110419,0,3,0,0,0,-9,0,-925.74268,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,1,22,12,15,1,0,-9,1,5.1528721,5.1528721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,40.380001,-9,-9,1,1,1,0,1,11,2,1,220,-73473.375,0,0,-346.06766 -14255,17486,31835,-9,31833,-9,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,3,7.9811568,7.6502714,0,3,0,0,0,-9,0,-941.55737,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,47,48,15,1,1,-9,1,6.8381276,6.8381276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,37.700001,-9,-9,4,1,1,0,0,11,3,1,415,-37633.813,0,0,1652.3375 -14256,17487,31836,31837,-9,-9,2,1,0,19,1,0,0,0,2,1,2,1,0,0,4,7.6147923,7.3535419,0,1,0,-9,2,0,-1,10.695148,-9,1,1,20,2,4,1,-9,-9,2019,1,1,11,1,40,0,15,1,0,1,0,6.6084809,6.6084809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,46.16,58.619999,5,1,1,0,0,10,4,0,453.5,154450.63,0,0,1647.9456 -14256,17487,31837,31836,-9,-9,1,1,1,20,1,0,0,0,2,-9,2,1,0,0,4,8.0533772,7.7204413,0,1,0,-9,2,0,1,118.88869,0,1,0,19,2,4,1,-9,-9,2019,1,2,13,2,43,42,15,1,0,1,0,6.931159,6.931159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,48.869999,58.549999,4,1,1,0,0,10,4,0,453.5,154450.63,0,0,1647.9456 -14257,17488,31838,31839,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.0838118,7.8827019,1,0,-9,11,0,3,127.88699,0,0,0,61,1,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7406034,7.6781321,0,0,60.119999,54.799999,55.189999,54.259998,6,1,1,0,0,9,4,1,935,1773376.9,0,0,3858.0017 -14257,17488,31839,31838,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,4,8.4616709,8.493824,0,1,0,-9,11,0,-3,-43.922943,0,0,0,64,1,4,3,2,2,2019,2,2,12,0,8,35,15,1,0,4,0,41.707161,41.707161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,60.119999,54.799999,4,1,1,0,0,9,4,1,935,1773376.9,0,0,3858.0017 -14258,17489,31840,31841,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,0,4,8.5640116,9.6964817,9.1856899,1,0,-9,44,0,2,-44.827621,0,0,0,64,1,4,1,2,2,2019,1,2,5,0,10,12,15,1,0,1,0,52.302658,52.302658,0,0,0,0,0,0,0,0,1,1,0,0,9.3050203,0,0,57.16,56.150002,48.279999,60.18,6,1,1,0,0,10,5,1,2180.5,6577470.5,0,0,13544.318 -14258,17489,31841,31840,-9,-9,2,1,0,64,1,0,0,0,1,-9,1,1,0,0,4,8.5273333,8.7370405,7.8301511,1,0,-9,8,0,-2,136.31032,0,0,0,66,1,4,1,-9,-9,2019,1,1,9,0,8,16,15,1,0,1,0,67.569855,67.569855,0,0,0,0,0,0,0,0,1,1,0,7.1400557,8.024374,0,0,48.279999,60.18,57.16,56.150002,7,1,1,0,0,10,5,1,2180.5,6577470.5,0,0,13544.318 -14259,17490,31842,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,1,1,7.4911032,7.8758769,5.0307264,3,0,0,0,-9,0,-921.14734,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,21,23,15,1,1,-9,0,11.291739,11.291739,0,0,0,0,0,0,0,0,1,1,0,5.5897546,5.3503051,0,0,47.799999,28.27,-9,-9,4,1,1,0,0,10,3,1,858,40681.434,0,0,1012.9677 -14260,17491,31843,31844,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,0,5,7.7435646,7.7887144,0,1,0,-9,36,0,-5,-49.067089,0,0,0,64,2,4,1,-9,1,2019,1,2,6,0,32,6,15,1,0,1,0,8.7463322,8.7463322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.380001,53.470001,63.240002,42.389999,7,1,1,0,0,8,3,0,616.5,1145401.9,0,0,1984.2823 -14260,17491,31844,31843,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,0,4,7.050806,6.926827,0,1,0,-9,36,0,5,-16.362099,0,0,0,59,1,5,1,2,2,2019,1,1,9,0,6,20,15,1,0,1,0,22.765762,22.765762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.240002,42.389999,63.380001,53.470001,6,2,3,0,0,8,3,0,616.5,1145401.9,0,0,1984.2823 -14260,17492,31845,-9,31844,31843,3,1,1,30,2,0,0,0,1,-9,2,1,0,0,3,7.890111,8.143837,0,3,0,0,0,-9,0,-928.75348,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,40,30,15,1,1,-9,1,8.5960464,8.5960464,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.369999,-9,-9,4,4,2,0,0,8,4,0,427,-21463.188,0,0,1743.7849 -14261,17493,31846,31847,-9,-9,1,1,1,40,1,1,2,0,2,-9,1,1,0,0,3,5.0719657,4.826107,0,2,0,-9,6,0,15,-37.900612,0,0,0,25,2,3,3,2,2,2019,2,2,9,0,40,40,15,1,0,3,0,.49267375,.49267375,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.509998,46.029999,42.209999,52.5,6,1,1,0,0,12,1,0,602,38149.02,0,0,82.579575 -14261,17493,31847,31846,-9,-9,2,1,0,25,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-15,11.510285,0,1,1,40,2,3,1,-9,-9,2019,3,1,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,15.509876,3,42.209999,52.5,55.509998,46.029999,6,1,1,0,0,12,1,0,602,38149.02,0,0,82.579575 -14261,17493,31848,-9,31847,31846,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.44873,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,1,0,602,38149.02,0,0,82.579575 -14261,17493,31849,-9,31847,31846,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.11078,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,1,0,602,38149.02,0,0,82.579575 -14262,17494,31850,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,3,0,7.9376307,8.247406,3,0,0,0,-9,0,-990.67749,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,40.873901,0,0,0,1,1,0,.42802763,8.1943874,0,0,68.650002,26.35,-9,-9,7,1,1,0,0,2,4,1,1004,859954.94,0,0,2683.7913 -14263,17495,31851,-9,31854,31855,1,1,0,28,2,0,0,0,1,-9,1,1,0,0,4,9.6868544,9.6954718,0,3,0,0,0,-9,0,-958.70215,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,24,32,15,1,0,-9,1,77.557816,77.557816,0,0,0,0,0,0,0,0,1,1,0,5.2662368,0,0,0,54.200001,57.490002,-9,-9,6,2,3,0,0,6,5,1,1936,99340.859,0,0,11266.421 -14263,17496,31852,-9,31854,31855,2,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.3564234,8.4719553,0,3,0,0,0,-9,0,-1098.447,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,8,37,15,1,0,-9,1,53.397739,53.397739,0,0,0,0,0,0,0,0,1,1,0,.2589007,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,6,4,1,840,35550.102,0,0,2224.7021 -14263,17497,31853,-9,31854,31855,3,1,1,21,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-919.05566,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,-9,-9,5,2,3,0,0,6,1,1,2938,0,0,0,-761.24561 -14263,17498,31854,31855,-9,-9,5,1,0,51,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,37,0,-4,0,0,0,0,55,3,3,3,3,3,2019,4,4,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.119999,49.060001,57.330002,53.459999,6,2,3,0,0,6,1,1,452,20990.76,0,0,1225.4999 -14263,17498,31855,31854,-9,-9,4,1,1,55,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,37,0,4,0,0,0,0,51,3,3,3,3,3,2019,4,5,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,43.119999,49.060001,6,2,3,1,0,6,1,1,452,20990.76,0,0,1225.4999 -14264,17499,31856,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,0,3,7.4999809,7.3567872,0,3,0,-9,0,-9,0,-1047.0813,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,39,0,15,1,0,-9,0,5.9463305,5.9463305,0,0,0,0,0,0,0,0,0,0,0,.24118678,0,0,0,52,48,-9,-9,5,1,1,0,0,4,3,1,955,15587.465,0,0,674.86841 -14265,17500,31857,-9,31859,31858,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.5021,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,4,1,650.33331,57388.57,0,0,1699.0889 -14265,17500,31858,31859,-9,-9,2,1,1,27,1,1,1,0,2,-9,2,1,0,0,5,8.0857306,8.2312412,0,2,0,-9,3,0,-1,-111.96897,0,1,0,28,2,4,1,-9,-9,2019,1,1,6,0,35,36,15,1,0,1,0,12.755512,12.755512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,7,4,1,650.33331,57388.57,0,0,1699.0889 -14265,17500,31859,31858,-9,-9,1,1,0,28,1,1,1,0,2,-9,2,1,0,0,4,6.7490416,6.9949832,0,2,0,-9,3,0,1,-60.254169,0,1,1,27,2,5,1,2,2,2019,1,2,6,0,12,40,15,1,0,1,0,9.3985491,9.3985491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.060001,57.759998,6,1,1,0,0,7,4,1,650.33331,57388.57,0,0,1699.0889 -14266,17501,31860,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,0,4,8.8567734,8.7445593,0,1,0,-9,3,0,5,-85.441528,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,15,3,38,37,15,1,0,-9,0,13.758205,13.758205,0,0,0,0,0,0,0,0,0,0,0,3.5930374,0,0,0,48.509998,54.509998,44.32,38.02,4,1,1,0,0,2,5,1,564,41665.395,0,0,2248.3979 -14266,17502,31861,-9,-9,-9,2,1,0,52,2,0,0,0,2,-9,2,1,0,0,3,8.1711712,7.893889,0,1,0,-9,3,0,-5,126.88974,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,19,7,38,37,15,1,1,-9,0,11.464729,11.464729,0,0,0,0,0,0,0,0,0,0,0,4.2103963,0,0,0,44.32,38.02,48.509998,54.509998,6,1,1,0,0,2,5,1,105,531851,0,0,1555.8151 -14267,17503,31862,31863,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,0,4,8.4251432,8.1263847,0,1,0,-9,3,0,-1,-62.198605,0,1,0,26,1,4,1,-9,-9,2019,1,1,6,0,38,37,15,1,0,1,0,12.350278,12.350278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,52.330002,54.66,6,1,1,0,0,9,4,0,383,-32024.104,0,0,1859.5251 -14267,17503,31863,31862,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,4,7.9413962,8.2470665,0,1,0,-9,3,0,1,3.4457006,0,1,1,25,2,4,1,2,2,2019,1,2,8,0,32,40,15,1,0,1,0,10.716532,10.716532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.330002,54.66,62.490002,55.09,7,1,1,0,0,9,4,0,383,-32024.104,0,0,1859.5251 -14268,17504,31864,31865,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,7.7996998,7.9168553,1,0,-9,50,0,3,-54.71701,0,0,0,69,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2975821,8.3378296,0,0,62.389999,56.709999,60.119999,54.799999,7,1,1,0,0,9,3,1,1440,757888,0,0,2414.2524 -14268,17504,31865,31864,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.8359303,7.4393797,1,0,-9,50,0,-3,43.776131,0,0,0,72,2,5,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0904112,0,0,60.119999,54.799999,62.389999,56.709999,6,1,1,0,0,9,3,1,1440,757888,0,0,2414.2524 -14269,17505,31866,31867,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.6878276,7.9130774,1,0,-9,53,0,-1,36.804134,0,0,0,76,3,3,3,2,2,2019,4,1,16,5,0,0,15,4,1,4,0,0,0,1,2.3173001,0,0,0,0,0,2,1,1,0,4.6900201,7.8648901,4.654078,3,55.790001,41.889999,53.169998,36.240002,3,1,1,0,0,8,4,1,975.5,1047378.6,0,0,3155.147 -14269,17505,31867,31866,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,3,0,7.9184537,7.8197174,1,0,-9,53,0,1,-6.4746704,0,0,0,75,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,15.595305,10.961957,0,0,0,167.95831,14.5,1,1,0,.92513835,7.9069061,8.4205341,3,53.169998,36.240002,55.790001,41.889999,6,1,1,0,0,8,4,1,975.5,1047378.6,0,0,3155.147 -14270,17506,31868,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,0,4,0,5.361712,5.0795732,3,0,0,0,-9,0,-1025.198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.052335788,5.2389011,0,0,58.400002,51.639999,-9,-9,6,1,1,0,0,11,2,0,1683,150032.34,0,0,1044.0767 -14271,17507,31869,-9,31870,31871,3,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-997.93188,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,7,1,1,0,0,2,4,0,221.33333,403764.88,0,0,2735.7852 -14271,17507,31870,31871,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,5,7.4790821,7.4219804,0,2,0,-9,14,0,1,62.666595,0,0,1,43,1,3,1,2,1,2019,1,1,8,0,35,25,15,1,0,1,0,7.4142327,7.4142327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.810001,47.759998,47.66,52.330002,6,1,1,0,0,2,4,0,221.33333,403764.88,0,0,2735.7852 -14271,17507,31871,31870,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,0,3,8.3479328,8.6555529,0,2,0,-9,14,0,-1,110.90871,0,0,0,44,1,5,1,2,2,2019,1,2,10,0,39,38,15,1,0,1,0,16.814255,16.814255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.330002,57.810001,47.759998,5,1,1,0,0,2,4,0,221.33333,403764.88,0,0,2735.7852 -14272,17508,31872,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,0,2,0,6.8180947,6.7168941,3,0,0,0,-9,0,-991.20679,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.5786386,6.5143085,0,0,62.27,32.41,-9,-9,6,1,1,0,0,4,2,1,148,37368.809,0,0,775.28253 -14273,17509,31873,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,0,4,8.3703604,8.4385252,0,3,0,0,0,-9,0,-945.0116,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,55,90,15,1,0,-9,0,8.6456051,8.6456051,0,0,0,0,0,0,0,0,0,0,0,7.9654393,0,0,0,40.720001,54.380001,-9,-9,2,1,1,0,0,13,4,1,416,92034.453,0,0,2075.7693 -14274,17510,31874,31876,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,0,5,8.3449583,8.4368172,0,2,0,-9,8,0,6,-54.888325,-9,0,0,30,2,2,3,-9,-9,2019,2,1,8,0,40,0,15,1,0,3,0,11.87997,11.87997,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.400002,59.869999,20.02,55.959999,7,1,1,0,0,7,3,0,929,176355.67,0,0,2223.064 -14274,17510,31875,-9,31876,31874,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.65997,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,929,176355.67,0,0,2223.064 -14274,17510,31876,31874,-9,-9,1,1,0,30,1,1,1,0,2,-9,6,3,0,1,2,0,0,0,2,0,-9,8,0,-6,83.705864,0,0,1,36,2,5,1,-9,-9,2019,3,2,22,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.02,55.959999,46.400002,59.869999,4,1,1,0,1,7,3,0,929,176355.67,0,0,2223.064 -14275,17511,31877,31878,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,0,4,8.588851,8.4191332,5.0363545,1,0,-9,26,-9,5,-140.81963,-9,0,0,58,2,2,1,-9,-9,2019,1,1,6,0,35,0,15,1,0,1,0,18.057135,18.057135,0,0,0,0,0,0,0,0,0,0,0,5.5120316,5.5502596,0,0,58.150002,52.91,44.830002,41.900002,6,1,1,0,0,2,5,1,944.5,680377.81,0,0,2631.5107 -14275,17511,31878,31877,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,7.4856114,7.7015185,0,1,0,-9,26,-9,-5,-11.802769,-9,0,0,63,3,4,1,3,2,2019,1,2,20,8,30,0,15,1,1,1,0,8.0568819,8.0568819,0,0,0,0,0,0,0,0,0,0,0,2.0383036,0,0,0,44.830002,41.900002,58.150002,52.91,6,1,1,0,0,2,5,1,944.5,680377.81,0,0,2631.5107 -14276,17512,31879,-9,31881,31880,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1100.946,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,4,3,1,654,135105.16,0,0,2359.9338 -14276,17512,31880,31881,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,0,1,7.6633968,8.0336456,0,2,0,-9,8,0,6,-8.729146,0,0,0,39,1,4,2,3,3,2019,2,2,12,2,39,39,15,1,0,2,0,6.6860185,6.6860185,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.830002,21.190001,51.240002,58.84,3,4,2,0,0,4,3,1,654,135105.16,0,0,2359.9338 -14276,17512,31881,31880,-9,-9,2,1,0,39,1,0,2,0,1,0,7,2,0,0,4,6.8237295,6.7550778,0,2,0,-9,8,0,-6,-28.686991,-9,0,1,45,2,1,1,-9,-9,2019,3,1,9,1,12,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.240002,58.84,42.830002,21.190001,6,1,1,0,0,4,3,1,654,135105.16,0,0,2359.9338 -14276,17512,31882,-9,31881,31880,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1051.4845,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,-9,-9,5,1,1,0,0,4,3,1,654,135105.16,0,0,2359.9338 -14277,17513,31883,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,4,0,6.8432765,6.7942333,3,0,0,0,-9,0,-1115.7114,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8434427,6.6878266,0,0,56.779999,49.380001,-9,-9,6,1,1,0,0,1,2,0,347,182829.59,0,0,1782.4174 -14278,17514,31884,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,0,2,8.3984461,8.4559669,0,3,0,0,0,-9,0,-900.64752,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,48,43,15,1,1,-9,0,9.224577,9.224577,0,0,0,0,0,0,0,0,1,1,0,.11869303,0,0,0,48.299999,41.759998,-9,-9,5,1,1,0,0,10,4,1,505,152303.94,0,0,439.80692 -14279,17515,31885,31886,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,2,7.9661436,8.4039574,0,1,0,-9,6,0,3,53.423275,0,0,0,46,3,2,1,3,3,2019,1,1,14,2,47,41,15,1,0,1,0,11.253869,11.253869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.349998,30.780001,17.48,44.759998,4,1,1,0,0,9,5,1,933,165640.84,0,0,3045.0059 -14279,17515,31886,31885,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,0,2,8.0782747,8.1428661,0,1,0,-9,6,0,-3,-30.872828,0,0,0,49,2,2,1,2,3,2019,1,2,31,11,35,39,15,1,1,1,0,13.98845,13.98845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.48,44.759998,42.349998,30.780001,1,1,1,0,0,9,5,1,933,165640.84,0,0,3045.0059 -14279,17516,31887,-9,31886,31885,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.0899796,7.1950674,0,3,0,0,0,-9,0,-940.67767,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,24,9,18,28,15,1,1,-9,1,9.3275547,9.3275547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.299999,67.470001,-9,-9,5,1,1,0,0,9,2,1,271,-124134.8,0,0,2297.4761 -14280,17517,31888,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,3,0,8.2666302,8.3760662,3,0,0,0,-9,0,-978.0177,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1921263,0,0,57.919998,51.82,-9,-9,6,1,1,0,0,2,4,1,267,1220310,0,0,2568.5229 -14281,17518,31889,31890,-9,-9,1,1,1,75,1,0,0,0,2,-9,1,1,0,0,2,8.8181658,8.9216204,6.9458175,1,0,-9,10,0,-1,48.925499,0,0,0,76,2,3,1,2,2,2019,1,2,13,3,10,20,15,1,0,1,0,60.33847,60.33847,0,0,0,0,0,0,0,0,1,1,0,7.8559666,6.9876924,0,0,35.720001,50.23,46.419998,52.880001,6,1,1,0,0,7,5,1,1083.5,2324482,0,0,4882.6899 -14281,17518,31890,31889,-9,-9,2,1,0,76,1,0,0,0,2,-9,2,1,0,0,3,6.7396674,6.5092945,0,1,0,-9,10,0,1,44.807304,0,0,0,75,2,2,1,2,1,2019,1,1,9,0,8,0,15,1,0,1,0,12.00844,12.00844,1,0,0,0,0,0,0,0,1,1,0,3.9870925,0,0,0,46.419998,52.880001,35.720001,50.23,6,1,1,0,0,7,5,1,1083.5,2324482,0,0,4882.6899 -14282,17519,31891,31892,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,0,3,8.1297388,8.0779343,0,1,0,-9,25,0,7,42.417976,0,0,0,46,3,5,1,2,2,2019,1,2,15,3,35,35,15,1,0,1,0,12.833181,12.833181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.860001,35.07,45.68,47.259998,7,2,3,0,0,8,4,0,1602,950929.63,0,0,3429.2891 -14282,17519,31892,31891,-9,-9,2,1,0,46,1,0,0,0,3,-9,2,1,0,0,5,7.5458765,7.3639383,0,1,0,-9,25,0,-7,15.742061,0,0,0,53,3,3,1,2,2,2019,1,1,9,2,32,24,15,1,0,1,0,7.4518137,7.4518137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.68,47.259998,61.860001,35.07,7,2,3,0,0,8,4,0,1602,950929.63,0,0,3429.2891 -14283,17520,31893,31894,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,2,7.891521,7.9725814,5.8779783,1,0,-9,32,0,5,-18.55014,0,0,0,53,2,4,1,2,2,2019,1,2,6,0,30,30,15,1,0,1,0,9.4511499,9.4511499,0,0,0,0,0,0,0,0,1,1,0,.79094243,5.9082994,0,0,60.400002,32.080002,53.369999,41.630001,6,1,1,0,0,1,5,0,820.5,980264.75,0,0,4091.2576 -14283,17520,31894,31893,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,8.7210064,9.2213373,5.0799499,1,0,-9,32,0,-5,-122.7425,0,0,0,58,1,2,1,2,-9,2019,1,1,12,0,38,37,15,1,0,1,0,15.947079,15.947079,0,0,0,0,0,0,0,0,1,1,0,6.2060795,0,0,0,53.369999,41.630001,60.400002,32.080002,6,1,1,0,0,1,5,0,820.5,980264.75,0,0,4091.2576 -14283,17521,31895,-9,31894,31893,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.2623224,8.6018543,0,3,0,0,0,-9,0,-1102.4994,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,38,37,15,1,0,-9,1,9.9514332,9.9514332,0,0,0,0,0,0,0,0,1,1,0,.10648266,0,0,0,38.84,59.580002,-9,-9,2,1,1,0,0,1,4,0,399,-208857.7,0,0,1699.0532 -14284,17522,31896,31897,-9,-9,1,1,0,25,1,0,1,0,2,-9,8,3,1,1,1,0,0,0,2,0,-9,7,0,-1,0,0,1,1,26,2,3,3,3,3,2019,4,2,29,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.440001,23.66,21.219999,61.889999,1,1,1,0,0,10,1,0,846.33331,32155.971,0,0,2891.1711 -14284,17522,31897,31896,-9,-9,2,1,1,26,1,0,1,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,7,0,1,0,0,1,0,25,2,1,3,2,2,2019,4,1,22,9,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.873276,1,21.219999,61.889999,25.440001,23.66,4,1,1,1,0,10,1,0,846.33331,32155.971,0,0,2891.1711 -14284,17522,31898,-9,31896,31897,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1107.7914,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,1,0,846.33331,32155.971,0,0,2891.1711 -14285,17523,31899,-9,31900,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-962.7243,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,1,0,1106,0,0,0,2683.3538 -14285,17523,31900,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,3,3,0,1,4,0,0,0,4,0,0,0,-9,0,-834.48163,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,7,4,2,1,0,8,1,0,1106,0,0,0,2683.3538 -14285,17523,31901,-9,31900,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1004.8591,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,8,1,0,1106,0,0,0,2683.3538 -14286,17524,31902,31903,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,0,4,9.6652117,9.5575743,0,2,0,-9,25,0,0,65.975029,0,0,0,49,1,4,1,2,1,2019,1,2,10,2,43,46,15,1,0,1,0,31.629021,31.629021,0,0,0,0,0,0,0,0,0,0,0,1.3286345,0,0,0,51.830002,57.200001,51.830002,57.200001,6,2,3,0,0,8,5,1,407,1606760,0,0,13002.492 -14286,17524,31903,31902,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,0,4,9.5782413,9.724474,0,2,0,-9,9,0,0,96.347771,0,0,0,49,1,4,1,-9,-9,2019,1,1,8,0,55,46,15,1,0,1,0,25.820038,25.820038,0,0,0,0,0,0,0,0,0,0,0,7.4239831,0,0,0,51.830002,57.200001,51.830002,57.200001,6,1,1,0,0,8,5,1,407,1606760,0,0,13002.492 -14287,17525,31904,31905,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,8.2883463,8.4095402,5.725389,1,0,-9,2,0,-4,35.658642,0,0,0,63,2,4,3,-9,-9,2019,2,1,8,1,48,60,15,1,0,4,0,9.6567879,9.6567879,0,0,0,0,0,0,0,0,1,1,0,2.6564209,6.3019557,0,0,60.310001,43.75,58.150002,52.91,6,1,1,0,0,5,4,1,1437.5,668659,0,0,4272.4297 -14287,17525,31905,31904,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.7059178,7.3105431,1,0,-9,2,0,4,113.06538,0,0,0,59,2,3,1,2,2,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.5677228,7.2758965,15.548153,3,58.150002,52.91,60.310001,43.75,7,1,1,0,0,5,4,1,1437.5,668659,0,0,4272.4297 -14288,17526,31906,31907,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,7.9587231,7.7642059,0,1,0,-9,38,0,1,-57.941628,0,0,0,59,3,2,1,3,3,2019,1,2,12,0,30,0,15,1,0,1,0,9.2401218,9.2401218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.540001,52.360001,48.93,52.459999,3,1,1,0,1,6,3,0,1008.5,775067.25,0,0,1390.4321 -14288,17526,31907,31906,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,0,2,7.1950078,7.5817285,0,1,0,-9,9,0,-1,-52.018288,0,0,0,60,3,3,1,-9,-9,2019,1,1,13,1,10,10,15,1,0,1,0,15.009198,15.009198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.93,52.459999,47.540001,52.360001,5,1,1,0,1,6,3,0,1008.5,775067.25,0,0,1390.4321 -14289,17527,31908,-9,-9,-9,1,1,0,30,3,0,0,0,2,-9,2,1,0,0,2,7.0720568,7.2329068,0,3,0,-9,0,1,0,-1120.5923,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,25,12,25,0,15,1,1,-9,0,6.7801685,6.7801685,0,0,0,0,0,0,0,2,0,0,0,0,0,6.5671473,3,38.330002,53.330002,-9,-9,3,1,1,0,0,12,3,0,237,-55380.984,0,0,1620.569 -14290,17528,31909,31910,-9,-9,1,1,1,76,1,0,0,0,3,-9,2,1,0,0,4,7.1804776,7.2444334,0,1,0,-9,53,0,5,54.936298,0,0,0,71,3,3,1,3,3,2019,1,2,8,0,24,24,15,1,0,1,0,7.2948632,7.2948632,0,0,0,0,0,0,0,2,1,1,0,5.3614216,0,4.7678447,1,58.150002,52.91,71.760002,19.469999,6,1,1,0,0,8,3,1,698.5,1477060.5,0,0,3126.7673 -14290,17528,31910,31909,-9,-9,2,1,0,71,1,0,0,0,3,-9,2,1,0,0,3,7.3077202,7.5238991,4.2289853,1,0,-9,53,0,-5,-16.587288,0,0,0,76,3,4,1,-9,-9,2019,1,1,6,0,24,24,15,1,0,1,0,9.299407,9.299407,0,0,0,0,0,0,0,0,1,1,0,4.7690711,4.3331861,0,0,71.760002,19.469999,58.150002,52.91,6,1,1,0,0,8,3,1,698.5,1477060.5,0,0,3126.7673 -14290,17529,31911,-9,31910,31909,3,1,1,44,3,0,0,0,2,-9,2,1,0,0,4,8.7254934,8.8813372,0,3,0,-9,0,-9,0,-942.60199,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,40,0,15,1,0,-9,1,17.412273,17.412273,0,0,0,0,0,0,0,0,1,1,0,3.2689617,0,0,0,52,55,-9,-9,5,1,1,0,0,8,5,1,1528,-123725.56,0,0,2633.2009 -14291,17530,31912,-9,31913,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-906.26611,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,1,0,953,82233.656,0,0,1795.5299 -14291,17530,31913,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-957.74139,1,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.439999,55.459999,-9,-9,5,2,3,0,0,8,1,0,953,82233.656,0,0,1795.5299 -14291,17530,31914,-9,31913,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1054.3779,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,8,1,0,953,82233.656,0,0,1795.5299 -14292,17531,31915,31916,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,0,4,7.444262,7.6267881,0,2,0,-9,8,0,-7,-43.290367,0,0,1,47,2,4,1,1,2,2019,1,2,7,0,32,28,15,1,0,1,0,5.7747998,5.7747998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.310001,58.290001,52,55,5,1,1,0,0,5,3,1,1105.5,60877.363,0,0,2770.5837 -14292,17531,31916,31915,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,8.3019991,8.3366852,0,2,0,-9,8,0,7,-79.62114,0,0,0,40,2,4,1,3,-9,2019,1,1,9,1,45,45,15,1,0,1,0,10.953547,10.953547,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,52.310001,58.290001,6,1,1,0,0,5,3,1,1105.5,60877.363,0,0,2770.5837 -14292,17531,31917,-9,31915,31916,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.0138,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,1,1105.5,60877.363,0,0,2770.5837 -14292,17531,31918,-9,31915,31916,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.34357,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,3,1,1105.5,60877.363,0,0,2770.5837 -14293,17532,31919,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,0,3,0,7.042593,7.313036,3,0,0,0,-9,0,-800.50665,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5095363,7.153161,0,0,57.509998,42.369999,-9,-9,6,1,1,0,0,10,3,1,494,535906.38,0,0,2262.8601 -14294,17533,31920,31921,-9,-9,1,1,1,48,1,1,1,0,2,-9,2,1,0,0,2,8.2210016,8.3874998,0,2,0,-9,8,0,12,166.69273,0,0,0,36,2,4,1,2,2,2019,1,2,5,0,40,38,15,1,0,1,0,9.435113,9.435113,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.849998,40.75,48.810001,59.91,6,1,1,0,0,2,4,1,791.33331,132816.66,0,0,2850.4023 -14294,17533,31921,31920,-9,-9,2,1,0,36,1,1,1,0,2,-9,2,1,0,0,4,7.6451821,7.7002535,0,2,0,-9,8,0,-12,-109.89307,0,0,1,48,2,2,1,-9,-9,2019,1,1,14,2,21,40,15,1,0,1,0,12.381736,12.381736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,52.849998,40.75,6,1,1,0,0,2,4,1,791.33331,132816.66,0,0,2850.4023 -14294,17533,31922,-9,31921,31920,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-931.45215,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,4,1,791.33331,132816.66,0,0,2850.4023 -14295,17534,31923,31924,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,42,0,3,0,0,0,0,63,3,2,3,-9,-9,2019,4,2,18,6,0,0,15,4,1,3,0,0,0,1,0,120.53462,0,0,0,0,0,1,1,0,0,0,0,0,43.009998,27.719999,41.709999,33.650002,5,2,3,0,0,4,1,1,271.5,-21312.785,0,0,1832.6113 -14295,17534,31924,31923,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,42,0,-3,0,0,0,0,66,3,1,3,-9,-9,2019,4,1,18,6,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.709999,33.650002,43.009998,27.719999,5,2,3,0,0,4,1,1,271.5,-21312.785,0,0,1832.6113 -14295,17535,31925,-9,31924,31923,3,1,0,26,2,0,0,1,1,0,7,2,0,0,3,7.7500076,7.5899253,0,3,0,0,0,-9,0,-894.36053,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,37.599998,-9,-9,4,2,3,0,0,4,3,1,69,-103992.11,0,0,684.54852 -14295,17536,31926,-9,31924,31923,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.9246588,8.0478144,0,3,0,0,0,-9,0,-750.02563,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,37,38,15,1,0,-9,1,8.6404037,8.6404037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.200001,48.709999,-9,-9,4,2,3,0,0,4,4,1,448,-49574.234,0,0,156.70265 -14295,17537,31927,-9,31924,31923,5,1,0,23,2,0,0,1,2,0,7,2,0,0,3,7.3490381,7.1919646,0,3,0,0,0,-9,0,-869.95801,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,32,12,14,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.200001,46,-9,-9,4,2,3,0,0,4,2,1,294,-240683.44,0,0,2239.3147 -14296,17538,31928,-9,-9,-9,1,1,0,40,2,0,3,0,3,-9,6,3,0,1,1,0,0,0,4,0,0,0,-9,0,-1143.3982,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.450001,33.259998,-9,-9,5,1,1,0,0,2,1,0,108.5,-77557.188,0,0,1970.9695 -14296,17538,31929,-9,31928,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1109.9824,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,108.5,-77557.188,0,0,1970.9695 -14297,17539,31930,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,0,1,6.6044726,6.5117211,0,3,0,0,0,-9,0,-1001.6182,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,40,40,15,1,1,-9,0,1.4920162,1.4920162,0,0,0,0,0,0,0,14.5,0,0,0,0,0,19.026861,3,34.209999,22.48,-9,-9,1,1,1,0,1,1,2,1,901,80486.859,0,0,1062.5635 -14298,17540,31931,31933,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.636363,8.8159342,0,2,0,-9,17,0,-3,-44.648945,0,0,0,45,1,4,1,2,2,2019,1,1,9,1,60,50,15,1,0,1,0,13.637216,13.637216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,46.630001,59.720001,6,1,1,0,0,6,4,1,726.25,592415.25,0,0,4592.4834 -14298,17540,31932,-9,31933,31931,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.5833,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,6,4,1,726.25,592415.25,0,0,4592.4834 -14298,17540,31933,31931,-9,-9,1,1,0,45,1,0,2,0,1,-9,1,1,0,0,4,7.7754498,7.8553114,0,2,0,-9,19,0,3,71.120865,0,0,0,42,2,4,1,3,2,2019,1,2,10,1,40,40,15,1,0,1,0,8.7464275,8.7464275,0,0,0,0,0,0,0,0,0,0,0,1.0804287,0,0,0,46.630001,59.720001,51,56,5,4,2,0,0,6,4,1,726.25,592415.25,0,0,4592.4834 -14298,17540,31934,-9,31933,31931,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.21722,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,726.25,592415.25,0,0,4592.4834 -14299,17541,31935,31937,-9,-9,1,1,1,40,1,0,2,0,1,-9,1,1,0,0,5,5.7027864,5.7659855,0,2,0,-9,12,0,2,21.686876,0,0,0,38,1,5,3,2,2,2019,2,2,7,0,50,45,15,1,0,3,0,.95553857,.95553857,0,0,0,0,0,0,0,0,0,0,0,5.2523098,0,0,0,48.169998,49.369999,57.060001,57.759998,6,1,1,0,0,8,2,1,554.75,290490.84,0,0,-32.280151 -14299,17541,31936,-9,31937,31935,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.2127,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,2,1,554.75,290490.84,0,0,-32.280151 -14299,17541,31937,31935,-9,-9,2,1,0,38,1,0,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,12,0,-2,-54.534649,0,0,1,40,1,5,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7731266,0,0,0,57.060001,57.759998,48.169998,49.369999,6,1,1,0,0,8,2,1,554.75,290490.84,0,0,-32.280151 -14299,17541,31938,-9,31937,31935,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.1028,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,8,2,1,554.75,290490.84,0,0,-32.280151 -14300,17542,31939,31940,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,1,3,0,7.645761,7.4293618,1,0,-9,6,0,4,-129.08701,0,0,0,76,2,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.0627327,7.406857,19.720339,1,57.23,52.549999,41.200001,22.07,5,1,1,0,0,11,4,1,705.5,606862.44,0,0,4475.7793 -14300,17542,31940,31939,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,1,0,7.968709,8.0780916,1,0,-9,6,0,-4,103.20362,0,0,0,80,3,3,3,-9,-9,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,1,0,17.390404,0,0,0,0,0,1,1,0,2.0854738,7.7821126,0,0,41.200001,22.07,57.23,52.549999,6,1,1,0,0,11,4,1,705.5,606862.44,0,0,4475.7793 -14301,17543,31941,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,0,3,8.0025778,7.7430787,0,3,0,0,0,-9,0,-902.89905,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,41,46,15,1,0,-9,0,7.6159616,7.6159616,0,0,0,0,0,0,0,2,1,1,0,3.8583045,0,.7621752,3,54.369999,54.799999,-9,-9,6,1,1,0,0,2,4,0,255,184756.05,0,0,1164.8064 -14301,17544,31942,-9,-9,-9,2,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-999.64227,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.8534757,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,1,2,1,0,846,274794.09,0,0,1707.0131 -14302,17545,31943,31944,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,51,0,0,44.654011,0,0,0,72,2,1,3,2,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9473252,0,0,0,59.139999,12.67,46.32,26.67,5,1,1,0,0,2,2,1,1330.5,303063.63,0,0,2694.249 -14302,17545,31944,31943,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,1,0,6.6101632,6.5845346,1,0,-9,51,0,0,-80.048576,0,0,0,72,3,1,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.4799848,6.5388589,0,0,46.32,26.67,59.139999,12.67,3,1,1,0,0,2,2,1,1330.5,303063.63,0,0,2694.249 -14303,17546,31945,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,0,3,7.5575671,7.7428946,0,3,0,0,0,-9,0,-1084.2433,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,7,50,0,15,1,1,-9,0,4.2155046,4.2155046,0,0,0,0,0,0,0,0,0,0,0,6.4779353,0,0,0,44.43,37.66,-9,-9,3,3,4,0,1,8,3,0,839,80562.695,0,0,873.1073 -14304,17547,31946,31947,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,0,4,7.0292306,7.9744158,7.3156862,1,0,-9,7,0,-2,-67.783844,0,0,0,60,1,5,1,-9,-9,2019,1,1,7,0,7,7,15,1,0,1,0,19.398674,19.398674,0,0,0,0,0,0,0,2,0,0,0,0,7.2522101,.98216712,3,51.830002,57.200001,57.060001,57.759998,6,1,1,0,0,2,5,1,242.5,2246207.3,0,0,15703.598 -14304,17547,31947,31946,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,0,5,9.9606276,9.4170675,0,1,0,-9,35,0,2,145.90038,0,0,0,58,1,4,1,3,3,2019,1,2,10,0,30,30,15,1,0,1,0,75.635109,75.635109,0,0,0,0,0,0,0,0,0,0,0,3.9473362,0,0,0,57.060001,57.759998,51.830002,57.200001,6,1,1,0,0,2,5,1,242.5,2246207.3,0,0,15703.598 -14305,17548,31948,-9,31949,31950,3,1,1,40,2,0,0,0,3,-9,2,1,0,0,4,8.611536,8.3675966,0,3,0,0,0,-9,0,-915.97504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,38,0,15,1,0,-9,1,13.307904,13.307904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,1,1,0,0,9,4,1,408,308618.94,0,0,1534.1512 -14305,17549,31949,31950,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,5,0,5.7962794,6.0618277,1,0,-9,6,0,0,-88.046669,0,0,0,66,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7534633,5.8799586,0,0,60.02,56.419998,52,48,6,1,1,0,0,9,2,1,1243.5,1069930.5,0,0,3540.6963 -14305,17549,31950,31949,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,5.7458143,5.7249513,1,0,-9,6,0,0,46.765991,-9,0,0,66,2,5,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5970092,0,0,52,48,60.02,56.419998,5,4,1,0,0,9,2,1,1243.5,1069930.5,0,0,3540.6963 -14306,17550,31951,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,9,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1031.089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,12,0,0,15,3,1,-9,0,0,0,1,8.6944132,0,18.70837,0,16.288082,39.858044,0,1,0,1,0,0,0,0,32.720001,32.580002,-9,-9,3,4,5,0,0,11,1,0,439,104667.43,0,0,2724.3569 -14307,17551,31952,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,4,0,8.6451674,8.1982794,3,0,0,0,-9,0,-923.58032,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1270123,8.2107725,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,9,4,1,183,1070064.4,0,0,3441.0359 -14308,17552,31953,31955,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,4,8.7796326,8.2929659,0,2,0,-9,24,0,-1,-80.151833,0,0,0,47,1,3,1,3,2,2019,1,1,7,0,38,30,15,1,0,1,0,16.439169,16.439169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,35.560001,52.740002,6,1,1,0,0,1,5,1,1253.3334,616175.25,0,0,5785.8867 -14308,17552,31954,-9,31953,31955,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.0577,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,5,1,1253.3334,616175.25,0,0,5785.8867 -14308,17552,31955,31953,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,3,8.9459839,9.0334129,0,2,0,-9,17,0,1,-10.767055,0,0,0,46,2,4,1,3,2,2019,1,2,23,11,52,42,15,1,1,1,0,18.250847,18.250847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.560001,52.740002,57.16,56.150002,3,1,1,0,0,1,5,1,1253.3334,616175.25,0,0,5785.8867 -14308,17553,31956,-9,31953,31955,3,1,0,18,2,0,2,1,2,0,7,2,0,0,4,6.649066,6.425221,0,3,0,0,0,-9,0,-824.76141,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,1,5,1,688,79222.82,0,0,492.95667 -14309,17554,31957,31958,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,8.4963856,8.4726467,0,1,0,-9,3,0,-1,134.55708,0,1,0,29,1,5,1,-9,-9,2019,1,1,10,1,37,37,15,1,0,1,0,17.466093,17.466093,0,0,0,0,0,0,0,0,0,0,0,2.6977477,0,0,0,49,58,57.060001,57.759998,5,4,1,0,0,11,5,0,695,141880.58,0,0,4154.0371 -14309,17554,31958,31957,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.3446283,8.4791002,0,1,0,-9,3,0,1,-15.210783,0,1,1,28,1,4,1,2,2,2019,1,2,6,0,38,37,15,1,0,1,0,13.214132,13.214132,0,0,0,0,0,0,0,0,0,0,0,4.0474653,0,0,0,57.060001,57.759998,49,58,6,1,1,0,0,11,5,0,695,141880.58,0,0,4154.0371 -14310,17555,31959,-9,-9,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,0,5,8.2745466,7.9119034,0,3,0,0,0,-9,0,-886.09601,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,2,37,37,15,1,0,-9,0,9.5480137,9.5480137,0,0,0,0,0,0,0,0,0,0,0,3.2011166,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,10,4,0,2778,11992.164,0,0,1953.6753 -14310,17556,31960,31961,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,5,8.4233265,8.3418627,0,1,0,-9,2,0,-3,82.103813,0,1,1,27,2,4,1,2,2,2019,1,3,3,0,37,0,15,1,0,1,0,11.889621,11.889621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.84,59.619999,52.310001,58.290001,7,1,1,0,0,10,5,0,511,596065.31,0,0,3623.4082 -14310,17556,31961,31960,-9,-9,3,1,1,27,1,0,0,0,2,-9,1,1,0,0,4,8.7100477,8.720336,0,1,0,-9,2,0,3,72.485893,0,1,0,24,2,5,1,-9,-9,2019,1,1,4,0,72,60,15,1,0,1,0,8.5333538,8.5333538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.310001,58.290001,49.84,59.619999,7,1,1,0,0,10,5,0,511,596065.31,0,0,3623.4082 -14311,17557,31962,31963,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.5166178,7.4248638,1,0,-9,3,0,2,66.002914,0,0,0,64,3,3,3,-9,-9,2019,4,1,16,4,0,14,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0985141,7.4830604,0,0,44.080002,48.630001,57.330002,53.459999,6,1,1,0,0,2,3,1,826.5,918738.19,0,0,2793.8936 -14311,17557,31963,31962,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,4.2295871,4.1402183,1,0,-9,3,0,-2,45.786961,0,0,0,66,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.007761,4.5348926,6.3836422,3,57.330002,53.459999,44.080002,48.630001,6,1,1,0,0,2,3,1,826.5,918738.19,0,0,2793.8936 -14312,17558,31964,-9,-9,-9,2,1,1,39,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-911.1842,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.16,45.400002,-9,-9,1,1,1,0,0,11,1,0,469,39545.555,0,0,-137.83093 -14312,17559,31965,-9,-9,31964,1,1,0,22,2,0,0,0,2,-9,97,3,0,1,5,0,0,0,3,0,0,0,-9,0,-1008.6434,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.0466,3,40.610001,64.019997,-9,-9,4,1,1,0,0,11,1,0,420,-42959.09,0,0,412.60837 -14313,17560,31966,-9,31968,31967,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.02478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,1,463,152580.19,0,0,5126.9863 -14313,17560,31967,31968,-9,-9,1,1,1,34,1,1,2,0,1,-9,2,1,0,0,3,8.990716,9.2755327,0,2,0,-9,8,0,1,-47.062706,0,0,0,33,1,4,1,2,2,2019,1,2,13,3,40,40,15,1,0,1,0,17.364721,17.364721,0,0,0,0,0,0,0,0,1,1,0,6.6266217,0,0,0,55.360001,51.57,38.630001,63.110001,6,1,1,0,0,12,5,1,463,152580.19,0,0,5126.9863 -14313,17560,31968,31967,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,0,4,7.7765837,7.4379115,0,2,0,-9,8,0,-1,-153.80583,0,0,1,34,1,3,1,-9,-9,2019,1,1,12,1,22,24,15,1,0,1,0,15.507936,15.507936,0,0,0,0,0,0,0,0,1,1,0,6.2609973,0,0,0,38.630001,63.110001,55.360001,51.57,6,1,1,0,0,12,5,1,463,152580.19,0,0,5126.9863 -14313,17560,31969,-9,31968,31967,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.53363,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,5,1,463,152580.19,0,0,5126.9863 -14314,17561,31970,31972,-9,-9,1,1,0,42,1,0,2,0,2,-9,1,1,0,0,4,7.5166183,7.3906898,0,2,0,-9,11,-9,3,-77.11869,-9,0,1,39,1,4,1,-9,-9,2019,1,2,16,4,38,0,15,1,1,1,0,5.1239944,5.1239944,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.099998,63.290001,57.16,56.150002,4,1,1,0,0,9,4,0,1599.25,182667.95,0,0,3205.5591 -14314,17561,31971,-9,31970,31972,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1009.3171,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,0,1599.25,182667.95,0,0,3205.5591 -14314,17561,31972,31970,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,8.4643412,8.9694824,0,2,0,-9,11,-9,-3,4.8215585,-9,0,0,42,2,4,1,-9,-9,2019,1,1,7,0,59,0,15,1,0,1,0,9.7059488,9.7059488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,36.099998,63.290001,5,1,1,0,0,9,4,0,1599.25,182667.95,0,0,3205.5591 -14314,17561,31973,-9,31970,31972,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1056.6241,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,0,1599.25,182667.95,0,0,3205.5591 -14315,17562,31974,31975,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,3,0,0,0,0,74,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,2,1,1,815,195927.98,0,0,1504.8621 -14315,17562,31975,31974,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,57,0,-3,0,0,0,0,77,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,5.9744959,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.330002,53.459999,7,1,1,0,0,2,1,1,815,195927.98,0,0,1504.8621 -14316,17563,31976,-9,-9,-9,1,1,1,80,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1145.8093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,5,1,1,0,0,2,1,1,836,12516.134,0,0,1448.8922 -14317,17564,31977,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,2,1,0,0,3,8.2930565,7.8871622,5.3306403,3,0,0,0,-9,0,-973.07123,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,38,38,15,1,0,-9,0,9.6869411,9.6869411,0,0,0,0,0,0,0,0,0,0,0,3.325578,5.8874722,0,0,37.279999,55.900002,-9,-9,3,1,1,0,0,6,4,1,264,189911.98,0,0,1117.8555 -14318,17565,31978,31979,-9,-9,1,1,0,46,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,19,0,-8,101.79361,0,0,0,54,2,3,1,3,2,2019,3,2,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.970001,39.459999,45.880001,43.880001,6,2,3,0,0,8,2,0,417.33334,80694.641,0,0,1180.5186 -14318,17565,31979,31978,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,0,3,7.3210516,7.2057481,0,2,0,-9,18,0,8,38.066444,0,0,0,46,3,3,3,3,1,2019,2,1,14,2,24,0,15,1,0,3,0,7.3915386,7.3915386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.880001,43.880001,42.970001,39.459999,6,2,3,0,0,8,2,0,417.33334,80694.641,0,0,1180.5186 -14318,17565,31980,-9,31978,31979,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.4513,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,-9,-9,7,2,3,0,0,8,2,0,417.33334,80694.641,0,0,1180.5186 -14318,17566,31981,-9,31978,31979,3,1,0,23,2,0,1,0,1,-9,2,1,0,0,4,8.1415691,7.9394879,0,3,0,0,0,-9,0,-910.05017,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,38,39,15,1,0,-9,1,8.7545624,8.7545624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.549999,54.330002,-9,-9,6,2,3,0,0,8,4,0,811,0,0,0,2272.2307 -14319,17567,31982,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1096.2119,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.639999,33.650002,-9,-9,2,1,1,1,0,6,1,0,550,51430.023,0,0,-646.1983 -14320,17568,31983,31984,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,0,3,8.1848736,8.1803818,0,1,0,-9,10,0,-2,-8.3363247,0,0,0,53,2,2,3,-9,-9,2019,2,1,11,0,40,0,15,1,0,3,0,10.934221,10.934221,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.040949,2,52.299999,46.150002,69.239998,8.6599998,4,1,1,0,0,11,3,1,131.5,875192.88,0,0,1702.7266 -14320,17568,31984,31983,-9,-9,1,1,0,53,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,10,0,2,32.835468,0,0,0,51,2,3,1,3,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.239998,8.6599998,52.299999,46.150002,4,1,1,0,0,11,3,1,131.5,875192.88,0,0,1702.7266 -14321,17569,31985,31986,-9,-9,1,1,1,90,1,0,0,0,1,-9,4,3,0,0,3,0,8.0486994,7.9296789,1,0,-9,63,0,7,53.982765,0,0,0,83,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0408945,0,0,56,44,54.209999,26.440001,6,1,1,0,0,9,3,1,1271,-83470.25,0,0,3118.4419 -14321,17569,31986,31985,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,0,2,0,5.7212262,5.2756281,1,0,-9,63,0,-7,-128.05467,0,0,0,90,1,3,3,3,2,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.647294,5.1977034,113.74791,1,54.209999,26.440001,56,44,5,1,1,0,0,9,3,1,1271,-83470.25,0,0,3118.4419 -14322,17570,31987,31988,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,5,8.6578197,8.5481558,0,1,0,-9,6,0,-2,-75.568794,0,0,0,42,1,4,1,2,2,2019,1,2,7,0,60,60,15,1,0,1,0,11.372944,11.372944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,57.16,56.150002,6,1,1,0,0,9,5,1,271,1020101.4,0,0,4304.897 -14322,17570,31988,31987,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,0,4,9.1526737,9.1256323,0,1,0,-9,6,0,2,-62.825657,0,0,1,40,2,5,1,2,2,2019,1,1,8,0,50,42,15,1,0,1,0,18.100845,18.100845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,59.43,58.049999,6,1,1,0,0,9,5,1,271,1020101.4,0,0,4304.897 -14323,17571,31989,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,2,0,4.5820675,4.2647948,3,0,0,0,-9,0,-914.60272,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5442472,0,0,46.099998,36.049999,-9,-9,2,1,1,0,0,12,2,0,799,337605.09,0,0,517.99182 -14324,17572,31990,31991,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,33,0,-4,26.12384,0,0,0,77,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,60.119999,54.799999,7,1,1,0,0,9,2,0,417.5,977810.13,0,0,2803.7026 -14324,17572,31991,31990,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,6.9158092,7.3053737,6.2914648,1,0,-9,33,0,4,-132.7354,0,0,0,73,2,4,3,3,3,2019,4,1,6,0,8,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3307772,6.2175093,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,9,2,0,417.5,977810.13,0,0,2803.7026 -14325,17573,31992,31993,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,4,8.4072542,8.8539267,0,2,0,-9,10,0,2,16.855337,0,0,0,53,2,4,1,2,2,2019,1,1,8,0,12,45,15,1,0,1,0,50.73848,50.73848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,52,55,6,3,4,0,1,12,4,1,252.5,387163.84,0,0,3629.9541 -14325,17573,31993,31992,-9,-9,1,1,1,53,1,0,1,0,2,-9,1,1,0,0,4,7.6886787,7.4798656,0,2,0,-9,10,0,-2,4.3575921,0,0,0,55,2,4,1,3,3,2019,1,2,9,1,70,70,15,1,0,1,0,3.7279909,3.7279909,0,0,0,0,0,0,0,2,1,1,0,0,0,.30758277,3,52,55,60.119999,54.799999,6,3,4,0,0,12,4,1,252.5,387163.84,0,0,3629.9541 -14325,17574,31994,-9,31992,31993,4,1,1,19,2,0,1,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-980.76892,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.759998,54.41,-9,-9,5,3,4,0,0,12,1,1,1122,-67410.055,0,0,0 -14326,17575,31995,31996,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,0,3,7.2130432,7.2532611,0,2,0,-9,6,0,0,82.444977,0,0,1,43,2,4,1,-9,-9,2019,1,2,24,12,23,22,15,1,1,1,0,7.1400518,7.1400518,0,0,0,0,0,0,0,7,1,1,0,0,0,1.5211676,3,30.110001,56.52,50.029999,55.299999,4,1,1,0,0,5,5,1,2569,816391.13,0,0,3418.6675 -14326,17575,31996,31995,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.8331528,8.8163357,0,2,0,-9,6,0,0,-42.822971,0,0,0,43,2,3,1,-9,-9,2019,1,1,8,1,44,44,15,1,0,1,0,22.063019,22.063019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.029999,55.299999,30.110001,56.52,6,1,1,0,0,5,5,1,2569,816391.13,0,0,3418.6675 -14326,17576,31997,-9,31995,31996,3,1,0,18,2,0,1,0,2,1,2,1,0,0,4,6.3505268,6.0653315,0,3,0,0,0,-9,0,-855.89209,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,19,0,15,1,0,-9,1,3.8759816,3.8759816,0,0,0,0,0,0,0,2,1,1,0,0,0,.71677232,3,46.630001,59.720001,-9,-9,6,1,1,0,0,5,2,1,2456,-20181.805,0,0,254.83783 -14327,17577,31998,31999,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,0,2,7.8011212,7.7216315,0,1,0,-9,6,0,1,26.182705,0,0,0,47,2,2,1,3,1,2019,1,2,12,0,40,40,15,1,0,1,0,8.7660418,8.7660418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.990002,43.23,33.84,53.639999,4,1,1,0,0,6,4,1,881,152459.63,0,0,2994.0757 -14327,17577,31999,31998,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,2,8.0356884,8.0978889,0,1,0,-9,6,0,-1,-43.768604,0,0,0,48,3,2,1,3,2,2019,1,1,22,10,55,50,15,1,1,1,0,6.4112124,6.4112124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.84,53.639999,41.990002,43.23,4,1,1,0,0,6,4,1,881,152459.63,0,0,2994.0757 -14328,17578,32000,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.4586926,8.6226015,0,3,0,0,0,-9,0,-979.66095,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,39,39,15,1,1,-9,0,13.306886,13.306886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.440001,65.400002,-9,-9,5,1,1,0,0,2,5,0,516,164643.97,0,0,2332.3635 -14329,17579,32001,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,0,4,0,6.9965072,7.1563182,3,0,0,0,-9,0,-1000.4478,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5380068,6.8218069,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,0,126,534931.38,0,0,1300.0209 -14330,17580,32002,32003,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,4,0,5.9286551,6.4237418,1,0,-9,21,0,5,130.69255,0,0,0,69,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7230864,5.9936905,0,0,51.240002,58.84,55.110001,47.630001,6,1,1,0,0,4,2,1,972,291864.31,0,0,3162.2551 -14330,17580,32003,32002,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-5,22.439684,0,0,0,74,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3208947,0,0,0,55.110001,47.630001,51.240002,58.84,7,1,1,0,0,4,2,1,972,291864.31,0,0,3162.2551 -14331,17581,32004,32005,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.4059534,8.5413618,0,1,0,-9,29,0,0,124.18156,0,0,0,57,2,4,3,-9,-9,2019,2,1,6,0,45,43,15,1,0,3,0,16.507313,16.507313,0,0,0,0,0,0,0,0,0,0,0,4.1180134,0,0,0,57.16,56.150002,39.990002,62.580002,6,1,1,0,0,10,4,1,625,114166.2,0,0,2774.2114 -14331,17581,32005,32004,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,29,0,0,16.907755,0,0,0,57,2,4,1,3,2,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5858107,0,0,0,39.990002,62.580002,57.16,56.150002,4,1,1,0,0,10,4,1,625,114166.2,0,0,2774.2114 -14332,17582,32006,32008,-9,-9,1,1,0,40,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,2,86.49453,0,0,1,38,1,4,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.959999,48.650002,55.759998,52.639999,4,1,1,0,0,6,5,1,1114.6666,147875.13,0,0,5451.8662 -14332,17582,32007,-9,32006,32008,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.30786,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,1114.6666,147875.13,0,0,5451.8662 -14332,17582,32008,32006,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,9.6755505,9.7376251,0,2,0,-9,8,0,-2,9.6409502,-9,0,0,40,2,4,3,2,2,2019,2,1,10,0,40,0,15,1,0,3,0,39.312252,39.312252,0,0,0,0,0,0,0,0,0,0,0,4.83002,0,0,0,55.759998,52.639999,49.959999,48.650002,6,1,1,0,0,6,5,1,1114.6666,147875.13,0,0,5451.8662 -14333,17583,32009,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,1,1,0,0,4,6.8376822,7.5244436,6.164196,3,0,0,0,-9,0,-1003.3098,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,0,15,1,0,-9,0,2.8580234,2.8580234,0,0,0,0,0,0,0,0,1,1,0,7.2464099,5.9219956,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,11,3,1,2004,228062.17,0,0,1017.1513 -14334,17584,32010,32013,-9,-9,2,1,0,24,1,2,3,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,1,-9,-2,0,-9,1,1,26,2,1,3,-9,-9,2019,4,1,13,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.08,41.810001,32.830002,34.330002,7,2,3,0,0,2,1,0,782.59998,-28837.787,0,0,1452.8146 -14334,17584,32011,-9,32010,32013,5,1,1,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-918.97809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,1,0,782.59998,-28837.787,0,0,1452.8146 -14334,17584,32012,-9,32010,32013,3,1,0,4,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-951.59698,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,1,0,782.59998,-28837.787,0,0,1452.8146 -14334,17584,32013,32010,-9,-9,1,1,1,26,1,2,3,0,2,-9,3,3,0,1,1,0,0,0,2,0,1,1,-9,2,0,-9,1,0,24,2,2,3,-9,-9,2019,4,2,33,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.830002,34.330002,30.08,41.810001,2,2,3,1,0,2,1,0,782.59998,-28837.787,0,0,1452.8146 -14334,17584,32014,-9,32010,32013,4,1,0,1,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1146.8823,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,1,0,782.59998,-28837.787,0,0,1452.8146 -14335,17585,32015,32016,-9,-9,2,1,1,58,1,1,3,0,2,-9,2,1,0,0,3,8.6026659,8.417964,0,2,0,-9,39,0,1,51.806118,0,0,0,57,2,2,1,2,2,2019,1,1,13,3,45,41,15,1,0,1,0,15.355415,15.355415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,35.299999,34.209999,5,1,1,0,1,10,4,1,342,842017.44,0,0,1771.5116 -14335,17585,32016,32015,-9,-9,1,1,0,57,1,1,3,0,2,-9,2,1,0,0,2,7.5052528,7.5560465,0,2,0,-9,39,0,-1,23.620306,0,0,0,58,2,3,1,2,2,2019,1,2,25,9,29,27,15,1,1,1,0,8.3608112,8.3608112,0,0,0,0,0,0,0,7,1,1,0,0,0,.38295364,3,35.299999,34.209999,57.330002,53.459999,2,1,1,0,0,10,4,1,342,842017.44,0,0,1771.5116 -14335,17586,32017,-9,32016,32015,3,1,1,34,2,1,3,0,2,-9,2,1,0,0,5,7.9152074,8.0428047,0,3,0,0,0,-9,0,-1065.4014,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,42,37,15,1,0,-9,1,9.8039713,9.8039713,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.389999,59.18,-9,-9,6,1,1,0,0,10,4,1,1317,141093.97,0,0,1976.235 -14335,17587,32018,-9,32016,32015,4,1,1,24,2,1,3,0,2,-9,2,1,0,0,3,8.5947714,8.4197054,0,3,0,0,0,-9,0,-968.90277,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,50,45,15,1,1,-9,1,7.8337393,7.8337393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.810001,56.919998,-9,-9,2,1,1,0,0,10,4,1,287,121879.9,0,0,1286.1327 -14335,17588,32019,-9,32020,-9,7,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-950.98505,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,658.5,655386.38,0,0,1475.2903 -14335,17588,32020,-9,32016,32015,5,1,0,32,2,1,3,0,2,-9,2,1,0,0,5,6.7266173,6.8731303,0,3,0,-9,0,-9,0,-931.67773,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,24,0,15,1,1,-9,1,3.4396019,3.4396019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.299999,65.669998,-9,-9,4,1,1,0,1,10,2,1,658.5,655386.38,0,0,1475.2903 -14335,17588,32021,-9,32020,-9,6,1,1,11,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-892.18793,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,2,1,658.5,655386.38,0,0,1475.2903 -14335,17588,32022,-9,32020,-9,8,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1048.9871,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,2,1,658.5,655386.38,0,0,1475.2903 -14336,17589,32023,32024,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,47,0,-2,0,0,0,0,68,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,25.86664,0,0,0,0,0,1,1,0,3.1129577,0,0,0,46.330002,29.139999,52,47,4,1,1,0,0,12,1,1,904,5062.6411,0,0,1506.8237 -14336,17589,32024,32023,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,2,0,0,0,0,66,2,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,47,46.330002,29.139999,5,1,1,0,0,12,1,1,904,5062.6411,0,0,1506.8237 -14337,17590,32025,-9,32026,32028,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.5343,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,3,0,1427.5,145157.92,0,0,2553.8354 -14337,17590,32026,32028,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,3,8.5222502,8.4604321,0,2,0,-9,6,0,-3,-65.099022,0,0,0,52,2,3,3,3,2,2019,2,4,11,0,36,35,15,1,0,3,0,16.770435,16.770435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.560001,50.259998,41.639999,54.119999,4,3,4,0,0,8,3,0,1427.5,145157.92,0,0,2553.8354 -14337,17590,32027,-9,32026,32028,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-960.9104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,8,3,0,1427.5,145157.92,0,0,2553.8354 -14337,17590,32028,32026,-9,-9,4,1,1,52,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,6,0,3,39.286346,0,0,0,49,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,54.119999,46.560001,50.259998,2,3,4,1,1,8,3,0,1427.5,145157.92,0,0,2553.8354 -14338,17591,32029,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,3,7.6219649,7.4154897,0,3,0,0,0,-9,0,-1036.1135,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,35,40,15,1,0,-9,0,4.9500618,4.9500618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.200001,49.25,-9,-9,4,3,4,0,0,8,3,0,230,561889.56,0,0,-39.869629 -14339,17592,32030,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,0,2,0,7.4514818,6.998178,3,0,0,0,-9,0,-1002.445,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2869005,7.247417,0,0,50.220001,39.490002,-9,-9,7,1,1,0,0,10,3,1,201,490280.81,0,0,1163.8425 -14340,17593,32031,-9,32034,32033,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1094.6315,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,5,3,1,639,272677.16,0,0,2466.7007 -14340,17593,32032,-9,32034,32033,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1076.9199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,5,3,1,639,272677.16,0,0,2466.7007 -14340,17593,32033,32034,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,8.602169,8.6661768,0,2,0,-9,16,0,-3,115.28269,0,0,0,50,2,3,3,2,3,2019,2,2,14,2,45,48,15,1,0,3,0,13.926478,13.926478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,45.009998,49.59,4,1,1,0,0,5,3,1,639,272677.16,0,0,2466.7007 -14340,17593,32034,32033,-9,-9,2,1,0,50,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,16,0,3,-38.651051,0,0,0,47,2,4,1,3,3,2019,3,1,26,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.009998,49.59,57.16,56.150002,1,1,1,1,1,5,3,1,639,272677.16,0,0,2466.7007 -14341,17594,32035,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,97,3,0,0,2,6.1400838,6.6357737,5.752686,3,0,0,0,-9,0,-1116.7333,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,2,21,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3451791,5.7894783,0,0,52.450001,30.75,-9,-9,6,1,1,0,0,9,2,1,847,286029.31,0,0,-1325.8479 -14342,17595,32036,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,3,0,4.8652067,5.0540314,3,0,0,0,-9,0,-892.49829,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7325253,4.8529959,0,0,53.619999,36.099998,-9,-9,6,1,1,0,1,7,2,0,740,72898.586,0,0,776.89032 -14343,17596,32037,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,1,0,4.871511,4.9501166,3,0,0,0,-9,0,-1038.3667,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,7.4884443,0,4.7162628,0,0,38.752998,0,1,1,0,0,5.1877551,0,0,39.759998,23.870001,-9,-9,3,1,1,0,0,11,2,0,195,-34641.152,0,0,1199.1167 -14343,17597,32038,-9,32037,-9,2,1,1,67,2,0,0,0,2,-9,4,3,0,0,4,0,5.9986243,5.70754,3,0,0,0,-9,0,-896.82874,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.315649,6.0376577,17.019039,3,50.110001,54.040001,-9,-9,6,1,1,0,0,11,2,0,440,398555.31,0,0,1984.8916 -14344,17598,32039,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.9792194,6.7864141,3,0,0,0,-9,0,-1021.9299,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.7815695,6.8717117,0,0,64.160004,29.700001,-9,-9,5,1,1,0,0,11,2,1,588,277694.38,0,0,3606.4348 -14344,17599,32040,-9,32039,-9,2,1,1,53,2,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1082.4137,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,11,1,1,255,0,0,0,-342.72415 -14345,17600,32041,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,0,4,6.9616661,6.6734123,3.7457976,4,0,0,0,-9,0,-914.46594,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,1,16,16,15,1,0,-9,0,7.4856572,7.4856572,0,0,0,0,0,0,0,2,1,1,0,3.8284872,0,4.8979487,3,51.439999,45.040001,-9,-9,6,1,1,0,1,11,2,0,710,198957.14,0,0,1758.7216 -14345,17600,32042,-9,32041,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1034.9882,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,11,2,0,710,198957.14,0,0,1758.7216 -14345,17600,32043,-9,32041,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-956.34631,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,11,2,0,710,198957.14,0,0,1758.7216 -14346,17601,32044,32045,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,65,0,1,0,0,0,0,85,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,3.6265483,0,0,0,120,1,1,0,0,0,118.80216,1,55,45,53,44,6,1,1,0,0,9,1,1,391,151575.95,0,0,1955.3523 -14346,17601,32045,32044,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,65,0,-1,0,0,0,0,86,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,119.54915,0,0,0,0,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,0,9,1,1,391,151575.95,0,0,1955.3523 -14347,17602,32046,32047,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,1,4,0,5.2670264,5.0307479,1,0,-9,8,0,-6,-121.5703,0,0,0,73,2,2,3,3,3,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.0621147,5.3460846,7.6242895,1,51.110001,46.43,49.77,28.889999,7,1,1,0,0,11,2,1,1247.5,356638.63,0,0,1457.2434 -14347,17602,32047,32046,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,8,0,6,-8.9366179,0,0,0,67,2,4,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,4.1443429,4.4685764,0,0,0,69.997269,0,1,1,0,3.5787401,0,0,0,49.77,28.889999,51.110001,46.43,6,1,1,0,0,11,2,1,1247.5,356638.63,0,0,1457.2434 -14348,17603,32048,32049,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,9.0793209,9.1592474,7.2171841,1,0,-9,37,0,3,-71.040756,0,0,0,58,2,4,1,3,1,2019,1,1,11,1,45,55,15,1,0,1,0,18.716057,18.716057,0,0,0,0,0,0,0,0,0,0,0,5.6097341,7.0400429,0,0,56.57,57.779999,52.82,53.970001,6,1,1,0,0,9,5,0,403.5,3601290.8,0,0,6198.2666 -14348,17603,32049,32048,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,0,4,8.838521,9.1973143,0,1,0,-9,36,0,-3,-10.265156,0,0,0,61,2,4,1,1,1,2019,1,2,9,1,27,24,15,1,0,1,0,37.177494,37.177494,0,0,0,0,0,0,0,0,0,0,0,5.9535441,0,0,0,52.82,53.970001,56.57,57.779999,6,1,1,0,0,9,5,0,403.5,3601290.8,0,0,6198.2666 -14349,17604,32050,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1071.333,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,0,32,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.51,62.509998,-9,-9,3,1,1,0,0,2,1,0,172,116078.01,0,0,0 -14350,17605,32051,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-923.15985,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.360001,18.879999,-9,-9,6,1,1,0,1,4,1,0,927,5016.2588,0,0,491.96262 -14351,17606,32052,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,4,0,7.2257628,7.1642966,3,0,0,0,-9,0,-1116.5002,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,12,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1080587,7.6422176,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,4,3,0,3916,30492.07,0,0,2810.459 -14352,17607,32053,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,3,8.9063835,8.5235443,0,3,0,0,0,-9,0,-1058.9487,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,40,49,15,1,0,-9,0,17.507235,17.507235,0,0,0,0,0,0,0,0,0,0,0,1.7139853,0,0,0,57.900002,51.84,-9,-9,6,1,1,0,0,7,5,0,258,1364962.9,0,0,4154.3481 -14353,17608,32054,-9,32055,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-970.5108,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,12,1,0,451.5,-23620.762,0,0,957.32373 -14353,17608,32055,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-915.78442,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.240002,59.439999,-9,-9,6,1,1,1,0,12,1,0,451.5,-23620.762,0,0,957.32373 -14354,17609,32056,32057,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,0,3,8.0419464,8.0102024,0,1,0,-9,2,0,0,23.35984,0,1,0,23,2,3,1,-9,-9,2019,1,1,4,0,40,40,15,1,0,1,0,10.247163,10.247163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,38.529999,48.48,6,1,1,0,0,6,4,0,639.5,-2716.1064,0,0,1593.4705 -14354,17609,32057,32056,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,0,3,7.9225206,8.3733978,0,1,0,-9,2,0,0,103.32862,0,1,1,23,2,3,1,-9,-9,2019,1,2,14,3,38,45,15,1,0,1,0,10.756408,10.756408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.529999,48.48,57.330002,53.459999,5,1,1,0,0,6,4,0,639.5,-2716.1064,0,0,1593.4705 -14355,17610,32058,32059,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,8.6360493,8.8230181,0,1,0,-9,7,0,-3,209.50226,0,0,0,33,1,4,1,2,2,2019,1,2,9,1,42,45,15,1,0,1,0,19.529074,19.529074,0,0,0,0,0,0,0,0,0,0,0,3.0424173,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,5,5,1,1480,1798927.4,0,0,3344.3447 -14355,17610,32059,32058,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.4402266,8.983551,0,1,0,-9,7,0,3,18.953474,0,0,1,30,2,4,1,2,2,2019,1,1,8,0,36,50,15,1,0,1,0,20.633831,20.633831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,4,2,0,0,5,5,1,1480,1798927.4,0,0,3344.3447 -14356,17611,32060,32061,-9,-9,1,1,1,22,1,0,0,0,2,-9,2,1,0,0,5,8.1915398,8.0156736,0,1,0,-9,3,0,2,-21.070343,0,1,0,20,2,3,1,2,2,2019,1,2,16,5,45,50,15,1,1,1,0,8.4874935,8.4874935,0,0,0,0,0,0,0,2,0,0,0,0,0,8.0017233,3,29.469999,61.080002,42.889999,42.490002,7,1,1,0,0,5,4,0,1259.5,-47723.344,0,0,1721.5378 -14356,17611,32061,32060,-9,-9,2,1,0,20,1,0,0,0,2,-9,2,1,0,0,3,8.0028982,8.1788301,0,1,0,-9,3,0,-2,121.49918,0,1,1,22,2,5,1,-9,-9,2019,1,1,12,1,46,45,15,1,0,1,0,8.2106943,8.2106943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.889999,42.490002,29.469999,61.080002,6,1,1,0,0,5,4,0,1259.5,-47723.344,0,0,1721.5378 -14357,17612,32062,32063,-9,-9,1,1,0,60,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,31,0,-7,0,0,0,0,67,3,3,3,2,-9,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.3981256,3,35.169998,54.009998,52.41,42.18,4,1,1,1,0,1,1,0,910.5,315526.13,0,0,1377.5925 -14357,17612,32063,32062,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,7,0,0,0,0,60,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.41,42.18,35.169998,54.009998,4,1,1,0,0,1,1,0,910.5,315526.13,0,0,1377.5925 -14358,17613,32064,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,7.7821646,7.3399873,0,3,0,0,0,-9,0,-934.64459,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,22,34,15,1,0,-9,0,10.08534,10.08534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.950001,58.82,-9,-9,6,1,1,0,0,10,3,0,2909,-41103.855,0,0,118.20459 -14359,17614,32065,-9,-9,-9,1,1,0,41,3,0,2,0,3,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-935.21674,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,39.27,-9,-9,5,2,3,0,1,7,1,1,2282,-5800.251,0,0,1305.5292 -14360,17615,32066,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,3,0,6.4718447,6.6545925,3,0,0,0,-9,0,-918.96729,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,5.3049312,0,9.0074425,0,0,0,0,1,1,0,0,6.610055,0,0,58.490002,25.92,-9,-9,6,1,1,0,0,12,2,1,198,-145926.17,0,0,2248.9351 -14361,17616,32067,-9,32069,32070,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.95959,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,6,2,0,901.25,-35741.094,0,0,2134.6311 -14361,17616,32068,-9,32069,32070,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.65729,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,901.25,-35741.094,0,0,2134.6311 -14361,17616,32069,32070,-9,-9,1,1,0,31,1,1,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-4,8.5991402,0,0,1,35,2,5,1,2,2,2019,3,2,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,47.830002,62.16,5,1,1,0,0,6,2,0,901.25,-35741.094,0,0,2134.6311 -14361,17616,32070,32069,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,0,5,7.7330484,8.0998096,0,2,0,-9,6,0,4,9.2162724,0,0,0,31,1,4,3,-9,-9,2019,2,1,9,1,42,41,15,1,0,3,0,6.744854,6.744854,0,0,0,0,0,0,0,2,1,1,0,0,0,2.9263015,3,47.830002,62.16,48,57,7,1,1,0,0,6,2,0,901.25,-35741.094,0,0,2134.6311 -14362,17617,32071,32075,-9,-9,1,1,0,38,1,0,5,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,13,0,-6,-106.42151,0,0,1,44,2,3,1,2,2,2019,3,2,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,60.950001,54.720001,46.41,3,1,1,0,1,10,4,1,928.71429,236645.19,0,0,3983.3169 -14362,17617,32072,-9,32071,32075,7,1,0,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.85663,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,4,1,928.71429,236645.19,0,0,3983.3169 -14362,17617,32073,-9,32071,32075,4,1,1,7,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.7358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,928.71429,236645.19,0,0,3983.3169 -14362,17617,32074,-9,32071,32075,5,1,1,5,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.35651,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,10,4,1,928.71429,236645.19,0,0,3983.3169 -14362,17617,32075,32071,-9,-9,2,1,1,44,1,0,5,0,2,-9,2,1,0,0,3,9.30581,9.299943,0,2,0,-9,13,0,6,-52.501541,0,0,0,38,2,3,3,2,1,2019,2,1,9,0,57,50,15,1,0,3,0,21.53371,21.53371,0,0,0,0,0,0,0,0,0,0,0,7.3107352,0,0,0,54.720001,46.41,31.58,60.950001,6,1,1,0,0,10,4,1,928.71429,236645.19,0,0,3983.3169 -14362,17617,32076,-9,32071,32075,6,1,0,4,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.7736,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,10,4,1,928.71429,236645.19,0,0,3983.3169 -14362,17617,32077,-9,32071,32075,3,1,0,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1115.3912,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,5,0,0,10,4,1,928.71429,236645.19,0,0,3983.3169 -14363,17618,32078,32079,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.7104959,7.4521174,1,0,-9,10,0,-1,6.7466698,0,0,0,72,2,4,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3955417,7.4329677,0,0,49.349998,59.639999,55.360001,54.240002,6,1,1,0,0,2,3,1,773.5,643943.5,0,0,2537.6062 -14363,17618,32079,32078,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.4278579,6.8718791,1,0,-9,10,0,1,96.657097,0,0,0,71,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0128403,6.854248,0,0,55.360001,54.240002,49.349998,59.639999,6,1,1,0,0,2,3,1,773.5,643943.5,0,0,2537.6062 -14364,17619,32080,-9,32081,-9,4,1,0,16,2,0,2,1,2,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1045.4856,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.660004,32.68,-9,-9,4,1,1,0,0,2,1,0,2948,4731.4746,0,0,1636.9143 -14364,17619,32081,-9,-9,-9,1,1,0,41,2,0,2,0,3,-9,8,3,1,1,1,0,0,0,4,0,-9,0,0,0,-990.21106,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.860001,23.01,-9,-9,3,1,1,0,0,2,1,0,2948,4731.4746,0,0,1636.9143 -14364,17620,32082,-9,32081,-9,2,1,1,21,2,0,2,0,2,-9,2,1,0,0,5,7.3690925,7.2224102,0,3,0,0,0,-9,0,-1009.2705,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,26,42,15,1,0,-9,1,6.9825358,6.9825358,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.84692,3,43.860001,63.669998,-9,-9,7,1,1,0,0,2,3,0,124,-30866.189,0,0,526.30273 -14364,17621,32083,-9,32081,-9,3,1,1,18,2,0,2,0,3,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-1061.5665,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.360008,3,51.919998,58.91,-9,-9,7,1,1,1,0,2,3,0,155,0,0,0,0 -14365,17622,32084,-9,-9,-9,1,1,0,41,3,0,1,0,1,-9,2,1,0,0,4,8.7224913,8.8781366,0,4,0,-9,0,1,0,-943.86926,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,37,38,15,1,0,-9,0,18.894676,18.894676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.259998,59.43,-9,-9,6,3,4,0,1,7,4,0,1919,446032.38,0,0,2360.5249 -14365,17623,32085,-9,32084,-9,2,1,1,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1023.6882,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.560001,57.02,-9,-9,4,3,4,0,0,7,1,0,429,0,0,0,0 -14366,17624,32086,32087,-9,-9,2,1,0,46,1,0,1,0,3,-9,2,1,0,0,2,8.3833599,8.2339277,0,2,0,-9,8,0,-13,-199.96352,0,0,0,59,3,4,1,3,3,2019,1,1,12,0,30,0,15,1,0,1,0,17.020565,17.020565,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,29.639999,34.830002,41.470001,56.810001,5,1,1,0,0,13,4,1,617.5,392470.53,0,0,3403.3135 -14366,17624,32087,32086,-9,-9,1,1,1,59,1,0,1,0,3,-9,2,1,0,0,4,8.211647,8.518919,0,2,0,-9,8,0,13,4.9555321,0,0,0,46,3,2,1,2,2,2019,1,2,12,1,39,40,15,1,0,1,0,15.327573,15.327573,0,0,0,0,0,0,0,0,1,1,0,1.1010058,0,0,0,41.470001,56.810001,29.639999,34.830002,5,1,1,0,0,13,4,1,617.5,392470.53,0,0,3403.3135 -14366,17625,32088,-9,32086,32087,3,1,1,18,2,0,1,0,3,1,2,1,0,0,4,7.8489771,8.1045904,0,3,0,0,0,-9,0,-992.37518,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,0,15,1,0,-9,1,9.2734957,9.2734957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,13,3,1,842,64271.57,0,0,355.82956 -14367,17626,32089,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,5,8.5106726,8.794507,0,3,0,-9,0,0,0,-1021.7396,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,42,41,15,1,0,-9,0,14.375584,14.375584,0,0,0,0,0,0,0,0,0,0,0,3.4932177,0,0,0,55.68,54.240002,-9,-9,6,1,1,0,0,8,5,0,4463,-325942.66,0,0,3061.3708 -14368,17627,32090,32091,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,5,8.3391399,8.5714188,0,1,0,-9,7,0,-1,-55.645386,0,0,0,53,2,3,1,-9,-9,2019,1,1,25,11,82,40,15,1,1,1,0,6.2956791,6.2956791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,64.059998,42.299999,57.48,6,1,1,0,0,12,4,1,557.5,461248.16,0,0,3102.1804 -14368,17627,32091,32090,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.3955331,7.756043,0,1,0,-9,7,0,1,5.6057601,0,0,0,52,2,5,1,3,3,2019,1,2,14,3,28,36,15,1,0,1,0,8.8530483,8.8530483,0,0,0,0,0,0,0,7,0,0,0,5.159966,0,5.7781115,3,42.299999,57.48,32.09,64.059998,4,1,1,0,0,12,4,1,557.5,461248.16,0,0,3102.1804 -14369,17628,32092,32093,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,8.6544571,8.4246969,1,0,-9,53,0,3,-4.3763576,0,0,0,71,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3071587,8.7566423,0,0,58.889999,48.599998,54.790001,55.860001,6,1,1,0,0,7,5,1,1064.5,1511027,0,0,6193.0537 -14369,17628,32093,32092,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.2266884,8.6346226,1,0,-9,54,0,-3,-43.978642,0,0,0,74,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9712656,8.280921,0,0,54.790001,55.860001,58.889999,48.599998,6,1,1,0,0,7,5,1,1064.5,1511027,0,0,6193.0537 -14370,17629,32094,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,3,7.5639248,7.657558,6.4955935,3,0,0,0,-9,0,-939.15533,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,21,37,15,1,1,-9,0,11.911031,11.911031,0,0,0,0,0,0,0,14.5,1,1,0,5.6612377,6.3724246,15.170856,3,50.18,52.619999,-9,-9,4,1,1,0,0,11,3,0,906,61668.434,0,0,2252.5437 -14371,17630,32095,-9,32096,32099,3,1,0,18,2,1,3,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-977.263,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,15,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.369999,57.279999,-9,-9,3,1,1,0,0,2,3,1,239,6150.5444,0,0,0 -14371,17631,32096,32099,-9,-9,1,1,0,43,1,1,3,0,1,-9,2,1,0,0,4,8.182065,7.9600768,0,2,0,-9,1,-9,-8,90.550446,-9,0,1,51,2,3,1,2,2,2019,1,4,12,0,38,0,15,1,0,1,0,9.4580002,9.4580002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,55.360001,51.57,3,1,1,0,0,2,3,1,921,246258.63,0,0,3248.3181 -14371,17631,32097,-9,32096,32099,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-907.67371,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,921,246258.63,0,0,3248.3181 -14371,17631,32098,-9,32096,32099,2,1,1,14,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-942.39337,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,1,921,246258.63,0,0,3248.3181 -14371,17631,32099,32096,-9,-9,4,1,1,51,1,1,3,0,2,-9,2,1,0,0,3,7.9826508,8.1141939,0,2,0,-9,1,-9,8,-74.932411,-9,0,0,43,1,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,0,1,0,9.8635063,9.8635063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.360001,51.57,48.869999,58.549999,6,1,1,0,0,2,3,1,921,246258.63,0,0,3248.3181 -14372,17632,32100,32102,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,0,4,8.7906466,8.6644268,0,2,0,-9,6,0,-3,-16.776859,0,0,0,41,2,4,3,2,2,2019,2,2,9,0,70,40,15,1,0,3,0,9.5714693,9.5714693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,12,4,0,1161,9610.6279,0,0,3002.5032 -14372,17632,32101,-9,32102,32100,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.2581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,0,1161,9610.6279,0,0,3002.5032 -14372,17632,32102,32100,-9,-9,2,1,0,41,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,3,130.47366,0,0,1,38,2,4,1,2,-9,2019,3,1,11,0,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5122037,0,0,0,57.16,56.150002,57.16,56.150002,5,1,1,0,0,12,4,0,1161,9610.6279,0,0,3002.5032 -14373,17633,32103,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,1,1,0,0,2,5.6142659,5.7911282,0,3,0,0,0,-9,0,-1045.3192,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,60,60,15,1,1,-9,0,.54943502,.54943502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.93,47.889999,-9,-9,3,3,4,0,1,12,2,0,424,-138771.02,0,0,420.12802 -14374,17634,32104,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,0,4,7.9124708,7.7444668,0,3,0,0,0,-9,0,-912.11298,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,36,38,15,1,0,-9,0,10.976794,10.976794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.860001,55.919998,-9,-9,5,1,1,0,0,8,3,1,497,-52922.395,0,0,1539.4086 -14375,17635,32105,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,3,0,5.6253333,5.797821,3,0,0,0,-9,0,-1014.1394,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9334993,5.5715795,0,0,48.619999,54.52,-9,-9,6,1,1,0,0,11,2,1,908,189082.28,0,0,340.03922 -14376,17636,32106,32107,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,2,0,5.2148862,5.2485976,1,0,-9,6,0,-5,121.79218,0,0,0,79,3,1,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.0469251,5.0614567,125.88618,1,57.57,49.689999,53.220001,15.69,6,1,1,0,0,5,2,1,1205.5,191482.55,0,0,2120.6362 -14376,17636,32107,32106,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,1,0,4.8045769,5.2648211,1,0,-9,6,0,5,74.987297,0,0,0,74,2,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,1,0,132.13103,0,0,0,0,0,1,1,0,4.5647659,5.2577968,0,0,53.220001,15.69,57.57,49.689999,4,1,1,0,0,5,2,1,1205.5,191482.55,0,0,2120.6362 -14377,17637,32108,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,7.794311,8.2169218,3,0,0,0,-9,0,-935.10229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9405303,0,0,54.970001,47.630001,-9,-9,6,1,1,0,0,8,4,1,1710,931650.56,0,0,2793.427 -14378,17638,32109,32110,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,8.3290777,8.3844099,0,1,0,-9,30,0,4,-58.817211,0,0,0,49,2,4,3,-9,-9,2019,2,1,9,1,40,39,15,1,0,3,0,11.066236,11.066236,0,0,0,0,0,0,0,0,1,1,0,3.7440002,0,0,0,53,54,47.630001,30.280001,5,1,1,0,0,1,3,0,266,337371.56,0,0,710.24908 -14378,17638,32110,32109,-9,-9,1,1,0,49,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,28,0,-4,-23.207834,0,0,0,53,2,4,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.630001,30.280001,53,54,2,1,1,0,0,1,3,0,266,337371.56,0,0,710.24908 -14379,17639,32111,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,8,3,1,1,1,7.0758066,7.077126,0,3,0,-9,0,-9,0,-1030.3052,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,18,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.560001,25.219999,-9,-9,5,1,1,0,0,7,3,1,678,727359.75,0,0,2062.1885 -14380,17640,32112,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,7.0274062,7.1585212,3,0,0,0,-9,0,-1065.434,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.404274,7.2906036,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,11,2,1,1219,250719.64,0,0,1191.326 -14381,17641,32113,32114,-9,-9,2,1,1,64,1,0,0,0,1,-9,1,1,0,0,3,8.3631611,8.9128914,8.5480556,1,0,-9,5,0,1,144.64665,0,0,0,63,2,4,3,-9,-9,2019,2,1,10,1,15,16,15,1,0,4,0,28.869738,28.869738,0,0,0,0,0,0,0,0,1,1,0,0,7.9858818,0,0,52,47,51.830002,57.200001,5,1,1,0,0,5,5,1,418.5,592242.31,0,0,3882.8379 -14381,17641,32114,32113,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,40,0,-1,-74.025917,0,0,0,64,1,3,1,3,3,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5097387,0,0,0,51.830002,57.200001,52,47,7,1,1,0,0,5,5,1,418.5,592242.31,0,0,3882.8379 -14382,17642,32115,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,8,3,1,1,1,0,7.7325401,7.4304023,3,0,-9,0,-9,0,-963.17792,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,1,0,0,5.7122941,25.507715,0,0,0,1,1,0,3.1542757,7.4457622,0,0,60.700001,19.459999,-9,-9,6,1,1,0,0,10,3,1,181,197657.78,0,0,2160.561 -14382,17643,32116,-9,32115,-9,2,1,1,43,2,0,0,0,3,-9,2,1,0,0,3,8.4495726,8.4386053,0,3,0,-9,0,-9,0,-909.19025,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,0,15,1,0,-9,1,11.446586,11.446586,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.221018,3,54.369999,54.799999,-9,-9,4,1,1,0,0,10,4,1,1075,-91223.68,0,0,1943.2094 -14383,17644,32117,32118,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,2,0,6.6964936,6.7690253,1,0,-9,50,0,0,14.583797,0,0,0,70,3,3,3,3,3,2019,4,2,11,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5339279,6.83847,0,0,52.400002,34.349998,51,46,6,1,1,0,0,2,2,1,693,841207.63,0,0,2385.0071 -14383,17644,32118,32117,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,0,76.170532,-9,0,0,70,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9947529,0,0,0,51,46,52.400002,34.349998,5,1,1,0,0,2,2,1,693,841207.63,0,0,2385.0071 -14384,17645,32119,32120,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,5,8.6065731,8.7321196,6.5002704,1,0,-9,2,0,-6,-31.570112,0,1,1,30,1,3,1,2,1,2019,1,2,12,0,54,39,15,1,0,1,0,11.931799,11.931799,0,0,0,0,0,0,0,0,0,0,0,6.3500309,0,0,0,45.459999,61.869999,51.98,54.529999,5,1,1,0,0,8,5,0,562,185192.97,0,0,5647.4932 -14384,17645,32120,32119,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,9.1216145,8.9462233,0,1,0,-9,2,0,6,-94.509941,0,0,0,24,1,5,1,-9,-9,2019,1,1,11,2,38,52,15,1,0,1,0,25.481901,25.481901,0,0,0,0,0,0,0,0,0,0,0,6.9387541,0,0,0,51.98,54.529999,45.459999,61.869999,5,1,1,0,0,8,5,0,562,185192.97,0,0,5647.4932 -14385,17646,32121,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,4,0,6.1686983,5.8041878,3,0,0,0,-9,0,-1146.7751,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0996113,0,0,68.32,37.400002,-9,-9,7,1,1,0,0,4,2,0,459,362664.34,0,0,1744.1974 -14386,17647,32122,32123,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,55,0,1,31.817516,0,0,0,74,2,3,3,2,2,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8508527,0,0,0,54.619999,53.529999,48.060001,51.060001,6,1,1,0,0,4,3,1,269.5,938750.88,0,0,3274.4995 -14386,17647,32123,32122,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,8.0447531,8.468214,1,0,-9,55,0,-1,-19.222095,0,0,0,75,2,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.147563,8.0678959,0,0,48.060001,51.060001,54.619999,53.529999,5,1,1,0,0,4,3,1,269.5,938750.88,0,0,3274.4995 -14387,17648,32124,32127,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.3620553,7.5520849,0,2,0,-9,16,0,0,91.590698,0,0,1,42,2,4,1,2,2,2019,1,2,12,0,22,22,15,1,0,1,0,9.3212337,9.3212337,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,45.34,51,56,5,1,1,0,0,13,5,1,767.5,582310.13,0,0,3938.125 -14387,17648,32125,-9,32124,32127,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.14417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,5,1,767.5,582310.13,0,0,3938.125 -14387,17648,32126,-9,32124,32127,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.48199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,13,5,1,767.5,582310.13,0,0,3938.125 -14387,17648,32127,32124,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,9.51651,9.1135054,0,2,0,-9,7,0,0,-56.358429,0,0,0,42,2,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,29.580334,29.580334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,53.98,45.34,6,1,1,0,0,13,5,1,767.5,582310.13,0,0,3938.125 -14388,17649,32128,32130,-9,-9,2,1,1,42,1,1,1,0,1,-9,2,1,0,0,2,8.3807831,8.3871078,0,2,0,-9,7,0,-3,87.047241,0,0,0,45,2,3,1,-9,-9,2019,1,1,13,1,50,50,15,1,0,1,0,8.6696272,8.6696272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.279999,44.470001,33.419998,54.810001,4,1,1,0,0,2,4,1,391.5,430320.06,0,0,2429.1909 -14388,17649,32129,-9,32130,32128,6,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.56189,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,2,4,1,391.5,430320.06,0,0,2429.1909 -14388,17649,32130,32128,-9,-9,1,1,0,45,1,1,1,0,2,-9,2,1,0,1,3,6.8878398,7.1059728,0,2,0,-9,7,0,3,-64.844582,0,0,0,42,1,2,1,2,1,2019,1,2,12,0,18,21,15,1,0,1,0,5.8279843,5.8279843,0,0,0,0,0,0,0,42,1,1,0,0,0,37.284126,3,33.419998,54.810001,45.279999,44.470001,4,1,1,0,0,2,4,1,391.5,430320.06,0,0,2429.1909 -14388,17649,32131,-9,32130,32128,5,1,0,17,2,1,1,1,2,0,7,2,0,0,3,6.3172102,6.3483934,0,2,0,0,0,-9,0,-986.92969,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30494285,0,0,0,49.630001,54.220001,-9,-9,3,1,1,0,0,2,4,1,391.5,430320.06,0,0,2429.1909 -14388,17650,32132,-9,32130,32128,3,1,1,21,2,1,1,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1095.4843,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.879999,52.619999,-9,-9,3,1,1,0,0,2,1,1,847,0,0,0,-814.03967 -14388,17651,32133,-9,32130,32128,4,1,1,19,2,1,1,0,2,-9,11,3,0,0,2,7.086473,7.2240963,0,3,0,0,0,-9,0,-977.39221,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,38,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.82,47.439999,-9,-9,4,1,1,0,1,2,3,1,917,210952.86,0,0,312.24347 -14389,17652,32134,-9,32137,-9,2,1,1,21,2,0,1,0,2,-9,2,1,0,0,3,8.3007345,8.0943298,0,3,0,-9,0,-9,0,-966.64655,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,0,15,1,0,-9,1,9.9336529,9.9336529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,8,4,0,1155,-31019.592,0,0,2186.7742 -14389,17653,32135,-9,32137,-9,3,1,1,20,2,0,1,0,2,-9,2,1,0,1,3,8.0444498,7.8166456,0,3,0,-9,0,-9,0,-896.98401,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,16,0,15,1,0,-9,1,19.891226,19.891226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,59.639999,-9,-9,5,1,1,0,1,8,3,0,527,-71325.25,0,0,1046.519 -14389,17654,32136,32137,-9,-9,5,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,7.8933578,7.8662715,0,2,0,-9,1,-9,4,16.872122,-9,0,0,41,2,3,3,-9,-9,2019,2,1,10,0,40,0,15,1,0,3,0,7.6376696,7.6376696,0,0,0,0,0,0,0,0,1,1,0,2.7195141,0,0,0,49.970001,56.66,38.16,44.66,5,1,1,0,0,8,3,0,889.5,62651.82,0,0,1915.6226 -14389,17654,32137,32136,-9,-9,1,1,0,41,1,0,1,0,2,-9,3,3,0,1,3,0,0,0,2,0,-9,1,-9,-4,76.632278,-9,0,1,45,2,4,1,2,2,2019,3,5,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.2993937,3,38.16,44.66,49.970001,56.66,4,1,1,1,0,8,3,0,889.5,62651.82,0,0,1915.6226 -14390,17655,32138,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,4,7.9433517,7.6288962,0,4,0,-9,0,1,0,-1040.5853,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,30,30,15,1,0,-9,0,9.2154264,9.2154264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.790001,62.549999,-9,-9,4,1,1,0,0,7,3,1,179,67283.828,0,0,2601.2288 -14390,17656,32139,-9,-9,-9,2,1,1,53,3,0,1,0,3,-9,1,1,0,0,4,8.7517309,9.0087986,6.0322762,4,0,-9,0,1,0,-944.66187,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,40,0,15,1,0,-9,0,15.620811,15.620811,0,0,0,0,0,0,0,0,1,1,0,0,6.2090569,0,0,54,54,-9,-9,6,1,1,0,0,7,5,1,332,556765.81,0,0,1995.1411 -14391,17657,32140,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,2,1,0,1,2,6.2860217,6.3512111,0,3,0,0,0,-9,0,-1029.0812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,10,10,15,1,1,-9,0,8.5195608,8.5195608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.41,38.240002,-9,-9,1,1,1,0,1,13,2,1,929,595547,0,0,-31.475489 -14392,17658,32141,32142,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,5,0,7.0624585,6.9866648,1,0,-9,43,0,-3,-96.925499,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1058187,7.2508249,0,0,59.040001,54.119999,57.330002,53.459999,7,1,1,0,0,9,3,1,483,1194632.8,0,0,3620.7825 -14392,17658,32142,32141,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.5514026,7.47122,1,0,-9,43,0,3,2.5625656,0,0,0,66,3,5,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6793866,7.8105917,0,0,57.330002,53.459999,59.040001,54.119999,7,1,1,0,0,9,3,1,483,1194632.8,0,0,3620.7825 -14393,17659,32143,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,1,1,0,0,5,7.5031629,7.626637,0,3,0,0,0,-9,0,-1081.4183,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,42,40,15,1,0,-9,0,6.3347917,6.3347917,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,4,3,1,1074,40860.363,0,0,1256.0587 -14394,17660,32144,-9,32147,32145,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.2053,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,934.5,1502525.3,0,0,3918.0161 -14394,17660,32145,32147,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,9.347353,9.2397518,0,2,0,-9,7,0,2,82.477119,0,0,0,39,1,5,1,-9,-9,2019,1,1,11,0,43,38,15,1,0,1,0,31.566689,31.566689,0,0,0,0,0,0,0,0,0,0,0,3.9205308,0,0,0,51.830002,57.200001,54.099998,59.110001,6,1,1,0,0,9,5,1,934.5,1502525.3,0,0,3918.0161 -14394,17660,32146,-9,32147,32145,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.43726,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,934.5,1502525.3,0,0,3918.0161 -14394,17660,32147,32145,-9,-9,1,1,0,39,1,0,2,0,1,-9,1,1,0,0,5,6.5589662,6.696517,0,2,0,-9,19,0,-2,-122.51127,0,0,1,41,1,4,1,3,2,2019,1,2,9,0,19,16,15,1,0,1,0,5.0292997,5.0292997,0,0,0,0,0,0,0,0,0,0,0,1.8347899,0,0,0,54.099998,59.110001,51.830002,57.200001,6,1,1,0,0,9,5,1,934.5,1502525.3,0,0,3918.0161 -14395,17661,32148,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,4,0,7.7140727,7.7323937,3,0,0,0,-9,0,-1042.5938,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1463654,7.659997,0,0,64.980003,31.99,-9,-9,7,1,1,0,0,12,3,1,1485,702117.25,0,0,2966.6621 -14396,17662,32149,32151,-9,-9,2,1,0,44,1,1,1,0,2,-9,5,1,0,0,4,7.6677284,7.6247334,0,2,0,-9,7,0,-5,.94932085,0,0,1,49,2,3,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,6.987597,6.987597,0,0,0,0,0,0,0,0,1,1,0,.21003534,0,0,0,51.830002,57.200001,52,54.509998,7,1,1,0,0,11,3,1,536.33331,68500.336,0,0,2364.0466 -14396,17662,32150,-9,32149,32151,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.2634,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,3,1,536.33331,68500.336,0,0,2364.0466 -14396,17662,32151,32149,-9,-9,1,1,1,49,1,1,1,0,2,-9,2,1,0,0,3,7.7401543,7.6806269,0,2,0,-9,7,0,5,15.785913,0,0,0,44,2,4,1,-9,-9,2019,1,2,9,0,37,37,15,1,0,1,0,6.1442246,6.1442246,0,0,0,0,0,0,0,0,1,1,0,3.5276978,0,0,0,52,54.509998,51.830002,57.200001,6,1,1,0,0,11,3,1,536.33331,68500.336,0,0,2364.0466 -14397,17663,32152,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,2,1,0,0,2,8.025918,8.0424223,3.7555358,3,0,0,0,-9,0,-960.34698,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,29,22,15,1,0,-9,0,9.2196941,9.2196941,0,0,0,0,0,0,0,0,0,0,0,3.6636102,4.1626163,0,0,54.610001,51.040001,-9,-9,5,3,4,0,0,8,3,1,787,1221842.4,0,0,1395.6016 -14398,17664,32153,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,0,3,0,4.1050854,3.9269619,3,0,0,0,-9,0,-1077.4641,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,13.480485,0,0,0,1.1184888,120.58947,0,1,1,0,.23076198,3.7824626,0,0,54,44,-9,-9,7,1,1,0,0,5,2,1,319,18221.377,0,0,946.68903 -14399,17665,32154,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,1,1,0,7.0119152,7.1731029,3,0,0,0,-9,0,-1051.2571,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,16.847214,0,0,4.8174925,0,139.11656,0,1,1,0,0,6.6502314,0,0,47.630001,14.27,-9,-9,1,1,1,0,0,8,2,0,204,489737.5,0,0,450.6441 -14400,17666,32155,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,0,2,0,2.7908263,2.6097541,3,0,0,0,-9,0,-934.95245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7282767,2.8554528,0,0,36.029999,35.07,-9,-9,5,1,1,0,0,4,2,0,1286,-163922.47,0,0,1041.3807 -14401,17667,32156,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,0,3,0,8.3943024,8.1032772,3,0,0,0,-9,0,-927.70605,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,25,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1747751,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,12,4,1,818,1002212,0,0,2054.6638 -14402,17668,32157,32158,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,5.6416736,5.3144975,1,0,-9,38,-9,3,103.78213,-9,0,0,67,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5932512,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,2,2,1,529,1065413.5,0,0,2122.4917 -14402,17668,32158,32157,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,7.765696,7.4129639,0,1,0,-9,1,-9,-3,187.94414,-9,0,0,70,2,4,3,-9,-9,2019,4,1,7,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.77983576,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,2,2,1,529,1065413.5,0,0,2122.4917 -14403,17669,32159,32161,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,4,9.2243147,9.8033085,8.0366888,2,0,-9,3,0,14,-122.83848,0,0,0,33,2,4,1,2,1,2019,1,3,6,0,51,52,15,1,0,1,0,23.731949,23.731949,0,0,0,0,0,0,0,0,0,0,0,9.0548429,0,0,0,51.490002,57.57,57.16,56.150002,6,1,1,0,0,9,5,1,774.33331,1029752.8,0,0,7744.2666 -14403,17669,32160,-9,32159,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1092.8019,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,774.33331,1029752.8,0,0,7744.2666 -14403,17669,32161,32159,-9,-9,3,1,1,33,1,0,1,0,2,-9,2,1,0,0,4,8.287219,8.61411,0,2,0,-9,3,0,-14,-169.36995,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,0,40,50,15,1,0,1,0,11.617735,11.617735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.490002,57.57,6,2,3,0,0,9,5,1,774.33331,1029752.8,0,0,7744.2666 -14404,17670,32162,-9,-9,-9,1,1,0,62,2,0,0,0,3,-9,4,3,0,0,2,0,7.2414145,7.2772217,3,0,0,0,-9,0,-1073.3237,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5605519,7.1718144,0,0,64.779999,38.23,-9,-9,7,1,1,0,0,2,3,1,161,605263,0,0,634.58099 -14405,17671,32163,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,3,8.4317846,8.8279152,0,3,0,0,0,-9,0,-1093.7391,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,18,6,50,49,15,1,1,-9,0,13.209014,13.209014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.220001,58.43,-9,-9,3,1,1,0,0,2,5,1,503,60519.492,0,0,2862.2651 -14405,17671,32164,-9,32163,-9,3,1,0,17,2,0,0,1,2,0,7,2,0,0,3,6.494328,6.6743412,0,3,0,0,0,-9,0,-975.50336,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,49.75,-9,-9,6,1,1,0,0,2,5,1,503,60519.492,0,0,2862.2651 -14405,17672,32165,-9,32163,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,4,7.5847168,7.222456,0,3,0,0,0,-9,0,-1027.4458,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,42,0,15,1,0,-9,1,3.6283641,3.6283641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.16,61.919998,-9,-9,5,1,1,0,0,2,3,1,2225,126944.75,0,0,-173.86838 -14406,17673,32166,32167,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,2,0,7.7416077,7.9270997,1,0,-9,9,0,-2,25.57316,0,0,0,69,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9229326,0,0,58.389999,41.27,56.34,40.630001,5,1,1,0,0,12,3,1,928.5,1389659,0,0,2546.6077 -14406,17673,32167,32166,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,5.0153046,4.9824576,1,0,-9,44,0,2,17.332794,0,0,0,67,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6051631,4.9737258,0,0,56.34,40.630001,58.389999,41.27,6,1,1,0,0,12,3,1,928.5,1389659,0,0,2546.6077 -14407,17674,32168,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,0,4,7.9574556,8.1215801,0,3,0,0,0,-9,0,-942.83087,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,1,41,15,15,1,0,-9,0,7.7078362,7.7078362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,6,3,4,0,0,8,4,0,267,568038.81,0,0,1586.7179 -14408,17675,32169,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,0,5,0,8.3029461,7.9206209,3,0,0,0,-9,0,-985.52643,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2438421,8.2083464,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,11,4,0,1014,619914.06,0,0,5107.8057 -14409,17676,32170,-9,-9,-9,1,1,0,36,3,0,0,0,1,-9,2,1,0,0,4,9.4678354,9.7349501,0,3,0,-9,0,1,0,-980.77484,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,55,0,15,1,0,-9,0,37.106739,37.106739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,2,3,0,0,8,5,0,2120,332479.53,0,0,4196.8555 -14410,17677,32171,32172,-9,-9,2,1,0,58,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,40,0,-2,-43.933811,0,0,0,60,3,3,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,66.620705,3,49,48,51,49,5,1,1,0,1,7,3,0,723,815508.5,0,0,1916.298 -14410,17677,32172,32171,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,7.9773464,7.7109962,0,1,0,-9,40,0,2,-58.646824,0,0,0,58,3,3,3,-9,-9,2019,2,2,10,1,38,50,15,1,0,3,0,9.0694075,9.0694075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,49,48,5,1,1,0,1,7,3,0,723,815508.5,0,0,1916.298 -14410,17678,32173,-9,32171,32172,3,1,1,31,3,0,0,0,3,-9,2,1,0,0,4,7.2719154,7.3821168,0,3,0,0,0,-9,0,-1070.6288,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,21,30,15,1,0,-9,1,8.2532034,8.2532034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,7,3,0,1483,59748.438,0,0,10.10283 -14410,17679,32174,-9,32171,32172,4,1,1,21,2,0,0,0,2,-9,2,1,0,0,4,7.4062123,7.8147798,0,3,0,0,0,-9,0,-1018.2214,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,24,0,15,1,0,-9,1,7.4619527,7.4619527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,3,0,457,0,0,0,1654.1764 -14411,17680,32175,32176,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,0,4,0,5.515862,5.8138375,1,0,-9,52,0,-3,22.157776,0,0,0,78,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8598089,6.437695,0,0,60.57,46.439999,58.299999,52.91,7,1,1,0,0,2,2,1,678.5,656328,0,0,2794.4971 -14411,17680,32176,32175,-9,-9,1,1,1,78,1,0,0,0,2,-9,2,1,0,0,4,7.4539652,7.5938482,0,1,0,-9,54,0,3,54.743229,0,0,0,75,1,4,3,3,3,2019,2,2,6,0,28,24,15,1,0,4,0,6.0816875,6.0816875,0,0,0,0,0,0,0,0,1,1,0,3.6917686,0,0,0,58.299999,52.91,60.57,46.439999,6,1,1,0,0,2,2,1,678.5,656328,0,0,2794.4971 -14412,17681,32177,32178,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,2,6.5444999,6.6659594,0,1,0,-9,6,0,6,-30.732044,0,0,0,56,3,4,1,3,3,2019,1,2,9,0,14,0,15,1,0,1,0,6.4603729,6.4603729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.650002,44.349998,42.810001,53.209999,5,1,1,0,0,11,2,1,1104.5,620030,0,0,939.875 -14412,17681,32178,32177,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,0,4,7.0602412,6.8059297,0,1,0,-9,6,0,-6,84.154449,0,0,0,62,3,2,1,3,3,2019,1,1,11,1,27,15,15,1,0,1,0,3.924969,3.924969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.810001,53.209999,51.650002,44.349998,5,1,1,0,0,11,2,1,1104.5,620030,0,0,939.875 -14412,17682,32179,-9,32178,32177,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,5,7.0902247,7.1037192,0,3,0,0,0,-9,0,-963.60803,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,30,15,1,0,-9,1,5.7648592,5.7648592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,2,1,1,0,0,11,2,1,463,14610.49,0,0,-446.70685 -14413,17683,32180,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-921.02087,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6627167,0,0,0,29.07,34.330002,-9,-9,3,1,1,0,0,9,1,1,1405,-123178.69,0,0,97.766754 -14414,17684,32181,-9,-9,-9,1,1,0,94,3,0,0,0,2,-9,4,3,0,1,3,0,6.7855864,6.9698572,3,0,0,0,-9,0,-863.48511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,15.03249,0,0,0,0,0,0,1,1,0,3.7062559,6.9822531,0,0,54,43,-9,-9,6,1,1,0,0,6,2,1,1700,225650.45,0,0,600.69641 -14415,17685,32182,32183,-9,-9,1,1,1,65,1,0,0,0,3,-9,1,1,0,0,4,0,0,0,1,0,-9,6,0,10,-16.903999,0,0,0,55,2,4,1,3,3,2019,1,2,5,0,0,26,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.849998,62.490002,55.09,5,1,1,0,0,13,3,1,1650.5,770140.81,0,0,2057.554 -14415,17685,32183,32182,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.1527023,8.0071697,0,1,0,-9,6,0,-10,115.5435,0,0,0,65,3,4,1,3,3,2019,1,1,8,1,38,37,15,1,0,1,0,10.076927,10.076927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,63.48,51.849998,6,1,1,0,0,13,3,1,1650.5,770140.81,0,0,2057.554 -14415,17686,32184,-9,32183,32182,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,7.454504,7.6970243,0,3,0,0,0,-9,0,-949.98468,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,8,16,15,1,0,-9,1,32.519669,32.519669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,13,3,1,181,-98476.727,0,0,1243.0009 -14415,17687,32185,-9,32183,32182,4,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,7.9845595,7.9007583,0,3,0,0,0,-9,0,-990.26282,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,40,30,15,1,0,-9,1,10.001643,10.001643,0,0,0,0,0,0,0,0,1,1,0,6.6892509,0,0,0,49,58,-9,-9,5,1,1,0,0,13,4,1,882,29633.461,0,0,1887.2997 -14416,17688,32186,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1045.5541,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.139999,45.25,-9,-9,5,4,2,0,0,8,1,0,658,83792.828,0,0,252.97124 -14417,17689,32187,32188,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.1289964,7.1263385,1,0,-9,26,0,23,103.46945,0,0,0,53,2,3,1,3,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6602516,7.1779895,0,0,62.27,48.470001,35.299999,62.040001,6,1,1,0,0,9,3,1,771.5,722620.38,0,0,1583.7778 -14417,17689,32188,32187,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,6.5939245,6.6802545,0,1,0,-9,26,0,-23,10.356081,0,0,0,76,2,3,3,3,1,2019,2,2,23,11,11,11,15,1,1,4,0,9.3006935,9.3006935,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.299999,62.040001,62.27,48.470001,3,1,1,0,1,9,3,1,771.5,722620.38,0,0,1583.7778 -14418,17690,32189,-9,32190,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1007.5187,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,3,0,487.5,-5254.8809,0,0,1761.0964 -14418,17690,32190,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,0,3,7.5631361,7.6725101,0,4,0,0,0,-9,0,-999.90155,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,24,23,15,1,0,-9,0,9.0384245,9.0384245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,-9,-9,7,1,1,0,0,10,3,0,487.5,-5254.8809,0,0,1761.0964 -14419,17691,32191,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1090.532,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,14.279481,0,0,1,1,0,0,0,0,0,46.02,44.009998,-9,-9,6,1,1,0,0,10,1,0,520,53626.027,0,0,2282.2844 -14419,17692,32192,-9,-9,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,0,5,8.5308008,8.73454,0,3,0,0,0,-9,0,-927.53717,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,45,40,15,1,0,-9,0,11.198994,11.198994,0,0,0,0,0,0,0,14.5,1,1,0,3.680464,0,15.404456,3,54.099998,59.110001,-9,-9,6,1,1,0,0,10,4,0,1136,135129.14,0,0,1289.4152 -14420,17693,32193,-9,32195,32194,2,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.20837,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,8,1,1,337.66666,-4426.2266,0,0,995.29163 -14420,17693,32194,32195,-9,-9,3,1,1,37,1,0,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,8,0,-8,0,0,0,0,45,3,4,3,2,2,2019,4,1,17,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.599998,52.77,51.240002,58.84,4,1,1,1,0,8,1,1,337.66666,-4426.2266,0,0,995.29163 -14420,17693,32195,32194,-9,-9,1,1,0,45,1,0,1,0,3,-9,6,3,0,1,4,0,0,0,2,0,-9,8,0,8,0,0,0,0,37,2,3,3,2,2,2019,4,3,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.70848,3,51.240002,58.84,44.599998,52.77,3,3,4,0,0,8,1,1,337.66666,-4426.2266,0,0,995.29163 -14421,17694,32196,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,4,0,5.7455673,5.4459758,3,0,0,0,-9,0,-896.39972,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8332949,0,0,56.18,53.849998,-9,-9,5,1,1,0,0,7,2,0,545,358074.41,0,0,1912.6785 -14422,17695,32197,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,0,3,0,6.5425262,7.0111718,3,0,0,0,-9,0,-989.70374,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9403048,111.09914,3,52,45,-9,-9,6,1,1,0,0,13,2,1,243,189080.19,0,0,1106.8812 -14422,17696,32198,-9,-9,-9,2,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.4452529,6.6822038,3,0,0,0,-9,0,-943.91803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,8.2017736,0,0,0,126.16213,60.921249,0,1,1,0,0,6.5799899,0,0,52,45,-9,-9,6,1,1,0,0,13,2,1,112,275154.84,0,0,1289.7461 -14423,17697,32199,32200,32203,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,1,5,7.0907955,6.8819499,0,1,0,-9,25,0,1,85.073555,0,0,0,53,2,5,1,2,2,2019,1,2,5,0,19,15,15,1,0,1,0,5.0896053,5.0896053,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.236479,3,60.02,56.419998,57.060001,57.759998,7,1,1,0,0,9,5,1,201.5,165425.09,0,0,5338.9512 -14423,17697,32200,32199,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,5,8.9897299,9.1042671,0,1,0,-9,25,0,-1,54.949558,0,0,0,54,1,5,1,2,2,2019,1,1,8,0,38,38,15,1,0,1,0,30.103699,30.103699,0,0,0,0,0,0,0,0,1,1,0,7.2030735,0,0,0,57.060001,57.759998,60.02,56.419998,6,1,1,0,0,9,5,1,201.5,165425.09,0,0,5338.9512 -14423,17698,32201,-9,32199,32200,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.7055516,7.8522148,0,3,0,0,0,-9,0,-992.82123,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,37,48,15,1,0,-9,1,8.9645538,8.9645538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,9,3,1,734,-94323.75,0,0,876.10614 -14423,17699,32202,-9,32199,32200,4,1,0,20,2,0,0,1,2,0,7,2,0,0,3,0,4.4564781,4.9139543,3,0,0,0,-9,0,-1051.8643,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4062653,0,0,0,44.130001,59.369999,-9,-9,5,1,1,0,0,9,2,1,189,-157292.16,0,0,-877.55273 -14423,17700,32203,-9,-9,-9,5,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-930.888,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.4064627,0,8.6880188,0,0,65.544456,0,1,1,0,3.2528691,0,0,0,51.939999,35.209999,-9,-9,6,1,1,0,0,9,1,1,369,-47144.922,0,0,1424.0209 -14424,17701,32204,-9,32205,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1063.2852,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,2,0,250.5,45901.461,0,0,1416.6085 -14424,17701,32205,-9,-9,-9,1,1,0,27,2,1,1,0,2,-9,1,1,0,0,3,7.5761271,7.2509928,0,4,0,-9,0,0,0,-998.43054,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,20,0,15,1,1,-9,0,7.4074183,7.4074183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.080002,58.419998,-9,-9,5,1,1,0,0,12,2,0,250.5,45901.461,0,0,1416.6085 -14425,17702,32206,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,4,7.654603,8.0020189,0,3,0,0,0,-9,0,-1146.7803,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,22,22,15,1,0,-9,0,17.408854,17.408854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,-9,-9,5,1,1,0,0,11,3,0,478,-133675.61,0,0,1434.0051 -14425,17703,32207,-9,32206,-9,2,1,1,18,2,0,0,0,2,1,2,1,0,0,4,7.7132878,7.9672222,0,3,0,0,0,-9,0,-1001.0598,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,37,0,15,1,0,-9,1,9.7000284,9.7000284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,11,3,0,1845,702.44257,0,0,1451.4075 -14426,17704,32208,32209,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,1,1,0,7.7020264,7.3209715,1,0,-9,26,0,-3,-54.290588,0,0,0,70,2,1,3,-9,3,2019,4,1,35,12,0,0,15,4,1,4,0,0,0,1,12.673082,0,0,0,0,94.769852,0,1,1,0,4.5919399,7.5842195,0,0,19.01,22.639999,36.439999,26.709999,1,1,1,0,0,7,3,1,1732.5,1106796.1,0,0,3549.6069 -14426,17704,32209,32208,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,1,1,0,5.8175092,6.1647692,1,0,-9,26,0,3,-9.3125181,0,0,0,67,2,1,3,3,2,2019,4,2,23,10,0,0,15,4,1,4,0,0,0,1,4.3762617,0,0,0,0,12.889503,7,1,1,0,6.5915446,5.9286318,8.0031919,3,36.439999,26.709999,19.01,22.639999,5,1,1,0,0,7,3,1,1732.5,1106796.1,0,0,3549.6069 -14427,17705,32210,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,4,8.0731401,7.9325571,0,4,0,0,0,-9,0,-1128.1921,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,33,35,15,1,0,-9,0,10.848732,10.848732,0,0,0,0,0,0,0,7,1,0,1,5.9700079,0,.63360864,3,40.889999,57.970001,-9,-9,3,1,1,0,0,13,3,1,524.66669,26073,0,0,2436.592 -14427,17705,32211,-9,32210,-9,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1036.0388,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,524.66669,26073,0,0,2436.592 -14427,17705,32212,-9,32210,-9,3,1,1,16,2,0,2,0,2,-9,3,2,0,0,4,0,5.5293374,5.6724658,4,0,0,0,-9,0,-931.85272,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.7004995,0,0,0,60.52,53.200001,-9,-9,7,1,1,1,0,13,3,1,524.66669,26073,0,0,2436.592 -14427,17706,32213,-9,32210,-9,2,1,1,19,2,0,2,0,2,-9,2,1,0,0,5,7.0411544,6.9348645,0,3,0,0,0,-9,0,-929.88348,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,12,0,15,1,0,-9,1,8.5851908,8.5851908,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.389999,56.709999,-9,-9,6,1,1,0,0,13,2,1,160,0,0,0,234.38846 -14428,17707,32214,32215,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.2650213,7.9102154,6.8578897,1,0,-9,27,-9,3,-56.157986,-9,0,0,59,3,4,1,3,3,2019,1,2,7,0,36,0,15,1,0,1,0,5.1469269,5.1469269,0,0,0,0,0,0,0,0,0,0,0,0,6.7574167,0,0,57.919998,51.82,50.650002,60.470001,6,1,1,0,0,11,4,1,727.5,216251.06,0,0,2507.1045 -14428,17707,32215,32214,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,4,7.8903809,7.8080745,4.498208,1,0,-9,27,-9,-3,53.423515,-9,0,0,62,2,3,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,9.2901421,9.2901421,0,0,0,0,0,0,0,0,0,0,0,4.6518636,4.4780726,0,0,50.650002,60.470001,57.919998,51.82,2,1,1,0,0,11,4,1,727.5,216251.06,0,0,2507.1045 -14429,17708,32216,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,0,3,9.16047,9.1873159,6.8749743,3,0,0,0,-9,0,-962.49274,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,30,28,15,1,0,-9,0,37.747795,37.747795,0,0,0,0,0,0,0,0,1,1,0,5.9211202,6.7609682,0,0,46.549999,58.299999,-9,-9,5,1,1,0,0,7,5,1,594,317517.06,0,0,5771.8931 -14430,17709,32217,32219,-9,-9,3,1,1,54,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,4,0,18,96.102531,0,0,0,36,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,1,0,8,2,0,968.66669,173926.84,0,0,2579.0076 -14430,17709,32218,-9,32219,32217,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1137.697,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,2,0,968.66669,173926.84,0,0,2579.0076 -14430,17709,32219,32217,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,0,4,6.4588103,6.485971,0,2,0,-9,4,0,-18,-37.677879,0,0,1,54,2,4,3,3,2,2019,2,3,7,0,14,14,15,1,0,3,0,6.3688612,6.3688612,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,8,2,0,968.66669,173926.84,0,0,2579.0076 -14431,17710,32220,32221,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,0,2,6.6279421,6.3907022,0,1,0,-9,39,0,-1,-14.886089,0,0,0,61,2,3,1,3,3,2019,1,1,11,0,16,26,15,1,0,1,0,6.3832388,6.3832388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,37.34,51,48,6,1,1,0,0,1,4,1,557,1787021.3,0,0,2867.167 -14431,17710,32221,32220,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,7.893568,7.83497,5.4601603,1,0,-9,3,0,1,-13.66064,0,0,0,60,3,2,1,-9,-9,2019,1,2,10,1,40,40,15,1,0,1,0,8.3720312,8.3720312,0,0,0,0,0,0,0,0,0,0,0,6.3280983,5.6309052,0,0,51,48,58,37.34,5,1,1,0,0,1,4,1,557,1787021.3,0,0,2867.167 -14432,17711,32222,-9,-9,-9,5,1,0,21,2,0,2,0,2,-9,1,1,0,0,3,8.5785875,8.6089449,0,4,0,0,0,-9,0,-882.86536,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,4,0,46,45,15,1,0,-9,0,11.370816,11.370816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.009998,47.939999,-9,-9,4,1,1,0,0,10,3,1,1726,27518.666,0,0,1288.4043 -14433,17712,32223,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,3,0,6.7385168,7.1456914,3,0,0,0,-9,0,-954.85498,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7598104,7.0438924,0,0,47.610001,53.700001,-9,-9,5,1,1,0,0,10,2,1,185,317600.09,0,0,1113.9272 -14434,17713,32224,-9,-9,-9,1,1,1,28,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1005.989,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,56,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.790001,59.599998,-9,-9,4,1,1,0,0,7,1,0,443,33752.059,0,0,0 -14435,17714,32225,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,0,3,8.0555267,7.8941364,0,4,0,0,0,-9,0,-1043.6172,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,40,16,15,1,1,-9,0,9.1127834,9.1127834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.889999,51.689999,-9,-9,4,1,1,0,0,7,3,1,1413,-113709.91,0,0,877.25232 -14435,17715,32226,-9,32225,-9,4,1,0,18,2,0,2,0,2,-9,2,1,0,0,4,7.4701209,7.1744161,0,3,0,0,0,-9,0,-1042.2756,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,0,15,1,0,-9,1,5.1740608,5.1740608,0,0,0,0,0,0,0,0,1,1,0,5.1278691,0,0,0,54.790001,55.860001,-9,-9,6,1,1,0,0,7,3,1,1137,0,0,0,661.6546 -14435,17716,32227,32230,32225,-9,2,1,0,30,1,0,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,8,0,-1,-4.871151,0,0,1,31,2,4,1,2,2,2019,1,5,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,50,57,6,1,1,0,0,7,4,1,795.5,-60027.734,0,0,2899.3926 -14435,17716,32228,-9,32227,32230,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1139.3787,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,795.5,-60027.734,0,0,2899.3926 -14435,17716,32229,-9,32227,32230,6,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.47223,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,4,1,795.5,-60027.734,0,0,2899.3926 -14435,17716,32230,32227,-9,-9,5,1,1,31,1,0,2,0,2,-9,2,1,0,0,4,8.6072063,8.623168,0,2,0,-9,8,0,1,-79.122253,0,0,0,30,2,3,1,-9,-9,2019,1,2,10,1,48,46,15,1,0,1,0,19.688389,19.688389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,51.66,54.880001,5,1,1,0,0,7,4,1,795.5,-60027.734,0,0,2899.3926 -14436,17717,32231,32234,-9,-9,1,1,1,51,1,0,2,0,1,-9,1,1,0,0,4,7.5299096,7.6172795,0,2,0,-9,24,0,0,101.83898,0,0,0,51,1,5,1,-9,-9,2019,1,2,9,1,40,40,15,1,0,1,0,6.5462699,6.5462699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,54.099998,59.110001,6,1,1,0,0,13,4,1,863.25,1151110.5,0,0,4656.8647 -14436,17717,32232,-9,32234,32231,5,1,1,17,2,0,2,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.30786,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,863.25,1151110.5,0,0,4656.8647 -14436,17717,32233,-9,32234,32231,6,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1128.5653,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,4,1,863.25,1151110.5,0,0,4656.8647 -14436,17717,32234,32231,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,0,5,8.9655771,8.7044106,0,2,0,-9,24,0,0,71.585381,0,0,0,51,1,4,1,-9,-9,2019,1,1,6,0,30,30,15,1,0,1,0,23.00312,23.00312,0,0,0,0,0,0,0,0,1,1,0,7.7994175,0,0,0,54.099998,59.110001,53,55,6,1,1,0,0,13,4,1,863.25,1151110.5,0,0,4656.8647 -14436,17718,32235,-9,32234,32231,3,1,0,21,2,0,2,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-925.85724,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,1,72,55991.348,0,0,0 -14436,17719,32236,-9,32234,32231,4,1,0,20,2,0,2,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1114.4526,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0717669,0,0,0,46,58,-9,-9,5,1,1,0,0,13,1,1,4352,200160.44,0,0,97.758751 -14437,17720,32237,-9,32238,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,1,4,0,0,0,4,0,0,0,-9,0,-877.02118,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.830002,-9,-9,5,2,3,0,0,9,2,1,610,-30907.5,0,0,2141.7034 -14437,17720,32238,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,0,1,7.2061014,7.1158018,0,4,0,0,0,-9,0,-938.28528,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,24,27,15,1,0,-9,0,6.3108487,6.3108487,0,0,0,0,0,0,0,0,1,1,0,1.9541802,0,0,0,52.57,28.959999,-9,-9,6,1,1,0,0,9,2,1,610,-30907.5,0,0,2141.7034 -14438,17721,32239,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,0,2,6.8983636,7.6629663,6.2521024,3,0,0,0,-9,0,-1030.5409,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,17,17,15,1,1,-9,0,8.753746,8.753746,0,0,0,0,0,0,0,0,1,1,0,6.537221,0,0,0,43.849998,25.129999,-9,-9,6,1,1,0,0,6,3,1,964,105054.34,0,0,1490.6753 -14438,17721,32240,-9,32239,-9,3,1,0,17,2,0,0,1,2,0,7,2,0,1,4,6.3589334,6.5829186,0,3,0,0,0,-9,0,-1097.4546,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,18,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.689999,61.75,-9,-9,6,1,1,0,0,6,3,1,964,105054.34,0,0,1490.6753 -14438,17722,32241,-9,32239,-9,2,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,6.2018595,6.4520216,0,3,0,0,0,-9,0,-773.01532,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2283168,0,0,0,47,59,-9,-9,5,1,1,0,0,6,2,1,4093,184949.06,0,0,-1134.9629 -14439,17723,32242,32244,-9,-9,1,1,1,29,1,1,2,0,1,-9,2,1,0,0,4,9.0290823,8.7208757,0,2,0,-9,7,0,0,126.78591,0,1,0,29,1,3,1,2,2,2019,1,2,6,1,45,55,15,1,0,1,0,17.853287,17.853287,0,0,0,0,0,0,0,0,1,1,0,1.5261774,0,0,0,51.830002,57.200001,39.849998,53.119999,6,1,1,0,0,12,4,1,893.75,158488.42,0,0,3260.7393 -14439,17723,32243,-9,32244,32242,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1107.4178,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,893.75,158488.42,0,0,3260.7393 -14439,17723,32244,32242,-9,-9,2,1,0,29,1,1,2,0,1,-9,5,1,0,0,3,6.1950316,6.5887575,0,2,0,-9,7,0,0,28.627972,0,1,1,29,1,4,1,1,2,2019,1,1,20,7,30,6,15,1,1,1,0,2.2113028,2.2113028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.849998,53.119999,51.830002,57.200001,6,1,1,0,0,12,4,1,893.75,158488.42,0,0,3260.7393 -14439,17723,32245,-9,32244,32242,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.2369,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,4,1,893.75,158488.42,0,0,3260.7393 -14440,17724,32246,-9,-9,-9,3,1,0,19,2,0,1,1,2,0,7,2,0,0,4,6.2517948,7.4521866,6.4456201,3,0,0,0,-9,0,-949.62024,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,28,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5991082,0,0,0,46.560001,48.990002,-9,-9,5,1,1,0,0,12,3,1,639,46211.535,0,0,665.04968 -14441,17725,32247,32248,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,5,8.6266556,8.5160341,0,1,0,-9,8,0,-6,76.773422,0,0,0,54,2,3,1,3,3,2019,1,1,9,0,40,43,15,1,0,1,0,12.200873,12.200873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.240002,57.09,46.700001,6,1,1,0,0,2,5,1,290.5,595892.13,0,0,3734.687 -14441,17725,32248,32247,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.0279922,8.2341223,0,1,0,-9,8,0,6,-75.749542,0,0,0,48,1,5,1,3,2,2019,1,2,12,0,39,39,15,1,0,1,0,9.8937197,9.8937197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.700001,46.34,61.240002,6,1,1,0,0,2,5,1,290.5,595892.13,0,0,3734.687 -14441,17726,32249,-9,32247,32248,3,1,0,23,2,0,0,0,1,1,2,1,0,0,4,7.8942566,7.659585,0,3,0,0,0,-9,0,-1069.7737,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,20,0,15,1,0,-9,1,14.164326,14.164326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,2,3,1,648,416.63358,0,0,394.16849 -14441,17727,32250,-9,32247,32248,4,1,0,22,2,0,0,1,1,0,7,2,0,0,5,5.9711561,5.9983063,0,3,0,0,0,-9,0,-932.14716,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,2,2,1,431,-146159.83,0,0,1071.8655 -14442,17728,32251,-9,-9,-9,1,1,1,22,2,0,0,1,2,-9,7,2,0,0,2,0,0,0,3,0,-9,0,-9,0,-969.76807,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.799999,-9,-9,3,1,1,0,0,13,1,0,378,-181632.3,0,0,1340.6237 -14443,17729,32252,-9,32254,32253,5,1,1,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.21393,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,1061.8,237505.3,0,0,2912.8794 -14443,17729,32253,32254,-9,-9,1,1,1,44,1,0,3,0,2,-9,1,1,0,0,3,8.2499008,7.9687281,0,2,0,-9,23,0,-2,106.24554,0,0,0,46,2,5,1,2,3,2019,1,2,8,0,50,55,15,1,0,1,0,8.9204731,8.9204731,0,0,0,0,0,0,0,2,1,1,0,0,0,.12464797,3,55.150002,44.790001,57.060001,57.759998,6,1,1,0,0,9,3,1,1061.8,237505.3,0,0,2912.8794 -14443,17729,32254,32253,-9,-9,2,1,0,46,1,0,3,0,2,-9,2,1,0,0,5,7.5512638,7.4706283,0,2,0,-9,23,0,2,14.624381,0,0,0,44,2,3,1,2,2,2019,1,1,7,0,15,15,15,1,0,1,0,12.17639,12.17639,0,0,0,0,0,0,0,0,1,1,0,3.2392819,0,0,0,57.060001,57.759998,55.150002,44.790001,7,1,1,0,0,9,3,1,1061.8,237505.3,0,0,2912.8794 -14443,17729,32255,-9,32254,32253,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1061.943,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,9,3,1,1061.8,237505.3,0,0,2912.8794 -14443,17729,32256,-9,32254,32253,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-987.88892,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,3,1,1061.8,237505.3,0,0,2912.8794 -14444,17730,32257,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-924.57526,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.950001,32.43,-9,-9,4,1,1,0,0,12,1,0,459,315947.97,0,0,259.02042 -14444,17731,32258,-9,-9,32257,2,1,0,24,2,0,0,0,1,1,2,1,0,0,3,7.7708316,7.629663,0,3,0,0,0,-9,0,-1015.0067,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,38,0,15,1,0,-9,1,6.8731127,6.8731127,0,0,0,0,0,0,0,14.5,1,0,1,0,0,15.286647,3,34.900002,28.370001,-9,-9,2,1,1,0,0,12,3,0,765,15661.634,0,0,1152.928 -14445,17732,32259,32260,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,0,2,8.2343102,8.0877991,0,1,0,-9,24,0,2,30.74198,0,0,0,55,3,4,1,3,3,2019,1,1,12,0,57,47,15,1,0,1,0,6.0846739,6.0846739,0,0,0,0,0,0,0,0,0,0,0,2.3696311,0,0,0,50.27,48.860001,48.869999,58.549999,4,1,1,0,0,1,4,1,394,278735.69,0,0,2623.7668 -14445,17732,32260,32259,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,4,8.0462904,7.9444304,0,1,0,-9,24,0,-2,-4.0130281,0,0,0,57,3,2,1,2,2,2019,1,2,11,0,40,37,15,1,0,1,0,8.8060284,8.8060284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,50.27,48.860001,6,1,1,0,0,1,4,1,394,278735.69,0,0,2623.7668 -14446,17733,32261,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,3,0,6.0408244,6.4995208,3,0,0,0,-9,0,-1021.7513,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.0740013,0,0,49,47,-9,-9,5,1,1,0,0,5,2,0,390,630373.63,0,0,1595.6697 -14447,17734,32262,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,1,2,0,7.0359364,6.9045453,3,0,0,0,-9,0,-1147.3423,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.7936554,6.531847,0,0,49.150002,42.389999,-9,-9,6,1,1,0,0,4,2,1,1637,289240.06,0,0,1646.6525 -14448,17735,32263,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,8.4449883,8.3776884,8.0284252,3,0,0,0,-9,0,-894.06421,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,20,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9299827,0,0,42.389999,52.150002,-9,-9,7,3,4,0,0,6,5,1,221,1172840,0,0,3763.7136 -14449,17736,32264,32265,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,65,0,-1,-31.624834,0,0,0,85,3,1,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.220001,40.619999,29.219999,6,1,1,0,0,1,2,1,677,76049.328,0,0,812.45984 -14449,17736,32265,32264,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,1,0,6.3241506,6.6977615,1,0,-9,65,0,1,-98.911964,0,0,0,84,3,4,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,1,5.5821629,15.211216,0,0,0,40.949371,0,1,1,0,0,6.4863338,0,0,40.619999,29.219999,56.77,52.220001,5,1,1,0,0,1,2,1,677,76049.328,0,0,812.45984 -14450,17737,32266,-9,-9,-9,1,1,1,21,2,0,0,1,1,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1018.1339,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,46.380001,-9,-9,7,1,1,0,0,2,1,0,418,-248308.56,0,0,1207.6057 -14451,17738,32267,-9,32268,32270,4,1,1,16,2,0,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.9521,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,2,0,1255.2,21618.471,0,0,1631.182 -14451,17738,32268,32270,-9,-9,2,1,0,38,1,0,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,8,0,-10,124.28547,0,0,1,48,2,4,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,8,2,0,1255.2,21618.471,0,0,1631.182 -14451,17738,32269,-9,32268,32270,5,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.74451,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,1255.2,21618.471,0,0,1631.182 -14451,17738,32270,32268,-9,-9,1,1,1,48,1,0,4,0,2,-9,1,1,0,0,4,5.0527301,5.5363531,0,2,0,-9,21,0,10,25.186756,0,0,0,38,2,4,3,2,2,2019,2,2,9,1,40,24,15,1,0,3,0,.58319229,.58319229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,8,2,0,1255.2,21618.471,0,0,1631.182 -14451,17738,32271,-9,32268,32270,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.0333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,1255.2,21618.471,0,0,1631.182 -14451,17739,32272,-9,32268,32270,3,1,1,18,2,0,4,1,2,0,7,2,0,0,5,7.5051441,7.4514518,0,3,0,0,0,-9,0,-1125.3885,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,8,2,0,161,5349.2305,0,0,378.99808 -14452,17740,32273,-9,-9,-9,1,1,1,44,3,0,0,0,1,-9,2,1,0,0,5,9.4508991,9.5881529,0,3,0,0,0,-9,0,-1028.4282,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,46,50,15,1,0,-9,0,36.743881,36.743881,0,0,0,0,0,0,0,0,0,0,0,3.700841,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,1,5,1,6449,442589.84,0,0,3982.4617 -14453,17741,32274,32275,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,0,5,8.7794933,9.3707209,0,1,0,1,1,-9,0,-79.687866,0,0,0,43,2,2,1,1,3,2019,1,2,6,0,38,38,15,1,0,1,0,26.088446,26.088446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,35.790001,48.98,6,1,1,0,0,2,5,1,912,302675.94,0,0,3853.7473 -14453,17741,32275,32274,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,0,2,7.3462143,6.9683962,0,1,0,-9,1,-9,0,-68.530891,-9,0,1,43,1,5,1,-9,-9,2019,1,1,16,4,19,0,15,1,1,1,0,7.2045007,7.2045007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.790001,48.98,57.060001,57.759998,4,1,1,0,1,2,5,1,912,302675.94,0,0,3853.7473 -14454,17742,32276,32277,-9,-9,1,1,1,28,1,0,0,0,3,-9,2,1,0,0,3,7.7360668,7.5533342,0,1,0,-9,6,0,0,-21.859392,0,1,0,28,2,3,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,7.2004576,7.2004576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.639999,52.959999,39.279999,53.830002,4,1,1,0,0,2,4,0,2280,145690.63,0,0,1308.8361 -14454,17742,32277,32276,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,0,3,7.6701713,7.6041288,0,1,0,-9,6,0,0,-123.78359,0,1,1,28,3,3,1,-9,-9,2019,1,1,17,5,45,47,15,1,1,1,0,4.0270834,4.0270834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.279999,53.830002,40.639999,52.959999,5,1,1,0,0,2,4,0,2280,145690.63,0,0,1308.8361 -14455,17743,32278,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,0,3,8.5518408,9.0485439,7.8308291,3,0,0,0,-9,0,-976.22101,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8275027,8.4426975,0,0,53,47,-9,-9,6,1,1,0,0,4,5,1,186,1273044.5,0,0,5108.7056 -14456,17744,32279,32280,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,9.048912,9.2092657,0,2,0,-9,9,0,-1,74.114624,0,0,0,47,1,4,1,2,2,2019,1,1,1,0,44,44,15,1,0,1,0,33.828583,33.828583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,57.16,56.150002,6,1,1,0,0,12,5,1,885.33331,1373610.8,0,0,4763.1611 -14456,17744,32280,32279,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,0,4,8.3881321,8.5070095,0,2,0,-9,9,0,1,12.407351,0,0,0,46,1,4,1,1,2,2019,1,2,7,0,37,35,15,1,0,1,0,13.13671,13.13671,0,0,0,0,0,0,0,0,0,0,0,2.3620141,0,0,0,57.16,56.150002,62.490002,55.09,6,1,1,0,0,12,5,1,885.33331,1373610.8,0,0,4763.1611 -14456,17744,32281,-9,32280,32279,3,1,1,16,2,0,2,0,2,-9,3,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1038.8606,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6788235,0,0,0,62.389999,56.709999,-9,-9,7,1,1,1,0,12,5,1,885.33331,1373610.8,0,0,4763.1611 -14457,17745,32282,-9,-9,-9,1,1,0,53,3,0,1,0,2,-9,3,3,0,1,1,0,0,0,4,0,0,0,-9,0,-1038.7622,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.150002,28.41,-9,-9,2,1,1,1,1,2,1,0,799,18222.709,0,0,1600.8491 -14457,17746,32283,-9,32282,-9,2,1,0,18,2,0,1,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1062.056,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.940001,61.650002,-9,-9,4,1,1,1,1,2,1,0,1204,43220.262,0,0,-1273.3586 -14458,17747,32284,-9,32285,32287,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.01056,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,237.25,131900.78,0,0,6031.4995 -14458,17747,32285,32287,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,0,5,8.2289648,7.7722669,0,2,0,-9,13,0,-2,-132.18925,0,0,1,38,2,4,1,1,1,2019,1,2,6,0,34,35,15,1,0,1,0,9.7993841,9.7993841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,4,5,1,237.25,131900.78,0,0,6031.4995 -14458,17747,32286,-9,32285,32287,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1021.5633,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,5,1,237.25,131900.78,0,0,6031.4995 -14458,17747,32287,32285,-9,-9,2,1,1,38,1,1,2,0,2,-9,2,1,0,0,4,9.264389,9.4736128,0,2,0,-9,13,0,2,71.556602,0,0,0,36,1,5,1,3,3,2019,1,1,6,0,55,70,15,1,0,1,0,26.503126,26.503126,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.060001,57.759998,3,1,1,0,0,4,5,1,237.25,131900.78,0,0,6031.4995 -14459,17748,32288,32289,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,0,3,7.7937803,7.5188003,0,2,0,-9,3,0,6,-193.41162,0,0,0,28,1,2,1,3,3,2019,1,2,6,0,30,30,15,1,0,1,0,6.0256414,6.0256414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.799999,51.310001,33.810001,42.68,6,1,1,0,0,13,3,0,541.66669,29880.59,0,0,2525.7664 -14459,17748,32289,32288,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,0,2,7.2604661,6.8478098,0,2,0,-9,3,0,-6,-138.85947,0,1,1,34,2,3,1,-9,-9,2019,1,1,17,4,24,33,15,1,1,1,0,6.2515512,6.2515512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.810001,42.68,58.799999,51.310001,4,1,1,0,0,13,3,0,541.66669,29880.59,0,0,2525.7664 -14459,17748,32290,-9,32289,32288,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-906.97766,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,541.66669,29880.59,0,0,2525.7664 -14460,17749,32291,32292,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,4,0,-3,-70.416618,0,0,0,68,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.700001,28.27,53.849998,22.4,5,1,1,0,0,7,2,1,352,387092.38,0,0,2167.644 -14460,17749,32292,32291,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,2,0,5.369276,5.022018,1,0,-9,4,0,3,43.086899,0,0,0,65,3,2,3,-9,-9,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3336706,0,0,53.849998,22.4,47.700001,28.27,6,1,1,0,0,7,2,1,352,387092.38,0,0,2167.644 -14461,17750,32293,-9,32296,32297,1,1,1,45,3,0,2,0,2,-9,1,1,0,0,3,7.5492816,7.2272725,0,3,0,0,0,-9,0,-910.40637,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,40,39,15,1,0,-9,1,5.0844941,5.0844941,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.139999,53.970001,-9,-9,1,1,1,0,0,9,3,1,749,15627.997,0,0,863.82422 -14461,17750,32294,-9,-9,32293,2,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-987.0495,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0260835,0,0,0,39.060001,61.939999,-9,-9,5,1,1,0,0,9,3,1,749,15627.997,0,0,863.82422 -14461,17750,32295,-9,-9,32293,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1053.6918,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,749,15627.997,0,0,863.82422 -14461,17751,32296,32297,-9,-9,4,1,0,67,1,0,2,0,3,-9,4,3,0,0,4,0,0,0,2,0,-9,2,0,-2,-62.197109,0,0,0,69,3,1,3,-9,-9,2019,4,5,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.283236,2,60.52,53.200001,27.360001,37.970001,7,1,1,0,0,9,2,1,404.5,1088258.8,0,0,916.41327 -14461,17751,32297,32296,-9,-9,5,1,1,69,1,0,2,0,3,-9,4,3,0,0,1,0,6.7696867,6.9192314,2,0,-9,2,0,2,-65.162598,0,0,0,67,3,4,3,-9,-9,2019,4,4,13,1,0,0,15,4,0,4,0,0,0,1,0,7.0725985,0,0,0,0,0,1,1,0,0,7.2225652,0,0,27.360001,37.970001,60.52,53.200001,6,1,1,0,0,9,2,1,404.5,1088258.8,0,0,916.41327 -14462,17752,32298,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,3,8.8376789,8.5738974,0,3,0,0,0,-9,0,-1029.5593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,45,60,15,1,0,-9,0,13.535804,13.535804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.040001,38.880001,-9,-9,6,1,1,0,0,9,5,1,236,652873,0,0,1923.3644 -14463,17753,32299,-9,-9,-9,1,1,1,90,3,0,0,0,1,-9,4,3,0,0,4,0,5.0633483,5.219697,3,0,0,0,-9,0,-1017.4204,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7565789,4.821188,0,0,59.639999,38.580002,-9,-9,5,1,1,0,0,10,2,1,319,335385.09,0,0,1901.9082 -14464,17754,32300,-9,32305,32301,6,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.992,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,2,0,852.33331,121999.64,0,0,1708.1584 -14464,17754,32301,32305,-9,-9,1,1,1,52,1,0,4,0,3,-9,6,3,0,0,2,0,0,0,2,0,-9,7,0,8,57.744034,0,0,0,44,1,4,1,3,2,2019,3,2,14,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.700001,53.560001,54.790001,55.860001,4,1,1,0,1,2,2,0,852.33331,121999.64,0,0,1708.1584 -14464,17754,32302,-9,32305,32301,4,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.06024,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,0,852.33331,121999.64,0,0,1708.1584 -14464,17754,32303,-9,32305,32301,5,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.97272,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,2,2,0,852.33331,121999.64,0,0,1708.1584 -14464,17754,32304,-9,32305,32301,3,1,1,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-858.69501,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,2,0,852.33331,121999.64,0,0,1708.1584 -14464,17754,32305,32301,-9,-9,2,1,0,44,1,0,4,0,1,-9,2,1,0,0,4,7.5969844,7.3724747,0,2,0,-9,7,0,-8,-43.92281,0,0,1,52,3,2,3,2,3,2019,2,1,11,0,33,32,15,1,0,3,0,8.2026787,8.2026787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,31.700001,53.560001,5,1,1,0,1,2,2,0,852.33331,121999.64,0,0,1708.1584 -14465,17755,32306,32307,-9,-9,1,1,0,26,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,2,0,-13,-102.13967,0,1,1,39,2,4,1,-9,-9,2019,3,2,28,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.120001,60.919998,51,57,2,1,1,0,0,4,4,0,152,58609.809,0,0,1997.0796 -14465,17755,32307,32306,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,0,4,8.4855328,8.3865604,0,1,0,-9,2,0,13,98.840172,0,0,0,26,2,3,3,-9,-9,2019,2,1,10,1,40,48,15,1,0,3,0,19.507215,19.507215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,57,30.120001,60.919998,5,1,1,0,0,4,4,0,152,58609.809,0,0,1997.0796 -14466,17756,32308,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-945.38324,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,5,1,1,0,0,7,1,0,981,57310.805,0,0,1398.3322 -14467,17757,32309,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1039.2114,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,56.380001,-9,-9,5,1,1,1,0,6,1,0,406,-135405.84,0,0,337.42603 -14468,17758,32310,-9,32312,32313,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1053.8323,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,9,5,1,626.75,393768.47,0,0,4457.3979 -14468,17758,32311,-9,32312,32313,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.6559,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,5,1,626.75,393768.47,0,0,4457.3979 -14468,17758,32312,32313,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,8.23771,8.2731791,0,2,0,-9,26,0,1,-1.1417789,0,0,1,43,1,5,1,1,3,2019,1,2,7,0,39,37,15,1,0,1,0,10.391949,10.391949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.919998,60.709999,46.279999,62.599998,6,1,1,0,0,9,5,1,626.75,393768.47,0,0,4457.3979 -14468,17758,32313,32312,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,5,9.0176411,9.218853,0,2,0,-9,24,0,-1,-36.363583,0,0,0,44,2,4,1,3,3,2019,1,1,8,2,60,70,15,1,0,1,0,16.580164,16.580164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.279999,62.599998,46.919998,60.709999,5,1,1,0,0,9,5,1,626.75,393768.47,0,0,4457.3979 -14469,17759,32314,-9,32316,-9,2,1,0,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-973.70062,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,1,0,730.66669,92123.719,0,0,899.21649 -14469,17759,32315,-9,32316,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-954.57751,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,1,0,730.66669,92123.719,0,0,899.21649 -14469,17759,32316,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,3,3,0,1,4,0,0,0,4,0,-9,0,-9,0,-1005.8915,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.79038,3,30.77,64.339996,-9,-9,5,1,1,1,0,6,1,0,730.66669,92123.719,0,0,899.21649 -14470,17760,32317,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,0,4,8.5485172,9.0494661,0,3,0,0,0,-9,0,-928.18976,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,43,0,15,1,0,-9,0,15.398904,15.398904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,9,5,1,615,46807.68,0,0,2539.3213 -14471,17761,32318,32319,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,1,2,0,7.6440248,7.9138346,1,0,-9,6,0,-1,46.53669,0,0,0,66,2,1,3,-9,-9,2019,4,1,16,5,0,35,15,4,1,4,0,0,0,1,0,69.785454,8.3000393,0,4.2956071,0,0,1,1,0,3.242538,7.6369381,0,0,39.290001,26.690001,39.16,36.57,5,1,1,0,0,12,3,0,1602,995702.63,0,0,1117.0151 -14471,17761,32319,32318,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,6,0,1,-3.7725558,0,0,0,65,2,2,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,39.16,36.57,39.290001,26.690001,4,1,1,0,0,12,3,0,1602,995702.63,0,0,1117.0151 -14472,17762,32320,32321,-9,-9,2,1,1,71,1,0,0,0,1,-9,2,1,0,0,3,8.5714569,9.329937,8.2828369,1,0,-9,6,0,3,-10.250502,0,0,0,68,2,5,3,-9,-9,2019,2,1,9,0,36,0,15,1,0,4,0,15.386944,15.386944,0,0,0,0,0,0,0,0,1,1,0,6.0712018,8.4872761,0,0,47.689999,55.060001,56.07,55.459999,6,1,1,0,0,5,5,1,751.5,2290821.5,0,0,5092.6626 -14472,17762,32321,32320,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,48,0,-3,-34.560917,0,0,0,71,1,3,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0181696,0,0,0,56.07,55.459999,47.689999,55.060001,6,1,1,0,0,5,5,1,751.5,2290821.5,0,0,5092.6626 -14473,17763,32322,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,6.8400002,7.0707121,3,0,0,0,-9,0,-950.62622,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1756372,.83122706,3,61.43,43.34,-9,-9,6,1,1,0,0,6,2,1,240,-53893.75,0,0,1008.5896 -14474,17764,32323,32324,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,58,0,2,-5.287466,0,0,0,80,1,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4772701,0,0,0,66.470001,43.77,57.16,56.150002,5,1,1,0,0,6,2,1,579.5,591941.88,0,0,2168.03 -14474,17764,32324,32323,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,7.0224476,7.2231426,1,0,-9,58,0,-2,150.664,0,0,0,82,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1889277,0,0,57.16,56.150002,66.470001,43.77,7,1,1,0,0,6,2,1,579.5,591941.88,0,0,2168.03 -14475,17765,32325,-9,32326,32328,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.0502,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,4,1,642.5,447962.81,0,0,2647.3665 -14475,17765,32326,32328,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,0,4,7.3813305,7.3246865,0,2,0,-9,15,0,-4,-144.37823,0,0,1,37,2,3,1,3,2,2019,1,1,12,0,18,18,15,1,0,1,0,10.89272,10.89272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.009998,55.310001,58.32,50.220001,4,1,1,0,0,8,4,1,642.5,447962.81,0,0,2647.3665 -14475,17765,32327,-9,32326,32328,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-854.33313,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,4,1,642.5,447962.81,0,0,2647.3665 -14475,17765,32328,32326,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,0,3,8.8200712,8.85569,0,2,0,-9,16,0,4,-101.82291,0,0,0,33,2,4,1,2,2,2019,1,2,8,0,45,45,15,1,0,1,0,16.832087,16.832087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,50.009998,55.310001,5,1,1,0,1,8,4,1,642.5,447962.81,0,0,2647.3665 -14476,17766,32329,-9,32330,32334,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.17712,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,572.16669,147885.63,0,0,3957.4976 -14476,17766,32330,32334,-9,-9,2,1,0,31,1,1,4,0,1,-9,2,1,0,0,3,7.7196794,7.4421701,0,2,0,-9,6,0,-8,38.8083,0,0,1,39,2,3,1,-9,-9,2019,1,1,12,0,33,33,15,1,0,1,0,9.4775848,9.4775848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.849998,51.810001,42.419998,54.75,5,1,1,0,0,13,3,1,572.16669,147885.63,0,0,3957.4976 -14476,17766,32331,-9,32330,32334,5,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-954.93365,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,572.16669,147885.63,0,0,3957.4976 -14476,17766,32332,-9,32330,32334,4,1,0,4,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-869.04303,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,572.16669,147885.63,0,0,3957.4976 -14476,17766,32333,-9,32330,32334,3,1,0,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1066.8547,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,572.16669,147885.63,0,0,3957.4976 -14476,17766,32334,32330,-9,-9,1,1,1,39,1,1,4,0,2,-9,2,1,0,0,3,8.2651987,8.2450819,0,2,0,-9,6,0,8,13.721314,0,0,0,31,1,3,1,2,2,2019,1,2,13,1,37,37,15,1,0,1,0,13.377926,13.377926,0,0,0,0,0,0,0,2,1,1,0,0,0,2.8386936,3,42.419998,54.75,48.849998,51.810001,5,1,1,0,0,13,3,1,572.16669,147885.63,0,0,3957.4976 -14477,17767,32335,32336,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.0153408,8.7548857,1,0,-9,29,0,0,-106.825,0,0,0,70,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.093545,8.5143013,0,0,57.16,56.150002,48.189999,54.860001,6,1,1,0,0,1,5,1,928.5,1408337.6,0,0,5387.4712 -14477,17767,32336,32335,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.8350348,7.6048446,1,0,-9,29,0,0,98.837868,0,0,0,70,1,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2060728,7.4918895,0,0,48.189999,54.860001,57.16,56.150002,6,1,1,0,0,1,5,1,928.5,1408337.6,0,0,5387.4712 -14478,17768,32337,32338,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,7.1204138,7.1372604,1,0,-9,52,0,2,-78.802437,0,0,0,74,2,3,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5919757,7.4216771,1.2859086,1,60.07,30.24,42.740002,40.709999,5,4,5,0,0,4,2,1,752.5,929241.88,0,0,2253.7512 -14478,17768,32338,32337,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,52,0,-2,177.92415,0,0,0,76,1,3,3,3,2,2019,4,1,9,2,0,0,15,4,0,4,0,0,0,1,0,15.43658,0,0,0,0,0,1,1,0,0,0,0,0,42.740002,40.709999,60.07,30.24,6,1,1,0,0,4,2,1,752.5,929241.88,0,0,2253.7512 -14479,17769,32339,32340,-9,-9,1,1,0,85,1,0,0,0,2,-9,4,3,0,0,4,0,3.3183715,3.6010365,1,0,-9,26,0,-6,-18.45858,0,0,0,91,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0855114,3.8598895,0,0,62.099998,51.16,57,19,7,1,1,0,0,9,2,1,758.5,558533.19,0,0,2932.7458 -14479,17769,32340,32339,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,0,2,0,7.5524173,7.4929256,1,0,-9,8,0,6,86.954796,0,0,0,85,2,4,3,-9,-9,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,0,5.4615898,0,0,0,0,0,1,1,0,.28255162,7.2687163,0,0,57,19,62.099998,51.16,7,1,1,0,0,9,2,1,758.5,558533.19,0,0,2932.7458 -14480,17770,32341,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,2,8.3473749,8.4591904,0,3,0,0,0,-9,0,-939.0592,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,38,35,15,1,0,-9,0,10.824733,10.824733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.41,46.23,-9,-9,5,1,1,0,1,6,4,1,1344,105487.45,0,0,1027.4819 -14481,17771,32342,32343,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,5,8.7460642,8.8025723,0,1,0,-9,10,0,7,14.816165,0,0,0,47,2,3,1,-9,-9,2019,1,2,6,0,37,38,15,1,0,1,0,29.410555,29.410555,0,0,0,0,0,0,0,0,0,0,0,.46039575,0,0,0,54.689999,57.470001,43.849998,50.009998,6,1,1,0,0,4,5,1,439.5,1675285.3,0,0,5293.8721 -14481,17771,32343,32342,-9,-9,2,1,0,47,1,0,0,0,2,-9,1,1,0,0,3,7.6229939,7.4533205,0,1,0,-9,9,0,-7,7.3798614,0,0,0,54,2,5,1,2,2,2019,1,1,12,2,45,14,15,1,0,1,0,5.4782867,5.4782867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.849998,50.009998,54.689999,57.470001,3,2,3,0,1,4,5,1,439.5,1675285.3,0,0,5293.8721 -14482,17772,32344,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,2,7.7403097,7.8468208,0,3,0,0,0,-9,0,-977.74329,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,45,42,15,1,1,-9,0,6.0617557,6.0617557,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.207403,3,38.919998,31.030001,-9,-9,4,1,1,0,0,11,3,0,1211,-127835.83,0,0,1185.2557 -14483,17773,32345,32346,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,7.765563,8.2800751,7.2211676,1,0,-9,10,0,-4,-2.1573727,0,0,1,48,2,5,1,2,1,2019,1,1,24,12,60,40,15,1,1,1,0,5.6639457,5.6639457,0,0,0,0,0,0,0,0,1,1,0,5.853714,6.6143479,0,0,41.200001,47.040001,29.98,66.690002,4,1,1,0,0,8,5,1,817,777250.94,0,0,3287.7642 -14483,17773,32346,32345,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,5,8.5044155,8.7075529,0,1,0,-9,10,0,4,-19.034157,0,0,0,44,2,4,1,-9,-9,2019,1,2,6,2,45,52,15,1,0,1,0,11.996099,11.996099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.98,66.690002,41.200001,47.040001,7,1,1,0,0,8,5,1,817,777250.94,0,0,3287.7642 -14484,17774,32347,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,7.1782403,7.1254001,3,0,0,0,-9,0,-1014.1462,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,15.644938,0,1,1,0,6.064209,7.0500269,0,0,54.720001,46.41,-9,-9,7,1,1,0,0,9,2,1,774,375768.38,0,0,1018.1561 -14485,17775,32348,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,8.0976963,8.4183321,0,3,0,0,0,-9,0,-991.79504,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,16,4,49,42,15,1,1,-9,0,9.2909393,9.2909393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.469999,60.560001,-9,-9,4,1,1,0,0,2,4,0,2228,11601.667,0,0,2337.0525 -14486,17776,32349,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,3,0,6.4461279,5.8632431,3,0,0,0,-9,0,-960.26367,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,12.748082,0,0,0,0,1,1,0,6.1561117,0,0,0,65,29.299999,-9,-9,7,1,1,0,0,7,2,1,486,70957.484,0,0,1186.9706 -14487,17777,32350,-9,32351,-9,4,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-934.78644,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,1,0,882,0,0,0,2885.4397 -14487,17777,32351,-9,-9,-9,1,1,0,32,2,0,4,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1031.3396,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.860001,36.209999,-9,-9,5,3,4,0,1,8,1,0,882,0,0,0,2885.4397 -14487,17777,32352,-9,32351,-9,5,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-882.02051,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,1,0,882,0,0,0,2885.4397 -14487,17777,32353,-9,32351,-9,3,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1125.8704,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,8,1,0,882,0,0,0,2885.4397 -14487,17777,32354,-9,32351,-9,2,1,0,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-980.55127,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,8,1,0,882,0,0,0,2885.4397 -14488,17778,32355,-9,-9,-9,1,1,0,47,2,0,2,0,2,-9,2,1,0,0,2,7.8391709,7.501914,0,4,0,0,0,-9,0,-1049.7356,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,27,27,15,1,0,-9,0,9.8489037,9.8489037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.799999,-9,-9,5,1,1,0,0,10,3,0,1170,108860.39,0,0,2868.9424 -14489,17779,32356,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,4,7.7870774,7.6308837,0,3,0,0,0,-9,0,-1032.2396,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,11,1,27,25,15,1,0,-9,0,11.175508,11.175508,0,0,0,0,0,0,0,0,0,0,0,2.9858179,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,8,3,1,225,-20291.098,0,0,3148.3052 -14490,17780,32357,32358,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,1,3,0,5.5879712,5.4550352,1,0,-9,48,0,0,50.862312,0,0,0,77,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.9889197,5.3028965,0,1,48.540001,41.09,54,46,6,1,1,0,0,9,2,1,398,568137.06,0,0,1014.0857 -14490,17780,32358,32357,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,0,89.843559,0,0,0,77,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,48.540001,41.09,6,1,1,0,0,9,2,1,398,568137.06,0,0,1014.0857 -14491,17781,32359,-9,32360,32362,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1063.2601,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,2,2,0,805.20001,55107.172,0,0,3105.1086 -14491,17781,32360,32362,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-1,-23.917294,0,0,1,42,2,4,1,3,2,2019,3,2,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.59,47.77,53.470001,51.099998,2,1,1,0,0,2,2,0,805.20001,55107.172,0,0,3105.1086 -14491,17781,32361,-9,32360,32362,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.78198,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,2,2,0,805.20001,55107.172,0,0,3105.1086 -14491,17781,32362,32360,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,0,4,8.0579367,7.9705319,0,2,0,-9,6,0,1,-33.842113,0,0,0,41,2,3,3,2,-9,2019,2,1,12,1,40,43,15,1,0,3,0,7.54777,7.54777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.470001,51.099998,51.59,47.77,6,1,1,0,0,2,2,0,805.20001,55107.172,0,0,3105.1086 -14491,17781,32363,-9,32360,32362,5,1,0,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1030.2791,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,2,2,0,805.20001,55107.172,0,0,3105.1086 -14492,17782,32364,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,0,3,0,8.2169495,8.3705635,3,0,0,0,-9,0,-996.82477,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1441846,8.5534887,0,0,37.790001,55.650002,-9,-9,5,1,1,0,0,8,5,1,1529,1578594.9,0,0,4691.3975 -14492,17783,32365,-9,32364,-9,2,1,0,49,2,0,0,0,1,-9,2,1,0,0,4,7.5321383,7.5591908,0,1,0,-9,7,0,-10,150.07399,0,0,0,-9,-9,-9,-9,1,2,2019,1,3,5,0,6,7,15,1,0,-9,0,28.485306,28.485306,0,0,0,0,0,0,0,0,1,1,0,2.6233423,0,0,0,52.349998,48.919998,57.330002,53.459999,5,1,1,0,1,8,4,1,845,-50760.668,0,0,1120.2646 -14492,17784,32366,-9,-9,-9,3,1,0,59,2,0,0,0,2,-9,1,1,0,0,3,8.0593958,8.1514864,0,1,0,-9,7,0,10,66.254868,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,5,0,50,60,15,1,0,-9,0,7.2243681,7.2243681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,52.349998,48.919998,4,1,1,0,0,8,4,1,175,474639.06,0,0,1705.8638 -14493,17785,32367,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-934.58124,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.540001,39.740002,-9,-9,2,1,1,1,0,5,1,0,610.5,22058.18,0,0,418.57184 -14493,17785,32368,-9,32367,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1021.5929,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,1,0,610.5,22058.18,0,0,418.57184 -14494,17786,32369,32370,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,7.840651,7.850534,0,1,0,-9,6,0,-3,32.981354,0,0,0,54,2,4,1,2,2,2019,1,2,8,0,31,32,15,1,0,1,0,9.5609884,9.5609884,0,0,0,0,0,0,0,0,0,0,0,3.9276755,0,0,0,55.200001,49.400002,49.41,50.25,6,1,1,0,0,10,4,1,624,288327.81,0,0,2486.1929 -14494,17786,32370,32369,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,8.0061398,8.1339359,0,1,0,-9,6,0,3,78.956894,0,0,0,51,2,2,1,3,3,2019,1,1,8,0,40,40,15,1,0,1,0,9.4423008,9.4423008,0,0,0,0,0,0,0,0,0,0,0,3.8187501,0,0,0,49.41,50.25,55.200001,49.400002,6,1,1,0,0,10,4,1,624,288327.81,0,0,2486.1929 -14494,17787,32371,-9,32369,-9,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,8.3072729,8.7001505,0,3,0,0,0,-9,0,-959.99847,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,50,15,1,0,-9,1,10.455178,10.455178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.709999,61.529999,-9,-9,6,1,1,0,0,10,4,1,390,60074.063,0,0,2123.6858 -14494,17788,32372,-9,32369,-9,4,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,8.3011646,8.605463,0,3,0,0,0,-9,0,-1032.2369,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,41,15,1,0,-9,1,9.7503996,9.7503996,0,0,0,0,0,0,0,0,0,0,0,3.2388074,0,0,0,54.450001,56.220001,-9,-9,6,1,1,0,0,10,4,1,276,70555.016,0,0,1298.3182 -14495,17789,32373,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,3,3,0,0,3,0,4.5666857,4.5913715,3,0,0,0,-9,0,-1024.1296,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,37,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3483801,0,0,37.689999,58.700001,-9,-9,3,1,1,1,1,2,2,1,660,140557.95,0,0,670.53668 -14496,17790,32374,32375,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,0,4,8.3335285,8.2229996,0,1,0,-9,9,0,-13,22.87396,0,1,1,42,1,4,1,2,2,2019,1,1,11,2,37,38,15,1,0,1,0,11.92718,11.92718,0,0,0,0,0,0,0,0,0,0,0,5.1513543,0,0,0,48,56,54.790001,55.860001,5,1,1,0,0,4,5,1,886.5,571157.44,0,0,3968.2883 -14496,17790,32375,32374,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,0,4,8.5574923,8.3572731,0,1,0,-9,9,0,13,-62.035927,0,0,0,29,2,4,1,2,1,2019,1,2,9,0,41,38,15,1,0,1,0,12.228989,12.228989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,48,56,6,1,1,0,0,4,5,1,886.5,571157.44,0,0,3968.2883 -14497,17791,32376,32377,-9,-9,1,1,1,54,1,0,1,0,1,-9,2,1,0,0,5,9.783989,9.6361179,0,2,0,-9,6,0,3,-55.59034,0,0,0,51,1,3,1,2,1,2019,1,2,6,0,41,40,15,1,0,1,0,45.508896,45.508896,0,0,0,0,0,0,0,0,0,0,0,3.2291873,0,0,0,57.060001,57.759998,47.66,52.330002,7,1,1,0,0,12,5,1,449.33334,955851.13,0,0,14025.755 -14497,17791,32377,32376,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,3,9.4614315,9.6997795,0,2,0,-9,6,0,-3,-23.944241,0,0,0,54,1,5,1,3,1,2019,1,1,6,0,37,30,15,1,0,1,0,44.643635,44.643635,0,0,0,0,0,0,0,0,0,0,0,7.3989716,0,0,0,47.66,52.330002,57.060001,57.759998,6,1,1,0,0,12,5,1,449.33334,955851.13,0,0,14025.755 -14497,17791,32378,-9,32377,32376,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.64929,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,449.33334,955851.13,0,0,14025.755 -14497,17792,32379,-9,32377,32376,3,1,0,19,2,0,1,1,2,0,7,2,0,0,5,6.7804008,6.865839,0,3,0,0,0,-9,0,-1029.3042,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,-9,-9,7,1,1,0,0,12,2,1,490,-39417.656,0,0,201.91089 -14498,17793,32380,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,2,7.4846339,7.7860932,4.027483,3,0,0,0,-9,0,-951.80298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,35,35,15,1,0,-9,0,8.0701761,8.0701761,0,0,0,0,0,0,0,7,1,1,0,3.9617882,3.9968855,8.8771906,3,44.939999,45.950001,-9,-9,5,1,1,0,0,13,3,1,164,189050.27,0,0,2369.5747 -14498,17794,32381,-9,32380,-9,2,1,1,36,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-1075.4386,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,9,0,37,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.41,44.32,-9,-9,2,1,1,1,0,13,1,1,382,0,0,0,-493.00711 -14499,17795,32382,-9,32384,32385,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.46698,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,4,1,1490.75,83007.219,0,0,3482.8101 -14499,17795,32383,-9,32384,32385,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.9215,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,1490.75,83007.219,0,0,3482.8101 -14499,17795,32384,32385,-9,-9,2,1,0,32,1,1,2,0,2,-9,2,1,0,0,5,7.832674,7.6984663,0,2,0,-9,6,0,-3,-46.000576,0,0,1,35,2,5,1,-9,-9,2019,1,1,6,0,19,0,15,1,0,1,0,17.972334,17.972334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,57.060001,57.759998,2,1,1,0,0,9,4,1,1490.75,83007.219,0,0,3482.8101 -14499,17795,32385,32384,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,5,8.7249231,8.7189426,0,2,0,-9,6,0,3,59.25827,0,0,0,32,2,5,1,3,2,2019,1,2,6,0,40,0,15,1,0,1,0,18.448416,18.448416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51.73,58.82,6,1,1,0,0,9,4,1,1490.75,83007.219,0,0,3482.8101 -14500,17796,32386,32387,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,43,0,3,-9.3692837,0,0,0,74,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.099998,51.16,48.279999,60.18,7,1,1,0,0,8,3,1,1562,763133.75,0,0,2175.2686 -14500,17796,32387,32386,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,0,4,0,7.6215267,8.0808191,1,0,-9,44,0,-3,26.825762,0,0,0,77,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8328662,0,0,48.279999,60.18,62.099998,51.16,7,1,1,0,0,8,3,1,1562,763133.75,0,0,2175.2686 -14501,17797,32388,-9,-9,-9,1,1,0,57,3,1,1,0,3,-9,2,1,0,0,5,7.9951224,7.8589754,0,4,0,0,0,-9,0,-1034.8496,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,7.9160018,7.9160018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,61.509998,-9,-9,7,1,1,0,0,11,3,1,979,486892.06,0,0,1387.5557 -14502,17798,32389,32390,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.2417793,8.3301592,0,1,0,-9,34,0,-3,25.335812,0,0,0,54,2,3,1,2,2,2019,1,2,15,5,30,37,15,1,1,1,0,16.450956,16.450956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.200001,64.190002,36.939999,59.880001,3,1,1,0,0,1,5,0,417,973574.5,0,0,3486.4009 -14502,17798,32390,32389,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.5120964,8.6334686,0,1,0,-9,34,0,3,-19.492573,0,0,0,51,1,4,1,2,2,2019,1,1,11,1,37,37,15,1,0,1,0,14.305036,14.305036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.939999,59.880001,36.200001,64.190002,5,1,1,0,0,1,5,0,417,973574.5,0,0,3486.4009 -14503,17799,32391,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,1,2,0,5.8777561,6.0396857,3,0,0,0,-9,0,-1164.9648,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5067921,3.7228172,3,50.029999,39.389999,-9,-9,5,1,1,0,0,2,2,1,155,72051.969,0,0,847.12097 -14504,17800,32392,32393,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,0,3,9.0519009,8.7269363,0,2,0,-9,23,0,-7,-165.29643,0,0,0,54,2,3,1,2,3,2019,1,1,9,0,36,36,15,1,0,1,0,23.176867,23.176867,0,0,0,0,0,0,0,0,1,1,0,4.7458811,0,0,0,55.939999,44.419998,51.41,56.150002,5,1,1,0,0,4,4,1,2220.5,895266.56,0,0,2994.8274 -14504,17800,32393,32392,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,0,3,6.2772841,6.3687239,0,2,0,-9,23,0,7,177.17624,0,0,0,47,1,3,1,2,2,2019,1,2,9,0,10,10,15,1,0,1,0,7.710566,7.710566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,55.939999,44.419998,4,1,1,0,0,4,4,1,2220.5,895266.56,0,0,2994.8274 -14505,17801,32394,32395,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,7.3641634,7.7085094,1,0,-9,6,0,0,125.90391,0,0,0,84,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7268775,7.7726336,0,0,56.669998,42.779999,55.759998,39.560001,6,1,1,0,0,12,3,1,754.5,815390.75,0,0,2040.2141 -14505,17801,32395,32394,-9,-9,2,1,0,84,1,0,0,0,1,-9,4,3,0,0,3,0,7.4789166,7.2804976,1,0,-9,6,0,0,-110.97359,0,0,0,84,2,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8841014,7.2077737,0,0,55.759998,39.560001,56.669998,42.779999,6,1,1,0,0,12,3,1,754.5,815390.75,0,0,2040.2141 -14506,17802,32396,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,0,1,0,5.6472511,5.9719625,3,0,0,0,-9,0,-989.28827,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,0,89,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.7233052,5.4839263,2.3394217,3,45.990002,27.950001,-9,-9,5,1,1,0,0,9,2,1,1436,201659.53,0,0,-331.4256 -14507,17803,32397,-9,32399,32401,5,1,1,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-903.65613,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,1,4,1,265.39999,546420.75,0,0,3591.5781 -14507,17803,32398,-9,32399,32401,4,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.98077,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,265.39999,546420.75,0,0,3591.5781 -14507,17803,32399,32401,-9,-9,2,1,0,43,1,1,3,0,1,-9,5,1,0,0,3,8.0874748,8.074091,0,2,0,-9,6,0,2,13.680624,0,0,1,41,2,3,1,-9,-9,2019,1,1,13,1,38,35,15,1,0,1,0,11.543163,11.543163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.580002,44.490002,53.810001,48.389999,5,1,1,0,1,1,4,1,265.39999,546420.75,0,0,3591.5781 -14507,17803,32400,-9,32399,32401,3,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1107.2098,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,4,1,265.39999,546420.75,0,0,3591.5781 -14507,17803,32401,32399,-9,-9,1,1,1,41,1,1,3,0,2,-9,2,1,0,0,3,8.8295002,8.5163002,0,2,0,-9,6,0,-2,.58054417,0,0,0,43,1,3,1,3,3,2019,1,2,8,0,52,43,15,1,0,1,0,14.939687,14.939687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.810001,48.389999,32.580002,44.490002,6,1,1,0,1,1,4,1,265.39999,546420.75,0,0,3591.5781 -14508,17804,32402,32403,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,2,7.7914205,7.2973433,0,1,0,-9,5,0,9,52.04348,0,0,0,46,2,2,1,3,2,2019,1,4,9,1,16,25,15,1,0,1,0,11.508275,11.508275,0,0,0,0,0,0,0,14.5,0,0,0,3.0502324,0,25.247278,3,51.439999,32.040001,54.57,33.18,4,1,1,0,0,6,3,1,443.5,907860.19,0,0,2515.4683 -14508,17804,32403,32402,-9,-9,4,1,0,46,1,0,0,0,2,-9,2,1,0,0,2,7.7671175,7.7068715,0,1,0,-9,5,0,0,-105.09898,0,0,0,55,2,2,1,-9,-9,2019,1,1,8,0,38,35,15,1,0,1,0,7.5226922,7.5226922,0,0,0,0,0,0,0,2,0,0,0,0,0,7.8307037,3,54.57,33.18,51.439999,32.040001,6,1,1,0,0,6,3,1,443.5,907860.19,0,0,2515.4683 -14508,17805,32404,-9,-9,32402,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,8.1021061,8.2189369,0,3,0,0,0,-9,0,-1009.9944,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,44,43,15,1,0,-9,1,9.2883081,9.2883081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,56.990002,-9,-9,4,1,1,0,0,6,4,1,666,-106015.83,0,0,1218.3696 -14508,17806,32405,-9,-9,32402,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,3,7.7897062,7.7121005,0,3,0,0,0,-9,0,-943.3736,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,41,10,15,1,0,-9,1,7.0269184,7.0269184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.799999,57.029999,-9,-9,5,1,1,0,0,6,3,1,1143,111758.37,0,0,1197.6798 -14509,17807,32406,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,2,6.9947782,7.1959448,4.1876841,3,0,0,0,-9,0,-885.23395,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,16,15,15,1,0,-9,0,7.87744,7.87744,0,0,0,0,0,0,0,2,1,1,0,3.4596171,0,2.8210061,3,51.799999,24.01,-9,-9,3,1,1,0,1,7,2,1,234,62275.797,0,0,447.00873 -14510,17808,32407,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,7.0571423,6.8613758,3,0,0,0,-9,0,-827.59021,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2374692,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,2,1,418,411919.34,0,0,1355.001 -14511,17809,32408,32409,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.0645123,6.0936155,1,0,-9,45,0,0,-164.66023,0,0,0,66,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5690538,6.0569329,0,0,57.330002,53.459999,58.150002,52.91,7,1,1,0,0,2,2,1,710.5,593936.5,0,0,2118.4209 -14511,17809,32409,32408,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,45,0,0,-97.944443,0,0,0,66,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6099324,0,0,0,58.150002,52.91,57.330002,53.459999,6,1,1,0,0,2,2,1,710.5,593936.5,0,0,2118.4209 -14512,17810,32410,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,4,8.5440063,8.7301073,0,3,0,0,0,-9,0,-1027.1483,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,41,15,1,0,-9,0,22.569605,22.569605,0,0,0,0,0,0,0,0,0,0,0,2.275281,0,0,0,40.150002,55.990002,-9,-9,5,1,1,0,0,4,5,1,409,181223.61,0,0,1079.0271 -14513,17811,32411,-9,32413,-9,5,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-970.61835,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,1,0,960,43447.914,0,0,1461.7825 -14513,17811,32412,-9,32413,-9,3,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1041.5732,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,1,0,960,43447.914,0,0,1461.7825 -14513,17811,32413,-9,-9,-9,1,1,0,35,2,1,4,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1205.6973,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.029999,50.540001,-9,-9,6,1,1,0,1,6,1,0,960,43447.914,0,0,1461.7825 -14513,17811,32414,-9,32413,-9,4,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1073.4779,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,1,0,960,43447.914,0,0,1461.7825 -14514,17812,32415,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,4,9.050293,9.0460892,0,3,0,0,0,-9,0,-782.44141,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,35,35,15,1,1,-9,0,23.552711,23.552711,0,0,0,0,0,0,0,0,0,0,0,5.013165,0,0,0,38.939999,60.48,-9,-9,5,1,1,0,0,8,5,1,299,282461.09,0,0,1872.3105 -14514,17813,32416,-9,-9,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,0,3,7.776751,8.2451963,0,3,0,0,0,-9,0,-1008.6104,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,30,15,1,0,-9,0,9.9323378,9.9323378,0,0,0,0,0,0,0,0,0,0,0,2.0969539,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,0,8,3,1,479,88945.344,0,0,-374.70276 -14515,17814,32417,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,2,1,0,1,3,8.0937662,7.9038482,0,3,0,-9,0,1,0,-910.90991,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,3,40,40,15,1,0,-9,0,7.773685,7.773685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.459999,53.68,-9,-9,3,1,1,0,1,5,3,0,879,-63452.16,0,0,1855.4209 -14516,17815,32418,32419,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.0771818,6.2205286,1,0,-9,6,0,0,-72.483833,0,0,0,69,2,3,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4432483,6.0212741,0,0,55.650002,41.830002,56.849998,39.93,6,1,1,0,0,9,2,1,1392,361298.44,0,0,1972.6304 -14516,17815,32419,32418,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,6.8989334,6.4194994,1,0,-9,6,0,0,-68.263901,0,0,0,69,3,3,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1757193,6.4449987,0,0,56.849998,39.93,55.650002,41.830002,6,1,1,0,0,9,2,1,1392,361298.44,0,0,1972.6304 -14517,17816,32420,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,4,3,0,0,4,0,7.4893837,6.8671174,3,0,0,0,-9,0,-948.92749,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.551157,0,0,0,48.810001,59.91,-9,-9,4,1,1,0,0,6,3,1,956,654575.63,0,0,547.10504 -14518,17817,32421,32422,-9,-9,4,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,8.0426683,7.9533343,5.4850459,1,0,-9,7,0,8,-97.899261,0,0,0,54,2,3,1,-9,-9,2019,1,1,12,1,38,38,15,1,0,1,0,11.110314,11.110314,0,0,0,0,0,0,0,0,0,0,0,4.4380584,5.2859125,0,0,60.830002,43.599998,48.369999,41.439999,5,2,3,0,0,6,5,1,900,2350701,0,0,2215.8521 -14518,17817,32422,32421,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.0454254,8.142664,0,1,0,-9,7,0,-8,-17.459032,0,0,0,62,1,3,1,2,1,2019,1,4,15,4,40,44,15,1,1,1,0,12.916678,12.916678,0,0,0,0,0,0,0,42,0,0,0,.17742485,0,35.338173,3,48.369999,41.439999,60.830002,43.599998,6,2,3,0,0,6,5,1,900,2350701,0,0,2215.8521 -14519,17818,32423,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,0,3,8.1117001,8.9865503,7.8509774,3,0,0,0,-9,0,-853.29333,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,32,49,15,1,0,-9,0,12.636105,12.636105,0,0,0,0,0,0,0,0,1,1,0,0,7.607131,0,0,38.799999,60.419998,-9,-9,6,3,4,0,0,6,5,1,369,517800.28,0,0,3486.4607 -14520,17819,32424,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,0,4,0,5.539145,6.2399273,3,0,0,0,-9,0,-944.24506,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4782257,5.6715436,0,3,54.790001,55.860001,-9,-9,6,1,1,0,0,9,2,1,522,171831.03,0,0,678.31024 -14521,17820,32425,-9,32426,32427,3,1,1,17,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.0981,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.040001,60.470001,-9,-9,7,1,1,0,0,12,5,0,761,1138560.9,0,0,7641.3003 -14521,17820,32426,32427,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,4,8.9239998,8.9214287,6.1013784,2,0,-9,22,0,3,-133.22026,0,0,0,45,2,4,1,1,2,2019,1,2,10,1,43,44,15,1,0,1,0,23.55912,23.55912,0,0,0,0,0,0,0,0,1,1,0,6.0382776,0,0,0,35.630001,62.189999,54.200001,57.490002,6,1,1,0,0,12,5,0,761,1138560.9,0,0,7641.3003 -14521,17820,32427,32426,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,4,9.0849133,9.1949615,0,2,0,-9,22,0,-3,-25.367054,0,0,0,48,1,4,1,2,1,2019,1,1,6,0,40,47,15,1,0,1,0,30.823812,30.823812,0,0,0,0,0,0,0,0,1,1,0,7.4316707,0,0,0,54.200001,57.490002,35.630001,62.189999,6,1,1,0,0,12,5,0,761,1138560.9,0,0,7641.3003 -14522,17821,32428,32429,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,5.2144737,5.4822025,1,0,-9,36,0,-11,17.915634,0,0,0,91,2,1,3,3,3,2019,4,1,19,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2897172,0,0,42.689999,34.389999,34.630001,21.190001,5,1,1,0,0,5,2,1,1083,36969.414,0,0,1385.158 -14522,17821,32429,32428,-9,-9,1,1,1,91,1,0,0,0,2,-9,4,3,0,0,1,0,6.2728047,5.8491502,1,0,-9,36,0,11,10.87141,0,0,0,80,3,3,3,3,3,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.3428159,0,0,34.630001,21.190001,42.689999,34.389999,4,1,1,0,0,5,2,1,1083,36969.414,0,0,1385.158 -14523,17822,32430,32431,-9,-9,1,1,0,45,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,18,0,0,0,0,0,0,45,1,4,1,2,1,2019,3,2,17,7,0,18,15,3,1,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6041374,0,7.6599069,3,36.290001,53.610001,52,55,6,2,3,1,0,8,1,1,1038.5,628623.63,0,0,-494.03021 -14523,17822,32431,32430,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,0,0,0,1,0,-9,7,0,0,0,-9,0,0,45,1,3,3,-9,-9,2019,2,1,9,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.290001,53.610001,6,1,1,0,0,8,1,1,1038.5,628623.63,0,0,-494.03021 -14524,17823,32432,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,2,1,0,0,4,8.6472206,8.5003071,7.4241796,3,0,0,0,-9,0,-1085.2708,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,42,15,1,0,-9,0,11.759079,11.759079,0,0,0,0,0,0,0,2,1,1,0,5.3856988,7.5067029,0,3,60.119999,54.799999,-9,-9,6,1,1,0,0,4,5,0,597,582931.88,0,0,4232.2861 -14525,17824,32433,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,8.1610975,7.789712,3,0,0,0,-9,0,-1018.8812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9878726,8.0741539,0,0,60.029999,39.830002,-9,-9,7,1,1,0,0,8,4,1,611,1135567,0,0,2008.9131 -14526,17825,32434,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,1,0,5.704659,5.6315074,3,0,0,0,-9,0,-1003.0459,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5935631,5.7455935,0,0,64.019997,27.68,-9,-9,6,1,1,0,0,7,2,1,748,200928.97,0,0,982.7934 -14527,17826,32435,32436,-9,-9,1,1,0,56,1,0,0,0,2,-9,1,1,0,0,2,8.3285341,8.1578779,0,1,0,-9,21,0,10,22.439367,0,0,0,46,2,5,1,2,3,2019,1,2,21,9,70,60,15,1,1,1,0,6.6768303,6.6768303,0,0,0,0,0,0,0,27.5,0,0,0,7.8035736,0,30.93619,3,19.549999,42.799999,45.810001,61.509998,3,1,1,0,0,7,4,1,732.5,215072.19,0,0,3375.9692 -14527,17826,32436,32435,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,0,5,7.8072853,7.2775378,0,1,0,-9,21,0,-10,-16.012226,0,0,0,56,2,2,1,3,3,2019,1,1,2,1,126,90,15,1,0,1,0,1.617071,1.617071,0,0,0,0,0,0,0,0,0,0,0,6.9553351,0,2.667438,3,45.810001,61.509998,19.549999,42.799999,5,1,1,0,0,7,4,1,732.5,215072.19,0,0,3375.9692 -14527,17827,32437,-9,32435,32436,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,8.4385529,8.3639688,0,3,0,0,0,-9,0,-1063.2733,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,1,37,37,15,1,0,-9,1,11.881502,11.881502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.950001,46.669998,-9,-9,5,1,1,0,0,7,4,1,1131,170112.77,0,0,1311.5 -14528,17828,32438,32439,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.1210699,7.9479451,1,0,-9,48,0,3,50.882748,0,0,0,68,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3362617,8.4307766,0,0,57.16,56.150002,48.869999,58.549999,7,4,5,0,0,8,4,1,982,831956.88,0,0,3219.4326 -14528,17828,32439,32438,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,7.8688965,7.749784,1,0,-9,48,0,-3,-49.720081,0,0,0,71,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4814992,7.7036309,0,0,48.869999,58.549999,57.16,56.150002,7,4,5,0,0,8,4,1,982,831956.88,0,0,3219.4326 -14529,17829,32440,32441,-9,-9,1,1,1,47,1,0,2,0,2,-9,1,1,0,0,2,8.0749779,7.7179661,0,2,0,-9,14,0,10,-48.39098,0,0,0,37,1,1,1,-9,2,2019,1,2,15,4,18,0,15,1,1,1,0,15.06006,15.06006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.07,39.41,31.93,19.35,4,1,1,0,1,10,3,0,711.5,175548.78,0,0,2708.5273 -14529,17829,32441,32440,-9,-9,2,1,0,37,1,0,2,0,1,1,2,1,0,1,1,6.9308782,7.1768999,0,2,0,-9,14,0,-10,-52.203552,-9,0,1,47,2,2,1,2,2,2019,1,1,25,8,18,0,15,1,1,1,0,8.1016674,8.1016674,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.1444421,3,31.93,19.35,53.07,39.41,1,1,1,0,1,10,3,0,711.5,175548.78,0,0,2708.5273 -14529,17829,32442,-9,32441,32440,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-961.48254,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,10,3,0,711.5,175548.78,0,0,2708.5273 -14529,17829,32443,-9,32441,32440,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,4.424767,4.5529623,0,2,0,0,0,-9,0,-1084.356,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.139999,60.450001,-9,-9,5,1,1,0,0,10,3,0,711.5,175548.78,0,0,2708.5273 -14530,17830,32444,-9,32446,32445,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1083.0548,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,3,1,818.66669,818753.25,0,0,2315.4861 -14530,17830,32445,32446,-9,-9,1,1,1,61,1,0,1,0,1,-9,1,1,0,0,4,5.7542472,8.0728226,7.9321551,2,0,-9,21,0,6,10.910922,-9,0,0,55,2,4,3,-9,-9,2019,2,2,8,0,20,0,15,1,0,3,0,1.5985998,1.5985998,0,0,0,0,0,0,0,0,0,0,0,6.6816287,7.4319863,0,0,55,53,54.790001,55.860001,6,1,1,0,0,9,3,1,818.66669,818753.25,0,0,2315.4861 -14530,17830,32446,32445,-9,-9,2,1,0,55,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-6,19.941683,0,0,0,61,1,4,1,2,1,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5004005,0,0,0,54.790001,55.860001,55,53,6,1,1,0,0,9,3,1,818.66669,818753.25,0,0,2315.4861 -14531,17831,32447,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-914.46436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.93,38.490002,-9,-9,5,1,1,0,0,4,1,0,140,54184.645,0,0,1138.3992 -14532,17832,32448,32449,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.4753895,8.6390944,0,1,0,-9,6,0,0,-70.078781,0,0,0,51,3,4,1,2,2,2019,1,2,5,0,38,38,15,1,0,1,0,15.114339,15.114339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,53,54,7,1,1,0,0,5,5,1,966,967603.38,0,0,3582.4692 -14532,17832,32449,32448,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,0,4,7.9830399,7.9916716,0,1,0,-9,6,0,0,63.587605,0,0,0,51,1,4,1,-9,-9,2019,1,1,9,1,30,0,15,1,0,1,0,9.8508959,9.8508959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,54.790001,55.860001,6,1,1,0,0,5,5,1,966,967603.38,0,0,3582.4692 -14532,17833,32450,-9,32448,32449,3,1,0,26,2,0,0,0,2,-9,2,1,0,0,4,7.2332144,7.1790071,0,3,0,0,0,-9,0,-946.97223,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,6,0,20,15,15,1,0,-9,1,9.958065,9.958065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,5,2,1,260,13850.348,0,0,1343.1666 -14533,17834,32451,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,10,3,0,0,1,0,5.7300892,5.7294803,3,0,0,0,-9,0,-1057.0259,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5012131,0,0,44.32,16.32,-9,-9,2,1,1,0,1,5,2,1,941,75721.734,0,0,1083.6841 -14533,17835,32452,-9,32451,-9,2,1,0,44,2,0,0,0,2,-9,1,1,0,0,3,8.1959238,8.2374573,0,3,0,0,0,-9,0,-1023.6683,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,47,55,15,1,0,-9,1,7.9493513,7.9493513,0,0,0,0,0,0,0,79,1,1,0,4.3025861,0,121.8794,3,54.130001,48.040001,-9,-9,5,1,1,0,0,5,4,1,653,270935.31,0,0,1638.203 -14534,17836,32453,-9,32455,32456,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-957.49005,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,5,0,209.75,829203.88,0,0,5170.8691 -14534,17836,32454,-9,32455,32456,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,-9,0,-9,0,-961.53278,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,8,5,0,209.75,829203.88,0,0,5170.8691 -14534,17836,32455,32456,-9,-9,1,1,0,52,1,0,2,0,2,-9,2,1,0,0,5,8.7056065,8.8768148,0,2,0,-9,22,-9,2,10.802649,-9,0,0,50,2,4,1,3,2,2019,1,2,7,0,50,0,15,1,0,1,0,20.838257,20.838257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,53,55,6,1,1,0,0,8,5,0,209.75,829203.88,0,0,5170.8691 -14534,17836,32456,32455,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,0,4,8.9643192,8.9278946,0,2,0,-9,24,-9,-2,-24.585367,-9,0,0,52,2,5,1,-9,-9,2019,1,1,9,1,40,0,15,1,0,1,0,23.674469,23.674469,0,0,0,0,0,0,0,0,1,1,0,2.4742684,0,0,0,53,55,57.060001,57.759998,6,3,4,0,0,8,5,0,209.75,829203.88,0,0,5170.8691 -14535,17837,32457,-9,-9,-9,1,1,0,53,2,0,1,0,2,-9,2,1,0,1,3,7.4858479,7.8472881,0,4,0,0,0,-9,0,-1030.3412,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,25,0,15,1,0,-9,0,8.9530706,8.9530706,0,0,0,0,0,0,0,7,1,1,0,0,0,16.3501,3,47.43,47.049999,-9,-9,6,3,4,0,0,8,3,0,723.5,284019.66,0,0,1091.5208 -14535,17837,32458,-9,32457,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1088.7928,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.9247761,3,51.830002,57.200001,-9,-9,7,4,2,0,0,8,3,0,723.5,284019.66,0,0,1091.5208 -14536,17838,32459,-9,32461,32460,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,3,7.783123,7.5347538,0,3,0,0,0,-9,0,-968.33368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,43,45,15,1,1,-9,1,5.657774,5.657774,0,0,0,0,0,0,0,0,1,1,0,.28793883,0,0,0,36.59,41.040001,-9,-9,3,1,1,0,0,9,3,1,404,56491.48,0,0,194.14322 -14536,17839,32460,32461,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.226851,4.7657957,1,0,-9,7,0,0,-33.529995,0,0,0,72,2,3,3,3,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1403909,5.1979666,0,0,62.18,36.18,61.43,43.34,6,1,1,0,0,9,2,1,2873,1321646,0,0,2227.3379 -14536,17839,32461,32460,-9,-9,3,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,4.710115,4.9122539,1,0,-9,7,0,0,168.25548,0,0,0,72,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.2281356,4.6732693,0,0,61.43,43.34,62.18,36.18,6,1,1,0,0,9,2,1,2873,1321646,0,0,2227.3379 -14537,17840,32462,-9,32465,32464,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.77057,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,2,3,0,0,6,3,1,1217.25,50174.488,0,0,1752.488 -14537,17840,32463,-9,32465,32464,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.8083,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,3,1,1217.25,50174.488,0,0,1752.488 -14537,17840,32464,32465,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,4,7.8609128,7.969111,0,2,0,-9,20,0,1,-3.8229446,0,0,0,46,2,2,1,3,3,2019,1,2,8,0,37,37,15,1,0,1,0,7.3749108,7.3749108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.82,46.700001,51.310001,48.330002,6,2,3,0,0,6,3,1,1217.25,50174.488,0,0,1752.488 -14537,17840,32465,32464,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,0,2,7.4604573,7.3410544,0,2,0,-9,20,0,-1,-2.0470195,0,0,0,47,2,4,1,-9,-9,2019,1,1,10,1,20,20,15,1,0,1,0,8.8824654,8.8824654,0,0,0,0,0,0,0,7,1,1,0,0,0,15.373492,3,51.310001,48.330002,59.82,46.700001,4,2,3,0,0,6,3,1,1217.25,50174.488,0,0,1752.488 -14538,17841,32466,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,3,8.6090345,8.5619431,0,3,0,0,0,-9,0,-938.62518,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,38,38,15,1,0,-9,0,18.352253,18.352253,0,0,0,0,0,0,0,0,0,0,0,.11687218,0,0,0,47.720001,55.040001,-9,-9,5,2,3,0,0,1,5,1,302,-49819.023,0,0,2730.064 -14539,17842,32467,-9,32468,32469,5,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.69403,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,503.33334,124551.66,0,0,4378.4512 -14539,17842,32468,32469,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,3,8.4571943,8.9100494,0,2,0,-9,4,0,-1,-35.197651,0,0,0,49,2,5,1,2,-9,2019,1,1,16,4,38,1,15,1,1,1,0,13.20048,13.20048,0,0,0,0,0,0,0,0,1,1,0,7.3024797,0,0,0,37.310001,50.349998,54.099998,59.110001,4,1,1,0,0,12,4,1,503.33334,124551.66,0,0,4378.4512 -14539,17842,32469,32468,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,5,8.4649649,8.3775072,0,2,0,-9,4,0,1,-111.44161,0,0,0,48,2,3,1,2,2,2019,1,2,9,0,42,8,15,1,0,1,0,13.344369,13.344369,0,0,0,0,0,0,0,2,1,1,0,1.7237206,0,5.12571,3,54.099998,59.110001,37.310001,50.349998,6,1,1,0,0,12,4,1,503.33334,124551.66,0,0,4378.4512 -14539,17843,32470,-9,32468,32469,3,1,0,20,2,0,2,1,2,0,7,2,0,0,4,7.1381292,7.5269437,6.4329429,3,0,0,0,-9,0,-958.91931,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.080873,0,0,0,36.450001,62.919998,-9,-9,6,1,1,0,0,12,3,1,326,-10897.646,0,0,694.16162 -14539,17844,32471,-9,32468,32469,4,1,1,18,2,0,2,1,2,0,7,2,0,0,5,5.3144336,5.1518373,0,3,0,0,0,-9,0,-1020.7697,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9052491,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,12,4,1,198,31771.59,0,0,-955.79785 -14540,17845,32472,32473,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,6.9920158,7.6855316,7.599988,1,0,-9,40,0,1,6.0732679,0,0,0,62,1,4,3,3,3,2019,2,2,7,0,22,23,15,1,0,4,0,5.947217,5.947217,0,0,0,0,0,0,0,0,0,0,0,.8025794,7.3739395,0,0,58.889999,48.599998,58.150002,52.91,7,1,1,0,0,5,4,1,339.5,2570977,0,0,2819.5532 -14540,17845,32473,32472,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,0,4,0,7.9521575,8.0001707,1,0,-9,40,0,-1,48.907833,0,0,0,63,2,3,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9656858,7.9124441,0,0,58.150002,52.91,58.889999,48.599998,6,1,1,0,0,5,4,1,339.5,2570977,0,0,2819.5532 -14541,17846,32474,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,0,4,0,8.2694407,8.5660667,3,0,0,0,-9,0,-916.28845,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.7684965,8.4035788,0,0,49.970001,56.66,-9,-9,7,1,1,0,0,4,4,1,763,1118327.5,0,0,2098.21 -14542,17847,32475,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,4,3,0,0,3,0,4.3857408,4.4148803,3,0,0,0,-9,0,-905.56152,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,0,0,0,5.7579007,4.4951401,121.97034,3,49.040001,55.860001,-9,-9,5,1,1,0,0,11,2,1,179,259533.2,0,0,-786.19873 -14543,17848,32476,32477,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,0,5,8.8376856,8.8243122,0,1,0,-9,35,0,1,-114.04343,0,0,0,57,2,4,3,2,2,2019,2,2,5,0,35,30,15,1,0,4,0,23.278158,23.278158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,11,4,1,771,532498.38,0,0,2388.9878 -14543,17848,32477,32476,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,0,4,0,6.7065945,6.9386582,1,0,-9,7,0,-1,28.157215,0,0,0,58,2,5,1,2,2,2019,3,1,6,0,0,43,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5543604,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,11,4,1,771,532498.38,0,0,2388.9878 -14544,17849,32478,-9,32479,32480,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-908.13416,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,5,1,305.75,443120.31,0,0,4925.1924 -14544,17849,32479,32480,-9,-9,2,1,0,42,1,1,2,0,1,-9,2,1,0,0,4,8.4273643,8.4842939,7.2125611,2,0,-9,8,0,4,62.977512,0,0,1,38,1,3,1,3,1,2019,1,1,23,8,35,29,15,1,1,1,0,14.779349,14.779349,0,0,0,0,0,0,0,2,1,1,0,6.9646659,0,0,3,18.27,66.019997,36.75,51.880001,3,1,1,0,1,8,5,1,305.75,443120.31,0,0,4925.1924 -14544,17849,32480,32479,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,0,3,8.7014732,8.7460203,0,2,0,-9,8,0,-4,-101.97984,0,0,0,42,1,4,1,2,2,2019,1,2,22,8,48,43,15,1,1,1,0,10.312147,10.312147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.75,51.880001,18.27,66.019997,3,2,3,0,1,8,5,1,305.75,443120.31,0,0,4925.1924 -14544,17849,32481,-9,32479,32480,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1094.499,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,8,5,1,305.75,443120.31,0,0,4925.1924 -14545,17850,32482,-9,-9,-9,1,1,0,26,2,0,1,0,1,-9,2,1,0,0,4,7.8257885,7.846684,0,4,0,0,0,-9,0,-1045.9188,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,37,15,1,0,-9,0,7.371273,7.371273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.619999,-9,-9,4,1,1,0,0,7,3,0,142.5,249791.59,0,0,1763.5023 -14545,17850,32483,-9,32482,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1020.3294,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,7,3,0,142.5,249791.59,0,0,1763.5023 -14546,17851,32484,32485,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,4,0,6.6089063,6.5657134,1,0,-9,64,0,2,53.894833,0,0,0,80,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,5.3905497,.038408097,0,42,1,1,0,0,6.4679756,40.96912,1,48.299999,45.029999,52.950001,32.75,7,1,1,0,0,7,2,1,243.5,478660.06,0,0,2068.4409 -14546,17851,32485,32484,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,64,0,-2,158.18245,0,0,0,82,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,1.2032958,0,0,1,1,0,0,0,0,0,52.950001,32.75,48.299999,45.029999,7,1,1,0,0,7,2,1,243.5,478660.06,0,0,2068.4409 -14547,17852,32486,-9,32488,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1152.7021,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,1471,280685.19,0,0,9979.2754 -14547,17852,32487,-9,32488,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-958.94153,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.651943,0,0,0,51.709999,58.830002,-9,-9,6,1,1,0,0,9,5,1,1471,280685.19,0,0,9979.2754 -14547,17852,32488,-9,-9,-9,1,1,0,45,3,0,3,0,1,-9,2,1,0,0,4,9.5628881,9.8382454,7.7406154,4,0,0,0,-9,0,-1027.6704,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,31,5,15,1,0,-9,0,56.827911,56.827911,0,0,0,0,0,0,0,0,1,1,0,7.8708153,0,0,0,44.02,60.700001,-9,-9,6,1,1,0,0,9,5,1,1471,280685.19,0,0,9979.2754 -14548,17853,32489,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1041.8627,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,26,9,0,38,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.280001,57.869999,-9,-9,3,1,1,1,1,13,1,0,719,0,0,0,149.61963 -14549,17854,32490,32492,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,0,4,8.5431814,8.4347095,0,2,0,-9,19,0,-2,-2.7893307,0,0,0,46,1,5,1,2,2,2019,1,2,7,0,40,42,15,1,0,1,0,17.859276,17.859276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,4,5,1,1709.6666,2516746,0,0,6498.3213 -14549,17854,32491,-9,32492,32490,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.6603,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,5,1,1709.6666,2516746,0,0,6498.3213 -14549,17854,32492,32490,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,0,5,9.4492188,9.3273172,0,2,0,-9,18,0,2,20.260441,0,0,0,44,1,4,1,2,1,2019,1,1,7,0,52,54,15,1,0,1,0,27.403967,27.403967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,57.16,56.150002,6,1,1,0,0,4,5,1,1709.6666,2516746,0,0,6498.3213 -14550,17855,32493,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,0,3,0,7.8387585,8.1355228,3,0,0,0,-9,0,-971.09717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.683869,8.1037264,0,0,59.540001,44.150002,-9,-9,7,1,1,0,0,4,4,1,909,1231830,0,0,2229.6929 -14551,17856,32494,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,4,0,7.5957146,7.5625176,3,0,0,0,-9,0,-1081.5292,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3223028,0,0,57.16,56.150002,-9,-9,2,1,1,0,0,9,3,1,166,469669.16,0,0,2129.1887 -14552,17857,32495,-9,32496,-9,5,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1083.4694,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,9,3,0,508,384031.13,0,0,936.26532 -14552,17857,32496,-9,-9,-9,1,1,0,45,3,0,1,0,3,-9,2,1,0,0,3,7.8837929,7.9574914,0,4,0,0,0,-9,0,-933.3833,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,42,32,15,1,0,-9,0,6.6324987,6.6324987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.630001,40.880001,-9,-9,5,3,4,0,0,9,3,0,508,384031.13,0,0,936.26532 -14552,17858,32497,-9,32496,-9,4,1,0,20,2,0,1,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-965.60571,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,-9,-9,3,3,4,0,0,9,1,0,756,143783.77,0,0,0 -14553,17859,32498,32499,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,3,9.9290209,9.6920052,0,1,0,-9,27,0,-1,52.296181,0,0,0,51,1,3,1,1,2,2019,1,2,8,0,50,45,15,1,0,1,0,40.646507,40.646507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.470001,50.220001,47,49,6,1,1,0,0,13,5,1,444,1377658.6,0,0,7730.0234 -14553,17859,32499,32498,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,3,9.3594246,9.3394175,0,1,0,-9,27,0,1,-.64785951,0,0,0,50,1,3,1,2,1,2019,1,1,8,0,48,48,15,1,0,1,0,24.657249,24.657249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,49,58.470001,50.220001,7,1,1,0,0,13,5,1,444,1377658.6,0,0,7730.0234 -14553,17860,32500,-9,32499,32498,3,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-950.30463,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.740002,63,-9,-9,6,1,1,0,0,13,1,1,966,-56560.375,0,0,0 -14554,17861,32501,32504,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.8418446,8.6876974,0,2,0,-9,13,0,-3,-45.725319,0,0,1,45,2,1,3,1,1,2019,2,1,15,3,47,60,15,1,0,3,0,12.709025,12.709025,0,0,0,0,0,0,0,0,0,0,0,2.5427625,0,0,0,41.150002,55.369999,57.939999,23.469999,6,1,1,0,0,7,4,1,882,34836.855,0,0,2608.4731 -14554,17861,32502,-9,32501,32504,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.0297,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,4,1,882,34836.855,0,0,2608.4731 -14554,17861,32503,-9,32501,32504,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-897.80078,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,7,4,1,882,34836.855,0,0,2608.4731 -14554,17861,32504,32501,-9,-9,1,1,1,45,1,0,2,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,13,0,3,-72.996597,0,0,0,42,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2716727,0,0,0,57.939999,23.469999,41.150002,55.369999,6,1,1,0,0,7,4,1,882,34836.855,0,0,2608.4731 -14555,17862,32505,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,0,2,8.2486744,7.8403239,0,3,0,0,0,-9,0,-975.60376,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,54,53,15,1,0,-9,0,7.1603847,7.1603847,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,40,-9,-9,5,1,1,0,0,4,4,0,134,-54485.449,0,0,1499.2506 -14555,17863,32506,-9,-9,-9,2,1,1,48,2,0,0,0,2,-9,1,1,0,0,3,7.0790882,6.9899688,0,3,0,0,0,-9,0,-996.33582,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,45,15,1,0,-9,0,3.3850303,3.3850303,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.099998,49.389999,-9,-9,3,1,1,0,1,4,2,0,315,-76978.695,0,0,579.8927 -14556,17864,32507,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-923.86261,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,14.333891,0,0,0,0,1,1,0,0,0,0,0,44.259998,17.690001,-9,-9,6,1,1,0,0,8,1,0,967,-76212.859,0,0,1434.4691 -14557,17865,32508,32509,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,2,8.3789434,8.1939955,0,1,0,-9,8,0,0,66.468704,0,0,0,30,1,3,1,-9,-9,2019,1,1,21,9,42,37,15,1,1,1,0,10.197634,10.197634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.68,47.619999,48.290001,47.889999,5,1,1,0,0,5,5,1,623.5,422265.38,0,0,4487.3057 -14557,17865,32509,32508,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,3,8.2461967,8.4549389,0,1,0,-9,8,0,0,50.651485,0,0,1,30,1,2,1,2,2,2019,1,2,12,5,38,38,15,1,1,1,0,13.00375,13.00375,0,0,0,0,0,0,0,2,0,0,0,4.4887662,0,.59617209,3,48.290001,47.889999,29.68,47.619999,6,1,1,0,0,5,5,1,623.5,422265.38,0,0,4487.3057 -14558,17866,32510,32511,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,4,6.6677194,7.7273545,7.282793,1,0,-9,32,0,5,-23.603233,0,0,0,59,1,4,3,3,3,2019,2,2,11,0,10,10,15,1,0,4,0,8.9460526,8.9460526,0,0,0,0,0,0,0,0,0,0,0,3.7457573,6.9424982,0,0,54.77,55.869999,58.720001,51.290001,6,1,1,0,0,9,5,1,1027,167167.02,0,0,3788.842 -14558,17866,32511,32510,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,0,4,0,8.774683,8.9326735,1,0,-9,10,0,-5,-4.2330289,0,0,0,64,2,4,1,-9,-9,2019,3,1,9,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0952601,8.8008299,0,0,58.720001,51.290001,54.77,55.869999,6,1,1,0,0,9,5,1,1027,167167.02,0,0,3788.842 -14558,17867,32512,-9,32510,32511,4,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.0009651,7.9422722,0,3,0,0,0,-9,0,-1154.5956,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,42,44,15,1,0,-9,1,7.1039743,7.1039743,0,0,0,0,0,0,0,0,0,0,0,3.0694652,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,68,60404.707,0,0,443.73633 -14559,17868,32513,32514,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,4,0,7.0860643,6.4664268,1,0,-9,28,0,-7,-78.55883,0,0,0,76,3,4,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3685002,6.5388827,0,0,58.150002,52.91,58.400002,48.939999,7,1,1,0,0,12,3,1,869.5,831485.13,0,0,3251.4683 -14559,17868,32514,32513,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,7.5348678,7.6543255,1,0,-9,28,0,7,-59.523262,0,0,0,69,1,4,3,2,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9188311,7.4714446,0,0,58.400002,48.939999,58.150002,52.91,7,1,1,0,0,12,3,1,869.5,831485.13,0,0,3251.4683 -14560,17869,32515,32516,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,5,8.3621883,8.7207565,0,1,0,-9,33,0,5,27.134958,0,0,0,53,2,3,1,2,2,2019,1,2,11,0,65,60,15,1,0,1,0,9.4029055,9.4029055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.619999,52.91,31.860001,51.639999,1,1,1,0,0,12,4,1,518,734537.94,0,0,2518.4023 -14560,17869,32516,32515,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,0,3,6.3833508,6.4615617,0,1,0,-9,9,0,-5,-91.1894,0,0,0,58,1,5,1,2,2,2019,1,1,13,2,12,20,15,1,0,1,0,4.7278461,4.7278461,0,0,0,0,0,0,0,0,0,0,0,2.5067785,0,0,0,31.860001,51.639999,58.619999,52.91,3,1,1,0,0,12,4,1,518,734537.94,0,0,2518.4023 -14561,17870,32517,32518,-9,-9,1,1,1,49,1,0,3,0,3,-9,2,1,0,0,2,0,0,0,2,0,-9,18,0,14,0,0,0,0,35,2,4,3,3,2,2019,2,2,6,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.650002,35.93,60.119999,54.799999,5,2,3,0,0,7,1,0,457.60001,-62614.988,0,0,1781.9508 -14561,17870,32518,32517,-9,-9,2,1,0,35,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,19,0,-14,0,0,0,1,49,3,2,1,3,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,63.650002,35.93,7,2,3,0,0,7,1,0,457.60001,-62614.988,0,0,1781.9508 -14561,17870,32519,-9,32518,32517,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.4729,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,1,0,457.60001,-62614.988,0,0,1781.9508 -14561,17870,32520,-9,32518,32517,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1120.3121,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,1,0,457.60001,-62614.988,0,0,1781.9508 -14561,17870,32521,-9,32518,32517,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1011.8588,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,1,0,457.60001,-62614.988,0,0,1781.9508 -14562,17871,32522,32523,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,5.2287021,5.1760492,1,0,-9,8,0,1,-24.294954,0,0,0,70,2,4,3,3,3,2019,4,2,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6978726,0,0,39.389999,48.18,57.16,56.150002,5,1,1,0,0,2,2,1,593,535832.38,0,0,1271.5315 -14562,17871,32523,32522,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,6.5750871,6.3618731,1,0,-9,8,0,-1,11.906289,0,0,0,71,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4980171,6.8678508,0,0,57.16,56.150002,39.389999,48.18,6,1,1,0,0,2,2,1,593,535832.38,0,0,1271.5315 -14563,17872,32524,32525,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.0224533,7.9560013,1,0,-9,45,0,3,-1.2870686,0,0,0,67,1,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8611536,7.7516856,0,0,54.200001,57.490002,55.360001,51.57,6,1,1,0,0,7,3,1,2273,1044508,0,0,2632.8977 -14563,17872,32525,32524,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,7.6403861,7.1215529,1,0,-9,45,0,-3,.7388584,0,0,0,70,2,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5941398,7.2671657,0,0,55.360001,51.57,54.200001,57.490002,6,1,1,0,0,7,3,1,2273,1044508,0,0,2632.8977 -14564,17873,32526,32527,-9,-9,5,1,1,42,1,0,1,0,1,-9,2,1,0,0,3,8.5775595,9.0239077,0,2,0,-9,9,0,-7,-37.274349,0,0,0,49,3,4,1,-9,-9,2019,1,1,6,0,50,40,15,1,0,1,0,16.342251,16.342251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.5,51.970001,40.48,60.049999,3,2,3,0,0,9,5,1,473,124621.48,0,0,4875.9497 -14564,17873,32527,32526,-9,-9,1,1,0,49,1,0,1,0,3,-9,2,1,0,0,4,7.8705916,7.8019242,0,2,0,-9,9,0,7,141.76886,0,0,0,42,1,3,1,3,3,2019,1,5,13,1,12,16,15,1,0,1,0,21.475657,21.475657,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.8493118,3,40.48,60.049999,52.5,51.970001,4,2,3,0,0,9,5,1,473,124621.48,0,0,4875.9497 -14564,17873,32528,-9,32527,32526,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.18036,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,9,5,1,473,124621.48,0,0,4875.9497 -14564,17873,32529,-9,32527,32526,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,7.1615829,7.2035031,0,2,0,0,0,-9,0,-937.35681,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,3,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,61.75,-9,-9,5,2,3,0,0,9,5,1,473,124621.48,0,0,4875.9497 -14564,17874,32530,-9,32527,32526,2,1,1,21,2,0,1,0,2,-9,2,1,0,0,3,7.9060564,8.2402039,0,3,0,0,0,-9,0,-990.9801,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,50,41,15,1,0,-9,1,6.449327,6.449327,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.779999,52.41,-9,-9,6,2,3,0,0,9,4,1,534,-87538.617,0,0,2138.5259 -14565,17875,32531,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,4,3,0,0,1,0,7.0072947,6.8815675,3,0,0,0,-9,0,-1022.1622,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.496346,0,0,52.16,17.02,-9,-9,4,1,1,0,1,10,2,0,137,400122,0,0,-718.64795 -14566,17876,32532,-9,-9,-9,1,1,1,93,3,0,0,0,1,-9,4,3,0,1,3,0,7.9326234,8.0367565,3,0,0,0,-9,0,-986.25372,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4684687,8.0085726,0,0,53.290001,45.740002,-9,-9,5,1,1,0,0,10,4,1,877,728622.31,0,0,3976.4802 -14567,17877,32533,32534,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,7.051321,6.8361626,1,0,-9,29,0,0,11.049906,0,0,0,62,1,5,3,3,3,2019,4,2,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1287804,6.8054905,0,0,61.27,46.029999,57.060001,57.759998,6,1,1,0,0,1,3,1,1832.5,1681736.8,0,0,1862.0261 -14567,17877,32534,32533,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,0,5,0,7.4449205,7.514833,1,0,-9,29,0,0,-40.163929,0,0,0,62,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6767945,7.3694096,0,0,57.060001,57.759998,61.27,46.029999,6,1,1,0,0,1,3,1,1832.5,1681736.8,0,0,1862.0261 -14568,17878,32535,-9,32537,32536,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.4987,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,1,1693,-57305.875,0,0,1580.595 -14568,17878,32536,32537,-9,-9,2,1,1,35,1,0,2,0,2,-9,1,1,0,0,3,7.8946891,8.1943073,0,2,0,-9,6,0,-3,-71.360878,0,0,0,38,2,4,1,-9,-9,2019,1,1,12,0,40,42,15,1,0,1,0,11.277586,11.277586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.889999,51.080002,41.709999,48.439999,4,1,1,0,0,9,3,1,1693,-57305.875,0,0,1580.595 -14568,17878,32537,32536,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,4,7.1289439,7.2208633,0,2,0,-9,6,0,3,-14.566259,0,0,1,35,2,3,1,2,2,2019,1,2,12,1,26,14,15,1,0,1,0,6.3970165,6.3970165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.709999,48.439999,47.889999,51.080002,6,1,1,0,0,9,3,1,1693,-57305.875,0,0,1580.595 -14568,17878,32538,-9,32537,32536,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.5107,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,1693,-57305.875,0,0,1580.595 -14569,17879,32539,32540,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,6.6238003,6.7153087,0,1,0,-9,8,0,-5,-71.862869,0,0,0,75,3,3,3,2,2,2019,4,1,10,0,15,16,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.490002,58.84,56.700001,42.759998,5,1,1,0,0,5,2,0,841,371171.94,0,0,1738.6367 -14569,17879,32540,32539,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,5,-44.145569,0,0,0,70,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.700001,42.759998,45.490002,58.84,7,1,1,0,0,5,2,0,841,371171.94,0,0,1738.6367 -14570,17880,32541,32542,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,0,5,7.8279743,7.7653551,0,1,0,-9,1,-9,1,45.186333,-9,1,1,24,1,5,1,-9,-9,2019,1,1,6,0,39,0,15,1,0,1,0,6.0239,6.0239,0,0,0,0,0,0,0,0,0,0,0,4.8481255,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,2,4,1,803,-111379.22,0,0,3103.2212 -14570,17880,32542,32541,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,0,5,8.3310976,8.7237988,0,1,0,1,1,-9,-1,1.2207142,0,1,0,25,2,5,1,-9,-9,2019,1,2,8,0,48,0,15,1,0,1,0,10.098804,10.098804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,2,4,1,803,-111379.22,0,0,3103.2212 -14571,17881,32543,32544,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,0,3,9.6553926,9.645813,0,2,0,-9,7,0,1,77.955513,0,0,0,50,1,4,1,3,3,2019,1,2,17,6,72,56,15,1,1,1,0,28.802542,28.802542,0,0,0,0,0,0,0,0,0,0,0,3.1113143,0,0,0,33.459999,57.869999,46.16,58.619999,4,2,3,0,0,2,5,1,1112.3334,2637007.5,0,0,7138.4468 -14571,17881,32544,32543,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.2917747,8.1964235,0,2,0,-9,7,0,-1,44.154736,0,0,0,51,1,3,1,-9,-9,2019,1,1,12,0,39,30,15,1,0,1,0,14.417974,14.417974,0,0,0,0,0,0,0,0,0,0,0,1.9212096,0,0,0,46.16,58.619999,33.459999,57.869999,4,2,3,0,0,2,5,1,1112.3334,2637007.5,0,0,7138.4468 -14571,17881,32545,-9,32544,32543,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-978.01379,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,2,5,1,1112.3334,2637007.5,0,0,7138.4468 -14571,17882,32546,-9,32544,32543,3,1,1,19,2,0,1,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1026.5574,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4022396,0,0,0,45.080002,49.91,-9,-9,4,2,3,0,0,2,1,1,2087,110183.53,0,0,225.19498 -14572,17883,32547,32549,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,19,0,-11,133.33711,0,0,1,50,3,3,1,3,-9,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.150002,55.389999,57.330002,53.459999,4,2,3,0,0,8,2,0,1262.2,104342.52,0,0,2384.8745 -14572,17883,32548,-9,32547,32549,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.20892,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,2,0,1262.2,104342.52,0,0,2384.8745 -14572,17883,32549,32547,-9,-9,2,1,1,50,1,0,3,0,3,-9,1,1,0,0,3,6.7589407,6.7872586,0,2,0,-9,18,0,11,147.68556,0,0,0,39,2,3,3,3,2,2019,2,1,6,0,30,30,15,1,0,3,0,3.9022746,3.9022746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,38.150002,55.389999,6,2,3,0,0,8,2,0,1262.2,104342.52,0,0,2384.8745 -14572,17883,32550,-9,32547,32549,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.5385,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.047027461,0,0,0,53.860001,57.860001,-9,-9,6,2,3,0,0,8,2,0,1262.2,104342.52,0,0,2384.8745 -14572,17883,32551,-9,32547,32549,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1117.5004,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,8,2,0,1262.2,104342.52,0,0,2384.8745 -14573,17884,32552,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,-9,0,1,0,-1042.7784,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,1.0687517,13.266264,0,0,0,1,1,0,0,0,0,0,34.799999,23.67,-9,-9,3,1,1,0,0,12,1,1,413,75795.125,0,0,-404.02823 -14574,17885,32553,-9,32554,-9,3,1,1,17,2,1,1,1,2,0,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-901.15247,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,1,2,1,407.5,299546.09,0,0,1227.0381 -14574,17885,32554,-9,-9,-9,1,1,0,44,2,1,1,0,3,-9,2,1,0,0,5,7.5668592,7.117034,3.3585081,4,0,0,0,-9,0,-1046.6205,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,40,15,1,0,-9,0,3.1275315,3.1275315,0,0,0,0,0,0,0,0,1,1,0,3.694422,0,0,0,54.689999,57.470001,-9,-9,5,1,1,0,0,1,2,1,407.5,299546.09,0,0,1227.0381 -14574,17886,32555,-9,32554,-9,2,1,1,23,2,1,1,0,3,-9,2,1,0,0,4,7.6174293,7.6680765,0,3,0,0,0,-9,0,-965.07495,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.2726746,6.2726746,0,0,0,0,0,0,0,0,1,1,0,2.7125094,0,0,0,49,58,-9,-9,5,1,1,0,0,1,3,1,690,192472.2,0,0,151.67522 -14575,17887,32556,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,4,3,0,0,2,0,7.5288029,7.1004105,3,0,0,0,-9,0,-894.35156,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.105958,7.6428895,0,0,45.759998,29.299999,-9,-9,4,1,1,0,0,7,3,1,464,786900.56,0,0,147.49663 -14576,17888,32557,-9,32560,-9,5,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-989.4054,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,1,0,889,23457.934,0,0,2237.554 -14576,17888,32558,-9,32560,-9,4,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1095.8251,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,2,1,0,889,23457.934,0,0,2237.554 -14576,17888,32559,-9,32560,-9,2,1,0,16,2,0,4,1,3,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1032.7997,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.049999,22.719999,-9,-9,2,1,1,0,0,2,1,0,889,23457.934,0,0,2237.554 -14576,17888,32560,-9,-9,-9,1,1,0,34,3,0,4,0,3,-9,7,2,0,1,3,0,0,0,4,0,-9,0,1,0,-1052.1414,1,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.398239,3,27.889999,50.700001,-9,-9,2,1,1,0,1,2,1,0,889,23457.934,0,0,2237.554 -14576,17888,32561,-9,32560,-9,3,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-999.11963,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,1,0,889,23457.934,0,0,2237.554 -14577,17889,32562,32566,-9,-9,1,1,1,43,1,0,4,0,3,-9,2,1,0,0,4,5.5970831,5.9191871,0,2,0,-9,6,0,9,11.840058,0,0,0,34,2,4,3,3,3,2019,2,2,9,1,48,60,15,1,0,3,0,.63826293,.63826293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,54.200001,57.490002,6,1,1,0,0,13,1,0,797.20001,17324.959,0,0,3315.1558 -14577,17889,32563,-9,32566,32562,3,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.67914,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,1,0,797.20001,17324.959,0,0,3315.1558 -14577,17889,32564,-9,32566,32562,5,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-863.46002,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,1,0,797.20001,17324.959,0,0,3315.1558 -14577,17889,32565,-9,32566,32562,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.56171,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,1,0,797.20001,17324.959,0,0,3315.1558 -14577,17889,32566,32562,-9,-9,2,1,0,34,1,0,4,0,2,-9,3,3,0,1,4,0,0,0,2,0,-9,6,0,0,42.785446,0,0,1,43,3,4,1,2,3,2019,3,1,10,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,63.896641,3,54.200001,57.490002,52,56,6,1,1,1,0,13,1,0,797.20001,17324.959,0,0,3315.1558 -14578,17890,32567,32571,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,0,2,1.0409141,1.1866515,0,2,0,-9,25,0,1,-51.760433,0,0,1,43,1,3,1,1,2,2019,1,1,5,0,20,0,15,1,0,1,0,.011165337,.011165337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,35.650002,52.119999,50.330002,6,1,1,0,0,2,5,1,1120.6,496061.91,0,0,4946.4854 -14578,17890,32568,-9,32567,32571,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1072.5367,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,2,5,1,1120.6,496061.91,0,0,4946.4854 -14578,17890,32569,-9,32567,32571,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-897.1712,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,24,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.259998,60.700001,-9,-9,3,1,1,0,0,2,5,1,1120.6,496061.91,0,0,4946.4854 -14578,17890,32570,-9,32567,32571,5,1,0,11,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-982.63892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,2,5,1,1120.6,496061.91,0,0,4946.4854 -14578,17890,32571,32567,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,0,3,9.7675562,10.037931,0,2,0,-9,25,0,-1,-27.982391,0,0,0,44,1,2,1,2,1,2019,1,2,7,1,42,69,15,1,0,1,0,45.626728,45.626728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.119999,50.330002,61.279999,35.650002,6,1,1,0,0,2,5,1,1120.6,496061.91,0,0,4946.4854 -14579,17891,32572,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,2,8.7655659,8.7012796,0,3,0,0,0,-9,0,-915.49677,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,37,35,15,1,0,-9,0,22.495163,22.495163,0,0,0,0,0,0,0,0,0,0,0,1.7120057,0,0,0,42.23,49.990002,-9,-9,4,2,3,0,0,7,5,1,160,172756.92,0,0,2654.259 -14580,17892,32573,-9,32576,32575,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.13055,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,4,1,872.59998,1228699.3,0,0,4159.6377 -14580,17892,32574,-9,32576,32575,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.05994,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,872.59998,1228699.3,0,0,4159.6377 -14580,17892,32575,32576,-9,-9,1,1,1,47,1,0,3,0,2,-9,2,1,0,0,4,9.3389587,8.8134699,0,2,0,-9,17,0,7,116.69404,0,0,0,40,1,4,1,2,3,2019,1,2,22,11,54,0,15,1,1,1,0,18.219032,18.219032,0,0,0,0,0,0,0,0,1,1,0,4.9163895,0,0,0,40.709999,62.41,57.16,56.150002,3,1,1,0,1,9,4,1,872.59998,1228699.3,0,0,4159.6377 -14580,17892,32576,32575,-9,-9,2,1,0,40,1,0,3,0,1,-9,1,1,0,0,4,6.288723,6.2169847,0,2,0,-9,17,0,-7,145.74821,0,0,1,47,2,4,1,2,2,2019,1,1,10,0,9,7,15,1,0,1,0,6.36831,6.36831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,40.709999,62.41,6,1,1,0,0,9,4,1,872.59998,1228699.3,0,0,4159.6377 -14580,17892,32577,-9,32576,32575,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1089.4871,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,4,1,872.59998,1228699.3,0,0,4159.6377 -14581,17893,32578,32579,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,5.9154844,6.1963682,1,0,-9,32,0,-2,236.70209,0,0,0,76,1,4,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1120105,0,0,57.16,56.150002,62.490002,55.09,7,1,1,0,0,12,3,1,1133.5,777734.94,0,0,2847.9937 -14581,17893,32579,32578,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,4,0,7.5998378,7.4857659,1,0,-9,32,0,2,-4.1281967,0,0,0,74,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,1.0899996,0,0,0,0,0,1,1,0,3.4090514,7.5376768,0,0,62.490002,55.09,57.16,56.150002,7,1,1,0,0,12,3,1,1133.5,777734.94,0,0,2847.9937 -14582,17894,32580,32581,-9,-9,1,1,1,57,1,0,0,0,3,-9,4,3,0,1,3,0,5.3554497,5.623868,1,0,-9,33,0,7,-62.381687,0,0,0,50,2,3,1,3,3,2019,3,2,10,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.8773851,6.4057522,3,51,49,41.860001,41.349998,5,2,3,0,0,6,3,1,725.5,350838.84,0,0,3314.801 -14582,17894,32581,32580,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.1577349,8.3116951,0,1,0,-9,7,0,-7,38.79689,0,0,0,57,3,3,3,3,3,2019,2,1,11,1,32,37,15,1,0,4,0,9.5012045,9.5012045,0,0,0,0,0,0,0,27.5,1,1,0,6.8307271,0,21.964323,2,41.860001,41.349998,51,49,4,2,3,0,0,6,3,1,725.5,350838.84,0,0,3314.801 -14582,17895,32582,-9,32581,32580,3,1,0,31,2,0,0,0,2,-9,2,1,0,0,3,8.2954121,7.8192797,0,3,0,0,0,-9,0,-1075.2252,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,47,15,1,0,-9,1,8.8266068,8.8266068,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.93,39.209999,-9,-9,4,2,3,0,0,6,4,1,492,47031.625,0,0,401.84811 -14582,17896,32583,-9,32581,32580,4,1,0,30,2,0,0,0,1,-9,2,1,0,0,5,7.7813354,7.8114791,0,3,0,0,0,-9,0,-965.7121,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,1,0,0,42,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.92675,3,54.099998,59.110001,-9,-9,6,2,3,0,0,6,3,1,880,198819.48,0,0,648.09113 -14582,17897,32584,-9,32581,32580,5,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,7.9301844,8.2411776,0,3,0,0,0,-9,0,-946.80359,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,37,15,1,0,-9,1,9.4211493,9.4211493,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.93,52.619999,-9,-9,5,2,3,0,0,6,4,1,680,-170656.41,0,0,1215.6578 -14582,17898,32585,-9,32581,32580,6,1,1,21,2,0,0,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1010.0921,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.91,47.900002,-9,-9,4,2,3,0,0,6,1,1,69,-56347,0,0,-221.57661 -14583,17899,32586,-9,32589,32587,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1172.525,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,594.25,818871.75,0,0,6653.0391 -14583,17899,32587,32589,-9,-9,2,1,1,56,1,0,2,0,1,-9,2,1,0,0,4,9.4300547,9.3563566,0,2,0,-9,15,0,6,40.914787,0,0,0,50,1,4,1,3,3,2019,1,1,11,0,60,75,15,1,0,1,0,15.927229,15.927229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,9,5,1,594.25,818871.75,0,0,6653.0391 -14583,17899,32588,-9,32589,32587,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-941.2558,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,9,5,1,594.25,818871.75,0,0,6653.0391 -14583,17899,32589,32587,-9,-9,1,1,0,50,1,0,2,0,1,-9,1,1,0,0,4,7.2272563,7.0525312,0,2,0,-9,15,0,-6,16.528929,0,0,0,56,1,4,1,2,2,2019,1,2,10,0,20,0,15,1,0,1,0,5.7825179,5.7825179,0,0,0,0,0,0,0,0,1,1,0,8.3992701,0,0,0,57.16,56.150002,54.200001,57.490002,3,1,1,0,0,9,5,1,594.25,818871.75,0,0,6653.0391 -14584,17900,32590,32591,-9,-9,2,1,0,58,1,0,0,0,3,-9,6,3,0,0,4,0,0,0,1,0,-9,10,0,-7,-91.226204,0,0,0,65,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47003672,0,0,0,52.34,56.950001,54.490002,47.790001,6,1,1,0,0,7,4,1,751,2304487,0,0,3615.3813 -14584,17900,32591,32590,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,0,3,8.7442932,8.625001,6.5962205,1,0,-9,10,0,7,128.71962,0,0,0,58,3,4,3,3,2,2019,2,2,13,1,40,50,15,1,0,3,0,15.869833,15.869833,1,0,0,0,0,0,0,0,1,1,0,0,6.7705226,0,0,54.490002,47.790001,52.34,56.950001,6,1,1,0,0,7,4,1,751,2304487,0,0,3615.3813 -14585,17901,32592,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,0,2,8.1993637,8.5006866,0,3,0,0,0,-9,0,-878.95776,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,43,15,1,0,-9,0,9.937521,9.937521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.66,29.67,-9,-9,5,1,1,0,0,5,4,1,1180,-91117.734,0,0,671.47009 -14586,17902,32593,32594,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,8.6615276,9.2544069,0,2,0,-9,9,0,-2,15.244536,0,0,0,48,2,4,1,2,2,2019,1,1,6,0,42,43,15,1,0,1,0,19.881639,19.881639,0,0,0,0,0,0,0,0,1,1,0,7.5670557,0,0,0,57.16,56.150002,51.240002,58.84,6,1,1,0,0,11,5,1,474.5,395819.09,0,0,5554.9819 -14586,17902,32594,32593,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,8.7413273,8.6700859,0,2,0,-9,9,0,2,25.443481,0,0,0,46,2,4,1,3,2,2019,1,2,11,0,48,55,15,1,0,1,0,20.031549,20.031549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,57.16,56.150002,6,1,1,0,0,11,5,1,474.5,395819.09,0,0,5554.9819 -14587,17903,32595,32598,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,5,8.8300467,8.7241058,0,2,0,-9,22,0,4,-13.246164,0,0,0,46,1,3,1,-9,-9,2019,1,1,10,2,39,39,15,1,0,1,0,22.415504,22.415504,0,0,0,0,0,0,0,0,1,1,0,7.2881541,0,0,0,51.73,58.82,43.310001,58.639999,6,1,1,0,0,11,5,1,857.75,1272495.8,0,0,4915.6416 -14587,17903,32596,-9,32598,32595,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.8934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,11,5,1,857.75,1272495.8,0,0,4915.6416 -14587,17903,32597,-9,32598,32595,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1045.7719,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,11,5,1,857.75,1272495.8,0,0,4915.6416 -14587,17903,32598,32595,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,1,3,8.0619974,8.0265789,0,2,0,-9,13,0,-4,84.873405,0,0,0,50,1,5,1,2,3,2019,1,2,7,1,23,27,15,1,0,1,0,15.967939,15.967939,0,0,0,0,0,0,0,103,1,1,0,0,0,121.45963,3,43.310001,58.639999,51.73,58.82,6,2,3,0,0,11,5,1,857.75,1272495.8,0,0,4915.6416 -14588,17904,32599,32600,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,6.8360853,7.0342979,1,0,-9,28,0,0,-30.161911,0,0,0,69,1,4,3,1,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4458742,6.8927584,0,0,54.200001,57.490002,57.91,48.98,2,1,1,0,0,2,3,1,666,2590468.3,0,0,4134.3228 -14588,17904,32600,32599,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.0872469,8.0525541,1,0,-9,28,0,0,-9.3584881,0,0,0,69,2,4,3,2,1,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1991229,8.1633539,0,0,57.91,48.98,54.200001,57.490002,6,1,1,0,0,2,3,1,666,2590468.3,0,0,4134.3228 -14589,17905,32601,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,0,5,8.6888638,9.268115,0,3,0,0,0,-9,0,-1039.814,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,37,40,15,1,0,-9,0,27.862587,27.862587,0,0,0,0,0,0,0,0,0,0,0,8.0889015,0,0,0,57.060001,57.759998,-9,-9,2,1,1,0,0,8,5,1,439,340872.53,0,0,3221.0852 -14590,17906,32602,-9,-9,-9,3,1,1,18,2,0,0,0,3,1,2,1,0,0,4,8.0841436,7.4204507,0,3,0,0,0,-9,0,-1007.9636,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,3,0,40,0,15,1,0,-9,1,6.3678255,6.3678255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.759998,54.509998,-9,-9,7,1,1,0,0,2,3,1,1958,64019.309,0,0,1026.6237 -14591,17907,32603,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,2,1,0,0,2,7.1991982,6.8681931,0,3,0,0,0,-9,0,-1003.074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,20,0,15,1,0,-9,0,6.6184587,6.6184587,0,0,0,0,0,0,0,2,1,1,0,0,0,.60452181,3,42.849998,45.549999,-9,-9,6,1,1,0,0,11,2,1,145,246613.17,0,0,722.02649 -14592,17908,32604,32605,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,0,2,6.3611255,7.8530545,7.4264674,1,0,-9,6,0,0,-3.6920803,0,0,0,72,2,5,3,3,2,2019,4,1,15,3,0,35,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9039199,7.6838493,0,0,57.73,30.59,58.200001,54.529999,4,1,1,0,0,7,3,1,840.5,979979.06,0,0,3528.0417 -14592,17908,32605,32604,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,7.6369138,7.1588173,1,0,-9,6,0,0,68.653244,0,0,0,72,1,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9429169,7.536902,0,0,58.200001,54.529999,57.73,30.59,7,1,1,0,0,7,3,1,840.5,979979.06,0,0,3528.0417 -14593,17909,32606,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,1,2,0,5.5478826,5.7202468,3,0,0,0,-9,0,-1099.7974,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7012868,0,0,61.580002,17.549999,-9,-9,6,1,1,0,0,2,2,0,373,-93605.531,0,0,3139.7734 -14594,17910,32607,-9,-9,-9,1,1,1,56,2,0,1,0,3,-9,2,1,0,0,4,7.9229774,8.152298,0,4,0,0,0,-9,0,-1000.1552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,38,40,15,1,0,-9,0,10.255627,10.255627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,2,1,1,0,0,4,3,1,723.5,-35597.242,0,0,2007.7397 -14594,17910,32608,-9,-9,32607,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,3.7837505,4.1996942,4,0,0,0,-9,0,-1016.1025,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3942256,0,0,0,42.970001,54.59,-9,-9,5,1,1,0,0,4,3,1,723.5,-35597.242,0,0,2007.7397 -14595,17911,32609,32610,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,2,7.5402865,7.8084202,0,1,0,-9,7,0,5,90.696136,0,0,0,54,3,2,1,-9,-9,2019,1,1,11,1,25,25,15,1,0,1,0,8.4443932,8.4443932,0,0,0,0,0,0,0,2,1,1,0,1.7200459,0,4.3612752,3,63.09,32.02,63.41,29.17,6,1,1,0,0,10,4,1,568,498574.44,0,0,2178.0491 -14595,17911,32610,32609,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,2,8.2445173,7.9662166,0,1,0,-9,7,0,-5,-28.292931,0,0,0,59,2,2,1,2,2,2019,1,2,8,0,40,42,15,1,0,1,0,11.458389,11.458389,0,0,0,0,0,0,0,0,1,1,0,5.9944468,0,0,0,63.41,29.17,63.09,32.02,4,1,1,0,0,10,4,1,568,498574.44,0,0,2178.0491 -14596,17912,32611,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,3,7.9646769,8.1004267,0,1,0,-9,8,0,-10,-111.63636,0,0,1,-9,-9,-9,-9,-9,2,2019,1,2,12,0,37,37,15,1,0,-9,0,8.1549988,8.1549988,0,0,0,0,0,0,0,0,0,0,0,2.4122257,0,0,0,46.48,50.400002,57.060001,57.759998,6,1,1,0,0,5,4,1,487,20434.658,0,0,30.787563 -14596,17913,32612,-9,-9,-9,2,1,0,40,2,0,0,0,1,-9,2,1,0,0,5,8.4170008,7.9273348,0,1,0,-9,8,0,10,-20.384821,0,0,1,-9,-9,-9,-9,3,2,2019,1,1,9,0,41,42,15,1,0,-9,0,11.123224,11.123224,0,0,0,0,0,0,0,7,0,0,0,3.1908417,0,3.8478127,3,57.060001,57.759998,46.48,50.400002,7,1,1,0,0,5,4,1,559,30697.865,0,0,1886.8633 -14597,17914,32613,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.8533278,8.6566448,0,3,0,0,0,-9,0,-970.39398,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,93,50,15,1,0,-9,0,7.9349642,7.9349642,0,0,0,0,0,0,0,0,0,0,0,4.7670374,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,8,5,0,107,-106288.02,0,0,3329.0833 -14598,17915,32614,32615,-9,-9,2,1,0,70,1,0,0,0,2,-9,1,1,0,0,3,6.904953,7.3490405,0,1,0,-9,41,0,0,-49.585842,0,0,0,79,1,3,1,2,1,2019,1,1,9,0,20,25,15,1,0,1,0,7.0549078,7.0549078,0,0,0,0,0,0,0,2,1,1,0,6.1328015,0,5.9070005,3,55.27,44.810001,59.220001,37.52,6,1,1,0,0,8,4,1,542,1948686.5,0,0,4622.4971 -14598,17915,32615,32614,-9,-9,1,1,1,79,1,0,0,0,1,-9,1,1,0,0,3,6.8296795,8.5321703,8.1348667,1,0,-9,41,0,9,184.49309,0,0,0,70,2,3,1,1,1,2019,1,2,12,0,12,15,15,1,0,1,0,11.1742,11.1742,0,0,0,0,0,0,0,0,1,1,0,4.8857188,8.3307829,0,0,59.220001,37.52,55.27,44.810001,5,1,1,0,0,8,4,1,542,1948686.5,0,0,4622.4971 -14599,17916,32616,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,8,3,1,1,1,0,5.987443,6.2564201,3,0,0,0,-9,0,-955.2533,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,1,-9,0,0,0,1,8.1228151,0,0,0,3.5218701,72.345543,0,1,1,0,0,6.2782421,0,0,21.43,21.57,-9,-9,1,1,1,0,1,4,2,0,606,125088.02,0,0,756.89404 -14600,17917,32617,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,0,3,8.1052427,7.9226141,0,3,0,0,0,-9,0,-957.85797,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,48,15,1,0,-9,0,8.6553955,8.6553955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,6,4,0,1073,79178.148,0,0,470.14374 -14601,17918,32618,32619,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.0272927,7.0961432,1,0,-9,51,0,1,91.288422,0,0,0,70,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7844892,7.0725808,0,0,51.810001,49.349998,45.650002,34.599998,7,1,1,0,0,10,2,1,215,372967.06,0,0,1717.3318 -14601,17918,32619,32618,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,51,0,-1,39.094051,0,0,0,71,2,3,3,2,1,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,.15166651,0,9.8740301,3,45.650002,34.599998,51.810001,49.349998,4,1,1,0,0,10,2,1,215,372967.06,0,0,1717.3318 -14602,17919,32620,-9,-9,-9,1,1,0,54,3,0,1,0,2,-9,2,1,0,0,3,8.4501038,8.7658415,5.8675499,4,0,0,0,-9,0,-936.2207,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,37,37,15,1,1,-9,0,15.043631,15.043631,0,0,0,0,0,0,0,0,1,1,0,6.5232224,0,0,0,30.32,49.630001,-9,-9,3,1,1,0,0,9,4,1,236,667039.56,0,0,2234.5935 -14602,17919,32621,-9,32620,-9,2,1,0,17,2,0,1,0,2,1,97,3,0,0,2,0,4.8514657,4.6949105,4,0,0,0,-9,0,-1039.7101,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9785905,0,0,0,37,44,-9,-9,3,1,1,0,0,9,4,1,236,667039.56,0,0,2234.5935 -14603,17920,32622,32623,-9,-9,1,1,1,71,1,0,0,0,1,-9,1,1,0,0,5,6.5620418,8.7617226,8.7020702,1,0,-9,47,0,-2,67.733185,0,0,0,73,2,3,3,2,1,2019,2,2,6,0,4,0,15,1,0,4,0,23.09116,23.09116,0,0,0,0,0,0,0,0,1,1,0,5.6076155,8.359952,0,0,62.389999,56.709999,56.700001,42.759998,6,1,1,0,0,9,4,1,295,1302282.8,0,0,5502.0342 -14603,17920,32623,32622,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,4.481163,4.811028,1,0,-9,9,0,2,-20.368986,0,0,0,71,1,5,1,3,3,2019,3,1,11,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3843279,4.4706855,0,0,56.700001,42.759998,62.389999,56.709999,6,1,1,0,0,9,4,1,295,1302282.8,0,0,5502.0342 -14604,17921,32624,-9,32625,-9,2,1,1,16,2,0,0,0,3,-9,8,2,1,1,4,6.8701739,6.744698,0,3,0,0,0,-9,0,-935.95947,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3276918,0,0,0,47,60,-9,-9,5,1,1,0,0,9,1,0,469.66666,202579.31,0,0,2555.8069 -14604,17921,32625,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1018.7701,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.040001,36.860001,-9,-9,2,1,1,0,0,9,1,0,469.66666,202579.31,0,0,2555.8069 -14604,17921,32626,-9,32625,-9,3,1,0,7,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-965.89783,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,9,1,0,469.66666,202579.31,0,0,2555.8069 -14605,17922,32627,32628,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,31,0,-2,-19.100912,0,0,0,64,3,3,3,3,2,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,14.160456,3,40.360001,55.57,49.279999,50.189999,5,1,1,0,0,11,2,1,903.5,725633,0,0,1374.2968 -14605,17922,32628,32627,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,7.0719748,7.4998503,1,0,-9,2,0,2,37.679493,0,0,0,62,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.5774817,17.739113,3,49.279999,50.189999,40.360001,55.57,6,1,1,0,0,11,2,1,903.5,725633,0,0,1374.2968 -14606,17923,32629,-9,-9,-9,1,1,1,88,2,0,0,0,1,-9,4,3,0,0,1,0,6.0080066,6.5976276,3,0,0,0,-9,0,-963.31207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,12,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.939302,0,0,31.75,19.700001,-9,-9,5,3,4,0,1,6,2,0,1498,0,0,0,1713.1375 -14607,17924,32630,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,1,1,0,0,3,7.5154467,7.7124653,4.100893,3,0,0,0,-9,0,-963.27649,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,16,15,15,1,0,-9,0,14.519122,14.519122,0,0,0,0,0,0,0,2,1,1,0,5.5385184,4.4262605,9.7686663,3,62.84,41.32,-9,-9,6,1,1,0,0,7,3,1,222,44127.328,0,0,2101.0085 -14608,17925,32631,32632,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,25,-9,-3,-20.416466,-9,0,0,56,2,3,1,2,3,2019,3,2,35,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,33.016693,3,19.76,38.48,54.540001,38.41,2,1,1,0,0,11,3,1,988,892276,0,0,1718.1389 -14608,17925,32632,32631,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.1629601,8.4964447,0,1,0,-9,25,-9,3,-114.8726,-9,0,0,53,2,2,3,-9,-9,2019,2,1,12,0,44,0,15,1,0,3,0,13.039736,13.039736,0,0,0,0,0,0,0,2,0,0,0,1.541057,0,0,3,54.540001,38.41,19.76,38.48,5,1,1,0,0,11,3,1,988,892276,0,0,1718.1389 -14608,17926,32633,-9,32631,32632,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,7.7932315,7.9212251,0,3,0,-9,0,-9,0,-1003.9957,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,38,0,15,1,0,-9,1,7.8286591,7.8286591,0,0,0,0,0,0,0,0,0,0,0,.54972184,0,0,0,49.439999,54.259998,-9,-9,5,1,1,0,0,11,3,1,441,178712.75,0,0,-68.368889 -14609,17927,32634,32635,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.5215578,8.5054426,0,1,0,-9,7,0,-6,-26.918493,0,0,0,56,2,4,1,3,3,2019,1,1,10,0,38,38,15,1,0,1,0,14.06176,14.06176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.110001,45.630001,57.16,56.150002,6,1,1,0,0,13,5,1,662.5,559035.5,0,0,3846.9998 -14609,17927,32635,32634,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.2264214,7.8369288,0,1,0,-9,7,0,6,.056429591,0,0,0,50,1,4,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,10.131458,10.131458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,62.110001,45.630001,6,1,1,0,0,13,5,1,662.5,559035.5,0,0,3846.9998 -14609,17928,32636,-9,32634,32635,3,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.4313874,7.3861446,0,3,0,0,0,-9,0,-1031.308,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,42,43,15,1,0,-9,1,5.4373899,5.4373899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.959999,61.139999,-9,-9,6,1,1,0,0,13,3,1,195,-38881.727,0,0,771.98041 -14610,17929,32637,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,5,7.777029,8.1545849,0,3,0,0,0,-9,0,-1035.1038,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,39,15,1,0,-9,0,7.7352777,7.7352777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,1,4,0,188,0,0,0,2067.8521 -14610,17930,32638,-9,-9,32637,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-1141.952,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,18,4,0,44,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.580002,-9,-9,6,1,1,0,0,1,1,0,378,-34592.801,0,0,0 -14611,17931,32639,32640,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,6.9346609,7.1450396,5.8346148,1,0,-9,10,0,-3,-51.095745,0,0,0,70,3,2,3,-9,3,2019,2,1,11,0,16,16,15,1,0,4,0,8.9340611,8.9340611,1,0,0,0,0,0,0,0,1,1,0,5.9260831,5.6088271,0,0,58.32,50.220001,40.669998,32.919998,6,1,1,0,0,4,2,1,303.5,381715.44,0,0,1983.791 -14611,17931,32640,32639,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,4.8606386,4.999299,1,0,-9,46,0,3,-32.331799,0,0,0,67,2,3,1,2,2,2019,3,2,10,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1720593,4.7203484,0,0,40.669998,32.919998,58.32,50.220001,6,1,1,0,0,4,2,1,303.5,381715.44,0,0,1983.791 -14612,17932,32641,32642,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,5,8.5423498,8.6105576,0,1,0,-9,37,0,-1,-74.789429,0,0,0,55,3,3,1,3,1,2019,1,2,16,4,47,57,15,1,1,1,0,11.062298,11.062298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.940001,65.379997,59.290001,37.599998,5,4,2,0,0,7,5,1,810,597874.44,0,0,3993.3718 -14612,17932,32642,32641,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,0,3,8.3191671,8.1690149,0,1,0,-9,37,0,1,-54.823524,0,0,0,54,2,5,1,2,2,2019,1,1,11,2,40,37,15,1,0,1,0,10.611375,10.611375,0,0,0,0,0,0,0,0,0,0,0,5.1127348,0,0,0,59.290001,37.599998,25.940001,65.379997,6,1,1,0,0,7,5,1,810,597874.44,0,0,3993.3718 -14613,17933,32643,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,0,1,0,7.8704658,7.3422084,3,0,0,0,-9,0,-1044.0314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,4.9003711,0,0,0,0,35.027164,0,1,1,0,3.7653763,7.1940002,0,0,38.48,22.15,-9,-9,3,1,1,0,0,6,3,1,375,383440.16,0,0,393.22351 -14614,17934,32644,32645,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.7635889,7.5745211,1,0,-9,32,0,-4,-41.211742,0,0,0,67,1,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6199324,7.8037858,0,0,57.91,46.310001,56.07,49.950001,6,1,1,0,0,7,4,1,2300.5,952308.06,0,0,2916.5464 -14614,17934,32645,32644,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,8.047946,8.2952061,1,0,-9,33,0,4,117.16878,0,0,0,63,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.0664568,0,0,56.07,49.950001,57.91,46.310001,6,2,3,0,0,7,4,1,2300.5,952308.06,0,0,2916.5464 -14614,17935,32646,-9,32644,32645,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,8.0553322,8.2800064,0,3,0,0,0,-9,0,-963.88129,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,41,40,15,1,0,-9,1,13.164342,13.164342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.75,56.389999,-9,-9,6,4,2,0,0,7,4,1,1500,58872.625,0,0,2173.9756 -14614,17936,32647,-9,32644,32645,4,1,1,22,2,0,0,0,1,-9,2,1,0,0,4,7.8104987,7.6174989,0,3,0,0,0,-9,0,-1004.9304,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,0,0,42,0,15,1,0,-9,1,6.1312299,6.1312299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.77,55.939999,-9,-9,7,4,2,0,0,7,3,1,2068,-84098.227,0,0,107.0034 -14615,17937,32648,32649,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.0158043,6.6550822,1,0,-9,48,0,0,79.726387,0,0,0,69,3,3,3,3,-9,2019,4,2,7,0,0,3,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6840372,6.9429669,0,0,54.200001,57.490002,48.279999,53.419998,7,1,1,0,0,2,2,1,539,537142.81,0,0,3342.4524 -14615,17937,32649,32648,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.8286552,6.7635555,1,0,-9,48,0,0,51.196487,0,0,0,69,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3385878,6.910655,0,0,48.279999,53.419998,54.200001,57.490002,6,1,1,0,0,2,2,1,539,537142.81,0,0,3342.4524 -14616,17938,32650,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,3,0,7.7017188,8.0270786,3,0,0,0,-9,0,-1175.7555,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6205359,7.6855159,0,0,56.580002,36.02,-9,-9,5,1,1,0,0,7,3,1,708,652395.56,0,0,3043.8962 -14617,17939,32651,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,0,2,0,6.2152658,6.543766,3,0,0,0,-9,0,-946.55634,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4418645,3.7550759,3,60.119999,38.900002,-9,-9,6,1,1,0,0,7,2,0,887,159711.61,0,0,2004.9526 -14618,17940,32652,32653,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,7.6378593,7.6411638,0,1,0,-9,9,0,-4,74.484344,0,0,0,66,3,2,3,3,2,2019,2,2,8,0,25,25,15,1,0,4,0,9.2849741,9.2849741,0,0,0,0,0,0,0,0,1,1,0,.90919346,0,0,0,60.98,30.25,52.259998,31.65,6,1,1,0,0,12,3,1,634,646957.69,0,0,1388.9209 -14618,17940,32653,32652,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,5.0010605,4.7324495,1,0,-9,9,0,4,-15.119611,0,0,0,62,2,2,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,1,0,27.032763,17.727486,0,0,0,0,1,1,0,4.019475,4.9243979,0,0,52.259998,31.65,60.98,30.25,1,1,1,0,0,12,3,1,634,646957.69,0,0,1388.9209 -14619,17941,32654,32656,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.1530323,7.7955031,0,2,0,-9,12,0,5,-66.466927,0,0,0,42,2,3,1,-9,3,2019,1,1,13,1,39,39,15,1,0,1,0,8.3766813,8.3766813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.419998,50.810001,39.16,45.169998,6,1,1,0,0,12,3,0,405.33334,164477.34,0,0,2082.8882 -14619,17941,32655,-9,32656,32654,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1135.2604,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,12,3,0,405.33334,164477.34,0,0,2082.8882 -14619,17941,32656,32654,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.8389249,8.1164827,0,2,0,-9,12,0,-5,-13.15004,0,0,1,47,2,3,1,3,2,2019,1,2,13,1,42,39,15,1,0,1,0,8.6654263,8.6654263,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.4339437,3,39.16,45.169998,48.419998,50.810001,5,1,1,0,0,12,3,0,405.33334,164477.34,0,0,2082.8882 -14619,17942,32657,-9,32656,32654,3,1,1,18,2,0,2,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-984.89484,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.279999,52.09,-9,-9,5,1,1,0,1,12,3,0,1115,-2984.0098,0,0,0 -14620,17943,32658,32659,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,6.803617,6.9123025,1,0,-9,43,0,-4,55.69241,0,0,0,66,1,3,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5483799,0,0,47.939999,53.790001,51.490002,53.310001,6,1,1,0,0,9,3,1,735.5,1252983.3,0,0,1811.1763 -14620,17943,32659,32658,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.1339517,7.4583354,1,0,-9,43,0,4,94.085571,0,0,0,62,2,3,3,3,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0376782,7.4370365,0,0,51.490002,53.310001,47.939999,53.790001,6,1,1,0,0,9,3,1,735.5,1252983.3,0,0,1811.1763 -14621,17944,32660,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,2,1,0,0,3,8.3204145,8.8472757,7.4755769,3,0,0,0,-9,0,-997.08368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9633808,8.1029625,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,11,5,1,944,679876.69,0,0,2679.176 -14622,17945,32661,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-895.20392,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,2.5592811,3.9570339,0,0,0,1,1,0,4.4955158,0,0,0,64.540001,33.759998,-9,-9,5,1,1,0,0,5,1,1,277,-160381.91,0,0,1126.073 -14623,17946,32662,32663,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,8.9243965,8.9694061,0,1,0,-9,3,0,-4,-45.666359,0,0,1,34,1,4,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,18.05348,18.05348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.619999,53.529999,49.349998,59.639999,6,1,1,0,0,8,5,1,260.5,398319.66,0,0,5773.1001 -14623,17946,32663,32662,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,9.3229094,9.133338,0,1,0,-9,3,0,4,-4.5802536,0,0,0,30,2,3,1,-9,-9,2019,1,2,11,0,49,43,15,1,0,1,0,29.931616,29.931616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,59.639999,54.619999,53.529999,5,1,1,0,0,8,5,1,260.5,398319.66,0,0,5773.1001 -14624,17947,32664,32665,-9,-9,2,1,1,53,1,0,0,0,1,-9,1,1,0,0,3,8.6963072,8.5055723,0,1,0,-9,9,0,17,37.732075,0,0,0,36,1,4,1,2,1,2019,1,1,13,1,35,45,15,1,0,1,0,20.484131,20.484131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.700001,47.029999,57.16,56.150002,6,1,1,0,0,4,5,1,1649.5,224064.14,0,0,2619.918 -14624,17947,32665,32664,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,0,4,7.7422924,7.6927323,0,1,0,-9,10,0,-17,13.136301,0,0,1,53,1,3,1,1,1,2019,1,2,7,0,20,25,15,1,0,1,0,10.432525,10.432525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,47.700001,47.029999,6,1,1,0,0,4,5,1,1649.5,224064.14,0,0,2619.918 -14625,17948,32666,32667,-9,-9,2,1,0,51,1,0,0,0,1,-9,3,3,0,0,2,0,0,0,1,0,-9,28,0,-3,0,0,0,0,54,2,1,3,3,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,37.900398,1,55.619999,15.47,46.110001,18.559999,5,2,3,1,0,8,1,0,924.5,31417.135,0,0,2309.1245 -14625,17948,32667,32666,-9,-9,1,1,1,54,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,28,0,3,0,0,0,0,51,1,2,3,3,3,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.110001,18.559999,55.619999,15.47,3,2,3,0,0,8,1,0,924.5,31417.135,0,0,2309.1245 -14625,17949,32668,-9,32666,32667,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,5,7.1001706,7.357636,0,3,0,0,0,-9,0,-1015.0427,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,2,0,40,40,15,1,0,-9,1,5.4939213,5.4939213,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.446058,3,57.060001,57.759998,-9,-9,5,2,3,0,0,8,3,0,366,119512.22,0,0,148.32817 -14625,17950,32669,-9,32666,32667,4,1,0,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1069.1052,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,8,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.114754,3,57.330002,53.459999,-9,-9,6,2,3,0,1,8,1,0,1300,87516.875,0,0,0 -14626,17951,32670,32671,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.0456696,8.1417217,0,1,0,-9,3,0,4,-123.4772,0,0,0,50,3,4,1,-9,3,2019,1,2,6,0,38,47,15,1,0,1,0,8.4321976,8.4321976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,4,4,0,2229,333776.38,0,0,3549.9868 -14626,17951,32671,32670,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,0,4,7.8767858,7.9609938,0,1,0,-9,3,0,-4,-34.417896,0,0,0,54,2,3,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,6.7273302,6.7273302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,6,4,1,0,0,4,4,0,2229,333776.38,0,0,3549.9868 -14627,17952,32672,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,8.1659431,8.2864628,0,3,0,0,0,-9,0,-1025.7467,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,27,39,15,1,0,-9,0,17.853895,17.853895,0,0,0,0,0,0,0,2,0,0,0,3.8011885,0,.37218645,3,48.529999,58.91,-9,-9,5,1,1,0,0,12,4,1,329,481225.34,0,0,2332.7026 -14628,17953,32673,32674,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.2797117,7.947999,0,2,0,-9,19,0,-3,10.937839,0,0,0,50,2,2,1,3,2,2019,1,2,12,0,37,42,15,1,0,1,0,8.4648066,8.4648066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,38.990002,48.68,53.73,6,1,1,0,0,13,3,1,376.5,15659.802,0,0,2051.1895 -14628,17953,32674,32673,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,0,2,7.1671576,7.0945997,0,2,0,-9,9,0,3,28.898914,0,0,0,47,2,3,1,-9,-9,2019,1,1,6,0,15,15,15,1,0,1,0,8.9203205,8.9203205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.68,53.73,41.639999,38.990002,7,1,1,0,0,13,3,1,376.5,15659.802,0,0,2051.1895 -14629,17954,32675,-9,32677,32678,5,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1161.443,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,2,1,857.75,54479.695,0,0,1796.3951 -14629,17954,32676,-9,32677,32678,4,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.6912,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,2,1,857.75,54479.695,0,0,1796.3951 -14629,17954,32677,32678,-9,-9,1,1,0,35,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-7,-.30137235,0,0,1,42,2,3,1,3,2,2019,3,2,13,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.83,62.98,47.299999,45.59,5,1,1,0,0,13,2,1,857.75,54479.695,0,0,1796.3951 -14629,17954,32678,32677,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,0,3,7.9503264,7.9940376,0,2,0,-9,10,0,7,-22.404772,0,0,0,35,2,4,3,-9,-9,2019,2,1,13,1,39,37,15,1,0,3,0,9.9585962,9.9585962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.299999,45.59,30.83,62.98,4,1,1,0,0,13,2,1,857.75,54479.695,0,0,1796.3951 -14630,17955,32679,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1013.2989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.290001,36.700001,-9,-9,2,2,3,0,1,10,1,1,334,31328.068,0,0,731.97571 -14630,17956,32680,-9,32679,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,6.7180243,6.7994308,0,3,0,0,0,-9,0,-960.56311,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,20,20,15,1,0,-9,1,3.428463,3.428463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.970001,-9,-9,4,2,3,0,0,10,2,1,117,2175.8379,0,0,-1315.6042 -14631,17957,32681,-9,32682,32683,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1021.7605,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,1,214.33333,1143809.6,0,0,3995.4976 -14631,17957,32682,32683,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,0,5,7.7640905,7.8642626,0,2,0,-9,5,-9,-10,48.130878,-9,0,1,45,2,4,1,-9,2,2019,1,2,0,0,24,0,15,1,0,1,0,11.929492,11.929492,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.73,40.900002,54.200001,57.490002,7,2,3,0,0,8,5,1,214.33333,1143809.6,0,0,3995.4976 -14631,17957,32683,32682,-9,-9,2,1,1,45,1,0,1,0,2,-9,1,1,0,0,4,8.9316444,8.6535168,0,2,0,-9,1,-9,10,-130.28671,-9,0,0,35,1,5,1,2,2,2019,1,1,6,0,50,0,15,1,0,1,0,15.331422,15.331422,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.73,40.900002,6,2,3,0,0,8,5,1,214.33333,1143809.6,0,0,3995.4976 -14632,17958,32684,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,0,4,7.8922391,8.3397102,0,3,0,0,0,-9,0,-1107.777,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,48,15,1,0,-9,0,7.4891291,7.4891291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,3,1,1,0,0,7,4,0,1125,54613.566,0,0,1630.3827 -14633,17959,32685,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,1,2,0,5.703949,6.1393952,3,0,0,0,-9,0,-1106.7731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.9640756,0,0,44.25,29.98,-9,-9,4,1,1,0,1,5,2,1,321,-103381.59,0,0,1218.108 -14634,17960,32686,-9,-9,-9,1,1,1,25,2,0,0,0,1,0,7,2,0,0,3,7.9106908,7.6155739,0,3,0,0,0,-9,0,-1079.226,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,45,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.88768309,0,0,0,25.969999,61.009998,-9,-9,3,1,1,0,1,9,4,0,892,-1696.2234,0,0,2536.2979 -14635,17961,32687,-9,-9,-9,1,1,1,79,2,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-996.65057,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.6496536,0,0,0,1,1,0,0,0,0,0,37.48,17.040001,-9,-9,5,3,4,0,0,2,1,0,1773,-48234.445,0,0,1587.1418 -14636,17962,32688,-9,-9,-9,1,1,1,98,3,0,0,0,2,-9,4,3,0,1,2,0,6.6886621,6.647481,3,0,0,0,-9,0,-1034.8585,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.164975,6.5772977,0,0,65.129997,21.6,-9,-9,6,1,1,0,0,11,2,0,390,368048.78,0,0,502.86755 -14637,17963,32689,32690,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,8.2962055,8.368289,0,1,0,-9,4,0,0,27.887796,0,0,1,33,2,4,1,2,1,2019,1,2,18,7,45,45,15,1,1,1,0,14.280841,14.280841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.360001,39.009998,57.16,56.150002,6,1,1,0,0,12,5,0,973.5,11146.965,0,0,3692.5391 -14637,17963,32690,32689,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,0,4,8.1955929,8.3190804,0,1,0,-9,4,0,0,190.09143,0,0,0,33,1,4,1,-9,-9,2019,1,1,7,0,40,35,15,1,0,1,0,14.333314,14.333314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,50.360001,39.009998,6,4,2,0,0,12,5,0,973.5,11146.965,0,0,3692.5391 -14638,17964,32691,32694,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,0,2,8.9822369,8.7195702,0,2,0,-9,6,0,8,-194.25992,0,0,0,37,1,1,1,-9,-9,2019,1,1,15,4,50,48,15,1,1,1,0,19.504425,19.504425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.939999,49.91,25.33,51.119999,3,1,1,0,0,10,5,1,1495.75,296525.28,0,0,4599.6738 -14638,17964,32692,-9,32694,32691,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.21649,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,1495.75,296525.28,0,0,4599.6738 -14638,17964,32693,-9,32694,32691,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.8734,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,5,1,1495.75,296525.28,0,0,4599.6738 -14638,17964,32694,32691,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,1,8.255187,8.1836824,0,2,0,-9,6,0,-8,-7.9882689,0,0,1,45,1,2,1,2,1,2019,1,2,17,7,36,30,15,1,1,1,0,13.66794,13.66794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.33,51.119999,44.939999,49.91,3,1,1,0,0,10,5,1,1495.75,296525.28,0,0,4599.6738 -14639,17965,32695,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,0,4,0,6.6784525,6.5066628,3,0,0,0,-9,0,-932.24713,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.90587,0,0,51.830002,57.200001,-9,-9,6,2,3,0,0,11,2,0,456,317311.69,0,0,1475.6464 -14640,17966,32696,-9,-9,-9,1,1,0,24,2,0,0,0,1,1,2,1,0,0,2,8.2813501,8.4831743,0,3,0,0,0,-9,0,-1092.8136,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,50,0,15,1,0,-9,0,9.4843731,9.4843731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,43.150002,-9,-9,5,2,3,0,0,9,4,1,716,-217681.41,0,0,-167.35023 -14641,17967,32697,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,0,2,8.5609035,8.1913719,0,3,0,0,0,-9,0,-1099.6963,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3869631,0,0,0,37.900002,32.779999,-9,-9,4,1,1,0,0,6,4,1,716,-57943.723,0,0,2073.2856 -14642,17968,32698,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,1,2,0,7.0581183,6.8925314,3,0,0,0,-9,0,-1036.8037,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,7.3793497,0,7,1,1,0,5.0723953,7.0806856,1.878224,3,62.77,13.41,-9,-9,4,1,1,0,0,13,2,1,627,399530.06,0,0,1863.2842 -14643,17969,32699,32700,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,1,3,0,6.0779567,6.0798187,1,0,-9,53,0,-2,-19.523083,0,0,0,76,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0450754,0,0,63.77,25.77,57.330002,40.23,6,1,1,0,0,2,2,1,415,138494.5,0,0,1514.8734 -14643,17969,32700,32699,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,6.6045642,5.6048226,1,0,-9,53,0,2,-.71955252,0,0,0,74,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0602069,6.1114435,3.6522276,1,57.330002,40.23,63.77,25.77,6,1,1,0,0,2,2,1,415,138494.5,0,0,1514.8734 -14644,17970,32701,32702,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,2,7.3796463,7.2673635,0,1,0,-9,37,0,0,64.033157,0,0,0,60,3,2,3,2,3,2019,2,2,11,0,31,30,15,1,0,4,0,5.6343985,5.6343985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,44.16,30.709999,48.759998,5,1,1,0,0,11,2,1,1421,443524.19,0,0,1394.4702 -14644,17970,32702,32701,-9,-9,2,1,1,60,1,0,0,0,3,-9,4,3,0,0,2,0,5.7846527,5.6226568,1,0,-9,40,0,0,-39.2244,0,0,0,60,2,2,1,3,2,2019,3,1,14,2,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5099125,0,0,30.709999,48.759998,57.57,44.16,3,1,1,0,1,11,2,1,1421,443524.19,0,0,1394.4702 -14645,17971,32703,32704,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,7.785439,8.1443024,0,1,0,-9,28,0,-6,0,0,0,0,57,2,3,1,2,2,2019,1,1,19,7,38,38,15,1,1,1,0,10.659004,10.659004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.200001,40.25,34.139999,54.639999,4,1,1,0,1,10,4,1,546,491577.09,0,0,2209.5247 -14645,17971,32704,32703,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,7.8156772,7.5524526,0,1,0,-9,28,0,6,0,0,0,0,51,2,2,1,2,2,2019,1,2,12,0,43,46,15,1,0,1,0,5.8303819,5.8303819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.139999,54.639999,36.200001,40.25,4,1,1,0,0,10,4,1,546,491577.09,0,0,2209.5247 -14646,17972,32705,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-981.62579,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,9.6924534,0,7.3186641,4.3680515,0,42.068062,0,1,1,0,0,0,0,0,54,44,-9,-9,6,1,1,0,0,1,1,0,329,97055.383,0,0,1329.4673 -14647,17973,32706,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,0,3,0,8.1545801,8.4519291,3,0,0,0,-9,0,-1037.1853,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3978586,6.3461075,0,0,51.169998,49.389999,-9,-9,6,1,1,0,0,9,4,1,701,1526727.1,0,0,1402.108 -14648,17974,32707,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-988.38281,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0205817,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,6,1,1,223,210135,0,0,1162.411 -14648,17975,32708,32709,-9,-9,3,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,7.9891977,8.3488951,1,0,-9,44,0,8,-33.380386,0,0,0,64,1,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9548345,0,0,63.630001,51.860001,57.060001,57.759998,6,2,3,0,0,6,3,1,503,1067490.3,0,0,2055.2244 -14648,17975,32709,32708,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,44,0,-8,64.00943,0,0,0,72,1,4,3,-9,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,63.630001,51.860001,6,1,1,0,0,6,3,1,503,1067490.3,0,0,2055.2244 -14649,17976,32710,32711,-9,-9,1,1,1,51,1,0,0,0,3,-9,2,1,0,0,4,8.2765226,8.4869394,0,1,0,-9,29,0,-1,202.54361,0,0,0,52,2,3,1,3,3,2019,1,2,11,0,42,45,15,1,0,1,0,13.230254,13.230254,0,0,0,0,0,0,0,2,0,0,0,0,0,3.8268332,3,56.470001,51.02,48,49,6,1,1,0,0,6,4,1,280.5,331783.63,0,0,2672.9534 -14649,17976,32711,32710,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.4007878,7.2755356,0,1,0,-9,7,0,1,104.15961,0,0,0,51,3,4,1,-9,-9,2019,1,1,11,2,24,22,15,1,0,1,0,6.2252064,6.2252064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,56.470001,51.02,5,1,1,0,0,6,4,1,280.5,331783.63,0,0,2672.9534 -14649,17977,32712,-9,32711,32710,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.5889826,8.5817957,0,3,0,0,0,-9,0,-1016.6331,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,36,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,6,5,1,332,-80554.258,0,0,3418.5728 -14650,17978,32713,32714,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,8.276041,8.1485996,1,0,-9,53,0,1,-81.338791,0,0,0,74,2,5,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5764267,8.2500687,0,0,58.299999,52.91,57.060001,57.759998,6,1,1,0,0,10,3,1,775,977708.5,0,0,3559.6167 -14650,17978,32714,32713,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,53,0,-1,61.308811,0,0,0,75,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7420149,0,0,0,57.060001,57.759998,58.299999,52.91,6,1,1,0,0,10,3,1,775,977708.5,0,0,3559.6167 -14651,17979,32715,-9,-9,-9,1,1,0,37,3,0,1,0,1,-9,2,1,0,0,4,8.4390163,8.3777437,0,4,0,0,0,-9,0,-1076.3943,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,13.938748,13.938748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.880001,53.009998,-9,-9,2,1,1,0,0,11,4,1,448,90517.969,0,0,1270.8336 -14651,17979,32716,-9,32715,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1001.7053,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,4,1,448,90517.969,0,0,1270.8336 -14652,17980,32717,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,0,4,8.1905289,7.8330169,0,3,0,0,0,-9,0,-990.1557,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,35,35,15,1,0,-9,0,11.403474,11.403474,0,0,0,0,0,0,0,2,0,0,0,0,0,5.4886284,3,28.65,54.349998,-9,-9,5,1,1,0,0,8,4,0,575,1050548.5,0,0,1327.2814 -14653,17981,32718,-9,32719,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1108.605,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,9,3,0,479,41604.992,0,0,2480.0454 -14653,17981,32719,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,0,1,7.9449601,8.1115589,6.3910985,4,0,0,0,-9,0,-1044.2421,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,23,30,15,1,1,-9,0,11.020576,11.020576,0,0,0,0,0,0,0,0,1,1,0,7.1024184,0,0,0,29.709999,39.389999,-9,-9,3,3,4,0,0,9,3,0,479,41604.992,0,0,2480.0454 -14654,17982,32720,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1073.9806,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.709999,33.200001,-9,-9,6,1,1,0,0,9,1,1,531,-70665.063,0,0,584.38556 -14655,17983,32721,32722,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,7.7589917,7.8257542,1,0,-9,42,0,-4,29.815617,0,0,0,65,1,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6462462,7.7329941,0,0,54.200001,57.490002,61.43,43.34,6,1,1,0,0,5,4,1,610.5,1925286.5,0,0,3628.5977 -14655,17983,32722,32721,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,0,7.9676194,7.9494934,1,0,-9,42,0,4,75.198769,0,0,0,61,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1044044,7.9777327,0,0,61.43,43.34,54.200001,57.490002,7,1,1,0,0,5,4,1,610.5,1925286.5,0,0,3628.5977 -14656,17984,32723,32725,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,0,3,7.8364787,8.06989,0,2,0,-9,16,0,0,-83.131699,0,0,1,37,1,4,1,2,3,2019,1,2,17,5,15,15,15,1,1,1,0,18.274586,18.274586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.470001,58.080002,54.200001,57.490002,4,1,1,0,0,7,5,1,839.75,177057.13,0,0,3928.416 -14656,17984,32724,-9,32723,32725,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.8707,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,7,5,1,839.75,177057.13,0,0,3928.416 -14656,17984,32725,32723,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,9.3048525,9.2352552,0,2,0,-9,16,0,0,87.29007,0,0,0,37,1,3,1,2,1,2019,1,1,8,0,60,50,15,1,0,1,0,16.906485,16.906485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,41.470001,58.080002,6,1,1,0,0,7,5,1,839.75,177057.13,0,0,3928.416 -14656,17984,32726,-9,32723,32725,3,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.4624,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,839.75,177057.13,0,0,3928.416 -14657,17985,32727,32728,-9,-9,2,1,1,95,1,0,0,0,3,-9,4,3,0,0,3,0,5.869215,6.0049248,1,0,-9,71,0,7,-34.429085,0,0,0,88,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4803233,5.6137452,0,0,57,43,57.970001,26.309999,6,1,1,0,0,6,2,1,461.5,237138.19,0,0,1514.0688 -14657,17985,32728,32727,-9,-9,1,1,0,88,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,71,0,-7,88.654449,0,0,0,95,3,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3197818,0,0,0,57.970001,26.309999,57,43,5,1,1,0,0,6,2,1,461.5,237138.19,0,0,1514.0688 -14658,17986,32729,-9,-9,-9,1,1,1,47,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1009.2245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.849998,38.900002,-9,-9,7,1,1,0,0,4,1,1,1705,73420.234,0,0,158.46919 -14659,17987,32730,32731,-9,-9,1,1,0,56,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,2,0,-6,42.093643,0,0,0,62,3,3,1,3,3,2019,3,2,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.349998,23.26,50.200001,52.610001,3,1,1,0,0,4,3,0,1768.5,446408.31,0,0,3085.7881 -14659,17987,32731,32730,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,8.1738739,8.4259157,5.2651882,1,0,-9,2,0,6,35.911743,0,0,0,56,3,2,3,-9,-9,2019,2,1,10,0,44,54,15,1,0,3,0,9.3966484,9.3966484,0,0,0,0,0,0,0,7,1,1,0,0,5.0193467,4.5810652,1,50.200001,52.610001,46.349998,23.26,4,1,1,0,0,4,3,0,1768.5,446408.31,0,0,3085.7881 -14660,17988,32732,32733,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,0,2,7.7966957,7.8745675,0,1,0,-9,2,0,-10,26.756109,0,1,1,35,2,4,1,2,2,2019,1,2,22,9,42,41,15,1,1,1,0,8.1673994,8.1673994,0,0,0,0,0,0,0,2,0,0,0,1.8632107,0,6.6093307,3,21.4,48.75,52.82,53.970001,6,1,1,0,0,6,4,0,1045.5,223261.58,0,0,2268.3799 -14660,17988,32733,32732,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,0,4,8.1698542,7.9997926,0,1,0,-9,2,0,10,-142.13763,0,0,0,25,2,2,1,-9,-9,2019,1,1,9,1,45,47,15,1,0,1,0,8.7202215,8.7202215,0,0,0,0,0,0,0,0,0,0,0,2.207186,0,0,0,52.82,53.970001,21.4,48.75,6,1,1,0,0,6,4,0,1045.5,223261.58,0,0,2268.3799 -14661,17989,32734,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,3,0,7.3516631,7.6859255,3,0,0,0,-9,0,-1097.9269,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.666122,0,0,61.189999,39.41,-9,-9,6,1,1,0,0,10,3,1,185,619653.13,0,0,1667.8185 -14662,17990,32735,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,1,1,0,0,4,7.2526159,7.30406,0,3,0,0,0,-9,0,-1054.6378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,20,15,1,0,-9,0,7.1095681,7.1095681,0,0,0,0,0,0,0,0,0,0,0,.11870921,0,0,0,62.110001,45.630001,-9,-9,6,1,1,0,0,7,3,1,528,311173.75,0,0,319.33749 -14663,17991,32736,32737,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,-6,22.776686,0,0,0,77,2,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3886242,0,0,0,54.07,46.700001,48.860001,37.130001,6,1,1,0,0,9,2,1,278.5,329896.84,0,0,1535.7126 -14663,17991,32737,32736,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,1,3,0,6.5765219,5.9882774,1,0,-9,54,0,6,-28.981337,0,0,0,71,3,3,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,17.504761,0,0,0,0,7,1,1,0,5.7291007,6.1443448,5.6886396,3,48.860001,37.130001,54.07,46.700001,6,1,1,0,0,9,2,1,278.5,329896.84,0,0,1535.7126 -14664,17992,32738,32739,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,2,0,7.5417366,7.3606067,1,0,-9,10,0,6,-38.171444,0,0,0,69,1,2,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0883589,7.5180111,0,0,35.110001,34.110001,54.639999,13.18,6,1,1,0,0,11,3,1,1972,955763.38,0,0,2891.3723 -14664,17992,32739,32738,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,0,2,0,7.2745852,7.4313908,1,0,-9,10,0,-6,14.698816,0,0,0,75,3,2,3,3,3,2019,4,2,5,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.4743478,7.7727962,0,0,54.639999,13.18,35.110001,34.110001,6,1,1,0,0,11,3,1,1972,955763.38,0,0,2891.3723 -14665,17993,32740,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,2,0,4.7904048,5.3637753,3,0,0,0,-9,0,-928.09637,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.7175925,5.2129502,0,0,44.619999,20.440001,-9,-9,5,1,1,0,0,9,2,1,538,812534.94,0,0,381.70251 -14666,17994,32741,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,1,0,6.4416022,6.2583494,3,0,0,0,-9,0,-913.80328,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.8574909,2.1445727,9.1378431,0,0,1,1,0,1.7308218,6.5379028,0,0,65.209999,15.18,-9,-9,3,1,1,0,0,12,2,0,1356,207068.16,0,0,60.239079 -14667,17995,32742,32743,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,7.3021464,8.6483335,7.9206662,1,0,-9,29,0,-3,21.02239,0,0,0,59,2,3,1,2,3,2019,1,1,10,1,15,37,15,1,0,1,0,13.606758,13.606758,0,0,0,0,0,0,0,0,0,0,0,0,8.1195145,0,0,45.91,59.889999,46.959999,40.759998,6,1,1,0,0,9,5,1,767,2389353.5,0,0,5216.1992 -14667,17995,32743,32742,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,8.4604673,8.8656731,7.4564261,1,0,-9,31,0,3,12.136395,0,0,0,56,1,4,1,2,3,2019,1,2,18,6,45,37,15,1,1,1,0,11.065991,11.065991,0,0,0,0,0,0,0,0,0,0,0,0,7.7056136,0,0,46.959999,40.759998,45.91,59.889999,4,1,1,0,0,9,5,1,767,2389353.5,0,0,5216.1992 -14668,17996,32744,32746,-9,-9,1,1,1,60,1,0,1,0,3,-9,2,1,0,0,4,8.214139,8.7141361,6.0996394,2,0,-9,9,0,13,-37.834415,0,0,0,47,3,2,1,2,2,2019,1,2,12,1,40,39,15,1,0,1,0,10.502868,10.502868,0,0,0,0,0,0,0,0,1,1,0,7.3774853,7.2740345,0,0,42.810001,53.209999,43,26.32,3,1,1,0,0,13,4,1,372.33334,267565.31,0,0,2474.99 -14668,17996,32745,-9,32746,32744,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.5743,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,13,4,1,372.33334,267565.31,0,0,2474.99 -14668,17996,32746,32744,-9,-9,2,1,0,47,1,0,1,0,3,-9,2,1,0,0,2,8.1108627,7.9264007,6.4258461,2,0,-9,9,0,-13,-9.3602638,0,0,0,60,3,4,1,3,3,2019,1,1,12,0,25,30,15,1,0,1,0,12.076722,12.076722,0,0,0,0,0,0,0,0,1,1,0,6.8477335,6.0710154,0,0,43,26.32,42.810001,53.209999,6,1,1,0,0,13,4,1,372.33334,267565.31,0,0,2474.99 -14668,17997,32747,-9,32746,32744,3,1,1,18,2,0,1,0,3,-9,2,1,0,0,4,7.7831874,7.5364799,0,3,0,0,0,-9,0,-1005.8344,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,35,15,1,0,-9,1,8.0110207,8.0110207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,13,3,1,200,206297.03,0,0,809.90234 -14669,17998,32748,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-922.36304,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.580708,3,56.450001,40.299999,-9,-9,2,1,1,1,0,5,1,0,2176,-17329.635,0,0,703.10547 -14670,17999,32749,32750,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,9.6481886,9.4256372,0,1,0,-9,2,0,7,-135.85033,0,0,0,55,2,4,3,-9,-9,2019,2,1,6,0,58,55,15,1,0,4,0,30.439997,30.439997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.66,46.310001,46.389999,60.990002,6,1,1,0,0,9,5,1,598,2242557,0,0,4832.9292 -14670,17999,32750,32749,-9,-9,1,1,0,55,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,2,0,-7,-24.467377,0,0,0,62,3,4,1,-9,-9,2019,3,2,9,0,0,44,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2769542,0,0,0,46.389999,60.990002,63.66,46.310001,7,1,1,0,0,9,5,1,598,2242557,0,0,4832.9292 -14671,18000,32751,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,0,4,5.9608746,5.9911489,0,4,0,0,0,-9,0,-967.87488,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,16,16,15,1,1,-9,0,2.5458429,2.5458429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.34,67.889999,-9,-9,4,2,3,0,1,8,2,0,2016.5,51565.859,0,0,565.72498 -14671,18000,32752,-9,32751,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1083.6965,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,2,0,2016.5,51565.859,0,0,565.72498 -14672,18001,32753,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,5,8.6986217,8.1896544,0,3,0,0,0,-9,0,-1017.0494,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,37,37,15,1,0,-9,0,14.770292,14.770292,0,0,0,0,0,0,0,27.5,0,0,0,2.5314822,0,25.518698,3,50.240002,58.02,-9,-9,7,1,1,0,0,4,4,1,483,326993.66,0,0,1775.4342 -14673,18002,32754,32757,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,3,6.9143558,7.1878657,0,2,0,-9,9,0,-5,-41.367786,0,0,1,40,2,4,3,-9,-9,2019,2,1,8,0,26,24,15,1,0,3,0,4.190588,4.190588,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.360001,42.779999,51,56,6,1,1,0,0,5,2,0,850.5,5295.5586,0,0,920.40607 -14673,18002,32755,-9,32754,32757,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1015.5044,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,2,0,0,5,2,0,850.5,5295.5586,0,0,920.40607 -14673,18002,32756,-9,32754,32757,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-905.50513,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,4,2,0,0,5,2,0,850.5,5295.5586,0,0,920.40607 -14673,18002,32757,32754,-9,-9,1,1,1,40,1,0,2,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,9,0,5,16.180676,0,0,0,35,2,3,1,2,-9,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,45.360001,42.779999,5,3,4,1,0,5,2,0,850.5,5295.5586,0,0,920.40607 -14674,18003,32758,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,0,5,0,7.8240542,7.8128242,3,0,0,0,-9,0,-989.36053,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2351208,7.3083897,0,0,54.630001,58.830002,-9,-9,6,1,1,0,0,9,3,1,1049,1024538.1,0,0,112.12816 -14675,18004,32759,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,3,0,7.2740631,7.4593878,3,0,0,0,-9,0,-1067.7197,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.102972,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,11,3,0,302,9303.4854,0,0,1280.8792 -14676,18005,32760,32762,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,7.878655,8.2981215,0,2,0,-9,8,0,3,69.205322,0,0,0,41,2,3,1,-9,-9,2019,1,1,9,0,39,43,15,1,0,1,0,7.016315,7.016315,0,0,0,0,0,0,0,87,1,1,0,0,0,119.8729,3,60.119999,54.799999,52,54.509998,6,1,1,0,0,10,4,1,276.66666,317697,0,0,2617.9119 -14676,18005,32761,-9,32762,32760,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.98016,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,4,1,276.66666,317697,0,0,2617.9119 -14676,18005,32762,32760,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,1,3,7.999845,8.0937634,0,2,0,-9,8,0,-3,-13.958615,0,0,1,44,2,4,1,3,2,2019,1,2,9,0,48,36,15,1,0,1,0,6.2994719,6.2994719,0,0,0,0,0,0,0,78,1,1,0,0,0,119.40443,3,52,54.509998,60.119999,54.799999,6,1,1,0,0,10,4,1,276.66666,317697,0,0,2617.9119 -14677,18006,32763,-9,-9,-9,1,1,1,34,3,0,2,0,2,-9,2,1,0,0,2,8.8592167,8.9539537,0,4,0,-9,0,1,0,-980.27881,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,12,40,38,15,1,1,-9,0,24.529642,24.529642,0,0,0,0,0,0,0,7,0,0,0,6.39394,0,2.00685,3,22.299999,53.889999,-9,-9,2,1,1,0,1,6,5,1,848.5,66879.336,0,0,3072.5215 -14677,18006,32764,-9,-9,32763,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-965.74292,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,848.5,66879.336,0,0,3072.5215 -14677,18006,32765,-9,-9,32763,2,1,0,16,2,0,2,0,2,-9,2,2,0,0,4,6.4249582,6.4552379,0,4,0,0,0,-9,0,-979.67908,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2.772306,3,51.240002,58.84,-9,-9,6,1,1,0,0,6,5,1,848.5,66879.336,0,0,3072.5215 -14677,18006,32766,-9,-9,32763,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1051.5156,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,848.5,66879.336,0,0,3072.5215 -14678,18007,32767,32768,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,2,8.1306477,8.0044823,0,1,0,-9,34,-9,0,0,-9,0,0,58,2,2,1,3,3,2019,1,2,22,10,39,0,15,1,1,1,0,8.7276907,8.7276907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.32,42.419998,49.400002,38.419998,6,1,1,0,0,6,4,0,738,475574.88,0,0,2788.0979 -14678,18007,32768,32767,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,2,7.8775477,8.1014404,0,1,0,-9,1,-9,0,0,-9,0,0,58,2,2,1,-9,-9,2019,1,1,10,0,42,0,15,1,0,1,0,9.2557497,9.2557497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.400002,38.419998,31.32,42.419998,5,1,1,0,0,6,4,0,738,475574.88,0,0,2788.0979 -14679,18008,32769,32770,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,7.4945817,7.6846724,0,2,0,-9,16,0,0,-.91075534,-9,0,1,41,1,4,1,2,2,2019,1,2,9,1,27,0,15,1,0,1,0,9.408288,9.408288,0,0,0,0,0,0,0,0,1,1,0,1.0666262,0,0,0,61.009998,53.18,50,56,2,2,3,0,0,4,3,1,439.5,54153.234,0,0,2768.2817 -14679,18008,32770,32769,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,8.1304722,8.2481756,0,2,0,-9,16,0,0,67.429146,0,0,0,41,2,5,1,2,2,2019,1,1,10,1,37,40,15,1,0,1,0,11.512422,11.512422,0,0,0,0,0,0,0,0,1,1,0,4.5449266,0,0,0,50,56,61.009998,53.18,5,2,3,0,0,4,3,1,439.5,54153.234,0,0,2768.2817 -14680,18009,32771,-9,32772,32774,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-955.22864,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,599.5,683435.19,0,0,2702.2686 -14680,18009,32772,32774,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,0,3,7.7120271,7.8616562,0,2,0,-9,15,0,1,192.85802,0,0,1,37,2,5,1,2,2,2019,1,2,25,11,26,26,15,1,1,1,0,13.389904,13.389904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.639999,20.040001,48.77,60.16,6,1,1,0,0,10,4,1,599.5,683435.19,0,0,2702.2686 -14680,18009,32773,-9,32772,32774,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.09479,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,1,599.5,683435.19,0,0,2702.2686 -14680,18009,32774,32772,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,0,5,8.3040848,8.1088972,0,2,0,-9,15,0,-1,-.10968456,0,0,0,38,2,3,1,2,2,2019,1,1,11,0,49,45,15,1,0,1,0,8.4941673,8.4941673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,47.639999,20.040001,6,1,1,0,0,10,4,1,599.5,683435.19,0,0,2702.2686 -14681,18010,32775,32776,-9,-9,1,1,0,52,1,0,0,0,1,-9,4,3,0,0,5,8.4219856,8.6722193,0,1,0,-9,28,0,-2,-17.712727,0,0,0,54,1,4,1,2,3,2019,3,2,23,11,58,53,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5618615,0,0,0,36.099998,65.800003,54,54,3,1,1,0,0,9,5,1,2160.5,6561261.5,0,0,7462.0137 -14681,18010,32776,32775,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.2853775,9.1246052,0,1,0,-9,6,0,2,-120.18291,0,0,0,52,1,5,3,-9,-9,2019,2,1,9,1,33,33,15,1,0,4,0,41.260155,41.260155,0,0,0,0,0,0,0,0,0,0,0,4.0798264,0,0,0,54,54,36.099998,65.800003,6,1,1,0,0,9,5,1,2160.5,6561261.5,0,0,7462.0137 -14681,18011,32777,-9,32775,32776,3,1,0,19,2,0,0,0,2,1,2,1,0,0,4,6.7243519,7.2646699,0,3,0,0,0,-9,0,-1028.0623,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,36,0,15,1,0,-9,1,2.3608031,2.3608031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,9,2,1,207,76338.055,0,0,985.40448 -14682,18012,32778,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,2,0,7.4410148,7.1616702,3,0,0,0,-9,0,-987.58386,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6089153,0,0,37.740002,45.349998,-9,-9,3,1,1,0,0,8,3,1,661,1320835.5,0,0,1577.1111 -14682,18013,32779,-9,32778,-9,2,1,0,48,2,0,0,0,1,-9,1,1,0,0,4,7.3830223,7.6047344,0,1,0,-9,6,0,-10,-29.636965,0,0,0,-9,-9,-9,-9,1,2,2019,1,3,5,0,7,6,15,1,0,-9,0,24.969116,24.969116,0,0,0,0,0,0,0,0,1,1,0,8.0454998,0,0,0,47.580002,56.389999,49.349998,59.639999,5,1,1,0,1,8,5,1,1434,101737.13,0,0,2755.2922 -14682,18014,32780,-9,-9,-9,3,1,0,58,2,0,0,0,2,-9,1,1,0,0,4,8.6046534,8.6179838,0,1,0,-9,6,0,10,-24.929743,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,5,0,60,65,15,1,0,-9,0,11.94176,11.94176,0,0,0,0,0,0,0,0,1,1,0,6.3237505,0,0,0,49.349998,59.639999,47.580002,56.389999,5,1,1,0,0,8,5,1,247,1078376.1,0,0,3935.8411 -14683,18015,32781,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,1,0,5.3048244,5.3153472,3,0,0,0,-9,0,-968.14575,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,27,9,0,0,15,4,1,-9,0,0,0,1,2.0876799,0,0,0,9.6027956,16.718161,0,1,1,0,0,5.4429522,0,0,18.41,24.280001,-9,-9,1,1,1,0,1,9,2,0,1255,-13127.717,0,0,47.128555 -14683,18016,32782,-9,-9,-9,2,1,1,18,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-979.24109,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.3317081,0,22.135656,3,52.82,53.970001,-9,-9,4,1,1,0,0,9,1,0,347,0,0,0,-292.04462 -14684,18017,32783,-9,-9,-9,1,1,1,73,2,0,0,0,1,-9,4,3,0,0,2,0,8.2519913,8.1063919,3,0,0,0,-9,0,-1005.8898,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.7781959,7.9848924,0,0,48.98,22.860001,-9,-9,6,1,1,0,0,5,4,1,663,522344.28,0,0,2641.646 -14685,18018,32784,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,2,7.6844401,7.9867325,0,3,0,-9,0,0,0,-998.46136,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,7,40,38,15,1,1,-9,0,7.9124699,7.9124699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.049999,54.950001,-9,-9,5,1,1,0,0,4,3,0,283,-34309.391,0,0,982.16119 -14686,18019,32785,32786,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,4,9.8895187,9.5266628,0,1,0,-9,33,0,1,80.356232,0,0,0,53,2,4,1,3,3,2019,1,1,11,0,49,57,15,1,0,1,0,36.555927,36.555927,0,0,0,0,0,0,0,7,0,0,0,4.4308114,0,14.101175,3,49.349998,59.639999,57.16,56.150002,6,1,1,0,0,12,5,1,143,1982002.8,0,0,4237.2266 -14686,18019,32786,32785,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.4944906,7.372746,0,1,0,-9,33,0,-1,-8.6571569,0,0,0,54,1,4,1,2,2,2019,1,2,3,0,20,25,15,1,0,1,0,9.5646248,9.5646248,0,0,0,0,0,0,0,7,0,0,0,0,0,11.407469,3,57.16,56.150002,49.349998,59.639999,6,1,1,0,0,12,5,1,143,1982002.8,0,0,4237.2266 -14686,18020,32787,-9,32786,32785,3,1,1,19,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1114.6,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3832124,0,0,0,48.080002,57.459999,-9,-9,6,1,1,0,0,12,1,1,272,-264042.88,0,0,636.94415 -14686,18021,32788,-9,32786,32785,4,1,1,19,2,0,0,1,2,0,7,2,0,0,5,6.9960461,6.8537912,0,3,0,0,0,-9,0,-1152.252,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.31669113,0,0,0,58.049999,54.52,-9,-9,7,1,1,0,0,12,2,1,911,0,0,0,140.37523 -14687,18022,32789,-9,32791,32790,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1020.1129,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,11,4,1,526.75,691325.5,0,0,3110.4958 -14687,18022,32790,32791,-9,-9,1,1,1,48,1,0,2,0,3,-9,2,1,0,0,4,8.3291855,8.8957148,0,2,0,-9,10,0,-3,123.29764,-9,0,0,51,1,2,1,-9,-9,2019,1,2,9,1,40,0,15,1,0,1,0,12.422153,12.422153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,27.370001,44.5,6,1,1,0,0,11,4,1,526.75,691325.5,0,0,3110.4958 -14687,18022,32791,32790,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,0,2,8.1836243,8.6204672,6.531661,2,0,-9,10,0,3,-25.127298,0,0,0,48,3,4,1,-9,-9,2019,1,1,24,10,39,42,15,1,1,1,0,12.452811,12.452811,0,0,0,0,0,0,0,0,1,1,0,7.1818142,6.6703877,0,0,27.370001,44.5,51,56,5,1,1,0,0,11,4,1,526.75,691325.5,0,0,3110.4958 -14687,18022,32792,-9,32791,32790,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.0159,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,4,1,526.75,691325.5,0,0,3110.4958 -14688,18023,32793,32796,-9,-9,1,1,1,55,1,0,2,0,1,-9,1,1,0,0,4,8.4586039,8.3798323,0,2,0,-9,7,0,4,69.805801,0,0,0,51,1,4,1,2,2,2019,1,2,9,1,40,32,15,1,0,1,0,14.395483,14.395483,0,0,0,0,0,0,0,0,1,1,0,2.8962946,0,0,3,53,54,60.279999,46.439999,6,1,1,0,0,10,4,1,705.5,356190.94,0,0,5019.9448 -14688,18023,32794,-9,32796,32793,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-879.99274,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,10,4,1,705.5,356190.94,0,0,5019.9448 -14688,18023,32795,-9,32796,32793,3,1,0,16,2,0,2,1,2,-9,7,2,0,1,5,0,0,0,2,0,0,0,-9,0,-1028.5,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5293114,0,0,0,39.860001,45.32,-9,-9,6,1,1,0,0,10,4,1,705.5,356190.94,0,0,5019.9448 -14688,18023,32796,32793,-9,-9,2,1,0,51,1,0,2,0,1,-9,1,1,0,0,4,7.7451243,7.9269295,0,2,0,-9,7,0,-4,-44.917282,0,0,0,55,1,4,1,-9,-9,2019,1,1,8,0,6,3,15,1,0,1,0,52.306599,52.306599,0,0,0,0,0,0,0,14.5,1,1,0,8.0092459,0,19.401155,3,60.279999,46.439999,53,54,6,1,1,0,0,10,4,1,705.5,356190.94,0,0,5019.9448 -14689,18024,32797,32799,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,9.6699028,9.9714909,0,2,0,-9,9,0,6,-26.224276,0,0,0,42,1,3,1,2,3,2019,1,1,9,1,49,45,15,1,0,1,0,36.931709,36.931709,0,0,0,0,0,0,0,0,0,0,0,7.1090569,0,0,0,52,55,34,61.209999,6,1,1,0,0,8,5,1,855.66669,103040.53,0,0,8086.9624 -14689,18024,32798,-9,32799,32797,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.8267,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,855.66669,103040.53,0,0,8086.9624 -14689,18024,32799,32797,-9,-9,1,1,0,42,1,0,1,0,1,-9,2,1,0,0,3,8.9577026,9.0215883,0,2,0,-9,9,0,-6,-62.475163,0,0,1,48,2,4,1,2,2,2019,1,2,12,0,77,41,15,1,0,1,0,11.311998,11.311998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,61.209999,52,55,4,1,1,0,0,8,5,1,855.66669,103040.53,0,0,8086.9624 -14690,18025,32800,32801,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.24966,7.790369,0,1,0,-9,6,0,-4,-4.4678035,0,0,0,59,2,3,3,3,3,2019,2,1,9,0,30,30,15,1,0,4,0,9.1903362,9.1903362,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.11417,2,57.16,56.150002,63.009998,41.299999,6,1,1,0,0,12,4,1,1644.5,136117.73,0,0,2416.7813 -14690,18025,32801,32800,-9,-9,1,1,1,59,1,0,0,0,2,-9,4,3,0,1,3,0,7.658061,7.8000183,1,0,-9,36,0,4,33.108826,0,0,0,55,2,4,1,2,2,2019,3,2,6,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.088938,6.9982204,0,0,63.009998,41.299999,57.16,56.150002,7,1,1,0,0,12,4,1,1644.5,136117.73,0,0,2416.7813 -14691,18026,32802,32803,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,0,3,0,6.7012901,6.2981882,1,0,-9,58,0,1,-29.210264,0,0,0,80,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.4454451,6.2636924,0,0,65.400002,22.5,54.959999,53.169998,6,1,1,0,0,6,2,1,617,418025.47,0,0,1805.4707 -14691,18026,32803,32802,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,0,3,0,7.1176829,7.0434952,1,0,-9,10,0,-1,57.898018,0,0,0,81,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5841851,6.8199339,0,0,54.959999,53.169998,65.400002,22.5,7,1,1,0,0,6,2,1,617,418025.47,0,0,1805.4707 -14692,18027,32804,-9,32809,32806,4,1,0,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.4105,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,2,0,635,6372.958,0,0,2742.8328 -14692,18027,32805,-9,32809,32806,3,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.5768,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,7,2,0,635,6372.958,0,0,2742.8328 -14692,18027,32806,32809,-9,-9,1,1,1,45,1,1,4,0,2,-9,2,1,0,0,4,7.4038434,7.149941,0,2,0,-9,9,0,10,-19.176029,0,0,0,35,2,4,3,-9,-9,2019,2,2,12,2,24,0,15,1,0,3,0,6.2920957,6.2920957,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.248785,3,52,56,48,57,5,2,3,0,1,7,2,0,635,6372.958,0,0,2742.8328 -14692,18027,32807,-9,32809,32806,6,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-925.11133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,7,2,0,635,6372.958,0,0,2742.8328 -14692,18027,32808,-9,32809,32806,5,1,1,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.46814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,7,2,0,635,6372.958,0,0,2742.8328 -14692,18027,32809,32806,-9,-9,2,1,0,35,1,1,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,-10,-35.993481,0,0,1,45,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,52,56,5,2,3,0,0,7,2,0,635,6372.958,0,0,2742.8328 -14693,18028,32810,32811,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.6391344,6.7653093,1,0,-9,41,0,1,-74.278145,0,0,0,71,2,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6213074,6.7233443,0,0,45.700001,48.830002,53,46,5,1,1,0,0,9,2,1,1453,710479.63,0,0,4462.8164 -14693,18028,32811,32810,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,5,0,-1,-36.015434,0,0,0,72,2,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5850616,0,0,0,53,46,45.700001,48.830002,5,1,1,0,0,9,2,1,1453,710479.63,0,0,4462.8164 -14694,18029,32812,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1078.4275,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.77,39.16,-9,-9,5,1,1,0,0,1,1,0,197,-150998.28,0,0,1466.1296 -14695,18030,32813,32814,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.9655814,8.1619005,1,0,-9,46,0,0,143.59711,0,0,0,69,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6285648,7.9652753,0,0,60.290001,52.110001,39.689999,53.66,6,1,1,0,0,9,4,1,358,2994977.5,0,0,3793.9832 -14695,18030,32814,32813,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.1125998,6.9711337,1,0,-9,46,0,0,48.861694,0,0,0,69,2,3,3,1,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.81829882,6.9663777,0,0,39.689999,53.66,60.290001,52.110001,5,1,1,0,0,9,4,1,358,2994977.5,0,0,3793.9832 -14696,18031,32815,32817,-9,-9,1,1,1,40,1,1,1,0,1,-9,2,1,0,0,4,8.8950148,8.533062,0,2,0,-9,8,0,4,-55.650959,0,0,0,36,2,5,3,2,2,2019,2,2,8,0,40,40,15,1,0,3,0,19.549505,19.549505,0,0,0,0,0,0,0,0,1,1,0,3.7683682,0,0,0,54.790001,55.860001,57.060001,57.759998,6,1,1,0,0,5,4,1,1228.6666,74689.414,0,0,2699.8223 -14696,18031,32816,-9,32817,32815,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1209.8844,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,1228.6666,74689.414,0,0,2699.8223 -14696,18031,32817,32815,-9,-9,2,1,0,36,1,1,1,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,7,0,-4,-9.3261032,0,0,1,40,1,4,1,2,1,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4369998,0,0,0,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,5,4,1,1228.6666,74689.414,0,0,2699.8223 -14697,18032,32818,32820,-9,-9,3,1,0,44,1,0,1,0,2,-9,2,1,0,0,4,8.7000055,9.0167236,0,2,0,-9,4,0,-1,31.721479,0,0,1,45,1,2,1,-9,-9,2019,1,1,11,0,44,35,15,1,0,1,0,22.190006,22.190006,0,0,0,0,0,0,0,0,0,0,0,6.7954402,0,0,0,51.77,58.57,25.1,55.18,5,1,1,0,0,7,4,1,862.33331,403631.63,0,0,6438.0889 -14697,18032,32819,-9,-9,32820,2,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.8088,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,24,10,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.259998,62.830002,-9,-9,3,1,1,0,0,7,4,1,862.33331,403631.63,0,0,6438.0889 -14697,18032,32820,32818,-9,-9,1,1,1,45,1,0,1,0,1,-9,1,1,0,0,2,0,0,0,2,0,-9,4,0,1,-21.723186,0,0,0,44,2,4,1,1,1,2019,1,3,19,7,0,48,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.5100937,0,0,0,25.1,55.18,51.77,58.57,4,1,1,0,0,7,4,1,862.33331,403631.63,0,0,6438.0889 -14698,18033,32821,32822,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,9.6314325,9.4921217,0,1,0,-9,23,0,-5,60.522583,0,0,0,50,1,3,1,2,3,2019,1,1,10,1,38,57,15,1,0,1,0,46.834732,46.834732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,37.360001,58.259998,6,1,1,0,0,2,5,1,1647,1996573,0,0,12522.328 -14698,18033,32822,32821,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,3,8.9738417,8.9482193,0,1,0,-9,23,0,5,-90.029953,0,0,0,45,1,4,1,2,2,2019,1,2,21,9,50,50,15,1,1,1,0,18.239447,18.239447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.360001,58.259998,50,55,3,1,1,0,0,2,5,1,1647,1996573,0,0,12522.328 -14699,18034,32823,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,0,4,0,7.3055582,7.4563293,3,0,0,0,-9,0,-856.86743,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2104721,7.2821965,2.8750877,3,57.16,56.150002,-9,-9,6,1,1,0,0,11,3,1,2158,647844.5,0,0,1115.3005 -14700,18035,32824,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,2,7.2856069,7.2385836,0,3,0,-9,0,-9,0,-1163.1295,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,28,0,15,1,0,-9,0,5.4997854,5.4997854,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.950001,36.650002,-9,-9,3,1,1,0,0,2,3,0,724,128728.77,0,0,415.43823 -14701,18036,32825,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,0,4,0,6.4328337,6.480619,3,0,0,0,-9,0,-962.85779,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7515082,0,0,60.119999,54.799999,-9,-9,6,3,4,0,0,8,2,1,609,308155.38,0,0,1906.2483 -14702,18037,32826,-9,-9,-9,1,1,0,37,2,1,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1042.1853,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,49.529999,-9,-9,7,1,1,0,0,9,1,0,620,25775.83,0,0,1393.6962 -14702,18037,32827,-9,32826,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-968.53046,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,1,0,620,25775.83,0,0,1393.6962 -14703,18038,32828,32829,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,5,9.014019,8.5869217,0,1,0,-9,6,0,1,4.0838094,0,0,0,54,2,4,1,-9,-9,2019,1,1,8,0,37,28,15,1,0,1,0,20.413151,20.413151,0,0,0,0,0,0,0,0,0,0,0,1.5010717,0,0,0,49.490002,59.98,54.790001,55.860001,7,1,1,0,0,4,5,1,503.5,124577.32,0,0,5330.8799 -14703,18038,32829,32828,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,9.0292654,9.1674109,0,1,0,-9,32,0,-1,-137.96407,0,0,0,55,2,5,1,2,2,2019,1,2,8,0,50,37,15,1,0,1,0,25.636244,25.636244,0,0,0,0,0,0,0,0,0,0,0,2.7052586,0,0,0,54.790001,55.860001,49.490002,59.98,6,1,1,0,0,4,5,1,503.5,124577.32,0,0,5330.8799 -14704,18039,32830,32831,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,4,7.961472,7.70748,0,1,0,-9,3,0,-3,98.672569,0,0,0,47,2,4,1,2,2,2019,1,2,9,0,22,23,15,1,0,1,0,11.560633,11.560633,0,0,0,0,0,0,0,0,0,0,0,4.2530246,0,0,0,57.16,56.150002,42.27,46.82,5,1,1,0,0,4,3,0,871.5,551430.31,0,0,1017.0815 -14704,18039,32831,32830,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,7.6515594,7.6734195,0,1,0,-9,3,0,3,42.360508,0,0,0,44,2,4,1,-9,-9,2019,1,1,10,1,40,45,15,1,0,1,0,5.9581747,5.9581747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,46.82,57.16,56.150002,5,2,3,0,0,4,3,0,871.5,551430.31,0,0,1017.0815 -14705,18040,32832,32833,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,1,3,0,7.7591472,7.9895811,1,0,-9,45,0,7,56.393799,0,0,0,70,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9384336,8.2042665,0,0,56.66,29.23,52.599998,52.880001,5,1,1,0,0,6,4,1,620.5,754475.13,0,0,3849.0757 -14705,18040,32833,32832,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,0,3,0,7.3682213,7.4642391,1,0,-9,45,0,-7,-103.21964,0,0,0,77,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.592062,0,0,52.599998,52.880001,56.66,29.23,6,2,3,0,0,6,4,1,620.5,754475.13,0,0,3849.0757 -14706,18041,32834,-9,32836,32835,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-975.83295,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,5,1,924.33331,1231894,0,0,5891.8096 -14706,18041,32835,32836,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,9.4634991,9.5927591,0,2,0,-9,10,0,2,-85.260841,0,0,0,51,1,5,1,1,2,2019,1,1,10,0,46,48,15,1,0,1,0,38.107594,38.107594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.869999,50.540001,62.09,5,1,1,0,0,9,5,1,924.33331,1231894,0,0,5891.8096 -14706,18041,32836,32835,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,5,8.7771368,8.5561209,0,2,0,-9,10,0,-2,21.942457,0,0,0,53,1,4,1,2,1,2019,1,2,13,3,53,45,15,1,0,1,0,13.418612,13.418612,0,0,0,0,0,0,0,0,0,0,0,5.2576399,0,0,0,50.540001,62.09,54.77,55.869999,6,1,1,0,0,9,5,1,924.33331,1231894,0,0,5891.8096 -14707,18042,32837,32839,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,0,3,8.6074781,8.5325842,0,2,0,-9,7,0,1,18.178331,0,0,0,35,2,4,1,1,2,2019,1,2,7,0,40,40,15,1,0,1,0,14.717269,14.717269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,41.619999,60.419998,4,1,1,0,0,10,4,1,1738.75,192941.36,0,0,3518.7986 -14707,18042,32838,-9,32839,32837,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,1738.75,192941.36,0,0,3518.7986 -14707,18042,32839,32837,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,0,4,7.9445229,8.334424,0,2,0,-9,7,0,-1,-37.631351,0,0,1,36,2,3,1,2,3,2019,1,1,13,2,36,38,15,1,0,1,0,13.106996,13.106996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.619999,60.419998,57.330002,53.459999,5,1,1,0,0,10,4,1,1738.75,192941.36,0,0,3518.7986 -14707,18042,32840,-9,32839,32837,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.98175,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1738.75,192941.36,0,0,3518.7986 -14708,18043,32841,32842,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,0,4,8.8565731,8.9466352,0,1,0,-9,10,0,1,77.216362,0,0,0,49,2,4,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,25.76325,25.76325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49.459999,56.91,6,1,1,0,0,11,5,1,1256,547854.5,0,0,4778.7017 -14708,18043,32842,32841,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.847352,8.7853422,0,1,0,-9,10,0,-1,14.452677,0,0,0,50,1,4,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,20.922695,20.922695,0,0,0,0,0,0,0,0,0,0,0,.75448269,0,0,0,49.459999,56.91,51.77,58.57,6,1,1,0,0,11,5,1,1256,547854.5,0,0,4778.7017 -14709,18044,32843,-9,-9,-9,1,1,1,71,2,0,0,0,1,-9,4,3,0,0,3,0,7.1609111,6.8721457,3,0,0,0,-9,0,-1054.1118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9553475,7.2731099,0,0,56.25,40.200001,-9,-9,5,1,1,0,0,11,3,1,543,665876,0,0,2384.9702 -14710,18045,32844,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,8.0566797,7.833446,3,0,-9,0,1,0,-1076.957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.3093657,7.8575044,1.2778996,3,57.630001,45.09,-9,-9,6,1,1,0,0,5,3,1,296,1158524.6,0,0,3563.8206 -14711,18046,32845,32846,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.6435671,8.5226049,0,1,0,-9,5,0,0,-79.089005,0,1,0,29,1,5,1,2,1,2019,1,2,4,0,39,38,15,1,0,1,0,10.822639,10.822639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,40.970001,60.02,6,1,1,0,0,13,5,1,575,224426.53,0,0,3220.4214 -14711,18046,32846,32845,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.1899261,8.3996096,0,1,0,-9,5,0,0,14.659039,0,1,1,29,1,4,1,-9,-9,2019,1,1,14,2,39,44,15,1,0,1,0,16.389938,16.389938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.970001,60.02,60.119999,54.799999,6,1,1,0,0,13,5,1,575,224426.53,0,0,3220.4214 -14712,18047,32847,32848,-9,-9,1,1,1,22,1,0,0,0,2,-9,7,2,0,0,5,0,0,0,1,0,1,1,-9,1,0,1,1,0,21,2,4,2,2,2,2019,4,2,5,0,0,60,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,46,58,6,1,1,0,0,8,1,1,297.5,-60852.656,0,0,556.37915 -14712,18047,32848,32847,-9,-9,2,1,0,21,1,0,0,1,2,-9,7,2,0,0,4,0,0,0,1,0,-9,1,-9,-1,0,-9,1,1,22,2,5,2,-9,-9,2019,4,1,11,2,0,0,15,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,54.099998,59.110001,5,1,1,0,0,8,1,1,297.5,-60852.656,0,0,556.37915 -14713,18048,32849,32850,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,5.9441338,5.8374319,1,0,-9,10,0,-2,106.44986,0,0,0,72,1,2,3,1,1,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4582329,5.9068923,0,0,53.5,51.02,47.119999,46.150002,6,1,1,0,0,1,3,1,329,803255.13,0,0,4180.0586 -14713,18048,32850,32849,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,2,0,7.8170266,8.2615175,1,0,-9,10,0,2,15.446415,0,0,0,70,1,3,3,1,1,2019,4,2,18,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1594124,7.9618239,0,0,47.119999,46.150002,53.5,51.02,5,1,1,0,0,1,3,1,329,803255.13,0,0,4180.0586 -14714,18049,32851,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,0,4,0,5.9927864,6.0814767,3,0,0,0,-9,0,-1084.5165,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2665844,6.0472608,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,6,2,1,276,422772.09,0,0,784.72577 -14715,18050,32852,32853,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.9422526,7.7565851,0,1,0,-9,31,0,-2,-36.832489,0,0,0,57,3,4,3,3,3,2019,2,1,6,0,28,28,15,1,0,3,0,8.8097496,8.8097496,0,0,0,0,0,0,0,42,1,1,0,0,0,32.41497,1,53,45.709999,54,54,6,1,1,0,0,13,3,1,2560.5,258968.67,0,0,1505.8278 -14715,18050,32853,32852,-9,-9,1,1,1,57,1,0,0,0,3,-9,3,3,0,0,4,0,4.0476456,4.2374077,1,0,-9,31,0,2,-106.17654,0,0,0,55,2,4,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2025795,0,0,54,54,53,45.709999,6,1,1,1,0,13,3,1,2560.5,258968.67,0,0,1505.8278 -14716,18051,32854,-9,32857,32855,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.0188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,1,1226.25,152967.8,0,0,3191.2573 -14716,18051,32855,32857,-9,-9,3,1,1,30,1,0,2,0,2,-9,2,1,0,0,4,8.4234247,8.3437328,6.2361588,2,0,-9,7,0,-11,-102.91171,0,0,0,41,2,5,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,8.9251642,8.9251642,0,0,0,0,0,0,0,0,1,1,0,0,6.7320752,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,13,3,1,1226.25,152967.8,0,0,3191.2573 -14716,18051,32856,-9,32857,32855,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1044.6891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,13,3,1,1226.25,152967.8,0,0,3191.2573 -14716,18051,32857,32855,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,6.0752645,6.6628828,5.5404129,2,0,-9,7,0,11,157.01283,0,0,1,30,2,4,1,-9,-9,2019,1,3,10,0,24,24,15,1,0,1,0,1.7288647,1.7288647,0,0,0,0,0,0,0,0,1,1,0,5.0505719,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,13,3,1,1226.25,152967.8,0,0,3191.2573 -14717,18052,32858,-9,-9,-9,1,1,0,41,3,0,3,0,2,-9,2,1,0,1,3,7.6473041,8.4221859,7.8522782,4,0,0,0,-9,0,-979.51489,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,7,20,20,15,1,1,-9,0,13.192399,13.192399,0,0,0,0,0,0,0,0,1,1,0,7.7569695,0,0,0,33.310001,56.080002,-9,-9,5,1,1,0,1,9,3,1,2482,328148.59,0,0,4139.8477 -14717,18052,32859,-9,32858,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-920.24854,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,2482,328148.59,0,0,4139.8477 -14717,18052,32860,-9,32858,-9,3,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.2399,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,2482,328148.59,0,0,4139.8477 -14718,18053,32861,32862,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,1,2,0,7.6930237,7.3062911,1,0,-9,56,0,2,-16.710506,0,0,0,75,2,1,3,-9,2,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,11.877315,28.366217,10.31146,0,13.790448,19.797377,5.48,1,1,0,2.8396492,6.9946599,17.039852,1,47.950001,21.459999,26.9,21.84,6,1,1,0,0,12,2,1,766,464857.25,0,0,1845.8029 -14718,18053,32862,32861,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,1,1,0,4.5825534,4.6035528,1,0,-9,56,0,-2,148.60994,0,0,0,77,2,2,3,3,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,25.589785,0,0,0,0,0,1,1,0,5.0688329,4.7000709,0,0,26.9,21.84,47.950001,21.459999,6,1,1,0,0,12,2,1,766,464857.25,0,0,1845.8029 -14719,18054,32863,32864,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,5.9052391,6.333735,1,0,-9,8,0,-3,-173.99483,0,0,0,71,2,4,3,2,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6594682,5.7771201,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,6,2,1,264,382304.72,0,0,2703.594 -14719,18054,32864,32863,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,3,-133.78474,0,0,0,68,2,4,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.5124035,0,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,6,2,1,264,382304.72,0,0,2703.594 -14720,18055,32865,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,5.0905967,4.7908497,3,0,0,0,-9,0,-845.90009,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0171447,4.6297326,0,0,41.060001,62.040001,-9,-9,6,1,1,0,0,4,2,1,892,273560.72,0,0,426.32486 -14721,18056,32866,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,2,1,0,0,2,7.1554503,7.2265844,0,3,0,0,0,-9,0,-972.4306,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,15,0,15,1,1,-9,0,8.2223682,8.2223682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.73,38.880001,-9,-9,3,1,1,0,0,13,2,0,1145,41899.512,0,0,27.51766 -14722,18057,32867,32868,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,4,8.3324471,7.843399,0,1,0,-9,26,0,0,88.558823,0,0,0,58,1,3,1,-9,-9,2019,1,2,11,0,46,50,15,1,0,1,0,10.115935,10.115935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.599998,51,49,5,3,4,0,0,8,5,1,576.5,1231422.4,0,0,3594.5781 -14722,18057,32868,32867,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,0,3,8.2917852,8.5971727,0,1,0,-9,29,0,0,-48.220856,0,0,0,58,1,4,1,-9,-9,2019,1,1,13,3,40,37,15,1,0,1,0,13.576644,13.576644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,52.23,55.599998,4,3,4,0,0,8,5,1,576.5,1231422.4,0,0,3594.5781 -14722,18058,32869,-9,32867,32868,3,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.6402121,8.3414764,0,3,0,0,0,-9,0,-862.40662,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,40,45,15,1,0,-9,1,10.550888,10.550888,0,0,0,0,0,0,0,0,0,0,0,4.4791169,0,0,0,57.16,56.150002,-9,-9,6,3,4,0,0,8,4,1,951,288107.47,0,0,2401.4409 -14722,18059,32870,-9,32867,32868,4,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.139905,8.2060156,0,3,0,0,0,-9,0,-1008.2623,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,35,37,15,1,0,-9,1,12.808874,12.808874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.48,61.029999,-9,-9,4,3,4,0,0,8,4,1,173,-108632.31,0,0,2271.7507 -14723,18060,32871,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-931.06366,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,1,27.130276,0,0,0,0,327.20639,0,1,1,0,0,0,0,0,46.18,30.190001,-9,-9,1,1,1,0,0,9,1,0,173,329591.31,0,0,1238.875 -14724,18061,32872,32873,-9,-9,1,1,1,59,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,15,0,5,-82.378479,0,0,0,54,3,2,1,3,3,2019,3,2,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,58.880001,9.54,50.59,16.200001,2,1,1,0,0,2,3,0,765,270823.19,0,0,1738.0945 -14724,18061,32873,32872,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,2,7.8522038,7.4388881,0,1,0,-9,15,0,-5,13.492635,0,0,0,59,2,1,3,3,3,2019,2,1,12,0,39,47,15,1,0,3,0,6.5073252,6.5073252,0,0,0,0,0,0,0,7,1,1,0,0,0,7.2547302,2,50.59,16.200001,58.880001,9.54,5,1,1,0,0,2,3,0,765,270823.19,0,0,1738.0945 -14724,18062,32874,-9,32873,32872,3,1,1,22,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1026.9843,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,10,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.040001,35.32,-9,-9,6,1,1,1,0,2,1,0,2317,-130991.47,0,0,932.69708 -14725,18063,32875,32876,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,4,8.5402498,8.6410408,0,1,0,-9,6,0,-3,8.6280222,0,0,1,33,1,4,1,1,1,2019,1,2,7,0,40,38,15,1,0,1,0,17.260628,17.260628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,57.889999,46.169998,6,1,1,0,0,8,5,1,641.5,178777.25,0,0,5772.7456 -14725,18063,32876,32875,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,8.8401709,9.0720034,0,1,0,-9,6,0,3,129.12778,0,0,0,30,1,4,1,-9,-9,2019,1,1,8,0,50,50,15,1,0,1,0,15.72928,15.72928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.889999,46.169998,54.200001,57.490002,6,1,1,0,0,8,5,1,641.5,178777.25,0,0,5772.7456 -14726,18064,32877,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,0,2,8.4397774,8.3043356,0,3,0,0,0,-9,0,-1061.0597,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,4,35,0,15,1,1,-9,0,13.205557,13.205557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.110001,49.599998,-9,-9,3,1,1,0,0,8,4,0,888,113725.35,0,0,1996.443 -14727,18065,32878,32879,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,-2,47.015495,0,0,0,66,2,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4734721,0,0,0,43.369999,57.279999,52,48,5,1,1,0,0,9,5,1,261.5,1298730.3,0,0,4127.9648 -14727,18065,32879,32878,-9,-9,2,1,1,66,1,0,0,0,2,-9,2,1,0,0,3,8.4914904,9.2059956,7.8740788,1,0,-9,8,0,2,72.424904,0,0,0,64,3,3,3,-9,-9,2019,2,1,10,1,45,40,15,1,0,4,0,12.745265,12.745265,0,0,0,0,0,0,0,0,1,1,0,0,7.8274069,0,0,52,48,43.369999,57.279999,5,1,1,0,0,9,5,1,261.5,1298730.3,0,0,4127.9648 -14728,18066,32880,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1017.0751,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,4,6,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2978582,0,0,0,49.919998,47.32,-9,-9,6,1,1,0,0,13,1,1,612,9078.7119,0,0,1732.3221 -14729,18067,32881,32882,-9,-9,2,1,0,69,1,0,0,0,3,-9,2,1,0,0,2,7.186244,7.2610483,3.8538618,1,0,-9,5,0,-6,47.374748,0,0,0,75,3,3,1,3,2,2019,1,1,24,12,10,0,15,1,1,1,0,12.669526,12.669526,1,0,0,0,0,0,0,0,1,1,0,3.765518,3.9354599,0,0,27.08,41.799999,53,46,3,1,1,0,0,7,3,1,465.5,948014.56,0,0,2220.5574 -14729,18067,32882,32881,-9,-9,1,1,1,75,1,0,0,0,3,-9,2,1,0,0,3,7.3374572,7.330585,0,1,0,-9,5,0,6,68.821739,0,0,0,69,3,2,1,-9,-9,2019,1,2,9,1,28,20,15,1,0,1,0,7.3856077,7.3856077,0,0,0,0,0,0,0,0,1,1,0,.4944942,0,0,0,53,46,27.08,41.799999,6,1,1,0,0,7,3,1,465.5,948014.56,0,0,2220.5574 -14730,18068,32883,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,3,0,5.8288832,5.9624715,3,0,0,0,-9,0,-927.89227,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8247027,0,0,57.48,27.26,-9,-9,6,1,1,0,0,13,2,0,154,395471,0,0,1281.3811 -14731,18069,32884,32885,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,0,2,7.8442426,7.9028387,0,1,0,-9,30,0,-3,25.49563,0,0,0,57,3,1,3,3,3,2019,2,2,21,8,30,35,15,1,1,3,0,6.9397449,6.9397449,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.633759,1,27.01,36.610001,32.970001,18.82,3,1,1,0,0,11,2,1,573,128081.18,0,0,819.51062 -14731,18069,32885,32884,-9,-9,2,1,1,57,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,30,0,3,-75.118515,0,0,0,54,3,2,1,2,3,2019,3,1,15,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.970001,18.82,27.01,36.610001,2,1,1,0,0,11,2,1,573,128081.18,0,0,819.51062 -14732,18070,32886,-9,32888,32887,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.0077,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,0,1444,1115203.5,0,0,3016.7192 -14732,18070,32887,32888,-9,-9,2,1,1,36,1,0,1,0,1,-9,2,1,0,0,4,8.5306005,8.1459045,0,2,0,-9,5,0,2,42.921108,0,0,0,34,2,4,1,-9,-9,2019,1,1,10,0,48,58,15,1,0,1,0,13.091601,13.091601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,55.34,54.259998,6,1,1,0,0,10,4,0,1444,1115203.5,0,0,3016.7192 -14732,18070,32888,32887,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,0,4,7.5566559,7.5382614,0,2,0,-9,5,0,-2,68.723335,0,0,1,36,1,4,1,2,1,2019,1,2,8,1,28,29,15,1,0,1,0,8.4599361,8.4599361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,57.16,56.150002,7,1,1,0,0,10,4,0,1444,1115203.5,0,0,3016.7192 -14733,18071,32889,32890,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,1,6.6010265,6.3444619,0,1,0,-9,28,0,-5,28.715857,0,0,0,58,2,4,1,3,3,2019,1,2,8,1,10,10,15,1,0,1,0,7.5149641,7.5149641,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.306599,3,59.490002,23.030001,57.16,56.150002,4,1,1,0,0,7,4,0,569,559739.13,0,0,1958.9698 -14733,18071,32890,32889,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,4,8.5631371,8.2827168,3.2946143,1,0,-9,26,0,5,121.12923,0,0,0,53,3,1,1,-9,-9,2019,1,1,6,0,35,37,15,1,0,1,0,13.341353,13.341353,0,0,0,0,0,0,0,2,0,0,0,3.8741174,3.3102467,3.4542241,2,57.16,56.150002,59.490002,23.030001,6,1,1,0,0,7,4,0,569,559739.13,0,0,1958.9698 -14733,18072,32891,-9,32889,32890,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,2,6.6415887,7.1336989,3.5127926,3,0,0,0,-9,0,-828.21649,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,29,12,17,37,15,1,1,-9,1,6.2405696,6.2405696,0,0,0,0,0,0,0,2,0,0,0,3.3431432,0,0,3,27.219999,46.09,-9,-9,5,1,1,0,0,7,2,0,309,-146456.36,0,0,823.71307 -14734,18073,32892,32893,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,7.1925888,7.5206881,1,0,-9,49,0,-1,-49.830978,0,0,0,69,3,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5016654,7.0981207,0,0,58.310001,42.52,39.880001,50.52,6,1,1,0,0,13,2,1,1300.5,709804.31,0,0,1781.6976 -14734,18073,32893,32892,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,5.0363708,4.902554,1,0,-9,49,0,1,71.388367,0,0,0,68,3,2,3,3,2,2019,4,1,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6745276,5.0740662,0,0,39.880001,50.52,58.310001,42.52,6,1,1,0,0,13,2,1,1300.5,709804.31,0,0,1781.6976 -14735,18074,32894,-9,-9,-9,1,1,1,84,2,0,2,0,2,-9,4,3,0,1,4,0,7.2289424,7.1114211,4,0,0,0,-9,0,-979.56958,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6103559,0,0,66.459999,34.240002,-9,-9,7,1,1,0,0,7,2,1,187,60555.883,0,0,2199.8123 -14735,18075,32895,32896,-9,32894,2,1,0,40,1,0,2,0,2,-9,1,1,0,0,3,8.061553,7.8711028,0,2,0,-9,4,0,-14,95.848679,0,0,1,54,2,3,1,-9,2,2019,1,5,13,1,40,40,15,1,0,1,0,7.3352747,7.3352747,0,0,0,0,0,0,0,2,1,1,0,0,0,8.4705982,3,49.040001,55.860001,46.23,55.029999,3,1,1,0,0,7,4,1,869.66669,956173.69,0,0,2893.8569 -14735,18075,32896,32895,-9,-9,5,1,1,54,1,0,2,0,2,-9,2,1,0,0,3,8.2785091,8.2401295,0,2,0,-9,4,0,14,106.52957,0,0,0,40,2,3,1,-9,-9,2019,1,2,6,0,46,50,15,1,0,1,0,10.254346,10.254346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.23,55.029999,49.040001,55.860001,5,1,1,0,0,7,4,1,869.66669,956173.69,0,0,2893.8569 -14735,18075,32897,-9,32895,32896,4,1,0,17,2,0,2,0,2,-9,3,3,0,0,4,3.43646,3.2970912,0,2,0,0,0,-9,0,-890.13959,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.150002,55.98,-9,-9,3,1,1,1,0,7,4,1,869.66669,956173.69,0,0,2893.8569 -14735,18076,32898,-9,32895,32896,3,1,0,18,2,0,2,1,2,0,7,2,0,0,2,5.8126063,5.743464,0,3,0,0,0,-9,0,-886.20734,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.25531024,0,0,0,44.200001,51.880001,-9,-9,5,1,1,0,0,7,4,1,104,88373.281,0,0,448.64044 -14736,18077,32899,32900,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,8.3264399,8.2452679,0,1,0,-9,27,0,7,52.945328,0,0,0,46,2,1,1,3,3,2019,1,1,12,1,59,59,15,1,0,1,0,5.9635139,5.9635139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.849998,55.830002,48.18,18.65,7,1,1,0,0,1,4,0,1766.5,842366.63,0,0,2629.0701 -14736,18077,32900,32899,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,1,7.2919655,7.2726812,0,1,0,-9,27,0,-7,-78.600525,0,0,0,53,2,3,1,2,2,2019,1,2,12,2,23,20,15,1,0,1,0,7.9952502,7.9952502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,18.65,39.849998,55.830002,5,1,1,0,0,1,4,0,1766.5,842366.63,0,0,2629.0701 -14736,18078,32901,-9,32900,32899,3,1,0,21,2,0,0,0,2,-9,3,3,0,1,1,3.9394546,3.9803646,0,3,0,0,0,-9,0,-1000.0759,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.049999,30.6,-9,-9,4,1,1,1,0,1,1,0,112,41778.523,0,0,1581.1438 -14736,18079,32902,-9,32900,32899,4,1,1,19,2,0,0,0,2,-9,8,3,1,1,3,4.5310459,4.369997,0,3,0,0,0,-9,0,-924.90179,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.459999,51.860001,-9,-9,7,1,1,0,0,1,2,0,783,0,0,0,1052.3528 -14737,18080,32903,32904,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,0,4,8.3979158,8.6912937,0,2,0,-9,8,0,0,-22.983599,0,0,0,35,1,4,1,-9,-9,2019,1,1,12,0,39,39,15,1,0,1,0,16.526888,16.526888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.560001,57.02,50.48,56.400002,7,1,1,0,0,2,5,1,735.66669,11837.117,0,0,4591.3315 -14737,18080,32904,32903,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,0,4,9.0903664,8.9831419,0,2,0,-9,8,0,0,-28.735174,0,0,1,35,2,4,1,2,1,2019,1,2,8,0,37,38,15,1,0,1,0,21.363129,21.363129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.400002,46.560001,57.02,6,1,1,0,0,2,5,1,735.66669,11837.117,0,0,4591.3315 -14737,18080,32905,-9,32904,32903,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.09088,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,5,1,735.66669,11837.117,0,0,4591.3315 -14738,18081,32906,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,1,0,4.718761,4.4766703,3,0,0,0,-9,0,-935.99786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,35,12,0,22,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8137808,0,0,16.040001,23.99,-9,-9,1,3,4,0,0,8,2,0,632,0,0,0,1415.674 -14739,18082,32907,-9,-9,-9,3,1,0,22,2,0,0,0,1,-9,2,1,0,0,3,6.271934,6.3314004,0,3,0,0,0,-9,0,-1013.2455,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,1,10,4,15,1,0,-9,1,8.3714523,8.3714523,0,0,0,0,0,0,0,0,0,0,0,1.1852039,0,0,0,42,54,-9,-9,6,1,1,0,0,4,2,0,177,-161033.53,0,0,1939.2192 -14740,18083,32908,32909,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,-1,-131.45526,0,0,0,73,2,3,1,3,3,2019,3,1,17,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.200001,42.189999,43.459999,33.560001,4,1,1,0,0,2,3,1,718,663546.25,0,0,2122.5686 -14740,18083,32909,32908,-9,-9,1,1,1,73,1,0,0,0,2,-9,1,1,0,0,3,7.3452616,8.1974382,7.1018977,1,0,-9,53,0,1,-72.586288,0,0,0,72,3,2,3,3,3,2019,2,2,8,0,20,30,15,1,0,4,0,10.838732,10.838732,1,0,0,0,0,0,0,0,1,1,0,7.325273,7.1187944,0,0,43.459999,33.560001,47.200001,42.189999,6,1,1,0,0,2,3,1,718,663546.25,0,0,2122.5686 -14741,18084,32910,32911,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.5729227,8.7858934,0,1,0,-9,3,0,5,65.083,0,1,1,24,2,2,1,1,2,2019,1,2,9,1,32,43,15,1,0,1,0,24.202778,24.202778,0,0,0,0,0,0,0,14.5,0,0,0,7.307126,0,18.424974,1,54.099998,59.110001,52.200001,32.02,6,1,1,0,0,9,5,0,302,-73467.141,0,0,4663.7871 -14741,18084,32911,32910,-9,-9,2,1,1,24,1,0,0,0,2,-9,2,1,0,0,2,8.5059052,8.4783926,0,1,0,-9,3,0,-5,-44.450901,0,1,0,29,1,5,1,-9,-9,2019,1,1,13,2,49,60,15,1,0,1,0,12.584437,12.584437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.200001,32.02,54.099998,59.110001,6,1,1,0,0,9,5,0,302,-73467.141,0,0,4663.7871 -14742,18085,32912,32913,-9,-9,1,1,0,46,1,0,0,0,1,-9,3,3,0,0,2,0,0,0,1,0,-9,13,0,-10,0,0,0,0,56,2,3,3,2,1,2019,4,2,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.6430187,0,3.4171348,3,46.209999,48.130001,57.91,38.279999,4,2,3,1,1,7,1,0,1007.5,104805.53,0,0,270.02597 -14742,18085,32913,32912,-9,-9,2,1,1,56,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,13,0,10,0,0,0,0,46,1,2,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,38.279999,46.209999,48.130001,2,1,1,0,1,7,1,0,1007.5,104805.53,0,0,270.02597 -14742,18086,32914,-9,-9,-9,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.0854664,7.9005647,0,3,0,0,0,-9,0,-986.51605,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,15,20,15,1,0,-9,0,25.259245,25.259245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,7,3,0,171,-31404.096,0,0,1307.0502 -14743,18087,32915,-9,-9,-9,1,1,0,40,2,0,2,0,2,-9,2,1,0,0,3,6.7257075,6.9559741,0,4,0,0,0,-9,0,-892.71918,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,16,24,15,1,0,-9,0,8.0928431,8.0928431,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,54.23,-9,-9,5,4,2,0,0,9,2,1,4482,125220.09,0,0,1226.88 -14744,18088,32916,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1017.2495,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.3287116,3,33.68,40.419998,-9,-9,1,1,1,0,1,12,1,0,504,-26040.5,0,0,611.98657 -14745,18089,32917,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,2,0,7.509624,7.1688976,3,0,0,0,-9,0,-826.60779,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,1,0,0,2.3620982,2.2686098,0,0,0,1,1,0,2.6249869,7.3335299,0,0,59.07,16.26,-9,-9,5,1,1,0,0,8,3,1,508,596682,0,0,935.19397 -14746,18090,32918,32919,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.6821609,7.4978647,1,0,-9,31,0,-5,-150.37952,0,0,0,66,1,3,3,3,-9,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9991522,7.9039493,0,0,52.98,43.259998,54.27,48.040001,6,1,1,0,0,7,4,1,655.5,1077156.5,0,0,2680.1277 -14746,18090,32919,32918,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.8075633,8.1998587,1,0,-9,32,0,5,-114.85075,0,0,0,61,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.45790389,7.9604373,0,0,54.27,48.040001,52.98,43.259998,5,2,3,0,0,7,4,1,655.5,1077156.5,0,0,2680.1277 -14746,18091,32920,-9,32918,32919,3,1,0,26,2,0,0,0,1,-9,2,1,0,0,3,7.9028721,8.0972481,0,3,0,0,0,-9,0,-1044.7522,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,1,40,32,15,1,0,-9,1,9.850421,9.850421,0,0,0,0,0,0,0,0,1,1,0,1.9523433,0,0,0,49.610001,54.240002,-9,-9,4,4,2,0,0,7,4,1,158,20171.613,0,0,435.32077 -14746,18092,32921,-9,32918,32919,4,1,1,21,2,0,0,0,1,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1108.8466,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.130001,58.639999,-9,-9,6,4,2,1,0,7,1,1,748,-23417.467,0,0,-344.64166 -14747,18093,32922,-9,-9,-9,1,1,1,34,3,0,0,0,1,-9,2,1,0,0,5,8.3660069,8.4011297,0,3,0,-9,0,1,0,-970.375,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,1,37,40,15,1,0,-9,0,15.745016,15.745016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,-9,-9,7,3,4,0,0,6,4,0,224,-71811.305,0,0,2537.2573 -14748,18094,32923,-9,32925,-9,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-945.82416,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,2,1,2032,-39350.699,0,0,1608.3121 -14748,18094,32924,-9,32925,-9,4,1,1,16,2,0,3,0,2,-9,97,2,0,0,3,0,0,0,4,0,0,0,-9,0,-856.24847,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,-9,-9,2,1,1,0,0,10,2,1,2032,-39350.699,0,0,1608.3121 -14748,18094,32925,-9,-9,-9,1,1,0,37,3,0,3,0,2,-9,2,1,0,0,4,6.8595815,7.4980001,6.6711841,4,0,0,0,-9,0,-928.66351,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,27,12,16,16,15,1,1,-9,0,6.6455264,6.6455264,0,0,0,0,0,0,0,0,1,1,0,7.049367,0,0,0,27.809999,65.690002,-9,-9,5,1,1,0,0,10,2,1,2032,-39350.699,0,0,1608.3121 -14748,18095,32926,-9,32925,-9,2,1,1,18,2,0,3,0,2,1,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1020.3397,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,1,1,1,0,10,2,1,348,-91638.828,0,0,198.92223 -14749,18096,32927,32928,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,2,8.4751911,8.6007938,0,1,0,-9,36,0,0,-4.7712483,0,0,0,54,2,3,1,1,2,2019,1,1,12,0,41,43,15,1,0,1,0,16.314285,16.314285,0,0,0,0,0,0,0,7,0,0,0,0,0,3.0431037,3,43.990002,47.509998,42.459999,54.849998,5,1,1,0,0,6,5,1,308.5,25558.164,0,0,2901.2922 -14749,18096,32928,32927,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.0201693,8.0948782,0,1,0,-9,36,0,0,-38.396851,0,0,0,54,1,2,1,3,2,2019,1,2,11,0,29,33,15,1,0,1,0,16.399303,16.399303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.459999,54.849998,43.990002,47.509998,2,1,1,0,0,6,5,1,308.5,25558.164,0,0,2901.2922 -14750,18097,32929,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,5,0,6.9131646,6.5487623,3,0,0,0,-9,0,-993.42169,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9402838,0,0,57.650002,56.130001,-9,-9,7,1,1,0,0,13,2,1,292,181745.44,0,0,846.86072 -14751,18098,32930,32931,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,0,4,9.3129158,9.0304804,0,1,0,-9,7,0,3,-110.33058,0,0,0,32,1,3,1,2,2,2019,1,1,9,0,52,55,15,1,0,1,0,17.634661,17.634661,0,0,0,0,0,0,0,0,0,0,0,2.5625823,0,0,0,42.110001,57.439999,43.02,57.639999,6,1,1,0,0,5,5,1,665.5,174917.67,0,0,3632.1455 -14751,18098,32931,32930,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,3,8.2368174,8.0959673,0,1,0,-9,7,0,-3,129.62009,0,0,1,35,1,4,1,2,2,2019,1,2,14,5,42,46,15,1,1,1,0,11.793169,11.793169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,57.639999,42.110001,57.439999,2,1,1,0,0,5,5,1,665.5,174917.67,0,0,3632.1455 -14752,18099,32932,32933,-9,-9,1,1,1,69,1,0,0,0,2,-9,1,1,0,0,3,6.6229448,6.2306881,0,1,0,-9,37,0,6,54.48045,0,0,0,63,2,2,3,3,3,2019,2,2,9,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.5262754,0,0,3,65.150002,29.299999,53.130001,25.940001,6,1,1,0,0,2,3,1,352,586176.88,0,0,1767.3042 -14752,18099,32933,32932,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,1,2,0,7.205564,7.7487183,1,0,-9,37,0,-6,-13.273999,0,0,0,69,2,3,1,3,3,2019,3,1,14,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.87784,7.4299855,0,0,53.130001,25.940001,65.150002,29.299999,6,1,1,0,0,2,3,1,352,586176.88,0,0,1767.3042 -14753,18100,32934,32935,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,0,4,7.5178995,7.439724,5.3730135,1,0,-9,34,-9,1,-121.91743,-9,0,0,62,2,3,1,3,3,2019,1,2,10,0,20,0,15,1,0,1,0,9.4091578,9.4091578,0,0,0,0,0,0,0,2,0,0,0,5.6127353,5.1244946,3.784157,3,54.200001,57.490002,59.880001,45.369999,5,1,1,0,0,2,4,1,865,1011568.4,0,0,1643.1953 -14753,18100,32935,32934,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,0,3,8.4267654,8.5498619,5.6328382,1,0,-9,1,-9,-1,14.888496,-9,0,0,63,3,4,1,-9,-9,2019,1,1,11,0,43,0,15,1,0,1,0,9.4021416,9.4021416,0,0,0,0,0,0,0,0,0,0,0,5.5525441,5.7014003,0,0,59.880001,45.369999,54.200001,57.490002,6,1,1,0,0,2,4,1,865,1011568.4,0,0,1643.1953 -14754,18101,32936,-9,32938,32937,2,1,0,18,2,0,0,0,2,-9,2,1,0,0,3,7.7350969,7.892272,0,3,0,0,0,-9,0,-1008.6199,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,37,0,15,1,0,-9,1,10.279864,10.279864,0,0,0,0,0,0,0,0,0,0,0,3.1534851,0,0,0,40.57,55.650002,-9,-9,5,1,1,0,0,5,4,1,98,251397.39,0,0,1238.7587 -14754,18102,32937,32938,-9,-9,3,1,1,39,1,0,0,0,2,-9,2,1,0,0,3,8.290803,8.1723576,0,1,0,-9,3,0,2,-40.751854,0,0,0,37,2,4,1,-9,-9,2019,1,1,18,7,60,55,15,1,1,1,0,8.7155724,8.7155724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.51,59.490002,51.830002,57.200001,6,1,1,0,0,5,5,1,420.5,50164.324,0,0,2721.1553 -14754,18102,32938,32937,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,0,4,8.0819616,8.1526365,0,1,0,-9,3,0,-2,5.9246836,0,0,1,39,2,3,1,2,-9,2019,1,3,6,0,38,38,15,1,0,1,0,9.9936934,9.9936934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,29.51,59.490002,6,1,1,0,0,5,5,1,420.5,50164.324,0,0,2721.1553 -14755,18103,32939,32940,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,3,7.2525487,8.1907473,7.5663147,1,0,-9,38,0,0,-77.888695,0,0,0,62,2,4,1,-9,2,2019,1,2,21,9,10,10,15,1,1,1,0,18.030844,18.030844,0,0,0,0,0,0,0,0,0,0,0,3.6416168,7.4676294,0,0,40.650002,57.360001,51.84,51.669998,5,1,1,0,0,10,5,1,851,526228.38,0,0,3140.5449 -14755,18103,32940,32939,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,8.5440989,8.4356833,6.6035199,1,0,-9,38,0,0,-87.303192,0,0,0,62,1,3,1,2,-9,2019,1,1,12,1,31,30,15,1,0,1,0,13.969343,13.969343,0,0,0,0,0,0,0,2,0,0,0,1.0051914,7.3961,14.365831,3,51.84,51.669998,40.650002,57.360001,6,1,1,0,0,10,5,1,851,526228.38,0,0,3140.5449 -14755,18104,32941,-9,32940,32939,3,1,1,30,2,0,0,0,2,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1091.6042,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,26,12,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4299998,63.66,-9,-9,1,1,1,1,1,10,1,1,894,-70575.25,0,0,0 -14756,18105,32942,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,0,3,8.1552734,8.1145287,0,3,0,0,0,-9,0,-1005.9803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,44,38,15,1,1,-9,0,9.0047226,9.0047226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.66,53.610001,-9,-9,4,1,1,0,1,12,4,1,269,3341.8049,0,0,1032.4255 -14757,18106,32943,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,2,1,0,0,5,8.5207853,8.4436178,0,1,0,-9,2,0,0,-149.26802,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,2,10,3,37,37,15,1,0,-9,0,19.504658,19.504658,0,0,0,0,0,0,0,0,0,0,0,8.7512341,0,0,0,51.669998,60.18,52,56,6,1,1,0,0,2,4,1,323,79000.719,0,0,3698.1296 -14758,18107,32944,-9,32945,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-954.15833,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,10,3,1,1099.5,398372.88,0,0,1728.7119 -14758,18107,32945,-9,-9,-9,1,1,0,47,3,0,1,0,1,1,2,1,0,0,3,7.6607323,7.696857,6.3956218,4,0,0,0,-9,0,-1065.2848,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,22,0,15,1,1,-9,0,9.698308,9.698308,0,0,0,0,0,0,0,0,1,1,0,6.3725758,0,0,0,37.130001,43.470001,-9,-9,5,1,1,0,0,10,3,1,1099.5,398372.88,0,0,1728.7119 -14759,18108,32946,32947,-9,-9,1,1,0,77,1,0,0,0,1,-9,4,3,0,0,3,0,7.2299371,7.0276227,1,0,-9,56,0,-3,141.42021,0,0,0,80,2,3,3,2,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5192075,7.4883595,0,0,52,45,54,46,6,1,1,0,0,12,3,1,829.5,957677.88,0,0,2434.6023 -14759,18108,32947,32946,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,7.9562693,7.9094052,1,0,-9,56,0,3,50.850834,0,0,0,77,1,3,3,3,2,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3386707,7.6939855,0,0,54,46,52,45,6,1,1,0,0,12,3,1,829.5,957677.88,0,0,2434.6023 -14760,18109,32948,32949,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,0,4,8.72122,8.8862686,0,1,0,-9,1,-9,-1,-41.019215,-9,1,1,30,1,5,1,1,1,2019,1,2,10,0,43,0,15,1,0,1,0,21.746286,21.746286,0,0,0,0,0,0,0,0,0,0,0,4.5809865,0,0,0,51.240002,58.84,59.43,58.049999,6,1,1,0,0,8,5,1,381.5,108848.48,0,0,9229.5566 -14760,18109,32949,32948,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,9.6364689,9.3570871,0,1,0,-9,1,-9,1,47.565243,-9,0,0,29,1,4,1,2,1,2019,1,1,7,0,55,0,15,1,0,1,0,29.552616,29.552616,0,0,0,0,0,0,0,0,0,0,0,4.8924665,0,0,0,59.43,58.049999,51.240002,58.84,6,1,1,0,0,8,5,1,381.5,108848.48,0,0,9229.5566 -14761,18110,32950,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,0,3,7.4725661,8.0666265,6.5116954,4,0,0,0,-9,0,-1005.6463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,32,30,15,1,0,-9,0,7.8536482,7.8536482,0,0,0,0,0,0,0,0,1,1,0,6.1483488,0,0,0,52.48,55.599998,-9,-9,5,1,1,0,0,5,3,1,750,166215.61,0,0,2022.2904 -14762,18111,32951,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-823.25024,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,15,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8515339,0,0,0,35.860001,64.550003,-9,-9,6,1,1,0,0,7,1,1,892,415213.5,0,0,1363.8081 -14763,18112,32952,-9,32957,32956,9,1,0,1,2,1,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.54352,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18112,32953,-9,32957,32956,4,1,1,7,2,1,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1044.5421,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18112,32954,-9,32957,32956,6,1,0,4,2,1,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.8323,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18112,32955,-9,32957,32956,3,1,1,12,2,1,7,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-936.05548,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18112,32956,32957,-9,-9,1,1,1,43,1,1,7,0,1,-9,2,1,0,0,3,8.2896824,8.5076017,0,2,0,-9,11,0,12,-46.510361,0,0,0,31,2,5,3,2,3,2019,2,2,10,0,23,37,15,1,0,3,0,16.145563,16.145563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.689999,58.700001,54.689999,57.470001,5,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18112,32957,32956,-9,-9,2,1,0,31,1,1,7,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,-12,26.633963,0,0,1,43,1,3,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,37.689999,58.700001,6,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18112,32958,-9,32957,32956,5,1,0,6,2,1,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.25,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,1,744,266338.5,0,0,2527.1323 -14763,18113,32959,-9,32957,32956,7,1,0,18,2,1,7,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.6736,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,6,2,3,1,0,4,2,1,2100,-53966.691,0,0,539.20447 -14764,18114,32960,-9,32961,32963,6,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.7103,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,1122,215970.64,0,0,2067.1951 -14764,18114,32961,32963,-9,-9,2,1,0,37,1,1,3,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-2,17.398346,0,0,1,39,3,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,54.5,42.220001,5,1,1,0,0,6,2,0,1122,215970.64,0,0,2067.1951 -14764,18114,32962,-9,32961,32963,4,1,1,16,2,1,3,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-890.44476,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.630001,56.139999,-9,-9,6,1,1,0,0,6,2,0,1122,215970.64,0,0,2067.1951 -14764,18114,32963,32961,-9,-9,1,1,1,39,1,1,3,0,3,-9,2,1,0,0,4,7.5961285,7.3080173,0,2,0,-9,16,0,2,89.515251,0,0,0,37,3,4,3,2,1,2019,2,2,15,4,30,30,15,1,1,3,0,8.6029062,8.6029062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.5,42.220001,49,55,5,1,1,0,0,6,2,0,1122,215970.64,0,0,2067.1951 -14764,18114,32964,-9,32961,32963,5,1,1,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.27985,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,2,0,1122,215970.64,0,0,2067.1951 -14764,18115,32965,-9,32961,32963,3,1,1,18,2,1,3,0,2,1,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1045.623,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,6,1,0,121,103744.31,0,0,237.88472 -14765,18116,32966,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,0,2,0,7.5853686,7.705339,3,0,0,0,-9,0,-934.04865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.693835,7.7399192,6.0624075,3,27.120001,32.419998,-9,-9,2,1,1,0,0,10,3,1,3678,359253.16,0,0,1536.8724 -14766,18117,32967,32968,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,0,4,8.0000782,8.4597473,0,1,0,-9,6,0,0,-7.5863724,0,0,1,42,3,4,1,3,2,2019,1,1,10,0,38,37,15,1,0,1,0,10.847543,10.847543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,57.16,56.150002,6,1,1,0,0,6,5,1,388.5,137900.69,0,0,4062.3677 -14766,18117,32968,32967,-9,-9,1,1,1,42,1,0,0,0,3,-9,2,1,0,0,4,8.5041208,8.549614,0,1,0,-9,6,0,0,35.478111,0,0,0,42,2,4,1,3,3,2019,1,2,10,0,50,47,15,1,0,1,0,12.066957,12.066957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,46.389999,60.990002,6,1,1,0,0,6,5,1,388.5,137900.69,0,0,4062.3677 -14766,18118,32969,-9,32967,32968,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.8820381,7.761003,0,3,0,0,0,-9,0,-1048.5229,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,16,4,35,35,15,1,1,-9,1,7.835568,7.835568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.150002,42.23,-9,-9,4,1,1,0,0,6,3,1,410,56015.203,0,0,746.34076 -14766,18119,32970,-9,32967,32968,4,1,1,19,2,0,0,0,2,1,2,1,0,0,5,7.9991846,8.2905293,0,3,0,0,0,-9,0,-1023.8165,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,50,0,15,1,0,-9,1,6.6493506,6.6493506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,-9,-9,7,1,1,0,0,6,3,1,1416,-170325.16,0,0,578.54468 -14767,18120,32971,32972,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,3,0,7.2931204,7.8834496,1,0,-9,42,0,0,51.799679,0,0,0,76,1,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2182779,7.4167747,0,0,57.330002,53.459999,38.189999,52.860001,6,1,1,0,0,8,5,1,540.5,1950577.4,0,0,5042.3818 -14767,18120,32972,32971,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,2,0,8.9631348,8.5073853,1,0,-9,41,0,9,-123.28197,0,0,0,67,1,3,3,2,2,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7190475,0,0,38.189999,52.860001,57.330002,53.459999,5,1,1,0,0,8,5,1,540.5,1950577.4,0,0,5042.3818 -14768,18121,32973,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1032.7731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,15,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.939999,27.469999,-9,-9,6,1,1,0,0,13,1,0,208,36998.051,0,0,1510.5444 -14769,18122,32974,32975,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,5,0,6.9260983,6.830647,1,0,-9,38,0,0,41.045242,0,0,0,77,2,4,3,2,2,2019,4,1,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2833362,6.7408228,0,0,62.389999,56.709999,63.389999,42.389999,7,1,1,0,0,2,2,1,572,404968.13,0,0,2131.678 -14769,18122,32975,32974,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,5.7697058,5.4629683,1,0,-9,38,0,9,18.766464,0,0,0,68,2,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1865315,5.804493,0,0,63.389999,42.389999,62.389999,56.709999,6,1,1,0,0,2,2,1,572,404968.13,0,0,2131.678 -14770,18123,32976,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,6.8127265,6.6033578,1.8153892,3,0,0,0,-9,0,-969.11115,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,13,37,15,1,0,-9,0,6.100019,6.100019,0,0,0,0,0,0,0,0,1,1,0,0,1.982623,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,10,2,0,1076,93536.867,0,0,1108.011 -14771,18124,32977,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,0,4,0,7.2903438,7.6629853,3,0,0,0,-9,0,-932.24744,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7396016,7.4521966,10.182144,3,60.279999,43.740002,-9,-9,6,1,1,0,0,10,3,1,282,342688.91,0,0,2960.9915 -14772,18125,32978,32979,-9,-9,2,1,1,48,1,0,0,0,1,-9,1,1,0,0,3,8.305871,8.4965057,0,1,0,-9,2,0,0,44.945541,0,0,0,48,2,3,1,-9,-9,2019,1,1,10,0,50,50,15,1,0,1,0,8.1269445,8.1269445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.349998,48.939999,46.299999,42.259998,5,2,3,0,0,8,5,1,447.5,1124756.1,0,0,4835.1924 -14772,18125,32979,32978,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,9.1616354,9.1455965,0,1,0,-9,12,0,0,108.56028,0,0,0,48,1,3,1,1,1,2019,1,2,11,0,43,35,15,1,0,1,0,22.878351,22.878351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.299999,42.259998,49.349998,48.939999,6,2,3,0,0,8,5,1,447.5,1124756.1,0,0,4835.1924 -14773,18126,32980,-9,32982,32981,5,1,1,9,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.09613,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,1,0,901.40002,800.9328,0,0,3159.8264 -14773,18126,32981,32982,-9,-9,7,1,1,26,1,0,5,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,4,0,-8,0,0,1,0,34,3,2,3,-9,-9,2019,4,1,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,40.369999,41.57,17.41,46.450001,6,4,1,0,0,2,1,0,901.40002,800.9328,0,0,3159.8264 -14773,18126,32982,32981,-9,-9,1,1,0,34,1,0,5,0,3,-9,8,3,1,1,2,0,0,0,2,0,-9,4,0,8,0,0,0,1,26,2,1,3,2,2,2019,4,7,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.41,46.450001,40.369999,41.57,3,1,1,0,0,2,1,0,901.40002,800.9328,0,0,3159.8264 -14773,18126,32983,-9,32982,32981,6,1,0,6,2,0,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-878.26465,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,901.40002,800.9328,0,0,3159.8264 -14773,18126,32984,-9,32982,32981,2,1,1,16,2,0,5,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.13855,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.830002,57.259998,-9,-9,7,1,1,0,0,2,1,0,901.40002,800.9328,0,0,3159.8264 -14774,18127,32985,32986,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-3,55.765038,0,0,0,71,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,2.7845831,1,51.02,44.189999,51.950001,44.02,7,1,1,0,0,2,2,1,1741,663856.06,0,0,1731.2813 -14774,18127,32986,32985,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,7.1677842,7.3065481,1,0,-9,51,0,3,-1.6189336,0,0,0,68,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5551465,7.0943279,0,0,51.950001,44.02,51.02,44.189999,7,1,1,0,0,2,2,1,1741,663856.06,0,0,1731.2813 -14775,18128,32987,32988,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,42,0,-3,62.427376,0,0,0,61,2,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2640953,0,0,0,63.5,41.470001,57.060001,57.759998,7,1,1,0,0,6,4,1,504.5,1716459,0,0,2792.2129 -14775,18128,32988,32987,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,5,0,8.6183138,8.7670126,1,0,-9,42,0,3,6.5203209,0,0,0,58,2,2,3,3,3,2019,4,2,9,1,0,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.909687,8.5276022,0,1,57.060001,57.759998,63.5,41.470001,6,1,1,0,0,6,4,1,504.5,1716459,0,0,2792.2129 -14776,18129,32989,32990,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,7.308753,7.5242391,0,1,0,-9,19,-9,0,82.746414,-9,0,0,46,1,3,1,2,2,2019,1,1,9,0,25,0,15,1,0,1,0,6.8497586,6.8497586,0,0,0,0,0,0,0,0,0,0,0,2.0637987,0,0,0,48.869999,58.549999,54.959999,53.169998,7,1,1,0,0,13,4,1,1679,351585.41,0,0,2584.7751 -14776,18129,32990,32989,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,0,3,8.4887333,8.4179926,0,1,0,-9,19,-9,0,-10.338585,-9,0,0,46,2,4,1,2,2,2019,1,2,6,0,40,0,15,1,0,1,0,11.37322,11.37322,0,0,0,0,0,0,0,0,0,0,0,.37067264,0,0,0,54.959999,53.169998,48.869999,58.549999,6,1,1,0,0,13,4,1,1679,351585.41,0,0,2584.7751 -14776,18130,32991,-9,32989,32990,3,1,1,25,2,0,0,0,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-919.1264,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.18,60.540001,-9,-9,5,1,1,0,0,13,1,1,258,-45270.961,0,0,0 -14776,18131,32992,-9,32989,32990,4,1,0,19,2,0,0,1,2,-9,7,2,0,0,4,6.2683916,6.6364031,0,3,0,-9,0,-9,0,-1104.5834,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9260144,0,0,0,43.200001,59.970001,-9,-9,5,1,1,0,0,13,2,1,447,0,0,0,1013.8992 -14777,18132,32993,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,0,3,0,5.7566352,5.7803984,3,0,0,0,-9,0,-938.01959,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,127.00768,0,0,0,11.976846,1219.0198,0,1,1,0,4.7455463,5.6168633,0,0,54,45,-9,-9,6,1,1,0,0,10,2,0,683,63611.637,0,0,186.5869 -14778,18133,32994,32996,-9,-9,2,1,0,36,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,1,22.887123,0,0,1,35,2,4,1,2,3,2019,3,1,28,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2.02,66.709999,49.560001,51.41,5,1,1,0,0,2,3,1,762.33331,8009.603,0,0,1295.2354 -14778,18133,32995,-9,32994,32996,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-869.74695,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,3,1,762.33331,8009.603,0,0,1295.2354 -14778,18133,32996,32994,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,0,4,7.8056512,7.7300248,0,2,0,-9,9,0,-1,177.47198,0,0,0,36,1,4,3,-9,-9,2019,2,2,8,1,38,45,15,1,0,3,0,7.0896878,7.0896878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.560001,51.41,2.02,66.709999,5,1,1,0,0,2,3,1,762.33331,8009.603,0,0,1295.2354 -14779,18134,32997,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,0,2,7.9685864,7.7615976,0,3,0,0,0,-9,0,-980.27112,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,39,0,15,1,1,-9,0,10.763245,10.763245,0,0,0,0,0,0,0,0,1,1,0,2.4353356,0,0,0,47.560001,48.93,-9,-9,5,1,1,0,0,5,4,1,3238,55152.773,0,0,1344.5269 -14780,18135,32998,32999,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,8.3538589,7.9958491,1,0,-9,43,0,7,-94.263985,0,0,0,61,2,4,3,-9,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,2.9612517,8.5872869,9.6953955,3,60.119999,54.799999,57.16,56.150002,6,1,1,0,0,5,3,1,281.5,1453209.8,0,0,2612.9893 -14780,18135,32999,32998,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,5.7017999,5.6719394,1,0,-9,43,0,-7,85.081665,0,0,0,68,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.44162554,5.8869824,0,3,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,5,3,1,281.5,1453209.8,0,0,2612.9893 -14781,18136,33000,-9,33001,33003,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.7529,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,8,5,1,1203.75,208826.11,0,0,3886.2944 -14781,18136,33001,33003,-9,-9,1,1,0,42,1,0,2,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,17,0,-3,47.23822,0,0,1,45,1,5,1,2,1,2019,3,2,8,0,0,41,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2645202,0,.62397647,3,57.16,56.150002,40.900002,65.019997,6,1,1,1,0,8,5,1,1203.75,208826.11,0,0,3886.2944 -14781,18136,33002,-9,33001,33003,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.57141,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,1203.75,208826.11,0,0,3886.2944 -14781,18136,33003,33001,-9,-9,2,1,1,45,1,0,2,0,1,-9,1,1,0,0,5,9.1266851,9.4595394,0,2,0,-9,17,0,3,-12.447968,0,0,0,42,1,4,3,2,2,2019,2,1,24,12,40,40,15,1,1,3,0,30.855715,30.855715,0,0,0,0,0,0,0,0,0,0,0,1.5259763,0,0,0,40.900002,65.019997,57.16,56.150002,5,1,1,0,0,8,5,1,1203.75,208826.11,0,0,3886.2944 -14782,18137,33004,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,2,0,2.7620039,3.03649,3,0,0,0,-9,0,-905.90643,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.0527916,0,0,61.419998,35.650002,-9,-9,6,1,1,0,0,12,1,1,185,-108023.94,0,0,1850.8966 -14783,18138,33005,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,3,0,7.8471947,8.3213167,3,0,0,0,-9,0,-872.72717,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2359471,7.7882376,0,0,59.310001,49.810001,-9,-9,6,1,1,0,0,9,4,1,2613,1349178.9,0,0,3069.4358 -14784,18139,33006,33009,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,0,2,8.2121601,7.8467779,0,2,0,-9,9,0,-19,78.770699,0,0,1,57,2,3,1,2,2,2019,1,2,16,5,0,32,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5044875,0,0,0,28.1,43.669998,43.490002,43.599998,5,1,1,0,0,5,4,1,1211.5,427286.13,0,0,3497.3884 -14784,18139,33007,-9,33006,33009,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-937.96881,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,5,4,1,1211.5,427286.13,0,0,3497.3884 -14784,18139,33008,-9,33006,33009,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.9906,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,1211.5,427286.13,0,0,3497.3884 -14784,18139,33009,33006,-9,-9,2,1,1,57,1,0,2,0,2,-9,2,1,0,0,3,8.3384476,8.6518145,6.8269162,2,0,-9,9,0,19,-104.29964,0,0,0,38,1,2,1,2,3,2019,1,1,15,4,46,50,15,1,1,1,0,8.6723089,8.6723089,0,0,0,0,0,0,0,0,1,1,0,0,7.1155658,0,0,43.490002,43.599998,28.1,43.669998,4,1,1,0,0,5,4,1,1211.5,427286.13,0,0,3497.3884 -14785,18140,33010,-9,33013,33012,3,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.01764,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,6,4,1,404.60001,349150.19,0,0,3195.697 -14785,18140,33011,-9,33013,33012,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-888.05621,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,4,1,404.60001,349150.19,0,0,3195.697 -14785,18140,33012,33013,-9,-9,1,1,1,35,1,1,3,0,3,-9,2,1,0,0,2,8.4410429,8.4664736,0,2,0,-9,8,0,-2,29.483677,0,0,0,37,1,2,1,2,2,2019,1,2,10,0,43,42,15,1,0,1,0,11.85467,11.85467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.900002,46.48,54.209999,47.099998,5,1,1,0,0,6,4,1,404.60001,349150.19,0,0,3195.697 -14785,18140,33013,33012,-9,-9,2,1,0,37,1,1,3,0,1,-9,2,1,0,0,2,7.7518373,8.0053349,0,2,0,-9,8,0,2,26.452297,0,0,1,35,3,2,1,-9,-9,2019,1,1,12,3,22,48,15,1,0,1,0,14.437757,14.437757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.209999,47.099998,43.900002,46.48,5,1,1,0,0,6,4,1,404.60001,349150.19,0,0,3195.697 -14785,18140,33014,-9,33013,33012,4,1,1,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.04285,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,4,1,404.60001,349150.19,0,0,3195.697 -14786,18141,33015,33016,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,8.1450386,8.0969801,0,1,0,-9,46,0,-4,-102.54666,0,0,0,68,3,3,1,3,3,2019,1,2,12,1,16,24,15,1,0,1,0,21.856068,21.856068,0,0,0,0,0,0,0,7,1,1,0,4.2601881,0,2.2426901,3,57.09,46.700001,57.330002,53.459999,6,1,1,0,0,9,4,1,230,514834.13,0,0,7305.0156 -14786,18141,33016,33015,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,0,3,8.0101814,8.2410746,0,1,0,-9,46,0,4,-80.837112,0,0,0,64,2,3,1,3,3,2019,1,1,8,0,25,41,15,1,0,1,0,14.034671,14.034671,0,0,0,0,0,0,0,2,1,1,0,2.0145338,0,0,3,57.330002,53.459999,57.09,46.700001,5,1,1,0,0,9,4,1,230,514834.13,0,0,7305.0156 -14786,18142,33017,-9,-9,-9,3,1,0,21,2,0,0,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1061.1091,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.900002,57.990002,-9,-9,5,2,3,0,0,9,1,1,653,64565.551,0,0,0 -14787,18143,33018,-9,33020,33019,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,5,7.1510749,7.2055035,0,3,0,0,0,-9,0,-962.46191,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,43,0,15,1,0,-9,1,4.3598547,4.3598547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,-9,-9,5,1,1,0,0,4,3,1,995,-46985.102,0,0,1796.3612 -14787,18144,33019,33020,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.3276043,8.1953735,0,1,0,-9,5,0,2,-11.987659,0,0,0,47,2,4,1,-9,-9,2019,1,1,7,0,54,55,15,1,0,1,0,8.1711683,8.1711683,0,0,0,0,0,0,0,0,0,0,0,1.0617988,0,0,0,61.279999,48.880001,42.259998,61.970001,6,1,1,0,0,4,4,1,270,411782.03,0,0,1309.3977 -14787,18144,33020,33019,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,6.9275522,6.7645082,0,1,0,-9,5,0,-2,-36.319756,0,0,0,49,2,3,1,-9,-9,2019,1,2,13,3,16,28,15,1,0,1,0,6.0124278,6.0124278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.259998,61.970001,61.279999,48.880001,3,1,1,0,0,4,4,1,270,411782.03,0,0,1309.3977 -14788,18145,33021,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,3,0,7.3316898,7.3468275,3,0,0,0,-9,0,-1018.7224,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.0042496,7.63379,77.761673,3,41.650002,43.389999,-9,-9,3,1,1,0,1,10,3,1,744,354300.5,0,0,1152.558 -14789,18146,33022,-9,33023,33024,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.4283,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,4,1,1065.75,510281.78,0,0,3146.7356 -14789,18146,33023,33024,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,5,8.9984789,9.1088123,0,2,0,-9,15,0,-4,62.094254,0,0,0,49,1,5,3,2,2,2019,2,1,9,2,34,23,15,1,0,3,0,24.050241,24.050241,0,0,0,0,0,0,0,0,0,0,0,4.2593846,0,0,0,51.669998,60.18,57.459999,56.16,6,1,1,0,0,10,4,1,1065.75,510281.78,0,0,3146.7356 -14789,18146,33024,33023,-9,-9,1,1,1,49,1,0,2,0,1,-9,6,3,0,0,5,0,7.2580523,7.4748988,2,0,-9,14,0,4,-15.223752,0,0,0,45,1,5,1,2,2,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0293326,7.3570499,0,0,57.459999,56.16,51.669998,60.18,6,1,1,0,0,10,4,1,1065.75,510281.78,0,0,3146.7356 -14789,18146,33025,-9,33023,33024,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-933.75732,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,1065.75,510281.78,0,0,3146.7356 -14790,18147,33026,33027,-9,-9,2,1,1,45,1,0,0,0,2,-9,1,1,0,0,4,7.9786916,8.0491457,0,1,0,-9,2,0,-7,56.754604,-9,0,0,52,2,2,1,-9,-9,2019,1,1,9,1,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,26.34,50.669998,6,1,1,0,0,2,4,0,1003,-50666.195,0,0,2319.7744 -14790,18147,33027,33026,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,2,7.1719513,7.1151481,0,1,0,-9,2,0,7,12.254866,0,0,0,45,2,4,1,3,3,2019,1,2,24,11,20,22,15,1,1,1,0,7.5927386,7.5927386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.34,50.669998,52,55,2,1,1,0,0,2,4,0,1003,-50666.195,0,0,2319.7744 -14791,18148,33028,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,2,1,0,0,4,7.578351,7.8526893,0,3,0,0,0,-9,0,-981.17548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,30,15,1,0,-9,0,6.6961927,6.6961927,0,0,0,0,0,0,0,0,1,1,0,3.6214859,0,0,0,51.240002,58.84,-9,-9,1,1,1,0,0,5,3,1,358,427019.44,0,0,1827.1993 -14792,18149,33029,33030,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,0,4,8.5452557,8.7700853,0,1,0,-9,3,0,6,23.582979,0,0,0,50,3,3,1,2,2,2019,1,3,8,0,12,18,15,1,0,1,0,56.986301,56.986301,0,0,0,0,0,0,0,0,1,1,0,7.4818869,0,0,0,57.16,56.150002,46.080002,57.200001,6,1,1,0,0,11,5,1,656.5,1289076.3,0,0,4927.2251 -14792,18149,33030,33029,-9,-9,3,1,1,50,1,0,0,0,3,-9,2,1,0,0,3,8.1417093,8.2898712,0,1,0,-9,3,0,-6,-2.4511776,0,0,0,56,1,4,1,-9,-9,2019,1,1,12,0,40,36,15,1,0,1,0,10.671848,10.671848,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.757973,3,46.080002,57.200001,57.16,56.150002,3,1,1,0,0,11,5,1,656.5,1289076.3,0,0,4927.2251 -14792,18150,33031,-9,33029,33030,5,1,1,26,2,0,0,0,1,-9,1,1,0,0,4,7.6360984,7.2070155,0,3,0,-9,0,-9,0,-986.08502,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,40,0,15,1,0,-9,1,6.5076766,6.5076766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,3,1,366,-146371.88,0,0,1127.4215 -14792,18151,33032,-9,-9,-9,4,1,0,46,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1008.9871,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,11,1,1,177,41210.32,0,0,1727.9185 -14792,18152,33033,-9,-9,-9,2,1,1,23,2,0,0,0,3,1,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1003.2316,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,11,1,1,320,0,0,0,1855.7266 -14793,18153,33034,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,0,5,0,6.6662526,7.1445713,3,0,0,0,-9,0,-1116.8887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7602816,6.9523191,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,7,2,1,866,473007.34,0,0,1636.6196 -14794,18154,33035,-9,33037,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.1029,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,0,1025.5,177036.14,0,0,1658.0964 -14794,18154,33036,-9,33037,-9,3,1,0,4,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-926.3623,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,1025.5,177036.14,0,0,1658.0964 -14794,18154,33037,-9,-9,-9,1,1,0,24,2,1,3,0,2,-9,6,3,0,0,3,0,5.5599198,6.0929484,4,0,0,0,-9,0,-982.27246,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5509424,0,0,0,44,53,-9,-9,7,1,1,0,0,5,2,0,1025.5,177036.14,0,0,1658.0964 -14794,18154,33038,-9,33037,-9,2,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-904.42987,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,1025.5,177036.14,0,0,1658.0964 -14795,18155,33039,33042,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,4,8.5839243,8.7893162,0,2,0,-9,18,0,1,55.468056,0,0,0,47,1,3,1,1,1,2019,1,2,11,0,54,48,15,1,0,1,0,14.589515,14.589515,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,42.119999,61.5,48.200001,52.060001,5,1,1,0,0,13,5,1,441.5,532643.63,0,0,5272.2788 -14795,18155,33040,-9,33042,33039,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1014.9481,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,13,5,1,441.5,532643.63,0,0,5272.2788 -14795,18155,33041,-9,33042,33039,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-908.00714,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,13,5,1,441.5,532643.63,0,0,5272.2788 -14795,18155,33042,33039,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,0,3,8.6507502,8.8939371,0,2,0,-9,18,0,-1,-76.131981,0,0,0,48,1,4,1,1,2,2019,1,1,10,0,52,47,15,1,0,1,0,11.803436,11.803436,0,0,0,0,0,0,0,27.5,1,1,0,.40585867,0,20.354176,3,48.200001,52.060001,42.119999,61.5,6,1,1,0,0,13,5,1,441.5,532643.63,0,0,5272.2788 -14796,18156,33043,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,4,0,5.9733953,5.6713929,3,0,0,0,-9,0,-1036.491,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,1.3994052,0,0,1,1,0,0,5.817399,0,0,38.939999,54.950001,-9,-9,4,1,1,0,0,10,2,0,1103,398499.31,0,0,447.46332 -14797,18157,33044,33045,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,0,5,0,8.7033892,8.881485,1,0,-9,54,0,5,25.261944,0,0,0,72,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2903233,9.1627541,0,0,60.02,56.419998,59.529999,56.439999,7,1,1,0,0,7,5,1,613.5,2068934.8,0,0,6871.2676 -14797,18157,33045,33044,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.66927,7.4480362,1,0,-9,53,0,-5,-105.70272,0,0,0,77,1,5,3,2,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4058995,7.4247875,0,0,59.529999,56.439999,60.02,56.419998,7,1,1,0,0,7,5,1,613.5,2068934.8,0,0,6871.2676 -14798,18158,33046,33047,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,4,0,6.4759536,6.5638685,1,0,-9,46,0,-2,-64.874527,0,0,0,67,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3722229,0,0,57.16,56.150002,48.849998,58.560001,6,1,1,0,0,12,3,1,1240.5,1406946.5,0,0,2819.625 -14798,18158,33047,33046,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.5521879,7.5362797,1,0,-9,47,0,2,49.774998,0,0,0,65,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1295304,7.5532703,0,0,48.849998,58.560001,57.16,56.150002,7,1,1,0,0,12,3,1,1240.5,1406946.5,0,0,2819.625 -14799,18159,33048,-9,-9,-9,1,1,1,32,3,0,0,0,2,-9,2,1,0,0,5,8.8395262,8.8288784,0,3,0,0,0,-9,0,-1067.639,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,47,57,15,1,0,-9,0,18.332907,18.332907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.869999,-9,-9,6,1,1,0,0,5,5,1,183,157077.03,0,0,2476.1501 -14800,18160,33049,33050,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,6.4315915,6.7997227,1,0,-9,4,0,-1,12.983955,0,0,0,78,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3055229,0,0,48.450001,57.490002,60.119999,33.360001,6,1,1,0,0,4,2,1,1215,1622798,0,0,2178.4583 -14800,18160,33050,33049,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,2,0,5.0241656,5.0136862,1,0,-9,4,0,1,96.127983,0,0,0,77,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1197371,0,0,60.119999,33.360001,48.450001,57.490002,6,1,1,0,0,4,2,1,1215,1622798,0,0,2178.4583 -14801,18161,33051,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,97,3,0,1,1,0,0,0,3,0,0,0,-9,0,-997.43628,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,6,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.099998,23.620001,-9,-9,2,1,1,0,0,6,1,0,768,-34263.203,0,0,1552.2708 -14802,18162,33052,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,1,0,7.7184958,7.9066768,3,0,0,0,-9,0,-989.78918,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3270125,7.9405494,0,0,43.68,28.790001,-9,-9,3,1,1,0,0,11,3,1,370,400914.22,0,0,1600.1289 -14803,18163,33053,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,0,3,8.3550282,8.4939737,0,3,0,0,0,-9,0,-831.73395,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,37,36,15,1,0,-9,0,11.556221,11.556221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,48.330002,-9,-9,5,1,1,0,0,13,4,1,1623,97998.148,0,0,999.39178 -14804,18164,33054,33055,-9,-9,1,1,0,32,1,0,3,0,2,-9,2,1,0,0,4,7.0284348,7.4435973,6.1710358,2,0,-9,12,0,-3,63.423412,0,0,1,35,1,3,1,2,2,2019,1,2,12,2,15,18,15,1,0,1,0,9.3861542,9.3861542,0,0,0,0,0,0,0,0,1,1,0,6.4574175,0,0,0,38.18,60.549999,38.209999,51.330002,5,1,1,0,0,2,2,1,489.33334,107500.37,0,0,1624.4918 -14804,18164,33055,33054,-9,-9,2,1,1,35,1,0,3,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,12,0,3,-7.4722853,0,0,0,32,2,4,1,2,2,2019,1,1,12,1,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.209999,51.330002,38.18,60.549999,4,1,1,0,1,2,2,1,489.33334,107500.37,0,0,1624.4918 -14804,18164,33056,-9,33054,33055,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.66791,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,2,1,489.33334,107500.37,0,0,1624.4918 -14805,18165,33057,33058,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.1145992,6.4674153,1,0,-9,5,0,6,23.921495,0,0,0,58,1,3,1,2,2,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6246576,7.0504284,0,0,45.580002,55.84,49,48,5,1,1,0,0,8,3,1,433,1105606.9,0,0,4338.6733 -14805,18165,33058,33057,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.345767,8.3543072,0,1,0,-9,5,0,-6,54.078777,0,0,0,64,2,4,3,3,2,2019,2,1,11,2,24,16,15,1,0,4,0,17.808071,17.808071,0,0,0,0,0,0,0,0,0,0,0,1.1540651,0,0,0,49,48,45.580002,55.84,5,1,1,0,0,8,3,1,433,1105606.9,0,0,4338.6733 -14805,18166,33059,-9,33058,33057,3,1,0,23,2,0,0,0,1,1,2,1,0,0,4,7.6072693,7.5007505,0,3,0,0,0,-9,0,-1104.5525,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,40,0,15,1,0,-9,1,6.4012423,6.4012423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,8,3,1,925,4029.4294,0,0,1489.178 -14806,18167,33060,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,4,5.7120142,7.8503361,8.287219,3,0,0,0,-9,0,-1018.4669,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,16,21,15,1,0,-9,0,1.6618565,1.6618565,0,0,0,0,0,0,0,0,1,1,0,0,8.1551714,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,4,1,801,153209.19,0,0,1353.377 -14807,18168,33061,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,7.9517293,7.9649568,0,3,0,0,0,-9,0,-1191.6458,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,40,44,15,1,0,-9,0,8.7015629,8.7015629,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.578081,3,52.310001,58.290001,-9,-9,7,1,1,0,0,12,4,0,450,-53311.688,0,0,742.9201 -14808,18169,33062,-9,33063,33065,5,1,1,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.49268,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,742.40002,718045.75,0,0,6448.835 -14808,18169,33063,33065,-9,-9,2,1,0,38,1,1,3,0,1,-9,2,1,0,0,5,9.2687817,9.2256269,0,2,0,-9,7,0,-2,-19.306786,0,0,1,40,1,5,1,-9,-9,2019,1,1,8,0,34,36,15,1,0,1,0,46.839993,46.839993,0,0,0,0,0,0,0,0,0,0,0,.35740185,0,0,0,57.060001,57.759998,62.389999,56.709999,7,1,1,0,0,12,5,1,742.40002,718045.75,0,0,6448.835 -14808,18169,33064,-9,33063,33065,4,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.8891,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,742.40002,718045.75,0,0,6448.835 -14808,18169,33065,33063,-9,-9,1,1,1,40,1,1,3,0,1,-9,2,1,0,0,5,9.1924534,8.720067,0,2,0,-9,7,0,2,3.482846,0,0,0,38,1,5,1,2,1,2019,1,2,6,0,42,42,15,1,0,1,0,29.66662,29.66662,0,0,0,0,0,0,0,0,0,0,0,2.8124709,0,0,0,62.389999,56.709999,57.060001,57.759998,7,1,1,0,0,12,5,1,742.40002,718045.75,0,0,6448.835 -14808,18169,33066,-9,33063,33065,3,1,1,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.2026,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,742.40002,718045.75,0,0,6448.835 -14809,18170,33067,33068,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,2,8.4114933,8.6537952,0,1,0,-9,28,0,7,7.8660793,0,0,0,48,3,3,1,-9,-9,2019,1,1,13,2,45,42,15,1,0,1,0,14.046002,14.046002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.18,43.889999,44.439999,51.200001,3,1,1,0,0,9,5,1,2056.5,523829.5,0,0,3922.2866 -14809,18170,33068,33067,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,0,3,8.3865995,8.6901398,0,1,0,-9,28,0,-7,53.433094,0,0,0,55,2,2,1,2,2,2019,1,2,10,0,37,37,15,1,0,1,0,15.035807,15.035807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.439999,51.200001,55.18,43.889999,5,1,1,0,0,9,5,1,2056.5,523829.5,0,0,3922.2866 -14810,18171,33069,33070,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,8.1082592,7.9983592,0,1,0,-9,7,0,-2,10.106667,0,0,0,63,1,3,1,2,1,2019,1,1,13,1,44,45,15,1,0,1,0,8.4593897,8.4593897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,46.080002,57.200001,6,1,1,0,0,9,5,1,1124,1860100.1,0,0,6672.6479 -14810,18171,33070,33069,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,0,3,9.3693409,9.5570478,8.1019659,1,0,-9,42,0,2,94.815483,0,0,0,61,2,4,1,2,2,2019,1,2,9,0,36,40,15,1,0,1,0,32.853844,32.853844,0,0,0,0,0,0,0,0,1,1,0,7.3834743,8.5492334,0,0,46.080002,57.200001,45.91,59.889999,6,1,1,0,0,9,5,1,1124,1860100.1,0,0,6672.6479 -14810,18172,33071,33072,33069,33070,3,1,1,33,1,0,0,0,3,-9,2,1,0,0,2,8.6767092,8.3746614,0,1,0,-9,1,-9,6,-11.930367,-9,0,0,27,2,5,3,2,1,2019,2,4,6,1,39,0,15,1,0,3,0,18.759405,18.759405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.049999,47.860001,54.689999,57.470001,6,1,1,0,0,9,4,1,446,307215.13,0,0,2484.3066 -14810,18172,33072,33071,-9,-9,4,1,0,27,1,0,0,0,2,-9,3,3,0,0,5,0,0,0,1,0,-9,1,-9,-6,-68.614952,-9,0,1,33,3,2,1,-9,-9,2019,3,3,13,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,53.049999,47.860001,6,1,1,1,1,9,4,1,446,307215.13,0,0,2484.3066 -14811,18173,33073,-9,-9,-9,1,1,0,24,2,0,0,0,3,-9,1,1,0,0,3,8.7416096,8.9582491,0,3,0,0,0,-9,0,-974.09778,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,21,9,35,28,15,1,1,-9,0,22.550049,22.550049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.040001,55.919998,-9,-9,3,4,2,0,0,8,5,0,1067,-56783.652,0,0,2966.9133 -14812,18174,33074,-9,33076,33075,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.9278,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,10,3,1,698.66669,1074190,0,0,2535.429 -14812,18174,33075,33076,-9,-9,1,1,1,64,1,0,1,0,2,-9,1,1,0,0,3,.91340333,.71140397,0,2,0,-9,14,0,15,101.52566,0,0,0,49,1,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,.0040186625,.0040186625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,28.82,50.060001,55.279999,6,3,4,0,0,10,3,1,698.66669,1074190,0,0,2535.429 -14812,18174,33076,33075,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,8.3160486,8.5975466,0,2,0,-9,14,0,-15,-83.396027,0,0,0,64,2,3,1,-9,-9,2019,1,1,7,0,35,35,15,1,0,1,0,10.869338,10.869338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.060001,55.279999,52.57,28.82,6,1,1,0,0,10,3,1,698.66669,1074190,0,0,2535.429 -14813,18175,33077,-9,33079,33078,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.4683,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,1,496.33334,167349.94,0,0,1457.5872 -14813,18175,33078,33079,-9,-9,2,1,1,43,1,0,3,0,1,-9,3,3,0,1,1,0,0,0,2,0,-9,15,0,4,0,0,0,0,39,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.689999,33,47.790001,53.790001,5,2,3,1,1,8,1,1,496.33334,167349.94,0,0,1457.5872 -14813,18175,33079,33078,-9,-9,1,1,0,39,1,0,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,-4,0,0,0,1,43,1,1,3,3,2,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.3059492,3,47.790001,53.790001,49.689999,33,5,2,3,0,0,8,1,1,496.33334,167349.94,0,0,1457.5872 -14814,18176,33080,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,2,8.6011982,8.1967325,0,3,0,0,0,-9,0,-864.62561,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,3,36,36,15,1,0,-9,0,14.519133,14.519133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,47.040001,-9,-9,6,3,4,0,1,8,4,1,366,1178097.3,0,0,3057.9021 -14814,18177,33081,-9,-9,-9,3,1,0,32,3,0,0,0,1,-9,6,3,0,0,5,0,0,0,3,0,0,0,-9,0,-959.69763,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.209999,59.91,-9,-9,6,3,4,0,1,8,1,1,1853,166814.3,0,0,618.41571 -14815,18178,33082,33083,-9,-9,1,1,1,53,1,0,0,0,2,-9,4,3,0,1,4,0,0,0,1,0,-9,23,0,1,-25.999903,0,0,0,52,2,1,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4394946,0,0,0,53,55,21.49,30.940001,6,1,1,0,0,5,2,0,588.5,241154.3,0,0,2981.5278 -14815,18178,33083,33082,-9,-9,2,1,0,52,1,0,0,0,2,-9,4,3,0,1,1,0,6.3609428,6.2118855,1,0,-9,23,0,-1,-30.214155,0,0,0,53,2,4,3,3,3,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.1474476,6.0431275,72.450562,2,21.49,30.940001,53,55,2,1,1,0,0,5,2,0,588.5,241154.3,0,0,2981.5278 -14816,18179,33084,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,0,3,7.7985559,7.7590427,0,4,0,-9,0,-9,0,-1051.7437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,30,0,15,1,0,-9,0,10.867361,10.867361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,4,1,1,0,0,10,3,1,1011,-115926.19,0,0,1364.0112 -14816,18180,33085,-9,33084,-9,3,1,1,22,2,0,1,0,2,-9,2,1,0,0,3,8.1528311,7.7332468,0,3,0,-9,0,-9,0,-975.37463,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,37,0,15,1,1,-9,1,14.561475,14.561475,0,0,0,0,0,0,0,0,1,1,0,.50443864,0,0,0,32.5,56.799999,-9,-9,4,1,1,0,0,10,4,1,181,63763.551,0,0,2227.4922 -14816,18181,33086,-9,33084,-9,2,1,1,18,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-930.77271,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.23,68.419998,-9,-9,2,1,1,0,0,10,4,1,348,0,0,0,0 -14817,18182,33087,33089,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,0,3,8.4436865,8.4984207,0,2,0,-9,5,0,1,86.785965,0,0,1,29,2,4,1,2,2,2019,1,2,6,0,38,30,15,1,0,1,0,12.651816,12.651816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,51.830002,57.200001,6,1,1,0,0,2,4,0,1201.3334,105830.61,0,0,1632.0121 -14817,18182,33088,-9,33087,33089,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.0396,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,4,0,1201.3334,105830.61,0,0,1632.0121 -14817,18182,33089,33087,-9,-9,2,1,1,29,1,0,1,0,2,-9,2,1,0,0,4,6.3719893,6.3576899,0,2,0,-9,5,0,-1,79.937157,0,1,0,30,2,3,1,2,2,2019,1,1,5,0,45,38,15,1,0,1,0,1.803448,1.803448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,52,54.509998,6,1,1,0,0,2,4,0,1201.3334,105830.61,0,0,1632.0121 -14818,18183,33090,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,0,1,8.5132532,8.5724792,0,3,0,0,0,-9,0,-1004.8797,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,40,39,15,1,1,-9,0,11.333389,11.333389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.970001,34.060001,-9,-9,2,1,1,0,1,6,4,0,544,2047661.4,0,0,390.06107 -14819,18184,33091,-9,33093,33094,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.59216,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,267.25,1325420.5,0,0,3325.0208 -14819,18184,33092,-9,33093,33094,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-939.36053,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,267.25,1325420.5,0,0,3325.0208 -14819,18184,33093,33094,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,3,8.1689787,8.1981192,0,2,0,-9,18,0,4,-96.598244,0,0,0,41,1,4,1,3,2,2019,1,2,10,0,39,35,15,1,0,1,0,9.4737349,9.4737349,0,0,0,0,0,0,0,0,1,1,0,3.6533206,0,0,0,38.259998,60.700001,54.200001,57.490002,6,1,1,0,0,9,5,1,267.25,1325420.5,0,0,3325.0208 -14819,18184,33094,33093,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,0,4,9.062685,9.1647673,0,2,0,-9,18,0,-4,-46.571697,0,0,0,45,2,3,1,2,2,2019,1,1,6,0,38,38,15,1,0,1,0,23.560631,23.560631,0,0,0,0,0,0,0,0,1,1,0,3.7423236,0,0,0,54.200001,57.490002,38.259998,60.700001,6,1,1,0,0,9,5,1,267.25,1325420.5,0,0,3325.0208 -14820,18185,33095,33096,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.3884964,8.085947,0,1,0,-9,28,0,-5,-28.799934,0,0,0,51,2,4,3,2,1,2019,2,2,8,0,38,44,15,1,0,3,0,14.549793,14.549793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,52,53,5,1,1,0,0,5,4,1,1742.5,135594.84,0,0,2371.9963 -14820,18185,33096,33095,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,6,0,5,-212.63905,0,0,0,46,2,4,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,51.830002,57.200001,6,1,1,0,0,5,4,1,1742.5,135594.84,0,0,2371.9963 -14821,18186,33097,33098,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,7.8084807,8.0583191,0,2,0,-9,28,0,-2,30.234583,0,0,0,50,2,4,1,2,2,2019,1,2,11,1,31,27,15,1,0,1,0,8.7019806,8.7019806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.709999,53.209999,54.290001,40.889999,5,1,1,0,0,6,2,1,279,346948.75,0,0,819.4245 -14821,18186,33098,33097,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,28,0,2,29.126982,0,0,0,48,2,4,1,2,2,2019,1,1,4,0,0,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4975429,0,0,0,54.290001,40.889999,39.709999,53.209999,6,1,1,0,0,6,2,1,279,346948.75,0,0,819.4245 -14821,18186,33099,-9,33097,33098,4,1,1,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1008.3248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,6,2,1,279,346948.75,0,0,819.4245 -14822,18187,33100,-9,33101,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,0,4,9.2258024,8.5883627,0,3,0,0,0,-9,0,-938.02673,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,45,41,15,1,0,-9,1,18.450642,18.450642,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,66.199997,38.34,-9,-9,6,1,1,0,0,12,5,1,319,598480.25,0,0,1628.4138 -14822,18188,33101,-9,-9,-9,2,1,0,85,3,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-996.78204,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6007414,0,0,0,53,44,-9,-9,6,1,1,0,0,12,1,1,808,47125.906,0,0,754.81335 -14823,18189,33102,33103,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,8.4016867,8.4821243,0,1,0,-9,9,0,-6,70.055336,0,0,1,50,2,3,1,2,2,2019,1,1,7,0,38,38,15,1,0,1,0,16.039539,16.039539,0,0,0,0,0,0,0,0,0,0,0,7.3218508,0,0,0,60.119999,54.799999,27.99,54.970001,6,1,1,0,0,13,5,1,301.5,105006.17,0,0,3299.6104 -14823,18189,33103,33102,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,8.7941971,8.5621405,0,1,0,-9,9,0,6,47.978745,0,0,0,44,2,4,1,2,2,2019,1,2,12,0,78,47,15,1,0,1,0,9.8024988,9.8024988,0,0,0,0,0,0,0,0,0,0,0,1.7829218,0,0,0,27.99,54.970001,60.119999,54.799999,5,1,1,0,0,13,5,1,301.5,105006.17,0,0,3299.6104 -14823,18190,33104,-9,33102,33103,3,1,1,21,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-970.13922,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,13,1,1,751,0,0,0,0 -14823,18191,33105,-9,33102,33103,4,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.5951996,7.8841939,0,3,0,0,0,-9,0,-957.97638,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,20,15,1,0,-9,1,5.893446,5.893446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,1431,127842.42,0,0,-279.92325 -14824,18192,33106,-9,33107,33108,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-975.80524,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,3,1,737,317500.84,0,0,2724.8525 -14824,18192,33107,33108,-9,-9,1,1,0,30,1,1,2,0,1,-9,5,1,0,0,4,7.8808861,8.0932503,0,2,0,-9,8,0,-3,-85.408051,0,0,1,33,1,3,3,3,3,2019,2,2,8,1,32,32,15,1,0,3,0,10.648501,10.648501,0,0,0,0,0,0,0,0,1,1,0,2.1089532,0,0,0,52.919998,47.299999,36.18,48.299999,6,1,1,0,0,5,3,1,737,317500.84,0,0,2724.8525 -14824,18192,33108,33107,-9,-9,2,1,1,33,1,1,2,0,1,-9,3,3,0,0,3,7.2250977,7.027904,0,2,0,-9,8,0,3,-77.086349,0,0,0,30,1,4,1,-9,-9,2019,3,1,14,5,0,48,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,48.299999,52.919998,47.299999,2,1,1,1,1,5,3,1,737,317500.84,0,0,2724.8525 -14824,18192,33109,-9,33107,33108,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.73566,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,3,1,737,317500.84,0,0,2724.8525 -14825,18193,33110,33111,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,2,0,6.8374882,6.9673753,1,0,-9,45,0,3,75.016121,0,0,0,62,2,4,1,3,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.0886788,6.1214576,0,0,61.099998,16.91,51.240002,58.84,5,1,1,0,0,10,4,1,616,1352280.6,0,0,3359.8147 -14825,18193,33111,33110,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,8.2025061,7.9823198,4.4951005,1,0,-9,45,0,-3,103.07542,0,0,0,65,2,2,3,2,2,2019,2,2,10,0,39,35,15,1,0,4,0,11.011871,11.011871,0,0,0,0,0,0,0,0,1,1,0,5.6554656,5.0018263,0,1,51.240002,58.84,61.099998,16.91,6,1,1,0,0,10,4,1,616,1352280.6,0,0,3359.8147 -14826,18194,33112,-9,33113,33115,4,1,0,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1209.548,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,1040,1107872,0,0,3805.124 -14826,18194,33113,33115,-9,-9,1,1,0,43,1,0,2,0,3,-9,2,1,0,0,4,7.555644,8.1205759,0,2,0,-9,6,0,1,41.03587,0,0,1,42,2,4,1,-9,2,2019,1,3,12,0,42,39,15,1,0,1,0,6.815433,6.815433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,44.189999,56.73,5,1,1,0,0,2,4,1,1040,1107872,0,0,3805.124 -14826,18194,33114,-9,33113,33115,5,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-825.41479,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,4,1,1040,1107872,0,0,3805.124 -14826,18194,33115,33113,-9,-9,3,1,1,42,1,0,2,0,2,-9,2,1,0,0,4,8.8025904,8.8898573,0,2,0,-9,6,0,-1,-21.122797,0,0,0,43,3,4,1,1,1,2019,1,1,14,2,46,48,15,1,0,1,0,20.062263,20.062263,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,56.73,51.240002,58.84,5,1,1,0,0,2,4,1,1040,1107872,0,0,3805.124 -14826,18195,33116,-9,33113,33115,2,1,0,19,2,0,2,0,2,-9,2,1,0,0,4,7.6015306,7.3924661,0,3,0,0,0,-9,0,-1070.5132,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,38,0,15,1,0,-9,1,6.3448186,6.3448186,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,2,1,1,0,0,2,3,1,788,-59514.133,0,0,1217.4204 -14827,18196,33117,33118,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.4031029,7.1068997,1,0,-9,10,0,2,59.463894,0,0,0,66,3,4,3,-9,-9,2019,4,1,10,1,0,45,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2725005,0,0,51,48,54.790001,55.860001,5,1,1,0,0,9,2,1,636.5,1150203.5,0,0,2025.1741 -14827,18196,33118,33117,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,-2,-57.861263,0,0,0,68,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4311728,0,0,0,54.790001,55.860001,51,48,6,1,1,0,0,9,2,1,636.5,1150203.5,0,0,2025.1741 -14828,18197,33119,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,0,2,7.7724142,7.9554734,6.1549997,4,0,0,0,-9,0,-1025.4475,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,13,3,17,16,15,1,0,-9,0,14.416554,14.416554,0,0,0,0,0,0,0,0,1,1,0,5.8181791,0,0,0,46.389999,27.559999,-9,-9,6,1,1,0,0,13,3,0,766,-6530.1108,0,0,880.0249 -14829,18198,33120,33121,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,5,9.0712833,8.9832497,0,1,0,-9,8,0,-8,110.96673,0,0,0,58,1,2,1,2,2,2019,1,1,9,0,46,45,15,1,0,1,0,25.551682,25.551682,0,0,0,0,0,0,0,0,0,0,0,4.0247884,0,0,0,49.02,58.889999,43.990002,42.310001,6,1,1,0,0,7,5,1,855.5,1679901.4,0,0,5098.123 -14829,18198,33121,33120,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,0,2,8.4693422,8.9206095,0,1,0,-9,8,0,8,19.014177,0,0,0,50,2,5,1,3,3,2019,1,2,11,0,24,35,15,1,0,1,0,29.638227,29.638227,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.326973,3,43.990002,42.310001,49.02,58.889999,6,1,1,0,0,7,5,1,855.5,1679901.4,0,0,5098.123 -14830,18199,33122,33124,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,8.8283033,9.2083387,0,2,0,-9,10,0,0,-60.949512,0,0,1,44,2,3,1,-9,-9,2019,1,1,13,1,38,44,15,1,0,1,0,21.8853,21.8853,0,0,0,0,0,0,0,0,1,1,0,4.7154984,0,0,0,31.040001,58.939999,54.34,29.040001,5,1,1,0,0,11,5,1,1531.25,608818.06,0,0,5174.2793 -14830,18199,33123,-9,33122,33124,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.2523,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,5,1,1531.25,608818.06,0,0,5174.2793 -14830,18199,33124,33122,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,8.5941439,8.3913221,0,2,0,-9,20,0,0,-27.071714,0,0,0,44,1,3,1,2,2,2019,1,2,15,4,40,38,15,1,1,1,0,17.792746,17.792746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.34,29.040001,31.040001,58.939999,5,1,1,0,0,11,5,1,1531.25,608818.06,0,0,5174.2793 -14830,18199,33125,-9,33122,33124,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.35657,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,5,1,1531.25,608818.06,0,0,5174.2793 -14831,18200,33126,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.9680538,7.9164934,0,3,0,-9,0,-9,0,-951.80347,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,37,15,1,0,-9,0,7.8123779,7.8123779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,12,3,0,785,-36592.715,0,0,1418.5203 -14831,18201,33127,-9,-9,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,0,3,8.1238718,8.5610905,0,3,0,-9,0,-9,0,-875.09839,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,0,15,1,0,-9,0,10.020626,10.020626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,44.400002,-9,-9,6,1,1,0,0,12,4,0,1061,-106603.32,0,0,30.084532 -14832,18202,33128,-9,-9,-9,1,1,1,96,3,0,0,0,1,-9,4,3,0,0,3,0,8.423028,8.567812,3,0,0,0,-9,0,-1021.1243,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9627318,8.6251411,0,0,48.82,42.419998,-9,-9,3,1,1,0,0,9,5,1,358,381151.25,0,0,2292.0771 -14832,18203,33129,33130,-9,-9,3,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,8.0339355,7.8108716,0,1,0,-9,1,-9,-18,100.18579,-9,0,0,51,2,5,1,-9,-9,2019,1,2,23,8,37,0,15,1,1,1,0,7.3906345,7.3906345,0,0,0,0,0,0,0,0,1,1,0,5.0307746,0,0,0,28.799999,50.02,44.91,59.07,6,2,3,0,0,9,3,1,1098.5,49843.098,0,0,2716.4609 -14832,18203,33130,33129,-9,33128,2,1,0,51,1,0,0,0,2,-9,1,1,0,0,5,6.8429999,7.1610012,0,1,0,-9,1,-9,18,-94.836472,-9,0,0,33,1,4,1,-9,1,2019,1,3,11,0,10,0,15,1,0,1,0,11.879593,11.879593,0,0,0,0,0,0,0,14.5,1,1,0,7.5798159,0,8.6860094,3,44.91,59.07,28.799999,50.02,6,1,1,0,0,9,3,1,1098.5,49843.098,0,0,2716.4609 -14833,18204,33131,33132,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,1,3,0,6.2236614,6.6257834,1,0,-9,55,0,-5,-83.132202,0,0,0,76,1,1,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,12.59209,0,0,0,0,71.5,1,1,0,0,6.2959929,79.989624,1,51,47,27.889999,18.610001,5,2,3,0,0,4,2,0,481.5,426078.66,0,0,1466.6451 -14833,18204,33132,33131,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,1,1,0,0,0,1,0,-9,55,0,5,-19.680647,0,0,0,71,2,3,3,3,2,2019,4,2,14,6,0,0,15,4,1,4,0,0,0,1,0,122.22512,0,0,6.4502411,0,5.48,1,1,0,0,0,.91420156,1,27.889999,18.610001,51,47,6,2,3,0,0,4,2,0,481.5,426078.66,0,0,1466.6451 -14834,18205,33133,33134,-9,-9,3,1,1,38,1,0,3,0,2,-9,2,1,0,0,4,8.9180365,8.8591413,0,2,0,-9,6,0,2,-59.008759,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,1,37,40,15,1,0,1,0,19.682711,19.682711,0,0,0,0,0,0,0,0,0,0,0,7.1498189,0,0,0,51,56,54.200001,57.490002,6,1,1,0,0,11,5,1,654.79999,826440.81,0,0,6223.312 -14834,18205,33134,33133,-9,-9,1,1,0,36,1,0,3,0,1,-9,2,1,0,0,4,8.5628433,8.8960133,0,2,0,-9,6,0,-2,77.826645,0,0,1,38,2,4,1,2,2,2019,1,3,6,0,41,40,15,1,0,1,0,22.315922,22.315922,0,0,0,0,0,0,0,0,0,0,0,3.425247,0,0,0,54.200001,57.490002,51,56,6,1,1,0,0,11,5,1,654.79999,826440.81,0,0,6223.312 -14834,18205,33135,-9,33134,33133,2,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.5492,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,654.79999,826440.81,0,0,6223.312 -14834,18205,33136,-9,33134,33133,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.435,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,11,5,1,654.79999,826440.81,0,0,6223.312 -14834,18205,33137,-9,33134,33133,4,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.48718,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,654.79999,826440.81,0,0,6223.312 -14835,18206,33138,33139,-9,-9,2,1,1,71,1,0,0,0,3,-9,2,1,0,1,3,8.0427151,8.3277683,3.1967502,1,0,-9,6,0,-1,-53.48225,0,0,0,72,2,3,3,-9,-9,2019,2,1,7,2,22,55,15,1,0,4,0,20.334135,20.334135,0,0,0,0,0,0,0,0,1,1,0,3.8461685,3.5463536,0,0,65.150002,23.76,62.189999,33.349998,1,1,1,0,0,9,3,1,230,558649.75,0,0,3590.9082 -14835,18206,33139,33138,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,3.9877641,3.9380968,1,0,-9,53,0,1,20.704941,0,0,0,71,3,3,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2453799,3.9871213,15.826918,1,62.189999,33.349998,65.150002,23.76,7,1,1,0,0,9,3,1,230,558649.75,0,0,3590.9082 -14836,18207,33140,33141,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,44,0,-6,0,0,0,0,71,3,3,3,3,3,2019,4,1,17,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.16,23.129999,62.66,52.400002,6,1,1,0,0,2,1,0,539,306585.38,0,0,1224.9364 -14836,18207,33141,33140,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,45,0,6,0,0,0,0,65,2,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,53.16,23.129999,7,1,1,0,0,2,1,0,539,306585.38,0,0,1224.9364 -14837,18208,33142,-9,33143,33145,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1124.4371,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,9,5,1,585.25,1615329.8,0,0,6294.5923 -14837,18208,33143,33145,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,4,9.0512686,9.0430079,0,2,0,-9,25,0,0,4.4603167,0,0,0,46,1,5,1,3,3,2019,1,1,14,4,29,34,15,1,1,1,0,30.902422,30.902422,0,0,0,0,0,0,0,0,0,0,0,2.2478001,0,0,0,48.810001,59.91,51.73,58.82,6,4,2,0,0,9,5,1,585.25,1615329.8,0,0,6294.5923 -14837,18208,33144,-9,33143,33145,3,1,0,17,2,0,2,1,2,-9,7,2,0,0,4,3.9783232,3.7206135,0,2,0,0,0,-9,0,-964.52063,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.970001,56.110001,-9,-9,6,4,2,0,0,9,5,1,585.25,1615329.8,0,0,6294.5923 -14837,18208,33145,33143,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,9.5982084,9.2484751,0,2,0,-9,25,0,0,-84.783585,0,0,0,46,1,4,1,1,1,2019,1,2,12,4,37,42,15,1,1,1,0,37.592331,37.592331,0,0,0,0,0,0,0,0,0,0,0,3.9371605,0,0,0,51.73,58.82,48.810001,59.91,6,1,1,0,0,9,5,1,585.25,1615329.8,0,0,6294.5923 -14838,18209,33146,33147,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,2,0,7.9384904,8.3338404,1,0,-9,4,-9,-2,-9.6518564,-9,0,0,67,1,4,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1571283,0,0,40.150002,32.060001,54.200001,57.490002,5,1,1,0,0,12,4,1,412,1447144.3,0,0,3361.4998 -14838,18209,33147,33146,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,0,4,0,7.5373526,7.6317706,1,0,-9,4,-9,2,14.12709,-9,0,0,65,2,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6108546,7.6857324,0,0,54.200001,57.490002,40.150002,32.060001,7,1,1,0,0,12,4,1,412,1447144.3,0,0,3361.4998 -14839,18210,33148,33149,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.2775702,7.4294186,1,0,-9,39,0,-3,-59.978661,0,0,0,80,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.441659,7.5735893,0,3,54.740002,57.220001,44.66,42.689999,6,1,1,0,0,12,3,1,368.5,716395,0,0,2536.1743 -14839,18210,33149,33148,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,6.945693,7.2989221,1,0,-9,39,0,3,-107.51675,0,0,0,77,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5900273,7.1457624,0,0,44.66,42.689999,54.740002,57.220001,5,1,1,0,0,12,3,1,368.5,716395,0,0,2536.1743 -14840,18211,33150,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,1,1,0,0,4,7.7766142,8.0772066,0,3,0,0,0,-9,0,-1083.2388,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,40,0,15,1,0,-9,0,8.027957,8.027957,0,0,0,0,0,0,0,0,1,1,0,7.1908641,0,0,0,49,58,-9,-9,5,1,1,0,0,4,4,1,1193,-17773.057,0,0,3261.9697 -14840,18212,33151,33152,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,5.3502617,5.4346542,1,0,-9,6,0,-2,63.698521,0,0,0,74,3,2,3,-9,-9,2019,4,3,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.2033539,5.3338814,121.10557,1,31.58,33.119999,31.389999,22.42,3,1,1,0,0,4,2,1,960.5,261309.72,0,0,1889.0244 -14840,18212,33152,33151,-9,-9,3,1,1,74,1,0,0,0,3,-9,4,3,0,1,2,0,5.8689389,5.7255673,1,0,-9,6,0,2,-86.289978,0,0,0,72,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,4.8576608,127.7691,4.3558612,0,0,0,0,1,1,0,5.593473,5.8598876,0,0,31.389999,22.42,31.58,33.119999,4,1,1,0,0,4,2,1,960.5,261309.72,0,0,1889.0244 -14841,18213,33153,33154,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,0,4,8.4592361,8.8493605,0,2,0,-9,2,0,5,-171.16629,-9,0,0,31,1,5,1,2,2,2019,1,2,10,1,38,0,15,1,0,1,0,18.626629,18.626629,0,0,0,0,0,0,0,0,1,1,0,2.0049248,0,0,0,50,57,54.099998,59.110001,5,1,1,0,0,4,4,1,454,77424.086,0,0,3626.2454 -14841,18213,33154,33153,-9,-9,2,1,0,31,1,1,2,0,1,-9,2,1,0,0,5,7.9529934,7.7067761,0,2,0,-9,2,0,-5,13.082463,-9,0,1,36,2,4,1,-9,-9,2019,1,1,8,0,26,0,15,1,0,1,0,12.755759,12.755759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,50,57,5,1,1,0,0,4,4,1,454,77424.086,0,0,3626.2454 -14841,18213,33155,-9,33154,33153,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.26202,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,4,1,454,77424.086,0,0,3626.2454 -14841,18213,33156,-9,33154,33153,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1015.4376,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,4,1,454,77424.086,0,0,3626.2454 -14842,18214,33157,-9,33159,33158,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1062.5581,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,2,1,0,713.5,13905.195,0,0,2621.1528 -14842,18214,33158,33159,-9,-9,2,1,1,56,1,0,2,0,3,-9,3,3,0,1,1,0,0,0,2,0,-9,8,0,27,0,0,0,0,29,2,1,3,-9,-9,2019,4,1,17,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.650002,26.17,22.92,33.099998,5,1,1,1,0,2,1,0,713.5,13905.195,0,0,2621.1528 -14842,18214,33159,33158,-9,-9,1,1,0,29,1,0,2,0,2,-9,6,3,0,0,1,0,0,0,2,0,-9,8,0,-27,0,0,1,1,56,3,1,3,-9,-9,2019,4,2,33,11,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.694954,2,22.92,33.099998,37.650002,26.17,3,1,1,0,0,2,1,0,713.5,13905.195,0,0,2621.1528 -14842,18214,33160,-9,33159,33158,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.65753,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,713.5,13905.195,0,0,2621.1528 -14843,18215,33161,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,3,8.5742474,8.4573822,5.9771152,3,0,0,0,-9,0,-1000.2634,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,18,6,40,41,15,1,1,-9,0,15.151834,15.151834,0,0,0,0,0,0,0,0,1,1,0,5.6800518,0,0,0,34.040001,43.93,-9,-9,5,1,1,0,1,4,5,1,9396,164829.2,0,0,963.42816 -14844,18216,33162,33163,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,8.4039745,8.4448214,0,1,0,-9,9,0,-6,-50.600479,0,0,0,66,2,4,1,3,3,2019,1,1,7,0,30,35,15,1,0,1,0,14.107513,14.107513,0,0,0,0,0,0,0,0,0,0,0,2.8690274,0,0,0,54.790001,55.860001,54.790001,55.860001,6,1,1,0,0,13,5,1,676.5,128736.73,0,0,3953.6963 -14844,18216,33163,33162,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,0,4,8.5504751,8.3513107,0,1,0,-9,9,0,6,28.838308,0,0,0,60,2,4,1,3,3,2019,1,2,5,0,28,37,15,1,0,1,0,19.729765,19.729765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,54.790001,55.860001,6,1,1,0,0,13,5,1,676.5,128736.73,0,0,3953.6963 -14844,18217,33164,-9,33162,33163,3,1,0,21,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1065.3123,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,5,1,1,0,0,13,1,1,552,-20173.191,0,0,0 -14845,18218,33165,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,5,1,0,0,3,8.978406,8.6199636,0,3,0,0,0,-9,0,-908.8905,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,5,42,43,15,1,1,-9,0,14.025542,14.025542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.029999,55.099998,-9,-9,5,1,1,0,0,8,5,0,1680,-113419.68,0,0,3037.823 -14846,18219,33166,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,2,1,0,0,4,7.0577984,6.9529042,4.8935041,4,0,0,0,-9,0,-1005.5787,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,16,15,1,0,-9,0,9.0190125,9.0190125,0,0,0,0,0,0,0,0,1,1,0,5.1056981,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,1,2,0,387,-19669.574,0,0,1969.5924 -14846,18219,33167,-9,33166,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-926.73419,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,2,0,387,-19669.574,0,0,1969.5924 -14846,18219,33168,-9,33166,-9,2,1,1,6,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-920.77942,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,2,0,387,-19669.574,0,0,1969.5924 -14847,18220,33169,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,5,0,5.3062959,5.2542796,3,0,0,0,-9,0,-1149.8455,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.325232,5.1519208,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,9,2,1,1803,-90606.227,0,0,945.97949 -14848,18221,33170,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,0,4,6.9203558,6.7683296,0,3,0,0,0,-9,0,-900.54956,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,21,19,15,1,0,-9,0,6.6137314,6.6137314,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,48.869999,58.549999,-9,-9,6,1,1,0,0,11,2,0,356,59494.297,0,0,741.17377 -14849,18222,33171,33172,-9,-9,2,1,1,44,1,0,2,0,1,-9,3,3,0,0,1,0,0,0,2,0,-9,21,0,2,5.9534526,0,0,0,42,2,4,2,1,3,2019,4,1,32,12,0,0,15,3,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.780001,30.950001,44.529999,56.369999,2,1,1,1,1,1,2,1,422.5,50450.391,0,0,810.12793 -14849,18222,33172,33171,-9,-9,1,1,0,42,1,0,2,0,2,0,7,2,0,0,4,7.5699964,7.5446935,0,2,0,-9,20,0,-2,-21.169931,-9,0,1,44,1,1,3,3,3,2019,4,2,12,0,8,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.529999,56.369999,27.780001,30.950001,4,1,1,0,0,1,2,1,422.5,50450.391,0,0,810.12793 -14849,18222,33173,-9,33172,33171,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1149.9202,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,1,2,1,422.5,50450.391,0,0,810.12793 -14849,18222,33174,-9,33172,33171,3,1,0,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-916.18036,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,61.509998,-9,-9,6,1,1,0,0,1,2,1,422.5,50450.391,0,0,810.12793 -14850,18223,33175,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,3,0,6.8891368,6.9487467,3,0,0,0,-9,0,-929.84119,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9299626,6.6808748,0,0,38.52,51.400002,-9,-9,6,1,1,0,0,9,2,1,1628,414035.06,0,0,1376.3778 -14851,18224,33176,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,0,4,7.7139115,7.7754426,0,3,0,0,0,-9,0,-948.88721,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,37,37,15,1,0,-9,0,7.2395287,7.2395287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,50.59,-9,-9,5,1,1,0,0,7,3,0,335,185429.73,0,0,2284.5464 -14852,18225,33177,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,0,3,0,8.1256151,8.0213051,3,0,0,0,-9,0,-1007.2188,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,6.3279161,0,0,0,0,59.526321,0,1,1,0,6.2074904,8.1556787,0,0,48.599998,39.73,-9,-9,6,1,1,0,0,5,3,1,465,598878.06,0,0,2337.2034 -14853,18226,33178,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-872.00049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.47136,0,0,0,52.599998,42.139999,-9,-9,5,1,1,0,0,9,1,0,343,7104.1382,0,0,681.09314 -14854,18227,33179,-9,33181,33182,3,1,1,16,2,0,1,0,2,-9,2,2,0,0,5,7.4900718,7.3743992,0,2,0,0,0,-9,0,-848.30249,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,3,0,50,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6247512,0,0,0,57.630001,56.139999,-9,-9,7,1,1,0,0,11,4,1,670.75,354097.25,0,0,3948.3081 -14854,18227,33180,-9,33181,33182,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.059,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,4,1,670.75,354097.25,0,0,3948.3081 -14854,18227,33181,33182,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,3,8.0276852,8.093688,0,2,0,-9,21,0,-1,24.698341,0,0,0,53,3,5,1,3,3,2019,1,2,10,0,27,26,15,1,0,1,0,10.165332,10.165332,0,0,0,0,0,0,0,0,1,1,0,.59730887,0,0,0,55.959999,49.93,59.040001,51.290001,2,1,1,0,0,11,4,1,670.75,354097.25,0,0,3948.3081 -14854,18227,33182,33181,-9,-9,2,1,1,53,1,0,1,0,3,-9,2,1,0,0,5,7.9767919,8.3913345,0,2,0,-9,21,0,1,38.102863,0,0,0,52,1,3,1,3,3,2019,1,1,11,0,44,40,15,1,0,1,0,10.848427,10.848427,0,0,0,0,0,0,0,2,1,1,0,2.780504,0,4.9803352,3,59.040001,51.290001,55.959999,49.93,6,1,1,0,0,11,4,1,670.75,354097.25,0,0,3948.3081 -14855,18228,33183,33184,-9,-9,1,1,1,74,1,0,1,0,2,-9,4,3,0,0,4,0,6.5260763,6.4590583,2,0,-9,54,0,2,-66.971863,0,0,0,72,2,4,3,2,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4511127,6.2344127,0,0,54.740002,57.220001,61.830002,49.950001,7,1,1,0,0,5,3,1,251.5,588265.69,0,0,4391.1445 -14855,18228,33184,33183,-9,-9,2,1,0,72,1,0,1,0,2,-9,4,3,0,0,4,0,8.251173,8.1450062,2,0,-9,54,0,-2,78.580048,0,0,0,74,2,4,3,3,2,2019,4,1,1,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4672194,7.7237301,0,0,61.830002,49.950001,54.740002,57.220001,6,1,1,0,0,5,3,1,251.5,588265.69,0,0,4391.1445 -14856,18229,33185,-9,33187,33188,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.63617,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,5,1,1607.5,178135.91,0,0,4446.3223 -14856,18229,33186,-9,33187,33188,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.6058,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,5,1,1607.5,178135.91,0,0,4446.3223 -14856,18229,33187,33188,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,2,7.6107287,7.5874629,0,2,0,-9,8,0,-1,-107.0416,0,0,1,36,2,5,1,3,3,2019,1,2,12,1,22,22,15,1,0,1,0,8.8413458,8.8413458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.189999,24.15,57.060001,57.759998,6,1,1,0,0,13,5,1,1607.5,178135.91,0,0,4446.3223 -14856,18229,33188,33187,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,5,9.2113667,9.4985723,0,2,0,-9,8,0,1,-57.826519,0,0,0,35,1,2,1,-9,-9,2019,1,1,6,0,52,62,15,1,0,1,0,20.653637,20.653637,0,0,0,0,0,0,0,0,1,1,0,3.8022277,0,0,0,57.060001,57.759998,45.189999,24.15,6,1,1,0,0,13,5,1,1607.5,178135.91,0,0,4446.3223 -14857,18230,33189,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-974.04633,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.169998,47.950001,-9,-9,6,1,1,0,0,10,1,0,722,-25695.443,0,0,-936.38843 -14858,18231,33190,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,0,4,7.890779,7.9913392,0,3,0,0,0,-9,0,-1066.8926,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,49,39,15,1,0,-9,0,6.3517427,6.3517427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,-9,-9,5,1,1,0,0,12,4,0,1971,268926.75,0,0,1888.8151 -14858,18232,33191,-9,33190,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1090.1019,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,44,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,6,1,1,0,0,12,1,0,292,31602.205,0,0,0 -14859,18233,33192,33193,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.2455482,8.4130249,2.9239378,1,0,-9,8,0,2,50.819592,0,0,0,58,2,4,1,3,3,2019,1,2,9,0,38,38,15,1,0,1,0,13.047479,13.047479,0,0,0,0,0,0,0,74.5,1,1,0,2.7370973,0,77.583389,3,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,10,4,1,343,251054.25,0,0,3590.1729 -14859,18233,33193,33192,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,4,7.9131541,7.6661263,0,1,0,-9,8,0,-2,20.74897,0,0,0,60,3,3,1,2,2,2019,1,1,13,2,30,37,15,1,0,1,0,7.7163458,7.7163458,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.420727,3,54.200001,57.490002,57.330002,53.459999,2,1,1,0,0,10,4,1,343,251054.25,0,0,3590.1729 -14859,18234,33194,-9,-9,-9,3,1,0,24,2,0,0,0,3,1,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-975.63409,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,10,1,1,675,92982,0,0,0 -14860,18235,33195,33196,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,58,0,5,0,0,0,0,75,3,2,3,3,3,2019,4,2,23,8,0,0,15,4,1,4,0,0,0,1,0,13.713486,0,0,0,0,0,1,1,0,0,0,0,0,40.290001,22.129999,57.990002,17.940001,6,1,1,0,0,5,1,1,538,84474.398,0,0,2262.1665 -14860,18235,33196,33195,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,58,0,-5,0,0,0,0,80,3,2,3,3,2,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.205917,1,57.990002,17.940001,40.290001,22.129999,3,1,1,0,0,5,1,1,538,84474.398,0,0,2262.1665 -14861,18236,33197,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-908.68481,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.599998,25.91,-9,-9,1,3,4,0,1,8,1,0,682,528051.75,0,0,3399.9614 -14862,18237,33198,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,2,0,4.7068367,4.6721659,3,0,0,0,-9,0,-863.65472,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.1681361,0,0,17.59,56.040001,-9,-9,5,1,1,0,0,2,2,0,286,-37758.77,0,0,401.93463 -14863,18238,33199,33201,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,9.3411341,9.2328863,0,2,0,-9,11,0,10,21.503717,0,0,0,39,1,3,1,2,2,2019,1,1,6,0,37,38,15,1,0,1,0,29.561243,29.561243,0,0,0,0,0,0,0,0,0,0,0,2.4121649,0,0,0,57.16,56.150002,50.029999,52.619999,6,1,1,0,0,5,5,1,570,647381,0,0,5055.9194 -14863,18238,33200,-9,33201,33199,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.1289,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,5,1,570,647381,0,0,5055.9194 -14863,18238,33201,33199,-9,-9,1,1,0,39,1,0,1,0,1,-9,2,1,0,0,3,8.0499296,8.1999578,0,2,0,-9,11,0,-10,-80.290802,0,0,1,49,1,4,1,2,2,2019,1,2,10,1,37,0,15,1,0,1,0,8.9913588,8.9913588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,57.16,56.150002,6,1,1,0,0,5,5,1,570,647381,0,0,5055.9194 -14864,18239,33202,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,0,4,9.1956167,9.2825766,5.8763852,3,0,0,0,-9,0,-940.08234,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,41,52,15,1,1,-9,0,25.640804,25.640804,0,0,0,0,0,0,0,0,1,1,0,7.8035221,0,0,0,47.200001,43.09,-9,-9,5,1,1,0,0,5,5,1,1002,657467.38,0,0,4112.3574 -14864,18239,33203,-9,33202,-9,2,1,0,16,2,0,0,0,3,-9,2,2,0,0,2,5.1779351,5.2529864,2.1518984,3,0,0,0,-9,0,-1030.5396,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,29,11,7,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4005718,0,0,0,14.64,58.82,-9,-9,6,1,1,0,0,5,5,1,1002,657467.38,0,0,4112.3574 -14865,18240,33204,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1082.7758,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.529999,41.240002,-9,-9,5,2,3,0,0,2,1,0,324.5,-2956.0508,0,0,455.88922 -14865,18240,33205,-9,33204,-9,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1002.2465,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,2,1,0,324.5,-2956.0508,0,0,455.88922 -14865,18241,33206,-9,33204,-9,2,1,0,26,2,0,1,0,1,-9,2,1,0,0,3,8.1092434,8.2838907,0,3,0,0,0,-9,0,-989.59509,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,38,38,15,1,0,-9,1,9.5821848,9.5821848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,-9,-9,5,2,3,0,0,2,4,0,1013,-159147.86,0,0,163.44066 -14865,18242,33207,-9,33204,-9,3,1,1,22,2,0,1,0,1,-9,2,1,0,0,3,7.9160533,7.8987494,0,3,0,0,0,-9,0,-892.97876,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,39,38,15,1,1,-9,1,7.4844723,7.4844723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.32,58.459999,-9,-9,5,2,3,0,0,2,3,0,709,35626.563,0,0,1305.4303 -14866,18243,33208,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,4,0,3.8504882,3.7014422,3,0,0,0,-9,0,-1040.5298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,1.8907173,0,0,0,0,46.94323,0,1,1,0,4.5891886,3.8214931,0,0,52.759998,35,-9,-9,6,1,1,0,0,12,1,1,627,242315.97,0,0,673.71289 -14867,18244,33209,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,0,4,8.0422325,8.0402508,0,3,0,0,0,-9,0,-971.84711,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,18,7,38,36,15,1,1,-9,0,9.03613,9.03613,0,0,0,0,0,0,0,0,1,1,0,2.0993247,0,0,0,41.299999,60.77,-9,-9,5,1,1,0,0,8,4,1,431,57268.988,0,0,30.805981 -14868,18245,33210,33211,-9,-9,2,1,1,66,1,0,0,0,2,-9,2,1,0,0,3,7.0449567,7.1013684,0,1,0,-9,3,0,12,106.4146,0,0,0,54,1,2,1,2,3,2019,1,1,10,0,21,21,15,1,0,1,0,7.2493572,7.2493572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.82,47.619999,58.57,35.720001,6,1,1,0,0,7,3,1,1266.5,706207.13,0,0,2468.9717 -14868,18245,33211,33210,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,2,7.8185234,7.8765574,0,1,0,-9,3,0,-12,69.734016,0,0,0,66,2,3,1,3,2,2019,1,2,11,1,40,44,15,1,0,1,0,7.5777211,7.5777211,0,0,0,0,0,0,0,2,1,1,0,0,0,7.8871641,3,58.57,35.720001,48.82,47.619999,6,1,1,0,0,7,3,1,1266.5,706207.13,0,0,2468.9717 -14869,18246,33212,33213,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,0,4,0,6.4124889,6.3694687,1,0,-9,59,0,7,-77.15641,0,0,0,79,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.7023702,0,0,67.43,44.57,61.84,33.709999,6,1,1,0,0,1,2,0,624,343459.63,0,0,1605.1414 -14869,18246,33213,33212,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,6.2889285,6.3894334,1,0,-9,10,0,-7,-48.437908,0,0,0,86,2,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,3.466413,0,0,0,0,0,1,1,0,0,6.3834286,0,0,61.84,33.709999,67.43,44.57,7,1,1,0,0,1,2,0,624,343459.63,0,0,1605.1414 -14870,18247,33214,33215,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,49,0,-1,73.231087,0,0,0,72,1,4,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4824915,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,5,4,1,401.5,891112.06,0,0,4393.5864 -14870,18247,33215,33214,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,0,4,0,8.574687,8.5770416,1,0,-9,48,0,1,-41.695065,0,0,0,71,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2451873,8.7901869,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,5,4,1,401.5,891112.06,0,0,4393.5864 -14870,18248,33216,-9,33214,33215,3,1,1,43,2,0,0,0,2,-9,1,1,0,0,4,8.2900934,8.3668671,0,3,0,0,0,-9,0,-978.86646,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,7,6,15,1,0,-9,1,64.967972,64.967972,0,0,0,0,0,0,0,0,1,1,0,1.6900597,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,5,5,1,255,287203.22,0,0,1395.6346 -14871,18249,33217,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,0,4,0,4.7520156,4.5835094,3,0,0,0,-9,0,-1224.6957,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0119424,4.5712748,8.1615839,3,54.830002,53.049999,-9,-9,6,1,1,0,0,10,2,0,725,50095.195,0,0,2691.5012 -14872,18250,33218,-9,-9,33220,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-973.95465,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,0,796.66669,-1756.0482,0,0,1116.4336 -14872,18250,33219,-9,-9,33220,3,1,0,17,2,0,1,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1011.5586,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,2,4,0,796.66669,-1756.0482,0,0,1116.4336 -14872,18250,33220,-9,-9,-9,1,1,1,47,3,0,1,0,2,-9,2,1,0,0,5,8.3340921,8.58811,0,4,0,0,0,-9,0,-1082.198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,60,55,15,1,1,-9,0,10.644194,10.644194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.419998,60.529999,-9,-9,2,1,1,0,1,2,4,0,796.66669,-1756.0482,0,0,1116.4336 -14873,18251,33221,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,5,8.8383837,8.6905937,0,3,0,0,0,-9,0,-1067.369,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,45,40,15,1,0,-9,0,14.888367,14.888367,0,0,0,0,0,0,0,0,1,1,0,7.7718859,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,5,1,1609,302349.53,0,0,3197.1377 -14873,18252,33222,-9,33221,-9,2,1,0,20,2,0,0,0,2,0,7,2,0,0,5,5.8307371,6.9085622,6.6558776,3,0,0,0,-9,0,-1060.9086,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6011753,0,0,0,28.059999,66.93,-9,-9,5,1,1,0,0,10,2,1,737,-85064.336,0,0,-148.88177 -14874,18253,33223,-9,-9,-9,1,1,1,73,2,0,0,0,1,-9,97,3,0,0,4,0,7.7159886,8.2483215,3,0,0,0,-9,0,-1144.1169,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.731133,7.6825504,0,0,53.75,54.919998,-9,-9,7,1,1,0,0,9,3,1,1210,836650,0,0,2781.7791 -14875,18254,33224,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,4,8.7284193,8.7437019,0,3,0,0,0,-9,0,-977.83093,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,35,39,15,1,0,-9,0,18.366974,18.366974,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,4,2,0,0,8,5,1,289.5,1126128,0,0,3620.7441 -14875,18254,33225,-9,33224,-9,2,1,0,16,2,0,0,1,2,-9,7,2,0,0,3,6.535038,6.7021885,0,3,0,0,0,-9,0,-960.65753,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,14,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21460046,0,0,0,27.99,54.970001,-9,-9,3,3,4,0,0,8,5,1,289.5,1126128,0,0,3620.7441 -14876,18255,33226,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,7,2,0,0,5,7.7893581,7.2946448,0,3,0,0,0,-9,0,-1045.3157,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,70,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,3,0,131,21102.613,0,0,487.54483 -14877,18256,33227,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,0,5,0,6.9181433,6.9676204,3,0,0,0,-9,0,-1040.5723,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8043351,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,6,2,1,1495,-34853.492,0,0,607.8631 -14878,18257,33228,33229,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,1,1,0,2.4931433,2.2059548,1,0,-9,10,0,-8,65.460915,0,0,0,71,3,2,3,2,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.3813453,2.2867882,126.8446,1,56.82,16.67,41.369999,29.6,4,1,1,0,0,7,2,0,399.5,-201033.75,0,0,2115.7292 -14878,18257,33229,33228,-9,-9,1,1,0,71,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,10,0,8,51.952328,0,0,0,63,2,1,3,3,3,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,1,0,95.34758,0,0,3.6744363,0,0,1,1,0,0,0,0,1,41.369999,29.6,56.82,16.67,5,1,1,0,0,7,2,0,399.5,-201033.75,0,0,2115.7292 -14879,18258,33230,-9,33231,33232,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.73944,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,413,558779.31,0,0,4343.4717 -14879,18258,33231,33232,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,0,4,8.0212727,8.0904427,0,2,0,-9,8,0,0,42.365017,0,0,1,43,2,2,1,-9,-9,2019,1,1,10,0,25,25,15,1,0,1,0,15.201116,15.201116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.110001,57.689999,42.700001,51.080002,5,4,2,0,0,9,5,1,413,558779.31,0,0,4343.4717 -14879,18258,33232,33231,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,0,2,9.1676464,9.115654,0,2,0,-9,8,0,0,-17.868086,0,0,0,43,1,4,1,1,1,2019,1,2,12,0,39,42,15,1,0,1,0,26.566795,26.566795,0,0,0,0,0,0,0,0,0,0,0,4.5066876,0,0,0,42.700001,51.080002,45.110001,57.689999,6,1,1,0,0,9,5,1,413,558779.31,0,0,4343.4717 -14879,18258,33233,-9,33231,33232,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.33862,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,413,558779.31,0,0,4343.4717 -14880,18259,33234,33235,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,7.9173841,7.9162741,0,1,0,-9,36,0,0,35.780514,0,0,0,55,2,4,1,2,2,2019,1,2,19,6,30,30,15,1,1,1,0,9.4333544,9.4333544,0,0,0,0,0,0,0,27.5,0,0,0,5.5609412,0,23.35836,3,33.200001,63.27,53,54,6,1,1,0,0,9,5,1,656,1098639.3,0,0,3205.6851 -14880,18259,33235,33234,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.4884596,8.5005465,0,1,0,-9,7,0,0,-82.671837,0,0,0,55,2,4,1,-9,-9,2019,1,1,9,1,37,38,15,1,0,1,0,18.637732,18.637732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,33.200001,63.27,6,1,1,0,0,9,5,1,656,1098639.3,0,0,3205.6851 -14880,18260,33236,-9,33234,33235,3,1,1,28,2,0,0,0,2,-9,2,1,0,0,3,8.51091,8.4147177,0,3,0,0,0,-9,0,-972.03802,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,38,19,15,1,1,-9,1,17.700264,17.700264,0,0,0,0,0,0,0,7,0,0,0,6.4270244,0,6.5727677,3,36.709999,53.57,-9,-9,4,1,1,0,0,9,5,1,775,121393.18,0,0,2747.5554 -14881,18261,33237,33238,-9,-9,1,1,1,67,1,0,0,0,1,-9,1,1,0,0,4,8.3738184,9.2196531,8.7751379,1,0,-9,46,0,4,-8.0769358,0,0,0,63,1,2,3,2,2,2019,2,2,11,2,15,20,15,1,0,4,0,24.829147,24.829147,0,0,0,0,0,0,0,7,1,1,0,0,8.8838453,4.1745982,1,55.34,54.259998,50.16,17.690001,7,1,1,0,0,5,5,1,443.5,1469235.1,0,0,7355.0771 -14881,18261,33238,33237,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,1,2,0,6.4636707,6.7763433,1,0,-9,46,0,-4,-34.006653,0,0,0,67,1,4,1,2,2,2019,3,1,15,4,0,35,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0563481,6.5454736,0,0,50.16,17.690001,55.34,54.259998,6,1,1,0,0,5,5,1,443.5,1469235.1,0,0,7355.0771 -14882,18262,33239,-9,-9,-9,1,1,0,30,2,0,0,0,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1169.7936,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3753529,0,0,0,23.639999,60.82,-9,-9,4,4,2,0,0,8,1,0,957,0,0,0,-211.57339 -14883,18263,33240,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,6.0872474,5.9674034,3,0,0,0,-9,0,-817.37189,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7399812,5.8375316,0,0,44.59,45.669998,-9,-9,6,1,1,0,0,2,2,1,249,-152380.02,0,0,2353.8203 -14884,18264,33241,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,1,1,0,0,4,8.4277515,8.4683619,0,3,0,-9,0,-9,0,-1054.8903,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,50,0,15,1,0,-9,0,8.8017836,8.8017836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.970001,53.970001,-9,-9,4,1,1,0,0,4,4,0,229,-76616.195,0,0,2621.2886 -14885,18265,33242,33243,-9,-9,2,1,0,38,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,3,0,-5,-1.6327477,0,0,1,43,1,3,1,-9,-9,2019,3,1,10,3,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0010967,0,0,0,49.119999,57.279999,41.23,59.349998,6,1,1,1,0,7,5,1,603.5,-61875.652,0,0,5840.3975 -14885,18265,33243,33242,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,0,3,9.1910276,9.2348366,0,1,0,-9,3,0,5,-23.3797,0,0,0,38,3,4,3,2,2,2019,2,2,15,4,50,45,15,1,1,3,0,24.970478,24.970478,0,0,0,0,0,0,0,0,0,0,0,3.0785706,0,0,0,41.23,59.349998,49.119999,57.279999,6,1,1,0,0,7,5,1,603.5,-61875.652,0,0,5840.3975 -14886,18266,33244,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,7.7613506,7.7093382,3,0,0,0,-9,0,-923.38312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,.040140916,0,0,0,2,1,1,0,0,7.7036567,1.9390788,3,61.639999,37.779999,-9,-9,7,1,1,0,0,13,3,1,456,-1243.7279,0,0,1528.046 -14887,18267,33245,33246,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,1,2,0,7.2814045,7.548944,1,0,-9,51,0,-4,-1.8778322,0,0,0,81,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,7.2203836,6.5943341,0,0,0,74.5,1,1,0,2.9047971,7.1969438,74.987167,2,46.91,31.139999,38.720001,18.82,6,1,1,0,0,10,2,1,559,422483.97,0,0,1319.719 -14887,18267,33246,33245,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,51,0,4,30.204428,0,0,0,77,2,2,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,114.59893,6.3297315,0,0,0,71.5,1,1,0,0,0,71.040154,1,38.720001,18.82,46.91,31.139999,2,1,1,0,0,10,2,1,559,422483.97,0,0,1319.719 -14888,18268,33247,-9,33249,33248,3,1,0,12,2,0,0,1,3,-9,-9,2,0,0,5,0,0,0,1,0,0,0,-9,0,-1026.02,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,4,1,0,410.66666,-42964.719,0,0,2133.1948 -14888,18268,33248,33249,-9,-9,1,1,1,55,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,16,0,4,0,0,0,0,51,2,3,3,3,3,2019,4,2,18,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2515759,0,0,0,50.59,19.969999,42.68,38.459999,3,1,1,0,0,4,1,0,410.66666,-42964.719,0,0,2133.1948 -14888,18268,33249,33248,-9,-9,2,1,0,51,1,0,0,0,2,-9,3,3,0,1,3,0,0,0,1,0,-9,16,0,-4,0,0,0,0,55,2,1,3,3,3,2019,4,1,18,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.60351,1,42.68,38.459999,50.59,19.969999,5,1,1,1,1,4,1,0,410.66666,-42964.719,0,0,2133.1948 -14889,18269,33250,33251,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.1623378,7.2015824,1,0,-9,52,0,-2,63.653637,0,0,0,71,3,1,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.319376,7.4911165,0,0,47.950001,56.130001,40.549999,21,5,1,1,0,0,2,3,1,1903.5,720705,0,0,3181.748 -14889,18269,33251,33250,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,1,0,6.6317606,6.4780035,1,0,-9,10,0,2,-23.821552,0,0,0,69,2,4,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,4.1444025,0,0,4.5323243,0,0,1,1,0,4.5466108,6.8234921,0,0,40.549999,21,47.950001,56.130001,4,1,1,0,0,2,3,1,1903.5,720705,0,0,3181.748 -14889,18270,33252,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,5,7.1969018,7.7365766,0,3,0,0,0,-9,0,-1019.9684,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,24,15,1,0,-9,0,4.5029864,4.5029864,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,2,3,1,61,-21046.363,0,0,664.41162 -14890,18271,33253,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,3,0,6.5069785,6.203547,3,0,0,0,-9,0,-1005.7015,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8694038,0,0,54.720001,43.700001,-9,-9,6,1,1,0,0,7,2,1,405,745337.88,0,0,-538.0929 -14891,18272,33254,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,0,1,8.4711294,8.3743372,0,3,0,0,0,-9,0,-1047.1233,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,37,37,15,1,1,-9,0,14.206301,14.206301,0,0,0,0,0,0,0,0,1,1,0,2.981205,0,0,0,29.540001,34.209999,-9,-9,2,1,1,0,0,5,5,1,2397,156729.11,0,0,2528.0837 -14892,18273,33255,33256,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.4185691,7.3153882,1,0,-9,48,0,1,-111.8503,0,0,0,70,1,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6394625,0,0,47.549999,57.73,60.119999,54.799999,6,1,1,0,1,5,3,1,324,888496.88,0,0,2520.5276 -14892,18273,33256,33255,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,4,0,5.9744754,6.2448797,1,0,-9,48,0,-1,-10.128608,0,0,0,71,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0912323,0,0,60.119999,54.799999,47.549999,57.73,7,1,1,0,0,5,3,1,324,888496.88,0,0,2520.5276 -14893,18274,33257,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,0,2,7.488337,7.2963672,0,3,0,-9,0,-9,0,-969.26825,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,20,8,25,0,15,1,1,-9,0,7.8919358,7.8919358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.290001,39.119999,-9,-9,1,1,1,0,1,5,3,0,554,100304.3,0,0,1206.1349 -14894,18275,33258,33259,-9,-9,2,1,1,71,1,0,0,0,1,-9,2,1,0,0,4,7.9820738,8.0444479,6.9974871,1,0,-9,45,0,-13,23.533289,0,0,0,84,2,2,3,-9,-9,2019,2,1,9,0,30,30,15,1,0,4,0,8.9853935,8.9853935,0,0,0,0,0,0,0,0,1,1,0,7.587369,6.8666925,0,0,54.77,55.869999,47.82,49.950001,7,1,1,0,0,8,3,1,1639,2074429.5,0,0,3656.0012 -14894,18275,33259,33258,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,46,0,13,7.6156611,0,0,0,71,1,4,1,2,1,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.82,49.950001,54.77,55.869999,5,2,3,0,0,8,3,1,1639,2074429.5,0,0,3656.0012 -14895,18276,33260,33261,-9,-9,1,1,0,65,1,0,0,0,3,-9,97,3,0,0,4,7.3623986,7.3766084,5.5893636,1,0,-9,34,0,-6,114.84217,0,0,0,71,3,4,3,3,3,2019,4,2,16,4,20,20,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4275675,5.3632689,0,0,49.41,58.279999,54.790001,55.860001,3,1,1,0,0,9,3,1,1009.5,1572911.5,0,0,686.33215 -14895,18276,33261,33260,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,7.2631054,7.474977,1,0,-9,29,0,6,7.1714973,0,0,0,65,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7944131,7.0546131,0,0,54.790001,55.860001,49.41,58.279999,6,1,1,0,0,9,3,1,1009.5,1572911.5,0,0,686.33215 -14896,18277,33262,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,8.1472521,8.1544962,0,3,0,0,0,-9,0,-966.48364,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,35,45,15,1,0,-9,0,10.160049,10.160049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.02,53.93,-9,-9,3,1,1,0,0,11,4,0,1690,180989.3,0,0,1564.4034 -14897,18278,33263,33264,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.7212353,7.9702578,1,0,-9,44,0,0,-75.22226,0,0,0,65,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.4835024,7.736866,110.7841,3,57.16,56.150002,42.439999,52,6,1,1,0,0,4,4,1,2056,2751554.5,0,0,3508.4392 -14897,18278,33264,33263,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.6446095,7.4913859,1,0,-9,44,0,0,69.05162,0,0,0,65,1,4,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.5415339,7.8864064,79.02948,3,42.439999,52,57.16,56.150002,6,1,1,0,0,4,4,1,2056,2751554.5,0,0,3508.4392 -14898,18279,33265,33266,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,4,0,6.1348553,6.4976912,1,0,-9,3,0,-2,-104.46405,0,0,0,66,2,1,3,3,3,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.9056692,6.23841,65.987267,1,45.400002,40.720001,30.26,18.9,6,1,1,0,0,2,2,1,142,517560.31,0,0,948.37506 -14898,18279,33266,33265,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,1,1,0,6.5591836,6.5682578,1,0,-9,42,0,2,-16.900114,0,0,0,64,3,4,3,3,3,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1440482,6.5057631,0,0,30.26,18.9,45.400002,40.720001,5,1,1,0,0,2,2,1,142,517560.31,0,0,948.37506 -14899,18280,33267,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,1,1,0,6.932683,6.9595671,3,0,0,0,-9,0,-996.25592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3700471,0,0,59.740002,11.03,-9,-9,7,1,1,0,0,12,2,1,781,168962.25,0,0,1057.1102 -14900,18281,33268,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,0,3,8.4308891,8.3800554,0,3,0,0,0,-9,0,-1219.6539,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,42,40,15,1,0,-9,0,14.345304,14.345304,0,0,0,0,0,0,0,14.5,0,0,0,2.4592819,0,16.233564,3,53.540001,49.68,-9,-9,5,1,1,0,0,7,5,1,632,43186.129,0,0,1106.4237 -14900,18282,33269,-9,33268,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,0,5,7.3653135,7.7397714,0,3,0,-9,0,-9,0,-1026.1888,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,36,0,15,1,0,-9,1,6.2269735,6.2269735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.360001,40.610001,-9,-9,6,1,1,0,0,7,3,1,462,-132606.11,0,0,1048.239 -14901,18283,33270,33271,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,0,3,8.304637,8.283597,2.7831705,1,0,-9,5,0,7,85.508568,0,0,0,57,2,3,1,-9,-9,2019,1,1,12,1,48,48,15,1,0,1,0,9.9380236,9.9380236,0,0,0,0,0,0,0,0,0,0,0,6.3260369,0,0,0,49.389999,47.459999,54.779999,34.439999,5,1,1,0,0,6,4,1,361,255186.3,0,0,2814.3569 -14901,18283,33271,33270,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.312768,7.314817,0,1,0,-9,5,0,-7,-75.420662,0,0,0,64,2,3,1,3,2,2019,1,2,14,2,20,20,15,1,0,1,0,11.270337,11.270337,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.26256,3,54.779999,34.439999,49.389999,47.459999,6,1,1,0,0,6,4,1,361,255186.3,0,0,2814.3569 -14902,18284,33272,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1107.1737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.040001,23.99,-9,-9,1,1,1,0,0,2,1,0,182,-25949.664,0,0,1549.3276 -14903,18285,33273,-9,33274,33275,4,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1047.5148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,5,0,645.20001,245859.05,0,0,6159.5273 -14903,18285,33274,33275,-9,-9,1,1,0,30,1,0,4,0,2,-9,2,1,0,1,4,7.6146598,7.9402423,0,2,0,-9,3,0,-17,-54.487404,0,0,1,47,2,3,1,2,2,2019,1,5,9,0,35,25,15,1,0,1,0,5.0902147,5.0902147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.279999,60.18,43.959999,55.639999,7,1,1,0,0,10,5,0,645.20001,245859.05,0,0,6159.5273 -14903,18285,33275,33274,-9,-9,5,1,1,47,1,0,4,0,2,-9,2,1,0,0,3,9.2701626,9.5156813,0,2,0,-9,3,0,17,-49.409077,0,0,0,30,2,4,1,-9,-9,2019,1,1,12,1,51,52,15,1,0,1,0,29.587706,29.587706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.959999,55.639999,48.279999,60.18,6,1,1,0,0,10,5,0,645.20001,245859.05,0,0,6159.5273 -14903,18285,33276,-9,33274,33275,2,1,1,10,2,0,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-913.21741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,10,5,0,645.20001,245859.05,0,0,6159.5273 -14903,18285,33277,-9,33274,33275,3,1,1,13,2,0,4,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-995.95355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,10,5,0,645.20001,245859.05,0,0,6159.5273 -14904,18286,33278,-9,33279,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-991.96759,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,10,2,0,416.5,9825.8047,0,0,1316.8159 -14904,18286,33279,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,0,2,6.9128819,7.3799973,6.1212916,4,0,0,0,-9,0,-990.60883,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,26,18,15,1,0,-9,0,4.8726044,4.8726044,0,0,0,0,0,0,0,0,1,1,0,5.9209552,0,0,0,35.57,48.77,-9,-9,2,1,1,0,0,10,2,0,416.5,9825.8047,0,0,1316.8159 -14905,18287,33280,33282,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,0,4,9.0026274,8.9411993,0,1,0,-9,6,0,-4,-14.458978,0,0,1,48,2,3,1,2,2,2019,1,1,9,1,70,70,15,1,0,1,0,14.29443,14.29443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.439999,59.619999,46.080002,57.200001,5,1,1,0,0,4,5,1,1576.3334,130806.93,0,0,3375.6731 -14905,18287,33281,-9,33280,33282,3,1,1,17,2,0,0,1,2,0,7,2,0,0,5,5.8083835,6.2637672,5.2917557,1,0,0,0,-9,0,-964.40442,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2951975,0,0,0,46.279999,62.599998,-9,-9,6,1,1,0,0,4,5,1,1576.3334,130806.93,0,0,3375.6731 -14905,18287,33282,33280,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,0,3,7.1847334,6.8954935,0,1,0,-9,6,0,4,36.334995,0,0,0,44,1,4,1,2,2,2019,1,2,12,0,42,45,15,1,0,1,0,2.5302742,2.5302742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,46.439999,59.619999,4,1,1,0,0,4,5,1,1576.3334,130806.93,0,0,3375.6731 -14906,18288,33283,33286,-9,-9,3,1,0,39,1,0,2,0,3,-9,6,3,0,1,2,0,0,0,2,0,-9,22,0,-7,-38.414238,0,0,1,46,3,3,1,3,2,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1427979,0,1.0369594,3,41.720001,38.049999,33.07,55.18,4,2,3,0,0,2,2,1,657.75,36682.023,0,0,2465.6099 -14906,18288,33284,-9,33283,33286,1,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-979.33057,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.739838,3,39.560001,54.830002,-9,-9,5,2,3,0,0,2,2,1,657.75,36682.023,0,0,2465.6099 -14906,18288,33285,-9,33283,33286,5,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.46381,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,2,2,1,657.75,36682.023,0,0,2465.6099 -14906,18288,33286,33283,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,3,7.275239,7.4961514,0,2,0,-9,22,0,7,35.076206,0,0,0,39,3,2,3,2,3,2019,2,3,20,8,30,25,15,1,1,3,0,6.1747537,6.1747537,0,0,0,0,0,0,0,42,1,1,0,0,0,42.348141,2,33.07,55.18,41.720001,38.049999,4,2,3,0,0,2,2,1,657.75,36682.023,0,0,2465.6099 -14906,18289,33287,-9,33283,33286,4,1,1,20,2,0,2,0,2,1,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-829.62207,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.541153,3,46.669998,55.57,-9,-9,6,2,3,1,0,2,1,1,1148,201727.89,0,0,-49.342651 -14907,18290,33288,-9,33290,33291,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.7315,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,1068.5,1024996.6,0,0,7470.8813 -14907,18290,33289,-9,33290,33291,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.73157,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,1068.5,1024996.6,0,0,7470.8813 -14907,18290,33290,33291,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,8.4160929,8.2994356,0,2,0,-9,17,0,0,84.063156,0,0,1,40,1,5,1,1,1,2019,1,1,10,1,21,23,15,1,0,1,0,25.013285,25.013285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,43.419998,57.060001,57.759998,6,1,1,0,0,5,5,1,1068.5,1024996.6,0,0,7470.8813 -14907,18290,33291,33290,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,5,9.6154966,9.4653854,0,2,0,-9,17,0,0,5.6094742,0,0,0,40,1,3,1,2,2,2019,1,2,10,0,52,50,15,1,0,1,0,29.081963,29.081963,0,0,0,0,0,0,0,0,0,0,0,2.4517806,0,0,0,57.060001,57.759998,58.720001,43.419998,6,1,1,0,0,5,5,1,1068.5,1024996.6,0,0,7470.8813 -14908,18291,33292,-9,33293,33294,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-999.17499,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,12,4,1,431.75,371435.22,0,0,2942.6721 -14908,18291,33293,33294,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,3,6.7009463,6.9049497,0,2,0,-9,8,0,2,-148.11786,0,0,0,43,2,2,1,2,1,2019,1,1,13,3,9,12,15,1,0,1,0,13.09026,13.09026,0,0,0,0,0,0,0,7,1,1,0,0,0,10.609658,3,48.060001,45.529999,59.810001,36.419998,3,1,1,0,0,12,4,1,431.75,371435.22,0,0,2942.6721 -14908,18291,33294,33293,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,0,2,8.7153473,8.8921051,0,2,0,-9,8,0,-2,-14.833154,0,0,0,45,2,3,1,3,3,2019,1,2,6,0,50,50,15,1,0,1,0,17.456276,17.456276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.810001,36.419998,48.060001,45.529999,6,1,1,0,0,12,4,1,431.75,371435.22,0,0,2942.6721 -14908,18291,33295,-9,33293,33294,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.7365,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,431.75,371435.22,0,0,2942.6721 -14909,18292,33296,33297,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-2,-13.194096,0,0,0,78,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6899118,0,0,0,62.560001,45.639999,57.16,56.150002,7,1,1,0,0,2,3,1,1152.5,614078.94,0,0,2924.8564 -14909,18292,33297,33296,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,4,0,7.3927684,7.6139355,1,0,-9,10,0,2,19.865465,0,0,0,76,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.9312053,7.7287321,0,0,57.16,56.150002,62.560001,45.639999,6,1,1,0,0,2,3,1,1152.5,614078.94,0,0,2924.8564 -14910,18293,33298,33299,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.6763325,7.7565789,0,1,0,-9,6,0,0,39.219875,0,0,0,49,2,3,1,3,-9,2019,1,2,14,3,29,27,15,1,0,1,0,6.720294,6.720294,0,0,0,0,0,0,0,0,1,1,0,1.869175,0,0,0,49.040001,47.619999,54.959999,53.169998,6,1,1,0,0,12,4,1,500.66666,504904.13,0,0,4148.397 -14910,18293,33299,33298,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,3,8.0775003,8.0707464,0,1,0,-9,6,0,0,-147.37637,0,0,0,49,2,3,1,-9,-9,2019,1,1,8,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,49.040001,47.619999,6,1,1,0,0,12,4,1,500.66666,504904.13,0,0,4148.397 -14910,18293,33300,-9,-9,33299,3,1,1,17,2,0,0,1,2,0,7,2,0,0,3,7.4440699,7.5836525,0,1,0,0,0,-9,0,-880.85284,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,3,0,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.849998,44.549999,-9,-9,6,1,1,0,0,12,4,1,500.66666,504904.13,0,0,4148.397 -14911,18294,33301,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,3,0,7.8200607,8.1163397,3,0,0,0,-9,0,-942.65875,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1056852,7.9644375,0,0,58.470001,42.189999,-9,-9,6,1,1,0,0,10,4,1,81,630294.63,0,0,2427.4849 -14912,18295,33302,33303,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,0,4,8.2733135,8.3372955,0,2,0,-9,26,0,5,-18.794079,0,0,0,52,2,3,1,3,3,2019,1,1,9,0,37,37,15,1,0,1,0,13.39023,13.39023,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.139999,52.5,52.48,55.599998,7,1,1,0,0,9,4,1,1174.5,627260.88,0,0,3720.0308 -14912,18295,33303,33302,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,0,3,8.2920389,8.6426973,0,2,0,-9,26,0,-5,118.23551,0,0,0,57,2,4,1,2,2,2019,1,2,13,2,45,50,15,1,0,1,0,10.768406,10.768406,0,0,0,0,0,0,0,0,1,1,0,3.0290017,0,0,0,52.48,55.599998,59.139999,52.5,6,1,1,0,0,9,4,1,1174.5,627260.88,0,0,3720.0308 -14912,18296,33304,-9,33302,33303,3,1,0,21,2,0,1,0,2,1,2,1,0,0,4,8.1884851,8.0238953,0,3,0,0,0,-9,0,-1050.411,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,0,15,1,0,-9,1,10.633827,10.633827,0,0,0,0,0,0,0,0,1,1,0,2.6346602,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,4,1,1255,342611.47,0,0,1712.7262 -14912,18297,33305,-9,33302,33303,4,1,1,18,2,0,1,1,2,0,7,2,0,0,4,6.7815409,6.7642159,0,3,0,0,0,-9,0,-955.19775,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.630001,59.720001,-9,-9,6,1,1,0,0,9,4,1,329,-26212.65,0,0,-505.7403 -14913,18298,33306,33307,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,1,1,0,7.1010675,7.0510726,1,0,-9,11,0,-5,17.007265,0,0,0,67,2,5,3,-9,-9,2019,4,2,34,12,0,40,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6519222,0,0,14.07,27.629999,57.060001,57.759998,1,1,1,0,1,5,2,1,957,861616.25,0,0,1211.7057 -14913,18298,33307,33306,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,0,6.6689754,6.6854773,1,0,-9,11,0,5,10.011892,0,0,0,62,1,1,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.5384393,6.5459604,0,0,57.060001,57.759998,14.07,27.629999,6,1,1,0,1,5,2,1,957,861616.25,0,0,1211.7057 -14914,18299,33308,-9,-9,-9,1,1,0,62,2,0,0,0,3,-9,4,3,0,0,2,0,8.0492258,7.6640949,3,0,0,0,-9,0,-1045.8264,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6513491,8.1623535,0,3,55.77,37.049999,-9,-9,6,1,1,0,0,7,4,1,358,1870498.6,0,0,1256.5953 -14915,18300,33309,33310,-9,-9,2,1,0,62,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,46,0,-2,83.566246,0,0,0,64,2,1,3,3,3,2019,4,1,12,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.464256,1,30.4,22.85,48.549999,19.9,3,1,1,0,1,11,2,0,2375,2002465.5,0,0,1440.3058 -14915,18300,33310,33309,-9,-9,1,1,1,64,1,0,0,0,2,-9,8,3,1,1,1,0,6.7693205,7.026196,1,0,-9,46,0,2,86.560455,0,0,0,62,3,1,3,2,2,2019,4,2,15,3,0,40,15,3,0,3,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.9307885,13.962395,1,48.549999,19.9,30.4,22.85,1,1,1,0,1,11,2,0,2375,2002465.5,0,0,1440.3058 -14916,18301,33311,33313,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,8.9287958,8.6071119,0,2,0,-9,6,0,1,.27667707,0,0,0,50,1,4,1,2,3,2019,1,2,8,0,40,0,15,1,0,1,0,18.321575,18.321575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.610001,51.040001,61.619999,51.310001,5,1,1,0,0,13,5,1,353.33334,2878324.5,0,0,3913.168 -14916,18301,33312,-9,33313,33311,5,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.2498,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,13,5,1,353.33334,2878324.5,0,0,3913.168 -14916,18301,33313,33311,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.4140511,8.1182232,0,2,0,-9,6,0,-1,-25.552698,0,0,0,51,2,2,1,2,2,2019,1,1,9,1,18,0,15,1,0,1,0,30.671515,30.671515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.619999,51.310001,54.610001,51.040001,7,1,1,0,0,13,5,1,353.33334,2878324.5,0,0,3913.168 -14916,18302,33314,-9,33313,33311,3,1,0,22,2,0,1,0,1,1,2,1,0,0,4,6.9046621,6.733418,0,3,0,0,0,-9,0,-1104.4276,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,35,0,15,1,0,-9,1,2.4935219,2.4935219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,60.77,-9,-9,6,1,1,0,0,13,2,1,521,-45161.688,0,0,1368.6125 -14916,18303,33315,-9,33313,33311,4,1,1,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1044.1024,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,13,1,1,419,19710.988,0,0,0 -14917,18304,33316,33317,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,0,3,8.3601446,8.3668633,0,1,0,-9,20,0,1,16.82321,0,0,0,40,2,3,3,2,2,2019,2,1,16,5,48,46,15,1,1,3,0,6.9985304,6.9985304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.120001,64.32,53.380001,52.509998,2,1,1,0,1,7,3,0,1347.5,520464.69,0,0,782.78247 -14917,18304,33317,33316,-9,-9,1,1,0,40,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,22,0,-1,2.0365145,0,0,1,41,2,3,1,2,2,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.380001,52.509998,22.120001,64.32,3,1,1,1,1,7,3,0,1347.5,520464.69,0,0,782.78247 -14917,18305,33318,-9,33317,33316,3,1,0,18,2,0,0,0,2,1,2,1,0,0,3,7.9763055,7.725821,0,3,0,0,0,-9,0,-1078.1146,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,6,47,0,15,1,1,-9,1,6.8430996,6.8430996,0,0,0,0,0,0,0,0,0,0,0,.51753998,0,0,0,43.709999,56.91,-9,-9,6,1,1,0,0,7,3,0,221,33862.574,0,0,1610.6576 -14918,18306,33319,-9,33320,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1144.8395,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,4,0,1501.5,39882.297,0,0,2682.9517 -14918,18306,33320,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,0,4,8.671874,8.2652216,0,4,0,0,0,-9,0,-961.76312,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,42,15,1,0,-9,0,13.627959,13.627959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,13,4,0,1501.5,39882.297,0,0,2682.9517 -14919,18307,33321,33322,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,4,0,4.2762585,4.7668109,1,0,-9,55,0,6,5.1071649,0,0,0,71,3,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9468613,4.4311557,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,4,2,1,910.5,182235.53,0,0,1562.5913 -14919,18307,33322,33321,-9,-9,2,1,0,71,1,0,0,0,3,-9,2,1,0,0,3,6.6713042,6.6654882,0,1,0,-9,55,0,-6,89.495888,0,0,0,77,2,4,3,-9,-9,2019,2,1,6,0,11,11,15,1,0,4,0,6.862639,6.862639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,7,1,1,0,0,4,2,1,910.5,182235.53,0,0,1562.5913 -14920,18308,33323,-9,33324,33325,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1026.1564,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,-9,-9,6,1,1,0,0,7,3,0,671,-26362.609,0,0,2974.5562 -14920,18308,33324,33325,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,0,2,6.9460726,7.1250668,0,2,0,-9,20,0,-1,14.46681,0,0,1,39,2,4,1,2,2,2019,1,2,10,0,40,0,15,1,0,1,0,3.1385849,3.1385849,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.25,36.27,57.16,56.150002,6,1,1,0,0,7,3,0,671,-26362.609,0,0,2974.5562 -14920,18308,33325,33324,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,0,4,8.1795702,8.1171827,0,2,0,-9,18,0,1,26.693789,0,0,0,38,2,2,1,2,2,2019,1,1,7,0,42,53,15,1,0,1,0,9.7987928,9.7987928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.25,36.27,6,1,1,0,0,7,3,0,671,-26362.609,0,0,2974.5562 -14921,18309,33326,33327,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,0,3,7.6965036,7.9305592,0,2,0,-9,10,0,-4,-17.213299,0,0,0,45,1,4,1,3,3,2019,1,1,12,0,45,35,15,1,0,1,0,7.1810684,7.1810684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.610001,53.700001,54.200001,57.490002,6,1,1,0,0,5,5,1,1053.5,783677.88,0,0,4866.9355 -14921,18309,33327,33326,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,9.1176453,9.1558847,0,2,0,-9,10,0,4,-39.645279,0,0,0,41,2,3,1,3,3,2019,1,2,7,0,49,51,15,1,0,1,0,23.697596,23.697596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,47.610001,53.700001,6,1,1,0,0,5,5,1,1053.5,783677.88,0,0,4866.9355 -14922,18310,33328,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,8.2492113,7.9986343,0,3,0,0,0,-9,0,-1072.146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,48,0,15,1,0,-9,0,9.5297918,9.5297918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,3,4,0,0,8,4,0,478,566122.06,0,0,1593.5649 -14922,18311,33329,-9,33328,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.3679123,7.3820181,0,3,0,0,0,-9,0,-952.17957,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,14,15,15,1,0,-9,1,11.4215,11.4215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.970001,47.630001,-9,-9,6,3,4,0,0,8,3,0,340,-22277.322,0,0,462.62738 -14923,18312,33330,33331,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.3015528,8.1642275,0,1,0,-9,34,0,1,-49.731796,0,0,0,53,2,4,1,1,1,2019,1,2,6,0,37,40,15,1,0,1,0,11.640808,11.640808,0,0,0,0,0,0,0,0,0,0,0,5.0886517,0,0,0,61.119999,51.57,36.27,59.32,6,1,1,0,0,4,5,1,348.5,1012946,0,0,4168.4092 -14923,18312,33331,33330,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.5300851,8.2972002,7.8840151,1,0,-9,8,0,-1,110.18802,0,0,0,54,2,4,1,-9,-9,2019,1,1,19,5,24,32,15,1,1,1,0,11.045549,11.045549,0,0,0,0,0,0,0,2,0,0,0,0,8.1143904,13.032514,3,36.27,59.32,61.119999,51.57,2,1,1,0,0,4,5,1,348.5,1012946,0,0,4168.4092 -14924,18313,33332,33333,-9,-9,2,1,0,35,1,2,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-3,94.789665,0,0,1,38,1,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.630001,58.549999,51.830002,57.200001,6,1,1,0,0,10,3,1,840.5,322934.38,0,0,2294.2285 -14924,18313,33333,33332,-9,-9,1,1,1,38,1,2,2,0,1,-9,2,1,0,0,4,8.4684296,8.5138474,0,2,0,-9,5,0,3,32.281784,0,0,0,35,2,4,3,-9,-9,2019,2,2,8,0,48,43,15,1,0,3,0,12.974484,12.974484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,45.630001,58.549999,5,1,1,0,0,10,3,1,840.5,322934.38,0,0,2294.2285 -14924,18313,33334,-9,33332,33333,3,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-836.55145,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,3,1,840.5,322934.38,0,0,2294.2285 -14924,18313,33335,-9,33332,33333,4,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.7074,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,10,3,1,840.5,322934.38,0,0,2294.2285 -14925,18314,33336,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,0,1,0,0,0,3,0,0,0,-9,0,-1045.1399,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,6,0,18,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,27,-9,-9,4,2,3,0,1,9,1,0,1437,0,0,0,-561.53375 -14926,18315,33337,-9,33339,33340,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.55432,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,6,5,1,687.25,151193.2,0,0,6659.0908 -14926,18315,33338,-9,33339,33340,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.455,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,6,5,1,687.25,151193.2,0,0,6659.0908 -14926,18315,33339,33340,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,8.7199383,8.5535631,0,2,0,-9,7,0,0,1.0047913,0,0,1,39,1,3,1,-9,-9,2019,1,1,13,1,36,35,15,1,0,1,0,18.246162,18.246162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.330002,55.93,33.66,61.57,6,3,4,0,0,6,5,1,687.25,151193.2,0,0,6659.0908 -14926,18315,33340,33339,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,3,9.558013,9.7342796,0,2,0,-9,7,0,0,-83.348923,-9,0,0,39,1,3,1,2,2,2019,1,2,18,6,50,0,15,1,1,1,0,28.267944,28.267944,0,0,0,0,0,0,0,7,0,0,0,4.3858285,0,8.7104492,3,33.66,61.57,46.330002,55.93,6,2,3,0,0,6,5,1,687.25,151193.2,0,0,6659.0908 -14927,18316,33341,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,4,0,7.3074903,7.4651132,3,0,0,0,-9,0,-987.5896,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8578553,7.263639,0,0,50.759998,49.59,-9,-9,6,1,1,0,0,2,3,1,1419,1313821.5,0,0,796.42487 -14928,18317,33342,33343,-9,-9,2,1,1,28,1,1,2,0,2,-9,1,1,0,0,4,8.6623907,8.4610777,0,2,0,-9,5,0,-1,66.480103,0,1,0,29,2,2,1,-9,-9,2019,1,1,10,1,60,45,15,1,0,1,0,10.375587,10.375587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,50.669998,39.560001,5,1,1,0,0,10,4,0,862.75,295946.38,0,0,2591.0566 -14928,18317,33343,33342,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,0,2,7.1238046,6.7911029,0,2,0,-9,5,0,1,-61.198879,0,1,1,28,2,4,1,2,2,2019,1,2,9,1,12,18,15,1,0,1,0,8.160367,8.160367,0,0,0,0,0,0,0,0,1,1,0,2.1163902,0,0,0,50.669998,39.560001,49,58,6,1,1,0,0,10,4,0,862.75,295946.38,0,0,2591.0566 -14928,18317,33344,-9,33343,-9,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.5946,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,0,862.75,295946.38,0,0,2591.0566 -14928,18317,33345,-9,33343,33342,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.3855,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,862.75,295946.38,0,0,2591.0566 -14929,18318,33346,33347,-9,-9,1,1,0,51,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,7,0,4,-17.82077,0,0,0,47,2,4,1,2,2,2019,3,2,11,2,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,3.0247054,0,32.496323,3,43.669998,61.060001,57.16,56.150002,5,1,1,0,0,6,5,1,621.5,509268.25,0,0,3637.79 -14929,18318,33347,33346,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,0,4,9.3355045,9.1117229,0,1,0,-9,7,0,-4,-67.463188,0,0,0,51,2,4,3,2,2,2019,2,1,10,0,50,50,15,1,0,3,0,21.04608,21.04608,0,0,0,0,0,0,0,2,0,0,0,3.2418716,0,8.8570662,3,57.16,56.150002,43.669998,61.060001,6,1,1,0,0,6,5,1,621.5,509268.25,0,0,3637.79 -14929,18319,33348,-9,33346,33347,3,1,1,20,2,0,0,0,2,-9,11,3,0,0,2,7.6631203,7.6654429,0,3,0,0,0,-9,0,-980.62677,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,39,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1757941,0,0,0,52.040001,41.380001,-9,-9,4,1,1,0,0,6,3,1,565,-148110.05,0,0,1248.4462 -14930,18320,33349,-9,33351,-9,2,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-942.28107,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,2,0,1452.5,84869.117,0,0,2766.9749 -14930,18320,33350,-9,33351,-9,3,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1015.3046,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,2,0,1452.5,84869.117,0,0,2766.9749 -14930,18320,33351,-9,-9,-9,1,1,0,44,3,0,3,0,1,-9,1,1,0,0,1,6.1750045,7.5527773,7.0486045,4,0,0,0,-9,0,-1048.405,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,18,7,38,40,15,1,1,-9,0,1.5340967,1.5340967,0,0,0,0,0,0,0,7,1,1,0,6.1059871,0,9.8722048,3,27,37.880001,-9,-9,2,1,1,0,0,9,2,0,1452.5,84869.117,0,0,2766.9749 -14930,18320,33352,-9,33351,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1003.4357,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,1452.5,84869.117,0,0,2766.9749 -14931,18321,33353,33354,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,4,0,7.9462585,8.0955429,1,0,-9,10,0,2,-28.936998,0,0,0,64,1,2,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0656509,7.9860983,0,0,51.77,58.57,42.990002,52.080002,6,1,1,0,0,8,4,1,1059,3034252.5,0,0,3151.2766 -14931,18321,33354,33353,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,2,0,7.8525791,7.8478942,1,0,-9,10,0,-2,-106.29005,0,0,0,66,1,4,3,2,2,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.1266618,7.8596864,8.0397787,3,42.990002,52.080002,51.77,58.57,6,2,3,0,0,8,4,1,1059,3034252.5,0,0,3151.2766 -14932,18322,33355,33356,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,7.6504655,7.7818847,0,1,0,-9,7,0,-10,-55.14167,0,0,0,60,2,4,1,3,2,2019,1,2,12,0,34,34,15,1,0,1,0,5.8185091,5.8185091,0,0,0,0,0,0,0,0,0,0,0,1.901395,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,11,2,1,571.5,171937.5,0,0,724.04706 -14932,18322,33356,33355,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,7,0,10,19.965456,-9,0,0,50,2,4,1,3,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,11,2,1,571.5,171937.5,0,0,724.04706 -14932,18323,33357,-9,33355,33356,3,1,0,23,2,0,0,0,1,-9,2,1,0,0,5,7.1761146,7.1068311,0,3,0,0,0,-9,0,-1007.7857,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,8,15,1,0,-9,1,7.8505125,7.8505125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,1,11,2,1,581,-288945.31,0,0,1521.2878 -14932,18324,33358,-9,33355,33356,4,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.1996536,6.6680717,0,3,0,0,0,-9,0,-967.07141,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,20,20,15,1,0,-9,1,7.0141864,7.0141864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,6,1,1,0,0,11,2,1,1270,16424.893,0,0,-194.63989 -14933,18325,33359,33360,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,3,7.6499701,7.6897292,0,2,0,-9,9,0,0,-140.58066,0,0,0,47,2,3,1,3,3,2019,1,2,11,0,45,22,15,1,0,1,0,5.6657152,5.6657152,0,0,0,0,0,0,0,0,1,1,0,8.2541046,0,0,0,45.470001,45.029999,44.639999,55.040001,6,1,1,0,0,13,5,1,447.66666,472584.91,0,0,4558.3369 -14933,18325,33360,33359,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,8.7844439,9.0879421,0,2,0,-9,9,0,0,3.5738163,0,0,0,47,1,3,1,-9,-9,2019,1,1,10,0,41,45,15,1,0,1,0,16.196846,16.196846,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.639999,55.040001,45.470001,45.029999,6,1,1,0,0,13,5,1,447.66666,472584.91,0,0,4558.3369 -14933,18325,33361,-9,33359,33360,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.4614,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,5,1,447.66666,472584.91,0,0,4558.3369 -14934,18326,33362,33363,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,2,9.0264997,8.9987526,0,1,0,-9,41,0,3,-39.014481,0,0,0,57,3,4,3,3,3,2019,2,2,13,1,24,40,15,1,0,3,0,44.155052,44.155052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.490002,47.889999,47.950001,56.130001,5,1,1,0,0,10,5,1,1354,1275608.5,0,0,3869.5991 -14934,18326,33363,33362,-9,-9,2,1,0,57,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,41,0,-3,194.96461,0,0,0,60,1,2,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.950001,56.130001,46.490002,47.889999,6,1,1,1,0,10,5,1,1354,1275608.5,0,0,3869.5991 -14935,18327,33364,33365,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,3.8741622,4.5226169,1,0,-9,36,0,-12,-110.9679,0,0,0,83,2,3,3,2,-9,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.5919261,3.6330254,74.419304,1,49.740002,36.490002,54,46,4,1,1,0,0,2,2,1,706.5,401515.09,0,0,3284.1455 -14935,18327,33365,33364,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,1,3,0,6.6045799,7.3097196,1,0,-9,36,0,12,39.693779,0,0,0,71,2,3,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,10.370884,0,0,0,0,0,1,1,0,6.8545017,6.7560091,0,0,54,46,49.740002,36.490002,6,1,1,0,0,2,2,1,706.5,401515.09,0,0,3284.1455 -14936,18328,33366,33368,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,5,9.2534924,9.6503925,0,2,0,-9,18,0,1,-2.7157538,0,0,0,50,2,4,1,2,1,2019,1,2,9,0,45,40,15,1,0,1,0,37.36908,37.36908,0,0,0,0,0,0,0,0,0,0,0,6.853807,0,0,0,57.060001,57.759998,48.759998,53.240002,6,1,1,0,0,9,5,1,631.66669,1184897.5,0,0,6589.0718 -14936,18328,33367,-9,33368,33366,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-904.21967,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,6,4,2,0,0,9,5,1,631.66669,1184897.5,0,0,6589.0718 -14936,18328,33368,33366,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,8.3425303,8.6438103,0,2,0,-9,19,0,-1,-78.097473,0,0,0,51,2,5,1,3,3,2019,1,1,11,0,40,0,15,1,0,1,0,11.255591,11.255591,0,0,0,0,0,0,0,0,0,0,0,7.307271,0,0,0,48.759998,53.240002,57.060001,57.759998,6,2,3,0,0,9,5,1,631.66669,1184897.5,0,0,6589.0718 -14937,18329,33369,-9,33374,33372,6,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.5586,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,3,0,845.66669,50252.57,0,0,3770.5168 -14937,18329,33370,-9,33374,33372,5,1,1,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-960.97113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,3,0,845.66669,50252.57,0,0,3770.5168 -14937,18329,33371,-9,33374,33372,4,1,1,5,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.96045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,5,3,0,845.66669,50252.57,0,0,3770.5168 -14937,18329,33372,33374,-9,-9,2,1,1,35,1,2,4,0,2,-9,2,1,0,0,4,8.4023218,8.0011473,0,2,0,-9,7,0,7,.052917242,0,0,0,28,2,3,3,3,2,2019,2,1,6,0,37,39,15,1,0,3,0,13.575877,13.575877,0,0,0,0,0,0,0,0,1,1,0,.48534849,0,0,0,57.16,56.150002,46.02,58.57,6,1,1,0,0,5,3,0,845.66669,50252.57,0,0,3770.5168 -14937,18329,33373,-9,33374,33372,3,1,0,8,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.49609,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,0,845.66669,50252.57,0,0,3770.5168 -14937,18329,33374,33372,-9,-9,1,1,0,28,1,2,4,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,7,0,-7,-113.24443,0,1,1,35,2,4,1,2,2,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.658218,3,46.02,58.57,57.16,56.150002,6,1,1,0,0,5,3,0,845.66669,50252.57,0,0,3770.5168 -14938,18330,33375,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,8.4939098,8.215992,0,3,0,0,0,-9,0,-924.33624,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,35,37,15,1,1,-9,0,16.525953,16.525953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.57,61.360001,-9,-9,5,1,1,0,0,11,5,0,963,132394.36,0,0,1919.15 -14939,18331,33376,33377,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,0,3,7.9713836,7.7643542,0,1,0,-9,30,0,-1,46.300098,0,0,0,52,2,4,1,2,2,2019,1,1,6,0,19,18,15,1,0,1,0,13.035723,13.035723,0,0,0,0,0,0,0,0,0,0,0,2.9732642,0,0,0,57.330002,53.459999,62.490002,55.09,6,1,1,0,0,4,5,1,1485,1509410.8,0,0,3009.0964 -14939,18331,33377,33376,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.7916784,8.8770866,0,1,0,-9,30,0,1,60.348686,0,0,0,51,2,3,1,3,3,2019,1,2,6,0,35,38,15,1,0,1,0,18.760036,18.760036,0,0,0,0,0,0,0,0,0,0,0,3.9358833,0,0,0,62.490002,55.09,57.330002,53.459999,7,1,1,0,0,4,5,1,1485,1509410.8,0,0,3009.0964 -14939,18332,33378,-9,33376,33377,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.3458309,7.5355659,0,3,0,0,0,-9,0,-1031.9805,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,31,31,15,1,0,-9,1,5.3245635,5.3245635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.220001,52.369999,-9,-9,7,1,1,0,0,4,3,1,241,-102039.25,0,0,2115.5786 -14940,18333,33379,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,3,0,5.2879462,5.1891193,3,0,0,0,-9,0,-1165.2292,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5143237,0,0,63.139999,38.490002,-9,-9,5,1,1,0,0,13,2,0,523,218949.48,0,0,425.84045 -14941,18334,33380,33381,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,0,3,7.5906172,7.8277779,0,2,0,-9,4,0,-4,-57.668797,0,1,1,33,2,5,1,2,-9,2019,1,2,11,0,21,21,15,1,0,1,0,8.3937426,8.3937426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.209999,48.32,57.060001,57.759998,5,1,1,0,0,13,3,0,601.66669,159291.44,0,0,2828.3579 -14941,18334,33381,33380,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,0,5,8.2583427,8.2676744,0,2,0,-9,4,0,4,66.040398,0,0,0,29,2,3,1,-9,-9,2019,1,1,7,0,45,45,15,1,0,1,0,7.4259462,7.4259462,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,50.209999,48.32,5,1,1,0,0,13,3,0,601.66669,159291.44,0,0,2828.3579 -14941,18334,33382,-9,33380,33381,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.14618,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,601.66669,159291.44,0,0,2828.3579 -14942,18335,33383,33384,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,4,0,6.6441622,6.8763032,1,0,-9,42,0,3,45.18763,0,0,0,64,2,2,3,3,3,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8774128,0,0,56.439999,41.720001,54.09,36.16,7,1,1,0,0,8,2,1,698.5,1398945,0,0,63.337677 -14942,18335,33384,33383,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,2,0,6.2389631,6.1875529,1,0,-9,9,0,-3,-109.79125,0,0,0,67,3,4,3,-9,-9,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.2076621,6.3160305,16.141109,3,54.09,36.16,56.439999,41.720001,5,1,1,0,0,8,2,1,698.5,1398945,0,0,63.337677 -14943,18336,33385,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,0,3,0,6.88026,7.3147554,3,0,0,0,-9,0,-864.21039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.479949,7.2596598,0,0,56.5,48.330002,-9,-9,6,1,1,0,0,7,2,1,51,1074042.9,0,0,1084.3411 -14944,18337,33386,-9,33387,33388,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.0978,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,1,1530.3334,1815744.5,0,0,1716.8773 -14944,18337,33387,33388,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,4,7.2808919,7.1939483,0,2,0,-9,18,0,-15,40.086674,0,0,0,67,2,3,3,1,1,2019,2,2,5,0,22,5,15,1,0,4,0,7.4215264,7.4215264,0,0,0,0,0,0,0,0,1,1,0,3.5604079,0,0,0,57.73,54.529999,59.459999,46.990002,7,1,1,0,0,7,2,1,1530.3334,1815744.5,0,0,1716.8773 -14944,18337,33388,33387,-9,-9,2,1,1,67,1,0,1,0,2,-9,4,3,0,0,3,0,4.9285083,4.9993401,2,0,-9,18,0,15,-15.432708,0,0,0,52,1,4,1,2,2,2019,3,1,10,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9039459,5.156723,0,0,59.459999,46.990002,57.73,54.529999,6,1,1,0,0,7,2,1,1530.3334,1815744.5,0,0,1716.8773 -14945,18338,33389,-9,-9,-9,3,1,1,41,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-1023.427,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,17,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.9926939,3,37.419998,35.77,-9,-9,7,1,1,1,0,8,1,0,777,-11174.833,0,0,-720.31067 -14946,18339,33390,-9,33392,33391,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1019.9301,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,4,1,677.33331,1889925.1,0,0,2678.949 -14946,18339,33391,33392,-9,-9,2,1,1,58,1,0,2,0,1,-9,2,1,0,0,3,8.6634493,8.9304008,0,2,0,-9,21,0,11,-16.688448,0,0,0,47,2,4,1,2,2,2019,1,1,21,9,38,38,15,1,1,1,0,18.814463,18.814463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.189999,49.98,41.779999,61.860001,3,1,1,0,0,2,4,1,677.33331,1889925.1,0,0,2678.949 -14946,18339,33392,33391,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,6.6297603,6.356451,0,2,0,-9,21,0,-11,55.715218,0,0,0,58,1,3,1,3,-9,2019,1,2,2,0,4,18,15,1,0,1,0,18.110882,18.110882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.779999,61.860001,44.189999,49.98,7,1,1,0,0,2,4,1,677.33331,1889925.1,0,0,2678.949 -14947,18340,33393,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,0,4,0,8.2500458,8.3681164,3,0,0,0,-9,0,-889.60309,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,41,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5224092,8.1747417,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,4,1,176,424735.06,0,0,2566.9897 -14947,18341,33394,-9,-9,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,5.4919391,4.9633961,3,0,-9,0,-9,0,-1038.541,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1140785,0,0,49,48,-9,-9,5,1,1,0,0,2,2,1,425,30841.855,0,0,1361.2289 -14948,18342,33395,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,7,2,0,0,3,7.3839283,7.1161671,0,3,0,0,0,-9,0,-973.73138,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,4,38,48,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.82,52.790001,-9,-9,5,1,1,0,0,10,3,1,381,-65456.91,0,0,733.03333 -14949,18343,33396,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,0,3,0,6.7128315,7.0407205,3,0,0,0,-9,0,-1029.863,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8603334,0,0,63.07,32.040001,-9,-9,6,1,1,0,1,9,2,1,599,780771.06,0,0,1166.692 -14950,18344,33397,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,0,4,0,6.3692727,6.4834752,3,0,0,0,-9,0,-971.77563,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4516521,6.2614455,0,3,56.900002,49.400002,-9,-9,6,1,1,0,0,10,2,1,168,227920.14,0,0,1195.1821 -14951,18345,33398,-9,-9,-9,3,1,0,48,3,0,2,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-980.07648,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.689999,38.139999,-9,-9,4,1,1,0,0,4,1,0,2922.3333,-66035.477,0,0,141.17258 -14951,18345,33399,-9,33398,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1037.1116,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,4,1,0,2922.3333,-66035.477,0,0,141.17258 -14951,18345,33400,-9,33398,-9,1,1,1,17,2,0,2,1,2,-9,7,2,0,0,4,5.1660213,5.5733051,4.6776524,4,0,0,0,-9,0,-1112.2222,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.101016,0,0,0,46.919998,60.709999,-9,-9,6,1,1,0,0,4,1,0,2922.3333,-66035.477,0,0,141.17258 -14952,18346,33401,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,0,3,0,7.2160211,6.9924397,3,0,0,0,-9,0,-1062.5935,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2800941,6.9335909,0,0,61.790001,32.240002,-9,-9,6,1,1,0,0,7,2,1,2069,90168.836,0,0,976.15601 -14953,18347,33402,33403,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,-3,82.882027,0,0,0,85,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.610001,59.130001,36.529999,14.85,6,1,1,0,0,2,1,1,257.5,97263.531,0,0,1265.1395 -14953,18347,33403,33402,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,1,1,0,4.8508682,4.6696119,1,0,-9,6,0,3,-127.3836,0,0,0,82,3,4,3,3,3,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8512278,0,0,36.529999,14.85,53.610001,59.130001,6,1,1,0,0,2,1,1,257.5,97263.531,0,0,1265.1395 -14954,18348,33404,33405,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,10,0,4,-46.530506,0,0,0,58,2,3,1,-9,-9,2019,3,2,13,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,57.330002,53.459999,6,1,1,0,0,6,5,1,983,693802.25,0,0,14212.637 -14954,18348,33405,33404,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,9.5611858,9.8870792,8.7248573,1,0,-9,10,0,-4,48.197868,0,0,0,62,2,5,3,2,2,2019,2,1,10,0,65,40,15,1,0,4,0,25.821342,25.821342,0,0,0,0,0,0,0,0,0,0,0,6.3557448,8.8967648,0,0,57.330002,53.459999,51.139999,60.450001,6,1,1,0,0,6,5,1,983,693802.25,0,0,14212.637 -14955,18349,33406,33407,-9,-9,2,1,0,44,1,0,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,30,0,-4,17.217497,0,0,1,48,3,3,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.939999,46.470001,50.23,47.060001,5,1,1,0,1,8,2,1,498,344548.44,0,0,395.71707 -14955,18349,33407,33406,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,0,3,7.1137562,7.2797065,0,2,0,-9,30,0,4,-49.251793,0,0,0,44,3,3,3,3,3,2019,2,2,11,0,40,60,15,1,0,3,0,4.4189973,4.4189973,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.23,47.060001,45.939999,46.470001,6,4,5,0,1,8,2,1,498,344548.44,0,0,395.71707 -14955,18350,33408,-9,33406,33407,5,1,0,26,2,0,1,0,1,-9,2,1,0,0,4,8.4032755,8.4871445,0,3,0,-9,0,-9,0,-1072.71,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,35,12,36,0,15,1,1,-9,1,14.698411,14.698411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,73.589996,-9,-9,1,4,5,0,0,8,4,1,2605,-110012.19,0,0,2042.9369 -14955,18351,33409,-9,33406,33407,3,1,0,22,2,0,1,1,2,0,7,2,0,0,3,0,5.1543913,4.7687054,3,0,0,0,-9,0,-1021.8602,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9436021,0,0,0,49.919998,42.119999,-9,-9,6,4,5,0,1,8,2,1,476,91479.656,0,0,383.41385 -14956,18352,33410,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,0,4,8.6196861,8.2429504,0,3,0,0,0,-9,0,-1061.8418,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,50,40,15,1,0,-9,0,9.8137589,9.8137589,0,0,0,0,0,0,0,0,1,1,0,2.1224754,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,4,5,0,2283,23855.373,0,0,1371.0162 -14957,18353,33411,33412,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,7.876039,7.9659238,1,0,-9,61,0,0,152.08868,0,0,0,80,2,3,3,3,3,2019,4,1,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8655057,7.6826611,0,0,41.459999,44.540001,30.51,49.720001,5,1,1,0,0,4,4,1,1028.5,980916.13,0,0,3939.092 -14957,18353,33412,33411,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,7.7263474,7.9288564,1,0,-9,61,0,0,30.980122,0,0,0,80,3,3,3,3,3,2019,4,2,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9364297,7.6571226,0,0,30.51,49.720001,41.459999,44.540001,6,1,1,0,0,4,4,1,1028.5,980916.13,0,0,3939.092 -14958,18354,33413,33416,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,3,8.5597763,8.3666973,0,2,0,-9,21,0,-1,-101.27106,0,0,0,49,2,4,1,2,3,2019,1,2,8,0,47,42,15,1,0,1,0,12.684947,12.684947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,56.470001,51.02,7,1,1,0,0,13,4,1,953,372760.56,0,0,3527.3306 -14958,18354,33414,-9,33416,33413,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-824.45496,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,4,1,953,372760.56,0,0,3527.3306 -14958,18354,33415,-9,33416,33413,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1073.0754,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,13,4,1,953,372760.56,0,0,3527.3306 -14958,18354,33416,33413,-9,-9,2,1,0,49,1,0,2,0,2,-9,2,1,0,0,4,8.5523643,8.1832561,0,2,0,-9,11,0,1,7.7500086,0,0,0,48,2,3,1,-9,-9,2019,1,1,10,0,38,38,15,1,0,1,0,12.075625,12.075625,0,0,0,0,0,0,0,7,1,1,0,0,0,12.477809,3,56.470001,51.02,60.290001,52.110001,5,1,1,0,0,13,4,1,953,372760.56,0,0,3527.3306 -14959,18355,33417,-9,33420,33419,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1013.6814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,1,2,0,722.75,-6064.2485,0,0,1424.7379 -14959,18355,33418,-9,33420,33419,2,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.70221,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,2,0,722.75,-6064.2485,0,0,1424.7379 -14959,18355,33419,33420,-9,-9,3,1,1,26,1,1,2,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,2,0,3,0,-9,1,0,23,2,5,3,-9,-9,2019,4,1,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.380001,61.66,54.099998,59.110001,4,1,1,1,0,1,2,0,722.75,-6064.2485,0,0,1424.7379 -14959,18355,33420,33419,-9,-9,1,1,0,23,1,1,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,2,0,-3,0,0,1,1,26,2,5,3,-9,2,2019,4,3,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,40.380001,61.66,5,1,1,0,0,1,2,0,722.75,-6064.2485,0,0,1424.7379 -14960,18356,33421,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-977.40936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,26,-9,-9,4,1,1,1,1,2,1,0,137,-110758.5,0,0,477.46338 -14960,18357,33422,-9,33421,-9,2,1,1,30,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1007.1557,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.172874,0,0,3,50,57,-9,-9,5,1,1,1,0,2,1,0,262,-34774.918,0,0,1193.9537 -14961,18358,33423,33424,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.1436715,7.3653302,1,0,-9,50,0,1,39.390171,0,0,0,68,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9573617,7.165339,0,0,56.52,48.310001,57.330002,53.459999,6,1,1,0,0,1,2,1,827,785972.63,0,0,1798.5842 -14961,18358,33424,33423,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,5.6230435,5.9378338,1,0,-9,50,0,-1,65.435165,0,0,0,69,2,3,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8531671,5.8017912,0,0,57.330002,53.459999,56.52,48.310001,7,1,1,0,0,1,2,1,827,785972.63,0,0,1798.5842 -14962,18359,33425,33429,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,0,5,9.1665735,8.5412416,0,2,0,-9,18,0,1,-40.091774,0,0,0,49,1,4,1,-9,-9,2019,1,2,5,0,49,56,15,1,0,1,0,19.749828,19.749828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,54.52,49.16,55.59,6,3,4,0,1,8,4,1,513.79999,2590624.5,0,0,5080.229 -14962,18359,33426,-9,33429,33425,4,1,0,17,2,0,3,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1043.9781,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.580002,47.970001,-9,-9,6,3,4,0,0,8,4,1,513.79999,2590624.5,0,0,5080.229 -14962,18359,33427,-9,33429,33425,5,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1157.4423,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,4,1,513.79999,2590624.5,0,0,5080.229 -14962,18359,33428,-9,33429,33425,3,1,0,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1132.7571,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.43,50.709999,-9,-9,6,3,4,0,0,8,4,1,513.79999,2590624.5,0,0,5080.229 -14962,18359,33429,33425,-9,-9,2,1,0,49,1,0,3,0,1,-9,2,1,0,0,4,8.9597979,8.6946259,0,2,0,-9,18,0,-1,-51.095711,0,0,0,50,1,5,1,-9,-9,2019,1,1,7,0,41,37,15,1,0,1,0,16.445042,16.445042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.16,55.59,58.049999,54.52,6,3,4,0,1,8,4,1,513.79999,2590624.5,0,0,5080.229 -14963,18360,33430,-9,33433,33432,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.9631,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,4,2,0,0,6,5,1,730.5,6611671.5,0,0,17042.438 -14963,18360,33431,-9,33433,33432,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.67773,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,6,5,1,730.5,6611671.5,0,0,17042.438 -14963,18360,33432,33433,-9,-9,2,1,1,46,1,0,2,0,1,-9,1,1,0,0,3,9.6164865,9.6804066,0,2,0,-9,14,0,1,72.170921,0,0,0,45,1,5,3,1,1,2019,2,1,14,3,30,48,15,1,0,3,0,71.53756,71.53756,0,0,0,0,0,0,0,0,0,0,0,1.7207007,0,0,0,54.549999,46.419998,57.060001,57.759998,6,2,3,0,0,6,5,1,730.5,6611671.5,0,0,17042.438 -14963,18360,33433,33432,-9,-9,1,1,0,45,1,0,2,0,1,-9,97,3,0,0,5,0,0,0,2,0,-9,14,0,-1,18.411423,0,0,0,46,1,3,1,2,1,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,8.5596981,3,57.060001,57.759998,54.549999,46.419998,7,1,1,0,0,6,5,1,730.5,6611671.5,0,0,17042.438 -14964,18361,33434,-9,33435,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-920.58984,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,44,-9,-9,4,1,1,0,0,7,3,1,1104.5,10985.924,0,0,2531.6509 -14964,18361,33435,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,3,7.859365,8.0358238,6.2152061,4,0,0,0,-9,0,-911.92419,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,21,21,15,1,0,-9,0,15.323261,15.323261,0,0,0,0,0,0,0,0,1,1,0,5.83183,0,0,0,49.919998,47.32,-9,-9,2,1,1,0,0,7,3,1,1104.5,10985.924,0,0,2531.6509 -14964,18362,33436,-9,33435,-9,2,1,1,18,2,0,1,0,2,-9,7,2,0,0,4,5.5252032,5.3964381,0,3,0,0,0,-9,0,-967.15656,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,17,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,7,2,1,580,-161687.58,0,0,-4.4293132 -14965,18363,33437,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,1,1,0,0,3,7.7916641,8.0810843,6.3211322,3,0,0,0,-9,0,-968.49219,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,20,18,15,1,0,-9,0,11.812772,11.812772,0,0,0,0,0,0,0,0,1,1,0,0,6.4164515,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,2,4,1,2175,636295.5,0,0,1623.6914 -14966,18364,33438,33439,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,0,3,0,4.584837,4.4258399,1,0,-9,46,0,-1,-108.84983,0,0,0,75,1,5,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6176362,4.7313967,0,0,55.369999,40.830002,57.650002,56.130001,6,1,1,0,0,9,3,1,931,671733,0,0,4779.3462 -14966,18364,33439,33438,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,0,5,0,8.3990822,7.6323066,1,0,-9,46,0,1,39.582142,0,0,0,74,2,3,3,-9,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.276701,7.6387119,0,0,57.650002,56.130001,55.369999,40.830002,6,1,1,0,0,9,3,1,931,671733,0,0,4779.3462 -14967,18365,33440,33441,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,0,5,8.2166443,8.0277157,0,1,0,-9,7,0,-1,43.888168,0,1,1,30,1,3,1,2,2,2019,1,1,7,1,42,40,15,1,0,1,0,11.868818,11.868818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,15.44,60.619999,6,1,1,0,0,1,4,1,800,233073.42,0,0,2406.0522 -14967,18365,33441,33440,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,8.1260462,7.9274721,0,1,0,-9,7,0,1,4.8562121,0,0,0,29,1,5,1,2,-9,2019,1,2,30,12,35,35,15,1,1,1,0,8.436408,8.436408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.44,60.619999,57.060001,57.759998,5,1,1,0,0,1,4,1,800,233073.42,0,0,2406.0522 -14968,18366,33442,-9,33444,33443,5,1,1,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-965.14996,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,0,851.66669,106625.41,0,0,2732.7954 -14968,18366,33443,33444,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,0,4,8.8697357,8.5091438,0,2,0,-9,26,0,0,3.0973444,0,0,0,44,2,2,1,-9,2,2019,1,2,12,3,37,37,15,1,0,1,0,15.55523,15.55523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.130001,54.73,52.619999,45.080002,3,1,1,0,0,4,4,0,851.66669,106625.41,0,0,2732.7954 -14968,18366,33444,33443,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,0,2,7.9231143,7.7348633,0,2,0,-9,26,0,0,71.977577,0,0,1,44,2,4,1,3,3,2019,1,1,14,4,23,23,15,1,1,1,0,12.200541,12.200541,0,0,0,0,0,0,0,0,1,1,0,4.9263315,0,0,0,52.619999,45.080002,45.130001,54.73,6,1,1,0,0,4,4,0,851.66669,106625.41,0,0,2732.7954 -14968,18367,33445,-9,33444,33443,3,1,1,18,2,0,3,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1128.5364,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.189999,40.02,-9,-9,6,1,1,0,0,4,4,0,231,94950.719,0,0,1300.1351 -14969,18368,33446,-9,-9,-9,1,1,0,42,2,0,2,0,1,-9,2,1,0,0,5,6.9633498,8.0302944,7.1378455,4,0,0,0,-9,0,-902.37036,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,1,18,19,15,1,0,-9,0,7.3351917,7.3351917,0,0,0,0,0,0,0,0,1,1,0,7.7666883,0,0,0,48.27,56.130001,-9,-9,6,1,1,0,0,5,3,0,714.5,90068.969,0,0,1871.8281 -14969,18368,33447,-9,33446,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-977.36926,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,5,3,0,714.5,90068.969,0,0,1871.8281 -14970,18369,33448,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,1,2,0,5.3514223,5.1543965,3,0,0,0,-9,0,-996.04449,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9662232,5.3437386,3.4651139,3,30.440001,36.360001,-9,-9,2,1,1,0,0,2,2,1,286,-169305.91,0,0,1890.5785 -14971,18370,33449,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,3,7.9505897,8.0873518,0,3,0,0,0,-9,0,-1090.7767,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,40,41,15,1,0,-9,0,9.7875814,9.7875814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.919998,51.82,-9,-9,4,1,1,0,1,1,4,1,357,-178041.66,0,0,2610.7354 -14972,18371,33450,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-887.15906,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.790001,29.290001,-9,-9,5,1,1,0,0,5,1,1,810,-97738.219,0,0,777.25378 -14973,18372,33451,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,0,3,0,7.1683717,7.5843596,3,0,0,0,-9,0,-963.367,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5552447,7.2506127,0,0,56.740002,55.09,-9,-9,6,1,1,0,0,2,3,1,389,427821.28,0,0,2231.179 -14974,18373,33452,-9,33453,-9,2,1,0,16,2,0,2,1,3,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1150.915,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,-9,-9,3,3,4,0,0,8,2,0,406,58473.012,0,0,1545.7799 -14974,18373,33453,-9,-9,-9,1,1,0,56,2,0,2,0,3,-9,4,3,0,1,1,0,6.3568497,6.4250727,4,0,0,0,-9,0,-1048.8264,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7162037,0,0,18.76,23.91,-9,-9,4,3,4,0,0,8,2,0,406,58473.012,0,0,1545.7799 -14974,18373,33454,-9,33453,-9,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1108.8173,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,5,3,4,0,0,8,2,0,406,58473.012,0,0,1545.7799 -14975,18374,33455,33456,-9,-9,1,1,0,45,1,0,0,0,3,-9,2,1,0,0,3,8.3541203,8.1603565,0,1,0,-9,10,0,2,44.769623,0,0,0,43,1,3,1,2,-9,2019,1,2,7,0,40,40,15,1,0,1,0,8.8068705,8.8068705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,40.639999,52.959999,6,4,2,0,0,8,5,0,153.5,773322.94,0,0,3388.3311 -14975,18374,33456,33455,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,0,3,8.5034332,8.591876,0,1,0,-9,10,0,-2,-84.783669,0,0,0,45,3,3,1,2,-9,2019,1,1,9,0,44,44,15,1,0,1,0,12.962392,12.962392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.639999,52.959999,57.330002,53.459999,5,4,2,0,0,8,5,0,153.5,773322.94,0,0,3388.3311 -14976,18375,33457,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,4,8.094243,8.2154751,0,3,0,0,0,-9,0,-894.76794,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,39,41,15,1,0,-9,0,9.2014084,9.2014084,0,0,0,0,0,0,0,2,1,1,0,3.9207511,0,6.6529546,3,63.48,51.849998,-9,-9,4,1,1,0,0,10,4,0,686,467971.41,0,0,2411.1323 -14977,18376,33458,33459,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,0,5,7.5414057,7.2762918,0,2,0,-9,8,0,-6,-98.920525,0,0,1,49,2,2,1,2,2,2019,1,1,6,0,6,16,15,1,0,1,0,31.673786,31.673786,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.060001,57.759998,56.189999,46.16,6,1,1,0,0,10,3,1,1200.6666,862640.31,0,0,2330.3296 -14977,18376,33459,33458,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,2,8.610487,8.1700964,0,2,0,-9,8,0,6,-1.2654923,0,0,0,43,2,5,1,-9,-9,2019,1,2,9,0,44,39,15,1,0,1,0,9.583704,9.583704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.189999,46.16,57.060001,57.759998,5,1,1,0,0,10,3,1,1200.6666,862640.31,0,0,2330.3296 -14977,18376,33460,-9,33458,33459,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.02081,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.2099056,3,42.950001,57.279999,-9,-9,6,1,1,0,1,10,3,1,1200.6666,862640.31,0,0,2330.3296 -14978,18377,33461,-9,33463,-9,2,1,1,19,2,0,2,1,2,0,7,2,0,0,3,0,5.1167488,4.8968272,3,0,0,0,-9,0,-925.96991,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.831708,0,0,0,57.330002,53.459999,-9,-9,2,1,1,0,0,8,2,0,447,-16383.093,0,0,496.5665 -14978,18378,33462,-9,33463,-9,3,1,1,18,2,0,2,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-891.86945,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1732571,0,0,0,41.099998,58.459999,-9,-9,6,1,1,1,1,8,3,0,371,-192321.7,0,0,1070.4556 -14978,18379,33463,33465,-9,-9,1,1,0,39,1,0,2,0,2,-9,6,3,0,1,3,0,6.6432199,6.8697729,2,0,-9,1,-9,-4,49.92041,0,0,1,43,2,4,1,2,2,2019,3,5,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.8199019,0,1.4495333,3,33.220001,49.650002,52,55,4,1,1,0,0,8,3,0,585,250650.83,0,0,3635.5571 -14978,18379,33464,-9,33463,33465,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.43115,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,3,0,585,250650.83,0,0,3635.5571 -14978,18379,33465,33463,-9,-9,5,1,1,43,1,0,2,0,2,-9,2,1,0,0,4,8.7989931,8.3490505,0,2,0,-9,1,-9,4,-68.229553,-9,0,0,39,2,3,3,-9,-9,2019,2,1,9,1,40,0,15,1,0,3,0,13.256066,13.256066,0,0,0,0,0,0,0,0,1,1,0,2.9700115,0,0,0,52,55,33.220001,49.650002,5,1,1,0,0,8,3,0,585,250650.83,0,0,3635.5571 -14979,18380,33466,33467,-9,-9,2,1,0,74,1,0,0,0,2,-9,8,3,1,1,3,0,6.5984554,6.3077445,1,0,-9,50,0,2,108.01423,0,0,0,72,2,4,3,1,2,2019,4,1,11,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6018095,0,0,50,46,39.68,57.84,5,1,1,0,0,5,4,1,296,1187131,0,0,3201.698 -14979,18380,33467,33466,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,8.1956949,8.2212715,1,0,-9,50,0,-2,-36.958183,0,0,0,74,2,3,3,3,3,2019,4,2,13,6,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.94983006,8.5216389,120.86835,1,39.68,57.84,50,46,4,1,1,0,0,5,4,1,296,1187131,0,0,3201.698 -14980,18381,33468,-9,33470,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1075.6514,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,7,3,1,174,176543.52,0,0,2014.9781 -14980,18381,33469,-9,33470,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1138.1079,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,7,3,1,174,176543.52,0,0,2014.9781 -14980,18381,33470,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,0,5,8.1131487,8.4644222,7.48488,4,0,0,0,-9,0,-1047.6648,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,30,30,15,1,0,-9,0,9.9039011,9.9039011,0,0,0,0,0,0,0,0,1,1,0,7.577579,0,0,0,43.189999,58.529999,-9,-9,5,1,1,0,0,7,3,1,174,176543.52,0,0,2014.9781 -14981,18382,33471,33472,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,7.6119947,7.0624981,1,0,-9,35,0,2,1.4592723,0,0,0,61,1,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5105515,0,0,52.970001,40.560001,49.41,58.279999,6,1,1,0,0,6,5,1,443,1721071,0,0,3598.6687 -14981,18382,33472,33471,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,4,0,8.7517614,8.6483545,1,0,-9,35,0,-2,-44.998993,0,0,0,63,2,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6938553,8.6702118,0,0,49.41,58.279999,52.970001,40.560001,6,1,1,0,0,6,5,1,443,1721071,0,0,3598.6687 -14982,18383,33473,33474,-9,-9,1,1,1,47,1,0,0,0,1,-9,1,1,0,0,4,6.6849608,6.776288,0,1,0,-9,8,0,-17,-5.6229682,0,0,0,64,1,4,1,2,2,2019,1,2,6,0,35,40,15,1,0,1,0,2.3876808,2.3876808,0,0,0,0,0,0,0,0,1,1,0,5.1647701,0,0,0,54.790001,55.860001,50.34,56.400002,6,1,1,0,0,10,2,1,220.5,123670.44,0,0,2301.1069 -14982,18383,33474,33473,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,0,4,6.7877655,6.8211193,0,1,0,-9,8,0,17,22.441227,0,0,0,47,1,4,1,1,3,2019,1,1,12,1,4,0,15,1,0,1,0,25.37327,25.37327,0,0,0,0,0,0,0,0,1,1,0,7.2404366,0,0,0,50.34,56.400002,54.790001,55.860001,6,1,1,0,0,10,2,1,220.5,123670.44,0,0,2301.1069 -14983,18384,33475,-9,-9,-9,1,1,0,32,2,0,3,0,1,-9,2,1,0,0,5,8.4025402,8.372386,0,4,0,0,0,-9,0,-900.16937,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,16,4,37,35,15,1,1,-9,0,14.597145,14.597145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.459999,61.869999,-9,-9,4,3,4,0,1,8,3,0,630.66669,-103748.33,0,0,3319.9829 -14983,18384,33476,-9,33475,-9,3,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1127.9911,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,8,3,0,630.66669,-103748.33,0,0,3319.9829 -14983,18384,33477,-9,33475,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1049.6815,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,3,0,630.66669,-103748.33,0,0,3319.9829 -14984,18385,33478,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,5.4944606,5.5884457,3,0,0,0,-9,0,-996.88226,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,.78473824,0,0,0,0,1,1,0,0,5.3851795,0,0,53,44,-9,-9,6,1,1,0,0,4,2,1,617,69711.422,0,0,802.26178 -14985,18386,33479,-9,-9,-9,1,1,1,91,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-957.20172,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2051911,0,0,0,51.099998,54.75,-9,-9,7,1,1,0,0,13,1,1,283,-10171.364,0,0,326.62872 -14985,18387,33480,-9,-9,33479,2,1,1,69,3,0,0,0,2,-9,4,3,0,0,3,0,7.4777203,7.422802,3,0,0,0,-9,0,-958.88916,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4390221,0,0,52,48,-9,-9,5,1,1,0,0,13,3,1,582,406903.03,0,0,2786.3242 -14985,18388,33481,-9,-9,33479,3,1,1,53,2,0,0,0,2,-9,2,1,0,0,4,7.9203072,7.9270349,0,3,0,0,0,-9,0,-1073.0527,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,-9,-9,6,1,1,0,0,13,3,1,715,155631.44,0,0,1416.8043 -14986,18389,33482,33483,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,3,8.51793,8.232501,0,1,0,-9,32,0,-1,49.168289,0,0,0,55,3,1,3,2,2,2019,2,1,11,0,37,37,15,1,0,4,0,12.264783,12.264783,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,46.080002,57.200001,29.190001,19.440001,6,1,1,0,0,12,4,1,2807,288197.22,0,0,2492.6587 -14986,18389,33483,33482,-9,-9,1,1,1,55,1,0,0,0,3,-9,4,3,0,0,1,0,6.4865546,6.3927484,1,0,-9,32,0,1,-114.37363,0,0,0,54,2,3,1,3,3,2019,3,2,24,11,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4546356,6.4028649,6.8378167,3,29.190001,19.440001,46.080002,57.200001,3,1,1,0,0,12,4,1,2807,288197.22,0,0,2492.6587 -14987,18390,33484,33485,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,0,4,4.5161014,4.3928256,0,1,0,-9,9,0,-3,-36.086441,0,0,0,60,2,3,1,3,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3704114,0,0,0,43.720001,55.299999,47.790001,53.790001,5,1,1,0,0,11,4,1,2998.5,1025762.4,0,0,830.51038 -14987,18390,33485,33484,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,8.3586369,8.4812174,0,1,0,-9,9,0,3,14.878588,0,0,0,57,2,4,3,3,2,2019,2,1,12,0,40,45,15,1,0,3,0,9.1990528,9.1990528,0,0,0,0,0,0,0,2,0,0,0,0,0,2.9156117,3,47.790001,53.790001,43.720001,55.299999,6,1,1,0,0,11,4,1,2998.5,1025762.4,0,0,830.51038 -14988,18391,33486,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,0,3,7.9051189,7.4946313,0,3,0,0,0,-9,0,-895.17902,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,37,15,1,0,-9,0,9.7305784,9.7305784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.279999,50.189999,-9,-9,5,1,1,0,0,1,3,0,169,-190633.41,0,0,1726.7598 -14989,18392,33487,33488,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,4,0,8.9225397,8.7750921,1,0,-9,34,0,1,6.1439486,0,0,0,59,2,5,3,3,2,2019,4,1,6,0,0,35,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.4254837,0,3,54.790001,55.860001,49.25,61.25,2,1,1,0,0,1,5,1,826.5,4208822,0,0,18992.176 -14989,18392,33488,33487,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,0,5,0,10.25418,10.269684,1,0,-9,34,0,-1,-51.422108,0,0,0,60,2,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.2662835,9.9899101,4.0006475,3,49.25,61.25,54.790001,55.860001,6,1,1,0,0,1,5,1,826.5,4208822,0,0,18992.176 -14990,18393,33489,33490,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,46,0,-1,-71.407494,0,0,0,64,2,4,1,2,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,8.4169617,0,2.6691444,3,42.060001,57.689999,54.790001,55.860001,6,1,1,0,0,5,5,1,100.5,1844323.3,0,0,8334.4551 -14990,18393,33490,33489,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,4,8.7993317,9.5735884,8.7195787,1,0,-9,43,0,1,-90.25827,0,0,0,63,2,5,3,3,2,2019,2,2,8,0,20,47,15,1,0,4,0,50.115494,50.115494,0,0,0,0,0,0,0,0,0,0,0,8.2263813,9.1755314,0,0,54.790001,55.860001,42.060001,57.689999,5,1,1,0,0,5,5,1,100.5,1844323.3,0,0,8334.4551 -14991,18394,33491,33493,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,1,3,8.0993319,8.0019312,0,1,0,-9,29,0,6,31.690111,0,0,0,52,3,2,3,2,2,2019,2,2,6,0,43,43,15,1,0,3,0,8.5076275,8.5076275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.130001,48.040001,52.240002,50.75,4,1,1,0,0,10,3,0,495.33334,173738.06,0,0,2899.5334 -14991,18394,33492,-9,33493,33491,4,1,0,16,2,0,0,0,-9,-9,2,2,0,0,3,6.9642434,6.6578593,0,1,0,0,0,-9,0,-1043.8641,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,48.57,-9,-9,2,1,1,0,0,10,3,0,495.33334,173738.06,0,0,2899.5334 -14991,18394,33493,33491,-9,-9,2,1,0,52,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,29,0,-6,-71.959503,0,0,0,58,3,3,1,3,2,2019,3,1,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,33.946636,3,52.240002,50.75,54.130001,48.040001,4,1,1,0,0,10,3,0,495.33334,173738.06,0,0,2899.5334 -14991,18395,33494,-9,33493,33491,3,1,1,18,2,0,0,0,2,1,2,1,0,0,5,0,0,0,3,0,0,0,-9,0,-986.66571,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.949997,45.490002,-9,-9,7,1,1,0,0,10,1,0,705,78070.375,0,0,0 -14992,18396,33495,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,-9,0,0,0,-1048.1274,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,0,50,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.299999,52.73,-9,-9,2,1,1,1,1,11,1,1,331,-129468.85,0,0,800.40399 -14993,18397,33496,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,5,8.4690199,8.8624916,0,3,0,0,0,-9,0,-901.95093,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,43,44,15,1,0,-9,0,20.939587,20.939587,0,0,0,0,0,0,0,0,0,0,0,7.177053,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,4,5,1,2486,297070.97,0,0,2707.71 -14994,18398,33497,33498,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.2105055,7.460403,6.3097029,1,0,-9,4,0,0,-46.867474,0,0,0,72,2,3,3,-9,-9,2019,2,1,10,0,21,32,15,1,0,4,0,9.5417776,9.5417776,0,0,0,0,0,0,0,14.5,1,1,0,1.5202836,6.5019498,6.0386105,3,47.25,45.560001,50.540001,38.689999,6,1,1,0,0,1,3,1,1125,265915.94,0,0,2861.5933 -14994,18398,33498,33497,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.5608974,5.2625427,1,0,-9,41,0,9,-66.15937,0,0,0,63,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,2.668714,0,0,0,0,2,1,1,0,6.100843,5.5022988,8.700448,3,50.540001,38.689999,47.25,45.560001,6,1,1,0,0,1,3,1,1125,265915.94,0,0,2861.5933 -14995,18399,33499,33500,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,0,4,0,4.753787,4.9060183,1,0,-9,63,0,5,9.5721645,0,0,0,80,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.8548698,4.4240232,0,3,54.200001,57.490002,48,35,5,1,1,0,0,10,2,0,378.5,1649160.3,0,0,1469.4453 -14995,18399,33500,33499,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,-5,156.88506,0,0,0,85,3,4,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48,35,54.200001,57.490002,1,1,1,0,0,10,2,0,378.5,1649160.3,0,0,1469.4453 -14996,18400,33501,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,6,3,0,0,5,0,0,0,3,0,-9,0,-9,0,-1120.3434,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.29216,3,24.75,68.650002,-9,-9,3,1,1,0,1,9,1,1,197,-112227.37,0,0,2284.1851 -14997,18401,33502,33503,-9,-9,2,1,1,55,1,0,2,0,1,-9,1,1,0,0,3,9.9882679,9.9726887,0,2,0,-9,25,0,2,29.59234,0,0,0,53,1,3,3,2,1,2019,2,1,7,0,40,45,15,1,0,3,0,74.660423,74.660423,0,0,0,0,0,0,0,0,1,1,0,3.5574422,0,0,0,53.540001,49.68,44.689999,49.93,6,4,2,0,0,7,5,1,1122,5248951,0,0,11286.262 -14997,18401,33503,33502,-9,-9,1,1,0,53,1,0,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,25,0,-2,-54.77459,0,0,0,55,1,3,1,2,2,2019,3,2,11,0,0,10,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8385487,0,0,0,44.689999,49.93,53.540001,49.68,6,1,1,0,0,7,5,1,1122,5248951,0,0,11286.262 -14997,18402,33504,-9,33503,33502,3,1,0,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-939.44586,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.91,59.07,-9,-9,6,1,1,0,0,7,5,1,1094,-7029.7451,0,0,0 -14998,18403,33505,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,3,0,7.7631478,7.7507987,3,0,0,0,-9,0,-992.31439,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,16,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3547354,7.9554882,0,0,42.869999,19.35,-9,-9,4,1,1,0,0,9,3,1,514,864424.69,0,0,1901.5792 -14999,18404,33506,-9,-9,-9,2,1,0,18,2,0,0,1,2,0,7,2,0,0,4,6.0020714,5.7734656,0,3,0,0,0,-9,0,-1048.652,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,9,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4559941,0,0,0,49.41,58.279999,-9,-9,6,1,1,0,0,9,2,0,548,42243.754,0,0,78.186356 -15000,18405,33507,33508,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,8.1691494,8.1248121,1,0,-9,4,0,11,-58.712914,0,0,0,60,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0542645,8.129571,3.8465896,3,57.16,56.150002,33.580002,61.560001,6,1,1,0,0,10,4,1,334,1027040.9,0,0,4032.7727 -15000,18405,33508,33507,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,0,7.7418404,7.7071624,1,0,-9,4,0,-11,58.568596,0,0,0,71,2,4,3,-9,-9,2019,4,1,17,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8546729,7.8649573,.26124504,3,33.580002,61.560001,57.16,56.150002,4,1,1,0,0,10,4,1,334,1027040.9,0,0,4032.7727 -15001,18406,33509,33511,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,8.884141,8.511591,0,2,0,-9,7,0,-7,75.500259,0,0,0,52,3,2,1,-9,-9,2019,1,1,11,0,50,55,15,1,0,1,0,19.438379,19.438379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.599998,52.77,36.849998,48.900002,4,1,1,0,0,13,4,1,267,406505.06,0,0,3433.5515 -15001,18406,33510,-9,33511,33509,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1192.153,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,4,1,1,0,0,13,4,1,267,406505.06,0,0,3433.5515 -15001,18406,33511,33509,-9,-9,1,1,0,52,1,0,1,0,3,-9,2,1,0,0,2,7.3389745,7.3843961,0,2,0,-9,24,0,7,93.140297,0,0,0,45,2,3,1,2,2,2019,1,2,19,8,16,22,15,1,1,1,0,12.860123,12.860123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.849998,48.900002,44.599998,52.77,2,1,1,0,0,13,4,1,267,406505.06,0,0,3433.5515 -15002,18407,33512,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,3,0,3.4123027,3.5027173,3,0,0,0,-9,0,-1006.2813,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0954468,0,0,0,20,32.610001,-9,-9,2,1,1,0,0,13,2,0,465,231062.03,0,0,504.38486 -15003,18408,33513,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1010.6719,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,30.629999,-9,-9,2,1,1,0,0,12,1,0,899,0,0,0,-181.21933 -15004,18409,33514,33516,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,0,4,8.8061323,8.4600487,0,2,0,-9,6,0,4,7.0166187,0,0,0,45,2,3,1,-9,-9,2019,1,1,10,0,42,42,15,1,0,1,0,12.024295,12.024295,0,0,0,0,0,0,0,0,1,1,0,3.604135,0,0,0,54.200001,57.490002,53.139999,51.279999,6,1,1,0,0,10,5,1,293,720984.19,0,0,5815.1523 -15004,18409,33515,-9,33516,33514,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-872.86121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,293,720984.19,0,0,5815.1523 -15004,18409,33516,33514,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,9.3282728,9.3169146,0,2,0,-9,6,0,-4,-2.2971745,0,0,0,49,2,4,1,2,2,2019,1,2,10,0,45,37,15,1,0,1,0,32.090736,32.090736,0,0,0,0,0,0,0,0,1,1,0,3.8837826,0,0,0,53.139999,51.279999,54.200001,57.490002,5,1,1,0,0,10,5,1,293,720984.19,0,0,5815.1523 -15005,18410,33517,-9,33520,33518,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-883.28809,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,4,1,968.25,261944.69,0,0,3886.9238 -15005,18410,33518,33520,-9,-9,1,1,1,46,1,0,2,0,3,-9,1,1,0,0,5,8.9654055,8.4199762,0,2,0,-9,24,0,2,54.887894,0,0,0,44,2,3,1,2,2,2019,1,2,6,0,45,45,15,1,0,1,0,11.76768,11.76768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,60.290001,52.110001,6,1,1,0,0,9,4,1,968.25,261944.69,0,0,3886.9238 -15005,18410,33519,-9,33520,33518,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-901.81635,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,9,4,1,968.25,261944.69,0,0,3886.9238 -15005,18410,33520,33518,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,3,7.4364305,7.4770856,0,2,0,-9,24,0,-2,-27.218912,0,0,1,46,3,5,1,2,2,2019,1,1,7,0,24,25,15,1,0,1,0,7.1522679,7.1522679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,57.060001,57.759998,6,1,1,0,0,9,4,1,968.25,261944.69,0,0,3886.9238 -15006,18411,33521,33522,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,3,0,7.6554031,7.502955,1,0,-9,50,0,-3,-104.25851,0,0,0,74,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.5010796,7.5096335,12.137767,1,45.689999,49.310001,38.740002,40.529999,6,1,1,0,0,2,3,1,1062.5,790004.38,0,0,2456.2329 -15006,18411,33522,33521,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,6.6731277,6.5332742,1,0,-9,50,0,3,-53.517529,0,0,0,71,2,3,3,2,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0382166,6.1813579,0,0,38.740002,40.529999,45.689999,49.310001,6,1,1,0,0,2,3,1,1062.5,790004.38,0,0,2456.2329 -15007,18412,33523,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,0,4,8.6961689,8.4867716,0,3,0,0,0,-9,0,-1052.9,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,70,75,15,1,0,-9,0,8.8124695,8.8124695,0,0,0,0,0,0,0,0,0,0,0,3.6468024,0,0,0,45.91,59.889999,-9,-9,3,1,1,0,0,2,5,1,3767,328282.78,0,0,2478.6506 -15008,18413,33524,33525,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,8.3844118,8.6338358,0,1,0,-9,39,0,1,-40.341103,0,0,0,57,3,3,1,3,3,2019,1,1,8,0,55,0,15,1,0,1,0,9.6691294,9.6691294,0,0,0,0,0,0,0,2,0,0,0,0,0,10.590639,3,57.16,56.150002,53.790001,40.380001,2,1,1,0,0,9,5,1,788,283465,0,0,2957.3262 -15008,18413,33525,33524,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,7.8918815,7.4525394,0,1,0,-9,39,0,-1,2.6969943,0,0,0,58,2,4,1,2,2,2019,1,2,8,0,35,38,15,1,0,1,0,9.9065199,9.9065199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.790001,40.380001,57.16,56.150002,2,1,1,0,0,9,5,1,788,283465,0,0,2957.3262 -15009,18414,33526,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,0,3,0,6.407701,6.2912941,3,0,0,0,-9,0,-1019.402,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6731424,6.2124448,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,4,2,1,953,526145.69,0,0,75.250648 -15010,18415,33527,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-964.60022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7912118,0,0,0,56.34,46.169998,-9,-9,7,1,1,0,0,1,1,0,349,116809.35,0,0,1385.011 -15011,18416,33528,33529,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,1,1,8.1640587,8.320632,0,1,0,-9,16,0,-11,-17.439251,0,0,0,56,2,3,1,2,2,2019,1,2,24,7,41,42,15,1,1,1,0,12.837206,12.837206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.560001,12.97,41.990002,53.75,1,1,1,0,0,4,4,0,385.5,840672.25,0,0,2066.377 -15011,18416,33529,33528,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,3,7.1429725,7.1020942,0,1,0,-9,17,0,11,-64.885521,0,0,0,45,1,1,1,2,1,2019,1,1,16,6,35,60,15,1,1,1,0,3.7329814,3.7329814,0,0,0,0,0,0,0,27.5,1,1,0,3.1900036,0,25.780529,2,41.990002,53.75,40.560001,12.97,3,1,1,0,1,4,4,0,385.5,840672.25,0,0,2066.377 -15011,18417,33530,-9,33528,33529,3,1,0,21,2,0,0,0,2,1,2,1,0,0,4,6.7674618,6.8055205,0,3,0,0,0,-9,0,-1117.3381,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,28,0,15,1,0,-9,1,4.6770797,4.6770797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,4,2,0,1002,76563.641,0,0,-431.71164 -15012,18418,33531,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,0,4,0,6.2138476,6.333396,3,0,0,0,-9,0,-1039.6716,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7506609,6.4852009,0,0,48.68,54.5,-9,-9,1,1,1,0,0,9,2,0,1097,220434.3,0,0,1675.0507 -15013,18419,33532,33533,-9,-9,2,1,0,57,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,9,0,-2,-57.169987,0,0,0,59,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,52.23,55.599998,7,1,1,0,0,2,5,1,312,1290164.5,0,0,4834.3496 -15013,18419,33533,33532,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,9.3088837,9.3724756,8.2536478,1,0,-9,9,0,2,-111.63854,0,0,0,57,3,5,3,-9,2,2019,2,2,9,0,30,48,15,1,0,4,0,34.705696,34.705696,0,0,0,0,0,0,0,0,1,1,0,0,8.464695,0,0,52.23,55.599998,60.02,56.419998,6,1,1,0,0,2,5,1,312,1290164.5,0,0,4834.3496 -15014,18420,33534,33535,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,8.5334845,8.6475906,0,2,0,-9,26,0,-3,153.73137,0,0,0,52,2,4,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,17.920824,17.920824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.860001,50.740002,53,54,5,3,4,0,0,8,5,1,557,499775.81,0,0,4381.9639 -15014,18420,33535,33534,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,4,8.3366623,8.3046389,0,2,0,-9,26,0,3,4.8224258,0,0,0,49,1,4,1,2,2,2019,1,1,9,1,35,35,15,1,0,1,0,14.524877,14.524877,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50.860001,50.740002,6,3,4,0,0,8,5,1,557,499775.81,0,0,4381.9639 -15014,18421,33536,-9,33534,33535,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,6.1131868,6.1533103,0,3,0,0,0,-9,0,-1015.9604,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,4,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,-9,-9,3,3,4,0,0,8,5,1,464,-104840.46,0,0,-1136.3752 -15015,18422,33537,33538,-9,-9,1,1,1,50,1,0,0,0,3,-9,3,3,0,1,2,0,0,0,1,0,-9,3,0,-4,0,0,0,0,54,2,1,3,-9,-9,2019,4,2,24,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.669998,31.040001,27.110001,20.15,4,1,1,1,0,12,1,0,668,113471.7,0,0,3697.8381 -15015,18422,33538,33537,-9,-9,2,1,0,54,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,3,0,4,0,0,0,0,50,3,2,3,-9,-9,2019,4,1,21,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.110001,20.15,35.669998,31.040001,1,1,1,0,0,12,1,0,668,113471.7,0,0,3697.8381 -15016,18423,33539,-9,33542,33541,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1017.0608,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,7,2,1,736.75,826428.94,0,0,2507.7073 -15016,18423,33540,-9,33542,33541,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.32501,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,7,2,1,736.75,826428.94,0,0,2507.7073 -15016,18423,33541,33542,-9,-9,2,1,1,61,1,0,2,0,2,-9,2,1,0,0,3,7.3465428,7.5649724,0,2,0,-9,6,0,14,121.39167,0,0,0,47,2,5,3,-9,-9,2019,2,1,10,1,25,97,15,1,0,3,0,7.3783627,7.3783627,0,0,0,0,0,0,0,0,1,1,0,6.9749198,0,0,0,51,48,54.689999,57.470001,5,1,1,0,0,7,2,1,736.75,826428.94,0,0,2507.7073 -15016,18423,33542,33541,-9,-9,1,1,0,47,1,0,2,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,6,0,-14,-168.38016,0,0,0,61,2,3,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2065473,0,0,0,54.689999,57.470001,51,48,6,1,1,0,0,7,2,1,736.75,826428.94,0,0,2507.7073 -15017,18424,33543,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,0,4,0,8.8063869,9.0833349,3,0,0,0,-9,0,-1043.3816,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5928283,8.4416533,4.3489766,3,39.330002,58.880001,-9,-9,6,1,1,0,0,9,5,1,404,1256853.9,0,0,3551.1108 -15018,18425,33544,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,1,4,6.8954515,6.5977454,0,3,0,0,0,-9,0,-962.90936,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,12,0,15,1,0,-9,0,9.4198961,9.4198961,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.169998,37.799999,-9,-9,5,1,1,0,1,7,2,1,599,-125009.7,0,0,-789.0061 -15019,18426,33545,33546,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,5,8.8271341,8.8894672,0,1,0,-9,34,0,-4,160.24141,0,0,0,58,3,3,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,23.765577,23.765577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,55.110001,47.630001,7,1,1,0,0,13,5,1,612.5,633331.38,0,0,4276.9365 -15019,18426,33546,33545,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,0,3,8.0963554,7.7288365,0,1,0,-9,34,0,4,-187.02586,0,0,0,54,1,5,1,2,3,2019,1,2,8,0,37,38,15,1,0,1,0,8.8753462,8.8753462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.110001,47.630001,57.060001,57.759998,6,1,1,0,0,13,5,1,612.5,633331.38,0,0,4276.9365 -15019,18427,33547,-9,33545,33546,3,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-867.10675,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,13,1,1,370,131537.25,0,0,0 -15020,18428,33548,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,1,1,0,0,2,0,0,0,3,0,0,0,-9,0,-975.13782,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.59274191,0,0,0,46.849998,53.169998,-9,-9,5,3,4,0,0,9,2,0,438,-97392.391,0,0,-757.34094 -15021,18429,33549,-9,-9,-9,1,1,0,50,3,0,0,0,3,-9,6,3,0,1,1,0,0,0,3,0,-9,0,-9,0,-1025.3485,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.09,37.34,-9,-9,1,1,1,0,0,2,1,1,314,-9924.333,0,0,-50.913719 -15022,18430,33550,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-986.48627,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.150002,24.99,-9,-9,2,1,1,0,0,7,1,0,150,148997.33,0,0,1680.5411 -15023,18431,33551,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,1,2,0,6.0503221,6.3045797,3,0,0,0,-9,0,-1031.0341,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8079581,0,0,57.43,38.959999,-9,-9,6,1,1,0,0,13,2,1,1230,434776.41,0,0,257.59406 -15024,18432,33552,33553,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,4,8.22999,8.2828665,0,2,0,-9,11,0,1,36.95578,0,0,0,39,1,3,1,2,-9,2019,1,1,4,0,39,40,15,1,0,1,0,10.791789,10.791789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,47.07,50.009998,7,1,1,0,0,7,3,1,841.75,27363.246,0,0,1237.4608 -15024,18432,33553,33552,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,0,3,0,0,0,2,0,-9,11,0,-1,-155.19362,0,0,1,40,2,4,1,2,-9,2019,1,2,12,0,0,26,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,50.009998,48.869999,58.549999,6,1,1,0,0,7,3,1,841.75,27363.246,0,0,1237.4608 -15024,18432,33554,-9,33553,33552,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.19214,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,3,1,841.75,27363.246,0,0,1237.4608 -15024,18432,33555,-9,33553,33552,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.43054,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,1,841.75,27363.246,0,0,1237.4608 -15025,18433,33556,-9,33557,33559,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.05023,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,603.5,59249.855,0,0,2781.0747 -15025,18433,33557,33559,-9,-9,1,1,0,38,1,0,2,0,3,-9,6,3,0,0,5,0,0,0,2,0,1,1,-9,6,-8.9774399,0,0,1,32,2,4,1,-9,-9,2019,3,4,7,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,52.23,55.599998,6,1,1,0,0,2,3,0,603.5,59249.855,0,0,2781.0747 -15025,18433,33558,-9,33557,33559,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.1968,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,603.5,59249.855,0,0,2781.0747 -15025,18433,33559,33557,-9,-9,4,1,1,32,1,0,2,0,2,-9,2,1,0,0,4,8.1566439,8.1779213,0,2,0,1,1,-9,-6,3.1965446,0,0,0,38,3,5,3,-9,-9,2019,2,1,8,1,45,40,15,1,0,3,0,7.775023,7.775023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.599998,51.73,58.82,7,1,1,0,0,2,3,0,603.5,59249.855,0,0,2781.0747 -15026,18434,33560,33561,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,8.2741318,7.8332639,0,1,0,-9,6,0,-8,-83.210907,0,0,0,54,2,2,1,-9,-9,2019,1,2,8,0,49,52,15,1,0,1,0,11.630866,11.630866,0,0,0,0,0,0,0,7,0,0,0,0,0,.28588668,3,57.16,56.150002,35.060001,42.580002,5,1,1,0,0,12,4,0,606.5,75095.469,0,0,3130.8467 -15026,18434,33561,33560,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,7.7639394,7.7695079,0,1,0,-9,6,0,8,53.255833,0,0,0,46,2,4,1,2,2,2019,1,1,23,11,29,27,15,1,1,1,0,8.2664194,8.2664194,0,0,0,0,0,0,0,7,0,0,0,0,0,2.9924576,3,35.060001,42.580002,57.16,56.150002,4,1,1,0,0,12,4,0,606.5,75095.469,0,0,3130.8467 -15027,18435,33562,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,6.5486884,6.2666454,3,0,0,0,-9,0,-984.17603,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.5974793,6.0133166,10.709151,3,60.900002,39.41,-9,-9,6,1,1,0,0,13,2,1,1182,526153.56,0,0,1625.2488 -15028,18436,33563,33564,-9,-9,1,1,1,29,1,0,0,0,2,-9,1,1,0,0,3,7.2016063,7.4268775,0,1,0,-9,2,0,7,-51.114777,0,1,0,22,2,5,1,1,2,2019,1,2,12,0,50,60,15,1,0,1,0,3.6263387,3.6263387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,38.009998,61.369999,4,1,1,0,0,11,3,1,612,56549.328,0,0,1819.4744 -15028,18436,33564,33563,-9,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,0,5,7.8813963,7.8572984,0,1,0,-9,2,0,-7,-118.01856,0,1,1,29,2,3,1,-9,-9,2019,1,1,13,3,40,0,15,1,0,1,0,6.0168581,6.0168581,0,0,0,0,0,0,0,7,0,0,0,0,0,10.194358,3,38.009998,61.369999,49.040001,55.860001,5,1,1,0,0,11,3,1,612,56549.328,0,0,1819.4744 -15029,18437,33565,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1018.4515,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.540001,46.049999,-9,-9,5,1,1,0,0,6,1,0,667,-25920.074,0,0,415.4653 -15030,18438,33566,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-996.33575,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.55972224,0,0,0,56.830002,42.950001,-9,-9,7,1,1,0,0,1,1,1,300,0,0,0,918.62274 -15030,18439,33567,-9,33566,-9,2,1,0,49,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-990.87482,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,9,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.41,25.549999,-9,-9,2,1,1,0,1,1,1,1,363,27584.064,0,0,916.0434 -15031,18440,33568,-9,33572,33569,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1068.3981,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,13,4,1,523.79999,6512.2705,0,0,4035.064 -15031,18440,33569,33572,-9,-9,1,1,1,34,1,0,3,0,2,-9,2,1,0,0,3,9.0929108,9.1115437,0,2,0,-9,13,0,0,-128.75885,0,0,0,34,2,4,1,3,3,2019,1,2,6,0,51,54,15,1,0,1,0,18.205256,18.205256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,5,1,1,0,0,13,4,1,523.79999,6512.2705,0,0,4035.064 -15031,18440,33570,-9,33572,33569,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.69836,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,4,1,523.79999,6512.2705,0,0,4035.064 -15031,18440,33571,-9,33572,33569,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-801.81287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,13,4,1,523.79999,6512.2705,0,0,4035.064 -15031,18440,33572,33569,-9,-9,2,1,0,34,1,0,3,0,2,-9,2,1,0,0,4,7.2013106,7.5994763,0,2,0,-9,13,0,0,-53.521381,0,0,1,34,2,3,1,2,1,2019,1,1,12,0,28,33,15,1,0,1,0,5.2525787,5.2525787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.330002,53.459999,6,1,1,0,0,13,4,1,523.79999,6512.2705,0,0,4035.064 -15032,18441,33573,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,2,1,0,0,4,8.6291294,8.4754438,0,3,0,0,0,-9,0,-1101.3711,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,37,38,15,1,1,-9,0,17.445225,17.445225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.580002,60.950001,-9,-9,3,1,1,0,0,2,5,1,894,455571.47,0,0,1900.472 -15033,18442,33574,33575,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,0,5,9.0099754,9.0497036,0,1,0,-9,7,0,-2,-48.503807,0,0,0,50,1,4,1,2,1,2019,1,2,6,0,39,37,15,1,0,1,0,30.323599,30.323599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.32,52.049999,47.610001,56.369999,6,1,1,0,0,7,5,1,1039,1546003.8,0,0,3506.1147 -15033,18442,33575,33574,-9,-9,2,1,0,50,1,0,0,0,1,-9,1,1,0,0,4,8.2489109,8.224267,0,1,0,-9,7,0,2,72.175339,0,0,0,48,1,5,1,2,1,2019,1,1,14,2,30,34,15,1,0,1,0,14.341935,14.341935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.610001,56.369999,42.32,52.049999,7,1,1,0,0,7,5,1,1039,1546003.8,0,0,3506.1147 -15034,18443,33576,-9,-9,-9,1,1,0,27,3,0,1,0,2,-9,2,1,0,0,3,7.4148192,7.7892542,0,4,0,0,0,-9,0,-1028.8223,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,32,40,15,1,0,-9,0,5.4754748,5.4754748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,4,1,1,0,0,13,3,0,1091,5999.2598,0,0,2262.1714 -15034,18443,33577,-9,33576,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1090.752,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,1091,5999.2598,0,0,2262.1714 -15035,18444,33578,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,0,3,7.1645584,8.0864115,7.5769858,4,0,0,0,-9,0,-980.26727,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,20,28,15,1,0,-9,0,7.5150342,7.5150342,0,0,0,0,0,0,0,106,1,1,0,7.3729773,0,127.42175,3,47.970001,48.240002,-9,-9,6,1,1,0,0,7,3,1,735,-32060.676,0,0,2799.5669 -15035,18444,33579,-9,33578,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-930.7489,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,1,735,-32060.676,0,0,2799.5669 -15035,18444,33580,-9,33578,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1053.7279,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,4,2,0,0,7,3,1,735,-32060.676,0,0,2799.5669 -15036,18445,33581,33582,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,0,4,9.029705,9.0331554,0,1,0,-9,25,0,8,-49.920372,0,0,0,54,1,4,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,21.934441,21.934441,0,0,0,0,0,0,0,0,0,0,0,6.8025432,0,0,0,44.02,60.700001,56.18,53.849998,6,1,1,0,0,9,5,1,720,3357506.5,0,0,4086.957 -15036,18445,33582,33581,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.5134554,8.4354181,0,1,0,-9,6,0,-8,43.664185,0,0,0,62,1,4,1,3,2,2019,1,1,8,0,37,52,15,1,0,1,0,12.448261,12.448261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.849998,44.02,60.700001,6,3,4,0,0,9,5,1,720,3357506.5,0,0,4086.957 -15036,18446,33583,-9,33582,33581,3,1,1,21,2,0,0,0,1,1,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-925.5918,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.009998,57.459999,-9,-9,6,4,2,0,0,9,1,1,1593,214931.06,0,0,0 -15036,18447,33584,-9,33582,33581,4,1,1,19,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1098.1052,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3281376,0,0,0,45.290001,56.119999,-9,-9,6,4,2,0,0,9,1,1,1589,-68159.719,0,0,-449.02844 -15037,18448,33585,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,0,1,0,3.3434832,2.9117751,3,0,0,0,-9,0,-992.64032,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,31,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4425716,2.6894581,0,0,38.369999,33.040001,-9,-9,3,1,1,0,0,4,1,0,3152,516655.69,0,0,952.46368 -15038,18449,33586,33588,-9,-9,2,1,1,40,1,0,2,0,3,-9,1,1,0,0,4,6.149406,5.5183125,0,2,0,-9,8,0,3,103.39364,0,0,0,37,2,4,1,-9,-9,2019,1,1,5,1,4,4,15,1,0,1,0,9.545949,9.545949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,58.150002,52.91,7,1,1,0,0,11,2,1,717,93934.656,0,0,1144.2631 -15038,18449,33587,-9,33588,33586,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.23718,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,717,93934.656,0,0,1144.2631 -15038,18449,33588,33586,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,7.5283222,7.6630025,0,2,0,-9,8,0,-3,29.595879,0,0,1,40,3,4,1,2,2,2019,1,2,8,0,20,20,15,1,0,1,0,9.8220634,9.8220634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,62.490002,55.09,7,1,1,0,0,11,2,1,717,93934.656,0,0,1144.2631 -15039,18450,33589,-9,-9,-9,1,1,0,65,3,0,2,0,3,-9,4,3,0,0,2,0,.56121492,.32950372,4,0,-9,0,-9,0,-831.48267,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.23126817,0,0,35.240002,32.869999,-9,-9,3,1,1,0,0,12,1,1,615,20171.467,0,0,827.69513 -15040,18451,33590,33591,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.006062,7.0477462,1,0,-9,53,0,6,39.85815,0,0,0,72,2,2,3,2,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0493155,7.0147805,0,0,39.09,53.389999,36.419998,39.34,6,1,1,0,0,12,2,1,1086,734993.69,0,0,3131.0037 -15040,18451,33591,33590,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,2,0,4.3368239,4.6768093,1,0,-9,53,0,-6,132.54668,0,0,0,78,2,3,3,3,2,2019,4,2,25,12,0,0,15,4,1,4,0,0,0,1,0,1.4968843,0,0,0,0,0,1,1,0,6.9115896,4.8771415,0,0,36.419998,39.34,39.09,53.389999,5,1,1,0,0,12,2,1,1086,734993.69,0,0,3131.0037 -15041,18452,33592,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,0,4,8.3604412,8.1761713,0,3,0,-9,0,-9,0,-914.16901,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,10,41,0,15,1,1,-9,0,7.931272,7.931272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.040001,62.490002,-9,-9,3,1,1,0,1,5,4,0,984,-73168.625,0,0,1759.9896 -15042,18453,33593,33594,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,0,2,2.1251004,2.0476742,0,1,0,-9,7,0,3,100.27739,0,0,0,54,2,3,3,3,3,2019,2,2,23,11,12,12,15,1,1,3,0,.071715206,.071715206,0,0,0,0,0,0,0,0,1,1,0,6.3403597,0,0,0,41.490002,46.419998,48,49,4,1,1,0,0,5,1,1,675.5,150150.45,0,0,520.46954 -15042,18453,33594,33593,-9,-9,2,1,0,54,1,0,0,0,2,-9,8,3,1,1,3,0,0,0,1,0,-9,7,0,-3,36.451698,0,0,0,57,3,2,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,41.490002,46.419998,5,1,1,0,0,5,1,1,675.5,150150.45,0,0,520.46954 -15043,18454,33595,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,0,3,7.6826887,7.3629241,0,4,0,0,0,-9,0,-942.51715,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,31,31,15,1,0,-9,0,7.3795419,7.3795419,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.029999,53.830002,-9,-9,4,1,1,0,1,6,3,1,1483.5,144402.27,0,0,1836.6731 -15043,18454,33596,-9,33595,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1097.5234,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,1,1483.5,144402.27,0,0,1836.6731 -15044,18455,33597,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,0,5,9.0160475,9.2365942,0,3,0,-9,0,1,0,-1002.0972,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,5,48,54,15,1,1,-9,0,17.441221,17.441221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.880001,46.279999,-9,-9,6,1,1,0,0,5,5,1,1224,321954.78,0,0,2615.666 -15045,18456,33598,33599,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,0,4,7.9733095,7.7943954,0,1,0,-9,10,0,-1,-71.756042,0,0,0,34,1,5,1,1,2,2019,1,1,16,6,38,40,15,1,1,1,0,9.794734,9.794734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.619999,44.349998,61.130001,5,1,1,0,0,12,5,0,825,4131.918,0,0,3445.23 -15045,18456,33599,33598,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,5,8.4328289,8.9356232,0,1,0,-9,10,0,1,135.13135,0,0,1,33,2,4,1,2,3,2019,1,2,10,2,41,37,15,1,0,1,0,15.948079,15.948079,0,0,0,0,0,0,0,0,0,0,0,6.3343892,0,0,0,44.349998,61.130001,46.16,58.619999,7,1,1,0,0,12,5,0,825,4131.918,0,0,3445.23 -15046,18457,33600,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,4,0,7.600585,7.2877016,3,0,0,0,-9,0,-963.21661,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7897568,7.5402269,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,3,1,410,1303260.6,0,0,1978.6593 -15047,18458,33601,-9,33603,33602,3,1,1,17,2,0,1,1,2,0,7,2,0,0,5,6.4801822,5.7769208,0,2,0,0,0,-9,0,-1052.7954,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,6,1,1,0,0,1,3,1,1410,330582.38,0,0,2283.572 -15047,18458,33602,33603,-9,-9,2,1,1,50,1,0,1,0,3,-9,1,1,0,0,4,7.5284867,7.7400918,0,2,0,-9,7,0,0,85.026688,-9,0,0,50,2,4,1,-9,-9,2019,1,1,10,0,60,0,15,1,0,1,0,4.0952721,4.0952721,0,0,0,0,0,0,0,2,0,0,0,2.613168,0,4.4535108,3,55.189999,54.259998,55.209999,45.889999,6,1,1,0,0,1,3,1,1410,330582.38,0,0,2283.572 -15047,18458,33603,33602,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,0,4,7.7900877,7.7546945,0,2,0,-9,7,0,0,54.599205,0,0,0,50,3,4,1,-9,3,2019,1,2,9,0,28,28,15,1,0,1,0,8.6971312,8.6971312,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,55.209999,45.889999,55.189999,54.259998,6,1,1,0,0,1,3,1,1410,330582.38,0,0,2283.572 -15047,18458,33604,-9,33603,33602,4,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.47186,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,1,3,1,1410,330582.38,0,0,2283.572 -15048,18459,33605,33606,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,10,0,-5,0,0,0,0,67,2,3,3,3,3,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.860919,3,57.330002,53.459999,59.619999,30.389999,6,1,1,0,0,13,1,0,183,41728.859,0,0,1533.4377 -15048,18459,33606,33605,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,5,0,0,0,0,62,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,24.252892,3,59.619999,30.389999,57.330002,53.459999,6,1,1,0,0,13,1,0,183,41728.859,0,0,1533.4377 -15049,18460,33607,33608,-9,-9,1,1,0,26,1,0,0,0,1,-9,1,1,0,0,3,6.8531818,6.9973025,0,1,0,-9,5,0,0,-128.00693,0,1,1,26,1,4,1,2,1,2019,1,2,12,0,22,25,15,1,0,1,0,5.4960408,5.4960408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.560001,54.830002,54.200001,57.490002,5,1,1,0,0,6,4,0,554.5,228724.66,0,0,3545.6875 -15049,18460,33608,33607,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,8.4451618,8.6553202,0,1,0,-9,5,0,0,-62.699596,0,1,0,26,1,3,1,-9,-9,2019,1,1,13,4,42,43,15,1,1,1,0,14.927023,14.927023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,39.560001,54.830002,5,1,1,0,0,6,4,0,554.5,228724.66,0,0,3545.6875 -15050,18461,33609,-9,33610,33611,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-980.07434,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,5,1,914,608972.63,0,0,3316.6423 -15050,18461,33610,33611,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,0,4,8.5859814,8.4586983,0,2,0,-9,8,0,-3,-27.085863,0,1,1,32,1,4,1,-9,-9,2019,1,2,10,1,30,40,15,1,0,1,0,20.556562,20.556562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.299999,64.169998,44.080002,59.330002,6,1,1,0,0,12,5,1,914,608972.63,0,0,3316.6423 -15050,18461,33611,33610,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,0,4,8.5004606,8.4452868,0,2,0,-9,8,0,3,-21.503965,0,0,0,29,1,4,1,-9,-9,2019,1,1,15,4,39,38,15,1,1,1,0,13.618813,13.618813,0,0,0,0,0,0,0,0,1,1,0,.10107748,0,0,0,44.080002,59.330002,33.299999,64.169998,5,1,1,0,0,12,5,1,914,608972.63,0,0,3316.6423 -15051,18462,33612,33613,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,7.8675141,7.8954272,0,1,0,-9,29,0,3,20.450811,0,0,0,61,2,3,3,2,2,2019,2,2,13,2,38,38,15,1,0,3,0,8.4240532,8.4240532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.869999,29.51,45.650002,41.509998,3,2,3,0,1,6,3,0,1023,271966.59,0,0,1270.4093 -15051,18462,33613,33612,-9,-9,2,1,0,61,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,29,0,-3,41.40258,0,0,0,64,2,2,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.650002,41.509998,53.869999,29.51,5,2,3,0,1,6,3,0,1023,271966.59,0,0,1270.4093 -15051,18463,33614,-9,33613,33612,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.0655937,8.4445276,0,3,0,0,0,-9,0,-1039.0708,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,39,40,15,1,0,-9,1,9.8644896,9.8644896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,5,2,3,0,0,6,4,0,685,55731.027,0,0,1303.6573 -15052,18464,33615,33620,-9,-9,2,1,0,38,1,1,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-1,0,0,0,1,39,2,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.830002,57.200001,54.200001,57.490002,6,2,3,0,0,2,1,0,294.33334,152889.67,0,0,371.00018 -15052,18464,33616,-9,33615,33620,3,1,0,14,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1085.9504,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,2,1,0,294.33334,152889.67,0,0,371.00018 -15052,18464,33617,-9,33615,33620,4,1,0,13,2,1,4,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1125.6604,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,4,2,0,0,2,1,0,294.33334,152889.67,0,0,371.00018 -15052,18464,33618,-9,33615,33620,5,1,0,9,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-956.26294,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,1,0,294.33334,152889.67,0,0,371.00018 -15052,18464,33619,-9,33615,33620,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.5159,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,2,1,0,294.33334,152889.67,0,0,371.00018 -15052,18464,33620,33615,-9,-9,1,1,1,39,1,1,4,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,16,0,1,0,0,0,0,38,3,4,3,3,3,2019,2,2,8,0,30,25,15,1,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.0803466,3,54.200001,57.490002,51.830002,57.200001,6,2,3,0,0,2,1,0,294.33334,152889.67,0,0,371.00018 -15053,18465,33621,-9,33625,33622,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.8469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,873.33331,168918.36,0,0,2792.3284 -15053,18465,33622,33625,-9,-9,3,1,1,29,1,0,4,0,2,-9,2,1,0,0,2,8.0413446,7.998414,0,2,0,-9,6,0,1,-74.365273,0,1,0,28,2,5,3,-9,-9,2019,2,1,9,0,50,50,15,1,0,3,0,6.7496872,6.7496872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.799999,34.77,55.52,5,1,1,0,0,9,2,0,873.33331,168918.36,0,0,2792.3284 -15053,18465,33623,-9,33625,33622,4,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-968.44482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,873.33331,168918.36,0,0,2792.3284 -15053,18465,33624,-9,33625,33622,2,1,1,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.57397,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,2,0,873.33331,168918.36,0,0,2792.3284 -15053,18465,33625,33622,-9,-9,1,1,0,28,1,0,4,0,2,-9,6,3,0,0,5,0,0,0,2,0,-9,6,0,-1,-157.34599,0,1,1,29,2,2,1,2,2,2019,3,3,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.77,55.52,46.91,51.799999,4,1,1,0,0,9,2,0,873.33331,168918.36,0,0,2792.3284 -15053,18465,33626,-9,33625,33622,5,1,1,4,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.2271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,873.33331,168918.36,0,0,2792.3284 -15054,18466,33627,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,0,4,8.0031404,8.2240658,0,3,0,0,0,-9,0,-1009.9197,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,42,45,15,1,0,-9,0,7.8521147,7.8521147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,55.040001,-9,-9,5,4,2,0,0,6,4,0,700,357762.75,0,0,433.09409 -15055,18467,33628,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,0,4,9.5429878,9.7836533,0,3,0,0,0,-9,0,-1012.6235,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,94,84,15,1,0,-9,0,17.582905,17.582905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.299999,52.91,-9,-9,6,1,1,0,0,4,5,1,379,642692.81,0,0,5671.1016 -15056,18468,33629,33630,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,2,7.1089668,6.884994,0,2,0,-9,22,0,-8,145.3822,0,0,0,56,2,4,1,2,2,2019,1,1,15,3,16,17,15,1,0,1,0,9.9151869,9.9151869,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.830002,42.509998,51.240002,42.439999,3,1,1,0,0,2,3,1,1461,361188.81,0,0,1986.0278 -15056,18468,33630,33629,-9,-9,1,1,1,56,1,0,1,0,2,-9,2,1,0,0,4,7.8905597,8.1421375,0,2,0,-9,22,0,8,-28.612637,0,0,0,48,2,2,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,8.8492899,8.8492899,0,0,0,0,0,0,0,7,1,1,0,1.8177601,0,5.7541308,3,51.240002,42.439999,37.830002,42.509998,4,1,1,0,0,2,3,1,1461,361188.81,0,0,1986.0278 -15057,18469,33631,33633,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,0,4,9.1541862,9.2282362,0,2,0,-9,21,0,0,65.038361,0,0,1,42,1,2,1,2,2,2019,1,2,9,0,47,42,15,1,0,1,0,20.005136,20.005136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,49.110001,46.91,6,1,1,0,0,7,5,1,826.79999,1112596,0,0,7700.5024 -15057,18469,33632,-9,33631,33633,3,1,1,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.33594,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,826.79999,1112596,0,0,7700.5024 -15057,18469,33633,33631,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,0,2,9.5460176,9.458046,0,2,0,-9,10,0,0,23.532558,0,0,0,42,1,4,1,-9,-9,2019,1,1,11,0,40,44,15,1,0,1,0,46.38628,46.38628,0,0,0,0,0,0,0,0,0,0,0,2.9660199,0,0,0,49.110001,46.91,51.240002,58.84,5,1,1,0,0,7,5,1,826.79999,1112596,0,0,7700.5024 -15057,18469,33634,-9,33631,33633,5,1,1,11,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-950.48584,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,45,-9,-9,4,1,1,0,0,7,5,1,826.79999,1112596,0,0,7700.5024 -15057,18469,33635,-9,33631,33633,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.25397,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,826.79999,1112596,0,0,7700.5024 -15058,18470,33636,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,1,1,0,0,4,7.9325089,7.7918072,0,3,0,0,0,-9,0,-958.33722,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,40,15,1,0,-9,0,5.9765706,5.9765706,0,0,0,0,0,0,0,0,0,0,0,1.6391805,0,0,0,58.150002,52.91,-9,-9,4,1,1,0,0,4,4,1,236,-21396.771,0,0,1175.9122 -15059,18471,33637,33638,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,0,3,0,7.3707075,7.2163749,1,0,-9,56,0,3,-23.235865,0,0,0,75,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,2.0265572,7.5596533,0,1,41.459999,53.68,38.639999,31.15,5,1,1,0,0,5,3,1,334.5,1653162,0,0,1275.3508 -15059,18471,33638,33637,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,2,0,6.4448991,6.7396827,1,0,-9,56,0,-3,5.9577146,0,0,0,78,3,3,3,-9,2,2019,4,2,22,11,0,0,15,4,1,4,0,0,0,1,0,12.986986,0,0,0,0,0,1,1,0,1.2810911,6.5999603,0,0,38.639999,31.15,41.459999,53.68,2,1,1,0,0,5,3,1,334.5,1653162,0,0,1275.3508 -15060,18472,33639,-9,33640,-9,2,1,0,17,2,0,1,0,2,-9,3,3,0,0,5,0,0,0,4,0,0,0,-9,0,-990.9184,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.60452,3,51.040001,59.549999,-9,-9,7,1,1,1,0,12,1,0,390,-37013.398,0,0,1221.6461 -15060,18472,33640,-9,-9,-9,1,1,0,34,2,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-882.44464,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.2973795,3,20.58,25.799999,-9,-9,2,1,1,0,1,12,1,0,390,-37013.398,0,0,1221.6461 -15061,18473,33641,-9,33644,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.7099247,8.255887,0,3,0,0,0,-9,0,-1087.126,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,60,65,15,1,0,-9,1,9.4395685,9.4395685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,13,5,1,663,178844.13,0,0,2442.4297 -15061,18474,33642,-9,33644,-9,3,1,0,21,2,0,0,1,2,0,7,2,0,0,4,6.0694447,6.2785869,0,3,0,0,0,-9,0,-905.54883,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,2,1,406,-52540.496,0,0,626.49048 -15061,18475,33643,33644,-9,-9,4,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.4932108,8.408638,0,1,0,-9,4,0,4,62.367249,0,0,0,51,1,4,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,15.280795,15.280795,0,0,0,0,0,0,0,0,0,0,0,3.5637615,0,0,0,57.16,56.150002,35.91,63.189999,6,1,1,0,0,13,5,1,606.5,1588958.8,0,0,3990.1641 -15061,18475,33644,33643,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,8.8266029,8.7682495,0,1,0,-9,4,0,-4,132.97406,0,0,0,55,2,4,1,3,2,2019,1,4,25,11,55,47,15,1,1,1,0,15.132133,15.132133,0,0,0,0,0,0,0,0,0,0,0,4.6515102,0,0,0,35.91,63.189999,57.16,56.150002,4,1,1,0,0,13,5,1,606.5,1588958.8,0,0,3990.1641 -15062,18476,33645,-9,33647,33646,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-975.2179,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.861306,0,0,0,51.139999,60.450001,-9,-9,6,1,1,0,0,4,5,1,632.25,767889.19,0,0,5484.2983 -15062,18476,33646,33647,-9,-9,2,1,1,59,1,0,2,0,1,-9,2,1,0,0,4,9.5026293,9.6132364,0,2,0,-9,21,0,11,-15.10127,0,0,0,48,2,5,3,2,2,2019,2,1,11,0,50,50,15,1,0,3,0,29.310007,29.310007,0,0,0,0,0,0,0,0,0,0,0,5.8770852,0,0,0,54.200001,57.490002,57.060001,57.759998,5,1,1,0,0,4,5,1,632.25,767889.19,0,0,5484.2983 -15062,18476,33647,33646,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,0,5,4.4441738,4.476141,0,2,0,-9,20,0,-11,45.382538,0,0,0,59,1,4,1,2,1,2019,3,2,6,0,0,12,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3229208,0,0,0,57.060001,57.759998,54.200001,57.490002,7,1,1,0,0,4,5,1,632.25,767889.19,0,0,5484.2983 -15062,18476,33648,-9,33647,33646,4,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-931.21973,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,4,5,1,632.25,767889.19,0,0,5484.2983 -15063,18477,33649,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,3,3,0,0,5,8.4070177,8.3419542,0,3,0,0,0,-9,0,-964.28662,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,36,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3461714,0,0,0,48.77,60.16,-9,-9,5,1,1,1,0,8,5,1,275,12731.803,0,0,2010.6869 -15064,18478,33650,33652,-9,-9,2,1,1,38,1,0,2,0,1,-9,1,1,0,0,4,8.1554012,8.477602,0,2,0,-9,11,0,1,-102.36251,0,0,0,37,1,4,1,2,3,2019,1,1,7,0,40,38,15,1,0,1,0,10.879254,10.879254,0,0,0,0,0,0,0,0,1,1,0,5.5500731,0,0,0,39.16,62.84,54.200001,57.490002,6,2,3,0,0,5,4,1,416.75,546173.88,0,0,4825.2241 -15064,18478,33651,-9,33652,33650,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.2343,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,416.75,546173.88,0,0,4825.2241 -15064,18478,33652,33650,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,8.2752562,8.7780523,0,2,0,-9,11,0,-1,4.2806745,0,0,1,38,1,4,1,2,2,2019,1,2,7,0,30,22,15,1,0,1,0,21.213411,21.213411,0,0,0,0,0,0,0,0,1,1,0,3.3101814,0,0,0,54.200001,57.490002,39.16,62.84,6,1,1,0,0,5,4,1,416.75,546173.88,0,0,4825.2241 -15064,18478,33653,-9,33652,33650,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1055.7893,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,5,4,1,416.75,546173.88,0,0,4825.2241 -15065,18479,33654,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,1,1,0,0,2,6.6722903,7.2478113,6.3307457,3,0,0,0,-9,0,-1031.4463,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,30,28,15,1,0,-9,0,2.7939246,2.7939246,0,0,0,0,0,0,0,0,0,0,0,2.7725465,6.3476844,0,0,57.18,45.759998,-9,-9,6,1,1,0,0,8,3,1,234,933120.19,0,0,254.77208 -15066,18480,33655,-9,-9,-9,1,1,0,79,3,0,0,0,1,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1086.7965,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,.42554554,0,0,0,0,0,0,1,1,0,0,0,0,0,42.049999,20.18,-9,-9,5,1,1,0,0,7,1,0,545,519092.13,0,0,1294.1113 -15067,18481,33656,33659,-9,-9,2,1,0,45,1,0,2,0,3,-9,2,1,0,0,3,7.4713168,7.5890284,0,2,0,-9,8,0,1,-55.229027,0,0,0,44,2,4,1,3,2,2019,1,1,11,0,14,15,15,1,0,1,0,14.106652,14.106652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.939999,53.18,60.689999,53.18,6,1,1,0,0,8,5,1,1469,201970.2,0,0,4258.4189 -15067,18481,33657,-9,33656,33659,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1095.2445,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,8,5,1,1469,201970.2,0,0,4258.4189 -15067,18481,33658,-9,33656,33659,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.15027,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,8,5,1,1469,201970.2,0,0,4258.4189 -15067,18481,33659,33656,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,9.3526754,8.9382334,0,2,0,-9,8,0,-1,-13.272178,0,0,0,45,3,3,1,2,1,2019,1,2,6,0,37,38,15,1,0,1,0,24.405359,24.405359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.689999,53.18,54.939999,53.18,6,1,1,0,0,8,5,1,1469,201970.2,0,0,4258.4189 -15068,18482,33660,33661,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,2,8.2092333,8.338316,7.0098162,1,0,-9,31,0,3,-65.072174,0,0,0,60,3,4,1,2,2,2019,1,1,7,0,48,43,15,1,0,1,0,7.2624393,7.2624393,0,0,0,0,0,0,0,0,0,0,0,7.6045399,7.0156364,0,0,59.560001,32.490002,60.119999,54.799999,7,1,1,0,0,10,4,1,536,2172506.5,0,0,2372.3872 -15068,18482,33661,33660,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,4,6.6947908,6.5917654,0,1,0,-9,31,0,-3,-74.168266,0,0,0,63,2,2,1,3,2,2019,1,2,7,0,10,16,15,1,0,1,0,12.751754,12.751754,0,0,0,0,0,0,0,0,0,0,0,1.8102567,0,0,0,60.119999,54.799999,59.560001,32.490002,7,1,1,0,0,10,4,1,536,2172506.5,0,0,2372.3872 -15069,18483,33662,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,0,3,8.1027365,8.2774134,0,3,0,0,0,-9,0,-907.95953,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,39,42,15,1,1,-9,0,11.111032,11.111032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,-9,-9,6,1,1,0,0,10,4,0,246,7540.4453,0,0,1912.4227 -15070,18484,33663,33664,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,3,8.5855017,8.6948299,0,1,0,-9,7,0,0,48.896019,0,0,0,56,1,5,1,3,3,2019,1,1,14,3,37,57,15,1,0,1,0,20.883652,20.883652,0,0,0,0,0,0,0,14.5,0,0,0,2.534786,0,8.949235,3,52.950001,43.279999,62.389999,56.709999,6,1,1,0,0,1,5,1,906,1407926.3,0,0,4516.3379 -15070,18484,33664,33663,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,5,8.5802526,8.8424854,0,1,0,-9,7,0,0,-55.813107,0,0,0,56,1,3,1,2,3,2019,1,2,6,0,40,35,15,1,0,1,0,19.882853,19.882853,0,0,0,0,0,0,0,14.5,0,0,0,2.979815,0,8.6372805,3,62.389999,56.709999,52.950001,43.279999,7,1,1,0,0,1,5,1,906,1407926.3,0,0,4516.3379 -15071,18485,33665,33666,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.860086,8.1890621,1,0,-9,43,0,4,-31.354528,0,0,0,57,2,2,3,3,3,2019,4,2,10,0,0,13,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4696765,7.8243718,0,0,61.279999,48.880001,54.84,15.55,6,1,1,0,0,11,3,1,815,769637.63,0,0,3191.0054 -15071,18485,33666,33665,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,1,2,0,7.490829,6.9058418,1,0,-9,8,0,-4,103.34356,0,0,0,61,2,3,3,2,1,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5299945,7.0583143,0,0,54.84,15.55,61.279999,48.880001,3,1,1,0,0,11,3,1,815,769637.63,0,0,3191.0054 -15072,18486,33667,-9,33668,33670,4,1,1,12,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1106.8649,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,7,3,0,401.66666,84824.07,0,0,2811.0107 -15072,18486,33668,33670,-9,-9,2,1,0,34,1,1,4,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,9,0,-3,76.882378,0,0,1,37,2,3,1,-9,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.59,56.57,41.639999,54.119999,7,1,1,0,0,7,3,0,401.66666,84824.07,0,0,2811.0107 -15072,18486,33669,-9,33668,33670,3,1,1,15,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.5614,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,3,0,401.66666,84824.07,0,0,2811.0107 -15072,18486,33670,33668,-9,-9,1,1,1,37,1,1,4,0,2,-9,2,1,0,0,3,8.2160444,8.4601698,0,2,0,-9,9,0,3,-26.661474,0,0,0,34,3,5,3,2,3,2019,2,2,11,0,40,40,15,1,0,3,0,12.567635,12.567635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,54.119999,54.59,56.57,7,1,1,0,0,7,3,0,401.66666,84824.07,0,0,2811.0107 -15072,18486,33671,-9,33668,33670,5,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1124.7028,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,0,401.66666,84824.07,0,0,2811.0107 -15072,18486,33672,-9,33668,33670,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.4554,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,3,0,401.66666,84824.07,0,0,2811.0107 -15073,18487,33673,33674,-9,-9,2,1,0,43,1,0,0,0,1,-9,3,3,0,0,4,0,0,0,1,0,-9,13,0,1,14.755502,0,0,1,42,1,3,1,3,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4221234,0,0,0,54.200001,57.490002,57.330002,53.459999,6,2,3,1,0,9,5,0,245,2064091.1,0,0,3480.3735 -15073,18487,33674,33673,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,0,3,9.2514429,9.4770803,0,1,0,-9,15,0,-1,19.549988,0,0,0,43,1,4,3,1,1,2019,2,2,8,0,47,52,15,1,0,3,0,27.079206,27.079206,0,0,0,0,0,0,0,0,0,0,0,5.600872,0,0,0,57.330002,53.459999,54.200001,57.490002,5,1,1,0,0,9,5,0,245,2064091.1,0,0,3480.3735 -15074,18488,33675,-9,33679,33677,3,1,1,9,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.31598,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15074,18488,33676,-9,33679,33677,4,1,1,6,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.7203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15074,18488,33677,33679,-9,-9,2,1,1,37,1,2,5,0,2,-9,2,1,0,0,4,8.7735338,8.8715696,0,2,0,-9,16,0,0,54.060215,0,0,0,37,2,4,1,2,-9,2019,1,1,10,0,45,48,15,1,0,1,0,11.405926,11.405926,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.389999,44.540001,57.16,56.150002,6,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15074,18488,33678,-9,33679,33677,6,1,1,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-882.78888,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15074,18488,33679,33677,-9,-9,1,1,0,37,1,2,5,0,2,-9,2,1,0,0,4,7.6497941,7.4845977,0,2,0,-9,16,0,0,3.8568258,0,0,1,37,2,4,1,-9,-9,2019,1,2,4,0,19,19,15,1,0,1,0,14.064111,14.064111,0,0,0,0,0,0,0,0,1,1,0,6.6211967,0,0,0,57.16,56.150002,58.389999,44.540001,7,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15074,18488,33680,-9,33679,33677,5,1,1,4,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.29974,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15074,18488,33681,-9,33679,33677,7,1,1,0,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-929.50708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,4,0,569.14288,340649.19,0,0,4076.3455 -15075,18489,33682,33683,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,4,0,5.0158944,4.816009,1,0,-9,54,0,-2,-8.3772755,0,0,0,73,2,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0805044,5.2152929,0,0,55.389999,54.220001,69.489998,28.65,7,1,1,0,0,2,2,1,836,336792.59,0,0,961.71973 -15075,18489,33683,33682,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,5.0534873,5.1808968,1,0,-9,52,0,2,-8.4223385,0,0,0,71,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1961536,5.0179334,26.734365,1,69.489998,28.65,55.389999,54.220001,6,1,1,0,0,2,2,1,836,336792.59,0,0,961.71973 -15076,18490,33684,33685,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,5,0,6.9381466,6.8602343,1,0,-9,50,0,3,107.17108,0,0,0,69,3,5,3,3,3,2019,4,1,19,5,0,0,15,4,1,4,0,0,0,1,0,104.9793,0,0,0,0,0,1,1,0,5.5541921,7.2639427,0,0,48.200001,34.669998,42.349998,50.790001,5,1,1,0,0,12,2,1,1396,353093.66,0,0,2512.6675 -15076,18490,33685,33684,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,5,0,6.4390736,5.9775057,1,0,-9,50,0,-3,30.394361,0,0,0,72,3,5,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2238953,6.0340271,0,0,42.349998,50.790001,48.200001,34.669998,6,1,1,0,0,12,2,1,1396,353093.66,0,0,2512.6675 -15077,18491,33686,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,3,3,0,0,5,0,5.8356223,5.8638377,3,0,0,0,-9,0,-980.672,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.9546304,0,0,62.389999,56.709999,-9,-9,7,1,1,1,0,8,2,0,956,236949.02,0,0,1386.3575 -15078,18492,33687,33688,-9,-9,2,1,0,27,1,1,1,0,2,-9,5,1,0,0,5,6.8479276,6.9612393,0,2,0,-9,3,0,0,93.058777,0,1,1,27,2,5,1,-9,-9,2019,1,1,4,0,14,39,15,1,0,1,0,9.6636028,9.6636028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.519997,43.869999,56.299999,55.330002,7,1,1,0,1,11,3,1,486.66666,20163.76,0,0,2682.9346 -15078,18492,33688,33687,-9,-9,1,1,1,27,1,1,1,0,2,-9,2,1,0,0,5,8.2172222,7.917583,0,2,0,-9,3,0,0,-167.93683,0,1,0,27,2,5,1,-9,-9,2019,1,2,8,0,40,39,15,1,0,1,0,7.3868155,7.3868155,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.299999,55.330002,66.519997,43.869999,6,1,1,0,1,11,3,1,486.66666,20163.76,0,0,2682.9346 -15078,18492,33689,-9,33687,33688,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1020.362,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,3,1,486.66666,20163.76,0,0,2682.9346 -15079,18493,33690,33691,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,3,0,8.2542219,8.1287832,1,0,-9,52,0,0,-22.128803,0,0,0,77,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8470588,8.223527,0,0,51.66,54.880001,43.209999,47.68,6,1,1,0,0,8,4,1,3106,1434659.8,0,0,4014.8293 -15079,18493,33691,33690,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.1764379,7.2262487,1,0,-9,52,0,0,6.6928821,0,0,0,77,1,3,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9310055,7.244031,0,0,43.209999,47.68,51.66,54.880001,6,1,1,0,0,8,4,1,3106,1434659.8,0,0,4014.8293 -15080,18494,33692,-9,33693,33694,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.7905,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,387,1405808.4,0,0,5586.0532 -15080,18494,33693,33694,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,0,4,9.4034338,9.3894844,0,2,0,-9,9,0,2,44.503662,0,0,1,37,1,3,1,-9,-9,2019,1,1,12,1,45,10,15,1,0,1,0,26.925978,26.925978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,46.669998,55.57,6,1,1,0,0,11,5,1,387,1405808.4,0,0,5586.0532 -15080,18494,33694,33693,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,0,3,8.9154415,9.0080328,0,2,0,-9,15,0,-2,-12.132974,0,0,0,39,1,4,1,1,2,2019,1,2,14,3,37,37,15,1,0,1,0,19.327593,19.327593,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.669998,55.57,48.869999,58.549999,5,1,1,0,0,11,5,1,387,1405808.4,0,0,5586.0532 -15081,18495,33695,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,8.2757797,8.1100254,0,3,0,0,0,-9,0,-1074.8401,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,31,31,15,1,0,-9,0,10.787674,10.787674,0,0,0,0,0,0,0,0,0,0,0,2.5927467,0,0,0,43.419998,62.330002,-9,-9,6,1,1,0,0,7,4,1,170,297337.53,0,0,2400.8655 -15082,18496,33696,33697,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,5,0,8.8226376,8.2118874,1,0,-9,42,0,8,20.698965,0,0,0,66,1,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5873914,8.503335,0,0,62.389999,56.709999,57.330002,53.459999,1,1,1,0,0,2,4,1,1203.5,2259631,0,0,5486.5293 -15082,18496,33697,33696,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,6.9015713,6.7042809,0,1,0,-9,42,0,-8,-44.518127,0,0,0,74,1,5,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8222942,0,0,0,57.330002,53.459999,62.389999,56.709999,6,1,1,0,0,2,4,1,1203.5,2259631,0,0,5486.5293 -15083,18497,33698,33699,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,4,7.6764998,7.1967964,0,1,0,-9,31,0,0,10.644553,0,0,0,53,3,4,3,-9,-9,2019,2,2,5,0,36,51,15,1,0,3,0,5.8779483,5.8779483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.650002,58.560001,45.049999,55.439999,7,2,3,0,0,8,2,1,2404.5,343626.81,0,0,914.80408 -15083,18497,33699,33698,-9,-9,2,1,1,53,1,0,0,0,3,-9,3,3,0,0,4,0,0,0,1,0,-9,31,0,0,-26.29891,0,0,0,53,3,4,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.049999,55.439999,35.650002,58.560001,7,2,3,1,1,8,2,1,2404.5,343626.81,0,0,914.80408 -15083,18498,33700,-9,33698,33699,3,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,7.6899991,7.7754889,0,3,0,0,0,-9,0,-1082.7385,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,35,15,1,0,-9,1,7.5850959,7.5850959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.599998,46.990002,-9,-9,5,2,3,0,0,8,3,1,277,155356.89,0,0,-477.34222 -15084,18499,33701,33702,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,8.1082144,7.6778555,1,0,-9,8,0,1,73.95726,0,0,0,74,3,2,3,-9,-9,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0279226,0,0,53,47,43.459999,42.779999,5,4,1,0,0,12,3,1,328,1259538.8,0,0,2436.5615 -15084,18499,33702,33701,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,6.2446241,5.7683439,1,0,-9,8,0,-1,-26.694984,0,0,0,75,2,3,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.5367403,5.8981395,2.4932239,1,43.459999,42.779999,53,47,4,1,1,0,0,12,3,1,328,1259538.8,0,0,2436.5615 -15085,18500,33703,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,0,3,0,8.2047043,8.2517805,3,0,0,0,-9,0,-1038.0173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9986086,7.8413363,0,0,52.549999,44.880001,-9,-9,4,1,1,0,0,5,4,1,2098,639269.63,0,0,2200.2375 -15086,18501,33704,-9,-9,-9,1,1,0,91,2,0,0,0,2,-9,4,3,0,0,3,0,6.717411,7.2511797,3,0,0,0,-9,0,-1039.1069,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1441998,6.8285217,0,0,55,43,-9,-9,6,1,1,0,0,9,2,1,713,80705.398,0,0,1154.3684 -15086,18502,33705,-9,-9,-9,2,1,1,89,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-973.45288,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9699436,0,0,0,56,44,-9,-9,6,1,1,0,0,9,1,1,737,-236390.73,0,0,1395.0856 -15087,18503,33706,33707,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,1,1,0,0,0,1,0,-9,4,0,-10,0,0,0,0,67,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.279999,21.68,53.080002,44.400002,6,1,1,0,0,9,1,1,1730,232633.31,0,0,666.81616 -15087,18503,33707,33706,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,4,0,10,0,0,0,0,57,1,1,3,3,2,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.91235739,0,0,0,53.080002,44.400002,53.279999,21.68,6,1,1,0,0,9,1,1,1730,232633.31,0,0,666.81616 -15088,18504,33708,33709,-9,-9,2,1,0,55,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,7,0,-6,-20.152557,0,0,0,61,3,4,1,3,3,2019,3,1,34,12,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.9,21.84,39.450001,56.150002,1,1,1,1,0,2,3,1,2034,795613.38,0,0,2832.478 -15088,18504,33709,33708,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,1,4,7.904222,8.0648746,6.5119944,1,0,-9,7,0,6,28.426882,0,0,0,55,3,1,3,3,-9,2019,2,2,13,1,42,37,15,1,0,3,0,7.0758238,7.0758238,0,0,0,0,0,0,0,84,1,1,0,0,6.7979059,128.35567,1,39.450001,56.150002,26.9,21.84,5,1,1,0,0,2,3,1,2034,795613.38,0,0,2832.478 -15089,18505,33710,-9,33711,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,4,7.9774208,7.8564143,0,3,0,0,0,-9,0,-1031.3569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,37,45,15,1,0,-9,1,9.7888718,9.7888718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,-9,-9,6,1,1,0,0,8,4,0,694,-6907.5615,0,0,2498.8821 -15089,18506,33711,-9,-9,-9,2,1,0,71,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1025.9247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,5.0233717,0,.71137404,0,0,32.033501,0,1,1,0,0,0,0,0,58.639999,20.389999,-9,-9,6,1,1,0,0,8,1,0,1208,-21726.059,0,0,2148.3579 -15090,18507,33712,-9,33713,33714,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.8966,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,2,1,643.75,15110.121,0,0,1737.521 -15090,18507,33713,33714,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,0,5,7.9738488,7.9574599,0,2,0,-9,9,0,-3,1.2430182,0,0,1,37,2,1,3,3,3,2019,2,2,11,0,30,30,15,1,0,3,0,8.8003445,8.8003445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.630001,58.830002,37.889999,30.440001,6,1,1,0,0,13,2,1,643.75,15110.121,0,0,1737.521 -15090,18507,33714,33713,-9,-9,2,1,1,37,1,1,2,0,2,-9,3,3,0,0,1,0,0,0,2,0,-9,9,0,3,33.412441,0,0,0,34,1,5,1,-9,-9,2019,3,1,20,8,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.889999,30.440001,54.630001,58.830002,3,1,1,1,0,13,2,1,643.75,15110.121,0,0,1737.521 -15090,18507,33715,-9,33713,33714,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.97864,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,2,1,643.75,15110.121,0,0,1737.521 -15091,18508,33716,33717,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,5,0,7.5959601,7.5940294,1,0,-9,7,0,0,-100.45129,0,0,0,69,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8746185,7.4619455,0,0,60.59,54.799999,58.32,50.220001,7,1,1,0,0,12,2,1,730,751008.75,0,0,3459.52 -15091,18508,33717,33716,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,5.9396067,6.026175,1,0,-9,7,0,0,68.402214,0,0,0,69,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5759773,6.1862926,0,0,58.32,50.220001,60.59,54.799999,7,1,1,0,0,12,2,1,730,751008.75,0,0,3459.52 -15092,18509,33718,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,3,8.5419302,8.365653,0,3,0,0,0,-9,0,-965.18469,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,28,28,15,1,0,-9,0,23.676914,23.676914,0,0,0,0,0,0,0,2,0,0,0,9.0476904,0,10.395152,3,39.099998,57.790001,-9,-9,5,1,1,0,0,8,5,1,818,127121.26,0,0,4648.377 -15093,18510,33719,-9,-9,-9,5,1,1,29,2,0,0,0,2,-9,3,3,0,1,5,0,0,0,3,0,0,0,-9,0,-899.07428,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,52.560001,-9,-9,6,2,3,1,0,4,1,0,219,60139.609,0,0,553.26813 -15094,18511,33720,-9,33722,33721,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.914,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,4,0,592,237781.64,0,0,4232.1226 -15094,18511,33721,33722,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,0,4,8.0375156,8.2709465,0,2,0,-9,2,0,2,73.997276,-9,0,0,32,1,5,1,-9,-9,2019,1,2,10,0,38,0,15,1,0,1,0,7.9815202,7.9815202,0,0,0,0,0,0,0,0,1,1,0,2.2164161,0,0,0,46.630001,59.720001,41.330002,56.869999,6,1,1,0,0,10,4,0,592,237781.64,0,0,4232.1226 -15094,18511,33722,33721,-9,-9,2,1,0,32,1,1,2,0,1,-9,2,1,0,0,5,8.432951,8.6502695,0,2,0,-9,2,0,-2,131.82594,0,0,1,34,2,4,1,-9,-9,2019,1,1,22,9,42,52,15,1,1,1,0,14.709236,14.709236,0,0,0,0,0,0,0,0,1,1,0,6.9961753,0,0,0,41.330002,56.869999,46.630001,59.720001,6,1,1,0,0,10,4,0,592,237781.64,0,0,4232.1226 -15094,18511,33723,-9,33722,33721,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.14685,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,592,237781.64,0,0,4232.1226 -15095,18512,33724,-9,-9,-9,1,1,0,42,2,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-979.65747,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,119.65341,3,30.940001,55.790001,-9,-9,3,1,1,0,0,2,1,1,464,-106849.12,0,0,1284.8618 -15095,18513,33725,-9,-9,-9,2,1,0,80,2,0,0,0,3,-9,8,3,1,1,1,0,4.6672072,4.6586304,3,0,0,0,-9,0,-1059.765,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,7.042666,0,0,1,0,1,0,4.4847317,0,0,64.330002,13.78,-9,-9,6,1,1,0,0,2,2,1,566,236227.3,0,0,419.22556 -15096,18514,33726,-9,33729,33728,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.94916,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,5,1,760.5,395951.09,0,0,4372.5142 -15096,18514,33727,-9,33729,33728,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.44592,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,5,1,760.5,395951.09,0,0,4372.5142 -15096,18514,33728,33729,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,0,4,8.5687561,8.7251205,0,2,0,-9,11,0,2,-139.40802,0,0,0,35,1,3,1,2,1,2019,1,2,18,6,37,48,15,1,1,1,0,18.898808,18.898808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,55.68,59.310001,49.810001,6,1,1,0,0,13,5,1,760.5,395951.09,0,0,4372.5142 -15096,18514,33729,33728,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,0,3,8.459178,8.4224997,0,2,0,-9,11,0,-2,70.106628,0,0,1,37,1,4,1,3,3,2019,1,1,8,0,37,37,15,1,0,1,0,23.06933,23.06933,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1270716,3,59.310001,49.810001,49.52,55.68,5,1,1,0,0,13,5,1,760.5,395951.09,0,0,4372.5142 -15097,18515,33730,33732,-9,-9,4,1,1,40,1,0,0,0,2,-9,2,1,0,0,3,8.2848291,8.1324043,0,1,0,-9,3,0,-4,-66.062859,0,0,0,44,2,4,1,-9,-9,2019,1,1,9,0,46,49,15,1,0,1,0,9.6272049,9.6272049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.900002,54.529999,48.869999,58.549999,6,1,1,0,0,12,4,0,800.33331,391374.88,0,0,3108.0259 -15097,18515,33731,-9,33732,-9,3,1,1,16,2,0,0,1,2,-9,7,2,0,0,5,7.0319667,7.083221,0,1,0,0,0,-9,0,-944.98511,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,12,4,0,800.33331,391374.88,0,0,3108.0259 -15097,18515,33732,33730,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,4,7.9745626,7.8435216,0,1,0,-9,3,0,4,-43.651546,0,0,1,40,2,3,1,3,3,2019,1,4,12,0,32,31,15,1,0,1,0,10.881213,10.881213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,54.900002,54.529999,5,1,1,0,0,12,4,0,800.33331,391374.88,0,0,3108.0259 -15098,18516,33733,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-963.52179,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,11.691602,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,2,1,0,1780,33851.945,0,0,1681.3687 -15099,18517,33734,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1059.3342,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.0508533,0,13.989091,3,47.619999,56.48,-9,-9,6,1,1,0,0,4,1,1,85,-50467,0,0,1064.2942 -15100,18518,33735,33736,-9,-9,1,1,0,49,1,0,0,0,2,-9,97,3,0,0,4,0,0,0,1,0,-9,30,0,-1,184.79184,0,0,0,50,2,4,1,2,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.1382647,0,0,3,39.16,62.84,46.310001,56.450001,6,1,1,0,0,9,5,1,460,64452.223,0,0,3343.5173 -15100,18518,33736,33735,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,9.0287571,9.2703762,0,1,0,-9,30,0,1,11.764722,0,0,0,49,2,4,3,2,3,2019,2,1,12,0,42,42,15,1,0,3,0,20.694532,20.694532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.310001,56.450001,39.16,62.84,2,1,1,0,0,9,5,1,460,64452.223,0,0,3343.5173 -15100,18519,33737,-9,33735,33736,3,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,8.2342777,8.5636654,0,3,0,0,0,-9,0,-1105.8539,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,39,15,1,0,-9,1,12.845261,12.845261,0,0,0,0,0,0,0,0,0,0,0,.89099032,0,0,0,51.240002,58.84,-9,-9,5,1,1,0,0,9,5,1,1210,249649.88,0,0,1910.2217 -15100,18520,33738,-9,33735,33736,4,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.2916074,7.1448245,0,3,0,0,0,-9,0,-960.26062,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,40,41,15,1,0,-9,1,4.0261965,4.0261965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,3,1,817,-62194.746,0,0,1204.0497 -15100,18521,33739,-9,33735,33736,5,1,0,20,2,0,0,1,2,0,7,2,0,0,4,0,3.4818735,3.6879213,3,0,0,0,-9,0,-910.60413,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5696828,0,0,0,35.380001,63.459999,-9,-9,5,1,1,0,0,9,1,1,607,118592.15,0,0,1923.4202 -15101,18522,33740,33741,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,0,2,8.1396599,8.2526417,6.5284357,1,0,-9,26,0,5,35.251842,0,0,0,57,2,3,1,3,3,2019,1,2,6,0,50,39,15,1,0,1,0,8.7084599,8.7084599,0,0,0,0,0,0,0,0,1,1,0,6.0200882,6.3598223,0,0,59.459999,25.719999,42.330002,53.389999,6,1,1,0,0,1,4,0,334,1461251,0,0,2429.3184 -15101,18522,33741,33740,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.1220322,7.1044765,0,1,0,-9,23,0,-5,23.716539,0,0,0,62,2,2,1,3,3,2019,1,1,10,0,34,34,15,1,0,1,0,4.6195555,4.6195555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.330002,53.389999,59.459999,25.719999,6,1,1,0,0,1,4,0,334,1461251,0,0,2429.3184 -15102,18523,33742,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,0,2,6.9303455,7.2228231,0,3,0,-9,0,-9,0,-859.94702,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,20,0,15,1,1,-9,0,7.8506193,7.8506193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.43,37.060001,-9,-9,2,1,1,0,1,11,2,0,731,192948.11,0,0,559.13428 -15102,18524,33743,-9,33742,-9,2,1,1,25,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-1074.3942,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,11,1,0,147,0,0,0,0 -15103,18525,33744,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,0,4,0,7.4661264,7.6221714,3,0,0,0,-9,0,-1061.3546,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0452642,7.5735435,0,0,55.34,54.259998,-9,-9,6,1,1,0,0,11,3,1,327,293983.75,0,0,1793.8411 -15104,18526,33745,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,0,3,0,8.7692633,8.6401691,3,0,0,0,-9,0,-1014.2657,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,1,6,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.6628256,8.8119431,0,0,47.049999,29.559999,-9,-9,4,1,1,0,0,9,5,1,903,1807689.5,0,0,3457.261 -15105,18527,33746,33747,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,1,3,6.3088975,6.5152612,0,2,0,-9,9,0,-1,-30.233088,0,0,1,45,2,4,1,2,2,2019,1,2,15,3,6,0,15,1,0,1,0,9.2554789,9.2554789,0,0,0,0,0,0,0,2,1,1,0,1.7345681,0,2.5478926,3,40.610001,43.57,51,56,5,1,1,0,0,13,5,1,722.5,130323.91,0,0,6690.0244 -15105,18527,33747,33746,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,0,4,9.3790894,9.5428419,0,2,0,-9,9,0,1,24.940157,0,0,0,44,2,3,1,-9,-9,2019,1,1,9,1,60,65,15,1,0,1,0,26.256907,26.256907,0,0,0,0,0,0,0,0,1,1,0,5.0608034,0,0,3,51,56,40.610001,43.57,5,4,1,0,0,13,5,1,722.5,130323.91,0,0,6690.0244 -15106,18528,33748,33749,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,0,4,8.4015083,8.6060905,7.4626303,1,0,-9,29,0,1,63.697563,0,0,0,55,1,5,3,2,2,2019,2,2,6,0,42,97,15,1,0,4,0,14.774029,14.774029,0,0,0,0,0,0,0,0,0,0,0,2.4906838,7.1750011,0,0,59.290001,49.68,57.060001,57.759998,6,1,1,0,0,4,4,1,1036,1046624.2,0,0,3134.1462 -15106,18528,33749,33748,-9,-9,2,1,0,55,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,29,0,-1,-3.242435,0,0,0,56,2,4,1,2,1,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5443053,0,0,0,57.060001,57.759998,59.290001,49.68,7,1,1,0,0,4,4,1,1036,1046624.2,0,0,3134.1462 -15107,18529,33750,33751,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,5.8189783,5.7161298,1,0,-9,6,0,-8,15.427772,0,0,0,71,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9275875,0,0,50,47,57.16,56.150002,4,1,1,0,0,12,2,1,1924,441739.91,0,0,1109.8562 -15107,18529,33751,33750,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,6,0,8,-36.080017,0,0,0,63,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50,47,6,1,1,0,0,12,2,1,1924,441739.91,0,0,1109.8562 -15108,18530,33752,33753,-9,-9,1,1,0,43,1,0,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,26,0,0,-9.925621,0,0,1,52,2,3,1,3,-9,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.16,52.810001,50,50,6,2,3,0,0,4,2,1,725.5,62726.875,0,0,982.96234 -15108,18530,33753,33752,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,3,7.3791628,7.5107074,0,2,0,-9,26,0,9,-49.734322,0,0,0,43,3,4,3,-9,-9,2019,2,1,11,1,0,50,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,50,50.16,52.810001,5,2,3,0,0,4,2,1,725.5,62726.875,0,0,982.96234 -15108,18531,33754,-9,33752,33753,3,1,1,25,2,0,2,0,2,-9,2,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1069.3743,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.43,58.009998,-9,-9,7,2,3,0,1,4,1,1,2629,71668.281,0,0,1746.9852 -15108,18532,33755,-9,33752,33753,5,1,0,21,2,0,2,0,2,1,6,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1124.0634,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,4,1,1,1518,0,0,0,0 -15109,18533,33756,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,7.3914542,7.294333,3,0,0,0,-9,0,-1024.8584,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6697349,7.389761,0,0,54.77,55.869999,-9,-9,6,1,1,0,0,13,3,1,634,489633.66,0,0,1203.1495 -15110,18534,33757,-9,-9,-9,1,1,0,22,2,0,0,1,1,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-905.66901,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,7,1,1,0,0,6,1,1,971,-33541.012,0,0,1691.5089 -15111,18535,33758,33759,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.716692,7.8313498,1,0,-9,2,0,-2,-78.911072,0,0,0,75,2,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.7220845,8.8902292,1,41.810001,60.52,36.5,41.700001,6,1,1,0,0,13,4,1,775,1114665,0,0,5033.6504 -15111,18535,33759,33758,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,7.8871284,8.4347897,1,0,-9,2,0,2,-63.814987,0,0,0,73,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,1.2930187,0,0,0,0,0,1,1,0,0,8.1595879,0,0,36.5,41.700001,41.810001,60.52,5,1,1,0,0,13,4,1,775,1114665,0,0,5033.6504 -15112,18536,33760,33761,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,2,7.0220261,9.854723,9.9465475,1,0,-9,7,0,7,18.455692,0,0,0,54,2,4,1,3,3,2019,1,1,14,3,18,22,15,1,0,1,0,8.0111732,8.0111732,0,0,0,0,0,0,0,0,0,0,0,7.116735,10.207107,0,0,56.099998,23.27,50.369999,55.060001,6,1,1,0,0,6,5,1,819,1636120,0,0,11058.175 -15112,18536,33761,33760,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.5884466,8.6287432,0,1,0,-9,25,0,-7,25.033245,0,0,0,61,2,2,1,3,3,2019,1,2,16,5,55,52,15,1,1,1,0,11.135261,11.135261,0,0,0,0,0,0,0,2,0,0,0,2.9117587,0,6.1331716,3,50.369999,55.060001,56.099998,23.27,5,1,1,0,0,6,5,1,819,1636120,0,0,11058.175 -15113,18537,33762,33763,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,5,8.4554977,8.2734385,0,1,0,-9,5,0,-2,-85.453583,0,1,1,29,2,5,1,2,2,2019,1,2,10,1,38,39,15,1,0,1,0,14.347954,14.347954,0,0,0,0,0,0,0,0,0,0,0,.088985644,0,0,0,55.68,54.240002,54.099998,59.110001,6,1,1,0,0,10,5,1,1831.5,233069.13,0,0,4085.2173 -15113,18537,33763,33762,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,0,5,9.3053141,8.9824009,0,1,0,-9,5,0,2,-47.176228,0,1,0,27,1,5,1,-9,-9,2019,1,1,9,0,42,45,15,1,0,1,0,24.783459,24.783459,0,0,0,0,0,0,0,0,0,0,0,4.9831209,0,0,0,54.099998,59.110001,55.68,54.240002,6,1,1,0,0,10,5,1,1831.5,233069.13,0,0,4085.2173 -15114,18538,33764,-9,-9,-9,1,1,1,73,3,0,1,0,2,-9,4,3,0,0,4,0,7.6386628,7.516942,4,0,0,0,-9,0,-984.81854,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7777627,7.5045357,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,12,3,1,335,1695687.3,0,0,1327.5333 -15114,18539,33765,-9,-9,33764,2,1,1,53,3,0,1,0,2,-9,2,1,0,0,4,8.7430277,8.6326914,0,3,0,0,0,-9,0,-1078.8146,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,1,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,12,5,1,99,564279.25,0,0,2030.2172 -15115,18540,33766,33767,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,8.3786163,8.385191,0,1,0,-9,27,0,-2,53.235233,0,0,0,65,1,3,3,3,3,2019,2,1,7,0,39,39,15,1,0,4,0,14.602533,14.602533,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,52.990002,51.279999,5,1,1,0,1,13,3,1,229.5,841617.31,0,0,2361.5142 -15115,18540,33767,33766,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,27,0,2,-71.020355,0,0,0,63,2,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,58.32,50.220001,7,1,1,0,0,13,3,1,229.5,841617.31,0,0,2361.5142 -15116,18541,33768,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,0,3,7.5965958,7.8406506,0,3,0,0,0,-9,0,-1066.5488,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,38,38,15,1,0,-9,0,6.5010319,6.5010319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,5,1,1,0,0,9,3,0,1757,94686.984,0,0,941.61823 -15116,18542,33769,-9,33768,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,0,3,7.7767425,7.9257593,0,3,0,0,0,-9,0,-938.7392,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,68,30,15,1,0,-9,1,3.8088775,3.8088775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.029999,52.619999,-9,-9,6,1,1,0,0,9,3,0,2941,71952.477,0,0,779.76935 -15117,18543,33770,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,1,1,0,0,4,7.2062778,7.2704039,0,3,0,0,0,-9,0,-981.995,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,40,15,1,0,-9,0,4.4936266,4.4936266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,5,1,1,0,0,10,2,1,584,-73780.195,0,0,1288.335 -15118,18544,33771,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,8.1490145,8.652503,3,0,0,0,-9,0,-982.00861,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.3345842,8.4030857,0,0,55.119999,39.400002,-9,-9,7,1,1,0,0,10,4,1,665,665024.31,0,0,3219.6729 -15119,18545,33772,33773,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,1,2,8.1595678,8.057354,0,1,0,-9,32,0,-4,-63.276436,0,0,0,60,2,4,1,-9,-9,2019,1,1,11,1,36,40,15,1,0,1,0,10.081846,10.081846,0,0,0,0,0,0,0,2,1,1,0,1.9301559,0,0,3,51.080002,21.690001,51.119999,47.889999,4,1,1,0,0,6,3,1,875.5,392423.47,0,0,1456.8015 -15119,18545,33773,33772,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,1,4,6.6523738,6.3875828,0,1,0,-9,32,0,4,31.253952,0,0,0,56,2,2,1,-9,-9,2019,1,2,13,2,8,9,15,1,0,1,0,8.0092487,8.0092487,0,0,0,0,0,0,0,7,1,1,0,0,0,9.6215582,3,51.119999,47.889999,51.080002,21.690001,6,1,1,0,0,6,3,1,875.5,392423.47,0,0,1456.8015 -15120,18546,33774,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,4,0,6.3644514,6.1492691,3,0,0,0,-9,0,-843.31244,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,7.6803961,0,1,1,0,5.4284554,6.2794552,0,0,60.119999,54.799999,-9,-9,7,1,1,0,0,5,2,1,578,291855.53,0,0,-11.438684 -15121,18547,33775,33776,-9,-9,1,1,1,29,1,0,0,0,3,-9,2,1,0,0,4,7.7154374,7.8595057,0,1,0,-9,2,0,4,-15.824845,0,1,0,25,2,3,1,2,3,2019,1,2,6,0,58,46,15,1,0,1,0,4.4781041,4.4781041,0,0,0,0,0,0,0,0,0,0,0,.42998964,0,0,0,49.349998,51.610001,46.099998,34.150002,6,1,1,0,0,6,4,1,1287.5,12738.173,0,0,2562.0088 -15121,18547,33776,33775,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,0,3,7.9349136,8.3560247,0,1,0,-9,2,0,-4,-67.76445,0,1,1,29,3,4,1,-9,-9,2019,1,1,12,2,62,63,15,1,0,1,0,5.7396188,5.7396188,0,0,0,0,0,0,0,7,0,0,0,.91582733,0,5.2698469,3,46.099998,34.150002,49.349998,51.610001,2,1,1,0,0,6,4,1,1287.5,12738.173,0,0,2562.0088 -15122,18548,33777,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,1,3,0,6.519937,6.5580797,3,0,0,0,-9,0,-987.92255,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9127417,0,0,51,46,-9,-9,5,3,4,0,0,8,2,0,309,413201.09,0,0,1691.7314 -15123,18549,33778,33779,-9,-9,3,1,0,33,1,1,2,0,2,-9,2,1,0,0,4,6.8786802,7.1029706,0,2,0,-9,2,0,-13,21.465977,-9,0,1,46,2,3,1,-9,-9,2019,1,1,9,0,16,0,15,1,0,1,0,8.3000317,8.3000317,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.66,43.599998,43.970001,53.970001,5,1,1,0,0,13,3,1,794.66669,834050.56,0,0,2258.1755 -15123,18549,33779,33778,-9,-9,1,1,1,46,1,1,2,0,2,-9,2,1,0,0,3,7.4153948,7.3521829,0,2,0,-9,2,0,13,-4.2790604,0,0,0,33,2,4,1,-9,-9,2019,1,3,10,0,20,20,15,1,0,1,0,7.2765689,7.2765689,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.970001,53.970001,63.66,43.599998,6,1,1,0,0,13,3,1,794.66669,834050.56,0,0,2258.1755 -15123,18549,33780,-9,33778,33779,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-869.13605,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,3,1,794.66669,834050.56,0,0,2258.1755 -15124,18550,33781,33782,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,8.4655867,8.5684376,1,0,-9,47,0,-1,-75.342766,0,0,0,72,3,3,3,3,3,2019,4,2,17,8,0,0,15,4,1,4,0,0,0,1,0,1.8334148,0,0,0,0,0,1,1,0,4.4194365,8.3099289,0,0,35.279999,40.860001,35.040001,36.400002,6,1,1,0,0,7,4,0,804.5,1516699.5,0,0,4228.6479 -15124,18550,33782,33781,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,3,0,6.6657133,6.7930546,1,0,-9,47,0,1,11.955774,0,0,0,71,3,2,3,3,3,2019,4,1,24,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8403101,1.8380708,3,35.040001,36.400002,35.279999,40.860001,3,1,1,0,0,7,4,0,804.5,1516699.5,0,0,4228.6479 -15125,18551,33783,33784,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,4,2.1706169,2.375006,0,1,0,-9,6,0,7,-33.724094,0,0,0,58,2,3,3,-9,-9,2019,2,1,8,0,40,45,15,1,0,3,0,.030262494,.030262494,0,0,0,0,0,0,0,0,1,1,0,4.2791934,0,0,0,56,52,45.990002,44.91,6,1,1,0,0,7,1,1,613,361469.25,0,0,1804.8496 -15125,18551,33784,33783,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,38,0,-7,49.296864,0,0,0,65,2,4,1,2,2,2019,3,2,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.8672256,0,9.4134521,3,45.990002,44.91,56,52,5,1,1,0,0,7,1,1,613,361469.25,0,0,1804.8496 -15126,18552,33785,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,4,0,7.649807,7.7221084,3,0,0,0,-9,0,-982.28583,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7492783,7.7258849,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,11,3,1,993,759720.38,0,0,2066.113 -15127,18553,33786,33787,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,8.8286495,8.7520657,0,2,0,-9,19,0,4,81.595695,0,0,0,44,1,3,1,2,2,2019,1,2,9,1,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,47.709999,51.43,6,1,1,0,0,11,5,1,1196.3334,184803.02,0,0,5136.4482 -15127,18553,33787,33786,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,0,3,8.8148909,8.5533342,0,2,0,-9,7,0,-4,30.819149,0,0,1,48,2,4,1,-9,-9,2019,1,1,11,0,50,70,15,1,0,1,0,15.858569,15.858569,0,0,0,0,0,0,0,0,1,1,0,1.1430756,0,0,0,47.709999,51.43,52,55,5,1,1,0,0,11,5,1,1196.3334,184803.02,0,0,5136.4482 -15127,18553,33788,-9,33787,33786,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1110.9977,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,5,1,1196.3334,184803.02,0,0,5136.4482 -15128,18554,33789,33790,-9,-9,1,1,0,92,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,7,0,2,-19.480669,0,0,0,90,3,1,3,3,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,1,13.001111,22.831757,0,0,0,132.96599,120,1,1,0,0,0,121.16771,1,36.029999,18.379999,21.43,21.57,6,1,1,0,0,5,2,1,901,269974.56,0,0,1716.4414 -15128,18554,33790,33789,-9,-9,2,1,1,90,1,0,0,0,3,-9,4,3,0,1,1,0,5.9204979,5.7294197,1,0,-9,7,0,-2,9.0032234,0,0,0,92,2,1,3,3,2,2019,4,1,29,10,0,0,15,4,1,4,0,0,0,1,0,40.969299,0,0,0,0,120,1,1,0,0,5.9722581,118.96061,1,21.43,21.57,36.029999,18.379999,4,1,1,0,0,5,2,1,901,269974.56,0,0,1716.4414 -15129,18555,33791,-9,33793,-9,4,1,0,27,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-973.65149,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,13,1,1,218,0,0,0,1431.3768 -15129,18556,33792,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,2,1,0,0,4,8.8491268,8.9092045,0,1,0,-9,7,0,-3,11.782527,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,14,4,48,59,15,1,1,-9,0,16.608982,16.608982,0,0,0,0,0,0,0,14.5,1,1,0,6.3224001,0,11.953501,3,43.09,57.040001,57.060001,57.759998,5,1,1,0,0,13,5,1,1035,8540121,0,0,3428.8066 -15129,18557,33793,-9,-9,-9,2,1,0,64,2,0,0,0,2,-9,2,1,0,0,5,8.8161821,8.7050505,0,1,0,-9,7,0,3,34.914536,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,9,0,42,37,15,1,0,-9,0,12.887019,12.887019,0,0,0,0,0,0,0,0,1,1,0,6.8003707,0,0,0,57.060001,57.759998,43.09,57.040001,6,1,1,0,0,13,5,1,1265,32455.447,0,0,1500.957 -15130,18558,33794,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.9875746,8.8923101,0,3,0,0,0,-9,0,-1043.4475,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,40,15,1,0,-9,0,18.430962,18.430962,0,0,0,0,0,0,0,0,1,1,0,4.1070147,0,0,0,56.349998,51,-9,-9,6,1,1,0,0,12,5,0,145,223992.31,0,0,2491.5042 -15131,18559,33795,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,1,0,4.8812256,5.027442,3,0,0,0,-9,0,-984.84918,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,121.71821,0,0,0,0,1,1,0,0,5.0367284,0,0,54.419998,14.37,-9,-9,4,1,1,0,0,2,2,1,162,5221.665,0,0,1218.2574 -15131,18560,33796,-9,33795,-9,2,1,0,41,2,0,0,0,3,-9,6,3,0,1,2,0,0,0,3,0,0,0,-9,0,-985.67322,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,22,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.8123,3,13.31,60.529999,-9,-9,4,1,1,0,0,2,1,1,1003,107336.17,0,0,189.26001 -15131,18561,33797,-9,-9,-9,3,1,0,79,2,0,0,0,3,-9,4,3,0,1,1,0,5.1175132,4.9241252,3,0,0,0,-9,0,-942.00122,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,22.712435,0,2,1,1,0,0,4.8191967,.92466873,3,61.779999,24.58,-9,-9,6,1,1,0,0,2,2,1,500,-22969.031,0,0,1424.5502 -15132,18562,33798,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1199.8953,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.290001,40.09,-9,-9,3,1,1,0,0,9,1,0,1321,207929.91,0,0,-65.522888 -15133,18563,33799,33801,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,0,3,8.4160624,8.6955795,0,2,0,-9,2,0,-4,-28.443768,0,1,1,31,2,4,1,-9,-9,2019,1,3,10,1,42,40,15,1,0,1,0,12.672411,12.672411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.799999,43.610001,50,57,5,1,1,0,0,2,4,0,662.33331,222148.84,0,0,4438.4829 -15133,18563,33800,-9,33799,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.80341,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,2,4,0,662.33331,222148.84,0,0,4438.4829 -15133,18563,33801,33799,-9,-9,3,1,1,31,1,0,1,0,2,-9,2,1,0,0,4,7.9583206,7.86762,0,2,0,-9,2,0,4,90.253792,0,0,0,27,2,3,1,-9,-9,2019,1,1,10,1,40,35,15,1,0,1,0,10.337255,10.337255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,52.799999,43.610001,5,4,1,0,0,2,4,0,662.33331,222148.84,0,0,4438.4829 -15134,18564,33802,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,0,3,0,7.6468487,7.7369657,3,0,0,0,-9,0,-779.75995,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0035715,7.8977141,0,0,35.93,33.720001,-9,-9,3,1,1,0,0,12,3,1,1135,605988.5,0,0,1581.0293 -15135,18565,33803,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1120.4581,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,54.619999,-9,-9,4,1,1,0,1,7,1,0,417,-13956.313,0,0,180.18779 -15136,18566,33804,33806,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,0,2,7.8611641,8.0192232,0,2,0,-9,11,0,4,-5.5622201,0,0,0,50,2,1,1,3,-9,2019,1,1,31,12,48,42,15,1,1,1,0,5.5247068,5.5247068,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.284296,2,31.07,33.369999,33.360001,28.040001,3,1,1,0,1,1,2,0,1369.6666,91317.008,0,0,1874.9219 -15136,18566,33805,-9,33804,33806,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.8874,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,2,0,1369.6666,91317.008,0,0,1874.9219 -15136,18566,33806,33804,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,0,1,0,0,0,2,0,-9,11,0,-4,-133.46376,0,0,0,54,2,2,1,2,3,2019,1,2,24,8,8,22,15,1,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,15.78337,3,33.360001,28.040001,31.07,33.369999,2,1,1,0,1,1,2,0,1369.6666,91317.008,0,0,1874.9219 -15137,18567,33807,-9,33808,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1023.189,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,383.5,1086611,0,0,1766.5449 -15137,18567,33808,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,0,3,8.9479303,8.9960051,5.7601256,4,0,0,0,-9,0,-953.60577,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,55,95,15,1,0,-9,0,13.633685,13.633685,0,0,0,0,0,0,0,0,1,1,0,6.3792715,0,0,0,50.599998,51,-9,-9,5,1,1,0,0,12,5,1,383.5,1086611,0,0,1766.5449 -15138,18568,33809,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,3,8.1304493,8.2907305,0,3,0,-9,0,0,0,-934.22449,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,23,10,44,44,15,1,1,-9,0,6.0095263,6.0095263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.450001,66.57,-9,-9,2,1,1,0,0,9,4,0,928,-10637.691,0,0,443.41266 -15139,18569,33810,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,3,0,6.4449477,6.6043787,3,0,0,0,-9,0,-1021.9164,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0927763,6.6234422,0,0,48.689999,35.560001,-9,-9,3,1,1,0,0,2,2,1,323,59582.195,0,0,564.25201 -15140,18570,33811,-9,-9,33813,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,5,8.3519869,8.1495104,0,3,0,0,0,-9,0,-1032.8877,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7196765,0,0,0,38.369999,59.330002,-9,-9,7,1,1,0,0,10,4,1,3051,-62651.039,0,0,1063.4353 -15140,18571,33812,-9,-9,33813,2,1,0,30,2,0,0,0,2,-9,2,1,0,0,5,8.0122643,8.0037699,0,3,0,0,0,-9,0,-1136.0989,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,38,15,1,0,-9,1,6.448915,6.448915,0,0,0,0,0,0,0,0,0,0,0,1.4642199,0,0,0,41.07,60.93,-9,-9,4,1,1,0,0,10,3,1,816,-4314.0073,0,0,1243.4012 -15140,18572,33813,-9,-9,-9,3,1,1,58,3,0,0,0,2,-9,1,1,0,0,5,7.7159958,7.7287703,0,3,0,0,0,-9,0,-1053.9989,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,10,3,1,1419,485509.53,0,0,627.32611 -15141,18573,33814,33816,-9,-9,1,1,1,42,1,1,1,0,2,-9,2,1,0,0,5,8.7954741,9.1454372,0,2,0,-9,2,0,7,0,0,0,0,35,1,4,1,2,1,2019,1,2,8,0,40,40,15,1,0,1,0,16.755053,16.755053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,51.240002,58.84,6,1,1,0,0,12,5,1,1948.3334,480297.88,0,0,4439.9214 -15141,18573,33815,-9,33816,33814,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-939.48956,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,5,1,1948.3334,480297.88,0,0,4439.9214 -15141,18573,33816,33814,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,0,4,8.6253643,8.7701836,0,2,0,-9,2,0,-7,0,-9,0,1,42,2,5,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,17.870733,17.870733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,57.060001,57.759998,7,1,1,0,0,12,5,1,1948.3334,480297.88,0,0,4439.9214 -15142,18574,33817,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,4,0,6.573143,6.3312063,3,0,0,0,-9,0,-1166.0221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2960625,0,0,60.720001,47.630001,-9,-9,6,1,1,0,0,9,2,1,63,360323.06,0,0,20.196735 -15143,18575,33818,-9,33821,33820,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.63342,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,0,463.25,-43018.273,0,0,1852.786 -15143,18575,33819,-9,33821,33820,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-942.02429,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,3,0,463.25,-43018.273,0,0,1852.786 -15143,18575,33820,33821,-9,-9,1,1,1,39,1,1,2,0,2,-9,6,3,0,0,2,5.5873361,5.6426392,0,2,0,-9,18,0,0,4.1620626,0,0,0,39,1,3,1,2,2,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.8215284,3,41.080002,38.09,49.630001,54.220001,5,1,1,0,0,4,3,0,463.25,-43018.273,0,0,1852.786 -15143,18575,33821,33820,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,0,3,8.2701473,8.1107302,0,2,0,-9,18,0,0,58.57999,0,0,1,39,2,2,3,-9,2,2019,2,1,9,0,38,35,15,1,0,3,0,12.269714,12.269714,0,0,0,0,0,0,0,2,1,1,0,0,0,4.2350168,3,49.630001,54.220001,41.080002,38.09,6,1,1,0,0,4,3,0,463.25,-43018.273,0,0,1852.786 -15144,18576,33822,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,2,8.6234074,8.5787373,0,3,0,0,0,-9,0,-922.64484,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,41,15,1,0,-9,0,17.353783,17.353783,0,0,0,0,0,0,0,0,0,0,0,.2597667,0,0,0,46.689999,49.099998,-9,-9,5,1,1,0,0,6,5,1,172,312053.97,0,0,1720.6025 -15145,18577,33823,-9,-9,-9,1,1,0,36,3,0,2,0,3,-9,2,1,0,1,3,6.8112783,6.9436431,5.418416,4,0,-9,0,1,0,-1099.0535,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,16,15,1,0,-9,0,6.5223808,6.5223808,0,0,0,0,0,0,0,110,1,1,0,5.3368387,0,127.54662,3,41.34,56.619999,-9,-9,6,1,1,0,0,2,2,0,340,123009.17,0,0,1368.4208 -15146,18578,33824,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,1,0,3.9327428,4.1431746,3,0,0,0,-9,0,-970.02954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.2086139,0,0,43.360001,30.379999,-9,-9,3,1,1,0,0,12,2,0,2469,340648.78,0,0,1458.6853 -15147,18579,33825,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,1,1,0,0,2,0,0,0,3,0,-9,0,1,0,-1040.1147,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,-9,-9,6,1,1,0,0,5,2,1,722,-113597.56,0,0,294.04303 -15148,18580,33826,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-984.38275,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1394587,0,0,0,37.740002,29.9,-9,-9,4,1,1,0,0,12,1,0,747,-110569.05,0,0,69.083969 -15149,18581,33827,-9,33829,33828,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.85962,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,987,311666,0,0,3830.8079 -15149,18581,33828,33829,-9,-9,2,1,1,43,1,0,3,0,2,-9,2,1,0,0,4,9.5437899,9.1779222,0,2,0,-9,7,0,4,46.826668,0,0,0,39,1,5,3,-9,-9,2019,2,1,9,1,60,55,15,1,0,3,0,22.275278,22.275278,0,0,0,0,0,0,0,0,0,0,0,3.2695098,0,0,0,52,56,54.099998,59.110001,6,1,1,0,0,9,5,1,987,311666,0,0,3830.8079 -15149,18581,33829,33828,-9,-9,1,1,0,39,1,0,3,0,1,-9,6,3,0,0,5,5.0005074,5.5623608,0,2,0,-9,13,0,-4,74.708,0,0,1,43,2,4,1,2,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,52,56,7,1,1,0,0,9,5,1,987,311666,0,0,3830.8079 -15149,18581,33830,-9,33829,33828,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.8196,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,987,311666,0,0,3830.8079 -15149,18581,33831,-9,33829,33828,3,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.42316,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,987,311666,0,0,3830.8079 -15150,18582,33832,33833,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,8.2660942,8.5461435,1,0,-9,52,0,-1,-124.90477,0,0,0,75,2,2,3,3,1,2019,4,1,23,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1485844,8.4798298,0,0,42.790001,46.91,41.869999,35.220001,3,1,1,0,0,4,4,1,940.5,838310,0,0,3978.2554 -15150,18582,33833,33832,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,52,0,1,-129.27635,0,0,0,74,2,2,3,2,2,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.91316932,0,0,0,41.869999,35.220001,42.790001,46.91,3,1,1,0,0,4,4,1,940.5,838310,0,0,3978.2554 -15151,18583,33834,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,1,0,6.1870713,5.8446279,3,0,0,0,-9,0,-971.78955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,4.9478998,5.1161017,0,0,1,1,0,0,6.4024148,0,0,31.9,19.360001,-9,-9,5,1,1,0,0,1,2,0,681,133307.13,0,0,1395.8459 -15152,18584,33835,33837,-9,-9,1,1,0,37,1,1,1,0,2,-9,2,1,0,0,3,6.6649208,6.7813482,0,2,0,-9,6,0,7,277.31528,0,0,1,30,2,4,1,2,3,2019,1,2,13,2,22,13,15,1,0,1,0,4.132688,4.132688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.790001,55.040001,54.200001,57.490002,4,4,2,0,0,6,3,0,828.66669,6512.7188,0,0,1536.1329 -15152,18584,33836,-9,33835,33837,3,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.9223,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,6,3,0,828.66669,6512.7188,0,0,1536.1329 -15152,18584,33837,33835,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,0,4,7.8045816,7.9577379,0,2,0,-9,6,0,-7,-8.5423918,0,0,0,37,2,3,1,1,3,2019,1,1,11,2,55,60,15,1,0,1,0,6.2881761,6.2881761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,44.790001,55.040001,5,1,1,0,0,6,3,0,828.66669,6512.7188,0,0,1536.1329 -15153,18585,33838,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1103.2548,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.200001,23.190001,-9,-9,5,1,1,0,0,13,1,0,308,172769.88,0,0,2448.907 -15154,18586,33839,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-1054.6086,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,20,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.6175213,0,0,3,54.200001,57.490002,-9,-9,6,1,1,0,0,2,1,1,978,0,0,0,913.28748 -15155,18587,33840,33841,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,1,0,4.2770224,4.1923947,1,0,-9,44,0,-7,-75.602531,0,0,0,70,2,1,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2079868,0,0,33.869999,26.459999,57.48,30.52,4,2,3,0,0,8,2,1,794.5,966434.38,0,0,1208.6721 -15155,18587,33841,33840,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,7.4668722,7.4453111,1,0,-9,44,0,7,26.095577,0,0,0,63,2,1,3,3,3,2019,4,2,22,10,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0501719,0,0,57.48,30.52,33.869999,26.459999,5,2,3,0,0,8,2,1,794.5,966434.38,0,0,1208.6721 -15155,18588,33842,-9,33840,33841,3,1,0,39,2,0,0,0,1,-9,2,1,0,0,4,8.6372681,8.6684666,0,3,0,0,0,-9,0,-1025.9829,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,36,35,15,1,0,-9,1,18.764648,18.764648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,56,-9,-9,5,2,3,0,0,8,5,1,408,245392.08,0,0,2040.5316 -15156,18589,33843,33844,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.4043875,8.0199394,0,1,0,-9,12,0,3,84.309143,0,0,0,49,2,4,1,-9,3,2019,1,2,11,0,38,37,15,1,0,1,0,13.44275,13.44275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,50.189999,46.93,5,1,1,0,0,12,4,0,795.5,573429.19,0,0,2943.4067 -15156,18589,33844,33843,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,8.3498354,8.2421656,0,1,0,-9,12,0,-3,-19.403835,0,0,0,52,2,3,1,1,3,2019,1,1,8,0,40,40,15,1,0,1,0,12.348261,12.348261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.189999,46.93,58.32,50.220001,3,1,1,0,0,12,4,0,795.5,573429.19,0,0,2943.4067 -15157,18590,33845,33846,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,2,0,5.1815014,5.0466204,1,0,-9,5,0,1,-10.428701,0,0,0,78,2,3,3,-9,-9,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7970586,5.1254125,0,0,56.98,45.790001,57.540001,42.360001,6,1,1,0,0,4,2,1,341,354966.97,0,0,1223.649 -15157,18590,33846,33845,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,6.9184494,6.5337605,1,0,-9,5,0,-1,35.683159,0,0,0,79,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3394456,6.7759376,0,0,57.540001,42.360001,56.98,45.790001,6,1,1,0,0,4,2,1,341,354966.97,0,0,1223.649 -15158,18591,33847,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,4,8.412364,8.7415237,6.9086456,3,0,0,0,-9,0,-963.91016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,38,37,15,1,0,-9,0,12.909324,12.909324,0,0,0,0,0,0,0,0,1,1,0,0,7.0975895,0,0,43.790001,58.330002,-9,-9,5,1,1,0,0,7,5,1,444,2272410.5,0,0,1985.7986 -15159,18592,33848,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1014.7056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.799999,59.5,-9,-9,6,1,1,1,0,10,1,0,994,-33557.457,0,0,962.35974 -15160,18593,33849,33850,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.3798113,8.1405802,0,2,0,-9,7,0,2,56.230206,0,0,0,44,1,4,1,-9,-9,2019,1,1,8,0,41,37,15,1,0,1,0,13.266752,13.266752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,52.419998,57.16,56.150002,4,1,1,0,0,8,5,1,977.75,206647.78,0,0,5078.9355 -15160,18593,33850,33849,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.7420397,9.1786976,0,2,0,-9,7,0,-2,-11.625698,0,0,1,46,2,4,1,1,1,2019,1,2,6,0,35,35,15,1,0,1,0,23.848196,23.848196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,50.68,52.419998,6,4,2,0,0,8,5,1,977.75,206647.78,0,0,5078.9355 -15160,18593,33851,-9,33850,33849,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.41168,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,5,1,977.75,206647.78,0,0,5078.9355 -15160,18593,33852,-9,33850,33849,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1151.3798,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,5,1,977.75,206647.78,0,0,5078.9355 -15161,18594,33853,33854,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.0319576,7.0996323,1,0,-9,2,0,-4,36.390713,0,0,0,70,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9306602,0,0,57.91,46.150002,57.73,54.529999,6,1,1,0,0,12,4,1,583,1477903.5,0,0,3456.6631 -15161,18594,33854,33853,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.301156,7.8480268,1,0,-9,2,0,4,-19.854319,0,0,0,66,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5248466,8.2105942,0,0,57.73,54.529999,57.91,46.150002,6,1,1,0,0,12,4,1,583,1477903.5,0,0,3456.6631 -15162,18595,33855,33856,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,6.7281609,6.6477513,1,0,-9,56,0,-5,77.937302,0,0,0,79,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.8423598,6.7205877,40.442646,1,57.16,56.150002,49.849998,26.049999,2,1,1,0,0,5,2,1,537.5,344247.03,0,0,1969.0496 -15162,18595,33856,33855,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,2,0,6.8969092,6.2886519,1,0,-9,56,0,5,27.224314,0,0,0,74,2,4,3,3,2,2019,4,2,12,3,0,0,15,4,0,4,0,0,0,1,0,70.244522,0,0,0,0,0,1,1,0,2.3260171,6.6557145,0,0,49.849998,26.049999,57.16,56.150002,6,1,1,0,0,5,2,1,537.5,344247.03,0,0,1969.0496 -15163,18596,33857,-9,33858,33860,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.89655,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,339.5,181428.56,0,0,1277.8939 -15163,18596,33858,33860,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,1,4,6.9136953,7.1644273,0,2,0,-9,7,0,-1,-149.79855,0,0,1,42,2,1,1,-9,-9,2019,1,1,11,1,16,40,15,1,0,1,0,8.0077171,8.0077171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,48.299999,25.860001,5,1,1,0,0,13,3,1,339.5,181428.56,0,0,1277.8939 -15163,18596,33859,-9,33858,33860,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.426,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,3,1,339.5,181428.56,0,0,1277.8939 -15163,18596,33860,33858,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,1,8.1371765,7.9271631,0,2,0,-9,7,0,1,49.462849,0,0,0,41,2,4,1,2,2,2019,1,2,7,0,37,44,15,1,0,1,0,8.439971,8.439971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.299999,25.860001,49,55,4,1,1,0,0,13,3,1,339.5,181428.56,0,0,1277.8939 -15164,18597,33861,33862,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,7.1732297,6.5466428,1,0,-9,8,0,2,33.18922,0,0,0,73,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0210187,6.69946,0,0,53,46,42.23,31.82,6,1,1,0,0,4,2,1,621.5,395345.47,0,0,1906.429 -15164,18597,33862,33861,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,1,3,0,6.4372616,6.4851737,1,0,-9,54,0,-2,22.806225,0,0,0,75,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,17.359251,0,0,120,1,1,0,1.7331545,6.4545631,125.47987,1,42.23,31.82,53,46,3,1,1,0,0,4,2,1,621.5,395345.47,0,0,1906.429 -15165,18598,33863,33864,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,3.8396201,7.1481099,7.1613011,1,0,-9,35,0,4,37.941891,0,0,0,59,2,4,1,3,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2454195,7.3538728,0,0,54.200001,57.490002,54.790001,55.860001,6,1,1,0,0,11,5,1,950.5,257682.81,0,0,3496.5342 -15165,18598,33864,33863,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.2543468,8.9431829,7.7403407,1,0,-9,35,0,-4,43.374348,0,0,0,63,2,4,3,2,-9,2019,2,2,11,0,40,48,15,1,0,4,0,11.217518,11.217518,0,0,0,0,0,0,0,2,1,1,0,3.7025337,7.944521,8.5709991,3,54.790001,55.860001,54.200001,57.490002,6,1,1,0,0,11,5,1,950.5,257682.81,0,0,3496.5342 -15165,18599,33865,-9,33863,33864,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.2085314,8.3036289,0,3,0,0,0,-9,0,-971.71912,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,37,40,15,1,0,-9,1,10.268702,10.268702,0,0,0,0,0,0,0,0,1,1,0,4.3421178,0,0,0,35.84,61.77,-9,-9,4,1,1,0,0,11,4,1,777,115002.45,0,0,2293.803 -15166,18600,33866,-9,33868,33867,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.68604,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,0,706.33331,142009.05,0,0,1373.1866 -15166,18600,33867,33868,-9,-9,1,1,1,37,1,0,1,0,3,-9,2,1,0,0,4,8.4582062,8.3402634,0,2,0,-9,8,0,-1,-66.601387,0,0,0,38,2,3,1,-9,-9,2019,1,2,11,0,53,58,15,1,0,1,0,11.14623,11.14623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,46.080002,57.200001,5,1,1,0,0,4,4,0,706.33331,142009.05,0,0,1373.1866 -15166,18600,33868,33867,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,3,5.6401658,5.634481,0,2,0,-9,8,0,1,10.043489,0,0,1,37,3,4,1,-9,-9,2019,1,1,7,0,5,5,15,1,0,1,0,6.3543119,6.3543119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,59.529999,56.439999,5,1,1,0,0,4,4,0,706.33331,142009.05,0,0,1373.1866 -15167,18601,33869,33870,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,5.8242416,5.5478692,1,0,-9,46,0,1,-36.558617,0,0,0,68,2,4,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.311224,5.7222648,1.3504544,3,59.290001,49.68,57.16,56.150002,6,1,1,0,0,9,3,1,547,1869506,0,0,3509.1714 -15167,18601,33870,33869,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,4,0,8.034256,8.0325804,1,0,-9,46,0,-1,-52.865444,0,0,0,69,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7788281,8.269331,0,0,57.16,56.150002,59.290001,49.68,6,1,1,0,0,9,3,1,547,1869506,0,0,3509.1714 -15168,18602,33871,-9,33873,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,4,8.1789141,7.9499936,0,3,0,0,0,-9,0,-978.99902,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,30,0,15,1,0,-9,1,15.762124,15.762124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,8,4,1,210,-133731.95,0,0,198.97632 -15168,18603,33872,-9,33873,-9,2,1,1,25,2,0,0,0,1,-9,1,1,0,0,3,7.205163,7.1436844,0,3,0,0,0,-9,0,-1046.0217,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,30,0,15,1,0,-9,1,5.2742395,5.2742395,0,0,0,0,0,0,0,0,0,0,0,4.0731859,0,0,0,58.470001,44.689999,-9,-9,2,4,2,0,0,8,3,1,1263,-57324.352,0,0,257.37686 -15168,18604,33873,-9,-9,-9,3,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.1265612,8.3020868,6.3886447,3,0,0,0,-9,0,-1053.9877,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,0,15,1,0,-9,0,7.707583,7.707583,0,0,0,0,0,0,0,0,0,0,0,0,6.4168482,0,0,49,48,-9,-9,5,3,4,0,0,8,4,1,627,589614.75,0,0,936.39886 -15168,18605,33874,-9,33873,-9,4,1,0,39,2,0,0,0,2,-9,1,1,0,0,4,8.1422167,8.0863771,0,3,0,0,0,-9,0,-1012.0418,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,37,0,15,1,0,-9,1,14.419958,14.419958,0,0,0,0,0,0,0,0,0,0,0,4.4273133,0,0,0,49,56,-9,-9,5,3,4,0,0,8,4,1,195,47545.297,0,0,1186.4379 -15169,18606,33875,33876,-9,-9,2,1,1,44,1,0,1,0,1,-9,2,1,0,0,4,8.877491,8.7267857,0,2,0,-9,6,0,-1,-59.255074,0,0,0,45,3,3,1,2,3,2019,1,1,11,2,39,40,15,1,0,1,0,13.859361,13.859361,0,0,0,0,0,0,0,2,1,1,0,6.1975765,0,4.0527773,3,50.34,56.400002,54.900002,54.529999,6,1,1,0,0,4,4,1,506.33334,670149.31,0,0,3031.6765 -15169,18606,33876,33875,-9,-9,1,1,0,45,1,0,1,0,3,-9,1,1,0,0,3,7.1279669,7.3323503,0,2,0,-9,6,0,1,81.961586,0,0,0,44,1,4,1,2,3,2019,1,2,10,0,40,30,15,1,0,1,0,3.530102,3.530102,0,0,0,0,0,0,0,2,1,1,0,4.5405798,0,.91557419,3,54.900002,54.529999,50.34,56.400002,6,1,1,0,0,4,4,1,506.33334,670149.31,0,0,3031.6765 -15169,18606,33877,-9,33876,33875,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-817.99451,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,4,1,506.33334,670149.31,0,0,3031.6765 -15170,18607,33878,33879,-9,-9,1,1,1,48,1,0,1,0,1,-9,1,1,0,0,3,9.099555,9.2673473,0,2,0,-9,28,0,-5,.78159344,0,0,0,53,1,3,1,2,2,2019,1,2,7,0,40,45,15,1,0,1,0,29.219059,29.219059,0,0,0,0,0,0,0,0,0,0,0,4.1531615,0,0,0,51.66,54.880001,50.029999,52.619999,6,1,1,0,0,7,5,1,313.5,1463808.6,0,0,4621.2466 -15170,18607,33879,33878,-9,-9,2,1,0,53,1,0,1,0,1,-9,1,1,0,0,3,8.5633087,8.459218,0,2,0,-9,28,0,5,61.071629,0,0,0,48,1,3,1,1,1,2019,1,1,10,0,24,20,15,1,0,1,0,21.359222,21.359222,0,0,0,0,0,0,0,0,0,0,0,6.094718,0,0,0,50.029999,52.619999,51.66,54.880001,6,3,4,0,0,7,5,1,313.5,1463808.6,0,0,4621.2466 -15170,18608,33880,-9,33879,33878,3,1,1,19,2,0,1,0,2,1,97,3,0,0,5,6.1564336,6.6675773,0,3,0,0,0,-9,0,-994.03613,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,4,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5156438,0,0,0,44.16,61.040001,-9,-9,6,4,2,0,0,7,2,1,2327,426.80521,0,0,1012.9914 -15170,18609,33881,-9,-9,-9,4,1,0,36,3,0,1,0,1,-9,2,1,0,0,3,8.6895161,8.8034592,0,4,0,-9,0,-9,0,-848.47931,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,37,0,15,1,0,-9,0,20.752874,20.752874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.66,36.900002,-9,-9,5,3,4,0,0,7,5,1,532,49961.727,0,0,1461.394 -15170,18609,33882,-9,33881,-9,5,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-852.36365,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,7,5,1,532,49961.727,0,0,1461.394 -15171,18610,33883,33884,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,7.4548874,7.69699,6.6552916,1,0,-9,38,0,3,29.468157,0,0,0,60,2,2,3,-9,-9,2019,2,2,11,0,22,23,15,1,0,4,0,9.7944164,9.7944164,0,0,0,0,0,0,0,0,1,1,0,2.7790329,6.7048836,0,0,51.240002,58.84,51.490002,42.779999,6,1,1,0,0,12,3,1,541,603458.31,0,0,1530.2087 -15171,18610,33884,33883,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,0,2,0,6.1751132,6.4755669,1,0,-9,38,0,-3,72.437012,0,0,0,63,2,4,1,-9,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4790332,6.6031237,0,0,51.490002,42.779999,51.240002,58.84,5,1,1,0,0,12,3,1,541,603458.31,0,0,1530.2087 -15171,18611,33885,-9,33883,33884,3,1,1,27,2,0,0,0,2,-9,2,1,0,1,4,7.7426639,7.5683985,0,3,0,0,0,-9,0,-970.35211,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,36,36,15,1,0,-9,1,8.3214827,8.3214827,0,0,0,0,0,0,0,0,1,1,0,3.3528056,0,0,0,44.490002,61.790001,-9,-9,6,1,1,0,0,12,3,1,541,-25538.359,0,0,133.16203 -15172,18612,33886,-9,-9,-9,1,1,1,81,2,0,0,0,2,-9,4,3,0,0,4,0,7.464365,7.0257649,3,0,0,0,-9,0,-919.40594,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6202641,0,0,52.299999,43.16,-9,-9,6,1,1,0,0,12,3,1,501,263083.31,0,0,1589.4796 -15173,18613,33887,-9,33889,33888,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.4621,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,5,1,503,163408.19,0,0,5768.0586 -15173,18613,33888,33889,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,9.311326,9.1042547,0,2,0,-9,10,0,3,116.98821,0,0,0,36,1,3,1,2,1,2019,1,2,5,0,50,41,15,1,0,1,0,21.570034,21.570034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,33.18,60.48,6,1,1,0,0,5,5,1,503,163408.19,0,0,5768.0586 -15173,18613,33889,33888,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,7.5955725,7.4855266,0,2,0,-9,10,0,-3,121.04281,0,0,1,39,1,4,1,-9,-9,2019,1,1,15,2,20,21,15,1,0,1,0,12.147061,12.147061,0,0,0,0,0,0,0,0,0,0,0,.91486967,0,0,0,33.18,60.48,51.240002,58.84,5,1,1,0,0,5,5,1,503,163408.19,0,0,5768.0586 -15173,18613,33890,-9,33889,33888,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-889.38708,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,5,1,503,163408.19,0,0,5768.0586 -15174,18614,33891,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,0,4,8.2865782,8.4229136,5.5643587,3,0,0,0,-9,0,-1012.621,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,38,0,15,1,0,-9,0,14.042198,14.042198,0,0,0,0,0,0,0,0,0,0,0,6.1328816,0,0,0,33.490002,64.260002,-9,-9,5,1,1,0,0,7,4,0,3311,40897.16,0,0,3067.0466 -15175,18615,33892,-9,33896,-9,5,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1025.6661,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,2,0,680.59998,118729.21,0,0,2274.1025 -15175,18615,33893,-9,33896,-9,4,1,0,3,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-897.44617,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,680.59998,118729.21,0,0,2274.1025 -15175,18615,33894,-9,33896,-9,2,1,1,7,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1043.474,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,2,0,680.59998,118729.21,0,0,2274.1025 -15175,18615,33895,-9,33896,-9,3,1,0,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1033.5963,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,680.59998,118729.21,0,0,2274.1025 -15175,18615,33896,-9,-9,-9,1,1,0,30,2,1,4,0,2,-9,6,3,0,0,4,0,6.6139631,6.400732,4,0,-9,0,-9,0,-1054.2506,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0167503,0,0,0,57.73,54.529999,-9,-9,7,1,1,0,0,9,2,0,680.59998,118729.21,0,0,2274.1025 -15176,18616,33897,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,4,3,0,0,4,7.3782935,8.3357058,7.9741125,3,0,0,0,-9,0,-961.20471,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.66259515,7.7331719,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,10,4,1,508,1353672.4,0,0,3056.5208 -15177,18617,33898,33899,-9,-9,2,1,0,70,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,42,0,1,-114.72829,0,0,0,69,3,3,3,3,3,2019,4,1,11,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,46.57,54.66,5,4,5,0,0,4,2,1,178.5,697614.38,0,0,550.82495 -15177,18617,33899,33898,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.4221926,6.2137976,1,0,-9,42,0,-1,24.75806,0,0,0,70,2,3,3,3,3,2019,4,2,18,7,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2526841,0,0,46.57,54.66,51,47,6,4,5,0,0,4,2,1,178.5,697614.38,0,0,550.82495 -15178,18618,33900,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,3,9.0587835,9.0433331,0,3,0,0,0,-9,0,-889.05145,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,44,42,15,1,0,-9,0,22.479187,22.479187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,0,0,7,5,1,976,-149961.38,0,0,3203.2581 -15179,18619,33901,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,5,8.1744938,8.0902719,0,3,0,0,0,-9,0,-1057.0872,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,49,52,15,1,0,-9,0,8.4847031,8.4847031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,5,4,1,264,-40647.473,0,0,1569.1829 -15180,18620,33902,33903,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,0,4,7.8888245,8.7353392,7.3055644,1,0,-9,8,0,7,-17.721416,0,0,0,55,2,4,1,3,2,2019,1,3,7,0,38,38,15,1,0,1,0,10.836226,10.836226,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4400477,19.286497,3,51.240002,58.84,40.57,54.380001,6,1,1,0,0,9,5,1,883,324369.66,0,0,3316.9963 -15180,18620,33903,33902,-9,-9,3,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.3740683,7.9559612,0,1,0,-9,8,0,-7,-15.862752,0,0,0,62,3,4,1,-9,-9,2019,1,1,13,1,74,37,15,1,0,1,0,6.2036781,6.2036781,0,0,0,0,0,0,0,52,1,1,0,0,0,73.951073,3,40.57,54.380001,51.240002,58.84,4,1,1,0,0,9,5,1,883,324369.66,0,0,3316.9963 -15181,18621,33904,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,3,8.5136404,8.7234554,0,3,0,0,0,-9,0,-1057.7124,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,31,38,15,1,0,-9,0,23.523222,23.523222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.240002,46.700001,-9,-9,3,3,4,0,0,6,5,1,1039,-31585.43,0,0,1994.0933 -15182,18622,33905,-9,33907,33906,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-947.28741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,4,0,606,46507.258,0,0,2500.7446 -15182,18622,33906,33907,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,0,3,8.196806,8.103714,0,2,0,-9,1,-9,7,-94.398308,-9,0,0,25,2,3,1,-9,-9,2019,1,1,10,1,37,0,15,1,0,1,0,11.760503,11.760503,0,0,0,0,0,0,0,0,1,1,0,2.0043859,0,0,0,39.419998,53.830002,54.959999,53.169998,5,1,1,0,0,10,4,0,606,46507.258,0,0,2500.7446 -15182,18622,33907,33906,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,0,3,7.4059572,7.6035786,0,2,0,-9,1,-9,-7,-97.026184,-9,1,1,32,2,3,1,-9,-9,2019,1,2,8,1,28,0,15,1,0,1,0,6.5360994,6.5360994,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,39.419998,53.830002,6,1,1,0,0,10,4,0,606,46507.258,0,0,2500.7446 -15183,18623,33908,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,3,7.0595784,6.885572,0,3,0,0,0,-9,0,-986.48132,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,18,18,15,1,0,-9,0,5.9036884,5.9036884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.380001,41.84,-9,-9,6,1,1,0,0,8,2,0,145,743428.69,0,0,-425.08621 -15184,18624,33909,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,1,2,0,5.7653265,5.6005034,3,0,0,0,-9,0,-949.12225,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5178418,5.3800311,0,0,65.260002,14.58,-9,-9,6,1,1,0,0,10,2,1,1048,165809.52,0,0,1047.6162 -15185,18625,33910,33911,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,0,4,8.3215923,8.1072826,0,1,0,-9,6,0,-11,48.519615,0,0,0,50,1,3,1,2,1,2019,1,2,9,1,37,37,15,1,0,1,0,14.85775,14.85775,0,0,0,0,0,0,0,0,0,0,0,.83420366,0,0,0,51,56,46.669998,37.599998,6,1,1,0,0,6,5,1,330.5,145565.91,0,0,3439.7773 -15185,18625,33911,33910,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,7.7955303,7.9360318,0,1,0,-9,6,0,11,-45.52813,0,0,0,39,1,4,1,2,1,2019,1,1,18,6,30,37,15,1,1,1,0,10.8196,10.8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,37.599998,51,56,3,1,1,0,0,6,5,1,330.5,145565.91,0,0,3439.7773 -15186,18626,33912,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,2,1,0,0,2,7.8383622,7.6853924,5.6804996,3,0,0,0,-9,0,-914.46509,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,30,29,15,1,0,-9,0,9.4982309,9.4982309,0,0,0,0,0,0,0,0,1,1,0,2.0860794,6.1100059,0,0,50.66,47.59,-9,-9,5,1,1,0,0,1,4,1,751,370175.03,0,0,1043.2156 -15187,18627,33913,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,5,0,6.4077826,6.192966,3,0,0,0,-9,0,-968.42981,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3581285,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,12,2,0,273,18580.789,0,0,1892.6661 -15188,18628,33914,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,1,0,7.4473739,7.1291242,3,0,0,0,-9,0,-910.64386,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2864289,7.2341895,0,0,66.629997,16.77,-9,-9,5,1,1,0,0,7,3,1,519,1026763.8,0,0,2179.8557 -15189,18629,33915,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,0,4,0,4.3076792,4.450408,3,0,0,0,-9,0,-1049.6372,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6345129,4.0804682,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,6,2,1,593,877412.81,0,0,372.41711 -15190,18630,33916,33917,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,52,0,-1,0,0,0,0,71,3,2,3,-9,-9,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.52,23.809999,37.639999,32.93,5,3,4,0,0,12,1,0,406,-40479,0,0,2213.2454 -15190,18630,33917,33916,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,52,0,1,0,0,0,0,70,2,1,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.3517776,1,37.639999,32.93,45.52,23.809999,5,1,1,0,0,12,1,0,406,-40479,0,0,2213.2454 -15191,18631,33918,33919,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,0,3,6.4932041,6.286521,0,1,0,-9,7,0,12,49.765072,0,0,0,40,2,3,1,2,2,2019,1,1,16,4,15,15,15,1,1,1,0,4.6947703,4.6947703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.959999,51.139999,43.650002,58.279999,6,1,1,0,0,11,4,1,1014.6667,55938.422,0,0,2798.5593 -15191,18631,33919,33918,-9,-9,1,1,1,40,1,0,0,0,2,-9,1,1,0,0,3,8.9006453,8.8852139,0,1,0,-9,7,0,-12,-50.345871,0,0,0,52,3,3,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,16.678469,16.678469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.650002,58.279999,35.959999,51.139999,6,1,1,0,0,11,4,1,1014.6667,55938.422,0,0,2798.5593 -15191,18631,33920,-9,33918,33919,3,1,1,17,2,0,0,1,2,0,7,2,0,0,4,5.9092808,6.414659,0,1,0,0,0,-9,0,-889.44641,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45.419998,-9,-9,6,1,1,0,0,11,4,1,1014.6667,55938.422,0,0,2798.5593 -15192,18632,33921,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,1,1,0,0,2,0,0,0,3,0,0,0,-9,0,-1103.2435,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,34,30,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.380001,55.369999,-9,-9,4,1,1,0,0,6,1,1,1020,18941.475,0,0,-1056.7908 -15193,18633,33922,33923,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,0,3,0,4.4526105,4.1591063,1,0,-9,6,0,-1,14.036558,0,0,0,70,2,3,3,3,-9,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3162222,0,0,56.950001,46.689999,63.650002,49.16,7,1,1,0,0,10,2,1,1066,650674.63,0,0,384.72614 -15193,18633,33923,33922,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.3472409,6.1897788,1,0,-9,6,0,1,186.98888,0,0,0,69,3,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8867335,6.5698104,0,0,63.650002,49.16,56.950001,46.689999,6,1,1,0,0,10,2,1,1066,650674.63,0,0,384.72614 -15194,18634,33924,33925,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,2,0,7.3507118,6.9889536,1,0,-9,57,0,-2,-81.990417,0,0,0,78,1,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6587167,7.2072387,0,0,48.610001,46.950001,44.610001,41.380001,6,1,1,0,0,9,3,1,988.5,859984.81,0,0,3068.0186 -15194,18634,33925,33924,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,0,3,0,7.8235636,7.6650686,1,0,-9,57,0,2,41.807468,0,0,0,76,2,2,3,3,-9,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.9112601,7.8221312,0,0,44.610001,41.380001,48.610001,46.950001,4,1,1,0,0,9,3,1,988.5,859984.81,0,0,3068.0186 -15195,18635,33926,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-960.19067,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,22,10,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.439999,29.950001,-9,-9,3,2,3,0,1,7,1,1,809,459683.38,0,0,957.92761 -15195,18636,33927,-9,-9,33926,2,1,1,30,2,0,0,0,2,-9,2,1,0,0,5,7.955564,8.2095194,0,3,0,0,0,-9,0,-1096.1675,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,40,48,15,1,0,-9,1,9.0988111,9.0988111,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.740459,3,57.360001,46.700001,-9,-9,7,2,3,0,0,7,4,1,670,-91206.406,0,0,1725.4919 -15196,18637,33928,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,1,0,6.3792305,6.5595193,3,0,0,0,-9,0,-985.88892,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2497954,0,0,27.01,53.009998,-9,-9,5,1,1,0,0,1,2,0,322,178148.48,0,0,2248.1082 -15197,18638,33929,33930,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.1130896,7.4904404,1,0,-9,8,0,4,25.973284,0,0,0,68,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1348863,0,0,46.130001,36.040001,41.34,56.619999,6,1,1,0,0,9,2,1,1285,1350442.4,0,0,869.17145 -15197,18638,33930,33929,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-4,-3.034869,0,0,0,72,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.53068912,0,0,0,41.34,56.619999,46.130001,36.040001,6,1,1,0,0,9,2,1,1285,1350442.4,0,0,869.17145 -15198,18639,33931,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1030.6605,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.299999,50.040001,-9,-9,7,1,1,0,0,4,1,0,348,203743.39,0,0,1492.0875 -15199,18640,33932,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,0,4,0,7.7588525,8.2517147,3,0,0,0,-9,0,-1054.9596,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.8357005,7.8526664,0,3,57.73,54.529999,-9,-9,7,1,1,0,0,11,3,1,528,571488.13,0,0,1462.3911 -15200,18641,33933,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,0,4,8.5755491,8.6018324,0,3,0,0,0,-9,0,-1114.9525,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,23,23,15,1,0,-9,0,27.357473,27.357473,0,0,0,0,0,0,0,0,1,1,0,2.485801,0,0,0,45.560001,60.259998,-9,-9,6,1,1,0,0,8,5,1,1787,-121309.83,0,0,1208.6692 -15201,18642,33934,-9,33936,33935,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.05426,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,542.59998,-85101.055,0,0,2470.28 -15201,18642,33935,33936,-9,-9,2,1,1,36,1,0,3,0,2,-9,2,1,0,0,3,6.9617543,6.670373,0,2,0,-9,9,0,0,19.886414,0,0,0,36,3,3,3,-9,-9,2019,2,1,11,0,16,16,15,1,0,3,0,6.2425871,6.2425871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.900002,48.23,45.970001,51.900002,4,2,3,0,0,4,2,0,542.59998,-85101.055,0,0,2470.28 -15201,18642,33936,33935,-9,-9,1,1,0,36,1,0,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,15,0,0,111.48072,0,0,1,36,2,3,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.970001,51.900002,38.900002,48.23,4,2,3,0,0,4,2,0,542.59998,-85101.055,0,0,2470.28 -15201,18642,33937,-9,33936,33935,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.8256,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,542.59998,-85101.055,0,0,2470.28 -15201,18642,33938,-9,33936,33935,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.28314,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,2,0,542.59998,-85101.055,0,0,2470.28 -15202,18643,33939,-9,33942,33944,4,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-928.06171,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,8,2,0,1041.3334,29557.389,0,0,967.26544 -15202,18643,33940,-9,33942,33944,5,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.87543,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,2,0,1041.3334,29557.389,0,0,967.26544 -15202,18643,33941,-9,33942,33944,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-810.50006,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,2,0,1041.3334,29557.389,0,0,967.26544 -15202,18643,33942,33944,-9,-9,2,1,0,37,1,0,4,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,-10,44.286148,0,0,1,47,2,4,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,8,2,0,1041.3334,29557.389,0,0,967.26544 -15202,18643,33943,-9,33942,33944,3,1,1,16,2,0,4,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1034.2692,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,-9,-9,4,2,3,0,0,8,2,0,1041.3334,29557.389,0,0,967.26544 -15202,18643,33944,33942,-9,-9,1,1,1,47,1,0,4,0,2,-9,1,1,0,0,4,5.9829311,6.1924272,0,2,0,-9,20,0,10,122.52509,0,0,0,37,2,4,3,2,2,2019,2,2,9,1,24,39,15,1,0,3,0,2.1525543,2.1525543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,8,2,0,1041.3334,29557.389,0,0,967.26544 -15203,18644,33945,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,2,1,0,0,3,8.2763968,8.1171885,0,3,0,0,0,-9,0,-999.17993,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,60,42,15,1,0,-9,0,7.1690569,7.1690569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,2,1,1,0,0,4,4,0,383,303473.56,0,0,2370.3745 -15204,18645,33946,-9,33947,-9,3,1,0,17,2,0,2,1,2,-9,7,2,0,0,3,6.8063068,6.9568977,0,4,0,-9,0,-9,0,-1048.6034,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.959999,55.639999,-9,-9,5,3,4,0,0,8,3,0,1098.6666,21850.135,0,0,2802.229 -15204,18645,33947,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,2,1,0,1,2,7.8888402,8.2731962,0,4,0,-9,0,-9,0,-1010.4877,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,44,0,15,1,0,-9,0,7.587534,7.587534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.889999,47.880001,-9,-9,5,3,4,0,0,8,3,0,1098.6666,21850.135,0,0,2802.229 -15204,18645,33948,-9,33947,-9,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1027.1613,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,3,0,1098.6666,21850.135,0,0,2802.229 -15205,18646,33949,33950,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,7.9896879,8.2415438,1,0,-9,8,0,5,17.44927,0,0,0,62,2,4,1,-9,-9,2019,3,1,10,1,0,15,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0123072,7.7953835,0,0,52,48,47.950001,56.130001,5,1,1,0,0,9,4,1,1256.5,1374117,0,0,3659.2554 -15205,18646,33950,33949,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,7.6208267,7.7025394,5.5814128,1,0,-9,25,0,-5,41.405571,0,0,0,67,3,3,3,-9,-9,2019,2,2,11,0,26,0,15,1,0,4,0,10.077838,10.077838,0,0,0,0,0,0,0,0,1,1,0,4.8597865,5.5017476,0,0,47.950001,56.130001,52,48,6,1,1,0,0,9,4,1,1256.5,1374117,0,0,3659.2554 -15206,18647,33951,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,0,4,9.2266893,9.2915974,0,3,0,0,0,-9,0,-1013.8391,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,47,42,15,1,0,-9,0,24.417082,24.417082,0,0,0,0,0,0,0,0,0,0,0,7.7992406,0,0,0,46.389999,52.950001,-9,-9,6,4,2,0,0,8,5,1,811,109334.14,0,0,3383.3469 -15207,18648,33952,33953,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,6,0,-5,0,0,0,0,68,2,3,3,2,3,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.130001,29.950001,52,47,5,1,1,0,0,13,1,1,451,295989.06,0,0,2019.259 -15207,18648,33953,33952,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,5,0,0,0,0,63,2,2,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,38.130001,29.950001,5,1,1,0,0,13,1,1,451,295989.06,0,0,2019.259 -15208,18649,33954,33956,-9,-9,1,1,0,31,1,0,2,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,13,0,0,-63.870102,0,0,1,31,3,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.82,39.82,50,57,5,2,3,0,0,2,2,1,1309.5,-109446.16,0,0,1255.778 -15208,18649,33955,-9,33954,33956,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.1001,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,2,2,1,1309.5,-109446.16,0,0,1255.778 -15208,18649,33956,33954,-9,-9,2,1,1,31,1,0,2,0,3,-9,1,1,0,0,4,7.2533221,7.1783767,0,2,0,-9,7,0,0,122.8462,0,0,0,31,2,2,3,-9,-9,2019,2,1,10,1,40,35,15,1,0,3,0,4.4316392,4.4316392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,40.82,39.82,5,2,3,0,0,2,2,1,1309.5,-109446.16,0,0,1255.778 -15208,18649,33957,-9,33954,33956,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.74176,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,2,1,1309.5,-109446.16,0,0,1255.778 -15209,18650,33958,-9,33960,33959,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1227.8866,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,10,4,1,603.66669,68027.234,0,0,1899.4713 -15209,18650,33959,33960,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,0,4,8.3120365,8.2533493,0,2,0,1,1,-9,0,39.08313,0,0,0,37,2,3,1,2,2,2019,1,2,11,2,39,43,15,1,0,1,0,11.605639,11.605639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,51.02,46.669998,55.57,6,1,1,0,1,10,4,1,603.66669,68027.234,0,0,1899.4713 -15209,18650,33960,33959,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,3,7.79146,7.8588552,0,2,0,-9,1,-9,0,-20.227749,-9,0,1,37,2,4,1,-9,-9,2019,1,1,14,2,25,0,15,1,0,1,0,12.439304,12.439304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.669998,55.57,56.470001,51.02,2,1,1,0,0,10,4,1,603.66669,68027.234,0,0,1899.4713 -15210,18651,33961,33962,-9,-9,2,1,1,45,1,0,1,0,3,-9,1,1,0,0,4,0,0,0,2,0,-9,29,0,0,0,0,0,0,45,2,4,3,3,3,2019,2,1,9,1,30,24,15,1,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51,56,49,55,5,2,3,0,1,8,1,0,1241.5,-8069.7344,0,0,840.21667 -15210,18651,33962,33961,-9,-9,1,1,0,45,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,29,0,0,0,0,0,0,45,3,4,1,3,3,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,4.5584311,3,49,55,51,56,6,2,3,0,1,8,1,0,1241.5,-8069.7344,0,0,840.21667 -15210,18652,33963,-9,33962,33961,4,1,0,24,2,0,1,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1064.5963,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,42,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.639999,53.560001,-9,-9,5,2,3,0,0,8,1,0,449,-83190.25,0,0,0 -15211,18653,33964,33965,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,2,0,7.7739296,7.861866,1,0,-9,54,0,1,6.8796868,0,0,0,76,2,3,3,2,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0187521,7.5518327,0,0,58.610001,29.959999,52.599998,52.880001,6,1,1,0,0,11,3,1,494,556022.75,0,0,3545.5859 -15211,18653,33965,33964,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,3,0,6.3715701,6.3950324,1,0,-9,54,0,-1,104.85721,0,0,0,77,1,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2363114,6.3415565,.07719557,2,52.599998,52.880001,58.610001,29.959999,6,1,1,0,0,11,3,1,494,556022.75,0,0,3545.5859 -15212,18654,33966,33967,-9,-9,1,1,0,67,1,0,0,0,2,-9,1,1,0,1,2,7.8899083,7.8897886,4.979022,1,0,-9,48,0,1,-63.373592,0,0,0,66,3,4,1,3,2,2019,1,2,11,0,0,40,15,1,0,1,0,0,0,1,0,8.98668,0,0,0,14.038978,0,1,1,0,4.8743744,4.8053055,0,0,40.099998,31.84,63.09,47.919998,4,1,1,0,0,7,4,1,421.5,836169.13,0,0,4554.9917 -15212,18654,33967,33966,-9,-9,2,1,1,66,1,0,0,0,3,-9,2,1,0,0,4,7.9808712,8.374754,5.0313101,1,0,-9,8,0,-1,-6.4599295,0,0,0,67,2,2,1,-9,-9,2019,1,1,6,0,40,38,15,1,0,1,0,8.9897213,8.9897213,0,0,0,0,0,0,0,0,1,1,0,4.311862,4.9365425,0,0,63.09,47.919998,40.099998,31.84,6,1,1,0,0,7,4,1,421.5,836169.13,0,0,4554.9917 -15212,18655,33968,-9,-9,-9,3,1,1,18,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-889.19379,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.580002,59.75,-9,-9,6,1,1,0,0,7,1,1,511,0,0,0,-226.46855 -15213,18656,33969,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,2,0,5.3559179,5.4128685,3,0,0,0,-9,0,-1058.7545,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9477305,0,0,37.16,53.830002,-9,-9,6,1,1,0,0,12,2,0,178,275699.06,0,0,1589.2432 -15214,18657,33970,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,0,3,7.307795,7.5441208,5.7558217,3,0,0,0,-9,0,-1170.8961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,22,22,15,1,0,-9,0,5.7034492,5.7034492,0,0,0,0,0,0,0,0,0,0,0,0,5.8318577,0,0,50.650002,50.099998,-9,-9,6,1,1,0,0,13,3,0,195,120304.34,0,0,1659.3411 -15215,18658,33971,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.5928884,7.5032153,0,3,0,0,0,-9,0,-1082.4095,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,36,0,15,1,0,-9,0,6.505621,6.505621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,-9,-9,3,1,1,0,1,2,3,0,1213,-165500.84,0,0,1741.7349 -15216,18659,33972,33973,-9,-9,2,1,0,75,1,0,0,0,2,-9,2,1,0,0,3,6.6420035,7.5029531,6.8500905,1,0,-9,57,0,-3,-55.199516,0,0,0,78,2,3,3,2,2,2019,2,1,16,4,7,7,15,1,1,4,0,11.848611,11.848611,0,0,0,0,0,0,0,0,1,1,0,7.1104102,6.8852634,0,0,36.369999,52.349998,53,46,3,1,1,0,0,4,3,1,543.5,434573.53,0,0,2773.3887 -15216,18659,33973,33972,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.3930202,7.7693191,1,0,-9,57,0,3,-27.233675,0,0,0,75,2,3,1,2,3,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4407959,0,0,53,46,36.369999,52.349998,5,1,1,0,0,4,3,1,543.5,434573.53,0,0,2773.3887 -15217,18660,33974,33975,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,0,4,8.6184492,8.4781008,0,1,0,-9,6,0,5,-141.16786,0,0,0,33,1,3,1,2,2,2019,1,2,9,0,50,48,15,1,0,1,0,10.921918,10.921918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,26.610001,59.470001,6,1,1,0,0,4,5,0,697.5,-48701.168,0,0,4957.5254 -15217,18660,33975,33974,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,0,3,8.8803091,8.9571772,0,1,0,-9,6,0,-5,-18.663321,0,0,1,38,2,4,1,-9,-9,2019,1,1,20,8,55,0,15,1,1,1,0,16.328001,16.328001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.610001,59.470001,51.490002,57.57,3,1,1,0,0,4,5,0,697.5,-48701.168,0,0,4957.5254 -15218,18661,33976,33977,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,0,2,0,7.2879863,7.2213984,1,0,-9,58,0,6,38.701942,0,0,0,74,3,3,3,2,3,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9223199,0,0,46.889999,35.630001,44.290001,40.27,5,1,1,0,0,8,2,1,652,322810,0,0,1377.5254 -15218,18661,33977,33976,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-6,93.688347,0,0,0,80,3,2,3,3,3,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.290001,40.27,46.889999,35.630001,5,1,1,0,0,8,2,1,652,322810,0,0,1377.5254 -15219,18662,33978,33980,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,1,2,7.3175077,7.0319681,0,2,0,-9,11,0,1,38.669163,0,0,1,32,2,3,1,3,-9,2019,1,2,12,0,20,10,15,1,0,1,0,5.7718444,5.7718444,0,0,0,0,0,0,0,7,1,1,0,0,0,9.4961205,3,40.259998,42.560001,48.77,49.110001,6,1,1,0,0,9,3,0,326.33334,129887.41,0,0,3127.7317 -15219,18662,33979,-9,33978,33980,3,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.302,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,3,0,326.33334,129887.41,0,0,3127.7317 -15219,18662,33980,33978,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,3,7.5763259,7.8280606,0,2,0,-9,11,0,-1,-103.6423,0,0,0,33,2,2,1,2,2,2019,1,1,12,1,40,0,15,1,0,1,0,5.671186,5.671186,0,0,0,0,0,0,0,2,1,1,0,0,0,4.3876038,3,48.77,49.110001,40.259998,42.560001,7,1,1,0,0,9,3,0,326.33334,129887.41,0,0,3127.7317 -15220,18663,33981,-9,33984,33982,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-887.04028,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,3,0,746,111160.97,0,0,3260.0552 -15220,18663,33982,33984,-9,-9,2,1,1,39,1,0,4,0,2,-9,2,1,0,0,4,8.3263569,7.9789281,0,2,0,-9,11,0,7,23.765049,0,0,0,32,2,3,3,3,2,2019,2,1,9,0,40,39,15,1,0,3,0,11.236204,11.236204,0,0,0,0,0,0,0,74.5,1,1,0,0,0,77.275513,3,51.830002,57.200001,54.919998,46.169998,6,1,1,0,0,5,3,0,746,111160.97,0,0,3260.0552 -15220,18663,33983,-9,33984,33982,4,1,1,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.7283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,3,0,746,111160.97,0,0,3260.0552 -15220,18663,33984,33982,-9,-9,1,1,0,32,1,0,4,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,11,0,-7,-22.956142,0,0,1,39,2,4,1,2,2,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.436169,3,54.919998,46.169998,51.830002,57.200001,5,1,1,0,0,5,3,0,746,111160.97,0,0,3260.0552 -15220,18663,33985,-9,33984,33982,5,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1126.9478,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,3,0,746,111160.97,0,0,3260.0552 -15221,18664,33986,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,1,1,0,0,3,8.7347622,8.5024014,0,3,0,0,0,-9,0,-932.26691,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,40,15,1,0,-9,0,19.678154,19.678154,0,0,0,0,0,0,0,7,1,1,0,2.1189287,0,6.2097545,3,41.23,59.349998,-9,-9,5,1,1,0,0,8,5,1,146,1961710.9,0,0,1766.109 -15222,18665,33987,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,0,1,9.0370836,9.1759462,0,3,0,0,0,-9,0,-966.56726,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,10,77,42,15,1,1,-9,0,12.31988,12.31988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.16,27.42,-9,-9,2,1,1,0,0,12,5,0,924,145299.95,0,0,3306.6292 -15223,18666,33988,-9,33989,33990,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-947.60474,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,8,3,0,1515.25,1403068.1,0,0,4038.5522 -15223,18666,33989,33990,-9,-9,1,1,0,49,1,0,4,0,2,-9,2,1,0,0,4,7.3608446,7.8251576,0,2,0,-9,20,0,-2,58.517548,0,0,0,51,1,4,1,2,2,2019,1,2,2,0,16,20,15,1,0,1,0,14.297115,14.297115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,53,55,6,3,4,0,0,8,3,0,1515.25,1403068.1,0,0,4038.5522 -15223,18666,33990,33989,-9,-9,2,1,1,51,1,0,4,0,1,-9,2,1,0,0,4,8.3129644,8.4595194,0,2,0,-9,8,0,2,23.248053,0,0,0,49,2,4,1,-9,-9,2019,1,1,9,1,45,40,15,1,0,1,0,10.283944,10.283944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,57.16,56.150002,6,3,4,0,0,8,3,0,1515.25,1403068.1,0,0,4038.5522 -15223,18666,33991,-9,33989,33990,3,1,0,16,2,0,4,1,3,-9,7,2,0,0,3,6.2600999,6.460979,4.315568,2,0,0,0,-9,0,-1028.8119,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2742352,0,0,0,54.23,49.599998,-9,-9,6,3,4,0,0,8,3,0,1515.25,1403068.1,0,0,4038.5522 -15224,18667,33992,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,0,3,9.4847136,9.2347803,0,3,0,0,0,-9,0,-995.02368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,11,60,48,15,1,1,-9,0,19.609299,19.609299,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.188602,3,8.9300003,66.599998,-9,-9,1,1,1,0,0,8,5,1,350,201391.53,0,0,2674.2571 -15225,18668,33993,33994,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,0,2,0,6.0960975,5.9745979,1,0,-9,9,0,14,24.67712,0,0,0,52,3,2,3,2,2,2019,4,2,10,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.907392,6.2550874,0,0,45.060001,44.400002,54,37.619999,6,1,1,0,0,2,2,0,564.5,896537.25,0,0,1157.6855 -15225,18668,33994,33993,-9,-9,2,1,0,52,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,9,0,-14,75.026077,0,0,0,66,1,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,37.619999,45.060001,44.400002,6,1,1,0,0,2,2,0,564.5,896537.25,0,0,1157.6855 -15226,18669,33995,33996,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,3,0,4.6529617,4.6375294,1,0,-9,6,0,-2,-38.051685,0,0,0,71,2,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5522127,5.0109034,0,0,57.330002,53.459999,54.369999,44.27,6,1,1,0,0,2,2,1,366,273473.13,0,0,2293.637 -15226,18669,33996,33995,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,2,0,6.3850145,6.5669689,1,0,-9,6,0,2,-14.781444,0,0,0,69,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9477534,6.40095,0,0,54.369999,44.27,57.330002,53.459999,6,1,1,0,0,2,2,1,366,273473.13,0,0,2293.637 -15227,18670,33997,33998,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,0,2,8.4385309,8.5800943,0,2,0,-9,6,0,8,64.021255,0,0,0,49,1,4,1,3,3,2019,1,2,12,3,36,0,15,1,0,1,0,15.806828,15.806828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.34,41.240002,52.830002,48.43,2,1,1,0,0,8,4,1,677.33331,479866.5,0,0,3274.8064 -15227,18670,33998,33997,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,8.0040188,8.0808649,0,2,0,-9,6,0,-8,74.406044,0,0,0,57,2,2,1,3,3,2019,1,1,7,0,7,0,15,1,0,1,0,57.389587,57.389587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,48.43,49.34,41.240002,6,1,1,0,0,8,4,1,677.33331,479866.5,0,0,3274.8064 -15227,18670,33999,-9,33998,33997,4,1,0,17,2,0,1,1,2,0,7,2,0,0,4,2.8604567,3.2614648,0,2,0,0,0,-9,0,-899.22772,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.490002,60.869999,-9,-9,6,1,1,0,0,8,4,1,677.33331,479866.5,0,0,3274.8064 -15227,18671,34000,-9,33998,33997,5,1,1,26,2,0,1,0,2,-9,2,1,0,0,4,6.9810028,6.9764466,0,3,0,0,0,-9,0,-964.49774,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,16,16,15,1,0,-9,1,7.3970265,7.3970265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,8,2,1,181,147146.31,0,0,383.60687 -15227,18672,34001,-9,33998,33997,3,1,0,22,2,0,1,1,2,-9,7,2,0,0,4,6.8814154,7.232408,0,3,0,0,0,-9,0,-1042.6544,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.299999,60.77,-9,-9,5,1,1,0,0,8,2,1,385,-44548.254,0,0,-24.397074 -15228,18673,34002,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,4,0,7.7460122,7.6401434,3,0,0,0,-9,0,-966.63116,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.0768223,7.6558633,0,0,63.240002,47.919998,-9,-9,7,1,1,0,0,1,3,1,488,424889.06,0,0,2079.9934 -15229,18674,34003,34004,-9,-9,2,1,1,55,1,0,1,0,1,-9,1,1,0,0,4,8.0629482,7.8683167,0,2,0,-9,8,0,6,-34.900414,0,0,0,49,2,4,1,-9,-9,2019,1,1,9,1,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8724623,0,0,0,53,54,50,54,6,1,1,0,0,9,4,1,670.66669,3279453.8,0,0,3285.0693 -15229,18674,34004,34003,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,7.6139259,7.6195936,0,2,0,-9,28,0,-6,104.45267,0,0,0,55,1,4,1,2,2,2019,1,2,10,1,30,30,15,1,0,1,0,10.372141,10.372141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,53,54,6,1,1,0,0,9,4,1,670.66669,3279453.8,0,0,3285.0693 -15229,18674,34005,-9,34004,34003,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-966.22083,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,670.66669,3279453.8,0,0,3285.0693 -15230,18675,34006,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,0,3,0,5.8437653,5.8638124,3,0,0,0,-9,0,-1050.5703,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9529219,6.1293921,0,0,53.16,51.259998,-9,-9,7,1,1,0,0,9,2,1,790,171966.17,0,0,1069.4352 -15231,18676,34007,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,0,3,0,7.7098999,7.7748384,3,0,0,0,-9,0,-1013.1616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7891717,7.9273758,0,0,63.02,35.77,-9,-9,2,1,1,0,0,8,3,1,1692,621140.25,0,0,789.7215 -15231,18677,34008,-9,-9,-9,2,1,1,59,3,0,0,0,3,-9,2,1,0,0,2,8.2350388,8.1882067,5.8681092,3,0,0,0,-9,0,-1015.9606,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,48,47,15,1,0,-9,0,7.2830453,7.2830453,0,0,0,0,0,0,0,0,1,1,0,0,5.9667077,0,0,64.199997,18.27,-9,-9,5,1,1,0,0,8,4,1,868,156210.89,0,0,1687.217 -15232,18678,34009,34010,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,1,6.9104748,7.2246714,0,1,0,-9,5,0,-2,168.69203,0,0,0,56,1,2,1,3,1,2019,1,1,22,10,17,16,15,1,1,1,0,8.4336557,8.4336557,0,0,0,0,0,0,0,14.5,0,0,0,0,0,15.19949,3,30.99,31.950001,37.93,36.970001,2,1,1,0,0,6,3,1,750.5,519658.69,0,0,2080.3259 -15232,18678,34010,34009,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,0,2,7.8819728,7.7194629,0,1,0,-9,5,0,2,-71.850243,0,0,0,54,2,1,1,3,1,2019,1,2,22,10,37,37,15,1,1,1,0,8.3778801,8.3778801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.93,36.970001,30.99,31.950001,3,1,1,0,0,6,3,1,750.5,519658.69,0,0,2080.3259 -15233,18679,34011,-9,34012,34014,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.01245,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,8,5,1,832.25,2194514.8,0,0,9660.1387 -15233,18679,34012,34014,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,9.4302273,9.4776125,0,2,0,-9,16,0,-2,-19.250269,0,0,1,43,1,4,1,2,1,2019,1,2,8,0,38,40,15,1,0,1,0,30.317816,30.317816,0,0,0,0,0,0,0,0,0,0,0,8.3676119,0,0,0,48.869999,58.549999,54.200001,57.490002,6,2,3,0,0,8,5,1,832.25,2194514.8,0,0,9660.1387 -15233,18679,34013,-9,34012,34014,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1048.3397,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,8,5,1,832.25,2194514.8,0,0,9660.1387 -15233,18679,34014,34012,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.392293,9.7068386,0,2,0,-9,16,0,2,-23.606472,0,0,0,41,1,4,1,1,1,2019,1,1,10,0,55,46,15,1,0,1,0,31.625628,31.625628,0,0,0,0,0,0,0,0,0,0,0,2.9659145,0,0,0,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,8,5,1,832.25,2194514.8,0,0,9660.1387 -15234,18680,34015,-9,34017,34018,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-993.97357,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,8,3,1,633.75,420528.19,0,0,2245.561 -15234,18680,34016,-9,-9,34018,5,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-991.81555,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,8,3,1,633.75,420528.19,0,0,2245.561 -15234,18680,34017,34018,-9,-9,1,1,0,55,1,0,1,0,2,-9,1,1,0,0,4,7.3735828,7.4705243,0,2,0,-9,14,0,1,28.72444,0,0,0,54,2,3,1,2,3,2019,1,2,11,0,40,40,15,1,0,1,0,5.4429841,5.4429841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.380001,45.540001,49,50,5,2,3,0,0,8,3,1,633.75,420528.19,0,0,2245.561 -15234,18680,34018,34017,-9,-9,2,1,1,54,1,0,1,0,2,-9,1,1,0,0,3,7.6274762,8.0401468,0,2,0,-9,10,0,-1,30.667313,0,0,0,55,2,4,1,-9,-9,2019,1,1,11,1,60,65,15,1,0,1,0,3.5308456,3.5308456,0,0,0,0,0,0,0,0,1,1,0,5.9875054,0,0,0,49,50,36.380001,45.540001,5,2,3,0,0,8,3,1,633.75,420528.19,0,0,2245.561 -15235,18681,34019,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,3,7.0572987,7.6273303,6.5344367,3,0,0,0,-9,0,-1033.4672,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,24,24,15,1,0,-9,0,5.5049562,5.5049562,0,0,0,0,0,0,0,0,1,1,0,0,6.3626423,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,12,3,1,208,-80614.438,0,0,1217.5614 -15236,18682,34020,-9,34022,34021,1,1,0,54,2,0,0,0,2,-9,2,1,0,0,3,7.6345735,7.7628813,0,3,0,0,0,-9,0,-979.81738,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,36,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,21.272278,3,45.689999,53.27,-9,-9,4,1,1,0,0,6,3,1,3114,23201.299,0,0,1061.781 -15236,18683,34021,34022,-9,-9,3,1,1,87,1,0,0,0,2,-9,4,3,0,0,2,0,2.3356538,2.723634,1,0,-9,5,0,2,32.229946,0,0,0,85,3,1,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,2.2492595,1.9347167,1,44.599998,39.540001,48.369999,17.5,5,1,1,0,0,6,2,1,1757,333620.88,0,0,1428.8193 -15236,18683,34022,34021,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,5,0,-2,-48.670673,0,0,0,87,2,2,3,-9,-9,2019,4,3,15,4,0,0,15,4,1,4,0,0,0,1,.27804801,0,0,0,0,18.93087,0,1,1,0,0,0,0,0,48.369999,17.5,44.599998,39.540001,3,1,1,0,0,6,2,1,1757,333620.88,0,0,1428.8193 -15237,18684,34023,34024,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-3,44.070564,0,0,0,73,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,10.741696,3,59.139999,52.5,57.330002,53.459999,5,1,1,0,0,11,2,1,195.5,327738.59,0,0,1505.3904 -15237,18684,34024,34023,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,7.2193394,7.1217771,1,0,-9,8,0,3,16.590658,0,0,0,70,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.4744568,7.5880632,0,0,57.330002,53.459999,59.139999,52.5,7,1,1,0,0,11,2,1,195.5,327738.59,0,0,1505.3904 -15238,18685,34025,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,4,3,0,1,4,0,6.5312414,6.3198762,3,0,0,0,-9,0,-1022.4184,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.90274,6.1110964,0,3,46.029999,46.220001,-9,-9,4,1,1,0,0,7,2,1,595,0,0,0,1265.08 -15239,18686,34026,34027,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,68,0,-2,-.57865256,0,0,0,89,3,1,3,2,2,2019,4,1,12,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.15632,1,55.400002,23.24,39.369999,21.77,6,1,1,0,0,8,2,1,357,270273.66,0,0,2118.0693 -15239,18686,34027,34026,-9,-9,1,1,1,89,1,0,0,0,3,-9,4,3,0,1,1,0,6.3472552,6.51335,1,0,-9,68,0,2,28.135292,0,0,0,87,3,1,3,2,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,1,13.160945,0,0,0,0,196.88326,0,1,1,0,3.7227685,6.6855721,0,0,39.369999,21.77,55.400002,23.24,1,1,1,0,0,8,2,1,357,270273.66,0,0,2118.0693 -15240,18687,34028,-9,34029,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1074.2198,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,7,1,1,244,33387.102,0,0,1703.8892 -15240,18687,34029,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,6,3,0,1,2,0,4.0092177,4.2022157,4,0,0,0,-9,0,-957.05542,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.8896821,0,119.73537,3,31.49,43.990002,-9,-9,2,1,1,0,0,7,1,1,244,33387.102,0,0,1703.8892 -15241,18688,34030,-9,34032,34031,6,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.34,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,1,0,816,55568.828,0,0,2215.9307 -15241,18688,34031,34032,-9,-9,2,1,1,55,1,0,1,0,3,-9,8,3,1,1,3,0,0,0,2,0,-9,25,0,12,0,0,0,0,43,3,4,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,49,55,5,2,3,0,0,8,1,0,816,55568.828,0,0,2215.9307 -15241,18688,34032,34031,-9,-9,1,1,0,43,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,25,0,-12,0,0,0,1,55,3,3,3,3,3,2019,4,2,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,130.45621,1,49,55,50,49,5,2,3,0,0,8,1,0,816,55568.828,0,0,2215.9307 -15241,18689,34033,-9,34032,34031,3,1,0,23,2,0,1,0,2,-9,2,1,0,0,4,8.2406807,8.2551193,0,3,0,0,0,-9,0,-1022.3944,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,37,41,15,1,0,-9,1,11.140505,11.140505,0,0,0,0,0,0,0,7,1,1,0,0,0,4.260004,3,46,58,-9,-9,5,2,3,0,0,8,4,0,112,43654.445,0,0,1407.8085 -15241,18690,34034,-9,34032,34031,4,1,0,20,2,0,1,0,2,0,7,2,0,0,4,3.6095014,3.5688806,0,3,0,0,0,-9,0,-925.4375,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,26,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,20.278442,3,46,59,-9,-9,5,2,3,0,0,8,2,0,293,-189936.78,0,0,-680.39984 -15241,18691,34035,-9,34032,34031,5,1,0,18,2,0,1,1,2,0,7,2,0,0,4,6.4480743,6.4296069,0,3,0,0,0,-9,0,-959.06195,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.153614,3,46,59,-9,-9,5,2,3,0,0,8,2,0,356,0,0,0,1289.3954 -15242,18692,34036,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,0,4,5.6835198,5.3814774,0,4,0,0,0,-9,0,-1066.4927,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,21,16,15,1,0,-9,0,1.0833347,1.0833347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,2,0,1081.3334,-28207.709,0,0,1308.028 -15242,18692,34037,-9,34036,-9,2,1,1,16,2,0,2,0,2,-9,3,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1004.5281,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,4,2,0,1081.3334,-28207.709,0,0,1308.028 -15242,18692,34038,-9,34036,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-925.36395,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,2,0,1081.3334,-28207.709,0,0,1308.028 -15243,18693,34039,34040,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,2,0,7.6232963,7.7316833,1,0,-9,6,0,-1,1.5216639,0,0,0,73,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2979031,0,0,57.900002,30.58,43.099998,23.610001,6,1,1,0,0,13,2,1,346.5,445565.5,0,0,1603.0776 -15243,18693,34040,34039,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,6,0,1,5.2754836,0,0,0,72,2,2,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.099998,23.610001,57.900002,30.58,5,1,1,0,0,13,2,1,346.5,445565.5,0,0,1603.0776 -15244,18694,34041,34042,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,52,0,5,-28.679331,0,0,0,74,3,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.6821742,3,58,51,39.619999,41.48,7,1,1,0,0,10,2,0,547,504026.69,0,0,1406.8158 -15244,18694,34042,34041,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,2,0,7.0191011,7.1109681,1,0,-9,52,0,-5,-23.844847,0,0,0,79,2,5,3,3,3,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9669442,0,0,39.619999,41.48,58,51,6,1,1,0,0,10,2,0,547,504026.69,0,0,1406.8158 -15245,18695,34043,-9,-9,-9,1,1,1,56,3,0,1,0,2,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-818.82971,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.220001,37.91,-9,-9,6,1,1,0,0,10,1,1,840,-20813.455,0,0,0 -15246,18696,34044,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-957.0434,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.860001,38.68,-9,-9,4,1,1,0,0,9,1,0,1320,-71390.547,0,0,1646.5604 -15247,18697,34045,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,4,3,0,0,3,0,7.3689923,7.2104979,3,0,0,0,-9,0,-940.66571,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9829512,0,0,62.990002,41.32,-9,-9,6,3,4,0,0,9,3,1,2317,748934,0,0,124.31747 -15247,18698,34046,-9,-9,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,0,3,5.5718985,5.1709523,0,3,0,0,0,-9,0,-874.17419,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,9,0,15,1,0,-9,0,2.155266,2.155266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.419998,57.439999,-9,-9,4,3,4,0,0,9,2,1,722,-29772.461,0,0,-10.675168 -15248,18699,34047,34050,-9,-9,2,1,0,43,1,0,4,0,2,-9,2,1,0,1,4,6.8476162,6.6096201,0,2,0,-9,20,0,1,11.84209,0,0,1,42,2,4,1,2,2,2019,1,1,10,1,16,16,15,1,0,1,0,6.5561614,6.5561614,0,0,0,0,0,0,0,71.5,1,1,0,0,0,80.307877,3,50,55,51,56,6,1,1,0,0,4,3,1,800.66669,41423.934,0,0,4589.812 -15248,18699,34048,-9,34047,34050,4,1,1,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1233.8076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,1,800.66669,41423.934,0,0,4589.812 -15248,18699,34049,-9,34047,34050,5,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.8816,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,800.66669,41423.934,0,0,4589.812 -15248,18699,34050,34047,-9,-9,1,1,1,42,1,0,4,0,2,-9,2,1,0,0,4,8.692338,8.5027895,0,2,0,-9,20,0,-1,78.150093,0,0,0,43,2,4,1,3,3,2019,1,2,9,1,40,55,15,1,0,1,0,14.751081,14.751081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,50,55,6,1,1,0,0,4,3,1,800.66669,41423.934,0,0,4589.812 -15248,18699,34051,-9,34047,34050,6,1,1,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.9213,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,800.66669,41423.934,0,0,4589.812 -15248,18699,34052,-9,34047,34050,3,1,0,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1014.5588,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,3,1,800.66669,41423.934,0,0,4589.812 -15249,18700,34053,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,0,2,0,5.8883152,5.433217,3,0,0,0,-9,0,-1045.5933,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2374237,5.6609187,0,0,35.150002,41.240002,-9,-9,6,1,1,0,0,6,2,1,1392,119881.5,0,0,181.1749 -15250,18701,34054,34055,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,4,8.4528971,8.4140663,0,2,0,-9,3,0,-2,17.617887,0,0,0,49,1,4,1,2,1,2019,1,1,8,0,28,32,15,1,0,1,0,21.032351,21.032351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.259998,59.43,52,55,6,1,1,0,0,8,5,1,365,1225892,0,0,4381.9468 -15250,18701,34055,34054,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,8.8295059,8.8079853,0,2,0,-9,3,0,2,-61.024391,0,0,0,47,2,4,1,2,1,2019,1,2,9,1,35,40,15,1,0,1,0,23.40983,23.40983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,44.259998,59.43,6,4,2,0,0,8,5,1,365,1225892,0,0,4381.9468 -15250,18702,34056,-9,34054,34055,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,4,8.161726,8.2850542,0,3,0,0,0,-9,0,-919.09332,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,35,35,15,1,0,-9,1,14.740924,14.740924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,8,4,1,1091,182217.92,0,0,1560.6351 -15251,18703,34057,-9,-9,-9,3,1,1,25,2,0,4,0,2,-9,2,1,0,0,4,7.9792576,7.8902335,0,3,0,-9,0,-9,0,-1057.1558,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,1,32,0,15,1,0,-9,1,9.2828684,9.2828684,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.150002,55.389999,-9,-9,3,3,4,0,1,8,3,1,1474,199666.56,0,0,201.5742 -15252,18704,34058,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,1,1,0,0,2,8.2178926,8.4978657,0,3,0,0,0,-9,0,-1107.6049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,14,15,15,1,0,-9,0,30.225695,30.225695,0,0,0,0,0,0,0,0,1,1,0,7.9319024,0,0,0,55.529999,41.02,-9,-9,6,1,1,0,0,10,4,1,304,1241069.5,0,0,1668.5762 -15253,18705,34059,34061,-9,-9,5,1,1,29,1,1,4,0,2,-9,2,1,0,0,5,8.5818329,8.1353483,0,2,0,-9,3,0,0,-39.488842,0,1,0,38,3,4,1,-9,-9,2019,1,1,4,0,43,48,15,1,0,1,0,11.467378,11.467378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,60.869999,42.099998,7,1,1,0,0,1,3,0,845.66669,369406.88,0,0,3132.9971 -15253,18705,34060,-9,34061,34059,3,1,0,15,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.21075,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,3,0,845.66669,369406.88,0,0,3132.9971 -15253,18705,34061,34059,-9,-9,1,1,0,38,1,1,4,0,3,-9,2,1,0,0,4,6.6199937,6.2496405,0,2,0,-9,3,0,9,4.5392942,0,0,1,29,2,5,1,-9,-9,2019,1,5,7,0,12,8,15,1,0,1,0,5.9296441,5.9296441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.869999,42.099998,60.02,56.419998,6,1,1,0,0,1,3,0,845.66669,369406.88,0,0,3132.9971 -15253,18705,34062,-9,34061,34059,2,1,0,17,2,1,4,0,2,1,3,3,0,0,4,6.7119713,6.9969749,0,2,0,0,0,-9,0,-1057.3087,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.73,63.099998,-9,-9,7,1,1,1,0,1,3,0,845.66669,369406.88,0,0,3132.9971 -15253,18705,34063,-9,34061,34059,4,1,1,5,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.08783,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,0,845.66669,369406.88,0,0,3132.9971 -15253,18705,34064,-9,34061,34059,6,1,0,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1041.6156,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,3,0,845.66669,369406.88,0,0,3132.9971 -15254,18706,34065,-9,34067,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1109.0205,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,2,1,1037.3334,61383.422,0,0,1742.8036 -15254,18706,34066,-9,34067,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1148.2179,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,2,1,1037.3334,61383.422,0,0,1742.8036 -15254,18706,34067,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,0,4,7.0763741,7.030993,0,4,0,0,0,-9,0,-1083.4996,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,22,27,15,1,0,-9,0,7.4853859,7.4853859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.299999,52.91,-9,-9,6,1,1,0,0,10,2,1,1037.3334,61383.422,0,0,1742.8036 -15255,18707,34068,-9,34070,34069,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.799,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,524.5,312051.84,0,0,3181.7231 -15255,18707,34069,34070,-9,-9,1,1,1,34,1,0,2,0,1,-9,2,1,0,0,4,9.6303043,9.3981276,0,2,0,-9,11,0,-4,38.656357,0,0,0,38,1,4,3,2,2,2019,2,2,11,1,48,50,15,1,0,3,0,28.339989,28.339989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.990002,57.049999,53.959999,50.73,5,1,1,0,0,9,5,1,524.5,312051.84,0,0,3181.7231 -15255,18707,34070,34069,-9,-9,2,1,0,38,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,11,0,4,-85.889778,0,0,1,34,1,4,1,2,2,2019,3,1,10,0,0,19,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.959999,50.73,45.990002,57.049999,6,1,1,0,0,9,5,1,524.5,312051.84,0,0,3181.7231 -15255,18707,34071,-9,34070,34069,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.93518,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,524.5,312051.84,0,0,3181.7231 -15256,18708,34072,34073,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.4287004,6.8336697,1,0,-9,56,0,-5,1.2271004,0,0,0,81,1,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2824397,6.5276103,0,0,45.32,61.529999,47.73,46.650002,6,1,1,0,0,12,4,1,628,948648.13,0,0,3810.5027 -15256,18708,34073,34072,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,0,4,0,8.5310926,8.4184179,1,0,-9,56,0,5,-15.955033,0,0,0,76,2,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,6.6918936,0,0,0,0,0,1,1,0,6.7323203,8.8911371,0,0,47.73,46.650002,45.32,61.529999,6,1,1,0,0,12,4,1,628,948648.13,0,0,3810.5027 -15257,18709,34074,-9,34076,34075,5,1,0,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-887.85828,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,7,2,3,0,0,5,5,1,708.66669,130026.96,0,0,4720.2002 -15257,18709,34075,34076,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,0,5,8.8469725,9.1782627,0,2,0,-9,24,0,2,-46.93544,0,0,0,45,2,4,1,-9,-9,2019,1,1,0,0,80,30,15,1,0,1,0,9.0930939,9.0930939,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,40.830002,59.68,4,2,3,0,0,5,5,1,708.66669,130026.96,0,0,4720.2002 -15257,18709,34076,34075,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.7318835,7.3281507,0,2,0,-9,24,0,-2,-122.99556,0,0,0,47,2,5,1,3,2,2019,1,2,12,0,27,30,15,1,0,1,0,6.6793628,6.6793628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.830002,59.68,62.389999,56.709999,6,2,3,0,0,5,5,1,708.66669,130026.96,0,0,4720.2002 -15258,18710,34077,34080,-9,-9,2,1,0,33,1,1,2,0,1,-9,5,1,0,0,5,8.3931875,8.4404745,0,2,0,-9,6,0,-2,-83.323273,0,0,1,35,2,3,1,3,3,2019,1,1,14,2,48,42,15,1,0,1,0,9.7853107,9.7853107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,61.509998,43.84,58.369999,5,1,1,0,0,4,4,1,622.5,558692.56,0,0,3639.7668 -15258,18710,34078,-9,34077,34080,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-971.27429,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,4,1,622.5,558692.56,0,0,3639.7668 -15258,18710,34079,-9,34077,34080,3,1,1,11,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1106.5145,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,622.5,558692.56,0,0,3639.7668 -15258,18710,34080,34077,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,3,8.2228003,8.2177401,0,2,0,-9,6,0,2,71.122673,0,0,0,33,1,5,1,2,3,2019,1,2,13,3,37,37,15,1,0,1,0,11.89574,11.89574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.369999,45.810001,61.509998,6,1,1,0,0,4,4,1,622.5,558692.56,0,0,3639.7668 -15259,18711,34081,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,0,3,7.8074598,7.305624,0,3,0,0,0,-9,0,-1014.2695,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,25,30,15,1,0,-9,0,8.3385801,8.3385801,0,0,0,0,0,0,0,0,0,0,0,2.7664051,0,0,0,34,61.209999,-9,-9,5,1,1,0,0,12,3,1,217,-10265.824,0,0,168.47894 -15260,18712,34082,-9,34085,-9,1,1,0,31,2,0,1,0,1,-9,2,1,0,0,5,8.2546997,8.5168657,0,3,0,-9,0,-9,0,-1121.1956,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,85,0,15,1,0,-9,1,5.4970617,5.4970617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.009998,57.73,-9,-9,6,2,3,0,0,8,4,1,377,23072.58,0,0,1129.0411 -15260,18713,34083,-9,34085,-9,2,1,0,36,2,0,1,0,1,-9,1,1,0,0,4,7.7989302,7.1959157,0,3,0,-9,0,-9,0,-871.99823,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,60,0,15,1,0,-9,1,3.400717,3.400717,0,0,0,0,0,0,0,0,1,1,0,5.0008674,0,0,0,52.09,54.259998,-9,-9,6,2,3,0,0,8,3,1,886,67912.789,0,0,1029.2156 -15260,18714,34084,-9,34085,-9,3,1,0,32,2,0,1,0,3,-9,6,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-949.53992,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.110001,42.150002,-9,-9,5,2,3,0,0,8,1,1,839,-5865.9585,0,0,0 -15260,18715,34085,-9,-9,-9,4,1,0,67,3,0,1,0,1,-9,4,3,0,0,2,0,6.5781994,6.7229557,4,0,-9,0,-9,0,-1087.251,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,1,0,0,4.4570527,3.7116389,0,0,0,1,1,0,6.4129696,5.1944871,0,0,42.349998,36.310001,-9,-9,6,2,3,0,0,8,2,1,451,19776.443,0,0,1253.5933 -15260,18716,34086,-9,34087,-9,6,1,0,20,2,0,1,1,1,-9,7,2,0,0,5,0,8.5798016,8.8392105,3,0,-9,0,-9,0,-900.77411,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6017914,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,8,5,1,2138,-157104.3,0,0,1733.4131 -15260,18717,34087,-9,34085,-9,7,1,0,42,3,0,1,0,1,-9,6,3,0,0,5,0,0,0,3,0,-9,0,-9,0,-933.388,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.290001,42.139999,-9,-9,7,2,3,0,0,8,1,1,650.5,31006.299,0,0,0 -15260,18717,34088,-9,34087,-9,5,1,1,17,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,3,0,-9,0,-9,0,-998.51715,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,8,1,1,650.5,31006.299,0,0,0 -15261,18718,34089,-9,34090,-9,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,6.8891673,6.7119441,0,4,0,0,0,-9,0,-979.8009,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,1,32,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,9,3,1,437.5,438133,0,0,3039.2773 -15261,18718,34090,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,2,1,0,0,4,7.6383276,7.8955793,6.5239897,4,0,0,0,-9,0,-913.1181,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,27,35,15,1,0,-9,0,10.092755,10.092755,0,0,0,0,0,0,0,0,1,1,0,6.9705939,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,9,3,1,437.5,438133,0,0,3039.2773 -15261,18719,34091,-9,34090,-9,2,1,0,18,2,0,2,1,2,-9,7,2,0,0,4,7.0926051,7.0110617,0,3,0,0,0,-9,0,-965.70782,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.35,59.880001,-9,-9,4,1,1,0,0,9,3,1,179,-55003.129,0,0,1318.153 -15262,18720,34092,34093,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,0,5,7.4101634,7.5478058,0,2,0,-9,15,0,7,-97.274277,0,0,0,37,2,5,3,3,3,2019,2,2,7,0,30,30,15,1,0,3,0,5.750041,5.750041,0,0,0,0,0,0,0,7,1,1,0,0,0,3.8076563,1,60.02,56.419998,52.509998,51.549999,6,4,2,0,0,9,2,1,849.66669,581549.06,0,0,1930.9133 -15262,18720,34093,34092,-9,-9,2,1,0,37,1,0,1,0,2,-9,8,3,1,1,5,0,0,0,2,0,-9,6,0,-7,1.5518037,0,0,1,44,2,5,1,-9,-9,2019,3,1,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.509998,51.549999,60.02,56.419998,6,2,3,0,0,9,2,1,849.66669,581549.06,0,0,1930.9133 -15262,18720,34094,-9,34093,34092,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.0126,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,9,2,1,849.66669,581549.06,0,0,1930.9133 -15263,18721,34095,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,0,4,0,7.1278381,7.5892653,3,0,-9,0,-9,0,-872.48853,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6962252,7.2036357,1.0110754,3,60.779999,32.509998,-9,-9,7,1,1,0,0,4,3,1,202,612303.88,0,0,734.52112 -15264,18722,34096,34097,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,5,7.9517431,7.9551363,0,1,0,-9,41,0,-1,4.2007165,0,0,0,55,2,3,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,7.397099,7.397099,0,0,0,0,0,0,0,0,0,0,0,3.9943092,0,0,0,50.540001,62.09,60.290001,52.110001,6,1,1,0,0,2,3,1,382,157319.14,0,0,1969.7004 -15264,18722,34097,34096,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,6.7888837,7.1248031,0,1,0,-9,40,0,1,82.405182,0,0,0,54,3,5,1,-9,-9,2019,1,1,6,0,18,18,15,1,0,1,0,8.5876884,8.5876884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,50.540001,62.09,6,1,1,0,0,2,3,1,382,157319.14,0,0,1969.7004 -15265,18723,34098,34099,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.7692051,8.7953415,0,2,0,-9,9,0,-1,-23.366266,0,0,1,43,3,3,1,3,3,2019,1,1,11,1,27,27,15,1,0,1,0,23.605444,23.605444,0,0,0,0,0,0,0,7,1,1,0,0,0,10.006132,3,49,56,34.73,61.029999,5,1,1,0,0,8,4,1,763.5,379477.66,0,0,4915.0742 -15265,18723,34099,34098,-9,-9,1,1,1,43,1,0,2,0,3,-9,2,1,0,0,3,8.4645138,8.6430016,0,2,0,-9,24,0,1,67.761452,0,0,0,42,1,4,1,2,2,2019,1,2,24,12,40,36,15,1,1,1,0,16.332394,16.332394,0,0,0,0,0,0,0,2,1,1,0,1.0793649,0,10.159601,3,34.73,61.029999,49,56,6,2,3,0,0,8,4,1,763.5,379477.66,0,0,4915.0742 -15266,18724,34100,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,0,3,0,7.9726262,8.0043716,3,0,0,0,-9,0,-921.11493,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6910644,7.4027886,0,0,50.669998,50.080002,-9,-9,6,1,1,0,0,7,3,1,77,867215,0,0,1963.3752 -15267,18725,34101,-9,-9,-9,1,1,1,84,2,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1025.1777,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.7495284,0,0,1,1,0,1.4209082,0,0,0,47,18.379999,-9,-9,6,1,1,0,0,11,1,1,4106,50151.488,0,0,-706.91827 -15268,18726,34102,-9,34104,34103,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.9256,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,1,355.33334,691907.88,0,0,2359.678 -15268,18726,34103,34104,-9,-9,1,1,1,46,1,0,2,0,1,-9,1,1,0,0,3,7.6185856,7.6290865,0,2,0,-9,13,0,15,112.56236,0,0,0,31,2,4,1,2,2,2019,1,2,6,0,16,15,15,1,0,1,0,19.295681,19.295681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,46.779999,59.380001,6,2,3,0,0,8,3,1,355.33334,691907.88,0,0,2359.678 -15268,18726,34104,34103,-9,-9,2,1,0,31,1,0,2,0,2,-9,1,1,0,0,4,7.3862343,7.6192355,0,2,0,-9,13,0,-15,-86.639847,0,0,1,46,1,3,1,2,2,2019,1,1,11,1,60,17,15,1,0,1,0,3.8088412,3.8088412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.779999,59.380001,54.959999,53.169998,6,2,3,0,0,8,3,1,355.33334,691907.88,0,0,2359.678 -15269,18727,34105,34106,-9,-9,1,1,0,31,1,0,0,0,2,-9,8,3,1,1,4,0,0,0,1,0,-9,8,0,1,31.492184,0,0,1,30,2,4,1,3,-9,2019,3,2,19,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,12.79,61.68,26.290001,61.16,4,1,1,0,0,5,3,0,383,342941.72,0,0,2414.759 -15269,18727,34106,34105,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,0,4,7.7547693,7.9500136,0,1,0,-9,8,0,-1,-60.793915,-9,0,0,31,2,4,3,-9,-9,2019,2,1,17,5,40,0,15,1,1,3,0,7.5222402,7.5222402,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.290001,61.16,12.79,61.68,3,1,1,0,1,5,3,0,383,342941.72,0,0,2414.759 -15270,18728,34107,34108,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,0,3,0,7.1469092,6.980505,1,0,-9,7,0,2,107.7305,0,0,0,62,2,1,3,3,2,2019,4,1,13,1,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9502873,7.5188622,0,0,26.76,58.139999,21.43,21.57,4,1,1,0,0,10,3,1,504.5,722109.94,0,0,1975.917 -15270,18728,34108,34107,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,1,1,0,6.451169,6.476306,1,0,-9,7,0,-2,85.123741,0,0,0,64,1,3,3,2,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2466955,6.6154618,0,0,21.43,21.57,26.76,58.139999,1,1,1,0,0,10,3,1,504.5,722109.94,0,0,1975.917 -15271,18729,34109,34110,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,0,6.161859,6.6269135,1,0,-9,43,0,1,45.264297,0,0,0,66,1,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4147291,0,0,60.02,56.419998,58.669998,39.119999,6,1,1,0,0,6,3,1,670.5,1234660,0,0,3074.9336 -15271,18729,34110,34109,-9,-9,1,1,0,66,1,0,0,0,1,-9,2,1,0,0,3,0,7.2645478,7.9392161,1,0,-9,43,0,-1,18.147547,0,0,0,67,2,5,3,3,3,2019,2,2,7,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4806557,0,0,58.669998,39.119999,60.02,56.419998,6,1,1,0,0,6,3,1,670.5,1234660,0,0,3074.9336 -15272,18730,34111,-9,-9,-9,1,1,0,79,3,0,0,0,1,-9,4,3,0,0,3,0,7.3497429,7.3121581,3,0,-9,0,1,0,-962.66235,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,3.3010538,0,0,3.4287283,8.1462736,23.921131,0,1,1,0,2.3801835,7.4965644,0,0,39.740002,47.82,-9,-9,3,1,1,0,0,10,3,1,830,218009.19,0,0,3137.7695 -15273,18731,34112,-9,-9,-9,1,1,1,35,3,0,0,0,2,-9,2,1,0,0,5,8.2081413,7.9004345,0,3,0,0,0,-9,0,-971.93567,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,48,48,15,1,0,-9,0,10.530607,10.530607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,4,4,0,100,10844.313,0,0,2103.9521 -15274,18732,34113,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1126.7325,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,43.43,-9,-9,7,1,1,0,0,6,1,1,994,-101621.15,0,0,2113.3931 -15275,18733,34114,-9,34115,-9,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1039.7268,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,4,0,268.33334,305522.84,0,0,2456.5044 -15275,18733,34115,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,2,1,0,0,4,8.6862373,8.7211504,0,4,0,-9,0,-9,0,-1048.6649,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,30,0,15,1,0,-9,0,17.75733,17.75733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,-9,-9,7,3,4,0,0,8,4,0,268.33334,305522.84,0,0,2456.5044 -15275,18733,34116,-9,34115,-9,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,4,0,-9,0,-9,0,-1018.516,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.49258953,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,8,4,0,268.33334,305522.84,0,0,2456.5044 -15275,18734,34117,-9,34115,-9,2,1,0,21,2,0,2,1,2,-9,7,2,0,0,4,7.8712535,7.5884738,0,3,0,-9,0,-9,0,-1012.4497,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,8,3,0,1563,-267353.88,0,0,430.58649 -15276,18735,34118,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1081.9614,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.52,21.129999,-9,-9,4,1,1,0,0,11,1,0,422,226761.75,0,0,1482.7252 -15277,18736,34119,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,0,2,8.2345304,7.9791312,0,4,0,0,0,-9,0,-1001.1575,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,1,59,46,15,1,0,-9,0,8.6142092,8.6142092,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.200001,51.880001,-9,-9,4,1,1,0,0,4,3,0,1215,135025.64,0,0,1702.8491 -15277,18736,34120,-9,34119,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-989.21204,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,4,3,0,1215,135025.64,0,0,1702.8491 -15277,18737,34121,-9,34119,-9,2,1,1,20,2,0,1,0,2,-9,2,1,0,0,3,8.2109394,7.9975858,0,3,0,0,0,-9,0,-1007.0273,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,12,38,24,15,1,1,-9,1,10.444398,10.444398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.219999,58.490002,-9,-9,3,1,1,0,0,4,4,0,1844,123023.95,0,0,391.63007 -15278,18738,34122,34123,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.3834276,8.6291018,0,1,0,-9,32,0,5,94.578392,0,0,0,53,3,3,1,3,3,2019,1,1,11,0,42,52,15,1,0,1,0,14.287642,14.287642,0,0,0,0,0,0,0,0,0,0,0,3.0334008,0,0,0,36.43,60.139999,58.330002,39.490002,5,1,1,0,0,6,4,1,508,77211.867,0,0,3219.8247 -15278,18738,34123,34122,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,7.3741865,7.4728494,0,1,0,-9,32,0,-5,208.74159,0,0,0,58,2,3,1,3,-9,2019,1,2,8,1,35,32,15,1,0,1,0,5.2131166,5.2131166,0,0,0,0,0,0,0,2,0,0,0,2.2884843,0,0,3,58.330002,39.490002,36.43,60.139999,5,1,1,0,0,6,4,1,508,77211.867,0,0,3219.8247 -15279,18739,34124,34125,-9,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,0,3,0,0,0,1,0,-9,35,0,-1,-52.589012,0,0,0,55,1,4,3,2,2,2019,2,2,26,12,0,3,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5829797,0,0,3,36.139999,36.099998,59.290001,49.68,3,1,1,0,0,4,5,1,419.5,4489502,0,0,9603.1689 -15279,18739,34125,34124,-9,-9,2,1,1,55,1,0,0,0,1,-9,97,3,0,0,4,9.62146,9.9186897,8.4956684,1,0,-9,35,0,1,48.038208,0,0,0,54,1,3,1,1,1,2019,3,1,6,0,10,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.2939695,8.718873,7.6319685,1,59.290001,49.68,36.139999,36.099998,6,1,1,0,0,4,5,1,419.5,4489502,0,0,9603.1689 -15279,18740,34126,-9,34124,34125,3,1,0,21,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-923.50812,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,28,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5380049,0,0,0,22.959999,67.830002,-9,-9,4,1,1,0,0,4,1,1,4707,-32405.996,0,0,-1148.3596 -15280,18741,34127,34129,-9,-9,2,1,0,56,1,0,2,0,3,-9,2,1,0,0,4,5.9698868,5.9624219,4.0214391,2,0,-9,21,0,1,77.73156,0,0,0,55,1,4,1,3,3,2019,1,1,7,0,4,5,15,1,0,1,0,12.455354,12.455354,0,0,0,0,0,0,0,0,1,1,0,4.288414,4.2295184,0,0,57.16,56.150002,54.77,55.869999,7,3,4,0,0,9,4,1,1354.25,668045.19,0,0,4829.2832 -15280,18741,34128,-9,34127,34129,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.2353,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,9,4,1,1354.25,668045.19,0,0,4829.2832 -15280,18741,34129,34127,-9,-9,1,1,1,55,1,0,2,0,1,-9,2,1,0,0,4,9.1446075,8.6846952,0,2,0,-9,22,0,-1,-4.6527023,0,0,0,56,3,4,1,2,3,2019,1,2,9,0,40,40,15,1,0,1,0,21.764191,21.764191,0,0,0,0,0,0,0,0,1,1,0,7.3501539,0,0,0,54.77,55.869999,57.16,56.150002,6,1,1,0,0,9,4,1,1354.25,668045.19,0,0,4829.2832 -15280,18741,34130,-9,34127,34129,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-792.21655,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,9,4,1,1354.25,668045.19,0,0,4829.2832 -15281,18742,34131,34132,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.514266,8.1700611,0,1,0,-9,6,0,-11,50.950161,0,0,0,55,2,4,1,2,2,2019,1,2,20,8,50,42,15,1,1,1,0,10.047077,10.047077,0,0,0,0,0,0,0,0,0,0,0,6.7349658,0,0,0,35.040001,41.009998,59.290001,49.68,3,1,1,0,0,12,5,1,586.5,124124.04,0,0,3088.2793 -15281,18742,34132,34131,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.1659012,8.1413994,0,1,0,-9,6,0,11,29.644585,0,0,0,44,2,2,1,-9,-9,2019,1,1,11,0,38,38,15,1,0,1,0,9.9514647,9.9514647,0,0,0,0,0,0,0,0,0,0,0,6.5589633,0,0,0,59.290001,49.68,35.040001,41.009998,5,1,1,0,0,12,5,1,586.5,124124.04,0,0,3088.2793 -15282,18743,34133,34134,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,8.8239107,8.7563896,0,1,0,-9,7,0,-3,21.153086,0,0,0,57,2,4,3,-9,-9,2019,2,1,9,1,30,30,15,1,0,3,0,28.703743,28.703743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,50.540001,55.040001,6,1,1,0,0,8,5,1,525,443997.38,0,0,8524.2998 -15282,18743,34134,34133,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,0,4,0,0,0,1,0,-9,27,0,3,38.328686,0,0,0,54,2,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.5938292,0,0,0,50.540001,55.040001,53,54,7,1,1,0,0,8,5,1,525,443997.38,0,0,8524.2998 -15282,18744,34135,-9,34134,34133,3,1,1,21,2,0,0,0,2,1,2,1,0,0,4,7.6161957,8.1521606,0,3,0,0,0,-9,0,-972.06403,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,9.2542105,9.2542105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,8,4,1,2828,-11853.836,0,0,1214.1908 -15282,18745,34136,-9,34134,34133,4,1,1,20,2,0,0,1,2,0,7,2,0,0,4,5.2996888,5.3677034,0,3,0,0,0,-9,0,-953.52313,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6749644,0,0,0,48,59,-9,-9,5,1,1,0,0,8,2,1,353,87334.188,0,0,635.67413 -15283,18746,34137,34138,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,32,0,-4,-13.192526,0,0,0,77,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0509863,0,0,0,60.119999,54.799999,57.16,56.150002,7,1,1,0,0,4,3,1,2622.5,676857.25,0,0,2995.4653 -15283,18746,34138,34137,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,0,4,0,7.9014521,7.8651652,1,0,-9,32,0,4,-163.86082,0,0,0,73,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4330864,7.8287845,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,4,3,1,2622.5,676857.25,0,0,2995.4653 -15284,18747,34139,34141,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,3,9.5258293,9.4972715,0,2,0,-9,10,0,0,25.560286,0,0,0,42,1,4,1,-9,-9,2019,1,1,12,1,42,43,15,1,0,1,0,42.858337,42.858337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.369999,61.5,51.830002,57.200001,6,1,1,0,0,7,5,1,763.75,431944.03,0,0,8760.3389 -15284,18747,34140,-9,34141,34139,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-834.02985,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,763.75,431944.03,0,0,8760.3389 -15284,18747,34141,34139,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,7.2175021,7.288198,0,2,0,-9,10,0,0,-88.516373,0,0,1,42,1,3,1,1,1,2019,1,2,10,0,30,30,15,1,0,1,0,5.6205387,5.6205387,0,0,0,0,0,0,0,0,0,0,0,9.1627283,0,0,0,51.830002,57.200001,36.369999,61.5,6,1,1,0,0,7,5,1,763.75,431944.03,0,0,8760.3389 -15284,18747,34142,-9,34141,34139,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.553,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,763.75,431944.03,0,0,8760.3389 -15285,18748,34143,34144,-9,-9,2,1,1,55,1,0,0,0,3,-9,8,3,1,1,1,8.1759758,8.0234442,0,1,0,-9,8,0,-19,109.8164,0,0,0,74,3,3,3,3,3,2019,4,1,13,1,52,40,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8744929,0,0,0,45.450001,25.85,53.389999,49.669998,4,1,1,0,1,11,3,1,315.5,1248464,0,0,2456.0068 -15285,18748,34144,34143,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,.19995227,1,0,-9,8,0,19,67.785416,0,0,0,55,3,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,1,0,7.276114,0,0,0,0,74.5,1,1,0,0,.3325671,79.238655,1,53.389999,49.669998,45.450001,25.85,5,1,1,0,1,11,3,1,315.5,1248464,0,0,2456.0068 -15286,18749,34145,34146,-9,-9,2,1,1,57,1,0,0,0,1,-9,1,1,0,0,3,8.1751642,7.9654517,0,1,0,-9,7,0,8,66.276375,0,0,0,49,1,4,1,-9,-9,2019,1,1,9,0,32,40,15,1,0,1,0,13.054984,13.054984,0,0,0,0,0,0,0,0,1,1,0,2.4603007,0,0,0,54.369999,54.799999,35.73,63.099998,6,1,1,0,0,2,4,1,652,338338.13,0,0,4028.3542 -15286,18749,34146,34145,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,8.6524401,8.3800259,0,1,0,-9,13,0,-8,-54.314003,0,0,0,57,1,3,1,3,2,2019,1,2,19,8,32,40,15,1,1,1,0,14.894207,14.894207,0,0,0,0,0,0,0,0,1,1,0,7.2990184,0,0,0,35.73,63.099998,54.369999,54.799999,5,1,1,0,0,2,4,1,652,338338.13,0,0,4028.3542 -15286,18750,34147,-9,34146,34145,3,1,0,27,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-956.6192,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0470467,0,0,0,47,57,-9,-9,5,1,1,1,0,2,1,1,469,24276.893,0,0,653.28497 -15286,18751,34148,-9,34146,34145,4,1,1,29,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1018.7399,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7045007,0,0,0,50,58,-9,-9,5,1,1,0,0,2,1,1,857,141830.22,0,0,-95.797287 -15287,18752,34149,34152,-9,-9,1,1,0,54,1,0,2,0,2,-9,2,1,0,0,3,7.3871007,7.4043589,0,2,0,-9,37,0,0,-58.400112,0,0,0,63,2,4,1,2,2,2019,1,2,6,0,25,22,15,1,0,1,0,9.3244953,9.3244953,0,0,0,0,0,0,0,0,1,1,0,1.422965,0,0,0,46.669998,55.57,34.73,59.759998,4,1,1,0,0,10,3,1,1060.5,1505099.1,0,0,3518.6111 -15287,18752,34150,-9,34149,34152,5,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-951.46875,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,3,1,1060.5,1505099.1,0,0,3518.6111 -15287,18752,34151,-9,34149,34152,4,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,5.0909762,4.7901497,0,2,0,0,0,-9,0,-994.57306,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,10,3,1,1060.5,1505099.1,0,0,3518.6111 -15287,18752,34152,34149,-9,-9,2,1,1,63,1,0,2,0,2,-9,2,1,0,0,4,7.6518164,7.5588727,0,2,0,-9,37,0,9,99.55014,0,0,0,54,2,3,1,-9,2,2019,1,1,12,0,24,24,15,1,0,1,0,8.8526278,8.8526278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.73,59.759998,46.669998,55.57,4,1,1,0,0,10,3,1,1060.5,1505099.1,0,0,3518.6111 -15287,18753,34153,-9,34149,34152,3,1,1,19,2,0,2,0,2,-9,7,2,0,0,4,4.3614979,4.5593009,0,3,0,0,0,-9,0,-947.56757,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,16,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,10,2,1,184,102488.47,0,0,-111.02467 -15288,18754,34154,-9,34155,34156,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.53796,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,6,3,0,1187,947346.13,0,0,2610.6135 -15288,18754,34155,34156,-9,-9,1,1,0,42,1,0,1,0,3,-9,2,1,0,0,4,7.5077529,7.3584166,0,2,0,-9,11,0,-22,34.935448,0,0,1,64,3,4,1,3,3,2019,1,2,6,0,26,15,15,1,0,1,0,6.3838682,6.3838682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,2,3,0,0,6,3,0,1187,947346.13,0,0,2610.6135 -15288,18754,34156,34155,-9,-9,2,1,1,64,1,0,1,0,3,-9,1,1,0,0,4,8.1277351,8.1335449,0,2,0,-9,7,0,22,23.208599,0,0,0,42,3,4,1,-9,-9,2019,1,1,8,0,50,56,15,1,0,1,0,6.7366295,6.7366295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,6,3,0,1187,947346.13,0,0,2610.6135 -15289,18755,34157,-9,-9,-9,1,1,0,43,2,0,1,0,1,-9,2,1,0,0,3,8.3399649,8.9781132,6.9781938,4,0,0,0,-9,0,-936.23737,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,48,79,15,1,0,-9,0,11.847092,11.847092,0,0,0,0,0,0,0,0,1,1,0,7.5515122,0,0,0,42.639999,49.299999,-9,-9,4,1,1,0,1,5,5,1,197.5,103787.43,0,0,2971.4133 -15289,18755,34158,-9,34157,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1076.5547,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,5,5,1,197.5,103787.43,0,0,2971.4133 -15290,18756,34159,34160,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,3,7.8919249,7.942307,0,1,0,-9,30,0,-4,-128.39885,0,0,0,60,1,3,1,3,1,2019,1,2,13,1,20,0,15,1,0,1,0,24.978024,24.978024,0,0,0,0,0,0,0,0,1,1,0,8.1899643,0,0,0,57.330002,53.459999,51,49,6,2,3,0,0,7,4,1,3981,2127390.5,0,0,3715.3389 -15290,18756,34160,34159,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,0,3,7.1773677,7.2711897,0,1,0,-9,30,0,4,-108.51242,0,0,0,56,1,3,1,3,1,2019,1,1,10,1,35,30,15,1,0,1,0,4.8545098,4.8545098,0,0,0,0,0,0,0,0,1,1,0,3.4679592,0,0,0,51,49,57.330002,53.459999,5,2,3,0,0,7,4,1,3981,2127390.5,0,0,3715.3389 -15290,18757,34161,-9,34159,34160,3,1,0,20,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-973.76202,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.619999,55.66,-9,-9,5,2,3,0,0,7,1,1,657,-104602.6,0,0,0 -15291,18758,34162,34163,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,0,2,0,7.2907391,7.4536538,1,0,-9,46,0,0,-119.31866,0,0,0,65,2,2,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1838145,0,0,56.48,36.43,52.240002,50.75,6,1,1,0,0,12,2,1,484.5,156702.97,0,0,2371.2395 -15291,18758,34163,34162,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,2,0,6.1181922,5.9913673,1,0,-9,8,0,0,41.281788,0,0,0,65,2,2,3,-9,-9,2019,2,1,6,0,35,50,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8397694,6.2340627,0,0,52.240002,50.75,56.48,36.43,7,1,1,0,0,12,2,1,484.5,156702.97,0,0,2371.2395 -15291,18759,34164,-9,34162,34163,3,1,1,38,2,0,0,0,2,-9,2,1,0,0,4,8.2308655,8.4348764,0,3,0,0,0,-9,0,-1004.151,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,45,0,15,1,0,-9,1,9.7065315,9.7065315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,12,4,1,479,-179972.95,0,0,1569.3789 -15292,18760,34165,34166,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,4,8.0334549,8.4268675,7.279211,1,0,-9,37,0,-1,.45390579,0,0,0,61,1,4,1,1,1,2019,1,2,8,0,8,8,15,1,0,1,0,48.558495,48.558495,0,0,0,0,0,0,0,14.5,0,0,0,1.307074,7.5611248,2.9156747,3,53.810001,53.560001,58.150002,52.91,6,1,1,0,0,12,5,1,653.5,4605209.5,0,0,8559.7598 -15292,18760,34166,34165,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,0,4,9.0610523,10.035964,8.5419207,1,0,-9,37,0,1,-15.127951,0,0,0,60,1,4,1,2,3,2019,1,1,6,0,35,12,15,1,0,1,0,27.886904,27.886904,0,0,0,0,0,0,0,2,0,0,0,2.4809783,8.9725351,2.952924,3,58.150002,52.91,53.810001,53.560001,6,1,1,0,0,12,5,1,653.5,4605209.5,0,0,8559.7598 -15293,18761,34167,34168,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,0,4,8.4063025,8.1739416,0,2,0,-9,10,0,1,87.216591,0,0,1,43,1,4,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,14.499338,14.499338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,48.869999,58.549999,6,1,1,0,0,9,5,1,1004,1115386.6,0,0,4464.793 -15293,18761,34168,34167,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,0,4,9.1177883,9.1783943,0,2,0,-9,10,0,-1,-36.088181,-9,0,0,44,1,4,1,-9,2,2019,1,2,17,6,40,0,15,1,1,1,0,31.537291,31.537291,0,0,0,0,0,0,0,0,0,0,0,5.7117424,0,0,0,48.869999,58.549999,48.869999,58.549999,6,1,1,0,0,9,5,1,1004,1115386.6,0,0,4464.793 -15293,18761,34169,-9,34167,34168,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-787.43988,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,1004,1115386.6,0,0,4464.793 -15293,18761,34170,-9,34167,34168,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1201.7809,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1004,1115386.6,0,0,4464.793 -15294,18762,34171,34172,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.5465646,7.2632222,1,0,-9,8,0,2,-39.771374,-9,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9876773,7.5744839,0,0,49.040001,55.860001,45.41,52.060001,7,1,1,0,0,8,3,0,521,1058529.5,0,0,3243.6973 -15294,18762,34172,34171,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,5.1755104,5.3658929,1,0,-9,8,0,-2,-129.83693,0,0,0,78,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0395265,0,0,45.41,52.060001,49.040001,55.860001,6,1,1,0,0,8,3,0,521,1058529.5,0,0,3243.6973 -15295,18763,34173,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,0,2,8.7067919,8.3707733,0,3,0,0,0,-9,0,-1043.8938,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,43,43,15,1,0,-9,0,16.304504,16.304504,0,0,0,0,0,0,0,0,0,0,0,2.9892094,0,0,0,53.970001,40.34,-9,-9,5,1,1,0,0,10,5,1,712,-27134.744,0,0,3035.7578 -15295,18764,34174,-9,-9,-9,2,1,0,42,2,0,0,0,2,-9,2,1,0,0,4,8.3973856,8.5837374,0,3,0,0,0,-9,0,-1024.9144,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,6,1,1,0,0,10,5,1,720,-77676.039,0,0,2399.0273 -15296,18765,34175,-9,34176,34177,3,1,0,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1022.1008,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,57.73,-9,-9,6,1,1,0,0,9,3,1,587.66669,378994.97,0,0,2474.6313 -15296,18765,34176,34177,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,5,8.1040001,8.2063694,0,2,0,-9,21,0,-29,.30190653,0,0,1,69,2,4,3,3,2,2019,2,2,9,0,30,24,15,1,0,4,0,13.615647,13.615647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,54.790001,55.860001,6,1,1,0,0,9,3,1,587.66669,378994.97,0,0,2474.6313 -15296,18765,34177,34176,-9,-9,2,1,1,69,1,0,1,0,2,-9,4,3,0,0,4,5.8424706,6.924118,7.0348654,2,0,-9,21,0,29,20.97872,0,0,0,40,2,5,1,3,-9,2019,3,1,8,0,1,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7688675,6.8384495,0,0,54.790001,55.860001,54.099998,59.110001,6,1,1,0,0,9,3,1,587.66669,378994.97,0,0,2474.6313 -15297,18766,34178,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,5.5715523,5.784822,3,0,0,0,-9,0,-1033.2738,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.0513062,5.8115306,0,0,57.540001,42.360001,-9,-9,6,1,1,0,0,5,2,0,50,134453.09,0,0,1564.0039 -15298,18767,34179,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,5.4793668,5.5498457,3,0,0,0,-9,0,-848.41956,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5758696,0,0,51.470001,53.169998,-9,-9,7,1,1,0,0,12,2,1,4841,-186187.03,0,0,150.55835 -15299,18768,34180,34181,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.0536709,8.1040049,0,1,0,-9,6,0,0,70.099739,0,0,0,57,1,3,1,3,3,2019,1,2,13,1,35,35,15,1,0,1,0,11.144492,11.144492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.139999,53.970001,54.549999,49.25,4,1,1,0,0,2,5,1,384,412030.63,0,0,2543.8137 -15299,18768,34181,34180,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,3,8.2766972,8.2451916,0,1,0,-9,6,0,0,-62.508076,0,0,0,57,2,3,1,2,1,2019,1,1,9,0,38,38,15,1,0,1,0,12.347619,12.347619,0,0,0,0,0,0,0,7,1,1,0,0,0,16.426088,3,54.549999,49.25,50.139999,53.970001,3,1,1,0,0,2,5,1,384,412030.63,0,0,2543.8137 -15299,18769,34182,-9,-9,34183,4,1,1,13,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-942.50421,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,4,1,916,147994.19,0,0,801.03918 -15299,18769,34183,-9,34181,34180,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,8.2961521,8.6467752,0,3,0,0,0,-9,0,-1031.5741,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,38,37,15,1,0,-9,1,15.687689,15.687689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.049999,54.52,-9,-9,5,1,1,0,0,2,4,1,916,147994.19,0,0,801.03918 -15300,18770,34184,34185,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.7062254,9.2511587,0,1,0,-9,7,0,-2,-21.76582,0,1,1,29,1,4,1,-9,-9,2019,1,1,6,0,48,83,15,1,0,1,0,14.279262,14.279262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.970001,47.630001,57.16,56.150002,6,1,1,0,0,5,5,1,735.5,51201.992,0,0,4030.0684 -15300,18770,34185,34184,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,8.2195148,8.1990194,0,1,0,-9,7,0,2,3.2381752,0,1,0,27,1,3,1,-9,-9,2019,1,2,6,0,44,42,15,1,0,1,0,8.5396318,8.5396318,0,0,0,0,0,0,0,0,0,0,0,3.9248235,0,0,0,57.16,56.150002,54.970001,47.630001,7,1,1,0,0,5,5,1,735.5,51201.992,0,0,4030.0684 -15301,18771,34186,34187,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,0,3,7.7251029,7.7952318,0,2,0,-9,8,0,10,-106.35558,0,0,0,28,2,2,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,5.9155154,5.9155154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,36.93,45.740002,5,1,1,0,0,12,3,0,1858.6666,-55629.449,0,0,1159.308 -15301,18771,34187,34186,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,0,2,6.7230163,6.6620173,0,2,0,-9,8,0,-10,-34.955303,0,1,1,38,2,3,1,3,-9,2019,1,2,16,4,16,30,15,1,1,1,0,7.703124,7.703124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,45.740002,52,54.509998,4,1,1,0,0,12,3,0,1858.6666,-55629.449,0,0,1159.308 -15301,18771,34188,-9,34187,34186,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-962.31573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,0,1858.6666,-55629.449,0,0,1159.308 -15302,18772,34189,-9,-9,-9,1,1,1,55,3,0,1,0,2,-9,8,3,1,1,2,0,0,0,4,0,0,0,-9,0,-1081.6125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.389999,40.889999,-9,-9,3,1,1,0,1,13,1,0,523,82434.938,0,0,2345.6045 -15302,18772,34190,-9,-9,34189,2,1,1,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-987.88391,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,13,1,0,523,82434.938,0,0,2345.6045 -15303,18773,34191,-9,34193,34192,4,1,1,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1108.9844,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,12,5,1,2664.3333,402299.84,0,0,5999.7485 -15303,18773,34192,34193,-9,-9,2,1,1,56,1,0,1,0,1,-9,4,3,0,0,4,0,9.1294403,9.0907898,2,0,-9,2,0,0,-27.868488,0,0,0,56,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7171307,9.1089182,0,0,41.299999,60.77,53.619999,50.759998,6,1,1,0,0,12,5,1,2664.3333,402299.84,0,0,5999.7485 -15303,18773,34193,34192,-9,-9,1,1,0,56,1,0,1,0,2,-9,6,3,0,0,4,0,8.0482798,7.5094504,2,0,-9,2,0,0,31.574793,0,0,0,56,1,4,3,2,2,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0566673,7.7702937,0,0,53.619999,50.759998,41.299999,60.77,7,1,1,0,0,12,5,1,2664.3333,402299.84,0,0,5999.7485 -15303,18774,34194,-9,34193,34192,3,1,0,25,2,0,1,0,2,-9,97,3,0,0,5,7.3917475,7.9902425,0,3,0,0,0,-9,0,-1073.9747,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,16,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0757401,0,0,0,51.529999,57.009998,-9,-9,1,1,1,0,0,12,3,1,864,137487.86,0,0,1066.0547 -15304,18775,34195,-9,34197,34196,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1033.5944,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,945.66669,-17634.514,0,0,2116.96 -15304,18775,34196,34197,-9,-9,1,1,1,26,1,1,1,0,2,-9,2,1,0,0,5,8.0881071,7.7748942,0,2,0,-9,3,0,1,77.954308,0,1,0,25,2,5,1,2,2,2019,1,2,3,0,50,50,15,1,0,1,0,7.6909699,7.6909699,0,0,0,0,0,0,0,2,1,1,0,0,0,9.4084044,3,53.509998,60.740002,57.060001,57.759998,7,1,1,0,0,2,3,1,945.66669,-17634.514,0,0,2116.96 -15304,18775,34197,34196,-9,-9,2,1,0,25,1,1,1,0,2,-9,5,1,0,0,5,6.9509053,6.9626946,0,2,0,-9,3,0,-1,33.55838,0,1,1,26,2,5,1,-9,-9,2019,1,1,7,0,12,37,15,1,0,1,0,10.569141,10.569141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,53.509998,60.740002,7,1,1,0,0,2,3,1,945.66669,-17634.514,0,0,2116.96 -15305,18776,34198,34199,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.439538,8.2568045,0,1,0,-9,2,0,0,-116.37247,0,0,0,52,1,4,1,2,3,2019,1,1,8,0,39,39,15,1,0,1,0,16.621525,16.621525,0,0,0,0,0,0,0,2,0,0,0,0,0,4.3470693,3,57.16,56.150002,57.73,54.529999,6,1,1,0,0,13,5,1,2435,1148968.8,0,0,5544.3203 -15305,18776,34199,34198,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,9.045476,9.4153318,0,1,0,-9,2,0,0,16.79365,0,0,0,52,1,4,1,3,3,2019,1,2,6,0,45,45,15,1,0,1,0,31.367825,31.367825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.529999,57.16,56.150002,6,1,1,0,0,13,5,1,2435,1148968.8,0,0,5544.3203 -15305,18777,34200,-9,34198,34199,3,1,1,22,2,0,0,0,2,1,2,1,0,0,4,7.591742,7.6381292,0,3,0,0,0,-9,0,-926.93079,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,40,0,15,1,0,-9,1,7.5247946,7.5247946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,13,3,1,364,27881.58,0,0,1966.8269 -15305,18778,34201,-9,34198,34199,4,1,1,19,2,0,0,1,2,0,7,2,0,0,4,6.0780902,6.1709862,0,3,0,0,0,-9,0,-945.54199,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,13,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,13,2,1,233,-239755.53,0,0,460.80261 -15306,18779,34202,34203,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.3526421,8.2380505,0,1,0,-9,32,0,-5,91.535744,0,0,0,60,1,3,3,2,3,2019,2,1,6,0,38,38,15,1,0,4,0,10.526467,10.526467,0,0,0,0,0,0,0,0,0,0,0,3.5362041,0,0,0,58.150002,52.91,46.57,44.73,6,1,1,0,0,13,5,1,1237,1763907,0,0,3839.4204 -15306,18779,34203,34202,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,0,3,0,8.1824694,8.1917543,1,0,-9,32,0,5,-110.71231,0,0,0,55,2,4,1,3,3,2019,3,2,11,0,0,45,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9705701,8.1709957,0,0,46.57,44.73,58.150002,52.91,6,1,1,0,0,13,5,1,1237,1763907,0,0,3839.4204 -15307,18780,34204,-9,34206,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1094.0974,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,1,0,484.66666,114605.1,0,0,1724.2761 -15307,18780,34205,-9,34206,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-955.2312,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,2,1,0,484.66666,114605.1,0,0,1724.2761 -15307,18780,34206,-9,-9,-9,1,1,0,31,2,0,2,0,3,-9,6,3,0,1,3,0,0,0,4,0,0,0,-9,0,-1065.4832,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.098282,3,36.919998,51.869999,-9,-9,4,1,1,0,0,2,1,0,484.66666,114605.1,0,0,1724.2761 -15308,18781,34207,34208,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,9.1507387,9.5244379,0,2,0,-9,26,0,2,38.65826,0,0,0,47,2,4,3,2,2,2019,2,1,11,0,40,36,15,1,0,3,0,31.172211,31.172211,0,0,0,0,0,0,0,42,1,1,0,0,0,35.241367,3,54.200001,57.490002,57.16,56.150002,6,1,1,0,0,12,5,1,382,441808.88,0,0,4018.5723 -15308,18781,34208,34207,-9,-9,1,1,0,47,1,0,1,0,2,-9,6,3,0,1,4,0,0,0,2,0,-9,26,0,-2,-22.513201,0,0,0,49,1,4,1,1,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.71457,3,57.16,56.150002,54.200001,57.490002,6,1,1,0,0,12,5,1,382,441808.88,0,0,4018.5723 -15308,18782,34209,-9,34208,34207,3,1,1,21,2,0,1,0,2,0,7,2,0,0,4,6.3890662,6.3701644,0,3,0,0,0,-9,0,-932.91577,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,12,2,1,430,21553.57,0,0,-188.23303 -15308,18783,34210,-9,34208,34207,4,1,1,19,2,0,1,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-976.36182,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2793088,0,0,0,48,59,-9,-9,5,1,1,0,0,12,1,1,505,-41973.148,0,0,-774.59088 -15308,18784,34211,-9,34208,34207,5,1,1,19,2,0,1,0,2,-9,7,2,0,0,3,6.9290266,6.9357357,0,3,0,0,0,-9,0,-1055.9769,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,20,21,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0769894,0,0,0,25.200001,58.790001,-9,-9,3,1,1,0,0,12,2,1,3584,0,0,0,758.01581 -15309,18785,34212,34213,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,8.0015516,7.7434235,1,0,-9,10,0,-7,50.518173,0,0,0,73,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1659298,0,0,46.549999,58.299999,56.939999,43.990002,6,2,3,0,0,8,4,1,1269.5,2326107.5,0,0,4783.6289 -15309,18785,34213,34212,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,0,3,0,7.5473552,7.9519668,1,0,-9,10,0,7,-26.316511,0,0,0,66,1,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8291736,7.8260589,0,0,56.939999,43.990002,46.549999,58.299999,6,2,3,0,0,8,4,1,1269.5,2326107.5,0,0,4783.6289 -15310,18786,34214,34215,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,2,7.4128194,7.0957522,0,1,0,-9,1,-9,-12,197.48294,-9,0,0,74,2,3,3,2,1,2019,2,1,12,1,20,0,15,1,0,4,0,5.8251033,5.8251033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.860001,31.98,60.299999,46.580002,6,1,1,0,0,4,2,1,404,308006.56,0,0,1638.5847 -15310,18786,34215,34214,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,6.5555849,6.6692119,1,0,-9,1,-9,12,16.659355,-9,0,0,62,2,2,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.869493,0,0,60.299999,46.580002,42.860001,31.98,6,1,1,0,0,4,2,1,404,308006.56,0,0,1638.5847 -15311,18787,34216,34217,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,0,4,9.1419315,8.8209982,0,1,0,-9,6,0,1,.23453981,0,0,0,44,1,4,1,2,2,2019,1,3,8,0,38,37,15,1,0,1,0,21.238377,21.238377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,48.869999,58.549999,6,1,1,0,0,13,5,1,445.5,121303.95,0,0,4497.8018 -15311,18787,34217,34216,-9,-9,3,1,1,44,1,0,0,0,1,-9,2,1,0,0,4,8.6500072,8.656189,0,1,0,-9,6,0,-1,25.102812,0,0,0,45,1,4,1,-9,-9,2019,1,1,10,0,50,45,15,1,0,1,0,11.429275,11.429275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.869999,58.549999,54.200001,57.490002,5,1,1,0,0,13,5,1,445.5,121303.95,0,0,4497.8018 -15311,18788,34218,-9,34216,34217,2,1,0,19,2,0,0,0,2,1,2,1,0,0,4,7.7875319,7.5073442,0,3,0,0,0,-9,0,-1033.1948,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,31,0,15,1,0,-9,1,7.4073334,7.4073334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.48,60.970001,-9,-9,6,1,1,0,0,13,3,1,381,-45270.52,0,0,550.99469 -15312,18789,34219,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,4,3,0,0,4,0,8.1861458,8.7433224,3,0,0,0,-9,0,-1001.9584,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,8.178834,6.7892022,26.696684,3,58.150002,52.91,-9,-9,7,1,1,0,0,9,4,1,343,1135882.4,0,0,2657.7478 -15313,18790,34220,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,0,3,7.8988357,7.7246423,0,3,0,0,0,-9,0,-1007.7478,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,2,42,38,15,1,0,-9,0,7.7006855,7.7006855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.650002,57.360001,-9,-9,3,1,1,0,0,13,4,1,551,-75677.047,0,0,682.17499 -15313,18791,34221,-9,-9,-9,2,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.8896112,8.9184036,0,3,0,0,0,-9,0,-967.41052,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,78,0,15,1,0,-9,0,12.625887,12.625887,0,0,0,0,0,0,0,0,0,0,0,3.8124485,0,0,0,45.91,59.889999,-9,-9,5,1,1,0,0,13,5,1,152,54988.195,0,0,1050.3665 -15314,18792,34222,34223,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,2,8.6446142,8.6588659,0,1,0,-9,9,0,1,-28.390104,0,0,0,56,2,3,1,3,3,2019,1,1,8,0,50,50,15,1,0,1,0,11.107261,11.107261,0,0,0,0,0,0,0,0,0,0,0,5.575695,0,0,0,47.32,36.639999,50,49,5,1,1,0,0,13,4,1,1336,697668.25,0,0,2746.4246 -15314,18792,34223,34222,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,3,6.3924069,6.7245297,0,1,0,-9,9,0,-1,100.62047,0,0,0,57,2,2,1,-9,-9,2019,1,2,11,1,40,60,15,1,0,1,0,2.3880551,2.3880551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,47.32,36.639999,5,4,1,0,0,13,4,1,1336,697668.25,0,0,2746.4246 -15314,18793,34224,-9,34222,34223,3,1,0,21,2,0,0,1,2,0,7,2,0,0,4,7.663013,7.7503419,0,3,0,0,0,-9,0,-1077.5184,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5592194,0,0,0,45,58,-9,-9,5,1,1,0,0,13,3,1,371,135700.2,0,0,2334.1519 -15315,18794,34225,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,1,1,0,0,3,7.1290946,7.2268195,0,3,0,0,0,-9,0,-966.58057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,55,65,15,1,0,-9,0,2.9483716,2.9483716,0,0,0,0,0,0,0,0,0,0,0,5.8920269,0,0,0,48.450001,57.490002,-9,-9,6,1,1,0,0,10,3,1,163,315979.94,0,0,295.77582 -15316,18795,34226,34227,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,3,7.7482147,8.3261719,7.2081633,1,0,-9,24,0,-6,14.605249,0,0,0,62,1,2,3,2,1,2019,2,1,11,0,30,20,15,1,0,4,0,9.2604275,9.2604275,0,0,0,0,0,0,0,0,0,0,0,5.4513497,7.0939474,0,0,43.009998,48.040001,50.360001,42.189999,5,1,1,0,0,9,4,1,262,4447817,0,0,2189.2256 -15316,18795,34227,34226,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,0,2,5.8057227,8.0329771,7.6203103,1,0,-9,24,0,6,-148.0322,0,0,0,56,1,3,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3531876,8.1157532,0,0,50.360001,42.189999,43.009998,48.040001,6,1,1,0,0,9,4,1,262,4447817,0,0,2189.2256 -15317,18796,34228,34229,-9,-9,1,1,0,48,1,0,1,0,2,-9,6,3,0,1,1,0,0,0,2,0,-9,14,0,-1,-37.853043,0,0,0,49,3,2,1,3,2,2019,3,2,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,26.73,45.52,39,4,1,1,0,0,5,4,1,134.5,833484.13,0,0,3308.9644 -15317,18796,34229,34228,-9,-9,2,1,1,49,1,0,1,0,3,-9,1,1,0,0,2,8.6069927,8.5596275,0,2,0,-9,15,0,1,-124.92139,0,0,0,48,2,1,3,3,3,2019,2,1,10,0,45,0,15,1,0,3,0,11.041732,11.041732,0,0,0,0,0,0,0,2,1,1,0,.26176462,0,0,1,45.52,39,42.73,26.73,4,1,1,0,1,5,4,1,134.5,833484.13,0,0,3308.9644 -15318,18797,34230,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-995.94769,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,14.286562,0,0,0,0,1,1,0,0,0,0,0,52,46,-9,-9,6,1,1,0,0,11,1,1,3623,-58724.129,0,0,352.28088 -15319,18798,34231,-9,34232,34234,5,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-861.54248,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,4,1,680,124077.1,0,0,1890.0454 -15319,18798,34232,-9,-9,-9,1,1,0,47,3,0,2,0,1,-9,2,1,0,0,4,8.9698696,8.7477026,0,4,0,0,0,-9,0,-1134.2626,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,42,38,15,1,0,-9,0,20.10181,20.10181,0,0,0,0,0,0,0,7,0,0,0,0,0,6.1584153,3,59.25,33.650002,-9,-9,6,1,1,0,0,12,4,1,680,124077.1,0,0,1890.0454 -15319,18799,34233,-9,34232,34234,2,1,1,19,3,0,2,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-908.29132,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.95138067,0,0,0,27.129999,45.57,-9,-9,3,1,1,1,0,12,1,1,753,-41083.961,0,0,294.19415 -15319,18800,34234,-9,34232,-9,3,1,1,45,2,0,2,0,1,-9,2,1,0,0,4,9.1622066,9.1940813,0,4,0,0,0,-9,0,-1022.0331,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,1,52,0,15,1,0,-9,0,17.524548,17.524548,0,0,0,0,0,0,0,0,0,0,0,2.2930164,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,12,5,1,191,152996.41,0,0,2693.3931 -15320,18801,34235,34236,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,0,4,0,7.9479318,7.6417456,1,0,-9,34,0,-2,15.624908,0,0,0,63,1,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0566263,8.1285896,0,0,54.200001,57.490002,55.02,54.610001,7,1,1,0,0,13,4,1,531,1465097.3,0,0,2591.7397 -15320,18801,34236,34235,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,0,4,8.0873394,7.9997339,0,1,0,-9,34,0,2,91.231293,0,0,0,61,1,4,3,2,3,2019,2,1,9,0,42,40,15,1,0,4,0,8.5749378,8.5749378,0,0,0,0,0,0,0,0,0,0,0,1.3690614,0,0,0,55.02,54.610001,54.200001,57.490002,6,1,1,0,0,13,4,1,531,1465097.3,0,0,2591.7397 -15321,18802,34237,34238,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,47,0,3,18.694286,0,0,0,66,1,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7553886,0,0,0,51.5,26.51,56.099998,49.93,4,1,1,0,0,6,2,1,672.5,46694.449,0,0,1977.502 -15321,18802,34238,34237,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.361362,7.6601791,1,0,-9,47,0,-3,56.52927,0,0,0,69,1,2,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4818082,0,0,56.099998,49.93,51.5,26.51,6,1,1,0,0,6,2,1,672.5,46694.449,0,0,1977.502 -15322,18803,34239,34240,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,5.5588322,5.3545561,1,0,-9,6,0,-1,-81.519836,0,0,0,65,2,4,3,3,1,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7278891,4.8790278,3,61.279999,48.880001,64.480003,48.619999,6,1,1,0,0,11,3,1,691.5,966860.75,0,0,2932.292 -15322,18803,34240,34239,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,8.1639824,7.6909747,1,0,-9,6,0,1,-39.491837,0,0,0,64,2,3,3,2,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1069002,0,3,64.480003,48.619999,61.279999,48.880001,6,1,1,0,0,11,3,1,691.5,966860.75,0,0,2932.292 -15323,18804,34241,34242,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-6,-46.112976,0,0,0,79,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,50.040001,33.860001,7,2,3,0,0,11,4,1,395,1859771.6,0,0,4392.6387 -15323,18804,34242,34241,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,8.8225746,8.6816759,1,0,-9,7,0,6,3.6047366,0,0,0,73,2,4,3,3,2,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0213881,0,0,50.040001,33.860001,62.490002,55.09,6,2,3,0,0,11,4,1,395,1859771.6,0,0,4392.6387 -15324,18805,34243,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-955.11127,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,4,1,-9,0,0,0,1,2.4400053,0,0,0,0,0,0,1,1,0,0,0,0,0,44.830002,34.470001,-9,-9,3,1,1,0,0,5,1,1,440,246981.61,0,0,736.87823 -15325,18806,34244,34245,-9,-9,1,1,1,23,1,0,0,0,2,-9,2,1,0,0,4,7.8310862,7.9466705,0,1,0,-9,4,0,0,-57.625927,0,1,0,23,2,3,1,2,1,2019,1,2,14,2,47,52,15,1,0,1,0,6.7351747,6.7351747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.779999,26.299999,54.419998,3,1,1,0,0,9,4,0,865.5,21847.363,0,0,2851.668 -15325,18806,34245,34244,-9,-9,2,1,0,23,1,0,0,0,2,-9,2,1,0,0,3,7.7139072,7.8656149,0,1,0,-9,4,0,0,-78.984375,-9,1,1,23,2,4,1,-9,-9,2019,1,1,25,10,42,0,15,1,1,1,0,6.4800906,6.4800906,0,0,0,0,0,0,0,42,0,0,0,0,0,42.102043,3,26.299999,54.419998,56.57,57.779999,4,1,1,0,0,9,4,0,865.5,21847.363,0,0,2851.668 -15326,18807,34246,34247,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,0,4,0,6.627439,6.9626164,1,0,-9,33,0,8,59.961617,0,0,0,74,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9361107,6.6839266,0,0,60.119999,54.799999,63.830002,43.619999,7,1,1,0,0,10,2,0,631.5,231572.28,0,0,783.11975 -15326,18807,34247,34246,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,33,0,-8,83.797401,0,0,0,82,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2246766,0,0,0,63.830002,43.619999,60.119999,54.799999,6,1,1,0,0,10,2,0,631.5,231572.28,0,0,783.11975 -15327,18808,34248,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-965.11115,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.889999,20.799999,-9,-9,7,1,1,0,0,12,1,1,442,-247422.94,0,0,578.58411 -15328,18809,34249,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,0,4,8.1748219,8.4349155,0,3,0,0,0,-9,0,-1046.1766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7272227,0,0,0,46.93,51.349998,-9,-9,6,1,1,0,0,10,5,1,832,372538.53,0,0,2843.022 -15329,18810,34250,34251,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,0,4,7.0285859,7.1190591,0,1,0,-9,3,0,-4,61.031372,0,0,0,53,3,2,1,3,3,2019,1,2,7,0,40,40,15,1,0,1,0,3.0508804,3.0508804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,38.900002,32.16,2,1,1,0,0,13,2,1,384,-31642.895,0,0,1155.0212 -15329,18810,34251,34250,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,0,2,0,0,0,1,0,-9,3,0,4,-59.926399,0,0,0,49,2,4,1,3,3,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.900002,32.16,57.16,56.150002,6,1,1,0,0,13,2,1,384,-31642.895,0,0,1155.0212 -15329,18811,34252,-9,34251,-9,3,1,1,27,2,0,0,0,3,-9,2,1,0,0,4,7.8506808,7.9504552,0,3,0,0,0,-9,0,-1032.797,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,40,41,15,1,0,-9,1,7.2557673,7.2557673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,13,3,1,820,-121385.76,0,0,600.86633 -15330,18812,34253,34254,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,0,4,6.7351747,6.7638917,0,1,0,-9,7,0,2,-123.0402,0,0,0,50,2,2,1,-9,-9,2019,1,1,6,0,30,20,15,1,0,1,0,3.6594687,3.6594687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,56.279999,47.529999,5,1,1,0,0,5,3,1,899.5,49843.531,0,0,1434.2361 -15330,18812,34254,34253,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,0,2,7.8428855,7.8286166,0,1,0,-9,7,0,-2,51.401585,0,0,0,52,3,4,1,2,3,2019,1,2,6,0,65,50,15,1,0,1,0,4.5997,4.5997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.279999,47.529999,59.529999,56.439999,6,1,1,0,0,5,3,1,899.5,49843.531,0,0,1434.2361 -15331,18813,34255,34256,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,3,6.6412125,6.7078552,0,1,0,-9,33,0,1,50.275505,0,0,0,55,2,2,1,2,2,2019,1,1,20,8,20,35,15,1,1,1,0,4.2071533,4.2071533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.85,53.02,62.810001,36.34,3,1,1,0,0,2,4,1,312.5,166041.52,0,0,2232.9512 -15331,18813,34256,34255,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,8.2295723,8.0908585,0,1,0,-9,33,0,-1,-22.680075,0,0,0,56,2,3,1,2,2,2019,1,2,7,0,40,39,15,1,0,1,0,9.8795156,9.8795156,0,0,0,0,0,0,0,0,0,0,0,.091907188,0,0,0,62.810001,36.34,28.85,53.02,6,1,1,0,0,2,4,1,312.5,166041.52,0,0,2232.9512 -15331,18814,34257,-9,34256,34255,3,1,1,22,2,0,0,0,2,-9,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-908.18951,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4020965,0,0,0,62.389999,56.709999,-9,-9,6,1,1,1,0,2,1,1,808,-99911.797,0,0,208.3277 -15332,18815,34258,-9,34259,34260,3,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.8457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,599,33151.91,0,0,2385.1028 -15332,18815,34259,34260,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,2,6.8955464,7.2244887,0,2,0,-9,6,0,-3,14.664005,0,0,1,36,2,3,1,-9,-9,2019,1,2,21,9,16,0,15,1,1,1,0,8.272048,8.272048,0,0,0,0,0,0,0,2,1,1,0,0,0,5.005496,3,33.84,48.439999,46.669998,55.57,5,1,1,0,1,4,3,1,599,33151.91,0,0,2385.1028 -15332,18815,34260,34259,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,0,3,7.8821073,8.2664757,0,2,0,-9,6,0,3,5.1336837,0,0,0,33,2,2,1,-9,-9,2019,1,1,10,0,58,0,15,1,0,1,0,5.575603,5.575603,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.669998,55.57,33.84,48.439999,6,1,1,0,0,4,3,1,599,33151.91,0,0,2385.1028 -15332,18815,34261,-9,34259,34260,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.4863,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,599,33151.91,0,0,2385.1028 -15333,18816,34262,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-989.50916,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.59,30.02,-9,-9,2,1,1,0,0,10,1,0,1016,180957.84,0,0,1206.9154 -15334,18817,34263,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,0,4,8.033556,8.0825195,0,3,0,0,0,-9,0,-963.94006,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,35,15,1,0,-9,0,12.351447,12.351447,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.203928,3,54.740002,57.220001,-9,-9,7,1,1,0,0,2,4,1,245,656798.69,0,0,1628.4188 -15335,18818,34264,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,1,3,0,6.6123667,6.7289758,3,0,0,0,-9,0,-1017.8381,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.0121825,6.6785297,0,0,49.200001,36.759998,-9,-9,5,1,1,0,0,12,2,1,1383,555035.25,0,0,1269.7236 -15336,18819,34265,34266,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,0,4,8.32763,8.218914,0,1,0,-9,30,0,-2,25.520061,0,0,0,63,2,4,1,3,2,2019,1,2,13,1,61,49,15,1,0,1,0,6.4985809,6.4985809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.369999,42.619999,55,52,5,1,1,0,0,10,5,1,700.5,782792.13,0,0,4135.6445 -15336,18819,34266,34265,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.7134848,9.1326017,0,1,0,-9,3,0,2,14.752211,0,0,0,61,2,4,1,3,3,2019,1,1,8,0,37,55,15,1,0,1,0,23.970734,23.970734,0,0,0,0,0,0,0,0,1,1,0,6.732491,0,0,0,55,52,47.369999,42.619999,6,1,1,0,0,10,5,1,700.5,782792.13,0,0,4135.6445 -15336,18820,34267,-9,34265,34266,3,1,1,31,2,0,0,0,2,-9,1,1,0,0,4,7.1121879,7.1858768,0,3,0,0,0,-9,0,-1101.5476,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,50,50,15,1,0,-9,1,3.2038865,3.2038865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,10,3,1,1828,0,0,0,454.60291 -15337,18821,34268,34269,-9,-9,1,1,0,30,1,1,1,0,2,-9,6,3,0,1,3,0,0,0,2,0,1,1,-9,-13,0,0,0,1,43,1,2,3,2,2,2019,4,3,4,0,0,16,15,3,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.697379,3,57.919998,51.82,37.950001,41.029999,7,2,3,0,0,8,1,0,449.33334,395875.75,0,0,957.15417 -15337,18821,34269,34268,-9,-9,3,1,1,43,1,1,1,0,1,-9,3,3,0,0,2,0,0,0,2,0,-9,1,-9,13,0,-9,0,0,30,2,3,3,-9,-9,2019,4,1,25,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.4051356,3,37.950001,41.029999,57.919998,51.82,3,2,3,1,1,8,1,0,449.33334,395875.75,0,0,957.15417 -15337,18821,34270,-9,34268,34269,2,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1082.0586,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,8,1,0,449.33334,395875.75,0,0,957.15417 -15338,18822,34271,34272,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,5,0,0,0,0,72,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,56.52,48.310001,52.77,55.330002,6,1,1,0,0,5,1,0,525,-42833.523,0,0,834.05237 -15338,18822,34272,34271,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,10,0,-5,0,0,0,0,77,3,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.330002,56.52,48.310001,5,1,1,0,0,5,1,0,525,-42833.523,0,0,834.05237 -15339,18823,34273,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,2,8.2451324,8.3415403,0,3,0,0,0,-9,0,-928.58331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,37,34,15,1,0,-9,0,12.68645,12.68645,0,0,0,0,0,0,0,0,0,0,0,5.8623419,0,0,0,59.299999,39.290001,-9,-9,3,1,1,0,0,9,4,1,117,625501.56,0,0,2864.0605 -15340,18824,34274,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,0,4,8.8755589,8.5721378,0,4,0,0,0,-9,0,-816.90442,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,40,15,1,0,-9,0,16.237873,16.237873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,5,1,1,0,0,5,4,1,549,-67379.359,0,0,1905.165 -15340,18824,34275,-9,34274,-9,2,1,0,16,2,0,1,0,-9,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-981.82062,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,5,4,1,549,-67379.359,0,0,1905.165 -15341,18825,34276,34277,-9,-9,3,1,0,51,1,0,0,0,2,-9,2,1,0,0,4,8.6678982,8.5195026,0,1,0,-9,4,0,-11,-32.864937,0,0,0,62,2,3,3,-9,-9,2019,2,1,10,1,40,38,15,1,0,4,0,24.223068,24.223068,0,0,0,0,0,0,0,0,0,0,0,4.4615703,0,0,0,52,53,57.330002,53.459999,6,1,1,0,0,9,5,1,1010.5,2952415,0,0,4712.3311 -15341,18825,34277,34276,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,3,0,8.1681309,8.3290911,1,0,-9,25,0,11,88.581398,0,0,0,51,2,4,1,-9,-9,2019,3,3,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7690687,8.4000034,0,0,57.330002,53.459999,52,53,6,1,1,0,0,9,5,1,1010.5,2952415,0,0,4712.3311 -15341,18826,34278,-9,34276,34277,2,1,1,29,2,0,0,0,2,-9,2,1,0,0,4,9.4315081,9.1979141,0,3,0,0,0,-9,0,-975.11749,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,32,15,1,0,-9,1,40.622974,40.622974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,9,5,1,641,73778.438,0,0,4187.1934 -15342,18827,34279,34280,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,4,0,8.0480967,8.4846516,1,0,-9,41,0,-2,-4.4100509,0,0,0,64,1,3,3,1,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.351922,0,0,68.510002,23.49,52,48,2,1,1,0,0,13,5,1,459,1648378.5,0,0,4817.7676 -15342,18827,34280,34279,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,0,3,7.4140043,7.813427,7.9072185,1,0,-9,41,0,2,-5.8502569,0,0,0,62,2,4,3,2,2,2019,4,2,10,1,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3112464,7.5038381,0,0,52,48,68.510002,23.49,5,1,1,0,0,13,5,1,459,1648378.5,0,0,4817.7676 -15343,18828,34281,-9,34284,34282,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.07452,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,3,1,1152.75,3427.8076,0,0,1057.8711 -15343,18828,34282,34284,-9,-9,3,1,1,38,1,1,2,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,3,0,0,53.856842,0,0,0,38,2,3,1,-9,-9,2019,1,1,16,4,0,55,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.259998,50.580002,41.759998,59.080002,4,1,1,0,0,4,3,1,1152.75,3427.8076,0,0,1057.8711 -15343,18828,34283,-9,34284,34282,2,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-893.38763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,1,1152.75,3427.8076,0,0,1057.8711 -15343,18828,34284,34282,-9,-9,1,1,0,38,1,1,2,0,2,-9,2,1,0,0,3,8.2587137,8.1025467,5.6406388,2,0,-9,3,0,0,97.409645,0,0,1,38,2,4,1,2,3,2019,1,3,13,4,37,38,15,1,1,1,0,8.6310463,8.6310463,0,0,0,0,0,0,0,0,1,1,0,5.8413825,0,0,0,41.759998,59.080002,48.259998,50.580002,6,1,1,0,0,4,3,1,1152.75,3427.8076,0,0,1057.8711 -15344,18829,34285,-9,34288,34286,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1079.4296,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,13,3,1,578.75,165332.5,0,0,2083.4998 -15344,18829,34286,34288,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.312706,8.3751526,0,2,0,-9,20,0,1,60.492054,0,0,0,46,1,3,1,2,2,2019,1,2,15,3,40,40,15,1,0,1,0,11.075113,11.075113,0,0,0,0,0,0,0,0,1,1,0,3.1323669,0,0,0,40.439999,56.93,41.27,48.389999,5,1,1,0,0,13,3,1,578.75,165332.5,0,0,2083.4998 -15344,18829,34287,-9,34288,34286,3,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.71667,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,578.75,165332.5,0,0,2083.4998 -15344,18829,34288,34286,-9,-9,2,1,0,46,1,0,2,0,1,-9,1,1,0,0,3,6.5883226,6.1778107,0,2,0,-9,20,0,-1,134.00233,0,0,0,47,2,3,1,3,3,2019,1,1,17,5,30,30,15,1,1,1,0,2.7355771,2.7355771,0,0,0,0,0,0,0,0,1,1,0,3.388634,0,0,0,41.27,48.389999,40.439999,56.93,5,1,1,0,0,13,3,1,578.75,165332.5,0,0,2083.4998 -15345,18830,34289,34292,-9,-9,1,1,0,40,1,0,2,0,3,-9,6,3,0,0,5,0,0,0,2,0,-9,24,0,-10,-23.754477,0,0,1,50,2,4,1,3,-9,2019,3,2,5,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.559998,41.560001,53,55,1,2,3,0,0,4,2,1,683.25,303985.16,0,0,1962.7637 -15345,18830,34290,-9,34289,34292,7,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.3923,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,4,2,1,683.25,303985.16,0,0,1962.7637 -15345,18830,34291,-9,34289,34292,6,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.562,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,4,2,1,683.25,303985.16,0,0,1962.7637 -15345,18830,34292,34289,-9,-9,2,1,1,50,1,0,2,0,2,-9,1,1,0,0,4,7.7554746,7.6930757,0,2,0,-9,24,0,10,5.3610611,0,0,0,40,3,5,3,-9,-9,2019,2,1,9,1,60,70,15,1,0,3,0,5.1958923,5.1958923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,65.559998,41.560001,6,2,3,0,0,4,2,1,683.25,303985.16,0,0,1962.7637 -15345,18831,34293,-9,34289,34292,3,1,1,22,2,0,2,0,2,-9,2,1,0,0,4,6.9374876,6.9218736,0,3,0,0,0,-9,0,-954.20123,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,3.1387024,3.1387024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,4,2,1,50,188361.33,0,0,-110.1835 -15345,18832,34294,-9,34289,34292,4,1,0,20,2,0,2,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1002.0042,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,18,8,0,6,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.029999,52.290001,-9,-9,4,2,3,1,0,4,1,1,110,0,0,0,0 -15345,18833,34295,-9,34289,34292,5,1,0,19,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1178.6843,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.150002,58.689999,-9,-9,6,2,3,0,0,4,1,1,613,0,0,0,0 -15346,18834,34296,-9,-9,-9,2,1,0,92,3,0,0,0,3,-9,4,3,0,0,2,0,5.1206107,5.0888033,3,0,0,0,-9,0,-970.18597,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,8.9135876,0,0,0,1,1,0,7.4081931,5.2144651,0,0,61.689999,36.860001,-9,-9,7,1,1,0,0,9,2,1,2178,201907.69,0,0,1274.6896 -15347,18835,34297,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,-9,0,1,0,-973.59534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,12,1,0,623,634971.06,0,0,657.76794 -15348,18836,34298,-9,-9,-9,1,1,1,83,2,0,0,0,3,-9,4,3,0,0,3,0,6.5803223,6.4423699,3,0,0,0,-9,0,-961.27136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8633995,6.4927702,0,0,66.519997,32.82,-9,-9,2,1,1,0,0,9,2,1,268,230269.38,0,0,756.00323 -15348,18837,34299,-9,-9,34298,2,1,0,46,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-962.63959,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.66,24.85,-9,-9,4,1,1,0,0,9,1,1,2086,29288.826,0,0,-766.77155 -15349,18838,34300,34302,-9,-9,2,1,0,50,1,0,1,0,3,-9,6,3,0,1,4,0,0,0,2,0,-9,34,0,-4,0,0,0,0,54,3,2,3,2,1,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.904324,1,51,54,36.52,22.6,6,2,3,0,1,8,1,0,498,-61715.926,0,0,2313.8655 -15349,18838,34301,-9,34300,34302,5,1,1,16,2,0,1,0,-9,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1038.3324,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,8,1,0,498,-61715.926,0,0,2313.8655 -15349,18838,34302,34300,-9,-9,1,1,1,54,1,0,1,0,3,-9,3,3,0,0,2,0,0,0,2,0,-9,34,0,4,0,0,0,0,50,3,4,3,2,1,2019,4,2,24,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.52,22.6,51,54,2,2,3,1,1,8,1,0,498,-61715.926,0,0,2313.8655 -15349,18839,34303,-9,34300,34302,3,1,0,26,2,0,1,0,2,-9,2,1,0,0,4,8.2731199,7.9274426,0,3,0,0,0,-9,0,-987.44354,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,43,0,15,1,0,-9,1,9.0436134,9.0436134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,2,3,0,1,8,4,0,224,159565.44,0,0,2195.2727 -15349,18840,34304,-9,34300,34302,4,1,1,25,2,0,1,0,2,1,1,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1082.5848,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,4,2,3,0,0,8,1,0,495,0,0,0,652.14856 -15350,18841,34305,-9,34308,34306,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.0577,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,5,4,0,372.5,-730.97461,0,0,2840.4131 -15350,18841,34306,34308,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,0,4,7.4227505,7.4258509,0,2,0,-9,6,0,4,37.471092,0,0,0,34,1,2,1,3,2,2019,1,2,8,0,25,0,15,1,0,1,0,7.8340569,7.8340569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,54.41,42.380001,38.919998,6,1,1,0,0,5,4,0,372.5,-730.97461,0,0,2840.4131 -15350,18841,34307,-9,34308,34306,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-924.32446,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,0,372.5,-730.97461,0,0,2840.4131 -15350,18841,34308,34306,-9,-9,2,1,0,34,1,0,2,0,1,-9,2,1,0,0,2,8.2865257,8.3409872,0,2,0,-9,6,0,-4,-132.00526,0,0,1,38,2,4,1,-9,-9,2019,1,1,24,10,58,48,15,1,1,1,0,9.6762514,9.6762514,0,0,0,0,0,0,0,2,1,1,0,0,0,4.0691323,3,42.380001,38.919998,49.91,54.41,4,1,1,0,0,5,4,0,372.5,-730.97461,0,0,2840.4131 -15351,18842,34309,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,1,3,0,5.1239514,4.9830737,3,0,-9,0,1,0,-1028.8687,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.4424753,0,0,49.830002,28.120001,-9,-9,6,1,1,0,0,2,2,1,1026,336380.94,0,0,942.75323 -15352,18843,34310,-9,-9,-9,3,1,1,22,2,0,0,0,1,1,2,1,0,0,2,7.182806,7.2205195,0,3,0,0,0,-9,0,-1009.2054,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,27,0,15,1,0,-9,1,5.9754124,5.9754124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.98,51.259998,-9,-9,4,1,1,0,0,12,2,1,663,95921.719,0,0,2040.668 -15353,18844,34311,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,3,8.1523085,8.6222343,0,3,0,0,0,-9,0,-1061.0839,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,12,54,50,15,1,1,-9,0,7.9299822,7.9299822,0,0,0,0,0,0,0,14.5,0,0,0,3.2446334,0,10.195244,3,36.580002,48.16,-9,-9,3,4,2,0,0,6,4,1,717,-30466.145,0,0,1230.5616 -15354,18845,34312,34313,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,2,0,7.0455842,7.0656457,1,0,-9,45,0,0,55.852123,0,0,0,68,2,3,3,1,3,2019,4,2,23,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3685985,6.5019236,0,0,15.61,63.509998,57.330002,53.459999,4,1,1,0,0,9,4,1,490.5,1077752.8,0,0,4607.9199 -15354,18845,34313,34312,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,8.0842476,8.0050001,1,0,-9,45,0,0,45.62888,0,0,0,68,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6292996,8.184948,0,0,57.330002,53.459999,15.61,63.509998,6,1,1,0,0,9,4,1,490.5,1077752.8,0,0,4607.9199 -15355,18846,34314,34315,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.4046779,7.1066141,1,0,-9,9,0,2,-13.506213,0,0,0,77,2,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7524953,7.3494325,0,0,51.48,43.709999,49.75,32.52,6,1,1,0,0,11,3,0,607,2254798.5,0,0,2394.2371 -15355,18846,34315,34314,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,0,2,0,7.5667801,7.433423,1,0,-9,9,0,-2,-32.279911,0,0,0,79,1,3,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,9.3444958,0,0,0,0,0,1,1,0,2.8143847,7.1598759,0,0,49.75,32.52,51.48,43.709999,5,1,1,0,0,11,3,0,607,2254798.5,0,0,2394.2371 -15356,18847,34316,34317,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,24,0,-7,160.05418,0,0,0,76,3,4,3,3,3,2019,4,1,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.689999,20.99,60.119999,54.799999,7,1,1,0,0,10,2,1,461.5,461331.19,0,0,337.8981 -15356,18847,34317,34316,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,6.5299006,6.3549771,1,0,-9,24,0,7,151.60263,0,0,0,69,3,2,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4205866,10.037388,1,60.119999,54.799999,49.689999,20.99,7,1,1,0,0,10,2,1,461.5,461331.19,0,0,337.8981 -15357,18848,34318,34319,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,8.8094473,8.506834,0,1,0,-9,2,0,1,55.553394,0,0,1,33,1,4,1,1,2,2019,1,2,8,1,60,60,15,1,0,1,0,7.7563863,7.7563863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.119999,36.330002,50,57,5,2,3,0,0,13,5,0,574,103532.58,0,0,3405.2446 -15357,18848,34319,34318,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,4,8.37533,7.7851481,0,1,0,-9,2,0,-1,-42.38636,-9,0,0,34,1,4,1,-9,-9,2019,1,1,10,1,40,0,15,1,0,1,0,12.885646,12.885646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,53.119999,36.330002,5,4,3,0,0,13,5,0,574,103532.58,0,0,3405.2446 -15358,18849,34320,34321,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,5,8.2908888,8.4019032,0,1,0,-9,28,0,2,12.764791,0,0,0,54,2,5,1,2,2,2019,1,1,9,0,44,48,15,1,0,1,0,14.108593,14.108593,0,0,0,0,0,0,0,0,0,0,0,4.614296,0,0,0,54.689999,57.470001,44.369999,59.349998,6,1,1,0,0,12,5,1,615,907060.75,0,0,5068.877 -15358,18849,34321,34320,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,5,9.1454496,9.0724869,0,1,0,-9,28,0,-2,90.539932,0,0,0,56,1,5,1,2,2,2019,1,2,12,1,45,45,15,1,0,1,0,21.129187,21.129187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.369999,59.349998,54.689999,57.470001,5,1,1,0,0,12,5,1,615,907060.75,0,0,5068.877 -15358,18850,34322,-9,34320,34321,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.4326415,7.2254081,0,3,0,0,0,-9,0,-935.26953,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,39,35,15,1,1,-9,1,5.0509849,5.0509849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.68,57.580002,-9,-9,3,1,1,0,0,12,3,1,303,70806.023,0,0,504.34225 -15359,18851,34323,34324,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,42,0,4,158.0123,0,0,0,63,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,29.46303,4.0418978,0,0,0,0,1,1,0,0,0,0,0,52.110001,43.869999,51,48,7,1,1,0,0,13,4,1,566,1802662.4,0,0,2818.9189 -15359,18851,34324,34323,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,1,3,0,8.5476856,8.1241274,1,0,-9,9,0,-4,-48.225071,0,0,0,67,2,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.1126528,8.8202915,1,51,48,52.110001,43.869999,5,1,1,0,0,13,4,1,566,1802662.4,0,0,2818.9189 -15360,18852,34325,34326,-9,-9,1,1,1,43,1,1,2,0,1,-9,2,1,0,0,4,9.0610065,9.0111666,0,2,0,-9,1,-9,7,-18.79656,-9,0,0,36,1,2,1,2,2,2019,1,2,9,0,42,0,15,1,0,1,0,18.690256,18.690256,0,0,0,0,0,0,0,0,1,1,0,2.5405068,0,0,0,52.82,53.970001,57.18,42.93,7,4,2,0,0,7,5,1,842,1161848.4,0,0,6801.8643 -15360,18852,34326,34325,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,0,2,9.2201853,9.1214876,0,2,0,-9,1,-9,-7,-12.129775,-9,0,1,43,1,4,1,-9,-9,2019,1,1,5,0,52,0,15,1,0,1,0,19.915556,19.915556,0,0,0,0,0,0,0,0,1,1,0,7.7373691,0,0,0,57.18,42.93,52.82,53.970001,6,1,1,0,0,7,5,1,842,1161848.4,0,0,6801.8643 -15360,18852,34327,-9,34326,34325,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1024.2356,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,7,5,1,842,1161848.4,0,0,6801.8643 -15360,18852,34328,-9,34326,34325,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1072.1365,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,7,5,1,842,1161848.4,0,0,6801.8643 -15361,18853,34329,34330,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,1,0,7.6762342,7.6355333,1,0,-9,53,0,3,41.720158,0,0,0,75,2,4,3,3,3,2019,4,1,19,6,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.6573963,7.7279534,0,0,40.950001,23.34,60.869999,42.099998,2,1,1,0,0,11,3,1,147,772503.88,0,0,1230.7307 -15361,18853,34330,34329,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,5.5657139,5.7401071,1,0,-9,53,0,-3,73.387711,0,0,0,78,2,1,3,3,2,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.0592308,5.6715307,0,3,60.869999,42.099998,40.950001,23.34,7,1,1,0,0,11,3,1,147,772503.88,0,0,1230.7307 -15362,18854,34331,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,1,1,0,0,2,8.2412643,8.1613665,0,3,0,0,0,-9,0,-1091.6205,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,8,0,15,1,0,-9,0,50.272301,50.272301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.73,48.57,-9,-9,4,1,1,0,0,8,4,1,965,919529.88,0,0,1630.9628 -15363,18855,34332,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,4,0,5.3960381,5.2220531,3,0,0,0,-9,0,-1058.8577,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7190838,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,1,2,1,833,193701,0,0,804.58386 -15364,18856,34333,34334,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,49,0,-3,103.76391,0,0,0,72,2,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.150002,58.150002,52.91,7,1,1,0,0,10,2,1,804.5,440588.09,0,0,1537.4951 -15364,18856,34334,34333,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,6.4582224,7.2326455,1,0,-9,49,0,3,69.323456,0,0,0,69,2,4,3,3,2,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0761194,7.0876184,7.4901094,3,58.150002,52.91,57.16,56.150002,6,1,1,0,0,10,2,1,804.5,440588.09,0,0,1537.4951 -15365,18857,34335,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,4,0,6.1538887,5.9461179,3,0,0,0,-9,0,-1114.769,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6678057,6.2832766,0,0,50.240002,46.939999,-9,-9,6,1,1,0,0,6,2,1,2955,8282.1201,0,0,665.51654 -15366,18858,34336,-9,-9,-9,1,1,0,44,2,0,2,0,2,-9,2,1,0,0,2,8.5832663,7.878778,0,4,0,0,0,-9,0,-996.65399,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,50,18,15,1,0,-9,0,9.1829243,9.1829243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.880001,52.43,-9,-9,5,1,1,0,1,2,3,0,486.5,143290.09,0,0,1501.212 -15366,18858,34337,-9,34336,-9,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-995.43115,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,0,486.5,143290.09,0,0,1501.212 -15366,18859,34338,-9,34336,-9,2,1,1,19,2,0,2,0,2,1,2,1,0,0,4,5.9813614,6.0757165,0,3,0,0,0,-9,0,-899.41852,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,37,0,15,1,0,-9,1,1.7469319,1.7469319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.459999,53.68,-9,-9,5,1,1,0,0,2,2,0,587,-192114.02,0,0,-119.60258 -15367,18860,34339,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,7.120604,7.732759,3,0,0,0,-9,0,-1018.0582,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.22577307,7.2665825,0,0,51.080002,30.84,-9,-9,4,1,1,0,0,12,2,1,309,-46235.031,0,0,669.93835 -15368,18861,34340,-9,34342,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.2681,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,1,0,867,-75778.016,0,0,1711.2067 -15368,18861,34341,-9,34342,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-979.95831,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,11,1,0,867,-75778.016,0,0,1711.2067 -15368,18861,34342,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,6,3,0,1,2,0,0,0,4,0,0,0,-9,0,-954.94281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.5761642,3,54.48,40.09,-9,-9,3,1,1,0,0,11,1,0,867,-75778.016,0,0,1711.2067 -15369,18862,34343,34344,-9,-9,1,1,0,36,1,0,0,0,2,-9,3,3,0,1,1,0,0,0,1,0,-9,4,0,-7,0,0,0,1,43,3,1,3,-9,2,2019,4,2,24,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.790001,31.17,38.419998,19.59,3,1,1,1,1,10,1,0,773,-132180.83,0,0,1348.0881 -15369,18862,34344,34343,-9,-9,2,1,1,43,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,4,0,7,0,0,0,0,36,2,1,3,-9,-9,2019,4,1,20,7,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.5202346,3,38.419998,19.59,35.790001,31.17,2,1,1,1,1,10,1,0,773,-132180.83,0,0,1348.0881 -15370,18863,34345,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1016.8864,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.169998,40.619999,-9,-9,4,1,1,0,0,12,1,0,1964,36255.203,0,0,1070.7399 -15371,18864,34346,-9,-9,-9,1,1,1,76,2,0,0,0,3,-9,4,3,0,0,4,0,6.9788351,7.342937,3,0,0,0,-9,0,-909.92773,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9897113,0,0,59.150002,49.669998,-9,-9,6,1,1,0,0,6,3,1,199,937854.25,0,0,1783.8071 -15372,18865,34347,34348,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,8.3528337,8.2514238,0,1,0,-9,5,0,3,29.123455,0,0,0,56,1,4,1,-9,-9,2019,1,1,16,5,48,45,15,1,1,1,0,10.396592,10.396592,0,0,0,0,0,0,0,71.5,0,0,0,1.1000214,0,74.208275,3,32.080002,58.419998,54.790001,55.860001,6,1,1,0,0,9,4,1,499.5,3166086.5,0,0,1470.7067 -15372,18865,34348,34347,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,7.1761012,7.3280039,0,1,0,-9,5,0,-3,82.158585,0,0,0,59,2,3,1,2,2,2019,1,2,7,0,25,25,15,1,0,1,0,9.2911901,9.2911901,0,0,0,0,0,0,0,14.5,0,0,0,3.7721586,0,14.5509,3,54.790001,55.860001,32.080002,58.419998,6,1,1,0,0,9,4,1,499.5,3166086.5,0,0,1470.7067 -15373,18866,34349,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,2,8.0816612,8.2960682,0,3,0,0,0,-9,0,-825.67017,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,14,2,80,0,15,1,0,-9,0,5.5229092,5.5229092,0,0,0,0,0,0,0,0,0,0,0,4.5274138,0,0,0,47.560001,40.900002,-9,-9,6,1,1,0,0,9,4,1,1550,120395.24,0,0,1313.7271 -15374,18867,34350,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1077.8257,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,24.17,-9,-9,4,1,1,1,1,9,1,0,899,85975.383,0,0,315.23874 -15375,18868,34351,34352,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,3,9.3459387,9.4926977,0,1,0,-9,18,0,7,124.07034,0,0,0,48,2,4,1,2,2,2019,1,2,7,0,50,50,15,1,0,1,0,26.434082,26.434082,0,0,0,0,0,0,0,0,0,0,0,4.8654714,0,0,0,58.490002,31.120001,53.419998,52.330002,5,1,1,0,0,1,5,1,1122,601780.88,0,0,6427.1826 -15375,18868,34352,34351,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,8.5277138,8.9033689,0,1,0,-9,17,0,-7,-49.053413,0,0,0,55,1,3,1,2,3,2019,1,1,7,0,38,41,15,1,0,1,0,17.839832,17.839832,0,0,0,0,0,0,0,0,0,0,0,8.4444675,0,0,0,53.419998,52.330002,58.490002,31.120001,6,1,1,0,0,1,5,1,1122,601780.88,0,0,6427.1826 -15376,18869,34353,34354,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,4.7707911,4.297801,1,0,-9,23,0,15,-52.192196,0,0,0,64,1,3,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4142418,4.5396867,0,0,61.43,43.34,66.370003,38.360001,6,1,1,0,0,7,3,1,703,1799675.5,0,0,2100.7263 -15376,18869,34354,34353,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,0,3,8.0618801,8.1998854,4.3063912,1,0,-9,23,0,-15,-97.802734,0,0,0,79,2,3,3,2,2,2019,2,2,7,0,50,50,15,1,0,4,0,10.629346,10.629346,0,0,0,0,0,0,0,0,1,1,0,5.0836635,4.2931628,0,0,66.370003,38.360001,61.43,43.34,6,1,1,0,0,7,3,1,703,1799675.5,0,0,2100.7263 -15377,18870,34355,34356,-9,-9,2,1,1,55,1,0,0,0,2,-9,4,3,0,0,3,0,8.1363878,8.314189,1,0,-9,8,0,7,59.56517,0,0,0,48,2,3,1,2,2,2019,3,1,10,1,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1341858,8.381855,0,0,55.360001,51.57,46.57,54.66,6,1,1,0,0,10,5,1,353.5,1150715.3,0,0,6159.3457 -15377,18870,34356,34355,-9,-9,1,1,0,48,1,0,0,0,2,-9,1,1,0,0,3,9.3251553,9.3255672,0,1,0,-9,8,0,-7,65.934677,0,0,0,55,2,3,3,3,2,2019,2,2,10,0,45,0,15,1,0,4,0,29.134157,29.134157,0,0,0,0,0,0,0,0,0,0,0,2.5445695,0,0,0,46.57,54.66,55.360001,51.57,6,1,1,0,0,10,5,1,353.5,1150715.3,0,0,6159.3457 -15378,18871,34357,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,5,7.9072514,7.8198824,0,3,0,0,0,-9,0,-986.8103,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,8.6495018,8.6495018,0,0,0,0,0,0,0,0,0,0,0,3.345809,0,0,0,54.099998,59.110001,-9,-9,6,1,1,0,0,6,3,0,498,139023,0,0,359.00394 -15378,18872,34358,-9,34357,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.7105823,7.7415738,0,3,0,0,0,-9,0,-1055.2692,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,3,35,35,15,1,0,-9,1,6.6058006,6.6058006,0,0,0,0,0,0,0,0,0,0,0,3.0233953,0,0,0,50.029999,52.619999,-9,-9,6,1,1,0,0,6,3,0,237,-91018.883,0,0,693.86487 -15379,18873,34359,34360,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.2713013,8.2191401,0,1,0,-9,9,0,3,-93.541077,0,0,0,52,2,2,1,-9,-9,2019,1,1,16,5,29,32,15,1,1,1,0,12.629445,12.629445,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,41.060001,62.040001,31.77,39.790001,6,1,1,0,0,4,5,1,239.5,431883.5,0,0,3286.3745 -15379,18873,34360,34359,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,2,8.1951923,8.5374908,0,1,0,-9,9,0,-3,-39.852268,0,0,0,55,2,4,1,3,2,2019,1,2,17,5,37,38,15,1,1,1,0,12.848804,12.848804,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,31.77,39.790001,41.060001,62.040001,3,1,1,0,0,4,5,1,239.5,431883.5,0,0,3286.3745 -15380,18874,34361,34362,-9,-9,2,1,0,56,1,0,0,0,2,-9,8,3,1,1,2,6.7958069,7.0387788,0,1,0,-9,1,-9,-4,-84.700455,-9,0,0,60,2,5,3,2,3,2019,4,1,31,12,19,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.5903244,0,13.653728,3,28.26,29.190001,59.43,58.049999,2,1,1,0,1,13,3,1,629,1287799.5,0,0,1385.2068 -15380,18874,34362,34361,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,0,5,6.0666966,7.4043827,7.347971,1,0,-9,1,-9,4,235.36455,-9,0,0,56,2,2,3,2,2,2019,4,2,6,0,5,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5679426,7.5299382,0,0,59.43,58.049999,28.26,29.190001,7,1,1,0,0,13,3,1,629,1287799.5,0,0,1385.2068 -15381,18875,34363,34364,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.8643637,8.6749611,0,1,0,-9,5,0,-1,12.883311,0,1,1,28,1,4,1,2,2,2019,1,1,5,0,46,52,15,1,0,1,0,17.301743,17.301743,0,0,0,0,0,0,0,0,0,0,0,6.8075275,0,0,0,38.32,52.759998,40.720001,54.380001,6,1,1,0,0,5,5,1,826.5,0,0,0,5264.9902 -15381,18875,34364,34363,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,4,8.8996239,8.9298716,0,1,0,-9,5,0,1,-41.934708,0,1,0,27,1,3,1,2,2,2019,1,2,11,0,47,42,15,1,0,1,0,19.71137,19.71137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.720001,54.380001,38.32,52.759998,5,1,1,0,0,5,5,1,826.5,0,0,0,5264.9902 -15382,18876,34365,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,0,4,0,4.93049,4.7082834,3,0,0,0,-9,0,-1059.354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.820333,19.256645,3,60.119999,54.799999,-9,-9,6,1,1,0,0,4,1,1,528,5908.8389,0,0,-153.7321 -15383,18877,34366,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,4,0,6.3738098,6.5485516,3,0,0,0,-9,0,-1038.7051,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9032626,6.4891577,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,2,1,1150,29408.4,0,0,1300.7427 -15384,18878,34367,-9,34369,34368,2,1,0,22,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-940.16882,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,22,9,0,45,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.049999,58.799999,-9,-9,4,4,2,1,0,8,1,1,683,284401.34,0,0,0 -15384,18879,34368,34369,-9,-9,3,1,1,58,1,0,0,0,1,-9,1,1,0,0,3,7.5578537,7.6317563,0,1,0,-9,33,0,6,52.49435,0,0,0,52,2,4,1,-9,-9,2019,1,1,15,4,40,40,15,1,1,1,0,6.4820991,6.4820991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.27,45.049999,52,53,5,4,5,0,0,8,4,1,1640,554410.63,0,0,2649.7637 -15384,18879,34369,34368,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,4,8.4610481,8.3156509,0,1,0,-9,33,0,-6,34.37957,0,0,0,58,1,3,1,-9,-9,2019,1,3,10,1,36,32,15,1,0,1,0,11.695827,11.695827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,34.27,45.049999,6,1,1,0,0,8,4,1,1640,554410.63,0,0,2649.7637 -15385,18880,34370,34371,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,-1,-32.056011,0,0,0,77,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,53.919998,52.23,6,1,1,0,0,4,2,1,406,711203.88,0,0,1735.6821 -15385,18880,34371,34370,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,7.4858265,6.9556012,1,0,-9,59,0,1,-62.339634,0,0,0,76,3,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4892035,7.1473665,0,0,53.919998,52.23,52,46,7,1,1,0,0,4,2,1,406,711203.88,0,0,1735.6821 -15386,18881,34372,34374,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.8805695,8.5925255,0,2,0,-9,9,0,-4,21.271877,0,0,0,47,2,5,1,2,3,2019,1,2,7,0,42,47,15,1,0,1,0,27.486395,27.486395,0,0,0,0,0,0,0,0,0,0,0,.58917683,0,0,0,63.48,51.849998,57.060001,57.759998,7,1,1,0,0,10,5,1,773,2669375.3,0,0,4619.5269 -15386,18881,34373,-9,34374,34372,4,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-970.12738,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,5,1,773,2669375.3,0,0,4619.5269 -15386,18881,34374,34372,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,5,8.6753531,8.8099232,0,2,0,-9,9,0,4,-60.561581,0,0,0,43,2,4,1,-9,-9,2019,1,1,8,0,37,20,15,1,0,1,0,20.594944,20.594944,0,0,0,0,0,0,0,0,0,0,0,.936113,0,0,0,57.060001,57.759998,63.48,51.849998,7,1,1,0,0,10,5,1,773,2669375.3,0,0,4619.5269 -15386,18882,34375,-9,34374,34372,3,1,0,18,2,0,1,0,2,1,11,3,0,0,3,7.6043653,7.5021501,0,3,0,0,0,-9,0,-1068.1495,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4947264,0,0,0,55.200001,47.5,-9,-9,4,1,1,0,0,10,3,1,620,125817.27,0,0,97.113083 -15387,18883,34376,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,0,5,8.081769,7.9416947,0,3,0,-9,0,-9,0,-1215.7506,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,52,0,15,1,0,-9,0,7.3271017,7.3271017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.700001,51.580002,-9,-9,2,1,1,0,0,13,4,1,278,11832.368,0,0,701.4325 -15388,18884,34377,34378,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,2,8.1396866,8.2044296,6.3802099,1,0,-9,40,0,4,65.817902,0,0,0,60,2,3,1,3,3,2019,1,2,13,1,38,49,15,1,0,1,0,10.679433,10.679433,0,0,0,0,0,0,0,7,1,1,0,0,6.2653313,5.0006413,3,53.18,38.139999,36.110001,53.490002,5,1,1,0,0,2,4,1,669,2208149.5,0,0,2700.3003 -15388,18884,34378,34377,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.4003625,7.8015814,6.4610596,1,0,-9,40,0,-4,62.564484,0,0,0,64,2,2,1,1,2,2019,1,1,15,3,23,20,15,1,0,1,0,10.376648,10.376648,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0513945,13.46301,3,36.110001,53.490002,53.18,38.139999,3,1,1,0,0,2,4,1,669,2208149.5,0,0,2700.3003 -15389,18885,34379,34380,-9,-9,1,1,0,44,1,0,2,0,3,-9,2,1,0,0,4,7.3214235,7.3597612,0,2,0,-9,10,0,-2,-48.475842,0,0,1,46,2,5,1,3,3,2019,1,2,14,4,43,30,15,1,1,1,0,5.7906885,5.7906885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,54.689999,57.470001,6,1,1,0,0,10,4,1,963.5,1618383.1,0,0,3752.4395 -15389,18885,34380,34379,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,0,5,8.7375298,8.8700113,7.1669726,2,0,-9,10,0,2,-33.661873,0,0,0,44,3,4,1,-9,-9,2019,1,1,7,0,40,45,15,1,0,1,0,20.401833,20.401833,0,0,0,0,0,0,0,0,1,1,0,0,7.3250098,0,0,54.689999,57.470001,51.240002,58.84,6,1,1,0,0,10,4,1,963.5,1618383.1,0,0,3752.4395 -15389,18886,34381,-9,34379,34380,3,1,1,18,2,0,2,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1002.4091,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,19,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.34,68.809998,-9,-9,3,1,1,1,0,10,4,1,879,3109.0181,0,0,0 -15390,18887,34382,-9,34383,34384,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-957.21729,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,819.33331,654090.5,0,0,5971.98 -15390,18887,34383,34384,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,0,3,6.9873953,7.4175978,0,2,0,-9,6,0,2,29.696543,0,0,1,42,2,5,1,3,3,2019,1,2,17,5,21,0,15,1,1,1,0,6.9669156,6.9669156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.060001,58.990002,57.060001,57.759998,5,1,1,0,0,12,5,1,819.33331,654090.5,0,0,5971.98 -15390,18887,34384,34383,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,0,5,9.5243263,9.6488752,7.4450355,2,0,-9,6,0,-2,39.472569,0,0,0,44,2,3,1,-9,-9,2019,1,1,6,0,42,0,15,1,0,1,0,32.353771,32.353771,0,0,0,0,0,0,0,0,0,0,0,0,8.0388298,0,0,57.060001,57.759998,40.060001,58.990002,6,1,1,0,0,12,5,1,819.33331,654090.5,0,0,5971.98 -15391,18888,34385,-9,34386,34387,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.9573,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,1,987,1104412.8,0,0,4171.6758 -15391,18888,34386,34387,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,0,3,9.6755438,9.7554226,0,2,0,-9,17,0,-3,-174.76976,0,0,0,50,2,3,1,1,1,2019,1,2,14,2,55,83,15,1,0,1,0,32.306667,32.306667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.970001,51.900002,57.09,46.700001,5,1,1,0,0,8,5,1,987,1104412.8,0,0,4171.6758 -15391,18888,34387,34386,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,0,3,6.5508647,6.9850283,0,2,0,-9,17,0,3,65.994576,0,0,0,47,1,3,1,2,1,2019,1,1,7,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.700001,45.970001,51.900002,5,1,1,0,0,8,5,1,987,1104412.8,0,0,4171.6758 -15392,18889,34388,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-942.93781,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3129411,0,0,0,53.34,37.810001,-9,-9,6,1,1,0,0,7,1,1,300,0,0,0,858.60883 -15393,18890,34389,34390,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,0,4,8.6767464,8.6959162,0,1,0,-9,9,0,-1,-64.107399,0,0,0,49,3,3,1,-9,-9,2019,1,1,7,0,50,50,15,1,0,1,0,15.299993,15.299993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.990002,51.279999,5,1,1,0,0,11,4,0,209,-84188.789,0,0,3129.9053 -15393,18890,34390,34389,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,0,3,0,0,0,1,0,-9,9,0,1,-.6890536,0,0,0,48,3,4,1,-9,-9,2019,1,2,8,0,0,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.990002,51.279999,57.16,56.150002,4,1,1,0,0,11,4,0,209,-84188.789,0,0,3129.9053 -15393,18891,34391,-9,34390,34389,3,1,0,19,2,0,0,0,2,1,2,1,0,0,4,6.7131872,6.3705463,0,3,0,0,0,-9,0,-1056.3159,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,0,-9,1,5.7721376,5.7721376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,11,2,0,834,31482.945,0,0,1063.2991 -15394,18892,34392,-9,-9,-9,1,1,0,56,3,1,1,0,2,-9,2,1,0,0,4,8.0860014,7.838285,0,4,0,-9,0,-9,0,-1014.0382,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,0,15,1,0,-9,0,11.516024,11.516024,0,0,0,0,0,0,0,2,0,0,0,0,0,7.2025318,3,62.490002,55.09,-9,-9,6,1,1,0,0,5,3,1,164,251592.45,0,0,736.52057 -15394,18893,34393,-9,34392,-9,2,1,0,22,2,1,1,0,2,-9,2,1,0,0,4,7.8376946,7.9519053,0,3,0,-9,0,-9,0,-1043.2549,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,0,15,1,0,-9,1,8.8726301,8.8726301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,5,3,1,897,25487.648,0,0,417.55167 -15395,18894,34394,-9,34395,-9,1,1,0,43,2,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-918.84979,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,69.906723,3,38.68,55.459999,-9,-9,4,1,1,1,0,2,1,0,101,39025.297,0,0,119.07584 -15395,18895,34395,-9,-9,-9,2,1,0,75,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1094.1832,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,37.215355,0,0,0,0,1,0,1,0,0,0,0,51,46,-9,-9,5,1,1,0,0,2,1,0,712,72473.398,0,0,1891.4318 -15396,18896,34396,34397,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,3,7.7170925,7.9372568,0,1,0,-9,48,0,-6,-142.26553,0,0,0,69,3,3,3,3,3,2019,2,1,11,2,30,35,15,1,0,4,0,9.5656109,9.5656109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,48.209999,40,5,2,3,0,0,5,3,1,1757.5,508257.97,0,0,2372.8689 -15396,18896,34397,34396,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,5.9038639,6.0787487,1,0,-9,48,0,6,29.282139,0,0,0,63,2,3,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1311007,6.0425138,0,0,48.209999,40,50,47,6,2,3,0,0,5,3,1,1757.5,508257.97,0,0,2372.8689 -15397,18897,34398,34400,-9,-9,2,1,1,32,1,1,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,1,-9,13,0,-9,0,0,19,2,4,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.509998,59.080002,54.200001,57.490002,5,1,1,1,0,5,1,0,682.66669,0,0,0,1503.3887 -15397,18897,34399,-9,34400,34398,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1040.0344,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,1,0,682.66669,0,0,0,1503.3887 -15397,18897,34400,34398,-9,-9,1,1,0,19,1,1,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,1,1,-9,-13,0,0,1,1,32,2,4,3,-9,-9,2019,4,2,11,0,0,29,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,47.509998,59.080002,5,1,1,0,0,5,1,0,682.66669,0,0,0,1503.3887 -15398,18898,34401,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,4,0,7.0327864,7.088912,3,0,0,0,-9,0,-876.63068,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9513936,0,0,40.869999,52.459999,-9,-9,4,1,1,0,0,11,2,1,3053,244351.03,0,0,1585.8857 -15399,18899,34402,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,6,3,0,0,4,0,9.6147175,9.9160891,3,0,0,0,-9,0,-936.80615,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.5824652,8.1063871,15.916652,3,51.240002,58.84,-9,-9,6,1,1,0,0,4,5,1,279,615216.88,0,0,7315.1289 -15400,18900,34403,34404,-9,-9,1,1,1,69,1,0,0,0,2,-9,2,1,0,0,3,9.6911278,9.6073208,5.7354445,1,0,-9,52,0,-3,25.593912,0,0,0,72,2,2,3,3,2,2019,2,2,7,0,80,12,15,1,0,4,0,18.524057,18.524057,0,0,0,0,0,0,0,5.48,1,1,0,5.2740898,6.0882168,5.0254602,1,61.040001,39.41,58.130001,18.26,6,1,1,0,0,13,5,1,165,243027.72,0,0,9202.4141 -15400,18900,34404,34403,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,52,0,3,45.76976,0,0,0,69,2,3,1,2,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,25.408291,14.091264,0,0,0,0,1,1,0,0,0,0,0,58.130001,18.26,61.040001,39.41,6,1,1,0,0,13,5,1,165,243027.72,0,0,9202.4141 -15400,18901,34405,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,6.4013205,6.1405458,0,3,0,0,0,-9,0,-1028.712,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,8,0,15,1,0,-9,0,6.1858044,6.1858044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,13,2,1,421,126035.21,0,0,-98.280045 -15401,18902,34406,34408,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,0,4,8.2205801,8.382884,0,2,0,-9,9,0,3,77.099968,0,0,1,35,1,4,1,2,2,2019,1,2,10,1,28,34,15,1,0,1,0,16.543793,16.543793,0,0,0,0,0,0,0,0,0,0,0,2.5957634,0,0,0,57.16,56.150002,60.119999,54.799999,6,1,1,0,0,2,5,1,821,273764.91,0,0,3619.8264 -15401,18902,34407,-9,34406,34408,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.4917,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,821,273764.91,0,0,3619.8264 -15401,18902,34408,34406,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,0,4,9.0009565,8.942749,0,2,0,-9,9,0,-3,-55.654015,0,0,0,38,1,4,1,2,1,2019,1,1,6,0,45,45,15,1,0,1,0,21.52034,21.52034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,57.16,56.150002,6,1,1,0,0,2,5,1,821,273764.91,0,0,3619.8264 -15401,18902,34409,-9,34406,34408,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.4403,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,821,273764.91,0,0,3619.8264 -15402,18903,34410,-9,-9,-9,1,1,0,47,2,1,1,0,3,-9,2,1,0,0,3,8.1416111,8.1672163,0,4,0,0,0,-9,0,-954.09717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,30,15,1,0,-9,0,11.740522,11.740522,0,0,0,0,0,0,0,2,1,1,0,0,0,1.1579647,3,34.169998,57.25,-9,-9,2,1,1,0,0,13,4,0,386,245465.25,0,0,1752.4995 -15402,18904,34411,-9,34412,-9,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-875.22705,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,0,773.5,-5024.25,0,0,1086.3666 -15402,18904,34412,-9,34410,-9,2,1,0,23,2,1,1,0,2,-9,2,1,0,0,4,7.8960438,8.3761187,0,3,0,0,0,-9,0,-1040.7064,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,36,40,15,1,0,-9,1,7.8109288,7.8109288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,13,3,0,773.5,-5024.25,0,0,1086.3666 -15403,18905,34413,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,2,0,3.2446601,3.2707734,3,0,0,0,-9,0,-1061.2981,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,4.8715258,0,0,1,1,0,3.1136198,3.2133555,0,0,61.689999,15.28,-9,-9,6,1,1,0,0,12,1,0,399,-38959.781,0,0,243.96811 -15404,18906,34414,-9,-9,-9,1,1,1,82,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1000.3995,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,-9,-9,6,3,4,0,0,6,1,0,161,0,0,0,-127.46548 -15405,18907,34415,34417,-9,-9,1,1,1,44,1,0,2,0,3,-9,2,1,0,0,5,8.3100796,8.0723972,0,2,0,-9,19,0,-1,-54.936199,0,0,0,45,2,4,1,2,2,2019,1,2,9,2,45,30,15,1,0,1,0,7.3379455,7.3379455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.259998,40.630001,49,55,7,2,3,0,0,13,4,0,366,125198.49,0,0,3784.7942 -15405,18907,34416,-9,34417,34415,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-936.62012,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,13,4,0,366,125198.49,0,0,3784.7942 -15405,18907,34417,34415,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,8.7734146,8.710762,0,2,0,-9,19,0,1,-57.857464,0,0,0,44,3,5,1,3,3,2019,1,1,10,1,38,38,15,1,0,1,0,18.520948,18.520948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,55.259998,40.630001,6,2,3,0,0,13,4,0,366,125198.49,0,0,3784.7942 -15405,18908,34418,-9,34417,34415,3,1,0,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-996.24139,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,71.5,0,0,0,0,0,77.866768,3,38.540001,56.369999,-9,-9,4,2,3,0,0,13,4,0,1379,108346.73,0,0,0 -15406,18909,34419,34420,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.2082272,8.2217684,0,1,0,-9,4,0,-3,-35.466461,0,0,0,55,2,4,1,3,2,2019,1,1,9,0,44,0,15,1,0,1,0,11.273588,11.273588,0,0,0,0,0,0,0,0,0,0,0,1.3272647,0,0,0,55.299999,55.599998,55.73,53.98,6,1,1,0,0,11,4,1,2792.5,400661.94,0,0,2667.9614 -15406,18909,34420,34419,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.2390013,7.7612782,0,1,0,-9,4,0,3,36.098625,0,0,0,52,2,4,1,3,3,2019,1,2,11,2,26,23,15,1,0,1,0,11.656227,11.656227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.73,53.98,55.299999,55.599998,6,1,1,0,0,11,4,1,2792.5,400661.94,0,0,2667.9614 -15406,18910,34421,-9,34420,34419,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.77771,7.8766098,0,3,0,0,0,-9,0,-840.13947,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,39,0,15,1,0,-9,1,6.9474959,6.9474959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.529999,-9,-9,6,1,1,0,0,11,3,1,727,145913.84,0,0,2426.8411 -15407,18911,34422,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,0,3,0,6.7614555,6.9783416,3,0,0,0,-9,0,-1025.6678,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5843349,7.1105351,0,0,58.080002,40.759998,-9,-9,6,1,1,0,0,10,2,1,1050,341103,0,0,731.34888 -15408,18912,34423,34424,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.7723532,8.9521704,0,1,0,-9,10,0,11,91.359444,0,0,0,41,2,4,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,26.228884,26.228884,0,0,0,0,0,0,0,0,0,0,0,1.5135231,0,0,0,57.16,56.150002,59.529999,56.439999,6,1,1,0,0,4,5,1,471.5,679144.75,0,0,4190.4082 -15408,18912,34424,34423,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,4,8.2354221,8.0583849,0,1,0,-9,10,0,-11,-15.567657,0,0,1,52,2,4,1,-9,-9,2019,1,1,8,0,48,46,15,1,0,1,0,7.3817391,7.3817391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,57.16,56.150002,6,1,1,0,0,4,5,1,471.5,679144.75,0,0,4190.4082 -15409,18913,34425,34426,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.7562685,6.4939809,1,0,-9,8,0,-2,115.48037,0,0,0,72,3,4,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.1144509,6.4270239,1.1663983,3,59.07,43.049999,51.02,56.130001,6,1,1,0,0,2,3,0,455,635560.25,0,0,3231.2241 -15409,18913,34426,34425,-9,-9,2,1,0,72,1,0,0,0,3,-9,1,1,0,0,4,8.2029934,7.960752,0,1,0,-9,8,0,2,-.15850301,0,0,0,70,2,3,3,-9,-9,2019,2,1,8,0,40,48,15,1,0,4,0,9.5880966,9.5880966,0,0,0,0,0,0,0,0,1,1,0,7.2607627,0,0,0,51.02,56.130001,59.07,43.049999,2,1,1,0,0,2,3,0,455,635560.25,0,0,3231.2241 -15410,18914,34427,34429,-9,-9,1,1,1,40,1,0,1,0,2,-9,2,1,0,0,4,7.9589987,7.6829686,0,2,0,-9,12,0,2,-114.47773,0,0,0,38,2,4,1,2,2,2019,1,2,12,0,40,39,15,1,0,1,0,9.9275417,9.9275417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,51.830002,57.200001,6,1,1,0,0,12,3,0,476.33334,578814.69,0,0,2153.4551 -15410,18914,34428,-9,34429,34427,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.0524,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,3,0,476.33334,578814.69,0,0,2153.4551 -15410,18914,34429,34427,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,0,4,6.7041163,7.1464286,0,2,0,-9,12,0,-2,119.90124,0,0,1,40,2,4,1,2,2,2019,1,1,6,0,16,16,15,1,0,1,0,5.2654891,5.2654891,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,57.16,56.150002,6,1,1,0,0,12,3,0,476.33334,578814.69,0,0,2153.4551 -15411,18915,34430,34431,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,4,0,8,0,0,0,0,68,3,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,10.267337,0,0,0,0,71.5,1,1,0,0,0,68.60276,1,50,46,51,48,5,1,1,0,0,11,1,0,773.5,41938.414,0,0,3043.2065 -15411,18915,34431,34430,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,4,0,-8,0,-9,0,0,76,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,6.859333,0,0,0,0,5.48,1,1,0,0,0,8.4668875,1,51,48,50,46,5,1,1,0,0,11,1,0,773.5,41938.414,0,0,3043.2065 -15412,18916,34432,-9,-9,-9,1,1,0,22,2,0,0,0,1,1,2,1,0,0,5,9.0909443,9.2494812,0,3,0,0,0,-9,0,-992.62274,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,70,0,15,1,0,-9,0,16.654175,16.654175,0,0,0,0,0,0,0,0,0,0,0,4.4716587,0,0,0,46.34,61.240002,-9,-9,5,1,1,0,0,8,5,0,371,145428.8,0,0,2786.0447 -15413,18917,34433,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,1,1,0,1,5,0,0,0,3,0,-9,0,-9,0,-1114.2891,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.814,3,56.34,53.98,-9,-9,7,1,1,0,0,8,1,0,274,-77080.164,0,0,4514.6685 -15414,18918,34434,34435,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,13,-47.160652,0,0,0,64,3,5,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.18,52.110001,50.52,45.59,2,1,1,0,0,12,3,1,1224.5,159306.84,0,0,1185.2098 -15414,18918,34435,34434,-9,-9,1,1,0,64,1,0,0,0,3,-9,2,1,0,0,5,7.9278336,7.9373555,0,1,0,-9,9,0,-13,25.722773,0,0,0,77,2,2,3,3,3,2019,2,2,6,0,39,39,15,1,0,4,0,9.1989117,9.1989117,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.52,45.59,52.18,52.110001,1,1,1,0,0,12,3,1,1224.5,159306.84,0,0,1185.2098 -15415,18919,34436,-9,34438,34437,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.23462,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,5,1,1265,1798111.5,0,0,5461.3364 -15415,18919,34437,34438,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,3,9.4682589,9.6761866,0,2,0,-9,9,0,2,-74.321556,0,0,0,51,2,4,1,2,2,2019,1,1,12,0,80,90,15,1,0,1,0,15.452798,15.452798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.41,44.25,46.900002,56.66,5,1,1,0,0,2,5,1,1265,1798111.5,0,0,5461.3364 -15415,18919,34438,34437,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,0,4,7.9949465,7.838788,0,2,0,-9,9,0,-2,-71.357407,0,0,0,53,1,3,1,2,2,2019,1,2,0,0,26,23,15,1,0,1,0,13.627872,13.627872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.900002,56.66,50.41,44.25,6,1,1,0,0,2,5,1,1265,1798111.5,0,0,5461.3364 -15416,18920,34439,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,7.9900842,7.7754726,3,0,0,0,-9,0,-946.47699,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.108503,7.8861341,0,0,47.240002,46.959999,-9,-9,3,1,1,0,0,2,3,1,261,768680.94,0,0,2388.605 -15417,18921,34440,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,2,1,0,0,5,6.6109748,8.0011053,7.6766043,3,0,0,0,-9,0,-851.23694,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,15,0,15,1,0,-9,0,4.4759245,4.4759245,0,0,0,0,0,0,0,0,1,1,0,.74761051,7.6798873,0,0,57.060001,57.759998,-9,-9,6,2,3,0,0,7,4,1,133,1030293.9,0,0,2501.7847 -15418,18922,34441,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,8.7258682,8.3050432,0,3,0,0,0,-9,0,-886.45374,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,35,35,15,1,0,-9,0,13.951778,13.951778,0,0,0,0,0,0,0,0,1,1,0,2.7411363,0,0,0,51.490002,57.57,-9,-9,5,1,1,0,0,2,4,0,366,183776.3,0,0,1289.3475 -15419,18923,34442,34443,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,0,3,9.3490896,9.7308569,7.8147798,1,0,-9,48,0,3,-98.199944,0,0,0,64,2,3,3,3,3,2019,2,2,11,1,49,30,15,1,0,4,0,30.294102,30.294102,0,0,0,0,0,0,0,0,1,1,0,7.7079201,7.466217,0,0,49.669998,51.419998,50.549999,46.830002,6,1,1,0,0,11,5,1,423.5,1719401.3,0,0,7784.7881 -15419,18923,34443,34442,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,-3,.19630748,0,0,0,67,2,3,1,3,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.549999,46.830002,49.669998,51.419998,6,1,1,0,0,11,5,1,423.5,1719401.3,0,0,7784.7881 -15420,18924,34444,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,2,1,0,0,4,7.4798236,7.2528148,0,3,0,0,0,-9,0,-962.96045,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,25,15,1,0,-9,0,7.2873669,7.2873669,0,0,0,0,0,0,0,0,1,1,0,1.1455384,0,0,0,52.970001,48.43,-9,-9,5,1,1,0,0,4,3,0,827,-10048.083,0,0,950.44171 -15420,18925,34445,-9,34444,-9,2,1,1,19,2,0,0,0,2,1,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1011.183,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.27,38.549999,-9,-9,5,1,1,1,1,4,1,0,1500,-63930.168,0,0,358.80548 -15421,18926,34446,34447,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,0,4,7.9767003,7.8117061,0,1,0,-9,7,0,2,98.533195,0,0,1,31,1,3,1,1,2,2019,1,2,21,10,38,37,15,1,1,1,0,8.4166451,8.4166451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.139999,64.629997,27.450001,63.27,3,1,1,0,0,5,5,1,1097,102136.38,0,0,3796.0425 -15421,18926,34447,34446,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,8.937521,8.4759083,0,1,0,-9,7,0,-2,-97.223839,0,0,0,33,1,4,1,-9,-9,2019,1,1,14,3,43,41,15,1,0,1,0,16.054514,16.054514,0,0,0,0,0,0,0,0,0,0,0,2.6839957,0,0,0,27.450001,63.27,33.139999,64.629997,4,1,1,0,0,5,5,1,1097,102136.38,0,0,3796.0425 -15422,18927,34448,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,1,1,0,0,5,7.5660467,8.8935442,8.5714617,3,0,0,0,-9,0,-991.93658,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,7,10,15,1,0,-9,0,20.723377,20.723377,0,0,0,0,0,0,0,0,1,1,0,7.6254568,8.5465927,0,0,55.830002,54.240002,-9,-9,6,1,1,0,0,7,5,1,722,1066403.8,0,0,4162.3306 -15423,18928,34449,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,2,0,7.1432905,7.034812,3,0,0,0,-9,0,-1047.7532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,12.876865,0,2.4125302,0,0,101.45176,0,1,1,0,8.2502108,7.3307562,0,0,68.459999,20,-9,-9,6,1,1,0,0,7,2,1,949,11985.846,0,0,1596.0793 -15424,18929,34450,34451,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,8.4347372,8.4966192,6.3139801,1,0,-9,35,0,-2,-91.623337,0,0,0,56,2,2,1,2,3,2019,1,1,8,1,42,48,15,1,0,1,0,13.138947,13.138947,0,0,0,0,0,0,0,0,0,0,0,0,6.4992595,0,0,52.810001,41.099998,57.48,37.400002,5,1,1,0,0,5,5,1,467.5,1332390.4,0,0,11220.766 -15424,18929,34451,34450,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,0,2,9.8709135,9.6022816,0,1,0,-9,35,0,2,-135.9791,0,0,0,54,2,2,1,2,2,2019,1,2,7,0,20,20,15,1,0,1,0,88.851051,88.851051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.48,37.400002,52.810001,41.099998,6,1,1,0,0,5,5,1,467.5,1332390.4,0,0,11220.766 -15424,18930,34452,-9,34450,34451,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,7.9935913,8.0501728,0,3,0,0,0,-9,0,-996.11877,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,48,42,15,1,0,-9,1,6.8085709,6.8085709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,-9,-9,4,1,1,0,0,5,4,1,156,102185.94,0,0,1307.1432 -15425,18931,34453,-9,-9,-9,1,1,0,26,2,1,1,0,2,-9,2,1,0,0,3,7.5303788,7.6579962,6.0443568,4,0,0,0,-9,0,-1018.8353,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,30,30,15,1,0,-9,0,8.2523355,8.2523355,0,0,0,0,0,0,0,0,1,1,0,5.5909834,0,0,0,59.32,46.98,-9,-9,6,1,1,0,0,9,3,0,1062.5,-4385.6758,0,0,1883.417 -15425,18931,34454,-9,34453,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1125.3824,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,1062.5,-4385.6758,0,0,1883.417 -15426,18932,34455,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-844.60797,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,17.617943,0,0,0,0,1,1,0,0,0,0,0,38,20.27,-9,-9,6,1,1,0,0,12,1,1,872,-92867.281,0,0,1460.8745 -15427,18933,34456,-9,-9,-9,1,1,0,62,3,1,2,0,3,-9,8,3,1,1,3,0,5.8468032,5.9800491,4,0,0,0,-9,0,-954.69348,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3397837,0,0,49,48,-9,-9,5,1,1,0,0,6,2,0,287,40020.195,0,0,947.97968 -15427,18934,34457,-9,34456,-9,5,1,1,29,2,1,2,0,2,-9,2,1,0,0,3,8.1076164,8.2778063,0,3,0,-9,0,0,0,-1025.3037,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,54,42,15,1,0,-9,1,6.7313476,6.7313476,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.889999,32.759998,-9,-9,5,1,1,0,0,6,4,0,301,44746.918,0,0,949.50476 -15427,18935,34458,-9,34459,-9,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-999.93915,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,6,3,0,277.33334,14062.636,0,0,2145.3125 -15427,18935,34459,-9,34456,-9,2,1,0,28,2,1,2,0,2,-9,2,1,0,0,2,7.4555507,7.6693697,3.1812272,3,0,0,0,-9,0,-905.08374,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,30,30,15,1,0,-9,1,6.8524103,6.8524103,0,0,0,0,0,0,0,0,1,1,0,3.7879851,0,0,0,46.919998,43.439999,-9,-9,5,1,1,0,0,6,3,0,277.33334,14062.636,0,0,2145.3125 -15427,18935,34460,-9,34459,-9,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1037.292,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,0,277.33334,14062.636,0,0,2145.3125 -15428,18936,34461,-9,34463,34462,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.4187,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,13,3,1,665.25,-674.36414,0,0,1920.9221 -15428,18936,34462,34463,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,0,4,8.3591089,8.3267317,0,2,0,-9,19,0,1,-25.228441,0,0,0,45,1,4,1,2,2,2019,1,2,8,1,40,40,15,1,0,1,0,13.206545,13.206545,0,0,0,0,0,0,0,0,1,1,0,3.7669315,0,0,0,39.959999,55.900002,47.099998,56.619999,5,1,1,0,0,13,3,1,665.25,-674.36414,0,0,1920.9221 -15428,18936,34463,34462,-9,-9,2,1,0,45,1,0,2,0,1,-9,1,1,0,0,4,6.5921822,6.0634861,0,2,0,-9,19,0,-1,190.52811,0,0,0,46,2,4,1,3,3,2019,1,1,10,0,30,20,15,1,0,1,0,2.3688695,2.3688695,0,0,0,0,0,0,0,0,1,1,0,2.1297281,0,0,0,47.099998,56.619999,39.959999,55.900002,6,1,1,0,0,13,3,1,665.25,-674.36414,0,0,1920.9221 -15428,18936,34464,-9,34463,34462,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.9472,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,665.25,-674.36414,0,0,1920.9221 -15429,18937,34465,34466,-9,-9,1,1,1,61,1,1,1,0,2,-9,2,1,0,0,3,8.7351809,8.7435207,6.6775794,2,0,-9,9,0,22,-65.601509,0,0,0,39,2,1,3,3,3,2019,2,2,14,2,47,55,15,1,0,3,0,14.053221,14.053221,0,0,0,0,0,0,0,5.48,1,1,0,0,6.9392796,2.4403844,2,53.290001,45.740002,32.5,17.73,5,1,1,0,0,6,4,1,844.5,168948,0,0,3008.5454 -15429,18937,34466,34465,-9,-9,2,1,0,39,1,1,1,0,2,-9,3,3,0,1,1,0,0,0,2,0,-9,9,0,-22,-10.501604,0,0,1,61,2,3,1,-9,-9,2019,3,1,15,3,0,6,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,17.73,53.290001,45.740002,4,1,1,1,0,6,4,1,844.5,168948,0,0,3008.5454 -15429,18938,34467,-9,34466,34465,3,1,0,18,2,1,1,1,3,-9,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-909.45068,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.23,48.869999,-9,-9,4,1,1,0,0,6,1,1,874.5,-104383.78,0,0,59.693802 -15429,18938,34468,-9,34467,-9,4,1,1,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-956.14215,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,6,1,1,874.5,-104383.78,0,0,59.693802 -15430,18939,34469,34470,-9,-9,2,1,0,60,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,18,0,-1,19.096556,0,0,0,61,1,3,3,3,2,2019,4,1,4,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.4693242,0,0,0,54.779999,39.639999,53.389999,44.470001,6,1,1,1,0,1,2,1,514,1203824.4,0,0,1324.8768 -15430,18939,34470,34469,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,3,0,7.2596688,7.2059965,1,0,-9,18,0,1,64.742935,0,0,0,60,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3920898,7.7338734,0,0,53.389999,44.470001,54.779999,39.639999,5,1,1,0,0,1,2,1,514,1203824.4,0,0,1324.8768 -15431,18940,34471,34473,-9,-9,1,1,0,40,1,2,2,0,2,-9,2,1,0,0,4,8.4649801,8.1953163,0,2,0,-9,11,0,4,-5.7334085,0,0,1,36,1,4,1,2,1,2019,1,2,9,0,31,0,15,1,0,1,0,15.960978,15.960978,0,0,0,0,0,0,0,0,1,1,0,2.8196542,0,0,0,57.16,56.150002,49.73,53.970001,6,1,1,0,0,12,5,1,1808,28372.338,0,0,3800.7734 -15431,18940,34472,-9,34471,34473,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.238,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,12,5,1,1808,28372.338,0,0,3800.7734 -15431,18940,34473,34471,-9,-9,2,1,1,36,1,2,2,0,1,-9,2,1,0,0,4,9.1541901,8.9943733,0,2,0,-9,11,0,-4,-38.817787,0,0,0,40,2,4,1,2,2,2019,1,1,8,1,60,90,15,1,0,1,0,17.488844,17.488844,0,0,0,0,0,0,0,0,1,1,0,1.9885687,0,0,0,49.73,53.970001,57.16,56.150002,6,1,1,0,0,12,5,1,1808,28372.338,0,0,3800.7734 -15431,18940,34474,-9,34471,34473,4,1,1,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1096.1276,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,12,5,1,1808,28372.338,0,0,3800.7734 -15432,18941,34475,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,0,2,7.4995608,7.8999147,0,3,0,0,0,-9,0,-1133.548,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,42,40,15,1,0,-9,0,5.7751923,5.7751923,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.599998,47.799999,-9,-9,6,1,1,0,0,9,3,0,184,124001.29,0,0,911.01849 -15432,18942,34476,-9,-9,34475,2,1,1,24,2,0,0,0,2,-9,2,1,0,0,2,8.0649996,7.9903517,0,3,0,0,0,-9,0,-1013.6243,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,38,39,15,1,0,-9,1,10.539461,10.539461,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.330002,37.400002,-9,-9,5,1,1,0,0,9,4,0,104,89628.109,0,0,995.16064 -15433,18943,34477,34478,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,63,0,3,0,0,0,0,81,3,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,11.203252,0,0,0,0,0,1,1,0,0,0,0,0,50,35,51,45,6,1,1,0,0,10,1,1,1049.5,308229.88,0,0,1398.0603 -15433,18943,34478,34477,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,63,0,-3,0,0,0,0,84,3,2,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.819411,0,0,0,51,45,50,35,6,1,1,0,0,10,1,1,1049.5,308229.88,0,0,1398.0603 -15434,18944,34479,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,5,0,7.9227724,7.8885326,3,0,0,0,-9,0,-1046.2407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2026434,8.0413456,0,0,52.130001,54.509998,-9,-9,7,1,1,0,0,9,4,1,733,815242.44,0,0,1977.5521 -15435,18945,34480,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,-9,0,-9,0,-1002.3946,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.32,59.619999,-9,-9,1,1,1,0,0,2,1,0,380,27771.955,0,0,502.73608 -15436,18946,34481,34482,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,2,0,7.3278952,7.7306623,1,0,-9,51,0,-3,159.20813,0,0,0,73,2,3,3,2,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.083637,7.3864398,0,0,55.950001,36.700001,49.040001,55.860001,6,1,1,0,0,12,4,1,552,1789664,0,0,3944.6455 -15436,18946,34482,34481,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,8.3160191,8.1445036,1,0,-9,51,0,3,81.447952,0,0,0,70,1,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.57819879,8.5302839,0,0,49.040001,55.860001,55.950001,36.700001,5,1,1,0,0,12,4,1,552,1789664,0,0,3944.6455 -15437,18947,34483,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1036.1113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.419998,42.580002,-9,-9,6,1,1,0,0,7,1,1,1440,-189682.77,0,0,1237.3784 -15438,18948,34484,34485,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,0,4,8.8591337,8.6909485,0,1,0,-9,29,0,-4,-4.6096201,0,0,0,58,3,3,1,3,2,2019,1,1,8,0,36,36,15,1,0,1,0,16.829956,16.829956,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.91,59.889999,54.369999,54.799999,5,3,4,0,0,8,5,1,429.5,316672.78,0,0,2963.6042 -15438,18948,34485,34484,-9,-9,1,1,0,58,1,0,0,0,3,-9,2,1,0,0,3,7.8401527,8.3415327,6.8485303,1,0,-9,29,0,4,30.32704,0,0,0,54,3,4,1,3,3,2019,1,2,7,0,35,0,15,1,0,1,0,8.4805288,8.4805288,0,0,0,0,0,0,0,0,1,0,1,0,6.8931575,0,0,54.369999,54.799999,45.91,59.889999,6,3,4,0,0,8,5,1,429.5,316672.78,0,0,2963.6042 -15439,18949,34486,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1021.8314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.0401304,0,0,0,39.950001,36.040001,-9,-9,3,1,1,0,0,9,1,1,542,-81142.359,0,0,-427.70135 -15440,18950,34487,34488,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,0,4,8.6252108,8.6846733,0,1,0,-9,32,0,4,70.766907,0,0,0,51,2,2,1,3,3,2019,1,1,9,1,0,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6163402,0,0,0,53,54,28.77,34.669998,6,1,1,0,0,4,5,1,608,465146,0,0,2268.9502 -15440,18950,34488,34487,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,2,7.7433586,7.4635267,0,1,0,-9,32,0,-4,-49.458424,0,0,0,55,3,4,1,3,3,2019,1,2,25,10,43,48,15,1,1,1,0,5.0653014,5.0653014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.77,34.669998,53,54,5,1,1,0,0,4,5,1,608,465146,0,0,2268.9502 -15440,18951,34489,-9,34488,34487,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,7.5955915,7.6460404,0,3,0,0,0,-9,0,-1063.8895,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,35,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,4,3,1,659,130189.18,0,0,866.51801 -15440,18952,34490,-9,34488,34487,4,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.3446159,8.3128738,0,3,0,0,0,-9,0,-1068.6699,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,45,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.18800826,0,0,0,48,59,-9,-9,5,1,1,0,0,4,4,1,173,-126892.42,0,0,1669.5808 -15441,18953,34491,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,3,8.4141665,8.304616,0,3,0,0,0,-9,0,-947.6441,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,47,50,15,1,0,-9,0,9.0097885,9.0097885,0,0,0,0,0,0,0,0,1,1,0,5.4291825,0,0,0,53.139999,45.740002,-9,-9,3,1,1,0,0,7,4,1,1111,549576.13,0,0,1159.5504 -15442,18954,34492,-9,34493,-9,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-935.17786,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,3,1,1439,-17904.297,0,0,1815.97 -15442,18954,34493,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,1,1,0,0,5,8.4151525,7.8834052,0,4,0,-9,0,1,0,-1072.0172,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,36,40,15,1,0,-9,0,11.669608,11.669608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.139999,63.75,-9,-9,3,1,1,0,0,6,3,1,1439,-17904.297,0,0,1815.97 -15443,18955,34494,34495,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,8.9661312,8.4967642,0,1,0,-9,7,0,-8,80.033844,0,0,0,56,1,4,1,3,2,2019,1,2,11,0,43,45,15,1,0,1,0,18.699774,18.699774,0,0,0,0,0,0,0,0,0,0,0,7.0572481,0,0,0,50.509998,53.709999,50.48,56.400002,6,1,1,0,0,2,5,1,1563.5,2651524,0,0,4186.5127 -15443,18955,34495,34494,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,0,4,8.8495512,8.9198751,0,1,0,-9,7,0,8,108.16992,0,0,0,48,1,3,1,-9,-9,2019,1,1,10,0,40,38,15,1,0,1,0,18.341179,18.341179,0,0,0,0,0,0,0,0,0,0,0,5.9766412,0,0,0,50.48,56.400002,50.509998,53.709999,7,1,1,0,0,2,5,1,1563.5,2651524,0,0,4186.5127 -15444,18956,34496,34497,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,4,0,6.3037744,5.8603492,1,0,-9,59,0,-3,34.113712,0,0,0,80,1,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.726573,5.6646514,0,0,60.689999,53.18,60.119999,54.799999,7,1,1,0,0,2,3,1,484.5,2542597,0,0,4314.0908 -15444,18956,34497,34496,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,0,4,0,8.0937529,8.0275803,1,0,-9,59,0,3,-70.27092,0,0,0,77,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0287523,8.2198677,0,0,60.119999,54.799999,60.689999,53.18,6,1,1,0,0,2,3,1,484.5,2542597,0,0,4314.0908 -15445,18957,34498,34499,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.1095867,7.9878836,4.2578354,1,0,-9,21,0,5,115.59135,-9,0,0,52,3,3,1,3,3,2019,1,2,5,0,36,0,15,1,0,1,0,9.5809736,9.5809736,0,0,0,0,0,0,0,0,0,0,0,0,4.5594749,0,0,61.799999,49.970001,47.169998,44.25,5,1,1,0,0,2,4,1,262.5,1189309.3,0,0,1633.6436 -15445,18957,34499,34498,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,0,3,7.4476929,7.1692662,0,1,0,-9,21,0,-5,79.411797,-9,0,0,57,2,4,1,-9,3,2019,1,1,8,1,35,0,15,1,0,1,0,5.3770332,5.3770332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.169998,44.25,61.799999,49.970001,4,1,1,0,0,2,4,1,262.5,1189309.3,0,0,1633.6436 -15445,18958,34500,-9,34499,34498,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,4,7.7158828,7.33286,0,3,0,0,0,-9,0,-1085.7615,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,20,0,15,1,0,-9,1,11.73743,11.73743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.490002,45.330002,-9,-9,4,1,1,0,0,2,3,1,225,-137537.83,0,0,340.91714 -15446,18959,34501,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,0,3,0,8.6202545,8.5366936,3,0,0,0,-9,0,-1097.1506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,7.7181001,8.7520819,65.163071,3,54.369999,54.799999,-9,-9,5,1,1,0,0,2,5,1,351,1348595.3,0,0,1997.7803 -15447,18960,34502,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,0,3,0,7.483737,7.309792,3,0,0,0,-9,0,-1014.5471,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,6.9620199,0,0,0,0,1,1,0,4.7486405,7.5065417,0,0,48.290001,31.049999,-9,-9,5,1,1,0,0,13,3,1,3418,814191.19,0,0,1212.9009 -15448,18961,34503,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1013.45,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.280001,26.5,-9,-9,1,1,1,1,1,11,1,0,359,136235.64,0,0,349.30878 -15449,18962,34504,34505,-9,-9,1,1,1,58,1,0,1,0,1,-9,2,1,0,0,3,8.8077059,8.857275,0,2,0,-9,26,0,9,106.92323,0,0,0,49,1,3,3,3,2,2019,2,2,20,6,41,48,15,1,1,3,0,23.386635,23.386635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.260002,39.169998,34.060001,49.240002,2,4,2,0,0,8,4,1,353,954289,0,0,2355.2124 -15449,18962,34505,34504,-9,-9,2,1,0,49,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,26,0,0,-42.081703,0,0,0,58,1,3,1,3,-9,2019,3,1,24,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.060001,49.240002,64.260002,39.169998,4,2,3,0,1,8,4,1,353,954289,0,0,2355.2124 -15449,18962,34506,-9,34505,34504,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-877.42053,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.380001,43.200001,-9,-9,5,2,3,0,0,8,4,1,353,954289,0,0,2355.2124 -15449,18963,34507,-9,34505,34504,3,1,0,22,2,0,1,0,1,-9,2,1,0,0,5,7.5219698,7.6236134,0,3,0,0,0,-9,0,-956.7959,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,35,0,15,1,0,-9,1,7.9480834,7.9480834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.799999,-9,-9,6,2,3,0,0,8,3,1,748,-127741.11,0,0,1907.6862 -15449,18964,34508,-9,34505,34504,5,1,1,24,2,0,1,0,1,-9,2,1,0,0,4,8.3403282,8.4467335,0,3,0,0,0,-9,0,-1027.6353,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,40,42,15,1,0,-9,1,12.962574,12.962574,0,0,0,0,0,0,0,0,1,1,0,4.4452939,0,0,0,49,58,-9,-9,5,2,3,0,0,8,4,1,492,36458.121,0,0,1577.0544 -15450,18965,34509,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,0,3,4.953701,4.9159756,0,3,0,0,0,-9,0,-981.67609,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.17660747,0,0,0,19.940001,64.129997,-9,-9,3,1,1,0,0,5,2,0,1040,40179.945,0,0,917.29285 -15451,18966,34510,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,1,1,0,0,3,4.6080651,4.4733391,0,3,0,-9,0,0,0,-999.64569,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,40,40,15,1,0,-9,0,.3609443,.3609443,0,0,0,0,0,0,0,0,1,1,0,6.7832885,0,0,0,55.290001,44.790001,-9,-9,6,1,1,0,0,5,2,1,81,355700.97,0,0,1092.4653 -15452,18967,34511,-9,34512,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-980.14362,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,1,0,753,-10634.152,0,0,930.65167 -15452,18967,34512,-9,-9,-9,1,1,0,32,2,0,3,0,2,-9,2,1,0,0,1,0,0,0,4,0,0,0,-9,0,-978.81158,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.7793763,3,3.8900001,51.5,-9,-9,1,1,1,0,0,12,1,0,753,-10634.152,0,0,930.65167 -15453,18968,34513,34515,-9,-9,3,1,1,55,1,0,1,0,3,-9,1,1,0,0,2,7.7473984,8.2002945,0,2,0,-9,7,0,7,-110.78463,0,0,0,48,1,2,1,-9,-9,2019,1,1,12,0,50,45,15,1,0,1,0,5.6309505,5.6309505,0,0,0,0,0,0,0,0,0,0,0,7.3542585,0,0,0,51.080002,36.040001,36.66,52.759998,4,1,1,0,0,9,5,1,1251,905222.69,0,0,4583.2217 -15453,18968,34514,-9,34515,34513,2,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.96484,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,1251,905222.69,0,0,4583.2217 -15453,18968,34515,34513,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,0,2,8.9663763,9.1167727,0,2,0,-9,7,0,-7,-121.06747,0,0,0,55,3,2,1,2,2,2019,1,3,12,0,38,37,15,1,0,1,0,21.92024,21.92024,0,0,0,0,0,0,0,0,0,0,0,4.1067324,0,0,0,36.66,52.759998,51.080002,36.040001,5,1,1,0,0,9,5,1,1251,905222.69,0,0,4583.2217 -15454,18969,34516,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,4,0,7.4843597,7.6333413,3,0,0,0,-9,0,-1106.7557,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83916062,8.0969954,0,0,47.610001,55.040001,-9,-9,5,1,1,0,0,9,3,1,208,1346630.1,0,0,1186.8154 -15455,18970,34517,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,2,0,7.1713133,7.3818231,3,0,0,0,-9,0,-1017.6255,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.534569,7.3864717,0,0,44.91,32.619999,-9,-9,6,1,1,0,0,13,3,1,388,896268.88,0,0,2480.2429 -15456,18971,34518,34519,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,10,0,-2,25.479572,0,0,0,72,3,4,3,-9,-9,2019,4,2,16,4,0,0,15,4,1,4,0,0,0,1,0,23.351425,12.973986,0,0,0,0,1,1,0,0,0,0,0,34.470001,19.620001,50.049999,55.41,2,1,1,0,0,10,2,1,306.5,89684.648,0,0,1408.7908 -15456,18971,34519,34518,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,4.5108066,3.983037,1,0,-9,10,0,2,55.377033,0,0,0,70,3,1,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.6808553,3.9923749,70.5662,1,50.049999,55.41,34.470001,19.620001,5,1,1,0,0,10,2,1,306.5,89684.648,0,0,1408.7908 -15457,18972,34520,34521,-9,-9,2,1,0,37,1,0,0,0,2,-9,3,3,0,0,2,0,0,0,1,0,-9,7,0,0,26.179827,0,0,1,46,2,2,1,2,3,2019,3,1,25,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,30.34,32.09,38.689999,57.02,2,1,1,1,1,6,4,1,263.5,1124933.6,0,0,2203.0703 -15457,18972,34521,34520,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,2,8.7444553,8.6402369,0,1,0,-9,7,0,9,149.84273,0,0,0,37,2,2,3,2,2,2019,2,2,9,0,39,43,15,1,0,3,0,19.784378,19.784378,0,0,0,0,0,0,0,0,0,0,0,4.1265926,0,0,0,38.689999,57.02,30.34,32.09,3,1,1,0,0,6,4,1,263.5,1124933.6,0,0,2203.0703 -15458,18973,34522,34523,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,5,7.7483797,7.2526627,0,2,0,-9,23,0,-7,2.6422765,0,0,1,49,2,4,1,2,2,2019,1,1,7,0,25,30,15,1,0,1,0,10.811769,10.811769,0,0,0,0,0,0,0,0,0,0,0,.78173107,0,0,0,54.099998,59.110001,48.869999,58.549999,6,1,1,0,0,10,3,1,646,234739.52,0,0,4885.1875 -15458,18973,34523,34522,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,0,4,6.9906535,7.3223834,0,2,0,-9,23,0,7,-234.78693,0,0,0,42,2,5,1,-9,-9,2019,1,2,13,4,50,40,15,1,1,1,0,3.5387404,3.5387404,0,0,0,0,0,0,0,0,0,0,0,8.9580641,0,0,0,48.869999,58.549999,54.099998,59.110001,6,1,1,0,0,10,3,1,646,234739.52,0,0,4885.1875 -15458,18974,34524,-9,34522,34523,3,1,1,20,2,0,1,0,2,-9,2,1,0,0,5,7.8843918,7.8786964,0,3,0,0,0,-9,0,-1057.9664,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,35,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,10,3,1,423,93357.539,0,0,658.94409 -15458,18975,34525,-9,34522,34523,4,1,1,18,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1100.9036,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.15395512,0,0,0,42.900002,55.84,-9,-9,4,1,1,0,0,10,3,1,326,-146094.66,0,0,-155.54094 -15459,18976,34526,34527,-9,-9,2,1,1,37,1,0,2,0,3,-9,1,1,0,0,4,6.8372464,6.7420197,0,2,0,-9,15,0,2,4.3615985,0,0,0,35,1,4,1,2,3,2019,1,1,12,0,55,45,15,1,0,1,0,1.9068228,1.9068228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.240002,54.27,45.91,59.889999,6,1,1,0,0,1,3,1,1118.25,-63106.344,0,0,1914.3662 -15459,18976,34527,34526,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,4,7.6634784,7.7377486,0,2,0,-9,15,0,-2,-29.498825,0,0,1,37,3,4,1,2,2,2019,1,2,10,0,17,17,15,1,0,1,0,16.090034,16.090034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.889999,58.240002,54.27,5,1,1,0,0,1,3,1,1118.25,-63106.344,0,0,1914.3662 -15459,18976,34528,-9,34527,34526,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-998.86273,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,1118.25,-63106.344,0,0,1914.3662 -15459,18976,34529,-9,34527,34526,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-849.50568,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,1,3,1,1118.25,-63106.344,0,0,1914.3662 -15460,18977,34530,34533,-9,-9,1,1,1,34,1,1,3,0,1,-9,2,1,0,0,3,8.5863495,8.68822,0,2,0,-9,10,0,0,71.237175,0,0,0,34,1,4,1,2,1,2019,1,2,9,0,46,45,15,1,0,1,0,22.400883,22.400883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,57.16,56.150002,6,1,1,0,0,9,4,1,1485.6,80882.078,0,0,3859.7495 -15460,18977,34531,-9,34533,34530,5,1,0,0,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1071.193,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,4,1,1485.6,80882.078,0,0,3859.7495 -15460,18977,34532,-9,34533,34530,3,1,0,5,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.79755,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,1485.6,80882.078,0,0,3859.7495 -15460,18977,34533,34530,-9,-9,2,1,0,34,1,1,3,0,1,-9,2,1,0,0,4,7.0174007,7.1100135,0,2,0,-9,10,0,0,-26.575632,0,0,1,34,1,3,1,2,2,2019,1,1,9,0,15,15,15,1,0,1,0,10.330125,10.330125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52,54.509998,6,1,1,0,0,9,4,1,1485.6,80882.078,0,0,3859.7495 -15460,18977,34534,-9,34533,34530,4,1,0,3,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-894.2821,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,1485.6,80882.078,0,0,3859.7495 -15461,18978,34535,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,3,7.7124329,7.6192675,0,3,0,0,0,-9,0,-1008.0049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,32,15,1,0,-9,0,7.0183635,7.0183635,0,0,0,0,0,0,0,0,0,0,0,2.3718507,0,0,0,43.369999,57.279999,-9,-9,3,1,1,0,0,12,3,1,479,563499.19,0,0,1044.8557 -15462,18979,34536,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,0,4,7.5597687,7.9145541,5.6787024,4,0,0,0,-9,0,-955.88348,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,20,20,15,1,0,-9,0,9.4070492,9.4070492,0,0,0,0,0,0,0,14.5,1,1,0,5.1134009,0,5.3855734,3,57.16,56.150002,-9,-9,5,1,1,0,0,8,3,0,224,-67868.18,0,0,2068.0254 -15462,18979,34537,-9,34536,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1074.4469,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,8,3,0,224,-67868.18,0,0,2068.0254 -15463,18980,34538,-9,34539,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.0745,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,1,0,7030,80464.648,0,0,1721.8149 -15463,18980,34539,-9,-9,-9,1,1,0,44,2,0,1,0,1,-9,3,3,0,0,3,0,4.4079213,5.0012264,4,0,0,0,-9,0,-976.48981,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6476364,0,0,0,27.73,64.269997,-9,-9,5,1,1,1,1,8,1,0,7030,80464.648,0,0,1721.8149 -15464,18981,34540,-9,34541,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1062.9219,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,7,3,0,833.5,132924.48,0,0,1936.9248 -15464,18981,34541,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,0,3,7.8557053,8.0126963,5.3045483,4,0,0,0,-9,0,-903.1474,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,39,39,15,1,0,-9,0,7.8704715,7.8704715,0,0,0,0,0,0,0,0,1,1,0,5.8275175,0,0,0,46.860001,55.66,-9,-9,5,3,4,0,1,7,3,0,833.5,132924.48,0,0,1936.9248 -15465,18982,34542,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-887.21588,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,4.7693501,0,0,0,0,1,1,0,0,0,0,0,43.099998,23.610001,-9,-9,4,1,1,0,0,2,1,0,617,3814.7251,0,0,1132.1761 -15466,18983,34543,34544,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,4,0,6.5614548,6.8235474,1,0,-9,8,0,-1,-54.404045,0,0,0,69,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7403116,6.8259888,0,0,59.290001,49.68,54.959999,53.169998,6,1,1,0,0,5,3,1,1594,924601.25,0,0,2705.7017 -15466,18983,34544,34543,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,7.6122866,7.7015219,1,0,-9,8,0,1,-98.447884,0,0,0,68,2,4,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,7.5180912,0,0,0,0,0,1,1,0,6.250051,7.9361143,0,0,54.959999,53.169998,59.290001,49.68,2,1,1,0,0,5,3,1,1594,924601.25,0,0,2705.7017 -15467,18984,34545,34546,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,0,3,7.7550387,7.5730352,5.6572914,1,0,-9,6,0,3,-70.628204,0,0,0,61,2,3,1,3,3,2019,1,2,11,2,27,27,15,1,0,1,0,8.9279881,8.9279881,0,0,0,0,0,0,0,0,1,1,0,0,5.6589694,0,0,50,47,51,48,5,1,1,0,0,8,4,1,1215.5,-51330.211,0,0,3982.8813 -15467,18984,34546,34545,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,3,8.2702198,8.3072577,0,1,0,-9,6,0,-3,52.789978,0,0,0,64,2,3,1,3,3,2019,1,1,10,1,50,55,15,1,0,1,0,9.226388,9.226388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,50,47,5,1,1,0,0,8,4,1,1215.5,-51330.211,0,0,3982.8813 -15467,18985,34547,-9,34545,34546,3,1,0,31,2,0,0,0,1,-9,2,1,0,0,4,8.5441628,8.3636932,0,3,0,0,0,-9,0,-1005.2372,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,35,15,1,0,-9,1,13.173469,13.173469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,8,4,1,658,145038.94,0,0,397.52295 -15468,18986,34548,34549,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,5.6173935,5.5407062,1,0,-9,7,0,-6,127.19233,0,0,0,73,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4576502,0,0,54.200001,57.490002,56.099998,39.400002,6,1,1,0,0,4,3,1,1378.5,579088.06,0,0,3049.3953 -15468,18986,34549,34548,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,2,0,7.9365182,7.8550406,1,0,-9,7,0,6,90.240646,0,0,0,67,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.067482,0,0,56.099998,39.400002,54.200001,57.490002,6,1,1,0,0,4,3,1,1378.5,579088.06,0,0,3049.3953 -15469,18987,34550,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,0,3,8.0363903,8.200263,0,3,0,0,0,-9,0,-926.96674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,63,60,15,1,0,-9,0,7.2794785,7.2794785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,-9,-9,5,1,1,0,0,4,4,1,738,267270.5,0,0,1754.2288 -15470,18988,34551,-9,-9,-9,1,1,0,62,2,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-914.64581,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.629999,31.370001,-9,-9,2,1,1,0,1,7,1,0,51,-28535.898,0,0,-484.08585 -15470,18989,34552,-9,34551,-9,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,5,7.385725,7.6609359,0,3,0,0,0,-9,0,-1058.0345,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,24,8,20,20,15,1,1,-9,1,9.5287743,9.5287743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.49,69.160004,-9,-9,5,1,1,0,0,7,3,0,362,-114283.21,0,0,-45.608467 -15471,18990,34553,34554,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.84478,9.0444632,0,1,0,-9,8,0,10,-105.29832,0,0,0,47,2,1,1,2,2,2019,1,1,11,0,45,43,15,1,0,1,0,17.167189,17.167189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,25.469999,42.98,4,1,1,0,0,7,5,1,1078.5,412781.94,0,0,4270.2588 -15471,18990,34554,34553,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,1,8.1159286,7.9905329,0,1,0,-9,25,0,-10,-33.655968,0,0,0,57,2,4,1,2,3,2019,1,2,22,8,10,15,15,1,1,1,0,32.980042,32.980042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.469999,42.98,51.830002,57.200001,5,1,1,0,0,7,5,1,1078.5,412781.94,0,0,4270.2588 -15471,18991,34555,-9,34554,34553,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.1281939,8.1519852,0,3,0,0,0,-9,0,-919.79858,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,43,50,15,1,0,-9,1,9.5360966,9.5360966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.349998,59.639999,-9,-9,7,1,1,0,0,7,4,1,149,30103.205,0,0,1708.6693 -15472,18992,34556,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,0,3,8.4571781,8.4102879,0,3,0,0,0,-9,0,-994.58478,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,40,15,1,0,-9,0,19.410736,19.410736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,-9,-9,7,1,1,0,0,13,5,1,202,242423.55,0,0,1879.3632 -15473,18993,34557,-9,34558,-9,1,1,1,29,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-969.23016,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,1,0,784,24812.584,0,0,1285.5349 -15473,18994,34558,-9,-9,-9,2,1,0,49,3,0,0,0,3,-9,6,3,0,1,4,0,0,0,3,0,0,0,-9,0,-950.96619,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.075222,3,50,54,-9,-9,6,2,3,0,0,8,1,0,147,-101156.5,0,0,1911.105 -15473,18995,34559,-9,34558,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,8.3445578,8.5269547,0,3,0,0,0,-9,0,-1038.547,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,2,35,0,15,1,0,-9,1,12.715151,12.715151,0,0,0,0,0,0,0,0,1,1,0,.15504013,0,0,0,48,59,-9,-9,5,2,3,0,0,8,4,0,498,95250.492,0,0,1422.7893 -15473,18996,34560,-9,34558,-9,4,1,0,30,2,0,0,0,1,-9,2,1,0,0,4,8.8695679,8.9035854,0,3,0,0,0,-9,0,-966.83331,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,35,40,15,1,0,-9,1,25.931337,25.931337,0,0,0,0,0,0,0,0,1,1,0,2.606792,0,0,0,48,57,-9,-9,5,2,3,0,0,8,5,0,1162,-17036.193,0,0,4021.3721 -15474,18997,34561,34562,-9,-9,2,1,1,42,1,0,0,0,3,-9,2,1,0,0,4,8.4755526,8.431181,0,1,0,-9,1,-9,-11,36.217049,-9,0,0,53,3,3,1,-9,-9,2019,1,1,10,1,51,0,15,1,0,1,0,12.026714,12.026714,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,51,56,47,49,5,2,3,0,1,8,4,1,728,26321.781,0,0,2508.834 -15474,18997,34562,34561,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,0,3,7.3526683,7.1105776,0,1,0,-9,17,-9,11,-59.800594,-9,0,0,42,3,4,1,3,3,2019,1,2,12,2,28,0,15,1,0,1,0,6.0211997,6.0211997,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,49,51,56,5,2,3,0,0,8,4,1,728,26321.781,0,0,2508.834 -15474,18998,34563,-9,34562,34561,3,1,0,22,2,0,0,0,3,-9,3,3,0,0,5,0,0,0,3,0,-9,0,-9,0,-1060.7214,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.630001,47.98,-9,-9,6,2,3,1,0,8,1,1,1079,-24110.314,0,0,462.94284 -15474,18999,34564,-9,34562,34561,4,1,1,20,2,0,0,1,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1004.4672,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.150002,50.810001,-9,-9,1,2,3,0,0,8,1,1,2035,31584.805,0,0,0 -15474,19000,34565,-9,34562,34561,5,1,1,19,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-988.19757,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.34,56.619999,-9,-9,1,2,3,1,0,8,1,1,4044,-127334.98,0,0,0 -15475,19001,34566,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,3,0,7.8116541,7.243413,3,0,-9,0,1,0,-1089.0046,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.3929946,7.2156272,0,0,35.369999,42.040001,-9,-9,3,1,1,0,0,6,3,1,1293,248793.47,0,0,938.63123 -15476,19002,34567,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,5.9072614,5.9297209,3,0,0,0,-9,0,-971.07001,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.8948793,.094898842,3,40.5,42.220001,-9,-9,5,1,1,0,1,7,2,0,474,760778.25,0,0,1703.8878 -15477,19003,34568,34569,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,0,4,8.1449718,7.5119095,0,1,0,-9,9,0,-2,-18.744001,0,0,0,57,1,3,1,2,3,2019,1,2,12,0,90,70,15,1,0,1,0,2.9455297,2.9455297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,6,1,1,0,0,11,5,1,1524.5,429931.72,0,0,2396.8386 -15477,19003,34569,34568,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,0,3,8.5815697,8.7692451,0,1,0,-9,9,0,2,41.309612,0,0,0,55,2,4,1,2,2,2019,1,1,9,0,52,50,15,1,0,1,0,12.497125,12.497125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,11,5,1,1524.5,429931.72,0,0,2396.8386 -15477,19004,34570,-9,34569,34568,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,5,8.3137007,8.3479261,0,3,0,0,0,-9,0,-992.48383,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,45,40,15,1,0,-9,1,10.99789,10.99789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.419998,-9,-9,2,1,1,0,0,11,4,1,255,67826.469,0,0,1679.5887 -15478,19005,34571,34572,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,2,0,7.4028239,7.6995292,1,0,-9,7,0,0,110.46254,0,0,0,71,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,72.640022,0,0,0,0,0,1,1,0,5.9281106,7.4123635,0,0,41.689999,33.869999,58.610001,40.490002,6,1,1,0,0,4,2,1,765.5,361903.16,0,0,2211.1079 -15478,19005,34572,34571,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,7,0,0,-22.995766,0,0,0,71,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.9659643,0,75.524445,2,58.610001,40.490002,41.689999,33.869999,6,1,1,0,0,4,2,1,765.5,361903.16,0,0,2211.1079 -15479,19006,34573,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-837.32196,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.77,21.209999,-9,-9,3,1,1,0,0,11,1,1,907,81322.367,0,0,1567.8069 -15479,19007,34574,-9,-9,34573,2,1,0,19,2,0,0,1,2,0,7,2,0,0,1,6.6362238,6.772388,0,3,0,0,0,-9,0,-1017.7665,-9,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,25,9,17,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,19.32,45.790001,-9,-9,1,1,1,0,1,11,2,1,722,-39336.164,0,0,412.97766 -15480,19008,34575,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,4,8.1092634,8.6130629,0,3,0,-9,0,0,0,-972.55426,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,15,3,50,45,15,1,0,-9,0,10.681231,10.681231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.849998,60.330002,-9,-9,5,1,1,0,0,12,4,1,872,185722.67,0,0,2595.7625 -15481,19009,34576,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,3,0,6.5698276,6.7705193,3,0,0,0,-9,0,-1062.1517,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,4,1,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.7976208,116.12424,3,30.85,49.360001,-9,-9,3,1,1,0,1,9,2,1,186,303798.59,0,0,190.92912 -15482,19010,34577,34578,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,2,8.5300245,8.5834675,0,1,0,-9,31,0,6,-84.993279,0,0,0,46,1,3,1,3,2,2019,1,2,15,4,37,37,15,1,1,1,0,14.530141,14.530141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.75,31,28.9,49.040001,3,1,1,0,0,11,5,1,487.5,711581.56,0,0,3684.3127 -15482,19010,34578,34577,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,0,3,8.7013626,8.5031691,0,1,0,-9,31,0,-6,-75.876915,0,0,0,52,2,2,1,3,1,2019,1,1,22,9,37,37,15,1,1,1,0,21.086557,21.086557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.9,49.040001,56.75,31,2,1,1,0,0,11,5,1,487.5,711581.56,0,0,3684.3127 -15482,19011,34579,-9,34578,34577,3,1,1,23,2,0,0,0,2,-9,1,1,0,0,5,7.3511376,6.9399395,0,3,0,0,0,-9,0,-982.67657,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,37,15,1,0,-9,1,4.660635,4.660635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,4,1,1,0,1,11,3,1,332,-198878.19,0,0,319.38394 -15483,19012,34580,34581,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,0,4,9.3687763,9.2532434,0,1,0,-9,26,0,1,100.29496,0,0,0,45,2,5,1,2,2,2019,1,2,7,0,55,60,15,1,0,1,0,20.898031,20.898031,0,0,0,0,0,0,0,0,0,0,0,6.3562021,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,5,5,1,315.66666,575664.19,0,0,4686.9858 -15483,19012,34581,34580,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,5,8.9630671,8.9295111,0,1,0,-9,26,0,-1,17.277365,0,0,0,46,2,4,1,2,2,2019,1,1,5,0,42,47,15,1,0,1,0,15.263434,15.263434,0,0,0,0,0,0,0,0,0,0,0,3.9477508,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,5,5,1,315.66666,575664.19,0,0,4686.9858 -15483,19012,34582,-9,34581,34580,4,1,1,17,2,0,0,1,2,0,7,2,0,0,4,6.1152306,6.1964741,3.7414305,1,0,0,0,-9,0,-896.32471,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0003781,0,0,0,51.240002,58.84,-9,-9,6,1,1,0,0,5,5,1,315.66666,575664.19,0,0,4686.9858 -15483,19013,34583,-9,34581,34580,3,1,0,22,2,0,0,0,1,1,2,1,0,0,4,8.2926102,8.5773144,0,3,0,0,0,-9,0,-967.38873,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,15.539232,15.539232,0,0,0,0,0,0,0,0,0,0,0,.078553766,0,0,0,41,63.400002,-9,-9,7,1,1,0,0,5,4,1,331,15656.043,0,0,2796.8467 -15484,19014,34584,34587,-9,-9,1,1,0,47,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,15,0,0,-141.16443,0,0,0,47,1,3,1,2,1,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.605999,0,0,0,58.549999,51.639999,56.5,48.330002,6,1,1,0,0,6,3,1,309.75,60568.273,0,0,4011.729 -15484,19014,34585,-9,34584,34587,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,6,3,1,309.75,60568.273,0,0,4011.729 -15484,19014,34586,-9,34584,34587,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-935.32275,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,6,3,1,309.75,60568.273,0,0,4011.729 -15484,19014,34587,34584,-9,-9,2,1,1,47,1,0,2,0,1,-9,1,1,0,0,3,8.321538,8.4699249,0,2,0,-9,15,0,0,-14.594977,0,0,0,47,1,4,3,1,1,2019,2,1,11,1,50,30,15,1,0,3,0,8.3603926,8.3603926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,48.330002,58.549999,51.639999,6,2,3,0,0,6,3,1,309.75,60568.273,0,0,4011.729 -15485,19015,34588,-9,34591,34589,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.7192,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,1,1,873,342958.31,0,0,2247.4004 -15485,19015,34589,34591,-9,-9,1,1,1,69,1,0,2,0,1,-9,4,3,0,1,2,0,0,0,2,0,-9,8,0,20,0,0,0,0,49,2,3,3,3,2,2019,4,2,8,2,0,16,15,4,0,3,0,0,0,1,0,119.96337,14.913506,13.833472,0,0,0,1,1,0,0,0,0,0,33.779999,48.759998,47,49,7,2,3,0,0,6,1,1,873,342958.31,0,0,2247.4004 -15485,19015,34590,-9,34591,34589,3,1,0,17,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1027.2814,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.977972,3,62.389999,56.709999,-9,-9,7,2,3,0,0,6,1,1,873,342958.31,0,0,2247.4004 -15485,19015,34591,34589,-9,-9,2,1,0,49,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,8,0,-20,0,0,0,0,69,1,2,3,3,3,2019,4,1,12,2,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,47,49,33.779999,48.759998,5,2,3,0,0,6,1,1,873,342958.31,0,0,2247.4004 -15486,19016,34592,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,1,1,0,0,5,9.4624691,9.716588,0,3,0,0,0,-9,0,-1019.2954,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,70,60,15,1,0,-9,0,26.898958,26.898958,0,0,0,0,0,0,0,0,1,1,0,3.1569331,0,0,0,49.169998,56.720001,-9,-9,7,1,1,0,0,2,5,0,708,446695.78,0,0,6150.355 -15487,19017,34593,34594,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,3,0,7.5223246,7.0707474,1,0,-9,59,0,4,144.90175,0,0,0,78,3,4,3,3,3,2019,4,2,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.467844,7.6290483,0,0,37.169998,50.599998,60.119999,54.799999,6,1,1,0,0,11,2,1,420,414288.56,0,0,2294.502 -15487,19017,34594,34593,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-4,102.04124,0,0,0,82,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,37.169998,50.599998,7,1,1,0,0,11,2,1,420,414288.56,0,0,2294.502 -15488,19018,34595,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,4,3,0,0,3,0,7.5782166,7.1193371,3,0,0,0,-9,0,-1040.6663,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.16306739,7.3953109,15.522449,3,49.040001,55.860001,-9,-9,5,1,1,0,0,13,3,1,455,34038.973,0,0,523.6662 -15489,19019,34596,-9,34597,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,0,3,7.9222274,7.9687276,0,3,0,-9,0,-9,0,-935.20178,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,38,0,15,1,1,-9,1,6.2940288,6.2940288,0,0,0,0,0,0,0,2,1,1,0,3.0396397,0,3.4385664,3,24.809999,52.279999,-9,-9,5,3,4,0,0,8,3,0,906,9410.3438,0,0,333.36569 -15489,19020,34597,-9,-9,-9,2,1,0,68,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-1078.0645,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,14.826672,9.9046526,6.7490349,0,0,1,1,0,0,0,0,0,58.080002,24.700001,-9,-9,6,4,5,0,0,8,1,0,1787,147030.95,0,0,1553.2131 -15489,19021,34598,-9,34597,-9,3,1,1,25,2,0,0,0,1,-9,2,1,0,0,3,8.1631088,7.878788,0,3,0,-9,0,-9,0,-978.04803,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,36,0,15,1,0,-9,1,8.1676273,8.1676273,0,0,0,0,0,0,0,0,1,1,0,2.8749628,0,0,0,60.290001,52.110001,-9,-9,6,3,4,0,0,8,4,0,1398,57192.57,0,0,1957.4624 -15490,19022,34599,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,3,0,5.6288929,5.7989635,3,0,0,0,-9,0,-887.58716,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5081115,5.7527671,0,0,55.860001,43.169998,-9,-9,5,1,1,0,0,12,2,1,793,185460.67,0,0,1643.6207 -15491,19023,34600,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,4,9.1240225,8.6111269,0,3,0,-9,0,-9,0,-977.68903,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,55,0,15,1,0,-9,0,16.315969,16.315969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,7,5,1,262,154212.55,0,0,3105.0486 -15492,19024,34601,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1046.6554,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6247625,0,0,0,54.52,49.27,-9,-9,5,1,1,0,0,10,1,0,522,271326.28,0,0,516.96082 -15493,19025,34602,34603,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,7.0670371,7.0693994,1,0,-9,56,0,-1,-21.210136,0,0,0,79,2,3,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.2910352,7.3000436,0,0,60.119999,54.799999,61.619999,34.959999,6,1,1,0,0,9,3,1,764.5,564234.88,0,0,1832.9561 -15493,19025,34603,34602,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.4477816,7.5215349,1,0,-9,56,0,1,-31.563328,0,0,0,78,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.900805,7.2447062,0,0,61.619999,34.959999,60.119999,54.799999,7,1,1,0,0,9,3,1,764.5,564234.88,0,0,1832.9561 -15494,19026,34604,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.8414116,8.8975286,0,1,0,-9,3,0,-1,44.06665,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,7,0,43,57,15,1,0,-9,0,19.349092,19.349092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.290001,54.84,54.689999,57.470001,6,4,2,0,0,8,5,0,968,313365.56,0,0,3320.1299 -15494,19027,34605,-9,-9,-9,2,1,1,31,2,0,0,0,2,-9,2,1,0,0,5,7.9636493,8.0331926,0,1,0,-9,3,0,1,42.812843,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,0,35,37,15,1,0,-9,0,10.859542,10.859542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.689999,57.470001,45.290001,54.84,6,1,1,0,0,8,5,0,557,-65007.941,0,0,616.62842 -15495,19028,34606,34607,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,-1,3.4129,0,0,0,73,3,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9857268,0,0,0,52,46,57.330002,53.459999,5,1,1,0,0,7,2,1,1153.5,81845.281,0,0,3494.397 -15495,19028,34607,34606,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,6.3893461,6.4767237,1,0,-9,50,0,1,90.518532,0,0,0,72,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8605003,6.4636579,0,0,57.330002,53.459999,52,46,6,1,1,0,0,7,2,1,1153.5,81845.281,0,0,3494.397 -15496,19029,34608,-9,34609,34610,3,1,0,12,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.19861,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,0,486,231524.09,0,0,3326.3049 -15496,19029,34609,34610,-9,-9,1,1,0,53,1,1,2,0,3,-9,2,1,0,0,2,7.3260002,7.2768092,0,2,0,-9,31,0,-12,-72.534622,0,0,0,65,2,3,1,2,2,2019,1,2,19,6,32,45,15,1,1,1,0,5.4071083,5.4071083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.880001,41.509998,52,47,3,1,1,0,1,2,4,0,486,231524.09,0,0,3326.3049 -15496,19029,34610,34609,-9,-9,2,1,1,65,1,1,2,0,2,-9,2,1,0,0,3,0,8.5622625,8.5740824,2,0,-9,5,0,12,-47.969795,0,0,0,53,3,2,1,-9,-9,2019,1,1,10,1,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.452116,0,0,52,47,45.880001,41.509998,5,1,1,0,0,2,4,0,486,231524.09,0,0,3326.3049 -15496,19030,34611,-9,34612,-9,5,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1039.5902,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,2,0,546,58733.941,0,0,1107.7354 -15496,19030,34612,-9,34609,34610,4,1,0,22,2,1,2,0,2,-9,5,1,0,0,2,7.0878081,6.6254759,0,3,0,0,0,-9,0,-1110.7383,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,1,20,20,15,1,0,-9,1,4.8015289,4.8015289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.889999,47.880001,-9,-9,7,1,1,0,0,2,2,0,546,58733.941,0,0,1107.7354 -15497,19031,34613,34614,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,8.7735453,8.6419821,0,1,0,-9,24,0,-6,119.60103,0,0,0,58,2,3,1,3,3,2019,1,1,12,3,42,41,15,1,0,1,0,21.585653,21.585653,0,0,0,0,0,0,0,0,0,0,0,5.0560031,0,0,0,40.610001,55.650002,52,54.509998,1,1,1,0,0,10,5,1,697.5,1419478,0,0,2977.9985 -15497,19031,34614,34613,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,6.9965954,6.8018713,0,1,0,-9,24,0,6,29.845755,0,0,0,52,1,4,1,3,3,2019,1,2,8,0,14,12,15,1,0,1,0,7.4296846,7.4296846,0,0,0,0,0,0,0,2,0,0,0,2.6961462,0,0,3,52,54.509998,40.610001,55.650002,1,1,1,0,0,10,5,1,697.5,1419478,0,0,2977.9985 -15497,19032,34615,-9,34614,34613,3,1,1,22,2,0,0,0,2,-9,1,1,0,0,5,9.2543879,9.6808414,0,3,0,0,0,-9,0,-955.06769,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,48,43,15,1,0,-9,1,33.064095,33.064095,0,0,0,0,0,0,0,0,0,0,0,4.0358973,0,0,0,38.369999,59.330002,-9,-9,1,1,1,0,0,10,5,1,712,309609.97,0,0,3866.5793 -15498,19033,34616,34617,-9,-9,1,1,0,56,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,38,0,0,-27.87471,0,0,0,56,3,5,1,3,-9,2019,3,2,0,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.720001,43.470001,32.720001,43.470001,7,1,1,0,0,6,3,1,388,2165.7861,0,0,1635.1636 -15498,19033,34617,34616,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,0,5,7.917182,8.0072126,0,1,0,-9,8,0,0,72.521324,0,0,0,56,3,5,3,3,3,2019,2,1,0,0,40,44,15,1,0,4,0,12.156468,12.156468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.720001,43.470001,32.720001,43.470001,7,1,1,0,0,6,3,1,388,2165.7861,0,0,1635.1636 -15498,19034,34618,-9,34616,34617,3,1,1,32,2,0,0,0,2,-9,2,1,0,0,5,7.1613555,6.9190621,0,3,0,0,0,-9,0,-986.0752,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,30,21,15,1,0,-9,1,3.634403,3.634403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.82,58.040001,-9,-9,7,1,1,0,0,6,2,1,2378,-81173.469,0,0,-265.0636 -15499,19035,34619,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,0,1,7.4709206,7.4649725,0,3,0,0,0,-9,0,-942.78961,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,22,7,35,28,15,1,1,-9,0,7.5160518,7.5160518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.49,48.490002,-9,-9,2,1,1,0,0,5,3,0,553,281409.81,0,0,139.18941 -15499,19036,34620,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,7.2866945,7.3938298,0,3,0,0,0,-9,0,-1039.2698,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,25,15,1,0,-9,0,4.3569345,4.3569345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,-9,-9,6,1,1,0,0,5,2,0,326,-57637.859,0,0,1627.9215 -15499,19037,34621,-9,-9,-9,3,1,1,18,2,0,0,0,2,-9,2,1,0,0,1,6.3062239,6.5879607,0,3,0,0,0,-9,0,-928.07556,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,11,30,0,15,1,1,-9,0,2.5492051,2.5492051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.389999,37.02,-9,-9,1,1,1,0,0,5,2,0,593,-97677.539,0,0,1620.869 -15500,19038,34622,34623,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,4,7.7698479,7.9682903,0,2,0,-9,24,0,-1,25.332647,0,0,0,47,2,4,1,-9,-9,2019,1,2,18,7,34,34,15,1,1,1,0,9.7108507,9.7108507,0,0,0,0,0,0,0,42,1,1,0,0,0,36.632248,3,35.91,63.189999,53,55,2,2,3,0,0,6,4,1,1213,27919.098,0,0,3275.9094 -15500,19038,34623,34622,34624,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.72789,8.6744032,0,2,0,-9,24,0,1,-39.789001,0,0,0,46,2,4,1,3,3,2019,1,1,9,1,40,0,15,1,0,1,0,14.503571,14.503571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,35.91,63.189999,6,2,3,0,0,6,4,1,1213,27919.098,0,0,3275.9094 -15500,19039,34624,-9,-9,-9,3,1,0,79,3,0,1,0,3,-9,4,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1091.6647,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,2,3,0,0,6,1,1,365,182894.91,0,0,551.07397 -15500,19040,34625,-9,34622,34623,4,1,1,23,2,0,1,0,2,1,2,1,0,0,4,8.1071968,7.9320254,0,3,0,0,0,-9,0,-1043.5693,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,0,15,1,0,-9,1,8.9426365,8.9426365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,4,1,778,-70801.922,0,0,1244.3263 -15500,19041,34626,-9,34622,34623,5,1,1,21,2,0,1,0,2,1,2,1,0,0,4,7.7865663,7.8636837,0,3,0,0,0,-9,0,-920.979,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,45,0,15,1,0,-9,1,4.9530354,4.9530354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,3,1,923,-122660.54,0,0,3212.7959 -15500,19042,34627,-9,34622,34623,6,1,0,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1006.7893,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,6,1,1,1016,22157.744,0,0,0 -15501,19043,34628,34629,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,5,0,4.2380862,4.2436619,1,0,-9,40,0,-5,199.28632,0,0,0,69,2,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.2915154,116.4058,1,48.939999,49.540001,32.689999,24.4,6,1,1,0,0,9,2,1,1105,401983.06,0,0,1447.5243 -15501,19043,34629,34628,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,0,1,0,5.3416638,5.3919582,1,0,-9,40,0,5,120.1105,-9,0,0,64,2,5,3,-9,-9,2019,4,1,24,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9750266,0,0,32.689999,24.4,48.939999,49.540001,2,1,1,0,0,9,2,1,1105,401983.06,0,0,1447.5243 -15502,19044,34630,34631,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,6.6045036,6.6876178,1,0,-9,42,0,-2,-16.322617,0,0,0,60,2,1,3,2,2,2019,4,2,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,6.55722,78.465263,3,42.619999,15.89,38.830002,35.139999,3,1,1,0,0,7,2,0,2009,584630.88,0,0,2904.8523 -15502,19044,34631,34630,-9,-9,2,1,1,60,1,0,0,0,2,-9,6,3,0,1,1,0,0,0,1,0,-9,42,0,2,-145.60185,0,0,0,58,3,1,3,2,2,2019,4,1,17,5,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,76.021225,2,38.830002,35.139999,42.619999,15.89,5,1,1,0,0,7,2,0,2009,584630.88,0,0,2904.8523 -15502,19044,34632,-9,34630,34631,3,1,1,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1103.2985,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,4,6,0,0,7,2,0,2009,584630.88,0,0,2904.8523 -15503,19045,34633,34634,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.7270827,7.9427853,0,1,0,-9,9,0,-12,76.822472,0,0,0,60,2,3,1,3,3,2019,1,2,12,0,38,37,15,1,0,1,0,8.2798357,8.2798357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.060001,37.720001,61.279999,48.880001,6,1,1,0,0,6,4,1,1756.5,390409,0,0,2469.2092 -15503,19045,34634,34633,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.5116272,8.3890591,0,1,0,-9,9,0,12,-116.3488,0,0,0,48,2,3,1,3,3,2019,1,1,7,0,25,60,15,1,0,1,0,20.881886,20.881886,0,0,0,0,0,0,0,0,0,0,0,.53635895,0,0,0,61.279999,48.880001,53.060001,37.720001,7,1,1,0,0,6,4,1,1756.5,390409,0,0,2469.2092 -15503,19046,34635,-9,34633,34634,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,7.8970509,8.0159111,0,3,0,0,0,-9,0,-1071.6836,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,32,15,1,0,-9,1,8.7962227,8.7962227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,6,4,1,1216,-12524.327,0,0,1484.2963 -15503,19047,34636,-9,34633,34634,4,1,0,20,2,0,0,1,2,0,7,2,0,0,3,6.7821808,6.605957,0,3,0,0,0,-9,0,-980.35602,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.93,60.290001,-9,-9,6,1,1,0,0,6,2,1,1613,-62245.383,0,0,553.97308 -15504,19048,34637,34638,-9,-9,2,1,0,61,1,0,0,0,3,-9,1,1,0,0,4,7.3401685,7.3800201,0,1,0,-9,9,0,17,64.854988,0,0,0,44,2,2,1,-9,-9,2019,1,1,6,0,17,17,15,1,0,1,0,9.487071,9.487071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,39.830002,45.759998,5,1,1,0,0,7,4,0,1020,486319.63,0,0,2780.397 -15504,19048,34638,34637,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.1447763,8.6416101,0,1,0,-9,9,0,-17,-75.952698,-9,0,0,61,3,4,1,2,3,2019,1,2,13,2,60,0,15,1,0,1,0,7.2797346,7.2797346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.830002,45.759998,54.200001,57.490002,6,1,1,0,0,7,4,0,1020,486319.63,0,0,2780.397 -15505,19049,34639,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,0,3,8.704999,8.6240721,0,3,0,0,0,-9,0,-820.34369,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,40,40,15,1,0,-9,0,11.977854,11.977854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.650002,57.360001,-9,-9,5,1,1,0,0,11,5,0,480,800222.13,0,0,2266.0684 -15505,19050,34640,-9,34639,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,0,4,7.7595668,7.6254601,0,3,0,0,0,-9,0,-962.73108,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,36,0,15,1,0,-9,1,9.8665733,9.8665733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,3,0,2308,-100187.32,0,0,885.85748 -15506,19051,34641,34642,-9,-9,1,1,0,19,1,0,0,1,2,0,7,2,0,0,1,5.6366019,7.8929744,8.0666399,1,0,-9,3,0,-4,-29.454601,-9,1,1,23,2,3,3,-9,-9,2019,4,2,23,7,0,0,15,2,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0568962,0,0,0,34.599998,29.24,52.25,53.240002,2,1,1,0,1,6,3,0,307,25997.07,0,0,1561.167 -15506,19051,34642,34641,-9,-9,2,1,1,23,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,3,0,4,-52.660007,0,1,0,19,2,1,2,-9,-9,2019,4,1,12,1,0,0,15,3,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.240002,34.599998,29.24,6,1,1,1,0,6,3,0,307,25997.07,0,0,1561.167 -15507,19052,34643,34644,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,4,0,6.8603039,6.8333158,1,0,-9,9,0,-4,-9.2529421,0,0,0,72,3,3,3,3,2,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6459541,7.1224809,0,0,60.130001,49.27,57.330002,53.459999,6,1,1,0,0,9,3,1,976,1153553.3,0,0,2581.7131 -15507,19052,34644,34643,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,0,3,0,7.1436896,7.3310776,1,0,-9,9,0,4,-143.06847,0,0,0,68,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6382618,7.8477159,0,0,57.330002,53.459999,60.130001,49.27,6,1,1,0,0,9,3,1,976,1153553.3,0,0,2581.7131 -15508,19053,34645,34646,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,0,3,8.8673992,8.0757627,0,1,0,-9,2,0,0,175.40395,0,1,0,27,1,3,1,-9,-9,2019,1,2,7,0,38,40,15,1,0,1,0,12.831786,12.831786,0,0,0,0,0,0,0,0,0,0,0,1.9894053,0,0,0,50.080002,55.330002,51.5,39.740002,6,1,1,0,0,5,5,1,460.5,-66300.477,0,0,2303.4353 -15508,19053,34646,34645,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,0,3,8.2425804,8.0916271,0,1,0,-9,2,0,0,-33.278389,0,1,1,27,1,3,1,-9,-9,2019,1,1,11,0,38,41,15,1,0,1,0,14.227364,14.227364,0,0,0,0,0,0,0,0,0,0,0,1.8257251,0,0,0,51.5,39.740002,50.080002,55.330002,6,1,1,0,0,5,5,1,460.5,-66300.477,0,0,2303.4353 -15509,19054,34647,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,4,7.5808067,7.4044714,0,3,0,0,0,-9,0,-1001.1824,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,12,25,15,1,0,-9,1,17.374355,17.374355,0,0,0,0,0,0,0,7,1,1,0,3.8869021,0,10.132389,3,55.189999,54.259998,-9,-9,7,1,1,0,0,9,3,1,572,-101987.97,0,0,1479.8344 -15510,19055,34648,34649,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,6.5737205,6.4546332,0,1,0,-9,37,0,0,-6.1913505,0,0,0,57,3,2,1,3,2,2019,1,1,18,6,17,18,15,1,1,1,0,4.9813614,4.9813614,0,0,0,0,0,0,0,2,0,0,0,1.783625,0,.80992281,3,46.389999,60.990002,26.48,51.669998,6,1,1,0,0,5,3,1,172,108819.38,0,0,1934.332 -15510,19055,34649,34648,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,0,2,6.9600487,7.8862391,6.6539578,1,0,-9,37,0,0,81.713715,0,0,0,57,2,4,1,3,3,2019,1,2,15,3,34,36,15,1,0,1,0,4.0902829,4.0902829,0,0,0,0,0,0,0,0,0,0,0,0,6.5993285,0,0,26.48,51.669998,46.389999,60.990002,4,1,1,0,0,5,3,1,172,108819.38,0,0,1934.332 -15510,19056,34650,-9,34648,34649,3,1,1,20,2,0,0,0,2,-9,7,2,0,0,2,6.4849463,6.2704225,0,3,0,0,0,-9,0,-1004.4272,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,19,5,9,9,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1640801,0,0,0,30.93,59.150002,-9,-9,2,1,1,0,0,5,2,1,472,135780.91,0,0,635.90082 -15511,19057,34651,34652,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,7.524909,7.4012508,1,0,-9,46,0,5,29.445313,0,0,0,66,1,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.7786927,7.5069036,0,0,54.959999,53.169998,61.43,43.34,6,1,1,0,0,12,2,1,612.5,724615,0,0,960.74713 -15511,19057,34652,34651,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,0,3,0,5.1653767,5.0371532,1,0,-9,46,0,-5,53.945061,0,0,0,71,1,3,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1403818,0,0,61.43,43.34,54.959999,53.169998,5,1,1,0,0,12,2,1,612.5,724615,0,0,960.74713 -15512,19058,34653,34654,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,7.7110472,7.8358049,2.7372253,1,0,-9,28,0,-4,59.390713,0,0,0,66,2,1,3,2,2,2019,2,2,10,0,30,30,15,1,0,4,0,6.6063132,6.6063132,0,0,0,0,0,0,0,0,1,1,0,0,2.6671383,0,0,55.900002,52.639999,44.580002,19.110001,6,1,1,0,0,4,3,0,1004,-70964.617,0,0,1318.9482 -15512,19058,34654,34653,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,2,0,4,14.878098,0,0,0,62,2,4,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.580002,19.110001,55.900002,52.639999,6,1,1,0,0,4,3,0,1004,-70964.617,0,0,1318.9482 -15513,19059,34655,34656,-9,-9,3,1,0,56,1,0,0,0,1,-9,4,3,0,0,3,0,8.3487759,8.5085297,1,0,-9,33,0,-7,2.6844194,0,0,0,63,1,5,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6588049,8.0469027,0,0,55.5,47.360001,55.630001,55.599998,6,1,1,0,0,11,5,1,1198,1954409.8,0,0,3094.4021 -15513,19059,34656,34655,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,0,5,7.9625044,7.7335839,6.4791093,1,0,-9,32,0,7,52.156235,0,0,0,56,1,3,3,3,2,2019,2,3,12,0,25,37,15,1,0,4,0,10.224474,10.224474,0,0,0,0,0,0,0,2,0,0,0,7.1360068,6.9545732,6.615345,3,55.630001,55.599998,55.5,47.360001,2,1,1,0,0,11,5,1,1198,1954409.8,0,0,3094.4021 -15513,19060,34657,-9,34655,34656,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,3,7.7955914,7.9113622,0,3,0,0,0,-9,0,-953.70319,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,36,48,15,1,0,-9,1,8.5771847,8.5771847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.650002,58.279999,-9,-9,6,1,1,0,0,11,4,1,1008,122074.5,0,0,1144.135 -15514,19061,34658,34659,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,1,2,0,7.1832561,6.9859014,1,0,-9,9,0,-4,-96.261513,0,0,0,90,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,10.447242,0,0,0,0,0,1,1,0,6.9789467,6.6191311,0,0,63.169998,11.68,49.130001,36.75,6,1,1,0,0,4,2,1,1373.5,220495.25,0,0,1201.3944 -15514,19061,34659,34658,-9,-9,1,1,0,90,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,9,0,4,-14.550197,0,0,0,86,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.130001,36.75,63.169998,11.68,6,1,1,0,0,4,2,1,1373.5,220495.25,0,0,1201.3944 -15515,19062,34660,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,0,4,7.3308439,7.5263772,4.7642403,3,0,-9,0,-9,0,-897.73059,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,21,0,15,1,0,-9,0,9.4901066,9.4901066,0,0,0,0,0,0,0,42,1,1,0,5.2830243,0,39.316689,3,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,0,141,103853.77,0,0,1257.6283 -15516,19063,34661,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,0,2,0,7.3211617,7.30163,3,0,0,0,-9,0,-905.35315,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7122087,7.051302,0,0,58.790001,38.080002,-9,-9,6,4,2,0,0,9,3,1,500,683234.63,0,0,1742.0254 -15517,19064,34662,-9,-9,-9,1,1,0,39,2,0,1,0,3,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-1068.3522,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,3,4,0,0,2,1,0,399.5,-37971.184,0,0,1687.7644 -15517,19064,34663,-9,34662,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1083.8213,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,2,1,0,399.5,-37971.184,0,0,1687.7644 -15518,19065,34664,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,3,7.8947449,8.1396875,0,3,0,-9,0,0,0,-993.63458,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,9,38,38,15,1,1,-9,0,7.8224125,7.8224125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.91,57.830002,-9,-9,5,1,1,0,0,5,3,0,109,32294.846,0,0,1261.205 -15518,19066,34665,-9,-9,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,0,5,6.8342133,6.9727654,0,3,0,-9,0,0,0,-990.96649,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,26,34,15,1,1,-9,0,5.4033279,5.4033279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.540001,62.09,-9,-9,1,1,1,0,0,5,2,0,216,-189544.91,0,0,744.32141 -15519,19067,34666,-9,-9,-9,1,1,0,75,2,0,0,0,3,-9,4,3,0,0,4,0,5.9425802,6.1497064,3,0,0,0,-9,0,-885.42334,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9735842,5.8609629,0,0,33.25,46.77,-9,-9,7,1,1,0,0,12,2,1,212,221966.59,0,0,47.957233 -15520,19068,34667,34668,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.7352667,8.2672443,0,1,0,-9,1,-9,0,24.219156,-9,0,0,54,2,4,1,3,3,2019,1,1,11,0,33,0,15,1,0,1,0,17.551188,17.551188,0,0,0,0,0,0,0,0,0,0,0,7.8571382,0,0,0,45.91,59.889999,54,54,6,1,1,0,0,6,5,0,723,799049.75,0,0,4129.1201 -15520,19068,34668,34667,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,0,4,7.9906511,7.7375569,0,1,0,-9,1,-9,0,-86.264351,-9,0,0,54,1,4,1,3,3,2019,1,2,9,1,25,0,15,1,0,1,0,13.550748,13.550748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,45.91,59.889999,6,1,1,0,0,6,5,0,723,799049.75,0,0,4129.1201 -15521,19069,34669,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,5.4515314,5.5721478,3,0,0,0,-9,0,-1004.9937,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7953279,5.5910678,0,0,57.169998,50.610001,-9,-9,6,1,1,0,0,12,2,1,1780,153446.69,0,0,-97.127617 -15522,19070,34670,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,6.013011,6.3259859,3,0,0,0,-9,0,-1084.5054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8365073,6.536346,0,0,42.07,44.470001,-9,-9,7,1,1,0,0,7,2,1,507,401545,0,0,876.22461 -15523,19071,34671,34672,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,58,0,-1,-75.042336,0,0,0,78,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.66,45.080002,59.459999,46.990002,7,1,1,0,0,11,5,1,397.5,1690498.8,0,0,4702.4229 -15523,19071,34672,34671,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,9.0988722,9.2923861,1,0,-9,58,0,1,113.32898,0,0,0,77,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.2781172,0,0,59.459999,46.990002,57.66,45.080002,6,1,1,0,0,11,5,1,397.5,1690498.8,0,0,4702.4229 -15524,19072,34673,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1010.5536,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.8649595,0,2.0706418,3,60.290001,52.110001,-9,-9,7,1,1,0,0,7,1,1,118,18160.521,0,0,-800.93988 -15525,19073,34674,34675,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,0,4,7.4332447,7.2685566,0,1,0,-9,4,0,4,-168.35133,0,0,0,45,1,3,1,2,2,2019,1,2,12,0,40,35,15,1,0,1,0,4.7305613,4.7305613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.689999,61.75,47.880001,35.950001,5,1,1,0,0,4,3,1,336,21169.658,0,0,1999.4329 -15525,19073,34675,34674,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,0,3,6.7254405,7.0867438,0,1,0,-9,4,0,-4,-72.643364,0,0,0,49,2,4,1,-9,-9,2019,1,1,11,0,18,15,15,1,0,1,0,5.7214403,5.7214403,0,0,0,0,0,0,0,0,1,1,0,1.3941778,0,0,0,47.880001,35.950001,38.689999,61.75,6,1,1,0,0,4,3,1,336,21169.658,0,0,1999.4329 -15526,19074,34676,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,1,1,0,0,2,6.6435509,6.9794893,5.9270525,3,0,0,0,-9,0,-1020.5479,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,22,30,15,1,0,-9,0,3.3859427,3.3859427,0,0,0,0,0,0,0,7,1,1,0,0,5.8142753,9.7862883,3,43.869999,46.5,-9,-9,4,1,1,0,1,5,2,1,568,465376.53,0,0,700.78479 -15527,19075,34677,34678,-9,-9,2,1,0,54,1,0,1,0,1,-9,1,1,0,0,5,8.5245609,8.409462,0,2,0,-9,8,0,-1,24.390097,0,0,0,55,1,3,1,3,2,2019,1,1,11,1,45,30,15,1,0,1,0,12.381754,12.381754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,61.279999,46.169998,5,1,1,0,0,2,5,1,861,1886353,0,0,5254.0786 -15527,19075,34678,34677,-9,-9,1,1,1,55,1,0,1,0,1,-9,2,1,0,0,3,8.9330244,9.3689928,0,2,0,-9,8,0,1,7.7478552,0,0,0,54,1,5,1,2,2,2019,1,2,5,0,41,40,15,1,0,1,0,34.982933,34.982933,0,0,0,0,0,0,0,0,1,1,0,1.3372394,0,0,0,61.279999,46.169998,57.060001,57.759998,6,1,1,0,0,2,5,1,861,1886353,0,0,5254.0786 -15527,19076,34679,-9,34677,34678,3,1,1,18,2,0,1,1,2,0,7,2,0,0,5,7.0922742,6.8779716,0,3,0,0,0,-9,0,-1010.8342,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,7,1,1,0,0,2,5,1,418,154248.53,0,0,1289.3645 -15528,19077,34680,-9,-9,-9,1,1,0,52,2,0,1,0,2,-9,2,1,0,0,3,7.4006796,7.063365,0,4,0,0,0,-9,0,-827.87482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,19,18,15,1,1,-9,0,7.3220816,7.3220816,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.849998,44.810001,-9,-9,5,1,1,0,0,1,2,1,144,-39917.707,0,0,-73.837677 -15529,19078,34681,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,5,7.6109352,7.4852185,0,3,0,0,0,-9,0,-992.23138,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,31,22,15,1,0,-9,0,7.8905568,7.8905568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.060001,57.689999,-9,-9,5,1,1,0,0,13,3,1,301,558488.13,0,0,834.89703 -15530,19079,34682,34683,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,59,0,-5,128.19505,0,0,0,82,3,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.889999,38.080002,54,45,6,1,1,0,0,9,3,1,515.5,581866.13,0,0,1979.2954 -15530,19079,34683,34682,-9,-9,2,1,1,82,1,0,0,0,3,-9,1,1,0,0,3,7.9472423,8.2354641,0,1,0,-9,7,0,5,17.274094,0,0,0,77,3,2,3,-9,-9,2019,2,1,9,1,40,40,15,1,0,4,0,9.3837242,9.3837242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,58.889999,38.080002,6,1,1,0,0,9,3,1,515.5,581866.13,0,0,1979.2954 -15531,19080,34684,34685,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,0,3,8.1645403,7.7244458,0,2,0,-9,3,0,-4,9.908432,0,0,1,38,1,3,1,2,3,2019,1,2,13,1,16,0,15,1,0,1,0,23.947073,23.947073,0,0,0,0,0,0,0,0,1,1,0,3.9356899,0,0,0,54.369999,54.799999,53.669998,51.009998,6,1,1,0,0,13,5,1,564.66669,163914.58,0,0,3780.9346 -15531,19080,34685,34684,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,0,3,8.7876358,8.8073835,0,2,0,-9,3,0,4,-36.861797,0,0,0,34,1,3,1,-9,-9,2019,1,1,11,0,42,41,15,1,0,1,0,16.675304,16.675304,0,0,0,0,0,0,0,0,1,1,0,4.5372257,0,0,0,53.669998,51.009998,54.369999,54.799999,6,1,1,0,0,13,5,1,564.66669,163914.58,0,0,3780.9346 -15531,19080,34686,-9,34684,34685,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-892.58154,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,5,1,564.66669,163914.58,0,0,3780.9346 -15532,19081,34687,34688,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,46,0,11,0,0,0,0,65,3,2,3,3,3,2019,4,1,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.67389,3,51.849998,48.84,53.709999,37.869999,5,1,1,0,0,7,1,1,726,392110.91,0,0,759.59961 -15532,19081,34688,34687,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,46,0,-11,0,0,0,0,76,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.345329,3,53.709999,37.869999,51.849998,48.84,6,1,1,0,0,7,1,1,726,392110.91,0,0,759.59961 -15532,19082,34689,-9,34687,34688,3,1,1,42,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-974.76721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,1,1,0,0,7,1,1,647,-199155.58,0,0,25.762644 -15532,19083,34690,-9,34687,34688,4,1,1,31,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1012.7167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,7,1,1,279,59301.879,0,0,945.63373 -15533,19084,34691,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,0,3,7.854795,8.159318,7.1610823,3,0,0,0,-9,0,-926.74371,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,11,22,21,15,1,1,-9,0,15.298603,15.298603,0,0,0,0,0,0,0,0,0,0,0,7.5704861,7.6733999,0,0,33.77,38.310001,-9,-9,6,1,1,0,0,11,4,1,685,-81134.719,0,0,1864.5022 -15534,19085,34692,34693,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,0,4,8.6833382,8.875411,0,1,0,-9,11,0,-5,-107.41516,0,0,0,61,1,4,1,2,2,2019,1,1,8,0,42,40,15,1,0,1,0,12.834929,12.834929,0,0,0,0,0,0,0,2,0,0,0,7.4097085,0,.82690579,3,50.650002,52.439999,52.07,51.529999,6,1,1,0,0,6,5,1,1575,1134004,0,0,4978.8799 -15534,19085,34693,34692,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,0,4,9.0362387,8.9507284,5.537437,1,0,-9,11,0,5,75.750305,0,0,0,56,1,4,1,2,2,2019,1,2,7,0,10,50,15,1,0,1,0,102.18153,102.18153,0,0,0,0,0,0,0,5.48,0,0,0,4.605093,5.7154517,0,3,52.07,51.529999,50.650002,52.439999,6,1,1,0,0,6,5,1,1575,1134004,0,0,4978.8799 -15535,19086,34694,34695,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,0,5,0,7.9428239,7.921277,1,0,-9,52,0,1,84.859131,0,0,0,75,3,3,3,-9,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4219365,7.7049384,0,0,59.43,58.049999,51,46,7,1,1,0,0,10,3,1,507,980545,0,0,3144.2947 -15535,19086,34695,34694,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,0,3,0,5.2159929,5.4446573,1,0,-9,52,0,-1,-39.596664,0,0,0,76,1,5,3,-9,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3352151,0,0,51,46,59.43,58.049999,6,1,1,0,0,10,3,1,507,980545,0,0,3144.2947 -15536,19087,34696,34697,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,3,0,8.3104763,8.4271507,1,0,-9,4,0,-1,-17.743544,0,0,0,72,2,3,3,2,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5165148,8.3414545,0,0,55.77,36.73,57.330002,53.459999,7,1,1,0,0,9,4,1,651.5,1205825.8,0,0,4413.7559 -15536,19087,34697,34696,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.8371887,5.7812243,1,0,-9,4,0,1,75.941658,0,0,0,71,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.7128179,5.9034514,0,0,57.330002,53.459999,55.77,36.73,7,1,1,0,0,9,4,1,651.5,1205825.8,0,0,4413.7559 -15537,19088,34698,-9,34701,34700,6,1,1,0,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-891.16571,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,13,2,1,1403.75,214690.88,0,0,1479.5812 -15537,19088,34699,-9,34701,34700,5,1,1,8,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1153.5647,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,2,1,1403.75,214690.88,0,0,1479.5812 -15537,19088,34700,34701,-9,-9,2,1,1,37,1,1,4,0,3,-9,2,1,0,0,5,8.2174644,8.0760937,0,2,0,-9,9,0,3,-13.751462,0,0,0,34,2,5,1,-9,-9,2019,1,1,10,1,56,30,15,1,0,1,0,6.0287361,6.0287361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.630001,56.139999,57.060001,57.759998,7,1,1,0,0,13,2,1,1403.75,214690.88,0,0,1479.5812 -15537,19088,34701,34700,-9,-9,1,1,0,34,1,1,4,0,2,-9,1,1,0,0,5,5.4541931,5.5183058,0,2,0,-9,9,0,-3,-59.03418,0,0,1,37,3,5,1,2,3,2019,1,2,5,0,10,35,15,1,0,1,0,3.4661014,3.4661014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.630001,56.139999,7,1,1,0,0,13,2,1,1403.75,214690.88,0,0,1479.5812 -15538,19089,34702,-9,34703,34704,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1114.3505,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,4,1,696,1490726.1,0,0,3373.189 -15538,19089,34703,34704,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,0,3,9.1166477,9.018177,0,2,0,-9,14,0,-7,-53.371555,0,0,1,44,1,4,3,2,2,2019,2,2,24,11,53,47,15,1,1,3,0,14.594729,14.594729,0,0,0,0,0,0,0,0,1,1,0,2.9443631,0,0,0,30.940001,61.650002,58.150002,52.91,4,1,1,0,0,10,4,1,696,1490726.1,0,0,3373.189 -15538,19089,34704,34703,-9,-9,2,1,1,44,1,0,1,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,13,0,7,73.525627,0,0,0,37,1,3,1,2,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2773384,0,0,0,58.150002,52.91,30.940001,61.650002,6,1,1,0,0,10,4,1,696,1490726.1,0,0,3373.189 -15539,19090,34705,34706,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,0,1,8.7118816,8.5095949,0,1,0,-9,6,0,0,-51.282448,0,0,1,50,2,4,1,2,2,2019,1,2,20,5,55,60,15,1,1,1,0,9.879056,9.879056,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.612013,3,45.150002,15.72,53,55,4,1,1,0,1,9,5,0,353.5,1359290.5,0,0,3282.8782 -15539,19090,34706,34705,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.1309948,8.1089258,0,1,0,-9,2,0,9,62.987171,0,0,0,41,1,1,1,-9,-9,2019,1,1,9,1,40,45,15,1,0,1,0,10.446662,10.446662,0,0,0,0,0,0,0,0,0,0,0,5.5688539,0,0,0,53,55,45.150002,15.72,6,1,1,0,0,9,5,0,353.5,1359290.5,0,0,3282.8782 -15540,19091,34707,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,1,0,6.8664474,7.2428145,3,0,0,0,-9,0,-1018.8941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.3753259,0,0,0,0,0,0,1,1,0,2.3295188,6.7984042,0,0,51.830002,25.73,-9,-9,5,1,1,0,0,11,2,1,155,346609,0,0,1739.8257 -15541,19092,34708,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,0,3,0,8.0925646,7.803102,3,0,0,0,-9,0,-1031.3096,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3034477,0,0,63.02,35.77,-9,-9,6,1,1,0,0,4,4,1,155,971059.25,0,0,2172.6575 -15542,19093,34709,-9,34711,34710,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.8653,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,871,1672559.3,0,0,6892.9561 -15542,19093,34710,34711,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,5,9.7093277,9.4172935,0,2,0,-9,14,0,-2,115.81904,0,0,0,42,1,4,1,-9,-9,2019,1,1,8,0,50,0,15,1,0,1,0,38.085846,38.085846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,37.400002,51.689999,6,1,1,0,0,8,5,1,871,1672559.3,0,0,6892.9561 -15542,19093,34711,34710,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,4,8.2984123,8.0483818,0,2,0,-9,14,0,2,103.0588,-9,0,1,40,1,5,1,2,2,2019,1,2,17,6,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0306809,0,0,0,37.400002,51.689999,57.060001,57.759998,6,1,1,0,0,8,5,1,871,1672559.3,0,0,6892.9561 -15542,19093,34712,-9,34711,34710,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.5587,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,8,5,1,871,1672559.3,0,0,6892.9561 -15543,19094,34713,34715,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,0,3,9.5735683,9.6513033,0,2,0,-9,23,0,3,-32.160374,0,0,0,50,1,3,1,1,1,2019,1,2,12,0,40,60,15,1,0,1,0,40.312149,40.312149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.880001,44.709999,42.939999,6,1,1,0,0,12,5,1,340,2967005,0,0,6730.085 -15543,19094,34714,-9,34715,34713,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1156.9578,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,340,2967005,0,0,6730.085 -15543,19094,34715,34713,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,3,8.5283966,8.6143293,0,2,0,-9,23,0,-3,-21.934412,0,0,0,53,1,3,1,1,1,2019,1,1,14,2,40,45,15,1,0,1,0,14.828378,14.828378,0,0,0,0,0,0,0,0,0,0,0,5.6089454,0,0,0,44.709999,42.939999,51.66,54.880001,6,1,1,0,0,12,5,1,340,2967005,0,0,6730.085 -15543,19094,34716,-9,34715,34713,3,1,1,17,2,0,2,1,2,0,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-934.98346,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.880001,47.860001,-9,-9,4,1,1,0,0,12,5,1,340,2967005,0,0,6730.085 -15544,19095,34717,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,1,1,0,0,4,7.6707397,7.8196101,0,3,0,0,0,-9,0,-937.18042,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,25,25,15,1,0,-9,0,9.2625914,9.2625914,0,0,0,0,0,0,0,0,0,0,0,5.331409,0,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,12,3,1,224,0,0,0,1269.8423 -15545,19096,34718,34719,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.2888446,7.0220351,1,0,-9,3,0,1,-110.43796,0,0,0,64,3,3,3,3,3,2019,4,2,7,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8556232,7.4124527,10.920726,3,58.720001,51.290001,50,47,7,1,1,0,0,6,3,1,955.5,639300.94,0,0,2953.981 -15545,19096,34719,34718,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,0,3,0,7.4374838,7.2306395,1,0,-9,3,0,-1,92.702209,0,0,0,65,2,4,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7918754,7.5103521,0,0,50,47,58.720001,51.290001,5,1,1,0,0,6,3,1,955.5,639300.94,0,0,2953.981 -15546,19097,34720,34721,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.148921,8.3898373,0,1,0,-9,30,0,1,27.348186,0,0,0,53,2,3,3,2,2,2019,2,1,13,3,26,24,15,1,0,4,0,18.702431,18.702431,0,0,0,0,0,0,0,0,0,0,0,4.3988142,0,0,0,44.470001,57.73,57.330002,53.459999,4,1,1,0,0,6,5,1,825,1001730.6,0,0,3666.7207 -15546,19097,34721,34720,-9,-9,1,1,1,53,1,0,0,0,2,-9,4,3,0,0,3,0,8.1476669,8.3754416,1,0,-9,30,0,-1,85.529465,0,0,0,54,1,4,1,2,2,2019,3,2,8,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3643718,7.7600284,0,0,57.330002,53.459999,44.470001,57.73,6,1,1,0,0,6,5,1,825,1001730.6,0,0,3666.7207 -15546,19098,34722,-9,34720,34721,3,1,1,21,2,0,0,0,1,1,2,1,0,0,3,7.6485629,8.250926,0,3,0,0,0,-9,0,-1110.2416,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,1,39,0,15,1,0,-9,1,10.90848,10.90848,0,0,0,0,0,0,0,0,0,0,0,3.5537248,0,0,0,31.57,58.669998,-9,-9,4,1,1,0,0,6,4,1,243,-84099.078,0,0,2171.0803 -15546,19099,34723,-9,34720,34721,4,1,0,19,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-914.40576,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,18,5,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9320941,0,0,0,25.209999,61.580002,-9,-9,6,1,1,0,0,6,2,1,693,153538.69,0,0,-662.90234 -15547,19100,34724,34725,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,2,0,7.6083922,7.7213287,1,0,-9,57,0,-1,-5.8806205,0,0,0,80,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,7.015491,0,1,29.98,52.419998,52,45,6,1,1,0,0,4,2,1,1103.5,278802.81,0,0,1547.4547 -15547,19100,34725,34724,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,1,.75036722,0,0,0,79,1,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.765456,0,0,0,52,45,29.98,52.419998,6,1,1,0,0,4,2,1,1103.5,278802.81,0,0,1547.4547 -15548,19101,34726,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,0,3,0,6.7533603,6.6285181,3,0,0,0,-9,0,-1043.1538,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71643811,7.0912275,0,0,52,48,-9,-9,5,3,4,0,0,6,2,1,619,1370790.9,0,0,1049.0239 -15549,19102,34727,34728,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,0,4,8.8304138,8.6234541,0,2,0,-9,8,0,0,14.021345,0,0,0,48,2,4,1,-9,-9,2019,1,1,9,0,43,48,15,1,0,1,0,15.647503,15.647503,0,0,0,0,0,0,0,0,1,1,0,1.5770292,0,0,0,55.189999,54.259998,38.689999,61.75,6,1,1,0,0,10,4,1,797,803638,0,0,3086.6069 -15549,19102,34728,34727,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,4,7.1273394,7.1542702,0,2,0,-9,8,0,0,58.36581,0,0,0,48,2,4,1,2,2,2019,1,2,9,0,16,20,15,1,0,1,0,10.350963,10.350963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.689999,61.75,55.189999,54.259998,6,1,1,0,0,10,4,1,797,803638,0,0,3086.6069 -15549,19102,34729,-9,34728,34727,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-857.8183,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,4,1,797,803638,0,0,3086.6069 -15550,19103,34730,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,2,0,9.0015783,8.4527311,3,0,0,0,-9,0,-1089.2058,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.927394,8.5721979,0,0,61.82,34.040001,-9,-9,6,1,1,0,0,2,5,1,183,396007.59,0,0,4026.0996 -15551,19104,34731,34732,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,5,8.6018715,8.9741011,0,1,0,-9,29,0,-1,-5.9935522,0,0,0,49,2,4,1,2,2,2019,1,1,8,0,45,42,15,1,0,1,0,16.894724,16.894724,0,0,0,0,0,0,0,0,0,0,0,.58678514,0,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,5,5,1,353,698767.06,0,0,6933.5781 -15551,19104,34732,34731,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,9.4593792,9.1473665,0,1,0,-9,29,0,1,54.413246,0,0,0,48,2,5,1,2,2,2019,1,2,7,0,45,55,15,1,0,1,0,30.648211,30.648211,0,0,0,0,0,0,0,0,0,0,0,5.3958721,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,5,5,1,353,698767.06,0,0,6933.5781 -15551,19105,34733,-9,34731,34732,3,1,0,25,2,0,0,0,1,-9,2,1,0,0,3,8.7949572,8.6443586,0,3,0,0,0,-9,0,-961.97626,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,40,15,1,0,-9,1,16.751314,16.751314,0,0,0,0,0,0,0,0,0,0,0,4.0447502,0,0,0,43.959999,55.639999,-9,-9,7,1,1,0,0,5,5,1,2504,140210.03,0,0,975.15063 -15551,19106,34734,-9,34731,34732,4,1,1,20,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1017.9347,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0375829,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,5,1,1,433,-157877.39,0,0,1504.7443 -15552,19107,34735,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,1,0,5.8769155,5.7122326,3,0,0,0,-9,0,-949.49139,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,10,0,0,15,4,1,-9,0,0,0,1,3.6919768,0,0,0,0,85.014816,0,1,1,0,0,5.5385308,0,0,39.619999,22.870001,-9,-9,3,2,3,0,0,8,2,0,139,0,0,0,1162.5154 -15553,19108,34736,-9,34739,34740,2,1,1,16,2,0,3,1,2,-9,7,2,0,0,2,0,0,0,2,0,0,0,-9,0,-917.81128,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.060001,43.509998,-9,-9,6,1,1,0,0,8,2,0,459,10521.341,0,0,2872.9841 -15553,19108,34737,-9,34739,34740,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.5519,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,8,2,0,459,10521.341,0,0,2872.9841 -15553,19108,34738,-9,34739,34740,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-872.63672,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,2,0,459,10521.341,0,0,2872.9841 -15553,19108,34739,34740,-9,-9,1,1,0,47,1,0,3,0,3,-9,1,1,0,0,2,6.3946271,6.4744978,0,2,0,-9,7,0,-3,-176.02429,0,0,0,50,2,4,1,-9,-9,2019,1,5,26,9,7,0,15,1,1,1,0,11.124532,11.124532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.380001,41.43,51.490002,57.57,7,1,1,0,1,8,2,0,459,10521.341,0,0,2872.9841 -15553,19108,34740,34739,-9,-9,5,1,1,50,1,0,3,0,2,-9,2,1,0,0,4,7.8511662,7.9793458,0,2,0,-9,7,0,3,104.58231,0,0,0,47,3,2,1,-9,-9,2019,1,1,12,1,41,0,15,1,0,1,0,7.1889768,7.1889768,0,0,0,0,0,0,0,2,1,1,0,0,0,4.6960402,3,51.490002,57.57,54.380001,41.43,4,1,1,0,0,8,2,0,459,10521.341,0,0,2872.9841 -15554,19109,34741,34742,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,62,0,-1,-141.44418,0,0,0,83,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.1686702,0,0,0,69.510002,25.93,60.119999,54.799999,7,1,1,0,0,10,5,1,475,5777303.5,0,0,9580.5449 -15554,19109,34742,34741,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,0,4,0,9.6887722,9.3248625,1,0,-9,62,0,1,-7.7268729,0,0,0,82,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6784477,9.842351,0,0,60.119999,54.799999,69.510002,25.93,7,1,1,0,0,10,5,1,475,5777303.5,0,0,9580.5449 -15555,19110,34743,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.5136042,8.2786751,0,3,0,0,0,-9,0,-913.49908,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,50,45,15,1,0,-9,0,12.816111,12.816111,0,0,0,0,0,0,0,0,1,1,0,2.1073463,0,0,0,51.490002,57.57,-9,-9,6,2,3,0,0,5,5,1,1141,126111.43,0,0,2423.5601 -15556,19111,34744,-9,-9,-9,1,1,0,70,3,0,1,0,3,-9,4,3,0,0,2,0,6.063417,6.3247862,4,0,0,0,-9,0,-1021.2265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7557726,0,0,0,43.299999,48.119999,-9,-9,4,1,1,0,0,10,2,1,260,143515.17,0,0,1315.5171 -15556,19112,34745,34746,34744,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,2,9.1329622,9.2712641,0,2,0,-9,7,0,-6,-22.578836,0,0,0,52,1,4,1,2,2,2019,1,3,11,0,43,40,15,1,0,1,0,27.097677,27.097677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,42.669998,57.16,56.150002,4,1,1,0,0,10,5,1,537.66669,888908.5,0,0,6038.2168 -15556,19112,34746,34745,-9,-9,3,1,0,52,1,0,1,0,1,-9,2,1,0,0,4,9.1598282,9.2265043,0,2,0,-9,7,0,6,20.636486,0,0,0,46,2,2,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,20.541761,20.541761,0,0,0,0,0,0,0,0,1,1,0,3.0680845,0,0,0,57.16,56.150002,54.77,42.669998,6,1,1,0,0,10,5,1,537.66669,888908.5,0,0,6038.2168 -15556,19112,34747,-9,34746,34745,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1176.6372,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,10,5,1,537.66669,888908.5,0,0,6038.2168 -15557,19113,34748,-9,34749,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,0,4,8.2174416,8.5703011,0,3,0,0,0,-9,0,-1026.9471,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,45,40,15,1,0,-9,1,14.856826,14.856826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,13,5,1,440,147946.63,0,0,2317.2695 -15557,19114,34749,-9,-9,-9,2,1,0,60,3,0,0,0,3,-9,2,1,0,0,3,7.6979551,7.9545674,0,3,0,0,0,-9,0,-1085.7974,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,40,35,15,1,0,-9,0,7.1401124,7.1401124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,5,1,1,0,0,13,3,1,1799,228657.67,0,0,337.52267 -15557,19115,34750,-9,34749,-9,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,8.5739241,8.8364048,0,3,0,0,0,-9,0,-1109.0984,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,40,40,15,1,0,-9,1,16.134666,16.134666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,13,5,1,670,-87994.086,0,0,1854.698 -15558,19116,34751,34752,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,4,0,0,0,0,71,3,2,3,3,3,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,1,13.082879,11.880435,0,0,0,176.87073,0,1,1,0,0,0,0,0,50.849998,27.01,59.5,33.849998,2,1,1,0,0,12,1,0,846.5,81058.156,0,0,2342.0117 -15558,19116,34752,34751,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,-4,0,0,0,0,75,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,9.1354361,1,59.5,33.849998,50.849998,27.01,7,1,1,0,0,12,1,0,846.5,81058.156,0,0,2342.0117 -15559,19117,34753,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,3,7.3107281,7.3621612,0,3,0,0,0,-9,0,-992.07233,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,4.9061956,4.9061956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.450001,57.490002,-9,-9,4,1,1,0,0,11,3,0,610,391196.69,0,0,309.48752 -15560,19118,34754,34755,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,0,4,7.6258821,7.4805303,0,2,0,-9,33,0,3,74.66494,0,0,0,49,2,3,1,2,2,2019,1,2,9,0,42,40,15,1,0,1,0,4.4249873,4.4249873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,45.439999,37.23,6,1,1,0,0,9,3,0,359,-36693.637,0,0,1386.2872 -15560,19118,34755,34754,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,7.4618812,7.373199,0,2,0,-9,33,0,-3,16.271448,0,0,0,52,2,4,1,2,2,2019,1,1,15,3,18,28,15,1,0,1,0,7.4093523,7.4093523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.439999,37.23,58.150002,52.91,3,1,1,0,0,9,3,0,359,-36693.637,0,0,1386.2872 -15560,19119,34756,-9,34755,34754,3,1,1,18,2,0,1,1,3,0,7,2,0,0,4,7.5426726,7.5371065,0,3,0,0,0,-9,0,-940.93268,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,3,0,574,137418.42,0,0,1163.3715 -15561,19120,34757,34759,-9,-9,2,1,1,33,1,0,4,0,2,-9,2,1,0,0,4,7.7294788,8.0291529,0,2,0,-9,7,0,-3,27.852873,0,0,0,36,2,2,3,-9,-9,2019,2,1,10,1,40,10,15,1,0,3,0,7.1162653,7.1162653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,55.200001,49.400002,5,2,3,0,0,7,2,1,515.66669,8602.2539,0,0,1668.7104 -15561,19120,34758,-9,34759,34757,4,1,0,13,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.3252,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,7,2,1,515.66669,8602.2539,0,0,1668.7104 -15561,19120,34759,34757,-9,-9,1,1,0,36,1,0,4,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,18,0,3,.72387767,0,0,1,33,2,4,1,3,2,2019,3,2,2,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.200001,49.400002,50,57,7,2,3,0,0,7,2,1,515.66669,8602.2539,0,0,1668.7104 -15561,19120,34760,-9,34759,34757,6,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1004.8188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,2,1,515.66669,8602.2539,0,0,1668.7104 -15561,19120,34761,-9,34759,34757,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.44183,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,7,2,1,515.66669,8602.2539,0,0,1668.7104 -15561,19120,34762,-9,34759,34757,3,1,1,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.2384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,7,2,1,515.66669,8602.2539,0,0,1668.7104 -15562,19121,34763,34764,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,43,0,4,0,0,0,0,64,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,65.389999,38.759998,7,1,1,0,0,12,1,0,1950.5,333821.44,0,0,1313.4624 -15562,19121,34764,34763,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,43,0,-4,0,0,0,0,68,3,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.389999,38.759998,60.02,56.419998,7,1,1,0,0,12,1,0,1950.5,333821.44,0,0,1313.4624 -15563,19122,34765,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,0,2,0,6.1241584,6.4511585,3,0,0,0,-9,0,-1128.9352,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3953404,0,0,55.349998,43.869999,-9,-9,6,1,1,0,0,7,2,1,350,372981.34,0,0,1381.1729 -15564,19123,34766,34767,-9,-9,1,1,0,28,1,1,1,0,2,-9,2,1,0,0,4,8.2503338,8.0981922,0,2,0,-9,6,0,-2,55.464397,0,1,1,30,2,4,1,2,2,2019,1,2,9,1,32,38,15,1,0,1,0,12.295742,12.295742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.790001,62.549999,50.48,56.400002,6,1,1,0,0,13,4,1,434.33334,85525.742,0,0,2479.2512 -15564,19123,34767,34766,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,0,4,7.5762115,7.6206365,0,2,0,-9,6,0,2,-21.34993,0,0,0,28,2,4,1,-9,-9,2019,1,1,11,2,40,40,15,1,0,1,0,6.4936976,6.4936976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.400002,36.790001,62.549999,6,1,1,0,0,13,4,1,434.33334,85525.742,0,0,2479.2512 -15564,19123,34768,-9,34766,34767,3,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1082.5774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,4,1,434.33334,85525.742,0,0,2479.2512 -15565,19124,34769,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,2,0,6.9673815,7.5713091,3,0,0,0,-9,0,-892.12,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7100756,7.1295834,0,0,45.189999,48.639999,-9,-9,6,1,1,0,0,10,3,1,668,398340.91,0,0,978.56396 -15566,19125,34770,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,1,1,0,0,2,8.7621565,9.0718174,0,3,0,0,0,-9,0,-1059.1324,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,9,44,78,15,1,1,-9,0,22.002457,22.002457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.419998,35.77,-9,-9,2,1,1,0,1,6,5,0,332,104039.91,0,0,2405.8911 -15566,19126,34771,-9,34770,-9,2,1,0,21,2,0,0,0,2,1,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-982.30981,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.24,59.82,-9,-9,5,1,1,1,1,6,1,0,3630,-68827.398,0,0,208.7785 -15566,19127,34772,-9,34770,-9,3,1,0,20,2,0,0,0,1,-9,7,2,0,0,3,0,4.6515217,4.3107548,3,0,0,0,-9,0,-781.32166,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0691695,0,0,0,19.43,62.919998,-9,-9,6,1,1,0,0,6,2,0,476,0,0,0,-786.59491 -15567,19128,34773,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,0,2,0,6.5957375,6.4101658,3,0,0,0,-9,0,-1044.5341,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,5.8719959,0,0,0,0,8.7375259,0,1,1,0,6.2718358,6.5734916,0,0,45.189999,48.639999,-9,-9,5,1,1,0,0,10,2,1,440,43221.094,0,0,96.053307 -15568,19129,34774,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,0,3,0,8.1055937,7.8953156,3,0,0,0,-9,0,-1072.8994,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9896016,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,11,3,1,172,575919.69,0,0,2121.5283 -15569,19130,34775,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,8.3299627,8.0991268,0,3,0,0,0,-9,0,-795.04102,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,47,50,15,1,0,-9,0,10.06126,10.06126,0,0,0,0,0,0,0,0,1,1,0,1.1307794,0,0,0,34.830002,53.040001,-9,-9,4,1,1,0,0,9,4,0,253,147477.53,0,0,919.4798 -15569,19131,34776,-9,34775,-9,2,1,1,33,2,0,0,0,2,-9,2,1,0,0,4,8.3216114,8.4210835,0,3,0,0,0,-9,0,-1049.1853,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,38,40,15,1,0,-9,1,12.152205,12.152205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,9,4,0,759,-90407.594,0,0,1578.0129 -15570,19132,34777,34778,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,2,7.7724319,8.1101789,0,1,0,-9,2,0,-5,116.89258,0,1,1,29,1,4,1,2,2,2019,1,2,11,0,37,41,15,1,0,1,0,8.4872236,8.4872236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.360001,46.560001,49,58,5,1,1,0,0,11,4,1,1182.5,-29277.563,0,0,2110.6519 -15570,19132,34778,34777,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,0,4,7.7581801,8.2953129,0,1,0,-9,2,0,5,2.5829332,0,1,0,24,2,2,1,-9,-9,2019,1,1,10,1,37,37,15,1,0,1,0,7.5979376,7.5979376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,52.360001,46.560001,5,1,1,0,0,11,4,1,1182.5,-29277.563,0,0,2110.6519 -15571,19133,34779,34780,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,2,5.7993383,7.7803092,7.3508148,1,0,-9,19,0,-6,4.8146949,0,0,0,70,1,5,3,2,2,2019,4,2,13,2,1,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7504637,7.6631031,0,0,48.639999,39.939999,57.060001,57.759998,1,1,1,0,0,11,4,1,840.5,1477882.6,0,0,3974.5063 -15571,19133,34780,34779,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,0,5,0,7.9251571,8.331419,1,0,-9,19,0,6,-6.7394128,0,0,0,64,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7828636,8.0678596,0,0,57.060001,57.759998,48.639999,39.939999,7,1,1,0,0,11,4,1,840.5,1477882.6,0,0,3974.5063 -15572,19134,34781,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,0,4,0,7.2105193,7.6697421,3,0,0,0,-9,0,-1002.7891,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.640656,0,0,66.199997,41.049999,-9,-9,6,1,1,0,0,12,3,1,620,558288.88,0,0,1945.8047 -15573,19135,34782,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,0,3,7.7454467,8.040062,5.9183764,3,0,-9,0,1,0,-1046.14,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,38,38,15,1,0,-9,0,7.9896555,7.9896555,0,0,0,0,0,0,0,0,1,1,0,0,6.1474085,0,0,62.43,40.110001,-9,-9,4,1,1,0,0,4,4,0,408,787152.31,0,0,1763.9117 -15574,19136,34783,34784,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,48,0,-1,95.931366,0,0,0,75,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.48,25.57,60.52,53.200001,5,1,1,0,0,6,2,1,592,344788.06,0,0,1973.822 -15574,19136,34784,34783,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,4,0,7.1128983,7.0837212,1,0,-9,48,0,1,65.626923,0,0,0,74,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4001319,7.2027864,4.410079,3,60.52,53.200001,53.48,25.57,6,1,1,0,0,6,2,1,592,344788.06,0,0,1973.822 -15575,19137,34785,34786,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,6.9271626,6.6388712,1,0,-9,6,0,9,-22.4174,0,0,0,70,3,3,3,3,2,2019,4,1,11,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6989551,6.4427299,0,0,38,43.290001,60.59,36.84,7,1,1,0,0,10,2,1,373,1150691.5,0,0,2206.2368 -15575,19137,34786,34785,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,6.5117335,6.492434,1,0,-9,6,0,0,85.728554,0,0,0,79,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5452678,6.2488885,0,3,60.59,36.84,38,43.290001,6,1,1,0,0,10,2,1,373,1150691.5,0,0,2206.2368 -15576,19138,34787,34788,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,8.3880119,7.8292851,1,0,-9,23,0,-1,28.341059,-9,0,0,74,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3524094,8.1868877,0,0,57.16,56.150002,56.5,37.599998,6,1,1,0,0,2,4,1,1496.5,1664517.1,0,0,4710.8467 -15576,19138,34788,34787,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.7414346,7.9118147,1,0,-9,23,0,1,-42.472691,-9,0,0,73,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.619329,7.8556628,0,0,56.5,37.599998,57.16,56.150002,6,1,1,0,0,2,4,1,1496.5,1664517.1,0,0,4710.8467 -15577,19139,34789,34790,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,0,3,8.5467596,8.7898846,0,1,0,-9,32,0,-1,83.810722,0,0,0,59,1,4,3,-9,-9,2019,2,1,7,0,36,36,15,1,0,4,0,21.28956,21.28956,0,0,0,0,0,0,0,5.48,0,0,0,0,0,17.078117,1,48.169998,52.080002,54,53,6,1,1,0,0,9,4,1,253.5,1270843.1,0,0,3130.5459 -15577,19139,34790,34789,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,36,0,1,71.691757,0,0,0,58,1,3,1,-9,-9,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9980116,0,0,0,54,53,48.169998,52.080002,3,1,1,0,0,9,4,1,253.5,1270843.1,0,0,3130.5459 -15577,19140,34791,-9,34789,34790,3,1,1,19,2,0,0,1,3,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-858.94971,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,5,1,1,0,0,9,1,1,563,-28877.221,0,0,0 -15578,19141,34792,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1115.2592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,44.669998,-9,-9,2,1,1,0,0,9,1,0,1207,190868.52,0,0,1206.0292 -15579,19142,34793,34796,-9,-9,2,1,0,36,1,1,2,0,2,-9,2,1,0,0,5,7.8402638,8.1256189,0,2,0,-9,6,0,2,-91.992447,0,0,1,34,3,3,1,-9,-9,2019,1,1,10,1,40,45,15,1,0,1,0,9.3556042,9.3556042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,63.259998,42.529999,5,1,1,0,0,12,4,1,1336.25,82050.406,0,0,2770.9849 -15579,19142,34794,-9,34793,34796,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.28583,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,12,4,1,1336.25,82050.406,0,0,2770.9849 -15579,19142,34795,-9,34793,34796,4,1,0,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1009.5963,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,12,4,1,1336.25,82050.406,0,0,2770.9849 -15579,19142,34796,34793,-9,-9,1,1,1,34,1,1,2,0,3,-9,2,1,0,0,3,7.989408,8.4678593,0,2,0,-9,6,0,-2,9.2990217,0,0,0,36,2,5,1,2,3,2019,1,2,8,0,45,44,15,1,0,1,0,10.836652,10.836652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.259998,42.529999,54.099998,59.110001,6,1,1,0,0,12,4,1,1336.25,82050.406,0,0,2770.9849 -15580,19143,34797,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,4,0,7.4376292,7.2495174,3,0,0,0,-9,0,-910.67902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6604729,7.4297934,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,8,3,1,406,664175.44,0,0,4161.0234 -15581,19144,34798,34802,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,0,5,8.8705645,8.6798735,0,2,0,-9,19,0,0,-34.627323,0,0,1,40,1,3,1,2,2,2019,1,2,15,4,52,47,15,1,1,1,0,16.391243,16.391243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,57.630001,45.09,6,1,1,0,0,7,5,1,1410,444823.91,0,0,6349.6006 -15581,19144,34799,-9,34798,34802,5,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-974.65253,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,5,1,1410,444823.91,0,0,6349.6006 -15581,19144,34800,-9,34798,34802,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-921.18628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,5,1,1410,444823.91,0,0,6349.6006 -15581,19144,34801,-9,34798,34802,3,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-990.8111,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,5,1,1410,444823.91,0,0,6349.6006 -15581,19144,34802,34798,-9,-9,2,1,1,40,1,0,3,0,1,-9,2,1,0,0,3,9.5789213,9.4762201,0,2,0,-9,8,0,0,-4.4639544,0,0,0,40,1,5,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,35.434372,35.434372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.630001,45.09,48.18,61.799999,6,1,1,0,0,7,5,1,1410,444823.91,0,0,6349.6006 -15582,19145,34803,34804,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,8,0,-2,18.658598,0,0,0,69,2,3,3,3,2,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9191494,0,0,0,23.42,49.080002,60.290001,52.110001,6,1,1,0,0,7,3,1,1125.5,836858.88,0,0,6237.249 -15582,19145,34804,34803,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.1868896,8.1487131,1,0,-9,8,0,2,-161.85309,0,0,0,67,2,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,8.1736937,8.3279009,14.087759,2,60.290001,52.110001,23.42,49.080002,6,1,1,0,0,7,3,1,1125.5,836858.88,0,0,6237.249 -15582,19146,34805,-9,34803,34804,3,1,1,41,3,0,0,0,1,-9,2,1,0,0,4,9.6372967,9.6430283,0,3,0,0,0,-9,0,-1086.8551,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,50,15,1,0,-9,1,48.022129,48.022129,0,0,0,0,0,0,0,0,1,1,0,3.765331,0,0,0,52.049999,55.950001,-9,-9,6,1,1,0,0,7,5,1,1515,664676.38,0,0,4418.7861 -15583,19147,34806,34807,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.7893023,7.6531706,1,0,-9,47,0,-3,.80098861,0,0,0,68,1,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0638938,7.8824553,0,0,57.16,56.150002,55.189999,54.259998,7,1,1,0,0,10,4,1,698,1346738.8,0,0,3971.5791 -15583,19147,34807,34806,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,0,4,0,8.4382925,8.0779123,1,0,-9,47,0,3,-12.389695,0,0,0,65,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2673426,8.3121729,0,0,55.189999,54.259998,57.16,56.150002,7,1,1,0,0,10,4,1,698,1346738.8,0,0,3971.5791 -15584,19148,34808,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,0,3,8.6841545,8.5437746,0,3,0,0,0,-9,0,-917.45923,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,39,37,15,1,1,-9,0,19.083735,19.083735,0,0,0,0,0,0,0,0,0,0,0,4.2554197,0,0,0,44.360001,54.040001,-9,-9,3,1,1,0,0,9,5,1,851,1804057,0,0,2006.6606 -15585,19149,34809,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,0,3,8.0688906,7.6955247,0,1,0,-9,2,0,-3,-44.016365,0,1,0,-9,-9,-9,-9,2,2,2019,1,2,10,2,45,40,15,1,0,-9,0,6.8030019,6.8030019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.799999,57.029999,39.650002,42.5,6,1,1,0,0,6,4,0,225,127532.69,0,0,938.26715 -15585,19150,34810,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,7.8168516,8.0448694,0,1,0,-9,2,0,3,85.913612,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,1,15,4,38,15,15,1,1,-9,0,8.0442123,8.0442123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.650002,42.5,46.799999,57.029999,4,1,1,0,0,6,4,0,436,30480.178,0,0,-202.06342 -15586,19151,34811,34813,-9,-9,1,1,1,66,1,0,1,0,2,-9,4,3,0,0,4,4.333653,4.1375518,0,2,0,-9,24,0,10,124.73766,0,0,0,56,2,4,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4282587,0,0,0,48.810001,59.91,59.529999,56.439999,6,1,1,0,0,9,3,1,754.66669,791041.06,0,0,1455.8112 -15586,19151,34812,-9,34813,34811,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.7692,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,3,1,754.66669,791041.06,0,0,1455.8112 -15586,19151,34813,34811,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,0,4,8.0843487,7.9203734,5.6571288,2,0,-9,24,0,-10,15.799891,0,0,0,66,2,4,3,2,2,2019,2,1,6,0,38,38,15,1,0,4,0,7.3206511,7.3206511,0,0,0,0,0,0,0,0,1,1,0,5.8490405,0,0,0,59.529999,56.439999,48.810001,59.91,1,1,1,0,0,9,3,1,754.66669,791041.06,0,0,1455.8112 -15587,19152,34814,34817,-9,-9,2,1,1,51,1,0,2,0,2,-9,1,1,0,0,3,6.6168499,6.5436192,0,2,0,-9,8,0,7,85.803299,0,0,0,44,2,5,1,2,-9,2019,1,1,12,0,30,32,15,1,0,1,0,2.9667225,2.9667225,0,0,0,0,0,0,0,0,1,1,0,5.1994028,0,0,0,57.330002,53.459999,59.43,58.049999,6,1,1,0,0,4,3,1,417.25,51641.488,0,0,2042.4872 -15587,19152,34815,-9,34817,34814,3,1,1,17,2,0,2,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-900.85284,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.081387505,0,0,0,49.459999,56.91,-9,-9,6,1,1,0,0,4,3,1,417.25,51641.488,0,0,2042.4872 -15587,19152,34816,-9,34817,34814,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.32312,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,417.25,51641.488,0,0,2042.4872 -15587,19152,34817,34814,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,0,5,7.6975307,7.5922227,0,2,0,-9,8,0,-7,71.276543,0,0,1,51,2,3,1,-9,-9,2019,1,2,9,0,31,33,15,1,0,1,0,8.93437,8.93437,0,0,0,0,0,0,0,0,1,1,0,3.5876811,0,0,0,59.43,58.049999,57.330002,53.459999,7,1,1,0,0,4,3,1,417.25,51641.488,0,0,2042.4872 -15588,19153,34818,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,2,1,0,0,4,8.0336008,8.0809011,0,3,0,0,0,-9,0,-1001.8186,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,55,72,15,1,0,-9,0,7.9037118,7.9037118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,-9,-9,4,3,4,0,0,9,4,1,704,14859.101,0,0,1134.0433 -15589,19154,34819,-9,34820,34821,3,1,0,11,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1025.4095,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,10,5,1,326.66666,1108498.5,0,0,4994.002 -15589,19154,34820,34821,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.4233766,7.9822288,7.3099761,2,0,-9,4,0,-6,-174.73433,0,0,0,51,2,2,1,-9,-9,2019,1,1,13,3,16,24,15,1,0,1,0,9.1309099,9.1309099,0,0,0,0,0,0,0,0,1,1,0,0,7.041852,0,0,40.98,55.389999,40.639999,30.780001,6,1,1,0,0,10,5,1,326.66666,1108498.5,0,0,4994.002 -15589,19154,34821,34820,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,0,2,8.6569233,8.7585039,0,2,0,-9,4,0,6,-21.235455,0,0,0,45,2,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,18.008354,18.008354,0,0,0,0,0,0,0,0,1,1,0,7.068707,0,0,0,40.639999,30.780001,40.98,55.389999,6,1,1,0,0,10,5,1,326.66666,1108498.5,0,0,4994.002 -15590,19155,34822,34824,-9,-9,1,1,1,41,1,1,2,0,1,-9,2,1,0,0,4,9.1495066,9.5144911,0,2,0,-9,11,0,4,33.511021,0,0,0,37,1,3,3,2,1,2019,2,2,10,0,40,38,15,1,0,3,0,28.163734,28.163734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,58.32,50.220001,5,2,3,0,0,2,4,1,501,131658.7,0,0,3099.8901 -15590,19155,34823,-9,34824,34822,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.98181,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,2,4,1,501,131658.7,0,0,3099.8901 -15590,19155,34824,34822,-9,-9,2,1,0,37,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,11,0,-4,-56.913918,0,0,1,41,1,4,1,3,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.834451,0,0,0,58.32,50.220001,54.200001,57.490002,6,2,3,0,0,2,4,1,501,131658.7,0,0,3099.8901 -15590,19155,34825,-9,34824,34822,3,1,1,8,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1159.0912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,2,4,1,501,131658.7,0,0,3099.8901 -15591,19156,34826,34827,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,3.8518734,4.0338879,1,0,-9,44,0,-5,53.226795,0,0,0,73,2,1,3,-9,-9,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.366353,4.2306051,122.91654,1,42.709999,32.91,30.85,17.26,6,1,1,0,0,9,2,1,633.5,241062.45,0,0,2111.1616 -15591,19156,34827,34826,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,1,1,0,6.357945,6.498311,1,0,-9,44,0,5,-7.0916548,0,0,0,68,2,3,3,-9,-9,2019,4,1,27,10,0,0,15,4,1,4,0,0,0,1,0,133.12234,0,0,0,0,0,1,1,0,5.6034451,6.7422624,0,0,30.85,17.26,42.709999,32.91,2,1,1,0,0,9,2,1,633.5,241062.45,0,0,2111.1616 -15592,19157,34828,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,1,0,6.0997057,6.3677902,3,0,0,0,-9,0,-945.95679,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9159992,6.4045873,0,0,15.04,35.59,-9,-9,1,1,1,0,0,2,2,0,192,-126270.46,0,0,-371.0372 -15593,19158,34829,-9,34830,34831,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1053.0028,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,2638.6001,-10963.146,0,0,1949.3802 -15593,19158,34830,34831,-9,-9,1,1,0,35,1,1,3,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,14,0,0,72.258163,0,0,1,35,2,3,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.200001,51.139999,57.330002,53.459999,5,2,3,0,0,4,2,0,2638.6001,-10963.146,0,0,1949.3802 -15593,19158,34831,34830,-9,-9,2,1,1,35,1,1,3,0,2,-9,2,1,0,0,3,6.9321074,7.0920391,0,2,0,-9,8,0,0,73.013405,0,0,0,35,3,3,3,-9,-9,2019,2,1,11,0,16,16,15,1,0,3,0,6.4791288,6.4791288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,45.200001,51.139999,5,2,3,0,0,4,2,0,2638.6001,-10963.146,0,0,1949.3802 -15593,19158,34832,-9,34830,34831,4,1,0,6,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-848.07117,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,2,0,2638.6001,-10963.146,0,0,1949.3802 -15593,19158,34833,-9,34830,34831,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-971.16022,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,4,2,0,2638.6001,-10963.146,0,0,1949.3802 -15594,19159,34834,34835,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,8.6197357,8.5610065,0,1,0,-9,28,0,2,23.251511,0,0,0,43,2,5,1,2,3,2019,1,1,12,1,58,53,15,1,0,1,0,11.465456,11.465456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,35.529999,63.810001,6,1,1,0,0,5,5,1,478,1465607.1,0,0,4092.5508 -15594,19159,34835,34834,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,0,5,8.9422359,8.9616461,0,1,0,-9,27,0,-2,-145.23096,0,0,1,45,1,4,1,2,2,2019,1,2,15,4,60,50,15,1,1,1,0,16.300125,16.300125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.529999,63.810001,57.16,56.150002,6,1,1,0,0,5,5,1,478,1465607.1,0,0,4092.5508 -15594,19160,34836,-9,34835,34834,4,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,8.6102266,8.8292503,0,3,0,0,0,-9,0,-938.48431,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,42,15,1,0,-9,1,13.632584,13.632584,0,0,0,0,0,0,0,0,0,0,0,2.0674653,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,5,5,1,498,34571.063,0,0,1928.1808 -15594,19161,34837,-9,34835,34834,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,4,8.6093969,8.140399,0,3,0,0,0,-9,0,-1080.7229,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,38,41,15,1,0,-9,1,13.428883,13.428883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,54.330002,-9,-9,6,1,1,0,0,5,4,1,2015,275176.94,0,0,1625.2745 -15595,19162,34838,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,1,1,0,0,3,8.1296654,7.9061718,0,3,0,0,0,-9,0,-945.81805,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,48,50,15,1,0,-9,0,7.6316571,7.6316571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.84,50.439999,-9,-9,4,3,4,0,0,8,4,0,319,-16267.918,0,0,1835.3549 -15596,19163,34839,-9,34841,34842,4,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.96625,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,13,3,1,324,74066.57,0,0,2997.1201 -15596,19163,34840,-9,34841,34842,3,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.193,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,324,74066.57,0,0,2997.1201 -15596,19163,34841,34842,-9,-9,2,1,0,34,1,0,4,0,1,-9,2,1,0,0,4,7.7130556,7.6791878,0,2,0,-9,9,0,-8,-15.996059,0,0,1,42,2,3,1,-9,-9,2019,1,1,8,0,30,33,15,1,0,1,0,9.7872076,9.7872076,0,0,0,0,0,0,0,0,1,1,0,.69403344,0,0,0,51.639999,53.150002,40.099998,54.560001,6,1,1,0,0,13,3,1,324,74066.57,0,0,2997.1201 -15596,19163,34842,34841,-9,-9,1,1,1,42,1,0,4,0,2,-9,2,1,0,0,3,8.3901253,8.2487431,0,2,0,-9,9,0,8,71.160507,0,0,0,34,1,4,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,10.902445,10.902445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.099998,54.560001,51.639999,53.150002,6,1,1,0,0,13,3,1,324,74066.57,0,0,2997.1201 -15596,19163,34843,-9,34841,34842,5,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1018.2573,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,324,74066.57,0,0,2997.1201 -15596,19163,34844,-9,34841,34842,6,1,0,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.3501,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,324,74066.57,0,0,2997.1201 -15597,19164,34845,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,0,3,0,8.0027981,7.9306955,3,0,0,0,-9,0,-946.78656,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3892112,7.7703304,0,0,62.599998,34.560001,-9,-9,6,1,1,0,0,12,4,1,1827,1332957.9,0,0,2474.6184 -15598,19165,34846,-9,-9,-9,1,1,0,103,3,0,0,0,3,-9,4,3,0,1,3,0,5.3549757,5.5577745,3,0,0,0,-9,0,-1108.0704,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,20.057632,0,0,1,1,0,2.0961995,5.3442712,0,0,55,42,-9,-9,6,1,1,0,0,10,2,0,256,241580.58,0,0,1220.0801 -15599,19166,34847,-9,34851,34850,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-964.02393,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,2,1,710,96942.5,0,0,3033.9233 -15599,19166,34848,-9,34851,34850,6,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.9693,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,2,1,710,96942.5,0,0,3033.9233 -15599,19166,34849,-9,34851,34850,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.89221,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,710,96942.5,0,0,3033.9233 -15599,19166,34850,34851,-9,-9,2,1,1,36,1,0,3,0,1,-9,2,1,0,0,4,7.976769,8.1726904,0,2,0,-9,9,0,-1,68.016029,0,0,0,37,2,2,3,3,3,2019,2,1,13,1,47,50,15,1,0,3,0,6.741941,6.741941,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.529999,56.369999,15.38,47.389999,3,1,1,0,0,11,2,1,710,96942.5,0,0,3033.9233 -15599,19166,34851,34850,-9,-9,1,1,0,37,1,0,3,0,2,1,6,3,0,1,2,0,0,0,2,0,-9,9,0,1,226.47177,-9,0,1,36,1,4,1,3,-9,2019,3,2,16,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.38,47.389999,44.529999,56.369999,3,1,1,0,0,11,2,1,710,96942.5,0,0,3033.9233 -15599,19167,34852,-9,34851,34850,3,1,0,19,2,0,3,1,2,0,7,2,0,0,3,6.3779778,6.2124648,0,3,0,0,0,-9,0,-863.44501,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,-9,-9,6,1,1,0,0,11,2,1,230,245744.42,0,0,-88.215622 -15600,19168,34853,34854,-9,-9,2,1,0,31,1,1,2,0,2,-9,6,3,0,1,3,0,0,0,2,0,-9,6,0,-4,214.41164,0,0,1,35,2,4,1,-9,-9,2019,3,1,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,124.60953,3,54.369999,54.799999,37.32,52.939999,6,1,1,0,0,7,3,1,1797.25,88367.602,0,0,2666.5906 -15600,19168,34854,34853,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,4,8.5051374,8.027338,0,2,0,-9,6,0,4,10.449091,0,0,0,31,2,3,3,-9,-9,2019,2,2,11,1,45,40,15,1,0,3,0,10.423822,10.423822,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.32,52.939999,54.369999,54.799999,5,1,1,0,0,7,3,1,1797.25,88367.602,0,0,2666.5906 -15600,19168,34855,-9,34853,34854,3,1,0,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1060.3309,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,3,1,1797.25,88367.602,0,0,2666.5906 -15600,19168,34856,-9,34853,34854,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.9744,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,1,1797.25,88367.602,0,0,2666.5906 -15601,19169,34857,34858,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,8.3373575,8.0039835,1,0,-9,50,0,3,99.901436,0,0,0,71,2,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.5535526,7.872395,0,0,55.259998,43.43,58.200001,54.529999,4,1,1,0,0,8,3,1,351.5,984858.5,0,0,2912.9678 -15601,19169,34858,34857,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,5,0,6.4188647,6.3767266,1,0,-9,50,0,-3,-40.62751,0,0,0,74,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4355347,6.4863014,0,0,58.200001,54.529999,55.259998,43.43,6,1,1,0,0,8,3,1,351.5,984858.5,0,0,2912.9678 -15602,19170,34859,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,0,3,0,7.8389287,8.0097523,3,0,0,0,-9,0,-923.30322,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46309671,8.1749086,0,0,51.810001,46.849998,-9,-9,6,1,1,0,0,9,4,1,526,1403418.1,0,0,3429.2793 -15603,19171,34860,34861,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,7.7495522,7.7380366,0,2,0,-9,23,0,8,-21.49712,0,0,0,40,2,5,1,-9,-9,2019,1,2,9,1,35,37,15,1,0,1,0,9.427989,9.427989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,54.689999,57.470001,6,1,1,0,0,12,5,0,509.5,254763.34,0,0,3449.1616 -15603,19171,34861,34860,-9,-9,2,1,0,40,1,0,1,0,2,-9,2,1,0,0,5,8.8002596,8.9431019,0,2,0,-9,21,0,-8,134.92313,0,0,1,48,1,4,1,3,2,2019,1,1,11,0,45,57,15,1,0,1,0,14.463603,14.463603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,52,55,5,1,1,0,0,12,5,0,509.5,254763.34,0,0,3449.1616 -15603,19172,34862,-9,34861,34860,3,1,0,18,2,0,1,0,2,-9,7,2,0,0,4,6.7658668,7.0264807,0,3,0,0,0,-9,0,-962.08215,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,16,5,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,6,1,1,0,0,12,2,0,533,-156497.83,0,0,565.3371 -15604,19173,34863,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-954.87848,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.619999,-9,-9,7,2,3,0,0,8,1,1,312,-135777.81,0,0,0 -15605,19174,34864,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-935.35358,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0073739,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,1,1,538,205979.09,0,0,1708.9591 -15606,19175,34865,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,2,1,0,0,3,7.4997368,8.4610367,7.5554123,3,0,0,0,-9,0,-1052.152,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,19,20,15,1,0,-9,0,11.072349,11.072349,0,0,0,0,0,0,0,0,1,1,0,0,7.8260927,0,0,39.93,58.52,-9,-9,6,1,1,0,0,9,4,1,83,1516043,0,0,2310.8074 -15607,19176,34866,-9,34868,34867,1,1,1,31,2,0,0,0,1,-9,2,1,0,0,5,8.9418831,8.7559986,0,3,0,0,0,-9,0,-1061.1073,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.895839,0,0,0,54.099998,59.110001,-9,-9,5,2,3,0,0,7,5,1,1763,-15519.025,0,0,2000.3346 -15607,19177,34867,34868,-9,-9,3,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,5.6434078,6.2183471,0,1,0,-9,8,0,-5,15.339596,0,0,0,75,2,1,3,-9,-9,2019,4,2,11,0,0,20,15,4,0,3,0,0,0,1,9.6536694,8.420639,0,0,0,86.382492,0,1,1,0,0,0,0,0,54.200001,57.490002,27.41,25.549999,6,2,3,0,0,7,2,1,492,167268.14,0,0,1757.8538 -15607,19177,34868,34867,-9,-9,2,1,0,75,1,0,0,0,2,-9,6,3,0,1,1,0,0,0,1,0,-9,8,0,5,60.934258,0,0,0,70,1,4,3,-9,-9,2019,4,3,21,9,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3551446,0,0,0,27.41,25.549999,54.200001,57.490002,2,2,3,0,0,7,2,1,492,167268.14,0,0,1757.8538 -15608,19178,34869,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,1,0,8.7632866,8.2208204,3,0,0,0,-9,0,-1010.8488,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,1,0,0,4.4052067,0,0,0,0,1,1,0,7.0268574,8.4345064,0,0,51,20.27,-9,-9,3,1,1,0,0,9,4,1,748,2172633.3,0,0,2988.771 -15609,19179,34870,-9,34871,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1041.386,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,2,1,780,-51882.328,0,0,2350.0771 -15609,19179,34871,-9,-9,-9,1,1,0,47,3,0,3,0,2,-9,2,1,0,0,5,7.8221717,7.6062884,0,4,0,-9,0,-9,0,-1083.6525,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,0,15,1,0,-9,0,7.7950892,7.7950892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,5,2,1,780,-51882.328,0,0,2350.0771 -15609,19179,34872,-9,34871,-9,3,1,1,17,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-914.07404,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.709999,50.889999,-9,-9,6,1,1,0,0,5,2,1,780,-51882.328,0,0,2350.0771 -15609,19179,34873,-9,34871,-9,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-861.3269,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,2,1,780,-51882.328,0,0,2350.0771 -15609,19180,34874,-9,34871,-9,2,1,1,22,2,0,3,0,2,-9,2,1,0,0,5,7.847826,7.8946042,0,3,0,-9,0,-9,0,-981.34406,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,2,0,15,1,0,-9,1,147.30055,147.30055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.919998,41.849998,-9,-9,6,1,1,0,0,5,3,1,1736,-97662.25,0,0,1168.2159 -15610,19181,34875,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,0,4,0,7.1703372,6.8396225,3,0,0,0,-9,0,-1036.3544,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8857431,6.9344411,0,0,51.830002,57.200001,-9,-9,4,1,1,0,0,9,2,0,950,221775.47,0,0,1674.0276 -15611,19182,34876,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,0,5,0,7.9833751,8.0295229,3,0,0,0,-9,0,-1021.8424,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2485971,7.9877968,0,0,54,52.349998,-9,-9,7,1,1,0,0,12,4,1,376,725450.94,0,0,1532.1062 -15611,19183,34877,-9,-9,-9,2,1,1,69,2,0,0,0,2,-9,4,3,0,0,3,0,7.5246696,7.6583915,3,0,0,0,-9,0,-1026.5941,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0877457,7.9303932,0,0,49.580002,55.59,-9,-9,6,1,1,0,0,12,3,1,516,458211.34,0,0,2215.7639 -15612,19184,34878,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,0,4,0,6.6109529,6.4493179,3,0,0,0,-9,0,-1157.3933,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3366647,0,0,62.099998,51.16,-9,-9,7,1,1,0,0,11,2,1,1508,211288.97,0,0,1217.6918 -15613,19185,34879,34880,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,6.92836,6.7020154,1,0,-9,3,0,-3,-72.231766,0,0,0,86,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.7991018,6.7069087,7.6771679,1,65,34.830002,58.09,32.73,6,1,1,0,0,4,2,1,2025,440133.06,0,0,1952.1555 -15613,19185,34880,34879,-9,-9,1,1,0,86,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,3,0,3,57.314045,0,0,0,83,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,1.5477451,0,0,0,0,0,1,1,0,3.7523298,0,0,0,58.09,32.73,65,34.830002,6,1,1,0,0,4,2,1,2025,440133.06,0,0,1952.1555 -15614,19186,34881,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,0,5,7.9591365,7.7910361,0,3,0,-9,0,-9,0,-1037.2981,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,38,0,15,1,0,-9,0,8.5455446,8.5455446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,5,3,4,0,0,4,4,0,538,-29845.123,0,0,352.68646 -15615,19187,34882,-9,34883,34884,3,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-896.36853,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,7,3,0,633,105398.55,0,0,2116.252 -15615,19187,34883,34884,-9,-9,1,1,0,51,1,0,2,0,2,-9,2,1,0,0,2,7.8821669,8.1178894,6.2995963,2,0,-9,4,0,7,-64.56414,0,0,0,44,2,3,3,-9,3,2019,2,4,11,1,35,0,15,1,0,3,0,8.3337708,8.3337708,0,0,0,0,0,0,0,0,1,1,0,7.1001973,0,0,0,44.830002,33.869999,39.310001,52.139999,6,1,1,0,0,7,3,0,633,105398.55,0,0,2116.252 -15615,19187,34884,34883,-9,-9,4,1,1,44,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,4,0,-7,-76.89537,0,0,0,51,2,2,1,-9,-9,2019,3,1,12,0,0,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.310001,52.139999,44.830002,33.869999,2,1,1,1,1,7,3,0,633,105398.55,0,0,2116.252 -15615,19187,34885,-9,34883,34884,2,1,0,17,2,0,2,0,2,1,3,3,0,0,3,0,0,0,2,0,0,0,-9,0,-919.42145,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.93,58.52,-9,-9,4,1,1,1,0,7,3,0,633,105398.55,0,0,2116.252 -15616,19188,34886,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-942.46533,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.029999,41.709999,-9,-9,6,1,1,0,0,13,1,0,336,-78844.016,0,0,1069.074 -15617,19189,34887,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1018.7543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,19.917326,24.115124,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,13,1,0,556,7496.0791,0,0,1186.5936 -15617,19190,34888,-9,34887,-9,2,1,1,50,2,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-945.27942,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,11.222956,3,52,55,-9,-9,6,1,1,0,0,13,1,0,792,-79698.719,0,0,579.85425 -15618,19191,34889,34890,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,8.1965809,8.5608292,1,0,-9,43,0,3,45.529106,0,0,0,67,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6132083,8.6125107,0,0,48.279999,60.18,55.59,47.450001,7,1,1,0,0,5,4,1,2930.5,2061557.8,0,0,4336.4536 -15618,19191,34890,34889,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,7.2293148,7.5467024,1,0,-9,43,0,-3,-77.403084,0,0,0,70,1,4,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0182881,7.4382458,0,0,55.59,47.450001,48.279999,60.18,7,1,1,0,0,5,4,1,2930.5,2061557.8,0,0,4336.4536 -15619,19192,34891,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,2,1,0,0,1,8.6246281,8.4272394,0,3,0,0,0,-9,0,-955.51923,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,52,0,15,1,0,-9,0,9.5511732,9.5511732,0,0,0,0,0,0,0,2,0,0,0,0,0,6.081471,3,53.080002,34.439999,-9,-9,3,1,1,0,0,8,5,1,220,569463.63,0,0,2466.4951 -15620,19193,34892,34894,-9,-9,2,1,1,51,1,0,2,0,2,-9,1,1,0,0,4,5.587193,5.6552067,0,2,0,-9,9,0,-1,141.99005,0,0,0,52,1,5,1,2,2,2019,1,1,9,0,30,40,15,1,0,1,0,1.5117188,1.5117188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.060001,57.759998,6,1,1,0,0,2,3,1,732.75,88678.117,0,0,1417.7175 -15620,19193,34893,-9,34894,34892,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.14673,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,2,3,1,732.75,88678.117,0,0,1417.7175 -15620,19193,34894,34892,-9,-9,1,1,0,52,1,0,2,0,1,-9,1,1,0,0,5,8.027173,8.1573248,0,2,0,-9,9,0,1,87.184494,0,0,0,51,2,4,1,2,2,2019,1,2,6,0,35,38,15,1,0,1,0,9.4300108,9.4300108,0,0,0,0,0,0,0,0,1,1,0,2.9906311,0,0,0,57.060001,57.759998,48.869999,58.549999,6,1,1,0,0,2,3,1,732.75,88678.117,0,0,1417.7175 -15620,19193,34895,-9,34894,34892,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.0546,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,3,1,732.75,88678.117,0,0,1417.7175 -15621,19194,34896,34897,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,8.1977558,8.1060581,0,1,0,-9,1,-9,9,18.514801,-9,0,0,22,1,3,1,-9,-9,2019,1,1,18,6,50,0,15,1,1,1,0,8.0361509,8.0361509,0,0,0,0,0,0,0,0,0,0,0,3.1446614,0,0,0,32.16,46.110001,34.360001,57.34,2,1,1,0,0,8,4,0,1014.5,672002,0,0,3486.3987 -15621,19194,34897,34896,-9,-9,1,1,0,22,1,0,0,0,1,-9,2,1,0,0,3,7.4508524,7.6817651,0,1,0,1,1,-9,0,-92.271561,-9,1,1,31,1,3,1,2,2,2019,1,2,11,0,54,0,15,1,0,1,0,4.7536559,4.7536559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.360001,57.34,32.16,46.110001,6,1,1,0,0,8,4,0,1014.5,672002,0,0,3486.3987 -15622,19195,34898,-9,34901,34900,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.4274,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,4,4,1,720,215133.05,0,0,4406.3569 -15622,19195,34899,-9,34901,34900,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-990.60132,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,4,4,1,720,215133.05,0,0,4406.3569 -15622,19195,34900,34901,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,8.1065817,8.0154133,0,2,0,-9,6,0,3,-26.049044,0,0,0,35,1,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,11.065191,11.065191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.330002,53.459999,5,2,3,0,0,4,4,1,720,215133.05,0,0,4406.3569 -15622,19195,34901,34900,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,0,3,8.8388062,8.7427883,0,2,0,-9,9,0,-3,-51.929302,0,0,1,38,1,4,1,1,1,2019,1,2,6,0,20,38,15,1,0,1,0,36.200283,36.200283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,51,56,6,2,3,0,0,4,4,1,720,215133.05,0,0,4406.3569 -15623,19196,34902,34903,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,2,0,4.6583505,4.2713909,1,0,-9,9,0,0,101.43212,0,0,0,66,2,3,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,30.570614,0,0,12.210033,0,0,1,1,0,3.4304543,4.6453991,0,0,56.59,18.700001,48.98,57.220001,6,1,1,0,0,11,4,1,853.66669,1864111.1,0,0,5285.979 -15623,19196,34903,34902,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,1,3,8.8104324,8.510397,0,1,0,-9,9,0,0,27.401655,0,0,0,66,3,2,3,3,3,2019,2,2,10,0,65,69,15,1,0,4,0,10.86167,10.86167,0,0,0,0,0,0,0,61,1,1,0,0,0,73.935822,1,48.98,57.220001,56.59,18.700001,4,1,1,0,0,11,4,1,853.66669,1864111.1,0,0,5285.979 -15623,19196,34904,-9,-9,34903,3,1,1,17,2,0,0,1,2,0,7,2,0,0,4,0,0,0,1,0,0,0,-9,0,-1032.6462,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.27266443,0,0,0,27.75,67.050003,-9,-9,4,1,1,0,0,11,4,1,853.66669,1864111.1,0,0,5285.979 -15624,19197,34905,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,4,3,0,1,1,0,6.1232786,5.6926732,3,0,0,0,-9,0,-910.47247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.118037,6.2291732,0,0,47.150002,23.24,-9,-9,6,1,1,0,0,4,2,0,439,570291.19,0,0,874.08453 -15625,19198,34906,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-827.71722,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.25,37.279999,-9,-9,5,1,1,0,1,12,1,0,218,-98409.008,0,0,41.553638 -15626,19199,34907,-9,34910,34908,4,1,0,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-899.97516,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,588.25,12682.488,0,0,2527.4512 -15626,19199,34908,34910,-9,-9,1,1,1,32,1,2,2,0,2,-9,1,1,0,0,4,6.9461203,7.0326223,0,2,0,-9,7,0,-1,-33.366226,0,0,0,33,1,4,1,2,2,2019,1,2,13,2,50,40,15,1,0,1,0,4.0166616,4.0166616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.049999,57.869999,38.34,62.119999,6,1,1,0,0,6,2,0,588.25,12682.488,0,0,2527.4512 -15626,19199,34909,-9,34910,34908,3,1,0,1,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-951.97595,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,2,0,588.25,12682.488,0,0,2527.4512 -15626,19199,34910,34908,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,0,4,7.0021315,6.612298,0,2,0,-9,7,0,1,-13.619746,0,0,1,32,2,4,1,1,2,2019,1,1,14,3,34,20,15,1,0,1,0,2.6868277,2.6868277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.119999,33.049999,57.869999,6,1,1,0,0,6,2,0,588.25,12682.488,0,0,2527.4512 -15627,19200,34911,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,6.8786054,6.7094417,3,0,0,0,-9,0,-1039.496,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.5136771,0,0,53.529999,26.700001,-9,-9,6,1,1,0,0,13,2,0,248,287818.22,0,0,865.2879 -15628,19201,34912,-9,-9,-9,1,1,0,23,3,0,0,0,2,-9,2,1,0,0,3,8.2361736,8.0242319,0,3,0,-9,0,-9,0,-1117.9132,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,0,15,1,0,-9,0,8.2336502,8.2336502,0,0,0,0,0,0,0,0,0,0,0,2.7540948,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,9,4,1,744,189592.86,0,0,1567.8585 -15629,19202,34913,34914,-9,-9,2,1,0,73,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,8,0,-4,0,0,0,0,77,3,3,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,54,46,5,2,3,0,0,8,1,1,368.5,0,0,0,96.969376 -15629,19202,34914,34913,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,57,0,4,0,0,0,0,73,3,3,3,3,-9,2019,4,2,9,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,51,46,6,2,3,0,0,8,1,1,368.5,0,0,0,96.969376 -15630,19203,34915,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-986.64691,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,57.02,-9,-9,5,2,3,0,0,8,1,0,1221,0,0,0,0 -15630,19204,34916,-9,-9,-9,2,1,0,26,2,0,0,0,2,-9,7,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-971.42737,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,8,1,0,223,65040.063,0,0,0 -15631,19205,34917,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,3,0,5.4594717,5.4231524,3,0,0,0,-9,0,-1051.2617,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6527319,5.367918,0,0,45.490002,58.84,-9,-9,6,1,1,0,0,13,2,0,815,95344.633,0,0,1245.4462 -15632,19206,34918,-9,34921,34919,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-888.86383,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,4,1,388.75,662432.94,0,0,4701.561 -15632,19206,34919,34921,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,0,4,9.0540371,8.8392773,0,2,0,-9,9,0,5,185.45192,0,0,0,45,1,4,3,-9,-9,2019,2,1,9,1,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,47.380001,57.75,6,4,1,0,0,8,4,1,388.75,662432.94,0,0,4701.561 -15632,19206,34920,-9,34921,34919,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-880.83521,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,8,4,1,388.75,662432.94,0,0,4701.561 -15632,19206,34921,34919,-9,-9,1,1,0,45,1,0,2,0,1,-9,6,3,0,0,4,4.1348381,4.4360228,0,2,0,-9,9,0,-5,91.455154,0,0,0,50,1,4,1,3,1,2019,3,2,12,1,5,5,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3522124,0,0,0,47.380001,57.75,52,55,6,1,1,0,1,8,4,1,388.75,662432.94,0,0,4701.561 -15633,19207,34922,34923,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,0,4,8.2523232,8.2071829,0,2,0,-9,8,0,2,-21.671928,0,0,0,49,2,1,1,3,3,2019,1,1,8,0,50,50,15,1,0,1,0,7.8695688,7.8695688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,43.990002,40.75,6,1,1,0,0,12,4,1,456.75,934045.06,0,0,3565.7412 -15633,19207,34923,34922,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,0,1,7.6130877,7.7604451,0,2,0,-9,8,0,-2,-91.361732,0,0,0,51,2,4,1,3,3,2019,1,2,11,0,43,47,15,1,0,1,0,5.6902761,5.6902761,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1240892,3,43.990002,40.75,52.82,53.970001,5,1,1,0,0,12,4,1,456.75,934045.06,0,0,3565.7412 -15633,19207,34924,-9,34923,34922,6,1,1,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-967.56592,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,12,4,1,456.75,934045.06,0,0,3565.7412 -15633,19207,34925,-9,34923,34922,5,1,1,17,2,0,1,0,2,1,11,3,0,0,4,7.3856707,7.4358578,0,2,0,0,0,-9,0,-944.02588,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,39,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.620003,35.18,-9,-9,7,1,1,0,0,12,4,1,456.75,934045.06,0,0,3565.7412 -15633,19208,34926,-9,34923,34922,4,1,0,22,2,0,1,0,2,-9,2,1,0,0,5,7.5810523,7.6818557,0,3,0,0,0,-9,0,-960.99591,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,43,15,1,0,-9,1,5.8862815,5.8862815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,12,3,1,344,-80220.406,0,0,279.07358 -15634,19209,34927,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,1,1,0,6.4798799,6.9748607,3,0,0,0,-9,0,-990.86414,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,.77257609,0,0,0,0,1,1,0,.67136461,6.5638723,0,0,57.860001,18.07,-9,-9,6,1,1,0,0,1,2,1,662,201874.95,0,0,2032.0673 -15635,19210,34928,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,1,1,0,0,5,7.9739394,8.331728,0,3,0,0,0,-9,0,-1125.635,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,40,80,15,1,0,-9,0,8.3718796,8.3718796,0,0,0,0,0,0,0,0,0,0,0,4.9785266,0,0,0,46.279999,62.599998,-9,-9,7,1,1,0,0,9,4,0,1247,-53229.621,0,0,1663.0179 -15636,19211,34929,34930,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,2,0,6.7652016,6.7082696,1,0,-9,7,0,-4,-28.604689,0,0,0,80,2,2,3,3,3,2019,4,2,24,12,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.8373532,7.1098471,0,0,38.02,32.799999,41.299999,21.700001,6,1,1,0,0,10,2,1,981.5,739325.38,0,0,2511.3088 -15636,19211,34930,34929,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,2,0,5.364696,5.4800811,1,0,-9,7,0,4,38.190845,0,0,0,76,1,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,6.4819407,.13127531,0,0,0,15.87643,0,1,1,0,5.5205154,5.7320743,0,0,41.299999,21.700001,38.02,32.799999,3,1,1,0,0,10,2,1,981.5,739325.38,0,0,2511.3088 -15637,19212,34931,34932,-9,-9,3,1,1,22,1,0,0,0,2,-9,2,1,0,0,4,8.3114042,8.1087017,0,1,0,-9,2,0,-2,80.637962,0,1,0,24,1,4,1,-9,-9,2019,1,1,10,1,48,37,15,1,0,1,0,8.2329121,8.2329121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,54.200001,57.490002,5,1,1,0,0,7,5,0,417,220695.13,0,0,4373.9863 -15637,19212,34932,34931,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,0,4,8.7281685,8.6453896,0,1,0,-9,2,0,2,88.280876,0,1,1,22,2,4,1,2,3,2019,1,3,0,0,38,37,15,1,0,1,0,15.935213,15.935213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,48,59,6,1,1,0,0,7,5,0,417,220695.13,0,0,4373.9863 -15637,19213,34933,-9,-9,-9,4,1,1,27,2,0,0,0,1,-9,2,1,0,0,4,8.6644516,8.3770914,0,1,0,-9,1,-9,1,42.944935,-9,1,0,-9,-9,-9,-9,-9,-9,2019,1,2,10,1,12,0,15,1,0,-9,0,57.012909,57.012909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,49,58,5,1,1,0,0,7,5,0,853,-47603.277,0,0,2849.647 -15637,19214,34934,-9,-9,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,0,4,8.1461401,7.8215146,0,1,0,1,1,-9,-1,-116.1322,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,4,10,1,38,37,15,1,0,-9,0,10.018966,10.018966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,49,58,5,1,1,0,0,7,5,0,1663,252556.59,0,0,1338.0947 -15638,19215,34935,-9,34937,34936,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.14044,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,31,12,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.82,56.490002,-9,-9,2,2,3,0,0,6,4,0,799,920698.19,0,0,3569.5007 -15638,19215,34936,34937,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,8.9000425,8.8534174,0,2,0,-9,18,0,4,11.491342,0,0,0,42,2,3,1,3,3,2019,1,2,3,0,40,40,15,1,0,1,0,19.288668,19.288668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.830002,61,59.700001,53.75,7,2,3,0,0,6,4,0,799,920698.19,0,0,3569.5007 -15638,19215,34937,34936,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.8312392,8.0244188,0,2,0,-9,18,0,-4,-12.013017,0,0,1,46,1,5,1,2,2,2019,1,1,6,0,24,30,15,1,0,1,0,9.6159639,9.6159639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.700001,53.75,46.830002,61,7,2,3,0,0,6,4,0,799,920698.19,0,0,3569.5007 -15638,19215,34938,-9,34937,34936,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-963.25958,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,6,4,0,799,920698.19,0,0,3569.5007 -15639,19216,34939,34940,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,1,0,0,0,1,0,-9,56,0,-10,0,0,0,0,88,3,3,3,3,2,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,1,5.2003565,0,0,0,0,.18457083,0,1,1,0,4.1018453,0,0,0,53.650002,24.59,53.400002,36.439999,6,1,1,0,0,10,1,1,1388.5,184359.73,0,0,420.57297 -15639,19216,34940,34939,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,56,0,10,0,0,0,0,78,2,1,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,2.7952852,0,0,0,0,44.01857,7,1,1,0,0,0,6.0419865,2,53.400002,36.439999,53.650002,24.59,7,1,1,0,0,10,1,1,1388.5,184359.73,0,0,420.57297 -15640,19217,34941,-9,34942,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1040.0469,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,1,547,0,0,0,1491.3252 -15640,19217,34942,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,6,3,0,0,2,0,5.1767893,5.4913697,4,0,-9,0,1,0,-1011.6782,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,27,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.9803057,0,34.887646,3,22.040001,53.790001,-9,-9,3,1,1,0,1,6,2,1,547,0,0,0,1491.3252 -15641,19218,34943,34944,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.3859262,7.2989216,1,0,-9,44,0,-2,-42.413307,0,0,0,67,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2862859,7.0546713,0,0,64.160004,29.700001,38.040001,48.849998,6,1,1,0,0,11,4,1,581,1155293.3,0,0,4144.5483 -15641,19218,34944,34943,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,8.4171724,8.1642761,1,0,-9,44,0,2,-3.47014,0,0,0,65,2,3,3,3,3,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9256921,8.0216227,0,0,38.040001,48.849998,64.160004,29.700001,5,1,1,0,0,11,4,1,581,1155293.3,0,0,4144.5483 -15642,19219,34945,-9,-9,-9,1,1,0,52,3,0,2,0,2,-9,1,1,0,0,2,6.9812684,6.7228022,0,4,0,0,0,-9,0,-928.98456,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,27,11,20,16,15,1,1,-9,0,6.190733,6.190733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.419998,42.75,-9,-9,2,4,2,0,1,6,2,0,549,-127270.34,0,0,1498.9581 -15643,19220,34946,34947,-9,-9,2,1,0,42,1,1,2,0,1,-9,2,1,0,0,4,8.6623545,8.5994282,0,2,0,-9,3,0,-2,2.5186059,0,0,1,44,2,4,1,2,3,2019,1,1,11,1,48,41,15,1,0,1,0,10.058222,10.058222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.490002,64.260002,57.169998,50.610001,3,1,1,0,0,4,3,0,684.25,796299.56,0,0,2644.2312 -15643,19220,34947,34946,-9,-9,1,1,1,44,1,1,2,0,2,-9,2,1,0,0,4,6.5084209,6.2029161,0,2,0,-9,3,0,2,35.374611,0,0,0,42,1,4,1,2,2,2019,1,2,9,0,10,0,15,1,0,1,0,7.0114288,7.0114288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.169998,50.610001,33.490002,64.260002,5,1,1,0,0,4,3,0,684.25,796299.56,0,0,2644.2312 -15643,19220,34948,-9,34946,34947,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.30927,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,4,3,0,684.25,796299.56,0,0,2644.2312 -15643,19220,34949,-9,34946,34947,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-909.29071,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,0,684.25,796299.56,0,0,2644.2312 -15644,19221,34950,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-940.05615,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.830002,46.68,-9,-9,5,1,1,1,0,10,1,0,334,-3141.1487,0,0,1307.0698 -15645,19222,34951,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,0,3,6.3347383,6.572917,0,1,0,-9,2,0,10,8.3841801,0,0,0,-9,-9,-9,-9,3,-9,2019,2,2,23,10,6,0,15,1,1,-9,0,11.091374,11.091374,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.200001,42.889999,28.73,53,2,1,1,0,0,4,2,0,1406,177891.91,0,0,1280.923 -15645,19223,34952,-9,-9,-9,2,1,1,29,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,2,0,-10,-23.661724,0,1,0,-9,-9,-9,-9,-9,-9,2019,3,1,17,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.73,53,39.200001,42.889999,3,1,1,1,0,4,2,0,535,-81883.039,0,0,449.56015 -15646,19224,34953,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,0,2,0,6.7835917,6.9875655,3,0,0,0,-9,0,-894.90253,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7138381,0,0,59.150002,44.82,-9,-9,6,3,4,0,0,6,2,1,452,303939.34,0,0,1036.8926 -15647,19225,34954,-9,34956,34955,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1040.5165,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,1,0,711.66669,-29207.709,0,0,2615.2842 -15647,19225,34955,34956,-9,-9,1,1,1,40,1,0,3,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,9,0,3,0,-9,0,0,37,2,1,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.026756,1,35.029999,54.57,48.950001,29.43,3,1,1,1,0,5,1,0,711.66669,-29207.709,0,0,2615.2842 -15647,19225,34956,34955,-9,-9,2,1,0,37,1,0,3,0,2,-9,3,3,0,1,1,0,0,0,2,0,-9,9,0,-3,0,0,0,1,40,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.950001,29.43,35.029999,54.57,3,1,1,1,0,5,1,0,711.66669,-29207.709,0,0,2615.2842 -15648,19226,34957,-9,34958,34959,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.58527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,10,5,1,882,125071.22,0,0,3241.6987 -15648,19226,34958,34959,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,0,5,8.2595482,8.3055401,0,2,0,-9,13,0,-6,-62.557892,0,0,1,36,2,4,1,2,2,2019,1,1,7,1,41,34,15,1,0,1,0,10.581546,10.581546,0,0,0,0,0,0,0,0,1,1,0,3.4585042,0,0,0,49.91,56.93,35.389999,55.43,6,1,1,0,0,10,5,1,882,125071.22,0,0,3241.6987 -15648,19226,34959,34958,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,4,8.1717796,8.7277117,0,2,0,-9,13,0,6,72.499931,0,0,0,30,2,5,1,2,2,2019,1,2,23,11,45,47,15,1,1,1,0,10.225688,10.225688,0,0,0,0,0,0,0,0,1,1,0,4.8714156,0,0,0,35.389999,55.43,49.91,56.93,3,1,1,0,0,10,5,1,882,125071.22,0,0,3241.6987 -15649,19227,34960,-9,34961,34962,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-859.51318,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,8,5,1,873.33331,334903.94,0,0,8699.2598 -15649,19227,34961,34962,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,0,5,8.9126673,8.9309397,0,2,0,-9,11,0,1,-110.16807,0,0,1,31,1,5,1,3,1,2019,1,1,8,0,24,0,15,1,0,1,0,44.446033,44.446033,0,0,0,0,0,0,0,0,0,0,0,1.6420072,0,0,0,57.060001,57.759998,57.060001,57.759998,2,1,1,0,0,8,5,1,873.33331,334903.94,0,0,8699.2598 -15649,19227,34962,34961,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,0,5,9.6615734,9.5670004,0,2,0,-9,11,0,-1,103.14786,0,0,0,32,1,5,1,2,2,2019,1,2,8,0,45,56,15,1,0,1,0,30.067024,30.067024,0,0,0,0,0,0,0,0,0,0,0,1.3880491,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,8,5,1,873.33331,334903.94,0,0,8699.2598 -15650,19228,34963,34964,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.7075334,7.5575457,0,1,0,-9,8,0,5,-58.335747,0,0,0,52,2,3,1,3,2,2019,1,2,11,0,25,26,15,1,0,1,0,7.036274,7.036274,0,0,0,0,0,0,0,7,0,0,0,0,0,10.763789,3,44.59,56.400002,60.290001,52.110001,4,1,1,0,0,12,5,1,530,220687,0,0,1850.1801 -15650,19228,34964,34963,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.4642706,8.7355061,0,1,0,-9,8,0,-5,17.303101,0,0,0,57,2,3,1,1,1,2019,1,1,6,0,39,40,15,1,0,1,0,15.035365,15.035365,0,0,0,0,0,0,0,7,0,0,0,0,0,7.8585753,3,60.290001,52.110001,44.59,56.400002,6,1,1,0,0,12,5,1,530,220687,0,0,1850.1801 -15651,19229,34965,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,8,3,1,1,4,8.4016113,8.3539104,0,3,0,0,0,-9,0,-1022.1613,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,29,11,37,37,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.42,55.060001,-9,-9,2,1,1,0,1,9,4,0,567,163128.81,0,0,638.15765 -15652,19230,34966,-9,34968,-9,5,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1080.7245,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,2,1,1430.5,55269.176,0,0,3120.8552 -15652,19230,34967,-9,34968,-9,3,1,1,17,2,0,2,1,2,0,7,2,0,0,5,7.110918,6.9034386,0,4,0,0,0,-9,0,-1044.1442,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.419998,54.810001,-9,-9,7,4,2,0,0,6,2,1,1430.5,55269.176,0,0,3120.8552 -15652,19230,34968,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,0,2,7.3900356,7.4626579,0,4,0,0,0,-9,0,-1125.1033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,16,17,15,1,0,-9,0,9.922986,9.922986,0,0,0,0,0,0,0,2,1,1,0,0,0,5.4377685,3,55.77,20.67,-9,-9,4,2,3,0,1,6,2,1,1430.5,55269.176,0,0,3120.8552 -15652,19230,34969,-9,34968,-9,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-946.51697,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,6,2,1,1430.5,55269.176,0,0,3120.8552 -15652,19231,34970,-9,34968,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,0,5,6.9653268,7.5258551,0,3,0,0,0,-9,0,-865.61945,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.860001,49.900002,-9,-9,6,4,2,0,0,6,2,1,1109,-146926.27,0,0,1040.062 -15653,19232,34971,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1081.1331,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.24075121,0,0,0,34.220001,20.889999,-9,-9,4,1,1,0,0,1,1,0,881,347128.16,0,0,707.85974 -15654,19233,34972,34973,-9,-9,2,1,0,62,1,0,0,0,3,-9,97,3,0,0,3,0,8.1300297,8.2200861,1,0,-9,11,0,2,46.313492,0,0,0,60,2,3,1,3,3,2019,3,3,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0077262553,8.3293562,0,0,38.779999,43.009998,48.200001,41.459999,5,1,1,0,0,11,4,1,729,498750.09,0,0,4533.5908 -15654,19233,34973,34972,-9,-9,3,1,1,60,1,0,0,0,2,-9,2,1,0,1,3,0,8.1239071,7.9028573,1,0,-9,11,0,-2,-72.983208,0,0,0,62,3,3,3,3,3,2019,2,2,12,0,0,29,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5582414,7.8849654,0,0,48.200001,41.459999,38.779999,43.009998,6,1,1,0,0,11,4,1,729,498750.09,0,0,4533.5908 -15655,19234,34974,-9,34976,34975,3,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-843.92767,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,393.66666,1926925.6,0,0,27000.172 -15655,19234,34975,34976,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,0,4,9.8738747,9.9767494,0,2,0,-9,7,0,2,-108.97622,0,0,0,39,1,5,1,2,2,2019,1,2,7,0,6,25,15,1,0,1,0,341.66177,341.66177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,37.889999,64.099998,6,1,1,0,0,12,5,1,393.66666,1926925.6,0,0,27000.172 -15655,19234,34976,34975,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,0,5,8.3394814,8.5997601,0,2,0,-9,7,0,-2,-141.09189,0,0,1,41,1,4,1,2,2,2019,1,1,12,3,28,28,15,1,0,1,0,18.121918,18.121918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.889999,64.099998,54.200001,57.490002,6,1,1,0,0,12,5,1,393.66666,1926925.6,0,0,27000.172 -15656,19235,34977,34978,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,2,7.9921999,8.1962318,0,1,0,-9,8,0,-2,-120.17336,0,0,0,57,2,4,1,2,2,2019,1,1,14,2,20,20,15,1,0,1,0,16.629147,16.629147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.919998,31.59,52.23,55.599998,5,1,1,0,0,12,5,1,1009.5,1474922.8,0,0,4613.1816 -15656,19235,34978,34977,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,0,4,8.8883553,8.8561392,0,1,0,-9,8,0,2,-26.740923,0,0,0,55,2,2,1,-9,-9,2019,1,2,11,1,60,56,15,1,0,1,0,14.68627,14.68627,0,0,0,0,0,0,0,0,0,0,0,7.9345288,0,0,0,52.23,55.599998,43.919998,31.59,6,1,1,0,0,12,5,1,1009.5,1474922.8,0,0,4613.1816 -15657,19236,34979,-9,34980,34981,4,1,1,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.11652,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8588777,0,0,0,33.490002,64.260002,-9,-9,6,1,1,0,0,7,5,1,430.66666,539179.38,0,0,3358.7512 -15657,19236,34980,34981,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,6.9815893,7.0038252,0,2,0,-9,10,0,-2,-96.862686,0,0,0,51,2,3,1,3,2,2019,1,2,10,0,23,22,15,1,0,1,0,5.3515339,5.3515339,0,0,0,0,0,0,0,7,0,0,0,1.8973426,0,2.6604552,3,46.610001,56.93,23.059999,57.040001,6,1,1,0,0,7,5,1,430.66666,539179.38,0,0,3358.7512 -15657,19236,34981,34980,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,9.1582422,9.37183,0,2,0,-9,10,0,2,-41.263756,0,0,0,49,2,3,1,3,3,2019,1,1,25,11,10,78,15,1,1,1,0,129.32974,129.32974,0,0,0,0,0,0,0,2,0,0,0,0,0,1.0221936,3,23.059999,57.040001,46.610001,56.93,2,1,1,0,0,7,5,1,430.66666,539179.38,0,0,3358.7512 -15657,19237,34982,-9,34980,34981,3,1,1,21,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-953.88116,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9812634,0,0,0,46.630001,59.720001,-9,-9,6,1,1,0,0,7,1,1,597,0,0,0,-767.0437 -15658,19238,34983,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,5.3397107,5.2494202,3,0,0,0,-9,0,-919.26825,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3713884,5.0852823,0,0,62.84,46.849998,-9,-9,6,1,1,0,0,4,2,0,900,29414.006,0,0,1425.4884 -15659,19239,34984,34985,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,6.3012128,6.0553374,1,0,-9,8,0,-6,-119.9232,0,0,0,69,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2203383,0,0,61.119999,51.57,58.150002,52.91,6,1,1,0,0,11,5,1,413,556008.63,0,0,4977.6592 -15659,19239,34985,34984,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,9.0906391,9.1958799,1,0,-9,8,0,6,.097545058,0,0,0,63,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7815409,9.7034388,0,0,58.150002,52.91,61.119999,51.57,6,1,1,0,0,11,5,1,413,556008.63,0,0,4977.6592 -15660,19240,34986,34987,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,7.119782,6.7749929,1,0,-9,8,0,3,41.476582,0,0,0,67,2,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9787711,6.9018588,0,0,69.019997,37,46.560001,49.32,7,1,1,0,0,12,3,1,342.5,999048.81,0,0,2496.2883 -15660,19240,34987,34986,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,6.5920625,6.5987816,1,0,-9,8,0,-3,-33.980026,0,0,0,70,2,4,3,3,3,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9637508,6.7821064,0,0,46.560001,49.32,69.019997,37,7,1,1,0,0,12,3,1,342.5,999048.81,0,0,2496.2883 -15661,19241,34988,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.0073786,8.4597416,0,3,0,0,0,-9,0,-1186.3951,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,42,40,15,1,1,-9,0,8.915987,8.915987,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.724293,3,33.380001,55.040001,-9,-9,4,1,1,0,0,12,4,0,1192,-61896.555,0,0,1562.1704 -15662,19242,34989,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,4,0,8.3527231,8.2749872,3,0,0,0,-9,0,-886.25922,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.11824837,8.2635517,0,0,52.380001,55.599998,-9,-9,6,1,1,0,0,9,5,1,509,1359063.8,0,0,3128.9915 -15663,19243,34990,34991,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,2,0,0,0,0,74,3,4,3,3,3,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.779999,20.93,58.970001,47.32,6,3,4,0,0,2,1,1,552,320434.53,0,0,421.36801 -15663,19243,34991,34990,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-2,0,0,0,0,76,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,58.970001,47.32,45.779999,20.93,6,3,4,0,0,2,1,1,552,320434.53,0,0,421.36801 -15664,19244,34992,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,0,3,0,7.6304049,7.6642776,3,0,0,0,-9,0,-993.35406,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4338422,0,0,54,46,-9,-9,6,1,1,0,0,4,3,1,1748,694665.75,0,0,1747.1445 -15665,19245,34993,34994,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,-1,-75.10968,0,0,0,68,2,4,1,-9,-9,2019,3,1,10,0,0,8,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.400002,45.349998,43.73,59.700001,5,1,1,0,0,7,3,0,539,1212464,0,0,1027.1356 -15665,19245,34994,34993,-9,-9,1,1,0,68,1,0,0,0,2,-9,2,1,0,0,4,8.0484228,8.0426559,5.6257191,1,0,-9,8,0,1,-91.392372,0,0,0,67,3,3,3,2,2,2019,2,2,10,0,24,24,15,1,0,4,0,17.159832,17.159832,0,0,0,0,0,0,0,0,1,1,0,5.3547869,6.0804563,0,0,43.73,59.700001,39.400002,45.349998,6,1,1,0,0,7,3,0,539,1212464,0,0,1027.1356 -15666,19246,34995,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1031.5402,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.310001,31.049999,-9,-9,7,1,1,0,0,2,1,1,2261,-187203.67,0,0,1529.7845 -15667,19247,34996,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,1,1,0,7.5940003,7.8559036,3,0,0,0,-9,0,-966.96631,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,12.53987,0,1,1,0,7.2559257,7.7166934,0,0,41.25,18.940001,-9,-9,5,1,1,0,0,9,3,1,2787,571450.44,0,0,2913.0186 -15668,19248,34997,34998,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,0,4,9.0234222,8.5782623,0,2,0,-9,15,0,-1,100.82222,0,0,0,47,2,5,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,19.813143,19.813143,0,0,0,0,0,0,0,0,1,1,0,3.9136391,0,0,0,57.16,56.150002,59.43,58.049999,7,3,4,0,0,8,4,1,881,895044.19,0,0,4722.2344 -15668,19248,34998,34997,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,5,8.1217937,8.5324554,0,2,0,-9,13,0,1,133.44028,0,0,0,46,1,4,1,2,1,2019,1,1,0,0,36,36,15,1,0,1,0,14.022222,14.022222,0,0,0,0,0,0,0,0,1,1,0,1.074441,0,0,0,59.43,58.049999,57.16,56.150002,7,3,4,0,0,8,4,1,881,895044.19,0,0,4722.2344 -15668,19248,34999,-9,34998,34997,4,1,0,12,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.67511,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,4,1,881,895044.19,0,0,4722.2344 -15668,19248,35000,-9,34998,34997,3,1,1,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-868.83752,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8209129,0,0,0,54.099998,59.110001,-9,-9,7,3,4,0,0,8,4,1,881,895044.19,0,0,4722.2344 -15669,19249,35001,35002,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,0,4,8.3552437,8.5589371,0,2,0,-9,11,0,-4,53.598007,0,0,1,46,1,4,1,3,1,2019,1,1,21,10,36,36,15,1,1,1,0,16.244162,16.244162,0,0,0,0,0,0,0,0,1,1,0,6.9752722,0,0,0,39.16,62.84,42.849998,60.330002,3,1,1,0,0,2,5,0,330,484179.75,0,0,6387.7939 -15669,19249,35002,35001,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,0,4,9.4340944,9.2315674,0,2,0,-9,11,0,4,119.90672,0,0,0,42,1,4,1,2,1,2019,1,2,22,10,40,40,15,1,1,1,0,37.230236,37.230236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,60.330002,39.16,62.84,2,1,1,0,0,2,5,0,330,484179.75,0,0,6387.7939 -15669,19249,35003,-9,35001,35002,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1098.2831,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,0,330,484179.75,0,0,6387.7939 -15670,19250,35004,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,3,3,0,1,2,0,7.3819361,7.5366297,3,0,0,0,-9,0,-1083.1036,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.3393917,7.2609439,76.866707,3,33.07,41.950001,-9,-9,6,1,1,1,0,9,3,1,420,105213.47,0,0,2084.0977 -15671,19251,35005,-9,35007,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1018.4486,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,1,0,563.66669,-29412.459,0,0,1911.0588 -15671,19251,35006,-9,35007,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-948.31519,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,1,0,563.66669,-29412.459,0,0,1911.0588 -15671,19251,35007,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,6,3,0,0,4,0,0,0,4,0,0,0,-9,0,-998.15509,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,13,1,0,563.66669,-29412.459,0,0,1911.0588 -15672,19252,35008,-9,35011,35010,2,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.2794,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,844.25,366078.31,0,0,3054.5518 -15672,19252,35009,-9,35011,35010,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.5767,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,9,4,1,844.25,366078.31,0,0,3054.5518 -15672,19252,35010,35011,-9,-9,3,1,1,44,1,0,2,0,2,-9,2,1,0,0,4,8.4903975,8.5211906,7.4147744,2,0,-9,6,0,-1,-18.391998,-9,0,0,45,2,2,1,-9,-9,2019,1,1,10,1,58,0,15,1,0,1,0,5.5969582,5.5969582,0,0,0,0,0,0,0,0,1,1,0,0,8.5850391,0,0,37.27,62.66,48.360001,38.939999,4,1,1,0,0,9,4,1,844.25,366078.31,0,0,3054.5518 -15672,19252,35011,35010,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,2,7.7773786,7.7308879,3.9741459,2,0,-9,6,0,1,45.036465,0,0,0,44,2,4,1,3,2,2019,1,3,12,0,15,12,15,1,0,1,0,19.961647,19.961647,0,0,0,0,0,0,0,71.5,1,1,0,5.0272956,0,72.054108,2,48.360001,38.939999,37.27,62.66,5,1,1,0,0,9,4,1,844.25,366078.31,0,0,3054.5518 -15673,19253,35012,35013,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,4,8.514327,8.3980331,0,1,0,-9,2,0,8,71.421959,-9,0,0,24,1,4,1,-9,-9,2019,1,1,7,0,35,0,15,1,0,1,0,16.734488,16.734488,0,0,0,0,0,0,0,0,0,0,0,7.0074291,0,0,0,57.16,56.150002,49.860001,55.310001,6,1,1,0,0,11,5,1,456.5,-35041.68,0,0,3277.7563 -15673,19253,35013,35012,-9,-9,1,1,0,24,1,0,0,0,1,1,2,1,0,0,4,7.9553924,8.1614199,0,1,0,-9,2,0,-8,-16.954618,-9,1,1,32,2,4,1,2,2,2019,1,2,10,0,49,0,15,1,0,1,0,6.4436564,6.4436564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.860001,55.310001,57.16,56.150002,6,1,1,0,0,11,5,1,456.5,-35041.68,0,0,3277.7563 -15674,19254,35014,35017,-9,-9,1,1,0,37,1,1,2,0,2,-9,2,1,0,0,3,5.7921753,5.8353467,0,2,0,-9,10,0,2,54.642475,0,0,1,35,1,4,1,1,2,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.209999,50.73,52.82,53.970001,6,1,1,0,0,4,2,1,772.75,-52071.445,0,0,630.21313 -15674,19254,35015,-9,35014,35017,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-934.49817,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,2,1,772.75,-52071.445,0,0,630.21313 -15674,19254,35016,-9,35014,35017,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.0723,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,2,1,772.75,-52071.445,0,0,630.21313 -15674,19254,35017,35014,-9,-9,2,1,1,35,1,1,2,0,1,-9,1,1,0,0,4,7.0587902,6.7483206,0,2,0,-9,10,0,-2,-14.17487,0,0,0,37,2,3,1,2,2,2019,1,1,7,0,50,55,15,1,0,1,0,2.446677,2.446677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.970001,48.209999,50.73,6,1,1,0,0,4,2,1,772.75,-52071.445,0,0,630.21313 -15675,19255,35018,35020,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,0,3,9.1115217,8.9083633,0,2,0,-9,17,0,3,-20.935463,0,0,0,41,1,3,1,2,2,2019,1,1,8,0,48,49,15,1,0,1,0,27.885242,27.885242,0,0,0,0,0,0,0,0,0,0,0,.9022826,0,0,0,55.509998,51.57,58.650002,39.139999,6,1,1,0,0,7,5,1,1029.5,643509.25,0,0,3966.354 -15675,19255,35019,-9,35020,35018,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-970.16052,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,7,5,1,1029.5,643509.25,0,0,3966.354 -15675,19255,35020,35018,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,0,3,7.9412422,7.9879632,0,2,0,-9,18,0,-3,36.822559,0,0,1,44,2,3,1,2,1,2019,1,2,6,0,22,27,15,1,0,1,0,15.140328,15.140328,0,0,0,0,0,0,0,0,0,0,0,2.9743543,0,0,0,58.650002,39.139999,55.509998,51.57,6,1,1,0,0,7,5,1,1029.5,643509.25,0,0,3966.354 -15675,19255,35021,-9,35020,35018,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-923.14203,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,5,1,1029.5,643509.25,0,0,3966.354 -15676,19256,35022,-9,35026,35023,3,1,0,13,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-885.22894,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,5,5,1,1149.2,216124.98,0,0,4798.6348 -15676,19256,35023,35026,-9,-9,1,1,1,40,1,1,3,0,1,-9,2,1,0,0,5,9.0950594,9.0556259,0,2,0,-9,17,0,-4,-95.872551,0,0,0,44,1,5,1,-9,-9,2019,1,2,12,0,37,43,15,1,0,1,0,26.368624,26.368624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,62.560001,46.799999,58.27,5,1,1,0,1,5,5,1,1149.2,216124.98,0,0,4798.6348 -15676,19256,35024,-9,35026,35023,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.563,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,5,1,1149.2,216124.98,0,0,4798.6348 -15676,19256,35025,-9,35026,35023,4,1,0,10,2,1,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-962.86499,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,5,5,1,1149.2,216124.98,0,0,4798.6348 -15676,19256,35026,35023,-9,-9,2,1,0,44,1,1,3,0,1,-9,2,1,0,0,5,8.1617756,8.1191626,0,2,0,-9,17,0,4,-67.044067,0,0,1,40,1,5,1,-9,-9,2019,1,1,12,1,22,23,15,1,0,1,0,16.092724,16.092724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,58.27,40.48,62.560001,5,1,1,0,0,5,5,1,1149.2,216124.98,0,0,4798.6348 -15677,19257,35027,35028,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,8.0113106,7.966208,0,1,0,-9,6,0,-1,75.271461,0,0,0,57,2,5,3,2,2,2019,2,1,6,0,10,42,15,1,0,4,0,44.364452,44.364452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,62.389999,56.709999,6,1,1,0,0,11,5,1,1231.5,292360.38,0,0,3837.3545 -15677,19257,35028,35027,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,0,5,0,8.4323473,8.4742289,1,0,-9,6,0,1,-160.58455,0,0,0,56,2,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4936552,0,0,62.389999,56.709999,54.959999,53.169998,7,1,1,0,0,11,5,1,1231.5,292360.38,0,0,3837.3545 -15678,19258,35029,-9,35031,35030,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.13788,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,8,3,0,419,1131760,0,0,4609.083 -15678,19258,35030,35031,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,1,2,8.6201582,8.9924622,0,2,0,-9,16,0,16,-193.08463,0,0,0,37,1,4,2,3,3,2019,2,2,18,6,53,31,15,1,1,2,0,14.679825,14.679825,0,0,0,0,0,0,0,2,1,1,0,0,0,11.069128,3,43.310001,37.380001,36.610001,54.560001,4,4,5,0,0,8,3,0,419,1131760,0,0,4609.083 -15678,19258,35031,35030,-9,-9,2,1,0,37,1,0,2,0,1,0,7,2,0,0,4,0,0,0,2,0,-9,16,0,-16,109.74388,-9,0,1,53,1,2,1,3,3,2019,3,1,8,1,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.610001,54.560001,43.310001,37.380001,6,4,5,0,0,8,3,0,419,1131760,0,0,4609.083 -15678,19258,35032,-9,35031,35030,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.45331,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,8,3,0,419,1131760,0,0,4609.083 -15679,19259,35033,35034,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,0,5,7.1103292,7.8837843,7.3147993,1,0,-9,41,0,-7,-129.85875,0,0,0,65,2,4,1,3,3,2019,1,1,10,0,20,20,15,1,0,1,0,7.3540826,7.3540826,0,0,0,0,0,0,0,2,1,1,0,8.374362,6.9864697,0,3,54.099998,59.110001,49.119999,57.279999,6,1,1,0,0,10,3,1,2493,278472.91,0,0,5805.2881 -15679,19259,35034,35033,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,4,5.9168262,5.7696538,0,1,0,-9,41,0,7,102.92561,0,0,0,58,3,5,1,2,2,2019,1,2,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0016804,0,0,0,49.119999,57.279999,54.099998,59.110001,6,1,1,0,0,10,3,1,2493,278472.91,0,0,5805.2881 -15680,19260,35035,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-873.81445,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.944334,3,35.610001,49.919998,-9,-9,5,1,1,0,0,10,1,0,464,356016.28,0,0,689.43799 -15681,19261,35036,35037,-9,-9,3,1,1,32,1,0,4,0,2,-9,2,1,0,0,2,8.2309446,8.0610046,0,2,0,-9,9,0,1,-64.599724,0,0,0,31,2,3,1,-9,-9,2019,1,1,19,7,55,50,15,1,1,1,0,6.3442316,6.3442316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.919998,55.299999,33.830002,57.610001,2,1,1,0,0,9,3,0,526.16669,-4194.9316,0,0,2418.7463 -15681,19261,35037,35036,-9,-9,1,1,0,31,1,0,4,0,2,-9,2,1,0,0,3,7.5664935,7.3206029,0,2,0,-9,9,0,-1,-36.772327,0,0,1,32,2,2,1,2,2,2019,1,3,17,5,32,0,15,1,1,1,0,5.8883204,5.8883204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.830002,57.610001,32.919998,55.299999,4,1,1,0,0,9,3,0,526.16669,-4194.9316,0,0,2418.7463 -15681,19261,35038,-9,35037,35036,6,1,1,6,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1103.119,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,526.16669,-4194.9316,0,0,2418.7463 -15681,19261,35039,-9,35037,35036,4,1,1,10,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-986.81122,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,0,526.16669,-4194.9316,0,0,2418.7463 -15681,19261,35040,-9,35037,35036,5,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1017.1437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,0,526.16669,-4194.9316,0,0,2418.7463 -15681,19261,35041,-9,35037,35036,2,1,1,15,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.1545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,0,526.16669,-4194.9316,0,0,2418.7463 -15682,19262,35042,-9,35043,35044,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1005.392,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,12,4,1,318.33334,447291.72,0,0,2822.3833 -15682,19262,35043,35044,-9,-9,2,1,0,31,1,1,1,0,1,-9,5,1,0,0,5,0,0,0,2,0,-9,9,0,1,78.872437,0,0,1,30,1,5,1,-9,-9,2019,1,1,9,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.709999,61.529999,54.099998,59.110001,7,1,1,0,0,12,4,1,318.33334,447291.72,0,0,2822.3833 -15682,19262,35044,35043,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,0,5,8.7056904,8.5971184,0,2,0,-9,9,0,-1,37.318447,0,0,0,31,1,5,1,2,2,2019,1,2,8,0,40,45,15,1,0,1,0,15.394209,15.394209,0,0,0,0,0,0,0,0,1,1,0,.97636902,0,0,0,54.099998,59.110001,48.709999,61.529999,6,1,1,0,0,12,4,1,318.33334,447291.72,0,0,2822.3833 -15683,19263,35045,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,5,0,5.7605634,6.0088644,3,0,0,0,-9,0,-941.64001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5132971,0,0,48.18,61.799999,-9,-9,1,1,1,0,0,2,2,1,1461,128393.74,0,0,450.42776 -15684,19264,35046,35047,-9,-9,2,1,1,59,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,25,0,8,0,0,0,0,51,2,1,3,2,3,2019,4,1,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.71723,2,31.040001,24.059999,16.040001,23.99,2,1,1,0,0,9,1,0,924,-68312.609,0,0,3685.8657 -15684,19264,35047,35046,-9,-9,1,1,0,51,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,30,0,-8,0,0,0,0,59,2,1,3,3,3,2019,4,2,16,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.36255,2,16.040001,23.99,31.040001,24.059999,1,1,1,0,0,9,1,0,924,-68312.609,0,0,3685.8657 -15684,19265,35048,-9,35047,35046,3,1,1,24,2,0,0,0,2,-9,3,3,0,1,3,0,0,0,3,0,0,0,-9,0,-918.57916,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.98371,3,47.27,52.73,-9,-9,4,1,1,1,0,9,1,0,771,164524.34,0,0,538.87946 -15685,19266,35049,-9,35051,35050,3,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.2192,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,5,1,699.66669,520729.5,0,0,3379.8926 -15685,19266,35050,35051,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,0,3,9.0029192,9.0596237,0,2,0,-9,8,0,1,-5.5684519,0,0,0,41,2,4,1,-9,-9,2019,1,1,12,0,42,40,15,1,0,1,0,21.014256,21.014256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.709999,53.580002,57.16,56.150002,5,1,1,0,0,2,5,1,699.66669,520729.5,0,0,3379.8926 -15685,19266,35051,35050,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,7.2521887,7.4125295,0,2,0,-9,8,0,-1,-57.767723,0,0,1,42,2,3,1,-9,2,2019,1,2,7,0,20,22,15,1,0,1,0,12.290367,12.290367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,42.709999,53.580002,6,1,1,0,0,2,5,1,699.66669,520729.5,0,0,3379.8926 -15686,19267,35052,35053,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,0,3,0,7.7808805,7.9315853,1,0,-9,51,0,2,-.99759072,0,0,0,74,3,2,3,3,2,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,27.757244,0,0,0,0,0,1,1,0,0,7.5311708,0,0,53,46,55.759998,28.700001,6,1,1,0,0,1,3,1,1255.5,1016863.1,0,0,2654.0393 -15686,19267,35053,35052,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,4.5474367,4.9155741,1,0,-9,51,0,-2,48.527531,0,0,0,76,1,3,3,3,3,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.2881732,4.5315137,122.48051,1,55.759998,28.700001,53,46,5,1,1,0,0,1,3,1,1255.5,1016863.1,0,0,2654.0393 -15687,19268,35054,35055,-9,-9,1,1,1,21,1,0,0,0,2,-9,2,1,0,0,3,7.6208615,7.5152426,0,1,0,1,1,-9,3,-7.7120214,0,1,0,18,2,3,1,2,2,2019,1,2,22,10,40,38,15,1,1,1,0,7.6022339,7.6022339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.110001,67.849998,8.4200001,52.970001,6,1,1,0,0,5,4,0,442.5,-23849.629,0,0,1731.9668 -15687,19268,35055,35054,-9,-9,2,1,0,18,1,0,0,0,2,-9,2,1,0,0,3,7.5368862,7.8180776,0,1,0,-9,1,-9,-3,2.2792361,-9,1,1,21,2,3,1,-9,-9,2019,1,1,33,12,40,0,15,1,1,1,0,7.9222383,7.9222383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4200001,52.970001,20.110001,67.849998,2,1,1,0,0,5,4,0,442.5,-23849.629,0,0,1731.9668 -15688,19269,35056,35057,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.2225704,6.0856881,1,0,-9,8,0,-1,33.682495,0,0,0,77,3,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3618348,5.8736658,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,4,3,1,132.5,360581.5,0,0,1980.9072 -15688,19269,35057,35056,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,4,0,7.6738429,7.9596248,1,0,-9,8,0,1,-50.034836,0,0,0,76,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3027613,7.700213,0,0,57.16,56.150002,57.16,56.150002,6,1,1,0,0,4,3,1,132.5,360581.5,0,0,1980.9072 -15689,19270,35058,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,4,0,7.3463659,7.3160744,3,0,0,0,-9,0,-970.50897,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4141183,7.4412422,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,1,511,564271.63,0,0,1030.6182 -15690,19271,35059,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,0,4,9.0436411,9.0499411,0,3,0,0,0,-9,0,-1169.2899,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,65,65,15,1,0,-9,0,13.033718,13.033718,0,0,0,0,0,0,0,0,0,0,0,4.3721728,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,9,5,1,1739,2032303,0,0,2195.5249 -15691,19272,35060,-9,35062,35061,4,1,1,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.5696,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,5,0,437.25,567119.94,0,0,5123.5791 -15691,19272,35061,35062,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,0,4,8.6720304,8.629631,0,2,0,-9,11,0,9,0,0,0,0,40,1,4,1,2,1,2019,1,2,11,0,40,57,15,1,0,1,0,16.191679,16.191679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.759998,52.639999,50,55,6,2,3,0,0,8,5,0,437.25,567119.94,0,0,5123.5791 -15691,19272,35062,35061,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,0,4,8.6163177,8.5710049,0,2,0,-9,11,0,0,0,0,0,1,49,1,4,1,3,2,2019,1,1,10,1,45,45,15,1,0,1,0,19.34745,19.34745,0,0,0,0,0,0,0,0,1,1,0,6.8118854,0,0,0,50,55,55.759998,52.639999,5,2,3,0,0,8,5,0,437.25,567119.94,0,0,5123.5791 -15691,19272,35063,-9,35062,35061,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1156.5721,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,5,0,437.25,567119.94,0,0,5123.5791 -15692,19273,35064,-9,35066,35065,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1101.625,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,6,4,1,479,143478.14,0,0,2985.6711 -15692,19273,35065,35066,-9,-9,2,1,1,29,1,1,2,0,2,-9,2,1,0,0,3,8.7166224,9.027194,0,2,0,-9,5,0,-4,-33.674805,0,1,0,33,1,3,3,-9,-9,2019,2,1,12,0,40,0,15,1,0,3,0,22.154989,22.154989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.84,51.650002,27.01,49.84,5,2,3,0,0,6,4,1,479,143478.14,0,0,2985.6711 -15692,19273,35066,35065,-9,-9,1,1,0,33,1,1,2,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,5,0,4,-32.166199,0,0,1,29,2,3,1,-9,-9,2019,3,2,9,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.01,49.84,31.84,51.650002,6,2,3,0,0,6,4,1,479,143478.14,0,0,2985.6711 -15692,19273,35067,-9,35066,35065,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.5861,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,6,4,1,479,143478.14,0,0,2985.6711 -15693,19274,35068,-9,-9,-9,1,1,0,19,2,0,0,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1051.6548,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,1,0,9,1,0,166,63350.613,0,0,0 -15694,19275,35069,35070,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,4.4471531,4.3226089,1,0,-9,6,0,-5,-4.3073845,0,0,0,79,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,7.5492554,4.6745577,9.4359512,1,51,46,54,46,6,1,1,0,0,7,1,0,1643.5,1728058.3,0,0,2187.24 -15694,19275,35070,35069,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,6,0,5,-49.509632,0,0,0,74,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,51,46,6,1,1,0,1,7,1,0,1643.5,1728058.3,0,0,2187.24 -15695,19276,35071,-9,-9,-9,1,1,0,37,2,0,1,0,1,-9,2,1,0,0,5,8.4028511,8.4639263,0,4,0,0,0,-9,0,-1001.2937,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,90,50,15,1,0,-9,0,7.8008995,7.8008995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,1,4,1,2883.5,211632.22,0,0,789.63965 -15695,19276,35072,-9,35071,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1034.7681,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,1,4,1,2883.5,211632.22,0,0,789.63965 -15696,19277,35073,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,0,4,8.2485065,8.0728731,0,3,0,0,0,-9,0,-1032.6362,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,43,38,15,1,0,-9,0,9.6017923,9.6017923,0,0,0,0,0,0,0,0,1,1,0,3.5071476,0,0,0,60.299999,43.720001,-9,-9,6,1,1,0,0,9,4,1,1457,127670.79,0,0,1176.0859 -15697,19278,35074,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,0,3,7.9065919,8.368186,3.7448759,3,0,0,0,-9,0,-1049.4884,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,11.796119,11.796119,0,0,0,0,0,0,0,0,1,1,0,3.332005,3.6440594,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,1,4,1,274,-70039.125,0,0,1391.9344 -15698,19279,35075,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,8.280014,8.1901331,0,3,0,-9,0,-9,0,-967.43286,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,48,0,15,1,0,-9,0,10.678659,10.678659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,4,4,0,359,142308.28,0,0,1945.1586 -15699,19280,35076,-9,35078,35079,5,1,0,0,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1054.9349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,8,3,0,753,-64334.168,0,0,1351.9922 -15699,19280,35077,-9,35078,35079,4,1,1,2,2,2,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.2056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,8,3,0,753,-64334.168,0,0,1351.9922 -15699,19280,35078,35079,-9,-9,1,1,0,31,1,2,3,0,2,-9,1,1,0,0,5,3.6270127,3.3595295,0,2,0,-9,8,0,0,-105.78539,0,0,1,40,2,3,1,2,-9,2019,1,3,4,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,61.849998,47.259998,5,3,4,0,1,8,3,0,753,-64334.168,0,0,1351.9922 -15699,19280,35079,35078,-9,-9,3,1,1,40,1,2,3,0,2,-9,2,1,0,0,3,8.259037,8.4478617,0,2,0,-9,8,0,9,24.526587,0,0,0,31,2,5,1,-9,-9,2019,1,1,13,3,40,50,15,1,0,1,0,11.293322,11.293322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.849998,47.259998,54.099998,59.110001,2,3,4,0,1,8,3,0,753,-64334.168,0,0,1351.9922 -15700,19281,35080,35082,-9,-9,1,1,0,44,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,22,0,-3,-19.249611,0,0,1,47,1,4,1,3,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3677211,0,0,0,46.389999,52.950001,53,55,6,1,1,0,0,2,4,1,352.66666,486771,0,0,4798.9053 -15700,19281,35081,-9,35080,35082,3,1,0,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1020.9974,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,2,4,1,352.66666,486771,0,0,4798.9053 -15700,19281,35082,35080,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,0,4,9.2843695,9.412467,0,2,0,-9,6,0,3,-90.096916,0,0,0,44,2,4,3,-9,-9,2019,2,1,9,1,37,73,15,1,0,3,0,34.421989,34.421989,0,0,0,0,0,0,0,0,1,1,0,1.0962032,0,0,0,53,55,46.389999,52.950001,6,1,1,0,0,2,4,1,352.66666,486771,0,0,4798.9053 -15701,19282,35083,35085,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,0,4,8.2699032,8.274519,0,2,0,-9,4,0,-2,17.113552,0,0,1,32,2,4,1,-9,-9,2019,1,2,6,0,39,23,15,1,0,1,0,11.676298,11.676298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,39.990002,62.580002,6,1,1,0,0,12,4,1,237.33333,191790.66,0,0,3217.4087 -15701,19282,35084,-9,35083,35085,3,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.4243,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,12,4,1,237.33333,191790.66,0,0,3217.4087 -15701,19282,35085,35083,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,4,8.0292816,7.827621,0,2,0,-9,4,0,2,-59.048515,-9,0,0,30,2,4,1,-9,-9,2019,1,1,17,5,40,0,15,1,1,1,0,7.8484297,7.8484297,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.990002,62.580002,51.240002,58.84,5,1,1,0,0,12,4,1,237.33333,191790.66,0,0,3217.4087 -15702,19283,35086,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,10,3,0,0,2,0,5.672338,5.469214,3,0,0,0,-9,0,-915.8952,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,18,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2491541,5.2278957,0,0,52.610001,22.379999,-9,-9,4,1,1,0,0,2,2,1,1022,234660.78,0,0,1199.8969 -15702,19284,35087,-9,-9,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,3,8.1668167,8.3620787,4.9083562,3,0,-9,0,-9,0,-1050.4165,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,37,0,15,1,0,-9,0,10.968153,10.968153,0,0,0,0,0,0,0,14.5,1,1,0,4.9983792,0,14.996807,3,46.740002,49.919998,-9,-9,6,1,1,0,0,2,4,1,140,539642.38,0,0,1154.1298 -15703,19285,35088,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,3,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1070.3745,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.59,64.489998,-9,-9,3,1,1,1,1,6,1,0,1459,-72274.68,0,0,1177.5635 -15704,19286,35089,35090,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,3.2454927,3.0151839,1,0,-9,9,0,-3,37.705185,0,0,0,73,2,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,128.85373,0,0,0,0,0,1,1,0,0,3.4263809,0,0,50,47,43.400002,29.01,5,1,1,0,0,6,2,0,727.5,-2221.0039,0,0,1588.1777 -15704,19286,35090,35089,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,3,61.480057,0,0,0,70,3,3,3,-9,-9,2019,4,2,22,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.41282,1,43.400002,29.01,50,47,1,1,1,0,0,6,2,0,727.5,-2221.0039,0,0,1588.1777 -15705,19287,35091,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1000.1527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,39.799999,-9,-9,6,1,1,0,0,13,1,0,789,-211127.63,0,0,1529.4812 -15706,19288,35092,35093,-9,-9,2,1,0,33,1,0,1,0,2,-9,2,1,0,0,3,7.865315,7.7264986,0,2,0,-9,7,0,-3,31.947308,0,0,1,36,2,3,1,2,2,2019,1,1,13,1,38,38,15,1,0,1,0,5.7244353,5.7244353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,46.110001,51.900002,3,1,1,0,1,2,4,0,654.33331,41623.773,0,0,2172.2478 -15706,19288,35093,35092,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,0,3,8.4292097,8.2549887,0,2,0,-9,7,0,3,-13.727875,0,0,0,33,2,3,1,2,2,2019,1,2,11,1,49,40,15,1,0,1,0,10.302266,10.302266,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.110001,51.900002,43.599998,51.610001,6,1,1,0,0,2,4,0,654.33331,41623.773,0,0,2172.2478 -15706,19288,35094,-9,35092,35093,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1043.651,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,0,654.33331,41623.773,0,0,2172.2478 -15707,19289,35095,35096,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,0,3,9.2477245,9.3836021,0,2,0,-9,7,0,-2,155.27597,0,0,0,34,1,3,1,-9,-9,2019,1,1,12,0,48,42,15,1,0,1,0,22.887985,22.887985,0,0,0,0,0,0,0,0,1,1,0,4.9928846,0,0,0,46.080002,57.200001,57.330002,53.459999,6,1,1,0,0,7,5,1,536,61866.469,0,0,2679.6064 -15707,19289,35096,35095,-9,-9,1,1,0,34,1,1,1,0,1,-9,5,1,0,0,3,0,0,0,2,0,-9,7,0,2,-35.216537,0,0,1,32,2,3,1,-9,-9,2019,1,2,9,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2646556,0,0,0,57.330002,53.459999,46.080002,57.200001,6,2,3,0,0,7,5,1,536,61866.469,0,0,2679.6064 -15707,19289,35097,-9,35096,35095,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1074.8137,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,7,5,1,536,61866.469,0,0,2679.6064 -15708,19290,35098,35099,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,5,0,0,0,1,0,-9,48,0,-1,-110.79213,0,0,0,71,2,5,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.689999,57.470001,7,1,1,0,0,4,5,1,216.5,54054,0,0,5032.7178 -15708,19290,35099,35098,-9,-9,1,1,1,71,1,0,0,0,2,-9,2,1,0,0,5,4.222342,8.8815145,8.9147196,1,0,-9,48,0,1,-77.63517,0,0,0,70,2,5,3,3,3,2019,2,2,6,0,5,0,15,1,0,4,0,1.7107316,1.7107316,0,0,0,0,0,0,0,0,1,1,0,6.658082,8.7090845,0,0,54.689999,57.470001,57.060001,57.759998,6,1,1,0,0,4,5,1,216.5,54054,0,0,5032.7178 -15709,19291,35100,35101,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,8.7416391,8.5962543,0,2,0,-9,32,0,5,13.906775,0,0,0,47,3,4,3,3,3,2019,2,1,9,0,40,0,15,1,0,3,0,13.292604,13.292604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.880001,50.59,42.84,55.93,6,2,3,0,0,4,4,1,1276.5,695351.69,0,0,2914.1758 -15709,19291,35101,35100,-9,-9,1,1,0,47,1,0,1,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,32,0,-5,-9.7351732,0,0,0,52,1,4,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.84,55.93,44.880001,50.59,6,2,3,0,0,4,4,1,1276.5,695351.69,0,0,2914.1758 -15709,19292,35102,35103,35101,35100,3,1,1,27,1,0,1,0,2,-9,2,1,0,0,4,7.5636711,7.896667,0,2,0,-9,2,0,5,78.102859,0,1,0,22,2,4,3,2,2,2019,2,6,6,0,35,0,15,1,0,3,0,7.861702,7.861702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.110001,56.110001,50.25,54.040001,5,2,3,0,0,4,2,1,1815,70360.352,0,0,1215.6392 -15709,19292,35103,35102,-9,-9,6,1,0,22,1,0,1,0,2,-9,3,3,0,0,4,0,0,0,2,0,-9,2,0,-5,-8.1445923,0,1,1,27,2,4,1,-9,-9,2019,3,3,7,0,0,36,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.25,54.040001,48.110001,56.110001,6,2,3,1,0,4,2,1,1815,70360.352,0,0,1215.6392 -15709,19293,35104,-9,35101,35100,4,1,1,24,2,0,1,0,1,-9,2,1,0,0,5,8.1061707,8.2892189,0,3,0,0,0,-9,0,-904.85809,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,0,15,1,0,-9,1,10.156589,10.156589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,2,3,0,0,4,3,1,1282,162484.78,0,0,1650.051 -15710,19294,35105,35106,-9,-9,2,1,0,64,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,45,0,0,0,-9,0,0,64,3,2,3,3,3,2019,4,1,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51.23,40.310001,5,2,3,0,0,6,2,1,383,59523.125,0,0,1244.4553 -15710,19294,35106,35105,-9,-9,1,1,1,64,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,45,0,0,0,0,0,0,64,3,3,3,3,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.23,40.310001,49,48,6,2,3,1,0,6,2,1,383,59523.125,0,0,1244.4553 -15710,19295,35107,-9,35105,35106,3,1,1,41,3,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-990.63129,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,2,3,0,0,6,1,1,216,0,0,0,765.6499 -15710,19296,35108,-9,35105,35106,4,1,1,35,3,0,0,0,2,-9,2,1,0,0,4,7.1374021,7.2277308,0,3,0,0,0,-9,0,-999.43176,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,0,15,1,0,-9,1,6.5072408,6.5072408,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,6,2,1,163,-45813.031,0,0,1074.6875 -15710,19297,35109,-9,35105,35106,5,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,7.7423406,7.9523149,0,3,0,0,0,-9,0,-1056.3353,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,0,15,1,0,-9,1,5.3317671,5.3317671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,3,1,220,-28005.449,0,0,380.77524 -15711,19298,35110,35111,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,50,0,3,0,0,0,0,66,2,2,3,3,3,2019,4,2,13,5,0,60,15,4,1,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.423332,1,45.57,56,37.130001,24.030001,4,1,1,0,0,11,1,1,597.5,60691.453,0,0,1210.2957 -15711,19298,35111,35110,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,50,0,-3,0,0,0,0,69,2,3,3,3,3,2019,4,1,21,10,0,0,15,4,1,4,0,0,0,1,0,38.270855,0,0,19.097298,0,0,1,1,0,0,0,0,0,37.130001,24.030001,45.57,56,3,1,1,0,0,11,1,1,597.5,60691.453,0,0,1210.2957 -15712,19299,35112,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,1,0,7.2274103,7.6532469,3,0,0,0,-9,0,-1081.7461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.761487,7.256856,0,0,31.5,20.969999,-9,-9,5,1,1,0,0,13,3,1,185,464479.13,0,0,3109.3555 -15712,19300,35113,-9,35112,-9,2,1,1,48,2,0,0,0,2,-9,1,1,0,0,4,7.503056,7.5663571,0,3,0,0,0,-9,0,-1042.5764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,40,45,15,1,0,-9,1,5.3829675,5.3829675,0,0,0,0,0,0,0,0,1,1,0,7.2429614,0,0,0,51,55,-9,-9,6,1,1,0,0,13,3,1,192,8735.207,0,0,2350.1553 -15712,19301,35114,-9,35112,-9,3,1,1,47,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1093.6377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4125919,0,0,0,48.66,44.34,-9,-9,5,1,1,0,0,13,2,1,653,174659.16,0,0,46.205383 -15713,19302,35115,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,0,3,7.6405401,7.369215,0,3,0,-9,0,-9,0,-938.31976,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,25,0,15,1,0,-9,0,10.056273,10.056273,0,0,0,0,0,0,0,14.5,1,0,1,0,0,3.9687469,3,54.369999,54.799999,-9,-9,6,3,4,0,0,6,3,0,99,-32463.795,0,0,-804.55511 -15714,19303,35116,35117,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,5.2642479,5.5480928,0,1,0,-9,33,0,-1,-89.237686,0,0,0,57,1,4,1,2,2,2019,1,2,6,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,5.1003947,3,60.130001,49.27,57.16,56.150002,6,1,1,0,0,6,4,1,1532.5,50217.883,0,0,1682.1715 -15714,19303,35117,35116,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.6209879,9.1567039,0,1,0,-9,33,0,1,35.156643,0,0,0,56,2,4,1,3,3,2019,1,1,6,0,32,40,15,1,0,1,0,23.378786,23.378786,0,0,0,0,0,0,0,0,0,0,0,6.2087383,0,0,0,57.16,56.150002,60.130001,49.27,7,1,1,0,0,6,4,1,1532.5,50217.883,0,0,1682.1715 -15715,19304,35118,35120,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,0,4,8.8577824,8.9108381,0,2,0,-9,20,0,2,-22.358418,0,0,0,47,1,5,1,1,2,2019,1,2,9,1,40,37,15,1,0,1,0,16.56723,16.56723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,48.66,54.860001,6,2,3,0,0,7,5,1,2131,105337.05,0,0,4565.5303 -15715,19304,35119,-9,35120,35118,4,1,0,17,2,0,1,1,2,0,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-977.15094,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.75,58.860001,-9,-9,4,2,3,0,0,7,5,1,2131,105337.05,0,0,4565.5303 -15715,19304,35120,35118,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,5,8.6128902,8.938055,0,2,0,-9,20,0,-2,36.190498,0,0,0,49,1,4,1,1,2,2019,1,1,7,0,40,37,15,1,0,1,0,18.106518,18.106518,0,0,0,0,0,0,0,0,1,1,0,6.9215789,0,0,0,48.66,54.860001,53,55,6,2,3,0,0,7,5,1,2131,105337.05,0,0,4565.5303 -15715,19305,35121,-9,35120,35118,3,1,0,20,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-853.7019,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,7,1,1,473,116667.1,0,0,0 -15716,19306,35122,35123,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,5,8.3462305,8.5944424,0,1,0,-9,28,0,5,-57.222824,0,0,0,52,1,4,1,1,1,2019,1,2,2,0,41,40,15,1,0,1,0,14.084442,14.084442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,55,60.119999,54.799999,6,3,4,0,0,8,5,0,609,731736.5,0,0,3147.8628 -15716,19306,35123,35122,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,8.3327408,8.3891611,0,1,0,-9,7,0,-5,142.6013,0,0,0,57,2,5,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,11.552516,11.552516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,54,55,7,3,4,0,0,8,5,0,609,731736.5,0,0,3147.8628 -15716,19307,35124,-9,35122,35123,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.8532815,7.8307471,0,3,0,0,0,-9,0,-1107.9043,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,2,35,19,15,1,0,-9,1,8.2394276,8.2394276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.950001,63.610001,-9,-9,3,3,4,0,0,8,3,0,256,40093.867,0,0,2265.1919 -15717,19308,35125,35126,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,0,3,7.5390477,7.2653356,0,1,0,-9,6,0,-2,-9.7771339,0,0,0,55,3,4,1,2,2,2019,1,1,9,0,18,18,15,1,0,1,0,15.531113,15.531113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.330002,53.459999,44.400002,55.029999,6,1,1,0,0,9,4,1,511.5,1592617.8,0,0,2574.1206 -15717,19308,35126,35125,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,0,4,8.2400732,8.6266041,0,1,0,-9,6,0,2,115.64232,0,0,0,53,1,3,1,2,3,2019,1,2,10,0,40,45,15,1,0,1,0,13.824144,13.824144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.400002,55.029999,57.330002,53.459999,6,1,1,0,0,9,4,1,511.5,1592617.8,0,0,2574.1206 -15717,19309,35127,-9,35125,35126,3,1,0,24,2,0,0,0,1,-9,7,2,0,0,4,7.0846057,6.9630313,0,3,0,0,0,-9,0,-954.00354,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,12,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,1,9,2,1,633,1443.0977,0,0,818.8974 -15718,19310,35128,35129,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,0,3,8.4697685,8.6426611,0,1,0,-9,2,0,-7,-68.628128,0,0,1,37,1,5,1,2,2,2019,1,2,12,2,50,60,15,1,0,1,0,11.222453,11.222453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.700001,57.060001,57.759998,6,1,1,0,0,6,5,1,1099,385868.75,0,0,4438.7676 -15718,19310,35129,35128,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,0,5,8.9398394,8.9369373,0,1,0,-9,2,0,7,-111.27933,0,0,0,30,1,3,1,-9,-9,2019,1,1,2,0,47,53,15,1,0,1,0,15.681956,15.681956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.09,46.700001,6,1,1,0,0,6,5,1,1099,385868.75,0,0,4438.7676 -15719,19311,35130,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,2,1,0,0,4,8.2837744,8.5271749,0,3,0,0,0,-9,0,-1056.1466,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,39,43,15,1,0,-9,0,14.666803,14.666803,0,0,0,0,0,0,0,0,0,0,0,3.2966797,0,0,0,51.830002,57.200001,-9,-9,6,1,1,0,0,9,5,1,1237,263343.69,0,0,87.000984 -15720,19312,35131,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,0,4,6.8492379,7.3783803,6.7986941,3,0,0,0,-9,0,-881.63544,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,3,15,1,0,-9,0,9.1331415,9.1331415,0,0,0,0,0,0,0,0,1,1,0,5.9756069,7.0542097,0,0,61.119999,51.57,-9,-9,7,1,1,0,0,13,3,1,676,162570.63,0,0,2540.2056 -15721,19313,35132,35133,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,7.3405309,8.7235785,8.1489096,1,0,-9,1,-9,-8,74.264816,-9,0,0,62,2,3,3,-9,-9,2019,2,1,5,1,14,0,15,1,0,4,0,14.174129,14.174129,0,0,0,0,0,0,0,0,0,0,0,2.6073487,8.1421833,0,0,42.439999,57.540001,35.799999,59.5,6,1,1,0,0,1,5,1,2622.5,1483166.9,0,0,3342.0562 -15721,19313,35133,35132,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.8195033,8.1563702,1,0,-9,1,-9,8,-22.665453,-9,0,0,54,2,4,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5065236,8.1225681,0,0,35.799999,59.5,42.439999,57.540001,6,1,1,0,0,1,5,1,2622.5,1483166.9,0,0,3342.0562 -15722,19314,35134,-9,-9,-9,1,1,0,21,2,0,0,0,1,1,2,1,0,0,4,8.270566,7.8663268,0,3,0,0,0,-9,0,-1025.3802,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,38,0,15,1,1,-9,0,9.8921509,9.8921509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.189999,-9,-9,5,1,1,0,0,4,4,0,115,786.4046,0,0,2140.0662 -15723,19315,35135,-9,-9,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,8.0520287,8.1272917,0,3,0,0,0,-9,0,-1003.8528,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,40,0,15,1,0,-9,0,8.8608799,8.8608799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,-9,-9,7,2,3,0,0,1,4,1,282,26619.242,0,0,713.15057 -15723,19316,35136,35137,-9,-9,3,1,1,28,1,0,0,0,3,-9,2,1,0,0,5,7.4561462,7.0038834,0,1,0,-9,2,0,2,-5.9618902,-9,1,0,26,2,4,1,-9,-9,2019,1,1,4,0,35,0,15,1,0,1,0,4.7359195,4.7359195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,60,54.450001,56.220001,7,2,3,0,0,1,2,1,567.5,121104.23,0,0,1264.6071 -15723,19316,35137,35136,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,4,0,0,0,1,0,-9,2,0,-2,-83.359306,0,1,1,28,3,5,1,3,2,2019,1,3,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.450001,56.220001,52,60,6,2,3,0,0,1,2,1,567.5,121104.23,0,0,1264.6071 -15724,19317,35138,35139,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,51,0,-1,-38.905663,0,0,0,71,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.400002,39.169998,40.630001,39.73,5,1,1,0,0,5,2,1,446,-101517.93,0,0,377.99295 -15724,19317,35139,35138,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.0493288,6.2437692,1,0,-9,51,0,1,23.420321,0,0,0,70,3,3,3,-9,-9,2019,4,2,11,2,0,0,15,4,0,4,0,0,0,1,0,3.9032571,0,0,0,0,0,1,1,0,5.7719007,6.0264854,0,0,40.630001,39.73,45.400002,39.169998,5,1,1,0,0,5,2,1,446,-101517.93,0,0,377.99295 -15725,19318,35140,35141,-9,-9,1,1,0,55,1,0,0,0,3,-9,1,1,0,0,3,7.2484484,7.5464468,0,1,0,-9,37,0,-2,-76.088768,0,0,0,57,2,5,1,2,2,2019,1,2,11,0,24,24,15,1,0,1,0,8.1986408,8.1986408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.279999,50.189999,40.950001,63.66,4,1,1,0,0,2,3,1,899,181529.75,0,0,1666.7114 -15725,19318,35141,35140,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,5,7.6212325,7.4152107,0,1,0,-9,37,0,2,5.1012669,0,0,0,55,3,3,1,-9,-9,2019,1,1,14,3,35,35,15,1,0,1,0,7.0940595,7.0940595,0,0,0,0,0,0,0,0,0,0,0,1.4240329,0,0,0,40.950001,63.66,49.279999,50.189999,5,1,1,0,0,2,3,1,899,181529.75,0,0,1666.7114 -15726,19319,35142,-9,35144,35146,6,1,1,10,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1021.7502,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,8,2,0,994.79999,-36049.633,0,0,3814.8459 -15726,19319,35143,-9,35144,35146,5,1,1,15,2,0,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-944.80878,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,8,2,0,994.79999,-36049.633,0,0,3814.8459 -15726,19319,35144,35146,-9,-9,1,1,0,41,1,0,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-5,4.8422971,0,0,1,46,3,4,1,3,3,2019,3,2,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.457039,3,49,56,52,56,5,2,3,0,1,8,2,0,994.79999,-36049.633,0,0,3814.8459 -15726,19319,35145,-9,35144,35146,4,1,1,17,2,0,4,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.8699,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,2,0,994.79999,-36049.633,0,0,3814.8459 -15726,19319,35146,35144,-9,-9,2,1,1,46,1,0,4,0,3,-9,2,1,0,0,4,7.3993921,7.2182827,0,2,0,-9,20,0,5,-64.525887,0,0,0,41,3,4,3,3,3,2019,2,1,9,1,24,24,15,1,0,3,0,6.8044782,6.8044782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,49,56,6,2,3,0,1,8,2,0,994.79999,-36049.633,0,0,3814.8459 -15726,19320,35147,-9,35144,35146,3,1,0,18,2,0,4,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-937.34521,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,2,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.110001,55.32,-9,-9,7,2,3,0,0,8,2,0,276,50400.063,0,0,0 -15727,19321,35148,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,1,1,0,0,4,2.110496,2.3393557,0,3,0,-9,0,-9,0,-1084.1399,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,40,0,15,1,1,-9,0,.028510429,.028510429,1,0,0,0,0,0,0,7,0,0,0,7.6832323,0,8.7816181,3,33.810001,63.919998,-9,-9,4,1,1,0,0,6,2,1,225,32635.125,0,0,1208.8175 -15728,19322,35149,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,6.2528028,5.7249346,3,0,0,0,-9,0,-970.29895,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,9.361146,0,1,1,0,0,6.1877851,0,0,53.18,28.4,-9,-9,6,1,1,0,0,10,2,0,519,440370.59,0,0,980.77161 -15729,19323,35150,35151,-9,-9,1,1,0,64,1,0,0,0,1,-9,2,1,0,0,5,7.7159491,7.6786795,0,1,0,-9,8,0,3,-35.144493,0,0,0,61,3,4,1,2,2,2019,1,2,6,0,24,24,15,1,0,1,0,9.908102,9.908102,0,0,0,0,0,0,0,0,0,0,0,4.800149,0,0,0,57.060001,57.759998,54.790001,55.860001,6,1,1,0,0,10,3,1,255,692484.25,0,0,1861.2849 -15729,19323,35151,35150,-9,-9,2,1,1,61,1,0,0,0,3,-9,1,1,0,0,4,6.9815202,7.2849064,0,1,0,-9,8,0,-3,-74.011604,0,0,0,64,1,5,1,2,3,2019,1,1,8,0,40,60,15,1,0,1,0,4.1469131,4.1469131,0,0,0,0,0,0,0,0,0,0,0,5.6661491,0,0,0,54.790001,55.860001,57.060001,57.759998,7,1,1,0,0,10,3,1,255,692484.25,0,0,1861.2849 -15730,19324,35152,35154,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,3,7.8413882,7.6845708,0,2,0,-9,20,0,-1,80.279007,0,0,1,39,1,4,1,2,2,2019,1,2,10,1,16,30,15,1,0,1,0,16.304443,16.304443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.200001,57.490002,6,1,1,0,0,8,5,1,974,-44532.488,0,0,4068.3582 -15730,19324,35153,-9,35152,35154,4,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.8344,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,8,5,1,974,-44532.488,0,0,4068.3582 -15730,19324,35154,35152,-9,-9,2,1,1,39,1,0,1,0,1,-9,2,1,0,0,4,8.760931,8.86903,0,2,0,-9,20,0,1,94.577904,0,0,0,38,1,3,1,2,2,2019,1,1,7,0,40,45,15,1,0,1,0,20.732367,20.732367,0,0,0,0,0,0,0,0,1,1,0,8.752985,0,0,0,54.200001,57.490002,54.959999,53.169998,6,1,1,0,0,8,5,1,974,-44532.488,0,0,4068.3582 -15730,19325,35155,-9,35152,35154,3,1,1,18,2,0,1,1,3,-9,7,2,0,0,5,6.606566,6.7913418,0,3,0,0,0,-9,0,-1157.6654,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,61,-9,-9,5,1,1,0,0,8,2,1,266,51125.215,0,0,-123.62602 -15731,19326,35156,35157,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,0,4,8.6479635,8.512722,0,2,0,-9,8,0,2,-193.9653,0,0,0,40,1,5,1,2,2,2019,1,2,6,0,38,6,15,1,0,1,0,18.115685,18.115685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,57.060001,57.759998,6,1,1,0,0,12,5,1,584,2044584.5,0,0,4284.1211 -15731,19326,35157,35156,-9,-9,2,1,0,40,1,0,1,0,1,-9,2,1,0,0,5,8.4827719,8.4107647,0,2,0,-9,8,0,-2,84.890984,0,0,1,42,1,4,1,2,2,2019,1,1,6,0,28,28,15,1,0,1,0,16.735813,16.735813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,59.529999,56.439999,6,1,1,0,0,12,5,1,584,2044584.5,0,0,4284.1211 -15731,19326,35158,-9,35157,35156,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-950.00232,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,5,1,584,2044584.5,0,0,4284.1211 -15732,19327,35159,35160,-9,-9,1,1,0,50,1,0,1,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,8,0,4,201.95218,0,0,0,46,2,3,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,58.889999,42.810001,54.48,5,1,1,0,0,9,2,0,1027.6666,-85693.242,0,0,1040.1461 -15732,19327,35160,35159,-9,-9,2,1,1,46,1,0,1,0,2,-9,1,1,0,0,3,4.2552156,4.2211852,0,2,0,-9,8,0,-4,-49.245865,0,0,0,50,1,5,3,-9,-9,2019,2,1,9,1,40,50,15,1,0,3,0,.21741709,.21741709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.810001,54.48,49.02,58.889999,3,2,3,0,0,9,2,0,1027.6666,-85693.242,0,0,1040.1461 -15732,19327,35161,-9,35159,35160,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-986.90381,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,9,2,0,1027.6666,-85693.242,0,0,1040.1461 -15733,19328,35162,35163,-9,-9,1,1,1,27,1,1,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,2,0,-9,1,0,25,2,3,3,3,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.150002,41.419998,37.990002,40.59,4,2,3,1,0,2,1,0,385.66666,25909.293,0,0,2048.3394 -15733,19328,35163,35162,-9,-9,2,1,0,25,1,1,1,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,2,0,-2,0,-9,1,1,27,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.990002,40.59,39.150002,41.419998,4,1,1,1,0,2,1,0,385.66666,25909.293,0,0,2048.3394 -15733,19328,35164,-9,35163,35162,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.09027,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,4,2,0,0,2,1,0,385.66666,25909.293,0,0,2048.3394 -15734,19329,35165,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,0,3,7.0553093,7.1294403,5.9649258,4,0,0,0,-9,0,-906.70227,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,16,16,15,1,0,-9,0,7.9103136,7.9103136,0,0,0,0,0,0,0,2,1,1,0,5.235786,0,0,3,47.560001,41.5,-9,-9,5,1,1,0,0,12,2,1,1341.3334,11805.587,0,0,1862.3746 -15734,19329,35166,-9,35165,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-883.61749,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,12,2,1,1341.3334,11805.587,0,0,1862.3746 -15734,19329,35167,-9,35165,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1070.8958,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,1,1341.3334,11805.587,0,0,1862.3746 -15735,19330,35168,35169,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,0,2,8.1871376,7.7599659,0,1,0,-9,6,0,9,46.367905,0,0,1,31,1,4,1,2,2,2019,1,2,13,4,30,28,15,1,1,1,0,13.557134,13.557134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.700001,35.57,51.830002,57.200001,6,1,1,0,0,7,4,0,478.5,620315.38,0,0,2819.2319 -15735,19330,35169,35168,-9,-9,2,1,1,31,1,0,0,0,1,1,2,1,0,0,4,7.791676,7.3187757,0,1,0,-9,6,0,0,41.178261,-9,0,0,40,1,2,1,1,2,2019,1,1,8,0,40,0,15,1,0,1,0,4.7512426,4.7512426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.830002,57.200001,41.700001,35.57,6,1,1,0,0,7,4,0,478.5,620315.38,0,0,2819.2319 -15736,19331,35170,35172,-9,-9,2,1,1,29,1,1,1,0,2,-9,2,1,0,0,5,7.9932437,8.0940771,0,2,0,-9,3,0,-1,-9.4551783,0,1,0,30,2,4,1,-9,-9,2019,1,1,15,5,42,40,15,1,1,1,0,8.575181,8.575181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.950001,63.720001,44.02,60.700001,3,1,1,0,0,4,4,0,565.33331,101607.01,0,0,1966.8933 -15736,19331,35171,-9,35172,35170,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1068.4862,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,0,565.33331,101607.01,0,0,1966.8933 -15736,19331,35172,35170,-9,-9,1,1,0,30,1,1,1,0,2,-9,2,1,0,0,4,7.6364336,7.7254076,0,2,0,-9,3,0,1,-39.152218,0,0,1,29,2,5,1,-9,-9,2019,1,2,12,1,22,22,15,1,0,1,0,11.181817,11.181817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.700001,31.950001,63.720001,4,1,1,0,0,4,4,0,565.33331,101607.01,0,0,1966.8933 -15737,19332,35173,35174,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,3,0,6.7288032,6.6469383,1,0,-9,10,0,0,38.010239,0,0,0,79,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6099834,6.4521379,0,0,57.330002,53.459999,54.959999,53.169998,6,1,1,0,0,2,2,1,668,879108.5,0,0,2225.2612 -15737,19332,35174,35173,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,3,0,6.4285531,6.2161455,1,0,-9,10,0,0,-130.81927,0,0,0,79,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4021077,0,0,54.959999,53.169998,57.330002,53.459999,6,3,4,0,0,2,2,1,668,879108.5,0,0,2225.2612 -15738,19333,35175,35176,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,0,4,0,6.8674378,7.1679311,1,0,-9,6,0,-1,-82.989456,0,0,0,83,2,3,3,3,3,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0187349,0,0,58.27,29.84,63.810001,32.900002,5,1,1,0,0,13,2,1,317.5,385628.13,0,0,2621.1367 -15738,19333,35176,35175,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,0,3,0,6.1866159,6.1432185,1,0,-9,6,0,1,58.248276,0,0,0,82,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0432138,0,0,63.810001,32.900002,58.27,29.84,5,1,1,0,0,13,2,1,317.5,385628.13,0,0,2621.1367 -15739,19334,35177,35178,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,0,4,7.8674803,7.8419023,0,1,0,-9,9,0,-3,41.623524,0,0,0,54,2,4,1,-9,-9,2019,1,1,6,0,37,30,15,1,0,1,0,8.1171989,8.1171989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.290001,50.889999,64.760002,48.619999,5,2,3,0,0,8,5,1,841,822304.5,0,0,2520.9277 -15739,19334,35178,35177,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,0,4,8.033145,8.263093,0,1,0,-9,30,0,3,-60.547298,0,0,0,51,1,4,1,3,3,2019,1,2,6,0,40,60,15,1,0,1,0,11.181722,11.181722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.760002,48.619999,45.290001,50.889999,6,2,3,0,0,8,5,1,841,822304.5,0,0,2520.9277 -15739,19335,35179,-9,35177,35178,3,1,1,26,2,0,0,0,2,-9,2,1,0,0,3,8.2242556,8.2510185,0,3,0,0,0,-9,0,-1022.6779,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,40,48,15,1,0,-9,1,10.985927,10.985927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.349998,47.02,-9,-9,3,2,3,0,0,8,4,1,553,81475.68,0,0,1728.5392 -15739,19336,35180,-9,35177,35178,4,1,1,20,2,0,0,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-913.83026,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.470001,50.52,-9,-9,6,2,3,0,0,8,1,1,301,-1291.7454,0,0,0 -15740,19337,35181,35182,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,4.5407901,4.81743,1,0,-9,56,0,-5,-98.143799,0,0,0,81,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3719182,0,0,57.330002,53.459999,45.580002,55.84,6,1,1,0,0,7,2,1,449.5,1044053.6,0,0,1136.7545 -15740,19337,35182,35181,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,4,0,6.2946329,5.7496433,1,0,-9,56,0,5,53.976181,0,0,0,76,3,3,3,3,3,2019,4,1,13,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9909763,5.836061,0,0,45.580002,55.84,57.330002,53.459999,5,1,1,0,0,7,2,1,449.5,1044053.6,0,0,1136.7545 -15741,19338,35183,-9,35184,35186,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.8821,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1326.75,450680.13,0,0,3837.8799 -15741,19338,35184,35186,-9,-9,1,1,0,38,1,0,2,0,1,-9,1,1,0,0,5,7.6354723,7.7298665,0,2,0,-9,10,0,2,45.247341,0,0,1,36,1,4,1,2,2,2019,1,2,10,0,24,0,15,1,0,1,0,9.241889,9.241889,0,0,0,0,0,0,0,0,0,0,0,1.7259554,0,0,0,54.099998,59.110001,51,56,7,1,1,0,0,8,5,1,1326.75,450680.13,0,0,3837.8799 -15741,19338,35185,-9,35184,35186,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1002.3939,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,5,1,1326.75,450680.13,0,0,3837.8799 -15741,19338,35186,35184,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,0,4,9.0572958,8.7652607,0,2,0,-9,10,0,-2,-76.341492,0,0,0,38,1,5,1,-9,-9,2019,1,1,10,1,40,38,15,1,0,1,0,26.089439,26.089439,0,0,0,0,0,0,0,0,0,0,0,5.3023767,0,0,0,51,56,54.099998,59.110001,5,1,1,0,0,8,5,1,1326.75,450680.13,0,0,3837.8799 -15742,19339,35187,35188,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,0,3,8.4938326,8.3158846,0,1,0,-9,22,0,3,22.627472,0,0,0,45,2,4,1,-9,1,2019,1,2,10,0,38,39,15,1,0,1,0,15.413604,15.413604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,59.529999,56.439999,5,1,1,0,0,2,5,1,2062.5,414317.44,0,0,2925.5288 -15742,19339,35188,35187,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,0,4,7.6995773,8.0322771,0,1,0,-9,10,0,-3,70.095047,0,0,0,48,2,3,1,-9,-9,2019,1,1,7,0,31,31,15,1,0,1,0,9.5575857,9.5575857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.529999,56.439999,51.41,56.150002,6,1,1,0,0,2,5,1,2062.5,414317.44,0,0,2925.5288 -15742,19340,35189,-9,35188,35187,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,4,7.859468,8.1832438,0,3,0,0,0,-9,0,-1113.7367,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,1,0,-9,1,8.1030331,8.1030331,0,0,0,0,0,0,0,0,0,0,0,2.6142013,0,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,2,4,1,574,126329.11,0,0,1195.9574 -15743,19341,35190,35191,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,0,4,0,6.5899839,7.0136108,1,0,-9,6,0,-2,76.532272,0,0,0,80,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0438542,6.4836421,0,0,53.990002,50.709999,59.07,43.049999,6,1,1,0,0,9,3,1,493.5,622835.69,0,0,2385.7642 -15743,19341,35191,35190,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,7.7451105,7.386632,1,0,-9,59,0,2,183.55173,0,0,0,78,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6745949,0,0,59.07,43.049999,53.990002,50.709999,6,1,1,0,0,9,3,1,493.5,622835.69,0,0,2385.7642 -15744,19342,35192,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,4,3,0,0,4,0,8.2527313,8.2084436,3,0,0,0,-9,0,-1089.8754,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.2000418,8.2136574,0,3,54.450001,56.220001,-9,-9,7,1,1,0,0,9,4,1,368,-45116.02,0,0,3813.1694 -15745,19343,35193,35194,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,6.5940433,6.7046094,1,0,-9,42,0,1,75.844467,0,0,0,72,3,2,3,3,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8034358,0,0,37.34,59.07,59.73,32.139999,4,1,1,0,0,12,2,1,673,304582.81,0,0,2376.1567 -15745,19343,35194,35193,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,42,0,-1,-13.402106,0,0,0,73,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.73,32.139999,37.34,59.07,2,1,1,0,0,12,2,1,673,304582.81,0,0,2376.1567 -15746,19344,35195,35196,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,0,4,7.9097624,7.4520879,0,2,0,-9,7,0,-1,-132.53606,0,0,0,51,1,5,1,2,2,2019,1,2,8,1,21,21,15,1,0,1,0,10.404689,10.404689,0,0,0,0,0,0,0,0,1,1,0,2.5330691,0,0,0,48.869999,58.549999,51.73,58.82,6,1,1,0,0,4,4,1,451,530436.25,0,0,3169.0151 -15746,19344,35196,35195,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,0,5,8.0401134,8.0113916,7.037818,2,0,-9,7,0,1,143.42453,0,0,0,50,1,4,1,1,1,2019,1,1,9,0,24,25,15,1,0,1,0,15.317085,15.317085,0,0,0,0,0,0,0,0,1,1,0,7.8078814,0,0,0,51.73,58.82,48.869999,58.549999,7,1,1,0,0,4,4,1,451,530436.25,0,0,3169.0151 -15746,19344,35197,-9,35196,35195,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.8839,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,4,1,451,530436.25,0,0,3169.0151 -15747,19345,35198,35199,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,0,3,0,4.4210691,4.5477958,1,0,-9,7,0,-2,-54.343433,0,0,0,69,2,1,3,2,2,2019,4,1,15,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.4025774,4.2824283,73.759262,2,35.41,50.959999,37.18,19.540001,5,1,1,0,1,12,1,0,246.5,1916017.1,0,0,1899.9454 -15747,19345,35199,35198,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,7,0,2,73.289291,0,0,0,67,1,3,3,2,1,2019,4,2,19,7,0,0,15,4,1,4,0,0,0,1,0,2.0711954,4.0925822,0,0,0,71.5,1,1,0,0,0,73.297295,3,37.18,19.540001,35.41,50.959999,3,1,1,0,0,12,1,0,246.5,1916017.1,0,0,1899.9454 -15747,19346,35200,-9,35199,35198,3,1,1,42,2,0,0,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1046.1359,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,1,1,0,0,12,1,0,60,84229.313,0,0,303.31067 -15748,19347,35201,35202,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,8.415246,8.2718315,0,1,0,-9,2,0,-1,-110.36426,0,1,1,26,1,5,1,-9,-9,2019,1,1,4,0,40,47,15,1,0,1,0,12.188741,12.188741,0,0,0,0,0,0,0,0,0,0,0,4.997673,0,0,0,51.810001,57.220001,49.25,61.25,6,1,1,0,0,10,4,0,1150,250532.86,0,0,2014.6881 -15748,19347,35202,35201,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,5,0,0,0,1,0,-9,2,0,1,-1.9199836,0,1,0,25,1,4,1,-9,-9,2019,1,2,7,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9352534,0,0,0,49.25,61.25,51.810001,57.220001,5,1,1,0,0,10,4,0,1150,250532.86,0,0,2014.6881 -15749,19348,35203,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,4,0,5.345078,5.5757556,3,0,0,0,-9,0,-1022.6823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5199022,0,0,55.189999,54.259998,-9,-9,7,1,1,0,0,6,2,1,1898,203186.77,0,0,1141.6055 -15750,19349,35204,35205,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,8.4081945,8.1515245,0,1,0,-9,9,0,1,-180.89964,0,0,0,45,2,3,1,1,2,2019,1,1,6,0,35,35,15,1,0,1,0,12.098293,12.098293,0,0,0,0,0,0,0,0,0,0,0,3.0261381,0,0,0,57.16,56.150002,54.029999,47.139999,6,1,1,0,0,1,5,1,1176,359251.94,0,0,3583.1938 -15750,19349,35205,35204,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,0,3,8.5846128,8.7112007,0,1,0,-9,9,0,-1,47.217175,0,0,0,46,2,4,1,2,3,2019,1,2,6,0,90,103,15,1,0,1,0,7.6381154,7.6381154,0,0,0,0,0,0,0,0,0,0,0,2.8590438,0,0,0,54.029999,47.139999,57.16,56.150002,6,1,1,0,0,1,5,1,1176,359251.94,0,0,3583.1938 -15751,19350,35206,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,0,3,0,4.0360856,3.9526749,3,0,0,0,-9,0,-926.15289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.3936386,0,0,52,45,-9,-9,6,1,1,0,1,9,1,1,304,-160371.48,0,0,81.597282 -15752,19351,35207,35208,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,3,0,8.4407244,8.6288414,1,0,-9,6,0,0,29.855974,0,0,0,75,3,5,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.811286,0,0,61.279999,48.880001,51.630001,57.91,6,1,1,0,0,12,4,1,368.5,1247418.3,0,0,4323.0352 -15752,19351,35208,35207,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,6,0,0,-24.887392,0,0,0,75,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.630001,57.91,61.279999,48.880001,7,1,1,0,0,12,4,1,368.5,1247418.3,0,0,4323.0352 -15753,19352,35209,-9,35212,35211,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-785.62231,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,1,493.25,339104.78,0,0,2443.5828 -15753,19352,35210,-9,35212,35211,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.92133,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,4,1,493.25,339104.78,0,0,2443.5828 -15753,19352,35211,35212,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,0,3,8.4066372,8.406251,0,2,0,-9,10,0,1,204.54306,0,0,0,41,1,4,1,3,3,2019,1,2,11,0,46,37,15,1,0,1,0,11.839784,11.839784,0,0,0,0,0,0,0,0,1,1,0,4.0066481,0,0,0,49.52,56.950001,49.349998,59.639999,6,2,3,0,0,8,4,1,493.25,339104.78,0,0,2443.5828 -15753,19352,35212,35211,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,0,4,8.035882,7.9091725,0,2,0,-9,10,0,-1,24.39109,0,0,1,42,2,3,1,3,3,2019,1,1,9,0,52,44,15,1,0,1,0,5.2036915,5.2036915,0,0,0,0,0,0,0,0,1,1,0,3.5343792,0,0,0,49.349998,59.639999,49.52,56.950001,6,2,3,0,0,8,4,1,493.25,339104.78,0,0,2443.5828 -15754,19353,35213,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-983.37701,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.709999,23.9,-9,-9,2,1,1,0,1,13,1,0,1339,-208801.11,0,0,782.31873 -15755,19354,35214,35215,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,8.3724251,8.2401896,0,1,0,-9,1,-9,0,4.3109446,-9,0,0,60,1,3,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,12.337749,12.337749,0,0,0,0,0,0,0,0,0,0,0,3.9365549,0,0,0,52.400002,55.580002,56.939999,49.529999,6,1,1,0,0,9,5,1,234,2142657,0,0,4308.71 -15755,19354,35215,35214,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,0,3,8.8718815,9.0071564,0,1,0,1,1,-9,0,121.68235,0,0,0,60,1,4,1,3,2,2019,1,2,5,2,47,104,15,1,0,1,0,17.691833,17.691833,0,0,0,0,0,0,0,2,0,0,0,3.8745644,0,8.7750244,3,56.939999,49.529999,52.400002,55.580002,6,1,1,0,0,9,5,1,234,2142657,0,0,4308.71 -15756,19355,35216,-9,-9,-9,1,1,0,20,2,1,1,0,2,-9,7,2,0,0,4,5.4895153,5.6344619,0,4,0,0,0,-9,0,-1131.8438,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.400002,56.189999,-9,-9,5,1,1,0,0,1,2,0,1126.5,-39676.324,0,0,239.38501 -15756,19355,35217,-9,35216,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-856.64673,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,1,2,0,1126.5,-39676.324,0,0,239.38501 -15757,19356,35218,35219,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,6.2429285,6.1128111,1,0,-9,10,0,-1,-61.695213,0,0,0,75,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,3.6823518,0,0,0,0,0,1,1,0,2.59918,6.4060941,0,0,55.91,28.5,55.150002,32.599998,5,1,1,0,0,4,2,1,351,179853.31,0,0,2191.978 -15757,19356,35219,35218,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,6.470233,6.4891419,1,0,-9,10,0,1,24.654547,0,0,0,74,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.6767936,6.34618,3.6225903,1,55.150002,32.599998,55.91,28.5,6,1,1,0,0,4,2,1,351,179853.31,0,0,2191.978 -15758,19357,35220,-9,35222,35221,8,1,1,35,2,0,3,0,1,-9,1,1,0,0,4,7.4344239,7.8277783,0,3,0,-9,0,0,0,-925.5365,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,37,15,1,0,-9,1,5.3235321,5.3235321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,-9,-9,6,1,1,0,0,4,3,1,1622,-88499.352,0,0,1134.4312 -15758,19358,35221,35222,-9,-9,2,1,1,63,1,0,3,0,2,-9,10,3,0,0,4,0,0,0,2,0,-9,9,0,2,-26.21356,-9,0,0,61,2,2,1,-9,-9,2019,3,1,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.1,66.68,45.330002,51.139999,3,1,1,0,1,4,2,1,771,412824.81,0,0,1255.0302 -15758,19358,35222,35221,-9,-9,1,1,0,61,1,0,3,0,2,-9,2,1,0,0,2,6.9107604,7.4381943,6.6188602,2,0,-9,9,0,-2,123.80117,0,0,0,63,2,4,3,2,2,2019,2,2,12,0,10,18,15,1,0,3,0,10.558487,10.558487,0,0,0,0,0,0,0,0,1,1,0,7.5498543,6.6652822,0,0,45.330002,51.139999,28.1,66.68,4,1,1,0,0,4,2,1,771,412824.81,0,0,1255.0302 -15759,19359,35223,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,0,2,7.7925467,7.7320938,6.7679954,4,0,0,0,-9,0,-943.03241,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,37,40,15,1,0,-9,0,7.3117623,7.3117623,0,0,0,0,0,0,0,0,1,1,0,6.6944127,0,0,0,40.720001,34.060001,-9,-9,3,1,1,0,0,10,3,0,513,107134.38,0,0,1544.4546 -15759,19359,35224,-9,35223,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1018.3826,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,3,0,513,107134.38,0,0,1544.4546 -15760,19360,35225,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,4,0,5.5582099,5.606307,3,0,-9,0,-9,0,-964.06555,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1986279,5.8287611,0,0,57.16,56.150002,-9,-9,7,3,4,0,0,11,2,1,364,59814.629,0,0,499.93707 -15761,19361,35226,35227,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.632637,8.6676083,0,1,0,-9,28,0,-2,34.219643,0,0,0,59,2,4,1,3,2,2019,1,2,10,1,45,45,15,1,0,1,0,11.398958,11.398958,0,0,0,0,0,0,0,2,0,0,0,5.7120628,0,2.953655,3,48.23,50.709999,44.34,54.560001,6,1,1,0,0,5,4,1,346,898389.81,0,0,3010.896 -15761,19361,35227,35226,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,7.5272913,7.6662145,0,1,0,-9,27,0,2,-140.62802,0,0,0,57,2,3,1,-9,-9,2019,1,1,5,0,15,15,15,1,0,1,0,17.037897,17.037897,0,0,0,0,0,0,0,0,0,0,0,3.2665474,0,0,0,44.34,54.560001,48.23,50.709999,7,1,1,0,0,5,4,1,346,898389.81,0,0,3010.896 -15761,19362,35228,-9,35227,35226,3,1,1,18,2,0,0,0,2,1,2,1,0,0,5,7.3144107,7.6658292,0,3,0,0,0,-9,0,-880.65704,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,32,0,15,1,0,-9,1,5.7120018,5.7120018,0,0,0,0,0,0,0,0,0,0,0,.90623176,0,0,0,62.389999,56.709999,-9,-9,7,1,1,0,0,5,3,1,658,-107158.48,0,0,1203.385 -15762,19363,35229,-9,35230,35231,2,1,1,19,2,0,0,0,2,-9,2,1,0,0,4,7.4188733,7.4762115,4.0125208,3,0,0,0,-9,0,-965.13623,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,1,0,-9,1,5.2026825,5.2026825,0,0,0,0,0,0,0,0,0,0,0,4.5576501,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,11,3,1,244,-20695.67,0,0,1903.236 -15762,19364,35230,35231,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,0,5,7.6888852,7.2298913,0,1,0,-9,7,0,-7,48.263622,0,0,1,47,2,4,1,2,2,2019,1,3,6,0,28,28,15,1,0,1,0,9.0815725,9.0815725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,55.189999,54.259998,7,1,1,0,0,11,4,1,1267,480765.44,0,0,2745.1743 -15762,19364,35231,35230,-9,-9,3,1,1,47,1,0,0,0,2,-9,2,1,0,0,4,8.3084059,8.4530115,0,1,0,-9,7,0,7,-73.584862,0,0,0,40,2,5,1,-9,-9,2019,1,1,9,0,52,40,15,1,0,1,0,10.657538,10.657538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,57.060001,57.759998,6,1,1,0,0,11,4,1,1267,480765.44,0,0,2745.1743 -15763,19365,35232,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,0,3,8.090394,8.4477119,6.4720669,3,0,0,0,-9,0,-982.51495,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,32,33,15,1,0,-9,0,12.559236,12.559236,0,0,0,0,0,0,0,0,1,1,0,4.3832083,6.4915552,0,0,60.689999,45.310001,-9,-9,6,1,1,0,0,2,4,1,692,547807.38,0,0,1954.8011 -15764,19366,35233,-9,-9,-9,1,1,1,39,3,0,0,0,2,-9,1,1,0,0,4,8.2026901,8.2410755,0,3,0,-9,0,-9,0,-954.83643,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,60,0,15,1,0,-9,0,7.6311913,7.6311913,0,0,0,0,0,0,0,14.5,0,0,0,0,0,8.7324104,3,44.77,58.060001,-9,-9,7,2,3,0,1,8,4,0,190,43060.602,0,0,1892.5033 -15765,19367,35234,-9,35238,35235,5,1,0,4,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1070.1637,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,4,1,499,255182,0,0,3029.6018 -15765,19367,35235,35238,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,0,4,9.0825682,9.0886021,0,2,0,-9,8,0,1,3.295346,0,0,0,39,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,21.736416,21.736416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.119999,57.279999,48.810001,59.91,6,1,1,0,0,4,4,1,499,255182,0,0,3029.6018 -15765,19367,35236,-9,35238,35235,4,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1037.0148,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,4,4,1,499,255182,0,0,3029.6018 -15765,19367,35237,-9,35238,35235,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-996.97998,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,4,4,1,499,255182,0,0,3029.6018 -15765,19367,35238,35235,-9,-9,2,1,0,39,1,0,3,0,1,-9,2,1,0,0,4,5.6714268,5.6038485,0,2,0,-9,8,0,-1,14.187175,0,0,1,40,1,4,1,2,2,2019,1,1,9,0,6,6,15,1,0,1,0,6.0530305,6.0530305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.810001,59.91,49.119999,57.279999,6,1,1,0,0,4,4,1,499,255182,0,0,3029.6018 -15766,19368,35239,-9,35241,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,0,2,7.6701641,8.1340399,0,3,0,0,0,-9,0,-990.51392,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,42,15,1,0,-9,1,6.2751093,6.2751093,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,41.209999,39.549999,-9,-9,3,1,1,0,0,7,4,0,575,2419.5557,0,0,1850.429 -15766,19369,35240,-9,35241,-9,2,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,8.1270571,8.2352467,0,3,0,0,0,-9,0,-948.78882,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,45,43,15,1,0,-9,1,7.7457085,7.7457085,0,0,0,0,0,0,0,2,1,1,0,0,0,2.5324512,3,50.959999,45.549999,-9,-9,5,1,1,0,0,7,4,0,1027,-25092.754,0,0,2493.8887 -15766,19370,35241,-9,-9,-9,3,1,0,72,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1088.2311,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,15.023578,0,0,0,1,1,0,0,0,0,0,50.169998,27.290001,-9,-9,3,1,1,0,0,7,1,0,728,-54486.102,0,0,1010.0637 -15767,19371,35242,-9,35244,-9,3,1,0,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1129.6583,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,1,0,1133.6666,-17439.271,0,0,1794.7551 -15767,19371,35243,-9,35244,-9,5,1,0,12,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-974.82861,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,1,0,1133.6666,-17439.271,0,0,1794.7551 -15767,19371,35244,-9,-9,-9,1,1,0,45,3,0,4,0,2,-9,3,3,0,1,1,0,0,0,4,0,0,0,-9,0,-992.08765,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.730171,3,31.610001,19.700001,-9,-9,3,1,1,1,0,2,1,0,1133.6666,-17439.271,0,0,1794.7551 -15768,19372,35245,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,1,1,0,0,5,9.1900854,9.2158213,0,3,0,0,0,-9,0,-953.32715,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,60,60,15,1,0,-9,0,19.402647,19.402647,0,0,0,0,0,0,0,0,1,1,0,2.7123933,0,0,0,62.389999,56.709999,-9,-9,1,1,1,0,0,2,5,0,690,935431.56,0,0,3547.5371 -15769,19373,35246,-9,-9,-9,1,1,1,77,2,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1009.4305,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.470001,38.450001,-9,-9,3,1,1,0,0,2,1,0,1479,68637.555,0,0,575.86401 -15770,19374,35247,35248,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,0,4,7.7512894,7.723033,0,1,0,-9,7,0,-4,-107.51184,0,0,1,37,2,3,1,2,2,2019,1,2,7,0,37,37,15,1,0,1,0,9.2263498,9.2263498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.259998,25.24,54.619999,6,1,1,0,0,1,5,0,613.5,16846.855,0,0,2786.1919 -15770,19374,35248,35247,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,0,3,8.2692766,8.1729755,0,1,0,-9,7,0,4,-42.755802,0,0,0,33,2,4,1,-9,-9,2019,1,1,10,1,46,46,15,1,0,1,0,12.871205,12.871205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.24,54.619999,46.5,58.259998,3,1,1,0,0,1,5,0,613.5,16846.855,0,0,2786.1919 -15771,19375,35249,-9,-9,-9,1,1,1,44,3,0,0,0,3,-9,1,1,0,0,3,4.07757,4.1778426,0,3,0,0,0,-9,0,-1042.2281,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.619999,-9,-9,6,1,1,0,0,1,2,0,365,-133167.28,0,0,1421.6439 -15772,19376,35250,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1108.7252,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,13,1,0,72,43168.707,0,0,1583.3145 -15773,19377,35251,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,4,0,7.3476524,7.4298892,3,0,0,0,-9,0,-969.14423,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.20591347,7.4512501,0,0,57.73,54.529999,-9,-9,6,1,1,0,0,9,3,1,785,517288.19,0,0,1860.7021 -15774,19378,35252,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-936.36469,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,-9,-9,4,1,1,0,0,6,1,0,178,197069.86,0,0,804.59082 -15775,19379,35253,-9,-9,-9,1,1,1,85,2,0,0,0,3,-9,4,3,0,0,3,0,6.0529385,5.73563,3,0,0,0,-9,0,-992.29352,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7232518,0,0,54.27,48.040001,-9,-9,5,1,1,0,0,11,2,1,681,316491.25,0,0,1871.4977 -15776,19380,35254,35255,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,0,4,9.0491171,9.3755226,8.4777727,1,0,-9,35,0,7,-80.674286,0,0,0,51,2,3,3,3,3,2019,2,2,10,1,50,0,15,1,0,3,0,18.758032,18.758032,0,0,0,0,0,0,0,76,1,1,0,8.4598227,8.87047,122.78564,3,57.16,56.150002,63.650002,49.16,6,2,3,0,0,6,5,1,658,1710153,0,0,7961.8984 -15776,19380,35255,35254,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,34,0,-7,63.207977,0,0,0,58,1,4,1,3,2,2019,3,1,9,1,0,32,15,3,0,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.78428,3,63.650002,49.16,57.16,56.150002,7,2,3,0,0,6,5,1,658,1710153,0,0,7961.8984 -15776,19381,35256,-9,35255,35254,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,3,8.4135036,8.0997276,0,3,0,0,0,-9,0,-1004.9241,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,37,15,1,0,-9,1,8.4422398,8.4422398,0,0,0,0,0,0,0,7,1,1,0,0,0,12.991408,3,51.02,43.98,-9,-9,6,2,3,0,0,6,4,1,2302,237849.97,0,0,1028.1755 -15776,19382,35257,-9,35255,35254,4,1,0,23,2,0,0,0,1,-9,7,2,0,0,4,7.4956846,7.4411302,0,3,0,0,0,-9,0,-1020.7126,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,8,20,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,118,1,1,0,0,0,118.54501,3,47.009998,58,-9,-9,6,2,3,0,0,6,3,1,441,-174325.36,0,0,2632.2004 -15777,19383,35258,35259,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,2,0,8.4277687,8.1987534,1,0,-9,27,0,12,19.151482,0,0,0,56,2,3,3,2,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,9.2552147,8.7105341,69.199669,3,49.880001,35.43,48,48,6,1,1,0,0,2,3,1,557.5,1300966,0,0,9955.0107 -15777,19383,35259,35258,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,27,0,-12,-23.497293,0,0,0,68,3,2,3,2,2,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,49.880001,35.43,5,1,1,0,0,2,3,1,557.5,1300966,0,0,9955.0107 -15778,19384,35260,-9,-9,-9,1,1,1,30,2,0,0,0,3,-9,2,1,0,0,3,7.6038914,7.705379,0,3,0,0,0,-9,0,-919.83429,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,30,15,1,0,-9,0,7.898571,7.898571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.860001,53.580002,-9,-9,5,3,4,0,0,13,3,0,2143,19586.629,0,0,26.309038 -15779,19385,35261,35262,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,0,5,7.9702768,8.0734682,0,1,0,-9,32,0,-1,18.874224,0,0,0,56,2,3,1,-9,-9,2019,1,2,6,0,47,37,15,1,0,1,0,8.8290081,8.8290081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.900002,51.84,6,1,1,0,0,12,4,1,313,24611.135,0,0,3273.5081 -15779,19385,35262,35261,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,0,3,8.1595917,8.2066269,0,1,0,-9,32,0,1,.36827442,0,0,0,55,3,5,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,8.6251259,8.6251259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.900002,51.84,57.060001,57.759998,5,1,1,0,0,12,4,1,313,24611.135,0,0,3273.5081 -15780,19386,35263,35264,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,4,8.5642996,8.5782299,0,1,0,-9,30,0,0,-8.4278927,0,0,0,50,2,3,1,2,2,2019,1,1,23,10,37,37,15,1,1,1,0,19.388918,19.388918,0,0,0,0,0,0,0,0,0,0,0,.98602051,0,0,0,29.309999,60.950001,44.540001,39,3,1,1,0,1,2,5,1,468.5,504867.94,0,0,3054.749 -15780,19386,35264,35263,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,3,7.7538657,7.8402863,0,1,0,-9,31,0,0,-10.827985,0,0,0,50,2,4,1,2,1,2019,1,2,12,0,40,40,15,1,0,1,0,7.4722052,7.4722052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.540001,39,29.309999,60.950001,5,1,1,0,0,2,5,1,468.5,504867.94,0,0,3054.749 -15781,19387,35265,35266,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,6.5632143,6.5832992,1,0,-9,9,0,0,-77.763695,0,0,0,65,2,4,1,3,3,2019,3,1,17,5,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7179127,6.4534883,0,0,45.360001,43.689999,57.16,56.150002,6,1,1,0,0,9,4,1,411.5,1657784.3,0,0,4730.1924 -15781,19387,35266,35265,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,0,4,7.4640284,8.4565325,7.8548503,1,0,-9,9,0,0,8.0201721,0,0,0,65,3,3,3,-9,2,2019,2,2,6,0,32,23,15,1,0,4,0,6.3920527,6.3920527,0,0,0,0,0,0,0,0,1,1,0,7.1048379,8.4571419,0,0,57.16,56.150002,45.360001,43.689999,2,1,1,0,0,9,4,1,411.5,1657784.3,0,0,4730.1924 -15782,19388,35267,35270,-9,-9,1,1,0,33,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,4,0,3,42.067333,0,0,1,30,2,3,1,2,2,2019,3,3,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.040001,57.990002,55.130001,34.07,6,1,1,0,0,2,3,0,826.25,2664.334,0,0,1751.079 -15782,19388,35268,-9,35267,35270,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1041.2839,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,826.25,2664.334,0,0,1751.079 -15782,19388,35269,-9,35267,35270,2,1,1,13,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1075.0181,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,2,3,0,826.25,2664.334,0,0,1751.079 -15782,19388,35270,35267,-9,-9,3,1,1,30,1,1,2,0,2,-9,2,1,0,0,3,7.9389343,8.1534386,0,2,0,-9,4,0,-3,-74.332092,0,0,0,33,2,4,3,-9,-9,2019,2,1,8,0,37,37,15,1,0,3,0,9.9748974,9.9748974,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.130001,34.07,47.040001,57.990002,6,1,1,0,0,2,3,0,826.25,2664.334,0,0,1751.079 -15783,19389,35271,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,2,1,0,0,4,7.173852,7.8669019,7.3134203,3,0,0,0,-9,0,-1054.7052,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,18,24,15,1,0,-9,0,7.0962467,7.0962467,0,0,0,0,0,0,0,0,1,1,0,6.750844,6.9335923,0,0,55.790001,52.619999,-9,-9,7,1,1,0,0,13,3,1,421,485382.13,0,0,3378.6201 -15784,19390,35272,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-954.82629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,5.2007041,3,51,46,-9,-9,6,1,1,0,0,5,1,1,443,63325.676,0,0,-145.28674 -15785,19391,35273,35274,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,2,7.3650656,7.7021365,0,1,0,-9,8,0,-4,87.73053,0,0,0,53,2,1,1,2,3,2019,1,1,8,1,24,23,15,1,0,1,0,9.0844326,9.0844326,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,49.610001,25.08,46.16,35.959999,3,1,1,0,1,10,4,1,2069.5,580271.38,0,0,2998.4102 -15785,19391,35274,35273,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,1,8.1768646,8.1195059,0,1,0,-9,8,0,4,-43.378582,0,0,0,49,2,2,1,2,2,2019,1,2,16,5,37,37,15,1,1,1,0,13.324781,13.324781,0,0,0,0,0,0,0,7,0,0,0,0,0,11.319615,3,46.16,35.959999,49.610001,25.08,6,1,1,0,0,10,4,1,2069.5,580271.38,0,0,2998.4102 -15786,19392,35275,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,8.582696,8.5759077,0,3,0,-9,0,0,0,-1043.8898,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,10,48,53,15,1,1,-9,0,11.453233,11.453233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.150002,61.099998,-9,-9,3,1,1,0,0,2,5,0,537,-118620.61,0,0,1228.3618 -15787,19393,35276,35277,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,0,3,7.9389801,7.9695153,0,1,0,-9,4,0,6,-38.642437,0,0,0,58,3,1,3,-9,-9,2019,2,1,11,0,48,48,15,1,0,3,0,8.4151611,8.4151611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,36.700001,31,4,1,1,0,0,4,3,0,737.5,669568,0,0,2168.502 -15787,19393,35277,35276,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,4,0,-6,-9.1168118,0,0,0,64,3,3,1,3,3,2019,3,2,19,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.700001,31,57.330002,53.459999,2,1,1,0,0,4,3,0,737.5,669568,0,0,2168.502 -15788,19394,35278,-9,35279,-9,3,1,1,17,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1038.8923,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,8,1,1,548.5,119816.83,0,0,0 -15788,19394,35279,-9,-9,-9,1,1,0,48,2,0,2,0,1,-9,97,3,0,0,4,0,0,0,4,0,0,0,-9,0,-940.27258,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,35,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,-9,-9,6,1,1,0,0,8,1,1,548.5,119816.83,0,0,0 -15788,19395,35280,-9,35279,-9,2,1,1,18,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1055.6697,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,-9,-9,7,1,1,0,0,8,1,1,1447,-66735,0,0,0 -15789,19396,35281,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,0,3,5.2341986,8.0044079,7.5373316,3,0,0,0,-9,0,-938.08386,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7593036,7.6553235,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,7,4,1,445,703378.38,0,0,2160.2122 -15790,19397,35282,35283,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,0,4,8.4753542,8.4788036,0,2,0,-9,2,0,4,21.344986,0,0,1,26,1,3,1,-9,-9,2019,1,1,10,1,16,30,15,1,0,1,0,30.962002,30.962002,0,0,0,0,0,0,0,0,1,1,0,4.8240509,0,0,0,44.130001,58.099998,32.029999,59.32,6,2,3,0,0,9,5,0,892,96498.75,0,0,4593.6157 -15790,19397,35283,35282,-9,-9,1,1,1,26,1,0,1,0,1,-9,2,1,0,0,3,8.4509048,8.1813421,0,2,0,-9,2,0,-4,2.5095646,0,1,0,30,2,4,1,1,2,2019,1,2,18,8,45,46,15,1,1,1,0,10.546515,10.546515,0,0,0,0,0,0,0,0,1,1,0,1.2639683,0,0,0,32.029999,59.32,44.130001,58.099998,5,1,1,0,0,9,5,0,892,96498.75,0,0,4593.6157 -15790,19397,35284,-9,35282,-9,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-932.42474,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,9,5,0,892,96498.75,0,0,4593.6157 -15791,19398,35285,35286,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,0,3,8.5401011,8.8122454,0,2,0,-9,2,0,-4,-28.354815,-9,0,0,55,2,3,1,-9,-9,2019,1,1,7,0,46,0,15,1,0,1,0,14.21597,14.21597,0,0,0,0,0,0,0,0,1,1,0,3.5010819,0,0,0,50.630001,50.990002,32.93,43.790001,5,1,1,0,0,4,4,1,1134.6666,1411199.5,0,0,3802.6052 -15791,19398,35286,35285,-9,-9,1,1,0,55,1,0,1,0,2,-9,2,1,0,0,3,8.0842752,8.2832365,0,2,0,-9,20,0,4,-82.738991,-9,0,0,51,2,3,1,-9,-9,2019,1,2,19,7,25,0,15,1,1,1,0,13.718948,13.718948,0,0,0,0,0,0,0,0,1,1,0,2.7185485,0,0,0,32.93,43.790001,50.630001,50.990002,5,1,1,0,0,4,4,1,1134.6666,1411199.5,0,0,3802.6052 -15791,19398,35287,-9,35286,35285,3,1,0,17,2,0,1,1,2,0,7,2,0,0,3,5.0327392,4.9414535,0,2,0,0,0,-9,0,-889.74298,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,4,4,1,1134.6666,1411199.5,0,0,3802.6052 -15792,19399,35288,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,2,8.7681332,8.5278606,0,3,0,0,0,-9,0,-934.87262,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,2,80,80,15,1,0,-9,0,7.3404822,7.3404822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.509998,43.07,-9,-9,3,1,1,0,0,12,5,0,200,729644.56,0,0,2078.3213 -15792,19400,35289,-9,-9,35288,2,1,0,21,3,0,0,1,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1020.8582,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,15,4,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.719999,63.77,-9,-9,3,1,1,0,0,12,1,0,5894,17903.176,0,0,109.3839 -15793,19401,35290,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,4,9.4695339,9.3538389,0,3,0,0,0,-9,0,-1160.9398,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,79,45,15,1,0,-9,0,19.645252,19.645252,0,0,0,0,0,0,0,0,0,0,0,5.0312657,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,5,1,250,538971.25,0,0,3477.3569 -15794,19402,35291,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,0,4,7.4364152,7.4050331,5.1293187,3,0,0,0,-9,0,-977.01331,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,30,24,15,1,0,-9,0,7.8175201,7.8175201,0,0,0,0,0,0,0,27.5,0,0,0,3.2701738,5.0689955,36.019302,3,56.57,57.779999,-9,-9,6,1,1,0,0,13,3,1,274,133880.86,0,0,103.23753 -15795,19403,35292,-9,35293,35294,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1025.6992,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,4,1,658.33331,174946.28,0,0,2649.9219 -15795,19403,35293,35294,-9,-9,1,1,0,48,1,1,1,0,2,-9,2,1,0,0,4,8.0173683,8.2155809,0,2,0,-9,4,0,14,-136.81494,0,0,0,34,2,4,1,2,3,2019,1,2,9,0,25,28,15,1,0,1,0,10.940903,10.940903,0,0,0,0,0,0,0,7,1,1,0,4.2686043,0,2.4607155,3,51.950001,53.02,49.41,58.279999,6,1,1,0,0,5,4,1,658.33331,174946.28,0,0,2649.9219 -15795,19403,35294,35293,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,0,4,8.3289509,8.334075,0,2,0,-9,4,0,-14,18.930771,0,0,0,48,2,4,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,14.274544,14.274544,0,0,0,0,0,0,0,0,1,1,0,1.9052696,0,0,0,49.41,58.279999,51.950001,53.02,6,1,1,0,0,5,4,1,658.33331,174946.28,0,0,2649.9219 -15796,19404,35295,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,0,4,8.0042658,8.2012062,0,3,0,0,0,-9,0,-1021.3773,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,32,26,15,1,0,-9,0,11.022182,11.022182,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.388163,3,60.119999,54.799999,-9,-9,7,1,1,0,0,9,4,1,1076,284426.69,0,0,2017.9788 -15797,19405,35296,35298,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,0,3,8.908145,8.598855,0,2,0,-9,26,0,-7,57.538898,0,0,0,54,1,3,1,2,2,2019,1,2,17,7,43,31,15,1,1,1,0,18.736479,18.736479,0,0,0,0,0,0,0,0,0,0,0,1.9949706,0,0,0,42.099998,55.099998,45.98,38.34,6,1,1,0,0,10,5,1,450.33334,-67176.516,0,0,4965.6807 -15797,19405,35297,-9,35296,35298,5,1,1,16,2,0,3,1,3,-9,7,2,0,0,4,5.2909827,5.2905955,0,2,0,0,0,-9,0,-1048.9457,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,10,5,1,450.33334,-67176.516,0,0,4965.6807 -15797,19405,35298,35296,-9,-9,2,1,1,54,1,0,3,0,1,-9,2,1,0,0,3,9.173502,8.7356691,0,2,0,-9,6,0,7,39.550983,0,0,0,47,1,3,1,-9,-9,2019,1,1,14,3,47,50,15,1,0,1,0,17.732952,17.732952,0,0,0,0,0,0,0,0,0,0,0,7.0251837,0,0,0,45.98,38.34,42.099998,55.099998,5,1,1,0,0,10,5,1,450.33334,-67176.516,0,0,4965.6807 -15797,19406,35299,-9,35296,35298,3,1,0,19,2,0,3,1,2,0,7,2,0,0,3,6.8828249,6.7514315,0,3,0,0,0,-9,0,-1011.8306,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,23,6,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2069103,0,0,0,34.220001,59.959999,-9,-9,6,1,1,0,0,10,2,1,221,0,0,0,-242.56949 -15797,19407,35300,-9,35296,35298,4,1,1,18,2,0,3,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-961.77264,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0497713,0,0,0,48,59,-9,-9,5,1,1,0,0,10,5,1,468,0,0,0,686.13293 -15798,19408,35301,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,0,3,8.6804428,9.0175772,7.263742,3,0,0,0,-9,0,-1071.2573,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,49,50,15,1,0,-9,0,12.890187,12.890187,0,0,0,0,0,0,0,7,1,1,0,7.9213943,0,4.2260776,3,58.32,50.220001,-9,-9,6,1,1,0,0,5,5,1,1666,633148.44,0,0,2836.3867 -15799,19409,35302,35303,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,0,3,8.672719,8.6098881,0,1,0,-9,10,0,0,-91.896141,0,0,0,61,3,4,1,-9,-9,2019,1,1,10,1,38,40,15,1,0,1,0,19.259918,19.259918,0,0,0,0,0,0,0,0,0,0,0,2.3663752,0,0,0,50,49,61.830002,44.419998,5,1,1,0,0,10,5,1,447,377134.25,0,0,4292.2798 -15799,19409,35303,35302,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,0,4,7.8671594,8.393115,7.2945247,1,0,-9,41,0,0,36.615711,0,0,0,61,3,3,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,9.4900141,9.4900141,0,0,0,0,0,0,0,0,0,0,0,1.3105375,7.662344,0,0,61.830002,44.419998,50,49,7,1,1,0,0,10,5,1,447,377134.25,0,0,4292.2798 -15800,19410,35304,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,4,8.7110348,8.9563303,0,3,0,0,0,-9,0,-873.08923,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,44,53,15,1,0,-9,0,14.474135,14.474135,0,0,0,0,0,0,0,0,0,0,0,4.1146364,0,0,0,55.189999,54.259998,-9,-9,4,1,1,0,0,10,5,1,797,216334.8,0,0,1661.3809 -15801,19411,35305,35306,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,0,7.425746,7.2740026,1,0,-9,6,0,2,-21.195059,0,0,0,63,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.8373094,7.3766236,2.0341609,3,54.200001,57.490002,57.060001,57.759998,6,1,1,0,0,9,2,1,438.5,490690.06,0,0,2762.1138 -15801,19411,35306,35305,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,4.9589992,4.7894397,1,0,-9,6,0,-2,-11.801268,0,0,0,65,2,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.0109005,10.737411,3,57.060001,57.759998,54.200001,57.490002,6,1,1,0,0,9,2,1,438.5,490690.06,0,0,2762.1138 -15802,19412,35307,35308,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,8.2368116,8.1972647,0,1,0,-9,37,0,-1,-34.82803,0,0,0,57,3,4,1,3,2,2019,1,1,8,0,32,37,15,1,0,1,0,16.392004,16.392004,0,0,0,0,0,0,0,0,0,0,0,7.0551734,0,0,0,57.16,56.150002,55.869999,53.990002,5,1,1,0,0,7,4,1,628.5,836503.88,0,0,2899.6719 -15802,19412,35308,35307,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,0,4,7.0395198,7.2759428,0,1,0,-9,37,0,1,78.981415,0,0,0,56,2,4,1,3,3,2019,1,2,10,0,45,50,15,1,0,1,0,3.8153441,3.8153441,0,0,0,0,0,0,0,0,0,0,0,5.551219,0,0,0,55.869999,53.990002,57.16,56.150002,5,1,1,0,0,7,4,1,628.5,836503.88,0,0,2899.6719 -15803,19413,35309,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,0,2,7.7599878,8.1871929,0,3,0,0,0,-9,0,-1060.4554,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,40,0,15,1,1,-9,0,7.1976256,7.1976256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.259998,35.900002,-9,-9,5,1,1,0,0,5,3,0,1195,91620.094,0,0,1761.1512 -15804,19414,35310,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,-9,0,1,0,-1087.5952,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6763676,0,0,0,45.27,40.07,-9,-9,4,1,1,0,0,4,1,0,1085,425736.25,0,0,1458.7983 -15805,19415,35311,35312,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,5.1892171,5.1741776,1,0,-9,31,0,18,133.74759,0,0,0,62,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3268142,5.3397341,0,0,56.669998,42.779999,51.080002,52.099998,6,1,1,0,0,9,2,1,1519.5,578024.69,0,0,1310.1174 -15805,19415,35312,35311,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,31,0,-18,-31.345602,0,0,0,80,2,3,3,2,2,2019,4,1,19,7,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.75499,3,51.080002,52.099998,56.669998,42.779999,3,1,1,0,0,9,2,1,1519.5,578024.69,0,0,1310.1174 -15806,19416,35313,-9,-9,-9,1,1,0,20,2,0,0,1,2,0,7,2,0,0,4,6.2600579,6.1534729,0,3,0,0,0,-9,0,-968.25018,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,10,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,-9,-9,7,1,1,0,0,9,2,0,314,-138395.73,0,0,74.962837 -15807,19417,35314,-9,35315,35316,3,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1023.8857,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,3,1,917.33331,-60460.434,0,0,1935.0093 -15807,19417,35315,35316,-9,-9,2,1,0,20,1,1,1,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,1,-9,-5,2.4388087,-9,1,1,25,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,50.099998,49.639999,6,1,1,0,0,4,3,1,917.33331,-60460.434,0,0,1935.0093 -15807,19417,35316,35315,-9,-9,1,1,1,25,1,1,1,0,1,-9,2,1,0,0,4,8.1520653,8.4949837,0,2,0,1,1,-9,5,57.160095,0,1,0,20,3,3,3,3,2,2019,2,2,12,1,38,37,15,1,0,3,0,10.587552,10.587552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.099998,49.639999,54.959999,53.169998,6,1,1,0,0,4,3,1,917.33331,-60460.434,0,0,1935.0093 -15808,19418,35317,-9,-9,-9,1,1,0,43,3,0,0,0,1,-9,2,1,0,0,2,8.5318327,8.539115,0,3,0,0,0,-9,0,-1009.2103,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,38,45,15,1,1,-9,0,20.992378,20.992378,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.9872627,3,20.309999,55.959999,-9,-9,2,1,1,0,0,11,5,0,590,554059.44,0,0,1233.7504 -15808,19419,35318,-9,35317,-9,3,1,1,24,2,0,0,0,3,-9,2,1,0,0,5,7.874568,7.705864,0,3,0,-9,0,-9,0,-1015.6357,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,38,0,15,1,0,-9,1,8.8112326,8.8112326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,58.290001,-9,-9,7,1,1,0,0,11,3,0,1349,12419.702,0,0,1356.9025 -15808,19420,35319,-9,35317,-9,2,1,1,20,2,0,0,0,2,-9,11,3,0,0,4,7.3812432,7.3819399,0,3,0,0,0,-9,0,-1116.5038,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,44,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.369999,-9,-9,6,1,1,0,0,11,3,0,191,-117253.66,0,0,490.4577 -15809,19421,35320,35321,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,0,3,7.5817585,7.8276644,0,1,0,-9,7,0,-5,-12.32198,0,0,0,50,3,3,1,-9,2,2019,1,2,0,0,40,50,15,1,0,1,0,7.2130685,7.2130685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.200001,45.349998,61.279999,46.169998,6,1,1,0,0,5,4,0,322,136245.53,0,0,3019.5342 -15809,19421,35321,35320,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,0,3,8.2055779,8.6187506,0,1,0,-9,7,0,5,109.42068,0,0,0,45,2,3,1,3,3,2019,1,1,8,0,37,37,15,1,0,1,0,10.560552,10.560552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.279999,46.169998,60.200001,45.349998,6,1,1,0,0,5,4,0,322,136245.53,0,0,3019.5342 -15810,19422,35322,35323,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,51,0,-7,0,0,0,0,81,3,1,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,4.8669591,1,57.34,50.599998,42,23,7,1,1,0,0,5,1,1,3580.5,56130,0,0,30.332001 -15810,19422,35323,35322,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,0,1,0,0,0,1,0,-9,51,0,7,0,0,0,0,74,3,4,3,-9,3,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,1,0,35.069557,0,0,0,0,0,1,1,0,0,0,0,0,42,23,57.34,50.599998,6,1,1,0,0,5,1,1,3580.5,56130,0,0,30.332001 -15811,19423,35324,-9,-9,-9,1,1,0,75,2,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-975.04218,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.869999,35.490002,-9,-9,3,1,1,0,0,12,1,0,2459,114719.48,0,0,2421.6528 -15812,19424,35325,-9,-9,-9,1,1,0,39,3,0,4,0,1,-9,2,1,0,0,5,8.3823614,8.6696653,0,4,0,0,0,-9,0,-900.95074,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,16,15,1,0,-9,0,13.384277,13.384277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.720001,55.580002,-9,-9,7,3,4,0,0,8,3,0,1524,-92224.328,0,0,2035.379 -15813,19425,35326,35327,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,3,7.6810255,7.9851394,0,1,0,-9,48,0,-2,39.083225,0,0,0,64,2,2,1,-9,-9,2019,1,1,12,0,27,25,15,1,0,1,0,10.799408,10.799408,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.959999,52.66,64.970001,24.32,6,1,1,0,0,5,4,1,1079,665446.25,0,0,2258.3281 -15813,19425,35327,35326,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,1,2,7.6036434,7.6026545,0,1,0,-9,48,0,2,-11.285172,0,0,0,62,2,3,1,2,-9,2019,1,2,9,1,24,24,15,1,0,1,0,9.1434498,9.1434498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.970001,24.32,47.959999,52.66,6,1,1,0,0,5,4,1,1079,665446.25,0,0,2258.3281 -15814,19426,35328,35329,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,0,1,6.0254617,6.0416861,0,1,0,-9,28,0,4,31.474655,0,0,0,45,3,3,3,3,3,2019,2,1,12,2,63,50,15,1,0,3,0,.92237723,.92237723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.130001,51.279999,46,51,4,1,1,0,1,6,2,1,852.5,-37392.555,0,0,1028.3157 -15814,19426,35329,35328,-9,-9,1,1,0,45,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,28,0,-4,-5.2534323,0,0,0,49,3,1,1,3,2,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,45.130001,51.279999,5,2,3,0,1,6,2,1,852.5,-37392.555,0,0,1028.3157 -15814,19427,35330,35331,35329,35328,3,1,1,26,1,0,0,0,1,-9,2,1,0,0,4,8.4262962,8.0198441,0,1,0,1,1,-9,2,65.310051,-9,1,0,24,1,5,3,2,3,2019,2,5,11,2,48,0,15,1,0,3,0,11.819902,11.819902,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,53.75,59.470001,5,2,3,0,0,6,4,1,2713.5,-8964.2168,0,0,1959.248 -15814,19427,35331,35330,-9,-9,5,1,0,24,1,0,0,0,1,-9,6,3,0,0,5,0,0,0,1,0,-9,1,-9,-2,-89.687881,-9,1,1,26,1,4,1,-9,-9,2019,3,3,4,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.75,59.470001,48,59,6,2,3,0,0,6,4,1,2713.5,-8964.2168,0,0,1959.248 -15814,19428,35332,-9,35329,35328,4,1,1,24,2,0,0,0,1,-9,2,1,0,0,4,7.7502599,7.9486623,0,3,0,0,0,-9,0,-1019.7214,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,34,0,15,1,0,-9,1,7.6463256,7.6463256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,58.880001,-9,-9,4,2,3,0,0,6,3,1,93,13458.541,0,0,1639.6495 -15815,19429,35333,35334,-9,-9,1,1,0,47,1,0,2,0,2,-9,1,1,0,0,4,6.2546916,6.2588835,0,2,0,-9,21,0,-4,5.6374183,0,0,0,51,1,5,1,2,1,2019,1,2,10,0,2,0,15,1,0,1,0,30.320629,30.320629,0,0,0,0,0,0,0,0,0,0,0,7.4725642,0,0,0,56.330002,51.02,49.360001,58.529999,6,2,3,0,0,9,5,1,248,4907335,0,0,7025.9653 -15815,19429,35334,35333,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,5,9.6886778,9.6687136,0,2,0,-9,21,0,4,-67.027863,0,0,0,47,2,4,1,2,2,2019,1,1,8,0,38,0,15,1,0,1,0,54.436821,54.436821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.360001,58.529999,56.330002,51.02,6,2,3,0,0,9,5,1,248,4907335,0,0,7025.9653 -15815,19429,35335,-9,35333,35334,3,1,0,16,2,0,2,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-946.62305,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61.599998,-9,-9,7,2,3,0,0,9,5,1,248,4907335,0,0,7025.9653 -15816,19430,35336,35337,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,0,5,0,7.2897558,7.2062316,1,0,-9,7,0,2,104.29618,0,0,0,75,2,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0135951,7.3812661,0,0,58.049999,54.52,50.91,54.790001,6,1,1,0,0,8,2,1,2466,624001.38,0,0,1921.394 -15816,19430,35337,35336,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,7,0,-2,43.037205,0,0,0,77,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4349728,0,0,0,50.91,54.790001,58.049999,54.52,6,1,1,0,0,8,2,1,2466,624001.38,0,0,1921.394 -15817,19431,35338,35339,-9,-9,1,1,1,60,1,0,1,0,2,-9,2,1,0,0,3,8.0415392,8.2492819,0,2,0,-9,10,0,10,-74.351242,0,0,0,50,2,2,1,2,2,2019,1,2,3,0,36,37,15,1,0,1,0,9.8101511,9.8101511,0,0,0,0,0,0,0,0,1,1,0,2.1985178,0,0,0,50.709999,52.349998,50.950001,48.580002,6,1,1,0,0,10,3,1,657.66669,920818.31,0,0,2162.2173 -15817,19431,35339,35338,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,0,2,6.7628641,7.1615825,6.5236707,2,0,-9,10,0,-10,111.73809,0,0,0,60,2,3,1,1,1,2019,1,1,10,0,31,13,15,1,0,1,0,3.1879685,3.1879685,0,0,0,0,0,0,0,0,1,1,0,6.4631495,0,0,0,50.950001,48.580002,50.709999,52.349998,3,1,1,0,0,10,3,1,657.66669,920818.31,0,0,2162.2173 -15817,19431,35340,-9,35339,35338,3,1,1,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-989.02338,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,10,3,1,657.66669,920818.31,0,0,2162.2173 -15817,19432,35341,-9,35339,35338,4,1,0,20,2,0,1,0,1,-9,2,1,0,0,3,7.764833,7.618063,0,3,0,0,0,-9,0,-1023.5672,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,31,25,15,1,0,-9,1,7.5641637,7.5641637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.73,50.299999,-9,-9,4,1,1,0,0,10,3,1,491,-116192.93,0,0,992.84814 -15818,19433,35342,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,0,4,0,7.8324666,7.997211,3,0,0,0,-9,0,-1032.6552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.334702,8.0074921,0,0,53.48,49.509998,-9,-9,6,1,1,0,0,11,4,1,253,500357.75,0,0,2227.8054 -15819,19434,35343,35344,-9,-9,1,1,1,41,1,0,3,0,1,-9,2,1,0,0,4,9.3151722,9.5403385,0,2,0,-9,17,0,4,173.00937,0,0,0,37,2,2,1,-9,-9,2019,1,2,8,0,125,68,15,1,0,1,0,12.723684,12.723684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.720001,51.290001,40.02,48.029999,6,2,3,0,0,4,5,1,740.79999,561069.63,0,0,4149.7383 -15819,19434,35344,35343,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,0,2,7.03936,7.1095953,0,2,0,-9,17,0,-4,-55.248047,0,0,1,41,1,4,1,-9,-9,2019,1,1,12,0,16,32,15,1,0,1,0,8.5367107,8.5367107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.02,48.029999,58.720001,51.290001,5,2,3,0,0,4,5,1,740.79999,561069.63,0,0,4149.7383 -15819,19434,35345,-9,35344,35343,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-936.92358,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,4,5,1,740.79999,561069.63,0,0,4149.7383 -15819,19434,35346,-9,35344,35343,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-912.17279,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,4,5,1,740.79999,561069.63,0,0,4149.7383 -15819,19434,35347,-9,35344,35343,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.8318,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,4,5,1,740.79999,561069.63,0,0,4149.7383 -15820,19435,35348,35349,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.8442249,7.9124618,1,0,-9,23,0,-1,-16.888309,0,0,0,73,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1763191,0,0,49.869999,48.549999,51,46,6,1,1,0,0,10,3,1,603,494718.19,0,0,2078.2571 -15820,19435,35349,35348,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,23,0,1,15.859093,-9,0,0,72,2,3,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7303028,0,0,0,51,46,49.869999,48.549999,5,1,1,0,0,10,3,1,603,494718.19,0,0,2078.2571 -15821,19436,35350,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,3,7.3111091,7.4030552,0,3,0,0,0,-9,0,-1029.2899,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,45,60,15,1,0,-9,0,3.8253524,3.8253524,0,0,0,0,0,0,0,7,1,1,0,0,0,9.3111162,3,50.23,47.060001,-9,-9,6,1,1,0,0,1,3,1,2092,15810.703,0,0,-66.050499 -15822,19437,35351,35352,-9,-9,1,1,0,29,1,0,0,0,1,-9,5,1,0,0,5,8.8196726,9.1368437,0,1,0,-9,5,0,-1,71.498222,0,1,1,30,1,5,1,1,1,2019,1,2,9,0,50,45,15,1,0,1,0,16.088961,16.088961,0,0,0,0,0,0,0,0,0,0,0,3.7709517,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,10,5,1,1719.5,280643.59,0,0,3989.1519 -15822,19437,35352,35351,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,5,8.1247635,8.3943739,0,1,0,-9,5,0,1,96.327438,0,0,0,29,1,5,1,-9,-9,2019,1,1,12,0,40,45,15,1,0,1,0,10.192007,10.192007,0,0,0,0,0,0,0,0,0,0,0,4.2063122,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,10,5,1,1719.5,280643.59,0,0,3989.1519 -15823,19438,35353,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,3,9.5408316,9.1657991,0,3,0,0,0,-9,0,-966.99628,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,55,50,15,1,0,-9,0,26.732386,26.732386,0,0,0,0,0,0,0,0,0,0,0,3.2653196,0,0,0,43.029999,53.23,-9,-9,5,3,4,0,0,8,5,0,963,214421.77,0,0,3791.4456 -15824,19439,35354,35356,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,0,4,8.7611256,8.8355618,5.2077522,2,0,-9,3,0,11,141.38889,0,0,0,40,1,4,1,-9,-9,2019,1,1,8,0,41,45,15,1,0,1,0,18.705057,18.705057,0,0,0,0,0,0,0,0,1,1,0,5.5732036,0,0,0,56.009998,51.369999,57.73,54.529999,6,1,1,0,0,12,4,1,993.33331,162892.38,0,0,1854.4805 -15824,19439,35355,-9,35356,35354,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1086.2947,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,4,1,993.33331,162892.38,0,0,1854.4805 -15824,19439,35356,35354,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,0,4,0,0,0,2,0,-9,14,0,-11,-102.16229,0,0,1,51,1,4,1,-9,-9,2019,1,2,7,0,0,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.529999,56.009998,51.369999,6,1,1,0,0,12,4,1,993.33331,162892.38,0,0,1854.4805 -15825,19440,35357,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,0,2,0,6.3971334,6.5561867,3,0,0,0,-9,0,-1094.5729,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6076031,0,0,37.790001,31.68,-9,-9,6,3,4,0,0,4,2,1,431,477994.63,0,0,1435.5363 -15826,19441,35358,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,0,5,8.7310677,8.6909666,0,3,0,0,0,-9,0,-903.01508,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,97,80,15,1,0,-9,0,8.1092119,8.1092119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,10,5,0,1184,-7140.1089,0,0,2287.1006 -15827,19442,35359,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1001.0933,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.0390286,0,0,0,0,1,1,0,4.0474591,0,0,0,62.07,32.779999,-9,-9,6,1,1,0,0,1,1,1,296,-126872.87,0,0,1183.0643 -15828,19443,35360,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-994.85577,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.139999,42.689999,-9,-9,6,1,1,0,0,13,1,0,401,-24187.426,0,0,1319.5831 -15829,19444,35361,-9,-9,-9,1,1,0,51,3,0,3,0,2,-9,6,3,0,1,3,0,8.7477484,8.7414064,4,0,0,0,-9,0,-1070.9084,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,25,10,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,8.8019753,0,116.1254,3,30.25,56.52,-9,-9,6,1,1,0,0,10,3,1,419.33334,1001337.4,0,0,3069.5239 -15829,19444,35362,-9,35361,-9,3,1,0,16,2,0,3,1,2,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1052.5088,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.880001,61.849998,-9,-9,5,1,1,0,0,10,3,1,419.33334,1001337.4,0,0,3069.5239 -15829,19444,35363,-9,35361,-9,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1069.1691,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,10,3,1,419.33334,1001337.4,0,0,3069.5239 -15829,19445,35364,-9,35361,-9,2,1,1,18,2,0,3,1,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-905.56641,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,28,10,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.09,47.150002,-9,-9,6,1,1,0,0,10,3,1,284,194867.17,0,0,0 -15830,19446,35365,35366,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-2,25.61355,0,0,0,66,1,3,1,2,1,2019,3,1,13,1,0,34,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8019285,0,0,0,53.380001,52.509998,48.450001,57.490002,3,1,1,0,1,9,2,1,768,969153.63,0,0,3219.4136 -15830,19446,35366,35365,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,0,3,0,7.1436009,7.619379,1,0,-9,45,0,2,56.126732,0,0,0,64,2,3,3,2,2,2019,2,2,13,2,15,33,15,1,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.185482,7.364377,0,0,48.450001,57.490002,53.380001,52.509998,5,1,1,0,1,9,2,1,768,969153.63,0,0,3219.4136 -15831,19447,35367,-9,35368,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-854.29913,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,2,0,230.5,-66200.297,0,0,1630.8188 -15831,19447,35368,-9,-9,-9,1,1,0,27,3,0,1,0,2,-9,2,1,0,0,3,6.1706748,6.3020658,0,4,0,0,0,-9,0,-921.59412,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,16,16,15,1,0,-9,0,3.2543123,3.2543123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,55.66,-9,-9,6,1,1,0,0,4,2,0,230.5,-66200.297,0,0,1630.8188 -15832,19448,35369,35370,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,8.8262777,8.8492689,0,2,0,-9,10,0,3,24.803183,0,0,0,40,1,5,1,2,2,2019,1,2,7,0,57,52,15,1,0,1,0,14.441682,14.441682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,40.48,62.560001,6,1,1,0,1,2,5,1,979,786861.63,0,0,4428.6382 -15832,19448,35370,35369,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,0,5,8.5133486,8.3795586,0,2,0,-9,10,0,-3,51.919804,0,0,1,43,1,4,1,2,3,2019,1,1,13,1,51,25,15,1,0,1,0,13.833228,13.833228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,62.560001,57.16,56.150002,4,1,1,0,1,2,5,1,979,786861.63,0,0,4428.6382 -15832,19448,35371,-9,35370,35369,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1162.5493,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,979,786861.63,0,0,4428.6382 -15833,19449,35372,-9,35374,35373,5,1,1,10,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-989.66901,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,8,5,1,893.33331,2495772.5,0,0,10083.488 -15833,19449,35373,35374,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,0,3,9.5467463,9.7037134,0,2,0,-9,28,0,3,-29.729828,0,0,0,49,1,3,1,2,2,2019,1,1,17,5,50,55,15,1,1,1,0,38.743477,38.743477,0,0,0,0,0,0,0,0,0,0,0,.33775499,0,0,0,53.860001,44.130001,53.540001,41.650002,5,1,1,0,0,8,5,1,893.33331,2495772.5,0,0,10083.488 -15833,19449,35374,35373,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,0,3,8.7296648,8.7683487,0,2,0,-9,28,0,-3,108.81,0,0,0,52,1,3,1,2,1,2019,1,2,9,0,28,28,15,1,0,1,0,27.551052,27.551052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.540001,41.650002,53.860001,44.130001,5,1,1,0,0,8,5,1,893.33331,2495772.5,0,0,10083.488 -15833,19450,35375,-9,35374,35373,3,1,1,21,2,0,1,1,2,0,7,2,0,0,2,6.8787737,6.9443221,0,3,0,0,0,-9,0,-1003.5317,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,5,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,44.349998,-9,-9,5,1,1,0,0,8,2,1,2713,102784.95,0,0,684.8288 -15833,19451,35376,-9,35374,35373,4,1,0,19,2,0,1,1,2,0,7,2,0,0,5,7.8025994,7.9437203,0,3,0,0,0,-9,0,-1057.5182,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.799999,-9,-9,6,1,1,0,0,8,3,1,1309,28938.756,0,0,473.20331 -15834,19452,35377,-9,-9,-9,2,1,0,62,3,0,0,0,2,-9,97,3,0,0,4,0,0,0,3,0,-9,0,1,0,-923.42395,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,28,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,8.5167656,0,62.316967,0,25.58,65.870003,-9,-9,1,1,1,0,0,8,1,1,802,-74244.555,0,0,1394.1702 -15835,19453,35378,-9,35381,35379,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.6017,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,617,-70151.461,0,0,6539.0562 -15835,19453,35379,35381,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,0,3,9.5965919,9.5574932,0,2,0,-9,8,0,1,-81.856491,-9,0,0,37,2,5,1,2,2,2019,1,1,9,0,100,0,15,1,0,1,0,18.377193,18.377193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,48.57,55.09,55.869999,6,1,1,0,0,9,5,1,617,-70151.461,0,0,6539.0562 -15835,19453,35380,-9,35381,35379,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1075.2968,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,9,5,1,617,-70151.461,0,0,6539.0562 -15835,19453,35381,35379,-9,-9,1,1,0,37,1,0,2,0,2,-9,1,1,0,0,5,7.0296917,6.9449487,0,2,0,-9,8,0,-1,-28.971458,0,0,1,38,2,3,1,2,2,2019,1,2,10,0,16,16,15,1,0,1,0,7.0078039,7.0078039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.869999,52.990002,48.57,6,1,1,0,0,9,5,1,617,-70151.461,0,0,6539.0562 -15836,19454,35382,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,0,4,9.0120745,8.6869726,0,3,0,0,0,-9,0,-872.17627,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,41,15,1,0,-9,0,21.932667,21.932667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.970001,34.18,-9,-9,7,1,1,0,0,9,5,1,201,275640.22,0,0,1319.2878 -15837,19455,35383,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,0,4,0,7.3627176,7.1635289,3,0,0,0,-9,0,-974.07507,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.8259692,7.3559093,0,0,40.389999,42.09,-9,-9,3,1,1,0,0,8,3,1,647,670488.44,0,0,1463.704 -15838,19456,35384,35385,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,0,3,8.2810373,8.0233917,0,1,0,-9,5,0,2,19.317387,0,0,0,50,2,3,1,2,2,2019,1,2,10,1,30,37,15,1,0,1,0,18.683098,18.683098,0,0,0,0,0,0,0,0,0,0,0,8.0134926,0,0,0,54.369999,54.799999,34.779999,45.259998,6,1,1,0,0,4,5,1,950,683949,0,0,6815.9238 -15838,19456,35385,35384,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,3,8.6751347,8.3867769,0,1,0,-9,5,0,-2,-159.88275,0,0,0,52,2,3,1,2,2,2019,1,1,16,5,45,36,15,1,1,1,0,15.448937,15.448937,0,0,0,0,0,0,0,0,0,0,0,8.4028721,0,0,0,34.779999,45.259998,54.369999,54.799999,6,1,1,0,0,4,5,1,950,683949,0,0,6815.9238 -15839,19457,35386,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,0,4,8.1665421,8.6630363,6.3828435,3,0,0,0,-9,0,-979.41742,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,51,51,15,1,0,-9,0,12.442369,12.442369,0,0,0,0,0,0,0,0,0,0,0,6.5590682,6.6162643,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,5,1,107,811289.63,0,0,3269.2476 -15840,19458,35387,35388,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,0,2,0,5.7594423,5.4742465,1,0,-9,64,0,-5,37.507996,0,0,0,87,2,1,3,3,2,2019,4,2,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.3607683,115.91386,1,41.990002,39.27,43.810001,19.32,5,1,1,0,0,9,2,0,1934.5,728138.25,0,0,3018.834 -15840,19458,35388,35387,-9,-9,2,1,0,87,1,0,0,0,2,-9,4,3,0,1,1,0,3.9246328,3.4382234,1,0,-9,10,0,5,-39.67926,0,0,0,82,1,2,3,2,-9,2019,4,1,15,2,0,0,15,4,0,4,0,0,0,1,0,7.6277189,0,0,0,0,0,1,1,0,0,3.9720526,0,0,43.810001,19.32,41.990002,39.27,3,1,1,0,0,9,2,0,1934.5,728138.25,0,0,3018.834 -15841,19459,35389,35390,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,45,0,-1,-68.515648,0,0,0,68,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3987489,0,0,0,60.130001,49.27,57.16,56.150002,7,1,1,0,0,2,3,1,1884.5,1646039,0,0,2754.4426 -15841,19459,35390,35389,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,7.5290709,8.0386896,1,0,-9,45,0,1,-36.424717,0,0,0,67,2,4,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.5023513,7.8605423,0,0,57.16,56.150002,60.130001,49.27,6,1,1,0,0,2,3,1,1884.5,1646039,0,0,2754.4426 -15842,19460,35391,35392,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,5,8.4030008,8.0661507,0,1,0,-9,9,0,-1,21.181229,0,0,0,53,1,5,1,-9,-9,2019,1,1,11,1,24,28,15,1,0,1,0,13.83554,13.83554,0,0,0,0,0,0,0,2,0,0,0,8.2541723,0,.61538488,3,51.73,58.82,57.060001,57.759998,6,1,1,0,0,10,5,1,379.5,1333691.9,0,0,13312.705 -15842,19460,35392,35391,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,0,5,9.7381592,9.6281328,0,1,0,-9,29,0,1,52.485863,0,0,0,52,1,5,1,2,2,2019,1,2,4,0,54,40,15,1,0,1,0,34.322639,34.322639,0,0,0,0,0,0,0,2,0,0,0,9.0829182,0,9.1835108,3,57.060001,57.759998,51.73,58.82,6,1,1,0,0,10,5,1,379.5,1333691.9,0,0,13312.705 -15843,19461,35393,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1068.6238,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.68,23.370001,-9,-9,6,1,1,0,0,12,1,1,718,-140860.55,0,0,1088.9972 -15843,19462,35394,-9,-9,35393,2,1,1,27,2,0,0,0,1,-9,7,2,0,0,4,7.8297548,7.3467007,0,3,0,0,0,-9,0,-1047.1278,1,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,10,20,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,35.669998,64.459999,-9,-9,5,1,1,0,0,12,3,1,182,44398.574,0,0,845.29523 -15844,19463,35395,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,1,1,0,0,3,6.3545156,6.9822679,6.052928,4,0,0,0,-9,0,-919.55225,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,9,0,16,13,15,1,0,-9,0,3.8454342,3.8454342,0,0,0,0,0,0,0,0,1,1,0,5.6918969,0,0,0,49.419998,50.189999,-9,-9,6,1,1,0,0,9,2,1,2057.5,48669.234,0,0,1544.3313 -15844,19463,35396,-9,35395,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1094.9622,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,2,1,2057.5,48669.234,0,0,1544.3313 -15845,19464,35397,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,0,4,0,7.5746956,7.6864247,3,0,0,0,-9,0,-731.09821,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7291517,7.8766661,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,3,1,237,795009.56,0,0,1611.6239 -15846,19465,35398,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,0,3,0,6.3764262,5.9616227,3,0,0,0,-9,0,-960.68842,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4896722,0,0,41.34,56.619999,-9,-9,7,1,1,0,0,12,2,0,840,179816.17,0,0,1942.7521 -15847,19466,35399,35400,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,3,0,8.3832865,8.250164,1,0,-9,9,0,1,20.660156,0,0,0,60,1,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3091221,0,0,59.82,30.35,61.040001,39.41,6,1,1,0,0,5,4,1,602,1403615.3,0,0,2554.2947 -15847,19466,35400,35399,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,7.3639069,7.0613265,1,0,-9,40,0,-1,12.145962,0,0,0,61,1,3,3,3,2,2019,4,1,6,0,0,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.3465338,4.48171,3,61.040001,39.41,59.82,30.35,6,1,1,0,0,5,4,1,602,1403615.3,0,0,2554.2947 -15847,19467,35401,-9,35400,35399,3,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1029.7407,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,5,1,1,236,114128.69,0,0,0 -15848,19468,35402,35404,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,0,3,8.6235609,8.3748579,0,2,0,-9,27,0,-6,-76.815765,0,0,0,52,1,4,1,3,3,2019,1,1,13,1,30,32,15,1,0,1,0,15.689518,15.689518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.970001,52.150002,52.900002,6,1,1,0,0,4,5,1,419,1105215.9,0,0,3313.7761 -15848,19468,35403,-9,35402,35404,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-916.66675,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,5,1,419,1105215.9,0,0,3313.7761 -15848,19468,35404,35402,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,0,4,8.7925014,8.5372419,0,2,0,-9,27,0,6,81.990395,0,0,0,46,2,3,1,2,2,2019,1,2,7,0,38,45,15,1,0,1,0,13.198591,13.198591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.150002,52.900002,47.07,53.970001,6,1,1,0,0,4,5,1,419,1105215.9,0,0,3313.7761 -15848,19469,35405,-9,35402,35404,3,1,0,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-941.9682,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.76267666,0,0,0,46,58,-9,-9,5,1,1,0,0,4,1,1,493,9711.5635,0,0,656.03046 -15849,19470,35406,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-962.69293,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.1513734,3,27.32,20.23,-9,-9,1,1,1,0,1,5,1,0,1369,339660.66,0,0,1248.339 -15849,19471,35407,-9,-9,-9,2,1,1,20,2,0,0,0,3,-9,2,1,0,0,4,7.9888434,7.844161,0,3,0,0,0,-9,0,-1012.869,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,40,0,15,1,0,-9,0,7.4921956,7.4921956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,0,5,3,0,1955,-20305.582,0,0,997.18378 -15850,19472,35408,-9,-9,-9,1,1,0,71,3,0,2,0,3,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-938.83453,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.349998,27.42,-9,-9,7,1,1,0,0,9,1,1,322,0,0,0,592.83099 -15851,19473,35409,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,0,4,0,7.042707,7.4802008,3,0,0,0,-9,0,-996.48126,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0784211,7.2464261,0,0,57.32,47.779999,-9,-9,6,1,1,0,0,11,3,1,87,379253.38,0,0,685.16309 -15852,19474,35410,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,0,1,0,7.9194322,7.7955909,3,0,0,0,-9,0,-906.63367,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,.22973375,0,0,0,0,51.293854,0,1,1,0,3.841146,7.7674632,0,0,48.889999,29.209999,-9,-9,6,1,1,0,0,9,3,1,1335,631307.19,0,0,2151.5664 -15853,19475,35411,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,0,3,8.0283604,8.2260294,0,3,0,0,0,-9,0,-948.98486,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,40,15,1,0,-9,0,8.046874,8.046874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,39.279999,-9,-9,3,1,1,0,0,12,4,0,877,263783.38,0,0,1103.2622 -15854,19476,35412,35413,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,6.0681362,6.1976528,1,0,-9,41,0,2,-36.608276,0,0,0,66,3,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5929346,6.1010914,0,0,61.279999,46.169998,56.860001,50.75,6,1,1,0,0,11,2,1,1479.5,572172.13,0,0,1642.3647 -15854,19476,35413,35412,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,4,0,7.4528708,7.2608356,1,0,-9,41,0,-2,-101.56391,0,0,0,68,3,3,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7609453,7.5966659,0,0,56.860001,50.75,61.279999,46.169998,6,1,1,0,0,11,2,1,1479.5,572172.13,0,0,1642.3647 -15855,19477,35414,-9,35415,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1090.6277,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.369999,-9,-9,7,1,1,0,0,13,4,1,631,259418.42,0,0,2677.4329 -15855,19477,35415,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,0,4,8.9746199,8.8355398,0,4,0,0,0,-9,0,-975.45581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,44,40,15,1,0,-9,0,21.390774,21.390774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.91,56.84,-9,-9,6,1,1,0,0,13,4,1,631,259418.42,0,0,2677.4329 -15856,19478,35416,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,0,1,0,4.5206017,4.4299569,3,0,-9,0,1,0,-993.22083,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2236009,4.7790484,0,0,29.459999,35.459999,-9,-9,4,1,1,0,0,4,2,1,3064,219150.98,0,0,1302.3247 -15857,19479,35417,35418,-9,-9,2,1,0,31,1,0,3,0,2,-9,1,1,0,0,1,7.3964648,7.4998355,3.8235803,2,0,-9,13,0,-11,-166.89833,0,0,1,42,2,2,1,2,1,2019,1,1,19,6,14,12,15,1,1,1,0,13.505712,13.505712,0,0,0,0,0,0,0,27.5,1,1,0,4.4882183,0,29.139029,3,34.639999,15.66,19.74,57.580002,3,1,1,0,0,9,3,0,594,345287.34,0,0,3214.687 -15857,19479,35418,35417,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,0,2,8.4679565,8.5842018,0,2,0,-9,13,0,11,-64.588814,0,0,0,31,2,1,1,2,3,2019,1,2,27,11,38,38,15,1,1,1,0,15.326579,15.326579,0,0,0,0,0,0,0,14.5,1,1,0,.48512593,0,11.037986,1,19.74,57.580002,34.639999,15.66,3,1,1,0,0,9,3,0,594,345287.34,0,0,3214.687 -15857,19479,35419,-9,35417,35418,5,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.73029,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,3,0,594,345287.34,0,0,3214.687 -15858,19480,35420,-9,35423,35422,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-904.72424,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,4,3,1,1223.25,150371.44,0,0,2361.9033 -15858,19480,35421,-9,35423,35422,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1010.6196,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,3,1,1223.25,150371.44,0,0,2361.9033 -15858,19480,35422,35423,-9,-9,1,1,1,29,1,1,2,0,2,-9,2,1,0,0,4,8.2514591,7.8986559,0,2,0,-9,1,-9,1,59.611229,-9,1,0,28,2,4,3,2,2,2019,2,2,4,0,44,0,15,1,0,3,0,8.7054873,8.7054873,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.459999,56.91,67.339996,35.110001,5,1,1,0,0,4,3,1,1223.25,150371.44,0,0,2361.9033 -15858,19480,35423,35422,-9,-9,2,1,0,28,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,-1,-19.590254,-9,1,1,29,2,4,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,67.339996,35.110001,49.459999,56.91,6,1,1,0,0,4,3,1,1223.25,150371.44,0,0,2361.9033 -15859,19481,35424,35425,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,1,2,0,7.2314715,7.2005048,1,0,-9,8,0,-1,-20.265537,0,0,0,75,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,3.9047198,0,0,0,0,0,1,1,0,7.1197286,7.3861079,0,0,62.68,28.219999,53.23,42.900002,6,1,1,0,0,12,2,1,419.5,370106.16,0,0,2140.0342 -15859,19481,35425,35424,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,1,133.19901,0,0,0,74,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,9.4331522,0,0,0,0,0,1,1,0,0,0,0,0,53.23,42.900002,62.68,28.219999,6,1,1,0,0,12,2,1,419.5,370106.16,0,0,2140.0342 -15860,19482,35426,35428,-9,-9,2,1,0,49,1,0,2,0,1,-9,1,1,0,0,3,0,0,0,2,0,-9,22,0,0,48.245132,0,0,0,49,2,4,1,3,2,2019,1,1,6,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.7437243,3,57.330002,53.459999,56.18,51.02,6,2,3,0,0,8,3,1,350.66666,406630.84,0,0,1735.5115 -15860,19482,35427,-9,35426,35428,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-941.53021,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.511539,3,51.240002,58.84,-9,-9,6,2,3,0,0,8,3,1,350.66666,406630.84,0,0,1735.5115 -15860,19482,35428,35426,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,8.506361,8.4923925,0,2,0,-9,22,0,0,1.8086678,0,0,0,49,1,3,1,3,2,2019,1,2,9,0,45,52,15,1,0,1,0,12.000195,12.000195,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,56.18,51.02,57.330002,53.459999,6,2,3,0,0,8,3,1,350.66666,406630.84,0,0,1735.5115 -15861,19483,35429,35430,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,1,-9,2,0,-9,0,0,56,3,3,3,3,3,2019,4,2,14,3,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.139999,13.98,52,54.509998,5,1,1,0,0,13,1,0,228.5,-41523.953,0,0,1655.9407 -15861,19483,35430,35429,-9,-9,2,1,1,56,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,1,-9,-2,0,-9,0,0,58,3,1,3,3,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.93671,2,52,54.509998,47.139999,13.98,5,1,1,0,0,13,1,0,228.5,-41523.953,0,0,1655.9407 -15862,19484,35431,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,1,2,7.630023,7.5459199,0,3,0,0,0,-9,0,-985.35693,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,30,32,15,1,0,-9,0,7.3793969,7.3793969,0,0,0,0,0,0,0,0,1,1,0,1.5183055,0,0,0,53.919998,30.969999,-9,-9,3,1,1,0,0,10,3,0,151,-215280.5,0,0,1355.4558 -15863,19485,35432,-9,35433,35435,5,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.6948,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,803,2650333.3,0,0,4147.2461 -15863,19485,35433,35435,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,0,4,8.8825483,8.8703566,0,2,0,-9,26,0,-3,64.126884,0,0,0,53,1,3,1,3,2,2019,1,1,9,0,38,43,15,1,0,1,0,23.363077,23.363077,0,0,0,0,0,0,0,0,1,1,0,.43574771,0,0,0,52.400002,55.580002,61.279999,46.169998,6,1,1,0,1,2,5,1,803,2650333.3,0,0,4147.2461 -15863,19485,35434,-9,35433,35435,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1151.1089,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,803,2650333.3,0,0,4147.2461 -15863,19485,35435,35433,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,0,3,8.7290564,8.5622511,0,2,0,-9,19,0,3,-41.268967,0,0,0,50,1,4,1,2,1,2019,1,2,11,0,3,40,15,1,0,1,0,240.21378,240.21378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.279999,46.169998,52.400002,55.580002,5,1,1,0,1,2,5,1,803,2650333.3,0,0,4147.2461 -15864,19486,35436,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,2,1,0,0,4,8.1098261,8.3665257,0,3,0,-9,0,-9,0,-1122.9971,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,39,0,15,1,0,-9,0,10.97171,10.97171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.380001,56.810001,-9,-9,4,1,1,0,0,5,4,1,1212,650770.69,0,0,1720.3425 -15865,19487,35437,35439,-9,-9,1,1,1,27,1,0,1,0,2,-9,2,1,0,0,5,9.1470003,9.0808458,0,2,0,-9,6,0,-1,-78.598579,0,1,0,28,1,2,1,2,-9,2019,1,2,11,0,40,36,15,1,0,1,0,25.037962,25.037962,0,0,0,0,0,0,0,0,1,1,0,5.161396,0,0,0,59.040001,51.290001,26.23,53.27,7,1,1,0,0,4,5,1,992.66669,23886.646,0,0,4432.9233 -15865,19487,35438,-9,35439,35437,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-983.92572,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,5,1,992.66669,23886.646,0,0,4432.9233 -15865,19487,35439,35437,-9,-9,2,1,0,28,1,0,1,0,1,-9,2,1,0,0,2,8.0988293,7.9159241,0,2,0,-9,6,0,1,-20.671286,0,1,1,27,2,5,1,-9,-9,2019,1,1,22,10,24,24,15,1,1,1,0,14.009647,14.009647,0,0,0,0,0,0,0,0,1,1,0,1.4067451,0,0,0,26.23,53.27,59.040001,51.290001,6,1,1,0,0,4,5,1,992.66669,23886.646,0,0,4432.9233 -15866,19488,35440,35441,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,5,8.9985743,9.1461992,0,1,0,-9,9,0,-2,10.542937,0,0,0,52,1,3,1,2,1,2019,1,2,10,0,40,40,15,1,0,1,0,28.876814,28.876814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,51.400002,43.720001,6,1,1,0,0,7,5,1,691,1510310.3,0,0,5213.2305 -15866,19488,35441,35440,-9,-9,2,1,0,52,1,0,0,0,1,-9,1,1,0,0,3,8.1121349,7.8185949,0,1,0,-9,9,0,2,-9.4488029,0,0,0,50,1,5,1,2,1,2019,1,1,10,0,35,45,15,1,0,1,0,10.802048,10.802048,0,0,0,0,0,0,0,0,0,0,0,2.4698701,0,0,0,51.400002,43.720001,57.060001,57.759998,6,1,1,0,0,7,5,1,691,1510310.3,0,0,5213.2305 -15867,19489,35442,35443,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,8.3192501,8.2297029,0,1,0,-9,4,0,1,55.428062,0,1,0,27,2,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,10.388072,10.388072,0,0,0,0,0,0,0,0,0,0,0,6.4303603,0,0,0,48.279999,60.18,54.790001,55.860001,2,1,1,0,0,12,5,1,1568.5,233629.13,0,0,2761.6367 -15867,19489,35443,35442,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,8.1633892,8.09128,0,1,0,-9,4,0,-1,115.14975,0,1,1,28,2,4,1,-9,-9,2019,1,1,13,1,37,40,15,1,0,1,0,15.401151,15.401151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.790001,55.860001,48.279999,60.18,6,1,1,0,0,12,5,1,1568.5,233629.13,0,0,2761.6367 -15868,19490,35444,35445,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,0,3,8.7207661,8.8601322,0,1,0,-9,6,0,0,-14.67455,0,0,0,30,2,3,1,2,2,2019,1,2,6,0,45,33,15,1,0,1,0,14.221927,14.221927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.900002,51.84,39.639999,46.919998,6,1,1,0,0,9,5,0,197,-126229.48,0,0,3668.8335 -15868,19490,35445,35444,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,0,3,7.0549631,7.3384418,0,1,0,-9,6,0,0,123.12373,0,0,1,30,1,3,1,2,2,2019,1,1,12,0,30,15,15,1,0,1,0,6.757338,6.757338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.639999,46.919998,57.900002,51.84,4,1,1,0,0,9,5,0,197,-126229.48,0,0,3668.8335 -15869,19491,35446,35447,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.4958487,8.4189415,0,1,0,-9,18,0,7,-17.723942,0,0,0,37,2,4,1,-9,2,2019,1,2,8,0,46,44,15,1,0,1,0,12.679241,12.679241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,30.870001,47.450001,51.299999,5,1,1,0,0,10,5,1,308.5,623417.25,0,0,3283.2219 -15869,19491,35447,35446,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,0,4,8.0079031,7.7458429,0,1,0,-9,18,0,-7,49.319344,0,0,1,44,2,2,1,2,2,2019,1,1,14,2,38,40,15,1,0,1,0,8.4701223,8.4701223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.450001,51.299999,60.119999,30.870001,6,1,1,0,0,10,5,1,308.5,623417.25,0,0,3283.2219 -15870,19492,35448,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,3,8.0052395,8.0018549,0,3,0,0,0,-9,0,-1024.5148,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,45,40,15,1,0,-9,0,6.218698,6.218698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.639999,42.639999,-9,-9,5,3,4,0,1,9,4,1,193,219368.92,0,0,237.7283 -15871,19493,35449,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-984.34534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,8,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.98,65.059998,-9,-9,5,1,1,0,0,11,1,0,253,-3217.5977,0,0,1387.079 -15872,19494,35450,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,0,5,8.1819077,8.5673494,6.9427304,1,0,-9,5,0,0,-21.562504,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,2,7,0,24,24,15,1,0,-9,0,16.166395,16.166395,0,0,0,0,0,0,0,0,0,0,0,7.8315487,0,0,0,54.099998,59.110001,51,56,6,1,1,0,0,2,4,1,2395,-19896.807,0,0,1617.7964 -15873,19495,35451,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,4,0,7.7952957,7.6587138,3,0,0,0,-9,0,-997.46173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.745532,7.4771934,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,10,3,1,913,903885.88,0,0,1912.6246 -15874,19496,35452,-9,35453,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.9471,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,1,1,665.5,-67317.797,0,0,2372.8503 -15874,19496,35453,-9,-9,-9,1,1,0,39,3,0,3,0,2,-9,6,3,0,0,2,0,0,0,4,0,0,0,-9,0,-839.50043,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.265667,3,37.09,51.139999,-9,-9,5,2,3,0,1,4,1,1,665.5,-67317.797,0,0,2372.8503 -15875,19497,35454,-9,-9,-9,1,1,1,19,2,0,0,0,2,0,7,2,0,0,2,0,0,0,3,0,0,0,-9,0,-1047.3711,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.23,60.389999,-9,-9,3,1,1,0,1,6,1,0,458,-86338.18,0,0,0 -15876,19498,35455,-9,35456,35457,5,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.6455274,7.8050399,0,3,0,0,0,-9,0,-1025.5168,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,35,15,1,0,-9,1,5.515028,5.515028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.610001,49.310001,-9,-9,4,2,3,0,0,8,3,0,74,-130700.53,0,0,924.52618 -15876,19499,35456,35457,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,8.1813412,8.2769423,0,1,0,-9,8,0,-13,-25.972738,0,0,0,60,3,1,3,-9,3,2019,2,6,11,2,35,45,15,1,0,3,0,13.949274,13.949274,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.925159,2,57.27,33.209999,46.259998,18.23,3,2,3,0,1,8,3,0,422.5,1286390,0,0,1589.1484 -15876,19499,35457,35456,-9,-9,6,1,1,60,1,0,0,0,3,-9,3,3,0,1,1,0,0,0,1,0,-9,8,0,13,-33.183483,0,0,0,47,2,4,1,-9,-9,2019,3,1,12,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.259998,18.23,57.27,33.209999,6,2,3,1,1,8,3,0,422.5,1286390,0,0,1589.1484 -15877,19500,35458,35459,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,2,0,5.7940116,5.9642773,1,0,-9,62,0,0,-10.586794,0,0,0,84,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1292534,5.9707751,0,0,57.439999,18.08,57.919998,38.59,7,1,1,0,0,5,2,1,511.5,268813.94,0,0,918.10339 -15877,19500,35459,35458,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,62,0,0,1.8200804,0,0,0,84,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,1.3840489,0,74.923729,1,57.919998,38.59,57.439999,18.08,6,1,1,0,0,5,2,1,511.5,268813.94,0,0,918.10339 -15878,19501,35460,35461,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,9.4105167,9.4178762,1,0,-9,44,0,7,-43.368191,0,0,0,64,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2504487,9.2124443,0,0,58.720001,51.290001,57.279999,51.959999,6,1,1,0,0,9,5,1,427.5,12695418,0,0,10655.66 -15878,19501,35461,35460,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,8.7261486,8.7675323,1,0,-9,44,0,-7,-139.59409,0,0,0,71,1,4,3,3,2,2019,4,2,10,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7247705,9.0255756,0,0,57.279999,51.959999,58.720001,51.290001,6,1,1,0,0,9,5,1,427.5,12695418,0,0,10655.66 -15879,19502,35462,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,0,3,0,7.2249656,7.3878579,3,0,0,0,-9,0,-917.84802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.2717481,0,0,40.869999,44.580002,-9,-9,4,1,1,0,0,13,3,1,935,320284.13,0,0,1307.9132 -15880,19503,35463,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,1,1,0,0,3,7.4409709,7.56428,0,3,0,0,0,-9,0,-1135.9142,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,10,30,15,1,0,-9,0,18.661324,18.661324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.400002,-9,-9,6,1,1,0,0,7,3,1,166,-67226.344,0,0,1018.7471 -15881,19504,35464,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-972.44519,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,1,1,0,0,5,1,1,934,0,0,0,374.27478 -15882,19505,35465,35466,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,0,4,8.5617065,8.9930277,0,2,0,-9,26,0,0,-30.165144,0,0,0,47,1,5,1,1,1,2019,1,2,6,0,45,45,15,1,0,1,0,15.694513,15.694513,0,0,0,0,0,0,0,2,0,0,0,5.6350451,0,4.4000063,3,54.200001,57.490002,43.919998,62.310001,6,2,3,0,0,8,5,1,810.5,247181.19,0,0,9093.8105 -15882,19505,35466,35465,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,0,5,9.6226826,9.7659016,0,2,0,-9,26,0,0,48.902832,0,0,0,47,1,4,1,3,2,2019,1,1,11,1,45,47,15,1,0,1,0,39.063602,39.063602,0,0,0,0,0,0,0,0,0,0,0,6.4180417,0,0,0,43.919998,62.310001,54.200001,57.490002,2,1,1,0,0,8,5,1,810.5,247181.19,0,0,9093.8105 -15882,19505,35467,-9,35465,35466,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.5773,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,8,5,1,810.5,247181.19,0,0,9093.8105 -15882,19505,35468,-9,35465,35466,4,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.6053,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,8,5,1,810.5,247181.19,0,0,9093.8105 -15883,19506,35469,35470,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.6970081,7.7792935,1,0,-9,9,0,7,-.42748311,0,0,0,67,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7114077,7.6472116,0,0,57.16,56.150002,49.669998,43.389999,7,1,1,0,0,6,3,1,772.5,1432921.8,0,0,3758.135 -15883,19506,35470,35469,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.6151295,6.759264,1,0,-9,40,0,-7,.95313311,0,0,0,74,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.403482,6.9330692,0,0,49.669998,43.389999,57.16,56.150002,5,1,1,0,0,6,3,1,772.5,1432921.8,0,0,3758.135 -15884,19507,35471,35472,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,5.4168906,5.6948853,1,0,-9,56,0,-2,-95.263916,0,0,0,77,3,3,3,3,2,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2915206,5.5655775,0,0,52,45,54,46,6,1,1,0,0,7,2,1,381,108142.33,0,0,1310.8619 -15884,19507,35472,35471,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,0,3,0,6.0007586,6.0354238,1,0,-9,56,0,2,-76.229134,0,0,0,75,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2988162,0,0,54,46,52,45,5,1,1,0,0,7,2,1,381,108142.33,0,0,1310.8619 -15885,19508,35473,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,5.7609754,6.1196609,3,0,0,0,-9,0,-1016.0365,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3771894,5.9781308,0,0,44.400002,31.879999,-9,-9,7,1,1,0,0,1,2,1,1089,274426.31,0,0,1801.3678 -15886,19509,35474,35475,35478,35477,2,1,0,37,1,0,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,11,0,-2,41.302513,0,0,1,39,1,4,1,2,1,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,36.107277,3,50.91,41.380001,57.16,56.150002,4,2,3,0,1,8,5,1,281.66666,191200.88,0,0,2222.5466 -15886,19509,35475,35474,-9,-9,1,1,1,39,1,0,1,0,1,-9,2,1,0,0,4,8.9597521,8.8877878,0,2,0,-9,11,0,2,18.308603,0,0,0,37,1,3,3,2,2,2019,2,2,3,0,47,47,15,1,0,3,0,21.287708,21.287708,0,0,0,0,0,0,0,2,1,1,0,2.2183864,0,1.8079556,3,57.16,56.150002,50.91,41.380001,6,2,3,0,0,8,5,1,281.66666,191200.88,0,0,2222.5466 -15886,19509,35476,-9,35474,35475,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.13361,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,5,1,281.66666,191200.88,0,0,2222.5466 -15886,19510,35477,35478,-9,-9,4,1,1,75,1,0,1,0,1,-9,4,3,0,0,3,0,0,0,2,0,-9,6,0,4,0,-9,0,0,71,2,3,3,-9,-9,2019,4,5,9,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,46,51,46,6,2,3,0,0,8,1,1,583,1193571,0,0,404.04822 -15886,19510,35478,35477,-9,-9,5,1,0,71,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-4,0,-9,0,0,75,1,3,3,-9,-9,2019,4,4,11,1,0,0,15,3,0,4,0,0,0,1,0,0,16.294334,0,0,0,0,1,1,0,0,0,0,0,51,46,53,46,5,2,3,0,0,8,1,1,583,1193571,0,0,404.04822 -15887,19511,35479,-9,-9,-9,1,1,1,21,2,0,0,0,1,1,2,1,0,0,2,8.0103216,8.2253017,0,3,0,0,0,-9,0,-1057.5146,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,30,0,15,1,0,-9,0,11.157455,11.157455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.790001,60.299999,-9,-9,5,1,1,0,0,11,4,0,496,-26635.85,0,0,-100.71997 -15888,19512,35480,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1006.6553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.209999,51.939999,-9,-9,4,1,1,1,0,4,1,0,735,-5097.5669,0,0,448.51697 -15889,19513,35481,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,4,0,6.6201439,6.5587153,3,0,0,0,-9,0,-1075.8553,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,22,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2118172,6.4781837,0,0,45.790001,62.619999,-9,-9,7,1,1,0,0,7,2,1,478,666401.13,0,0,2147.7766 -15890,19514,35482,35483,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,0,4,9.6406622,9.5920572,7.0096502,1,0,-9,5,0,3,-69.678169,-9,0,0,52,2,3,1,-9,-9,2019,1,2,9,1,40,0,15,1,0,1,0,36.834435,36.834435,0,0,0,0,0,0,0,0,0,0,0,7.0154619,7.3274703,0,0,54,53,53.389999,44.470001,6,1,1,0,0,13,5,1,547.5,1569817.3,0,0,7032.0898 -15890,19514,35483,35482,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,8.5705137,8.6491718,0,1,0,-9,5,0,-3,18.56703,0,0,0,55,3,4,1,3,3,2019,1,1,8,0,37,34,15,1,0,1,0,13.75086,13.75086,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,53.389999,44.470001,54,53,6,1,1,0,0,13,5,1,547.5,1569817.3,0,0,7032.0898 -15890,19515,35484,-9,35483,35482,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,7.2543139,6.809835,0,3,0,0,0,-9,0,-1119.6444,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,13,2,1,604,110333.29,0,0,1306.399 -15891,19516,35485,-9,35487,35486,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.8586,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,646.66669,793793.56,0,0,9125.2676 -15891,19516,35486,35487,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,0,3,9.6125383,9.4966974,0,2,0,-9,16,0,3,56.585594,0,0,0,38,1,3,1,2,2,2019,1,2,13,2,40,45,15,1,0,1,0,38.354351,38.354351,0,0,0,0,0,0,0,0,1,1,0,3.5998681,0,0,0,36.380001,53.470001,47.240002,53.950001,4,1,1,0,0,9,5,1,646.66669,793793.56,0,0,9125.2676 -15891,19516,35487,35486,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,0,3,9.6352472,9.0831795,0,2,0,-9,15,0,-3,92.938194,0,0,1,41,1,3,1,2,2,2019,1,1,12,2,34,30,15,1,0,1,0,36.813374,36.813374,0,0,0,0,0,0,0,0,1,1,0,7.6227446,0,0,0,47.240002,53.950001,36.380001,53.470001,5,1,1,0,0,9,5,1,646.66669,793793.56,0,0,9125.2676 -15892,19517,35488,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-980.37,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2650537,0,0,0,41.919998,50.689999,-9,-9,5,1,1,0,0,6,1,1,2044,30450.945,0,0,1018.1301 -15893,19518,35489,-9,35491,35490,3,1,1,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.5847,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,4,1,2227.3333,389451.06,0,0,4138.998 -15893,19518,35490,35491,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,0,4,8.761013,8.6066713,0,2,0,-9,14,0,7,32.965157,0,0,0,42,2,4,1,2,2,2019,1,1,8,0,60,42,15,1,0,1,0,9.3201962,9.3201962,0,0,0,0,0,0,0,0,1,1,0,7.362349,0,0,0,57.16,56.150002,51.240002,58.84,6,1,1,0,0,4,4,1,2227.3333,389451.06,0,0,4138.998 -15893,19518,35491,35490,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,0,4,7.2950363,7.9138474,0,2,0,-9,13,0,-7,2.5969005,0,0,1,49,2,4,1,2,2,2019,1,2,6,0,18,18,15,1,0,1,0,14.977265,14.977265,0,0,0,0,0,0,0,0,1,1,0,5.2976608,0,0,0,51.240002,58.84,57.16,56.150002,7,1,1,0,0,4,4,1,2227.3333,389451.06,0,0,4138.998 -15894,19519,35492,35493,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.9712911,8.3061571,0,2,0,-9,6,0,5,-3.5987008,0,0,0,43,2,4,1,3,3,2019,1,1,14,3,30,35,15,1,0,1,0,15.801014,15.801014,0,0,0,0,0,0,0,7,1,1,0,0,0,11.678656,3,21.73,61.639999,54.200001,57.490002,6,3,4,0,0,2,4,1,710.33331,578364.75,0,0,3149.8152 -15894,19519,35493,35492,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,4,8.1313667,8.3888578,0,2,0,-9,6,0,-5,-102.94317,0,0,0,48,2,3,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,12.249844,12.249844,0,0,0,0,0,0,0,2,1,1,0,.64542544,0,4.3900018,3,54.200001,57.490002,21.73,61.639999,6,1,1,0,0,2,4,1,710.33331,578364.75,0,0,3149.8152 -15894,19519,35494,-9,35492,35493,4,1,1,11,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-981.48419,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,2,4,1,710.33331,578364.75,0,0,3149.8152 -15894,19520,35495,-9,35492,35493,3,1,0,22,2,0,1,0,2,-9,1,1,0,0,4,6.850574,6.879734,0,3,0,0,0,-9,0,-1000.3229,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,7,8,15,1,0,-9,1,20.120184,20.120184,0,0,0,0,0,0,0,14.5,1,1,0,2.0306644,0,25.868093,3,54.200001,57.490002,-9,-9,5,4,2,0,0,2,2,1,200,90632.867,0,0,-483.40399 -15895,19521,35496,35498,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,1,3,7.7912545,7.6200638,0,2,0,-9,14,0,-1,-88.190643,0,0,1,43,3,2,1,2,2,2019,1,2,7,0,30,35,15,1,0,1,0,9.725812,9.725812,0,0,0,0,0,0,0,42,1,1,0,0,0,42.990814,1,58.91,45.880001,36.509998,56.830002,6,1,1,0,0,4,3,0,647.75,224882.08,0,0,3469.4426 -15895,19521,35497,-9,35496,35498,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-993.78351,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,4,3,0,647.75,224882.08,0,0,3469.4426 -15895,19521,35498,35496,-9,-9,2,1,1,43,1,0,2,0,3,-9,2,1,0,0,2,7.9445958,8.287097,0,2,0,-9,14,0,1,34.294598,0,0,0,42,2,3,1,3,3,2019,1,1,12,0,52,55,15,1,0,1,0,6.9551229,6.9551229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.509998,56.830002,58.91,45.880001,5,2,3,0,0,4,3,0,647.75,224882.08,0,0,3469.4426 -15895,19521,35499,-9,35496,35498,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.97015,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,4,3,0,647.75,224882.08,0,0,3469.4426 -15896,19522,35500,35501,-9,-9,2,1,0,49,1,0,2,0,1,-9,3,3,0,0,3,0,0,0,2,0,-9,10,0,-6,0,0,0,0,55,2,3,1,2,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.990002,51.880001,47.259998,54.060001,3,2,3,1,0,2,1,1,1531.5,227557.33,0,0,884.81342 -15896,19522,35501,35500,-9,-9,1,1,1,55,1,0,2,0,2,-9,2,1,0,0,3,0,0,0,2,0,-9,25,0,6,0,0,0,0,49,1,3,3,3,3,2019,2,2,10,0,0,38,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.259998,54.060001,45.990002,51.880001,4,2,3,0,0,2,1,1,1531.5,227557.33,0,0,884.81342 -15896,19522,35502,-9,35500,35501,5,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-967.68994,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,2,1,1,1531.5,227557.33,0,0,884.81342 -15896,19522,35503,-9,35500,35501,4,1,0,17,2,0,2,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-843.28461,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.490002,55.630001,-9,-9,5,2,3,0,0,2,1,1,1531.5,227557.33,0,0,884.81342 -15896,19523,35504,-9,35500,35501,3,1,0,20,2,0,2,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1058.1844,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.521874,0,0,0,46.919998,60.709999,-9,-9,6,2,3,0,0,2,1,1,636,0,0,0,-161.84502 -15897,19524,35505,-9,35508,35509,3,1,0,17,2,0,4,1,2,0,7,2,0,0,4,5.9564543,6.2618604,0,2,0,0,0,-9,0,-1092.2339,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,45.849998,61.259998,-9,-9,5,3,4,0,0,9,5,1,694.66669,259979.84,0,0,5929.3076 -15897,19524,35506,-9,35508,35509,5,1,0,11,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.4451,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,9,5,1,694.66669,259979.84,0,0,5929.3076 -15897,19524,35507,-9,35508,35509,4,1,1,14,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1129.0181,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,9,5,1,694.66669,259979.84,0,0,5929.3076 -15897,19524,35508,35509,-9,-9,2,1,0,44,1,0,4,0,1,-9,2,1,0,0,4,8.7373285,8.6786432,0,2,0,-9,25,0,-10,-38.620182,0,0,1,54,1,4,1,2,2,2019,1,1,10,0,31,31,15,1,0,1,0,18.720619,18.720619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.560001,57.02,57.16,56.150002,6,3,4,0,0,9,5,1,694.66669,259979.84,0,0,5929.3076 -15897,19524,35509,35508,-9,-9,1,1,1,54,1,0,4,0,1,-9,2,1,0,0,4,9.6228952,9.6205511,0,2,0,-9,23,0,10,-28.290136,0,0,0,44,1,4,1,3,3,2019,1,2,8,0,50,50,15,1,0,1,0,38.850571,38.850571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,46.560001,57.02,5,3,4,0,0,9,5,1,694.66669,259979.84,0,0,5929.3076 -15897,19524,35510,-9,35508,35509,6,1,1,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.2172,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,9,5,1,694.66669,259979.84,0,0,5929.3076 -15898,19525,35511,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,0,4,0,6.7330484,6.9570575,3,0,0,0,-9,0,-1011.0988,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8692679,6.6508155,0,0,57.91,48.98,-9,-9,6,1,1,0,0,9,2,1,189,11058.664,0,0,907.25903 -15899,19526,35512,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,7.0750751,7.0360346,3,0,0,0,-9,0,-1099.1028,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2113442,6.9735026,7.2807245,3,54.419998,32.310001,-9,-9,5,1,1,0,0,11,2,1,406,-6201.9482,0,0,682.54358 -15900,19527,35513,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,4.1498356,4.0540571,3,0,0,0,-9,0,-950.05536,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4333158,4.3857288,0,0,42.369999,48.080002,-9,-9,6,1,1,0,0,11,2,0,361,499532.5,0,0,807.59137 -15901,19528,35514,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-983.25903,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,38,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.240002,-9,-9,6,1,1,0,0,5,1,0,697,-44983.852,0,0,615.87579 -15902,19529,35515,35516,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,2,7.8303714,7.9895163,0,1,0,-9,8,0,-5,-13.227284,0,1,1,31,1,3,1,1,1,2019,1,2,14,2,41,41,15,1,0,1,0,7.3907776,7.3907776,0,0,0,0,0,0,0,2,0,0,0,2.3224974,0,.16298023,1,34.889999,54.57,11.68,43.259998,5,1,1,0,0,10,5,1,414,116153.92,0,0,3094.645 -15902,19529,35516,35515,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,0,3,8.7710133,8.8289328,0,1,0,-9,8,0,5,23.416924,0,0,0,26,1,2,1,-9,-9,2019,1,1,22,5,44,84,15,1,1,1,0,15.321409,15.321409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.68,43.259998,34.889999,54.57,1,1,1,0,0,10,5,1,414,116153.92,0,0,3094.645 -15903,19530,35517,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1130.5071,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9324881,0,0,0,21.299999,41.990002,-9,-9,2,1,1,0,0,2,1,1,1510,-115300.93,0,0,1521.8019 -15903,19531,35518,-9,-9,-9,2,1,1,52,3,0,0,0,1,-9,97,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1125.4727,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2702808,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,1,1,405,59008.855,0,0,238.2812 -15904,19532,35519,35520,-9,-9,2,1,0,39,1,0,3,0,2,-9,2,1,0,0,4,7.8304272,7.6770558,0,2,0,-9,1,-9,-6,-80.141029,-9,0,1,45,2,4,1,2,2,2019,1,1,11,0,26,0,15,1,0,1,0,9.2021761,9.2021761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.630001,59.720001,53,55,6,1,1,0,0,9,5,1,684.59998,669838.75,0,0,177815.84 -15904,19532,35520,35519,-9,-9,1,1,1,45,1,0,3,0,2,-9,1,1,0,0,4,9.9965839,9.7546854,0,2,0,-9,1,-9,6,49.440113,-9,0,0,39,2,4,1,-9,-9,2019,1,2,9,1,40,0,15,1,0,1,0,43.856186,43.856186,0,0,0,0,0,0,0,0,1,1,0,5.1544638,0,0,0,53,55,46.630001,59.720001,6,1,1,0,0,9,5,1,684.59998,669838.75,0,0,177815.84 -15904,19532,35521,-9,35519,35520,3,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1003.3371,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,5,1,684.59998,669838.75,0,0,177815.84 -15904,19532,35522,-9,35519,35520,5,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-993.05859,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,684.59998,669838.75,0,0,177815.84 -15904,19532,35523,-9,35519,35520,4,1,0,13,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1095.6554,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,5,1,684.59998,669838.75,0,0,177815.84 -15905,19533,35524,35526,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,3,8.7348375,8.5082226,0,2,0,-9,10,0,0,-45.267044,0,0,0,45,2,4,1,3,3,2019,1,1,12,2,39,38,15,1,0,1,0,13.761873,13.761873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,51,54.200001,57.490002,5,2,3,0,0,11,4,1,788.66669,322584.31,0,0,3308.6274 -15905,19533,35525,-9,35524,35526,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1050.5773,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,11,4,1,788.66669,322584.31,0,0,3308.6274 -15905,19533,35526,35524,-9,-9,1,1,1,45,1,0,1,0,2,-9,1,1,0,0,4,8.2413568,8.0512352,0,2,0,-9,10,0,0,-63.997406,0,0,0,45,2,3,1,2,2,2019,1,2,14,3,45,40,15,1,0,1,0,8.9956045,8.9956045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,46,51,6,1,1,0,0,11,4,1,788.66669,322584.31,0,0,3308.6274 -15906,19534,35527,35528,-9,-9,3,1,1,35,1,1,1,0,1,-9,2,1,0,0,3,7.8056984,7.9017124,0,2,0,-9,2,0,3,-120.72674,-9,1,0,32,2,3,1,-9,-9,2019,1,1,12,0,38,0,15,1,0,1,0,8.6092958,8.6092958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.369999,37.419998,52.939999,2,1,1,0,0,9,3,0,380.66666,272134.38,0,0,2337.9292 -15906,19534,35528,35527,-9,-9,1,1,0,32,1,1,1,0,2,-9,2,1,0,0,3,7.2952857,7.4413714,0,2,0,-9,2,0,-3,-3.9269559,0,0,1,35,1,3,1,2,3,2019,1,3,12,1,28,40,15,1,0,1,0,5.6222663,5.6222663,0,0,0,0,0,0,0,0,1,1,0,.25330445,0,0,0,37.419998,52.939999,43.84,58.369999,5,1,1,0,0,9,3,0,380.66666,272134.38,0,0,2337.9292 -15906,19534,35529,-9,35528,35527,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-988.52594,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,9,3,0,380.66666,272134.38,0,0,2337.9292 -15907,19535,35530,35531,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,8.5661058,8.6574297,1,0,-9,34,0,7,59.269627,0,0,0,56,2,5,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0616636,8.3397598,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,9,5,1,1923,696656.44,0,0,6433.4072 -15907,19535,35531,35530,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,9.1774006,9.2857056,0,1,0,-9,34,0,-7,-148.4848,0,0,0,63,2,4,3,2,1,2019,2,1,8,0,46,45,15,1,0,4,0,23.877325,23.877325,0,0,0,0,0,0,0,14.5,0,0,0,4.1244693,0,12.604161,3,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,9,5,1,1923,696656.44,0,0,6433.4072 -15908,19536,35532,35533,-9,-9,1,1,1,67,1,0,0,0,3,-9,1,1,0,0,3,0,0,0,1,0,-9,8,0,10,-286.76572,0,0,0,57,2,4,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.490002,31.120001,58.150002,52.91,4,1,1,0,0,13,3,1,502.5,207801.89,0,0,1437.0205 -15908,19536,35533,35532,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,7.9878836,8.046731,0,1,0,-9,8,0,-10,1.5851101,0,0,0,67,3,3,1,3,3,2019,1,1,6,0,38,37,15,1,0,1,0,9.1451454,9.1451454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,58.490002,31.120001,4,1,1,0,0,13,3,1,502.5,207801.89,0,0,1437.0205 -15909,19537,35534,-9,-9,-9,1,1,0,89,2,0,0,0,3,-9,4,3,0,0,2,0,6.3370099,6.3418493,3,0,0,0,-9,0,-992.81415,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,.85914606,0,0,0,0,0,0,1,1,0,0,6.3253589,0,0,23.459999,28.860001,-9,-9,3,1,1,0,0,6,2,1,353,68060.859,0,0,130.88414 -15910,19538,35535,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,4,0,9.2383442,9.9080811,3,0,0,0,-9,0,-961.16675,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,9.0340986,9.5536509,6.4320693,3,56.529999,42.75,-9,-9,5,1,1,0,0,10,5,1,24,1535420,0,0,8190.5586 -15911,19539,35536,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1109.2649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.330002,53.5,-9,-9,3,1,1,0,0,2,1,1,550,1139.3525,0,0,221.42271 -15912,19540,35537,35538,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,0,5,0,0,0,2,0,-9,6,0,-2,-35.87978,0,0,0,38,1,4,1,3,3,2019,1,2,5,1,0,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,59.400002,49.200001,52.91,6,2,3,0,0,6,2,1,1514.5,107433.5,0,0,1227.6152 -15912,19540,35538,35537,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,0,4,7.9957352,7.9039636,0,2,0,-9,6,0,2,-57.175159,0,0,1,36,1,5,1,3,2,2019,1,1,1,0,14,44,15,1,0,1,0,15.804104,15.804104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.200001,52.91,56.470001,59.400002,6,2,3,0,0,6,2,1,1514.5,107433.5,0,0,1227.6152 -15912,19540,35539,-9,35538,35537,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-861.74286,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,6,2,1,1514.5,107433.5,0,0,1227.6152 -15912,19540,35540,-9,35538,35537,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1009.2122,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,2,1,1514.5,107433.5,0,0,1227.6152 -15913,19541,35541,35542,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,4,0,6.7176743,6.4216094,1,0,-9,53,0,-3,-72.138794,0,0,0,82,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,5.0246248,6.6176839,0,0,33.270699,0,1,1,0,8.6939507,6.290967,0,0,60.43,46.439999,40.959999,43.169998,7,1,1,0,0,7,2,1,368,1032055.1,0,0,6012.5376 -15913,19541,35542,35541,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,0,4,0,6.6110821,6.5704837,1,0,-9,53,0,3,102.97218,0,0,0,79,1,4,3,2,1,2019,4,1,22,10,0,0,15,4,1,4,0,0,0,1,2.9752467,0,0,0,0,45.695755,0,1,1,0,7.7761116,0,0,0,40.959999,43.169998,60.43,46.439999,6,1,1,0,0,7,2,1,368,1032055.1,0,0,6012.5376 -15914,19542,35543,-9,35544,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-923.48761,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,2,0,715.66669,-26357.479,0,0,1769.4397 -15914,19542,35544,-9,-9,-9,1,1,0,32,3,0,2,0,3,-9,6,3,0,1,4,0,6.5546169,6.8723683,4,0,0,0,-9,0,-1038.3085,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.674747,0,118.50561,3,56.330002,51.02,-9,-9,6,1,1,0,0,12,2,0,715.66669,-26357.479,0,0,1769.4397 -15914,19542,35545,-9,35544,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-954.40863,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,2,0,715.66669,-26357.479,0,0,1769.4397 -15915,19543,35546,35547,-9,-9,1,1,0,45,1,0,1,0,2,-9,8,3,1,1,2,0,6.4377761,6.7339816,2,0,-9,2,0,-1,29.939613,0,0,0,46,2,1,1,2,2,2019,3,3,14,3,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6178641,0,0,0,40.970001,32.790001,41.139999,30.1,3,1,1,0,0,11,3,1,930.66669,-61468.488,0,0,770.98792 -15915,19543,35547,35546,-9,-9,3,1,1,46,1,0,1,0,2,-9,2,1,0,0,1,8.2200336,7.638093,0,2,0,-9,2,0,1,64.174217,-9,0,0,45,2,2,3,-9,-9,2019,2,1,10,1,86,0,15,1,0,3,0,2.9909332,2.9909332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.139999,30.1,40.970001,32.790001,5,1,1,0,0,11,3,1,930.66669,-61468.488,0,0,770.98792 -15915,19543,35548,-9,35546,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-874.96362,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,11,3,1,930.66669,-61468.488,0,0,770.98792 -15916,19544,35549,35550,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,0,4,7.9202218,8.1779709,0,1,0,-9,10,0,-6,-8.2894354,0,0,0,53,2,4,1,2,2,2019,1,2,12,0,30,30,15,1,0,1,0,9.7641706,9.7641706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.240002,58.84,50.599998,53.68,6,1,1,0,0,11,4,1,1031.5,415293.5,0,0,3379.3374 -15916,19544,35550,35549,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,0,4,7.9643731,8.1219807,0,1,0,-9,10,0,6,-30.101477,0,0,0,47,2,4,1,3,2,2019,1,1,7,0,45,47,15,1,0,1,0,11.337417,11.337417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.599998,53.68,51.240002,58.84,5,1,1,0,0,11,4,1,1031.5,415293.5,0,0,3379.3374 -15916,19545,35551,-9,35549,35550,3,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.4970694,8.5545425,0,3,0,0,0,-9,0,-943.00543,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,37,15,1,0,-9,1,10.344309,10.344309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.740002,57.220001,-9,-9,5,1,1,0,0,11,5,1,97,-140084.28,0,0,2218.3091 -15916,19546,35552,-9,35549,35550,4,1,1,19,2,0,0,0,2,-9,2,1,0,0,5,7.9179873,8.1478653,0,3,0,0,0,-9,0,-985.95313,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,1,0,-9,1,8.274003,8.274003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,5,1,1,0,0,11,3,1,678,-39057.91,0,0,321.03381 -15917,19547,35553,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,2,0,7.6214395,7.3854809,3,0,0,0,-9,0,-986.97083,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.7678881,7.6924729,42.464695,3,45.48,36.200001,-9,-9,7,1,1,0,0,7,3,1,707,411860.41,0,0,1687.5641 -15918,19548,35554,35555,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,0,2,0,6.6161256,6.6506324,1,0,-9,10,0,1,112.53245,0,0,0,70,3,2,3,3,3,2019,4,2,24,12,0,0,15,4,1,4,0,0,0,1,0,18.884169,0,7.4429364,0,0,0,1,1,0,0,6.5694752,0,0,38.91,36.560001,41.43,27.120001,3,1,1,0,0,2,2,1,1699,460593.38,0,0,1606.4635 -15918,19548,35555,35554,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,10,0,-1,-28.620533,0,0,0,71,3,2,3,3,3,2019,4,1,18,6,0,0,15,4,1,4,0,0,0,1,0,11.297651,0,0,0,0,0,1,1,0,1.2899083,0,0,0,41.43,27.120001,38.91,36.560001,5,1,1,0,0,2,2,1,1699,460593.38,0,0,1606.4635 -15919,19549,35556,35557,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,7.5146899,7.5881395,0,1,0,-9,2,0,0,27.757717,0,1,1,27,1,5,1,3,2,2019,1,2,14,2,0,47,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8290458,0,0,0,36.41,54.919998,62.389999,56.709999,6,2,3,0,0,2,3,1,430.5,-165779.2,0,0,2324.792 -15919,19549,35557,35556,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,0,5,7.6638908,8.0188208,0,1,0,-9,2,0,0,39.699188,0,1,0,27,1,4,1,-9,-9,2019,1,1,0,0,33,36,15,1,0,1,0,7.1927476,7.1927476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.389999,56.709999,36.41,54.919998,7,2,3,0,0,2,3,1,430.5,-165779.2,0,0,2324.792 -15920,19550,35558,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,6.5282817,6.7822695,3,0,0,0,-9,0,-975.69812,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5435824,6.6141877,0,0,58.52,44.650002,-9,-9,6,1,1,0,0,8,2,1,291,849863.19,0,0,1108.3057 -15921,19551,35559,35561,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,0,3,8.0908613,8.2841673,0,2,0,-9,7,0,4,-24.626436,0,0,1,32,2,4,1,2,-9,2019,1,2,18,5,25,21,15,1,1,1,0,17.426237,17.426237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.120001,56.290001,55.34,54.259998,3,1,1,0,0,12,4,1,998,52685.273,0,0,3711.4812 -15921,19551,35560,-9,35559,35561,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1113.0305,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,998,52685.273,0,0,3711.4812 -15921,19551,35561,35559,-9,-9,2,1,1,32,1,0,2,0,2,-9,2,1,0,0,4,8.664381,8.5309248,0,2,0,-9,7,0,-4,21.035789,0,0,0,36,1,3,1,2,3,2019,1,1,9,1,39,36,15,1,0,1,0,11.894361,11.894361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,22.120001,56.290001,6,1,1,0,0,12,4,1,998,52685.273,0,0,3711.4812 -15921,19551,35562,-9,35559,35561,4,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.4297,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,4,1,998,52685.273,0,0,3711.4812 -15922,19552,35563,-9,-9,-9,1,1,0,41,2,0,2,0,2,-9,2,1,0,0,4,8.507185,8.807148,3.9795053,4,0,0,0,-9,0,-909.25378,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,41,45,15,1,0,-9,0,18.219883,18.219883,0,0,0,0,0,0,0,0,1,1,0,4.2356439,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,11,4,1,404,114706.55,0,0,1522.7722 -15922,19552,35564,-9,35563,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-900.24841,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,4,1,404,114706.55,0,0,1522.7722 -15923,19553,35565,35566,-9,-9,1,1,1,51,1,0,0,0,3,-9,1,1,0,0,4,7.9046474,8.2630672,0,1,0,-9,6,0,3,103.36886,0,0,0,48,3,2,1,3,2,2019,1,2,9,0,35,35,15,1,0,1,0,10.604827,10.604827,0,0,0,0,0,0,0,0,0,0,0,2.6505296,0,0,0,58.900002,45.740002,52.240002,50.75,2,1,1,0,0,10,5,1,900.5,1160333.5,0,0,3077.2119 -15923,19553,35566,35565,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,0,2,8.5680037,8.2819834,0,1,0,-9,6,0,-3,-59.58202,0,0,0,51,3,4,1,-9,2,2019,1,1,10,0,45,45,15,1,0,1,0,11.60803,11.60803,0,0,0,0,0,0,0,0,0,0,0,1.0495428,0,0,0,52.240002,50.75,58.900002,45.740002,7,1,1,0,0,10,5,1,900.5,1160333.5,0,0,3077.2119 -15924,19554,35567,35568,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,7.5709071,7.3684621,1,0,-9,7,0,0,29.080002,0,0,0,85,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5105033,0,0,59.529999,56.439999,61.509998,52.790001,6,1,1,0,0,4,4,1,461.5,703122,0,0,4037.4111 -15924,19554,35568,35567,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,0,4,0,7.9530926,7.785737,1,0,-9,7,0,9,92.533424,0,0,0,76,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.1175108,7.9332862,0,0,61.509998,52.790001,59.529999,56.439999,7,1,1,0,0,4,4,1,461.5,703122,0,0,4037.4111 -15925,19555,35569,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-987.75446,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,3,4,0,0,6,1,0,362,50806.656,0,0,1876.8754 -15926,19556,35570,35571,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.984643,9.0244942,0,1,0,-9,40,-9,3,-57.68618,-9,0,0,60,3,3,1,3,3,2019,1,1,6,0,56,0,15,1,0,1,0,15.831309,15.831309,0,0,0,0,0,0,0,0,1,1,0,3.7668757,0,0,0,60.119999,54.799999,62.43,40.110001,6,1,1,0,0,12,5,1,965,829585.5,0,0,4180.2578 -15926,19556,35571,35570,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,0,3,8.2512798,7.8478894,0,1,0,-9,40,-9,-3,42.147198,-9,0,0,63,2,4,1,3,3,2019,1,2,6,0,38,0,15,1,0,1,0,9.8592062,9.8592062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.43,40.110001,60.119999,54.799999,6,1,1,0,0,12,5,1,965,829585.5,0,0,4180.2578 -15926,19557,35572,-9,-9,-9,3,1,0,22,3,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,-9,0,-9,0,-947.9231,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,56.59,-9,-9,6,1,1,1,0,12,1,1,351,-33341.711,0,0,0 -15926,19558,35573,-9,-9,-9,4,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.5763392,7.6485815,0,3,0,-9,0,-9,0,-934.5708,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,46,0,15,1,0,-9,0,4.6756225,4.6756225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,12,3,1,249,-3147.1846,0,0,146.94713 -15926,19559,35574,-9,-9,-9,5,1,0,18,2,0,0,0,2,-9,6,3,0,0,3,0,0,0,3,0,-9,0,-9,0,-1060.7301,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.330002,-9,-9,7,1,1,0,0,12,1,1,595,-100521.62,0,0,1054.5115 -15927,19560,35575,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-911.71027,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,22.6,-9,-9,1,1,1,0,1,9,1,0,603,0,0,0,36.688663 -15928,19561,35576,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1026.2159,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.580002,36.41,-9,-9,5,1,1,0,0,4,1,0,916,-27416.59,0,0,1438.4503 -15929,19562,35577,35578,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,0,4,8.5473461,8.2412834,0,1,0,-9,9,0,3,-62.5336,0,0,0,43,2,5,1,-9,-9,2019,1,2,11,0,47,37,15,1,0,1,0,8.9537945,8.9537945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.450001,49.529999,45.119999,62.240002,6,1,1,0,0,4,5,1,309.5,423802.53,0,0,3259.0586 -15929,19562,35578,35577,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,0,5,8.3644543,8.7895346,0,1,0,-9,9,0,-3,117.52447,0,0,0,46,2,4,1,2,2,2019,1,1,6,0,37,39,15,1,0,1,0,13.963449,13.963449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.119999,62.240002,53.450001,49.529999,3,1,1,0,0,4,5,1,309.5,423802.53,0,0,3259.0586 -15930,19563,35579,35580,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,7.9153709,7.8647685,0,1,0,-9,29,0,-7,23.781885,0,0,0,61,2,5,3,2,2,2019,2,1,9,0,30,60,15,1,0,4,0,13.257712,13.257712,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,54.080002,34.349998,41.07,60.93,2,2,3,0,0,9,4,1,172,1238450.3,0,0,2847.342 -15930,19563,35580,35579,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,5,0,8.3742046,8.2217321,1,0,-9,29,0,7,-49.888512,0,0,0,54,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.9008107,16.763596,3,41.07,60.93,54.080002,34.349998,6,2,3,0,0,9,4,1,172,1238450.3,0,0,2847.342 -15931,19564,35581,35582,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,0,5,8.4317007,8.3207722,0,1,0,-9,7,0,-5,-14.080842,0,1,1,34,1,4,1,2,1,2019,1,2,7,0,40,42,15,1,0,1,0,12.25042,12.25042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.27,58.549999,44.189999,56.73,6,4,2,0,0,2,4,1,547,77546,0,0,2040.3176 -15931,19564,35582,35581,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,0,4,0,0,0,1,0,-9,7,0,5,-18.381676,0,0,0,29,2,5,1,-9,-9,2019,1,1,11,0,0,47,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.189999,56.73,52.27,58.549999,5,1,1,0,0,2,4,1,547,77546,0,0,2040.3176 -15932,19565,35583,35584,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,8.2481804,8.363142,1,0,-9,31,0,-1,-72.945023,0,0,0,70,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2080278,0,0,57.16,37.75,51,46,6,1,1,0,0,10,3,1,794.5,1261241.5,0,0,3590.5342 -15932,19565,35584,35583,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,19,0,1,-44.741314,0,0,0,69,2,2,3,3,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,57.16,37.75,5,1,1,0,0,10,3,1,794.5,1261241.5,0,0,3590.5342 -15933,19566,35585,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,1,1,0,6.7246466,7.0868397,3,0,0,0,-9,0,-1150.016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,6.3214417,0,0,0,0,0,1,1,0,0,6.9175673,0,0,46.200001,21.049999,-9,-9,4,1,1,0,0,4,2,1,259,611821.63,0,0,2087.6777 -15934,19567,35586,35587,-9,-9,2,1,1,45,1,1,1,0,2,-9,2,1,0,0,3,8.4103632,8.3077784,0,2,0,-9,3,0,16,38.064438,0,0,0,29,1,5,1,-9,-9,2019,1,1,8,0,48,43,15,1,0,1,0,10.886011,10.886011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,60.02,56.419998,7,1,1,0,0,6,3,1,656,63261.008,0,0,2259.0747 -15934,19567,35587,35586,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,0,5,0,0,0,2,0,-9,3,0,-16,-87.167992,0,1,1,45,2,3,1,-9,-9,2019,1,2,6,0,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,57.330002,53.459999,7,1,1,0,0,6,3,1,656,63261.008,0,0,2259.0747 -15934,19567,35588,-9,35587,35586,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1082.2806,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,656,63261.008,0,0,2259.0747 -15935,19568,35589,-9,35590,35591,3,1,1,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-927.52991,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,9,5,1,274,215942.36,0,0,3746.6919 -15935,19568,35590,35591,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,0,4,8.8788719,8.8342142,0,2,0,-9,6,0,0,166.82289,0,0,1,44,1,3,1,-9,-9,2019,1,2,8,0,35,35,15,1,0,1,0,21.288895,21.288895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,54.959999,53.169998,7,1,1,0,0,9,5,1,274,215942.36,0,0,3746.6919 -15935,19568,35591,35590,-9,-9,2,1,1,44,1,0,1,0,1,-9,1,1,0,0,3,7.2628922,7.4402785,0,2,0,-9,6,0,0,-53.946281,0,0,0,44,1,4,1,-9,-9,2019,1,1,10,0,15,0,15,1,0,1,0,16.05212,16.05212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,57.16,56.150002,6,4,2,0,0,9,5,1,274,215942.36,0,0,3746.6919 -15936,19569,35592,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,0,3,8.3102245,8.509593,0,4,0,0,0,-9,0,-1062.0228,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,14.762367,14.762367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.959999,49.93,-9,-9,6,3,4,0,0,7,4,0,1274.5,457502.69,0,0,1666.6677 -15936,19569,35593,-9,35592,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1007.4451,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,7,4,0,1274.5,457502.69,0,0,1666.6677 -15936,19570,35594,-9,35592,-9,2,1,1,21,2,0,1,0,2,-9,2,1,0,0,4,7.8471117,8.1828423,0,3,0,0,0,-9,0,-971.29053,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,0,0,49,32,15,1,0,-9,1,6.2847753,6.2847753,0,0,0,0,0,0,0,0,1,1,0,5.814569,0,0,0,48,59,-9,-9,4,3,4,0,0,7,4,0,224,-102189.29,0,0,102.68613 -15937,19571,35595,35596,-9,-9,2,1,0,56,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,36,0,-1,-9.0611372,0,0,0,57,2,4,1,3,2,2019,3,1,13,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1780815,0,0,0,39.439999,18.49,51.830002,57.200001,3,1,1,0,0,11,4,1,762,1152951.5,0,0,3219.5459 -15937,19571,35596,35595,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.8634949,8.5627441,0,1,0,-9,36,0,1,70.553078,0,0,0,56,2,1,3,3,2,2019,2,2,9,0,44,44,15,1,0,3,0,17.287575,17.287575,0,0,0,0,0,0,0,2,1,1,0,0,0,7.3608155,1,51.830002,57.200001,39.439999,18.49,6,1,1,0,0,11,4,1,762,1152951.5,0,0,3219.5459 -15937,19572,35597,-9,35595,35596,4,1,0,30,2,0,0,0,1,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1128.1069,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5473864,0,2.6148419,3,11.07,61.689999,-9,-9,4,1,1,1,0,11,1,1,473,168510.25,0,0,127.64291 -15938,19573,35598,-9,35600,35601,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.989,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,3,1,1072.75,38820.855,0,0,1848.0458 -15938,19573,35599,-9,35600,35601,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.8007,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,12,3,1,1072.75,38820.855,0,0,1848.0458 -15938,19573,35600,35601,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,0,5,8.346179,8.4839582,0,2,0,-9,6,0,-3,82.920509,0,0,1,45,2,4,1,-9,-9,2019,1,2,12,0,30,30,15,1,0,1,0,16.756586,16.756586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.529999,64.730003,48.529999,58.91,5,1,1,0,1,12,3,1,1072.75,38820.855,0,0,1848.0458 -15938,19573,35601,35600,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,0,4,0,0,0,2,0,-9,6,0,3,-64.334717,0,0,0,42,1,5,1,-9,-9,2019,1,1,4,0,70,22,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.529999,58.91,38.529999,64.730003,6,1,1,0,1,12,3,1,1072.75,38820.855,0,0,1848.0458 -15939,19574,35602,35603,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,0,4,9.5101786,9.3496771,0,2,0,-9,6,0,-4,-41.551155,0,0,0,52,2,4,1,-9,-9,2019,1,1,8,0,50,50,15,1,0,1,0,33.673759,33.673759,0,0,0,0,0,0,0,0,0,0,0,4.4837718,0,0,0,54.200001,57.490002,56.18,53.849998,6,1,1,0,0,5,5,1,1293.5,330472.16,0,0,5261.2695 -15939,19574,35603,35602,-9,-9,1,1,0,52,1,0,2,0,2,-9,2,1,0,0,4,7.5720267,7.885447,0,2,0,-9,19,0,4,-2.4400527,0,0,0,48,2,4,1,2,2,2019,1,2,7,0,30,28,15,1,0,1,0,9.629323,9.629323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.849998,54.200001,57.490002,6,1,1,0,0,5,5,1,1293.5,330472.16,0,0,5261.2695 -15940,19575,35604,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,0,3,0,6.1976099,6.434515,3,0,0,0,-9,0,-1128.1715,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9429119,6.110188,0,0,55.959999,49.93,-9,-9,6,1,1,0,0,12,2,0,2796,412491.75,0,0,1193.6171 -15941,19576,35605,35606,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,0,4,6.3861809,7.5349946,7.3378372,1,0,-9,28,0,-6,-50.435272,0,0,0,68,1,3,1,3,3,2019,1,2,9,0,3,3,15,1,0,1,0,19.572134,19.572134,0,0,0,0,0,0,0,0,1,1,0,0,7.005878,0,0,38.459999,59.389999,46.029999,50.540001,6,1,1,0,0,4,4,1,344,974340.38,0,0,5378.1709 -15941,19576,35606,35605,-9,-9,2,1,0,68,1,0,0,0,1,-9,2,1,0,0,3,6.7752867,8.3562202,7.7145953,1,0,-9,7,0,6,-52.138206,0,0,0,62,2,4,1,3,3,2019,1,1,9,0,16,16,15,1,0,1,0,7.0326557,7.0326557,0,0,0,0,0,0,0,0,1,1,0,7.5970454,7.7345452,0,0,46.029999,50.540001,38.459999,59.389999,6,1,1,0,0,4,4,1,344,974340.38,0,0,5378.1709 -15942,19577,35607,35610,-9,-9,1,1,0,29,1,1,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,6,0,-28,0,0,1,1,57,3,1,3,3,3,2019,4,4,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.579531,1,46.610001,56.93,37.48,27.77,6,1,1,0,0,11,1,0,1002,-41199.484,0,0,2320.2368 -15942,19577,35608,-9,35607,35610,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-817.30103,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,1,0,1002,-41199.484,0,0,2320.2368 -15942,19577,35609,-9,35607,35610,2,1,0,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1057.0592,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,11,1,0,1002,-41199.484,0,0,2320.2368 -15942,19577,35610,35607,-9,-9,4,1,1,57,1,1,3,0,3,-9,8,3,1,1,1,0,0,0,2,0,-9,6,0,28,0,0,0,0,29,2,3,3,-9,-9,2019,4,1,16,4,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.48,27.77,46.610001,56.93,2,1,1,0,1,11,1,0,1002,-41199.484,0,0,2320.2368 -15942,19577,35611,-9,35607,35610,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1085.8887,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,1,0,1002,-41199.484,0,0,2320.2368 -15943,19578,35612,-9,35614,35615,3,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.8488,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,4,1,478.20001,490106.53,0,0,2366.8423 -15943,19578,35613,-9,35614,35615,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1013.5644,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,9,4,1,478.20001,490106.53,0,0,2366.8423 -15943,19578,35614,35615,-9,-9,2,1,0,43,1,0,3,0,2,-9,2,1,0,0,3,8.4987717,8.0769291,0,2,0,-9,16,0,2,-47.034252,0,0,1,41,2,3,1,-9,-9,2019,1,1,8,0,40,30,15,1,0,1,0,15.699759,15.699759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.880001,54.369999,54.799999,2,2,3,0,0,9,4,1,478.20001,490106.53,0,0,2366.8423 -15943,19578,35615,35614,-9,-9,1,1,1,41,1,0,3,0,2,-9,2,1,0,0,3,7.2833214,7.5517025,0,2,0,-9,16,0,-2,9.8632097,0,0,0,43,2,3,1,2,2,2019,1,2,6,0,32,40,15,1,0,1,0,8.9362402,8.9362402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,51.66,54.880001,6,2,3,0,0,9,4,1,478.20001,490106.53,0,0,2366.8423 -15943,19578,35616,-9,35614,35615,4,1,0,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-931.07611,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,9,4,1,478.20001,490106.53,0,0,2366.8423 -15944,19579,35617,35619,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,0,5,7.1627555,7.0972452,0,2,0,-9,5,0,3,61.357761,0,0,1,33,1,5,1,-9,-9,2019,1,1,15,3,20,16,15,1,0,1,0,6.8426061,6.8426061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.380001,61.66,48.18,61.799999,4,1,1,0,1,8,3,0,524,345053.09,0,0,3013.8044 -15944,19579,35618,-9,35617,-9,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.6355,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,3,0,524,345053.09,0,0,3013.8044 -15944,19579,35619,35617,-9,-9,1,1,1,33,1,0,2,0,1,-9,2,1,0,0,5,8.1232939,8.6359606,0,2,0,-9,5,0,-3,139.00909,0,0,0,36,2,5,1,1,1,2019,1,2,12,0,49,49,15,1,0,1,0,7.4534321,7.4534321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.799999,40.380001,61.66,3,2,3,0,1,8,3,0,524,345053.09,0,0,3013.8044 -15944,19579,35620,-9,35617,35619,3,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-989.27228,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,3,0,524,345053.09,0,0,3013.8044 -15945,19580,35621,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,1,1,0,0,4,6.5526614,6.7394443,0,3,0,0,0,-9,0,-1074.7249,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,30,20,15,1,0,-9,0,3.3732874,3.3732874,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1644948,3,45.52,57.209999,-9,-9,3,1,1,0,1,11,2,0,315,0,0,0,1440.0862 -15946,19581,35622,-9,35623,35625,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.1378,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,5,1,1907,680941.13,0,0,25256.047 -15946,19581,35623,35625,-9,-9,2,1,0,38,1,1,2,0,1,-9,1,1,0,0,4,9.5469561,9.5438919,0,2,0,-9,8,0,-1,0,0,0,1,39,1,5,1,2,3,2019,1,1,7,0,30,0,15,1,0,1,0,64.163597,64.163597,0,0,0,0,0,0,0,0,0,0,0,8.2723017,0,0,0,58.150002,52.91,55.68,54.240002,6,1,1,0,0,9,5,1,1907,680941.13,0,0,25256.047 -15946,19581,35624,-9,35623,35625,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.5321,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,9,5,1,1907,680941.13,0,0,25256.047 -15946,19581,35625,35623,-9,-9,1,1,1,39,1,1,2,0,1,-9,1,1,0,0,5,9.491477,9.8232155,0,2,0,-9,8,0,1,0,0,0,0,38,1,4,1,1,2,2019,1,2,5,0,40,40,15,1,0,1,0,56.636818,56.636818,0,0,0,0,0,0,0,0,0,0,0,8.575676,0,0,0,55.68,54.240002,58.150002,52.91,6,1,1,0,0,9,5,1,1907,680941.13,0,0,25256.047 -15947,19582,35626,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1012.4938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,6.7965298,0,0,0,0,52.162231,0,1,1,0,.55487067,0,0,0,35.119999,35.470001,-9,-9,5,1,1,0,0,13,1,0,201,220892.48,0,0,1925.7063 -15948,19583,35627,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,3,0,6.0346942,6.0946913,3,0,0,0,-9,0,-1036.0309,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,4,0,-9,0,0,0,1,0,0,4.5896058,0,0,0,0,1,1,0,0,6.0511732,0,0,48.830002,31.35,-9,-9,6,1,1,0,0,12,2,1,815,96173.18,0,0,746.16681 -15949,19584,35628,35629,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,0,3,0,5.6753168,5.6252036,1,0,-9,9,0,-1,21.093372,0,0,0,72,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9295635,5.4620705,0,0,57.09,46.700001,57.16,56.150002,6,1,1,0,0,12,2,1,747,621000.63,0,0,2051.7212 -15949,19584,35629,35628,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.2404704,7.219336,1,0,-9,9,0,1,2.7872381,0,0,0,71,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.5979066,0,0,57.16,56.150002,57.09,46.700001,6,1,1,0,0,12,2,1,747,621000.63,0,0,2051.7212 -15950,19585,35630,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,3,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1157.3757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.130001,51.16,-9,-9,2,1,1,1,1,13,1,0,653,-189614.58,0,0,583.84033 -15951,19586,35631,35632,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,-4,-70.110672,0,0,0,78,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5721564,0,4.6186309,3,61.700001,34.029999,57.16,56.150002,6,1,1,0,0,11,3,1,812.5,802058.25,0,0,1600.1035 -15951,19586,35632,35631,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,0,4,0,7.823719,7.6297908,1,0,-9,53,0,4,-56.723591,0,0,0,74,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1015139,7.6015759,0,0,57.16,56.150002,61.700001,34.029999,7,1,1,0,0,11,3,1,812.5,802058.25,0,0,1600.1035 -15952,19587,35633,-9,35635,35636,2,1,0,20,2,0,1,0,2,0,7,2,0,0,4,6.0306253,6.1450315,0,3,0,0,0,-9,0,-801.71088,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.996026,0,0,0,54.200001,57.490002,-9,-9,2,1,1,0,0,9,2,1,2418,-101395.36,0,0,-230.98552 -15952,19588,35634,-9,35635,35636,3,1,0,17,2,0,1,1,3,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1046.7476,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.959999,62.060001,-9,-9,6,1,1,0,0,9,4,1,927.66669,1694812.6,0,0,3152.9058 -15952,19588,35635,35636,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,0,5,7.2900705,7.7942233,6.2247229,2,0,-9,4,0,-2,134.90062,0,0,0,56,1,5,1,2,2,2019,1,4,11,0,25,23,15,1,0,1,0,7.8675675,7.8675675,0,0,0,0,0,0,0,0,1,1,0,6.7164121,0,0,0,58.07,46.16,54.099998,59.110001,6,1,1,0,0,9,4,1,927.66669,1694812.6,0,0,3152.9058 -15952,19588,35636,35635,-9,-9,4,1,1,56,1,0,1,0,1,-9,2,1,0,0,5,8.5303068,8.4287634,0,2,0,-9,4,0,2,-22.052929,0,0,0,54,1,5,1,-9,-9,2019,1,1,7,0,43,38,15,1,0,1,0,15.672735,15.672735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,58.07,46.16,6,1,1,0,0,9,4,1,927.66669,1694812.6,0,0,3152.9058 -15953,19589,35637,35638,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,44,0,0,186.79903,0,0,0,69,3,4,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,53.849998,57.310001,50.610001,6,1,1,0,0,7,3,1,551.5,1087790.8,0,0,3345.9194 -15953,19589,35638,35637,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,7.6666389,7.3047037,1,0,-9,44,0,0,-17.847847,0,0,0,69,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9582491,0,0,57.310001,50.610001,56.18,53.849998,6,1,1,0,0,7,3,1,551.5,1087790.8,0,0,3345.9194 -15954,19590,35639,35642,-9,-9,1,1,1,52,1,0,2,0,2,-9,2,1,0,0,4,8.2104549,8.4140358,0,2,0,-9,8,0,5,124.19862,0,0,0,47,2,4,1,2,3,2019,1,2,6,0,49,29,15,1,0,1,0,9.3128042,9.3128042,0,0,0,0,0,0,0,0,1,1,0,2.394202,0,0,0,58.150002,52.91,58.150002,52.91,7,1,1,0,0,7,4,1,1834.75,597876.13,0,0,4546.3457 -15954,19590,35640,-9,35642,35639,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1186.1317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,7,4,1,1834.75,597876.13,0,0,4546.3457 -15954,19590,35641,-9,35642,35639,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1051.4761,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,1834.75,597876.13,0,0,4546.3457 -15954,19590,35642,35639,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,8.4866371,8.6594162,0,2,0,-9,8,0,-5,-97.27401,0,0,0,52,2,4,1,2,2,2019,1,1,9,0,39,41,15,1,0,1,0,16.488255,16.488255,0,0,0,0,0,0,0,0,1,1,0,2.7227955,0,0,0,58.150002,52.91,58.150002,52.91,6,1,1,0,0,7,4,1,1834.75,597876.13,0,0,4546.3457 -15955,19591,35643,35644,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,3,7.6600437,8.5013609,8.191431,1,0,-9,21,0,1,48.443684,0,0,0,63,2,3,3,3,2,2019,4,1,10,0,25,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9355592,8.3727512,0,0,49.84,48.57,51.41,56.150002,6,1,1,0,0,10,5,1,1214.5,2418546,0,0,5971.4268 -15955,19591,35644,35643,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,3,0,8.2224598,8.6946783,1,0,-9,21,0,-1,36.05843,0,0,0,64,1,3,3,2,2,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5021802,8.6108217,0,0,51.41,56.150002,49.84,48.57,5,1,1,0,0,10,5,1,1214.5,2418546,0,0,5971.4268 -15956,19592,35645,35646,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,58,0,-2,33.29417,0,0,0,78,2,2,3,3,3,2019,4,2,12,1,0,0,15,4,0,4,0,0,0,1,0,7.9402585,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,42.779999,47.950001,42.130001,6,1,1,0,0,4,2,1,839,257378.53,0,0,546.43884 -15956,19592,35646,35645,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,2,0,4.8530326,5.312573,1,0,-9,58,0,2,-104.98624,0,0,0,76,3,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,7,1,1,0,4.5613256,5.2988191,4.9985251,1,47.950001,42.130001,51.490002,42.779999,6,1,1,0,0,4,2,1,839,257378.53,0,0,546.43884 -15957,19593,35647,-9,-9,-9,1,1,1,21,3,0,0,0,2,-9,2,1,0,0,4,8.3904505,8.2173166,0,3,0,0,0,-9,0,-1032.3981,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,0,15,1,0,-9,0,13.69873,13.69873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,4,4,0,2285,-124618.27,0,0,1404.3879 -15958,19594,35648,35649,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,0,5,0,8.2510881,7.6061649,1,0,-9,8,0,9,65.724541,0,0,0,77,2,4,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8774424,7.7410059,0,0,56.25,52.619999,57.16,56.150002,7,1,1,0,0,4,3,1,482.5,1000348.3,0,0,2545.1563 -15958,19594,35649,35648,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,0,4,0,7.0815606,6.8267288,1,0,-9,8,0,0,-149.68735,0,0,0,86,3,5,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2403936,7.3433919,0,0,57.16,56.150002,56.25,52.619999,7,1,1,0,0,4,3,1,482.5,1000348.3,0,0,2545.1563 -15959,19595,35650,35652,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,0,4,8.4604883,8.1704903,0,2,0,-9,18,0,-5,-34.731155,0,0,1,42,2,5,1,2,2,2019,1,2,11,2,40,37,15,1,0,1,0,10.698304,10.698304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,43.669998,46.27,5,1,1,0,0,2,4,0,1177,172557.59,0,0,2870.521 -15959,19595,35651,-9,35650,35652,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1040.9116,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,2,4,0,1177,172557.59,0,0,2870.521 -15959,19595,35652,35650,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,0,5,7.9660797,7.9747767,0,2,0,-9,3,0,5,217.34868,0,0,0,37,1,4,1,-9,-9,2019,1,1,18,6,55,40,15,1,1,1,0,5.9150596,5.9150596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.669998,46.27,49,56,2,1,1,0,0,2,4,0,1177,172557.59,0,0,2870.521 -15959,19596,35653,-9,35650,35652,3,1,1,18,2,0,1,0,2,1,2,1,0,0,4,7.5227518,7.5251865,0,3,0,0,0,-9,0,-1129.709,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,40,0,15,1,0,-9,1,5.727438,5.727438,0,0,0,0,0,0,0,0,1,1,0,.65010846,0,0,0,48,59,-9,-9,5,1,1,0,0,2,3,0,1458,-46650.992,0,0,727.93311 -15960,19597,35654,35655,-9,-9,2,1,0,28,1,2,2,0,2,-9,2,1,0,0,4,7.4079814,7.6356134,0,2,0,-9,6,0,-4,-65.326378,0,1,1,32,2,4,1,-9,-9,2019,1,1,6,0,25,21,15,1,0,1,0,9.2095022,9.2095022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,38.34,62.119999,7,1,1,0,0,11,4,1,407.25,106505.85,0,0,3484.7603 -15960,19597,35655,35654,-9,-9,1,1,1,32,1,2,2,0,2,-9,2,1,0,0,4,8.7031116,8.1840782,0,2,0,-9,6,0,4,-85.593803,0,0,0,28,2,4,1,2,2,2019,1,2,10,1,37,39,15,1,0,1,0,23.224226,23.224226,0,0,0,0,0,0,0,0,1,1,0,1.6814638,0,0,0,38.34,62.119999,54.200001,57.490002,6,1,1,0,0,11,4,1,407.25,106505.85,0,0,3484.7603 -15960,19597,35656,-9,35654,35655,3,1,0,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.07294,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,1,407.25,106505.85,0,0,3484.7603 -15960,19597,35657,-9,35654,35655,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-868.37231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,4,1,407.25,106505.85,0,0,3484.7603 -15961,19598,35658,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,2,0,6.3383188,6.6174188,3,0,-9,0,1,0,-1032.4731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,9.9012012,0,0,0,1,1,0,0,6.7770572,0,0,64.059998,15.57,-9,-9,6,1,1,0,0,5,2,1,1961,419422.28,0,0,2436.281 -15962,19599,35659,-9,-9,-9,1,1,1,90,3,0,0,0,1,-9,4,3,0,0,2,0,5.1652074,5.7903328,3,0,0,0,-9,0,-938.72845,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,10,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.2174811,5.2366791,0,0,38.25,35.689999,-9,-9,4,2,3,0,0,8,2,1,58,-158687.11,0,0,928.88489 -15962,19600,35660,35661,-9,35659,2,1,0,61,1,0,0,0,2,-9,2,1,0,0,3,7.2273192,6.7877321,0,1,0,-9,8,0,-12,-53.688362,0,0,0,73,1,4,3,-9,1,2019,2,3,24,10,15,16,15,1,1,4,0,6.9890623,6.9890623,0,0,0,0,0,0,0,74.5,1,1,0,3.2714143,0,72.766006,3,24.540001,63.25,57.16,56.150002,3,4,2,0,0,8,4,1,328,2097465.8,0,0,2889.4836 -15962,19600,35661,35660,-9,-9,3,1,1,73,1,0,0,0,1,-9,4,3,0,0,4,0,8.1500273,8.3082943,1,0,-9,8,0,12,-76.809265,0,0,0,61,2,3,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.4353657,0,10.135956,3,57.16,56.150002,24.540001,63.25,6,2,3,0,0,8,4,1,328,2097465.8,0,0,2889.4836 -15963,19601,35662,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,0,2,7.2423449,7.2399416,0,4,0,0,0,-9,0,-960.92822,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,20,20,15,1,1,-9,0,6.3268065,6.3268065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.73,52.82,-9,-9,3,1,1,0,1,9,2,0,937,50286.996,0,0,400.68472 -15964,19602,35663,-9,35667,35664,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1076.9457,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,0,556.40002,193061.72,0,0,1944.7356 -15964,19602,35664,35667,-9,-9,1,1,1,38,1,0,3,0,1,-9,2,1,0,0,3,8.4959793,7.9886141,0,2,0,-9,2,0,1,-73.083168,0,0,0,37,1,5,3,2,1,2019,2,2,10,2,58,58,15,1,0,3,0,10.181119,10.181119,0,0,0,0,0,0,0,0,1,1,0,2.3998561,0,0,0,50.029999,52.619999,51.73,58.82,6,1,1,0,0,9,3,0,556.40002,193061.72,0,0,1944.7356 -15964,19602,35665,-9,35667,35664,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.59692,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,0,556.40002,193061.72,0,0,1944.7356 -15964,19602,35666,-9,35667,35664,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1087.175,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,3,0,556.40002,193061.72,0,0,1944.7356 -15964,19602,35667,35664,-9,-9,2,1,0,37,1,0,3,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,2,0,-1,-49.550186,0,0,1,38,1,3,1,2,1,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3222666,0,0,0,51.73,58.82,50.029999,52.619999,6,1,1,0,0,9,3,0,556.40002,193061.72,0,0,1944.7356 -15965,19603,35668,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,0,3,0,6.9116626,6.919795,3,0,0,0,-9,0,-1074.6628,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3676648,0,0,61.279999,46.169998,-9,-9,7,1,1,0,0,11,2,1,1844,593167.31,0,0,914.06104 -15966,19604,35669,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,4,3,0,0,3,0,6.9217324,7.1883535,3,0,0,0,-9,0,-1122.7911,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8845568,0,0,53.25,45.630001,-9,-9,6,1,1,0,0,2,2,1,540,434401.75,0,0,-129.84464 -15967,19605,35670,-9,-9,-9,1,1,0,44,3,0,1,0,3,-9,3,3,0,1,2,0,0,0,4,0,0,0,-9,0,-988.09674,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,-9,-9,4,3,4,1,1,8,1,0,678.5,-13171.661,0,0,878.72815 -15967,19605,35671,-9,35670,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-997.93152,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,8,1,0,678.5,-13171.661,0,0,878.72815 -15968,19606,35672,35673,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,0,4,6.4932747,6.8647099,6.0175519,2,0,-9,7,0,0,26.906244,0,0,1,50,1,2,1,2,2,2019,1,3,11,1,8,8,15,1,0,1,0,9.1758204,9.1758204,0,0,0,0,0,0,0,7,1,1,0,5.71033,0,8.7751961,3,52.970001,48.43,46.32,53.439999,6,1,1,0,0,10,4,1,514.33331,1282694.1,0,0,3364.1292 -15968,19606,35673,35672,-9,-9,3,1,1,50,1,0,1,0,1,-9,2,1,0,0,2,8.535903,8.7444096,0,2,0,-9,7,0,9,78.265984,0,0,0,41,2,4,1,-9,-9,2019,1,1,17,8,41,40,15,1,1,1,0,13.739092,13.739092,0,0,0,0,0,0,0,2,1,1,0,3.0006394,0,7.2331772,3,46.32,53.439999,52.970001,48.43,2,4,1,0,0,10,4,1,514.33331,1282694.1,0,0,3364.1292 -15968,19606,35674,-9,35672,35673,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1027.1309,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,10,4,1,514.33331,1282694.1,0,0,3364.1292 -15969,19607,35675,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,3,0,7.3060412,6.8263898,3,0,0,0,-9,0,-1008.6525,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9381409,7.0957766,0,0,47.43,54.040001,-9,-9,6,1,1,0,0,9,2,1,349,666519.5,0,0,-7.5695786 -15970,19608,35676,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,0,3,7.4365759,7.898078,6.6870089,3,0,0,0,-9,0,-1015.1644,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,4,0,22,21,15,1,0,-9,0,11.121202,11.121202,0,0,0,0,0,0,0,2,0,0,0,.66658777,6.8284779,8.257513,3,58.869999,37.889999,-9,-9,7,4,2,0,0,8,3,1,525,34827.934,0,0,1364.1011 -15971,19609,35677,-9,35678,35679,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-990.46539,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,11,4,1,740.33331,204846.59,0,0,2951.7771 -15971,19609,35678,35679,-9,-9,2,1,0,43,1,1,1,0,2,-9,2,1,0,0,4,8.1915054,7.9108095,0,2,0,-9,6,0,-5,-108.06853,0,0,1,48,2,4,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,9.1695375,9.1695375,0,0,0,0,0,0,0,0,1,1,0,3.3862088,0,0,0,59.529999,56.439999,60.419998,43.740002,6,1,1,0,0,11,4,1,740.33331,204846.59,0,0,2951.7771 -15971,19609,35679,35678,-9,-9,1,1,1,48,1,1,1,0,2,-9,2,1,0,0,4,7.9669824,8.1014996,0,2,0,-9,6,0,5,-22.119751,0,0,0,43,2,4,1,-9,-9,2019,1,2,11,0,37,37,15,1,0,1,0,9.8431339,9.8431339,0,0,0,0,0,0,0,0,1,1,0,3.2769258,0,0,0,60.419998,43.740002,59.529999,56.439999,6,1,1,0,0,11,4,1,740.33331,204846.59,0,0,2951.7771 -15972,19610,35680,35681,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,0,5,0,7.4578209,7.5450535,1,0,-9,38,0,0,143.8924,0,0,0,69,1,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6819396,0,0,44.560001,59.439999,61.119999,51.57,7,1,1,0,0,12,5,1,386.5,1037010.5,0,0,5962.2676 -15972,19610,35681,35680,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,0,4,8.4101124,9.0065079,8.3436241,1,0,-9,38,0,0,50.153805,0,0,0,69,2,5,3,3,2,2019,2,1,6,0,45,45,15,1,0,4,0,10.407138,10.407138,0,0,0,0,0,0,0,0,1,1,0,0,8.5114517,0,0,61.119999,51.57,44.560001,59.439999,6,1,1,0,0,12,5,1,386.5,1037010.5,0,0,5962.2676 -15973,19611,35682,35685,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,0,5,8.5898876,8.5085344,0,2,0,-9,15,0,0,24.554182,0,0,0,45,1,4,1,1,1,2019,1,2,10,1,53,37,15,1,0,1,0,12.027039,12.027039,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.73,58.82,51.830002,57.200001,6,3,4,0,0,9,5,1,908.75,787193.38,0,0,4944.4316 -15973,19611,35683,-9,35685,35682,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-977.40186,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,9,5,1,908.75,787193.38,0,0,4944.4316 -15973,19611,35684,-9,35685,35682,3,1,0,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-910.75049,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,3,4,0,0,9,5,1,908.75,787193.38,0,0,4944.4316 -15973,19611,35685,35682,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,0,4,9.112175,9.0312443,0,2,0,-9,15,0,0,-21.520958,0,0,0,45,1,5,1,2,1,2019,1,1,7,0,53,45,15,1,0,1,0,15.44601,15.44601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,51.73,58.82,5,3,4,0,0,9,5,1,908.75,787193.38,0,0,4944.4316 -15974,19612,35686,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,0,3,0,6.8585362,6.9369082,3,0,0,0,-9,0,-915.11334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5574793,7.0513868,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,7,2,0,176,541460.69,0,0,500.92554 -15975,19613,35687,35688,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,5.7471957,5.8484311,1,0,-9,53,0,3,-31.807625,0,0,0,67,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1369257,5.752871,2.9602287,3,57.240002,41.16,47.080002,32.360001,5,1,1,0,0,4,2,1,995.5,348932.41,0,0,1175.7354 -15975,19613,35688,35687,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,6.7235942,6.4280143,1,0,-9,53,0,-3,-86.535278,0,0,0,70,2,3,3,-9,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6540403,15.079019,3,47.080002,32.360001,57.240002,41.16,5,1,1,0,0,4,2,1,995.5,348932.41,0,0,1175.7354 -15976,19614,35689,35690,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,0,3,7.6544638,8.0489464,0,1,0,-9,6,0,1,138.80637,0,0,0,62,3,4,3,-9,-9,2019,2,1,8,0,40,0,15,1,0,4,0,7.7028928,7.7028928,0,0,0,0,0,0,0,0,0,0,0,4.9634299,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,7,3,1,366,937016,0,0,1636.0854 -15976,19614,35690,35689,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,0,4,0,4.7091193,4.9948688,1,0,-9,6,0,-1,92.731766,0,0,0,63,3,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0151739,4.9749265,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,7,3,1,366,937016,0,0,1636.0854 -15977,19615,35691,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,0,2,7.3846717,7.612505,6.862536,3,0,0,0,-9,0,-1070.3479,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,12,14,23,15,1,1,-9,0,10.715913,10.715913,0,0,0,0,0,0,0,14.5,1,1,0,3.647522,6.6560965,13.185349,3,20.18,54.830002,-9,-9,3,1,1,0,0,12,3,1,975,100791.7,0,0,1817.0669 -15978,19616,35692,-9,35694,35693,3,1,0,16,2,0,1,0,3,-9,2,2,0,0,3,6.0918212,6.1795101,0,2,0,0,0,-9,0,-1024.0898,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2948384,0,0,0,60.290001,52.110001,-9,-9,7,1,1,0,0,7,4,0,900.75,108862.7,0,0,2863.562 -15978,19616,35693,35694,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,0,3,6.406846,6.2829542,0,2,0,-9,11,0,0,36.721214,0,0,0,50,1,4,1,-9,-9,2019,1,1,18,7,8,16,15,1,1,1,0,8.6227303,8.6227303,0,0,0,0,0,0,0,0,1,1,0,4.3425488,0,0,0,41.66,52.32,54.790001,55.860001,5,1,1,0,0,7,4,0,900.75,108862.7,0,0,2863.562 -15978,19616,35694,35693,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,8.579298,8.7343903,0,2,0,-9,29,0,0,-172.29677,0,0,0,50,2,3,1,2,1,2019,1,2,7,0,29,26,15,1,0,1,0,31.194954,31.194954,0,0,0,0,0,0,0,7,1,1,0,4.3506699,0,3.5278711,3,54.790001,55.860001,41.66,52.32,6,1,1,0,0,7,4,0,900.75,108862.7,0,0,2863.562 -15978,19616,35695,-9,35694,35693,4,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.38312,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,0,900.75,108862.7,0,0,2863.562 -15979,19617,35696,35697,-9,-9,2,1,0,62,1,0,0,0,1,-9,1,1,0,0,4,8.0538874,7.9071169,0,1,0,-9,9,0,-1,-53.643787,0,0,0,63,1,3,3,2,1,2019,2,1,8,2,33,20,15,1,0,4,0,10.607206,10.607206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.779999,47.869999,43.07,7,1,1,0,0,12,5,1,745.5,2732032,0,0,4508.5186 -15979,19617,35697,35696,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,8.6964207,8.8060675,1,0,-9,9,0,1,79.430717,0,0,0,62,1,4,1,2,1,2019,3,2,11,3,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7890782,8.9699278,0,0,47.869999,43.07,56.57,57.779999,6,1,1,0,0,12,5,1,745.5,2732032,0,0,4508.5186 -15980,19618,35698,-9,-9,-9,1,1,1,54,3,0,0,0,1,-9,2,1,0,0,3,8.2775068,8.2609682,0,3,0,0,0,-9,0,-919.69714,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,36,15,1,0,-9,0,11.613143,11.613143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.919998,48.59,-9,-9,6,1,1,0,0,9,4,1,143,896232.19,0,0,1528.2361 -15981,19619,35699,35700,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,3,7.829936,8.3203907,6.995677,1,0,-9,9,0,5,37.247967,0,0,0,48,2,3,1,3,3,2019,1,2,5,0,48,37,15,1,0,1,0,7.207047,7.207047,0,0,0,0,0,0,0,0,0,0,0,6.5849166,7.2575135,0,0,57.330002,53.459999,41.720001,55.040001,5,1,1,0,0,5,4,0,2382,902925.25,0,0,1660.9319 -15981,19619,35700,35699,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,3,7.6269355,7.5580392,0,1,0,-9,9,0,-5,-33.493301,0,0,0,53,2,3,1,-9,3,2019,1,1,15,5,38,43,15,1,1,1,0,5.1365666,5.1365666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.720001,55.040001,57.330002,53.459999,4,1,1,0,0,5,4,0,2382,902925.25,0,0,1660.9319 -15982,19620,35701,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-855.23029,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.150002,34.130001,-9,-9,4,1,1,0,0,11,1,0,588,175426.61,0,0,1312.053 -15983,19621,35702,-9,-9,-9,1,1,1,74,2,0,0,0,1,-9,4,3,0,0,3,0,7.1689897,7.0137239,3,0,0,0,-9,0,-899.59595,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9353652,7.3694272,0,0,52,47,-9,-9,5,1,1,0,0,9,3,1,813,865406.63,0,0,1044.6593 -15984,19622,35703,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,3,3,0,1,5,0,0,0,3,0,0,0,-9,0,-1038.7352,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,6,1,1,1,0,12,1,0,599,-71354.75,0,0,275.47119 -15985,19623,35704,35705,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,4,8.5669289,8.4795027,0,1,0,-9,9,0,-1,-45.555672,0,0,0,61,2,2,3,2,3,2019,2,1,8,0,45,44,15,1,0,4,0,14.196305,14.196305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,52.619999,58.700001,46.459999,6,1,1,0,0,1,4,1,1117,1548224.6,0,0,1607.9655 -15985,19623,35705,35704,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,0,2,0,6.732913,6.2635698,1,0,-9,19,0,1,-98.458633,0,0,0,60,2,4,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3420753,0,0,58.700001,46.459999,55.790001,52.619999,6,1,1,0,0,1,4,1,1117,1548224.6,0,0,1607.9655 -15986,19624,35706,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,0,4,9.6711721,9.3005209,0,3,0,0,0,-9,0,-1076.0238,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,45,83,15,1,0,-9,0,38.28669,38.28669,0,0,0,0,0,0,0,0,0,0,0,6.0939965,0,0,0,40.07,57.25,-9,-9,3,1,1,0,0,8,5,1,1392,608034.44,0,0,4408.6602 -15987,19625,35707,-9,35711,35708,4,1,0,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.83704,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,5,4,1,760.20001,131391.41,0,0,2471.6594 -15987,19625,35708,35711,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,0,3,8.6970015,8.7918892,0,2,0,-9,9,0,8,-68.620621,0,0,0,32,3,2,1,1,1,2019,1,2,10,0,40,41,15,1,0,1,0,20.804184,20.804184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,47.169998,39.470001,5,2,3,0,0,5,4,1,760.20001,131391.41,0,0,2471.6594 -15987,19625,35709,-9,35711,35708,3,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1020.2549,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,5,4,1,760.20001,131391.41,0,0,2471.6594 -15987,19625,35710,-9,35711,35708,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1059.5903,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,5,4,1,760.20001,131391.41,0,0,2471.6594 -15987,19625,35711,35708,-9,-9,2,1,0,32,1,0,3,0,3,-9,2,1,0,0,2,6.8578463,6.6669955,0,2,0,-9,9,0,-8,52.073566,0,0,1,40,1,3,1,3,1,2019,1,1,18,6,6,0,15,1,1,1,0,13.434528,13.434528,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.169998,39.470001,51.41,56.150002,3,2,3,0,1,5,4,1,760.20001,131391.41,0,0,2471.6594 -15988,19626,35712,35713,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,0,3,7.7258539,8.3877029,7.2050543,1,0,-9,18,0,3,130.12369,0,0,0,63,2,4,1,2,2,2019,1,2,10,1,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0409894,7.6244006,0,0,53,47,58.900002,45.740002,5,1,1,0,0,5,5,1,1191.5,1783672.5,0,0,7091.4966 -15988,19626,35713,35712,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,0,4,8.0559549,8.2772398,7.5544429,1,0,-9,6,0,-3,85.402176,0,0,0,66,1,3,1,2,2,2019,1,1,6,0,40,25,15,1,0,1,0,9.8916578,9.8916578,0,0,0,0,0,0,0,0,1,1,0,7.8948812,7.7063303,0,0,58.900002,45.740002,53,47,6,1,1,0,0,5,5,1,1191.5,1783672.5,0,0,7091.4966 -15989,19627,35714,-9,35717,35718,4,1,1,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-874.25769,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,9,3,1,750.79999,670017.63,0,0,2909.6997 -15989,19627,35715,-9,35717,35718,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.23047,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,3,1,750.79999,670017.63,0,0,2909.6997 -15989,19627,35716,-9,35717,35718,6,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-891.97528,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,3,1,750.79999,670017.63,0,0,2909.6997 -15989,19627,35717,35718,-9,-9,2,1,0,39,1,0,3,0,2,-9,6,3,0,0,4,0,6.2800574,6.5388732,2,0,-9,7,0,-8,-40.055374,0,0,1,47,2,5,1,3,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4483972,0,0,0,57.16,56.150002,57.060001,57.759998,7,1,1,0,0,9,3,1,750.79999,670017.63,0,0,2909.6997 -15989,19627,35718,35717,-9,-9,1,1,1,47,1,0,3,0,2,-9,2,1,0,0,5,8.8458023,8.7124949,0,2,0,-9,7,0,8,79.470016,0,0,0,39,2,4,3,2,2,2019,2,2,8,0,45,44,15,1,0,3,0,19.573257,19.573257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,57.16,56.150002,6,1,1,0,0,9,3,1,750.79999,670017.63,0,0,2909.6997 -15989,19628,35719,-9,35717,35718,3,1,1,18,2,0,3,0,2,1,2,1,0,0,4,6.7641821,7.4073944,6.7393832,3,0,0,0,-9,0,-1191.9329,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,39,0,15,1,0,-9,1,2.9897652,2.9897652,0,0,0,0,0,0,0,0,1,1,0,6.8750491,0,0,0,70.389999,40.52,-9,-9,7,1,1,0,0,9,3,1,657,-153779.64,0,0,-530.60626 -15990,19629,35720,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,1,1,0,0,3,.036221061,.17901216,0,3,0,0,0,-9,0,-1055.7173,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,15,0,15,1,0,-9,0,.0013311009,.0013311009,0,0,0,0,0,0,0,0,1,1,0,7.9663248,0,0,0,60.290001,52.110001,-9,-9,6,1,1,0,0,2,1,1,955,140065.59,0,0,1136.2969 -15991,19630,35721,35722,-9,-9,2,1,0,46,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,3,0,-8,0,0,0,0,54,3,3,3,3,3,2019,4,1,5,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.529999,19.08,62.66,52.400002,4,1,1,0,0,10,1,0,675,114938.39,0,0,1377.2202 -15991,19630,35722,35721,-9,-9,1,1,1,54,1,0,0,0,3,-9,6,3,0,1,3,0,0,0,1,0,-9,3,0,8,0,0,0,0,46,2,1,3,-9,3,2019,4,2,1,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.17686,2,62.66,52.400002,35.529999,19.08,5,1,1,0,0,10,1,0,675,114938.39,0,0,1377.2202 -15992,19631,35723,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,0,3,8.4442425,8.7076406,0,3,0,0,0,-9,0,-1007.0844,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,37,37,15,1,0,-9,0,20.664818,20.664818,0,0,0,0,0,0,0,2,1,1,0,3.1389923,0,0,3,52.419998,47.689999,-9,-9,6,1,1,0,0,9,5,1,548,488458.69,0,0,1822.2706 -15993,19632,35724,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,0,4,8.7443914,8.7227402,0,3,0,0,0,-9,0,-1006.3226,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,37,35,15,1,0,-9,0,18.503902,18.503902,0,0,0,0,0,0,0,0,0,0,0,2.3341115,0,0,0,48,57,-9,-9,5,1,1,0,0,4,5,0,359,9600.6377,0,0,1908.6852 -15994,19633,35725,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,1,1,0,0,4,5.7896442,6.7956414,5.8860321,3,0,0,0,-9,0,-1075.4839,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,40,15,1,0,-9,0,1.2095615,1.2095615,0,0,0,0,0,0,0,0,1,1,0,4.6629562,6.5548954,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,1,1145,632225.88,0,0,206.13554 -15995,19634,35726,35727,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,4,0,5.8517952,5.3446622,1,0,-9,28,0,4,-13.844192,0,0,0,66,3,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.467041,0,0,55.189999,54.259998,58.32,50.220001,7,1,1,0,0,11,2,1,1219.5,455039.75,0,0,976.32971 -15995,19634,35727,35726,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,28,0,-4,54.060009,0,0,0,70,3,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,3.9055824,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.220001,55.189999,54.259998,6,1,1,0,0,11,2,1,1219.5,455039.75,0,0,976.32971 -15996,19635,35728,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,0,5,8.0818996,7.8740692,0,3,0,0,0,-9,0,-913.76862,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,40,38,15,1,0,-9,1,7.9229445,7.9229445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,-9,-9,6,2,3,0,0,8,4,1,1280,-87270.742,0,0,564.30463 -15997,19636,35729,-9,-9,-9,1,1,0,50,3,0,1,0,3,-9,2,1,0,0,3,7.3740692,7.6333327,0,4,0,0,0,-9,0,-1003.099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,22,25,15,1,0,-9,0,7.7108469,7.7108469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.599998,40.080002,-9,-9,5,3,4,0,1,2,2,0,779.66669,269284.09,0,0,1879.7738 -15997,19636,35730,-9,35729,-9,2,1,1,16,2,0,1,1,3,-9,7,2,0,0,2,0,0,0,4,0,0,0,-9,0,-1114.2501,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.549999,52.400002,-9,-9,7,3,4,0,0,2,2,0,779.66669,269284.09,0,0,1879.7738 -15997,19636,35731,-9,35729,-9,3,1,1,17,2,0,1,0,3,1,2,3,0,0,4,6.2167778,6.0453858,0,4,0,0,0,-9,0,-1015.6991,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,14,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,2,2,0,779.66669,269284.09,0,0,1879.7738 -15998,19637,35732,35733,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,7.8635573,7.8944621,0,1,0,-9,7,0,3,32.158379,0,0,0,56,2,3,3,3,3,2019,2,2,11,0,38,38,15,1,0,3,0,7.5064082,7.5064082,0,0,0,0,0,0,0,7,1,1,0,0,0,12.323492,3,47.439999,39.02,47.849998,52.43,4,1,1,0,0,4,3,1,674,860232.13,0,0,1292.2729 -15998,19637,35733,35732,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,7,0,-3,22.697384,0,0,0,59,2,3,1,2,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.60638,3,47.849998,52.43,47.439999,39.02,5,1,1,0,0,4,3,1,674,860232.13,0,0,1292.2729 -15998,19638,35734,-9,35733,35732,3,1,1,21,2,0,0,0,2,-9,2,1,0,0,5,7.7606506,7.6147714,0,3,0,0,0,-9,0,-1075.3192,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,44,45,15,1,0,-9,1,6.0152855,6.0152855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,-9,-9,5,1,1,0,0,4,3,1,700,46070.211,0,0,1304.3372 -15998,19639,35735,-9,35733,35732,4,1,0,18,2,0,0,0,2,1,2,1,0,0,3,6.8586931,6.8697095,0,3,0,0,0,-9,0,-994.53162,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,1,0,-9,1,5.6234188,5.6234188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,44.040001,-9,-9,4,1,1,0,0,4,2,1,673,0,0,0,1122.4337 -15999,19640,35736,35737,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,3,0,6.0032983,5.668438,1,0,-9,6,0,4,-194.24007,0,0,0,80,2,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,7.5714717,0,0,0,0,0,1,1,0,0,5.7910738,0,0,55,45,51.66,44.139999,6,1,1,0,0,13,2,1,1031.5,183725.86,0,0,1823.7451 -15999,19640,35737,35736,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,3,0,7.5970011,7.2246261,1,0,-9,6,0,-4,-134.19495,0,0,0,84,2,3,3,3,2,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,4.9959722,0,0,0,0,0,71.5,1,1,0,5.9874244,7.1477795,74.313499,1,51.66,44.139999,55,45,6,1,1,0,0,13,2,1,1031.5,183725.86,0,0,1823.7451 -16000,19641,35738,35740,-9,-9,2,1,0,56,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,40,0,-5,48.26712,0,0,0,61,1,4,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.099998,41.189999,51.490002,57.57,6,1,1,0,0,6,5,1,954.33331,2165583.5,0,0,6192.0493 -16000,19641,35739,-9,35738,35740,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.70624,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.810001,59.91,-9,-9,6,1,1,0,0,6,5,1,954.33331,2165583.5,0,0,6192.0493 -16000,19641,35740,35738,-9,-9,1,1,1,61,1,0,1,0,1,-9,2,1,0,0,4,9.4902411,9.9900455,8.2057238,2,0,-9,40,0,5,-133.17355,0,0,0,56,2,2,3,2,2,2019,2,2,13,1,56,49,15,1,0,3,0,29.127665,29.127665,0,0,0,0,0,0,0,0,0,0,0,5.5125737,8.9906063,0,0,51.490002,57.57,61.099998,41.189999,6,1,1,0,0,6,5,1,954.33331,2165583.5,0,0,6192.0493 -16001,19642,35741,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,4,3,0,0,2,0,7.3093395,6.9338164,3,0,0,0,-9,0,-1066.8942,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.7251697,20.204058,3,43.84,42.310001,-9,-9,4,1,1,0,0,12,2,0,513,806704.56,0,0,-865.0528 -16002,19643,35742,-9,35743,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,0,5,3.9905641,4.3939233,0,4,0,0,0,-9,0,-1034.4795,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,6,2,1,201.5,-79945.852,0,0,356.47403 -16002,19643,35743,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,7,2,0,0,2,0,6.4955668,6.0377846,4,0,-9,0,1,0,-1022.5159,1,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7449732,0,0,0,25.639999,46.880001,-9,-9,3,1,1,0,0,6,2,1,201.5,-79945.852,0,0,356.47403 -16003,19644,35744,35745,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,1,4,6.2486024,6.5582409,4.7614088,1,0,-9,6,0,3,-49.796661,0,0,0,73,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,1.8640398,0,0,0,0,0,1,1,0,5.2315431,4.9651108,0,0,57.959999,40.709999,57.16,56.150002,7,1,1,0,0,11,2,1,1460.5,219119.64,0,0,2267.2207 -16003,19644,35745,35744,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.0334587,7.7830811,1,0,-9,6,0,-3,66.809196,0,0,0,76,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1862178,0,0,57.16,56.150002,57.959999,40.709999,7,1,1,0,0,11,2,1,1460.5,219119.64,0,0,2267.2207 -16004,19645,35746,35747,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,0,3,0,7.5930409,8.0470695,1,0,-9,8,0,-6,-165.24545,0,0,0,66,1,5,1,2,1,2019,3,2,11,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7298799,7.4660158,0,0,48.740002,50.459999,58.049999,54.52,6,1,1,0,0,11,3,1,492.5,1302314,0,0,4208.1699 -16004,19645,35747,35746,-9,-9,2,1,1,66,1,0,0,0,1,-9,1,1,0,0,5,0,6.959394,7.4599123,1,0,-9,8,0,6,-45.05957,0,0,0,60,1,3,3,-9,-9,2019,2,1,8,0,0,5,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9034843,6.9867301,0,0,58.049999,54.52,48.740002,50.459999,6,1,1,0,0,11,3,1,492.5,1302314,0,0,4208.1699 -16005,19646,35748,-9,35749,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-1072.5032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,2,0,0,4,1,0,709.5,23362.83,0,0,1986.1254 -16005,19646,35749,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,3,3,0,1,3,0,0,0,4,0,0,0,-9,0,-825.96838,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.5833297,3,54.470001,38.400002,-9,-9,1,3,4,1,0,4,1,0,709.5,23362.83,0,0,1986.1254 -16006,19647,35750,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,0,3,0,6.0563478,5.8831201,3,0,0,0,-9,0,-1062.8179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.3336513,0,0,0,1,1,0,4.9470587,6.0797772,0,0,51.220001,41.360001,-9,-9,4,1,1,0,0,6,2,1,630,128257.8,0,0,1398.0889 -16007,19648,35751,35752,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,0,4,0,6.0579963,5.9655437,1,0,-9,6,0,2,-56.394981,0,0,0,73,3,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,7.4049931,6.1936903,64.098236,1,60.119999,54.799999,34.959999,43.689999,7,1,1,0,0,13,2,1,1989.5,345992.97,0,0,1559.4089 -16007,19648,35752,35751,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,4.6420159,4.1524415,1,0,-9,6,0,-2,77.721069,0,0,0,75,3,4,3,3,3,2019,4,1,13,4,0,0,15,4,1,4,0,0,0,1,0,5.9621091,0,0,0,0,74.5,1,1,0,7.0160155,4.5161304,74.623665,3,34.959999,43.689999,60.119999,54.799999,7,1,1,0,0,13,2,1,1989.5,345992.97,0,0,1559.4089 -16008,19649,35753,35754,-9,-9,2,1,0,54,1,0,0,0,3,-9,8,3,1,1,2,0,0,0,1,0,-9,6,0,-7,-27.187906,0,0,0,61,3,2,3,3,3,2019,4,1,20,8,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.047692,1,41.259998,23.049999,29.84,22.860001,4,1,1,0,0,13,2,0,558,301223.28,0,0,2505.9443 -16008,19649,35754,35753,-9,-9,1,1,1,61,1,0,0,0,3,-9,8,3,1,1,2,0,6.9521346,6.2787709,1,0,-9,6,0,7,-167.97311,0,0,0,54,3,2,3,3,3,2019,4,2,30,12,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1651707,0,0,0,29.84,22.860001,41.259998,23.049999,2,1,1,0,0,13,2,0,558,301223.28,0,0,2505.9443 -16008,19650,35755,-9,35753,35754,3,1,0,25,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1141.484,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,18,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.790001,47.810001,-9,-9,4,1,1,0,0,13,1,0,473,-45655.285,0,0,2624.033 -16008,19651,35756,-9,35753,35754,4,1,0,23,2,0,0,0,2,-9,2,1,0,0,3,7.7794738,7.954423,0,3,0,0,0,-9,0,-1055.2944,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,1,50,0,15,1,0,-9,1,7.4884615,7.4884615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.290001,54.59,-9,-9,7,1,1,0,0,13,4,0,386,147415.63,0,0,1339.5605 -16009,19652,35757,35758,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,0,4,0,5.5215721,6.0267053,1,0,-9,54,0,-3,-23.47891,0,0,0,73,3,3,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.0433941,70.4823,1,56.330002,51.02,66.269997,28.889999,4,1,1,0,0,9,2,1,547,723537.75,0,0,1753.2891 -16009,19652,35758,35757,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,1,3,0,5.494452,5.3650165,1,0,-9,54,0,3,15.946446,0,0,0,70,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,80.774132,0,0,0,0,0,1,1,0,5.6708732,5.5010285,0,0,66.269997,28.889999,56.330002,51.02,2,1,1,0,0,9,2,1,547,723537.75,0,0,1753.2891 -16010,19653,35759,35761,-9,-9,2,1,0,49,1,0,1,0,2,-9,4,3,0,0,1,0,7.5350571,7.4404626,2,0,-9,25,0,-6,-143.37222,0,0,0,55,2,4,1,3,2,2019,3,1,2,0,0,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7513781,0,0,48.599998,11.84,57.57,35.779999,6,1,1,0,0,2,4,1,1285.3334,440779.72,0,0,3324.6074 -16010,19653,35760,-9,35759,35761,4,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1005.3382,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,2,4,1,1285.3334,440779.72,0,0,3324.6074 -16010,19653,35761,35759,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,0,4,7.4750233,8.4064045,7.8465524,2,0,-9,25,0,6,-21.261353,0,0,0,49,2,1,3,2,2,2019,2,2,7,1,31,0,15,1,0,4,0,5.1190238,5.1190238,0,0,0,0,0,0,0,2,1,1,0,0,8.3702974,.5444414,1,57.57,35.779999,48.599998,11.84,2,1,1,0,0,2,4,1,1285.3334,440779.72,0,0,3324.6074 -16011,19654,35762,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,0,4,8.302187,7.931685,5.3208647,3,0,0,0,-9,0,-970.5116,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,32,32,15,1,0,-9,0,8.5871458,8.5871458,0,0,0,0,0,0,0,0,1,1,0,0,5.5089617,0,0,55.720001,41.549999,-9,-9,6,1,1,0,1,10,4,0,579,-55015.758,0,0,280.96539 -16012,19655,35763,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,0,4,8.5471764,8.3988676,0,3,0,-9,0,0,0,-1018.3124,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,46,45,15,1,0,-9,0,13.766747,13.766747,0,0,0,0,0,0,0,0,0,0,0,3.7120786,0,0,0,51.240002,58.84,-9,-9,6,4,2,0,0,2,5,1,373,-46172.855,0,0,1765.8937 -16013,19656,35764,-9,-9,-9,1,1,0,84,2,0,0,0,3,-9,4,3,0,0,4,0,7.1933103,6.8035774,3,0,0,0,-9,0,-998.30646,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.0349045,7.3695173,0,0,63.240002,42.389999,-9,-9,6,1,1,0,0,8,2,0,473,1844.5824,0,0,527.48151 -16014,19657,35765,35766,-9,-9,1,1,0,34,1,0,3,0,2,-9,3,3,0,0,5,0,0,0,2,0,-9,9,0,0,0,0,0,1,34,2,3,3,2,-9,2019,4,2,7,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.3967,3,35.290001,57.049999,48.209999,50.73,4,1,1,1,0,8,1,0,638.79999,536031.56,0,0,2612.6453 -16014,19657,35766,35765,-9,-9,2,1,1,34,1,0,3,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,9,0,0,0,0,0,0,34,2,5,3,2,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.209999,50.73,35.290001,57.049999,5,1,1,1,0,8,1,0,638.79999,536031.56,0,0,2612.6453 -16014,19657,35767,-9,35765,35766,5,1,0,8,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.7866,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,8,1,0,638.79999,536031.56,0,0,2612.6453 -16014,19657,35768,-9,35765,35766,4,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1128.8333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,1,0,638.79999,536031.56,0,0,2612.6453 -16014,19657,35769,-9,35765,35766,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-942.59161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,1,1,0,1,8,1,0,638.79999,536031.56,0,0,2612.6453 -16015,19658,35770,-9,-9,35771,1,1,0,12,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-854.37854,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,4,1,0,630,128061.5,0,0,1743.4259 -16015,19658,35771,-9,-9,-9,2,1,1,70,3,0,0,0,2,-9,4,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1030.8668,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.630001,46.669998,-9,-9,4,1,1,0,0,4,1,0,630,128061.5,0,0,1743.4259 -16016,19659,35772,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,1,2,6.48806,6.7535601,5.3336139,3,0,0,0,-9,0,-940.09894,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,16,0,15,1,1,-9,0,5.4476438,5.4476438,0,0,0,0,0,0,0,0,1,1,0,5.547472,0,0,0,40.740002,31.93,-9,-9,6,1,1,0,0,7,2,1,224,182169.56,0,0,336.69583 -16017,19660,35773,35774,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,0,4,8.1429348,7.8795428,0,1,0,-9,10,0,10,-92.094078,0,0,0,49,1,4,1,3,3,2019,1,1,7,0,45,32,15,1,0,1,0,7.9584122,7.9584122,0,0,0,0,0,0,0,0,0,0,0,2.8734014,0,0,0,54.200001,57.490002,57.759998,54.509998,6,1,1,0,0,1,5,1,382.5,1701151.3,0,0,5252.2544 -16017,19660,35774,35773,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,9.1424875,9.4436941,0,1,0,-9,10,0,-10,.33656523,0,0,0,59,1,4,1,2,2,2019,1,2,7,0,15,45,15,1,0,1,0,95.707298,95.707298,0,0,0,0,0,0,0,0,0,0,0,2.9832985,0,0,0,57.759998,54.509998,54.200001,57.490002,7,1,1,0,0,1,5,1,382.5,1701151.3,0,0,5252.2544 -16018,19661,35775,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,5.2499843,5.0384741,3,0,0,0,-9,0,-1021.5035,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.5610402,0,0,0,1,1,0,0,5.4277267,0,0,42.599998,28.049999,-9,-9,4,1,1,0,0,8,2,0,3161,49247.398,0,0,594.37207 -16018,19662,35776,-9,35775,-9,2,1,1,41,2,0,0,0,3,-9,3,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1078.2167,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.650002,35.57,-9,-9,1,4,2,1,0,8,1,0,1034,155449.88,0,0,1157.29 -16019,19663,35777,35778,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,0,4,8.1549778,8.7407408,7.5935187,1,0,-9,39,0,1,21.231184,0,0,0,60,2,4,1,3,3,2019,1,2,6,0,25,16,15,1,0,1,0,19.517683,19.517683,0,0,0,0,0,0,0,27.5,0,0,0,0,7.4618449,22.098793,3,54.790001,55.860001,57.73,54.529999,6,1,1,0,0,12,5,1,559.5,821069,0,0,3563.4783 -16019,19663,35778,35777,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,4,8.040204,8.1482573,0,1,0,-9,39,0,-1,-142.97816,0,0,0,61,2,4,1,2,3,2019,1,1,13,1,30,35,15,1,0,1,0,12.301155,12.301155,0,0,0,0,0,0,0,7,0,0,0,0,0,1.7612563,3,57.73,54.529999,54.790001,55.860001,6,1,1,0,0,12,5,1,559.5,821069,0,0,3563.4783 -16020,19664,35779,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,3,3,0,0,3,0,6.1135077,6.0784569,4,0,0,0,-9,0,-1018.3979,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8589187,0,0,0,36.619999,60.23,-9,-9,4,1,1,1,1,5,2,1,452.5,-85304.969,0,0,319.89337 -16020,19664,35780,-9,35779,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-865.63568,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,1,452.5,-85304.969,0,0,319.89337 -16021,19665,35781,-9,35782,35783,3,1,0,12,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1106.0166,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,10,5,1,397.33334,1352700.3,0,0,4054.6096 -16021,19665,35782,35783,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,0,2,8.0961781,8.4432421,0,2,0,-9,6,0,-3,116.73014,0,0,0,58,2,3,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,14.06997,14.06997,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.110001,43.52,57.330002,53.459999,5,1,1,0,0,10,5,1,397.33334,1352700.3,0,0,4054.6096 -16021,19665,35783,35782,-9,-9,1,1,1,58,1,0,1,0,2,-9,2,1,0,0,3,9.0109482,8.7833138,0,2,0,-9,18,0,3,-219.24506,0,0,0,55,2,2,1,3,3,2019,1,2,7,0,39,40,15,1,0,1,0,18.386147,18.386147,0,0,0,0,0,0,0,0,1,1,0,4.0835552,0,0,0,57.330002,53.459999,41.110001,43.52,6,1,1,0,0,10,5,1,397.33334,1352700.3,0,0,4054.6096 -16022,19666,35784,-9,35786,35785,6,1,0,14,2,1,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-952.01129,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,8,5,1,1041.6666,1034441.6,0,0,4238.4307 -16022,19666,35785,35786,-9,-9,1,1,1,58,1,1,2,0,2,-9,1,1,0,0,3,9.2123604,9.3082266,0,2,0,-9,32,0,7,-77.553932,0,0,0,51,2,3,3,-9,-9,2019,2,2,10,1,50,20,15,1,0,3,0,23.402018,23.402018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,47,49,5,2,3,0,0,8,5,1,1041.6666,1034441.6,0,0,4238.4307 -16022,19666,35786,35785,-9,-9,2,1,0,51,1,1,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,7,0,-7,-46.182465,0,0,0,58,2,3,1,-9,-9,2019,3,1,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,50,49,5,2,3,0,0,8,5,1,1041.6666,1034441.6,0,0,4238.4307 -16023,19667,35787,-9,-9,35789,1,1,1,21,2,0,1,0,1,1,3,3,0,0,5,0,0,0,3,0,0,0,-9,0,-997.40417,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.1701002,3,44.709999,59.439999,-9,-9,6,1,1,1,0,10,1,0,5219,-55757.473,0,0,0 -16023,19668,35788,-9,-9,35789,2,1,1,18,2,0,1,0,2,1,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-896.88177,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.040001,49.75,-9,-9,4,1,1,1,0,10,1,0,196,19354.434,0,0,710.80072 -16023,19669,35789,-9,-9,-9,3,1,1,46,3,0,1,0,2,-9,6,3,0,1,5,0,0,0,4,0,0,0,-9,0,-880.84833,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.7215,3,64.660004,50.23,-9,-9,4,1,1,0,0,10,1,0,735,-167257.59,0,0,2266.4341 -16024,19670,35790,35791,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,8.7830505,8.5014057,0,1,0,-9,5,0,0,11.667213,0,0,0,47,2,1,1,-9,-9,2019,1,1,11,0,39,37,15,1,0,1,0,16.042067,16.042067,0,0,0,0,0,0,0,0,0,0,0,7.5583634,0,0,0,52.540001,48.709999,26.17,32.75,5,1,1,0,0,4,5,1,1122,295429.22,0,0,4284.4785 -16024,19670,35791,35790,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,0,1,8.1322432,7.8726025,0,1,0,-9,5,0,0,-32.202156,0,0,0,47,2,3,1,-9,-9,2019,1,2,22,10,40,45,15,1,1,1,0,10.515801,10.515801,0,0,0,0,0,0,0,0,0,0,0,3.8632517,0,0,0,26.17,32.75,52.540001,48.709999,2,1,1,0,0,4,5,1,1122,295429.22,0,0,4284.4785 -16025,19671,35792,-9,35794,-9,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1042.2408,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,2,4,1,994.33331,163106.95,0,0,3653.1311 -16025,19671,35793,35794,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,0,4,8.3945704,8.6976948,0,2,0,-9,6,0,-5,-6.6145902,0,0,0,37,2,4,1,-9,-9,2019,1,1,10,1,48,40,15,1,0,1,0,13.192003,13.192003,0,0,0,0,0,0,0,0,1,1,0,6.2202878,0,0,0,51,57,57.16,56.150002,5,1,1,0,0,2,4,1,994.33331,163106.95,0,0,3653.1311 -16025,19671,35794,35793,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,0,4,7.5981498,7.5831676,4.2721629,2,0,-9,6,0,5,16.161076,0,0,1,32,2,4,1,2,2,2019,1,2,7,0,25,28,15,1,0,1,0,9.3871279,9.3871279,0,0,0,0,0,0,0,7,1,1,0,4.5027075,0,4.7473798,3,57.16,56.150002,51,57,6,1,1,0,0,2,4,1,994.33331,163106.95,0,0,3653.1311 -16026,19672,35795,-9,35796,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,-9,0,-9,0,-1220.0284,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,3,1,1354.5,144966.2,0,0,997.97986 -16026,19672,35796,-9,-9,-9,1,1,0,26,2,1,1,0,2,-9,2,1,0,0,4,7.9928961,7.6546235,0,4,0,0,0,-9,0,-862.7926,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,37,15,1,0,-9,0,14.353244,14.353244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,-9,-9,6,1,1,0,0,6,3,1,1354.5,144966.2,0,0,997.97986 -16027,19673,35797,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,5.3920708,5.6368437,3,0,0,0,-9,0,-950.42212,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4174223,5.1624708,0,0,62.27,48.470001,-9,-9,1,1,1,0,0,12,2,1,1354,86794.18,0,0,-350.85709 -16028,19674,35798,35799,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,0,5,9.8415813,9.9413166,0,1,0,-9,30,0,0,-59.968491,0,0,0,54,1,4,1,-9,-9,2019,1,1,9,1,50,0,15,1,0,1,0,72.009583,72.009583,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,61.75,40.939999,32.330002,59.490002,5,3,4,0,0,8,5,0,337.5,1803869,0,0,13078.919 -16028,19674,35799,35798,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,0,4,8.3952665,8.592742,0,1,0,-9,30,0,0,-46.877705,0,0,0,54,1,5,1,-9,-9,2019,1,2,12,1,12,60,15,1,0,1,0,34.586559,34.586559,0,0,0,0,0,0,0,0,0,0,0,3.6030459,0,0,0,32.330002,59.490002,61.75,40.939999,5,3,4,0,0,8,5,0,337.5,1803869,0,0,13078.919 -16028,19675,35800,-9,35799,35798,3,1,0,27,2,0,0,0,1,-9,2,1,0,0,4,8.0376539,7.7262888,0,3,0,0,0,-9,0,-1174.5709,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,40,40,15,1,0,-9,1,8.0121384,8.0121384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.759998,52.639999,-9,-9,5,3,4,0,0,8,4,0,2446,39611.559,0,0,1320.2462 -16028,19676,35801,-9,35799,35798,5,1,0,23,2,0,0,0,1,-9,2,1,0,0,3,7.5988441,7.5734639,0,3,0,-9,0,-9,0,-962.19141,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,5,35,0,15,1,1,-9,1,6.1369848,6.1369848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.219999,51.169998,-9,-9,5,3,4,0,0,8,3,0,932,42126.949,0,0,628.38885 -16028,19677,35802,-9,35799,35798,4,1,1,20,2,0,0,0,2,-9,2,1,0,0,5,7.4878283,7.5013628,0,3,0,0,0,-9,0,-1010.8105,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,25,0,15,1,0,-9,1,7.8922234,7.8922234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.77,63.459999,-9,-9,5,3,4,0,0,8,3,0,278,54249.789,0,0,-943.69061 -16029,19678,35803,35804,-9,-9,1,1,0,47,1,0,1,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,17,-9,-5,32.082802,-9,0,0,52,2,5,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,60.700001,39.779999,60.02,56.419998,6,1,1,0,1,7,3,1,340.5,414993,0,0,2213.2749 -16029,19678,35804,35803,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,0,5,8.3449669,8.5581083,0,2,0,-9,17,-9,5,-57.62595,-9,0,0,47,2,3,3,2,2,2019,2,1,6,0,38,0,15,1,0,3,0,12.499965,12.499965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,60.700001,39.779999,7,1,1,0,1,7,3,1,340.5,414993,0,0,2213.2749 -16030,19679,35805,35806,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.8417153,7.8652024,0,1,0,-9,36,0,1,-1.4122928,0,0,0,59,2,3,1,-9,2,2019,1,2,17,5,31,30,15,1,1,1,0,9.2965565,9.2965565,0,0,0,0,0,0,0,2,0,0,0,4.1287394,0,2.8407698,3,38.630001,55.240002,54.619999,48,5,1,1,0,0,7,5,1,574.5,164110.45,0,0,3214.2676 -16030,19679,35806,35805,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,8.5762682,9.1806927,0,1,0,-9,36,0,-1,-36.271297,0,0,0,60,2,3,1,2,2,2019,1,1,11,0,35,45,15,1,0,1,0,21.071053,21.071053,0,0,0,0,0,0,0,0,0,0,0,3.2489491,0,0,0,54.619999,48,38.630001,55.240002,6,1,1,0,0,7,5,1,574.5,164110.45,0,0,3214.2676 -16031,19680,35807,35808,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,1,2,0,7.4737492,7.4230137,1,0,-9,17,0,8,-72.630905,0,0,0,64,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,9.56919,0,0,0,0,0,1,1,0,4.2511497,7.3200908,0,0,60.880001,10.14,60.119999,54.799999,4,1,1,0,0,2,3,1,1265.5,1421130,0,0,3001.126 -16031,19680,35808,35807,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.8430052,7.6726713,1,0,-9,17,0,-8,-4.1075253,0,0,0,72,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.9174118,7.5858121,119.94262,1,60.119999,54.799999,60.880001,10.14,7,1,1,0,0,2,3,1,1265.5,1421130,0,0,3001.126 -16032,19681,35809,35811,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,4,7.1039972,6.9501004,0,2,0,1,1,-9,6,58.801968,0,0,0,43,1,5,1,3,-9,2019,1,3,6,0,30,40,15,1,0,1,0,5.7840447,5.7840447,0,0,0,0,0,0,0,0,1,1,0,6.3461232,0,0,0,57.73,54.529999,62.389999,56.709999,6,1,1,0,0,7,2,1,574.33331,271406.28,0,0,2826.8306 -16032,19681,35810,-9,35811,35809,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,-9,0,-9,0,-1060.6278,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,7,2,1,574.33331,271406.28,0,0,2826.8306 -16032,19681,35811,35809,-9,-9,3,1,0,43,1,0,2,0,1,-9,2,1,0,0,5,7.2958903,7.089335,0,2,0,-9,1,-9,-6,-3.5988686,-9,0,1,49,2,4,1,-9,-9,2019,1,1,6,0,30,0,15,1,0,1,0,5.3530073,5.3530073,0,0,0,0,0,0,0,0,1,1,0,7.8881774,0,0,0,62.389999,56.709999,57.73,54.529999,7,1,1,0,0,7,2,1,574.33331,271406.28,0,0,2826.8306 -16033,19682,35812,35813,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,0,3,0,8.1088104,8.0220232,1,0,-9,44,-9,4,104.35345,-9,0,0,82,2,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,2.8079455,7.8684416,121.66103,1,55.669998,28.27,40.52,18.389999,5,1,1,0,0,2,3,1,417.5,1128820.6,0,0,2933.333 -16033,19682,35813,35812,-9,-9,1,1,0,82,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,44,-9,-4,13.830118,-9,0,0,86,2,3,3,3,3,2019,4,2,15,2,0,0,15,4,0,4,0,0,0,1,0,66.818207,0,0,0,39.030437,0,1,1,0,2.2401023,0,0,0,40.52,18.389999,55.669998,28.27,2,1,1,0,0,2,3,1,417.5,1128820.6,0,0,2933.333 -16034,19683,35814,35816,-9,-9,1,1,0,48,1,0,1,0,1,-9,97,3,0,1,3,5.6059022,5.7677202,0,2,0,-9,21,0,-5,-52.283081,0,0,0,53,1,4,1,2,2,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.9574177,0,48.172024,3,50.599998,51,61.27,46.029999,6,1,1,0,0,11,3,1,183.66667,1010930.3,0,0,1821.9653 -16034,19683,35815,-9,35814,35816,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1073.8213,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,11,3,1,183.66667,1010930.3,0,0,1821.9653 -16034,19683,35816,35814,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,8.6882229,8.4625483,0,2,0,-9,21,0,5,-41.552677,0,0,0,48,1,3,3,2,1,2019,2,1,6,0,37,36,15,1,0,3,0,15.01,15.01,0,0,0,0,0,0,0,27.5,1,1,0,4.0510249,0,33.674633,3,61.27,46.029999,50.599998,51,2,1,1,0,0,11,3,1,183.66667,1010930.3,0,0,1821.9653 -16035,19684,35817,35818,-9,-9,2,1,0,25,1,0,0,0,1,-9,7,2,0,0,4,0,0,0,1,0,-9,1,-9,-11,8.3637791,-9,1,1,36,1,4,1,-9,-9,2019,3,1,6,1,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.19921944,0,0,0,57.16,56.150002,58.459999,44.549999,7,1,1,0,0,2,3,0,255.5,57665.32,0,0,799.97388 -16035,19684,35818,35817,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,0,4,8.3433151,8.0977869,0,1,0,1,1,-9,11,105.88797,0,0,0,25,1,4,2,3,2,2019,2,2,8,0,43,35,15,1,0,2,0,8.3366938,8.3366938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.459999,44.549999,57.16,56.150002,6,1,1,0,0,2,3,0,255.5,57665.32,0,0,799.97388 -16036,19685,35819,-9,-9,-9,1,1,0,45,3,0,3,0,1,-9,1,1,0,0,2,6.0118651,7.7156439,7.2960091,4,0,0,0,-9,0,-1085.0171,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,22,10,33,38,15,1,1,-9,0,1.4218143,1.4218143,0,0,0,0,0,0,0,2,1,1,0,7.3512063,0,2.7162335,3,30.41,51.389999,-9,-9,3,1,1,0,0,9,2,0,219,-65840.469,0,0,3028.1101 -16036,19685,35820,-9,35819,-9,3,1,0,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-929.50055,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,9,2,0,219,-65840.469,0,0,3028.1101 -16036,19685,35821,-9,35819,-9,2,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-963.44659,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,9,2,0,219,-65840.469,0,0,3028.1101 -16036,19685,35822,-9,35819,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1085.5292,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,219,-65840.469,0,0,3028.1101 -16037,19686,35823,35824,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,5.1665483,5.2492228,1,0,-9,47,0,-4,160.29988,0,0,0,70,2,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4350109,0,0,0,57.16,56.150002,44.740002,28.049999,6,1,1,0,0,2,2,0,337,387951.59,0,0,1124.6248 -16037,19686,35824,35823,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,1,0,6.6727877,6.2625942,1,0,-9,47,0,4,-50.51223,0,0,0,66,2,4,3,-9,2,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3365364,6.4119067,0,0,44.740002,28.049999,57.16,56.150002,5,1,1,0,0,2,2,0,337,387951.59,0,0,1124.6248 -16038,19687,35825,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-944.66626,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.48523572,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,4,1,1,1182,41216.512,0,0,915.89478 -16039,19688,35826,35828,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,0,4,8.1231203,8.4358215,0,2,0,-9,17,0,5,60.702446,0,0,0,33,1,5,1,2,3,2019,1,1,8,0,37,16,15,1,0,1,0,11.605207,11.605207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,57.060001,57.759998,5,1,1,0,0,10,4,1,560,569403.44,0,0,3528.1763 -16039,19688,35827,-9,35828,35826,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-944.03021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,10,4,1,560,569403.44,0,0,3528.1763 -16039,19688,35828,35826,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,0,5,8.2328119,8.0705013,0,2,0,-9,17,0,-5,118.38995,0,0,1,38,1,4,1,2,2,2019,1,2,7,0,50,55,15,1,0,1,0,9.0855618,9.0855618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,58.150002,52.91,7,1,1,0,0,10,4,1,560,569403.44,0,0,3528.1763 -16039,19688,35829,-9,35828,35826,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1000.8224,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,4,1,560,569403.44,0,0,3528.1763 -16040,19689,35830,35832,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,0,5,8.3177347,8.4576521,0,2,0,-9,8,0,1,-48.704212,0,0,0,42,2,3,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,14.264766,14.264766,0,0,0,0,0,0,0,0,0,0,0,4.9025273,0,0,0,57.060001,57.759998,52,54.509998,6,1,1,0,0,9,5,1,673.33331,2104140.3,0,0,3206.1204 -16040,19689,35831,-9,35832,35830,3,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-949.34039,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,1,673.33331,2104140.3,0,0,3206.1204 -16040,19689,35832,35830,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,0,3,8.5322466,8.6560316,0,2,0,-9,8,0,-1,22.348324,0,0,1,43,2,5,1,2,3,2019,1,1,7,0,30,15,15,1,0,1,0,16.654974,16.654974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,57.060001,57.759998,5,4,2,0,0,9,5,1,673.33331,2104140.3,0,0,3206.1204 -16041,19690,35833,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,0,3,7.1089787,7.3030844,6.3450122,3,0,0,0,-9,0,-899.03815,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,15,15,15,1,0,-9,0,8.9813709,8.9813709,1,0,0,0,0,0,0,0,1,1,0,6.8515267,6.3283811,0,0,62.580002,23.84,-9,-9,6,1,1,0,0,5,3,1,761,153916.09,0,0,1440.7074 -16042,19691,35834,-9,35836,35837,5,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-926.80597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,6,3,0,246.25,433004.34,0,0,2011.7659 -16042,19691,35835,-9,35836,35837,6,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.15497,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,6,3,0,246.25,433004.34,0,0,2011.7659 -16042,19691,35836,35837,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,0,2,7.9589643,8.0177851,0,2,0,-9,29,0,1,-87.971268,0,0,0,46,2,2,3,3,3,2019,2,1,22,10,38,38,15,1,1,3,0,10.170668,10.170668,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.325859,3,23.91,53.080002,31.040001,33.389999,4,2,3,0,0,6,3,0,246.25,433004.34,0,0,2011.7659 -16042,19691,35837,35836,-9,-9,1,1,1,46,1,0,2,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,29,0,-1,16.73772,0,0,0,47,2,2,1,-9,-9,2019,3,2,26,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.174324,3,31.040001,33.389999,23.91,53.080002,2,2,3,1,1,6,3,0,246.25,433004.34,0,0,2011.7659 -16042,19692,35838,-9,35836,35837,3,1,1,23,2,0,2,0,2,-9,2,1,0,0,2,7.6050911,7.8606796,0,3,0,0,0,-9,0,-1062.5104,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,47,40,15,1,1,-9,1,5.9907861,5.9907861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.58,49.580002,-9,-9,1,2,3,0,0,6,3,0,375,-46895.672,0,0,609.47736 -16042,19693,35839,-9,35836,35837,4,1,1,19,2,0,2,0,2,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-1105.6635,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,6,1,0,121,-2091.03,0,0,403.21295 -16043,19694,35840,35841,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.5904083,7.5321455,0,1,0,-9,7,0,-3,75.910309,0,0,0,55,2,3,1,2,2,2019,1,2,8,0,25,31,15,1,0,1,0,8.8381824,8.8381824,0,0,0,0,0,0,0,0,0,0,0,1.4745618,0,0,0,54.369999,54.799999,55.23,46.150002,6,1,1,0,0,10,4,1,1056.5,809025.88,0,0,3364.9475 -16043,19694,35841,35840,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,0,3,8.145628,8.3118477,0,1,0,-9,7,0,3,-21.995499,0,0,0,52,2,3,1,3,3,2019,1,1,9,0,38,40,15,1,0,1,0,9.2210741,9.2210741,0,0,0,0,0,0,0,0,0,0,0,3.797421,0,0,0,55.23,46.150002,54.369999,54.799999,5,1,1,0,0,10,4,1,1056.5,809025.88,0,0,3364.9475 -16043,19695,35842,-9,35840,-9,3,1,1,22,2,0,0,0,2,-9,2,1,0,0,5,8.2103376,8.9036436,0,3,0,0,0,-9,0,-998.30157,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,46,15,1,0,-9,1,13.330717,13.330717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,10,4,1,370,-32164.076,0,0,1560.6042 -16043,19696,35843,-9,35840,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.9946809,7.7596345,0,3,0,0,0,-9,0,-1045.1156,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,41,15,1,0,-9,1,5.9881067,5.9881067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.279999,60.18,-9,-9,5,1,1,0,0,10,4,1,731,184491,0,0,2525.2292 -16044,19697,35844,35845,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,6.8569345,6.5705895,0,1,0,-9,10,0,-15,-99.782333,0,0,0,74,1,4,3,3,3,2019,2,1,7,0,15,0,15,1,0,4,0,8.058156,8.058156,0,0,0,0,0,0,0,0,1,1,0,2.7823677,0,0,0,58.150002,52.91,62.490002,55.09,7,1,1,0,0,7,3,1,825,1040285.8,0,0,1172.4413 -16044,19697,35845,35844,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,7.6676211,7.9548116,1,0,-9,10,0,15,46.178379,0,0,0,59,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82773197,7.46105,0,0,62.490002,55.09,58.150002,52.91,6,1,1,0,0,7,3,1,825,1040285.8,0,0,1172.4413 -16045,19698,35846,-9,35847,35848,4,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.3229,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,4,3,1,873,308518.56,0,0,3210.1609 -16045,19698,35847,35848,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,0,4,7.5520048,7.4405327,0,2,0,-9,17,0,-6,40.413116,0,0,1,43,2,2,1,2,1,2019,1,2,11,2,27,27,15,1,0,1,0,7.7821612,7.7821612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,53.650002,29.299999,5,2,3,0,0,4,3,1,873,308518.56,0,0,3210.1609 -16045,19698,35848,35847,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,2,8.4058762,8.3194551,0,2,0,-9,7,0,6,32.776958,0,0,0,37,1,4,1,2,2,2019,1,1,14,3,39,40,15,1,0,1,0,11.34996,11.34996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.650002,29.299999,49,56,5,2,3,0,0,4,3,1,873,308518.56,0,0,3210.1609 -16045,19698,35849,-9,35847,35848,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.06195,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,4,3,1,873,308518.56,0,0,3210.1609 -16046,19699,35850,35851,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-1,83.523956,0,0,0,65,2,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.799999,54.59,58.880001,29.860001,7,1,1,0,0,12,2,1,649,880753.63,0,0,1697.8466 -16046,19699,35851,35850,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.042665,7.0996604,1,0,-9,8,0,1,92.793991,0,0,0,64,1,4,3,2,1,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9010787,7.1589689,0,0,58.880001,29.860001,45.799999,54.59,6,1,1,0,0,12,2,1,649,880753.63,0,0,1697.8466 -16047,19700,35852,35853,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,0,4,0,5.21069,5.2079401,1,0,-9,50,0,-1,44.266655,0,0,0,82,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7072158,5.1995783,0,0,59.139999,52.5,60.290001,52.110001,6,1,1,0,0,9,2,1,221.5,419952.13,0,0,2539.0339 -16047,19700,35853,35852,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,0,3,0,6.8691254,7.2405257,1,0,-9,50,0,1,20.211214,0,0,0,81,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3576455,6.9421787,0,0,60.290001,52.110001,59.139999,52.5,6,1,1,0,0,9,2,1,221.5,419952.13,0,0,2539.0339 -16048,19701,35854,35855,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,0,4,9.2493019,9.447835,0,1,0,-9,8,0,-8,-71.092255,0,0,0,53,2,3,1,1,1,2019,1,1,8,0,45,47,15,1,0,1,0,22.745075,22.745075,0,0,0,0,0,0,0,0,0,0,0,.83457208,0,0,0,58.720001,51.290001,29.110001,44.630001,6,1,1,0,0,9,5,1,829,529034.5,0,0,5414.0859 -16048,19701,35855,35854,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.3035545,8.432827,0,1,0,-9,8,0,8,6.0112348,0,0,0,45,1,4,1,3,-9,2019,1,2,34,12,32,37,15,1,1,1,0,16.5287,16.5287,0,0,0,0,0,0,0,2,0,0,0,.42607063,0,2.81264,3,29.110001,44.630001,58.720001,51.290001,2,1,1,0,0,9,5,1,829,529034.5,0,0,5414.0859 -16049,19702,35856,-9,35857,35858,5,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-997.4035,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.360001,62.77,-9,-9,6,2,3,0,0,2,3,1,1512,1011989.7,0,0,2772.1357 -16049,19702,35857,35858,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,6.8037825,7.1933088,0,2,0,-9,34,0,-6,-174.15628,0,0,0,53,1,4,1,3,2,2019,1,1,10,0,19,20,15,1,0,1,0,6.1753488,6.1753488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.470001,58.080002,59.139999,52.5,7,2,3,0,0,2,3,1,1512,1011989.7,0,0,2772.1357 -16049,19702,35858,35857,35859,35860,1,1,1,53,1,0,1,0,1,-9,2,1,0,0,4,8.3799601,8.6315584,0,2,0,-9,34,0,6,-88.065079,0,0,0,47,2,3,1,3,2,2019,1,2,6,0,33,33,15,1,0,1,0,19.017956,19.017956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.139999,52.5,41.470001,58.080002,7,2,3,0,0,2,3,1,1512,1011989.7,0,0,2772.1357 -16049,19703,35859,35860,-9,-9,7,1,0,74,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,3,0,0,0,0,0,0,74,3,3,3,-9,-9,2019,4,6,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53,46,6,2,3,0,0,2,1,1,700.5,152031.81,0,0,0 -16049,19703,35860,35859,-9,-9,6,1,1,74,1,0,1,0,3,-9,4,3,0,0,3,0,0,0,2,0,-9,3,0,0,0,0,0,0,74,3,3,3,-9,-9,2019,4,7,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,51,46,6,2,3,0,0,2,1,1,700.5,152031.81,0,0,0 -16050,19704,35861,35862,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-1,7.5133271,0,0,0,69,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5860298,0,4.9627099,3,56.939999,49.529999,57.16,56.150002,6,1,1,0,0,5,4,1,368,1163782.8,0,0,3045.9023 -16050,19704,35862,35861,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,0,8.7328682,8.4147196,1,0,-9,45,0,1,90.362236,0,0,0,68,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3800702,8.4016352,0,3,57.16,56.150002,56.939999,49.529999,7,1,1,0,0,5,4,1,368,1163782.8,0,0,3045.9023 -16050,19705,35863,-9,35861,35862,3,1,1,40,2,0,0,0,2,-9,1,1,0,0,4,0,0,0,3,0,0,0,-9,0,-992.47894,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,5,5,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4758885,0,0,0,51.830002,57.200001,-9,-9,5,1,1,0,0,5,1,1,1122,115717.68,0,0,218.79782 -16051,19706,35864,35865,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,7.589489,8.0456657,1,0,-9,46,0,2,-37.602726,0,0,0,72,2,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.6483142,7.7569027,2.6856592,3,53.23,42.900002,53.189999,24.58,6,1,1,0,0,13,3,0,192,1072693.8,0,0,3794.353 -16051,19706,35865,35864,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,46,0,-2,-78.359871,0,0,0,74,2,3,3,3,3,2019,4,2,8,1,0,0,15,4,0,4,0,0,0,1,0,7.1481051,0,0,0,0,0,1,1,0,1.1771612,0,0,0,53.189999,24.58,53.23,42.900002,6,1,1,0,0,13,3,0,192,1072693.8,0,0,3794.353 -16052,19707,35866,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-937.41931,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.950001,22.66,-9,-9,3,1,1,0,0,7,1,0,462,18751.584,0,0,334.28101 -16053,19708,35867,35868,-9,-9,2,1,1,61,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,1,1,-9,3,0,0,0,0,58,3,1,3,-9,-9,2019,4,1,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43.630001,47.650002,42.509998,18.49,6,1,1,1,0,11,1,1,892,-154439.05,0,0,0 -16053,19708,35868,35867,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,1,1,-9,-3,0,0,0,0,61,3,3,3,-9,2,2019,4,2,19,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.509998,18.49,43.630001,47.650002,2,1,1,0,0,11,1,1,892,-154439.05,0,0,0 -16054,19709,35869,35870,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,0,4,7.9411931,8.4160948,7.5241675,1,0,-9,30,0,1,-40.808758,0,0,0,56,1,4,3,2,2,2019,2,2,10,0,8,42,15,1,0,4,0,40.56332,40.56332,0,0,0,0,0,0,0,0,0,0,0,7.6950021,7.6561394,0,0,48.869999,58.549999,57.16,56.150002,6,1,1,0,0,4,4,1,180.5,951716.88,0,0,3008.7402 -16054,19709,35870,35869,-9,-9,2,1,0,56,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,30,0,-1,13.965675,0,0,0,57,2,4,1,2,1,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.8566909,0,8.7198257,3,57.16,56.150002,48.869999,58.549999,7,1,1,0,0,4,4,1,180.5,951716.88,0,0,3008.7402 -16055,19710,35871,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,2,0,4.1625938,3.9699218,3,0,0,0,-9,0,-1101.0063,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.6071143,3.9826281,0,0,52.66,33.990002,-9,-9,5,1,1,0,0,13,1,1,950,68341.867,0,0,1789.4999 -16056,19711,35872,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,4,0,6.5362091,6.6138625,3,0,0,0,-9,0,-1070.8462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.704144,0,0,63.419998,18.879999,-9,-9,6,1,1,0,0,12,2,1,369,398234.72,0,0,2187.8755 -16057,19712,35873,35874,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-3,23.365124,0,0,0,69,2,3,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.1004786,0,35.129101,3,58.150002,52.91,59.459999,46.990002,5,1,1,0,0,9,3,1,593.5,1292459.9,0,0,2822.5911 -16057,19712,35874,35873,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,3,0,8.5071764,8.2287579,1,0,-9,9,0,3,-15.66074,0,0,0,66,2,4,3,-9,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.633503,0,3,59.459999,46.990002,58.150002,52.91,5,1,1,0,0,9,3,1,593.5,1292459.9,0,0,2822.5911 -16058,19713,35875,35876,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,0,5,8.7229385,8.5950155,0,1,0,-9,18,0,-4,26.891163,0,0,0,56,1,4,1,2,3,2019,1,1,13,5,15,15,15,1,1,1,0,39.350971,39.350971,0,0,0,0,0,0,0,2,0,0,0,0,0,9.5054502,3,43.59,59.040001,62.110001,45.630001,7,1,1,0,0,2,5,1,3791,325327.53,0,0,3465.2461 -16058,19713,35876,35875,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,2.1996365,7.6750579,7.9978385,1,0,-9,18,0,4,-103.734,0,0,0,52,2,5,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,.02195066,.02195066,0,0,0,0,0,0,0,0,0,0,0,0,8.1106558,0,0,62.110001,45.630001,43.59,59.040001,6,1,1,0,0,2,5,1,3791,325327.53,0,0,3465.2461 -16059,19714,35877,35878,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,7.098556,6.9968815,1,0,-9,47,0,5,-109.62626,0,0,0,66,2,3,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4733334,6.6751108,0,0,49.25,61.25,51.02,52.220001,6,1,1,0,0,10,2,1,741.5,380511,0,0,2192.2751 -16059,19714,35878,35877,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,4.4741321,3.5846119,1,0,-9,47,0,-5,38.686974,0,0,0,71,2,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6633873,4.1821342,0,0,51.02,52.220001,49.25,61.25,7,1,1,0,0,10,2,1,741.5,380511,0,0,2192.2751 -16060,19715,35879,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,0,3,4.2155824,6.6405325,6.5950017,3,0,0,0,-9,0,-980.52771,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5492449,0,0,50.869999,41.290001,-9,-9,6,1,1,0,0,9,2,1,342,1199929,0,0,721.98578 -16061,19716,35880,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-934.53992,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,6,1,1,1,0,13,1,1,1149,-34670.59,0,0,-125.74521 -16062,19717,35881,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,2,0,6.8808713,6.7260852,3,0,0,0,-9,0,-871.95978,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.8047035,6.727304,.8912645,3,60.139999,44.41,-9,-9,6,1,1,0,0,1,2,0,396,16066.082,0,0,1191.7396 -16063,19718,35882,-9,35884,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-889.29688,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,6,4,1,644.33331,854821.69,0,0,3045.1055 -16063,19718,35883,-9,35884,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1014.7175,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,4,1,644.33331,854821.69,0,0,3045.1055 -16063,19718,35884,-9,-9,-9,1,1,0,46,3,0,2,0,1,-9,2,1,0,0,4,8.9146461,8.971344,0,4,0,0,0,-9,0,-987.25482,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,48,38,15,1,0,-9,0,18.881166,18.881166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,54.380001,-9,-9,4,1,1,0,1,6,4,1,644.33331,854821.69,0,0,3045.1055 -16064,19719,35885,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,3,0,5.1926117,5.1438498,3,0,0,0,-9,0,-970.67004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,14.463483,0,0,0,1,1,0,4.9420362,0,0,0,50,47,-9,-9,5,2,3,0,1,1,2,1,151,215652.91,0,0,-434.25171 -16065,19720,35886,35887,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,4,8.6053324,8.6339092,0,1,0,-9,10,0,2,49.25491,0,0,0,52,1,4,1,2,3,2019,1,1,8,0,32,33,15,1,0,1,0,16.806969,16.806969,0,0,0,0,0,0,0,0,0,0,0,3.7457154,0,0,0,54.200001,57.490002,56.290001,52.369999,5,1,1,0,0,9,4,1,1197,359103.38,0,0,3155.2014 -16065,19720,35887,35886,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,7.0358324,7.698071,0,1,0,-9,10,0,-2,13.86445,0,0,0,54,2,4,1,2,2,2019,1,2,8,0,35,35,15,1,0,1,0,4.1906028,4.1906028,0,0,0,0,0,0,0,0,0,0,0,8.2330008,0,0,0,56.290001,52.369999,54.200001,57.490002,6,1,1,0,0,9,4,1,1197,359103.38,0,0,3155.2014 -16066,19721,35888,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,0,4,8.0026636,8.2706776,0,3,0,0,0,-9,0,-1013.7747,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,13,38,15,1,0,-9,0,44.885017,44.885017,0,0,0,0,0,0,0,0,0,0,0,2.5715303,0,0,0,37.810001,62.389999,-9,-9,5,1,1,0,0,7,4,0,271,1559.1826,0,0,2295.5798 -16067,19722,35889,-9,-9,-9,1,1,1,40,3,0,0,0,2,-9,1,1,0,0,2,8.5152464,8.0737867,0,3,0,0,0,-9,0,-1013.8638,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,20,33,15,1,0,-9,0,19.912161,19.912161,0,0,0,0,0,0,0,0,0,0,0,5.6986518,0,0,0,55.759998,28.700001,-9,-9,6,1,1,0,0,4,4,1,813,-134189.86,0,0,905.46625 -16068,19723,35890,-9,35892,35893,3,1,1,17,2,0,2,0,2,1,2,3,0,0,4,6.3666644,6.6730924,0,2,0,0,0,-9,0,-990.3042,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,12,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8874526,0,0,0,48,59,-9,-9,5,2,3,0,0,2,2,1,580.25,77862.188,0,0,3048.1738 -16068,19723,35891,-9,35892,35893,5,1,1,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-946.02258,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,2,2,1,580.25,77862.188,0,0,3048.1738 -16068,19723,35892,35893,-9,-9,1,1,0,41,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,24,0,0,-55.009056,0,0,1,41,2,4,1,2,3,2019,3,2,17,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.02,47.889999,52,55,3,2,3,0,0,2,2,1,580.25,77862.188,0,0,3048.1738 -16068,19723,35893,35892,-9,-9,2,1,1,41,1,0,2,0,2,-9,1,1,0,0,4,6.692687,6.5588903,0,2,0,-9,24,0,0,65.525185,0,0,0,41,2,3,3,3,3,2019,2,1,9,1,35,30,15,1,0,3,0,2.6756706,2.6756706,0,0,0,0,0,0,0,0,1,1,0,.7883029,0,0,0,52,55,37.02,47.889999,5,2,3,0,0,2,2,1,580.25,77862.188,0,0,3048.1738 -16069,19724,35894,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1044.7662,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.790001,46.82,-9,-9,4,4,2,0,1,8,1,0,1654,0,0,0,1667.4633 -16070,19725,35895,35896,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.4149466,8.3925266,0,1,0,-9,15,0,14,19.073347,0,0,0,49,1,3,1,3,2,2019,1,3,6,0,38,38,15,1,0,1,0,18.963419,18.963419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.900002,51.84,6,1,1,0,0,8,5,1,921,1400512.6,0,0,3374.8447 -16070,19725,35896,35895,35897,-9,3,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,8.679039,8.6163292,0,1,0,-9,15,0,-14,-41.548424,0,0,0,63,2,4,1,3,3,2019,1,1,10,0,44,39,15,1,0,1,0,13.262078,13.262078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.900002,51.84,57.16,56.150002,6,3,4,0,0,8,5,1,921,1400512.6,0,0,3374.8447 -16070,19726,35897,-9,-9,-9,2,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,5.139617,4.9743094,3,0,0,0,-9,0,-942.57025,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.167254,0,0,57.93,46.290001,-9,-9,7,3,4,0,0,8,2,1,510,49972.988,0,0,1111.1356 -16071,19727,35898,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,0,2,7.794147,7.7049112,5.6886435,4,0,-9,0,1,0,-935.69049,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,23,11,30,8,15,1,1,-9,0,7.4842992,7.4842992,0,0,0,0,0,0,0,0,1,1,0,0,5.5958009,0,0,24.27,55.779999,-9,-9,3,1,1,0,0,13,3,1,825,72021.297,0,0,2585.5388 -16072,19728,35899,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,2,1,0,1,3,7.9774079,7.917428,0,3,0,0,0,-9,0,-897.13727,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,62,0,15,1,0,-9,0,5.8331466,5.8331466,0,0,0,0,0,0,0,0,1,1,0,6.5556369,0,0,0,32.650002,56.799999,-9,-9,6,1,1,0,0,7,4,0,647,41813.273,0,0,98.853859 -16073,19729,35900,35901,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,0,5,8.3313723,8.1099262,0,1,0,-9,1,-9,-4,21.552794,-9,1,1,33,1,2,1,3,2,2019,1,2,5,0,35,0,15,1,0,1,0,12.427808,12.427808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49.68,50.490002,7,1,1,0,0,13,5,1,223.5,102825.45,0,0,3112.103 -16073,19729,35901,35900,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,0,2,8.6108112,8.5675726,0,1,0,-9,1,-9,4,-23.148989,-9,0,0,29,2,5,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,18.842915,18.842915,0,0,0,0,0,0,0,0,0,0,0,.74919784,0,0,0,49.68,50.490002,51.73,58.82,6,1,1,0,0,13,5,1,223.5,102825.45,0,0,3112.103 -16074,19730,35902,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1089.8969,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,38,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1672778,0,0,0,43.369999,57.279999,-9,-9,4,1,1,0,0,8,1,1,295,270341.84,0,0,2230.53 -16075,19731,35903,-9,35905,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-979.12787,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,369.33334,-76448.82,0,0,3150.1965 -16075,19731,35904,-9,35905,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-920.40497,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,2,3,1,369.33334,-76448.82,0,0,3150.1965 -16075,19731,35905,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,2,1,0,0,4,7.9695449,8.1612988,0,4,0,0,0,-9,0,-1116.2958,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,42,46,15,1,0,-9,0,11.065579,11.065579,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.259998,-9,-9,5,1,1,0,0,2,3,1,369.33334,-76448.82,0,0,3150.1965 -16076,19732,35906,35909,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,0,3,8.5759668,8.5607567,0,2,0,-9,20,-9,1,-17.647156,-9,0,0,45,2,4,1,3,3,2019,1,1,18,7,40,0,15,1,1,1,0,13.545163,13.545163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.639999,54.119999,49.860001,55.310001,4,1,1,0,0,2,4,1,335.5,237893.63,0,0,3206.9795 -16076,19732,35907,-9,35909,35906,3,1,0,17,2,0,2,1,2,-9,7,2,0,0,3,0,4.5834975,4.9827738,2,0,-9,0,-9,0,-1092.2354,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.284605,0,0,0,40.650002,57.360001,-9,-9,5,1,1,0,0,2,4,1,335.5,237893.63,0,0,3206.9795 -16076,19732,35908,-9,35909,35906,4,1,0,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1036.3422,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,4,1,335.5,237893.63,0,0,3206.9795 -16076,19732,35909,35906,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,0,4,7.9473906,7.7847052,0,2,0,-9,20,-9,-1,13.75992,-9,0,0,46,3,3,1,2,3,2019,1,2,11,0,38,0,15,1,0,1,0,7.8183851,7.8183851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.860001,55.310001,41.639999,54.119999,5,1,1,0,0,2,4,1,335.5,237893.63,0,0,3206.9795 -16077,19733,35910,35911,-9,-9,2,1,0,60,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,7,0,-5,0,0,0,0,65,3,2,1,3,3,2019,3,1,11,2,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,60.529999,48.349998,5,1,1,0,0,13,1,1,913,202738.34,0,0,33.427246 -16077,19733,35911,35910,-9,-9,1,1,1,65,1,0,0,0,3,-9,1,1,0,0,2,0,0,0,1,0,-9,7,0,5,0,0,0,0,60,3,3,3,3,3,2019,2,2,6,0,0,56,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.529999,48.349998,49,48,7,1,1,0,0,13,1,1,913,202738.34,0,0,33.427246 -16078,19734,35912,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-970.19232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,36,-9,-9,4,1,1,0,1,9,1,0,190,187474.14,0,0,1218.5544 -16079,19735,35913,-9,-9,-9,1,1,0,84,2,0,0,0,2,-9,4,3,0,0,2,0,7.3344669,7.0959482,3,0,0,0,-9,0,-928.89282,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.4458628,0,0,63.009998,25.24,-9,-9,6,1,1,0,0,2,3,1,435,470248.69,0,0,1732.2437 -16080,19736,35914,-9,35915,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1053.4628,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,9,3,1,1629.5,227019.84,0,0,3059.1189 -16080,19736,35915,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,2,1,0,0,4,7.9154377,8.4317188,6.9161687,4,0,0,0,-9,0,-935.29059,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,35,35,15,1,0,-9,0,11.039097,11.039097,0,0,0,0,0,0,0,0,1,1,0,6.7753615,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,3,1,1629.5,227019.84,0,0,3059.1189 -16081,19737,35916,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,0,5,6.8589931,6.7315164,0,4,0,0,0,-9,0,-930.47955,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,16,15,1,0,-9,0,7.7236347,7.7236347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.869999,-9,-9,6,1,1,0,0,4,2,0,630,-69329.117,0,0,2152.4863 -16081,19737,35917,-9,35916,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1123.8835,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,630,-69329.117,0,0,2152.4863 -16082,19738,35918,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,0,4,0,6.0019689,6.4305029,3,0,-9,0,1,0,-1035.0177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1534452,0,0,54.200001,57.490002,-9,-9,4,1,1,0,0,9,2,1,175,463350.59,0,0,1517.4576 -16083,19739,35919,-9,35920,35921,3,1,0,17,2,0,1,0,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-937.64929,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3751035,0,0,0,45.43,53.5,-9,-9,6,1,1,0,0,9,5,1,545.66669,1344180,0,0,5689.0518 -16083,19739,35920,35921,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,0,4,9.8584032,9.7001219,0,2,0,-9,6,0,-3,197.03445,0,0,0,57,2,5,1,2,3,2019,1,1,6,0,50,60,15,1,0,1,0,41.651413,41.651413,0,0,0,0,0,0,0,0,0,0,0,4.2525067,0,0,0,54.200001,57.490002,60.02,56.419998,6,1,1,0,0,9,5,1,545.66669,1344180,0,0,5689.0518 -16083,19739,35921,35920,-9,-9,1,1,1,57,1,0,1,0,2,-9,1,1,0,0,5,6.3903589,6.4758444,0,2,0,-9,6,0,3,-72.132973,0,0,0,54,2,4,1,3,3,2019,1,2,11,0,30,30,15,1,0,1,0,2.699357,2.699357,0,0,0,0,0,0,0,0,0,0,0,3.3076375,0,0,0,60.02,56.419998,54.200001,57.490002,6,1,1,0,0,9,5,1,545.66669,1344180,0,0,5689.0518 -16084,19740,35922,35923,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,0,5,0,8.0043449,7.703444,1,0,-9,12,0,-11,82.558464,0,0,0,69,2,4,3,2,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2878609,7.7530971,0,0,54.349998,57.84,60.119999,54.799999,6,1,1,0,0,6,4,1,816,1835263.8,0,0,3799.9844 -16084,19740,35923,35922,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.8869414,8.2566605,1,0,-9,12,0,11,4.1759839,0,0,0,58,2,5,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8514819,8.0938807,0,0,60.119999,54.799999,54.349998,57.84,6,1,1,0,0,6,4,1,816,1835263.8,0,0,3799.9844 -16085,19741,35924,35925,-9,-9,2,1,1,61,1,0,0,0,3,-9,4,3,0,0,5,0,7.5642738,6.893024,1,0,-9,11,0,-1,-17.843781,0,0,0,62,2,2,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.749527,7.6513925,0,0,57.060001,57.759998,41.150002,27.24,7,1,1,0,0,5,4,1,507,624162.25,0,0,2801.9419 -16085,19741,35925,35924,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,2,8.4492855,8.4322548,7.1586671,1,0,-9,32,0,1,64.470352,0,0,0,61,3,5,3,3,2,2019,2,2,15,3,35,45,15,1,0,4,0,14.210298,14.210298,0,0,0,0,0,0,0,0,0,0,0,4.5198135,7.2787967,0,0,41.150002,27.24,57.060001,57.759998,6,1,1,0,0,5,4,1,507,624162.25,0,0,2801.9419 -16086,19742,35926,35927,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,8.6050282,8.4670715,0,2,0,-9,9,0,-1,-3.7497818,0,0,0,45,2,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,0,1,0,14.846288,14.846288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,61.259998,51.57,5,1,1,0,0,2,4,1,2117.6667,-76765.602,0,0,2770.9124 -16086,19742,35927,35926,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.2306881,7.5501609,0,2,0,-9,23,0,1,-6.108541,0,0,0,44,2,4,1,2,2,2019,1,2,6,0,23,23,15,1,0,1,0,8.4759684,8.4759684,0,0,0,0,0,0,0,0,1,1,0,3.6164405,0,0,0,61.259998,51.57,51,56,6,1,1,0,0,2,4,1,2117.6667,-76765.602,0,0,2770.9124 -16086,19742,35928,-9,35927,35926,4,1,0,17,2,0,1,1,2,0,7,2,0,0,5,5.1914496,5.926363,4.3124056,2,0,0,0,-9,0,-1000.0159,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0365953,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,2,4,1,2117.6667,-76765.602,0,0,2770.9124 -16086,19743,35929,-9,35927,35926,3,1,0,21,2,0,1,0,2,-9,2,1,0,0,4,7.518198,7.4807234,0,3,0,0,0,-9,0,-1040.1031,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,36,0,15,1,0,-9,1,5.2134485,5.2134485,0,0,0,0,0,0,0,0,1,1,0,.090978079,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,2,3,1,355,220319.3,0,0,149.05351 -16087,19744,35930,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,3,3,0,1,2,0,6.4541836,6.2647605,3,0,0,0,-9,0,-1004.2175,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5005989,0,0,56.5,29.57,-9,-9,5,1,1,1,0,13,2,0,1923,628465.19,0,0,1746.1384 -16088,19745,35931,35932,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,2,7.9027085,7.8965316,0,1,0,-9,40,0,-3,130.59782,0,0,0,59,2,3,1,3,3,2019,1,1,23,11,35,30,15,1,1,1,0,7.998436,7.998436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.799999,45.509998,50,49,5,1,1,0,0,9,4,1,723.5,295362.91,0,0,2763.4094 -16088,19745,35932,35931,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,3,8.0004911,7.9157882,5.2614536,1,0,-9,40,0,3,-46.189495,0,0,0,56,2,2,1,3,3,2019,1,2,10,1,40,45,15,1,0,1,0,8.7191114,8.7191114,0,0,0,0,0,0,0,0,0,0,0,0,5.1096625,0,0,50,49,33.799999,45.509998,5,1,1,0,0,9,4,1,723.5,295362.91,0,0,2763.4094 -16089,19746,35933,35934,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,0,2,9.0453835,8.8916731,0,1,0,-9,4,0,2,25.455408,0,1,0,27,2,4,1,2,-9,2019,1,2,19,7,55,60,15,1,1,1,0,14.717031,14.717031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.66,34.779999,58.150002,52.91,3,1,1,0,0,9,5,1,317,53495.711,0,0,4022.8005 -16089,19746,35934,35933,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,0,4,8.0487375,7.6559129,0,1,0,-9,4,0,-2,32.926243,0,1,1,29,2,2,1,-9,-9,2019,1,1,8,0,44,62,15,1,0,1,0,7.2055607,7.2055607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.150002,52.91,33.66,34.779999,6,1,1,0,0,9,5,1,317,53495.711,0,0,4022.8005 -16090,19747,35935,35936,-9,-9,1,1,1,90,1,0,0,0,2,-9,4,3,0,0,2,0,7.6401477,8.0035315,1,0,-9,10,0,6,175.19972,0,0,0,84,1,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,11.69661,0,0,0,0,0,1,1,0,8.7227974,7.6381655,0,0,53.830002,23.540001,52,54.509998,6,1,1,0,0,9,4,1,1936.5,1086731.9,0,0,7116.6895 -16090,19747,35936,35935,-9,-9,2,1,0,84,1,0,0,0,1,-9,4,3,0,0,3,0,7.7777739,8.1467018,1,0,-9,10,0,-6,-15.407095,0,0,0,90,2,2,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.4046578,8.1064329,1.7902919,1,52,54.509998,53.830002,23.540001,6,1,1,0,0,9,4,1,1936.5,1086731.9,0,0,7116.6895 -16091,19748,35937,35938,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,8.0388947,8.3110313,4.2705765,1,0,-9,8,0,1,-20.400286,0,0,0,61,1,2,1,-9,-9,2019,1,1,10,0,60,33,15,1,0,1,0,6.2130737,6.2130737,0,0,0,0,0,0,0,0,0,0,0,4.4491272,4.195044,0,0,52,54.509998,43.130001,52.080002,3,1,1,0,0,8,3,1,611.5,696451.06,0,0,1277.9041 -16091,19748,35938,35937,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,0,2,0,6.5358863,6.7063169,1,0,-9,8,0,-1,134.82355,0,0,0,62,2,3,1,1,2,2019,1,2,14,4,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2380171,0,0,0,43.130001,52.080002,52,54.509998,3,1,1,0,0,8,3,1,611.5,696451.06,0,0,1277.9041 -16092,19749,35939,35941,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,0,5,7.642406,7.5008192,0,2,0,-9,11,0,-2,-72.892235,0,0,1,39,2,3,1,2,2,2019,1,1,10,0,17,18,15,1,0,1,0,14.912889,14.912889,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4305604,3,51.73,58.82,57.330002,53.459999,5,1,1,0,0,1,2,1,366.25,12802.903,0,0,811.96948 -16092,19749,35940,-9,35939,35941,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-830.99713,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,2,1,366.25,12802.903,0,0,811.96948 -16092,19749,35941,35939,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,0,3,0,0,0,2,0,-9,11,0,2,62.502201,0,0,0,37,2,5,1,2,2,2019,1,2,7,0,0,84,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,51.73,58.82,6,1,1,0,0,1,2,1,366.25,12802.903,0,0,811.96948 -16092,19749,35942,-9,35939,35941,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.0672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,2,1,366.25,12802.903,0,0,811.96948 -16093,19750,35943,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,7.8318896,7.8462329,3,0,0,0,-9,0,-1065.0577,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.3378493,0,0,0,1,1,0,0,7.500905,0,0,64.639999,48.759998,-9,-9,7,1,1,0,0,2,3,1,1253,501829.69,0,0,1548.6472 -16094,19751,35944,35945,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,4,0,7.4405222,7.5943403,1,0,-9,26,0,6,90.651482,0,0,0,68,1,4,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0254917,8.0649748,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,12,3,1,288,590665,0,0,3303.6128 -16094,19751,35945,35944,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,0,4,0,6.743329,6.9478226,1,0,-9,26,0,-6,42.118816,0,0,0,74,3,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7348614,6.927927,0,0,57.16,56.150002,57.16,56.150002,7,1,1,0,0,12,3,1,288,590665,0,0,3303.6128 -16095,19752,35946,35950,-9,-9,2,1,1,51,1,0,3,0,3,-9,1,1,0,0,3,8.4381123,8.453104,0,2,0,-9,19,0,11,13.757158,0,0,0,40,2,4,3,3,2,2019,2,1,11,1,40,30,15,1,0,3,0,11.712033,11.712033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,54.200001,57.490002,5,2,3,0,0,8,3,0,460.60001,435653.06,0,0,3501.5085 -16095,19752,35947,-9,35950,35946,3,1,0,17,2,0,3,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.80811,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,2,3,0,0,8,3,0,460.60001,435653.06,0,0,3501.5085 -16095,19752,35948,-9,35950,35946,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-933.99634,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,8,3,0,460.60001,435653.06,0,0,3501.5085 -16095,19752,35949,-9,35950,35946,5,1,0,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1068.2052,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,2,3,0,0,8,3,0,460.60001,435653.06,0,0,3501.5085 -16095,19752,35950,35946,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,20,0,-11,2.7262828,0,0,1,51,3,3,1,3,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0458148,0,0,0,54.200001,57.490002,49,50,4,2,3,0,0,8,3,0,460.60001,435653.06,0,0,3501.5085 -16096,19753,35951,35952,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,0,4,0,5.6873422,6.0502143,1,0,-9,1,-9,1,150.69571,-9,0,0,84,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.3540478,5.4257398,38.109509,1,51.240002,58.84,47.720001,38.98,6,1,1,0,0,11,2,1,1533,180598.56,0,0,1275.903 -16096,19753,35952,35951,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,0,2,0,5.044579,5.1665149,1,0,-9,1,-9,-1,-62.156475,-9,0,0,85,3,4,3,3,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3903507,5.4760156,0,0,47.720001,38.98,51.240002,58.84,4,1,1,0,0,11,2,1,1533,180598.56,0,0,1275.903 -16097,19754,35953,35954,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,5,0,7.480309,7.1883364,1,0,-9,5,0,-2,67.300697,0,0,0,72,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8554578,7.3669152,0,0,58.049999,54.52,58.049999,54.52,1,1,1,0,0,10,5,1,1169,2158377.5,0,0,5371.2568 -16097,19754,35954,35953,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,0,5,0,8.6483574,8.6051674,1,0,-9,5,0,2,-26.631876,0,0,0,70,3,5,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9970918,8.6828299,0,0,58.049999,54.52,58.049999,54.52,7,1,1,0,0,10,5,1,1169,2158377.5,0,0,5371.2568 -16098,19755,35955,35956,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,53,0,-3,-23.426254,0,0,0,76,2,4,3,2,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8196173,0,0,0,51.240002,58.84,44.59,53.540001,6,1,1,0,0,10,2,1,564.5,1040644.6,0,0,1753.1951 -16098,19755,35956,35955,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,4,0,6.7691312,7.3212476,1,0,-9,53,0,3,20.195129,0,0,0,73,2,4,3,1,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0651526,6.9954696,0,0,44.59,53.540001,51.240002,58.84,6,1,1,0,0,10,2,1,564.5,1040644.6,0,0,1753.1951 -16099,19756,35957,35959,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,4,6.2756844,5.9976897,0,2,0,-9,7,0,3,89.297401,0,0,0,46,3,3,1,3,3,2019,1,3,12,0,9,0,15,1,0,1,0,5.7591348,5.7591348,0,0,0,0,0,0,0,7,1,1,0,0,0,10.924204,3,60.119999,54.799999,36.650002,58.880001,5,1,1,0,0,4,3,0,565.33331,99213.289,0,0,1345.6831 -16099,19756,35958,-9,35957,35959,4,1,1,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1045.3528,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,3,0,565.33331,99213.289,0,0,1345.6831 -16099,19756,35959,35957,-9,-9,3,1,1,46,1,0,1,0,3,-9,2,1,0,0,3,7.5166655,7.3268003,0,2,0,-9,7,0,-3,51.765732,0,0,0,49,2,4,1,-9,-9,2019,1,1,12,0,37,24,15,1,0,1,0,5.0311003,5.0311003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.650002,58.880001,60.119999,54.799999,4,1,1,0,0,4,3,0,565.33331,99213.289,0,0,1345.6831 -16099,19757,35960,-9,35957,35959,2,1,0,19,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-991.55908,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,-9,-9,7,1,1,0,0,4,1,0,211,-222339.17,0,0,0 -16100,19758,35961,35962,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,1,1,7.6623716,7.5068216,0,1,0,-9,43,0,-6,6.9841051,0,0,0,67,2,3,3,3,2,2019,2,1,14,2,23,23,15,1,0,4,0,11.475816,11.475816,0,0,0,0,0,0,0,2,1,1,0,0,0,4.5994287,3,36.060001,24.35,58.490002,50.200001,6,1,1,0,0,11,3,1,428.5,1005584.9,0,0,2326.5806 -16100,19758,35962,35961,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,6.4644451,6.1761484,1,0,-9,43,0,6,-75.282837,0,0,0,61,1,1,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8676171,6.3583798,9.3160734,2,58.490002,50.200001,36.060001,24.35,6,1,1,0,0,11,3,1,428.5,1005584.9,0,0,2326.5806 -16100,19759,35963,-9,35961,35962,3,1,1,37,2,0,0,0,2,-9,2,1,0,0,5,8.9108534,8.5576191,0,3,0,-9,0,-9,0,-948.8833,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.299999,59.889999,-9,-9,7,1,1,0,0,11,5,1,1227,212658.72,0,0,3133.9441 -16101,19760,35964,35968,-9,-9,2,1,0,26,1,2,4,0,2,-9,6,3,0,1,5,0,0,0,2,0,-9,1,-9,-2,0,-9,1,1,28,3,4,3,-9,-9,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,78.04705,3,57.650002,56.130001,49,58,7,1,1,0,0,1,1,0,1061.3334,0,0,0,1828.3951 -16101,19760,35965,-9,35964,35968,5,1,0,2,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1026.8467,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,1,0,1061.3334,0,0,0,1828.3951 -16101,19760,35966,-9,35964,35968,4,1,0,4,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-810.07727,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,1,0,1061.3334,0,0,0,1828.3951 -16101,19760,35967,-9,35964,35968,6,1,1,0,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-967.573,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,1,1,0,1061.3334,0,0,0,1828.3951 -16101,19760,35968,35964,-9,-9,1,1,1,28,1,2,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,1,-9,2,0,-9,1,0,26,2,5,3,3,2,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,66.481094,3,49,58,57.650002,56.130001,5,1,1,0,0,1,1,0,1061.3334,0,0,0,1828.3951 -16101,19760,35969,-9,35964,35968,3,1,0,8,2,2,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-930.66254,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,1,0,1061.3334,0,0,0,1828.3951 -16102,19761,35970,-9,35972,35971,4,1,0,10,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1029.3201,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,7,4,1,1014,278004.97,0,0,2485.394 -16102,19761,35971,35972,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,0,2,8.3971176,8.2308846,0,2,0,-9,20,0,0,19.599613,0,0,0,48,2,4,1,2,2,2019,1,2,11,0,47,47,15,1,0,1,0,11.114789,11.114789,0,0,0,0,0,0,0,0,1,1,0,4.381577,0,0,0,49.849998,50.470001,48.529999,58.91,5,1,1,0,0,7,4,1,1014,278004.97,0,0,2485.394 -16102,19761,35972,35971,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,4,7.7617044,7.6060247,0,2,0,-9,21,0,0,34.011417,0,0,0,48,2,2,1,2,1,2019,1,1,9,0,21,22,15,1,0,1,0,14.653494,14.653494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.529999,58.91,49.849998,50.470001,6,1,1,0,0,7,4,1,1014,278004.97,0,0,2485.394 -16102,19761,35973,-9,35972,35971,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-961.21002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,46,-9,-9,4,1,1,0,0,7,4,1,1014,278004.97,0,0,2485.394 -16103,19762,35974,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-932.87616,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.1521592,3,18.84,25.33,-9,-9,2,1,1,0,0,13,1,0,393,-91041.078,0,0,1906.9526 -16104,19763,35975,35976,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,0,2,8.2396231,8.2999735,0,2,0,-9,3,0,0,49.915646,0,0,0,37,2,3,1,2,3,2019,1,2,15,2,48,48,15,1,0,1,0,9.6066837,9.6066837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.299999,46.959999,49.580002,55.59,3,1,1,0,1,12,3,1,1608,-140606.81,0,0,3895.1807 -16104,19763,35976,35975,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,3,7.2667584,7.0981717,0,2,0,-9,3,0,0,-31.601376,0,0,1,37,2,2,1,2,-9,2019,1,1,11,0,32,21,15,1,0,1,0,5.2702956,5.2702956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.580002,55.59,48.299999,46.959999,5,1,1,0,1,12,3,1,1608,-140606.81,0,0,3895.1807 -16105,19764,35977,35979,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,0,4,8.281395,8.4138527,0,2,0,-9,8,0,2,56.221687,0,0,0,29,2,4,1,-9,-9,2019,1,1,4,0,45,38,15,1,0,1,0,10.95342,10.95342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,58.150002,52.91,6,1,1,0,0,1,4,1,1535,91455.57,0,0,3592.0996 -16105,19764,35978,-9,35979,35977,3,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-822.87103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,4,1,1535,91455.57,0,0,3592.0996 -16105,19764,35979,35977,-9,-9,1,1,0,29,1,0,2,0,2,-9,2,1,0,0,4,7.9793096,8.3010864,0,2,0,-9,8,0,-2,63.595043,0,1,1,31,2,4,1,2,2,2019,1,2,8,0,38,30,15,1,0,1,0,10.289548,10.289548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,58.150002,52.91,6,1,1,0,0,1,4,1,1535,91455.57,0,0,3592.0996 -16105,19764,35980,-9,35979,35977,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.4355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,1,4,1,1535,91455.57,0,0,3592.0996 -16106,19765,35981,35982,-9,-9,1,1,0,60,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,41,0,-10,0,0,0,0,70,3,3,3,3,3,2019,4,2,11,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.310001,20.4,53,47,6,1,1,0,0,2,1,0,1455,85606.047,0,0,1583.3235 -16106,19765,35982,35981,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,1,3,0,0,0,1,0,-9,7,0,10,0,0,0,0,60,3,1,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,44.310001,20.4,5,1,1,0,0,2,1,0,1455,85606.047,0,0,1583.3235 -16107,19766,35983,35984,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,0,3,8.5783052,8.7121258,0,2,0,-9,12,0,2,136.86977,0,0,0,36,2,4,1,2,2,2019,1,2,7,0,42,44,15,1,0,1,0,12.58993,12.58993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,48.869999,58.549999,6,1,1,0,0,6,4,1,650.33331,216779.33,0,0,2055.6475 -16107,19766,35984,35983,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,19,0,-2,-47.506962,0,0,1,38,2,3,1,2,3,2019,1,1,9,0,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,57.330002,53.459999,6,1,1,0,0,6,4,1,650.33331,216779.33,0,0,2055.6475 -16107,19766,35985,-9,35984,35983,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-936.25604,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,650.33331,216779.33,0,0,2055.6475 -16108,19767,35986,35987,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,0,4,9.0458593,9.2653446,0,2,0,-9,10,0,-1,-44.667217,0,0,0,38,1,3,3,2,1,2019,2,2,10,1,55,45,15,1,0,3,0,17.576689,17.576689,0,0,0,0,0,0,0,0,1,1,0,3.4276156,0,0,0,51,56,15.08,66.279999,5,2,3,0,0,9,4,1,425,338581.06,0,0,4666.1348 -16108,19767,35987,35986,-9,-9,2,1,0,38,1,0,2,0,1,-9,6,3,0,1,3,0,0,0,2,0,-9,10,0,1,-45.686619,0,0,1,37,1,4,1,3,3,2019,3,1,32,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.651731,3,15.08,66.279999,51,56,3,2,3,0,1,9,4,1,425,338581.06,0,0,4666.1348 -16108,19767,35988,-9,35987,35986,4,1,0,3,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.3586,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,9,4,1,425,338581.06,0,0,4666.1348 -16108,19767,35989,-9,35987,35986,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1067.283,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,9,4,1,425,338581.06,0,0,4666.1348 -16109,19768,35990,35991,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,4,8.0561066,8.3062859,5.7174478,1,0,-9,6,0,5,-99.20134,0,0,0,54,3,4,1,3,3,2019,1,2,7,0,50,45,15,1,0,1,0,8.6403627,8.6403627,0,0,0,0,0,0,0,2,0,0,0,6.0801415,5.5629869,15.679869,3,58.720001,51.290001,58.150002,52.91,6,1,1,0,0,7,4,0,1328,1143781.1,0,0,2199.0972 -16109,19768,35991,35990,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,0,4,7.9027104,8.1826286,0,1,0,-9,6,0,-5,-112.2149,0,0,0,59,2,4,1,2,2,2019,1,1,8,0,35,35,15,1,0,1,0,10.383287,10.383287,0,0,0,0,0,0,0,0,0,0,0,.44731748,0,0,0,58.150002,52.91,58.720001,51.290001,6,1,1,0,0,7,4,0,1328,1143781.1,0,0,2199.0972 -16110,19769,35992,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,1,1,0,0,4,7.3295312,8.2498512,7.83954,3,0,0,0,-9,0,-1011.0054,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,10,22,15,1,0,-9,0,20.163319,20.163319,0,0,0,0,0,0,0,0,0,0,0,8.7640572,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,9,4,1,1117,474775.91,0,0,2170.2585 -16111,19770,35993,35994,-9,-9,2,1,0,48,1,0,0,0,2,-9,1,1,0,0,5,9.7389221,9.7664614,0,1,0,-9,4,0,-4,118.12757,0,0,0,52,1,2,1,-9,-9,2019,1,1,8,0,60,48,15,1,0,1,0,35.209133,35.209133,0,0,0,0,0,0,0,0,0,0,0,6.7444301,0,0,0,62.389999,56.709999,41.360001,45.209999,7,1,1,0,0,6,5,1,1519,415430.59,0,0,10391.275 -16111,19770,35994,35993,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,2,8.5019464,8.776494,0,1,0,-9,4,0,4,-19.748852,0,0,0,48,2,5,1,2,2,2019,1,2,12,0,43,24,15,1,0,1,0,15.331798,15.331798,0,0,0,0,0,0,0,0,0,0,0,5.3163376,0,0,0,41.360001,45.209999,62.389999,56.709999,5,1,1,0,0,6,5,1,1519,415430.59,0,0,10391.275 -16112,19771,35995,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,1,3,0,3.7993054,3.9945152,3,0,0,0,-9,0,-859.62573,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5811424,3.7061012,0,0,37.279999,55.900002,-9,-9,5,1,1,0,0,6,1,0,159,395809.56,0,0,760.23651 -16113,19772,35996,-9,35997,35998,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1032.5919,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,4,5,1,1044.75,251751.09,0,0,4260.4448 -16113,19772,35997,35998,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,0,5,9.0330372,8.6458797,0,2,0,-9,7,0,-6,-80.05159,0,0,1,47,2,3,1,2,2,2019,1,1,7,0,32,30,15,1,0,1,0,23.204733,23.204733,0,0,0,0,0,0,0,0,1,1,0,6.4536972,0,0,0,64.959999,43.189999,47.779999,52.349998,6,1,1,0,0,4,5,1,1044.75,251751.09,0,0,4260.4448 -16113,19772,35998,35997,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,0,3,8.8502798,8.7175426,0,2,0,-9,7,0,6,94.592621,0,0,0,41,2,5,1,3,3,2019,1,2,15,6,90,40,15,1,1,1,0,6.7647686,6.7647686,0,0,0,0,0,0,0,0,1,1,0,3.2050083,0,0,0,47.779999,52.349998,64.959999,43.189999,4,1,1,0,0,4,5,1,1044.75,251751.09,0,0,4260.4448 -16113,19772,35999,-9,35997,35998,4,1,0,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.2411,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,4,5,1,1044.75,251751.09,0,0,4260.4448 -16114,19773,36000,36001,-9,-9,2,1,1,64,1,0,0,0,3,-9,1,1,0,0,3,8.3810005,8.2763405,0,1,0,-9,11,0,13,-9.3373222,0,0,0,51,1,4,1,3,3,2019,1,1,11,0,30,40,15,1,0,1,0,17.963856,17.963856,0,0,0,0,0,0,0,0,0,0,0,2.3067977,0,0,0,56.349998,48.330002,44.419998,59.09,6,1,1,0,0,7,4,1,611.5,436485.63,0,0,1856.5759 -16114,19773,36001,36000,-9,-9,1,1,0,51,1,0,0,0,1,-9,1,1,0,0,4,5.3059936,5.2785378,0,1,0,-9,11,0,-13,115.88177,0,0,0,64,3,3,1,2,3,2019,1,2,13,1,40,42,15,1,0,1,0,.48429379,.48429379,0,0,0,0,0,0,0,0,0,0,0,3.382422,0,0,0,44.419998,59.09,56.349998,48.330002,5,1,1,0,0,7,4,1,611.5,436485.63,0,0,1856.5759 -16115,19774,36002,36003,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,4,0,7.8526592,7.5736966,1,0,-9,8,0,-1,35.923275,0,0,0,71,3,5,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7467623,0,0,57.73,54.529999,54.099998,59.110001,6,1,1,0,0,11,3,1,732.5,708069.38,0,0,3067.884 -16115,19774,36003,36002,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,0,5,0,5.1065993,5.0582013,1,0,-9,8,0,1,-16.285259,0,0,0,70,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.2555385,0,0,54.099998,59.110001,57.73,54.529999,6,1,1,0,0,11,3,1,732.5,708069.38,0,0,3067.884 -16116,19775,36004,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,0,3,0,7.664916,7.476368,3,0,0,0,-9,0,-1005.1065,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9718666,7.6552596,0,0,61.040001,39.41,-9,-9,6,1,1,0,0,9,3,0,1053,656118.94,0,0,1248.9591 -16117,19776,36005,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,0,5,8.5105181,8.2924385,0,3,0,0,0,-9,0,-978.88672,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,89,0,15,1,0,-9,0,4.9210811,4.9210811,0,0,0,0,0,0,0,2,0,0,0,0,0,3.2135382,3,51.139999,60.450001,-9,-9,6,1,1,0,0,10,4,0,341,348772.38,0,0,1605.9392 -16118,19777,36006,36007,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,0,4,0,0,0,1,0,-9,7,0,2,-68.231819,0,0,0,61,2,4,3,2,2,2019,2,2,6,0,40,45,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.790001,55.860001,6,1,1,0,0,12,2,1,426.5,234104.72,0,0,720.57251 -16118,19777,36007,36006,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,4,0,6.280375,6.7433591,1,0,-9,7,0,-2,39.711464,0,0,0,63,3,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.8223319,9.7711353,3,54.790001,55.860001,57.16,56.150002,7,1,1,0,0,12,2,1,426.5,234104.72,0,0,720.57251 -16119,19778,36008,-9,36010,36009,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.2245,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,508.66666,7955.2324,0,0,2514.0085 -16119,19778,36009,36010,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,0,5,8.8467655,8.4555197,0,2,0,-9,6,0,0,56.286098,0,1,0,29,2,3,1,2,2,2019,1,2,6,0,42,43,15,1,0,1,0,18.781244,18.781244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,54.959999,53.169998,6,1,1,0,0,5,4,1,508.66666,7955.2324,0,0,2514.0085 -16119,19778,36010,36009,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,0,3,7.2364197,7.0589232,0,2,0,-9,6,0,0,-96.016304,0,1,1,29,2,5,1,-9,-9,2019,1,1,7,0,16,16,15,1,0,1,0,8.5232983,8.5232983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,59.43,58.049999,7,1,1,0,0,5,4,1,508.66666,7955.2324,0,0,2514.0085 -16120,19779,36011,36012,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,7.2555256,7.1741581,0,1,0,-9,34,0,2,-201.55005,0,0,0,58,2,3,1,3,3,2019,1,2,13,1,23,28,15,1,0,1,0,7.0665565,7.0665565,0,0,0,0,0,0,0,0,0,0,0,.4610889,0,0,0,49.200001,47.5,51,49,5,1,1,0,0,4,4,1,675,868686.5,0,0,3456.7725 -16120,19779,36012,36011,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.0859976,8.329422,0,1,0,-9,7,0,-2,-127.5169,0,0,0,60,2,3,1,-9,-9,2019,1,1,10,1,38,77,15,1,0,1,0,12.591415,12.591415,0,0,0,0,0,0,0,0,0,0,0,7.7281375,0,0,0,51,49,49.200001,47.5,5,1,1,0,0,4,4,1,675,868686.5,0,0,3456.7725 -16121,19780,36013,36014,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,0,3,7.5452676,7.6984978,4.4185338,1,0,-9,5,0,-1,47.439571,0,1,0,25,1,4,1,2,2,2019,1,2,18,6,33,33,15,1,1,1,0,7.014935,7.014935,0,0,0,0,0,0,0,0,0,0,0,4.9372206,0,0,0,31.83,59.68,47.490002,55.02,5,1,1,0,0,2,4,1,675,77344.281,0,0,2713.4602 -16121,19780,36014,36013,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,0,4,8.2051916,7.8951111,0,1,0,-9,5,0,1,-81.945976,0,1,1,24,1,3,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,8.3531876,8.3531876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.490002,55.02,31.83,59.68,7,1,1,0,0,2,4,1,675,77344.281,0,0,2713.4602 -16122,19781,36015,-9,-9,-9,1,1,0,63,3,0,1,0,3,-9,8,3,1,1,3,0,0,0,4,0,0,0,-9,0,-1016.2444,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,48,-9,-9,5,2,3,0,1,6,1,0,1044,45448.719,0,0,-328.33261 -16122,19782,36016,-9,36017,-9,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-1006.5815,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,6,1,0,2705.5,-38544.695,0,0,2097.437 -16122,19782,36017,-9,36015,-9,2,1,0,38,2,0,1,0,3,-9,6,3,0,1,4,0,0,0,3,0,-9,0,-9,0,-995.36493,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,27.119961,3,49,56,-9,-9,5,2,3,0,0,6,1,0,2705.5,-38544.695,0,0,2097.437 -16123,19783,36018,-9,-9,-9,1,1,0,25,2,0,0,0,2,1,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-948.13147,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.610001,62.709999,-9,-9,3,1,1,1,0,7,1,0,483,0,0,0,1604.1154 -16124,19784,36019,-9,36020,36021,3,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-940.42334,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,1378.3334,-80002.945,0,0,4326.8154 -16124,19784,36020,36021,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,8.3181353,8.1627865,0,2,0,-9,11,0,6,-116.60587,0,0,0,39,2,4,1,2,2,2019,1,2,7,0,26,27,15,1,0,1,0,18.609217,18.609217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,57.16,56.150002,2,1,1,0,0,7,5,1,1378.3334,-80002.945,0,0,4326.8154 -16124,19784,36021,36020,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,0,4,8.9232893,9.1374531,0,2,0,-9,11,0,-6,-34.397709,0,0,0,45,2,4,1,-9,-9,2019,1,1,9,0,45,87,15,1,0,1,0,22.57081,22.57081,0,0,0,0,0,0,0,0,1,1,0,.48810083,0,0,0,57.16,56.150002,54.790001,55.860001,5,1,1,0,0,7,5,1,1378.3334,-80002.945,0,0,4326.8154 -16125,19785,36022,36023,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,0,3,8.0894928,7.9845276,0,1,0,-9,36,0,3,-103.21126,0,0,0,59,2,3,1,3,3,2019,1,1,10,0,35,40,15,1,0,1,0,15.01674,15.01674,0,0,0,0,0,0,0,2,0,0,0,2.1086969,0,4.7306919,3,49.630001,54.220001,44.84,44.400002,4,1,1,0,0,9,4,1,331,1809823.3,0,0,2165.2578 -16125,19785,36023,36022,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.4040666,7.3242259,0,1,0,-9,36,0,-3,-19.096796,0,0,0,62,2,3,1,2,1,2019,1,2,19,7,23,23,15,1,1,1,0,6.3461981,6.3461981,0,0,0,0,0,0,0,0,0,0,0,3.9618621,0,0,0,44.84,44.400002,49.630001,54.220001,6,1,1,0,0,9,4,1,331,1809823.3,0,0,2165.2578 -16125,19786,36024,-9,36023,36022,3,1,0,29,2,0,0,0,1,-9,2,1,0,0,3,7.9498248,7.8418236,0,3,0,0,0,-9,0,-971.15997,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,38,39,15,1,1,-9,1,7.7727804,7.7727804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.200001,57.77,-9,-9,3,1,1,0,0,9,3,1,392,92188.828,0,0,786.2395 -16126,19787,36025,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,4,0,3.8449483,3.5855002,3,0,0,0,-9,0,-1002.1722,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.619242,0,0,56.57,57.779999,-9,-9,6,1,1,0,0,9,1,0,755,375094.63,0,0,2744.6528 -16127,19788,36026,-9,-9,-9,1,1,0,25,2,1,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-963.94806,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,-9,-9,5,1,1,0,0,2,1,0,367.5,14862.301,0,0,813.19629 -16127,19788,36027,-9,36026,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-958.36047,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,1,0,367.5,14862.301,0,0,813.19629 -16128,19789,36028,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,0,3,9.2608929,9.2538519,0,3,0,0,0,-9,0,-908.73938,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,32,11,55,55,15,1,1,-9,0,18.182291,18.182291,0,0,0,0,0,0,0,0,0,0,0,2.7912662,0,0,0,23.209999,60.150002,-9,-9,2,1,1,0,0,1,5,1,321,409913.5,0,0,3218.5862 -16129,19790,36029,36030,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,0,5,8.9718447,9.030921,0,1,0,-9,6,0,-2,58.599895,0,0,1,32,2,4,1,2,2,2019,1,2,16,4,42,45,15,1,1,1,0,16.643085,16.643085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.509998,60.740002,60.130001,46.57,5,1,1,0,0,9,5,1,1047.5,271232.22,0,0,5740.4956 -16129,19790,36030,36029,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,0,4,9.3344793,8.94032,0,1,0,-9,6,0,2,32.149754,0,0,0,30,2,5,1,-9,-9,2019,1,1,6,0,42,40,15,1,0,1,0,30.852854,30.852854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.130001,46.57,53.509998,60.740002,7,1,1,0,0,9,5,1,1047.5,271232.22,0,0,5740.4956 -16130,19791,36031,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,5,0,7.5407395,7.290503,3,0,0,0,-9,0,-914.25598,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1634846,7.4020967,0,0,60.02,56.419998,-9,-9,7,1,1,0,0,13,3,1,953,527043.81,0,0,1923.4741 -16131,19792,36032,36033,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.984931,9.3342514,0,1,0,-9,5,0,-11,-182.11238,0,0,0,63,2,4,1,-9,-9,2019,1,1,11,0,44,0,15,1,0,1,0,24.226349,24.226349,0,0,0,0,0,0,0,0,0,0,0,4.8350224,0,0,0,51.240002,58.84,53.790001,50.75,6,1,1,0,0,9,5,1,967,505954.94,0,0,7939.374 -16131,19792,36033,36032,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,8.4790449,8.8754797,7.6372433,1,0,-9,5,0,11,39.659576,0,0,0,52,1,4,1,2,3,2019,1,2,9,0,24,25,15,1,0,1,0,22.889284,22.889284,0,0,0,0,0,0,0,0,0,0,0,4.6697421,8.4289961,0,0,53.790001,50.75,51.240002,58.84,6,1,1,0,0,9,5,1,967,505954.94,0,0,7939.374 -16132,19793,36034,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,0,5,8.4655008,8.4344683,0,3,0,0,0,-9,0,-956.00769,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.45149717,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,8,5,0,565,-144354.75,0,0,2441.2158 -16133,19794,36035,-9,36036,36037,4,1,1,16,2,0,1,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-978.85486,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5948527,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,7,4,1,1007.6667,310920.56,0,0,3463.0901 -16133,19794,36036,36037,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,3,7.6565628,7.7101669,0,2,0,-9,26,0,3,79.729706,0,0,0,48,1,4,1,2,1,2019,1,2,9,0,31,31,15,1,0,1,0,7.5979719,7.5979719,0,0,0,0,0,0,0,7,0,0,0,1.5410948,0,12.427911,3,46.16,54.360001,48.279999,60.18,6,1,1,0,0,7,4,1,1007.6667,310920.56,0,0,3463.0901 -16133,19794,36037,36036,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,0,4,8.5474539,8.8579378,0,2,0,-9,10,0,-3,84.006714,0,0,0,51,1,3,1,1,-9,2019,1,1,12,0,46,50,15,1,0,1,0,17.385326,17.385326,0,0,0,0,0,0,0,0,0,0,0,2.1080227,0,0,0,48.279999,60.18,46.16,54.360001,6,1,1,0,0,7,4,1,1007.6667,310920.56,0,0,3463.0901 -16133,19795,36038,-9,36036,36037,3,1,0,20,2,0,1,0,2,0,7,2,0,0,4,5.5047708,5.4115887,0,3,0,0,0,-9,0,-968.12915,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,8,4,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.32126427,0,0,0,28.059999,64.419998,-9,-9,6,1,1,0,0,7,2,1,452,36728.234,0,0,2449.3582 -16134,19796,36039,36043,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,0,4,9.325902,9.1010971,0,2,0,-9,23,0,-1,-68.273727,0,0,0,44,1,5,1,2,2,2019,1,1,9,1,45,45,15,1,0,1,0,23.254034,23.254034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,56.470001,59.400002,6,1,1,0,0,5,5,1,562.59998,972397.81,0,0,5339.9399 -16134,19796,36040,-9,36043,36039,4,1,0,14,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1111.2156,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,5,5,1,562.59998,972397.81,0,0,5339.9399 -16134,19796,36041,-9,36043,36039,5,1,1,12,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.9453,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,5,1,562.59998,972397.81,0,0,5339.9399 -16134,19796,36042,-9,36043,36039,3,1,0,17,2,0,3,1,2,0,7,2,0,0,3,5.6014137,5.7213426,0,2,0,0,0,-9,0,-1051.3112,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,49.75,-9,-9,7,1,1,0,0,5,5,1,562.59998,972397.81,0,0,5339.9399 -16134,19796,36043,36039,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,0,5,8.4511442,8.1061325,0,2,0,-9,23,0,1,-35.445377,0,0,1,43,1,4,1,1,2,2019,1,2,7,0,34,41,15,1,0,1,0,11.621192,11.621192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.470001,59.400002,52,56,7,1,1,0,0,5,5,1,562.59998,972397.81,0,0,5339.9399 -16135,19797,36044,-9,-9,-9,1,1,1,91,3,0,0,0,2,-9,4,3,0,0,3,0,5.9980559,5.8553214,3,0,0,0,-9,0,-836.87219,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9490032,0,0,56,44,-9,-9,6,1,1,0,0,2,2,1,423,87772.5,0,0,801.89642 -16136,19798,36045,36047,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,0,3,8.5745668,8.6693783,0,2,0,-9,6,0,4,39.085903,0,0,0,32,1,3,1,-9,-9,2019,1,1,5,0,42,55,15,1,0,1,0,21.677635,21.677635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.099998,49.93,50.650002,53.709999,6,1,1,0,0,4,4,1,859.33331,-41729.602,0,0,1575.319 -16136,19798,36046,-9,36047,36045,3,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1053.7786,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,4,4,1,859.33331,-41729.602,0,0,1575.319 -16136,19798,36047,36045,-9,-9,1,1,0,32,1,1,1,0,1,-9,5,1,0,0,3,0,0,0,2,0,-9,6,0,-4,40.378658,0,0,1,36,1,3,1,-9,-9,2019,1,2,12,1,0,80,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2699425,0,0,0,50.650002,53.709999,56.099998,49.93,5,1,1,0,0,4,4,1,859.33331,-41729.602,0,0,1575.319 -16137,19799,36048,-9,36051,36049,5,1,1,7,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.89581,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,2,0,686.5,0,0,0,3855.9766 -16137,19799,36049,36051,-9,-9,2,1,1,36,1,0,3,0,3,-9,3,3,0,0,3,0,7.2344551,7.1009784,2,0,-9,8,0,-2,-88.051079,0,0,0,38,2,4,3,2,2,2019,4,1,9,0,0,37,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.6699824,0,3.3472204,3,54.369999,54.799999,35.630001,62.189999,4,3,4,1,1,8,2,0,686.5,0,0,0,3855.9766 -16137,19799,36050,-9,36051,36049,6,1,0,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-912.08411,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,8,2,0,686.5,0,0,0,3855.9766 -16137,19799,36051,36049,-9,-9,1,1,0,38,1,0,3,0,2,-9,3,3,0,0,4,0,5.9767385,5.7192822,2,0,-9,8,0,2,-79.575485,0,0,1,36,3,3,3,1,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2240567,0,0,0,35.630001,62.189999,54.369999,54.799999,3,4,2,1,1,8,2,0,686.5,0,0,0,3855.9766 -16137,19800,36052,-9,36051,36049,3,1,1,19,2,0,3,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1035.082,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,7,4,2,0,0,8,1,0,793,0,0,0,-92.581009 -16138,19801,36053,-9,36056,-9,4,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.04016,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,0,753.40002,87932.281,0,0,3010.7903 -16138,19801,36054,36056,-9,-9,1,1,1,27,1,1,3,0,2,-9,2,1,0,0,2,7.8289132,7.5451155,0,2,0,-9,4,0,-13,-54.298752,0,1,0,40,1,2,1,2,2,2019,1,2,19,7,53,42,15,1,1,1,0,3.9256043,3.9256043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.75,37.959999,37.59,50.880001,3,1,1,0,0,10,3,0,753.40002,87932.281,0,0,3010.7903 -16138,19801,36055,-9,36056,-9,3,1,1,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.50647,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,3,0,753.40002,87932.281,0,0,3010.7903 -16138,19801,36056,36054,-9,-9,2,1,0,40,1,1,3,0,1,-9,2,1,0,0,2,8.0225639,8.0358629,6.0807629,2,0,-9,4,0,13,-9.5188389,0,0,1,27,2,2,1,-9,-9,2019,1,1,13,2,40,40,15,1,0,1,0,8.4870882,8.4870882,0,0,0,0,0,0,0,0,1,1,0,6.3184218,0,0,0,37.59,50.880001,44.75,37.959999,4,1,1,0,0,10,3,0,753.40002,87932.281,0,0,3010.7903 -16138,19801,36057,-9,36056,36054,5,1,0,2,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-980.07294,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,753.40002,87932.281,0,0,3010.7903 -16139,19802,36058,36059,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,7.6243734,7.587604,0,1,0,-9,34,0,-4,69.153511,0,0,0,57,2,4,1,2,-9,2019,1,2,11,1,29,28,15,1,0,1,0,7.7993579,7.7993579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,54,53,6,1,1,0,0,7,5,1,256,1284551.8,0,0,6505.3086 -16139,19802,36059,36058,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,0,4,9.228507,9.5517673,8.7009802,1,0,-9,34,0,4,-.10563198,0,0,0,53,2,5,1,2,2,2019,1,1,9,1,30,0,15,1,0,1,0,35.989017,35.989017,0,0,0,0,0,0,0,0,0,0,0,4.1004252,8.787734,0,0,54,53,57.060001,57.759998,5,1,1,0,0,7,5,1,256,1284551.8,0,0,6505.3086 -16140,19803,36060,36061,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,0,3,8.3739109,8.1377735,0,1,0,-9,24,0,7,102.56947,0,0,0,45,3,4,1,2,2,2019,1,2,14,4,35,35,15,1,1,1,0,11.130294,11.130294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.639999,48.689999,50,55,6,2,3,0,1,8,4,0,311,302668.22,0,0,3877.1514 -16140,19803,36061,36060,-9,-9,2,1,0,45,1,0,0,0,3,-9,2,1,0,0,4,7.6643896,7.6657767,0,1,0,-9,24,0,-7,-31.660505,0,0,0,52,3,3,1,2,2,2019,1,1,10,1,24,25,15,1,0,1,0,10.734007,10.734007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,49.639999,48.689999,6,2,3,0,0,8,4,0,311,302668.22,0,0,3877.1514 -16140,19804,36062,-9,36061,36060,3,1,1,20,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-920.0813,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,8,1,0,5030,-61896.586,0,0,665.67175 -16141,19805,36063,36064,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,0,4,8.0525284,7.9375663,0,1,0,-9,2,0,6,51.037006,0,0,1,28,1,5,1,2,2,2019,1,2,19,7,40,37,15,1,1,1,0,7.5848737,7.5848737,0,0,0,0,0,0,0,0,0,0,0,.38669169,0,0,0,51.240002,58.84,59.040001,48.59,6,1,1,0,0,10,5,0,925,-220.24219,0,0,3430.228 -16141,19805,36064,36063,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,0,5,8.6791143,8.6964941,0,1,0,-9,2,0,-6,-24.835024,0,1,0,34,1,4,1,-9,-9,2019,1,1,5,0,41,41,15,1,0,1,0,17.266653,17.266653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.040001,48.59,51.240002,58.84,6,1,1,0,0,10,5,0,925,-220.24219,0,0,3430.228 -16142,19806,36065,-9,36068,36067,5,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-879.4928,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,0,582.75,636880.19,0,0,2730.4373 -16142,19806,36066,-9,36068,36067,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1019.2094,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,0,582.75,636880.19,0,0,2730.4373 -16142,19806,36067,36068,-9,-9,1,1,1,40,1,0,2,0,3,-9,2,1,0,0,4,7.6093664,7.3574257,0,2,0,-9,11,0,1,40.201199,0,0,0,39,2,4,1,-9,-9,2019,1,2,10,1,50,50,15,1,0,1,0,3.9056144,3.9056144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.790001,55.860001,5,1,1,0,0,13,3,0,582.75,636880.19,0,0,2730.4373 -16142,19806,36068,36067,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,0,4,7.6803918,7.7284975,0,2,0,-9,16,0,-1,-43.951305,0,0,1,40,3,4,1,2,3,2019,1,1,8,0,18,8,15,1,0,1,0,14.893024,14.893024,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.086669,3,54.790001,55.860001,50,57,5,1,1,0,0,13,3,0,582.75,636880.19,0,0,2730.4373 -16143,19807,36069,36070,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,3,8.4708071,8.7056713,0,1,0,-9,24,0,-3,-27.109802,0,0,0,57,1,4,1,2,2,2019,1,1,11,0,30,30,15,1,0,1,0,23.275278,23.275278,0,0,0,0,0,0,0,0,0,0,0,2.1949761,0,0,0,52.009998,48.98,57.16,56.150002,6,1,1,0,0,9,5,0,257,1493339.8,0,0,4669.9121 -16143,19807,36070,36069,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,9.1133957,9.0051212,0,1,0,-9,24,0,3,69.31723,0,0,0,54,1,3,1,-9,-9,2019,1,2,10,0,40,45,15,1,0,1,0,27.284122,27.284122,0,0,0,0,0,0,0,0,0,0,0,3.3177679,0,0,0,57.16,56.150002,52.009998,48.98,6,1,1,0,0,9,5,0,257,1493339.8,0,0,4669.9121 -16144,19808,36071,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,0,4,6.6483741,6.7050934,0,3,0,0,0,-9,0,-958.09613,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,7,5,15,1,1,-9,0,11.040031,11.040031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.860001,61.09,-9,-9,3,4,2,0,0,8,2,0,438,-97431.063,0,0,248.12753 -16145,19809,36072,-9,-9,-9,1,1,0,28,3,0,0,0,1,-9,2,1,0,0,4,8.1099958,8.22927,0,3,0,0,0,-9,0,-1085.4961,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,2,37,38,15,1,0,-9,0,12.424401,12.424401,0,0,0,0,0,0,0,0,0,0,0,3.616585,0,0,0,51.830002,57.200001,-9,-9,6,4,2,0,0,7,4,1,868,-153230.39,0,0,1158.881 -16146,19810,36073,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,2,0,3.7920702,4.1379361,3,0,0,0,-9,0,-982.09705,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.5722883,4.0530095,0,0,56.599998,23.1,-9,-9,5,1,1,0,0,11,2,0,1468,-28361.904,0,0,2358.2961 -16147,19811,36074,36075,-9,-9,1,1,0,25,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,1,1,-9,-13,28.206654,0,1,1,38,2,3,1,-9,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.700001,46.209999,40.700001,6,1,1,1,0,4,4,0,586,45073.844,0,0,2511.5391 -16147,19811,36075,36074,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,0,3,8.5360374,8.165987,0,1,0,-9,1,-9,13,7.8615594,-9,0,0,25,2,3,3,-9,-9,2019,2,1,13,1,48,0,15,1,0,3,0,10.758739,10.758739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.209999,40.700001,47.32,52.700001,4,1,1,0,1,4,4,0,586,45073.844,0,0,2511.5391 -16148,19812,36076,36077,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,11,0,0,0,0,59,1,2,3,3,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.990002,54.490002,34.540001,31.77,4,1,1,0,0,10,1,0,756.5,963685.13,0,0,853.65771 -16148,19812,36077,36076,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,0,2,0,0,0,1,0,-9,9,0,-11,0,0,0,0,70,1,2,3,-9,-9,2019,4,2,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.540001,31.77,40.990002,54.490002,2,1,1,0,0,10,1,0,756.5,963685.13,0,0,853.65771 -16149,19813,36078,36079,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,8.0271053,8.1444521,1,0,-9,8,0,1,-23.989609,0,0,0,63,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9504781,8.3403292,0,0,60.299999,46.580002,57.060001,57.759998,1,1,1,0,0,12,3,1,358,916443.75,0,0,3043.0396 -16149,19813,36079,36078,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,5,0,5.7888365,5.6028543,1,0,-9,8,0,-1,-27.578684,0,0,0,64,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5595536,5.7737894,0,0,57.060001,57.759998,60.299999,46.580002,7,1,1,0,0,12,3,1,358,916443.75,0,0,3043.0396 -16150,19814,36080,36081,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,4,0,7.1762881,6.9920053,1,0,-9,48,0,3,-23.218887,0,0,0,63,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5188937,6.9255791,0,0,60.119999,54.799999,61.43,48.880001,7,1,1,0,0,12,2,0,1213.5,1110632.5,0,0,1036.5884 -16150,19814,36081,36080,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,-3,59.446785,0,0,0,66,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,48.880001,60.119999,54.799999,6,1,1,0,0,12,2,0,1213.5,1110632.5,0,0,1036.5884 -16151,19815,36082,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,2,0,6.631444,6.3034716,3,0,0,0,-9,0,-1037.8245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2177632,6.5133047,0,0,40.200001,47.869999,-9,-9,4,1,1,0,0,1,2,1,607,366714.5,0,0,304.40598 -16152,19816,36083,36084,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,1,2,7.3796368,7.0999451,0,1,0,-9,28,0,-1,48.446041,0,0,0,56,1,4,1,2,2,2019,1,1,14,3,4,15,15,1,0,1,0,43.933472,43.933472,0,0,0,0,0,0,0,7,1,1,0,0,0,14.509197,3,57.529999,21.219999,47.790001,56.459999,5,2,3,0,0,8,4,1,2097.5,583878.13,0,0,3019.6697 -16152,19816,36084,36083,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,0,4,8.2516823,8.3983126,0,1,0,-9,28,0,1,24.054428,0,0,0,55,2,2,1,3,3,2019,1,2,2,0,60,50,15,1,0,1,0,8.6432323,8.6432323,0,0,0,0,0,0,0,2,1,1,0,0,0,2.0549004,2,47.790001,56.459999,57.529999,21.219999,6,1,1,0,0,8,4,1,2097.5,583878.13,0,0,3019.6697 -16153,19817,36085,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1041.3754,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.15,34.189999,-9,-9,6,3,4,1,0,5,1,0,350,0,0,0,484.78067 -16153,19818,36086,-9,36085,-9,2,1,1,19,2,0,0,0,2,-9,2,1,0,0,3,7.9990969,7.7408605,0,3,0,0,0,-9,0,-968.71136,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,35,25,15,1,0,-9,1,8.778038,8.778038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.91,53.540001,-9,-9,6,3,4,0,0,5,3,0,543,44081.371,0,0,-254.62946 -16154,19819,36087,-9,-9,-9,1,1,0,41,3,0,0,0,2,-9,2,1,0,0,3,7.5380211,7.6023517,4.9459715,3,0,0,0,-9,0,-992.02161,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,20,8,34,30,15,1,1,-9,0,5.5504842,5.5504842,0,0,0,0,0,0,0,0,0,0,0,5.3893852,0,0,0,38.209999,54.029999,-9,-9,5,1,1,0,0,6,3,0,459,29759.807,0,0,1914.2322 -16154,19820,36088,-9,36087,-9,2,1,1,23,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1060.3046,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,9,0,38,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.6,60.209999,-9,-9,3,1,1,1,0,6,1,0,1042,20613.369,0,0,0 -16154,19821,36089,-9,36087,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,3,7.1264358,6.8790741,0,3,0,0,0,-9,0,-1143.5699,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,25,11,20,40,15,1,1,-9,1,6.1448016,6.1448016,0,0,0,0,0,0,0,14.5,0,0,0,0,0,5.7330685,3,24.33,55.009998,-9,-9,2,1,1,0,0,6,2,0,241,-129422.2,0,0,114.11876 -16155,19822,36090,36091,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,3,-45.031616,0,0,0,70,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1665845,0,0,0,53,47,50,47,5,1,1,0,0,4,2,1,427.5,244409.63,0,0,1359.9734 -16155,19822,36091,36090,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,4.7806234,4.4332814,1,0,-9,8,0,-3,8.013648,0,0,0,73,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.7196908,116.06247,1,50,47,53,47,5,1,1,0,0,4,2,1,427.5,244409.63,0,0,1359.9734 -16156,19823,36092,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,0,3,0,8.1239862,7.9328313,3,0,0,0,-9,0,-1041.3772,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6767249,8.2121181,4.4976339,3,53.349998,32.27,-9,-9,6,1,1,0,0,9,3,0,1373,959950.19,0,0,2177.7878 -16157,19824,36093,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-989.22272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,13,1,1,1134,-91815.703,0,0,184.71365 -16158,19825,36094,36095,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,0,3,8.0367422,7.7365651,0,1,0,-9,6,0,0,13.389097,0,1,1,26,2,3,1,2,2,2019,1,2,9,0,38,37,15,1,0,1,0,9.3995934,9.3995934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.509998,47.18,55.310001,4,1,1,0,0,2,4,0,657,6091.5703,0,0,2805.1848 -16158,19825,36095,36094,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,0,3,7.8796797,7.9073496,0,1,0,-9,6,0,0,-45.649178,0,1,0,26,2,3,1,-9,-9,2019,1,1,12,0,45,32,15,1,0,1,0,7.470768,7.470768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.18,55.310001,52,54.509998,3,1,1,0,0,2,4,0,657,6091.5703,0,0,2805.1848 -16159,19826,36096,-9,36098,36099,3,1,1,2,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.8368,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,1,1525.25,37467.625,0,0,2213.4766 -16159,19826,36097,-9,36098,36099,4,1,1,0,2,2,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1010.22,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,3,1,1525.25,37467.625,0,0,2213.4766 -16159,19826,36098,36099,-9,-9,2,1,0,27,1,2,2,0,2,-9,5,1,0,0,5,6.6828113,6.4700947,0,2,0,-9,5,0,-1,-8.789916,0,1,1,28,2,5,1,-9,-9,2019,1,1,5,0,18,20,15,1,0,1,0,5.5481248,5.5481248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,62.389999,56.709999,6,1,1,0,0,2,3,1,1525.25,37467.625,0,0,2213.4766 -16159,19826,36099,36098,-9,-9,1,1,1,28,1,2,2,0,2,-9,2,1,0,0,5,8.2837229,8.4408598,0,2,0,-9,5,0,1,113.0684,0,1,0,27,2,5,1,2,2,2019,1,2,8,0,54,53,15,1,0,1,0,8.3677988,8.3677988,0,0,0,0,0,0,0,2,1,1,0,0,0,5.0856485,3,62.389999,56.709999,51.73,58.82,7,1,1,0,0,2,3,1,1525.25,37467.625,0,0,2213.4766 -16160,19827,36100,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,4,3,0,0,3,0,5.9594812,5.5980425,3,0,-9,0,-9,0,-927.65881,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0541272,0,0,48.91,48.98,-9,-9,4,1,1,0,0,9,2,1,1237,17177.941,0,0,-341.02008 -16161,19828,36101,-9,36102,36103,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.0449,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,7,5,1,1010,165862.19,0,0,3431.7109 -16161,19828,36102,36103,-9,-9,2,1,0,34,1,1,2,0,2,-9,2,1,0,0,3,8.4163914,8.3602219,0,2,0,-9,9,0,-2,58.606148,-9,0,1,36,1,4,1,-9,-9,2019,1,1,19,7,23,0,15,1,1,1,0,22.288183,22.288183,0,0,0,0,0,0,0,0,1,1,0,.84492797,0,0,0,41.790001,57.73,46.310001,58.290001,5,1,1,0,1,7,5,1,1010,165862.19,0,0,3431.7109 -16161,19828,36103,36102,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,8.7707138,8.8255558,0,2,0,-9,9,0,2,55.209007,0,0,0,34,2,3,1,3,2,2019,1,2,21,9,45,44,15,1,1,1,0,17.463816,17.463816,0,0,0,0,0,0,0,0,1,1,0,2.6631708,0,0,0,46.310001,58.290001,41.790001,57.73,5,1,1,0,0,7,5,1,1010,165862.19,0,0,3431.7109 -16161,19828,36104,-9,36102,36103,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1036.6666,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,5,1,1010,165862.19,0,0,3431.7109 -16162,19829,36105,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,1,0,6.3525243,6.2834435,3,0,0,0,-9,0,-980.47058,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,12.713138,0,0,0,0,1,1,0,5.4022579,6.2280536,0,0,30.34,28.16,-9,-9,5,1,1,0,0,12,2,0,954,198365.3,0,0,698.82056 -16163,19830,36106,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,1,2,0,5.5127835,5.8012781,3,0,0,0,-9,0,-1038.2058,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6068463,5.8687005,0,0,58.130001,18.26,-9,-9,4,1,1,0,0,7,2,1,646,150240.28,0,0,485.88641 -16164,19831,36107,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,0,3,7.732028,8.2188234,7.3124824,3,0,0,0,-9,0,-960.93579,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,18,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.8970957,7.7086787,12.898163,3,58.32,50.220001,-9,-9,6,1,1,0,0,1,4,1,197,-91158.07,0,0,2082.9436 -16165,19832,36108,36109,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,32,0,3,0,0,0,0,73,2,1,3,3,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.24587491,0,0,0,51,46,28.120001,37.369999,6,1,1,0,0,12,1,0,193.5,-52544.293,0,0,2745.6682 -16165,19832,36109,36108,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,32,0,-3,0,0,0,0,76,3,3,3,3,3,2019,4,2,14,5,0,0,15,4,1,4,0,0,0,1,0,0,0,8.8433275,1.6836299,0,120,1,1,0,1.4539156,0,127.09648,1,28.120001,37.369999,51,46,6,1,1,0,0,12,1,0,193.5,-52544.293,0,0,2745.6682 -16166,19833,36110,-9,-9,-9,1,1,0,33,3,0,0,0,2,-9,2,1,0,0,1,8.2325115,8.2849464,0,3,0,0,0,-9,0,-986.80896,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,14,2,61,0,15,1,0,-9,0,7.3563509,7.3563509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.580002,51.330002,-9,-9,3,1,1,0,1,8,4,0,475,170420.02,0,0,2772.4553 -16167,19834,36111,36112,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,0,5,7.5013895,7.5968995,0,1,0,-9,38,0,-5,52.885159,0,0,0,66,2,3,3,-9,1,2019,2,2,8,0,33,33,15,1,0,4,0,6.2364407,6.2364407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.419998,49.669998,45.880001,7,1,1,0,0,8,3,0,1116,856689.31,0,0,1885.8074 -16167,19834,36112,36111,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,6.404932,7.1104207,0,1,0,-9,38,0,5,41.221676,0,0,0,61,1,5,1,2,2,2019,3,1,9,1,20,16,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.669998,45.880001,60.02,56.419998,4,2,3,0,0,8,3,0,1116,856689.31,0,0,1885.8074 -16167,19835,36113,-9,36112,36111,3,1,1,32,2,0,0,0,1,-9,2,1,0,0,3,7.9473686,7.8088675,0,3,0,0,0,-9,0,-1034.754,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,38,36,15,1,0,-9,1,9.1283922,9.1283922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.029999,53.830002,-9,-9,4,4,2,0,0,8,4,0,1926,38910.578,0,0,3161.998 -16168,19836,36114,36115,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,0,3,7.900785,8.1074696,0,1,0,-9,43,0,-1,41.156139,0,0,0,57,2,4,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,8.4045238,8.4045238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,60.119999,54.799999,7,1,1,0,0,2,4,1,337.5,129749.45,0,0,2547.9714 -16168,19836,36115,36114,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,8.0878677,8.2632284,0,1,0,-9,42,0,1,-39.188278,0,0,0,56,3,3,1,-9,-9,2019,1,1,6,0,18,18,15,1,0,1,0,18.294405,18.294405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,62.66,52.400002,7,1,1,0,0,2,4,1,337.5,129749.45,0,0,2547.9714 -16169,19837,36116,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,0,4,0,6.4957919,6.3154769,3,0,0,0,-9,0,-1148.2107,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0022554,6.5268135,0,0,50.790001,48.240002,-9,-9,6,1,1,0,0,7,2,1,1048,1192112.9,0,0,2659.2627 -16170,19838,36117,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,3,0,5.1099362,5.228529,3,0,0,0,-9,0,-1091.9857,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.8860917,5.2833238,0,0,47.299999,45.59,-9,-9,6,1,1,0,0,7,2,0,116,797283.19,0,0,973.73499 -16171,19839,36118,-9,36121,36119,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-985.87891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,7,4,1,803,201974.13,0,0,4059.8533 -16171,19839,36119,36121,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,2,8.7941113,8.980895,0,2,0,-9,1,-9,2,92.753258,-9,0,0,41,2,3,1,3,2,2019,1,1,14,3,61,0,15,1,0,1,0,15.820526,15.820526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,48.459999,46.48,53.759998,6,1,1,0,0,7,4,1,803,201974.13,0,0,4059.8533 -16171,19839,36120,-9,36121,36119,4,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1242.2982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,7,4,1,803,201974.13,0,0,4059.8533 -16171,19839,36121,36119,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,3,7.4172864,7.1040559,0,2,0,-9,1,-9,-2,134.94237,-9,0,1,43,2,2,1,2,2,2019,1,2,10,0,25,0,15,1,0,1,0,6.7180929,6.7180929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,53.759998,42.98,48.459999,6,1,1,0,0,7,4,1,803,201974.13,0,0,4059.8533 -16172,19840,36122,36123,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,49,0,0,-65.913597,0,0,0,69,1,3,3,3,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,66.515862,0,1,1,0,5.7109318,0,0,0,47.330002,35.049999,60.290001,52.110001,6,1,1,0,0,9,2,1,915.5,884391.88,0,0,2492.9585 -16172,19840,36123,36122,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,3,0,7.7299204,7.6442451,1,0,-9,49,0,0,56.952351,0,0,0,69,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0332794,7.2885814,0,0,60.290001,52.110001,47.330002,35.049999,7,1,1,0,0,9,2,1,915.5,884391.88,0,0,2492.9585 -16173,19841,36124,36125,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,2,3.2705286,7.5554581,7.2820616,1,0,-9,38,0,-3,181.13457,0,0,0,64,2,3,3,2,2,2019,4,1,14,2,0,26,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2322817,7.1903358,0,0,48.580002,22.1,55.52,38,3,1,1,0,0,6,4,1,214.5,1330744.8,0,0,3362.7129 -16173,19841,36125,36124,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,8.0224142,8.0547094,1,0,-9,38,0,3,-80.376427,0,0,0,61,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5469556,7.9218774,0,0,55.52,38,48.580002,22.1,6,1,1,0,0,6,4,1,214.5,1330744.8,0,0,3362.7129 -16174,19842,36126,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,2,1,0,0,3,8.2304153,7.8960838,0,4,0,0,0,-9,0,-922.79095,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,27,21,15,1,0,-9,0,12.065498,12.065498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,43.59,-9,-9,5,3,4,0,0,8,3,1,530,219893.39,0,0,216.96941 -16174,19843,36127,-9,36126,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,0,3,7.056911,6.9379287,0,3,0,0,0,-9,0,-1005.6196,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.190001,59.220001,-9,-9,6,3,4,0,0,8,3,1,388,86094.633,0,0,1143.5413 -16175,19844,36128,36129,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,0,2,0,6.2493286,6.5652819,1,0,-9,39,0,2,57.435051,0,0,0,74,3,3,3,3,3,2019,4,1,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0584869,6.6960063,0,0,50.07,20.52,46.080002,57.200001,3,1,1,0,0,12,2,1,180.5,213184.19,0,0,2292.9548 -16175,19844,36129,36128,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,0,3,0,4.4977055,4.5483847,1,0,-9,39,0,-2,.045354657,0,0,0,76,2,2,3,2,3,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,.60863304,4.6230731,14.547646,1,46.080002,57.200001,50.07,20.52,5,1,1,0,0,12,2,1,180.5,213184.19,0,0,2292.9548 -16176,19845,36130,36133,-9,-9,2,1,0,39,1,0,2,0,1,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,-1,-55.749363,0,0,1,40,1,5,1,-9,-9,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,57.060001,57.759998,6,1,1,0,0,12,3,1,687.75,205887.34,0,0,5609.1348 -16176,19845,36131,-9,36130,36133,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1039.5476,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,687.75,205887.34,0,0,5609.1348 -16176,19845,36132,-9,36130,36133,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-898.95331,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,687.75,205887.34,0,0,5609.1348 -16176,19845,36133,36130,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,0,5,8.4508476,8.6053276,0,2,0,-9,13,0,1,89.280663,0,0,0,39,1,4,3,2,2,2019,2,2,12,1,60,55,15,1,0,3,0,9.9289379,9.9289379,0,0,0,0,0,0,0,0,0,0,0,5.4512844,0,0,0,57.060001,57.759998,49,56,6,1,1,0,0,12,3,1,687.75,205887.34,0,0,5609.1348 -16177,19846,36134,-9,-9,36135,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-957.73865,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,363,26024.34,0,0,1877.7441 -16177,19846,36135,-9,-9,-9,1,1,1,39,3,0,1,0,2,-9,1,1,0,0,2,8.3804874,8.3106184,0,4,0,0,0,-9,0,-1062.9216,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,60,24,15,1,0,-9,0,6.586081,6.586081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.130001,44.84,-9,-9,6,1,1,0,0,2,3,0,363,26024.34,0,0,1877.7441 -16178,19847,36136,36137,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,5.6603994,5.6557603,0,1,0,-9,5,0,1,2.452369,0,0,0,51,2,2,1,-9,3,2019,1,1,12,0,10,10,15,1,0,1,0,2.6154432,2.6154432,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.740002,54.459999,35.32,36.93,2,1,1,0,0,4,2,0,807,142488.89,0,0,514.76886 -16178,19847,36137,36136,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,0,2,0,0,0,1,0,-9,5,0,-1,-94.582062,0,0,0,52,2,3,1,2,2,2019,1,2,14,2,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,36.93,33.740002,54.459999,2,1,1,0,0,4,2,0,807,142488.89,0,0,514.76886 -16178,19848,36138,-9,36136,36137,3,1,0,25,2,0,0,0,2,-9,2,1,0,0,3,7.9049683,8.1983805,0,3,0,0,0,-9,0,-917.58087,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,36,15,1,0,-9,1,8.9754992,8.9754992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.400002,55.59,-9,-9,2,1,1,0,0,4,3,0,1028,154981.91,0,0,1435.4963 -16179,19849,36139,36141,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,0,3,8.631444,8.4552622,0,2,0,-9,10,0,-3,-48.967243,-9,0,0,50,2,3,1,-9,-9,2019,1,1,12,2,50,0,15,1,0,1,0,13.103524,13.103524,0,0,0,0,0,0,0,0,0,0,0,2.7181358,0,0,0,46,50,61.849998,47.259998,5,1,1,0,0,11,4,1,1203.3334,744758.31,0,0,1852.67 -16179,19849,36140,-9,36139,36141,3,1,0,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1034.3761,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3717113,0,0,0,45,59,-9,-9,5,1,1,0,0,11,4,1,1203.3334,744758.31,0,0,1852.67 -16179,19849,36141,36139,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,0,3,6.4252892,6.3660307,0,2,0,-9,22,0,3,25.309961,0,0,0,47,1,3,1,2,2,2019,1,2,6,0,35,45,15,1,0,1,0,2.0488074,2.0488074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.849998,47.259998,46,50,6,1,1,0,0,11,4,1,1203.3334,744758.31,0,0,1852.67 -16180,19850,36142,36143,-9,-9,2,1,0,35,1,0,0,0,1,-9,1,1,0,0,1,7.5582805,7.4795046,0,1,0,-9,10,0,-2,84.636932,0,0,1,37,1,1,1,2,1,2019,1,1,19,5,35,35,15,1,1,1,0,7.9528637,7.9528637,0,0,0,0,0,0,0,0,0,0,0,5.4156694,0,0,0,14.43,52.330002,3.3199999,53.119999,3,4,5,0,0,8,4,1,895.5,6166.1152,0,0,2623.1392 -16180,19850,36143,36142,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,1,8.6556997,8.1857042,0,1,0,-9,15,0,2,124.07144,0,0,0,35,1,1,1,-9,-9,2019,1,2,31,12,44,54,15,1,1,1,0,13.109202,13.109202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3199999,53.119999,14.43,52.330002,5,1,1,0,0,8,4,1,895.5,6166.1152,0,0,2623.1392 -16181,19851,36144,36145,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,0,4,8.301259,8.5671902,7.5651355,1,0,-9,6,0,1,-13.091073,0,0,0,68,1,3,3,1,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9504247,7.7848225,0,0,57.16,56.150002,44.41,56.75,7,1,1,0,0,12,5,1,514.5,1965328.6,0,0,5332.7744 -16181,19851,36145,36144,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,3,0,7.2092056,7.2168307,1,0,-9,6,0,-1,-51.735416,0,0,0,69,1,4,3,2,2,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.37196001,7.1596918,0,0,44.41,56.75,57.16,56.150002,6,1,1,0,0,12,5,1,514.5,1965328.6,0,0,5332.7744 -16181,19852,36146,-9,36145,36144,3,1,1,37,2,0,0,0,1,-9,2,1,0,0,4,8.1064072,8.4100008,0,3,0,0,0,-9,0,-935.54285,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,38,39,15,1,0,-9,1,10.346167,10.346167,0,0,0,0,0,0,0,0,1,1,0,6.4045086,0,0,0,42.369999,55.290001,-9,-9,5,1,1,0,0,12,4,1,451,-30967.758,0,0,2841.2466 -16182,19853,36147,-9,36148,36149,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.0341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,2,0,587.25,65931.086,0,0,1427.1238 -16182,19853,36148,36149,-9,-9,2,1,0,29,1,0,2,0,2,-9,2,1,0,0,3,5.6720662,5.5087981,0,2,0,-9,8,0,-8,65.425446,-9,1,1,37,2,4,1,-9,-9,2019,1,1,10,0,6,0,15,1,0,1,0,5.6611805,5.6611805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,44.669998,57.16,56.150002,6,1,1,0,0,7,2,0,587.25,65931.086,0,0,1427.1238 -16182,19853,36149,36148,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,0,4,7.7116427,7.5747485,0,2,0,-9,8,0,8,-1.4152809,0,0,0,29,2,3,1,-9,-9,2019,1,2,9,0,30,36,15,1,0,1,0,7.3788657,7.3788657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,47.18,44.669998,6,1,1,0,0,7,2,0,587.25,65931.086,0,0,1427.1238 -16182,19853,36150,-9,36148,36149,3,1,0,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-911.16541,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,2,0,587.25,65931.086,0,0,1427.1238 -16183,19854,36151,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,3,0,7.5902786,7.4378362,3,0,-9,0,-9,0,-1120.2048,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5720544,7.1542172,3.3120739,3,46.790001,41.889999,-9,-9,7,1,1,0,0,7,3,1,515,215746.47,0,0,343.15897 -16184,19855,36152,-9,-9,-9,1,1,0,38,3,0,0,0,2,-9,2,1,0,0,4,9.2494488,8.9373398,0,3,0,0,0,-9,0,-1136.6084,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,41,15,1,0,-9,1,20.505064,20.505064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,5,1,415,77210.289,0,0,3677.1023 -16185,19856,36153,36154,-9,-9,2,1,1,39,1,1,1,0,1,-9,1,1,0,0,4,7.0087533,6.7590618,0,2,0,-9,4,0,5,-73.403427,0,0,0,34,1,3,3,3,2,2019,2,1,10,1,40,50,15,1,0,3,0,2.4704933,2.4704933,0,0,0,0,0,0,0,0,1,1,0,4.0793357,0,0,0,50,57,45.040001,53.77,5,2,3,0,0,9,2,1,447.66666,1235966.5,0,0,1476.0371 -16185,19856,36154,36153,-9,-9,1,1,0,34,1,1,1,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-5,-52.825325,0,0,1,39,1,4,1,2,1,2019,3,2,4,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.040001,53.77,50,57,6,2,3,0,0,9,2,1,447.66666,1235966.5,0,0,1476.0371 -16185,19856,36155,-9,36154,36153,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-952.74487,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,9,2,1,447.66666,1235966.5,0,0,1476.0371 -16186,19857,36156,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,3,3,0,1,2,0,0,0,3,0,-9,0,-9,0,-994.32666,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,29,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.379999,40.200001,-9,-9,3,3,4,1,0,4,1,0,287,0,0,0,458.59 -16186,19858,36157,-9,36156,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,7.4835119,7.3862491,0,3,0,-9,0,-9,0,-885.92224,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,23,0,15,1,0,-9,1,8.4759016,8.4759016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,6,4,5,0,0,4,3,0,35,-136644.53,0,0,853.36353 -16187,19859,36158,36159,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,0,4,0,6.2161112,6.5984654,1,0,-9,8,0,1,-59.649025,0,0,0,77,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3155437,0,0,54.209999,49.459999,54.959999,53.169998,6,3,4,0,0,2,3,1,1291.5,613071.44,0,0,2554.5894 -16187,19859,36159,36158,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,0,3,0,7.401165,7.2323561,1,0,-9,8,0,-1,-.95573163,0,0,0,78,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3509789,7.2047577,0,0,54.959999,53.169998,54.209999,49.459999,7,1,1,0,0,2,3,1,1291.5,613071.44,0,0,2554.5894 -16188,19860,36160,36163,-9,-9,2,1,1,45,1,1,2,0,2,-9,2,1,0,0,4,8.255187,7.9979677,0,2,0,-9,25,0,4,-46.09856,0,0,0,41,3,1,3,-9,-9,2019,2,1,6,0,40,40,15,1,0,3,0,10.792999,10.792999,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.650002,33.900002,48.080002,32.310001,7,2,3,0,0,8,3,1,725.40002,250885.8,0,0,2168.199 -16188,19860,36161,-9,36163,36160,4,1,0,17,2,1,2,0,2,1,2,3,0,0,4,6.6869426,6.8311539,0,2,0,0,0,-9,0,-957.14136,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.1620131,3,37.91,59.34,-9,-9,5,2,3,0,0,8,3,1,725.40002,250885.8,0,0,2168.199 -16188,19860,36162,-9,36163,36160,6,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-975.4538,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,8,3,1,725.40002,250885.8,0,0,2168.199 -16188,19860,36163,36160,-9,-9,1,1,0,41,1,1,2,0,3,-9,6,3,0,0,1,0,0,0,2,0,-9,27,0,-4,23.200583,0,0,1,45,2,4,1,3,-9,2019,3,2,20,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.080002,32.310001,55.650002,33.900002,1,2,3,0,0,8,3,1,725.40002,250885.8,0,0,2168.199 -16188,19860,36164,-9,36163,36160,3,1,0,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1151.5865,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,1,725.40002,250885.8,0,0,2168.199 -16189,19861,36165,36166,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,0,3,7.7189612,7.9715757,0,1,0,-9,3,0,1,-58.417015,0,0,0,41,2,4,1,2,2,2019,1,2,11,0,38,37,15,1,0,1,0,11.571299,11.571299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,51.240002,58.84,4,1,1,0,0,2,4,1,404.5,122565.29,0,0,2770.1045 -16189,19861,36166,36165,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,0,4,8.1376657,8.1907597,0,1,0,-9,3,0,-1,-1.4229711,0,0,1,42,2,3,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,11.982375,11.982375,0,0,0,0,0,0,0,5.48,0,0,0,0,0,8.5566082,3,51.240002,58.84,54.369999,54.799999,2,1,1,0,0,2,4,1,404.5,122565.29,0,0,2770.1045 -16190,19862,36167,-9,36169,36170,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1023.0143,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,3,1,770.25,43374.254,0,0,2796.4663 -16190,19862,36168,-9,36169,36170,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.64624,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,3,1,770.25,43374.254,0,0,2796.4663 -16190,19862,36169,36170,-9,-9,1,1,0,26,1,1,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,5,0,0,-32.607822,0,1,1,26,3,2,1,-9,-9,2019,3,2,10,1,0,36,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.709999,62.41,53.799999,45.889999,6,1,1,0,0,13,3,1,770.25,43374.254,0,0,2796.4663 -16190,19862,36170,36169,-9,-9,2,1,1,26,1,1,2,0,3,-9,2,1,0,0,2,8.3043499,8.371994,0,2,0,-9,5,0,0,21.234863,0,1,0,26,2,4,3,-9,-9,2019,2,1,10,1,48,40,15,1,0,3,0,9.3738232,9.3738232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.799999,45.889999,40.709999,62.41,6,1,1,0,0,13,3,1,770.25,43374.254,0,0,2796.4663 -16191,19863,36171,36172,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,34,0,-4,-44.962994,0,0,0,76,3,2,3,3,3,2019,4,2,11,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.012772,3,47.310001,50.200001,64.379997,34.299999,7,1,1,0,1,10,2,1,345,523857.13,0,0,1431.2339 -16191,19863,36172,36171,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,2,0,7.5034404,7.0668144,1,0,-9,6,0,4,104.98702,0,0,0,72,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.3593373,10.091973,3,64.379997,34.299999,47.310001,50.200001,7,1,1,0,0,10,2,1,345,523857.13,0,0,1431.2339 -16192,19864,36173,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,0,3,0,6.8815384,6.954668,3,0,0,0,-9,0,-948.44788,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,2.7152865,0,0,0,0,16.644556,0,1,1,0,.80563635,6.9102693,0,0,56.59,39.959999,-9,-9,6,1,1,0,0,5,2,1,645,240307.95,0,0,365.85022 -16193,19865,36174,-9,-9,-9,1,1,1,54,3,1,1,0,2,-9,2,1,0,0,3,8.0932999,8.1049166,0,4,0,0,0,-9,0,-1061.9019,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,5,36,40,15,1,1,-9,0,8.8321152,8.8321152,0,0,0,0,0,0,0,7,1,1,0,0,0,13.521341,3,33.200001,50.779999,-9,-9,1,3,4,0,1,8,3,0,244,57503.582,0,0,797.18408 -16193,19866,36175,-9,36176,-9,4,1,0,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-963.14203,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,8,3,0,554.5,21017.764,0,0,2338.448 -16193,19866,36176,-9,-9,36174,2,1,0,20,2,1,1,0,2,-9,5,1,0,0,4,7.1974359,7.2289286,0,3,0,0,0,-9,0,-1000.6246,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,35,22,15,1,0,-9,1,5.1562319,5.1562319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.279999,-9,-9,6,3,4,0,0,8,3,0,554.5,21017.764,0,0,2338.448 -16193,19867,36177,-9,-9,36174,3,1,1,19,2,1,1,0,2,-9,2,1,0,0,4,6.4807606,6.5893006,0,3,0,0,0,-9,0,-1034.0717,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,2,12,17,15,1,0,-9,1,7.4813271,7.4813271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,3,4,0,0,8,2,0,219,97234.336,0,0,-271.18011 -16194,19868,36178,36179,-9,-9,2,1,0,55,1,0,1,0,1,-9,2,1,0,0,3,8.3334761,8.9657345,0,2,0,-9,27,0,6,-38.831375,0,0,0,49,2,5,1,2,1,2019,1,1,11,2,22,20,15,1,0,1,0,32.372322,32.372322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,41.07,60.93,5,4,2,0,0,8,5,1,597,1769593.1,0,0,4914.6475 -16194,19868,36179,36178,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,0,5,8.9579144,8.9898205,0,2,0,-9,26,0,-6,66.7117,0,0,0,55,1,3,1,2,2,2019,1,2,5,0,46,36,15,1,0,1,0,24.98489,24.98489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,48,49,6,3,4,0,0,8,5,1,597,1769593.1,0,0,4914.6475 -16194,19868,36180,-9,36178,36179,4,1,1,17,2,0,1,1,2,0,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-919.92487,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3108711,0,0,0,41.169998,59.310001,-9,-9,1,3,4,0,0,8,5,1,597,1769593.1,0,0,4914.6475 -16194,19869,36181,-9,36178,36179,3,1,0,28,2,0,1,0,1,-9,2,1,0,0,2,8.131566,8.4646549,0,3,0,0,0,-9,0,-1054.5366,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,43,42,15,1,0,-9,1,9.0243959,9.0243959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,42.16,-9,-9,4,3,4,0,0,8,4,1,757,0,0,0,2281.4907 -16195,19870,36182,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,0,4,8.3470955,8.4906769,0,3,0,0,0,-9,0,-958.9469,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,40,15,1,0,-9,0,10.455209,10.455209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.740002,44.549999,-9,-9,7,1,1,0,0,13,4,0,443,78521.523,0,0,1316.3766 -16196,19871,36183,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,0,4,0,6.583796,6.8193765,3,0,0,0,-9,0,-967.15527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.3363318,6.7709045,120.9978,3,60.119999,54.799999,-9,-9,7,1,1,0,0,10,2,1,398,389071.09,0,0,197.57756 -16197,19872,36184,-9,36185,36186,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.4173,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,5,1,616,624812.69,0,0,5571.4375 -16197,19872,36185,36186,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,0,3,8.0885344,7.9643545,0,2,0,-9,9,0,3,-31.766266,0,0,0,42,1,4,1,1,2,2019,1,2,10,2,22,22,15,1,0,1,0,14.922756,14.922756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.830002,43.549999,57.16,56.150002,6,1,1,0,0,9,5,1,616,624812.69,0,0,5571.4375 -16197,19872,36186,36185,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.7424269,9.4233675,0,2,0,-9,9,0,-3,-163.04237,0,0,0,45,1,3,1,2,3,2019,1,1,7,0,46,46,15,1,0,1,0,37.820358,37.820358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,48.830002,43.549999,6,1,1,0,0,9,5,1,616,624812.69,0,0,5571.4375 -16197,19872,36187,-9,36185,36186,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.5401,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,5,1,616,624812.69,0,0,5571.4375 -16198,19873,36188,36189,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,0,2,7.6674137,7.93571,0,1,0,-9,6,0,12,29.958914,0,0,0,49,2,4,1,3,2,2019,1,2,17,5,38,38,15,1,1,1,0,8.0130835,8.0130835,0,0,0,0,0,0,0,2,0,0,0,0,0,2.8928344,3,51.950001,29.08,51,54,6,1,1,0,0,6,4,0,1118.5,278078.88,0,0,1915.0056 -16198,19873,36189,36188,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,0,4,7.7790003,7.8452063,0,1,0,-9,6,0,-12,45.750877,0,0,0,61,2,2,1,-9,-9,2019,1,1,10,1,26,36,15,1,0,1,0,12.25876,12.25876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,51.950001,29.08,6,1,1,0,0,6,4,0,1118.5,278078.88,0,0,1915.0056 -16199,19874,36190,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,0,3,0,8.0153027,8.2859287,3,0,0,0,-9,0,-956.11896,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0377302,0,0,60.290001,52.110001,-9,-9,2,1,1,0,0,2,4,1,1127,438304.41,0,0,3044.1335 -16200,19875,36191,36192,-9,-9,2,1,1,35,1,0,1,0,1,-9,2,1,0,0,3,8.5294085,8.797514,0,2,0,-9,9,0,3,98.089417,0,0,0,32,1,4,1,-9,-9,2019,1,1,11,0,43,43,15,1,0,1,0,15.273944,15.273944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.849998,43.639999,31.41,63.639999,5,1,1,0,0,9,5,0,553,97095.383,0,0,4462.792 -16200,19875,36192,36191,-9,-9,1,1,0,32,1,0,1,0,1,-9,2,1,0,0,4,8.281146,8.632802,0,2,0,-9,9,0,-3,-34.499405,0,0,1,35,1,3,1,2,2,2019,1,2,21,8,47,46,15,1,1,1,0,10.472128,10.472128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,63.639999,42.849998,43.639999,5,1,1,0,0,9,5,0,553,97095.383,0,0,4462.792 -16200,19875,36193,-9,-9,36191,3,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-918.091,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,5,0,553,97095.383,0,0,4462.792 -16201,19876,36194,36195,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,3,0,8.3267002,8.2621946,1,0,-9,43,0,0,87.028053,0,0,0,63,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2295094,0,0,57.330002,53.459999,60.43,40.91,6,1,1,0,0,5,3,1,1814.5,1245833.8,0,0,1534.2399 -16201,19876,36195,36194,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,0,-9.9498339,0,0,0,63,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,40.91,57.330002,53.459999,6,1,1,0,0,5,3,1,1814.5,1245833.8,0,0,1534.2399 -16202,19877,36196,-9,36198,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1024.9641,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,4,2,1,1542.6666,48161.063,0,0,174.44485 -16202,19877,36197,-9,36198,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1073.7869,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,4,2,1,1542.6666,48161.063,0,0,174.44485 -16202,19877,36198,-9,-9,-9,1,1,0,53,3,0,2,0,2,-9,2,1,0,0,3,6.8724813,6.794282,0,4,0,0,0,-9,0,-973.55219,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,16,15,1,0,-9,0,7.852922,7.852922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.740002,47.82,-9,-9,4,2,3,0,0,4,2,1,1542.6666,48161.063,0,0,174.44485 -16203,19878,36199,-9,36200,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-948.99304,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,2,0,324,0,0,0,1485.4978 -16203,19878,36200,-9,-9,-9,1,1,0,21,2,0,1,0,2,-9,2,1,0,0,3,6.8916869,6.8897791,0,4,0,0,0,-9,0,-993.91602,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,16,16,15,1,1,-9,0,6.5509114,6.5509114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,34,-9,-9,6,1,1,0,0,4,2,0,324,0,0,0,1485.4978 -16204,19879,36201,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,3,0,6.8825994,6.7347984,3,0,0,0,-9,0,-984.70642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,7.6815686,0,0,0,0,95.230408,0,1,1,0,0,6.6226068,0,0,35.59,35,-9,-9,5,1,1,0,0,7,2,0,165,880319.44,0,0,1644.459 -16205,19880,36202,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,0,5,8.714098,8.6703787,0,3,0,0,0,-9,0,-983.54242,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,44,45,15,1,0,-9,0,13.007316,13.007316,0,0,0,0,0,0,0,0,0,0,0,7.5710311,0,0,0,55.09,55.869999,-9,-9,6,1,1,0,0,8,5,0,1292,26796.875,0,0,3433.4985 -16206,19881,36203,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,4,0,8.2988653,8.3347359,3,0,0,0,-9,0,-1110.1851,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.088881373,8.2300224,0,0,46.48,58.279999,-9,-9,6,1,1,0,0,9,4,1,162,961560,0,0,3184.0952 -16207,19882,36204,36205,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,0,5,0,7.3941326,7.0664434,1,0,-9,39,0,-5,-6.0773826,0,0,0,63,1,5,3,2,2,2019,2,1,10,0,0,18,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7493348,7.6119504,0,0,51.139999,60.450001,54.099998,59.110001,6,1,1,0,0,12,3,1,1064.5,1468058.8,0,0,2314.8799 -16207,19882,36205,36204,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,0,5,0,7.6015625,7.719871,1,0,-9,39,0,5,-43.09145,0,0,0,58,1,5,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7616463,7.6496634,0,0,54.099998,59.110001,51.139999,60.450001,6,1,1,0,0,12,3,1,1064.5,1468058.8,0,0,2314.8799 -16208,19883,36206,36207,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,7.7290621,7.8718224,1,0,-9,6,0,6,48.222809,0,0,0,60,2,2,3,3,2,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7054877,0,0,48.700001,32.130001,36.439999,20.24,4,1,1,0,0,13,3,1,444.5,773081.75,0,0,2904.4844 -16208,19883,36207,36206,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,1,2,0,6.3237901,6.1683235,1,0,-9,6,0,-6,86.355583,0,0,0,66,2,2,3,3,3,2019,4,1,25,12,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1754327,0,0,36.439999,20.24,48.700001,32.130001,4,1,1,0,0,13,3,1,444.5,773081.75,0,0,2904.4844 -16208,19884,36208,-9,36207,36206,3,1,1,31,2,0,0,0,2,-9,6,3,0,0,3,0,0,0,3,0,0,0,-9,0,-870.86981,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,4,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.8638911,3,52.130001,47.5,-9,-9,4,1,1,0,1,13,1,1,372,-20688.467,0,0,530.71375 -16209,19885,36209,-9,36212,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1069.6561,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,0,907.25,180796.08,0,0,2879.4993 -16209,19885,36210,-9,36212,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-921.83057,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,3,0,907.25,180796.08,0,0,2879.4993 -16209,19885,36211,36212,-9,-9,5,1,1,39,1,0,3,0,2,-9,2,1,0,0,5,7.6025577,7.3206472,0,2,0,-9,5,0,7,-9.6008959,0,0,0,32,2,4,1,-9,-9,2019,1,1,9,0,28,28,15,1,0,1,0,9.5700951,9.5700951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,38.880001,61.849998,6,1,1,0,0,5,3,0,907.25,180796.08,0,0,2879.4993 -16209,19885,36212,36211,-9,-9,1,1,0,32,1,0,3,0,2,-9,2,1,0,0,4,7.7221146,7.7757721,5.7915344,2,0,-9,5,0,-7,-174.63791,0,0,1,39,2,5,1,2,2,2019,1,5,13,1,39,33,15,1,0,1,0,7.9635081,7.9635081,0,0,0,0,0,0,0,0,1,1,0,5.2755256,0,0,0,38.880001,61.849998,54.099998,59.110001,6,1,1,0,0,5,3,0,907.25,180796.08,0,0,2879.4993 -16210,19886,36213,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-964.9812,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,28,9,0,18,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.040001,23.99,-9,-9,4,1,1,0,1,7,1,1,1429,55312.629,0,0,-211.81763 -16211,19887,36214,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,0,3,9.1522999,9.0636444,0,3,0,0,0,-9,0,-909.8125,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,38,38,15,1,0,-9,0,23.033293,23.033293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,54.799999,-9,-9,6,1,1,0,0,8,5,1,636,349897.16,0,0,3207.5938 -16212,19888,36215,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1083.2635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.699631,0,0,0,51.459999,36.689999,-9,-9,5,1,1,0,0,13,1,1,867,16526.498,0,0,162.98625 -16213,19889,36216,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,0,4,9.3607531,9.0635309,0,3,0,0,0,-9,0,-974.59283,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,42,42,15,1,0,-9,0,24.350103,24.350103,0,0,0,0,0,0,0,0,0,0,0,6.8619237,0,0,0,43.669998,61.060001,-9,-9,4,4,2,0,0,8,5,1,1448,298375.34,0,0,4161.603 -16214,19890,36217,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,4,8.0448513,8.0434771,0,3,0,0,0,-9,0,-1122.6466,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,42,53,15,1,1,-9,0,10.706441,10.706441,0,0,0,0,0,0,0,0,0,0,0,2.5327575,0,0,0,48.869999,58.549999,-9,-9,5,2,3,0,0,9,4,0,720,453023.75,0,0,2444.2051 -16215,19891,36218,-9,36220,36221,3,1,1,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-938.9248,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,13,2,0,795.75,55452.492,0,0,2137.5642 -16215,19891,36219,-9,36220,36221,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.7422,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,2,0,795.75,55452.492,0,0,2137.5642 -16215,19891,36220,36221,-9,-9,1,1,0,24,1,1,2,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,6,0,-5,-88.623535,0,1,1,29,2,2,1,-9,-9,2019,3,2,8,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.519997,39.16,43.099998,23.610001,6,1,1,0,0,13,2,0,795.75,55452.492,0,0,2137.5642 -16215,19891,36221,36220,-9,-9,2,1,1,29,1,1,2,0,2,-9,2,1,0,0,2,7.8588338,7.9151087,0,2,0,-9,6,0,5,-62.830559,0,1,0,24,3,4,3,-9,-9,2019,2,1,18,8,41,20,15,1,1,3,0,6.4167118,6.4167118,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.341867,3,43.099998,23.610001,64.519997,39.16,5,1,1,0,0,13,2,0,795.75,55452.492,0,0,2137.5642 -16216,19892,36222,36223,-9,-9,1,1,0,41,1,0,3,0,2,-9,2,1,0,0,5,8.3503361,8.2687664,5.6415462,2,0,-9,7,0,-3,27.957144,0,0,1,44,2,5,1,2,2,2019,1,4,9,0,46,40,15,1,0,1,0,8.2866812,8.2866812,0,0,0,0,0,0,0,7,1,1,0,6.0020823,0,0,3,51.73,58.82,57.060001,57.759998,6,1,1,0,0,2,3,1,403.39999,41494.41,0,0,2224.9028 -16216,19892,36223,36222,-9,-9,4,1,1,44,1,0,3,0,2,-9,1,1,0,0,5,6.4413457,6.5375714,0,2,0,-9,7,0,3,-16.741505,0,0,0,41,2,5,1,-9,-9,2019,1,1,6,0,45,45,15,1,0,1,0,1.6107929,1.6107929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51.73,58.82,6,1,1,0,0,2,3,1,403.39999,41494.41,0,0,2224.9028 -16216,19892,36224,-9,36222,36223,2,1,0,15,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-933.89398,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,2,3,1,403.39999,41494.41,0,0,2224.9028 -16216,19892,36225,-9,36222,36223,5,1,1,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.40076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,3,1,403.39999,41494.41,0,0,2224.9028 -16216,19892,36226,-9,36222,36223,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1082.89,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,2,3,1,403.39999,41494.41,0,0,2224.9028 -16217,19893,36227,-9,36228,36229,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-827.23785,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,5,1,706.25,954093.44,0,0,3858.3333 -16217,19893,36228,36229,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,0,3,8.6716623,8.6455984,0,2,0,-9,6,0,0,48.403042,0,0,1,41,1,4,1,-9,-9,2019,1,1,14,3,36,40,15,1,0,1,0,18.998024,18.998024,0,0,0,0,0,0,0,0,1,1,0,2.0017231,0,0,0,49.91,45.880001,49.459999,56.91,2,1,1,0,0,9,5,1,706.25,954093.44,0,0,3858.3333 -16217,19893,36229,36228,-9,-9,1,1,1,41,1,1,2,0,1,-9,2,1,0,0,4,8.2700272,8.1890011,0,2,0,-9,6,0,0,3.4432876,0,0,0,41,2,3,1,2,1,2019,1,2,5,0,43,38,15,1,0,1,0,12.348859,12.348859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.459999,56.91,49.91,45.880001,5,1,1,0,0,9,5,1,706.25,954093.44,0,0,3858.3333 -16217,19893,36230,-9,36228,36229,3,1,0,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.2382,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,9,5,1,706.25,954093.44,0,0,3858.3333 -16218,19894,36231,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,1,0,6.480864,6.8699608,3,0,0,0,-9,0,-938.67004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,5.1678658,0,0,0,15.331038,0,0,1,1,0,5.6739383,6.3786421,0,0,37.07,26.67,-9,-9,6,1,1,0,0,1,2,1,582,292090.88,0,0,1476.8409 -16219,19895,36232,36233,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,0,3,0,4.6510067,4.6042757,1,0,-9,56,0,1,-35.311115,0,0,0,79,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4899507,4.9717078,0,0,51.41,45.41,43.990002,60.709999,5,1,1,0,0,5,2,1,320,379950.78,0,0,1015.9171 -16219,19895,36233,36232,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,4,0,6.5109348,5.9771895,1,0,-9,56,0,-1,-168.03665,0,0,0,80,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.542274,6.0944161,0,0,43.990002,60.709999,51.41,45.41,6,1,1,0,0,5,2,1,320,379950.78,0,0,1015.9171 -16220,19896,36234,36236,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,0,4,7.9894772,7.5869174,0,2,0,-9,9,0,-5,-83.704697,-9,0,1,49,2,5,1,-9,-9,2019,1,1,10,1,20,0,15,1,0,1,0,13.735588,13.735588,0,0,0,0,0,0,0,0,1,1,0,.91019213,0,0,0,50,55,54.099998,59.110001,6,1,1,0,0,4,3,1,1273.25,399824.28,0,0,3410.3811 -16220,19896,36235,-9,36234,36236,4,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.4751,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,4,3,1,1273.25,399824.28,0,0,3410.3811 -16220,19896,36236,36234,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,0,5,7.7409148,7.9513364,0,2,0,-9,22,0,5,117.25898,0,0,0,44,2,4,1,3,3,2019,1,2,8,0,39,40,15,1,0,1,0,7.5478187,7.5478187,0,0,0,0,0,0,0,0,1,1,0,6.8288965,0,0,0,54.099998,59.110001,50,55,6,1,1,0,0,4,3,1,1273.25,399824.28,0,0,3410.3811 -16220,19896,36237,-9,36234,36236,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1069.2308,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,4,3,1,1273.25,399824.28,0,0,3410.3811 -16221,19897,36238,36239,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,60,0,-3,-1.1197397,0,0,0,76,3,5,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,9.7814999,0,0,0,0,0,1,1,0,0,0,0,0,46.959999,18.26,62.389999,56.709999,1,1,1,0,0,11,2,0,518,387004.5,0,0,2112.262 -16221,19897,36239,36238,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,0,5,0,5.7921219,5.5378532,1,0,-9,60,0,3,13.107818,0,0,0,73,3,2,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.6265202,23.11298,1,62.389999,56.709999,46.959999,18.26,7,1,1,0,0,11,2,0,518,387004.5,0,0,2112.262 -16222,19898,36240,-9,36241,-9,1,1,1,55,2,0,0,0,2,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1069.8677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,.59536117,0,40.794006,3,57.330002,53.459999,-9,-9,5,1,1,0,0,5,1,1,437,-101424.19,0,0,172.09526 -16222,19899,36241,-9,-9,-9,2,1,0,77,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-985.15204,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,38.302055,0,0,0,1,1,0,1.4370216,0,0,0,48.52,19.85,-9,-9,3,1,1,0,0,5,1,1,928,-30345.494,0,0,1571.2374 -16223,19900,36242,36243,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,3,7.6186972,7.4322357,0,1,0,-9,6,0,-5,-97.900253,0,1,1,33,1,2,1,-9,-9,2019,1,1,26,10,22,22,15,1,1,1,0,10.13739,10.13739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.880001,47.189999,61.84,23.18,5,1,1,0,0,12,3,0,1213,78240.438,0,0,1081.8497 -16223,19900,36243,36242,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,0,2,6.7816725,6.903336,0,1,0,-9,6,0,5,-206.83882,0,0,0,28,1,3,1,2,2,2019,1,2,11,2,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.84,23.18,35.880001,47.189999,5,1,1,0,0,12,3,0,1213,78240.438,0,0,1081.8497 -16224,19901,36244,-9,-9,-9,1,1,0,34,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1034.662,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.25,32.110001,-9,-9,1,1,1,0,1,6,1,0,239,-74914.484,0,0,1642.9224 -16225,19902,36245,36246,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,0,2,8.6111956,8.586689,0,1,0,-9,10,0,-1,-102.67604,0,0,0,60,2,3,1,-9,-9,2019,1,1,12,0,3,56,15,1,0,1,0,180.96466,180.96466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,48.860001,50.669998,52.580002,5,1,1,0,0,5,5,1,1765.5,1486680.5,0,0,3923.7659 -16225,19902,36246,36245,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,0,3,7.3307528,8.4419813,8.0910816,1,0,-9,10,0,1,121.28716,0,0,0,59,2,2,1,3,2,2019,1,2,10,0,35,56,15,1,0,1,0,4.3042412,4.3042412,0,0,0,0,0,0,0,0,0,0,0,6.4502449,8.1255293,0,0,50.669998,52.580002,50.27,48.860001,6,1,1,0,0,5,5,1,1765.5,1486680.5,0,0,3923.7659 -16225,19903,36247,-9,36245,36246,3,1,0,35,2,0,0,0,2,-9,2,1,0,0,2,7.3904028,7.165441,0,3,0,0,0,-9,0,-1092.7961,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,16,4,30,35,15,1,1,-9,1,6.1978025,6.1978025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.18,41.439999,-9,-9,4,1,1,0,0,5,3,1,839,-86846.203,0,0,-1324.2911 -16226,19904,36248,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,0,4,9.6558666,9.6435757,0,3,0,0,0,-9,0,-974.79553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,64,76,15,1,0,-9,0,32.536064,32.536064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,-9,-9,6,1,1,0,0,8,5,1,1493,1058555.6,0,0,5193.9399 -16227,19905,36249,36250,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,0,2,0,7.1856985,7.0127029,1,0,-9,36,0,3,70.131836,-9,0,0,65,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4705257,6.9929738,4.4901576,3,62.419998,32.41,53.220001,52.700001,7,1,1,0,0,10,4,1,259.5,1345184.3,0,0,3653.5288 -16227,19905,36250,36249,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,0,4,5.950325,7.9432478,8.0268784,1,0,-9,36,0,-3,-32.649281,0,0,0,68,2,2,3,3,2,2019,4,1,12,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.9093673,7.7673807,0,3,53.220001,52.700001,62.419998,32.41,6,1,1,0,0,10,4,1,259.5,1345184.3,0,0,3653.5288 -16228,19906,36251,36252,-9,-9,2,1,1,52,1,0,0,0,1,-9,1,1,0,0,4,7.2531166,7.899229,0,1,0,-9,12,0,1,-47.905708,0,0,0,51,1,3,1,2,3,2019,1,1,11,0,52,60,15,1,0,1,0,4.8531733,4.8531733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.389999,60.990002,40.07,54.57,3,4,2,0,0,8,5,1,969.5,1513245.4,0,0,2362.1812 -16228,19906,36252,36251,-9,-9,1,1,0,51,1,0,0,0,1,-9,1,1,0,0,3,8.5050354,8.3406563,0,1,0,-9,12,0,-1,-64.114983,0,0,0,52,1,4,1,2,3,2019,1,2,14,2,52,60,15,1,0,1,0,10.530615,10.530615,0,0,0,0,0,0,0,0,0,0,0,3.5894825,0,0,0,40.07,54.57,46.389999,60.990002,6,4,5,0,0,8,5,1,969.5,1513245.4,0,0,2362.1812 -16229,19907,36253,36254,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,0,4,8.0660496,8.6645451,7.1958113,1,0,-9,32,0,-2,60.946842,0,0,0,63,3,2,3,2,3,2019,2,2,20,8,38,38,15,1,1,3,0,9.8432913,9.8432913,0,0,0,0,0,0,0,0,1,0,1,3.6273711,7.3728375,0,0,46.049999,53.32,48.779999,37.32,3,1,1,0,0,2,4,1,550,1338291.8,0,0,1518.8164 -16229,19907,36254,36253,-9,-9,2,1,0,63,1,0,0,0,3,-9,3,3,0,0,2,0,0,0,1,0,-9,32,0,2,-78.498474,0,0,0,61,3,4,1,3,3,2019,3,1,12,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.779999,37.32,46.049999,53.32,6,1,1,1,0,2,4,1,550,1338291.8,0,0,1518.8164 -16230,19908,36255,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,1,1,0,0,3,8.4527769,8.8155384,0,1,0,-9,18,0,-4,-22.101671,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,16,5,50,58,15,1,1,-9,0,18.142763,18.142763,0,0,0,0,0,0,0,7,0,0,0,4.0688109,0,0,3,37.73,52.810001,49.32,50.189999,4,1,1,0,0,4,5,1,204,361575.03,0,0,398.89658 -16230,19909,36256,-9,-9,-9,2,1,0,51,2,0,0,0,2,-9,2,1,0,0,4,8.3131857,7.9170723,0,1,0,-9,18,0,4,36.977985,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,22,9,44,58,15,1,1,-9,0,10.623062,10.623062,0,0,0,0,0,0,0,2,0,0,0,2.1447797,0,.41803128,3,49.32,50.189999,37.73,52.810001,4,1,1,0,0,4,5,1,613,-217958.61,0,0,289.65155 -16231,19910,36257,36258,-9,-9,1,1,1,32,1,1,1,0,1,-9,2,1,0,0,5,9.2691832,9.4772196,0,2,0,-9,6,0,-2,3.9453321,0,0,0,34,1,5,1,2,2,2019,1,2,8,0,48,53,15,1,0,1,0,37.121552,37.121552,0,0,0,0,0,0,0,0,0,0,0,2.8805854,0,0,0,46.400002,59.869999,54.099998,59.110001,6,1,1,0,0,2,5,1,1123.3334,475627.31,0,0,9679.4688 -16231,19910,36258,36257,-9,-9,2,1,0,34,1,1,1,0,1,-9,1,1,0,0,5,9.7320232,9.6319056,0,2,0,-9,6,0,2,-4.5455217,0,0,1,32,1,5,1,2,3,2019,1,1,16,5,30,24,15,1,1,1,0,54.542908,54.542908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.099998,59.110001,46.400002,59.869999,6,1,1,0,0,2,5,1,1123.3334,475627.31,0,0,9679.4688 -16231,19910,36259,-9,36258,36257,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.3472,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,1123.3334,475627.31,0,0,9679.4688 -16232,19911,36260,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,2,1,0,0,3,6.8971939,7.193553,0,3,0,0,0,-9,0,-1142.1486,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,27,50,15,1,0,-9,0,6.0578108,6.0578108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.700001,53.75,-9,-9,6,3,4,0,0,8,2,0,3865,18526.834,0,0,1670.9781 -16233,19912,36261,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,2,1,0,0,3,7.837131,7.8938484,0,3,0,0,0,-9,0,-1008.2941,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,22,21,15,1,0,-9,0,14.244639,14.244639,0,0,0,0,0,0,0,0,0,0,0,.85378581,0,0,0,47.459999,52.700001,-9,-9,5,1,1,0,0,8,3,1,829,648369.44,0,0,843.99683 -16234,19913,36262,36263,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,0,4,8.1665936,8.4087048,0,1,0,-9,3,0,-16,-71.272697,0,0,0,71,1,4,3,-9,-9,2019,2,1,28,11,37,37,15,1,1,4,0,13.288304,13.288304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.560001,60.259998,49.349998,59.639999,6,1,1,0,0,5,4,1,671.5,2256770.5,0,0,3110.3481 -16234,19913,36263,36262,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,0,4,0,7.2850947,7.914566,1,0,-9,3,0,16,-13.448501,0,0,0,55,1,4,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2024529,7.6731853,0,0,49.349998,59.639999,45.560001,60.259998,6,1,1,0,0,5,4,1,671.5,2256770.5,0,0,3110.3481 -16235,19914,36264,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,8.3767252,8.5764408,4.1917658,3,0,-9,0,-9,0,-1034.4838,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,28,0,15,1,0,-9,0,17.888464,17.888464,0,0,0,0,0,0,0,0,1,1,0,5.3953614,4.6059628,0,0,54.200001,57.490002,-9,-9,7,1,1,0,0,5,5,1,308,678667.81,0,0,1478.2148 -16236,19915,36265,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,6.796782,7.0224686,3,0,0,0,-9,0,-1009.1865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.8727207,0,0,57.5,28.83,-9,-9,6,1,1,0,0,6,2,0,195,83248.797,0,0,1589.3433 -16237,19916,36266,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1138.4858,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.610001,30.379999,-9,-9,4,1,1,0,0,1,1,0,523,56329.195,0,0,576.6051 -16238,19917,36267,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,0,2,8.0282707,8.100667,0,3,0,0,0,-9,0,-1073.6737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,36,37,15,1,0,-9,0,9.1173401,9.1173401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.369999,38.740002,-9,-9,4,1,1,0,0,2,3,1,1344,387382.88,0,0,1199.9138 -16239,19918,36268,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-979.61273,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.75739,3,19.969999,42.759998,-9,-9,5,1,1,0,1,13,1,0,620,63637.309,0,0,-91.294273 -16239,19919,36269,-9,-9,36268,2,1,1,22,2,0,0,0,3,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1039.6974,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,13,1,0,212,116133.83,0,0,2692.0388 -16240,19920,36270,36271,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,0,3,9.2721119,9.1747656,0,1,0,-9,25,0,3,-16.745922,0,0,0,47,2,3,1,2,1,2019,1,2,10,0,40,41,15,1,0,1,0,39.21154,39.21154,0,0,0,0,0,0,0,0,0,0,0,2.1225388,0,0,0,56.939999,49.529999,43.959999,55.639999,5,2,3,0,0,8,5,1,771.5,904563.44,0,0,4351.2314 -16240,19920,36271,36270,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,0,3,6.5434875,6.4278588,0,1,0,-9,6,0,-3,20.322783,0,0,0,50,1,3,1,2,2,2019,1,1,13,1,43,40,15,1,0,1,0,1.9336218,1.9336218,0,0,0,0,0,0,0,0,0,0,0,1.3593155,0,0,0,43.959999,55.639999,56.939999,49.529999,4,2,3,0,0,8,5,1,771.5,904563.44,0,0,4351.2314 -16241,19921,36272,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,0,3,7.9378848,7.4899507,0,3,0,-9,0,-9,0,-935.09332,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,5,0,38,0,15,1,0,-9,1,6.3783364,6.3783364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.099998,49.93,-9,-9,6,1,1,0,0,1,3,1,609,142832.27,0,0,1900.6589 -16242,19922,36273,36274,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,5,7.9791884,7.7851281,0,1,0,1,1,-9,-8,-98.867996,0,0,0,61,2,4,1,3,2,2019,1,2,6,0,26,27,15,1,0,1,0,12.311606,12.311606,0,0,0,0,0,0,0,2,0,0,0,5.4514079,0,3.7685037,3,54.689999,57.470001,54.790001,55.860001,7,1,1,0,0,4,4,1,380,404528.38,0,0,1997.7781 -16242,19922,36274,36273,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.0548801,8.1749725,0,1,0,-9,1,-9,8,-80.460182,-9,0,0,53,2,5,1,-9,-9,2019,1,1,6,1,39,0,15,1,0,1,0,8.3159218,8.3159218,0,0,0,0,0,0,0,0,0,0,0,3.8196979,0,0,0,54.790001,55.860001,54.689999,57.470001,2,1,1,0,0,4,4,1,380,404528.38,0,0,1997.7781 -16243,19923,36275,36276,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,3,0,6.8887134,7.3250065,1,0,-9,59,0,1,114.86248,0,0,0,79,3,1,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.1197047,121.88995,1,42.330002,53.389999,64.580002,4.48,1,1,1,0,0,11,2,1,710.5,266416.63,0,0,2665.5449 -16243,19923,36276,36275,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,59,0,-1,29.039696,0,0,0,80,2,3,3,3,3,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,1,0,128.09979,0,0,0,0,0,1,1,0,0,0,0,0,64.580002,4.48,42.330002,53.389999,6,1,1,0,0,11,2,1,710.5,266416.63,0,0,2665.5449 -16244,19924,36277,36278,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,41,0,-3,81.53788,0,0,0,61,1,4,3,3,3,2019,4,1,20,8,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.28762504,0,0,0,35.599998,47.419998,52.23,55.599998,5,1,1,0,0,13,3,1,316,1085588.8,0,0,1485.0894 -16244,19924,36278,36277,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,0,4,0,8.103466,7.8480754,1,0,-9,41,0,3,99.755043,0,0,0,58,2,2,3,2,2,2019,4,2,13,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8349931,8.3816967,0,0,52.23,55.599998,35.599998,47.419998,4,1,1,0,0,13,3,1,316,1085588.8,0,0,1485.0894 -16245,19925,36279,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,3,8.8664265,8.5266438,0,3,0,0,0,-9,0,-987.85718,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,44,15,1,0,-9,0,12.902987,12.902987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.599998,52.77,-9,-9,5,3,4,0,0,4,5,1,1205,1151188.9,0,0,1870.5411 -16246,19926,36280,36281,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,5,8.6314688,8.5193415,0,1,0,-9,31,0,0,121.1043,0,0,0,59,3,3,1,3,3,2019,1,2,5,0,36,50,15,1,0,1,0,22.30798,22.30798,0,0,0,0,0,0,0,0,0,0,0,2.8042049,0,0,0,62.389999,56.709999,51,49,7,1,1,0,0,4,5,1,639.5,2549689.5,0,0,4630.6855 -16246,19926,36281,36280,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,0,3,8.2148466,8.1290779,0,1,0,-9,3,0,0,-15.926188,0,0,0,59,2,5,1,-9,-9,2019,1,1,10,1,37,37,15,1,0,1,0,9.2774744,9.2774744,0,0,0,0,0,0,0,0,0,0,0,1.030865,0,0,0,51,49,62.389999,56.709999,5,1,1,0,0,4,5,1,639.5,2549689.5,0,0,4630.6855 -16247,19927,36282,36283,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,2,0,6.861443,7.108191,1,0,-9,44,0,1,72.492973,0,0,0,83,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9046283,7.2074223,0,0,63.5,33.23,51.299999,30.49,6,1,1,0,0,6,2,1,524,349567.63,0,0,2771.7529 -16247,19927,36283,36282,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,45,0,-1,-76.715919,0,0,0,84,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3666279,0,0,0,51.299999,30.49,63.5,33.23,7,1,1,0,0,6,2,1,524,349567.63,0,0,2771.7529 -16248,19928,36284,-9,-9,-9,1,1,0,51,2,0,1,0,2,-9,2,1,0,0,3,8.5259218,8.1451311,0,4,0,0,0,-9,0,-1042.7905,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,39,15,1,0,-9,0,10.721078,10.721078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,-9,-9,7,3,4,0,0,8,3,1,1353,-25609.369,0,0,1743.739 -16248,19928,36285,-9,36284,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-994.89026,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,3,1,1353,-25609.369,0,0,1743.739 -16249,19929,36286,36287,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,46,0,0,5.0008512,0,0,0,65,2,4,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,57.16,56.150002,6,1,1,0,0,12,3,1,613.5,1258437.9,0,0,2114.5713 -16249,19929,36287,36286,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,0,4,8.1380329,8.4324169,0,1,0,-9,7,0,0,62.941467,0,0,0,65,3,3,3,3,3,2019,2,1,8,0,35,37,15,1,0,4,0,10.823437,10.823437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.330002,53.459999,7,1,1,0,0,12,3,1,613.5,1258437.9,0,0,2114.5713 -16250,19930,36288,36289,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,0,2,8.812768,8.8148317,0,1,0,-9,8,0,-3,26.20874,0,0,0,59,2,3,3,2,-9,2019,2,2,7,0,38,38,15,1,0,3,0,25.0287,25.0287,0,0,0,0,0,0,0,0,1,1,0,5.5438662,0,0,0,57.150002,45.779999,36.919998,51.869999,6,1,1,0,0,12,5,1,274.5,1060242.8,0,0,3638.1775 -16250,19930,36289,36288,-9,-9,2,1,1,59,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,8,0,3,-170.70349,0,0,0,56,1,2,1,2,2,2019,3,1,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.919998,51.869999,57.150002,45.779999,6,1,1,0,0,12,5,1,274.5,1060242.8,0,0,3638.1775 -16250,19931,36290,-9,36288,36289,3,1,0,19,2,0,0,0,2,-9,2,1,0,0,4,6.3116617,5.9055481,0,3,0,0,0,-9,0,-913.44983,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,12,2,1,467,-71727.156,0,0,-143.28119 -16251,19932,36291,-9,-9,-9,1,1,1,63,3,0,1,0,2,-9,4,3,0,0,4,0,8.4743013,8.371171,4,0,-9,0,1,0,-1137.1328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3427114,8.523448,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,13,4,1,216,995171.31,0,0,4973.5869 -16252,19933,36292,36293,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,52,0,5,32.941334,0,0,0,67,3,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.4531841,3,59.529999,56.439999,57.16,56.150002,6,1,1,0,0,7,2,1,1091,387026,0,0,1493.8171 -16252,19933,36293,36292,-9,-9,1,1,0,67,1,0,0,0,3,-9,2,1,0,0,4,7.0508876,6.9989738,0,1,0,-9,52,0,-5,15.855003,0,0,0,72,3,4,3,3,-9,2019,2,2,7,0,20,20,15,1,0,4,0,5.8108253,5.8108253,0,0,0,0,0,0,0,2,1,1,0,2.0174081,0,4.6427307,3,57.16,56.150002,59.529999,56.439999,6,1,1,0,0,7,2,1,1091,387026,0,0,1493.8171 -16253,19934,36294,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,0,3,0,6.6076512,6.2951198,3,0,0,0,-9,0,-893.76062,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.487617,0,0,60.200001,39.82,-9,-9,6,1,1,0,0,10,2,1,390,442047.84,0,0,1065.3297 -16254,19935,36295,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,0,3,7.6549897,7.7237134,0,4,0,0,0,-9,0,-955.04816,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,18,19,15,1,1,-9,0,12.405345,12.405345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,45.77,-9,-9,5,1,1,0,0,9,2,1,108,33308.277,0,0,1784.2079 -16254,19936,36296,-9,36295,-9,2,1,0,20,2,0,1,0,2,-9,2,1,0,0,3,7.583652,7.547935,0,3,0,0,0,-9,0,-908.07135,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,37,38,15,1,0,-9,1,5.3746414,5.3746414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.830002,58.529999,-9,-9,6,1,1,0,0,9,3,1,594,109075.16,0,0,-38.552921 -16254,19937,36297,-9,36295,-9,3,1,1,18,2,0,1,0,2,1,3,3,0,0,5,5.1278887,5.6754389,4.4701905,3,0,0,0,-9,0,-1018.3953,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3881116,0,0,0,62.389999,56.709999,-9,-9,7,1,1,1,1,9,3,1,1019,-122715.84,0,0,821.37512 -16255,19938,36298,36299,-9,-9,2,1,1,50,1,0,0,0,3,-9,8,3,1,1,1,0,0,0,1,0,-9,1,-9,0,0,-9,0,0,50,2,1,3,2,2,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.230003,4.8499999,40.240002,16.93,5,1,1,0,1,13,1,1,164,29396.227,0,0,225.8907 -16255,19938,36299,36298,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,1,1,0,0,0,1,0,-9,1,-9,0,0,-9,0,0,50,3,1,3,3,2,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.240002,16.93,64.230003,4.8499999,3,1,1,0,1,13,1,1,164,29396.227,0,0,225.8907 -16256,19939,36300,-9,36301,36302,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.93024,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,3,1,373,84905.273,0,0,2242.593 -16256,19939,36301,36302,-9,-9,1,1,0,40,1,1,2,0,2,-9,2,1,0,1,4,7.0127096,6.8930221,0,2,0,-9,9,0,-5,-144.21257,0,0,1,45,2,3,1,2,2,2019,1,2,12,0,16,16,15,1,0,1,0,5.7675276,5.7675276,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.441774,3,48.759998,53.240002,39.41,49.43,6,1,1,0,0,10,3,1,373,84905.273,0,0,2242.593 -16256,19939,36302,36301,-9,-9,2,1,1,45,1,1,2,0,2,-9,2,1,0,0,3,8.3002815,8.0593596,0,2,0,-9,9,0,5,-8.7792292,0,0,0,40,2,4,1,2,2,2019,1,1,14,2,48,44,15,1,0,1,0,7.4840922,7.4840922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.41,49.43,48.759998,53.240002,6,1,1,0,0,10,3,1,373,84905.273,0,0,2242.593 -16256,19939,36303,-9,36301,36302,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-992.58844,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,1,373,84905.273,0,0,2242.593 -16257,19940,36304,36305,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.6979179,7.6516418,1,0,-9,9,0,0,-21.792583,0,0,0,62,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0310301,8.0586901,0,0,54.369999,54.799999,49.040001,55.860001,5,1,1,0,0,12,4,1,912.5,1665387.8,0,0,2055.3113 -16257,19940,36305,36304,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,3,0,7.4419742,7.3840137,1,0,-9,9,0,0,150.93523,0,0,0,62,2,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.661695,0,0,49.040001,55.860001,54.369999,54.799999,6,1,1,0,0,12,4,1,912.5,1665387.8,0,0,2055.3113 -16258,19941,36306,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,0,2,0,3.9858959,4.2481279,3,0,0,0,-9,0,-965.99274,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.9031193,4.3913445,0,0,49.98,21.65,-9,-9,6,1,1,0,0,10,1,1,195,474767.47,0,0,-195.84721 -16259,19942,36307,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,0,4,0,7.1417971,7.1215224,3,0,0,0,-9,0,-1013.304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9468212,0,0,59.32,41.419998,-9,-9,7,1,1,0,0,12,2,1,371,471767.16,0,0,381.33997 -16260,19943,36308,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,0,3,0,5.4519296,5.1678715,3,0,0,0,-9,0,-944.87274,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.284112,0,0,51.990002,39.380001,-9,-9,6,1,1,0,0,12,2,1,857,280672.41,0,0,1538.9883 -16261,19944,36309,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,0,2,9.5419426,9.4779873,0,3,0,0,0,-9,0,-1028.5325,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,42,0,15,1,0,-9,0,32.960987,32.960987,0,0,0,0,0,0,0,0,1,1,0,.79473096,0,0,0,53.650002,37.990002,-9,-9,5,1,1,0,0,9,5,1,872,293359.22,0,0,4222.0845 -16262,19945,36310,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,0,3,0,7.3894868,7.3444571,3,0,0,0,-9,0,-1131.65,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.0484924,7.2852907,0,0,43.360001,44.849998,-9,-9,6,1,1,0,0,10,3,1,259,520536.28,0,0,1727.9701 -16263,19946,36311,36312,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,0,3,9.5442657,9.3567457,0,1,0,-9,17,0,-1,111.02038,0,0,1,44,1,5,1,3,3,2019,1,1,17,5,50,0,15,1,1,1,0,22.46958,22.46958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.919998,50.880001,57.060001,57.759998,4,2,3,0,0,8,5,1,371.5,1241763,0,0,17068.363 -16263,19946,36312,36311,-9,-9,1,1,1,44,1,0,0,0,1,-9,1,1,0,0,5,9.603035,9.6496429,0,1,0,-9,17,0,1,-73.483467,0,0,0,43,1,3,1,2,2,2019,1,2,2,0,40,0,15,1,0,1,0,47.752613,47.752613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,42.919998,50.880001,6,1,1,0,0,8,5,1,371.5,1241763,0,0,17068.363 -16264,19947,36313,-9,-9,-9,2,1,1,21,2,0,0,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-970.58002,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.660004,50.23,-9,-9,3,3,4,0,0,9,1,0,517,-43724.527,0,0,0 -16265,19948,36314,-9,-9,-9,1,1,1,46,3,0,0,0,1,-9,2,1,0,0,4,9.0299654,9.0190506,0,3,0,-9,0,1,0,-1006.0605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,52,15,1,0,-9,0,18.726751,18.726751,0,0,0,0,0,0,0,2,0,0,0,0,0,2.0970912,3,48.869999,58.549999,-9,-9,5,1,1,0,0,9,5,0,690,380480.16,0,0,3054.4172 -16266,19949,36315,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,2,1,0,0,4,7.984726,8.2525826,6.0849314,3,0,0,0,-9,0,-1184.6046,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,45,48,15,1,0,-9,0,5.7793622,5.7793622,0,0,0,0,0,0,0,0,0,0,0,0,6.1763921,0,0,38.73,48.09,-9,-9,5,1,1,0,0,2,4,0,840,263520.28,0,0,829.00977 -16266,19950,36316,-9,-9,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,0,4,7.7203932,7.9630575,0,3,0,0,0,-9,0,-971.00195,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,40,40,15,1,0,-9,0,8.5862122,8.5862122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,2,3,0,357,-102865.88,0,0,1495.2985 -16267,19951,36317,-9,-9,-9,1,1,1,40,2,0,1,0,2,-9,2,1,0,0,4,6.8091764,6.9653997,0,4,0,0,0,-9,0,-943.0578,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,16,20,15,1,0,-9,0,5.7260585,5.7260585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.720001,47.990002,-9,-9,4,1,1,0,1,9,2,0,1088,-19975.467,0,0,3113.7659 -16268,19952,36318,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,3,0,0,0,3,0,-9,0,-9,0,-1051.4375,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.370001,32.290001,-9,-9,6,1,1,0,0,12,1,0,1807,-68424.164,0,0,1738.0276 -16269,19953,36319,36320,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,0,4,7.4716406,7.812943,0,1,0,-9,40,0,-1,-2.5970938,0,0,0,64,1,4,1,1,1,2019,1,1,4,0,20,44,15,1,0,1,0,11.836639,11.836639,0,0,0,0,0,0,0,0,0,0,0,3.7208581,0,0,0,54.77,55.869999,54.790001,55.860001,7,1,1,0,0,9,5,1,936.5,2456111.5,0,0,5034.9814 -16269,19953,36320,36319,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,0,4,9.4321518,9.2196655,0,1,0,-9,41,0,1,42.111324,0,0,0,63,1,4,1,3,2,2019,1,2,7,0,50,50,15,1,0,1,0,29.775917,29.775917,0,0,0,0,0,0,0,0,0,0,0,5.0310764,0,0,0,54.790001,55.860001,54.77,55.869999,6,1,1,0,0,9,5,1,936.5,2456111.5,0,0,5034.9814 -16270,19954,36321,36324,-9,-9,1,1,1,36,1,1,2,0,3,-9,1,1,0,0,4,.76803237,.7782867,0,2,0,-9,5,0,3,92.486504,0,0,0,33,2,3,1,2,3,2019,1,2,10,0,90,55,15,1,0,1,0,.0020799236,.0020799236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,44.580002,51.200001,6,1,1,0,0,13,3,1,647.75,36391.676,0,0,1810.0638 -16270,19954,36322,-9,36324,36321,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-930.84546,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,3,1,647.75,36391.676,0,0,1810.0638 -16270,19954,36323,-9,36324,36321,3,1,1,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.2449,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,13,3,1,647.75,36391.676,0,0,1810.0638 -16270,19954,36324,36321,-9,-9,2,1,0,33,1,1,2,0,2,-9,2,1,0,0,3,8.56779,8.0559397,4.9609261,2,0,-9,5,0,-3,53.472599,0,0,1,36,3,4,1,-9,-9,2019,1,1,12,1,35,30,15,1,0,1,0,11.337032,11.337032,0,0,0,0,0,0,0,0,1,1,0,4.7221165,0,0,0,44.580002,51.200001,57.16,56.150002,6,1,1,0,0,13,3,1,647.75,36391.676,0,0,1810.0638 -16271,19955,36325,36327,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,0,2,7.5267453,7.6947742,0,2,0,-9,8,0,-4,-36.392296,0,0,1,40,2,2,3,3,-9,2019,2,1,22,10,33,33,15,1,1,3,0,9.5804577,9.5804577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.669998,47.860001,36.419998,48.150002,3,4,2,0,1,11,2,0,830,-89746.156,0,0,1894.9758 -16271,19955,36326,-9,36325,36327,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-933.95837,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,-9,-9,3,1,1,0,0,11,2,0,830,-89746.156,0,0,1894.9758 -16271,19955,36327,36325,-9,-9,1,1,1,40,1,0,1,0,2,-9,97,3,0,0,2,0,0,0,2,0,-9,8,0,4,24.087526,0,0,0,36,2,2,1,2,2,2019,3,2,23,10,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.419998,48.150002,43.669998,47.860001,2,1,1,0,1,11,2,0,830,-89746.156,0,0,1894.9758 -16272,19956,36328,-9,36329,36330,3,1,1,16,2,0,1,1,3,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1089.9247,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.209999,59.91,-9,-9,6,1,1,0,1,2,2,1,778,125693.16,0,0,1136.4199 -16272,19956,36329,36330,-9,-9,1,1,0,56,1,0,1,0,2,-9,2,1,0,0,4,7.040401,7.0938516,0,2,0,-9,40,0,-2,10.256355,0,0,0,58,3,2,1,3,3,2019,1,2,9,0,7,16,15,1,0,1,0,17.439022,17.439022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.580002,57.610001,46.209999,37.400002,6,1,1,0,1,2,2,1,778,125693.16,0,0,1136.4199 -16272,19956,36330,36329,-9,-9,2,1,1,58,1,0,1,0,3,-9,1,1,0,0,2,6.6365771,6.6423483,0,2,0,-9,39,0,2,-58.081436,-9,0,0,56,2,4,1,3,3,2019,1,1,13,3,45,0,15,1,0,1,0,2.312665,2.312665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.209999,37.400002,39.580002,57.610001,4,1,1,0,0,2,2,1,778,125693.16,0,0,1136.4199 -16273,19957,36331,-9,36332,36333,4,1,0,17,2,0,1,1,2,0,7,2,0,0,5,6.6507258,6.7130356,0,2,0,0,0,-9,0,-886.51019,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.099998,59.110001,-9,-9,7,1,1,0,0,1,4,1,645.33331,304881.44,0,0,3766.6416 -16273,19957,36332,36333,-9,-9,1,1,0,52,1,0,1,0,3,-9,2,1,0,0,5,7.9627991,8.1926908,0,2,0,-9,32,0,-3,8.6182556,0,0,0,55,2,3,1,2,2,2019,1,2,8,0,38,45,15,1,0,1,0,9.0204258,9.0204258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,72.470001,28.91,50,49,6,1,1,0,0,1,4,1,645.33331,304881.44,0,0,3766.6416 -16273,19957,36333,36332,-9,-9,2,1,1,55,1,0,1,0,2,-9,1,1,0,0,3,7.988306,8.1401196,0,2,0,-9,7,0,3,-124.89749,0,0,0,52,3,5,1,-9,-9,2019,1,1,10,1,60,50,15,1,0,1,0,5.83042,5.83042,0,0,0,0,0,0,0,0,1,1,0,4.6598301,0,0,0,50,49,72.470001,28.91,5,1,1,0,0,1,4,1,645.33331,304881.44,0,0,3766.6416 -16273,19958,36334,-9,36332,36333,3,1,0,20,2,0,1,1,2,0,7,2,0,0,5,7.3281865,7.1489553,0,3,0,0,0,-9,0,-995.16339,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,2,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,1,3,1,326,163397.58,0,0,792.40979 -16274,19959,36335,36336,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,0,4,9.6199722,9.4528542,0,1,0,-9,3,0,2,3.728493,0,0,0,58,2,3,1,3,2,2019,1,2,11,0,42,42,15,1,0,1,0,38.381931,38.381931,0,0,0,0,0,0,0,0,0,0,0,4.0152726,0,0,0,46.98,59.349998,49.27,43.540001,6,1,1,0,0,8,5,1,1105.5,3326047,0,0,6765.4922 -16274,19959,36336,36335,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,8.6621914,8.6315708,0,1,0,-9,3,0,-2,-149.72878,0,0,0,60,1,4,1,-9,-9,2019,1,1,10,2,36,45,15,1,0,1,0,16.370199,16.370199,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.875785,3,49.27,43.540001,46.98,59.349998,6,1,1,0,0,8,5,1,1105.5,3326047,0,0,6765.4922 -16275,19960,36337,36338,-9,-9,2,1,0,39,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,10,0,-14,70.92083,0,0,1,53,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,53.610001,51.099998,6,1,1,0,0,7,5,1,386.66666,1820133.5,0,0,3959.3896 -16275,19960,36338,36337,-9,-9,1,1,1,53,1,0,1,0,1,-9,1,1,0,0,4,9.1125326,9.046649,0,2,0,-9,10,0,14,-2.0577455,0,0,0,39,2,4,3,2,1,2019,2,2,7,1,50,55,15,1,0,3,0,28.973391,28.973391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.610001,51.099998,60.119999,54.799999,6,1,1,0,0,7,5,1,386.66666,1820133.5,0,0,3959.3896 -16275,19960,36339,-9,36337,36338,3,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.2933,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,386.66666,1820133.5,0,0,3959.3896 -16276,19961,36340,-9,-9,-9,1,1,0,22,2,0,0,1,1,0,7,2,0,0,3,8.1724901,8.061738,0,1,0,1,1,-9,-6,-51.737843,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,2,12,1,70,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,49.630001,47,57,5,1,1,0,0,12,3,0,2626,22238.637,0,0,1007.6796 -16277,19962,36341,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,2,1,0,0,3,8.4715576,8.3598127,0,3,0,0,0,-9,0,-1025.9203,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,41,44,15,1,0,-9,0,13.463034,13.463034,0,0,0,0,0,0,0,0,1,1,0,4.0505924,0,0,0,58.889999,48.599998,-9,-9,2,1,1,0,0,2,4,1,1007,597005.31,0,0,3354.9998 -16278,19963,36342,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,0,3,0,8.2846003,8.1772804,3,0,0,0,-9,0,-891.82813,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2795839,0,0,65.800003,39.970001,-9,-9,6,1,1,0,0,2,4,1,486,640893.5,0,0,3126.8623 -16279,19964,36343,-9,36345,36344,1,1,1,33,2,0,0,0,2,-9,1,1,0,0,2,6.9535041,6.6426921,0,3,0,0,0,-9,0,-1099.1467,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,22,10,70,60,15,1,1,-9,1,1.2620966,1.2620966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.84,49.009998,-9,-9,4,1,1,0,1,7,2,1,274,34082.098,0,0,-400.8378 -16279,19965,36344,36345,-9,-9,3,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,6.4042888,8.5819025,8.5479269,1,0,-9,41,0,3,129.92627,0,0,0,63,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.3726102,8.7447243,0,3,57.330002,53.459999,54.200001,57.490002,6,1,1,0,0,7,5,1,480,3149862,0,0,5781.9805 -16279,19965,36345,36344,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,0,4,0,8.1978359,8.5980263,1,0,-9,37,0,-3,52.759182,0,0,0,66,1,3,3,2,-9,2019,4,3,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8117433,8.3505487,0,0,54.200001,57.490002,57.330002,53.459999,6,1,1,0,0,7,5,1,480,3149862,0,0,5781.9805 -16280,19966,36346,36347,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,3,0,7.8881297,8.5071287,1,0,-9,8,0,8,-131.48657,0,0,0,71,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3387542,8.2757349,0,0,56.939999,49.529999,60.119999,54.799999,6,1,1,0,0,2,5,1,513,2414510,0,0,6866.1699 -16280,19966,36347,36346,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,0,4,0,8.510232,8.545105,1,0,-9,8,0,-8,-34.40612,0,0,0,79,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2485089,8.8677807,0,0,60.119999,54.799999,56.939999,49.529999,7,1,1,0,0,2,5,1,513,2414510,0,0,6866.1699 -16281,19967,36348,36349,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,0,2,0,6.0199413,5.8717632,1,0,-9,7,0,2,4.1563649,0,0,0,78,3,4,1,3,3,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.41801143,6.0454936,0,0,59.310001,23.02,41.169998,59.310001,7,1,1,0,0,7,4,1,823,1322196.4,0,0,2950.5112 -16281,19967,36349,36348,-9,-9,2,1,1,78,1,0,0,0,3,-9,2,1,0,0,4,7.4448719,8.2063656,7.1144872,1,0,-9,7,0,-2,-58.090897,0,0,0,80,2,2,3,3,3,2019,2,1,7,0,22,22,15,1,0,4,0,11.010194,11.010194,0,0,0,0,0,0,0,0,1,1,0,4.5439897,7.3474531,0,0,41.169998,59.310001,59.310001,23.02,6,1,1,0,0,7,4,1,823,1322196.4,0,0,2950.5112 -16282,19968,36350,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,0,4,7.0862956,7.2181048,0,3,0,0,0,-9,0,-888.99091,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,70,15,1,0,-9,0,4.0586009,4.0586009,0,0,0,0,0,0,0,0,0,0,0,.10951938,0,0,0,41.34,49.939999,-9,-9,3,1,1,0,1,7,2,1,1519,529622.25,0,0,815.28656 -16283,19969,36351,36352,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,0,4,7.1099315,7.301878,0,1,0,1,1,-9,0,-28.299381,0,1,0,28,2,3,1,-9,-9,2019,1,2,7,0,20,33,15,1,0,1,0,7.0009685,7.0009685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.790001,55.860001,54.959999,53.169998,5,1,1,0,1,4,2,0,829,-7081.1738,0,0,650.34711 -16283,19969,36352,36351,-9,-9,2,1,0,28,1,0,0,0,2,-9,5,1,0,0,3,0,0,0,1,0,-9,1,-9,0,-37.331455,-9,1,1,28,2,4,1,-9,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,54.790001,55.860001,6,1,1,0,0,4,2,0,829,-7081.1738,0,0,650.34711 -16284,19970,36353,36354,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,60,0,-5,-29.772112,0,0,0,83,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.919998,41.799999,53.459999,37.240002,6,1,1,0,0,5,2,1,509,190589.16,0,0,844.01587 -16284,19970,36354,36353,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,0,3,0,6.3321047,6.7913885,1,0,-9,11,0,5,13.419252,0,0,0,78,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.1041603,5.4259849,0,0,53.459999,37.240002,52.919998,41.799999,5,1,1,0,0,5,2,1,509,190589.16,0,0,844.01587 -16284,19971,36355,-9,-9,-9,3,1,1,71,3,0,0,0,3,-9,4,3,0,0,3,0,7.175354,7.2881484,3,0,0,0,-9,0,-937.91339,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9999166,7.4614711,0,0,52,48,-9,-9,5,4,6,0,0,5,3,1,530,348563.53,0,0,1298.9944 -16285,19972,36356,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-991.71674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.939999,33.459999,-9,-9,6,1,1,0,0,12,1,0,1022,-138800.94,0,0,834.82257 -16286,19973,36357,36358,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,0,3,0,6.8217049,7.0118008,1,0,-9,7,0,6,107.39364,0,0,0,60,1,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.731616,6.7311611,0,0,46.310001,51.529999,48.68,51.880001,5,1,1,0,0,8,2,1,1083.5,921524.13,0,0,4778.2764 -16286,19973,36358,36357,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,0,4,0,6.2299185,6.350872,1,0,-9,7,0,-6,-80.015526,-9,0,0,66,2,3,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.726315,17.526178,3,48.68,51.880001,46.310001,51.529999,4,1,1,0,0,8,2,1,1083.5,921524.13,0,0,4778.2764 -16287,19974,36359,36360,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,0,4,8.3735466,8.6339273,6.1315718,1,0,-9,7,0,1,30.567455,0,0,0,55,2,4,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,14.284587,14.284587,0,0,0,0,0,0,0,0,1,1,0,2.3531866,6.4683928,0,0,54,54,48.630001,51.790001,6,1,1,0,0,2,5,1,271,1118860.9,0,0,5371.7788 -16287,19974,36360,36359,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.6563492,8.8358412,4.9583054,1,0,-9,38,0,-1,15.944133,0,0,0,56,2,4,1,2,2,2019,1,2,8,1,41,42,15,1,0,1,0,14.810495,14.810495,0,0,0,0,0,0,0,0,1,1,0,0,5.4807968,0,0,48.630001,51.790001,54,54,6,1,1,0,0,2,5,1,271,1118860.9,0,0,5371.7788 -16287,19975,36361,-9,36360,36359,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.163744,7.8733926,0,3,0,0,0,-9,0,-990.18585,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,37,15,1,0,-9,1,10.954412,10.954412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,2,4,1,504,43461.395,0,0,520.22992 -16288,19976,36362,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-955.35632,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.019997,28.190001,-9,-9,6,1,1,1,0,8,1,1,191,-68865.898,0,0,16.533838 -16288,19977,36363,-9,36362,-9,2,1,0,28,2,0,0,0,1,-9,2,1,0,0,5,8.9311829,9.138773,0,3,0,0,0,-9,0,-995.52197,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,3,0,39,0,15,1,0,-9,1,28.731905,28.731905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.799999,58.27,-9,-9,5,1,1,0,0,8,5,1,208,-195827.41,0,0,4005.5127 -16289,19978,36364,36366,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,0,3,7.9845719,7.9567499,0,2,0,-9,19,0,3,132.52794,0,0,0,46,2,3,1,2,2,2019,1,2,19,6,2,0,15,1,1,1,0,135.55069,135.55069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.9,61.009998,57.330002,53.459999,2,1,1,0,1,2,4,1,562.66669,427983.5,0,0,3237.3999 -16289,19978,36365,-9,36364,36366,5,1,0,16,2,0,1,1,2,-9,7,2,0,0,4,4.4637804,4.3660631,0,2,0,0,0,-9,0,-997.38824,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.189999,54.259998,-9,-9,6,1,1,0,0,2,4,1,562.66669,427983.5,0,0,3237.3999 -16289,19978,36366,36364,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,8.3597803,8.2346926,0,2,0,-9,19,0,-3,-17.283792,0,0,0,49,2,3,1,-9,-9,2019,1,1,7,0,40,45,15,1,0,1,0,11.287243,11.287243,0,0,0,0,0,0,0,0,1,1,0,6.9303212,0,0,0,57.330002,53.459999,28.9,61.009998,6,1,1,0,0,2,4,1,562.66669,427983.5,0,0,3237.3999 -16289,19979,36367,-9,36364,36366,3,1,0,20,2,0,1,0,2,-9,2,1,0,0,4,8.0511808,7.9829636,0,3,0,0,0,-9,0,-1069.2306,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,9,35,37,15,1,1,-9,1,11.452009,11.452009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.48,66.739998,-9,-9,5,1,1,0,0,2,4,1,791,-106650.99,0,0,2261.2527 -16289,19980,36368,-9,36364,36366,4,1,1,23,2,0,1,0,2,-9,1,1,0,0,3,7.6326141,7.4022908,0,3,0,0,0,-9,0,-965.32153,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,40,37,15,1,0,-9,1,5.5521998,5.5521998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.220001,54.790001,-9,-9,6,1,1,0,0,2,3,1,110,-98457.063,0,0,1899.229 -16290,19981,36369,36370,-9,-9,2,1,1,63,1,0,0,0,1,-9,1,1,0,0,3,7.5897603,8.4566612,7.8413239,1,0,-9,8,0,8,117.13087,0,0,0,55,2,3,1,-9,-9,2019,1,1,14,2,5,50,15,1,0,1,0,39.032715,39.032715,0,0,0,0,0,0,0,0,0,0,0,6.8805671,8.4421721,0,0,52.41,47.5,52.310001,40.619999,4,1,1,0,0,11,4,1,832.5,554772.38,0,0,3739.5237 -16290,19981,36370,36369,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,6.2947874,6.8208299,0,1,0,-9,8,0,-8,-13.596183,0,0,0,63,1,3,1,3,2,2019,1,2,7,0,16,0,15,1,0,1,0,5.6846333,5.6846333,0,0,0,0,0,0,0,7,0,0,0,.29371959,0,8.385911,3,52.310001,40.619999,52.41,47.5,2,1,1,0,0,11,4,1,832.5,554772.38,0,0,3739.5237 -16291,19982,36371,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,0,4,8.3582525,8.2308588,0,3,0,0,0,-9,0,-1011.5618,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,40,28,15,1,0,-9,0,11.729354,11.729354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.84,41.57,-9,-9,5,1,1,0,0,13,4,1,408,1593027.4,0,0,2789.95 -16292,19983,36372,36373,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,2,0,7.2280593,7.3917751,1,0,-9,53,0,-10,-111.42024,0,0,0,87,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2500291,6.9327703,0,0,58.080002,19.620001,33.970001,20.889999,6,3,4,0,0,6,2,1,609.5,366190.59,0,0,2080.6011 -16292,19983,36373,36372,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,53,0,10,70.374947,0,0,0,77,3,2,3,-9,-9,2019,4,2,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5229983,0,0,0,33.970001,20.889999,58.080002,19.620001,6,3,4,0,0,6,2,1,609.5,366190.59,0,0,2080.6011 -16293,19984,36374,-9,36377,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,0,5,9.0925989,8.5734682,0,3,0,0,0,-9,0,-1074.6715,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,74,45,15,1,0,-9,1,8.467207,8.467207,0,0,0,0,0,0,0,7,1,1,0,0,0,6.8167644,3,60.02,56.419998,-9,-9,6,2,3,0,0,8,5,1,1084,159877.02,0,0,1731.311 -16293,19985,36375,-9,36377,-9,2,1,0,38,2,0,0,0,1,-9,1,1,0,0,2,0,0,0,3,0,0,0,-9,0,-1041.7673,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,3,70,60,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,56,1,1,0,0,0,72.665649,3,47.139999,46.130001,-9,-9,5,2,3,0,0,8,1,1,530,-90919.836,0,0,0 -16293,19986,36376,-9,36377,-9,3,1,0,34,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1095.5767,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,29,11,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.123276,3,21.93,37.549999,-9,-9,2,2,3,0,1,8,1,1,384,47513.07,0,0,1900.7633 -16293,19987,36377,-9,-9,-9,4,1,0,70,3,0,0,0,1,-9,4,3,0,0,1,0,6.5186448,6.1546102,3,0,0,0,-9,0,-1137.6615,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,4,1,-9,0,0,0,1,0,0,1.3040558,.15050945,0,0,27.5,1,1,0,6.3964181,0,36.921665,3,29.360001,23.040001,-9,-9,3,2,3,0,1,8,2,1,285,-147094.33,0,0,-17.773306 -16293,19988,36378,-9,36380,-9,5,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-983.88885,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.4395378,3,47.720001,53.77,-9,-9,6,2,3,0,1,8,1,1,84,-40274.43,0,0,29.99362 -16293,19989,36379,-9,36380,-9,6,1,0,22,2,0,0,1,1,0,7,2,0,0,5,5.9655209,5.9253335,0,3,0,0,0,-9,0,-1099.353,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,13.039237,3,57.060001,57.759998,-9,-9,6,2,3,0,0,8,2,1,149,85408.984,0,0,127.10603 -16293,19990,36380,-9,-9,-9,7,1,0,44,3,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1029.7992,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.08,34.099998,-9,-9,1,2,3,0,1,8,1,1,829,181639.84,0,0,0 -16294,19991,36381,36382,-9,-9,1,1,0,61,1,0,0,0,2,-9,6,3,0,0,1,0,7.2701211,6.9525046,1,0,-9,38,-9,-4,56.149548,-9,0,0,65,2,4,1,2,3,2019,3,2,10,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.965511,7.123723,0,3,58.560001,9.8800001,60.25,45.080002,2,1,1,0,0,10,4,0,419.5,1778124,0,0,3410.4443 -16294,19991,36382,36381,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,0,4,8.3332901,8.530323,6.6937971,1,0,-9,38,-9,4,24.281269,-9,0,0,61,2,1,3,3,3,2019,2,1,9,0,39,0,15,1,0,3,0,12.54783,12.54783,0,0,0,0,0,0,0,0,1,1,0,2.4584301,6.8849282,0,0,60.25,45.080002,58.560001,9.8800001,2,1,1,0,0,10,4,0,419.5,1778124,0,0,3410.4443 -16295,19992,36383,-9,36385,36384,4,1,0,17,2,0,1,1,2,0,7,2,0,0,3,6.4755669,6.5507164,0,2,0,0,0,-9,0,-1034.2419,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,17,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.540001,52.369999,-9,-9,5,1,1,0,0,6,4,1,825.33331,738716.56,0,0,2905.6091 -16295,19992,36384,36385,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,0,4,7.9964633,8.5712776,0,2,0,-9,6,0,12,-20.421564,0,0,0,45,2,4,1,3,3,2019,1,1,7,0,55,55,15,1,0,1,0,8.2336712,8.2336712,0,0,0,0,0,0,0,0,1,1,0,.70427507,0,0,0,50.650002,60.470001,53.369999,49.66,7,1,1,0,0,6,4,1,825.33331,738716.56,0,0,2905.6091 -16295,19992,36385,36384,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,0,4,7.7226977,7.7378292,0,2,0,-9,6,0,-12,-58.78529,0,0,0,57,2,4,1,3,3,2019,1,2,12,1,39,37,15,1,0,1,0,7.5002041,7.5002041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.369999,49.66,50.650002,60.470001,6,1,1,0,0,6,4,1,825.33331,738716.56,0,0,2905.6091 -16295,19993,36386,-9,36385,36384,3,1,1,18,2,0,1,0,2,-9,2,1,0,0,5,7.6036048,7.4949012,0,3,0,0,0,-9,0,-1095.1093,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,10,0,15,1,0,-9,1,27.636934,27.636934,0,0,0,0,0,0,0,0,1,1,0,1.2866956,0,0,0,49.360001,58.529999,-9,-9,6,1,1,0,0,6,3,1,218,148967.59,0,0,-256.57422 -16296,19994,36387,36388,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,2,8.5784245,8.623332,5.6986136,1,0,-9,34,0,4,128.91519,0,0,0,55,2,4,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,17.364916,17.364916,0,0,0,0,0,0,0,0,1,1,0,0,6.1398158,0,0,50.950001,48.580002,43.48,60.970001,6,1,1,0,0,4,5,1,765,406949.72,0,0,4606.5645 -16296,19994,36388,36387,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.1155939,8.2280884,0,1,0,-9,34,0,-4,37.207687,0,0,0,59,3,2,1,2,2,2019,1,1,13,1,40,42,15,1,0,1,0,11.222349,11.222349,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.970001,50.950001,48.580002,6,1,1,0,0,4,5,1,765,406949.72,0,0,4606.5645 -16297,19995,36389,36390,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,8.0040302,8.0907955,1,0,-9,55,0,0,56.852524,0,0,0,85,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7171628,8.10254,3.5090876,1,57.16,56.150002,55,45,6,1,1,0,0,9,4,1,617,1073583,0,0,7412.4951 -16297,19995,36390,36389,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,0,3,0,7.7524834,7.4792295,1,0,-9,7,0,9,-92.845222,0,0,0,76,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9978619,7.703517,0,0,55,45,57.16,56.150002,6,1,1,0,0,9,4,1,617,1073583,0,0,7412.4951 -16298,19996,36391,36392,-9,-9,1,1,1,51,1,0,1,0,3,-9,2,1,0,0,4,8.7798958,8.7260237,0,2,0,-9,19,0,-2,77.633339,0,0,0,53,2,4,1,-9,-9,2019,1,2,9,1,60,55,15,1,0,1,0,12.219211,12.219211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.93,55.73,54.790001,55.860001,6,1,1,0,0,4,5,1,1136.3334,876954.44,0,0,3793.2839 -16298,19996,36392,36391,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,0,4,7.418962,7.3771152,0,2,0,-9,19,0,2,.10734745,0,0,0,51,3,4,1,-9,2,2019,1,1,4,0,17,16,15,1,0,1,0,11.691846,11.691846,0,0,0,0,0,0,0,0,1,1,0,7.1078434,0,0,0,54.790001,55.860001,48.93,55.73,6,1,1,0,0,4,5,1,1136.3334,876954.44,0,0,3793.2839 -16298,19996,36393,-9,36392,36391,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-938.37476,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,4,5,1,1136.3334,876954.44,0,0,3793.2839 -16299,19997,36394,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,1,8.2965069,8.0705853,0,3,0,0,0,-9,0,-945.8938,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,35,35,15,1,1,-9,0,10.949104,10.949104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.200001,27.18,-9,-9,5,1,1,0,0,12,4,1,258,24191.641,0,0,550.22913 -16300,19998,36395,36396,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,0,4,7.9215393,8.1802359,0,1,0,-9,29,0,-1,77.115395,0,0,0,49,2,4,1,2,2,2019,1,1,11,0,30,37,15,1,0,1,0,13.136657,13.136657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.09,58.82,41.299999,60.77,6,1,1,0,0,10,5,1,749.5,1285038.8,0,0,4625.4736 -16300,19998,36396,36395,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,0,4,9.1227312,9.299614,0,1,0,-9,29,0,1,-129.29024,0,0,0,48,2,4,1,-9,2,2019,1,2,17,7,55,52,15,1,1,1,0,21.08255,21.08255,0,0,0,0,0,0,0,0,0,0,0,5.0921941,0,0,0,41.299999,60.77,45.09,58.82,6,1,1,0,0,10,5,1,749.5,1285038.8,0,0,4625.4736 -16300,19999,36397,-9,36395,36396,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.8126068,7.7871594,0,3,0,0,0,-9,0,-991.84607,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,38,28,15,1,0,-9,1,7.2940469,7.2940469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,7,1,1,0,0,10,4,1,240,121910.23,0,0,687.94153 -16301,20000,36398,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,0,4,8.2628927,8.1806488,0,3,0,0,0,-9,0,-997.68176,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,21,21,15,1,0,-9,0,24.89448,24.89448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.93,55.310001,-9,-9,5,2,3,0,0,8,4,0,134,-27189.311,0,0,2797.6382 -16302,20001,36399,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-926.25653,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,1,-9,0,0,0,1,0,0,3.2423205,0,0,0,0,1,1,0,0,0,0,0,33.16,36.279999,-9,-9,5,1,1,0,0,5,1,0,594,-52991.902,0,0,1460.448 -16303,20002,36400,36401,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,1,5,7.9363737,7.9915643,0,1,0,-9,10,0,-3,-14.02549,0,0,0,60,2,2,1,2,2,2019,1,1,19,7,32,34,15,1,1,1,0,11.226778,11.226778,0,0,0,0,0,0,0,5.48,1,1,0,1.1287851,0,.13669983,3,34.439999,67.980003,37.41,46.830002,4,1,1,0,0,11,5,1,856,1631290.9,0,0,2599.8279 -16303,20002,36401,36400,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,0,2,8.5398397,8.8051081,6.4996629,1,0,-9,10,0,3,72.34343,0,0,0,57,2,5,1,3,3,2019,1,2,18,6,38,37,15,1,1,1,0,17.180845,17.180845,0,0,0,0,0,0,0,0,1,1,0,3.5661771,6.1986475,0,0,37.41,46.830002,34.439999,67.980003,3,1,1,0,0,11,5,1,856,1631290.9,0,0,2599.8279 -16304,20003,36402,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,0,5,8.6364946,8.185792,0,3,0,0,0,-9,0,-1015.7319,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,37,15,1,0,-9,0,14.689764,14.689764,0,0,0,0,0,0,0,0,0,0,0,2.5362637,0,0,0,46.34,61.240002,-9,-9,5,1,1,0,0,4,4,1,910,-153049.31,0,0,1714.2373 -16305,20004,36403,36404,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,0,2,0,5.1368132,5.3671002,1,0,-9,61,0,-5,-77.899918,0,0,0,84,2,1,3,3,2,2019,4,2,15,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.5400176,71.410713,1,43.5,42.549999,29.52,27.440001,4,1,1,0,0,9,2,0,282.5,893658.5,0,0,1323.8329 -16305,20004,36404,36403,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,1,1,0,4.1105037,4.2434006,1,0,-9,7,0,5,23.154869,0,0,0,79,1,2,3,2,-9,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,1,25.92812,24.987144,0,0,0,277.38446,0,1,1,0,0,3.6100626,0,0,29.52,27.440001,43.5,42.549999,4,1,1,0,0,9,2,0,282.5,893658.5,0,0,1323.8329 -16306,20005,36405,36406,-9,-9,1,1,0,51,1,0,1,0,1,-9,1,1,0,0,4,7.8362145,7.8416896,0,2,0,-9,7,0,-6,-46.249245,0,0,0,57,2,4,1,2,-9,2019,1,2,6,0,22,21,15,1,0,1,0,12.198226,12.198226,0,0,0,0,0,0,0,0,1,1,0,2.0214801,0,0,0,51.240002,58.84,58.150002,52.91,6,1,1,0,0,12,5,1,593.5,237284.94,0,0,2319.7886 -16306,20005,36406,36405,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,0,4,8.6412849,8.6068602,0,2,0,-9,7,0,6,99.218689,0,0,0,51,1,4,1,3,3,2019,1,1,6,0,52,48,15,1,0,1,0,14.995807,14.995807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,51.240002,58.84,6,1,1,0,0,12,5,1,593.5,237284.94,0,0,2319.7886 -16307,20006,36407,36408,-9,-9,1,1,1,27,1,0,0,0,1,-9,3,3,0,0,3,0,0,0,1,0,-9,5,0,-1,100.26752,0,1,0,28,1,4,1,-9,-9,2019,3,2,12,0,0,32,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9296718,0,0,0,53.139999,51.279999,58.549999,51.639999,6,1,1,1,0,6,4,1,450,109662.8,0,0,2336.4749 -16307,20006,36408,36407,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,8.5784416,8.4629993,0,1,0,-9,5,0,1,-80.166519,0,1,1,27,1,3,3,-9,-9,2019,2,1,7,1,35,35,15,1,0,3,0,18.59811,18.59811,0,0,0,0,0,0,0,0,0,0,0,3.0773096,0,0,0,58.549999,51.639999,53.139999,51.279999,6,1,1,0,0,6,4,1,450,109662.8,0,0,2336.4749 -16308,20007,36409,-9,36413,36412,5,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-843.98187,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,10,2,0,1252.2,268563.19,0,0,1916.0939 -16308,20007,36410,-9,36413,36412,4,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1030.3571,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,10,2,0,1252.2,268563.19,0,0,1916.0939 -16308,20007,36411,-9,36413,36412,3,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1010.3901,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,4,2,0,0,10,2,0,1252.2,268563.19,0,0,1916.0939 -16308,20007,36412,36413,-9,-9,1,1,1,48,1,0,3,0,3,-9,1,1,0,0,3,7.3387961,7.3173442,0,2,0,-9,6,0,11,-35.348621,0,0,0,37,1,1,3,2,1,2019,2,2,14,4,32,30,15,1,1,3,0,4.609777,4.609777,0,0,0,0,0,0,0,2,1,1,0,0,0,3.6960783,1,41.720001,56.810001,38.91,20.530001,5,3,4,0,0,10,2,0,1252.2,268563.19,0,0,1916.0939 -16308,20007,36413,36412,-9,-9,2,1,0,37,1,0,3,0,1,-9,6,3,0,0,1,4.5708523,4.5999866,0,2,0,-9,4,0,-11,-86.211342,0,0,1,48,3,3,1,-9,-9,2019,3,1,23,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,20.530001,41.720001,56.810001,3,4,5,0,0,10,2,0,1252.2,268563.19,0,0,1916.0939 -16309,20008,36414,-9,36415,36416,3,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.75403,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,5,4,0,780,152162.81,0,0,2580.9189 -16309,20008,36415,36416,-9,-9,2,1,0,26,1,1,1,0,2,-9,2,1,0,0,4,7.925189,8.2329884,0,2,0,-9,6,0,-7,-38.179329,0,1,1,33,2,4,1,-9,-9,2019,1,1,8,1,42,43,15,1,0,1,0,9.8117867,9.8117867,0,0,0,0,0,0,0,7,1,1,0,0,0,12.112105,3,58.150002,52.91,52.299999,54.68,6,1,1,0,0,5,4,0,780,152162.81,0,0,2580.9189 -16309,20008,36416,36415,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,0,4,8.7614813,8.2506132,0,2,0,-9,6,0,7,129.46335,0,0,0,26,2,4,1,2,-9,2019,1,2,7,0,38,60,15,1,0,1,0,12.144165,12.144165,0,0,0,0,0,0,0,7,1,1,0,0,0,15.760244,3,52.299999,54.68,58.150002,52.91,4,1,1,0,0,5,4,0,780,152162.81,0,0,2580.9189 -16310,20009,36417,36418,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,10,0,-3,19.269604,-9,0,0,59,2,2,3,3,3,2019,4,1,12,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,17.360001,38.209999,5,1,1,0,0,4,2,1,706.5,381416.56,0,0,2841.3462 -16310,20009,36418,36417,-9,-9,1,1,1,59,1,0,0,0,2,-9,6,3,0,1,2,0,6.5356035,7.159833,1,0,-9,10,0,3,-10.782804,0,0,0,56,3,3,3,3,3,2019,4,2,31,10,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.7154613,120.31551,1,17.360001,38.209999,47,49,1,1,1,0,0,4,2,1,706.5,381416.56,0,0,2841.3462 -16311,20010,36419,36420,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,0,3,7.7352757,7.4412136,0,1,0,-9,34,0,-2,0,0,0,0,53,2,4,1,-9,-9,2019,1,2,9,0,60,70,15,1,0,1,0,4.1028824,4.1028824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,49.349998,59.639999,5,1,1,0,0,4,4,1,144,624631.63,0,0,1998.1294 -16311,20010,36420,36419,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,0,4,7.7084231,7.7898083,0,1,0,-9,34,0,2,0,0,0,0,51,2,3,1,2,1,2019,1,1,13,3,60,60,15,1,0,1,0,4.2096839,4.2096839,0,0,0,0,0,0,0,7,0,0,0,0,0,7.9141598,3,49.349998,59.639999,54.959999,53.169998,5,1,1,0,0,4,4,1,144,624631.63,0,0,1998.1294 -16311,20011,36421,-9,36420,36419,3,1,0,18,2,0,0,0,2,1,2,1,0,0,4,8.1044254,8.028821,0,3,0,0,0,-9,0,-1119.2214,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,34,0,15,1,0,-9,1,7.9685144,7.9685144,0,0,0,0,0,0,0,0,0,0,0,3.7599125,0,0,0,41.169998,59.439999,-9,-9,6,1,1,0,0,4,3,1,697,-21502.896,0,0,1485.031 -16312,20012,36422,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,1,1,0,0,4,8.0467272,7.8329291,4.9595447,3,0,0,0,-9,0,-865.47803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,20,15,1,0,-9,0,13.754798,13.754798,0,0,0,0,0,0,0,0,1,1,0,5.6206746,4.9550524,0,0,58.720001,51.290001,-9,-9,6,1,1,0,0,7,3,1,132,-28406.654,0,0,956.08752 -16312,20013,36423,-9,36422,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.6473184,7.677927,0,3,0,0,0,-9,0,-933.07617,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,37,37,15,1,0,-9,1,7.8865976,7.8865976,0,0,0,0,0,0,0,0,1,1,0,.43712395,0,0,0,39.330002,58.880001,-9,-9,6,1,1,0,0,7,3,1,167,53141.801,0,0,1712.5665 -16312,20014,36424,-9,36422,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,8.0405397,7.5528893,0,3,0,0,0,-9,0,-991.94183,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,16,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,7,3,1,448,70209.773,0,0,-116.4632 -16313,20015,36425,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-836.10248,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4579315,0,0,0,55.27,39.27,-9,-9,5,1,1,0,0,11,1,1,103,-16658.014,0,0,74.178391 -16314,20016,36426,36428,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,0,2,8.7305031,8.5433149,0,2,0,-9,7,0,1,32.055595,0,0,0,46,1,3,1,2,2,2019,1,2,7,1,37,39,15,1,0,1,0,15.731845,15.731845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,26.540001,51.41,56.150002,5,2,3,0,0,8,4,1,421,248730.83,0,0,3057.0815 -16314,20016,36427,-9,36428,36426,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.6017,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,8,4,1,421,248730.83,0,0,3057.0815 -16314,20016,36428,36426,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,0,3,8.1405077,7.5069976,0,2,0,-9,7,0,-1,-91.503044,0,0,0,47,1,2,1,2,3,2019,1,1,11,1,22,35,15,1,0,1,0,14.231289,14.231289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.150002,49.52,26.540001,6,1,1,0,0,8,4,1,421,248730.83,0,0,3057.0815 -16315,20017,36429,36430,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,0,3,8.0648308,8.6688795,0,1,0,-9,24,0,-1,-10.808234,0,0,0,47,3,4,1,-9,-9,2019,1,2,8,0,36,36,15,1,0,1,0,15.215648,15.215648,0,0,0,0,0,0,0,0,0,0,0,1.8600979,0,0,0,59.91,42.650002,53,55,6,1,1,0,0,12,5,1,1445.5,561172.25,0,0,3869.8794 -16315,20017,36430,36429,-9,-9,2,1,1,47,1,0,0,0,3,-9,1,1,0,0,4,8.454443,8.5379562,0,1,0,-9,4,0,1,-71.926567,-9,0,0,46,1,3,1,-9,-9,2019,1,1,9,1,49,0,15,1,0,1,0,10.583648,10.583648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,59.91,42.650002,6,1,1,0,0,12,5,1,1445.5,561172.25,0,0,3869.8794 -16315,20018,36431,-9,36429,36430,3,1,1,18,2,0,0,0,2,1,2,1,0,0,4,6.1840363,6.4542899,0,3,0,0,0,-9,0,-1026.7999,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,9,0,14,0,15,1,0,-9,1,5.7469459,5.7469459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,2,1,700,65839.07,0,0,601.16718 -16315,20019,36432,-9,36429,36430,4,1,0,20,2,0,0,0,2,0,7,2,0,0,4,6.3364744,6.3385148,0,3,0,0,0,-9,0,-1119.9059,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,12,2,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4519892,0,0,0,40.580002,60.950001,-9,-9,6,1,1,0,0,12,2,1,274,157816.78,0,0,-830.20795 -16316,20020,36433,-9,36435,36436,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1041.3972,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,5,1,712,1239486.8,0,0,5752.1045 -16316,20020,36434,-9,36435,36436,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-929.49207,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,5,1,712,1239486.8,0,0,5752.1045 -16316,20020,36435,36436,-9,-9,2,1,0,41,1,0,2,0,1,-9,1,1,0,0,4,8.8826504,8.7542439,0,2,0,-9,15,0,-1,-54.033352,0,0,1,42,1,4,1,1,1,2019,1,1,6,0,35,34,15,1,0,1,0,27.757944,27.757944,0,0,0,0,0,0,0,0,1,1,0,6.2884293,0,0,0,52.310001,58.290001,54.77,55.869999,6,1,1,0,0,12,5,1,712,1239486.8,0,0,5752.1045 -16316,20020,36436,36435,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,8.7314205,8.5645227,0,2,0,-9,15,0,1,-109.62367,0,0,0,41,1,4,1,2,1,2019,1,2,7,0,43,47,15,1,0,1,0,16.355644,16.355644,0,0,0,0,0,0,0,0,1,1,0,3.8984456,0,0,0,54.77,55.869999,52.310001,58.290001,7,1,1,0,0,12,5,1,712,1239486.8,0,0,5752.1045 -16317,20021,36437,36438,-9,-9,2,1,1,39,1,1,3,0,2,-9,2,1,0,0,3,8.501049,8.5199242,0,2,0,-9,8,0,2,133.06557,0,0,0,37,2,3,1,2,2,2019,1,1,6,1,35,35,15,1,0,1,0,21.629576,21.629576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,35.200001,48.709999,5,1,1,0,0,9,4,1,503.75,1738326.8,0,0,2828.1892 -16317,20021,36438,36437,-9,-9,1,1,0,37,1,1,3,0,2,-9,2,1,0,0,3,6.7728429,7.2971931,0,2,0,-9,8,0,-2,-20.239712,0,0,1,39,2,3,1,2,2,2019,1,2,12,0,8,1,15,1,0,1,0,16.026293,16.026293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.200001,48.709999,49.040001,55.860001,6,1,1,0,0,9,4,1,503.75,1738326.8,0,0,2828.1892 -16317,20021,36439,-9,36438,36437,5,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1093.0509,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,9,4,1,503.75,1738326.8,0,0,2828.1892 -16317,20021,36440,-9,36438,36437,4,1,0,9,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1061.7804,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,9,4,1,503.75,1738326.8,0,0,2828.1892 -16318,20022,36441,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-950.16663,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.809999,40.59,-9,-9,2,1,1,0,1,5,1,1,109,-44372.156,0,0,-71.365379 -16319,20023,36442,36443,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,0,3,8.2525606,8.3768864,0,1,0,-9,28,0,4,-82.801216,0,0,0,53,2,3,1,2,2,2019,1,2,12,2,37,37,15,1,0,1,0,13.809242,13.809242,0,0,0,0,0,0,0,0,0,0,0,2.3572438,0,0,0,52,54.509998,53.68,45.470001,6,1,1,0,0,11,5,1,757,960911,0,0,4717.8857 -16319,20023,36443,36442,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.9995289,9.0321903,0,1,0,-9,28,0,-4,17.399555,0,0,0,57,2,3,1,2,1,2019,1,1,11,0,37,37,15,1,0,1,0,24.791834,24.791834,0,0,0,0,0,0,0,0,0,0,0,1.8681896,0,0,0,53.68,45.470001,52,54.509998,6,1,1,0,0,11,5,1,757,960911,0,0,4717.8857 -16320,20024,36444,36445,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,4,9.828454,9.8137856,0,1,0,-9,28,0,3,146.4348,0,0,0,46,1,4,3,2,1,2019,2,2,9,1,50,50,15,1,0,3,0,45.604488,45.604488,0,0,0,0,0,0,0,0,0,0,0,3.2078731,0,0,0,53,55,41.470001,44.380001,6,2,3,0,0,9,5,1,1214,191250.23,0,0,7099.4482 -16320,20024,36445,36444,-9,-9,2,1,0,46,1,0,0,0,1,-9,6,3,0,0,4,0,0,0,1,0,-9,7,0,-3,70.777809,0,0,0,49,1,4,1,-9,-9,2019,3,1,9,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3464646,0,0,0,41.470001,44.380001,53,55,7,2,3,0,0,9,5,1,1214,191250.23,0,0,7099.4482 -16321,20025,36446,36447,-9,-9,1,1,0,33,1,0,1,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,16,0,0,-152.60619,0,0,1,42,3,3,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.689999,49.57,43.919998,47.650002,6,2,3,0,0,8,2,0,680.5,61468.238,0,0,1442.2563 -16321,20025,36447,36446,-9,-9,2,1,1,42,1,0,1,0,3,-9,1,1,0,0,3,7.3550758,7.3373275,0,2,0,-9,16,0,9,-211.52641,0,0,0,33,2,4,3,3,2,2019,2,1,6,0,38,40,15,1,0,3,0,5.4082294,5.4082294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.919998,47.650002,41.689999,49.57,6,2,3,0,1,8,2,0,680.5,61468.238,0,0,1442.2563 -16321,20026,36448,-9,-9,-9,4,1,1,42,2,0,1,0,3,-9,1,1,0,0,3,7.8416114,7.8394074,0,4,0,0,0,-9,0,-1204.318,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,48,30,15,1,1,-9,0,6.5276642,6.5276642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.440001,45.34,-9,-9,3,2,3,0,1,8,3,0,1014,-48599.039,0,0,230.15346 -16322,20027,36449,36450,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,0,3,7.1236062,7.1499128,0,2,0,-9,21,0,2,70.792778,0,0,0,48,2,3,3,2,2,2019,2,1,18,6,22,26,15,1,1,3,0,9.4600277,9.4600277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.259998,29.74,56.779999,3,1,1,0,0,4,2,1,410.66666,-13141.966,0,0,446.58426 -16322,20027,36450,36449,-9,-9,1,1,1,48,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,21,0,-2,-145.52971,0,0,0,50,2,3,1,-9,2,2019,3,2,14,3,0,45,15,3,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.3261571,3,29.74,56.779999,40.75,58.259998,4,1,1,1,0,4,2,1,410.66666,-13141.966,0,0,446.58426 -16322,20027,36451,-9,36449,36450,3,1,0,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,2,0,0,0,-9,0,-973.4046,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41932622,0,0,0,40.650002,57.360001,-9,-9,5,1,1,0,0,4,2,1,410.66666,-13141.966,0,0,446.58426 -16323,20028,36452,36453,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,0,4,0,0,0,2,0,-9,20,0,-2,13.953716,0,0,1,39,2,3,1,2,3,2019,1,1,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.330002,53.459999,6,1,1,0,0,6,4,1,780,35541.367,0,0,2711.2415 -16323,20028,36453,36452,-9,-9,1,1,1,39,1,0,1,0,2,-9,2,1,0,0,3,8.6948137,8.2210436,0,2,0,-9,13,0,2,110.85287,0,0,0,37,2,4,1,2,2,2019,1,2,6,0,42,42,15,1,0,1,0,12.807842,12.807842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,54.200001,57.490002,5,1,1,0,0,6,4,1,780,35541.367,0,0,2711.2415 -16323,20028,36454,-9,36452,36453,3,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-991.19708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,4,1,780,35541.367,0,0,2711.2415 -16324,20029,36455,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,3,0,8.3819714,8.1751623,3,0,0,0,-9,0,-1105.6953,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.5276251,9.0590992,0,3,52,45,-9,-9,6,1,1,0,0,9,5,1,902,898417.94,0,0,2990.4839 -16325,20030,36456,36457,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,0,4,8.3563633,8.7928905,0,1,0,-9,5,0,0,-125.70084,0,0,0,55,2,4,1,2,2,2019,1,2,7,0,42,41,15,1,0,1,0,17.517984,17.517984,0,0,0,0,0,0,0,2,0,0,0,0,0,3.8856103,3,51.77,58.57,60.27,49.27,6,1,1,0,0,11,5,1,312,195497.97,0,0,3452.4685 -16325,20030,36457,36456,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.3646641,8.5662689,0,1,0,-9,5,0,0,105.60755,0,0,0,55,2,4,1,-9,-9,2019,1,1,11,0,42,41,15,1,0,1,0,14.825836,14.825836,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.27,49.27,51.77,58.57,2,1,1,0,0,11,5,1,312,195497.97,0,0,3452.4685 -16326,20031,36458,36459,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,0,4,8.9436045,8.5003176,0,1,0,-9,3,0,0,-150.19019,0,1,1,27,1,5,1,1,1,2019,1,2,2,0,43,79,15,1,0,1,0,15.935722,15.935722,0,0,0,0,0,0,0,0,0,0,0,2.9253695,0,0,0,57.73,54.529999,50.52,52.700001,6,1,1,0,0,7,5,1,404.5,160337.64,0,0,6179.3203 -16326,20031,36459,36458,-9,-9,2,1,1,27,1,0,0,0,1,-9,1,1,0,0,5,9.2661152,9.1382036,0,1,0,-9,3,0,0,-169.92827,0,1,0,27,1,4,1,-9,-9,2019,1,1,16,5,32,35,15,1,1,1,0,36.355991,36.355991,0,0,0,0,0,0,0,0,0,0,0,2.1258802,0,0,0,50.52,52.700001,57.73,54.529999,6,1,1,0,0,7,5,1,404.5,160337.64,0,0,6179.3203 -16327,20032,36460,-9,-9,-9,1,1,0,82,2,0,0,0,3,-9,4,3,0,0,5,0,7.0614533,7.1454,3,0,0,0,-9,0,-1003.3849,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8414278,7.0487418,0,0,58.450001,47.720001,-9,-9,6,1,1,0,0,8,2,0,305,65751.984,0,0,844.44409 -16328,20033,36461,36462,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,11,0,1,0,0,0,0,81,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.049999,53.990002,47.470001,36.150002,6,1,1,0,0,12,1,1,761,296805.66,0,0,0 -16328,20033,36462,36461,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,61,0,-1,0,0,0,0,82,2,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.470001,36.150002,53.049999,53.990002,6,1,1,0,0,12,1,1,761,296805.66,0,0,0 -16329,20034,36463,36464,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,6.8770876,6.9179592,1,0,-9,5,0,-6,8.2697201,0,0,0,86,1,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2460427,6.9212418,0,0,53.23,42.900002,37.220001,46.740002,6,1,1,0,0,2,3,1,419.5,150191.39,0,0,2467.2324 -16329,20034,36464,36463,-9,-9,2,1,1,86,1,0,0,0,1,-9,4,3,0,0,2,0,7.6123257,7.6710763,1,0,-9,5,0,6,101.29101,0,0,0,80,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6080046,7.5671148,0,0,37.220001,46.740002,53.23,42.900002,5,1,1,0,0,2,3,1,419.5,150191.39,0,0,2467.2324 -16330,20035,36465,36466,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,1,0,4.7168818,4.8556213,1,0,-9,58,0,-5,-85.112961,0,0,0,84,3,1,3,3,2,2019,4,1,13,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,0,1,3.7227991,4.6487441,0,0,38.349998,31.42,32.73,30.02,3,1,1,0,0,9,2,1,738.5,552526.13,0,0,2120.5935 -16330,20035,36466,36465,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,1,0,7.4384456,7.5921869,1,0,-9,58,0,5,-137.49429,0,0,0,79,2,1,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,27.5,1,0,1,3.8585067,7.4639225,28.732464,1,32.73,30.02,38.349998,31.42,3,1,1,0,1,9,2,1,738.5,552526.13,0,0,2120.5935 -16331,20036,36467,36468,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,0,4,7.6174064,7.7516637,0,2,0,-9,27,0,-2,16.743443,0,0,0,49,2,3,1,2,2,2019,1,2,16,4,27,29,15,1,1,1,0,11.346234,11.346234,0,0,0,0,0,0,0,0,1,1,0,1.2465945,0,0,0,37.009998,57.689999,53.389999,44.470001,5,1,1,0,0,6,4,1,239,510846,0,0,3211.6252 -16331,20036,36468,36467,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,0,3,8.8681364,8.5136557,0,2,0,-9,27,0,2,3.8616896,0,0,0,47,2,4,1,2,2,2019,1,1,6,0,48,51,15,1,0,1,0,11.369623,11.369623,0,0,0,0,0,0,0,0,1,1,0,3.3683436,0,0,0,53.389999,44.470001,37.009998,57.689999,2,1,1,0,0,6,4,1,239,510846,0,0,3211.6252 -16331,20036,36469,-9,36467,36468,4,1,1,13,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-898.61932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,6,4,1,239,510846,0,0,3211.6252 -16331,20037,36470,-9,36467,36468,3,1,0,18,2,0,2,0,2,-9,7,2,0,0,3,6.5281544,9.004673,8.6515026,3,0,0,0,-9,0,-1054.3197,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6142626,0,0,0,27.49,57.5,-9,-9,4,1,1,0,0,6,4,1,199,68143.531,0,0,3558.4587 -16332,20038,36471,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,4,3,0,0,4,0,7.7925205,7.8567605,3,0,0,0,-9,0,-980.95276,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.8155713,7.8769097,5.7923145,3,49.380001,58.290001,-9,-9,6,1,1,0,0,12,4,1,1746,907720.38,0,0,1632.7983 -16333,20039,36472,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,0,4,7.9891601,8.0005159,0,3,0,0,0,-9,0,-943.28412,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,13,15,1,0,-9,0,7.9856925,7.9856925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,55.110001,-9,-9,3,1,1,0,0,2,4,1,957,312291.84,0,0,2024.637 -16333,20040,36473,-9,36472,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,0,5,8.6399145,8.276989,0,3,0,0,0,-9,0,-1041.0967,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,38,38,15,1,0,-9,1,11.915911,11.915911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,60.310001,-9,-9,4,3,4,0,0,2,5,1,427,37725.703,0,0,2509.0251 -16334,20041,36474,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1123.947,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0824265,0,0,0,33.23,34.060001,-9,-9,3,1,1,0,1,12,1,1,1299,-71012.648,0,0,-343.39279 -16335,20042,36475,36476,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,2,0,7.8116307,7.8920636,1,0,-9,8,0,11,-57.355644,0,0,0,63,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.424459,12.073293,3,61.82,34.040001,55.93,49.950001,6,1,1,0,0,12,3,1,455.5,869828.75,0,0,2735.8213 -16335,20042,36476,36475,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,0,3,0,6.9767289,6.740406,1,0,-9,8,0,-11,44.874245,0,0,0,74,2,2,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4524403,6.9799099,11.965146,3,55.93,49.950001,61.82,34.040001,6,1,1,0,0,12,3,1,455.5,869828.75,0,0,2735.8213 -16336,20043,36477,36479,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,0,4,8.1583223,8.319562,0,2,0,-9,17,0,-3,49.603485,0,0,1,40,2,4,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,11.79541,11.79541,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,57.16,56.150002,6,1,1,0,0,10,4,1,675.5,482635.66,0,0,3783.7678 -16336,20043,36478,-9,36477,36479,3,1,1,15,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-985.841,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,10,4,1,675.5,482635.66,0,0,3783.7678 -16336,20043,36479,36477,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,0,4,8.7432404,8.6038895,0,2,0,-9,17,0,3,-35.159466,0,0,0,37,2,4,1,-9,-9,2019,1,1,9,0,51,51,15,1,0,1,0,11.769737,11.769737,0,0,0,0,0,0,0,0,1,1,0,1.1962974,0,0,0,57.16,56.150002,51.77,58.57,6,1,1,0,0,10,4,1,675.5,482635.66,0,0,3783.7678 -16336,20043,36480,-9,36477,36479,4,1,1,12,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-999.99481,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,10,4,1,675.5,482635.66,0,0,3783.7678 -16337,20044,36481,36482,-9,-9,2,1,0,36,1,0,0,0,1,-9,5,1,0,1,4,9.0237799,8.9108267,0,1,0,-9,8,0,1,-15.345038,-9,0,1,35,2,4,1,-9,-9,2019,1,1,17,6,45,0,15,1,1,1,0,18.487759,18.487759,0,0,0,0,0,0,0,0,0,0,0,7.6751075,0,0,0,42.75,47.91,50.91,54.790001,6,1,1,0,0,12,5,1,571,573796.5,0,0,7091.832 -16337,20044,36482,36481,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,0,4,8.8218689,9.2691011,0,1,0,-9,8,0,-1,21.873077,0,0,0,36,1,4,1,1,1,2019,1,2,12,2,55,48,15,1,0,1,0,17.176847,17.176847,0,0,0,0,0,0,0,0,0,0,0,4.7951193,0,0,0,50.91,54.790001,42.75,47.91,6,1,1,0,0,12,5,1,571,573796.5,0,0,7091.832 -16338,20045,36483,36484,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,0,5,0,7.5026116,6.9064565,1,0,-9,30,0,0,15.522607,0,0,0,81,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.378829,0,0,58.049999,54.52,62.27,48.470001,6,1,1,0,0,7,3,1,381.5,876248.19,0,0,2871.3184 -16338,20045,36484,36483,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,0,3,0,7.6487546,7.6075521,1,0,-9,30,0,9,186.87935,0,0,0,72,2,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6922631,0,0,62.27,48.470001,58.049999,54.52,7,1,1,0,0,7,3,1,381.5,876248.19,0,0,2871.3184 -16339,20046,36485,36486,-9,-9,1,1,0,31,1,0,1,0,2,-9,2,1,0,0,3,8.0589218,8.2190828,0,2,0,-9,7,0,4,-94.226074,0,0,1,27,2,4,1,-9,-9,2019,1,2,12,2,38,38,15,1,0,1,0,9.8429928,9.8429928,0,0,0,0,0,0,0,0,1,1,0,2.9413829,0,0,0,41.240002,55.720001,46.98,59.349998,6,1,1,0,0,10,4,0,555.66669,-104493.19,0,0,2681.063 -16339,20046,36486,36485,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,0,4,8.3119144,8.5608644,0,2,0,-9,7,0,-4,25.198042,0,1,0,31,2,3,1,-9,-9,2019,1,1,14,5,50,48,15,1,1,1,0,10.580141,10.580141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.349998,41.240002,55.720001,3,1,1,0,0,10,4,0,555.66669,-104493.19,0,0,2681.063 -16339,20046,36487,-9,36485,36486,3,1,0,3,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1102.8088,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,10,4,0,555.66669,-104493.19,0,0,2681.063 -16340,20047,36488,36489,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,4,0,7.8842697,7.6128778,1,0,-9,51,0,2,-73.682709,0,0,0,70,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3917251,7.7811432,0,0,60.119999,54.799999,61.040001,39.41,6,1,1,0,0,10,3,1,683.5,707120.25,0,0,2565.3481 -16340,20047,36489,36488,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,5.7963033,5.4713607,1,0,-9,51,0,-2,10.465816,0,0,0,72,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,8.8322573,0,0,0,0,0,1,1,0,4.249094,5.402216,0,0,61.040001,39.41,60.119999,54.799999,7,1,1,0,0,10,3,1,683.5,707120.25,0,0,2565.3481 -16341,20048,36490,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,0,4,7.5924988,7.7361507,6.5823512,4,0,0,0,-9,0,-851.8548,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,44,34,15,1,0,-9,0,5.1494861,5.1494861,0,0,0,0,0,0,0,0,1,1,0,6.0365195,0,0,0,41.279999,60.790001,-9,-9,5,1,1,0,1,4,3,0,567,298883.72,0,0,2095.5354 -16342,20049,36491,-9,36492,36493,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1021.8998,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,6,1,0,242.25,28573.541,0,0,2066.051 -16342,20049,36492,36493,-9,-9,1,1,0,35,1,0,2,0,2,-9,8,3,1,1,2,0,0,0,2,0,-9,14,0,-13,0,0,0,1,48,3,3,3,2,-9,2019,4,2,13,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,18.83,51.529999,57.209999,36.98,4,1,1,0,0,6,1,0,242.25,28573.541,0,0,2066.051 -16342,20049,36493,36492,-9,-9,2,1,1,48,1,0,2,0,3,-9,6,3,0,1,3,0,0,0,2,0,-9,14,0,13,0,0,0,0,35,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,101.54523,2,57.209999,36.98,18.83,51.529999,6,1,1,0,0,6,1,0,242.25,28573.541,0,0,2066.051 -16342,20049,36494,-9,36492,36493,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-999.39911,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,1,0,242.25,28573.541,0,0,2066.051 -16343,20050,36495,36496,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,5,0,0,0,0,71,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,39.32,49.279999,6,1,1,0,0,10,1,0,686,375024.75,0,0,1484.3337 -16343,20050,36496,36495,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,9,0,-5,0,0,0,0,76,3,4,3,3,-9,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,49.279999,57.16,56.150002,6,1,1,0,0,10,1,0,686,375024.75,0,0,1484.3337 -16344,20051,36497,36498,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,0,4,8.2131004,8.1692677,0,1,0,-9,30,0,-12,50.286869,0,0,0,71,2,4,3,3,3,2019,2,1,10,0,24,24,15,1,0,4,0,14.784043,14.784043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,57.73,54.529999,6,1,1,0,0,7,4,1,647.5,523146.56,0,0,1989.5653 -16344,20051,36498,36497,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,0,4,0,7.7656116,7.908402,1,0,-9,27,0,12,-72.618408,0,0,0,59,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3382783,0,0,57.73,54.529999,57.16,56.150002,6,1,1,0,0,7,4,1,647.5,523146.56,0,0,1989.5653 -16345,20052,36499,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,0,5,7.76331,8.118948,0,3,0,0,0,-9,0,-889.51166,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,38,15,1,0,-9,0,8.7949305,8.7949305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,44.540001,-9,-9,5,1,1,0,0,5,3,1,413,-16619.701,0,0,1254.2412 -16346,20053,36500,-9,36502,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1076.2073,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,272.33334,-46050.973,0,0,2151.7517 -16346,20053,36501,-9,36502,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-993.53284,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,2,0,272.33334,-46050.973,0,0,2151.7517 -16346,20053,36502,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,6,3,0,1,3,0,5.9245729,6.2741418,4,0,0,0,-9,0,-837.96667,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9930754,0,0,0,26.02,54.580002,-9,-9,3,1,1,0,0,9,2,0,272.33334,-46050.973,0,0,2151.7517 -16347,20054,36503,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,0,2,0,5.6095109,5.561749,3,0,0,0,-9,0,-985.88654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.51605499,5.7384334,0,0,58.099998,49.419998,-9,-9,6,1,1,0,0,13,2,1,476,-76688.68,0,0,123.99417 -16348,20055,36504,36505,-9,-9,2,1,1,37,1,0,0,0,1,-9,1,1,0,0,3,9.512867,9.8745251,0,1,0,-9,4,0,-1,-62.346992,0,0,0,38,1,3,1,-9,-9,2019,1,1,15,6,60,50,15,1,1,1,0,37.58432,37.58432,0,0,0,0,0,0,0,0,0,0,0,9.3449373,0,0,0,40.939999,58.349998,59.91,42.650002,4,3,4,0,0,8,5,1,1484.5,1551522,0,0,14535.11 -16348,20055,36505,36504,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,0,3,9.1627302,9.1417418,0,1,0,-9,4,0,1,30.625296,0,0,1,37,1,3,1,1,2,2019,1,2,5,1,38,42,15,1,0,1,0,20.913857,20.913857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.91,42.650002,40.939999,58.349998,6,4,2,0,0,8,5,1,1484.5,1551522,0,0,14535.11 -16349,20056,36506,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,1,1,0,0,3,6.4726086,6.7243795,0,3,0,0,0,-9,0,-1006.037,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,6,0,15,1,0,-9,0,18.546696,18.546696,0,0,0,0,0,0,0,0,0,0,0,7.6104698,0,0,0,61.849998,47.259998,-9,-9,6,1,1,0,0,1,2,1,1761,1462.0028,0,0,984.00098 -16350,20057,36507,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,0,2,0,6.1163955,6.0075908,3,0,0,0,-9,0,-1033.9613,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7396636,6.1963725,0,0,48.950001,34.259998,-9,-9,3,1,1,0,0,7,2,0,2865,409054.44,0,0,333.89981 -16351,20058,36508,36509,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,3,8.321228,8.3771973,0,1,0,-9,8,0,5,99.448441,0,0,0,58,2,3,1,2,2,2019,1,2,5,0,43,40,15,1,0,1,0,12.132612,12.132612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,61.470001,37.790001,7,1,1,0,0,10,4,0,770.5,691448,0,0,2328.8467 -16351,20058,36509,36508,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,7.6057601,7.4393234,0,1,0,-9,37,0,-5,-59.047714,0,0,0,63,2,3,1,2,3,2019,1,1,8,0,24,16,15,1,0,1,0,10.017943,10.017943,0,0,0,0,0,0,0,27.5,0,0,0,0,0,28.740295,3,61.470001,37.790001,58.32,50.220001,5,1,1,0,0,10,4,0,770.5,691448,0,0,2328.8467 -16351,20059,36510,-9,36509,36508,3,1,0,28,2,0,0,0,2,-9,2,1,0,0,5,8.3028221,8.5581703,0,3,0,0,0,-9,0,-960.90112,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,36,15,1,0,-9,1,11.40651,11.40651,0,0,0,0,0,0,0,0,0,0,0,3.9976342,0,0,0,40.900002,65.019997,-9,-9,5,1,1,0,0,10,4,0,446,9367.3252,0,0,1163.677 -16352,20060,36511,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,4,3,0,0,2,0,7.5782509,7.6491518,3,0,0,0,-9,0,-949.55249,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,6,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1342673,7.6079063,0,0,44.41,29.049999,-9,-9,6,1,1,0,0,2,3,1,123,103874.82,0,0,1885.8635 -16353,20061,36512,36513,-9,-9,2,1,0,57,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,1,-9,13,-73.623131,-9,0,0,44,2,2,1,2,-9,2019,3,1,21,9,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.830002,28.75,34.630001,31.559999,5,1,1,0,0,5,4,1,1261.5,71649.641,0,0,2439.8047 -16353,20061,36513,36512,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,0,2,8.3941517,8.238265,0,1,0,-9,1,-9,-13,-28.596457,-9,0,0,57,2,2,3,2,2,2019,2,2,23,10,43,0,15,1,1,3,0,13.423492,13.423492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.630001,31.559999,40.830002,28.75,3,1,1,0,0,5,4,1,1261.5,71649.641,0,0,2439.8047 -16354,20062,36514,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,0,4,8.4490919,8.7015934,7.1657634,1,0,1,1,-9,-54,-6.962079,0,0,0,-9,-9,-9,-9,2,2,2019,-9,2,4,0,44,30,15,1,0,-9,0,12.893648,12.893648,0,0,0,0,0,0,0,0,1,1,0,7.2867851,0,0,0,52.580002,47.209999,57,43,5,1,1,0,0,8,4,1,868,237589.05,0,0,1894.1466 -16355,20063,36515,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,1,1,0,0,3,8.392518,8.4286928,0,3,0,0,0,-9,0,-1034.506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,35,35,15,1,0,-9,0,16.682896,16.682896,0,0,0,0,0,0,0,0,1,1,0,1.7977,0,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,9,5,0,494,4730002,0,0,2015.8756 -16356,20064,36516,36519,-9,-9,2,1,0,35,1,1,2,0,2,-9,2,1,0,0,3,7.589025,7.4228177,0,2,0,-9,1,-9,0,114.31487,-9,0,1,35,2,4,1,-9,-9,2019,1,1,12,0,20,0,15,1,0,1,0,8.6508732,8.6508732,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.346161,3,33.34,52.119999,49.41,58.279999,2,1,1,0,0,10,3,0,786.75,22685.109,0,0,3335.6416 -16356,20064,36517,-9,36516,36519,3,1,1,10,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-954.2514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,10,3,0,786.75,22685.109,0,0,3335.6416 -16356,20064,36518,-9,36516,36519,4,1,0,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1026.1503,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,3,0,786.75,22685.109,0,0,3335.6416 -16356,20064,36519,36516,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,0,4,7.3788891,7.4888043,0,2,0,-9,1,-9,0,-22.21571,-9,0,0,35,2,3,1,1,1,2019,1,2,9,0,21,0,15,1,0,1,0,10.883629,10.883629,0,0,0,0,0,0,0,105,1,1,0,0,0,122.02689,3,49.41,58.279999,33.34,52.119999,5,1,1,0,0,10,3,0,786.75,22685.109,0,0,3335.6416 -16357,20065,36520,36521,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.491684,7.4442964,1,0,-9,54,0,3,143.81383,0,0,0,72,2,3,1,2,3,2019,3,2,9,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4233356,0,3,53,46,43.049999,41.169998,6,1,1,0,0,4,3,1,704,78386.727,0,0,2209.9683 -16357,20065,36521,36520,-9,-9,2,1,0,72,1,0,0,0,2,-9,2,1,0,0,3,6.5521865,7.2113681,6.782012,1,0,-9,54,0,-3,63.016617,0,0,0,75,2,3,3,2,2,2019,2,1,18,6,10,12,15,1,1,4,0,7.8828192,7.8828192,0,0,0,0,0,0,0,2,1,1,0,6.87958,6.7288337,10.142732,3,43.049999,41.169998,53,46,3,1,1,0,0,4,3,1,704,78386.727,0,0,2209.9683 -16358,20066,36522,-9,36525,36524,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1020.6196,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,9,4,1,1070.5,641483.13,0,0,2906.437 -16358,20066,36523,-9,36525,36524,4,1,1,0,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1015.0488,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,9,4,1,1070.5,641483.13,0,0,2906.437 -16358,20066,36524,36525,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,7.9241943,7.8869057,0,2,0,-9,6,0,2,-116.05396,0,0,0,34,1,3,1,2,2,2019,1,1,15,4,30,30,15,1,1,1,0,10.641103,10.641103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,62.84,50.630001,50.990002,5,1,1,0,0,9,4,1,1070.5,641483.13,0,0,2906.437 -16358,20066,36525,36524,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,0,3,8.7846594,8.9419718,0,2,0,-9,6,0,-2,-22.663446,0,0,1,36,1,4,1,1,1,2019,1,2,8,2,30,30,15,1,0,1,0,18.956575,18.956575,0,0,0,0,0,0,0,0,1,1,0,3.5300117,0,0,0,50.630001,50.990002,39.16,62.84,6,1,1,0,0,9,4,1,1070.5,641483.13,0,0,2906.437 -16359,20067,36526,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-880.2229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.639999,38.41,-9,-9,7,1,1,0,0,7,1,1,94,211203.88,0,0,1102.1946 -16360,20068,36527,36531,-9,-9,5,1,1,42,1,2,5,0,2,-9,2,1,0,0,4,7.7476401,7.7265892,0,2,0,-9,4,0,16,-33.128811,0,0,0,26,3,3,3,-9,-9,2019,2,1,9,3,20,12,15,1,0,3,0,11.329502,11.329502,0,0,0,0,0,0,0,0,1,1,0,4.0731192,0,0,0,51.830002,57.200001,47.709999,35.959999,6,3,4,0,1,7,2,0,796,58363.707,0,0,3009.9758 -16360,20068,36528,-9,36531,36527,7,1,0,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-915.70587,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,2,0,796,58363.707,0,0,3009.9758 -16360,20068,36529,-9,36531,36527,6,1,0,2,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.0894,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,2,0,796,58363.707,0,0,3009.9758 -16360,20068,36530,-9,36531,36527,4,1,0,3,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1006.485,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,2,0,796,58363.707,0,0,3009.9758 -16360,20068,36531,36527,-9,-9,1,1,0,26,1,2,5,0,3,-9,6,3,0,0,3,0,0,0,2,0,-9,4,0,-16,-117.36711,0,1,1,42,2,4,1,3,3,2019,3,5,24,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.709999,35.959999,51.830002,57.200001,6,3,4,0,1,7,2,0,796,58363.707,0,0,3009.9758 -16360,20068,36532,-9,36531,36527,2,1,0,8,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1116.1348,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,7,2,0,796,58363.707,0,0,3009.9758 -16360,20068,36533,-9,36531,36527,3,1,0,5,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1007.6389,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,7,2,0,796,58363.707,0,0,3009.9758 -16361,20069,36534,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,0,4,7.7024035,7.4566159,0,3,0,0,0,-9,0,-1001.5497,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,43,40,15,1,0,-9,1,7.1273961,7.1273961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.740002,57.220001,-9,-9,4,1,1,0,0,2,3,1,81,405223.53,0,0,1438.292 -16362,20070,36535,36536,-9,-9,2,1,1,57,1,0,0,0,1,-9,4,3,0,0,4,0,0,0,1,0,-9,17,0,5,-5.5296969,0,0,0,52,2,3,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,120,0,0,0,1.3410757,0,115.32442,3,54,54,39.150002,41.419998,6,1,1,0,0,7,3,1,144.5,822687,0,0,478.62296 -16362,20070,36536,36535,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.1969647,7.4309049,6.7131505,1,0,-9,17,0,-5,40.705063,0,0,0,57,1,4,3,3,3,2019,2,2,11,1,25,8,15,1,0,4,0,5.0817099,5.0817099,0,0,0,0,0,0,0,0,0,0,0,3.5852873,7.2280645,0,0,39.150002,41.419998,54,54,6,1,1,0,0,7,3,1,144.5,822687,0,0,478.62296 -16363,20071,36537,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,0,4,0,6.9331217,6.7610726,3,0,0,0,-9,0,-1126.2141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1743731,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,12,2,0,719,250652.03,0,0,163.51317 -16364,20072,36538,36539,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,0,3,7.8041744,7.5239053,0,1,0,-9,23,-9,0,4.5149689,-9,0,0,49,3,5,1,2,2,2019,1,2,8,0,23,0,15,1,0,1,0,12.563934,12.563934,0,0,0,0,0,0,0,7,1,1,0,1.023519,0,10.031725,3,57.330002,53.459999,42.060001,57.689999,7,1,1,0,0,9,5,1,1422,383238.03,0,0,3476.7241 -16364,20072,36539,36538,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,0,5,8.6390343,8.7427607,0,1,0,-9,1,-9,0,40.703243,-9,0,0,49,2,3,1,-9,-9,2019,1,1,9,0,40,0,15,1,0,1,0,16.688629,16.688629,0,0,0,0,0,0,0,0,1,1,0,1.5839906,0,0,0,42.060001,57.689999,57.330002,53.459999,7,1,1,0,0,9,5,1,1422,383238.03,0,0,3476.7241 -16364,20073,36540,-9,36538,36539,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,5,7.7674861,7.7467632,0,3,0,-9,0,-9,0,-1125.3375,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,34,0,15,1,0,-9,1,8.455946,8.455946,0,0,0,0,0,0,0,0,1,1,0,1.6409129,0,0,0,54.689999,57.470001,-9,-9,6,1,1,0,0,9,3,1,444,-131930.66,0,0,468.04489 -16364,20074,36541,-9,36538,36539,4,1,0,22,2,0,0,0,2,-9,2,1,0,1,4,7.1814017,6.9515471,0,3,0,-9,0,-9,0,-1015.3627,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,16,0,15,1,0,-9,1,10.233466,10.233466,0,0,0,0,0,0,0,0,1,1,0,.23487329,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,9,2,1,633,-156252.78,0,0,1162.0225 -16365,20075,36542,36543,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,0,3,8.9234819,9.0281115,0,2,0,-9,9,0,1,40.30283,0,0,1,42,1,4,1,2,1,2019,1,2,9,1,35,35,15,1,0,1,0,25.416172,25.416172,0,0,0,0,0,0,0,0,1,1,0,3.5136929,0,0,0,46.610001,56.93,45.91,59.889999,4,1,1,0,0,2,5,1,847.5,452383.25,0,0,5299.543 -16365,20075,36543,36542,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,0,4,9.0295496,9.1098814,0,2,0,-9,9,0,-1,120.76406,0,0,0,43,1,3,1,2,1,2019,1,1,15,4,37,38,15,1,1,1,0,24.029161,24.029161,0,0,0,0,0,0,0,0,1,1,0,3.5371037,0,0,0,45.91,59.889999,46.610001,56.93,5,1,1,0,0,2,5,1,847.5,452383.25,0,0,5299.543 -16365,20075,36544,-9,36542,36543,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1063.8425,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,5,1,847.5,452383.25,0,0,5299.543 -16365,20075,36545,-9,36542,36543,3,1,1,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.84229,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,2,5,1,847.5,452383.25,0,0,5299.543 -16366,20076,36546,-9,36547,36549,4,1,0,5,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.9803,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,775.75,282172.22,0,0,2438.2278 -16366,20076,36547,36549,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,0,3,5.1360674,4.8978114,0,2,0,-9,6,0,-3,103.33157,0,0,1,37,1,2,1,2,1,2019,1,3,24,10,1,0,15,1,1,1,0,21.431034,21.431034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.51,61.900002,8.1700001,61.68,4,1,1,0,0,2,4,1,775.75,282172.22,0,0,2438.2278 -16366,20076,36548,-9,36547,36549,2,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1012.6329,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,775.75,282172.22,0,0,2438.2278 -16366,20076,36549,36547,-9,-9,3,1,1,37,1,0,2,0,1,-9,2,1,0,0,2,8.8458185,8.2974014,0,2,0,-9,6,0,3,-3.9675741,0,0,0,34,1,3,1,-9,-9,2019,1,1,21,7,42,39,15,1,1,1,0,18.069761,18.069761,0,0,0,0,0,0,0,0,1,1,0,4.8305664,0,0,0,8.1700001,61.68,27.51,61.900002,2,1,1,0,0,2,4,1,775.75,282172.22,0,0,2438.2278 -16367,20077,36550,36551,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,0,5,9.2746153,9.1805983,0,1,0,-9,3,0,0,-125.55395,0,1,1,26,1,5,1,-9,-9,2019,1,1,9,1,47,40,15,1,0,1,0,22.306192,22.306192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.139999,60.450001,48.77,60.16,6,1,1,0,0,8,5,0,1609.5,539154.88,0,0,4357.5029 -16367,20077,36551,36550,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,0,5,8.3214083,8.3415337,0,1,0,-9,3,0,0,-88.811035,0,1,0,26,1,5,1,-9,-9,2019,1,2,11,0,47,55,15,1,0,1,0,9.4430323,9.4430323,0,0,0,0,0,0,0,0,0,0,0,5.2388682,0,0,0,48.77,60.16,51.139999,60.450001,4,1,1,0,0,8,5,0,1609.5,539154.88,0,0,4357.5029 -16368,20078,36552,-9,-9,-9,1,1,0,33,2,1,3,0,3,-9,6,3,0,1,1,0,0,0,4,0,0,0,-9,0,-934.87903,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,6,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,29.67,-9,-9,2,1,1,0,0,6,1,0,1056,-72412.297,0,0,1625.826 -16368,20078,36553,-9,36552,-9,3,1,0,8,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-985.18213,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,1,0,1056,-72412.297,0,0,1625.826 -16368,20078,36554,-9,36552,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1044.2166,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,6,1,0,1056,-72412.297,0,0,1625.826 -16369,20079,36555,-9,-9,-9,1,1,0,61,2,0,0,0,3,-9,8,3,1,1,2,0,0,0,3,0,-9,0,-9,0,-1060.7811,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.68,26.969999,-9,-9,4,1,1,0,0,8,1,0,143,-34466.457,0,0,2150.3369 -16369,20080,36556,-9,36555,-9,2,1,0,31,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,-9,0,-9,0,-1012.3312,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,26,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.23,59.41,-9,-9,1,4,2,1,1,8,1,0,1563,-104510.16,0,0,160.89795 -16370,20081,36557,36558,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,0,4,8.4687872,8.6128387,0,1,0,-9,7,0,-6,-49.209888,0,0,0,51,2,5,1,2,2,2019,1,1,7,0,39,42,15,1,0,1,0,15.288229,15.288229,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.790001,52.619999,60.02,56.419998,6,1,1,0,0,12,5,1,522,486584.5,0,0,3615.6423 -16370,20081,36558,36557,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,0,5,8.7368011,8.996213,0,1,0,-9,7,0,6,-8.9836531,0,0,0,45,2,4,1,3,3,2019,1,2,8,0,37,42,15,1,0,1,0,21.457605,21.457605,0,0,0,0,0,0,0,0,0,0,0,1.2497888,0,0,0,60.02,56.419998,55.790001,52.619999,7,1,1,0,0,12,5,1,522,486584.5,0,0,3615.6423 -16370,20082,36559,-9,36558,36557,3,1,1,23,2,0,0,0,2,-9,2,1,0,0,4,8.2231884,8.389657,0,3,0,0,0,-9,0,-918.75787,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,37,15,1,0,-9,1,14.633503,14.633503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,12,4,1,351,99632.727,0,0,1863.5696 -16371,20083,36560,-9,36561,36562,4,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1077.8646,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,6,5,1,269.75,206674.44,0,0,5612.2578 -16371,20083,36561,36562,-9,-9,1,1,0,41,1,0,2,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,9,0,2,-62.884434,0,0,1,39,1,4,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.189999,52.169998,55.189999,54.259998,1,1,1,0,0,6,5,1,269.75,206674.44,0,0,5612.2578 -16371,20083,36562,36561,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,0,4,9.7251577,9.78549,0,2,0,-9,9,0,-2,2.1941624,0,0,0,41,2,4,3,2,2,2019,2,1,9,0,38,40,15,1,0,3,0,39.530388,39.530388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.189999,54.259998,51.189999,52.169998,6,1,1,0,0,6,5,1,269.75,206674.44,0,0,5612.2578 -16371,20083,36563,-9,36561,36562,3,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-863.01917,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,6,5,1,269.75,206674.44,0,0,5612.2578 -16372,20084,36564,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,0,2,8.4657869,9.0751171,0,3,0,0,0,-9,0,-967.73663,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,47,30,15,1,1,-9,0,15.085373,15.085373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.389999,41.18,-9,-9,2,4,2,0,0,4,5,0,147,-388621.28,0,0,727.46008 -16373,20085,36565,36566,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,0,3,0,7.7996073,8.2564611,1,0,-9,39,0,3,-172.41547,0,0,0,62,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.108109,7.7991152,0,0,46.43,48.93,52,23.32,7,1,1,0,0,6,4,1,1271,1682981,0,0,2567.4941 -16373,20085,36566,36565,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,0,2,6.82795,7.6945925,7.5102253,1,0,-9,39,0,-3,-43.90012,0,0,0,65,2,3,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.658106,7.085155,0,3,52,23.32,46.43,48.93,3,1,1,0,0,6,4,1,1271,1682981,0,0,2567.4941 -16374,20086,36567,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,0,3,0,7.1461253,6.9263473,3,0,0,0,-9,0,-939.05054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.4552765,7.2579823,0,0,59.91,45.349998,-9,-9,7,1,1,0,0,9,2,1,459,229907.66,0,0,1572.597 -16375,20087,36568,36569,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,1,2,0,6.4895067,6.4355659,1,0,-9,6,0,-1,170.22452,0,0,0,83,3,1,3,3,3,2019,4,1,8,1,0,0,15,4,0,4,0,0,0,1,0,8.9845114,0,0,0,0,7,1,1,0,3.3007014,6.2837811,12.347873,1,54.860001,23.57,53.48,27.1,5,1,1,0,0,6,2,0,967.5,225239.77,0,0,2481.8584 -16375,20087,36569,36568,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,1,1,0,6.3120294,6.0484304,1,0,-9,6,0,1,-80.707527,0,0,0,82,2,2,3,3,3,2019,4,2,18,6,0,0,15,4,1,4,0,0,0,1,0,9.5681906,0,0,0,0,0,1,1,0,3.6753058,6.5402541,0,0,53.48,27.1,54.860001,23.57,5,1,1,0,0,6,2,0,967.5,225239.77,0,0,2481.8584 -16376,20088,36570,-9,-9,-9,1,1,0,48,2,0,2,0,2,-9,2,1,0,0,2,7.7165623,7.8950915,0,4,0,0,0,-9,0,-956.65826,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,27,27,15,1,0,-9,0,12.269526,12.269526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.150002,47.299999,-9,-9,3,1,1,0,0,10,3,0,324,-104760.39,0,0,2324.009 -16377,20089,36571,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,3,0,0,0,3,0,0,0,-9,0,-1150.115,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,46,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,5,1,1,0,0,5,1,1,542,262408.84,0,0,0 -16378,20090,36572,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,0,2,8.0126381,7.9430656,0,3,0,0,0,-9,0,-956.14813,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,31,12,38,48,15,1,1,-9,0,7.1630592,7.1630592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.48,46.82,-9,-9,2,1,1,0,0,11,3,0,506,-147341.97,0,0,553.96173 -16379,20091,36573,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,0,3,8.6404257,8.6610775,0,3,0,-9,0,-9,0,-953.19141,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,9,46,0,15,1,1,-9,0,14.424709,14.424709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.490002,59.439999,-9,-9,2,1,1,0,0,9,5,1,369,820623.19,0,0,2819.251 -16380,20092,36574,36575,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,0,4,8.578207,8.5305805,0,1,0,-9,34,0,2,-20.906019,0,0,0,59,2,5,1,3,2,2019,1,1,8,0,45,40,15,1,0,1,0,15.131797,15.131797,0,0,0,0,0,0,0,0,1,1,0,3.2456412,0,0,0,50.43,53.689999,54.099998,59.110001,6,1,1,0,0,4,5,1,706.5,238648.97,0,0,2730.7556 -16380,20092,36575,36574,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,5,7.4137464,7.4198327,0,1,0,-9,34,0,-2,132.05476,0,0,0,61,2,4,1,2,2,2019,1,2,6,0,20,20,15,1,0,1,0,10.522395,10.522395,0,0,0,0,0,0,0,7,1,1,0,3.871367,0,2.5053551,3,54.099998,59.110001,50.43,53.689999,7,1,1,0,0,4,5,1,706.5,238648.97,0,0,2730.7556 -16381,20093,36576,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,2,1,0,0,4,7.6446867,7.9348011,0,3,0,0,0,-9,0,-895.77399,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,32,5,15,1,0,-9,0,7.3803058,7.3803058,0,0,0,0,0,0,0,7,0,0,0,.49348739,0,6.5773611,3,53,54,-9,-9,7,1,1,0,0,1,3,0,1170,185924.34,0,0,1727.5046 -16382,20094,36577,36578,-9,-9,1,1,1,55,1,0,1,0,1,-9,2,1,0,0,3,7.043117,7.2108674,0,2,0,-9,27,0,6,-89.806503,0,0,0,49,1,4,1,3,2,2019,1,2,6,0,20,30,15,1,0,1,0,5.7424192,5.7424192,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,34.939999,57.16,56.150002,5,2,3,0,0,8,3,1,978.5,522553.81,0,0,2213.1304 -16382,20094,36578,36577,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,0,4,7.9188976,7.8965631,0,2,0,-9,27,0,-6,109.64008,0,0,0,55,1,3,1,2,2,2019,1,1,6,0,38,35,15,1,0,1,0,9.2136488,9.2136488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,52.48,34.939999,5,2,3,0,0,8,3,1,978.5,522553.81,0,0,2213.1304 -16382,20095,36579,-9,36578,36577,3,1,0,23,2,0,1,0,2,1,2,1,0,0,3,6.205699,6.5086923,0,3,0,0,0,-9,0,-980.93793,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,33,0,15,1,0,-9,1,1.8981318,1.8981318,0,0,0,0,0,0,0,0,1,1,0,1.8321544,0,0,0,37.689999,58.700001,-9,-9,6,2,3,0,0,8,2,1,435,150475.8,0,0,858.71661 -16382,20096,36580,-9,36578,36577,4,1,1,18,2,0,1,0,2,1,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-972.67084,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.240002,61.209999,-9,-9,6,2,3,1,0,8,3,1,210,0,0,0,0 -16383,20097,36581,36582,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,7.2539864,7.7234015,1,0,-9,1,-9,-4,-80.175011,-9,0,0,73,2,2,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.3693585,7.5299134,0,0,51.77,58.57,34.619999,37.09,6,1,1,0,0,9,3,1,591.5,663354.63,0,0,789.75793 -16383,20097,36582,36581,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,0,2,0,5.7500739,5.2805319,1,0,-9,1,-9,4,20.365944,-9,0,0,69,2,4,3,-9,-9,2019,4,1,20,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4597077,0,0,34.619999,37.09,51.77,58.57,4,4,2,0,0,9,3,1,591.5,663354.63,0,0,789.75793 -16384,20098,36583,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,0,4,0,7.1455612,7.2793708,3,0,0,0,-9,0,-1084.5199,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1365583,6.9046159,0,0,60.119999,54.799999,-9,-9,6,1,1,0,0,4,3,1,1005,209260.86,0,0,385.49667 -16385,20099,36584,36585,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,0,3,7.8339858,8.0669079,0,1,0,-9,7,0,-13,74.998894,0,0,0,82,3,4,3,3,3,2019,2,1,8,0,38,40,15,1,0,4,0,10.629292,10.629292,0,0,0,0,0,0,0,0,1,1,0,4.6494474,0,0,0,52.599998,52.880001,60.119999,54.799999,6,1,1,0,0,7,3,1,155,1070943.8,0,0,2917.4634 -16385,20099,36585,36584,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,0,4,0,5.8415809,5.7750902,1,0,-9,53,0,13,19.748568,0,0,0,69,2,3,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9700408,0,0,60.119999,54.799999,52.599998,52.880001,7,1,1,0,0,7,3,1,155,1070943.8,0,0,2917.4634 -16386,20100,36586,36587,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,0,4,8.4905071,9.0428829,7.5444145,1,0,-9,1,-9,1,-22.461884,-9,0,0,58,2,3,1,-9,-9,2019,1,2,6,0,40,0,15,1,0,1,0,15.665361,15.665361,0,0,0,0,0,0,0,7,0,0,0,7.5068765,6.0416479,6.3219004,3,59.139999,52.5,58.080002,40.759998,6,1,1,0,0,13,5,1,703,164214.77,0,0,5317.4531 -16386,20100,36587,36586,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,0,3,9.084012,8.7826633,0,1,0,-9,31,-9,-1,3.6852233,-9,0,0,59,2,4,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,17.098822,17.098822,0,0,0,0,0,0,0,7,0,0,0,4.3293247,0,11.290664,3,58.080002,40.759998,59.139999,52.5,6,1,1,0,0,13,5,1,703,164214.77,0,0,5317.4531 -16387,20101,36588,36589,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,1,4,7.0767374,7.1901507,0,1,0,-9,9,0,1,-19.041859,0,0,0,61,3,3,3,3,3,2019,2,2,8,0,12,12,15,1,0,3,0,10.28049,10.28049,0,0,0,0,0,0,0,114,1,1,0,0,0,106.65466,1,54.790001,55.860001,48,48,7,1,1,0,0,5,2,0,651.5,385852.78,0,0,1613.8608 -16387,20101,36589,36588,-9,-9,2,1,0,61,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,9,0,-1,98.17028,0,0,0,62,3,4,1,3,3,2019,3,1,11,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,54.790001,55.860001,5,1,1,0,0,5,2,0,651.5,385852.78,0,0,1613.8608 -16388,20102,36590,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,3,0,5.7559123,5.4566226,3,0,0,0,-9,0,-1013.6954,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5158463,0,0,57.439999,35.599998,-9,-9,6,1,1,0,0,2,2,1,815,245349.25,0,0,2078.498 -16389,20103,36591,-9,-9,-9,1,1,1,23,2,0,0,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-1101.15,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.630001,54.220001,-9,-9,4,1,1,0,0,9,1,0,355,97653.242,0,0,0 -16390,20104,36592,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,0,4,9.209219,9.5368919,7.5154915,4,0,0,0,-9,0,-952.76807,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,60,15,1,0,-9,0,22.919603,22.919603,0,0,0,0,0,0,0,0,1,1,0,6.0209088,7.8988471,0,0,56.18,45.610001,-9,-9,5,1,1,0,0,11,5,0,672,142690.86,0,0,3294.5093 -16390,20104,36593,-9,36592,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-957.01599,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,11,5,0,672,142690.86,0,0,3294.5093 -16391,20105,36594,36595,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,4,7.9281788,8.097044,0,1,0,-9,9,0,9,127.23952,0,0,0,50,2,2,1,3,2,2019,1,2,11,0,12,14,15,1,0,1,0,28.937389,28.937389,0,0,0,0,0,0,0,7,0,0,0,1.4714078,0,7.5669212,3,55.32,47.240002,28.73,39.77,7,1,1,0,0,12,4,1,875.5,1175524,0,0,2286.1301 -16391,20105,36595,36594,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,0,2,7.7741776,7.8367901,0,1,0,-9,9,0,0,-59.070404,0,0,0,59,2,4,1,-9,-9,2019,1,1,28,11,44,35,15,1,1,1,0,7.8621764,7.8621764,0,0,0,0,0,0,0,0,0,0,0,3.3668103,0,0,0,28.73,39.77,55.32,47.240002,3,1,1,0,0,12,4,1,875.5,1175524,0,0,2286.1301 -16392,20106,36596,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,0,2,8.3406553,8.6578074,0,3,0,0,0,-9,0,-1107.3323,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,65,60,15,1,0,-9,0,8.1005878,8.1005878,0,0,0,0,0,0,0,0,0,0,0,6.8824692,0,0,0,56.279999,47.529999,-9,-9,5,1,1,0,0,4,4,1,429,42632.98,0,0,1962.4089 -16392,20107,36597,-9,-9,36596,2,1,1,26,2,0,0,0,2,-9,1,1,0,0,4,7.7197981,7.6864085,0,3,0,0,0,-9,0,-934.51282,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,75,60,15,1,0,-9,1,4.279285,4.279285,0,0,0,0,0,0,0,0,0,0,0,5.9808927,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,4,4,1,163,-37347.965,0,0,1892.3792 -16393,20108,36598,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,2,0,5.5406766,5.5394764,3,0,0,0,-9,0,-908.18677,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,4,0,0,15,4,1,-9,0,0,0,1,3.9941111,0,0,0,0,37.727795,0,1,1,0,0,5.7430663,0,0,49.68,16.59,-9,-9,3,1,1,0,0,13,2,1,861,-78799.906,0,0,1233.1924 -16394,20109,36599,36600,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,5,8.921957,8.7291279,0,1,0,-9,8,0,0,20.873844,0,0,0,54,3,2,3,3,3,2019,2,2,7,0,55,60,15,1,0,3,0,13.210835,13.210835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,38.75,32.5,6,1,1,0,0,5,4,0,980.5,683501.38,0,0,2289.3757 -16394,20109,36600,36599,-9,-9,2,1,0,54,1,0,0,0,3,-9,6,3,0,0,2,0,0,0,1,0,-9,8,0,0,-29.362833,0,0,0,54,3,5,1,3,-9,2019,3,1,17,5,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,32.5,57.060001,57.759998,5,1,1,0,0,5,4,0,980.5,683501.38,0,0,2289.3757 -16394,20110,36601,-9,36600,36599,3,1,1,35,3,0,0,0,2,-9,2,1,0,0,3,8.3372135,7.8136444,0,3,0,0,0,-9,0,-940.17474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,45,40,15,1,0,-9,1,8.6159468,8.6159468,0,0,0,0,0,0,0,7,1,1,0,0,0,9.8445873,3,58.32,50.220001,-9,-9,5,1,1,0,0,5,4,0,406,-37833.254,0,0,2107.7466 -16394,20111,36602,-9,36600,36599,4,1,1,26,2,0,0,0,2,-9,3,3,0,0,4,5.7518263,5.7999916,0,3,0,-9,0,0,0,-890.20752,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.62831491,0,0,0,49,58,-9,-9,5,1,1,1,0,5,2,0,1242,149810.7,0,0,898.48474 -16394,20112,36603,-9,36600,36599,5,1,1,22,2,0,0,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-971.53601,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,5,1,0,495,0,0,0,-56.18742 -16395,20113,36604,36605,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,0,5,8.2881651,8.7623158,0,1,0,-9,5,0,-5,-18.041029,0,0,1,40,2,4,1,2,2,2019,1,2,9,1,40,40,15,1,0,1,0,17.366743,17.366743,0,0,0,0,0,0,0,0,0,0,0,1.745268,0,0,0,57.060001,57.759998,43.200001,59.970001,6,1,1,0,0,5,5,1,1382,48586.969,0,0,4483.1787 -16395,20113,36605,36604,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,0,4,7.9568105,7.8807869,0,1,0,-9,5,0,5,-36.434906,0,0,0,35,2,5,1,3,3,2019,1,1,12,1,40,40,15,1,0,1,0,8.2974157,8.2974157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.200001,59.970001,57.060001,57.759998,6,1,1,0,0,5,5,1,1382,48586.969,0,0,4483.1787 -16396,20114,36606,36609,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,0,4,7.4717188,7.5780225,0,2,0,-9,6,0,-2,-61.260979,0,0,1,43,2,5,1,2,2,2019,1,2,9,0,27,0,15,1,0,1,0,8.6431522,8.6431522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.869999,58.549999,51.139999,60.450001,6,1,1,0,0,12,4,1,626.5,225097.34,0,0,3117.2073 -16396,20114,36607,-9,36606,36609,3,1,1,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-961.4848,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,12,4,1,626.5,225097.34,0,0,3117.2073 -16396,20114,36608,-9,36606,36609,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1008.8917,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,12,4,1,626.5,225097.34,0,0,3117.2073 -16396,20114,36609,36606,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,0,5,8.7554588,8.5585842,0,2,0,-9,6,0,2,-72.955933,0,0,0,41,2,4,1,2,1,2019,1,1,7,0,55,50,15,1,0,1,0,11.830517,11.830517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.139999,60.450001,48.869999,58.549999,6,1,1,0,0,12,4,1,626.5,225097.34,0,0,3117.2073 -16397,20115,36610,36611,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,0,4,0,7.9240294,7.8006206,1,0,-9,6,0,-3,27.931416,0,0,0,68,2,1,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.26127,7.3973908,0,0,58.150002,52.91,63.66,14.5,6,1,1,0,0,13,4,1,1640,937366.44,0,0,3675.8108 -16397,20115,36611,36610,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,0,1,7.2468815,7.8124604,7.0504193,1,0,-9,6,0,3,105.89178,0,0,0,65,1,4,3,3,2,2019,2,2,10,2,7,0,15,1,0,4,0,25.657106,25.657106,1,0,0,0,0,0,0,0,1,1,0,7.2312593,7.258647,0,0,63.66,14.5,58.150002,52.91,6,1,1,0,0,13,4,1,1640,937366.44,0,0,3675.8108 -16398,20116,36612,36613,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,0,4,8.354064,8.35606,0,1,0,-9,9,0,1,128.82742,0,0,0,54,1,5,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,16.564533,16.564533,0,0,0,0,0,0,0,0,0,0,0,2.9743721,0,0,0,57.73,54.529999,51.389999,59.18,6,1,1,0,0,12,5,1,580.5,1833853.9,0,0,2660.2302 -16398,20116,36613,36612,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,0,5,8.322011,8.470294,0,1,0,-9,9,0,-1,-44.468487,0,0,0,55,1,4,1,2,2,2019,1,1,9,0,21,20,15,1,0,1,0,31.148979,31.148979,0,0,0,0,0,0,0,2,0,0,0,2.9784734,0,6.150691,3,51.389999,59.18,57.73,54.529999,6,1,1,0,0,12,5,1,580.5,1833853.9,0,0,2660.2302 -16399,20117,36614,-9,36616,-9,2,1,0,17,2,0,2,1,2,-9,7,2,0,0,3,0,5.3554063,5.6501069,4,0,0,0,-9,0,-1037.7806,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4104843,0,0,0,42.290001,55.189999,-9,-9,6,1,1,0,0,12,2,1,736,159268.36,0,0,1760.6832 -16399,20117,36615,-9,36616,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,4,0,0,0,-9,0,-935.91028,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,12,2,1,736,159268.36,0,0,1760.6832 -16399,20117,36616,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,2,1,0,0,4,7.6197934,7.7412529,5.7345896,4,0,-9,0,1,0,-786.4649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,23,23,15,1,0,-9,0,7.7204514,7.7204514,0,0,0,0,0,0,0,0,1,1,0,6.0677018,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,12,2,1,736,159268.36,0,0,1760.6832 -16400,20118,36617,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,0,2,0,5.1769371,5.1247201,3,0,0,0,-9,0,-1010.7336,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.417357,0,0,0,58.57,35.720001,-9,-9,7,1,1,0,0,7,2,1,2714,100090.02,0,0,1116.478 -16401,20119,36618,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-953.55237,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,30.629999,-9,-9,2,1,1,0,0,1,1,0,653,-185558.39,0,0,2190.0635 -16402,20120,36619,-9,36620,-9,2,1,1,17,2,0,0,0,2,-9,7,2,0,0,5,6.4755549,6.4398327,0,3,0,0,0,-9,0,-1063.4403,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1324726,0,0,0,48.77,60.16,-9,-9,4,1,1,0,0,10,3,0,1149.5,70292.531,0,0,1664.8376 -16402,20120,36620,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,0,2,7.0183792,7.2879658,0,3,0,0,0,-9,0,-919.15668,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,25,10,24,26,15,1,1,-9,0,6.8272581,6.8272581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.18,14.05,-9,-9,1,1,1,0,0,10,3,0,1149.5,70292.531,0,0,1664.8376 -16403,20121,36621,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,0,4,8.0464954,8.2898197,0,3,0,0,0,-9,0,-974.81177,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,2,46,46,15,1,0,-9,0,7.5672135,7.5672135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,-9,-9,6,1,1,0,0,10,4,0,564,149095.72,0,0,-108.01511 -16404,20122,36622,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,7.2407174,7.110877,3,0,0,0,-9,0,-992.93719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3182507,7.0332208,0,0,47.07,55.18,-9,-9,5,1,1,0,0,10,2,1,645,229938.63,0,0,1620.1078 -16405,20123,36623,36624,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,1,0,0,0,1,0,-9,48,0,1,0,0,0,0,68,3,4,3,-9,-9,2019,4,1,11,2,0,0,15,4,0,4,0,0,0,1,0,44.900913,7.2452555,0,13.810372,0,0,1,1,0,0,0,0,0,26.65,31.35,62.099998,42.919998,5,1,1,0,0,2,1,0,1331.5,43083.434,0,0,2991.5317 -16405,20123,36624,36623,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,47,0,-1,0,0,0,0,69,3,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.216593,2,62.099998,42.919998,26.65,31.35,6,1,1,0,0,2,1,0,1331.5,43083.434,0,0,2991.5317 -16405,20124,36625,-9,36623,36624,3,1,0,42,2,0,0,0,2,-9,2,1,0,0,3,7.9468718,7.5229583,0,3,0,0,0,-9,0,-1012.4194,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,30,30,15,1,0,-9,1,6.2138715,6.2138715,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,61.299999,32.610001,-9,-9,6,1,1,0,0,2,3,0,98,28472.82,0,0,615.3078 -16406,20125,36626,36627,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,0,4,0,7.8213334,8.1135998,1,0,-9,50,0,2,-167.50058,0,0,0,72,1,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0015969,7.5177689,0,0,58.299999,52.91,50.009998,55.310001,7,1,1,0,0,7,3,1,425,1907813.5,0,0,2748.0354 -16406,20125,36627,36626,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,0,4,0,7.5769811,7.2330899,1,0,-9,50,0,-2,-9.2117147,0,0,0,74,1,4,3,3,3,2019,4,2,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8030815,7.421155,0,0,50.009998,55.310001,58.299999,52.91,7,1,1,0,0,7,3,1,425,1907813.5,0,0,2748.0354 -16407,20126,36628,36629,-9,-9,2,1,1,62,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,11,0,1,0,0,0,0,61,2,1,3,-9,-9,2019,4,1,20,8,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.75069,1,49.290001,26.34,27.639999,19.879999,4,1,1,0,0,4,1,0,697.5,-42699.324,0,0,2754.0366 -16407,20126,36629,36628,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,1,1,0,0,0,1,0,-9,46,0,-1,0,-9,0,0,62,2,2,3,3,-9,2019,4,2,13,1,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.639999,19.879999,49.290001,26.34,2,1,1,0,0,4,1,0,697.5,-42699.324,0,0,2754.0366 -16408,20127,36630,36632,-9,-9,1,1,0,22,1,1,1,0,2,-9,2,1,0,0,4,6.9355087,6.9584074,0,2,0,1,1,-9,1,25.862608,0,1,1,21,2,2,1,-9,-9,2019,1,3,13,1,20,0,15,1,0,1,0,6.3799334,6.3799334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.810001,58.990002,32.939999,55.619999,6,1,1,0,0,10,3,0,698.33331,-27696.311,0,0,3079.0813 -16408,20127,36631,-9,36630,36632,2,1,0,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1078.3716,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,3,0,698.33331,-27696.311,0,0,3079.0813 -16408,20127,36632,36630,-9,-9,3,1,1,21,1,1,1,0,2,-9,2,1,0,0,2,7.8803811,7.9571004,0,2,0,-9,1,-9,-1,95.193192,-9,1,0,22,2,4,1,-9,-9,2019,1,1,27,12,56,0,15,1,1,1,0,5.4680409,5.4680409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.939999,55.619999,45.810001,58.990002,4,1,1,0,0,10,3,0,698.33331,-27696.311,0,0,3079.0813 -16409,20128,36633,36634,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,0,2,8.5454559,8.7384968,0,1,0,-9,29,0,4,13.010448,0,0,0,49,1,4,1,3,3,2019,1,2,14,2,60,55,15,1,0,1,0,11.508022,11.508022,0,0,0,0,0,0,0,0,0,0,0,1.2755059,0,0,0,39.060001,48.740002,53.52,53.810001,6,2,3,0,0,8,5,1,521.5,260031.98,0,0,3672.0947 -16409,20128,36634,36633,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,4,7.6562648,7.6269164,0,1,0,-9,8,0,-4,22.890409,0,0,0,53,2,2,1,-9,-9,2019,1,1,11,0,30,38,15,1,0,1,0,7.240068,7.240068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.52,53.810001,39.060001,48.740002,7,2,3,0,0,8,5,1,521.5,260031.98,0,0,3672.0947 -16409,20129,36635,-9,36634,36633,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,4,8.0754957,8.1744156,0,3,0,0,0,-9,0,-983.0119,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,48,40,15,1,0,-9,1,9.4425621,9.4425621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.66,52.66,-9,-9,6,2,3,0,0,8,4,1,447,-169475.41,0,0,1624.7124 -16409,20130,36636,-9,36634,36633,4,1,1,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-966.0611,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.490002,55.09,-9,-9,6,2,3,0,0,8,1,1,925,60038.07,0,0,0 -16410,20131,36637,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,1,2,0,6.3049164,6.4272456,3,0,0,0,-9,0,-900.79871,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3930039,6.0164018,0,0,60.240002,30.879999,-9,-9,6,1,1,0,0,7,2,1,1582,768455.13,0,0,440.56674 -16411,20132,36638,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,0,4,7.8812509,8.2872839,0,3,0,0,0,-9,0,-1024.3639,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,38,30,15,1,0,-9,0,9.4949141,9.4949141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.639999,58.32,-9,-9,4,1,1,0,1,5,4,1,518,41034.301,0,0,2150.1726 -16412,20133,36639,-9,36643,36644,10,1,1,12,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1097.8999,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36640,-9,36643,36644,9,1,1,14,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1118.0947,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36641,-9,36643,36644,8,1,0,15,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.6941,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36642,-9,36643,36644,12,1,0,7,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-969.62103,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36643,36644,-9,-9,2,1,0,47,1,0,7,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,30,0,-10,-20.463604,0,0,0,57,2,4,1,3,3,2019,3,1,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,54,54,6,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36644,36643,-9,-9,1,1,1,57,1,0,7,0,2,-9,1,1,0,0,4,5.0362639,4.992991,0,2,0,-9,7,0,10,-87.011147,0,0,0,47,3,4,3,-9,-9,2019,2,2,9,0,31,5,15,1,0,3,0,.66406298,.66406298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,50,54,6,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36645,-9,36643,36644,13,1,1,5,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1016.1088,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36646,-9,36643,36644,7,1,0,16,2,0,7,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-922.06219,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20133,36647,-9,36643,36644,11,1,1,9,2,0,7,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-883.67682,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,1,0,945,370823.09,0,0,3348.9219 -16412,20134,36648,-9,36643,36644,3,1,1,26,2,0,7,0,2,-9,2,1,0,0,4,6.8142328,6.4975333,0,3,0,0,0,-9,0,-951.43896,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,35,37,15,1,0,-9,1,2.5936005,2.5936005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,2,0,861,-150912.66,0,0,-939.21808 -16412,20135,36649,-9,36643,36644,4,1,0,25,2,0,7,0,2,-9,2,1,0,0,4,7.5553966,7.1097388,0,3,0,0,0,-9,0,-920.95355,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,20,15,15,1,0,-9,1,13.221611,13.221611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,8,3,0,259,0,0,0,2892.3667 -16412,20136,36650,-9,36643,36644,5,1,0,21,2,0,7,0,3,1,2,1,0,0,4,7.5400295,7.2560005,0,3,0,0,0,-9,0,-1000.2208,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,16,0,15,1,0,-9,1,11.189106,11.189106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,3,0,346,47040.883,0,0,3208.8562 -16412,20137,36651,-9,36643,36644,6,1,0,20,2,0,7,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1004.9956,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,8,1,0,351,185576.39,0,0,2600.8538 -16413,20138,36652,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,0,3,0,6.3077197,5.880641,3,0,0,0,-9,0,-833.27368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2338729,0,0,57.330002,53.459999,-9,-9,6,1,1,0,0,5,2,1,697,1613169.6,0,0,390.89459 -16414,20139,36653,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,3,0,4.2201385,4.3597207,3,0,0,0,-9,0,-1027.1461,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,18.923439,0,0,0,1,1,0,1.9647856,4.2418661,0,0,53,44,-9,-9,6,1,1,0,0,11,1,1,456,107441.09,0,0,205.46608 -16415,20140,36654,-9,-9,-9,1,1,0,42,3,0,4,0,3,-9,2,1,0,0,3,7.8491635,7.8521628,0,4,0,0,0,-9,0,-984.82983,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,28,25,15,1,0,-9,0,9.5703192,9.5703192,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.599998,51.610001,-9,-9,5,3,4,0,0,8,2,0,619,203115.3,0,0,1630.1011 -16415,20140,36655,-9,36654,-9,5,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-895.55621,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,8,2,0,619,203115.3,0,0,1630.1011 -16416,20141,36656,36657,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,0,3,8.1319113,8.3760071,0,1,0,-9,10,0,-4,107.66241,0,1,1,28,2,3,1,-9,2,2019,1,2,9,0,37,37,15,1,0,1,0,10.000739,10.000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.310001,36.41,45.490002,58.84,6,1,1,0,0,10,5,1,855,-128030.38,0,0,3979.7664 -16416,20141,36657,36656,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,0,3,8.8038168,8.5821609,0,1,0,-9,10,0,4,-95.048691,0,1,0,24,2,3,1,2,2,2019,1,1,14,6,67,47,15,1,1,1,0,10.046212,10.046212,0,0,0,0,0,0,0,0,0,0,0,.49516687,0,0,0,45.490002,58.84,52.310001,36.41,6,1,1,0,0,10,5,1,855,-128030.38,0,0,3979.7664 -16417,20142,36658,-9,-9,-9,3,1,1,31,2,0,0,0,1,-9,2,1,0,0,4,8.4809332,8.4858227,0,3,0,0,0,-9,0,-991.08844,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,50,40,15,1,0,-9,1,9.2381573,9.2381573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,-9,-9,7,2,3,0,0,8,4,1,2674,37539.969,0,0,758.5528 -16418,20143,36659,36660,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,0,4,0,6.1240726,6.1158395,1,0,-9,30,0,0,4.8642764,0,0,0,79,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2471266,0,0,62.490002,55.09,58.540001,36.18,6,1,1,0,0,7,2,0,1212,673327.5,0,0,1230.7958 -16418,20143,36660,36659,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,4,0,5.7915721,6.1447082,1,0,-9,27,0,0,-95.487762,0,0,0,79,3,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.244967,5.9233074,0,0,58.540001,36.18,62.490002,55.09,6,1,1,0,0,7,2,0,1212,673327.5,0,0,1230.7958 -16419,20144,36661,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,4,3,0,0,3,0,7.5656538,7.8174353,3,0,0,0,-9,0,-1044.3768,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.413672,7.3622937,13.781297,3,48.990002,46.490002,-9,-9,4,1,1,0,0,12,3,1,288,737789,0,0,1413.1498 -16420,20145,36662,36663,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,0,2,8.5431099,8.8658915,0,1,0,-9,37,0,-2,-37.504807,0,0,0,64,1,4,1,3,2,2019,1,1,16,5,51,47,15,1,1,1,0,15.615617,15.615617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.689999,43.049999,45.849998,61.259998,4,2,3,0,0,2,5,1,945.5,1210516.8,0,0,4778.3633 -16420,20145,36663,36662,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,0,4,8.4666367,8.7513523,7.7562599,1,0,-9,20,0,2,-139.09598,0,0,0,62,2,2,1,2,-9,2019,1,2,10,1,36,41,15,1,0,1,0,16.384346,16.384346,0,0,0,0,0,0,0,0,0,0,0,2.9138451,8.0934448,0,0,45.849998,61.259998,39.689999,43.049999,6,1,1,0,0,2,5,1,945.5,1210516.8,0,0,4778.3633 -16420,20146,36664,-9,36662,36663,3,1,1,32,2,0,0,0,1,-9,1,1,0,0,4,8.3720112,8.5374441,0,3,0,0,0,-9,0,-1041.0844,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,22,30,15,1,0,-9,1,16.497763,16.497763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.349998,57.799999,-9,-9,3,4,2,0,1,2,4,1,102,119704.82,0,0,1649.9821 -16421,20147,36665,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,0,4,0,6.7570586,6.7265081,3,0,0,0,-9,0,-1172.5885,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.3814468,6.643096,4.930912,3,64.230003,44.689999,-9,-9,7,1,1,0,0,7,2,1,402,374772.38,0,0,868.43353 -16422,20148,36666,36667,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,0,4,9.9347744,9.6559353,6.8332829,1,0,-9,39,0,-1,-23.243029,0,0,0,63,1,3,1,1,1,2019,1,2,6,0,32,16,15,1,0,1,0,65.787979,65.787979,0,0,0,0,0,0,0,2,0,0,0,0,6.5551672,2.9467454,3,55.360001,54.240002,46.560001,50.259998,6,1,1,0,0,12,5,1,416.5,1921429.3,0,0,28044.824 -16422,20148,36667,36666,-9,-9,2,1,1,63,1,0,0,0,1,-9,1,1,0,0,3,7.7321749,9.5036802,8.9489851,1,0,-9,39,0,1,-51.860497,0,0,0,62,1,4,1,2,3,2019,1,1,14,4,15,24,15,1,1,1,0,24.446043,24.446043,0,0,0,0,0,0,0,0,0,0,0,5.54599,8.8260145,0,0,46.560001,50.259998,55.360001,54.240002,6,1,1,0,0,12,5,1,416.5,1921429.3,0,0,28044.824 -16423,20149,36668,-9,-9,-9,1,1,0,54,2,0,1,0,2,-9,2,1,0,1,2,9.105937,9.3394814,0,4,0,0,0,-9,0,-1074.9661,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,45,0,15,1,0,-9,0,30.955965,30.955965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.189999,46.16,-9,-9,6,3,4,0,0,8,5,1,841,25990.504,0,0,2981.3499 -16423,20150,36669,-9,-9,36670,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1115.9752,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,4,2,0,0,8,5,1,431,22199.582,0,0,5166.2285 -16423,20150,36670,-9,-9,-9,2,1,1,52,2,0,1,0,2,-9,1,1,0,0,4,9.3685236,9.2571459,0,4,0,0,0,-9,0,-1059.2682,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,0,15,1,0,-9,0,32.617172,32.617172,0,0,0,0,0,0,0,0,1,1,0,8.2385235,0,0,0,53,55,-9,-9,6,3,4,0,0,8,5,1,431,22199.582,0,0,5166.2285 -16424,20151,36671,-9,36672,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-914.70129,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,10,1,0,1040,35012.77,0,0,585.12463 -16424,20151,36672,-9,-9,-9,1,1,0,25,2,1,1,0,2,-9,6,3,0,0,3,0,0,0,4,0,0,0,-9,0,-1093.8689,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.509998,-9,-9,5,1,1,0,0,10,1,0,1040,35012.77,0,0,585.12463 -16425,20152,36673,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,1,0,4.3827982,4.7347817,3,0,0,0,-9,0,-974.40448,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,1,-9,0,0,0,1,74.275574,0,0,0,77.066467,725.31134,0,1,1,0,3.0846331,4.5341349,0,0,20.9,21.84,-9,-9,3,1,1,0,1,6,2,1,450,-56279.547,0,0,598.61633 -16426,20153,36674,36675,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,4,8.4474297,9.0312958,8.0662651,1,0,-9,30,0,-3,-73.991928,0,0,0,55,2,3,1,3,-9,2019,1,2,7,0,40,48,15,1,0,1,0,13.996803,13.996803,0,0,0,0,0,0,0,0,0,0,0,0,8.4396152,0,0,46.5,58.259998,37.77,37.900002,6,1,1,0,0,12,5,1,561,748151.13,0,0,4810.3857 -16426,20153,36675,36674,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,8.357934,8.4807224,0,1,0,-9,30,0,3,32.896461,0,0,0,52,1,4,1,3,3,2019,1,1,12,0,37,40,15,1,0,1,0,13.179749,13.179749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.77,37.900002,46.5,58.259998,5,1,1,0,0,12,5,1,561,748151.13,0,0,4810.3857 -16426,20154,36676,-9,36675,36674,3,1,1,24,2,0,0,0,2,-9,2,1,0,0,3,8.0357161,7.6972723,0,3,0,0,0,-9,0,-971.86938,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,35,40,15,1,0,-9,1,8.2958412,8.2958412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.209999,54.639999,-9,-9,3,1,1,0,0,12,3,1,1133,129954.5,0,0,2239.0627 -16427,20155,36677,-9,36679,36678,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1001.0291,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,9,4,0,392,235596.34,0,0,3289.418 -16427,20155,36678,36679,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,0,3,8.6939917,8.9104862,0,2,0,-9,6,0,3,-86.817902,0,0,0,34,2,3,1,-9,-9,2019,1,1,7,1,40,40,15,1,0,1,0,21.121275,21.121275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.369999,54.799999,53.560001,49.66,7,3,4,0,0,9,4,0,392,235596.34,0,0,3289.418 -16427,20155,36679,36678,-9,-9,1,1,0,34,1,1,2,0,2,-9,2,1,0,0,3,8.0841494,7.9783473,0,2,0,-9,6,0,-3,-1.4365737,0,0,1,37,1,3,1,-9,-9,2019,1,2,7,0,20,22,15,1,0,1,0,20.3859,20.3859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.560001,49.66,54.369999,54.799999,5,1,1,0,0,9,4,0,392,235596.34,0,0,3289.418 -16427,20155,36680,-9,36679,36678,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1099.2065,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,9,4,0,392,235596.34,0,0,3289.418 -16428,20156,36681,36682,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,1,2,7.4448342,7.3117881,0,1,0,-9,7,0,0,-128.92644,0,0,0,63,2,4,3,-9,-9,2019,2,1,9,0,20,10,15,1,0,4,0,9.6215096,9.6215096,0,0,0,0,0,0,0,7,1,1,0,.79302841,0,1.3016543,3,53.57,31.34,54.200001,57.490002,5,1,1,0,0,10,4,1,814,1091027.9,0,0,1895.5239 -16428,20156,36682,36681,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.976335,7.6091599,1,0,-9,7,0,9,2.5359349,0,0,0,54,1,2,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1694264,7.9340587,8.9450598,3,54.200001,57.490002,53.57,31.34,6,1,1,0,0,10,4,1,814,1091027.9,0,0,1895.5239 -16429,20157,36683,36684,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,8.4031229,8.6776228,0,1,0,-9,38,0,-4,-127.99002,0,0,0,61,2,2,3,2,2,2019,2,1,8,0,36,36,15,1,0,4,0,14.301271,14.301271,0,0,0,0,0,0,0,0,0,0,0,6.806684,0,0,0,48.93,55.73,59.84,33.48,6,1,1,0,0,13,5,1,720,1709038.8,0,0,3917.8787 -16429,20157,36684,36683,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,2,0,8.2542267,8.4298801,1,0,-9,38,0,4,-21.252159,0,0,0,57,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.942554,8.0250692,0,0,59.84,33.48,48.93,55.73,6,1,1,0,0,13,5,1,720,1709038.8,0,0,3917.8787 -16430,20158,36685,-9,36686,36687,3,1,0,6,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-944.07996,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,2,5,1,1833,148648.69,0,0,6180.1143 -16430,20158,36686,36687,-9,-9,2,1,0,41,1,0,1,0,2,-9,1,1,0,0,2,5.8631797,6.1367359,0,2,0,-9,3,0,-8,16.968283,0,0,1,49,2,2,1,-9,-9,2019,1,1,10,0,10,0,15,1,0,1,0,4.5140262,4.5140262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.240002,54.040001,49.080002,50.279999,6,1,1,0,0,2,5,1,1833,148648.69,0,0,6180.1143 -16430,20158,36687,36686,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,0,2,9.7730169,9.5973921,0,2,0,-9,3,0,8,48.886307,0,0,0,41,2,2,1,2,-9,2019,1,2,4,0,40,45,15,1,0,1,0,38.545826,38.545826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.080002,50.279999,42.240002,54.040001,6,1,1,0,0,2,5,1,1833,148648.69,0,0,6180.1143 -16431,20159,36688,36690,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,0,3,7.4607563,8.017458,6.8255596,2,0,-9,2,0,0,-58.961926,0,0,0,48,2,4,1,2,2,2019,1,3,6,0,30,30,15,1,0,1,0,9.8779297,9.8779297,0,0,0,0,0,0,0,0,1,1,0,6.7685504,0,0,0,54.959999,53.169998,60.119999,54.799999,6,1,1,0,0,2,5,0,763,88066.031,0,0,4930.0293 -16431,20159,36689,-9,36688,36690,2,1,0,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1022.6666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,5,0,763,88066.031,0,0,4930.0293 -16431,20159,36690,36688,-9,-9,3,1,1,48,1,0,1,0,2,-9,2,1,0,0,4,9.1144047,9.0255842,0,2,0,-9,2,0,0,-14.314006,0,0,0,48,2,3,1,-9,-9,2019,1,1,2,0,40,40,15,1,0,1,0,25.440411,25.440411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,54.959999,53.169998,6,1,1,0,0,2,5,0,763,88066.031,0,0,4930.0293 -16432,20160,36691,-9,36693,36692,3,1,0,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-978.4743,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,2,5,1,649.33331,516030.13,0,0,4667.5898 -16432,20160,36692,36693,-9,-9,2,1,1,36,1,0,1,0,1,-9,2,1,0,0,5,9.0618563,9.6207142,0,2,0,-9,9,0,0,-41.253597,0,0,0,36,1,4,1,2,1,2019,1,1,10,0,48,47,15,1,0,1,0,22.204576,22.204576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,46.709999,52.610001,6,1,1,0,0,2,5,1,649.33331,516030.13,0,0,4667.5898 -16432,20160,36693,36692,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,0,4,8.1278353,8.0757284,0,2,0,-9,9,0,0,-137.5921,0,0,1,36,1,5,1,2,2,2019,1,2,11,0,25,27,15,1,0,1,0,17.790329,17.790329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.709999,52.610001,57.060001,57.759998,6,1,1,0,0,2,5,1,649.33331,516030.13,0,0,4667.5898 -16433,20161,36694,36695,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,0,4,7.1621146,7.2748194,0,2,0,-9,35,0,-7,203.01057,0,0,0,55,2,2,3,3,3,2019,2,2,6,0,28,28,15,1,0,3,0,4.5864391,4.5864391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,65.290001,32.439999,5,2,3,0,1,5,2,1,243,492683.63,0,0,1204.153 -16433,20161,36695,36694,-9,-9,2,1,0,55,1,0,1,0,2,-9,6,3,0,0,2,0,0,0,2,0,-9,6,0,7,-37.789188,0,0,0,48,3,4,1,3,3,2019,3,1,12,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.290001,32.439999,52.43,55.57,6,2,3,0,1,5,2,1,243,492683.63,0,0,1204.153 -16433,20162,36696,-9,36695,36694,3,1,1,22,2,0,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-952.88013,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,-9,-9,4,2,3,1,0,5,1,1,255,-43754.633,0,0,0 -16433,20163,36697,-9,36695,36694,4,1,0,19,2,0,1,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-958.17664,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,6,2,3,0,0,5,1,1,329,19153.568,0,0,-340.39194 -16433,20164,36698,-9,36695,36694,5,1,0,18,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1034.627,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412746,0,0,0,43.32,54.23,-9,-9,5,2,3,0,0,5,2,1,1171,-140827.17,0,0,-262.98279 -16434,20165,36699,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,0,4,7.8492274,7.9280281,6.8838515,3,0,0,0,-9,0,-959.6012,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,20,20,15,1,0,-9,1,12.606729,12.606729,0,0,0,0,0,0,0,0,1,1,0,7.3829341,0,0,0,43.669998,61.060001,-9,-9,6,1,1,0,0,2,4,1,680.33331,65775.586,0,0,2474.5322 -16434,20165,36700,-9,36699,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,3,0,0,0,-9,0,-922.47302,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,2,4,1,680.33331,65775.586,0,0,2474.5322 -16434,20165,36701,-9,36699,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1063.886,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,4,1,680.33331,65775.586,0,0,2474.5322 -16435,20166,36702,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,0,4,0,7.572504,7.6135459,3,0,0,0,-9,0,-957.66852,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8683014,7.7984657,0,0,50.599998,53.68,-9,-9,6,1,1,0,0,10,3,1,406,599584.38,0,0,289.10876 -16436,20167,36703,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,7.9577789,8.1492605,0,3,0,0,0,-9,0,-1013.2159,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,45,15,1,0,-9,0,8.7203941,8.7203941,0,0,0,0,0,0,0,0,0,0,0,5.9884443,0,0,0,49.349998,59.639999,-9,-9,6,1,1,0,0,4,4,1,969,-23324.896,0,0,1810.1519 -16436,20168,36704,-9,-9,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,0,4,8.2646179,8.4107523,0,3,0,-9,0,-9,0,-1222.745,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,48,0,15,1,0,-9,0,9.2130756,9.2130756,0,0,0,0,0,0,0,0,0,0,0,2.8143618,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,4,1,1379,154475.94,0,0,1808.926 -16437,20169,36705,-9,-9,-9,1,1,0,39,3,0,1,0,2,-9,2,1,0,0,4,8.3497581,8.7296286,7.1191273,4,0,-9,0,1,0,-884.17041,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,48,30,15,1,1,-9,0,8.2742395,8.2742395,0,0,0,0,0,0,0,0,1,1,0,7.6608653,0,0,0,35.150002,61.099998,-9,-9,2,1,1,0,1,10,4,1,235,191566.13,0,0,2431.0376 -16437,20169,36706,-9,36705,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-877.86664,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,10,4,1,235,191566.13,0,0,2431.0376 -16438,20170,36707,36708,-9,-9,2,1,0,61,1,0,0,0,2,-9,8,3,1,1,1,0,6.1542692,5.8918409,1,0,-9,3,0,-8,152.38046,0,0,0,69,2,4,3,3,3,2019,4,1,26,8,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0949879,0,0,24.450001,26.889999,62.490002,55.09,1,1,1,0,0,2,2,1,509,216035.81,0,0,2791.168 -16438,20170,36708,36707,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,3,0,8,-38.536503,0,0,0,61,2,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.438265,1,62.490002,55.09,24.450001,26.889999,5,1,1,0,0,2,2,1,509,216035.81,0,0,2791.168 -16439,20171,36709,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-975.4115,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.57775724,0,0,0,54.529999,22.48,-9,-9,3,1,1,0,0,4,1,1,305,-66260.875,0,0,1732.4352 -16440,20172,36710,36711,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,5,6.4218817,8.2283506,8.331274,1,0,-9,6,0,5,64.056686,0,0,0,62,2,4,1,3,3,2019,3,1,8,0,12,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7856183,7.96697,0,0,57.060001,57.759998,57.16,56.150002,7,1,1,0,0,2,4,1,340.5,1576242.9,0,0,4055.0938 -16440,20172,36711,36710,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,0,4,7.8256516,7.7139935,0,1,0,-9,6,0,-5,24.863239,0,0,0,67,2,5,3,2,1,2019,2,2,7,0,32,30,15,1,0,4,0,9.9693985,9.9693985,0,0,0,0,0,0,0,0,1,1,0,4.1145091,0,0,0,57.16,56.150002,57.060001,57.759998,6,1,1,0,0,2,4,1,340.5,1576242.9,0,0,4055.0938 -16441,20173,36712,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,2,1,0,1,3,7.0335803,7.1410894,5.549768,3,0,0,0,-9,0,-1007.7232,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,22,21,15,1,0,-9,0,6.3413076,6.3413076,0,0,0,0,0,0,0,0,1,1,0,5.2366848,0,0,0,46.790001,41.889999,-9,-9,5,1,1,0,0,7,2,1,216,-38022.57,0,0,3616.8706 -16442,20174,36713,36714,-9,-9,1,1,1,50,1,0,2,0,1,-9,1,1,0,0,5,9.740243,9.8097496,0,2,0,-9,22,0,3,57.497055,0,0,0,47,2,4,3,3,3,2019,2,2,12,1,50,50,15,1,0,3,0,37.121162,37.121162,0,0,0,0,0,0,0,0,0,0,0,.38583037,0,0,0,49.759998,56.93,57.16,56.150002,5,1,1,0,0,8,5,1,1237.3334,3145438.8,0,0,395667.09 -16442,20174,36714,36713,-9,-9,2,1,0,47,1,0,2,0,2,-9,6,3,0,0,4,0,7.2236896,7.3853931,2,0,-9,22,0,-3,24.943127,0,0,0,50,1,5,1,3,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.050068,0,0,0,57.16,56.150002,49.759998,56.93,7,1,1,0,0,8,5,1,1237.3334,3145438.8,0,0,395667.09 -16442,20174,36715,-9,36714,36713,4,1,1,16,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-973.41644,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.970001,-9,-9,6,1,1,0,0,8,5,1,1237.3334,3145438.8,0,0,395667.09 -16442,20175,36716,-9,36714,36713,3,1,1,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-876.07019,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.46893269,0,0,0,51.669998,60.18,-9,-9,6,1,1,0,0,8,5,1,660,-178668.94,0,0,-1729.0112 -16443,20176,36717,36718,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,0,2,0,6.8133936,7.3189249,1,0,-9,48,0,7,2.1958547,0,0,0,73,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2556844,7.2509212,0,0,60.32,33.330002,47.59,34.950001,5,1,1,0,0,7,2,1,537.5,1221363,0,0,2107.9858 -16443,20176,36718,36717,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,0,3,0,6.2018046,6.4383945,1,0,-9,48,0,-7,40.535156,0,0,0,80,2,2,3,1,2,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0424271,5.5096984,0,0,47.59,34.950001,60.32,33.330002,7,1,1,0,0,7,2,1,537.5,1221363,0,0,2107.9858 -16443,20177,36719,-9,36718,36717,3,1,1,34,2,0,0,0,2,-9,2,1,0,0,4,7.8434758,8.1000519,0,3,0,0,0,-9,0,-922.02313,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,40,40,15,1,0,-9,1,6.7757812,6.7757812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,7,3,1,181,0,0,0,-1188.9314 -16444,20178,36720,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,0,4,0,7.0292354,7.3928137,3,0,0,0,-9,0,-951.16644,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1007724,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,12,2,1,383,473386.69,0,0,107.35834 -16445,20179,36721,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,0,4,0,5.3409443,5.4186468,4,0,0,0,-9,0,-1066.363,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,23,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.1110301,0,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,13,2,0,227.5,-94658.195,0,0,720.97601 -16445,20179,36722,-9,36721,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-964.81415,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,13,2,0,227.5,-94658.195,0,0,720.97601 -16446,20180,36723,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,0,3,8.4354744,8.7329845,0,3,0,0,0,-9,0,-1108.8859,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,44,50,15,1,0,-9,0,12.637708,12.637708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.040001,55.860001,-9,-9,4,1,1,0,0,7,5,1,583,81886.367,0,0,2062.554 -16447,20181,36724,-9,36725,36726,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1042.5115,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,12,3,1,1498,36568.418,0,0,2868.2722 -16447,20181,36725,36726,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,0,3,7.0768461,7.0404458,0,2,0,-9,7,0,1,-77.137611,0,0,1,29,2,5,1,2,2,2019,1,2,7,0,15,23,15,1,0,1,0,9.4662075,9.4662075,0,0,0,0,0,0,0,0,1,1,0,1.2496314,0,0,0,52,54.509998,52.130001,57.220001,6,1,1,0,0,12,3,1,1498,36568.418,0,0,2868.2722 -16447,20181,36726,36725,-9,-9,2,1,1,29,1,1,2,0,2,-9,1,1,0,0,5,7.6879992,8.144742,6.5012536,2,0,-9,7,0,-1,-12.95177,0,1,0,30,2,3,1,1,2,2019,1,1,9,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3943696,0,0,0,52.130001,57.220001,52,54.509998,6,1,1,0,0,12,3,1,1498,36568.418,0,0,2868.2722 -16447,20181,36727,-9,36725,36726,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-976.18817,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,12,3,1,1498,36568.418,0,0,2868.2722 -16448,20182,36728,-9,-9,-9,1,1,0,74,2,0,0,0,3,-9,4,3,0,0,5,0,6.048378,5.8963318,3,0,0,0,-9,0,-1010.7963,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.7395568,6.1267209,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,2,1,557,72264.18,0,0,233.75826 -16449,20183,36729,36730,-9,-9,2,1,1,51,1,0,0,0,3,-9,6,3,0,1,2,0,0,0,1,0,-9,34,0,3,0,0,0,0,48,2,2,3,3,3,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.309631,2,57.509998,31.85,45.48,38.91,4,1,1,0,0,4,1,0,345,217959.02,0,0,2617.7402 -16449,20183,36730,36729,-9,-9,1,1,0,48,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,34,0,-3,0,0,0,0,51,3,2,3,3,3,2019,4,2,17,6,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.7848892,3,45.48,38.91,57.509998,31.85,6,1,1,0,0,4,1,0,345,217959.02,0,0,2617.7402 -16449,20184,36731,-9,36730,36729,3,1,0,20,2,0,0,0,2,-9,2,1,0,0,4,7.8048558,8.0854349,0,3,0,0,0,-9,0,-857.6308,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,38,38,15,1,0,-9,1,7.5717416,7.5717416,0,0,0,0,0,0,0,0,1,1,0,.17640102,0,0,0,33.490002,64.260002,-9,-9,6,1,1,0,0,4,4,0,2119,-68647.859,0,0,1734.5988 -16450,20185,36732,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,0,3,0,5.6063137,5.7002735,3,0,0,0,-9,0,-944.87714,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6254463,0,0,0,51,46,-9,-9,7,1,1,0,0,2,2,1,248,378019.78,0,0,1391.5313 -16451,20186,36733,36734,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,0,4,8.5958967,8.6525621,0,1,0,-9,7,0,-1,26.624285,0,0,0,44,2,3,1,3,-9,2019,1,2,10,0,37,37,15,1,0,1,0,18.53264,18.53264,0,0,0,0,0,0,0,0,0,0,0,4.9657192,0,0,0,51.830002,57.200001,52.990002,51.279999,6,1,1,0,0,4,5,1,707,1000713.3,0,0,3283.3726 -16451,20186,36734,36733,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.4692936,8.7083082,0,1,0,-9,7,0,1,107.17583,0,0,1,43,2,4,1,-9,-9,2019,1,1,7,0,45,40,15,1,0,1,0,10.029306,10.029306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,51.830002,57.200001,6,1,1,0,0,4,5,1,707,1000713.3,0,0,3283.3726 -16452,20187,36735,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,4,8.4333477,8.3329096,0,3,0,0,0,-9,0,-1004.1083,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,19,6,28,28,15,1,1,-9,0,15.652369,15.652369,0,0,0,0,0,0,0,0,0,0,0,4.4324813,0,0,0,27.809999,65.690002,-9,-9,6,1,1,0,0,8,4,1,93,-43527.68,0,0,1489.6989 -16453,20188,36736,36737,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,44,0,-6,-25.634521,0,0,0,70,2,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.740002,26.389999,57.330002,53.459999,6,1,1,0,0,11,2,1,1368,236605.53,0,0,1765.3571 -16453,20188,36737,36736,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,6.088665,6.1766405,1,0,-9,44,0,6,-13.774951,0,0,0,64,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5772381,0,0,57.330002,53.459999,56.740002,26.389999,6,1,1,0,0,11,2,1,1368,236605.53,0,0,1765.3571 -16454,20189,36738,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-916.62427,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.119999,29.51,-9,-9,4,1,1,1,0,8,1,0,791,-124863.6,0,0,124.77549 -16455,20190,36739,-9,-9,-9,1,1,0,23,2,0,0,1,2,-9,7,2,0,0,3,7.5107164,7.2628407,0,3,0,-9,0,-9,0,-954.82404,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,5,18,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.530001,53.169998,-9,-9,5,2,3,0,0,8,3,0,166,-103970.08,0,0,1130.1931 -16455,20191,36740,-9,-9,-9,3,1,0,20,3,0,0,0,2,-9,2,1,0,0,5,8.02279,7.9966927,2.6009023,3,0,-9,0,-9,0,-970.28333,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,9,37,0,15,1,1,-9,0,10.214321,10.214321,0,0,0,0,0,0,0,0,0,0,0,3.2176647,0,0,0,22.57,68.449997,-9,-9,5,1,1,0,0,8,4,0,294,-15991.694,0,0,1958.601 -16456,20192,36741,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,0,5,8.6889486,8.6441441,0,3,0,0,0,-9,0,-1091.172,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,80,41,15,1,0,-9,0,7.7032323,7.7032323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.529999,63.810001,-9,-9,3,1,1,0,0,10,5,0,274,427814.47,0,0,2306.6079 -16457,20193,36742,36743,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,0,4,8.53619,8.053401,0,1,0,-9,40,0,4,91.18914,0,0,0,60,2,3,1,3,2,2019,1,2,7,0,60,42,15,1,0,1,0,7.6168189,7.6168189,0,0,0,0,0,0,0,0,0,0,0,4.6903095,0,0,0,56.18,51.02,36.919998,51.869999,6,1,1,0,0,12,5,1,317,877776.63,0,0,2905.9204 -16457,20193,36743,36742,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,0,3,8.0177345,7.8346639,0,1,0,-9,40,0,-4,-91.075073,0,0,0,64,2,4,1,-9,-9,2019,1,1,12,0,38,38,15,1,0,1,0,9.9508495,9.9508495,0,0,0,0,0,0,0,0,0,0,0,1.9952099,0,0,0,36.919998,51.869999,56.18,51.02,3,1,1,0,0,12,5,1,317,877776.63,0,0,2905.9204 -16458,20194,36744,36745,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,6.6533442,6.4068007,1,0,-9,9,0,-1,81.600677,0,0,0,72,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0310037,6.8363843,0,0,54.200001,57.490002,48.259998,53.439999,6,1,1,0,0,2,2,1,377.5,367075.94,0,0,2627.0166 -16458,20194,36745,36744,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,5.3508315,5.4121394,1,0,-9,9,0,1,125.94931,0,0,0,71,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2064714,5.2004476,0,0,48.259998,53.439999,54.200001,57.490002,6,1,1,0,0,2,2,1,377.5,367075.94,0,0,2627.0166 -16459,20195,36746,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,2,0,6.7409935,6.4330125,3,0,0,0,-9,0,-1074.955,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9955688,0,0,56.16,21.9,-9,-9,6,1,1,0,0,2,2,1,379,99759.789,0,0,1238.0481 -16460,20196,36747,36749,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,0,2,9.7180195,9.7208347,0,2,0,-9,20,0,-1,-61.991669,0,0,0,49,1,5,3,2,3,2019,2,1,25,8,50,50,15,1,1,3,0,42.11335,42.11335,0,0,0,0,0,0,0,0,0,0,0,7.6858025,0,0,0,26.040001,45.27,56.470001,59.400002,5,1,1,0,0,9,5,1,421.66666,756417.31,0,0,49419.277 -16460,20196,36748,-9,36747,36749,4,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1029.3314,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,9,5,1,421.66666,756417.31,0,0,49419.277 -16460,20196,36749,36747,-9,-9,1,1,1,49,1,0,2,0,1,-9,6,3,0,0,5,0,0,0,2,0,-9,20,0,1,-24.954403,0,0,0,48,1,2,1,3,2,2019,3,2,16,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.8489208,0,.064221419,2,56.470001,59.400002,26.040001,45.27,5,1,1,0,0,9,5,1,421.66666,756417.31,0,0,49419.277 -16461,20197,36750,36751,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,0,2,0,7.8543878,7.8197823,1,0,-9,9,0,8,34.467888,0,0,0,61,2,3,3,2,2,2019,4,2,17,5,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9716208,7.6185913,0,0,43.68,40.740002,42.610001,49.310001,6,1,1,0,0,10,3,1,3346,916866.19,0,0,1919.0999 -16461,20197,36751,36750,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,0,3,0,5.4474149,5.4630337,1,0,-9,9,0,-8,110.22584,0,0,0,69,2,2,3,2,2,2019,4,1,21,9,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6586008,5.1666112,0,0,42.610001,49.310001,43.68,40.740002,6,1,1,0,0,10,3,1,3346,916866.19,0,0,1919.0999 -16462,20198,36752,36753,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,0,3,8.066433,7.6690292,0,1,0,-9,6,0,-1,8.877058,0,0,0,55,2,4,1,-9,-9,2019,1,1,19,7,39,39,15,1,1,1,0,7.6752915,7.6752915,0,0,0,0,0,0,0,7,0,0,0,2.1938155,0,4.590765,3,39.459999,56.099998,52.34,56.950001,4,1,1,0,0,8,4,0,560,1393401.3,0,0,3279.9849 -16462,20198,36753,36752,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,0,4,8.2502899,8.0812235,0,1,0,-9,6,0,1,-62.962791,0,0,0,54,2,3,1,3,2,2019,1,2,11,1,46,36,15,1,0,1,0,10.097838,10.097838,0,0,0,0,0,0,0,0,0,0,0,.91991997,0,0,0,52.34,56.950001,39.459999,56.099998,5,1,1,0,0,8,4,0,560,1393401.3,0,0,3279.9849 -16463,20199,36754,36755,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,0,3,8.7374573,8.6297398,0,1,0,-9,33,0,4,115.4615,0,0,0,52,2,3,1,3,3,2019,1,2,7,0,40,50,15,1,0,1,0,23.450151,23.450151,0,0,0,0,0,0,0,0,0,0,0,5.6170287,0,0,0,61.43,43.34,51.650002,39.740002,6,1,1,0,0,6,5,1,1236.5,701915.69,0,0,2669.0225 -16463,20199,36755,36754,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,7.7255406,7.6519475,0,1,0,-9,9,0,-4,73.985809,0,0,0,56,3,3,1,-9,-9,2019,1,1,12,1,36,36,15,1,0,1,0,8.6286879,8.6286879,0,0,0,0,0,0,0,0,0,0,0,2.1030641,0,0,0,51.650002,39.740002,61.43,43.34,6,1,1,0,0,6,5,1,1236.5,701915.69,0,0,2669.0225 -16463,20200,36756,-9,36755,36754,3,1,0,23,2,0,0,0,1,-9,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-935.30188,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,24,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.83167613,0,0,0,47.639999,55.02,-9,-9,5,1,1,0,0,6,1,1,520,0,0,0,458.15652 -16463,20201,36757,-9,36755,36754,4,1,1,20,2,0,0,0,2,-9,1,1,0,0,1,8.3085108,7.9668441,0,3,0,0,0,-9,0,-1188.9861,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,23,8,50,55,15,1,1,-9,1,9.7662573,9.7662573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.490002,40.009998,-9,-9,5,1,1,0,0,6,4,1,134,43671.418,0,0,2485.9866 -16464,20202,36758,36759,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,0,3,0,8.3930473,8.4445391,1,0,-9,61,0,2,-101.17833,0,0,0,79,3,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7471247,8.6020813,0,0,52.990002,51.279999,58.27,24.790001,6,1,1,0,0,11,4,1,328.5,1131819.5,0,0,3291.4004 -16464,20202,36759,36758,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,0,2,0,4.5398769,4.2193727,1,0,-9,61,0,-2,-15.493528,0,0,0,81,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4131794,4.3071318,1.4823904,3,58.27,24.790001,52.990002,51.279999,6,1,1,0,0,11,4,1,328.5,1131819.5,0,0,3291.4004 -16465,20203,36760,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,4,7.0461979,7.9414082,7.7923779,3,0,0,0,-9,0,-1024.9681,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,60,80,15,1,0,-9,0,2.3035417,2.3035417,0,0,0,0,0,0,0,0,0,0,0,6.9341693,7.2530637,0,0,53,52,-9,-9,6,2,3,0,0,10,4,1,668,149966.88,0,0,1937.7308 -16466,20204,36761,36762,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,0,4,9.6016121,9.5345249,0,2,0,-9,7,0,-2,-12.079905,0,0,0,54,1,2,1,-9,-9,2019,1,1,11,2,43,43,15,1,0,1,0,49.713379,49.713379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.200001,57.490002,42.07,34.849998,6,1,1,0,0,6,5,1,916.33331,2235600.5,0,0,6780.3521 -16466,20204,36762,36761,-9,-9,1,1,0,54,1,0,2,0,1,-9,2,1,0,0,2,8.3597126,8.4129391,0,2,0,-9,22,0,2,-58.004929,0,0,0,52,1,4,1,3,3,2019,1,2,23,11,43,43,15,1,1,1,0,14.601997,14.601997,0,0,0,0,0,0,0,0,0,0,0,2.1980519,0,0,0,42.07,34.849998,54.200001,57.490002,4,1,1,0,0,6,5,1,916.33331,2235600.5,0,0,6780.3521 -16466,20204,36763,-9,36762,36761,4,1,1,17,2,0,2,1,2,-9,7,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.97577,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.259998,-9,-9,6,1,1,0,0,6,5,1,916.33331,2235600.5,0,0,6780.3521 -16466,20205,36764,-9,36762,36761,3,1,1,18,2,0,2,1,2,0,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-1061.533,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,6,5,1,1100,62254.156,0,0,0 -16467,20206,36765,36766,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,0,3,8.1334391,8.5173206,0,2,0,-9,9,0,0,-58.464668,0,0,0,47,2,3,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,15.989082,15.989082,0,0,0,0,0,0,0,0,1,1,0,1.4030099,0,0,0,57.330002,53.459999,38.150002,50.189999,6,1,1,0,0,4,4,1,446,595636.25,0,0,3189.1189 -16467,20206,36766,36765,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,8.0481663,8.093421,0,2,0,-9,9,0,0,14.057095,0,0,0,47,2,3,1,3,2,2019,1,1,6,1,35,35,15,1,0,1,0,11.866147,11.866147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.150002,50.189999,57.330002,53.459999,5,1,1,0,0,4,4,1,446,595636.25,0,0,3189.1189 -16467,20206,36767,-9,36766,36765,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.0256,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,4,4,1,446,595636.25,0,0,3189.1189 -16467,20207,36768,-9,36766,36765,3,1,1,18,2,0,1,0,2,-9,11,3,0,0,4,6.9104562,6.9255576,0,3,0,0,0,-9,0,-950.26593,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,4,2,1,802,-37241.188,0,0,-88.3293 -16468,20208,36769,36770,-9,-9,2,1,0,56,1,0,0,0,2,-9,97,3,0,0,4,7.6871171,7.8080349,0,1,0,-9,6,0,-5,-38.378033,0,0,0,61,1,4,1,-9,-9,2019,3,1,1,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.450001,56.220001,62.5,49.560001,7,2,3,0,0,8,3,1,277,1565374.4,0,0,3174.9023 -16468,20208,36770,36769,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,0,4,7.5774627,7.6310143,0,1,0,-9,6,0,5,121.80281,0,0,0,56,2,4,3,-9,-9,2019,2,2,3,0,12,0,15,1,0,3,0,23.235691,23.235691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.5,49.560001,54.450001,56.220001,7,2,3,0,0,8,3,1,277,1565374.4,0,0,3174.9023 -16469,20209,36771,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,4,3,0,0,4,8.487052,9.4403,8.5439796,3,0,-9,0,-9,0,-1062.0536,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,6,3,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.14995793,8.8339758,0,0,57.16,56.150002,-9,-9,6,4,2,0,0,2,5,1,2245,1720381.8,0,0,5496.2236 -16469,20210,36772,-9,-9,-9,2,1,1,61,3,0,0,0,1,-9,1,1,0,0,4,9.5595503,9.619915,7.3630285,3,0,0,0,-9,0,-1074.3541,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,50,50,15,1,0,-9,0,35.356453,35.356453,0,0,0,0,0,0,0,0,0,0,0,7.3428302,6.8392062,0,0,59.709999,50.889999,-9,-9,6,1,1,0,0,2,5,1,260,440528.72,0,0,15106.272 -16470,20211,36773,36774,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,0,5,7.9080386,7.8524923,0,1,0,-9,1,-9,10,99.211639,-9,0,0,26,1,5,1,-9,-9,2019,1,1,6,0,36,0,15,1,0,1,0,7.9593625,7.9593625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,6,4,0,733,142668.91,0,0,3105.1907 -16470,20211,36774,36773,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,0,5,8.2870903,8.1522684,0,1,0,1,1,-9,-10,-88.282608,0,1,1,36,2,5,1,-9,-9,2019,1,2,9,0,40,44,15,1,0,1,0,12.017324,12.017324,0,0,0,0,0,0,0,2,0,0,0,5.1486883,0,11.05916,3,57.060001,57.759998,57.060001,57.759998,6,1,1,0,0,6,4,0,733,142668.91,0,0,3105.1907 -16471,20212,36775,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-963.81543,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,-9,-9,4,1,1,0,1,13,1,0,3402,769936.94,0,0,1000.5625 -16471,20213,36776,-9,36775,-9,2,1,0,33,2,0,0,0,2,-9,2,1,0,0,3,8.1547289,7.7034454,0,3,0,0,0,-9,0,-1032.6533,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,1,40,38,15,1,0,-9,1,8.5095243,8.5095243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,56.27,-9,-9,4,1,1,0,0,13,4,0,243,71609.938,0,0,1918.9192 -16472,20214,36777,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,0,3,8.0147772,8.3695412,0,3,0,0,0,-9,0,-1170.0367,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,54,60,15,1,0,-9,0,8.4302816,8.4302816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.959999,53.169998,-9,-9,5,1,1,0,1,4,4,1,3391,179176.86,0,0,1195.547 -16473,20215,36778,36779,-9,-9,1,1,0,71,1,0,0,0,3,-9,2,1,0,0,3,6.7900305,7.1547914,3.8186145,1,0,-9,52,0,-2,31.478148,0,0,0,73,2,4,1,3,3,2019,1,2,8,0,10,3,15,1,0,1,0,9.8751068,9.8751068,0,0,0,0,0,0,0,0,1,1,0,3.4974747,3.8647718,0,0,58.32,50.220001,52.880001,51.139999,1,1,1,0,0,6,3,1,361.5,433113.44,0,0,1741.7638 -16473,20215,36779,36778,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,0,4,6.5850263,7.5704761,6.3561649,1,0,-9,52,0,2,-68.055283,0,0,0,71,3,3,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,2.8365827,2.8365827,1,0,0,0,0,0,0,0,1,1,0,6.6357193,6.5098839,0,0,52.880001,51.139999,58.32,50.220001,5,1,1,0,0,6,3,1,361.5,433113.44,0,0,1741.7638 -16474,20216,36780,36781,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,0,5,0,4.0512829,4.0805926,1,0,-9,7,0,-7,-31.290401,0,0,0,74,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7447717,3.7554336,0,0,60.02,56.419998,57.919998,51.82,7,1,1,0,0,12,2,1,221.5,837434.44,0,0,1547.531 -16474,20216,36781,36780,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,7.5646977,7.4076047,1,0,-9,7,0,7,71.41851,0,0,0,67,3,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6496863,0,0,57.919998,51.82,60.02,56.419998,7,1,1,0,0,12,2,1,221.5,837434.44,0,0,1547.531 -16475,20217,36782,36783,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,0,3,0,7.0798893,6.8807106,1,0,-9,9,0,2,-46.514946,0,0,0,64,2,1,3,3,2,2019,4,1,14,2,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9014006,6.7131758,0,1,39.369999,58.810001,27.889999,18.610001,4,1,1,0,0,10,2,1,715.5,684474.69,0,0,2256.8979 -16475,20217,36783,36782,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,1,1,0,6.7810426,6.4447665,1,0,-9,9,0,-2,-73.115105,0,0,0,66,1,3,3,2,2,2019,4,2,22,8,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9888232,6.6836381,0,0,27.889999,18.610001,39.369999,58.810001,2,1,1,0,0,10,2,1,715.5,684474.69,0,0,2256.8979 -16476,20218,36784,36785,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,0,4,8.4407463,8.6244602,0,2,0,-9,6,0,-5,137.46199,0,0,0,52,1,4,1,-9,-9,2019,1,1,8,0,36,36,15,1,0,1,0,18.396376,18.396376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.200001,60.119999,54.799999,6,3,4,0,0,8,5,1,261,-80931.797,0,0,5615.834 -16476,20218,36785,36784,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,0,4,9.0885458,8.7147055,0,2,0,-9,18,0,5,-50.820965,0,0,0,47,2,4,1,2,-9,2019,1,2,8,0,48,54,15,1,0,1,0,20.201225,20.201225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.119999,54.799999,60.52,53.200001,5,3,4,0,0,8,5,1,261,-80931.797,0,0,5615.834 -16476,20219,36786,-9,36785,36784,3,1,0,24,2,0,1,0,2,1,2,1,0,0,3,6.8595576,7.12111,0,3,0,0,0,-9,0,-944.56903,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,35,0,15,1,0,-9,1,4.8087878,4.8087878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.119999,61.849998,-9,-9,2,3,4,0,0,8,2,1,289,-119912.89,0,0,80.049904 -16477,20220,36787,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1096.1528,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.41,56.389999,-9,-9,3,1,1,1,0,2,1,0,537,-12273.289,0,0,55.499516 -16478,20221,36788,36789,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,4,4.2793927,7.4770188,7.7525654,1,0,-9,36,0,1,-155.68382,0,0,0,64,1,4,3,3,2,2019,4,2,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7200963,7.8623738,0,3,46.439999,59.619999,51.400002,50.470001,6,1,1,0,0,9,4,1,1678,2265766.5,0,0,2696.272 -16478,20221,36789,36788,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,0,4,0,7.7158999,7.7174702,1,0,-9,37,0,-1,168.92085,0,0,0,65,1,4,3,2,1,2019,4,1,14,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0786459,7.7622423,0,0,51.400002,50.470001,46.439999,59.619999,6,1,1,0,0,9,4,1,1678,2265766.5,0,0,2696.272 -16479,20222,36790,36791,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,1,2,0,7.4800639,7.8107696,1,0,-9,16,0,8,-111.21941,0,0,0,63,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,13.824392,0,0,0,0,0,1,1,0,5.3691406,7.5798841,0,0,56.360001,16.34,62.490002,55.09,5,1,1,0,0,2,3,1,558.5,1533832.3,0,0,4304.8911 -16479,20222,36791,36790,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,0,4,0,7.6640749,7.628912,1,0,-9,16,0,-8,-15.271441,0,0,0,71,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,6.5806265,7.964745,73.685074,1,62.490002,55.09,56.360001,16.34,7,1,1,0,0,2,3,1,558.5,1533832.3,0,0,4304.8911 -16480,20223,36792,36793,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,0,3,8.0433617,8.0426884,0,1,0,-9,8,0,3,-166.21111,0,0,0,44,2,3,1,3,2,2019,1,1,7,0,44,43,15,1,0,1,0,8.5125065,8.5125065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.57,52.889999,53.990002,48.040001,5,1,1,0,0,12,4,1,997.5,247625,0,0,3268.4785 -16480,20223,36793,36792,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,0,3,8.0301523,8.2225094,0,1,0,-9,8,0,-3,-72.543457,0,0,1,47,2,3,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,8.7965603,8.7965603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.990002,48.040001,52.57,52.889999,6,1,1,0,0,12,4,1,997.5,247625,0,0,3268.4785 -16481,20224,36794,-9,-9,36796,3,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-986.86798,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,1,1,0,0,2,2,0,1158.6666,-2408.5317,0,0,1676.1117 -16481,20224,36795,-9,-9,36796,2,1,1,14,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1115.264,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,2,0,1158.6666,-2408.5317,0,0,1676.1117 -16481,20224,36796,-9,-9,-9,1,1,1,49,3,0,2,0,2,-9,8,3,1,1,1,0,5.5116515,5.6548138,4,0,0,0,-9,0,-1002.2766,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.7193909,0,0,0,35.619999,25.98,-9,-9,2,1,1,0,1,2,2,0,1158.6666,-2408.5317,0,0,1676.1117 -16482,20225,36797,36798,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,0,5,9.3408451,9.5840693,0,2,0,-9,18,0,-2,109.99737,0,0,0,50,1,4,1,2,2,2019,1,2,8,1,40,40,15,1,0,1,0,50.680653,50.680653,0,0,0,0,0,0,0,0,0,0,0,.8186847,0,0,0,51.73,58.82,45.91,59.889999,5,1,1,0,0,8,5,1,380.66666,1680951.6,0,0,7933.7168 -16482,20225,36798,36797,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,0,4,9.3033838,9.1597643,0,2,0,-9,18,0,2,3.0327334,0,0,0,48,2,5,1,3,2,2019,1,1,17,5,29,39,15,1,1,1,0,29.808277,29.808277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.889999,51.73,58.82,6,1,1,0,0,8,5,1,380.66666,1680951.6,0,0,7933.7168 -16482,20225,36799,-9,36798,36797,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-942.48077,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,8,5,1,380.66666,1680951.6,0,0,7933.7168 -16483,20226,36800,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,0,1,0,5.6881394,5.5037603,3,0,0,0,-9,0,-1140.6844,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.6161246,0,0,32.330002,21.690001,-9,-9,5,1,1,0,0,12,2,1,3074,203034.11,0,0,601.26831 -16484,20227,36801,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,0,5,0,6.8613629,6.7360086,3,0,0,0,-9,0,-1090.548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.676023,17.400917,3,58.200001,54.529999,-9,-9,7,1,1,0,0,7,2,1,231,187992.64,0,0,1115.1414 -16485,20228,36802,-9,36803,-9,1,1,1,31,3,0,0,0,3,-9,8,3,1,1,4,0,0,0,3,0,0,0,-9,0,-979.89166,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,8,1,0,595,0,0,0,41.144833 -16485,20229,36803,-9,-9,-9,2,1,0,58,2,0,0,0,3,-9,6,3,0,1,3,0,0,0,3,0,0,0,-9,0,-1072.5601,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.721553,3,49,48,-9,-9,5,2,3,0,0,8,1,0,1312,0,0,0,1433.7378 -16486,20230,36804,36805,-9,-9,1,1,0,52,1,0,0,0,2,-9,97,3,0,0,2,0,0,0,1,0,-9,3,0,-14,-14.625754,0,0,0,66,2,2,3,-9,2,2019,4,2,21,9,0,38,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9125156,0,0,0,36.439999,44.52,54.869999,36.200001,2,1,1,0,0,9,2,1,2347,875685.25,0,0,422.20807 -16486,20230,36805,36804,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,0,2,0,6.6308303,6.9367099,1,0,-9,3,0,14,71.544525,0,0,0,52,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3994322,6.8254724,0,0,54.869999,36.200001,36.439999,44.52,6,1,1,0,0,9,2,1,2347,875685.25,0,0,422.20807 -16487,20231,36806,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,5,0,6.5972743,6.8859253,3,0,0,0,-9,0,-975.51202,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8017592,7.0616765,2.7241063,3,60.02,56.419998,-9,-9,7,1,1,0,0,10,2,1,510,601464.56,0,0,1663.5455 -16488,20232,36807,36808,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,0,3,0,6.7059035,6.9133153,1,0,-9,31,0,-3,73.052032,0,0,0,73,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9712017,6.7439923,0,0,45.73,57.57,60.84,47.650002,5,1,1,0,0,10,3,1,999.5,1267149.3,0,0,2812.6328 -16488,20232,36808,36807,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.800334,7.9260464,1,0,-9,10,0,3,79.886887,0,0,0,70,1,3,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.8363587,7.8249831,15.896532,3,60.84,47.650002,45.73,57.57,5,1,1,0,0,10,3,1,999.5,1267149.3,0,0,2812.6328 -16489,20233,36809,36810,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,0,4,8.1720657,8.0342264,0,1,0,-9,7,0,4,17.793854,0,0,0,48,3,3,1,3,2,2019,1,2,6,0,30,30,15,1,0,1,0,12.645082,12.645082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.080002,55.93,51.41,56.150002,5,1,1,0,0,10,4,1,1171.5,20879.262,0,0,2596.7437 -16489,20233,36810,36809,-9,-9,2,1,1,48,1,0,0,0,3,-9,1,1,0,0,3,7.7952113,7.8760471,0,1,0,-9,7,0,-4,28.468622,0,0,0,52,1,4,1,-9,-9,2019,1,1,16,4,50,50,15,1,1,1,0,6.1174693,6.1174693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.150002,52.080002,55.93,4,1,1,0,1,10,4,1,1171.5,20879.262,0,0,2596.7437 -16490,20234,36811,-9,-9,-9,1,1,1,40,2,0,0,0,3,-9,2,1,0,0,3,7.8400021,7.7131405,0,3,0,0,0,-9,0,-960.15936,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,48,45,15,1,0,-9,0,8.2752123,8.2752123,0,0,0,0,0,0,0,0,1,1,0,.30634946,0,0,0,46.48,53.759998,-9,-9,6,3,4,0,0,10,4,0,988,-121443.49,0,0,682.63501 -16491,20235,36812,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,0,3,7.854353,8.1230574,0,3,0,0,0,-9,0,-979.33752,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,23,26,15,1,0,-9,0,11.513852,11.513852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.529999,43.93,-9,-9,5,4,2,0,0,6,3,0,2221,-31164.615,0,0,1914.7732 -16492,20236,36813,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-926.3656,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.639999,-9,-9,1,1,1,0,0,10,1,0,500,171094.89,0,0,2490.5586 -16493,20237,36814,36815,-9,-9,1,1,1,41,1,0,0,0,3,-9,2,1,0,0,4,8.3827477,8.5960016,0,1,0,-9,6,0,-13,71.915794,-9,0,0,54,2,2,1,-9,-9,2019,1,2,9,1,65,0,15,1,0,1,0,9.2867298,9.2867298,0,0,0,0,0,0,0,0,0,0,0,4.4415727,0,0,0,51,56,42.549999,40.150002,6,4,1,0,0,13,4,0,832.5,1373146.5,0,0,2661.1484 -16493,20237,36815,36814,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,0,2,7.0013003,6.9109945,0,1,0,-9,6,0,13,-46.963242,0,0,0,41,3,4,1,3,2,2019,1,1,29,12,17,20,15,1,1,1,0,5.7570357,5.7570357,0,0,0,0,0,0,0,27.5,0,0,0,0,0,26.406109,3,42.549999,40.150002,51,56,3,1,1,0,0,13,4,0,832.5,1373146.5,0,0,2661.1484 -16494,20238,36816,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-928.38885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,19.614508,0,94.190094,0,0,1,1,0,0,0,0,0,63.110001,32,-9,-9,7,1,1,0,0,8,1,0,301,0,0,0,1855.3354 -16495,20239,36817,-9,36818,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1035.5322,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,2,0,618.5,0,0,0,1245.4779 -16495,20239,36818,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,0,2,6.7694507,6.9331746,0,4,0,0,0,-9,0,-993.78241,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,17,18,15,1,0,-9,0,5.5785375,5.5785375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.139999,53.240002,-9,-9,3,1,1,0,0,11,2,0,618.5,0,0,0,1245.4779 -16496,20240,36819,36820,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,5,8.8365841,8.5717545,0,1,0,-9,9,0,-3,-26.728453,0,0,0,59,3,3,1,2,2,2019,1,1,8,0,23,15,15,1,0,1,0,35.257839,35.257839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.049999,54.52,59.459999,46.990002,6,1,1,0,0,10,5,1,414.5,1667030.8,0,0,3472.2371 -16496,20240,36820,36819,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,0,3,8.2692957,8.393424,0,1,0,-9,9,0,3,-73.04493,-9,0,0,56,2,5,1,2,2,2019,1,2,10,2,18,0,15,1,0,1,0,26.129192,26.129192,0,0,0,0,0,0,0,0,0,0,0,7.700388,0,0,0,59.459999,46.990002,58.049999,54.52,2,1,1,0,0,10,5,1,414.5,1667030.8,0,0,3472.2371 -16497,20241,36821,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,2,1,0,0,4,9.0643024,8.7552872,0,3,0,0,0,-9,0,-1016.7379,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,39,39,15,1,0,-9,0,17.088514,17.088514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.259998,61.900002,-9,-9,3,1,1,0,0,12,5,1,441,568051.31,0,0,1771.924 -16498,20242,36822,-9,-9,-9,1,1,0,87,2,0,0,0,1,-9,4,3,0,0,3,0,3.8847029,4.4485116,3,0,0,0,-9,0,-1121.6432,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.8711162,4.4364862,0,0,52,44,-9,-9,6,1,1,0,0,6,2,1,142,373075.06,0,0,1598.644 -16499,20243,36823,36824,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,54,0,5,0,0,0,0,69,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.2849741,0,.51499408,3,59.790001,45.369999,54.200001,57.490002,7,1,1,0,0,7,1,1,316.5,574125.63,0,0,2110.4644 -16499,20243,36824,36823,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,54,0,-5,0,0,0,0,74,3,3,3,3,-9,2019,4,2,7,0,0,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.856297,0,0,3,54.200001,57.490002,59.790001,45.369999,7,1,1,0,0,7,1,1,316.5,574125.63,0,0,2110.4644 -16500,20244,36825,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,0,2,7.1095915,7.3031006,5.5332637,3,0,0,0,-9,0,-896.06995,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,8,17,24,15,1,1,-9,0,6.8484855,6.8484855,0,0,0,0,0,0,0,14.5,0,0,0,0,5.9741931,10.280173,3,48.02,34.889999,-9,-9,6,1,1,0,0,5,3,1,89,135952.06,0,0,1061.4247 -16500,20244,36826,-9,36825,-9,2,1,0,17,2,0,0,0,2,1,2,3,0,0,4,7.1375046,7.0330629,0,3,0,0,0,-9,0,-1044.8751,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,22,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,6.7993832,3,55.27,56.950001,-9,-9,5,1,1,0,0,5,3,1,89,135952.06,0,0,1061.4247 -16501,20245,36827,36828,-9,-9,2,1,1,90,1,0,0,0,2,-9,4,3,0,0,4,0,9.3061867,9.0947371,1,0,-9,40,0,17,34.858887,0,0,0,73,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,15.755582,16.063761,0,0,0,123.29162,0,1,1,0,6.2029428,9.4885635,0,0,40.529999,44.790001,58.470001,44.689999,6,1,1,0,0,7,5,1,563.5,9305715,0,0,7561.1021 -16501,20245,36828,36827,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,41,0,-17,46.806084,0,0,0,90,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,4.2300615,0,14.238269,1,58.470001,44.689999,40.529999,44.790001,6,1,1,0,0,7,5,1,563.5,9305715,0,0,7561.1021 -16502,20246,36829,36830,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,0,3,0,9.0873299,9.265583,1,0,-9,7,0,5,36.021503,0,0,0,75,2,2,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.1743155,8.2802372,0,0,55.529999,51.549999,50.349998,32.259998,6,1,1,0,0,7,5,1,681.5,1764226.8,0,0,6615.9014 -16502,20246,36830,36829,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,2,0,0,0,1,0,-9,7,0,-5,-6.8704076,0,0,0,80,1,3,3,3,1,2019,4,1,15,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1976066,0,0,0,50.349998,32.259998,55.529999,51.549999,2,1,1,0,0,7,5,1,681.5,1764226.8,0,0,6615.9014 -16503,20247,36831,36832,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,0,4,8.7935696,8.8645449,0,1,0,-9,13,0,-5,5.3350935,0,0,1,40,2,3,1,2,3,2019,1,1,10,0,41,38,15,1,0,1,0,17.280367,17.280367,0,0,0,0,0,0,0,0,0,0,0,.88548321,0,0,0,49.349998,59.639999,55.330002,42.18,6,1,1,0,0,10,5,1,804.5,1972608.1,0,0,3905.2163 -16503,20247,36832,36831,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,0,3,8.3399239,8.6695986,0,1,0,-9,13,0,5,15.128202,0,0,0,35,1,4,1,2,3,2019,1,2,8,1,41,38,15,1,0,1,0,13.121031,13.121031,0,0,0,0,0,0,0,0,0,0,0,1.3488458,0,0,0,55.330002,42.18,49.349998,59.639999,5,1,1,0,0,10,5,1,804.5,1972608.1,0,0,3905.2163 -16504,20248,36833,36834,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,3,7.7615433,7.916749,0,1,0,-9,11,0,0,-39.987278,0,0,0,56,2,2,3,3,3,2019,2,1,15,3,35,35,15,1,0,3,0,9.2671156,9.2671156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.849998,56.07,47.689999,35.389999,3,1,1,0,0,12,3,0,140,584797.5,0,0,1836.6335 -16504,20248,36834,36833,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,1,2,0,0,0,1,0,-9,11,0,0,80.470261,0,0,0,56,2,3,1,3,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.689999,35.389999,42.849998,56.07,6,1,1,0,0,12,3,0,140,584797.5,0,0,1836.6335 -16505,20249,36835,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,0,2,0,6.2283983,6.2902088,3,0,0,0,-9,0,-1075.8181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,0,-9,0,0,0,1,0,0,1.6518724,0,0,0,0,1,1,0,2.6248989,6.3817739,0,0,56.849998,21.17,-9,-9,5,1,1,0,0,6,2,1,139,191874.53,0,0,663.59766 -16506,20250,36836,-9,-9,-9,2,1,1,21,2,0,2,0,1,-9,2,1,0,0,2,7.3066559,7.4414487,0,3,0,0,0,-9,0,-1138.5726,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,38,37,15,1,0,-9,1,4.3449216,4.3449216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.830002,49.110001,-9,-9,4,1,1,0,0,2,3,1,399,789.45013,0,0,594.30109 -16507,20251,36837,36838,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,0,3,0,7.315258,7.1890249,1,0,-9,53,0,0,97.265518,0,0,0,76,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9163363,7.045939,0,0,53,46,51,46,6,1,1,0,0,13,3,1,624,616667.5,0,0,2048.3896 -16507,20251,36838,36837,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,0,3,0,7.0179682,6.8566799,1,0,-9,53,0,0,66.617035,0,0,0,76,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9862089,6.9525957,0,0,51,46,53,46,6,1,1,0,0,13,3,1,624,616667.5,0,0,2048.3896 -16508,20252,36839,-9,36841,36842,3,1,1,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1003.9186,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,8,3,1,431.20001,610183.75,0,0,2498.7803 -16508,20252,36840,-9,36841,36842,5,1,1,5,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1005.8231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,8,3,1,431.20001,610183.75,0,0,2498.7803 -16508,20252,36841,36842,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,0,4,8.0641708,7.9775624,0,2,0,-9,17,0,-10,127.29924,0,0,1,48,2,4,1,3,3,2019,1,1,11,1,30,30,15,1,0,1,0,15.456844,15.456844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.759998,45.560001,60.099998,54.82,6,2,3,0,0,8,3,1,431.20001,610183.75,0,0,2498.7803 -16508,20252,36842,36841,-9,-9,1,1,1,48,1,0,3,0,2,-9,2,1,0,0,4,7.5686269,7.2948556,0,2,0,-9,17,0,10,93.316612,0,0,0,38,2,4,1,3,3,2019,1,2,8,0,21,21,15,1,0,1,0,9.4357834,9.4357834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.099998,54.82,53.759998,45.560001,6,2,3,0,0,8,3,1,431.20001,610183.75,0,0,2498.7803 -16508,20252,36843,-9,36841,36842,4,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1084.0789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,8,3,1,431.20001,610183.75,0,0,2498.7803 -16509,20253,36844,-9,-9,-9,1,1,1,22,2,0,0,1,1,0,7,2,0,0,4,0,7.717155,7.4591498,3,0,0,0,-9,0,-866.65271,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3627777,0,0,0,52.080002,55.93,-9,-9,6,1,1,0,0,9,3,0,1166,-90904.258,0,0,510.05139 -16510,20254,36845,36846,-9,-9,2,1,0,53,1,0,0,0,1,-9,1,1,0,0,4,7.0484948,7.1700945,0,1,0,-9,24,0,0,-66.467171,0,0,0,62,2,3,3,2,2,2019,2,1,8,0,10,10,15,1,0,3,0,14.682604,14.682604,0,0,0,0,0,0,0,0,0,0,0,6.1992769,0,0,0,54.200001,57.490002,45.040001,53.77,6,1,1,0,0,2,2,1,213,1051881.6,0,0,651.91034 -16510,20254,36846,36845,-9,-9,1,1,1,62,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,24,0,9,-83.734673,0,0,0,53,1,4,1,3,3,2019,3,2,14,3,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.040001,53.77,54.200001,57.490002,5,1,1,1,0,2,2,1,213,1051881.6,0,0,651.91034 -16511,20255,36847,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,8,3,1,1,2,0,0,0,3,0,0,0,-9,0,-1133.9773,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.959999,53.049999,-9,-9,5,1,1,0,0,13,1,0,468,102787.63,0,0,768.64301 -16512,20256,36848,-9,-9,-9,1,1,0,27,3,0,0,0,2,-9,1,1,0,0,3,8.0493879,7.8179388,0,3,0,0,0,-9,0,-1115.9211,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,44,50,15,1,1,-9,0,7.8729339,7.8729339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.799999,57.029999,-9,-9,6,1,1,0,0,10,4,0,586,-204042,0,0,1288.6005 -16513,20257,36849,36850,-9,-9,2,1,0,81,1,0,0,0,1,-9,4,3,0,0,2,0,6.9086227,6.8977728,1,0,-9,55,0,-5,55.363472,0,0,0,86,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0705156,0,0,50.110001,27.059999,55.360001,30.309999,4,2,3,0,0,8,2,1,2547.5,763351.5,0,0,1079.0222 -16513,20257,36850,36849,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,1,2,0,0,0,1,0,-9,55,0,5,-17.606136,0,0,0,81,1,2,3,3,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,3.8345735,0,0,0,0,2,1,1,0,0,0,13.473825,1,55.360001,30.309999,50.110001,27.059999,5,2,3,0,0,8,2,1,2547.5,763351.5,0,0,1079.0222 -16514,20258,36851,-9,36852,36853,3,1,0,5,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1048.7362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,4,1,400.66666,216487.08,0,0,3822.9717 -16514,20258,36852,36853,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,0,3,8.5744381,8.5700855,0,2,0,-9,13,0,-1,165.03922,0,0,1,37,1,4,1,3,2,2019,1,2,12,1,25,25,15,1,0,1,0,23.919529,23.919529,0,0,0,0,0,0,0,0,1,1,0,3.6839919,0,0,0,41.279999,57.990002,51,57,3,1,1,0,0,7,4,1,400.66666,216487.08,0,0,3822.9717 -16514,20258,36853,36852,-9,-9,2,1,1,37,1,0,1,0,1,-9,2,1,0,0,4,8.1051855,7.5980124,0,2,0,-9,13,0,1,65.961441,0,0,0,36,1,3,1,2,2,2019,1,1,10,1,60,70,15,1,0,1,0,4.8866754,4.8866754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,41.279999,57.990002,5,1,1,0,0,7,4,1,400.66666,216487.08,0,0,3822.9717 -16515,20259,36854,36855,-9,-9,1,1,0,40,1,0,0,0,3,-9,2,1,0,0,3,0,5.4900851,5.2314768,1,0,-9,4,0,5,15.155329,0,0,1,35,1,2,1,2,2,2019,1,3,11,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3886843,0,0,37.610001,56.990002,55.349998,43.869999,5,1,1,0,0,2,4,1,234,128921.67,0,0,1805.1404 -16515,20259,36855,36854,-9,-9,3,1,1,35,1,0,0,0,1,-9,2,1,0,0,2,8.449913,8.4023647,0,1,0,-9,4,0,-5,-35.987614,0,0,0,40,3,3,1,-9,-9,2019,1,1,11,0,35,35,15,1,0,1,0,14.455785,14.455785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.349998,43.869999,37.610001,56.990002,6,1,1,0,0,2,4,1,234,128921.67,0,0,1805.1404 -16515,20260,36856,-9,36854,36855,2,1,1,18,2,0,0,0,2,-9,2,1,0,0,2,6.6989994,6.6183009,0,3,0,0,0,-9,0,-1006.7262,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,16,0,15,1,0,-9,1,4.8207159,4.8207159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.740002,44.139999,-9,-9,6,1,1,0,0,2,2,1,481,-76874.141,0,0,1258.0598 -16516,20261,36857,36858,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,4,0,7.4785819,7.1161981,1,0,-9,46,0,1,-41.553158,0,0,0,72,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5076284,0,0,54.790001,55.860001,54.369999,44.27,7,1,1,0,0,6,2,1,1509.5,696537.88,0,0,2498.9963 -16516,20261,36858,36857,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,46,0,-1,-32.487148,0,0,0,73,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4319773,0,0,0,54.369999,44.27,54.790001,55.860001,6,1,1,0,0,6,2,1,1509.5,696537.88,0,0,2498.9963 -16517,20262,36859,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,0,1,0,6.2511353,6.2763243,3,0,0,0,-9,0,-959.56183,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0012808,0,0,53.48,31.049999,-9,-9,3,1,1,0,0,7,2,0,2663,134350,0,0,-27.342951 -16518,20263,36860,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,0,2,0,4.7466989,4.6270051,3,0,0,0,-9,0,-978.58258,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,8,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3646722,4.6427088,0,0,46.130001,40.240002,-9,-9,3,1,1,0,0,9,2,1,1239,725887.81,0,0,710.93152 -16519,20264,36861,36862,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,2,0,7.2779727,7.5132647,1,0,-9,60,0,1,24.16371,0,0,0,81,3,2,3,3,3,2019,4,2,15,3,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,4.9141884,7.1604624,2.4744155,3,60.91,30.83,58.470001,34.16,6,1,1,0,0,5,2,1,1139.5,217349.5,0,0,1898.7014 -16519,20264,36862,36861,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,2,0,4.7241783,4.503335,1,0,-9,60,0,-1,-141.44008,0,0,0,82,2,2,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6162148,4.5624371,3.3240144,3,58.470001,34.16,60.91,30.83,7,1,1,0,0,5,2,1,1139.5,217349.5,0,0,1898.7014 -16519,20265,36863,-9,-9,-9,3,1,1,77,2,0,0,0,3,-9,4,3,0,0,3,0,6.3726282,6.2104592,3,0,0,0,-9,0,-877.77594,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.2602549,6.2424121,0,0,53,46,-9,-9,5,1,1,0,0,5,2,1,1600,192421.72,0,0,273.08844 -16520,20266,36864,36866,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,0,3,7.6740451,7.6390672,0,2,0,-9,16,0,0,28.547775,0,0,0,40,1,3,1,1,1,2019,1,1,20,9,22,22,15,1,1,1,0,12.99923,12.99923,0,0,0,0,0,0,0,0,1,1,0,3.2411594,0,0,0,36.84,58.98,42.290001,58.810001,5,1,1,0,0,1,5,1,798.25,901435.88,0,0,4294.7749 -16520,20266,36865,-9,36866,36864,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-982.97974,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,1,5,1,798.25,901435.88,0,0,4294.7749 -16520,20266,36866,36864,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,0,3,9.0876427,9.3469477,0,2,0,-9,16,0,0,-51.877472,0,0,1,40,1,3,1,2,2,2019,1,2,11,3,32,30,15,1,0,1,0,34.117229,34.117229,0,0,0,0,0,0,0,0,1,1,0,4.4414592,0,0,0,42.290001,58.810001,36.84,58.98,6,1,1,0,0,1,5,1,798.25,901435.88,0,0,4294.7749 -16520,20266,36867,-9,36866,36864,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1058.7389,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,1,5,1,798.25,901435.88,0,0,4294.7749 -16521,20267,36868,36869,-9,-9,2,1,1,62,1,0,0,0,3,-9,1,1,0,0,4,9.6015148,9.5211773,0,1,0,-9,6,0,-4,60.073898,0,0,0,66,3,2,3,3,3,2019,2,1,8,0,55,50,15,1,0,4,0,40.290558,40.290558,0,0,0,0,0,0,0,0,1,1,0,8.0094433,0,0,0,55,52,46,36,6,1,1,0,0,7,5,1,809,428747.03,0,0,10847.992 -16521,20267,36869,36868,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,0,2,0,7.0201693,7.2274666,1,0,-9,39,0,4,-92.000069,0,0,0,62,3,4,1,3,3,2019,3,2,22,8,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.5809917,7.2355838,20.488956,3,46,36,55,52,4,1,1,0,0,7,5,1,809,428747.03,0,0,10847.992 -16522,20268,36870,-9,-9,-9,4,1,0,35,2,0,2,0,2,-9,8,3,1,1,1,0,0,0,4,0,-9,0,-9,0,-998.53589,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,8,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.67,34.98,-9,-9,1,1,1,0,1,11,1,0,2186,-149306.14,0,0,-35.265453 -16523,20269,36871,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,0,2,7.4734893,7.4458399,0,4,0,0,0,-9,0,-1057.5035,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,17,4,28,0,15,1,1,-9,0,5.9564986,5.9564986,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.5,51.380001,-9,-9,4,1,1,0,0,11,2,0,554.5,3571.3926,0,0,1083.4717 -16523,20269,36872,-9,36871,-9,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-989.70056,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,0,554.5,3571.3926,0,0,1083.4717 -16523,20270,36873,-9,36871,-9,2,1,1,20,2,0,1,1,2,0,7,2,0,0,3,0,0,0,3,0,0,0,-9,0,-1126.2656,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.889999,46.150002,-9,-9,6,1,1,0,0,11,1,0,719,104574.4,0,0,-112.39212 -16523,20271,36874,-9,36871,-9,3,1,0,18,2,0,1,0,2,1,2,1,0,0,3,8.1156263,8.4082117,4.4164076,3,0,0,0,-9,0,-913.21198,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,25,0,15,1,1,-9,1,18.128893,18.128893,0,0,0,0,0,0,0,0,1,0,1,4.6197262,0,0,0,43.689999,56.93,-9,-9,5,1,1,0,0,11,4,0,320,155854.05,0,0,721.50397 -16524,20272,36875,36876,-9,-9,1,1,1,60,1,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,8,0,5,0,0,0,0,55,2,2,3,-9,-9,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.290001,52.110001,65.959999,18.379999,7,1,1,1,0,9,1,0,345,705297,0,0,0 -16524,20272,36876,36875,-9,-9,2,1,0,55,1,0,0,0,2,-9,6,3,0,0,2,0,0,0,1,0,-9,14,0,-5,0,0,0,0,60,2,3,3,3,3,2019,4,1,11,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.959999,18.379999,60.290001,52.110001,5,4,2,0,0,9,1,0,345,705297,0,0,0 -16525,20273,36877,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-949.4975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.09,10.26,-9,-9,3,1,1,0,0,1,1,0,2661,240566.2,0,0,2144.8704 -16526,20274,36878,-9,-9,-9,2,1,1,54,2,0,0,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-989.07837,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,1,1,13,1,1,1696,37769.5,0,0,279.47321 -16527,20275,36879,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,0,4,7.5608869,7.4590335,0,3,0,0,0,-9,0,-922.92468,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,44,45,15,1,0,-9,0,4.5979609,4.5979609,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.029999,51.75,-9,-9,6,1,1,0,0,10,3,1,189,566319.69,0,0,163.71716 -16528,20276,36880,36881,-9,-9,1,1,1,61,1,0,0,0,3,-9,6,3,0,0,1,0,0,0,1,0,-9,30,0,6,-19.778238,0,0,0,55,3,3,1,3,-9,2019,3,2,19,7,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.68,33.709999,36.27,60.599998,4,1,1,0,0,11,2,1,305,556190.75,0,0,652.68115 -16528,20276,36881,36880,-9,-9,2,1,0,55,1,0,0,0,3,-9,1,1,0,0,3,6.8356447,6.8864527,0,1,0,-9,30,0,-6,9.9220181,0,0,0,61,3,1,3,3,3,2019,2,1,12,0,30,30,15,1,0,3,0,3.9398246,3.9398246,0,0,0,0,0,0,0,14.5,1,1,0,0,0,.54869223,3,36.27,60.599998,44.68,33.709999,4,1,1,0,0,11,2,1,305,556190.75,0,0,652.68115 -16529,20277,36882,36885,-9,-9,3,1,1,34,1,1,2,0,1,-9,2,1,0,0,4,8.7023535,9.3124905,0,2,0,-9,6,0,-4,26.985544,0,0,0,38,1,5,1,-9,-9,2019,1,1,11,0,50,48,15,1,0,1,0,18.894108,18.894108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.240002,58.84,51.669998,60.18,6,1,1,0,0,5,5,1,647,163628.56,0,0,4851.4946 -16529,20277,36883,-9,36885,36882,4,1,1,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1038.8246,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,5,5,1,647,163628.56,0,0,4851.4946 -16529,20277,36884,-9,36885,36882,2,1,1,9,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.78644,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,5,5,1,647,163628.56,0,0,4851.4946 -16529,20277,36885,36882,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,0,5,8.5017843,8.6764736,5.3275428,2,0,-9,6,0,4,28.517307,0,0,1,34,1,4,1,2,2,2019,1,3,14,2,31,31,15,1,0,1,0,18.496231,18.496231,0,0,0,0,0,0,0,0,1,1,0,5.179141,0,0,0,51.669998,60.18,51.240002,58.84,6,1,1,0,0,5,5,1,647,163628.56,0,0,4851.4946 -16530,20278,36886,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,3,3,0,0,3,0,0,0,1,0,-9,9,0,-6,86.073051,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,15,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9941137,0,0,0,18.440001,63.330002,58.150002,52.91,4,1,1,1,0,7,4,1,137,-58532.426,0,0,-60.32259 -16530,20279,36887,-9,-9,-9,2,1,0,52,2,0,0,0,3,-9,2,1,0,0,4,8.6893826,8.2266779,0,1,0,-9,9,0,6,112.79776,0,0,0,-9,-9,-9,-9,3,2,2019,2,1,10,0,40,40,15,1,0,-9,0,13.73253,13.73253,0,0,0,0,0,0,0,2,0,0,0,3.5866907,0,0,1,58.150002,52.91,18.440001,63.330002,6,1,1,0,0,7,4,1,577,1556386.1,0,0,1533.953 -16531,20280,36888,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,0,2,8.0114584,7.7624774,0,3,0,0,0,-9,0,-971.99835,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,32,31,15,1,1,-9,0,11.158355,11.158355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.549999,35.52,-9,-9,3,4,2,0,1,2,3,0,958,68227.336,0,0,295.74307 -16532,20281,36889,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,0,4,0,8.1147137,8.0955505,3,0,0,0,-9,0,-862.04004,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1296577,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,13,4,1,293,913716.19,0,0,2634.8423 -16533,20282,36890,-9,-9,-9,2,1,1,49,2,0,0,0,2,-9,3,3,0,1,1,0,0,0,3,0,0,0,-9,0,-945.09888,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,25,10,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.2870717,3,23.98,27.24,-9,-9,1,1,1,1,1,2,1,1,357,-287285.69,0,0,824.06122 -16534,20283,36891,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,2,1,0,1,2,5.9952846,6.1417937,0,3,0,0,0,-9,0,-885.48077,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,25,32,15,1,0,-9,0,2.0127134,2.0127134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.52,34.419998,-9,-9,5,1,1,0,0,4,2,0,1002,-36733.676,0,0,-69.584419 -16535,20284,36892,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,0,4,8.0452461,7.9883471,0,3,0,0,0,-9,0,-979.2951,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,30,40,15,1,0,-9,0,12.57487,12.57487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.93,61.220001,-9,-9,4,2,3,0,0,8,4,0,325,42551.73,0,0,2242.9783 -16536,20285,36893,36894,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,0,3,7.988831,8.3289509,0,1,0,-9,30,0,-6,3.919337,0,0,0,61,2,3,3,3,-9,2019,2,1,9,0,36,36,15,1,0,4,0,11.69931,11.69931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.130001,59.369999,56.73,39.959999,6,1,1,0,0,5,4,1,658.5,1200737.5,0,0,1836.7136 -16536,20285,36894,36893,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,0,3,0,7.2450943,7.2688994,1,0,-9,30,0,6,-11.544313,0,0,0,55,2,3,1,1,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3090663,7.4556317,0,0,56.73,39.959999,44.130001,59.369999,6,1,1,0,0,5,4,1,658.5,1200737.5,0,0,1836.7136 -16537,20286,36895,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,2,7.4378667,7.7598252,5.4326439,3,0,0,0,-9,0,-1089.5548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,30,15,1,0,-9,0,7.5930972,7.5930972,0,0,0,0,0,0,0,0,0,0,0,0,5.213634,0,0,39.990002,30.49,-9,-9,4,1,1,0,0,2,3,0,124,163775.86,0,0,630.11469 -16538,20287,36896,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,0,2,0,9.3758173,9.1390476,3,0,0,0,-9,0,-966.87,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,1,-9,0,0,0,1,4.4923201,0,0,0,0,5.4662361,0,1,1,0,7.2424703,9.1106062,0,0,45.360001,38.02,-9,-9,5,1,1,0,0,9,5,1,385,780367.25,0,0,5532.1528 -16539,20288,36897,-9,36900,36901,3,1,0,15,2,0,3,1,3,-9,-9,2,0,0,1,0,0,0,2,0,0,0,-9,0,-997.08728,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,31,-9,-9,3,1,1,0,0,2,2,0,1344.6,-13970.412,0,0,2374.3687 -16539,20288,36898,-9,36900,36901,4,1,1,14,2,0,3,1,3,-9,-9,2,0,0,2,0,0,0,2,0,0,0,-9,0,-1033.646,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,2,3,0,0,2,2,0,1344.6,-13970.412,0,0,2374.3687 -16539,20288,36899,-9,36900,36901,5,1,1,11,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-909.0614,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,2,2,0,1344.6,-13970.412,0,0,2374.3687 -16539,20288,36900,36901,-9,-9,2,1,0,31,1,0,3,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,17,0,-6,-208.47855,0,0,1,37,2,4,1,3,2,2019,3,1,14,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.700001,48.029999,51,56,3,2,3,0,1,2,2,0,1344.6,-13970.412,0,0,2374.3687 -16539,20288,36901,36900,-9,-9,1,1,1,37,1,0,3,0,2,-9,1,1,0,0,4,6.8956418,7.0280118,0,2,0,-9,6,0,6,-33.66861,0,0,0,31,2,3,3,-9,-9,2019,2,2,10,1,40,20,15,1,0,3,0,2.5711026,2.5711026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47.700001,48.029999,5,2,3,0,0,2,2,0,1344.6,-13970.412,0,0,2374.3687 -16540,20289,36902,-9,36905,36906,5,1,1,5,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1010.2668,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,7,3,0,875,270364.09,0,0,3816.9841 -16540,20289,36903,-9,36905,36906,6,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-914.92438,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,7,3,0,875,270364.09,0,0,3816.9841 -16540,20289,36904,-9,36905,36906,4,1,0,7,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.14758,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,7,3,0,875,270364.09,0,0,3816.9841 -16540,20289,36905,36906,-9,-9,2,1,0,31,1,0,4,0,2,-9,2,1,0,0,3,7.721993,7.4885044,0,2,0,-9,10,0,-1,1.4004561,0,0,1,32,2,3,1,2,3,2019,1,1,15,3,25,25,15,1,0,1,0,10.889516,10.889516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.080002,57.200001,43.189999,44.860001,6,1,1,0,0,7,3,0,875,270364.09,0,0,3816.9841 -16540,20289,36906,36905,-9,-9,1,1,1,32,1,0,4,0,2,-9,2,1,0,0,3,8.2168379,8.013073,0,2,0,-9,10,0,1,-2.3114741,0,0,0,31,2,3,1,3,-9,2019,1,2,24,10,0,55,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.189999,44.860001,46.080002,57.200001,6,1,1,0,0,7,3,0,875,270364.09,0,0,3816.9841 -16541,20290,36907,-9,36908,36910,3,1,0,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.2114,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,5,1,853,283152.13,0,0,4835.0161 -16541,20290,36908,36910,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,0,3,7.3935595,7.3342609,0,2,0,-9,8,0,-1,-102.14664,0,0,1,43,2,4,1,-9,-9,2019,1,1,12,0,20,20,15,1,0,1,0,8.5757332,8.5757332,0,0,0,0,0,0,0,0,1,1,0,5.9434695,0,0,0,49.630001,54.220001,36.200001,64.190002,4,1,1,0,0,7,5,1,853,283152.13,0,0,4835.0161 -16541,20290,36909,-9,36908,36910,4,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1052.7858,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,7,5,1,853,283152.13,0,0,4835.0161 -16541,20290,36910,36908,-9,-9,1,1,1,43,1,0,2,0,2,-9,1,1,0,0,4,8.8929729,9.052947,0,2,0,-9,8,0,1,71.199348,0,0,0,42,2,3,1,2,3,2019,1,2,12,0,40,50,15,1,0,1,0,20.732183,20.732183,0,0,0,0,0,0,0,0,1,1,0,6.3607936,0,0,0,36.200001,64.190002,49.630001,54.220001,4,1,1,0,0,7,5,1,853,283152.13,0,0,4835.0161 -16542,20291,36911,-9,36914,36912,4,1,0,13,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.40527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,12,5,1,1360.75,410674.13,0,0,4022.2124 -16542,20291,36912,36914,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,0,5,8.4881926,8.8954821,8.007843,2,0,-9,17,0,3,-61.99184,0,0,0,49,2,4,1,3,3,2019,1,1,7,0,41,38,15,1,0,1,0,13.505985,13.505985,0,0,0,0,0,0,0,0,1,1,0,3.347584,8.4309969,0,0,57.060001,57.759998,55.189999,54.259998,6,1,1,0,0,12,5,1,1360.75,410674.13,0,0,4022.2124 -16542,20291,36913,-9,36914,36912,3,1,1,16,2,0,2,1,2,-9,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1044.1558,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.689999,57.470001,-9,-9,7,1,1,0,0,12,5,1,1360.75,410674.13,0,0,4022.2124 -16542,20291,36914,36912,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,0,4,7.2633376,8.007453,7.1397591,2,0,-9,17,0,-3,-123.78376,0,0,0,52,2,5,1,2,2,2019,1,2,12,0,22,26,15,1,0,1,0,10.636015,10.636015,0,0,0,0,0,0,0,0,1,1,0,0,7.1972041,0,0,55.189999,54.259998,57.060001,57.759998,7,1,1,0,0,12,5,1,1360.75,410674.13,0,0,4022.2124 -16543,20292,36915,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,0,2,9.0368872,9.1962767,0,3,0,-9,0,0,0,-1003.5665,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,47,44,15,1,0,-9,0,21.991117,21.991117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.049999,44.25,-9,-9,3,1,1,0,0,2,5,0,5255,-103212.02,0,0,2993.792 -16544,20293,36916,-9,36918,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-977.86938,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,3,1,849.66669,29195.291,0,0,2577.688 -16544,20293,36917,-9,36918,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-912.50348,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,4,3,1,849.66669,29195.291,0,0,2577.688 -16544,20293,36918,-9,-9,-9,1,1,0,43,2,0,2,0,1,-9,2,1,0,1,4,8.4357777,8.4334059,0,4,0,-9,0,0,0,-1090.5099,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,27,0,15,1,0,-9,0,16.285025,16.285025,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.131172,3,41.450001,58.599998,-9,-9,6,1,1,0,0,4,3,1,849.66669,29195.291,0,0,2577.688 -16545,20294,36919,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,0,3,7.4342566,7.08567,0,3,0,0,0,-9,0,-1012.8477,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,25,25,15,1,0,-9,0,7.3165393,7.3165393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,52.669998,-9,-9,5,1,1,0,0,2,3,0,234,-39394.078,0,0,875.74323 -16546,20295,36920,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1006.913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.700001,34.630001,-9,-9,6,1,1,0,0,11,1,1,2658,-60319.461,0,0,977.65997 -16547,20296,36921,-9,36923,36925,4,1,0,12,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1047.0988,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,13,4,1,655.79999,424194.16,0,0,3456.4849 -16547,20296,36922,-9,36923,36925,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-972.59711,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,13,4,1,655.79999,424194.16,0,0,3456.4849 -16547,20296,36923,36925,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,0,3,8.5571461,8.2707243,0,2,0,-9,9,0,-1,58.927132,0,0,0,49,2,3,1,2,2,2019,1,1,14,2,36,36,15,1,0,1,0,15.682509,15.682509,0,0,0,0,0,0,0,0,1,1,0,6.8477831,0,0,0,46.509998,40.889999,57.330002,53.459999,5,1,1,0,0,13,4,1,655.79999,424194.16,0,0,3456.4849 -16547,20296,36924,-9,36923,36925,3,1,1,15,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1095.3153,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,13,4,1,655.79999,424194.16,0,0,3456.4849 -16547,20296,36925,36923,-9,-9,1,1,1,49,1,0,3,0,2,-9,2,1,0,0,3,7.930202,8.542799,0,2,0,-9,9,0,1,-33.355003,0,0,0,48,1,3,1,2,3,2019,1,2,7,0,40,40,15,1,0,1,0,9.2592793,9.2592793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.330002,53.459999,46.509998,40.889999,6,1,1,0,0,13,4,1,655.79999,424194.16,0,0,3456.4849 -16548,20297,36926,36927,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,4,7.891449,8.0660181,0,1,0,-9,30,0,-6,53.66608,0,0,0,59,2,3,1,-9,-9,2019,1,2,16,5,36,66,15,1,1,1,0,11.72323,11.72323,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.849998,61.259998,59.220001,31.99,6,1,1,0,0,7,5,1,1206.5,618651.25,0,0,3203.3604 -16548,20297,36927,36926,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,8.0722237,8.381299,5.4730811,1,0,-9,30,0,6,13.755986,0,0,0,53,2,4,1,-9,-9,2019,1,1,10,0,55,35,15,1,0,1,0,8.086133,8.086133,0,0,0,0,0,0,0,0,1,0,1,5.77209,5.7955947,0,0,59.220001,31.99,45.849998,61.259998,4,1,1,0,0,7,5,1,1206.5,618651.25,0,0,3203.3604 -16548,20298,36928,-9,36926,36927,5,1,1,20,2,0,0,0,2,-9,2,1,0,0,4,7.8870602,7.9742422,0,3,0,0,0,-9,0,-934.4295,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,40,15,1,0,-9,1,10.230026,10.230026,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.07,48.48,-9,-9,4,1,1,0,0,7,4,1,873,99766.109,0,0,2109.3408 -16548,20299,36929,36930,-9,-9,6,1,1,31,1,0,0,0,2,-9,2,1,0,0,5,7.8157105,7.7511029,0,1,0,-9,1,-9,3,-58.551666,-9,0,0,28,2,2,1,-9,-9,2019,1,3,7,1,41,0,15,1,0,1,0,5.7693281,5.7693281,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.810001,61.509998,38.619999,54.200001,6,1,1,0,0,7,4,1,737,155590.27,0,0,3326.1255 -16548,20299,36930,36929,36926,36927,3,1,0,28,1,0,0,0,2,-9,5,1,0,0,2,8.3640575,8.4602823,0,1,0,1,1,-9,-3,-21.971453,0,1,1,31,2,5,1,2,2,2019,1,6,18,5,37,38,15,1,1,1,0,13.096075,13.096075,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.619999,54.200001,45.810001,61.509998,5,1,1,0,0,7,4,1,737,155590.27,0,0,3326.1255 -16549,20300,36931,36932,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,0,4,0,0,0,1,0,-9,59,0,-2,0,0,0,0,78,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5031969,0,0,0,54.200001,57.490002,58.32,50.220001,7,1,1,0,0,2,1,1,512,212539.22,0,0,1159.408 -16549,20300,36932,36931,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,59,0,2,0,0,0,0,76,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.8262496,0,0,0,58.32,50.220001,54.200001,57.490002,6,1,1,0,0,2,1,1,512,212539.22,0,0,1159.408 -16550,20301,36933,-9,-9,-9,1,1,0,75,3,1,1,0,2,-9,4,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1012.2889,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.8032,3,34.060001,38.709999,-9,-9,5,4,2,0,0,8,1,0,283,0,0,0,891.07623 -16550,20302,36934,-9,36933,-9,2,1,0,45,2,1,1,0,3,-9,6,3,0,1,2,0,0,0,3,0,-9,0,0,0,-1004.8282,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.169998,41.599998,-9,-9,6,3,4,0,0,8,1,0,887,189727.48,0,0,102.38863 -16550,20303,36935,-9,36936,36937,6,1,1,0,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,-9,0,-9,0,-982.19757,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,8,1,0,1188.5,52101.281,0,0,702.70398 -16550,20303,36936,-9,36934,-9,3,1,0,26,2,1,1,0,2,-9,3,3,0,0,4,0,0,0,3,0,0,0,-9,0,-946.09045,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,4,2,1,0,8,1,0,1188.5,52101.281,0,0,702.70398 -16550,20304,36937,-9,36934,-9,4,1,1,22,2,1,1,0,2,-9,2,1,0,0,2,6.8834167,6.9787483,0,3,0,0,0,-9,0,-973.9538,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,16,0,15,1,0,-9,1,7.3193169,7.3193169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,47.630001,-9,-9,4,4,2,0,0,8,2,0,1009,69620.969,0,0,317.88611 -16550,20305,36938,-9,-9,-9,5,1,1,40,2,1,1,0,2,-9,8,3,1,1,1,0,0,0,4,0,-9,0,0,0,-1041.1963,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.92,33.16,-9,-9,1,4,2,0,1,8,1,0,976,-245045.94,0,0,1367.475 -16551,20306,36939,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,3,0,6.5443344,6.5216479,3,0,0,0,-9,0,-1136.7761,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5509019,0,0,50,47,-9,-9,5,1,1,0,0,11,2,1,712,462217.56,0,0,1322.7184 -16552,20307,36940,-9,36942,36941,4,1,1,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-996.76495,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,0,1805.6,58600.617,0,0,1822.5966 -16552,20307,36941,36942,-9,-9,1,1,1,38,1,0,3,0,1,-9,2,1,0,0,4,8.2228298,8.4634151,0,2,0,-9,12,0,-1,-32.852146,0,0,0,39,1,4,3,2,2,2019,2,2,11,2,35,35,15,1,0,3,0,13.172599,13.172599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.18,57.509998,50,55,6,2,3,0,0,8,3,0,1805.6,58600.617,0,0,1822.5966 -16552,20307,36942,36941,-9,-9,2,1,0,39,1,0,3,0,1,-9,3,3,0,0,4,0,0,0,2,0,-9,6,0,1,-62.891842,0,0,1,38,1,4,1,2,2,2019,3,1,11,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,54.18,57.509998,5,2,3,1,0,8,3,0,1805.6,58600.617,0,0,1822.5966 -16552,20307,36943,-9,36942,36941,5,1,0,3,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-984.63977,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,8,3,0,1805.6,58600.617,0,0,1822.5966 -16552,20307,36944,-9,36942,36941,3,1,0,6,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1033.2255,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,8,3,0,1805.6,58600.617,0,0,1822.5966 -16553,20308,36945,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-1031.2893,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.050674,0,0,0,53,44,-9,-9,6,1,1,0,0,12,1,1,291,-59374.5,0,0,1618.8765 -16553,20309,36946,-9,36945,-9,2,1,0,55,3,0,0,0,3,-9,2,1,0,0,3,7.3277893,7.6385999,0,3,0,0,0,-9,0,-1018.8353,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,1,31,17,15,1,0,-9,1,7.2136188,7.2136188,0,0,0,0,0,0,0,95,1,1,0,0,0,118.45339,3,40.16,32.18,-9,-9,2,1,1,0,0,12,3,1,371,156948.45,0,0,340.90555 -16554,20310,36947,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,4,3,0,0,3,8.4849577,8.3707485,0,3,0,0,0,-9,0,-1043.6512,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,29,28,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.41536263,0,16.597649,3,57.330002,53.459999,-9,-9,6,1,1,0,0,6,4,1,2109,399445.22,0,0,1775.8623 -16554,20311,36948,-9,-9,-9,2,1,0,56,2,0,0,0,1,-9,1,1,0,0,4,8.0235863,7.7569194,0,3,0,0,0,-9,0,-977.91302,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,18,25,15,1,0,-9,0,16.621517,16.621517,0,0,0,0,0,0,0,0,0,0,0,4.9237828,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,6,3,1,316,451471.13,0,0,609.82892 -16555,20312,36949,36950,-9,-9,1,1,1,56,1,0,0,0,1,-9,4,3,0,0,5,0,7.7977548,7.9822578,1,0,-9,10,0,1,13.114109,0,0,0,55,1,3,3,1,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9708266,7.8194141,3.8027232,3,51.669998,60.18,52.650002,51.639999,7,1,1,0,0,9,3,1,2870,2256668,0,0,2604.7498 -16555,20312,36950,36949,-9,-9,2,1,0,55,1,0,0,0,1,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-1,96.576263,0,0,0,56,1,5,3,3,2,2019,4,1,13,4,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.107151,0,0,3,52.650002,51.639999,51.669998,60.18,6,1,1,0,0,9,3,1,2870,2256668,0,0,2604.7498 -16556,20313,36951,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,0,3,7.124414,8.5793266,8.0861359,3,0,0,0,-9,0,-1036.7197,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,8,22,15,1,0,-9,0,21.198164,21.198164,0,0,0,0,0,0,0,0,1,1,0,7.918344,5.4338851,0,0,52.41,42.18,-9,-9,6,1,1,0,0,9,5,1,355,902058.94,0,0,2612.0784 -16557,20314,36952,36955,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,0,5,9.4863768,9.4373131,0,2,0,-9,15,0,2,27.924648,0,0,0,44,1,3,1,-9,-9,2019,1,1,6,0,38,48,15,1,0,1,0,38.564571,38.564571,0,0,0,0,0,0,0,0,1,1,0,4.9608541,0,0,0,57.060001,57.759998,53.560001,49.66,6,1,1,0,0,9,5,1,336.5,1001090.1,0,0,4844.5288 -16557,20314,36953,-9,36955,36952,3,1,0,11,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-820.81854,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,9,5,1,336.5,1001090.1,0,0,4844.5288 -16557,20314,36954,-9,36955,36952,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1035.3771,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,9,5,1,336.5,1001090.1,0,0,4844.5288 -16557,20314,36955,36952,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,0,3,6.0284696,6.0462551,0,2,0,-9,17,0,-2,68.688782,0,0,1,46,1,5,1,2,2,2019,1,2,9,0,7,0,15,1,0,1,0,8.722064,8.722064,0,0,0,0,0,0,0,0,1,1,0,1.8992288,0,0,0,53.560001,49.66,57.060001,57.759998,6,1,1,0,0,9,5,1,336.5,1001090.1,0,0,4844.5288 -16558,20315,36956,-9,-9,-9,1,1,0,50,3,0,0,0,3,-9,1,1,0,0,3,7.3210416,7.185246,0,3,0,0,0,-9,0,-905.60272,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,45,20,15,1,1,-9,0,4.4015803,4.4015803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.369999,57.889999,-9,-9,6,1,1,0,0,10,3,1,1506,196452.38,0,0,1455.9811 -16559,20316,36957,36958,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,0,3,9.3061657,9.5836906,0,1,0,-9,26,0,-1,15.085695,0,0,0,50,1,3,1,1,2,2019,1,2,8,0,45,54,15,1,0,1,0,34.520233,34.520233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.220001,51.220001,49.349998,6,1,1,0,0,13,5,1,318,1211119.4,0,0,7362.5234 -16559,20316,36958,36957,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,0,3,9.3393002,9.3575735,0,1,0,-9,26,0,1,34.253792,0,0,0,49,1,3,1,2,1,2019,1,1,11,1,48,56,15,1,0,1,0,21.940905,21.940905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.220001,49.349998,58.32,50.220001,7,1,1,0,0,13,5,1,318,1211119.4,0,0,7362.5234 -16559,20317,36959,-9,36958,36957,3,1,0,19,2,0,0,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1022.6176,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,6,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.009998,58.07,-9,-9,7,1,1,0,0,13,1,1,890,54289.16,0,0,0 -16560,20318,36960,36961,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,5,7.7647729,7.9285283,0,2,0,-9,7,0,7,-165.47086,0,0,0,44,2,4,1,3,3,2019,1,1,6,0,35,35,15,1,0,1,0,7.3250022,7.3250022,0,0,0,0,0,0,0,0,1,1,0,1.3901455,0,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,12,4,1,371.66666,995091.44,0,0,2572.5452 -16560,20318,36961,36960,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,0,4,8.5537262,8.8360777,0,2,0,-9,7,0,-7,1.2551236,0,0,0,51,2,5,1,2,3,2019,1,2,6,0,42,48,15,1,0,1,0,12.796927,12.796927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,12,4,1,371.66666,995091.44,0,0,2572.5452 -16560,20318,36962,-9,36960,36961,3,1,0,10,2,0,1,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1044.7196,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,12,4,1,371.66666,995091.44,0,0,2572.5452 -16561,20319,36963,36964,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,0,5,0,7.5286078,7.3805742,1,0,-9,7,0,0,9.4680815,0,0,0,71,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7966914,7.695715,0,0,57.060001,57.759998,47.639999,49.490002,6,1,1,0,0,8,2,1,500.5,422358.59,0,0,2583.1882 -16561,20319,36964,36963,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,0,4,0,4.8172116,5.0045757,1,0,-9,49,0,0,11.914871,0,0,0,71,2,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1342711,4.9781194,0,0,47.639999,49.490002,57.060001,57.759998,6,1,1,0,0,8,2,1,500.5,422358.59,0,0,2583.1882 -16562,20320,36965,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,2,0,0,0,3,0,0,0,-9,0,-1207.9688,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.470001,28.48,-9,-9,6,1,1,0,0,11,1,0,1603,129763.03,0,0,1290.1736 -16562,20321,36966,-9,36965,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,0,5,8.1362257,7.7044635,0,3,0,0,0,-9,0,-988.27106,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,60,52,15,1,0,-9,1,6.3639393,6.3639393,0,0,0,0,0,0,0,7,1,1,0,0,0,6.9716644,3,60.419998,54.810001,-9,-9,6,1,1,0,0,11,4,0,951,-27077.225,0,0,2774.8213 -16563,20322,36967,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,2,1,0,0,4,7.6780896,7.7021189,0,3,0,0,0,-9,0,-1066.1232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,28,16,15,1,0,-9,0,7.0837545,7.0837545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.549999,61.630001,-9,-9,5,1,1,0,0,13,3,0,5204,-86456.156,0,0,787.14764 -16563,20323,36968,-9,36967,-9,2,1,1,19,2,0,0,0,2,1,2,1,0,0,3,7.1293898,7.1157284,0,3,0,0,0,-9,0,-918.95502,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,25,0,15,1,1,-9,1,6.1860962,6.1860962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.119999,47.880001,-9,-9,5,1,1,0,0,13,2,0,1764,218872.22,0,0,1025.0406 -16564,20324,36969,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,0,4,8.4380112,8.0167189,0,3,0,0,0,-9,0,-1012.0385,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,1,0,37,52,15,1,0,-9,0,13.311973,13.311973,0,0,0,0,0,0,0,0,0,0,0,3.5750225,0,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,8,4,0,149,-95070.102,0,0,3355.0293 -16564,20325,36970,-9,-9,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,0,3,8.2699976,8.2661524,0,3,0,0,0,-9,0,-968.5578,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,30,0,15,1,0,-9,0,17.318272,17.318272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.400002,-9,-9,7,2,3,0,0,8,5,0,310,-254575.45,0,0,799.14618 -16564,20326,36971,-9,-9,-9,3,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,7.9147201,7.9412031,0,3,0,0,0,-9,0,-1050.2773,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,0,15,1,0,-9,0,7.3631501,7.3631501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,4,6,0,0,8,3,0,312,66257.695,0,0,938.71735 -16564,20327,36972,-9,-9,-9,4,1,1,30,2,0,0,0,1,-9,2,1,0,0,4,8.3745975,8.4172363,0,3,0,0,0,-9,0,-933.05481,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,0,15,1,0,-9,0,10.119574,10.119574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,4,6,0,0,8,4,0,192,12388.801,0,0,880.89612 -16565,20328,36973,-9,-9,-9,3,1,0,18,2,0,3,1,2,-9,7,2,0,0,3,0,0,0,3,0,-9,0,-9,0,-974.26862,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.040001,55.860001,-9,-9,6,1,1,0,0,12,1,1,356,50318.508,0,0,311.09021 -16566,20329,36974,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,0,4,7.9358969,7.9728808,0,3,0,0,0,-9,0,-1103.6217,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,20,24,15,1,0,-9,0,13.929075,13.929075,0,0,0,0,0,0,0,0,0,0,0,3.4474504,0,0,0,54.200001,57.490002,-9,-9,6,1,1,0,0,12,3,1,224,249023.67,0,0,2027.7664 -16567,20330,36975,36976,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,8.1507158,8.3120794,2.2452462,1,0,-9,34,0,1,-38.198757,0,0,0,57,2,4,1,-9,-9,2019,1,2,7,0,32,40,15,1,0,1,0,10.743838,10.743838,0,0,0,0,0,0,0,0,0,0,0,4.8326473,2.0715456,0,0,54.619999,53.529999,57.16,56.150002,6,1,1,0,0,9,5,1,1439.5,979519.5,0,0,2480.678 -16567,20330,36976,36975,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,4,8.0968828,8.4750681,0,1,0,-9,34,0,-1,-73.790718,0,0,0,58,2,3,1,-9,-9,2019,1,1,9,0,29,30,15,1,0,1,0,15.682024,15.682024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.150002,54.619999,53.529999,6,1,1,0,0,9,5,1,1439.5,979519.5,0,0,2480.678 -16567,20331,36977,-9,36976,36975,3,1,0,28,2,0,0,0,1,-9,2,1,0,0,4,8.3409615,8.4877176,0,3,0,0,0,-9,0,-991.3606,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,11,39,0,15,1,1,-9,1,12.721264,12.721264,0,0,0,0,0,0,0,0,0,0,0,.8674624,0,0,0,29.48,62.52,-9,-9,6,1,1,0,1,9,4,1,787,49911.184,0,0,893.43695 -16568,20332,36978,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-881.37866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.68,39.889999,-9,-9,4,1,1,0,0,5,1,1,400,196997.97,0,0,999.03033 -16569,20333,36979,36980,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,0,2,0,6.7319374,6.3816366,1,0,-9,7,0,-1,-2.5471096,0,0,0,68,2,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.1283154,6.4239125,24.927393,3,52.810001,49.130001,47.939999,53.790001,5,1,1,0,0,10,2,1,500.5,405864.47,0,0,2337.6584 -16569,20333,36980,36979,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,0,3,0,7.3153591,7.1013112,1,0,-9,7,0,1,-15.459055,0,0,0,67,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.7889938,6.9351392,14.285002,3,47.939999,53.790001,52.810001,49.130001,2,1,1,0,0,10,2,1,500.5,405864.47,0,0,2337.6584 -16570,20334,36981,36982,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,0,1,8.6667185,8.924551,0,2,0,-9,10,0,0,-1.7833769,0,0,0,57,3,2,1,3,3,2019,1,2,24,12,39,39,15,1,1,1,0,19.49548,19.49548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,30.9,27.84,45.939999,2,1,1,0,1,7,4,1,537.5,1120025.8,0,0,2203.0049 -16570,20334,36982,36981,-9,-9,2,1,0,57,1,0,1,0,3,-9,2,1,0,0,2,7.1093454,7.0097551,0,2,0,-9,10,0,0,-.50080556,0,0,0,57,2,1,1,3,3,2019,1,1,30,11,17,18,15,1,1,1,0,5.4279947,5.4279947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.84,45.939999,33.25,30.9,2,1,1,0,0,7,4,1,537.5,1120025.8,0,0,2203.0049 -16570,20335,36983,-9,36982,36981,3,1,1,22,2,0,1,0,2,-9,2,1,0,0,1,7.8783221,8.0274286,0,3,0,0,0,-9,0,-937.23468,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,35,12,40,25,15,1,1,-9,1,7.6055245,7.6055245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1300001,41.389999,-9,-9,1,1,1,0,1,7,4,1,394,109013.73,0,0,1583.1797 -16570,20336,36984,-9,36982,36981,4,1,1,18,2,0,1,1,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1123.9999,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.860001,64.550003,-9,-9,4,1,1,0,1,7,4,1,927,0,0,0,0 -16571,20337,36985,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,0,3,0,0,0,3,0,0,0,-9,0,-983.61499,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.740002,44.360001,-9,-9,5,1,1,0,0,12,1,0,355,-48825.969,0,0,2279.7473 -16572,20338,36986,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,0,4,0,8.0239201,7.737515,3,0,0,0,-9,0,-851.43921,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.470832,8.0801344,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,8,4,1,200,563279.75,0,0,2573.1663 -16573,20339,36987,36988,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,1,1,0,8.0657616,7.4000978,1,0,-9,7,0,-3,-12.169966,0,0,0,75,3,1,3,2,3,2019,4,1,16,4,0,0,15,4,1,4,0,0,0,1,0,0,0,1.3880862,0,0,7,1,1,0,5.9105873,7.3884864,9.0226364,1,51.330002,16.16,38.970001,17.84,6,1,1,0,0,10,2,1,369.5,437766.06,0,0,3229.6501 -16573,20339,36988,36987,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,1,1,0,5.9854217,5.6358676,1,0,-9,7,0,3,20.129354,0,0,0,72,2,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,.29702741,0,0,0,1,1,0,2.4437006,6.0552449,0,0,38.970001,17.84,51.330002,16.16,4,1,1,0,0,10,2,1,369.5,437766.06,0,0,3229.6501 -16573,20340,36989,-9,36987,36988,3,1,1,40,2,0,0,0,3,-9,2,1,0,0,3,7.9893513,8.2208319,0,3,0,0,0,-9,0,-1138.8132,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,45,15,1,0,-9,1,10.00658,10.00658,0,0,0,0,0,0,0,14.5,1,1,0,1.7916349,0,6.5589361,3,57.330002,53.459999,-9,-9,4,1,1,0,0,10,4,1,774,213539.53,0,0,1157.0842 -16574,20341,36990,36991,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,0,3,5.9683743,5.9835768,0,1,0,-9,8,0,-2,-166.61766,0,0,0,59,2,4,3,-9,-9,2019,2,1,7,0,5,15,15,1,0,4,0,10.220682,10.220682,0,0,0,0,0,0,0,0,0,0,0,8.4912443,0,0,0,51.419998,48.119999,54.200001,57.490002,7,1,1,0,0,10,3,1,810.5,2467068.5,0,0,4252.9492 -16574,20341,36991,36990,-9,-9,1,1,1,59,1,0,0,0,2,-9,4,3,0,0,4,0,7.5093222,7.9520035,1,0,-9,38,0,2,27.932981,0,0,0,57,1,3,1,1,1,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0320783,7.8687201,0,0,54.200001,57.490002,51.419998,48.119999,6,1,1,0,0,10,3,1,810.5,2467068.5,0,0,4252.9492 -16575,20342,36992,36993,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,0,3,0,7.1898308,7.5710177,1,0,-9,53,0,4,-115.26374,0,0,0,74,1,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3372993,7.4386973,0,0,49.279999,50.189999,43.07,51.880001,6,1,1,0,0,10,2,1,437,725300.06,0,0,2649.0684 -16575,20342,36993,36992,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,0,3,0,4.1226397,3.7229223,1,0,-9,53,0,-4,120.12739,0,0,0,78,2,3,3,2,2,2019,4,1,12,1,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.3121057,3.6706154,0,0,43.07,51.880001,49.279999,50.189999,5,1,1,0,0,10,2,1,437,725300.06,0,0,2649.0684 -16576,20343,36994,36995,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,51,0,-2,-100.3013,0,0,0,70,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.2622919,0,6.2665877,3,49.439999,54.259998,51.41,56.150002,6,1,1,0,0,2,3,1,1188.5,774617.13,0,0,2288.48 -16576,20343,36995,36994,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,7.7648501,7.6861143,1,0,-9,51,0,2,-63.758041,0,0,0,68,3,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4558063,8.0289869,0,0,51.41,56.150002,49.439999,54.259998,6,1,1,0,0,2,3,1,1188.5,774617.13,0,0,2288.48 -16577,20344,36996,-9,36997,-9,5,1,0,3,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-863.4375,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,2,0,491,112666.95,0,0,2368.8142 -16577,20344,36997,-9,-9,-9,1,1,0,33,2,0,4,0,2,-9,1,1,0,0,3,6.6011267,7.5862675,7.0461659,4,0,0,0,-9,0,-1131.6322,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,24,12,50,50,15,1,1,-9,0,1.890855,1.890855,0,0,0,0,0,0,0,0,1,1,0,7.1418829,0,0,0,23.639999,60.82,-9,-9,4,1,1,0,0,5,2,0,491,112666.95,0,0,2368.8142 -16577,20344,36998,-9,36997,-9,3,1,0,9,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1065.5353,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,491,112666.95,0,0,2368.8142 -16577,20344,36999,-9,36997,-9,4,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1013.5727,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,5,2,0,491,112666.95,0,0,2368.8142 -16578,20345,37000,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-939.57098,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,16,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.370001,22.93,-9,-9,4,1,1,0,0,8,1,0,1797,4529.8027,0,0,3007.3494 -16579,20346,37001,-9,-9,-9,1,1,0,54,3,0,1,0,1,-9,2,1,0,0,3,7.4514475,7.8240595,6.4561572,4,0,0,0,-9,0,-971.25781,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,6,29,15,1,0,-9,0,32.905449,32.905449,0,0,0,0,0,0,0,0,1,1,0,6.0035892,0,0,0,54.369999,54.799999,-9,-9,4,3,4,0,0,8,3,0,838.5,673448,0,0,4763.0713 -16579,20346,37002,-9,37001,-9,4,1,1,13,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-925.89874,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,8,3,0,838.5,673448,0,0,4763.0713 -16579,20347,37003,-9,37001,-9,2,1,0,24,2,0,1,0,2,-9,2,1,0,0,4,7.2672639,6.9904146,0,3,0,0,0,-9,0,-1047.7076,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,37,38,15,1,0,-9,1,3.328433,3.328433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,8,2,0,397,99016.336,0,0,141.71989 -16579,20348,37004,-9,37001,-9,3,1,0,21,2,0,1,0,2,-9,7,2,0,0,3,7.3150349,7.5459666,0,3,0,0,0,-9,0,-1039.6318,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,1,22,32,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.25,38.330002,-9,-9,4,3,4,0,0,8,3,0,1613,-37316.23,0,0,180.98111 -16580,20349,37005,37006,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,0,4,0,5.8085151,6.0959659,1,0,-9,50,0,0,-124.23816,0,0,0,66,3,4,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5244694,5.7483749,2.0761456,3,53.299999,55.060001,41.169998,59.310001,7,1,1,0,0,7,2,0,351,530378.75,0,0,1672.1726 -16580,20349,37006,37005,-9,-9,1,1,1,66,1,0,0,0,3,-9,2,1,0,0,4,6.3776889,6.326273,0,1,0,-9,50,0,0,13.552148,0,0,0,66,3,4,3,3,3,2019,2,2,6,0,10,0,15,1,0,4,0,9.216074,9.216074,0,0,0,0,0,0,0,0,1,1,0,4.1014309,0,0,0,41.169998,59.310001,53.299999,55.060001,6,1,1,0,0,7,2,0,351,530378.75,0,0,1672.1726 -16581,20350,37007,37008,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,0,5,0,8.6985006,8.2297878,1,0,-9,42,0,8,36.706207,0,0,0,64,1,3,1,2,2,2019,3,1,12,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1027322,8.4251986,0,0,44.990002,60.439999,62.66,52.400002,6,1,1,0,0,2,4,1,707,1555970.5,0,0,4681.0684 -16581,20350,37008,37007,-9,-9,1,1,0,64,1,0,0,0,1,-9,1,1,0,0,3,0,6.4532537,6.1963897,1,0,-9,42,0,-8,-2.7600806,0,0,0,72,1,5,3,3,2,2019,2,2,6,0,19,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4071388,0,0,62.66,52.400002,44.990002,60.439999,6,1,1,0,0,2,4,1,707,1555970.5,0,0,4681.0684 -16582,20351,37009,37011,-9,-9,1,1,1,29,1,1,2,0,2,-9,1,1,0,0,3,9.8037748,9.6431799,0,2,0,-9,5,0,0,-167.97151,0,1,0,29,2,4,1,1,2,2019,1,2,8,2,48,60,15,1,0,1,0,42.580399,42.580399,0,0,0,0,0,0,0,0,1,1,0,7.2587242,0,0,0,52,54.509998,41.82,56.439999,2,1,1,0,0,11,5,1,1226.5,13996.684,0,0,7925.7793 -16582,20351,37010,-9,37011,37009,3,1,0,5,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-948.92133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,5,1,1226.5,13996.684,0,0,7925.7793 -16582,20351,37011,37009,-9,-9,2,1,0,29,1,1,2,0,2,-9,2,1,0,0,4,7.1288981,6.7427835,0,2,0,-9,5,0,0,11.485732,0,1,1,29,2,3,1,-9,-9,2019,1,1,11,2,6,0,15,1,0,1,0,15.527888,15.527888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,56.439999,52,54.509998,5,1,1,0,0,11,5,1,1226.5,13996.684,0,0,7925.7793 -16582,20351,37012,-9,37011,37009,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-917.2019,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,11,5,1,1226.5,13996.684,0,0,7925.7793 -16583,20352,37013,37014,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,0,5,0,0,0,1,0,-9,59,0,-3,65.515465,0,0,0,84,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7444429,0,0,0,57.650002,56.130001,63.48,51.849998,7,1,1,0,0,7,2,1,580,529669.81,0,0,1635.3505 -16583,20352,37014,37013,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,0,4,0,5.8372002,5.7537551,1,0,-9,59,0,3,-42.474068,0,0,0,81,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4118505,5.378026,12.892123,3,63.48,51.849998,57.650002,56.130001,7,1,1,0,0,7,2,1,580,529669.81,0,0,1635.3505 -16584,20353,37015,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,0,4,0,0,0,3,0,0,0,-9,0,-1081.0227,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.950001,-9,-9,7,1,1,0,0,11,1,1,3040,196362.45,0,0,1635.7557 -16585,20354,37016,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,2,1,0,0,3,7.3798413,7.8458252,0,4,0,-9,0,0,0,-1026.0634,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,27,10,38,38,15,1,1,-9,0,6.9296131,6.9296131,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.360001,32.110001,-9,-9,3,1,1,0,0,2,3,0,665.5,38868.078,0,0,1030.8245 -16585,20354,37017,-9,37016,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-935.06714,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,3,0,665.5,38868.078,0,0,1030.8245 -16586,20355,37018,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,0,4,0,5.8688064,5.4496388,3,0,0,0,-9,0,-1059.5891,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1948476,6.0645199,0,0,48.759998,53.240002,-9,-9,6,1,1,0,0,9,2,1,1070,40094.898,0,0,572.67731 -16587,20356,37019,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,8,3,1,1,1,0,0,0,3,0,0,0,-9,0,-1006.8459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.540001,33,-9,-9,3,1,1,0,0,7,1,1,258,144302.47,0,0,872.21503 -16588,20357,37020,37022,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,0,3,8.1151295,8.1805763,0,2,0,-9,11,0,1,-47.395786,0,0,1,33,2,3,1,2,2,2019,1,1,16,4,33,34,15,1,1,1,0,12.011184,12.011184,0,0,0,0,0,0,0,0,1,1,0,.60363019,0,0,0,38.689999,53.880001,52.48,55.599998,5,1,1,0,0,7,5,1,818.25,168160.2,0,0,5585.6274 -16588,20357,37021,-9,37020,37022,3,1,1,4,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1049.5122,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,7,5,1,818.25,168160.2,0,0,5585.6274 -16588,20357,37022,37020,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,0,3,9.2773714,9.3188152,0,2,0,-9,11,0,-1,75.223091,0,0,0,34,1,3,1,2,2,2019,1,2,7,0,45,50,15,1,0,1,0,26.919519,26.919519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.599998,38.689999,53.880001,6,1,1,0,0,7,5,1,818.25,168160.2,0,0,5585.6274 -16588,20357,37023,-9,37020,37022,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.2344,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,7,5,1,818.25,168160.2,0,0,5585.6274 -16589,20358,37024,37025,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,6.8052497,6.7558455,1,0,-9,52,0,-5,-18.37364,0,0,0,78,2,4,3,-9,2,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5811791,6.7014527,0,0,57.16,56.150002,56.919998,49.389999,6,1,1,0,0,5,2,1,876.5,452205.31,0,0,2500.374 -16589,20358,37025,37024,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,0,4,0,5.4782681,5.4255123,1,0,-9,52,0,5,74.094147,0,0,0,73,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2142067,5.6319985,0,0,56.919998,49.389999,57.16,56.150002,6,1,1,0,0,5,2,1,876.5,452205.31,0,0,2500.374 -16590,20359,37026,37029,-9,-9,1,1,0,28,1,1,3,0,2,-9,2,1,0,0,4,6.8586249,7.1187878,6.4302115,2,0,-9,1,-9,5,43.565632,-9,1,1,23,2,3,1,3,3,2019,1,5,2,0,37,0,15,1,0,1,0,2.8192677,2.8192677,0,0,0,0,0,0,0,0,1,0,1,6.6258154,0,0,0,54.740002,57.220001,39.529999,42.740002,7,1,1,0,0,2,3,0,714.40002,10192.23,0,0,4464.4238 -16590,20359,37027,-9,37026,-9,3,1,0,7,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1116.3591,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,2,3,0,714.40002,10192.23,0,0,4464.4238 -16590,20359,37028,-9,37026,37029,4,1,1,1,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1150.0814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,2,3,0,714.40002,10192.23,0,0,4464.4238 -16590,20359,37029,37026,-9,-9,5,1,1,23,1,1,3,0,2,-9,2,1,0,0,3,8.6360645,8.7308779,0,2,0,-9,1,-9,-5,-124.13558,-9,1,0,28,2,4,1,-9,-9,2019,1,1,10,0,45,0,15,1,0,1,0,11.883851,11.883851,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.529999,42.740002,54.740002,57.220001,6,1,1,0,0,2,3,0,714.40002,10192.23,0,0,4464.4238 -16590,20359,37030,-9,37026,-9,2,1,1,10,2,1,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-978.14398,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,2,3,0,714.40002,10192.23,0,0,4464.4238 -16591,20360,37031,37032,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,0,4,7.4588313,7.731111,0,2,0,-9,24,0,-1,30.119951,0,0,1,43,2,3,3,3,3,2019,2,2,7,0,14,14,15,1,0,3,0,14.325544,14.325544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.02,58.849998,43.119999,58.549999,2,1,1,0,0,10,2,1,431,324993.41,0,0,2005.4497 -16591,20360,37032,37031,-9,-9,2,1,1,43,1,0,2,0,2,-9,3,3,0,0,3,0,0,0,2,0,-9,21,0,1,-3.3066995,0,0,0,42,2,4,1,2,2,2019,3,1,12,2,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8542666,0,0,0,43.119999,58.549999,38.02,58.849998,4,1,1,1,0,10,2,1,431,324993.41,0,0,2005.4497 -16591,20360,37033,-9,37031,37032,3,1,1,10,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-913.95526,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,10,2,1,431,324993.41,0,0,2005.4497 -16591,20360,37034,-9,37031,37032,4,1,0,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-910.39203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,10,2,1,431,324993.41,0,0,2005.4497 -16592,20361,37035,37036,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,48,0,0,0,0,0,0,70,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.068809,3,51.41,56.150002,52,47,6,1,1,0,0,13,1,1,1451,246111.88,0,0,2014.9731 -16592,20361,37036,37035,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,0,3,0,0,0,1,0,-9,8,0,0,0,0,0,0,70,3,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,51.41,56.150002,5,4,1,0,0,13,1,1,1451,246111.88,0,0,2014.9731 -16593,20362,37037,37038,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,0,4,0,6.4324703,6.1934829,1,0,-9,6,0,12,-64.822617,0,0,0,52,2,4,1,3,3,2019,3,2,12,1,0,22,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6136336,6.0578599,0,0,49.110001,47.349998,36.599998,51.849998,6,1,1,0,0,6,3,1,770.5,402559.59,0,0,2813.0581 -16593,20362,37038,37037,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,0,4,8.1397648,8.1285667,0,1,0,-9,6,0,-12,-36.973579,0,0,0,64,2,4,3,-9,-9,2019,2,1,17,5,38,37,15,1,1,4,0,11.021141,11.021141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.599998,51.849998,49.110001,47.349998,4,1,1,0,0,6,3,1,770.5,402559.59,0,0,2813.0581 -16594,20363,37039,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,3,3,0,0,2,0,0,0,3,0,0,0,-9,0,-1006.8894,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.969999,35.259998,-9,-9,2,1,1,1,1,5,1,0,1891,54862.707,0,0,1101.9603 -16595,20364,37040,37042,-9,-9,1,1,0,43,1,0,1,0,3,-9,1,1,0,0,4,7.7143922,7.9226904,0,2,0,-9,7,0,-12,-131.64011,0,0,1,55,2,5,1,3,3,2019,1,2,6,1,15,16,15,1,0,1,0,21.178719,21.178719,0,0,0,0,0,0,0,0,1,1,0,2.6928802,0,0,0,59.150002,49.669998,56.470001,59.400002,6,1,1,0,0,9,5,1,453.66666,243626.98,0,0,4144.4639 -16595,20364,37041,-9,37040,37042,3,1,0,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1090.9237,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,453.66666,243626.98,0,0,4144.4639 -16595,20364,37042,37040,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,0,5,8.8160114,8.9803877,0,2,0,-9,7,0,12,113.51836,0,0,0,43,3,4,1,3,3,2019,1,1,7,0,50,55,15,1,0,1,0,18.752254,18.752254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.470001,59.400002,59.150002,49.669998,6,1,1,0,0,9,5,1,453.66666,243626.98,0,0,4144.4639 -16596,20365,37043,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,0,4,8.2302237,8.7696409,7.199789,3,0,0,0,-9,0,-918.71643,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,38,26,15,1,0,-9,0,10.225927,10.225927,0,0,0,0,0,0,0,0,1,1,0,7.2023845,7.5051861,0,0,57.16,56.150002,-9,-9,5,1,1,0,0,12,5,1,115,419345.16,0,0,1954.7505 -16597,20366,37044,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,1,1,0,0,3,8.4205017,8.1790972,5.6226978,4,0,0,0,-9,0,-997.66803,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,5,20,0,15,1,1,-9,0,23.266247,23.266247,0,0,0,0,0,0,0,0,1,1,0,5.8327017,0,0,0,44.459999,41.84,-9,-9,6,1,1,0,0,9,3,0,538.33331,-57926.344,0,0,3517.7839 -16597,20366,37045,-9,37044,-9,2,1,1,16,2,0,2,1,3,-9,7,2,0,0,4,0,5.0066419,4.8164654,4,0,0,0,-9,0,-912.59656,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4254966,0,0,0,10.11,69.879997,-9,-9,5,1,1,0,0,9,3,0,538.33331,-57926.344,0,0,3517.7839 -16597,20366,37046,-9,37044,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1065.4436,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,9,3,0,538.33331,-57926.344,0,0,3517.7839 -16598,20367,37047,37048,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,0,2,0,7.3129301,7.2443171,1,0,-9,9,0,-2,67.377739,0,0,0,63,2,4,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.3947334,7.3099742,0,3,54.220001,44.27,50.849998,52.080002,6,1,1,0,0,10,4,1,478,2934766,0,0,8129.9521 -16598,20367,37048,37047,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,0,4,7.1332817,8.4353924,8.1676483,1,0,-9,9,0,2,-95.463181,0,0,0,61,1,2,3,3,1,2019,2,2,15,4,0,20,15,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.907794,7.8941598,0,0,50.849998,52.080002,54.220001,44.27,5,1,1,0,0,10,4,1,478,2934766,0,0,8129.9521 -16599,20368,37049,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,3,3,0,1,4,0,4.4686761,4.0731273,3,0,-9,0,1,0,-1014.6725,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2864127,4.061204,0,0,35.279999,57.700001,-9,-9,3,1,1,1,1,11,1,1,697,1575666.9,0,0,541.85132 -16600,20369,37050,37051,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,0,3,7.8309913,7.6464701,0,1,0,-9,4,0,-7,-32.005753,0,0,1,43,1,2,1,-9,-9,2019,1,1,18,7,40,40,15,1,1,1,0,6.4988132,6.4988132,0,0,0,0,0,0,0,0,0,0,0,2.6175718,0,0,0,40.970001,39.040001,53.869999,39.23,5,2,3,0,0,9,5,0,405,30371.332,0,0,4725.4121 -16600,20369,37051,37050,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,0,2,9.441576,9.3196774,0,1,0,-9,4,0,7,-128.24416,0,0,0,36,1,3,1,-9,-9,2019,1,2,8,0,37,38,15,1,0,1,0,29.128948,29.128948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.869999,39.23,40.970001,39.040001,6,2,3,0,0,9,5,0,405,30371.332,0,0,4725.4121 -16601,20370,37052,-9,-9,-9,1,1,0,49,2,0,1,0,1,-9,1,1,0,0,3,8.4975939,8.5450115,0,4,0,0,0,-9,0,-998.39685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,10,65,15,1,0,-9,0,38.722477,38.722477,0,0,0,0,0,0,0,7,0,0,0,6.9888129,0,10.039643,3,40.02,55.810001,-9,-9,5,4,2,0,0,6,4,1,647,78597.828,0,0,2548.9187 -16602,20371,37053,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,0,2,8.2896624,8.2059059,7.1676235,3,0,0,0,-9,0,-1113.8123,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,21,28,15,1,1,-9,0,16.957422,16.957422,0,0,0,0,0,0,0,0,1,1,0,3.8051851,7.4759045,0,0,36.330002,34.939999,-9,-9,4,1,1,0,0,12,5,0,430,270469.88,0,0,1170.3948 -16603,20372,37054,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-940.32166,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,1,0,0,0,.26138562,0,0,0,1,1,0,0,0,0,0,36.950001,22.379999,-9,-9,5,1,1,0,0,11,1,0,386,143071.92,0,0,1487.5531 -16604,20373,37055,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,0,4,0,7.2860436,7.2318859,3,0,0,0,-9,0,-1102.006,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6290431,7.0987234,0,0,54.790001,55.860001,-9,-9,2,1,1,0,0,8,3,0,845,251643.27,0,0,2686.5759 -16605,20374,37056,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,0,1,0,0,0,3,0,0,0,-9,0,-1110.1898,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.1260438,3,62.259998,10.99,-9,-9,6,1,1,0,0,11,1,0,760,16020.033,0,0,2321.2798 -16606,20375,37057,37058,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,0,3,0,6.2925644,6.3431711,1,0,-9,46,0,1,5.5453563,0,0,0,64,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5111578,6.4762726,0,0,61.279999,48.880001,53.209999,36.790001,7,1,1,0,0,12,2,1,399.5,960929.44,0,0,394.49115 -16606,20375,37058,37057,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,0,2,0,7.1492777,7.0162468,1,0,-9,46,0,-1,-42.676796,0,0,0,65,1,3,3,2,2,2019,4,1,13,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9724951,0,0,53.209999,36.790001,61.279999,48.880001,5,1,1,0,0,12,2,1,399.5,960929.44,0,0,394.49115 -16607,20376,37059,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,0,4,0,7.6694884,7.7679276,3,0,0,0,-9,0,-992.69135,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1864858,7.7946134,0,0,58.150002,52.91,-9,-9,6,1,1,0,0,11,3,1,819,435247.06,0,0,1975.4291 -16608,20377,37060,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,0,3,8.3255377,8.1341476,0,3,0,0,0,-9,0,-979.0683,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,36,37,15,1,0,-9,0,15.196596,15.196596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.360001,51.57,-9,-9,4,2,3,0,0,8,4,0,2765,144017.69,0,0,1063.6685 -16609,20378,37061,37062,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,1,0,5.7448435,5.8894348,1,0,-9,42,-9,1,168.63977,-9,0,0,69,3,3,3,3,3,2019,4,2,14,2,0,0,15,4,0,4,0,0,0,1,0,120.60135,5.1693611,0,0,0,0,1,1,0,0,5.8446803,0,0,30.26,18.9,46.860001,55.66,4,1,1,0,0,4,2,0,635.5,127786.73,0,0,2691.0735 -16609,20378,37062,37061,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,3,0,5.5040579,5.4318514,1,0,-9,43,-9,-1,115.55441,-9,0,0,70,3,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5676398,0,1,46.860001,55.66,30.26,18.9,5,1,1,0,0,4,2,0,635.5,127786.73,0,0,2691.0735 -16610,20379,37063,37064,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,0,1,8.4471092,8.8136339,0,1,0,-9,3,0,5,22.106554,0,0,0,41,2,2,1,2,1,2019,1,1,12,0,43,55,15,1,0,1,0,12.257942,12.257942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.200001,31.85,46.040001,44.07,4,1,1,0,0,12,5,1,437,-61881.539,0,0,2304.5547 -16610,20379,37064,37063,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,0,2,7.5409484,7.5621662,0,1,0,-9,3,0,-5,136.99832,0,0,1,46,2,1,1,2,2,2019,1,2,8,0,48,24,15,1,0,1,0,4.4066839,4.4066839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.040001,44.07,37.200001,31.85,5,1,1,0,0,12,5,1,437,-61881.539,0,0,2304.5547 -16610,20380,37065,-9,37064,37063,3,1,0,24,2,0,0,0,2,-9,2,1,0,0,4,7.5480099,7.6810179,0,3,0,0,0,-9,0,-1110.4989,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,32,0,15,1,0,-9,1,8.1781244,8.1781244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.919998,60.709999,-9,-9,6,1,1,0,0,12,3,1,479,-67861.305,0,0,1541.9907 -16610,20381,37066,-9,37064,37063,4,1,0,21,2,0,0,0,2,-9,2,1,0,0,5,7.9150233,7.8807864,0,3,0,0,0,-9,0,-902.52399,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,0,15,1,0,-9,1,7.1248722,7.1248722,0,0,0,0,0,0,0,0,0,0,0,2.6839161,0,0,0,59.43,58.049999,-9,-9,7,1,1,0,0,12,4,1,1082,-131183.94,0,0,-277.74252 -16611,20382,37067,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-1080.5344,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,26.459999,-9,-9,7,1,1,0,0,9,1,0,796,0,0,0,1100.5741 -16612,20383,37068,37069,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,1,2,7.1532254,7.2059922,0,1,0,-9,8,0,2,-88.429047,0,0,0,46,1,4,1,3,2,2019,1,2,25,12,17,0,15,1,1,1,0,8.3711329,8.3711329,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.1575475,3,34.220001,42.779999,48.869999,58.549999,3,1,1,0,0,7,5,1,1336.5,1554883.3,0,0,4465.0972 -16612,20383,37069,37068,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,0,4,9.5523071,9.5686445,0,1,0,-9,8,0,-2,-46.249149,0,0,0,48,2,2,1,2,3,2019,1,1,6,0,48,84,15,1,0,1,0,32.391777,32.391777,0,0,0,0,0,0,0,2,1,1,0,0,0,8.5809145,1,48.869999,58.549999,34.220001,42.779999,6,1,1,0,0,7,5,1,1336.5,1554883.3,0,0,4465.0972 -16613,20384,37070,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,0,3,0,7.1847768,7.4802103,3,0,0,0,-9,0,-997.43378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5157418,7.5116744,0,0,54,46,-9,-9,5,1,1,0,0,12,3,1,1044,518446.16,0,0,1099.0616 -16614,20385,37071,37072,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,0,3,8.0609589,8.0947075,0,1,0,-9,26,0,6,70.872864,0,0,0,48,3,4,1,2,2,2019,1,2,16,6,35,35,15,1,1,1,0,12.002682,12.002682,0,0,0,0,0,0,0,2,0,0,0,0,0,9.738637,3,38.400002,36.419998,42.279999,45.23,6,2,3,0,0,8,4,0,726,623004.75,0,0,2741.5569 -16614,20385,37072,37071,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,0,4,7.4110222,7.4905667,0,1,0,-9,26,0,-6,-161.8813,0,0,0,54,3,3,1,2,2,2019,1,1,10,2,20,32,15,1,0,1,0,8.7684326,8.7684326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.279999,45.23,38.400002,36.419998,7,2,3,0,0,8,4,0,726,623004.75,0,0,2741.5569 -16615,20386,37073,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,0,4,7.6746583,7.7608347,0,3,0,0,0,-9,0,-1046.8031,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2321923,0,0,0,57.16,56.150002,-9,-9,6,1,1,0,0,2,3,1,970,140545.27,0,0,2446.1946 -16616,20387,37074,37075,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,0,5,7.9846745,8.0367479,0,2,0,-9,4,0,5,29.633257,0,0,0,38,1,4,1,-9,-9,2019,1,1,11,0,40,55,15,1,0,1,0,9.0076723,9.0076723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.040001,54.049999,49,56,6,1,1,0,0,2,4,0,691,156119.84,0,0,4143.7427 -16616,20387,37075,37074,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,0,4,8.6819553,8.5058689,0,2,0,-9,19,0,-5,-41.238239,0,0,1,43,2,5,1,2,2,2019,1,2,11,2,38,40,15,1,0,1,0,14.951004,14.951004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,44.040001,54.049999,5,1,1,0,0,2,4,0,691,156119.84,0,0,4143.7427 -16616,20387,37076,-9,37075,37074,4,1,0,16,2,0,1,0,2,-9,3,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1068.0159,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,18,4,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.330002,34,-9,-9,6,1,1,1,0,2,4,0,691,156119.84,0,0,4143.7427 -16616,20388,37077,-9,37075,37074,3,1,1,19,2,0,1,0,2,-9,2,1,0,0,4,7.5345898,7.2902236,0,3,0,0,0,-9,0,-1014.733,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,40,40,15,1,0,-9,1,6.9254608,6.9254608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,3,0,210,273232.66,0,0,913.59027 -16617,20389,37078,37079,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,0,3,7.4439559,7.7454791,0,1,0,-9,9,0,-2,-31.040554,-9,0,1,40,1,4,1,1,1,2019,1,2,8,0,26,0,15,1,0,1,0,8.5457993,8.5457993,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,47.209999,55.299999,49.459999,56.91,6,1,1,0,0,1,4,1,1476,240351.59,0,0,1326.2358 -16617,20389,37079,37078,-9,-9,2,1,1,40,1,0,0,0,1,-9,2,1,0,0,4,8.4142704,8.1269464,0,1,0,-9,9,0,2,-30.32567,0,0,0,38,1,3,1,2,3,2019,1,1,16,5,38,38,15,1,1,1,0,10.357623,10.357623,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,49.459999,56.91,47.209999,55.299999,6,1,1,0,0,1,4,1,1476,240351.59,0,0,1326.2358 -16618,20390,37080,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,1,2,8.3190603,8.2939491,0,3,0,0,0,-9,0,-981.07697,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,18,0,15,1,1,-9,0,21.5124,21.5124,0,0,0,0,0,0,0,108,1,1,0,0,0,124.05617,3,25.76,31.84,-9,-9,4,4,2,0,0,6,4,0,218,1023727.1,0,0,896.08521 -16619,20391,37081,37082,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.2736635,6.9779754,0,1,0,-9,9,0,-3,-96.69989,0,0,0,60,3,3,1,3,3,2019,1,1,13,2,21,21,15,1,0,1,0,8.1820307,8.1820307,0,0,0,0,0,0,0,0,0,0,0,1.1601882,0,0,0,42.220001,48.080002,55.959999,49.93,5,1,1,0,0,5,5,1,869,380783.72,0,0,2739.073 -16619,20391,37082,37081,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,0,3,8.6459913,8.7243681,6.0726228,1,0,-9,9,0,3,-30.451801,0,0,0,57,2,3,1,3,3,2019,1,2,7,0,45,48,15,1,0,1,0,15.509459,15.509459,0,0,0,0,0,0,0,0,0,0,0,2.6713011,6.0464959,0,0,55.959999,49.93,42.220001,48.080002,5,1,1,0,0,5,5,1,869,380783.72,0,0,2739.073 -16620,20392,37083,37084,-9,-9,1,1,1,67,1,0,0,0,3,-9,2,1,0,0,3,7.3876395,7.3883481,0,1,0,-9,7,0,0,14.854843,0,0,0,67,2,3,1,3,3,2019,1,2,14,2,35,35,15,1,0,1,0,6.4745779,6.4745779,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.360001,54.040001,50,47,5,1,1,0,0,13,3,1,515.5,116894.2,0,0,1792.1997 -16620,20392,37084,37083,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,0,3,7.0878358,6.8261228,0,1,0,-9,7,0,0,-22.53747,0,0,0,67,3,3,1,3,3,2019,1,1,11,1,30,24,15,1,0,1,0,4.6766748,4.6766748,0,0,0,0,0,0,0,0,1,1,0,4.0926299,0,0,0,50,47,44.360001,54.040001,5,1,1,0,0,13,3,1,515.5,116894.2,0,0,1792.1997 -16621,20393,37085,37086,-9,-9,2,1,1,55,1,0,1,0,1,-9,1,1,0,0,4,5.7979813,5.9735289,0,2,0,-9,33,0,0,-50.128136,0,0,0,55,1,4,1,2,2,2019,1,1,14,3,45,40,15,1,0,1,0,.8991462,.8991462,0,0,0,0,0,0,0,0,1,1,0,3.9827871,0,0,0,44.02,60.700001,49.41,58.279999,6,1,1,0,0,12,5,1,417.5,2127848.8,0,0,4551.7192 -16621,20393,37086,37085,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,0,4,9.3594332,9.4620428,0,2,0,-9,34,0,0,-51.600014,0,0,0,55,1,4,1,2,2,2019,1,2,14,3,48,50,15,1,0,1,0,39.495041,39.495041,0,0,0,0,0,0,0,2,1,1,0,4.4107161,0,0,3,49.41,58.279999,44.02,60.700001,6,1,1,0,0,12,5,1,417.5,2127848.8,0,0,4551.7192 -16621,20394,37087,-9,37086,37085,4,1,0,25,2,0,1,0,3,-9,3,3,0,1,4,0,0,0,3,0,0,0,-9,0,-1103.6,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.439999,59.619999,-9,-9,7,1,1,1,0,12,1,1,849,119244.45,0,0,354.20291 -16621,20395,37088,-9,37086,37085,3,1,0,18,2,0,1,1,2,0,7,2,0,0,4,6.8736901,6.4917712,0,3,0,0,0,-9,0,-1053.2803,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,21,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.04623488,0,0,0,46.389999,60.990002,-9,-9,6,1,1,0,0,12,5,1,1400,87028.734,0,0,709.17883 -16622,20396,37089,37090,-9,-9,1,1,0,40,1,0,1,0,2,-9,3,3,0,0,2,0,0,0,2,0,-9,8,0,-4,-61.49234,0,0,1,44,2,3,1,-9,3,2019,3,2,18,5,0,12,15,3,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.701075,3,30.48,50.139999,28.969999,59.759998,2,1,1,1,1,6,2,0,667,92524.555,0,0,1267.9489 -16622,20396,37090,37089,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,0,3,7.4564104,7.6327205,0,2,0,-9,8,0,4,-.56826276,0,0,0,40,2,2,3,2,2,2019,2,1,18,6,40,40,15,1,1,3,0,5.6546764,5.6546764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.969999,59.759998,30.48,50.139999,3,1,1,0,1,6,2,0,667,92524.555,0,0,1267.9489 -16622,20396,37091,-9,37089,37090,3,1,0,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-943.89203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,6,2,0,667,92524.555,0,0,1267.9489 -16623,20397,37092,37093,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,0,3,7.8746419,8.3820724,8.2592297,1,0,-9,5,0,10,118.73072,0,0,0,48,1,3,1,2,2,2019,1,2,9,0,38,35,15,1,0,1,0,9.4604673,9.4604673,0,0,0,0,0,0,0,0,1,1,0,0,8.1277819,0,0,60.450001,41.049999,39.669998,56.169998,6,1,1,0,0,6,5,1,379.33334,143197.94,0,0,5323.8618 -16623,20397,37093,37092,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,0,3,8.3148746,8.3896275,6.9843717,1,0,-9,5,0,-10,118.42175,0,0,0,58,2,3,1,2,2,2019,1,1,15,3,37,47,15,1,0,1,0,13.981608,13.981608,0,0,0,0,0,0,0,0,1,1,0,0,7.5531969,0,0,39.669998,56.169998,60.450001,41.049999,5,1,1,0,0,6,5,1,379.33334,143197.94,0,0,5323.8618 -16623,20397,37094,-9,37093,37092,4,1,0,17,2,0,0,0,2,1,2,3,0,0,4,4.6060109,4.4654517,0,1,0,0,0,-9,0,-1022.7429,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,4,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.150002,52.91,-9,-9,7,1,1,0,0,6,5,1,379.33334,143197.94,0,0,5323.8618 -16623,20398,37095,-9,37093,37092,3,1,0,21,2,0,0,0,1,1,2,1,0,0,3,6.6371541,7.0521317,0,3,0,0,0,-9,0,-1027.088,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,8,0,15,1,0,-9,1,13.520432,13.520432,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.700001,56.220001,-9,-9,5,1,1,0,0,6,2,1,651,-84434.875,0,0,823.20789 -16624,20399,37096,37098,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,0,5,8.1800499,8.3435345,4.4724603,2,0,-9,28,0,0,-70.652382,0,0,0,48,1,1,1,3,1,2019,1,1,7,0,34,34,15,1,0,1,0,12.122729,12.122729,0,0,0,0,0,0,0,0,1,1,0,6.8939219,0,0,0,62.389999,56.709999,36.950001,43.049999,7,1,1,0,0,2,5,1,200.66667,1301517.5,0,0,4923.6123 -16624,20399,37097,-9,37096,37098,4,1,1,15,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1050.441,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,2,5,1,200.66667,1301517.5,0,0,4923.6123 -16624,20399,37098,37096,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,0,1,9.2051325,8.8004055,0,2,0,-9,28,0,0,24.008942,0,0,0,48,2,5,1,2,1,2019,1,2,25,12,44,43,15,1,1,1,0,20.127401,20.127401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.950001,43.049999,62.389999,56.709999,3,1,1,0,0,2,5,1,200.66667,1301517.5,0,0,4923.6123 -16624,20400,37099,-9,37096,37098,3,1,1,18,2,0,2,0,2,-9,7,2,0,0,5,0,0,0,3,0,0,0,-9,0,-972.51709,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,6,1,1,0,0,2,5,1,1685,0,0,0,0 -16625,20401,37100,37101,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,0,3,0,4.0028505,3.9820588,1,0,-9,49,0,-4,-28.406029,0,0,0,72,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.160615,0,0,54.369999,54.799999,58.029999,43.830002,7,1,1,0,0,2,2,1,306,589567.63,0,0,1371.7955 -16625,20401,37101,37100,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,0,3,0,7.4713721,6.9739561,1,0,-9,49,0,4,152.28339,0,0,0,68,2,3,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5191565,0,0,58.029999,43.830002,54.369999,54.799999,7,1,1,0,0,2,2,1,306,589567.63,0,0,1371.7955 -16626,20402,37102,-9,37103,-9,5,1,0,8,2,0,4,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-912.5174,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,8,2,0,815,-29976.404,0,0,2463.4578 -16626,20402,37103,-9,-9,-9,1,1,0,41,3,0,4,0,2,-9,2,1,0,0,5,7.2630372,7.3476825,0,4,0,0,0,-9,0,-928.87341,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,22,24,15,1,0,-9,0,8.2371778,8.2371778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.049999,-9,-9,5,3,4,0,0,8,2,0,815,-29976.404,0,0,2463.4578 -16627,20403,37104,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,1,1,0,0,4,7.024693,8.0713148,7.0357075,3,0,0,0,-9,0,-994.82507,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,55,60,15,1,0,-9,0,2.389251,2.389251,0,0,0,0,0,0,0,0,1,1,0,4.2400856,6.6449924,0,0,49.48,46.09,-9,-9,7,1,1,0,0,10,3,1,665,616469.75,0,0,1773.4982 -16628,20404,37105,37106,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,0,3,9.1063957,9.6625443,0,1,0,-9,27,0,2,-55.302769,0,0,0,50,2,4,1,2,-9,2019,1,1,11,0,40,37,15,1,0,1,0,29.07144,29.07144,0,0,0,0,0,0,0,2,0,0,0,3.4570384,0,7.4592547,3,56.099998,49.93,51.77,58.57,6,1,1,0,0,10,5,1,1813.5,1734933.1,0,0,6232.3457 -16628,20404,37106,37105,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,0,4,8.7189503,8.7142696,0,1,0,-9,27,0,-2,4.4576735,0,0,0,52,2,3,1,2,2,2019,1,2,13,1,45,43,15,1,0,1,0,21.963934,21.963934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,56.099998,49.93,6,1,1,0,0,10,5,1,1813.5,1734933.1,0,0,6232.3457 -16628,20405,37107,-9,37105,37106,3,1,1,22,2,0,0,0,2,-9,7,2,0,0,4,0,4.9604368,4.882412,3,0,0,0,-9,0,-1004.5809,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,33,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8920307,0,0,0,38.91,60.5,-9,-9,5,1,1,0,0,10,2,1,605,142354.64,0,0,167.13995 -16628,20406,37108,-9,37105,37106,4,1,0,21,2,0,0,1,2,0,7,2,0,0,4,6.2257018,7.2948666,6.7204409,3,0,0,0,-9,0,-1113.0726,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7211967,0,0,0,58.720001,51.290001,-9,-9,6,1,1,0,0,10,2,1,203,46898.566,0,0,1590.3812 -16629,20407,37109,37110,-9,-9,1,1,0,57,1,0,0,0,3,-9,1,1,0,0,4,7.3454289,7.3770261,0,1,0,-9,38,0,-1,-29.352575,0,0,0,58,2,4,1,2,3,2019,1,2,12,0,15,14,15,1,0,1,0,11.551232,11.551232,0,0,0,0,0,0,0,0,0,0,0,2.0645809,0,0,0,52.23,55.599998,51.810001,57.220001,6,1,1,0,0,2,4,1,769,651845.13,0,0,3149.188 -16629,20407,37110,37109,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,0,4,7.8644915,8.2409868,0,1,0,-9,10,0,1,-48.311157,0,0,0,57,3,4,1,2,1,2019,1,1,11,2,50,40,15,1,0,1,0,6.9923291,6.9923291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.810001,57.220001,52.23,55.599998,6,1,1,0,0,2,4,1,769,651845.13,0,0,3149.188 -16630,20408,37111,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,0,3,8.3313665,8.1024075,0,3,0,0,0,-9,0,-1121.556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,44,44,15,1,0,-9,0,11.764679,11.764679,0,0,0,0,0,0,0,7,0,0,0,0,0,8.2921343,3,49,48,-9,-9,5,3,4,0,0,7,4,1,851,434997.31,0,0,1985.9019 -16630,20409,37112,-9,37113,-9,5,1,1,8,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1160.575,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,7,3,1,288,83305.453,0,0,1136.3112 -16630,20409,37113,-9,37111,-9,2,1,0,20,2,0,0,0,2,-9,7,2,0,0,3,7.5094738,7.591538,0,3,0,0,0,-9,0,-1021.5715,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,-9,-9,7,3,4,0,0,7,3,1,288,83305.453,0,0,1136.3112 -16630,20409,37114,-9,37113,-9,4,1,0,10,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-960.70831,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,7,3,1,288,83305.453,0,0,1136.3112 -16630,20409,37115,-9,37113,-9,3,1,0,13,2,0,0,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1012.1535,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,7,3,1,288,83305.453,0,0,1136.3112 -16631,20410,37116,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,0,4,7.3867803,8.2519913,8.1569424,3,0,0,0,-9,0,-880.68872,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,16,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5079002,7.9542875,0,0,53.900002,52.09,-9,-9,6,2,3,0,0,7,4,1,667,1234077,0,0,2032.7214 -16632,20411,37117,37119,-9,-9,1,1,1,41,1,0,3,0,1,-9,1,1,0,0,4,7.3824439,7.2589436,0,2,0,-9,21,0,-3,-19.331535,0,0,0,44,1,3,3,2,2,2019,2,2,10,0,40,35,15,1,0,3,0,4.216732,4.216732,0,0,0,0,0,0,0,0,1,1,0,3.4833999,0,0,0,56.330002,51.02,55.599998,40.700001,2,2,3,0,0,5,2,1,874,210559.59,0,0,1853.2021 -16632,20411,37118,-9,37119,37117,3,1,1,17,2,0,3,1,2,0,7,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1131.5383,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.339996,49.419998,-9,-9,7,2,3,0,0,5,2,1,874,210559.59,0,0,1853.2021 -16632,20411,37119,37117,-9,-9,2,1,0,44,1,0,3,0,1,-9,6,3,0,0,3,0,0,0,2,0,-9,21,0,3,-22.57925,0,0,1,41,1,4,1,3,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.599998,40.700001,56.330002,51.02,6,2,3,0,0,5,2,1,874,210559.59,0,0,1853.2021 -16632,20411,37120,-9,37119,37117,4,1,0,15,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-858.34644,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,5,2,1,874,210559.59,0,0,1853.2021 -16632,20411,37121,-9,37119,37117,6,1,0,10,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1064.9633,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,5,2,1,874,210559.59,0,0,1853.2021 -16632,20411,37122,-9,37119,37117,5,1,1,11,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1031.8494,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,5,2,1,874,210559.59,0,0,1853.2021 -16633,20412,37123,-9,-9,-9,3,1,1,19,2,0,1,0,2,1,2,1,0,0,4,8.0030594,8.10917,0,3,0,0,0,-9,0,-1004.499,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,40,0,15,1,0,-9,1,7.9771771,7.9771771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,4,4,1,385,-170483.88,0,0,906.73108 -16634,20413,37124,-9,-9,-9,2,1,1,42,2,0,0,0,1,-9,2,1,0,0,4,8.5375957,8.8706188,0,1,0,-9,1,-9,6,95.918343,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,18,6,37,0,15,1,1,-9,0,15.749949,15.749949,0,0,0,0,0,0,0,0,0,0,0,5.9582286,0,0,0,48.290001,52.150002,39.470001,42.98,6,1,1,0,0,11,5,1,1541,244856.75,0,0,-100.25212 -16634,20414,37125,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,0,2,8.6748924,8.7794123,0,1,0,1,1,-9,-6,72.93457,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,13,3,41,42,15,1,0,-9,0,15.06364,15.06364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.470001,42.98,48.290001,52.150002,6,1,1,0,0,11,5,1,367,124715.91,0,0,730.84369 -16635,20415,37126,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,2,1,0,0,5,7.8630767,8.1095085,5.8235726,3,0,0,0,-9,0,-1038.9056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,42,40,15,1,0,-9,0,6.2632236,6.2632236,0,0,0,0,0,0,0,0,1,1,0,4.3590198,5.9153552,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,4,3,0,178,487926,0,0,1681.5576 -16636,20416,37127,-9,37130,37129,4,1,0,15,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1127.2228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,9,5,1,313.25,1629399.4,0,0,5498.8774 -16636,20416,37128,-9,37130,37129,3,1,0,17,2,0,1,0,2,1,2,3,0,0,4,6.1699872,6.1364331,0,2,0,0,0,-9,0,-1057.6776,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,11,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0702522,0,0,0,54.200001,57.490002,-9,-9,5,1,1,0,0,9,5,1,313.25,1629399.4,0,0,5498.8774 -16636,20416,37129,37130,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,0,4,9.6552229,9.7076769,0,2,0,-9,7,0,4,-24.501568,0,0,0,51,2,3,1,2,2,2019,1,2,6,0,38,46,15,1,0,1,0,46.494732,46.494732,0,0,0,0,0,0,0,0,0,0,0,4.7299933,0,0,0,57.16,56.150002,52,54.509998,6,1,1,0,0,9,5,1,313.25,1629399.4,0,0,5498.8774 -16636,20416,37130,37129,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,0,3,7.4683857,7.3164911,0,2,0,-9,7,0,-4,-90.74147,0,0,0,55,2,4,1,2,2,2019,1,1,7,0,25,25,15,1,0,1,0,7.2004328,7.2004328,0,0,0,0,0,0,0,0,0,0,0,5.2097173,0,0,0,52,54.509998,57.16,56.150002,6,1,1,0,0,9,5,1,313.25,1629399.4,0,0,5498.8774 -16637,20417,37131,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,0,4,0,5.6649084,5.6067991,3,0,0,0,-9,0,-1038.7228,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4527605,5.2871699,0,0,43.66,45.93,-9,-9,5,1,1,0,0,13,2,0,799,96747.875,0,0,1348.3617 -16638,20418,37132,37133,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,0,3,0,6.2261634,6.0548019,1,0,-9,54,0,-1,-34.871204,0,0,0,73,2,3,3,3,2,2019,4,1,6,0,0,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2688451,6.4047728,0,0,55.529999,51.549999,58.889999,48.599998,7,1,1,0,0,10,2,1,457.5,337817.38,0,0,1574.1096 -16638,20418,37133,37132,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,3,0,6.8532872,6.7981963,1,0,-9,54,0,1,68.115013,0,0,0,72,2,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2980061,6.9310727,0,0,58.889999,48.599998,55.529999,51.549999,6,1,1,0,0,10,2,1,457.5,337817.38,0,0,1574.1096 -16639,20419,37134,37135,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,0,4,0,7.4533944,7.4708543,1,0,-9,53,0,1,2.3116338,0,0,0,73,3,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7985559,7.1852803,0,0,49.27,56.950001,62.150002,34.66,6,1,1,0,0,7,2,1,609.5,686738.75,0,0,2022.1434 -16639,20419,37135,37134,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,0,4,0,0,0,1,0,-9,8,0,-1,-40.849579,0,0,0,74,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.7379971,0,0,0,62.150002,34.66,49.27,56.950001,7,1,1,0,0,7,2,1,609.5,686738.75,0,0,2022.1434 -16640,20420,37136,37137,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,0,4,0,8.7974405,8.2249784,1,0,-9,9,0,16,-103.98524,0,0,0,54,1,5,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6034698,8.4686289,0,0,57.16,56.150002,54.099998,59.110001,6,1,1,0,0,5,4,1,329,1111859.4,0,0,6230.4409 -16640,20420,37137,37136,-9,-9,1,1,0,54,1,0,0,0,1,-9,4,3,0,0,5,0,0,0,1,0,-9,9,0,-16,33.725025,0,0,0,70,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5599296,0,0,0,54.099998,59.110001,57.16,56.150002,7,1,1,0,0,5,4,1,329,1111859.4,0,0,6230.4409 -16641,20421,37138,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,8,3,1,1,3,0,0,0,3,0,0,0,-9,0,-892.67169,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.73,60.049999,-9,-9,4,1,1,0,0,13,1,1,1722,704329.25,0,0,-81.759506 -16642,20422,37139,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,1,0,0,0,3,0,0,0,-9,0,-1037.3354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.080002,18.35,-9,-9,6,1,1,0,0,8,1,0,498,0,0,0,1241.2913 -16643,20423,37140,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,4,3,0,0,3,0,7.3233023,7.4152341,3,0,0,0,-9,0,-934.30573,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9266231,7.8740258,0,0,50.360001,40.290001,-9,-9,7,1,1,0,0,8,3,1,1333,725490.5,0,0,1728.9863 -16644,20424,37141,37142,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,0,3,7.5112619,7.1266537,0,2,0,-9,17,0,2,119.92489,0,0,0,45,2,3,1,2,2,2019,1,2,5,0,40,0,15,1,0,1,0,4.1743555,4.1743555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,53.990002,48.040001,5,1,1,0,0,4,5,1,596,595138.94,0,0,5918.208 -16644,20424,37142,37141,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,0,3,9.8301191,9.8892698,0,2,0,-9,17,0,-2,-10.743674,0,0,0,47,2,3,1,2,2,2019,1,1,6,0,60,70,15,1,0,1,0,35.141907,35.141907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.990002,48.040001,52.990002,51.279999,5,1,1,0,0,4,5,1,596,595138.94,0,0,5918.208 -16644,20424,37143,-9,37141,37142,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1091.9723,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,4,5,1,596,595138.94,0,0,5918.208 -16645,20425,37144,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,0,3,8.5662222,8.7277441,0,3,0,0,0,-9,0,-991.58191,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,52,51,15,1,0,-9,0,12.886168,12.886168,0,0,0,0,0,0,0,0,1,1,0,1.8670489,0,0,0,49.52,56.950001,-9,-9,4,1,1,0,0,10,5,1,199,639904,0,0,2272.104 -16646,20426,37145,37146,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,0,4,0,7.857686,8.1764555,1,0,-9,6,0,-2,-108.38652,0,0,0,66,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2659721,7.8268085,0,0,57.16,56.150002,63.560001,36.869999,6,1,1,0,0,10,3,1,890.5,1259437.5,0,0,2270.8096 -16646,20426,37146,37145,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,0,3,0,5.9500751,5.9670649,1,0,-9,6,0,2,-150.52907,0,0,0,64,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0167971,5.8452573,0,0,63.560001,36.869999,57.16,56.150002,6,1,1,0,0,10,3,1,890.5,1259437.5,0,0,2270.8096 -16647,20427,37147,-9,37148,-9,3,1,1,12,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1127.4972,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,8,2,1,1138.5,111637.06,0,0,1391.7231 -16647,20427,37148,-9,-9,-9,1,1,0,50,3,0,1,0,3,-9,2,1,0,0,3,6.5350995,7.3249779,6.5228691,4,0,0,0,-9,0,-997.6347,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,8,0,15,1,0,-9,0,9.1279325,9.1279325,0,0,0,0,0,0,0,0,1,1,0,6.6583018,0,0,0,36.369999,61.5,-9,-9,4,1,1,0,1,8,2,1,1138.5,111637.06,0,0,1391.7231 -16648,20428,37149,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,0,2,0,7.8468947,8.2180452,3,0,0,0,-9,0,-956.15692,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5108192,7.783968,0,0,38.790001,39.290001,-9,-9,3,1,1,0,0,13,4,1,377,541119.31,0,0,1961.5269 -16649,20429,37150,37151,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,0,3,7.539104,7.5416303,0,1,0,-9,12,0,-8,57.136967,0,0,0,67,2,4,1,2,2,2019,1,2,9,0,31,30,15,1,0,1,0,8.2359743,8.2359743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.279999,51.959999,61.119999,51.57,4,1,1,0,0,5,4,1,450,32201.324,0,0,2335.9392 -16649,20429,37151,37150,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,0,4,8.0966721,8.1977768,6.4526715,1,0,-9,12,0,8,-3.5065317,0,0,0,59,2,3,1,2,3,2019,1,1,6,0,40,40,15,1,0,1,0,8.8339643,8.8339643,0,0,0,0,0,0,0,0,1,1,0,0,6.5352135,0,0,61.119999,51.57,43.279999,51.959999,6,1,1,0,0,5,4,1,450,32201.324,0,0,2335.9392 -16650,20430,37152,37153,-9,-9,1,1,0,48,1,0,0,0,3,-9,3,3,0,0,3,0,0,0,1,0,-9,8,0,-14,-5.6064172,0,0,0,62,3,3,1,3,3,2019,3,2,12,2,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,51,49,5,1,1,1,0,11,3,0,497.5,631014.44,0,0,2246.1445 -16650,20430,37153,37152,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,0,3,8.0179157,7.8164287,0,1,0,-9,8,0,14,-3.5155573,0,0,0,48,3,3,3,-9,-9,2019,2,1,10,1,38,32,15,1,0,3,0,7.0464215,7.0464215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,47,50,5,1,1,0,0,11,3,0,497.5,631014.44,0,0,2246.1445 -16651,20431,37154,37155,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,0,3,7.2147465,7.2840123,0,1,0,-9,7,0,-7,41.403366,0,0,0,64,3,3,3,3,3,2019,2,1,12,0,24,27,15,1,0,4,0,7.2001081,7.2001081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.990002,51.279999,52,54.509998,5,1,1,0,0,11,3,1,867,369335.81,0,0,1375.5338 -16651,20431,37155,37154,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,0,3,0,7.2686138,7.4481993,1,0,-9,7,0,7,-50.452477,0,0,0,57,3,3,1,3,3,2019,3,2,12,2,0,14,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4984379,7.3514905,0,0,52,54.509998,52.990002,51.279999,5,1,1,0,0,11,3,1,867,369335.81,0,0,1375.5338 -16651,20432,37156,-9,37154,37155,3,1,0,21,2,0,0,0,2,-9,2,1,0,0,4,7.7348485,7.5938044,0,3,0,0,0,-9,0,-1098.4801,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,30,15,1,0,-9,1,7.2650218,7.2650218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.16,48.34,-9,-9,1,1,1,0,0,11,3,1,646,-154515.94,0,0,1518.8887 -16652,20433,37157,37158,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,0,2,7.3108664,7.6115656,0,1,0,-9,29,0,7,70.397797,0,0,0,53,2,3,1,3,3,2019,1,1,9,0,40,40,15,1,0,1,0,4.8535938,4.8535938,0,0,0,0,0,0,0,2,1,1,0,0,0,.92024434,3,50.32,32.360001,36.029999,61.860001,4,1,1,0,0,11,4,1,441,374276.25,0,0,2188.0886 -16652,20433,37158,37157,-9,37160,1,1,0,53,1,0,0,0,2,-9,2,1,0,0,3,8.3423834,8.094552,0,1,0,-9,29,0,-7,-6.5056558,0,0,0,60,3,2,1,3,3,2019,1,2,12,2,32,30,15,1,0,1,0,16.501354,16.501354,0,0,0,0,0,0,0,7,1,1,0,0,0,7.183836,3,36.029999,61.860001,50.32,32.360001,4,1,1,0,0,11,4,1,441,374276.25,0,0,2188.0886 -16652,20434,37159,-9,37158,37157,3,1,1,25,2,0,0,0,2,-9,2,1,0,0,2,7.8920593,8.0299721,0,3,0,0,0,-9,0,-928.14728,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,47,15,1,0,-9,1,5.8893108,5.8893108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.490002,53.689999,-9,-9,4,1,1,0,0,11,3,1,449,34321.465,0,0,677.13672 -16652,20435,37160,-9,-9,-9,4,1,1,91,3,0,0,0,3,-9,4,3,0,0,3,0,5.209445,5.2075238,3,0,0,0,-9,0,-1141.2518,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.204247,0,0,56,44,-9,-9,6,4,6,0,0,11,2,1,1008,180773.69,0,0,861.44452 -16653,20436,37161,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,0,3,7.7736959,8.0733461,0,3,0,0,0,-9,0,-1133.4032,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,38,37,15,1,0,-9,0,9.2763195,9.2763195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.279999,42.509998,-9,-9,6,1,1,0,0,7,3,1,218,-76336.93,0,0,1358.2451 -16654,20437,37162,37164,-9,-9,2,1,0,33,1,0,3,0,2,1,6,3,0,0,3,0,0,0,2,0,-9,7,0,-3,0,-9,0,1,36,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,.82032716,3,60.310001,43.75,54.369999,54.799999,7,1,1,0,0,7,1,0,1280.6,78869.047,0,0,3262.1626 -16654,20437,37163,-9,37162,37164,3,1,1,13,2,0,3,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-994.93927,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,7,1,0,1280.6,78869.047,0,0,3262.1626 -16654,20437,37164,37162,-9,-9,1,1,1,36,1,0,3,0,3,-9,8,3,1,1,3,0,0,0,2,0,-9,7,0,3,0,0,0,0,33,2,3,3,3,2,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,30.678749,3,54.369999,54.799999,60.310001,43.75,6,1,1,0,1,7,1,0,1280.6,78869.047,0,0,3262.1626 -16654,20437,37165,-9,37162,37164,5,1,0,9,2,0,3,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1116.3729,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,7,1,0,1280.6,78869.047,0,0,3262.1626 -16654,20437,37166,-9,37162,37164,4,1,1,10,2,0,3,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1049.1997,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,1,1,0,0,7,1,0,1280.6,78869.047,0,0,3262.1626 -16655,20438,37167,-9,37169,-9,4,1,0,7,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-928.00018,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,1,1,0,811,39978.805,0,0,560.03192 -16655,20438,37168,-9,37169,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,0,2,0,0,0,4,0,0,0,-9,0,-955.56799,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,1,1,0,811,39978.805,0,0,560.03192 -16655,20438,37169,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,3,3,0,0,2,0,0,0,4,0,0,0,-9,0,-1094.4115,-9,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.96989,3,41.709999,54.32,-9,-9,3,1,1,1,1,1,1,0,811,39978.805,0,0,560.03192 -16655,20439,37170,-9,37169,-9,3,1,0,19,2,0,2,1,2,0,7,2,0,0,2,0,7.3670254,7.3394608,3,0,0,0,-9,0,-961.70898,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,29,11,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0129981,0,0,0,23.52,47.810001,-9,-9,2,1,1,0,0,1,2,0,1259,2476.5825,0,0,1419.7117 -16656,20440,37171,37172,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,0,2,0,7.221457,7.1281123,1,0,-9,10,0,1,-77.742973,0,0,0,70,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.784534,7.4223938,0,0,57.470001,42.93,60.290001,52.110001,7,1,1,0,0,10,2,1,1312.5,470414.56,0,0,1483.3893 -16656,20440,37172,37171,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,0,3,0,0,0,1,0,-9,10,0,-1,62.797989,0,0,0,71,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0931454,0,0,0,60.290001,52.110001,57.470001,42.93,5,1,1,0,0,10,2,1,1312.5,470414.56,0,0,1483.3893 -16657,20441,37173,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,4,3,0,0,4,7.5041943,7.534483,4.4380341,3,0,0,0,-9,0,-1050.6687,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,5,20,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1573672,4.1146817,0,0,62.25,48.330002,-9,-9,6,1,1,0,0,7,3,1,61,812472,0,0,2004.304 -16658,20442,37174,37175,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,0,3,6.6189647,6.8169799,0,1,0,-9,24,0,3,89.317398,0,0,0,49,1,3,1,2,2,2019,1,2,8,0,10,35,15,1,0,1,0,10.218204,10.218204,0,0,0,0,0,0,0,2,0,0,0,0,0,18.552944,2,54.369999,54.799999,47,30.790001,6,1,1,0,0,8,4,1,948.5,279071.44,0,0,1813.0999 -16658,20442,37175,37174,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,0,3,8.0657558,8.2820911,0,1,0,-9,24,0,-3,81.41745,0,0,0,52,1,3,1,1,2,2019,1,1,8,0,21,35,15,1,0,1,0,26.351976,26.351976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,30.790001,54.369999,54.799999,6,1,1,0,0,8,4,1,948.5,279071.44,0,0,1813.0999 -16659,20443,37176,37177,-9,-9,2,1,1,64,1,0,0,0,1,-9,1,1,0,0,2,8.7062798,9.6264153,9.3441067,1,0,-9,7,0,-3,53.279221,0,0,0,67,1,2,1,2,1,2019,1,1,17,5,45,40,15,1,1,1,0,14.005202,14.005202,0,0,0,0,0,0,0,0,1,1,0,0,9.3335228,0,0,41.459999,55.580002,54.610001,51.040001,5,1,1,0,0,5,5,1,459,2692682.5,0,0,9715.2871 -16659,20443,37177,37176,-9,-9,1,1,0,67,1,0,0,0,1,-9,1,1,0,0,2,6.3297639,6.7621565,5.7425022,1,0,-9,7,0,3,64.956573,0,0,0,64,1,2,1,3,1,2019,1,2,9,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1510653,6.064045,9.5520725,3,54.610001,51.040001,41.459999,55.580002,7,1,1,0,0,5,5,1,459,2692682.5,0,0,9715.2871 -16660,20444,37178,37179,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,0,3,0,7.8234081,7.924654,1,0,-9,15,0,9,92.508591,0,0,0,55,2,3,1,3,3,2019,3,2,20,8,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2994184,7.7038279,0,0,37.77,37.900002,62.27,42.939999,5,1,1,0,0,5,3,1,1018,297891.41,0,0,4700.2754 -16660,20444,37179,37178,-9,-9,2,1,0,55,1,0,0,0,2,-9,1,1,0,0,3,0,6.3409534,6.8093872,1,0,-9,15,0,0,65.065331,0,0,0,64,2,3,3,3,-9,2019,2,1,8,0,0,60,15,1,0,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,6.7198491,16.400858,3,62.27,42.939999,37.77,37.900002,7,1,1,0,0,5,3,1,1018,297891.41,0,0,4700.2754 -16661,20445,37180,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,1,0,6.2509856,6.286397,3,0,0,0,-9,0,-1019.1959,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,1,-9,0,0,0,1,0,0,0,5.5892234,4.4227104,0,0,1,1,0,3.9343579,6.5215197,0,0,51.400002,13.47,-9,-9,1,1,1,0,0,10,2,1,372,38537.109,0,0,2078.041 -16661,20446,37181,-9,37180,-9,2,1,1,49,2,0,0,0,2,-9,2,1,0,0,3,8.9713812,9.1050854,0,3,0,0,0,-9,0,-1123.5741,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,1,26.507177,26.507177,0,0,0,0,0,0,0,7,1,1,0,5.929687,0,13.339378,3,46.669998,55.57,-9,-9,5,1,1,0,0,10,5,1,1714,128017.58,0,0,3504.6614 -16662,20447,37182,37183,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,3,0,6.7924771,6.8821197,1,0,-9,10,0,4,-43.606342,-9,0,0,65,3,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9883924,0,0,52,48,40.82,39.82,5,1,1,0,0,5,2,1,385,687005.94,0,0,2288.0552 -16662,20447,37183,37182,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,0,2,0,0,0,1,0,-9,33,0,-4,64.346085,0,0,0,69,3,3,3,3,3,2019,4,2,30,11,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.7968409,3,40.82,39.82,52,48,3,1,1,0,0,5,2,1,385,687005.94,0,0,2288.0552 -16663,20448,37184,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,1,1,0,0,4,7.2684088,7.1233978,0,3,0,0,0,-9,0,-947.6684,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,14,4,15,1,0,-9,0,16.226883,16.226883,0,0,0,0,0,0,0,0,1,1,0,6.4851727,0,0,0,40.709999,62.41,-9,-9,5,1,1,0,1,12,3,1,328,243735.31,0,0,866.62445 -16664,20449,37185,37186,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,0,5,8.7963533,8.7082214,0,2,0,-9,24,0,-5,90.091019,0,0,0,56,1,4,2,1,1,2019,2,2,7,0,48,49,15,1,0,2,0,11.226173,11.226173,0,0,0,0,0,0,0,0,1,1,0,2.8031099,0,0,0,54.099998,59.110001,60.119999,54.799999,7,3,4,0,0,8,3,1,362,157265.58,0,0,2707.6914 -16664,20449,37186,37185,-9,-9,2,1,1,56,1,0,1,0,1,0,7,2,0,0,4,0,0,0,2,0,-9,24,0,5,81.717033,-9,0,0,51,1,5,1,1,1,2019,3,1,6,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,54.099998,59.110001,6,3,4,0,0,8,3,1,362,157265.58,0,0,2707.6914 -16665,20450,37187,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,8,3,1,1,2,0,6.3196745,6.3958936,4,0,0,0,-9,0,-983.71918,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,3,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1790628,0,0,0,45.779999,22.639999,-9,-9,6,2,3,0,0,9,2,1,448.5,-20255.391,0,0,2594.9946 -16665,20450,37188,-9,37187,-9,3,1,0,16,2,0,1,1,3,-9,7,2,0,0,4,5.8469753,6.0574298,0,4,0,0,0,-9,0,-1005.8323,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.255928,3,48.869999,58.549999,-9,-9,4,2,3,0,0,9,2,1,448.5,-20255.391,0,0,2594.9946 -16665,20451,37189,-9,37187,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,0,3,7.422843,7.4179044,0,3,0,0,0,-9,0,-990.46075,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,21,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.7200756,3,54.25,31.66,-9,-9,6,2,3,0,0,9,3,1,947,54254.277,0,0,234.71828 -16666,20452,37190,-9,37193,37196,4,1,0,6,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-867.0238,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16666,20452,37191,-9,37193,37196,6,1,1,1,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-995.85297,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16666,20452,37192,-9,37193,37196,5,1,0,4,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-959.7666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16666,20452,37193,37196,-9,-9,1,1,0,30,1,2,5,0,2,-9,6,3,0,0,4,0,0,0,2,0,-9,7,0,2,69.475182,0,0,1,28,2,4,1,2,2,2019,3,2,10,1,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.490002,57.57,54.349998,55.32,6,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16666,20452,37194,-9,37193,37196,3,1,1,8,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-945.70087,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16666,20452,37195,-9,37193,37196,7,1,1,0,2,2,5,1,3,-9,-9,2,0,0,4,0,0,0,2,0,-9,0,-9,0,-1169.0209,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16666,20452,37196,37193,-9,-9,2,1,1,28,1,2,5,0,2,-9,2,1,0,0,4,8.0155764,7.9354405,0,2,0,-9,7,0,-2,78.241852,0,1,0,30,2,4,3,-9,-9,2019,2,1,9,0,60,43,15,1,0,3,0,6.1668873,6.1668873,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.349998,55.32,51.490002,57.57,7,1,1,0,0,11,2,1,783,64382.449,0,0,2633.3645 -16667,20453,37197,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,0,4,8.7877846,8.639143,0,3,0,0,0,-9,0,-981.56415,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,20,6,49,45,15,1,1,-9,0,11.723533,11.723533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,59.580002,-9,-9,5,1,1,0,0,12,5,1,1242,476268.84,0,0,1875.0038 -16668,20454,37198,-9,-9,-9,1,1,0,46,2,0,1,0,3,-9,6,3,0,1,4,0,0,0,4,0,0,0,-9,0,-924.96594,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,0,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7997539,0,0,0,59.529999,56.439999,-9,-9,7,1,1,0,0,7,1,0,1277,-68924.758,0,0,1676.9153 -16669,20455,37199,-9,37200,37202,4,1,1,10,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,2,0,0,0,-9,0,-1029.3813,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,4,2,1,627.5,19699.455,0,0,3042.1995 -16669,20455,37200,37202,-9,-9,2,1,0,34,1,0,2,0,2,-9,6,3,0,0,3,0,0,0,2,0,-9,18,0,-12,-88.899765,0,0,1,46,1,3,1,3,1,2019,3,1,28,11,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.349998,37.639999,42.41,56.209999,3,2,3,0,0,4,2,1,627.5,19699.455,0,0,3042.1995 -16669,20455,37201,-9,37200,37202,3,1,1,14,2,0,2,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1007.1564,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,4,2,1,627.5,19699.455,0,0,3042.1995 -16669,20455,37202,37200,-9,-9,1,1,1,46,1,0,2,0,1,-9,1,1,0,0,3,7.8687477,7.8273368,0,2,0,-9,18,0,12,57.404976,0,0,0,34,2,3,3,3,2,2019,2,2,12,0,35,40,15,1,0,3,0,9.432477,9.432477,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.083263,3,42.41,56.209999,35.349998,37.639999,3,2,3,0,0,4,2,1,627.5,19699.455,0,0,3042.1995 -16670,20456,37203,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,1,1,0,0,4,7.8520923,7.6644464,0,3,0,-9,0,-9,0,-920.60559,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,0,15,1,0,-9,0,8.0177965,8.0177965,0,0,0,0,0,0,0,0,1,1,0,7.3284521,0,0,0,57.16,56.150002,-9,-9,7,1,1,0,0,11,3,1,1374,109543.91,0,0,1484.561 -16671,20457,37204,37205,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,0,1,0,6.7943592,6.6291885,1,0,-9,6,0,-1,32.583347,0,0,0,80,3,3,3,3,3,2019,4,2,9,2,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1133118,6.9054585,0,0,55.27,39.950001,51.810001,54.549999,3,1,1,0,0,4,2,1,1089.5,525726.81,0,0,1428.3406 -16671,20457,37205,37204,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,0,3,0,4.9893188,4.8910322,1,0,-9,6,0,1,-30.57266,0,0,0,79,2,1,3,-9,-9,2019,4,1,15,6,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.7032022,4.9452958,113.16288,1,51.810001,54.549999,55.27,39.950001,2,1,1,0,0,4,2,1,1089.5,525726.81,0,0,1428.3406 -16672,20458,37206,37211,-9,-9,1,1,1,57,1,1,4,0,3,-9,8,3,1,1,3,0,0,0,2,0,-9,2,0,23,0,0,0,0,34,3,4,3,3,3,2019,4,2,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,47,57,5,1,1,0,1,13,1,1,533.33331,268473.25,0,0,1859.4512 -16672,20458,37207,-9,37211,37206,3,1,1,15,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-1054.4371,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,13,1,1,533.33331,268473.25,0,0,1859.4512 -16672,20458,37208,-9,37211,37206,6,1,0,2,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-994.45679,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,13,1,1,533.33331,268473.25,0,0,1859.4512 -16672,20458,37209,-9,37211,37206,4,1,0,10,2,1,4,1,3,-9,-9,2,0,0,5,0,0,0,2,0,0,0,-9,0,-986.8158,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,13,1,1,533.33331,268473.25,0,0,1859.4512 -16672,20458,37210,-9,37211,37206,5,1,0,6,2,1,4,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1112.5605,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,13,1,1,533.33331,268473.25,0,0,1859.4512 -16672,20458,37211,37206,-9,-9,2,1,0,34,1,1,4,0,3,-9,6,3,0,0,4,0,0,0,2,0,-9,2,0,-23,0,0,0,1,57,3,3,3,-9,-9,2019,4,1,11,2,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,50,49,5,1,1,0,1,13,1,1,533.33331,268473.25,0,0,1859.4512 -16673,20459,37212,37214,-9,-9,1,1,1,39,1,0,1,0,3,-9,2,1,0,0,4,0,0,0,2,0,-9,10,0,-1,-67.56826,0,0,0,40,2,2,1,-9,-9,2019,1,2,7,0,0,53,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.150002,49.669998,26.26,55.880001,5,1,1,0,0,4,2,0,542.66669,-24310.779,0,0,378.8645 -16673,20459,37213,-9,37214,37212,3,1,1,9,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-882.22198,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,4,2,0,542.66669,-24310.779,0,0,378.8645 -16673,20459,37214,37212,-9,-9,2,1,0,40,1,0,1,0,2,-9,2,1,0,0,2,5.0457973,5.8438888,0,2,0,-9,10,0,1,-69.203484,0,0,1,39,3,4,1,-9,-9,2019,1,1,17,5,0,5,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.26,55.880001,59.150002,49.669998,1,1,1,0,0,4,2,0,542.66669,-24310.779,0,0,378.8645 -16674,20460,37215,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,0,2,0,7.4581046,7.3747301,3,0,0,0,-9,0,-945.72894,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2916207,7.2642722,0,0,47,35,-9,-9,2,1,1,0,0,5,3,1,486,177520.41,0,0,1508.1782 -16675,20461,37216,37217,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,0,3,0,6.4727311,6.1955066,1,0,-9,52,0,-5,216.15767,0,0,0,73,2,5,3,3,3,2019,4,1,11,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0215702,6.37818,0,0,51,46,60.02,56.419998,5,1,1,0,0,10,4,1,514,983133.38,0,0,4855.0391 -16675,20461,37217,37216,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,0,5,0,8.4295607,8.2636728,1,0,-9,52,0,5,-31.57914,0,0,0,68,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4946208,8.0893621,0,0,60.02,56.419998,51,46,6,1,1,0,0,10,4,1,514,983133.38,0,0,4855.0391 -16676,20462,37218,37219,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,0,3,0,7.1031561,6.9976993,1,0,-9,58,0,-3,-121.21909,0,0,0,82,2,4,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.13921885,7.0045991,0,0,53.349998,32.27,63,35.630001,5,1,1,0,0,7,3,1,797,988835.81,0,0,3721.0503 -16676,20462,37219,37218,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,0,4,0,7.5395203,7.9901967,1,0,-9,58,0,3,22.304672,0,0,0,79,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4849296,8.0384092,0,0,63,35.630001,53.349998,32.27,6,1,1,0,0,7,3,1,797,988835.81,0,0,3721.0503 -16677,20463,37220,37221,-9,-9,2,1,0,61,1,0,1,0,2,-9,4,3,0,1,3,0,7.1109309,7.1211762,2,0,-9,31,0,-17,64.287453,0,0,0,78,3,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.0186362,6.7340541,77.347321,1,42.360001,56.119999,48.200001,28.040001,5,1,1,0,0,8,3,1,1103,1506895.4,0,0,3441.8125 -16677,20463,37221,37220,-9,-9,1,1,1,78,1,0,1,0,3,-9,4,3,0,0,1,0,7.961328,7.9363518,2,0,-9,31,0,17,-172.78284,0,0,0,61,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,114.92783,10.654344,3.2516081,0,0,0,1,1,0,2.883862,8.0660963,0,0,48.200001,28.040001,42.360001,56.119999,4,1,1,0,0,8,3,1,1103,1506895.4,0,0,3441.8125 -16677,20464,37222,-9,37220,37221,3,1,0,25,2,0,1,0,2,-9,2,1,0,0,3,8.1207609,8.2481146,0,3,0,0,0,-9,0,-972.2583,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,41,42,15,1,0,-9,1,8.7979946,8.7979946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.720001,46.82,-9,-9,6,1,1,0,0,8,4,1,1003,31955.771,0,0,2211.9485 -16677,20464,37223,-9,37222,-9,4,1,1,4,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1035.7664,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,8,4,1,1003,31955.771,0,0,2211.9485 -16678,20465,37224,37225,-9,-9,1,1,0,55,1,0,0,0,2,-9,6,3,0,0,3,0,0,0,1,0,-9,10,0,-2,-112.33044,0,0,0,57,2,4,1,2,2,2019,3,2,18,6,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.009998,50.189999,56.18,51.02,5,1,1,0,0,12,4,1,527.5,358407,0,0,2440.936 -16678,20465,37225,37224,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,0,4,8.5387354,8.8217344,0,1,0,-9,10,0,2,-154.19724,0,0,0,55,2,3,3,3,3,2019,2,1,10,0,37,38,15,1,0,3,0,16.466221,16.466221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,51.02,38.009998,50.189999,3,1,1,0,0,12,4,1,527.5,358407,0,0,2440.936 -16679,20466,37226,37227,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,0,3,0,8.3190737,8.3689098,1,0,-9,51,0,1,8.0865498,0,0,0,73,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0999556,8.6058273,0,0,54.959999,53.169998,56.919998,49.389999,6,1,1,0,0,10,4,1,508.5,162546.39,0,0,4534.3389 -16679,20466,37227,37226,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,0,4,0,4.6584849,4.835743,1,0,-9,51,0,-1,85.541229,0,0,0,74,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1396427,4.887507,0,0,56.919998,49.389999,54.959999,53.169998,6,1,1,0,0,10,4,1,508.5,162546.39,0,0,4534.3389 -16680,20467,37228,37229,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,7.2656283,7.2529912,0,1,0,-9,2,0,-3,-116.71784,0,0,0,60,2,3,1,3,3,2019,1,2,21,9,22,26,15,1,1,1,0,8.5412083,8.5412083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.849998,56.98,55.959999,49.93,3,1,1,0,0,10,5,1,695,374683.75,0,0,2936.4397 -16680,20467,37229,37228,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,0,3,8.9663706,8.8585663,0,1,0,-9,2,0,3,26.264595,0,0,0,57,2,3,1,-9,-9,2019,1,1,7,0,50,50,15,1,0,1,0,21.501411,21.501411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.959999,49.93,34.849998,56.98,4,1,1,0,0,10,5,1,695,374683.75,0,0,2936.4397 -16681,20468,37230,37231,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,0,3,0,8.3504372,8.4420986,1,0,-9,6,0,16,33.878639,0,0,0,51,1,5,1,2,1,2019,3,1,7,1,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7157459,8.3467789,0,0,58.32,50.220001,51.669998,60.18,7,1,1,0,0,5,5,1,535.5,6963948.5,0,0,8223.5859 -16681,20468,37231,37230,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,0,5,8.7185364,8.6321373,0,1,0,-9,6,0,-16,3.9913046,0,0,0,67,2,3,3,2,2,2019,2,2,16,5,30,30,15,1,1,4,0,24.194424,24.194424,0,0,0,0,0,0,0,0,1,1,0,4.3187709,0,0,0,51.669998,60.18,58.32,50.220001,7,1,1,0,0,5,5,1,535.5,6963948.5,0,0,8223.5859 -16682,20469,37232,37233,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,2,0,6.3158364,6.530694,1,0,-9,28,0,20,41.784199,0,0,0,50,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,1,0,2.6380939,0,0,0,0,0,1,1,0,4.9428239,6.4422803,0,0,68.940002,17.02,62.490002,55.09,7,1,1,0,0,8,2,0,426,-37014.715,0,0,2112.6294 -16682,20469,37233,37232,-9,-9,2,1,0,50,1,0,0,0,3,-9,3,3,0,1,4,0,0,0,1,0,-9,7,0,-20,29.752991,0,0,0,70,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6768546,0,0,0,62.490002,55.09,68.940002,17.02,7,1,1,1,0,8,2,0,426,-37014.715,0,0,2112.6294 -16683,20470,37234,37235,-9,-9,2,1,1,36,1,0,2,0,2,-9,1,1,0,0,4,9.6275482,9.9683743,0,2,0,-9,6,0,3,33.924751,0,0,0,33,2,5,1,-9,-9,2019,1,1,10,1,50,50,15,1,0,1,0,43.530106,43.530106,0,0,0,0,0,0,0,0,1,1,0,5.0971313,0,0,0,51,56,57.060001,57.759998,5,1,1,0,0,10,5,1,498.5,77497.438,0,0,11539.945 -16683,20470,37235,37234,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,0,5,7.8572769,7.5798664,0,2,0,-9,15,0,-3,102.94225,0,0,1,36,2,4,1,1,2,2019,1,2,5,0,31,20,15,1,0,1,0,7.7203355,7.7203355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,51,56,7,1,1,0,0,10,5,1,498.5,77497.438,0,0,11539.945 -16683,20470,37236,-9,37235,37234,3,1,0,6,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1026.2897,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,10,5,1,498.5,77497.438,0,0,11539.945 -16683,20470,37237,-9,37235,37234,4,1,1,4,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1028.4708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,10,5,1,498.5,77497.438,0,0,11539.945 -16684,20471,37238,37241,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,0,4,8.4649544,8.4469109,0,2,0,-9,11,0,3,76.399345,0,0,0,33,1,4,1,1,1,2019,1,2,9,0,38,38,15,1,0,1,0,14.281127,14.281127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.389999,52.349998,43.48,60.970001,5,1,1,0,0,5,4,1,801.5,194384.83,0,0,3538.8882 -16684,20471,37239,-9,37241,37238,3,1,0,3,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-864.03204,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,5,4,1,801.5,194384.83,0,0,3538.8882 -16684,20471,37240,-9,37241,37238,4,1,1,1,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.5011,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,5,4,1,801.5,194384.83,0,0,3538.8882 -16684,20471,37241,37238,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,0,4,8.1564331,8.0334549,0,2,0,-9,10,0,-3,-108.83694,0,0,1,36,1,4,1,1,1,2019,1,1,13,3,33,30,15,1,0,1,0,9.7582502,9.7582502,0,0,0,0,0,0,0,0,1,1,0,.33415565,0,0,0,43.48,60.970001,53.389999,52.349998,6,1,1,0,0,5,4,1,801.5,194384.83,0,0,3538.8882 -16685,20472,37242,37243,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,0,4,8.9484177,8.7574911,5.1176114,1,0,-9,4,0,0,2.2590108,0,0,0,57,2,3,1,2,2,2019,1,2,10,0,37,37,15,1,0,1,0,24.391689,24.391689,0,0,0,0,0,0,0,0,0,0,0,3.6850255,5.8908858,0,0,48.869999,58.549999,48.299999,52.290001,6,1,1,0,0,10,5,1,1163,1486456.1,0,0,4641.96 -16685,20472,37243,37242,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,0,3,8.8764868,9.0045156,0,1,0,-9,4,0,0,-51.494743,0,0,0,57,1,4,1,-9,-9,2019,1,1,16,5,52,20,15,1,1,1,0,14.327967,14.327967,0,0,0,0,0,0,0,2,0,0,0,.085488036,0,.029420409,3,48.299999,52.290001,48.869999,58.549999,6,1,1,0,0,10,5,1,1163,1486456.1,0,0,4641.96 -16686,20473,37244,37245,-9,-9,2,1,0,28,1,0,0,0,1,0,7,2,0,0,4,6.1758404,5.9453487,0,1,0,-9,2,0,-4,13.621507,-9,1,1,32,1,5,1,-9,-9,2019,3,1,2,0,5,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.200001,57.490002,57.060001,57.759998,6,4,2,0,0,9,4,1,594.5,350849.59,0,0,2210.2944 -16686,20473,37245,37244,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,0,5,8.5957375,8.8908024,0,1,0,-9,2,0,4,94.587608,0,0,0,28,1,4,2,2,2,2019,2,2,6,0,39,39,15,1,0,2,0,16.862875,16.862875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,54.200001,57.490002,7,1,1,0,0,9,4,1,594.5,350849.59,0,0,2210.2944 -16687,20474,37246,37247,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,0,2,0,0,0,2,0,-9,24,0,0,36.912365,0,0,0,46,2,3,1,2,2,2019,1,2,6,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.830002,27.549999,51.66,54.880001,5,1,1,0,0,12,5,1,768,616128.25,0,0,2947.3955 -16687,20474,37247,37246,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,0,3,9.0914402,9.23769,0,2,0,-9,24,0,0,-10.36396,0,0,0,46,2,2,1,2,2,2019,1,1,9,0,68,52,15,1,0,1,0,18.492828,18.492828,0,0,0,0,0,0,0,0,1,1,0,3.7123578,0,0,0,51.66,54.880001,63.830002,27.549999,5,1,1,0,0,12,5,1,768,616128.25,0,0,2947.3955 -16688,20475,37248,-9,37250,37249,4,1,0,2,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1062.6672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,8,3,0,575.75,143690,0,0,2861.7949 -16688,20475,37249,37250,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,0,2,8.148324,7.8675094,0,2,0,-9,11,0,1,117.00618,0,0,0,33,2,4,1,3,3,2019,1,1,9,0,35,39,15,1,0,1,0,9.9247255,9.9247255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.889999,43.84,60.119999,54.799999,5,2,3,0,0,8,3,0,575.75,143690,0,0,2861.7949 -16688,20475,37250,37249,-9,-9,1,1,0,33,1,1,2,0,2,-9,2,1,0,0,4,7.8221989,7.9758425,0,2,0,-9,11,0,-1,27.174082,0,0,1,34,2,2,1,2,2,2019,1,2,7,0,32,30,15,1,0,1,0,10.792824,10.792824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.119999,54.799999,34.889999,43.84,4,2,3,0,0,8,3,0,575.75,143690,0,0,2861.7949 -16688,20475,37251,-9,37250,37249,3,1,1,7,2,1,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1074.4656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,8,3,0,575.75,143690,0,0,2861.7949 -16689,20476,37252,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,0,4,0,4.5650682,4.8473864,3,0,0,0,-9,0,-994.08258,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8037729,5.0140872,2.4178152,3,57.16,56.150002,-9,-9,6,1,1,0,0,7,2,1,409,188511.16,0,0,111.98936 -16690,20477,37253,-9,37254,-9,5,1,1,14,2,0,2,1,3,-9,-9,2,0,0,3,0,0,0,4,0,0,0,-9,0,-1045.7699,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,8,2,0,741,70778.664,0,0,1171.9231 -16690,20477,37254,-9,-9,-9,1,1,0,52,3,0,2,0,2,-9,3,3,0,0,3,0,6.443646,6.3793974,4,0,0,0,-9,0,-1160.7644,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9162107,0,0,0,41.799999,47,-9,-9,6,1,1,1,0,8,2,0,741,70778.664,0,0,1171.9231 -16690,20477,37255,-9,37254,-9,4,1,1,16,2,0,2,1,2,-9,7,2,0,0,3,0,0,0,4,0,0,0,-9,0,-929.83673,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.27,54.82,-9,-9,6,4,2,0,1,8,2,0,741,70778.664,0,0,1171.9231 -16690,20478,37256,-9,37254,-9,2,1,1,30,2,0,2,0,2,-9,2,1,0,0,4,8.0881796,8.1813383,0,3,0,0,0,-9,0,-975.84448,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,24,30,15,1,0,-9,1,12.421197,12.421197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,4,2,0,0,8,3,0,72,-1171.3308,0,0,2339.2441 -16690,20479,37257,-9,37254,-9,3,1,0,24,2,0,2,0,2,-9,2,1,0,0,4,7.0404959,6.860826,0,3,0,0,0,-9,0,-944.14172,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,28,12,38,30,15,1,1,-9,1,2.9431376,2.9431376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.790001,65.699997,-9,-9,2,4,2,0,0,8,2,0,228,65713.281,0,0,-692.52435 -16691,20480,37258,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,0,3,0,5.4344487,5.5520144,3,0,0,0,-9,0,-909.15076,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.6864395,19.532064,3,56.740002,55.09,-9,-9,7,1,1,0,0,1,2,1,379,10793.374,0,0,1833.5847 -16692,20481,37259,37260,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,0,4,9.0409069,8.5191174,0,1,0,-9,1,-9,-2,-61.300728,-9,0,0,32,1,4,1,-9,-9,2019,1,1,10,1,38,0,15,1,0,1,0,19.065947,19.065947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,25.139999,68.029999,5,1,1,0,0,7,5,0,639.5,1265277.8,0,0,3750.7944 -16692,20481,37260,37259,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,0,4,8.5323124,8.1228533,0,1,0,-9,1,-9,2,84.611679,-9,0,1,30,1,4,1,-9,-9,2019,1,2,17,5,38,0,15,1,1,1,0,12.413174,12.413174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.139999,68.029999,50,57,6,1,1,0,0,7,5,0,639.5,1265277.8,0,0,3750.7944 -16693,20482,37261,37262,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,0,2,0,6.7001414,6.9425225,1,0,-9,49,0,-2,55.786381,0,0,0,70,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4823928,6.1499329,0,0,59,31.190001,57.16,56.150002,6,1,1,0,0,2,2,1,922.5,835114.88,0,0,3383.2661 -16693,20482,37262,37261,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,0,4,0,7.03125,6.554359,1,0,-9,49,0,2,-44.11496,0,0,0,68,1,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1867652,6.8393564,0,0,57.16,56.150002,59,31.190001,5,1,1,0,0,2,2,1,922.5,835114.88,0,0,3383.2661 -16694,20483,37263,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,0,5,8.4587011,8.5583572,0,3,0,0,0,-9,0,-1053.6558,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,35,15,1,0,-9,0,12.444522,12.444522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,9,4,1,323,407492.41,0,0,1084.572 -16695,20484,37264,-9,-9,-9,1,1,1,71,2,0,0,0,1,-9,4,3,0,0,2,0,8.1505203,8.3751364,3,0,0,0,-9,0,-953.22559,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,0,-9,0,0,0,1,7.7756853,0,0,0,0,44.667187,0,1,1,0,5.9701929,8.2775431,0,0,66.610001,34.59,-9,-9,5,1,1,0,0,9,4,1,488,2129469.8,0,0,1904.848 -16696,20485,37265,37266,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,0,4,0,6.3432269,6.2969022,1,0,-9,15,0,-2,20.302896,0,0,0,71,1,2,3,3,3,2019,4,1,8,0,25,25,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,9.1107388,6.4548225,20.964157,1,49.970001,56.66,51.16,18.85,4,1,1,0,0,1,3,1,1227,678965,0,0,4827.4189 -16696,20485,37266,37265,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,0,2,0,7.7624607,7.6969938,1,0,-9,15,0,2,-64.391602,0,0,0,69,3,4,3,3,3,2019,4,2,13,4,0,0,15,4,1,4,0,0,0,1,0,18.588238,0,0,0,0,2,1,1,0,0,7.6900468,1.6900769,3,51.16,18.85,49.970001,56.66,6,1,1,0,0,1,3,1,1227,678965,0,0,4827.4189 -16697,20486,37267,37269,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,0,4,8.3014393,8.4134398,0,2,0,-9,9,0,-8,-104.01101,0,0,1,43,2,3,1,2,2,2019,1,2,13,3,30,30,15,1,0,1,0,16.688381,16.688381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.830002,57.200001,54.959999,53.169998,6,1,1,0,0,4,4,1,285.66666,315620.38,0,0,2167.0513 -16697,20486,37268,-9,37267,37269,3,1,1,2,2,1,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-925.13544,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,4,4,1,285.66666,315620.38,0,0,2167.0513 -16697,20486,37269,37267,-9,-9,2,1,1,43,1,1,1,0,2,-9,2,1,0,0,3,7.9295306,8.1341772,0,2,0,-9,9,0,8,-50.585262,0,0,0,35,1,4,1,2,-9,2019,1,1,6,0,35,35,15,1,0,1,0,13.296106,13.296106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.959999,53.169998,51.830002,57.200001,6,1,1,0,0,4,4,1,285.66666,315620.38,0,0,2167.0513 -16698,20487,37270,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,4,0,8.018362,7.739543,3,0,0,0,-9,0,-1126.3832,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.0087352,0,3.2190499,0,0,1,1,0,0,7.7737041,0,0,44.849998,42.66,-9,-9,6,1,1,0,0,6,3,1,679,748513.56,0,0,3206.2563 -16699,20488,37271,37273,-9,-9,2,1,1,53,1,0,1,0,2,-9,1,1,0,0,5,7.4706373,6.9157171,0,2,0,-9,6,0,13,-122.06293,0,0,0,40,2,4,1,-9,-9,2019,1,1,6,0,10,84,15,1,0,1,0,13.876815,13.876815,0,0,0,0,0,0,0,0,1,0,1,4.9192915,0,0,0,62.389999,56.709999,57.16,56.150002,7,1,1,0,0,2,3,0,216.66667,493506.06,0,0,2419.7078 -16699,20488,37272,-9,37273,37271,4,1,0,8,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-1080.7208,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,2,3,0,216.66667,493506.06,0,0,2419.7078 -16699,20488,37273,37271,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,0,4,7.5716047,7.6210556,0,2,0,-9,23,0,-13,107.53761,0,0,1,53,2,5,1,2,2,2019,1,2,6,0,24,20,15,1,0,1,0,11.672034,11.672034,0,0,0,0,0,0,0,0,1,0,1,3.4568827,0,0,0,57.16,56.150002,62.389999,56.709999,6,1,1,0,0,2,3,0,216.66667,493506.06,0,0,2419.7078 -16699,20489,37274,-9,37273,37271,3,1,1,19,2,0,1,0,2,-9,2,1,0,0,5,6.8204503,6.5563531,0,3,0,0,0,-9,0,-946.51044,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,70,84,15,1,0,-9,1,1.376042,1.376042,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.59,54.799999,-9,-9,7,1,1,0,0,2,2,0,540,105266.57,0,0,1367.2742 -16700,20490,37275,37276,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,1,2,0,7.4690919,7.6744585,1,0,-9,6,0,2,33.660061,0,0,0,75,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,4.233336,0,0,0,0,0,1,1,0,3.8806694,7.4525185,0,0,47.59,40.93,62.93,26.18,6,1,1,0,0,2,3,1,1974,851817.94,0,0,2188.9727 -16700,20490,37276,37275,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,0,3,0,7.2294049,7.1782589,1,0,-9,6,0,-2,8.5656986,0,0,0,77,2,2,3,3,3,2019,4,1,7,1,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.2259464,29.15638,1,62.93,26.18,47.59,40.93,6,1,1,0,0,2,3,1,1974,851817.94,0,0,2188.9727 -16701,20491,37277,37278,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,0,3,7.0517082,6.8698592,0,1,0,-9,8,0,3,136.37662,0,0,0,56,2,4,1,3,3,2019,1,2,10,0,30,30,15,1,0,1,0,4.6843433,4.6843433,0,0,0,0,0,0,0,0,0,0,0,3.2638946,0,0,0,57.330002,53.459999,59.139999,52.5,6,1,1,0,0,9,5,1,1135.5,2060478.5,0,0,7783.9834 -16701,20491,37278,37277,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,0,4,9.613739,9.9006233,0,1,0,-9,8,0,-3,-52.187859,0,0,0,59,2,3,1,2,3,2019,1,1,9,0,50,50,15,1,0,1,0,37.911316,37.911316,0,0,0,0,0,0,0,0,0,0,0,2.9615724,0,0,0,59.139999,52.5,57.330002,53.459999,6,1,1,0,0,9,5,1,1135.5,2060478.5,0,0,7783.9834 -16701,20492,37279,-9,37278,37277,3,1,0,19,2,0,0,0,2,0,7,2,0,0,4,0,0,0,3,0,0,0,-9,0,-1006.8698,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3625131,0,0,0,49.060001,58.639999,-9,-9,6,1,1,0,0,9,1,1,498,158832.19,0,0,386.74673 -16702,20493,37280,-9,37281,37283,3,1,0,17,2,0,2,1,2,0,7,2,0,0,4,6.2777157,6.3013911,0,2,0,0,0,-9,0,-924.27039,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.669998,49.189999,-9,-9,6,1,1,0,0,2,3,0,418.75,161550.94,0,0,2818.825 -16702,20493,37281,37283,-9,-9,1,1,0,41,1,0,2,0,2,-9,3,3,0,1,2,0,0,0,2,0,-9,11,0,-10,-75.769287,0,0,1,51,2,4,1,3,3,2019,3,2,14,4,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.679672,3,42.549999,34.950001,59.529999,56.439999,6,1,1,1,0,2,3,0,418.75,161550.94,0,0,2818.825 -16702,20493,37282,-9,37281,37283,4,1,1,8,2,0,2,1,3,-9,-9,2,0,0,4,0,0,0,2,0,0,0,-9,0,-909.18915,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,2,3,0,418.75,161550.94,0,0,2818.825 -16702,20493,37283,37281,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,0,4,8.3922415,8.4209242,0,2,0,-9,11,0,10,-45.037235,0,0,0,41,2,2,3,2,-9,2019,2,1,7,0,45,37,15,1,0,3,0,13.155183,13.155183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.529999,56.439999,42.549999,34.950001,7,1,1,0,0,2,3,0,418.75,161550.94,0,0,2818.825 -16703,20494,37284,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,0,3,8.7330732,8.665966,0,3,0,0,0,-9,0,-1059.1514,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,37,15,1,0,-9,0,15.374531,15.374531,0,0,0,0,0,0,0,2,1,1,0,0,0,2.2302556,3,49.049999,50.32,-9,-9,5,1,1,0,0,6,5,1,910,560109.63,0,0,1257.4655 -16704,20495,37285,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,0,4,7.9068856,8.2172365,0,3,0,0,0,-9,0,-961.29523,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,46,40,15,1,0,-9,0,7.5506334,7.5506334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.490002,57.57,-9,-9,6,1,1,0,0,13,4,0,160,0,0,0,1939.9629 -16705,20496,37286,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,0,3,0,5.0077553,4.3005385,3,0,0,0,-9,0,-1029.0951,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7204819,4.956923,0,0,66.370003,38.360001,-9,-9,6,1,1,0,0,10,2,1,319,-4804.5293,0,0,-1177.6039 -16706,20497,37287,-9,-9,-9,1,1,1,58,3,0,1,0,3,-9,8,3,1,1,1,0,0,0,4,0,0,0,-9,0,-896.04913,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6966925,0,0,0,19.01,22.639999,-9,-9,4,1,1,0,1,5,1,0,436,27948.439,0,0,1311.6984 -16706,20498,37288,-9,37289,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,0,4,0,0,0,4,0,0,0,-9,0,-1190.3457,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,5,1,0,503.5,120733.77,0,0,451.35992 -16706,20498,37289,-9,-9,-9,3,1,0,45,2,0,1,0,3,-9,3,3,0,0,4,0,0,0,4,0,0,0,-9,0,-916.87958,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.8170652,3,41.720001,37.360001,-9,-9,3,1,1,1,0,5,1,0,503.5,120733.77,0,0,451.35992 -16707,20499,37290,37291,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,0,5,8.7072191,8.4916563,0,2,0,-9,26,0,6,173.93417,0,0,0,45,2,2,1,-9,-9,2019,1,2,11,0,30,30,15,1,0,1,0,22.748903,22.748903,0,0,0,0,0,0,0,2,1,1,0,1.3978566,0,4.7044582,3,48.959999,60.259998,55.200001,49.400002,6,1,1,0,0,12,4,1,441,1503215.6,0,0,3629.3442 -16707,20499,37291,37290,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,0,2,8.0963221,8.0597458,0,2,0,-9,26,0,-6,-172.5424,0,0,0,51,1,5,1,3,3,2019,1,1,7,0,28,24,15,1,0,1,0,14.399842,14.399842,0,0,0,0,0,0,0,7,1,1,0,7.3137274,0,0,3,55.200001,49.400002,48.959999,60.259998,6,1,1,0,0,12,4,1,441,1503215.6,0,0,3629.3442 -16708,20500,37292,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,0,3,0,5.4802728,5.1821117,3,0,-9,0,1,0,-1045.209,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3174748,0,0,52,48,-9,-9,5,1,1,0,0,11,2,0,461,-39632.094,0,0,2916.687 -16708,20501,37293,-9,-9,-9,2,1,0,58,3,0,0,0,2,-9,97,3,0,1,3,0,0,0,3,0,-9,0,1,0,-1059.373,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.622892,3,49,48,-9,-9,5,1,1,0,0,11,1,0,497,-129625.45,0,0,970.30237 -16709,20502,37294,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,4,3,0,0,5,0,8.4351254,8.015502,3,0,0,0,-9,0,-962.45343,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2348642,0,0,57.060001,57.759998,-9,-9,7,1,1,0,0,13,4,1,256,911319.06,0,0,1437.5867 -16709,20503,37295,-9,37294,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,0,4,8.4073248,8.3956966,0,3,0,0,0,-9,0,-999.89685,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,40,40,15,1,0,-9,1,15.643285,15.643285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,13,4,1,578,58821.105,0,0,1621.266 -16710,20504,37296,37297,-9,-9,1,1,0,57,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,33,0,-3,0,0,0,0,60,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.2776985,2,32.040001,19.42,46,39,3,1,1,0,0,11,1,1,1453.5,-99055.836,0,0,2381.8149 -16710,20504,37297,37296,-9,-9,2,1,1,60,1,0,0,0,3,-9,4,3,0,1,2,0,0,0,1,0,-9,33,0,3,0,0,0,0,57,3,2,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46,39,32.040001,19.42,5,1,1,0,0,11,1,1,1453.5,-99055.836,0,0,2381.8149 -16711,20505,37298,37299,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,0,5,0,0,0,1,0,-9,5,0,0,37.073677,0,1,0,28,1,4,1,-9,-9,2019,1,2,9,2,0,58,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7837977,0,0,0,47.580002,63.43,42.220001,58.790001,6,1,1,0,0,8,5,1,377,354672.63,0,0,2748.6543 -16711,20505,37299,37298,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,0,4,9.2835178,9.1578178,0,1,0,-9,5,0,0,129.49405,0,1,1,28,1,5,1,-9,-9,2019,1,1,13,3,41,42,15,1,0,1,0,27.912054,27.912054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.220001,58.790001,47.580002,63.43,6,1,1,0,0,8,5,1,377,354672.63,0,0,2748.6543 -16712,20506,37300,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,0,5,0,0,0,3,0,-9,0,1,0,-1040.0917,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.060001,57.759998,-9,-9,6,1,1,0,0,4,1,1,469,172094.5,0,0,1016.4125 -16713,20507,37301,37302,-9,-9,1,1,1,81,1,0,0,0,3,-9,8,3,1,1,3,0,0,0,1,0,-9,58,0,5,0,0,0,0,76,3,3,3,3,3,2019,4,2,9,1,0,0,15,3,0,3,0,0,0,1,0,131.61334,0,0,0,0,0,1,1,0,0,0,0,0,54,46,51,46,6,1,1,0,0,13,1,1,321,-78381.469,0,0,2333.6904 -16713,20507,37302,37301,-9,-9,2,1,0,76,1,0,0,0,3,-9,6,3,0,0,3,0,0,0,1,0,-9,58,0,-5,0,0,0,0,81,3,3,3,3,3,2019,4,1,10,1,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.72285,1,51,46,54,46,6,1,1,0,0,13,1,1,321,-78381.469,0,0,2333.6904 -16714,20508,37303,37304,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,0,5,9.0657949,8.8685484,0,1,0,-9,9,0,-1,21.036833,0,0,0,38,1,4,1,-9,-9,2019,1,2,10,1,43,43,15,1,0,1,0,18.43298,18.43298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.790001,38.209999,55.439999,52.990002,6,1,1,0,0,7,5,1,163.5,249773.98,0,0,7047.0513 -16714,20508,37304,37303,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,0,4,8.7794218,8.6144457,0,1,0,-9,9,0,1,102.21555,0,0,1,37,1,5,1,2,3,2019,1,1,8,0,46,48,15,1,0,1,0,23.124931,23.124931,0,0,0,0,0,0,0,0,0,0,0,6.7372704,0,0,0,55.439999,52.990002,55.790001,38.209999,6,2,3,0,0,7,5,1,163.5,249773.98,0,0,7047.0513 +idhh,idbenefitunit,idperson,idpartner,idmother,idfather,pno,swv,dgn,dag,dcpst,dnc02,dnc,ded,deh_c3,sedex,jbstat,les_c3,dlltsd,dhe,yplgrs_dv,ypnbihs_dv,yptciihs_dv,dhhtp_c4,ssscp,dcpen,dcpyy,dcpex,dcpagdf,ynbcpdf_dv,der,sedag,sprfm,dagsp,dehsp_c3,dhesp,lessp_c3,dehm_c3,dehf_c3,stm,lesdf_c4,ppno,dhm,scghq2_dv,lhw,l1_lhw,dct,les_c4,dhm_ghq,lessp_c4,adultchildflag,potential_earnings_hourly,l1_potential_earnings_hourly,need_socare,formal_socare_hrs,partner_socare_hrs,daughter_socare_hrs,son_socare_hrs,other_socare_hrs,formal_socare_cost,econ_benefits,econ_benefits_nonuc,econ_benefits_uc,ypncp,ypnoab,aidhrs,carewho,dhe_mcs,dhe_pcs,dls,dot,unemp,financial_distress,drgn1,ydses_c5,dhh_owned,dwt,liquid_wealth,tot_pen,nvmhome +1,1,1,2,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,8.520363875188167,8.069688982450222,0,1,0,-9,2,0,1,-53.74232865872161,0,0,0,48,3,2,3,-9,-9,2019,2,3,12,0,40,0,15,1,0,3,0,11.9385548729091,11.9385548729091,0,0,0,0,0,0,0,1,0,1,0,0,17.21600089964951,2,30.32,59.62,6,1,0,0,9,3,0,183.5,0,0,0 +1,1,2,1,-9,-9,3,1,1,48,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,2,0,-1,-87.79874483377357,0,0,0,49,2,4,1,-9,-9,2019,3,2,20,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.6834939840792895,0,32.29094231841341,3,42.26,18.48,5,1,1,0,9,3,0,183.5,0,0,0 +1,2,3,-9,1,2,1,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.443746921658093,7.456789604417891,0,3,0,0,0,-9,0,-1057.335624945745,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,3,44,56,15,1,3,-9,1,3.989857041193018,3.989857041193018,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.4,58.62,4,1,0,0,9,3,0,752,0,0,0 +2,3,4,5,-9,-9,2,1,0,76,1,0,0,0,2,-9,2,1,0,2,5.789634344505625,7.645037555382979,7.800456236047572,1,0,-9,55,0,-3,-9.117179743010883,0,0,0,79,1,2,3,2,1,2019,2,1,12,0,12,12,15,1,0,4,0,3.314704965402651,3.314704965402651,0,0,0,0,0,0,0,1,1,0,7.604300888550998,7.90703421610237,0,0,55.65,30.31,6,1,0,0,9,4,1,255.5,0,0,0 +2,3,5,4,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,2,0,7.576782014931075,7.220132160284991,1,0,-9,55,0,3,113.5804896106642,0,0,0,76,2,2,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.157404672692799,7.199031705377425,0,0,61.44,16.88,5,1,0,0,9,4,1,255.5,0,0,0 +3,4,6,-9,-9,-9,3,1,1,25,2,0,4,0,2,-9,2,1,0,4,8.052033299002259,8.061218455930195,0,3,0,-9,0,-9,0,-999.1576831422864,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,1,32,0,15,1,1,-9,1,13.37982102317809,13.37982102317809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,55.39,3,4,0,1,8,3,1,582,0,0,0 +4,5,7,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,3,8.878832293612943,8.995730542569431,0,1,0,-9,8,0,-6,-102.1733681543915,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,2,21,8,38,43,15,1,8,-9,0,23.42129524985823,23.42129524985823,0,0,0,0,0,0,0,0,0,0,3.673425205186903,0,0,0,38.57,58.06,3,1,0,0,12,5,1,390,0,0,0 +5,6,8,10,-9,-9,2,1,0,40,1,0,1,0,2,-9,2,1,0,5,8.081203358365862,7.845247469909634,0,2,0,-9,21,0,-7,12.97596479612004,0,0,1,47,2,5,1,2,2,2019,1,1,9,0,30,25,15,1,0,1,0,7.93211863041132,7.93211863041132,0,0,0,0,0,0,0,1,1,0,1.830742929781288,0,0,0,54.1,59.11,7,1,0,0,10,3,1,538,0,0,0 +5,6,9,-9,8,10,4,1,1,17,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-904.4743387993669,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,54.04,6,1,0,0,10,3,1,538,0,0,0 +5,6,10,8,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,5,7.066853305360261,7.269843799224264,0,2,0,-9,21,0,7,10.38805584051032,0,0,0,40,2,5,1,-9,-9,2019,1,2,8,0,50,55,15,1,0,1,0,2.934569876034354,2.934569876034354,0,0,0,0,0,0,0,1,1,0,9.358560542713661,0,0,0,48.18,61.8,6,1,0,0,10,3,1,538,0,0,0 +5,7,11,-9,8,10,3,1,1,18,2,0,1,0,2,1,2,1,0,4,7.509347022865141,7.02337706691605,0,3,0,0,0,-9,0,-886.0943393347845,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,15,0,15,1,0,-9,1,13.24296871548552,13.24296871548552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,6,1,0,0,10,3,1,75,0,0,0 +6,8,12,-9,14,-9,6,1,0,2,2,1,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.1391354295183,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,7,2,0,798,0,0,0 +6,8,13,-9,14,-9,5,1,1,5,2,1,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-925.8963131784679,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,7,2,0,798,0,0,0 +6,8,14,-9,-9,-9,1,1,0,41,3,1,5,0,1,-9,2,1,0,5,7.541605063495703,7.186996329165522,0,4,0,0,0,-9,0,-871.0549535494573,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,25,24,15,1,1,-9,0,6.687225927404917,6.687225927404917,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,4,0,0,7,2,0,798,0,0,0 +6,8,15,-9,14,-9,4,1,1,8,2,1,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-888.2603293552194,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,7,2,0,798,0,0,0 +7,9,16,17,-9,-9,2,1,0,57,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,40,0,-10,-1.866708368763851,0,0,0,67,2,3,3,2,2,2019,4,1,12,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,49,5,3,0,0,8,2,0,579.5,0,0,0 +7,9,17,16,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,6.437664864969157,6.585661695171063,1,0,-9,40,0,10,58.44072341479981,0,0,0,57,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.081347151321304,0,3,51,48,5,3,0,0,8,2,0,579.5,0,0,0 +7,10,18,-9,16,17,3,1,0,27,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-976.9755863353869,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,43,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,6,3,1,0,8,1,0,355,0,0,0 +7,11,19,-9,16,17,4,1,1,22,2,0,0,0,1,-9,2,1,0,5,7.972067970566071,7.889383922849977,0,3,0,0,0,-9,0,-1058.972039784486,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,1,0,37,36,15,1,0,-9,1,9.638382905029518,9.638382905029518,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.32,52.05,4,3,0,0,8,4,0,173,0,0,0 +8,12,20,-9,22,21,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.6816268103603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,0,1122.666666666667,0,0,0 +8,12,21,22,-9,-9,1,1,1,23,1,0,1,0,2,-9,2,1,0,3,7.982701892595024,8.055577586869394,3.4608515300223,2,0,-9,4,0,2,76.08930366982769,0,1,0,21,2,4,1,-9,-9,2019,1,2,22,9,39,49,15,1,9,1,0,9.122724944294717,9.122724944294717,0,0,0,0,0,0,0,1,1,0,3.419228238621962,0,.3722993549748368,3,42.39,52.15,6,1,0,0,12,3,0,1122.666666666667,0,0,0 +8,12,22,21,-9,-9,2,1,0,21,1,0,1,0,2,-9,2,1,0,4,6.944773557040512,6.954456438464329,0,2,0,-9,4,0,-2,-8.382100474190628,0,1,1,23,2,3,1,-9,-9,2019,1,1,23,8,15,0,15,1,8,1,0,7.785115452027564,7.785115452027564,0,0,0,0,0,0,0,1,1,0,0,0,6.075927426981879,3,15.51,67.33,2,1,0,0,12,3,0,1122.666666666667,0,0,0 +9,13,23,-9,26,24,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.1794965051547,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,10,5,1,266.75,0,0,0 +9,13,24,26,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,3,9.16767487166546,8.846940865018849,0,2,0,-9,30,0,5,80.68960699747107,0,0,0,50,1,5,1,2,2,2019,1,1,10,0,40,39,15,1,0,1,0,23.09376543480958,23.09376543480958,0,0,0,0,0,0,0,0,0,0,5.874379201096493,0,0,0,59.88,48.2,6,1,0,0,10,5,1,266.75,0,0,0 +9,13,25,-9,26,24,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.15168235856,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,10,5,1,266.75,0,0,0 +9,13,26,24,-9,-9,1,1,0,50,1,0,2,0,1,-9,2,1,0,5,9.853872137898462,9.792996744677717,4.569431463308638,2,0,-9,30,0,-5,-15.57543521831273,0,0,0,55,1,3,1,2,2,2019,1,2,11,0,53,46,15,1,0,1,0,31.42186573075264,31.42186573075264,0,0,0,0,0,0,0,0,0,0,6.958592730077588,0,0,0,33.63,64.61,6,1,0,0,10,5,1,266.75,0,0,0 +10,14,27,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-963.2206274664865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.539892438155089,0,0,0,21.96,32.36,2,1,0,0,2,1,1,75,0,0,0 +11,15,28,-9,29,30,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1044.997762348942,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,6,5,1,2723.666666666667,0,0,0 +11,15,29,30,-9,-9,2,1,0,31,1,1,1,0,2,-9,1,1,0,5,6.944310997991225,7.211785307704585,0,2,0,-9,5,0,-2,97.12672545838831,0,0,1,33,2,5,1,-9,-9,2019,1,1,6,0,1,0,15,1,0,1,0,140.554628312205,140.554628312205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,57.7,7,1,0,0,6,5,1,2723.666666666667,0,0,0 +11,15,30,29,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,5,9.253580024997255,9.287335825798094,0,2,0,-9,5,0,2,85.45331722744305,0,0,0,31,2,5,1,3,2,2019,1,2,6,0,47,55,15,1,0,1,0,31.27453676029658,31.27453676029658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,6,1,0,0,6,5,1,2723.666666666667,0,0,0 +12,16,31,-9,32,33,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.383435726369,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,10,4,1,604.3333333333334,0,0,0 +12,16,32,33,-9,-9,1,1,0,50,1,0,2,0,1,-9,2,1,0,3,7.781143144862672,7.171569834712352,0,2,0,-9,16,0,0,34.10568137407485,0,0,0,50,2,4,1,2,1,2019,1,2,11,0,32,24,15,1,0,1,0,6.79537617940094,6.79537617940094,0,0,0,0,0,0,0,1,1,0,.3800745682891795,0,0,0,55.68,46.02,3,2,0,0,10,4,1,604.3333333333334,0,0,0 +12,16,33,32,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.894218738871377,8.749020469996157,0,2,0,-9,6,0,0,-76.8806897990314,0,0,0,50,1,3,1,2,2,2019,1,1,9,0,40,48,15,1,1,1,0,22.11502543476709,22.11502543476709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,10,4,1,604.3333333333334,0,0,0 +13,17,34,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,4,7.667497020503944,7.708822466913275,6.598225531363092,3,0,0,0,-9,0,-966.9437107288887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,20,15,1,0,-9,0,12.29427302121179,12.29427302121179,0,0,0,0,0,0,0,1,1,0,0,6.649368877666642,0,0,60.3,49.25,6,1,0,0,13,3,1,420,0,0,0 +14,18,35,37,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,5,8.191681501565007,7.98575867936483,0,2,0,-9,16,0,6,-41.86935309696103,0,0,0,41,1,5,1,2,2,2019,1,1,7,0,29,28,15,1,0,1,0,11.57153855121772,11.57153855121772,0,0,0,0,0,0,0,0,0,0,3.6224439473335,0,0,0,46.64,54.2,6,1,0,0,4,5,1,797.75,0,0,0 +14,18,36,-9,37,35,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.804504063342,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,4,5,1,797.75,0,0,0 +14,18,37,35,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,9.182879743502385,9.178874212858283,0,2,0,-9,16,0,-6,-4.440389941525876,0,0,1,47,2,5,1,2,3,2019,1,2,13,3,50,50,15,1,3,1,0,18.52371610385089,18.52371610385089,0,0,0,0,0,0,0,0,0,0,.4894980689276059,0,0,0,44.42,62.06,6,1,0,0,4,5,1,797.75,0,0,0 +14,18,38,-9,37,35,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.0266953295117,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,4,5,1,797.75,0,0,0 +15,19,39,40,-9,-9,2,1,0,20,1,1,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,-5,-4.281804915037895,-9,1,1,25,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,4,3,1,1118,0,0,0 +15,19,40,39,-9,-9,1,1,1,25,1,1,1,0,1,-9,2,1,0,4,8.190552134190353,8.282879267834444,0,2,0,1,1,-9,5,-9.621708819879444,0,1,0,20,3,3,3,3,2,2019,2,2,12,1,38,37,15,1,1,3,0,12.08815365320929,12.08815365320929,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.1,49.64,6,1,0,0,4,3,1,1118,0,0,0 +15,19,41,-9,39,40,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-872.9830751342498,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,3,1,1118,0,0,0 +16,20,42,-9,45,44,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-803.8515017447671,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,0,1048.5,0,0,0 +16,20,43,-9,45,44,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.7865718022354,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,3,0,1048.5,0,0,0 +16,20,44,45,-9,-9,1,1,1,41,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,20,0,0,-78.13353643294136,0,0,0,41,1,4,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.42,55.98,6,1,0,0,4,3,0,1048.5,0,0,0 +16,20,45,44,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.253618167658777,8.261089374221205,0,2,0,-9,20,0,0,-154.7948739090943,0,0,1,41,2,3,3,-9,2,2019,2,1,7,0,40,42,15,1,0,3,0,9.856438076526633,9.856438076526633,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,4,3,0,1048.5,0,0,0 +17,21,46,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,1,1,0,4,8.003272180851521,7.348015816002592,3.2279098338354,3,0,0,0,-9,0,-1055.355856033668,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,2,0,15,1,0,-9,0,157.5756137153073,157.5756137153073,0,0,0,0,0,0,0,1,1,0,6.879189118271499,2.850181573777196,3.449039454387345,3,46.16,53.09,5,1,0,0,9,3,0,342,0,0,0 +18,22,47,-9,49,48,3,1,0,17,2,0,0,1,3,0,7,2,0,4,7.153889432081839,7.199356046967495,0,1,0,0,0,-9,0,-1005.159742787453,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,3,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,5,0,0,8,3,0,2812.333333333333,0,0,0 +18,22,48,49,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,4,7.611018448249662,7.313497868662008,0,1,0,-9,7,0,4,-181.2593369932913,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,0,24,0,15,1,1,1,0,8.112488410699926,8.112488410699926,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,8,3,0,2812.333333333333,0,0,0 +18,22,49,48,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,4,6.490709438941308,6.573030814868776,0,1,0,-9,25,0,-4,52.81561084671338,0,0,1,47,2,4,1,3,3,2019,1,2,10,0,15,0,15,1,1,1,0,4.144938966664513,4.144938966664513,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,5,0,0,8,3,0,2812.333333333333,0,0,0 +18,23,50,-9,49,48,4,1,0,19,2,0,0,1,2,0,7,2,0,4,6.439604621152025,6.570249677951304,0,3,0,0,0,-9,0,-1047.24684985996,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,6,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,5,0,0,8,2,0,645,0,0,0 +19,24,51,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,4,8.254137990997073,8.481802519535833,0,3,0,0,0,-9,0,-980.3026320745261,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,37,52,15,1,1,-9,0,13.31182666384417,13.31182666384417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,1,1,0,0,7,4,0,445,0,0,0 +20,25,52,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,5.591601051543812,5.392812996265032,3,0,0,0,-9,0,-910.7631756816666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.560958406186058,0,0,52.23,55.6,7,1,0,0,6,2,1,1014,0,0,0 +21,26,53,54,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.259060397280663,7.923879454836957,1,0,-9,9,0,-3,-5.854501301772693,0,0,0,73,2,4,3,2,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.347859541277699,7.826559094939771,0,0,49.52,28.25,7,1,0,0,11,4,1,1559.5,0,0,0 +21,26,54,53,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,7.615016454198133,7.726653972956595,1,0,-9,9,0,3,-2.022637469072345,0,0,0,70,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.60465402878787,0,0,54.79,55.86,6,1,0,0,11,4,1,1559.5,0,0,0 +22,27,55,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-951.3777816329983,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,7,1,1,1812,0,0,0 +23,28,56,57,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,4,7.911581029156306,8.07281378862147,0,1,0,-9,9,0,-3,104.3111186903138,0,0,1,34,3,4,1,-9,-9,2019,1,1,10,0,38,37,15,1,0,1,0,8.572029333742798,8.572029333742798,0,0,0,0,0,0,0,0,0,0,.9737837571187324,0,0,0,57.16,56.15,6,1,0,0,5,4,1,322.5,0,0,0 +23,28,57,56,-9,-9,1,1,1,34,1,0,0,0,3,-9,2,1,0,4,7.992960496336957,8.281180531389607,0,1,0,-9,9,0,3,40.38074841099958,0,0,0,31,1,4,1,3,3,2019,1,2,9,0,40,40,15,1,0,1,0,13.14565381293575,13.14565381293575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,5,4,1,322.5,0,0,0 +24,29,58,-9,-9,-9,1,1,0,35,3,0,3,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-971.6887140403317,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,25,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.71579362289877,3,7.27,64.23999999999999,4,5,0,0,9,1,0,2393.5,0,0,0 +24,29,59,-9,58,-9,3,1,1,16,2,0,3,1,3,-9,7,2,0,1,0,0,0,4,0,0,0,-9,0,-1017.34062546894,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.288461981659068,0,0,0,27.72,53.89,4,5,0,1,9,1,0,2393.5,0,0,0 +25,30,60,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,2,7.8635715906465,7.647743378440598,0,3,0,0,0,-9,0,-947.7571433737155,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,38,37,15,1,1,-9,0,8.313392562894284,8.313392562894284,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,45.8,3,1,0,0,4,3,0,364,0,0,0 +26,31,61,-9,65,62,6,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.133282051218,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,3,0,532.8333333333334,0,0,0 +26,31,62,65,-9,-9,2,1,1,36,1,0,4,0,2,-9,2,1,0,4,8.840194739820165,8.718749839473364,0,2,0,-9,17,0,0,-58.7908767900299,0,0,0,36,1,5,1,3,3,2019,1,1,9,0,49,43,15,1,0,1,0,13.59557549714946,13.59557549714946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,0,1,3,0,532.8333333333334,0,0,0 +26,31,63,-9,65,62,3,1,0,15,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-980.1405990348185,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,1,3,0,532.8333333333334,0,0,0 +26,31,64,-9,65,62,4,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.0512024214208,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,1,3,0,532.8333333333334,0,0,0 +26,31,65,62,-9,-9,1,1,0,36,1,0,4,0,1,-9,2,1,0,5,7.465852593913874,7.37969684755762,0,2,0,-9,17,0,0,46.59725325536674,0,0,1,36,2,4,1,-9,-9,2019,1,2,20,7,26,26,15,1,7,1,0,8.167702269074031,8.167702269074031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.83,63.65,5,1,0,0,1,3,0,532.8333333333334,0,0,0 +26,31,66,-9,65,62,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.7053093863645,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,3,0,532.8333333333334,0,0,0 +27,32,67,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,4,3,0,2,0,7.238912661704847,7.340599973728093,3,0,0,0,-9,0,-1120.83396295897,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.079928063831892,7.615889162274843,8.197643371927258,3,39.97,44.05,4,1,0,0,2,3,1,213,0,0,0 +28,33,68,72,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,4,6.648096671857433,6.909685755686645,6.11370588067392,2,0,-9,11,0,-3,-60.61458936481258,0,0,1,34,1,3,1,2,2,2019,1,2,11,1,18,15,15,1,1,1,0,4.297767760749933,4.297767760749933,0,0,0,0,0,0,0,1,0,1,6.085899855252483,0,0,0,39.56,56.04,5,1,0,0,2,3,1,2252.8,0,0,0 +28,33,69,-9,68,72,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.027837746556,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,2,3,1,2252.8,0,0,0 +28,33,70,-9,68,72,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.6405216958022,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,2,3,1,2252.8,0,0,0 +28,33,71,-9,68,72,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.5723365556332,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,1,0,0,2,3,1,2252.8,0,0,0 +28,33,72,68,-9,-9,2,1,1,34,1,0,3,0,1,-9,2,1,0,3,8.323321302388608,8.553514205424696,0,2,0,-9,11,0,3,-29.25905542373743,0,0,0,31,2,4,1,2,2,2019,1,1,14,3,40,40,15,1,3,1,0,15.92527571088826,15.92527571088826,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.42,58.05,3,1,0,0,2,3,1,2252.8,0,0,0 +29,34,73,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-975.1243154027853,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.553517014530954,7.365262707279331,0,0,1,1,0,0,0,0,0,45.81,23.54,5,3,0,0,12,1,1,577,0,0,0 +29,35,74,75,73,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,2,8.042728928361749,8.196452309290621,0,1,0,-9,10,0,-2,-121.9243698744118,0,0,0,50,2,2,1,3,-9,2019,1,3,13,1,44,37,15,1,1,1,0,7.271531754096919,7.271531754096919,0,0,0,0,0,0,0,1,1,0,0,0,16.09284694232056,3,38.54,43.6,5,3,0,0,12,4,1,1491,0,0,0 +29,35,75,74,-9,-9,3,1,0,50,1,0,0,0,2,-9,2,1,0,2,8.089846445532624,8.089137459126814,0,1,0,-9,10,0,2,-5.634834937256337,0,0,0,48,2,2,1,2,2,2019,1,2,12,0,28,30,15,1,0,1,0,13.06104321845047,13.06104321845047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,40,5,3,0,0,12,4,1,1491,0,0,0 +29,36,76,-9,75,74,4,1,0,22,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-903.7015706380616,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.85,54.89,5,3,0,0,12,1,1,318,0,0,0 +30,37,77,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,2,0,5.346271158806729,5.234769948949991,3,0,0,0,-9,0,-1007.016918596526,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.233185885796673,0,0,45.07,25.5,5,1,0,0,10,2,0,141,0,0,0 +31,38,78,79,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.571210921771742,6.535951295936418,1,0,-9,6,0,3,27.99877829162251,0,0,0,69,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.529149220377448,6.854742450135157,0,0,60.12,54.8,6,1,0,0,4,3,1,503.5,0,0,0 +31,38,79,78,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,8.03277490127857,7.805748278990499,1,0,-9,6,0,-3,83.54705525655493,0,0,0,72,2,4,3,2,2,2019,4,1,6,0,0,9,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.824040737210125,0,0,63.24,42.39,7,1,0,0,4,3,1,503.5,0,0,0 +32,39,80,-9,82,81,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-966.7864441290027,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,882,0,0,0 +32,39,81,82,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,3,8.37445803709813,8.662931770735433,0,2,0,-9,2,0,1,7.522315003572587,0,1,0,25,1,3,1,-9,-9,2019,1,1,11,0,40,50,15,1,0,1,0,14.88133397263094,14.88133397263094,0,0,0,0,0,0,0,1,1,0,.4805975503446439,0,0,0,52,54.51,5,1,0,0,6,5,1,882,0,0,0 +32,39,82,81,-9,-9,1,1,0,25,1,1,1,0,1,-9,2,1,0,3,8.655705566872962,8.665680846938169,0,2,0,-9,2,0,-1,-9.705691967451809,0,1,1,26,2,3,1,1,1,2019,1,2,12,3,38,38,15,1,3,1,0,19.13988303886379,19.13988303886379,0,0,0,0,0,0,0,1,1,0,2.036392797943622,0,0,0,45.84,44.91,6,1,0,0,6,5,1,882,0,0,0 +33,40,83,84,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,6.380943795846997,6.609912345801293,1,0,-9,19,0,4,-30.30258986842558,0,0,0,67,3,1,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.898162319338105,6.413378418945408,13.8817569427013,1,59.32,36.25,6,1,0,0,2,2,0,824.5,0,0,0 +33,40,84,83,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,1,0,4.979530437422722,5.044217727355575,1,0,-9,9,0,-4,-19.94633161878067,0,0,0,71,2,3,3,-9,-9,2019,4,1,24,8,0,0,15,4,8,4,0,0,0,1,0,17.47125638477032,0,0,0,0,1,1,0,1.273574913840782,4.914969084134222,0,0,49.26,15.54,1,1,0,0,2,2,0,824.5,0,0,0 +34,41,85,86,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,7.733095585934132,7.815820563769727,1,0,-9,3,0,-2,10.9940386886492,0,0,0,76,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.941047453321864,7.261384331085948,0,0,49.5,54.11,6,1,0,0,13,3,1,460.5,0,0,0 +34,41,86,85,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,7.600659671757006,7.748952229775047,1,0,-9,3,0,2,103.2314740307011,0,0,0,74,2,4,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,.8214122664453163,5.831697973124617,0,0,0,8.930634595966712,1,1,0,2.785427537483252,7.779526108483336,0,0,47.77,33.46,4,1,0,0,13,3,1,460.5,0,0,0 +35,42,87,-9,-9,-9,1,1,0,51,3,0,1,0,3,-9,2,1,0,3,8.112051325945394,8.544087982288401,0,4,0,0,0,-9,0,-1107.126107201751,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,38,70,15,1,3,-9,0,13.36479262761906,13.36479262761906,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,55.09,7,1,0,1,9,3,0,1858,0,0,0 +36,43,88,89,-9,-9,1,1,0,25,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-2,23.11929765786113,0,1,1,27,1,3,1,2,2,2019,3,4,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,2,3,0,1019,0,0,0 +36,43,89,88,-9,-9,4,1,1,27,1,1,2,0,1,-9,2,1,0,3,8.01709648201042,7.895553613296437,0,2,0,-9,2,0,2,65.56170560175093,0,1,0,25,2,4,3,-9,-9,2019,2,1,8,1,52,40,15,1,1,3,0,7.393185390511528,7.393185390511528,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.58,51.02,5,1,0,0,2,3,0,1019,0,0,0 +36,43,90,-9,88,89,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-866.9334184847704,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,0,1019,0,0,0 +36,43,91,-9,88,89,2,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.5540713655058,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,0,1019,0,0,0 +37,44,92,93,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,4,0,8.602757279962647,8.911855375068308,1,0,-9,8,0,-3,3.793789327128328,0,0,0,64,1,1,3,1,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.137929787240958,8.926113937496035,0,0,50.65,60.47,6,1,0,0,4,4,1,372.5,0,0,0 +37,44,93,92,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,1,0,0,0,1,0,-9,8,0,3,-23.02708555290252,0,0,0,61,2,4,3,1,2,2019,4,2,18,6,0,8,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.483614810563753,0,0,0,43.18,29.29,3,1,0,0,4,4,1,372.5,0,0,0 +37,45,94,-9,93,92,3,1,0,20,2,0,0,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-956.9134800591655,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.814333578010102,0,0,0,36.35,64.53,5,1,0,0,4,1,1,368,0,0,0 +38,46,95,-9,97,98,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.082507915607,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,482.75,0,0,0 +38,46,96,-9,97,98,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.6430537334898,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,482.75,0,0,0 +38,46,97,98,-9,-9,2,1,0,40,1,0,2,0,1,-9,1,1,0,4,6.730700640428602,6.874291080342464,0,2,0,-9,13,0,0,-13.13090700291353,0,0,1,40,1,4,1,2,2,2019,1,1,9,0,40,36,15,1,0,1,0,2.328040191913472,2.328040191913472,0,0,0,0,0,0,0,1,1,0,7.293309556131062,0,0,0,52.82,53.97,6,1,0,0,5,4,1,482.75,0,0,0 +38,46,98,97,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,9.077703440475027,9.346201330826688,0,2,0,-9,13,0,0,104.2412592169072,0,0,0,40,1,4,1,1,1,2019,1,2,2,1,70,65,15,1,1,1,0,12.76566072028745,12.76566072028745,0,0,0,0,0,0,0,1,1,0,7.276514386980255,0,0,0,55.19,54.26,6,1,0,0,5,4,1,482.75,0,0,0 +39,47,99,101,-9,-9,1,1,0,27,1,1,1,0,1,-9,2,1,0,3,7.14239218425337,6.975688270485491,0,2,0,-9,4,0,0,21.64898272757979,0,1,1,27,2,4,1,2,2,2019,1,2,7,0,20,25,15,1,0,1,0,8.724272914493321,8.724272914493321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,5,1,0,0,10,3,0,777,0,0,0 +39,47,100,-9,99,101,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1052.83753503057,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,0,777,0,0,0 +39,47,101,99,-9,-9,2,1,1,27,1,1,1,0,2,-9,2,1,0,4,8.091716200194393,8.486675353857732,0,2,0,-9,4,0,0,38.25613322964849,0,1,0,27,1,3,1,2,2,2019,1,1,15,4,44,44,15,1,4,1,0,9.683858503772091,9.683858503772091,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,0,10,3,0,777,0,0,0 +40,48,102,103,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,5,8.523909986848302,8.941149873236235,0,1,0,-9,9,0,4,-20.21558921985542,0,0,0,34,2,4,1,2,1,2019,1,2,10,0,52,45,15,1,0,1,0,9.935639236270642,9.935639236270642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,0,596.5,0,0,0 +40,48,103,102,-9,-9,2,1,0,34,1,0,0,0,2,-9,2,1,0,4,8.486062308323254,8.798121682494411,0,1,0,-9,9,0,-4,77.11990869346,0,0,1,38,1,5,1,2,-9,2019,1,1,6,0,50,50,15,1,0,1,0,11.84083716502548,11.84083716502548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,2,0,0,2,5,0,596.5,0,0,0 +41,49,104,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-981.5475742203988,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,2,1,0,225,0,0,0 +41,50,105,-9,104,-9,2,1,0,57,3,0,0,0,3,-9,2,1,0,4,7.409405365461846,7.305609635937681,0,3,0,0,0,-9,0,-942.4192226935446,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,23,24,15,1,0,-9,1,7.826663319107571,7.826663319107571,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,58.29,6,1,0,0,2,3,0,515,0,0,0 +42,51,106,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,3,8.898728366751506,8.983105829394564,0,3,0,-9,0,-9,0,-941.7874285400776,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,48,49,15,1,1,-9,0,15.54153848633232,15.54153848633232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.78,37.14,5,1,0,0,1,5,1,508,0,0,0 +43,52,107,108,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,3,7.20247421139237,7.469997273080893,0,1,0,-9,4,0,-5,-24.29183339676501,0,1,1,28,2,3,1,2,-9,2019,1,2,12,0,26,15,15,1,0,1,0,8.854491381185058,8.854491381185058,0,0,0,0,0,0,0,0,0,0,0,0,0,3,48.45,49.46,5,1,0,0,4,4,0,1080,0,0,0 +43,52,108,107,-9,-9,2,1,1,28,1,0,0,0,2,-9,1,1,0,3,8.086043079575951,8.095704187532444,0,1,0,-9,4,0,5,-57.28818993958048,0,1,0,23,2,3,1,-9,-9,2019,1,1,9,0,18,20,15,1,0,1,0,22.91026632685387,22.91026632685387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.57,61.36,6,2,0,0,4,4,0,1080,0,0,0 +44,53,109,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,5.697286833522463,5.866050464177621,3,0,0,0,-9,0,-989.4073944117367,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.007583133495004,5.784678187918995,0,0,50,47,5,1,0,0,4,2,0,461,0,0,0 +45,54,110,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1043.750362175774,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,28,11,0,0,15,4,11,-9,0,0,0,1,0,0,15.97966446301805,6.259192479831762,0,0,1,1,0,0,0,0,0,40.61,31.58,5,1,0,0,1,1,0,796,0,0,0 +46,55,111,112,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,2,9.547281411446972,9.749075955938642,0,1,0,-9,6,0,-4,-114.1329616733441,0,0,0,60,2,2,3,3,-9,2019,2,2,7,1,35,39,15,1,1,4,0,52.98053092743174,52.98053092743174,0,0,0,0,0,0,0,0,0,0,3.099222652810383,0,0,0,57.14,30.64,5,1,0,0,9,5,1,505.5,0,0,0 +46,55,112,111,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,2,.2820903048667656,8.035722578023318,8.145040979543658,1,0,-9,6,0,4,-57.7785900999296,0,0,0,56,2,2,1,-9,-9,2019,3,1,13,3,1,15,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.349351079357413,7.712396102300865,0,0,40.61,31.58,5,1,0,0,9,5,1,505.5,0,0,0 +47,56,113,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,4,7.633896342892952,7.817184717961016,0,3,0,0,0,-9,0,-988.7259933864582,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,33,31,15,1,12,-9,0,7.350843495598095,7.350843495598095,0,0,0,0,0,0,0,0,0,0,0,0,8.200787391245521,3,51,54,2,1,0,1,13,3,0,372,0,0,0 +47,57,114,-9,113,-9,3,1,0,22,2,0,0,0,1,1,2,1,0,5,8.304286340262388,8.106686251171912,0,3,0,0,0,-9,0,-966.7077734873993,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,3,37,0,15,1,3,-9,1,9.85987797690254,9.85987797690254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,59.12,6,1,0,0,13,4,0,887,0,0,0 +48,58,115,116,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,5.407343367011491,5.526022616026035,1,0,-9,36,0,4,-45.82789838298859,0,0,0,68,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,10.52335546121282,5.367704513260404,0,0,53,47,6,1,0,0,9,2,1,637.5,0,0,0 +48,58,116,115,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,36,0,-4,-54.24015642906119,0,0,0,72,2,3,3,3,1,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.42,53.32,6,1,0,0,9,2,1,637.5,0,0,0 +49,59,117,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,3,8.151877609622911,7.974383774408998,0,3,0,0,0,-9,0,-832.4855961552504,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,54,63,15,1,2,-9,0,6.922921443182587,6.922921443182587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.2,51.14,4,1,0,0,11,4,0,317,0,0,0 +50,60,118,120,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,3,7.91911627038465,7.416543651172654,0,2,0,-9,3,0,-12,-20.58345031501352,0,1,1,41,2,4,1,-9,-9,2019,1,2,13,1,42,27,15,1,1,1,0,5.84326517988482,5.84326517988482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,33.35,4,1,0,0,5,4,1,1360.666666666667,0,0,0 +50,60,119,-9,118,120,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.745223076374,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,1360.666666666667,0,0,0 +50,60,120,118,-9,-9,2,1,1,41,1,1,1,0,2,-9,1,1,0,4,8.641939275115696,8.292057346766173,0,2,0,-9,3,0,12,-13.47096555699985,0,0,0,29,2,3,1,-9,-9,2019,1,1,9,0,0,50,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,5,0,0,5,4,1,1360.666666666667,0,0,0 +51,61,121,122,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,2,8.917779090095335,8.894314997596865,0,1,0,-9,10,0,1,-26.93727737089354,-9,0,0,53,2,4,1,-9,-9,2019,1,1,9,0,55,0,15,1,0,1,0,10.5469096964886,10.5469096964886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.9,43.45,5,1,0,0,11,5,1,1457.5,0,0,0 +51,61,122,121,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.643865634967266,8.562220171499755,0,1,0,-9,33,0,-1,-80.12337746837289,0,0,0,54,1,2,1,3,3,2019,1,2,6,0,37,38,15,1,0,1,0,18.24546470571893,18.24546470571893,0,0,0,0,0,0,0,0,0,0,2.008368313380853,0,0,0,57.73,54.53,7,1,0,0,11,5,1,1457.5,0,0,0 +51,62,123,-9,122,121,3,1,1,28,2,0,0,0,1,-9,2,1,0,3,9.151203005368437,9.075445783546272,0,3,0,0,0,-9,0,-1048.645957612958,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,33,36,15,1,0,-9,1,35.96544530903948,35.96544530903948,0,0,0,0,0,0,0,0,0,0,3.015013855162511,0,0,0,44.13,59.37,6,1,0,0,11,5,1,1677,0,0,0 +52,63,124,125,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.295467970112312,7.080138977216821,1,0,-9,51,0,-1,100.0277363894584,0,0,0,71,3,3,3,2,1,2019,4,1,6,0,0,45,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.848466786985179,7.191902882012892,0,0,57.16,56.15,6,1,0,0,12,4,1,920.5,0,0,0 +52,63,125,124,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,5.828810337785243,8.621568677578457,8.486044993862885,1,0,-9,51,0,1,-40.2898994278035,0,0,0,70,2,4,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.028455738655267,8.503709316934724,0,0,61.43,43.34,5,1,0,0,12,4,1,920.5,0,0,0 +53,64,126,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,4,8.070745487163796,8.408335674629029,0,3,0,0,0,-9,0,-1153.080660826222,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,45,15,1,1,-9,0,7.251550961248576,7.251550961248576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,5,1,0,0,11,4,0,741,0,0,0 +53,65,127,-9,-9,126,2,1,1,19,2,0,0,0,2,-9,2,1,0,5,8.24212466468471,7.941732002373432,0,3,0,0,0,-9,0,-1063.183441159781,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,50,0,15,1,0,-9,1,7.243929989835034,7.243929989835034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,7,1,0,0,11,4,0,46,0,0,0 +54,66,128,129,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,2,0,6.681224964474782,6.834001688286429,1,0,-9,6,0,0,61.67732784101529,0,0,0,74,3,3,3,2,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,9.823158161931801,0,0,0,0,1,1,0,5.051943342268191,6.79641764109878,0,0,55.62,23.5,6,1,0,0,11,2,1,673,0,0,0 +54,66,129,128,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,5.001185568419847,5.112963396821582,1,0,-9,6,0,0,-79.60481784237045,0,0,0,74,2,2,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.116818548826359,4.717143801012443,0,0,53.13,27,6,1,0,0,11,2,1,673,0,0,0 +55,67,130,131,-9,-9,2,1,0,66,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,45,0,0,-54.19544197529125,0,0,0,66,2,3,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,71.07000000000001,21.07,5,1,0,0,13,4,1,606.5,0,0,0 +55,67,131,130,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,3,7.754604814897939,8.576889368804327,7.873418256554382,1,0,-9,45,0,0,93.9332427258672,0,0,0,66,3,3,3,3,3,2019,2,2,10,0,37,38,15,1,1,3,0,5.641419326142502,5.641419326142502,0,0,0,0,0,0,0,1,1,0,0,8.579155135393712,0,0,52,48,5,1,0,0,13,4,1,606.5,0,0,0 +56,68,132,133,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,3,8.530595183927879,8.405459994577368,0,2,0,-9,4,0,4,-115.0256071404967,0,0,1,26,1,4,1,-9,-9,2019,1,1,19,7,58,52,15,1,7,1,0,11.86500326568606,11.86500326568606,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.04,58.33,5,1,0,0,4,5,1,653,0,0,0 +56,68,133,132,-9,-9,1,1,1,26,1,1,1,0,1,-9,2,1,0,4,8.56730131546936,8.385529365731772,0,2,0,-9,4,0,-4,-74.67904390026571,0,1,0,30,2,3,1,-9,-9,2019,1,2,12,0,52,62,15,1,0,1,0,11.02364384703495,11.02364384703495,0,0,0,0,0,0,0,1,1,0,.6433250318201218,0,0,0,45.32,61.53,5,1,0,0,4,5,1,653,0,0,0 +56,68,134,-9,132,133,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-990.8753437010687,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,4,5,1,653,0,0,0 +57,69,135,-9,137,138,3,1,1,17,2,0,1,0,2,-9,7,2,0,4,6.608215273861909,6.808443940876598,0,2,0,0,0,-9,0,-1091.525629248164,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,13,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,4,1,0,0,12,5,1,1129,0,0,0 +57,69,136,-9,137,138,4,1,1,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-969.4867047484025,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,12,5,1,1129,0,0,0 +57,69,137,138,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,4,8.21477156744024,7.840296737849692,0,2,0,-9,8,0,-3,-37.81650258818176,0,0,0,51,2,5,1,2,2,2019,1,1,12,0,20,21,15,1,0,1,0,25.29624345127323,25.29624345127323,0,0,0,0,0,0,0,0,0,0,1.826677968928161,0,0,0,51.24,58.84,6,1,0,0,12,5,1,1129,0,0,0 +57,69,138,137,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,5,9.461755439890585,9.314450082063967,0,2,0,-9,8,0,3,-123.4874002408794,0,0,0,48,1,4,1,2,2,2019,1,2,9,0,47,46,15,1,0,1,0,26.7604116212245,26.7604116212245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,1,1,0,0,12,5,1,1129,0,0,0 +58,70,139,140,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,4,7.650977981577781,7.597090169324616,0,1,0,-9,4,0,-1,-113.2110176921147,0,1,1,26,2,4,1,1,-9,2019,1,2,8,0,39,37,15,1,0,1,0,9.198801467238892,9.198801467238892,0,0,0,0,0,0,0,0,0,0,1.084104962856672,0,0,0,48.87,58.55,5,1,0,0,10,4,1,703,0,0,0 +58,70,140,139,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,4,7.558990244978418,7.244714155908086,0,1,0,-9,4,0,1,-9.720202248807128,0,1,0,25,2,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,4.857605368388946,4.857605368388946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,10,4,1,703,0,0,0 +59,71,141,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,3,0,6.785579167838473,6.869808213673418,3,0,0,0,-9,0,-1035.512813500916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.625282394270863,0,0,53,46,5,1,0,0,8,2,0,571,0,0,0 +60,72,142,143,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,4,8.216188273789829,8.359589362796356,0,1,0,-9,7,0,3,27.82741647281128,0,0,0,41,2,2,1,-9,-9,2019,1,1,7,0,50,50,15,1,0,1,0,8.629687370963785,8.629687370963785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,12,5,1,574.5,0,0,0 +60,72,143,142,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,2,8.203064510664472,8.627286141063006,0,1,0,-9,7,0,-3,101.5215217330263,0,0,1,44,1,4,1,-9,-9,2019,1,2,7,0,38,38,15,1,0,1,0,14.04800910220942,14.04800910220942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,44.27,5,1,0,0,12,5,1,574.5,0,0,0 +61,73,144,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,7.982082590948513,8.213946756542866,5.820672752399563,3,0,0,0,-9,0,-1066.805884734925,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,14.16486698689298,14.16486698689298,0,0,0,0,0,0,0,0,0,0,6.35389462070813,0,0,0,57.16,56.15,6,1,0,0,12,4,1,746,0,0,0 +61,74,145,-9,144,-9,2,1,0,23,2,0,0,0,2,0,7,2,0,4,7.105657347149187,7.428607664386282,0,3,0,0,0,-9,0,-974.0047895625074,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,22,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.963360691727138,0,0,0,44.24,59.44,5,1,0,0,12,2,1,192,0,0,0 +61,75,146,-9,144,-9,3,1,0,22,2,0,0,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1115.389068705687,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.273309515059862,0,0,0,41.3,60.77,6,1,0,0,12,1,1,687,0,0,0 +61,76,147,-9,144,-9,4,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1089.940762181588,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.798952594905136,0,0,0,35.71,59.35,5,1,0,0,12,1,1,287,0,0,0 +62,77,148,149,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,5,0,8.965571386630025,9.040845887377703,1,0,-9,7,0,2,-51.98009827955519,0,0,0,72,3,5,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.999130968201044,8.983834595828693,0,0,60.02,56.42,7,1,0,0,10,5,1,529.5,0,0,0 +62,77,149,148,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,5,0,7.246428523036053,7.245743351848855,1,0,-9,7,0,-2,-17.91041725326802,0,0,0,74,2,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.969178409588068,6.810127357358677,0,0,54.63,58.83,7,1,0,0,10,5,1,529.5,0,0,0 +63,78,150,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,1,1,0,3,7.838687105201963,8.145332836908281,0,3,0,0,0,-9,0,-1007.087197467839,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,7,20,24,15,1,7,-9,0,17.07781877497425,17.07781877497425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.01,61.11,2,1,0,0,8,4,1,851,0,0,0 +64,79,151,152,-9,-9,2,1,0,71,1,0,0,0,2,-9,2,1,0,3,7.899937662077537,8.351440034167803,0,1,0,-9,9,0,-13,27.00678663445569,0,0,0,84,3,1,3,3,3,2019,2,1,14,5,32,35,15,1,5,4,0,9.250841062836423,9.250841062836423,0,0,0,0,0,0,0,1,1,0,4.542468649109076,0,33.65880691762042,1,35.2,48.71,3,1,0,0,7,3,1,393,0,0,0 +64,79,152,151,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,1,0,5.497828182237839,5.698738429148573,1,0,-9,55,0,13,63.31234237331398,0,0,0,71,2,3,1,2,2,2019,3,2,17,5,0,0,15,4,5,1,0,0,0,1,5.891656221239126,18.21373440359909,0,4.285417270807095,0,0,1,1,0,0,5.609618245965733,0,0,36.61,17.55,6,1,0,0,7,3,1,393,0,0,0 +65,80,153,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,5,8.249372867282078,8.256937852558785,0,3,0,0,0,-9,0,-1066.037054339473,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,44,44,15,1,2,-9,0,8.087287499292897,8.087287499292897,0,0,0,0,0,0,0,0,0,0,6.93555537863582,0,0,0,45.81,61.51,6,1,0,0,5,4,0,511,0,0,0 +66,81,154,157,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,3,7.634609100968769,7.615271243186871,0,2,0,-9,10,0,9,-66.68388467887259,0,0,0,39,1,4,1,-9,-9,2019,1,1,8,0,30,30,15,1,0,1,0,7.418868927728241,7.418868927728241,0,0,0,0,0,0,0,1,1,0,0,0,8.76108821638044,3,43.36,42.15,4,1,0,0,2,3,1,1087.25,0,0,0 +66,81,155,-9,157,154,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.891385893448,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,1087.25,0,0,0 +66,81,156,-9,157,154,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.403774409152,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,1087.25,0,0,0 +66,81,157,154,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,4,7.807838367116251,7.759586261653491,0,2,0,-9,10,0,0,7.484156793235021,0,0,1,48,2,3,1,2,2,2019,1,2,4,0,37,39,15,1,0,1,0,9.796916372619561,9.796916372619561,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.83,57.2,6,1,0,0,2,3,1,1087.25,0,0,0 +67,82,158,159,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,42,0,8,18.4919048570969,0,0,0,65,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,14.40656996950297,0,0,0,0,1,1,0,0,0,0,0,56.58,47.39,7,1,0,0,9,2,1,357,0,0,0 +67,82,159,158,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,6.487649851681468,6.478929369892719,1,0,-9,42,0,-8,113.7869438348639,0,0,0,73,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.280004255996348,0,0,53.82,45.88,6,1,0,0,9,2,1,357,0,0,0 +68,83,160,161,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,4,7.68883831433913,8.022407472173885,0,1,0,-9,4,0,-1,-58.87880016729112,0,1,1,26,2,3,1,2,1,2019,1,2,11,1,34,33,15,1,1,1,0,7.9812784094398,7.9812784094398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,6,1,0,0,9,5,1,811.5,0,0,0 +68,83,161,160,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,3,8.343134359673131,8.19803732062325,0,1,0,-9,4,0,1,48.38076174552856,0,1,0,25,2,4,1,-9,-9,2019,1,1,22,10,40,60,15,1,10,1,0,11.17374937798763,11.17374937798763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.18,60.48,3,1,0,0,9,5,1,811.5,0,0,0 +69,84,162,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,0,6.378556339305977,6.706814827574847,3,0,0,0,-9,0,-885.2002729621992,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,6.839600245384662,0,0,0,0,57.67212353387637,1,1,0,3.418202421917981,6.778046909959981,0,0,41.94,16.49,4,1,0,0,6,2,1,2368,0,0,0 +70,85,163,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,3,0,6.775161584855033,6.755462159974316,3,0,0,0,-9,0,-946.7218916844275,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.177854244409633,0,0,45.04,48.24,5,1,0,0,11,2,1,700,0,0,0 +71,86,164,-9,-9,-9,3,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,5.518285307609103,6.099771816944934,3,0,-9,0,-9,0,-1084.722490858013,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.924432144451464,0,0,55.2,49.4,6,1,0,0,9,2,0,974,0,0,0 +72,87,165,166,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,50,0,-3,71.11847951209259,0,0,0,68,2,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,114.9229341240426,1,58.9,45.74,6,1,0,0,12,1,0,1358.5,0,0,0 +72,87,166,165,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,1,0,3.980683399545309,3.968859474833964,1,0,-9,50,0,3,13.40256530673407,0,0,0,65,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.648746936786112,3.935812550106806,0,0,35.7,23.15,5,1,0,0,12,1,0,1358.5,0,0,0 +73,88,167,168,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,4,8.932800637407324,8.884035480926794,0,1,0,-9,39,0,-1,90.98964773949963,0,0,0,58,2,5,1,2,1,2019,1,1,11,0,36,36,15,1,0,1,0,27.87061589852386,27.87061589852386,0,0,0,0,0,0,0,0,0,0,4.967192577165241,0,0,0,53.07,52.7,6,1,0,0,7,5,1,1164.5,0,0,0 +73,88,168,167,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,5,8.344352414335813,8.153048319011283,0,1,0,-9,39,0,1,-24.54486052332057,0,0,0,57,2,4,1,2,2,2019,1,2,10,1,18,26,15,1,1,1,0,28.38570137367933,28.38570137367933,0,0,0,0,0,0,0,0,0,0,0,0,23.13585710346608,3,62.39,56.71,7,1,0,0,7,5,1,1164.5,0,0,0 +74,89,169,170,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,2,8.064060202348648,7.710751795331516,0,2,0,-9,15,0,0,-5.468930709123344,0,0,1,37,1,4,1,3,2,2019,1,2,5,1,30,31,15,1,1,1,0,9.323221889047661,9.323221889047661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,6,3,0,0,2,4,1,521.6666666666666,0,0,0 +74,89,170,169,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,4,8.334550305961111,8.635936263553148,0,2,0,-9,15,0,0,-26.91780080159325,0,0,0,37,2,2,1,3,2,2019,1,1,6,0,45,45,15,1,0,1,0,10.56187318310713,10.56187318310713,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,2,4,1,521.6666666666666,0,0,0 +74,89,171,-9,169,170,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.2458715836386,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,2,4,1,521.6666666666666,0,0,0 +75,90,172,173,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,2,7.927833277714424,8.024289510606289,0,1,0,-9,30,0,-4,-7.998229858141411,0,0,0,58,2,3,1,-9,-9,2019,1,1,13,2,40,38,15,1,2,1,0,8.65747784749639,8.65747784749639,0,0,0,0,0,0,0,1,1,0,2.91190956101016,0,6.372154153537919,2,53.35,11.01,4,1,0,0,6,3,1,839.5,0,0,0 +75,90,173,172,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,5.931791756079445,6.2321484242941,0,1,0,-9,30,0,4,39.65595520926281,0,0,0,54,2,2,1,-9,-9,2019,1,2,6,0,10,0,15,1,0,1,0,5.627077217842171,5.627077217842171,0,0,0,0,0,0,0,1,1,0,1.29925283420704,0,0,2,61.93,32.24,6,1,0,0,6,3,1,839.5,0,0,0 +76,91,174,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,3,8.29259882056876,8.439196517735159,0,3,0,0,0,-9,0,-939.2933152130204,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,47,57,15,1,7,-9,0,13.19390790258914,13.19390790258914,0,0,0,0,0,0,0,0,0,0,0,0,20.87567520581226,3,32.84,60.85,5,1,0,0,4,5,0,1197,0,0,0 +77,92,175,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,7.38438505389425,7.510449660432552,3,0,0,0,-9,0,-1023.17296470331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.217924332230791,0,0,46.31,51.53,2,1,0,0,12,2,1,113,0,0,0 +78,93,176,177,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,8.486364903782929,8.695076917697765,6.821380231119075,1,0,-9,1,-9,6,-6.860397604198963,-9,0,0,57,2,3,1,3,3,2019,1,2,7,0,49,0,15,1,0,1,0,10.35006233414566,10.35006233414566,0,0,0,0,0,0,0,0,0,0,6.25049662581222,7.145029908105739,0,0,60.29,52.11,7,1,0,0,8,4,0,396.5,0,0,0 +78,93,177,176,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,6.384395972189451,6.87789063948856,0,1,0,-9,1,-9,-6,-70.33163213339935,-9,0,0,63,2,3,1,-9,-9,2019,1,1,11,0,16,0,15,1,0,1,0,5.449297020034925,5.449297020034925,0,0,0,0,0,0,0,0,0,0,4.679966876177009,0,0,0,46.37,50.17,4,1,0,0,8,4,0,396.5,0,0,0 +79,94,178,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,5.821597212250164,5.723204800314697,3,0,0,0,-9,0,-1007.368321918732,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.708338216118614,5.678892122202975,27.54503787090026,3,47.14,43.11,5,1,0,0,2,2,1,1218,0,0,0 +80,95,179,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-882.5546905090152,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.36,34.01,4,1,0,0,13,1,0,356,0,0,0 +80,96,180,-9,179,-9,2,1,1,28,2,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1080.431092966245,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,7,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.01227121790908,3,40.54,53.95,1,1,0,0,13,1,0,84,0,0,0 +80,97,181,-9,179,-9,3,1,1,24,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-931.958115415537,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.28,52.09,4,1,1,0,13,1,0,191,0,0,0 +81,98,182,183,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,3.832111639648125,3.81945649476476,0,1,0,-9,6,0,5,102.265197753801,0,0,0,62,1,2,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.16,29.7,5,1,0,0,12,4,1,1390.5,0,0,0 +81,98,183,182,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,2,8.397740973746522,8.733194544629249,5.960899134373556,1,0,-9,44,0,-5,-119.6316938668802,0,0,0,67,1,3,3,3,3,2019,2,2,12,1,37,40,15,1,1,4,0,16.77781656943904,16.77781656943904,0,0,0,0,0,0,0,1,1,0,0,6.263087569045282,0,0,40.96,40.82,4,1,0,0,12,4,1,1390.5,0,0,0 +82,99,184,-9,185,186,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.5820906474719,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,3,0,0,8,4,0,980.3333333333334,0,0,0 +82,99,185,186,-9,-9,1,1,0,39,1,1,1,0,1,-9,2,1,0,2,7.634371889647172,7.854017544081771,0,2,0,-9,13,0,-2,-64.25493880426149,0,0,1,41,1,3,1,2,2,2019,1,2,23,11,24,24,15,1,11,1,0,8.454487041757334,8.454487041757334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.15,38.41,3,3,0,0,8,4,0,980.3333333333334,0,0,0 +82,99,186,185,-9,-9,2,1,1,41,1,1,1,0,1,-9,2,1,0,3,8.553457756997471,8.728692174324689,0,2,0,-9,5,0,2,77.59039576562628,0,0,0,39,1,2,1,2,2,2019,1,1,9,0,37,47,15,1,0,1,0,15.84107691688841,15.84107691688841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.21,43,6,3,0,0,8,4,0,980.3333333333334,0,0,0 +83,100,187,188,-9,-9,2,1,0,50,1,0,0,0,1,-9,3,3,0,2,0,0,0,1,0,-9,20,0,4,97.53171632750659,0,0,0,46,1,5,1,3,1,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.06,38.71,3,1,1,0,9,5,1,422.5,0,0,0 +83,100,188,187,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,5,8.893581079536352,9.276235140814133,0,1,0,-9,20,0,-4,-102.4723757812642,0,0,0,50,1,2,3,3,1,2019,2,2,10,0,48,47,15,1,0,3,0,21.00502609095258,21.00502609095258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,55.33,6,1,0,0,9,5,1,422.5,0,0,0 +84,101,189,190,-9,-9,2,1,0,55,1,0,0,0,2,-9,6,3,0,4,0,5.701046948132205,6.543677228465777,1,0,-9,6,0,-15,-4.310673573207227,0,0,0,70,1,5,3,3,3,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.598980723186803,0,19.97170023850164,3,67.34,37.81,7,1,0,0,7,3,1,481,0,0,0 +84,101,190,189,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,7.746915270650854,7.595123107115079,1,0,-9,6,0,15,159.4840527131197,0,0,0,55,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.051903443072455,0,0,64.52,50.23,7,1,0,0,7,3,1,481,0,0,0 +85,102,191,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,2,0,7.841274554174392,7.801410249320871,3,0,0,0,-9,0,-940.3985555998498,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,20.45545526707831,0,0,0,8.014428951410345,146.7158774608044,1,1,0,5.412890563912485,8.331307851985908,0,0,48.36,33.74,6,1,0,0,9,4,1,381,0,0,0 +86,103,192,195,-9,-9,4,1,1,48,1,0,2,0,2,-9,2,1,0,2,8.154438017179366,8.48176267063841,0,2,0,-9,6,0,4,-21.62623761653233,-9,0,0,44,2,3,1,-9,-9,2019,1,1,9,1,48,0,15,1,1,1,0,7.967943774959561,7.967943774959561,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.18,39.86,5,2,0,0,8,4,0,791.25,0,0,0 +86,103,193,-9,195,192,2,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-954.4064566511802,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.37,45.59,4,2,0,0,8,4,0,791.25,0,0,0 +86,103,194,-9,195,192,3,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1048.146882589832,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,8,4,0,791.25,0,0,0 +86,103,195,192,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,3,8.367288227262931,8.245900625199381,4.988832730862431,2,0,-9,6,0,-4,-46.94054617094407,-9,0,1,48,2,2,1,-9,-9,2019,1,4,7,0,37,0,15,1,0,1,0,14.58079974234118,14.58079974234118,0,0,0,0,0,0,0,1,1,0,5.081085913694523,0,0,0,57.48,47.92,6,1,0,0,8,4,0,791.25,0,0,0 +87,104,196,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,2,1,0,5,6.518252381939353,6.706314599979774,0,3,0,0,0,-9,0,-962.6812241126012,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,45,45,15,1,0,-9,0,1.590060676937586,1.590060676937586,0,0,0,0,0,0,0,0,0,0,0,0,7.480421481768241,3,54.1,59.11,6,1,0,0,5,2,0,931,0,0,0 +88,105,197,198,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.136155204199659,8.206962549144793,0,1,0,-9,29,0,6,-6.451441475731861,0,0,0,54,2,2,1,3,3,2019,1,2,11,0,38,37,15,1,0,1,0,10.28086017339804,10.28086017339804,0,0,0,0,0,0,0,0,0,0,4.661365331946389,0,0,0,54.14,58.86,6,3,0,0,6,4,1,279.5,0,0,0 +88,105,198,197,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,2,7.620058919738304,7.884800714280435,0,1,0,-9,29,0,-6,-101.7480037541326,0,0,0,60,2,4,1,3,3,2019,1,1,10,0,44,45,15,1,0,1,0,5.351213244890054,5.351213244890054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,6,3,0,0,6,4,1,279.5,0,0,0 +88,106,199,-9,198,197,3,1,0,26,2,0,0,0,1,-9,2,1,0,5,7.832659264410056,7.911461632547246,0,3,0,0,0,-9,0,-997.1930993960995,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,37,15,1,0,-9,1,8.922235407592703,8.922235407592703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,3,0,0,6,3,1,959,0,0,0 +89,107,200,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,3,7.983883911818898,7.831841374030664,0,3,0,0,0,-9,0,-912.222775995524,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,45,45,15,1,0,-9,0,9.045323558263641,9.045323558263641,0,0,0,0,0,0,0,1,1,0,4.400748182918806,0,0,0,57.93,46.29,6,1,0,0,5,4,0,980,0,0,0 +90,108,201,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,7.193647134569857,7.35115537581393,3,0,0,0,-9,0,-1068.24295659454,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.766496547670469,7.272243683422952,0,0,60.29,52.11,7,1,0,0,6,2,1,367,0,0,0 +91,109,202,203,-9,-9,1,1,1,35,1,0,1,0,1,-9,2,1,0,2,9.382754198902646,9.014944149311695,0,2,0,-9,2,0,4,54.9176694152118,0,0,0,31,1,3,1,-9,-9,2019,1,2,20,7,40,41,15,1,7,1,0,28.21427162224509,28.21427162224509,0,0,0,0,0,0,0,0,0,0,7.3037344117327,0,0,0,20.31,45.23,2,3,0,0,8,5,1,505,0,0,0 +91,109,203,202,-9,-9,2,1,0,31,1,0,1,0,1,-9,2,1,0,3,8.211343381222315,8.258378606425612,0,2,0,-9,2,0,-4,-71.4792351353875,0,0,1,35,1,2,1,-9,-9,2019,1,1,9,0,36,32,15,1,0,1,0,9.651243820339216,9.651243820339216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,51.16,5,3,0,0,8,5,1,505,0,0,0 +91,109,204,-9,203,202,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.773536313378,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,3,0,0,8,5,1,505,0,0,0 +92,110,205,206,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,3,8.282143205677855,8.196325218880652,0,1,0,-9,9,0,1,44.17308554115364,-9,0,0,60,3,5,1,3,3,2019,1,1,10,0,50,0,15,1,1,1,0,10.39978168827606,10.39978168827606,0,0,0,0,0,0,0,0,0,0,2.97641538165867,0,0,0,51,49,5,1,0,0,1,5,1,988,0,0,0 +92,110,206,205,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,5,7.63428765486265,7.618974025577593,0,1,0,-9,32,0,-1,-62.51129934563519,0,0,0,61,3,3,1,3,3,2019,1,2,6,0,32,34,15,1,0,1,0,6.969740483912638,6.969740483912638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,7,1,0,0,1,5,1,988,0,0,0 +93,111,207,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,3,8.132649451831874,8.43059581940425,0,3,0,0,0,-9,0,-1034.437162494919,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,56,55,15,1,0,-9,0,10.16541279650517,10.16541279650517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,6,4,0,0,8,4,0,1041,0,0,0 +94,112,208,209,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,6.747937117818451,6.857113051195707,0,1,0,-9,19,-9,-2,-67.31162834129601,-9,0,0,58,2,3,1,2,2,2019,1,1,10,0,16,0,15,1,0,1,0,6.316340829435401,6.316340829435401,0,0,0,0,0,0,0,0,0,0,0,0,5.866582097871797,3,58.07,46.29,6,1,0,0,12,3,0,388.5,0,0,0 +94,112,209,208,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,7.286321991108813,7.138560223509694,0,1,0,-9,27,-9,2,99.60421229021398,-9,0,0,56,2,3,1,3,3,2019,1,2,11,0,47,0,15,1,0,1,0,2.407727025885075,2.407727025885075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,6,1,0,0,12,3,0,388.5,0,0,0 +95,113,210,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,3,0,6.890222507842233,6.636797360795598,3,0,0,0,-9,0,-1046.490619369011,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,15.88752422960285,0,0,0,1,1,0,0,6.909649866150954,0,0,52,47,5,1,0,0,13,2,1,254,0,0,0 +96,114,211,212,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,6.91381559248701,7.125665087494933,1,0,-9,46,0,-3,2.734637777051325,0,0,0,67,2,3,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5964323844489985,7.026277649490378,0,0,27.23,23.84,4,1,0,0,10,2,0,499,0,0,0 +96,114,212,211,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,6.285086422232833,6.345985552147063,1,0,-9,46,0,3,-28.91257034229369,0,0,0,64,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.675078179379909,6.317801468121697,.4806899800495261,2,61.85,44.55,6,1,0,0,10,2,0,499,0,0,0 +96,115,213,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-821.2661414488872,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.92652100459999,3,16.79,61.42,4,1,1,0,10,1,0,596,0,0,0 +97,116,214,215,-9,-9,2,1,0,36,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,4,0,-5,0,0,0,1,41,1,4,1,-9,-9,2019,3,1,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.2268194190290163,0,0,0,46.63,59.72,6,1,0,0,11,1,1,288,0,0,0 +97,116,215,214,-9,-9,1,1,1,41,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,4,0,5,0,0,0,0,36,2,4,3,2,2,2019,2,2,17,6,30,0,15,1,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1.051431873979441,0,0,0,47.15,55.39,5,1,0,0,11,1,1,288,0,0,0 +98,117,216,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,7.421958294529981,6.866833500587579,3,0,0,0,-9,0,-1078.927948625971,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.799384627012247,7.560880368373206,0,0,44.42,59.09,6,1,0,0,2,3,1,987,0,0,0 +99,118,217,-9,220,219,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-845.9936764877751,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,4,1,463,0,0,0 +99,118,218,-9,220,219,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.414237668336,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4341828630524107,0,0,0,39.16,59.23,5,3,0,0,2,4,1,463,0,0,0 +99,118,219,220,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,4,0,0,0,2,0,-9,21,0,6,-12.49771165501237,0,0,0,47,2,4,1,3,3,2019,1,2,7,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,45.02,5,3,0,0,2,4,1,463,0,0,0 +99,118,220,219,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,4,8.69555789905278,9.185513102016426,0,2,0,-9,21,0,-6,-13.20028267215097,0,0,0,53,2,4,1,2,2,2019,1,1,9,0,44,46,15,1,0,1,0,19.60418831916312,19.60418831916312,0,0,0,0,0,0,0,1,1,0,2.213903516530361,0,8.016873941520315,3,47.5,49.74,5,3,0,0,2,4,1,463,0,0,0 +100,119,221,222,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,4,8.918866152250333,9.101826661191364,0,1,0,-9,15,0,-6,16.32167572518839,0,0,0,46,2,3,1,2,2,2019,1,2,9,0,60,45,15,1,1,1,0,11.90848656003911,11.90848656003911,0,0,0,0,0,0,0,0,0,0,.3468475375002494,0,0,0,51,56,6,1,0,0,9,5,1,1545.5,0,0,0 +100,119,222,221,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,3,8.052053223011461,8.154023017844251,0,1,0,-9,15,0,6,129.7233256824944,0,0,0,40,2,4,1,2,-9,2019,1,1,11,0,40,45,15,1,0,1,0,8.131134645278637,8.131134645278637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.06,42.54,6,1,0,0,9,5,1,1545.5,0,0,0 +101,120,223,224,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.442987198107777,7.622315866146304,1,0,-9,9,0,6,-15.6480953848145,0,0,0,63,2,2,3,3,2,2019,4,2,17,6,0,0,15,4,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.36308959223433,0,0,51.41,56.15,3,1,0,0,13,3,1,479.5,0,0,0 +101,120,224,223,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,2,0,6.155707624956855,6.285754980822847,1,0,-9,9,0,-6,158.2444107580273,0,0,0,69,2,3,3,3,3,2019,4,1,20,8,0,0,15,3,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.017569221204305,0,0,40.37,19.29,4,1,0,1,13,3,1,479.5,0,0,0 +102,121,225,-9,226,227,5,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1037.070325481824,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,3,0,0,8,4,1,1607,0,0,0 +102,121,226,227,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,3,7.050991914295782,6.9521638213184,0,2,0,-9,4,0,-10,46.04557717727153,-9,0,1,46,3,4,1,3,3,2019,1,2,4,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.831993163160635,0,0,0,33.26,38.81,4,3,0,0,8,4,1,1607,0,0,0 +102,121,227,226,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,4,9.040451082939024,8.626621539487724,0,2,0,-9,4,0,10,40.0528795950925,0,0,0,36,2,3,1,3,1,2019,1,1,26,11,0,40,15,1,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.992074976543394,0,0,0,39.71,46.52,6,3,0,0,8,4,1,1607,0,0,0 +102,121,228,-9,226,227,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1011.957967099025,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,3,0,0,8,4,1,1607,0,0,0 +103,122,229,230,-9,-9,1,1,0,62,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,7,0,8,22.50665621260269,0,0,0,54,2,2,1,3,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.920094326614,3,33.27,27.15,5,1,0,0,12,2,1,757,0,0,0 +103,122,230,229,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,2,6.776145402148677,6.819404664281246,0,1,0,-9,7,0,-8,-5.724374676722286,0,0,0,62,3,2,3,3,2,2019,2,1,12,0,25,24,15,1,0,3,0,3.384103812060266,3.384103812060266,0,0,0,0,0,0,0,1,1,0,0,0,32.9095016083139,3,41.58,52.86,5,1,0,0,12,2,1,757,0,0,0 +103,123,231,-9,229,230,3,1,1,38,2,0,0,0,1,-9,2,1,0,4,7.749138344917715,7.674296729397076,0,3,0,0,0,-9,0,-752.9773471413548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,46,40,15,1,11,-9,1,6.319802611999836,6.319802611999836,0,0,0,0,0,0,0,1,1,0,0,0,10.06723913588747,3,32.49,48.42,3,1,0,0,12,3,1,444,0,0,0 +103,124,232,-9,229,230,4,1,1,37,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1006.824517440379,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,75.2,21.12,7,1,0,0,12,1,1,80,0,0,0 +103,125,233,-9,229,230,5,1,1,22,2,0,0,0,2,-9,2,1,0,3,8.19801372400782,7.900479004769855,0,3,0,0,0,-9,0,-1045.172752316048,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,26,11,50,37,15,1,11,-9,1,7.297861795995984,7.297861795995984,0,0,0,0,0,0,0,1,1,0,0,0,6.917104032784342,3,17.45,66.57000000000001,3,1,0,0,12,4,1,270,0,0,0 +104,126,234,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1029.225044400996,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.36,35.58,1,3,0,0,4,1,0,798.6666666666666,0,0,0 +104,126,235,-9,234,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-950.143681780046,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,4,1,0,798.6666666666666,0,0,0 +104,126,236,-9,234,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-973.6081578900016,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,4,1,0,798.6666666666666,0,0,0 +105,127,237,-9,-9,-9,1,1,1,88,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1052.693708693105,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,1,10.27846347630108,0,0,0,0,150.8309763345004,1,1,0,0,0,0,0,35.71,15.11,6,1,0,0,13,1,1,613,0,0,0 +106,128,238,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1046.192246410563,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.155680963583671,3,16.38,30.74,1,1,0,1,7,1,0,924.5,0,0,0 +106,128,239,-9,238,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.0470282864866,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,1,0,924.5,0,0,0 +107,129,240,241,-9,-9,1,1,0,54,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,7,0,-2,0,0,0,0,56,3,4,3,3,3,2019,4,2,13,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.51127431937874,1,51.83,57.2,5,1,0,0,10,1,0,355.5,0,0,0 +107,129,241,240,-9,-9,2,1,1,56,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,7,0,2,0,0,0,0,54,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,10,1,0,355.5,0,0,0 +108,130,242,243,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,5,8.705451055047556,9.117731504321414,0,1,0,-9,9,0,-7,-117.240673053431,0,0,0,54,1,4,1,3,2,2019,1,2,9,0,43,44,15,1,0,1,0,17.38541835106412,17.38541835106412,0,0,0,0,0,0,0,0,0,0,4.087347425448931,0,0,0,48.77,60.16,6,1,0,0,9,5,1,1506,0,0,0 +108,130,243,242,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,4,8.880642988886962,9.067620262048447,0,1,0,-9,9,0,7,-51.23705783925156,0,0,0,47,1,5,1,3,3,2019,1,1,9,0,81,47,15,1,0,1,0,11.61345630306664,11.61345630306664,0,0,0,0,0,0,0,0,0,0,2.930739050079059,0,0,0,53.51,52.37,6,1,0,0,9,5,1,1506,0,0,0 +108,131,244,-9,242,243,3,1,0,21,2,0,0,0,2,-9,2,1,0,5,7.71760924048914,8.070560707746859,0,3,0,0,0,-9,0,-1003.793253224647,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,40,0,15,1,0,-9,1,6.209549295486986,6.209549295486986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.65,62.89,6,1,0,0,9,3,1,247,0,0,0 +108,132,245,-9,242,243,4,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.75884247854156,8.155198407249587,0,3,0,0,0,-9,0,-1134.44538235178,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,43,0,15,1,0,-9,1,7.483071236519691,7.483071236519691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,9,3,1,936,0,0,0 +109,133,246,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,2,1,0,3,8.8749134766185,8.802857565768763,0,3,0,0,0,-9,0,-956.9831860897328,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,43,43,15,1,0,-9,0,19.5523200590797,19.5523200590797,0,0,0,0,0,0,0,1,1,0,5.555936392144323,0,0,0,54.37,54.8,6,1,0,0,12,5,1,595,0,0,0 +110,134,247,248,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,8.465052967520203,8.658455384481645,0,1,0,-9,8,0,5,53.99714663772399,0,0,0,51,3,1,3,-9,-9,2019,2,1,9,0,50,40,15,1,1,3,0,9.857901273290878,9.857901273290878,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,54,6,3,0,0,8,4,1,1028,0,0,0 +110,134,248,247,-9,-9,1,1,0,51,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,33,0,-5,142.1253272197228,0,0,0,56,2,4,1,3,3,2019,3,2,30,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.524787240252582,0,0,0,28.23,36.29,5,3,0,0,8,4,1,1028,0,0,0 +110,135,249,-9,248,247,4,1,1,26,2,0,0,0,2,-9,1,1,0,4,8.778783126396222,8.749293501760537,0,3,0,0,0,-9,0,-994.2873733141096,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,58,40,15,1,1,-9,1,12.81439225726192,12.81439225726192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,8,5,1,206,0,0,0 +110,136,250,-9,248,247,5,1,1,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-972.1539876444556,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.092755888748009,0,0,3,57.33,53.46,6,3,0,0,8,1,1,187,0,0,0 +110,137,251,252,-9,-9,6,1,0,28,1,0,0,0,2,-9,2,1,0,4,8.02401075190215,8.142540315768342,0,1,0,-9,3,0,0,-151.7392363482588,0,1,1,28,2,4,1,-9,-9,2019,1,3,11,0,37,35,15,1,2,1,0,9.607687430402757,9.607687430402757,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,57,5,2,0,0,8,3,1,857,0,0,0 +110,137,252,251,248,247,3,1,1,28,1,0,0,0,2,-9,1,1,0,4,6.940986505858121,6.881098081292594,0,1,0,-9,3,0,0,35.38695692289875,0,1,0,28,2,4,1,3,2,2019,1,6,10,0,58,40,15,1,1,1,0,1.825595126196553,1.825595126196553,0,0,0,0,0,0,0,1,1,0,2.658964484554966,0,0,0,49,58,5,3,0,0,8,3,1,857,0,0,0 +111,138,253,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,4,3,0,4,0,7.447569511600076,7.297596716007122,3,0,0,0,-9,0,-997.8374228505471,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,31,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.582327846280656,0,0,48.11,56.11,6,1,0,0,10,3,0,420,0,0,0 +112,139,254,-9,255,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1154.93554044632,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,1088.5,0,0,0 +112,139,255,-9,-9,-9,1,1,0,30,2,0,2,0,3,-9,2,1,0,3,1.899091395710288,6.153936148964653,6.135302045488905,4,0,0,0,-9,0,-1052.211524886199,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,8,1,0,15,1,8,-9,0,.6533810562404458,.6533810562404458,0,0,0,0,0,0,0,1,1,0,6.054893912583763,0,14.2175415663943,3,21.07,40.23,3,1,0,0,9,2,0,1088.5,0,0,0 +113,140,256,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,3,8.160534357463501,8.210781349555942,0,3,0,0,0,-9,0,-1031.319457493619,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,47,43,15,1,0,-9,0,10.61800421944427,10.61800421944427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,2,4,1,305,0,0,0 +114,141,257,258,-9,-9,1,1,1,56,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,10,0,3,-52.30655149087685,-9,0,0,53,2,3,1,3,3,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.56315938318537,3,50,49,5,1,0,1,4,2,0,434,0,0,0 +114,141,258,257,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.303983963342309,7.177370494892013,0,1,0,-9,10,0,-3,4.971315632256244,-9,0,0,56,2,3,3,-9,-9,2019,2,1,12,0,38,0,15,1,2,3,0,4.456592997367061,4.456592997367061,0,0,0,0,0,0,0,1,1,0,0,0,127.2259726096448,3,47,49,5,1,0,1,4,2,0,434,0,0,0 +114,142,259,-9,258,257,3,1,1,22,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1043.47582284465,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.969837293119734,0,0,0,47,59,5,1,0,0,4,1,0,551,0,0,0 +114,143,260,-9,258,257,4,1,0,20,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-945.9187148676061,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.04,60.35,5,1,1,0,4,1,0,1521,0,0,0 +115,144,261,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,3,0,5.698572767720749,5.628939530745211,3,0,0,0,-9,0,-937.3795134031786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.661659086069529,5.838873124825051,0,0,52,47,5,1,0,0,6,2,0,489,0,0,0 +115,145,262,-9,-9,261,2,1,0,22,2,0,0,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1088.511467304643,-9,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,24,8,0,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.1999496574044,3,30.32,61.77,4,1,0,0,6,1,0,100,0,0,0 +116,146,263,264,-9,-9,3,1,1,26,1,0,0,0,2,-9,2,1,0,4,7.943625658165255,8.092433661139884,0,1,0,-9,4,0,6,-28.80867082864774,0,1,0,20,2,5,3,3,-9,2019,2,5,12,0,40,34,15,1,0,3,0,6.819200635968977,6.819200635968977,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,46.06,4,3,0,0,6,3,0,136.5,0,0,0 +116,146,264,263,-9,-9,5,1,0,20,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,-9,4,0,-6,34.82764167396614,0,1,1,26,2,4,1,-9,-9,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,39.76,2,3,1,0,6,3,0,136.5,0,0,0 +116,147,265,266,-9,-9,4,1,0,24,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,2,0,1,-70.84290622195414,0,1,1,23,2,5,1,-9,-9,2019,3,2,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.78,30.25,4,3,1,0,6,3,0,474.5,0,0,0 +116,147,266,265,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,5,7.886383105997267,7.952191341013132,0,1,0,-9,2,0,-1,30.24420270144538,0,1,0,24,2,3,3,-9,3,2019,2,4,7,0,47,50,15,1,0,3,0,6.658583698176078,6.658583698176078,0,0,0,0,0,0,0,1,1,0,5.710138136848205,0,0,0,43.42,51.75,5,3,0,0,6,3,0,474.5,0,0,0 +117,148,267,-9,269,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1057.357438493922,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,0,1454,0,0,0 +117,148,268,-9,269,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1095.661834738042,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,11,2,0,1454,0,0,0 +117,148,269,-9,-9,-9,1,1,0,29,3,0,2,0,2,-9,1,1,0,5,6.340061516608942,6.088757551546349,0,4,0,0,0,-9,0,-886.6537517518641,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,26,12,14,55,15,1,12,-9,0,3.962836611037649,3.962836611037649,0,0,0,0,0,0,0,1,1,0,0,0,39.03343694445865,3,38.44,29.6,3,1,0,1,11,2,0,1454,0,0,0 +118,149,270,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,2,7.780589627809723,7.888857479510661,0,4,0,0,0,-9,0,-1082.397433100587,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,25,0,15,1,0,-9,0,13.67415980887696,13.67415980887696,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.2,35.43,5,1,0,0,13,3,0,1571,0,0,0 +119,150,271,272,-9,-9,1,1,0,39,1,0,1,0,1,-9,2,1,0,4,8.352982189612286,8.337119445162266,0,2,0,-9,7,0,-15,34.27833292358785,0,0,1,54,1,4,1,-9,-9,2019,1,2,11,1,38,38,15,1,1,1,0,14.60188021538306,14.60188021538306,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,8,4,0,2260.666666666667,0,0,0 +119,150,272,271,-9,-9,2,1,1,54,1,0,1,0,1,-9,1,1,0,4,7.528959655073062,7.254940858462383,0,2,0,-9,7,0,15,-12.41768829238768,0,0,0,39,1,4,1,3,3,2019,1,1,4,0,24,8,15,1,0,1,0,7.073887513066095,7.073887513066095,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,5,4,0,0,8,4,0,2260.666666666667,0,0,0 +119,150,273,-9,271,272,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.9377389675054,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,8,4,0,2260.666666666667,0,0,0 +120,151,274,275,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,35,0,-6,0,0,0,0,76,3,3,3,-9,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.01,39.56,7,1,0,0,5,1,1,167.5,0,0,0 +120,151,275,274,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,35,0,6,0,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.14,34.83,6,1,0,0,5,1,1,167.5,0,0,0 +121,152,276,277,-9,-9,1,1,0,83,1,0,0,0,1,-9,4,3,0,3,0,7.570208170919126,7.517752715086156,1,0,-9,60,0,3,21.48918141491482,0,0,0,80,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.553725899652543,6.99726409219433,117.4469323058132,1,53,44,6,1,0,0,11,5,1,534,0,0,0 +121,152,277,276,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,3,0,9.608704903414074,9.58082530313262,1,0,-9,60,0,-3,-67.49995708138977,0,0,0,83,1,3,3,2,2,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.29891786583247,0,0,55,45,6,1,0,0,11,5,1,534,0,0,0 +122,153,278,279,-9,-9,2,1,1,36,1,0,1,0,3,-9,2,1,0,4,7.326870180573048,7.506780069338741,0,2,0,-9,1,-9,-8,-98.54723089425636,-9,0,0,44,2,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,4.629111710826849,4.629111710826849,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,5,0,0,5,4,1,792.6666666666666,0,0,0 +122,153,279,278,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,3,8.620671168230581,8.667630734533663,0,2,0,-9,1,-9,8,120.7136205423295,-9,0,1,36,3,4,1,2,2,2019,1,2,9,1,48,0,15,1,1,1,0,14.16209261435448,14.16209261435448,0,0,0,0,0,0,0,1,1,0,4.763460665800061,0,0,0,49.04,55.86,5,1,0,0,5,4,1,792.6666666666666,0,0,0 +122,153,280,-9,279,278,3,1,1,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1121.826343270542,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,5,4,1,792.6666666666666,0,0,0 +123,154,281,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,4,0,7.40787865908011,7.524076769220403,3,0,0,0,-9,0,-969.5703882434126,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.693393209283011,7.492039087917192,0,0,51.24,58.84,6,1,0,0,8,3,1,1496,0,0,0 +124,155,282,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,3,8.722395152787515,8.685755567931741,0,1,0,-9,8,0,6,51.50205085619708,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,19,8,35,28,15,1,8,-9,0,16.78780965819047,16.78780965819047,0,0,0,0,0,0,0,0,0,0,3.83381922569856,0,0,0,30.45,64.19,5,1,0,0,2,5,1,1473,0,0,0 +124,156,283,-9,-9,-9,2,1,0,43,2,0,0,0,1,-9,2,1,0,3,8.351731284096083,8.086212420581532,0,1,0,-9,8,0,-6,-38.26166068024595,0,0,1,-9,-9,-9,-9,2,3,2019,1,1,27,11,32,32,15,1,11,-9,0,16.95770167177678,16.95770167177678,0,0,0,0,0,0,0,0,0,0,1.666513019470445,0,0,0,23.64,60.82,3,1,0,0,2,5,1,648,0,0,0 +125,157,284,286,-9,-9,1,1,0,42,1,1,2,0,1,-9,2,1,0,4,9.250046229602397,9.529077112950885,0,2,0,-9,12,-9,-1,-27.52865303371265,-9,0,1,43,1,4,1,1,1,2019,1,2,11,2,40,0,15,1,2,1,0,31.90011404967986,31.90011404967986,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,58.08,6,2,0,0,9,5,1,577,0,0,0 +125,157,285,-9,284,286,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-921.9709257640923,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,9,5,1,577,0,0,0 +125,157,286,284,-9,-9,2,1,1,43,1,1,2,0,1,-9,2,1,0,4,9.128833371736759,9.453326286142387,0,2,0,-9,12,-9,1,-106.0175206693126,-9,0,0,42,1,4,1,2,2,2019,1,1,9,0,42,0,15,1,0,1,0,33.54165688018559,33.54165688018559,0,0,0,0,0,0,0,1,1,0,4.605164449699269,0,0,0,52.43,55.57,6,1,0,0,9,5,1,577,0,0,0 +125,157,287,-9,284,286,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-994.5285380960806,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,5,1,577,0,0,0 +126,158,288,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,3,7.840927368468352,7.902524703296585,0,1,0,-9,8,0,-10,115.1698621566891,0,0,1,-9,-9,-9,-9,-9,2,2019,1,2,12,0,37,37,15,1,0,-9,0,10.2406308736112,10.2406308736112,0,0,0,0,0,0,0,0,0,0,3.449275401354385,0,0,0,46.48,50.4,6,1,0,0,5,4,1,904,0,0,0 +126,159,289,-9,-9,-9,2,1,0,40,2,0,0,0,1,-9,2,1,0,5,8.141412425507612,8.034770028998082,0,1,0,-9,8,0,10,-111.1021062165275,0,0,1,-9,-9,-9,-9,3,2,2019,1,1,9,0,41,42,15,1,0,-9,0,9.026104736496697,9.026104736496697,0,0,0,0,0,0,0,0,0,0,3.104128778668453,0,12.59351174206967,3,57.06,57.76,7,1,0,0,5,4,1,1112,0,0,0 +127,160,290,-9,292,-9,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-847.9468024054779,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,4,0,0,8,3,0,1052,0,0,0 +127,160,291,-9,292,-9,2,1,0,13,2,0,3,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-878.6039805846484,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,4,0,0,8,3,0,1052,0,0,0 +127,160,292,-9,-9,-9,1,1,0,35,3,0,3,0,1,-9,2,1,0,2,8.548199702570034,8.527261047289828,0,4,0,-9,0,1,0,-989.8477532842479,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,23,11,37,38,15,1,11,-9,0,15.81442997169176,15.81442997169176,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.69,60.42,2,4,0,0,8,3,0,1052,0,0,0 +127,160,293,-9,292,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.472932323239,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,3,0,1052,0,0,0 +128,161,294,295,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.125331243099597,8.315266934293788,0,1,0,-9,28,0,5,-151.3004264673174,0,0,0,48,3,2,1,-9,-9,2019,1,2,13,1,58,48,15,1,1,1,0,6.541502434356265,6.541502434356265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,4,1,0,0,9,4,0,1072.5,0,0,0 +128,161,295,294,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,2,7.353450237345728,7.236998785009821,0,1,0,-9,28,0,-5,-116.6381682295182,0,0,0,53,2,3,1,-9,3,2019,1,1,14,2,42,37,15,1,2,1,0,5.245613406781161,5.245613406781161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.6,40.47,4,1,0,0,9,4,0,1072.5,0,0,0 +128,162,296,-9,295,294,4,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.739385474679939,7.917541360565316,0,3,0,0,0,-9,0,-973.6627178440981,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,40,0,15,1,2,-9,1,7.977634757968635,7.977634757968635,0,0,0,0,0,0,0,1,1,0,2.405624981021166,0,0,0,28.74,46.47,4,1,0,0,9,3,0,470,0,0,0 +129,163,297,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,5,8.810165477809246,8.52359156854793,0,3,0,0,0,-9,0,-944.5155787713259,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,47,50,15,1,5,-9,0,17.28937471910134,17.28937471910134,0,0,0,0,0,0,0,0,0,0,2.37129396778212,0,0,0,55.24,55.87,6,1,0,0,1,5,0,3198,0,0,0 +130,164,298,299,-9,-9,2,1,0,58,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,18,0,10,0,0,0,0,48,2,2,3,3,3,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,1,1,12,1,0,907.6666666666666,0,0,0 +130,164,299,298,-9,-9,1,1,1,48,1,0,1,0,2,-9,3,3,0,2,0,0,0,2,0,-9,18,0,-10,0,0,0,0,58,3,4,3,2,3,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.17,43.72,2,1,1,1,12,1,0,907.6666666666666,0,0,0 +130,164,300,-9,298,299,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.5086145579429,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,0,907.6666666666666,0,0,0 +131,165,301,302,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,4,7.490430018595762,7.422142135500555,0,1,0,-9,5,0,-8,91.941983893521,0,0,0,53,2,5,1,3,-9,2019,1,2,7,0,25,26,15,1,0,1,0,7.303004362740976,7.303004362740976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,482.5,0,0,0 +131,165,302,301,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,5,7.908870736355329,8.471113642311352,6.759730987038319,1,0,-9,5,0,8,29.49820159660154,0,0,0,45,2,4,1,-9,-9,2019,1,1,10,0,41,41,15,1,0,1,0,8.161679940964445,8.161679940964445,0,0,0,0,0,0,0,0,0,0,6.456201438143021,7.34997428907425,0,0,51.14,60.45,7,1,0,0,12,4,1,482.5,0,0,0 +132,166,303,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,-9,0,-977.7266937993936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,30.03,6,1,0,0,6,1,0,191,0,0,0 +133,167,304,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-999.9129377614057,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,8,1,0,1651,0,0,0 +133,168,305,-9,304,-9,2,1,0,30,2,0,0,0,2,-9,2,1,0,4,8.475141655258559,8.533796915466361,0,3,0,0,0,-9,0,-993.5170598922139,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,35,35,15,1,0,-9,1,20.52089267464946,20.52089267464946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.97,56.11,6,3,0,0,8,5,0,36,0,0,0 +133,169,306,-9,304,-9,3,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.391875741375477,8.516895778394192,0,3,0,0,0,-9,0,-904.5874884873002,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,37,15,1,0,-9,1,15.637790263376,15.637790263376,0,0,0,0,0,0,0,1,1,0,1.290863951832064,0,0,0,58.15,52.91,7,3,0,0,8,4,0,331,0,0,0 +133,170,307,-9,304,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.207318741899819,8.201796624013904,0,3,0,0,0,-9,0,-1060.919557555615,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,33,37,15,1,2,-9,1,11.9409996562996,11.9409996562996,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,4,0,1654,0,0,0 +134,171,308,309,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,6.963347093828443,6.649004223704478,1,0,-9,6,0,-4,41.25672932226918,0,0,0,86,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,29.61086461780801,0,0,0,1,1,0,0,6.986797569798771,0,0,42.6,35.04,5,1,0,0,8,2,1,575,0,0,0 +134,171,309,308,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,4,0,5.894083930293396,5.851054145420438,1,0,-9,6,0,4,13.8051046543771,0,0,0,82,3,2,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,1,0,0,29.47138682458045,0,0,0,1,1,0,0,5.714781790185463,0,0,47.39,38.99,1,1,0,0,8,2,1,575,0,0,0 +134,172,310,-9,308,309,3,1,0,50,2,0,0,0,2,-9,1,1,0,3,8.58275197885834,8.332749838015376,0,3,0,0,0,-9,0,-806.281716076487,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,50,15,1,0,-9,1,16.68986508299123,16.68986508299123,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,6,1,0,0,8,5,1,1369,0,0,0 +135,173,311,312,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.953541050953383,8.781790518865586,0,2,0,-9,15,0,-1,111.4401256403333,0,0,0,47,2,5,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,17.42719831059492,17.42719831059492,0,0,0,0,0,0,0,1,1,0,3.841292184787673,0,0,0,57.16,56.15,7,4,0,0,8,4,1,681.25,0,0,0 +135,173,312,311,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,5,8.163460555596771,8.307541908455601,0,2,0,-9,13,0,1,43.78056680983188,0,0,0,46,1,4,1,2,1,2019,1,1,0,0,36,36,15,1,0,1,0,10.67287911981903,10.67287911981903,0,0,0,0,0,0,0,1,1,0,.5445652384485155,0,0,0,59.43,58.05,7,4,0,0,8,4,1,681.25,0,0,0 +135,173,313,-9,312,311,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.7860513710567,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,4,1,681.25,0,0,0 +135,173,314,-9,312,311,3,1,1,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1033.09818436098,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,4,0,0,8,4,1,681.25,0,0,0 +136,174,315,316,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,4.9758040660908,5.227827815089608,1,0,-9,7,0,3,-14.22791161532018,0,0,0,57,2,4,3,3,3,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.806051336666101,4.897471099381974,0,0,40.88,31.02,3,1,0,0,12,3,1,958.5,0,0,0 +136,174,316,315,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,4,0,8.178378099592218,8.081390373358868,1,0,-9,7,0,-3,-48.38676592398742,0,0,0,60,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.944352913059026,7.843779561428647,0,3,57.16,56.15,6,1,0,0,12,3,1,958.5,0,0,0 +137,175,317,318,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,50,0,1,31.47578373888415,0,0,0,72,2,5,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.991111439478733,0,0,0,54.1,59.11,6,1,0,0,9,4,1,1251,0,0,0 +137,175,318,317,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,8.542028184574058,8.673990266610325,1,0,-9,50,0,-1,89.89321453536689,0,0,0,73,2,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.00585252784477,8.295266206419852,0,0,60.02,56.42,7,1,0,0,9,4,1,1251,0,0,0 +138,176,319,320,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,6.830879974652606,8.379279219697478,7.966646767019339,1,0,-9,1,-9,12,17.52207243475202,-9,0,0,53,1,4,3,-9,-9,2019,4,1,8,1,2,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.173443499462712,10.44648969062677,3,60.29,52.11,6,1,0,0,9,3,0,1467,0,0,0 +138,176,320,319,-9,-9,1,1,0,53,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,25,-9,-12,32.70302788264237,-9,0,0,65,2,3,3,1,2,2019,4,2,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.803555513910555,0,2.637942620439168,3,54.79,55.86,7,1,0,0,9,3,0,1467,0,0,0 +139,177,321,322,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-2,40.48620723745507,0,0,0,80,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.44,46.58,6,1,0,0,11,2,1,2282.5,0,0,0 +139,177,322,321,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,6.795356513574003,6.813596720828452,1,0,-9,8,0,2,78.38811041596414,0,0,0,78,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,26.95205980053882,0,0,0,0,1,1,0,0,6.683112169192476,0,0,58.07,46.29,6,1,0,0,11,2,1,2282.5,0,0,0 +140,178,323,324,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.925001677538839,8.573293799410841,0,1,0,-9,8,0,0,52.25227805325773,0,0,0,50,2,3,1,2,2,2019,1,2,11,0,60,65,15,1,0,1,0,11.27297871050349,11.27297871050349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,7,5,1,216,0,0,0 +140,178,324,323,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,8.24074497389827,8.189837936443039,0,1,0,-9,8,0,0,-48.26610186155119,0,0,0,50,2,3,1,2,2,2019,1,1,11,0,37,42,15,1,0,1,0,12.92931897048652,12.92931897048652,0,0,0,0,0,0,0,0,0,0,1.680420117920847,0,0,0,41.01,55.32,6,1,0,0,7,5,1,216,0,0,0 +140,179,325,-9,324,323,3,1,0,26,2,0,0,0,1,-9,2,1,0,2,8.585628795383665,8.587110677464736,0,3,0,0,0,-9,0,-908.4681716925752,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,23,11,37,38,15,1,11,-9,1,11.78442082289743,11.78442082289743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.56,61.34,3,1,0,0,7,4,1,397,0,0,0 +141,180,326,327,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,5,0,8.272046194624817,8.106776874340124,1,0,-9,61,0,2,-20.00728036482052,0,0,0,81,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.942266196370317,0,0,60.02,56.42,7,1,0,0,9,3,1,213,0,0,0 +141,180,327,326,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,61,0,-2,87.86598245806799,0,0,0,83,2,5,3,3,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,63.4,45.23,7,1,0,0,9,3,1,213,0,0,0 +142,181,328,329,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,5,8.173869984425245,8.367684140490034,0,1,0,-9,6,0,2,-19.63732501672526,0,0,0,31,1,4,1,1,1,2019,1,2,10,0,41,45,15,1,0,1,0,9.568291133170161,9.568291133170161,0,0,0,0,0,0,0,1,1,0,2.69367966774458,0,0,0,62.39,56.71,5,1,0,0,9,3,1,322,0,0,0 +142,181,329,328,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,4,0,0,0,1,0,-9,6,0,-2,-33.24141246168896,0,0,1,33,2,5,1,-9,-9,2019,1,1,8,0,0,36,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.82,54.37,4,3,0,0,9,3,1,322,0,0,0 +143,182,330,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,4,3,0,2,0,7.417524809262983,7.601655640903096,3,0,0,0,-9,0,-1043.534607143481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.507860827634892,0,3,48.53,33.39,4,1,0,0,7,3,1,846,0,0,0 +144,183,331,332,-9,-9,1,1,0,51,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,27,0,-1,7.201226970487794,0,0,0,52,2,3,1,-9,-9,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,6,1,0,0,7,3,1,562,0,0,0 +144,183,332,331,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,3,7.761976478340807,7.826853315907771,0,1,0,-9,27,0,1,-69.91927003550902,0,0,0,51,2,3,3,-9,-9,2019,2,1,7,0,8,40,15,1,0,3,0,38.67032393508531,38.67032393508531,0,0,0,0,0,0,0,0,0,0,1.093960810625786,0,0,0,58.86,49.95,7,1,0,0,7,3,1,562,0,0,0 +145,184,333,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,4,8.73021014281289,8.985659897060968,7.267945650260342,3,0,0,0,-9,0,-956.1580062746131,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,35,37,15,1,2,-9,0,18.65756374173171,18.65756374173171,0,0,0,0,0,0,0,1,1,0,3.410691586416579,7.404072740482144,0,0,58.9,45.74,6,1,0,0,1,5,1,320,0,0,0 +146,185,334,335,-9,-9,3,1,1,45,1,0,1,0,1,-9,2,1,0,3,8.711582998241949,8.590944366155753,0,2,0,-9,3,0,-1,65.27798108468453,0,0,0,46,2,3,1,-9,-9,2019,1,1,9,0,24,0,15,1,0,1,0,26.36148667010526,26.36148667010526,0,0,0,0,0,0,0,1,1,0,2.227055133876406,0,0,0,49.63,54.22,4,1,0,0,4,5,1,1015.666666666667,0,0,0 +146,185,335,334,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,3,8.121753875868677,8.153608801084602,0,2,0,-9,3,0,1,83.00750985051057,0,0,0,45,1,3,1,3,2,2019,1,3,7,0,42,43,15,1,0,1,0,9.737938305106505,9.737938305106505,0,0,0,0,0,0,0,1,1,0,4.182315312518024,0,0,0,53.14,51.28,5,1,0,0,4,5,1,1015.666666666667,0,0,0 +146,185,336,-9,335,334,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.295530224838,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,5,1,1015.666666666667,0,0,0 +147,186,337,338,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.030744727778483,8.507936723892787,0,1,0,-9,31,0,-7,30.56525252982128,0,0,0,63,2,3,3,3,-9,2019,2,1,8,0,36,36,15,1,0,4,0,12.29258041058696,12.29258041058696,0,0,0,0,0,0,0,0,0,0,2.964962410052808,0,0,0,48.53,58.91,6,1,0,0,5,4,1,600,0,0,0 +147,186,338,337,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.231705980915978,7.563243088523028,1,0,-9,31,0,7,-52.2501970329759,0,0,0,56,2,4,1,1,2,2019,3,2,14,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.773584840881623,7.117551279000642,0,0,38.15,55.39,6,1,0,0,5,4,1,600,0,0,0 +148,187,339,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,2,0,4.577258163538618,4.460927429342348,3,0,0,0,-9,0,-952.0972301617217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.554050037564789,0,0,53.4,17.68,5,1,0,0,2,1,1,1057,0,0,0 +149,188,340,-9,342,343,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-832.2814539969438,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,12,5,1,1320.75,0,0,0 +149,188,341,-9,342,343,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.7922672761914,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,5,1,1320.75,0,0,0 +149,188,342,343,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.841193195024882,8.968476838059507,0,2,0,-9,20,0,0,0,0,0,0,45,1,4,1,2,2,2019,1,2,9,0,45,45,15,1,0,1,0,15.55772773421123,15.55772773421123,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,1320.75,0,0,0 +149,188,343,342,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,4,8.75713697667952,8.503853593252185,0,2,0,-9,20,0,0,0,0,0,0,45,1,4,1,2,2,2019,1,1,7,0,37,36,15,1,0,1,0,22.9599442057298,22.9599442057298,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,1320.75,0,0,0 +150,189,344,-9,-9,-9,1,1,0,51,3,0,2,0,3,-9,2,1,0,4,6.740063940755072,6.737892904032469,0,4,0,0,0,-9,0,-915.8342058759636,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,16,8,15,1,1,-9,0,7.06039073014318,7.06039073014318,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,6,2,0,0,8,2,0,991,0,0,0 +150,189,345,-9,344,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.907054942807,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,8,2,0,991,0,0,0 +151,190,346,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,3,8.639167648416432,8.514257241765199,0,3,0,0,0,-9,0,-1075.186239595991,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,37,15,1,1,-9,0,13.16856602467303,13.16856602467303,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.9,60.31,6,1,0,0,11,5,1,340,0,0,0 +151,191,347,-9,346,-9,2,1,1,19,2,0,0,0,2,-9,7,2,0,3,5.741080559681637,6.223730263236868,0,3,0,0,0,-9,0,-962.2771308938771,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,11,2,1,269,0,0,0 +152,192,348,349,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.186267120158835,8.214137730225058,0,1,0,-9,40,0,1,146.0627202726808,0,0,0,59,1,3,3,2,1,2019,2,1,15,5,25,20,15,1,5,4,0,21.59186246879263,21.59186246879263,0,0,0,0,0,0,0,0,0,0,4.111586290802384,0,0,0,38.51,59.43,6,1,0,0,9,3,1,626.5,0,0,0 +152,192,349,348,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,40,0,-1,110.429004484337,0,0,0,60,1,3,1,3,3,2019,3,2,9,0,0,50,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.334901436867438,0,0,0,57.33,53.46,6,1,0,0,9,3,1,626.5,0,0,0 +153,193,350,351,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,4.569147586802815,4.930420581406485,1,0,-9,59,0,-1,49.46245869542689,0,0,0,79,2,3,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.72448455243976,0,3,61.27,46.03,7,1,0,0,4,3,1,1193.5,0,0,0 +153,193,351,350,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.729196946046642,7.719499926661656,1,0,-9,59,0,1,107.056246846267,0,0,0,78,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.014348882419348,7.676212495719933,0,0,52.54,52.91,6,1,0,0,4,3,1,1193.5,0,0,0 +154,194,352,-9,354,353,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.2374681643613,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,5,1,603.75,0,0,0 +154,194,353,354,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.763997091607875,8.783776426967066,0,2,0,-9,20,0,0,152.3687565301834,0,0,0,44,1,3,1,2,2,2019,1,2,15,4,40,38,15,1,4,1,0,18.72916614274759,18.72916614274759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.34,29.04,5,1,0,0,11,5,1,603.75,0,0,0 +154,194,354,353,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,3,8.910334868749734,8.961918314993895,0,2,0,-9,10,0,0,70.96575431312986,0,0,1,44,2,3,1,-9,-9,2019,1,1,13,1,38,44,15,1,1,1,0,26.69284666915798,26.69284666915798,0,0,0,0,0,0,0,1,1,0,4.910219290763661,0,0,0,31.04,58.94,5,1,0,0,11,5,1,603.75,0,0,0 +154,194,355,-9,354,353,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.3439277668856,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,5,1,603.75,0,0,0 +155,195,356,-9,358,359,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.9884360495416,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,11,1,0,1584.5,0,0,0 +155,195,357,-9,358,359,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1033.525704048099,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,1,0,1584.5,0,0,0 +155,195,358,359,-9,-9,1,1,0,27,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-12,0,0,1,1,39,2,2,3,-9,-9,2019,4,2,30,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3.44,55.81,1,1,0,1,11,1,0,1584.5,0,0,0 +155,195,359,358,-9,-9,2,1,1,39,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,7,0,12,0,0,0,0,27,2,2,3,-9,-9,2019,4,1,11,2,0,24,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.5797685437949,2,62.03,25.65,4,1,0,1,11,1,0,1584.5,0,0,0 +156,196,360,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,5,9.654515371268143,9.180025419916646,0,3,0,0,0,-9,0,-1037.130734056156,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,53,15,1,0,-9,0,37.13966260508441,37.13966260508441,0,0,0,0,0,0,0,0,0,0,5.910066189766698,0,0,0,57.06,57.76,7,1,0,0,6,5,1,1498,0,0,0 +157,197,361,362,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,4,9.758167641388203,9.626597899715176,0,1,0,-9,7,0,10,-49.84232896312977,0,0,0,50,2,3,1,3,3,2019,1,1,3,0,62,50,15,1,0,1,0,30.92173525528982,30.92173525528982,0,0,0,0,0,0,0,0,0,0,5.038912663221669,0,0,0,57.16,56.15,6,1,0,0,10,5,0,642,0,0,0 +157,197,362,361,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,3,7.128352232161096,6.964223872955217,0,1,0,-9,7,0,-10,-137.6199409602085,0,0,0,60,1,4,1,3,3,2019,1,2,9,1,3,10,15,1,1,1,0,37.60133167125695,37.60133167125695,0,0,0,0,0,0,0,0,0,0,4.978261591984008,0,0,0,58.32,50.22,6,1,0,0,10,5,0,642,0,0,0 +158,198,363,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,4,0,4.526909184652665,4.872147397955501,3,0,0,0,-9,0,-1021.56586257748,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.328027340042725,4.196854551632334,0,0,39.72,46.09,6,1,0,0,6,2,1,454,0,0,0 +159,199,364,365,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,5,9.184690094131213,9.400222943619356,0,1,0,-9,20,-9,2,-40.92492551587128,-9,0,0,54,2,4,1,-9,2,2019,1,1,8,0,40,0,15,1,0,1,0,26.84704919429522,26.84704919429522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.44,58.8,6,1,0,0,2,5,1,278,0,0,0 +159,199,365,364,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,4,7.831880022396573,7.564322901223145,0,1,0,-9,20,-9,-2,90.25010322518152,-9,0,0,56,1,5,1,2,2,2019,1,2,6,1,8,0,15,1,1,1,0,32.76604086792236,32.76604086792236,0,0,0,0,0,0,0,0,0,0,6.26778489002635,0,0,0,51.77,58.57,6,1,0,0,2,5,1,278,0,0,0 +160,200,366,367,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,4,8.867653056233886,8.825765297629019,0,1,0,-9,3,0,3,-6.250643989944371,0,0,0,36,1,3,1,2,2,2019,1,2,11,0,35,36,15,1,0,1,0,23.62042925696947,23.62042925696947,0,0,0,0,0,0,0,0,0,0,6.574282302153324,0,0,0,52.48,54.33,6,1,0,0,6,5,1,494.5,0,0,0 +160,200,367,366,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,3,6.973723325385675,7.164591207392227,0,1,0,-9,3,0,-3,-53.56972856126108,0,0,1,39,1,4,1,-9,-9,2019,1,1,17,6,35,5,15,1,6,1,0,4.05541625586004,4.05541625586004,0,0,0,0,0,0,0,0,0,0,7.604201594741011,0,0,0,43.77,54.09,5,1,0,0,6,5,1,494.5,0,0,0 +161,201,368,369,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,7.082066305417147,7.259758566199772,1,0,-9,6,0,-1,28.36453095209495,0,0,0,61,2,5,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.960547188487936,7.313893045812303,0,3,54.2,57.49,6,1,0,0,9,4,1,871,0,0,0 +161,201,369,368,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,5,8.393610540766877,8.349469309137557,0,1,0,-9,6,0,1,-115.1455534619051,0,0,0,60,2,4,3,2,2,2019,2,2,6,0,43,46,15,1,0,4,0,13.18185812722324,13.18185812722324,0,0,0,0,0,0,0,0,0,0,2.610845918264361,0,5.807155460694659,3,57.06,57.76,6,1,0,0,9,4,1,871,0,0,0 +162,202,370,-9,371,372,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.006578515136422,8.01413632356642,0,3,0,0,0,-9,0,-1111.54949105954,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,2,-9,1,9.429241653745947,9.429241653745947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,5,1,0,0,7,4,1,152,0,0,0 +162,203,371,372,-9,-9,4,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.147263645325676,7.720098040006603,0,1,0,-9,5,0,-3,-66.19169124417361,0,0,0,53,2,4,1,2,2,2019,1,3,8,1,22,24,15,1,1,1,0,11.2847104456048,11.2847104456048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.28,57.13,6,1,0,0,7,5,1,333,0,0,0 +162,203,372,371,-9,-9,3,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.482439653793742,9.391680383884559,0,1,0,-9,5,0,3,-115.1376752141827,0,0,0,50,2,4,1,2,3,2019,1,4,7,0,60,37,15,1,0,1,0,17.9245683309703,17.9245683309703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,49.66,6,1,0,0,7,5,1,333,0,0,0 +163,204,373,374,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,0,0,0,0,71,3,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,6,1,0,1,5,1,1,790,0,0,0 +163,204,374,373,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,2,0,0,0,0,69,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.91,44.17,4,1,0,0,5,1,1,790,0,0,0 +164,205,375,376,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,3,7.719629281510132,7.693351850691254,0,2,0,-9,6,0,-6,-97.1570772180265,0,0,1,41,2,5,1,-9,-9,2019,1,1,24,10,28,28,15,1,10,1,0,10.59912490010085,10.59912490010085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.09,52.47,3,1,0,0,2,5,1,1299.666666666667,0,0,0 +164,205,376,375,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,5,8.963683467439488,8.869448850813299,0,2,0,-9,6,0,6,98.58782688406176,0,0,0,35,1,3,1,2,2,2019,1,2,8,0,40,37,15,1,0,1,0,23.99994202714239,23.99994202714239,0,0,0,0,0,0,0,1,1,0,5.988147107919209,0,0,0,54.69,57.47,6,1,0,0,2,5,1,1299.666666666667,0,0,0 +164,205,377,-9,375,376,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1201.540609899769,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,1299.666666666667,0,0,0 +165,206,378,379,-9,-9,1,1,1,70,1,0,0,0,3,-9,2,1,0,4,7.182012890186937,7.29600552940744,6.680348479725607,1,0,-9,40,0,10,45.35752332056276,0,0,0,60,1,2,3,3,2,2019,2,2,10,0,16,12,15,1,0,4,0,8.06607028049622,8.06607028049622,0,0,0,0,0,0,0,1,1,0,6.66844571145575,6.691003533154433,0,0,57.07,49.39,5,1,0,0,6,2,1,1313,0,0,0 +165,206,379,378,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,2,0,5.017162553123179,5.251375400188397,1,0,-9,40,0,-10,70.98225306788963,0,0,0,70,3,4,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.122802845742489,0,0,59.87,37.67,6,1,0,0,6,2,1,1313,0,0,0 +166,207,380,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1024.128839452198,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.91,39.23,5,1,1,1,5,1,0,454,0,0,0 +167,208,381,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-932.2968488297709,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,8,0,31,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.97,60.04,1,2,0,1,2,1,0,224,0,0,0 +167,208,382,-9,381,-9,2,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1093.337128920972,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,5,5,0,0,2,1,0,224,0,0,0 +167,208,383,-9,381,-9,3,1,1,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1016.353952340123,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,5,0,0,2,1,0,224,0,0,0 +168,209,384,385,-9,-9,2,1,0,53,1,0,1,0,1,-9,2,1,0,5,8.006786067851626,8.192477752070468,0,2,0,-9,26,0,0,-95.86280771908564,0,0,0,53,2,4,1,2,3,2019,1,1,9,0,37,32,15,1,0,1,0,9.640189159460764,9.640189159460764,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,4,1,1162,0,0,0 +168,209,385,384,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.82803502038626,8.604515550502153,0,2,0,-9,7,0,0,158.0039722647182,0,0,0,53,1,5,1,2,3,2019,1,2,9,0,40,40,15,1,1,1,0,14.23424525050071,14.23424525050071,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,2,4,1,1162,0,0,0 +168,209,386,-9,384,385,5,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.4430567337516,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,4,1,1162,0,0,0 +168,210,387,-9,384,385,3,1,0,23,2,0,1,0,2,-9,2,1,0,4,7.972360313823993,8.184316635044203,0,3,0,0,0,-9,0,-938.522938188755,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,37,37,15,1,0,-9,1,8.621470697242161,8.621470697242161,0,0,0,0,0,0,0,1,1,0,2.194269346036057,0,0,0,59.53,56.44,7,1,0,0,2,4,1,136,0,0,0 +168,211,388,-9,384,385,4,1,0,22,2,0,1,0,2,-9,2,1,0,4,7.130570139759327,6.971432501867521,0,3,0,0,0,-9,0,-1013.391189854134,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,45,15,1,2,-9,1,3.744191520526337,3.744191520526337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,2,2,1,902,0,0,0 +169,212,389,-9,391,390,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.6250773993669,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,1225.75,0,0,0 +169,212,390,391,-9,-9,1,1,1,34,1,1,2,0,1,-9,2,1,0,3,9.185408885522291,9.179689471656825,0,2,0,-9,12,0,-1,57.36488854505391,0,0,0,35,1,3,3,2,1,2019,2,2,10,0,42,43,15,1,0,3,0,19.69470675685259,19.69470675685259,0,0,0,0,0,0,0,1,1,0,1.149073042814026,0,0,0,54.37,54.8,5,1,0,0,9,4,1,1225.75,0,0,0 +169,212,391,390,-9,-9,2,1,0,35,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,12,0,1,-38.63899096747199,0,0,1,34,1,3,1,1,1,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.5573020306598654,0,0,0,54.96,53.17,5,1,0,0,9,4,1,1225.75,0,0,0 +169,212,392,-9,391,390,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.542129173146,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,1225.75,0,0,0 +170,213,393,394,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,11,0,4,0,0,0,0,59,3,1,3,-9,-9,2019,4,1,11,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.9645468698399,2,42.23,49.99,3,1,0,0,4,1,0,227,0,0,0 +170,213,394,393,-9,-9,1,1,1,59,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,11,0,-4,0,0,0,0,63,3,2,3,-9,-9,2019,4,2,29,10,0,0,15,4,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.6485034982183,3,28.62,25,2,1,0,1,4,1,0,227,0,0,0 +171,214,395,-9,-9,-9,1,1,0,74,3,2,2,0,1,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-957.6368388090576,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.655192592790692,0,0,0,51,46,5,1,0,0,8,1,1,441,0,0,0 +172,215,396,397,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,2,0,5,41.56867074807721,0,0,0,69,2,4,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,6.067534398171134,0,2.803019095795876,0,0,1,1,0,0,0,0,0,47.78,36.16,6,1,0,0,11,2,1,552,0,0,0 +172,215,397,396,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.431051115051664,7.351565154165047,1,0,-9,2,0,-5,-45.61967697044278,0,0,0,74,3,2,3,3,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.485345089608087,0,0,46.92,60.71,6,1,0,0,11,2,1,552,0,0,0 +173,216,398,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,5.790963678655506,5.569435847322763,3,0,0,0,-9,0,-854.9377700292789,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,1,7.059710861778656,0,0,0,0,14.41511198647248,1,1,0,0,5.878172915942185,0,0,39.62,22.87,3,3,0,0,8,2,0,53,0,0,0 +174,217,399,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,8.235399186474421,8.326510796840763,3,0,0,0,-9,0,-1098.123113166584,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.962772214224954,7.897265789547035,0,0,57.16,56.15,6,1,0,0,12,4,1,1205,0,0,0 +175,218,400,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,0,5.795126631568347,5.800010620448115,3,0,0,0,-9,0,-1038.095956535021,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,27.07881744482225,0,1,1,0,0,5.7156936359798,0,0,50.58,26.16,6,1,0,0,6,2,1,140,0,0,0 +176,219,401,-9,402,403,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.578402561933,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,5,1,646,0,0,0 +176,219,402,403,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,4,7.751744095114514,7.604282889542129,0,2,0,-9,19,0,-2,-32.90038062950321,0,0,1,44,1,4,1,2,2,2019,1,2,23,10,28,27,15,1,10,1,0,9.20724982237693,9.20724982237693,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,5,1,0,0,1,5,1,646,0,0,0 +176,219,403,402,-9,-9,2,1,1,44,1,0,3,0,1,-9,1,1,0,4,9.643561248666595,9.195234244049464,0,2,0,-9,20,0,2,-118.5206639575719,0,0,0,42,1,4,1,-9,3,2019,1,1,11,0,40,45,15,1,0,1,0,30.3706941914154,30.3706941914154,0,0,0,0,0,0,0,1,1,0,5.016561191224319,0,0,0,55.19,54.26,6,1,0,0,1,5,1,646,0,0,0 +176,219,404,-9,402,403,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.515923530356,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,5,1,646,0,0,0 +176,219,405,-9,402,403,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-805.2497697547503,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,5,1,646,0,0,0 +177,220,406,-9,409,407,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1058.588177610067,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,3,0,610.75,0,0,0 +177,220,407,409,-9,-9,3,1,1,29,1,1,2,0,2,-9,2,1,0,2,7.655268491635852,7.92147544308408,0,2,0,-9,1,-9,-3,57.50019103431303,-9,1,0,32,1,5,3,-9,-9,2019,2,1,6,0,36,0,15,1,0,3,0,8.270878688208089,8.270878688208089,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,7,1,0,1,1,3,0,610.75,0,0,0 +177,220,408,-9,409,407,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.0167576760489,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,3,0,610.75,0,0,0 +177,220,409,407,-9,-9,1,1,0,32,1,1,2,0,1,-9,6,3,0,5,0,5.983755597383014,6.162725375936104,2,0,1,1,-9,3,3.974810089633154,0,0,1,29,2,2,1,2,-9,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.119611597654221,0,0,0,54.69,57.47,6,1,0,0,1,3,0,610.75,0,0,0 +178,221,410,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,5,8.919680331358256,8.35697917120644,0,3,0,0,0,-9,0,-1036.609187400068,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,60,15,1,0,-9,0,13.80350169609152,13.80350169609152,0,0,0,0,0,0,0,0,0,0,3.496542575821054,0,0,3,61.6,44.82,6,1,0,0,2,5,0,1450,0,0,0 +179,222,411,412,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,5,0,8.245095321246119,8.255708620490003,1,0,-9,8,0,0,-48.13338507320726,0,0,0,66,1,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.206191543610686,62.38826510319139,3,57.06,57.76,6,1,0,0,12,4,1,482,0,0,0 +179,222,412,411,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,7.709615171895301,7.836072817043263,1,0,-9,44,0,0,-29.5806095677016,0,0,0,66,1,5,3,3,2,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.069318899433061,6.752015115802465,4.398311160552888,3,52,53,6,1,0,0,12,4,1,482,0,0,0 +180,223,413,-9,415,416,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.7245174795894,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,681,0,0,0 +180,223,414,-9,415,416,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.7052523197068,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,681,0,0,0 +180,223,415,416,-9,-9,2,1,0,35,1,0,3,0,1,-9,1,1,0,4,6.920944157726668,7.352990477607287,0,2,0,-9,8,0,1,128.9763328258096,0,0,1,34,1,5,1,2,2,2019,1,1,6,0,16,0,15,1,0,1,0,8.230036562849806,8.230036562849806,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,7,1,0,0,2,4,1,681,0,0,0 +180,223,416,415,-9,-9,1,1,1,34,1,0,3,0,1,-9,2,1,0,5,8.977456824635354,9.294551145951999,0,2,0,-9,8,0,-1,-36.14866096059965,0,0,0,35,1,4,1,2,2,2019,1,2,6,0,40,38,15,1,0,1,0,24.38678857245051,24.38678857245051,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,2,4,1,681,0,0,0 +181,224,417,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,2,0,7.383067796615813,7.095367529247599,3,0,0,0,-9,0,-1085.635722584683,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3473791562890399,7.131153999695704,0,0,40.09,39.87,6,1,0,0,4,2,1,480,0,0,0 +182,225,418,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-967.7518799193792,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,38.23,4,1,0,0,12,1,0,550,0,0,0 +183,226,419,-9,-9,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,5,6.946266916686661,7.016279089754429,0,3,0,0,0,-9,0,-995.2575699474472,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,42,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,4,2,1,261,0,0,0 +184,227,420,-9,-9,-9,1,1,0,31,3,0,2,0,2,-9,1,1,0,4,6.581512614978919,7.125105393490353,5.588483879582289,4,0,0,0,-9,0,-1025.839944031481,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,16,16,15,1,0,-9,0,5.462082798936584,5.462082798936584,0,0,0,0,0,0,0,1,0,1,6.094146897510474,0,0,0,36.62,58.96,5,1,0,0,5,2,0,804.3333333333334,0,0,0 +184,227,421,-9,420,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1002.695712393689,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,5,2,0,804.3333333333334,0,0,0 +184,227,422,-9,420,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-934.5731362818498,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,5,2,0,804.3333333333334,0,0,0 +185,228,423,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,1,0,-992.478894777691,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,12,1,0,618,0,0,0 +186,229,424,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,1,1,0,3,8.351205153512238,8.603199468783458,0,3,0,0,0,-9,0,-968.0936204955349,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,50,15,1,0,-9,0,11.33325929578387,11.33325929578387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.82,54.32,6,1,0,0,10,5,0,1869,0,0,0 +187,230,425,426,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.173134531452166,7.385500140474048,1,0,-9,10,0,0,-97.62155970367198,0,0,0,74,2,4,3,-9,-9,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.997907524141874,7.194794938947386,0,0,51.08,49.24,6,1,0,0,8,2,1,386,0,0,0 +187,230,426,425,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,4.346211087790339,4.841883549768318,1,0,-9,52,0,0,-7.256112451068377,0,0,0,74,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.696190814571871,4.665143857549277,0,0,53.33,53.71,6,1,0,0,8,2,1,386,0,0,0 +188,231,427,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,1,1,0,3,7.859716652360161,7.99445180697705,0,3,0,0,0,-9,0,-972.4474314974609,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,25,25,15,1,0,-9,0,11.66797493114626,11.66797493114626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,6,1,0,0,10,4,0,538,0,0,0 +189,232,428,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,4,0,8.14813331647205,8.739395806473579,3,0,0,0,-9,0,-1059.132570253771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.101624542120148,8.214533007523338,0,0,58.87,51.29,6,1,0,0,7,4,1,584,0,0,0 +190,233,429,-9,-9,-9,1,1,1,75,2,0,0,0,2,-9,4,3,0,3,0,6.257106090449831,6.445002328615103,3,0,0,0,-9,0,-1125.75134409008,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.397141387622565,6.355637729556784,0,0,58.47,50.22,6,1,0,0,13,2,1,411,0,0,0 +190,234,430,-9,-9,-9,2,1,0,60,2,0,0,0,3,-9,2,1,0,3,8.127025110993676,7.827258094487509,0,3,0,0,0,-9,0,-1006.386048456286,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,32,31,15,1,0,-9,0,12.50504783546794,12.50504783546794,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.6,56.17,6,1,0,0,13,4,1,1006,0,0,0 +191,235,431,432,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,3,9.507237346041954,9.559570120193055,0,1,0,-9,10,0,3,-110.632461887557,0,0,0,53,2,1,1,-9,-9,2019,1,1,7,0,40,43,15,1,0,1,0,30.28953074515282,30.28953074515282,0,0,0,0,0,0,0,0,0,0,3.765990922406538,0,0,3,56.52,48.31,6,1,0,0,1,5,1,1657.5,0,0,0 +191,235,432,431,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,1,7.749814941372893,7.990671257545173,0,1,0,-9,30,0,-3,-40.18581825376926,0,0,0,56,1,3,1,2,2,2019,1,2,9,0,23,30,15,1,0,1,0,14.46269439943877,14.46269439943877,0,0,0,0,0,0,0,0,0,0,3.189766190981843,0,2.71753609019853,3,55.53,27.62,6,1,0,0,1,5,1,1657.5,0,0,0 +191,236,433,-9,432,431,3,1,1,20,2,0,0,0,2,0,7,2,0,5,7.038455354647891,6.851658327706489,0,3,0,0,0,-9,0,-962.5317912570911,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,23,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,0,0,1,2,1,376,0,0,0 +192,237,434,-9,435,438,6,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.8332706860318,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,1,816.8,0,0,0 +192,237,435,438,-9,-9,1,1,0,33,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,11,0,-3,-28.36807493463269,0,0,1,36,1,4,1,-9,-9,2019,3,2,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.3609349994049,3,45.23,32.27,5,3,0,0,8,2,1,816.8,0,0,0 +192,237,436,-9,435,438,7,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.96130628059,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,1,816.8,0,0,0 +192,237,437,-9,435,438,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.843200629349,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,1,816.8,0,0,0 +192,237,438,435,439,440,2,1,1,36,1,0,3,0,1,-9,2,1,0,4,7.7947661237898,7.820994768837999,0,2,0,-9,4,0,3,-54.9584203310917,0,0,0,33,2,2,3,3,2,2019,2,1,10,0,37,40,15,1,1,3,0,9.768599260027734,9.768599260027734,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,8,2,1,816.8,0,0,0 +192,238,439,440,-9,-9,3,1,0,70,1,0,3,0,3,-9,4,3,0,3,0,0,0,2,0,-9,4,0,-2,76.38159516065052,-9,0,0,72,2,3,3,3,3,2019,4,4,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,3,0,0,8,1,1,1580,0,0,0 +192,238,440,439,-9,-9,4,1,1,72,1,0,3,0,2,-9,4,3,0,3,0,3.597806473191913,3.795558800691439,2,0,-9,4,0,2,-6.293373023692864,-9,0,0,70,3,3,3,-9,-9,2019,4,3,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.374655108661401,0,0,54,46,5,3,0,0,8,1,1,1580,0,0,0 +193,239,441,442,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,4,8.488876130075258,8.451246831005564,5.923522674120172,1,0,-9,47,0,3,25.23224742467103,0,0,0,64,3,2,1,3,3,2019,1,1,11,0,60,50,15,1,0,1,0,9.76782684077464,9.76782684077464,0,0,0,0,0,0,0,1,1,0,6.284725661457045,6.249279952856996,0,0,58.15,52.91,6,1,0,0,7,5,1,558,0,0,0 +193,239,442,441,-9,-9,1,1,0,64,1,0,0,0,3,-9,1,1,0,2,8.420796565193745,8.287930847139462,0,1,0,-9,47,0,-3,9.363161899207928,0,0,0,67,2,4,1,3,2,2019,1,2,19,5,60,42,15,1,5,1,0,8.620963169094638,8.620963169094638,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.72,39.59,5,1,0,0,7,5,1,558,0,0,0 +194,240,443,444,-9,-9,2,1,1,52,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,12,0,-1,0,0,0,0,53,3,1,3,2,2,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.3717484704014,2,34.06,33.18,5,1,0,0,2,1,0,966,0,0,0 +194,240,444,443,-9,-9,1,1,0,53,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,12,0,1,0,0,0,0,52,3,2,3,2,2,2019,4,2,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.6,14.31,1,1,0,0,2,1,0,966,0,0,0 +195,241,445,446,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,3,7.59615036534461,7.526180147979296,0,1,0,-9,37,0,6,15.91399290467778,0,0,0,72,3,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,1,1,0,0,7,2,0,167,0,0,0 +195,241,446,445,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,5.89515659149026,5.731570277157082,1,0,-9,35,0,-6,8.174188743967656,0,0,0,78,3,3,3,3,3,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.673130979163096,0,0,55.94,23.15,3,1,0,0,7,2,0,167,0,0,0 +196,242,447,-9,448,-9,2,1,0,13,2,1,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-788.5909403462539,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,4,0,0,8,3,0,510,0,0,0 +196,242,448,-9,-9,-9,1,1,0,34,3,1,2,0,1,-9,5,1,0,5,7.818584760815621,8.259354153248685,0,4,0,0,0,-9,0,-857.787485787509,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,38,35,15,1,0,-9,0,8.048076240525234,8.048076240525234,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.96,57.7,5,4,0,0,8,3,0,510,0,0,0 +196,242,449,-9,448,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1145.38845124246,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,3,0,510,0,0,0 +197,243,450,451,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-4,-1.987765401558135,0,0,0,70,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,1,0,0,4,2,1,1834,0,0,0 +197,243,451,450,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,6.156184312311906,6.373918304721857,1,0,-9,8,0,4,38.65906901659838,0,0,0,66,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.577219473882356,6.478785705909695,0,0,56.41,48.18,1,1,0,0,4,2,1,1834,0,0,0 +198,244,452,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,3,7.153865551788181,7.236337128374414,0,3,0,0,0,-9,0,-998.2372123096631,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,20,22,15,1,2,-9,0,6.822767039442414,6.822767039442414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.6,51,5,1,0,0,5,2,1,421,0,0,0 +199,245,453,454,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,9.043275775989926,8.828785050507381,0,1,0,-9,9,0,-2,-80.54760557815995,0,0,0,53,2,4,1,-9,-9,2019,1,1,18,6,40,42,15,1,6,1,0,23.60209082213158,23.60209082213158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.98,55.14,6,1,0,0,6,5,1,821,0,0,0 +199,245,454,453,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.924531290048749,8.96348215078004,0,1,0,-9,28,0,2,-63.45046014575357,0,0,0,51,2,3,1,2,2,2019,1,2,16,5,45,47,15,1,5,1,0,20.96570694380685,20.96570694380685,0,0,0,0,0,0,0,0,0,0,6.852398219250292,0,0,0,55.77,41.91,5,1,0,0,6,5,1,821,0,0,0 +199,246,455,-9,453,454,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.776274900829939,7.797389721739693,0,3,0,0,0,-9,0,-1030.344591978362,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,39,15,1,0,-9,1,7.514220830329846,7.514220830329846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,6,1,0,0,6,3,1,1669,0,0,0 +200,247,456,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,7.473970312916802,7.71625587725539,3,0,0,0,-9,0,-933.4083120567334,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.142489213184161,7.313179572034835,0,0,49.06,58.64,5,1,0,0,4,3,1,354,0,0,0 +201,248,457,458,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,2,0,7.4711652380683,7.303783975250743,1,0,-9,46,0,2,-11.10890052950398,0,0,0,66,1,4,3,2,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,1.517321406848681,0,0,0,0,1,1,0,7.026207379504013,7.72349973249981,0,0,47,37,5,1,0,0,9,3,1,583.5,0,0,0 +201,248,458,457,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,7.584251738315928,7.381911288182402,1,0,-9,46,0,-2,-7.203805072132972,0,0,0,68,1,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.645519261369726,7.5091024960426,0,0,45.73,50.31,6,1,0,0,9,3,1,583.5,0,0,0 +202,249,459,460,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,3,5.079936273439351,8.482613455547391,8.085810854752078,1,0,-9,43,0,9,-71.60306354526028,0,0,0,72,2,3,1,1,1,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.28406339493835,0,0,50.13,40.42,3,1,0,0,8,4,1,1414,0,0,0 +202,249,460,459,-9,-9,2,1,0,72,1,0,0,0,2,-9,1,1,0,3,7.014292849429992,6.876671861993728,0,1,0,-9,43,0,0,16.09015443142309,0,0,0,81,1,3,3,2,1,2019,2,1,11,1,15,20,15,1,1,4,0,7.612408701568266,7.612408701568266,0,0,0,0,0,0,0,1,1,0,6.099820064580583,0,0,0,49.99,43.04,5,1,0,0,8,4,1,1414,0,0,0 +203,250,461,462,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,4,7.592128252893715,7.923570521846736,6.994686492642526,1,0,-9,6,0,2,90.08095422188116,0,0,0,65,3,2,3,3,3,2019,2,2,9,1,37,38,15,1,1,3,0,7.683322500377418,7.683322500377418,0,0,0,0,0,0,0,1,1,0,7.260208629539574,7.256375509858525,46.65243795199317,1,48.87,58.55,5,1,0,0,10,3,1,747,0,0,0 +203,250,462,461,-9,-9,2,1,0,65,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,6,0,-2,84.2848294508389,0,0,0,67,2,4,1,3,3,2019,3,1,25,11,0,0,15,3,11,1,0,0,0,1,9.576965963874535,40.43228762260969,0,24.24728709481141,0,0,1,1,0,0,0,0,0,38.48,20.09,2,1,0,0,10,3,1,747,0,0,0 +203,251,463,-9,462,461,3,1,1,26,2,0,0,0,2,-9,2,1,0,3,8.011846968221906,7.674696224576064,0,3,0,0,0,-9,0,-1058.97008939809,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,45,46,15,1,1,-9,1,8.793152988193953,8.793152988193953,0,0,0,0,0,0,0,1,1,0,0,0,3.905883651250743,3,43.54,52.97,4,1,0,0,10,3,1,975,0,0,0 +204,252,464,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-950.5533463091025,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,12,1,0,756,0,0,0 +204,253,465,-9,-9,-9,2,1,0,44,2,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-990.3397813289229,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,79.76493201276804,3,36.3,52.68,4,1,0,0,12,1,0,539,0,0,0 +205,254,466,-9,467,-9,2,1,0,11,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-964.5770276695384,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,5,0,0,13,5,1,525.5,0,0,0 +205,254,467,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,1,8.844190829763249,8.949400988703152,0,3,0,0,0,-9,0,-1024.511296687353,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,35,35,15,1,2,-9,0,19.56831731499702,19.56831731499702,0,0,0,0,0,0,0,1,1,0,1.2476076872125,0,0,3,39.39,31.24,4,1,0,0,13,5,1,525.5,0,0,0 +206,255,468,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1019.060361626068,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,60.41,7,1,0,0,12,1,1,341,0,0,0 +207,256,469,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,5,0,7.194741719969261,7.291934240542234,3,0,-9,0,-9,0,-1011.320538729594,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.907514141313933,6.789100744576743,0,0,59.43,58.05,7,1,0,0,7,2,1,544,0,0,0 +208,257,470,471,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,3.062596775704167,2.554871178297655,1,0,-9,8,0,-4,-73.5480578987614,0,0,0,72,3,3,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.288325298503256,2.725070271262526,0,0,47.72,43.07,4,1,0,0,11,4,1,1797,0,0,0 +208,257,471,470,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,8.58146764524426,8.340562826518298,1,0,-9,8,0,4,-105.133320410841,0,0,0,68,3,3,3,2,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.354489169060556,8.767225268637834,0,0,54.72,46.41,6,3,0,0,11,4,1,1797,0,0,0 +209,258,472,473,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,8.178114497279841,7.552752319031605,1,0,-9,61,0,2,29.09641081900418,0,0,0,79,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.997787304141127,7.472593906975268,0,0,62.41,37.94,7,1,0,0,8,3,1,164.5,0,0,0 +209,258,473,472,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-2,-21.76638458930902,0,0,0,81,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.81581389414876,0,0,0,61.12,51.57,2,1,0,0,8,3,1,164.5,0,0,0 +210,259,474,-9,-9,-9,1,1,1,42,3,0,0,0,1,-9,2,1,0,4,8.392704415198471,8.587931069485148,0,3,0,0,0,-9,0,-1078.951525253582,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,42,42,15,1,10,-9,0,15.78465026473125,15.78465026473125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.81,61.47,3,1,0,0,7,5,0,305,0,0,0 +211,260,475,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,-9,0,1,0,-910.0678464952274,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.44,37.73,1,1,0,0,2,1,0,1074,0,0,0 +212,261,476,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-993.0653530583222,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,1,0,0,9,1,0,703,0,0,0 +213,262,477,478,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.728184892943347,6.264648515489887,1,0,-9,47,0,0,36.64891216461439,0,0,0,70,1,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.683413897461092,5.762886820808107,.914581843664819,3,60.12,54.8,7,1,0,0,9,3,1,647.5,0,0,0 +213,262,478,477,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,7.751399667559925,7.274066204412646,1,0,-9,47,0,0,-39.43305624478168,0,0,0,70,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,10.9904218141506,0,0,0,0,1,1,0,6.463972501421703,7.36477523803446,5.074542133118733,3,62.74,45.61,7,1,0,0,9,3,1,647.5,0,0,0 +214,263,479,-9,482,480,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.349139874198,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,2,0,650.75,0,0,0 +214,263,480,482,-9,-9,2,1,1,41,1,0,2,0,3,-9,2,1,0,4,7.075589466133731,6.703668779735963,0,2,0,-9,7,0,-8,33.07571254776534,0,0,0,49,3,1,3,-9,-9,2019,2,1,11,0,49,39,15,1,0,3,0,2.045654775433247,2.045654775433247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,4,2,0,650.75,0,0,0 +214,263,481,-9,482,480,3,1,1,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1059.015531189533,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,60.22,7,1,0,1,4,2,0,650.75,0,0,0 +214,263,482,480,-9,-9,1,1,0,49,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,7,0,8,-66.88795929793186,0,0,0,41,3,4,1,3,3,2019,3,2,19,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.01,31.15,5,1,0,1,4,2,0,650.75,0,0,0 +215,264,483,484,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,30,0,3,28.98704493650673,0,0,0,68,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.927027773712352,3,50.94,33.45,6,1,0,0,2,2,1,929.5,0,0,0 +215,264,484,483,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,6.250217392800075,6.550795239660752,1,0,-9,30,0,-3,38.0324831345822,0,0,0,71,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.972870949191918,6.460843928604261,0,0,58.5,28.61,7,1,0,0,2,2,1,929.5,0,0,0 +216,265,485,-9,489,486,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.7453336514147,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,4,0,0,2,3,0,657,0,0,0 +216,265,486,489,-9,-9,1,1,1,47,1,0,3,0,2,-9,1,1,0,5,7.920573089997776,7.487126825339581,0,2,0,-9,24,0,1,-105.4632205720569,0,0,0,46,2,4,1,3,2,2019,1,2,0,0,50,0,15,1,0,1,0,4.850039386716667,4.850039386716667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.08,61.81,6,4,0,0,2,3,0,657,0,0,0 +216,265,487,-9,489,486,3,1,1,16,2,0,3,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-942.5905203404143,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.36,55.54,7,4,0,0,2,3,0,657,0,0,0 +216,265,488,-9,489,486,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-995.4418918024579,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,5,4,0,0,2,3,0,657,0,0,0 +216,265,489,486,-9,-9,2,1,0,46,1,0,3,0,2,-9,2,1,0,4,8.026211722771031,8.105249990636459,0,2,0,-9,22,0,-1,-144.8310277181039,0,0,0,47,2,5,1,2,2,2019,1,1,0,0,40,0,15,1,0,1,0,7.366135391857279,7.366135391857279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,4,0,0,2,3,0,657,0,0,0 +217,266,490,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,3,8.218426798284064,8.800018108504752,0,3,0,0,0,-9,0,-1004.178112085786,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,17.21883007668273,17.21883007668273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,6,1,0,0,12,4,1,330,0,0,0 +218,267,491,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1005.515868686049,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.834489416327041,0,0,0,45.86,48.97,6,1,0,0,8,1,1,1245,0,0,0 +219,268,492,493,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,4,8.48458858735925,7.951908355729342,0,2,0,-9,9,0,-5,37.59911479829843,0,0,1,48,2,3,1,3,3,2019,1,2,6,0,66,48,15,1,0,1,0,7.103017352432175,7.103017352432175,0,0,0,0,0,0,0,1,1,0,1.323865045856006,0,0,0,57.16,56.15,6,1,0,0,8,5,1,1733.666666666667,0,0,0 +219,268,493,492,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.600423740797424,8.648617825952424,0,2,0,-9,9,0,5,-31.28774729001472,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,0,38,40,15,1,0,1,0,16.12405553131592,16.12405553131592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.78,44.75,6,1,0,0,8,5,1,1733.666666666667,0,0,0 +219,268,494,-9,492,493,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-862.6253621381384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,5,1,1733.666666666667,0,0,0 +220,269,495,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,3,8.159032513314456,7.893952480783675,0,3,0,0,0,-9,0,-975.9340283756419,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,41,47,15,1,0,-9,0,8.347835043426857,8.347835043426857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.02,29.93,5,1,0,0,6,4,1,4256,0,0,0 +221,270,496,497,498,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,4,7.572232759840709,7.552284422617743,0,1,0,-9,35,0,-1,12.51769793433917,0,0,0,52,2,4,3,3,3,2019,2,2,7,0,35,35,15,1,0,3,0,7.243765050612927,7.243765050612927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,1,3,1,501.5,0,0,0 +221,270,497,496,-9,-9,2,1,1,52,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,6,0,1,-72.83974845886512,-9,0,0,51,3,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,1,0,1,3,1,501.5,0,0,0 +221,271,498,-9,-9,-9,3,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.778708146491209,5.778791985191445,3,0,0,0,-9,0,-1046.055502708642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.661162531383712,0,0,54.86,21.07,6,1,0,0,1,2,1,736,0,0,0 +222,272,499,500,-9,-9,1,1,0,71,1,1,2,0,1,-9,4,3,0,2,0,6.760739266030908,6.582811701062985,2,0,-9,49,0,1,25.4577206114932,0,0,0,70,1,3,3,2,1,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.813146932388866,40.71434950586921,3,55.21,43.87,5,1,0,0,9,3,1,630,0,0,0 +222,272,500,499,-9,-9,2,1,1,70,1,1,2,0,1,-9,4,3,0,3,0,8.22341671590012,7.773499222240906,2,0,-9,49,0,-1,-.7950692877232384,0,0,0,71,1,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.323428103427275,8.129096217097478,37.27134883974126,3,59.01,44.42,6,1,0,0,9,3,1,630,0,0,0 +222,273,501,-9,503,504,7,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1053.947868865488,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,9,2,1,588.75,0,0,0 +222,273,502,-9,503,504,6,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1156.102971360317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,2,1,588.75,0,0,0 +222,273,503,504,499,500,4,1,0,38,1,1,2,0,2,-9,2,1,0,1,7.827238612932037,7.851147219434003,0,2,0,-9,6,0,5,9.101954406685618,0,0,1,33,2,2,3,1,1,2019,2,5,36,12,18,18,15,1,12,3,0,15.38360378432208,15.38360378432208,0,0,0,0,0,0,0,1,1,0,0,0,9.573631686113226,3,14.34,28.84,2,1,0,1,9,2,1,588.75,0,0,0 +222,273,504,503,-9,-9,5,1,1,33,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,6,0,-5,49.22458840750677,0,0,0,38,2,1,1,-9,-9,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.92,38.85,4,1,0,0,9,2,1,588.75,0,0,0 +223,274,505,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1014.245066348825,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.61,18.47,3,1,0,1,5,1,0,1205,0,0,0 +224,275,506,507,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,6.709419105684649,7.232175713472579,1,0,-9,9,0,-7,7.279899853341848,0,0,0,71,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.77729274858267,6.868045941964056,0,0,61.28,48.88,6,1,0,0,7,3,1,1270,0,0,0 +224,275,507,506,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,7.742304369754965,7.108909361409418,1,0,-9,9,0,7,-15.94244330020865,0,0,0,64,2,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.845801357722884,7.473907730657751,0,0,59.32,46.98,6,1,0,0,7,3,1,1270,0,0,0 +225,276,508,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-996.142899779649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,.756124960121032,0,0,0,1,1,0,0,0,0,0,58.16,27.39,6,1,0,0,11,1,0,860,0,0,0 +226,277,509,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,2,1,0,4,5.973051200860089,6.995135673195264,6.893106035847089,3,0,0,0,-9,0,-1061.68808376027,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,12,8,15,1,0,-9,0,3.582825734447174,3.582825734447174,0,0,0,0,0,0,0,1,1,0,0,7.103671033658316,25.75006395281552,3,57.16,56.15,4,1,0,0,11,2,1,859,0,0,0 +226,278,510,-9,509,-9,2,1,1,44,2,0,0,0,2,-9,2,1,0,2,7.103034999057832,6.755296821073448,0,3,0,0,0,-9,0,-1082.240317839142,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,30,32,15,1,9,-9,1,4.233644831616294,4.233644831616294,0,0,0,0,0,0,0,1,1,0,0,0,2.547283289258762,3,25.9,47.64,2,1,0,1,11,2,1,4068,0,0,0 +227,279,511,512,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.095041214300803,8.020499173974128,0,1,0,-9,31,0,-5,38.72613660619403,-9,0,0,61,1,2,3,3,3,2019,2,1,11,0,18,0,15,1,2,4,0,22.16107750249586,22.16107750249586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,5,4,0,0,8,3,1,722,0,0,0 +227,279,512,511,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,37,0,5,95.9910649041754,0,0,0,56,1,3,1,2,2,2019,3,2,12,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.88,41.16,5,1,0,0,8,3,1,722,0,0,0 +228,280,513,514,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,7.963761236846844,7.984372442287667,0,1,0,-9,3,0,1,-7.660127237386028,0,1,0,26,1,4,1,-9,-9,2019,1,1,10,0,40,38,15,1,1,1,0,9.541549746275894,9.541549746275894,0,0,0,0,0,0,0,0,0,0,3.922406593504196,0,0,0,49,58,5,5,0,0,2,5,1,1819.5,0,0,0 +228,280,514,513,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.254787438919244,8.848446455297308,0,1,0,-9,3,0,-1,75.98261361318887,0,1,1,27,2,4,1,3,2,2019,1,2,11,0,50,48,15,1,0,1,0,11.59580618834189,11.59580618834189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,6,1,0,0,2,5,1,1819.5,0,0,0 +229,281,515,-9,516,518,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1049.830228989533,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,9,4,1,854,0,0,0 +229,281,516,518,-9,-9,2,1,0,45,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,16,0,2,-161.9270467615472,0,0,0,43,1,3,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.652870659304693,0,0,0,48.87,58.55,5,1,0,0,9,4,1,854,0,0,0 +229,281,517,-9,516,518,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.9177299280111,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,854,0,0,0 +229,281,518,516,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,3,8.837487419342768,8.976994356595144,0,2,0,-9,15,0,-2,-55.24592518282475,0,0,0,45,2,4,3,3,3,2019,2,2,12,1,43,42,15,1,1,3,0,20.27622183703255,20.27622183703255,0,0,0,0,0,0,0,1,1,0,3.533396672838895,0,0,0,35.32,58.41,5,1,0,0,9,4,1,854,0,0,0 +230,282,519,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,4,0,7.100787290787482,7.14850833052195,3,0,0,0,-9,0,-1013.249979830394,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.440520908897892,6.993669530015287,0,0,60.12,54.8,7,1,0,0,8,2,1,422,0,0,0 +231,283,520,-9,-9,-9,2,1,1,40,2,0,1,0,3,-9,1,1,0,2,0,0,0,4,0,-9,0,-9,0,-1028.918723214701,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.89,53.59,4,1,0,0,4,1,0,111,0,0,0 +232,284,521,522,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,8.272839710555814,8.742981801449933,1,0,-9,57,0,2,10.110146147558,0,0,0,75,3,3,3,-9,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.977426172506052,8.492011222243116,0,0,52,54.51,6,1,0,0,6,3,1,284.5,0,0,0 +232,284,522,521,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-2,28.79509347436517,0,0,0,77,2,3,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50.51,42.98,6,1,0,0,6,3,1,284.5,0,0,0 +233,285,523,524,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.450008993187478,7.233498220148441,1,0,-9,37,0,-2,99.97016929712689,0,0,0,65,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.295803114951092,0,0,57.33,53.46,7,1,0,0,10,2,1,1076,0,0,0 +233,285,524,523,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,37,0,2,-8.698057282281598,0,0,0,63,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,1,1,0,0,10,2,1,1076,0,0,0 +234,286,525,526,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,3,7.198212102423117,7.355135572504791,0,1,0,-9,6,0,-7,-32.35948615637734,0,0,1,45,1,5,1,-9,-9,2019,1,1,16,4,27,45,15,1,4,1,0,6.533605496091847,6.533605496091847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.62,50.48,4,3,0,0,9,5,0,636,0,0,0 +234,286,526,525,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,5,9.059690846112474,9.250974775818223,0,1,0,-9,6,0,7,-23.76093379895321,0,0,0,38,1,3,1,-9,-9,2019,1,2,18,6,40,37,15,1,6,1,0,22.61024901561159,22.61024901561159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,43.17,6,3,0,0,9,5,0,636,0,0,0 +235,287,527,528,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,2,0,7.985763175875499,8.188840147805196,1,0,-9,60,0,3,-15.62747745026789,0,0,0,77,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,6.115887905773353,0,0,0,0,1,1,0,1.405967393417251,8.531445638547378,0,0,63.07,18.81,6,1,0,0,9,3,1,956.5,0,0,0 +235,287,528,527,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,4.960035268834374,5.276888461300712,1,0,-9,60,0,-3,-1.195676961709946,0,0,0,80,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,12.03018370085893,0,0,0,0,1,1,0,0,5.081165485986037,0,0,60.47,30.5,5,1,0,0,9,3,1,956.5,0,0,0 +236,288,529,530,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,1,8.234119812496555,8.322322460024189,0,1,0,-9,29,0,-2,-41.3031675159775,0,0,0,53,2,3,1,3,2,2019,1,2,20,8,43,41,15,1,8,1,0,7.452684284030846,7.452684284030846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,36.67,3,1,0,0,11,4,1,1521,0,0,0 +236,288,530,529,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.081140679079972,8.384662319057689,0,1,0,-9,29,0,2,-202.0217044024696,0,0,0,51,1,1,1,2,2,2019,1,1,9,0,41,52,15,1,0,1,0,11.22124700804358,11.22124700804358,0,0,0,0,0,0,0,0,0,0,2.535990443273844,0,0,0,46.55,58.3,6,1,0,0,11,4,1,1521,0,0,0 +237,289,531,-9,533,-9,3,1,0,16,2,0,1,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-953.9112040065091,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,1,2,1,1,530,0,0,0 +237,289,532,533,-9,535,4,1,1,48,1,0,1,0,2,-9,1,1,0,4,0,0,0,2,0,-9,5,0,-1,0,0,0,0,49,2,3,3,-9,3,2019,2,1,8,0,60,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,2,1,1,530,0,0,0 +237,289,533,532,-9,-9,1,1,0,49,1,0,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,5,0,1,0,0,0,0,48,2,4,1,-9,-9,2019,3,4,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.99,44.01,6,1,0,0,2,1,1,530,0,0,0 +237,290,534,-9,533,-9,2,1,1,20,2,0,1,0,2,-9,2,1,0,5,7.471611504906223,7.6662113834357,0,3,0,0,0,-9,0,-945.3256011681333,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,39,16,15,1,0,-9,1,6.934791319295312,6.934791319295312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,3,1,459,0,0,0 +237,291,535,-9,-9,-9,5,1,1,84,3,0,1,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-1117.576240736562,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,44.37,30.85,5,1,0,0,2,1,1,977,0,0,0 +238,292,536,-9,538,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1019.361495640176,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,31,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.77,66.82000000000001,2,4,0,0,9,3,1,941.6666666666666,0,0,0 +238,292,537,-9,538,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-983.1775747540296,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,9,3,1,941.6666666666666,0,0,0 +238,292,538,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,2,1,0,5,8.234938848115753,8.47496054078818,0,4,0,0,0,-9,0,-988.8664123127596,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,30,33,15,1,0,-9,0,16.80160374408122,16.80160374408122,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.91,56.22,3,4,0,0,9,3,1,941.6666666666666,0,0,0 +239,293,539,540,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,8.125972281015716,8.233876483280378,1,0,-9,9,0,8,-40.52448108012628,0,0,0,58,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1.152357235086407,7.720805903799537,0,0,61.69,44.41,6,1,0,0,12,5,1,814.5,0,0,0 +239,293,540,539,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.389685322479057,8.543985132258701,0,1,0,-9,9,0,-8,-46.10634380396051,0,0,0,66,1,4,3,2,2,2019,2,1,8,0,24,23,15,1,0,4,0,20.74737062669669,20.74737062669669,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,12,5,1,814.5,0,0,0 +239,294,541,-9,540,539,3,1,0,23,2,0,0,0,1,-9,2,1,0,4,8.144873299868657,8.442290837394983,0,3,0,0,0,-9,0,-1160.883901363777,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,53,0,15,1,0,-9,1,7.124059584779836,7.124059584779836,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,7,1,0,0,12,4,1,302,0,0,0 +240,295,542,-9,543,544,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.809320269591,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,1792.666666666667,0,0,0 +240,295,543,544,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,3,7.404190347751713,7.223984522174889,0,2,0,-9,18,0,-5,-8.755458839192565,0,0,1,47,3,4,1,-9,-9,2019,1,1,10,0,27,25,15,1,0,1,0,6.209614365786059,6.209614365786059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,6,1,0,0,10,3,1,1792.666666666667,0,0,0 +240,295,544,543,-9,-9,1,1,1,47,1,0,1,0,3,-9,1,1,0,4,7.770092289926764,7.738343296454594,0,2,0,-9,18,0,5,171.2775240556284,0,0,0,42,2,3,1,-9,-9,2019,1,2,8,0,80,80,15,1,0,1,0,4.398741029381955,4.398741029381955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,10,3,1,1792.666666666667,0,0,0 +241,296,545,546,-9,-9,2,1,1,52,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,2,0,2,0,0,0,0,50,2,4,3,3,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.299890064833634,0,0,0,49.23,52.9,6,1,1,0,13,1,1,1097,0,0,0 +241,296,546,545,-9,-9,1,1,0,50,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,2,0,-2,0,0,0,0,52,3,4,3,1,3,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.791963819601899,0,0,0,47.77,56.48,5,1,1,0,13,1,1,1097,0,0,0 +242,297,547,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-939.1202631561511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.43,25.61,7,1,0,1,7,1,0,1042,0,0,0 +243,298,548,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,5,8.831770741091654,8.974708323685286,0,3,0,0,0,-9,0,-1084.522972819646,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,49,48,15,1,0,-9,0,15.43550834224827,15.43550834224827,0,0,0,0,0,0,0,0,0,0,4.100944023301445,0,0,0,41.07,60.93,5,1,0,0,10,5,1,673,0,0,0 +243,299,549,-9,-9,548,2,1,1,25,2,0,0,0,2,1,2,1,0,5,6.958401019455372,7.338582782503373,0,3,0,0,0,-9,0,-905.5829998486128,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,1,37,0,15,1,1,-9,1,4.219521662108406,4.219521662108406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,1,0,0,10,2,1,3988,0,0,0 +244,300,550,551,-9,-9,2,1,0,44,1,0,0,0,3,-9,6,3,0,4,4.381365185239701,4.664185343925507,0,1,0,-9,5,0,0,-86.93669255378522,0,0,1,44,3,3,1,3,3,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.02,39.96,4,1,0,1,6,3,1,1257,0,0,0 +244,300,551,550,-9,-9,1,1,1,44,1,0,0,0,3,-9,2,1,0,3,7.781527792118043,8.049678111036675,0,1,0,-9,5,0,0,20.65057822182471,0,0,0,44,3,4,3,3,2,2019,2,2,11,1,45,0,15,1,1,3,0,5.649635856374725,5.649635856374725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,58.84,3,1,0,1,6,3,1,1257,0,0,0 +245,301,552,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,3,0,7.730749787393377,7.708231394984754,3,0,0,0,-9,0,-1012.025331284004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.380836210794034,7.419624363753439,0,0,57.35,29.16,6,1,0,0,9,3,1,921,0,0,0 +246,302,553,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,4,0,5.167405699035699,5.137455381859724,3,0,0,0,-9,0,-1081.448234573819,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.94121684287719,5.094932870290832,0,0,49.41,58.28,6,1,0,0,1,2,1,1209,0,0,0 +247,303,554,555,-9,-9,1,1,1,77,1,1,1,0,3,-9,4,3,0,2,0,7.832842265882838,8.106552742702531,2,0,-9,29,0,17,-57.46875830682836,0,0,0,60,2,4,3,3,3,2019,4,2,13,4,0,0,15,4,4,4,0,0,0,1,0,125.9570383000645,5.2925450097036,9.820731376563408,0,0,1,1,0,4.062145664931954,8.442541844413601,0,0,62.07,32.78,5,1,0,0,8,3,1,623,0,0,0 +247,303,555,554,-9,-9,2,1,0,60,1,1,1,0,2,-9,4,3,0,4,0,7.167199277913623,7.039086291295444,2,0,-9,29,0,-17,91.70794201960696,0,0,0,77,3,2,3,3,3,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.068815674728765,6.872248833252759,121.6725629182049,1,43.44,58.7,3,1,0,0,8,3,1,623,0,0,0 +247,304,556,-9,557,-9,4,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-957.4248249625981,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,3,1,732,0,0,0 +247,304,557,-9,555,554,3,1,0,23,2,1,1,0,2,-9,2,1,0,3,7.911797628329469,8.062706847808878,0,3,0,0,0,-9,0,-1053.385573261131,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,4,41,42,15,1,4,-9,1,8.296222927965291,8.296222927965291,0,0,0,0,0,0,0,1,1,0,0,0,6.925532348257848,3,42.41,45.48,6,1,0,0,8,3,1,732,0,0,0 +248,305,558,559,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,2,7.72043943784603,7.381136427187331,0,1,0,-9,36,0,8,-112.9882954267941,0,0,0,53,2,4,1,3,3,2019,1,2,10,2,42,0,15,1,2,1,0,5.298512003629556,5.298512003629556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.54000000000001,11.97,5,1,0,0,12,4,1,964.5,0,0,0 +248,305,559,558,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.949749502486552,7.883595988582201,0,1,0,-9,36,0,-8,-56.14530863372169,0,0,0,61,3,2,1,3,3,2019,1,1,10,1,35,0,15,1,1,1,0,8.495061541527521,8.495061541527521,0,0,0,0,0,0,0,0,0,0,0,0,20.5435254420092,3,43.09,57.04,7,1,0,0,12,4,1,964.5,0,0,0 +249,306,560,561,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,5,8.241898677735131,8.245779764622375,0,1,0,-9,6,0,-3,-21.41420146382327,0,0,0,55,2,2,3,1,3,2019,2,2,7,1,40,40,15,1,1,3,0,8.92087032988468,8.92087032988468,0,0,0,0,0,0,0,0,0,0,3.114452487408811,0,0,0,56.77,46.83,7,1,0,0,6,3,1,231,0,0,0 +249,306,561,560,-9,-9,2,1,1,55,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,3,-196.3668624620609,0,0,0,52,2,5,1,3,3,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.470740915348342,0,0,0,38.45,39.53,3,1,0,0,6,3,1,231,0,0,0 +250,307,562,563,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.926378835148733,8.117028960197587,1,0,-9,6,0,-2,29.17853311090839,0,0,0,69,1,4,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.79852590574182,7.846694980811975,0,0,40.27,50.59,5,1,0,0,7,4,1,970,0,0,0 +250,307,563,562,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.448930326472085,7.598923656404325,1,0,-9,6,0,2,78.80875911309624,0,0,0,67,2,3,3,2,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.995733172181128,7.294964105399854,0,0,49.41,52.74,6,1,0,0,7,4,1,970,0,0,0 +251,308,564,566,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,5,8.436118590480671,8.573685700291346,0,2,0,-9,5,0,6,-85.6700733339612,0,0,0,39,2,5,1,-9,-9,2019,1,1,6,0,42,42,15,1,0,1,0,13.03819160270592,13.03819160270592,0,0,0,0,0,0,0,0,0,0,0,0,29.78364512528839,3,63.38,53.47,7,1,0,0,12,4,1,398.5,0,0,0 +251,308,565,-9,566,564,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.165815547279,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,4,1,398.5,0,0,0 +251,308,566,564,-9,-9,1,1,0,39,1,0,2,0,2,-9,1,1,0,5,7.984989937626455,7.6545851613564,0,2,0,-9,5,0,-6,-122.6357588959833,0,0,1,45,2,5,1,2,2,2019,1,2,7,0,31,40,15,1,0,1,0,9.370835205804008,9.370835205804008,0,0,0,0,0,0,0,0,0,0,4.657972922962038,0,33.41317461174732,3,57.06,57.76,7,1,0,0,12,4,1,398.5,0,0,0 +251,308,567,-9,566,564,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.184827768908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,4,1,398.5,0,0,0 +252,309,568,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,2,1,0,4,8.030201853384661,7.690613084901136,0,3,0,0,0,-9,0,-1160.339056692943,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,55,75,15,1,0,-9,0,6.434414428309011,6.434414428309011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.75,63.75,4,1,0,0,4,4,0,315,0,0,0 +253,310,569,570,-9,-9,1,1,0,45,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,8,0,8,0,0,0,0,37,2,3,3,2,2,2019,4,3,14,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.6225275711765,3,51.24,58.84,3,4,0,0,8,1,1,222,0,0,0 +253,310,570,569,-9,-9,3,1,1,37,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,8,0,-8,0,0,0,0,45,3,4,3,2,2,2019,4,1,17,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.6,52.77,4,1,1,0,8,1,1,222,0,0,0 +253,310,571,-9,569,570,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1139.237776470738,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,8,1,1,222,0,0,0 +254,311,572,573,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,19,0,5,0,0,0,0,47,2,5,1,-9,-9,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.94,51.31,7,1,0,0,4,1,1,456,0,0,0 +254,311,573,572,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,5,0,0,0,1,0,-9,2,0,-5,0,0,0,0,52,3,3,1,-9,-9,2019,1,1,6,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,63.08,5,1,0,0,4,1,1,456,0,0,0 +254,312,574,-9,572,573,3,1,1,22,2,0,0,0,2,-9,1,1,0,5,6.944404257746283,6.941893202146407,0,3,0,0,0,-9,0,-1136.697233104938,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,40,40,15,1,1,-9,1,3.669594879477844,3.669594879477844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,7,1,0,0,4,2,1,406,0,0,0 +255,313,575,576,-9,-9,2,1,1,49,1,0,2,0,3,-9,2,1,0,4,8.061667925225123,8.422738293093539,0,2,0,-9,24,0,3,128.0084430699434,0,0,0,46,2,3,1,3,2,2019,1,1,9,0,40,40,15,1,1,1,0,16.43702102994739,16.43702102994739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,5,4,1,400,0,0,0 +255,313,576,575,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,3,8.347797717653158,8.181086168777089,0,2,0,-9,24,0,-3,4.349950003752714,0,0,0,49,3,4,1,2,2,2019,1,2,18,7,40,30,15,1,7,1,0,8.970296941309204,8.970296941309204,0,0,0,0,0,0,0,1,1,0,2.196612320258414,0,0,0,46.71,36.26,3,1,0,0,5,4,1,400,0,0,0 +255,313,577,-9,576,575,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1049.90142264414,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,4,1,400,0,0,0 +255,313,578,-9,576,575,3,1,1,17,2,0,2,1,2,0,7,2,0,3,3.628589058776057,3.840966486594188,0,2,0,0,0,-9,0,-1021.350043497373,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,5,4,1,400,0,0,0 +256,314,579,581,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,4,8.37834015345301,8.53962835267421,0,2,0,-9,7,0,2,-171.2375168885808,0,0,0,33,1,5,1,2,2,2019,1,1,12,2,37,40,15,1,2,1,0,16.78029899807879,16.78029899807879,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,3,1,0,0,2,4,1,445.25,0,0,0 +256,314,580,-9,581,579,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1003.563560312296,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,445.25,0,0,0 +256,314,581,579,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,5,8.521500103909599,8.520176168025015,0,2,0,-9,7,0,-2,148.3908455341583,0,0,1,35,2,4,1,2,2,2019,1,2,9,0,38,41,15,1,0,1,0,15.80115769682183,15.80115769682183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,61.53,6,1,0,0,2,4,1,445.25,0,0,0 +256,314,582,-9,581,579,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-858.4869047298098,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,445.25,0,0,0 +257,315,583,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,1,1,0,4,8.460136978516438,8.622824698957524,0,3,0,0,0,-9,0,-921.7484820049077,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,45,40,15,1,0,-9,0,11.43318575922446,11.43318575922446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,10,4,1,2734,0,0,0 +258,316,584,-9,586,585,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.9074906336173,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,3,1,1355.666666666667,0,0,0 +258,316,585,586,-9,-9,2,1,1,44,1,0,1,0,2,-9,1,1,0,3,7.240155332007076,6.953506395053875,0,2,0,-9,23,0,-4,57.06235544301092,0,0,0,48,2,3,1,2,3,2019,1,1,9,0,8,55,15,1,0,1,0,20.30183499557396,20.30183499557396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,5,1,0,0,12,3,1,1355.666666666667,0,0,0 +258,316,586,585,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.030597405055332,8.012991070179693,0,2,0,-9,23,0,4,-37.35476045042397,0,0,0,44,2,3,1,2,-9,2019,1,2,12,0,33,31,15,1,0,1,0,10.8592588709215,10.8592588709215,0,0,0,0,0,0,0,1,1,0,0,0,5.467674500661156,3,52,54.51,4,1,0,0,12,3,1,1355.666666666667,0,0,0 +259,317,587,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,2,0,5.991261811784786,6.325379451502562,3,0,0,0,-9,0,-957.5639839161624,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.00459839783773,0,0,45.82,33.47,4,1,0,0,10,2,0,1043,0,0,0 +260,318,588,-9,590,-9,2,1,0,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1000.093343591945,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,13,1,0,600.25,0,0,0 +260,318,589,-9,590,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-909.6142458806976,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,600.25,0,0,0 +260,318,590,-9,-9,-9,1,1,0,30,2,1,3,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1055.578728787625,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.09,56.74,2,1,0,0,13,1,0,600.25,0,0,0 +260,318,591,-9,590,-9,3,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1081.728595095209,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,1,0,600.25,0,0,0 +261,319,592,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,4,0,7.428377166268333,7.561841770886049,3,0,0,0,-9,0,-898.3717712336373,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,37,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.560593393997651,7.111947014200371,0,0,59.14,52.5,6,1,0,0,12,3,1,68,0,0,0 +262,320,593,-9,-9,-9,1,1,1,46,3,0,0,0,1,-9,2,1,0,4,9.462837834820908,9.530983923603236,0,3,0,0,0,-9,0,-1002.885886138466,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,90,44,15,1,0,-9,0,13.37186612653776,13.37186612653776,0,0,0,0,0,0,0,0,0,0,2.489335474923271,0,0,0,53.03,42.91,6,1,0,0,2,5,1,440,0,0,0 +263,321,594,-9,595,596,5,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.9211135658963,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,308.5,0,0,0 +263,321,595,596,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,7.368611949038464,7.447034947282546,0,2,0,-9,22,0,-5,157.2618815397616,0,0,1,42,2,2,1,2,2,2019,1,2,8,0,38,31,15,1,0,1,0,4.625065846009186,4.625065846009186,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.06,49.75,7,1,0,0,7,4,1,308.5,0,0,0 +263,321,596,595,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,2,8.179634955597136,8.38828264438089,0,2,0,-9,22,0,5,-10.69939177695607,0,0,0,37,2,4,1,2,1,2019,1,1,13,2,44,44,15,1,2,1,0,11.24147715331684,11.24147715331684,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.61,50.97,3,1,0,0,7,4,1,308.5,0,0,0 +263,321,597,-9,595,596,6,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.7428810152065,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,308.5,0,0,0 +263,322,598,-9,595,596,3,1,0,19,2,0,2,0,2,-9,1,1,0,3,5.128342274142511,5.099605810721293,0,3,0,0,0,-9,0,-931.8539228304287,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,17,15,1,0,-9,1,.6104581233102716,.6104581233102716,0,0,0,0,0,0,0,1,1,0,.1777655003189008,0,0,0,57.33,53.46,6,1,0,0,7,2,1,293,0,0,0 +264,323,599,600,-9,-9,1,1,0,22,1,0,0,0,2,-9,1,1,0,2,6.942049615228441,7.166909739818781,0,1,0,-9,3,0,-5,64.1292112281636,0,1,1,27,2,2,1,2,-9,2019,1,2,13,1,15,8,15,1,1,1,0,7.08413525600193,7.08413525600193,0,0,0,0,0,0,0,0,0,0,0,0,0,3,28.22,36.07,5,1,0,0,4,4,0,1053.5,0,0,0 +264,323,600,599,-9,-9,2,1,1,27,1,0,0,0,2,-9,1,1,0,2,8.216308575956496,8.410192743224709,0,1,0,-9,3,0,5,51.26566280951946,0,1,0,22,2,2,1,-9,-9,2019,1,1,13,1,20,28,15,1,1,1,0,26.59296041836491,26.59296041836491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.08,51.12,3,2,0,0,4,4,0,1053.5,0,0,0 +265,324,601,602,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,56,0,1,0,0,0,0,78,1,3,3,-9,-9,2019,4,5,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,45,6,5,0,0,8,1,1,1770.5,0,0,0 +265,324,602,601,-9,-9,5,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,0,0,0,0,79,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,45,6,5,0,0,8,1,1,1770.5,0,0,0 +265,325,603,-9,602,601,2,1,0,50,3,0,0,0,1,-9,1,1,0,2,6.800933265941924,6.777701477600021,0,3,0,0,0,-9,0,-990.9894716990091,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,18,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.57,49.69,6,2,0,0,8,2,1,464,0,0,0 +265,326,604,-9,603,-9,3,1,0,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-950.6345956755854,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,2,0,0,8,1,1,80,0,0,0 +265,327,605,-9,603,-9,4,1,1,23,2,0,0,0,2,1,2,1,0,4,8.300931969818803,8.184010824577978,0,3,0,0,0,-9,0,-1074.667953422947,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,0,15,1,1,-9,1,12.17318132036429,12.17318132036429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,2,0,0,8,4,1,315,0,0,0 +266,328,606,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,4,0,7.714489730058724,7.401506244341823,3,0,0,0,-9,0,-1036.257180427913,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.514984150801233,7.546112215028558,0,0,51.24,58.84,6,1,0,0,9,3,1,528,0,0,0 +267,329,607,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-943.6941475902663,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,1,28.29115112972472,0,0,0,0,259.8667262675106,1,1,0,0,0,0,0,46.18,30.19,1,1,0,0,9,1,0,1433,0,0,0 +268,330,608,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,1,1,0,3,8.099680760395222,8.891779171766302,7.702977186853516,3,0,0,0,-9,0,-1032.988531768974,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,25,20,15,1,0,-9,0,12.84863103967077,12.84863103967077,0,0,0,0,0,0,0,1,1,0,6.904748588542254,7.521895099711825,0,0,54.55,49.25,4,1,0,0,5,5,1,777,0,0,0 +269,331,609,610,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.82821535438026,7.366562707830756,1,0,-9,47,0,4,-41.09309276272324,0,0,0,70,3,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,3.489350014783664,0,0,0,0,1,1,0,7.379472495666473,7.840032042702817,0,0,53.07,53.97,6,1,0,0,5,3,1,843.5,0,0,0 +269,331,610,609,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,7.639683532588587,7.483554919711691,1,0,-9,52,0,-4,40.91367931585002,0,0,0,74,3,3,3,3,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.612884099595321,0,0,42.9,50.31,7,1,0,0,5,3,1,843.5,0,0,0 +270,332,611,612,-9,-9,2,1,0,31,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-3,19.91398866964071,0,0,1,34,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.85358058833971,3,48,57,5,3,0,0,8,3,0,879.8,0,0,0 +270,332,612,611,616,-9,1,1,1,34,1,0,3,0,2,-9,2,1,0,4,8.578976836422868,8.131024944429234,0,2,0,-9,14,0,3,172.2856525645676,0,0,0,31,2,4,3,3,3,2019,2,2,10,0,36,36,15,1,1,3,0,12.3202476772966,12.3202476772966,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,5,3,0,0,8,3,0,879.8,0,0,0 +270,332,613,-9,611,612,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.060158333063,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,0,879.8,0,0,0 +270,332,614,-9,611,612,6,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-829.868654921891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,879.8,0,0,0 +270,332,615,-9,611,612,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.7416695042864,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,3,0,879.8,0,0,0 +270,333,616,-9,-9,-9,5,1,0,78,3,0,3,0,2,-9,4,3,0,3,0,0,0,4,0,-9,0,1,0,-1009.185840262411,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,3,0,0,8,1,0,1412,0,0,0 +271,334,617,-9,619,618,2,1,0,18,2,0,0,0,2,1,2,1,0,4,7.507284671165667,7.241844210564108,0,3,0,0,0,-9,0,-1050.3445598146,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,25,0,15,1,1,-9,1,6.983339864670156,6.983339864670156,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,4,3,1,465,0,0,0 +271,335,618,619,-9,-9,3,1,1,46,1,0,0,0,2,-9,2,1,0,4,9.000973881376421,8.872195834894027,0,1,0,-9,4,0,5,-108.8899852458294,0,0,0,41,2,4,1,-9,-9,2019,1,1,5,0,49,51,15,1,0,1,0,14.82588260942956,14.82588260942956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,56.95,6,1,0,0,4,5,1,445,0,0,0 +271,335,619,618,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,4,8.117837395628399,8.22131197881993,6.150773239108658,1,0,-9,4,0,-5,-135.3227850490436,0,0,1,46,2,4,1,2,3,2019,1,3,4,0,37,37,15,1,0,1,0,14.27284130344344,14.27284130344344,0,0,0,0,0,0,0,1,1,0,6.423552267767591,0,0,3,59.53,56.44,7,1,0,0,4,5,1,445,0,0,0 +272,336,620,621,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,3,7.09269443751138,7.131550373447063,4.266970875387734,1,0,-9,2,0,12,-154.3136110231819,0,0,0,53,1,2,1,2,3,2019,1,1,7,1,21,21,15,1,1,1,0,6.07221075106948,6.07221075106948,0,0,0,0,0,0,0,1,1,0,0,4.175138200696987,0,0,51.43,41,3,1,0,0,7,3,1,285.5,0,0,0 +272,336,621,620,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,2,7.569091655222895,7.695403400079604,0,1,0,-9,2,0,-12,83.58905456609348,0,0,0,65,2,3,1,3,2,2019,1,2,16,4,44,36,15,1,4,1,0,6.331611526349948,6.331611526349948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.35,51.55,6,1,0,0,7,3,1,285.5,0,0,0 +273,337,622,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,4,8.52624949346454,8.028333904218837,0,3,0,0,0,-9,0,-1045.944834724431,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,37,38,15,1,0,-9,0,16.28947161516933,16.28947161516933,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,1519,0,0,0 +274,338,623,624,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,4,9.081748480152539,9.508492135841285,0,1,0,-9,45,0,-2,156.4369746769086,0,0,0,66,2,4,3,3,3,2019,2,2,6,0,70,55,15,1,0,3,0,21.26551508382224,21.26551508382224,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,13,5,1,1010.5,0,0,0 +274,338,624,623,-9,-9,2,1,0,66,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,45,0,2,32.41033861092797,0,0,0,64,3,4,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,1010.5,0,0,0 +274,339,625,-9,-9,-9,4,1,1,26,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1023.195673083081,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.9,41.56,5,1,1,1,13,1,1,827,0,0,0 +275,340,626,627,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.638011534938562,7.303559416764617,1,0,-9,7,0,0,48.983525001034,0,0,0,69,1,3,3,3,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.531336604498272,7.494453233381258,10.44801932084373,2,52.43,55.57,5,1,0,0,9,3,1,263.5,0,0,0 +275,340,627,626,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.490001828650652,7.734220407717816,1,0,-9,7,0,0,65.569133673181,0,0,0,69,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.255688614214439,7.62140583990393,2.019078230797244,3,67.98999999999999,21.53,6,1,0,0,9,3,1,263.5,0,0,0 +276,341,628,629,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,2,9.160434114853084,8.867839285373023,0,1,0,-9,10,0,5,-61.39577988357181,-9,0,0,56,2,4,1,-9,-9,2019,1,2,7,0,44,0,15,1,0,1,0,19.98753658886932,19.98753658886932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.23999999999999,31.6,6,1,0,0,7,5,1,240.5,0,0,0 +276,341,629,628,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.480560962502594,8.407983111242865,0,1,0,-9,34,0,-5,97.18550068989532,0,0,0,61,1,2,1,2,2,2019,1,1,14,4,40,38,15,1,4,1,0,15.55609653779434,15.55609653779434,0,0,0,0,0,0,0,1,1,0,.8826490879719376,0,0,0,51.53,51.8,6,1,0,0,7,5,1,240.5,0,0,0 +277,342,630,631,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.403953455672678,8.487294978317179,0,1,0,-9,33,0,-1,12.03401972408625,0,0,0,51,2,5,1,3,3,2019,1,2,6,0,30,30,15,1,0,1,0,25.09548508141505,25.09548508141505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.14,46.44,7,1,0,0,12,5,1,2014.5,0,0,0 +277,342,631,630,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,5,9.309017959951415,9.234454970608283,0,1,0,-9,7,0,1,-95.78767357118228,-9,0,0,50,1,4,1,-9,-9,2019,1,1,7,0,60,0,15,1,0,1,0,15.91243596614801,15.91243596614801,0,0,0,0,0,0,0,0,0,0,5.036434886190051,0,0,0,61.03,44.82,6,1,0,0,12,5,1,2014.5,0,0,0 +278,343,632,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,5,8.318441162884589,8.587716072037766,0,1,0,1,1,-9,2,91.80345613796081,0,0,1,-9,-9,-9,-9,3,3,2019,1,2,9,0,38,37,15,1,0,-9,0,16.15797588746158,16.15797588746158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,5,1,0,0,9,5,0,1708,0,0,0 +278,344,633,-9,-9,-9,2,1,0,38,2,0,0,0,2,-9,2,1,0,4,7.628165645502313,7.963979364623314,0,1,0,1,1,-9,-2,161.31108935312,0,0,1,-9,-9,-9,-9,2,2,2019,1,1,5,0,38,38,15,1,0,-9,0,9.190766655985636,9.190766655985636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.51,52.79,6,1,0,0,9,5,0,1296,0,0,0 +279,345,634,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.873201085961488,5.866270939165824,3,0,0,0,-9,0,-1152.281870251015,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.740199624476038,5.574244641410981,0,0,54.52,35.91,6,1,0,0,9,2,1,91,0,0,0 +280,346,635,636,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,3,8.617461358216703,8.823393281617854,0,2,0,-9,10,0,-4,-3.56635864376371,0,0,0,42,2,1,3,2,3,2019,2,2,14,2,43,75,15,1,2,3,0,15.43272243633229,15.43272243633229,0,0,0,0,0,0,0,1,1,0,3.984486063697658,0,42.52438096433514,2,35.43,40.34,2,1,0,1,8,4,0,553.5,0,0,0 +280,346,636,635,-9,-9,2,1,0,42,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,10,0,4,-80.83411715259804,-9,0,1,38,2,3,1,3,2,2019,3,1,20,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,1,1,0,1,8,4,0,553.5,0,0,0 +281,347,637,638,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,3,0,0,0,0,63,2,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.14059763354751,1,62.51,44.7,6,1,0,0,13,1,0,1147,0,0,0 +281,347,638,637,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,8,0,-3,0,0,0,0,66,3,2,3,3,3,2019,4,1,13,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.01,21.37,5,1,0,0,13,1,0,1147,0,0,0 +282,348,639,641,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.52103601013784,8.521162862887255,0,2,0,-9,7,0,2,64.66249439287721,0,0,0,47,2,3,1,3,3,2019,1,1,9,0,38,38,15,1,1,1,0,14.6675066116714,14.6675066116714,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,8,4,1,643.3333333333334,0,0,0 +282,348,640,-9,641,639,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.29989711832,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,1,643.3333333333334,0,0,0 +282,348,641,639,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,8.505700494744939,8.639452014713191,0,2,0,-9,28,0,-2,36.24937284855805,0,0,0,49,2,4,1,2,2,2019,1,2,15,4,35,36,15,1,4,1,0,17.80465311857021,17.80465311857021,0,0,0,0,0,0,0,1,1,0,2.205457514143453,0,1.793901021943697,3,53.5,51.02,6,1,0,0,8,4,1,643.3333333333334,0,0,0 +282,349,642,-9,641,639,3,1,1,19,2,0,1,1,2,0,7,2,0,4,7.243807005258664,7.585207944694503,0,3,0,0,0,-9,0,-851.5934457873153,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,8,3,1,715,0,0,0 +283,350,643,644,-9,-9,1,1,0,48,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,33,0,0,-14.98112170191338,0,0,0,48,2,5,1,3,2,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,6,3,0,0,9,5,1,741,0,0,0 +283,350,644,643,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,5,9.407439604943178,9.445613025886999,0,1,0,-9,9,0,0,15.34775234222683,0,0,0,48,3,4,3,-9,-9,2019,2,1,8,0,41,40,15,1,0,3,0,23.97829785558634,23.97829785558634,0,0,0,0,0,0,0,0,0,0,1.23375532486049,0,0,0,54.67,57.49,5,3,0,0,9,5,1,741,0,0,0 +284,351,645,646,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,4,9.073541574643956,9.070904399949985,0,1,0,-9,2,0,3,54.33538075983525,0,1,0,22,2,4,1,-9,-9,2019,1,1,10,0,45,45,15,1,1,1,0,18.27339994509588,18.27339994509588,0,0,0,0,0,0,0,0,0,0,7.772710579299673,0,0,0,49,58,5,5,0,0,10,5,0,420.5,0,0,0 +284,351,646,645,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,4,8.391472845989805,8.526669102714644,0,1,0,-9,2,0,-3,1.808561298310303,0,1,1,25,2,4,1,3,2,2019,1,2,7,0,46,37,15,1,0,1,0,10.048342374059,10.048342374059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,2,1,0,0,10,5,0,420.5,0,0,0 +285,352,647,648,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,48,0,1,151.2046820663206,0,0,0,68,1,3,3,3,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.635773652896166,0,0,0,40.9,28.51,3,1,0,0,9,3,1,204.5,0,0,0 +285,352,648,647,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,7.845671623955031,7.745680172031165,1,0,-9,48,0,-1,-115.5084859610504,0,0,0,69,2,2,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.922975053343758,7.772543110409385,0,0,57.48,45.43,7,1,0,0,9,3,1,204.5,0,0,0 +286,353,649,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,3,0,4.475074321875331,4.763672936993687,3,0,0,0,-9,0,-970.3801583368876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,5.693047468714436,0,5.887544008660061,0,1,1,0,0,4.395133451614967,0,0,44.18,25.57,5,1,0,0,4,2,1,483,0,0,0 +287,354,650,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,6.077943149177116,6.129681452727116,3,0,0,0,-9,0,-954.2188118794895,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.422658914431823,0,0,1,1,0,1.583777444745166,6.301607283520404,0,0,52,45,6,1,0,0,5,2,1,1420,0,0,0 +288,355,651,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-903.9427576242817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.216782521992929,0,0,0,52.24,43.31,4,1,0,0,4,2,0,1419,0,0,0 +289,356,652,653,-9,-9,2,1,0,58,1,0,1,0,2,-9,2,1,0,3,7.531453517319097,7.658001046447563,0,2,0,-9,20,0,4,80.34485767910708,0,0,0,54,1,5,1,2,3,2019,1,1,8,0,14,15,15,1,0,1,0,13.29196842356761,13.29196842356761,0,0,0,0,0,0,0,1,1,0,0,0,12.93044334997605,3,49.04,55.86,6,1,0,0,13,4,1,554,0,0,0 +289,356,653,652,-9,-9,1,1,1,54,1,0,1,0,1,-9,2,1,0,5,8.56017648828578,9.096622576519474,0,2,0,-9,23,0,-4,89.83823874814782,0,0,0,58,2,3,1,2,2,2019,1,2,9,0,44,45,15,1,0,1,0,19.64863191060003,19.64863191060003,0,0,0,0,0,0,0,1,1,0,3.501434990164229,0,13.51035506320302,3,58.05,54.52,6,1,0,0,13,4,1,554,0,0,0 +289,357,654,-9,652,653,3,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1031.281769092989,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,547,0,0,0 +290,358,655,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,2,1,0,4,6.981374235761296,7.38174366866029,5.434285786376739,4,0,0,0,-9,0,-1075.129435513236,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,2,16,16,15,1,2,-9,0,7.631779608402588,7.631779608402588,0,0,0,0,0,0,0,1,0,1,6.062438366453995,0,0,0,38.11,59.76,5,1,0,0,10,2,0,390.5,0,0,0 +290,358,656,-9,655,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.241953505604,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,10,2,0,390.5,0,0,0 +291,359,657,658,-9,-9,2,1,0,60,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,8,0,-5,0,0,0,0,65,2,2,3,3,3,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.994324927824267,3,60.12,54.8,6,1,1,0,13,1,0,1602,0,0,0 +291,359,658,657,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,8,0,5,0,0,0,0,60,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,.1377291092619332,0,11.89883300637694,3,66.76000000000001,29.06,7,1,0,0,13,1,0,1602,0,0,0 +292,360,659,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,2,8.660726465002135,8.990557295650696,0,3,0,0,0,-9,0,-1009.728741891325,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,55,50,15,1,2,-9,0,13.68488249003184,13.68488249003184,0,0,0,0,0,0,0,0,0,0,1.668809727391579,0,0,3,37.08,30.47,4,1,0,1,7,5,1,488,0,0,0 +292,361,660,-9,659,-9,2,1,1,30,2,0,0,0,2,-9,1,1,0,1,8.908216812943609,8.762196090287169,0,3,0,0,0,-9,0,-1102.539371497547,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,50,40,15,1,0,-9,1,14.12693266617557,14.12693266617557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.73,43.76,5,1,0,0,7,5,1,292,0,0,0 +293,362,661,662,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,8.597793420211129,8.672673805081651,0,2,0,-9,8,0,-1,68.37590631092928,0,0,0,52,3,3,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,11.71023885465552,11.71023885465552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,2,4,1,1109.5,0,0,0 +293,362,662,661,-9,-9,2,1,0,52,1,0,1,0,3,-9,2,1,0,3,7.508550693890084,7.993233214075873,7.182050926756397,2,0,-9,8,0,1,-31.35014165318042,0,0,0,51,2,3,1,3,3,2019,1,1,12,0,25,25,15,1,0,1,0,11.24971313926235,11.24971313926235,0,0,0,0,0,0,0,1,1,0,2.602555696639694,7.143979980838709,0,0,55.36,51.57,6,1,0,0,2,4,1,1109.5,0,0,0 +293,363,663,-9,662,-9,4,1,0,35,2,0,1,0,2,-9,2,1,0,4,7.727985282312954,7.520833042708229,0,3,0,0,0,-9,0,-1003.097487806564,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,35,0,15,1,2,-9,1,7.551937766712803,7.551937766712803,0,0,0,0,0,0,0,1,1,0,6.223098070323029,0,0,0,48,57,5,1,0,0,2,3,1,958.5,0,0,0 +293,363,664,-9,663,-9,5,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-887.9218455261696,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,2,3,1,958.5,0,0,0 +293,364,665,-9,662,-9,3,1,1,25,2,0,1,0,2,-9,2,1,0,4,7.925980414890734,7.863696147241603,0,3,0,0,0,-9,0,-1103.492547213217,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,0,15,1,1,-9,1,9.515984609940169,9.515984609940169,0,0,0,0,0,0,0,1,1,0,1.167435891580761,0,0,0,49,58,5,1,0,0,2,4,1,237,0,0,0 +294,365,666,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,5,0,7.450760012928721,7.985608137003663,3,0,0,0,-9,0,-1028.735294860368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.580006965020047,7.637718564880051,0,0,59.64,46.95,7,1,0,0,6,3,1,513,0,0,0 +295,366,667,668,-9,-9,1,1,1,46,1,0,1,0,3,-9,1,1,0,3,6.96641708975192,7.055868248336956,0,2,0,-9,1,-9,1,101.4684419026521,-9,0,0,45,2,4,1,2,2,2019,1,2,6,0,35,0,15,1,0,1,0,4.050029267434818,4.050029267434818,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.97,34.85,6,1,0,0,5,3,0,970.3333333333334,0,0,0 +295,366,668,667,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.123374417072577,7.570552763021652,0,2,0,-9,1,-9,-1,-55.43947982281644,-9,0,0,46,3,3,1,-9,-9,2019,1,1,10,0,20,0,15,1,1,1,0,9.20856658074076,9.20856658074076,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,5,0,0,5,3,0,970.3333333333334,0,0,0 +295,366,669,-9,668,667,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-893.9515347115361,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,0,970.3333333333334,0,0,0 +296,367,670,671,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,3,0,6.236813139824524,6.583023419558056,1,0,-9,8,0,-1,-75.29916348818652,0,0,0,88,3,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8386802321256006,6.731545872881529,0,0,53,44,6,5,0,0,2,2,1,304,0,0,0 +296,367,671,670,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,2,0,6.054587149477448,5.899045624583484,1,0,-9,8,0,1,111.2906573203873,0,0,0,87,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.396377541730815,5.853362142550587,0,0,64.3,19.18,5,1,0,0,2,2,1,304,0,0,0 +297,368,672,-9,-9,-9,1,1,0,38,2,0,3,0,3,-9,3,3,0,3,0,5.775775747979951,5.933869365033809,4,0,0,0,-9,0,-1009.266104552565,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.986440032089467,0,0,0,34.56,46.04,4,1,1,1,5,2,0,277,0,0,0 +298,369,673,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-904.6069758760956,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.124446450750638,0,0,0,53.88,49.97,7,1,0,0,8,1,0,310,0,0,0 +299,370,674,675,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,3,7.941697419576378,7.92398076764875,0,2,0,-9,17,0,7,57.85931459416892,0,0,0,44,2,3,1,3,3,2019,1,1,11,0,50,60,15,1,1,1,0,7.682889607682087,7.682889607682087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,5,3,0,0,6,4,1,543.5,0,0,0 +299,370,675,674,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,3,7.690544628809353,7.000196386779787,0,2,0,-9,17,0,-7,44.04224756969347,0,0,1,51,1,3,1,3,3,2019,1,2,13,1,28,30,15,1,1,1,0,7.326531638356076,7.326531638356076,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.52,48.98,4,3,0,0,6,4,1,543.5,0,0,0 +300,371,676,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,0,6.280681303182347,6.302641802442297,3,0,0,0,-9,0,-886.1643390240358,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.379644113266947,6.248969290874305,0,0,15.04,35.59,1,1,0,0,2,2,0,295,0,0,0 +301,372,677,-9,-9,-9,1,1,0,39,2,0,3,0,3,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-989.4019351700844,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.35244284547264,3,51.24,58.84,5,1,1,0,4,1,0,315.6666666666667,0,0,0 +301,372,678,-9,677,-9,5,1,1,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1047.67835623975,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,4,1,0,315.6666666666667,0,0,0 +301,372,679,-9,677,-9,4,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-905.5701280939542,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,4,1,0,315.6666666666667,0,0,0 +301,373,680,-9,677,-9,2,1,1,20,2,0,3,0,2,-9,2,1,0,5,7.742218277048818,7.794046341792103,0,3,0,0,0,-9,0,-1064.827811298695,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,55,40,15,1,0,-9,1,5.275736957953374,5.275736957953374,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,4,1,0,0,4,3,0,426,0,0,0 +302,374,681,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,3,7.973633999441418,8.396987364792281,0,3,0,0,0,-9,0,-1010.959654202972,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,42,42,15,1,6,-9,0,9.665721610088214,9.665721610088214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,4,2,0,0,8,4,0,273,0,0,0 +302,375,682,-9,-9,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.641384783964911,8.631948933364953,0,3,0,-9,0,-9,0,-974.55188141132,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,0,15,1,2,-9,0,15.47855241876822,15.47855241876822,0,0,0,0,0,0,0,0,0,0,1.224937630125069,0,0,0,47,57,5,5,0,0,8,5,0,2948,0,0,0 +302,376,683,-9,-9,-9,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.239510193060147,8.127479671612688,0,3,0,-9,0,-9,0,-1018.184807687855,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,0,15,1,2,-9,0,11.09841698157249,11.09841698157249,0,0,0,0,0,0,0,0,0,0,1.150213700975951,0,0,0,47,57,5,5,0,0,8,4,0,615,0,0,0 +302,377,684,-9,-9,-9,4,1,1,23,2,0,0,0,1,-9,2,1,0,4,8.873337177857112,9.080038580956723,0,3,0,-9,0,-9,0,-909.2386207529511,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,37,0,15,1,1,-9,0,20.38794329931087,20.38794329931087,0,0,0,0,0,0,0,0,0,0,3.184397585470181,0,0,0,49,58,5,5,0,0,8,5,0,1599,0,0,0 +303,378,685,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1100.42701554198,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.04,18.21,3,1,0,1,2,1,1,493,0,0,0 +304,379,686,687,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,2,0,6.894536809264206,6.542483212212386,1,0,-9,9,0,-4,14.02566461855651,0,0,0,90,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.612242543284232,6.564459692766431,0,0,63.17,11.68,6,1,0,0,4,2,1,532.5,0,0,0 +304,379,687,686,-9,-9,1,1,0,90,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,4,23.18522589636885,0,0,0,86,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.13,36.75,6,1,0,0,4,2,1,532.5,0,0,0 +305,380,688,689,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.858826476249696,7.645796167062,1,0,-9,30,0,-2,-115.2220398973115,0,0,0,73,2,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.378127463810715,7.867503519078284,0,0,57.16,56.15,7,1,0,0,7,3,1,766.5,0,0,0 +305,380,689,688,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,34,0,2,-56.32498636170194,0,0,0,71,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.33377492034701,0,0,0,57.06,57.76,7,1,0,0,7,3,1,766.5,0,0,0 +306,381,690,691,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,7.279862745242894,7.073918554217496,1,0,-9,6,0,-2,-142.3855284448082,0,0,0,74,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.134737127141915,0,0,57.33,53.46,6,1,0,0,13,3,1,1102.5,0,0,0 +306,381,691,690,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,7.443547335978574,7.86965877997875,1,0,-9,6,0,2,26.99231029591841,0,0,0,72,2,3,3,2,2,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.283591362426042,7.752901966570633,0,0,43.42,62.33,7,1,0,0,13,3,1,1102.5,0,0,0 +307,382,692,693,-9,-9,2,1,0,53,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,24,0,4,67.93451448041209,0,0,0,49,1,3,1,2,2,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,35.87,5,1,0,0,9,4,1,193,0,0,0 +307,382,693,692,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,3,8.422612552402356,8.609363693031334,0,1,0,-9,24,0,-4,-60.74858880716637,0,0,0,53,3,3,3,2,2,2019,2,2,13,1,37,37,15,1,1,3,0,13.42774476691116,13.42774476691116,0,0,0,0,0,0,0,1,1,0,0,0,8.316294520989359,1,37.38,54.63,5,1,0,0,9,4,1,193,0,0,0 +308,383,694,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,1,1,0,4,7.188517728648055,6.902498849313228,0,3,0,0,0,-9,0,-1022.55546788854,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.594267838069927,0,0,0,17.61,64.83,2,1,0,0,8,2,1,1071,0,0,0 +309,384,695,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,3,7.810745234423685,7.814375309423384,0,3,0,-9,0,-9,0,-952.0757964869772,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,35,0,15,1,0,-9,0,8.621708540876162,8.621708540876162,0,0,0,0,0,0,0,0,0,0,7.249818624664711,0,0,0,44.66,59.1,5,1,0,0,7,3,1,188,0,0,0 +310,385,696,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1029.650340929007,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.62,64.67,6,1,0,0,9,1,0,730,0,0,0 +311,386,697,698,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,53,0,-3,-165.5649509690806,0,0,0,75,2,4,1,-9,-9,2019,3,1,16,4,0,0,15,4,4,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,31.69,34.16,6,1,0,0,7,3,1,678.5,0,0,0 +311,386,698,697,-9,-9,1,1,1,75,1,0,0,0,2,-9,2,1,0,4,8.273780943734991,8.173128731537805,6.066334484191501,1,0,-9,53,0,3,28.48216866919099,0,0,0,72,3,1,3,3,3,2019,2,2,10,0,42,37,15,1,0,4,0,10.98002959992062,10.98002959992062,0,0,0,0,0,0,0,1,1,0,4.543840572850184,6.037999239586917,0,0,51.83,57.2,6,1,0,0,7,3,1,678.5,0,0,0 +312,387,699,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,3,8.822595989672148,8.57962592363061,0,3,0,0,0,-9,0,-1177.242745129374,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,46,49,15,1,0,-9,0,14.6377900665526,14.6377900665526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.63,50.99,6,1,0,0,2,5,0,938,0,0,0 +313,388,700,701,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,9.009104943166923,8.663457826079513,0,1,0,-9,7,0,-18,62.85607178851012,0,0,0,72,3,1,3,2,3,2019,2,1,9,0,41,40,15,1,0,4,0,18.71926960576327,18.71926960576327,0,0,0,0,0,0,0,1,1,0,0,0,19.95314769103535,3,54.27,48.04,6,1,0,0,8,5,1,405,0,0,0 +313,388,701,700,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,1,0,7.173805705305186,7.198657876249149,1,0,-9,7,0,18,60.58698173824966,0,0,0,54,2,3,1,3,-9,2019,3,2,15,3,0,0,15,4,3,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.287083006613838,0,0,35.42,25.76,4,1,0,0,8,5,1,405,0,0,0 +313,389,702,703,700,701,3,1,0,23,1,0,0,0,1,-9,97,3,0,3,0,0,0,1,0,-9,2,0,0,0,0,1,1,23,1,3,3,2,3,2019,4,4,7,0,0,36,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.076875240114525,3,54.37,54.8,5,1,0,0,8,1,1,697.5,0,0,0 +313,389,703,702,-9,-9,4,1,1,23,1,0,0,0,1,-9,97,3,0,3,0,0,0,1,0,-9,2,0,0,0,0,1,0,23,1,3,3,-9,-9,2019,4,3,6,0,0,45,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.51,54.26,6,1,0,0,8,1,1,697.5,0,0,0 +314,390,704,705,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,6.324412472723421,6.767219196608524,1,0,-9,57,0,-2,-87.99137174652697,0,0,0,78,2,4,3,3,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.057252514807899,0,0,48.91,43.45,6,1,0,0,5,2,1,666.5,0,0,0 +314,390,705,704,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,6.691076120665579,6.761011671825728,1,0,-9,57,0,2,-47.42402302673197,0,0,0,76,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.347318828098878,7.043646030709641,0,0,58.4,51.64,6,1,0,0,5,2,1,666.5,0,0,0 +315,391,706,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,6.947905597114296,7.040412251126934,3,0,0,0,-9,0,-939.331676736452,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.414100289001591,7.410151861390368,3.484883643016113,3,50.27,44.25,6,1,0,0,7,2,1,461,0,0,0 +316,392,707,708,710,-9,3,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.835684313515486,7.634119900246072,0,1,0,-9,1,-9,1,-146.2126269622392,-9,0,0,56,3,3,1,2,-9,2019,1,2,7,0,30,0,15,1,0,1,0,10.44077605271744,10.44077605271744,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,356,0,0,0 +316,392,708,707,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,3,7.456430243994258,7.044285539019111,0,1,0,-9,1,-9,-1,-57.19497527850973,-9,0,0,57,2,4,1,-9,-9,2019,1,3,11,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,5,1,0,0,12,4,1,356,0,0,0 +316,393,709,-9,707,708,4,1,0,22,2,0,0,1,1,-9,7,2,0,4,9.087133010326571,9.491130557628059,6.45994106161475,3,0,-9,0,-9,0,-1018.493962364805,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.921611648714519,0,0,0,55.73,53.98,6,1,0,0,12,5,1,419,0,0,0 +316,394,710,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,1,0,7.447693858592333,7.564976538498615,3,0,0,0,-9,0,-965.3226013113688,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,128.2888786369011,0,0,0,1,1,0,.4253149995164297,7.078111194892824,0,0,44.93,18.74,7,1,0,0,12,3,1,911,0,0,0 +317,395,711,-9,712,714,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-916.0444327278312,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,4,2,1,738.4,0,0,0 +317,395,712,714,-9,-9,1,1,0,27,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-1,-66.71288144349549,0,1,1,28,3,4,1,3,2,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.05,54.79,6,3,0,0,4,2,1,738.4,0,0,0 +317,395,713,-9,712,714,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.2734495964991,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,2,1,738.4,0,0,0 +317,395,714,712,-9,-9,2,1,1,28,1,1,3,0,3,-9,1,1,0,4,7.291030591139574,7.248640065651244,0,2,0,-9,11,0,1,-48.8368428098884,0,1,0,27,2,4,3,3,3,2019,2,1,10,0,30,30,15,1,1,3,0,5.315710766360861,5.315710766360861,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,4,2,1,738.4,0,0,0 +317,395,715,-9,712,714,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.399296639828,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,738.4,0,0,0 +318,396,716,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,6.546808569560828,6.286349900052227,3,0,0,0,-9,0,-937.7299519793985,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.242163066429015,6.349787852000103,0,0,51.37,46.97,6,1,0,0,9,2,1,153,0,0,0 +319,397,717,-9,718,-9,1,1,0,37,2,0,0,0,3,-9,2,1,0,4,1.582780529746543,1.698807943604572,0,3,0,0,0,-9,0,-1029.091722021566,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,48,8,15,1,0,-9,1,.0094356169589749,.0094356169589749,0,0,0,0,0,0,0,1,1,0,0,0,3.220891843281455,3,60.12,54.8,6,4,0,0,8,2,0,980,0,0,0 +319,398,718,-9,-9,-9,2,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1032.241535304236,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,76.06927365934946,0,0,34.81294817091268,1,1,0,0,0,0,0,63.01,30.77,5,4,0,0,8,2,0,250,0,0,0 +320,399,719,720,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,5,8.951532758756601,8.877363766570717,0,2,0,-9,17,0,-5,-18.1990369147614,0,0,1,48,1,4,1,2,2,2019,1,2,5,0,47,37,15,1,0,1,0,21.00381631813974,21.00381631813974,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,4,4,1,619.25,0,0,0 +320,399,720,719,-9,-9,2,1,1,48,1,0,3,0,1,-9,2,1,0,4,7.387439101990001,7.930997511247976,0,2,0,-9,18,0,5,-10.86955869933043,0,0,0,43,1,5,1,2,2,2019,1,1,10,0,12,26,15,1,0,1,0,24.74536311352381,24.74536311352381,0,0,0,0,0,0,0,1,1,0,1.876115789178848,0,0,0,49.94,58.01,5,1,0,0,4,4,1,619.25,0,0,0 +320,399,721,-9,719,720,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.076761183473,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,619.25,0,0,0 +320,399,722,-9,719,720,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.818126922552,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,619.25,0,0,0 +321,400,723,725,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,4,9.608705106225374,9.623423021189831,0,2,0,-9,11,0,0,-73.04529368442755,0,0,1,38,1,3,1,2,1,2019,1,2,11,1,5,45,15,1,1,1,0,272.9232739612115,272.9232739612115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,6,3,0,0,4,5,1,542,0,0,0 +321,400,724,-9,723,725,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1189.614288836701,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,2,0,0,4,5,1,542,0,0,0 +321,400,725,723,-9,-9,2,1,1,38,1,0,1,0,1,-9,2,1,0,3,8.535008033738448,8.565474068052129,0,2,0,-9,10,0,0,-44.56001080709412,0,0,0,38,1,4,1,-9,-9,2019,1,1,20,8,50,55,15,1,8,1,0,11.67285554945097,11.67285554945097,0,0,0,0,0,0,0,0,0,0,1.582343810489967,0,0,0,35.55,60.77,3,1,0,0,4,5,1,542,0,0,0 +322,401,726,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-966.369874441581,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0786855775362065,0,0,0,50,47,5,1,0,0,11,1,0,475,0,0,0 +323,402,727,730,-9,-9,2,1,1,37,1,1,3,0,2,-9,2,1,0,3,9.232256397823846,9.319048451017991,0,2,0,-9,10,0,1,-89.16689801512383,0,0,0,36,1,5,1,-9,-9,2019,1,1,10,1,46,48,15,1,1,1,0,24.68334491089038,24.68334491089038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,59.08,6,1,0,0,6,5,1,323.6,0,0,0 +323,402,728,-9,730,727,4,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.5591399840334,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,6,5,1,323.6,0,0,0 +323,402,729,-9,730,727,3,1,1,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.004254795139,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,6,5,1,323.6,0,0,0 +323,402,730,727,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,5,7.600501623166476,7.678931148837124,0,2,0,-9,15,0,-1,-54.17831280189408,0,0,1,37,2,3,1,3,3,2019,1,2,6,0,20,20,15,1,0,1,0,11.52164101800899,11.52164101800899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,0,0,6,5,1,323.6,0,0,0 +323,402,731,-9,730,727,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.098443738805,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,6,5,1,323.6,0,0,0 +324,403,732,733,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,4,8.050534867783801,8.289182895403165,0,1,0,-9,4,0,1,-173.3980722363,0,0,1,29,1,4,1,-9,-9,2019,1,1,15,3,42,42,15,1,3,1,0,8.906379434355562,8.906379434355562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,4,1,0,0,2,5,0,328,0,0,0 +324,403,733,732,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.770293725996789,9.013628546189388,0,1,0,-9,4,0,-1,75.72142880802879,0,1,0,30,2,4,1,2,2,2019,1,2,12,2,67,65,15,1,2,1,0,11.21504826743538,11.21504826743538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,0,328,0,0,0 +325,404,734,735,-9,-9,2,1,1,22,1,0,0,0,2,-9,2,1,0,4,7.831069848576493,8.174723309705106,0,1,0,-9,5,0,1,-27.23804712517635,-9,1,0,21,2,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,8.702895459985864,8.702895459985864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,5,4,1,724.5,0,0,0 +325,404,735,734,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,4,7.724977762423448,7.832895968792499,0,1,0,-9,5,0,-1,65.28301308068821,0,1,1,22,2,4,1,2,2,2019,1,2,21,9,36,42,15,1,9,1,0,9.579296103509138,9.579296103509138,0,0,0,0,0,0,0,0,0,0,2.131975139940189,0,0,0,36.94,58.61,3,1,0,0,5,4,1,724.5,0,0,0 +326,405,736,737,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,39,0,-3,-67.28966634099027,0,0,0,71,2,1,3,3,3,2019,4,2,24,11,0,0,15,4,11,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,84.56561375005988,1,45.93,35.54,5,1,0,0,5,2,0,518,0,0,0 +326,405,737,736,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,2.954553005182988,3.34498629968605,1,0,-9,39,0,3,-13.2809776889077,0,0,0,68,3,3,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,80.15968665026884,0,0,0,0,1,1,0,0,3.6643607774014,0,0,20.38,32.9,2,1,0,0,5,2,0,518,0,0,0 +327,406,738,739,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,2,0,7.860494502401906,7.542708821235478,1,0,-9,5,0,-1,-157.3509325238443,0,0,0,64,2,1,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.403908209469714,7.92387040358797,119.0400020045228,2,50.5,40.48,5,1,0,0,6,3,1,249,0,0,0 +327,406,739,738,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,1,0,7.059930358725186,6.972181793983527,1,0,-9,2,0,1,-93.40833194527444,0,0,0,63,1,2,3,-9,-9,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.915222259412388,9.457551610613006,3,46.37,40.24,6,1,0,0,6,3,1,249,0,0,0 +328,407,740,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,2,1,0,4,6.983038740644886,6.735423781593164,0,3,0,0,0,-9,0,-838.9000711919523,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,20,20,15,1,2,-9,0,5.777807315634972,5.777807315634972,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.54,50.55,3,1,0,0,11,2,0,87,0,0,0 +329,408,741,742,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,3,7.903940663450052,7.902112510213593,0,1,0,-9,7,0,-2,3.404171076120031,0,0,0,50,2,3,1,3,-9,2019,1,1,6,0,38,38,15,1,0,1,0,10.869793739519,10.869793739519,0,0,0,0,0,0,0,0,0,0,.7134195650591377,0,8.692440667072136,3,60.87,44.96,6,1,0,0,1,5,1,655.5,0,0,0 +329,408,742,741,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.331919265296822,8.350569184964606,0,1,0,-9,7,0,2,-3.239072366042549,0,0,0,48,3,3,1,2,2,2019,1,2,7,0,49,38,15,1,0,1,0,10.85638242484069,10.85638242484069,0,0,0,0,0,0,0,0,0,0,1.399691544223804,0,0,0,58.51,41.84,6,1,0,0,1,5,1,655.5,0,0,0 +330,409,743,-9,-9,-9,1,1,1,31,2,0,0,0,3,-9,2,1,0,3,7.82293515962541,8.248333626669387,0,3,0,0,0,-9,0,-988.5501331770841,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,20,30,15,1,0,-9,0,13.63950988615138,13.63950988615138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.72,55.65,4,4,0,0,5,3,0,418,0,0,0 +331,410,744,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-993.0802150658506,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.46,24.8,4,1,0,0,9,1,0,311,0,0,0 +331,411,745,-9,744,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,3,8.402143025804349,8.360306025542044,0,3,0,0,0,-9,0,-857.361891334219,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,28,11,54,46,15,1,11,-9,1,8.921828726501822,8.921828726501822,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.94,64.13,3,1,0,0,9,4,0,728,0,0,0 +332,412,746,-9,-9,-9,1,1,0,51,2,0,2,0,1,-9,1,1,0,3,7.967591704334949,7.776042263226593,0,4,0,0,0,-9,0,-909.8182751579679,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,45,20,15,1,0,-9,0,6.665763684698789,6.665763684698789,0,0,0,0,0,0,0,1,1,0,0,0,42.72718233134247,3,54.27,48.04,6,1,0,0,11,2,1,290,0,0,0 +333,413,747,-9,748,750,5,1,1,12,2,0,4,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1026.155253280611,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,3,0,0,6,1,1,553.6,0,0,0 +333,413,748,750,-9,-9,1,1,0,35,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,18,0,-3,0,0,0,1,38,2,5,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,6,3,0,0,6,1,1,553.6,0,0,0 +333,413,749,-9,748,750,6,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.9919484296742,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,1,1,553.6,0,0,0 +333,413,750,748,-9,-9,2,1,1,38,1,0,4,0,2,-9,1,1,0,5,0,0,0,2,0,-9,18,0,3,0,0,0,0,35,2,4,3,3,3,2019,2,1,5,0,60,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,3,0,0,6,1,1,553.6,0,0,0 +333,413,751,-9,748,750,4,1,0,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.163118978805,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,1,1,553.6,0,0,0 +334,414,752,758,-9,-9,1,1,1,45,1,1,5,0,3,-9,3,3,0,3,0,0,0,2,0,-9,23,0,9,173.8087538968755,-9,0,0,36,2,3,1,3,3,2019,3,2,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.81,50.16,4,3,1,0,8,2,0,1132.428571428571,0,0,0 +334,414,753,-9,758,752,7,1,0,1,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.400029101771,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,1132.428571428571,0,0,0 +334,414,754,-9,758,752,4,1,1,14,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-871.8186961922733,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,1132.428571428571,0,0,0 +334,414,755,-9,758,752,3,1,1,17,2,1,5,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-954.2880424981048,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.87,52.26,6,3,0,0,8,2,0,1132.428571428571,0,0,0 +334,414,756,-9,758,752,5,1,0,12,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.022652857493,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,2,0,1132.428571428571,0,0,0 +334,414,757,-9,758,752,6,1,0,4,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.424147080522,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,1132.428571428571,0,0,0 +334,414,758,752,-9,-9,2,1,0,36,1,1,5,0,2,-9,2,1,0,3,7.600122106995675,7.470926440334338,0,2,0,-9,3,0,0,109.0766020178861,0,0,1,45,3,3,3,-9,-9,2019,2,1,6,0,25,0,15,1,0,3,0,11.54206305803395,11.54206305803395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,6,3,0,1,8,2,0,1132.428571428571,0,0,0 +335,415,759,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,5.746761802964343,5.660261601545173,3,0,0,0,-9,0,-1040.931818115416,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.511369914907078,5.613151097651282,0,3,55.73,43.25,6,1,0,0,6,2,1,907,0,0,0 +336,416,760,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.624053079467229,8.623434963411269,0,3,0,0,0,-9,0,-969.1421761377665,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,100,55,15,1,0,-9,0,5.723959948484815,5.723959948484815,0,0,0,0,0,0,0,1,1,0,1.649602502736514,0,0,0,57.16,56.15,6,1,0,0,7,5,0,839,0,0,0 +337,417,761,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,3,7.677992789843089,7.471935312155011,0,3,0,-9,0,-9,0,-965.8784082683455,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,26,29,15,1,1,-9,0,10.79041406852337,10.79041406852337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.94,6,1,0,0,11,3,1,2248,0,0,0 +338,418,762,763,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.094045930393767,8.165594527376232,0,1,0,-9,2,0,1,20.73615590022934,-9,0,1,29,1,2,1,2,3,2019,1,1,10,0,38,0,15,1,0,1,0,12.35738441118458,12.35738441118458,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,43.6,6,3,0,0,6,5,1,449,0,0,0 +338,418,763,762,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,2,8.926750413102011,8.576228956077426,0,1,0,-9,2,0,-1,-43.79213918421566,0,1,0,30,1,4,1,3,2,2019,1,2,9,0,45,40,15,1,0,1,0,15.05457790911747,15.05457790911747,0,0,0,0,0,0,0,1,1,0,7.177299968663235,0,0,3,58.15,31.81,3,3,0,0,6,5,1,449,0,0,0 +339,419,764,765,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.105411796434054,7.501705445012552,0,1,0,-9,31,0,-12,26.25205714158777,0,0,0,72,2,4,3,3,3,2019,2,1,7,0,16,24,15,1,0,4,0,9.078942343607046,9.078942343607046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,2,1,0,0,7,2,1,311.5,0,0,0 +339,419,765,764,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,28,0,12,79.10549513729056,0,0,0,60,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,2,1,0,0,7,2,1,311.5,0,0,0 +340,420,766,768,-9,-9,1,1,0,53,1,0,2,0,3,-9,2,1,0,4,7.294746087971577,7.407969940062382,0,2,0,-9,10,0,-5,-19.59681644398487,0,0,0,58,2,1,3,3,3,2019,2,2,13,1,21,22,15,1,1,4,0,7.740359329146155,7.740359329146155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,51.73,3,1,0,1,7,2,1,833,0,0,0 +340,420,767,-9,766,768,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-913.0696058896068,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,7,2,1,833,0,0,0 +340,420,768,766,-9,-9,2,1,1,58,1,0,2,0,2,-9,4,3,0,1,0,0,0,2,0,-9,10,0,5,-86.69840842711632,0,0,0,53,3,4,1,2,2,2019,3,1,23,11,0,51,15,4,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.44,43.7,2,1,0,1,7,2,1,833,0,0,0 +340,420,769,-9,766,768,3,1,1,16,2,0,2,0,2,-9,11,2,0,4,0,0,0,2,0,0,0,-9,0,-993.7606564027471,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3449270542301104,0,0,0,55.19,54.26,6,1,0,0,7,2,1,833,0,0,0 +341,421,770,-9,-9,-9,1,1,0,47,2,1,2,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-968.7616326561324,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.92677481917192,3,43.27,20.92,5,1,0,1,13,1,1,355.5,0,0,0 +341,421,771,-9,770,-9,4,1,1,17,2,1,2,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1013.305851212758,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.47,55.39,5,1,0,0,13,1,1,355.5,0,0,0 +341,422,772,-9,774,773,6,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1051.540766563333,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,1,1,518.3333333333334,0,0,0 +341,422,773,774,770,-9,2,1,1,25,1,1,2,0,3,-9,8,3,1,3,0,0,0,2,0,1,1,-9,3,0,0,1,0,22,2,4,3,3,-9,2019,4,5,12,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.49,61.82,5,1,0,0,13,1,1,518.3333333333334,0,0,0 +341,422,774,773,-9,-9,5,1,0,22,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,-3,0,-9,1,1,25,3,3,3,-9,-9,2019,4,2,12,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,55.04,5,1,0,0,13,1,1,518.3333333333334,0,0,0 +341,423,775,-9,770,-9,3,1,0,23,2,1,2,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-898.8895364760905,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,13,1,1,242,0,0,0 +342,424,776,777,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,4,8.907701601961007,8.991944279381423,0,1,0,-9,26,0,8,-77.35398517513885,0,0,0,47,2,3,1,2,2,2019,1,1,7,0,85,80,15,1,0,1,0,8.460750783389544,8.460750783389544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,760.5,0,0,0 +342,424,777,776,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,8.173699182174774,7.983196428969666,0,1,0,-9,23,0,-8,21.61766811033782,0,0,0,55,3,4,1,2,2,2019,1,2,26,11,48,46,15,1,11,1,0,9.396783123076085,9.396783123076085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.82,48.81,3,1,0,0,6,5,1,760.5,0,0,0 +342,425,778,-9,777,776,3,1,0,27,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-803.9647516079968,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,32,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.60339381363102,0,0,0,23.81,46.32,3,1,1,0,6,1,1,263,0,0,0 +342,426,779,-9,777,776,4,1,0,21,2,0,0,0,2,1,2,1,0,2,7.653096271616844,7.533607148357731,0,3,0,0,0,-9,0,-980.5045118127564,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,5.584073637643602,5.584073637643602,0,0,0,0,0,0,0,0,0,0,2.289848550344457,0,0,0,41.57,37.85,5,1,0,0,6,3,1,89,0,0,0 +343,427,780,781,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.791018630961686,8.972804969080332,0,1,0,-9,10,0,-1,150.8847754461493,0,0,1,34,1,5,1,2,2,2019,1,1,10,1,50,20,15,1,1,1,0,15.24927700873588,15.24927700873588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,50.73,6,1,0,0,4,5,1,1433,0,0,0 +343,427,781,780,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,5,8.837105595973895,9.241711764506833,0,1,0,-9,10,0,1,3.636092812049545,0,0,0,33,1,4,1,2,2,2019,1,2,10,0,40,44,15,1,0,1,0,25.72872242790385,25.72872242790385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,4,5,1,1433,0,0,0 +344,428,782,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1018.228040451291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,15.53912809794292,.2979609791996736,0,0,1,1,0,0,0,0,0,38.41,27.82,1,1,0,0,1,1,0,243,0,0,0 +345,429,783,784,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,7.576963195604652,7.370232353293881,0,1,0,-9,37,0,-3,63.60701521908548,0,0,0,59,1,5,1,2,2,2019,1,2,11,0,32,32,15,1,0,1,0,7.530038144401355,7.530038144401355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,6,1,0,0,2,4,1,1163.5,0,0,0 +345,429,784,783,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,5,8.035602600094773,7.814479751168276,0,1,0,-9,37,0,3,81.07518441313161,0,0,0,56,1,4,1,3,2,2019,1,1,10,1,33,32,15,1,1,1,0,14.89414853730177,14.89414853730177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,5,1,0,0,2,4,1,1163.5,0,0,0 +346,430,785,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,5.643012081455365,5.555977685809572,3,0,0,0,-9,0,-1036.570525275877,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.879043618865402,0,0,36.03,55.39,4,1,0,0,9,2,0,638,0,0,0 +347,431,786,787,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,4,8.831670538951196,8.8773980982316,0,2,0,-9,20,0,0,2.905647218460138,0,0,1,41,1,3,1,2,2,2019,1,2,7,0,42,52,15,1,0,1,0,20.3282160017609,20.3282160017609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,2,1,0,0,7,5,1,678.8,0,0,0 +347,431,787,786,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,3,9.579533392567395,9.625163338685546,0,2,0,-9,9,0,0,-53.75433027050813,0,0,0,41,1,4,1,-9,-9,2019,1,1,4,1,44,48,15,1,1,1,0,38.9153513320757,38.9153513320757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,44.76,7,1,0,0,7,5,1,678.8,0,0,0 +347,431,788,-9,786,787,3,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-983.7972066237189,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,7,5,1,678.8,0,0,0 +347,431,789,-9,786,787,5,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.2908876272654,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,7,5,1,678.8,0,0,0 +347,431,790,-9,786,787,4,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1059.229821555445,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,5,1,0,0,7,5,1,678.8,0,0,0 +348,432,791,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,4,8.974764172141478,8.701731097593228,0,3,0,0,0,-9,0,-893.7717975141027,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,50,61,15,1,0,-9,0,21.85236773071545,21.85236773071545,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,4,0,0,6,5,1,262,0,0,0 +349,433,792,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,5,8.739771740847903,8.405794285328501,3.427126786427418,3,0,0,0,-9,0,-1058.291939330171,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,84,43,15,1,0,-9,0,5.428815736370315,5.428815736370315,0,0,0,0,0,0,0,0,0,0,0,3.42072577534332,0,0,47.7,48.27,4,1,0,0,11,5,1,259,0,0,0 +350,434,793,794,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,2,8.82342061260109,8.491666673072677,0,1,0,-9,7,0,7,134.721103548878,0,0,0,32,1,4,1,-9,-9,2019,1,2,34,12,50,50,15,1,12,1,0,14.66161144168976,14.66161144168976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.1,60.35,3,1,0,0,2,5,1,504,0,0,0 +350,434,794,793,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.992560909635564,8.539680033389784,0,1,0,-9,7,0,-7,26.34548733209526,0,0,1,39,2,2,1,2,2,2019,1,1,11,0,55,45,15,1,0,1,0,12.0949458823828,12.0949458823828,0,0,0,0,0,0,0,0,0,0,3.97063136089373,0,0,0,48.49,51.79,6,1,0,0,2,5,1,504,0,0,0 +351,435,795,797,-9,-9,1,1,1,41,1,1,1,0,2,-9,2,1,0,4,8.045065721843397,8.049704467352161,0,2,0,-9,15,0,3,-80.01771087115075,0,0,0,38,1,2,1,1,1,2019,1,2,6,0,34,24,15,1,0,1,0,9.11989449337174,9.11989449337174,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,3,0,0,8,3,0,896.6666666666666,0,0,0 +351,435,796,-9,797,795,4,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.841622192654,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,3,0,896.6666666666666,0,0,0 +351,435,797,795,-9,-9,2,1,0,38,1,1,1,0,1,-9,1,1,0,2,6.557482226998967,6.713499788433488,0,2,0,-9,15,0,-3,-127.748766366891,0,0,1,41,2,4,1,-9,-9,2019,1,1,19,9,40,30,15,1,9,1,0,2.199739629020049,2.199739629020049,0,0,0,0,0,0,0,1,1,0,.2068379111722535,0,.1462162153299906,3,43.08,45.41,5,1,0,0,8,3,0,896.6666666666666,0,0,0 +352,436,798,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,5,8.169392548501222,8.218190295650638,6.618898671344767,1,0,-9,5,0,0,-50.74899504592268,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,2,7,0,24,24,15,1,0,-9,0,15.75006574878044,15.75006574878044,0,0,0,0,0,0,0,0,0,0,8.255562751993581,0,0,0,54.1,59.11,6,1,0,0,2,4,1,848,0,0,0 +353,437,799,800,-9,-9,2,1,1,76,1,0,0,0,2,-9,2,1,0,4,3.8397472188175,7.122690689853775,6.90092930401579,1,0,-9,57,0,5,39.75925091688885,0,0,0,71,2,4,3,3,-9,2019,2,1,7,0,1,1,15,1,0,4,0,5.931649746201454,5.931649746201454,0,0,0,0,0,0,0,1,1,0,7.306246357228059,7.396385979135971,6.639561861979874,3,63.39,42.39,6,1,0,0,9,3,1,399,0,0,0 +353,437,800,799,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,7.135751825205192,7.046818851507726,1,0,-9,57,0,-5,170.2828911513833,0,0,0,76,2,4,1,2,2,2019,3,2,9,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.163604430975461,7.246300639993028,3.910538381591264,3,47.93,48.12,7,1,0,0,9,3,1,399,0,0,0 +354,438,801,-9,-9,-9,1,1,1,52,3,0,3,0,1,-9,1,1,0,5,7.300141722651079,7.810091548972983,5.165585879891109,4,0,0,0,-9,0,-1011.419865858509,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,0,0,40,50,15,1,0,-9,0,5.558553167352215,5.558553167352215,0,0,0,0,0,0,0,1,1,0,0,5.765263702368157,0,0,59.43,58.05,7,1,0,0,12,2,1,348,0,0,0 +354,438,802,-9,-9,801,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-974.6331158128597,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.58,55.84,6,1,0,0,12,2,1,348,0,0,0 +354,439,803,-9,-9,801,2,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-964.3168496813594,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.03,58.11,6,1,0,0,12,2,1,277,0,0,0 +355,440,804,805,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,6.586682182399048,5.908522852262755,1,0,-9,51,0,0,80.30347062038078,0,0,0,73,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.322282245325286,0,0,59.47,44.13,7,1,0,0,11,4,1,672,0,0,0 +355,440,805,804,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,7.61963484363989,8.411125342871957,7.841852390040774,1,0,-9,51,0,0,-83.90065858998885,0,0,0,73,1,4,3,3,3,2019,4,2,10,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.365435651644328,7.997694389473752,0,0,50.71,52.35,6,1,0,0,11,4,1,672,0,0,0 +356,441,806,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-971.8575919832379,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,12,0,0,15,4,12,-9,0,0,0,1,0,0,41.35413012042744,0,0,0,1,1,0,0,0,0,0,30.01,20.17,2,1,0,1,11,1,1,423,0,0,0 +357,442,807,808,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,4,7.094366295663358,7.817412201729183,6.71077972979475,1,0,-9,48,0,0,-21.60223191358137,0,0,0,67,1,4,3,3,3,2019,2,1,9,0,8,8,15,1,0,4,0,13.11570230901881,13.11570230901881,0,0,0,0,0,0,0,1,1,0,0,6.880039904763631,0,0,54.2,57.49,6,1,0,0,2,4,1,970.5,0,0,0 +357,442,808,807,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,7.733201782235456,7.736668640589034,1,0,-9,48,0,0,47.45380802360452,0,0,0,67,2,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.746460964052872,7.664065331286658,0,0,49.91,58.02,6,1,0,0,2,4,1,970.5,0,0,0 +358,443,809,810,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,2,8.43327562073503,8.409202095198854,0,1,0,-9,34,0,0,-48.80382352501783,0,0,0,56,1,4,1,2,2,2019,1,1,14,2,48,45,15,1,2,1,0,11.52031250085402,11.52031250085402,0,0,0,0,0,0,0,1,1,0,.7843386435666486,0,0,0,36.09,37.91,5,1,0,0,5,5,1,1049.5,0,0,0 +358,443,810,809,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,4,9.192809612537383,9.317649094805496,0,1,0,-9,34,0,0,-53.75536284546261,0,0,0,56,2,2,1,2,1,2019,1,2,8,0,43,40,15,1,0,1,0,22.70077965044278,22.70077965044278,0,0,0,0,0,0,0,1,1,0,5.25503371215934,0,0,0,57.16,56.15,6,1,0,0,5,5,1,1049.5,0,0,0 +358,444,811,-9,809,810,3,1,1,30,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1104.146494892424,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,1,0,5,1,1,641,0,0,0 +359,445,812,-9,813,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1085.630905295105,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,2,0,1224,0,0,0 +359,445,813,-9,-9,-9,1,1,0,52,3,0,1,0,3,-9,2,1,0,2,6.759983530206745,6.741881916161084,0,4,0,0,0,-9,0,-1007.75700839315,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,16,30,15,1,8,-9,0,7.652066529083181,7.652066529083181,0,0,0,0,0,0,0,1,1,0,0,0,16.62693925660012,3,44,39,6,1,0,0,12,2,0,1224,0,0,0 +360,446,814,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-952.3371491323052,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.15,29.69,5,1,0,0,13,1,1,646,0,0,0 +361,447,815,816,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,4,8.695728749479896,8.649236110844857,6.647630678456038,1,0,-9,44,0,-1,-1.435704362951558,0,0,0,65,3,3,3,3,3,2019,2,2,7,0,25,25,15,1,0,3,0,30.57220554655519,30.57220554655519,0,0,0,0,0,0,0,1,1,0,0,6.859845045137329,8.501990533072918,1,54.79,55.86,6,1,0,0,7,5,1,835.5,0,0,0 +361,447,816,815,-9,-9,2,1,0,65,1,0,0,0,3,-9,6,3,0,3,0,5.617916749992015,5.885356465008138,1,0,-9,44,0,1,-121.0899742492202,-9,0,0,64,1,4,1,2,2,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.720683988430089,0,0,49,48,5,1,0,0,7,5,1,835.5,0,0,0 +362,448,817,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.339029306343406,8.520109093733184,0,3,0,0,0,-9,0,-1161.938734964636,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,39,42,15,1,0,-9,0,9.410715211836703,9.410715211836703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,8,4,0,789,0,0,0 +363,449,818,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,3,9.224243937414295,8.595068210650345,0,1,0,-9,1,-9,-18,89.42965470355274,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,2,10,0,50,0,15,1,0,-9,0,21.70049192813823,21.70049192813823,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,3,1,0,0,8,5,1,251,0,0,0 +364,450,819,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-971.5670170264123,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.72,23.3,7,1,0,0,12,1,0,1695,0,0,0 +365,451,820,821,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,2,9.079867329039923,9.164003670985545,0,2,0,-9,8,0,4,-11.31079544562214,0,0,0,46,1,4,1,2,3,2019,1,2,12,0,50,50,15,1,0,1,0,17.87784974034295,17.87784974034295,0,0,0,0,0,0,0,1,1,0,5.124426308198506,0,0,0,57.58,41.33,5,1,0,0,12,5,1,2650.666666666667,0,0,0 +365,451,821,820,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,4,7.908629907613567,8.025583645438362,0,2,0,-9,8,0,-4,22.42370171453089,0,0,0,50,2,2,1,2,2,2019,1,1,21,9,35,31,15,1,9,1,0,8.050188305589002,8.050188305589002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.84,60.5,4,1,0,0,12,5,1,2650.666666666667,0,0,0 +365,451,822,-9,821,820,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.597989121086,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,2650.666666666667,0,0,0 +366,452,823,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-968.7256614695427,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.01763489038292,3,43.34,30.37,5,1,0,0,1,1,0,364,0,0,0 +367,453,824,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,4,9.083551596158438,9.035053328946637,5.721573576357706,4,0,0,0,-9,0,-971.3231298060265,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,35,35,15,1,0,-9,0,25.34558449149253,25.34558449149253,0,0,0,0,0,0,0,1,1,0,7.702886063383244,0,0,0,48.87,58.55,5,1,0,0,12,5,1,181,0,0,0 +368,454,825,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,4,5.910594385773924,5.90548643102381,0,3,0,0,0,-9,0,-1012.772608902453,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,20,9,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.196425922404236,0,9.284682043781755,3,57.31,43.71,7,1,0,0,10,2,1,1568,0,0,0 +369,455,826,-9,-9,-9,1,1,1,93,3,0,0,0,3,-9,4,3,0,1,0,7.394161151935787,7.817470263956867,3,0,0,0,-9,0,-1144.124526774506,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,2.897600323580245,0,0,0,2.646008426506165,63.38958812403152,1,1,0,2.408243891000749,7.896668338600095,0,0,51.19,15.16,5,1,0,0,9,3,1,1688,0,0,0 +370,456,827,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-834.4234067977269,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.07,40.64,6,1,0,0,13,1,1,2360,0,0,0 +371,457,828,829,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,4,8.569881544233438,9.021718272409034,0,2,0,-9,17,0,4,224.5760893479456,0,0,0,47,2,4,1,2,2,2019,1,2,7,0,37,40,15,1,0,1,0,18.54318703554118,18.54318703554118,0,0,0,0,0,0,0,1,1,0,1.613050799694838,0,0,0,57.16,56.15,6,1,0,0,10,4,1,581.75,0,0,0 +371,457,829,828,-9,-9,2,1,0,47,1,0,2,0,2,-9,1,1,0,4,8.162097338811039,8.461782510434878,0,2,0,-9,17,0,-4,-6.691346325327767,0,0,0,51,2,4,1,2,2,2019,1,1,10,0,0,20,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.027129247806139,0,0,0,46.16,58.62,6,1,0,0,10,4,1,581.75,0,0,0 +371,457,830,-9,829,828,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1122.853566210579,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,10,4,1,581.75,0,0,0 +371,457,831,-9,829,828,4,1,0,11,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-919.0013569680393,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,1,0,0,10,4,1,581.75,0,0,0 +372,458,832,833,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,1,0,0,0,0,72,2,2,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,13,2,1,955,0,0,0 +372,458,833,832,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,-1,0,0,0,0,73,3,3,3,3,3,2019,4,1,26,11,0,0,15,4,11,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,42.67286783383549,3,35.75,39.27,6,1,0,0,13,2,1,955,0,0,0 +372,459,834,-9,833,832,3,1,1,43,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-934.2704594834843,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,13,2,1,601,0,0,0 +372,460,835,-9,833,832,5,1,1,38,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1031.106499235851,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,1,1,13,1,1,814,0,0,0 +372,461,836,-9,-9,-9,6,1,1,18,2,0,0,0,2,-9,11,3,0,5,0,0,0,3,0,0,0,-9,0,-1011.065418118557,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.33546644924234,0,0,0,49,62,1,1,0,0,13,1,1,154,0,0,0 +373,462,837,838,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,5,8.482376368552154,8.315975211979813,0,1,0,-9,10,0,4,34.25026970914756,0,0,0,35,2,4,1,2,1,2019,1,2,11,0,35,52,15,1,0,1,0,18.96193716229361,18.96193716229361,0,0,0,0,0,0,0,0,0,0,0,0,9.154198812267152,3,51.39,59.18,6,1,0,0,2,5,0,2033.5,0,0,0 +373,462,838,837,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,4,8.786398083525157,8.997833628445141,0,1,0,-9,10,0,-4,-99.46543103253723,0,0,1,39,1,5,1,2,-9,2019,1,1,11,0,46,50,15,1,0,1,0,17.83003696615979,17.83003696615979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.29,52.37,6,2,0,0,2,5,0,2033.5,0,0,0 +374,463,839,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,7.404534240275995,7.275405398402494,3,0,0,0,-9,0,-1022.66018284748,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.481866618463215,6.673629805148437,0,0,52.39,43.31,6,1,0,0,7,2,1,547,0,0,0 +374,464,840,-9,839,-9,2,1,1,51,2,0,0,0,1,-9,2,1,0,4,9.146861141176689,8.963891526212263,0,3,0,0,0,-9,0,-1071.896782007336,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,70,60,15,1,0,-9,1,12.32116742879684,12.32116742879684,0,0,0,0,0,0,0,1,1,0,2.56254422033248,0,0,0,54.79,55.86,2,1,0,0,7,5,1,340,0,0,0 +374,465,841,-9,839,-9,3,1,1,47,2,0,0,0,1,-9,2,1,0,4,7.190386176209108,7.837177085109678,6.754087689505876,3,0,0,0,-9,0,-934.6994913977501,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,50,60,15,1,0,-9,1,2.872525819762662,2.872525819762662,0,0,0,0,0,0,0,1,1,0,7.018543478300577,0,0,0,52.82,53.97,4,1,0,0,7,3,1,332,0,0,0 +375,466,842,843,-9,-9,1,1,0,86,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,66,0,1,70.36766226355155,0,0,0,85,2,3,3,3,3,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,1,2.751848711678631,46.94356580155662,6.065503854002865,0,0,42.77057660019286,1,1,0,0,0,0,0,47.55,33.8,6,1,0,0,6,2,1,1239,0,0,0 +375,466,843,842,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,3,0,5.70168375772981,5.716860373986822,1,0,-9,9,0,-1,-17.06214694730278,0,0,0,86,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,.2965090442213048,1.111099983140114,0,0,0,26.62781817035522,1,1,0,6.381002531628812,5.799793249030965,4.457737527092391,1,41.61,48.15,5,1,0,0,6,2,1,1239,0,0,0 +376,467,844,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,3.976767385335815,3.556754155302178,3,0,0,0,-9,0,-1029.84237581497,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,32,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.185969188604332,4.247116230386339,0,0,37.45,38.38,3,1,0,0,4,2,1,89,0,0,0 +377,468,845,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,7.322787201668779,7.123741569095734,3,0,0,0,-9,0,-1014.926391494494,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.466252017426537,0,0,57.16,56.15,6,1,0,0,9,3,1,164,0,0,0 +378,469,846,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,4,0,3.415007590482905,3.655321407368607,3,0,0,0,-9,0,-1099.20541585084,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.431229767618565,3.605646147045825,0,0,57.16,56.15,5,1,0,0,1,1,0,148,0,0,0 +379,470,847,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,3,9.670399706458921,9.756489225287849,0,3,0,-9,0,-9,0,-931.9442161744521,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,84,0,15,1,3,-9,0,18.74876822238161,18.74876822238161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.88,58.55,3,1,0,0,12,5,1,39,0,0,0 +380,471,848,-9,850,851,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-891.0349022478146,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.104609071897887,3,57.1,57.51,5,1,0,0,2,1,0,682.5,0,0,0 +380,471,849,-9,850,851,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.490762858857,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,682.5,0,0,0 +380,471,850,851,-9,-9,2,1,0,30,1,0,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,13,0,-13,0,0,0,1,43,2,1,1,-9,-9,2019,1,1,12,0,20,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.299807805984313,0,.9772202349179018,2,35.65,58.56,4,1,0,0,2,1,0,682.5,0,0,0 +380,471,851,850,-9,-9,1,1,1,43,1,0,2,0,2,-9,1,1,0,1,0,0,0,2,0,-9,13,0,13,0,0,0,0,30,2,4,1,-9,-9,2019,1,2,18,6,15,10,15,1,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.620971773268055,0,0,0,38.73,19.11,4,1,0,0,2,1,0,682.5,0,0,0 +381,472,852,-9,-9,-9,1,1,0,27,3,0,0,0,2,-9,2,1,0,3,8.445480046714378,8.418793513554144,0,3,0,0,0,-9,0,-921.9702196795935,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,3,38,38,15,1,3,-9,0,18.62650504474598,18.62650504474598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.61,48.69,6,1,0,0,10,5,1,1392,0,0,0 +382,473,853,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,8.221328777643421,7.90250178876946,3,0,0,0,-9,0,-1159.883307740292,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.612070022277719,8.254188245656348,0,0,46.08,57.2,3,1,0,0,5,4,1,276,0,0,0 +383,474,854,855,-9,-9,1,1,1,58,1,0,1,0,2,-9,2,1,0,4,8.857581104895685,8.618117044736923,0,2,0,-9,6,0,22,156.4948009661748,0,0,0,36,2,1,1,3,3,2019,1,2,6,0,38,41,15,1,0,1,0,17.86888206145584,17.86888206145584,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,6,4,1,959.3333333333334,0,0,0 +383,474,855,854,-9,-9,2,1,0,36,1,0,1,0,2,-9,1,1,0,1,7.373887025076707,6.798164425360151,0,2,0,-9,6,0,-22,-22.55454164205225,0,0,1,58,2,4,1,-9,-9,2019,1,1,19,6,10,12,15,1,6,1,0,17.75027055215799,17.75027055215799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.34,29.94,1,1,0,1,6,4,1,959.3333333333334,0,0,0 +383,474,856,-9,855,854,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.0541475826686,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,1,959.3333333333334,0,0,0 +384,475,857,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,5,8.768078855335968,8.269720769221923,7.297000519212514,3,0,0,0,-9,0,-1051.028563084684,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,40,15,1,0,-9,0,14.12090177097553,14.12090177097553,0,0,0,0,0,0,0,0,0,0,0,6.958586172575711,0,0,55.09,55.87,6,1,0,0,8,5,1,159,0,0,0 +384,476,858,-9,-9,-9,2,1,0,59,3,0,0,0,2,-9,2,1,0,2,7.353553631990642,7.64696911937898,6.436882485383888,3,0,0,0,-9,0,-1042.590910221501,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,30,27,15,1,11,-9,0,7.264145137678152,7.264145137678152,0,0,0,0,0,0,0,0,0,0,6.773368363464979,6.636557924955581,0,0,29.54,47.61,3,1,0,0,8,3,1,1232,0,0,0 +385,477,859,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-952.5173157108173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,55.83,6,1,0,0,13,1,0,1300,0,0,0 +386,478,860,861,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,4,0,7.58964461726809,7.480266955963864,1,0,-9,23,0,4,69.430940126473,0,0,0,54,2,4,3,-9,-9,2019,4,1,18,5,0,25,15,3,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.720238128150382,7.189758179857269,0,0,54.2,57.49,5,1,0,0,5,2,1,971,0,0,0 +386,478,861,860,-9,-9,1,1,1,54,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,23,0,-4,127.6608791376051,0,0,0,58,2,4,3,3,3,2019,4,2,14,2,0,47,15,4,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2.475496469426828,0,0,0,40.33,55.64,5,1,0,0,5,2,1,971,0,0,0 +387,479,862,867,-9,-9,1,1,1,44,1,0,4,0,3,-9,3,3,0,4,0,0,0,2,0,-9,19,0,8,0,0,0,0,36,3,2,3,3,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,3,1,0,8,1,0,288.5,0,0,0 +387,479,863,-9,867,862,3,1,0,16,2,0,4,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-864.1888634934958,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.68,47.24,6,3,0,0,8,1,0,288.5,0,0,0 +387,479,864,-9,867,862,6,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.627840430015,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,1,0,288.5,0,0,0 +387,479,865,-9,867,862,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.9646896609092,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,0,288.5,0,0,0 +387,479,866,-9,867,862,4,1,0,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.3659609115455,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,0,288.5,0,0,0 +387,479,867,862,-9,-9,2,1,0,36,1,0,4,0,3,-9,6,3,0,2,0,0,0,2,0,-9,6,0,-8,0,0,0,1,44,3,4,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.31,28.27,6,3,0,0,8,1,0,288.5,0,0,0 +388,480,868,871,-9,-9,2,1,1,28,1,0,2,0,2,-9,2,1,0,4,8.947999992807324,8.792330394838045,0,2,0,-9,6,0,1,-13.02058567340304,0,1,0,27,2,4,1,3,3,2019,1,1,7,0,49,45,15,1,0,1,0,15.4609015041647,15.4609015041647,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,1,0,0,11,4,1,516.75,0,0,0 +388,480,869,-9,871,868,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.1584439103719,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,516.75,0,0,0 +388,480,870,-9,871,868,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-812.5906284856237,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,4,1,516.75,0,0,0 +388,480,871,868,-9,-9,1,1,0,27,1,0,2,0,2,-9,2,1,0,4,7.930058786714717,7.615755969648809,0,2,0,-9,6,0,-1,-7.851463961131943,0,1,1,28,2,4,1,3,2,2019,1,2,8,0,37,37,15,1,0,1,0,7.766669915581882,7.766669915581882,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,6,1,0,0,11,4,1,516.75,0,0,0 +389,481,872,873,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,3,8.097553358867414,7.847863541111049,0,2,0,-9,20,0,-3,6.153478921383178,0,0,1,40,2,4,1,2,2,2019,1,2,7,0,24,15,15,1,0,1,0,13.0595972627558,13.0595972627558,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.65,55.59,6,1,0,0,1,4,1,883.6666666666666,0,0,0 +389,481,873,872,-9,-9,2,1,1,40,1,0,1,0,2,-9,2,1,0,4,8.539656417497202,8.119158089449142,0,2,0,-9,18,0,3,-23.47056134046455,0,0,0,37,2,3,1,2,2,2019,1,1,12,0,35,44,15,1,0,1,0,11.34794945771946,11.34794945771946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,5,1,0,0,1,4,1,883.6666666666666,0,0,0 +389,481,874,-9,872,873,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.646872875262,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,4,1,883.6666666666666,0,0,0 +390,482,875,876,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,4,9.105903731913251,9.24358423158893,0,1,0,-9,26,0,-6,-46.16314155180898,0,0,0,53,2,3,1,-9,-9,2019,1,2,7,0,45,45,15,1,0,1,0,17.74134804068698,17.74134804068698,0,0,0,0,0,0,0,0,0,0,4.836384962224633,0,0,0,57.16,56.15,6,1,0,0,8,5,1,541,0,0,0 +390,482,876,875,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.596144863691295,8.108584345956251,0,1,0,-9,24,0,6,30.84491237289422,0,0,0,47,1,4,1,2,2,2019,1,1,7,0,36,38,15,1,0,1,0,14.44074171125815,14.44074171125815,0,0,0,0,0,0,0,0,0,0,2.965868036964634,0,0,0,59.19,36.04,5,4,0,0,8,5,1,541,0,0,0 +390,483,877,-9,875,876,3,1,0,22,2,0,0,0,2,-9,3,3,0,4,8.286708364230673,7.987946510377338,0,3,0,0,0,-9,0,-976.8335826319035,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,25,10,8,31,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.077207366482939,0,0,0,22.77,67.73999999999999,5,2,1,0,8,4,1,549,0,0,0 +390,484,878,-9,875,876,4,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.856691292871635,7.721865027418478,0,3,0,0,0,-9,0,-995.9403160173479,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,25,25,15,1,0,-9,1,13.57571414608322,13.57571414608322,0,0,0,0,0,0,0,0,0,0,4.568508538036155,0,0,0,51.83,57.2,7,2,0,0,8,3,1,225,0,0,0 +391,485,879,880,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,5,9.203386963843059,9.286179239757177,7.405427554515806,1,0,-9,42,0,0,40.30845555838602,0,0,0,58,1,4,1,2,1,2019,1,1,7,0,40,40,15,1,0,1,0,25.33389540061366,25.33389540061366,0,0,0,0,0,0,0,0,0,0,0,7.901920032248024,0,0,57.06,57.76,6,1,0,0,2,5,1,601.5,0,0,0 +391,485,880,879,-9,-9,1,1,0,58,1,0,0,0,1,-9,1,1,0,4,7.860344452342576,7.524944283261285,0,1,0,-9,40,0,0,-44.52870523033056,0,0,0,58,1,5,1,1,-9,2019,1,2,10,0,4,12,15,1,0,1,0,67.22088761043918,67.22088761043918,0,0,0,0,0,0,0,0,0,0,1.617241830444417,0,2.601709639751387,3,54.77,55.87,6,1,0,0,2,5,1,601.5,0,0,0 +392,486,881,882,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,3,8.597433992420648,8.571343205405695,0,1,0,-9,7,0,-5,138.2549046418034,0,0,0,57,1,5,1,2,2,2019,1,1,12,2,40,42,15,1,2,1,0,17.43294326868454,17.43294326868454,0,0,0,0,0,0,0,0,0,0,6.794813162706691,0,4.014090369233578,3,49.29,54.59,6,1,0,0,6,4,1,151,0,0,0 +392,486,882,881,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,5,6.443813241940717,6.251486072400597,0,1,0,-9,7,0,5,-40.43006762954609,0,0,0,52,1,3,1,2,2,2019,1,2,13,2,40,50,15,1,2,1,0,1.805943580620911,1.805943580620911,0,0,0,0,0,0,0,0,0,0,3.987216874488607,0,0,0,44.91,59.07,6,1,0,0,6,4,1,151,0,0,0 +393,487,883,884,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,4,6.074741479258494,6.239914958162612,0,2,0,-9,6,0,-8,-34.71777495336897,0,0,0,56,2,4,1,2,2,2019,1,1,10,0,6,2,15,1,0,1,0,8.506840481934915,8.506840481934915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,6,1,0,0,4,5,1,1219.666666666667,0,0,0 +393,487,884,883,-9,-9,1,1,1,56,1,0,1,0,2,-9,2,1,0,4,9.109149287202181,9.327485922459259,6.122935530308351,2,0,-9,6,0,8,99.49895089788065,0,0,0,48,2,4,1,2,2,2019,1,2,12,1,43,43,15,1,1,1,0,24.4645864408833,24.4645864408833,0,0,0,0,0,0,0,0,0,0,6.429111974697314,6.45602729306782,0,0,46.39,60.99,6,1,0,0,4,5,1,1219.666666666667,0,0,0 +393,487,885,-9,883,884,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.5037536501,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,4,5,1,1219.666666666667,0,0,0 +394,488,886,-9,887,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-928.8804813984137,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,885.5,0,0,0 +394,488,887,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1014.911743573846,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,5,1,0,1,13,1,0,885.5,0,0,0 +395,489,888,889,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,60,0,-5,84.71178488497608,0,0,0,86,3,3,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,4.047372698663432,0,0,0,0,1,1,0,3.049502037836972,0,0,0,34.97,32.77,4,1,0,0,7,2,1,554,0,0,0 +395,489,889,888,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,3,0,7.725461726973053,7.540467320495352,1,0,-9,60,0,5,73.59413907893639,0,0,0,81,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.096581769181391,7.379621833420387,0,0,62.77,34.54,6,1,0,0,7,2,1,554,0,0,0 +396,490,890,891,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,4.869593922447525,5.03652538899508,1,0,-9,23,0,1,64.28779086393774,0,0,0,72,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.117125482326448,18.61104273765475,3,58.15,52.91,6,1,0,0,9,2,1,2299,0,0,0 +396,490,891,890,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,6.819381288465711,6.512267572416391,1,0,-9,23,0,-1,-61.45749752030757,0,0,0,73,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,79.73493756308336,0,0,0,0,1,1,0,7.275968964245333,6.749046810042731,0,0,55.93,49.95,6,1,0,0,9,2,1,2299,0,0,0 +397,491,892,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-996.2639382262615,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.53,41.24,5,3,0,0,2,1,0,354.5,0,0,0 +397,491,893,-9,892,-9,4,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-967.9651783386108,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,3,0,0,2,1,0,354.5,0,0,0 +397,492,894,-9,892,-9,2,1,0,26,2,0,1,0,1,-9,2,1,0,3,8.049682703929317,8.105631990828467,0,3,0,0,0,-9,0,-1063.406603817875,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,38,38,15,1,0,-9,1,10.99333344579397,10.99333344579397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,5,3,0,0,2,4,0,447,0,0,0 +397,493,895,-9,892,-9,3,1,1,22,2,0,1,0,1,-9,2,1,0,3,7.509918660702557,7.518189551852028,0,3,0,0,0,-9,0,-1069.95105646999,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,39,38,15,1,6,-9,1,6.292827105810185,6.292827105810185,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.32,58.46,5,3,0,0,2,3,0,171,0,0,0 +398,494,896,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1019.239415764275,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.33,59.49,6,1,0,0,10,1,0,328,0,0,0 +399,495,897,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,3,0,4.515680334787715,4.462447982220812,3,0,0,0,-9,0,-932.7953919094176,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,35,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.507432759434289,4.407986063537738,0,0,51,47,4,1,0,0,4,2,1,1024,0,0,0 +400,496,898,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,6.951007772753092,7.618102676766974,3,0,0,0,-9,0,-985.855917009561,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.499278080490409,7.455101836561616,0,0,50.34,45.67,6,1,0,0,9,2,1,529,0,0,0 +401,497,899,901,-9,-9,2,1,1,52,1,0,1,0,3,-9,1,1,0,4,7.990060990805292,7.946450153480107,0,2,0,-9,9,0,0,56.52718922478943,0,0,0,52,2,3,1,-9,-9,2019,1,1,12,0,72,0,15,1,0,1,0,5.033257320583813,5.033257320583813,0,0,0,0,0,0,0,1,1,0,0,0,.6132928607830108,2,51.24,58.84,6,1,0,0,1,3,1,1241.666666666667,0,0,0 +401,497,900,-9,901,899,4,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-941.4230058578215,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,1,3,1,1241.666666666667,0,0,0 +401,497,901,899,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,3,7.435433806143415,7.732696531623104,0,2,0,-9,9,0,0,-57.36449340644628,0,0,0,52,3,4,1,-9,3,2019,1,2,7,0,28,28,15,1,0,1,0,9.627158660290746,9.627158660290746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,1,3,1,1241.666666666667,0,0,0 +401,498,902,-9,901,899,3,1,1,19,2,0,1,0,2,1,11,3,0,4,7.397486319625669,7.262914367257602,0,3,0,0,0,-9,0,-1026.564208351267,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,41,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.6845498209559829,0,0,0,51.77,58.57,6,1,0,0,1,3,1,619,0,0,0 +402,499,903,904,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,10,0,-4,35.50544263438073,0,0,0,76,2,2,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,53.85,7,1,0,0,4,2,1,2986.5,0,0,0 +402,499,904,903,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,4.788424813577159,4.962592481122877,1,0,-9,10,0,4,59.09005830837701,-9,0,0,72,3,4,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.356004860105882,4.710322255302255,0,0,40.89,53.59,5,1,0,0,4,2,1,2986.5,0,0,0 +403,500,905,906,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,7.960872512653844,7.526067167850911,1,0,-9,47,0,1,-85.35983617361306,0,0,0,68,2,5,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.1940361289976987,7.898391271748696,0,0,60.29,52.11,2,1,0,0,5,4,1,963,0,0,0 +403,500,906,905,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,5,0,7.527132343124111,7.005120001334896,1,0,-9,47,0,-1,2.344816398543534,0,0,0,69,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.266624197706151,7.296733613058255,0,3,49.3,59.89,7,1,0,0,5,4,1,963,0,0,0 +404,501,907,-9,908,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1086.787957692914,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,2,0,549.5,0,0,0 +404,501,908,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,2,1,0,5,7.066751800621629,7.631696211207327,5.965196915745232,4,0,0,0,-9,0,-1068.585570246345,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,16,16,15,1,0,-9,0,6.015529595642962,6.015529595642962,0,0,0,0,0,0,0,1,1,0,6.013616053128655,0,0,0,54.1,59.11,6,1,0,0,10,2,0,549.5,0,0,0 +405,502,909,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1069.217121530934,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.95,54.36,3,1,0,0,13,1,0,439,0,0,0 +406,503,910,911,-9,-9,2,1,1,88,1,0,0,0,1,-9,4,3,0,2,0,7.025457183284725,7.215022128680877,1,0,-9,35,0,21,-8.897574786942997,0,0,0,67,1,5,1,-9,3,2019,3,1,12,0,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.696430349966223,6.960539123487922,0,0,50,35,6,1,0,0,11,3,1,473.5,0,0,0 +406,503,911,910,-9,-9,1,1,0,67,1,0,0,0,1,-9,2,1,0,5,7.589384405108584,7.755166984477333,5.656518204401465,1,0,-9,35,0,-21,-120.4733143862208,0,0,0,88,1,2,3,3,3,2019,2,2,11,0,23,38,15,1,0,4,0,11.28070834311829,11.28070834311829,0,0,0,0,0,0,0,1,1,0,2.473153525539368,6.046772275500049,0,0,54.1,59.11,6,1,0,0,11,3,1,473.5,0,0,0 +407,504,912,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,2,1,0,3,7.888622498708746,8.023962817968895,0,3,0,0,0,-9,0,-1015.832392883288,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,47,47,15,1,1,-9,0,6.248684856589139,6.248684856589139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,5,3,1,272,0,0,0 +408,505,913,914,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,4,7.488057917284618,7.194100114288439,0,1,0,-9,41,0,-3,-70.52833870327731,0,0,0,65,2,4,1,3,3,2019,1,2,6,0,28,25,15,1,0,1,0,7.075460621845918,7.075460621845918,0,0,0,0,0,0,0,0,0,0,2.360754308073284,0,0,0,57.16,56.15,6,1,0,0,2,5,1,834,0,0,0 +408,505,914,913,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,4,8.801826382566052,8.962970772906132,0,1,0,-9,41,0,3,-17.36546550979753,0,0,0,62,3,4,1,3,2,2019,1,1,6,0,48,50,15,1,0,1,0,19.86679484069344,19.86679484069344,0,0,0,0,0,0,0,0,0,0,4.705968282502245,0,0,0,62.49,55.09,6,1,0,0,2,5,1,834,0,0,0 +408,506,915,-9,913,914,3,1,1,33,2,0,0,0,2,-9,2,1,0,4,7.881142996657144,7.590396450084278,0,3,0,0,0,-9,0,-1056.239783887503,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,44,44,15,1,0,-9,1,6.088710742400001,6.088710742400001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,2,3,1,745,0,0,0 +409,507,916,918,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,7.879808714143437,7.949718078406142,0,2,0,-9,21,0,-4,-24.28759607155041,0,0,0,49,1,1,3,3,3,2019,2,2,9,0,40,39,15,1,0,3,0,8.333501729411157,8.333501729411157,0,0,0,0,0,0,0,1,1,0,0,0,9.744163720246409,1,49.86,55.31,5,3,0,0,2,2,1,373.6666666666667,0,0,0 +409,507,917,-9,918,916,4,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-912.5833722326308,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.351035889614248,3,57.16,56.15,6,3,0,0,2,2,1,373.6666666666667,0,0,0 +409,507,918,916,-9,-9,2,1,0,49,1,0,2,0,1,-9,6,3,0,1,0,0,0,2,0,-9,21,0,4,168.6399966481781,0,0,0,45,2,4,1,3,2,2019,3,1,19,0,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.86,25.7,4,3,0,1,2,2,1,373.6666666666667,0,0,0 +409,508,919,-9,918,916,3,1,0,18,2,0,2,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1036.717634548087,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.825617551912523,3,56.96,32.58,5,3,0,0,2,2,1,370,0,0,0 +410,509,920,921,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,6.702165207523786,6.851416066051213,0,1,0,-9,41,0,0,143.639562334488,0,0,0,60,2,4,1,3,3,2019,1,1,16,3,18,18,15,1,3,1,0,4.642624328446559,4.642624328446559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.02,38.46,5,1,0,0,7,5,1,1079.5,0,0,0 +410,509,921,920,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,4,9.666089811732341,9.554429303292302,5.030032649552335,1,0,-9,41,0,0,73.96153066920537,0,0,0,60,2,3,1,3,3,2019,1,2,16,4,60,64,15,1,4,1,0,29.91058037568636,29.91058037568636,0,0,0,0,0,0,0,0,0,0,4.73698942919941,4.661483478636148,0,0,55.2,43.52,4,1,0,0,7,5,1,1079.5,0,0,0 +410,510,922,-9,920,921,3,1,0,35,2,0,0,0,2,-9,2,1,0,2,7.983127277959226,8.068969227674769,0,3,0,0,0,-9,0,-983.7309722116785,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,39,43,15,1,3,-9,1,8.378729017614415,8.378729017614415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,41,4,1,0,1,7,4,1,456,0,0,0 +411,511,923,-9,-9,-9,1,1,0,56,3,0,1,0,2,-9,1,1,0,3,7.925719266468524,8.495708644371962,6.555209950446439,4,0,-9,0,1,0,-947.2584070647862,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,40,38,15,1,0,-9,0,7.858716582784361,7.858716582784361,0,0,0,0,0,0,0,0,0,0,7.501389163687346,6.670752339076974,0,0,62.66,52.4,5,1,0,0,11,4,1,3830,0,0,0 +411,512,924,-9,923,-9,2,1,0,20,2,0,1,0,2,-9,2,1,0,3,7.563916304239524,7.176129585361895,0,3,0,0,0,-9,0,-987.4420924854636,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,1,40,15,1,0,-9,1,208.6465254446802,208.6465254446802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,4,1,0,0,11,3,1,94,0,0,0 +411,513,925,-9,923,-9,3,1,1,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-884.7362513178265,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,7,1,0,1,11,4,1,419,0,0,0 +412,514,926,927,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.499531637901796,7.485654343347757,0,1,0,-9,25,0,-12,-28.86058521974639,0,0,0,62,1,3,1,1,2,2019,1,1,22,8,21,20,15,1,8,1,0,10.5576358894839,10.5576358894839,0,0,0,0,0,0,0,0,0,0,2.888705788773477,0,0,0,29.72,52.59,3,1,0,0,5,4,1,560,0,0,0 +412,514,927,926,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,3,8.0118025768737,7.802221456176539,5.485834493107586,1,0,-9,25,0,12,21.44544710726801,0,0,0,50,2,3,1,3,2,2019,1,2,15,3,37,38,15,1,3,1,0,9.225239807109695,9.225239807109695,0,0,0,0,0,0,0,0,0,0,0,6.122427943701843,0,0,41.21,45.8,3,1,0,0,5,4,1,560,0,0,0 +413,515,928,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,4,8.634687210385577,8.668961455359499,0,3,0,0,0,-9,0,-1051.760226310747,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,46,40,15,1,1,-9,0,13.43249077006771,13.43249077006771,0,0,0,0,0,0,0,0,0,0,4.668741833268298,0,0,0,57.16,56.15,6,1,0,0,2,5,1,597,0,0,0 +414,516,929,930,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,10,0,3,6.537406987120344,0,0,0,58,3,2,1,3,3,2019,1,2,6,0,0,29,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,7,1,0,0,5,3,1,269.5,0,0,0 +414,516,930,929,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,2,7.73445762717061,7.628112649021004,0,1,0,-9,10,0,-3,57.81572788686696,0,0,0,61,2,3,1,2,3,2019,1,1,6,0,35,36,15,1,0,1,0,9.403840157924275,9.403840157924275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.2,35.43,6,1,0,0,5,3,1,269.5,0,0,0 +415,517,931,932,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,4,8.9786325452987,9.104063776578148,0,1,0,1,1,-9,-4,103.7720893667378,0,1,0,30,1,3,1,2,1,2019,1,2,7,0,35,35,15,1,0,1,0,22.43315771333443,22.43315771333443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,56.13,7,1,0,0,7,5,1,310,0,0,0 +415,517,932,931,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,3,8.113860857900052,8.224395483865372,0,1,0,-9,1,-9,4,-26.57432947983648,-9,0,1,26,2,4,1,-9,-9,2019,1,1,26,12,37,0,15,1,12,1,0,9.362008848350156,9.362008848350156,0,0,0,0,0,0,0,0,0,0,0,0,0,3,35.84,53.74,5,1,0,0,7,5,1,310,0,0,0 +416,518,933,-9,-9,-9,1,1,0,89,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-968.1679235508257,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,6.282824601337452,0,27.20491726726581,1,1,0,0,0,0,0,53,44,6,1,0,0,10,1,0,285,0,0,0 +417,519,934,935,-9,-9,1,1,0,30,1,0,0,0,3,-9,1,1,0,4,6.964618801068064,6.934217266693112,0,1,0,-9,7,0,0,-4.615674632075849,0,0,1,30,1,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,3.173194244090405,3.173194244090405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,6,1,0,0,7,5,1,621,0,0,0 +417,519,935,934,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,3,9.825470411270746,9.347899391590676,0,1,0,-9,7,0,0,58.10469533139712,0,0,0,30,3,4,1,-9,-9,2019,1,1,16,4,40,40,15,1,4,1,0,31.12584671902847,31.12584671902847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,5,2,0,0,7,5,1,621,0,0,0 +418,520,936,937,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,1,0,5.692908657702633,6.227649713305896,1,0,-9,7,0,15,-133.6927357453823,0,0,0,52,2,2,1,3,3,2019,3,2,14,3,0,0,15,4,3,1,0,0,0,1,0,20.62709099597649,0,0,0,0,1,1,0,6.454053709762848,5.977182585495407,0,0,22.71,24.86,5,1,0,0,5,5,1,776,0,0,0 +418,520,937,936,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,2,9.040292100317208,8.740832077196572,0,1,0,-9,7,0,-15,-47.34644362658656,0,0,0,67,2,1,3,3,3,2019,2,1,8,1,38,38,15,1,1,4,0,22.1520865402253,22.1520865402253,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52.83,49.11,4,1,0,0,5,5,1,776,0,0,0 +419,521,938,939,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,3,8.363893442633053,7.944378452253107,0,1,0,-9,38,0,2,-41.22701406852296,0,0,0,56,2,4,1,-9,-9,2019,1,2,9,0,42,40,15,1,0,1,0,10.04371626239556,10.04371626239556,0,0,0,0,0,0,0,0,0,0,4.366093111077523,0,0,0,54.36,35.72,6,1,0,0,10,4,1,1437.5,0,0,0 +419,521,939,938,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.615860592921186,7.928018342561845,0,1,0,-9,38,0,-2,65.44229349004314,0,0,0,58,3,3,1,-9,-9,2019,1,1,8,1,23,26,15,1,1,1,0,8.682281363106625,8.682281363106625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.02,44.8,6,1,0,0,10,4,1,1437.5,0,0,0 +420,522,940,941,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.789082886495343,8.824016086464336,0,1,0,-9,28,0,8,-91.1835148171341,0,0,0,56,2,4,3,3,3,2019,2,1,8,0,30,35,15,1,0,3,0,21.64376545727093,21.64376545727093,0,0,0,0,0,0,0,0,0,0,0,0,13.39668067059467,1,54.2,57.49,5,1,0,0,7,4,1,213,0,0,0 +420,522,941,940,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,28,0,-8,-28.78759134827389,0,0,0,64,2,4,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.020868613049904,0,0,0,52,53,6,1,0,0,7,4,1,213,0,0,0 +421,523,942,943,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,5,8.073296995795786,7.615944055689027,0,1,0,-9,31,0,0,50.07877846504112,0,0,0,50,1,3,1,3,3,2019,1,2,6,0,36,24,15,1,0,1,0,7.885662885928161,7.885662885928161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,7,1,0,0,10,4,1,927,0,0,0 +421,523,943,942,-9,-9,2,1,1,50,1,0,0,0,1,-9,1,1,0,3,8.276208215545431,8.497156273765675,0,1,0,-9,31,0,0,5.03929542187133,0,0,0,50,2,5,1,3,3,2019,1,1,7,0,60,60,15,1,0,1,0,6.045288330345244,6.045288330345244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,0,0,10,4,1,927,0,0,0 +421,524,944,-9,942,943,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,8.317312670588747,8.393426442862419,0,3,0,0,0,-9,0,-1057.930829135655,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,1,38,39,15,1,1,-9,1,12.39683350708158,12.39683350708158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.4,58.34,6,1,0,1,10,4,1,1484,0,0,0 +422,525,945,946,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,6.841370350389178,6.635613842899667,1,0,-9,47,0,-2,-66.37064985606571,0,0,0,70,1,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.951124256736683,6.70943708631178,.196848023542608,3,48.87,58.55,6,1,0,0,4,4,1,421.5,0,0,0 +422,525,946,945,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.243542958390737,8.193593165469142,1,0,-9,47,0,2,19.80931384283907,0,0,0,68,1,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.316949834698391,8.060600003496324,0,3,51.94,55.88,6,1,0,0,4,4,1,421.5,0,0,0 +423,526,947,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,2,1,0,2,7.525143204059904,7.723942626444492,0,3,0,0,0,-9,0,-971.243548040911,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,35,32,15,1,2,-9,0,6.883335168389993,6.883335168389993,0,0,0,0,0,0,0,0,0,0,0,0,13.30860000066024,3,40.79,35.63,4,3,0,0,6,3,1,775,0,0,0 +423,527,948,-9,947,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,4,8.155966480086095,8.348719682521844,0,3,0,0,0,-9,0,-901.3948352258773,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,50,38,15,1,3,-9,1,7.57143009783753,7.57143009783753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.92,59.79,5,3,0,0,6,4,1,5094,0,0,0 +423,528,949,-9,947,-9,3,1,0,21,2,0,0,0,1,1,2,1,0,4,7.913047649595446,7.544445616946155,0,3,0,0,0,-9,0,-1018.098248334142,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,37,0,15,1,0,-9,1,7.958392695551201,7.958392695551201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,3,0,0,6,3,1,176,0,0,0 +424,529,950,952,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,3,8.146802103078482,8.537090541184911,0,2,0,-9,7,0,-4,-16.89232891866203,0,0,0,44,2,4,1,3,2,2019,1,2,12,0,44,37,15,1,0,1,0,11.71729556932512,11.71729556932512,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,13,4,1,851.25,0,0,0 +424,529,951,-9,952,950,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-902.4543970239529,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,851.25,0,0,0 +424,529,952,950,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.050062154638345,8.252867728410701,0,2,0,-9,7,0,4,-72.41262284325906,0,0,1,40,2,3,1,3,3,2019,1,1,10,0,25,34,15,1,1,1,0,15.40950737452073,15.40950737452073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,13,4,1,851.25,0,0,0 +424,529,953,-9,952,950,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-940.7505338303298,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,13,4,1,851.25,0,0,0 +425,530,954,955,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,3.632775783283242,3.875739715881509,1,0,-9,55,0,-2,6.126597921428676,0,0,0,78,3,4,3,3,-9,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.598254900769284,3.903335144543854,0,0,43.11,43.42,5,1,0,0,4,2,1,401.5,0,0,0 +425,530,955,954,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,7.373960476942747,7.654791661711605,1,0,-9,55,0,2,-106.1822012552304,0,0,0,76,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.404888164191644,0,0,48.87,58.55,5,1,0,0,4,2,1,401.5,0,0,0 +425,531,956,-9,954,955,3,1,1,50,2,0,0,0,2,-9,2,1,0,3,8.193811235545704,8.205536976417321,0,3,0,0,0,-9,0,-831.9525578262997,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,40,40,15,1,0,-9,1,10.98665092024935,10.98665092024935,0,0,0,0,0,0,0,1,1,0,5.248709887390879,0,0,0,54.37,54.8,6,1,0,0,4,4,1,417,0,0,0 +426,532,957,958,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,4,0,7.905267417395621,7.868458939312716,1,0,-9,50,0,6,-24.08816089146871,0,0,0,73,2,3,3,3,2,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,1,0,10.00277251489177,0,0,0,0,1,1,0,1.806927935952351,7.986829089229365,0,0,48.65,37.21,5,1,0,0,8,4,1,654,0,0,0 +426,532,958,957,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,8.541923545223476,7.925464858066007,1,0,-9,47,0,-6,-150.951469845574,0,0,0,79,3,4,3,2,2,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.96290726366614,8.1991209972854,35.59381662817162,3,47.37,46.26,6,1,0,0,8,4,1,654,0,0,0 +427,533,959,960,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,43,0,3,-.8619242459345209,0,0,0,64,2,5,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.431574373428961,0,7.923881550105903,3,57.33,53.46,6,1,0,0,2,3,1,1467,0,0,0 +427,533,960,959,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,5,7.631215199072916,7.885935017891564,3.940981423245809,1,0,-9,43,0,-3,-14.22216177615949,0,0,0,67,2,3,3,3,2,2019,2,1,7,0,24,32,15,1,0,4,0,12.97184553891805,12.97184553891805,0,0,0,0,0,0,0,1,1,0,5.983159870051492,4.284817559436793,0,0,57.06,57.76,6,1,0,0,2,3,1,1467,0,0,0 +428,534,961,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,3,8.337656891257595,8.075899990090043,0,3,0,0,0,-9,0,-969.668208740356,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,35,35,15,1,0,-9,0,10.82176982133025,10.82176982133025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.23,42.9,4,1,0,1,7,4,0,1306,0,0,0 +428,535,962,-9,961,-9,2,1,1,21,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-921.3511125677359,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,3,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,54.53,6,1,0,0,7,1,0,358,0,0,0 +429,536,963,964,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,9.031781806769024,9.249203853064657,0,1,0,-9,8,0,4,-9.512371769394537,0,0,0,48,1,5,1,-9,-9,2019,1,1,9,0,43,38,15,1,0,1,0,23.38767724864396,23.38767724864396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.17,50.61,6,1,0,0,12,5,1,541,0,0,0 +429,536,964,963,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,5,8.467184115611637,8.248842885006693,0,1,0,-9,8,0,-4,-13.96965950896004,0,0,0,52,2,4,1,-9,-9,2019,1,2,12,1,40,40,15,1,1,1,0,10.38334748929132,10.38334748929132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,12,5,1,541,0,0,0 +430,537,965,966,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,7.960648281041045,7.438768002870526,1,0,-9,39,0,1,50.27367358658235,0,0,0,60,1,5,3,2,1,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.72358671502137,7.785478280975977,0,3,30.87,65.23999999999999,6,1,0,0,2,5,1,444.5,0,0,0 +430,537,966,965,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,5,0,8.825366208563214,8.847092557740664,1,0,-9,39,0,-1,24.85741763544443,0,0,0,61,1,4,3,2,1,2019,4,2,11,0,0,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.790993094960307,8.592982703811886,0,3,51.67,60.18,6,1,0,0,2,5,1,444.5,0,0,0 +431,538,967,968,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-5,-154.0288076920428,0,0,0,68,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.966187484552767,0,0,0,57.16,56.15,6,1,0,0,12,2,1,546.5,0,0,0 +431,538,968,967,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.059672339879913,7.288421450801429,1,0,-9,7,0,5,-73.71259800814786,0,0,0,63,3,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.337609723782737,7.224439244089472,0,0,52.87,40.33,6,1,0,0,12,2,1,546.5,0,0,0 +432,539,969,970,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,7.495748506433407,7.254087762387441,0,1,0,-9,8,0,0,-73.23214971959894,0,0,0,55,1,4,1,3,2,2019,1,2,10,0,8,10,15,1,0,1,0,28.27837169805684,28.27837169805684,0,0,0,0,0,0,0,0,0,0,.9026573229076866,0,0,0,50.4,55.04,7,1,0,0,1,4,1,417.5,0,0,0 +432,539,970,969,-9,-9,2,1,1,55,1,0,0,0,1,-9,1,1,0,4,8.488352064993478,8.351183571465404,0,1,0,-9,8,0,0,1.522708259201319,0,0,0,55,1,4,1,2,2,2019,1,1,8,0,25,12,15,1,0,1,0,19.93452636914934,19.93452636914934,0,0,0,0,0,0,0,0,0,0,4.426138250996041,0,0,0,48.53,58.91,2,1,0,0,1,4,1,417.5,0,0,0 +433,540,971,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,2,8.324707250987057,8.363917508559382,5.030620162025695,3,0,0,0,-9,0,-917.1721662131739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,37,48,15,1,6,-9,0,11.19125737832969,11.19125737832969,0,0,0,0,0,0,0,1,1,0,1.258991525085188,5.585272869043415,0,0,51.25,48.45,5,1,0,0,10,4,0,972,0,0,0 +433,541,972,-9,971,-9,2,1,0,26,2,0,0,0,1,-9,2,1,0,1,8.0841029209552,8.098945576190864,0,3,0,0,0,-9,0,-858.0430769256894,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,29,10,41,44,15,1,10,-9,1,9.574271686295427,9.574271686295427,0,0,0,0,0,0,0,1,1,0,1.761991889481836,0,0,0,21.87,32.5,3,1,0,0,10,4,0,456,0,0,0 +433,542,973,-9,971,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,5,7.812144863893012,7.793812043960361,0,3,0,0,0,-9,0,-1066.979551654642,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,40,37,15,1,4,-9,1,7.55998409598004,7.55998409598004,0,0,0,0,0,0,0,1,1,0,.8607391900214765,0,0,0,30.96,66.95,5,1,0,0,10,3,0,476,0,0,0 +434,543,974,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1039.220121338465,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,17.47,4,3,0,0,12,1,0,991,0,0,0 +435,544,975,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-931.9945850009223,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,48.18,3,1,0,0,10,1,0,750,0,0,0 +436,545,976,-9,-9,-9,1,1,1,52,3,0,1,0,1,-9,2,1,0,4,9.282245326762901,9.082529552592817,0,4,0,0,0,-9,0,-1087.824867450543,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,50,0,15,1,1,-9,0,22.68940688071995,22.68940688071995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,9,5,1,609,0,0,0 +437,546,977,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1102.042194765239,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,1,9.063210061881147,0,0,0,0,74.06860541127044,1,1,0,0,0,0,0,51.48,18.5,5,1,0,0,9,1,0,668,0,0,0 +438,547,978,-9,981,-9,2,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1150.012782039947,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,2,0,0,5,3,1,810.25,0,0,0 +438,547,979,-9,981,-9,3,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1103.604618246663,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,7,4,0,1,5,3,1,810.25,0,0,0 +438,547,980,-9,981,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-887.4651575634391,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,2,0,0,5,3,1,810.25,0,0,0 +438,547,981,-9,-9,-9,1,1,0,41,2,0,3,0,1,-9,2,1,0,5,8.513557898863391,8.467323026651732,0,4,0,0,0,-9,0,-1001.631249757096,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,37,37,15,1,1,-9,0,17.34404563745122,17.34404563745122,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.77,60.16,6,2,0,0,5,3,1,810.25,0,0,0 +439,548,982,983,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,3,8.867776041724561,8.591630527796703,0,1,0,-9,3,0,6,-22.23195522706336,0,0,1,35,1,4,1,1,1,2019,1,2,23,9,60,60,15,1,9,1,0,12.89381609862551,12.89381609862551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,60.95,2,1,0,0,4,5,1,655.5,0,0,0 +439,548,983,982,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,4,8.044162356103591,8.000147009890959,0,1,0,-9,3,0,-6,10.67161329440334,0,0,0,41,1,3,1,-9,-9,2019,1,1,12,1,37,37,15,1,1,1,0,9.496180895575471,9.496180895575471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.39,66.76000000000001,6,1,0,0,4,5,1,655.5,0,0,0 +440,549,984,985,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,6.874217872350527,7.073630440380723,0,2,0,-9,18,0,-6,179.9072924514865,0,0,1,50,3,4,1,-9,-9,2019,1,2,14,3,22,22,15,1,3,1,0,6.570829026608258,6.570829026608258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.53,56.97,4,1,0,0,5,3,1,600.6666666666666,0,0,0 +440,549,985,984,-9,-9,2,1,1,50,1,0,2,0,3,-9,2,1,0,4,7.912272026141744,7.829743229041664,0,2,0,-9,18,0,6,148.3561997067838,0,0,0,44,2,4,1,2,2,2019,1,1,17,7,40,44,15,1,7,1,0,9.594286782379223,9.594286782379223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,55.94,5,1,0,0,5,3,1,600.6666666666666,0,0,0 +440,549,986,-9,984,985,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1120.550837667717,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,600.6666666666666,0,0,0 +441,550,987,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,3,7.648368534159002,7.793473443823187,0,3,0,0,0,-9,0,-956.1386501443573,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,39,39,15,1,3,-9,0,10.21126374750027,10.21126374750027,0,0,0,0,0,0,0,1,1,0,4.655388698886497,0,0,0,38.51,59.43,2,1,0,0,4,3,0,348,0,0,0 +442,551,988,989,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.096983282128146,5.748332522513777,1,0,-9,50,0,-7,-53.08919093126686,0,0,0,77,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.631558621926516,5.465525035092621,0,0,48.07,43.91,6,1,0,0,7,3,1,478.5,0,0,0 +442,551,989,988,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.476460729538516,7.774214522007504,1,0,-9,50,0,7,-78.77603557841591,0,0,0,70,2,4,3,2,2,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.80175060510483,7.589837259960972,0,0,55.37,40.83,6,1,0,0,7,3,1,478.5,0,0,0 +443,552,990,991,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-4,-43.65022127756836,0,0,0,79,2,4,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,1.547977573692566,0,0,0,0,1,1,0,.4378531787270618,0,0,0,51.91,32.35,5,1,0,0,10,2,1,352.5,0,0,0 +443,552,991,990,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,7.261011282104105,7.549039749777411,1,0,-9,9,0,4,120.4753012992806,0,0,0,75,3,2,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3704009067421263,7.258184694671165,12.03131341668338,1,51.77,58.57,6,1,0,0,10,2,1,352.5,0,0,0 +444,553,992,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,5,9.209176188709932,8.978195517860266,0,3,0,0,0,-9,0,-1074.439613905749,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,55,40,15,1,0,-9,0,17.86105331088862,17.86105331088862,0,0,0,0,0,0,0,1,1,0,4.888016159715154,0,0,0,57.06,57.76,6,1,0,0,10,5,1,2969,0,0,0 +445,554,993,994,-9,-9,2,1,0,48,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-19,-13.56655752435249,0,0,0,67,1,3,3,-9,-9,2019,4,1,18,6,0,0,15,3,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.056395354047675,0,0,1,45.53,35.77,6,3,0,1,8,1,0,539.3333333333334,0,0,0 +445,554,994,993,-9,-9,1,1,1,67,1,0,1,0,1,-9,4,3,0,3,0,5.019343298206827,5.135873156263529,2,0,-9,18,0,19,97.47320022975131,0,0,0,48,2,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121159387660046,0,0,0,46.65,52.63,5,3,0,0,8,1,0,539.3333333333334,0,0,0 +445,554,995,-9,993,994,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.469697079671,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,1,0,539.3333333333334,0,0,0 +446,555,996,-9,999,997,3,1,0,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.496337977279,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,7,4,1,600.5,0,0,0 +446,555,997,999,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,2,8.597911065615447,8.478565238601947,0,2,0,-9,7,0,1,148.9253443601478,0,0,0,44,2,4,1,3,3,2019,1,2,13,1,40,40,15,1,1,1,0,15.35806489736868,15.35806489736868,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.89,55.12,4,1,0,0,7,4,1,600.5,0,0,0 +446,555,998,-9,999,997,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.9715916230106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,600.5,0,0,0 +446,555,999,997,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.709594337104017,8.584905362790176,0,2,0,-9,7,0,-1,-43.53381276423242,0,0,1,45,2,2,1,-9,-9,2019,1,1,10,0,40,38,15,1,1,1,0,14.64717496284659,14.64717496284659,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,7,4,1,600.5,0,0,0 +447,556,1000,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1033.635860736034,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,42.84006967572201,0,1,1,0,0,0,0,0,34.2,22.68,3,1,0,1,12,1,0,1046,0,0,0 +448,557,1001,1002,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,5.832218594985758,5.633748616992966,1,0,-9,55,0,1,13.35645930703096,0,0,0,73,3,3,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.448803294479593,5.872285242990884,0,0,50.23,52.59,4,1,0,0,9,3,1,890.5,0,0,0 +448,557,1002,1001,-9,-9,2,1,0,73,1,0,0,0,3,-9,2,1,0,3,7.540384893933555,7.10332728952129,0,1,0,-9,55,0,-1,44.28680328259042,0,0,0,74,2,3,3,2,3,2019,2,1,12,1,21,21,15,1,1,4,0,10.26784127696473,10.26784127696473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,4,1,0,0,9,3,1,890.5,0,0,0 +449,558,1003,1004,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,3,8.401380886118606,8.167679027572666,0,2,0,-9,3,0,4,-137.1337291202432,0,0,0,32,1,3,1,-9,-9,2019,1,1,9,0,46,48,15,1,0,1,0,13.42158011243901,13.42158011243901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.74,48.98,6,1,0,0,13,5,1,666.3333333333334,0,0,0 +449,558,1004,1003,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,3,8.525180681351435,8.499262971454939,0,2,0,-9,3,0,-4,-43.02839510914564,0,0,1,36,2,3,1,3,3,2019,1,2,10,1,37,37,15,1,1,1,0,15.06951706693258,15.06951706693258,0,0,0,0,0,0,0,1,1,0,5.213446160632008,0,0,0,60.89,42.24,6,1,0,0,13,5,1,666.3333333333334,0,0,0 +449,558,1005,-9,1004,1003,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.6424783365171,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,666.3333333333334,0,0,0 +450,559,1006,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,1,1,0,2,9.389818356567202,8.864453588020261,0,3,0,0,0,-9,0,-985.8204208691402,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,70,50,15,1,0,-9,0,17.74743551723261,17.74743551723261,0,0,0,0,0,0,0,0,0,0,.6208742234814659,0,0,0,52.09,39.82,5,1,0,0,7,5,1,1099,0,0,0 +451,560,1007,1008,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,3,8.471341526073214,8.57439416616816,0,1,0,-9,31,0,1,77.06468284799155,0,0,0,58,2,3,1,3,3,2019,1,2,8,0,70,60,15,1,0,1,0,7.362571587139273,7.362571587139273,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,50.26,6,1,0,0,8,4,1,527,0,0,0 +451,560,1008,1007,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,3,0,6.8323434950116,7.004802317331518,1,0,-9,31,0,-1,57.61294938034383,0,0,0,59,1,3,1,2,2,2019,1,1,13,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.754980666748361,0,0,3,61.4,19.08,5,3,0,0,8,4,1,527,0,0,0 +451,561,1009,-9,1008,1007,3,1,1,22,2,0,0,0,1,1,2,1,0,4,8.566931604807689,8.718657418369654,0,3,0,0,0,-9,0,-965.2407053758387,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,0,15,1,0,-9,1,16.42386162961171,16.42386162961171,0,0,0,0,0,0,0,1,1,0,8.056570952696518,0,0,0,52.62,54.33,6,3,0,0,8,4,1,402,0,0,0 +452,562,1010,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-922.2805095454303,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,12,32,40,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.95,41.21,3,1,0,0,2,1,1,266,0,0,0 +453,563,1011,1013,-9,-9,1,1,0,39,1,1,2,0,1,-9,2,1,0,4,6.869446088122778,6.88769847162244,0,2,0,-9,7,0,0,-53.31486646271874,0,0,1,39,1,3,1,1,1,2019,1,2,15,6,25,24,15,1,6,1,0,4.781433427685016,4.781433427685016,0,0,0,0,0,0,0,0,0,0,5.213758683643423,0,0,0,38.34,62.12,6,1,0,0,7,5,1,705.75,0,0,0 +453,563,1012,-9,1011,1013,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.218562817798,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,7,5,1,705.75,0,0,0 +453,563,1013,1011,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,3,9.197416139253264,9.131695988424042,0,2,0,-9,7,0,0,50.2530171306919,0,0,0,39,1,4,1,-9,-9,2019,1,1,11,0,40,38,15,1,0,1,0,29.6488644205509,29.6488644205509,0,0,0,0,0,0,0,0,0,0,4.481065597750407,0,0,0,52.4,52.91,6,1,0,0,7,5,1,705.75,0,0,0 +453,563,1014,-9,1011,1013,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.759454244157,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,7,5,1,705.75,0,0,0 +454,564,1015,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,3,9.325096434619413,9.168232462396238,0,3,0,0,0,-9,0,-1120.081780025575,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,53,65,15,1,1,-9,0,22.46260814184526,22.46260814184526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,53.23,6,1,0,0,9,5,1,310,0,0,0 +455,565,1016,-9,1018,1019,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1071.744810178158,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,5,1,295.5,0,0,0 +455,565,1017,-9,1018,1019,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1052.335084189698,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,5,1,295.5,0,0,0 +455,565,1018,1019,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,3,8.561281607373434,8.739656387352868,0,2,0,-9,6,-9,-27,-69.60131960423833,-9,0,1,62,1,4,1,2,1,2019,1,1,10,0,35,0,15,1,0,1,0,18.22491719938646,18.22491719938646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,5,4,0,0,8,5,1,295.5,0,0,0 +455,565,1019,1018,-9,-9,1,1,1,62,1,0,2,0,1,-9,1,1,0,4,9.533281360697698,9.794760514215678,7.3531219633076,2,0,-9,6,-9,27,61.69251621433862,-9,0,0,35,1,3,1,-9,-9,2019,1,2,7,0,35,0,15,1,0,1,0,54.56088878357705,54.56088878357705,0,0,0,0,0,0,0,1,1,0,0,7.638638094904083,0,0,57.16,56.15,6,4,0,0,8,5,1,295.5,0,0,0 +456,566,1020,-9,-9,-9,1,1,0,47,2,0,1,0,1,-9,2,1,0,5,8.94951873930362,8.831012905544704,5.870253116742698,4,0,0,0,-9,0,-957.7093207181488,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,15,32,15,1,0,-9,0,69.43023198034606,69.43023198034606,0,0,0,0,0,0,0,1,1,0,5.973556345728528,0,0,0,60.02,56.42,6,1,0,0,13,5,1,763,0,0,0 +456,566,1021,-9,1020,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1031.387017473656,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,13,5,1,763,0,0,0 +457,567,1022,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1039.375019511076,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.88,48.2,6,1,0,0,9,1,0,1293,0,0,0 +458,568,1023,-9,-9,-9,1,1,0,86,2,0,0,0,1,-9,97,3,0,2,0,6.604490809667512,6.812355902769704,3,0,0,0,-9,0,-913.1209606154534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,1,1.634863664857279,0,0,0,0,18.21116436114624,1,1,0,4.766071662713782,6.57038625111193,0,0,50.08,27.76,4,1,0,0,13,2,0,970,0,0,0 +459,569,1024,1025,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,6.608135749120519,6.638320912515612,1,0,-9,46,0,4,3.760812829379344,0,0,0,69,3,5,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.950183405754695,6.63077294535687,0,0,49.86,55.31,6,1,0,0,6,2,1,334,0,0,0 +459,569,1025,1024,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,5,0,5.815810391089579,6.035943069191588,1,0,-9,46,0,-4,92.45125350396668,0,0,0,73,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.227048471414185,5.756680904352575,0,0,40.95,63.66,6,1,0,0,6,2,1,334,0,0,0 +460,570,1026,1027,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,3,-61.27859634121302,0,0,0,72,2,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.478013348956699,0,0,0,54.51,50.6,6,1,0,0,9,3,1,1982.5,0,0,0 +460,570,1027,1026,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,8.114217376241475,8.339137324777663,1,0,-9,52,0,-3,-132.138638178185,0,0,0,75,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8693707981892788,7.857593218031982,11.10305582201823,3,56.1,49.93,7,1,0,0,9,3,1,1982.5,0,0,0 +461,571,1028,1030,-9,-9,2,1,0,39,1,0,3,0,1,-9,3,3,0,5,0,0,0,2,0,-9,16,0,-1,111.9149124678352,0,0,1,40,1,4,1,2,2,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.9,52.43,7,3,1,0,6,4,1,478.6666666666667,0,0,0 +461,571,1029,-9,1028,1030,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.881574518575,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,4,1,478.6666666666667,0,0,0 +461,571,1030,1028,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,4,9.134484721036216,9.214502960569366,0,2,0,-9,16,0,1,-120.5503077844572,0,0,0,39,1,5,3,2,1,2019,2,2,11,1,0,55,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.76,45.08,7,3,0,0,6,4,1,478.6666666666667,0,0,0 +462,572,1031,-9,-9,-9,1,1,0,77,3,0,1,0,3,-9,4,3,0,2,0,6.261686344130315,5.996593070270343,4,0,0,0,-9,0,-950.138825348594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,122.9245104021742,0,126.4468015392671,0,1,1,0,0,6.031605263466282,0,0,45.97,19.91,5,1,0,0,2,2,1,1714,0,0,0 +462,573,1032,-9,1033,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-976.7677671118554,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,3,1,211,0,0,0 +462,573,1033,-9,1031,-9,2,1,0,50,3,0,1,0,2,-9,2,1,0,2,7.968362627862478,7.770397976627133,0,3,0,0,0,-9,0,-1005.156111416469,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,40,15,1,0,-9,1,7.802176935590058,7.802176935590058,0,0,0,0,0,0,0,1,1,0,0,0,8.222707722595157,3,52.24,50.75,4,1,0,0,2,3,1,211,0,0,0 +463,574,1034,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,2,1,0,4,7.519137219005803,8.316663752834721,7.740651942623378,3,0,0,0,-9,0,-1056.799446171864,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,14,0,15,1,0,-9,0,12.49830199386052,12.49830199386052,0,0,0,0,0,0,0,1,1,0,0,7.916047581276279,0,0,59.14,52.5,6,1,0,0,12,4,1,440,0,0,0 +464,575,1035,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,0,5.294333315374678,5.491588167916501,3,0,0,0,-9,0,-968.1880826644816,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.465855321932652,0,0,41.36,21.28,1,1,0,0,2,2,1,115,0,0,0 +465,576,1036,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,7.305490007374535,7.13786026195248,3,0,0,0,-9,0,-981.5401942210187,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.627678906364071,6.905644682188735,6.552080218240129,3,59.95,25.36,6,1,0,0,5,2,1,341,0,0,0 +466,577,1037,-9,1039,1038,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.746602043679,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,2,1,653,0,0,0 +466,577,1038,1039,-9,-9,2,1,1,38,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,10,0,3,-26.33231916982738,0,0,0,35,1,5,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.7186948875454631,3,35.04,46.54,4,1,0,0,13,2,1,653,0,0,0 +466,577,1039,1038,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,5,7.853046686835549,7.797085207118108,0,2,0,-9,10,0,-3,155.7230139874018,0,0,1,38,2,2,3,3,3,2019,2,2,11,0,30,30,15,1,0,3,0,8.987655244262498,8.987655244262498,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,59.97,6,1,0,0,13,2,1,653,0,0,0 +466,577,1040,-9,1039,1038,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0863241970551,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,653,0,0,0 +467,578,1041,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,1,1,0,4,6.087521690152433,8.990453546865437,8.849231216771695,3,0,0,0,-9,0,-920.4449980270945,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.352295580710555,8.76427342676951,0,0,54.77,55.87,6,1,0,0,12,5,1,632,0,0,0 +468,579,1042,1043,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,3,8.974996609775685,8.956094149229754,0,1,0,-9,24,0,5,78.78744011691759,0,0,0,46,1,5,1,2,2,2019,1,2,17,5,48,50,15,1,5,1,0,18.36101395197272,18.36101395197272,0,0,0,0,0,0,0,0,0,0,4.160918788389434,0,0,0,45.18,54.77,3,1,0,0,2,5,1,692.5,0,0,0 +468,579,1043,1042,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,5,8.67872202694517,9.193611456747412,0,1,0,-9,24,0,-5,-67.41385046888145,0,0,0,51,1,3,1,2,3,2019,1,1,17,5,49,38,15,1,5,1,0,19.7121302133101,19.7121302133101,0,0,0,0,0,0,0,0,0,0,7.397863013628682,0,0,0,36.86,60.21,5,1,0,0,2,5,1,692.5,0,0,0 +469,580,1044,1045,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,2,8.092911150136835,8.114820975290108,0,1,0,-9,28,0,4,32.07877538653883,0,0,0,52,2,2,1,3,3,2019,1,2,9,0,41,36,15,1,0,1,0,7.667349940590214,7.667349940590214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.33,34.77,5,4,0,0,8,5,1,570,0,0,0 +469,580,1045,1044,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.340954944343666,8.432880603750535,0,1,0,-9,28,0,-4,25.49168557991541,0,0,0,56,2,2,1,-9,-9,2019,1,1,12,1,56,50,15,1,1,1,0,9.126239453770294,9.126239453770294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,42.74,3,1,0,0,8,5,1,570,0,0,0 +469,581,1046,-9,1044,1045,3,1,0,21,2,0,0,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1012.736977789047,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,6,2,0,0,8,1,1,271,0,0,0 +469,582,1047,-9,1044,1045,4,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.835284835040929,7.614100089239316,0,3,0,0,0,-9,0,-906.3273878620512,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,83,41,15,1,1,-9,1,3.58573869738068,3.58573869738068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.86,56.52,4,2,0,0,8,3,1,1756,0,0,0 +470,583,1048,1049,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,6.958460107079246,8.675416354594349,8.15099546426819,1,0,-9,10,0,1,-53.33091964465556,0,0,0,57,2,2,1,2,2,2019,1,2,21,10,17,14,15,1,10,1,0,6.562667313283046,6.562667313283046,0,0,0,0,0,0,0,1,1,0,0,8.261937482732181,4.306145018965063,3,34.91,34.48,5,1,0,1,7,5,1,923,0,0,0 +470,583,1049,1048,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,2,8.621554644364062,8.36321556717755,0,1,0,-9,10,0,-1,-143.3561581768109,0,0,0,58,2,2,1,2,2,2019,1,1,6,0,55,50,15,1,0,1,0,12.67163155993259,12.67163155993259,0,0,0,0,0,0,0,1,1,0,2.256679519576448,0,0,0,58.56,46.45,6,1,0,0,7,5,1,923,0,0,0 +471,584,1050,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,-9,0,1,0,-874.0712450485729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.25,44.7,2,5,0,1,5,1,1,284,0,0,0 +471,585,1051,-9,1050,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,5,7.783268002046171,7.76858590606197,0,3,0,0,0,-9,0,-1020.322452618811,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,4,16,16,15,1,4,-9,1,16.97308341664869,16.97308341664869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.02,56.54,4,2,0,0,5,3,1,599,0,0,0 +471,586,1052,-9,1050,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,4,7.614359994860365,7.355689431297487,0,3,0,0,0,-9,0,-915.4494306559827,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,23,11,20,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.77,55.57,4,2,0,0,5,3,1,633,0,0,0 +472,587,1053,-9,1054,1056,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.3763378027022,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,1,1520.25,0,0,0 +472,587,1054,1056,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,6,0,2,-2.430945834927769,0,0,1,38,1,3,1,-9,-9,2019,1,1,4,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,58.02,6,1,0,1,12,3,1,1520.25,0,0,0 +472,587,1055,-9,1054,1056,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.2255737026999,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,3,1,1520.25,0,0,0 +472,587,1056,1054,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,3,8.412819258889236,8.232708807965052,0,2,0,-9,6,0,-2,-59.45165821557804,0,0,0,40,1,4,1,1,2,2019,1,2,10,0,45,43,15,1,0,1,0,10.68001143614928,10.68001143614928,0,0,0,0,0,0,0,1,1,0,6.205814869040982,0,0,0,49.04,55.86,6,1,0,0,12,3,1,1520.25,0,0,0 +473,588,1057,1059,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.507542881592185,8.647898768184694,0,2,0,-9,7,0,24,-7.447311079008175,0,0,0,28,3,3,3,3,3,2019,2,2,11,0,44,43,15,1,2,3,0,14.45341009442818,14.45341009442818,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,5,1,0,1,8,3,0,306.6666666666667,0,0,0 +473,588,1058,-9,1059,1057,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.388321349942,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,3,0,306.6666666666667,0,0,0 +473,588,1059,1057,-9,-9,2,1,0,28,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-24,-103.7094040373589,-9,1,1,52,2,3,1,-9,-9,2019,3,1,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.85,52.43,2,1,0,0,8,3,0,306.6666666666667,0,0,0 +474,589,1060,1062,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,4,7.247177486838085,7.422682277222703,0,2,0,-9,15,-9,0,-105.5265079967453,-9,0,0,48,2,4,1,3,3,2019,1,2,7,0,20,0,15,1,0,1,0,7.35435181201472,7.35435181201472,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,5,1,0,0,12,3,1,563,0,0,0 +474,589,1061,-9,1060,1062,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-969.6480838600344,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,12,3,1,563,0,0,0 +474,589,1062,1060,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,7.69168650510399,7.857527750229199,0,2,0,-9,17,-9,0,-8.297566144878747,-9,0,0,48,2,4,1,2,2,2019,1,1,0,0,41,0,15,1,0,1,0,5.624808348856334,5.624808348856334,0,0,0,0,0,0,0,1,0,1,0,0,117.8424075869538,3,47.62,50.74,7,1,0,1,12,3,1,563,0,0,0 +475,590,1063,1064,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,7.247847785978561,7.390576078371918,1,0,-9,52,0,1,103.020742020367,0,0,0,71,2,4,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.725208356377644,7.537703276903439,0,0,56.58,44.22,6,1,0,0,12,3,1,776.5,0,0,0 +475,590,1064,1063,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,7.775490037101453,7.332569315618008,1,0,-9,52,0,-1,231.8177614291751,0,0,0,72,3,4,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.403151742824017,7.568363522571852,0,0,55.73,53.98,7,1,0,0,12,3,1,776.5,0,0,0 +476,591,1065,-9,1066,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1013.958607358747,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,2,5,1,999,0,0,0 +476,591,1066,1067,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,5,8.650215359044305,8.682275195143076,6.534253346291421,2,0,-9,2,0,1,69.50169114829363,0,0,1,42,1,3,1,2,3,2019,1,3,5,0,35,18,15,1,0,1,0,18.68199583541513,18.68199583541513,0,0,0,0,0,0,0,1,1,0,7.012322839939874,0,0,0,59.43,58.05,6,1,0,0,2,5,1,999,0,0,0 +476,591,1067,1066,-9,-9,3,1,1,42,1,0,1,0,1,-9,2,1,0,3,9.323439832292431,8.822257773828277,0,2,0,-9,2,0,-1,-18.21890531655013,0,0,0,43,1,5,1,-9,-9,2019,1,1,12,4,40,38,15,1,4,1,0,27.36902238308135,27.36902238308135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.61,53.7,7,1,0,0,2,5,1,999,0,0,0 +477,592,1068,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,5.683431142473395,5.681212378027478,3,0,0,0,-9,0,-870.3092590140775,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.610001255755114,5.234987624616004,3,60.12,54.8,7,1,0,0,4,2,0,199,0,0,0 +478,593,1069,1070,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,2,0,7.787931640803261,7.889403877391975,1,0,-9,45,0,4,22.99705465690813,0,0,0,67,1,3,3,3,2,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.213343313748243,8.009477483144142,0,0,40.88,49.19,4,1,0,0,9,4,1,317,0,0,0 +478,593,1070,1069,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,3,0,7.246007591025455,7.648436382634146,1,0,-9,45,0,-4,-19.77774723478781,0,0,0,71,1,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.863564438840544,7.365076022707145,0,0,60.05,45.35,6,1,0,0,9,4,1,317,0,0,0 +479,594,1071,1072,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.403311351786492,6.133528680228596,1,0,-9,7,0,4,1.717565361106579,0,0,0,67,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.522045096111588,6.303375241367617,0,0,57.93,46.29,6,1,0,0,2,2,1,612.5,0,0,0 +479,594,1072,1071,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.080622040445827,5.90601123059135,1,0,-9,7,0,-4,7.994607257925,0,0,0,71,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.994534026610818,5.966203686269969,0,0,57.51,47.91,6,1,0,0,2,2,1,612.5,0,0,0 +480,595,1073,1074,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,2,0,3.307226851268839,3.072933915505979,1,0,-9,45,0,1,-114.8224038659828,0,0,0,76,1,2,3,2,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.222094445840045,3.236651431288864,118.3270688431457,1,33.12,40.59,3,1,0,0,10,2,1,331,0,0,0 +480,595,1074,1073,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,7.406944148992982,7.637656010459012,1,0,-9,44,0,-1,92.74626070903628,0,0,0,77,2,2,3,3,-9,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,1,0,12.2882571333388,0,0,0,0,1,1,0,0,7.52418820455821,0,0,40.55,28.87,3,1,0,0,10,2,1,331,0,0,0 +481,596,1075,1076,-9,-9,1,1,0,28,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,9,0,-1,-33.20635362426705,0,1,1,29,2,3,1,2,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,6,1,0,0,1,2,1,698.4,0,0,0 +481,596,1076,1075,-9,-9,2,1,1,29,1,0,3,0,2,-9,2,1,0,3,8.019278602995998,7.931848149730564,0,2,0,-9,9,0,1,-133.3275558831697,0,1,0,28,2,3,3,2,2,2019,2,1,7,0,39,40,15,1,0,3,0,6.914922559973154,6.914922559973154,0,0,0,0,0,0,0,1,1,0,.6456586744880888,0,0,0,55.56,51.53,6,1,0,0,1,2,1,698.4,0,0,0 +481,596,1077,-9,1075,1076,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.9888827459376,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,2,1,698.4,0,0,0 +481,596,1078,-9,1075,1076,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.986723188783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,2,1,698.4,0,0,0 +481,596,1079,-9,1075,1076,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.453017525796,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,1,698.4,0,0,0 +482,597,1080,-9,1082,-9,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-971.2430066049194,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,383.6666666666667,0,0,0 +482,597,1081,-9,1082,-9,2,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-967.9546797555519,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,383.6666666666667,0,0,0 +482,597,1082,-9,-9,-9,1,1,0,22,2,2,2,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1015.360981192457,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,38.32,4,1,1,0,6,1,0,383.6666666666667,0,0,0 +483,598,1083,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,7,2,0,4,0,7.625682698983169,8.092350411483125,3,0,0,0,-9,0,-1044.470950890064,1,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,56,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.924000459175143,0,0,0,57.16,56.15,6,1,0,1,10,3,0,458,0,0,0 +484,599,1084,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,1,1,0,3,0,0,0,4,0,0,0,-9,0,-1074.097780125053,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,20,20,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.13,50.73,3,1,0,0,2,1,0,1082,0,0,0 +484,599,1085,-9,1084,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1119.344388808345,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,2,1,0,1082,0,0,0 +485,600,1086,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,6.795061386845839,7.258760969380527,3,0,0,0,-9,0,-1036.000622362371,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.841510597723634,0,0,48.77,22.19,6,1,0,0,9,2,1,1132,0,0,0 +486,601,1087,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,2,0,7.757879098360815,7.537819529140489,3,0,0,0,-9,0,-1025.84748531359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,6.533308981469118,0,1,1,0,0,7.265843021046381,0,0,28.52,41.13,5,1,0,0,12,3,0,854,0,0,0 +487,602,1088,1091,-9,-9,2,1,0,34,1,0,2,0,3,-9,2,1,0,3,7.580596773998647,7.517811984558755,0,2,0,-9,6,0,-8,-141.6412929289478,0,0,1,42,1,3,1,-9,-9,2019,1,1,17,5,39,16,15,1,5,1,0,5.126588762405325,5.126588762405325,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.73,61.03,5,5,0,0,5,4,1,881.5,0,0,0 +487,602,1089,-9,1088,1091,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-842.7325360844513,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,881.5,0,0,0 +487,602,1090,-9,1088,1091,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-832.5964258189615,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,881.5,0,0,0 +487,602,1091,1088,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,3,8.701549035361001,8.51972234655163,0,2,0,-9,6,0,8,42.81273471756218,0,0,0,34,3,3,1,2,3,2019,1,2,7,0,40,40,15,1,0,1,0,17.25815185020792,17.25815185020792,0,0,0,0,0,0,0,1,1,0,3.705841627767879,0,0,0,59.88,45.37,6,1,0,0,5,4,1,881.5,0,0,0 +488,603,1092,-9,1093,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.363998828356,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,2,0,889,0,0,0 +488,603,1093,-9,-9,-9,1,1,0,38,2,0,1,0,3,-9,2,1,0,3,7.037660374314293,6.723060013177741,0,4,0,0,0,-9,0,-1002.577445360192,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,28,11,16,16,15,1,11,-9,0,6.953966223107416,6.953966223107416,0,0,0,0,0,0,0,1,1,0,0,0,10.37738574713995,3,26.33,53.06,1,1,0,1,12,2,0,889,0,0,0 +489,604,1094,1098,-9,-9,1,1,0,26,1,2,4,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-7,107.1536270791878,0,1,1,33,2,4,1,2,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.495302998288667,3,52.25,53.24,4,1,0,0,2,2,0,1362.166666666667,0,0,0 +489,604,1095,-9,1094,1098,3,1,1,6,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1133.444490867001,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,1362.166666666667,0,0,0 +489,604,1096,-9,1094,1098,4,1,0,3,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.057716709326,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,2,0,1362.166666666667,0,0,0 +489,604,1097,-9,1094,1098,5,1,0,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.5415804765803,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,0,1362.166666666667,0,0,0 +489,604,1098,1094,-9,-9,2,1,1,33,1,2,4,0,2,-9,2,1,0,4,8.256168644348088,8.218681838051321,0,2,0,-9,6,0,7,27.46565075276324,0,0,0,26,3,3,3,-9,-9,2019,2,1,14,3,49,52,15,1,3,3,0,8.88076475770881,8.88076475770881,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,6,1,0,1,2,2,0,1362.166666666667,0,0,0 +489,604,1099,-9,1094,1098,6,1,0,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1029.364464146915,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,0,1362.166666666667,0,0,0 +490,605,1100,1101,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,8.108927531334874,7.874462205484679,1,0,-9,40,0,5,-45.15449263627535,0,0,0,62,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.76943904989225,7.871460550685598,0,0,60.13,49.27,6,1,0,0,12,3,1,226,0,0,0 +490,605,1101,1100,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,2,0,6.947727442992484,7.187347946881404,1,0,-9,40,0,-5,-70.34338933068261,0,0,0,67,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.535942456844221,0,0,62.42,32.41,6,1,0,0,12,3,1,226,0,0,0 +491,606,1102,-9,1103,1105,3,1,1,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.062285414445,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,2,0,992.2,0,0,0 +491,606,1103,1105,-9,-9,1,1,0,34,1,1,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,21,0,-3,22.70638679923058,0,0,1,37,2,4,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.67,53.14,6,1,0,0,1,2,0,992.2,0,0,0 +491,606,1104,-9,1103,1105,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.4960026780602,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,2,0,992.2,0,0,0 +491,606,1105,1103,-9,-9,2,1,1,37,1,1,3,0,2,-9,2,1,0,4,8.084620440813753,7.607911441836248,0,2,0,-9,21,0,3,11.63062577905377,0,0,0,34,2,3,3,3,-9,2019,2,1,10,0,42,42,15,1,1,3,0,6.961486274336583,6.961486274336583,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,1,2,0,992.2,0,0,0 +491,606,1106,-9,1103,1105,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.329266384067,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,0,992.2,0,0,0 +492,607,1107,1108,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,1,0,8.129118264989394,8.303586621632787,1,0,-9,39,0,-3,38.81141752943829,0,0,0,67,3,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.487468235267322,0,0,52.24,10.56,4,1,0,0,10,4,1,930,0,0,0 +492,607,1108,1107,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,6.179581008218771,5.831220480168764,1,0,-9,39,0,3,120.4813759266639,0,0,0,64,2,1,3,2,2,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.156383689768072,6.202160550627575,120.5444318572237,1,44.09,27.62,6,1,0,0,10,4,1,930,0,0,0 +493,608,1109,1110,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.843575871908071,7.477222391003868,0,1,0,-9,8,0,3,-183.0518537743301,0,0,0,45,2,3,1,-9,-9,2019,1,1,9,0,38,38,15,1,0,1,0,6.414977490655088,6.414977490655088,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,8,4,0,371.5,0,0,0 +493,608,1110,1109,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,3,8.034876740328494,8.031884332291433,0,1,0,-9,8,0,-3,104.8882905624218,0,0,0,48,2,3,1,-9,3,2019,1,2,10,0,46,45,15,1,0,1,0,9.22195110037322,9.22195110037322,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,8,4,0,371.5,0,0,0 +493,609,1111,-9,1109,1110,3,1,1,28,2,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1065.212162986466,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,4,1,1,0,8,1,0,469,0,0,0 +494,610,1112,-9,1113,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,1,8.124534929695566,8.60131552846665,6.697125369179619,3,0,0,0,-9,0,-944.0332837237049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,12,50,48,15,1,12,-9,1,6.843307617708879,6.843307617708879,0,0,0,0,0,0,0,1,1,0,7.257521834009348,7.354093324541288,31.08183691862675,3,37.74,19.51,5,1,0,0,4,4,0,158,0,0,0 +494,611,1113,-9,-9,-9,2,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,6.543706399854261,6.61178015880067,3,0,0,0,-9,0,-914.8822909254638,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.480632683820794,6.259916739093483,0,0,48.2,20.19,4,1,0,0,4,2,0,1498,0,0,0 +495,612,1114,-9,1116,1115,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.7558851957924,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,3,1,798,0,0,0 +495,612,1115,1116,-9,-9,2,1,1,41,1,0,2,0,3,-9,2,1,0,4,7.182052995856076,6.939599114224152,0,2,0,-9,10,0,5,-169.2350094675904,0,0,0,36,2,3,3,-9,-9,2019,2,1,12,0,55,55,15,1,0,3,0,1.832553513483865,1.832553513483865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,1,8,3,1,798,0,0,0 +495,612,1116,1115,-9,-9,1,1,0,36,1,0,2,0,2,-9,11,3,0,3,8.188566994482658,8.491063123980428,0,2,0,-9,10,0,-5,11.94660404418174,0,0,1,41,3,4,1,2,3,2019,3,2,10,0,37,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,8,3,1,798,0,0,0 +495,612,1117,-9,1116,1115,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1030.064596771816,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,8,3,1,798,0,0,0 +496,613,1118,1119,-9,-9,2,1,0,53,1,0,0,0,3,-9,6,3,0,1,0,0,0,1,0,-9,34,0,-2,31.00062435065945,0,0,0,55,3,4,1,-9,-9,2019,3,1,21,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.45,38.73,4,3,0,0,6,2,1,464.5,0,0,0 +496,613,1119,1118,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,4,7.782301762543477,7.565049201544042,0,1,0,-9,34,0,2,-101.5853270192889,0,0,0,53,3,1,3,-9,-9,2019,2,2,10,1,30,30,15,1,1,3,0,7.609490899392916,7.609490899392916,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.05,52.7,6,3,0,0,6,2,1,464.5,0,0,0 +496,614,1120,-9,1118,1119,3,1,1,24,2,0,0,0,3,-9,2,1,0,4,7.589044838557482,7.372886099816059,0,3,0,0,0,-9,0,-963.0954404115187,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,32,0,15,1,1,-9,1,5.156232087814013,5.156232087814013,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,6,3,1,4752.5,0,0,0 +496,614,1121,-9,-9,1120,5,1,0,11,2,0,0,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-920.2691794261325,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,6,3,1,4752.5,0,0,0 +496,615,1122,-9,1118,1119,4,1,0,20,2,0,0,1,2,0,7,2,0,4,0,5.878295755149591,5.985456500838841,3,0,0,0,-9,0,-1031.664533659668,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.573568651327468,0,0,0,49.41,58.28,5,3,0,1,6,2,1,407,0,0,0 +497,616,1123,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,4,3,0,4,0,8.255265261137884,8.352425015284149,3,0,0,0,-9,0,-1058.634687336412,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.793000486718594,8.099449155239855,3.671298525029944,3,49.06,58.64,6,1,0,0,9,4,1,213,0,0,0 +498,617,1124,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,5,8.615923935987347,8.439644182181945,0,3,0,0,0,-9,0,-1010.78090131255,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,40,15,1,0,-9,0,18.58029634463114,18.58029634463114,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,4,1,431,0,0,0 +499,618,1125,-9,1127,1126,1,1,1,40,2,0,0,0,1,-9,1,1,0,5,7.161947627070281,9.187697717757269,9.15320646725535,3,0,0,0,-9,0,-873.3182211587609,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,45,40,15,1,0,-9,1,4.170077772534659,4.170077772534659,0,0,0,0,0,0,0,1,1,0,7.085011228087899,9.171025068406845,0,0,57,59.12,7,2,0,0,9,5,1,530,0,0,0 +499,619,1126,1127,-9,-9,2,1,1,75,1,0,0,0,1,-9,1,1,0,3,6.515927763670477,6.601208250029368,0,1,0,-9,8,0,-3,54.34991570383752,0,0,0,78,1,3,3,-9,-9,2019,2,3,9,0,0,50,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,6,5,0,0,9,2,1,576.5,0,0,0 +499,619,1127,1126,-9,-9,3,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,8,0,3,8.371219840000247,0,0,0,75,1,3,1,-9,-9,2019,3,2,18,8,0,0,15,4,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.71,29.32,5,1,0,0,9,2,1,576.5,0,0,0 +500,620,1128,1129,-9,-9,5,1,1,43,1,0,3,0,1,-9,1,1,0,4,8.427497874953122,8.549040334145339,0,2,0,-9,3,0,4,36.68641557635727,0,0,0,39,3,4,3,-9,-9,2019,2,1,9,0,60,50,15,1,1,3,0,8.366479454392683,8.366479454392683,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,5,0,0,8,3,0,786,0,0,0 +500,620,1129,1128,-9,-9,1,1,0,39,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-4,-55.83449125555027,0,0,1,43,1,4,1,3,2,2019,3,5,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,5,0,0,8,3,0,786,0,0,0 +500,620,1130,-9,1129,1128,2,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.719430362488,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,0,786,0,0,0 +500,620,1131,-9,1129,1128,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-859.958412162732,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,8,3,0,786,0,0,0 +500,620,1132,-9,1129,1128,3,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.695708023996,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,5,0,0,8,3,0,786,0,0,0 +501,621,1133,1134,-9,-9,2,1,0,67,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,46,0,1,0,0,0,0,66,3,4,3,-9,-9,2019,4,1,11,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.9,20.61,5,1,1,0,2,1,0,462,0,0,0 +501,621,1134,1133,-9,-9,1,1,1,66,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,45,0,-1,0,0,0,0,67,3,1,3,3,3,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.514932541917027,1,47.89,53.42,5,1,0,0,2,1,0,462,0,0,0 +501,622,1135,-9,1133,1134,3,1,0,40,2,0,0,0,2,-9,2,1,0,3,7.531921496713323,7.642120781323702,0,3,0,0,0,-9,0,-899.0768482438127,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,30,0,15,1,0,-9,1,8.16472428210254,8.16472428210254,0,0,0,0,0,0,0,1,1,0,0,0,7.970193932198437,3,54.91,49,7,1,0,0,2,3,0,376,0,0,0 +501,623,1136,-9,-9,-9,4,1,0,18,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-890.8309699321427,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.526367944209404,3,57.16,56.15,6,1,0,0,2,1,0,923,0,0,0 +502,624,1137,-9,-9,-9,1,1,0,30,2,1,2,0,1,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1088.439485232318,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.97,41.91,3,4,1,0,7,1,0,1658.333333333333,0,0,0 +502,624,1138,-9,1137,-9,2,1,0,10,2,1,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-934.6868050116688,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,2,0,0,7,1,0,1658.333333333333,0,0,0 +502,624,1139,-9,1137,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1033.804106639066,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,7,1,0,1658.333333333333,0,0,0 +503,625,1140,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-962.1063294313069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.420423596536746,0,0,0,45.26,48.32,4,1,0,0,10,1,1,158,0,0,0 +504,626,1141,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1137.961294534161,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.0159844222289,3,40.98,52.59,4,1,0,0,11,1,0,444,0,0,0 +504,627,1142,-9,1141,-9,2,1,0,25,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-825.106340251507,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,11,1,0,1428,0,0,0 +504,628,1143,-9,1141,-9,3,1,0,22,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1006.422224798599,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.8817980287657,3,43,53,5,1,1,0,11,1,0,828,0,0,0 +505,629,1144,-9,1147,1146,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.4428443840779,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,0,403.25,0,0,0 +505,629,1145,-9,1147,1146,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.680799428999,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,0,403.25,0,0,0 +505,629,1146,1147,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,9.564274852658201,9.606681731311216,0,2,0,-9,12,0,4,-110.6297107674835,0,0,0,36,1,5,1,2,1,2019,1,2,26,11,70,70,15,1,11,1,0,18.46309332637031,18.46309332637031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.14,59.39,3,1,0,0,9,5,0,403.25,0,0,0 +505,629,1147,1146,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,5,7.893518242288296,7.89882904583642,0,2,0,-9,12,0,-4,-88.14890304645019,0,0,1,40,1,4,1,-9,-9,2019,1,1,10,1,16,16,15,1,1,1,0,23.21444922397956,23.21444922397956,0,0,0,0,0,0,0,1,1,0,8.268365690013212,0,0,0,51.14,60.45,6,1,0,0,9,5,0,403.25,0,0,0 +506,630,1148,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,0,4.835889549230367,5.108700371554126,3,0,0,0,-9,0,-928.3406238902684,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.934410482117781,0,0,46.68,24.63,6,1,0,0,11,2,1,600,0,0,0 +507,631,1149,1150,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,6.896371494929654,7.178416043558931,1,0,-9,52,0,2,49.65966476537925,0,0,0,80,2,3,3,3,1,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.60548340241402,0,0,53,46,6,3,0,0,4,2,1,1657.5,0,0,0 +507,631,1150,1149,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,3,0,6.742741934995744,7.175512260540184,1,0,-9,52,0,-2,-65.08145880633541,0,0,0,82,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.098871135505683,128.2161332977057,1,48.14,42.69,6,1,0,0,4,2,1,1657.5,0,0,0 +508,632,1151,1152,-9,-9,3,1,1,46,1,0,1,0,2,-9,1,1,0,3,7.853229948387258,7.317381546747523,0,2,0,-9,4,0,-1,54.45906839377717,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,0,50,48,15,1,0,1,0,5.465011259456557,5.465011259456557,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.05,45.76,6,1,0,0,8,4,1,928,0,0,0 +508,632,1152,1151,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,4,8.881576174108352,8.872607290390304,0,2,0,-9,4,0,1,-60.97018045725206,0,0,0,46,2,3,1,2,2,2019,1,3,7,0,36,36,15,1,0,1,0,16.63554291473591,16.63554291473591,0,0,0,0,0,0,0,1,1,0,7.492876295926115,0,0,0,49.41,58.28,6,4,0,0,8,4,1,928,0,0,0 +508,632,1153,-9,1152,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-916.733779961462,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.55,60.42,6,4,0,0,8,4,1,928,0,0,0 +509,633,1154,1155,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,3,0,5.355392305852663,5.349654620860677,1,0,-9,53,0,-3,54.54275630159934,0,0,0,76,1,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.523067300269661,5.388757002924896,0,3,48.21,50.73,6,1,0,0,9,4,1,503.5,0,0,0 +509,633,1155,1154,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,8.411167312386974,8.272219877360547,1,0,-9,53,0,3,35.83118130329177,0,0,0,73,1,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.639614200956947,5.172426462825063,3,41.98,47.3,6,1,0,0,9,4,1,503.5,0,0,0 +510,634,1156,1157,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,36,0,10,-92.36727691141601,0,0,0,58,1,5,1,2,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,6.178026542737977,0,5.6003462914924,3,54.44,51.82,7,1,0,0,2,3,1,531,0,0,0 +510,634,1157,1156,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,5,7.113272796776027,7.579667204938551,7.033532216035086,1,0,-9,10,0,-10,-44.08848366257508,0,0,0,68,2,4,3,3,3,2019,2,1,5,0,15,14,15,1,0,4,0,9.197472588249084,9.197472588249084,0,0,0,0,0,0,0,1,1,0,7.609826638320587,6.884654364954955,17.04474155775126,3,62.39,56.71,6,1,0,0,2,3,1,531,0,0,0 +510,635,1158,-9,1157,1156,3,1,0,31,2,0,0,0,3,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-1055.791341872279,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.01,51.37,6,1,0,0,2,1,1,2113,0,0,0 +511,636,1159,-9,1161,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1113.039156526001,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,0,596,0,0,0 +511,636,1160,-9,1161,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.4389022478656,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,2,0,596,0,0,0 +511,636,1161,-9,-9,-9,1,1,0,33,3,0,2,0,2,-9,1,1,0,3,6.427750295839424,7.131202683919362,5.63050321068931,4,0,0,0,-9,0,-896.6233416126968,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,0,16,16,15,1,3,-9,0,5.653228702754661,5.653228702754661,0,0,0,0,0,0,0,1,1,0,5.522966331231042,0,0,0,44,52,4,1,0,0,5,2,0,596,0,0,0 +512,637,1162,1163,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,9.195511944607963,8.613763544006577,1,0,-9,2,0,11,-14.79395793247587,0,0,0,58,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,27.21271254343052,0,0,0,0,1,1,0,5.616385009204972,9.185450688299875,0,0,54.2,57.49,7,1,0,0,7,5,1,1020,0,0,0 +512,637,1163,1162,-9,-9,1,1,0,58,1,0,0,0,1,-9,4,3,0,3,0,9.00236762070926,8.706386866675553,1,0,-9,2,0,-11,-44.78295055241468,0,0,0,69,1,4,3,3,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.156452565197477,9.072084095537697,0,0,54.7,40.89,5,1,0,0,7,5,1,1020,0,0,0 +513,638,1164,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,3,0,7.935663744534259,8.15143262434661,3,0,0,0,-9,0,-1089.284872282849,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.679801316751511,8.05585044305508,0,0,55.01,36.8,6,1,0,0,10,4,1,247,0,0,0 +514,639,1165,-9,1167,1166,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-974.8674895492185,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,1,1,1422.666666666667,0,0,0 +514,639,1166,1167,-9,-9,2,1,1,51,1,0,1,0,3,-9,8,3,1,4,0,0,0,2,0,-9,1,-9,2,0,-9,0,0,49,2,4,3,3,2,2019,4,1,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,5,1,0,0,13,1,1,1422.666666666667,0,0,0 +514,639,1167,1166,-9,-9,1,1,0,49,1,0,1,0,2,-9,8,3,1,4,0,0,0,2,0,-9,1,-9,-2,0,-9,0,0,51,3,4,3,1,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.13215600813314,3,48.67,42.52,6,1,0,0,13,1,1,1422.666666666667,0,0,0 +515,640,1168,-9,1171,1170,3,1,0,16,2,0,3,1,2,-9,7,2,0,4,2.806317627268475,2.961477415917957,0,2,0,0,0,-9,0,-905.177646101772,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,619.4,0,0,0 +515,640,1169,-9,1171,1170,5,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.5342517211508,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,12,5,1,619.4,0,0,0 +515,640,1170,1171,-9,-9,1,1,1,62,1,0,3,0,1,-9,2,1,0,5,9.331035847492467,9.173526723956959,4.737239684491071,2,0,-9,2,0,8,-155.2421115808241,0,0,0,54,1,4,1,2,3,2019,1,2,11,1,41,42,15,1,1,1,0,28.52547473344704,28.52547473344704,0,0,0,0,0,0,0,0,0,0,4.534860727654087,5.087161265135067,0,0,51.14,60.45,5,1,0,0,12,5,1,619.4,0,0,0 +515,640,1171,1170,-9,-9,2,1,0,54,1,0,3,0,1,-9,2,1,0,4,8.751993454252242,9.053745304297498,0,2,0,-9,2,0,-8,78.01166413309235,-9,0,0,62,1,5,1,2,2,2019,1,1,16,5,37,0,15,1,5,1,0,18.47925931416032,18.47925931416032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.84,58.02,5,1,0,0,12,5,1,619.4,0,0,0 +515,640,1172,-9,1171,1170,4,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-972.1314310945182,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,5,1,0,0,12,5,1,619.4,0,0,0 +516,641,1173,1174,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-2,0,0,0,0,71,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.05383237412175,2,40.54,52.05,6,1,0,0,13,1,1,351.5,0,0,0 +516,641,1174,1173,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,2,0,0,0,0,69,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,27.58768668864742,0,0,0,0,1,1,0,0,0,0,0,46.52,39.57,2,1,0,0,13,1,1,351.5,0,0,0 +516,642,1175,-9,1173,1174,3,1,1,47,3,0,0,0,2,-9,2,1,0,4,8.034377803889615,7.950982346546006,0,3,0,0,0,-9,0,-1018.757252246356,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,45,15,1,0,-9,1,10.21619840934859,10.21619840934859,0,0,0,0,0,0,0,1,1,0,2.92726276012808,0,0,0,63.66,40.77,4,1,0,0,13,4,1,2485,0,0,0 +517,643,1176,1177,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,8.496640707861623,8.710039385290891,0,2,0,-9,6,0,-2,69.66358001826052,0,0,0,47,2,2,1,2,2,2019,1,1,7,0,38,38,15,1,0,1,0,22.53881350986374,22.53881350986374,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,56.11,7,1,0,0,13,5,1,618,0,0,0 +517,643,1177,1176,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,2,8.512565343263152,8.311729085249949,0,2,0,-9,6,0,2,.3141666906342308,0,0,0,45,2,4,1,2,2,2019,1,2,11,0,37,40,15,1,0,1,0,22.58827242983897,22.58827242983897,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.06,42.33,5,1,0,0,13,5,1,618,0,0,0 +517,643,1178,-9,1176,1177,4,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.405794162952,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,5,1,618,0,0,0 +517,644,1179,-9,1176,1177,3,1,0,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1079.562936174523,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.027148652372369,0,0,0,60.02,56.42,7,1,0,0,13,1,1,2131,0,0,0 +518,645,1180,1181,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,2,7.657822429352342,8.099915031240707,0,1,0,-9,19,0,0,-136.4441215548529,0,0,0,54,1,1,1,3,3,2019,1,1,23,10,37,38,15,1,10,1,0,10.00958594599659,10.00958594599659,0,0,0,0,0,0,0,0,0,0,1.346714056353298,0,0,0,39.26,48.63,3,1,0,0,5,5,1,939,0,0,0 +518,645,1181,1180,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,1,8.295840215151001,8.454765323824153,0,1,0,-9,19,0,0,-9.032767402720676,0,0,0,54,1,2,1,3,3,2019,1,2,18,9,37,42,15,1,9,1,0,12.76439252765641,12.76439252765641,0,0,0,0,0,0,0,0,0,0,.6603416209317241,0,4.825769552473514,3,36.34,48.65,6,1,0,0,5,5,1,939,0,0,0 +519,646,1182,1183,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,-2,-161.3008902348527,0,0,0,72,1,3,3,2,1,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,2.185706402173395,0,0,0,0,1,1,0,0,0,0,1,44.59,43.17,6,1,0,0,12,2,1,334.5,0,0,0 +519,646,1183,1182,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,6.756966380427269,6.709811998488374,1,0,-9,49,0,2,-43.84030342104557,0,0,0,70,2,3,3,2,2,2019,4,1,14,4,0,0,15,4,4,4,0,0,0,1,0,8.085634023451563,0,0,0,0,1,1,0,3.243554973218954,6.786887411257983,0,0,57.51,15.6,6,1,0,0,12,2,1,334.5,0,0,0 +520,647,1184,1185,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,9.137082737318426,8.940798293097826,0,1,0,-9,5,0,2,-19.48561384518072,0,0,1,30,2,3,1,-9,-9,2019,1,2,11,0,48,48,15,1,0,1,0,18.06772952949079,18.06772952949079,0,0,0,0,0,0,0,0,0,0,5.427953656469493,0,0,0,54.2,57.49,6,3,0,0,7,5,1,1043,0,0,0 +520,647,1185,1184,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,3,8.824708197602865,8.722526623869493,0,1,0,-9,5,0,-2,90.47145463506511,0,0,0,32,1,4,1,-9,-9,2019,1,1,12,0,48,42,15,1,0,1,0,16.96543252484631,16.96543252484631,0,0,0,0,0,0,0,0,0,0,4.739238489944058,0,0,0,49.04,55.86,6,1,0,0,7,5,1,1043,0,0,0 +521,648,1186,-9,1189,1190,3,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.6405512023509,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,797.2,0,0,0 +521,648,1187,-9,1189,1190,4,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1042.783183765898,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,3,1,797.2,0,0,0 +521,648,1188,-9,1189,1190,5,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1037.360093790063,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,3,1,797.2,0,0,0 +521,648,1189,1190,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,4,7.762787538686593,7.434178793779604,0,2,0,-9,17,0,1,87.09001781362591,0,0,1,36,2,3,3,3,3,2019,2,1,10,0,32,30,15,1,0,3,0,7.255801240986963,7.255801240986963,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,4,3,1,797.2,0,0,0 +521,648,1190,1189,-9,-9,1,1,1,36,1,0,3,0,2,-9,6,3,0,3,7.867001947629396,7.838257445137914,0,2,0,-9,17,0,-1,78.70703116877124,0,0,0,37,2,4,1,3,3,2019,3,2,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.5036575427638488,3,54.96,53.17,6,1,0,0,4,3,1,797.2,0,0,0 +522,649,1191,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,2,1,0,4,8.498586485755268,8.168338874136392,0,3,0,0,0,-9,0,-982.2987842950629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,39,15,1,0,-9,0,14.60428959851894,14.60428959851894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.47,55.04,6,1,0,0,13,4,1,1044,0,0,0 +523,650,1192,-9,-9,1193,1,1,0,46,2,0,0,0,2,-9,2,1,0,4,8.686201321407614,8.62974188805836,0,3,0,0,0,-9,0,-1028.501317827394,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,19,20,15,1,0,-9,1,29.5953610480613,29.5953610480613,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,4,0,0,8,5,0,582,0,0,0 +523,651,1193,-9,-9,-9,2,1,1,77,3,0,0,0,1,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-950.1742511811797,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62,52.77,5,4,0,0,8,1,0,586,0,0,0 +523,652,1194,-9,1192,-9,3,1,0,20,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1032.702936523752,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,40,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,4,0,0,8,1,0,1690,0,0,0 +524,653,1195,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,7.427422213874566,7.455054845537183,3,0,0,0,-9,0,-1041.611741871813,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.766932078724593,7.55101601400457,0,0,58.74,30.17,5,1,0,0,8,3,1,2946,0,0,0 +525,654,1196,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.848613527754431,8.738160706608836,0,3,0,-9,0,-9,0,-944.9925760107344,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,40,0,15,1,0,-9,0,19.76388550604605,19.76388550604605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,3,0,0,8,5,0,2106,0,0,0 +526,655,1197,1198,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,2,0,7.711210951529092,7.909460644957324,1,0,-9,7,0,0,-83.34617048668488,0,0,0,79,2,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.981090897220135,7.721410163583879,0,0,50.73,40.35,6,1,0,0,11,4,1,1038.5,0,0,0 +526,655,1198,1197,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,7.689429094354108,7.687695354380816,1,0,-9,7,0,0,-152.4494675237207,0,0,0,79,1,2,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.928110904849845,7.806579650806784,0,0,57.39,47.77,7,1,0,0,11,4,1,1038.5,0,0,0 +527,656,1199,1200,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.28131414730166,6.711925593753105,1,0,-9,52,0,3,-26.60507935654546,0,0,0,68,1,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.514938291057187,7.083446539070668,0,0,57.66,45.08,6,1,0,0,5,2,1,748,0,0,0 +527,656,1200,1199,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,5.918544164608427,6.007516919186695,1,0,-9,52,0,-3,-58.85884771324163,0,0,0,71,2,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.234961240271843,0,0,54.14,42.51,6,1,0,0,5,2,1,748,0,0,0 +528,657,1201,-9,1202,-9,3,1,0,17,2,0,1,0,3,1,3,3,0,1,0,0,0,4,0,0,0,-9,0,-1053.089029411684,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,20.94,4,1,1,1,4,1,0,216.5,0,0,0 +528,657,1202,-9,-9,-9,1,1,0,51,2,0,1,0,3,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1022.843386107034,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,0,16,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.73,35.22,3,1,1,1,4,1,0,216.5,0,0,0 +528,658,1203,-9,1202,-9,2,1,1,19,2,0,1,1,2,-9,7,2,0,4,0,3.984601210818163,4.053305377023165,3,0,0,0,-9,0,-1072.126426829903,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.403347296588503,0,0,0,48.53,58.91,4,2,0,1,4,2,0,402,0,0,0 +529,659,1204,1205,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,54,0,3,69.72771141912877,0,0,0,72,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9841846677586554,0,0,0,61.28,48.88,7,1,0,0,4,2,0,216.5,0,0,0 +529,659,1205,1204,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.1060044251718,5.121317372456442,1,0,-9,54,0,-3,-120.2666545096589,0,0,0,75,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.835174710489219,5.075335773724548,0,0,62.11,48.33,6,1,0,0,4,2,0,216.5,0,0,0 +530,660,1206,-9,1207,1208,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.1460499073129,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,653.6666666666666,0,0,0 +530,660,1207,1208,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,3,7.705194527162575,7.977783926559471,0,2,0,-9,15,0,-6,5.360911560058094,0,0,1,43,1,4,1,2,2,2019,1,2,7,0,19,20,15,1,0,1,0,13.0853472646485,13.0853472646485,0,0,0,0,0,0,0,1,1,0,1.063765714123812,0,0,0,63.17,32.94,5,1,0,0,9,5,1,653.6666666666666,0,0,0 +530,660,1208,1207,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,4,8.711410864761486,8.386434622285092,0,2,0,-9,15,0,6,239.0295333549367,0,0,0,37,1,3,1,2,1,2019,1,1,12,1,37,37,15,1,1,1,0,17.61650354416354,17.61650354416354,0,0,0,0,0,0,0,1,1,0,.2994383975456636,0,0,0,40.33,55.64,6,1,0,0,9,5,1,653.6666666666666,0,0,0 +531,661,1209,-9,1210,-9,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-917.8854063185375,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,4,0,0,4,1,0,575.5,0,0,0 +531,661,1210,-9,1211,1212,2,1,0,29,2,0,1,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-863.455604352045,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.37,42.43,5,2,0,0,4,1,0,575.5,0,0,0 +531,662,1211,1212,-9,-9,1,1,0,63,1,0,1,0,3,-9,4,3,0,3,0,0,0,2,0,-9,6,0,-1,28.44163115339843,0,0,0,64,3,3,3,3,-9,2019,4,4,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,121.2501221772269,3,58.32,50.22,2,2,0,0,4,2,0,482.5,0,0,0 +531,662,1212,1211,-9,-9,4,1,1,64,1,0,1,0,3,-9,4,3,0,3,0,5.831746644095507,6.571582067221517,2,0,-9,6,0,1,95.54030171997672,0,0,0,63,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.768301990824745,64.33157976282017,3,52,48,5,4,0,0,4,2,0,482.5,0,0,0 +532,663,1213,-9,1214,-9,2,1,0,16,2,0,0,1,-9,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1003.367329128155,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.79,59.6,1,3,0,0,2,5,1,1684,0,0,0 +532,663,1214,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,3,8.453234593665332,8.572155229883199,7.054164655251062,3,0,0,0,-9,0,-1132.146320315984,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,36,32,15,1,0,-9,0,16.11838757614064,16.11838757614064,0,0,0,0,0,0,0,1,1,0,8.045200237001634,0,0,0,60.29,52.11,6,3,0,0,2,5,1,1684,0,0,0 +533,664,1215,1217,-9,-9,1,1,1,34,1,1,1,0,3,-9,2,1,0,3,7.987199609684954,7.905935165299685,0,2,0,-9,7,0,4,19.14159866438422,0,0,0,30,2,4,1,2,3,2019,1,2,9,0,40,37,15,1,0,1,0,8.391688450658016,8.391688450658016,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,3,1,396.3333333333333,0,0,0 +533,664,1216,-9,1217,1215,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.0381017503693,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,1,396.3333333333333,0,0,0 +533,664,1217,1215,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,4,7.515252058107687,7.416347829414756,0,2,0,-9,7,0,-4,43.05311530480914,0,0,1,34,3,3,1,2,2,2019,1,1,10,2,27,22,15,1,2,1,0,9.273172838524127,9.273172838524127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,9,3,1,396.3333333333333,0,0,0 +534,665,1218,1219,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,3,7.402246544878203,7.284785000524876,5.70608371188476,1,0,-9,49,0,-7,21.33795037134869,-9,0,0,73,3,3,3,3,-9,2019,2,2,11,0,12,0,15,1,1,4,0,10.04769094836475,10.04769094836475,0,0,0,0,0,0,0,1,1,0,4.790081469808969,6.14339775225012,0,0,50,47,5,1,0,0,9,3,1,1460,0,0,0 +534,665,1219,1218,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.174810863912263,6.276060162633507,1,0,-9,49,0,7,83.25135358576817,0,0,0,66,3,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.951730072383141,0,0,54.78,43.58,6,1,0,0,9,3,1,1460,0,0,0 +535,666,1220,1221,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,9.013670639946504,9.081451443943102,0,2,0,-9,6,0,6,-64.88605430969524,0,0,0,35,2,4,1,2,2,2019,1,1,11,0,35,94,15,1,0,1,0,27.5934520374323,27.5934520374323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.42,43.74,6,1,0,0,1,5,1,811.75,0,0,0 +535,666,1221,1220,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,4,8.143836115495944,8.252563746721609,0,2,0,-9,16,0,-6,100.4736351351276,0,0,1,41,2,4,1,2,3,2019,1,2,11,0,25,24,15,1,0,1,0,17.3178765692281,17.3178765692281,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,1,5,1,811.75,0,0,0 +535,666,1222,-9,1221,1220,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.128806326505,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,5,1,811.75,0,0,0 +535,666,1223,-9,1221,1220,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.937749585365,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,5,1,811.75,0,0,0 +536,667,1224,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,2,1,0,2,8.039990715871966,7.842007715620509,0,3,0,0,0,-9,0,-1002.396152993329,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,28,28,15,1,1,-9,0,11.02714258512589,11.02714258512589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.64,35.39,5,1,0,0,9,3,1,1028,0,0,0 +537,668,1225,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,3,8.09091875634439,8.059321727707299,0,3,0,0,0,-9,0,-995.9936691677805,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,95,55,15,1,0,-9,0,3.712617001902774,3.712617001902774,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,9,4,0,327,0,0,0 +538,669,1226,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,4,8.19701584273092,8.272082951465688,0,3,0,0,0,-9,0,-1088.471053085021,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,42,15,1,1,-9,0,11.31353970305064,11.31353970305064,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,55,6,1,0,0,7,4,1,744,0,0,0 +539,670,1227,-9,1229,1228,3,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-973.9241050860198,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,5,1,518.6666666666666,0,0,0 +539,670,1228,1229,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,4,9.234481607892571,9.123320133927436,0,2,0,-9,15,0,-2,-28.50138437271557,0,0,0,49,1,3,1,-9,-9,2019,1,1,6,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.657144860939436,0,0,0,51.83,57.2,6,1,0,0,7,5,1,518.6666666666666,0,0,0 +539,670,1229,1228,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,3,8.651491399811276,8.614301132104101,0,2,0,-9,15,0,2,-119.5892731495455,0,0,0,47,1,4,1,2,1,2019,1,2,12,0,44,40,15,1,0,1,0,14.58267251648688,14.58267251648688,0,0,0,0,0,0,0,1,1,0,5.355315201064062,0,0,0,43.83,43.24,5,1,0,0,7,5,1,518.6666666666666,0,0,0 +540,671,1230,-9,1232,1231,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.5579936208879,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,1580.666666666667,0,0,0 +540,671,1231,1232,-9,-9,1,1,1,31,1,0,1,0,1,-9,2,1,0,1,7.791705786456631,7.905588282544996,0,2,0,-9,8,0,2,27.19942540902376,0,0,0,29,1,4,1,2,3,2019,1,2,33,12,41,39,15,1,12,1,0,8.387682611610472,8.387682611610472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.12,59.53,2,1,0,0,2,4,1,1580.666666666667,0,0,0 +540,671,1232,1231,-9,-9,2,1,0,29,1,0,1,0,1,-9,5,1,0,4,7.91236659264571,8.087698625122924,0,2,0,-9,10,0,-2,61.36684626212717,0,1,1,31,1,1,1,1,2,2019,1,1,11,1,37,37,15,1,1,1,0,6.866739786635833,6.866739786635833,0,0,0,0,0,0,0,1,1,0,2.756619378634996,0,0,0,44.26,59.43,5,1,0,0,2,4,1,1580.666666666667,0,0,0 +541,672,1233,1234,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,3,8.546833241875984,8.529452099058126,0,1,0,-9,2,0,3,-107.6727877641223,0,1,0,25,1,4,1,-9,-9,2019,1,1,9,0,43,41,15,1,0,1,0,14.64264134762228,14.64264134762228,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,4,5,1,503.5,0,0,0 +541,672,1234,1233,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.591900899610943,8.599890277852387,0,1,0,-9,2,0,-3,150.5500524822696,0,1,1,28,2,3,1,1,2,2019,1,2,11,3,38,38,15,1,3,1,0,14.29517203522036,14.29517203522036,0,0,0,0,0,0,0,1,1,0,3.368501116582966,0,0,0,46.44,59.62,6,1,0,0,4,5,1,503.5,0,0,0 +542,673,1235,1237,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,4,7.687215060820032,7.940069967350973,0,2,0,-9,20,0,-1,-29.85648159652261,0,0,1,43,2,3,1,-9,-9,2019,1,2,8,0,37,40,15,1,0,1,0,9.137804429775111,9.137804429775111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,2,5,1,718,0,0,0 +542,673,1236,-9,1235,1237,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.6089268324063,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,5,1,718,0,0,0 +542,673,1237,1235,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.965833719372396,8.921528415258882,0,2,0,-9,22,0,1,-27.24368671140832,0,0,0,42,2,4,1,-9,-9,2019,1,1,13,2,46,44,15,1,2,1,0,21.10027712960787,21.10027712960787,0,0,0,0,0,0,0,0,0,0,4.798660854101052,0,0,0,52.41,44.88,6,1,0,0,2,5,1,718,0,0,0 +542,673,1238,-9,1235,1237,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.9248422248531,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,2,5,1,718,0,0,0 +543,674,1239,1240,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,7.417627351578618,7.292148230571122,1,0,-9,52,0,3,15.04856390240744,0,0,0,70,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.983688282635699,7.341547718424083,0,0,59.7,32.49,6,1,0,0,10,2,0,479,0,0,0 +543,674,1240,1239,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,5.444993477473575,5.228790678380855,1,0,-9,52,0,-3,2.691836021314556,0,0,0,73,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.853320322227749,5.161015403277358,0,0,59.53,56.44,7,1,0,0,10,2,0,479,0,0,0 +544,675,1241,-9,-9,-9,1,1,0,51,2,0,1,0,3,-9,2,1,0,2,8.066858927923404,8.302789470041917,0,4,0,0,0,-9,0,-937.3124683793693,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,35,15,1,0,-9,0,12.57074220616251,12.57074220616251,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.85,53.17,5,1,0,0,8,3,0,411,0,0,0 +545,676,1242,1243,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.129410175238863,8.4654573047615,0,1,0,-9,23,0,-3,40.41960354652199,0,0,0,56,1,4,1,2,2,2019,1,1,14,2,30,23,15,1,2,1,0,13.15910110046409,13.15910110046409,0,0,0,0,0,0,0,0,0,0,5.277234759088453,0,0,0,37.54,56.92,5,1,0,0,9,5,0,1522.5,0,0,0 +545,676,1243,1242,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,4,8.92848898615661,9.388749785703391,0,1,0,-9,23,0,3,44.08399026202323,0,0,0,53,1,3,1,-9,-9,2019,1,2,13,1,45,43,15,1,1,1,0,15.10397755220401,15.10397755220401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,0,1522.5,0,0,0 +546,677,1244,1245,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,2,4.784291688403781,7.092991493999915,6.801248222521527,1,0,-9,51,0,-1,137.5526344843363,0,0,0,74,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.135068503940726,6.308817442860993,0,0,57.97,37.36,4,1,0,0,2,2,1,684.5,0,0,0 +546,677,1245,1244,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,1,15.99783382593754,0,0,0,73,1,2,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.706315121516364,0,0,0,49.51,41.82,4,1,0,0,2,2,1,684.5,0,0,0 +547,678,1246,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,3,8.873407462522854,8.381877622342254,0,3,0,0,0,-9,0,-1069.715983310581,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,35,35,15,1,2,-9,0,21.19355024096626,21.19355024096626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,3,1,0,0,12,5,0,267,0,0,0 +548,679,1247,1248,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,5,0,-1,-76.73195947010306,0,0,0,80,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,2,2,1,1223.5,0,0,0 +548,679,1248,1247,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,7.521958278451063,7.347660106662536,1,0,-9,60,0,1,-53.8666492695433,0,0,0,79,2,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.985956780460947,7.412572902500652,0,0,52.33,43.43,6,1,0,0,2,2,1,1223.5,0,0,0 +549,680,1249,1250,-9,-9,2,1,1,68,1,0,0,0,2,-9,2,1,0,3,7.682502677745865,8.433964742042058,6.908593722373381,1,0,-9,52,0,-3,20.85493392844187,0,0,0,71,3,2,3,3,3,2019,2,1,9,0,32,40,15,1,0,4,0,10.802970995166,10.802970995166,0,0,0,0,0,0,0,1,1,0,3.44496385794978,6.98751289130472,7.270737622829991,1,50.85,49.73,6,1,0,0,4,3,1,569,0,0,0 +549,680,1250,1249,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,52,0,3,-88.79554690634623,0,0,0,68,2,3,1,3,3,2019,3,2,18,6,0,0,15,4,6,1,0,0,0,1,0,7.99064448172563,0,0,0,0,1,1,0,0,0,0,0,44.69,33.87,6,1,0,0,4,3,1,569,0,0,0 +550,681,1251,-9,-9,-9,1,1,0,30,2,0,0,0,1,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1004.433915389348,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,50.87,6,1,0,0,2,1,1,723,0,0,0 +551,682,1252,1253,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,7.564686098492464,7.818864089058278,1,0,-9,9,0,-1,-54.19474363102187,0,0,0,65,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.743456784639478,7.801937699127718,0,0,57.16,56.15,6,1,0,0,12,3,1,904.5,0,0,0 +551,682,1253,1252,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,6.318119651171362,6.563416826028652,1,0,-9,9,0,1,57.26526000398977,0,0,0,64,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.077739510786442,6.262021741336148,0,0,64.82000000000001,37.68,6,1,0,0,12,3,1,904.5,0,0,0 +552,683,1254,-9,-9,-9,1,1,0,39,3,0,3,0,2,-9,97,3,0,3,0,5.522643005971503,5.380788062702076,4,0,0,0,-9,0,-1011.426067238445,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.345084394148243,0,119.1827412249965,3,35.89,53.83,5,1,0,0,2,2,0,860,0,0,0 +552,683,1255,-9,1254,-9,3,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-992.5248063881161,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,0,860,0,0,0 +552,683,1256,-9,1254,-9,4,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-752.9144257241431,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,2,0,860,0,0,0 +552,683,1257,-9,1254,-9,2,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1056.406241999155,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,0,860,0,0,0 +553,684,1258,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,8.177195898328014,8.391413509115342,0,3,0,0,0,-9,0,-988.8309898263209,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,25,30,15,1,1,-9,0,18.4702029038439,18.4702029038439,0,0,0,0,0,0,0,0,0,0,0,0,27.81994046669362,3,39.65,56.19,4,1,0,0,2,4,1,762,0,0,0 +553,684,1259,-9,1258,-9,3,1,1,17,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-914.2758260927601,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,1,0,2,4,1,762,0,0,0 +553,685,1260,-9,1258,-9,2,1,1,23,2,0,0,0,3,-9,2,1,0,4,7.79382226633845,7.983090891383716,0,3,0,0,0,-9,0,-840.7458023721431,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,0,15,1,0,-9,1,6.955490173690842,6.955490173690842,0,0,0,0,0,0,0,0,0,0,0,0,7.931187802458966,3,57.16,56.15,6,1,0,0,2,3,1,89,0,0,0 +554,686,1261,-9,1264,1263,4,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1092.973886783175,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,5,2,0,0,10,3,1,696.5,0,0,0 +554,686,1262,-9,1264,1263,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.246319589038,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,2,0,0,10,3,1,696.5,0,0,0 +554,686,1263,1264,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,2,7.804113080555115,7.772137743287722,5.073698000223354,2,0,-9,19,0,5,-74.90622227874148,0,0,0,45,1,3,1,3,3,2019,1,2,12,1,41,41,15,1,1,1,0,7.313331206349362,7.313331206349362,0,0,0,0,0,0,0,1,0,1,6.795923906949342,5.02174614131538,0,0,51.51,44.35,3,1,0,0,10,3,1,696.5,0,0,0 +554,686,1264,1263,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,3,7.518064414403634,7.198950323476172,0,2,0,-9,19,0,-5,-54.6592033825094,0,0,0,50,1,2,1,2,2,2019,1,1,12,0,28,21,15,1,0,1,0,7.758713727705558,7.758713727705558,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.33,53.46,5,3,0,1,10,3,1,696.5,0,0,0 +555,687,1265,1266,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,4,8.73600355058379,8.308487399159839,0,2,0,-9,15,0,3,-44.24842689167808,0,0,0,34,1,5,1,1,3,2019,1,1,6,0,50,57,15,1,0,1,0,13.36286775885201,13.36286775885201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,721,0,0,0 +555,687,1266,1265,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,5,8.430845020811061,8.626357548983062,0,2,0,-9,14,0,-3,13.19576314856431,0,0,1,37,1,4,1,1,1,2019,1,2,9,1,28,35,15,1,1,1,0,29.38621933537176,29.38621933537176,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.32,57.18,7,1,0,0,10,5,1,721,0,0,0 +555,687,1267,-9,1266,1265,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.260657909331,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,721,0,0,0 +556,688,1268,-9,1271,1270,5,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1058.843123261952,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,5,3,1,816,0,0,0 +556,688,1269,-9,1271,1270,4,1,0,15,2,0,2,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-907.8107913230109,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,3,1,0,0,5,3,1,816,0,0,0 +556,688,1270,1271,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.026862694818725,8.1791223700101,0,2,0,-9,9,0,8,24.83235320644824,0,0,0,42,2,4,1,2,3,2019,1,1,9,0,44,42,15,1,0,1,0,8.421620758566167,8.421620758566167,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,5,3,1,816,0,0,0 +556,688,1271,1270,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,4,8.21570036879938,8.031355767895048,0,2,0,-9,9,0,-8,-12.42674796588745,0,0,1,50,2,4,1,2,3,2019,1,2,18,6,38,38,15,1,6,1,0,11.98187401141029,11.98187401141029,0,0,0,0,0,0,0,1,1,0,0,0,0,3,38.16,52.53,5,1,0,0,5,3,1,816,0,0,0 +556,689,1272,-9,1271,1270,3,1,1,23,2,0,2,0,2,-9,2,1,0,4,7.893239492715733,8.075462339507906,0,3,0,0,0,-9,0,-1111.438356449679,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,39,15,1,0,-9,1,8.040144316175269,8.040144316175269,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,5,1,0,0,5,3,1,181,0,0,0 +557,690,1273,1275,-9,-9,1,1,0,44,1,0,4,0,2,0,7,2,0,4,0,0,0,2,0,-9,7,0,-1,34.13950879329288,-9,0,1,45,2,4,1,1,1,2019,3,2,8,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.283102495092282,0,0,0,57.16,56.15,6,1,0,0,4,4,1,845.6,0,0,0 +557,690,1274,-9,1273,1275,6,1,0,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.406361067686,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,845.6,0,0,0 +557,690,1275,1273,-9,-9,2,1,1,45,1,0,4,0,2,-9,1,1,0,4,9.020598402151862,9.026814670187875,0,2,0,-9,7,0,1,-28.99746506460672,0,0,0,44,2,4,2,2,1,2019,2,1,8,0,50,40,15,1,0,2,0,23.25464968752014,23.25464968752014,0,0,0,0,0,0,0,1,1,0,7.886298566999505,0,0,0,61.27,43.2,6,1,0,0,4,4,1,845.6,0,0,0 +557,690,1276,-9,1273,1275,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.5932068908575,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,845.6,0,0,0 +557,690,1277,-9,1273,1275,3,1,1,16,2,0,4,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.357682590819,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,4,4,1,845.6,0,0,0 +558,691,1278,1279,-9,-9,2,1,0,36,1,0,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,2,-42.94604186561833,0,0,1,34,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.2,43.53,6,1,0,0,4,2,0,818,0,0,0 +558,691,1279,1278,-9,-9,1,1,1,34,1,0,4,0,2,-9,2,1,0,3,8.284275902964563,8.26321612209599,0,2,0,-9,6,0,-2,-148.7196357795504,0,0,0,36,2,3,3,2,3,2019,2,2,14,2,43,45,15,1,2,3,0,10.51260683944666,10.51260683944666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.88,46.3,5,1,0,0,4,2,0,818,0,0,0 +558,691,1280,-9,1278,1279,5,1,0,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.931124395955,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,818,0,0,0 +558,691,1281,-9,1278,1279,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.901860949209,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,0,818,0,0,0 +558,691,1282,-9,1278,-9,3,1,0,16,2,0,4,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1076.170107917414,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.64,60.82,3,1,0,0,4,2,0,818,0,0,0 +558,691,1283,-9,1278,-9,4,1,1,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.906527283879,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,0,818,0,0,0 +559,692,1284,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,2,0,6.988642600570074,7.050604860037724,3,0,0,0,-9,0,-915.5808489984945,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.111966219756696,7.273131471166726,0,3,62.51,44.7,6,1,0,0,10,2,1,215,0,0,0 +560,693,1285,1286,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,4,6.720779243780794,8.025533289806759,8.353236500201945,1,0,-9,4,0,1,-2.625879961374813,0,0,0,58,1,5,1,-9,-9,2019,3,1,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.55837940896734,8.550922340633148,0,3,52.4,55.58,5,1,0,0,11,4,1,527,0,0,0 +560,693,1286,1285,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,5,7.009187590109588,7.536445100072974,5.752445160551057,1,0,-9,31,0,-1,67.06739925398452,0,0,0,59,1,4,3,1,1,2019,2,2,10,0,12,17,15,1,0,4,0,11.51925577731022,11.51925577731022,0,0,0,0,0,0,0,0,0,0,4.367283919029196,5.550405520555143,0,0,54.1,59.11,6,1,0,0,11,4,1,527,0,0,0 +561,694,1287,-9,1288,1289,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.8734302906063,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,4,1,716.6666666666666,0,0,0 +561,694,1288,1289,-9,-9,2,1,0,33,1,0,1,0,2,-9,2,1,0,4,7.887216702802286,7.968833920400101,0,2,0,-9,6,0,-8,53.86908164615659,0,0,1,41,3,4,1,3,2,2019,1,1,12,0,18,39,15,1,0,1,0,15.5968469755053,15.5968469755053,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,6,1,0,0,11,4,1,716.6666666666666,0,0,0 +561,694,1289,1288,-9,-9,1,1,1,41,1,0,1,0,3,-9,1,1,0,4,8.108703695204904,8.139425972318454,0,2,0,-9,6,0,8,58.67203676706742,0,0,0,33,2,4,1,3,3,2019,1,2,10,0,48,45,15,1,0,1,0,9.842746300575568,9.842746300575568,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,11,4,1,716.6666666666666,0,0,0 +562,695,1290,1291,-9,-9,1,1,1,41,1,1,2,0,2,-9,2,1,0,3,8.85899641663433,8.969778502402482,0,2,0,-9,6,0,10,-17.57418461322734,0,0,0,31,2,4,1,2,2,2019,1,2,6,0,50,0,15,1,0,1,0,20.29680834496312,20.29680834496312,0,0,0,0,0,0,0,1,1,0,4.781556301968872,0,0,0,58.32,50.22,6,1,0,0,9,4,1,679,0,0,0 +562,695,1291,1290,-9,-9,2,1,0,31,1,1,2,0,2,-9,2,1,0,4,7.349322785882706,7.349358609193501,0,2,0,-9,6,0,-10,-58.30800015030852,0,0,1,41,2,3,1,-9,-9,2019,1,1,10,0,15,0,15,1,0,1,0,10.61239727353863,10.61239727353863,0,0,0,0,0,0,0,1,1,0,3.082350147463612,0,0,0,43.14,61.33,2,1,0,0,9,4,1,679,0,0,0 +562,695,1292,-9,1291,1290,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.3571783732264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,679,0,0,0 +562,695,1293,-9,1291,1290,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.9058615083734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,679,0,0,0 +563,696,1294,1295,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,4,7.982585957570238,8.145989378078552,0,1,0,-9,8,0,-1,-93.16989404814876,0,0,0,52,1,4,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,11.5096979094456,11.5096979094456,0,0,0,0,0,0,0,0,0,0,1.42042265419723,0,0,0,41.17,59.31,6,1,0,0,11,4,1,344.5,0,0,0 +563,696,1295,1294,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.096535446843506,7.918055661215281,0,1,0,-9,8,0,1,-12.62194906011087,0,0,0,51,2,4,1,-9,-9,2019,1,1,6,0,45,35,15,1,0,1,0,8.458885686215611,8.458885686215611,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,6,1,0,0,11,4,1,344.5,0,0,0 +564,697,1296,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,2,1,0,2,0,0,0,3,0,0,0,-9,0,-977.2828586250344,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.189610736318516,0,0,0,36.78,48.57,4,1,0,0,1,1,1,782,0,0,0 +565,698,1297,1298,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,4,9.685731038171909,9.768880728701705,0,2,0,-9,18,0,-6,27.08432413125674,0,0,0,56,2,3,1,2,2,2019,1,2,9,0,40,50,15,1,1,1,0,37.37982721108487,37.37982721108487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,5,0,0,8,5,1,548,0,0,0 +565,698,1298,1297,-9,-9,2,1,0,56,1,0,1,0,2,-9,1,1,0,3,6.682049957253888,7.243914673481811,0,2,0,-9,24,0,6,-62.03862827907047,-9,0,0,50,1,4,1,3,3,2019,1,1,11,0,35,0,15,1,2,1,0,2.864508968830652,2.864508968830652,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,4,0,0,8,5,1,548,0,0,0 +566,699,1299,-9,1300,1302,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.765700749663,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,5,1,300.75,0,0,0 +566,699,1300,1302,-9,-9,1,1,0,32,1,0,2,0,1,-9,2,1,0,4,9.072750105168598,9.02989443910351,0,2,0,-9,7,0,0,91.93952034449501,0,0,1,32,3,4,1,2,-9,2019,1,2,16,4,19,26,15,1,4,1,0,38.97461644965748,38.97461644965748,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.88,61.85,6,1,0,0,10,5,1,300.75,0,0,0 +566,699,1301,-9,1300,1302,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.808157264504,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,5,1,300.75,0,0,0 +566,699,1302,1300,-9,-9,2,1,1,32,1,0,2,0,3,-9,2,1,0,4,8.698280507751413,8.36926535464935,0,2,0,-9,7,0,0,-49.58429213969848,0,0,0,32,1,4,1,-9,-9,2019,1,1,8,0,50,40,15,1,0,1,0,9.399329657402657,9.399329657402657,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.1,42.92,6,1,0,0,10,5,1,300.75,0,0,0 +567,700,1303,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,4,0,7.139094255719844,6.857153075967521,3,0,0,0,-9,0,-1036.703218067265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.162653713033623,6.784595180778571,0,0,58.15,52.91,2,1,0,0,2,2,1,872,0,0,0 +567,701,1304,-9,1303,-9,2,1,1,34,2,0,0,0,1,-9,2,1,0,4,8.495599775423214,8.646810335702002,0,3,0,0,0,-9,0,-1072.156716738594,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,39,22,15,1,2,-9,1,14.09542260862113,14.09542260862113,0,0,0,0,0,0,0,1,1,0,.5561030417208251,0,0,0,40.77,61.04,5,1,0,0,2,5,1,77,0,0,0 +568,702,1305,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,8,3,1,1,0,4.357891811241641,4.469571507083303,3,0,0,0,-9,0,-946.5813065601936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.449661690318797,0,0,31.9,19.36,2,1,0,0,6,2,0,763,0,0,0 +569,703,1306,1307,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,4,7.653106884091803,7.304703728274864,0,1,0,-9,5,0,4,-58.45286151112253,0,0,0,60,2,5,1,2,1,2019,1,2,13,3,34,36,15,1,3,1,0,8.577866609470751,8.577866609470751,0,0,0,0,0,0,0,1,1,0,3.809078279923139,0,8.272014865503452,3,38.34,62.12,3,1,0,0,7,4,1,304,0,0,0 +569,703,1307,1306,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,5,8.120546650657182,8.383043579420477,6.795949713295838,1,0,-9,5,0,-4,-17.75984486993728,0,0,0,64,2,4,1,3,3,2019,1,1,6,0,49,49,15,1,0,1,0,6.30670011209609,6.30670011209609,0,0,0,0,0,0,0,1,1,0,6.764675393871541,6.729262152413731,0,0,59.43,58.05,6,1,0,0,7,4,1,304,0,0,0 +570,704,1308,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,7.180335156865752,7.234881257369597,3,0,0,0,-9,0,-1139.909556527587,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,2.674763253271115,0,0,1,1,0,0,7.188286184136531,0,0,64.3,16.47,2,1,0,0,7,2,1,800,0,0,0 +571,705,1309,1312,-9,-9,1,1,0,34,1,0,3,0,3,-9,2,1,0,5,6.602900991675261,7.067723934131205,0,2,0,-9,5,0,-7,25.51489278246147,0,0,1,41,2,4,1,-9,-9,2019,1,2,6,0,18,18,15,1,0,1,0,5.819675096900508,5.819675096900508,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,4,1,0,0,11,2,1,1000.8,0,0,0 +571,705,1310,-9,1309,1312,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.35180977601,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,1,1000.8,0,0,0 +571,705,1311,-9,1309,1312,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.5635027514373,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,1000.8,0,0,0 +571,705,1312,1309,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,4,7.841761171463035,7.731488437929579,0,2,0,-9,5,0,7,34.77659911205464,0,0,0,34,3,5,1,-9,-9,2019,1,1,6,0,32,33,15,1,0,1,0,8.693176459964004,8.693176459964004,0,0,0,0,0,0,0,1,1,0,5.485811732215383,0,0,0,45.68,47.6,7,1,0,0,11,2,1,1000.8,0,0,0 +571,705,1313,-9,1309,1312,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.0955975748284,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,1,1000.8,0,0,0 +572,706,1314,-9,1316,1315,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.5383865496592,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,1,598.8,0,0,0 +572,706,1315,1316,-9,-9,2,1,1,39,1,0,3,0,1,-9,2,1,0,4,8.369180738776553,8.634089407091727,0,2,0,-9,6,0,1,102.9849325142848,0,0,0,38,2,3,1,2,2,2019,1,1,9,1,53,0,15,1,1,1,0,8.896808975098718,8.896808975098718,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.84,51.67,5,1,0,0,5,3,1,598.8,0,0,0 +572,706,1316,1315,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,3,7.446653177583934,7.565995484107571,0,2,0,-9,6,0,-1,-65.76501137245839,0,0,1,39,1,4,1,2,2,2019,1,2,12,0,30,0,15,1,0,1,0,7.58621649834783,7.58621649834783,0,0,0,0,0,0,0,1,1,0,3.343098660438114,0,0,0,38.89,57.72,5,1,0,0,5,3,1,598.8,0,0,0 +572,706,1317,-9,1316,1315,4,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-816.333215587013,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,1,598.8,0,0,0 +572,706,1318,-9,1316,1315,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.4130696794689,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,598.8,0,0,0 +573,707,1319,-9,-9,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,3,8.653499265160342,8.331705834346078,0,3,0,0,0,-9,0,-998.1265286491102,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,40,0,15,1,0,-9,0,12.84467551395002,12.84467551395002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,48.12,6,1,0,0,5,5,1,2124,0,0,0 +574,708,1320,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,2,8.271383982746139,8.507283583699921,0,3,0,-9,0,-9,0,-909.4993671898521,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,36,0,15,1,3,-9,0,12.38528367054366,12.38528367054366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,34.11,2,1,0,1,8,4,0,1451,0,0,0 +575,709,1321,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1026.02174334375,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,2.077439353141149,0,0,1,1,0,0,0,0,0,34.9,31.12,3,1,0,0,13,1,0,1403,0,0,0 +576,710,1322,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1142.930270903141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.79,20.69,5,1,0,0,4,1,0,182,0,0,0 +577,711,1323,1324,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,0,0,0,0,0,61,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.684047408642415,0,0,0,57.16,56.15,6,1,0,0,5,1,1,474,0,0,0 +577,711,1324,1323,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,41,0,0,0,0,0,0,61,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.016297251730114,0,0,0,57.16,56.15,6,1,0,0,5,1,1,474,0,0,0 +578,712,1325,1326,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.979910283760454,8.919703998696606,0,1,0,-9,2,0,-2,53.0287244637131,-9,0,0,34,1,3,1,-9,-9,2019,1,1,7,0,37,0,15,1,0,1,0,31.70628813936418,31.70628813936418,0,0,0,0,0,0,0,1,1,0,7.414404424914083,0,0,0,57.16,56.15,6,1,0,0,2,5,1,332,0,0,0 +578,712,1326,1325,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,3,8.588352154395048,8.80137654861932,6.250991252671017,1,0,-9,2,0,2,90.98134872940217,0,0,1,32,1,4,1,2,2,2019,1,2,19,8,38,0,15,1,8,1,0,17.20918954333601,17.20918954333601,0,0,0,0,0,0,0,1,1,0,6.045819862601132,0,0,0,53.1,33.54,6,1,0,0,2,5,1,332,0,0,0 +579,713,1327,1328,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,9.105402781940027,9.454943320961911,0,1,0,-9,5,0,3,31.89552715691908,0,0,0,52,2,4,3,2,1,2019,2,2,9,0,42,43,15,1,0,3,0,28.40004573855365,28.40004573855365,0,0,0,0,0,0,0,0,0,0,7.193196714952427,0,0,0,55.19,54.26,2,1,0,0,12,5,1,618.5,0,0,0 +579,713,1328,1327,-9,-9,2,1,0,52,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,5,0,-3,-31.1742995257153,0,0,0,55,1,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,1,1,0,12,5,1,618.5,0,0,0 +580,714,1329,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,6.212023482713784,5.747612453955417,3,0,0,0,-9,0,-1015.311455539855,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.189036114303653,5.973663310758925,0,0,40.3,42.59,3,1,0,0,4,2,1,604,0,0,0 +581,715,1330,-9,1331,-9,3,1,1,16,2,0,0,0,2,-9,2,2,0,5,6.191305611240625,6.218236535730935,0,3,0,0,0,-9,0,-1002.678564476073,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,4,1,900,0,0,0 +581,715,1331,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,2,1,0,3,7.369605623477669,8.07327392672374,7.093621323450193,3,0,0,0,-9,0,-1089.483050812017,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,19,20,15,1,5,-9,0,12.37271594070271,12.37271594070271,0,0,0,0,0,0,0,1,1,0,6.316872088946615,0,0,0,54.97,47.63,6,1,0,0,9,4,1,900,0,0,0 +581,716,1332,-9,1331,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,3,6.884224744181785,6.904071178443568,0,3,0,0,0,-9,0,-1083.145079051514,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,25,0,15,1,0,-9,1,5.380204798518506,5.380204798518506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,49.66,6,1,0,0,9,2,1,3011,0,0,0 +582,717,1333,-9,1335,1334,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.8801682797395,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,2,3,0,493,0,0,0 +582,717,1334,1335,-9,-9,1,1,1,30,1,1,2,0,2,-9,2,1,0,2,8.350057865584343,8.496202765595907,0,2,0,-9,8,0,0,-16.24293449306916,0,0,0,30,2,4,1,3,3,2019,1,2,18,7,43,48,15,1,7,1,0,10.18044026306622,10.18044026306622,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,46.63,5,1,0,0,2,3,0,493,0,0,0 +582,717,1335,1334,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,4,7.396790396913232,7.638595382553664,0,2,0,-9,8,0,0,-12.79394244391414,0,0,1,30,2,2,1,-9,-9,2019,1,1,6,0,30,22,15,1,0,1,0,7.609403118631735,7.609403118631735,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.9,52.64,6,1,0,0,2,3,0,493,0,0,0 +582,717,1336,-9,1335,1334,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.467462105937,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,0,493,0,0,0 +583,718,1337,1338,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,4,8.519130371762923,8.581275507043589,0,2,0,-9,6,0,7,-69.98146459794465,0,0,0,26,2,4,1,2,-9,2019,1,2,7,0,38,60,15,1,0,1,0,13.22388108636244,13.22388108636244,0,0,0,0,0,0,0,1,1,0,0,0,16.0727619471917,3,52.3,54.68,4,1,0,0,5,4,0,847,0,0,0 +583,718,1338,1337,-9,-9,2,1,0,26,1,1,1,0,2,-9,2,1,0,4,8.102464098669117,7.96394919884615,0,2,0,-9,6,0,-7,-7.298308764677211,0,1,1,33,2,4,1,-9,-9,2019,1,1,8,1,42,43,15,1,1,1,0,9.336312939521243,9.336312939521243,0,0,0,0,0,0,0,1,1,0,0,0,6.452086602348039,3,58.15,52.91,6,1,0,0,5,4,0,847,0,0,0 +583,718,1339,-9,1338,1337,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.5401552461359,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,4,0,847,0,0,0 +584,719,1340,1341,-9,-9,2,1,0,62,1,0,0,0,2,-9,1,1,0,4,8.061995889771945,8.573648149044725,7.683148066994063,1,0,-9,22,0,-1,69.93920107107465,0,0,0,63,3,3,1,3,3,2019,1,1,9,0,70,70,15,1,0,1,0,6.361458669387469,6.361458669387469,0,0,0,0,0,0,0,0,0,0,7.282978910800745,6.948416189390187,23.55716482336714,3,58.55,46.11,6,1,0,0,6,5,1,715.5,0,0,0 +584,719,1341,1340,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,3,7.807075017847546,7.729709674146304,0,1,0,-9,22,0,1,-48.18083741461055,0,0,0,62,2,4,1,3,3,2019,1,2,8,0,30,44,15,1,0,1,0,6.558256776702877,6.558256776702877,0,0,0,0,0,0,0,0,0,0,0,0,18.06314660704213,3,68.08,27.97,6,1,0,0,6,5,1,715.5,0,0,0 +585,720,1342,-9,1344,1343,5,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.03878217445,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,4,1,451.2,0,0,0 +585,720,1343,1344,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,5,8.962570384478752,9.015622188060849,0,2,0,-9,7,0,0,-38.43701271299022,0,0,0,41,1,3,1,-9,-9,2019,1,1,25,9,40,40,15,1,9,1,0,18.32983736149982,18.32983736149982,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.26,71.08,2,1,0,0,6,4,1,451.2,0,0,0 +585,720,1344,1343,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,3,7.164010370208429,7.356714453554988,0,2,0,-9,19,0,0,-62.01740734817024,0,0,1,41,1,5,1,2,2,2019,1,2,25,11,11,12,15,1,11,1,0,16.91649596286869,16.91649596286869,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.12,48.48,2,1,0,0,6,4,1,451.2,0,0,0 +585,720,1345,-9,1344,1343,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.283642867323,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,1,451.2,0,0,0 +585,720,1346,-9,1344,1343,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.3310420123144,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,6,4,1,451.2,0,0,0 +586,721,1347,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.799366007447913,8.091440935161131,0,3,0,0,0,-9,0,-1044.98431301628,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,42,44,15,1,0,-9,0,8.495632451499899,8.495632451499899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,13,3,1,834,0,0,0 +587,722,1348,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,6.924086742755961,6.990222402506181,3,0,0,0,-9,0,-985.2092731681603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.396411630802162,6.8240118677965,0,0,57.32,45.08,6,1,0,0,10,2,1,1348,0,0,0 +588,723,1349,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,3,8.235013598140029,8.484750239771721,0,3,0,0,0,-9,0,-1031.079244865849,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,38,46,15,1,0,-9,0,11.16525945969271,11.16525945969271,0,0,0,0,0,0,0,1,1,0,6.69442947779235,0,0,0,62.66,52.4,7,4,0,0,8,4,1,1737,0,0,0 +589,724,1350,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,8.003155632376195,7.565478755119747,0,3,0,0,0,-9,0,-1000.460452260932,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,31,31,15,1,0,-9,0,9.652612459594748,9.652612459594748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,6,1,0,1,6,3,0,2157,0,0,0 +590,725,1351,-9,-9,-9,2,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,5.882173913685185,6.272974646980286,3,0,0,0,-9,0,-1132.383345295376,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.187234030774731,0,0,52,42.08,2,1,0,0,11,2,1,1212,0,0,0 +591,726,1352,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,1,1,0,4,8.287260793583371,8.169531990928016,0,3,0,0,0,-9,0,-937.1500107146179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,38,60,15,1,1,-9,0,10.34877257253001,10.34877257253001,0,0,0,0,0,0,0,0,0,0,1.045302206771176,0,0,0,55.19,54.26,6,1,0,0,4,4,1,2127,0,0,0 +592,727,1353,1354,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,3,8.05469906244563,8.053749556701108,0,1,0,-9,10,0,-11,-93.17847365696298,0,0,0,60,2,4,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,9.390967567537533,9.390967567537533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,6,1,0,0,9,4,1,282,0,0,0 +592,727,1354,1353,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.270746760489931,7.726546057750951,0,1,0,-9,10,0,11,96.49320630318775,0,0,0,49,2,3,1,3,2,2019,1,2,7,0,26,30,15,1,0,1,0,12.17064275536035,12.17064275536035,0,0,0,0,0,0,0,0,0,0,0,0,11.11327213484526,3,57.16,56.15,2,1,0,0,9,4,1,282,0,0,0 +593,728,1355,-9,1359,1356,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1059.815339575701,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,2,0,0,9,5,0,415.2,0,0,0 +593,728,1356,1359,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,3,9.580979758763322,9.509253898847927,0,2,0,-9,1,-9,-2,106.6117397763766,-9,0,0,45,1,5,1,2,1,2019,1,1,7,0,62,0,15,1,0,1,0,27.9595601036355,27.9595601036355,0,0,0,0,0,0,0,0,0,0,9.477075878235704,0,0,0,57.33,53.46,7,3,0,0,9,5,0,415.2,0,0,0 +593,728,1357,-9,1359,1356,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-954.8287411593008,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,9,5,0,415.2,0,0,0 +593,728,1358,-9,1359,1356,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1026.412328874442,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,2,0,0,9,5,0,415.2,0,0,0 +593,728,1359,1356,-9,-9,1,1,0,45,1,0,3,0,1,-9,1,1,0,5,7.937872368788569,7.819454846420988,0,2,0,-9,1,-9,2,-39.73087747301739,-9,0,0,43,1,3,1,1,2,2019,1,2,12,0,25,0,15,1,0,1,0,10.67797360731016,10.67797360731016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.13,57.22,5,1,0,0,9,5,0,415.2,0,0,0 +594,729,1360,-9,1362,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1000.743824101678,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,4,2,0,1017,0,0,0 +594,729,1361,-9,1362,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,-9,0,-9,0,-1078.210175656912,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,4,2,0,1017,0,0,0 +594,729,1362,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,2,1,0,3,7.810289820174181,7.895032931765675,0,4,0,-9,0,-9,0,-878.4414895203943,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,37,0,15,1,0,-9,0,7.223986541500481,7.223986541500481,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,3,4,0,0,4,2,0,1017,0,0,0 +595,730,1363,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-956.0949005741799,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,27,6,1,0,0,12,1,0,536,0,0,0 +595,731,1364,-9,-9,-9,2,1,0,43,2,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1003.961946537609,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80.45460431275876,3,38.14,46.54,4,1,0,0,12,1,0,53,0,0,0 +596,732,1365,1366,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.822764516466339,8.828391319360344,0,1,0,-9,6,0,12,24.18730789247811,0,0,0,47,2,3,1,2,2,2019,1,1,8,0,42,44,15,1,0,1,0,22.50741113437174,22.50741113437174,0,0,0,0,0,0,0,0,0,0,5.323602084254674,0,0,0,57.73,54.53,6,1,0,0,4,5,1,766.5,0,0,0 +596,732,1366,1365,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,8.845676485560586,9.025772325697957,0,1,0,-9,6,0,-12,-147.3894752181029,0,0,0,59,2,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,24.31780606585331,24.31780606585331,0,0,0,0,0,0,0,0,0,0,4.542188543620631,0,7.951135875198521,3,65.73999999999999,27.66,5,1,0,0,4,5,1,766.5,0,0,0 +597,733,1367,-9,1369,1368,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.5418211392138,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,926,0,0,0 +597,733,1368,1369,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,4,8.91752841854314,8.442590215451078,0,2,0,-9,5,0,2,41.09789114955579,0,0,0,38,1,4,1,2,3,2019,1,2,8,0,45,53,15,1,0,1,0,14.62343079727318,14.62343079727318,0,0,0,0,0,0,0,1,1,0,3.621606783838437,0,0,0,54.79,55.86,6,1,0,0,7,5,1,926,0,0,0 +597,733,1369,1368,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,4,8.588348989771484,8.814774345000151,0,2,0,-9,5,0,-2,39.90123696919039,0,0,1,40,1,4,1,1,1,2019,1,1,16,4,26,26,15,1,4,1,0,17.55224432708167,17.55224432708167,0,0,0,0,0,0,0,1,1,0,1.859893618933681,0,0,0,43.54,59.6,6,1,0,0,7,5,1,926,0,0,0 +597,733,1370,-9,1369,1368,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.9804126858095,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,7,5,1,926,0,0,0 +598,734,1371,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1046.634339327961,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,19,6,0,30,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.147302282276038,0,0,0,34.58,54.84,5,3,1,0,9,1,1,539,0,0,0 +599,735,1372,1375,-9,-9,3,1,1,46,1,1,2,0,2,-9,2,1,0,4,8.24185186936548,8.561459424059494,0,2,0,-9,6,0,1,188.9449162517118,0,0,0,45,3,3,1,-9,-9,2019,1,1,9,0,40,38,15,1,1,1,0,13.78521790376339,13.78521790376339,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,1,0,0,7,5,1,577.5,0,0,0 +599,735,1373,-9,1375,1372,2,1,0,14,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1139.607849005258,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,5,1,577.5,0,0,0 +599,735,1374,-9,1375,1372,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.3220932915619,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,577.5,0,0,0 +599,735,1375,1372,-9,-9,1,1,0,45,1,1,2,0,3,-9,2,1,0,3,8.606897246715873,8.518954533373368,5.245152337900196,2,0,-9,6,0,-1,3.056073794998058,0,0,0,46,2,4,1,2,2,2019,1,3,9,0,30,26,15,1,0,1,0,24.98549910747284,24.98549910747284,0,0,0,0,0,0,0,1,1,0,5.908260371474052,0,0,0,48.23,50.71,6,1,0,0,7,5,1,577.5,0,0,0 +600,736,1376,1377,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,1,0,0,0,0,66,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.961529596289963,0,0,0,52,48,5,1,0,0,9,1,1,504.5,0,0,0 +600,736,1377,1376,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,27,0,-1,0,0,0,0,67,2,3,3,2,2,2019,4,2,8,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,9,1,1,504.5,0,0,0 +601,737,1378,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,5.378546918098871,5.683886030887919,3,0,0,0,-9,0,-1167.720982240067,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,1,1.78142967250644,0,1.798768189549838,0,.6484687031442118,54.50248027169066,1,1,0,1.056477054076076,5.512333377296827,0,0,51.85,11.83,6,1,0,0,10,2,1,294,0,0,0 +602,738,1379,1380,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,5.193631603210647,5.29184892509447,1,0,-9,6,0,-2,-269.1079908069551,0,0,0,68,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.290809824172674,5.047038782330611,0,0,39.65,48.16,7,1,0,0,12,1,0,267.5,0,0,0 +602,738,1380,1379,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,2,-164.4313271891403,0,0,0,66,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,37,5,1,0,0,12,1,0,267.5,0,0,0 +603,739,1381,1382,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,6.607824336121317,6.597019755712148,1,0,-9,32,0,9,38.14002907702793,0,0,0,61,2,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.324190438956519,6.542575293843885,0,0,61.12,51.57,6,1,0,0,5,4,1,360.5,0,0,0 +603,739,1382,1381,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,3,8.534930496993283,9.038892372445696,0,1,0,-9,28,0,0,-4.790747277358504,0,0,0,70,2,4,3,-9,-9,2019,2,2,13,1,44,42,15,1,1,4,0,14.24084469250121,14.24084469250121,0,0,0,0,0,0,0,1,1,0,2.765982816009195,0,0,0,44.29,40.27,6,1,0,0,5,4,1,360.5,0,0,0 +603,740,1383,-9,1382,1381,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.327791761679105,8.004373651477023,0,3,0,0,0,-9,0,-920.6603851690168,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,33,58,15,1,0,-9,1,14.65876489557958,14.65876489557958,0,0,0,0,0,0,0,1,1,0,2.71643183411816,0,0,0,57.16,56.15,6,1,0,0,5,4,1,681,0,0,0 +604,741,1384,1385,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,43,0,-1,-182.2387605688962,0,0,0,65,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.674991815675486,0,0,0,49.69,52.99,7,1,0,0,2,2,1,809.5,0,0,0 +604,741,1385,1384,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,7.125155102790802,6.852601057105616,1,0,-9,43,0,1,-24.74689440020941,0,0,0,64,1,3,3,3,2,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.018362647956424,0,0,22.05,55.93,3,1,0,0,2,2,1,809.5,0,0,0 +605,742,1386,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,6,3,0,3,0,8.383002822684283,8.3086273446551,3,0,0,0,-9,0,-910.1358470491434,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.889378179723071,8.449006921087916,8.554331326126199,3,33.37,60.58,6,1,0,0,7,5,1,911,0,0,0 +605,743,1387,-9,1386,-9,2,1,0,43,2,0,0,0,2,-9,97,3,0,5,0,0,0,3,0,0,0,-9,0,-927.4224113242731,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.57,42.92,7,1,0,0,7,1,1,114,0,0,0 +606,744,1388,1390,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,3,8.563624443450312,8.278702523328375,0,1,0,-9,11,0,-6,18.60079695585692,0,0,0,52,3,3,1,-9,-9,2019,1,1,11,0,50,50,15,1,0,1,0,10.13803285414328,10.13803285414328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,5,1,0,0,8,5,0,902.3333333333334,0,0,0 +606,744,1389,-9,1390,1388,3,1,0,17,2,0,0,1,2,0,7,2,0,4,0,0,0,1,0,0,0,-9,0,-994.1687538427855,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,8,5,0,902.3333333333334,0,0,0 +606,744,1390,1388,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,3,7.71147230898506,7.87921037864959,0,1,0,-9,15,0,6,-17.0787145119968,0,0,0,46,2,3,1,2,3,2019,1,2,10,0,28,30,15,1,0,1,0,11.60664659177482,11.60664659177482,0,0,0,0,0,0,0,1,1,0,1.019623352682874,0,0,0,57.33,53.46,6,1,0,0,8,5,0,902.3333333333334,0,0,0 +607,745,1391,1392,-9,-9,2,1,0,56,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,8,0,-18,0,0,0,0,74,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.112516196284027,0,0,0,41.92,41.2,6,3,0,0,9,1,1,560.5,0,0,0 +607,745,1392,1391,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,18,0,0,0,0,56,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.38,41.59,2,3,0,0,9,1,1,560.5,0,0,0 +607,746,1393,-9,1391,1392,3,1,0,26,3,0,0,0,1,-9,2,1,0,4,8.608761313830357,8.362994693978962,0,3,0,0,0,-9,0,-1051.10046840196,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.165691815818557,0,0,0,26.02,67.39,3,3,0,0,9,5,1,929,0,0,0 +607,747,1394,-9,1391,1392,4,1,0,23,2,0,0,0,1,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-844.7622949008103,1,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,38,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.72,64.82000000000001,6,3,0,0,9,1,1,740,0,0,0 +607,748,1395,-9,1391,1392,5,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1031.753000465875,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,60.79,6,3,0,0,9,1,1,779,0,0,0 +608,749,1396,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1052.509848860178,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.680789232562766,0,0,1,1,0,0,0,0,0,48.88,51.79,5,1,0,0,7,1,1,1098,0,0,0 +609,750,1397,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,4,8.807135136063348,8.866858536509035,0,3,0,0,0,-9,0,-972.4675583755655,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,43,43,15,1,0,-9,0,22.04653685256339,22.04653685256339,0,0,0,0,0,0,0,1,1,0,7.256997850593729,0,0,0,65.06,41.58,6,1,0,0,9,5,1,1280,0,0,0 +610,751,1398,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-840.7569645456542,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,53.79,42.87,6,1,0,0,6,1,0,1819,0,0,0 +611,752,1399,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1029.753196773646,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.352079401256637,0,0,0,1,1,0,2.117026447526903,0,0,0,68.09999999999999,17.42,7,1,0,0,6,1,0,1002,0,0,0 +612,753,1400,1401,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,5.30236409586219,5.556644438365753,1,0,-9,7,0,6,54.94821891574457,0,0,0,62,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.535515217298146,5.322103356204667,0,0,60.12,54.8,6,1,0,0,11,2,1,981,0,0,0 +612,753,1401,1400,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,7.290487417489337,7.181034878832256,1,0,-9,7,0,-6,-14.10157080255212,0,0,0,68,2,4,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.662202449777272,7.109376282408126,0,0,49,48,4,1,0,0,11,2,1,981,0,0,0 +613,754,1402,-9,1403,1404,3,1,1,11,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1128.669006376532,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,45,4,3,0,0,6,2,1,734,0,0,0 +613,754,1403,1404,-9,-9,2,1,0,40,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,4,0,2,-60.71461844978329,0,0,1,38,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.68996600626309,3,60.11,30.68,7,3,0,0,6,2,1,734,0,0,0 +613,754,1404,1403,-9,-9,1,1,1,38,1,0,3,0,2,-9,2,1,0,3,7.589326511631117,7.493970443036539,0,2,0,-9,4,0,-2,-287.1331616339031,0,0,0,40,3,3,3,3,-9,2019,2,2,7,0,34,37,15,1,0,3,0,5.809256067081479,5.809256067081479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,3,0,0,6,2,1,734,0,0,0 +613,754,1405,-9,1403,1404,4,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.3292147939482,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,734,0,0,0 +613,754,1406,-9,1403,1404,6,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.1575307549116,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,2,1,734,0,0,0 +614,755,1407,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,2,0,5.563018015742858,5.481686057802006,3,0,0,0,-9,0,-1014.173079979948,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.026419647368851,0,0,1,1,0,0,5.303903369216602,0,0,68.85000000000001,10.26,4,1,0,0,2,2,0,928,0,0,0 +615,756,1408,1409,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,3,9.034033984510963,8.873300179012411,0,1,0,-9,42,0,0,-47.41336429262012,0,0,0,62,2,4,3,3,2,2019,2,1,9,1,16,8,15,1,1,3,0,48.55631594289666,48.55631594289666,0,0,0,0,0,0,0,0,0,0,2.272854144197691,0,0,0,54.37,54.8,6,1,0,0,9,5,1,838.5,0,0,0 +615,756,1409,1408,-9,-9,1,1,1,62,1,0,0,0,2,-9,97,3,0,4,6.803602149942374,6.922961449529068,0,1,0,-9,42,0,0,30.35597492810493,0,0,0,62,2,3,1,-9,2,2019,3,2,11,0,2,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.969405040467734,0,0,0,48.87,58.55,6,1,0,0,9,5,1,838.5,0,0,0 +616,757,1410,1411,-9,-9,1,1,1,70,1,0,0,0,2,-9,2,1,0,3,8.866735362462675,9.130046886669811,5.842205545883272,1,0,-9,6,0,3,-104.0053718131759,0,0,0,67,2,3,1,2,2,2019,1,2,21,9,45,40,15,1,9,1,0,21.62211515919364,21.62211515919364,0,0,0,0,0,0,0,1,1,0,7.733285624706785,6.188530830704063,0,0,43.59,59.64,3,1,0,1,8,5,0,336.5,0,0,0 +616,757,1411,1410,-9,-9,2,1,0,67,1,0,0,0,2,-9,1,1,0,3,8.289450697708313,8.190232895035233,5.292200013094426,1,0,-9,6,0,-3,34.17951756269504,0,0,0,70,2,3,1,-9,-9,2019,1,1,11,0,20,30,15,1,1,1,0,15.40985658434079,15.40985658434079,0,0,0,0,0,0,0,1,1,0,4.401532062055561,5.390069211996533,0,0,50,47,5,1,0,0,8,5,0,336.5,0,0,0 +617,758,1412,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,2,1,0,3,7.906513812965305,8.10811350792976,7.155634352027808,4,0,0,0,-9,0,-934.3276316702215,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,10,35,36,15,1,10,-9,0,9.261168006793717,9.261168006793717,0,0,0,0,0,0,0,1,0,1,7.794116829588622,0,.959058649379245,3,29.7,41.88,2,1,0,0,12,4,1,533,0,0,0 +617,758,1413,-9,1412,-9,4,1,1,16,2,0,1,0,2,-9,3,2,0,1,0,0,0,4,0,0,0,-9,0,-1067.661519197582,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.17,28.19,3,1,1,0,12,4,1,533,0,0,0 +618,759,1414,1415,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,34,0,-7,-150.9499161602248,0,0,0,58,1,4,1,3,2,2019,3,1,9,1,0,32,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,128.9717036415215,3,63.65,49.16,7,3,0,0,6,5,1,827,0,0,0 +618,759,1415,1414,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,4,8.870363638990055,9.646991245407268,8.441567611537694,1,0,-9,35,0,7,-136.4114312273589,0,0,0,51,2,3,3,3,3,2019,2,2,10,1,50,0,15,1,1,3,0,16.00934481693961,16.00934481693961,0,0,0,0,0,0,0,1,1,0,9.232462145650373,8.559134044930136,122.9257046359392,3,57.16,56.15,6,3,0,0,6,5,1,827,0,0,0 +618,760,1416,-9,1414,1415,3,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.052368982071407,8.104886708665491,0,3,0,0,0,-9,0,-1053.737049816359,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,37,15,1,1,-9,1,9.586724675912491,9.586724675912491,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.02,43.98,6,3,0,0,6,4,1,99,0,0,0 +618,761,1417,-9,1414,1415,4,1,0,23,2,0,0,0,1,-9,7,2,0,4,7.296521735064794,7.092223020158762,0,3,0,0,0,-9,0,-1069.220422450372,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,8,20,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.2284884640842,3,47.01,58,6,3,0,0,6,3,1,365,0,0,0 +619,762,1418,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1062.679648143072,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.80640661659559,0,0,0,57.16,56.15,7,1,0,0,4,1,0,360,0,0,0 +620,763,1419,1420,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,7.46803868951929,7.431919510268111,1,0,-9,41,0,-3,-81.08855848152952,0,0,0,68,1,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.637948082239327,7.121129266627063,7.637740013918309,3,57.16,56.15,7,1,0,0,9,4,1,696,0,0,0 +620,763,1420,1419,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,5,0,8.006349384054033,7.886565071777173,1,0,-9,41,0,3,2.306084009994472,0,0,0,65,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.176616908341258,8.141579483336265,.6195961720845304,3,57.06,57.76,6,1,0,0,9,4,1,696,0,0,0 +621,764,1421,-9,-9,-9,1,1,0,52,3,1,1,0,2,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-993.7761629708463,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64312957614799,3,35.45,24.41,3,1,1,0,13,1,0,1308,0,0,0 +621,765,1422,-9,1421,-9,2,1,0,20,3,1,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1037.173509578123,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.33,53.39,6,1,1,0,13,1,0,437,0,0,0 +621,765,1423,-9,1422,-9,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1005.460564087344,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,1,0,437,0,0,0 +622,766,1424,1425,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,5.73919745398445,5.708206456781061,1,0,-9,32,0,1,64.41721968642346,0,0,0,67,2,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.385080193890786,5.692724173056356,0,0,59.7,32.49,4,1,0,0,10,2,0,216,0,0,0 +622,766,1425,1424,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,-49.63599227603481,0,0,0,68,3,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.9,45.86,6,1,0,0,10,2,0,216,0,0,0 +623,767,1426,1428,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,3,8.076671492174482,8.038538787102807,0,2,0,-9,1,-9,7,75.01874219462486,-9,0,0,25,2,3,1,-9,-9,2019,1,1,10,1,37,0,15,1,1,1,0,12.69566279124842,12.69566279124842,0,0,0,0,0,0,0,1,1,0,2.816511860984337,0,0,0,39.42,53.83,5,1,0,0,10,4,0,935.3333333333334,0,0,0 +623,767,1427,-9,1428,1426,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-867.9558954042379,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,0,935.3333333333334,0,0,0 +623,767,1428,1426,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,3,7.520711649298626,7.541913848714016,0,2,0,-9,1,-9,-7,18.06251223901079,-9,1,1,32,2,3,1,-9,-9,2019,1,2,8,1,28,0,15,1,1,1,0,6.910696347396901,6.910696347396901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,10,4,0,935.3333333333334,0,0,0 +624,768,1429,1430,-9,-9,2,1,1,56,1,0,1,0,1,-9,2,1,0,3,9.370466994645726,9.781341770076693,0,2,0,-9,33,0,3,-68.77464875387652,0,0,0,53,1,4,1,2,2,2019,1,1,23,11,53,47,15,1,11,1,0,32.48777925656842,32.48777925656842,0,0,0,0,0,0,0,0,0,0,7.511799772811393,0,0,0,46.55,58.3,5,1,0,0,8,5,1,408,0,0,0 +624,768,1430,1429,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,4,9.469309499961517,9.995884143564878,0,2,0,-9,33,0,-3,-108.568935207936,0,0,0,56,1,3,1,1,1,2019,1,2,10,0,44,40,15,1,0,1,0,36.91332088075713,36.91332088075713,0,0,0,0,0,0,0,0,0,0,5.295574591144788,0,0,0,48.87,58.55,5,3,0,0,8,5,1,408,0,0,0 +624,769,1431,-9,1430,1429,3,1,1,20,2,0,1,1,2,0,7,2,0,3,0,6.259847374739024,6.405244483613401,3,0,0,0,-9,0,-1063.043259433282,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.280224930207248,0,0,0,42.77,46.48,4,2,0,0,8,2,1,361,0,0,0 +625,770,1432,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,5.811062462020023,5.736244020685779,0,3,0,-9,0,-9,0,-1000.922578111946,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,7,0,15,1,0,-9,0,6.227389379639154,6.227389379639154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,7,4,0,0,4,2,0,271,0,0,0 +626,771,1433,-9,1435,1437,5,1,1,17,2,0,3,1,2,0,7,2,0,4,6.155536701321054,6.078933716359107,0,2,0,0,0,-9,0,-1071.579674924116,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,14,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,.5180427728867406,0,0,0,48,59,5,1,0,0,13,3,1,1282.8,0,0,0 +626,771,1434,-9,1435,1437,6,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.0789809189687,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,13,3,1,1282.8,0,0,0 +626,771,1435,1437,-9,-9,2,1,0,53,1,0,3,0,2,-9,2,1,0,3,7.26235442481564,7.335257323354958,0,2,0,-9,35,0,-3,-89.41719964553475,0,0,0,56,2,2,1,2,3,2019,1,1,9,0,25,25,15,1,0,1,0,7.234650334235863,7.234650334235863,0,0,0,0,0,0,0,1,0,1,0,0,2.450066498685401,3,42.37,48.08,5,1,0,1,13,3,1,1282.8,0,0,0 +626,771,1436,-9,1435,1437,7,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-968.8904069634253,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,1,0,0,13,3,1,1282.8,0,0,0 +626,771,1437,1435,-9,-9,1,1,1,56,1,0,3,0,2,-9,2,1,0,2,8.438207348277365,7.989850862306288,0,2,0,-9,34,0,3,39.98314715407345,0,0,0,53,2,3,1,3,3,2019,1,2,12,2,40,38,15,1,2,1,0,11.68153051105818,11.68153051105818,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.13,38.12,6,1,0,0,13,3,1,1282.8,0,0,0 +626,772,1438,-9,1435,1437,3,1,1,26,2,0,3,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-952.3155952405509,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,29,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.61,32.37,3,1,0,0,13,1,1,2331,0,0,0 +627,773,1439,1441,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,2,8.287966532619103,8.33525129916142,0,2,0,-9,5,0,1,91.25802487074441,0,0,0,40,2,3,3,2,2,2019,2,1,12,0,38,37,15,1,0,3,0,9.010147540565432,9.010147540565432,0,0,0,0,0,0,0,1,1,0,0,0,73.05015687313144,3,42.16,36.22,4,1,0,0,5,3,0,1068,0,0,0 +627,773,1440,-9,1441,1439,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.7469275358179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,0,1068,0,0,0 +627,773,1441,1439,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-1,-49.04114346686674,0,0,1,41,2,2,1,2,2,2019,3,2,22,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.1026488977978,3,32.84,60.85,5,1,0,0,5,3,0,1068,0,0,0 +627,773,1442,-9,1441,1439,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1151.367056366243,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,0,1068,0,0,0 +627,773,1443,-9,1441,1439,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-806.0315580319871,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,5,3,0,1068,0,0,0 +628,774,1444,1446,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,3,8.142285170484874,7.869473855156781,0,2,0,-9,8,0,0,-4.876714896867643,0,0,1,36,1,3,1,2,2,2019,1,1,12,0,50,40,15,1,0,1,0,8.391631614519662,8.391631614519662,0,0,0,0,0,0,0,0,0,0,3.725222803954133,0,0,0,52.01,48.98,4,1,0,0,2,5,1,578.3333333333334,0,0,0 +628,774,1445,-9,1444,1446,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.183792212123,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,2,5,1,578.3333333333334,0,0,0 +628,774,1446,1444,-9,-9,1,1,1,36,1,1,1,0,1,-9,1,1,0,3,9.119168989113794,9.26369427231019,0,2,0,-9,8,0,0,-35.77899036161681,0,0,0,36,1,3,1,1,1,2019,1,2,9,0,50,55,15,1,0,1,0,21.73270366259372,21.73270366259372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,6,1,0,0,2,5,1,578.3333333333334,0,0,0 +629,775,1447,1448,-9,-9,2,1,1,73,1,0,1,0,3,-9,4,3,0,3,0,5.297335442512138,5.28135002190908,2,0,-9,29,0,15,4.624512654606518,0,0,0,58,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.249807954713184,0,0,53,47,6,1,0,0,5,1,1,937.5,0,0,0 +629,775,1448,1447,-9,-9,1,1,0,58,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,29,0,-15,-71.48987710177778,0,0,0,73,3,3,3,3,3,2019,4,2,9,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.32,48.12,5,3,0,0,5,1,1,937.5,0,0,0 +629,776,1449,-9,1448,1447,7,1,1,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-944.8084172199675,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,4,2,0,0,5,1,1,373,0,0,0 +630,777,1450,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,4,0,7.989161606272176,7.539386416955105,3,0,0,0,-9,0,-1041.55325174671,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.121267194839961,7.305897831991548,0,0,49.97,56.66,6,1,0,0,10,3,1,326,0,0,0 +631,778,1451,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,2,7.319839619537315,7.246029665030454,0,3,0,0,0,-9,0,-903.0983856601092,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,15,15,15,1,2,-9,0,11.71891791976581,11.71891791976581,0,0,0,0,0,0,0,1,1,0,3.564991269211865,0,0,3,47.8,27,6,1,0,1,7,3,1,212,0,0,0 +632,779,1452,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,4,4.639389723225887,7.240212139477691,7.382224495507586,3,0,0,0,-9,0,-1027.428925855583,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.753663843222022,7.612140526123184,0,0,51.83,57.2,6,1,0,0,6,3,1,1064,0,0,0 +633,780,1453,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,4,7.295222810388267,7.342188242902659,0,3,0,0,0,-9,0,-995.1469642616543,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,15,30,15,1,0,-9,0,10.91381807770947,10.91381807770947,0,0,0,0,0,0,0,0,0,0,0,0,15.15925012683093,3,54.2,57.49,6,1,0,1,9,3,0,403,0,0,0 +633,781,1454,-9,1453,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,3,8.592157438016342,8.623119532487255,0,3,0,0,0,-9,0,-1015.537832695526,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,36,45,15,1,3,-9,1,21.1563777425365,21.1563777425365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.83,59.68,5,1,0,0,9,5,0,346,0,0,0 +633,782,1455,-9,1453,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.45910710116758,8.131228681387501,0,3,0,0,0,-9,0,-1060.963153138041,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,53,48,15,1,0,-9,1,10.61242909319741,10.61242909319741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,6,1,0,0,9,4,0,899,0,0,0 +634,783,1456,-9,1458,1457,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-887.9195997900043,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,1964.666666666667,0,0,0 +634,783,1457,1458,-9,-9,2,1,1,24,1,0,1,0,2,-9,2,1,0,5,8.926968836284408,9.039833954238018,0,2,0,-9,6,0,0,-187.5849227309482,0,1,0,24,2,4,1,-9,-9,2019,1,1,11,2,52,60,15,1,2,1,0,15.30586042388267,15.30586042388267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.31,58.56,6,1,0,0,4,5,1,1964.666666666667,0,0,0 +634,783,1458,1457,-9,-9,1,1,0,24,1,0,1,0,2,-9,2,1,0,4,7.336325065802344,7.470263039379371,0,2,0,-9,6,0,0,-5.543917902977993,0,1,1,24,2,5,1,2,-9,2019,1,2,26,10,23,20,15,1,10,1,0,7.375603525632524,7.375603525632524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.95,70.31,6,1,0,0,4,5,1,1964.666666666667,0,0,0 +635,784,1459,1462,-9,-9,2,1,1,49,1,0,4,0,2,-9,2,1,0,2,7.68133690703525,7.828550973684565,0,2,0,-9,25,0,3,18.52443815191632,0,0,0,46,3,4,1,2,2,2019,1,1,8,0,38,42,15,1,0,1,0,7.885946798338955,7.885946798338955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,44.16,5,1,0,0,13,2,0,809.25,0,0,0 +635,784,1460,-9,1462,1459,10,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.989732474475,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,2,0,809.25,0,0,0 +635,784,1461,-9,1462,1459,9,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.0834416100628,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,2,0,809.25,0,0,0 +635,784,1462,1459,-9,-9,1,1,0,46,1,0,4,0,3,-9,2,1,0,4,6.850277199949252,6.860609384574307,0,2,0,-9,25,0,-3,-23.24203390154486,0,0,0,49,2,2,1,3,-9,2019,1,2,10,0,16,0,15,1,1,1,0,7.507757989136008,7.507757989136008,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,13,2,0,809.25,0,0,0 +635,785,1463,-9,1462,1459,3,1,0,23,2,0,4,0,2,1,2,1,0,4,7.424313128354341,7.72802371360688,0,3,0,0,0,-9,0,-956.1250306112702,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,4.656346226789084,4.656346226789084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.84,48.97,5,1,0,0,13,3,0,581,0,0,0 +635,786,1464,-9,1462,1459,4,1,0,22,2,0,4,0,2,-9,2,1,0,5,6.613100063686952,6.313501996871642,0,3,0,0,0,-9,0,-1022.218894923243,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,12,12,15,1,0,-9,1,4.550750594700902,4.550750594700902,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,6,1,0,0,13,2,0,979,0,0,0 +635,787,1465,-9,1462,1459,5,1,0,20,2,0,4,0,2,1,2,1,0,5,7.639894591448486,7.277697780275934,0,3,0,0,0,-9,0,-1001.523475682739,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,4.548990498314607,4.548990498314607,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,0,642,0,0,0 +635,788,1466,-9,1462,1459,6,1,1,19,2,0,4,0,2,1,2,1,0,3,6.294266060647946,6.230182534041447,0,3,0,0,0,-9,0,-1055.644994407457,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,7,0,15,1,1,-9,1,9.666282651358479,9.666282651358479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,13,2,0,1195,0,0,0 +636,789,1467,1468,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,4.865473157949475,5.596485320334311,1,0,-9,42,0,9,122.5438858607058,0,0,0,64,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.309126308699224,5.287100351218347,9.395243001332609,3,37.83,42.07,4,1,0,0,1,2,1,723,0,0,0 +636,789,1468,1467,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,4,6.756870815503953,7.358434584755028,6.365618909119755,1,0,-9,5,0,0,20.6537354054964,0,0,0,73,2,3,3,-9,-9,2019,2,1,6,0,16,21,15,1,0,4,0,6.455613607677959,6.455613607677959,0,0,0,0,0,0,0,1,1,0,0,6.503071178434484,0,0,44.13,57.97,7,1,0,0,1,2,1,723,0,0,0 +637,790,1469,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,1,1,0,4,8.493648187345711,8.508344607818616,0,3,0,0,0,-9,0,-1057.879259183909,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,40,40,15,1,0,-9,0,11.13306670381272,11.13306670381272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,4,0,269,0,0,0 +638,791,1470,-9,1472,1474,7,1,1,10,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1025.712030007087,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,6,1,1,1089.8,0,0,0 +638,791,1471,-9,1472,1474,6,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.894893264782,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,6,1,1,1089.8,0,0,0 +638,791,1472,1474,-9,-9,1,1,0,46,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,24,0,-10,0,0,0,0,56,3,1,3,3,3,2019,4,2,12,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.10294669136691,2,44.12,42.96,4,3,0,0,6,1,1,1089.8,0,0,0 +638,791,1473,-9,1472,1474,5,1,0,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-922.6963364149512,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,6,1,1,1089.8,0,0,0 +638,791,1474,1472,1475,-9,2,1,1,56,1,0,4,0,3,-9,3,3,0,1,0,0,0,2,0,-9,24,0,10,0,0,0,0,46,3,4,3,3,3,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.22,38.57,4,3,1,0,6,1,1,1089.8,0,0,0 +638,792,1475,-9,-9,-9,3,1,0,72,3,0,4,0,3,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-1009.858051833989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.1,30.31,3,3,1,0,6,1,1,308,0,0,0 +638,793,1476,-9,1472,1474,4,1,0,18,2,0,4,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1102.981806842307,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.11232885333833,3,59.68,56.78,7,3,1,0,6,1,1,688,0,0,0 +639,794,1477,1479,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,2,7.850187232885114,7.663082884680064,0,2,0,-9,3,0,-2,-10.27314864763942,0,1,1,29,2,4,1,2,-9,2019,1,3,25,12,38,38,15,1,12,1,0,7.633241909888335,7.633241909888335,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.07,31.5,3,1,0,0,2,3,0,572,0,0,0 +639,794,1478,-9,1477,1479,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1102.873910797853,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,3,0,572,0,0,0 +639,794,1479,1477,-9,-9,3,1,1,29,1,0,1,0,2,-9,2,1,0,4,7.237149256970911,7.283154728416251,0,2,0,-9,3,0,2,109.0377488877417,0,1,0,27,2,2,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,5.64159655443524,5.64159655443524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,5,0,0,2,3,0,572,0,0,0 +640,795,1480,1481,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,8.494904697398793,8.294724505812058,0,1,0,-9,28,0,-3,-29.89654332717882,0,0,0,56,2,4,1,2,3,2019,1,2,16,5,35,41,15,1,5,1,0,12.26965970860975,12.26965970860975,0,0,0,0,0,0,0,0,0,0,3.090186303006669,0,0,0,51.67,60.18,6,1,0,0,2,5,1,789.5,0,0,0 +640,795,1481,1480,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.376665110549084,8.8443799293936,6.491018146569155,1,0,-9,28,0,3,49.13513884159502,0,0,0,53,2,5,1,3,3,2019,1,1,14,3,45,50,15,1,3,1,0,13.30942270922022,13.30942270922022,0,0,0,0,0,0,0,0,0,0,0,6.805104693818486,0,0,42.85,60.33,6,1,0,0,2,5,1,789.5,0,0,0 +640,796,1482,-9,1480,1481,3,1,1,20,2,0,0,0,2,-9,2,1,0,5,8.448899606005023,8.387613211546833,0,3,0,0,0,-9,0,-1001.749975318343,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,45,40,15,1,0,-9,1,8.569797385779728,8.569797385779728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,2,4,1,559,0,0,0 +640,797,1483,-9,1480,1481,4,1,1,20,2,0,0,0,2,-9,1,1,0,4,7.343581100679796,7.600127904207091,0,3,0,0,0,-9,0,-949.3497223054534,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,5.509301126547187,5.509301126547187,0,0,0,0,0,0,0,0,0,0,1.448348058787049,0,0,0,50.29,52.35,5,1,0,0,2,3,1,668,0,0,0 +641,798,1484,-9,-9,-9,1,1,1,33,3,0,0,0,2,-9,2,1,0,4,8.106408567736846,7.970068491053754,0,3,0,0,0,-9,0,-936.5389718318788,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,40,30,15,1,0,-9,0,7.429782845202774,7.429782845202774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,13,4,1,247,0,0,0 +642,799,1485,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-967.3142448962892,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.199247166666706,0,0,0,58.16,9.710000000000001,1,1,0,0,10,1,0,455,0,0,0 +643,800,1486,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,6.704975862250121,6.393728125291188,3,0,0,0,-9,0,-1055.945417520843,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.917248341688492,4.269486966590308,0,1,1,0,5.584781708065972,6.84983028904152,0,0,35.07,31.5,5,1,0,0,10,2,1,1331,0,0,0 +643,801,1487,-9,1486,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,4,9.006490205739478,8.982349105908758,5.286184012480192,3,0,0,0,-9,0,-1059.227856383412,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,37,15,1,0,-9,1,26.75871501768575,26.75871501768575,0,0,0,0,0,0,0,1,1,0,5.805089795657342,0,11.25561756973948,3,51.83,57.2,6,1,0,0,10,5,1,572,0,0,0 +644,802,1488,-9,-9,-9,1,1,0,44,2,0,1,0,1,-9,2,1,0,4,8.34215049705494,8.358549581890149,6.274735559460097,4,0,0,0,-9,0,-1005.545392894,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,38,37,15,1,0,-9,0,13.54663000664658,13.54663000664658,0,0,0,0,0,0,0,1,1,0,6.860254094321525,0,0,0,48.53,58.91,5,1,0,0,8,4,1,906.5,0,0,0 +644,802,1489,-9,1488,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1051.173712590439,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,906.5,0,0,0 +645,803,1490,1491,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,5.984527552216115,6.126556817471742,1,0,-9,10,0,2,-57.43842506964037,0,0,0,69,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.994184402771603,6.115018276638476,0,0,55.36,51.57,6,1,0,0,9,2,1,452,0,0,0 +645,803,1491,1490,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,2.558227708586409,2.349979467263717,1,0,-9,10,0,-2,10.50249070429291,0,0,0,71,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.593651653837164,2.406360481536022,0,0,60.42,42.39,6,1,0,0,9,2,1,452,0,0,0 +646,804,1492,-9,1494,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1005.432663047232,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,2,0,660,0,0,0 +646,804,1493,-9,1494,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.516773194242,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,2,0,660,0,0,0 +646,804,1494,-9,-9,-9,1,1,0,26,2,0,2,0,3,-9,2,1,0,4,6.737188511525673,6.779110050840968,0,4,0,0,0,-9,0,-1055.934154258763,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,25,0,15,1,0,-9,0,4.306265448610398,4.306265448610398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.13,44.35,6,1,0,0,7,2,0,660,0,0,0 +647,805,1495,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,3,8.938667867913534,9.132299190793727,0,3,0,-9,0,1,0,-972.3709197519617,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,22,11,48,48,15,1,11,-9,0,19.45038117335687,19.45038117335687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,4,3,0,0,8,5,1,654.6666666666666,0,0,0 +647,805,1496,-9,1495,-9,3,1,1,13,2,0,0,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-1149.651039532735,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,2,0,0,8,5,1,654.6666666666666,0,0,0 +647,805,1497,-9,1495,-9,4,1,0,12,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-956.0618141386129,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,8,5,1,654.6666666666666,0,0,0 +647,806,1498,-9,-9,-9,2,1,1,49,3,0,0,0,1,-9,2,1,0,5,9.489040402805049,9.375377898599742,0,3,0,-9,0,1,0,-1050.840422491038,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,45,9,15,1,3,-9,0,38.81290758919199,38.81290758919199,0,0,0,0,0,0,0,0,0,0,5.304606863577802,0,0,0,39.23,60.49,3,1,0,0,8,5,1,263,0,0,0 +648,807,1499,1500,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,6.207214264212817,6.173504961851106,1,0,-9,51,0,1,-3.65434155844444,0,0,0,68,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,12.48670361303146,0,0,0,0,1,1,0,0,6.231365954689798,0,0,55.6,47.8,6,1,0,0,9,2,1,467,0,0,0 +648,807,1500,1499,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-1,65.36619223679118,0,0,0,69,3,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,9,2,1,467,0,0,0 +649,808,1501,1503,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,5,8.109873761656749,8.140253240084409,0,2,0,-9,26,0,4,122.0436516093242,0,0,0,44,2,3,1,2,2,2019,1,1,8,0,42,45,15,1,0,1,0,11.51616938241479,11.51616938241479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,5,1,0,0,4,3,1,1213.25,0,0,0 +649,808,1502,-9,1503,1501,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.912570951329,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3201568689431989,0,0,0,47.77,56.48,6,1,0,0,4,3,1,1213.25,0,0,0 +649,808,1503,1501,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,3,7.508297255720486,7.315670457961539,0,2,0,-9,26,0,-4,-57.23878814191033,0,0,1,48,2,5,1,2,2,2019,1,2,8,0,35,28,15,1,0,1,0,7.956334630441479,7.956334630441479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,6,1,0,0,4,3,1,1213.25,0,0,0 +649,808,1504,-9,1503,1501,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.009915122589,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,1,1213.25,0,0,0 +650,809,1505,-9,1506,1508,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.8440376511205,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,5,1,301,0,0,0 +650,809,1506,1508,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,9.018701445148883,9.021936044583839,0,2,0,-9,11,0,1,20.75844750754942,0,0,0,44,1,4,1,2,1,2019,1,2,8,0,35,35,15,1,0,1,0,23.5340284606037,23.5340284606037,0,0,0,0,0,0,0,1,1,0,.5467987683779649,0,0,0,51.24,58.84,5,1,0,0,2,5,1,301,0,0,0 +650,809,1507,-9,1506,1508,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.0373359990964,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,301,0,0,0 +650,809,1508,1506,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.901382780955819,8.840427821371719,0,2,0,-9,11,0,-1,36.73856420224861,0,0,0,45,1,4,1,2,1,2019,1,1,21,10,39,38,15,1,10,1,0,15.91889113874499,15.91889113874499,0,0,0,0,0,0,0,1,1,0,3.683046340416068,0,0,0,39.23,60.15,3,1,0,0,2,5,1,301,0,0,0 +651,810,1509,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,2,1,0,5,6.821195123523183,6.59877576817567,0,3,0,0,0,-9,0,-1147.422793122626,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,12,15,1,0,-9,0,7.262974156319513,7.262974156319513,0,0,0,0,0,0,0,1,1,0,0,0,9.768416869279154,3,44.57,39.93,7,1,0,0,7,2,0,739,0,0,0 +652,811,1510,1511,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,4,8.690935782286193,8.497647333110482,0,1,0,-9,7,0,-12,-78.76180151509851,0,0,0,47,1,4,1,2,1,2019,1,1,9,0,45,55,15,1,0,1,0,15.12853738548661,15.12853738548661,0,0,0,0,0,0,0,0,0,0,6.481861590220856,0,0,0,57.16,56.15,6,1,0,0,5,5,1,1404,0,0,0 +652,811,1511,1510,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,4,8.263369932187963,8.468967261530905,0,1,0,-9,7,0,12,66.23054509846821,0,0,0,35,2,4,1,2,2,2019,1,2,8,0,38,37,15,1,0,1,0,13.56589795900752,13.56589795900752,0,0,0,0,0,0,0,0,0,0,3.070143796513247,0,0,0,54.2,57.49,6,1,0,0,5,5,1,1404,0,0,0 +653,812,1512,-9,1513,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-939.9994275470232,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,1,1278.5,0,0,0 +653,812,1513,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,3,7.188707536502646,7.20765325407096,0,4,0,0,0,-9,0,-947.450657647643,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,16,16,15,1,0,-9,0,8.18189186522739,8.18189186522739,0,0,0,0,0,0,0,1,1,0,0,0,25.00135392126601,3,41.64,38.99,5,1,0,1,10,2,1,1278.5,0,0,0 +654,813,1514,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-951.1772067384771,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.91,36.02,3,1,0,0,13,1,0,849,0,0,0 +655,814,1515,1516,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,4,7.522362799078118,7.702083422108596,0,1,0,-9,8,0,14,54.67540785528702,0,0,0,49,1,3,1,3,2,2019,1,1,13,2,50,45,15,1,2,1,0,6.03093122755998,6.03093122755998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,1,10,5,1,317.5,0,0,0 +655,814,1516,1515,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,3,8.798055322696118,8.892607214659721,0,1,0,-9,8,0,-14,-89.77966905338063,0,0,0,63,2,4,1,2,2,2019,1,2,23,11,40,55,15,1,11,1,0,16.1659438782561,16.1659438782561,0,0,0,0,0,0,0,0,0,0,3.285042199377964,0,0,0,18.97,57.66,5,1,0,1,10,5,1,317.5,0,0,0 +656,815,1517,-9,-9,-9,1,1,1,36,3,0,1,0,1,-9,2,1,0,5,9.514394766446406,9.743426266286018,0,4,0,-9,0,-9,0,-1100.40327948831,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,80,0,15,1,0,-9,0,28.70669661653857,28.70669661653857,0,0,0,0,0,0,0,0,0,0,4.647584774765277,0,0,0,52,59,7,1,0,0,2,5,1,1442,0,0,0 +656,815,1518,-9,-9,1517,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1038.803328374963,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,2,5,1,1442,0,0,0 +657,816,1519,1521,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,2,9.519759151548657,9.570325430431549,0,2,0,-9,20,0,4,-9.334781366659167,0,0,0,45,1,2,1,2,2,2019,1,2,7,0,50,0,15,1,0,1,0,44.71944071302975,44.71944071302975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,49.11,6,1,0,0,11,5,1,886,0,0,0 +657,816,1520,-9,1521,1519,3,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1044.936913866885,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,11,5,1,886,0,0,0 +657,816,1521,1519,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,2,8.877408029566208,8.760836042838308,0,2,0,-9,8,0,-4,27.4106474055854,0,0,0,49,2,2,1,-9,-9,2019,1,1,20,8,44,50,15,1,8,1,0,18.44106252404987,18.44106252404987,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.23,50.59,3,1,0,0,11,5,1,886,0,0,0 +658,817,1522,1523,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,3,8.808432195835227,8.811954227527576,0,1,0,-9,2,0,-3,-75.37870819811295,0,1,0,31,1,2,1,2,1,2019,1,2,11,2,60,51,15,1,2,1,0,14.78962976038979,14.78962976038979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.58,47.36,6,2,0,0,8,4,1,636,0,0,0 +658,817,1523,1522,-9,-9,2,1,0,31,1,0,0,0,1,-9,5,1,0,2,0,0,0,1,0,-9,2,0,3,116.2038959346245,0,0,1,28,1,3,1,-9,-9,2019,1,1,18,5,0,49,15,1,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,44.38,6,1,0,0,8,4,1,636,0,0,0 +659,818,1524,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,7.983512830567469,7.969689281827916,0,3,0,0,0,-9,0,-1002.166773516217,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,33,30,15,1,0,-9,0,8.772189891906674,8.772189891906674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.21,47.68,5,1,0,0,6,3,0,241,0,0,0 +660,819,1525,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,7.780300031048558,7.428410024152468,3,0,0,0,-9,0,-963.7345909056164,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.586629376293632,0,0,54.61,38.4,7,1,0,0,13,3,0,4948,0,0,0 +661,820,1526,-9,1527,1530,3,1,1,21,2,0,2,0,2,-9,11,3,0,3,6.820939788210813,6.900163319949418,0,3,0,-9,0,-9,0,-1006.782411447523,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.89,38.29,4,1,0,1,10,2,0,460,0,0,0 +661,821,1527,1530,-9,-9,1,1,0,42,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,1,-9,-5,0,-9,0,1,47,2,3,3,2,2,2019,4,5,35,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.46350449687691,3,26.4,24.38,1,1,0,0,10,1,0,389,0,0,0 +661,821,1528,-9,1527,1530,4,1,1,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-916.4898931154877,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,7,1,0,0,10,1,0,389,0,0,0 +661,821,1529,-9,1527,1530,6,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1063.556929486674,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,1,0,389,0,0,0 +661,821,1530,1527,-9,-9,5,1,1,47,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,1,-9,5,0,-9,0,0,42,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.17994585798399,2,55.96,49.93,3,1,1,0,10,1,0,389,0,0,0 +662,822,1531,1532,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,5,8.518409765878385,8.652416277597165,0,2,0,-9,6,0,0,-40.82402135910783,0,0,1,38,2,3,1,2,2,2019,1,1,22,10,30,33,15,1,10,1,0,20.31578944988421,20.31578944988421,0,0,0,0,0,0,0,1,1,0,.6589760428986324,0,0,0,48.18,61.8,6,1,0,0,9,4,1,802.75,0,0,0 +662,822,1532,1531,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,3,7.926418914495986,7.751582199322351,0,2,0,-9,6,0,0,27.42511536195302,0,0,0,38,1,5,1,2,3,2019,1,2,15,3,42,40,15,1,3,1,0,8.436653975854769,8.436653975854769,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.95,53.56,5,1,0,0,9,4,1,802.75,0,0,0 +662,822,1533,-9,1531,1532,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.281100704888,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,802.75,0,0,0 +662,822,1534,-9,1531,1532,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.9963114146835,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,4,1,802.75,0,0,0 +663,823,1535,1537,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,4,9.278207623298471,9.128728231065846,0,2,0,-9,22,0,-2,24.74290023635469,0,0,0,44,3,3,1,2,3,2019,1,1,9,0,30,0,15,1,1,1,0,35.4887296077253,35.4887296077253,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,8,5,0,1382.333333333333,0,0,0 +663,823,1536,-9,1537,1535,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1126.564354317056,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,5,0,1382.333333333333,0,0,0 +663,823,1537,1535,-9,-9,1,1,0,44,1,0,1,0,3,-9,2,1,0,3,6.733494890146585,6.684479699661392,0,2,0,-9,22,0,2,-35.65782075109451,0,0,1,42,2,4,1,3,3,2019,1,2,6,0,20,16,15,1,0,1,0,4.778716176505676,4.778716176505676,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.17,30.22,7,3,0,0,8,5,0,1382.333333333333,0,0,0 +664,824,1538,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,6,3,0,4,0,3.731684531367948,3.362275226425757,3,0,0,0,-9,0,-1071.09794567095,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.413167809427612,0,0,46.44,59.62,6,1,0,1,13,1,1,894,0,0,0 +665,825,1539,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1122.896496056071,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.34,23.61,6,4,0,1,8,1,0,241,0,0,0 +665,826,1540,-9,-9,-9,2,1,0,57,2,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-930.6859895952751,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,5,4,0,1,8,1,0,422,0,0,0 +666,827,1541,1542,-9,-9,1,1,1,65,1,0,1,0,2,-9,4,3,0,2,4.951685318714901,7.242073534966534,7.488554409593082,2,0,-9,6,0,23,-33.93952001184741,0,0,0,42,2,4,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.397214128995439,8.590123440939426,3,60.1,30.88,5,1,0,0,8,3,0,887.6666666666666,0,0,0 +666,827,1542,1541,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,4,7.588141970583061,7.534200802341822,0,2,0,-9,6,0,-23,6.685637548869507,0,0,1,65,2,2,3,2,3,2019,2,1,14,2,30,30,15,1,2,4,0,5.355429333740953,5.355429333740953,0,0,0,0,0,0,0,1,1,0,0,0,2.71036037463408,3,33.61,61.54,5,1,0,0,8,3,0,887.6666666666666,0,0,0 +666,827,1543,-9,1542,1541,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0872479196426,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,8,3,0,887.6666666666666,0,0,0 +667,828,1544,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,1,1,0,4,7.115653913791158,7.144041941229051,0,3,0,0,0,-9,0,-1048.114293550097,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,84,70,15,1,1,-9,0,1.784097804814452,1.784097804814452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,13,2,1,1271,0,0,0 +668,829,1545,1546,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,5,0,7.457205696730655,7.234184510579483,1,0,-9,58,0,4,100.2097070181577,0,0,0,78,3,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.479470307045061,7.495835139169211,116.2238665134717,2,57.06,57.76,6,1,0,0,12,2,1,488.5,0,0,0 +668,829,1546,1545,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,58,0,-4,-22.21711861890695,0,0,0,82,1,5,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,117.6887018911228,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,12,2,1,488.5,0,0,0 +669,830,1547,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-932.5737563583632,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.887229273787142,3,55.23,57.2,6,1,1,0,2,1,0,232,0,0,0 +669,831,1548,-9,1547,-9,2,1,0,19,2,0,0,0,2,1,2,1,0,3,5.500166189289563,5.723922750759335,0,3,0,0,0,-9,0,-895.105176441712,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,6,0,15,1,0,-9,1,5.852989673194735,5.852989673194735,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.18,48.06,6,2,0,0,2,2,0,2204,0,0,0 +670,832,1549,-9,1551,1550,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1090.234124941808,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,0,1082.333333333333,0,0,0 +670,832,1550,1551,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,4,8.121683991026247,7.748646819772173,0,2,0,-9,5,0,2,-59.8724582626804,0,0,0,31,2,3,1,-9,-9,2019,1,1,9,1,73,48,15,1,1,1,0,6.251985486898697,6.251985486898697,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.85,54.62,6,1,0,0,10,4,0,1082.333333333333,0,0,0 +670,832,1551,1550,-9,-9,1,1,0,31,1,1,1,0,2,-9,2,1,0,3,7.529282237314,7.325133440890768,0,2,0,-9,5,0,-2,-45.96237844630118,0,0,1,33,2,4,1,2,3,2019,1,2,21,8,30,40,15,1,8,1,0,5.786243785397068,5.786243785397068,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.37,63.98,6,1,0,1,10,4,0,1082.333333333333,0,0,0 +671,833,1552,-9,-9,-9,1,1,0,44,3,0,0,0,2,-9,2,1,0,3,8.073432587694036,8.345452772110953,0,3,0,0,0,-9,0,-992.4931271780008,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,9,1,37,42,15,1,1,-9,0,11.43811240776377,11.43811240776377,0,0,0,0,0,0,0,0,0,0,0,0,0,3,46.15,35.62,4,1,0,0,5,4,0,383,0,0,0 +672,834,1553,1554,-9,-9,1,1,1,50,1,0,2,0,3,-9,2,1,0,4,8.635917954471681,8.152745056001626,0,2,0,-9,28,0,2,133.4329108150033,0,0,0,48,3,3,1,3,3,2019,1,2,9,0,41,40,15,1,1,1,0,13.82027326871587,13.82027326871587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,7,4,1,483.5,0,0,0 +672,834,1554,1553,-9,-9,2,1,0,48,1,0,2,0,3,-9,2,1,0,3,8.060745098808791,7.701093443052747,0,2,0,-9,28,0,-2,16.5289444176947,0,0,0,50,3,4,1,2,2,2019,1,1,7,0,37,38,15,1,0,1,0,7.276734099850351,7.276734099850351,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,7,1,0,0,7,4,1,483.5,0,0,0 +672,835,1555,-9,1554,1553,3,1,1,21,2,0,2,0,2,-9,2,1,0,3,8.296252901867382,8.02123465607472,0,3,0,0,0,-9,0,-1063.43661007053,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,58,35,15,1,1,-9,1,5.855322788167564,5.855322788167564,0,0,0,0,0,0,0,1,1,0,2.75277884034844,0,0,0,43.9,57.01,6,1,0,0,7,3,1,397,0,0,0 +673,836,1556,1558,-9,-9,1,1,0,38,1,0,4,0,1,-9,1,1,0,4,0,0,0,2,0,-9,8,0,-3,-101.2097608694006,0,0,1,41,2,3,1,2,2,2019,1,2,6,0,7,5,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.571980048305006,0,0,0,54.79,55.86,6,1,0,0,12,2,0,723.6666666666666,0,0,0 +673,836,1557,-9,1556,1558,5,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.487671451949,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,5,1,0,0,12,2,0,723.6666666666666,0,0,0 +673,836,1558,1556,-9,-9,2,1,1,41,1,0,4,0,2,-9,2,1,0,3,7.877450909216466,7.762349158218661,0,2,0,-9,8,0,3,-85.5231246208395,0,0,0,38,1,4,1,2,2,2019,1,1,8,0,35,35,15,1,0,1,0,9.265021343274812,9.265021343274812,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.63,54.22,6,1,0,0,12,2,0,723.6666666666666,0,0,0 +673,836,1559,-9,1556,1558,4,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.9621624958445,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,12,2,0,723.6666666666666,0,0,0 +673,836,1560,-9,1556,1558,3,1,1,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.3806773466697,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,1,0,0,12,2,0,723.6666666666666,0,0,0 +673,836,1561,-9,1556,1558,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.117684302829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,12,2,0,723.6666666666666,0,0,0 +674,837,1562,1565,-9,-9,2,1,0,44,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-2,104.6881616000079,0,0,1,46,2,4,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,2,1,0,1,13,3,1,457.75,0,0,0 +674,837,1563,-9,1562,1565,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.590442569469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,1,457.75,0,0,0 +674,837,1564,-9,1562,1565,3,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1042.798918209739,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,13,3,1,457.75,0,0,0 +674,837,1565,1562,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.364677650744126,8.507931747316626,0,2,0,-9,8,0,2,32.41324855607603,0,0,0,44,2,4,3,1,3,2019,2,2,9,0,37,37,15,1,1,3,0,15.88791500111141,15.88791500111141,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,1,13,3,1,457.75,0,0,0 +675,838,1566,-9,1567,1568,4,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-944.4307902863235,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,8,5,1,553.6666666666666,0,0,0 +675,838,1567,1568,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,3,8.947657822465871,9.230282149380752,0,2,0,-9,21,0,-1,79.72436927317753,0,0,0,52,1,4,1,-9,-9,2019,1,1,9,0,50,45,15,1,0,1,0,16.9333516663882,16.9333516663882,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.94,55.88,6,1,0,0,8,5,1,553.6666666666666,0,0,0 +675,838,1568,1567,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,4,9.981812989409107,9.696259324614488,0,2,0,-9,21,0,1,-97.41109271009857,0,0,0,51,1,3,1,-9,-9,2019,1,2,8,1,60,60,15,1,1,1,0,44.88530689302081,44.88530689302081,0,0,0,0,0,0,0,1,1,0,3.394231637755499,0,0,0,54.79,55.86,6,1,0,0,8,5,1,553.6666666666666,0,0,0 +675,839,1569,-9,1567,1568,3,1,1,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-828.8110602273596,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.9388714528237111,0,0,0,54.1,59.11,7,1,0,0,8,5,1,308,0,0,0 +676,840,1570,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,4,6.273483126273449,7.004688822107607,5.518376432336003,3,0,0,0,-9,0,-996.2028789173289,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,40,40,15,1,0,-9,0,1.944270335902997,1.944270335902997,0,0,0,0,0,0,0,1,1,0,5.742498597104694,5.397277974609334,0,0,57.16,56.15,6,1,0,0,7,2,1,110,0,0,0 +677,841,1571,1572,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,5,8.464583497039941,8.91968820646435,7.50612456984553,1,0,-9,36,0,4,-89.31653548687672,0,0,0,57,2,3,1,3,2,2019,1,2,8,0,39,39,15,1,0,1,0,10.63996712969212,10.63996712969212,0,0,0,0,0,0,0,0,0,0,7.044651458430573,7.450092435351118,0,0,62.01,49.94,6,1,0,0,2,5,1,559.5,0,0,0 +677,841,1572,1571,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.161295298799409,8.226455052903756,0,1,0,-9,35,0,-4,22.15512871305345,0,0,0,61,2,5,1,-9,-9,2019,1,1,10,0,50,50,15,1,0,1,0,8.796352981231472,8.796352981231472,0,0,0,0,0,0,0,0,0,0,2.381353971575232,0,0,0,57.93,46.29,6,1,0,0,2,5,1,559.5,0,0,0 +677,842,1573,-9,1572,1571,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.59084778992484,7.505359841500044,0,3,0,0,0,-9,0,-1079.455311688296,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,39,15,1,0,-9,1,6.263582146079518,6.263582146079518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,1102,0,0,0 +678,843,1574,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,3,8.738126422393732,8.64621858230211,0,3,0,0,0,-9,0,-1042.360355239039,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,37,15,1,0,-9,0,19.03883262409292,19.03883262409292,0,0,0,0,0,0,0,1,1,0,5.162737447726316,0,0,0,53.17,45.73,6,2,0,0,6,5,1,781,0,0,0 +679,844,1575,1576,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,1,7.349359342172489,7.406517713444874,4.702537128651,1,0,-9,8,0,-2,18.69089709099256,0,0,0,63,2,4,1,3,3,2019,1,1,18,7,26,26,15,1,7,1,0,5.93052416592937,5.93052416592937,0,0,0,0,0,0,0,0,0,0,0,4.648821663078563,7.902662457320727,3,33.47,28.39,4,1,0,0,5,5,1,1308.5,0,0,0 +679,844,1576,1575,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,8.408638302958778,8.542009589269943,5.493926945928428,1,0,-9,8,0,2,-29.43175091739762,0,0,0,61,2,1,1,3,3,2019,1,2,14,3,46,43,15,1,3,1,0,16.29568384617522,16.29568384617522,0,0,0,0,0,0,0,0,0,0,5.308709684496078,5.605037886029415,0,0,51.43,48.2,6,1,0,0,5,5,1,1308.5,0,0,0 +680,845,1577,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,7.338096515959776,7.643860175980766,3,0,0,0,-9,0,-1014.952851535768,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.719512310356201,7.61303118252065,0,0,57.16,56.15,6,1,0,0,9,3,1,386,0,0,0 +681,846,1578,1581,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,3,7.416437561363866,7.315943720466831,0,2,0,-9,6,0,12,-95.92545107337054,0,0,0,30,2,4,3,-9,-9,2019,2,1,10,1,30,25,15,1,1,3,0,7.742030840816359,7.742030840816359,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.9,38.7,4,1,0,0,10,2,0,1051.75,0,0,0 +681,846,1579,-9,1581,1578,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-912.9219448778886,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,0,1051.75,0,0,0 +681,846,1580,-9,1581,1578,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.213227560171,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,2,0,1051.75,0,0,0 +681,846,1581,1578,-9,-9,1,1,0,30,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-12,28.07565140664997,0,0,1,42,2,3,1,3,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.51,54.54,6,1,0,0,10,2,0,1051.75,0,0,0 +682,847,1582,-9,1584,1585,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.5160555262941,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,7,4,0,888,0,0,0 +682,847,1583,-9,1584,1585,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.926666928309,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,0,888,0,0,0 +682,847,1584,1585,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,4,7.589815946751717,7.935258661290195,0,2,0,-9,2,0,-8,50.10266372419983,0,0,1,47,2,4,1,2,2,2019,1,1,9,1,14,14,15,1,1,1,0,17.02667049366698,17.02667049366698,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,4,0,888,0,0,0 +682,847,1585,1584,-9,-9,1,1,1,47,1,1,2,0,2,-9,2,1,0,4,8.542511395224093,8.423645244018529,0,2,0,-9,2,0,8,84.5656558008146,0,0,0,39,1,4,1,3,3,2019,1,2,10,0,89,44,15,1,0,1,0,7.236281696034268,7.236281696034268,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,4,1,0,0,7,4,0,888,0,0,0 +683,848,1586,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,2,1,0,4,8.25785195732643,8.427870312037744,0,3,0,0,0,-9,0,-926.0155216355764,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,15,40,15,1,1,-9,0,29.55213031732879,29.55213031732879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,4,0,0,8,4,0,340,0,0,0 +684,849,1587,1588,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.09526960265466,8.238022237075725,0,1,0,-9,15,0,-3,-14.05694428288599,0,0,0,55,2,2,1,1,3,2019,1,1,8,0,38,40,15,1,0,1,0,10.75663212276409,10.75663212276409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,4,1,0,0,12,5,0,1026,0,0,0 +684,849,1588,1587,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,2,8.435508730769952,8.258408569958881,0,1,0,-9,15,0,3,-126.9930174414831,0,0,0,52,2,3,1,-9,3,2019,1,2,12,0,38,37,15,1,0,1,0,10.66384860936545,10.66384860936545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.97,37.11,4,1,0,1,12,5,0,1026,0,0,0 +685,850,1589,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,1,1,0,2,0,0,0,3,0,-9,0,1,0,-873.241672202822,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,6,1,0,0,5,1,1,281,0,0,0 +686,851,1590,1591,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,2,8.748089060226082,9.016613264849394,0,1,0,-9,6,0,2,-54.23790825768619,0,0,0,51,2,3,1,3,3,2019,1,2,17,5,40,50,15,1,5,1,0,23.58257063903723,23.58257063903723,0,0,0,0,0,0,0,0,0,0,7.7200096962563,0,0,0,38.01,34.13,5,1,0,0,9,5,1,801.5,0,0,0 +686,851,1591,1590,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.294937183166759,6.982488101950024,0,1,0,-9,6,0,-2,-29.74034415565545,-9,0,0,53,2,2,1,-9,-9,2019,1,1,8,0,22,0,15,1,0,1,0,7.683854569735689,7.683854569735689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,9,5,1,801.5,0,0,0 +687,852,1592,-9,-9,-9,1,1,1,49,3,0,2,0,1,-9,2,1,0,3,8.93669334824124,8.876876638986268,0,4,0,-9,0,1,0,-1047.862609840562,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,9,42,40,15,1,9,-9,0,23.6122041055063,23.6122041055063,0,0,0,0,0,0,0,1,1,0,.878591363157208,0,0,0,30.5,56.25,3,1,0,0,12,4,1,1632,0,0,0 +687,852,1593,-9,-9,1592,2,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-862.9834431516565,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,4,1,1632,0,0,0 +687,852,1594,-9,-9,1592,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.4778166506235,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,1632,0,0,0 +688,853,1595,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,3,3,0,3,0,6.172509973357306,6.318215818441029,3,0,-9,0,0,0,-1003.837040915967,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.767390926710294,0,0,0,46.08,57.2,6,1,1,0,9,2,0,1256,0,0,0 +689,854,1596,1599,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-12,0,0,0,1,49,2,1,3,2,2,2019,4,1,17,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.595914391358175,2,35.38,48.67,6,1,0,0,13,1,0,679.4,0,0,0 +689,854,1597,-9,1596,1599,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.714356927915,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,1,0,679.4,0,0,0 +689,854,1598,-9,1596,1599,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1027.465503767894,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,1,0,679.4,0,0,0 +689,854,1599,1596,-9,-9,1,1,1,49,1,0,3,0,2,-9,8,3,1,1,0,0,0,2,0,-9,7,0,12,0,0,0,0,37,2,2,3,3,2,2019,4,2,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.42,24.18,3,1,0,0,13,1,0,679.4,0,0,0 +689,854,1600,-9,1596,1599,3,1,0,15,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-956.0555279860337,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,1,0,0,13,1,0,679.4,0,0,0 +690,855,1601,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1007.20828621183,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.45,8.52,6,1,0,0,11,1,0,848,0,0,0 +691,856,1602,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,3,8.32271264355858,8.509474895174709,0,3,0,0,0,-9,0,-953.3965029609628,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,46,47,15,1,0,-9,0,10.89907551696296,10.89907551696296,0,0,0,0,0,0,0,0,0,0,.590638764608909,0,0,0,62.42,45.64,4,1,0,0,9,4,0,504,0,0,0 +692,857,1603,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,4,8.608830020323154,8.775431214919244,0,3,0,0,0,-9,0,-836.444352784332,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,65,65,15,1,0,-9,0,12.44295386699043,12.44295386699043,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,2,5,1,869,0,0,0 +693,858,1604,1605,-9,-9,1,1,0,45,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,26,0,-2,0,0,0,0,47,3,4,3,2,2,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,3,0,0,8,1,0,1188.5,0,0,0 +693,858,1605,1604,-9,-9,2,1,1,47,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,6,0,2,0,0,0,0,45,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,1,0,8,1,0,1188.5,0,0,0 +693,859,1606,-9,1604,1605,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,6.210937648414019,6.315312253467496,0,3,0,0,0,-9,0,-913.0670364820332,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,5,0,15,1,0,-9,1,14.56875727570379,14.56875727570379,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.51,48.16,5,3,0,0,8,2,0,480,0,0,0 +693,860,1607,-9,1604,1605,4,1,1,18,2,0,0,0,2,-9,9,3,0,4,7.248644069128122,7.398797279014135,0,3,0,0,0,-9,0,-1032.425719928608,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2689893364661005,0,0,0,48,59,5,3,0,0,8,3,0,274,0,0,0 +694,861,1608,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1006.594284383569,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.626937580666845,0,0,0,57.16,56.15,6,1,0,0,10,1,1,773,0,0,0 +695,862,1609,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,3,7.823243888917543,7.792248530542136,0,3,0,0,0,-9,0,-916.8812280454632,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,19,7,39,39,15,1,7,-9,0,10.50187577155382,10.50187577155382,0,0,0,0,0,0,0,0,0,0,0,0,1.480320753876871,3,40.53,55.55,3,1,0,0,2,4,1,687,0,0,0 +696,863,1610,1611,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,3,6.950321750917426,6.973965734430376,0,1,0,-9,24,0,0,46.37437694773324,0,0,0,56,3,2,1,-9,-9,2019,1,2,14,2,20,20,15,1,2,1,0,6.891868974065156,6.891868974065156,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.61,48.71,4,1,0,0,7,4,1,1160,0,0,0 +696,863,1611,1610,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,2,8.627769786711941,8.441885678248182,0,1,0,-9,9,0,0,-26.69500131348193,0,0,0,56,3,3,1,3,3,2019,1,1,6,0,45,45,15,1,0,1,0,15.1204713908532,15.1204713908532,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.2,35.43,6,1,0,0,7,4,1,1160,0,0,0 +696,864,1612,-9,1610,1611,3,1,0,18,2,0,0,0,2,1,11,3,0,4,6.054068460704526,6.117218462054892,0,3,0,0,0,-9,0,-964.4797651954026,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,19,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.440850885145172,0,0,0,48.53,58.91,6,1,0,0,7,2,1,408,0,0,0 +697,865,1613,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,4,3,0,5,7.254167138741397,8.248403719633105,7.878062738064766,3,0,0,0,-9,0,-1069.559030547705,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.259956160370672,0,0,49.25,61.25,7,1,0,0,7,4,1,473,0,0,0 +698,866,1614,-9,1615,1616,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.803077694789,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,1,771.5,0,0,0 +698,866,1615,1616,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.158026552647562,7.057639677889952,0,2,0,-9,6,0,-2,121.3595413102962,0,0,1,46,3,3,1,3,3,2019,1,1,6,0,25,25,15,1,0,1,0,6.440011565172443,6.440011565172443,0,0,0,0,0,0,0,1,1,0,3.636119252739089,0,0,0,57.16,56.15,6,1,0,0,13,3,1,771.5,0,0,0 +698,866,1616,1615,-9,-9,1,1,1,46,1,0,2,0,3,-9,1,1,0,3,7.704771116955001,7.787336908572088,0,2,0,-9,6,0,2,-71.59296837781145,0,0,0,44,2,4,1,-9,2,2019,1,2,7,0,41,41,15,1,0,1,0,5.690788561272901,5.690788561272901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,2,1,0,0,13,3,1,771.5,0,0,0 +698,866,1617,-9,1615,1616,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.2359575064309,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,1,771.5,0,0,0 +699,867,1618,1620,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,5,0,0,0,2,0,-9,27,0,-1,19.45667533856399,0,0,0,50,1,4,1,2,3,2019,1,1,7,0,70,70,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,3,1,632,0,0,0 +699,867,1619,-9,1620,1618,4,1,1,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-919.9228140977015,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,12,3,1,632,0,0,0 +699,867,1620,1618,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,4,7.839035761699631,8.220690289437037,0,2,0,-9,27,0,1,42.88343987204318,0,0,0,49,2,5,1,2,2,2019,1,2,12,1,33,30,15,1,1,1,0,11.11499299504454,11.11499299504454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,1,0,0,12,3,1,632,0,0,0 +699,868,1621,-9,1620,1618,3,1,0,21,2,0,1,0,2,-9,2,1,0,3,6.72505126865642,6.776302693793516,0,3,0,0,0,-9,0,-949.9893052953802,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,25,18,15,1,0,-9,1,4.294465789047175,4.294465789047175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,6,1,0,0,12,2,1,830,0,0,0 +700,869,1622,-9,-9,-9,1,1,1,24,2,0,0,0,1,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1065.324739775453,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,4,1,0,1567,0,0,0 +701,870,1623,1624,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.591500598765293,8.819442405889562,0,1,0,-9,37,0,-4,80.19893062507714,0,0,0,60,2,3,3,2,2,2019,2,1,8,0,36,36,15,1,0,4,0,14.8234780481785,14.8234780481785,0,0,0,0,0,0,0,0,0,0,5.598344872737103,0,14.80634937229894,3,56.71,53.58,6,1,0,0,13,5,1,512.5,0,0,0 +701,870,1624,1623,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,3,0,8.413014692928394,8.161764393209582,1,0,-9,37,0,4,120.8777674787357,0,0,0,56,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.858274373125727,8.290332990133066,13.89765743442802,3,60.29,52.11,7,1,0,0,13,5,1,512.5,0,0,0 +702,871,1625,1629,-9,-9,2,1,0,39,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-19,-50.1252600852748,-9,0,1,58,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,3,0,0,4,2,1,334.2,0,0,0 +702,871,1626,-9,1625,1629,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.332321911302,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,2,1,334.2,0,0,0 +702,871,1627,-9,1625,1629,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.254106697307,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,4,2,1,334.2,0,0,0 +702,871,1628,-9,1625,1629,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.0877126125638,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,4,2,1,334.2,0,0,0 +702,871,1629,1625,-9,-9,1,1,1,58,1,0,3,0,3,-9,3,3,0,2,0,5.112781399957507,5.112828904125196,2,0,-9,12,0,19,-48.2785254003112,0,0,0,39,3,4,3,-9,-9,2019,4,2,27,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.858013750252683,0,0,20.28,42.63,4,3,1,0,4,2,1,334.2,0,0,0 +703,872,1630,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,4,0,8.228164266582603,8.437164397473502,3,0,0,0,-9,0,-1025.503108639699,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.485345305481712,0,0,63.06,42.74,7,1,0,0,13,4,1,407,0,0,0 +704,873,1631,-9,1632,1633,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-905.6522985427395,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,1001,0,0,0 +704,873,1632,1633,-9,-9,2,1,0,22,1,1,1,0,2,-9,2,1,0,4,7.731449286938166,7.509249120289682,0,2,0,-9,2,0,-7,8.984429366737068,0,1,1,29,2,4,1,-9,-9,2019,1,1,7,1,30,23,15,1,1,1,0,6.856474605664693,6.856474605664693,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,6,1,0,0,12,3,0,1001,0,0,0 +704,873,1633,1632,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,4,7.482598033802334,7.438714072985868,0,2,0,-9,2,0,7,-67.20819703553798,0,1,0,22,2,4,1,2,2,2019,1,2,15,3,33,50,15,1,3,1,0,6.423550904591775,6.423550904591775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,5,1,0,0,12,3,0,1001,0,0,0 +705,874,1634,1635,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,5,0,7.930044938996523,7.859119764763995,1,0,-9,38,0,0,11.60815625155157,0,0,0,67,2,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.074872629692215,7.719136620560362,0,0,54.1,59.11,6,1,0,0,7,3,1,242.5,0,0,0 +705,874,1635,1634,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.687263425684504,7.055722477117366,1,0,-9,38,0,0,-116.4992051953038,0,0,0,67,1,5,3,3,3,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.355083163689966,6.746748650288236,5.630501593827962,3,51.65,39.74,5,2,0,0,7,3,1,242.5,0,0,0 +706,875,1636,1637,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.2239117994495,7.870625923094778,0,1,0,-9,7,0,-5,0,0,0,0,62,2,4,3,3,3,2019,2,1,11,0,37,42,15,1,0,3,0,11.57220203235654,11.57220203235654,0,0,0,0,0,0,0,0,0,0,3.771446367389789,0,9.130286837412111,3,49.61,54.24,6,1,0,0,12,4,1,1001.5,0,0,0 +706,875,1637,1636,-9,-9,1,1,1,62,1,0,0,0,2,-9,3,3,0,4,0,8.030679266673038,8.006522413821324,1,0,-9,7,0,5,0,0,0,0,57,2,3,1,2,2,2019,3,2,6,0,0,41,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.85104459671319,8.128113557114899,5.76064242977566,3,54.45,56.22,6,1,1,0,12,4,1,1001.5,0,0,0 +707,876,1638,-9,-9,-9,1,1,0,47,3,0,0,0,1,-9,2,1,0,4,9.022689031766284,8.831105148823942,0,3,0,-9,0,1,0,-907.4173611248655,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,25,11,44,44,15,1,11,-9,0,18.66030790145239,18.66030790145239,0,0,0,0,0,0,0,0,0,0,8.098491607228231,0,0,0,31.34,62.72,6,1,0,0,13,5,1,933,0,0,0 +708,877,1639,1640,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,7.10105332142794,6.979128239572138,1,0,-9,49,0,6,-46.33278561617095,0,0,0,69,2,4,3,3,2,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.723860751963088,6.965359616466221,0,0,58.32,28.96,6,1,0,0,7,2,1,1083.5,0,0,0 +708,877,1640,1639,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,49,0,-6,-42.7469016522666,0,0,0,75,1,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.356627533889458,0,0,0,53.36,53.7,6,1,0,0,7,2,1,1083.5,0,0,0 +709,878,1641,1642,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,5,7.514498645971057,7.661882420957354,0,1,0,-9,37,0,-5,-63.15177303117063,0,0,0,65,2,3,1,-9,1,2019,1,2,5,0,33,32,15,1,0,1,0,7.813067011947646,7.813067011947646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,8,3,0,712.5,0,0,0 +709,878,1642,1641,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,3,7.18433773363958,6.945276091845126,0,1,0,-9,37,0,5,42.30219876123998,0,0,0,60,1,5,1,2,2,2019,1,1,9,1,16,6,15,1,1,1,0,6.793785519596602,6.793785519596602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.74,45.9,6,3,0,0,8,3,0,712.5,0,0,0 +709,879,1643,-9,1642,1641,3,1,1,31,2,0,0,0,1,-9,2,1,0,3,7.831268051347218,7.861247797571329,0,3,0,0,0,-9,0,-888.6169009175685,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,36,40,15,1,0,-9,1,10.22142147419149,10.22142147419149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,5,2,0,0,8,4,0,160,0,0,0 +710,880,1644,-9,1645,1647,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.41142822487,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,4,1,858.5,0,0,0 +710,880,1645,1647,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,3,8.41892419552317,8.528237340691742,0,2,0,-9,8,0,2,56.67603680069754,0,0,1,42,2,3,1,3,3,2019,1,1,4,0,35,35,15,1,0,1,0,16.00271484232799,16.00271484232799,0,0,0,0,0,0,0,1,1,0,2.159356989145467,0,0,0,54.96,53.17,6,1,0,0,1,4,1,858.5,0,0,0 +710,880,1646,-9,1645,1647,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1035.776670201623,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,1,4,1,858.5,0,0,0 +710,880,1647,1645,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,3,8.886315187906511,8.30127225819332,0,2,0,-9,8,0,-2,-87.12459981008936,0,0,0,44,1,3,1,3,3,2019,1,2,6,0,44,39,15,1,0,1,0,15.09023728382214,15.09023728382214,0,0,0,0,0,0,0,1,1,0,.9065466111133457,0,0,0,56.52,48.31,6,1,0,0,1,4,1,858.5,0,0,0 +711,881,1648,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,8.095842849425082,8.39545844931059,0,3,0,0,0,-9,0,-1008.954264160691,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,30,28,15,1,2,-9,1,14.43757822629065,14.43757822629065,0,0,0,0,0,0,0,1,1,0,6.607515229159637,0,0,0,48.28,60.18,5,1,0,0,12,4,1,240,0,0,0 +712,882,1649,1650,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,5,8.701580408531996,8.698349218347609,0,1,0,-9,25,0,-2,98.45701477882631,0,0,0,56,2,2,1,2,2,2019,1,2,7,0,40,38,15,1,0,1,0,18.99881139198418,18.99881139198418,0,0,0,0,0,0,0,0,0,0,5.928450245654671,0,2.950449683819567,3,60.02,56.42,6,1,0,0,4,4,1,848.5,0,0,0 +712,882,1650,1649,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,25,0,2,-81.65340971586946,0,0,0,54,2,5,1,2,2,2019,1,1,12,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.0518570662350861,3,51.65,44.35,6,1,0,0,4,4,1,848.5,0,0,0 +713,883,1651,-9,-9,-9,1,1,1,26,2,0,0,0,1,1,2,1,0,5,7.952544195831861,7.796550598924074,0,3,0,0,0,-9,0,-1063.537021325389,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,35,0,15,1,0,-9,0,12.09037762576031,12.09037762576031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,7,1,0,0,11,4,1,363,0,0,0 +714,884,1652,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,6.971740002727967,7.384777569535386,3,0,0,0,-9,0,-1025.103607248464,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,128.2021067912716,0,0,0,0,1175.580027461088,1,1,0,0,6.651645802047746,0,0,64.92,25.35,6,1,0,0,5,2,0,585,0,0,0 +715,885,1653,-9,-9,-9,1,1,0,77,2,0,0,0,3,-9,4,3,0,3,0,5.968167885796157,5.956603003699877,3,0,0,0,-9,0,-982.2619759632748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.676561029955448,6.477967013939096,0,0,51,46,5,1,0,0,13,2,1,5650,0,0,0 +716,886,1654,1655,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,4,8.474286831597329,8.698896806695354,3.078636477761055,1,0,-9,8,0,1,8.782605135890227,0,0,0,58,2,3,1,3,3,2019,1,2,11,0,58,47,15,1,0,1,0,10.54513010096503,10.54513010096503,0,0,0,0,0,0,0,0,0,0,4.006329149198608,3.293434292484519,0,0,38.34,62.12,6,1,0,0,8,5,0,920.5,0,0,0 +716,886,1655,1654,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.488116999744355,9.372406878507647,0,1,0,-9,8,0,-1,36.72452494806721,0,0,0,59,1,4,1,-9,-9,2019,1,1,6,0,50,55,15,1,0,1,0,30.95946208823715,30.95946208823715,0,0,0,0,0,0,0,0,0,0,7.237079002498069,0,0,0,57.51,47.91,1,1,0,0,8,5,0,920.5,0,0,0 +717,887,1656,1657,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.79276027462797,8.669386039004536,0,1,0,-9,12,0,-7,48.32571389023978,0,0,0,59,1,3,1,2,2,2019,1,2,2,0,20,12,15,1,0,1,0,38.98397830112394,38.98397830112394,0,0,0,0,0,0,0,0,0,0,4.504364603756298,0,0,0,57.16,56.15,7,1,0,0,6,5,1,560.5,0,0,0 +717,887,1657,1656,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,3,9.967451153771497,9.938812201450503,0,1,0,-9,12,0,7,102.2404694997609,0,0,0,52,1,4,1,1,3,2019,1,1,11,0,46,60,15,1,0,1,0,44.99700850912332,44.99700850912332,0,0,0,0,0,0,0,0,0,0,3.599428787109435,0,0,0,48.45,57.49,4,1,0,0,6,5,1,560.5,0,0,0 +718,888,1658,1659,-9,-9,1,1,0,56,1,0,1,0,1,-9,1,1,0,5,9.899384057306319,9.870892117887681,0,2,0,-9,16,0,16,-84.46706239841556,0,0,0,40,3,4,1,-9,-9,2019,1,2,8,0,35,35,15,1,0,1,0,54.25770287383503,54.25770287383503,0,0,0,0,0,0,0,1,1,0,.6690826387593736,0,0,0,57.06,57.76,6,1,0,0,9,5,1,741.6666666666666,0,0,0 +718,888,1659,1658,-9,-9,2,1,1,40,1,0,1,0,3,-9,2,1,0,4,7.808521050615481,7.498519856875149,0,2,0,-9,19,0,-16,-18.11934175115228,0,0,0,56,1,5,1,3,3,2019,1,1,11,0,39,0,15,1,0,1,0,6.251927837455522,6.251927837455522,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,5,1,0,1,9,5,1,741.6666666666666,0,0,0 +718,888,1660,-9,1658,1659,3,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-980.7700078981846,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,2,0,0,9,5,1,741.6666666666666,0,0,0 +719,889,1661,1662,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,2,7.999316017925594,8.704023697645534,0,1,0,-9,8,0,-6,-14.54907915669416,0,0,0,62,2,1,1,3,3,2019,1,2,10,0,44,42,15,1,0,1,0,11.73210264004311,11.73210264004311,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.05,46.15,5,1,0,0,12,4,0,183.5,0,0,0 +719,889,1662,1661,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,1,8.118909191030424,7.870799409594906,0,1,0,-9,8,0,6,26.40905211941282,0,0,0,56,2,2,1,-9,-9,2019,1,1,20,8,25,40,15,1,8,1,0,14.06808303325477,14.06808303325477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.87,25.22,3,1,0,1,12,4,0,183.5,0,0,0 +720,890,1663,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,2,7.597798474848564,7.671041244311709,0,3,0,0,0,-9,0,-978.6695739038607,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,39,42,15,1,0,-9,0,5.719663708897499,5.719663708897499,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,44.91,6,1,0,1,12,3,1,1033,0,0,0 +721,891,1664,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-940.6006427103142,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,123.3620542282666,0,0,1,1,0,0,0,0,0,36.66,19.93,3,1,0,0,13,1,0,434,0,0,0 +721,892,1665,-9,1664,-9,2,1,1,48,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-836.1443537314432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.30718843432444,3,35.55,32.88,2,1,0,0,13,1,0,882,0,0,0 +722,893,1666,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,3,8.176839431438314,8.19167977679338,0,3,0,0,0,-9,0,-1059.69199825288,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,21,9,38,37,15,1,9,-9,0,11.0679411113829,11.0679411113829,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.15,55.39,5,1,0,0,2,4,1,945,0,0,0 +722,894,1667,-9,1666,-9,2,1,0,24,2,0,0,0,2,-9,1,1,0,4,7.928881465754008,7.898729843492828,0,3,0,0,0,-9,0,-1055.273755006021,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,40,38,15,1,2,-9,1,11.63895724181458,11.63895724181458,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,2,4,1,573,0,0,0 +723,895,1668,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,3,7.969753738863652,7.769356129758793,0,3,0,0,0,-9,0,-904.3251544781572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,38,37,15,1,1,-9,0,6.536736086090471,6.536736086090471,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,50.26,4,1,0,0,2,3,0,2120,0,0,0 +724,896,1669,1670,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-2,-61.37454522936055,0,0,0,81,3,3,3,3,2,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,122.4965568735971,1,53.39,27.55,5,1,0,0,13,2,0,416.5,0,0,0 +724,896,1670,1669,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,5.174553146690601,4.762199175030984,1,0,-9,10,0,2,66.34633776501731,0,0,0,79,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,125.6551366181488,0,0,0,0,1,1,0,0,5.070941596120792,0,0,33.94,28.8,5,1,0,0,13,2,0,416.5,0,0,0 +725,897,1671,1672,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,3,7.998234353869383,8.048934376208107,0,1,0,-9,10,0,-10,11.45055074460265,0,0,0,63,1,4,1,3,3,2019,1,2,6,0,7,4,15,1,0,1,0,53.89136920232394,53.89136920232394,0,0,0,0,0,0,0,0,0,0,1.049227667238091,0,0,0,54.04,50.75,7,1,0,0,10,5,1,554,0,0,0 +725,897,1672,1671,-9,-9,2,1,1,63,1,0,0,0,1,-9,1,1,0,4,9.730974966106093,9.636749561088749,0,1,0,-9,10,0,10,-42.24382804552489,0,0,0,53,2,3,1,3,3,2019,1,1,7,0,30,50,15,1,0,1,0,54.26765293501607,54.26765293501607,0,0,0,0,0,0,0,0,0,0,5.495656031752231,0,0,0,57.16,56.15,6,1,0,0,10,5,1,554,0,0,0 +726,898,1673,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-947.3053410555092,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,53,1,1,0,0,11,1,0,688,0,0,0 +727,899,1674,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,5,8.283413703608607,8.333351154177096,0,3,0,0,0,-9,0,-1062.264307405926,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,40,30,15,1,0,-9,0,12.79223739708161,12.79223739708161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,2,1,0,1,5,4,1,1559,0,0,0 +728,900,1675,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,2,7.939608294341534,7.779976607803302,0,3,0,0,0,-9,0,-894.2632147712734,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,31,32,15,1,8,-9,0,11.32710179426717,11.32710179426717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.38,52.92,1,2,0,1,2,4,0,500,0,0,0 +729,901,1676,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,1,1,0,3,7.126766189164649,7.357143019341378,0,3,0,0,0,-9,0,-997.9141128046034,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,45,45,15,1,1,-9,0,2.85020550720445,2.85020550720445,0,0,0,0,0,0,0,1,1,0,2.783851540153886,0,13.38924889175663,3,54.21,46.79,6,1,0,0,13,2,1,463,0,0,0 +730,902,1677,-9,1678,1679,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.0669455952285,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,1,268,0,0,0 +730,902,1678,1679,-9,-9,1,1,0,32,1,1,2,0,2,-9,2,1,0,3,8.073696574057706,8.434508477826997,0,2,0,-9,8,0,-2,46.92843992366907,0,0,1,34,1,2,1,1,2,2019,1,2,8,0,45,37,15,1,0,1,0,6.763731852200554,6.763731852200554,0,0,0,0,0,0,0,1,1,0,.5394436169429264,0,0,0,52,54.51,6,1,0,0,10,3,1,268,0,0,0 +730,902,1679,1678,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,2,7.525275234869568,7.561486370148753,0,2,0,-9,8,0,2,-17.37171271633407,0,0,0,32,2,3,1,-9,-9,2019,1,1,7,1,50,20,15,1,1,1,0,4.322653088761274,4.322653088761274,0,0,0,0,0,0,0,1,1,0,4.67101342982023,0,0,0,32.2,51.52,2,1,0,0,10,3,1,268,0,0,0 +730,902,1680,-9,1678,1679,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.31700882918,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,1,268,0,0,0 +731,903,1681,-9,1683,1684,4,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,3.618904451198511,3.487293138402143,2,0,0,0,-9,0,-770.876466864742,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.216001921866087,0,0,0,41.95,60.42,4,1,0,0,10,5,1,379.5,0,0,0 +731,903,1682,-9,1683,1684,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,3.805034636972134,4.057539242249708,2,0,0,0,-9,0,-1043.476961313732,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.20508977323537,0,0,0,46.98,59.35,5,1,0,0,10,5,1,379.5,0,0,0 +731,903,1683,1684,-9,-9,1,1,0,52,1,0,2,0,1,-9,2,1,0,4,7.29220690104079,8.676317643497139,8.066160224345532,2,0,-9,32,0,-5,82.57144697512064,0,0,0,57,1,2,1,2,2,2019,1,2,10,1,7,0,15,1,1,1,0,23.36805405927978,23.36805405927978,0,0,0,0,0,0,0,1,1,0,5.147501819654005,7.898771369946788,0,0,43.79,58.33,6,1,0,0,10,5,1,379.5,0,0,0 +731,903,1684,1683,-9,-9,2,1,1,57,1,0,2,0,1,-9,2,1,0,2,8.85383709651769,9.211829137642448,0,2,0,-9,32,0,5,-35.63145046784945,0,0,0,52,1,4,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,21.59506096499432,21.59506096499432,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.83,39.43,4,1,0,0,10,5,1,379.5,0,0,0 +732,904,1685,-9,-9,-9,1,1,0,41,3,0,0,0,1,-9,2,1,0,4,9.126393235592893,8.576376048502548,0,3,0,0,0,-9,0,-1060.396005463542,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,45,44,15,1,0,-9,0,20.46286000192436,20.46286000192436,0,0,0,0,0,0,0,0,0,0,7.39251418792343,0,0,0,49.41,58.28,6,1,0,0,7,5,0,492,0,0,0 +733,905,1686,-9,-9,-9,1,1,1,22,2,0,0,0,1,0,7,2,0,3,6.823181087025545,7.111702714639022,0,3,0,0,0,-9,0,-1099.085294010777,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,17,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.445426805688096,0,0,0,43.71,56.91,6,1,0,0,12,2,1,1168,0,0,0 +734,906,1687,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,2,0,5.243755051149474,5.609513259741282,3,0,0,0,-9,0,-1114.021284768898,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.87957409549221,5.796012654355864,0,0,61.94,32.56,4,1,0,0,10,2,1,381,0,0,0 +735,907,1688,-9,1689,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,3,7.99124286003063,7.86760147267643,0,3,0,0,0,-9,0,-1062.38133580406,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,40,0,15,1,0,-9,1,8.469459033160799,8.469459033160799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.14,58.58,3,1,0,0,7,4,1,1603,0,0,0 +735,908,1689,1690,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,3,9.021440054846186,8.85406353333024,0,1,0,-9,3,0,-2,60.25980240815422,0,0,0,55,2,4,1,2,2,2019,1,3,4,0,24,12,15,1,0,1,0,34.679355276913,34.679355276913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,7,1,0,0,7,5,1,549,0,0,0 +735,908,1690,1689,-9,-9,3,1,1,55,1,0,0,0,2,-9,2,1,0,4,7.585741961995101,7.728383291535986,0,1,0,-9,3,0,2,-10.78205443106415,0,0,0,53,1,3,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,7.260410994765722,7.260410994765722,0,0,0,0,0,0,0,0,0,0,8.155704012923088,0,0,0,54.2,57.49,6,1,0,0,7,5,1,549,0,0,0 +736,909,1691,1692,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,3,0,6.242982617625739,6.413281954712614,1,0,-9,30,0,-6,65.71589002310307,0,0,0,63,1,4,1,2,2,2019,1,1,19,7,0,0,15,1,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.589881390385347,0,0,0,35.61,55.45,5,1,0,0,9,5,1,164,0,0,0 +736,909,1692,1691,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,4,8.882779992241243,9.874253064822073,8.517596709412144,1,0,-9,30,0,6,78.15982367561925,0,0,0,57,1,3,1,2,1,2019,1,2,17,6,24,51,15,1,6,1,0,41.41716068221907,41.41716068221907,0,0,0,0,0,0,0,0,0,0,9.046457683070569,0,0,0,52.34,56.95,6,1,0,0,9,5,1,164,0,0,0 +737,910,1693,1694,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,4,7.699522441343862,8.019381174547039,0,1,0,-9,5,0,2,54.11912547328834,0,0,0,46,1,5,1,2,3,2019,1,2,6,0,40,35,15,1,0,1,0,7.261725648065822,7.261725648065822,0,0,0,0,0,0,0,0,0,0,6.319876511873662,0,5.52700541142756,3,58.84,47.11,6,1,0,0,11,5,1,2112,0,0,0 +737,910,1694,1693,-9,-9,2,1,0,46,1,0,0,0,1,-9,1,1,0,5,8.739361279356414,8.683389988703951,0,1,0,-9,5,0,-2,52.24103260910759,0,0,0,48,2,4,1,-9,-9,2019,1,1,9,0,32,35,15,1,0,1,0,28.72095344766885,28.72095344766885,0,0,0,0,0,0,0,0,0,0,3.372347098655377,0,0,3,57.06,57.76,7,1,0,0,11,5,1,2112,0,0,0 +738,911,1695,1696,-9,-9,1,1,0,64,1,0,0,0,2,-9,97,3,0,5,7.69254056241448,7.464055969878541,4.906231841830182,1,0,-9,45,0,-8,-43.11991713996568,0,0,0,72,3,4,1,3,3,2019,3,2,6,0,40,22,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.128422526149786,5.018362221616077,0,0,64.96000000000001,43.19,7,1,0,0,7,3,1,690.5,0,0,0 +738,911,1696,1695,-9,-9,2,1,1,72,1,0,0,0,3,-9,1,1,0,4,6.970667245531708,7.478219497405281,0,1,0,-9,47,0,8,6.071430169046132,0,0,0,64,2,5,3,3,2,2019,2,1,7,0,10,12,15,1,0,3,0,14.36908741461899,14.36908741461899,0,0,0,0,0,0,0,1,1,0,.5140998856954341,0,0,0,57.16,56.15,6,1,0,0,7,3,1,690.5,0,0,0 +739,912,1697,1698,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-5,-49.62817466712537,0,0,0,82,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.26,38.16,6,1,0,0,6,2,1,546.5,0,0,0 +739,912,1698,1697,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,6.219201561050211,6.948028178419436,1,0,-9,55,0,5,-72.49098787497341,0,0,0,77,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,.1769547920984875,0,0,0,0,1,1,0,3.042622347033173,6.660012324008076,0,0,64.40000000000001,42,6,1,0,0,6,2,1,546.5,0,0,0 +740,913,1699,1700,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,2,8.300648100850022,8.041196392160082,0,1,0,-9,8,0,0,-.5367260141461245,0,0,0,50,2,4,1,2,3,2019,1,1,12,1,31,35,15,1,1,1,0,14.08273185371446,14.08273185371446,0,0,0,0,0,0,0,0,0,0,.7283508468351065,0,6.035737085438648,3,34.79,47.81,5,1,0,0,6,5,1,706,0,0,0 +740,913,1700,1699,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.491608984325946,8.522060205089804,0,1,0,-9,8,0,0,20.48609444877901,0,0,0,50,1,2,1,2,3,2019,1,2,7,0,39,39,15,1,0,1,0,13.5977007394829,13.5977007394829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.17,56.08,6,1,0,0,6,5,1,706,0,0,0 +741,914,1701,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-936.6741180238378,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,5.650397716494573,0,0,14.32375018583486,0,89.23567671347868,1,1,0,0,0,0,0,54,43,6,1,0,0,13,1,1,330,0,0,0 +741,915,1702,-9,1701,-9,2,1,1,67,2,0,0,0,1,-9,4,3,0,4,0,8.05808146725027,7.961988463472517,3,0,0,0,-9,0,-1075.16790709868,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,8.01234851925377,10.34736327849238,3,57.16,56.15,6,1,0,0,13,4,1,233,0,0,0 +742,916,1703,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,1,7.174161747862843,7.459157055903207,0,3,0,0,0,-9,0,-1015.364531731845,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,10,7,0,15,1,10,-9,0,21.02222068997691,21.02222068997691,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.04,23.99,1,1,0,1,8,3,0,1555,0,0,0 +743,917,1704,-9,1706,1705,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1126.28263495112,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,571,0,0,0 +743,917,1705,1706,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,4,8.563700874697181,8.713799536806684,0,2,0,-9,9,0,3,71.36017317512189,0,0,0,42,1,4,1,-9,-9,2019,1,2,10,0,50,50,15,1,0,1,0,11.09853753432183,11.09853753432183,0,0,0,0,0,0,0,1,1,0,1.022110163089841,0,0,0,57.16,56.15,7,1,0,0,6,4,1,571,0,0,0 +743,917,1706,1705,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.054080774951743,7.877592324393517,0,2,0,-9,9,0,-3,-118.8001729036254,0,0,1,45,1,4,1,-9,-9,2019,1,1,10,0,39,36,15,1,0,1,0,9.943031084825664,9.943031084825664,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,6,4,1,571,0,0,0 +743,917,1707,-9,1706,1705,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.6086070022782,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,571,0,0,0 +744,918,1708,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,0,6.22619962597251,6.127621555562596,3,0,0,0,-9,0,-1007.394848708759,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.07239061457688,0,0,39,24,5,1,0,0,12,2,1,1884,0,0,0 +745,919,1709,1710,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.309227294887213,8.901308398243437,7.905218080420891,1,0,-9,44,0,-4,-28.14032880802746,0,0,0,65,2,3,1,3,3,2019,1,2,10,1,38,40,15,1,1,1,0,13.45795079036223,13.45795079036223,0,0,0,0,0,0,0,0,0,0,6.965415858849912,8.354864541676365,0,0,48.61,51.8,5,1,0,0,2,5,1,344,0,0,0 +745,919,1710,1709,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,3,8.683893469251466,8.870177052569483,0,1,0,-9,11,0,4,35.89464776742767,0,0,0,61,2,4,1,-9,-9,2019,1,1,12,0,36,37,15,1,0,1,0,17.98758944382109,17.98758944382109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.26,42.16,5,1,0,0,2,5,1,344,0,0,0 +746,920,1711,1714,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-1,0,0,1,1,25,2,3,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.857532611844144,1,54.37,54.8,6,1,0,0,9,1,0,424,0,0,0 +746,920,1712,-9,1711,1714,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.9996868834535,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,424,0,0,0 +746,920,1713,-9,1711,1714,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-909.2399417750551,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,1,0,424,0,0,0 +746,920,1714,1711,-9,-9,2,1,1,25,1,1,2,0,2,-9,8,3,1,3,0,0,0,2,0,-9,6,0,1,0,0,1,0,24,2,3,3,-9,-9,2019,4,1,23,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,3,1,0,0,9,1,0,424,0,0,0 +747,921,1715,1716,-9,-9,1,1,0,67,1,0,0,0,3,-9,2,1,0,4,7.921507412478904,8.012779198931002,0,1,0,-9,7,0,-2,141.3077734678518,0,0,0,69,2,4,3,3,2,2019,2,2,8,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.110618583407662,0,0,0,62.49,55.09,6,1,0,0,12,3,0,459,0,0,0 +747,921,1716,1715,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,6.42051466448048,6.228274220475332,1,0,-9,7,0,2,102.6106911729514,0,0,0,67,3,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.56967514263719,0,0,61.12,51.57,7,1,0,0,12,3,0,459,0,0,0 +748,922,1717,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,0,5.577950456438522,5.446079217953583,3,0,0,0,-9,0,-1007.030526177292,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.127689760580601,5.476291896236325,0,0,58.93,35.5,7,1,0,0,12,2,1,983,0,0,0 +749,923,1718,1719,-9,-9,2,1,1,64,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,6,0,-3,77.33590637535573,0,0,0,67,3,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,55.33,6,1,1,1,6,2,1,649.5,0,0,0 +749,923,1719,1718,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,6.279748642582927,6.095640723450613,1,0,-9,6,0,3,39.83435884486484,0,0,0,64,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.297151560050925,6.204886744592267,0,0,57.87,41.33,5,1,0,0,6,2,1,649.5,0,0,0 +750,924,1720,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,0,5.593691516721317,5.910992667631087,3,0,0,0,-9,0,-1041.708910417638,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.519262820449718,0,0,58.74,40.91,6,1,0,0,4,2,0,244,0,0,0 +751,925,1721,1722,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,3,8.464407451877188,8.632931649686133,4.54642487172417,1,0,-9,25,0,4,-21.97242603960623,0,0,0,59,2,4,1,3,3,2019,1,2,3,0,50,44,15,1,0,1,0,9.677541181858654,9.677541181858654,0,0,0,0,0,0,0,0,0,0,5.129217413903212,4.484151540925528,1.252223582550319,3,62.27,42.94,7,1,0,0,9,5,1,386,0,0,0 +751,925,1722,1721,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.086881473306185,8.369410842575626,0,1,0,-9,7,0,-4,6.327316129409849,0,0,0,63,2,3,1,-9,-9,2019,1,1,8,0,25,25,15,1,0,1,0,22.03784192275947,22.03784192275947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,6,1,0,0,9,5,1,386,0,0,0 +752,926,1723,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,2,0,3.184853594467718,3.680233381568032,3,0,0,0,-9,0,-973.3583106586132,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2723724454148718,3.620291104021776,0,0,35.56,24.49,2,1,0,0,6,2,1,624,0,0,0 +753,927,1724,1725,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,4,8.045181642088956,8.140732694398679,0,1,0,-9,7,0,2,-136.8183742742564,0,0,0,36,1,4,1,2,3,2019,1,1,6,0,38,38,15,1,0,1,0,10.18861569823101,10.18861569823101,0,0,0,0,0,0,0,0,0,0,0,0,4.400305305379458,3,59.53,56.44,1,1,0,0,1,4,1,355,0,0,0 +753,927,1725,1724,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,4,7.763743322384519,7.50917639350885,5.104538537172728,1,0,-9,7,0,-2,-141.3084269808035,0,0,1,38,1,4,1,1,1,2019,1,2,11,1,26,26,15,1,1,1,0,8.502481854839015,8.502481854839015,0,0,0,0,0,0,0,0,0,0,5.513846617875875,0,0,0,45.82,54.57,5,1,0,0,1,4,1,355,0,0,0 +754,928,1726,1727,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.583481052452786,9.21343820769909,7.80724310759067,1,0,-9,35,0,-2,81.79836796891789,0,0,0,63,1,4,1,2,2,2019,1,1,10,0,41,40,15,1,0,1,0,14.62981579523845,14.62981579523845,0,0,0,0,0,0,0,0,0,0,4.317338976733421,8.289092665824965,0,0,50.27,46.95,6,1,0,0,9,5,1,327,0,0,0 +754,928,1727,1726,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,4,6.809659903267602,6.583045500857959,0,1,0,-9,35,0,2,-23.48691075454678,0,0,0,61,2,3,1,2,2,2019,1,2,8,0,13,12,15,1,0,1,0,6.190918520827945,6.190918520827945,0,0,0,0,0,0,0,0,0,0,3.696872039374254,0,0,0,53.96,50.73,5,1,0,0,9,5,1,327,0,0,0 +754,929,1728,-9,1727,1726,3,1,0,21,2,0,0,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1203.568305067088,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.2257694834732078,0,0,0,33.26,61.9,5,1,0,0,9,1,1,893,0,0,0 +755,930,1729,-9,1730,1731,3,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.74528639564,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,4,1,0,0,9,4,1,681.3333333333334,0,0,0 +755,930,1730,1731,-9,-9,1,1,0,51,1,0,1,0,3,-9,2,1,0,4,8.088740045431791,8.294798210471223,0,2,0,-9,22,0,3,-66.54882950808671,0,0,0,48,2,4,1,-9,-9,2019,1,2,5,0,16,6,15,1,0,1,0,27.51875693585853,27.51875693585853,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,7,1,0,0,9,4,1,681.3333333333334,0,0,0 +755,930,1731,1730,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.568743296144056,8.393252161062064,0,2,0,-9,22,0,-3,-19.29384101024398,0,0,0,51,3,4,1,-9,-9,2019,1,1,8,0,46,44,15,1,0,1,0,10.87511645778703,10.87511645778703,0,0,0,0,0,0,0,1,1,0,.4707317752216698,0,0,0,57.16,56.15,6,1,0,0,9,4,1,681.3333333333334,0,0,0 +755,931,1732,-9,1730,1731,4,1,1,19,2,0,1,0,2,1,2,1,0,4,7.877512977183108,7.943948667836628,0,3,0,0,0,-9,0,-1006.170095291934,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,0,15,1,0,-9,1,7.266522888142603,7.266522888142603,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,6,1,0,0,9,3,1,375,0,0,0 +756,932,1733,-9,-9,-9,1,1,0,44,3,0,0,0,3,-9,2,1,0,5,8.288193823634289,8.019383006143253,0,3,0,0,0,-9,0,-985.8809521795173,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,0,7.761016452958805,7.761016452958805,0,0,0,0,0,0,0,1,1,0,3.856566941021167,0,.1991029386423997,3,48.77,60.16,5,1,0,0,5,4,1,1403,0,0,0 +757,933,1734,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,0,6.940496000227102,6.966018050181732,3,0,0,0,-9,0,-1157.789734419711,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.763702122255469,0,0,0,0,34.83516438838323,1,1,0,0,7.292527204618934,0,0,56.72,26.84,6,1,0,0,4,3,1,1127,0,0,0 +758,934,1735,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,4,0,6.658220357655594,7.139695046478958,3,0,0,0,-9,0,-889.1422575516526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.359499611458306,7.256259526475808,0,0,57.32,47.78,6,1,0,0,11,3,1,337,0,0,0 +759,935,1736,1737,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,35,0,-10,0,0,0,0,66,3,1,3,1,1,2019,4,1,12,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.85840181299467,1,39.51,45.46,6,3,0,1,6,1,1,1163,0,0,0 +759,935,1737,1736,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,35,0,10,0,0,0,0,56,2,3,3,-9,-9,2019,4,2,25,12,0,0,15,4,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.22,22.66,5,3,0,1,6,1,1,1163,0,0,0 +760,936,1738,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,1,1,0,3,6.902407364245255,6.767001135225832,0,3,0,-9,0,-9,0,-1076.542226428887,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,60,0,15,1,0,-9,0,1.81843860697543,1.81843860697543,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,57.99,5,1,0,0,7,2,0,183,0,0,0 +761,937,1739,1740,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,5.758058475865287,5.7250505026658,1,0,-9,43,0,-16,-78.22990871246816,0,0,0,95,3,3,3,-9,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.083250247992386,5.618754344837702,115.5683265672232,1,40.48,60.05,3,1,0,0,6,2,1,1600.5,0,0,0 +761,937,1740,1739,-9,-9,1,1,1,95,1,0,0,0,3,-9,4,3,0,3,0,6.445704317091213,6.566357773670948,1,0,-9,43,0,16,48.9665268955789,0,0,0,79,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.029291144230213,6.095019767451757,0,0,55,44,6,1,0,0,6,2,1,1600.5,0,0,0 +762,938,1741,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,5,8.665484261114084,8.803737680143039,0,3,0,0,0,-9,0,-1082.420756149506,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,47,43,15,1,0,-9,0,13.53657968740605,13.53657968740605,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.63,58.83,6,1,0,0,7,5,0,167,0,0,0 +763,939,1742,1743,-9,-9,2,1,1,37,1,0,0,0,1,-9,2,1,0,5,8.107828292108312,7.781308181670378,0,1,0,-9,7,0,0,171.7610409991636,0,0,0,37,1,3,1,2,2,2019,1,1,4,0,36,30,15,1,0,1,0,9.493885806752807,9.493885806752807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,6,1,0,0,5,4,1,2497,0,0,0 +763,939,1743,1742,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,3,8.526816815326583,8.296620015570308,0,1,0,-9,9,0,0,-53.39695982311709,0,0,1,37,1,5,1,2,1,2019,1,2,8,1,36,36,15,1,1,1,0,10.82466521403881,10.82466521403881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.6,51,6,1,0,0,5,4,1,2497,0,0,0 +764,940,1744,1745,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.974705884858343,8.740070022044341,0,1,0,-9,2,0,0,.2374900633380126,0,1,1,29,1,5,1,-9,-9,2019,1,1,9,0,60,68,15,1,0,1,0,13.08802872374622,13.08802872374622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.97,40,6,1,0,0,9,5,0,306,0,0,0 +764,940,1745,1744,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,5,7.998001074950817,8.195521633258803,0,1,0,-9,2,0,0,-31.02520615297505,0,1,0,29,1,4,1,1,2,2019,1,2,6,0,35,35,15,1,0,1,0,10.11842169649664,10.11842169649664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,9,5,0,306,0,0,0 +765,941,1746,1747,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,9.345986010222505,9.399718129426855,0,1,0,-9,7,0,-10,75.80266167187573,0,0,0,66,1,2,3,-9,-9,2019,2,1,10,0,40,38,15,1,1,4,0,32.43203545058168,32.43203545058168,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,6,1,0,0,9,5,0,1000,0,0,0 +765,941,1747,1746,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,28,0,10,-32.43491193372813,0,0,0,56,1,4,1,3,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.291811774048162,0,0,0,47.04,38.26,7,1,0,0,9,5,0,1000,0,0,0 +766,942,1748,1749,-9,-9,2,1,0,42,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,10,0,-18,-45.83619742980757,0,0,1,60,3,2,1,2,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.826409344433586,3,43.2,59.97,3,1,0,1,9,2,0,549,0,0,0 +766,942,1749,1748,-9,-9,1,1,1,60,1,0,3,0,3,-9,1,1,0,2,2.842227728346277,2.526279466031958,0,2,0,-9,10,0,18,-22.09053894208746,-9,0,0,42,2,4,3,2,2,2019,2,2,11,0,45,0,15,1,0,3,0,.038029707256835,.038029707256835,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,3,1,0,0,9,2,0,549,0,0,0 +766,942,1750,-9,1748,1749,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.662545257429,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,0,549,0,0,0 +767,943,1751,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,2,1,0,3,7.271848393007526,7.303149080563355,0,4,0,0,0,-9,0,-1055.337332827639,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,36,24,15,1,0,-9,0,6.766664130358127,6.766664130358127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,53.71,6,1,0,0,13,2,0,1028.666666666667,0,0,0 +767,943,1752,-9,1751,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-971.2697297438267,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,13,2,0,1028.666666666667,0,0,0 +767,943,1753,-9,1751,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1046.749788834915,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,2,0,1028.666666666667,0,0,0 +768,944,1754,1756,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,3,8.734271165825193,8.683910409032274,0,2,0,-9,21,0,-1,-29.05405570681729,0,0,0,46,1,3,1,1,2,2019,1,2,13,1,62,59,15,1,1,1,0,10.38663553326944,10.38663553326944,0,0,0,0,0,0,0,1,1,0,0,0,.2104025489141053,3,55.36,51.57,7,1,0,0,2,5,1,778.75,0,0,0 +768,944,1755,-9,1754,1756,6,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.02157021558,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,5,1,778.75,0,0,0 +768,944,1756,1754,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,8.609046696112035,9.006397996623825,0,2,0,-9,7,0,1,39.18067570696326,0,0,0,45,1,3,1,-9,-9,2019,1,1,10,1,39,37,15,1,1,1,0,23.12579122104642,23.12579122104642,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.78,46.87,6,1,0,0,2,5,1,778.75,0,0,0 +768,944,1757,-9,1754,1756,5,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.7063460626507,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,5,1,778.75,0,0,0 +768,945,1758,-9,1754,1756,3,1,0,20,2,0,2,0,2,1,2,1,0,4,7.611430252761884,8.001279931210277,0,3,0,0,0,-9,0,-1093.209098615693,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,40,0,15,1,2,-9,1,7.028088328712729,7.028088328712729,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,1,2,3,1,415,0,0,0 +769,946,1759,1761,-9,-9,1,1,1,38,1,2,2,0,1,-9,2,1,0,5,9.080636031743913,8.993948287809216,0,2,0,-9,3,0,7,-28.85019219683767,0,0,0,31,1,5,1,3,2,2019,1,2,0,0,37,37,15,1,0,1,0,23.90827490558373,23.90827490558373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,4,0,0,6,4,0,1258.25,0,0,0 +769,946,1760,-9,1761,1759,4,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-878.461765793711,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,4,0,0,6,4,0,1258.25,0,0,0 +769,946,1761,1759,-9,-9,2,1,0,31,1,2,2,0,1,-9,2,1,0,5,7.724066304579821,7.726815103528676,0,2,0,-9,3,0,-7,-144.017211165232,0,0,1,38,1,5,1,-9,-9,2019,1,1,2,0,24,0,15,1,0,1,0,9.047610731817192,9.047610731817192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.29,49.94,7,4,0,0,6,4,0,1258.25,0,0,0 +769,946,1762,-9,1761,1759,3,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-888.7642046732122,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,4,0,0,6,4,0,1258.25,0,0,0 +770,947,1763,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,2,0,5.63580494979922,5.740559845215505,3,0,0,0,-9,0,-997.9087717349078,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.02493802908482,0,0,48.15,22.67,6,1,0,0,13,2,0,211,0,0,0 +771,948,1764,-9,1765,1768,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.299925520186,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,733.2,0,0,0 +771,948,1765,1768,-9,-9,2,1,0,43,1,0,3,0,1,-9,1,1,0,4,7.10455380656857,8.449639912210261,7.803290012567986,2,0,-9,5,0,-8,56.19639995638781,0,0,1,51,2,4,1,-9,-9,2019,1,1,8,0,18,25,15,1,0,1,0,9.193841532447582,9.193841532447582,0,0,0,0,0,0,0,1,1,0,9.643981768561364,0,0,0,57.16,56.15,6,1,0,0,10,3,1,733.2,0,0,0 +771,948,1766,-9,1765,1768,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.7025327797148,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,3,1,733.2,0,0,0 +771,948,1767,-9,1765,1768,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.374232739691,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,10,3,1,733.2,0,0,0 +771,948,1768,1765,-9,-9,1,1,1,51,1,0,3,0,2,-9,1,1,0,4,7.17418260713004,7.218609943922359,0,2,0,-9,5,0,8,-5.188658870968172,0,0,0,43,1,4,1,2,2,2019,1,2,8,0,40,50,15,1,0,1,0,3.870292345973906,3.870292345973906,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,10,3,1,733.2,0,0,0 +772,949,1769,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1104.683224916106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,3.709921877398511,0,0,0,0,0,1,1,0,0,0,0,0,53,46,6,1,0,0,11,1,0,1687,0,0,0 +773,950,1770,-9,-9,-9,1,1,0,50,3,0,1,0,1,-9,2,1,0,4,8.318519977563806,8.64173904467347,6.035357013204449,4,0,0,0,-9,0,-968.451675364243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,35,37,15,1,0,-9,0,14.75464868068175,14.75464868068175,0,0,0,0,0,0,0,1,1,0,5.938712102982554,0,3.689209400264465,3,48.28,60.18,2,1,0,0,2,4,1,3603.5,0,0,0 +773,950,1771,-9,1770,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,5,2.534511985262359,2.24693209971486,0,4,0,0,0,-9,0,-1051.793372497216,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,29,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,63.93,5,1,0,0,2,4,1,3603.5,0,0,0 +774,951,1772,1773,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,4,8.49499499242134,8.450887072559764,0,1,0,-9,9,0,12,68.62055593444879,0,0,0,36,2,5,1,2,2,2019,1,1,8,1,37,37,15,1,1,1,0,11.76793627999555,11.76793627999555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.38,56.83,6,1,0,0,1,4,1,315,0,0,0 +774,951,1773,1772,-9,-9,1,1,1,36,1,0,0,0,2,-9,1,1,0,5,7.045015326986744,7.190721099386206,0,1,0,-9,9,0,-12,-10.96973432639685,0,0,0,48,1,4,1,2,2,2019,1,2,7,0,35,40,15,1,0,1,0,4.150515201483802,4.150515201483802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,1,0,0,1,4,1,315,0,0,0 +774,952,1774,-9,1772,1773,3,1,0,20,2,0,0,1,2,0,7,2,0,3,6.477235472737786,6.383597925553404,0,3,0,0,0,-9,0,-937.560251178835,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,20,8,12,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.93874910100827,0,0,0,46.92,25.73,3,1,0,0,1,2,1,7746,0,0,0 +775,953,1775,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,4,5.207634206353464,4.986785179160049,0,3,0,0,0,-9,0,-949.7038476711342,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,5,15,1,2,-9,0,.9022989251809332,.9022989251809332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,4,0,0,8,2,0,133,0,0,0 +776,954,1776,1779,-9,-9,2,1,0,28,1,1,2,0,2,-9,2,1,0,3,7.452743135066117,7.377230996124173,0,2,0,-9,4,0,2,46.13189854202511,0,1,1,26,2,4,1,-9,-9,2019,1,1,11,0,28,27,15,1,0,1,0,7.044452092598945,7.044452092598945,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,59.72,6,5,0,0,13,3,1,1047.75,0,0,0 +776,954,1777,-9,1776,1779,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.03920646809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,1,1047.75,0,0,0 +776,954,1778,-9,1776,1779,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.123272915735,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,3,1,1047.75,0,0,0 +776,954,1779,1776,-9,-9,1,1,1,26,1,1,2,0,2,-9,2,1,0,4,8.094213486391993,7.934490139491969,0,2,0,-9,4,0,-2,-184.8918135016152,0,1,0,28,2,3,1,-9,-9,2019,1,2,7,0,44,52,15,1,0,1,0,8.429618676482757,8.429618676482757,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,13,3,1,1047.75,0,0,0 +777,955,1780,1782,-9,-9,1,1,1,27,1,1,1,0,2,-9,2,1,0,5,8.15809714299361,8.293039719701435,0,2,0,-9,3,0,0,54.03739528212738,0,1,0,27,2,5,1,-9,-9,2019,1,2,8,0,40,39,15,1,0,1,0,11.03640419567469,11.03640419567469,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.3,55.33,6,1,0,1,11,3,1,252.6666666666667,0,0,0 +777,955,1781,-9,1782,1780,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-867.7644107067533,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,3,1,252.6666666666667,0,0,0 +777,955,1782,1780,-9,-9,2,1,0,27,1,1,1,0,2,-9,5,1,0,5,6.878792385176363,7.157241337598248,0,2,0,-9,3,0,0,-16.14779613871129,0,1,1,27,2,5,1,-9,-9,2019,1,1,4,0,14,39,15,1,0,1,0,9.124175816664218,9.124175816664218,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.52,43.87,7,1,0,1,11,3,1,252.6666666666667,0,0,0 +778,956,1783,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1073.917324541504,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.84322082915214,3,40.48,60.05,6,1,1,0,13,1,0,1078,0,0,0 +778,956,1784,-9,1783,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-935.9605742438498,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,1078,0,0,0 +779,957,1785,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,3,7.989623964547968,8.028535052803292,0,4,0,0,0,-9,0,-1105.961524616893,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,24,9,37,39,15,1,9,-9,0,12.09085315726891,12.09085315726891,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.04,58.33,5,1,0,0,12,3,1,439.5,0,0,0 +779,957,1786,-9,1785,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1036.532092853881,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,12,3,1,439.5,0,0,0 +780,958,1787,1788,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,43,0,-4,0,0,0,0,68,3,1,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.0219147627059,1,36.03,40.6,3,3,0,1,4,1,1,983,0,0,0 +780,958,1788,1787,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,43,0,4,0,0,0,0,64,3,2,3,-9,-9,2019,4,2,35,12,0,0,15,4,12,4,0,0,0,1,0,134.9595789821452,0,0,0,0,1,1,0,0,0,0,0,24.68,21.22,2,3,0,1,4,1,1,983,0,0,0 +780,959,1789,-9,1787,1788,3,1,0,27,2,0,0,0,1,1,2,1,0,3,7.276307688360677,7.526680912035268,0,3,0,0,0,-9,0,-1022.109078978509,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,15,0,15,1,1,-9,1,10.63185717236582,10.63185717236582,0,0,0,0,0,0,0,1,1,0,0,0,114.6756031050534,3,46.56,50.26,1,3,0,0,4,3,1,244,0,0,0 +780,960,1790,-9,1787,1788,4,1,0,25,2,0,0,0,1,-9,2,1,0,2,7.935116816201812,7.888716406968763,0,3,0,0,0,-9,0,-1130.548502488049,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,4,38,37,15,1,4,-9,1,9.576358805985132,9.576358805985132,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.26,35.91,4,3,0,0,4,4,1,2401,0,0,0 +780,961,1791,-9,1787,1788,5,1,0,24,2,0,0,1,2,0,7,2,0,2,6.853472738315267,6.614504291509538,0,3,0,0,0,-9,0,-989.7128603568331,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,22,10,14,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,4,3,0,0,4,2,1,77,0,0,0 +781,962,1792,1794,-9,-9,3,1,0,40,1,0,1,0,1,-9,2,1,0,5,9.295515967618631,9.695379427519851,0,2,0,-9,5,0,-10,-8.57823306192727,0,0,1,50,1,3,1,1,1,2019,1,1,22,10,39,34,15,1,10,1,0,32.10897368201117,32.10897368201117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,5,1,0,0,8,5,1,1690,0,0,0 +781,962,1793,-9,-9,1794,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0128267284068,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,5,2,0,0,8,5,1,1690,0,0,0 +781,962,1794,1792,-9,-9,1,1,1,50,1,0,1,0,1,-9,1,1,0,3,9.284727575132738,9.331827436139678,0,2,0,-9,5,0,10,-36.95627342658585,0,0,0,40,1,5,1,2,3,2019,1,3,10,0,45,50,15,1,0,1,0,23.94746584767925,23.94746584767925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.32,48.42,6,3,0,0,8,5,1,1690,0,0,0 +782,963,1795,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,3,0,7.176014107799191,7.504837958798011,3,0,0,0,-9,0,-941.3635632807463,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.097362081395147,3.522766785928044,0,0,1,1,0,0,7.135745395944508,0,0,53.13,42,5,1,0,0,12,3,1,201,0,0,0 +783,964,1796,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.929371182559786,8.172149051503945,0,3,0,0,0,-9,0,-1123.059788639278,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,38,15,1,2,-9,0,11.74804610851227,11.74804610851227,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,4,0,0,8,4,1,476,0,0,0 +784,965,1797,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,2,0,7.439692486759028,7.44872816226126,3,0,0,0,-9,0,-928.0112619291253,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.068741514219765,0,0,46.41,37.03,3,4,0,0,8,3,1,315,0,0,0 +785,966,1798,1799,-9,-9,2,1,0,65,1,0,1,0,2,-9,4,3,0,4,0,0,0,2,0,-9,9,0,0,39.11345069933869,0,0,0,65,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,4.960674801217595,0,0,0,58.55,46.11,7,1,0,0,9,2,1,640,0,0,0 +785,966,1799,1798,-9,-9,1,1,1,65,1,0,1,0,2,-9,4,3,0,4,0,6.93277571420036,6.603596849547141,2,0,-9,9,0,0,-141.851797436264,0,0,0,65,2,4,3,3,3,2019,4,2,10,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,6.480453743991377,6.667280115546824,0,0,62.49,55.09,7,1,0,0,9,2,1,640,0,0,0 +785,967,1800,-9,1801,-9,4,1,0,17,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-999.2670877546929,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,3.727086327976961,0,0,0,54.2,57.49,7,1,0,0,9,3,1,180.5,0,0,0 +785,967,1801,-9,1798,1799,3,1,0,40,2,0,1,0,2,-9,1,1,0,4,7.872939963726224,7.734802226889523,4.485868161856214,3,0,0,0,-9,0,-928.1752399452521,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,40,15,1,0,-9,1,5.280416157424833,5.280416157424833,0,0,0,0,0,0,0,1,0,1,4.559186362624493,0,0,0,54.2,57.49,6,1,0,0,9,3,1,180.5,0,0,0 +786,968,1802,1803,-9,-9,2,1,0,48,1,0,0,0,1,-9,1,1,0,3,7.200335768029571,7.739264308150479,0,1,0,-9,7,0,1,71.22301933410866,0,0,0,47,1,4,1,3,2,2019,1,1,8,0,20,0,15,1,0,1,0,12.61269810151749,12.61269810151749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,5,5,1,108.5,0,0,0 +786,968,1803,1802,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,4,8.661498164006259,8.762204420920646,0,1,0,-9,7,0,-1,70.87655054773529,-9,0,0,48,1,3,1,2,3,2019,1,2,9,0,60,0,15,1,1,1,0,11.97371132733486,11.97371132733486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,5,5,1,108.5,0,0,0 +787,969,1804,1805,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.808565247724587,9.091838353850383,0,2,0,-9,27,0,5,-79.21487257872063,0,0,0,43,2,2,1,3,3,2019,1,1,6,0,48,0,15,1,0,1,0,13.23258436370814,13.23258436370814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,5,1,0,0,5,4,1,1149,0,0,0 +787,969,1805,1804,-9,-9,1,1,0,43,1,0,1,0,2,-9,1,1,0,2,5.531237060218297,5.994300627046781,0,2,0,-9,27,0,-5,-22.13431336226122,0,0,1,48,2,4,1,3,3,2019,1,2,13,2,24,22,15,1,2,1,0,2.072718756942144,2.072718756942144,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.85,46.39,3,1,0,0,5,4,1,1149,0,0,0 +788,970,1806,1807,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,58,0,-5,0,0,0,0,80,3,2,3,3,2,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.89131853307791,1,57.99,17.94,3,1,0,0,5,1,1,3903,0,0,0 +788,970,1807,1806,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,58,0,5,0,0,0,0,75,3,2,3,3,3,2019,4,2,23,8,0,0,15,4,8,4,0,0,0,1,0,14.94975418224097,0,0,0,0,1,1,0,0,0,0,0,40.29,22.13,6,1,0,0,5,1,1,3903,0,0,0 +789,971,1808,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,4,8.847454122797053,8.598363809848925,0,3,0,0,0,-9,0,-1024.896730050882,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,58.45,4,3,0,0,8,5,0,328,0,0,0 +790,972,1809,-9,-9,-9,1,1,0,33,2,1,1,0,1,-9,2,1,0,4,8.549632821485046,8.377439286659216,0,4,0,0,0,-9,0,-1119.125626870399,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,37,37,15,1,0,-9,0,10.48500430357254,10.48500430357254,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,4,0,0,9,4,0,1065,0,0,0 +790,972,1810,-9,1809,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-965.5949839517366,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,9,4,0,1065,0,0,0 +791,973,1811,1812,-9,-9,1,1,1,52,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,37,0,1,174.3462503253977,0,0,0,51,2,5,1,3,3,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.43,46.68,4,1,1,0,4,3,1,354.5,0,0,0 +791,973,1812,1811,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,5,8.167201897436726,8.571086151494571,0,1,0,-9,32,0,-1,-103.7498224782239,0,0,0,52,2,4,3,3,3,2019,2,1,8,0,38,37,15,1,0,3,0,9.240595998629162,9.240595998629162,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.06,57.76,5,1,0,0,4,3,1,354.5,0,0,0 +791,974,1813,-9,1812,1811,3,1,1,28,2,0,0,0,2,-9,2,1,0,5,8.327158259764634,8.127217537344917,0,3,0,0,0,-9,0,-932.3658684232236,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,40,15,1,0,-9,1,10.02353512854877,10.02353512854877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,4,4,1,1122,0,0,0 +792,975,1814,1815,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,3,8.350894200554471,8.679189267214991,7.409337623162608,1,0,-9,9,0,5,113.7642767934893,0,0,0,57,2,3,1,3,2,2019,1,2,9,0,34,30,15,1,0,1,0,13.20723223601625,13.20723223601625,0,0,0,0,0,0,0,0,0,0,2.650345707207944,7.442231769101225,0,0,55.13,34.07,6,1,0,0,6,5,1,527.5,0,0,0 +792,975,1815,1814,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,3,7.910925454109044,8.122284481055424,0,1,0,-9,9,0,-5,69.43893005335768,0,0,0,62,2,3,1,-9,2,2019,1,1,7,0,30,32,15,1,0,1,0,12.25252636232438,12.25252636232438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,6,1,0,0,6,5,1,527.5,0,0,0 +793,976,1816,-9,-9,-9,1,1,1,41,3,0,0,0,1,-9,2,1,0,1,9.162312259819759,8.798977481320371,0,3,0,0,0,-9,0,-800.2800155694623,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,38,38,15,1,0,-9,0,26.98287473667382,26.98287473667382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,34,4,1,0,1,4,5,0,635,0,0,0 +794,977,1817,1818,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,3,9.083583326066252,9.071937576206489,0,1,0,-9,35,0,1,123.5621614402756,0,0,0,57,1,4,1,3,3,2019,1,1,6,0,55,50,15,1,0,1,0,18.4558302365065,18.4558302365065,0,0,0,0,0,0,0,0,0,0,3.187534405163111,0,0,3,57.33,53.46,6,1,0,0,12,5,1,1022,0,0,0 +794,977,1818,1817,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,4,7.985801123513395,8.150161597648847,0,1,0,-9,35,0,-1,38.79566718727766,0,0,0,58,1,3,1,2,1,2019,1,2,4,0,31,30,15,1,0,1,0,13.95706570419166,13.95706570419166,0,0,0,0,0,0,0,0,0,0,3.202871330820854,0,0,3,57.16,56.15,6,1,0,0,12,5,1,1022,0,0,0 +795,978,1819,1822,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,7.739455817431575,8.408465425568481,0,2,0,-9,21,0,-12,13.27945843989338,0,0,1,54,1,4,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,10.87311969419085,10.87311969419085,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,6,1,0,0,9,5,1,1051,0,0,0 +795,978,1820,-9,1819,1822,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.4369771270251,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,9,5,1,1051,0,0,0 +795,978,1821,-9,1819,1822,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.360958298139,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1051,0,0,0 +795,978,1822,1819,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,4,9.454851283902217,9.727096073743152,0,2,0,-9,21,0,12,-89.48094115441661,0,0,0,42,1,4,1,2,2,2019,1,2,8,1,42,42,15,1,1,1,0,35.23521060136634,35.23521060136634,0,0,0,0,0,0,0,0,0,0,0,0,7.302979311764564,3,54.2,57.49,6,1,0,0,9,5,1,1051,0,0,0 +796,979,1823,1824,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,7.386443498560065,6.751888221866855,1,0,-9,32,-9,8,23.07545168682125,-9,0,0,57,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.135414873487181,0,0,55.87,30.05,4,1,0,0,5,2,1,708,0,0,0 +796,979,1824,1823,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,32,-9,-8,-8.053575992047714,-9,0,0,65,2,2,3,3,3,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.26,44.13,6,1,0,0,5,2,1,708,0,0,0 +797,980,1825,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.309225578616893,7.466947037937685,0,3,0,-9,0,-9,0,-990.8979721834711,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,30,0,15,1,1,-9,0,6.045070165253628,6.045070165253628,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.64,39.18,6,1,0,0,13,3,1,526,0,0,0 +798,981,1826,-9,-9,-9,1,1,0,38,2,0,1,0,3,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1070.059013730784,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.19,43.16,3,1,1,1,1,1,0,934,0,0,0 +799,982,1827,1828,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,5,0,7.477413019056877,7.50699053497718,1,0,-9,46,0,9,140.9350904389298,0,0,0,72,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.575840542603332,7.709262835183224,0,0,60.02,56.42,7,1,0,0,9,3,1,844,0,0,0 +799,982,1828,1827,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,6.385211903750657,6.845973849624691,1,0,-9,46,0,0,-23.32775856300572,0,0,0,81,3,5,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.766072842170542,0,0,57.16,56.15,6,1,0,0,9,3,1,844,0,0,0 +800,983,1829,1830,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,5,8.304379042697063,8.274480149905031,0,1,0,-9,10,0,3,-62.39176120006982,0,0,0,60,1,4,1,1,1,2019,1,1,14,3,35,28,15,1,3,1,0,11.58294182817811,11.58294182817811,0,0,0,0,0,0,0,0,0,0,6.376568347131607,0,11.98174773862159,3,45.81,61.51,6,1,0,0,1,5,0,1030,0,0,0 +800,983,1830,1829,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,4,9.279825886824584,9.435509010388191,0,1,0,-9,10,0,-3,-112.7529745685275,0,0,0,63,2,5,1,2,2,2019,1,2,16,6,47,31,15,1,6,1,0,27.41683034843318,27.41683034843318,0,0,0,0,0,0,0,0,0,0,7.136317968109197,0,0,0,44.56,59.1,5,1,0,0,1,5,0,1030,0,0,0 +800,984,1831,-9,1830,1829,3,1,0,21,2,0,0,1,2,-9,7,2,0,5,5.738103375446931,5.904273246780162,0,3,0,0,0,-9,0,-980.8969988124792,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,3,0,70,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.33,43.48,7,1,0,0,1,2,0,296,0,0,0 +801,985,1832,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,5.324691602307206,5.06506101092935,3,0,0,0,-9,0,-1080.500225514157,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,17.53316807284724,0,0,1,1,0,2.223338150673881,5.04887523354115,0,0,41.74,42.32,7,1,0,0,9,2,1,455,0,0,0 +802,986,1833,1834,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.728791575733588,7.6803108256322,0,1,0,-9,29,0,2,-30.11960147837488,0,0,0,59,2,2,1,-9,-9,2019,1,1,12,1,20,15,15,1,1,1,0,16.84004689675725,16.84004689675725,0,0,0,0,0,0,0,0,0,0,3.178483226155439,0,0,0,35.96,49.55,6,1,0,0,5,5,1,903.5,0,0,0 +802,986,1834,1833,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.351735660500054,8.544218786194447,0,1,0,-9,30,0,-2,76.71217378772783,0,0,0,61,2,3,1,3,2,2019,1,2,10,0,45,45,15,1,0,1,0,11.47629252678724,11.47629252678724,0,0,0,0,0,0,0,0,0,0,5.976513306799864,0,0,0,51.41,40.09,5,1,0,0,5,5,1,903.5,0,0,0 +802,987,1835,-9,1833,1834,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.344647463947684,7.277972267354285,0,3,0,0,0,-9,0,-858.0288360323841,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,15,40,15,1,1,-9,1,14.06374709806433,14.06374709806433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.41,61.57,5,1,0,1,5,3,1,1033,0,0,0 +803,988,1836,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,8.10020737708469,7.662926085375359,3,0,0,0,-9,0,-852.502813591384,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.598128957832264,0,0,52,45,6,1,0,0,9,3,1,767,0,0,0 +804,989,1837,1838,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,8.294660962528084,8.058297492310988,0,1,0,-9,29,0,0,22.24189058952913,0,0,0,58,2,3,1,3,3,2019,1,2,14,3,48,46,15,1,3,1,0,11.86149039586359,11.86149039586359,0,0,0,0,0,0,0,0,0,0,0,0,0,3,45,38,5,1,0,0,4,5,1,2636.5,0,0,0 +804,989,1838,1837,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.375893464451121,8.275768202723466,0,1,0,-9,7,0,0,-11.04611304878137,0,0,0,58,2,2,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,10.85286502856775,10.85286502856775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,5,1,0,0,4,5,1,2636.5,0,0,0 +804,990,1839,-9,1837,1838,3,1,1,31,2,0,0,0,3,-9,2,1,0,4,8.159512041098855,8.49969597175423,0,3,0,0,0,-9,0,-1070.413891868366,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,35,15,1,1,-9,1,13.77488688254572,13.77488688254572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,4,4,1,1743,0,0,0 +805,991,1840,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,4,0,7.791005726312926,7.811101756777345,3,0,0,0,-9,0,-981.1421511622464,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.33089750731918,7.675248543977437,0,0,62.4,42.8,2,1,0,0,13,3,1,238,0,0,0 +806,992,1841,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,4,9.442306131924971,9.342744431486329,0,1,0,-9,10,0,6,75.97726855547631,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,9,0,43,43,15,1,0,-9,0,36.36861184225785,36.36861184225785,0,0,0,0,0,0,0,0,0,0,0,0,6.971046033846081,3,54.79,55.86,6,1,0,0,9,5,1,712,0,0,0 +806,993,1842,-9,-9,-9,2,1,0,47,2,0,0,0,1,-9,2,1,0,4,9.13724994803675,9.214441039084274,0,1,0,-9,10,0,-6,-89.19019261062894,0,0,0,-9,-9,-9,-9,1,3,2019,1,1,5,0,82,82,15,1,0,-9,0,10.74463564910907,10.74463564910907,0,0,0,0,0,0,0,0,0,0,4.420979076416525,0,0,0,51.24,58.84,2,1,0,0,9,5,1,265,0,0,0 +806,994,1843,-9,1841,-9,3,1,1,21,2,0,0,1,2,0,7,2,0,3,0,6.076599185527579,5.941049884859056,3,0,0,0,-9,0,-1005.920692034711,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.138012298705103,0,0,0,39.1,57.79,5,1,0,0,9,2,1,215,0,0,0 +807,995,1844,1845,-9,-9,1,1,1,57,1,0,0,0,1,-9,4,3,0,4,0,8.171529402327563,9.020819506599784,1,0,-9,9,0,3,-35.31041520361536,0,0,0,54,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.183514416519403,8.75207067039489,6.119083561362729,3,42.76,57.19,6,1,0,0,12,4,1,1505,0,0,0 +807,995,1845,1844,-9,-9,2,1,0,54,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,-3,-78.27250391607893,0,0,0,57,1,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.334690782435665,0,0,0,51.24,58.84,7,1,0,0,12,4,1,1505,0,0,0 +808,996,1846,-9,1848,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-878.2533218694299,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,1,0,321.6666666666667,0,0,0 +808,996,1847,-9,1848,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1016.521834927468,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,7,1,0,321.6666666666667,0,0,0 +808,996,1848,-9,-9,-9,1,1,0,24,2,0,2,0,2,-9,6,3,0,5,0,0,0,4,0,0,0,-9,0,-969.5962058163838,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,7,2,0,0,7,1,0,321.6666666666667,0,0,0 +809,997,1849,1852,-9,-9,1,1,1,36,1,1,3,0,1,-9,2,1,0,4,9.142780030708138,8.980145025537411,0,2,0,-9,7,0,0,-104.6705430158919,0,0,0,36,1,4,1,1,1,2019,1,2,12,0,45,55,15,1,0,1,0,23.17368181698195,23.17368181698195,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.68,56.37,6,1,0,0,11,5,1,316.8,0,0,0 +809,997,1850,-9,1852,1849,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.0035870271165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,316.8,0,0,0 +809,997,1851,-9,1852,1849,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.4824240033313,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,5,1,316.8,0,0,0 +809,997,1852,1849,-9,-9,2,1,0,36,1,1,3,0,1,-9,2,1,0,4,7.974201498894787,7.863429047322238,0,2,0,-9,7,0,0,65.29062034432124,0,0,1,36,1,4,1,-9,-9,2019,1,1,11,2,30,30,15,1,2,1,0,15.83380357537271,15.83380357537271,0,0,0,0,0,0,0,1,1,0,3.785194705034707,0,0,0,43.48,60.97,6,1,0,0,11,5,1,316.8,0,0,0 +809,997,1853,-9,1852,1849,4,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.8106320242422,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,316.8,0,0,0 +810,998,1854,1855,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.590877940045582,8.83018060277861,0,1,0,-9,8,0,1,-71.94983387214909,0,0,0,56,2,4,1,3,3,2019,1,2,11,0,45,38,15,1,0,1,0,13.15021936245309,13.15021936245309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,6,1,0,0,9,5,1,404,0,0,0 +810,998,1855,1854,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.176959962568251,8.385623047156495,0,1,0,-9,8,0,-1,-95.35862521268868,-9,0,0,57,1,4,1,-9,-9,2019,1,1,5,0,28,0,15,1,0,1,0,18.19017997162758,18.19017997162758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,9,5,1,404,0,0,0 +811,999,1856,1857,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.789683976078049,7.828999299840482,0,1,0,-9,43,0,-4,45.82343676695363,0,0,0,65,3,2,3,-9,-9,2019,2,1,11,0,39,39,15,1,0,4,0,6.64604860528897,6.64604860528897,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,10,3,1,428.5,0,0,0 +811,999,1857,1856,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,6.690813049569879,6.963297527384615,1,0,-9,41,0,4,56.98249685768537,0,0,0,61,2,3,1,3,3,2019,3,2,22,10,0,39,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.520816632417565,0,0,42.27,33.62,5,1,0,0,10,3,1,428.5,0,0,0 +812,1000,1858,1859,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.663308746094987,8.496285278018469,0,2,0,-9,21,0,-1,72.53688165761444,0,0,0,47,2,3,1,2,2,2019,1,2,9,0,56,45,15,1,0,1,0,11.43023757378675,11.43023757378675,0,0,0,0,0,0,0,1,1,0,3.172212877029057,0,0,0,57.16,56.15,6,3,0,0,9,4,1,1075.333333333333,0,0,0 +812,1000,1859,1858,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,3,8.04658185999965,8.212211293376594,0,2,0,-9,21,0,1,-66.10126849971114,0,0,0,46,2,4,1,2,2,2019,1,1,10,0,38,48,15,1,0,1,0,10.60432470249837,10.60432470249837,0,0,0,0,0,0,0,1,1,0,2.363523811216934,0,0,0,40.14,38.19,6,3,0,0,9,4,1,1075.333333333333,0,0,0 +812,1000,1860,-9,1859,1858,4,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1041.125464902882,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,4,3,0,0,9,4,1,1075.333333333333,0,0,0 +812,1001,1861,-9,1859,1858,3,1,0,18,2,0,1,0,2,1,2,1,0,3,8.00491959961006,8.02385016513786,0,3,0,0,0,-9,0,-1051.531557018651,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,50,0,15,1,2,-9,1,5.073842966995523,5.073842966995523,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,6,3,0,0,9,3,1,127,0,0,0 +813,1002,1862,-9,1864,1865,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.581019829491,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1193.75,0,0,0 +813,1002,1863,-9,1864,1865,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1059.514850489648,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,4,1,1193.75,0,0,0 +813,1002,1864,1865,-9,-9,1,1,0,27,1,2,2,0,2,-9,2,1,0,4,7.955017258631661,8.335365582399913,0,2,0,-9,4,0,-2,-63.14051617009087,0,1,1,29,2,3,1,2,2,2019,1,2,12,1,7,14,15,1,1,1,0,53.58462852659951,53.58462852659951,0,0,0,0,0,0,0,1,1,0,.76990389928273,0,0,0,30.3,63.25,6,1,0,0,12,4,1,1193.75,0,0,0 +813,1002,1865,1864,-9,-9,2,1,1,29,1,2,2,0,2,-9,2,1,0,3,8.225997262221142,8.098313177998397,0,2,0,-9,4,0,2,96.06117487495983,0,1,0,27,2,4,1,-9,-9,2019,1,1,10,0,37,38,15,1,0,1,0,12.69979530587688,12.69979530587688,0,0,0,0,0,0,0,1,1,0,4.013672027366925,0,0,0,47.66,52.33,5,1,0,0,12,4,1,1193.75,0,0,0 +814,1003,1866,1867,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.007251075405069,8.151690093094583,0,2,0,-9,6,0,5,107.2153020534206,0,0,0,44,2,4,3,3,2,2019,2,1,8,0,60,60,15,1,0,3,0,6.136588332448197,6.136588332448197,0,0,0,0,0,0,0,1,1,0,0,0,27.34133567126947,1,57.16,56.15,6,1,0,0,12,3,0,1621.333333333333,0,0,0 +814,1003,1867,1866,-9,-9,1,1,0,44,1,0,1,0,2,-9,8,3,1,4,0,0,0,2,0,-9,6,0,-5,-6.894370209489569,0,0,1,49,2,4,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,12,3,0,1621.333333333333,0,0,0 +814,1003,1868,-9,1867,1866,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1120.805485036658,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.934592787231455,0,0,0,59.53,56.44,7,1,0,0,12,3,0,1621.333333333333,0,0,0 +814,1004,1869,-9,1867,1866,3,1,0,23,2,0,1,0,2,-9,2,1,0,3,6.887055798824588,6.914490099803948,0,3,0,0,0,-9,0,-846.2285314875321,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,1,16,12,15,1,1,-9,1,7.162878974306975,7.162878974306975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,5,1,0,0,12,2,0,648,0,0,0 +815,1005,1870,1871,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,3,8.276668860312622,8.361282491802839,0,1,0,-9,25,0,12,114.2905267778435,0,0,0,45,2,4,1,-9,-9,2019,1,2,11,0,47,44,15,1,0,1,0,10.22394727446499,10.22394727446499,0,0,0,0,0,0,0,1,1,0,0,0,.1145719179379063,3,44.02,49.99,6,1,0,0,5,5,1,662,0,0,0 +815,1005,1871,1870,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,4,8.655147231388575,8.66284145522901,0,1,0,-9,25,0,-12,7.939771633392219,0,0,0,57,3,3,1,2,-9,2019,1,1,6,0,42,43,15,1,0,1,0,13.42704083704831,13.42704083704831,0,0,0,0,0,0,0,1,1,0,0,0,0,3,59.71,50.89,6,1,0,0,5,5,1,662,0,0,0 +815,1006,1872,-9,1871,1870,3,1,0,20,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1044.773104014473,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,41,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.809602312696769,3,38.68,55.46,6,1,0,0,5,1,1,550,0,0,0 +816,1007,1873,1874,-9,-9,2,1,0,31,1,0,1,0,1,-9,2,1,0,4,7.232358371068248,7.045175600289983,0,2,0,-9,7,0,-1,-64.33822245237027,0,0,1,32,2,4,1,-9,-9,2019,1,1,9,1,33,17,15,1,1,1,0,4.084956384076972,4.084956384076972,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,1,880,0,0,0 +816,1007,1874,1873,-9,-9,1,1,1,32,1,0,1,0,2,-9,2,1,0,4,8.730528242924406,8.652648619891108,0,2,0,-9,7,0,1,52.12523463481222,0,0,0,31,1,4,1,-9,-9,2019,1,2,10,0,44,36,15,1,1,1,0,17.52786208889735,17.52786208889735,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,2,4,1,880,0,0,0 +816,1007,1875,-9,1873,1874,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.278084787784,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,880,0,0,0 +817,1008,1876,1877,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,3,8.671824421613099,8.488430303371581,0,1,0,-9,8,0,-3,84.00410961533603,-9,0,0,68,2,4,3,-9,-9,2019,2,1,10,0,45,0,15,1,1,4,0,12.93024784004119,12.93024784004119,0,0,0,0,0,0,0,1,1,0,7.435803347319674,0,0,0,52,48,5,1,0,0,8,4,1,352,0,0,0 +817,1008,1877,1876,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,40,0,3,-3.852267222984406,0,0,0,65,2,3,1,3,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.114334148927236,0,0,0,54.2,57.49,7,1,0,0,8,4,1,352,0,0,0 +818,1009,1878,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.01328368807156,8.031664266698089,0,3,0,0,0,-9,0,-1021.786691976422,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,38,38,15,1,1,-9,0,9.131180588055644,9.131180588055644,0,0,0,0,0,0,0,0,0,0,1.370903172307526,0,0,0,59.64,38.58,6,1,0,0,5,4,1,729,0,0,0 +819,1010,1879,1880,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,2,8.023054477762324,8.442452076930973,5.655610791163798,1,0,-9,29,0,6,-26.62705527025994,0,0,0,55,1,5,1,3,3,2019,1,2,12,1,30,37,15,1,1,1,0,11.62220251934168,11.62220251934168,0,0,0,0,0,0,0,0,0,0,6.22348195426768,6.203824609343647,0,0,43.85,31.58,4,1,0,0,9,5,1,1717,0,0,0 +819,1010,1880,1879,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,5,8.570218025135672,8.66466758884841,0,1,0,-9,8,0,-6,-1.467051830642377,0,0,0,61,3,2,1,1,1,2019,1,1,9,0,42,40,15,1,0,1,0,13.78953517043794,13.78953517043794,0,0,0,0,0,0,0,0,0,0,2.470988109911111,0,0,0,57.06,57.76,6,1,0,0,9,5,1,1717,0,0,0 +820,1011,1881,-9,-9,-9,1,1,0,41,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-955.7350569095051,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.08,42.03,3,2,1,0,8,1,0,568,0,0,0 +821,1012,1882,1883,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,1,0,5.093681137762736,5.523448457519895,1,0,-9,2,0,8,24.36585285937211,0,0,0,70,2,3,3,3,3,2019,4,2,23,10,0,0,15,4,10,4,0,0,0,1,0,6.194894055176579,0,0,0,0,1,1,0,.315851214270864,5.425523009710106,0,0,34.38,24.96,4,1,0,0,8,2,0,626.5,0,0,0 +821,1012,1883,1882,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,2,0,-8,4.408231621633678,0,0,0,78,3,1,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.189397452442319,0,8.497938038417269,1,47.8,43.06,6,1,0,0,8,2,0,626.5,0,0,0 +822,1013,1884,-9,1885,1886,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.375356198546,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,8,4,1,931,0,0,0 +822,1013,1885,1886,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,3,8.709883017288821,9.000700508737985,0,2,0,-9,29,0,-1,12.91658619417016,0,0,0,54,2,4,1,3,3,2019,1,2,12,0,37,37,15,1,2,1,0,20.72459474094114,20.72459474094114,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,8,4,1,931,0,0,0 +822,1013,1886,1885,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,4,7.824182824587441,7.822589652355147,0,2,0,-9,29,0,1,2.794747316496993,0,0,0,53,2,3,1,2,2,2019,1,1,9,0,48,48,15,1,1,1,0,7.802309697284677,7.802309697284677,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,8,4,1,931,0,0,0 +822,1014,1887,1888,-9,-9,5,1,1,34,1,0,1,0,1,-9,2,1,0,4,8.640063527657494,9.19311168995613,0,2,0,-9,2,0,8,-45.29248878151054,0,0,0,26,2,4,1,-9,-9,2019,1,3,10,1,50,0,15,1,1,1,0,17.70675466521985,17.70675466521985,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,48.86,6,3,0,0,8,4,1,916.5,0,0,0 +822,1014,1888,1887,1885,1886,3,1,0,26,1,0,1,0,2,-9,2,1,0,4,7.974971241786961,7.987126020923865,0,2,0,-9,2,0,-8,-79.55561486602772,0,1,1,34,1,4,1,1,1,2019,1,5,7,0,37,0,15,1,0,1,0,8.706679932803347,8.706679932803347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,56.3,6,3,0,0,8,4,1,916.5,0,0,0 +823,1015,1889,1890,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,1,0,7.089419121202589,7.12779025631558,1,0,-9,45,0,-8,-161.4060077725926,0,0,0,85,3,3,3,3,3,2019,4,2,23,10,0,0,15,4,10,4,0,0,0,1,0,.5897628802670658,0,0,0,0,1,1,0,5.332730745118233,7.19907637577314,0,0,36.64,47.01,5,1,0,0,10,2,1,418.5,0,0,0 +823,1015,1890,1889,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,5.563869644954286,5.596534746742754,1,0,-9,45,0,8,-78.02299916554462,0,0,0,77,2,1,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,0,4.369906430354113,0,0,0,0,1,1,0,.6815944055791162,5.585534488854382,0,0,33.29,42.75,5,1,0,0,10,2,1,418.5,0,0,0 +824,1016,1891,1892,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,7.81792004023496,8.11702214130921,8.228795449355244,1,0,-9,33,0,1,-7.370735103214399,0,0,0,55,2,4,1,2,3,2019,1,1,9,0,10,45,15,1,0,1,0,19.87533987237291,19.87533987237291,0,0,0,0,0,0,0,1,1,0,3.595825242839213,8.0433054878569,10.60593854453687,3,51.49,57.57,6,1,0,0,6,5,1,604,0,0,0 +824,1016,1892,1891,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.65423160887724,8.723932823756281,0,1,0,-9,33,0,-1,-42.3812578235936,0,0,0,56,1,4,1,3,3,2019,1,2,6,0,38,38,15,1,0,1,0,17.91993756546424,17.91993756546424,0,0,0,0,0,0,0,1,1,0,1.693622985751312,0,0,0,64.08,44.69,4,1,0,0,6,5,1,604,0,0,0 +825,1017,1893,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.070590865075864,7.705202100453403,7.091642339412711,3,0,0,0,-9,0,-900.7899298694202,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,10,30,15,1,0,-9,0,11.82900315310775,11.82900315310775,0,0,0,0,0,0,0,0,0,0,0,6.887580450417206,0,0,57.27,34.15,5,4,0,0,8,3,0,1633,0,0,0 +826,1018,1894,-9,1895,-9,2,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-972.5827188259592,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,5,1,0,393,0,0,0 +826,1018,1895,-9,-9,-9,1,1,0,40,2,1,1,0,2,-9,6,3,0,2,0,0,0,4,0,-9,0,0,0,-868.4362098598988,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.05,30.31,3,1,0,0,5,1,0,393,0,0,0 +827,1019,1896,-9,1897,1900,2,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.161978470416,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,9,2,1,726.8,0,0,0 +827,1019,1897,1900,-9,-9,1,1,0,42,1,0,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,13,0,1,55.41227836392098,0,0,1,41,2,4,1,3,3,2019,3,5,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.271288201595039,0,0,0,47.44,56.39,2,1,0,0,9,2,1,726.8,0,0,0 +827,1019,1898,-9,1897,1900,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.20455132942,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,2,1,726.8,0,0,0 +827,1019,1899,-9,1897,1900,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.968564565659,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,2,1,726.8,0,0,0 +827,1019,1900,1897,-9,-9,5,1,1,41,1,0,3,0,2,-9,1,1,0,4,6.475840642972778,6.745175472350117,0,2,0,-9,7,0,-1,109.5732388157876,-9,0,0,42,1,4,3,-9,-9,2019,2,1,9,0,70,0,15,1,1,3,0,1.021281534271549,1.021281534271549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,4,0,0,9,2,1,726.8,0,0,0 +828,1020,1901,-9,1904,1902,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.9903905083274,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,9,5,1,564.5,0,0,0 +828,1020,1902,1904,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,5,8.745896098316999,8.921843968700486,0,2,0,-9,19,0,0,-121.1897306953658,0,0,0,45,1,5,1,2,1,2019,1,1,12,0,44,47,15,1,0,1,0,21.2284050068457,21.2284050068457,0,0,0,0,0,0,0,0,0,0,3.751026539767822,0,0,0,49.7,58.29,6,1,0,0,9,5,1,564.5,0,0,0 +828,1020,1903,-9,1904,1902,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.466738231507,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,564.5,0,0,0 +828,1020,1904,1902,-9,-9,1,1,0,45,1,0,2,0,1,-9,1,1,0,5,9.550085951964684,9.643599953171096,0,2,0,-9,19,0,0,-88.91663849364366,0,0,0,45,1,5,1,1,1,2019,1,2,12,0,45,46,15,1,0,1,0,42.77749724190475,42.77749724190475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,9,5,1,564.5,0,0,0 +829,1021,1905,-9,1906,1907,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1025.109569098705,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,2,1,1303.75,0,0,0 +829,1021,1906,1907,-9,-9,2,1,0,35,1,1,2,0,2,-9,2,1,0,3,6.280974571887416,6.189450514224309,0,2,0,-9,13,0,0,-5.528703890939285,0,0,1,35,2,3,1,2,2,2019,1,1,21,9,20,20,15,1,9,1,0,2.939892005939213,2.939892005939213,0,0,0,0,0,0,0,1,1,0,6.91226115212355,0,0,0,20.07,59.73,4,1,0,0,2,2,1,1303.75,0,0,0 +829,1021,1907,1906,-9,-9,1,1,1,35,1,1,2,0,2,-9,1,1,0,3,6.910715296991717,6.910861704152917,0,2,0,-9,13,0,0,43.90497001760666,0,0,0,35,2,3,1,3,3,2019,1,2,12,1,40,42,15,1,1,1,0,3.033761768595677,3.033761768595677,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,2,1,0,0,2,2,1,1303.75,0,0,0 +829,1021,1908,-9,1906,1907,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.7702613456089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,2,1,1303.75,0,0,0 +830,1022,1909,1910,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,4,8.506308478396024,8.413612750911469,0,1,0,-9,6,0,0,-22.50320350310269,0,0,1,31,1,4,1,-9,-9,2019,1,1,26,12,43,45,15,1,12,1,0,9.918497936788073,9.918497936788073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.2,67.27,6,1,0,0,2,5,1,435,0,0,0 +830,1022,1910,1909,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,4,9.19294629311044,9.075972248022248,0,1,0,-9,6,0,0,-165.1688443987245,0,0,0,31,2,4,1,2,2,2019,1,2,8,0,65,60,15,1,0,1,0,15.79219662403267,15.79219662403267,0,0,0,0,0,0,0,0,0,0,1.446722996507974,0,0,0,57.16,56.15,5,1,0,0,2,5,1,435,0,0,0 +831,1023,1911,1912,-9,-9,2,1,1,43,1,0,1,0,3,-9,2,1,0,4,8.361904673408088,8.21527685152142,0,2,0,-9,13,0,-3,27.96707549491153,0,0,0,46,3,4,1,1,1,2019,1,1,6,0,44,52,15,1,0,1,0,10.1558430287834,10.1558430287834,0,0,0,0,0,0,0,1,1,0,1.492521212174701,0,0,0,48.76,53.24,6,3,0,0,10,5,1,862.3333333333334,0,0,0 +831,1023,1912,1911,-9,-9,1,1,0,46,1,0,1,0,3,-9,2,1,0,4,8.959019549003864,8.530120480065479,0,2,0,-9,13,0,3,85.14388055323654,0,0,0,43,3,4,1,2,2,2019,1,2,5,0,52,48,15,1,0,1,0,10.35740499338583,10.35740499338583,0,0,0,0,0,0,0,1,1,0,1.295649336558283,0,0,0,58.15,52.91,2,3,0,0,10,5,1,862.3333333333334,0,0,0 +831,1023,1913,-9,1912,1911,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.6575510504712,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,10,5,1,862.3333333333334,0,0,0 +832,1024,1914,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,2,1,0,2,8.647649369439563,9.001217719335106,0,3,0,0,0,-9,0,-1019.481761168918,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,37,15,1,0,-9,0,13.96323468914132,13.96323468914132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.7,48.39,2,1,0,0,11,5,1,131,0,0,0 +833,1025,1915,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,7.284274771335712,7.213616195895521,3,0,-9,0,1,0,-991.2450204406439,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,15.34518219437212,0,10.91632905925133,0,0,69.51301778962315,1,1,0,7.103187258635763,7.437588904072428,0,0,49.8,35.57,6,1,0,0,7,3,1,1102,0,0,0 +834,1026,1916,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,5.126006350357385,5.250852078057078,3,0,0,0,-9,0,-918.9712001258147,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.497265551956115,5.090975864933004,0,0,60.63,38.2,7,1,0,0,11,2,1,90,0,0,0 +835,1027,1917,1918,-9,-9,2,1,0,55,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,39,0,-4,21.37003903842254,0,0,0,59,3,3,1,3,3,2019,3,1,12,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,3,0,1,4,2,1,3469,0,0,0 +835,1027,1918,1917,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,3,7.696100184715534,7.726384196163051,0,1,0,-9,40,0,4,8.235554055419779,0,0,0,55,3,3,3,3,3,2019,2,2,10,0,38,38,15,1,1,3,0,5.946155790117271,5.946155790117271,0,0,0,0,0,0,0,0,0,0,7.172821262327975,0,0,0,51,48,5,3,0,1,4,2,1,3469,0,0,0 +836,1028,1919,1920,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.282768195729361,8.628578802994632,4.940252626362747,1,0,-9,33,0,-5,-116.7614512554895,0,0,0,59,2,2,3,3,3,2019,2,1,12,0,40,37,15,1,0,4,0,13.73290068113859,13.73290068113859,0,0,0,0,0,0,0,0,0,0,4.057356389233159,5.128548507263064,4.904595228348759,3,24.18,60.54,3,1,0,0,7,5,1,403,0,0,0 +836,1028,1920,1919,-9,-9,1,1,1,59,1,0,0,0,2,-9,4,3,0,2,0,7.387371127422407,7.523424687580602,1,0,-9,33,0,5,-24.15446465623117,0,0,0,54,2,3,1,3,2,2019,3,2,21,9,0,0,15,4,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.477272756431123,7.652985474901486,0,0,45.81,49.73,5,1,0,0,7,5,1,403,0,0,0 +836,1029,1921,-9,1919,1920,4,1,0,27,2,0,0,0,1,-9,2,1,0,3,8.638149403913273,8.460450666733314,0,3,0,-9,0,-9,0,-1056.946786368313,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,0,15,1,0,-9,1,15.22149057759253,15.22149057759253,0,0,0,0,0,0,0,0,0,0,3.445939682529868,0,0,0,57.9,51.84,6,1,0,0,7,5,1,833,0,0,0 +837,1030,1922,-9,1923,-9,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.4758587087485,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,1,0,532,0,0,0 +837,1030,1923,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1047.033958165625,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,35.85,5,4,1,1,8,1,0,532,0,0,0 +837,1031,1924,-9,1923,-9,2,1,1,19,2,0,1,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1112.891057797464,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,0,7,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.96,48.11,5,4,0,0,8,1,0,773,0,0,0 +838,1032,1925,1927,-9,-9,1,1,0,50,1,0,1,0,3,-9,2,1,0,3,7.509408114024634,7.744170580003016,0,2,0,-9,10,0,13,91.51615219780652,0,0,0,37,2,4,1,-9,-9,2019,1,2,8,0,24,22,15,1,0,1,0,9.259818629567249,9.259818629567249,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,10,4,1,1583,0,0,0 +838,1032,1926,-9,1925,1927,4,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.2508428607631,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,1583,0,0,0 +838,1032,1927,1925,-9,-9,2,1,1,37,1,0,1,0,2,-9,1,1,0,4,8.115255704246279,8.184706938854706,0,2,0,-9,12,0,-13,33.06434038366973,0,0,0,50,3,3,1,-9,-9,2019,1,1,10,0,45,45,15,1,0,1,0,11.92716485663584,11.92716485663584,0,0,0,0,0,0,0,1,1,0,.4558641256139458,0,0,0,54.2,57.49,6,1,0,0,10,4,1,1583,0,0,0 +838,1033,1928,-9,1925,1927,3,1,0,25,2,0,1,0,2,-9,2,1,0,4,8.313986719377164,8.294934037030233,0,4,0,0,0,-9,0,-1000.880412952419,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,36,54,15,1,0,-9,0,14.93950882125975,14.93950882125975,0,0,0,0,0,0,0,1,1,0,4.031624583850336,0,0,0,57.16,56.15,5,1,0,0,10,4,1,391,0,0,0 +839,1034,1929,-9,1932,1930,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.289147432958,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,649.75,0,0,0 +839,1034,1930,1932,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,4,9.139251597934127,9.021837517459353,0,2,0,-9,12,0,1,39.50068947620107,0,0,0,32,1,5,1,3,2,2019,1,2,9,0,40,40,15,1,0,1,0,28.98856926421601,28.98856926421601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.49,55.02,6,1,0,0,7,5,1,649.75,0,0,0 +839,1034,1931,-9,1932,1930,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.9103627311338,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,649.75,0,0,0 +839,1034,1932,1930,-9,-9,2,1,0,32,1,1,2,0,1,-9,2,1,0,5,8.30577784240921,8.408279334053393,0,2,0,-9,13,0,-1,-75.82579762604189,0,0,1,33,1,4,1,1,1,2019,1,1,7,0,25,23,15,1,0,1,0,15.42115996726774,15.42115996726774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,6,1,0,0,7,5,1,649.75,0,0,0 +840,1035,1933,1934,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.190314798473281,6.931261848219888,1,0,-9,8,0,3,-24.87338888043661,0,0,0,67,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.994915442289455,6.992544176116212,0,0,57.33,53.46,6,1,0,0,5,3,1,291.5,0,0,0 +840,1035,1934,1933,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.977944792361129,7.885368677078811,1,0,-9,8,0,-3,14.80107501521909,0,0,0,70,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.513807996686348,7.76182393057121,0,0,47.79,56.46,6,1,0,0,5,3,1,291.5,0,0,0 +841,1036,1935,1936,-9,-9,1,1,0,43,1,0,1,0,2,-9,1,1,0,4,7.838411215188904,7.643220714939856,0,2,0,-9,8,0,1,-27.35397520674092,0,0,1,42,1,5,1,3,1,2019,1,2,7,0,40,40,15,1,0,1,0,6.244030227333634,6.244030227333634,0,0,0,0,0,0,0,1,1,0,3.35401669324134,0,0,0,54.2,57.49,6,1,0,0,12,5,1,842.3333333333334,0,0,0 +841,1036,1936,1935,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,5,9.457966103671433,9.194434960507571,0,2,0,-9,8,0,-1,10.57173895040961,0,0,0,43,2,4,1,-9,-9,2019,1,1,8,0,43,44,15,1,0,1,0,22.85502005104143,22.85502005104143,0,0,0,0,0,0,0,1,1,0,4.602223211147344,0,0,0,49.87,58.27,6,1,0,0,12,5,1,842.3333333333334,0,0,0 +841,1036,1937,-9,1935,1936,3,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1031.431147796234,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,5,1,842.3333333333334,0,0,0 +842,1037,1938,1939,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.600010936217299,8.516152502432927,0,1,0,-9,37,0,2,-3.104897556960326,0,0,0,57,1,3,1,2,1,2019,1,1,7,0,44,47,15,1,0,1,0,11.02435219247707,11.02435219247707,0,0,0,0,0,0,0,0,0,0,3.425611476609033,0,8.32321023269437,3,54.2,57.49,6,1,0,0,5,5,1,1716.5,0,0,0 +842,1037,1939,1938,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,3,6.847310586158513,8.342307244970577,8.026014433687292,1,0,-9,38,0,-2,23.41113975865687,0,0,0,59,2,4,1,2,2,2019,1,2,8,0,14,0,15,1,0,1,0,9.7530082884997,9.7530082884997,0,0,0,0,0,0,0,0,0,0,4.327347017927782,7.729359466118502,0,3,58.32,50.22,6,1,0,0,5,5,1,1716.5,0,0,0 +843,1038,1940,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,-9,0,1,0,-1003.222658051725,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,5,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,4,1,1,1795,0,0,0 +844,1039,1941,1942,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.435972525769103,8.722837063383714,1,0,-9,16,0,2,128.7568314924065,0,0,0,68,1,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,9.031180341627282,8.337869831761054,0,0,52,47,5,1,0,0,2,4,1,1055,0,0,0 +844,1039,1942,1941,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,5.937935085468135,5.792804810546399,1,0,-9,16,0,-2,20.26020487714094,0,0,0,70,2,3,3,3,2,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,7.223469257074383,0,0,0,0,22.53822460723649,1,1,0,3.813269634383568,5.794268977970687,0,0,50,47,5,1,0,0,2,4,1,1055,0,0,0 +845,1040,1943,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-1052.438193350939,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.92,53.02,4,1,0,0,1,1,1,252,0,0,0 +846,1041,1944,1945,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,3,8.644421348116639,8.60247214014883,6.064367485519734,1,0,-9,6,0,1,15.02879316192743,0,0,0,65,3,2,1,2,2,2019,1,2,14,1,37,37,15,1,1,1,0,16.83960967076437,16.83960967076437,0,0,0,0,0,0,0,1,1,0,6.202392548177937,5.839954979230449,0,0,32.83,48.42,4,1,0,0,7,4,0,1009.5,0,0,0 +846,1041,1945,1944,-9,-9,2,1,1,65,1,0,0,0,3,-9,1,1,0,2,0,0,0,1,0,-9,6,0,-1,34.96359853545193,0,0,0,66,2,3,1,-9,-9,2019,1,1,12,0,3,5,15,1,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,44.82,52.64,5,1,0,0,7,4,0,1009.5,0,0,0 +847,1042,1946,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,2,1,0,2,5.340937454685289,5.331411502490643,0,3,0,0,0,-9,0,-901.7901110237733,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.03,51.28,6,1,0,0,7,2,1,422,0,0,0 +848,1043,1947,-9,1950,1949,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.744470158392,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,0,863.5,0,0,0 +848,1043,1948,-9,1950,1949,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.6218935293814,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,0,863.5,0,0,0 +848,1043,1949,1950,-9,-9,2,1,1,31,1,1,2,0,1,-9,2,1,0,2,8.054902145355925,8.365040446459529,0,2,0,-9,6,0,0,-47.69346291297681,0,0,0,31,2,5,3,2,2,2019,2,1,13,1,38,38,15,1,1,3,0,9.195611594021832,9.195611594021832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.86,48.78,4,1,0,0,6,3,0,863.5,0,0,0 +848,1043,1950,1949,-9,-9,1,1,0,31,1,1,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,6,0,0,75.61250272989875,0,0,1,31,1,2,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.972906266338068,3,49.36,58.53,4,1,0,0,6,3,0,863.5,0,0,0 +849,1044,1951,1952,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,1,5.316316042500635,7.49790106596264,7.428605614779048,1,0,-9,46,0,-1,80.92454483115979,0,0,0,68,1,3,3,2,2,2019,4,2,20,6,0,0,15,4,6,4,0,0,0,1,0,12.58555219939353,0,0,0,0,1,1,0,0,7.305352222775937,0,0,46.93,15.34,3,1,0,0,1,4,1,524,0,0,0 +849,1044,1952,1951,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,7.850474014869027,7.432223726144075,1,0,-9,46,0,1,-12.53408754990426,-9,0,0,67,1,1,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.922403095783665,3.769540684902671,1,52.65,51.64,6,1,0,0,1,4,1,524,0,0,0 +850,1045,1953,-9,1954,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1045.825791113219,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,2,0,1054.333333333333,0,0,0 +850,1045,1954,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,1,1,0,4,6.36933879167383,6.410805841892667,0,4,0,0,0,-9,0,-994.8576285575143,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,18,16,15,1,1,-9,0,4.783661637054335,4.783661637054335,0,0,0,0,0,0,0,1,1,0,0,0,7.941769020120114,3,49,56,5,1,0,1,8,2,0,1054.333333333333,0,0,0 +850,1045,1955,-9,1954,-9,2,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1043.794674742376,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,8,2,0,1054.333333333333,0,0,0 +851,1046,1956,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,5.10936013266168,5.185745575173493,3,0,0,0,-9,0,-1028.023555598798,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.275846436356277,0,0,51.99,39.38,6,1,0,0,12,2,1,761,0,0,0 +852,1047,1957,1958,-9,-9,1,1,1,51,1,0,0,0,2,-9,8,3,1,1,0,6.763459378717851,6.64232995933924,1,0,-9,5,0,-3,12.69538741963166,0,0,0,54,3,4,3,2,2,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.7871508430269955,6.472525621428451,5.793992651096074,3,37.89,30.44,2,1,0,0,11,2,1,295,0,0,0 +852,1047,1958,1957,-9,-9,2,1,0,54,1,0,0,0,3,-9,6,3,0,4,0,5.726214622028388,5.761153669279682,1,0,-9,5,0,3,82.94059536752491,0,0,0,51,2,1,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.988707073832084,5.42578649589062,7.657400557239041,3,57.16,56.15,6,1,0,0,11,2,1,295,0,0,0 +853,1048,1959,-9,-9,-9,1,1,0,82,2,0,0,0,2,-9,4,3,0,4,0,6.671697730372656,6.625038899377445,3,0,0,0,-9,0,-933.030362213393,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.777684400302185,0,0,60.12,54.8,7,1,0,0,5,2,1,5889,0,0,0 +854,1049,1960,1963,-9,-9,1,1,0,52,1,0,2,0,2,-9,1,1,0,3,7.094089550662621,7.448319241864629,0,2,0,-9,2,0,-6,-33.2262474849139,0,0,0,58,2,3,1,3,3,2019,1,2,15,4,40,35,15,1,4,1,0,3.280667901094987,3.280667901094987,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47.25,38.93,6,1,0,0,12,4,1,377.25,0,0,0 +854,1049,1961,-9,1960,1963,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.0075171427678,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,377.25,0,0,0 +854,1049,1962,-9,1960,1963,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.3062027753176,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,5,0,0,12,4,1,377.25,0,0,0 +854,1049,1963,1960,-9,-9,2,1,1,58,1,0,2,0,2,-9,2,1,0,3,9.101176022040974,9.356959201363834,0,2,0,-9,2,0,6,96.14214225816521,0,0,0,52,2,3,1,3,3,2019,1,1,10,0,60,56,15,1,0,1,0,11.867053579861,11.867053579861,0,0,0,0,0,0,0,1,1,0,4.413138173693413,0,0,0,46.55,58.3,6,1,0,0,12,4,1,377.25,0,0,0 +855,1050,1964,1965,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.216597538952056,7.610337286959672,0,2,0,-9,25,0,-10,-77.7723813840156,0,0,0,57,2,2,1,2,2,2019,1,2,12,0,23,26,15,1,0,1,0,8.555616956591503,8.555616956591503,0,0,0,0,0,0,0,0,0,0,3.042903741292659,0,0,0,54.37,54.8,5,1,0,0,1,4,1,1259,0,0,0 +855,1050,1965,1964,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,2,8.234250420653115,8.238668891316745,0,2,0,-9,8,0,10,-76.13024728196079,-9,0,0,47,2,3,1,-9,-9,2019,1,1,11,0,55,0,15,1,0,1,0,8.853261808971412,8.853261808971412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.8,48.58,5,1,0,0,1,4,1,1259,0,0,0 +855,1050,1966,-9,1964,1965,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.5240396696516,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,1,4,1,1259,0,0,0 +856,1051,1967,1968,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,7.850034461534529,8.179697466901962,1,0,-9,45,0,-7,-33.77182681929718,0,0,0,71,2,3,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.272463307977792,7.980206145531674,0,0,38.44,49.92,6,1,0,0,6,3,1,570.5,0,0,0 +856,1051,1968,1967,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,45,0,7,-62.06553436515568,0,0,0,64,1,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,6,3,1,570.5,0,0,0 +857,1052,1969,1970,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,3,7.260644642274696,7.041282237086425,0,1,0,-9,10,0,12,42.14454719153954,0,0,0,43,2,3,1,2,2,2019,1,1,11,0,10,10,15,1,0,1,0,14.36084091524303,14.36084091524303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,6,1,0,0,11,3,1,573,0,0,0 +857,1052,1970,1969,-9,-9,1,1,1,43,1,0,0,0,2,-9,1,1,0,3,7.553180433449748,7.21837880172731,0,1,0,-9,10,0,-12,48.17311988100994,0,0,0,55,3,3,1,2,2,2019,1,2,10,0,50,50,15,1,0,1,0,3.452966473784528,3.452966473784528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,11,3,1,573,0,0,0 +857,1053,1971,-9,1969,1970,3,1,1,20,2,0,0,1,2,0,7,2,0,4,6.316937580079792,6.716146429756335,0,3,0,0,0,-9,0,-1075.967790352359,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,6,1,0,0,11,2,1,518,0,0,0 +858,1054,1972,1973,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.792404471619201,7.883469073952452,1,0,-9,8,0,1,51.9830307771218,0,0,0,76,1,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,28.09244209309107,0,0,0,0,1,1,0,3.405118366014495,7.79783442720765,0,0,54,46,6,1,0,0,1,4,0,202,0,0,0 +858,1054,1973,1972,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,7.631403702966282,7.602694955001485,1,0,-9,53,0,-1,-13.2182087422995,0,0,0,77,1,3,3,2,1,2019,4,2,20,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.931550202484623,7.738506862659362,7.153890475268712,2,45.3,44.05,2,1,0,0,1,4,0,202,0,0,0 +859,1055,1974,1975,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,6.678874131669385,6.684602153001912,1,0,-9,9,0,-3,61.55195825870529,0,0,0,80,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.336841657048877,6.282577154121505,0,0,51,46,5,1,0,0,11,2,1,782.5,0,0,0 +859,1055,1975,1974,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,3,-47.80535443021218,0,0,0,77,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,5,1,0,0,11,2,1,782.5,0,0,0 +860,1056,1976,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,4,8.529389705207594,8.26288245215137,0,3,0,0,0,-9,0,-1032.861452950268,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,40,15,1,0,-9,0,14.48235110587536,14.48235110587536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,4,1,0,0,4,4,0,510,0,0,0 +861,1057,1977,1978,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,58,0,-4,69.1502833289082,0,0,0,81,1,3,3,2,1,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.143121084421031,0,0,0,52.35,46.12,6,1,0,0,7,4,1,240,0,0,0 +861,1057,1978,1977,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,3,0,8.517121525033794,8.590718972722039,1,0,-9,58,0,4,-69.08628565332826,0,0,0,77,3,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.225148464366195,8.443819871663534,0,0,59.88,48.2,6,1,0,0,7,4,1,240,0,0,0 +862,1058,1979,1980,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,2,8.250703141753661,8.230839769453963,0,1,0,-9,2,0,0,-60.48939669195743,0,0,0,45,2,2,1,-9,-9,2019,1,1,13,3,50,45,15,1,3,1,0,10.90530656044372,10.90530656044372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.5,29.82,5,1,0,1,7,4,0,331,0,0,0 +862,1058,1980,1979,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,2,7.72943668676872,7.597584730406196,0,1,0,-9,2,0,0,31.97766614633716,0,0,0,45,1,2,1,-9,-9,2019,1,2,23,10,39,35,15,1,10,1,0,7.505736461751903,7.505736461751903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.84,53.56,5,1,0,0,7,4,0,331,0,0,0 +863,1059,1981,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,8.334383394053523,8.399897387364261,0,3,0,0,0,-9,0,-943.4167865547396,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,44,45,15,1,7,-9,0,8.052885221104667,8.052885221104667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,45.67,2,1,0,0,12,4,0,429,0,0,0 +863,1060,1982,-9,1981,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,3,8.012186771399792,7.672113035718262,0,3,0,0,0,-9,0,-986.3427347167523,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,50,29,15,1,7,-9,1,5.852810987019465,5.852810987019465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.23,61.73,3,1,0,0,12,3,0,988,0,0,0 +864,1061,1983,-9,-9,-9,1,1,1,86,2,0,0,0,3,-9,4,3,0,3,0,6.113333824269482,6.21395802206272,3,0,0,0,-9,0,-997.9234673777312,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.301183574323116,6.2739060185738,0,0,59.63,46.97,6,1,0,0,9,2,0,199,0,0,0 +865,1062,1984,1985,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,4.995289591767005,4.607640389889452,1,0,-9,28,0,0,95.10328253541829,0,0,0,67,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,4.53463711783891,3.047785210151617,0,0,0,12.4650812015385,1,1,0,5.081753615753575,5.441943282617128,0,1,52,48,5,1,0,0,5,2,0,693,0,0,0 +865,1062,1985,1984,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,28,0,0,-67.61344927816612,0,0,0,67,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,7.271077151910204,0,0,4.711183143540042,0,46.79356457765899,1,1,0,0,0,119.2783399426068,1,50,47,5,1,0,0,5,2,0,693,0,0,0 +866,1063,1986,1987,-9,-9,2,1,1,24,1,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,2,0,-1,44.00057136077972,-9,1,0,25,2,5,1,-9,-9,2019,3,1,10,0,0,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,4,0,0,8,4,0,627,0,0,0 +866,1063,1987,1986,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,5,8.267093747923527,8.255025451595177,0,1,0,-9,2,0,1,63.4951044548031,0,1,1,24,1,4,2,1,2,2019,2,2,11,1,50,40,15,1,1,2,0,13.00433882417052,13.00433882417052,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.95,54.33,5,1,0,0,8,4,0,627,0,0,0 +867,1064,1988,1989,-9,-9,1,1,1,87,1,0,0,0,1,-9,4,3,0,1,0,7.091020961993202,6.963848255806597,1,0,-9,6,0,-2,100.8985071569144,0,0,0,89,2,2,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,8.667430181989673,130.0782921746124,0,0,0,0,1,1,0,0,6.725171908487508,0,0,23.85,34.26,3,1,0,0,11,2,0,508.5,0,0,0 +867,1064,1989,1988,-9,-9,2,1,0,89,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,2,81.54640929109911,0,0,0,87,1,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,128.0825563850429,1,53.62,16.43,6,1,0,0,11,2,0,508.5,0,0,0 +868,1065,1990,1991,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,5,8.745414702789805,9.104657433857351,0,1,0,-9,23,0,1,-44.60245013576011,0,0,0,46,2,4,1,2,3,2019,1,2,9,0,58,63,15,1,0,1,0,13.1771179955424,13.1771179955424,0,0,0,0,0,0,0,0,0,0,2.985443020306333,0,0,0,48.77,60.16,6,1,0,0,5,5,1,517.5,0,0,0 +868,1065,1991,1990,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,9.314370091187742,9.016429323860807,0,1,0,-9,23,0,-1,-16.03629918054258,0,0,0,47,1,5,1,2,2,2019,1,1,2,0,62,60,15,1,0,1,0,15.97022540694929,15.97022540694929,0,0,0,0,0,0,0,0,0,0,2.806758894586866,0,0,0,57.16,56.15,6,1,0,0,5,5,1,517.5,0,0,0 +869,1066,1992,1994,-9,-9,2,1,0,34,1,1,2,0,2,-9,2,1,0,2,8.288456870081669,8.130076298541422,0,2,0,-9,15,0,-7,74.51623168009193,0,0,1,41,2,4,1,2,2,2019,1,1,9,0,43,0,15,1,0,1,0,8.427483961340437,8.427483961340437,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,43.22,6,1,0,0,12,4,1,614.5,0,0,0 +869,1066,1993,-9,1992,1994,3,1,0,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.458903253156,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,4,1,614.5,0,0,0 +869,1066,1994,1992,-9,-9,1,1,1,41,1,1,2,0,2,-9,2,1,0,4,8.373283525511399,8.398237790937808,0,2,0,-9,15,0,7,77.93406915417154,0,0,0,34,2,2,1,3,2,2019,1,2,9,0,37,37,15,1,1,1,0,11.26657311875378,11.26657311875378,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,12,4,1,614.5,0,0,0 +869,1066,1995,-9,1992,1994,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.139618452627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,614.5,0,0,0 +870,1067,1996,1997,-9,-9,1,1,0,68,1,0,0,0,3,-9,1,1,0,3,8.827523269299911,8.832798363940404,0,1,0,-9,10,0,7,-133.4564616483314,0,0,0,61,1,4,1,2,3,2019,1,2,8,0,56,70,15,1,0,1,0,10.53353398250884,10.53353398250884,0,0,0,0,0,0,0,1,1,0,6.868777838409322,0,0,0,58.32,50.22,2,1,0,0,9,5,1,958.5,0,0,0 +870,1067,1997,1996,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,4,9.264191270084044,9.061541521213307,0,1,0,-9,10,0,-7,-74.86217666643041,0,0,0,68,3,3,1,2,2,2019,1,1,6,0,38,37,15,1,0,1,0,34.64694405785906,34.64694405785906,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,958.5,0,0,0 +870,1068,1998,-9,1996,1997,3,1,1,22,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1027.707803633467,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,6,1,0,0,9,1,1,97,0,0,0 +871,1069,1999,2000,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.50315363326548,8.139302174499425,0,1,0,-9,36,0,-2,10.80224847735248,0,0,0,58,2,2,3,2,2,2019,2,1,11,0,37,37,15,1,0,3,0,17.15828492516297,17.15828492516297,0,0,0,0,0,0,0,1,1,0,2.244422173485433,0,33.82548269449688,2,49.04,55.86,2,1,0,0,9,4,1,581,0,0,0 +871,1069,2000,1999,-9,-9,1,1,1,58,1,0,0,0,2,-9,8,3,1,2,0,5.453503853672927,5.317469355556974,1,0,-9,36,0,2,35.15290034563669,0,0,0,56,2,3,1,2,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.309582429511117,5.551602054688016,14.09618293138335,3,39.84,36.02,5,1,0,0,9,4,1,581,0,0,0 +872,1070,2001,2002,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,63,0,-2,-99.0682246678487,0,0,0,83,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.145254806814389,1,62.39,56.71,7,1,0,0,7,2,0,163,0,0,0 +872,1070,2002,2001,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,5.529285544582587,5.862135040160076,1,0,-9,63,0,2,-49.37478814474967,0,0,0,81,3,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,27.9247893377758,0,0,0,0,1,1,0,0,5.792017392866133,0,0,69.72,27.71,7,1,0,0,7,2,0,163,0,0,0 +873,1071,2003,-9,-9,2004,3,1,1,17,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-977.0040633992904,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.29,43.31,7,1,1,0,2,1,0,895,0,0,0 +873,1071,2004,-9,-9,-9,1,1,1,61,3,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-937.2556285551058,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.14,24.96,4,1,1,0,2,1,0,895,0,0,0 +874,1072,2005,-9,-9,-9,1,1,0,51,2,0,1,0,2,-9,2,1,0,2,7.626770082524763,7.927285818986624,0,4,0,0,0,-9,0,-1067.839652975623,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,32,32,15,1,0,-9,0,7.854230670738848,7.854230670738848,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.02,44.38,3,1,0,0,10,3,0,166,0,0,0 +875,1073,2006,2007,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,4,7.928986100022053,8.216402069262669,0,1,0,-9,3,0,0,57.09664163392544,0,1,0,26,1,4,1,1,1,2019,1,2,12,1,37,39,15,1,1,1,0,10.75361418803008,10.75361418803008,0,0,0,0,0,0,0,0,0,0,2.294566531941737,0,0,0,43.73,59.7,5,1,0,0,4,5,1,1272,0,0,0 +875,1073,2007,2006,-9,-9,2,1,0,26,1,0,0,0,1,-9,1,1,0,4,8.023655087060831,8.42832599123404,0,1,0,-9,3,0,0,12.55545552752178,0,1,1,26,1,4,1,-9,-9,2019,1,1,12,2,39,40,15,1,2,1,0,10.50065571660736,10.50065571660736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.25,63.22,5,3,0,0,4,5,1,1272,0,0,0 +876,1074,2008,-9,2011,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,3,7.215635196424598,7.040009816561035,0,3,0,0,0,-9,0,-1049.635801797195,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,33,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,7,3,0,686,0,0,0 +876,1075,2009,-9,2011,2010,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.3378793126234,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,3,0,518,0,0,0 +876,1075,2010,2011,-9,-9,5,1,1,41,1,0,2,0,2,-9,1,1,0,3,8.791358867687633,8.957522220845462,0,2,0,-9,7,0,1,-27.68463033644682,0,0,0,40,3,4,3,-9,-9,2019,2,1,7,0,40,40,15,1,0,3,0,14.42018149193062,14.42018149193062,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,47.25,5,1,0,0,7,3,0,518,0,0,0 +876,1075,2011,2010,-9,-9,1,1,0,40,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-1,-63.87058444388833,-9,0,1,41,2,3,1,-9,-9,2019,3,5,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,61.53,4,1,0,0,7,3,0,518,0,0,0 +876,1075,2012,-9,2011,2010,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1207.537699908899,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,3,0,518,0,0,0 +877,1076,2013,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,3,8.923090964237291,8.566555615484777,0,4,0,0,0,-9,0,-961.6496550036451,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,40,43,15,1,9,-9,0,16.23459388061559,16.23459388061559,0,0,0,0,0,0,0,1,1,0,0,0,13.02784320044086,3,26.61,59.47,2,2,0,0,8,4,0,1108.5,0,0,0 +877,1076,2014,-9,2013,-9,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.6491065321471,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,8,4,0,1108.5,0,0,0 +877,1077,2015,-9,2013,-9,2,1,1,19,2,0,1,0,2,-9,7,2,0,4,0,6.591917303094344,6.56290058935842,3,0,0,0,-9,0,-1045.373868650771,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.881774599016116,0,0,0,57.73,54.53,7,4,0,0,8,2,0,1615,0,0,0 +878,1078,2016,-9,2019,2017,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.476441781401,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,0,441.75,0,0,0 +878,1078,2017,2019,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.608903488184398,8.896318551386143,0,2,0,-9,14,0,3,16.12215549414999,0,0,0,40,1,3,1,2,2,2019,1,2,9,0,47,44,15,1,1,1,0,15.12243728268101,15.12243728268101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,4,0,0,8,4,0,441.75,0,0,0 +878,1078,2018,-9,2019,2017,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.0030981112903,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,0,441.75,0,0,0 +878,1078,2019,2017,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,3,7.557500396593801,7.58858722158481,0,2,0,-9,14,0,-3,-67.45931812674142,0,0,1,43,1,4,1,1,1,2019,1,1,9,0,30,30,15,1,0,1,0,9.517202817632189,9.517202817632189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.54,53.32,6,4,0,0,8,4,0,441.75,0,0,0 +879,1079,2020,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,2,0,7.619773376721151,7.841048246179651,3,0,0,0,-9,0,-1046.650139728361,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.294367371263235,8.04107596798594,0,0,45.42,40.27,6,1,0,0,8,3,1,75,0,0,0 +880,1080,2021,2022,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,3,7.827101669797377,8.01383946912669,6.833319409076828,1,0,-9,8,0,2,-94.28588936385844,0,0,0,49,2,5,1,3,3,2019,1,1,8,0,19,19,15,1,0,1,0,14.81109410021381,14.81109410021381,0,0,0,0,0,0,0,0,0,0,8.045206557291786,0,0,0,57.33,53.46,6,1,0,0,10,4,1,535.5,0,0,0 +880,1080,2022,2021,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,5,6.716262843628985,6.799951129777212,0,1,0,-9,8,0,-2,-99.38773801243003,0,0,0,51,1,3,1,3,-9,2019,1,2,6,0,37,37,15,1,0,1,0,3.34342934765668,3.34342934765668,0,0,0,0,0,0,0,0,0,0,7.091212969360334,0,0,0,57.06,57.76,6,1,0,0,10,4,1,535.5,0,0,0 +880,1081,2023,-9,2021,-9,3,1,1,24,2,0,0,0,1,-9,2,1,0,5,7.467320895756379,7.93665825364964,0,3,0,0,0,-9,0,-954.7189031316263,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,48,8,15,1,0,-9,1,5.038957262656754,5.038957262656754,0,0,0,0,0,0,0,0,0,0,9.688026131979708,0,0,0,54.1,59.11,7,1,0,0,10,3,1,126,0,0,0 +881,1082,2024,2026,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,5,6.79766774036464,6.691213024151288,0,2,0,-9,31,0,-24,-54.73175001500886,0,0,0,74,2,5,1,-9,-9,2019,1,1,7,0,16,16,15,1,0,1,0,8.019411262686436,8.019411262686436,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,2,0,0,6,2,0,373.25,0,0,0 +881,1082,2025,-9,2024,2026,4,1,0,17,2,0,1,1,2,0,7,2,0,5,6.692479203604015,6.624611478816283,0,2,0,0,0,-9,0,-958.8185915604678,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,15,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,2,0,0,6,2,0,373.25,0,0,0 +881,1082,2026,2024,-9,-9,1,1,1,74,1,0,1,0,2,-9,2,1,0,5,6.827296794587947,6.894208301369716,0,2,0,-9,31,0,24,-64.04684929600107,0,0,0,50,3,5,1,-9,-9,2019,1,2,5,0,16,16,15,1,0,1,0,6.864263418163175,6.864263418163175,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,6,2,0,373.25,0,0,0 +881,1082,2027,-9,2024,2026,3,1,1,12,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-898.9408687194024,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,6,2,0,373.25,0,0,0 +882,1083,2028,2030,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,3,7.307096451336056,6.926318031134437,0,2,0,-9,12,0,1,20.70117365049472,0,0,1,39,1,4,1,2,2,2019,1,2,21,9,18,18,15,1,9,1,0,7.498068340043226,7.498068340043226,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.94,65.05,5,1,0,0,9,3,1,450.25,0,0,0 +882,1083,2029,-9,2028,2030,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.441051678261,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,1,450.25,0,0,0 +882,1083,2030,2028,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,4,8.420658352104189,8.254169105945479,0,2,0,-9,12,0,-1,-74.07699086893942,0,0,0,40,1,3,1,1,2,2019,1,1,6,1,38,37,15,1,1,1,0,12.01467522129548,12.01467522129548,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,6,1,0,0,9,3,1,450.25,0,0,0 +882,1083,2031,-9,2028,2030,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.696076031838,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,1,450.25,0,0,0 +883,1084,2032,2034,-9,-9,1,1,1,59,1,1,3,0,3,-9,2,1,0,4,8.186387355685307,8.104467494291773,0,2,0,-9,6,0,4,-84.56194688192252,0,0,0,55,3,3,3,3,2,2019,2,2,9,2,48,0,15,1,2,3,0,7.519444329223959,7.519444329223959,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,33.67,5,3,0,0,2,2,1,951.6666666666666,0,0,0 +883,1084,2033,-9,2034,2032,5,1,0,14,2,1,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-975.4624109885785,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,2,2,1,951.6666666666666,0,0,0 +883,1084,2034,2032,-9,-9,2,1,0,55,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-4,-142.1809015441264,0,0,0,59,3,4,1,3,2,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.1,36.84,1,3,0,0,2,2,1,951.6666666666666,0,0,0 +883,1085,2035,-9,2037,2038,6,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.4905622066408,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,1,728.25,0,0,0 +883,1085,2036,-9,2037,2038,7,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.2817343015229,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,1,728.25,0,0,0 +883,1085,2037,2038,-9,-9,4,1,0,25,1,1,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,8,0,-3,-67.71494170227678,0,1,1,28,2,4,1,3,2,2019,3,3,14,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.37,35.26,1,3,0,0,2,2,1,728.25,0,0,0 +883,1085,2038,2037,2034,2032,3,1,1,28,1,1,3,0,2,-9,1,1,0,4,7.943152259736934,8.116762671965123,0,2,0,-9,8,0,3,-18.90121551840861,0,1,0,25,2,5,3,3,3,2019,2,4,7,1,40,35,15,1,1,3,0,8.821544679620088,8.821544679620088,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.54,54.14,1,3,0,0,2,2,1,728.25,0,0,0 +884,1086,2039,2040,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,1,0,0,0,1,0,-9,1,-9,-6,50.59826453562722,-9,0,0,64,2,3,3,-9,-9,2019,2,1,19,8,0,0,15,1,8,4,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.33,33.59,3,1,0,0,2,3,1,1358,0,0,0 +884,1086,2040,2039,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.107913134431726,7.823335484936487,1,0,1,1,-9,6,-108.6398557605091,0,0,0,58,2,1,1,3,2,2019,3,2,14,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.380776660393816,7.805844953185337,0,0,46.61,56.93,6,1,0,0,2,3,1,1358,0,0,0 +885,1087,2041,2043,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,4,8.749571041186341,8.853325358620522,0,2,0,-9,11,0,-6,91.68383783386348,0,0,0,42,2,3,1,2,2,2019,1,1,19,7,37,35,15,1,7,1,0,17.45849819272599,17.45849819272599,0,0,0,0,0,0,0,1,1,0,7.766358431698135,0,0,0,35.11,58.05,5,1,0,0,10,4,1,790.6666666666666,0,0,0 +885,1087,2042,-9,2043,2041,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.4961512534709,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,790.6666666666666,0,0,0 +885,1087,2043,2041,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.573751026354879,7.95898056975677,0,2,0,-9,11,0,6,45.20872230457023,0,0,1,36,2,4,1,2,-9,2019,1,2,13,1,30,21,15,1,1,1,0,7.826478194118229,7.826478194118229,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,5,1,0,0,10,4,1,790.6666666666666,0,0,0 +886,1088,2044,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,3,3,0,5,0,8.492784589426293,8.739670711803171,3,0,0,0,-9,0,-979.2542890689695,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.016301953297746,8.352134911496384,0,0,46.06,54.71,4,1,1,0,9,4,1,292,0,0,0 +887,1089,2045,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,4,6.763656098376825,6.830859226401752,0,3,0,0,0,-9,0,-1049.510343358296,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,16,16,15,1,2,-9,0,7.420744777319748,7.420744777319748,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.79,53.43,5,1,0,0,2,2,1,615,0,0,0 +888,1090,2046,-9,2047,2048,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.9013349937663,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,7,3,0,478,0,0,0 +888,1090,2047,2048,-9,-9,1,1,0,37,1,0,1,0,2,-9,1,1,0,2,7.090634617088063,7.123900705391263,0,2,0,-9,10,0,1,-34.31329525495131,0,0,1,36,1,3,1,1,2,2019,1,2,30,11,88,60,15,1,11,1,0,1.944819696407064,1.944819696407064,0,0,0,0,0,0,0,1,1,0,.7276699263332531,0,0,0,25.69,51.84,2,2,0,1,7,3,0,478,0,0,0 +888,1090,2048,2047,-9,-9,2,1,1,36,1,0,1,0,1,-9,2,1,0,3,7.964071837149236,7.76689325726417,0,2,0,-9,10,0,-1,30.75705660006119,0,0,0,37,2,2,1,1,2,2019,1,1,10,1,40,40,15,1,1,1,0,8.736250330300065,8.736250330300065,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.74,50.45,5,2,0,0,7,3,0,478,0,0,0 +889,1091,2049,2050,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,6.620058268727954,6.968799941988114,1,0,-9,31,0,9,-21.18738887274935,0,0,0,60,2,2,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.571254932310667,7.009785669876345,0,0,58.32,50.22,7,1,0,0,5,4,1,1177.5,0,0,0 +889,1091,2050,2049,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,2,8.774225577346739,8.449774885450932,0,1,0,-9,27,0,0,-66.9497724029156,0,0,0,69,2,3,3,-9,-9,2019,2,2,22,10,42,44,15,1,10,4,0,16.43969391974247,16.43969391974247,0,0,0,0,0,0,0,1,1,0,3.775314819448768,0,0,0,26.94,48.7,4,1,0,0,5,4,1,1177.5,0,0,0 +889,1092,2051,-9,2050,2049,3,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.300588376024749,8.047890587898177,0,3,0,0,0,-9,0,-962.23386317395,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,58,60,15,1,3,-9,1,7.516597751009798,7.516597751009798,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,6,1,0,0,5,4,1,2578,0,0,0 +889,1093,2052,-9,2050,2049,4,1,1,22,2,0,0,0,1,1,3,3,0,4,5.001819252989034,6.156308284440807,5.542437395975168,3,0,0,0,-9,0,-1002.392187627922,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.776170192244731,0,0,0,57.16,56.15,6,1,1,0,5,2,1,534,0,0,0 +890,1094,2053,2054,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,7.292681422361418,7.230059743321761,1,0,-9,44,0,0,6.589230201518183,0,0,0,65,1,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.598462468156828,7.619458795433449,0,0,46.9,56.66,6,1,0,0,8,3,1,694,0,0,0 +890,1094,2054,2053,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,7.670181617993615,7.279088333434158,1,0,-9,44,0,0,-73.48919229520862,0,0,0,65,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.133772959236151,7.303697165336187,0,0,51.83,57.2,6,1,0,0,8,3,1,694,0,0,0 +891,1095,2055,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,3,3,0,2,0,6.134097647571865,6.281429429404376,3,0,0,0,-9,0,-938.6183664462073,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.824905509909267,6.062382465276545,0,0,45.02,36.14,6,1,1,0,7,2,1,129,0,0,0 +891,1096,2056,-9,2055,-9,2,1,0,32,2,0,0,0,2,-9,1,1,0,5,6.783609465297206,7.000107282152483,0,3,0,0,0,-9,0,-1068.377726204435,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,30,30,15,1,2,-9,1,2.425731164352999,2.425731164352999,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,62.31,5,1,0,0,7,2,1,714,0,0,0 +892,1097,2057,-9,-9,-9,1,1,1,73,2,0,0,0,2,-9,4,3,0,3,5.295780282333546,8.844209133865151,8.649759456922281,3,0,0,0,-9,0,-906.2178395435336,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,1,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.886009112079204,8.400999340949513,0,0,55.53,51.55,6,1,0,0,2,5,1,252,0,0,0 +893,1098,2058,2059,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,7.918765525952841,8.207890429655865,1,0,-9,46,0,0,-58.35476942150584,0,0,0,68,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.340181258479781,8.049096712548112,76.60617297324737,3,58.07,46.29,6,1,0,0,12,3,1,471,0,0,0 +893,1098,2059,2058,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,5.778741079634339,5.487020975385012,1,0,-9,6,0,0,30.22720790102757,0,0,0,68,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.900257753902314,5.698512992550965,80.74673555261035,3,60.12,54.8,7,1,0,0,12,3,1,471,0,0,0 +893,1099,2060,-9,-9,-9,3,1,0,60,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-947.3417921889614,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.382503835104769,0,0,0,53,52,6,1,0,0,12,1,1,1071,0,0,0 +894,1100,2061,2062,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,2,8.672417478928429,8.744566718836493,0,2,0,-9,24,0,4,-110.9042719703696,0,0,0,44,2,4,1,2,3,2019,1,1,11,0,40,39,15,1,0,1,0,22.58741033104437,22.58741033104437,0,0,0,0,0,0,0,1,1,0,3.091634675487321,0,0,0,51.18,42.92,4,3,0,0,9,4,1,547,0,0,0 +894,1100,2062,2061,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.696466795274848,7.94389570523137,0,2,0,-9,24,0,-4,26.53227713463168,0,0,1,48,1,2,1,3,3,2019,1,2,11,0,25,33,15,1,0,1,0,13.03189611112536,13.03189611112536,0,0,0,0,0,0,0,1,1,0,2.704266280611091,0,0,0,52.88,56.68,6,3,0,0,9,4,1,547,0,0,0 +895,1101,2063,2064,-9,-9,1,1,0,68,1,0,0,0,1,-9,1,1,0,2,6.894962872661458,7.219727050860596,5.766377338888332,1,0,-9,8,0,3,85.09295002081471,0,0,0,65,1,3,1,3,1,2019,1,2,16,6,0,0,15,1,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.946850179877753,5.720894477799408,0,0,39.49,53.69,5,1,0,0,5,5,1,285.5,0,0,0 +895,1101,2064,2063,-9,-9,2,1,1,65,1,0,0,0,1,-9,1,1,0,3,8.053935915169291,9.048333377770437,9.14341059987931,1,0,-9,8,0,-3,3.738094646275824,0,0,0,68,1,2,1,2,1,2019,1,1,18,6,48,45,15,1,6,1,0,5.294554098408295,5.294554098408295,0,0,0,0,0,0,0,1,1,0,6.883789825330133,9.286906240934862,0,0,46.08,57.2,5,1,0,0,5,5,1,285.5,0,0,0 +896,1102,2065,2066,-9,-9,2,1,0,82,1,0,0,0,1,-9,4,3,0,3,0,6.999573584277723,7.317417481669881,1,0,-9,62,0,-6,43.20272105162356,0,0,0,88,1,3,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.282084362264515,7.412202325856484,8.641654962983194,1,46.8,57.03,6,1,0,0,4,5,1,892,0,0,0 +896,1102,2066,2065,-9,-9,1,1,1,88,1,0,0,0,1,-9,4,3,0,3,0,8.817244005729856,8.435887202512651,1,0,-9,62,0,6,70.57110541447432,0,0,0,82,1,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,9.352825799614992,8.611381665041979,0,0,53.3,42.91,6,1,0,0,4,5,1,892,0,0,0 +897,1103,2067,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-991.2141356127662,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,13,1,0,539,0,0,0 +898,1104,2068,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.619809743758381,7.694229507722427,0,3,0,-9,0,0,0,-1085.224923680091,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,9,32,37,15,1,9,-9,0,6.037229518484884,6.037229518484884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.92,66.48999999999999,3,1,0,1,12,3,0,1150,0,0,0 +899,1105,2069,2070,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,2,0,6.709876184711784,6.677481998859598,1,0,-9,61,0,6,-142.8938638779975,0,0,0,78,3,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.154147461228422,6.310328062683094,0,0,59.27,44.84,5,4,0,0,9,2,1,632.5,0,0,0 +899,1105,2070,2069,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,4.143885411456006,4.526107555690051,1,0,-9,60,0,-6,94.91165564821202,0,0,0,84,3,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.984077996568121,4.232031791776762,0,0,57.51,47.91,7,4,0,0,9,2,1,632.5,0,0,0 +900,1106,2071,2072,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,3,7.976279721413834,7.714485086002994,0,1,0,-9,45,0,-3,92.31264816396072,0,0,0,64,2,2,3,3,2,2019,2,2,17,5,35,33,15,1,5,3,0,8.385438249850814,8.385438249850814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.27,57.3,3,1,0,0,9,3,1,494,0,0,0 +900,1106,2072,2071,-9,-9,2,1,1,64,1,0,0,0,2,-9,8,3,1,2,0,7.004679639044408,7.484042707772213,1,0,-9,9,0,3,-49.61199208285976,0,0,0,61,3,3,1,2,2,2019,3,1,9,0,0,60,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.174920312373297,0,0,59.06,32.53,5,1,0,0,9,3,1,494,0,0,0 +900,1107,2073,-9,2071,2072,3,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.240486352398205,7.474992887605761,0,3,0,0,0,-9,0,-935.8070717533918,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,1,-9,1,12.4197509830794,12.4197509830794,0,0,0,0,0,0,0,0,0,0,2.418149512419621,0,0,0,49,58,5,1,0,0,9,3,1,657,0,0,0 +901,1108,2074,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,3,9.29809608161969,9.152046896761801,0,3,0,0,0,-9,0,-1024.391714919819,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,37,37,15,1,1,-9,0,18.55015056468478,18.55015056468478,0,0,0,0,0,0,0,0,0,0,5.389232345744402,0,0,0,55.17,43.9,6,1,0,0,10,5,0,463,0,0,0 +902,1109,2075,2076,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,1,0,0,0,1,0,-9,6,0,-8,-54.65439609747789,0,0,0,70,1,5,3,3,2,2019,4,1,36,12,0,54,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.4,22.31,4,1,0,0,2,5,1,977.5,0,0,0 +902,1109,2076,2075,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,9.586521918277109,9.945715803172543,8.073549554244538,1,0,-9,6,0,8,-34.5591032904685,0,0,0,62,1,1,3,2,2,2019,4,2,6,0,4,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.135694775083,7.882583034595201,0,0,56.22,49.93,1,1,0,0,2,5,1,977.5,0,0,0 +903,1110,2077,2078,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,8.811987588579628,8.887099167859795,0,1,0,-9,31,0,2,35.88075408176772,0,0,0,53,1,5,1,2,2,2019,1,2,8,0,45,42,15,1,0,1,0,17.15377772101672,17.15377772101672,0,0,0,0,0,0,0,0,0,0,4.454718493002447,0,0,0,55.19,54.26,6,1,0,0,1,5,1,229.5,0,0,0 +903,1110,2078,2077,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,5,8.698350398684054,8.808879062252252,0,1,0,-9,31,0,-2,58.52491721351908,0,0,0,55,1,4,1,2,1,2019,1,1,13,1,49,50,15,1,1,1,0,14.6034944101147,14.6034944101147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.38,59.89,6,1,0,0,1,5,1,229.5,0,0,0 +904,1111,2079,-9,2082,2081,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.7441100616053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,619,0,0,0 +904,1111,2080,-9,2082,2081,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1121.876767044392,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,619,0,0,0 +904,1111,2081,2082,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,4,7.990934524676868,8.280491054422491,0,2,0,-9,8,0,0,3.305721067781531,0,0,0,35,1,3,1,2,2,2019,1,2,7,0,50,40,15,1,0,1,0,7.802756214279982,7.802756214279982,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,13,4,1,619,0,0,0 +904,1111,2082,2081,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,3,8.542308154446319,8.594350019972126,0,2,0,-9,8,0,0,9.855940501634544,0,0,1,35,2,4,1,-9,-9,2019,1,1,9,0,37,25,15,1,0,1,0,16.5107866489361,16.5107866489361,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,13,4,1,619,0,0,0 +905,1112,2083,2084,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,6.889804020969943,6.649541754882893,1,0,-9,54,0,3,-210.3816935918227,0,0,0,72,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.182955814713041,6.837625251834064,18.03942482850479,1,46.89,41.52,6,1,0,0,10,2,1,512.5,0,0,0 +905,1112,2084,2083,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,6.372078362473363,6.306689855072241,1,0,-9,54,0,-3,18.18521499678863,0,0,0,75,2,4,3,-9,-9,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,1,0,10.796249537883,0,0,0,0,1,1,0,0,6.365325910779372,0,0,60.99,44.82,5,1,0,0,10,2,1,512.5,0,0,0 +906,1113,2085,2086,-9,-9,2,1,0,50,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,7,0,-14,-37.3846071495162,0,0,0,64,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.5,34.68,6,1,1,0,2,2,0,859,0,0,0 +906,1113,2086,2085,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,5.701580606761862,5.862234733194608,1,0,-9,7,0,14,145.7065248942091,0,0,0,50,3,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.905588210866988,5.877583980374293,0,0,52,54.51,6,1,0,0,2,2,0,859,0,0,0 +907,1114,2087,2088,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.032820569838535,8.19752322324298,0,1,0,-9,10,0,-2,49.36707511159779,0,0,0,56,2,4,1,-9,-9,2019,1,1,18,6,45,50,15,1,6,1,0,7.940047318933248,7.940047318933248,0,0,0,0,0,0,0,0,0,0,3.557739227654372,0,0,0,40.93,53.95,4,1,0,0,11,5,1,618,0,0,0 +907,1114,2088,2087,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,9.159201844398881,9.231118072908833,0,1,0,-9,32,0,2,-90.28508385705067,0,0,0,54,2,3,1,2,2,2019,1,2,10,0,63,63,15,1,0,1,0,20.34200758896313,20.34200758896313,0,0,0,0,0,0,0,0,0,0,4.74937341037954,0,0,0,53.9,52.09,6,1,0,0,11,5,1,618,0,0,0 +908,1115,2089,-9,-9,-9,1,1,1,91,3,0,0,0,2,-9,4,3,0,5,0,6.420774338400568,6.597310475067798,3,0,0,0,-9,0,-1140.762812061728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.01536570186368,5.598620114350569,0,0,62.39,56.71,7,1,0,0,12,2,0,64,0,0,0 +909,1116,2090,2091,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,5,9.59832306270156,9.586389341510612,0,2,0,-9,4,0,2,50.95936608386337,0,0,0,29,1,4,1,-9,-9,2019,1,1,7,0,55,40,15,1,0,1,0,24.95981408228799,24.95981408228799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.65,56.13,6,1,0,0,2,5,1,608.6666666666666,0,0,0 +909,1116,2091,2090,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,4,9.814490326846208,10.10456324774584,0,2,0,-9,4,0,-2,4.524786321002322,0,1,1,31,1,5,1,2,1,2019,1,2,8,0,33,37,15,1,0,1,0,75.67634011444311,75.67634011444311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,6,1,0,0,2,5,1,608.6666666666666,0,0,0 +909,1116,2092,-9,2091,2090,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1074.874638699012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,2,5,1,608.6666666666666,0,0,0 +910,1117,2093,-9,2094,2097,2,1,1,19,2,0,2,0,2,-9,7,2,0,4,5.42458618355692,5.614300577366043,0,3,0,0,0,-9,0,-1150.780670856794,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.04,67.13,3,2,0,1,8,2,0,379,0,0,0 +910,1118,2094,2097,-9,-9,1,1,0,50,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,-1,103.4709721385917,0,0,0,51,2,3,1,2,3,2019,3,5,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,44.42,59.09,5,4,1,0,8,3,0,773.5,0,0,0 +910,1118,2095,-9,2094,2097,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.0001193774708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,2,0,0,8,3,0,773.5,0,0,0 +910,1118,2096,-9,2094,2097,3,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1049.607447326438,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.25,64.48999999999999,6,2,0,1,8,3,0,773.5,0,0,0 +910,1118,2097,2094,-9,-9,5,1,1,51,1,0,2,0,2,-9,1,1,0,3,8.012325177690879,7.762852200185282,0,2,0,-9,7,0,1,29.50326974058177,0,0,0,50,2,4,3,-9,-9,2019,2,1,17,5,24,40,15,1,5,3,0,15.24151321538341,15.24151321538341,0,0,0,0,0,0,0,1,0,1,0,0,0,3,26.98,52.69,3,1,0,1,8,3,0,773.5,0,0,0 +911,1119,2098,-9,2099,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1034.852729495519,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,1,3,1,1020.5,0,0,0 +911,1119,2099,-9,-9,-9,1,1,0,45,2,0,1,0,2,-9,2,1,0,2,7.74851373437552,8.22673830134474,0,4,0,0,0,-9,0,-912.5491610713101,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,34,33,15,1,5,-9,0,10.7970826815402,10.7970826815402,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.37,52.14,2,1,0,1,1,3,1,1020.5,0,0,0 +912,1120,2100,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,4,7.346869590868047,7.816408617201228,0,3,0,0,0,-9,0,-985.4613729783681,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,35,36,15,1,0,-9,0,6.920468106874125,6.920468106874125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,59.76,6,1,0,0,11,3,0,489,0,0,0 +913,1121,2101,2102,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,4,7.782962447439128,8.033369725782594,0,1,0,-9,31,0,0,-90.87849750992744,0,0,0,71,3,2,3,2,3,2019,2,2,11,0,20,25,15,1,0,4,0,14.460926226067,14.460926226067,0,0,0,0,0,0,0,1,1,0,0,0,16.78386958805414,1,55.76,52.64,6,1,0,0,5,3,0,525,0,0,0 +913,1121,2102,2101,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,5.87563214901969,6.232137104361485,1,0,-9,4,0,9,6.739983581810359,0,0,0,62,1,4,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,4.472035589288089,0,0,0,0,1,1,0,0,5.856983100433125,0,0,57.58,31.84,5,1,0,0,5,3,0,525,0,0,0 +914,1122,2103,-9,-9,-9,1,1,0,45,3,0,3,0,2,-9,2,1,0,5,8.421224654446997,8.302647561728485,0,4,0,0,0,-9,0,-1034.939036330135,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,44,44,15,1,0,-9,0,11.19895743142419,11.19895743142419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,8,3,1,391,0,0,0 +914,1123,2104,-9,2103,2106,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-928.345721974087,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,3,1,839.6666666666666,0,0,0 +914,1123,2105,-9,2103,2106,5,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-973.5641201457463,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,3,1,839.6666666666666,0,0,0 +914,1123,2106,-9,-9,-9,2,1,1,48,3,0,3,0,2,-9,1,1,0,4,8.302934046250407,8.479501633273486,0,4,0,0,0,-9,0,-1081.077855967586,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,35,15,1,1,-9,0,14.12664800895058,14.12664800895058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,3,1,839.6666666666666,0,0,0 +914,1124,2107,-9,2103,2106,3,1,0,18,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-990.4353790513729,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.5775717046267732,0,0,0,38.28,57.07,5,2,0,0,8,3,1,392,0,0,0 +915,1125,2108,2110,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,4,8.554899806617492,8.546538963546844,0,2,0,-9,25,0,0,-40.83024545127727,0,0,0,55,2,4,1,3,2,2019,1,1,9,0,48,54,15,1,1,1,0,13.50830134453601,13.50830134453601,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,1,0,0,11,3,1,904.3333333333334,0,0,0 +915,1125,2109,-9,2110,2108,5,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-986.7978450386247,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.08,59.33,6,1,0,0,11,3,1,904.3333333333334,0,0,0 +915,1125,2110,2108,-9,-9,1,1,0,55,1,0,1,0,2,-9,2,1,0,4,5.817501752463403,6.180437183607284,0,2,0,-9,24,0,0,23.82416222498351,0,0,0,55,2,4,1,3,1,2019,1,2,8,0,15,0,15,1,0,1,0,3.224699263467032,3.224699263467032,0,0,0,0,0,0,0,1,1,0,0,0,127.0456538694892,3,54.2,57.49,6,1,0,0,11,3,1,904.3333333333334,0,0,0 +915,1126,2111,-9,2110,2108,3,1,0,21,2,0,1,0,2,-9,2,1,0,5,6.0723400888287,5.975633218300409,0,3,0,0,0,-9,0,-1052.90848732203,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,8,0,15,1,0,-9,1,6.267523909770945,6.267523909770945,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,11,2,1,557,0,0,0 +915,1127,2112,-9,2110,2108,4,1,0,19,2,0,1,0,2,1,2,1,0,4,6.70244956357469,6.772550549006144,0,3,0,0,0,-9,0,-1121.407943549572,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,18,0,15,1,1,-9,1,5.245496170466571,5.245496170466571,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,11,2,1,319,0,0,0 +916,1128,2113,2114,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.878973275713228,8.044978022914506,1,0,-9,7,0,3,55.37136159687802,0,0,0,66,2,3,3,3,3,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.385185728045871,7.954199817601838,0,3,56.5,48.33,6,1,0,0,12,3,1,532.5,0,0,0 +916,1128,2114,2113,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,5.547964234092563,5.225875417386126,1,0,-9,7,0,-3,-142.8901552428516,0,0,0,69,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.450275635334028,5.09269650177457,12.83949881513095,3,45.28,42.57,6,1,0,0,12,3,1,532.5,0,0,0 +917,1129,2115,-9,-9,2117,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-985.3248167515488,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,1,0,529,0,0,0 +917,1129,2116,-9,-9,2117,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1060.776295047518,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,10,1,0,529,0,0,0 +917,1129,2117,-9,-9,-9,1,1,1,39,3,0,3,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-994.0293473730927,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.76,43.85,2,1,0,1,10,1,0,529,0,0,0 +917,1129,2118,-9,-9,2117,2,1,1,15,2,0,3,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-1058.393553609931,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,3,1,0,0,10,1,0,529,0,0,0 +918,1130,2119,2120,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,8.153871436222696,8.189216651383308,0,1,0,-9,7,0,-2,-57.96314079209243,0,0,0,33,2,3,1,-9,-9,2019,1,2,8,0,40,40,15,1,0,1,0,8.284097749285722,8.284097749285722,0,0,0,0,0,0,0,0,0,0,6.273869201784247,0,0,0,48.14,49.45,6,1,0,0,6,5,1,1225,0,0,0 +918,1130,2120,2119,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,3,8.6742126110857,8.980985174137244,0,1,0,-9,7,0,2,-25.34419164963961,0,0,1,31,2,4,1,-9,-9,2019,1,1,12,4,38,38,15,1,4,1,0,13.74171748462073,13.74171748462073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.23,37.34,5,1,0,0,6,5,1,1225,0,0,0 +919,1131,2121,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-899.9104794673879,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.38,55.6,6,1,0,0,13,1,0,141,0,0,0 +920,1132,2122,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,5,7.256492914275315,7.69991643734788,0,3,0,0,0,-9,0,-1011.518478845998,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,40,15,1,0,-9,0,9.334003630303256,9.334003630303256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,4,1,0,0,2,3,1,879,0,0,0 +921,1133,2123,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,2,1,0,2,9.034720223182743,9.054245793455021,0,3,0,0,0,-9,0,-946.4414276187919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,35,35,15,1,1,-9,0,27.60729249641193,27.60729249641193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.54,38.73,3,1,0,0,10,5,1,643,0,0,0 +921,1134,2124,-9,-9,2123,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,7.718729870561244,7.823062366679215,0,3,0,0,0,-9,0,-1018.015357919872,0,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,5,0,34,31,15,1,0,-9,1,8.21310902473212,8.21310902473212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.78,56.37,7,1,0,0,10,3,1,960,0,0,0 +921,1135,2125,-9,-9,2123,4,1,1,22,2,0,0,0,2,-9,3,3,0,2,6.385200835944053,6.328150480285792,0,3,0,0,0,-9,0,-1081.011910573743,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.948139846751666,0,0,0,55.92,42.25,4,1,1,0,10,2,1,570,0,0,0 +922,1136,2126,2127,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.742514012751915,10.18748075450385,8.828314945460006,1,0,-9,10,0,-4,69.03315229118284,0,0,0,62,2,5,3,2,2,2019,2,1,10,0,65,40,15,1,0,4,0,28.71542841009794,28.71542841009794,0,0,0,0,0,0,0,0,0,0,6.179212983475233,8.772284545481808,0,0,57.33,53.46,6,1,0,0,6,5,1,285,0,0,0 +922,1136,2127,2126,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,10,0,4,-108.5541172831394,0,0,0,58,2,3,1,-9,-9,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,6,5,1,285,0,0,0 +923,1137,2128,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,6,3,0,5,0,0,0,4,0,-9,0,-9,0,-996.833185055055,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,2,1,0,665,0,0,0 +923,1137,2129,-9,2128,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1050.712913559592,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,1,0,665,0,0,0 +924,1138,2130,-9,-9,-9,1,1,1,42,3,0,0,0,1,-9,2,1,0,3,8.56222324626531,8.584823134615291,0,3,0,0,0,-9,0,-998.2456218078978,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,40,40,15,1,2,-9,0,17.20225199333792,17.20225199333792,0,0,0,0,0,0,0,0,0,0,0,0,3.687034276128061,3,31.93,58.41,6,3,0,0,8,5,1,2448,0,0,0 +925,1139,2131,2132,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,8.653422055810983,8.635550795034547,1,0,-9,41,0,7,131.82358342507,0,0,0,65,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.00884924163983,8.549364103189829,0,0,45.7,48.39,5,1,0,0,4,4,1,816,0,0,0 +925,1139,2132,2131,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,7.180029118011748,7.08527901905255,1,0,-9,41,0,-7,22.83063098914813,0,0,0,72,2,2,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.931932060362957,6.817298658676985,0,0,62.84,41.32,6,1,0,0,4,4,1,816,0,0,0 +926,1140,2133,2134,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,4,9.25937720278305,8.832879552779431,0,1,0,-9,2,0,1,162.2556280644473,-9,0,0,52,2,4,1,-9,-9,2019,1,2,9,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,5,0,0,13,5,1,282.5,0,0,0 +926,1140,2134,2133,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.992537279760947,8.080120650763162,0,1,0,-9,29,0,-1,-38.38446354229852,0,0,0,53,1,4,1,-9,3,2019,1,1,10,0,28,0,15,1,0,1,0,11.97239572536315,11.97239572536315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,46.44,6,1,0,0,13,5,1,282.5,0,0,0 +926,1141,2135,-9,2134,2133,3,1,0,26,2,0,0,0,2,-9,2,1,0,4,7.927513626073933,7.825476313545241,0,3,0,-9,0,-9,0,-1096.308403108384,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,40,0,15,1,2,-9,1,6.745109350245337,6.745109350245337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,1,0,0,13,3,1,435,0,0,0 +927,1142,2136,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,5,8.506556977116899,8.639583121987584,0,3,0,0,0,-9,0,-1075.487441651816,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,40,15,1,0,-9,0,14.68428266137523,14.68428266137523,0,0,0,0,0,0,0,0,0,0,4.672108426162005,0,0,0,60.02,56.42,6,1,0,0,5,5,1,135,0,0,0 +928,1143,2137,2138,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,3,0,7.521857084261257,7.803489993411049,1,0,-9,41,0,-4,13.06045409274819,0,0,0,64,1,3,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.043961670733303,7.705945084730114,2.065080356158266,3,53.59,49.64,6,1,0,0,2,4,1,476,0,0,0 +928,1143,2138,2137,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,7.639579608358714,7.654291220672068,1,0,-9,41,0,4,3.767551359094774,0,0,0,60,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.5761580970426091,8.086700864170743,0,0,56.19,41.56,6,1,0,0,2,4,1,476,0,0,0 +929,1144,2139,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1017.541809787762,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.95,1,1,0,0,9,1,1,263,0,0,0 +930,1145,2140,2141,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,4,6.171586155994645,6.661782533551598,0,1,0,1,1,-9,-8,-48.21695664654589,0,0,0,57,2,3,1,2,-9,2019,1,2,6,0,40,50,15,1,0,1,0,1.512713451916993,1.512713451916993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,626.5,0,0,0 +930,1145,2141,2140,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.753703372018464,8.820711764971014,0,1,0,-9,1,-9,8,-74.01360010570998,-9,0,0,49,2,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,17.65618147115383,17.65618147115383,0,0,0,0,0,0,0,0,0,0,4.200785518160247,0,0,0,51,49,5,5,0,0,4,5,1,626.5,0,0,0 +931,1146,2142,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,2,1,0,2,9.159042008169315,9.102366927432026,0,3,0,0,0,-9,0,-1078.558461649675,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,38,15,1,0,-9,0,22.23841258809991,22.23841258809991,0,0,0,0,0,0,0,0,0,0,7.419349720418371,0,0,0,38.36,51.73,5,1,0,0,12,5,1,148,0,0,0 +932,1147,2143,2144,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,3,8.948822099519695,8.894358852109615,0,1,0,-9,7,0,17,10.45242246588116,0,0,0,34,1,4,1,2,1,2019,1,1,17,6,38,40,15,1,6,1,0,22.92077097607971,22.92077097607971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.98,63,3,1,0,0,4,5,1,1812.5,0,0,0 +932,1147,2144,2143,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,4,7.768073729586248,7.688197414037487,0,1,0,-9,8,0,-17,-161.2312789382296,0,0,1,51,1,3,1,1,1,2019,1,2,10,1,16,16,15,1,1,1,0,14.18714222609425,14.18714222609425,0,0,0,0,0,0,0,0,0,0,.6111262198116872,0,0,0,54.2,57.49,6,1,0,0,4,5,1,1812.5,0,0,0 +933,1148,2145,2146,-9,-9,1,1,1,42,1,0,1,0,2,-9,1,1,0,4,8.32729230376224,8.543976061177116,0,2,0,-9,5,0,7,36.84140380406192,0,0,0,35,2,4,1,-9,-9,2019,1,2,10,0,60,40,15,1,1,1,0,10.22791499880966,10.22791499880966,0,0,0,0,0,0,0,1,1,0,6.293176898087302,0,0,0,52,55,5,1,0,0,4,3,1,608,0,0,0 +933,1148,2146,2145,-9,-9,2,1,0,35,1,0,1,0,2,-9,1,1,0,4,5.053077746786447,5.259092113585104,0,2,0,-9,5,0,-7,67.21209661645918,0,0,1,42,2,4,1,2,3,2019,1,1,11,0,37,37,15,1,2,1,0,.6017664657346954,.6017664657346954,0,0,0,0,0,0,0,1,1,0,7.485017201570431,0,0,0,49,56,5,1,0,0,4,3,1,608,0,0,0 +933,1148,2147,-9,2146,2145,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.641991756135,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,1,608,0,0,0 +934,1149,2148,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,6.496014993495058,6.752671742981265,3,0,0,0,-9,0,-1049.051963726562,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,.3977433158276038,0,0,0,1,1,0,0,6.778504778595146,0,0,58.08,30.23,6,1,0,0,6,2,0,606,0,0,0 +935,1150,2149,2150,-9,-9,2,1,1,61,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,6,0,4,93.02174844613674,0,0,0,57,2,4,1,-9,-9,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7667920520173468,0,3.704782578842716,3,58.25,22.01,4,1,1,0,7,4,1,445,0,0,0 +935,1150,2150,2149,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.742650240960721,8.747356329411177,0,1,0,-9,28,0,-4,59.25473182609977,0,0,0,61,2,1,3,2,3,2019,2,2,7,0,42,55,15,1,0,3,0,15.82047008013076,15.82047008013076,0,0,0,0,0,0,0,1,1,0,0,0,5.131448863284072,3,57.16,56.15,6,1,0,0,7,4,1,445,0,0,0 +935,1151,2151,-9,2150,2149,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.818215279356587,7.783743930414317,0,3,0,0,0,-9,0,-945.1942036833262,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,43,37,15,1,0,-9,1,6.96381959536947,6.96381959536947,0,0,0,0,0,0,0,1,1,0,4.608055185364607,0,0,0,57.16,56.15,6,1,0,0,7,3,1,656,0,0,0 +936,1152,2152,-9,2153,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,5,8.603309519858632,9.068113171484736,0,3,0,0,0,-9,0,-854.037003107227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,41,45,15,1,0,-9,1,14.91490159112761,14.91490159112761,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.06,57.76,6,1,0,0,12,5,1,312,0,0,0 +936,1153,2153,-9,-9,-9,2,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,5.594713621265019,6.351211311023709,3,0,0,0,-9,0,-1127.769109732145,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.804033250316897,6.063369539588796,0,0,53,44,6,1,0,0,12,2,1,479,0,0,0 +937,1154,2154,-9,2155,2156,3,1,0,16,2,0,1,1,2,-9,7,2,0,4,6.328094977627441,6.814396592538296,0,2,0,0,0,-9,0,-891.281992630641,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,7,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,13,5,1,4079,0,0,0 +937,1154,2155,2156,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,2,8.591271982846127,8.673137772223809,0,2,0,-9,5,0,4,-144.5796351689567,0,0,0,48,1,4,1,3,2,2019,1,1,9,1,36,30,15,1,1,1,0,17.72340710321558,17.72340710321558,0,0,0,0,0,0,0,1,1,0,4.042752606561408,0,0,0,51.29,40.4,6,1,0,0,13,5,1,4079,0,0,0 +937,1154,2156,2155,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.143354612355029,8.875076696792096,0,2,0,-9,5,0,-4,52.93597961091085,0,0,0,52,2,2,1,3,3,2019,1,2,15,3,36,36,15,1,3,1,0,26.43728858137393,26.43728858137393,0,0,0,0,0,0,0,1,1,0,0,0,8.32639537879396,3,41.02,59.77,4,1,0,0,13,5,1,4079,0,0,0 +938,1155,2157,2158,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,4,8.679670727455944,8.622817901661488,0,1,0,-9,35,0,6,-58.35016032736358,0,0,0,56,1,4,1,2,2,2019,1,2,5,0,66,32,15,1,0,1,0,12.38026076454913,12.38026076454913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,6,1,0,0,7,5,1,464,0,0,0 +938,1155,2158,2157,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.506207363359552,8.429244454718297,0,1,0,-9,34,0,-6,19.75041855685639,0,0,0,62,1,4,1,2,1,2019,1,1,9,0,24,25,15,1,0,1,0,19.96889674844119,19.96889674844119,0,0,0,0,0,0,0,0,0,0,8.125237139426547,0,0,0,51.24,58.84,6,1,0,0,7,5,1,464,0,0,0 +939,1156,2159,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,7.707942723467096,7.958798837223664,3,0,0,0,-9,0,-891.344497893209,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.137575432445809,7.937537229944029,0,3,52.63,46.3,6,1,0,0,6,4,1,369,0,0,0 +940,1157,2160,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,2,0,7.626536193702343,7.491814105913013,3,0,0,0,-9,0,-749.4717932753804,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.77392001672013,7.543676626998317,0,0,54.78,45.49,6,1,0,0,9,3,1,302,0,0,0 +941,1158,2161,-9,2164,-9,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1123.151079872733,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,2,0,857,0,0,0 +941,1158,2162,-9,2164,-9,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-923.5292545085309,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,2,0,857,0,0,0 +941,1158,2163,-9,2164,-9,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1018.193604979686,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,2,0,857,0,0,0 +941,1158,2164,-9,-9,-9,1,1,0,41,3,0,3,0,2,-9,2,1,0,3,6.830138922570488,7.088241647965979,0,4,0,-9,0,1,0,-1093.667744048066,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,11,15,36,15,1,11,-9,0,6.284061218521319,6.284061218521319,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.87,58.96,4,1,0,1,7,2,0,857,0,0,0 +941,1159,2165,-9,2164,-9,2,1,0,19,2,0,3,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1023.166743658456,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.86,51.44,2,1,1,1,7,1,0,378,0,0,0 +942,1160,2166,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,7.926720666794957,8.052974971849423,0,3,0,0,0,-9,0,-945.4583441794668,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,37,15,1,0,-9,0,10.31075239712314,10.31075239712314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.14,46.35,5,1,0,0,11,4,1,554,0,0,0 +942,1161,2167,-9,2166,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,2,6.993590113473199,6.842354623357996,0,3,0,0,0,-9,0,-891.3541963819091,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,25,16,15,1,3,-9,1,6.3860225395075,6.3860225395075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.12,52.47,3,1,0,0,11,2,1,756,0,0,0 +943,1162,2168,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-989.9623532905837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,4,11,-9,0,0,0,1,0,0,76.75910602872277,0,0,0,1,1,0,0,0,0,0,28.62,34.46,4,1,0,0,13,1,1,274,0,0,0 +943,1163,2169,-9,2168,-9,2,1,0,46,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-924.8095785382487,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,7,6,15,1,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,86.39530065003419,3,35.07,53.11,3,1,0,1,13,1,1,252,0,0,0 +944,1164,2170,2171,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,3,8.75458372462556,8.756315318356497,0,2,0,-9,12,0,8,-17.6137999795769,0,0,0,30,2,4,1,1,2,2019,1,2,11,1,70,55,15,1,1,1,0,8.172406109638656,8.172406109638656,0,0,0,0,0,0,0,1,1,0,2.169461358874953,0,0,0,53.94,40.04,6,1,0,0,2,4,1,1035.25,0,0,0 +944,1164,2171,2170,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,4,6.891548125145659,6.483296251101792,0,2,0,-9,14,0,-8,18.49621237762373,0,0,1,38,1,3,1,2,2,2019,1,1,10,0,9,19,15,1,0,1,0,8.70656744395383,8.70656744395383,0,0,0,0,0,0,0,1,1,0,1.876991539761783,0,0,0,54.2,57.49,6,1,0,0,2,4,1,1035.25,0,0,0 +944,1164,2172,-9,2171,2170,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.985835736683,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,1035.25,0,0,0 +944,1164,2173,-9,2171,2170,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.330918945956,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,1035.25,0,0,0 +945,1165,2174,2175,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.266169019242755,8.44843802255674,0,1,0,-9,19,0,-6,56.26237225834416,0,0,0,61,1,5,1,2,2,2019,1,1,7,0,50,37,15,1,0,1,0,11.37585546779854,11.37585546779854,0,0,0,0,0,0,0,0,0,0,3.452696370584206,0,0,0,57.16,56.15,6,1,0,0,2,5,1,556.5,0,0,0 +945,1165,2175,2174,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,5,8.365096345904162,8.269715167236042,0,1,0,-9,19,0,6,20.99723673414707,0,0,0,55,1,4,1,3,3,2019,1,2,10,1,38,38,15,1,1,1,0,8.831627798560804,8.831627798560804,0,0,0,0,0,0,0,0,0,0,5.659913262676553,0,0,0,57.06,57.76,6,1,0,0,2,5,1,556.5,0,0,0 +946,1166,2176,-9,-9,-9,1,1,0,55,3,0,1,0,2,-9,2,1,0,3,7.979012655852173,7.76548140107785,0,4,0,0,0,-9,0,-893.5659555154313,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,30,0,15,1,0,-9,0,8.110627986657235,8.110627986657235,0,0,0,0,0,0,0,1,1,0,0,0,6.66703796863578,3,60.3,46.58,6,4,0,0,8,3,0,225,0,0,0 +946,1167,2177,-9,2176,-9,2,1,1,18,2,0,1,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-980.5543120630099,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,4,0,0,8,3,0,446,0,0,0 +947,1168,2178,2180,-9,-9,2,1,0,33,1,1,3,0,3,-9,6,3,0,2,0,0,0,2,0,-9,2,0,-5,0,0,0,1,38,2,2,3,2,2,2019,4,1,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,30.9,2,1,0,1,11,1,0,832.2,0,0,0 +947,1168,2179,-9,2178,2180,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-848.2340353463658,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,1,0,832.2,0,0,0 +947,1168,2180,2178,-9,-9,1,1,1,38,1,1,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,2,0,5,0,0,0,0,33,3,2,3,3,3,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,42.72,4,1,1,1,11,1,0,832.2,0,0,0 +947,1168,2181,-9,2178,2180,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.2655659600787,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,1,0,832.2,0,0,0 +947,1168,2182,-9,2178,2180,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.083788428134,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,1,0,832.2,0,0,0 +948,1169,2183,-9,-9,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1136.393333305728,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.2,62.1,6,1,0,0,4,1,1,215,0,0,0 +949,1170,2184,2185,-9,-9,2,1,1,55,1,0,2,0,1,-9,1,1,0,3,10.09941784368071,10.16731102551949,0,2,0,-9,25,0,2,-62.05154813592068,0,0,0,53,1,3,3,2,1,2019,2,1,7,0,40,45,15,1,0,3,0,65.64515374763992,65.64515374763992,0,0,0,0,0,0,0,1,1,0,2.873848507387481,0,0,0,53.54,49.68,6,2,0,0,7,5,1,276,0,0,0 +949,1170,2185,2184,-9,-9,1,1,0,53,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,25,0,-2,101.6677669655713,0,0,0,55,1,3,1,2,2,2019,3,2,11,0,0,10,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.057480434138002,0,0,0,44.69,49.93,6,1,0,0,7,5,1,276,0,0,0 +949,1171,2186,-9,2185,2184,3,1,0,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-967.5767787645707,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.91,59.07,6,1,0,0,7,5,1,956,0,0,0 +950,1172,2187,2188,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.742307188673589,8.739144566535852,0,1,0,-9,2,0,6,-23.15223870592414,0,0,0,24,1,5,1,-9,-9,2019,1,1,10,0,38,0,15,1,1,1,0,17.0788003103963,17.0788003103963,0,0,0,0,0,0,0,0,0,0,2.274236609634577,0,0,0,49,58,5,5,0,0,8,5,0,856.5,0,0,0 +950,1172,2188,2187,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,5,8.919881251216056,8.734661921535888,0,1,0,-9,2,0,-6,48.30481168872211,0,1,1,30,1,4,1,-9,-9,2019,1,2,10,0,45,42,15,1,0,1,0,17.67338304934182,17.67338304934182,0,0,0,0,0,0,0,0,0,0,3.638971560648357,0,0,0,54.63,58.83,6,1,0,0,8,5,0,856.5,0,0,0 +951,1173,2189,-9,-9,-9,2,1,1,44,2,0,0,0,1,-9,2,1,0,3,8.197492448267475,8.41106289577645,0,1,0,-9,3,0,6,-95.89704157981325,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,23,11,44,41,15,1,11,-9,0,11.62515752337655,11.62515752337655,0,0,0,0,0,0,0,0,0,0,8.911429666486322,0,0,0,25.61,62.71,5,1,0,0,11,5,1,1014,0,0,0 +951,1174,2190,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,3,8.722137574620172,8.91406764843798,0,1,0,-9,3,0,-6,-66.32651271401649,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,13,1,40,43,15,1,1,-9,0,17.27525299246678,17.27525299246678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,6,1,0,0,11,5,1,224,0,0,0 +952,1175,2191,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,7.418825967699664,7.975563180644945,7.109941572090645,3,0,0,0,-9,0,-1020.615936848368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,24,24,15,1,1,-9,0,9.871741145272892,9.871741145272892,0,0,0,0,0,0,0,1,1,0,0,6.991470814232741,0,0,51,52.08,5,1,0,0,12,3,1,131,0,0,0 +953,1176,2192,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,1,0,5.970899147263843,6.51227632858515,3,0,0,0,-9,0,-1062.760493040151,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.47901749854741,0,0,49.35,19.8,3,1,0,0,12,2,0,894,0,0,0 +954,1177,2193,2194,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,7.607761965852056,6.958413858173726,1,0,-9,25,0,-1,112.0818375172974,0,0,0,76,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.050963166801813,7.105361574617772,0,0,57.16,56.15,7,1,0,0,2,4,1,356.5,0,0,0 +954,1177,2194,2193,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,8.287269043740087,8.488394867042203,1,0,-9,25,0,1,46.39856660585989,0,0,0,75,2,4,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.526796787123797,8.260214016230504,0,0,50.71,36.29,4,1,0,0,2,4,1,356.5,0,0,0 +955,1178,2195,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,1,1,0,5,7.024660792115117,8.607498518118771,8.670190898074578,3,0,0,0,-9,0,-893.0985728336328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,35,30,15,1,0,-9,0,4.125295798940024,4.125295798940024,0,0,0,0,0,0,0,1,1,0,7.23327576701335,8.24814505341409,0,0,45.75,62.87,6,1,0,0,11,5,1,2037,0,0,0 +956,1179,2196,-9,-9,-9,1,1,0,76,2,0,0,0,3,-9,4,3,0,1,0,4.535726794272923,4.600285753900989,3,0,0,0,-9,0,-951.5097744161834,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.719603473165854,0,0,49.13,27.5,5,1,0,0,5,2,1,285,0,0,0 +957,1180,2197,2198,-9,-9,1,1,0,51,1,0,0,0,2,1,1,1,0,3,5.799022086709485,5.861778366615003,0,1,0,-9,6,0,-2,-140.716011293727,-9,0,0,53,2,4,1,2,2,2019,1,2,12,0,4,0,15,1,0,1,0,14.95649749646247,14.95649749646247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,6,1,0,0,12,4,1,548,0,0,0 +957,1180,2198,2197,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.340510473803747,8.384815926968461,0,1,0,-9,6,0,2,5.704396295099941,0,0,0,51,2,3,1,3,3,2019,1,1,7,0,37,38,15,1,0,1,0,15.79589448595073,15.79589448595073,0,0,0,0,0,0,0,0,0,0,3.404753762305283,0,0,0,54.2,57.49,5,1,0,0,12,4,1,548,0,0,0 +957,1181,2199,-9,2197,2198,3,1,1,21,2,0,0,0,2,-9,2,1,0,5,8.491814950443899,8.264204467406906,0,3,0,0,0,-9,0,-1092.646863451116,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,62,40,15,1,1,-9,1,7.171347149458034,7.171347149458034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,12,4,1,331,0,0,0 +958,1182,2200,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,6.155808302482384,6.264242546505054,3,0,0,0,-9,0,-1004.238029589292,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.665563042718501,0,0,0,1,1,0,0,6.160408357196852,0,0,41.64,54.12,4,1,0,0,9,2,1,718,0,0,0 +959,1183,2201,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,0,6.000183539028852,6.102004283782832,3,0,0,0,-9,0,-1030.54616951437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.008617170208954,5.939090135434765,0,0,41.88,17.86,4,1,0,0,5,2,1,126,0,0,0 +960,1184,2202,2203,-9,-9,1,1,0,52,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,7,0,-6,0,0,0,0,58,3,4,3,3,-9,2019,4,2,26,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.44383617298537,1,19.23,62.63,4,1,1,1,12,1,0,723.5,0,0,0 +960,1184,2203,2202,-9,-9,2,1,1,58,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,7,0,6,0,0,0,0,52,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,1,0,12,1,0,723.5,0,0,0 +961,1185,2204,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,3,0,5.669267841707444,5.590751855328727,3,0,0,0,-9,0,-1003.614319541404,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.396443778625035,0,0,30.75,39.89,7,3,0,0,9,2,0,210,0,0,0 +962,1186,2205,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1039.576948847314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,1.676022526037005,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,11,1,0,904,0,0,0 +963,1187,2206,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,2,0,7.413746712170993,7.083561842951561,3,0,0,0,-9,0,-973.1174255034191,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.865408301868633,0,0,50.26,33.72,4,4,0,1,8,3,0,222,0,0,0 +963,1188,2207,-9,-9,-9,2,1,0,65,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1000.062195305027,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.10000000000001,24.72,7,4,0,1,8,1,0,282,0,0,0 +964,1189,2208,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,4,8.996058647265828,8.909624687544998,0,3,0,0,0,-9,0,-943.9504788207929,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,40,15,1,0,-9,0,18.93173069962124,18.93173069962124,0,0,0,0,0,0,0,0,0,0,8.121387202731141,0,0,0,58.15,52.91,6,1,0,0,12,5,1,363,0,0,0 +965,1190,2209,-9,2210,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-876.0992240109211,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,5,1,0,949.5,0,0,0 +965,1190,2210,-9,-9,-9,1,1,0,23,2,0,1,0,3,-9,3,3,0,1,0,0,0,4,0,-9,0,-9,0,-893.5320990859503,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,8.550000000000001,45.3,1,1,1,1,5,1,0,949.5,0,0,0 +966,1191,2211,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1053.990904773024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.64149681957087,3,60.12,54.8,6,1,0,0,12,1,1,331,0,0,0 +967,1192,2212,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-943.4082563327809,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,1,0,46,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.21,24.99,5,1,1,1,2,1,0,1168,0,0,0 +968,1193,2213,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,2,0,7.701320847130956,7.712031999981893,3,0,0,0,-9,0,-993.6774203673593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,1.656212904571471,0,0,0,0,25.36475728298953,1,1,0,5.173214848670424,7.705826153606793,0,0,60.7,18.52,5,1,0,0,12,3,1,789,0,0,0 +969,1194,2214,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,7.026018151400778,6.547362721962931,3,0,0,0,-9,0,-920.2938611460409,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.339507166494967,5.851440588735841,3,38.9,48.23,5,1,0,0,9,2,1,397,0,0,0 +970,1195,2215,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-953.7306668324394,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,2.71299379945861,3,41.81,36.58,4,1,1,0,12,1,0,441,0,0,0 +971,1196,2216,2217,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,7.701473807108815,7.430575501996393,0,1,0,-9,3,0,3,158.3592739445052,0,0,0,44,2,4,1,-9,-9,2019,1,1,10,1,40,45,15,1,1,1,0,5.267234016030033,5.267234016030033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,46.82,5,3,0,0,4,3,0,1272,0,0,0 +971,1196,2217,2216,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,4,7.37343753006774,7.901662264530107,0,1,0,-9,3,0,-3,-15.61924477801023,0,0,0,47,2,4,1,2,2,2019,1,2,9,0,22,23,15,1,0,1,0,11.41421112230361,11.41421112230361,0,0,0,0,0,0,0,0,0,0,4.495931435178105,0,0,0,57.16,56.15,5,1,0,0,4,3,0,1272,0,0,0 +972,1197,2218,2222,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,3,7.810901261544047,7.556043046206293,0,2,0,-9,6,0,0,12.03296419340266,0,0,1,40,1,4,1,2,2,2019,1,1,11,0,18,17,15,1,0,1,0,14.2611971036727,14.2611971036727,0,0,0,0,0,0,0,1,0,1,0,0,.9231608123177546,3,44.19,58.01,6,1,0,0,4,4,1,468.2,0,0,0 +972,1197,2219,-9,2218,2222,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.974692656945,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,1,0,0,4,4,1,468.2,0,0,0 +972,1197,2220,-9,2218,2222,3,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.6135269770092,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,1,0,0,4,4,1,468.2,0,0,0 +972,1197,2221,-9,2218,2222,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.8610748454387,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,4,4,1,468.2,0,0,0 +972,1197,2222,2218,-9,-9,1,1,1,40,1,0,3,0,1,-9,1,1,0,4,8.77542319748188,8.613543807801243,0,2,0,-9,6,0,0,-71.7086024154958,0,0,0,40,1,3,1,1,2,2019,1,2,6,0,42,42,15,1,0,1,0,19.23264973409837,19.23264973409837,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,6,1,0,0,4,4,1,468.2,0,0,0 +973,1198,2223,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,6.837396624641716,6.959200888677985,3,0,0,0,-9,0,-898.7298150394128,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.260002396252283,6.540119005483733,0,0,59.04,48.6,5,1,0,0,5,2,1,720,0,0,0 +974,1199,2224,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,2,1,0,4,8.073255374559341,7.98536689411627,0,3,0,0,0,-9,0,-879.1001127074087,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,55,60,15,1,0,-9,0,7.587043648712205,7.587043648712205,0,0,0,0,0,0,0,0,0,0,.8809787845370892,0,0,0,54.2,57.49,6,1,0,0,12,4,0,215,0,0,0 +975,1200,2225,-9,-9,-9,1,1,0,84,2,0,0,0,1,-9,2,1,0,2,0,6.795838408829809,6.854881783317589,3,0,0,0,-9,0,-961.2435302109595,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,1,4.476282666266934,0,0,0,0,0,1,1,0,4.001467518114117,7.031856104222191,0,0,62.44,29.69,6,1,0,0,13,2,1,180,0,0,0 +976,1201,2226,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,2,7.38818552284947,7.076107022829972,0,3,0,-9,0,1,0,-1123.826633196792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,22,20,15,1,8,-9,0,7.69061266584224,7.69061266584224,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.76,18.03,4,4,0,1,8,3,0,297,0,0,0 +977,1202,2227,2228,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,2,7.227266607705951,7.42135220447015,0,1,0,-9,8,0,5,-37.7153810824587,0,0,0,56,3,2,1,-9,-9,2019,1,1,12,1,26,25,15,1,1,1,0,9.70280534893711,9.70280534893711,0,0,0,0,0,0,0,0,0,0,2.710734708412997,0,0,0,56.75,28.3,6,1,0,0,10,4,1,511,0,0,0 +977,1202,2228,2227,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,2,8.287752057400004,8.287855066381566,0,1,0,-9,8,0,-5,-67.00453151975925,0,0,0,61,2,2,1,2,2,2019,1,2,8,1,42,40,15,1,1,1,0,8.726012900057089,8.726012900057089,0,0,0,0,0,0,0,0,0,0,5.999109087611359,0,0,0,57.33,37.4,4,1,0,0,10,4,1,511,0,0,0 +978,1203,2229,2230,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,2,8.848642288224481,8.949896333702567,0,1,0,-9,9,0,-7,-19.49541555633901,0,0,0,56,2,3,3,3,2,2019,2,2,23,11,50,45,15,1,11,4,0,14.37590281918743,14.37590281918743,0,0,0,0,0,0,0,0,0,0,2.812770878186721,0,0,0,44.67,34.01,3,1,0,0,10,5,1,661.5,0,0,0 +978,1203,2230,2229,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,3,0,8.449873585402294,8.597514773693788,1,0,-9,9,0,7,37.22647778128542,0,0,0,49,2,2,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.884304738383979,8.009740303543598,.0775385732613649,3,58.89,48.6,2,1,0,0,10,5,1,661.5,0,0,0 +979,1204,2231,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,1,0,3.151359684998468,3.429308601752565,3,0,0,0,-9,0,-932.1153684239476,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.762224715949672,3.432036096664773,0,0,49.66,18.67,5,1,0,0,5,1,1,692,0,0,0 +979,1205,2232,-9,-9,-9,2,1,1,63,3,0,0,0,2,-9,4,3,0,3,0,7.751401734868822,8.324282875504439,3,0,0,0,-9,0,-998.1164250124327,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.451605607028037,7.845834398863818,0,3,55.08,48.98,6,1,0,0,5,4,1,206,0,0,0 +980,1206,2233,-9,2234,2236,2,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.41983664175,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,1,0,531,0,0,0 +980,1206,2234,2236,-9,-9,1,1,0,26,1,1,2,0,2,1,6,3,0,1,0,0,0,2,0,-9,3,0,2,0,-9,1,1,24,2,2,3,3,3,2019,4,3,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.35,29.55,4,1,0,0,12,1,0,531,0,0,0 +980,1206,2235,-9,2234,2236,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.6021628684528,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,1,0,531,0,0,0 +980,1206,2236,2234,-9,-9,3,1,1,24,1,1,2,0,2,1,8,3,1,2,0,0,0,2,0,-9,3,0,-2,0,-9,1,0,26,2,1,3,-9,-9,2019,4,1,27,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,28.9,42.5,1,1,0,0,12,1,0,531,0,0,0 +981,1207,2237,2240,-9,-9,2,1,0,38,1,1,4,0,1,-9,2,1,0,5,8.138638815355925,8.209955932362035,0,2,0,-9,16,0,-5,-33.07384666319032,0,0,1,43,1,5,1,2,1,2019,1,1,11,0,40,0,15,1,0,1,0,11.29069842885553,11.29069842885553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,3,0,0,9,5,1,943,0,0,0 +981,1207,2238,-9,2237,2240,4,1,1,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.080786408038,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,3,0,0,9,5,1,943,0,0,0 +981,1207,2239,-9,2237,2240,6,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.1180317085565,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,3,0,0,9,5,1,943,0,0,0 +981,1207,2240,2237,-9,-9,1,1,1,43,1,1,4,0,1,-9,1,1,0,5,9.628453312256532,9.500196846501026,0,2,0,-9,16,0,5,-5.946285546385328,0,0,0,38,1,5,1,3,2,2019,1,2,8,0,50,40,15,1,0,1,0,31.25866899563284,31.25866899563284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,3,0,0,9,5,1,943,0,0,0 +981,1207,2241,-9,2237,2240,5,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.4780661552725,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,3,0,0,9,5,1,943,0,0,0 +982,1208,2242,-9,2243,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-950.4517957417188,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,527,0,0,0 +982,1208,2243,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,2,8.082104347849508,7.935808137949629,0,4,0,0,0,-9,0,-916.9507528052043,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,33,34,15,1,0,-9,0,7.804966131811987,7.804966131811987,0,0,0,0,0,0,0,1,1,0,0,0,8.252755611881142,3,58.16,48.06,6,1,0,0,4,3,1,527,0,0,0 +983,1209,2244,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-980.2166674218448,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.17,32.94,5,1,0,0,12,1,0,1525,0,0,0 +984,1210,2245,2246,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,2.540496589245577,2.324492314781301,1,0,-9,45,0,3,-23.00211849680414,0,0,0,66,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.915473290516554,2.745260266508169,0,0,58.32,50.22,6,1,0,0,2,2,1,750,0,0,0 +984,1210,2246,2245,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,6.396187519946062,6.376964289641517,1,0,-9,45,0,-3,-12.30724521313854,0,0,0,69,2,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.826415686387208,6.280554337669084,0,0,54.79,55.86,6,1,0,0,2,2,1,750,0,0,0 +985,1211,2247,2248,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,49,-9,2,-14.82912293498596,-9,0,0,75,2,4,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,7,1,0,0,2,2,1,735,0,0,0 +985,1211,2248,2247,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,6.763065291115939,6.55395527448533,1,0,-9,49,-9,-2,-82.55767273690003,-9,0,0,77,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.898615205128913,0,0,58.15,52.91,7,1,0,0,2,2,1,735,0,0,0 +986,1212,2249,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,3,8.214060740408856,8.133983487769573,0,3,0,0,0,-9,0,-1093.16685702125,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,44,0,15,1,5,-9,0,9.145266656585477,9.145266656585477,0,0,0,0,0,0,0,0,0,0,1.336482162415725,0,0,0,43.37,49.25,3,1,0,0,2,4,1,951,0,0,0 +986,1213,2250,-9,2249,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.391769262093099,8.343853140227749,0,3,0,0,0,-9,0,-1048.023201671382,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,58,41,15,1,5,-9,1,10.30442618446189,10.30442618446189,0,0,0,0,0,0,0,0,0,0,3.397274671302899,0,0,0,43.73,59.7,5,1,0,0,2,5,1,150,0,0,0 +987,1214,2251,2252,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,2,5.969360243396737,6.099507340498087,0,2,0,-9,9,0,1,86.86342041894493,0,0,1,38,3,4,1,-9,-9,2019,1,1,32,11,5,5,15,1,11,1,0,11.19550043521064,11.19550043521064,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.109999999999999,64.2,2,1,0,0,4,3,0,694.3333333333334,0,0,0 +987,1214,2252,2251,-9,-9,1,1,1,38,1,0,1,0,3,-9,2,1,0,4,8.542954161801303,8.115990032018091,0,2,0,-9,9,0,-1,-78.32703326229593,0,0,0,39,2,2,1,-9,-9,2019,1,2,8,0,53,53,15,1,0,1,0,7.170703233981812,7.170703233981812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,50.73,5,1,0,0,4,3,0,694.3333333333334,0,0,0 +987,1214,2253,-9,2251,2252,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.097433389497,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,0,694.3333333333334,0,0,0 +988,1215,2254,2256,-9,-9,2,1,0,36,1,0,1,0,1,-9,3,3,0,4,0,0,0,2,0,-9,10,0,-2,5.025224865837993,0,0,1,38,1,4,1,2,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.12089397875008,3,51.47,53.17,4,3,1,1,8,5,1,722.6666666666666,0,0,0 +988,1215,2255,-9,2254,2256,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.0197367394413,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,5,1,722.6666666666666,0,0,0 +988,1215,2256,2254,-9,-9,1,1,1,38,1,0,1,0,1,-9,2,1,0,4,8.860003986418763,9.228350868185426,0,2,0,-9,10,0,2,64.48562910125436,0,0,0,36,1,4,3,2,2,2019,2,2,6,0,47,38,15,1,0,3,0,20.85035266227959,20.85035266227959,0,0,0,0,0,0,0,1,1,0,0,0,3.438542380094908,3,57.16,56.15,6,3,0,0,8,5,1,722.6666666666666,0,0,0 +989,1216,2257,-9,-9,-9,1,1,1,19,2,0,0,0,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-937.6101742158176,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.23,60.39,3,1,0,1,6,1,0,227,0,0,0 +990,1217,2258,2259,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,2,8.553545907325777,8.381364558002543,0,2,0,-9,10,0,12,39.32569391101896,0,0,0,38,2,4,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,10.90849926782449,10.90849926782449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,6,1,0,0,2,4,1,1090.666666666667,0,0,0 +990,1217,2259,2258,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,4,8.308976380693654,8.293334505897704,0,2,0,-9,10,0,-12,75.072297734137,0,0,1,50,2,2,1,-9,-9,2019,1,1,13,1,30,17,15,1,1,1,0,16.60906287181998,16.60906287181998,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.75,54.56,6,1,0,0,2,4,1,1090.666666666667,0,0,0 +990,1217,2260,-9,2259,2258,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.7745243315458,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,4,1,1090.666666666667,0,0,0 +991,1218,2261,2262,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,3,7.905449393476423,8.663211452175556,0,1,0,-9,4,0,3,152.1969455795558,0,0,0,55,2,4,1,-9,-9,2019,1,1,11,0,50,50,15,1,0,1,0,7.702526399475559,7.702526399475559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.84,34,6,1,0,0,5,4,1,856,0,0,0 +991,1218,2262,2261,-9,-9,1,1,0,55,1,0,0,0,2,-9,1,1,0,4,7.196292839977829,7.264042399960012,0,1,0,-9,4,0,-3,-3.184147547226722,0,0,0,58,2,3,1,3,3,2019,1,2,8,0,35,40,15,1,0,1,0,3.817687029537681,3.817687029537681,0,0,0,0,0,0,0,0,0,0,4.167499105283371,0,0,0,54.2,57.49,6,1,0,0,5,4,1,856,0,0,0 +992,1219,2263,2264,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,48,0,1,-139.0565856657753,0,0,0,66,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,7,1,0,0,7,3,1,1133.5,0,0,0 +992,1219,2264,2263,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,3,8.142782943480363,8.186753501448628,0,1,0,-9,6,0,-1,68.44614009405254,0,0,0,67,3,5,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,4,0,8.88289805201374,8.88289805201374,0,0,0,0,0,0,0,1,1,0,7.087766440578917,0,0,0,53,47,5,1,0,0,7,3,1,1133.5,0,0,0 +993,1220,2265,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,3,8.03601362738034,7.984925018400602,0,3,0,-9,0,0,0,-1084.716029386624,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,20,9,37,37,15,1,9,-9,0,8.490044523631086,8.490044523631086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.86,55.1,2,2,0,1,9,4,0,331,0,0,0 +994,1221,2266,-9,-9,2267,2,1,0,11,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-966.6516917396549,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,1,0,0,2,3,1,607.5,0,0,0 +994,1221,2267,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,2,0,7.272877999216353,7.60324075143805,3,0,0,0,-9,0,-1090.904492192305,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.436487489128549,6.619594672811322,0,0,49.54,41.21,6,1,0,0,2,3,1,607.5,0,0,0 +995,1222,2268,2269,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,5.371245362438954,5.336198691550461,1,0,-9,4,0,-4,-62.97384377821631,0,0,0,67,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.109639829131858,5.30948591169199,0,0,58.32,50.22,7,1,0,0,5,2,0,603,0,0,0 +995,1222,2269,2268,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,7.340370969223223,6.932049085527434,1,0,-9,4,0,4,-51.42338010477417,-9,0,0,63,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.128441134391861,0,0,52,47,5,1,0,0,5,2,0,603,0,0,0 +996,1223,2270,2273,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,4,8.405006234917922,8.106860727064154,0,2,0,-9,9,0,5,127.2790606489589,0,0,0,48,2,4,1,2,3,2019,1,2,6,0,50,49,15,1,0,1,0,8.97121598358509,8.97121598358509,0,0,0,0,0,0,0,1,1,0,1.715427014588596,0,0,0,60.13,49.27,6,1,0,0,7,4,1,1002.25,0,0,0 +996,1223,2271,-9,2273,2270,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-855.8714013435565,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1002.25,0,0,0 +996,1223,2272,-9,2273,2270,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.579731504333,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,1,1002.25,0,0,0 +996,1223,2273,2270,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,4,8.71683327444317,8.413969010555213,0,2,0,-9,9,0,-5,77.68749612563764,0,0,0,53,2,4,1,2,2,2019,1,1,9,0,39,39,15,1,0,1,0,22.41162151263017,22.41162151263017,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,7,4,1,1002.25,0,0,0 +997,1224,2274,2275,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,7.687479192969314,7.665768460650562,1,0,-9,45,0,-1,-73.95873485241796,0,0,0,72,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.059929302831973,7.830866707507242,0,0,50.35,47.07,5,1,0,0,10,3,1,1018,0,0,0 +997,1224,2275,2274,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,45,0,1,-74.00051947534996,0,0,0,71,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.87910731155471,0,0,0,48.28,53.42,6,1,0,0,10,3,1,1018,0,0,0 +998,1225,2276,-9,-9,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,5.333089505845649,5.901690247644059,3,0,0,0,-9,0,-1000.663965032721,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.696654990341857,0,0,51.24,58.84,6,1,0,0,9,2,1,703,0,0,0 +999,1226,2277,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,1,1,0,5,6.146115460622438,6.341738908206675,0,3,0,0,0,-9,0,-889.5291685019689,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,7,20,15,1,0,-9,0,8.625164794809804,8.625164794809804,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,5,1,0,0,10,2,0,848,0,0,0 +1000,1227,2278,-9,2280,2279,2,1,0,19,2,0,0,0,2,-9,2,1,0,5,6.753220671581672,7.042555362332835,0,3,0,0,0,-9,0,-1059.735462915797,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,20,25,15,1,0,-9,1,5.425459829794271,5.425459829794271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,4,2,1,3264,0,0,0 +1000,1228,2279,2280,-9,-9,3,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.878866630201115,8.981921644778316,6.313077684101692,1,0,-9,5,0,5,-149.9659903011001,0,0,0,42,2,5,1,-9,-9,2019,1,1,12,1,49,49,15,1,1,1,0,19.06684959283387,19.06684959283387,0,0,0,0,0,0,0,1,1,0,6.876462022040409,0,0,0,46.39,60.99,5,1,0,0,4,5,1,212,0,0,0 +1000,1228,2280,2279,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,5,8.308522509538667,8.323645285666595,0,1,0,-9,5,0,-5,-100.1073382989631,0,0,1,47,2,4,1,2,3,2019,1,3,6,0,44,37,15,1,0,1,0,9.260674865644352,9.260674865644352,0,0,0,0,0,0,0,1,1,0,0,0,0,3,56.72,58.13,7,1,0,0,4,5,1,212,0,0,0 +1001,1229,2281,2282,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.146367546982583,7.751982486450233,1,0,-9,5,0,6,54.18705042148564,0,0,0,65,1,4,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.762353956470175,7.773542408049584,0,0,57.16,56.15,7,1,0,0,9,3,1,570.5,0,0,0 +1001,1229,2282,2281,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,4,.2525820007610255,.2144440425939439,0,1,0,-9,5,0,-6,137.5469778544199,0,0,0,71,1,4,3,2,2,2019,2,2,8,0,24,30,15,1,0,4,0,.0015223101599183,.0015223101599183,0,0,0,0,0,0,0,1,1,0,5.5052393885888,0,0,0,56.57,57.78,7,1,0,0,9,3,1,570.5,0,0,0 +1001,1230,2283,-9,-9,-9,3,1,1,89,3,0,0,0,3,-9,4,3,0,2,0,5.978517939674577,6.204535483767488,3,0,0,0,-9,0,-1016.123573157065,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.354515256043525,0,0,42.59,26.48,6,1,0,0,9,2,1,1088,0,0,0 +1002,1231,2284,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-981.4986360969012,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.91,42.65,4,1,0,1,4,1,0,743,0,0,0 +1003,1232,2285,2286,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,6.917541826037817,6.791524176555842,1,0,-9,54,0,3,-34.43951723002613,0,0,0,73,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.592979923001959,7.133928756227686,0,0,56,52,7,1,0,0,10,2,1,498,0,0,0 +1003,1232,2286,2285,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,54,0,-3,22.38530824396638,0,0,0,76,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62.88,38.47,7,1,0,0,10,2,1,498,0,0,0 +1004,1233,2287,2288,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,4,6.858317373469569,7.472711748715017,6.331032397075643,1,0,-9,7,0,-1,116.1293482649811,0,0,0,67,2,3,1,3,3,2019,1,1,6,0,14,11,15,1,0,1,0,6.054351532513651,6.054351532513651,0,0,0,0,0,0,0,1,1,0,1.37885190856399,6.213136147778321,0,0,57.16,56.15,6,1,0,0,10,4,1,1200,0,0,0 +1004,1233,2288,2287,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,3,8.491472026167839,8.220872530032141,0,1,0,-9,7,0,1,3.946221575505594,0,0,0,66,2,4,1,-9,-9,2019,1,2,10,1,40,40,15,1,1,1,0,8.299042107396007,8.299042107396007,1,0,8.88606510106192,0,4.398944963858369,0,0,1,1,0,3.749962434463187,0,0,0,55.77,39.23,5,1,0,0,10,4,1,1200,0,0,0 +1005,1234,2289,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,7.675909157977209,7.806525490522668,6.27755607409824,3,0,0,0,-9,0,-884.5765573357397,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,32,32,15,1,0,-9,0,7.725760652450888,7.725760652450888,0,0,0,0,0,0,0,1,1,0,6.281450871033837,0,7.307230636791868,3,57.01,45.22,5,1,0,0,12,3,1,1923,0,0,0 +1005,1235,2290,-9,2289,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,5,8.132892081778538,8.59042936056138,0,3,0,0,0,-9,0,-957.3106531287798,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,8,15,1,0,-9,1,12.07770628052633,12.07770628052633,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,12,4,1,482,0,0,0 +1005,1236,2291,-9,2289,-9,3,1,0,22,2,0,0,0,2,0,7,2,0,2,7.684662210279744,7.370157270520038,0,3,0,0,0,-9,0,-1115.18182925762,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,18,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.41,49.46,6,1,0,0,12,3,1,114,0,0,0 +1006,1237,2292,2293,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.947135938528743,8.093039988921346,0,1,0,-9,6,0,-8,63.82315200232435,0,0,0,67,2,5,1,3,3,2019,1,2,4,0,33,32,15,1,0,1,0,12.06584515782478,12.06584515782478,0,0,0,0,0,0,0,1,1,0,3.088928865955043,0,0,3,54.79,55.86,7,1,0,0,8,4,1,355.5,0,0,0 +1006,1237,2293,2292,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,5,6.94117181558159,6.986938053482982,0,1,0,-9,6,0,8,68.64383962326244,0,0,0,59,2,4,1,3,3,2019,1,1,6,0,40,40,15,1,0,1,0,3.654715863738131,3.654715863738131,0,0,0,0,0,0,0,1,1,0,.4834894633877792,0,0,0,41.07,60.93,6,1,0,0,8,4,1,355.5,0,0,0 +1007,1238,2294,2295,-9,-9,1,1,1,39,1,0,0,0,1,-9,1,1,0,4,9.347396756100874,9.827614021761036,0,1,0,-9,9,0,2,-13.64804161309169,0,0,0,37,1,4,1,2,2,2019,1,2,11,0,35,35,15,1,0,1,0,51.47192821033941,51.47192821033941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.26,59.43,6,1,0,0,8,5,1,818.5,0,0,0 +1007,1238,2295,2294,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,4,9.420186490661024,9.363964130490396,0,1,0,-9,9,0,-2,-99.53759314512615,-9,0,1,39,1,4,1,2,2,2019,1,1,12,2,58,0,15,1,2,1,0,27.09882055415155,27.09882055415155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,58.99,6,1,0,0,8,5,1,818.5,0,0,0 +1008,1239,2296,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,2,8.913566680620411,9.060585629172495,4.408308755520082,3,0,0,0,-9,0,-976.3259212812691,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.494789236035657,4.254810249756574,72.30978535402588,3,64.95,13.6,6,1,0,0,9,5,1,240,0,0,0 +1009,1240,2297,-9,2298,2300,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.9844916961167,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,1553.4,0,0,0 +1009,1240,2298,2300,-9,-9,3,1,0,31,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,3,0,-12,62.17319650692276,0,0,1,43,2,4,1,-9,-9,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.8884577104783,3,51.9,53.61,5,3,0,0,8,3,1,1553.4,0,0,0 +1009,1240,2299,-9,2298,2300,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.5259265665809,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,1553.4,0,0,0 +1009,1240,2300,2298,2302,-9,1,1,1,43,1,0,3,0,2,-9,1,1,0,4,8.886784322330536,9.013754357368283,0,2,0,-9,3,0,12,-121.3373066201787,0,0,0,31,3,3,3,2,2,2019,2,3,12,0,40,50,15,1,0,3,0,16.23491291700461,16.23491291700461,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,3,0,0,8,3,1,1553.4,0,0,0 +1009,1240,2301,-9,2298,2300,6,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-875.6298997953909,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,3,1,1553.4,0,0,0 +1009,1241,2302,-9,-9,-9,2,1,0,77,3,0,3,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1050.768141456274,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.42,40.27,6,3,0,0,8,1,1,234,0,0,0 +1010,1242,2303,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,5,8.650132107755454,8.664756875627745,0,4,0,0,0,-9,0,-1041.463979407457,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,52,44,15,1,0,-9,0,14.33560640701252,14.33560640701252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,8,4,1,234,0,0,0 +1010,1243,2304,-9,2303,2305,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-982.6851407164124,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,3,1,689.6666666666666,0,0,0 +1010,1243,2305,-9,-9,-9,2,1,1,49,3,0,2,0,2,-9,2,1,0,4,8.094733690154722,7.790208598827002,0,4,0,0,0,-9,0,-1096.783543206163,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,36,15,1,1,-9,0,12.49168772997571,12.49168772997571,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,3,1,689.6666666666666,0,0,0 +1010,1243,2306,-9,2303,2305,5,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1001.286086442814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,2,0,0,8,3,1,689.6666666666666,0,0,0 +1010,1244,2307,-9,2303,2305,3,1,0,19,2,0,2,0,2,1,2,1,0,3,7.153356194191375,6.88795873512795,0,3,0,0,0,-9,0,-1020.376375411648,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,7,24,0,15,1,7,-9,1,6.472449867448089,6.472449867448089,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.14,61.61,4,2,0,0,8,2,1,1250,0,0,0 +1011,1245,2308,-9,2309,2310,4,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.1965645578584,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,13,2,0,648.6666666666666,0,0,0 +1011,1245,2309,2310,-9,-9,2,1,0,42,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,24,0,-4,57.19324683972887,0,0,1,46,2,4,1,3,3,2019,3,1,25,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.92,30.46,1,1,0,0,13,2,0,648.6666666666666,0,0,0 +1011,1245,2310,2309,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,4,7.524092447347908,7.729360693928396,0,2,0,-9,24,0,4,-62.46235658464946,0,0,0,42,3,1,3,2,2,2019,2,2,11,2,40,40,15,1,2,3,0,5.641836509651088,5.641836509651088,0,0,0,0,0,0,0,1,1,0,0,0,77.69214660894355,1,45.91,59.89,6,1,0,0,13,2,0,648.6666666666666,0,0,0 +1011,1246,2311,-9,2309,2310,3,1,0,21,2,0,1,0,1,1,2,1,0,2,7.796604921463186,7.477831996515785,0,3,0,0,0,-9,0,-1059.062289136774,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,1,35,0,15,1,1,-9,1,5.556321879123316,5.556321879123316,0,0,0,0,0,0,0,1,1,0,0,0,.1511317664111536,3,58.56,46.45,6,1,0,0,13,3,0,274,0,0,0 +1012,1247,2312,2313,-9,-9,1,1,0,44,1,0,1,0,2,-9,1,1,0,4,7.929315998642193,7.845294062949863,0,2,0,-9,9,0,1,73.61984195825369,0,0,1,43,1,3,1,3,1,2019,1,2,6,0,40,40,15,1,0,1,0,8.20344635091028,8.20344635091028,0,0,0,0,0,0,0,1,1,0,2.658618166405514,0,0,0,57.16,56.15,6,1,0,0,12,5,1,467.3333333333333,0,0,0 +1012,1247,2313,2312,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,3,9.022736106645391,9.025804514728666,0,2,0,-9,9,0,-1,15.93445074257436,0,0,0,44,2,4,1,-9,-9,2019,1,1,35,12,48,43,15,1,12,1,0,27.45751763519774,27.45751763519774,0,0,0,0,0,0,0,1,1,0,4.130161498315053,0,0,0,20.23,65.13,3,1,0,0,12,5,1,467.3333333333333,0,0,0 +1012,1247,2314,-9,2312,2313,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-872.3726036165417,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,5,1,467.3333333333333,0,0,0 +1013,1248,2315,-9,2319,2318,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.046899145713,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,1,0,857.6,0,0,0 +1013,1248,2316,-9,2319,2318,3,1,0,12,2,0,3,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-938.8475224854208,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,3,2,0,1,8,1,0,857.6,0,0,0 +1013,1248,2317,-9,2319,2318,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.3722471687809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,1,0,857.6,0,0,0 +1013,1248,2318,2319,-9,-9,2,1,1,43,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,7,0,6,0,0,0,0,37,2,1,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,6,2,1,0,8,1,0,857.6,0,0,0 +1013,1248,2319,2318,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,1,0,0,0,2,0,-9,7,0,-6,0,0,0,1,43,2,3,3,2,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.29,36.18,6,1,0,0,8,1,0,857.6,0,0,0 +1014,1249,2320,2321,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,6.802423785181431,7.016666663913681,1,0,-9,46,0,-1,-17.79897563951412,0,0,0,65,1,3,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.127148678440353,0,0,53.21,36.79,5,1,0,0,12,2,1,560,0,0,0 +1014,1249,2321,2320,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,6.165140151941044,6.504246114556889,1,0,-9,46,0,1,-37.23596121112203,0,0,0,64,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.884973309614211,6.480930223685579,0,0,61.28,48.88,7,1,0,0,12,2,1,560,0,0,0 +1015,1250,2322,2324,-9,-9,1,1,1,49,1,0,2,0,1,-9,6,3,0,5,0,7.295007877479854,7.656269271771144,2,0,-9,14,0,4,-24.09615734483643,0,0,0,45,1,5,1,2,2,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.864233463246102,7.2440657640806,0,0,57.46,56.16,6,1,0,0,10,4,1,930,0,0,0 +1015,1250,2323,-9,2324,2322,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.779251423028,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,10,4,1,930,0,0,0 +1015,1250,2324,2322,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,5,8.882790758215002,8.942294046474801,0,2,0,-9,15,0,-4,56.71850851826115,0,0,0,49,1,5,3,2,2,2019,2,1,9,2,34,23,15,1,2,3,0,25.29078878493988,25.29078878493988,0,0,0,0,0,0,0,0,0,0,3.858194230442088,0,0,0,51.67,60.18,6,1,0,0,10,4,1,930,0,0,0 +1015,1250,2325,-9,2324,2322,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.445151981817,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,10,4,1,930,0,0,0 +1016,1251,2326,2327,-9,-9,2,1,0,21,1,0,0,0,2,-9,2,1,0,2,6.786354959871677,6.791130672758221,0,1,0,-9,1,-9,-8,25.6678419921985,-9,1,1,29,2,2,3,-9,-9,2019,2,1,28,10,16,0,15,1,10,3,0,7.301615147281122,7.301615147281122,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.66,35.2,3,1,0,0,2,2,0,391.5,0,0,0 +1016,1251,2327,2326,-9,-9,1,1,1,29,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,1,1,-9,8,29.80555655444301,0,1,0,21,2,2,1,2,2,2019,3,2,11,0,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,37.32,5,1,1,0,2,2,0,391.5,0,0,0 +1017,1252,2328,2329,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,5.703877639168053,6.029206549137104,1,0,-9,5,0,-2,23.70848384157723,0,0,0,71,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.73495914574765,6.081213481728439,16.83833873955436,3,60.52,53.2,7,1,0,0,10,4,1,485.5,0,0,0 +1017,1252,2329,2328,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,8.647829811792429,8.360936555441707,1,0,-9,5,0,2,41.7012268421009,0,0,0,69,2,4,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.944850885494216,8.676235803444893,0,0,59.53,56.44,7,1,0,0,10,4,1,485.5,0,0,0 +1018,1253,2330,-9,2332,2331,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.3437111357154,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,0,1505.333333333333,0,0,0 +1018,1253,2331,2332,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,5,8.31955469432117,8.539326273276076,0,2,0,-9,9,0,2,79.99555403264914,0,0,0,49,1,4,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,15.21378101034373,15.21378101034373,0,0,0,0,0,0,0,1,1,0,4.217149532046529,0,0,0,43.92,62.31,6,1,0,0,6,4,0,1505.333333333333,0,0,0 +1018,1253,2332,2331,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,4,8.17684371164472,7.928924532156062,0,2,0,-9,9,0,-2,-81.87457778320233,0,0,0,51,2,5,1,2,2,2019,1,1,13,1,41,38,15,1,1,1,0,10.50895248024434,10.50895248024434,0,0,0,0,0,0,0,1,1,0,7.769410748291852,0,0,0,35.73,63.1,6,1,0,0,6,4,0,1505.333333333333,0,0,0 +1019,1254,2333,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,1,1,0,4,8.211993549854309,8.162819135213098,0,3,0,0,0,-9,0,-945.7206764315556,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,25,25,15,1,0,-9,0,14.17877989346982,14.17877989346982,0,0,0,0,0,0,0,0,0,0,4.708688702277697,0,0,0,58.15,52.91,6,1,0,0,12,4,1,1074,0,0,0 +1020,1255,2334,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,8,3,1,1,0,5.975666305728594,6.548224952681888,4,0,0,0,-9,0,-1014.727544028212,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.442403148243146,0,4.415481719911321,3,54.19,26.02,4,1,0,0,6,2,1,794,0,0,0 +1020,1256,2335,-9,2334,-9,2,1,0,22,2,0,1,0,2,0,7,2,0,4,5.982055143221962,6.244700641472581,0,3,0,0,0,-9,0,-998.0192614476846,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.79,55.86,5,1,0,0,6,2,1,761,0,0,0 +1020,1257,2336,-9,2334,-9,3,1,0,18,2,0,1,1,2,0,7,2,0,4,5.869635806919721,6.114948570494255,0,3,0,0,0,-9,0,-966.215834947848,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.578596469287749,0,1.002663909103338,3,51.49,57.57,6,1,0,0,6,2,1,726,0,0,0 +1021,1258,2337,2338,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,5,0,0,0,2,0,-9,5,0,-5,-26.93520939295722,0,1,1,33,2,5,1,-9,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4392005139405608,0,0,0,60.02,56.42,7,1,0,0,4,4,1,578,0,0,0 +1021,1258,2338,2337,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,5,8.597619780806923,8.629142316252231,0,2,0,-9,5,0,5,.4529557581056949,0,0,0,28,1,5,1,2,2,2019,1,2,6,0,37,49,15,1,0,1,0,13.9632677715421,13.9632677715421,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,4,4,1,578,0,0,0 +1021,1258,2339,-9,2337,2338,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.128121957308,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,578,0,0,0 +1022,1259,2340,2341,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.296561955880935,6.588957312876159,1,0,-9,51,0,3,-95.63793524480326,0,0,0,72,2,3,3,2,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.724669181367461,6.16934970316749,0,0,47.31,37.56,3,1,0,0,2,3,1,356,0,0,0 +1022,1259,2341,2340,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,7.865958521405075,7.68489405421044,1,0,-9,51,0,-3,14.29762197033546,0,0,0,75,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.084058596654802,7.465565678946714,20.04877957037604,1,48.85,51.81,6,1,0,0,2,3,1,356,0,0,0 +1023,1260,2342,2343,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,1,0,6.822112187190823,7.103748249267919,1,0,-9,42,0,0,-19.97115424949401,0,0,0,64,1,5,3,3,2,2019,4,2,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.330495542280791,7.188646904724243,6.778682492011255,3,45.41,10.82,6,1,0,0,12,4,1,675.5,0,0,0 +1023,1260,2343,2342,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,5,0,8.158579795577111,8.23296885524989,1,0,-9,6,0,0,-56.85411156626412,0,0,0,64,1,1,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.215531587902181,9.294436992759643,2,52.38,55.95,6,1,0,0,12,4,1,675.5,0,0,0 +1024,1261,2344,2345,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,7.588757953727546,7.693274619394598,1,0,-9,42,0,-2,105.8412110345359,0,0,0,64,3,4,1,2,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.067741385062796,7.606006652606175,0,0,59.87,26.62,6,1,0,0,9,5,1,1272.5,0,0,0 +1024,1261,2345,2344,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,4,8.734989404544216,8.602452726263683,0,1,0,-9,42,0,2,39.72586360034614,0,0,0,62,2,3,3,2,2,2019,2,1,6,0,40,40,15,1,0,4,0,14.68728797654566,14.68728797654566,0,0,0,0,0,0,0,0,0,0,0,0,2.893643304538929,3,59.14,52.5,7,1,0,0,9,5,1,1272.5,0,0,0 +1025,1262,2346,-9,-9,-9,1,1,0,84,3,0,1,0,3,-9,4,3,0,1,0,5.471635609966881,5.588566227770213,4,0,0,0,-9,0,-978.354243422434,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.1009762477737374,5.600118757833977,0,3,47.59,29.43,6,1,0,0,9,2,1,965,0,0,0 +1026,1263,2347,2348,-9,-9,2,1,1,58,1,0,0,0,3,-9,1,1,0,3,8.355273177370911,8.445527623109992,0,1,0,-9,5,0,2,-8.296078939896493,0,0,0,56,1,4,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,10.83459143816846,10.83459143816846,0,0,0,0,0,0,0,0,0,0,8.560431571835077,0,0,0,56.19,36.03,4,1,0,0,10,5,0,445.5,0,0,0 +1026,1263,2348,2347,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,4,9.739885235601209,9.727373209142053,0,1,0,-9,5,0,-2,38.82018394210456,0,0,0,58,3,3,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,43.33971049174899,43.33971049174899,0,0,0,0,0,0,0,0,0,0,6.38134506113789,0,.0432591250112129,2,57.16,56.15,5,1,0,0,10,5,0,445.5,0,0,0 +1027,1264,2349,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,4.327432148725696,4.446256680623728,3,0,0,0,-9,0,-1012.704114085839,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.733341405655351,4.839283461575969,0,0,48.23,27.99,5,1,0,0,10,2,0,261,0,0,0 +1028,1265,2350,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,4,9.296897356563621,9.10244609727452,0,3,0,0,0,-9,0,-953.860941213857,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,43,15,1,0,-9,0,22.49687089698602,22.49687089698602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,395,0,0,0 +1029,1266,2351,-9,2352,2353,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.668655021619,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,1165.75,0,0,0 +1029,1266,2352,2353,-9,-9,1,1,0,35,1,0,2,0,2,0,7,2,0,4,7.305771389264241,6.696832807682007,0,2,0,-9,12,0,-5,-73.21925827251196,-9,0,1,40,2,3,1,2,2,2019,3,2,11,2,18,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,9,4,1,1165.75,0,0,0 +1029,1266,2353,2352,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,3,8.885052904766267,8.991797929303832,0,2,0,-9,6,0,5,65.54086994030098,0,0,0,35,2,4,2,-9,-9,2019,2,1,12,1,68,60,15,1,1,2,0,11.94406498388408,11.94406498388408,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,1,9,4,1,1165.75,0,0,0 +1029,1266,2354,-9,2352,2353,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.5318283927979,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,1165.75,0,0,0 +1030,1267,2355,-9,2358,2357,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.7926004116246,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,768.25,0,0,0 +1030,1267,2356,-9,2358,2357,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.9874009560806,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,768.25,0,0,0 +1030,1267,2357,2358,-9,-9,1,1,1,34,1,0,2,0,3,-9,2,1,0,3,8.54651865828597,8.772707331947991,0,2,0,-9,7,0,-2,-63.28189989206121,0,0,0,36,1,2,1,2,2,2019,1,2,10,0,42,40,15,1,0,1,0,11.19115985738878,11.19115985738878,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,52.94,5,1,0,0,6,5,1,768.25,0,0,0 +1030,1267,2358,2357,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,2,8.516458983359943,8.666870045313226,0,2,0,-9,7,0,2,-61.79804111840175,0,0,1,34,3,3,1,-9,-9,2019,1,1,16,6,48,48,15,1,6,1,0,11.73848410704903,11.73848410704903,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.26,30.11,6,1,0,0,6,5,1,768.25,0,0,0 +1031,1268,2359,2360,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,3,7.673534216761871,7.751165573593858,0,1,0,-9,19,0,7,66.81107253668488,0,0,0,41,2,3,1,3,3,2019,1,2,22,10,42,0,15,1,10,1,0,5.003335301654942,5.003335301654942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.29,40.24,2,1,0,1,4,4,0,231,0,0,0 +1031,1268,2360,2359,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,3,7.44087604452129,7.860985969344314,0,1,0,-9,18,0,-7,-95.67531028808492,0,0,0,48,1,3,1,-9,-9,2019,1,1,27,11,40,40,15,1,11,1,0,8.048824293869327,8.048824293869327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.72,56.81,3,1,0,0,4,4,0,231,0,0,0 +1032,1269,2361,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-861.3482326077674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.21,48.13,6,1,1,1,10,1,0,192,0,0,0 +1033,1270,2362,-9,2364,2365,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.2948811893731,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,2,1,559,0,0,0 +1033,1270,2363,-9,2364,2365,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.59528343569,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,2,1,559,0,0,0 +1033,1270,2364,2365,-9,-9,1,1,0,27,1,1,2,0,2,-9,2,1,0,4,7.986166335849146,7.821229912045185,0,2,0,-9,5,0,-13,53.89478494388628,0,1,1,40,2,3,3,-9,-9,2019,2,2,6,0,30,24,15,1,0,3,0,8.017800139776629,8.017800139776629,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.9,51.17,6,3,0,0,6,2,1,559,0,0,0 +1033,1270,2365,2364,-9,-9,2,1,1,40,1,1,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,5,0,13,.9034856587905491,0,0,0,27,2,4,1,-9,-9,2019,3,1,17,5,0,17,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.924247658006223,3,39.59,46.91,5,3,1,0,6,2,1,559,0,0,0 +1034,1271,2366,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,2,0,5.8377689666571,5.684382868411505,3,0,0,0,-9,0,-1046.57840007462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.195591938787575,5.885999424985941,0,0,38.91,36.56,5,1,0,0,11,2,1,2040,0,0,0 +1035,1272,2367,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,1,1,0,3,8.540389324657834,8.65427925784755,5.557117822492692,4,0,0,0,-9,0,-989.8207980066705,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,5,20,0,15,1,5,-9,0,26.19324652096849,26.19324652096849,0,0,0,0,0,0,0,1,1,0,5.500896163278777,0,0,0,44.46,41.84,6,1,0,0,9,3,0,688,0,0,0 +1035,1272,2368,-9,2367,-9,2,1,1,16,2,0,2,1,3,-9,7,2,0,4,0,5.071045605906073,4.926387886426104,4,0,0,0,-9,0,-1028.15486607631,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.814329456159332,0,0,0,10.11,69.88,5,1,0,0,9,3,0,688,0,0,0 +1035,1272,2369,-9,2367,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1039.880185238022,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,3,0,688,0,0,0 +1036,1273,2370,2371,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,7.883702879818171,7.882564125708302,1,0,-9,7,0,6,46.4744128480483,0,0,0,59,1,4,3,-9,-9,2019,4,1,15,3,0,37,15,4,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.175279282133795,7.988360986194515,0,0,39.52,58.98,3,1,0,0,2,3,1,668,0,0,0 +1036,1273,2371,2370,-9,-9,1,1,0,59,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,10,0,-6,-33.01162058214046,0,0,0,65,1,4,3,2,1,2019,4,2,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.736126728945568,0,0,0,51.83,57.2,6,1,1,0,2,3,1,668,0,0,0 +1037,1274,2372,2375,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,4,7.936573258222743,8.118906188104861,0,2,0,-9,23,0,-1,71.69426231167964,0,0,0,43,1,4,1,3,-9,2019,1,1,10,0,50,50,15,1,0,1,0,6.789223535635482,6.789223535635482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,3,1,1449.25,0,0,0 +1037,1274,2373,-9,2375,2372,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.3688908997042,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,1,1449.25,0,0,0 +1037,1274,2374,-9,2375,2372,3,1,1,17,2,0,3,0,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.173520686307,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.644306973532217,0,0,0,51.77,58.57,7,1,0,0,12,3,1,1449.25,0,0,0 +1037,1274,2375,2372,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,4,7.388271711939166,7.612622613846991,0,2,0,-9,23,0,1,-63.67096825454766,0,0,1,42,2,4,1,3,3,2019,1,2,11,0,28,0,15,1,0,1,0,7.296536558101788,7.296536558101788,0,0,0,0,0,0,0,1,1,0,0,0,36.49506640044861,3,54.2,57.49,2,1,0,0,12,3,1,1449.25,0,0,0 +1038,1275,2376,2377,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.782674402973605,8.125194879133113,0,1,0,-9,5,0,-8,-58.13649200761554,0,0,0,56,2,4,1,-9,-9,2019,1,1,8,0,26,30,15,1,0,1,0,12.22088894015884,12.22088894015884,0,0,0,0,0,0,0,0,0,0,3.638282649967246,0,5.674510990622704,3,51.66,54.88,6,1,0,0,7,4,1,1009,0,0,0 +1038,1275,2377,2376,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.179073237708568,8.500180803070334,0,1,0,-9,5,0,8,-2.142981305511707,0,0,0,48,2,3,1,2,3,2019,1,2,6,0,37,37,15,1,0,1,0,14.20993553064266,14.20993553064266,0,0,0,0,0,0,0,0,0,0,0,0,.8403913746830147,3,58.15,52.91,6,1,0,0,7,4,1,1009,0,0,0 +1038,1276,2378,-9,2376,2377,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.556264174903918,8.161144194593131,0,3,0,0,0,-9,0,-1124.310141377113,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,48,52,15,1,1,-9,1,8.862994925280477,8.862994925280477,0,0,0,0,0,0,0,0,0,0,2.524726985597139,0,0,0,35.91,63.19,6,1,0,0,7,4,1,700,0,0,0 +1039,1277,2379,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,2,7.890612718256872,8.012198319415758,0,3,0,0,0,-9,0,-1037.317520392042,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,0,15,1,0,-9,0,11.53424726885051,11.53424726885051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.38,34.97,4,1,0,0,4,4,0,267,0,0,0 +1040,1278,2380,-9,2382,2383,3,1,1,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1077.83061126569,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,1,0,0,6,5,1,792.6,0,0,0 +1040,1278,2381,-9,2382,2383,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.1175845988,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,6,5,1,792.6,0,0,0 +1040,1278,2382,2383,-9,-9,2,1,0,40,1,0,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-1,-130.4753490399828,0,0,1,41,1,5,1,1,2,2019,3,1,8,1,1,2,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211042437565761,0,0,0,53.39,52.35,6,1,0,0,6,5,1,792.6,0,0,0 +1040,1278,2383,2382,-9,-9,1,1,1,41,1,0,3,0,1,-9,2,1,0,5,9.239575622429514,9.327346062599016,0,2,0,-9,8,0,1,18.73469115586097,0,0,0,40,1,4,3,1,1,2019,2,2,8,0,42,48,15,1,0,3,0,35.01953263936443,35.01953263936443,0,0,0,0,0,0,0,0,0,0,4.929393842122623,0,0,0,54.69,57.47,6,1,0,0,6,5,1,792.6,0,0,0 +1040,1278,2384,-9,2382,2383,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.207568446798,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,792.6,0,0,0 +1041,1279,2385,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.369352293181111,8.368016226385626,0,3,0,0,0,-9,0,-847.3560485243574,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,39,39,15,1,5,-9,0,13.82705459374109,13.82705459374109,0,0,0,0,0,0,0,0,0,0,.7017995832872994,0,0,0,33.49,64.26000000000001,3,1,0,0,8,4,0,2760,0,0,0 +1042,1280,2386,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,3,9.037352761537395,9.006557786110539,5.589483414414053,4,0,0,0,-9,0,-975.7986098564894,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,55,95,15,1,3,-9,0,16.28512763609128,16.28512763609128,0,0,0,0,0,0,0,1,1,0,6.257036765776461,0,0,0,50.6,51,5,1,0,0,12,5,1,228,0,0,0 +1042,1280,2387,-9,2386,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1133.787127787308,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,228,0,0,0 +1043,1281,2388,2389,-9,-9,1,1,0,52,1,0,0,0,3,-9,2,1,0,3,7.56593396072298,8.098587069170737,6.712874958975008,1,0,-9,5,0,3,-77.23400695230117,0,0,0,49,1,3,1,2,2,2019,1,2,13,1,20,20,15,1,1,1,0,12.837127727526,12.837127727526,0,0,0,0,0,0,0,0,0,0,5.927523044707618,6.608493411808001,12.7408086437968,3,39.09,53.39,6,1,0,0,7,5,1,540,0,0,0 +1043,1281,2389,2388,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,3,9.224145305922422,9.315706802274001,0,1,0,-9,5,0,-3,-91.44982611705201,0,0,0,52,3,3,1,-9,-9,2019,1,1,24,12,35,36,15,1,12,1,0,37.79842136373124,37.79842136373124,0,0,0,0,0,0,0,0,0,0,7.946413191990723,0,0,3,41.94,50.7,4,1,0,0,7,5,1,540,0,0,0 +1044,1282,2390,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-966.0724839868827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.84367025758727,0,0,0,48.77,60.16,6,1,0,0,4,1,0,1025,0,0,0 +1045,1283,2391,2392,-9,-9,1,1,1,26,1,0,0,0,1,-9,7,2,0,3,0,0,0,1,0,-9,2,0,2,-93.25468236822202,1,1,0,24,2,4,1,-9,-9,2019,3,2,12,1,0,45,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,3,1,0,0,11,3,0,2949,0,0,0 +1045,1283,2392,2391,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,4,7.430459775307724,7.544505892380936,0,1,0,-9,2,0,-2,139.8081971852187,0,1,1,26,1,3,2,-9,-9,2019,2,1,13,3,33,33,15,1,3,2,0,7.080928704438286,7.080928704438286,0,0,0,0,0,0,0,1,1,0,0,0,3.576541728212393,3,40.83,59.68,7,1,0,0,11,3,0,2949,0,0,0 +1046,1284,2393,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,3,0,4.904034175686474,5.395308358371683,3,0,0,0,-9,0,-1026.197610597786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.455854954540165,0,0,46.68,50.04,6,4,0,0,8,2,0,304,0,0,0 +1047,1285,2394,2395,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,4,0,7.903693020152951,8.218475067024658,1,0,-9,41,0,8,-3.614081467649649,0,0,0,72,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.841365079772301,8.445710727030578,0,0,62.18,33.32,6,1,0,0,5,3,1,453.5,0,0,0 +1047,1285,2395,2394,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,4.593810696579304,4.748095143461538,1,0,-9,40,0,-8,-185.032495521127,0,0,0,80,3,4,3,1,1,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.098248272292972,0,0,0,59.78,35.9,6,1,0,0,5,3,1,453.5,0,0,0 +1048,1286,2396,-9,-9,-9,1,1,1,71,2,0,0,0,1,-9,2,1,0,3,5.370441011918097,7.394385558141281,7.368336462614081,3,0,0,0,-9,0,-1091.646068129524,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,5,0,15,1,0,-9,0,5.402205472359825,5.402205472359825,0,0,0,0,0,0,0,1,1,0,1.123283192869232,7.394602322840251,0,0,61.85,44.55,6,1,0,0,6,3,1,1326,0,0,0 +1049,1287,2397,2398,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,5,7.108114319531964,7.700351936421692,0,1,0,-9,12,-9,-2,-123.0662951592892,-9,0,0,61,2,4,1,-9,-9,2019,1,2,14,5,24,0,15,1,5,1,0,8.762816131345769,8.762816131345769,0,0,0,0,0,0,0,0,0,0,6.121391160343347,0,0,0,44.39,63.4,6,1,0,0,9,5,1,669.5,0,0,0 +1049,1287,2398,2397,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,9.302089846944364,9.638806543823657,6.217267667667124,1,0,-9,1,-9,2,-112.2374031489936,-9,0,0,59,2,5,1,-9,-9,2019,1,1,6,0,42,0,15,1,0,1,0,29.23427967131488,29.23427967131488,0,0,0,0,0,0,0,0,0,0,4.870507264140388,6.292416749228266,0,0,59.53,56.44,7,1,0,0,9,5,1,669.5,0,0,0 +1050,1288,2399,-9,2400,2402,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.080824225753,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,3,0,1030,0,0,0 +1050,1288,2400,2402,-9,-9,2,1,0,32,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-3,84.11786679162174,0,0,1,35,2,3,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.9938442731076,3,45,52,4,1,0,0,7,3,0,1030,0,0,0 +1050,1288,2401,-9,2400,2402,3,1,1,10,2,1,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1152.103397197649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,2,0,0,7,3,0,1030,0,0,0 +1050,1288,2402,2400,-9,-9,1,1,1,35,1,1,2,0,2,-9,2,1,0,3,8.287548711446302,8.535483694784407,0,2,0,-9,4,0,3,69.13784639967503,0,0,0,32,2,3,3,2,2,2019,2,2,15,3,0,45,15,1,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.640225362560835,0,0,0,39.15,41.42,5,1,0,0,7,3,0,1030,0,0,0 +1051,1289,2403,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.810514970604297,8.078886287782909,0,3,0,-9,0,-9,0,-1037.002220207681,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,65,0,15,1,12,-9,0,6.318617031149382,6.318617031149382,0,0,0,0,0,0,0,0,0,0,1.12489356676828,0,0,0,15.08,66.28,2,1,0,0,4,4,0,368,0,0,0 +1052,1290,2404,2405,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,9.008381553467586,9.188199228336877,0,1,0,-9,36,0,-1,38.52779655269211,0,0,0,59,2,5,1,2,2,2019,1,2,7,0,38,48,15,1,0,1,0,30.28677623647563,30.28677623647563,0,0,0,0,0,0,0,0,0,0,3.318097501896502,0,0,0,57.16,56.15,7,1,0,0,4,5,1,382.5,0,0,0 +1052,1290,2405,2404,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,5,7.510304587558064,7.362919545773945,0,1,0,-9,10,0,1,8.17600440052882,0,0,0,58,2,4,1,-9,-9,2019,1,1,7,0,32,9,15,1,0,1,0,5.901766010905219,5.901766010905219,0,0,0,0,0,0,0,0,0,0,3.637212961551196,0,0,0,58.05,54.52,7,1,0,0,4,5,1,382.5,0,0,0 +1053,1291,2406,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,0,6.789392150001956,6.538397674303161,3,0,0,0,-9,0,-1146.006856708824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.485113703344866,0,.9261683675439023,0,1,1,0,0,6.70444376233012,0,0,43.72,19.29,5,1,0,0,6,2,1,445,0,0,0 +1054,1292,2407,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,6.175878420866679,6.235460840178196,3,0,0,0,-9,0,-916.5426246978307,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,1.360700796809653,0,1,1,0,0,5.692677481578858,0,0,36.45,38.99,5,1,0,0,11,2,1,441,0,0,0 +1055,1293,2408,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,2,0,4.461010796749106,4.617463242484964,3,0,0,0,-9,0,-933.6234991409099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.102444859604063,4.635160476794817,0,0,57.74,44.14,6,1,0,0,5,2,0,754,0,0,0 +1056,1294,2409,2410,-9,-9,1,1,1,37,1,1,1,0,2,-9,2,1,0,4,7.952345771828981,7.818746521269923,0,2,0,-9,11,0,0,19.51188713420205,0,0,0,37,2,4,1,2,2,2019,1,2,17,5,42,37,15,1,5,1,0,8.078566652793528,8.078566652793528,0,0,0,0,0,0,0,1,1,0,0,0,7.021783321914308,3,40.77,61.04,4,1,0,0,5,3,1,737.3333333333334,0,0,0 +1056,1294,2410,2409,-9,-9,2,1,0,37,1,1,1,0,2,-9,2,1,0,4,7.257747565006052,7.229944851963784,0,2,0,-9,11,0,0,-44.08513596987729,0,0,1,37,2,4,1,2,2,2019,1,1,11,2,12,13,15,1,2,1,0,14.02039256998317,14.02039256998317,0,0,0,0,0,0,0,1,1,0,0,0,6.93789490547869,3,46.5,58.26,5,1,0,0,5,3,1,737.3333333333334,0,0,0 +1056,1294,2411,-9,2410,2409,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1021.870553740293,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,3,1,737.3333333333334,0,0,0 +1057,1295,2412,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-942.9152205352216,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.34,42.51,7,4,0,0,8,1,1,230,0,0,0 +1058,1296,2413,2415,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,3,7.255599229740676,6.852720707937149,0,2,0,-9,5,0,0,-57.37254950954593,0,0,1,42,2,3,1,-9,-9,2019,1,2,16,4,22,25,15,1,4,1,0,7.494354681661694,7.494354681661694,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,51.63,5,1,0,0,5,5,1,609.6666666666666,0,0,0 +1058,1296,2414,-9,2413,2415,3,1,0,17,2,0,1,1,2,0,7,2,0,4,6.354723934182557,6.564266201064712,0,2,0,0,0,-9,0,-1011.317999250968,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,8,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.66,57.19,6,1,0,0,5,5,1,609.6666666666666,0,0,0 +1058,1296,2415,2413,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,3,8.943378982078768,9.140982418641256,0,2,0,-9,5,0,0,1.772913925740592,0,0,0,42,2,3,1,-9,-9,2019,1,1,11,1,44,42,15,1,1,1,0,18.45860624522031,18.45860624522031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,1,0,0,5,5,1,609.6666666666666,0,0,0 +1059,1297,2416,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,5,7.720910266895353,7.619261438394177,5.978762282673166,3,0,0,0,-9,0,-941.4329649602653,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.39276284914336,0,0,0,57.06,57.76,7,1,0,0,12,3,0,1315,0,0,0 +1060,1298,2417,2418,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,2,7.028607884260436,7.046521420001473,0,2,0,-9,21,0,-1,-95.62566463037183,0,0,0,46,3,4,1,3,3,2019,1,1,17,4,40,40,15,1,4,1,0,2.826313905178306,2.826313905178306,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.92,32.75,5,1,0,0,11,3,1,745.6666666666666,0,0,0 +1060,1298,2418,2417,-9,-9,1,1,0,46,1,0,2,0,3,-9,2,1,0,4,8.313121714999228,8.461458389698119,0,2,0,-9,23,0,1,-13.61383881788401,0,0,0,45,2,2,1,3,3,2019,1,2,14,3,40,38,15,1,3,1,0,9.457682852983016,9.457682852983016,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.6,61.6,4,1,0,0,11,3,1,745.6666666666666,0,0,0 +1060,1298,2419,-9,2418,2417,5,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.7355630027419,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,3,1,745.6666666666666,0,0,0 +1060,1299,2420,-9,2418,2417,3,1,1,20,2,0,2,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-926.5119495771017,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,1,1,11,1,1,1030,0,0,0 +1061,1300,2421,-9,2426,2422,6,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.2748081967056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,2,1,1086.833333333333,0,0,0 +1061,1300,2422,2426,-9,-9,2,1,1,33,1,0,4,0,2,-9,2,1,0,4,7.862279974705455,7.548472847177351,0,2,0,-9,7,0,-3,122.3506781561043,0,0,0,36,2,2,3,-9,-9,2019,2,1,10,0,40,10,15,1,1,3,0,7.260359252544232,7.260359252544232,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,7,2,1,1086.833333333333,0,0,0 +1061,1300,2423,-9,2426,2422,4,1,0,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.0654205871916,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,7,2,1,1086.833333333333,0,0,0 +1061,1300,2424,-9,2426,2422,3,1,1,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.0634166998025,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,7,2,1,1086.833333333333,0,0,0 +1061,1300,2425,-9,2426,2422,5,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1153.419643272477,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,2,1,1086.833333333333,0,0,0 +1061,1300,2426,2422,-9,-9,1,1,0,36,1,0,4,0,2,-9,6,3,0,2,0,0,0,2,0,-9,18,0,3,-20.9764846052852,0,0,1,33,2,4,1,3,2,2019,3,2,2,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,7,3,0,0,7,2,1,1086.833333333333,0,0,0 +1062,1301,2427,2428,-9,-9,2,1,1,52,1,1,1,0,1,-9,1,1,0,5,6.858146729263666,6.988017437021612,0,2,0,-9,1,-9,20,-92.69024942397165,-9,0,0,32,1,5,1,-9,-9,2019,1,1,2,0,40,0,15,1,0,1,0,3.374340977964741,3.374340977964741,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,2,1,1463.666666666667,0,0,0 +1062,1301,2428,2427,-9,-9,1,1,0,32,1,1,1,0,1,-9,5,1,0,5,0,0,0,2,0,1,1,-9,-20,-7.679395923493587,0,0,1,52,1,5,1,2,2,2019,1,2,8,2,0,39,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,2,1,0,0,13,2,1,1463.666666666667,0,0,0 +1062,1301,2429,-9,2428,2427,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-970.9681626216095,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,2,1,1463.666666666667,0,0,0 +1063,1302,2430,2431,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.159507906430278,8.644738093510393,0,1,0,-9,8,0,2,-47.0453668721437,0,0,0,51,2,2,1,2,3,2019,1,2,9,0,38,43,15,1,1,1,0,13.77812256062367,13.77812256062367,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,13,4,1,559,0,0,0 +1063,1302,2431,2430,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,2,7.88738363292226,7.624249088502482,0,1,0,-9,16,0,-2,-92.01750629161604,0,0,0,53,2,4,1,3,3,2019,1,1,13,1,38,37,15,1,1,1,0,7.183519000846943,7.183519000846943,0,0,0,0,0,0,0,1,1,0,3.934271001317108,0,13.86750873003258,3,48.78,48.06,6,1,0,0,13,4,1,559,0,0,0 +1064,1303,2432,-9,-9,-9,1,1,0,87,2,0,0,0,2,-9,4,3,0,4,0,5.327443094894005,5.127672258561162,3,0,0,0,-9,0,-1051.096355057827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.927135175989091,5.372049462643085,0,0,57.16,56.15,7,1,0,0,13,2,1,253,0,0,0 +1065,1304,2433,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,4,0,5.353251955876642,5.137362724219799,3,0,0,0,-9,0,-894.0403056970571,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.417154995687649,0,0,0,46.98,59.35,6,1,0,0,12,2,0,269,0,0,0 +1066,1305,2434,2437,-9,-9,2,1,1,53,1,0,3,0,2,-9,2,1,0,4,7.986356517870136,8.337506432619692,0,2,0,-9,7,0,4,7.611361201080951,-9,0,0,49,2,5,3,-9,-9,2019,2,1,9,0,26,0,15,1,1,3,0,12.58492907848369,12.58492907848369,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,4,2,1,408.5,0,0,0 +1066,1305,2435,-9,2437,2434,8,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.532216161852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,408.5,0,0,0 +1066,1305,2436,-9,2437,2434,6,1,0,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1138.008454300408,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.051053676104496,3,44.14,61.06,6,3,0,0,4,2,1,408.5,0,0,0 +1066,1305,2437,2434,-9,-9,1,1,0,49,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,32,0,-4,65.73674310789525,0,0,0,53,2,4,1,3,3,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.247881787551775,3,44.16,61.04,4,3,0,0,4,2,1,408.5,0,0,0 +1066,1306,2438,-9,2437,2434,3,1,1,29,3,0,3,0,1,-9,2,1,0,4,8.817794014643567,8.520047197255689,0,3,0,0,0,-9,0,-977.7825308246589,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,0,15,1,1,-9,1,18.19252381638861,18.19252381638861,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,3,0,0,4,5,1,919,0,0,0 +1066,1307,2439,-9,2437,2434,4,1,0,25,2,0,3,0,1,-9,2,1,0,3,7.968757111537449,7.780298963298121,0,3,0,0,0,-9,0,-1028.099917866832,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,15,5,37,37,15,1,5,-9,1,7.858418487019547,7.858418487019547,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.81,46.24,5,3,0,0,4,3,1,316,0,0,0 +1066,1308,2440,-9,2437,2434,5,1,0,21,2,0,3,0,2,-9,6,3,0,4,6.094661121724808,6.468227642318776,0,3,0,0,0,-9,0,-1106.575687777006,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,3,0,0,4,2,1,245,0,0,0 +1067,1309,2441,2443,-9,-9,2,1,1,41,1,0,2,0,3,-9,2,1,0,3,6.934488326934796,6.929250043022101,0,2,0,-9,12,0,11,109.8423807332536,0,0,0,30,3,3,3,2,1,2019,2,1,6,0,24,24,15,1,0,3,0,6.586963809242337,6.586963809242337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,4,0,0,8,2,0,432.25,0,0,0 +1067,1309,2442,-9,2443,2441,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.5526342545872,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,2,0,432.25,0,0,0 +1067,1309,2443,2441,-9,-9,1,1,0,30,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,12,0,-11,-142.0082314318109,0,0,1,41,3,3,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.2229721284817,3,60.29,52.11,7,4,0,0,8,2,0,432.25,0,0,0 +1067,1309,2444,-9,2443,2441,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.380505979989,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,2,0,432.25,0,0,0 +1068,1310,2445,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,3,0,7.663551976755026,7.899545385527163,3,0,0,0,-9,0,-922.3635742419569,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.347717788677835,7.619531493606944,0,0,35.93,33.72,3,1,0,0,12,3,1,976,0,0,0 +1069,1311,2446,2447,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,3,8.672322157126409,8.727376725851151,0,2,0,-9,24,0,3,157.2656425372726,0,0,0,44,1,5,1,2,2,2019,1,1,32,12,37,47,15,1,12,1,0,22.5625389225187,22.5625389225187,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.23,65.13,5,1,0,0,1,5,1,1019,0,0,0 +1069,1311,2447,2446,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,5,8.454334093695349,8.924098083400532,0,2,0,-9,24,0,-3,-86.4767087376041,0,0,1,47,1,3,1,2,2,2019,1,2,11,1,34,21,15,1,1,1,0,15.37776145527299,15.37776145527299,0,0,0,0,0,0,0,1,1,0,5.886147863203747,0,0,0,57.06,57.76,6,1,0,0,1,5,1,1019,0,0,0 +1069,1311,2448,-9,2447,2446,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.029631474177,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,1019,0,0,0 +1069,1311,2449,-9,2447,2446,3,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1068.664439324989,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,1,5,1,1019,0,0,0 +1070,1312,2450,2452,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,4,8.488675228018298,8.362245616136713,0,2,0,-9,10,0,0,128.2001673163922,0,0,0,51,2,5,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,10.90182128998742,10.90182128998742,0,0,0,0,0,0,0,1,1,0,.5586228803205846,0,0,0,52.91,55.33,6,1,0,0,6,4,1,638.3333333333334,0,0,0 +1070,1312,2451,-9,2452,2450,3,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1162.166839078671,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,1,0,0,6,4,1,638.3333333333334,0,0,0 +1070,1312,2452,2450,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,5,7.715093199538876,7.680475008563058,0,2,0,-9,10,0,0,161.8702390019409,0,0,0,51,2,4,1,3,2,2019,1,2,9,1,27,25,15,1,1,1,0,8.551292648239098,8.551292648239098,0,0,0,0,0,0,0,1,1,0,0,0,3.689433537159155,3,52.81,56.94,5,1,0,0,6,4,1,638.3333333333334,0,0,0 +1071,1313,2453,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,4,8.738859029952213,8.571691973951632,0,3,0,-9,0,1,0,-765.0099597176833,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,41,40,15,1,1,-9,0,15.03020165769665,15.03020165769665,0,0,0,0,0,0,0,0,0,0,2.248303667409567,0,0,0,46.39,60.99,4,1,0,0,9,5,0,366,0,0,0 +1072,1314,2454,-9,2455,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1043.948253505623,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,2,0,991.3333333333334,0,0,0 +1072,1314,2455,-9,-9,-9,1,1,0,30,3,0,3,0,2,-9,2,1,0,3,7.480161918683316,7.640437171278704,0,4,0,0,0,-9,0,-945.4277931425254,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,20,0,15,1,0,-9,0,12.53192114401598,12.53192114401598,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.61,50.58,7,1,0,0,8,2,0,991.3333333333334,0,0,0 +1072,1314,2456,-9,2455,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-995.6972249231264,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,2,0,991.3333333333334,0,0,0 +1073,1315,2457,-9,2458,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1027.614758474273,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,3,1,1207,0,0,0 +1073,1315,2458,-9,-9,-9,1,1,0,58,3,0,1,0,2,-9,2,1,0,4,7.891625470007883,7.842670123634671,6.162565317022907,4,0,0,0,-9,0,-1050.737767871919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,6,20,24,15,1,6,-9,0,12.65039535716103,12.65039535716103,0,0,0,0,0,0,0,1,1,0,5.682181900832897,0,0,3,38.04,56.72,3,1,0,1,6,3,1,1207,0,0,0 +1074,1316,2459,2460,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.184203267245453,8.513525251519555,7.027773442543282,1,0,-9,42,0,-2,4.936338801239938,0,0,0,63,2,3,3,3,2,2019,2,2,10,0,50,55,15,1,0,3,0,7.930153461471436,7.930153461471436,0,0,0,0,0,0,0,0,0,0,8.021063920622661,7.347415155253321,10.92233528463609,2,50,49,6,1,0,0,9,5,1,1099,0,0,0 +1074,1316,2460,2459,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,3,7.402069121266425,7.195872352230008,0,1,0,-9,42,0,2,113.4332622338148,0,0,0,61,2,3,1,2,2,2019,3,1,22,10,23,25,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.664713183022148,3,38.46,42.03,3,1,0,0,9,5,1,1099,0,0,0 +1075,1317,2461,2463,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,5,0,0,0,2,0,-9,20,0,2,5.340447852435728,0,0,0,42,2,4,1,2,2,2019,1,2,9,1,0,38,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,6,1,0,0,9,3,1,379,0,0,0 +1075,1317,2462,-9,2463,2461,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.8899050027765,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,1,379,0,0,0 +1075,1317,2463,2461,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,4,8.40623294850969,8.004296835859749,0,2,0,-9,20,0,-2,24.67222879409092,0,0,1,44,2,5,1,2,3,2019,1,1,14,3,50,47,15,1,3,1,0,8.542697416465108,8.542697416465108,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.32,61.46,5,1,0,0,9,3,1,379,0,0,0 +1075,1317,2464,-9,2463,2461,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.6663970233377,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,379,0,0,0 +1076,1318,2465,2467,-9,-9,2,1,0,42,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,-7,0,0,0,1,49,1,2,3,2,2,2019,4,1,9,0,0,26,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,1,0,11,1,1,582,0,0,0 +1076,1318,2466,-9,2465,2467,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.203679601009,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,1,1,582,0,0,0 +1076,1318,2467,2465,-9,-9,1,1,1,49,1,0,1,0,1,-9,3,3,0,2,0,0,0,2,0,-9,7,0,7,0,0,0,0,42,2,4,3,2,2,2019,4,2,9,3,0,38,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.59,32.67,4,1,1,1,11,1,1,582,0,0,0 +1077,1319,2468,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,1,1,0,2,7.164743283655051,7.248724164891393,0,3,0,0,0,-9,0,-1030.902998352063,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,30,25,15,1,1,-9,0,5.945543524376843,5.945543524376843,0,0,0,0,0,0,0,0,0,0,.9290004785593818,0,0,0,57.98,29.33,4,1,0,0,12,2,0,2344,0,0,0 +1078,1320,2469,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,5.69738721168828,5.757996017112444,3,0,0,0,-9,0,-975.4173196145429,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.610648018009119,6.107589374892771,0,0,38.5,44.29,3,1,0,0,4,2,1,579,0,0,0 +1079,1321,2470,2472,-9,-9,2,1,1,43,1,0,3,0,1,-9,1,1,0,5,9.321277066255222,9.358491125334371,0,2,0,-9,8,0,5,-90.19551997980945,0,0,0,38,2,4,1,-9,-9,2019,1,1,0,0,35,40,15,1,0,1,0,40.07857141543499,40.07857141543499,0,0,0,0,0,0,0,1,1,0,6.42667085816833,0,0,0,57.06,57.76,6,1,0,0,6,5,1,387.8,0,0,0 +1079,1321,2471,-9,2472,2470,3,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.2535576320548,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,387.8,0,0,0 +1079,1321,2472,2470,-9,-9,1,1,0,38,1,0,3,0,2,-9,1,1,0,4,8.725056800441482,8.669621610621354,0,2,0,-9,8,0,-5,80.53526425177314,0,0,1,43,1,5,1,2,-9,2019,1,2,13,2,35,35,15,1,2,1,0,21.31440144957783,21.31440144957783,0,0,0,0,0,0,0,1,1,0,1.091311738158603,0,0,0,37.75,57.05,6,1,0,0,6,5,1,387.8,0,0,0 +1079,1321,2473,-9,2472,2470,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.1163623991529,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,387.8,0,0,0 +1079,1321,2474,-9,2472,2470,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-895.0696481176943,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,5,1,387.8,0,0,0 +1080,1322,2475,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,4,3,0,2,.8775398048017972,7.982459919932813,8.346713407932116,3,0,0,0,-9,0,-960.6954630551115,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,18,20,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.929654241901888,8.139439694582851,9.740192472811339,3,41.02,49.19,5,1,0,0,9,4,1,1310,0,0,0 +1081,1323,2476,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,3,7.700012877112864,8.096586927477501,0,3,0,0,0,-9,0,-1086.898508004829,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,42,42,15,1,3,-9,0,7.344164044899248,7.344164044899248,0,0,0,0,0,0,0,0,0,0,2.351181558905537,0,0,0,59.45,41.59,3,1,0,0,4,3,1,174,0,0,0 +1082,1324,2477,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,8,3,1,1,8.273728984618597,8.676191846400316,6.144741957105804,3,0,0,0,-9,0,-990.5712135730298,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,27,12,39,44,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.349769522641859,6.246836469748667,.6073603376224357,3,16.54,41.46,2,1,0,1,9,4,0,805,0,0,0 +1083,1325,2478,-9,-9,-9,1,1,0,75,2,0,0,0,3,-9,4,3,0,4,0,6.11535627092407,6.235194608602224,3,0,0,0,-9,0,-1006.722206017371,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.640643245668949,5.847193670592505,0,0,33.25,46.77,7,1,0,0,12,2,1,742,0,0,0 +1084,1326,2479,-9,-9,-9,1,1,0,41,2,0,3,0,1,-9,2,1,0,5,8.163524662618018,8.474372683689801,0,4,0,0,0,-9,0,-1068.393457853693,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,38,15,1,0,-9,0,11.8981242773601,11.8981242773601,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.01,55.04,6,2,0,0,5,3,1,348.3333333333333,0,0,0 +1084,1326,2480,-9,2479,-9,2,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-994.9349877422609,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,5,3,1,348.3333333333333,0,0,0 +1084,1326,2481,-9,2479,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-982.9551101126597,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,5,3,1,348.3333333333333,0,0,0 +1085,1327,2482,-9,2485,2486,3,1,0,17,2,0,2,0,2,1,2,3,0,2,6.744307821559016,6.873972850049165,0,2,0,0,0,-9,0,-907.714622296478,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.9,48.63,7,1,0,0,2,3,1,664.2,0,0,0 +1085,1327,2483,-9,2485,2486,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.7195787634039,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,3,1,664.2,0,0,0 +1085,1327,2484,-9,2485,2486,5,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.536363966021,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,664.2,0,0,0 +1085,1327,2485,2486,-9,-9,1,1,0,36,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,1,-69.97740626029821,0,0,1,35,2,4,1,3,3,2019,3,2,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.94,58,3,1,1,1,2,3,1,664.2,0,0,0 +1085,1327,2486,2485,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,4,8.205374024087806,7.835073197147412,0,2,0,-9,7,0,-1,96.54697957029683,0,0,0,36,2,4,3,2,-9,2019,2,1,8,1,45,43,15,1,1,3,0,9.892658641198118,9.892658641198118,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,50.73,4,1,0,0,2,3,1,664.2,0,0,0 +1086,1328,2487,-9,-9,-9,2,1,0,19,2,0,0,0,2,-9,7,2,0,4,0,7.806280308895919,7.938148187932791,3,0,0,0,-9,0,-1011.144743836747,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.064559458913116,0,0,0,49.35,59.64,5,1,0,1,4,4,0,572,0,0,0 +1087,1329,2488,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,8,3,1,1,0,6.236178689818407,6.032692957957075,3,0,0,0,-9,0,-1015.151661281238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.185866109689221,5.854877916113892,0,0,42.34,18.5,3,1,0,0,13,2,0,336,0,0,0 +1088,1330,2489,2491,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.945807703198215,9.18658182445108,0,1,0,-9,7,0,6,-27.70483634426033,0,0,0,42,2,5,1,2,2,2019,1,2,9,0,38,39,15,1,1,1,0,21.33095057781807,21.33095057781807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,13,5,1,519,0,0,0 +1088,1330,2490,-9,2491,2489,4,1,1,17,2,0,0,0,2,1,2,3,0,4,7.14806515455122,7.187726827837992,0,1,0,0,0,-9,0,-1127.886503402738,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,519,0,0,0 +1088,1330,2491,2489,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,5,8.40405670572312,8.409410754831208,0,1,0,-9,7,0,-6,75.46553863843732,0,0,1,48,2,4,1,2,2,2019,1,1,8,1,38,38,15,1,1,1,0,13.96235156592848,13.96235156592848,0,0,0,0,0,0,0,0,0,0,7.169097798380926,0,0,0,62.39,56.71,7,1,0,0,13,5,1,519,0,0,0 +1088,1331,2492,-9,2491,2489,3,1,1,19,2,0,0,1,2,0,7,2,0,4,7.274395409875456,6.860508631168275,0,3,0,0,0,-9,0,-973.0483768090334,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,5,1,0,0,13,3,1,319,0,0,0 +1089,1332,2493,2494,-9,-9,1,1,1,71,1,0,0,0,3,-9,1,1,0,2,9.581650974475975,9.577612864531437,0,1,0,-9,32,0,13,19.85922933701372,0,0,0,58,2,4,1,3,3,2019,1,2,9,0,60,50,15,1,0,1,0,21.16071661712924,21.16071661712924,0,0,0,0,0,0,0,0,0,0,2.91470673696733,0,0,0,44.07,39.47,5,1,0,0,5,5,1,525.5,0,0,0 +1089,1332,2494,2493,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,4,8.453019193658106,8.605690415429953,0,1,0,-9,32,0,-13,-154.2629753910685,0,0,0,71,3,2,1,3,3,2019,1,1,8,0,60,77,15,1,0,1,0,10.29919926426092,10.29919926426092,0,0,0,0,0,0,0,0,0,0,1.680134827053326,0,0,0,60.12,54.8,7,1,0,0,5,5,1,525.5,0,0,0 +1089,1333,2495,-9,2494,2493,3,1,1,22,2,0,0,0,1,-9,7,2,0,4,7.540198873512367,7.552727913100579,0,3,0,0,0,-9,0,-999.5745725868946,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,16,24,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,5,3,1,527,0,0,0 +1090,1334,2496,-9,2497,2498,5,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.383290442399,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,4,0,0,8,3,0,1199.333333333333,0,0,0 +1090,1334,2497,2498,-9,-9,1,1,0,46,1,0,2,0,2,-9,1,1,0,4,8.172395241282013,8.289585478132301,0,2,0,-9,12,0,-6,-75.177475889159,0,0,0,52,1,4,1,3,3,2019,1,2,10,0,50,25,15,1,1,1,0,8.746128950342603,8.746128950342603,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,4,0,0,8,3,0,1199.333333333333,0,0,0 +1090,1334,2498,2497,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,4,8.213448335987568,8.397572618676078,0,2,0,-9,7,0,6,-47.41748363688205,0,0,0,46,2,4,1,3,3,2019,1,1,9,0,65,28,15,1,1,1,0,6.117264766924627,6.117264766924627,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,8,3,0,1199.333333333333,0,0,0 +1090,1335,2499,-9,2497,2498,3,1,0,20,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1034.557839857405,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,61.57,5,4,0,0,8,1,0,588,0,0,0 +1090,1336,2500,-9,2497,2498,4,1,0,18,2,0,2,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-980.4310799608747,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,18,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,4,4,1,0,8,3,0,379,0,0,0 +1091,1337,2501,2502,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,4,7.949650957150845,8.455779110404498,0,1,0,-9,6,0,0,41.79228540796343,0,0,0,48,2,4,1,2,2,2019,1,2,7,0,35,35,15,1,0,1,0,15.1781875826048,15.1781875826048,0,0,0,0,0,0,0,0,0,0,3.399761560591992,0,0,0,56.18,53.85,6,1,0,0,9,5,1,2588,0,0,0 +1091,1337,2502,2501,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.659294892928621,8.588775337788356,0,1,0,-9,6,0,0,-8.81700929968707,0,0,0,48,2,4,1,-9,-9,2019,1,1,9,0,35,37,15,1,1,1,0,15.44019946443306,15.44019946443306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,9,5,1,2588,0,0,0 +1092,1338,2503,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,4,7.596974180448637,7.913003984611639,0,3,0,0,0,-9,0,-988.0309497191643,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,30,60,15,1,0,-9,0,11.15131847157174,11.15131847157174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,2,3,0,1355,0,0,0 +1093,1339,2504,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,3,8.666365180832882,8.960292807210848,7.179695080268606,3,0,0,0,-9,0,-1042.396099841663,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,49,50,15,1,0,-9,0,11.21952203231817,11.21952203231817,0,0,0,0,0,0,0,1,1,0,7.852128289219195,0,6.749873491503332,3,58.32,50.22,6,1,0,0,5,5,1,1313,0,0,0 +1094,1340,2505,2506,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,0,-22.82074523522796,0,0,0,68,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,7,1,0,0,12,3,1,382.5,0,0,0 +1094,1340,2506,2505,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.954269078595067,8.383812827063911,1,0,-9,48,0,0,3.572557644743854,0,0,0,68,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.274828295606527,8.39771058577236,0,0,57.92,51.82,6,1,0,0,12,3,1,382.5,0,0,0 +1095,1341,2507,2508,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,3,0,0,-56.59318385675294,0,0,0,59,2,3,1,3,3,2019,1,1,16,4,0,24,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1951375781762043,0,0,0,47.44,28.49,5,1,0,0,2,4,0,579,0,0,0 +1095,1341,2508,2507,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.315622991917625,8.721848461871746,7.107969636731412,1,0,-9,3,0,0,13.05812728627957,0,0,0,59,2,2,1,3,3,2019,1,2,13,1,38,40,15,1,1,1,0,10.77349294863247,10.77349294863247,0,0,0,0,0,0,0,0,0,0,0,7.565680692588598,10.52788507091544,1,38.85,36.03,2,1,0,0,2,4,0,579,0,0,0 +1096,1342,2509,2510,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,2,0,8.088769969374743,8.105777154247551,1,0,-9,8,0,-2,211.6615981377262,0,0,0,64,1,3,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.360721544482027,8.015794370478947,1.904194077011716,3,51.31,44.72,4,3,0,0,8,4,1,798,0,0,0 +1096,1342,2510,2509,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,8.075186006963353,8.22239086489555,1,0,-9,8,0,2,-155.6115626921798,0,0,0,62,1,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.629843481323863,8.132792260908396,0,0,52.57,52.89,6,1,0,0,8,4,1,798,0,0,0 +1097,1343,2511,-9,2512,2515,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.3039008978005,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,12,2,1,784.8,0,0,0 +1097,1343,2512,2515,-9,-9,2,1,0,44,1,0,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,20,0,-7,3.039729171837458,0,0,1,51,1,4,1,2,2,2019,3,1,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.648485012202934,0,0,0,49.35,59.64,6,3,0,0,12,2,1,784.8,0,0,0 +1097,1343,2513,-9,2512,2515,3,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1093.97939821775,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.61,58.31,7,3,0,0,12,2,1,784.8,0,0,0 +1097,1343,2514,-9,2512,2515,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.4066797405098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,12,2,1,784.8,0,0,0 +1097,1343,2515,2512,-9,-9,1,1,1,51,1,0,3,0,1,-9,1,1,0,4,7.690128527953012,7.686053331032477,0,2,0,-9,20,0,7,84.07414343479518,0,0,0,44,1,4,3,2,1,2019,2,2,11,2,50,60,15,1,2,3,0,4.294235094556282,4.294235094556282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,61.77,4,3,0,1,12,2,1,784.8,0,0,0 +1098,1344,2516,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,4,0,7.538961488113738,7.732007321266251,3,0,0,0,-9,0,-904.9586085812543,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.305667518861259,7.151727743588194,0,0,60.12,54.8,2,1,0,0,12,3,0,2233,0,0,0 +1099,1345,2517,-9,2518,2521,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-985.6955655933284,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,1,0,837.2,0,0,0 +1099,1345,2518,2521,-9,-9,2,1,0,32,1,1,3,0,3,-9,6,3,0,2,0,0,0,2,0,-9,1,-9,-5,0,-9,0,1,37,2,3,3,2,2,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.33,34.39,4,1,0,0,11,1,0,837.2,0,0,0 +1099,1345,2519,-9,2518,2521,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1013.208809435501,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,1,0,837.2,0,0,0 +1099,1345,2520,-9,2518,2521,3,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-942.1557561993061,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,1,0,837.2,0,0,0 +1099,1345,2521,2518,-9,-9,1,1,1,37,1,1,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,1,-9,5,0,-9,0,0,32,3,2,3,3,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,53.79,6,1,1,1,11,1,0,837.2,0,0,0 +1100,1346,2522,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,7.264624373553738,7.253067808906098,3,0,0,0,-9,0,-1088.562320092458,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.447789270723703,7.090059127871708,0,0,57.16,56.15,5,1,0,0,4,2,0,515,0,0,0 +1101,1347,2523,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1093.227388752848,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,38.66,4,1,0,0,1,1,0,83,0,0,0 +1102,1348,2524,2525,-9,-9,3,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.763934879887638,7.786361137779326,5.945070171633727,1,0,-9,5,0,-2,-13.33291048212125,0,0,0,59,1,4,1,-9,-9,2019,1,1,7,0,13,14,15,1,0,1,0,17.79354663772249,17.79354663772249,0,0,0,0,0,0,0,0,0,0,5.894884522000504,6.215889787001142,0,0,54.58,34.21,6,1,0,0,12,4,1,1258.5,0,0,0 +1102,1348,2525,2524,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,4,7.365195893910507,8.405302649301701,8.264866599531873,1,0,-9,5,0,2,67.92849413402922,0,0,0,57,2,3,1,2,2,2019,1,3,7,0,4,7,15,1,0,1,0,50.9036496378196,50.9036496378196,0,0,0,0,0,0,0,0,0,0,6.872782774527024,8.102535634155135,0,0,57.16,56.15,6,1,0,0,12,4,1,1258.5,0,0,0 +1102,1349,2526,-9,2524,2525,2,1,0,28,2,0,0,0,1,-9,2,1,0,5,8.84680785925438,8.571780189556755,0,3,0,0,0,-9,0,-903.3828383189787,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,1,40,37,15,1,1,-9,1,13.42718367999554,13.42718367999554,0,0,0,0,0,0,0,0,0,0,4.374263582329903,0,0,0,46,61.6,6,1,0,0,12,5,1,793,0,0,0 +1103,1350,2527,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,4,8.503963952009013,8.411874962777594,0,3,0,0,0,-9,0,-963.3524300029654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,0,15,1,0,-9,0,12.20032046274054,12.20032046274054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,5,4,0,0,8,4,0,382,0,0,0 +1104,1351,2528,-9,2532,2529,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1058.563024997703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,2,1,0,1016.4,0,0,0 +1104,1351,2529,2532,-9,-9,5,1,1,27,1,0,3,0,2,-9,3,3,0,5,0,0,0,2,0,-9,3,0,-14,0,0,1,0,41,2,4,3,-9,-9,2019,4,1,7,0,0,44,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,1,0,2,1,0,1016.4,0,0,0 +1104,1351,2530,-9,2532,2529,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.8041661123658,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,1,0,1016.4,0,0,0 +1104,1351,2531,-9,2532,2529,2,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-972.7833712744211,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,5,1,0,0,2,1,0,1016.4,0,0,0 +1104,1351,2532,2529,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,14,0,0,0,1,27,2,5,3,-9,-9,2019,4,5,13,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.839314494232184,3,37.93,28.59,6,1,0,0,2,1,0,1016.4,0,0,0 +1105,1352,2533,2535,-9,-9,1,1,1,34,1,0,1,0,1,-9,1,1,0,4,5.33169469277144,5.517447592999927,0,2,0,-9,6,0,0,10.2463692030934,-9,0,0,34,1,4,1,1,2,2019,1,2,17,5,50,0,15,1,5,1,0,.4773938763172336,.4773938763172336,0,0,0,0,0,0,0,1,1,0,.5510682161360929,0,14.31322545839386,3,35.63,62.19,5,1,0,0,13,3,0,1625.333333333333,0,0,0 +1105,1352,2534,-9,2535,2533,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.2646015743148,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,3,0,1625.333333333333,0,0,0 +1105,1352,2535,2533,-9,-9,2,1,0,34,1,0,1,0,1,-9,2,1,0,4,7.731728484345811,7.523529203783753,0,2,0,-9,6,0,0,47.87332808045538,0,0,1,34,1,4,1,-9,-9,2019,1,1,11,0,20,27,15,1,0,1,0,12.20443471159772,12.20443471159772,0,0,0,0,0,0,0,1,1,0,0,0,13.05581315061679,3,52.23,50.4,6,1,0,1,13,3,0,1625.333333333333,0,0,0 +1106,1353,2536,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,7.080291964395644,6.977690652980068,3,0,0,0,-9,0,-1139.127884829092,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.315847255678661,7.025030960074338,0,0,51.83,57.2,6,1,0,0,9,2,1,690,0,0,0 +1107,1354,2537,2538,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,4,7.99192571323188,7.742004532274517,0,1,0,-9,4,0,5,26.51929571446736,0,0,0,26,1,4,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,8.861660793006841,8.861660793006841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,6,1,0,0,2,4,1,287,0,0,0 +1107,1354,2538,2537,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,4,7.992707592524965,8.253217758675483,0,1,0,-9,4,0,-5,113.6987262726983,0,1,1,31,1,4,1,-9,-9,2019,1,1,11,0,37,37,15,1,2,1,0,8.852555336547319,8.852555336547319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,2,4,1,287,0,0,0 +1108,1355,2539,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-943.7942239235896,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,28,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.100464210156462,0,0,0,33.33,22.86,2,1,0,0,2,1,0,566,0,0,0 +1109,1356,2540,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,5,6.977198489867691,6.510890118677252,0,3,0,-9,0,-9,0,-962.199376872074,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,16,0,15,1,0,-9,0,7.249400950832293,7.249400950832293,0,0,0,0,0,0,0,1,1,0,.0049008161374651,0,0,0,43.24,59.41,5,1,0,0,11,2,0,1123,0,0,0 +1110,1357,2541,-9,2543,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-892.2771705479379,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,10,2,0,819,0,0,0 +1110,1357,2542,-9,2543,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.047079604238,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,2,0,819,0,0,0 +1110,1357,2543,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,1,1,0,3,7.164815083408269,6.925158169140667,0,4,0,0,0,-9,0,-1040.430267755694,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,30,20,15,1,0,-9,0,4.036109892098367,4.036109892098367,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.93,55.1,5,1,0,0,10,2,0,819,0,0,0 +1111,1358,2544,2545,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,2,7.504612017362687,7.614174437267684,3.954191219697884,1,0,-9,3,0,0,-6.469724977641952,0,0,0,48,2,4,1,3,2,2019,1,4,12,1,25,26,15,1,1,1,0,11.38096282248518,11.38096282248518,0,0,0,0,0,0,0,0,0,0,0,4.348828106983364,0,0,48.02,34.89,6,3,0,0,9,5,1,611.5,0,0,0 +1111,1358,2545,2544,-9,-9,4,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.313628372455211,8.370817037094225,0,1,0,-9,3,0,0,-67.31528872904822,0,0,0,48,3,2,1,-9,-9,2019,1,1,8,0,40,37,15,1,0,1,0,16.19327446258677,16.19327446258677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.72,51.9,6,3,0,0,9,5,1,611.5,0,0,0 +1111,1359,2546,-9,2544,2545,2,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.176082702246431,8.000231047614101,0,3,0,0,0,-9,0,-1021.099054723025,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,43,15,1,0,-9,1,11.10176314502042,11.10176314502042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,3,0,0,9,4,1,307,0,0,0 +1111,1360,2547,-9,2544,2545,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.964916434146259,8.642847280618845,0,3,0,0,0,-9,0,-1077.52060996396,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,40,30,15,1,2,-9,1,19.49476366914515,19.49476366914515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,3,0,0,9,5,1,1493,0,0,0 +1112,1361,2548,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,0,6.420538113795273,6.053043952540392,3,0,0,0,-9,0,-1017.663127695296,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.275678983325955,6.207646854458094,0,0,60.02,32.14,3,1,0,0,4,2,0,696,0,0,0 +1113,1362,2549,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,2,1,0,5,8.640313277531881,8.74255247272292,0,1,0,-9,2,0,0,79.46900195349717,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,2,10,3,37,37,15,1,3,-9,0,18.49960526023242,18.49960526023242,0,0,0,0,0,0,0,0,0,0,7.260757270742689,0,0,0,51.67,60.18,6,1,0,0,2,4,1,534,0,0,0 +1114,1363,2550,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,3,8.279581487545119,8.122237040995392,0,3,0,0,0,-9,0,-1142.468600928645,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,0,15,1,0,-9,0,9.779330239711509,9.779330239711509,0,0,0,0,0,0,0,0,0,0,2.045984193315783,0,0,0,52,54.51,5,1,0,0,12,4,1,719,0,0,0 +1115,1364,2551,2552,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,5,8.622658718535346,8.047582321154609,0,1,0,-9,30,0,4,6.586514195544777,0,0,0,50,2,4,1,2,2,2019,1,2,11,0,60,55,15,1,0,1,0,7.499951795692379,7.499951795692379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.2,54.53,7,1,0,0,12,3,1,1026.5,0,0,0 +1115,1364,2552,2551,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,5.661906456577072,5.719468220522577,0,1,0,-9,6,0,-4,164.2839473500021,0,0,0,54,1,5,1,2,2,2019,1,1,8,0,4,0,15,1,0,1,0,10.8227880992584,10.8227880992584,0,0,0,0,0,0,0,0,0,0,.6716685778443031,0,0,0,47.15,50.19,6,1,0,0,12,3,1,1026.5,0,0,0 +1116,1365,2553,2554,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,2,0,7.863034488331397,7.27787998939041,1,0,-9,11,0,-1,142.2237528707778,0,0,0,77,3,4,3,-9,-9,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.764216545659805,7.570874124026613,0,0,44.23,46.58,5,1,0,0,5,3,1,130.5,0,0,0 +1116,1365,2554,2553,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,7.307356331136366,7.43700323357224,1,0,-9,58,0,1,-1.708737261173636,0,0,0,76,1,2,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.565908272605926,0,0,60.85,42.12,6,1,0,0,5,3,1,130.5,0,0,0 +1117,1366,2555,2556,-9,-9,2,1,1,30,1,0,0,0,2,-9,1,1,0,3,7.514492041009107,7.509307273695492,0,1,0,-9,6,0,5,81.28013982323225,0,0,0,25,2,3,1,-9,-9,2019,1,1,22,10,18,20,15,1,10,1,0,9.753539376007009,9.753539376007009,0,0,0,0,0,0,0,0,0,0,5.61397848031467,0,0,0,26.18,61.09,3,2,0,0,4,3,0,395,0,0,0 +1117,1366,2556,2555,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,3,7.012518409384166,6.896160461523132,0,1,0,-9,6,0,-5,-129.8054677098364,0,1,1,30,2,3,1,2,-9,2019,1,2,12,0,21,20,15,1,0,1,0,6.46221694132266,6.46221694132266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,49.31,5,1,0,0,4,3,0,395,0,0,0 +1118,1367,2557,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,5,8.389869690477601,8.780623446083956,0,3,0,0,0,-9,0,-834.843494925826,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,50,60,15,1,2,-9,0,10.10521294095133,10.10521294095133,0,0,0,0,0,0,0,0,0,0,7.015493852703269,0,0,0,35.65,44.6,2,3,0,0,6,4,1,819,0,0,0 +1119,1368,2558,2559,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,2,7.504477876593793,7.525760197644311,0,1,0,-9,5,0,-2,-14.78441287796365,0,0,0,57,2,1,3,3,2,2019,2,2,32,12,26,26,15,1,12,3,0,8.861030320069423,8.861030320069423,0,0,0,0,0,0,0,1,1,0,2.01005955225453,0,9.656884082815942,3,11.23,48.13,3,1,0,0,2,2,0,519.5,0,0,0 +1119,1368,2559,2558,-9,-9,2,1,1,57,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,5,0,2,36.72899364025427,0,0,0,55,2,2,1,-9,-9,2019,3,1,27,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.444439331578295,3,5.02,48.27,1,1,0,1,2,2,0,519.5,0,0,0 +1120,1369,2560,2561,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,3,8.774629056964109,8.854097522923313,0,1,0,-9,3,0,3,-81.15392227139077,0,0,0,29,2,5,1,-9,-9,2019,1,2,12,0,45,45,15,1,0,1,0,22.00103991436959,22.00103991436959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,5,1,0,0,1,5,1,485,0,0,0 +1120,1369,2561,2560,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,5,7.900046214253342,7.84792095535086,0,1,0,-9,3,0,-3,-132.4340630929844,0,1,1,32,1,3,1,-9,-9,2019,1,1,10,0,42,39,15,1,1,1,0,7.008804577780475,7.008804577780475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,63.14,6,1,0,0,1,5,1,485,0,0,0 +1121,1370,2562,2563,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,3,9.170991147025582,8.560288738385989,0,1,0,-9,39,0,1,48.79868467313212,0,0,0,63,1,3,1,2,1,2019,1,2,10,0,42,42,15,1,1,1,0,18.92453234627914,18.92453234627914,0,0,0,0,0,0,0,1,1,0,3.80471871400983,0,0,0,51,48,5,1,0,0,9,5,1,544,0,0,0 +1121,1370,2563,2562,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,3,8.087148295729213,7.7809078767575,0,1,0,-9,39,0,-1,-20.20798887017666,0,0,0,64,1,3,1,2,2,2019,1,1,11,0,25,16,15,1,2,1,0,14.77966186686419,14.77966186686419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,9,5,1,544,0,0,0 +1121,1371,2564,-9,2563,2562,3,1,0,35,2,0,0,0,1,-9,1,1,0,3,8.425971710446875,8.599170066678319,0,3,0,0,0,-9,0,-1028.06758112496,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,42,40,15,1,1,-9,1,17.23236051050605,17.23236051050605,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,5,1,0,0,9,5,1,272,0,0,0 +1121,1372,2565,-9,-9,-9,4,1,1,55,3,0,0,0,3,-9,1,1,0,4,8.271837630490941,8.802523229676584,0,3,0,0,0,-9,0,-913.3184404560643,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,50,15,1,1,-9,0,11.50037075384231,11.50037075384231,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,2,0,0,9,4,1,1343,0,0,0 +1122,1373,2566,2567,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,2,7.744297903758682,7.504642167354476,0,1,0,-9,8,0,-2,-5.69844242537113,0,0,0,58,1,5,1,-9,-9,2019,1,1,15,5,30,30,15,1,5,1,0,9.480162769762771,9.480162769762771,0,0,0,0,0,0,0,0,0,0,2.360339507175713,0,0,0,50.58,24.56,7,1,0,0,13,5,1,610.5,0,0,0 +1122,1373,2567,2566,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,5,9.208504897892245,9.169072600441504,0,1,0,-9,32,0,2,65.87449648646157,0,0,0,56,1,2,1,2,2,2019,1,2,18,7,40,40,15,1,7,1,0,26.98593679186087,26.98593679186087,0,0,0,0,0,0,0,0,0,0,4.192704013824895,0,0,0,52.24,58.56,6,1,0,0,13,5,1,610.5,0,0,0 +1122,1374,2568,-9,2566,2567,3,1,1,27,2,0,0,0,1,-9,2,1,0,4,7.801628878948324,7.168363778296394,0,3,0,0,0,-9,0,-963.3442770812613,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,40,15,1,1,-9,1,5.617915360810277,5.617915360810277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,13,3,1,462,0,0,0 +1122,1375,2569,-9,2566,2567,4,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.117083236591814,8.190532174098644,0,3,0,0,0,-9,0,-1093.678050319201,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,38,40,15,1,1,-9,1,11.31418187068474,11.31418187068474,0,0,0,0,0,0,0,0,0,0,2.617678196627624,0,0,0,49,58,5,1,0,0,13,4,1,961,0,0,0 +1123,1376,2570,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,4,0,7.276443017944562,7.143678563499613,3,0,0,0,-9,0,-1011.294644381426,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9116092041323338,7.117782574140627,0,0,55.59,47.45,6,1,0,0,9,2,1,970,0,0,0 +1124,1377,2571,-9,2572,2575,4,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.015378598755,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,3,0,825.4,0,0,0 +1124,1377,2572,2575,-9,-9,2,1,0,34,1,1,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-14,41.98107276659838,-9,0,1,48,2,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.816331667654678,0,0,3,48,56,5,4,0,0,8,3,0,825.4,0,0,0 +1124,1377,2573,-9,2572,2575,3,1,0,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.2819842992232,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,3,0,825.4,0,0,0 +1124,1377,2574,-9,2572,2575,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.8111910800958,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,4,0,0,8,3,0,825.4,0,0,0 +1124,1377,2575,2572,-9,-9,1,1,1,48,1,1,3,0,2,-9,2,1,0,3,8.526648287591671,8.577148672047544,0,2,0,-9,5,0,14,-98.41011406076262,0,0,0,34,3,4,3,-9,-9,2019,2,2,11,0,38,50,15,1,0,3,0,17.62775536785391,17.62775536785391,0,0,0,0,0,0,0,1,1,0,0,0,5.003910260080867,3,54.37,54.8,5,4,0,0,8,3,0,825.4,0,0,0 +1125,1378,2576,2577,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.303019481646412,7.698646639544472,0,1,0,-9,32,0,-8,59.66789551511991,0,0,0,61,2,2,1,3,3,2019,1,1,11,0,24,32,15,1,0,1,0,7.27811756656118,7.27811756656118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.94,45.89,6,1,0,0,12,4,1,1058.5,0,0,0 +1125,1378,2577,2576,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,2,8.438916928329617,8.241762849513409,5.788216082020176,1,0,-9,32,0,8,28.68062125023069,0,0,0,53,2,2,1,3,3,2019,1,2,6,0,38,38,15,1,0,1,0,11.45603044347972,11.45603044347972,0,0,0,0,0,0,0,0,0,0,5.37153997062596,5.921740108851671,0,0,57.57,49.69,6,1,0,0,12,4,1,1058.5,0,0,0 +1126,1379,2578,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,3,0,6.698450882518495,6.869025435617711,3,0,0,0,-9,0,-982.1637479300887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.290408318116747,6.737720631409561,0,0,48.25,54.77,5,1,0,0,10,2,1,1820,0,0,0 +1127,1380,2579,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-997.7533491691125,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.48,28.31,1,1,0,1,9,1,1,264,0,0,0 +1128,1381,2580,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,3,0,7.442573611200012,7.499382760823443,3,0,0,0,-9,0,-1179.071718684236,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.213400999372715,0,0,53,47,5,1,0,0,13,3,1,415,0,0,0 +1129,1382,2581,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,2,1,0,3,8.661502950687259,8.810144926058538,0,3,0,0,0,-9,0,-1120.51913454345,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,37,37,15,1,1,-9,0,20.9024841993221,20.9024841993221,0,0,0,0,0,0,0,0,0,0,2.269439960687499,0,0,0,52,48,5,1,0,0,1,5,1,697,0,0,0 +1130,1383,2582,2583,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,7.227191096496959,7.886564251180935,1,0,-9,49,0,-1,-30.12731023432583,0,0,0,68,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.936871935684761,0,0,57.16,56.15,6,1,0,0,12,3,1,814,0,0,0 +1130,1383,2583,2582,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,49,0,1,33.03655814234988,0,0,0,67,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.067271263960768,0,0,0,54.79,55.86,6,1,0,0,12,3,1,814,0,0,0 +1131,1384,2584,2585,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,4,0,5.789409225855504,5.810297183637823,1,0,-9,53,0,13,-126.5360618507843,0,0,0,69,2,3,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.947222730967791,0,0,60.12,54.8,7,1,0,0,7,3,1,1022,0,0,0 +1131,1384,2585,2584,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,3,7.679112320630658,8.277891086469095,0,1,0,-9,7,0,-13,49.67015865929827,0,0,0,82,3,4,3,3,3,2019,2,1,8,0,38,40,15,1,0,4,0,10.23918853031163,10.23918853031163,0,0,0,0,0,0,0,1,1,0,4.709783937867702,0,0,0,52.6,52.88,6,1,0,0,7,3,1,1022,0,0,0 +1132,1385,2586,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,1,1,0,4,6.274907455048895,6.537981674358604,0,3,0,0,0,-9,0,-1052.78961198506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,20,15,1,0,-9,0,2.441578781396516,2.441578781396516,0,0,0,0,0,0,0,1,1,0,2.564493551307374,0,0,0,60.87,42.1,6,1,0,0,9,2,0,1492,0,0,0 +1133,1386,2587,-9,-9,-9,2,1,0,48,3,0,0,0,1,-9,97,3,0,1,0,0,0,3,0,0,0,-9,0,-1040.729875006386,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,128.3004102944242,3,16.43,33.45,3,1,0,1,9,1,0,315,0,0,0 +1133,1387,2588,-9,2587,-9,3,1,1,27,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-914.0043783596781,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,57.14,4,1,0,0,9,1,0,498,0,0,0 +1133,1388,2589,2590,-9,-9,4,1,1,26,1,0,0,0,2,-9,3,3,0,4,0,7.209294134556261,6.926998103946437,1,0,-9,1,-9,3,139.6540468052663,-9,1,0,23,2,2,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.227453744154221,0,0,0,54.79,55.86,6,1,1,0,9,2,0,697,0,0,0 +1133,1388,2590,2589,2587,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,2,5.862975812857013,6.200801239025009,0,1,0,1,1,-9,-3,75.19130928700919,0,1,1,26,2,4,3,2,-9,2019,2,4,13,4,10,20,15,1,4,3,0,5.011460360722205,5.011460360722205,0,0,0,0,0,0,0,1,1,0,0,0,8.192897452911078,3,36.14,47.15,5,1,0,1,9,2,0,697,0,0,0 +1134,1389,2591,2592,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,3,7.815030977137563,8.138095214927068,0,2,0,-9,30,0,2,-93.88752038449154,0,0,0,53,2,4,1,3,3,2019,1,2,10,0,38,43,15,1,1,1,0,9.183490963285895,9.183490963285895,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,13,4,1,901.3333333333334,0,0,0 +1134,1389,2592,2591,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,4,8.012642389843819,7.898953853761121,0,2,0,-9,30,0,-2,124.2696417632648,0,0,0,55,3,3,1,3,3,2019,1,1,18,8,42,42,15,1,8,1,0,7.688975956287686,7.688975956287686,0,0,0,0,0,0,0,1,1,0,0,0,28.26301327120679,3,43.84,51.9,3,1,0,0,13,4,1,901.3333333333334,0,0,0 +1134,1389,2593,-9,2592,2591,6,1,1,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-934.3589707422375,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,13,4,1,901.3333333333334,0,0,0 +1134,1390,2594,-9,2592,2591,3,1,1,26,2,0,1,0,2,-9,2,1,0,3,7.727332413170967,7.594297675421138,0,3,0,0,0,-9,0,-972.3950877271953,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,37,40,15,1,0,-9,1,6.275223913299373,6.275223913299373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,41.07,6,1,0,0,13,3,1,1556,0,0,0 +1134,1391,2595,-9,2592,2591,4,1,1,24,2,0,1,0,2,-9,2,1,0,4,7.952729928043688,7.849212730958526,0,3,0,0,0,-9,0,-1068.423096796944,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,45,46,15,1,0,-9,1,7.570591802956221,7.570591802956221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,685,0,0,0 +1134,1392,2596,-9,2592,2591,5,1,0,20,2,0,1,0,1,1,2,1,0,3,6.683465718708182,6.775354194392147,0,3,0,0,0,-9,0,-974.0859221061027,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,18,5,12,0,15,1,5,-9,1,7.370213842867257,7.370213842867257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.79,50.84,4,1,0,0,13,2,1,791,0,0,0 +1135,1393,2597,2598,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,3,8.039857653600935,8.069003608251172,7.242657447806907,2,0,-9,2,0,4,12.13675962108003,0,0,0,47,1,4,1,1,1,2019,1,1,6,0,24,25,15,1,0,1,0,14.46258353970296,14.46258353970296,0,0,0,0,0,0,0,1,1,0,7.953131707091813,7.431460261082518,0,0,60.73,36.84,6,1,0,0,12,5,1,2318,0,0,0 +1135,1393,2598,2597,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,9.139167428093746,8.981398267219205,0,2,0,-9,2,0,-4,37.39284621749511,0,0,0,51,1,3,1,1,1,2019,1,2,10,0,40,40,15,1,1,1,0,28.24264600849698,28.24264600849698,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,12,5,1,2318,0,0,0 +1135,1393,2599,-9,2598,2597,5,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.9684230636451,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,2318,0,0,0 +1135,1393,2600,-9,2598,2597,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-963.9720953503258,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,5,1,2318,0,0,0 +1135,1394,2601,-9,2598,2597,3,1,0,20,2,0,2,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1001.497141647017,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.8441003504513473,0,0,0,46,58,5,1,0,0,12,1,1,940,0,0,0 +1136,1395,2602,2605,-9,-9,2,1,1,40,1,1,2,0,1,-9,2,1,0,4,9.263424560016604,9.462779823834541,0,2,0,-9,10,0,1,65.79154620630968,0,0,0,39,1,5,1,1,1,2019,1,1,11,2,49,50,15,1,2,1,0,27.70564173919223,27.70564173919223,0,0,0,0,0,0,0,0,0,0,3.759170936502393,0,0,0,48.81,59.91,6,3,0,0,10,5,1,1268,0,0,0 +1136,1395,2603,-9,2605,2602,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.6151362654957,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,10,5,1,1268,0,0,0 +1136,1395,2604,-9,2605,2602,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.6642611184083,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,10,5,1,1268,0,0,0 +1136,1395,2605,2602,-9,-9,1,1,0,39,1,1,2,0,1,-9,2,1,0,5,8.55185442365504,8.761879537254066,0,2,0,-9,10,0,-1,50.03968809095173,0,0,1,40,1,4,1,2,2,2019,1,2,13,2,25,26,15,1,2,1,0,26.53416077100842,26.53416077100842,0,0,0,0,0,0,0,0,0,0,1.738635896066846,0,0,0,46.61,39.87,5,3,0,0,10,5,1,1268,0,0,0 +1137,1396,2606,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,6,3,0,4,0,7.56406564994366,7.633588323753767,3,0,0,0,-9,0,-866.8314548471702,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.117739419813828,0,0,0,54.2,57.49,6,1,0,0,9,3,1,1198,0,0,0 +1137,1397,2607,-9,2606,-9,2,1,1,23,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1007.358223254892,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.49,63.38,3,1,1,0,9,1,1,544,0,0,0 +1138,1398,2608,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,4,8.546089265708572,8.710124406884312,6.313837373932431,3,0,0,0,-9,0,-1089.186941288727,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,51,51,15,1,0,-9,0,11.13080336392876,11.13080336392876,0,0,0,0,0,0,0,0,0,0,7.422033185618878,6.630434576900214,0,0,57.16,56.15,6,1,0,0,7,5,1,1587,0,0,0 +1139,1399,2609,2610,-9,-9,3,1,1,60,1,0,0,0,2,-9,1,1,0,4,7.828902173400003,8.108051691403224,4.693185654207748,1,0,-9,2,0,0,-76.74392983826125,0,0,0,60,1,4,1,-9,-9,2019,1,1,4,0,50,50,15,1,0,1,0,6.484658723556305,6.484658723556305,0,0,0,0,0,0,0,0,0,0,5.723792365688343,4.926245536160685,0,0,57.16,56.15,7,1,0,0,5,5,1,525,0,0,0 +1139,1399,2610,2609,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,4,8.533526879661455,9.088540247537752,8.173089083128467,1,0,-9,2,0,0,-27.08570046178149,0,0,0,60,2,4,1,1,1,2019,1,3,9,1,42,0,15,1,1,1,0,17.65216758724869,17.65216758724869,0,0,0,0,0,0,0,0,0,0,5.110485172758563,8.798511341106417,0,3,52.23,55.6,6,1,0,0,5,5,1,525,0,0,0 +1140,1400,2611,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,4,0,6.78723574026208,7.053679386008019,3,0,0,0,-9,0,-990.0230154565312,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.141184311585612,6.781675352273639,0,0,47.23,58.08,6,1,0,0,6,2,1,467,0,0,0 +1141,1401,2612,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,3,7.249471646735179,6.880324833097933,0,3,0,0,0,-9,0,-1083.224919386847,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,0,4.051859165519665,4.051859165519665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,8,2,1,161,0,0,0 +1142,1402,2613,-9,2614,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1089.576362616487,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.72835630358594,3,31.59,20.83,3,1,0,0,4,1,1,1211,0,0,0 +1142,1403,2614,-9,-9,-9,2,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,3.658640266176094,2.976269269224561,3,0,0,0,-9,0,-1004.479769988578,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,12.09441437572679,0,0,0,1,1,0,0,3.285548867235208,0,0,51.76,17.94,6,1,0,0,4,1,1,615,0,0,0 +1143,1404,2615,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,5,0,7.839152800211608,7.941136269189204,3,0,0,0,-9,0,-1029.822002894535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.973834724512766,7.912252941737537,0,0,62.39,56.71,7,1,0,0,12,4,0,921,0,0,0 +1144,1405,2616,2617,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,4,8.344536019241717,8.520379949909215,0,1,0,-9,6,0,-10,42.30926778321611,-9,0,0,62,2,4,1,-9,-9,2019,1,1,9,0,60,0,15,1,1,1,0,6.942498485747675,6.942498485747675,0,0,0,0,0,0,0,0,0,0,4.634947917041678,0,0,0,54,54,6,1,0,0,9,4,1,1248.5,0,0,0 +1144,1405,2617,2616,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,4,8.193766961501534,7.920679454730753,0,1,0,-9,28,0,10,-69.36464506427612,0,0,0,52,2,4,1,3,3,2019,1,2,12,1,36,35,15,1,1,1,0,9.04970217948523,9.04970217948523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.5,49.74,5,1,0,0,9,4,1,1248.5,0,0,0 +1144,1406,2618,-9,2617,2616,3,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.016925125237915,7.951166228840991,0,3,0,0,0,-9,0,-1032.44085589709,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,9.098775830655214,9.098775830655214,0,0,0,0,0,0,0,0,0,0,3.297114369009774,0,0,0,49,58,5,1,0,0,9,4,1,1150,0,0,0 +1145,1407,2619,2620,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,8.222857827565567,8.335005321344704,0,1,0,-9,6,0,4,-71.66945487843202,0,0,0,47,2,3,1,2,2,2019,1,2,17,5,37,37,15,1,5,1,0,13.72540493361228,13.72540493361228,0,0,0,0,0,0,0,0,0,0,3.798367161862097,0,5.196340532609449,3,42.53,45.9,3,1,0,0,10,4,1,445.5,0,0,0 +1145,1407,2620,2619,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,3,7.631576137859479,7.732598630585119,0,1,0,-9,6,0,-4,-25.38462049619731,0,0,0,51,2,2,1,2,3,2019,1,1,14,5,26,32,15,1,5,1,0,7.537028874281289,7.537028874281289,0,0,0,0,0,0,0,0,0,0,3.537507071597318,0,0,3,58.26,27.3,5,1,0,0,10,4,1,445.5,0,0,0 +1146,1408,2621,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,2,0,4.630099198417973,4.609326890000431,3,0,0,0,-9,0,-1028.215974904043,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,1.749929645554744,0,0,1,1,0,0,4.812355566696553,6.477939485781532,3,43.91,28.75,5,1,0,0,2,2,1,1032,0,0,0 +1147,1409,2622,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-982.937549025888,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.15256753646389,3,30.17,26.91,4,1,0,0,11,1,0,457,0,0,0 +1147,1410,2623,-9,2622,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,5,7.772031652929804,7.819595815156624,0,3,0,0,0,-9,0,-1065.583033011646,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,46,80,15,1,0,-9,1,6.760862696797065,6.760862696797065,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,11,3,0,1244,0,0,0 +1148,1411,2624,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,3,8.517291887933917,8.838914828683095,0,4,0,0,0,-9,0,-980.512227753444,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,38,15,1,0,-9,0,17.10333398288795,17.10333398288795,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,41.12,4,4,0,0,8,4,1,1017,0,0,0 +1149,1412,2625,-9,2627,-9,4,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.553594487748,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,1,0,917,0,0,0 +1149,1412,2626,-9,2627,-9,2,1,1,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1065.862822601423,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,1,1,0,917,0,0,0 +1149,1412,2627,-9,-9,-9,1,1,0,32,2,0,3,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1177.304293436751,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.54,56.06,4,1,0,0,1,1,0,917,0,0,0 +1149,1412,2628,-9,2627,-9,3,1,0,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1012.208035453915,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,1,1,0,917,0,0,0 +1150,1413,2629,2631,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,4,8.718792563856269,8.836910713053173,0,2,0,-9,17,0,1,-40.63920843713146,0,0,0,35,2,4,1,2,2,2019,1,4,6,0,38,35,15,1,0,1,0,16.81739425628732,16.81739425628732,0,0,0,0,0,0,0,1,1,0,1.996027210381233,0,0,0,51.64,55.4,6,1,0,0,4,4,1,1486.25,0,0,0 +1150,1413,2630,-9,2631,2629,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1131.5294396367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,1486.25,0,0,0 +1150,1413,2631,2629,-9,-9,4,1,0,35,1,0,3,0,2,-9,2,1,0,4,7.139640292123039,7.606571932969228,0,2,0,-9,17,0,-1,59.29430117842931,0,0,1,36,2,4,1,2,2,2019,1,1,7,0,21,20,15,1,0,1,0,7.764178666277661,7.764178666277661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,1,1486.25,0,0,0 +1150,1413,2632,-9,2631,2629,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.5259924260926,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,1486.25,0,0,0 +1151,1414,2633,-9,2635,-9,3,1,1,14,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-874.6864924515795,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,9,3,1,1033.333333333333,0,0,0 +1151,1414,2634,-9,2635,-9,2,1,0,15,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1000.606924863907,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,9,3,1,1033.333333333333,0,0,0 +1151,1414,2635,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,3,5.405019447833046,7.472718296031251,7.309236620691918,3,0,0,0,-9,0,-907.0256655068529,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,3,0,15,1,0,-9,0,9.792894938136696,9.792894938136696,0,0,0,0,0,0,0,1,1,0,0,7.421460880294735,0,0,61.28,46.17,6,4,0,0,9,3,1,1033.333333333333,0,0,0 +1152,1415,2636,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,2,7.162814591299965,7.25270378242826,0,4,0,-9,0,-9,0,-1051.812384524262,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,18,0,15,1,2,-9,0,6.477431554065809,6.477431554065809,0,0,0,0,0,0,0,1,1,0,0,0,2.390264264513231,3,35.55,50.24,4,1,0,0,1,2,0,973,0,0,0 +1153,1416,2637,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,1,1,0,3,8.181797279541211,7.985005733383231,0,3,0,0,0,-9,0,-1066.548813910661,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,30,35,15,1,1,-9,0,13.64182795780686,13.64182795780686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.48,47.57,5,1,0,1,10,4,0,272,0,0,0 +1154,1417,2638,2639,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-3,-87.63796716663352,0,0,0,78,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,13,2,1,669,0,0,0 +1154,1417,2639,2638,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,2,0,6.937998645466743,6.735530578770517,1,0,-9,47,0,3,-28.46199673078414,0,0,0,75,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,65.24145607594565,1,1,0,0,6.778850566212252,0,0,65.88,11.6,6,1,0,0,13,2,1,669,0,0,0 +1155,1418,2640,-9,-9,-9,1,1,0,100,3,0,0,0,3,-9,4,3,0,1,0,3.689541250580969,3.848739733127647,3,0,0,0,-9,0,-1021.85724690387,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.676016925973406,0,0,50.29,31.03,6,4,0,0,8,2,0,541,0,0,0 +1156,1419,2641,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,7.496465175774643,7.433804280631938,3,0,0,0,-9,0,-1013.355329747938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.21179650635097,7.43028212617109,0,0,62.12,37.54,6,1,0,0,5,3,1,426,0,0,0 +1157,1420,2642,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1038.675033956406,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,3,1,1,0,12,1,0,510,0,0,0 +1158,1421,2643,2645,-9,-9,2,1,1,34,1,1,1,0,1,-9,7,2,0,4,7.509710436150718,7.463959465742608,0,2,0,-9,8,0,4,10.67559175560626,1,0,0,30,1,4,1,3,1,2019,3,1,14,2,20,49,15,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.57,46.14,4,3,0,0,8,3,0,839.3333333333334,0,0,0 +1158,1421,2644,-9,2645,2643,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.212011054168,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,8,3,0,839.3333333333334,0,0,0 +1158,1421,2645,2643,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,4,6.74860837826976,6.79606343710428,0,2,0,-9,8,0,-4,149.7006403976769,0,0,1,34,1,4,2,3,2,2019,2,2,17,5,10,20,15,1,5,2,0,8.98001683082426,8.98001683082426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.64,50.16,5,3,0,0,8,3,0,839.3333333333334,0,0,0 +1159,1422,2646,2647,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,54,0,3,-170.5476205971052,0,0,0,69,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.59,39.96,7,1,0,0,8,2,1,750.5,0,0,0 +1159,1422,2647,2646,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,6.790268694338112,6.915706080902023,1,0,-9,9,0,-3,-17.76329968240248,-9,0,0,72,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.413284047709668,0,0,45.56,43.57,7,1,0,0,8,2,1,750.5,0,0,0 +1160,1423,2648,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-992.9395763897915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.75,32.58,4,1,0,0,13,1,0,1018,0,0,0 +1161,1424,2649,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,4,8.681327987755564,8.741558900212597,0,3,0,0,0,-9,0,-922.1697982037235,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,40,40,15,1,0,-9,0,20.99812089569412,20.99812089569412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,1442,0,0,0 +1162,1425,2650,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,4,7.71286293476267,8.583194712092501,7.915318155394321,3,0,0,0,-9,0,-915.0865953270841,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,20,0,15,1,0,-9,0,15.95353885687168,15.95353885687168,0,0,0,0,0,0,0,0,0,0,0,7.885676363182875,8.75504570183692,3,64.38,39.16,6,1,0,0,12,5,1,885,0,0,0 +1163,1426,2651,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,1,1,0,5,6.973219397197064,6.802286638556533,0,1,0,-9,8,0,0,-105.8978331097867,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,6,0,10,10,15,1,0,-9,0,11.27053803175677,11.27053803175677,0,0,0,0,0,0,0,0,0,0,1.508441011871507,0,8.780676526033936,3,54.69,57.47,6,1,0,0,10,5,1,2671,0,0,0 +1163,1427,2652,-9,-9,-9,2,1,1,50,2,0,0,0,1,-9,2,1,0,5,8.686339950126724,8.511054735927434,0,1,0,-9,8,0,0,-103.583744740352,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,5,0,54,49,15,1,0,-9,0,17.72244353954748,17.72244353954748,0,0,0,0,0,0,0,0,0,0,3.138241867880998,0,0,0,57.06,57.76,7,1,0,0,10,5,1,684,0,0,0 +1164,1428,2653,2654,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,7.352581128868203,7.596767178205323,6.033250649463307,1,0,-9,34,0,0,15.28290310532492,0,0,0,61,2,4,1,3,3,2019,1,1,7,0,30,32,15,1,0,1,0,6.339489095450559,6.339489095450559,0,0,0,0,0,0,0,0,0,0,6.650585213102771,6.055406805812798,0,0,57.16,56.15,6,1,0,0,4,4,1,1259,0,0,0 +1164,1428,2654,2653,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,4,8.130759320838683,8.381672329926793,0,1,0,-9,34,0,0,-46.55966206345809,0,0,0,61,2,4,1,3,3,2019,1,2,7,0,42,50,15,1,0,1,0,7.109545196819023,7.109545196819023,0,0,0,0,0,0,0,0,0,0,2.489963298149803,0,0,0,54.2,57.49,5,1,0,0,4,4,1,1259,0,0,0 +1165,1429,2655,-9,2657,2656,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.4058056366555,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,1154.75,0,0,0 +1165,1429,2656,2657,-9,-9,2,1,1,33,1,0,2,0,1,-9,2,1,0,4,8.45711232386074,8.77999328705013,0,2,0,-9,6,0,1,-91.37668203213337,0,0,0,32,2,4,1,2,2,2019,1,1,11,2,37,38,15,1,2,1,0,21.3030079958777,21.3030079958777,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.44,55.46,5,1,0,0,9,4,0,1154.75,0,0,0 +1165,1429,2657,2656,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,4,8.318661749085154,7.987327512967594,0,2,0,-9,10,0,-1,41.97355770893991,0,0,1,33,1,4,1,2,2,2019,1,2,7,0,40,44,15,1,0,1,0,9.654885096252825,9.654885096252825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,6,1,0,0,9,4,0,1154.75,0,0,0 +1165,1429,2658,-9,2657,2656,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.4804483175974,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,0,1154.75,0,0,0 +1166,1430,2659,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1121.438167853908,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.99,49.19,5,4,1,1,6,1,0,494,0,0,0 +1167,1431,2660,2661,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,59,0,2,80.07135068746736,0,0,0,81,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,6,2,1,1507,0,0,0 +1167,1431,2661,2660,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,3,0,6.858923365940095,7.054877523576761,1,0,-9,59,0,-2,-53.71565869406852,0,0,0,83,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.481439642735713,7.364047989925847,0,0,60.2,39.82,6,1,0,0,6,2,1,1507,0,0,0 +1168,1432,2662,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-898.2028917583845,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,17.4379268923602,0,1,1,0,0,0,0,0,55.19,39.8,6,1,0,0,9,1,0,700,0,0,0 +1169,1433,2663,2664,-9,-9,1,1,0,34,1,0,0,0,2,-9,2,1,0,4,8.117155977526261,8.174195886273649,0,1,0,-9,5,0,0,-60.99613361433093,0,0,1,34,2,4,1,3,2,2019,1,2,12,2,37,39,15,1,2,1,0,10.29220257506134,10.29220257506134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,6,1,0,0,2,5,1,1699,0,0,0 +1169,1433,2664,2663,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,4,8.282997704048121,8.577936051426867,0,1,0,-9,5,0,0,-39.56483540347511,0,0,0,34,2,4,1,-9,-9,2019,1,1,11,0,47,47,15,1,0,1,0,10.24277423172051,10.24277423172051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,2,5,1,1699,0,0,0 +1170,1434,2665,2666,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.655389675943923,8.720009252974659,0,1,0,-9,30,0,0,-181.1716689859804,0,0,0,47,3,3,1,2,2,2019,1,1,6,0,35,40,15,1,0,1,0,15.0318104846058,15.0318104846058,0,0,0,0,0,0,0,0,0,0,4.203997151106202,0,0,0,58.15,52.91,6,1,0,0,4,4,1,342.5,0,0,0 +1170,1434,2666,2665,-9,-9,1,1,1,47,1,0,0,0,3,-9,1,1,0,3,7.508162573234533,7.451317497984233,0,1,0,-9,30,0,0,-77.19285199352687,0,0,0,47,2,4,1,2,2,2019,1,2,6,0,40,45,15,1,0,1,0,4.367318218543012,4.367318218543012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,42.94,7,1,0,0,4,4,1,342.5,0,0,0 +1170,1435,2667,-9,2665,2666,3,1,0,27,2,0,0,0,2,-9,2,1,0,4,8.094010446334318,7.899159292670721,0,3,0,0,0,-9,0,-1040.604804474224,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,40,15,1,0,-9,1,7.733445594730799,7.733445594730799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,1,1010,0,0,0 +1171,1436,2668,2671,-9,-9,1,1,1,42,1,0,3,0,1,-9,2,1,0,4,9.025091472344636,8.831933650968711,0,2,0,-9,9,0,3,-14.71287083729257,0,0,0,39,1,5,1,2,2,2019,1,2,9,0,52,57,15,1,0,1,0,13.30705348379196,13.30705348379196,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,2,5,1,878,0,0,0 +1171,1436,2669,-9,2671,2668,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.0613314478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,878,0,0,0 +1171,1436,2670,-9,2671,2668,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1184.981423666678,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,878,0,0,0 +1171,1436,2671,2668,-9,-9,2,1,0,39,1,0,3,0,1,-9,2,1,0,5,8.318117896843425,8.580641844222692,0,2,0,-9,9,0,-3,59.24736260925673,0,0,1,42,1,4,1,2,3,2019,1,1,12,0,25,26,15,1,0,1,0,17.48663449002273,17.48663449002273,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,6,1,0,0,2,5,1,878,0,0,0 +1171,1436,2672,-9,2671,2668,3,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1021.974846075331,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,5,1,878,0,0,0 +1172,1437,2673,2674,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,2,8.844553237942455,8.674183062859576,0,1,0,-9,3,0,-1,12.15193760731266,0,0,1,45,2,2,1,2,-9,2019,1,1,26,11,60,62,15,1,11,1,0,10.67386435317992,10.67386435317992,0,0,0,0,0,0,0,0,0,0,1.735107548400283,0,0,0,30.52,47.21,3,1,0,0,9,5,1,360,0,0,0 +1172,1437,2674,2673,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,2,8.060663346551349,7.996580869283882,0,1,0,-9,3,0,1,11.24936889768623,0,0,0,44,1,2,1,3,-9,2019,1,2,4,0,38,88,15,1,0,1,0,11.64358533168173,11.64358533168173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.16,50.53,5,1,0,0,9,5,1,360,0,0,0 +1173,1438,2675,-9,2677,2678,3,1,0,15,2,0,2,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-1019.094141910147,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,31,3,1,0,0,10,4,1,480.75,0,0,0 +1173,1438,2676,-9,2677,2678,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.005529621868,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,480.75,0,0,0 +1173,1438,2677,2678,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,7.429295300468759,7.694212473624019,0,2,0,-9,25,0,-1,-99.12975792781199,0,0,0,46,2,4,1,2,2,2019,1,2,8,0,34,40,15,1,0,1,0,6.457743279610734,6.457743279610734,0,0,0,0,0,0,0,1,1,0,1.496520978301606,0,0,0,54.36,49.13,6,1,0,0,10,4,1,480.75,0,0,0 +1173,1438,2678,2677,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.5059025859471,8.821697580273351,7.282751326730447,2,0,-9,6,0,1,112.3410695618598,0,0,0,45,1,4,1,-9,-9,2019,1,1,7,0,36,39,15,1,0,1,0,19.83916032317532,19.83916032317532,0,0,0,0,0,0,0,1,1,0,3.08350885609833,7.790480957380337,0,0,57.16,56.15,6,1,0,0,10,4,1,480.75,0,0,0 +1174,1439,2679,-9,-9,-9,1,1,1,46,2,0,1,0,1,-9,2,1,0,4,8.902530350133812,8.613899844575615,0,4,0,-9,0,0,0,-1121.01443845087,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,8,40,40,15,1,8,-9,0,16.29574578660607,16.29574578660607,0,0,0,0,0,0,0,0,0,0,3.071097781916444,0,0,0,28.16,65.32000000000001,3,1,0,0,13,4,1,479,0,0,0 +1174,1440,2680,-9,-9,-9,2,1,0,48,2,0,1,0,1,-9,2,1,0,3,8.478559043854144,8.604436230070689,0,4,0,-9,0,0,0,-938.7508495079452,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,35,37,15,1,9,-9,0,16.77590929835998,16.77590929835998,0,0,0,0,0,0,0,0,0,0,3.973683270868606,0,0,0,37.6,55.55,3,1,0,0,13,4,1,439.5,0,0,0 +1174,1440,2681,-9,2680,2679,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1140.661873587478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,13,4,1,439.5,0,0,0 +1175,1441,2682,2683,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,7.353133021779601,7.143410693467264,1,0,-9,53,0,0,112.7598415539672,0,0,0,75,3,2,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.195488131528832,7.369077477552183,0,0,45.21,49.47,6,1,0,0,2,3,1,2493,0,0,0 +1175,1441,2683,2682,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,6.393273464226092,6.299589774912908,1,0,-9,53,0,0,-71.8925070773562,0,0,0,75,3,3,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.275225897593118,6.282915419674244,0,0,50.69,35.38,6,1,0,0,2,3,1,2493,0,0,0 +1176,1442,2684,-9,2686,2685,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.7457686208653,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,2,0,1191.333333333333,0,0,0 +1176,1442,2685,2686,-9,-9,1,1,1,35,1,1,1,0,2,-9,3,3,0,2,0,0,0,2,0,-9,4,0,5,.5919002181245165,0,0,0,30,2,2,3,-9,-9,2019,4,2,19,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.48,45.32,3,1,1,1,8,2,0,1191.333333333333,0,0,0 +1176,1442,2686,2685,-9,-9,2,1,0,30,1,1,1,0,2,-9,3,3,0,2,7.385247699367021,6.858197427536511,0,2,0,-9,4,0,-5,38.7821336070138,0,0,1,35,2,2,3,-9,-9,2019,4,1,24,11,10,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.12,24.2,5,1,1,1,8,2,0,1191.333333333333,0,0,0 +1177,1443,2687,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,1,0,6.38757219628492,6.75130067664438,3,0,0,0,-9,0,-974.8047822383251,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,32.31831749856202,1,1,0,1.414345876601729,6.579193237741836,0,0,39.61,18.47,3,1,0,0,9,2,1,1376,0,0,0 +1178,1444,2688,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,0,7.795750698412395,7.329166202171589,3,0,0,0,-9,0,-1059.219909250925,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.484031798363736,0,0,65.53,38.76,6,1,0,0,2,3,1,894,0,0,0 +1179,1445,2689,2690,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,1,0,8.054458888079095,8.257040264209719,1,0,-9,10,0,1,9.469261059482905,0,0,0,73,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.935851763713862,8.182954564077487,0,0,56.71,32.38,6,1,0,0,5,4,1,775.5,0,0,0 +1179,1445,2690,2689,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,6.898340270532092,6.519093453521653,1,0,-9,10,0,-1,198.4928179770916,0,0,0,74,1,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.663350631080482,0,0,51.41,56.15,4,1,0,0,5,4,1,775.5,0,0,0 +1180,1446,2691,2692,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,1,0,6.534548043660919,6.713388441335097,1,0,-9,50,0,-2,-31.21156330869593,0,0,0,74,3,5,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.751175648616361,6.541843094341162,0,0,39.56,34.97,4,1,0,0,2,2,1,1817,0,0,0 +1180,1446,2692,2691,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,50,0,2,-48.85264746281376,0,0,0,72,1,1,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.150583999103509,0,0,2,57.06,57.76,7,1,0,0,2,2,1,1817,0,0,0 +1181,1447,2693,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,2,1,0,4,8.556315475055261,8.392460889998368,0,3,0,0,0,-9,0,-1041.482155000623,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,35,32,15,1,2,-9,0,17.00822040484722,17.00822040484722,0,0,0,0,0,0,0,0,0,0,5.168385835154078,0,0,0,49.41,58.28,5,1,0,0,2,5,1,275,0,0,0 +1182,1448,2694,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,1,1,0,2,7.415489470189663,7.571105799507453,0,3,0,0,0,-9,0,-966.2321489653958,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,50,40,15,1,0,-9,0,4.275725309287441,4.275725309287441,0,0,0,0,0,0,0,1,1,0,0,0,75.89984968001964,3,52.54,25.99,3,1,0,1,10,3,0,228,0,0,0 +1182,1449,2695,-9,-9,-9,2,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-945.91216414094,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,18.74,4,1,0,1,10,1,0,127,0,0,0 +1183,1450,2696,2697,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,5,8.130500610002388,8.217867012240356,0,1,0,-9,3,0,5,133.064793404756,0,0,1,29,1,4,1,-9,-9,2019,1,1,12,0,2,45,15,1,0,1,0,187.8430455130425,187.8430455130425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.39,65.88,7,1,0,0,11,3,1,1239,0,0,0 +1183,1450,2697,2696,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,4,0,0,0,1,0,-9,3,0,-5,-96.67346111637235,0,1,0,34,1,5,1,-9,-9,2019,1,2,14,4,0,20,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.209775834208828,0,0,0,45.85,61.26,5,1,0,0,11,3,1,1239,0,0,0 +1184,1451,2698,-9,-9,-9,1,1,0,43,2,0,1,0,1,-9,2,1,0,4,8.22806420198846,8.263181020025534,0,4,0,0,0,-9,0,-1147.813156727982,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,45,15,1,0,-9,0,13.2175356336636,13.2175356336636,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,8,3,0,481,0,0,0 +1184,1451,2699,-9,2698,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1108.752921040855,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,3,0,481,0,0,0 +1185,1452,2700,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,7.205305653065306,7.420610502753298,3,0,0,0,-9,0,-1068.08003686928,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.472895716319683,6.779206684895929,3,44.12,47.28,3,1,0,0,10,3,1,882,0,0,0 +1185,1453,2701,-9,2700,-9,2,1,1,36,2,0,0,0,1,-9,2,1,0,4,8.485269974767899,8.358693845575722,0,3,0,0,0,-9,0,-894.1736580841816,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,38,39,15,1,2,-9,1,13.62519205190418,13.62519205190418,0,0,0,0,0,0,0,1,1,0,5.585521696627549,0,0,0,49.69,55.66,3,1,0,0,10,4,1,221,0,0,0 +1186,1454,2702,-9,2703,2705,6,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.2232130254625,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,1,1,574.1666666666666,0,0,0 +1186,1454,2703,2705,-9,-9,1,1,0,37,1,1,4,0,1,-9,6,3,0,2,0,0,0,2,0,-9,6,0,-3,0,0,0,1,40,1,1,3,2,1,2019,4,3,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.71203847528561,1,47.12,46.15,6,1,0,0,2,1,1,574.1666666666666,0,0,0 +1186,1454,2704,-9,2703,2705,5,1,1,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.528799174215,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,1,1,574.1666666666666,0,0,0 +1186,1454,2705,2703,-9,-9,3,1,1,40,1,1,4,0,1,-9,8,3,1,1,0,0,0,2,0,-9,6,0,3,0,0,0,0,37,1,2,3,-9,-9,2019,4,1,25,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.33,18.29,3,1,0,0,2,1,1,574.1666666666666,0,0,0 +1186,1454,2706,-9,2703,2705,2,1,1,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.7226102580928,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,1,574.1666666666666,0,0,0 +1186,1454,2707,-9,2703,2705,4,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.282169130313,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,1,1,574.1666666666666,0,0,0 +1187,1455,2708,-9,2711,2709,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1175.91013194113,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,2,0,316.75,0,0,0 +1187,1455,2709,2711,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,6.995953820811707,6.854847896421396,0,2,0,-9,11,0,10,-16.78336960019922,0,0,0,30,1,4,1,1,1,2019,1,2,6,0,40,20,15,1,0,1,0,3.091429256075848,3.091429256075848,0,0,0,0,0,0,0,1,1,0,2.745965395161968,0,0,0,57.16,56.15,6,5,0,0,7,2,0,316.75,0,0,0 +1187,1455,2710,-9,2711,2709,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.1637059064568,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,2,0,316.75,0,0,0 +1187,1455,2711,2709,-9,-9,2,1,0,30,1,0,2,0,1,-9,2,1,0,4,6.988271713517747,7.082635722154139,0,2,0,-9,11,0,-10,-28.34108460942782,0,0,1,40,1,4,1,-9,-9,2019,1,1,12,3,0,37,15,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.76,51.1,6,1,0,0,7,2,0,316.75,0,0,0 +1188,1456,2712,2713,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,2,27.90689230702937,0,0,0,78,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.26,38.87,6,1,0,0,4,2,1,456.5,0,0,0 +1188,1456,2713,2712,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,7.237959121191568,7.476620075955998,1,0,-9,55,0,-2,13.08848011710632,0,0,0,80,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.950032801550689,7.727796033353957,0,0,55.36,51.57,6,1,0,0,4,2,1,456.5,0,0,0 +1188,1457,2714,-9,2712,2713,3,1,1,53,2,0,0,0,2,-9,2,1,0,3,8.285589148846917,7.898352008916851,0,3,0,0,0,-9,0,-988.8029690693994,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,9.986270665828451,9.986270665828451,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,4,4,1,664,0,0,0 +1189,1458,2715,-9,-9,-9,1,1,1,19,2,0,0,0,2,-9,2,1,0,3,7.730222542741037,7.563571742485681,0,3,0,-9,0,-9,0,-865.8977109820576,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,41,0,15,1,0,-9,0,5.116865779525508,5.116865779525508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.87,53.19,5,1,0,0,13,3,1,294,0,0,0 +1190,1459,2716,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-971.8128752901142,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.9,55.39,5,1,0,1,2,1,0,662,0,0,0 +1191,1460,2717,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1152.465788856287,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.553072775913974,0,0,0,34.45,42.64,4,1,0,0,9,1,0,240,0,0,0 +1192,1461,2718,2719,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,1,8.668326405495414,8.857888572673561,0,1,0,-9,6,0,2,-73.11850666329802,0,0,0,31,2,4,1,2,-9,2019,1,2,17,6,40,42,15,1,6,1,0,15.80404699834718,15.80404699834718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.33,14.89,4,1,0,0,6,5,1,751.5,0,0,0 +1192,1461,2719,2718,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,4,9.14311109779964,8.796188130685952,6.169803415146692,1,0,-9,6,0,-2,37.93526368585017,0,0,1,33,2,1,1,-9,-9,2019,1,1,13,3,57,47,15,1,3,1,0,15.77813652081585,15.77813652081585,0,0,0,0,0,0,0,0,0,0,7.300743796704925,0,0,0,52.31,58.29,6,1,0,0,6,5,1,751.5,0,0,0 +1193,1462,2720,2721,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,2,5.641477267135985,6.666918187694063,7.116587344456829,1,0,-9,3,0,3,-84.91381604925762,0,0,0,55,2,4,1,3,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.964888869973899,0,0,43.83,37.91,2,1,0,0,11,4,1,5327,0,0,0 +1193,1462,2721,2720,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.290035041469093,8.517927298892634,0,1,0,-9,3,0,-3,79.62886847977698,0,0,0,58,2,2,3,-9,-9,2019,2,1,24,8,37,38,15,1,8,4,0,14.28095784893567,14.28095784893567,0,0,0,0,0,0,0,0,0,0,0,0,50.58223183447215,3,24.41,60.64,2,1,0,0,11,4,1,5327,0,0,0 +1194,1463,2722,2723,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,1,-27.05051342654033,0,0,0,66,2,2,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.865837894808113,0,0,0,44.51,49.63,7,1,0,0,8,3,0,1029,0,0,0 +1194,1463,2723,2722,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,2,7.366938811716303,8.434434735111035,7.546360148151359,1,0,-9,43,0,-1,41.50518109554808,0,0,0,67,3,3,3,3,3,2019,2,2,12,1,20,20,15,1,1,4,0,8.089867891354551,8.089867891354551,0,0,0,0,0,0,0,1,1,0,0,7.496707663455809,0,0,55.6,37.07,6,1,0,0,8,3,0,1029,0,0,0 +1195,1464,2724,-9,2727,2726,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.8032517375227,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,5,1,603.75,0,0,0 +1195,1464,2725,-9,2727,2726,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.42729222521,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,5,1,603.75,0,0,0 +1195,1464,2726,2727,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,3,8.997871709236172,9.092682847650275,0,2,0,-9,7,0,-1,-124.5009572540966,0,0,0,49,1,3,1,-9,-9,2019,1,1,14,4,37,36,15,1,4,1,0,22.61032611638038,22.61032611638038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,3,1,0,0,1,5,1,603.75,0,0,0 +1195,1464,2727,2726,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,3,8.650519705968108,8.552695691144459,0,2,0,-9,7,0,1,-35.5057516294946,0,0,0,48,1,3,1,2,1,2019,1,2,11,0,48,0,15,1,0,1,0,13.77363562839776,13.77363562839776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,52.22,5,1,0,0,1,5,1,603.75,0,0,0 +1196,1465,2728,2729,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,6.388355961331446,6.481888148319313,1,0,-9,10,0,-4,4.668579547800039,0,0,0,70,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.543070451531411,6.520010905242702,0,0,48.28,60.18,7,1,0,0,12,3,1,400,0,0,0 +1196,1465,2729,2728,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.002807022023086,8.161706981525237,1,0,-9,10,0,4,5.029021469744746,0,0,0,66,2,4,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.852348156786578,7.970124474025392,0,0,52.24,43.31,6,1,0,0,12,3,1,400,0,0,0 +1197,1466,2730,-9,2731,2732,3,1,0,17,2,0,0,0,2,1,2,3,0,3,6.732790988803147,6.609468917020253,0,1,0,0,0,-9,0,-1150.71229910933,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,15,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.305294745413064,0,0,0,45.46,52.15,6,1,0,0,9,4,1,843,0,0,0 +1197,1466,2731,2732,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,5,8.390615477196514,8.338795870712795,0,1,0,-9,35,0,-4,17.82699291277815,0,0,0,56,2,5,1,2,2,2019,1,2,0,0,40,45,15,1,0,1,0,17.93051801822895,17.93051801822895,0,0,0,0,0,0,0,1,1,0,6.240228902498403,0,0,0,60.02,56.42,6,1,0,0,9,4,1,843,0,0,0 +1197,1466,2732,2731,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,5,7.230160842123297,7.45392831488817,0,1,0,-9,35,0,4,-112.3090906708769,0,0,0,52,1,5,1,3,3,2019,1,1,5,0,50,0,15,1,0,1,0,3.705765415660132,3.705765415660132,0,0,0,0,0,0,0,1,1,0,3.171186393318006,0,0,0,62.39,56.71,6,1,0,0,9,4,1,843,0,0,0 +1197,1467,2733,-9,-9,-9,4,1,1,33,2,0,0,0,1,-9,2,1,0,4,9.052618365646252,8.915230188496805,0,3,0,-9,0,-9,0,-1017.239774926785,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,48,0,15,1,0,-9,0,17.66351465022925,17.66351465022925,0,0,0,0,0,0,0,1,1,0,2.170105693110973,0,0,0,57.16,56.15,6,1,0,0,9,5,1,607,0,0,0 +1198,1468,2734,2736,-9,-9,2,1,0,43,1,0,3,0,3,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-8,79.55698353553794,0,0,1,51,2,3,1,3,3,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.7522508284251,3,32.4,61.08,4,3,0,0,6,4,1,657.5,0,0,0 +1198,1468,2735,-9,2734,2736,7,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.2768352053191,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,4,1,657.5,0,0,0 +1198,1468,2736,2734,-9,-9,1,1,1,51,1,0,3,0,2,-9,1,1,0,3,9.069239959711838,9.111332974971177,0,2,0,-9,6,0,8,118.095495133991,0,0,0,43,3,5,3,3,3,2019,2,2,20,8,36,50,15,1,8,3,0,25.75430925302106,25.75430925302106,0,0,0,0,0,0,0,1,1,0,0,0,5.605856674957407,3,36.05,42.89,4,3,0,0,6,4,1,657.5,0,0,0 +1198,1468,2737,-9,2734,2736,6,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.064568313518,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,4,1,657.5,0,0,0 +1198,1469,2738,-9,2734,2736,3,1,0,24,2,0,3,0,1,-9,2,1,0,4,6.997723397111053,7.15438192649502,0,3,0,0,0,-9,0,-954.1172892263688,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,16,5,38,0,15,1,5,-9,1,2.677772773243575,2.677772773243575,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.33,58.87,4,3,0,0,6,2,1,539,0,0,0 +1198,1470,2739,-9,2734,2736,4,1,0,23,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-956.9523569609289,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,6,3,0,0,6,1,1,701,0,0,0 +1198,1471,2740,-9,2734,2736,9,1,1,21,2,0,3,0,2,-9,2,1,0,4,8.883705434723677,8.59295201981382,0,3,0,0,0,-9,0,-1090.73965436335,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,14.30067748040608,14.30067748040608,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,6,5,1,1788,0,0,0 +1198,1472,2741,-9,2734,2736,5,1,0,19,2,0,3,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1012.693004847325,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,23,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.36,32.21,7,3,0,0,6,1,1,378,0,0,0 +1199,1473,2742,2743,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,5,0,4.713804218909164,4.470393763810844,1,0,-9,21,0,7,165.685711754655,0,0,0,60,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.20110887144722,4.679082458508892,.4886851417186111,3,59.43,58.05,6,1,0,0,8,2,0,359.5,0,0,0 +1199,1473,2743,2742,-9,-9,2,1,0,60,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,28,0,-7,-87.50484531664071,0,0,0,67,1,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.088713568711801,0,0,0,61.58,33.61,7,1,0,0,8,2,0,359.5,0,0,0 +1199,1474,2744,-9,2743,2742,4,1,0,20,2,0,0,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1054.249221309572,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,11,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.41,59.45,3,1,0,1,8,1,0,828,0,0,0 +1200,1475,2745,2746,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,5,0,4.304249271733582,4.625307320016085,1,0,-9,55,0,1,-45.76805324320669,0,0,0,74,2,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.790821086391778,4.366677286249752,0,0,57.06,57.76,6,1,0,0,7,1,0,549.5,0,0,0 +1200,1475,2746,2745,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,55,0,-1,47.21369190688183,0,0,0,75,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.920120093785328,0,0,0,57.16,56.15,7,1,0,0,7,1,0,549.5,0,0,0 +1201,1476,2747,2750,-9,-9,1,1,0,33,1,0,5,0,3,-9,6,3,0,2,0,0,0,2,0,-9,1,-9,-21,7.349350247820579,-9,0,1,54,2,4,1,-9,-9,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,49.11,5,3,0,1,7,2,0,463,0,0,0 +1201,1476,2748,-9,2747,2750,5,1,0,9,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1023.619180316992,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,7,2,0,463,0,0,0 +1201,1476,2749,-9,2747,2750,4,1,0,13,2,0,5,1,3,-9,-9,2,0,1,0,0,0,2,0,-9,0,-9,0,-1001.952064673064,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,3,3,0,0,7,2,0,463,0,0,0 +1201,1476,2750,2747,-9,-9,2,1,1,54,1,0,5,0,2,-9,2,1,0,4,7.10793217703088,6.990488922489714,0,2,0,-9,1,-9,21,112.5681325893929,-9,0,0,33,3,2,3,3,3,2019,2,1,9,0,8,0,15,1,1,3,0,15.88667030896937,15.88667030896937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,7,2,0,463,0,0,0 +1201,1476,2751,-9,2747,2750,7,1,1,5,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1053.649725198529,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,7,2,0,463,0,0,0 +1201,1476,2752,-9,2747,2750,6,1,0,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-836.6661352293389,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,7,2,0,463,0,0,0 +1201,1476,2753,-9,2747,2750,3,1,0,17,2,0,5,1,2,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-915.2927504599604,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,18,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,4,3,0,0,7,2,0,463,0,0,0 +1202,1477,2754,2755,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-6,-88.41439109713569,0,0,0,70,3,3,1,3,3,2019,3,2,18,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.2,48.71,6,1,0,0,7,2,0,535.5,0,0,0 +1202,1477,2755,2754,-9,-9,2,1,1,70,1,0,0,0,3,-9,2,1,0,3,3.049830039954932,7.488111154541969,7.356715721453131,1,0,-9,7,0,6,-19.61566408609825,0,0,0,64,2,3,3,-9,-9,2019,2,1,10,0,40,14,15,1,1,4,0,.0724619717633454,.0724619717633454,0,0,0,0,0,0,0,1,1,0,0,7.132764421480513,0,0,53,47,5,1,0,0,7,2,0,535.5,0,0,0 +1203,1478,2756,2757,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.299805702334025,8.0939255928514,0,2,0,-9,9,0,2,-107.5749930972908,0,0,0,48,1,4,1,3,3,2019,1,2,7,0,40,39,15,1,0,1,0,9.088975716152873,9.088975716152873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,13,4,1,1468.75,0,0,0 +1203,1478,2757,2756,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.776620267285541,8.578422647070377,0,2,0,-9,9,0,-2,-24.38556357199754,0,0,0,50,2,4,1,3,3,2019,1,1,6,0,38,38,15,1,0,1,0,21.6124958476858,21.6124958476858,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,53.97,6,1,0,0,13,4,1,1468.75,0,0,0 +1203,1478,2758,-9,2757,2756,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.6364616371895,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,4,1,1468.75,0,0,0 +1203,1478,2759,-9,2757,2756,3,1,0,16,2,0,2,0,2,-9,97,2,0,4,0,0,0,2,0,0,0,-9,0,-963.1234729286623,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.606631402593822,0,0,0,52.34,56.95,7,1,0,0,13,4,1,1468.75,0,0,0 +1204,1479,2760,2761,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,2,0,7.471389692292933,7.571555510646235,1,0,-9,55,0,0,13.75194799926163,0,0,0,80,3,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.175762549828987,7.679836209262218,26.01091718752907,1,43.59,49.11,6,1,0,0,2,3,1,789,0,0,0 +1204,1479,2761,2760,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,54,0,0,92.51896800826006,0,0,0,80,1,2,3,-9,-9,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,1,13.14795675014416,5.559277523166768,0,0,0,45.78794981528395,1,1,0,0,0,0,0,42.52,28.09,5,1,0,0,2,3,1,789,0,0,0 +1205,1480,2762,2763,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,1,-9,3,0,-9,0,0,71,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.35,36.31,6,1,0,0,13,1,0,982,0,0,0 +1205,1480,2763,2762,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,-3,0,-9,0,0,74,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,13,1,0,982,0,0,0 +1206,1481,2764,2765,-9,-9,1,1,0,51,1,0,2,0,1,-9,2,1,0,4,8.389713646995443,8.600577288847431,0,2,0,-9,6,0,6,6.520758016750296,0,0,0,45,2,1,3,3,1,2019,2,2,10,2,37,35,15,1,2,3,0,24.66045638123507,24.66045638123507,0,0,0,0,0,0,0,1,1,0,0,0,.6269746426746299,1,54.2,57.49,6,1,0,0,11,3,1,593,0,0,0 +1206,1481,2765,2764,-9,-9,2,1,1,45,1,0,2,0,2,-9,3,3,0,1,0,0,0,2,0,-9,6,0,-6,11.66413631934781,0,0,0,51,1,4,1,2,1,2019,3,1,28,12,0,49,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.24,26.72,2,1,1,1,11,3,1,593,0,0,0 +1206,1482,2766,-9,2764,2765,3,1,0,18,2,0,2,1,2,0,7,2,0,4,6.748350805677485,6.705401320069877,0,3,0,0,0,-9,0,-1095.895348586111,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,1,7,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.17,46.24,6,1,0,0,11,3,1,1459,0,0,0 +1207,1483,2767,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,5,8.673971230504899,8.865803363825796,0,3,0,-9,0,-9,0,-892.5106113333746,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,39,0,15,1,1,-9,0,17.90858432577976,17.90858432577976,0,0,0,0,0,0,0,0,0,0,4.042140848863558,0,0,0,52.32,57.18,6,1,0,0,4,5,0,4409,0,0,0 +1208,1484,2768,-9,-9,-9,1,1,0,48,3,0,1,0,3,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-936.1903864470231,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,27.38,38.97,2,1,0,1,9,1,0,643,0,0,0 +1209,1485,2769,2770,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,5.302730867237358,5.191264037116627,1,0,-9,10,0,-3,-66.27006537624538,0,0,0,79,2,4,3,2,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.486542306300089,5.478595990289095,0,0,48.54,46.62,6,1,0,0,12,2,1,339.5,0,0,0 +1209,1485,2770,2769,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,6.561769388737143,6.285451112681611,1,0,-9,10,0,3,83.54574056093243,0,0,0,76,2,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,7.931972653813863,0,0,0,0,1,1,0,4.764116389032639,6.599097376673488,26.59436965101247,2,54.2,57.49,5,1,0,0,12,2,1,339.5,0,0,0 +1210,1486,2771,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,2,0,6.758933984160644,6.589548414652122,3,0,0,0,-9,0,-987.8755428386281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,0,0,11.02960294540486,1,1,0,2.370139340224319,6.92654364921331,0,0,66.52,16.76,5,1,0,0,9,2,1,2791,0,0,0 +1211,1487,2772,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,4,3,0,2,0,5.064295008084359,4.986563411234939,3,0,0,0,-9,0,-1022.696704343489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,54,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.894850696526083,4.943442801640246,0,0,42.46,41.62,3,1,0,0,11,2,1,89,0,0,0 +1212,1488,2773,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,2,6.849334665425618,6.695001191996101,0,3,0,0,0,-9,0,-994.0528990838552,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,7,9,9,15,1,7,-9,0,11.35994622380903,11.35994622380903,0,0,0,0,0,0,0,1,1,0,.8524593691019045,0,7.371605965671489,3,34.25,32.95,5,1,0,0,1,2,1,314,0,0,0 +1213,1489,2774,2775,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,8.953868849579402,9.352948247954739,0,1,0,-9,6,0,6,-42.84489173945857,0,0,0,50,2,5,3,-9,-9,2019,2,1,9,0,0,40,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7.715943536833699,0,0,0,54,53,6,4,0,0,8,5,1,378.5,0,0,0 +1213,1489,2775,2774,-9,-9,1,1,0,50,1,0,0,0,2,-9,6,3,0,5,0,0,0,1,0,-9,6,0,-6,8.680276749374046,0,0,0,56,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.63,53.72,5,4,0,0,8,5,1,378.5,0,0,0 +1213,1490,2776,-9,2775,2774,3,1,0,21,2,0,0,0,2,1,97,3,0,5,0,0,0,3,0,0,0,-9,0,-978.7677989062549,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,28,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.45,33.75,3,4,0,0,8,1,1,733,0,0,0 +1214,1491,2777,2778,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,3,8.443947877419816,8.750373258156223,0,1,0,-9,8,0,-1,-.958091780942665,0,0,0,62,2,2,3,2,2,2019,2,2,10,0,39,39,15,1,0,4,0,15.41862175113066,15.41862175113066,0,0,0,0,0,0,0,0,0,0,3.361434531625312,0,0,3,51.7,49.11,6,1,0,0,11,4,1,608.5,0,0,0 +1214,1491,2778,2777,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,2,0,6.46216486343531,6.402361468878905,1,0,-9,8,0,1,-48.82527669106727,0,0,0,61,2,3,1,-9,-9,2019,3,1,15,4,0,0,15,4,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.530099285643997,6.90683032179671,0,0,47.55,33.8,4,1,0,1,11,4,1,608.5,0,0,0 +1215,1492,2779,2780,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,6.588110961116389,6.521542863067626,1,0,-9,61,0,-5,86.98336901252294,0,0,0,87,2,1,3,3,3,2019,4,1,17,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.915059697696857,6.56765714352737,0,0,39.58,42.82,6,1,0,0,7,3,1,664,0,0,0 +1215,1492,2780,2779,-9,-9,1,1,1,87,1,0,0,0,2,-9,4,3,0,1,0,7.839595715519648,7.399212419354345,1,0,-9,61,0,5,76.95169577294141,0,0,0,82,3,2,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.409769935447479,7.424695400127697,0,0,50.68,27.06,6,1,0,0,7,3,1,664,0,0,0 +1216,1493,2781,2782,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,7.891398647337102,7.946586822618421,1,0,-9,50,0,5,-38.33954318489572,0,0,0,67,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.442179251902794,0,0,48.68,32.15,6,1,0,0,11,3,1,577,0,0,0 +1216,1493,2782,2781,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-5,63.55243089449877,0,0,0,72,3,2,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,0,5.695457178176451,0,0,0,0,1,1,0,0,0,0,0,52.55,47.38,6,1,0,0,11,3,1,577,0,0,0 +1217,1494,2783,2784,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,9.321955540979136,9.437746607246375,1,0,-9,8,0,6,40.26388026304458,0,0,0,63,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.327066897005929,9.237390383343763,0,0,58.15,52.91,6,1,0,0,11,5,1,698,0,0,0 +1217,1494,2784,2783,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,6.300062739494391,6.337689312735642,1,0,-9,8,0,-6,109.1575295969549,0,0,0,69,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.308744364485103,0,0,61.12,51.57,6,1,0,0,11,5,1,698,0,0,0 +1218,1495,2785,-9,-9,-9,1,1,1,48,3,0,1,0,2,-9,1,1,0,4,5.986170875374023,5.742944574739704,0,4,0,0,0,-9,0,-978.6778080058942,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,1.115475866734404,1.115475866734404,0,0,0,0,0,0,0,1,1,0,0,0,2.472053293432799,3,49.76,51.71,3,4,0,1,8,2,0,604.5,0,0,0 +1218,1495,2786,-9,-9,2785,2,1,0,17,2,0,1,1,2,0,7,2,0,4,7.529419943770753,7.410616730191681,0,4,0,0,0,-9,0,-982.7005281897851,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,6,4,0,0,8,2,0,604.5,0,0,0 +1219,1496,2787,2788,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,5,0,8.132449905879248,8.10046625239757,1,0,-9,39,0,1,73.04063259177858,0,0,0,59,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.494591477495108,8.054844831499979,0,0,55.63,55.6,6,1,0,0,4,3,1,725.5,0,0,0 +1219,1496,2788,2787,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,39,0,-1,69.0811845588956,0,0,0,60,2,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.247894861195947,0,0,0,62.67,49.54,6,1,0,0,4,3,1,725.5,0,0,0 +1220,1497,2789,-9,2790,2792,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.737147552278,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,2,0,0,8,5,0,255,0,0,0 +1220,1497,2790,2792,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,5,0,0,0,2,0,-9,13,0,1,35.04607925659334,0,0,1,35,1,5,1,1,1,2019,1,2,11,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.251767131549113,0,0,0,52.27,57.22,6,2,0,0,8,5,0,255,0,0,0 +1220,1497,2791,-9,2790,2792,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.343994936184,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,8,5,0,255,0,0,0 +1220,1497,2792,2790,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,5,9.609149177616953,9.614178630415932,0,2,0,-9,13,0,-1,6.5061582446667,0,0,0,36,1,5,1,-9,-9,2019,1,1,9,0,60,55,15,1,0,1,0,29.2637966814824,29.2637966814824,0,0,0,0,0,0,0,0,0,0,4.880218309525078,0,0,0,45.81,61.51,6,1,0,0,8,5,0,255,0,0,0 +1221,1498,2793,-9,2796,2794,2,1,1,22,2,0,0,0,2,-9,2,1,0,5,8.293483076957402,8.38045415149416,0,3,0,0,0,-9,0,-936.9340767183833,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,40,15,1,1,-9,1,11.19181942791345,11.19181942791345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,9,4,0,380,0,0,0 +1221,1499,2794,2796,-9,-9,3,1,1,52,1,0,0,0,2,-9,1,1,0,3,6.807283402578913,7.025458451467685,0,1,0,-9,7,0,5,-6.322879885523522,0,0,0,47,2,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,2.642157693015295,2.642157693015295,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,5,1,0,0,9,3,0,794,0,0,0 +1221,1499,2795,-9,2796,2794,4,1,0,15,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-932.2825366253113,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,0,794,0,0,0 +1221,1499,2796,2794,-9,-9,1,1,0,47,1,0,0,0,2,-9,1,1,0,4,7.316933326193564,7.340154523313474,0,1,0,-9,7,0,-5,-128.9333292148288,0,0,0,52,2,3,1,2,3,2019,1,3,9,0,12,15,15,1,0,1,0,16.46373582967687,16.46373582967687,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,3,0,794,0,0,0 +1222,1500,2797,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.432488193607483,7.989552269286811,0,3,0,-9,0,-9,0,-898.7032274651269,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,33,0,15,1,2,-9,0,11.38879485332783,11.38879485332783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.88,50.21,4,1,0,0,2,4,0,137,0,0,0 +1223,1501,2798,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,7.80237579567048,7.496296967065491,3,0,0,0,-9,0,-992.7381510988038,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.134346083875194,7.9811660649406,0,0,52.24,43.31,6,1,0,0,9,3,1,517,0,0,0 +1224,1502,2799,-9,2800,2802,4,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-874.0353442822309,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,11,3,0,605.75,0,0,0 +1224,1502,2800,2802,-9,-9,2,1,0,37,1,0,3,0,2,-9,97,3,0,3,0,0,0,2,0,-9,3,0,0,21.19898415002586,0,0,1,37,3,4,1,-9,-9,2019,3,1,15,3,0,43,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.3315400969949,3,52,54.51,5,1,0,1,11,3,0,605.75,0,0,0 +1224,1502,2801,-9,2800,2802,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.671667032395,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,605.75,0,0,0 +1224,1502,2802,2800,-9,-9,1,1,1,37,1,0,3,0,3,-9,2,1,0,4,8.292997903997621,8.099894049011169,0,2,0,-9,3,0,0,-92.43018899441942,0,0,0,37,2,3,3,3,1,2019,2,2,10,1,45,48,15,1,1,3,0,8.592870657379558,8.592870657379558,0,0,0,0,0,0,0,1,1,0,0,0,5.311455263255989,3,57.16,56.15,5,1,0,1,11,3,0,605.75,0,0,0 +1225,1503,2803,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,2,8.852414918025151,9.28793745047146,0,3,0,0,0,-9,0,-1029.767671976767,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,10,41,0,15,1,10,-9,0,18.67408930325017,18.67408930325017,0,0,0,0,0,0,0,0,0,0,0,0,5.037041420140332,3,48.27,23.82,4,4,0,0,8,5,0,649,0,0,0 +1226,1504,2804,2805,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,5.619558081832591,8.397260716662279,8.281040094635882,1,0,-9,36,0,-4,-30.20463302508255,0,0,0,67,2,4,3,2,2,2019,4,2,11,3,1,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.440317763151503,0,0,48.87,58.55,6,1,0,0,6,3,1,375,0,0,0 +1226,1504,2805,2804,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,4.776788445055741,5.298206866858209,1,0,-9,35,0,4,29.921370662722,0,0,0,63,1,4,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.582152400293299,5.291139535866711,0,0,54.2,57.49,7,1,0,0,6,3,1,375,0,0,0 +1227,1505,2806,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-937.9413213233902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,1.363379990194479,0,0,0,15.15985444108536,41.95256971165641,1,1,0,0,0,0,0,49.11,14.6,6,1,0,0,2,1,0,475,0,0,0 +1228,1506,2807,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,3,3,0,3,0,5.830946355600685,6.028780446168032,3,0,0,0,-9,0,-863.8704015852267,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.998128643633762,0,0,54.37,54.8,6,1,1,0,11,2,0,88,0,0,0 +1229,1507,2808,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,4,0,1.187337046126346,.9285072707758486,3,0,0,0,-9,0,-1021.539067277895,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.642961410752075,1.181680178331685,5.189446019347828,3,57.55,44.95,6,1,0,0,7,1,1,979,0,0,0 +1230,1508,2809,-9,2811,2810,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.137316543627,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,1,551.3333333333334,0,0,0 +1230,1508,2810,2811,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,3,7.685542438510552,7.652600927729342,0,2,0,-9,8,0,7,11.18821579634698,0,0,0,35,1,2,1,-9,-9,2019,1,1,8,0,40,38,15,1,0,1,0,7.375309253534269,7.375309253534269,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.9,54.53,6,1,0,0,11,4,1,551.3333333333334,0,0,0 +1230,1508,2811,2810,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,2,8.40433160428231,8.762834142283458,0,2,0,-9,8,0,-7,28.08553461980785,0,0,1,42,2,3,1,2,2,2019,1,2,16,4,48,37,15,1,4,1,0,15.03680779886584,15.03680779886584,0,0,0,0,0,0,0,1,1,0,0,0,10.98952250812074,3,35.53,45.84,3,1,0,0,11,4,1,551.3333333333334,0,0,0 +1231,1509,2812,2813,-9,-9,1,1,0,50,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,34,0,0,0,0,0,0,50,3,2,3,3,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.39,37.66,4,3,0,0,4,1,1,779.6666666666666,0,0,0 +1231,1509,2813,2812,-9,-9,2,1,1,50,1,0,1,0,3,-9,3,3,0,2,0,0,0,2,0,-9,34,0,0,0,0,0,0,50,3,2,3,3,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.39,37.66,4,3,1,0,4,1,1,779.6666666666666,0,0,0 +1231,1509,2814,-9,2812,2813,6,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1009.943308023675,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,5,2,0,0,4,1,1,779.6666666666666,0,0,0 +1231,1510,2815,-9,2812,2813,3,1,1,27,2,0,1,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1097.237597890716,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.43,41.7,4,3,1,1,4,1,1,266,0,0,0 +1231,1511,2816,-9,2812,2813,4,1,1,26,3,0,1,0,2,-9,2,1,0,3,7.943143400573582,7.794128188847405,0,3,0,0,0,-9,0,-1133.41846797155,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,35,0,15,1,0,-9,1,8.430553734669912,8.430553734669912,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.45,57.49,4,3,0,0,4,4,1,720,0,0,0 +1231,1512,2817,-9,2812,2813,5,1,0,22,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1105.60503567726,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.15,53.25,4,3,0,0,4,1,1,944,0,0,0 +1232,1513,2818,2819,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,2,0,7.548573905772203,7.562187870655346,1,0,-9,15,0,2,-25.47097351758377,0,0,0,69,3,4,3,3,3,2019,4,2,13,4,0,0,15,4,4,4,0,0,0,1,0,17.81490679358026,0,0,0,0,1,1,0,0,7.59663232145459,0,3,51.16,18.85,6,1,0,0,1,3,1,757.5,0,0,0 +1232,1513,2819,2818,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,6.19938625846871,6.537387136502733,1,0,-9,15,0,-2,145.7626481020078,0,0,0,71,1,2,3,3,3,2019,4,1,8,0,25,25,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.332801617620319,6.512255880088021,.8952716134599825,1,49.97,56.66,4,1,0,0,1,3,1,757.5,0,0,0 +1233,1514,2820,2821,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,4,8.384632401786863,8.544008907817194,0,1,0,-9,4,0,-4,1.64493074401851,0,1,1,29,1,4,1,2,2,2019,1,2,7,0,55,55,15,1,0,1,0,8.936905274787831,8.936905274787831,0,0,0,0,0,0,0,0,0,0,.2514574959948788,0,0,0,54.79,55.86,1,1,0,0,4,5,1,524,0,0,0 +1233,1514,2821,2820,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,7.974434309687497,8.278962887573172,0,1,0,-9,4,0,4,118.0900921741238,0,1,0,25,2,4,1,-9,-9,2019,1,1,10,1,39,38,15,1,1,1,0,9.662053459722147,9.662053459722147,0,0,0,0,0,0,0,0,0,0,2.660722900491832,0,0,0,45.97,54.57,5,1,0,0,4,5,1,524,0,0,0 +1234,1515,2822,2823,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-3,138.1150562703614,0,0,0,68,1,5,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.167070095790089,0,0,0,53.68,45.47,6,1,0,0,9,3,1,653,0,0,0 +1234,1515,2823,2822,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,5,0,7.638082279694664,8.088538917597713,1,0,-9,45,0,3,77.63647483039256,0,0,0,65,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.655067776057537,7.861895149999521,0,0,57.06,57.76,7,1,0,0,9,3,1,653,0,0,0 +1235,1516,2824,-9,2826,2825,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.3588052570154,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,929.6666666666666,0,0,0 +1235,1516,2825,2826,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,3,8.888078995177828,8.805542905415773,0,2,0,-9,7,0,1,-66.93553517128129,0,0,0,36,1,4,1,2,2,2019,1,1,16,4,57,47,15,1,4,1,0,14.73989890680145,14.73989890680145,0,0,0,0,0,0,0,1,1,0,8.31835852677699,0,0,0,35.8,59.5,5,1,0,0,9,5,1,929.6666666666666,0,0,0 +1235,1516,2826,2825,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,4,7.576277632223682,7.650690575193437,0,2,0,-9,12,0,-1,-42.17953744074356,0,0,1,37,1,3,1,1,1,2019,1,2,6,0,26,40,15,1,0,1,0,7.934709618990777,7.934709618990777,0,0,0,0,0,0,0,1,1,0,8.158132684827118,0,0,0,51.83,57.2,6,1,0,0,9,5,1,929.6666666666666,0,0,0 +1236,1517,2827,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,6.218232114967267,6.534017418417573,3,0,0,0,-9,0,-1041.390452032509,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.302451044902621,0,0,0,30.43,64.71000000000001,6,1,0,0,5,2,1,318,0,0,0 +1237,1518,2828,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,4,8.099213104567385,8.372833876388782,6.107096996588101,4,0,-9,0,1,0,-1023.552307767817,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,15,4,37,37,15,1,4,-9,0,10.99655917212819,10.99655917212819,0,0,0,0,0,0,0,1,1,0,5.623557020924174,0,0,0,40.71,62.41,5,1,0,0,1,3,1,450.5,0,0,0 +1237,1518,2829,-9,2828,-9,3,1,0,16,2,0,2,0,2,-9,3,2,0,3,0,3.68329523390453,3.676629674202299,4,0,0,0,-9,0,-822.4370263749892,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.491206133539303,0,0,0,45.43,53.5,4,1,1,0,1,3,1,450.5,0,0,0 +1238,1519,2830,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,3,0,7.972231333099256,7.819191837277454,3,0,0,0,-9,0,-916.9690748047908,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.441119566042824,7.805555526441124,0,0,56.94,49.53,6,1,0,0,1,4,1,608,0,0,0 +1239,1520,2831,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,7.674288709930198,8.019107979454693,3,0,-9,0,1,0,-971.460181495115,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.25306229744055,7.83889141795954,0,0,39.09,60.15,4,1,0,0,9,3,1,313,0,0,0 +1240,1521,2832,-9,2833,2834,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.9425189722879,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,4,1,962,0,0,0 +1240,1521,2833,2834,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,5,7.780266898175867,7.743064058896542,0,2,0,-9,16,0,-2,60.37443212276234,0,0,1,40,2,3,1,3,3,2019,1,1,11,1,30,32,15,1,1,1,0,9.411632226600277,9.411632226600277,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,0,6,4,1,962,0,0,0 +1240,1521,2834,2833,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,3,8.747321126008654,8.788022587102155,0,2,0,-9,19,0,2,-150.3364897372847,0,0,0,38,2,5,1,2,2,2019,1,2,9,0,47,44,15,1,0,1,0,12.82816530585209,12.82816530585209,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.24,53.41,6,1,0,0,6,4,1,962,0,0,0 +1240,1521,2835,-9,2833,2834,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.566544274743,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,1,962,0,0,0 +1241,1522,2836,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,7.007824281415301,7.147296326773906,3,0,0,0,-9,0,-908.7274208602289,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.926068353339185,6.9520402445428,0,3,36.37,57.89,6,1,0,0,7,2,1,399,0,0,0 +1241,1523,2837,-9,2836,-9,2,1,0,45,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1031.886786687238,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.69953487613401,0,0,0,57.91,48.98,6,1,1,0,7,1,1,1338,0,0,0 +1242,1524,2838,-9,-9,-9,1,1,0,21,2,0,0,0,1,-9,2,1,0,4,7.947653157387815,7.888658277169308,5.214808409659036,3,0,0,0,-9,0,-951.0999389310773,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,2,73,8,15,1,2,-9,0,4.666511024754656,4.666511024754656,0,0,0,0,0,0,0,0,0,0,5.633129592812374,0,0,0,51.24,58.84,5,1,0,0,6,4,0,352,0,0,0 +1243,1525,2839,-9,-9,-9,4,1,1,43,2,0,0,0,2,-9,1,1,0,5,6.101114387764034,6.058637843031988,0,3,0,0,0,-9,0,-936.5606454308752,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,40,36,15,1,0,-9,1,.9950542437233247,.9950542437233247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,53.47,7,3,0,0,4,2,0,432,0,0,0 +1244,1526,2840,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,5.890930561177465,6.344161149961783,3,0,0,0,-9,0,-928.8402336600352,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,4,3,-9,0,0,0,1,3.545186969014288,0,0,0,3.111522756271556,0,1,1,0,0,5.817486189426698,0,0,33.42,36.05,3,1,0,0,10,2,0,394,0,0,0 +1245,1527,2841,2842,-9,-9,2,1,1,66,1,0,0,0,3,-9,2,1,0,3,8.225366803649482,8.141570551553704,0,1,0,-9,4,0,-2,24.63403473519359,0,0,0,68,2,4,3,-9,-9,2019,2,1,10,0,50,50,15,1,1,4,0,4.734954025152197,4.734954025152197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,10,3,1,327.5,0,0,0 +1245,1527,2842,2841,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,40,0,2,80.66140836173739,0,0,0,66,3,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.64,52.85,6,5,0,0,10,3,1,327.5,0,0,0 +1246,1528,2843,2844,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,4,8.460139271969775,8.253240000087844,0,1,0,-9,3,0,-1,-21.66783535599074,0,1,1,27,2,3,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,11.08722482334331,11.08722482334331,0,0,0,0,0,0,0,0,0,0,.4533140856402046,0,0,0,53.39,52.35,6,1,0,0,12,4,1,793.5,0,0,0 +1246,1528,2844,2843,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,3,7.675045872438958,7.63019424446458,0,1,0,-9,3,0,1,-50.06197088425625,0,1,0,26,2,4,1,2,2,2019,1,2,10,1,40,40,15,1,1,1,0,6.30817065390815,6.30817065390815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.6,53.68,6,1,0,0,12,4,1,793.5,0,0,0 +1247,1529,2845,2847,-9,-9,2,1,1,29,1,1,1,0,2,-9,1,1,0,4,8.36982207129533,8.573691066009932,0,2,0,-9,6,0,-1,-13.43724329023513,0,1,0,30,1,4,1,-9,-9,2019,1,1,10,0,68,0,15,1,1,1,0,7.749903021986182,7.749903021986182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,1,0,0,11,4,1,491.3333333333333,0,0,0 +1247,1529,2846,-9,2847,2845,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.1684554382791,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,1,491.3333333333333,0,0,0 +1247,1529,2847,2845,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,4,7.22291958147204,7.849775291352728,0,2,0,-9,6,0,1,27.40099138404868,0,0,1,29,2,4,1,2,2,2019,1,2,11,0,20,40,15,1,2,1,0,7.812503938756704,7.812503938756704,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,11,4,1,491.3333333333333,0,0,0 +1248,1530,2848,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,3,8.07604064159236,8.653450438596886,7.136230163510483,3,0,0,0,-9,0,-1050.75621856359,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,38,35,15,1,0,-9,0,10.33052416494147,10.33052416494147,0,0,0,0,0,0,0,0,0,0,.4579909353743699,7.25709832091156,0,0,67.51000000000001,35.12,7,4,0,0,8,4,1,211,0,0,0 +1249,1531,2849,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,4,3,0,1,0,7.283675181020678,7.463445620534221,3,0,-9,0,1,0,-1018.584647538752,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,7.083469587429162,7.189477600362313,3.346696066020806,3,48.15,18.76,3,1,0,0,9,3,0,640,0,0,0 +1250,1532,2850,2851,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,5.434289023287349,5.118264143152648,1,0,-9,6,0,1,76.92969636827405,0,0,0,79,2,1,3,-9,-9,2019,4,1,15,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.61215911843594,5.149637357384909,119.9268869128447,1,51.81,54.55,2,1,0,0,4,2,1,1023,0,0,0 +1250,1532,2851,2850,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,0,6.789386123570757,6.525383474557124,1,0,-9,6,0,-1,-50.66764994703645,0,0,0,80,3,3,3,3,3,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.413144199448559,6.75388782964273,0,0,55.27,39.95,3,1,0,0,4,2,1,1023,0,0,0 +1251,1533,2852,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,2,1,0,3,8.773691632255215,9.10664470085047,0,4,0,0,0,-9,0,-970.5989499248457,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,55,55,15,1,0,-9,0,18.97610503592597,18.97610503592597,0,0,0,0,0,0,0,0,0,0,6.872523124808196,0,4.765920148158412,3,54.96,53.17,6,1,0,0,9,5,1,567,0,0,0 +1251,1534,2853,-9,-9,-9,2,1,0,23,2,0,1,0,1,-9,2,1,0,3,6.891793404340565,6.448408401831399,0,4,0,-9,0,-9,0,-912.1361308886184,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,25,0,15,1,2,-9,0,3.720981952005305,3.720981952005305,0,0,0,0,0,0,0,0,0,0,0,0,0,3,53.59,49.64,4,1,0,0,9,2,1,832,0,0,0 +1252,1535,2854,2855,-9,-9,1,1,0,45,1,0,0,0,3,-9,2,1,0,4,7.37798559648895,7.271124962913659,0,1,0,-9,26,0,-4,111.1808637687308,0,0,0,49,2,3,1,3,-9,2019,1,2,21,9,25,25,15,1,9,1,0,6.790428314942042,6.790428314942042,0,0,0,0,0,0,0,0,0,0,0,0,3.662864483956289,3,41.17,59.31,7,1,0,0,6,5,1,761.5,0,0,0 +1252,1535,2855,2854,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,3,8.722683964712438,9.103586325569065,0,1,0,-9,26,0,4,-130.2908536216082,0,0,0,45,3,4,1,3,3,2019,1,1,13,1,48,48,15,1,1,1,0,21.47451449207222,21.47451449207222,0,0,0,0,0,0,0,0,0,0,2.310436875325434,0,2.003123108230847,3,55.51,46.03,4,1,0,0,6,5,1,761.5,0,0,0 +1252,1536,2856,-9,2854,2855,3,1,0,22,2,0,0,0,2,-9,2,1,0,5,7.966287138310828,8.120194305636755,0,3,0,0,0,-9,0,-992.588725329183,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,40,15,1,0,-9,1,9.928498990994374,9.928498990994374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,6,1,0,0,6,4,1,1166,0,0,0 +1252,1537,2857,-9,2854,2855,4,1,0,20,2,0,0,0,2,-9,2,1,0,4,7.332748812917981,7.493143004546458,0,3,0,0,0,-9,0,-961.7171965136918,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,25,7,15,1,0,-9,1,8.637322714673527,8.637322714673527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,2,1,0,0,6,3,1,948,0,0,0 +1253,1538,2858,2859,-9,-9,3,1,1,29,1,0,0,0,3,-9,2,1,0,1,7.01966464125708,6.880552404643367,0,1,0,-9,1,-9,-15,-95.19780844033312,-9,1,0,44,2,3,1,-9,-9,2019,1,1,35,12,16,0,15,1,12,1,0,5.780812414804287,5.780812414804287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.07,36.41,2,1,0,0,4,3,0,1535,0,0,0 +1253,1538,2859,2858,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,3,8.061262974434756,7.859789683529339,0,1,0,1,1,-9,15,-89.95987697576143,0,0,1,29,3,1,1,2,2,2019,1,3,8,0,37,38,15,1,0,1,0,10.04828522896509,10.04828522896509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,44.28,6,1,0,0,4,3,0,1535,0,0,0 +1253,1539,2860,-9,2859,-9,2,1,1,20,2,0,0,0,2,-9,1,1,0,4,2.8521098211612,2.668271927778297,0,3,0,0,0,-9,0,-1023.447207303845,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,37,25,15,1,0,-9,1,.0464224071733484,.0464224071733484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,1,0,527,0,0,0 +1254,1540,2861,2863,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,5,8.742971722078979,8.758218858147465,0,2,0,-9,9,0,12,67.61951234486669,0,0,0,45,3,3,1,3,3,2019,1,1,13,4,60,51,15,1,4,1,0,14.08260989108442,14.08260989108442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.5,57.5,5,1,0,0,9,4,1,327.6666666666667,0,0,0 +1254,1540,2862,-9,2863,2861,3,1,0,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-880.7857500931065,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,57.61,3,1,0,0,9,4,1,327.6666666666667,0,0,0 +1254,1540,2863,2861,-9,-9,1,1,0,45,1,0,1,0,3,-9,1,1,0,3,0,0,0,2,0,-9,9,0,-12,114.8487818055385,0,0,0,57,2,5,1,3,3,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.882357032317522,0,0,0,54.37,54.8,6,1,0,0,9,4,1,327.6666666666667,0,0,0 +1255,1541,2864,-9,2865,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1084.102224447802,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,5,1,1331,0,0,0 +1255,1541,2865,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,3,9.153317801263221,9.164583044462123,6.277009015393658,4,0,0,0,-9,0,-971.2729936139764,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,55,15,1,0,-9,0,20.65785015607322,20.65785015607322,0,0,0,0,0,0,0,1,1,0,7.337275038030998,0,0,0,30.7,54.89,3,1,0,0,12,5,1,1331,0,0,0 +1256,1542,2866,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,2,0,5.086063179892755,5.321665135362396,3,0,0,0,-9,0,-1043.537928152372,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.418063881546543,5.099553848046738,2.696546758665149,3,55.2,49.4,6,1,0,0,8,2,0,888,0,0,0 +1257,1543,2867,2868,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,31,0,-4,-30.07884884737811,0,0,0,64,1,3,3,3,2,2019,4,1,6,0,0,8,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.795735508968844,0,17.75539568390371,3,54.79,55.86,6,1,0,0,7,5,1,875,0,0,0 +1257,1543,2868,2867,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,9.024160815343887,9.01625592384667,1,0,-9,31,0,4,-58.49934660612369,0,0,0,60,1,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.384121690009002,9.063412428020532,0,0,57.33,53.46,6,1,0,0,7,5,1,875,0,0,0 +1258,1544,2869,2870,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,4,8.624984361510515,8.69350302599856,0,2,0,-9,1,0,13,-19.96442157021414,0,0,1,30,2,5,1,-9,-9,2019,1,3,23,9,96,48,15,1,9,1,0,5.933911547105319,5.933911547105319,0,0,0,0,0,0,0,1,1,0,4.878972626500197,0,0,0,44.13,58.1,5,1,0,0,5,5,0,463.5,0,0,0 +1258,1544,2870,2869,-9,-9,3,1,1,30,1,0,1,0,2,-9,2,1,0,5,8.594734730494308,8.521631874431529,0,2,0,-9,1,-9,-13,71.66744048602717,-9,0,0,43,1,4,1,-9,-9,2019,1,1,15,5,53,0,15,1,5,1,0,10.0270665189512,10.0270665189512,0,0,0,0,0,0,0,1,1,0,2.841260488301597,0,0,0,42.62,60.15,6,1,0,0,5,5,0,463.5,0,0,0 +1259,1545,2871,2872,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,3,8.016134032912717,7.773643159148881,0,1,0,-9,8,0,-4,111.527351881957,0,0,0,56,2,3,1,3,3,2019,1,2,9,0,21,37,15,1,0,1,0,15.91785794561969,15.91785794561969,0,0,0,0,0,0,0,0,0,0,4.73979320326848,0,0,0,52,54.51,6,1,0,0,6,5,1,275.5,0,0,0 +1259,1545,2872,2871,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.794977954877639,8.975314917471096,0,1,0,-9,8,0,4,-15.79731750858064,0,0,0,52,1,3,1,2,2,2019,1,1,8,0,44,42,15,1,0,1,0,17.30004673465944,17.30004673465944,0,0,0,0,0,0,0,0,0,0,1.881792662759741,0,0,0,54.38,46.77,6,1,0,0,6,5,1,275.5,0,0,0 +1259,1546,2873,-9,2871,2872,3,1,1,21,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-997.4880524787883,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.579143987531397,0,0,0,49.04,55.86,6,1,0,0,6,1,1,1197,0,0,0 +1260,1547,2874,2875,-9,-9,1,1,1,55,1,0,1,0,2,-9,1,1,0,4,6.653590917541784,6.7597799300583,0,2,0,-9,25,0,9,-94.10196897105537,0,0,0,46,1,3,1,2,3,2019,1,2,10,1,15,40,15,1,1,1,0,8.695668315200885,8.695668315200885,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,47.78,6,1,0,0,2,2,1,730.5,0,0,0 +1260,1547,2875,2874,-9,-9,2,1,0,46,1,0,1,0,1,-9,1,1,0,3,0,0,0,2,0,-9,23,0,0,-94.85566695584473,0,0,0,55,2,4,1,2,2,2019,1,1,11,0,98,12,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,127.2411338218507,3,40.56,54.21,6,1,0,0,2,2,1,730.5,0,0,0 +1260,1548,2876,-9,2875,2874,3,1,1,18,2,0,1,0,2,1,2,1,0,3,6.378337831425736,6.045377198545745,0,3,0,0,0,-9,0,-1043.673162956416,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,10,0,15,1,0,-9,1,5.315754203266875,5.315754203266875,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.47,60.56,4,1,0,1,2,2,1,985,0,0,0 +1260,1549,2877,-9,2878,-9,8,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-891.3671945829356,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,2,4,1,526,0,0,0 +1260,1549,2878,-9,2875,2874,5,1,0,22,2,0,1,0,1,1,2,1,0,4,8.20287649113669,8.154171297745284,5.132919045401461,3,0,0,0,-9,0,-1010.65775614717,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,38,0,15,1,0,-9,1,9.985783026319384,9.985783026319384,0,0,0,0,0,0,0,1,1,0,6.323945180966867,0,0,0,58.15,52.91,6,1,0,0,2,4,1,526,0,0,0 +1260,1549,2879,-9,2878,-9,7,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-862.9211081411773,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,526,0,0,0 +1261,1550,2880,2881,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,5,8.46800922783007,8.553252494814451,0,1,0,-9,1,-9,0,31.30958411061602,-9,1,1,33,1,4,1,-9,-9,2019,1,1,9,1,43,0,15,1,1,1,0,14.02702890165264,14.02702890165264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,6,1,0,0,10,5,1,191.5,0,0,0 +1261,1550,2881,2880,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,4,8.599732216882462,8.550901874385067,0,1,0,1,1,-9,9,71.34231131937393,0,0,0,24,1,5,1,-9,-9,2019,1,2,32,12,37,42,15,1,12,1,0,17.10731475976154,17.10731475976154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.67,70.23999999999999,3,1,0,0,10,5,1,191.5,0,0,0 +1262,1551,2882,2883,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,6.898089767725807,6.638265881473198,0,1,0,-9,2,0,-12,-56.6566139131176,0,0,0,71,3,2,3,-9,-9,2019,2,1,7,0,16,16,15,1,0,4,0,7.620632745967058,7.620632745967058,0,0,0,0,0,0,0,1,1,0,7.237423722305736,0,0,0,58.32,50.22,6,1,0,0,7,3,1,604.5,0,0,0 +1262,1551,2883,2882,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,7.542406814041469,7.511951288903335,1,0,-9,2,0,12,-9.226761860811312,0,0,0,59,2,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.392865011665085,7.481352229208234,0,0,62.27,32.41,6,1,0,0,7,3,1,604.5,0,0,0 +1263,1552,2884,-9,-9,-9,1,1,1,43,3,0,0,0,3,-9,2,1,0,5,8.341229333093162,8.480492941523888,0,3,0,0,0,-9,0,-1111.404810069905,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,40,15,1,0,-9,0,8.952607683065692,8.952607683065692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,4,4,1,4155,0,0,0 +1264,1553,2885,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,1,0,2.707051970533843,2.654319811653461,3,0,-9,0,-9,0,-848.7532215424599,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,4.046957767938727,0,2.033221169477414,0,1,1,0,2.689424987193193,2.73820525100892,0,0,44.33,20.38,2,1,0,0,4,2,1,1175,0,0,0 +1265,1554,2886,-9,-9,-9,1,1,0,56,3,1,1,0,2,-9,2,1,0,4,8.354008298341842,8.20631078395323,0,4,0,-9,0,-9,0,-820.4781462136554,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,0,15,1,0,-9,0,11.1286443917162,11.1286443917162,0,0,0,0,0,0,0,0,0,0,0,0,13.55437566866869,3,62.49,55.09,6,1,0,0,5,3,1,354,0,0,0 +1265,1555,2887,-9,2886,-9,2,1,0,22,2,1,1,0,2,-9,2,1,0,4,7.875426115439439,7.868845809042702,0,3,0,-9,0,-9,0,-920.8274709931327,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,0,15,1,0,-9,1,6.485486785919502,6.485486785919502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,5,3,1,195,0,0,0 +1266,1556,2888,2889,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,3,8.431325450445918,8.481513219577728,0,1,0,-9,32,0,3,-77.81341318687974,0,0,0,53,2,3,1,3,3,2019,1,2,13,2,40,37,15,1,2,1,0,13.85394197108267,13.85394197108267,0,0,0,0,0,0,0,0,0,0,1.45416551660706,0,0,0,49.69,52.99,6,1,0,0,13,5,1,381,0,0,0 +1266,1556,2889,2888,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.270779357351515,8.394807599167221,0,1,0,-9,33,0,-3,14.38527073245223,0,0,0,56,1,3,1,2,-9,2019,1,1,7,0,38,37,15,1,0,1,0,12.86456374064453,12.86456374064453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,13,5,1,381,0,0,0 +1266,1557,2890,-9,2889,2888,3,1,0,25,2,0,0,0,2,-9,7,2,0,5,4.614863856050249,4.287581051525209,0,3,0,0,0,-9,0,-922.8123788230234,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.878899430660106,0,0,0,37.46,65.27,5,1,0,0,13,2,1,767,0,0,0 +1266,1558,2891,-9,2889,2888,4,1,1,22,2,0,0,0,2,0,7,2,0,3,0,4.413104008249256,4.282825971367104,3,0,0,0,-9,0,-1013.668784314847,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.228975514773988,0,0,0,49.69,52.99,4,1,0,0,13,2,1,1297,0,0,0 +1267,1559,2892,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,2,1,0,4,8.796292366854901,9.17486715081075,0,4,0,0,0,-9,0,-913.9030431671064,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,52,52,15,1,0,-9,0,13.11408976304347,13.11408976304347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.7,47.65,6,1,0,0,4,4,1,475,0,0,0 +1267,1559,2893,-9,2892,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-921.2403364052406,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,475,0,0,0 +1267,1559,2894,-9,2892,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-999.2232040453011,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,4,1,475,0,0,0 +1268,1560,2895,-9,-9,-9,3,1,1,49,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-865.0537026380297,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,46.17,2,1,0,0,6,1,1,176,0,0,0 +1269,1561,2896,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,5,8.103821152122711,8.265115959741161,0,3,0,0,0,-9,0,-881.725795408421,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,10.87819730411254,10.87819730411254,0,0,0,0,0,0,0,0,0,0,6.417580183779111,0,0,0,58.8,47.36,6,1,0,0,11,4,1,880,0,0,0 +1270,1562,2897,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,3,0,5.266224530568428,5.670136198236367,3,0,0,0,-9,0,-1029.017562102692,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.506008357417572,5.745428617107253,0,0,33.6,29.17,4,1,0,0,12,2,1,233,0,0,0 +1271,1563,2898,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,2,1,0,3,7.689704371062343,7.419775587372511,0,3,0,0,0,-9,0,-1054.892381066432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,38,38,15,1,1,-9,0,6.343611727684324,6.343611727684324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.29,40.27,5,1,0,0,13,3,1,1768,0,0,0 +1271,1564,2899,-9,-9,2898,2,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.657486416200717,7.999381839974372,0,3,0,0,0,-9,0,-1019.914958165389,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,37,37,15,1,0,-9,1,6.686587334855987,6.686587334855987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.86,59.06,6,1,0,0,13,3,1,1222,0,0,0 +1272,1565,2900,2901,-9,-9,1,1,0,24,1,1,1,0,1,-9,2,1,0,3,7.192965732731152,7.18450651787571,0,2,0,-9,3,0,-4,-59.94198820471556,0,1,1,28,2,3,1,-9,-9,2019,1,2,6,0,22,24,15,1,0,1,0,7.096791789102683,7.096791789102683,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,7,1,0,0,10,4,1,729,0,0,0 +1272,1565,2901,2900,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,3,7.963788396565374,8.143812664010637,0,2,0,-9,3,0,4,-146.9947408902811,0,1,0,24,1,3,1,-9,-9,2019,1,1,12,1,39,45,15,1,1,1,0,10.24732269751617,10.24732269751617,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.19,64.7,3,1,0,0,10,4,1,729,0,0,0 +1272,1565,2902,-9,2900,2901,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.8210051985589,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,4,1,729,0,0,0 +1273,1566,2903,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,4,8.269184016252233,8.189564452177406,0,3,0,0,0,-9,0,-958.5832252248275,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,18,5,45,50,15,1,5,-9,0,12.77876540905559,12.77876540905559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.53,64.69,3,4,0,0,5,4,1,81,0,0,0 +1274,1567,2904,-9,-9,-9,1,1,0,21,2,0,0,0,1,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1123.957785986856,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,27,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.08,66.28,3,1,1,0,9,1,1,937,0,0,0 +1275,1568,2905,2906,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,4,9.432336235767707,9.489825584816215,5.211664670339333,1,0,-9,33,0,0,50.35693777340407,0,0,0,60,1,5,1,2,2,2019,1,2,9,0,25,24,15,1,0,1,0,64.05050872742717,64.05050872742717,0,0,0,0,0,0,0,0,0,0,4.712730095452444,5.564351587723166,0,0,57.16,56.15,6,1,0,0,12,5,1,1023,0,0,0 +1275,1568,2906,2905,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,5,9.52954610753984,9.410576981085137,5.243999707294042,1,0,-9,33,0,0,-2.76915819544085,0,0,0,60,1,4,1,2,2,2019,1,1,5,0,35,40,15,1,0,1,0,49.66615820113768,49.66615820113768,0,0,0,0,0,0,0,0,0,0,6.535655946772192,5.430204111355692,0,0,57.06,57.76,6,1,0,0,12,5,1,1023,0,0,0 +1276,1569,2907,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,2,1,0,3,5.694009071817226,5.940744662347671,5.3788492242977,3,0,0,0,-9,0,-918.063165172174,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,4,2,15,1,0,-9,0,6.334571577579571,6.334571577579571,0,0,0,0,0,0,0,1,1,0,1.914158253030855,5.418818123174542,0,3,57.33,53.46,2,1,0,0,2,2,0,738,0,0,0 +1277,1570,2908,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,2,0,5.933536654471956,6.17387411279262,3,0,0,0,-9,0,-1041.286994302982,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.625366172512767,6.185023583333813,0,0,40.08,23.82,3,1,0,0,12,2,1,1577,0,0,0 +1278,1571,2909,2910,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.773023359046483,8.465629744027529,0,1,0,-9,7,0,-10,-36.78936739892752,0,0,0,66,1,3,1,-9,-9,2019,1,1,4,0,15,15,15,1,0,1,0,57.44633799235619,57.44633799235619,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,3,0,0,8,5,1,288,0,0,0 +1278,1571,2910,2909,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,3,7.410157315499246,8.08518645902295,7.281478360189585,1,0,-9,34,0,10,-51.90390971710051,0,0,0,56,1,4,1,3,2,2019,1,2,9,0,15,15,15,1,0,1,0,21.37020257853835,21.37020257853835,0,0,0,0,0,0,0,1,1,0,3.27288089075885,7.724764522077376,0,0,60.29,52.11,4,1,0,0,8,5,1,288,0,0,0 +1278,1572,2911,-9,2909,2910,3,1,0,27,2,0,0,0,2,-9,2,1,0,1,7.252151032014222,7.241637300908737,0,3,0,0,0,-9,0,-912.9686242550511,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,6,40,3,15,1,6,-9,1,3.821323086035243,3.821323086035243,0,0,0,0,0,0,0,1,1,0,3.26377135507837,0,0,0,44.51,36.43,3,2,0,0,8,2,1,189,0,0,0 +1278,1573,2912,-9,2909,2910,4,1,1,24,2,0,0,0,1,-9,2,1,0,4,7.4430310154636,7.213868304317701,0,3,0,0,0,-9,0,-955.695998943638,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,50,22,15,1,0,-9,1,3.519731746207832,3.519731746207832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.49,61.79,4,2,0,0,8,3,1,2800,0,0,0 +1279,1574,2913,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,2,0,8.240795345342564,8.456809861784931,3,0,0,0,-9,0,-988.6663659100032,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.387061744739527,8.238155922333126,0,0,51.1,38.85,6,1,0,0,11,4,1,551,0,0,0 +1280,1575,2914,2915,-9,-9,2,1,0,55,1,0,0,0,3,-9,4,3,0,3,4.562093354861326,4.195909293820907,0,1,0,-9,6,0,-6,83.30500722546473,0,0,0,61,3,5,3,3,3,2019,4,1,9,0,0,28,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.462165022122374,0,4.299305391024348,3,61.82,40.37,6,1,0,0,11,1,1,446.5,0,0,0 +1280,1575,2915,2914,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,6,0,6,107.9107016084587,0,0,0,55,3,3,3,-9,-9,2019,4,2,6,0,0,50,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.986741573448473,0,0,0,62.39,56.71,7,1,0,0,11,1,1,446.5,0,0,0 +1281,1576,2916,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1073.559153479169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,1,0,213,0,0,0 +1282,1577,2917,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,4,8.087177922575789,8.08457678363207,0,3,0,0,0,-9,0,-946.5463954666559,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,37,15,1,0,-9,0,10.05565291917768,10.05565291917768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.1,51.16,6,1,0,0,10,4,0,351,0,0,0 +1282,1578,2918,-9,2917,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,3,8.191242296395552,8.192425110979817,0,3,0,0,0,-9,0,-1022.363648138392,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,51,50,15,1,0,-9,1,7.932501794864218,7.932501794864218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,1,0,0,10,4,0,386,0,0,0 +1283,1579,2919,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,3,8.651742250935149,8.260344716373288,0,3,0,-9,0,-9,0,-1011.493458003064,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,82,0,15,1,11,-9,0,6.65042314298196,6.65042314298196,0,0,0,0,0,0,0,0,0,0,2.547096559674592,0,0,0,26.8,51.33,3,1,0,0,6,5,1,323,0,0,0 +1284,1580,2920,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,2,6.908092456540633,7.052555276421786,0,3,0,0,0,-9,0,-1064.813249626618,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,10,12,15,1,1,-9,0,11.14220456420884,11.14220456420884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,17.96,6,1,0,0,11,2,1,3643,0,0,0 +1284,1581,2921,-9,2920,-9,2,1,1,29,2,0,0,0,1,-9,2,1,0,2,8.384832175740698,8.269156089712157,0,3,0,0,0,-9,0,-939.1358808297532,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,21,8,42,42,15,1,8,-9,1,14.48785703074077,14.48785703074077,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.95,44.56,5,1,0,0,11,4,1,408,0,0,0 +1285,1582,2922,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,3,9.792413773568937,9.584725203450216,0,3,0,0,0,-9,0,-999.489215003973,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,60,40,15,1,0,-9,0,32.97770476190545,32.97770476190545,0,0,0,0,0,0,0,0,0,0,10.41871255313474,0,0,0,51.41,56.15,6,1,0,0,9,5,0,326,0,0,0 +1286,1583,2923,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-912.0620537981945,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.76698858030738,3,63.17,22.41,5,1,0,0,9,1,0,822,0,0,0 +1286,1583,2924,-9,2923,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-982.9608577197695,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,9,1,0,822,0,0,0 +1287,1584,2925,2927,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,4,7.412481549508567,7.622345587613148,0,2,0,-9,27,0,-2,43.15786300296204,0,0,0,49,2,3,1,2,2,2019,1,2,16,4,27,29,15,1,4,1,0,8.075252679147852,8.075252679147852,0,0,0,0,0,0,0,1,1,0,.5900111471701421,0,0,0,37.01,57.69,5,1,0,0,6,4,1,537.6666666666666,0,0,0 +1287,1584,2926,-9,2925,2927,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-879.0869758764816,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,6,4,1,537.6666666666666,0,0,0 +1287,1584,2927,2925,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,3,8.659557453371324,8.459356990400394,0,2,0,-9,27,0,2,-127.1430646270354,0,0,0,47,2,4,1,2,2,2019,1,1,6,0,48,51,15,1,0,1,0,8.718281310712308,8.718281310712308,0,0,0,0,0,0,0,1,1,0,3.004930140679205,0,0,0,53.39,44.47,2,1,0,0,6,4,1,537.6666666666666,0,0,0 +1287,1585,2928,-9,2925,2927,3,1,0,18,2,0,2,0,2,-9,7,2,0,3,6.22597213292382,8.902305025351078,8.746710811514763,3,0,0,0,-9,0,-1037.389255444985,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,16,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,8.162291792760119,0,0,0,27.49,57.5,4,1,0,0,6,4,1,251,0,0,0 +1288,1586,2929,-9,-9,-9,1,1,1,24,2,0,0,0,1,1,2,1,0,3,8.003117109351123,7.778972354376001,0,3,0,0,0,-9,0,-1016.075684870613,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,37,0,15,1,1,-9,0,9.68224658930718,9.68224658930718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,6,2,0,0,10,4,0,1470,0,0,0 +1289,1587,2930,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-904.1660375611518,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,6,1,0,0,11,1,0,992,0,0,0 +1289,1588,2931,-9,-9,-9,2,1,1,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-966.351465272169,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,45.7,37.65,4,1,0,0,11,1,0,957,0,0,0 +1289,1589,2932,-9,-9,-9,3,1,0,72,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1021.769807383414,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,61.71,47.23,4,1,0,1,11,1,0,653,0,0,0 +1290,1590,2933,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1052.938303748354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,5.748439226769841,0,0,0,0,86.72963426797291,1,1,0,0,0,0,0,62.18,36.18,4,1,0,0,7,1,1,464,0,0,0 +1291,1591,2934,2936,-9,-9,1,1,1,54,1,0,3,0,2,-9,2,1,0,4,8.703739944404381,8.180820565871741,0,2,0,-9,29,0,4,52.01768134171272,0,0,0,50,1,4,1,3,3,2019,1,2,5,0,45,50,15,1,0,1,0,14.44292586024362,14.44292586024362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,13,5,1,903.2,0,0,0 +1291,1591,2935,-9,2936,2934,4,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1095.190884886171,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,13,5,1,903.2,0,0,0 +1291,1591,2936,2934,-9,-9,2,1,0,50,1,0,3,0,1,-9,2,1,0,4,9.483936124279998,9.4515398156415,0,2,0,-9,26,0,-4,-116.0722889362031,0,0,0,54,2,4,1,2,2,2019,1,1,11,0,42,42,15,1,0,1,0,29.81587011734053,29.81587011734053,0,0,0,0,0,0,0,0,0,0,6.634787001732395,0,0,0,57.73,54.53,6,1,0,0,13,5,1,903.2,0,0,0 +1291,1591,2937,-9,2936,2934,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.2272564703042,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,13,5,1,903.2,0,0,0 +1291,1591,2938,-9,2936,2934,3,1,0,15,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-985.6196786821262,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,4,1,0,0,13,5,1,903.2,0,0,0 +1292,1592,2939,2942,-9,-9,2,1,0,39,1,0,3,0,2,-9,2,1,0,4,8.043857480080684,7.743409398525599,0,2,0,-9,2,0,-2,-108.3346182100991,-9,0,1,41,1,4,1,2,2,2019,1,1,8,0,20,0,15,1,0,1,0,17.29768893803566,17.29768893803566,0,0,0,0,0,0,0,0,0,0,.6941268184925984,0,0,0,45.45,40.73,5,1,0,0,8,5,1,745.5,0,0,0 +1292,1592,2940,-9,2939,2942,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.195858669329,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,745.5,0,0,0 +1292,1592,2941,-9,2939,2942,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.810454730266,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,745.5,0,0,0 +1292,1592,2942,2939,-9,-9,1,1,1,41,1,0,3,0,1,-9,1,1,0,4,9.420994297890909,9.393623457320368,0,2,0,-9,2,0,2,-20.49098344477031,0,0,0,39,2,4,1,2,2,2019,1,2,8,0,47,48,15,1,0,1,0,36.22750720641667,36.22750720641667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,5,1,0,0,8,5,1,745.5,0,0,0 +1293,1593,2943,-9,2944,2945,3,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,-9,0,-9,0,-879.4082746283199,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.68,58.58,7,1,0,0,12,3,0,311.6666666666667,0,0,0 +1293,1593,2944,2945,-9,-9,1,1,0,39,1,0,1,0,3,-9,10,3,0,4,0,0,0,2,0,-9,16,-9,3,-37.47985007036029,-9,0,1,36,2,4,1,-9,2,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.96,60.22,6,1,0,0,12,3,0,311.6666666666667,0,0,0 +1293,1593,2945,2944,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.051470343763516,7.967344377343849,0,2,0,-9,16,-9,-3,-121.7271108893825,-9,0,0,39,3,4,3,3,2,2019,2,1,8,0,45,0,15,1,0,3,0,7.431850676661692,7.431850676661692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.88,56.68,6,1,0,0,12,3,0,311.6666666666667,0,0,0 +1294,1594,2946,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,3,8.192891010332373,8.176294640969758,0,3,0,0,0,-9,0,-939.6247616099989,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,42,15,1,0,-9,0,11.31244194079082,11.31244194079082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.44,51.49,6,4,0,0,10,4,0,904,0,0,0 +1295,1595,2947,2948,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.744855248120379,7.466567548147076,0,1,0,-9,2,0,0,-58.61996455927802,0,0,0,53,2,4,1,3,3,2019,1,1,12,1,26,25,15,1,1,1,0,5.992383279180018,5.992383279180018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.54,33.62,7,2,0,0,5,3,1,3269,0,0,0 +1295,1595,2948,2947,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,7.641798354367856,7.772456832351243,0,1,0,-9,2,0,0,-203.8682435503528,0,0,0,53,2,2,1,3,-9,2019,1,2,7,0,25,30,15,1,0,1,0,8.917276228612481,8.917276228612481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,3,1,3269,0,0,0 +1296,1596,2949,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1095.018533028383,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.067482776519628,0,0,0,48,37,2,2,0,1,8,1,0,376,0,0,0 +1297,1597,2950,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-878.0924946704379,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,1,0,1,13,2,0,456,0,0,0 +1297,1598,2951,-9,2950,-9,2,1,0,35,2,0,0,0,2,-9,2,1,0,2,7.891788804356671,8.201990835415774,0,3,0,0,0,-9,0,-1009.719040560285,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,11,40,40,15,1,11,-9,1,8.401381288789862,8.401381288789862,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.12,57.64,3,1,0,0,13,4,0,1499,0,0,0 +1298,1599,2952,2953,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,4.542957541238038,4.669982847481477,1,0,-9,49,0,-1,-56.27491958512727,0,0,0,67,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.091032872966715,4.756248748717209,0,0,60.12,54.8,7,1,0,0,5,2,1,1542.5,0,0,0 +1298,1599,2953,2952,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.13551958025737,6.836628269301248,1,0,-9,49,0,1,-86.37116151578309,0,0,0,66,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.503184554524217,6.556436778732392,0,0,60.29,52.11,7,1,0,0,5,2,1,1542.5,0,0,0 +1299,1600,2954,-9,-9,-9,1,1,0,46,2,0,1,0,1,-9,2,1,0,4,8.941777842451984,8.823397361284329,0,4,0,-9,0,-9,0,-968.679879127747,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,39,38,15,1,9,-9,0,27.72707648728984,27.72707648728984,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52.68,6,1,0,1,8,5,0,715,0,0,0 +1299,1600,2955,-9,2954,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1026.346298546941,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,6,1,0,0,8,5,0,715,0,0,0 +1300,1601,2956,2957,-9,-9,1,1,1,25,1,0,1,0,2,-9,2,1,0,3,8.171193701660901,7.877707988015957,0,2,0,-9,2,0,-17,-56.4002441465631,0,1,0,42,2,4,1,-9,-9,2019,1,2,11,1,39,39,15,1,1,1,0,7.035974139550611,7.035974139550611,0,0,0,0,0,0,0,0,0,0,2.765950015602151,0,0,0,49.97,53.99,4,1,0,0,10,4,1,580,0,0,0 +1300,1601,2957,2956,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,4,8.383184474623944,8.468318397451643,0,2,0,-9,2,0,17,-68.66478266072319,0,0,1,25,2,3,1,-9,-9,2019,1,1,12,0,38,39,15,1,0,1,0,13.02392615809941,13.02392615809941,0,0,0,0,0,0,0,0,0,0,.8327767294104975,0,0,0,54.2,57.49,6,1,0,0,10,4,1,580,0,0,0 +1301,1602,2958,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,5.746604958631302,6.074021621718662,3,0,0,0,-9,0,-1002.162859344104,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,37,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.09174230945702,6.138664773921107,0,0,49.08,47.45,6,1,0,0,9,2,1,198,0,0,0 +1302,1603,2959,2960,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,2,0,4.917715151001159,4.706668966673114,1,0,-9,54,0,3,-13.27548150828761,0,0,0,74,3,2,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.52653029382936,0,0,51.4,30.49,6,3,0,1,5,2,1,1048.5,0,0,0 +1302,1603,2960,2959,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,4.410156795777381,5.038626884234226,1,0,-9,54,0,-3,75.58574876350301,0,0,0,77,3,2,3,3,3,2019,4,1,17,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.177312085621804,0,0,54.21,31.97,6,3,0,1,5,2,1,1048.5,0,0,0 +1303,1604,2961,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1193.459747478035,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,1,0,525,0,0,0 +1304,1605,2962,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,1,1,0,2,8.629193348877001,8.826133021039238,0,1,0,-9,8,0,18,0,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,11,0,40,40,15,1,0,-9,0,15.27030879001744,15.27030879001744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.3,47.92,6,1,0,0,4,5,1,2538,0,0,0 +1304,1606,2963,-9,-9,-9,2,1,1,41,2,0,0,0,1,-9,1,1,0,4,8.661602066133856,8.791904394884103,0,1,0,-9,8,0,-18,0,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,7,0,44,40,15,1,0,-9,0,15.41126153109077,15.41126153109077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,4,5,1,204,0,0,0 +1305,1607,2964,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,4,0,7.007018483331483,6.77372668985304,3,0,0,0,-9,0,-1032.230259190477,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.916846840088209,0,0,62.11,45.63,7,1,0,0,4,2,1,1430,0,0,0 +1306,1608,2965,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-980.5252871087248,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.5816632359719102,0,0,0,70.08,24.31,7,1,0,0,9,1,0,294,0,0,0 +1307,1609,2966,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.898233853823111,8.088650658853629,0,3,0,0,0,-9,0,-917.0356953009422,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,40,40,15,1,0,-9,0,7.695026043496454,7.695026043496454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,2,1,0,0,5,4,0,996,0,0,0 +1308,1610,2967,2968,-9,-9,1,1,0,58,1,0,0,0,3,-9,2,1,0,4,7.908998784964653,7.872847686759101,0,1,0,-9,40,0,-3,9.49653185964743,0,0,0,61,3,3,1,-9,-9,2019,1,2,8,0,30,30,15,1,0,1,0,10.1858691490085,10.1858691490085,0,0,0,0,0,0,0,0,0,0,5.142660718572828,0,0,0,57.16,56.15,6,1,0,0,13,5,1,1325.5,0,0,0 +1308,1610,2968,2967,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,3,8.436894630087373,8.90197464676387,6.146528942825491,1,0,-9,8,0,3,-111.0324315862374,0,0,0,58,3,4,1,-9,-9,2019,1,1,10,0,28,22,15,1,1,1,0,20.29119641636325,20.29119641636325,0,0,0,0,0,0,0,0,0,0,5.479277913335489,6.246602686915271,0,0,51,48,5,5,0,0,13,5,1,1325.5,0,0,0 +1309,1611,2969,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,4,8.194127326082528,8.618953082086179,0,3,0,-9,0,-9,0,-1071.860815470906,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,35,0,15,1,1,-9,0,13.9335119523778,13.9335119523778,0,0,0,0,0,0,0,0,0,0,3.132761197956517,0,0,0,54.2,57.49,6,1,0,0,5,4,1,1246,0,0,0 +1310,1612,2970,2972,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,4,7.419734522432386,7.268777295153818,0,2,0,-9,15,0,-2,-5.456636116443732,0,0,1,39,2,3,1,2,2,2019,1,1,10,0,25,27,15,1,0,1,0,9.525600825347619,9.525600825347619,0,0,0,0,0,0,0,1,1,0,0,0,11.38640056864649,3,43.54,59.6,6,1,0,0,12,3,1,850,0,0,0 +1310,1612,2971,-9,2970,2972,5,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.773950645379,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,850,0,0,0 +1310,1612,2972,2970,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,3,8.635206320592802,8.343707671632115,0,2,0,-9,15,0,2,-135.0390241898022,0,0,0,37,2,4,1,2,-9,2019,1,2,13,2,37,35,15,1,2,1,0,17.99141547508003,17.99141547508003,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,44.34,4,1,0,0,12,3,1,850,0,0,0 +1310,1612,2973,-9,2970,2972,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.672316793662,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,3,1,850,0,0,0 +1310,1612,2974,-9,2970,2972,4,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1113.219793073565,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,12,3,1,850,0,0,0 +1311,1613,2975,-9,2976,2978,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-954.3748301371203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,2,0,0,8,1,0,595.2,0,0,0 +1311,1613,2976,2978,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,8,0,-7,0,0,0,1,44,2,2,3,2,2,2019,4,2,21,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.25,40.83,3,1,0,1,8,1,0,595.2,0,0,0 +1311,1613,2977,-9,2976,2978,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.7076085617908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,8,1,0,595.2,0,0,0 +1311,1613,2978,2976,-9,-9,2,1,1,44,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,8,0,7,0,0,0,0,37,2,2,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.151346020511,2,51.65,52.38,3,2,1,0,8,1,0,595.2,0,0,0 +1311,1613,2979,-9,2976,2978,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.813596301343,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,1,0,595.2,0,0,0 +1312,1614,2980,2981,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,2,8.36507466513762,8.306146174663366,0,1,0,-9,1,-9,4,-49.11321401376576,-9,0,0,29,2,5,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,13.47585764375357,13.47585764375357,0,0,0,0,0,0,0,0,0,0,.6890578847728913,0,0,0,49.68,50.49,6,1,0,0,13,5,1,209,0,0,0 +1312,1614,2981,2980,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,5,8.371030996080451,7.982048062233742,0,1,0,-9,1,-9,-4,55.98612256323783,-9,1,1,33,1,2,1,3,2,2019,1,2,5,0,35,0,15,1,0,1,0,12.59668294277292,12.59668294277292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,7,1,0,0,13,5,1,209,0,0,0 +1313,1615,2982,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.576707283832851,8.205273861684045,0,3,0,0,0,-9,0,-987.2412955082933,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,2,87,47,15,1,2,-9,0,5.711056404835388,5.711056404835388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,8,4,0,639,0,0,0 +1314,1616,2983,-9,-9,-9,1,1,0,83,3,0,0,0,1,-9,4,3,0,4,0,7.328498688021323,7.48058882498515,3,0,0,0,-9,0,-991.180866548612,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.428083160095416,7.178932876143397,7.751302199722787,3,56.57,39.82,6,1,0,0,6,3,1,160,0,0,0 +1315,1617,2984,-9,2985,2986,3,1,1,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1078.12852515614,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,2,5,1,965.6666666666666,0,0,0 +1315,1617,2985,2986,-9,-9,2,1,0,33,1,0,1,0,2,-9,2,1,0,4,8.169462668213548,8.186100273109734,0,2,0,-9,15,0,0,16.04818288440963,0,0,1,42,1,4,1,2,2,2019,1,1,7,0,48,40,15,1,0,1,0,8.912376967185395,8.912376967185395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,5,1,965.6666666666666,0,0,0 +1315,1617,2986,2985,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,8.688296353812413,8.708659708145436,0,2,0,-9,15,0,9,39.94007856691857,0,0,0,33,2,4,1,2,2,2019,1,2,9,0,50,40,15,1,0,1,0,14.59014540129481,14.59014540129481,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,965.6666666666666,0,0,0 +1316,1618,2987,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1071.720215633924,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.37,34.25,6,1,0,0,12,1,0,304,0,0,0 +1317,1619,2988,2991,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,4,8.56003104438582,8.640774798456821,0,2,0,-9,5,0,4,-95.09641947470371,0,0,1,33,1,4,1,1,1,2019,1,2,11,3,41,27,15,1,3,1,0,17.86942334553397,17.86942334553397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,6,5,0,0,8,5,1,1398.75,0,0,0 +1317,1619,2989,-9,2988,2991,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.9980620936686,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,5,1,1398.75,0,0,0 +1317,1619,2990,-9,2988,2991,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.7392991363733,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,5,1,1398.75,0,0,0 +1317,1619,2991,2988,-9,-9,2,1,1,33,1,1,2,0,1,-9,2,1,0,4,9.004143376037536,8.82887041986598,0,2,0,-9,5,0,-4,34.96151207276431,0,0,0,37,1,4,1,2,2,2019,1,1,8,2,38,35,15,1,2,1,0,23.65164610863105,23.65164610863105,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,4,4,0,0,8,5,1,1398.75,0,0,0 +1318,1620,2992,2993,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,4,9.484706525962794,9.558205539697632,0,2,0,-9,6,0,-8,-28.16653705000319,0,0,0,50,1,4,1,3,-9,2019,1,2,9,0,60,59,15,1,1,1,0,24.031151182414,24.031151182414,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,11,5,1,743,0,0,0 +1318,1620,2993,2992,-9,-9,2,1,0,50,1,0,2,0,1,-9,1,1,0,4,7.414485294482493,7.257895917524816,0,2,0,-9,6,0,8,68.85445184080297,0,0,0,42,2,4,1,2,2,2019,1,1,0,0,20,20,15,1,0,1,0,9.732103617126414,9.732103617126414,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,1,0,0,11,5,1,743,0,0,0 +1318,1621,2994,-9,2993,2992,3,1,1,18,2,0,2,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-967.2594773592908,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.616119839746718,0,0,0,63.13,49.54,1,1,1,0,11,5,1,5323,0,0,0 +1319,1622,2995,-9,2998,2997,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.499572317021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,925.2,0,0,0 +1319,1622,2996,-9,2998,2997,3,1,0,16,2,0,3,1,2,-9,7,2,0,1,4.538156252436407,4.456522518437875,0,2,0,0,0,-9,0,-901.250191520109,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,42.22,6,1,0,0,8,5,1,925.2,0,0,0 +1319,1622,2997,2998,-9,-9,2,1,1,48,1,0,3,0,1,-9,2,1,0,3,9.672226846365735,9.894123662996215,0,2,0,-9,7,0,0,-50.07377738893311,0,0,0,48,1,3,1,2,2,2019,1,1,7,0,50,50,15,1,0,1,0,30.8370334732358,30.8370334732358,0,0,0,0,0,0,0,0,0,0,5.162419394561025,0,0,0,52.99,51.28,6,1,0,0,8,5,1,925.2,0,0,0 +1319,1622,2998,2997,-9,-9,1,1,0,48,1,0,3,0,1,-9,1,1,0,3,7.680962206780491,7.534485724510767,0,2,0,-9,7,0,0,108.5212457284718,0,0,0,48,1,3,1,2,2,2019,1,2,7,0,15,7,15,1,0,1,0,17.25929465291265,17.25929465291265,0,0,0,0,0,0,0,0,0,0,7.618009648057434,0,0,0,57.34,47.92,6,1,0,0,8,5,1,925.2,0,0,0 +1319,1622,2999,-9,2998,2997,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1116.20751151188,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,5,1,925.2,0,0,0 +1320,1623,3000,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.966418364702997,6.05139418366011,3,0,0,0,-9,0,-1048.814843758115,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,25.45081641945555,0,0,1,1,0,0,6.04210593465584,11.97874386469203,3,41.96,32.38,5,1,0,0,13,2,1,297,0,0,0 +1320,1624,3001,-9,3000,-9,2,1,1,53,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-953.3953343407826,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.81127330493881,3,35,37.04,4,1,0,0,13,1,1,2223,0,0,0 +1320,1625,3002,-9,3000,-9,3,1,0,46,2,0,0,0,3,-9,8,3,1,4,7.676473821445713,7.824027947037559,0,3,0,0,0,-9,0,-881.8388420947412,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,36,39,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,13,3,1,385,0,0,0 +1321,1626,3003,3004,-9,-9,2,1,1,47,1,0,1,0,1,-9,1,1,0,4,7.440805041480249,7.597377990829104,0,2,0,-9,10,0,-4,30.2382637791411,0,0,0,51,1,5,1,3,3,2019,1,1,8,0,25,23,15,1,0,1,0,9.880002653466617,9.880002653466617,0,0,0,0,0,0,0,1,1,0,8.123837052641381,0,0,0,46.39,60.99,5,1,0,0,7,4,1,996,0,0,0 +1321,1626,3004,3003,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,5,7.934665770665003,8.064390435537268,0,2,0,-9,10,0,4,28.56666359886118,0,0,0,47,1,4,1,2,2,2019,1,2,17,5,25,24,15,1,5,1,0,16.7613528153861,16.7613528153861,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.75,57.13,3,1,0,0,7,4,1,996,0,0,0 +1321,1626,3005,-9,3004,3003,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.4315986438821,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,996,0,0,0 +1322,1627,3006,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,5,8.480068615380818,8.478343484878391,0,3,0,0,0,-9,0,-1026.596974730317,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,44,43,15,1,0,-9,0,17.66006714851018,17.66006714851018,0,0,0,0,0,0,0,0,0,0,4.318472944270405,0,0,0,54.69,57.47,5,1,0,1,9,5,1,2983,0,0,0 +1323,1628,3007,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-959.0405026638291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9839045086777216,0,0,0,45.59,34.4,5,1,0,0,7,1,1,484,0,0,0 +1324,1629,3008,3010,-9,-9,1,1,1,34,1,0,1,0,2,-9,1,1,0,2,9.098360847753137,9.30454793389956,0,2,0,-9,7,0,3,-1.185073556251701,0,0,0,31,2,3,1,2,2,2019,1,2,11,1,37,51,15,1,1,1,0,32.24249116207241,32.24249116207241,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,45.62,5,1,0,0,11,5,0,316.6666666666667,0,0,0 +1324,1629,3009,-9,3010,3008,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.4947933960705,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,0,316.6666666666667,0,0,0 +1324,1629,3010,3008,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,3,7.811091398807069,7.916004563827842,0,2,0,-9,7,0,-3,-57.96765425388623,0,0,1,34,2,2,1,-9,-9,2019,1,1,27,11,39,26,15,1,11,1,0,7.154058122057571,7.154058122057571,0,0,0,0,0,0,0,1,1,0,3.095442475509551,0,0,0,21.33,59.29,2,1,0,0,11,5,0,316.6666666666667,0,0,0 +1325,1630,3011,3012,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.892984079002209,7.934566921720835,1,0,-9,32,0,7,-82.53755021330464,0,0,0,63,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.810683065649386,7.616550344984353,4.367388269154288,3,51.39,50.81,7,1,0,0,5,4,1,911,0,0,0 +1325,1630,3012,3011,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,7.019896883638128,7.401015473002764,1,0,-9,10,0,-7,-70.42545981394564,0,0,0,70,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.151924120589961,7.408006172172867,12.12723365631646,3,54.2,57.49,6,1,0,0,5,4,1,911,0,0,0 +1326,1631,3013,3014,-9,-9,1,1,1,47,1,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,6,0,-4,13.30614217858119,1,0,0,51,1,2,1,3,3,2019,3,2,4,0,0,28,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.624429445957785,0,0,0,54.2,57.49,6,1,0,0,12,4,1,975,0,0,0 +1326,1631,3014,3013,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,2,8.411497433082163,8.474056429879095,0,1,0,-9,6,0,4,-109.9962451029825,0,0,0,47,1,4,2,2,1,2019,2,1,7,0,35,37,15,1,0,2,0,13.62412866523337,13.62412866523337,0,0,0,0,0,0,0,0,0,0,3.163419503501385,0,0,0,52.07,45.56,5,1,0,0,12,4,1,975,0,0,0 +1327,1632,3015,3016,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.52118225881671,8.601674943555622,0,1,0,-9,10,0,-8,78.47121194081204,0,0,0,67,1,3,3,2,2,2019,2,1,8,0,5,24,15,1,0,4,0,102.6955890315702,102.6955890315702,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,6,1,0,0,12,5,1,1412,0,0,0 +1327,1632,3016,3015,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.687351727105934,7.655778156381902,1,0,-9,10,0,8,84.4715858802202,0,0,0,59,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.764508267978631,0,0,57.33,53.46,6,1,0,0,12,5,1,1412,0,0,0 +1327,1633,3017,-9,3015,3016,3,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.691812556274302,8.285638491123974,0,3,0,0,0,-9,0,-930.3030004696317,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,53,15,1,0,-9,1,15.34687227152858,15.34687227152858,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,12,5,1,1722,0,0,0 +1328,1634,3018,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,3,0,7.74466177488624,8.042446476452024,3,0,0,0,-9,0,-941.3559848051294,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.552594507192828,0,0,44.85,53.68,6,1,0,0,13,3,1,522,0,0,0 +1329,1635,3019,3020,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,8.243950482516111,8.327043929206727,0,1,0,-9,9,0,8,-5.869255320515667,0,0,0,39,2,3,1,2,2,2019,1,2,10,2,44,39,15,1,2,1,0,9.107720806471953,9.107720806471953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,51.29,7,1,0,0,6,4,0,375,0,0,0 +1329,1635,3020,3019,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,3,8.279224770061417,8.225598191942215,0,1,0,-9,9,0,-8,17.3602665288953,0,0,0,47,2,3,1,-9,-9,2019,1,1,19,7,42,39,15,1,7,1,0,7.254816947030971,7.254816947030971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.8,43.63,6,1,0,0,6,4,0,375,0,0,0 +1330,1636,3021,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1032.629835035966,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,16,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.35,52.14,1,2,1,1,2,1,0,2102,0,0,0 +1330,1636,3022,-9,3021,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1011.51139964327,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,62,5,2,0,0,2,1,0,2102,0,0,0 +1331,1637,3023,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,3,8.794070414918435,8.609733297449687,0,3,0,0,0,-9,0,-1000.546731651504,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,4,0,35,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,6,3,0,0,8,5,1,371,0,0,0 +1331,1638,3024,-9,3023,-9,2,1,1,26,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1121.168422475498,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,0,40,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.45,45.88,4,3,1,0,8,1,1,1299,0,0,0 +1332,1639,3025,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,5.798780728620438,5.777358213648484,3,0,0,0,-9,0,-926.5359512581431,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,1,4.105201417023638,0,0,0,0,16.20597103939568,1,1,0,0,5.498752562253896,0,0,49.68,16.59,3,1,0,0,13,2,1,838,0,0,0 +1333,1640,3026,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,1,1,0,4,7.714621218699203,8.011640606762018,0,3,0,0,0,-9,0,-922.2483476605554,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,8,15,1,0,-9,0,17.46734111037742,17.46734111037742,0,0,0,0,0,0,0,0,0,0,2.712091092647621,0,0,0,49.35,59.64,7,1,0,0,6,4,1,1377,0,0,0 +1334,1641,3027,3028,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,4,0,7.34030936368488,7.167974026031024,1,0,-9,10,0,1,-58.37530065444206,0,0,0,73,1,3,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.402175263520484,7.622458252446733,21.76006271794521,2,50.34,56.4,7,1,0,0,8,4,1,655.5,0,0,0 +1334,1641,3028,3027,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,7.806892554429667,7.937055482398869,1,0,-9,10,0,-1,77.27090771968389,0,0,0,74,1,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.200947876319321,8.213208925720702,0,3,58.47,50.22,6,1,0,0,8,4,1,655.5,0,0,0 +1335,1642,3029,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,4,9.542845852090275,9.813945703007592,0,1,0,-9,11,0,13,18.46568550252532,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,6,0,35,35,15,1,0,-9,0,53.69681874899088,53.69681874899088,0,0,0,0,0,0,0,0,0,0,5.40625185026755,0,0,0,57.16,56.15,6,1,0,0,8,5,1,586,0,0,0 +1335,1643,3030,-9,-9,-9,2,1,1,44,2,0,0,0,2,-9,2,1,0,4,8.185960350020103,8.162352434626033,0,1,0,-9,11,0,-13,-22.46128205936613,0,0,0,-9,-9,-9,-9,2,3,2019,1,1,15,4,40,40,15,1,4,-9,0,10.75177584939898,10.75177584939898,0,0,0,0,0,0,0,0,0,0,3.099054759465118,0,0,0,38.07,56.7,6,1,0,0,8,5,1,391,0,0,0 +1336,1644,3031,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,3,8.134846757585317,8.050903423151635,0,3,0,0,0,-9,0,-1033.24624758007,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,49,40,15,1,1,-9,0,7.586351921495206,7.586351921495206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.43,48.51,4,1,0,0,7,4,0,536,0,0,0 +1337,1645,3032,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,2,0,6.421423823672434,6.334192142707196,3,0,0,0,-9,0,-1050.985110564369,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5452711457281352,6.006108024843615,0,0,56.58,29.43,7,3,0,0,6,2,1,51,0,0,0 +1338,1646,3033,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,3,7.365396131592049,7.846428963430237,6.576011043023389,4,0,0,0,-9,0,-927.7188128139881,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,18,15,1,0,-9,0,9.583683174225156,9.583683174225156,0,0,0,0,0,0,0,1,1,0,6.83970925502569,0,0,0,44.36,54.04,6,1,0,0,12,2,0,898.6666666666666,0,0,0 +1338,1646,3034,-9,3033,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1096.461439054478,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,2,0,898.6666666666666,0,0,0 +1338,1646,3035,-9,3033,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,3,6.126308706655652,6.334908038698013,5.644130928850529,4,0,0,0,-9,0,-970.4267303576489,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.468049321378795,0,0,0,50.6,37.31,6,1,0,0,12,2,0,898.6666666666666,0,0,0 +1339,1647,3036,3037,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,3,8.229820772227056,8.271892905108587,7.278324458441932,1,0,-9,9,0,0,7.171695161689525,0,0,0,54,2,2,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,11.15683668342433,11.15683668342433,0,0,0,0,0,0,0,0,0,0,0,7.175604009204228,0,0,54.1,49.39,6,1,0,0,12,5,0,946.5,0,0,0 +1339,1647,3037,3036,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,2,8.197158054629728,8.205338563857925,0,1,0,-9,9,0,0,20.44971873360798,0,0,0,54,3,3,1,3,3,2019,1,1,14,5,30,30,15,1,5,1,0,15.77874393378195,15.77874393378195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.01,45.35,3,1,0,0,12,5,0,946.5,0,0,0 +1340,1648,3038,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-976.207082087358,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,110.1409135240217,3,46.96,37.93,4,1,0,0,11,1,0,419,0,0,0 +1340,1649,3039,-9,3038,-9,3,1,0,21,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-937.1959259300318,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,11,1,0,642,0,0,0 +1341,1650,3040,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,4,0,7.985510928489966,7.72967992100501,3,0,0,0,-9,0,-1100.56869451832,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,8.348457570114967,8.032206301501882,0,0,37.69,58.41,7,3,0,0,8,3,1,121,0,0,0 +1342,1651,3041,3043,-9,-9,2,1,1,57,1,0,1,0,1,-9,2,1,0,4,8.750504727366359,8.846044257818546,0,2,0,-9,27,0,5,-74.9985201118612,0,0,0,52,2,3,1,2,2,2019,1,1,12,1,40,44,15,1,1,1,0,14.77022330417337,14.77022330417337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,54.98,5,1,0,0,9,4,1,692,0,0,0 +1342,1651,3042,-9,3043,3041,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-960.7501538724581,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.17,45.07,6,1,0,0,9,4,1,692,0,0,0 +1342,1651,3043,3041,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,3,7.749480186071699,7.724777324571478,0,2,0,-9,25,0,-5,-12.54406695739301,0,0,0,57,1,4,1,2,2,2019,1,2,8,0,30,25,15,1,0,1,0,8.013878561263974,8.013878561263974,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,55.31,6,1,0,0,9,4,1,692,0,0,0 +1342,1652,3044,-9,3043,3041,3,1,1,21,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-898.7038607215035,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,60.44,6,1,0,0,9,1,1,1588,0,0,0 +1343,1653,3045,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,2,0,5.600809116713546,5.450571009153417,3,0,0,0,-9,0,-957.2607205826581,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.413611459818509,5.624032846384688,0,0,43.93,31.44,4,1,0,0,4,2,0,374,0,0,0 +1344,1654,3046,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-958.4280903919635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.54993669983809,3,58.23,43.46,7,1,0,0,12,1,0,518,0,0,0 +1345,1655,3047,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,3,8.069752478351623,8.331935005689154,7.279427663011701,3,0,-9,0,1,0,-1075.664953898932,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,30,15,1,2,-9,0,10.46204842732422,10.46204842732422,0,0,0,0,0,0,0,0,0,0,0,7.307247835603648,0,0,49,48,5,4,0,0,8,4,0,630,0,0,0 +1345,1656,3048,-9,3047,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,5,8.200053226184156,8.066900576936243,0,3,0,0,0,-9,0,-896.5256335198997,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,54,16,15,1,2,-9,1,8.610331752021054,8.610331752021054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,5,4,0,0,8,4,0,1301,0,0,0 +1346,1657,3049,3050,-9,-9,1,1,0,42,1,0,0,0,2,-9,1,1,0,5,8.250022606338565,8.110456220189761,0,1,0,-9,23,0,-2,42.44568135414079,0,0,1,44,2,5,1,2,1,2019,1,2,12,0,42,42,15,1,0,1,0,8.389592108173364,8.389592108173364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.17,58.56,6,1,0,0,7,5,1,1040,0,0,0 +1346,1657,3050,3049,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,5,8.718996960892214,8.764194560313069,0,1,0,-9,10,0,2,-105.8960603006571,0,0,0,42,2,5,1,-9,-9,2019,1,1,5,1,42,40,15,1,1,1,0,12.97497064396429,12.97497064396429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,7,5,1,1040,0,0,0 +1347,1658,3051,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,3,8.441505673939318,8.213782576429079,0,3,0,0,0,-9,0,-949.7369245934052,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,0,15,1,0,-9,0,11.58520315921527,11.58520315921527,0,0,0,0,0,0,0,0,0,0,4.518655785580595,0,0,0,44.43,56.74,5,1,0,0,8,4,0,177,0,0,0 +1348,1659,3052,3053,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,7.935600210303566,7.524749901579968,0,1,0,-9,1,-9,9,-1.69108235784266,-9,0,0,43,2,2,1,-9,-9,2019,1,3,8,0,40,0,15,1,0,1,0,6.24623316939188,6.24623316939188,0,0,0,0,0,0,0,0,0,0,0,0,17.70072364187607,3,45.35,50.81,6,1,0,0,5,4,1,247,0,0,0 +1348,1659,3053,3052,-9,-9,3,1,0,43,1,0,0,0,2,-9,2,1,0,2,8.064016212512447,7.890354270743046,0,1,0,-9,1,-9,0,-5.252260609385342,-9,0,1,52,2,3,1,-9,-9,2019,1,1,17,5,50,0,15,1,5,1,0,4.723485587984734,4.723485587984734,0,0,0,0,0,0,0,0,0,0,0,0,9.891191930139502,3,31.87,49.25,4,1,0,0,5,4,1,247,0,0,0 +1348,1660,3054,-9,-9,3052,2,1,0,22,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-999.0931164831582,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,20,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.4,46.98,3,1,1,1,5,1,1,565,0,0,0 +1349,1661,3055,3056,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,8.662424123547661,8.826225692814194,1,0,-9,42,0,2,35.84564086424854,0,0,0,73,2,4,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.220985500367513,9.038641863153538,0,0,52.88,43.27,7,1,0,0,10,5,1,1615.5,0,0,0 +1349,1661,3056,3055,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,7.77576177837052,7.108899987300822,1,0,-9,42,0,-2,64.13882855558269,0,0,0,75,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.224758501363781,7.896514549205936,0,0,60.12,54.8,7,1,0,0,10,5,1,1615.5,0,0,0 +1350,1662,3057,-9,3058,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-957.4350134248036,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,1,884.5,0,0,0 +1350,1662,3058,-9,-9,-9,1,1,0,46,3,0,2,0,1,-9,2,1,0,4,8.095105466608139,8.455202035239097,5.417472659233683,4,0,0,0,-9,0,-905.8637667399354,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,22,22,15,1,7,-9,0,15.96104951518657,15.96104951518657,0,0,0,0,0,0,0,1,1,0,5.353115644240116,0,113.3109686004358,3,40.96,61.14,5,1,0,0,4,3,1,884.5,0,0,0 +1351,1663,3059,3061,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.755421298602755,8.39225495380351,0,2,0,-9,17,0,6,-13.71430630952667,0,0,0,40,1,2,1,3,3,2019,1,1,12,0,47,40,15,1,0,1,0,14.01235618066628,14.01235618066628,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.43,49.12,6,3,0,0,4,5,1,346,0,0,0 +1351,1663,3060,-9,3061,3059,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.963933089204,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,4,5,1,346,0,0,0 +1351,1663,3061,3059,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,2,8.40799639486354,8.36180258112452,0,2,0,-9,19,0,-6,.6452075487169491,0,0,1,46,1,4,1,3,2,2019,1,2,9,1,34,32,15,1,1,1,0,12.47364728225488,12.47364728225488,0,0,0,0,0,0,0,1,1,0,.2120312316780137,0,28.88423230848457,3,46.15,49.37,6,1,0,0,4,5,1,346,0,0,0 +1351,1663,3062,-9,3061,3059,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.042705652435,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,4,5,1,346,0,0,0 +1352,1664,3063,3064,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,3,8.395022029346491,8.044871043124061,0,1,0,-9,4,0,11,12.32833439397716,0,0,0,42,2,4,1,-9,-9,2019,1,1,19,6,46,48,15,1,6,1,0,9.165993160146233,9.165993160146233,0,0,0,0,0,0,0,0,0,0,5.395872267339795,0,0,0,37.28,55.9,4,1,0,0,9,4,1,966,0,0,0 +1352,1664,3064,3063,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,4,7.77428681511113,7.99396088657335,0,1,0,-9,4,0,-11,79.91978835634016,0,0,1,53,1,3,1,3,3,2019,1,2,10,0,37,37,15,1,0,1,0,8.086825576739315,8.086825576739315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,2,1,0,0,9,4,1,966,0,0,0 +1353,1665,3065,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,2,8.59004815640214,8.548208415653024,0,3,0,0,0,-9,0,-943.2274063899864,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,37,47,15,1,12,-9,0,14.3532087723768,14.3532087723768,0,0,0,0,0,0,0,0,0,0,0,0,.4758257352219195,3,39.02,41.87,2,1,0,1,10,5,1,6394,0,0,0 +1353,1666,3066,-9,3065,-9,2,1,0,22,2,0,0,0,2,1,2,1,0,5,6.365991430170643,6.412430660279242,0,3,0,0,0,-9,0,-961.9134315898788,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,10,0,15,1,0,-9,1,7.05323070496016,7.05323070496016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,10,2,1,315,0,0,0 +1353,1667,3067,-9,3065,-9,3,1,1,25,2,0,0,0,2,-9,2,1,0,2,8.424694467779974,8.312252700932776,0,3,0,0,0,-9,0,-1067.293689414124,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,42,39,15,1,1,-9,1,9.842576159116991,9.842576159116991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.27,34.89,3,1,0,0,10,4,1,433,0,0,0 +1354,1668,3068,3069,-9,-9,2,1,0,66,1,0,0,0,1,-9,2,1,0,4,8.187167701188645,8.772916114173965,7.547910617636528,1,0,-9,9,0,3,-82.83780954961497,0,0,0,63,1,2,1,2,1,2019,1,1,12,2,22,0,15,1,2,1,0,16.47462455118552,16.47462455118552,0,0,0,0,0,0,0,1,1,0,0,7.860588947104346,0,0,54.2,57.49,6,1,0,0,5,5,1,280.5,0,0,0 +1354,1668,3069,3068,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,2,9.351029489667905,9.737738765099397,0,1,0,-9,40,0,-3,90.30548696921423,0,0,0,66,1,4,1,-9,2,2019,1,2,34,12,65,65,15,1,12,1,0,32.51383521645143,32.51383521645143,0,0,0,0,0,0,0,1,1,0,2.864404197137639,0,0,0,25.71,57.61,2,1,0,0,5,5,1,280.5,0,0,0 +1355,1669,3070,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,6.169825639521837,5.669304766820399,3,0,0,0,-9,0,-900.6616031122162,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,4.29372129254237,0,0,0,0,32.18928892276735,1,1,0,4.492393065828892,6.018736804339486,0,0,41.56,24.5,4,1,0,0,6,2,1,1390,0,0,0 +1356,1670,3071,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,3,0,7.116690165102521,6.902842632399051,3,0,0,0,-9,0,-862.2616616592095,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.025284716739704,0,0,55,42,6,1,0,0,8,2,0,926,0,0,0 +1357,1671,3072,3073,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,6.740133816817306,6.918484658796979,1,0,-9,59,0,3,-64.11452270422899,0,0,0,77,3,3,3,2,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.820809637257982,7.006999032042333,0,0,54,46,6,1,0,0,11,2,0,730.5,0,0,0 +1357,1671,3073,3072,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-3,-16.90914005125582,0,0,0,80,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,2.524296394850551,0,0,3.052359391368159,0,25.59621420527958,1,1,0,2.228150035088275,0,118.4876375071342,1,52,46,6,1,0,0,11,2,0,730.5,0,0,0 +1358,1672,3074,3075,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,51,0,-1,89.0582535369566,0,0,0,70,3,1,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,3,58.9,45.74,6,1,0,0,11,2,1,956,0,0,0 +1358,1672,3075,3074,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,6.482572379440005,6.480516595667796,1,0,-9,51,0,1,-22.93645971804257,0,0,0,69,2,4,3,2,2,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.32039139958792,0,0,52.36,17.31,5,1,0,0,11,2,1,956,0,0,0 +1359,1673,3076,3077,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,3,7.391993795556021,7.398566411433261,0,1,0,-9,37,0,-2,-96.99111859443552,0,0,0,65,1,2,1,3,2,2019,1,1,0,0,37,37,15,1,0,1,0,5.73834266055146,5.73834266055146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.65,49.16,4,3,0,0,6,3,1,975.5,0,0,0 +1359,1673,3077,3076,-9,-9,1,1,1,65,1,0,0,0,1,-9,2,1,0,2,5.277604222572472,6.78139536628969,6.331674510829878,1,0,-9,37,0,2,103.7869234333205,0,0,0,63,2,3,1,-9,-9,2019,1,2,17,5,0,0,15,1,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.35356336036573,6.201449513756772,0,0,47,38,2,1,0,0,6,3,1,975.5,0,0,0 +1360,1674,3078,-9,3079,-9,6,1,1,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1019.390450853065,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,2,0,368.5,0,0,0 +1360,1674,3079,-9,-9,-9,1,1,0,40,2,0,5,0,3,-9,2,1,0,4,7.262035076440187,7.068014141218948,0,4,0,-9,0,-9,0,-1123.263965718052,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,16,0,15,1,1,-9,0,10.86470896852047,10.86470896852047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,5,4,0,0,8,2,0,368.5,0,0,0 +1361,1675,3080,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,5,0,5.4641880814767,5.676227426321115,3,0,0,0,-9,0,-942.4654802336873,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.26746229504915,0,0,41.07,60.93,5,4,0,0,8,2,0,905,0,0,0 +1362,1676,3081,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,7.344334032962061,7.408166477872061,3,0,-9,0,1,0,-824.5769930179338,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.742830024113566,7.316462655968674,0,0,35.37,42.04,3,1,0,0,6,3,1,492,0,0,0 +1363,1677,3082,-9,3085,3083,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.848060056539,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,3,1,541.6,0,0,0 +1363,1677,3083,3085,-9,-9,1,1,1,43,1,1,3,0,2,-9,2,1,0,3,0,0,0,2,0,-9,8,0,-2,.7699803173185042,0,0,0,45,1,2,1,3,3,2019,1,2,7,0,0,52,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,1,1,3,1,541.6,0,0,0 +1363,1677,3084,-9,3085,3083,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.8094020725042,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,3,1,541.6,0,0,0 +1363,1677,3085,3083,-9,-9,2,1,0,45,1,1,3,0,1,-9,2,1,0,2,8.349785674604744,8.354955894185503,0,2,0,-9,8,0,2,153.2466201416508,0,0,0,43,2,3,1,-9,-9,2019,1,1,24,12,12,38,15,1,12,1,0,49.34839947486825,49.34839947486825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.25,26.5,3,1,0,1,1,3,1,541.6,0,0,0 +1363,1677,3086,-9,3085,3083,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1180.917829306545,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,1,3,1,541.6,0,0,0 +1364,1678,3087,-9,3088,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1134.539432088553,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,0,1204,0,0,0 +1364,1678,3088,-9,-9,-9,1,1,0,24,2,1,1,0,2,-9,3,3,0,2,0,5.402728461972423,5.299134906404792,4,0,0,0,-9,0,-910.8573351566356,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.48103192021073,0,0,0,23.12,54.62,3,1,1,1,4,2,0,1204,0,0,0 +1365,1679,3089,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,8,3,1,1,0,6.376174330201154,6.730146291038139,3,0,-9,0,-9,0,-921.7785158287207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.295170064569577,0,0,44.8,21.81,5,1,0,1,11,2,0,254,0,0,0 +1366,1680,3090,-9,3093,3091,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.133779284885,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,7,3,1,373.25,0,0,0 +1366,1680,3091,3093,3094,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,3,7.047069308312899,6.826144515934578,0,2,0,-9,17,0,1,13.16417024517028,0,0,0,40,2,4,1,3,3,2019,1,1,11,0,51,40,15,1,2,1,0,2.729916088566478,2.729916088566478,0,0,0,0,0,0,0,1,1,0,0,0,3.825491693380071,3,43.36,31.2,1,3,0,0,7,3,1,373.25,0,0,0 +1366,1680,3092,-9,3093,3091,4,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-976.6251170970867,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,3,0,0,7,3,1,373.25,0,0,0 +1366,1680,3093,3091,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,8.23567777199507,8.323187458741636,0,2,0,-9,17,0,-1,-47.9431688165887,0,0,1,41,2,3,1,3,2,2019,1,2,13,1,43,48,15,1,1,1,0,9.402330453512009,9.402330453512009,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.46,44.18,3,3,0,0,7,3,1,373.25,0,0,0 +1366,1681,3094,-9,-9,-9,3,1,0,88,3,0,2,0,2,-9,4,3,0,1,0,6.220354465531605,6.301292359311532,4,0,0,0,-9,0,-905.6221465712904,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,5.489206258886473,5.724861960315494,0,0,1,1,0,0,6.106227894322574,0,0,56.03,15.97,3,3,0,0,7,2,1,225,0,0,0 +1367,1682,3095,-9,3097,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-804.0558396547547,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,0,895,0,0,0 +1367,1682,3096,-9,3097,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-836.1847229636628,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,0,895,0,0,0 +1367,1682,3097,-9,-9,-9,1,1,0,27,2,0,2,0,2,-9,2,1,0,4,8.159722139359848,8.367219041931321,0,4,0,0,0,-9,0,-1053.500726802064,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,24,15,1,2,-9,0,9.288136714427642,9.288136714427642,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,1,0,0,2,3,0,895,0,0,0 +1368,1683,3098,3099,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,7.603731192537976,7.972336848512937,1,0,-9,16,0,5,94.86662343163032,0,0,0,60,3,2,1,2,2,2019,3,2,16,4,0,0,15,4,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.516440302619595,39.83692786502172,1,38.85,36.03,6,1,0,0,4,3,1,412,0,0,0 +1368,1683,3099,3098,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,2,0,0,0,1,0,-9,16,0,-5,-220.5372885958109,0,0,0,65,3,3,3,2,2,2019,2,1,9,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.41,35.87,5,1,0,0,4,3,1,412,0,0,0 +1369,1684,3100,3101,-9,-9,2,1,0,53,1,0,1,0,1,-9,2,1,0,4,9.13238769538788,9.009690529860206,0,2,0,-9,8,0,-3,105.4574134985507,0,0,0,56,1,5,1,2,3,2019,1,1,18,6,45,50,15,1,6,1,0,27.03032189317031,27.03032189317031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,4,1,0,0,12,5,1,232,0,0,0 +1369,1684,3101,3100,-9,-9,1,1,1,56,1,0,1,0,1,-9,2,1,0,5,8.660096894299038,8.889937368309081,0,2,0,-9,8,0,3,-.0368810787381246,0,0,0,53,1,4,1,3,3,2019,1,2,7,0,35,35,15,1,0,1,0,25.82543981248268,25.82543981248268,0,0,0,0,0,0,0,0,0,0,1.963313439346068,0,0,0,57.06,57.76,2,1,0,0,12,5,1,232,0,0,0 +1369,1685,3102,-9,3100,3101,3,1,0,18,2,0,1,1,2,0,7,2,0,3,5.051132206925158,5.4661391366746,0,3,0,0,0,-9,0,-921.6416118742386,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,4,0,1,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,7,1,0,0,12,5,1,941,0,0,0 +1370,1686,3103,3104,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,2,8.906443972498725,8.563431738944553,0,1,0,-9,4,0,2,171.2297627222185,0,0,0,43,2,3,1,-9,-9,2019,1,1,12,0,41,43,15,1,0,1,0,15.9117417035399,15.9117417035399,0,0,0,0,0,0,0,0,0,0,6.960128855562179,0,0,0,58.14,42.54,6,1,0,0,7,5,1,502.5,0,0,0 +1370,1686,3104,3103,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,3,7.865314840711637,7.750693435798991,0,1,0,-9,4,0,-2,-25.18112104919037,0,0,0,45,1,2,1,3,2,2019,1,2,9,1,43,40,15,1,1,1,0,7.039627970911884,7.039627970911884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,6,1,0,1,7,5,1,502.5,0,0,0 +1371,1687,3105,-9,3106,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1017.539288700101,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,497,0,0,0 +1371,1687,3106,-9,-9,-9,1,1,0,33,3,0,2,0,2,-9,2,1,0,4,8.190567250688279,7.840447631613872,0,4,0,-9,0,1,0,-999.979207383108,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,32,15,1,0,-9,0,9.26215387287934,9.26215387287934,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,2,1,0,0,12,3,0,497,0,0,0 +1372,1688,3107,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,4,8.065345680740704,8.049891492174426,0,3,0,0,0,-9,0,-957.758727583963,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,1,40,35,15,1,1,-9,0,10.43239403664752,10.43239403664752,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,1,4,0,108,0,0,0 +1373,1689,3108,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,4,9.226727919552603,9.34910666886082,0,3,0,0,0,-9,0,-993.0048349619294,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,55,60,15,1,4,-9,0,22.16146415399809,22.16146415399809,0,0,0,0,0,0,0,0,0,0,3.643288514846247,0,0,0,54.2,57.49,6,1,0,0,9,5,1,605,0,0,0 +1373,1690,3109,-9,3108,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.291791969190321,8.191222053081171,0,3,0,0,0,-9,0,-967.0681408194567,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,15,5,41,0,15,1,5,-9,1,10.85990476696629,10.85990476696629,0,0,0,0,0,0,0,0,0,0,3.243670017191449,0,0,0,27.81,65.69,5,1,0,0,9,4,1,1940,0,0,0 +1374,1691,3110,3111,-9,-9,1,1,1,56,1,0,0,0,2,-9,97,3,0,4,0,0,0,1,0,-9,36,0,1,0,0,0,0,55,1,4,1,2,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,5,1,0,0,10,1,1,588,0,0,0 +1374,1691,3111,3110,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,36,0,-1,0,0,0,0,56,2,4,3,2,2,2019,2,1,22,10,0,18,15,1,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3.938312001045104,0,0,0,27.87,64.32000000000001,3,1,0,0,10,1,1,588,0,0,0 +1375,1692,3112,3114,-9,-9,1,1,0,42,1,1,2,0,1,-9,2,1,0,3,8.512178634012541,8.479014208921399,0,2,0,-9,4,0,-2,70.95417255904813,0,0,1,44,2,4,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,15.05363462576829,15.05363462576829,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60,41.18,6,1,0,0,8,5,0,692,0,0,0 +1375,1692,3113,-9,3112,3114,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.4148134943172,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,2,0,0,8,5,0,692,0,0,0 +1375,1692,3114,3112,-9,-9,2,1,1,44,1,1,2,0,2,-9,2,1,0,4,8.688471017233395,8.530104480971621,0,2,0,-9,4,0,2,100.7363106478635,0,0,0,42,1,3,1,1,1,2019,1,1,9,0,45,45,15,1,0,1,0,14.49578612753487,14.49578612753487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,6,4,0,0,8,5,0,692,0,0,0 +1375,1692,3115,-9,3112,3114,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.4946791042222,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,5,0,692,0,0,0 +1376,1693,3116,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-939.4924091992872,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.66,21.8,5,1,0,0,4,1,0,335,0,0,0 +1376,1694,3117,-9,3116,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,3,6.667068311578214,6.551170777650323,0,3,0,0,0,-9,0,-1147.009007416642,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,40,40,15,1,0,-9,1,2.496388682721591,2.496388682721591,0,0,0,0,0,0,0,1,1,0,0,0,1.797475723905984,3,57.33,53.46,6,1,0,0,4,2,0,467,0,0,0 +1377,1695,3118,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-960.4185769027871,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,1,0,0,2.328877659271763,0,25.87959069478848,0,1,1,0,0,0,0,0,58.56,6.27,7,1,0,0,5,1,0,677,0,0,0 +1378,1696,3119,3120,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,30,0,1,78.76344258407083,0,0,0,49,2,4,1,3,1,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.92,36.22,1,2,0,0,5,4,1,481,0,0,0 +1378,1696,3120,3119,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,4,8.686773565492269,8.402475935420721,0,1,0,-9,29,0,-1,17.9806982264441,0,0,0,50,2,1,3,3,2,2019,2,1,7,0,37,39,15,1,0,3,0,13.23058088330331,13.23058088330331,0,0,0,0,0,0,0,1,1,0,0,0,11.04514011742976,1,57.16,56.15,7,3,0,0,5,4,1,481,0,0,0 +1378,1697,3121,-9,3119,3120,3,1,1,24,2,0,0,0,2,-9,1,1,0,5,4.956547899028162,4.768898990957392,0,3,0,0,0,-9,0,-1023.828804401613,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,6,0,15,1,0,-9,1,2.385159286656444,2.385159286656444,0,0,0,0,0,0,0,1,1,0,0,0,15.29666131112503,3,62.39,56.71,6,2,0,0,5,2,1,408,0,0,0 +1379,1698,3122,3123,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,4.063484284420045,4.156935456508886,1,0,-9,7,0,19,100.0247162042792,0,0,0,54,3,4,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,1,0,1.514712079017148,0,0,0,0,1,1,0,1.270399937874387,4.258063053790488,0,0,49.04,35.19,6,1,0,0,11,3,1,223.5,0,0,0 +1379,1698,3123,3122,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,4,8.39832811502966,8.114022158163358,0,1,0,-9,7,0,-19,31.45918455198175,0,0,0,73,3,3,3,3,3,2019,2,1,4,0,40,40,15,1,0,4,0,10.52416508922956,10.52416508922956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.04,54.59,1,1,0,0,11,3,1,223.5,0,0,0 +1380,1699,3124,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,7.706404385682609,7.768379911315061,3,0,0,0,-9,0,-989.3048459976179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,1.014443410839677,0,0,0,0,0,1,1,0,5.718741180123091,7.552996519025259,0,0,56.58,41.52,6,1,0,0,9,3,1,1001,0,0,0 +1381,1700,3125,3126,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,5,4.277429293195942,8.101781884824646,8.156243704506881,1,0,-9,39,0,3,-11.70442612105514,0,0,0,62,1,1,3,2,2,2019,4,2,7,0,0,8,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.162580649782537,8.2444781525321,0,3,57.06,57.76,6,1,0,0,9,3,1,515.5,0,0,0 +1381,1700,3126,3125,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,1,0,6.244951473345479,6.352175955197209,1,0,-9,40,0,-3,107.2641419631426,0,0,0,65,1,5,3,2,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.656970096244173,5.715723405384916,0,0,35.17,38.23,3,1,0,0,9,3,1,515.5,0,0,0 +1382,1701,3127,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,5.695631068763432,5.523783991186384,3,0,0,0,-9,0,-969.4779660610483,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.61068991780047,0,0,25.93,39.51,3,1,0,0,11,2,1,347,0,0,0 +1383,1702,3128,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,3,8.154038603313355,8.131441807345603,0,3,0,0,0,-9,0,-1071.111936167413,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,39,40,15,1,0,-9,0,12.16784206223563,12.16784206223563,0,0,0,0,0,0,0,1,1,0,2.840447078720314,0,0,0,34.65,58.34,6,1,0,0,2,4,1,746,0,0,0 +1384,1703,3129,3130,-9,-9,1,1,1,61,1,0,1,0,3,-9,8,3,1,3,0,0,0,2,0,-9,38,0,6,0,0,0,0,55,3,4,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,3,0,0,4,1,0,719.3333333333334,0,0,0 +1384,1703,3130,3129,-9,-9,2,1,0,55,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,38,0,-6,0,0,0,0,61,3,3,3,3,2,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,53,6,3,1,0,4,1,0,719.3333333333334,0,0,0 +1384,1703,3131,-9,3130,3129,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-904.3250648743725,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,5,3,0,0,4,1,0,719.3333333333334,0,0,0 +1384,1704,3132,-9,3130,3129,3,1,0,25,2,0,1,0,1,1,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1004.624656329601,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,1,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.51,57.58,2,3,0,1,4,1,0,1239,0,0,0 +1385,1705,3133,-9,3135,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.631585061177,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,921.25,0,0,0 +1385,1705,3134,3135,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,4,8.853114565747907,8.931472309804002,0,2,0,-9,2,0,4,-70.40370021985895,0,0,0,35,2,3,1,1,2,2019,1,2,11,3,37,38,15,1,3,1,0,21.48281211647608,21.48281211647608,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.55,62.9,5,1,0,0,6,5,1,921.25,0,0,0 +1385,1705,3135,3134,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,3,8.28687741174109,8.441305941851136,7.120624916452044,2,0,-9,2,0,-4,-27.3934393502823,-9,0,1,39,1,4,1,-9,-9,2019,1,1,12,0,30,0,15,1,0,1,0,15.46769571532591,15.46769571532591,0,0,0,0,0,0,0,1,1,0,7.592947474956538,0,0,0,37.7,54.28,5,1,0,0,6,5,1,921.25,0,0,0 +1385,1705,3136,-9,3135,-9,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.816024182468,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,5,1,921.25,0,0,0 +1386,1706,3137,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,6,3,0,4,0,6.010177887991838,6.361182955795604,3,0,0,0,-9,0,-1027.129361207307,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.837562748044913,6.48612835539828,0,0,43.14,61.33,6,5,0,0,8,2,1,2318,0,0,0 +1387,1707,3138,3139,-9,-9,1,1,0,55,1,0,1,0,2,-9,1,1,0,4,8.092526516416903,8.241421719451418,7.462665675056148,2,0,-9,5,0,8,32.70325102298905,0,0,0,47,2,4,1,3,3,2019,1,4,8,0,30,22,15,1,0,1,0,10.42058193851932,10.42058193851932,0,0,0,0,0,0,0,1,1,0,7.007822356391059,7.822047281450306,0,0,63.1,45.09,6,1,0,0,5,4,1,493,0,0,0 +1387,1707,3139,3138,-9,-9,4,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.232954876204786,8.306550871860084,0,2,0,-9,5,0,-8,-124.9068779299239,0,0,0,55,2,4,1,-9,-9,2019,1,1,6,0,44,38,15,1,0,1,0,9.676249918806878,9.676249918806878,0,0,0,0,0,0,0,1,1,0,6.876576465851269,0,0,0,62.49,55.09,5,1,0,0,5,4,1,493,0,0,0 +1387,1707,3140,-9,3138,3139,3,1,1,17,2,0,1,0,2,-9,97,3,0,4,0,0,0,2,0,0,0,-9,0,-780.3212944323625,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.47,43.21,5,1,0,0,5,4,1,493,0,0,0 +1387,1708,3141,-9,3138,3139,5,1,0,23,3,0,1,0,2,-9,2,1,0,4,7.791565830724982,7.623531077392864,0,3,0,0,0,-9,0,-1028.048262044769,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,35,52,15,1,1,-9,1,9.851969874594223,9.851969874594223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.04,52.16,5,1,0,0,5,3,1,104,0,0,0 +1388,1709,3142,-9,3144,3143,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.441040130653,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,503.25,0,0,0 +1388,1709,3143,3144,-9,-9,3,1,1,37,1,0,2,0,1,-9,2,1,0,2,8.737724762811117,8.649394140480798,0,2,0,-9,6,0,3,78.748251842908,0,0,0,34,1,3,1,-9,-9,2019,1,1,21,7,42,39,15,1,7,1,0,15.95354839586244,15.95354839586244,0,0,0,0,0,0,0,1,1,0,4.999083969905787,0,0,0,8.17,61.68,2,1,0,0,2,4,1,503.25,0,0,0 +1388,1709,3144,3143,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,3,4.908766531027792,5.016708504272823,0,2,0,-9,6,0,-3,-58.59406082734655,0,0,1,37,1,2,1,2,1,2019,1,3,24,10,1,0,15,1,10,1,0,22.00662389457314,22.00662389457314,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.51,61.9,4,1,0,0,2,4,1,503.25,0,0,0 +1388,1709,3145,-9,3144,3143,2,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.061370156081,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,503.25,0,0,0 +1389,1710,3146,3148,-9,-9,2,1,1,36,1,0,5,0,2,-9,2,1,0,4,7.488299613080468,7.211355442271278,0,2,0,-9,9,0,0,50.84254561127138,-9,0,0,36,3,3,1,2,2,2019,1,1,10,0,40,0,15,1,1,1,0,4.34463577584556,4.34463577584556,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,11,2,0,640.7142857142857,0,0,0 +1389,1710,3147,-9,3148,3146,4,1,0,14,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-978.3904935068202,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,11,2,0,640.7142857142857,0,0,0 +1389,1710,3148,3146,-9,-9,1,1,0,36,1,0,5,0,3,-9,2,1,0,3,7.034668167431466,6.909887276023721,0,2,0,-9,9,0,0,25.08946645519669,0,0,1,36,2,4,1,3,2,2019,1,2,8,0,19,19,15,1,0,1,0,7.653826278348054,7.653826278348054,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.58,54.26,4,1,0,0,11,2,0,640.7142857142857,0,0,0 +1389,1710,3149,-9,3148,3146,6,1,0,9,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.95413080295,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,0,640.7142857142857,0,0,0 +1389,1710,3150,-9,3148,3146,3,1,0,16,2,0,5,1,2,-9,7,2,0,3,4.60972319323744,4.456737873782521,0,2,0,0,0,-9,0,-1036.870901932908,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.418104110610401,3,45.59,44.13,5,1,0,0,11,2,0,640.7142857142857,0,0,0 +1389,1710,3151,-9,3148,3146,7,1,0,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.520156725891,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,0,640.7142857142857,0,0,0 +1389,1710,3152,-9,3148,3146,5,1,0,10,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1019.726790305033,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,11,2,0,640.7142857142857,0,0,0 +1390,1711,3153,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,4,0,5.764697476675267,5.958267152235606,3,0,0,0,-9,0,-935.6154196131295,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,5.556070125277905,0,0,14.88486390928509,0,72.91790605910158,1,1,0,0,6.093661860592952,0,0,61.04,42.09,6,1,0,0,12,2,1,2770,0,0,0 +1391,1712,3154,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,3,0,7.288484647170307,7.498734027113843,3,0,0,0,-9,0,-996.6462957897486,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.287583922779907,7.614063354767232,0,0,64.3,32.53,6,1,0,0,9,3,1,1238,0,0,0 +1392,1713,3155,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,2,0,5.275802528151027,5.244395384950471,3,0,0,0,-9,0,-1062.697645784384,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.661909267848193,0,0,0,34.52,24.67,4,1,0,0,12,2,0,430,0,0,0 +1393,1714,3156,3157,-9,-9,1,1,1,19,1,0,0,0,2,1,2,1,0,3,7.790239200795384,7.527839077381642,0,1,0,1,1,-9,1,-47.11237831286223,-9,1,0,18,2,4,2,-9,-9,2019,2,2,3,0,42,0,15,1,0,2,0,5.702931068767545,5.702931068767545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,53.99,5,1,0,0,10,3,0,1594,0,0,0 +1393,1714,3157,3156,-9,-9,2,1,0,18,1,0,0,1,2,-9,7,2,0,4,6.481632903102103,6.296815822131692,0,1,0,-9,1,-9,-1,-154.716128602572,-9,1,1,19,2,3,1,-9,-9,2019,3,1,12,0,15,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,5,1,0,0,10,3,0,1594,0,0,0 +1394,1715,3158,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,3,0,7.265997023739301,7.089954077075215,3,0,0,0,-9,0,-1017.322115330264,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,.5847985812076164,0,1,1,0,0,7.028340371650607,0,0,49.28,39.46,5,1,0,0,10,2,1,82,0,0,0 +1395,1716,3159,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.692371288671136,7.271285325537758,0,3,0,0,0,-9,0,-950.1426336382934,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,30,45,15,1,8,-9,0,6.360607813636744,6.360607813636744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.38,40.32,2,1,0,1,12,3,0,646,0,0,0 +1395,1717,3160,-9,3159,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.818981474520669,7.866023578510872,0,3,0,0,0,-9,0,-917.0720731260117,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,24,7,45,30,15,1,7,-9,1,8.942691364160051,8.942691364160051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,58.12,3,1,0,1,12,4,0,902,0,0,0 +1396,1718,3161,-9,3163,3162,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.763328852667,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,7,2,1,2116,0,0,0 +1396,1718,3162,3163,-9,-9,2,1,1,53,1,0,1,0,3,-9,1,1,0,3,0,0,0,2,0,-9,6,0,0,71.50034568214441,0,0,0,53,3,3,1,3,3,2019,1,1,13,2,60,70,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,42.42,6,1,0,0,7,2,1,2116,0,0,0 +1396,1718,3163,3162,-9,-9,1,1,0,53,1,0,1,0,3,-9,2,1,0,3,6.652843749805676,6.15126282994928,0,2,0,-9,21,0,0,42.82590925786077,0,0,0,53,3,3,1,-9,-9,2019,1,2,8,1,11,11,15,1,1,1,0,8.016883711370062,8.016883711370062,0,0,0,0,0,0,0,1,1,0,3.34649534268371,0,0,0,58.08,40.76,6,1,0,0,7,2,1,2116,0,0,0 +1397,1719,3164,3165,-9,-9,1,1,0,57,1,0,2,0,2,-9,1,1,0,4,7.365968786762808,7.208630824950172,0,2,0,-9,33,0,2,192.6020066939792,0,0,0,55,2,4,1,3,3,2019,1,2,10,0,35,25,15,1,0,1,0,5.209760459179642,5.209760459179642,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.9,49.4,4,1,0,0,9,3,1,238,0,0,0 +1397,1719,3165,3164,-9,-9,2,1,1,55,1,0,2,0,2,-9,2,1,0,4,8.154068491833579,8.437734551867143,0,2,0,-9,33,0,-2,-45.1686791694731,0,0,0,57,2,4,1,2,3,2019,1,1,7,0,43,42,15,1,0,1,0,8.21829414186506,8.21829414186506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,51.29,4,1,0,0,9,3,1,238,0,0,0 +1397,1719,3166,-9,3164,3165,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1004.564540856467,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,9,3,1,238,0,0,0 +1398,1720,3167,3168,-9,-9,1,1,1,29,1,0,0,0,2,-9,1,1,0,5,0,0,0,1,0,-9,2,0,-3,46.36787641625133,0,1,0,32,1,5,1,-9,-9,2019,1,2,2,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,9,3,1,456,0,0,0 +1398,1720,3168,3167,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,5,8.139170222067156,8.457281820760556,0,1,0,-9,2,0,3,-21.29212175564209,0,0,1,29,2,5,1,-9,-9,2019,1,1,7,0,43,40,15,1,0,1,0,10.47399016762617,10.47399016762617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,9,3,1,456,0,0,0 +1399,1721,3169,-9,3170,3171,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.292619463097,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,471,0,0,0 +1399,1721,3170,3171,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,5,8.653974098948998,8.460276278657545,0,2,0,-9,9,0,-2,2.841566686100582,0,0,1,43,1,2,1,2,2,2019,1,1,13,3,28,28,15,1,3,1,0,19.04666324992439,19.04666324992439,0,0,0,0,0,0,0,1,1,0,0,0,.6647032792740977,3,34.05,61.55,6,1,0,0,12,5,1,471,0,0,0 +1399,1721,3171,3170,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,2,9.309157777122802,9.236692889063793,0,2,0,-9,9,0,2,234.8745338755236,0,0,0,41,1,5,1,2,2,2019,1,2,31,11,40,38,15,1,11,1,0,30.84551544189786,30.84551544189786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.91,55.16,2,1,0,0,12,5,1,471,0,0,0 +1400,1722,3172,3175,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.514325048952468,8.784009046746645,0,2,0,-9,20,0,-6,20.24482399765514,0,0,1,47,1,4,1,2,2,2019,1,2,13,4,47,47,15,1,4,1,0,12.81124684053632,12.81124684053632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,5,1,0,0,6,5,1,1111.25,0,0,0 +1400,1722,3173,-9,3172,3175,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.209558392241,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1111.25,0,0,0 +1400,1722,3174,-9,3172,3175,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-842.1037670901867,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,6,5,1,1111.25,0,0,0 +1400,1722,3175,3172,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,9.595703246460131,9.729731470297185,0,2,0,-9,20,0,6,-74.04094544964845,0,0,0,41,1,4,1,3,3,2019,1,1,9,0,40,42,15,1,0,1,0,35.51183575349572,35.51183575349572,0,0,0,0,0,0,0,0,0,0,0,0,0,3,42.95,61.24,6,1,0,0,6,5,1,1111.25,0,0,0 +1401,1723,3176,-9,3177,3178,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.524489287663,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,5,1,0,1426.333333333333,0,0,0 +1401,1723,3177,3178,-9,-9,2,1,0,29,1,1,1,0,1,-9,3,3,0,3,0,3.051755193525187,3.436941757007571,2,0,-9,2,0,0,-45.9207035161221,0,1,1,29,1,4,3,-9,-9,2019,4,1,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.272859314399208,0,0,0,41.81,31.98,4,3,1,0,5,1,0,1426.333333333333,0,0,0 +1401,1723,3178,3177,-9,-9,1,1,1,29,1,1,1,0,1,1,3,3,0,4,0,0,0,2,0,-9,2,0,0,65.63816902808156,-9,1,0,29,1,3,3,1,1,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,3,1,0,5,1,0,1426.333333333333,0,0,0 +1402,1724,3179,3180,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,5,7.76246488648596,9.043359554374337,8.329749425080868,1,0,-9,3,0,2,-35.93223734766253,0,0,0,55,2,3,1,2,2,2019,1,3,6,0,7,5,15,1,0,1,0,50.53634812837473,50.53634812837473,0,0,0,0,0,0,0,0,0,0,3.570608704086037,8.179681966094504,0,0,59.43,58.05,7,1,0,0,12,5,1,751.5,0,0,0 +1402,1724,3180,3179,-9,-9,3,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.773203792162714,8.05215564413202,3.371524329028117,1,0,-9,3,0,-2,37.03104921289278,0,0,0,57,1,5,1,-9,-9,2019,1,1,8,1,19,19,15,1,1,1,0,12.33502010502414,12.33502010502414,0,0,0,0,0,0,0,0,0,0,2.933919730496976,3.001410549281516,0,0,53.12,33.53,6,1,0,0,12,5,1,751.5,0,0,0 +1402,1725,3181,-9,3180,3179,4,1,0,27,2,0,0,0,1,-9,2,1,0,3,8.149327652139643,8.421403080983941,0,3,0,0,0,-9,0,-1037.672094459691,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,21,8,39,42,15,1,8,-9,1,11.5065808024389,11.5065808024389,0,0,0,0,0,0,0,0,0,0,1.500111472715288,0,0,0,36.04,32.39,4,1,0,1,12,4,1,899,0,0,0 +1402,1726,3182,-9,3180,3179,2,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.431944088447837,8.383117390843768,0,3,0,0,0,-9,0,-979.2865474884442,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,37,40,15,1,1,-9,1,19.65770129970631,19.65770129970631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,57.55,6,1,0,0,12,5,1,3148,0,0,0 +1403,1727,3183,3185,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,4,7.195988508241834,7.584946179522975,0,2,0,-9,23,0,-10,-48.92448897506637,0,0,0,57,1,1,1,1,1,2019,1,1,9,1,23,23,15,1,1,1,0,7.402757687258618,7.402757687258618,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,2,1,1777,0,0,0 +1403,1727,3184,-9,3183,3185,3,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-941.6742459313919,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,2,2,1,1777,0,0,0 +1403,1727,3185,3183,-9,-9,1,1,1,57,1,0,1,0,1,-9,2,1,0,1,4.593950182498008,5.103571209587447,0,2,0,-9,23,0,10,-176.4842864214436,0,0,0,47,2,4,1,2,3,2019,1,2,34,11,0,51,15,1,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.229250901598964,0,0,0,27.72,30.73,3,1,0,0,2,2,1,1777,0,0,0 +1404,1728,3186,-9,-9,-9,1,1,0,33,3,0,1,0,2,-9,1,1,0,3,8.925077309362754,8.961418215146608,0,4,0,-9,0,1,0,-1059.483399753318,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,25,25,15,1,0,-9,0,30.73667727892031,30.73667727892031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.7,49.1,5,1,0,0,9,5,1,114,0,0,0 +1405,1729,3187,3188,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.012660616753124,8.248279584700056,0,1,0,-9,16,0,8,6.458158937683275,0,0,0,49,2,3,1,2,2,2019,1,2,9,0,45,45,15,1,0,1,0,8.417988560461916,8.417988560461916,0,0,0,0,0,0,0,0,0,0,2.797989785612141,0,0,0,50.41,46.95,6,1,0,0,7,5,1,778.5,0,0,0 +1405,1729,3188,3187,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.211586561285307,8.693730947058427,0,1,0,-9,17,0,-8,-111.9438819355277,0,0,0,57,2,3,1,2,2,2019,1,1,8,0,40,45,15,1,0,1,0,15.27950450975507,15.27950450975507,0,0,0,0,0,0,0,0,0,0,4.820779167246347,0,0,0,54.37,54.8,6,1,0,0,7,5,1,778.5,0,0,0 +1406,1730,3189,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,2,1,0,4,8.303568710383779,8.201301754972388,0,3,0,0,0,-9,0,-957.6689670598333,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,35,35,15,1,1,-9,0,11.83221807893891,11.83221807893891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.32,62.74,4,1,0,0,8,4,0,632,0,0,0 +1407,1731,3190,-9,-9,-9,1,1,1,27,2,1,1,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1045.116189219712,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,53,3,3,1,0,2,1,0,1184,0,0,0 +1408,1732,3191,3192,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,6.256756019712574,6.249749704661117,1,0,-9,37,0,8,.3398061083173376,0,0,0,62,2,1,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.569892967064394,122.7144273030711,1,59.97,43.87,7,1,0,0,4,2,1,1130,0,0,0 +1408,1732,3192,3191,-9,-9,2,1,1,62,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,37,0,-8,28.68139134696388,0,0,0,70,3,4,3,2,2,2019,4,1,16,4,0,0,15,3,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.05,8.050000000000001,5,1,0,0,4,2,1,1130,0,0,0 +1409,1733,3193,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,6.636980070711608,6.458175427853566,3,0,0,0,-9,0,-996.5295563999202,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.251588575739024,0,0,38.05,53.92,6,1,0,0,5,2,1,338,0,0,0 +1410,1734,3194,3195,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.383967435103852,8.50712531784712,0,1,0,-9,32,0,1,-19.48694393432549,0,0,0,50,3,4,1,-9,-9,2019,1,2,9,0,42,35,15,1,0,1,0,17.99326106644817,17.99326106644817,0,0,0,0,0,0,0,0,0,0,3.710753755446875,0,2.911011489743794,3,46.48,53.76,2,1,0,0,6,4,1,351.5,0,0,0 +1410,1734,3195,3194,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,4,6.959754576305246,7.349040912951931,0,1,0,-9,32,0,-1,127.3223307271079,0,0,0,51,2,3,1,2,2,2019,1,1,9,0,30,30,15,1,1,1,0,4.54812933199145,4.54812933199145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,6,1,0,0,6,4,1,351.5,0,0,0 +1411,1735,3196,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,4,0,7.881553352458493,8.03922126189568,3,0,0,0,-9,0,-1046.939781985996,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.911119697488914,7.703856350604375,0,0,50.48,56.4,1,1,0,0,12,3,1,2054,0,0,0 +1412,1736,3197,-9,3201,3200,4,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.6038524251489,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,2,1,740.6,0,0,0 +1412,1736,3198,-9,3201,3200,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.6944306692078,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,2,1,740.6,0,0,0 +1412,1736,3199,-9,3201,3200,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-886.5961558683232,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,2,1,740.6,0,0,0 +1412,1736,3200,3201,-9,-9,2,1,1,36,1,1,3,0,2,-9,2,1,0,4,7.441667212738758,7.64308337444947,0,2,0,-9,6,0,11,-28.79808793941891,0,0,0,25,2,3,3,-9,-9,2019,2,1,10,0,24,24,15,1,1,3,0,9.46356623261102,9.46356623261102,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,4,2,1,740.6,0,0,0 +1412,1736,3201,3200,-9,-9,1,1,0,25,1,1,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,11,0,-11,-38.76899073428294,0,1,1,36,2,4,1,3,3,2019,3,2,18,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.55460942304008,3,38.31,49.15,4,3,0,0,4,2,1,740.6,0,0,0 +1413,1737,3202,3203,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,3,8.756439843354546,8.624137528953959,0,2,0,-9,6,0,-3,-24.51518594737612,0,1,1,31,2,3,1,2,2,2019,1,2,19,7,45,39,15,1,7,1,0,14.9160771846331,14.9160771846331,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.71,49.36,4,1,0,0,12,5,1,347.6666666666667,0,0,0 +1413,1737,3203,3202,-9,-9,2,1,1,31,1,0,1,0,2,-9,2,1,0,3,8.339736476852922,8.967495870708063,0,2,0,-9,6,0,3,-102.6009914990577,0,0,0,28,2,3,1,-9,-9,2019,1,1,22,9,57,48,15,1,9,1,0,12.0689335695477,12.0689335695477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.81,56.96,6,1,0,0,12,5,1,347.6666666666667,0,0,0 +1413,1737,3204,-9,3202,3203,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.88014115358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,347.6666666666667,0,0,0 +1414,1738,3205,3206,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,1,0,7.276230588221211,7.30815498003012,1,0,-9,36,0,4,90.28129048409158,0,0,0,80,1,2,3,2,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.561466680749165,0,0,56.66,24.71,7,1,0,0,7,3,1,659,0,0,0 +1414,1738,3206,3205,-9,-9,2,1,0,80,1,0,0,0,1,-9,4,3,0,2,0,6.944224714780443,6.651129384088179,1,0,-9,36,0,-4,104.8777442168985,0,0,0,84,1,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.197426906699095,0,0,58.91,35.36,6,1,0,0,7,3,1,659,0,0,0 +1415,1739,3207,3208,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,1,8.457915393710104,8.176810687391107,0,1,0,-9,27,0,0,40.75421883705998,0,0,0,52,1,4,3,2,2,2019,2,2,31,11,37,38,15,1,11,3,0,16.96733023718314,16.96733023718314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.3,22.87,1,1,0,0,2,4,1,261.5,0,0,0 +1415,1739,3208,3207,-9,-9,2,1,1,52,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,27,0,0,-154.1301553961016,0,0,0,52,1,1,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.30810451956886,1,57.16,56.15,7,1,1,0,2,4,1,261.5,0,0,0 +1416,1740,3209,-9,-9,-9,1,1,1,72,3,1,2,0,2,-9,4,3,0,3,0,4.742686868847846,4.727366307985732,4,0,0,0,-9,0,-1008.79303439387,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.675429509481573,5.139547225435429,0,0,52,47,5,4,0,0,8,2,0,1129,0,0,0 +1417,1741,3210,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1009.947034127084,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.39,40.52,6,4,1,0,6,1,1,1507,0,0,0 +1418,1742,3211,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,2,6.808805825577421,6.942544066507431,0,3,0,0,0,-9,0,-1022.730213860541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,15,15,15,1,0,-9,0,8.157518311885678,8.157518311885678,0,0,0,0,0,0,0,1,1,0,4.656010118102824,0,5.118935731393703,3,55.02,25.14,5,1,0,1,7,2,1,553,0,0,0 +1419,1743,3212,3213,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,3,0,7.454774176815113,7.747129732422659,1,0,-9,48,-9,0,-46.73491317383176,-9,0,0,80,2,4,3,2,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.675944870053047,0,0,53,46,5,1,0,0,11,3,1,355.5,0,0,0 +1419,1743,3213,3212,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,4,0,4.904951023088642,4.934186786256911,1,0,-9,48,-9,0,-223.7653494250291,-9,0,0,80,1,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.06125449410866,4.630326253232592,0,0,42.71,52.64,6,1,0,0,11,3,1,355.5,0,0,0 +1420,1744,3214,3215,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.539404038517329,7.584716841078971,1,0,-9,7,0,6,37.00491190853115,0,0,0,63,2,3,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.822730642830099,7.393602010117163,0,0,45.46,52.15,6,1,0,0,4,3,1,570,0,0,0 +1420,1744,3215,3214,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.103281473048503,7.025291484206453,1,0,-9,7,0,-6,3.277722775952436,0,0,0,69,2,3,3,3,3,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.779502391715141,7.071165583605468,0,3,53.95,32.92,6,1,0,0,4,3,1,570,0,0,0 +1421,1745,3216,-9,3219,3217,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.801507417905,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,1,1630,0,0,0 +1421,1745,3217,3219,-9,-9,1,1,1,40,1,1,3,0,1,-9,1,1,0,3,7.426467965226042,7.400418125378427,0,2,0,-9,6,0,0,111.7151373540405,0,0,0,40,2,3,1,2,2,2019,1,2,10,1,30,20,15,1,1,1,0,5.740403836868601,5.740403836868601,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,0,0,2,3,1,1630,0,0,0 +1421,1745,3218,-9,3219,3217,4,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.731590128009,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,3,1,1630,0,0,0 +1421,1745,3219,3217,-9,-9,2,1,0,40,1,1,3,0,2,-9,1,1,0,3,7.831697695310563,7.75909167173758,5.465171069694163,2,0,-9,6,0,0,43.69365312852361,0,0,1,40,1,3,1,-9,-9,2019,1,1,11,0,25,20,15,1,0,1,0,17.21649534901028,17.21649534901028,0,0,0,0,0,0,0,1,1,0,7.362067847935936,0,0,0,54.94,53.18,6,1,0,0,2,3,1,1630,0,0,0 +1422,1746,3220,3221,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,5.507653221846907,5.691290361480339,0,1,0,-9,42,0,-11,19.27597259213714,0,0,0,77,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.471115220556729,0,0,0,54.2,57.49,7,1,0,0,9,2,1,410,0,0,0 +1422,1746,3221,3220,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,5.484595278866892,5.489044594966019,1,0,-9,11,0,11,-13.95032477047515,0,0,0,66,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.522146824987557,5.125156245120641,0,0,62.66,52.4,6,1,0,0,9,2,1,410,0,0,0 +1423,1747,3222,-9,3224,3225,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.3542823625424,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,3,1,1327.4,0,0,0 +1423,1747,3223,-9,3224,3225,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.8213434190012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,3,1,1327.4,0,0,0 +1423,1747,3224,3225,-9,-9,2,1,0,37,1,1,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-4,.5452668808833856,0,0,1,41,1,4,1,2,1,2019,3,1,15,4,0,10,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.18747848349265,0,0,0,32.65,62.31,3,3,0,0,4,3,1,1327.4,0,0,0 +1423,1747,3225,3224,-9,-9,1,1,1,41,1,1,3,0,1,-9,2,1,0,4,8.372444905010701,8.510347782410541,0,2,0,-9,6,0,4,-9.635380065763803,0,0,0,37,1,5,3,-9,-9,2019,2,2,12,0,37,42,15,1,0,3,0,13.0562056575334,13.0562056575334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,56.38,6,3,0,0,4,3,1,1327.4,0,0,0 +1423,1747,3226,-9,3224,3225,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.8813740481638,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,3,1,1327.4,0,0,0 +1424,1748,3227,3228,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,6.003137638331634,5.945186313102742,1,0,-9,46,0,2,9.423404008454513,0,0,0,72,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.989987218323216,0,0,53.23,47.51,4,4,0,0,7,3,1,536.5,0,0,0 +1424,1748,3228,3227,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,7.567269692970126,7.605294258274863,1,0,-9,6,0,-2,-50.74312042779677,0,0,0,74,2,2,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5112894341685894,7.176920055696458,0,0,54.94,53.18,6,4,0,0,7,3,1,536.5,0,0,0 +1425,1749,3229,3230,-9,-9,1,1,0,43,1,0,1,0,3,-9,2,1,0,3,7.215091010536942,7.340390241200331,0,2,0,-9,12,0,-22,27.97443652469246,0,0,1,65,3,3,3,3,3,2019,2,2,10,0,28,26,15,1,0,4,0,5.414312623844439,5.414312623844439,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.12,50.58,3,3,0,0,6,2,0,299.3333333333333,0,0,0 +1425,1749,3230,3229,-9,-9,2,1,1,65,1,0,1,0,3,-9,4,3,0,3,0,0,0,2,0,-9,8,0,22,-45.99663306017387,0,0,0,43,3,3,1,-9,-9,2019,3,1,12,1,0,50,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,39.79,5,1,0,1,6,2,0,299.3333333333333,0,0,0 +1425,1749,3231,-9,3229,3230,3,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-870.2562062195194,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,6,2,0,299.3333333333333,0,0,0 +1426,1750,3232,3233,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,7.119493529932373,8.193941706898348,7.844972511725166,1,0,-9,5,0,4,67.62775064096944,0,0,0,51,2,5,1,2,3,2019,1,2,6,0,4,3,15,1,0,1,0,41.24263377310027,41.24263377310027,0,0,0,0,0,0,0,0,0,0,4.620765106244603,8.211273493738457,7.488453028956208,3,51.83,57.2,6,1,0,0,10,5,1,393,0,0,0 +1426,1750,3233,3232,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,5,9.002609768188783,9.288158864509045,0,1,0,-9,5,0,-4,-8.959065212739853,0,0,0,55,1,4,1,2,2,2019,1,1,11,0,37,37,15,1,0,1,0,32.0607712544217,32.0607712544217,0,0,0,0,0,0,0,0,0,0,4.816863109506991,0,7.933762004460037,3,43.92,62.31,6,1,0,0,10,5,1,393,0,0,0 +1427,1751,3234,3235,-9,-9,1,1,0,61,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,40,0,-3,25.70545929391213,0,0,0,64,3,3,1,2,1,2019,3,2,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.925301676795487,0,37.49633263159284,3,57.36,20.92,5,1,0,0,9,3,1,2887,0,0,0 +1427,1751,3235,3234,-9,-9,2,1,1,64,1,0,0,0,3,-9,1,1,0,3,8.198856877765097,8.362602355823022,0,1,0,-9,8,0,3,-11.47524979362261,0,0,0,61,3,2,3,3,3,2019,2,1,10,0,40,60,15,1,1,3,0,11.91372740615245,11.91372740615245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,5,1,0,0,9,3,1,2887,0,0,0 +1428,1752,3236,3237,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,1,0,4.053858350701456,4.203674119728904,1,0,-9,17,0,16,90.82856844480096,0,0,0,42,1,2,1,3,2,2019,3,1,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.77257978539913,3.960875666362458,0,0,45.32,22.68,5,1,0,0,2,3,1,1354,0,0,0 +1428,1752,3237,3236,-9,-9,1,1,0,42,1,0,0,0,1,-9,2,1,0,2,8.115687206324703,8.044497088836588,0,1,0,-9,17,0,-16,-49.0432421481523,0,0,1,58,1,1,3,2,1,2019,2,2,9,1,35,71,15,1,1,4,0,13.7665802742705,13.7665802742705,0,0,0,0,0,0,0,1,1,0,3.088810789260367,0,0,1,61.52,45.11,6,1,0,0,2,3,1,1354,0,0,0 +1429,1753,3238,3240,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.521277816015817,7.462481018279345,0,1,0,-9,25,0,-8,-23.87032518919309,0,0,0,62,3,4,1,3,3,2019,1,1,12,1,25,25,15,1,1,1,0,11.06965556496812,11.06965556496812,0,0,0,0,0,0,0,0,0,0,.6011453957203541,0,0,0,44.88,49.37,5,1,0,0,6,4,1,969.6666666666666,0,0,0 +1429,1753,3239,-9,3238,3240,3,1,0,17,2,0,0,0,2,1,2,3,0,4,6.821299994837516,7.0165772487172,0,1,0,0,0,-9,0,-992.5072044833526,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,20,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.63,62.19,6,1,0,0,6,4,1,969.6666666666666,0,0,0 +1429,1753,3240,3238,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,4,7.880486745733965,7.890383194221642,0,1,0,-9,25,0,8,9.77901514700598,0,0,0,54,2,3,1,2,2,2019,1,2,9,0,50,50,15,1,0,1,0,6.195789689868182,6.195789689868182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,6,1,0,0,6,4,1,969.6666666666666,0,0,0 +1430,1754,3241,3242,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,1,0,4.58528110371149,5.086877286878123,1,0,-9,47,0,0,-40.01386833680864,0,0,0,66,3,2,3,2,2,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.4452522603426846,4.515753549015042,0,0,60.28,9.43,6,1,0,0,6,2,1,758,0,0,0 +1430,1754,3242,3241,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,2,5.131373549659338,5.540515680102618,0,1,0,-9,47,0,0,83.79627192587296,0,0,0,66,3,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.673795283038109,0,0,0,51.65,52.38,6,1,0,0,6,2,1,758,0,0,0 +1430,1755,3243,-9,-9,-9,4,1,1,23,2,0,0,0,2,-9,11,3,0,4,6.823328989867052,6.786810064046755,0,3,0,0,0,-9,0,-973.3160831675102,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,32,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,54.67,4,1,0,0,6,2,1,932,0,0,0 +1430,1756,3244,-9,3241,3242,3,1,1,44,3,0,0,0,2,-9,1,1,0,4,8.038511446294843,8.111385335024973,0,3,0,0,0,-9,0,-969.6545680151569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,60,45,15,1,0,-9,1,6.698459255770135,6.698459255770135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.12,57.88,6,1,0,0,6,4,1,789,0,0,0 +1431,1757,3245,3246,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.529505531228454,7.333728953270469,0,1,0,-9,36,0,1,-38.38124742028189,0,0,0,58,2,2,1,3,2,2019,1,2,11,1,48,41,15,1,1,1,0,3.909139938113823,3.909139938113823,0,0,0,0,0,0,0,0,0,0,7.776554343857354,0,8.771694588079622,3,41.27,45.66,4,1,0,0,6,5,1,396.5,0,0,0 +1431,1757,3246,3245,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,2,7.430912745907576,8.389555245068742,8.15302696748784,1,0,-9,36,0,-1,-31.2150306875935,0,0,0,59,2,4,1,2,2,2019,1,1,19,8,50,44,15,1,8,1,0,4.537522348945578,4.537522348945578,0,0,0,0,0,0,0,0,0,0,8.212782425225404,0,14.72336162917356,3,35.21,43.49,3,1,0,0,6,5,1,396.5,0,0,0 +1431,1758,3247,-9,3245,3246,3,1,1,27,2,0,0,0,2,-9,1,1,0,4,7.592701529773914,7.649726267880223,0,3,0,0,0,-9,0,-878.9883292881616,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,70,15,1,0,-9,1,7.250869627487923,7.250869627487923,0,0,0,0,0,0,0,0,0,0,0,0,2.838087013810033,3,62.49,55.09,6,1,0,1,6,3,1,665,0,0,0 +1431,1759,3248,-9,3245,3246,4,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.185663452423272,8.426960597279722,0,3,0,0,0,-9,0,-955.9946018484428,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,25,9,41,40,15,1,9,-9,1,11.14776391122776,11.14776391122776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.37,66,3,1,0,0,6,4,1,625,0,0,0 +1432,1760,3249,3252,-9,-9,1,1,1,49,1,0,4,0,2,-9,2,1,0,2,8.535138851249592,8.863417083531576,0,2,0,-9,18,0,12,31.84974454703006,0,0,0,37,1,3,1,2,2,2019,1,2,23,11,35,35,15,1,11,1,0,28.78644888598216,28.78644888598216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.06,38.71,4,1,0,0,9,4,1,471,0,0,0 +1432,1760,3250,-9,3252,3249,4,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.8947640481086,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,471,0,0,0 +1432,1760,3251,-9,3252,3249,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.841368121729,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,4,1,471,0,0,0 +1432,1760,3252,3249,-9,-9,2,1,0,37,1,0,4,0,1,-9,2,1,0,3,7.907836758129349,7.949507355070024,0,2,0,-9,18,0,-12,3.957388309269219,0,0,1,49,2,2,1,2,2,2019,1,1,15,4,24,18,15,1,4,1,0,13.33420040666988,13.33420040666988,0,0,0,0,0,0,0,1,1,0,2.254361124999751,0,0,0,44.11,55.31,7,1,0,0,9,4,1,471,0,0,0 +1432,1760,3253,-9,3252,3249,3,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.887078263788,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,9,4,1,471,0,0,0 +1432,1760,3254,-9,3252,3249,6,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.9604483473887,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,4,1,471,0,0,0 +1433,1761,3255,-9,3257,3256,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.4065599437669,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,3,0,0,8,5,1,313.75,0,0,0 +1433,1761,3256,3257,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,2,9.136047007830445,8.813808669547944,0,2,0,-9,5,0,4,-153.1012406577649,0,0,0,34,1,3,3,-9,-9,2019,2,2,18,6,43,40,15,1,6,3,0,32.85534949012531,32.85534949012531,0,0,0,0,0,0,0,0,0,0,7.222890349479291,0,0,0,28.18,51.11,2,3,0,0,8,5,1,313.75,0,0,0 +1433,1761,3257,3256,-9,-9,2,1,0,34,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-4,37.74922772135481,0,0,1,38,1,2,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.62,55.66,3,3,0,0,8,5,1,313.75,0,0,0 +1433,1761,3258,-9,3257,3256,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.2557029310395,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,8,5,1,313.75,0,0,0 +1434,1762,3259,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,6.184631089431481,6.077590976466773,3,0,0,0,-9,0,-1014.58000225563,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.168838636015567,5.784509179939723,0,0,52.29,44.78,7,1,0,0,4,2,0,72,0,0,0 +1435,1763,3260,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1026.01058921916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9102950970622042,0,0,0,56.18,48.32,1,1,0,0,9,1,0,1326,0,0,0 +1436,1764,3261,3262,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.19072392620645,8.102477898826693,0,1,0,-9,7,0,-7,60.89319014232471,0,0,0,51,2,4,1,2,2,2019,1,2,9,0,47,47,15,1,0,1,0,8.11769636594839,8.11769636594839,0,0,0,0,0,0,0,0,0,0,5.581714117676333,0,0,0,46.44,59.62,6,1,0,0,7,4,1,1375.5,0,0,0 +1436,1764,3262,3261,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.768125539602725,8.084479403366055,0,1,0,-9,7,0,7,83.16437008044886,0,0,0,44,2,4,1,2,2,2019,1,1,10,0,10,10,15,1,1,1,0,23.41348638178543,23.41348638178543,0,0,0,0,0,0,0,0,0,0,.7053052039210225,0,0,0,51,54,6,1,0,0,7,4,1,1375.5,0,0,0 +1436,1765,3263,-9,3262,3261,3,1,1,19,2,0,0,0,2,-9,2,1,0,4,6.932274838275298,7.070764443075817,0,3,0,0,0,-9,0,-827.0437758294622,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,2,-9,1,3.915792672212606,3.915792672212606,0,0,0,0,0,0,0,0,0,0,.9948255865872453,0,0,0,48,59,5,1,0,0,7,2,1,862,0,0,0 +1437,1766,3264,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,4,8.154511005703322,7.823370008516407,0,4,0,0,0,-9,0,-900.7099862671254,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,32,42,15,1,0,-9,0,13.36468985751222,13.36468985751222,0,0,0,0,0,0,0,1,1,0,3.030551776277265,0,0,3,54.79,55.86,6,1,0,0,2,3,1,808,0,0,0 +1437,1766,3265,-9,3264,-9,2,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-947.0481327176888,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.90232504774183,3,57.16,56.15,7,1,0,0,2,3,1,808,0,0,0 +1438,1767,3266,3267,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,56,0,8,0,0,0,0,75,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.510505150330117,0,0,0,47.8,39.1,5,1,0,0,6,1,1,179.5,0,0,0 +1438,1767,3267,3266,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-8,0,0,0,0,83,3,2,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.288818453472577,0,0,0,54.38,49.27,6,1,0,0,6,1,1,179.5,0,0,0 +1438,1768,3268,-9,3267,3266,3,1,1,50,2,0,0,0,2,-9,2,1,0,3,8.903682672189909,8.618404668166272,0,3,0,0,0,-9,0,-909.1259207098303,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,46,50,15,1,0,-9,1,15.03685280861188,15.03685280861188,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.3,55.28,5,1,0,0,6,5,1,558,0,0,0 +1439,1769,3269,3270,-9,-9,1,1,1,51,1,0,0,0,1,-9,1,1,0,4,9.363815030438483,9.778934941013102,8.090243611530244,1,0,-9,8,0,1,87.57250275168887,0,0,0,50,3,4,1,3,3,2019,1,2,6,0,40,35,15,1,0,1,0,46.83070663239467,46.83070663239467,0,0,0,0,0,0,0,0,0,0,8.46842060646134,8.141874087164128,0,0,62.49,55.09,6,1,0,0,13,5,1,1218,0,0,0 +1439,1769,3270,3269,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,4,7.604669752359189,8.103587474811871,0,1,0,-9,8,0,-1,99.04728652761342,0,0,0,51,1,4,1,3,3,2019,1,1,6,0,22,0,15,1,0,1,0,9.541710589168318,9.541710589168318,0,0,0,0,0,0,0,0,0,0,6.982101807415219,0,0,0,57.16,56.15,6,1,0,0,13,5,1,1218,0,0,0 +1440,1770,3271,3272,-9,-9,1,1,0,65,1,0,0,0,1,0,7,2,0,3,0,0,0,1,0,-9,2,0,-10,-91.65818015762325,-9,0,0,75,3,2,3,3,3,2019,4,2,13,1,0,0,15,2,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.474962935731797,0,0,0,41.3,34.93,5,1,0,0,8,2,1,1257.5,0,0,0 +1440,1770,3272,3271,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,7.33082619873295,7.010774883371465,1,0,-9,2,0,10,-66.37418670359766,0,0,0,65,1,3,2,2,2,2019,4,1,6,0,0,0,15,4,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,1.659017598786321,7.324286038322484,0,0,55.88,43.6,5,1,0,0,8,2,1,1257.5,0,0,0 +1441,1771,3273,3274,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,7.3370812889867,7.143038205456733,1,0,-9,9,0,0,45.11487059346468,0,0,0,72,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.9838323383595751,6.92318045189598,0,0,60.42,39.53,6,1,0,0,12,4,1,302,0,0,0 +1441,1771,3274,3273,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,8.527675322336874,8.159343620399543,1,0,-9,9,0,0,-20.94122831969392,0,0,0,72,2,4,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.494161632112867,8.073037632956719,3.955954788645993,3,41.58,45.42,5,1,0,0,12,4,1,302,0,0,0 +1442,1772,3275,3276,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,5,7.884002669138499,7.519733210038337,0,2,0,-9,9,0,-7,-76.50908174064567,0,0,1,46,2,4,1,2,2,2019,1,2,8,0,30,30,15,1,0,1,0,8.30138871999608,8.30138871999608,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,490.6666666666667,0,0,0 +1442,1772,3276,3275,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.716501961912593,8.702223142983273,0,2,0,-9,9,0,7,-46.71807935728117,0,0,0,39,2,5,1,2,2,2019,1,1,11,0,46,45,15,1,0,1,0,15.63289839447951,15.63289839447951,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,12,5,1,490.6666666666667,0,0,0 +1442,1772,3277,-9,3275,3276,4,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-980.9115094793175,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,5,1,490.6666666666667,0,0,0 +1443,1773,3278,3279,-9,-9,1,1,1,53,1,0,0,0,2,-9,4,3,0,2,0,7.763348889157481,7.292509681906893,1,0,-9,10,0,-6,-79.98463633207763,0,0,0,59,2,2,1,3,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.519454773730269,0,0,39.23,28.06,5,1,0,0,2,5,1,219.5,0,0,0 +1443,1773,3279,3278,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,8.606381027709674,9.294198219580855,8.670552913829944,1,0,-9,10,0,6,44.85814011732586,0,0,0,53,2,2,3,3,3,2019,2,1,16,4,28,37,15,1,4,4,0,22.58132345009837,22.58132345009837,0,0,0,0,0,0,0,1,1,0,7.632875716844355,8.842432546205732,12.93131053580503,2,44.49,47.34,3,1,0,0,2,5,1,219.5,0,0,0 +1443,1774,3280,-9,3279,3278,3,1,0,21,2,0,0,0,2,-9,7,2,0,3,7.493195405918484,7.642720345188148,0,3,0,0,0,-9,0,-997.6359252454898,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,30,40,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.6380385040067308,0,0,0,26.18,61.09,4,1,0,0,2,3,1,278,0,0,0 +1444,1775,3281,3282,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,2,8.498778582049141,8.200742468577088,0,2,0,-9,26,0,11,-23.61367333188644,0,0,0,47,3,3,3,3,3,2019,2,1,17,5,44,44,15,1,5,3,0,16.59322823715096,16.59322823715096,0,0,0,0,0,0,0,1,1,0,0,0,.6917689130119724,3,29.54,46.03,3,1,0,0,6,3,1,931.3333333333334,0,0,0 +1444,1775,3282,3281,-9,-9,1,1,0,47,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,26,0,-11,36.90665444607409,0,0,0,58,2,2,1,-9,3,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.08,57.51,5,1,0,0,6,3,1,931.3333333333334,0,0,0 +1444,1775,3283,-9,3282,3281,4,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1019.776835037642,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.72,58.13,7,1,0,0,6,3,1,931.3333333333334,0,0,0 +1444,1776,3284,-9,3282,3281,3,1,1,23,2,0,1,0,3,-9,2,1,0,4,8.145045138114909,8.022505693907958,0,3,0,0,0,-9,0,-934.2853156161119,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,38,40,15,1,1,-9,1,8.863233840441042,8.863233840441042,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,0,0,6,4,1,1517,0,0,0 +1444,1777,3285,-9,3282,3281,5,1,0,23,2,0,1,0,2,-9,3,3,0,4,4.915322495843969,5.172964147500973,0,3,0,0,0,-9,0,-1010.18865936211,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,1,0,6,2,1,2121,0,0,0 +1445,1778,3286,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,97,3,0,4,0,6.3860526186894,6.40596849042545,3,0,0,0,-9,0,-920.4297884118057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,37,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2182716035729521,6.678719183854213,0,0,68.48999999999999,23.51,6,1,0,0,7,2,0,384,0,0,0 +1446,1779,3287,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,3,8.260628069859397,7.986077055237557,0,3,0,0,0,-9,0,-948.2263328477452,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,8.529284753131193,8.529284753131193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.1,49.38,6,1,0,0,1,4,1,358,0,0,0 +1446,1780,3288,-9,3287,-9,2,1,0,21,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1057.501382087182,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,33,11,0,44,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.93,72.73999999999999,2,2,1,1,1,1,1,221,0,0,0 +1447,1781,3289,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,3,6.466766504357504,6.623782706985103,0,3,0,-9,0,-9,0,-1040.68081999964,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,8,0,15,1,2,-9,0,9.298376402930499,9.298376402930499,0,0,0,0,0,0,0,1,1,0,0,0,75.36477965519629,3,46.33,55.93,4,1,0,0,9,2,0,103,0,0,0 +1448,1782,3290,3291,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,5.494115267234824,5.071933015894776,1,0,-9,50,0,0,117.7867289169181,0,0,0,69,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.754287011037818,5.254509036117478,0,0,54.2,57.49,6,1,0,0,6,2,1,406.5,0,0,0 +1448,1782,3291,3290,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,6.468084888574857,6.331239519572475,1,0,-9,50,0,0,109.9539870112166,0,0,0,69,3,4,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.084857428707396,6.519687433670344,0,0,49.27,56.95,1,1,0,0,6,2,1,406.5,0,0,0 +1449,1783,3292,-9,3295,3293,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.148005880294,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,2,3,1,876.5,0,0,0 +1449,1783,3293,3295,-9,-9,1,1,1,43,1,1,2,0,2,-9,2,1,0,5,8.3620531539359,8.083385975001011,0,2,0,-9,8,0,0,199.1181797135263,0,0,0,43,1,4,1,1,1,2019,1,2,15,6,31,32,15,1,6,1,0,14.11169964641144,14.11169964641144,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.53,61.33,6,1,0,0,2,3,1,876.5,0,0,0 +1449,1783,3294,-9,3295,3293,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.406887140672,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,2,3,1,876.5,0,0,0 +1449,1783,3295,3293,-9,-9,2,1,0,43,1,1,2,0,1,-9,1,1,0,4,5.110623337119256,5.254636837510046,0,2,0,-9,8,0,0,-124.0740742597952,0,0,1,43,2,5,1,-9,-9,2019,1,1,11,2,28,32,15,1,2,1,0,.8039799618083995,.8039799618083995,0,0,0,0,0,0,0,1,1,0,6.282926519565232,0,0,0,45.91,59.89,6,3,0,0,2,3,1,876.5,0,0,0 +1450,1784,3296,3297,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,4,8.466059097722116,8.271347336814767,0,2,0,-9,5,0,-7,125.9656979172703,0,0,1,42,2,5,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,11.40202145869936,11.40202145869936,0,0,0,0,0,0,0,1,1,0,4.091728548686924,0,0,0,58.72,51.29,6,1,0,0,11,5,1,411,0,0,0 +1450,1784,3297,3296,-9,-9,1,1,1,42,1,1,1,0,2,-9,2,1,0,5,8.882894459251963,8.227768231707966,0,2,0,-9,5,0,7,-34.14469966789495,0,0,0,35,1,4,1,2,2,2019,1,2,10,1,39,38,15,1,1,1,0,17.54776926949072,17.54776926949072,0,0,0,0,0,0,0,1,1,0,.3121648001006798,0,0,0,54.1,59.11,6,1,0,0,11,5,1,411,0,0,0 +1450,1784,3298,-9,3296,3297,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.272945543094,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,411,0,0,0 +1451,1785,3299,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,8,3,1,1,0,7.427396745201457,7.678778386608188,3,0,0,0,-9,0,-877.450273644145,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.097030358661296,7.7898035170029,0,0,47.6,23.1,5,1,0,0,6,3,1,729,0,0,0 +1452,1786,3300,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,7.529366399965703,7.525362301464215,3,0,0,0,-9,0,-942.582925493708,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,28,11,0,0,15,4,11,-9,0,0,0,1,5.903532385308499,0,0,0,0,60.56698607872882,1,1,0,3.444926468470568,7.583723992741143,0,0,27.81,26.62,2,1,0,0,12,3,1,3005,0,0,0 +1453,1787,3301,3302,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,6.831828492275524,6.683431955032002,0,1,0,-9,8,0,11,-106.2726630396393,0,0,0,45,2,5,1,-9,-9,2019,1,1,6,0,15,16,15,1,0,1,0,6.658286066951529,6.658286066951529,0,0,0,0,0,0,0,0,0,0,0,0,29.98002280379108,3,57.16,56.15,7,1,0,0,7,5,1,178.5,0,0,0 +1453,1787,3302,3301,-9,-9,1,1,1,45,1,0,0,0,2,-9,1,1,0,5,9.074147825901562,8.998733971876295,0,1,0,-9,8,0,-11,14.21716327385712,0,0,0,56,2,4,1,2,3,2019,1,2,5,2,42,90,15,1,2,1,0,25.44482212413251,25.44482212413251,0,0,0,0,0,0,0,0,0,0,0,0,19.12132264754811,3,50.79,60.82,6,1,0,0,7,5,1,178.5,0,0,0 +1454,1788,3303,3305,-9,-9,2,1,0,46,1,0,1,0,3,-9,2,1,0,3,7.077570425444517,6.87532329270903,0,2,0,-9,22,-9,-3,15.02727237298568,-9,0,0,49,3,4,1,3,3,2019,1,1,16,4,16,0,15,1,4,1,0,8.044636589078031,8.044636589078031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.24,47.58,5,3,0,1,7,3,1,314.6666666666667,0,0,0 +1454,1788,3304,-9,3303,3305,6,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,-9,0,-9,0,-1022.828971544621,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,7,3,1,314.6666666666667,0,0,0 +1454,1788,3305,3303,-9,-9,1,1,1,49,1,0,1,0,3,-9,2,1,0,4,7.666758516178558,7.771378470993926,0,2,0,-9,22,-9,3,-145.4485745412535,-9,0,0,46,3,3,1,3,3,2019,1,2,12,0,35,0,15,1,0,1,0,9.35892219424584,9.35892219424584,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.53,49.72,4,3,0,0,7,3,1,314.6666666666667,0,0,0 +1454,1789,3306,-9,3303,3305,3,1,0,21,3,0,1,0,2,-9,2,1,0,4,6.337470116357537,6.224805118406404,0,3,0,-9,0,-9,0,-1063.901218009885,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,1,20,0,15,1,1,-9,1,2.850687624066575,2.850687624066575,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.61,31.95,6,3,0,0,7,2,1,693,0,0,0 +1454,1790,3307,-9,3303,3305,4,1,1,23,2,0,1,0,2,-9,2,1,0,5,7.793987685384939,8.036728857112264,0,3,0,-9,0,-9,0,-983.679973762281,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,25,0,15,1,1,-9,1,15.39967667604922,15.39967667604922,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.53,57.01,7,3,0,0,7,4,1,326,0,0,0 +1454,1791,3308,-9,3303,3305,5,1,0,19,2,0,1,0,2,-9,2,1,0,5,6.662085707099479,6.61498721858573,0,3,0,-9,0,-9,0,-1012.323201534922,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,0,15,1,0,-9,1,6.060589130575738,6.060589130575738,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,7,3,0,0,7,2,1,2016,0,0,0 +1455,1792,3309,3310,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,3,8.799000066933338,8.688195544307829,0,2,0,-9,19,-9,-4,-55.92147354956781,-9,0,0,53,1,4,1,2,1,2019,1,2,4,0,36,0,15,1,0,1,0,20.74311125864225,20.74311125864225,0,0,0,0,0,0,0,0,0,0,8.715020664604753,0,0,0,59.46,46.99,6,4,0,0,8,5,1,566.5,0,0,0 +1455,1792,3310,3309,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,4,8.118049561398863,8.298245200766491,0,2,0,-9,19,-9,4,-50.25836681688875,-9,0,0,49,1,3,1,2,2,2019,1,1,4,0,7,0,15,1,0,1,0,54.46405264958533,54.46405264958533,0,0,0,0,0,0,0,0,0,0,8.178988256408562,0,0,0,57.16,56.15,6,4,0,0,8,5,1,566.5,0,0,0 +1455,1793,3311,-9,3309,3310,3,1,1,23,2,0,1,0,1,-9,2,1,0,3,8.426533947725082,8.304453623697283,0,3,0,-9,0,-9,0,-1073.127639678829,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,37,0,15,1,0,-9,1,14.27105125506064,14.27105125506064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,5,4,0,0,8,4,1,159,0,0,0 +1455,1794,3312,-9,3309,3310,4,1,1,18,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-1030.116790657237,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,4,0,0,8,5,1,363,0,0,0 +1456,1795,3313,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,0,5.141357309659927,5.251761740244183,3,0,0,0,-9,0,-1179.746194842225,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.172884784651814,0,0,39.37,25.14,4,1,0,0,9,2,1,918,0,0,0 +1457,1796,3314,3315,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.803054440058852,7.697668916928792,1,0,-9,52,0,3,-54.46718314145285,0,0,0,69,1,2,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.39089662618442,7.438790831902526,0,0,53,47,5,1,0,0,2,5,1,729,0,0,0 +1457,1796,3315,3314,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,2,0,8.749606036965073,8.308239113809295,1,0,-9,52,0,-3,40.75839390639512,0,0,0,72,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.248212819651607,8.112923529737987,24.04654513525286,1,57.18,45.76,6,1,0,0,2,5,1,729,0,0,0 +1458,1797,3316,3317,3318,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.591161385307763,7.234393610733076,0,1,0,-9,33,0,1,-32.77880881054537,0,0,0,57,3,3,1,2,2,2019,1,1,8,0,24,24,15,1,0,1,0,6.180843515440799,6.180843515440799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,7,4,1,450.5,0,0,0 +1458,1797,3317,3316,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,3,8.466102458990019,8.402902090161186,4.845514311761431,1,0,-9,33,0,-1,25.35671738897238,0,0,0,58,2,4,1,2,3,2019,1,2,7,0,50,51,15,1,0,1,0,10.3687006058614,10.3687006058614,0,0,0,0,0,0,0,1,1,0,5.015233508091999,0,6.420803716039,3,60.29,52.11,6,1,0,0,7,4,1,450.5,0,0,0 +1458,1798,3318,-9,-9,-9,3,1,0,85,3,0,0,0,2,-9,4,3,0,3,0,6.895112929074032,6.813513706789542,3,0,0,0,-9,0,-1068.461233181866,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.847581209021958,0,0,51.32,30.16,6,1,0,0,7,2,1,398,0,0,0 +1459,1799,3319,3320,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.727559253630298,8.751722346158513,0,1,0,-9,20,0,5,-48.9190813420202,0,0,0,49,2,4,1,2,-9,2019,1,2,11,1,50,70,15,1,1,1,0,15.39212115917732,15.39212115917732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.95,57.9,4,4,0,0,8,5,1,1637.666666666667,0,0,0 +1459,1799,3320,3319,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,4,8.356511349109804,8.554560660202901,0,1,0,-9,8,0,-5,-113.8787987311626,0,0,0,54,1,4,1,-9,-9,2019,1,1,8,0,36,36,15,1,0,1,0,16.548345524044,16.548345524044,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,7,4,0,0,8,5,1,1637.666666666667,0,0,0 +1459,1799,3321,-9,3319,3320,4,1,0,17,2,0,0,1,2,0,7,2,0,4,6.240328453467784,6.67791119152181,0,1,0,0,0,-9,0,-917.1974035930418,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,11,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.59,60.85,6,4,0,0,8,5,1,1637.666666666667,0,0,0 +1459,1800,3322,-9,3319,3320,3,1,0,26,2,0,0,0,2,-9,2,1,0,3,8.032858959306767,8.279056690898607,0,3,0,0,0,-9,0,-957.8586897328427,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,50,30,15,1,5,-9,1,8.131618738542302,8.131618738542302,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,1,4,0,0,8,4,1,194,0,0,0 +1460,1801,3323,3324,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,7.013068813387542,8.220589548517554,8.214642948532132,1,0,-9,1,-9,13,.0434046085627242,-9,0,0,41,1,2,1,-9,-9,2019,1,1,11,0,37,0,15,1,1,1,0,3.515926987909699,3.515926987909699,0,0,0,0,0,0,0,0,0,0,4.865843362197682,7.988482668295437,0,0,49,50,5,5,0,0,6,5,1,755,0,0,0 +1460,1801,3324,3323,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,2,9.12531930549766,9.363640153591071,0,1,0,-9,1,0,-13,-48.4554689773874,-9,0,1,54,1,3,1,2,1,2019,1,2,12,0,47,0,15,1,0,1,0,17.1168129691683,17.1168129691683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.04,31.61,5,1,0,0,6,5,1,755,0,0,0 +1461,1802,3325,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,3,8.349235477852869,8.255716747049277,0,3,0,0,0,-9,0,-1021.134205106173,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,10,37,0,15,1,10,-9,0,11.2011140083522,11.2011140083522,0,0,0,0,0,0,0,0,0,0,4.023519945205752,0,22.52291323382613,3,22.21,58.65,2,1,0,0,12,4,0,128,0,0,0 +1462,1803,3326,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1039.120236543533,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,4,1,0,904,0,0,0 +1463,1804,3327,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,7.942777044634753,7.588054517360864,0,3,0,0,0,-9,0,-929.3927473454538,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,60,58,15,1,0,-9,0,3.227124802588589,3.227124802588589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,6,1,0,0,1,3,1,417,0,0,0 +1464,1805,3328,-9,-9,-9,1,1,0,31,2,0,2,0,3,-9,97,3,0,2,6.346988038732384,6.965934187143765,5.671416526329325,4,0,0,0,-9,0,-905.6535333639375,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,28,11,5,1,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.712163620602557,0,7.294062986250986,3,26.89,37.75,4,1,0,0,9,2,0,327.6666666666667,0,0,0 +1464,1805,3329,-9,3328,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1081.468206241818,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,327.6666666666667,0,0,0 +1464,1805,3330,-9,3328,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1016.73734082926,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,1,0,0,9,2,0,327.6666666666667,0,0,0 +1465,1806,3331,-9,-9,-9,1,1,1,51,3,0,0,0,3,-9,2,1,0,2,8.525361709020073,8.773230088882954,0,3,0,0,0,-9,0,-977.2825636424508,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,37,59,15,1,0,-9,0,15.03471907495141,15.03471907495141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.7,46.46,6,1,0,0,2,4,1,814,0,0,0 +1466,1807,3332,-9,3334,3333,4,1,1,17,2,0,0,0,2,-9,7,2,0,3,5.722299952578314,5.736223847664438,3.605072517148218,1,0,0,0,-9,0,-1130.954665436577,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.247510557547555,0,0,0,54.37,54.8,6,1,0,0,1,4,0,1300,0,0,0 +1466,1807,3333,3334,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,7.908882929805727,7.443013881196887,1,0,-9,39,0,5,54.21975447658757,-9,0,0,60,2,2,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,1,0,3.302601112339991,0,0,0,0,1,1,0,0,7.73153385076375,0,0,51.1,52.08,5,1,0,0,1,4,0,1300,0,0,0 +1466,1807,3334,3333,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,2,8.44992292443516,8.336382989478093,4.918708826110842,1,0,-9,39,0,-5,14.16164944699543,0,0,0,65,2,3,3,3,2,2019,2,2,12,0,33,35,15,1,0,4,0,12.14676522237299,12.14676522237299,0,0,0,0,0,0,0,1,1,0,0,5.189601146045608,13.0630429711562,3,61.28,35.65,6,1,0,0,1,4,0,1300,0,0,0 +1466,1808,3335,-9,3334,3333,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.25744233822142,8.455100982026627,0,3,0,0,0,-9,0,-937.0145486891323,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,0,15,1,1,-9,1,13.10276218246168,13.10276218246168,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.48,58.28,6,1,0,0,1,4,0,347,0,0,0 +1467,1809,3336,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,5,7.894631590814958,8.327207377542882,7.308834650736739,3,0,0,0,-9,0,-1031.017868271597,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,23,0,15,1,6,-9,0,9.326566690162448,9.326566690162448,0,0,0,0,0,0,0,0,0,0,6.48512384704388,7.918743736960855,0,0,35.81,64.81,5,2,0,0,6,4,1,988,0,0,0 +1468,1810,3337,3338,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,6.287401759191622,6.655555388677747,1,0,-9,39,0,8,41.07469761032942,0,0,0,57,2,3,1,2,2,2019,3,1,20,9,0,22,15,4,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6938234571910817,6.769049264042049,0,0,32.1,51.95,3,1,0,0,11,4,1,168,0,0,0 +1468,1810,3338,3337,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,3,7.667771171194763,8.583073714139962,7.971856052135157,1,0,-9,39,0,-8,-21.79405266670053,0,0,0,65,2,2,3,3,2,2019,2,2,10,0,25,30,15,1,0,4,0,8.433976377965841,8.433976377965841,0,0,0,0,0,0,0,1,1,0,0,8.218662224165939,0,0,58.32,50.22,6,1,0,0,11,4,1,168,0,0,0 +1469,1811,3339,-9,3342,3341,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.766760622436,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,4,1,467.75,0,0,0 +1469,1811,3340,-9,3342,3341,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-806.4670193739191,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,4,1,467.75,0,0,0 +1469,1811,3341,3342,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,9.00548140768446,9.3035770118163,0,2,0,-9,9,0,7,80.48246223558874,0,0,0,30,1,2,3,2,1,2019,2,2,11,1,38,41,15,1,1,3,0,28.37367183601047,28.37367183601047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,4,3,0,0,9,4,1,467.75,0,0,0 +1469,1811,3342,3341,-9,-9,2,1,0,30,1,1,2,0,1,-9,6,3,0,2,0,0,0,2,0,-9,10,0,-7,52.27729092149782,0,0,1,37,1,4,1,2,1,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.88,40.36,7,3,0,0,9,4,1,467.75,0,0,0 +1470,1812,3343,-9,3344,3345,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.247402942595,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,0,784,0,0,0 +1470,1812,3344,3345,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,4,7.889403973751366,7.995164200784053,0,2,0,-9,16,0,1,-26.02600340857985,0,0,1,37,1,2,1,1,1,2019,1,2,14,2,47,40,15,1,2,1,0,5.758380414031502,5.758380414031502,0,0,0,0,0,0,0,0,0,0,3.285365124287764,0,0,0,45.91,59.89,4,1,0,0,6,5,0,784,0,0,0 +1470,1812,3345,3344,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,2,9.240336148488817,9.146669381708085,0,2,0,-9,16,0,-1,-33.63983876745502,0,0,0,38,2,4,1,3,2,2019,1,1,8,0,38,48,15,1,0,1,0,28.87600371097596,28.87600371097596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.52,45.11,6,1,0,0,6,5,0,784,0,0,0 +1470,1812,3346,-9,3344,3345,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1189.76673307135,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,0,784,0,0,0 +1471,1813,3347,3348,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,5.740187121593805,5.58873890653666,1,0,-9,36,0,-3,-51.40906687397626,0,0,0,65,2,2,3,2,2,2019,4,1,24,10,0,31,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.08040530101311,6.049765888564332,9.429374537296251,3,24.26,61.91,2,1,0,1,9,4,1,692,0,0,0 +1471,1813,3348,3347,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,2,6.529425761198304,8.702048254161642,8.195130966043163,1,0,-9,36,0,3,-20.66943330361412,0,0,0,62,2,3,3,2,2,2019,4,2,13,1,6,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.809952634507138,8.298903147074915,1.914101849797011,3,28.49,50.97,3,1,0,0,9,4,1,692,0,0,0 +1472,1814,3349,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,1,1,0,2,5.964026236419702,6.397590243959206,0,3,0,-9,0,-9,0,-1002.355911515833,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,40,0,15,1,3,-9,0,1.252960081067484,1.252960081067484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.76,49.72,5,1,0,0,4,2,1,345,0,0,0 +1473,1815,3350,3351,-9,-9,2,1,0,49,1,0,0,0,2,-9,97,3,0,3,0,0,0,1,0,-9,4,0,7,0,0,0,0,42,3,4,3,-9,-9,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.8754277423723,1,36.22,34.72,5,1,0,0,6,1,0,522,0,0,0 +1473,1815,3351,3350,-9,-9,1,1,1,42,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,4,0,-7,0,0,0,0,49,2,3,3,2,3,2019,4,2,16,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.04,51.53,6,1,0,0,6,1,0,522,0,0,0 +1474,1816,3352,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,7.510347801703996,8.266661807207905,3,0,0,0,-9,0,-1019.823847984485,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.880010475288227,8.086905829958708,0,0,54.2,57.49,6,1,0,0,8,3,1,252,0,0,0 +1474,1817,3353,-9,3352,-9,2,1,1,35,2,0,0,0,2,-9,1,1,0,3,9.352685559274795,8.996212227794913,0,3,0,0,0,-9,0,-975.8193459095163,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,1,30,0,15,1,1,-9,1,35.59760983888717,35.59760983888717,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,2,0,1,8,5,1,512,0,0,0 +1475,1818,3354,3355,-9,-9,2,1,0,39,1,2,2,0,2,-9,2,1,0,4,6.565399113908007,6.700220316931925,0,2,0,-9,13,0,-1,18.60562610039989,0,0,1,40,2,3,1,2,2,2019,1,1,19,7,12,12,15,1,7,1,0,6.680927636600362,6.680927636600362,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.04,70.52,4,1,0,0,5,3,1,608.5,0,0,0 +1475,1818,3355,3354,-9,-9,1,1,1,40,1,2,2,0,2,-9,2,1,0,3,8.097125796133449,8.301557609539261,0,2,0,-9,13,0,1,-110.9067401951217,0,0,0,39,2,4,1,2,2,2019,1,2,17,5,42,37,15,1,5,1,0,10.39945716155038,10.39945716155038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.61,63.63,2,1,0,0,5,3,1,608.5,0,0,0 +1475,1818,3356,-9,3354,3355,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1049.5207315674,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,608.5,0,0,0 +1475,1818,3357,-9,3354,3355,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.076714675047,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,3,1,608.5,0,0,0 +1476,1819,3358,3359,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.154562846068366,9.290793842474292,0,2,0,-9,9,0,6,106.3288571980438,0,0,0,42,1,3,1,-9,-9,2019,1,1,9,0,37,35,15,1,0,1,0,29.99656851073976,29.99656851073976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,8,5,1,449.6666666666667,0,0,0 +1476,1819,3359,3358,-9,-9,1,1,0,42,1,0,1,0,1,-9,2,1,0,3,8.890820189704854,9.006276560519961,0,2,0,-9,9,0,-6,85.69948252496685,0,0,1,48,1,4,1,2,1,2019,1,2,23,11,21,30,15,1,11,1,0,37.86254570396778,37.86254570396778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.04,61.63,6,1,0,0,8,5,1,449.6666666666667,0,0,0 +1476,1819,3360,-9,3359,3358,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.6784339850495,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,449.6666666666667,0,0,0 +1477,1820,3361,-9,3363,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1009.691362057815,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,544.6666666666666,0,0,0 +1477,1820,3362,-9,3363,-9,2,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.583481747963,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,544.6666666666666,0,0,0 +1477,1820,3363,-9,-9,-9,1,1,0,26,2,0,2,0,2,-9,2,1,0,3,7.066589045006411,7.161119636025037,0,4,0,0,0,-9,0,-866.4749607635116,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,18,20,15,1,0,-9,0,7.977620294944208,7.977620294944208,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.36,52.17,6,1,0,0,4,2,0,544.6666666666666,0,0,0 +1478,1821,3364,3365,-9,-9,2,1,0,39,1,0,0,0,2,-9,6,3,0,2,0,6.749870156415505,6.717313523163739,1,0,-9,21,0,-3,13.38640057023098,0,0,1,42,2,3,1,2,3,2019,3,1,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.650141981837169,6.883507662577422,0,0,43.65,29.11,5,1,0,0,7,3,1,679.5,0,0,0 +1478,1821,3365,3364,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,3,7.593632546726921,7.518340790962803,0,1,0,-9,21,0,3,61.52171016237098,0,0,0,39,2,2,3,2,3,2019,2,2,15,4,18,16,15,1,4,3,0,11.48451935149082,11.48451935149082,0,0,0,0,0,0,0,1,1,0,0,0,4.568508498870328,1,48.4,50.83,5,1,0,0,7,3,1,679.5,0,0,0 +1479,1822,3366,3367,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,3,6.838898851239825,7.861711962228457,7.033112007729998,1,0,-9,6,0,-4,-36.52454021653254,0,0,0,69,3,2,3,3,3,2019,2,1,11,0,24,24,15,1,0,4,0,6.255727779433824,6.255727779433824,0,0,0,0,0,0,0,1,1,0,0,6.715787884295977,0,0,54.37,54.8,6,1,0,0,4,3,1,740.5,0,0,0 +1479,1822,3367,3366,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,4,125.9188449281297,0,0,0,65,2,3,1,3,3,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.71,54.32,5,1,0,0,4,3,1,740.5,0,0,0 +1480,1823,3368,-9,3373,3372,6,1,0,8,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.1071289724969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,724.2857142857143,0,0,0 +1480,1823,3369,-9,3373,3372,5,1,1,12,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1008.189249756335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,10,3,1,724.2857142857143,0,0,0 +1480,1823,3370,-9,3373,3372,7,1,1,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.162694576345,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,724.2857142857143,0,0,0 +1480,1823,3371,-9,3373,3372,3,1,0,15,2,0,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-904.286459329128,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,10,3,1,724.2857142857143,0,0,0 +1480,1823,3372,3373,-9,-9,2,1,1,40,1,0,5,0,2,-9,2,1,0,2,8.480384458881087,8.712721447838641,0,2,0,-9,17,0,3,82.30864574734537,0,0,0,37,2,1,3,2,3,2019,2,1,8,2,40,40,15,1,2,3,0,15.78113821193876,15.78113821193876,0,0,0,0,0,0,0,1,1,0,0,0,2.472432451486844,1,54.37,44.27,5,1,0,0,10,3,1,724.2857142857143,0,0,0 +1480,1823,3373,3372,-9,-9,1,1,0,37,1,0,5,0,2,-9,6,3,0,1,0,0,0,2,0,-9,17,0,-3,-196.8130786456761,0,0,1,40,2,2,1,2,2,2019,3,2,24,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,17.84,2,1,0,0,10,3,1,724.2857142857143,0,0,0 +1480,1823,3374,-9,3373,3372,4,1,1,14,2,0,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-968.2911577674964,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,3,1,724.2857142857143,0,0,0 +1481,1824,3375,3376,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,7.722442147500582,7.897880968171066,1,0,-9,36,0,0,71.608154418154,0,0,0,71,3,2,3,3,3,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.772519877838289,7.903331201103678,0,0,53.45,49.53,6,1,0,0,9,3,1,826.5,0,0,0 +1481,1824,3376,3375,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,6.627897917191164,6.667919429879601,1,0,-9,36,0,0,-79.4409337797855,0,0,0,71,2,4,3,3,3,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,1,0,27.36118202015715,0,0,0,0,1,1,0,6.238516160083379,6.184766867861964,0,0,60.55,29.25,6,1,0,0,9,3,1,826.5,0,0,0 +1482,1825,3377,3378,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,8.492037121407551,8.164146689832153,1,0,-9,42,0,2,48.30861237898608,0,0,0,61,1,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.241742293597478,8.201882594805079,26.18187827843917,3,61.04,39.41,5,1,0,0,12,5,1,2584,0,0,0 +1482,1825,3378,3377,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,4,0,7.704258377619467,7.808382538961793,1,0,-9,8,0,-2,7.065025034704965,0,0,0,63,2,3,3,-9,-9,2019,4,1,21,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.420327898597613,7.989761682906649,44.42040969723521,3,38.09,63.39,3,1,0,0,12,5,1,2584,0,0,0 +1483,1826,3379,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-945.8869925020515,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.8471512069342,3,32.94,19.18,1,1,0,1,5,1,0,211,0,0,0 +1483,1827,3380,-9,3379,-9,2,1,1,25,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1052.332615745061,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,5,1,0,280,0,0,0 +1484,1828,3381,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-923.3748463799855,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,52.67,5,1,0,1,4,1,0,1408,0,0,0 +1485,1829,3382,3383,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.397401981507306,8.747657064498249,7.012661412300336,1,0,-9,2,0,-11,-98.33420283503955,0,0,0,63,3,3,1,-9,2,2019,1,2,30,12,38,37,15,1,12,1,0,12.07414048036955,12.07414048036955,0,0,0,0,0,0,0,0,0,0,7.136150134883053,6.998607162667453,0,3,27.81,65.69,2,1,0,0,10,5,1,531.5,0,0,0 +1485,1829,3383,3382,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,3,8.15648687332142,8.469137797336957,6.967612691405585,1,0,-9,2,0,11,24.12240238730162,0,0,0,52,1,4,1,2,2,2019,1,1,13,1,45,45,15,1,1,1,0,7.592695481658807,7.592695481658807,0,0,0,0,0,0,0,0,0,0,1.744554921139143,6.993487698513966,0,0,45.13,37.37,3,1,0,0,10,5,1,531.5,0,0,0 +1486,1830,3384,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,4,8.821920611897246,8.343386207793092,0,3,0,-9,0,1,0,-1028.308723642081,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,37,37,15,1,0,-9,0,14.43522786365096,14.43522786365096,0,0,0,0,0,0,0,1,1,0,4.963111964293036,0,0,0,57.16,56.15,6,1,0,0,2,5,0,1546,0,0,0 +1487,1831,3385,3386,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,4,8.588041499519051,8.578727228039201,0,1,0,-9,2,0,7,-91.32619353961407,0,0,0,56,2,3,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,14.25710642059992,14.25710642059992,0,0,0,0,0,0,0,0,0,0,4.211376235142828,0,0,0,21.88,64.76000000000001,5,1,0,0,11,5,1,341.5,0,0,0 +1487,1831,3386,3385,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.52655686504396,7.679875495186252,0,1,0,-9,30,0,-7,18.12097672450125,0,0,0,63,2,4,1,-9,-9,2019,1,2,9,0,32,30,15,1,0,1,0,8.636926065864179,8.636926065864179,0,0,0,0,0,0,0,0,0,0,3.871307974561704,0,0,0,47.13,48.65,5,1,0,0,11,5,1,341.5,0,0,0 +1487,1832,3387,-9,3386,3385,4,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.095096441515727,8.084487766719688,0,3,0,0,0,-9,0,-1037.26684410746,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,37,38,15,1,1,-9,1,10.04456087447707,10.04456087447707,0,0,0,0,0,0,0,0,0,0,2.693192641939454,0,0,0,35.54,59.05,4,1,0,0,11,4,1,455,0,0,0 +1488,1833,3388,3389,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,5.025999427125871,5.467770209427586,1,0,-9,50,0,-4,-26.29410202263901,0,0,0,73,2,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.636631016111959,0,0,0,60.12,54.8,6,1,0,0,2,2,0,1291.5,0,0,0 +1488,1833,3389,3388,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,6.205904176789157,6.236165832904183,1,0,-9,50,0,4,74.20596130608369,0,0,0,69,2,4,3,-9,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.143558380055094,5.991865681842999,0,0,43.44,51.94,5,1,0,0,2,2,0,1291.5,0,0,0 +1489,1834,3390,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,3,3,0,2,0,7.55823128203183,7.661386342413636,3,0,0,0,-9,0,-1145.644855232034,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.950631708278475,7.61540581759807,0,0,40.58,42.2,3,1,1,0,2,3,1,821,0,0,0 +1489,1835,3391,-9,-9,3390,2,1,1,31,2,0,0,0,2,-9,2,1,0,3,7.998446201357218,7.989759029454478,0,3,0,0,0,-9,0,-881.849992895043,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,1,38,0,15,1,1,-9,1,9.013969521259824,9.013969521259824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.81,48.01,3,1,0,0,2,3,1,674,0,0,0 +1490,1836,3392,-9,3395,3394,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.8334646130774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,5,0,568.4,0,0,0 +1490,1836,3393,-9,3395,3394,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.535152921439,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,0,568.4,0,0,0 +1490,1836,3394,3395,-9,-9,2,1,1,39,1,0,3,0,2,-9,1,1,0,4,9.828982824050824,9.551741909391414,0,2,0,-9,8,0,7,-20.35161576447049,0,0,0,32,2,3,3,-9,-9,2019,2,1,10,0,50,50,15,1,1,3,0,45.96941942540363,45.96941942540363,0,0,0,0,0,0,0,1,1,0,5.47210300696739,0,0,0,51,56,5,1,0,0,10,5,0,568.4,0,0,0 +1490,1836,3395,3394,-9,-9,1,1,0,32,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-7,67.45734297407635,0,0,1,39,2,4,1,-9,-9,2019,3,2,14,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,6,1,0,0,10,5,0,568.4,0,0,0 +1490,1836,3396,-9,3395,3394,3,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1078.624082671391,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,10,5,0,568.4,0,0,0 +1491,1837,3397,3398,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,3,6.529149077206735,6.229252463384712,0,1,0,-9,37,0,-6,-5.630153815316848,0,0,0,64,2,1,3,3,2,2019,2,2,27,12,11,29,15,1,12,3,0,5.990698668836577,5.990698668836577,0,0,0,0,0,0,0,1,1,0,2.347125420702393,0,74.4465115388515,1,26.65,51,2,1,0,0,9,2,0,295,0,0,0 +1491,1837,3398,3397,-9,-9,2,1,1,64,1,0,0,0,2,-9,8,3,1,1,0,6.25244028595027,6.011814754271621,1,0,-9,37,0,6,-75.80445314231086,0,0,0,58,1,3,1,3,2,2019,3,1,21,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.252153242419729,0,0,42.46,24.25,4,1,0,0,9,2,0,295,0,0,0 +1492,1838,3399,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,2,1,0,1,9.16819470665734,8.893431100920115,0,3,0,0,0,-9,0,-913.5328408658331,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,45,40,15,1,3,-9,0,21.80649382007868,21.80649382007868,0,0,0,0,0,0,0,0,0,0,0,0,0,3,50.19,24.93,4,1,0,0,8,5,1,682,0,0,0 +1493,1839,3400,3401,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,7.749516063753914,8.125458617144544,0,1,0,-9,7,0,12,73.71361257351705,0,0,0,43,1,2,1,2,2,2019,1,1,7,0,42,45,15,1,0,1,0,10.05479516564549,10.05479516564549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,9,5,0,528,0,0,0 +1493,1839,3401,3400,-9,-9,1,1,0,43,1,0,0,0,1,-9,2,1,0,2,8.868287661999283,8.948528921009475,0,1,0,-9,7,0,-12,68.03797506768737,0,0,1,55,2,4,1,3,2,2019,1,2,19,7,37,37,15,1,7,1,0,23.97031727201816,23.97031727201816,0,0,0,0,0,0,0,0,0,0,4.422787658831125,0,0,0,44.82,31.06,5,1,0,0,9,5,0,528,0,0,0 +1494,1840,3402,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,5,8.665953024426878,9.03091515721432,0,3,0,-9,0,-9,0,-1044.371005624854,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,42,0,15,1,0,-9,0,17.7577475941761,17.7577475941761,0,0,0,0,0,0,0,1,1,0,5.987637391886975,0,0,0,57.06,57.76,2,1,0,0,11,5,1,2037,0,0,0 +1495,1841,3403,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,2,0,6.207604038487003,6.215107823788266,3,0,0,0,-9,0,-1001.2314505954,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.831630164638972,0,0,47.8,32.53,6,1,0,0,12,2,1,395,0,0,0 +1496,1842,3404,3405,-9,-9,1,1,1,68,1,0,0,0,1,-9,2,1,0,4,7.328859530369914,7.810542482972418,6.387162508208049,1,0,-9,6,0,3,-27.04196947864988,0,0,0,65,1,3,3,3,3,2019,2,2,7,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.91733584624034,6.159735715015326,0,0,54.55,49.1,6,1,0,0,12,4,1,1911,0,0,0 +1496,1842,3405,3404,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,7.964505368778767,7.828723536918704,1,0,-9,6,0,-3,-11.82058869454894,0,0,0,68,1,4,1,2,1,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.641704735658784,7.738813508138213,0,0,54.96,53.17,6,1,0,0,12,4,1,1911,0,0,0 +1497,1843,3406,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,4,8.193415914479123,7.965060989545588,0,3,0,0,0,-9,0,-1006.841116552351,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,15.14878329380061,15.14878329380061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.39,42.04,5,1,0,0,13,4,1,1049,0,0,0 +1498,1844,3407,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,1,1,0,4,7.298740523090688,7.288753250335659,0,4,0,0,0,-9,0,-988.1092778382009,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,32,15,1,0,-9,0,4.024794832521257,4.024794832521257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,57.81,6,1,0,0,13,2,1,1776.5,0,0,0 +1498,1844,3408,-9,3407,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-940.2420225084726,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,2,1,1776.5,0,0,0 +1499,1845,3409,-9,3412,3410,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1171.28149015976,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,626.4,0,0,0 +1499,1845,3410,3412,-9,-9,1,1,1,58,1,0,3,0,3,-9,3,3,0,1,0,0,0,2,0,-9,19,0,19,-35.81418035350256,0,0,0,39,3,4,1,3,3,2019,3,2,17,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.81,31.15,4,3,1,1,8,2,0,626.4,0,0,0 +1499,1845,3411,-9,3412,3410,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.372875627978,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,626.4,0,0,0 +1499,1845,3412,3410,-9,-9,2,1,0,39,1,0,3,0,3,-9,2,1,0,4,6.888241620084797,7.562381719120618,0,2,0,-9,19,0,-19,142.7505181328305,0,0,1,58,3,1,3,3,3,2019,2,1,6,1,32,24,15,1,1,3,0,4.269959650486898,4.269959650486898,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,3,0,1,8,2,0,626.4,0,0,0 +1499,1845,3413,-9,3412,3410,4,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-963.3278979780544,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,3,0,0,8,2,0,626.4,0,0,0 +1500,1846,3414,3415,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,3,7.838531366666523,7.903897009288165,0,1,0,-9,7,0,-3,-32.03212977642141,0,0,0,47,2,3,1,-9,3,2019,1,2,7,0,45,39,15,1,0,1,0,8.80887421708014,8.80887421708014,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,1,0,1,8,4,0,532.5,0,0,0 +1500,1846,3415,3414,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,3,7.754814239239753,7.873032246709514,0,1,0,-9,7,0,3,103.3179554868382,0,0,0,44,2,3,1,-9,-9,2019,1,1,8,0,38,36,15,1,0,1,0,7.962331502945755,7.962331502945755,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,1,8,4,0,532.5,0,0,0 +1500,1847,3416,-9,3415,3414,3,1,1,27,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-871.3559367463364,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,4,1,1,0,8,1,0,1355,0,0,0 +1501,1848,3417,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-939.1197445895701,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.910359595182999,0,0,0,29.27,55.34,5,1,0,0,2,1,0,759,0,0,0 +1502,1849,3418,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,3,0,6.890496314256639,6.920712004195229,3,0,0,0,-9,0,-985.6081695017612,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,1.047370769788706,0,0,0,0,17.1083779001596,1,1,0,2.213162774926631,7.088409009780587,0,0,64.15000000000001,38.07,7,1,0,0,1,2,1,283,0,0,0 +1503,1850,3419,-9,3420,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1014.354763537331,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.16,41.4,5,3,0,0,9,2,0,332,0,0,0 +1503,1850,3420,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,1,6.963666048912732,6.869073859713746,0,4,0,0,0,-9,0,-1101.460560543645,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,18,4,18,18,15,1,4,-9,0,6.607269043164666,6.607269043164666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.8,22.78,3,3,0,1,9,2,0,332,0,0,0 +1504,1851,3421,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-921.0928110264526,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,4,12,-9,0,0,0,1,45.34381191172036,0,0,0,0,0,1,1,0,0,0,0,0,16.78,35.79,2,1,0,0,6,1,0,470,0,0,0 +1505,1852,3422,-9,3426,3423,5,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-997.4220356295394,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,10,4,1,612.4,0,0,0 +1505,1852,3423,3426,-9,-9,1,1,1,53,1,0,3,0,1,-9,2,1,0,4,8.545148935134465,8.665918677870996,0,2,0,-9,7,0,5,-71.14494413235492,0,0,0,48,1,4,1,3,2,2019,1,2,10,0,48,50,15,1,0,1,0,11.04338370271432,11.04338370271432,0,0,0,0,0,0,0,1,1,0,2.635852027644959,0,0,0,55.94,47.09,6,1,0,0,10,4,1,612.4,0,0,0 +1505,1852,3424,-9,3426,3423,3,1,1,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1060.720255179534,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.289435067026531,0,6.214979401952569,3,47.52,58.09,6,1,0,0,10,4,1,612.4,0,0,0 +1505,1852,3425,-9,3426,3423,4,1,0,15,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-951.1492853130179,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,10,4,1,612.4,0,0,0 +1505,1852,3426,3423,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,4,8.442351850425128,8.3529028884436,0,2,0,-9,7,0,-5,-81.20006899668768,0,0,0,53,1,4,1,2,2,2019,1,1,10,1,40,40,15,1,1,1,0,13.28741136685611,13.28741136685611,0,0,0,0,0,0,0,1,1,0,3.463662984579063,0,2.266074780450993,3,57.16,56.15,6,1,0,0,10,4,1,612.4,0,0,0 +1506,1853,3427,-9,-9,-9,1,1,1,43,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-977.0357570024055,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.97,53.97,5,2,0,1,5,1,0,244,0,0,0 +1507,1854,3428,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-983.7223553020708,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46,37,5,1,0,0,6,1,0,145,0,0,0 +1508,1855,3429,-9,3430,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-884.077738877237,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,4,2,1,1174.666666666667,0,0,0 +1508,1855,3430,3431,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,4,7.543026588743023,7.563120229771663,0,2,0,-9,3,0,5,2.061077868154221,0,0,0,48,1,4,1,3,3,2019,1,3,6,0,28,60,15,1,0,1,0,7.713713051917169,7.713713051917169,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,4,2,1,1174.666666666667,0,0,0 +1508,1855,3431,3430,-9,-9,3,1,1,48,1,0,1,0,1,-9,1,1,0,4,0,0,0,2,0,-9,3,0,-5,-130.8954565072092,0,0,0,53,1,4,1,-9,-9,2019,1,1,9,0,90,70,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,5,0,0,4,2,1,1174.666666666667,0,0,0 +1509,1856,3432,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,4,8.457513327839736,8.864912611375079,0,3,0,-9,0,1,0,-940.5510562916704,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,65,57,15,1,0,-9,0,10.06839617378045,10.06839617378045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,10,5,0,730,0,0,0 +1510,1857,3433,3434,-9,-9,2,1,1,69,1,0,1,0,2,-9,4,3,0,4,0,5.367021769845005,5.400323641692335,2,0,-9,20,0,15,-11.78993584896702,0,0,0,54,1,5,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.582728425842705,5.085723531189238,0,0,52.29,50.28,6,1,0,0,7,2,1,434.6666666666667,0,0,0 +1510,1857,3434,3433,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,5,7.455709178562058,7.536273166739229,0,2,0,-9,20,0,-15,80.13815480638758,0,0,0,69,2,4,3,1,1,2019,2,2,5,0,17,23,15,1,0,4,0,17.84861314615093,17.84861314615093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,7,2,1,434.6666666666667,0,0,0 +1510,1857,3435,-9,3434,3433,3,1,1,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1041.337977104546,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,1,0,0,7,2,1,434.6666666666667,0,0,0 +1511,1858,3436,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-981.1595836788086,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,33,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.6219008419600593,3,51.02,52.22,6,1,0,0,1,1,0,1230,0,0,0 +1512,1859,3437,3438,-9,-9,1,1,0,43,1,0,0,0,2,-9,7,2,0,4,4.79433365258723,7.567454709778026,7.497428328202398,1,0,-9,1,-9,0,-34.72983660019658,-9,0,1,52,1,4,1,2,2,2019,3,3,16,4,0,0,15,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.518106016696605,0,0,0,53.16,48.53,3,1,0,0,10,5,1,670,0,0,0 +1512,1859,3438,3437,-9,-9,3,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.702885595851408,8.636310565106159,0,1,0,-9,1,-9,9,91.85011761914762,-9,0,0,43,2,4,2,-9,-9,2019,2,1,17,5,37,0,15,1,5,2,0,20.99969156949983,20.99969156949983,0,0,0,0,0,0,0,1,1,0,1.417399345230928,0,0,0,41.17,59.31,2,5,0,0,10,5,1,670,0,0,0 +1513,1860,3439,3440,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,3,8.364633511969037,8.457208112695808,0,1,0,-9,2,0,2,9.709692941827788,0,0,0,53,2,2,1,-9,-9,2019,1,1,14,4,40,40,15,1,4,1,0,12.9199143855656,12.9199143855656,0,0,0,0,0,0,0,0,0,0,0,0,22.63951185218869,3,41.48,52.55,6,1,0,1,9,5,1,669,0,0,0 +1513,1860,3440,3439,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.914209323278896,8.169146236531617,0,1,0,-9,2,0,-2,18.16163714181922,0,0,0,55,3,3,1,2,2,2019,1,2,19,7,42,42,15,1,7,1,0,11.39104736128567,11.39104736128567,0,0,0,0,0,0,0,0,0,0,0,0,15.42353002428248,3,25.53,46.78,1,1,0,1,9,5,1,669,0,0,0 +1514,1861,3441,3442,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,5,8.744424350136731,8.827647015847974,0,2,0,-9,9,0,-1,42.43212529707775,0,0,0,51,1,4,1,1,2,2019,1,2,8,1,35,0,15,1,1,1,0,22.51527870278328,22.51527870278328,0,0,0,0,0,0,0,1,1,0,2.414495915333216,0,0,0,51.67,60.18,6,1,0,0,12,5,1,674.6666666666666,0,0,0 +1514,1861,3442,3441,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,4,8.572931745432085,8.352045879822182,0,2,0,-9,9,0,1,39.97947893588578,0,0,0,50,1,5,1,2,1,2019,1,1,7,0,28,28,15,1,0,1,0,17.84777252728711,17.84777252728711,0,0,0,0,0,0,0,1,1,0,1.561035278080229,0,0,0,48.87,58.55,6,1,0,0,12,5,1,674.6666666666666,0,0,0 +1514,1861,3443,-9,3442,3441,4,1,0,17,2,0,1,1,2,-9,7,2,0,4,5.782373695611774,5.922083580986313,0,2,0,0,0,-9,0,-930.9339032288035,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,5,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,6,1,0,0,12,5,1,674.6666666666666,0,0,0 +1514,1862,3444,-9,3442,3441,3,1,1,20,2,0,1,1,2,-9,7,2,0,5,7.839120510124743,7.477963476535092,0,3,0,0,0,-9,0,-1021.867516562509,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,58.56,6,1,0,0,12,3,1,47,0,0,0 +1515,1863,3445,3446,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-1,70.19459117895219,0,0,0,72,1,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.784956396826385,0,0,0,43.65,58.28,6,1,0,0,13,3,1,1276.5,0,0,0 +1515,1863,3446,3445,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,5,0,8.346322607909784,8.387793728950104,1,0,-9,46,0,1,60.61720706437995,0,0,0,71,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.623244879578341,8.399578178327749,0,0,57.06,57.76,7,1,0,0,13,3,1,1276.5,0,0,0 +1516,1864,3447,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,7.790425475967728,7.549431078435877,3,0,0,0,-9,0,-1022.426794303154,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.40551747573612,7.381638805415671,0,0,25.88,52.99,4,1,0,0,9,3,1,168,0,0,0 +1517,1865,3448,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,2,0,6.745984184736639,6.860752066732278,3,0,0,0,-9,0,-905.3167401063706,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.520614646042943,0,0,47.15,29.99,2,1,0,0,4,2,1,859,0,0,0 +1518,1866,3449,3450,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,3,36.46587847988257,0,0,0,74,3,3,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.68,42.36,6,1,0,0,2,2,1,566,0,0,0 +1518,1866,3450,3449,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,6.039737090158931,5.342830105839512,1,0,-9,57,0,-3,104.675805878975,0,0,0,77,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.421928107093901,6.081299685672334,0,0,60.29,52.11,6,1,0,0,2,2,1,566,0,0,0 +1519,1867,3451,-9,3453,-9,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-986.7610844203861,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,9,3,0,1163.25,0,0,0 +1519,1867,3452,-9,3453,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-995.442166340791,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,9,3,0,1163.25,0,0,0 +1519,1867,3453,-9,-9,-9,1,1,0,47,3,0,3,0,1,-9,1,1,0,1,7.054837867605013,7.835076510603106,7.071986212807789,4,0,0,0,-9,0,-1050.844729019916,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,4,25,25,15,1,4,-9,0,5.734790361325737,5.734790361325737,0,0,0,0,0,0,0,1,1,0,8.094180293942593,0,.0488557414384649,3,36.68,29.4,4,1,0,1,9,3,0,1163.25,0,0,0 +1519,1867,3454,-9,3453,-9,2,1,1,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1109.650808734306,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,9,3,0,1163.25,0,0,0 +1520,1868,3455,3458,-9,-9,2,1,0,40,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-4,-137.8779333560317,0,0,1,44,1,5,1,-9,-9,2019,3,1,10,3,0,30,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.81,56.02,7,3,0,0,8,4,1,937.75,0,0,0 +1520,1868,3456,-9,3455,3458,3,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1000.426792886154,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,3,0,0,8,4,1,937.75,0,0,0 +1520,1868,3457,-9,3455,3458,4,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1019.83679971809,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,3,0,0,8,4,1,937.75,0,0,0 +1520,1868,3458,3455,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,5,8.795044348372967,8.845744141725698,0,2,0,-9,22,0,4,73.93435151917778,0,0,0,40,1,5,3,2,2,2019,2,2,2,0,37,38,15,1,0,3,0,18.12064385868653,18.12064385868653,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,3,0,0,8,4,1,937.75,0,0,0 +1521,1869,3459,3460,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,6.448153838718029,7.604262514742345,7.555204480630378,1,0,-9,39,0,-7,-72.27266185518063,0,0,0,73,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.930502150114053,6.869703416031522,0,0,51.77,58.57,7,1,0,0,2,3,1,965.5,0,0,0 +1521,1869,3460,3459,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,7.151020412171188,7.061275429473969,1,0,-9,39,0,7,-126.6281107092505,0,0,0,66,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.378405058763916,7.187069049518876,0,0,61.27,46.03,7,1,0,0,2,3,1,965.5,0,0,0 +1522,1870,3461,3464,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.364393090245821,8.489052639110426,0,2,0,-9,19,0,0,-166.1693350092585,0,0,0,45,2,2,1,2,2,2019,1,2,9,0,41,37,15,1,0,1,0,13.18544207531244,13.18544207531244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.63,41.5,6,1,0,1,7,4,1,721,0,0,0 +1522,1870,3462,-9,3464,3461,4,1,0,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-923.1166536161113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,5,1,0,0,7,4,1,721,0,0,0 +1522,1870,3463,-9,3464,3461,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.249641651829,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,7,4,1,721,0,0,0 +1522,1870,3464,3461,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,2,8.195047775407915,8.078541400294846,0,2,0,-9,19,0,0,-5.511419179515413,0,0,0,45,2,3,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,12.55536949405753,12.55536949405753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,6,1,0,0,7,4,1,721,0,0,0 +1523,1871,3465,-9,-9,-9,1,1,0,55,3,1,1,0,2,-9,2,1,0,1,7.39401631011663,7.147001917577614,0,4,0,0,0,-9,0,-966.8321918764581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,8,20,20,15,1,8,-9,0,7.482481235521397,7.482481235521397,0,0,0,0,0,0,0,1,1,0,0,0,70.26675269683358,3,27.3,20.24,1,1,0,1,11,2,1,493,0,0,0 +1523,1872,3466,-9,-9,3468,5,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.8302464090872,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,1,1,1191.333333333333,0,0,0 +1523,1872,3467,3468,-9,-9,4,1,0,24,1,1,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,6,0,-6,0,0,1,1,30,2,1,3,-9,-9,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.7061004576606413,0,22.04927415487937,3,20.13,58.37,3,1,1,0,11,1,1,1191.333333333333,0,0,0 +1523,1872,3468,3467,3465,-9,2,1,1,30,1,1,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,6,0,0,0,0,24,2,3,3,2,2,2019,4,4,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.434656421751307,0,.9857827961766752,3,18.16,43.27,3,1,0,0,11,1,1,1191.333333333333,0,0,0 +1523,1873,3469,-9,3465,-9,3,1,0,27,2,1,1,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1036.965645886918,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,35,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.84,23.2,1,1,0,1,11,1,1,269,0,0,0 +1524,1874,3470,3472,-9,-9,2,1,0,49,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,30,0,-4,37.59974395303072,-9,0,0,53,3,4,1,3,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,3,0,1,8,2,0,397.6666666666667,0,0,0 +1524,1874,3471,-9,3470,3472,6,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-997.6317328793536,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,8,2,0,397.6666666666667,0,0,0 +1524,1874,3472,3470,-9,-9,1,1,1,53,1,0,1,0,3,-9,2,1,0,4,6.981068123421487,7.37682192256599,0,2,0,-9,28,0,4,-7.364562169934476,-9,0,0,49,3,4,3,-9,-9,2019,2,2,9,0,20,0,15,1,1,3,0,8.100370207300372,8.100370207300372,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,1,8,2,0,397.6666666666667,0,0,0 +1524,1875,3473,-9,3470,3472,3,1,0,27,2,0,1,0,1,-9,2,1,0,4,8.272588951231015,8.074793468858001,0,3,0,0,0,-9,0,-866.7733432401918,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,38,15,1,2,-9,1,10.93478046154879,10.93478046154879,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,3,0,0,8,4,0,937,0,0,0 +1524,1876,3474,-9,3470,3472,4,1,0,32,2,0,1,0,1,-9,2,1,0,4,9.016763906753653,8.85585080188738,2.330182079647218,3,0,0,0,-9,0,-980.6091609437248,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,36,42,15,1,2,-9,1,31.27864722293737,31.27864722293737,0,0,0,0,0,0,0,1,1,0,2.950523346143041,2.952109436401975,0,0,48,57,5,3,0,0,8,5,0,495,0,0,0 +1524,1877,3475,-9,3470,3472,5,1,1,20,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1015.325426024072,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,5,3,0,0,8,1,0,782,0,0,0 +1525,1878,3476,3477,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,3,8.366500810226686,8.230988898665935,0,1,0,-9,4,0,3,97.732938336844,0,0,1,41,2,3,1,1,2,2019,1,2,11,0,40,38,15,1,0,1,0,9.666197792653335,9.666197792653335,0,0,0,0,0,0,0,0,0,0,.1784934250604199,0,0,0,40.04,55.92,5,1,0,0,12,4,0,216,0,0,0 +1525,1878,3477,3476,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,3,7.751788826911157,8.12187561753781,0,1,0,-9,4,0,-3,67.31044677960917,0,0,0,44,2,3,1,-9,-9,2019,1,1,22,8,37,0,15,1,8,1,0,9.065705571350358,9.065705571350358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.07,59.8,4,5,0,0,12,4,0,216,0,0,0 +1526,1879,3478,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,3,8.391066412327559,8.223876125818752,0,3,0,0,0,-9,0,-1092.881382514013,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,42,15,1,0,-9,0,12.44993473283731,12.44993473283731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,2,0,0,2,4,0,462,0,0,0 +1527,1880,3479,3480,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,6.012418368796988,6.265255132568281,1,0,-9,54,0,-7,79.21645617939754,0,0,0,82,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.786651906544383,0,0,63.41,29.17,5,1,0,0,10,2,1,761.5,0,0,0 +1527,1880,3480,3479,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,6.905728907449254,6.644862765972699,1,0,-9,54,0,7,29.21311240950232,0,0,0,75,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.046668313256784,0,0,57.64,36.86,6,1,0,0,10,2,1,761.5,0,0,0 +1528,1881,3481,3482,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.494138704744453,8.450129253660307,1,0,-9,35,0,1,-43.37720351553517,0,0,0,71,2,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.205252023101246,8.471469434107899,0,0,55.3,55.6,6,1,0,0,5,4,1,925,0,0,0 +1528,1881,3482,3481,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,6.566508357065318,6.630299250615853,1,0,-9,35,0,-1,-83.08852697096209,0,0,0,72,1,4,3,-9,-9,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.067228706204537,6.695229791006817,0,0,51.08,25.3,4,1,0,0,5,4,1,925,0,0,0 +1529,1882,3483,3484,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,4,7.404448449453305,7.143750552220358,0,1,0,-9,7,0,-1,112.4497337125049,0,0,0,65,2,4,1,3,3,2019,1,1,6,0,21,41,15,1,0,1,0,8.643148394548767,8.643148394548767,0,0,0,0,0,0,0,1,1,0,3.355012417493183,0,0,0,62.25,48.33,7,1,0,0,13,4,1,803.5,0,0,0 +1529,1882,3484,3483,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,4,8.472721451012015,8.465394880695875,4.201614287359051,1,0,-9,7,0,1,-117.667267628406,0,0,0,64,2,4,1,3,-9,2019,1,2,9,0,46,45,15,1,0,1,0,9.876544085684793,9.876544085684793,0,0,0,0,0,0,0,1,1,0,0,4.544288724048253,0,0,45.32,61.53,2,1,0,0,13,4,1,803.5,0,0,0 +1530,1883,3485,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,5,7.493213490001405,7.726471795685278,0,3,0,0,0,-9,0,-843.917966291209,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,0,-9,0,5.60036417677073,5.60036417677073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,4,1,0,0,2,3,1,667,0,0,0 +1531,1884,3486,3487,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,65,0,-4,142.6244538973041,0,0,0,89,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.289160006179981,0,0,0,50.09,52.47,6,1,0,0,6,2,1,578.5,0,0,0 +1531,1884,3487,3486,-9,-9,1,1,1,89,1,0,0,0,1,-9,4,3,0,4,0,7.096218687193355,6.849663353876264,1,0,-9,65,0,4,-15.88382092816696,0,0,0,85,3,4,3,-9,-9,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.078949784483416,7.31088322925993,0,0,46.62,50.12,6,1,0,0,6,2,1,578.5,0,0,0 +1532,1885,3488,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,2,0,5.40261809005474,5.602440596918592,3,0,0,0,-9,0,-1040.647857473555,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.734183224591577,5.32039265469266,0,0,39.39,40.36,4,1,0,0,11,2,0,379,0,0,0 +1533,1886,3489,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,1,1,0,1,7.348313187884262,7.692257967156124,0,3,0,0,0,-9,0,-1001.58105816419,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,6,40,45,15,1,6,-9,0,5.568304268923785,5.568304268923785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,51.55,4,1,0,1,2,3,1,839,0,0,0 +1534,1887,3490,3493,-9,-9,1,1,0,43,1,0,3,0,2,-9,1,1,0,4,7.179299052392013,7.363901389303396,0,2,0,-9,15,0,-3,-118.6018172137583,0,0,1,46,1,4,1,2,3,2019,1,2,13,2,30,30,15,1,2,1,0,4.568239732274221,4.568239732274221,0,0,0,0,0,0,0,1,1,0,0,0,4.475030389906166,3,44.02,60.7,6,1,0,0,10,2,0,634,0,0,0 +1534,1887,3491,-9,3490,3493,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.6428551995198,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,2,0,634,0,0,0 +1534,1887,3492,-9,3490,3493,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.51065949228,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,0,634,0,0,0 +1534,1887,3493,3490,-9,-9,2,1,1,46,1,0,3,0,1,-9,1,1,0,4,7.575496885672988,7.345829701733078,0,2,0,-9,15,0,3,67.43200547163899,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,0,60,10,15,1,1,1,0,2.388931981641117,2.388931981641117,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,10,2,0,634,0,0,0 +1534,1887,3494,-9,3490,3493,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.6773695781874,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,0,634,0,0,0 +1535,1888,3495,3496,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,4,0,5.164908367661076,5.112935731545302,1,0,-9,65,0,0,-32.60292554288269,0,0,0,85,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.587538905161174,5.198404397176177,0,0,57.76,54.51,7,1,0,0,9,3,1,324.5,0,0,0 +1535,1888,3496,3495,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,4,0,7.830137078366242,7.988306398112573,1,0,-9,65,0,0,26.75994662731534,0,0,0,85,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.043320157571966,7.590429797216023,0,0,60.67,53.2,7,1,0,0,9,3,1,324.5,0,0,0 +1536,1889,3497,3498,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,3,7.836027903164458,7.802219328656075,0,2,0,-9,24,0,-5,2.589321697530738,0,0,0,54,1,4,1,1,1,2019,1,2,8,0,40,47,15,1,0,1,0,6.754387141835401,6.754387141835401,0,0,0,0,0,0,0,1,1,0,3.093922899991429,0,0,0,55.36,51.57,6,1,0,0,7,5,1,1000,0,0,0 +1536,1889,3498,3497,-9,-9,2,1,1,54,1,0,2,0,1,-9,2,1,0,4,9.183904669015517,9.312294755468914,0,2,0,-9,24,0,5,22.48697878502482,0,0,0,49,1,3,1,2,3,2019,1,1,9,0,37,38,15,1,1,1,0,35.18141482269435,35.18141482269435,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,7,5,1,1000,0,0,0 +1537,1890,3499,3500,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.736821640835427,7.499623762285632,0,1,0,-9,10,0,-1,-90.52245834054159,0,0,0,64,3,3,3,-9,-9,2019,2,1,10,0,70,60,15,1,1,4,0,3.221277156823578,3.221277156823578,0,0,0,0,0,0,0,0,0,0,2.436128751124127,0,0,0,51,48,5,1,0,0,10,3,1,834,0,0,0 +1537,1890,3500,3499,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,1,-55.01014283774267,0,0,0,63,2,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.2692010586169075,0,0,0,43.1,47.57,6,1,0,0,10,3,1,834,0,0,0 +1538,1891,3501,3502,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,4,8.372026886321065,8.442323043344523,0,1,0,-9,20,0,-7,47.87410491477499,0,0,0,56,2,3,1,3,2,2019,1,2,11,0,43,41,15,1,0,1,0,8.933813732486826,8.933813732486826,0,0,0,0,0,0,0,0,0,0,2.037165785427188,0,0,0,46.9,56.66,5,1,0,0,4,5,1,320,0,0,0 +1538,1891,3502,3501,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.533187275909887,8.182726596426672,0,1,0,-9,30,0,7,36.1416222691679,0,0,0,49,2,4,1,2,2,2019,1,1,8,0,45,45,15,1,0,1,0,12.95767620325375,12.95767620325375,0,0,0,0,0,0,0,0,0,0,3.52607082782898,0,0,0,53.39,49.67,5,1,0,0,4,5,1,320,0,0,0 +1538,1892,3503,-9,3501,3502,3,1,1,24,2,0,0,0,1,-9,2,1,0,3,7.744633860260706,7.950759616476383,0,3,0,0,0,-9,0,-967.8371115579506,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,0,15,1,0,-9,1,6.545254288208054,6.545254288208054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.18,55.31,5,1,0,0,4,3,1,1507,0,0,0 +1539,1893,3504,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,2,1,0,1,7.720674808233146,7.73341870990278,0,3,0,0,0,-9,0,-1016.91555867289,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,40,40,15,1,4,-9,0,9.243614099852575,9.243614099852575,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.44,10.84,2,1,0,0,2,3,1,3034,0,0,0 +1540,1894,3505,3506,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,2,0,7.68712002443347,7.408087011213207,1,0,-9,59,0,5,-23.66453750521803,0,0,0,80,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.621733418857413,7.821853159643733,5.605683477199277,1,53.71,37.87,6,1,0,0,7,3,1,703,0,0,0 +1540,1894,3506,3505,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,5.708369575773359,6.052690893486263,1,0,-9,59,0,-5,-2.255540250225538,0,0,0,85,2,2,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,4.522910269976563,5.949909085633602,0,0,0,22.16798260153165,1,1,0,2.747979233805895,6.007519112328347,7.223610487630985,1,44.47,27.14,4,1,0,0,7,3,1,703,0,0,0 +1541,1895,3507,3508,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.001822875436952,7.763618505165704,0,2,0,-9,29,0,7,-20.11012546523714,0,0,0,45,2,5,1,3,3,2019,1,1,11,1,39,39,15,1,1,1,0,9.489207444388779,9.489207444388779,0,0,0,0,0,0,0,1,1,0,0,0,10.31867610733048,3,57.48,47.92,6,1,0,0,10,4,1,475.5,0,0,0 +1541,1895,3508,3507,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,5,8.106394719083694,8.023080430299379,0,2,0,-9,29,0,-7,48.51450244117918,0,0,0,52,2,3,1,2,-9,2019,1,2,8,1,47,42,15,1,1,1,0,7.666170702397343,7.666170702397343,0,0,0,0,0,0,0,1,1,0,6.528902758754454,0,0,3,51.14,60.45,6,1,0,0,10,4,1,475.5,0,0,0 +1541,1896,3509,-9,3508,3507,3,1,0,22,2,0,1,0,2,-9,6,3,0,3,3.311158820963066,3.521933075290233,0,3,0,0,0,-9,0,-1019.582240629131,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,52.96,4,1,0,1,10,1,1,627,0,0,0 +1541,1896,3510,-9,3509,-9,5,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-977.5477191825871,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,1,1,627,0,0,0 +1541,1897,3511,-9,3508,3507,4,1,1,20,2,0,1,0,2,-9,2,1,0,4,7.183051433743307,7.018402498445117,0,3,0,0,0,-9,0,-1035.487526117502,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,32,15,1,0,-9,1,3.179837015056106,3.179837015056106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,2,1,415,0,0,0 +1542,1898,3512,3515,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.852721354242899,8.584611441030191,0,2,0,-9,22,0,0,1.081257692382977,0,0,0,47,1,3,1,2,2,2019,1,1,7,0,37,36,15,1,0,1,0,21.40817653787672,21.40817653787672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,999.75,0,0,0 +1542,1898,3513,-9,3515,3512,4,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1062.831900205791,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,12,5,1,999.75,0,0,0 +1542,1898,3514,-9,3515,3512,3,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1023.500919264245,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,12,5,1,999.75,0,0,0 +1542,1898,3515,3512,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,3,8.854522897332494,8.857271014783347,0,2,0,-9,22,0,0,13.15432192230835,0,0,0,47,1,4,1,2,2,2019,1,2,8,0,43,50,15,1,0,1,0,15.63817652435875,15.63817652435875,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,5,1,999.75,0,0,0 +1543,1899,3516,3517,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-13,85.61105881855853,0,0,0,78,2,3,3,-9,-9,2019,4,1,10,0,0,25,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,9,2,1,575.5,0,0,0 +1543,1899,3517,3516,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,5.596591459473042,5.427357768556997,1,0,-9,33,0,13,-33.94967781716228,0,0,0,65,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.834147002528006,5.925464501952778,0,0,57.51,47.91,6,1,0,0,9,2,1,575.5,0,0,0 +1544,1900,3518,3521,-9,-9,2,1,0,34,1,1,2,0,2,-9,2,1,0,5,8.756677671061828,8.55459229778902,0,2,0,-9,4,0,2,-12.41421002645749,0,0,1,32,1,3,1,-9,-9,2019,1,1,6,0,38,37,15,1,0,1,0,16.86594134646218,16.86594134646218,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,2,1,0,0,6,5,1,1185.25,0,0,0 +1544,1900,3519,-9,3518,3521,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.046163042872,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,5,1,1185.25,0,0,0 +1544,1900,3520,-9,3518,3521,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.8908181153595,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1185.25,0,0,0 +1544,1900,3521,3518,-9,-9,1,1,1,32,1,1,2,0,1,-9,2,1,0,3,8.932394123335706,8.769737088960254,0,2,0,-9,4,0,-2,3.238360083170861,0,0,0,34,2,5,1,2,2,2019,1,2,6,0,58,48,15,1,0,1,0,15.69083200522519,15.69083200522519,0,0,0,0,0,0,0,1,1,0,1.113896937831405,0,0,0,54.96,53.17,6,1,0,0,6,5,1,1185.25,0,0,0 +1545,1901,3522,3523,-9,-9,1,1,0,64,1,0,0,0,1,-9,1,1,0,5,7.657908595902098,7.696988176868671,0,1,0,-9,6,0,-5,34.49285986736953,0,0,0,69,1,2,1,2,3,2019,1,2,8,0,20,45,15,1,0,1,0,13.46840577172648,13.46840577172648,0,0,0,0,0,0,0,1,1,0,3.76719612905523,0,35.12646125062608,3,57.06,57.76,6,1,0,0,11,5,1,1793,0,0,0 +1545,1901,3523,3522,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,2,9.59102031543733,9.80549003598794,7.680405870256753,1,0,-9,6,0,5,170.258739702811,0,0,0,64,1,5,1,3,2,2019,1,1,6,0,30,40,15,1,0,1,0,52.07739219969338,52.07739219969338,0,0,0,0,0,0,0,1,1,0,2.217281958495605,7.786550372176263,0,0,55.2,49.4,4,1,0,0,11,5,1,1793,0,0,0 +1546,1902,3524,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,-9,0,-9,0,-1087.196755478241,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,43.73,1,1,0,0,7,1,1,669,0,0,0 +1547,1903,3525,-9,3526,3528,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.9842440887434,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,636,0,0,0 +1547,1903,3526,3528,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,4,7.870444903674073,7.637331550941123,0,2,0,-9,8,0,-3,53.85753495781659,0,0,1,41,1,5,1,-9,-9,2019,1,1,11,0,40,54,15,1,2,1,0,10.27180332786445,10.27180332786445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,9,5,1,636,0,0,0 +1547,1903,3527,-9,3526,3528,3,1,1,17,2,0,2,1,3,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1130.8972964585,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.73,53.97,7,2,0,0,9,5,1,636,0,0,0 +1547,1903,3528,3526,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,5,9.35380004866929,9.269671168394293,0,2,0,-9,8,0,3,56.37261140115196,0,0,0,38,2,4,1,2,2,2019,1,2,3,0,51,54,15,1,0,1,0,24.50839935698671,24.50839935698671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,636,0,0,0 +1548,1904,3529,3530,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,5,5.915835883536261,6.002471139560531,0,1,0,-9,8,0,10,-21.52685701325446,0,0,0,49,1,5,1,3,3,2019,1,2,6,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10.22161361711304,0,0,0,62.39,56.71,7,1,0,0,10,4,1,414,0,0,0 +1548,1904,3530,3529,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,5,8.76445938417084,8.258753938694301,0,1,0,-9,8,0,-10,-44.85791184987452,0,0,0,59,1,5,1,2,2,2019,1,1,5,0,50,55,15,1,0,1,0,12.61958486504363,12.61958486504363,0,0,0,0,0,0,0,0,0,0,7.916239698346487,0,0,0,51.52,54.78,6,1,0,0,10,4,1,414,0,0,0 +1549,1905,3531,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,2,0,5.725539070126969,5.1580361310892,3,0,0,0,-9,0,-1075.38637723298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,.5663950406846361,0,0,0,0,0,1,1,0,5.965643303767218,5.161828904944453,0,0,63.25,37.54,6,1,0,0,7,2,0,339,0,0,0 +1550,1906,3532,3533,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,4,8.949858609962186,9.278290734416501,0,1,0,-9,8,0,0,44.91113828325977,0,0,0,46,1,3,1,-9,-9,2019,1,1,10,1,35,0,15,1,1,1,0,16.64147214964078,16.64147214964078,0,0,0,0,0,0,0,0,0,0,4.173036548454165,0,0,0,52,55,6,1,0,0,8,5,1,1034,0,0,0 +1550,1906,3533,3532,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,3,7.996474728316722,7.914621696640664,0,1,0,-9,19,0,0,-33.43624343905424,0,0,0,46,1,4,1,2,1,2019,1,2,18,7,21,0,15,1,7,1,0,11.7463480451517,11.7463480451517,0,0,0,0,0,0,0,0,0,0,4.412733270404205,0,0,0,30.4,56.28,3,3,0,0,8,5,1,1034,0,0,0 +1551,1907,3534,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-922.2735953414285,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.15,61.2,5,1,0,0,8,1,1,378,0,0,0 +1552,1908,3535,3536,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.294997557091586,8.260161986929779,5.682656074084544,1,0,-9,1,-9,-1,124.9480491299849,-9,0,0,63,3,4,1,-9,-9,2019,1,1,11,0,43,0,15,1,0,1,0,12.98565954563634,12.98565954563634,0,0,0,0,0,0,0,0,0,0,5.675148005043265,5.633714308581288,0,0,59.88,45.37,6,1,0,0,2,4,1,209.5,0,0,0 +1552,1908,3536,3535,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,4,7.816597925388275,7.344377917065155,5.02133116218718,1,0,-9,34,-9,1,-85.43904688088233,-9,0,0,62,2,3,1,3,3,2019,1,2,10,0,20,0,15,1,0,1,0,10.53723678113955,10.53723678113955,0,0,0,0,0,0,0,0,0,0,5.145643215318925,4.813822527247721,0,3,54.2,57.49,5,1,0,0,2,4,1,209.5,0,0,0 +1553,1909,3537,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,3,7.845733980260034,8.056539974238726,4.510939001249067,3,0,0,0,-9,0,-1104.485816391841,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,37,15,1,0,-9,0,9.717412884797705,9.717412884797705,0,0,0,0,0,0,0,0,0,0,0,5.006212170055948,0,0,50.93,39.92,4,1,0,0,9,4,1,177,0,0,0 +1553,1910,3538,-9,3537,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.022136710356296,7.834944853520245,0,3,0,0,0,-9,0,-980.8717774987878,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,38,37,15,1,4,-9,1,9.230439055345773,9.230439055345773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,5,1,0,0,9,4,1,1096,0,0,0 +1554,1911,3539,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,4,0,6.383391625218205,6.165694111231379,3,0,0,0,-9,0,-1300.721055746802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.356507169159499,6.04212355441768,0,0,44.77,48,6,1,0,0,2,2,1,1858,0,0,0 +1555,1912,3540,3543,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,4,9.202089179417792,9.066345213582244,0,2,0,-9,16,0,6,-44.38368302097226,0,0,0,37,1,3,1,2,1,2019,1,1,10,0,38,43,15,1,0,1,0,24.64719071191857,24.64719071191857,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.53,50.34,6,1,0,0,4,4,1,939.5,0,0,0 +1555,1912,3541,-9,3543,3540,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.4682516948986,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,939.5,0,0,0 +1555,1912,3542,-9,3543,3540,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.4929787076318,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,4,4,1,939.5,0,0,0 +1555,1912,3543,3540,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,3,7.911144471421133,7.568320981165813,0,2,0,-9,18,0,-6,47.67833360492545,0,0,1,43,2,4,1,2,2,2019,1,2,10,0,30,10,15,1,0,1,0,10.49241807698604,10.49241807698604,0,0,0,0,0,0,0,1,1,0,0,0,6.318074378959913,3,49.42,50.19,3,1,0,0,4,4,1,939.5,0,0,0 +1556,1913,3544,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,4.95035679776565,5.212045269512132,3,0,0,0,-9,0,-989.7028929330369,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.080028352326295,0,0,40.74,28.97,2,1,0,0,4,2,0,1872,0,0,0 +1557,1914,3545,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,4,8.846760356893832,8.819916318487138,0,3,0,0,0,-9,0,-980.7250521276884,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,1,42,45,15,1,1,-9,0,18.77129045093016,18.77129045093016,0,0,0,0,0,0,0,0,0,0,5.167722125956323,0,0,3,58.89,24.17,6,1,0,0,10,5,1,779,0,0,0 +1558,1915,3546,-9,-9,-9,1,1,0,70,2,1,1,0,3,-9,4,3,0,2,0,7.315223679460319,7.341544912765274,4,0,0,0,-9,0,-867.6062420771342,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.372630641846166,0,0,57.74,11.83,6,1,0,0,11,2,1,175,0,0,0 +1558,1916,3547,-9,3548,-9,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1094.079981800322,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,1,1,272.5,0,0,0 +1558,1916,3548,-9,-9,-9,2,1,0,21,2,1,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-919.4557856385187,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.69,58.35,7,1,1,0,11,1,1,272.5,0,0,0 +1559,1917,3549,3550,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-5,-8.993056957722022,0,0,0,73,2,4,3,-9,-9,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.27,33.43,6,1,0,0,2,4,1,485,0,0,0 +1559,1917,3550,3549,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,8.561535047886053,8.539285061950334,1,0,-9,49,0,5,-13.7333064454335,0,0,0,68,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.759888714768488,8.45110599997161,0,0,58.55,46.11,6,1,0,0,2,4,1,485,0,0,0 +1560,1918,3551,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,4,7.001037915371167,7.321760620600479,0,3,0,0,0,-9,0,-929.6812637755428,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,36,22,15,1,0,-9,0,5.578703809733889,5.578703809733889,0,0,0,0,0,0,0,0,0,0,2.627265993530942,0,0,0,54.79,55.86,6,1,0,0,10,3,1,104,0,0,0 +1560,1919,3552,-9,3551,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,3,7.084414470624144,7.432340335972943,0,3,0,0,0,-9,0,-884.6535073657386,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,28,0,15,1,0,-9,1,6.282163891367386,6.282163891367386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,6,1,0,0,10,3,1,953,0,0,0 +1561,1920,3553,3554,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,51,0,-3,-77.00186681728515,0,0,0,73,2,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,9,3,1,390,0,0,0 +1561,1920,3554,3553,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,5,0,8.223199749010853,7.869593583975559,1,0,-9,51,0,3,161.2913120726845,0,0,0,70,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.854147584900133,0,0,57.65,56.13,7,1,0,0,9,3,1,390,0,0,0 +1562,1921,3555,-9,3556,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1010.638868029132,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,2,0,1261.333333333333,0,0,0 +1562,1921,3556,-9,-9,-9,1,1,0,50,2,0,2,0,2,-9,6,3,0,3,0,6.195228493964685,6.735511168631211,4,0,0,0,-9,0,-995.2461195492283,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.469142914066137,0,11.17612889501081,3,41.53,44.53,5,1,0,1,8,2,0,1261.333333333333,0,0,0 +1562,1921,3557,-9,3556,-9,5,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-934.910934446179,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,2,0,1261.333333333333,0,0,0 +1562,1922,3558,-9,3556,-9,2,1,1,28,2,0,2,0,2,-9,2,1,0,4,7.696652683717813,8.010346359830432,0,3,0,0,0,-9,0,-917.0344795652633,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,30,33,15,1,9,-9,1,9.763175111630348,9.763175111630348,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.28,61.39,5,2,0,0,8,3,0,458,0,0,0 +1562,1923,3559,-9,3556,-9,3,1,0,22,2,0,2,0,2,-9,2,1,0,3,6.39189501479308,6.074264941278919,0,3,0,0,0,-9,0,-1024.125981621157,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,9,26,15,1,6,-9,1,7.758231483747067,7.758231483747067,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,56.68,4,2,0,0,8,2,0,1081,0,0,0 +1563,1924,3560,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,4,8.660977011668201,8.755394777403074,0,3,0,0,0,-9,0,-919.5313323730833,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,2,0,0,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.89,62.6,3,3,0,0,8,5,0,665,0,0,0 +1564,1925,3561,3562,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,5,8.461436361611929,8.495324012454892,0,1,0,-9,1,-9,0,40.91042825524038,-9,1,0,25,1,4,1,-9,-9,2019,1,1,1,0,36,0,15,1,0,1,0,17.59817878769636,17.59817878769636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,0,0,5,5,1,530.5,0,0,0 +1564,1925,3562,3561,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.504314336346892,8.552037550879366,0,1,0,-9,1,0,0,-49.31213900369077,0,1,1,25,2,5,1,2,2,2019,1,2,5,0,41,38,15,1,0,1,0,12.41003523772311,12.41003523772311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,6,1,0,0,5,5,1,530.5,0,0,0 +1565,1926,3563,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,7.791756670550154,7.858335534888982,3,0,0,0,-9,0,-941.8063299301951,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.361623915326704,7.702421336103711,3.491215546324751,3,45.35,49.22,6,1,0,0,9,3,1,540,0,0,0 +1566,1927,3564,3565,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,4,7.998039984460035,8.044119834762343,0,1,0,-9,2,0,7,28.12248907808241,0,1,0,18,2,4,2,2,3,2019,2,2,13,3,45,40,15,1,3,2,0,7.221927907976633,7.221927907976633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,59.47,2,1,0,0,4,3,1,1657,0,0,0 +1566,1927,3565,3564,-9,-9,2,1,0,18,1,0,0,0,2,-9,7,2,0,4,0,0,0,1,0,-9,2,0,-7,-28.94024289256048,1,1,1,25,2,4,1,-9,-9,2019,3,1,23,8,0,0,15,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.79,67.41,3,1,0,1,4,3,1,1657,0,0,0 +1567,1928,3566,3567,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,4,8.107667923078452,8.321538430015373,0,1,0,-9,26,0,6,127.5214090757102,0,0,0,47,3,4,1,3,3,2019,1,2,9,0,40,0,15,1,1,1,0,11.05461084734575,11.05461084734575,0,0,0,0,0,0,0,0,0,0,1.931376816084331,0,0,0,52,55,6,3,0,0,9,5,1,1001.5,0,0,0 +1567,1928,3567,3566,-9,-9,2,1,0,47,1,0,0,0,3,-9,2,1,0,4,8.260351759010234,8.401255332570091,0,1,0,-9,4,0,-6,-30.60447982347858,0,0,0,53,3,4,1,3,3,2019,1,1,11,0,30,37,15,1,1,1,0,14.55667529643315,14.55667529643315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,5,3,0,0,9,5,1,1001.5,0,0,0 +1567,1929,3568,-9,3567,3566,3,1,1,29,3,0,0,0,1,-9,2,1,0,4,8.350682648486289,8.32203942508761,0,3,0,0,0,-9,0,-1054.818995740151,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,13.67423305118892,13.67423305118892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,5,3,0,0,9,5,1,323,0,0,0 +1567,1930,3569,-9,3567,3566,4,1,1,21,2,0,0,0,1,-9,2,1,0,3,7.998785427576709,7.822594966237206,0,3,0,0,0,-9,0,-1068.313121299532,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,0,15,1,0,-9,1,7.283077975895039,7.283077975895039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,5,3,0,0,9,4,1,722,0,0,0 +1568,1931,3570,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,4,9.138975967510511,8.723390014972006,0,3,0,0,0,-9,0,-906.0556763879052,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,45,42,15,1,0,-9,0,16.38396619331964,16.38396619331964,0,0,0,0,0,0,0,0,0,0,1.113469728985441,0,0,0,48.87,58.55,6,1,0,0,10,5,1,801,0,0,0 +1569,1932,3571,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,1,1,0,3,8.079753248751716,7.860318205304526,0,3,0,0,0,-9,0,-1162.605512666237,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,10,60,60,15,1,10,-9,0,5.515687727252921,5.515687727252921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.23,65.13,2,1,0,1,9,3,0,396,0,0,0 +1570,1933,3572,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1005.289881612846,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,1,0,9,1,0,1239,0,0,0 +1571,1934,3573,3574,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.690318754884596,7.758315105303614,0,1,0,-9,10,0,-6,42.91253378427314,0,0,0,54,2,2,1,2,1,2019,1,1,15,3,6,28,15,1,3,1,0,37.42139474727326,37.42139474727326,0,0,0,0,0,0,0,0,0,0,.4529188144339448,0,0,0,40.98,52.59,5,1,0,0,10,5,1,626,0,0,0 +1571,1934,3574,3573,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.904612737476151,8.827522007444051,0,1,0,-9,10,0,6,-137.0844267031907,0,0,0,48,2,3,1,2,2,2019,1,2,11,0,47,58,15,1,0,1,0,16.9499077337926,16.9499077337926,0,0,0,0,0,0,0,0,0,0,.5651869964909401,0,0,0,42.4,45.68,5,1,0,0,10,5,1,626,0,0,0 +1571,1935,3575,-9,3573,3574,4,1,0,18,2,0,0,0,2,-9,2,1,0,4,7.276422019797101,7.391147626509245,0,3,0,0,0,-9,0,-884.2283669607524,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,16,0,15,1,2,-9,1,8.267498714379652,8.267498714379652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,5,1,0,0,10,3,1,987,0,0,0 +1572,1936,3576,3580,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,5,8.943438538323033,9.138850224213833,6.606370299388884,2,0,-9,8,0,8,24.85153003736394,0,0,0,40,2,3,3,2,2,2019,2,2,6,0,48,45,15,1,0,3,0,16.49774410441899,16.49774410441899,0,0,0,0,0,0,0,1,1,0,7.221323673459857,0,0,0,57.06,57.76,6,1,0,0,9,4,1,840.6,0,0,0 +1572,1936,3577,-9,3580,3576,6,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.624976350425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,840.6,0,0,0 +1572,1936,3578,-9,3580,3576,4,1,1,16,2,0,2,1,2,-9,7,2,0,5,6.69595013590757,6.901883441617123,0,2,0,0,0,-9,0,-1001.973071009359,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,9,4,1,840.6,0,0,0 +1572,1936,3579,-9,3580,3576,5,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.1167911251218,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,840.6,0,0,0 +1572,1936,3580,3576,-9,-9,2,1,0,40,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-8,-2.901448443915494,0,0,1,48,2,5,1,3,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,0,0,9,4,1,840.6,0,0,0 +1572,1937,3581,-9,3580,3576,3,1,1,19,2,0,2,0,2,-9,2,1,0,5,7.47322834054491,7.372579933887122,0,3,0,0,0,-9,0,-1115.803646733044,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,39,15,1,0,-9,1,4.182169127370899,4.182169127370899,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,3,1,206,0,0,0 +1573,1938,3582,-9,3583,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,4,0,7.913702974969601,8.019395937532144,3,0,0,0,-9,0,-1012.619742422587,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.214018045585856,8.149223766764582,117.7610534094252,3,55.19,54.26,6,1,0,0,12,4,1,338,0,0,0 +1573,1939,3583,-9,-9,-9,2,1,0,97,3,0,0,0,3,-9,4,3,0,3,0,6.554953647933873,6.171594639849457,3,0,0,0,-9,0,-1015.820643781587,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.29865097661097,0,0,55,43,6,1,0,0,12,2,1,6019,0,0,0 +1574,1940,3584,3585,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,7.681225745961346,7.83841083350277,1,0,-9,49,0,2,50.64186783676888,0,0,0,68,2,1,3,3,3,2019,4,2,24,10,0,0,15,4,10,4,0,0,0,1,0,14.24892918966652,0,0,0,0,1,1,0,7.537753445659407,7.882572508309408,0,0,34.06,21.35,3,1,0,0,8,4,1,449,0,0,0 +1574,1940,3585,3584,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,1,0,8.040825482518978,8.494295805219824,1,0,-9,49,0,-2,-89.31545383926064,0,0,0,70,3,1,3,-9,-9,2019,4,1,30,11,0,0,15,4,11,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.51833799064986,72.88314935988093,1,34.89,18,5,1,0,0,8,4,1,449,0,0,0 +1575,1941,3586,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,8.164852538204597,8.09391449021544,3,0,0,0,-9,0,-1016.219685172818,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.113505881240522,15.47869136047444,3,61.67,39.58,6,1,0,0,11,4,1,693,0,0,0 +1576,1942,3587,3588,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,5,8.628611046935431,8.377509488016688,0,1,0,-9,21,0,-3,-23.99404126477696,0,0,0,53,2,4,1,-9,3,2019,1,1,6,0,39,37,15,1,0,1,0,11.91348086963177,11.91348086963177,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.26,55.85,6,1,0,0,9,5,1,295,0,0,0 +1576,1942,3588,3587,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.154933433850131,9.296503839049494,0,1,0,-9,18,0,3,-75.31150311642612,0,0,0,50,3,5,1,2,2,2019,1,2,9,0,98,48,15,1,0,1,0,11.81894646711993,11.81894646711993,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,9,5,1,295,0,0,0 +1576,1943,3589,-9,3587,3588,3,1,1,22,2,0,0,0,2,-9,2,1,0,3,9.024600598618372,9.428668491478863,0,3,0,0,0,-9,0,-915.000451567926,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,67,37,15,1,0,-9,1,16.22576830154828,16.22576830154828,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,7,1,0,0,9,5,1,1455,0,0,0 +1577,1944,3590,-9,3592,3591,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-868.2556673962243,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,0,834.25,0,0,0 +1577,1944,3591,3592,-9,-9,2,1,1,49,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,24,0,9,0,0,0,0,40,2,4,3,2,2,2019,4,1,9,0,0,40,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.45,60.44,4,1,1,0,5,1,0,834.25,0,0,0 +1577,1944,3592,3591,-9,-9,1,1,0,40,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,25,0,0,0,0,0,1,49,2,4,3,-9,-9,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,5,1,0,834.25,0,0,0 +1577,1944,3593,-9,3592,3591,3,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-907.827145989213,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,7,1,0,0,5,1,0,834.25,0,0,0 +1578,1945,3594,3595,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,0,0,0,0,0,63,2,2,3,3,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.551767384914534,0,0,0,50,47,5,1,0,0,11,1,1,908.5,0,0,0 +1578,1945,3595,3594,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,47,0,0,0,0,0,0,63,3,3,3,3,-9,2019,4,2,24,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.068213308733871,0,0,0,33.07,44.65,3,1,0,0,11,1,1,908.5,0,0,0 +1579,1946,3596,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,2,0,6.435674609612479,6.451724646389419,3,0,0,0,-9,0,-1070.891593029212,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.105515228459818,0,1,1,0,0,6.812537948773224,0,0,53.44,23.31,6,1,0,0,11,2,0,308,0,0,0 +1580,1947,3597,3598,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,7.677312790505607,7.750955398856917,1,0,-9,9,0,-1,49.55989917272804,0,0,0,77,2,3,3,2,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,1,0,5.841877641262697,0,0,0,0,1,1,0,5.392641400531321,8.008180783093893,0,0,51.01,44.05,7,1,0,0,11,4,1,445,0,0,0 +1580,1947,3598,3597,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.875613064565188,8.085377079475405,1,0,-9,9,0,1,-146.5223644675171,0,0,0,76,2,4,3,2,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.930768049292281,7.861770284476348,113.9119003675933,1,56.35,48.33,7,1,0,0,11,4,1,445,0,0,0 +1581,1948,3599,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,4,7.026955427622209,7.263794576297434,0,4,0,0,0,-9,0,-1108.739580285902,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,23,23,15,1,1,-9,0,7.615320837151398,7.615320837151398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.58,58.52,3,1,0,0,2,2,0,479,0,0,0 +1581,1948,3600,-9,3599,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1055.679016210081,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,2,0,479,0,0,0 +1581,1948,3601,-9,3599,-9,2,1,1,17,2,0,2,0,3,1,97,3,0,4,0,0,0,4,0,0,0,-9,0,-1004.970777748601,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.35,48.3,6,1,0,0,2,2,0,479,0,0,0 +1582,1949,3602,3603,-9,-9,2,1,1,87,1,0,0,0,2,-9,4,3,0,3,0,7.931052085492301,7.586007473212698,1,0,-9,59,0,3,87.45068353526048,0,0,0,84,2,3,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.35308056442217,7.811545856413074,0,0,51.96,40.73,6,1,0,0,9,3,1,570.5,0,0,0 +1582,1949,3603,3602,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,6.4711149623316,6.577929976283535,1,0,-9,59,0,-3,-57.49641617902047,0,0,0,87,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.024594113003356,6.706763837857384,0,0,50.38,33.62,6,1,0,0,9,3,1,570.5,0,0,0 +1583,1950,3604,-9,3605,3606,3,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1018.798780389438,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,7,2,1,616,0,0,0 +1583,1950,3605,3606,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,4,7.690138690149416,7.881522931556423,0,2,0,-9,19,0,-15,34.22259654515472,0,0,0,68,2,4,3,1,1,2019,2,2,7,0,23,22,15,1,0,4,0,11.98667864527887,11.98667864527887,0,0,0,0,0,0,0,1,1,0,.7324691956568296,0,0,0,54.2,57.49,6,1,0,0,7,2,1,616,0,0,0 +1583,1950,3606,3605,-9,-9,2,1,1,68,1,0,1,0,2,-9,4,3,0,4,0,5.973178740648397,5.8770110199051,2,0,-9,19,0,15,-34.0342209758256,0,0,0,53,1,4,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.127631860015245,5.885267837038832,0,0,50.97,53.42,4,1,0,0,7,2,1,616,0,0,0 +1584,1951,3607,-9,-9,-9,1,1,1,43,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1058.51428238463,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.88,48.45,6,1,1,0,1,1,0,747,0,0,0 +1585,1952,3608,3609,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,7.563424482357012,7.89369906281447,0,1,0,-9,30,0,7,-52.53399396435616,0,0,0,55,2,2,1,3,3,2019,1,2,9,0,39,38,15,1,0,1,0,6.759509106639058,6.759509106639058,0,0,0,0,0,0,0,0,0,0,4.266666868777558,0,0,0,54.37,54.8,5,3,0,0,6,3,1,712.5,0,0,0 +1585,1952,3609,3608,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,2,6.848766256014635,6.96653012204144,0,1,0,-9,30,0,-7,17.06178003874364,0,0,0,62,2,3,1,3,3,2019,1,1,10,0,44,44,15,1,0,1,0,2.75800857986732,2.75800857986732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.65,52.38,6,3,0,0,6,3,1,712.5,0,0,0 +1585,1953,3610,-9,3609,3608,3,1,0,27,2,0,0,0,1,-9,2,1,0,4,7.854358065300243,8.083653820124978,0,3,0,0,0,-9,0,-1125.514847663682,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,1,7.83032573907187,7.83032573907187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.11,54.04,6,3,0,0,6,3,1,160,0,0,0 +1586,1954,3611,3612,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.707619198792464,8.726262874958875,0,1,0,-9,33,0,1,94.06017889366991,0,0,0,51,1,4,1,2,3,2019,1,2,9,0,35,35,15,1,0,1,0,18.1731792584064,18.1731792584064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,11,5,1,598,0,0,0 +1586,1954,3612,3611,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,4,8.506441653794994,8.683971179713085,0,1,0,-9,33,0,-1,40.96601562170767,-9,0,0,52,2,4,1,2,2,2019,1,1,11,0,45,0,15,1,0,1,0,12.21935582279369,12.21935582279369,0,0,0,0,0,0,0,0,0,0,1.500113338158527,0,26.97552193791019,3,46.16,58.62,6,1,0,0,11,5,1,598,0,0,0 +1587,1955,3613,3614,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,28,0,-1,0,0,0,0,51,2,4,3,3,3,2019,4,2,23,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32.46,3,1,0,1,8,1,0,726,0,0,0 +1587,1955,3614,3613,-9,-9,2,1,1,51,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,4,0,1,0,0,0,0,50,2,2,3,-9,-9,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,4,1,0,8,1,0,726,0,0,0 +1587,1956,3615,-9,3613,3614,3,1,1,24,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-913.7644639075374,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,38,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,2,0,0,8,1,0,1033,0,0,0 +1587,1957,3616,-9,3613,3614,4,1,0,21,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-899.9897317751869,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,30,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.28,59.33,1,2,1,1,8,1,0,688,0,0,0 +1588,1958,3617,3618,-9,-9,2,1,0,29,1,0,0,0,2,0,7,2,0,4,0,0,0,1,0,-9,5,0,1,-117.5554099531671,-9,1,1,28,1,4,1,-9,-9,2019,3,1,14,3,0,0,15,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.62,59.88,6,1,0,0,12,4,0,758.5,0,0,0 +1588,1958,3618,3617,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,4,8.784766015754364,8.678047960872291,0,1,0,-9,5,0,-1,-32.40121578065391,0,1,0,29,2,4,2,2,2,2019,2,2,20,8,45,45,15,1,8,2,0,14.8063035254529,14.8063035254529,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,64.54000000000001,6,1,0,0,12,4,0,758.5,0,0,0 +1589,1959,3619,-9,3621,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.651341226606,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,3,0,0,7,5,0,1351.666666666667,0,0,0 +1589,1959,3620,-9,3621,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1124.936138295662,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,3,0,0,7,5,0,1351.666666666667,0,0,0 +1589,1959,3621,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,5,9.384592478736034,9.439328623107995,0,4,0,0,0,-9,0,-1038.442989169878,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,47,46,15,1,1,-9,0,27.35570050767526,27.35570050767526,0,0,0,0,0,0,0,0,0,0,1.024907677037996,0,0,0,49.3,59.89,6,3,0,0,7,5,0,1351.666666666667,0,0,0 +1590,1960,3622,-9,3625,3623,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.3316211770947,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,688,0,0,0 +1590,1960,3623,3625,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,4,8.918421277575098,9.210604182789909,0,2,0,-9,14,0,0,-21.5580645351836,0,0,0,35,1,3,1,2,1,2019,1,1,9,0,60,55,15,1,0,1,0,17.60710067185724,17.60710067185724,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,58.8,6,1,0,0,7,5,1,688,0,0,0 +1590,1960,3624,-9,3625,3623,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1121.76511511552,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,688,0,0,0 +1590,1960,3625,3623,-9,-9,1,1,0,35,1,1,2,0,1,-9,5,1,0,3,7.409159939221314,7.354181316666649,0,2,0,-9,14,0,0,-67.31185852705873,0,0,1,35,1,4,1,2,3,2019,1,2,12,0,15,15,15,1,0,1,0,12.66672164472742,12.66672164472742,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,4,1,0,0,7,5,1,688,0,0,0 +1591,1961,3626,3627,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,3,7.697737159123338,8.130263403393846,0,1,0,-9,6,0,0,-45.30101037141575,0,0,0,55,2,5,1,3,3,2019,1,1,8,1,34,34,15,1,1,1,0,12.07023427488349,12.07023427488349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,6,3,0,0,9,4,1,398,0,0,0 +1591,1961,3627,3626,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,5,8.426748760880368,7.979096307436685,0,1,0,-9,6,0,0,68.76503763308988,0,0,0,55,3,3,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,10.44697244239759,10.44697244239759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,1,3,0,0,9,4,1,398,0,0,0 +1591,1962,3628,-9,3626,3627,3,1,0,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1049.238246557447,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.857810832136286,0,0,0,46.98,59.35,6,3,0,0,9,1,1,177,0,0,0 +1591,1963,3629,-9,3626,3627,4,1,1,26,2,0,0,0,1,-9,2,1,0,3,8.081083458336725,8.165576435649472,0,3,0,0,0,-9,0,-920.897033814918,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,37,37,15,1,1,-9,1,10.7580208302163,10.7580208302163,0,0,0,0,0,0,0,0,0,0,7.118509603850388,0,0,0,47.66,52.33,4,3,0,0,9,4,1,535,0,0,0 +1592,1964,3630,-9,-9,-9,1,1,0,50,2,0,3,0,1,-9,2,1,0,4,8.224784039676839,8.072446367901234,0,4,0,0,0,-9,0,-918.5783760929116,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,37,37,15,1,4,-9,0,15.26480274581111,15.26480274581111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.13,61.39,5,4,0,0,8,3,0,763.6666666666666,0,0,0 +1592,1964,3631,-9,3630,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-855.2682859767962,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,3,0,763.6666666666666,0,0,0 +1592,1964,3632,-9,3630,-9,3,1,0,17,2,0,3,1,3,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-914.8267701544708,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.55,37.86,7,4,0,0,8,3,0,763.6666666666666,0,0,0 +1592,1965,3633,-9,3630,-9,2,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-979.733660097821,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,7,4,0,0,8,3,0,1031,0,0,0 +1593,1966,3634,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,7.748323115206628,7.608773335065218,3,0,0,0,-9,0,-973.6364973408934,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.459960131665222,8.030257065529208,0,0,51.55,41.42,6,1,0,0,9,3,1,395,0,0,0 +1594,1967,3635,3636,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,4.121353787854686,3.9708777863926,1,0,-9,38,0,-2,-41.14181232028159,0,0,0,75,2,2,3,2,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.311365589845082,0,0,57.93,46.29,6,1,0,0,12,2,1,846,0,0,0 +1594,1967,3636,3635,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,2,0,6.439537551510012,6.495915667824245,1,0,-9,38,0,2,21.68125232295327,0,0,0,73,3,3,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.481167000130639,0,0,52.4,31.65,5,1,0,0,12,2,1,846,0,0,0 +1595,1968,3637,3638,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,5.802337452406949,6.371123164995264,1,0,-9,19,0,-3,-109.413072135995,0,0,0,86,3,2,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,4.097458253105532,14.90335639261323,0,0,0,0,1,1,0,.4649212959165427,6.260742581854487,0,0,44.79,16.47,6,1,0,0,5,2,1,1109,0,0,0 +1595,1968,3638,3637,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,17,0,3,-55.61487574135371,0,0,0,83,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,2,4,0,0,0,1,0,13.90426232068512,0,0,0,0,1,1,0,5.263367989592338,0,16.69480301742347,1,48.27,30.92,7,1,0,0,5,2,1,1109,0,0,0 +1596,1969,3639,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1018.99001552361,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.056754309969701,0,1,1,0,4.610070541033301,0,0,0,58.82,39.12,6,1,0,0,10,1,1,454,0,0,0 +1597,1970,3640,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,2,7.994546576140375,8.025357950324638,6.354684808501261,3,0,0,0,-9,0,-886.179973013875,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,37,38,15,1,4,-9,0,7.288348183052936,7.288348183052936,0,0,0,0,0,0,0,1,1,0,6.555948066059483,6.003920155032317,0,0,35.86,48.52,4,1,0,0,9,4,0,316,0,0,0 +1598,1971,3641,-9,3644,3642,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.6124534253231,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,4,5,1,331.5,0,0,0 +1598,1971,3642,3644,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,4,9.073023856906277,9.286797023149425,0,2,0,-9,10,0,3,141.1733863425444,0,0,0,34,1,4,1,-9,-9,2019,1,1,7,0,45,40,15,1,0,1,0,19.44266688970302,19.44266688970302,0,0,0,0,0,0,0,0,0,0,4.701586711792062,0,0,0,57.16,56.15,6,1,0,0,4,5,1,331.5,0,0,0 +1598,1971,3643,-9,3644,3642,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.864203970213,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,5,1,0,0,4,5,1,331.5,0,0,0 +1598,1971,3644,3642,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,4,8.570124833003009,8.163990339986528,0,2,0,-9,10,0,-3,29.26265029385417,0,0,1,37,1,4,1,3,2,2019,1,2,11,0,39,42,15,1,0,1,0,13.87064678505755,13.87064678505755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.27,34,7,1,0,0,4,5,1,331.5,0,0,0 +1599,1972,3645,3646,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.994142610647944,6.821151630130935,1,0,-9,50,0,9,74.81303513386439,0,0,0,66,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.775205278655289,6.807160134246775,0,0,51.64,50.48,5,1,0,0,1,2,1,1980.5,0,0,0 +1599,1972,3646,3645,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,0,-.1050746754701173,0,0,0,75,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.564670633467249,0,0,0,58.32,50.22,7,1,0,0,1,2,1,1980.5,0,0,0 +1600,1973,3647,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,2,7.11443477387828,7.64919651170063,6.467601041216892,3,0,0,0,-9,0,-1092.001398565084,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,15,10,15,1,0,-9,0,9.365148843905819,9.365148843905819,0,0,0,0,0,0,0,0,0,0,0,6.459934773579948,0,0,53.76,44.54,5,4,0,0,8,3,0,1371,0,0,0 +1601,1974,3648,3649,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,6.555393425998735,6.469279304651864,0,1,0,-9,9,0,-4,135.1265612240286,0,0,0,50,3,2,3,-9,-9,2019,2,1,17,5,45,12,15,1,5,3,0,2.085645262858892,2.085645262858892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,3,0,0,5,2,1,588.5,0,0,0 +1601,1974,3649,3648,-9,-9,1,1,1,50,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,9,0,4,58.68696004865708,0,0,0,46,2,4,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,18.32,4,1,0,0,5,2,1,588.5,0,0,0 +1602,1975,3650,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,3,8.655035813180822,8.934135682530634,0,3,0,0,0,-9,0,-996.183504958759,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,35,35,15,1,0,-9,0,22.18554734736939,22.18554734736939,0,0,0,0,0,0,0,0,0,0,2.449711161216562,0,0,0,51.22,49.35,6,1,0,0,4,5,1,135,0,0,0 +1603,1976,3651,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,8.594566319004125,8.70166599855639,3,0,0,0,-9,0,-1023.353825460326,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.48374544563273,9.142985172226453,0,0,59.32,46.98,6,1,0,0,2,5,1,803,0,0,0 +1604,1977,3652,3653,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,0,98.91771296205627,0,0,0,74,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.999186196776083,0,0,0,57.33,53.46,6,1,0,0,2,2,1,1037.5,0,0,0 +1604,1977,3653,3652,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,6.503788984723969,6.501007264806423,1,0,-9,56,0,0,5.108038438951866,0,0,0,74,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.367316412904716,0,0,57.33,53.46,7,1,0,0,2,2,1,1037.5,0,0,0 +1605,1978,3654,3655,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,1,0,4.926183943584338,5.120065285971225,1,0,-9,53,0,0,146.2482146282204,0,0,0,77,1,3,3,3,3,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.6433946138943396,5.516619085969332,0,3,45.4,24.38,3,1,0,0,7,3,1,675.5,0,0,0 +1605,1978,3655,3654,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.682296810977897,7.545761991221815,1,0,-9,53,0,0,-96.09191350283417,0,0,0,77,1,1,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,11.95223878686581,0,0,0,0,1,1,0,4.219911174311139,7.600402806242467,0,0,58.08,40.76,6,1,0,0,7,3,1,675.5,0,0,0 +1606,1979,3656,3657,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,8.607787618443149,8.487851904846949,1,0,-9,21,0,6,0,0,0,0,57,1,3,3,3,3,2019,4,2,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.864385571358255,8.582265411859886,0,0,57.16,56.15,7,1,0,0,2,5,1,852,0,0,0 +1606,1979,3657,3656,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,3,0,8.533298665740535,8.687555192185819,1,0,-9,21,0,-6,0,0,0,0,63,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.425480261636173,8.394949547401703,0,0,57.33,53.46,7,1,0,0,2,5,1,852,0,0,0 +1607,1980,3658,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,1,1,0,5,9.621325717580756,9.24806739392427,0,3,0,0,0,-9,0,-1017.340650718115,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,65,50,15,1,0,-9,0,18.62632037551676,18.62632037551676,0,0,0,0,0,0,0,0,0,0,4.212468566411633,0,0,0,45.46,61.87,5,1,0,0,8,5,0,637,0,0,0 +1607,1981,3659,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,1,1,0,5,6.873452963477395,7.410368885829419,0,3,0,0,0,-9,0,-1018.678370584615,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,70,65,15,1,0,-9,0,1.760707449470027,1.760707449470027,0,0,0,0,0,0,0,0,0,0,.4793663079075126,0,0,0,46.28,62.6,6,1,0,0,8,2,0,315,0,0,0 +1608,1982,3660,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1038.626652409415,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,2.48518078657297,0,1,1,0,0,0,0,0,60.02,56.42,1,1,0,0,9,1,1,2502,0,0,0 +1609,1983,3661,3662,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,4,9.525681647406577,9.640496329289469,0,1,0,1,1,-9,5,-125.6161494799115,-9,0,0,38,1,4,1,1,1,2019,1,2,6,0,41,0,15,1,0,1,0,36.21996830437672,36.21996830437672,0,0,0,0,0,0,0,0,0,0,3.091370934628601,0,0,0,57.16,56.15,6,1,0,0,2,5,1,1483,0,0,0 +1609,1983,3662,3661,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,4,9.595009489842987,9.671074621024189,0,1,0,-9,1,-9,-5,-40.3110571536771,-9,0,1,43,1,4,1,-9,-9,2019,1,1,6,0,48,0,15,1,0,1,0,48.5650436825732,48.5650436825732,0,0,0,0,0,0,0,0,0,0,4.88375308803137,0,0,0,57.16,56.15,6,1,0,0,2,5,1,1483,0,0,0 +1610,1984,3663,3664,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,52,0,0,69.84235511830533,0,0,0,72,1,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.824420231163479,0,0,0,39.57,50.51,7,1,0,0,9,4,1,1518.5,0,0,0 +1610,1984,3664,3663,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,5,0,8.363190290463885,8.322849510614242,1,0,-9,52,0,0,76.71086809495085,0,0,0,72,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.437805366000775,8.480422493746001,0,0,61.16,53.18,6,1,0,0,9,4,1,1518.5,0,0,0 +1611,1985,3665,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,97,3,0,1,0,0,0,3,0,0,0,-9,0,-920.3841006411802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.15,26.32,4,1,0,0,11,1,0,1193,0,0,0 +1611,1986,3666,-9,3665,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,3,8.377927933402239,8.712929019968666,0,3,0,0,0,-9,0,-1089.995544404908,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,64,40,15,1,0,-9,1,7.723578931195793,7.723578931195793,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,48.37,5,1,0,0,11,5,0,945,0,0,0 +1612,1987,3667,3668,-9,-9,2,1,1,75,1,0,0,0,2,-9,1,1,0,4,7.513948339811433,7.185168325441918,0,1,0,-9,45,0,8,12.55560725323787,0,0,0,67,1,5,3,-9,3,2019,2,1,8,0,0,70,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.968826811661169,0,0,0,57.16,56.15,6,1,0,0,10,3,0,376.5,0,0,0 +1612,1987,3668,3667,-9,-9,1,1,0,67,1,0,0,0,1,-9,10,3,0,5,0,6.916430452098178,6.938864707053854,1,0,-9,45,0,-8,54.45221233133798,0,0,0,75,2,4,1,2,1,2019,3,2,13,1,0,30,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.884596112620939,7.388249489242341,0,0,51.67,60.18,6,1,0,0,10,3,0,376.5,0,0,0 +1613,1988,3669,3670,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.883349513764998,7.743824010826886,1,0,-9,7,0,-2,-31.93168810800227,0,0,0,70,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.841231673055854,7.765168415675277,0,0,57.51,47.75,6,1,0,0,13,4,1,444,0,0,0 +1613,1988,3670,3669,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,7.896745992610986,7.781529439312209,1,0,-9,7,0,2,38.28736456416452,0,0,0,68,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.696802493264382,0,0,57.16,56.15,6,1,0,0,13,4,1,444,0,0,0 +1614,1989,3671,3672,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,7.686179783744343,7.476419473522824,1,0,-9,16,0,3,-76.39952139151616,0,0,0,65,1,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.849761750960243,7.869998878570827,0,0,58.89,48.6,6,1,0,0,10,3,1,417.5,0,0,0 +1614,1989,3672,3671,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,7.356063927476272,6.984368840067922,1,0,-9,23,0,-3,-56.72552257466982,0,0,0,68,1,3,3,1,1,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.524631427773581,7.019177638650566,0,1,52.94,41.91,6,1,0,0,10,3,1,417.5,0,0,0 +1615,1990,3673,3674,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,8.02932089019178,8.352304506865757,1,0,-9,7,0,3,-76.05980103919208,0,0,0,68,3,3,3,2,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.360561350526485,0,0,57.66,45.08,6,3,0,0,11,3,1,422,0,0,0 +1615,1990,3674,3673,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,4.303773776185352,4.637673246841146,1,0,-9,7,0,-3,17.88562211363384,0,0,0,71,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.189762972677684,4.211132799017807,0,0,43.37,57.28,6,1,0,0,11,3,1,422,0,0,0 +1616,1991,3675,-9,3676,-9,2,1,0,13,2,1,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1052.712009911736,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,2,2,0,551,0,0,0 +1616,1991,3676,-9,-9,-9,1,1,0,32,2,1,3,0,2,-9,8,3,1,4,0,6.678880034805007,6.791593111855094,4,0,0,0,-9,0,-1022.806827185102,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.780430231323322,0,8.682356097236049,3,21.14,55.21,5,1,0,0,2,2,0,551,0,0,0 +1616,1991,3677,-9,3676,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-934.184632329131,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,0,551,0,0,0 +1616,1991,3678,-9,3676,-9,3,1,0,10,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1013.002102202304,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,2,0,551,0,0,0 +1617,1992,3679,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1062.136361562724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,2.342302559350328,0,0,0,1,1,0,2.171712526797384,0,0,0,37.47,34.76,4,1,0,0,12,1,0,1052,0,0,0 +1618,1993,3680,-9,-9,-9,1,1,0,46,2,1,2,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1043.602560162792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.1610472889919,3,54.96,53.17,4,1,1,0,2,1,0,630,0,0,0 +1618,1993,3681,-9,3680,-9,3,1,0,17,2,1,2,0,2,1,3,3,0,1,0,0,0,4,0,0,0,-9,0,-1054.85073894186,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.76,25.08,4,1,1,0,2,1,0,630,0,0,0 +1619,1994,3682,3683,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,2,0,6.681060605093622,6.966327826386548,1,0,-9,46,0,-1,8.281794463078093,0,0,0,71,2,5,3,2,2,2019,4,1,21,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.506967431330563,6.555282987805782,0,0,22.83,61.65,3,1,0,0,6,3,1,696.5,0,0,0 +1619,1994,3683,3682,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,5,0,7.669315026024306,7.433953514206753,1,0,-9,46,0,1,186.2331545276741,0,0,0,70,1,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.597467401999793,7.644457403560144,0,0,57.06,57.76,2,1,0,0,6,3,1,696.5,0,0,0 +1620,1995,3684,3685,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,4,8.418948661710903,8.357536093854776,0,1,0,-9,6,0,3,103.9317053889115,0,0,0,40,2,3,1,-9,-9,2019,1,1,8,0,50,48,15,1,0,1,0,9.686511524972939,9.686511524972939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.33,6,1,0,0,12,5,1,1424.5,0,0,0 +1620,1995,3685,3684,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,3,8.519352046445338,8.197884881033497,0,1,0,-9,6,0,-3,21.19247776008634,0,0,1,43,1,4,1,-9,-9,2019,1,2,11,0,38,41,15,1,0,1,0,14.69527773596664,14.69527773596664,0,0,0,0,0,0,0,0,0,0,2.050153905031561,0,0,0,48.03,46.88,6,1,0,0,12,5,1,1424.5,0,0,0 +1621,1996,3686,-9,-9,-9,1,1,0,54,3,0,2,0,3,-9,6,3,0,4,0,3.245811868750393,3.281438647020583,4,0,0,0,-9,0,-939.5995613323425,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.456274711377341,44.19659984390335,3,52.38,50.07,6,1,0,0,12,1,0,610.3333333333334,0,0,0 +1621,1996,3687,-9,3686,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-959.9168536883662,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,0,610.3333333333334,0,0,0 +1621,1996,3688,-9,3686,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-921.0048667078747,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,0,610.3333333333334,0,0,0 +1622,1997,3689,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,1,1,0,2,8.219032109827333,8.308579696760809,0,3,0,-9,0,1,0,-1065.970036938171,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,40,40,15,1,6,-9,0,10.82094420148568,10.82094420148568,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.74,43,3,1,0,1,4,4,0,724,0,0,0 +1623,1998,3690,3693,-9,-9,1,1,1,28,1,1,2,0,2,-9,2,1,0,3,7.958564597497643,7.684358874129188,0,2,0,-9,7,0,1,7.100318725771176,0,1,0,27,2,3,3,2,2,2019,2,2,7,0,39,39,15,1,0,3,0,9.144248740280261,9.144248740280261,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,2,1,0,0,9,3,0,588.25,0,0,0 +1623,1998,3691,-9,3693,3690,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.944810473035,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,588.25,0,0,0 +1623,1998,3692,-9,3693,3690,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.0895465518139,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,0,588.25,0,0,0 +1623,1998,3693,3690,-9,-9,2,1,0,27,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-1,-3.756592857304438,0,1,1,28,2,3,1,2,2,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.122705696379752,3,52,54.51,4,1,0,0,9,3,0,588.25,0,0,0 +1624,1999,3694,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,2,1,0,4,7.385946102415185,7.906572125712893,7.495811732720519,3,0,0,0,-9,0,-1031.512615347105,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,17,18,15,1,0,-9,0,10.50186792301049,10.50186792301049,0,0,0,0,0,0,0,1,1,0,6.056198031209979,7.22178160483548,0,0,57.28,51.96,6,1,0,0,11,4,1,1921,0,0,0 +1625,2000,3695,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,7.921469895952916,7.535465011087525,0,3,0,0,0,-9,0,-1043.430838176874,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,32,30,15,1,0,-9,0,9.075253822300475,9.075253822300475,0,0,0,0,0,0,0,0,0,0,3.70878492493992,0,0,0,59.14,52.5,6,1,0,0,11,3,1,1491,0,0,0 +1626,2001,3696,-9,3697,3698,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.536332613973,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,5,3,1,758.75,0,0,0 +1626,2001,3697,3698,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,5,7.576333583545312,7.536007800876486,0,2,0,-9,6,0,7,-17.27734395310372,0,0,0,38,1,4,1,2,2,2019,1,1,7,0,24,28,15,1,0,1,0,8.551214584094676,8.551214584094676,0,0,0,0,0,0,0,1,1,0,2.477024123866201,0,0,0,49.36,58.53,4,1,0,0,5,3,1,758.75,0,0,0 +1626,2001,3698,3697,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,4,8.050558326709949,8.402052679486205,0,2,0,-9,6,0,-7,-13.91123526323619,0,0,0,45,2,5,1,2,1,2019,1,2,13,3,41,45,15,1,3,1,0,10.57404192454364,10.57404192454364,0,0,0,0,0,0,0,1,1,0,3.845917319577205,0,0,0,46.98,59.35,2,1,0,0,5,3,1,758.75,0,0,0 +1626,2001,3699,-9,3697,3698,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-855.430422302293,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,758.75,0,0,0 +1627,2002,3700,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,3,0,7.51002356042891,7.416742164379123,3,0,0,0,-9,0,-1000.06649512627,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,11.15476316470606,0,0,0,1,1,0,0,7.414189586306544,0,0,55.17,35.34,6,1,0,0,9,3,1,508,0,0,0 +1628,2003,3701,3702,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,4,0,7.600824093865354,7.641570418667597,1,0,-9,22,0,-10,-125.524429025812,0,0,0,69,1,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.131772124252109,7.737606870491176,0,0,51.19,52.17,6,1,0,0,2,3,1,698,0,0,0 +1628,2003,3702,3701,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,3,0,7.226617321982427,7.397763274472594,1,0,-9,19,0,10,74.56881436226774,0,0,0,59,1,4,3,3,3,2019,2,1,13,2,40,30,15,1,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.124947031267662,7.448322660048593,0,0,47.89,49.49,5,1,0,0,2,3,1,698,0,0,0 +1629,2004,3703,3706,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,4,8.207087516714056,8.107271279429096,0,2,0,-9,1,-9,2,13.5964059182853,-9,0,1,37,1,4,1,2,1,2019,1,1,11,2,34,0,15,1,2,1,0,12.62489199981644,12.62489199981644,0,0,0,0,0,0,0,0,0,0,2.468575041390308,0,0,0,42.95,61.24,6,1,0,0,10,5,1,749.5,0,0,0 +1629,2004,3704,-9,3703,3706,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-935.8639251613394,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,10,5,1,749.5,0,0,0 +1629,2004,3705,-9,3703,3706,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-821.6359265907611,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,10,5,1,749.5,0,0,0 +1629,2004,3706,3703,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,8.822752584181904,8.594790357250449,0,2,0,-9,8,-9,-2,-16.9876850025329,-9,0,0,39,1,4,1,2,2,2019,1,2,10,0,42,0,15,1,1,1,0,26.82661901848224,26.82661901848224,0,0,0,0,0,0,0,0,0,0,0,0,12.04422634195562,3,51,56,5,1,0,0,10,5,1,749.5,0,0,0 +1630,2005,3707,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,5,8.037723407179488,7.923780275613553,0,3,0,0,0,-9,0,-954.1058067088417,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,1,60,43,15,1,1,-9,0,7.64301543719336,7.64301543719336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,5,1,0,0,8,4,0,311,0,0,0 +1631,2006,3708,3709,-9,-9,1,1,1,65,1,0,0,0,1,-9,1,1,0,4,9.62564593662643,10.2806854725455,9.53016081579872,1,0,-9,43,0,2,44.24020435399031,0,0,0,63,1,4,1,2,2,2019,1,2,6,0,12,16,15,1,0,1,0,159.8656186592726,159.8656186592726,0,0,0,0,0,0,0,1,1,0,6.800180649843234,9.437433466185908,0,0,57.16,56.15,6,1,0,0,10,5,1,966.5,0,0,0 +1631,2006,3709,3708,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,4,8.794321268097884,8.794157832322666,7.76112824399863,1,0,-9,7,0,-2,80.93188790252501,0,0,0,65,1,4,1,-9,-9,2019,1,1,8,0,16,0,15,1,0,1,0,42.57197565437172,42.57197565437172,0,0,0,0,0,0,0,1,1,0,7.892359194625182,7.981392183129642,0,0,57.73,54.53,6,1,0,0,10,5,1,966.5,0,0,0 +1632,2007,3710,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1126.393936709442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.271406762639214,0,0,0,53.44,55.06,6,1,0,0,10,1,1,1221,0,0,0 +1633,2008,3711,-9,-9,-9,1,1,1,51,3,0,0,0,3,-9,2,1,0,5,8.396520944222489,8.503412813695487,0,3,0,0,0,-9,0,-951.7080986600945,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,60,55,15,1,0,-9,0,9.331592971663973,9.331592971663973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,12,4,0,575,0,0,0 +1634,2009,3712,-9,-9,-9,1,1,1,28,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-965.429843564285,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.91,54.42,2,1,1,0,2,1,0,1238,0,0,0 +1635,2010,3713,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-977.6201347563938,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,1,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.63,50.31,5,1,0,0,6,1,0,895,0,0,0 +1636,2011,3714,3715,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,53,0,-3,-132.7389148120473,0,0,0,73,1,3,3,2,2,2019,4,1,13,0,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.240509423738236,0,0,0,42.75,39.78,6,1,0,0,11,3,1,207,0,0,0 +1636,2011,3715,3714,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,7.600009281218954,7.53960355671662,1,0,-9,53,0,3,-11.05860973359831,0,0,0,70,1,2,3,2,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.047947135289618,7.867779527704346,116.1976503066601,1,47.69,55.06,6,1,0,0,11,3,1,207,0,0,0 +1637,2012,3716,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,6.869294113563162,7.111834763487336,3,0,0,0,-9,0,-1138.793161032464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.935055125751811,6.870573755531429,0,0,56.76,38.7,7,1,0,0,12,2,0,1539,0,0,0 +1638,2013,3717,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-945.5890440689677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,52.09,7,1,0,0,5,1,1,365,0,0,0 +1639,2014,3718,3719,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,7.029704270625883,7.148123962293291,1,0,-9,46,0,-3,-105.2181588681642,0,0,0,68,2,2,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.856172273978963,0,3,60.44,46.58,7,2,0,0,5,3,1,258.5,0,0,0 +1639,2014,3719,3718,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,8.122736912133234,7.667697285788804,1,0,-9,46,0,3,-47.02896484353847,0,0,0,65,2,3,3,-9,2,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.733249097626871,8.109427441923565,8.915506801149528,3,51.2,47.32,6,1,0,0,5,3,1,258.5,0,0,0 +1640,2015,3720,-9,3723,3721,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1030.496084521267,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,0,729.75,0,0,0 +1640,2015,3721,3723,-9,-9,2,1,1,28,1,1,2,0,2,-9,2,1,0,2,8.775689441656738,9.090578391304033,0,2,0,-9,8,0,-4,-104.3722305400727,0,1,0,32,2,3,1,-9,-9,2019,1,1,6,0,49,50,15,1,0,1,0,18.06779654703984,18.06779654703984,0,0,0,0,0,0,0,1,1,0,4.59212169758832,0,0,0,65.44,43.37,7,1,0,0,12,4,0,729.75,0,0,0 +1640,2015,3722,-9,3723,3721,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.437318215771,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,0,729.75,0,0,0 +1640,2015,3723,3721,-9,-9,1,1,0,32,1,1,2,0,2,-9,2,1,0,3,7.103371141739381,7.34606335110461,0,2,0,-9,8,0,4,-59.50945483670643,0,0,1,28,2,2,1,-9,-9,2019,1,2,6,0,20,38,15,1,0,1,0,7.190248932602698,7.190248932602698,0,0,0,0,0,0,0,1,1,0,2.661051239840837,0,0,0,57.33,53.46,7,1,0,0,12,4,0,729.75,0,0,0 +1641,2016,3724,3725,-9,-9,1,1,0,61,1,0,0,0,2,-9,1,1,0,2,8.239960685691791,8.303656729545724,2.733288276755204,1,0,-9,8,0,-4,95.79362477526971,0,0,0,65,3,2,3,2,2,2019,2,2,10,0,10,0,15,1,0,4,0,49.61347875832811,49.61347875832811,0,0,0,0,0,0,0,1,1,0,2.609709019077542,2.854958010702181,0,0,55.5,41.04,5,1,0,0,12,4,1,821.5,0,0,0 +1641,2016,3725,3724,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,5.582709251098435,5.675944038140335,1,0,-9,8,0,4,-140.6266106299057,0,0,0,61,2,2,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.793003902352127,5.191832685906377,0,0,68.73999999999999,28.12,7,1,0,0,12,4,1,821.5,0,0,0 +1642,2017,3726,3727,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.971279235958173,7.878824944989435,1,0,-9,32,0,6,55.33395961679561,0,0,0,57,2,4,1,1,2,2019,3,2,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.988643675238023,8.261401004217419,0,0,48.74,50.46,5,1,0,0,5,5,1,776.5,0,0,0 +1642,2017,3727,3726,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.590690267043076,8.578576021258694,0,1,0,-9,32,0,-6,-26.17033093698321,0,0,0,63,2,3,3,3,-9,2019,2,1,9,0,36,36,15,1,0,4,0,13.27811155952318,13.27811155952318,0,0,0,0,0,0,0,0,0,0,5.805250122229187,0,0,0,46.63,59.72,6,1,0,0,5,5,1,776.5,0,0,0 +1643,2018,3728,3729,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,5,8.969372579936955,8.99541247017194,0,1,0,-9,7,0,3,47.99152371572816,0,0,0,30,1,4,1,-9,-9,2019,1,2,5,0,45,43,15,1,0,1,0,20.20349854130444,20.20349854130444,0,0,0,0,0,0,0,0,0,0,1.19642935140081,0,0,0,57.06,57.76,7,1,0,0,7,5,1,1215.5,0,0,0 +1643,2018,3729,3728,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.999665227456413,9.194879637849107,0,1,0,-9,7,0,-3,-27.414386723215,0,0,1,33,2,5,1,1,1,2019,1,1,5,0,35,35,15,1,0,1,0,31.7071171597879,31.7071171597879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,3,0,0,7,5,1,1215.5,0,0,0 +1644,2019,3730,3731,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,5,0,-19,0,0,0,0,75,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,13,1,1,335.5,0,0,0 +1644,2019,3731,3730,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,5,0,19,0,0,0,0,56,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.823027934492687,0,0,0,53,47,5,1,0,0,13,1,1,335.5,0,0,0 +1645,2020,3732,3733,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,1,0,0,0,1,0,-9,3,0,5,0,0,0,0,57,3,1,3,-9,-9,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,73.788106068716,1,31.43,18.27,3,1,0,1,6,1,0,1585,0,0,0 +1645,2020,3733,3732,-9,-9,1,1,0,57,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,27,0,-5,0,0,0,0,62,1,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,17.69,2,1,0,1,6,1,0,1585,0,0,0 +1645,2021,3734,-9,3733,3732,3,1,0,28,2,0,0,0,2,-9,5,1,0,2,0,4.433891031673535,4.324872038054943,3,0,0,0,-9,0,-885.8531607690749,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,16,15,1,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.017603721173059,4.342131217701973,73.21113143091699,3,42.27,39.15,4,1,0,1,6,2,0,6306,0,0,0 +1646,2022,3735,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.762324672811824,7.975833096579235,0,3,0,0,0,-9,0,-923.5633332248294,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,16,16,15,1,2,-9,0,19.4203417864513,19.4203417864513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,4,0,0,8,3,0,870,0,0,0 +1647,2023,3736,3737,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,3,9.122613840939941,8.683791432605654,0,2,0,-9,8,0,2,38.2619714281217,0,0,0,32,1,4,1,2,1,2019,1,2,11,3,44,43,15,1,3,1,0,18.32424985498995,18.32424985498995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.38,39.15,6,1,0,0,13,5,1,547.6666666666666,0,0,0 +1647,2023,3737,3736,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,4,8.63811003309358,8.430414955652157,0,2,0,-9,8,0,-2,23.15282424861647,0,0,1,34,1,3,1,3,3,2019,1,1,15,4,37,37,15,1,4,1,0,19.22325220009193,19.22325220009193,0,0,0,0,0,0,0,1,1,0,0,0,19.13590595010546,1,43.28,57.13,6,1,0,0,13,5,1,547.6666666666666,0,0,0 +1647,2023,3738,-9,3737,3736,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1007.552569418892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,5,1,547.6666666666666,0,0,0 +1648,2024,3739,3740,-9,-9,2,1,1,49,1,0,0,0,3,-9,2,1,0,4,8.205526666333304,7.937362878738755,0,1,0,-9,8,0,-2,14.96946262699241,0,0,0,51,2,4,1,3,2,2019,1,1,11,0,40,38,15,1,0,1,0,7.804301017451317,7.804301017451317,0,0,0,0,0,0,0,0,0,0,5.076685045434897,0,0,0,52.38,55.6,5,1,0,0,9,4,0,1268.5,0,0,0 +1648,2024,3740,3739,-9,-9,1,1,0,51,1,0,0,0,2,-9,1,1,0,4,7.256195132398454,7.164145595137363,0,1,0,-9,8,0,2,21.0328327807707,0,0,0,49,3,4,1,2,2,2019,1,2,11,1,30,30,15,1,1,1,0,6.031740930815337,6.031740930815337,0,0,0,0,0,0,0,0,0,0,6.907331919230542,0,0,0,46.5,58.26,6,1,0,0,9,4,0,1268.5,0,0,0 +1648,2025,3741,-9,3740,3739,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,7.682338806127152,7.732847039137401,0,3,0,0,0,-9,0,-1056.359726703399,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,47,43,15,1,0,-9,1,6.340660843474997,6.340660843474997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,3,0,1083,0,0,0 +1649,2026,3742,3743,-9,-9,1,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,7.539869628118139,6.917548574897765,1,0,-9,55,0,-3,16.9436223995958,0,0,0,81,1,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.131922987350363,114.5809422252626,1,49.04,55.86,5,1,0,0,4,3,1,711.5,0,0,0 +1649,2026,3743,3742,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,2,0,7.656858070017937,7.818857752827467,1,0,-9,57,0,3,-84.54827197587301,0,0,0,78,1,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,129.285557815199,0,39.88847992901972,0,14.61311505213701,1,1,0,0,7.794156791967628,0,0,54.04,15.14,6,1,0,0,4,3,1,711.5,0,0,0 +1649,2027,3744,-9,3742,3743,3,1,1,48,2,0,0,0,2,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-993.5200251126271,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,111.795086912837,3,51.83,57.2,4,1,0,0,4,1,1,281,0,0,0 +1650,2028,3745,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,4,0,5.614251504932587,6.275977287611825,3,0,0,0,-9,0,-901.168631009474,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,16.43076675621666,0,0,0,2.505803499367916,0,1,1,0,7.134917983988132,6.198785164676125,0,0,43.7,43.12,6,1,0,0,7,2,0,432,0,0,0 +1651,2029,3746,-9,3747,3748,6,1,0,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1133.144568586219,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,767.25,0,0,0 +1651,2029,3747,3748,-9,-9,2,1,0,48,1,0,4,0,1,-9,2,1,0,5,7.471445116794464,7.520112904873679,0,2,0,-9,11,0,5,-32.91696176979348,0,0,0,43,1,4,1,2,1,2019,1,1,6,0,25,25,15,1,0,1,0,8.853510304131394,8.853510304131394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,13,2,1,767.25,0,0,0 +1651,2029,3748,3747,-9,-9,1,1,1,43,1,0,4,0,1,-9,1,1,0,4,7.287999788726437,6.907974038589926,0,2,0,-9,11,0,-5,82.46907304201746,0,0,0,48,1,5,1,1,2,2019,1,2,6,0,50,0,15,1,0,1,0,3.400344512649452,3.400344512649452,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,2,1,767.25,0,0,0 +1651,2029,3749,-9,3747,3748,5,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.8703274045026,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,13,2,1,767.25,0,0,0 +1652,2030,3750,3751,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,61,0,-3,-69.70648859367284,0,0,0,82,3,3,1,3,2,2019,3,2,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.444629658912988,0,0,0,47.4,54.06,6,1,0,0,13,4,1,688.5,0,0,0 +1652,2030,3751,3750,-9,-9,2,1,1,82,1,0,0,0,3,-9,1,1,0,3,8.495603414287073,8.33634162547164,6.785712282030263,1,0,-9,61,0,3,22.52962006231838,0,0,0,79,3,3,3,3,3,2019,2,1,12,0,42,30,15,1,0,4,0,11.53236585995517,11.53236585995517,0,0,0,0,0,0,0,1,1,0,6.642337297363754,6.584099498739731,0,0,45.56,43.57,6,1,0,0,13,4,1,688.5,0,0,0 +1653,2031,3752,-9,3753,3755,3,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.6054936023357,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,7,1,0,412.8,0,0,0 +1653,2031,3753,3755,-9,-9,2,1,0,33,1,1,3,0,2,-9,3,3,0,5,0,0,0,2,0,-9,7,0,-10,0,0,0,1,43,2,4,3,-9,-9,2019,4,1,0,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.08,47.23,4,3,1,1,7,1,0,412.8,0,0,0 +1653,2031,3754,-9,3753,3755,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.318521296818,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,7,1,0,412.8,0,0,0 +1653,2031,3755,3753,-9,-9,1,1,1,43,1,1,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,10,0,0,0,0,33,2,5,3,-9,-9,2019,4,2,11,1,0,20,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,5,3,1,1,7,1,0,412.8,0,0,0 +1653,2031,3756,-9,3753,3755,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.656131937587,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,7,1,0,412.8,0,0,0 +1654,2032,3757,3758,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,3,0,0,0,2,0,-9,10,0,1,-51.34730451796877,0,0,0,35,1,5,1,2,3,2019,1,1,11,3,0,1,15,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.47,39.93,6,3,0,0,4,2,1,680.25,0,0,0 +1654,2032,3758,3757,-9,-9,1,1,0,35,1,1,2,0,1,-9,1,1,0,5,7.108201802953529,6.612185237521738,0,2,0,-9,10,0,-1,110.1655285469259,0,0,1,36,1,3,1,2,2,2019,1,2,14,2,12,24,15,1,2,1,0,10.51909094507766,10.51909094507766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,62.1,6,3,0,1,4,2,1,680.25,0,0,0 +1654,2032,3759,-9,3758,3757,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.047100740591,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,2,1,680.25,0,0,0 +1654,2032,3760,-9,3758,3757,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-974.4667281219996,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,4,2,1,680.25,0,0,0 +1655,2033,3761,3762,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.496829145659742,8.687118204230391,0,1,0,-9,30,0,5,-95.25811071122816,0,0,0,55,2,4,1,3,3,2019,1,2,11,0,39,37,15,1,0,1,0,15.35541670837998,15.35541670837998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,4,1,0,0,6,5,1,330,0,0,0 +1655,2033,3762,3761,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.505538262340155,7.422586825053988,0,1,0,-9,30,0,-5,-.39700140749335,0,0,0,60,2,4,1,-9,-9,2019,1,1,12,0,24,27,15,1,0,1,0,8.697069802803989,8.697069802803989,0,0,0,0,0,0,0,0,0,0,5.948548776540266,0,0,0,43.2,59.97,5,1,0,0,6,5,1,330,0,0,0 +1656,2034,3763,3764,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,5,5.703873607837775,6.811820042464267,6.34651387078122,1,0,-9,38,0,-8,-67.67392041397203,0,0,0,71,1,4,3,2,2,2019,4,1,12,2,5,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.685027330315965,5.956024814594818,0,0,52.9,48.57,6,1,0,0,2,4,1,295.5,0,0,0 +1656,2034,3764,3763,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.180564038713415,8.316101005355138,1,0,-9,38,0,8,29.09105203507151,0,0,0,63,2,5,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,10.67669867566782,0,0,0,54.94,50.33,5,1,0,0,2,4,1,295.5,0,0,0 +1657,2035,3765,3766,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,39,0,-1,163.3847527931447,0,0,0,70,2,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.659501221762609,3,49.52,29.25,6,1,0,0,2,2,1,718.5,0,0,0 +1657,2035,3766,3765,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,5.413519223721734,5.302876571316719,1,0,-9,39,0,1,49.88413098817337,0,0,0,69,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.485637676493464,0,3,51.82,46.83,4,1,0,0,2,2,1,718.5,0,0,0 +1658,2036,3767,-9,-9,-9,1,1,0,71,2,0,0,0,1,-9,2,1,0,2,8.25223995399093,9.104613826962206,8.481009207626443,3,0,0,0,-9,0,-1053.723043279442,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,8,0,15,1,4,-9,0,70.76788325967861,70.76788325967861,1,0,1.174302867135802,0,0,.4697156151235418,0,1,1,0,6.800846877486269,8.448530990870227,0,0,53.15,29.68,6,1,0,0,12,5,1,1193,0,0,0 +1659,2037,3768,3770,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,4,8.976292864177777,8.631419242849187,0,2,0,-9,17,0,6,19.00940281296953,0,0,0,35,1,3,1,3,3,2019,1,2,7,0,42,43,15,1,0,1,0,14.51107542018418,14.51107542018418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,433,0,0,0 +1659,2037,3769,-9,3770,3768,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.0961897492647,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,5,1,433,0,0,0 +1659,2037,3770,3768,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,3,8.256088439191569,8.319128023732301,0,2,0,-9,17,0,-6,48.30705842786416,0,0,1,41,2,4,1,3,3,2019,1,1,12,0,35,40,15,1,0,1,0,10.42448359129626,10.42448359129626,0,0,0,0,0,0,0,1,1,0,0,0,4.285111434198893,3,25.24,58.56,5,1,0,0,2,5,1,433,0,0,0 +1660,2038,3771,3772,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,4,0,7.217901016760329,7.256527165673316,1,0,-9,9,0,1,84.82666847213498,0,0,0,59,3,3,3,2,2,2019,4,2,11,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.577297078920841,7.655412595214799,65.5915738286953,1,41.84,60.5,5,1,0,0,9,2,1,1122.5,0,0,0 +1660,2038,3772,3771,-9,-9,2,1,0,59,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,9,0,-1,59.42956554084233,0,0,0,60,2,4,3,3,2,2019,4,1,14,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.530458827681485,0,0,0,36.61,46.68,2,1,1,0,9,2,1,1122.5,0,0,0 +1660,2039,3773,-9,3772,3771,3,1,1,28,2,0,0,0,2,-9,2,1,0,2,8.226046204954166,7.866600250581116,0,3,0,0,0,-9,0,-928.3782831272416,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,35,39,15,1,3,-9,1,8.176051170567478,8.176051170567478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,4,1,0,0,9,4,1,193,0,0,0 +1660,2040,3774,-9,3772,3771,4,1,1,23,2,0,0,0,2,-9,3,3,0,4,8.111367682691498,8.462330151642464,0,3,0,0,0,-9,0,-922.5635695489738,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,28,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.64,62.88,5,1,1,0,9,4,1,2513,0,0,0 +1661,2041,3775,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,5,8.130981719823158,8.22558964516554,0,3,0,0,0,-9,0,-918.8653833000668,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,35,25,15,1,1,-9,0,10.38316308565581,10.38316308565581,0,0,0,0,0,0,0,0,0,0,6.936538025841292,0,0,0,43.09,61.58,6,1,0,0,11,4,0,3527,0,0,0 +1662,2042,3776,3777,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,3,0,7.119060178462505,6.938322664576888,1,0,-9,8,0,-1,34.84600355341757,0,0,0,87,1,2,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,1.608470618326414,4.692446927215626,0,0,0,56.21161156903867,1,1,0,2.580201953588116,7.649814153981895,0,0,54.78,43.58,6,1,0,0,12,3,1,194,0,0,0 +1662,2042,3777,3776,-9,-9,2,1,0,87,1,0,0,0,1,-9,4,3,0,2,0,7.790336125064557,7.5883030609751,1,0,-9,8,0,1,56.46708849183859,0,0,0,86,2,3,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,6.707037244616924,0,0,0,0,10.79410863072363,1,1,0,2.679117557332935,7.653403485931356,0,0,50.91,29.26,5,1,0,0,12,3,1,194,0,0,0 +1663,2043,3778,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1010.202311741935,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.66,50.04,6,1,0,0,8,1,0,523,0,0,0 +1664,2044,3779,3780,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,6.313939708308436,6.322292651895381,1,0,-9,47,0,3,-62.60147042756762,0,0,0,65,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,3.802643442197495,6.076842064550853,6.981953962781748,2,55.6,47.8,6,1,0,0,10,2,0,618,0,0,0 +1664,2044,3780,3779,-9,-9,2,1,0,65,1,0,0,0,2,-9,8,3,1,2,0,7.046773019652651,7.071598008632549,1,0,-9,47,0,-3,-79.48128144659977,0,0,0,68,2,2,3,3,3,2019,4,1,12,2,0,0,15,3,2,4,0,0,0,1,0,28.33036538405559,0,0,11.9240365640881,0,1,1,0,0,7.397925602810095,0,0,28.45,27.69,5,1,0,0,10,2,0,618,0,0,0 +1664,2045,3781,-9,-9,-9,3,1,1,21,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-960.6869054808635,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.62934596476067,3,26.26,59.84,4,1,0,0,10,1,0,455,0,0,0 +1665,2046,3782,-9,3783,-9,3,1,0,14,2,1,3,1,3,-9,-9,2,0,3,0,0,0,4,0,-9,0,-9,0,-888.620665299032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,8,1,0,629,0,0,0 +1665,2046,3783,-9,-9,-9,1,1,0,41,3,1,3,0,2,-9,3,3,0,3,0,0,0,4,0,-9,0,-9,0,-1088.123916343487,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,18,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.5,42.22,4,1,1,1,8,1,0,629,0,0,0 +1665,2047,3784,-9,3786,-9,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1155.181767653319,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,8,2,0,903.3333333333334,0,0,0 +1665,2047,3785,-9,3786,-9,4,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-889.6945735043521,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,2,0,903.3333333333334,0,0,0 +1665,2047,3786,-9,3783,-9,2,1,0,23,2,1,3,0,2,-9,3,3,0,3,0,3.743142993682928,3.635872640764358,3,0,-9,0,-9,0,-1036.146976861004,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.365282829632067,0,0,0,36.93,56.27,3,1,1,1,8,2,0,903.3333333333334,0,0,0 +1666,2048,3787,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,7.734637498707985,7.372124413600815,3,0,0,0,-9,0,-992.300237076509,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.539389848754276,0,0,46.75,31.6,6,1,0,0,9,3,1,1509,0,0,0 +1666,2049,3788,-9,-9,-9,2,1,1,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-849.6678855583697,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.44,43.73,6,1,0,0,9,1,1,222,0,0,0 +1667,2050,3789,3790,-9,-9,3,1,0,23,1,1,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,3,0,0,8.876292727950705,0,1,1,32,2,4,1,-9,-9,2019,1,1,12,0,20,15,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.36669569199494,0,0,0,46,58,5,1,0,0,8,3,0,892.75,0,0,0 +1667,2050,3790,3789,-9,-9,1,1,1,32,1,1,2,0,2,-9,1,1,0,4,8.047534404363001,8.269625273111698,0,2,0,-9,3,0,9,-37.05633233709503,0,0,0,23,2,4,1,2,2,2019,1,3,10,0,70,60,15,1,1,1,0,7.624206239833788,7.624206239833788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,58,5,1,0,0,8,3,0,892.75,0,0,0 +1667,2050,3791,-9,3789,3790,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.9139976653701,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,8,3,0,892.75,0,0,0 +1667,2050,3792,-9,3789,3790,2,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.3758890793317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,8,3,0,892.75,0,0,0 +1668,2051,3793,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-873.2955727775079,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,23,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.534207864131597,0,0,0,29.68,58.2,6,1,0,0,10,1,0,764,0,0,0 +1668,2052,3794,-9,-9,-9,2,1,1,19,2,0,0,1,2,-9,7,2,0,4,0,6.825737851311684,6.484497649415821,3,0,-9,0,-9,0,-767.0359544512128,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.459436367009635,0,0,0,51.77,58.57,6,1,0,0,10,2,0,2572,0,0,0 +1669,2053,3795,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,3,0,5.501866444862345,5.53991257578983,3,0,0,0,-9,0,-1093.252767818082,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,1.424314502617202,0,0,0,0,26.75464364513203,1,1,0,0,5.290810372112349,0,0,55,45,6,1,0,0,4,2,0,1711,0,0,0 +1670,2054,3796,-9,3797,3798,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.2276736583964,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,3,0,572.6666666666666,0,0,0 +1670,2054,3797,3798,-9,-9,2,1,0,28,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-3,127.883151889524,0,1,1,31,2,5,1,-9,-9,2019,3,1,6,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,3,0,1,8,3,0,572.6666666666666,0,0,0 +1670,2054,3798,3797,-9,-9,1,1,1,31,1,0,1,0,2,-9,2,1,0,5,8.379207883359397,8.76999302104246,0,2,0,-9,7,0,3,-134.8133947239511,0,0,0,28,3,4,3,-9,-9,2019,2,2,11,1,42,30,15,1,1,3,0,15.91627006492825,15.91627006492825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.31,58.56,4,3,0,0,8,3,0,572.6666666666666,0,0,0 +1671,2055,3799,3800,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,4,0,5.255875004543824,5.268304150342349,1,0,-9,49,0,5,135.992444603984,0,0,0,73,2,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,40.31288723778018,0,0,0,0,1,1,0,8.667244875697936,5.419664153140034,0,0,52.82,53.97,7,1,0,0,7,2,1,390.5,0,0,0 +1671,2055,3800,3799,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,6.957505430018029,7.118844619331327,1,0,-9,49,0,-5,10.61377387237008,0,0,0,78,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.123822501681744,6.94787847993295,0,0,59.7,53.75,4,1,0,0,7,2,1,390.5,0,0,0 +1672,2056,3801,-9,-9,-9,1,1,0,59,2,0,0,0,3,-9,2,1,0,2,6.961343624830354,6.804447334019662,0,3,0,-9,0,-9,0,-986.5886961808309,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,37,0,15,1,0,-9,0,2.640717041745983,2.640717041745983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.69,6,4,0,0,9,2,0,82,0,0,0 +1673,2057,3802,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,4,7.659346654677437,7.996419626988856,0,3,0,0,0,-9,0,-985.1184289132354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,42,15,1,0,-9,0,8.425491073019682,8.425491073019682,0,0,0,0,0,0,0,1,1,0,6.647608364371822,0,0,0,57.16,56.15,6,1,0,0,5,4,1,1163,0,0,0 +1674,2058,3803,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,4,3,0,4,0,7.64328096411976,8.113679194719866,3,0,0,0,-9,0,-1133.878138317386,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.321175637038325,7.877492824081069,0,0,60.12,54.8,6,1,0,0,13,3,1,182,0,0,0 +1675,2059,3804,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,3,8.64266272488333,8.573440496576358,0,3,0,0,0,-9,0,-1131.149677331363,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,55,60,15,1,0,-9,0,8.288554469301056,8.288554469301056,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,43.9,6,1,0,0,2,5,1,111,0,0,0 +1676,2060,3805,3806,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.477503114503827,8.42365861860068,0,1,0,-9,30,0,0,-87.07387752861236,0,0,0,52,1,4,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,12.135058551558,12.135058551558,0,0,0,0,0,0,0,0,0,0,4.492462377121035,0,0,0,58.15,52.91,6,1,0,0,2,5,1,1354,0,0,0 +1676,2060,3806,3805,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.836636982677168,8.755885878183625,0,1,0,-9,30,0,0,-111.10565024849,0,0,0,52,1,4,1,2,2,2019,1,1,12,0,55,44,15,1,0,1,0,9.63125170046542,9.63125170046542,0,0,0,0,0,0,0,0,0,0,3.853308320581059,0,0,0,49.67,51.26,6,1,0,0,2,5,1,1354,0,0,0 +1676,2061,3807,-9,3806,3805,3,1,0,22,2,0,0,0,1,1,97,3,0,5,0,0,0,3,0,0,0,-9,0,-968.7415599014665,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.53,63.81,5,1,0,1,2,1,1,654,0,0,0 +1676,2062,3808,-9,3806,3805,4,1,0,20,2,0,0,1,2,0,7,2,0,4,7.750850009508578,7.569185155681044,0,3,0,0,0,-9,0,-1078.979527142677,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,7,1,0,0,2,3,1,1044,0,0,0 +1677,2063,3809,3811,-9,-9,1,1,0,32,1,1,1,0,2,-9,1,1,0,5,8.022769846322722,7.993745312023232,0,2,0,-9,7,0,-1,115.2397430606257,0,0,1,33,2,4,1,2,2,2019,1,2,16,4,18,6,15,1,4,1,0,20.21912743277494,20.21912743277494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,61.22,6,1,0,0,5,3,1,1021,0,0,0 +1677,2063,3810,-9,3809,3811,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.075224131214,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,1021,0,0,0 +1677,2063,3811,3809,-9,-9,2,1,1,33,1,1,1,0,2,-9,1,1,0,4,7.468925512488251,6.792254315932165,0,2,0,-9,7,0,1,62.63284702974962,0,0,0,32,2,5,1,-9,-9,2019,1,1,6,0,50,40,15,1,0,1,0,3.073814223613844,3.073814223613844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,5,3,1,1021,0,0,0 +1678,2064,3812,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,3,8.486747375400638,8.373084852042158,5.361922255875606,3,0,0,0,-9,0,-862.6846797560991,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,44,39,15,1,0,-9,0,9.392409998119081,9.392409998119081,0,0,0,0,0,0,0,1,1,0,0,5.677968091341616,0,0,51,48,6,1,0,0,6,4,1,309,0,0,0 +1678,2065,3813,-9,-9,3812,2,1,1,30,2,0,0,0,3,-9,1,1,0,2,9.541763015244433,9.566720528253125,0,3,0,0,0,-9,0,-1077.927388957565,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,30,30,15,1,0,-9,1,53.28110347745245,53.28110347745245,0,0,0,0,0,0,0,1,1,0,0,0,0,3,42,42,6,1,0,0,6,5,1,629,0,0,0 +1679,2066,3814,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,5,7.589255350567468,7.458331225212303,0,3,0,0,0,-9,0,-977.3151443173944,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,20,7,15,1,0,-9,0,10.38123866991967,10.38123866991967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,6,4,0,0,4,3,0,192,0,0,0 +1680,2067,3815,3816,-9,-9,1,1,1,20,1,0,0,0,2,-9,2,1,0,4,8.223153448564164,7.974835747591921,0,1,0,-9,2,0,1,35.92105165209964,0,1,0,19,2,4,1,-9,-9,2019,1,2,13,2,43,42,15,1,2,1,0,8.201956450226785,8.201956450226785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,4,1,0,0,10,4,0,1442,0,0,0 +1680,2067,3816,3815,-9,-9,2,1,0,19,1,0,0,0,2,1,2,1,0,4,7.609143128780539,7.504453443856122,0,1,0,-9,2,0,-1,-94.11402057942963,-9,1,1,20,2,4,1,-9,-9,2019,1,1,11,1,40,0,15,1,1,1,0,4.700690875206448,4.700690875206448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,10,4,0,1442,0,0,0 +1681,2068,3817,3818,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,7.717436822148996,7.858978800111247,1,0,-9,54,0,4,27.08251295370503,0,0,0,76,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.266231748678632,7.763037922012393,0,0,59.89,42.51,7,1,0,0,9,3,1,458,0,0,0 +1681,2068,3818,3817,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,7.369165726418856,6.924807676454241,1,0,-9,56,0,-4,-84.74882521281656,0,0,0,80,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.050409381038914,7.23616222211653,0,0,45.67,33.47,6,1,0,0,9,3,1,458,0,0,0 +1682,2069,3819,3820,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,6.037592280952263,6.080921660782562,1,0,-9,9,0,-1,9.335898595021995,0,0,0,70,3,2,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.358019089846546,6.159919608224401,0,0,52,54.51,1,1,0,0,2,2,1,540,0,0,0 +1682,2069,3820,3819,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,4.78626958098373,4.401113379408684,1,0,-9,9,0,1,109.1422389175311,0,0,0,69,2,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,7.272298932602617,0,0,0,0,1,1,0,0,4.999804402753105,0,0,42.93,42.71,7,1,0,0,2,2,1,540,0,0,0 +1683,2070,3821,3822,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,3,9.112232923440672,8.84589430691037,0,2,0,-9,23,0,4,128.9767512883849,0,0,0,42,2,2,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,27.21997873220852,27.21997873220852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,4,1,0,0,9,5,0,494.3333333333333,0,0,0 +1683,2070,3822,3821,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,2,6.500764145194694,6.380724105814897,0,2,0,-9,23,0,-4,-34.51105088269986,0,0,1,46,1,3,1,2,2,2019,1,2,23,10,10,0,15,1,10,1,0,6.568435133520655,6.568435133520655,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.9,52.26,2,2,0,1,9,5,0,494.3333333333333,0,0,0 +1683,2070,3823,-9,3822,3821,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.5251534658312,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,9,5,0,494.3333333333333,0,0,0 +1684,2071,3824,3825,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,4,8.753299556293506,8.72418946026519,0,2,0,-9,26,0,0,80.72228379129348,0,0,0,48,2,3,1,3,2,2019,1,2,7,0,40,37,15,1,0,1,0,24.17048514387139,24.17048514387139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,1,905.5,0,0,0 +1684,2071,3825,3824,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,3,7.535968481694603,7.443970978629811,0,2,0,-9,26,0,0,-60.63544327783094,0,0,0,48,1,4,1,2,2,2019,1,1,12,0,17,25,15,1,0,1,0,11.14071044200124,11.14071044200124,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,4,1,0,0,10,4,1,905.5,0,0,0 +1685,2072,3826,-9,3828,3829,4,1,0,17,2,0,3,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-868.1418009820527,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.31,55.59,6,3,0,0,7,3,1,756,0,0,0 +1685,2072,3827,-9,3828,3829,6,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.2772661998133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,7,3,1,756,0,0,0 +1685,2072,3828,3829,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,24,0,0,25.73224916537535,0,0,1,40,2,4,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.69,55.66,7,3,0,0,7,3,1,756,0,0,0 +1685,2072,3829,3828,-9,-9,2,1,1,40,1,0,3,0,2,-9,1,1,0,4,8.4885340846321,8.521210773312529,0,2,0,-9,7,0,0,-7.444318533066893,-9,0,0,40,2,4,3,-9,-9,2019,2,1,9,0,30,0,15,1,1,3,0,17.85070640951788,17.85070640951788,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,7,3,1,756,0,0,0 +1685,2072,3830,-9,3828,3829,5,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.9813514240627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,7,3,1,756,0,0,0 +1685,2073,3831,-9,3828,3829,3,1,0,19,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1077.697303644271,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,3,0,0,7,1,1,301,0,0,0 +1686,2074,3832,-9,-9,-9,1,1,0,67,2,0,0,0,1,-9,2,1,0,5,6.971292991431897,7.380025064183226,6.117045643479768,3,0,0,0,-9,0,-964.7273149735029,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,2,9,13,15,1,2,-9,0,15.74126367235981,15.74126367235981,1,0,0,0,0,0,0,1,1,0,0,6.324546701387935,0,0,54.63,58.83,5,1,0,0,1,3,1,1349,0,0,0 +1687,2075,3833,3834,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,4,8.987310442341133,9.166668327342785,0,1,0,-9,9,0,3,26.51807753693345,0,0,0,37,1,3,1,-9,-9,2019,1,1,9,2,43,37,15,1,2,1,0,27.31123487919401,27.31123487919401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.37,52.35,6,1,0,0,10,5,1,428.5,0,0,0 +1687,2075,3834,3833,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,3,8.320602232377237,8.424462251603575,0,1,0,-9,9,0,-3,-60.67740008460174,0,0,1,40,2,4,1,-9,-9,2019,1,2,9,0,36,35,15,1,0,1,0,16.05405747949836,16.05405747949836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.98,42.84,6,1,0,0,10,5,1,428.5,0,0,0 +1688,2076,3835,3836,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,2,0,7.398720104022276,7.441177205204472,1,0,-9,29,0,-2,82.48662466222227,0,0,0,65,1,3,3,3,2,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.29223587875181,116.2555751574448,3,39.41,41.84,6,1,0,0,9,4,1,1459.5,0,0,0 +1688,2076,3836,3835,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,8.088896754590186,7.945319449939231,1,0,-9,29,0,2,-63.38305219344183,0,0,0,63,2,2,3,1,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.173939367607082,8.041618547539541,12.15391269842238,3,41.47,58.08,6,1,0,0,9,4,1,1459.5,0,0,0 +1688,2077,3837,-9,3835,3836,3,1,1,23,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-969.1761125474814,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.837375505383974,0,0,0,51.77,58.57,4,1,1,0,9,1,1,472,0,0,0 +1689,2078,3838,3839,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,7.095173545321182,8.638627918257548,8.436979731177024,1,0,-9,43,0,2,44.56207134662193,0,0,0,61,2,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.912500481667815,8.589006235934589,0,0,54.2,57.49,6,1,0,0,1,4,1,229,0,0,0 +1689,2078,3839,3838,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,43,0,-2,-101.7632942450448,0,0,0,63,1,4,3,3,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.5920717255857625,0,0,0,57.06,57.76,6,1,0,0,1,4,1,229,0,0,0 +1690,2079,3840,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,2,8.503730770290876,8.699153031732585,0,3,0,-9,0,-9,0,-976.8647635423757,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,48,0,15,1,7,-9,0,12.36023605219441,12.36023605219441,0,0,0,0,0,0,0,0,0,0,0,0,5.753697366120704,3,23.24,54.39,3,1,0,1,10,5,1,284,0,0,0 +1691,2080,3841,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,3,0,7.901462392477679,8.002232078856272,3,0,0,0,-9,0,-900.9806384236992,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.386871549909478,0,0,0,1,1,0,6.62339355527615,8.128695389177247,0,0,61.94,29.41,7,1,0,0,11,4,1,1199,0,0,0 +1691,2081,3842,-9,3841,-9,2,1,0,49,2,0,0,0,2,-9,4,3,0,2,0,7.951226871612822,7.90594847748168,3,0,0,0,-9,0,-966.2005254484158,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,8.002086250961511,120.4943488826985,3,42.35,36.31,6,1,0,0,11,3,1,325,0,0,0 +1692,2082,3843,-9,3844,-9,4,1,1,11,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1002.535202012217,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,2,0,267,0,0,0 +1692,2082,3844,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,2,6.550460803716484,6.585448252129638,4.020509912678724,3,0,0,0,-9,0,-980.6056248475294,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,6,4,0,15,1,6,-9,0,30.51022984733027,30.51022984733027,0,0,0,0,0,0,0,1,1,0,0,3.193216997942977,0,0,44.36,43.18,1,1,0,1,8,2,0,267,0,0,0 +1692,2082,3845,-9,3844,-9,3,1,1,14,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1014.655927444787,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,4,0,0,8,2,0,267,0,0,0 +1693,2083,3846,3847,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,6.052759107549597,6.070642244756633,1,0,-9,12,0,-6,140.4133418790684,0,0,0,73,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.469302550945251,5.475783928387758,0,0,58.15,52.91,6,1,0,0,12,2,0,2186,0,0,0 +1693,2083,3847,3846,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,17,0,6,86.28608816452241,0,0,0,67,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,12,2,0,2186,0,0,0 +1694,2084,3848,3849,-9,-9,1,1,1,37,1,0,0,0,2,-9,1,1,0,4,6.674982252009932,6.632457500072723,0,1,0,-9,6,0,5,-77.82379168787394,0,0,0,32,2,1,1,2,3,2019,1,2,14,2,40,35,15,1,2,1,0,2.926569100039336,2.926569100039336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.48,61.03,5,1,0,0,8,4,1,532.5,0,0,0 +1694,2084,3849,3848,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,1,8.141352426942012,8.412117477615915,0,1,0,-9,6,0,-5,123.601473146034,0,0,1,37,2,4,1,2,3,2019,1,1,26,9,43,45,15,1,9,1,0,10.51188237378143,10.51188237378143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.32,30.56,3,1,0,1,8,4,1,532.5,0,0,0 +1695,2085,3850,-9,3851,3853,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.709390475545,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,953.75,0,0,0 +1695,2085,3851,3853,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,4,8.433473007848912,8.847347386298605,0,2,0,-9,7,0,0,-80.59876860549849,0,0,1,47,1,2,1,2,2,2019,1,2,6,0,36,36,15,1,0,1,0,16.92252064870017,16.92252064870017,0,0,0,0,0,0,0,1,1,0,3.189158854846835,0,0,0,51.83,57.2,6,1,0,0,2,4,1,953.75,0,0,0 +1695,2085,3852,-9,3851,3853,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.708934211737,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,953.75,0,0,0 +1695,2085,3853,3851,-9,-9,2,1,1,47,1,1,2,0,1,-9,1,1,0,2,8.393924537447358,8.239323349347519,0,2,0,-9,7,0,9,-7.391492421295818,0,0,0,38,1,4,1,-9,-9,2019,1,1,10,0,26,37,15,1,0,1,0,17.30771427731435,17.30771427731435,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,45.62,6,1,0,0,2,4,1,953.75,0,0,0 +1696,2086,3854,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,1,1,0,2,9.083171953020788,9.201415355342359,0,3,0,0,0,-9,0,-1040.168341653706,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,45,70,15,1,0,-9,0,30.86935134718259,30.86935134718259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.57,48.71,5,1,0,0,7,5,1,901,0,0,0 +1697,2087,3855,3856,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,5.834690637170906,6.34590053688586,1,0,-9,45,0,-2,89.9759486059433,0,0,0,64,1,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.614979395908449,6.013971686080549,0,0,63.48,51.85,7,1,0,0,10,3,1,1051.5,0,0,0 +1697,2087,3856,3855,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,5,0,7.976740235144837,7.787175370682896,1,0,-9,45,0,2,-52.93080386175482,0,0,0,62,2,4,3,-9,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.829379937799616,7.999602557436635,0,0,60.02,56.42,6,1,0,0,10,3,1,1051.5,0,0,0 +1698,2088,3857,-9,3860,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,3,6.292934166761342,6.15365931735901,0,4,0,0,0,-9,0,-1052.856174300347,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.5,50.48,3,1,0,0,10,2,0,446.5,0,0,0 +1698,2088,3858,-9,3860,-9,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-930.5487198815523,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,0,446.5,0,0,0 +1698,2088,3859,-9,3860,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-872.5090975119399,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,0,446.5,0,0,0 +1698,2088,3860,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,1,1,0,3,5.35514334897143,5.793230251084082,2.954683341818822,4,0,0,0,-9,0,-995.2761928470012,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,4,18,16,15,1,4,-9,0,1.734069315095034,1.734069315095034,0,0,0,0,0,0,0,1,1,0,3.354832886267022,0,0,0,43.02,57.64,6,1,0,0,10,2,0,446.5,0,0,0 +1699,2089,3861,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,2,7.882024427048433,7.807824028687326,5.85634912092804,4,0,0,0,-9,0,-1009.137634811261,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,23,23,15,1,3,-9,0,13.03486382433607,13.03486382433607,0,0,0,0,0,0,0,1,1,0,6.26863131529382,0,0,0,62.42,32.41,6,1,0,0,7,3,0,724.5,0,0,0 +1699,2089,3862,-9,3861,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-944.4391168666104,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,0,724.5,0,0,0 +1700,2090,3863,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,1,1,0,4,9.474027599966316,9.92508927048096,0,3,0,0,0,-9,0,-1085.519030866243,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,42,25,15,1,0,-9,0,31.85744480313008,31.85744480313008,0,0,0,0,0,0,0,1,1,0,3.548414300469198,0,0,0,51.24,58.84,5,1,0,0,8,5,1,566,0,0,0 +1701,2091,3864,-9,3866,3865,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.8146282216,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,5,1,847,0,0,0 +1701,2091,3865,3866,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,3,9.310742814759333,9.253451997875755,0,2,0,-9,3,0,8,21.13880705676235,0,0,0,28,1,4,1,-9,-9,2019,1,1,11,0,45,40,15,1,0,1,0,20.67261950156881,20.67261950156881,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,59.08,6,1,0,0,5,5,1,847,0,0,0 +1701,2091,3866,3865,-9,-9,1,1,0,28,1,1,1,0,1,-9,2,1,0,4,8.470300247345534,8.63210687001269,0,2,0,-9,3,0,-8,-102.5222858169406,0,1,1,36,1,3,1,2,2,2019,1,2,13,2,60,46,15,1,2,1,0,7.039774045716036,7.039774045716036,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.29,54.22,6,1,0,1,5,5,1,847,0,0,0 +1702,2092,3867,3868,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,5,7.242447389846326,6.901878069344338,0,1,0,-9,6,0,-7,-142.2479691921599,0,0,0,54,2,4,1,2,-9,2019,1,2,10,0,32,45,15,1,0,1,0,5.076579118332787,5.076579118332787,0,0,0,0,0,0,0,0,0,0,2.634087660330871,0,0,0,58.69,46.25,7,1,0,0,12,5,1,1119,0,0,0 +1702,2092,3868,3867,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,4,9.551959164616918,9.767651274250742,0,1,0,-9,6,0,7,-102.1073844584584,0,0,0,47,2,5,1,-9,-9,2019,1,1,9,0,90,65,15,1,1,1,0,15.93765879823061,15.93765879823061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,12,5,1,1119,0,0,0 +1703,2093,3869,3870,-9,-9,1,1,1,89,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,21,0,10,0,0,0,0,79,3,1,3,-9,-9,2019,4,2,21,7,0,0,15,4,7,4,0,0,0,1,0,0,0,26.80964474329089,0,0,1,1,0,0,0,3.480470559799254,1,39.4,18.89,3,1,0,0,11,1,1,957,0,0,0 +1703,2093,3870,3869,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,-10,0,0,0,0,89,3,2,3,-9,-9,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,25.92699721142263,0,0,1,1,0,0,0,57.24726184722374,1,42.15,20.53,4,1,0,0,11,1,1,957,0,0,0 +1704,2094,3871,-9,3873,3875,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.1915752923616,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,4,1,923.8333333333334,0,0,0 +1704,2094,3872,-9,3873,3875,6,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.946901364683,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,923.8333333333334,0,0,0 +1704,2094,3873,3875,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,4,7.512288900003651,7.44340290824394,0,2,0,-9,21,0,1,8.084098310229272,0,0,1,43,2,4,1,2,2,2019,1,1,11,0,17,16,15,1,0,1,0,13.65229825573519,13.65229825573519,0,0,0,0,0,0,0,1,1,0,1.368800285306591,0,66.45916198422466,3,45.91,59.89,6,1,0,0,4,4,1,923.8333333333334,0,0,0 +1704,2094,3874,-9,3873,3875,3,1,0,16,2,0,3,0,2,-9,2,2,0,4,6.673220565068617,6.702937367024515,0,2,0,0,0,-9,0,-1062.687172112472,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,7,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,51.02,6,1,0,0,4,4,1,923.8333333333334,0,0,0 +1704,2094,3875,3873,-9,-9,1,1,1,43,1,0,3,0,2,-9,2,1,0,4,8.895287656787909,8.828091127447927,0,2,0,-9,21,0,-1,-78.04029356322812,0,0,0,44,2,4,1,3,3,2019,1,2,9,0,42,40,15,1,1,1,0,14.57416712421698,14.57416712421698,0,0,0,0,0,0,0,1,1,0,1.118037124382109,0,112.4801613547918,3,51,56,6,1,0,0,4,4,1,923.8333333333334,0,0,0 +1704,2094,3876,-9,3873,3875,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-896.9698921289277,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,923.8333333333334,0,0,0 +1705,2095,3877,3878,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,3,8.76234603161272,8.696762053459794,0,1,0,1,1,-9,-1,-125.128016646571,0,1,1,25,1,5,1,3,3,2019,1,2,17,5,37,40,15,1,5,1,0,20.76713522994761,20.76713522994761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.87,42.51,6,3,0,0,8,5,0,757.5,0,0,0 +1705,2095,3878,3877,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.404112159846933,8.307286146912686,0,1,0,-9,1,-9,1,184.123724294167,-9,1,0,24,1,3,1,-9,-9,2019,1,1,16,4,45,0,15,1,4,1,0,10.73292000237578,10.73292000237578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.38,59.24,6,3,0,0,8,5,0,757.5,0,0,0 +1706,2096,3879,3881,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,2,8.661392957005148,8.549546467190877,0,1,0,-9,27,0,1,-55.90406054845565,0,0,0,48,2,3,1,2,-9,2019,1,1,13,1,50,48,15,1,1,1,0,15.75466413715641,15.75466413715641,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.38,43.19,2,1,0,0,2,5,1,551.3333333333334,0,0,0 +1706,2096,3880,-9,3881,3879,3,1,1,17,2,0,0,1,2,0,7,2,0,3,5.083628584339632,5.985698049227309,5.089719878926179,1,0,0,0,-9,0,-1122.037182003054,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,3,3,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.915931997116851,0,0,0,48.77,50.44,5,1,0,0,2,5,1,551.3333333333334,0,0,0 +1706,2096,3881,3879,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.153584527674161,8.17815419265529,0,1,0,-9,26,0,-1,-29.66519049551278,0,0,0,49,1,2,1,2,2,2019,1,2,10,0,30,30,15,1,0,1,0,13.78016624412735,13.78016624412735,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.56,46.41,6,1,0,0,2,5,1,551.3333333333334,0,0,0 +1707,2097,3882,3883,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,8.56050687236181,8.710411600722594,1,0,-9,45,0,0,76.00791644478173,0,0,0,63,3,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.365795596933581,8.641569067730899,5.537011173161868,3,60.12,54.8,7,1,0,0,6,4,1,489.5,0,0,0 +1707,2097,3883,3882,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,5,0,5.486589720028267,5.40374848460111,1,0,-9,45,0,0,-1.224859098224662,0,0,0,63,1,4,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.06735051445827,5.043079285021075,0,0,60.02,56.42,7,1,0,0,6,4,1,489.5,0,0,0 +1708,2098,3884,3885,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,4,8.3853473816933,8.448587363351708,0,1,0,1,1,-9,3,133.2099683357474,0,1,0,23,1,5,1,2,3,2019,1,2,9,0,49,45,15,1,0,1,0,11.51610706212134,11.51610706212134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.69,55.66,4,1,0,0,9,5,1,516.5,0,0,0 +1708,2098,3885,3884,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,5,8.375812637986487,8.034710978224874,0,1,0,-9,1,-9,-3,78.93450667796267,-9,1,1,26,2,4,1,-9,-9,2019,1,1,10,0,49,0,15,1,0,1,0,8.751613711900802,8.751613711900802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,61.31,6,1,0,0,9,5,1,516.5,0,0,0 +1709,2099,3886,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,3,8.087215833937398,8.110567022253528,0,3,0,0,0,-9,0,-952.2374345279023,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,38,15,1,0,-9,0,7.531439059136969,7.531439059136969,0,0,0,0,0,0,0,0,0,0,2.881643937228271,0,0,0,46.45,48.92,3,1,0,0,2,4,1,535,0,0,0 +1710,2100,3887,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,3,8.275448738487457,7.947120664930085,0,3,0,0,0,-9,0,-977.124173546164,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,0,15,1,0,-9,0,10.12152554607561,10.12152554607561,0,0,0,0,0,0,0,0,0,0,.7867724403877207,0,0,0,56.5,48.33,6,1,0,0,5,4,0,855,0,0,0 +1711,2101,3888,3889,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,5,0,7.01850698296442,7.48426459108874,1,0,-9,7,0,8,-18.84799004169172,0,0,0,60,2,4,1,1,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.349752708600906,7.510369058696432,0,0,54.1,59.11,6,1,0,0,7,5,1,795,0,0,0 +1711,2101,3889,3888,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.990150669913842,8.868783947089293,0,1,0,-9,7,0,-8,-85.12777633098308,-9,0,0,68,1,5,3,-9,-9,2019,2,1,8,0,15,0,15,1,0,4,0,57.95852410369491,57.95852410369491,0,0,0,0,0,0,0,1,1,0,4.03359955029732,0,0,0,54,53,6,1,0,0,7,5,1,795,0,0,0 +1712,2102,3890,-9,-9,-9,1,1,1,39,3,0,0,0,2,-9,2,1,0,4,8.251220703441035,8.548136285286631,0,3,0,0,0,-9,0,-960.3696891440484,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,65,65,15,1,0,-9,0,8.397005905312302,8.397005905312302,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,5,1,0,0,10,5,1,106,0,0,0 +1713,2103,3891,3892,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,7.292706577923351,7.389043016344321,1,0,-9,9,0,6,190.6361335199851,0,0,0,68,1,2,3,3,3,2019,4,1,25,12,0,0,15,4,12,4,0,0,0,1,0,3.165068740982935,0,0,0,0,1,1,0,7.492786076603002,7.682839660308857,0,0,31.39,33.03,3,1,0,0,11,3,1,1214.5,0,0,0 +1713,2103,3892,3891,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,2,0,7.715059892092735,7.937105506929703,1,0,-9,9,0,-6,-35.11704555838941,0,0,0,74,3,2,3,3,3,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.567881840369155,7.719552844555052,0,0,51.22,32.42,6,1,0,0,11,3,1,1214.5,0,0,0 +1714,2104,3893,3894,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,4,8.478588604694721,7.972179990650456,0,1,0,-9,3,0,5,23.85159793955284,0,0,1,32,1,3,1,2,1,2019,1,2,12,0,42,43,15,1,0,1,0,13.19984062380827,13.19984062380827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,1,0,0,5,5,1,2318.5,0,0,0 +1714,2104,3894,3893,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,3,8.795607249158625,8.567148193020209,0,1,0,-9,3,0,-5,82.10184408901708,0,0,0,37,1,4,1,-9,-9,2019,1,1,10,1,45,40,15,1,1,1,0,17.09628964331364,17.09628964331364,0,0,0,0,0,0,0,0,0,0,.9782142618517328,0,0,0,37.75,56.99,6,1,0,0,5,5,1,2318.5,0,0,0 +1715,2105,3895,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,3,8.93048401314817,8.857309065863234,0,3,0,0,0,-9,0,-1044.983347778435,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,52,55,15,1,1,-9,0,19.73921925934508,19.73921925934508,0,0,0,0,0,0,0,1,1,0,1.874696087915659,0,0,0,46.97,47.21,4,1,0,0,12,5,1,439,0,0,0 +1716,2106,3896,3897,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.770266500718363,6.859052349079715,1,0,-9,46,0,-1,32.15237578419056,0,0,0,71,3,3,3,3,3,2019,4,2,6,2,0,0,15,4,2,4,0,0,0,1,0,8.002046763948329,0,0,0,0,1,1,0,0,6.815373178367433,81.64238470065192,1,65.17,21.38,3,1,0,0,7,2,0,3295,0,0,0 +1716,2106,3897,3896,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,6.036011228324357,6.212013461864133,1,0,-9,46,0,1,29.36026248749931,0,0,0,70,3,3,3,3,3,2019,4,1,23,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.353127925290696,11.3313495470076,2,35.21,32.44,3,1,0,0,7,2,0,3295,0,0,0 +1717,2107,3898,-9,3899,3900,1,1,0,28,3,0,5,0,1,-9,2,1,0,4,8.169028876212439,7.87493318523003,0,3,0,0,0,-9,0,-994.4860473399447,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,31,15,1,2,-9,1,7.966050092916861,7.966050092916861,0,0,0,0,0,0,0,1,1,0,.9588361951488686,0,12.80858625285384,3,47,57,5,3,0,0,8,4,0,378,0,0,0 +1717,2108,3899,3900,-9,-9,3,1,0,49,1,0,5,0,3,-9,6,3,0,4,0,0,0,2,0,-9,36,0,-8,0,0,0,0,57,3,3,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.85195920013652,3,50,54,6,3,0,1,8,1,0,428,0,0,0 +1717,2108,3900,3899,-9,-9,2,1,1,57,1,0,5,0,3,-9,3,3,0,3,0,0,0,2,0,-9,8,0,8,0,0,0,0,49,3,4,3,-9,-9,2019,4,3,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.3625507634147,3,51,49,5,3,1,1,8,1,0,428,0,0,0 +1717,2109,3901,3904,3899,3900,4,1,1,32,1,0,5,0,2,-9,2,1,0,4,7.358381895953183,6.947721386560853,0,2,0,-9,8,0,3,-58.45696581256234,0,0,0,29,2,4,3,3,3,2019,2,5,10,0,33,28,15,1,1,3,0,4.381667730035217,4.381667730035217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,8,2,0,1355.75,0,0,0 +1717,2109,3902,-9,3904,3901,10,1,0,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.014050774942,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,1355.75,0,0,0 +1717,2109,3903,-9,3904,3901,11,1,0,4,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.731607042484,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,2,0,1355.75,0,0,0 +1717,2109,3904,3901,-9,-9,5,1,0,29,1,0,5,0,2,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-3,116.5715346951855,0,1,1,32,2,4,1,-9,-9,2019,3,4,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,3,0,1,8,2,0,1355.75,0,0,0 +1717,2110,3905,-9,3899,3900,6,1,0,23,2,0,5,0,2,-9,2,1,0,4,7.148558210304535,7.332804922779086,0,3,0,0,0,-9,0,-869.4989829887917,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,35,35,15,1,2,-9,1,4.4461329106754,4.4461329106754,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,3,0,87,0,0,0 +1717,2111,3906,-9,3899,3900,7,1,1,18,2,0,5,1,2,0,7,2,0,4,5.861680635749293,5.981117913123836,0,3,0,0,0,-9,0,-869.9631748315877,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,6,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,4,0,351,0,0,0 +1718,2112,3907,-9,-9,-9,1,1,0,42,3,0,1,0,1,-9,2,1,0,4,7.998829618680051,7.882179462503229,0,4,0,0,0,-9,0,-958.8176166440931,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,33,15,1,0,-9,0,9.449886096928774,9.449886096928774,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,1,8,3,0,610.5,0,0,0 +1718,2112,3908,-9,3907,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-911.1045556671158,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,2,0,0,8,3,0,610.5,0,0,0 +1719,2113,3909,3910,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,3,7.663325517434395,7.662042405238453,6.537621763666658,1,0,-9,38,0,-1,-72.3992520682431,0,0,0,62,1,4,1,1,1,2019,1,2,7,0,16,8,15,1,0,1,0,18.08625415267086,18.08625415267086,0,0,0,0,0,0,0,0,0,0,4.601524485360623,6.730783434548258,10.24006554135574,3,59.31,49.81,7,1,0,0,12,5,1,539.5,0,0,0 +1719,2113,3910,3909,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,4,9.300312542630973,9.573039254269171,8.980657592553468,1,0,-9,38,0,1,86.81652547923868,0,0,0,61,1,3,1,2,3,2019,1,1,6,0,24,35,15,1,0,1,0,37.70101081412567,37.70101081412567,0,0,0,0,0,0,0,0,0,0,0,8.63350203929809,5.158877733048126,3,54.44,51.82,6,1,0,0,12,5,1,539.5,0,0,0 +1720,2114,3911,-9,3914,-9,4,1,0,17,2,1,4,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.232112957796,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,4,0,0,8,2,0,594,0,0,0 +1720,2114,3912,-9,3914,-9,7,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1125.312044619168,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,8,2,0,594,0,0,0 +1720,2114,3913,-9,3914,-9,6,1,1,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-988.8137265722893,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,8,2,0,594,0,0,0 +1720,2114,3914,-9,-9,-9,1,1,0,37,2,1,4,0,2,-9,2,1,0,4,7.347473207878257,6.834941061552347,0,4,0,0,0,-9,0,-959.6224435653307,-9,0,1,-9,-9,-9,-9,3,1,2019,-9,0,30,12,23,0,15,1,12,-9,0,5.933483860658768,5.933483860658768,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.12,66.34999999999999,1,4,0,1,8,2,0,594,0,0,0 +1720,2114,3915,-9,3914,-9,5,1,1,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.927500838384,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,8,2,0,594,0,0,0 +1720,2115,3916,-9,3914,-9,3,1,1,18,2,1,4,1,2,-9,7,2,0,4,6.892898420428078,6.791470683236176,3.804375997475399,3,0,0,0,-9,0,-1030.440688245796,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,17,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.149424187025003,0,0,0,48,59,5,4,0,0,8,2,0,208,0,0,0 +1721,2116,3917,3918,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,3,8.5089379494207,8.15157267330223,0,2,0,-9,21,0,7,11.25408282339861,0,0,0,37,2,3,2,3,3,2019,2,2,16,6,35,35,15,1,6,2,0,15.64723474408957,15.64723474408957,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.68,49.13,6,3,0,0,6,3,1,698,0,0,0 +1721,2116,3918,3917,-9,-9,2,1,0,37,1,0,3,0,2,-9,7,2,0,3,0,0,0,2,0,-9,21,0,-7,-151.1159404107919,1,0,1,44,1,3,1,3,2,2019,3,1,6,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,3,0,0,6,3,1,698,0,0,0 +1721,2116,3919,-9,3918,3917,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-902.478376461828,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,6,3,1,698,0,0,0 +1721,2116,3920,-9,3918,3917,4,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.254787938542,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,6,3,1,698,0,0,0 +1721,2116,3921,-9,3918,3917,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.135312038431,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,6,3,1,698,0,0,0 +1722,2117,3922,3923,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,7.546047390039577,7.782072137622573,1,0,-9,6,0,0,-91.94337603092661,-9,0,0,65,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.501357944791007,7.620214475776544,0,0,51,47,5,1,0,0,7,4,1,775.5,0,0,0 +1722,2117,3923,3922,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,8.029457558704115,8.425144873281782,1,0,-9,6,0,0,10.59329827436927,0,0,0,65,3,3,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.505958686090356,7.995565173194458,13.69491581466231,3,53.93,49.4,5,1,0,0,7,4,1,775.5,0,0,0 +1723,2118,3924,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-985.4187524431658,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,1,0,0,1,1,1,196,0,0,0 +1723,2119,3925,-9,3924,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,4,7.935671250700945,8.06849902871007,0,3,0,0,0,-9,0,-1035.959975543219,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,37,37,15,1,0,-9,1,13.4550443196291,13.4550443196291,0,0,0,0,0,0,0,1,1,0,0,0,69.9319827016903,3,52.48,54.33,5,1,0,0,1,4,1,5381,0,0,0 +1723,2120,3926,-9,3924,-9,3,1,1,42,2,0,0,0,1,-9,2,1,0,3,8.547169832648159,8.514896633047226,0,3,0,0,0,-9,0,-1013.23571002162,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,42,43,15,1,2,-9,1,16.17119395479081,16.17119395479081,0,0,0,0,0,0,0,1,1,0,4.555151911162934,0,0,0,52,54.51,5,1,0,0,1,5,1,116,0,0,0 +1724,2121,3927,3929,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,2,8.71503106476416,8.536837414629225,0,2,0,-9,10,0,4,-98.15787171638944,0,0,0,37,2,5,1,3,2,2019,1,2,9,0,51,50,15,1,0,1,0,11.45666442135333,11.45666442135333,0,0,0,0,0,0,0,1,1,0,.282159515417417,0,0,0,46.91,51.8,6,1,0,0,11,4,1,643.5,0,0,0 +1724,2121,3928,-9,3929,3927,4,1,1,17,2,0,2,0,2,-9,7,2,0,5,6.388805716584797,6.651102469424766,0,2,0,0,0,-9,0,-1038.808380709833,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,42.41,7,1,0,0,11,4,1,643.5,0,0,0 +1724,2121,3929,3927,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,5,7.787141013193796,7.590698607272362,0,2,0,-9,10,0,-4,-1.065328386891163,0,0,1,41,2,2,1,2,3,2019,1,1,10,1,30,28,15,1,1,1,0,8.003535709026812,8.003535709026812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,5,1,0,1,11,4,1,643.5,0,0,0 +1724,2121,3930,-9,3929,3927,5,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.6875439582234,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,1,643.5,0,0,0 +1724,2122,3931,-9,3929,3927,3,1,1,20,2,0,2,0,2,-9,2,1,0,3,7.558697715041506,7.481745395576298,0,3,0,0,0,-9,0,-928.3315482337713,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,30,35,15,1,7,-9,1,9.312779442483725,9.312779442483725,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.27,57.3,4,1,0,0,11,3,1,316,0,0,0 +1725,2123,3932,3933,-9,-9,1,1,0,53,1,0,3,0,1,-9,2,1,0,4,9.838343943466674,9.628243272076494,0,2,0,-9,30,0,1,-21.12409190352371,0,0,0,52,1,3,1,-9,-9,2019,1,2,6,0,50,45,15,1,0,1,0,32.76633063312816,32.76633063312816,0,0,0,0,0,0,0,0,0,0,2.923397493632359,0,0,0,46.5,58.26,5,4,0,0,8,5,1,1626.333333333333,0,0,0 +1725,2123,3933,3932,-9,-9,2,1,1,52,1,0,3,0,1,-9,2,1,0,3,9.486079495494311,10.04275295348408,0,2,0,-9,11,0,-1,11.3475559696561,0,0,0,53,1,4,1,-9,-9,2019,1,1,12,2,87,52,15,1,2,1,0,21.0707222039801,21.0707222039801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,3,1,0,0,8,5,1,1626.333333333333,0,0,0 +1725,2123,3934,-9,3932,3933,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.4132037353619,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,5,0,0,8,5,1,1626.333333333333,0,0,0 +1726,2124,3935,3936,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.827246477725353,8.651114685480733,0,1,0,-9,10,0,0,-40.42514493474336,0,0,0,56,2,4,3,-9,-9,2019,2,2,7,0,40,46,15,1,0,3,0,17.22682512237905,17.22682512237905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,13,5,1,203.5,0,0,0 +1726,2124,3936,3935,-9,-9,2,1,0,56,1,0,0,0,2,-9,3,3,0,4,0,6.206187263049986,5.862580384218725,1,0,-9,32,0,0,8.770871888493419,0,0,0,56,2,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.963285011933411,0,0,54.77,55.87,6,1,1,0,13,5,1,203.5,0,0,0 +1726,2125,3937,-9,3936,3935,3,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.234873951181855,8.525126145279375,0,3,0,0,0,-9,0,-1021.538548531608,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,36,15,1,0,-9,1,9.815225855956276,9.815225855956276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,578,0,0,0 +1727,2126,3938,3939,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,5,8.855882538762319,8.046032832114292,0,2,0,-9,6,0,2,0,0,0,0,32,1,4,1,2,2,2019,1,2,7,0,38,43,15,1,0,1,0,14.71970858786144,14.71970858786144,0,0,0,0,0,0,0,1,1,0,4.890128874888807,0,0,0,54.69,57.47,6,1,0,0,13,5,1,699.3333333333334,0,0,0 +1727,2126,3939,3938,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,4,8.422705321810282,8.685667598613511,0,2,0,-9,6,0,-2,0,0,0,1,34,1,5,1,-9,-9,2019,1,1,9,0,38,38,15,1,0,1,0,17.75297756644498,17.75297756644498,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,52.62,6,1,0,0,13,5,1,699.3333333333334,0,0,0 +1727,2126,3940,-9,3939,3938,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.447313702916,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,699.3333333333334,0,0,0 +1728,2127,3941,3942,-9,-9,2,1,1,70,1,0,0,0,1,-9,97,3,0,5,0,8.102184370359733,7.86609357953356,1,0,-9,49,0,2,-50.65671141208247,0,0,0,68,2,2,3,2,2,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.282336067107146,7.61327222019911,0,0,58.76,52.91,7,1,0,0,9,4,1,764,0,0,0 +1728,2127,3942,3941,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,6.217885187248145,6.069323539115516,1,0,-9,49,0,-2,-42.10602167274995,0,0,0,70,1,5,3,2,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.450448609040869,6.119305401819253,7.253563935009554,3,61.99,34.03,6,1,0,0,9,4,1,764,0,0,0 +1729,2128,3943,3946,-9,-9,2,1,1,33,1,0,2,0,1,-9,2,1,0,4,8.619725808080055,8.713545469563547,0,2,0,-9,8,0,0,21.73703606730798,0,0,0,33,2,5,1,-9,-9,2019,1,1,11,0,48,56,15,1,0,1,0,17.69931179346828,17.69931179346828,0,0,0,0,0,0,0,1,1,0,6.786209404498735,0,0,0,54.2,57.49,6,1,0,0,13,4,1,474.5,0,0,0 +1729,2128,3944,-9,3946,3943,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.85304481051,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,474.5,0,0,0 +1729,2128,3945,-9,3946,3943,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.5229938214917,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,474.5,0,0,0 +1729,2128,3946,3943,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,5,8.299769147061644,8.111180087785241,0,2,0,-9,8,0,0,112.1840353005394,0,0,1,33,1,4,1,2,2,2019,1,2,21,9,27,24,15,1,9,1,0,16.50447161394846,16.50447161394846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,60.57,6,1,0,0,13,4,1,474.5,0,0,0 +1730,2129,3947,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,5.703930437468137,6.125970963772132,3,0,0,0,-9,0,-1054.632643459299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.68549474660008,0,0,45.12,45.4,6,1,0,0,2,2,1,4467,0,0,0 +1731,2130,3948,3951,-9,-9,1,1,0,34,1,1,2,0,2,-9,2,1,0,3,8.055659572115891,8.09249955382119,0,2,0,-9,6,0,-3,11.09343053466408,0,0,1,37,1,3,1,-9,-9,2019,1,2,7,0,20,22,15,1,0,1,0,13.49338832099214,13.49338832099214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,49.66,5,1,0,0,9,4,0,1107.75,0,0,0 +1731,2130,3949,-9,3948,3951,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.95078720471,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,2,0,0,9,4,0,1107.75,0,0,0 +1731,2130,3950,-9,3948,3951,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.4285305061589,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,9,4,0,1107.75,0,0,0 +1731,2130,3951,3948,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,3,8.567848237981813,8.794091246010861,0,2,0,-9,6,0,3,-196.6301580048612,0,0,0,34,2,3,1,-9,-9,2019,1,1,7,1,40,40,15,1,1,1,0,24.87749813911596,24.87749813911596,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,7,4,0,0,9,4,0,1107.75,0,0,0 +1732,2131,3952,3953,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,4,0,8.212788813449977,8.44800415428708,1,0,-9,51,0,4,50.37882166835739,0,0,0,69,3,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.043959646446125,8.050163016786497,0,0,46.96,51.34,6,1,0,0,12,3,1,377.5,0,0,0 +1732,2131,3953,3952,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,4.835801685361772,4.703642140185816,1,0,-9,51,0,-4,110.834658635054,0,0,0,73,1,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.539921541685594,0,0,56.18,53.85,7,1,0,0,12,3,1,377.5,0,0,0 +1733,2132,3954,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,3,7.970332724143874,7.717689248872315,0,3,0,0,0,-9,0,-1016.46382914775,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,10,40,15,1,0,-9,0,30.58951029381002,30.58951029381002,0,0,0,0,0,0,0,1,1,0,0,0,22.4197171179553,3,54.94,53.18,6,1,0,0,11,3,1,1142,0,0,0 +1733,2133,3955,-9,-9,-9,2,1,0,52,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-956.6496214177325,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.15,27.05,6,1,0,0,11,1,1,3380,0,0,0 +1734,2134,3956,3957,-9,-9,2,1,1,53,1,0,0,0,3,-9,1,1,0,5,7.902564649790347,7.963911502314488,0,1,0,-9,31,0,2,51.78251982961694,0,0,0,51,3,3,1,2,2,2019,1,1,5,0,80,70,15,1,0,1,0,3.633925179234187,3.633925179234187,0,0,0,0,0,0,0,0,0,0,1.478256531669254,0,3.411245168260383,3,62.39,56.71,7,1,0,0,10,4,1,744,0,0,0 +1734,2134,3957,3956,-9,-9,1,1,0,51,1,0,0,0,3,-9,1,1,0,3,8.017648110200499,7.876343779532141,0,1,0,-9,31,0,-2,78.21716277429033,0,0,0,53,3,5,1,3,2,2019,1,2,5,0,30,32,15,1,0,1,0,8.713070445997145,8.713070445997145,0,0,0,0,0,0,0,0,0,0,5.375931013546277,0,0,0,60.29,52.11,7,1,0,0,10,4,1,744,0,0,0 +1734,2135,3958,-9,3957,3956,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.008375437299819,7.834355487964368,0,3,0,0,0,-9,0,-1039.385679978847,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,45,15,1,1,-9,1,7.491114350495976,7.491114350495976,0,0,0,0,0,0,0,0,0,0,6.146703079360307,0,0,0,49,58,5,1,0,0,10,3,1,214,0,0,0 +1734,2136,3959,3960,3957,3956,4,1,1,26,1,0,0,0,2,-9,2,1,0,5,8.43996458430337,8.410903038425209,0,1,0,-9,5,0,3,-32.69197066311836,0,1,0,23,2,5,2,2,3,2019,2,5,5,0,45,48,15,1,0,2,0,10.38636420395211,10.38636420395211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,7,1,0,0,10,4,1,440,0,0,0 +1734,2136,3960,3959,-9,-9,5,1,0,23,1,0,0,0,2,-9,7,2,0,5,6.654028449390797,6.775281660677278,0,1,0,-9,5,0,-3,-33.1535034499806,1,1,1,26,2,5,1,-9,-9,2019,3,4,6,0,10,20,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,10,4,1,440,0,0,0 +1735,2137,3961,3962,-9,-9,2,1,1,73,1,0,0,0,1,-9,2,1,0,4,8.560254903658247,8.680016165934259,7.77290505362298,1,0,-9,6,0,19,-51.55723168178967,0,0,0,54,2,5,1,3,3,2019,1,1,8,0,32,33,15,1,0,1,0,15.36638229431591,15.36638229431591,0,0,0,0,0,0,0,0,0,0,6.585397365182313,7.929414193489825,0,0,51.77,58.57,5,1,0,0,9,5,1,652.5,0,0,0 +1735,2137,3962,3961,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,5,7.018278555526678,7.514271242100552,0,1,0,-9,6,0,-19,-23.72217175550309,0,0,0,73,1,4,1,-9,3,2019,1,2,12,0,75,70,15,1,0,1,0,2.260653055536491,2.260653055536491,0,0,0,0,0,0,0,0,0,0,4.332607623698715,0,0,0,52.13,57.22,6,1,0,0,9,5,1,652.5,0,0,0 +1736,2138,3963,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,1,1,0,2,5.659167214111108,5.909921427897973,0,4,0,0,0,-9,0,-954.0453174293029,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,16,16,15,1,5,-9,0,2.327824958994418,2.327824958994418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.5,51.38,2,2,0,1,6,2,0,2054,0,0,0 +1736,2138,3964,-9,3963,-9,4,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1012.082940343908,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,2,0,0,6,2,0,2054,0,0,0 +1737,2139,3965,-9,3967,3968,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1031.051951842601,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,62.31,6,1,0,0,11,4,1,1261.25,0,0,0 +1737,2139,3966,-9,3967,3968,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.341875291124,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,4,1,1261.25,0,0,0 +1737,2139,3967,3968,-9,-9,2,1,0,48,1,0,2,0,2,-9,1,1,0,4,6.208037809184231,6.330283829065063,0,2,0,-9,7,0,1,-77.15411625805517,0,0,0,47,2,4,1,2,2,2019,1,1,8,0,9,0,15,1,0,1,0,6.372913053377814,6.372913053377814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,53.85,6,1,0,0,11,4,1,1261.25,0,0,0 +1737,2139,3968,3967,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.940464526499934,8.776168015593132,0,2,0,-9,7,0,-1,61.66281015737122,-9,0,0,48,2,4,1,2,3,2019,1,2,12,0,40,0,15,1,0,1,0,24.06883859526358,24.06883859526358,0,0,0,0,0,0,0,1,1,0,4.873643570106692,0,0,0,57.16,56.15,6,1,0,0,11,4,1,1261.25,0,0,0 +1738,2140,3969,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,1,1,0,3,8.060725236578897,7.841812429781346,0,3,0,0,0,-9,0,-1054.917873799694,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,43,15,1,1,-9,0,7.599730938390046,7.599730938390046,0,0,0,0,0,0,0,0,0,0,2.851264028642337,0,0,0,41,56.99,5,1,0,0,2,4,1,757,0,0,0 +1739,2141,3970,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,2,9.312091630100904,9.188434933545636,5.823943627173739,3,0,0,0,-9,0,-941.119724777408,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,15,3,15,1,0,-9,0,65.05217771887018,65.05217771887018,0,0,0,0,0,0,0,1,1,0,0,6.780660425991363,0,0,56.2,40.63,5,1,0,0,5,5,1,497,0,0,0 +1739,2142,3971,-9,3970,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,5,8.315199780350383,8.867377756634024,0,3,0,0,0,-9,0,-1013.213030631378,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,45,60,15,1,1,-9,1,11.52471795204703,11.52471795204703,0,0,0,0,0,0,0,1,1,0,5.080364662951948,0,0,0,44.76,49.6,6,1,0,0,5,4,1,172,0,0,0 +1739,2143,3972,-9,3970,-9,3,1,0,19,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1084.763431775852,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,28,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.45,54.63,4,1,1,1,5,1,1,245,0,0,0 +1740,2144,3973,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,97,3,0,1,0,0,0,3,0,0,0,-9,0,-974.9744662996076,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.97059277726055,3,24.43,22.49,1,1,0,0,12,1,0,1746,0,0,0 +1741,2145,3974,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,2,1,0,2,6.703391467105821,6.911016499183521,0,3,0,0,0,-9,0,-1022.056205579176,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,15,0,15,1,12,-9,0,9.033721202912425,9.033721202912425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.73,38.88,3,1,0,0,13,2,0,718,0,0,0 +1742,2146,3975,3976,-9,-9,2,1,0,57,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,8,0,-11,70.92267330241077,0,0,0,68,3,4,3,3,3,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.85,49.73,5,1,0,0,7,2,1,310,0,0,0 +1742,2146,3976,3975,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,4,0,6.562894196971564,6.070393905094312,1,0,-9,8,0,11,-11.83397375782522,0,0,0,57,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.578335261901346,0,0,57.16,56.15,7,1,0,0,7,2,1,310,0,0,0 +1743,2147,3977,3979,-9,-9,1,1,1,52,1,0,1,0,1,-9,1,1,0,4,9.361118934236451,9.365021349882646,0,2,0,-9,10,0,2,-20.47613098160357,0,0,0,50,2,3,3,2,2,2019,2,2,9,1,50,55,15,1,1,3,0,41.85592692909146,41.85592692909146,0,0,0,0,0,0,0,0,0,0,2.869417145635226,0,0,0,54.2,57.49,6,1,0,0,5,5,1,1707.333333333333,0,0,0 +1743,2147,3978,-9,3979,3977,3,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-980.9240469948086,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,5,5,1,1707.333333333333,0,0,0 +1743,2147,3979,3977,-9,-9,2,1,0,50,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,10,0,-2,-6.64969694551943,0,0,0,52,1,4,1,2,2,2019,3,1,28,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.36431369933424,3,20.92,56.49,5,1,0,0,5,5,1,1707.333333333333,0,0,0 +1744,2148,3980,-9,3984,3981,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.85872214297,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,1180.2,0,0,0 +1744,2148,3981,3984,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,3,9.138806407569657,9.206527879469515,0,2,0,-9,28,0,0,-114.0821408308326,0,0,0,47,2,4,1,3,3,2019,1,1,16,5,45,45,15,1,5,1,0,19.39891570971033,19.39891570971033,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.78,48.15,6,1,0,0,12,4,1,1180.2,0,0,0 +1744,2148,3982,-9,3984,3981,4,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1033.707221739523,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,12,4,1,1180.2,0,0,0 +1744,2148,3983,-9,3984,3981,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.825021245427,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1180.2,0,0,0 +1744,2148,3984,3981,-9,-9,1,1,0,47,1,0,3,0,2,-9,2,1,0,4,8.264673114206685,8.31307693043698,0,2,0,-9,28,0,0,-69.70594536424512,0,0,0,47,1,3,1,3,3,2019,1,2,9,0,40,39,15,1,0,1,0,10.64222789323702,10.64222789323702,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.28,50.99,6,1,0,0,12,4,1,1180.2,0,0,0 +1745,2149,3985,-9,-9,-9,3,1,1,28,2,0,0,0,1,-9,1,1,0,5,9.511175728113132,9.809483701334367,0,3,0,0,0,-9,0,-1038.589012010944,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,42,0,15,1,0,-9,1,44.91891889411693,44.91891889411693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,3,0,0,5,5,1,253,0,0,0 +1746,2150,3986,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,4,3,0,2,0,8.158185821402881,7.945875529364743,3,0,0,0,-9,0,-950.8293569982835,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.639699359513266,8.150056660917421,40.51388062410304,0,46.03,18.67,4,4,0,0,8,4,1,246,0,0,0 +1746,2151,3987,-9,3986,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1061.143117640778,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,4,4,0,0,8,1,1,241,0,0,0 +1747,2152,3988,-9,3989,3990,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.680282697999,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,439.5,0,0,0 +1747,2152,3989,3990,-9,-9,1,1,0,34,1,1,2,0,2,-9,2,1,0,4,7.903936296131111,8.184214805189709,0,2,0,-9,6,0,0,68.67281485895677,0,0,1,34,1,4,1,2,2,2019,1,2,14,4,24,23,15,1,4,1,0,15.87252583906175,15.87252583906175,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.49,53,6,1,0,0,2,5,1,439.5,0,0,0 +1747,2152,3990,3989,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,4,9.31365577461294,9.369955329831882,0,2,0,-9,6,0,0,32.47654172472035,0,0,0,34,2,4,1,-9,-9,2019,1,1,8,0,44,57,15,1,0,1,0,33.43282533084823,33.43282533084823,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,5,1,0,0,2,5,1,439.5,0,0,0 +1747,2152,3991,-9,3989,3990,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1063.506047524302,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,5,1,439.5,0,0,0 +1748,2153,3992,3993,-9,-9,2,1,1,39,1,1,1,0,1,-9,2,1,0,4,8.591424269438672,8.386263112780217,0,2,0,-9,4,0,4,28.33195145078227,0,0,0,35,1,4,1,-9,-9,2019,1,1,9,1,40,42,15,1,1,1,0,12.39299535314347,12.39299535314347,0,0,0,0,0,0,0,1,1,0,3.034232257839136,0,0,0,38.57,64.48,6,1,0,0,13,5,1,548.3333333333334,0,0,0 +1748,2153,3993,3992,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,4,8.388507243959614,8.305806412713428,0,2,0,-9,4,0,-4,32.92146666832281,0,0,1,39,1,4,1,2,3,2019,1,2,19,7,16,16,15,1,7,1,0,31.68128066509671,31.68128066509671,0,0,0,0,0,0,0,1,1,0,2.088689131237985,0,0,0,44.83,57.81,6,1,0,0,13,5,1,548.3333333333334,0,0,0 +1748,2153,3994,-9,3993,3992,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.649844633109,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,13,5,1,548.3333333333334,0,0,0 +1749,2154,3995,3996,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,2,8.041733474928904,7.980062203147625,5.678293996729264,1,0,-9,30,0,5,-29.50793572399007,0,0,0,51,2,4,1,2,2,2019,1,2,5,0,30,30,15,1,0,1,0,11.6790819175367,11.6790819175367,0,0,0,0,0,0,0,1,1,0,.476550003833652,5.831687376579389,0,0,63.26,29.17,7,1,0,0,1,5,0,226,0,0,0 +1749,2154,3996,3995,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,8.564758518120678,8.752124519163678,0,1,0,-9,30,0,-5,40.10924406447612,0,0,0,56,1,2,1,2,-9,2019,1,1,11,0,37,38,15,1,0,1,0,17.0903268588003,17.0903268588003,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,48.43,6,1,0,0,1,5,0,226,0,0,0 +1750,2155,3997,3998,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,4,8.062812189518061,8.1280879251632,0,1,0,-9,2,0,0,-47.19936397944477,0,1,0,24,1,3,1,1,1,2019,1,2,9,0,48,17,15,1,0,1,0,8.026567240943182,8.026567240943182,0,0,0,0,0,0,0,0,0,0,5.069319260723776,0,0,0,51.77,58.57,6,1,0,0,10,4,0,431.5,0,0,0 +1750,2155,3998,3997,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,3,7.575117919566841,7.63844034288407,0,1,0,-9,2,0,0,23.64685505893339,0,1,1,24,2,4,1,-9,-9,2019,1,1,7,0,36,36,15,1,0,1,0,6.684042095524346,6.684042095524346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,6,1,0,0,10,4,0,431.5,0,0,0 +1750,2156,3999,-9,-9,-9,3,1,0,22,2,0,0,0,1,-9,2,1,0,3,7.871162793794605,7.739800895809029,5.729484199929412,3,0,-9,0,-9,0,-1125.132121108462,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,35,0,15,1,1,-9,0,7.919780505290537,7.919780505290537,0,0,0,0,0,0,0,0,0,0,6.021701561001079,0,0,0,44.09,57.1,3,1,0,1,10,3,0,428,0,0,0 +1751,2157,4000,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,2,8.429305820402231,8.401437285194872,0,3,0,0,0,-9,0,-859.4865901802021,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,37,15,1,0,-9,0,16.98729572805338,16.98729572805338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.22,41.57,5,1,0,0,5,4,1,476,0,0,0 +1751,2158,4001,-9,-9,-9,2,1,1,31,2,0,0,0,1,-9,2,1,0,3,7.916217141577616,7.854736407371307,0,3,0,0,0,-9,0,-1097.510237837821,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,39,41,15,1,0,-9,0,10.51367240598434,10.51367240598434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,47.92,5,1,0,0,5,4,1,1581,0,0,0 +1752,2159,4002,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-906.1946990387482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.182647476047767,0,0,0,28.05,40.32,4,1,0,0,11,1,1,503,0,0,0 +1753,2160,4003,-9,-9,-9,1,1,1,43,3,0,0,0,1,-9,2,1,0,5,8.73940680746429,8.856772276034533,0,3,0,0,0,-9,0,-1047.310560096807,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,38,15,1,0,-9,0,21.2319568449686,21.2319568449686,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,5,0,390,0,0,0 +1754,2161,4004,4005,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,4,7.126664283177495,8.040602730280229,6.998331988975981,1,0,-9,48,0,-2,-38.30961392542959,0,0,0,68,2,4,3,3,3,2019,2,2,12,0,24,48,15,1,0,4,0,8.288125436450557,8.288125436450557,0,0,0,0,0,0,0,1,1,0,2.506540570354111,7.258374874369246,0,0,57.85,47.51,6,1,0,0,4,3,1,631.5,0,0,0 +1754,2161,4005,4004,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,6.318387600529097,6.371287274614867,1,0,-9,48,0,2,-72.56490790690285,0,0,0,66,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.831938175133869,0,0,60.13,49.27,6,1,0,0,4,3,1,631.5,0,0,0 +1755,2162,4006,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-945.2241754019349,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,7,0,55,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.81,62.99,3,1,1,1,1,1,0,2151,0,0,0 +1756,2163,4007,4008,-9,-9,1,1,1,69,1,0,0,0,2,-9,1,1,0,2,8.540433569510624,8.728824315595784,7.127116425092148,1,0,-9,6,0,8,-63.55272249525,0,0,0,61,1,3,1,3,3,2019,1,2,8,0,30,35,15,1,0,1,0,20.34830178960463,20.34830178960463,0,0,0,0,0,0,0,1,1,0,7.041739378911391,7.506014802887972,0,0,57.58,36.13,1,1,0,0,8,5,1,1076,0,0,0 +1756,2163,4008,4007,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,3,5.413058454462007,6.196550568280128,5.380128304487086,1,0,-9,6,0,-8,-35.0777394812913,0,0,0,69,2,2,1,-9,-9,2019,1,1,10,0,0,21,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.631330706866073,5.4888149153726,0,0,41.85,52.41,6,1,0,0,8,5,1,1076,0,0,0 +1757,2164,4009,-9,-9,-9,1,1,0,55,3,0,1,0,2,-9,2,1,0,3,8.233972021965632,8.644875660319526,7.701176450579959,4,0,0,0,-9,0,-1010.700676991944,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,37,38,15,1,10,-9,0,11.44373578115335,11.44373578115335,0,0,0,0,0,0,0,1,1,0,6.974793038653441,6.675794929716933,0,0,40.4,46.19,3,1,0,0,2,4,1,1374,0,0,0 +1758,2165,4010,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-954.3665886492619,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,1,0,1,2,1,0,708,0,0,0 +1759,2166,4011,4013,-9,-9,1,1,1,52,1,0,2,0,2,-9,2,1,0,5,7.932757308866758,7.770733659599639,0,2,0,-9,7,0,2,-25.58383620908169,0,0,0,50,2,5,1,2,3,2019,1,2,6,0,35,35,15,1,0,1,0,8.603081494464812,8.603081494464812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,12,3,1,495,0,0,0 +1759,2166,4012,-9,4013,4011,5,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-833.1024257521467,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,12,3,1,495,0,0,0 +1759,2166,4013,4011,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,5,7.918628861364689,7.949846704783432,0,2,0,-9,7,0,-2,67.57818960013923,0,0,0,52,2,5,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,7.644138386696079,7.644138386696079,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.2,62.39,6,1,0,0,12,3,1,495,0,0,0 +1759,2166,4014,-9,4013,4011,4,1,1,16,2,0,2,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1046.354779247607,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.25,49.3,2,1,0,0,12,3,1,495,0,0,0 +1759,2167,4015,-9,4013,4011,3,1,1,19,2,0,2,0,2,0,7,2,0,4,6.959041037617233,6.579888472986673,0,3,0,0,0,-9,0,-985.8496646469532,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,12,2,1,2152,0,0,0 +1760,2168,4016,4017,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,6.074004678611134,5.807247056511686,1,0,-9,56,0,-1,-68.78876366644158,0,0,0,76,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.007276733960961,6.08632070142019,0,0,57.16,56.15,6,1,0,0,9,3,1,2528.5,0,0,0 +1760,2168,4017,4016,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.836760921034998,8.079185576308509,1,0,-9,56,0,1,-22.41810285472616,0,0,0,75,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.011975006609493,7.439676496468924,0,0,48.28,60.18,6,1,0,0,9,3,1,2528.5,0,0,0 +1761,2169,4018,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,7.271549678998281,7.332225917869537,3,0,0,0,-9,0,-1094.521495293814,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.959197398455823,0,0,54.96,53.17,6,1,0,0,13,2,1,988,0,0,0 +1762,2170,4019,-9,4020,4021,4,1,1,17,2,0,0,1,2,0,7,2,0,5,5.505249331007159,5.466398454451489,0,1,0,0,0,-9,0,-986.8573864227693,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,3,6,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,6,1,0,0,12,5,1,1171.666666666667,0,0,0 +1762,2170,4020,4021,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,1,8.298795157512101,8.733068034379743,0,1,0,-9,7,0,2,109.8508888424147,0,0,0,48,1,3,1,3,3,2019,1,2,26,11,50,48,15,1,11,1,0,12.09678772185551,12.09678772185551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,37.11,3,1,0,0,12,5,1,1171.666666666667,0,0,0 +1762,2170,4021,4020,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,3,9.0019018010872,9.222615578261104,0,1,0,-9,7,0,-2,-63.09391286445246,0,0,0,50,1,1,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,27.60215545781728,27.60215545781728,0,0,0,0,0,0,0,1,1,0,2.689018851097244,0,0,3,57.33,53.46,6,1,0,0,12,5,1,1171.666666666667,0,0,0 +1762,2171,4022,-9,4020,4021,3,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.837380859999294,7.852548578776077,0,3,0,0,0,-9,0,-1041.187657700958,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,15,15,1,0,-9,1,8.369419803233894,8.369419803233894,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,12,3,1,327,0,0,0 +1763,2172,4023,-9,4024,4025,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.681239237553,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,885.6,0,0,0 +1763,2172,4024,4025,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,4,8.145177965355174,8.080025883100225,0,2,0,-9,4,0,-4,-33.51545129989251,-9,0,1,41,2,3,1,-9,-9,2019,1,1,11,0,22,0,15,1,2,1,0,16.36562869574018,16.36562869574018,0,0,0,0,0,0,0,1,1,0,.6572058230871275,0,0,0,48,56,5,1,0,0,12,3,1,885.6,0,0,0 +1763,2172,4025,4024,-9,-9,1,1,1,41,1,0,3,0,2,-9,2,1,0,3,7.865269059884968,8.096992800977429,0,2,0,-9,4,0,4,106.3070227199992,0,0,0,37,2,4,1,2,2,2019,1,2,13,3,39,39,15,1,3,1,0,9.849531618295167,9.849531618295167,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,4,1,0,0,12,3,1,885.6,0,0,0 +1763,2172,4026,-9,4024,4025,3,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.094981940859,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,885.6,0,0,0 +1763,2172,4027,-9,4024,4025,4,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1139.138234139475,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,3,1,885.6,0,0,0 +1764,2173,4028,-9,4030,4029,2,1,0,23,2,0,0,0,1,-9,7,2,0,4,4.869865548609856,5.944482299898474,5.507898456447601,3,0,0,0,-9,0,-1028.6835674935,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,40,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.176803113691705,0,0,0,57.16,56.15,6,1,0,0,8,2,1,1127,0,0,0 +1764,2174,4029,4030,-9,-9,3,1,1,54,1,0,0,0,1,-9,2,1,0,4,9.485575001165095,9.295299744178669,0,1,0,-9,33,0,1,-112.9781532945985,0,0,0,53,2,3,1,2,2,2019,1,1,9,1,42,41,15,1,1,1,0,30.25529752467112,30.25529752467112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.84,49.17,6,1,0,0,8,5,1,1459.5,0,0,0 +1764,2174,4030,4029,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,3,6.659869458532236,8.246591182600168,7.725500635413489,1,0,-9,33,0,-1,-48.67256637739087,0,0,0,54,1,4,1,2,3,2019,1,3,7,0,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.748264614581724,0,0,3,54.8,45.15,6,1,0,0,8,5,1,1459.5,0,0,0 +1765,2175,4031,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,3,0,7.21505208414789,7.480434485695826,3,0,0,0,-9,0,-1044.750119180838,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.855044570921974,7.075030270713724,0,0,59.46,46.99,6,1,0,0,5,3,1,740,0,0,0 +1766,2176,4032,-9,-9,-9,1,1,0,28,2,0,1,0,2,-9,2,1,0,3,6.622883826595127,6.738479190186025,0,4,0,0,0,-9,0,-806.4553094298914,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,16,0,15,1,0,-9,0,5.533068373408843,5.533068373408843,0,0,0,0,0,0,0,1,0,1,0,0,1.464093055181556,3,57.33,53.46,7,1,0,0,2,2,0,5380,0,0,0 +1767,2177,4033,4034,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.517736449213264,8.096398576638302,0,1,0,-9,8,0,-3,-22.42276894403836,0,0,0,53,3,4,1,-9,-9,2019,1,1,12,0,37,27,15,1,0,1,0,6.879638681596663,6.879638681596663,0,0,0,0,0,0,0,0,0,0,.5884522096913226,0,5.234860554239344,3,28.8,62.45,5,1,0,0,12,4,0,1110.5,0,0,0 +1767,2177,4034,4033,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,4,8.041079689611394,8.211916003636688,0,1,0,-9,8,0,3,-53.65086466692436,0,0,0,50,2,4,1,2,3,2019,1,2,8,0,37,37,15,1,0,1,0,9.522599870606948,9.522599870606948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.44,51.82,6,1,0,0,12,4,0,1110.5,0,0,0 +1768,2178,4035,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,3,0,5.828707984002779,5.900765813978246,3,0,0,0,-9,0,-917.4620263530809,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,26,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.168045951236945,5.864357600076534,10.26579961480337,3,61.61,37.79,5,1,0,0,12,2,1,382,0,0,0 +1769,2179,4036,4037,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,8.782784411668199,8.685678618174943,0,1,0,-9,6,0,-1,32.0323878449251,0,0,1,45,1,5,1,1,3,2019,1,1,9,1,40,40,15,1,1,1,0,15.20170926638698,15.20170926638698,0,0,0,0,0,0,0,0,0,0,7.262575142940236,0,0,0,51.83,57.2,6,1,0,0,9,5,1,284.5,0,0,0 +1769,2179,4037,4036,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,5,8.863802921806659,8.945508270491565,0,1,0,-9,6,0,1,-136.4976487016393,0,0,0,44,2,4,1,1,1,2019,1,2,12,3,50,41,15,1,3,1,0,23.54754056595674,23.54754056595674,0,0,0,0,0,0,0,0,0,0,7.589970887869809,0,0,0,57.06,57.76,7,1,0,0,9,5,1,284.5,0,0,0 +1770,2180,4038,4039,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,2.125019561409603,1.884366982998613,1,0,-9,45,0,0,-87.97270286106605,0,0,0,68,1,4,3,2,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.000268985846987,2.061178400631519,0,0,54.38,41.24,6,1,0,0,9,4,1,411,0,0,0 +1770,2180,4039,4038,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,8.590395875821123,8.779829747930265,1,0,-9,45,0,0,136.8638015176734,0,0,0,68,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.833761713619234,8.555952455432731,0,0,48.87,58.55,6,1,0,0,9,4,1,411,0,0,0 +1770,2181,4040,-9,4038,4039,3,1,1,33,2,0,0,0,1,-9,2,1,0,3,7.947191030002463,7.89297667607007,0,3,0,0,0,-9,0,-1038.44015160055,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,4,45,37,15,1,4,-9,1,8.126937869892634,8.126937869892634,0,0,0,0,0,0,0,1,1,0,2.394925843710292,0,0,0,44.95,52.41,4,1,0,0,9,4,1,741,0,0,0 +1771,2182,4041,4042,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,7.558723476479977,7.168119122957685,0,1,0,-9,34,0,-4,8.567644687471427,0,0,0,57,2,4,1,2,-9,2019,1,2,11,1,29,28,15,1,1,1,0,6.850944249532342,6.850944249532342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,7,5,1,189,0,0,0 +1771,2182,4042,4041,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,4,9.231729706967833,9.611635479604505,8.507074020187828,1,0,-9,34,0,4,-34.32750261877376,0,0,0,53,2,5,1,2,2,2019,1,1,9,0,30,0,15,1,1,1,0,33.03596412405337,33.03596412405337,0,0,0,0,0,0,0,0,0,0,4.484189163087065,8.689373859758563,0,0,54,53,5,1,0,0,7,5,1,189,0,0,0 +1772,2183,4043,4044,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,9.056788553132737,8.988142556389457,0,1,0,-9,5,0,5,-52.53947545010286,0,0,0,47,2,4,1,-9,-9,2019,1,1,10,0,42,42,15,1,0,1,0,17.51880747294138,17.51880747294138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,334,0,0,0 +1772,2183,4044,4043,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.640705939972161,8.648591721189218,0,1,0,-9,5,0,-5,-139.6024836376808,0,0,0,52,2,4,1,3,3,2019,1,2,11,0,32,32,15,1,0,1,0,19.49479467236987,19.49479467236987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,6,1,0,0,4,5,1,334,0,0,0 +1773,2184,4045,4046,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,5,8.100190562511562,7.764561590001352,0,1,0,-9,29,0,0,-38.22497165394569,0,0,0,48,1,3,1,3,3,2019,1,2,6,0,30,32,15,1,0,1,0,10.8956897797672,10.8956897797672,0,0,0,0,0,0,0,0,0,0,2.238033103106404,0,0,0,57.06,57.76,7,1,0,0,10,4,1,385.5,0,0,0 +1773,2184,4046,4045,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,3,7.935163746066023,8.090358175884033,0,1,0,-9,29,0,0,-130.5015253273504,0,0,0,48,2,5,1,3,3,2019,1,1,9,0,60,40,15,1,0,1,0,8.152586639067174,8.152586639067174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.54,49.68,6,1,0,0,10,4,1,385.5,0,0,0 +1773,2185,4047,-9,4045,4046,3,1,0,20,2,0,0,0,2,-9,2,1,0,4,8.337635469308426,8.352271961722936,0,3,0,0,0,-9,0,-1080.808749691625,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,40,37,15,1,0,-9,1,11.17981795034666,11.17981795034666,0,0,0,0,0,0,0,0,0,0,1.088791728598293,0,0,0,54.2,57.49,6,1,0,0,10,5,1,315,0,0,0 +1774,2186,4048,4051,-9,-9,1,1,1,37,1,0,2,0,2,-9,97,3,0,4,0,0,0,2,0,-9,8,0,0,59.29025952111617,0,0,0,37,1,3,1,2,2,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.21,56.1,5,1,0,0,2,4,1,788,0,0,0 +1774,2186,4049,-9,4051,4048,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.5887678283575,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,788,0,0,0 +1774,2186,4050,-9,4051,4048,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.099336842817,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,788,0,0,0 +1774,2186,4051,4048,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,3,8.987946916376348,9.250170186538858,0,2,0,-9,8,0,0,6.038288459895573,0,0,1,37,2,4,3,2,2,2019,2,1,10,0,38,43,15,1,0,3,0,28.92289617358296,28.92289617358296,0,0,0,0,0,0,0,1,1,0,7.159725783382498,0,0,0,48.65,51.93,4,1,0,0,2,4,1,788,0,0,0 +1775,2187,4052,4053,-9,-9,1,1,0,52,1,0,0,0,1,-9,1,1,0,4,7.152863046428652,7.526578733885669,0,1,0,-9,31,0,-2,-24.9388662060462,0,0,0,54,3,4,1,-9,-9,2019,1,2,7,0,30,24,15,1,0,1,0,4.73597716472636,4.73597716472636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,4,1,0,0,9,5,1,443.5,0,0,0 +1775,2187,4053,4052,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,4,8.909145127811644,8.758295375980138,0,1,0,-9,34,0,2,2.226064307413432,0,0,0,52,1,4,1,2,3,2019,1,1,6,0,45,45,15,1,0,1,0,15.66896090753099,15.66896090753099,0,0,0,0,0,0,0,0,0,0,4.255311484989512,0,0,0,58.15,52.91,6,1,0,0,9,5,1,443.5,0,0,0 +1776,2188,4054,4055,-9,-9,1,1,1,58,1,0,0,0,3,-9,1,1,0,3,7.850752081091331,8.018337614591989,0,1,0,-9,10,0,1,-103.1116861382417,0,0,0,57,1,3,1,2,3,2019,1,2,7,0,40,40,15,1,0,1,0,9.830253048745304,9.830253048745304,0,0,0,0,0,0,0,0,0,0,1.805488462169605,0,0,0,47.72,51.1,6,1,0,0,9,3,1,1671,0,0,0 +1776,2188,4055,4054,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,3,3.76885389939472,4.008757499356122,0,1,0,-9,10,0,-1,74.35065852069667,0,0,0,58,3,3,1,2,2,2019,1,1,6,0,18,20,15,1,0,1,0,.2399908556796655,.2399908556796655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,7,1,0,0,9,3,1,1671,0,0,0 +1777,2189,4056,4057,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,5,0,6.217898502166183,6.183795553200262,1,0,-9,6,0,-2,28.42868905207913,0,0,0,62,1,3,3,2,2,2019,4,2,6,0,0,27,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.182848384863891,0,0,59.43,58.05,7,1,0,0,11,4,1,3195.5,0,0,0 +1777,2189,4057,4056,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,8.587440839604659,8.373803098479355,1,0,-9,6,0,2,81.42620462146368,0,0,0,60,2,5,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.050237809160089,8.442614721752662,0,0,42.86,48.04,6,1,0,0,11,4,1,3195.5,0,0,0 +1778,2190,4058,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-1096.629503132389,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.19217317396298,0,6.310061250202263,3,47.52,57.75,5,1,0,0,8,1,1,147,0,0,0 +1779,2191,4059,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-941.3629421596609,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.62,21.06,2,1,0,1,2,1,0,1556,0,0,0 +1780,2192,4060,4061,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,7.717476644049841,7.219483972346063,1,0,-9,46,0,2,-184.5094165073676,0,0,0,71,3,3,3,3,1,2019,4,1,7,2,0,0,15,4,2,4,0,0,0,1,0,3.386362525539047,0,0,0,0,1,1,0,2.851494108578492,7.885675603386148,0,0,51.02,42.73,5,1,0,0,2,4,1,475,0,0,0 +1780,2192,4061,4060,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,8.645561011620863,8.949711817566618,0,1,0,-9,46,0,-2,-50.06135478992088,0,0,0,73,3,3,3,2,2,2019,4,2,10,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.459586499954343,0,0,0,54.37,54.8,6,1,0,0,2,4,1,475,0,0,0 +1781,2193,4062,4063,-9,-9,1,1,0,47,1,0,0,0,2,-9,8,3,1,3,9.111480655816353,9.119415168925192,0,1,0,-9,6,0,2,-29.51701336062953,0,0,0,45,1,5,1,2,2,2019,3,2,21,9,0,36,15,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.81,48.01,5,1,0,0,12,5,1,404.5,0,0,0 +1781,2193,4063,4062,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,5,9.549242497147358,9.630433016905716,0,1,0,-9,6,0,-2,17.60015718340158,0,0,0,47,2,3,3,-9,-9,2019,2,1,10,1,48,50,15,1,1,3,0,35.64652705703634,35.64652705703634,0,0,0,0,0,0,0,0,0,0,3.403170053693791,0,0,0,55.09,55.87,7,1,0,0,12,5,1,404.5,0,0,0 +1782,2194,4064,4065,-9,-9,2,1,0,93,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,71,0,2,0,0,0,0,91,2,3,3,3,2,2019,4,1,12,0,0,0,15,4,2,4,0,0,0,1,0,3.001907023975853,0,0,0,0,1,1,0,0,0,0,0,51.07,26.57,6,1,0,0,9,1,1,590,0,0,0 +1782,2194,4065,4064,-9,-9,1,1,1,91,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,71,0,-2,0,0,0,0,93,3,2,3,3,3,2019,4,2,6,0,16,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,78.3513344106986,1,59.31,49.81,7,1,0,0,9,1,1,590,0,0,0 +1783,2195,4066,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,3,8.837580053697156,8.856127580037672,0,3,0,0,0,-9,0,-1017.520204527712,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,53,50,15,1,3,-9,0,14.07516031203301,14.07516031203301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,41.12,6,1,0,0,7,5,1,271,0,0,0 +1784,2196,4067,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1041.776435589547,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,61.73,28.07,7,1,0,0,11,1,0,283,0,0,0 +1785,2197,4068,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-994.7452412758323,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.4076129766034135,0,0,0,34.22,20.89,4,1,0,0,1,1,0,462,0,0,0 +1786,2198,4069,-9,4071,4070,5,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.450700865311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,427.75,0,0,0 +1786,2198,4070,4071,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.787195699925599,8.653933555836831,0,2,0,-9,11,0,2,-11.15362192295417,0,0,0,45,2,3,1,-9,-9,2019,1,1,12,1,46,46,15,1,1,1,0,16.81645366183534,16.81645366183534,0,0,0,0,0,0,0,1,1,0,3.786713981988879,0,0,0,41.23,58.08,5,1,0,0,4,4,1,427.75,0,0,0 +1786,2198,4071,4070,-9,-9,1,1,0,45,1,0,2,0,2,-9,1,1,0,3,6.832106663076794,6.682660827902168,0,2,0,-9,22,0,-2,-45.35869851954448,0,0,0,47,2,4,1,3,3,2019,1,2,10,1,16,16,15,1,1,1,0,6.462220870336681,6.462220870336681,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.66,44.53,6,1,0,0,4,4,1,427.75,0,0,0 +1786,2198,4072,-9,4071,4070,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.399409997112,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,427.75,0,0,0 +1786,2199,4073,-9,4071,4070,3,1,0,18,2,0,2,0,2,-9,2,1,0,4,6.621904781113853,6.306081317606923,0,3,0,0,0,-9,0,-1058.917556367739,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,3,15,0,15,1,3,-9,1,5.764978554036452,5.764978554036452,0,0,0,0,0,0,0,1,1,0,1.877389697004107,0,0,0,38.75,55.1,6,1,0,0,4,2,1,158,0,0,0 +1787,2200,4074,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,2,0,5.300490489903813,5.233855178664874,3,0,0,0,-9,0,-1052.476164561332,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.038871700147284,0,0,47,35,6,1,0,0,1,2,1,716,0,0,0 +1788,2201,4075,4076,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,4,9.183533044822166,8.943115931088725,0,1,0,-9,7,0,0,-94.77216440747327,0,0,0,55,2,1,1,-9,-9,2019,1,1,10,0,45,40,15,1,0,1,0,28.99479512150221,28.99479512150221,0,0,0,0,0,0,0,0,0,0,0,0,69.24964893695665,2,47.3,53.21,6,1,0,0,12,5,0,233,0,0,0 +1788,2201,4076,4075,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,1,7.575697042247646,7.732280767169407,0,1,0,-9,7,0,0,-28.33116145450198,0,0,0,55,2,4,1,2,2,2019,1,2,20,8,28,27,15,1,8,1,0,8.582501045463587,8.582501045463587,0,0,0,0,0,0,0,0,0,0,0,0,79.54105728226601,3,41.88,30.96,5,1,0,0,12,5,0,233,0,0,0 +1788,2202,4077,-9,4076,4075,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.784584757243254,8.108315047723332,0,3,0,-9,0,-9,0,-1032.21974858849,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,0,15,1,1,-9,1,7.273585833390382,7.273585833390382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,12,3,0,249,0,0,0 +1789,2203,4078,4079,-9,-9,1,1,1,26,1,0,0,0,1,1,2,1,0,5,8.484812687516145,8.65378729065633,0,1,0,-9,5,0,-1,165.0590618005189,-9,1,0,27,1,5,1,2,2,2019,1,2,8,1,37,0,15,1,1,1,0,13.37099476141085,13.37099476141085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,7,1,0,0,12,5,0,605.5,0,0,0 +1789,2203,4079,4078,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,5,8.20427608059671,8.235191094412563,0,1,0,-9,5,0,1,-20.64609555980342,0,1,1,26,1,5,1,-9,-9,2019,1,1,15,4,45,38,15,1,4,1,0,12.82310216447795,12.82310216447795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,61.75,6,1,0,0,12,5,0,605.5,0,0,0 +1790,2204,4080,4081,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,5,8.480252320411758,8.283553087562549,0,2,0,-9,16,0,3,117.8780762218514,0,0,0,50,3,3,1,2,2,2019,1,2,7,0,49,40,15,1,0,1,0,13.19218493744844,13.19218493744844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,59.91,6,1,0,0,13,4,1,387,0,0,0 +1790,2204,4081,4080,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,3,7.780984651787944,7.569199029299416,0,2,0,-9,16,0,-3,-24.64038724624469,0,0,0,53,2,5,1,2,2,2019,1,1,9,0,20,26,15,1,0,1,0,13.09061294343972,13.09061294343972,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,7,1,0,0,13,4,1,387,0,0,0 +1790,2204,4082,-9,4081,4080,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.1291663038506,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,4,1,387,0,0,0 +1791,2205,4083,-9,4084,-9,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1056.955750026897,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,1009.25,0,0,0 +1791,2205,4084,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-945.5808742668072,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85900075983845,3,59.54,11.06,4,1,0,0,9,1,0,1009.25,0,0,0 +1791,2205,4085,-9,4084,-9,5,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-992.7806352528194,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,1009.25,0,0,0 +1791,2205,4086,-9,4084,-9,3,1,1,16,2,0,2,0,3,-9,2,2,0,3,5.012051660697274,5.251142090696463,0,4,0,0,0,-9,0,-967.9761165917758,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.72487330475102,3,46.08,57.2,4,1,0,0,9,1,0,1009.25,0,0,0 +1791,2206,4087,-9,4084,-9,2,1,1,22,2,0,2,0,2,-9,2,1,0,3,8.032328696301084,8.021690402935159,0,3,0,0,0,-9,0,-920.4864033776798,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,36,50,15,1,0,-9,1,9.619286982561391,9.619286982561391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,5,1,0,0,9,4,0,789,0,0,0 +1792,2207,4088,4089,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,7,0,0,0,0,62,3,3,3,2,2,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.9,27.58,4,1,0,0,12,1,1,507,0,0,0 +1792,2207,4089,4088,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-7,0,0,0,0,69,2,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.55294222086314,1,56.35,51.16,6,1,0,0,12,1,1,507,0,0,0 +1793,2208,4090,4091,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,40,0,-3,-52.83086195629836,0,0,0,63,1,5,1,1,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.151512747219428,0,0,0,55.68,54.24,6,1,0,0,9,5,1,1317.5,0,0,0 +1793,2208,4091,4090,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,5,9.35598544502948,9.582045484586573,8.674868096569217,1,0,-9,40,0,3,100.4633564196748,0,0,0,60,1,5,3,2,2,2019,2,1,6,0,20,0,15,1,0,4,0,73.18539756751017,73.18539756751017,0,0,0,0,0,0,0,0,0,0,9.310173013045317,8.901554837064218,0,0,57.06,57.76,7,1,0,0,9,5,1,1317.5,0,0,0 +1794,2209,4092,4093,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,4,7.470212376594715,7.512408610773818,0,2,0,-9,13,0,1,30.86222617917603,0,0,1,42,1,4,1,2,1,2019,1,1,11,0,25,0,15,1,0,1,0,7.483658462050284,7.483658462050284,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.47,41.3,6,1,0,0,2,4,0,1083,0,0,0 +1794,2209,4093,4092,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,8.830758209013482,8.754315622665299,0,2,0,-9,13,0,-1,17.99522786637688,0,0,0,43,1,4,1,2,2,2019,1,2,12,1,38,38,15,1,1,1,0,20.67824567513648,20.67824567513648,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,4,1,0,0,2,4,0,1083,0,0,0 +1795,2210,4094,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,3,8.614847716458348,8.806918227555428,5.634009748483307,3,0,0,0,-9,0,-989.6094876765029,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,39,35,15,1,0,-9,0,15.20736569650952,15.20736569650952,0,0,0,0,0,0,0,0,0,0,0,5.889752840151473,0,0,51.42,48.12,6,3,0,0,8,5,1,314,0,0,0 +1796,2211,4095,4096,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,62,0,-3,37.63458175923522,0,0,0,85,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.641858755755143,0,0,0,52.37,56.93,6,1,0,0,6,2,1,437,0,0,0 +1796,2211,4096,4095,-9,-9,1,1,1,85,1,0,0,0,1,-9,4,3,0,3,0,7.100912735642389,7.243553407678195,1,0,-9,62,0,3,-40.68129948438441,0,0,0,82,3,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.817321570941395,6.86839720727794,0,0,56.5,48.33,6,1,0,0,6,2,1,437,0,0,0 +1797,2212,4097,4098,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,2,0,6.272192003120264,6.486796453255314,1,0,-9,53,0,9,61.34969252308348,0,0,0,72,3,3,1,3,3,2019,3,1,11,1,0,40,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.268491339704988,6.148441187758477,0,0,51.49,24.48,4,1,0,0,2,2,1,3588,0,0,0 +1797,2212,4098,4097,-9,-9,1,1,0,72,1,0,0,0,3,-9,2,1,0,3,7.057972498362763,6.977495763721057,2.999006833876451,1,0,-9,53,0,0,-111.4516182785164,0,0,0,81,2,2,3,3,3,2019,2,2,12,1,40,40,15,1,1,4,0,3.339809018879324,3.339809018879324,0,0,0,0,0,0,0,1,1,0,3.091431230842811,3.003222333194107,18.07325090427109,1,52.99,51.28,5,1,0,0,2,2,1,3588,0,0,0 +1798,2213,4099,-9,4100,4102,3,1,0,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.5913536354323,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,731.75,0,0,0 +1798,2213,4100,4102,-9,-9,1,1,0,42,1,1,2,0,2,-9,2,1,0,3,8.504697370903747,8.122860001687522,0,2,0,-9,7,0,3,38.4455473275006,0,0,1,39,1,3,3,2,2,2019,2,2,14,3,35,28,15,1,3,3,0,14.88072897484684,14.88072897484684,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,53.68,3,1,0,1,1,3,1,731.75,0,0,0 +1798,2213,4101,-9,4100,4102,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.455060114617,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,3,1,731.75,0,0,0 +1798,2213,4102,4100,-9,-9,2,1,1,39,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-3,-30.71239303000571,0,0,0,42,2,3,1,2,-9,2019,3,1,19,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,5,1,0,1,1,3,1,731.75,0,0,0 +1799,2214,4103,4104,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,4,8.998795352721181,8.599947752868434,0,2,0,-9,6,0,2,-142.7107398873986,0,0,1,34,2,4,1,2,3,2019,1,2,13,2,13,0,15,1,2,1,0,55.61520382968992,55.61520382968992,0,0,0,0,0,0,0,1,1,0,1.45612764995021,0,0,0,30.08,59.22,6,1,0,0,2,5,1,1413,0,0,0 +1799,2214,4104,4103,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,4,8.485233131543559,8.268466246112428,0,2,0,-9,6,0,-2,-22.5535123727724,0,0,0,36,1,4,1,-9,-9,2019,1,1,10,2,3,2,15,1,2,1,0,171.2145470256496,171.2145470256496,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.22,61.48,5,1,0,0,2,5,1,1413,0,0,0 +1799,2214,4105,-9,4103,4104,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.836138031515,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,5,1,1413,0,0,0 +1800,2215,4106,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-971.2427595255878,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,26,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.393362125363051,0,0,3,49.04,55.86,5,1,1,1,8,1,1,126,0,0,0 +1801,2216,4107,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,8.349653526063872,8.507470329206349,0,3,0,0,0,-9,0,-1037.435627319678,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,36,65,15,1,0,-9,0,19.55073920904022,19.55073920904022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,6,4,0,0,9,5,0,963,0,0,0 +1802,2217,4108,4109,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,6.815672745611582,6.785957888061589,1,0,-9,33,0,16,26.87374103371989,0,0,0,57,2,4,1,1,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7688444092449304,7.205848868996479,0,0,57.16,56.15,6,1,0,0,4,4,1,337,0,0,0 +1802,2217,4109,4108,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.874693628064974,8.191740702771723,7.504097763410393,1,0,-9,35,0,-16,125.605786146153,0,0,0,73,3,4,3,2,2,2019,2,2,7,0,20,21,15,1,0,4,0,14.67694592891963,14.67694592891963,0,0,0,0,0,0,0,1,1,0,0,7.124489588921231,0,0,57.16,56.15,6,1,0,0,4,4,1,337,0,0,0 +1803,2218,4110,4111,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,3,8.032044131313206,7.984759092199607,0,1,0,-9,34,0,-1,-31.666974922525,0,0,0,58,3,3,1,3,2,2019,1,2,10,0,50,48,15,1,0,1,0,6.386082096248611,6.386082096248611,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.06,41.38,6,3,0,0,8,4,1,1976,0,0,0 +1803,2218,4111,4110,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,3,7.577939129739521,7.539363431640242,0,1,0,-9,34,0,1,-65.56055445120015,0,0,0,57,3,3,1,3,2,2019,1,1,9,0,28,25,15,1,0,1,0,9.008419680118005,9.008419680118005,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.03,44.81,5,3,0,0,8,4,1,1976,0,0,0 +1803,2219,4112,-9,4111,4110,3,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.503751844305519,7.678486075909777,0,3,0,0,0,-9,0,-1028.393233726544,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,4,30,43,15,1,4,-9,1,6.149123557864703,6.149123557864703,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,2,3,0,0,8,3,1,123,0,0,0 +1803,2220,4113,-9,4111,4110,4,1,0,18,2,0,0,1,2,0,7,2,0,3,6.752914404487639,6.930711645625545,0,3,0,0,0,-9,0,-1149.638428965093,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,4,0,22,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,3,0,0,8,2,1,1757,0,0,0 +1804,2221,4114,-9,4116,4117,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.437024935749,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,1,0,385,0,0,0 +1804,2221,4115,-9,4116,4117,2,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-853.7037522563913,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,1,0,385,0,0,0 +1804,2221,4116,4117,-9,-9,1,1,0,44,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-5,0,0,0,1,49,3,2,3,-9,-9,2019,4,3,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,40.86,4,1,0,0,9,1,0,385,0,0,0 +1804,2221,4117,4116,-9,-9,3,1,1,49,1,0,2,0,3,-9,3,3,0,2,0,0,0,2,0,-9,3,0,5,0,0,0,0,44,3,4,3,-9,-9,2019,4,1,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.36,51.91,2,1,1,0,9,1,0,385,0,0,0 +1805,2222,4118,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,4,3,0,5,0,7.845147452667172,7.760857161432823,3,0,0,0,-9,0,-1022.728511806197,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.083892361521198,7.594339555605956,0,0,57.06,57.76,6,1,0,0,8,4,1,677,0,0,0 +1806,2223,4119,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,3,0,8.252516825513821,8.375769946768477,3,0,-9,0,1,0,-978.7801666325214,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.781129543593245,7.832991238270956,0,0,43.01,53.24,6,1,0,0,5,4,1,148,0,0,0 +1807,2224,4120,-9,4121,-9,2,1,0,20,2,0,1,0,2,1,2,1,0,3,7.757691834008418,7.663353088112571,0,3,0,0,0,-9,0,-934.6510871889097,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,44,0,15,1,0,-9,1,6.166513863661815,6.166513863661815,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.68,53.97,6,1,0,0,12,3,1,406,0,0,0 +1807,2225,4121,4122,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,5,8.303709122786938,8.667379172006955,6.812659030608677,2,0,1,1,-9,-2,137.4310157893587,0,0,0,55,2,4,1,2,2,2019,1,4,7,0,36,37,15,1,0,1,0,13.48970536310266,13.48970536310266,0,0,0,0,0,0,0,1,1,0,6.883621131830429,0,0,0,57.06,57.76,6,1,0,0,12,5,1,1355,0,0,0 +1807,2225,4122,4121,-9,-9,4,1,1,55,1,0,1,0,2,-9,2,1,0,4,9.062352912962389,9.035168714049881,0,2,0,-9,1,-9,2,-96.51502442232379,-9,0,0,53,2,5,1,-9,-9,2019,1,1,16,4,37,0,15,1,4,1,0,27.54502273584355,27.54502273584355,0,0,0,0,0,0,0,1,1,0,2.137531226859604,0,0,0,48.81,59.91,5,1,0,1,12,5,1,1355,0,0,0 +1807,2225,4123,-9,4121,-9,3,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1042.771077453698,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,12,5,1,1355,0,0,0 +1808,2226,4124,-9,4125,4126,2,1,1,19,2,0,0,0,2,1,1,1,0,4,8.007754426539911,8.229822579976185,0,3,0,0,0,-9,0,-923.0600252645789,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,84,0,15,1,0,-9,1,4.95519815712358,4.95519815712358,0,0,0,0,0,0,0,1,1,0,4.286532917327187,0,0,0,52,37.76,6,1,0,0,4,4,1,478,0,0,0 +1808,2227,4125,4126,-9,-9,1,1,0,47,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,2,0,-4,58.76011012934515,0,0,0,51,2,3,1,-9,-9,2019,3,3,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.426180735297022,0,0,0,58.55,37.91,6,1,0,0,4,4,1,1414.5,0,0,0 +1808,2227,4126,4125,-9,-9,3,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.869801915984342,8.846585420647351,0,1,0,-9,2,0,4,-69.25036341804939,0,0,0,47,2,3,3,-9,-9,2019,2,1,8,0,60,48,15,1,0,3,0,10.079757018029,10.079757018029,0,0,0,0,0,0,0,1,1,0,0,0,7.590523362081992,1,60.29,52.11,7,1,0,0,4,4,1,1414.5,0,0,0 +1809,2228,4127,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,4,0,5.156444341924677,5.237504630882312,3,0,0,0,-9,0,-1067.776662681187,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.398233792160606,5.694744990903608,0,0,56.72,49.75,6,1,0,0,5,2,0,249,0,0,0 +1810,2229,4128,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-957.7678915879444,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,41.42,5,3,0,0,8,1,1,1724,0,0,0 +1811,2230,4129,-9,-9,-9,1,1,0,37,2,0,2,0,3,-9,2,1,0,4,6.733747315507287,6.729415816984684,0,4,0,0,0,-9,0,-1148.603009460449,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,18,21,15,1,0,-9,0,6.511970021663632,6.511970021663632,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,2,1,0,1,5,2,0,614,0,0,0 +1812,2231,4130,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,3,3,0,4,6.392443755704027,6.130912029324529,0,3,0,0,0,-9,0,-984.2469587922238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.49,57.57,3,4,1,0,6,2,0,408,0,0,0 +1813,2232,4131,4132,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,6.852721303313737,6.94035472750913,1,0,-9,50,0,1,-14.83285719817886,0,0,0,69,1,4,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.425241953549727,6.812515582716847,0,0,61.43,43.34,6,1,0,0,6,4,1,979,0,0,0 +1813,2232,4132,4131,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,7.947641327931533,8.425500016239431,1,0,-9,50,0,-1,67.92589088098353,0,0,0,70,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.659957658246866,8.352217124297244,0,0,59.26,51.02,7,1,0,0,6,4,1,979,0,0,0 +1814,2233,4133,4134,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.840403171062669,7.870236402450136,0,1,0,-9,9,0,-12,-12.11358877926629,0,0,0,61,2,5,1,2,3,2019,1,1,6,0,28,28,15,1,0,1,0,10.64600506320156,10.64600506320156,0,0,0,0,0,0,0,0,0,0,7.202196023613308,0,0,0,57.16,56.15,7,1,0,0,8,5,1,593,0,0,0 +1814,2233,4134,4133,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,5,9.428504531915287,9.246896171275599,0,1,0,-9,9,0,12,-72.99355133089688,0,0,0,49,2,4,1,2,2,2019,1,2,7,0,53,49,15,1,0,1,0,19.5224155752761,19.5224155752761,0,0,0,0,0,0,0,0,0,0,8.385593568773142,0,0,0,57.06,57.76,7,1,0,0,8,5,1,593,0,0,0 +1815,2234,4135,4137,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,4,9.054354119234088,9.209268360679776,0,2,0,-9,7,0,0,-79.22696064919954,0,0,1,42,1,4,1,2,2,2019,1,1,10,0,58,63,15,1,0,1,0,18.80337881770188,18.80337881770188,0,0,0,0,0,0,0,1,1,0,5.196875178912291,0,5.59407283245627,3,51.83,57.2,6,1,0,0,10,5,1,517,0,0,0 +1815,2234,4136,-9,4135,4137,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.537945877889,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,5,1,517,0,0,0 +1815,2234,4137,4135,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,9.022283404496706,9.278730322140976,0,2,0,-9,7,0,0,-28.67855651896206,0,0,0,42,1,4,1,1,2,2019,1,2,5,0,45,46,15,1,0,1,0,21.62534905096198,21.62534905096198,0,0,0,0,0,0,0,1,1,0,6.114207107902585,0,0,0,56.18,45.82,6,1,0,0,10,5,1,517,0,0,0 +1816,2235,4138,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,4,8.481166298236362,8.427466920121805,0,3,0,-9,0,-9,0,-1056.053479009771,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,37,0,15,1,0,-9,0,14.52860046889341,14.52860046889341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,5,1,0,0,13,4,1,558,0,0,0 +1817,2236,4139,4140,-9,-9,2,1,1,35,1,0,2,0,2,-9,1,1,0,3,8.876772400013838,8.751092638438861,0,2,0,-9,7,0,7,-56.53570980753864,0,0,0,28,2,3,1,-9,-9,2019,1,1,2,0,40,42,15,1,0,1,0,18.90847429300496,18.90847429300496,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,7,5,1,810.25,0,0,0 +1817,2236,4140,4139,-9,-9,1,1,0,28,1,0,2,0,2,-9,2,1,0,3,8.374127417081306,8.138937890399928,0,2,0,-9,7,0,-7,-59.83222094859166,0,1,1,35,2,3,1,2,-9,2019,1,2,7,0,39,40,15,1,0,1,0,14.88926054046575,14.88926054046575,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,7,1,0,0,7,5,1,810.25,0,0,0 +1817,2236,4141,-9,4140,4139,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.5384967536078,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,5,1,810.25,0,0,0 +1817,2236,4142,-9,4140,4139,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1102.35349699036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,810.25,0,0,0 +1818,2237,4143,4144,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.80332628577045,6.978393633699736,1,0,-9,10,0,-1,7.714748003372483,0,0,0,64,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.524726255422315,0,0,55.96,49.93,7,1,0,0,9,5,1,561.5,0,0,0 +1818,2237,4144,4143,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,9.320657303431089,9.350680101335529,0,1,0,-9,10,0,1,-19.41022910719666,0,0,0,63,2,3,3,3,2,2019,2,2,8,0,42,9,15,1,0,4,0,31.57310140865737,31.57310140865737,0,0,0,0,0,0,0,0,0,0,2.800937873422426,0,0,0,51.77,58.57,6,1,0,0,9,5,1,561.5,0,0,0 +1819,2238,4145,4146,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,6.809757666752397,7.09954150576265,1,0,-9,45,0,2,-28.2764274086156,0,0,0,77,3,3,3,-9,2,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.346589784166522,7.289586020885183,0,0,55,45,6,1,0,0,6,2,1,467.5,0,0,0 +1819,2238,4146,4145,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-2,43.24303598446229,0,0,0,79,3,3,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,128.1022384620116,1,55.96,41.7,4,1,0,0,6,2,1,467.5,0,0,0 +1820,2239,4147,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-985.7657751186354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.02,37.37,6,1,0,0,13,1,0,498,0,0,0 +1821,2240,4148,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1044.836587277668,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5409340825047005,0,0,0,58.32,50.22,7,1,0,0,4,1,1,1663,0,0,0 +1822,2241,4149,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-937.6192256478053,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.47214701863486,3,46.98,22.01,4,1,0,1,11,1,0,430,0,0,0 +1823,2242,4150,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,2,7.725661749685755,7.853180403868185,0,3,0,0,0,-9,0,-1221.736535137541,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,40,40,15,1,0,-9,0,8.214764998713305,8.214764998713305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.52,42.41,6,1,0,0,2,3,0,569,0,0,0 +1824,2243,4151,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,8,3,1,5,0,0,0,3,0,0,0,-9,0,-1030.961130262202,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.14,38.8,7,1,0,0,8,1,0,1170,0,0,0 +1825,2244,4152,4153,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.865310406891393,6.816755310804042,1,0,-9,10,0,-3,11.91743350909782,0,0,0,69,2,3,1,3,3,2019,3,2,11,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.216620817230829,7.028269037777939,0,0,57.09,46.7,4,1,0,0,5,4,0,610.5,0,0,0 +1825,2244,4153,4152,-9,-9,2,1,1,69,1,0,0,0,2,-9,1,1,0,3,8.255629973972978,8.11056406566221,0,1,0,-9,10,0,3,101.5371257584005,-9,0,0,66,2,3,3,-9,-9,2019,2,1,10,0,80,0,15,1,1,4,0,4.427189308151594,4.427189308151594,0,0,0,0,0,0,0,1,1,0,7.273496094097836,0,0,0,52,48,5,1,0,0,5,4,0,610.5,0,0,0 +1826,2245,4154,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,3,8.378998932704075,8.21064997073605,0,3,0,0,0,-9,0,-944.120140059094,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,9,37,37,15,1,9,-9,0,14.04137935837194,14.04137935837194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.95,59.17,6,1,0,0,12,4,1,126,0,0,0 +1827,2246,4155,4157,-9,-9,1,1,0,45,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,24,-9,-2,96.81654766723021,-9,0,0,47,3,4,1,3,3,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.5110917194470613,0,0,0,43.7,27.62,6,3,0,0,4,2,1,2004.666666666667,0,0,0 +1827,2246,4156,-9,4155,4157,5,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1051.00170556377,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,4,2,1,2004.666666666667,0,0,0 +1827,2246,4157,4155,-9,-9,2,1,1,47,1,0,1,0,3,-9,2,1,0,4,7.189235561727648,7.107975926817285,0,2,0,-9,24,-9,2,-4.673568641540917,-9,0,0,45,3,2,3,3,2,2019,2,1,18,6,0,0,15,1,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.78,46.92,7,3,0,0,4,2,1,2004.666666666667,0,0,0 +1827,2247,4158,-9,4155,4157,3,1,1,23,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-1059.064380386897,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,50.05,7,3,0,0,4,1,1,993,0,0,0 +1827,2248,4159,-9,4155,4157,4,1,1,19,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-899.2135773165065,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.96,49.25,7,3,0,0,4,1,1,291,0,0,0 +1828,2249,4160,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,2,7.700930026860266,7.444426084814448,0,3,0,0,0,-9,0,-997.3346229290361,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,39,40,15,1,0,-9,0,4.805774881544127,4.805774881544127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.23,29.63,4,1,0,0,4,3,0,239,0,0,0 +1829,2250,4161,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-979.1261082909909,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.18,19.54,4,1,0,1,12,1,0,3409,0,0,0 +1830,2251,4162,4163,-9,-9,2,1,1,36,1,1,2,0,2,-9,2,1,0,4,8.161108279101924,8.464737659178631,0,2,0,-9,6,0,1,30.46702350675184,0,0,0,35,2,4,1,-9,-9,2019,1,1,10,0,45,45,15,1,1,1,0,11.69313175629711,11.69313175629711,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,3,0,536,0,0,0 +1830,2251,4163,4162,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,4,6.739851511026304,6.735181211289184,0,2,0,-9,6,0,-1,45.84220965104956,0,0,1,36,2,4,1,2,2,2019,1,2,9,0,21,0,15,1,0,1,0,5.580844573976431,5.580844573976431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.06,58.64,5,1,0,0,7,3,0,536,0,0,0 +1830,2251,4164,-9,4163,4162,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.171375485859,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,0,536,0,0,0 +1830,2251,4165,-9,4163,4162,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.9076841342963,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,0,536,0,0,0 +1831,2252,4166,4167,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,49.36403096038837,0,0,0,77,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,6.08769350850671,0,0,0,0,1,1,0,0,0,0,0,52,46,6,1,0,0,12,2,1,333.5,0,0,0 +1831,2252,4167,4166,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.461788711981351,7.457607918745778,1,0,-9,6,0,1,31.9719995311027,0,0,0,76,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.430828494739696,4.705229343382229,1,39.32,48.19,7,1,0,0,12,2,1,333.5,0,0,0 +1832,2253,4168,-9,-9,-9,1,1,0,45,3,0,1,0,3,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1044.737620637439,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.34397070034588,3,29.32,41.29,5,1,0,1,13,1,1,416.5,0,0,0 +1832,2253,4169,-9,4168,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-990.108901715813,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,3,1,0,0,13,1,1,416.5,0,0,0 +1832,2254,4170,-9,4168,-9,2,1,1,23,2,0,1,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1088.96179663419,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.08,44.75,6,1,0,0,13,1,1,1806,0,0,0 +1832,2255,4171,-9,4168,-9,3,1,0,21,2,0,1,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1063.610146803084,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,13,1,1,398,0,0,0 +1833,2256,4172,4173,-9,-9,1,1,1,34,1,0,2,0,2,-9,2,1,0,4,9.076908062309862,8.834195206968278,0,2,0,-9,8,0,1,-46.01398411572629,0,0,0,33,2,4,1,2,3,2019,1,2,8,0,60,48,15,1,0,1,0,13.36457870117022,13.36457870117022,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,4,0,450.25,0,0,0 +1833,2256,4173,4172,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,4,7.797956035960786,7.53637287807276,0,2,0,-9,8,0,-1,-35.43745599697706,0,0,1,34,2,4,1,2,3,2019,1,1,9,0,30,30,15,1,0,1,0,7.674020079955643,7.674020079955643,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,0,450.25,0,0,0 +1833,2256,4174,-9,4173,4172,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.946492803865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,0,450.25,0,0,0 +1833,2256,4175,-9,4173,4172,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.8446650742912,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,450.25,0,0,0 +1834,2257,4176,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,6.263217789503831,5.870893570127061,3,0,0,0,-9,0,-925.911367843424,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,9.134828015604109,6.271398612826321,0,0,51.24,58.84,6,1,0,0,10,2,1,970,0,0,0 +1835,2258,4177,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,5.198786869189043,6.669059231960174,6.503640357961766,3,0,0,0,-9,0,-957.4003682892085,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.603394406194108,6.620551745866647,0,0,62.42,42.94,6,1,0,0,9,2,1,2840,0,0,0 +1836,2259,4178,4179,-9,-9,1,1,0,50,1,0,1,0,1,-9,1,1,0,5,6.67840777515255,6.65439474246362,0,2,0,-9,16,0,-13,73.29116046552699,0,0,0,63,2,3,1,2,3,2019,1,2,6,0,35,43,15,1,0,1,0,2.223150977063761,2.223150977063761,0,0,0,0,0,0,0,1,1,0,0,0,121.6641800245098,3,51.14,60.45,6,1,0,0,9,5,1,608.3333333333334,0,0,0 +1836,2259,4179,4178,4181,-9,2,1,1,63,1,0,1,0,2,-9,2,1,0,3,9.222538164117015,9.599317122133408,0,2,0,-9,16,0,13,-27.32493505999316,0,0,0,50,1,5,1,3,2,2019,1,1,11,2,37,35,15,1,2,1,0,46.81437578213008,46.81437578213008,0,0,0,0,0,0,0,1,1,0,0,0,120.8055936029538,3,49.84,44.96,6,1,0,0,9,5,1,608.3333333333334,0,0,0 +1836,2259,4180,-9,4178,4179,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.0953646836173,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,608.3333333333334,0,0,0 +1836,2260,4181,-9,-9,-9,4,1,0,85,3,0,1,0,3,-9,8,3,1,3,0,0,0,4,0,0,0,-9,0,-989.3287240628902,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,1,32.78125482048696,0,12.17103537855011,0,0,275.5292494440487,1,1,0,0,0,0,0,53,44,6,1,0,0,9,1,1,2110,0,0,0 +1837,2261,4182,4183,-9,-9,2,1,0,51,1,0,0,0,2,-9,1,1,0,1,7.177413832648314,7.114091521932234,0,1,0,-9,9,0,-10,138.148194764666,0,0,0,61,3,5,1,3,3,2019,1,1,12,2,28,30,15,1,2,1,0,5.081450271684428,5.081450271684428,0,0,0,0,0,0,0,1,0,1,0,0,8.329645826187152,3,40.2,27.57,3,1,0,0,6,4,1,731,0,0,0 +1837,2261,4183,4182,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,5,8.746569199904719,8.358422766165612,0,1,0,-9,9,0,10,-55.73350495352853,0,0,0,51,2,1,1,3,3,2019,1,2,10,2,50,47,15,1,2,1,0,7.829730670303836,7.829730670303836,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.39,56.71,6,1,0,0,6,4,1,731,0,0,0 +1837,2262,4184,-9,4182,4183,3,1,1,28,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1000.865569007544,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.42,60.49,4,1,1,0,6,1,1,548,0,0,0 +1838,2263,4185,4186,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,7.261467356109926,7.073426758676485,0,1,0,-9,9,0,1,-84.34709260002332,0,0,0,55,1,4,1,3,2,2019,1,2,13,4,8,8,15,1,4,1,0,16.79989744293834,16.79989744293834,0,0,0,0,0,0,0,0,0,0,6.50425144834038,0,0,0,41.06,62.04,7,1,0,0,1,3,1,613,0,0,0 +1838,2263,4186,4185,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,4,6.466272405373897,6.172346397249178,0,1,0,-9,9,0,-1,54.55321125786184,0,0,0,56,1,4,1,2,2,2019,1,1,7,0,25,25,15,1,0,1,0,2.570196009770658,2.570196009770658,0,0,0,0,0,0,0,0,0,0,7.14586605107133,0,0,0,54.2,57.49,6,1,0,0,1,3,1,613,0,0,0 +1839,2264,4187,-9,-9,-9,1,1,0,49,2,0,1,0,1,-9,2,1,0,4,8.926641226102667,8.821351275011253,5.573380522802178,4,0,0,0,-9,0,-1147.710925939383,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,50,55,15,1,1,-9,0,16.37753948714218,16.37753948714218,0,0,0,0,0,0,0,1,1,0,6.76912628525704,0,0,0,47.49,55.02,4,1,0,0,12,5,1,992,0,0,0 +1839,2264,4188,-9,4187,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1119.192807003602,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,12,5,1,992,0,0,0 +1840,2265,4189,-9,4191,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.489858920056,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,0,571.3333333333334,0,0,0 +1840,2265,4190,-9,4191,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1043.001134164511,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,2,0,571.3333333333334,0,0,0 +1840,2265,4191,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,2,1,0,4,7.595611759084503,7.668904538412896,0,4,0,0,0,-9,0,-993.5224780820602,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,12,2,33,30,15,1,2,-9,0,8.72451549824746,8.72451549824746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.26,53.71,4,1,0,1,4,2,0,571.3333333333334,0,0,0 +1841,2266,4192,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,5,8.428434498944823,8.506907617489352,0,3,0,0,0,-9,0,-1059.661302992299,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,42,42,15,1,1,-9,0,10.24890590123345,10.24890590123345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,1,0,0,7,4,1,132,0,0,0 +1842,2267,4193,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-926.0637050069087,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.99,41.33,5,1,0,0,5,1,1,735,0,0,0 +1843,2268,4194,4195,-9,-9,1,1,0,33,1,0,1,0,3,-9,1,1,0,4,5.958833091175076,6.300715958743609,0,2,0,-9,6,0,-1,63.46580889184919,-9,0,1,34,2,5,1,2,2,2019,1,2,9,0,20,0,15,1,0,1,0,2.421844758371736,2.421844758371736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,11,2,1,937.5,0,0,0 +1843,2268,4195,4194,-9,-9,2,1,1,34,1,0,1,0,2,-9,1,1,0,5,7.483985782877047,7.046749647626778,0,2,0,-9,6,0,1,77.21789372342909,0,0,0,33,3,4,1,2,2,2019,1,1,11,0,40,45,15,1,0,1,0,3.21982102144305,3.21982102144305,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,11,2,1,937.5,0,0,0 +1844,2269,4196,4197,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,7.597926169830559,0,0,0,72,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,10.04430658709948,0,0,0,0,1,1,0,5.277430665585537,0,0,0,57.78,38.59,5,1,0,0,10,3,1,354.5,0,0,0 +1844,2269,4197,4196,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.663908486872683,7.622640695654776,1,0,-9,9,0,1,-9.396472634853453,0,0,0,71,3,2,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.429515274851922,7.578001997751993,0,0,52,47,5,1,0,0,10,3,1,354.5,0,0,0 +1845,2270,4198,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,3,8.843220324623571,8.462660542624441,0,3,0,0,0,-9,0,-911.5566399268233,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,39,41,15,1,1,-9,1,15.11717126836066,15.11717126836066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.82,57.71,3,1,0,0,7,5,1,590,0,0,0 +1846,2271,4199,4200,-9,-9,1,1,0,33,1,0,0,0,1,-9,1,1,0,4,8.137777118971149,8.110307854128099,0,1,0,-9,13,0,-12,94.75277732003094,0,0,1,45,2,4,1,3,2,2019,1,2,17,4,10,5,15,1,4,1,0,34.52913311557335,34.52913311557335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,6,1,0,0,10,5,1,464,0,0,0 +1846,2271,4200,4199,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,4,8.395128072799325,8.345903393156735,0,1,0,-9,13,0,12,-44.85225528703145,0,0,0,33,1,4,1,2,2,2019,1,1,12,1,44,44,15,1,1,1,0,10.18725301195434,10.18725301195434,0,0,0,0,0,0,0,0,0,0,2.563814477372522,0,0,0,57.73,54.53,2,1,0,0,10,5,1,464,0,0,0 +1847,2272,4201,4202,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,4,7.747817754964486,7.538327504709738,0,2,0,-9,6,0,-8,9.93580012881697,0,0,1,51,2,3,1,-9,-9,2019,1,1,7,0,20,20,15,1,0,1,0,11.38718882626507,11.38718882626507,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.46,56.91,6,1,0,0,2,4,1,905.6666666666666,0,0,0 +1847,2272,4202,4201,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,9.000129599598152,8.518678593518917,0,2,0,-9,6,0,8,96.51156691568225,0,0,0,43,2,4,1,-9,-9,2019,1,2,6,0,65,60,15,1,0,1,0,9.532612977859099,9.532612977859099,0,0,0,0,0,0,0,1,1,0,6.699996595362748,0,0,0,64.93000000000001,45.93,7,1,0,0,2,4,1,905.6666666666666,0,0,0 +1847,2272,4203,-9,4201,4202,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.334872739443,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,905.6666666666666,0,0,0 +1848,2273,4204,4206,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,4,9.127682561413694,8.954087073065821,0,2,0,-9,7,0,1,-140.3767768216844,0,0,0,40,1,5,3,3,3,2019,2,1,9,0,37,37,15,1,1,3,0,35.30080496034144,35.30080496034144,0,0,0,0,0,0,0,1,1,0,8.907566720633705,0,0,0,51,56,6,3,0,0,9,4,1,1103,0,0,0 +1848,2273,4205,-9,4206,4204,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1180.605329756861,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,1,1103,0,0,0 +1848,2273,4206,4204,-9,-9,1,1,0,40,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,7,0,-1,3.78944607161138,0,0,1,41,1,4,1,2,2,2019,3,2,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,9,4,1,1103,0,0,0 +1848,2273,4207,-9,4206,4204,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-825.6000980883895,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,4,1,1103,0,0,0 +1848,2273,4208,-9,4206,4204,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.115093175443,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,1,1103,0,0,0 +1849,2274,4209,4210,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.111240545245396,8.344477628119019,0,1,0,-9,9,0,-2,-13.13470099389008,0,0,0,54,2,2,1,2,3,2019,1,1,24,12,35,35,15,1,12,1,0,14.14314478797102,14.14314478797102,0,0,0,0,0,0,0,1,1,0,4.827403998029961,0,37.86853338083763,2,37.62,44.93,3,1,0,0,12,5,1,484.5,0,0,0 +1849,2274,4210,4209,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.129858123452131,8.315679813157008,7.375911903329327,1,0,-9,9,0,2,.697366883899141,0,0,0,52,2,3,1,3,3,2019,1,2,9,1,43,45,15,1,1,1,0,13.57360297138981,13.57360297138981,0,0,0,0,0,0,0,1,1,0,3.431978996002234,7.38351200481088,18.73829693988019,3,50.93,30.83,4,1,0,0,12,5,1,484.5,0,0,0 +1850,2275,4211,4212,-9,-9,2,1,0,58,1,0,0,0,1,-9,4,3,0,3,5.934834889021217,8.139380289731942,8.00339210499272,1,0,-9,37,0,-2,-60.91297515504574,0,0,0,60,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.179813786180605,8.353294313705332,0,3,58.72,43.42,6,1,0,0,6,3,1,735.5,0,0,0 +1850,2275,4212,4211,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,37,0,2,-28.38060786665614,0,0,0,58,1,3,3,2,3,2019,4,2,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.097197449397417,0,0,3,61.83,44.42,6,1,0,0,6,3,1,735.5,0,0,0 +1850,2276,4213,-9,4211,4212,3,1,0,27,2,0,0,0,2,-9,2,1,0,3,6.950369675953096,6.800471821588193,0,3,0,0,0,-9,0,-999.1169056741319,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,19,18,15,1,0,-9,1,7.935565920174258,7.935565920174258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,5,1,0,0,6,2,1,921,0,0,0 +1850,2277,4214,-9,4211,4212,4,1,1,25,2,0,0,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-988.725990864824,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,24,9,0,45,15,1,9,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,4,1,0,0,6,1,1,154,0,0,0 +1850,2278,4215,-9,4211,4212,5,1,1,25,2,0,0,0,1,-9,2,1,0,5,6.907363762824494,6.946399020773574,0,3,0,0,0,-9,0,-893.1213497859353,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,17,17,15,1,0,-9,1,7.542501587142517,7.542501587142517,0,0,0,0,0,0,0,0,0,0,2.748088910470159,0,0,0,54.1,59.11,3,1,0,0,6,2,1,996,0,0,0 +1851,2279,4216,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,5.22380800025006,5.076227344959942,3,0,0,0,-9,0,-1049.435428300672,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.19743274609699,0,0,52,46,6,1,0,0,2,2,0,166,0,0,0 +1852,2280,4217,4219,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,2,9.070798844265253,9.1699919847405,0,2,0,-9,23,0,2,31.38163067095973,0,0,0,43,2,2,1,-9,2,2019,1,2,12,0,42,45,15,1,0,1,0,26.56597956667651,26.56597956667651,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.16,38.3,4,1,0,0,7,5,1,617,0,0,0 +1852,2280,4218,-9,4219,4217,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.8931308134758,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,617,0,0,0 +1852,2280,4219,4217,-9,-9,2,1,0,43,1,0,2,0,2,-9,1,1,0,2,7.788850509935589,7.833967816852375,0,2,0,-9,21,0,-2,3.402723701700304,0,0,1,45,1,2,1,3,2,2019,1,1,17,5,25,40,15,1,5,1,0,10.13785609355504,10.13785609355504,0,0,0,0,0,0,0,1,1,0,0,0,0,3,28.88,54.9,5,1,0,1,7,5,1,617,0,0,0 +1853,2281,4220,4222,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,4,0,1,105.4899504660597,0,0,0,57,3,1,1,3,3,2019,3,3,26,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.95169062924318,3,32.2,35.5,2,1,0,0,5,3,1,1835.666666666667,0,0,0 +1853,2281,4221,-9,-9,4222,2,1,0,16,2,0,0,1,2,-9,7,2,0,4,0,0,0,1,0,0,0,-9,0,-1025.983343434934,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.48641997304989,3,46.71,45.96,2,1,0,0,5,3,1,1835.666666666667,0,0,0 +1853,2281,4222,4220,-9,-9,3,1,1,57,1,0,0,0,3,-9,2,1,0,1,7.934376665669053,8.17838475218681,0,1,0,-9,4,0,-1,-142.4662497612652,0,0,0,58,3,1,3,-9,-9,2019,2,1,16,4,40,40,15,1,4,3,0,6.862992282009462,6.862992282009462,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.39,13.53,2,1,0,1,5,3,1,1835.666666666667,0,0,0 +1854,2282,4223,4226,-9,-9,2,1,0,52,1,0,2,0,1,-9,1,1,0,5,9.333567716111371,9.02578839482365,0,2,0,-9,20,0,-3,81.15872966503784,0,0,0,55,1,3,1,1,1,2019,1,1,2,0,30,40,15,1,0,1,0,34.04418294499673,34.04418294499673,0,0,0,0,0,0,0,0,0,0,4.847225843564821,0,72.81499172656738,3,58.62,52.91,6,1,0,0,9,5,1,750,0,0,0 +1854,2282,4224,-9,4223,4226,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.432842844859,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,9,5,1,750,0,0,0 +1854,2282,4225,-9,4223,4226,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-814.9681953830752,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,750,0,0,0 +1854,2282,4226,4223,-9,-9,1,1,1,55,1,0,2,0,1,-9,2,1,0,3,9.439437342742048,9.752569975416536,0,2,0,-9,21,0,3,-55.01528469146327,0,0,0,52,1,5,1,2,2,2019,1,2,30,12,45,50,15,1,12,1,0,37.71336608335012,37.71336608335012,0,0,0,0,0,0,0,0,0,0,6.0096193836278,0,0,0,27.79,62.9,3,1,0,0,9,5,1,750,0,0,0 +1855,2283,4227,4228,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,4,0,0,0,0,74,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.707500475633,1,59.12,20.56,5,1,0,0,7,1,0,485,0,0,0 +1855,2283,4228,4227,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-4,0,0,0,0,78,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,132.3727604774937,0,0,0,0,1,1,0,0,0,0,0,51,46,6,1,0,0,7,1,0,485,0,0,0 +1856,2284,4229,4230,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-1,70.99236335895401,0,0,0,78,3,2,3,3,-9,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,1,0,13.80691849069015,0,0,0,0,1,1,0,0,0,4.171448199957247,1,62.28,45.64,7,1,0,0,10,2,1,290.5,0,0,0 +1856,2284,4230,4229,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,6.050622046562835,6.217234640956962,1,0,-9,56,0,1,-75.1249429493259,0,0,0,77,3,3,3,3,3,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,1,0,7.965788009362216,0,0,0,0,1,1,0,5.987323058745583,5.882160687924846,0,0,41.3,35.38,5,1,0,0,10,2,1,290.5,0,0,0 +1857,2285,4231,4232,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,7.568354740096254,7.398277858847473,1,0,-9,1,-9,-5,-58.77502220504123,-9,0,0,66,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.92248117127204,7.627758257960815,0,0,44.93,55.1,6,1,0,0,10,2,1,431.5,0,0,0 +1857,2285,4232,4231,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,1,-9,5,28.47784285378391,-9,0,0,61,2,4,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.70809143165807,0,2.186364176462938,3,57.16,56.15,6,1,0,0,10,2,1,431.5,0,0,0 +1858,2286,4233,4234,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,5.254855745626632,5.354400965587177,1,0,-9,6,0,3,-68.34376207536343,0,0,0,62,2,5,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.054033183371429,5.792805350612203,0,0,59.29,46.97,6,1,0,0,9,4,1,386,0,0,0 +1858,2286,4234,4233,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,5,0,8.861527103887932,8.647912407891896,1,0,-9,6,0,-3,126.8376099288986,0,0,0,65,1,4,3,2,3,2019,4,1,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.669344897459204,.603163173245749,3,57.06,57.76,6,1,0,0,9,4,1,386,0,0,0 +1859,2287,4235,-9,4236,-9,4,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1097.361892349626,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,4,0,0,6,1,0,893.25,0,0,0 +1859,2287,4236,-9,-9,-9,1,1,0,43,2,0,3,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1117.925242178351,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,25.91,6,2,0,1,6,1,0,893.25,0,0,0 +1859,2287,4237,-9,4236,-9,5,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-932.0929000260531,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,6,1,0,893.25,0,0,0 +1859,2287,4238,-9,4236,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-949.508327147446,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,2,0,0,6,1,0,893.25,0,0,0 +1859,2288,4239,-9,4236,-9,2,1,1,22,2,0,3,0,2,0,7,2,0,1,0,0,0,3,0,0,0,-9,0,-1045.706644493446,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,9,0,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.14,18.28,2,2,0,0,6,1,0,1033,0,0,0 +1860,2289,4240,4241,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,8.348214625456073,8.043188194190437,1,0,-9,7,0,-2,30.22149709445506,0,0,0,66,2,3,3,3,2,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.315334977278887,8.356594033333252,0,0,36.37,60.23,7,1,0,0,4,4,1,216.5,0,0,0 +1860,2289,4241,4240,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,8.261075691626621,7.900271547792205,1,0,-9,7,0,2,101.6931783932787,0,0,0,64,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.969863951591756,7.823012876728831,0,0,44.13,48.64,5,1,0,0,4,4,1,216.5,0,0,0 +1861,2290,4242,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,3,0,8.024281349410181,7.637780337613957,3,0,0,0,-9,0,-934.3380629582083,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.451462023181253,7.745168736353524,0,0,59.31,49.81,7,1,0,0,9,3,1,1707,0,0,0 +1862,2291,4243,4244,-9,-9,2,1,1,61,1,0,1,0,2,-9,2,1,0,3,7.667461970462758,7.591053603142485,0,2,0,-9,8,0,-1,141.9931130001952,0,0,0,62,2,3,1,3,3,2019,1,1,10,0,48,42,15,1,1,1,0,6.413437493020869,6.413437493020869,0,0,0,0,0,0,0,1,1,0,.3359596626148033,0,0,0,51,48,5,4,0,0,4,4,0,1076,0,0,0 +1862,2291,4244,4243,-9,-9,1,1,0,62,1,0,1,0,2,-9,2,1,0,3,8.038725524582855,7.991300428935878,0,2,0,-9,33,0,1,-14.66043767861437,0,0,0,61,2,3,1,3,3,2019,1,2,11,0,45,37,15,1,2,1,0,6.791177947700389,6.791177947700389,0,0,0,0,0,0,0,1,1,0,1.690123601431511,0,0,0,49,48,5,4,0,0,4,4,0,1076,0,0,0 +1862,2292,4245,-9,4244,4243,3,1,1,26,2,0,1,0,2,1,3,3,0,2,0,0,0,3,0,0,0,-9,0,-985.3712867587227,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.59,41.14,4,4,1,1,4,1,0,2019,0,0,0 +1862,2293,4246,-9,4244,4243,4,1,1,24,2,0,1,0,2,-9,2,1,0,2,8.090491754397654,7.850338194616939,0,3,0,0,0,-9,0,-913.686144736623,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,7,48,0,15,1,7,-9,1,6.452912894543418,6.452912894543418,0,0,0,0,0,0,0,1,1,0,.3958545670969964,0,0,0,24.27,55.78,5,4,0,0,4,3,0,491,0,0,0 +1862,2294,4247,-9,4248,-9,6,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-883.234550589282,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,4,3,0,517,0,0,0 +1862,2294,4248,-9,4244,4243,5,1,0,28,2,0,1,0,2,-9,2,1,0,3,7.839387120024617,7.921621720076291,0,3,0,0,0,-9,0,-971.6397307108423,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,45,90,15,1,4,-9,1,7.34148545647316,7.34148545647316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.38,37.62,6,4,0,0,4,3,0,517,0,0,0 +1862,2295,4249,-9,4244,4243,7,1,0,22,2,0,1,0,2,-9,2,1,0,5,7.811486242106895,7.724532621336996,0,3,0,0,0,-9,0,-1033.966985204959,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,3,35,0,15,1,3,-9,1,7.243952227957771,7.243952227957771,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.29,58.28,4,4,0,0,4,3,0,1471,0,0,0 +1863,2296,4250,-9,-9,-9,1,1,1,90,3,0,0,0,2,-9,4,3,0,3,0,7.030421349688839,7.240810728561172,3,0,0,0,-9,0,-1032.072281633472,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.733457110040587,7.40384529543601,0,0,54.58,43.7,6,1,0,0,2,3,1,701,0,0,0 +1864,2297,4251,4253,-9,-9,1,1,0,38,1,1,1,0,1,-9,5,1,0,2,8.70384324203089,8.693888048618668,0,2,0,-9,6,0,2,5.389998452826609,0,0,1,36,1,4,1,2,2,2019,1,2,19,9,40,38,15,1,9,1,0,18.04832452725474,18.04832452725474,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.84,14.95,6,1,0,0,2,5,1,971.3333333333334,0,0,0 +1864,2297,4252,-9,4251,4253,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1029.168000479717,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,5,1,971.3333333333334,0,0,0 +1864,2297,4253,4251,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,4,9.119381212181937,9.282147018748478,0,2,0,-9,6,0,-2,18.82453920744246,0,0,0,38,1,2,1,-9,-9,2019,1,1,10,1,40,41,15,1,1,1,0,28.7519960100322,28.7519960100322,0,0,0,0,0,0,0,1,1,0,6.733470127939528,0,4.741871643004524,1,48.87,58.55,5,1,0,0,2,5,1,971.3333333333334,0,0,0 +1865,2298,4254,4255,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,2,5.588731852413595,8.050247540711785,8.231870985517768,1,0,-9,45,0,-1,-52.99326131176556,0,0,0,64,2,4,3,3,2,2019,2,2,9,1,3,7,15,1,1,4,0,12.84310777057567,12.84310777057567,0,0,0,0,0,0,0,1,1,0,6.488818776292653,7.916276043618829,0,0,64.78,32.7,6,1,0,0,5,3,1,855.5,0,0,0 +1865,2298,4255,4254,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,6.73612787050619,6.889332353747111,1,0,-9,6,0,1,-111.9168990017737,-9,0,0,63,1,2,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.66594001917267,0,0,58.15,52.91,6,1,0,0,5,3,1,855.5,0,0,0 +1866,2299,4256,4257,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,3,8.707800475478942,8.708459556169316,0,1,0,-9,7,0,-1,-28.91574589657909,0,0,0,48,1,3,1,-9,-9,2019,1,1,22,8,0,40,15,1,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.89,57.17,4,1,0,0,7,5,1,1090,0,0,0 +1866,2299,4257,4256,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,3,7.961429329060317,8.284380364534437,0,1,0,-9,7,0,1,-5.935198254457323,0,0,0,47,2,3,1,2,2,2019,1,2,22,10,30,30,15,1,10,1,0,9.722127816603027,9.722127816603027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.11,56.52,3,1,0,0,7,5,1,1090,0,0,0 +1867,2300,4258,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,1,1,0,4,8.308755260813049,8.300800907091462,5.144203596584038,3,0,0,0,-9,0,-1056.903747551992,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,16,16,15,1,0,-9,0,25.05149578988216,25.05149578988216,0,0,0,0,0,0,0,0,0,0,8.041729506675813,0,0,0,56.29,52.37,6,1,0,0,8,4,1,81,0,0,0 +1868,2301,4259,4260,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,1,8.685087717871632,8.799856146404792,0,1,0,-9,9,0,-2,-99.67764212250614,0,0,0,57,1,4,1,3,2,2019,1,1,34,12,38,38,15,1,12,1,0,20.83345265528388,20.83345265528388,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.3,29.57,3,1,0,0,13,5,1,301.5,0,0,0 +1868,2301,4260,4259,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.29436356669434,8.152949850580159,0,1,0,-9,9,0,2,51.51623618768203,0,0,0,55,1,1,1,2,2,2019,1,2,7,0,37,37,15,1,0,1,0,14.96073360036373,14.96073360036373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,13,5,1,301.5,0,0,0 +1868,2302,4261,-9,4259,4260,3,1,1,21,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-973.7714352179805,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.607807430059941,0,0,0,46.32,53.44,3,1,1,0,13,1,1,222,0,0,0 +1868,2303,4262,-9,4259,4260,4,1,0,20,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1052.250597613678,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,41.65,6,1,0,0,13,1,1,1001,0,0,0 +1869,2304,4263,4266,-9,-9,1,1,0,55,1,0,2,0,1,-9,2,1,0,5,8.89735708714054,8.320906640642592,0,2,0,-9,7,0,3,-84.37846738752955,0,0,0,52,1,5,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,22.5365959438164,22.5365959438164,0,0,0,0,0,0,0,1,1,0,1.499299945549806,0,0,0,57.06,57.76,6,1,0,0,12,5,1,521,0,0,0 +1869,2304,4264,-9,4263,4266,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.0626798919327,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,5,1,521,0,0,0 +1869,2304,4265,-9,4263,4266,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1072.314989217718,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.455711686548679,0,0,0,51.73,58.82,6,1,0,0,12,5,1,521,0,0,0 +1869,2304,4266,4263,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,5,9.229859986390053,9.023046456528116,0,2,0,-9,7,0,-3,-35.06857030107157,0,0,0,55,1,5,1,3,1,2019,1,1,10,0,50,42,15,1,0,1,0,20.95799354939524,20.95799354939524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,6,1,0,0,12,5,1,521,0,0,0 +1870,2305,4267,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,7.224149864454065,7.058463809555297,3,0,0,0,-9,0,-1027.248912308444,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,12.95323529840397,0,0,0,1,1,0,0,7.067523230589959,0,0,41.32,32.42,4,1,0,0,5,2,1,143,0,0,0 +1871,2306,4268,-9,4269,4270,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-856.3756753334943,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,532.3333333333334,0,0,0 +1871,2306,4269,4270,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,3,8.787028364948878,8.553275436739545,0,2,0,-9,14,0,2,6.861477023380744,0,0,0,46,1,4,1,2,1,2019,1,2,22,10,40,37,15,1,10,1,0,22.3631531716906,22.3631531716906,0,0,0,0,0,0,0,1,1,0,4.608426027997587,0,0,0,42.34,48.1,6,1,0,0,7,5,1,532.3333333333334,0,0,0 +1871,2306,4270,4269,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,4,8.920832557904701,9.137169861105756,0,2,0,-9,14,0,-2,-75.27088223300365,0,0,0,48,1,3,1,-9,-9,2019,1,1,6,0,38,40,15,1,0,1,0,25.3509944049454,25.3509944049454,0,0,0,0,0,0,0,1,1,0,5.18769969993727,0,0,0,51.83,57.2,5,1,0,0,7,5,1,532.3333333333334,0,0,0 +1872,2307,4271,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,4.668346612326483,4.423384483352643,3,0,0,0,-9,0,-995.6475948634784,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.655574426961883,0,0,50.33,32.8,6,1,0,0,2,1,0,2201,0,0,0 +1873,2308,4272,4273,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,5,9.245968258508698,8.998302796890163,0,2,0,-9,6,0,-11,153.5911368214781,0,0,1,45,1,4,1,2,2,2019,1,2,12,0,56,0,15,1,0,1,0,18.28587534431671,18.28587534431671,0,0,0,0,0,0,0,1,1,0,.1117756442891879,0,0,0,54.1,59.11,6,1,0,0,9,5,1,650.6666666666666,0,0,0 +1873,2308,4273,4272,-9,-9,2,1,1,45,1,1,1,0,1,-9,2,1,0,4,8.902978552261576,8.879940283066174,0,2,0,-9,6,0,11,138.5984851002975,0,0,0,34,1,5,1,1,2,2019,1,1,13,4,40,40,15,1,4,1,0,19.36950395675977,19.36950395675977,0,0,0,0,0,0,0,1,1,0,.5933910461837474,0,0,0,51.77,58.57,7,1,0,0,9,5,1,650.6666666666666,0,0,0 +1873,2308,4274,-9,4272,4273,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.6908160740225,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,1,650.6666666666666,0,0,0 +1874,2309,4275,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,4,7.98215270496453,7.995092559768843,0,3,0,0,0,-9,0,-941.3481381686154,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,42,15,1,0,-9,0,8.132041990749268,8.132041990749268,0,0,0,0,0,0,0,1,1,0,4.243416817354507,0,0,0,54.2,57.49,6,1,0,0,6,3,1,4271,0,0,0 +1875,2310,4276,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,6.598642060747755,6.1817598276181,3,0,0,0,-9,0,-1041.866555575271,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.013003595095773,6.52596531197726,0,0,47.54,39.93,5,1,0,0,4,2,1,144,0,0,0 +1876,2311,4277,4279,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,4,7.883667731571042,8.112200444673173,0,2,0,-9,11,0,-6,-40.14091744867513,0,0,1,41,1,4,1,2,2,2019,1,2,11,0,25,30,15,1,0,1,0,11.74153935975794,11.74153935975794,0,0,0,0,0,0,0,1,1,0,2.439304932891163,0,0,0,48.04,53.42,6,1,0,0,7,4,1,665.75,0,0,0 +1876,2311,4278,-9,4277,4279,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.5299998142563,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,665.75,0,0,0 +1876,2311,4279,4277,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.881814603406665,9.086408995215157,0,2,0,-9,11,0,6,8.822285330027489,-9,0,0,35,1,4,1,1,1,2019,1,1,12,0,41,0,15,1,0,1,0,20.99689294619901,20.99689294619901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.25,56.9,5,1,0,0,7,4,1,665.75,0,0,0 +1876,2311,4280,-9,4277,4279,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.374430929854,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,4,1,665.75,0,0,0 +1877,2312,4281,4282,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,6.075271792298232,6.111530786007169,1,0,-9,7,0,-1,13.1595585513145,0,0,0,73,1,3,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.25518269436167,5.942476565927396,0,0,47.7,49.53,5,1,0,0,11,3,1,364.5,0,0,0 +1877,2312,4282,4281,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,7.626511111511447,7.81747238181423,1,0,-9,7,0,1,-11.15701624131726,0,0,0,72,1,3,3,3,3,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.161973290409717,7.759722082829206,0,3,41.22,44.22,5,1,0,0,11,3,1,364.5,0,0,0 +1878,2313,4283,4284,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.446053584931315,8.861724769670188,0,1,0,-9,6,0,2,-90.90153043640611,0,0,0,44,2,3,3,2,2,2019,2,2,6,0,42,48,15,1,0,3,0,15.34009173518396,15.34009173518396,0,0,0,0,0,0,0,0,0,0,1.692943615988038,0,0,0,57.16,56.15,6,1,0,0,10,4,1,447,0,0,0 +1878,2313,4284,4283,-9,-9,2,1,0,44,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,6,0,-2,-115.0843044604465,0,0,1,46,2,4,1,2,2,2019,3,1,11,0,0,44,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.060775673993954,3,49.29,54.59,6,1,1,0,10,4,1,447,0,0,0 +1878,2314,4285,-9,4284,4283,3,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.05646620748841,7.280170031226232,0,3,0,0,0,-9,0,-1011.0417457897,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,24,15,1,0,-9,1,4.915930671223733,4.915930671223733,0,0,0,0,0,0,0,0,0,0,.2842642459722239,0,0,0,59.3,38.97,5,1,0,0,10,2,1,784,0,0,0 +1879,2315,4286,-9,4287,4289,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.606476480388,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,1,1075,0,0,0 +1879,2315,4287,4289,-9,-9,1,1,0,45,1,0,2,0,1,-9,7,2,0,4,0,0,0,2,0,-9,12,0,2,55.42464230949209,1,0,0,43,1,3,1,2,1,2019,3,2,12,3,0,0,15,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.15,56.92,5,1,0,1,9,3,1,1075,0,0,0 +1879,2315,4288,-9,4287,4289,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.113030140932,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,1075,0,0,0 +1879,2315,4289,4287,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,3,8.664499479478758,8.410477512613559,0,2,0,-9,12,0,-2,209.9821668404898,0,0,0,45,1,4,2,2,2,2019,2,1,21,8,49,39,15,1,8,2,0,12.04884886268355,12.04884886268355,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.32,56.92,3,1,0,1,9,3,1,1075,0,0,0 +1880,2316,4290,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,2,7.611304349818403,7.716953188327345,0,3,0,0,0,-9,0,-984.3544968481964,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,2,31,30,15,1,2,-9,0,10.12333731914726,10.12333731914726,0,0,0,0,0,0,0,0,0,0,0,0,20.34271178865221,3,42.23,49.99,1,1,0,1,1,3,1,749,0,0,0 +1880,2317,4291,-9,4290,-9,2,1,1,19,2,0,0,0,3,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-991.6997252275853,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,15,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.5949334295962401,0,0,0,48.98,57.22,6,1,0,0,1,1,1,735,0,0,0 +1881,2318,4292,4293,-9,-9,1,1,1,59,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,38,0,0,86.49231375452294,0,0,0,59,2,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.798241032525345,0,0,0,57.16,56.15,6,1,1,0,10,2,1,412.5,0,0,0 +1881,2318,4293,4292,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,6.359173407091109,6.663792687290967,0,1,0,-9,38,0,0,-73.74008895088636,0,0,0,59,1,4,3,2,2,2019,2,1,6,0,10,10,15,1,0,3,0,6.541922595963947,6.541922595963947,0,0,0,0,0,0,0,0,0,0,6.455499680266593,0,0,0,57.16,56.15,2,1,0,0,10,2,1,412.5,0,0,0 +1882,2319,4294,-9,4295,-9,6,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.3924098449838,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,1,0,747,0,0,0 +1882,2319,4295,-9,-9,-9,1,1,0,36,3,0,3,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1063.219520412353,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,112.7021537112108,3,49.35,51.61,6,1,0,0,2,1,0,747,0,0,0 +1883,2320,4296,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,4,0,7.436983710242629,7.793249131868755,3,0,0,0,-9,0,-1008.905488205701,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.637910688854337,7.635368876574263,0,0,48.92,42.18,6,1,0,0,9,3,1,1941,0,0,0 +1884,2321,4297,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,3,8.733973983116083,8.628152739035365,0,3,0,0,0,-9,0,-966.8604835096505,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,11,32,38,15,1,11,-9,0,14.10765414397264,14.10765414397264,0,0,0,0,0,0,0,0,0,0,3.672607087960026,0,28.80941575482348,3,30.26,50.99,3,1,0,0,2,5,1,1555,0,0,0 +1884,2322,4298,-9,4297,-9,2,1,0,24,2,0,0,0,1,-9,7,2,0,3,0,6.051394164320575,5.905035833358016,3,0,0,0,-9,0,-1077.502670132341,1,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,19,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.423802141568241,0,0,3,30.61,27.79,5,1,0,1,2,2,1,120,0,0,0 +1885,2323,4299,4302,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,3,8.224787815215109,8.148618378682045,0,2,0,-9,12,0,7,-62.48618045836473,0,0,0,43,3,2,1,3,2,2019,1,2,10,0,48,48,15,1,0,1,0,7.7712771495054,7.7712771495054,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,4,1,0,0,4,3,1,510,0,0,0 +1885,2323,4300,-9,4302,4299,3,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1000.397165584874,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,3,0,0,4,3,1,510,0,0,0 +1885,2323,4301,-9,4302,4299,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-887.5093272990472,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,4,3,1,510,0,0,0 +1885,2323,4302,4299,-9,-9,2,1,0,43,1,0,2,0,3,-9,2,1,0,2,7.726276983581577,7.606167391060873,0,2,0,-9,12,0,-7,65.39324490251029,0,0,1,50,2,3,1,-9,-9,2019,1,1,11,0,30,40,15,1,0,1,0,9.823612823352549,9.823612823352549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,42.23,5,3,0,0,4,3,1,510,0,0,0 +1886,2324,4303,4304,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,2,0,6.898110203013571,6.645702390885415,1,0,-9,9,0,1,11.48090059713111,0,0,0,61,2,4,2,3,3,2019,2,2,18,6,0,35,15,1,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.723078654450806,0,0,28.78,45.18,3,1,0,0,11,2,1,320,0,0,0 +1886,2324,4304,4303,-9,-9,2,1,0,61,1,0,0,0,2,-9,7,2,0,4,0,0,0,1,0,-9,9,0,-1,-74.4286974379249,1,0,0,62,3,2,1,3,3,2019,3,1,13,2,0,35,15,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,11,2,1,320,0,0,0 +1887,2325,4305,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1015.04780026374,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,2.473183230447101,0,0,0,35.69,18.75,2,1,0,1,11,1,1,321,0,0,0 +1887,2326,4306,-9,-9,4305,2,1,1,30,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-915.1927434891865,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.48,50.18,5,1,1,1,11,1,1,378,0,0,0 +1888,2327,4307,4308,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.925096130842912,6.372687479855155,1,0,-9,9,0,-3,-91.6061329575504,0,0,0,70,2,4,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.663358624327883,0,0,47.56,38.79,6,1,0,0,9,3,1,1601.5,0,0,0 +1888,2327,4308,4307,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.697059925776388,7.739684944467059,1,0,-9,9,0,3,-52.33367984452676,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.387545653068695,7.965931560884623,7.902704990244827,3,59.53,56.44,6,1,0,0,9,3,1,1601.5,0,0,0 +1889,2328,4309,4310,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,3,8.432972452695351,8.6869289668566,7.827186120699204,1,0,-9,46,0,-5,-9.810098356495232,0,0,0,68,1,2,1,2,2,2019,1,2,11,0,1,1,15,1,0,1,0,595.8914077293229,595.8914077293229,0,0,0,0,0,0,0,1,1,0,3.60735102303155,7.738883822469264,0,0,50.66,40.15,6,1,0,0,2,5,1,776.5,0,0,0 +1889,2328,4310,4309,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,2,6.635240919883098,7.929326603251779,7.586564172032373,1,0,-9,46,0,5,-45.68510464618988,0,0,0,63,2,3,1,3,3,2019,1,1,12,0,4,0,15,1,0,1,0,24.93447309522448,24.93447309522448,0,0,0,0,0,0,0,1,1,0,6.820765514921074,7.914542419054367,0,0,27.74,43,2,1,0,0,2,5,1,776.5,0,0,0 +1890,2329,4311,4312,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.925843243369494,8.141266056193977,1,0,-9,25,0,10,14.75811382913778,0,0,0,62,2,3,3,3,-9,2019,4,1,15,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.830241707682001,0,0,48.99,46.49,6,1,0,0,2,4,1,1616.5,0,0,0 +1890,2329,4312,4311,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,7.698967361465522,7.58797801662901,1,0,-9,25,0,-10,-1.498168617013777,0,0,0,72,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.000343853967578,7.739253944263478,0,3,43.72,47.42,6,1,0,0,2,4,1,1616.5,0,0,0 +1891,2330,4313,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1000.745840531959,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.43,36.7,2,1,0,0,2,1,0,563,0,0,0 +1892,2331,4314,4316,-9,-9,2,1,1,64,1,0,2,0,2,-9,2,1,0,3,9.382368343175742,9.425202800587702,7.149701672940996,2,0,-9,32,0,15,87.84137869938871,0,0,0,49,2,3,3,2,2,2019,2,1,9,0,50,50,15,1,0,3,0,30.2373216044487,30.2373216044487,0,0,0,0,0,0,0,0,0,0,0,7.286196202455791,0,0,46.08,57.2,3,1,0,0,9,5,1,360,0,0,0 +1892,2331,4315,-9,4316,4314,7,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.85236453733,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,360,0,0,0 +1892,2331,4316,4314,-9,-9,1,1,0,49,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,32,0,-15,-29.30532725955341,0,0,0,64,2,3,1,2,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.256600145263614,0,0,0,52,54.51,5,1,0,0,9,5,1,360,0,0,0 +1892,2332,4317,-9,4316,4314,3,1,1,26,2,0,2,0,1,-9,2,1,0,5,8.347243390593379,8.037529535282744,0,3,0,0,0,-9,0,-998.8846296135353,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,44,45,15,1,0,-9,1,11.28625694081542,11.28625694081542,0,0,0,0,0,0,0,0,0,0,1.388058489621743,0,0,0,51.14,60.45,5,1,0,0,9,4,1,303,0,0,0 +1892,2333,4318,-9,4316,4314,4,1,0,23,2,0,2,0,2,-9,2,1,0,5,7.608935867019487,7.495218013956223,0,3,0,0,0,-9,0,-977.7911019086221,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,11,40,15,1,0,-9,1,18.04974194132541,18.04974194132541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,9,3,1,987,0,0,0 +1892,2334,4319,-9,4316,4314,5,1,1,21,2,0,2,0,1,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1040.892019296703,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.72,63.51,4,1,1,0,9,1,1,431,0,0,0 +1892,2335,4320,-9,4316,4314,6,1,1,18,2,0,2,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-937.758180221377,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.14,59.02,2,1,1,0,9,5,1,620,0,0,0 +1893,2336,4321,4322,-9,-9,2,1,0,88,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,68,0,-3,16.56365917664908,0,0,0,91,3,3,3,3,2,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,1,0,3.377000071008432,0,0,0,0,1,1,0,5.767604733388864,0,0,0,48.55,28.3,7,1,0,0,2,2,1,184.5,0,0,0 +1893,2336,4322,4321,-9,-9,1,1,1,91,1,0,0,0,3,-9,4,3,0,3,0,6.045569506086487,5.872235920513914,1,0,-9,68,0,3,174.0023088777687,0,0,0,88,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.355958132647639,0,0,43.5,38.28,7,1,0,0,2,2,1,184.5,0,0,0 +1894,2337,4323,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,5.371806461644779,4.896295456654141,3,0,0,0,-9,0,-1151.29312692748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.298553335145646,0,0,40.13,35.69,4,1,0,1,6,2,1,591,0,0,0 +1895,2338,4324,4326,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,4,7.855049406086049,7.423871056210484,0,2,0,-9,9,0,-4,31.23201419087728,0,0,1,42,2,3,1,2,2,2019,1,2,12,1,31,25,15,1,1,1,0,9.467257191651392,9.467257191651392,0,0,0,0,0,0,0,1,1,0,7.006754670962145,0,0,0,41.3,60.77,6,1,0,1,9,4,1,799.3333333333334,0,0,0 +1895,2338,4325,-9,4324,4326,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.0128370181593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,799.3333333333334,0,0,0 +1895,2338,4326,4324,-9,-9,2,1,1,42,1,0,2,0,2,-9,1,1,0,3,8.107352821154844,8.314279382930476,0,2,0,-9,9,0,4,43.46728660278223,0,0,0,38,2,4,1,2,2,2019,1,1,7,0,50,60,15,1,0,1,0,9.694494565562476,9.694494565562476,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.27,52.13,5,1,0,0,9,4,1,799.3333333333334,0,0,0 +1896,2339,4327,4328,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,1,-4.638307143813193,0,0,0,69,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.82404144121779,1,56.06,49.82,6,1,0,0,12,2,0,707.5,0,0,0 +1896,2339,4328,4327,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,5.225187644303163,5.287140008929141,1,0,-9,10,0,-1,-41.06180215672831,0,0,0,70,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,8.59558803479637,0,0,0,0,1,1,0,0,5.279136004994758,0,0,41.18,31.37,3,1,0,0,12,2,0,707.5,0,0,0 +1897,2340,4329,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,5,8.806456629704902,8.815523297129808,0,3,0,0,0,-9,0,-1067.854430055085,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,0,29.64023891605801,29.64023891605801,0,0,0,0,0,0,0,0,0,0,3.574144844707983,0,0,0,60.02,56.42,7,1,0,0,8,5,1,628,0,0,0 +1897,2341,4330,-9,-9,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,2,7.936889936079063,8.217494736332842,0,3,0,0,0,-9,0,-1010.542116130443,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,35,15,1,0,-9,0,12.86496763374831,12.86496763374831,0,0,0,0,0,0,0,0,0,0,.8310426298925513,0,0,0,39.47,49.63,5,1,0,0,8,4,1,284,0,0,0 +1898,2342,4331,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,1,1,0,3,7.738944668666545,7.671836681620464,0,3,0,0,0,-9,0,-909.3096252656608,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,22,35,15,1,0,-9,0,9.060088451276297,9.060088451276297,0,0,0,0,0,0,0,0,0,0,2.879397625051223,0,0,0,55.53,51.55,5,3,0,0,8,3,0,650,0,0,0 +1899,2343,4332,-9,-9,-9,1,1,1,22,2,0,0,1,1,0,7,2,0,4,4.975553672614373,5.688127850531135,5.095403631762068,3,0,0,0,-9,0,-1052.931771674093,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.118790180722341,0,0,0,41.06,62.04,6,2,0,0,4,2,0,200,0,0,0 +1900,2344,4333,4334,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,8.164616138090235,8.716044070706046,1,0,-9,4,0,5,-20.10862224642625,0,0,0,67,2,3,1,3,2,2019,3,2,11,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.090620762914284,8.475355229842915,0,0,51.32,56,6,1,0,0,4,4,1,464,0,0,0 +1900,2344,4334,4333,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,3,7.842495358023587,7.746125092974573,0,1,0,-9,4,0,-5,-82.94843779302934,0,0,0,72,2,4,3,-9,-9,2019,2,1,11,0,28,32,15,1,1,4,0,13.65754980203284,13.65754980203284,0,0,0,0,0,0,0,1,1,0,5.153145489686847,0,0,0,50,47,5,5,0,0,4,4,1,464,0,0,0 +1901,2345,4335,4338,-9,-9,2,1,0,36,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,18,0,-14,28.79296650533124,0,0,1,50,1,4,1,3,1,2019,3,1,9,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,49.92,6,3,0,0,7,2,0,797.2,0,0,0 +1901,2345,4336,-9,4335,4338,3,1,1,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1058.66740081079,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,7,2,0,797.2,0,0,0 +1901,2345,4337,-9,4335,4338,4,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1037.712970102626,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,7,2,0,797.2,0,0,0 +1901,2345,4338,4335,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,4,7.269020585425507,7.107878737067442,0,2,0,-9,18,0,14,106.2150088583099,0,0,0,36,2,3,3,3,2,2019,2,2,10,0,27,28,15,1,0,3,0,5.388143530438327,5.388143530438327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,7,2,0,797.2,0,0,0 +1901,2345,4339,-9,4335,4338,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.4184202186086,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,7,2,0,797.2,0,0,0 +1902,2346,4340,4343,-9,-9,1,1,0,40,1,0,5,0,2,-9,6,3,0,1,0,0,0,2,0,-9,17,0,3,128.5516149934188,0,0,1,37,3,4,1,3,3,2019,3,2,11,1,0,7,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,23.84,4,3,0,1,6,2,1,376.5,0,0,0 +1902,2346,4341,-9,4340,4343,5,1,1,16,2,0,5,1,-9,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-976.2569449019888,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.90159560996261,3,67.36,32.42,7,3,0,0,6,2,1,376.5,0,0,0 +1902,2346,4342,-9,4340,4343,7,1,1,7,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.3472970188635,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,376.5,0,0,0 +1902,2346,4343,4340,-9,-9,2,1,1,37,1,0,5,0,3,-9,2,1,0,4,7.375623194810819,7.321709950605034,0,2,0,-9,5,0,-3,140.7385420757055,0,0,0,40,2,1,3,-9,-9,2019,2,1,10,0,18,18,15,1,1,3,0,10.22146373294436,10.22146373294436,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,3,0,0,6,2,1,376.5,0,0,0 +1902,2347,4344,-9,4340,4343,3,1,1,18,2,0,5,1,2,0,7,2,0,2,5.503279001277133,5.489352451140392,0,3,0,0,0,-9,0,-985.4077317557009,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,20,6,40,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.33,45.67,3,3,0,0,6,2,1,411,0,0,0 +1902,2348,4345,-9,4340,4343,4,1,0,18,2,0,5,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1062.903165553345,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,25,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.21,57.32,2,3,0,1,6,2,1,629,0,0,0 +1903,2349,4346,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-880.1293607935168,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,1,0,4,1,0,2366,0,0,0 +1904,2350,4347,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,5,0,4.975460185462784,4.916496912484766,3,0,0,0,-9,0,-1082.106516796758,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.571272819161808,0,0,57.06,57.76,7,1,0,0,5,2,1,1153,0,0,0 +1905,2351,4348,-9,-9,-9,1,1,0,36,2,0,0,0,3,-9,2,1,0,5,7.930079484535848,7.439094121352509,0,3,0,0,0,-9,0,-909.0336196280045,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,1,0,52,15,15,1,0,-9,0,4.408400122426518,4.408400122426518,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.29,58.28,5,1,0,0,1,3,0,1014,0,0,0 +1906,2352,4349,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1122.146318555156,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.05,61.22,5,1,0,0,9,1,0,505,0,0,0 +1907,2353,4350,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,5.494229072293409,5.481874014939582,3,0,0,0,-9,0,-1090.180865143971,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.565333288132262,0,0,36.57,34.8,4,1,0,0,9,2,1,647,0,0,0 +1908,2354,4351,-9,-9,-9,1,1,0,49,3,0,1,0,3,-9,6,3,0,5,0,0,0,4,0,0,0,-9,0,-1077.611132408695,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,5.303195315981283,3,33.13,45.57,3,1,0,1,9,1,0,681.5,0,0,0 +1908,2354,4352,-9,4351,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-994.3254583217861,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,9,1,0,681.5,0,0,0 +1909,2355,4353,4354,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,6.323704645155225,6.038973330214857,1,0,-9,6,0,6,31.87442055194796,0,0,0,61,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.832909658063405,6.539319182269879,0,0,57.16,56.15,6,1,0,0,11,2,1,500,0,0,0 +1909,2355,4354,4353,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,5.98423567058996,6.584737552848654,1,0,-9,6,0,-6,-77.69228585217829,0,0,0,67,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.407408269952681,0,0,35.63,43,1,1,0,0,11,2,1,500,0,0,0 +1910,2356,4355,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,4,8.030482336738968,8.125193665102138,0,3,0,0,0,-9,0,-959.1471957431409,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,39,41,15,1,0,-9,0,12.28062648600639,12.28062648600639,0,0,0,0,0,0,0,1,1,0,3.256664348238128,0,0,3,63.48,51.85,4,1,0,0,10,4,0,1113,0,0,0 +1911,2357,4356,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,4,8.142572524444281,8.08271359114126,0,3,0,0,0,-9,0,-986.098092734775,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,36,36,15,1,0,-9,0,12.97616319888441,12.97616319888441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.07,52.7,6,1,0,0,13,4,1,2356,0,0,0 +1912,2358,4357,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,5,0,7.140019310808875,6.620185810859977,3,0,0,0,-9,0,-898.3794277151781,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.147281283019787,0,0,65.56,41.56,7,1,0,0,12,2,1,710,0,0,0 +1913,2359,4358,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-947.0639782786943,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,17.73,2,1,0,0,5,1,0,1457,0,0,0 +1913,2360,4359,-9,-9,-9,2,1,1,69,3,0,0,0,3,-9,4,3,0,3,0,6.615098245715012,6.696439767117504,3,0,0,0,-9,0,-1094.530229486423,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.709178658776136,122.8640506224963,3,47.94,48.26,6,1,0,0,5,2,0,240,0,0,0 +1914,2361,4360,-9,4363,4364,5,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.0391914874888,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,1,1,560.8,0,0,0 +1914,2361,4361,-9,4363,4364,7,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1027.031926370756,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,6,1,1,560.8,0,0,0 +1914,2361,4362,-9,4363,4364,6,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.7420808671774,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,1,1,560.8,0,0,0 +1914,2361,4363,4364,-9,-9,1,1,0,48,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,26,0,-10,0,0,0,0,58,3,2,3,3,3,2019,4,2,2,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.76979006693701,3,55.44,54.26,7,3,0,0,6,1,1,560.8,0,0,0 +1914,2361,4364,4363,4365,-9,2,1,1,58,1,0,3,0,3,-9,3,3,0,2,0,0,0,2,0,-9,26,0,10,0,0,0,0,48,3,3,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.8738512949202519,3,46.13,43.85,5,3,1,0,6,1,1,560.8,0,0,0 +1914,2362,4365,-9,-9,-9,3,1,0,74,3,0,3,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-1009.550789446277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,1,40.24589123478329,0,37.54568676880609,0,38.12788815501972,382.6556572152976,1,1,0,0,0,0,0,32.14,39.53,4,3,0,0,6,1,1,423,0,0,0 +1914,2363,4366,-9,4363,4364,4,1,0,20,2,0,3,0,2,-9,2,1,0,4,7.43222710412422,7.179344206917622,0,3,0,0,0,-9,0,-954.8616224153806,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,0,0,40,40,15,1,0,-9,1,4.068158006819002,4.068158006819002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,45.69,7,3,0,0,6,3,1,220,0,0,0 +1915,2364,4367,4368,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,3,8.063602301100739,8.226237849582047,0,2,0,-9,8,0,-2,30.40967567567544,0,0,1,46,2,3,1,2,-9,2019,1,1,15,3,68,68,15,1,3,1,0,6.363123116902893,6.363123116902893,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,3,1,0,0,12,3,1,801,0,0,0 +1915,2364,4368,4367,-9,-9,1,1,1,46,1,0,2,0,2,-9,1,1,0,3,7.286668637209088,7.489587148541903,0,2,0,-9,8,0,2,-9.311233990858547,0,0,0,44,1,3,1,-9,-9,2019,1,2,9,0,50,60,15,1,0,1,0,4.177516283444898,4.177516283444898,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,1,0,0,12,3,1,801,0,0,0 +1915,2364,4369,-9,4367,4368,4,1,0,16,2,0,2,0,2,-9,3,2,0,3,0,0,0,2,0,0,0,-9,0,-1074.368746473601,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.653539215327942,0,0,0,38.79,56.81,5,1,1,0,12,3,1,801,0,0,0 +1915,2365,4370,-9,4367,4368,3,1,0,18,2,0,2,1,2,0,7,2,0,4,5.987626001280785,5.72123394107462,0,3,0,0,0,-9,0,-1088.384503637046,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.3171974395791802,0,0,0,56.77,52.22,6,1,0,0,12,3,1,117,0,0,0 +1916,2366,4371,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-992.579079426481,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,1,0,0,13,1,1,748,0,0,0 +1917,2367,4372,4373,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.871859684527894,7.979183157869521,0,1,0,-9,34,0,-3,-5.994467616445764,0,0,0,52,2,1,1,3,2,2019,1,1,12,2,39,39,15,1,2,1,0,9.053436657658267,9.053436657658267,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,55,6,1,0,0,2,5,1,559,0,0,0 +1917,2367,4373,4372,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,1,8.672901538721105,8.626228604097392,0,1,0,-9,34,0,3,110.5252886330612,0,0,0,49,2,4,1,3,-9,2019,1,2,13,3,40,37,15,1,3,1,0,13.17410370498069,13.17410370498069,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38,27,4,1,0,0,2,5,1,559,0,0,0 +1917,2368,4374,-9,4372,4373,3,1,0,27,2,0,0,0,2,-9,97,3,0,1,0,0,0,3,0,0,0,-9,0,-1100.365560899192,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,6,0,36,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.09,40.41,2,1,0,1,2,1,1,693,0,0,0 +1918,2369,4375,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,2,1,0,2,6.667788724080776,6.778297153002653,6.204037135128771,3,0,0,0,-9,0,-1017.012962962723,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,20,14,15,1,2,-9,0,3.918936159390237,3.918936159390237,0,0,0,0,0,0,0,1,1,0,3.675192791248846,5.99769325770253,0,0,30.99,57.79,3,1,0,0,8,2,1,181,0,0,0 +1919,2370,4376,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,7.15061106541792,7.33432690712498,3,0,0,0,-9,0,-926.8182361231131,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,8.36496841368106,0,0,0,2.500985893485905,0,1,1,0,.2627520361086593,7.205444416726157,0,0,52,45,6,1,0,0,11,2,1,1470,0,0,0 +1920,2371,4377,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,2,8.023589490217152,7.620424403589539,0,3,0,0,0,-9,0,-981.3605154835564,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,39,39,15,1,1,-9,0,8.480751093618364,8.480751093618364,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.18,30.52,4,1,0,0,4,3,0,990,0,0,0 +1921,2372,4378,-9,4380,4379,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.421051696413,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,648.6666666666666,0,0,0 +1921,2372,4379,4380,-9,-9,2,1,1,41,1,0,1,0,1,-9,2,1,0,2,8.944096364510115,8.664842831399245,0,2,0,-9,7,0,0,56.68691307921794,0,0,0,41,1,3,1,3,2,2019,1,1,8,1,43,41,15,1,1,1,0,14.99575682356474,14.99575682356474,0,0,0,0,0,0,0,1,1,0,6.848432831176432,0,0,0,52.41,45.2,6,1,0,0,4,4,1,648.6666666666666,0,0,0 +1921,2372,4380,4379,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,3,8.296983358583441,7.814697210205196,0,2,0,-9,7,0,0,1.415018924129691,0,0,1,41,1,2,1,1,1,2019,1,2,6,0,26,22,15,1,0,1,0,9.992957348245675,9.992957348245675,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.47,41.45,6,1,0,0,4,4,1,648.6666666666666,0,0,0 +1922,2373,4381,4382,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,6.378169398197853,6.121948124953515,1,0,-9,10,0,3,21.1144756203983,0,0,0,68,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.684805064359103,6.485764937784272,0,0,57.16,56.15,6,1,0,0,10,2,1,695,0,0,0 +1922,2373,4382,4381,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,6.31026998745978,6.363755630951871,1,0,-9,36,0,-3,6.139306427687369,0,0,0,71,3,4,3,3,2,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.583760345358981,6.025742424869119,0,0,42.89,62.6,5,1,0,0,10,2,1,695,0,0,0 +1923,2374,4383,4384,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,6.76953842935905,6.881738890130351,1,0,-9,7,0,2,-168.1681763591974,0,0,0,65,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.818745282441149,0,1,52,47,5,1,0,0,12,2,1,1088,0,0,0 +1923,2374,4384,4383,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,46,0,-2,34.60750492327123,0,0,0,67,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,9.865515505035212,0,0,0,0,1,1,0,0,0,0,0,34.7,39.79,3,1,0,1,12,2,1,1088,0,0,0 +1924,2375,4385,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,3,7.492237538348789,7.75683084317968,0,4,0,0,0,-9,0,-1018.247309923623,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,45,36,15,1,2,-9,0,5.089563799097354,5.089563799097354,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.95,46.69,5,1,0,1,7,2,1,767,0,0,0 +1924,2375,4386,-9,4385,-9,2,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-912.7906981628755,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.02,57.3,1,1,0,0,7,2,1,767,0,0,0 +1925,2376,4387,-9,4388,4389,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.114069704574,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,1306.5,0,0,0 +1925,2376,4388,4389,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,3,8.138092761183358,8.279794942969533,0,2,0,-9,4,0,2,-91.83275400185116,0,0,1,35,2,4,1,3,3,2019,1,3,28,12,36,31,15,1,12,1,0,10.2853992701954,10.2853992701954,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.57,61.36,3,1,0,0,4,4,1,1306.5,0,0,0 +1925,2376,4389,4388,-9,-9,3,1,1,35,1,1,2,0,2,-9,2,1,0,4,8.015275063204506,8.363604745558286,0,2,0,-9,4,0,-2,56.18434922929612,0,0,0,37,1,3,1,-9,-9,2019,1,1,10,0,48,45,15,1,0,1,0,10.1936917725583,10.1936917725583,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,5,1,0,0,4,4,1,1306.5,0,0,0 +1925,2376,4390,-9,4388,4389,2,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.6729176504026,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,1306.5,0,0,0 +1926,2377,4391,4392,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.920792807854261,7.988412991175376,1,0,-9,46,0,2,-33.66684934485119,0,0,0,66,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.330348170294564,7.527050052600101,0,0,53,47,5,1,0,0,5,3,1,650,0,0,0 +1926,2377,4392,4391,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,4.479049824987411,4.652978919106349,1,0,-9,46,0,-2,-27.64413956883245,0,0,0,68,2,3,3,3,3,2019,4,2,13,1,0,35,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.398163999764394,4.545589874775128,0,0,44.38,58.1,6,1,0,0,5,3,1,650,0,0,0 +1927,2378,4393,4394,-9,-9,1,1,0,38,1,0,3,0,2,-9,8,3,1,2,0,0,0,2,0,-9,9,0,-7,0,0,0,1,45,2,4,3,2,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.04,31.61,6,1,0,0,8,1,0,1377.5,0,0,0 +1927,2378,4394,4393,-9,-9,2,1,1,45,1,0,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,9,0,7,0,0,0,0,38,2,2,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.14343389156893,2,49.46,56.91,4,2,1,0,8,1,0,1377.5,0,0,0 +1927,2378,4395,-9,4393,4394,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.9583356474944,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,1,0,1377.5,0,0,0 +1927,2378,4396,-9,4393,4394,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.3194154086,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,2,0,0,8,1,0,1377.5,0,0,0 +1928,2379,4397,4398,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,8.717393880765151,8.795813579982118,0,1,0,1,1,-9,7,106.3770927760827,0,0,0,24,2,2,1,2,2,2019,1,2,8,0,48,48,15,1,0,1,0,17.15679203240362,17.15679203240362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,747,0,0,0 +1928,2379,4398,4397,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,2,7.606000459749273,7.769684328053584,0,1,0,-9,1,-9,-7,-25.56604495289325,-9,1,1,31,2,4,1,-9,-9,2019,1,1,16,5,38,0,15,1,5,1,0,8.276289238771078,8.276289238771078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.25,28.4,5,1,0,0,4,5,1,747,0,0,0 +1929,2380,4399,-9,-9,-9,1,1,1,73,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-993.8575673295977,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.63,49.11,6,1,0,0,12,1,1,490,0,0,0 +1930,2381,4400,-9,4401,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,2,7.997982612552453,7.913552458208153,0,3,0,0,0,-9,0,-958.6535193308986,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,16,4,35,35,15,1,4,-9,1,9.773712981155729,9.773712981155729,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,57.08,1,2,0,1,7,4,0,500,0,0,0 +1930,2382,4401,-9,-9,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,6.19150473141157,6.010027715082432,3,0,0,0,-9,0,-943.2270094554051,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.88223870265784,0,0,63.55,39.7,5,1,0,0,7,2,0,328,0,0,0 +1930,2383,4402,-9,4401,-9,3,1,1,30,2,0,0,0,2,-9,2,1,0,5,7.823814221066328,7.76100641360483,0,3,0,0,0,-9,0,-1087.987588622788,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,40,40,15,1,0,-9,1,7.559660571338934,7.559660571338934,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,7,3,0,547,0,0,0 +1930,2384,4403,-9,-9,-9,4,1,0,49,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1080.582021785087,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,3,1,1,0,7,1,0,271,0,0,0 +1931,2385,4404,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,4,8.356325010326588,8.50839080698093,0,3,0,-9,0,-9,0,-964.7823576310491,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,41,0,15,1,4,-9,0,14.01366225814322,14.01366225814322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.87,59.15,5,4,0,0,8,5,0,606,0,0,0 +1932,2386,4405,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,4,8.212537605932214,8.196868101740977,0,3,0,0,0,-9,0,-987.7209805189002,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,40,28,15,1,0,-9,0,11.51669712249713,11.51669712249713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.84,41.57,5,1,0,0,13,4,1,153,0,0,0 +1933,2387,4406,4407,-9,-9,1,1,0,51,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,17,0,-4,-73.5315126088519,0,0,0,55,2,4,1,3,3,2019,3,2,6,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,1,0,0,4,4,0,712.5,0,0,0 +1933,2387,4407,4406,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,4,8.740615331393752,8.685961739603842,0,2,0,-9,7,0,4,-95.99417049376247,0,0,0,51,3,3,3,3,2,2019,2,1,9,0,35,40,15,1,1,3,0,25.03847205881453,25.03847205881453,0,0,0,0,0,0,0,1,1,0,9.563595034578874,0,0,0,53,54,6,1,0,0,4,4,0,712.5,0,0,0 +1934,2388,4408,4409,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,3,7.661852657571616,7.453622920774322,0,2,0,-9,4,0,1,0,0,0,0,42,1,3,1,-9,-9,2019,1,1,13,3,50,60,15,1,3,1,0,4.400349799646897,4.400349799646897,0,0,0,0,0,0,0,1,1,0,1.147970393889913,0,0,0,48.77,45.16,6,1,0,0,7,3,1,1391.333333333333,0,0,0 +1934,2388,4409,4408,-9,-9,1,1,0,42,1,0,1,0,1,-9,2,1,0,3,7.762609425231269,7.600790089729458,0,2,0,-9,10,0,-1,0,0,0,1,43,1,3,1,2,2,2019,1,2,10,0,35,30,15,1,0,1,0,5.014174520935804,5.014174520935804,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.6,53.68,2,1,0,0,7,3,1,1391.333333333333,0,0,0 +1934,2388,4410,-9,4409,4408,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.8678477698355,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,3,1,1391.333333333333,0,0,0 +1935,2389,4411,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,4,7.104238500016411,7.604434299478264,5.99873375985566,4,0,0,0,-9,0,-988.3564159351922,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,17,17,15,1,0,-9,0,6.0808883799529,6.0808883799529,0,0,0,0,0,0,0,1,0,1,6.314268615842968,0,0,0,57.16,56.15,6,1,0,0,12,2,0,1483.333333333333,0,0,0 +1935,2389,4412,-9,4411,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.100454550602,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,12,2,0,1483.333333333333,0,0,0 +1935,2389,4413,-9,4411,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-937.9911888762541,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,5,1,0,0,12,2,0,1483.333333333333,0,0,0 +1936,2390,4414,-9,4415,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,2,5.38685025316745,5.177740140091285,0,4,0,0,0,-9,0,-960.2714655220975,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,28,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.15,50.65,2,1,0,0,9,2,0,654,0,0,0 +1936,2390,4415,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,1,1,0,2,7.081744019390773,6.831228080327014,0,4,0,0,0,-9,0,-1081.178435236502,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,25,22,15,1,2,-9,0,4.234467117152485,4.234467117152485,0,0,0,0,0,0,0,1,1,0,0,0,1.854913662943824,3,48.15,44.59,5,1,0,0,9,2,0,654,0,0,0 +1937,2391,4416,-9,4418,4417,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.826748947107,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,7,1,0,0,12,5,1,461.5,0,0,0 +1937,2391,4417,4418,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,3,9.190938856802058,9.114649746141557,0,2,0,-9,8,0,0,-13.03941531895412,0,0,0,47,2,4,1,2,2,2019,1,1,21,9,37,48,15,1,9,1,0,25.37624639600537,25.37624639600537,0,0,0,0,0,0,0,1,1,0,8.078101719422136,0,0,0,30.85,54.89,3,1,0,0,12,5,1,461.5,0,0,0 +1937,2391,4418,4417,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,4,8.138753180799331,8.300465700982382,0,2,0,-9,8,0,0,297.8322574209424,0,0,0,47,1,3,1,3,2,2019,1,2,6,0,30,20,15,1,0,1,0,18.79255986205028,18.79255986205028,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,12,5,1,461.5,0,0,0 +1937,2391,4419,-9,4418,4417,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.591858252039,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,5,1,461.5,0,0,0 +1938,2392,4420,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1004.376406528732,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.629679951281504,0,0,0,51.41,56.15,6,1,0,0,6,1,1,323,0,0,0 +1938,2393,4421,4422,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,44,0,-8,-22.59958461660579,0,0,0,72,1,4,3,-9,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,6,3,1,886,0,0,0 +1938,2393,4422,4421,-9,-9,3,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.116649447793272,8.118936268078867,1,0,-9,44,0,8,10.55460187673001,0,0,0,64,1,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.893408149940307,0,0,63.63,51.86,6,3,0,0,6,3,1,886,0,0,0 +1939,2394,4423,4424,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.365253323507002,8.526442744586683,0,1,0,-9,31,0,-2,57.41769510631524,0,0,0,62,2,2,1,3,2,2019,1,2,11,2,45,45,15,1,2,1,0,11.29570146701497,11.29570146701497,0,0,0,0,0,0,0,0,0,0,4.926044535799355,0,0,0,50,49,5,1,0,0,5,4,1,635,0,0,0 +1939,2394,4424,4423,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,2,7.639650569374531,7.516017810421656,0,1,0,-9,30,0,2,6.080023215933832,0,0,0,60,2,3,1,-9,-9,2019,1,1,12,4,15,20,15,1,4,1,0,18.06836575810401,18.06836575810401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.3,41.76,1,1,0,0,5,4,1,635,0,0,0 +1940,2395,4425,-9,-9,-9,4,1,1,25,2,0,0,0,2,-9,2,1,0,4,7.938413070797131,7.809315013276813,0,3,0,-9,0,0,0,-1021.249784872136,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,50,45,15,1,1,-9,1,5.945995653173856,5.945995653173856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.78,52.67,3,1,0,0,4,3,1,684,0,0,0 +1941,2396,4426,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,2,7.396141691357594,7.470339688044206,0,3,0,0,0,-9,0,-946.5889809848393,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,30,30,15,1,1,-9,1,7.393382661727354,7.393382661727354,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,49.19,3,1,0,0,4,3,1,1420,0,0,0 +1942,2397,4427,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,8,3,1,1,0,6.352761692612462,6.336093501391326,4,0,0,0,-9,0,-1149.682377085449,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,38,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.313881229955348,0,0,0,11.71,50.62,1,1,0,0,10,2,0,1014.666666666667,0,0,0 +1942,2397,4428,-9,4427,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-939.7987771285931,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,10,2,0,1014.666666666667,0,0,0 +1942,2397,4429,-9,4427,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-986.7003601087221,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39,45,4,1,0,0,10,2,0,1014.666666666667,0,0,0 +1943,2398,4430,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,3,7.484394157130974,7.603539860781508,5.268081660266681,4,0,0,0,-9,0,-1029.620661328056,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,33,0,15,1,0,-9,0,6.707477582265888,6.707477582265888,0,0,0,0,0,0,0,1,1,0,5.973713559349204,0,0,0,43.55,39.41,4,1,0,0,1,3,0,525,0,0,0 +1943,2398,4431,-9,4430,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.0357214772284,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,3,0,525,0,0,0 +1944,2399,4432,4433,-9,-9,4,1,1,28,1,1,2,0,2,-9,3,3,0,5,0,0,0,2,0,-9,2,0,2,0,0,1,0,26,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.37,38.76,3,3,1,0,8,1,0,510.75,0,0,0 +1944,2399,4433,4432,-9,-9,1,1,0,26,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,-2,0,0,1,1,28,2,5,3,-9,-9,2019,4,4,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,7,3,0,0,8,1,0,510.75,0,0,0 +1944,2399,4434,-9,4433,4432,2,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.4104150935349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,0,510.75,0,0,0 +1944,2399,4435,-9,4433,4432,3,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.5119638886305,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,1,0,510.75,0,0,0 +1945,2400,4436,-9,4437,-9,2,1,0,12,2,1,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1006.725520483218,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,4,0,0,8,1,0,805.3333333333334,0,0,0 +1945,2400,4437,-9,-9,-9,1,1,0,33,2,1,2,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-944.9263901034429,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.53,37.32,5,4,0,1,8,1,0,805.3333333333334,0,0,0 +1945,2400,4438,-9,4437,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-831.6307346112335,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,805.3333333333334,0,0,0 +1946,2401,4439,4440,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,55,0,2,92.3735469190819,0,0,0,77,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.985433562414396,0,0,0,55.94,47.09,6,1,0,0,8,3,1,540.5,0,0,0 +1946,2401,4440,4439,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,8.068776839888269,7.854960324236003,1,0,-9,55,0,-2,5.735122186374291,0,0,0,79,2,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.599647758382473,7.856030690278216,0,0,46.61,41.8,6,1,0,0,8,3,1,540.5,0,0,0 +1947,2402,4441,4443,-9,-9,2,1,0,39,1,0,3,0,2,-9,1,1,0,3,8.33221083217316,8.303002571080134,0,2,0,-9,16,0,3,26.80353279378637,0,0,1,36,3,3,1,2,2,2019,1,1,10,0,35,10,15,1,0,1,0,13.66216301399113,13.66216301399113,0,0,0,0,0,0,0,1,1,0,0,0,6.89171039323536,3,58.49,31.12,5,1,0,0,2,4,0,467.6,0,0,0 +1947,2402,4442,-9,4441,4443,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.0070116443117,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,4,0,467.6,0,0,0 +1947,2402,4443,4441,-9,-9,1,1,1,36,1,0,3,0,3,-9,1,1,0,3,8.479449101645455,8.323802005703776,5.307509302721876,2,0,-9,16,0,-3,-54.06663704836041,0,0,0,39,2,3,1,-9,-9,2019,1,2,7,0,35,25,15,1,0,1,0,15.04388772359075,15.04388772359075,0,0,0,0,0,0,0,1,1,0,5.294823827184681,0,9.996474904915662,3,52.4,52.91,6,1,0,0,2,4,0,467.6,0,0,0 +1947,2402,4444,-9,4441,4443,4,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-927.7253511401713,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,4,0,467.6,0,0,0 +1947,2402,4445,-9,4441,4443,3,1,1,17,2,0,3,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1021.439631417611,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,48.86,5,1,0,0,2,4,0,467.6,0,0,0 +1948,2403,4446,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,5.07551927603534,5.201275545330124,3,0,0,0,-9,0,-971.9602031676632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.510420402460514,0,0,50,47,5,1,0,1,13,2,1,1574,0,0,0 +1949,2404,4447,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,1,1,0,2,6.863325977622982,6.925056089636844,6.161637006588016,3,0,0,0,-9,0,-944.2623523164312,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,30,36,15,1,3,-9,0,3.555573133010448,3.555573133010448,0,0,0,0,0,0,0,1,1,0,0,5.817780494445463,0,0,45.45,49.66,5,1,0,1,5,2,1,334,0,0,0 +1950,2405,4448,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,5,8.150709353632157,8.302867437990562,0,3,0,0,0,-9,0,-951.5295303403933,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,50,48,15,1,0,-9,0,12.25635622008702,12.25635622008702,0,0,0,0,0,0,0,0,0,0,3.095252745337451,0,0,0,57.06,57.76,5,1,0,0,4,5,0,4500,0,0,0 +1951,2406,4449,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,4,8.534439772147886,8.497734052775268,0,4,0,0,0,-9,0,-1006.437129822012,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,42,15,1,0,-9,0,15.25447842920549,15.25447842920549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,5,4,0,628,0,0,0 +1951,2406,4450,-9,4449,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-993.4974755197416,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,0,628,0,0,0 +1952,2407,4451,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,3,8.137197915171882,7.674500379991589,0,3,0,-9,0,-9,0,-905.3730631668398,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,4,48,0,15,1,4,-9,0,7.268261397338121,7.268261397338121,0,0,0,0,0,0,0,0,0,0,.1126004105599816,0,0,0,43.84,58.37,5,1,0,0,6,4,0,204,0,0,0 +1953,2408,4452,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-937.4349592953474,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.83,24.53,1,1,0,0,10,1,0,873,0,0,0 +1954,2409,4453,-9,4455,-9,2,1,0,25,2,0,1,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-996.0096110269644,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,22,9,0,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,61.57,6,1,0,0,12,1,1,438,0,0,0 +1954,2410,4454,-9,4455,-9,3,1,0,16,2,0,1,0,-9,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-982.9973578677073,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,12,4,1,575,0,0,0 +1954,2410,4455,4456,-9,-9,1,1,0,57,1,0,1,0,2,-9,2,1,0,4,7.692359838238049,7.915890101172154,6.765725982735427,2,0,-9,5,0,-2,-47.13754248482519,0,0,0,59,2,4,1,2,2,2019,1,4,7,0,30,34,15,1,0,1,0,8.107600968679504,8.107600968679504,0,0,0,0,0,0,0,1,1,0,7.055036182258688,0,0,0,54.2,57.49,6,1,0,0,12,4,1,575,0,0,0 +1954,2410,4456,4455,-9,-9,4,1,1,59,1,0,1,0,2,-9,2,1,0,4,8.269708389147288,8.70271109376969,0,2,0,-9,5,0,2,-18.64681649246275,0,0,0,57,2,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,1,1,0,11.74329234735085,11.74329234735085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,5,1,0,0,12,4,1,575,0,0,0 +1955,2411,4457,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,7.325498639481268,7.048270815956087,3,0,-9,0,-9,0,-975.4903812991931,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.289691490328123,0,0,43.96,55.64,6,1,0,0,9,3,1,591,0,0,0 +1955,2412,4458,-9,4457,-9,2,1,1,32,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,-9,0,-9,0,-946.3910451424844,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,6,0,0,15,1,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,57.61,3,1,0,0,9,1,1,982,0,0,0 +1956,2413,4459,-9,-9,-9,1,1,1,80,3,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1005.977631186387,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,7,1,0,55,0,0,0 +1957,2414,4460,-9,4463,4464,6,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.277305237773,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,0,575.4,0,0,0 +1957,2414,4461,-9,4463,4464,7,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1128.201255353008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,575.4,0,0,0 +1957,2414,4462,-9,4463,4464,5,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.7075451563195,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,2,0,575.4,0,0,0 +1957,2414,4463,4464,-9,-9,1,1,0,39,1,1,3,0,2,-9,2,1,0,3,6.520441812250501,6.481548498495871,0,2,0,-9,7,0,7,-104.8671064207999,0,0,1,32,2,4,1,2,-9,2019,1,2,6,0,14,0,15,1,0,1,0,5.409401526543911,5.409401526543911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,54.95,5,1,0,0,7,2,0,575.4,0,0,0 +1957,2414,4464,4463,-9,-9,2,1,1,32,1,1,3,0,2,-9,2,1,0,4,7.649635751843757,7.836377847466337,0,2,0,-9,7,0,-7,-79.15076510159109,0,0,0,39,2,3,1,-9,-9,2019,1,1,10,0,40,72,15,1,0,1,0,7.782104366380656,7.782104366380656,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,2,0,575.4,0,0,0 +1957,2415,4465,-9,4463,4464,3,1,0,20,2,1,3,0,2,-9,2,1,0,3,7.964109645233139,8.337290663369448,0,4,0,0,0,-9,0,-923.6809122308069,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,38,0,15,1,9,-9,0,7.939514104719214,7.939514104719214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.03,58.46,2,2,0,1,7,3,0,1046,0,0,0 +1958,2416,4466,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,7.420100549714101,7.581776747154132,3,0,0,0,-9,0,-1084.517368574716,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.674561828535172,0,0,43.72,55.3,4,1,0,0,10,3,1,1338,0,0,0 +1959,2417,4467,4468,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,8.281364570270942,8.246494210930724,0,1,0,-9,8,0,-1,-44.39432292072986,0,0,0,62,2,5,1,3,3,2019,1,1,5,0,37,37,15,1,0,1,0,8.818900475603408,8.818900475603408,0,0,0,0,0,0,0,0,0,0,2.750610378892404,0,0,0,60.28,46.44,6,1,0,0,12,4,1,1226.5,0,0,0 +1959,2417,4468,4467,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,5,7.124694602193239,7.586731478497544,5.508843200343803,1,0,-9,8,0,1,22.85996002905794,0,0,0,61,2,4,1,2,3,2019,1,2,6,0,22,18,15,1,0,1,0,6.242062809606316,6.242062809606316,0,0,0,0,0,0,0,0,0,0,2.627583438753122,5.624405949080308,0,0,54.1,59.11,7,1,0,0,12,4,1,1226.5,0,0,0 +1960,2418,4469,-9,-9,-9,1,1,0,73,2,0,0,0,1,-9,2,1,0,3,8.078775528863055,8.986922914883708,8.108178515647193,3,0,0,0,-9,0,-976.1341774310333,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,5,8,15,1,5,-9,0,72.51781810386194,72.51781810386194,0,0,0,0,0,0,0,1,1,0,7.054844150847138,8.312842317284359,0,0,46.1,40.59,6,1,0,0,12,5,1,359,0,0,0 +1961,2419,4470,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,5.654288245684224,5.656287302120339,3,0,0,0,-9,0,-915.6108901407696,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.110287590342254,5.325752470846307,0,0,51.81,46.85,6,1,0,0,8,2,1,147,0,0,0 +1962,2420,4471,4473,4475,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,2,7.079982938035392,6.837403639129663,0,2,0,-9,7,0,3,113.4277556782803,0,0,1,29,2,3,1,2,-9,2019,1,3,23,10,17,0,15,1,10,1,0,6.425913454486575,6.425913454486575,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.63,50.7,4,1,0,0,7,3,1,340.75,0,0,0 +1962,2420,4472,-9,4471,4473,2,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-851.403407813241,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,1,340.75,0,0,0 +1962,2420,4473,4471,-9,-9,3,1,1,29,1,0,2,0,2,-9,2,1,0,3,7.732893717216676,7.834925858926304,0,2,0,-9,7,0,-3,96.23566436451812,0,1,0,32,2,2,1,-9,-9,2019,1,1,17,5,35,35,15,1,5,1,0,8.398490501174399,8.398490501174399,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.87,45.28,2,1,0,0,7,3,1,340.75,0,0,0 +1962,2420,4474,-9,4471,4473,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.053590119477,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,1,340.75,0,0,0 +1962,2421,4475,-9,-9,-9,5,1,0,60,3,0,2,0,2,-9,2,1,0,2,8.002075806445193,8.28297524398077,0,4,0,0,0,-9,0,-984.1900762820197,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,37,15,1,0,-9,0,9.597807505115282,9.597807505115282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.74,40.91,6,1,0,0,7,3,1,725,0,0,0 +1963,2422,4476,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1047.502952558392,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.09,25.28,3,1,0,0,13,1,1,421,0,0,0 +1964,2423,4477,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,1,1,0,5,9.39095631547603,9.686801052108768,0,3,0,0,0,-9,0,-1040.601143344917,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,40,20,15,1,0,-9,0,42.05317985295913,42.05317985295913,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,3,0,0,8,5,0,77,0,0,0 +1965,2424,4478,4479,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.446362233039153,7.893625150514387,0,1,0,-9,5,0,0,-70.72701427881427,0,0,0,53,2,5,1,2,2,2019,1,3,15,4,26,27,15,1,4,1,0,13.69919912026441,13.69919912026441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.23,33.54,4,1,0,0,12,3,0,798,0,0,0 +1965,2424,4479,4478,-9,-9,3,1,1,53,1,0,0,0,2,-9,1,1,0,5,7.152898855505775,6.899018141899026,0,1,0,-9,5,0,0,-29.604105611739,0,0,0,53,2,2,1,-9,-9,2019,1,1,6,0,40,39,15,1,0,1,0,3.075277922346408,3.075277922346408,0,0,0,0,0,0,0,0,0,0,0,0,76.14772030795835,3,58.05,54.52,6,1,0,0,12,3,0,798,0,0,0 +1966,2425,4480,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.029765861405538,8.321206663427498,0,3,0,-9,0,-9,0,-1020.502162189651,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,0,15,1,0,-9,0,12.52019602274843,12.52019602274843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,46.03,6,4,0,0,8,4,0,134,0,0,0 +1967,2426,4481,-9,4484,4482,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.409338448108,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,559,0,0,0 +1967,2426,4482,4484,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,3,8.143510044857388,8.18367639263669,0,2,0,-9,11,0,1,45.08715173230156,0,0,0,33,1,4,1,1,2,2019,1,1,12,0,43,40,15,1,0,1,0,11.29716686282018,11.29716686282018,0,0,0,0,0,0,0,1,1,0,.7768560583992011,0,0,0,54.37,54.8,5,1,0,0,7,4,1,559,0,0,0 +1967,2426,4483,-9,4484,4482,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-857.1437158052943,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,559,0,0,0 +1967,2426,4484,4482,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,4,7.812100981401038,7.664118402085311,0,2,0,-9,11,0,-1,-65.41582401701784,0,0,1,34,2,3,1,2,2,2019,1,2,14,3,20,22,15,1,3,1,0,16.18482253704938,16.18482253704938,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.97,58.59,6,1,0,0,7,4,1,559,0,0,0 +1968,2427,4485,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1032.553722026153,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,38.46,5,1,0,0,13,1,0,912,0,0,0 +1969,2428,4486,-9,4488,4487,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,2.707713001050853,2.867383414811359,2,0,0,0,-9,0,-1056.158820478947,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.887937535333103,0,0,0,57.57,46.51,2,1,0,0,8,5,1,782.6666666666666,0,0,0 +1969,2428,4487,4488,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,5,9.649837069478385,9.656344235487738,0,2,0,-9,23,0,3,80.25609471342618,0,0,0,48,2,4,3,3,3,2019,2,2,11,0,50,50,15,1,0,3,0,36.84660220077978,36.84660220077978,0,0,0,0,0,0,0,0,0,0,5.759963052443487,0,0,0,55.53,46.14,5,1,0,0,8,5,1,782.6666666666666,0,0,0 +1969,2428,4488,4487,-9,-9,2,1,0,48,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-3,-112.1835257649929,0,0,0,51,1,5,1,3,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10.19013043113955,0,8.048424695812351,3,57.16,56.15,7,1,0,0,8,5,1,782.6666666666666,0,0,0 +1969,2429,4489,-9,4488,4487,3,1,1,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1034.06279901617,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.962886465198212,0,0,0,54.7,49.24,6,1,0,0,8,1,1,164,0,0,0 +1970,2430,4490,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,4,8.75099086406002,8.824771154968534,0,3,0,0,0,-9,0,-901.5874232779277,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,16.34576952553581,16.34576952553581,0,0,0,0,0,0,0,0,0,0,4.791545769171296,0,0,0,48.5,55.84,6,1,0,0,13,5,1,778,0,0,0 +1971,2431,4491,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,1,1,0,4,7.393161543658711,6.906582328341868,0,3,0,0,0,-9,0,-1070.312542823138,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,4,30,50,15,1,4,-9,0,4.870109195098511,4.870109195098511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.22,56.91,3,4,0,0,12,2,0,668,0,0,0 +1972,2432,4492,4493,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,3,8.348405087809503,8.237297794292815,0,2,0,-9,27,0,-1,-32.36387103517603,0,0,0,51,2,4,1,2,2,2019,1,1,9,1,35,35,15,1,1,1,0,11.43575884624325,11.43575884624325,0,0,0,0,0,0,0,1,1,0,3.246762727771993,0,0,0,55.2,39.26,6,1,0,0,6,5,1,251.5,0,0,0 +1972,2432,4493,4492,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,4,8.652450810033713,8.678066004160657,0,2,0,-9,27,0,1,-20.05174193024763,0,0,0,50,2,3,1,2,3,2019,1,2,10,0,37,37,15,1,0,1,0,22.01390321402015,22.01390321402015,0,0,0,0,0,0,0,1,1,0,.1065532781433218,0,0,0,57.16,56.15,4,1,0,0,6,5,1,251.5,0,0,0 +1972,2432,4494,-9,4492,4493,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.0334457554981,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,5,1,251.5,0,0,0 +1972,2432,4495,-9,4492,4493,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.395776677707,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,5,1,251.5,0,0,0 +1973,2433,4496,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,1,6.896923999883423,7.007748646697399,0,3,0,0,0,-9,0,-964.0297327947955,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,28,12,18,18,15,1,12,-9,0,8.252920734779959,8.252920734779959,0,0,0,0,0,0,0,1,1,0,0,0,15.64483169858408,3,22.44,31.88,4,2,0,0,8,2,0,3041,0,0,0 +1974,2434,4497,4498,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,7.864305219763279,8.131692508318411,1,0,-9,4,0,10,85.52631583894599,0,0,0,70,1,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.907711135700985,7.7386175585717,0,0,63.25,20.95,6,1,0,0,11,4,1,611.5,0,0,0 +1974,2434,4498,4497,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,2,0,7.08692233805214,7.372158621935747,1,0,-9,4,0,-10,58.44695303190387,0,0,0,80,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,12.12103242620769,0,0,2.291588476158727,0,1,1,0,3.625118869892633,7.515097148702582,0,0,44.32,32.67,7,1,0,0,11,4,1,611.5,0,0,0 +1975,2435,4499,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,3,0,6.930794293218178,7.312680368621273,3,0,0,0,-9,0,-939.5968942781532,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.486584300405791,7.227331437373875,0,0,62.97,33.31,6,1,0,0,9,3,1,623,0,0,0 +1976,2436,4500,4501,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,7.373574937342134,7.537835253864849,1,0,-9,42,0,0,49.06542536283396,0,0,0,66,1,4,3,3,-9,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.706415960838055,7.924160963067967,0,0,55.36,51.57,6,1,0,0,7,3,1,1253,0,0,0 +1976,2436,4501,4500,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,7.146515134782531,7.533424408142714,1,0,-9,42,0,0,-84.00489226582202,0,0,0,66,1,3,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.161273229456751,7.150192479482851,0,0,54.77,55.87,6,1,0,0,7,3,1,1253,0,0,0 +1977,2437,4502,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,2,0,7.404532742304281,7.263717053259191,3,0,-9,0,1,0,-1018.301325258745,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.380231419806743,0,0,25.26,31.88,5,1,0,0,12,3,1,584,0,0,0 +1978,2438,4503,-9,4504,4505,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.516855261942,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,826.6666666666666,0,0,0 +1978,2438,4504,4505,-9,-9,2,1,0,32,1,1,1,0,2,-9,2,1,0,4,8.199475917777251,8.061678864150318,0,2,0,-9,4,0,-2,122.0822452344869,0,0,1,34,1,3,1,-9,-9,2019,1,1,8,0,23,23,15,1,0,1,0,16.65747380207879,16.65747380207879,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,6,5,1,826.6666666666666,0,0,0 +1978,2438,4505,4504,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,3,8.826057031168276,9.098013959319031,0,2,0,-9,4,0,2,19.84572881390092,0,0,0,32,2,4,1,2,2,2019,1,2,5,0,44,41,15,1,0,1,0,20.81307525445937,20.81307525445937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,6,5,1,826.6666666666666,0,0,0 +1979,2439,4506,4507,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,6.920715508420356,6.710758841891595,1,0,-9,51,0,-2,-79.09858589345281,0,0,0,80,3,1,3,3,-9,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.527730656611646,6.859220055074102,0,1,42.85,38.11,6,1,0,0,12,2,1,672.5,0,0,0 +1979,2439,4507,4506,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,1,0,6.535190460414977,6.151922984560691,1,0,-9,51,0,2,-90.18272983326995,0,0,0,78,2,3,3,3,3,2019,4,1,23,11,0,0,15,4,11,4,0,0,0,1,17.30396965217716,100.7568010023835,0,0,0,153.3954740587236,1,1,0,5.962558815602025,6.620219653406047,0,0,40.41,20,3,1,0,0,12,2,1,672.5,0,0,0 +1980,2440,4508,4509,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,3,8.296407364599109,7.982728291315691,0,1,0,-9,35,0,-1,11.65469085512903,0,0,0,57,1,5,1,2,2,2019,1,1,11,0,30,32,15,1,0,1,0,10.80691711544144,10.80691711544144,0,0,0,0,0,0,0,0,0,0,5.6175970639875,0,0,0,51.58,50.6,5,1,0,0,11,5,1,718,0,0,0 +1980,2440,4509,4508,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,5,8.983665164692425,8.826422827198616,0,1,0,-9,35,0,1,92.71091292939998,0,0,0,56,1,3,1,2,2,2019,1,2,5,0,18,20,15,1,0,1,0,31.08485871414858,31.08485871414858,0,0,0,0,0,0,0,0,0,0,7.541968208076721,0,0,0,59.43,58.05,6,1,0,0,11,5,1,718,0,0,0 +1980,2441,4510,-9,4509,4508,3,1,0,19,2,0,0,0,2,-9,2,1,0,3,5.505150723580905,5.42608593222779,0,3,0,0,0,-9,0,-1053.060556160354,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,7,7,25,15,1,7,-9,1,4.147512118297491,4.147512118297491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.52,63.65,5,1,0,0,11,2,1,146,0,0,0 +1980,2442,4511,-9,4509,4508,4,1,0,18,2,0,0,0,2,1,2,1,0,3,7.250458511491622,7.387978454004505,0,3,0,0,0,-9,0,-936.7897560775606,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,22,0,15,1,0,-9,1,7.076167902092637,7.076167902092637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.41,26.84,5,1,0,0,11,3,1,734,0,0,0 +1981,2443,4512,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,5,0,6.466766536691213,6.526387672723642,3,0,0,0,-9,0,-964.886639416703,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,9.370085030242885,0,0,0,1,1,0,0,6.390754016430935,0,0,53.11,32.53,7,1,0,0,10,2,1,433,0,0,0 +1981,2444,4513,-9,4512,-9,2,1,1,59,2,0,0,0,2,-9,3,3,0,3,0,6.820224091325913,7.001935008986796,3,0,0,0,-9,0,-1053.645862140985,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,7.124007884615771,0,0,58.72,48.95,1,1,1,0,10,2,1,169,0,0,0 +1982,2445,4514,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,7.194394615025606,6.929931814899625,3,0,-9,0,-9,0,-1003.999008604683,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.66456773703238,6.794453573853505,0,0,44.83,41.9,6,1,0,0,9,2,1,1015,0,0,0 +1983,2446,4515,4516,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.612003826812964,8.496596416698685,0,2,0,-9,1,-9,0,-54.32852818570834,-9,0,0,43,2,4,1,-9,-9,2019,1,1,12,1,45,0,15,1,1,1,0,14.93342725711344,14.93342725711344,0,0,0,0,0,0,0,0,0,0,3.431190349079639,0,0,0,47.15,55.39,4,1,0,0,7,4,1,1620.75,0,0,0 +1983,2446,4516,4515,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.251265082068695,8.214699719324706,0,2,0,-9,6,-9,0,-163.0742155065504,-9,0,1,43,2,4,1,2,2,2019,1,2,9,0,27,0,15,1,0,1,0,15.68199246364325,15.68199246364325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,7,4,1,1620.75,0,0,0 +1983,2446,4517,-9,4516,4515,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-936.8845813817941,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1620.75,0,0,0 +1983,2446,4518,-9,4516,4515,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1022.406325107598,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,7,4,1,1620.75,0,0,0 +1984,2447,4519,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-954.912585393314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9999309107157712,0,0,0,23.93,39.46,2,1,0,0,8,1,0,721,0,0,0 +1985,2448,4520,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-928.4592679457379,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,35.14,5,1,0,0,12,1,0,440,0,0,0 +1986,2449,4521,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-896.8747957188918,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,4,0,0,15,4,4,-9,0,0,0,1,26.63237717462071,0,0,0,0,0,1,1,0,0,0,0,0,25.52,25.15,1,1,0,1,11,1,1,1044,0,0,0 +1987,2450,4522,-9,4525,4523,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.188133818233,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,533.5,0,0,0 +1987,2450,4523,4525,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.652971041419379,8.500672041351537,0,2,0,-9,9,0,2,122.2335597580359,0,0,0,43,1,3,1,2,2,2019,1,1,15,4,43,44,15,1,4,1,0,14.91995604356438,14.91995604356438,0,0,0,0,0,0,0,1,1,0,8.101237835349691,0,0,0,55.1,47.5,6,1,0,0,2,5,1,533.5,0,0,0 +1987,2450,4524,-9,4525,4523,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.0954092529688,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,533.5,0,0,0 +1987,2450,4525,4523,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,3,9.894262724968851,9.623246426339994,0,2,0,-9,9,0,-2,-43.78324442094112,0,0,1,45,2,4,1,3,2,2019,1,2,11,0,30,21,15,1,0,1,0,59.57733568888683,59.57733568888683,0,0,0,0,0,0,0,1,1,0,1.861521183520179,0,0,0,56.26,38.87,6,1,0,0,2,5,1,533.5,0,0,0 +1988,2451,4526,4527,-9,-9,2,1,1,67,1,0,0,0,3,-9,2,1,0,3,8.623926645566115,8.81372165241814,6.788686630759474,1,0,-9,31,0,-3,-88.47839321788693,0,0,0,70,1,3,3,2,3,2019,2,1,6,0,37,37,15,1,0,4,0,16.59080168419949,16.59080168419949,0,0,0,0,0,0,0,1,1,0,3.251486516848075,7.18915668753271,0,0,54.69,39.52,6,1,0,0,4,5,1,479,0,0,0 +1988,2451,4527,4526,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,3,8.292715809590842,8.413694920812841,6.431531096171655,1,0,-9,31,0,3,67.22592695943266,0,0,0,67,3,3,1,3,3,2019,3,2,11,0,15,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.714384300430942,0,0,56.19,41.56,6,1,0,0,4,5,1,479,0,0,0 +1989,2452,4528,4529,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.713342778977523,7.916256246190146,0,1,0,-9,9,0,-4,90.99137946254919,0,0,0,62,2,3,3,3,3,2019,2,1,6,0,30,30,15,1,0,4,0,8.729691239478147,8.729691239478147,0,0,0,0,0,0,0,1,1,0,1.105282598173162,0,0,0,57.16,56.15,6,1,0,0,12,4,1,593.5,0,0,0 +1989,2452,4529,4528,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,7.914501046404857,7.452151913104914,1,0,-9,39,0,4,-49.81692666577224,0,0,0,58,2,4,1,2,2,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.271733191033991,7.70651832381543,0,0,57.33,53.46,7,1,0,0,12,4,1,593.5,0,0,0 +1990,2453,4530,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-970.028452750006,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.667420454987043,0,0,0,41.74,57.7,5,1,0,0,10,1,0,654,0,0,0 +1991,2454,4531,-9,-9,-9,1,1,0,65,2,0,0,0,2,-9,4,3,0,2,0,7.967857089260885,7.557786334888626,3,0,0,0,-9,0,-1034.755849271489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.259569198634217,7.985059878261211,0,0,16.1,57.61,2,1,0,0,9,3,1,215,0,0,0 +1992,2455,4532,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,1,1,0,4,7.579251233464213,7.526753401064266,0,3,0,0,0,-9,0,-1140.895237159252,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,25,20,15,1,0,-9,0,9.458476013622994,9.458476013622994,0,0,0,0,0,0,0,1,1,0,6.470384900998829,0,9.742081659298798,3,55.19,54.26,5,1,0,0,10,3,1,279,0,0,0 +1993,2456,4533,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,4,9.159801841288608,8.929629014461129,0,3,0,0,0,-9,0,-950.9659474962559,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,40,50,15,1,0,-9,0,22.63752493649778,22.63752493649778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,1111,0,0,0 +1993,2457,4534,-9,-9,4533,2,1,1,20,2,0,0,1,2,0,7,2,0,3,0,6.047676684434795,5.941971781014462,3,0,0,0,-9,0,-939.9992124818262,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.932694249525287,0,0,0,52.99,51.28,6,1,0,0,4,2,1,413,0,0,0 +1994,2458,4535,4536,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,5,9.296348515660595,9.448063906892312,0,2,0,-9,20,0,-4,1.608111252707078,0,0,1,42,1,4,1,1,1,2019,1,2,11,1,50,50,15,1,1,1,0,23.4985284473019,23.4985284473019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,61.22,6,1,0,0,6,5,1,405,0,0,0 +1994,2458,4536,4535,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,20,0,4,31.18822059793513,0,0,0,38,1,5,1,2,3,2019,1,1,10,0,0,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.87,53.44,6,1,0,0,6,5,1,405,0,0,0 +1994,2458,4537,-9,4535,4536,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.9426456768057,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,6,5,1,405,0,0,0 +1994,2458,4538,-9,4535,4536,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.466470806857,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,405,0,0,0 +1995,2459,4539,4540,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,4,7.973850931460877,8.398747175910845,0,1,0,-9,31,0,3,-130.7798429692065,0,0,0,54,1,3,3,-9,3,2019,2,2,11,0,15,10,15,1,0,4,0,23.35440602688329,23.35440602688329,0,0,0,0,0,0,0,0,0,0,4.753575869210329,0,0,0,51.49,57.57,6,1,0,0,12,3,1,423,0,0,0 +1995,2459,4540,4539,-9,-9,2,1,0,54,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,31,0,-3,-7.656590796840309,0,0,0,57,1,4,1,3,1,2019,3,1,19,8,0,0,15,4,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.399279091913207,3,44.16,58.02,4,1,0,0,12,3,1,423,0,0,0 +1996,2460,4541,-9,-9,-9,1,1,0,44,3,0,0,0,1,-9,2,1,0,4,9.034629752133448,9.099078077816964,0,3,0,0,0,-9,0,-1078.027778215503,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,60,15,1,0,-9,0,19.90305580444956,19.90305580444956,0,0,0,0,0,0,0,0,0,0,3.945970382038917,0,19.91734919864238,3,47.55,52.2,5,1,0,0,13,5,1,170,0,0,0 +1997,2461,4542,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,3.036474728049305,3.10874722134739,3,0,-9,0,-9,0,-969.1614660190153,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.867958491547869,3.589176639333315,0,0,52,45,6,1,0,0,7,2,1,792,0,0,0 +1998,2462,4543,4544,-9,-9,2,1,0,65,1,1,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,48,0,-10,0,0,0,0,75,2,2,3,3,2,2019,4,1,15,5,0,0,15,3,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.07137181520781,3,46,36,6,3,0,0,8,1,0,648.5,0,0,0 +1998,2462,4544,4543,-9,-9,1,1,1,75,1,1,1,0,2,-9,4,3,0,2,0,0,0,2,0,-9,48,0,10,0,0,0,0,65,3,2,3,3,3,2019,4,2,8,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.68,20.81,6,3,0,0,8,1,0,648.5,0,0,0 +1998,2463,4545,-9,4546,4547,5,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1062.011797470279,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,4,0,980.6666666666666,0,0,0 +1998,2463,4546,4547,-9,-9,4,1,0,27,1,1,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,0,-66.45455610522583,-9,1,1,27,1,3,1,-9,-9,2019,3,3,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,5,3,0,0,8,4,0,980.6666666666666,0,0,0 +1998,2463,4547,4546,4543,4544,3,1,1,27,1,1,1,0,1,-9,2,1,0,3,8.687346091827701,8.726695469744055,0,2,0,1,1,-9,0,19.92848565207985,0,1,0,27,1,3,3,3,2,2019,2,4,11,0,35,36,15,1,0,3,0,26.40514820791418,26.40514820791418,0,0,0,0,0,0,0,1,1,0,0,0,10.88922948197469,3,46.86,55.66,3,3,0,0,8,4,0,980.6666666666666,0,0,0 +1999,2464,4548,4549,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,7.232326066275091,6.907296585281534,1,0,-9,44,0,14,-52.68702732004871,0,0,0,64,2,4,1,3,3,2019,3,2,9,1,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1.707690844482697,6.696865105334273,0,0,59.26,43.15,6,1,0,0,7,2,1,266,0,0,0 +1999,2464,4549,4548,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,4,6.309078347202382,6.273809005465251,0,1,0,-9,10,0,-14,-44.87244732533073,0,0,0,78,2,3,3,-9,-9,2019,2,1,17,5,8,0,15,1,5,4,0,5.775999067390401,5.775999067390401,0,0,0,0,0,0,0,1,1,0,2.760203669650859,0,47.63252134566818,2,44.26,59.43,5,1,0,0,7,2,1,266,0,0,0 +2000,2465,4550,4552,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,4,7.613642935368909,7.69766958747355,0,2,0,-9,23,0,0,-15.91654533126615,0,0,0,60,2,4,1,2,2,2019,1,2,6,0,25,29,15,1,0,1,0,10.0886117575579,10.0886117575579,0,0,0,0,0,0,0,0,0,0,3.96088343086592,0,0,0,57.16,56.15,6,1,0,0,5,5,1,554.6666666666666,0,0,0 +2000,2465,4551,-9,4550,4552,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,4.276749258077145,3.872778990472645,0,2,0,0,0,-9,0,-1088.193381850652,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013858655788127,0,0,0,48.87,58.55,6,1,0,0,5,5,1,554.6666666666666,0,0,0 +2000,2465,4552,4550,-9,-9,2,1,1,60,1,0,1,0,2,-9,2,1,0,4,9.163299466217833,9.272885772372165,0,2,0,-9,9,0,9,16.58067876675386,0,0,0,51,1,4,1,-9,-9,2019,1,1,8,0,43,40,15,1,0,1,0,26.10355361950995,26.10355361950995,0,0,0,0,0,0,0,0,0,0,4.40166491829252,0,0,0,54.2,57.49,6,1,0,0,5,5,1,554.6666666666666,0,0,0 +2001,2466,4553,-9,4554,4556,2,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1044.2903593879,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,8,5,1,654.25,0,0,0 +2001,2466,4554,4556,-9,-9,1,1,0,46,1,0,2,0,1,-9,1,1,0,5,9.577642734894685,9.766076916929608,5.690864910564864,2,0,-9,2,0,-10,3.321727594476021,0,0,0,56,1,4,1,3,3,2019,1,4,7,0,37,40,15,1,0,1,0,48.37462297407607,48.37462297407607,0,0,0,0,0,0,0,0,0,0,0,6.112735283570856,0,0,57.06,57.76,6,1,0,0,8,5,1,654.25,0,0,0 +2001,2466,4555,-9,4554,4556,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.3171904935224,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,654.25,0,0,0 +2001,2466,4556,4554,-9,-9,4,1,1,56,1,0,2,0,1,-9,2,1,0,4,9.654244416767632,9.868899818794262,6.647897543340845,2,0,-9,2,0,10,12.65019236896441,-9,0,0,46,1,5,1,-9,-9,2019,1,1,4,0,40,0,15,1,0,1,0,43.29408544403223,43.29408544403223,0,0,0,0,0,0,0,0,0,0,9.094153948797107,6.88449018314017,0,0,57.16,56.15,6,1,0,0,8,5,1,654.25,0,0,0 +2002,2467,4557,4558,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.67923668609723,8.282136527504337,6.139513377775801,1,0,-9,5,0,2,-30.02906522922557,0,0,0,55,1,3,1,2,2,2019,1,3,5,0,35,35,15,1,0,1,0,15.81013691347543,15.81013691347543,0,0,0,0,0,0,0,0,0,0,5.487039681696009,5.717022748557495,10.57985664672185,3,61.12,51.57,7,4,0,0,8,5,1,476.5,0,0,0 +2002,2467,4558,4557,-9,-9,3,1,1,55,1,0,0,0,1,-9,2,1,0,3,9.147654255001232,8.96556904414075,0,1,0,-9,5,0,-2,57.71510372668129,0,0,0,57,2,4,1,-9,-9,2019,1,1,9,1,40,41,15,1,1,1,0,22.50814801137791,22.50814801137791,0,0,0,0,0,0,0,0,0,0,9.060599493991404,0,0,0,54.96,53.17,6,4,0,0,8,5,1,476.5,0,0,0 +2002,2468,4559,-9,4557,4558,2,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.874502563915316,8.506318527802373,0,3,0,0,0,-9,0,-1045.918175232378,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,3,45,50,15,1,3,-9,1,17.38034078576306,17.38034078576306,0,0,0,0,0,0,0,0,0,0,.1279842850895074,0,0,0,39.33,58.88,5,4,0,0,8,5,1,579,0,0,0 +2003,2469,4560,4561,-9,-9,2,1,0,30,1,0,0,0,1,1,2,1,0,5,8.648169093300499,8.59733598245602,0,1,0,-9,4,0,-4,-43.88738561756315,-9,0,1,34,1,4,1,-9,-9,2019,1,1,7,0,39,0,15,1,0,1,0,15.15724598916268,15.15724598916268,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,2,0,0,9,5,1,696,0,0,0 +2003,2469,4561,4560,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,8.904627499467207,9.055822319290307,0,1,0,-9,4,0,4,-20.87311669009802,0,0,0,30,1,5,1,2,2,2019,1,2,10,2,39,39,15,1,2,1,0,24.93581532575663,24.93581532575663,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,6,1,0,0,9,5,1,696,0,0,0 +2004,2470,4562,4563,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,2,0,8.005359950087232,7.874838942238697,1,0,-9,47,0,6,37.38611205152463,0,0,0,67,1,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.775249106282265,7.786811476965892,0,0,56.74,44.56,6,1,0,0,7,3,1,2536.5,0,0,0 +2004,2470,4563,4562,-9,-9,1,1,0,67,1,0,0,0,1,-9,1,1,0,4,4.067787142432826,5.603642967768552,5.703613271493919,1,0,-9,47,0,-6,-30.73962308720433,0,0,0,73,1,2,3,2,1,2019,2,2,14,4,1,0,15,1,4,4,0,6.358885735119396,6.358885735119396,0,0,0,0,0,0,0,1,1,0,5.782154789611893,5.435676263714931,0,0,47.89,56.25,6,1,0,0,7,3,1,2536.5,0,0,0 +2005,2471,4564,4565,-9,-9,1,1,0,59,1,0,1,0,1,-9,2,1,0,2,5.960179821432257,5.566036873119979,0,2,0,-9,35,0,1,84.95567789058461,0,0,0,58,2,4,1,2,2,2019,1,2,14,2,9,17,15,1,2,1,0,4.38205838354444,4.38205838354444,0,0,0,0,0,0,0,1,1,0,6.701011355217755,0,.1291442046247431,3,52.99,38.05,3,1,0,0,9,5,1,527.3333333333334,0,0,0 +2005,2471,4565,4564,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,4,9.396849716904699,9.407623326071302,0,2,0,-9,35,0,-1,-11.54477940829108,0,0,0,59,1,2,1,3,2,2019,1,1,6,0,54,49,15,1,0,1,0,22.99624272538496,22.99624272538496,0,0,0,0,0,0,0,1,1,0,.6070102070525105,0,0,0,50.91,54.79,6,1,0,0,9,5,1,527.3333333333334,0,0,0 +2005,2471,4566,-9,4564,4565,8,1,0,16,2,0,1,1,2,-9,7,2,0,4,4.267837687646648,4.180689351375194,0,2,0,0,0,-9,0,-961.683071628461,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,3,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,5,1,0,0,9,5,1,527.3333333333334,0,0,0 +2005,2472,4567,-9,4564,4565,3,1,0,30,2,0,1,0,1,1,2,1,0,2,7.36230248581078,7.447113390577352,0,3,0,0,0,-9,0,-1000.649673173202,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,27,0,15,1,5,-9,1,6.600937445085481,6.600937445085481,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.83,55.87,6,1,0,0,9,3,1,163,0,0,0 +2005,2473,4568,4569,4564,4565,5,1,0,27,1,0,1,0,1,-9,2,1,0,2,8.497892148587825,8.462385864114218,0,2,0,-9,7,0,-3,-14.89594818474918,0,1,1,30,1,4,1,1,2,2019,1,4,9,1,43,42,15,1,1,1,0,12.05249223668982,12.05249223668982,0,0,0,0,0,0,0,1,1,0,.7771231488653392,0,0,0,39.88,52.43,4,1,0,0,9,4,1,517,0,0,0 +2005,2473,4569,4568,-9,-9,4,1,1,30,1,0,1,0,1,-9,2,1,0,4,7.444134876104002,7.307947288800539,0,2,0,-9,7,0,3,94.53927682350731,0,0,0,27,1,2,1,2,2,2019,1,5,14,2,23,23,15,1,2,1,0,8.657380577478079,8.657380577478079,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.15,58.69,3,1,0,0,9,4,1,517,0,0,0 +2005,2474,4570,-9,4564,4565,6,1,1,22,2,0,1,0,2,-9,2,1,0,4,7.979096430881285,8.437746294396566,0,3,0,0,0,-9,0,-942.0075038177255,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,37,30,15,1,4,-9,1,8.128536433624401,8.128536433624401,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.38,63.46,6,1,0,0,9,4,1,232,0,0,0 +2006,2475,4571,4573,-9,-9,2,1,1,48,1,0,4,0,1,-9,2,1,0,4,9.098460360009874,9.363745135030968,0,2,0,-9,19,0,6,-21.24066058500362,0,0,0,42,2,5,1,2,2,2019,1,1,16,4,45,44,15,1,4,1,0,26.80522362583954,26.80522362583954,0,0,0,0,0,0,0,1,1,0,5.510907208514741,0,5.022430982030502,3,39.93,57.25,5,1,0,0,2,4,1,1403.5,0,0,0 +2006,2475,4572,-9,4573,4571,5,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-889.2336585718095,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,4,1,1403.5,0,0,0 +2006,2475,4573,4571,-9,-9,1,1,0,42,1,0,4,0,2,-9,2,1,0,5,8.042206991169214,7.762347206857584,0,2,0,-9,19,0,-6,7.782269240040513,0,0,1,48,1,4,1,2,2,2019,1,2,8,2,17,32,15,1,2,1,0,18.2300815183604,18.2300815183604,0,0,0,0,0,0,0,1,1,0,2.671057460445843,0,0,0,60.32,48.05,6,1,0,0,2,4,1,1403.5,0,0,0 +2006,2475,4574,-9,4573,4571,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.384800552971,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,1403.5,0,0,0 +2007,2476,4575,-9,4577,4578,2,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-997.2498264172719,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,3,0,0,4,3,1,592,0,0,0 +2007,2476,4576,-9,4577,4578,4,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1086.62703737468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,3,0,0,4,3,1,592,0,0,0 +2007,2476,4577,4578,-9,-9,3,1,0,25,1,2,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-5,46.06314101634455,0,1,1,30,2,2,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.93,36.84,5,3,0,0,4,3,1,592,0,0,0 +2007,2476,4578,4577,-9,-9,1,1,1,30,1,2,2,0,2,-9,2,1,0,2,8.175923821733646,8.338229621342796,0,2,0,-9,5,0,5,-26.23707998278582,0,0,0,25,2,4,3,2,2,2019,2,3,6,0,35,37,15,1,0,3,0,13.38243600080298,13.38243600080298,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,49.11,6,3,0,0,4,3,1,592,0,0,0 +2008,2477,4579,4580,-9,-9,1,1,0,60,1,0,0,0,3,-9,4,3,0,3,0,5.946750753544259,6.082730887582112,1,0,-9,42,0,0,-29.86043824583186,0,0,0,60,1,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.543229609044054,5.716781446365415,0,0,57.33,53.46,6,1,0,0,5,5,1,407.5,0,0,0 +2008,2477,4580,4579,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,4,0,8.832487248442996,9.021890851337231,1,0,-9,42,0,0,9.673494179904912,0,0,0,60,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.573421265736252,0,0,55.76,52.64,6,1,0,0,5,5,1,407.5,0,0,0 +2009,2478,4581,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,3,7.755706966804973,8.41252713132916,6.751350179287439,3,0,0,0,-9,0,-1000.415415319665,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,48,32,15,1,0,-9,0,5.617467830007969,5.617467830007969,0,0,0,0,0,0,0,1,1,0,0,7.482238736021117,13.20016875519992,3,55.96,49.93,4,1,0,0,12,4,0,414,0,0,0 +2010,2479,4582,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,5.715191460017689,5.596406074377859,3,0,0,0,-9,0,-867.8499527982362,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.366695953148797,6.759207747939578,3,57.33,53.46,6,1,0,0,1,2,1,1698,0,0,0 +2011,2480,4583,4584,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.928472119919003,7.775630261207533,0,1,0,-9,6,0,0,-100.6218606538434,0,0,0,53,2,4,1,2,-9,2019,1,2,18,6,38,38,15,1,6,1,0,8.250538246351784,8.250538246351784,0,0,0,0,0,0,0,0,0,0,6.84677468286323,0,0,0,40.65,57.36,6,1,0,0,10,5,1,328,0,0,0 +2011,2480,4584,4583,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.199632848197103,9.276910647531251,0,1,0,-9,6,0,0,62.68303844673533,0,0,0,53,2,3,1,-9,-9,2019,1,1,7,0,41,38,15,1,0,1,0,29.20738031093492,29.20738031093492,0,0,0,0,0,0,0,0,0,0,6.895618489921231,0,0,0,46.39,60.99,6,1,0,0,10,5,1,328,0,0,0 +2012,2481,4585,4586,-9,-9,1,1,0,75,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,54,0,0,0,0,0,0,75,2,1,3,2,2,2019,4,2,21,9,0,0,15,3,9,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.27980582931913,0,119.0728550332222,1,45,33.18,3,1,0,0,7,1,0,1440.5,0,0,0 +2012,2481,4586,4585,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,54,0,0,0,0,0,0,75,2,4,3,3,3,2019,4,1,25,9,0,0,15,4,9,3,0,0,0,1,0,128.6558335358148,0,0,0,0,1,1,0,4.853577230616172,0,0,0,37.64,16.58,3,1,0,0,7,1,0,1440.5,0,0,0 +2013,2482,4587,4588,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,4,7.476483640316684,7.427780280883987,0,1,0,-9,35,0,3,121.3080646756628,0,0,0,53,2,4,3,3,3,2019,2,2,9,0,40,30,15,1,0,3,0,5.271010232444138,5.271010232444138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,3,0,1,5,2,1,982.5,0,0,0 +2013,2482,4588,4587,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,35,0,-3,41.92069344213758,-9,0,0,56,2,4,1,3,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.74393572111976,3,51,54,6,3,0,1,5,2,1,982.5,0,0,0 +2013,2483,4589,-9,4588,4587,4,1,0,31,3,0,0,0,2,-9,2,1,0,3,7.583621852738531,7.546427337317239,0,3,0,-9,0,-9,0,-910.2511009476405,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,23,0,15,1,9,-9,1,8.306496475982511,8.306496475982511,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,43.03,3,3,0,0,5,3,1,1058,0,0,0 +2014,2484,4590,4591,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,4,8.408709519346331,8.440267964967154,6.206021253093757,1,0,-9,5,0,3,22.76563653588456,0,0,0,53,2,3,1,3,3,2019,1,2,6,0,42,42,15,1,0,1,0,13.79832900141781,13.79832900141781,0,0,0,0,0,0,0,0,0,0,0,6.694164184142178,0,3,54.8,50.32,6,1,0,0,5,5,1,367,0,0,0 +2014,2484,4591,4590,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,6.863752143952714,7.21806884308223,0,1,0,-9,5,0,-3,46.00400147820852,0,0,0,56,3,4,1,3,3,2019,1,1,4,0,22,0,15,1,0,1,0,6.090499468760424,6.090499468760424,0,0,0,0,0,0,0,0,0,0,1.834289655145837,0,3.057393812698457,3,54.19,45.22,6,1,0,0,5,5,1,367,0,0,0 +2015,2485,4592,-9,4594,4593,3,1,0,17,2,0,0,0,2,1,2,3,0,2,6.63496610012029,6.707921041412879,4.796748543115311,1,0,0,0,-9,0,-1082.029068832299,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,28,9,20,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.689903723272695,0,0,0,33.53,30.95,4,1,0,0,2,2,0,502,0,0,0 +2015,2485,4593,4594,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,0,0,0,1,0,-9,30,0,0,-53.26769742860726,0,0,0,57,2,3,1,2,2,2019,1,1,5,0,10,27,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,46.99,5,1,0,0,2,2,0,502,0,0,0 +2015,2485,4594,4593,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.090746503704394,7.580788820716204,3.981785946989248,1,0,-9,29,0,0,91.29088466811945,0,0,0,57,1,3,1,1,1,2019,1,2,17,5,32,25,15,1,5,1,0,5.186742884773484,5.186742884773484,0,0,0,0,0,0,0,1,1,0,4.199464688853642,0,0,0,45.44,41.44,3,1,0,1,2,2,0,502,0,0,0 +2016,2486,4595,-9,4596,4598,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.9791732451612,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,477.5,0,0,0 +2016,2486,4596,4598,-9,-9,2,1,0,32,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-5,-111.3900326757879,0,0,1,37,3,4,1,2,2,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,1,9,2,0,477.5,0,0,0 +2016,2486,4597,-9,4596,4598,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.949730888663,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,0,477.5,0,0,0 +2016,2486,4598,4596,-9,-9,1,1,1,37,1,0,2,0,3,-9,2,1,0,4,7.885282111046209,7.711556478899623,0,2,0,-9,6,0,5,58.97886713665687,0,0,0,32,3,4,3,2,2,2019,2,2,10,0,48,40,15,1,1,3,0,5.747681100319006,5.747681100319006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,1,9,2,0,477.5,0,0,0 +2017,2487,4599,4601,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,4,7.416267820077744,7.274682429800578,0,2,0,-9,1,-9,-5,141.9929899613524,-9,0,1,40,3,3,1,-9,-9,2019,1,1,11,2,30,0,15,1,2,1,0,6.751428905226701,6.751428905226701,0,0,0,0,0,0,0,1,1,0,0,0,.9458951123880879,3,54.47,37.04,6,1,0,0,5,3,1,716.6666666666666,0,0,0 +2017,2487,4600,-9,4599,4601,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1051.038898863345,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,716.6666666666666,0,0,0 +2017,2487,4601,4599,-9,-9,1,1,1,40,1,0,1,0,3,-9,1,1,0,3,7.48943301548923,7.638672216382794,0,2,0,-9,1,-9,5,65.37764835881346,-9,0,0,35,2,4,1,3,3,2019,1,2,7,1,55,0,15,1,1,1,0,4.176913135964079,4.176913135964079,0,0,0,0,0,0,0,1,1,0,0,0,5.155192645271084,3,48.14,53.42,4,1,0,0,5,3,1,716.6666666666666,0,0,0 +2018,2488,4602,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,2,1,0,3,7.718429729127953,7.537996095790076,0,3,0,0,0,-9,0,-962.1196110138615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,30,24,15,1,1,-9,0,8.444146206482072,8.444146206482072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,6,4,0,0,8,3,1,1278,0,0,0 +2019,2489,4603,-9,4604,4605,6,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.598878532802,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,2,1,1305.666666666667,0,0,0 +2019,2489,4604,4605,-9,-9,2,1,0,48,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,4,0,-7,-148.4334639570938,0,0,0,55,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.904779704449516,0,20.71034060781964,3,62.39,56.71,7,3,0,0,8,2,1,1305.666666666667,0,0,0 +2019,2489,4605,4604,-9,-9,1,1,1,55,1,0,2,0,2,-9,1,1,0,4,6.76404424871181,7.211586755767478,0,2,0,-9,29,0,7,-30.30350493660066,0,0,0,48,2,5,3,-9,-9,2019,2,2,9,0,0,40,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,54,6,3,0,0,8,2,1,1305.666666666667,0,0,0 +2019,2490,4606,-9,4604,4605,3,1,1,25,2,0,2,0,1,-9,2,1,0,3,8.14373851538341,8.06578044111969,0,3,0,0,0,-9,0,-1002.2245078657,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,35,40,15,1,2,-9,1,8.776636602038435,8.776636602038435,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.2,48.71,4,3,0,0,8,4,1,480,0,0,0 +2019,2491,4607,-9,4604,4605,4,1,1,21,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1086.997997843696,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,8,1,1,313,0,0,0 +2020,2492,4608,4609,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,2,62.85989698345913,0,0,0,79,1,3,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,.9557736207873915,0,0,0,0,1,1,0,.4333112712353659,0,0,0,48.45,49.46,5,1,0,0,13,5,1,543.5,0,0,0 +2020,2492,4609,4608,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,9.532999875285466,9.551641952056917,1,0,-9,7,0,-2,173.728783265541,0,0,0,81,2,3,3,-9,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,.1957275723027125,0,0,0,0,23.36045571703558,1,1,0,6.231473968621255,9.69653714763067,0,0,61.28,46.17,6,1,0,0,13,5,1,543.5,0,0,0 +2021,2493,4610,-9,4612,4611,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.117621988779,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,702.6666666666666,0,0,0 +2021,2493,4611,4612,-9,-9,2,1,1,49,1,0,1,0,3,-9,2,1,0,4,8.246843970545926,8.12825083483424,0,2,0,-9,4,0,19,34.72612364373981,0,0,0,30,2,4,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,11.94814860099311,11.94814860099311,0,0,0,0,0,0,0,1,1,0,3.643886838514481,0,0,0,54.2,57.49,2,1,0,0,9,4,1,702.6666666666666,0,0,0 +2021,2493,4612,4611,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,4,7.078350851680808,7.414505627307701,0,2,0,-9,4,0,-19,92.03096793783875,0,0,1,49,3,4,1,2,2,2019,1,2,6,0,24,25,15,1,0,1,0,7.291213610072655,7.291213610072655,0,0,0,0,0,0,0,1,1,0,2.002681216840832,0,0,0,57.73,54.53,6,1,0,0,9,4,1,702.6666666666666,0,0,0 +2022,2494,4613,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,2,0,6.415584252754155,6.307918640580393,3,0,0,0,-9,0,-1117.366419261737,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.671868969388355,6.528454098958082,0,0,48.76,20.16,4,1,0,0,13,2,0,774,0,0,0 +2023,2495,4614,4615,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,4,7.556769511074283,7.628681637460884,0,1,0,-9,1,-9,5,68.84281913038724,-9,0,0,30,1,4,1,-9,-9,2019,1,1,10,0,37,0,15,1,1,1,0,8.205607515750664,8.205607515750664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,3,0,0,4,4,1,1101.5,0,0,0 +2023,2495,4615,4614,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.410495251718737,8.473545135102723,0,1,0,-9,1,-9,-5,59.95726859503122,-9,0,1,35,1,4,1,2,3,2019,1,2,11,0,35,0,15,1,2,1,0,15.50731303420042,15.50731303420042,0,0,0,0,0,0,0,0,0,0,4.118889838159734,0,0,0,48,57,5,3,0,0,4,4,1,1101.5,0,0,0 +2024,2496,4616,4617,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.406752825750413,8.526296758771197,0,1,0,1,1,-9,0,-37.06319668985414,0,1,1,28,1,4,1,1,2,2019,1,2,12,0,37,35,15,1,0,1,0,13.46938122584019,13.46938122584019,0,0,0,0,0,0,0,0,0,0,3.185439016495286,0,0,0,42.3,57.54,5,1,0,0,8,5,0,1173.5,0,0,0 +2024,2496,4617,4616,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,4,8.592556797590406,8.730558748283675,0,1,0,-9,1,-9,0,10.49735423087865,-9,1,0,28,1,4,1,-9,-9,2019,1,1,10,0,37,0,15,1,1,1,0,17.24006769477927,17.24006769477927,0,0,0,0,0,0,0,0,0,0,1.609073447902342,0,0,0,49,58,5,1,0,0,8,5,0,1173.5,0,0,0 +2025,2497,4618,4619,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,7.689930641409886,7.780598835974489,1,0,-9,45,0,-2,-40.13229994097974,0,0,0,68,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.026244500407263,7.263950037725214,0,0,54.37,54.8,6,1,0,0,6,2,1,473.5,0,0,0 +2025,2497,4619,4618,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,2.296677851530237,2.51480056748887,1,0,-9,45,0,2,62.27937227088611,0,0,0,66,3,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3515325396759581,2.743702835571734,0,0,65.53,38.76,6,1,0,0,6,2,1,473.5,0,0,0 +2026,2498,4620,4621,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,15,0,-4,48.47278598624882,0,0,0,70,1,3,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.373402520019662,0,8.194351441467029,3,48.18,61.8,6,1,0,0,7,2,1,592,0,0,0 +2026,2498,4621,4620,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,7.216956724560373,7.766437966136904,1,0,-9,15,0,4,-123.1437040881125,0,0,0,66,1,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.179065725184769,8.199663835513581,3,54.72,43.7,6,1,0,0,7,2,1,592,0,0,0 +2027,2499,4622,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-981.4349645772006,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.856669433113568,3,37.61,55.72,5,1,0,0,1,1,0,702,0,0,0 +2028,2500,4623,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,2,1,0,4,8.304291657253964,8.805637105524925,6.355595219533419,3,0,0,0,-9,0,-916.5859745903011,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,47,15,1,0,-9,0,11.54045874033216,11.54045874033216,0,0,0,0,0,0,0,1,1,0,1.756347974099221,6.770958170990704,18.67548115408396,3,47.1,56.62,5,1,0,0,7,5,1,521,0,0,0 +2029,2501,4624,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,8.222035203881193,8.14058812926268,0,3,0,0,0,-9,0,-1186.270492157262,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,27,27,15,1,0,-9,0,16.32039424524407,16.32039424524407,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,49,4,1,0,0,12,4,1,714,0,0,0 +2030,2502,4625,4626,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,4,7.683812349144383,7.87557270967077,6.392684706179005,1,0,-9,39,0,-7,-42.77449313271546,0,0,0,68,3,3,1,2,2,2019,1,2,12,0,24,24,15,1,0,1,0,7.82830629550291,7.82830629550291,0,0,0,0,0,0,0,1,1,0,4.701940589210897,6.179159579803327,6.055799270897599,3,54.2,57.49,6,1,0,0,6,4,1,843.5,0,0,0 +2030,2502,4626,4625,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,3,7.240761014379491,7.604550774447422,5.172398986025311,1,0,-9,39,0,7,-11.15628297889479,0,0,0,61,2,4,1,2,3,2019,1,1,12,0,24,24,15,1,0,1,0,8.160804307898484,8.160804307898484,0,0,0,0,0,0,0,1,1,0,4.646706154121625,5.478235722376856,0,3,57.24,41.16,6,1,0,0,6,4,1,843.5,0,0,0 +2031,2503,4627,4628,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,8.294223634047377,8.352226625877405,0,1,0,-9,2,0,-4,-158.5375681162574,0,0,0,50,2,4,1,-9,-9,2019,1,1,11,1,38,37,15,1,1,1,0,18.07666999245876,18.07666999245876,0,0,0,0,0,0,0,0,0,0,7.665715115118404,0,0,0,57.16,56.15,5,1,0,0,4,4,1,2302,0,0,0 +2031,2503,4628,4627,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,4,7.022315981388243,6.933960418202548,0,1,0,-9,2,0,4,15.31288249052575,0,0,0,46,2,4,1,2,3,2019,1,2,8,0,40,0,15,1,0,1,0,3.236387520475312,3.236387520475312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,4,1,0,0,4,4,1,2302,0,0,0 +2032,2504,4629,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,2,7.979350937979913,8.236083253934916,0,3,0,0,0,-9,0,-1051.171705709008,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,8,38,38,15,1,8,-9,0,9.500865448264056,9.500865448264056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.8,26.99,2,1,0,0,5,4,0,297,0,0,0 +2033,2505,4630,-9,4633,4632,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.06376080258,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,1,397.25,0,0,0 +2033,2505,4631,-9,4633,4632,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.9252461846598,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,397.25,0,0,0 +2033,2505,4632,4633,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,2,8.887112998855146,9.286754175808289,0,2,0,-9,10,0,7,53.75374050567575,0,0,0,41,2,3,3,2,3,2019,2,1,11,0,98,53,15,1,0,3,0,10.04262461631661,10.04262461631661,0,0,0,0,0,0,0,1,1,0,4.518317954791488,0,0,0,33.18,49.96,4,1,0,0,11,4,1,397.25,0,0,0 +2033,2505,4633,4632,-9,-9,1,1,0,41,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,10,0,-7,12.79250407212861,0,0,1,48,1,2,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.284935528819352,0,0,0,39.75,54.92,6,1,0,0,11,4,1,397.25,0,0,0 +2034,2506,4634,4635,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,4,6.689780769626547,6.938221756508618,0,1,0,-9,7,0,1,-117.6477202218617,0,0,1,42,2,3,1,2,2,2019,1,1,8,0,10,42,15,1,0,1,0,12.6057245684837,12.6057245684837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,13,2,1,355,0,0,0 +2034,2506,4635,4634,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,3,6.137669149547762,6.507359612201509,0,1,0,-9,7,0,-1,-5.824129428131091,0,0,0,43,2,4,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,2.128620703744479,2.128620703744479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,1,0,0,13,2,1,355,0,0,0 +2034,2507,4636,-9,4634,4635,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.357116267626045,7.30779716801618,0,3,0,0,0,-9,0,-1049.611601126167,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,32,35,15,1,0,-9,1,5.466689788266748,5.466689788266748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.04,48.93,6,1,0,0,13,3,1,474,0,0,0 +2035,2508,4637,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-1153.521033882147,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32.46,1,1,0,1,6,1,0,1174,0,0,0 +2036,2509,4638,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-981.9531661447977,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.1856547806221,3,45.13,53.27,6,1,0,0,4,1,0,748,0,0,0 +2036,2510,4639,-9,4638,-9,2,1,0,41,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1011.002399888326,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,1,0,0,4,1,0,519,0,0,0 +2037,2511,4640,4641,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.140592387158731,6.905427943421747,1,0,-9,5,0,-7,-37.30813371294654,0,0,0,84,1,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.365022002722609,6.815130152878839,26.89587741650303,1,54,46,5,1,0,0,12,3,1,429,0,0,0 +2037,2511,4641,4640,-9,-9,2,1,0,84,1,0,0,0,1,-9,4,3,0,3,0,7.431533116444276,7.149271234793044,1,0,-9,5,0,7,-42.97875763133996,0,0,0,77,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.873742203773677,7.126221675795668,0,0,53,44,6,1,0,0,12,3,1,429,0,0,0 +2038,2512,4642,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.350012407618911,8.374780152137829,0,3,0,0,0,-9,0,-1075.368761540107,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,48,32,15,1,0,-9,0,10.74458323222651,10.74458323222651,0,0,0,0,0,0,0,0,0,0,0,0,.759355162311955,3,54.2,57.49,6,1,0,0,12,4,1,367,0,0,0 +2039,2513,4643,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,7.06489497993494,7.350128109993307,3,0,0,0,-9,0,-949.9529085433006,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.799025228283982,0,0,42.95,61.24,6,1,0,0,7,2,1,1007,0,0,0 +2040,2514,4644,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,4,8.811714605049728,9.05874854273921,6.615079048475276,3,0,0,0,-9,0,-951.5071140621562,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,55,0,15,1,0,-9,0,13.86937055226296,13.86937055226296,0,0,0,0,0,0,0,0,0,0,0,6.79359021101141,0,0,54.2,57.49,6,1,0,0,10,5,1,2534,0,0,0 +2040,2515,4645,-9,-9,4644,2,1,1,22,2,0,0,0,2,-9,2,1,0,5,7.341827176261104,7.387117360604994,0,3,0,0,0,-9,0,-1005.132813581539,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,1,40,40,15,1,1,-9,1,4.480002760244008,4.480002760244008,0,0,0,0,0,0,0,0,0,0,2.960465628641893,0,0,0,52.72,55.58,6,1,0,0,10,3,1,564,0,0,0 +2041,2516,4646,4647,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.590239786335982,9.05493150113251,7.908383644121232,1,0,-9,34,0,-2,59.93310480022957,0,0,0,62,1,4,1,2,2,2019,1,1,12,2,40,35,15,1,2,1,0,15.60246065128878,15.60246065128878,0,0,0,0,0,0,0,0,0,0,4.755237502529877,8.261106465296749,0,0,51.17,49.39,5,1,0,0,9,5,1,489,0,0,0 +2041,2516,4647,4646,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,4,7.028390574620511,6.890278881146097,0,1,0,-9,34,0,2,-162.3350877948006,0,0,0,60,2,3,1,2,2,2019,1,2,2,0,12,17,15,1,0,1,0,8.134755476769325,8.134755476769325,0,0,0,0,0,0,0,0,0,0,2.981817897599082,0,0,0,57.91,48.98,6,1,0,0,9,5,1,489,0,0,0 +2041,2517,4648,-9,4647,4646,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.322251635481736,7.961816364664525,0,3,0,0,0,-9,0,-911.889881008982,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,36,35,15,1,0,-9,1,13.26713853625283,13.26713853625283,0,0,0,0,0,0,0,0,0,0,.3808082932706917,0,0,0,41.3,60.77,6,1,0,0,9,4,1,239,0,0,0 +2041,2518,4649,-9,4647,4646,4,1,0,20,2,0,0,1,2,0,7,2,0,3,7.752913468268649,7.641311608338371,0,3,0,0,0,-9,0,-1005.857639013636,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,45,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,6,1,0,0,9,3,1,1634,0,0,0 +2042,2519,4650,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,4,8.654929889265762,9.142324383573508,0,3,0,0,0,-9,0,-1049.946252880325,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,46,47,15,1,0,-9,0,21.65432375121848,21.65432375121848,0,0,0,0,0,0,0,0,0,0,2.305265811417555,0,0,0,52.53,47.24,6,1,0,0,9,5,1,208,0,0,0 +2043,2520,4651,-9,4654,4652,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.4179964430049,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,3,0,0,8,4,0,917.25,0,0,0 +2043,2520,4652,4654,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,4,8.816661347181181,9.319051440700028,0,2,0,-9,2,0,8,133.7488447009566,0,0,0,37,1,4,3,3,3,2019,2,2,10,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.37,53.58,6,3,0,0,8,4,0,917.25,0,0,0 +2043,2520,4653,-9,4654,4652,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.6836216580851,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,8,4,0,917.25,0,0,0 +2043,2520,4654,4652,-9,-9,2,1,0,37,1,0,2,0,1,-9,3,3,0,4,0,0,0,2,0,-9,2,0,-8,91.5493924670822,0,0,1,45,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.71,52.66,6,3,1,1,8,4,0,917.25,0,0,0 +2044,2521,4655,4656,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,3,7.540681705976613,8.040887745751897,7.008127757117287,1,0,-9,29,0,3,28.53022164339994,0,0,0,61,3,3,1,3,3,2019,1,2,12,0,29,28,15,1,0,1,0,5.467089875054177,5.467089875054177,0,0,0,0,0,0,0,0,0,0,0,6.87472751079379,0,0,56.94,49.53,6,1,0,0,11,3,1,1271.5,0,0,0 +2044,2521,4656,4655,-9,-9,2,1,1,61,1,0,0,0,3,-9,1,1,0,3,6.989012908934173,7.263172414013833,4.749078052202557,1,0,-9,29,0,-3,105.9750927023186,0,0,0,64,2,3,1,-9,-9,2019,1,1,12,0,30,1,15,1,0,1,0,4.747905427584575,4.747905427584575,0,0,0,0,0,0,0,0,0,0,4.951306787118313,4.388768043095145,0,0,38.43,51.53,6,1,0,0,11,3,1,1271.5,0,0,0 +2045,2522,4657,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1010.662613524164,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.76,54.68,6,1,0,0,6,1,1,634,0,0,0 +2046,2523,4658,4659,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,4,0,8.364313756306633,8.045536320153225,1,0,-9,32,0,2,-31.1002543399993,0,0,0,72,1,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.597187061992051,7.787350697237976,0,0,57.16,56.15,6,1,0,0,2,4,1,997,0,0,0 +2046,2523,4659,4658,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,7.607309097617308,8.046647231239772,1,0,-9,32,0,-2,84.4342016244744,0,0,0,74,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.631171834415009,0,0,55.54,46.02,6,1,0,0,2,4,1,997,0,0,0 +2047,2524,4660,-9,4661,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1042.594989156726,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,0,916,0,0,0 +2047,2524,4661,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-950.3485806587174,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.22,44.28,2,1,0,0,12,1,0,916,0,0,0 +2048,2525,4662,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,3,0,8.661055715364212,8.652695573154803,3,0,0,0,-9,0,-883.1735707713231,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,37,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.697997895599798,8.775275080537654,0,0,50.74,51,6,1,0,0,1,5,1,2107,0,0,0 +2049,2526,4663,4664,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,4,8.211922430326066,8.508650328484755,0,1,0,-9,2,0,-6,2.233584226271995,-9,1,1,33,1,5,1,-9,-9,2019,1,1,9,0,42,0,15,1,0,1,0,10.99924513044469,10.99924513044469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,6,1,0,0,13,5,1,1509,0,0,0 +2049,2526,4664,4663,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,5,8.717847899819528,8.860755416369619,0,1,0,-9,2,0,6,42.07102825658212,0,0,0,27,2,4,1,3,3,2019,1,2,10,0,36,37,15,1,0,1,0,16.85060348129691,16.85060348129691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,5,1,1509,0,0,0 +2050,2527,4665,4666,-9,-9,2,1,1,48,1,0,0,0,1,-9,1,1,0,4,8.537776764449774,8.592528201215513,0,1,0,-9,6,0,1,188.8013961008602,0,0,0,47,2,5,1,-9,-9,2019,1,1,9,0,16,24,15,1,0,1,0,29.87420917085132,29.87420917085132,0,0,0,0,0,0,0,0,0,0,1.763998213727044,0,0,0,48.53,58.91,5,1,0,0,4,5,1,585,0,0,0 +2050,2527,4666,4665,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,5,9.531300436160562,9.612827349405807,0,1,0,-9,23,0,-1,90.08672150569934,0,0,0,48,1,4,1,2,-9,2019,1,2,5,0,8,10,15,1,0,1,0,187.4938557261546,187.4938557261546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,5,1,0,0,4,5,1,585,0,0,0 +2051,2528,4667,-9,4668,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.895478561341,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,3,0,490.6666666666667,0,0,0 +2051,2528,4668,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,3,7.702733047446627,7.778650648484178,0,4,0,0,0,-9,0,-1029.674256615403,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,32,22,15,1,1,-9,0,8.035924901434999,8.035924901434999,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.72,55.32,6,1,0,0,4,3,0,490.6666666666667,0,0,0 +2051,2528,4669,-9,4668,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-994.9830350276731,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,0,490.6666666666667,0,0,0 +2052,2529,4670,-9,4674,-9,5,1,0,2,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.7960488682,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,2,0,0,5,1,0,497.8333333333333,0,0,0 +2052,2529,4671,-9,4674,-9,6,1,0,2,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1159.832831071141,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,2,0,0,5,1,0,497.8333333333333,0,0,0 +2052,2529,4672,-9,4674,-9,3,1,1,8,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1058.108337967923,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,5,1,0,497.8333333333333,0,0,0 +2052,2529,4673,-9,4674,-9,2,1,1,11,2,2,5,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-810.9477171866523,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,2,0,0,5,1,0,497.8333333333333,0,0,0 +2052,2529,4674,-9,-9,-9,1,1,0,35,2,2,5,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1045.287718449832,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.612894892507071,0,0,0,57.16,56.15,7,2,0,0,5,1,0,497.8333333333333,0,0,0 +2052,2529,4675,-9,4674,-9,4,1,0,6,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-972.124520765992,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,5,1,0,497.8333333333333,0,0,0 +2053,2530,4676,-9,-9,-9,1,1,0,40,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1082.549460124428,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,2,0,0,8,1,0,334,0,0,0 +2054,2531,4677,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,1,1,0,5,9.677600720628137,9.197148364715662,0,3,0,0,0,-9,0,-953.0765750475096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,50,15,1,0,-9,0,31.48611601619143,31.48611601619143,0,0,0,0,0,0,0,1,1,0,3.208606866466378,0,0,0,57.51,49.4,6,1,0,0,12,5,1,3511,0,0,0 +2055,2532,4678,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,5,8.254388005140218,8.174071200402608,0,3,0,0,0,-9,0,-983.1031670686635,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,38,50,15,1,0,-9,0,10.22244375539965,10.22244375539965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,7,1,0,0,4,4,0,1951,0,0,0 +2056,2533,4679,-9,4683,4681,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.099712527861,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,739.8,0,0,0 +2056,2533,4680,-9,4683,4681,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.598743739434,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,4,1,739.8,0,0,0 +2056,2533,4681,4683,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,2,9.028767290583222,9.219942384088226,0,2,0,-9,6,0,1,124.1701612514426,0,0,0,41,2,4,3,1,2,2019,2,1,7,0,43,42,15,1,0,3,0,26.89484606700651,26.89484606700651,0,0,0,0,0,0,0,1,1,0,4.103485177115126,0,0,0,54.39,44.26,6,1,0,0,13,4,1,739.8,0,0,0 +2056,2533,4682,-9,4683,4681,3,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.1426897219301,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,4,1,739.8,0,0,0 +2056,2533,4683,4681,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-1,-63.22939030641471,0,0,1,42,1,2,1,2,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.954169486462919,0,0,0,59.44,44.14,7,1,0,0,13,4,1,739.8,0,0,0 +2057,2534,4684,-9,4689,4687,5,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1114.99058657759,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,2,0,1058.833333333333,0,0,0 +2057,2534,4685,-9,4689,4687,3,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.85566773861,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,1058.833333333333,0,0,0 +2057,2534,4686,-9,4689,4687,6,1,0,10,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1009.75944018676,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,2,0,1058.833333333333,0,0,0 +2057,2534,4687,4689,-9,-9,1,1,1,54,1,0,4,0,3,-9,6,3,0,2,0,0,0,2,0,-9,9,0,8,84.2612043036234,0,0,0,46,1,3,1,3,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.18,50.83,3,1,0,0,2,2,0,1058.833333333333,0,0,0 +2057,2534,4688,-9,4689,4687,4,1,0,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.772563074014,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,1058.833333333333,0,0,0 +2057,2534,4689,4687,-9,-9,2,1,0,46,1,0,4,0,1,-9,2,1,0,3,7.484385364908502,7.973684924509459,0,2,0,-9,9,0,-8,-16.65294692384966,0,0,0,54,3,2,3,2,3,2019,2,1,10,0,38,38,15,1,0,3,0,6.130318393342716,6.130318393342716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.52,46.77,3,1,0,0,2,2,0,1058.833333333333,0,0,0 +2058,2535,4690,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,4,3,0,4,0,8.1638402796696,7.967631296297577,3,0,0,0,-9,0,-937.7260164671762,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.260084613303319,7.918288477710995,0,0,42.09,45.46,6,1,0,0,11,4,1,703,0,0,0 +2059,2536,4691,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,3,8.381944648168492,8.676900364654141,0,3,0,0,0,-9,0,-910.7636270948932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,36,38,15,1,1,-9,0,16.26314641382093,16.26314641382093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,4,1,0,0,6,4,1,171,0,0,0 +2060,2537,4692,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-930.8612550859169,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,3.923386134182635,0,0,0,40.96,27.74,3,1,0,1,12,1,1,220,0,0,0 +2061,2538,4693,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,5,0,7.32750340222644,7.358705074455206,3,0,0,0,-9,0,-1034.747865049873,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.200406783178592,0,0,57.06,57.76,6,1,0,0,11,3,1,2132,0,0,0 +2062,2539,4694,4695,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.647707754752988,8.653735264083252,0,1,0,-9,7,0,1,-112.4272307672646,0,0,0,30,1,3,1,-9,-9,2019,1,1,8,1,50,48,15,1,1,1,0,14.75421148355635,14.75421148355635,0,0,0,0,0,0,0,0,0,0,7.875805691476527,0,0,0,48.87,58.55,6,1,0,0,10,5,1,1124.5,0,0,0 +2062,2539,4695,4694,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,3,8.512105030624486,8.346647625859683,0,1,0,-9,7,0,-1,112.2998361659807,0,0,1,31,1,4,1,1,1,2019,1,2,20,10,38,41,15,1,10,1,0,16.37177255802517,16.37177255802517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,44.11,6,1,0,0,10,5,1,1124.5,0,0,0 +2063,2540,4696,4697,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,3,7.994369438488587,8.175160306114005,0,1,0,-9,4,0,5,104.5556781858461,0,1,0,22,1,4,1,-9,-9,2019,1,1,16,5,50,36,15,1,5,1,0,6.777064474152567,6.777064474152567,0,0,0,0,0,0,0,0,0,0,2.942312633051414,0,0,0,27.56,46.65,2,1,0,0,10,4,0,399,0,0,0 +2063,2540,4697,4696,-9,-9,1,1,0,22,1,0,0,0,1,1,2,1,0,4,7.18027912053743,6.889521698958431,0,1,0,-9,4,0,-5,40.27155177102542,-9,1,1,27,1,3,1,1,1,2019,1,2,21,9,23,0,15,1,9,1,0,7.067969650166388,7.067969650166388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.05,65.12,5,1,0,0,10,4,0,399,0,0,0 +2064,2541,4698,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,5,7.714017567031806,8.57111017331991,7.794673876031036,3,0,0,0,-9,0,-879.8064771876942,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,7,16,16,15,1,7,-9,0,14.45358714954345,14.45358714954345,0,0,0,0,0,0,0,0,0,0,1.792185832371993,7.922251449924397,0,0,17.53,70.5,6,1,0,0,12,4,1,513,0,0,0 +2065,2542,4699,4701,-9,-9,1,1,1,33,1,0,3,0,1,-9,2,1,0,5,8.695796189398594,9.143180821871175,0,2,0,-9,7,0,-1,-29.02990296205644,0,0,0,34,1,4,3,2,2,2019,2,2,8,0,38,40,15,1,0,3,0,22.78582668372346,22.78582668372346,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,2,3,1,822.2,0,0,0 +2065,2542,4700,-9,4701,4699,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.4112911962375,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,1,822.2,0,0,0 +2065,2542,4701,4699,-9,-9,2,1,0,34,1,0,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,7,0,1,-11.71283194855583,0,0,1,33,1,5,1,2,2,2019,3,1,10,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.06,53.4,6,1,0,0,2,3,1,822.2,0,0,0 +2065,2542,4702,-9,4701,4699,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.48925953892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,822.2,0,0,0 +2065,2542,4703,-9,4701,4699,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.565039869934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,3,1,822.2,0,0,0 +2066,2543,4704,4705,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,2,8.957306747194616,8.828222234403874,0,1,0,-9,4,0,2,114.1388736959088,0,0,0,28,1,3,1,3,3,2019,1,2,10,0,44,38,15,1,0,1,0,15.14950341073484,15.14950341073484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.36,48.9,3,1,0,0,5,5,1,373,0,0,0 +2066,2543,4705,4704,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,3,8.010714406706201,7.901366417697979,0,1,0,-9,4,0,-2,22.06840714800983,0,1,1,30,2,2,1,-9,-9,2019,1,1,15,3,39,39,15,1,3,1,0,10.12471870408477,10.12471870408477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,56.39,6,1,0,0,5,5,1,373,0,0,0 +2067,2544,4706,-9,4708,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-881.9202667125442,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,5,2,0,493.6666666666667,0,0,0 +2067,2544,4707,-9,4708,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1068.314437668716,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,5,1,0,0,5,2,0,493.6666666666667,0,0,0 +2067,2544,4708,-9,-9,-9,1,1,0,32,3,0,2,0,2,-9,1,1,0,5,7.539614107993061,7.258730210341269,5.79708935863886,4,0,0,0,-9,0,-974.4324474645972,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,16,16,15,1,1,-9,0,12.34757550845569,12.34757550845569,0,0,0,0,0,0,0,1,0,1,5.265919550929129,0,0,0,50,59,4,1,0,0,5,2,0,493.6666666666667,0,0,0 +2068,2545,4709,4710,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,6.794851849332673,7.532782380146279,6.846736051879085,1,0,-9,41,0,0,-43.32121003918144,0,0,0,70,1,5,3,3,3,2019,4,1,11,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.731304767542813,5.950343181959809,0,0,50.66,40.15,6,2,0,0,7,4,1,296.5,0,0,0 +2068,2545,4710,4709,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,7.780009932866691,7.742237887272689,1,0,-9,41,0,0,-101.102577830976,0,0,0,70,2,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.603313806587119,7.689266657272595,0,0,60.02,56.42,6,1,0,0,7,4,1,296.5,0,0,0 +2069,2546,4711,-9,-9,-9,3,1,0,26,2,0,3,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-907.7046802012213,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.42,59.09,6,1,0,1,8,1,0,3059,0,0,0 +2070,2547,4712,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,2,1,0,3,7.819483177510763,8.0251885762332,0,3,0,0,0,-9,0,-860.6395157049388,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,37,11,15,1,0,-9,0,8.784970305650186,8.784970305650186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,6,1,0,0,13,3,1,502,0,0,0 +2071,2548,4713,4714,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,6.165017995433963,6.093326700190542,1,0,-9,50,0,1,34.92800716585518,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,46.365628374592,0,0,0,0,1,1,0,7.527482591812468,6.217554693661997,0,0,50.1,25.52,6,1,0,0,5,2,1,330,0,0,0 +2071,2548,4714,4713,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-1,-74.12112371561281,0,0,0,70,3,1,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,1,0,0,5,2,1,330,0,0,0 +2072,2549,4715,-9,4717,4716,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-851.1649638320706,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,5,1,969.6666666666666,0,0,0 +2072,2549,4716,4717,-9,-9,1,1,1,30,1,1,1,0,1,-9,1,1,0,4,9.15657215190469,9.004867618466269,0,2,0,-9,5,0,0,65.34095836902209,0,0,0,30,1,4,1,-9,-9,2019,1,2,5,0,37,37,15,1,0,1,0,33.07987288391118,33.07987288391118,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,6,1,0,0,1,5,1,969.6666666666666,0,0,0 +2072,2549,4717,4716,-9,-9,2,1,0,30,1,1,1,0,1,-9,2,1,0,4,8.305134019123445,8.214672375090267,0,2,0,-9,5,0,0,60.40783453604461,0,0,1,30,1,4,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,13.2800525557448,13.2800525557448,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,50.73,7,1,0,0,1,5,1,969.6666666666666,0,0,0 +2073,2550,4718,4719,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,1,0,3.841620882710857,3.882621454779675,1,0,-9,8,0,-4,13.30993706622501,0,0,0,70,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,1,0,27.49303753075261,0,0,0,0,1,1,0,0,3.643685255160551,0,0,53.23,7.33,7,3,0,0,6,2,1,963.5,0,0,0 +2073,2550,4719,4718,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.096017489242534,7.345074940236323,1,0,-9,8,0,4,35.13847450088333,0,0,0,66,2,1,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.047985218182193,0,0,55.56,51.53,6,1,0,0,6,2,1,963.5,0,0,0 +2074,2551,4720,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,8,3,1,1,0,5.565848450359388,5.530484392364534,3,0,-9,0,-9,0,-985.4917328580894,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.102034435601504,5.673900275748199,33.84266575633664,3,30.07,18.8,3,1,0,0,6,2,0,503,0,0,0 +2074,2552,4721,-9,-9,-9,2,1,1,30,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-1119.618122718316,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.83,36.61,2,1,0,0,6,1,0,539,0,0,0 +2075,2553,4722,4723,-9,-9,2,1,0,62,1,0,0,0,1,-9,1,1,0,4,8.419791965629635,8.666089794144474,6.666384681646596,1,0,-9,11,0,-2,16.20340728235161,0,0,0,64,1,4,1,-9,-9,2019,1,1,5,0,20,15,15,1,0,1,0,36.26348859673809,36.26348859673809,0,0,0,0,0,0,0,0,0,0,6.954167462209544,6.870462554147097,8.434635894490793,3,54.79,55.86,5,1,0,0,2,5,1,497,0,0,0 +2075,2553,4723,4722,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,4,10.00809168393645,9.608622926989904,0,1,0,-9,39,0,2,16.78862704142684,0,0,0,62,1,4,1,3,3,2019,1,2,5,0,30,25,15,1,0,1,0,50.40128616556476,50.40128616556476,0,0,0,0,0,0,0,0,0,0,3.481126313455807,0,0,0,54.74,57.22,6,1,0,0,2,5,1,497,0,0,0 +2076,2554,4724,4725,-9,-9,1,1,0,46,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,32,0,-3,0,0,0,0,49,3,2,3,3,3,2019,4,2,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,36.51,5,1,0,0,4,1,0,1066.5,0,0,0 +2076,2554,4725,4724,-9,-9,2,1,1,49,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,32,0,3,0,0,0,0,46,2,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.27487653676796,2,42.96,28.93,6,1,0,0,4,1,0,1066.5,0,0,0 +2076,2555,4726,-9,4724,4725,3,1,0,18,2,0,0,0,2,1,2,1,0,3,7.540880964701443,7.248554523949517,0,3,0,0,0,-9,0,-1013.136478982761,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,33,0,15,1,2,-9,1,4.764118535315578,4.764118535315578,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.64,55.1,6,1,0,0,4,3,0,339,0,0,0 +2076,2556,4727,-9,4724,4725,4,1,1,24,2,0,0,0,2,-9,2,1,0,3,8.660549486903852,8.870013109799304,0,3,0,-9,0,0,0,-973.1113218793631,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,40,43,15,1,1,-9,1,14.02463355978384,14.02463355978384,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,4,5,0,363,0,0,0 +2077,2557,4728,4729,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,8.030699921953579,7.93986564736451,1,0,-9,52,0,3,113.5056112917937,0,0,0,71,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.049717681077391,7.815435742825072,0,0,54.18,41.6,6,1,0,0,5,3,1,521.5,0,0,0 +2077,2557,4729,4728,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-3,43.37974110013108,0,0,0,74,2,3,3,3,2,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.237414792616813,0,0,0,61.43,43.34,7,1,0,0,5,3,1,521.5,0,0,0 +2078,2558,4730,4731,-9,-9,1,1,0,59,1,0,0,0,1,-9,1,1,0,5,8.383004732030669,8.08350619448926,0,1,0,-9,17,0,0,170.3326044319906,0,0,0,59,1,5,1,1,2,2019,1,2,6,0,16,20,15,1,0,1,0,27.8242068421908,27.8242068421908,0,0,0,0,0,0,0,0,0,0,2.900822416443864,0,7.036441417757631,3,62.39,56.71,7,1,0,0,9,5,1,2918.5,0,0,0 +2078,2558,4731,4730,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,5,9.187545796822199,9.063509513323783,0,1,0,-9,7,0,0,-60.3418118757136,0,0,0,59,1,5,1,-9,-9,2019,1,1,8,0,40,38,15,1,0,1,0,23.44319142655754,23.44319142655754,0,0,0,0,0,0,0,0,0,0,2.654833757639489,0,0,0,57.06,57.76,6,1,0,0,9,5,1,2918.5,0,0,0 +2079,2559,4732,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,2,7.181395226129339,7.008715401606522,0,3,0,-9,0,-9,0,-1070.993283414783,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,28,0,15,1,1,-9,0,4.927944779501106,4.927944779501106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.39,21.77,4,2,0,0,8,3,0,816,0,0,0 +2079,2560,4733,-9,4732,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,4,6.63643831019364,6.814492588750006,0,3,0,-9,0,-9,0,-844.8674814636422,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,4,16,0,15,1,4,-9,1,5.744384202356132,5.744384202356132,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.07,56.08,4,3,0,0,8,2,0,905,0,0,0 +2080,2561,4734,-9,-9,-9,1,1,0,88,3,0,0,0,1,-9,4,3,0,3,0,7.629534566447435,7.734599000965697,3,0,0,0,-9,0,-1021.540451181858,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.451950112889598,0,0,0,0,40.98437441195615,1,1,0,2.932985514545999,7.566851765381222,0,0,57.33,53.46,6,1,0,0,12,3,1,838,0,0,0 +2081,2562,4735,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,2,8.771194990914884,8.972971911771671,0,3,0,0,0,-9,0,-1070.870510066729,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,37,15,1,0,-9,0,21.93603317998958,21.93603317998958,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,44.73,3,1,0,0,6,5,0,501,0,0,0 +2082,2563,4736,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1030.750671945753,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.25,20.16,2,2,0,1,8,1,0,385,0,0,0 +2083,2564,4737,-9,4740,4739,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.361748982097,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,421,0,0,0 +2083,2564,4738,-9,4740,4739,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-980.9233213484578,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,10,4,1,421,0,0,0 +2083,2564,4739,4740,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,4,8.526647994102632,8.771815850780003,0,2,0,-9,10,0,-6,60.60079602958451,0,0,0,41,2,4,1,2,2,2019,1,1,13,1,35,42,15,1,1,1,0,18.14746870556658,18.14746870556658,0,0,0,0,0,0,0,1,1,0,7.321723160854648,0,0,0,31.1,55.96,5,1,0,0,10,4,1,421,0,0,0 +2083,2564,4740,4739,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,4,7.613565410193687,7.45084985454,0,2,0,-9,10,0,6,-69.77386175130621,0,0,1,35,2,4,1,2,-9,2019,1,2,11,1,21,22,15,1,1,1,0,9.133592693768048,9.133592693768048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,3,1,0,0,10,4,1,421,0,0,0 +2084,2565,4741,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,2,0,5.147568910771136,4.792933405738289,3,0,0,0,-9,0,-1038.755387810619,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.018646885120583,11.61256568648971,3,23.62,31.41,1,1,0,1,2,2,1,458,0,0,0 +2085,2566,4742,4743,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,4,0,0,0,0,70,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,33.79,4,1,0,0,2,1,0,222,0,0,0 +2085,2566,4743,4742,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-4,0,0,0,0,74,3,2,3,3,-9,2019,4,1,9,0,0,3,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,10.84961037724046,1,41.78,31.14,5,1,0,0,2,1,0,222,0,0,0 +2086,2567,4744,-9,4747,4746,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1121.556005267876,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,8,3,1,779.25,0,0,0 +2086,2567,4745,-9,4747,4746,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-818.7069459732861,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,3,1,779.25,0,0,0 +2086,2567,4746,4747,-9,-9,1,1,1,41,1,0,2,0,1,-9,1,1,0,5,8.103724789811869,7.717653359839621,0,2,0,-9,6,0,4,-39.26125417115347,0,0,0,37,2,4,1,2,2,2019,1,2,9,0,25,35,15,1,0,1,0,12.16985188984012,12.16985188984012,0,0,0,0,0,0,0,1,1,0,0,0,30.92600184620917,3,45.82,53.14,6,3,0,0,8,3,1,779.25,0,0,0 +2086,2567,4747,4746,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,4,7.476694934300117,7.849463956072598,0,2,0,-9,6,0,-4,1.451577447966791,0,0,1,41,1,5,1,1,1,2019,1,1,13,1,23,19,15,1,1,1,0,8.839215019338846,8.839215019338846,0,0,0,0,0,0,0,1,1,0,0,0,32.30414391744587,3,44.77,59.17,6,1,0,0,8,3,1,779.25,0,0,0 +2087,2568,4748,4751,-9,-9,1,1,0,34,1,1,2,0,1,-9,5,1,0,5,8.577761894614405,8.77473784181398,0,2,0,-9,5,0,-1,37.11226682141142,0,0,1,35,1,3,1,2,2,2019,1,3,1,0,45,48,15,1,0,1,0,15.03097290159994,15.03097290159994,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,6,4,1,422,0,0,0 +2087,2568,4749,-9,4748,4751,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1045.405522648918,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,422,0,0,0 +2087,2568,4750,-9,4748,-9,2,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.124720728001,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,4,1,422,0,0,0 +2087,2568,4751,4748,-9,-9,3,1,1,35,1,1,2,0,1,-9,2,1,0,3,8.593645969238599,8.40092634099187,0,2,0,-9,5,0,1,-84.52649177233637,0,0,0,34,1,5,1,-9,-9,2019,1,1,11,0,43,39,15,1,0,1,0,12.78874849431107,12.78874849431107,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,44.69,6,1,0,0,6,4,1,422,0,0,0 +2088,2569,4752,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,2.145581134622196,2.350683166691028,3,0,0,0,-9,0,-1001.596370606428,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.794094416468267,0,0,57.35,42.91,6,1,0,0,13,1,1,470,0,0,0 +2088,2570,4753,-9,4752,-9,2,1,0,51,2,0,0,0,3,-9,2,1,0,4,7.42203211552318,7.437956267729342,0,3,0,0,0,-9,0,-1021.925976956997,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,22,22,15,1,1,-9,1,7.194795770154983,7.194795770154983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,13,3,1,424,0,0,0 +2089,2571,4754,-9,4755,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,7.186742316809707,7.383015140532826,0,3,0,0,0,-9,0,-1045.731064193757,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,25,0,15,1,0,-9,1,6.416304406603405,6.416304406603405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,7,2,1,456,0,0,0 +2089,2572,4755,-9,-9,-9,2,1,0,57,3,0,0,0,1,-9,2,1,0,3,7.695975312986731,8.794130491543232,8.140839430335232,3,0,0,0,-9,0,-888.0213139272681,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,30,0,15,1,1,-9,0,13.37732980269441,13.37732980269441,0,0,0,0,0,0,0,0,0,0,1.666194048652969,8.459710606149869,0,0,54.37,54.8,6,1,0,0,7,5,1,237,0,0,0 +2090,2573,4756,-9,4759,4758,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,3.789750321171012,3.772572291405804,0,2,0,0,0,-9,0,-1113.711147495918,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,1,5,1,995.75,0,0,0 +2090,2573,4757,-9,4759,4758,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.7096241293158,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,1,5,1,995.75,0,0,0 +2090,2573,4758,4759,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,3,9.173959068400601,9.336104066506349,0,2,0,-9,15,0,1,-17.95457720627137,0,0,0,44,2,4,1,3,2,2019,1,2,19,7,53,49,15,1,7,1,0,22.99317266018011,22.99317266018011,0,0,0,0,0,0,0,0,0,0,3.971334632730824,0,2.600498254615905,3,41.64,38.99,4,1,0,0,1,5,1,995.75,0,0,0 +2090,2573,4759,4758,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.243879896345637,8.348191784269218,0,2,0,-9,22,0,-1,32.62651224111877,0,0,1,45,1,3,1,3,2,2019,1,1,7,0,31,30,15,1,0,1,0,14.48561087250407,14.48561087250407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,1,5,1,995.75,0,0,0 +2091,2574,4760,4761,-9,-9,1,1,0,55,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,20,0,1,-37.33185888825363,0,0,0,54,3,4,1,3,3,2019,3,2,26,12,0,40,15,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.14,39.53,3,1,1,0,9,2,0,1290.5,0,0,0 +2091,2574,4761,4760,-9,-9,2,1,1,54,1,0,0,0,3,-9,1,1,0,4,7.551736408002315,7.697812146620339,0,1,0,-9,31,0,-1,-55.97219409411626,0,0,0,55,3,2,3,3,3,2019,2,1,10,0,50,40,15,1,0,3,0,4.590213460795428,4.590213460795428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,9,2,0,1290.5,0,0,0 +2092,2575,4762,4763,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.084295279137351,7.729019744049645,0,1,0,-9,6,0,0,-13.72657329202416,0,0,0,50,2,4,1,1,2,2019,1,1,11,0,24,0,15,1,0,1,0,12.07047409018912,12.07047409018912,0,0,0,0,0,0,0,0,0,0,4.174891361649648,0,0,0,47.77,56.48,6,1,0,0,5,5,0,426.5,0,0,0 +2092,2575,4763,4762,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.496534396979888,8.424025304708271,0,1,0,-9,6,0,0,57.58147450923321,0,0,0,50,1,4,1,2,2,2019,1,2,9,0,72,0,15,1,0,1,0,8.264109938370609,8.264109938370609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,5,1,0,0,5,5,0,426.5,0,0,0 +2092,2576,4764,-9,4762,4763,4,1,0,23,2,0,0,0,1,1,2,1,0,5,8.065611179837509,7.84107768451723,0,3,0,0,0,-9,0,-1118.293717693653,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,48,0,15,1,3,-9,1,8.0121261194864,8.0121261194864,0,0,0,0,0,0,0,0,0,0,.8055882584981766,0,0,0,32.91,64.79000000000001,6,1,0,0,5,4,0,1011,0,0,0 +2092,2577,4765,-9,4762,4763,3,1,1,19,2,0,0,0,2,-9,2,1,0,5,7.801624030318487,8.045415184351624,0,3,0,0,0,-9,0,-1025.538558346459,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,18,7,40,0,15,1,7,-9,1,11.67422164461685,11.67422164461685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.64,62.12,4,1,0,0,5,4,0,1348,0,0,0 +2093,2578,4766,4767,-9,-9,1,1,0,65,1,0,0,0,2,-9,1,1,0,3,8.402202939824633,8.367250108771374,0,1,0,-9,36,0,0,-63.64764490332704,0,0,0,65,2,2,1,3,3,2019,1,2,11,0,24,0,15,1,2,1,0,20.54990539335597,20.54990539335597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,4,0,1,4,5,0,1002,0,0,0 +2093,2578,4767,4766,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,2,8.079941652632263,8.176836787887796,0,1,0,-9,11,0,0,-63.13156731543445,0,0,0,65,2,3,1,3,3,2019,1,1,11,1,60,48,15,1,1,1,0,5.944956774290708,5.944956774290708,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.73,41.33,4,4,0,0,4,5,0,1002,0,0,0 +2093,2579,4768,-9,4766,4767,3,1,1,29,2,0,0,0,2,-9,2,1,0,2,8.28230496042606,8.267425105673322,0,3,0,0,0,-9,0,-1057.975024644526,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,54,50,15,1,7,-9,1,7.278512569648059,7.278512569648059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.54,54.87,3,4,0,1,4,4,0,1674,0,0,0 +2094,2580,4769,4770,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,26,0,7,-14.30340218424993,0,0,0,58,3,4,1,2,2,2019,3,1,9,1,0,0,15,4,1,1,0,0,0,1,1.7016412664609,0,0,0,0,22.53763018798996,1,1,0,0,0,0,0,48.03,24.16,6,1,0,0,13,4,1,832.5,0,0,0 +2094,2580,4770,4769,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,4,8.623164629187885,8.697798326342273,0,1,0,-9,26,0,-7,-84.16583362556973,0,0,0,65,2,2,3,3,2,2019,2,2,6,0,50,48,15,1,0,4,0,14.4989546398689,14.4989546398689,0,0,0,0,0,0,0,1,1,0,4.840442749185297,0,1.07392637188318,1,58.15,52.91,6,1,0,0,13,4,1,832.5,0,0,0 +2095,2581,4771,4772,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.001921806541258,7.275150965611455,1,0,-9,29,0,23,-159.99785215707,0,0,0,56,2,3,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,7.208413282999291,6.971009418507044,0,0,62.17,41.71,6,1,0,0,9,3,1,815.5,0,0,0 +2095,2581,4772,4771,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.598599153681466,7.535000994046149,0,1,0,-9,29,0,-23,23.66219166847062,0,0,0,79,2,3,3,3,1,2019,2,2,12,0,15,15,15,1,0,4,0,12.80419749830611,12.80419749830611,0,0,0,0,0,0,0,1,1,0,1.662594792572383,0,0,0,46.61,56.93,4,1,0,0,9,3,1,815.5,0,0,0 +2096,2582,4773,4774,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,2,8.963095889356925,8.961609204470557,0,2,0,-9,7,0,-8,20.06970354305493,0,0,1,52,2,3,1,3,2,2019,1,1,23,11,41,41,15,1,11,1,0,20.96087854771357,20.96087854771357,0,0,0,0,0,0,0,1,1,0,2.01234567239346,0,0,0,30.25,46,3,1,0,0,11,5,1,509.25,0,0,0 +2096,2582,4774,4773,-9,-9,1,1,1,52,1,0,2,0,2,-9,2,1,0,3,8.943258579530982,8.752925508630092,0,2,0,-9,7,0,8,34.86220625406906,0,0,0,44,2,2,1,2,2,2019,1,2,6,0,36,50,15,1,0,1,0,21.49583810497924,21.49583810497924,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.92,51.82,6,1,0,0,11,5,1,509.25,0,0,0 +2096,2582,4775,-9,4773,4774,3,1,0,17,2,0,2,1,2,0,7,2,0,4,6.746857553040399,6.911819081686048,0,2,0,0,0,-9,0,-1034.125351269792,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,15,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,7,1,0,1,11,5,1,509.25,0,0,0 +2096,2582,4776,-9,4773,4774,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.133716312412,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,5,1,509.25,0,0,0 +2097,2583,4777,4778,-9,-9,3,1,1,45,1,0,1,0,2,-9,2,1,0,5,8.79417518822186,8.885593317058257,0,2,0,-9,3,0,-8,29.64162722776719,0,0,0,53,1,5,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,15.35889134192686,15.35889134192686,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,6,4,1,864,0,0,0 +2097,2583,4778,4777,-9,-9,1,1,0,53,1,0,1,0,1,-9,1,1,0,5,0,0,0,2,0,-9,3,0,8,-28.16691140969574,0,0,0,45,2,5,1,2,3,2019,1,3,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.475046411858319,0,0,0,57.06,57.76,6,1,0,0,6,4,1,864,0,0,0 +2097,2583,4779,-9,4778,4777,2,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1038.318196552105,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,4,1,864,0,0,0 +2098,2584,4780,-9,4782,4781,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,5.488521151767429,5.70336639654223,0,2,0,0,0,-9,0,-990.705785940746,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,552.6666666666666,0,0,0 +2098,2584,4781,4782,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,4,7.42183475054418,7.603009661066899,0,2,0,-9,7,0,3,-87.94846637947113,0,0,0,51,2,4,1,-9,-9,2019,1,1,7,0,40,50,15,1,0,1,0,6.767174162459215,6.767174162459215,0,0,0,0,0,0,0,1,1,0,8.310173570458399,0,0,0,60.7,47.65,6,1,0,0,2,3,1,552.6666666666666,0,0,0 +2098,2584,4782,4781,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,4,7.416335992294966,7.738835960779301,0,2,0,-9,7,0,-3,52.92625599402903,0,0,0,54,2,4,1,2,2,2019,1,2,11,0,36,37,15,1,0,1,0,7.351403211582671,7.351403211582671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,2,3,1,552.6666666666666,0,0,0 +2098,2585,4783,-9,4782,4781,3,1,0,18,2,0,1,1,2,0,7,2,0,5,6.224582590164562,6.072647051515832,0,3,0,0,0,-9,0,-1129.273982311364,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,8,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,64.73,7,1,0,0,2,2,1,1394,0,0,0 +2099,2586,4784,4785,-9,-9,2,1,0,59,1,0,0,0,1,-9,6,3,0,2,0,0,0,1,0,-9,37,0,1,6.292815773215885,0,0,0,58,1,5,1,2,3,2019,3,1,12,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.84710341747613,3,58.02,31.59,6,1,0,0,7,5,1,401,0,0,0 +2099,2586,4785,4784,-9,-9,1,1,1,58,1,0,0,0,1,-9,1,1,0,5,9.700974210472742,9.611805100865325,0,1,0,-9,37,0,-1,44.82688410239803,0,0,0,59,1,2,3,2,2,2019,2,2,8,0,46,50,15,1,0,3,0,46.81699875860391,46.81699875860391,0,0,0,0,0,0,0,0,0,0,3.352299531594037,0,0,0,57.06,57.76,6,1,0,0,7,5,1,401,0,0,0 +2100,2587,4786,4787,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.127411363222343,8.336688021864964,0,1,0,-9,9,0,-2,50.40266309312312,0,0,0,56,1,4,1,-9,-9,2019,1,1,7,0,29,29,15,1,0,1,0,12.9540597626287,12.9540597626287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,5,4,1,800,0,0,0 +2100,2587,4787,4786,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,4,7.615756518781029,7.491608101107632,0,1,0,-9,9,0,2,35.9833847668416,0,0,0,54,2,3,1,3,3,2019,1,2,6,0,42,46,15,1,0,1,0,5.044818456354522,5.044818456354522,0,0,0,0,0,0,0,0,0,0,2.38860154070432,0,0,0,57.16,56.15,6,1,0,0,5,4,1,800,0,0,0 +2101,2588,4788,-9,4789,4790,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.783092766389,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,726.6666666666666,0,0,0 +2101,2588,4789,4790,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,1,6.645413868853414,6.442509439806143,0,2,0,-9,6,0,-4,-54.23733260534527,0,0,1,34,2,3,1,-9,-9,2019,1,1,14,2,11,19,15,1,2,1,0,6.548752990480089,6.548752990480089,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.93,25.09,3,1,0,0,12,5,1,726.6666666666666,0,0,0 +2101,2588,4790,4789,-9,-9,1,1,1,34,1,0,1,0,2,-9,1,1,0,3,9.627726754536985,9.668508722488198,0,2,0,-9,6,0,4,70.33225997113514,0,0,0,30,2,1,1,2,2,2019,1,2,7,0,60,37,15,1,0,1,0,22.85355209347171,22.85355209347171,0,0,0,0,0,0,0,1,1,0,3.098757195645012,0,0,0,52.99,51.28,4,1,0,0,12,5,1,726.6666666666666,0,0,0 +2102,2589,4791,-9,-9,-9,1,1,1,61,3,1,1,0,2,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1126.591656525195,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.176136945982718,0,0,0,51,48,5,3,0,0,8,1,1,1145,0,0,0 +2102,2590,4792,4793,-9,-9,3,1,0,27,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-3,-108.8938453408344,0,1,1,30,2,4,1,-9,-9,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,5,0,0,8,5,1,627.6666666666666,0,0,0 +2102,2590,4793,4792,-9,4791,2,1,1,30,1,1,1,0,2,-9,2,1,0,4,9.617615946983666,9.703383498198393,0,2,0,-9,2,0,3,63.12384410767288,0,0,0,27,1,4,3,-9,2,2019,2,3,10,0,40,0,15,1,1,3,0,43.46498350516391,43.46498350516391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,8,5,1,627.6666666666666,0,0,0 +2102,2590,4794,-9,4792,4793,4,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.4386104996499,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,5,1,627.6666666666666,0,0,0 +2103,2591,4795,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,4,8.856967954261785,8.827677832993249,0,3,0,0,0,-9,0,-1050.132562214289,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,55,57,15,1,0,-9,0,16.32635208473111,16.32635208473111,0,0,0,0,0,0,0,0,0,0,3.827168916450566,0,0,0,54.2,57.49,6,1,0,0,8,5,0,643,0,0,0 +2103,2592,4796,-9,-9,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,4,9.174580625855111,8.862030446308552,0,3,0,-9,0,-9,0,-988.1342724379555,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,43,0,15,1,1,-9,0,24.80820802872122,24.80820802872122,0,0,0,0,0,0,0,0,0,0,4.693998897001217,0,0,0,66.23,38.33,6,3,0,0,8,5,0,237,0,0,0 +2103,2593,4797,-9,-9,-9,3,1,0,30,2,0,0,0,1,-9,2,1,0,4,9.114138401324219,9.236529519942668,0,3,0,-9,0,-9,0,-1052.001252708782,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,46,0,15,1,0,-9,0,21.05434451393121,21.05434451393121,0,0,0,0,0,0,0,0,0,0,2.533258355493655,0,0,0,48.53,58.91,6,1,0,0,8,5,0,719,0,0,0 +2104,2594,4798,-9,4800,4799,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.225280832848,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,803.6666666666666,0,0,0 +2104,2594,4799,4800,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,5,8.373871643934152,8.402050864414662,0,2,0,-9,11,0,2,-9.797587767036203,0,0,0,32,1,5,1,-9,-9,2019,1,1,7,0,54,60,15,1,0,1,0,8.328051186126752,8.328051186126752,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.65,56.13,6,1,0,0,1,4,1,803.6666666666666,0,0,0 +2104,2594,4800,4799,-9,-9,1,1,0,32,1,0,2,0,1,-9,2,1,0,5,7.673310813673264,7.837404466531107,0,2,0,-9,10,0,-2,-31.42197998743607,0,0,1,34,2,5,1,-9,-9,2019,1,2,8,0,43,26,15,1,0,1,0,6.839342519990121,6.839342519990121,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,1,0,0,1,4,1,803.6666666666666,0,0,0 +2105,2595,4801,4802,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,2,8.214566741673515,8.164358413723781,4.750225780291522,1,0,-9,42,0,0,12.90478406283779,0,0,0,63,2,3,3,3,3,2019,2,2,14,4,42,39,15,1,4,4,0,8.944238313798978,8.944238313798978,0,0,0,0,0,0,0,1,1,0,5.23530502718384,5.46583006500479,0,0,37.72,43.87,5,1,0,0,13,3,1,311,0,0,0 +2105,2595,4802,4801,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,42,0,0,-77.55448727181222,0,0,0,63,3,2,1,-9,-9,2019,3,1,21,9,0,0,15,4,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.65,42.24,5,1,0,0,13,3,1,311,0,0,0 +2106,2596,4803,4804,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,1,0,7.790471392154656,7.53208638714119,1,0,-9,8,0,6,-11.52485202732047,0,0,0,72,3,2,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,25.08112324269965,0,0,0,0,1,1,0,0,7.339099656927575,0,0,45.56,24.24,6,1,0,0,11,2,1,296,0,0,0 +2106,2596,4804,4803,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,3.205472171965436,3.579537267604679,1,0,-9,8,0,-6,-13.26324352966276,0,0,0,78,3,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.258349693815333,42.48536313586854,1,50.71,39.12,7,1,0,0,11,2,1,296,0,0,0 +2107,2597,4805,-9,4806,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,5,6.260635503588607,6.110022484411267,0,3,0,0,0,-9,0,-1077.865497530861,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,0,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,9,2,1,296,0,0,0 +2107,2598,4806,4807,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,2,9.033109721794188,8.676607975711642,0,1,0,-9,2,0,-8,-57.95807738140452,0,0,1,44,2,4,1,3,2,2019,1,3,25,11,40,40,15,1,11,1,0,18.30983855635525,18.30983855635525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.5,44.11,5,1,0,0,9,5,1,224.5,0,0,0 +2107,2598,4807,4806,-9,-9,3,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.767055103635087,9.143047445421962,0,1,0,-9,2,0,8,-149.5959879539834,0,0,0,36,2,2,1,-9,-9,2019,1,1,10,0,60,50,15,1,0,1,0,13.45150553045776,13.45150553045776,0,0,0,0,0,0,0,0,0,0,6.889437671831075,0,0,0,49.91,58.02,6,1,0,0,9,5,1,224.5,0,0,0 +2108,2599,4808,4809,-9,-9,1,1,0,24,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,5,0,-7,-81.13636882486509,-9,1,1,31,2,5,1,2,2,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.87,42.1,7,1,1,0,7,3,1,576,0,0,0 +2108,2599,4809,4808,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,5,8.083013943991601,8.047467460884006,0,1,0,-9,5,0,7,-134.7916898819733,-9,0,0,24,2,4,3,-9,-9,2019,2,1,6,0,37,0,15,1,0,3,0,10.28332837531985,10.28332837531985,0,0,0,0,0,0,0,0,0,0,1.592430422671645,0,0,0,57.06,57.76,7,1,0,0,7,3,1,576,0,0,0 +2109,2600,4810,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,7.864515090393807,7.769856968903204,0,3,0,0,0,-9,0,-955.7192293641372,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,39,34,15,1,0,-9,0,8.531671668682995,8.531671668682995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.42,41.42,6,1,0,0,5,3,0,429,0,0,0 +2110,2601,4811,4812,-9,-9,2,1,0,56,1,0,0,0,1,-9,8,3,1,3,0,8.04180422963457,7.675512909424185,1,0,-9,8,0,-3,42.68624617201949,0,0,0,59,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.731259921587349,0,0,48,48,5,1,0,0,13,5,1,248,0,0,0 +2110,2601,4812,4811,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.540877039017818,8.758498097447905,0,1,0,-9,33,0,3,27.68213983210615,0,0,0,56,1,3,3,3,3,2019,2,2,6,0,36,36,15,1,0,3,0,18.18223236686295,18.18223236686295,0,0,0,0,0,0,0,0,0,0,6.575678554746674,0,17.50103800336033,2,62.49,55.09,7,1,0,0,13,5,1,248,0,0,0 +2110,2602,4813,-9,4811,4812,3,1,1,27,2,0,0,0,2,-9,2,1,0,5,8.498929236560789,8.582905845527186,0,3,0,0,0,-9,0,-989.6203341986064,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,38,40,15,1,0,-9,1,16.62630074358489,16.62630074358489,0,0,0,0,0,0,0,0,0,0,8.501456037765372,0,1.866430956996632,3,57.06,57.76,6,1,0,0,13,5,1,1454,0,0,0 +2110,2603,4814,-9,4811,4812,4,1,1,18,2,0,0,1,2,0,7,2,0,5,6.885684419495067,7.154359032953,0,3,0,0,0,-9,0,-1012.887134160911,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,13,2,1,445,0,0,0 +2111,2604,4815,4816,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,3,9.310571100351748,9.446414435638326,0,2,0,-9,8,0,2,112.8714029720165,0,0,0,51,1,3,1,-9,-9,2019,1,1,19,7,44,47,15,1,7,1,0,26.51782024590313,26.51782024590313,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.12,59.15,3,1,0,1,1,5,1,384.5,0,0,0 +2111,2604,4816,4815,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,3,8.937458613696982,8.719458956162137,0,2,0,-9,26,0,-2,-21.54765638030202,0,0,0,53,1,3,1,2,3,2019,1,2,7,0,33,43,15,1,0,1,0,21.96154329322171,21.96154329322171,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.94,49.53,5,1,0,1,1,5,1,384.5,0,0,0 +2112,2605,4817,-9,4820,4818,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.30812700644,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,0,788.75,0,0,0 +2112,2605,4818,4820,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,2,9.449648200319523,9.321074455292342,0,2,0,-9,17,0,3,91.53527796895723,0,0,0,41,1,3,1,2,1,2019,1,1,13,3,48,0,15,1,3,1,0,30.86829520626276,30.86829520626276,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.83,42.54,3,1,0,0,2,5,0,788.75,0,0,0 +2112,2605,4819,-9,4820,4818,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-930.6744685984969,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,2,5,0,788.75,0,0,0 +2112,2605,4820,4818,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,3,8.423167560753608,8.397892071269769,0,2,0,-9,17,0,-3,36.65454518430976,0,0,1,44,1,2,1,2,2,2019,1,2,10,1,28,28,15,1,1,1,0,19.54044578950446,19.54044578950446,0,0,0,0,0,0,0,1,1,0,.5086190798485559,0,0,0,51.1,52.08,6,1,0,0,2,5,0,788.75,0,0,0 +2113,2606,4821,4822,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,2,7.714816966108629,8.154107604934509,7.45299882019432,2,0,-9,6,0,1,86.58462646848284,0,0,0,49,2,4,1,3,3,2019,1,1,13,1,25,25,15,1,1,1,0,11.09624481649743,11.09624481649743,0,0,0,0,0,0,0,1,1,0,1.36332982465691,7.050869415015719,0,0,44.83,41.9,4,1,0,0,2,4,1,428.5,0,0,0 +2113,2606,4822,4821,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.741127210307061,8.59036241463037,0,2,0,-9,6,0,-1,36.27654416688639,0,0,0,50,3,2,1,2,2,2019,1,2,8,0,37,40,15,1,0,1,0,19.671543735695,19.671543735695,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,2,4,1,428.5,0,0,0 +2113,2607,4823,-9,4821,-9,4,1,0,33,2,0,1,0,2,-9,2,1,0,4,7.297127684313008,7.346297523861176,0,3,0,-9,0,-9,0,-1048.890435660332,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,38,0,15,1,2,-9,1,5.109786155831328,5.109786155831328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,2,3,1,1329,0,0,0 +2113,2607,4824,-9,4823,-9,5,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1119.837818564929,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,2,3,1,1329,0,0,0 +2113,2608,4825,-9,4821,-9,3,1,1,23,2,0,1,0,2,-9,2,1,0,4,7.989140292068885,8.155200258810288,0,3,0,0,0,-9,0,-1103.537023629632,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,40,15,1,1,-9,1,8.404285812962508,8.404285812962508,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,2,3,1,740,0,0,0 +2114,2609,4826,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,4,8.754516663930607,8.439589282535257,0,3,0,0,0,-9,0,-1050.295714884024,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,45,42,15,1,11,-9,0,14.35648402934219,14.35648402934219,0,0,0,0,0,0,0,0,0,0,0,0,0,3,30.49,63.34,1,1,0,1,10,5,1,178,0,0,0 +2115,2610,4827,4828,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.783841943815966,8.065188378227644,1,0,-9,54,0,5,-84.8211527697141,0,0,0,72,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,12.38861210125058,0,0,0,0,1,1,0,1.927353826763785,7.729852930313005,0,0,55.86,43.17,6,1,0,0,9,3,1,839.5,0,0,0 +2115,2610,4828,4827,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,6.244149731656161,6.494500201476668,1,0,-9,54,0,-5,106.5830514972201,0,0,0,77,1,3,3,-9,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.28806799435122,6.117347305639504,0,0,57.16,56.15,7,1,0,0,9,3,1,839.5,0,0,0 +2116,2611,4829,4830,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,5,0,5.055250077129807,5.349085827343755,1,0,-9,8,0,-2,93.56332377391253,0,0,0,68,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.665499167416953,5.583019506738282,0,0,59.04,54.12,6,1,0,0,10,2,1,444.5,0,0,0 +2116,2611,4830,4829,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,6.378228195818609,5.825185170630784,1,0,-9,8,0,2,-54.18427653168933,0,0,0,66,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.452804767960759,5.726825068531348,0,0,55.2,49.4,7,1,0,0,10,2,1,444.5,0,0,0 +2117,2612,4831,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,3,8.771941636184522,8.597012050849591,0,3,0,0,0,-9,0,-1099.846678350877,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,42,38,15,1,0,-9,0,15.37996217028496,15.37996217028496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,5,1,0,0,1,5,0,289,0,0,0 +2118,2613,4832,4833,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,5,0,5.692876349718524,5.955690289502663,1,0,-9,50,0,-2,32.07447935373401,0,0,0,73,1,4,3,1,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.447080588522111,5.72490309960556,0,0,57.06,57.76,7,1,0,0,10,2,1,520,0,0,0 +2118,2613,4833,4832,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,4,0,5.119928540066399,4.741805748936107,1,0,-9,50,0,2,-12.94674221394386,0,0,0,71,1,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.397821159948194,5.027241650562375,0,0,56.77,52.22,6,1,0,0,10,2,1,520,0,0,0 +2119,2614,4834,-9,4835,4837,6,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.4193392611828,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,593,0,0,0 +2119,2614,4835,4837,-9,-9,2,1,0,49,1,0,4,0,1,-9,2,1,0,5,7.833469764476055,7.443422326390422,0,2,0,-9,12,0,5,105.360093086179,0,0,0,44,1,3,1,2,1,2019,1,1,7,0,35,25,15,1,0,1,0,9.464094354000244,9.464094354000244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,2,1,593,0,0,0 +2119,2614,4836,-9,4835,4837,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.0676115056759,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,593,0,0,0 +2119,2614,4837,4835,-9,-9,1,1,1,44,1,0,4,0,1,-9,1,1,0,3,0,0,0,2,0,-9,12,0,-5,-44.89416337072156,0,0,0,49,1,5,1,1,2,2019,1,2,7,0,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,13,2,1,593,0,0,0 +2120,2615,4838,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,2.186157500876263,2.160586411574156,3,0,0,0,-9,0,-863.3605888763641,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.9016263486772641,2.013167975351447,0,0,31.81,24.75,4,1,0,0,9,2,0,117,0,0,0 +2120,2616,4839,-9,-9,-9,2,1,1,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1055.358376124155,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.51,41.82,4,1,0,0,9,1,0,83,0,0,0 +2121,2617,4840,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,2,1,0,3,6.100677648155129,7.228089020866095,7.053744554129828,3,0,0,0,-9,0,-1021.64848844432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,8,8,15,1,0,-9,0,6.445898648087791,6.445898648087791,0,0,0,0,0,0,0,1,1,0,0,6.758985317937837,0,0,61.85,47.26,6,1,0,0,10,3,1,856,0,0,0 +2122,2618,4841,4842,-9,-9,2,1,0,52,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,4,0,-9,0,0,48,3,2,3,-9,-9,2019,4,1,30,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.399257480500266,0,0,0,21.72,22.57,1,1,0,0,12,1,0,352,0,0,0 +2122,2618,4842,4841,-9,-9,1,1,1,48,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,1,1,-9,-4,0,0,0,0,52,2,1,3,-9,-9,2019,4,2,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.5584258270846,1,40.13,51.16,3,1,1,1,12,1,0,352,0,0,0 +2123,2619,4843,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1013.303625408965,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.09,36.76,5,1,1,0,12,1,0,304,0,0,0 +2124,2620,4844,4845,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,6.63117800771919,6.716593392749502,1,0,-9,58,0,-5,41.58163071901528,0,0,0,84,1,5,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.368169572582514,0,0,52,45,6,1,0,0,13,5,1,995.5,0,0,0 +2124,2620,4845,4844,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,5,0,8.988514012695068,8.717471837221842,1,0,-9,58,0,5,-113.0427777318312,0,0,0,79,2,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.679019945311441,8.641834168795631,0,0,59.04,54.12,6,1,0,0,13,5,1,995.5,0,0,0 +2125,2621,4846,-9,-9,-9,1,1,0,45,3,0,0,0,3,-9,6,3,0,4,0,0,0,3,0,-9,0,-9,0,-1086.107445292861,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,4,1,0,345,0,0,0 +2125,2622,4847,-9,4846,-9,2,1,1,20,2,0,0,1,2,-9,7,2,0,2,6.907473553691456,6.873123427440934,0,3,0,-9,0,-9,0,-864.033598773118,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,33,12,15,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.17,53.18,1,3,0,1,4,2,0,293,0,0,0 +2126,2623,4848,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,5,9.685450347281785,9.697004311247333,0,3,0,0,0,-9,0,-1036.381304792551,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,35,47,15,1,2,-9,0,45.86875045735435,45.86875045735435,0,0,0,0,0,0,0,0,0,0,4.11074687429702,0,0,0,36.35,64.53,6,1,0,0,7,5,1,229,0,0,0 +2127,2624,4849,4850,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,3,9.133567948759845,9.258035176120172,0,1,0,-9,8,0,2,25.62244629398062,0,0,0,57,1,5,1,3,2,2019,1,2,8,0,53,63,15,1,0,1,0,17.84353355554713,17.84353355554713,0,0,0,0,0,0,0,0,0,0,3.952063113801777,0,0,0,52,54.51,5,1,0,0,9,5,1,247,0,0,0 +2127,2624,4850,4849,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,5,8.314272695292098,8.372239400700032,0,1,0,-9,8,0,-2,20.82315414644056,0,0,0,59,1,3,1,1,1,2019,1,1,6,0,36,36,15,1,0,1,0,12.62143848073188,12.62143848073188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,247,0,0,0 +2127,2625,4851,-9,4850,4849,3,1,1,22,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1147.833437284414,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,9,1,1,294,0,0,0 +2128,2626,4852,-9,4854,4853,1,1,1,33,2,0,0,0,1,-9,2,1,0,4,7.725155320369994,7.481374619494445,0,3,0,0,0,-9,0,-1131.741572807917,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,45,15,1,0,-9,1,6.666991394873524,6.666991394873524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,5,0,1,8,3,0,170,0,0,0 +2128,2627,4853,4854,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,6,0,18,0,0,0,0,55,3,3,3,-9,-9,2019,4,3,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.464750411745479,0,0,0,53,47,6,5,0,0,8,1,0,462,0,0,0 +2128,2627,4854,4853,-9,-9,3,1,0,55,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,6,0,-18,0,0,0,0,73,1,3,3,-9,-9,2019,4,2,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,8,1,0,462,0,0,0 +2129,2628,4855,4856,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,4,8.35443273760376,8.595042112144959,6.758739673896335,1,0,-9,2,0,7,87.20516426427125,0,0,0,55,2,5,1,3,3,2019,1,2,8,0,43,45,15,1,0,1,0,9.731183616870558,9.731183616870558,0,0,0,0,0,0,0,0,0,0,.1757756521250935,7.35691892508784,0,0,48.87,58.55,6,1,0,0,9,5,1,453.5,0,0,0 +2129,2628,4856,4855,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,5,8.634088420894576,8.910020293021859,7.00888690696465,1,0,-9,2,0,-7,95.21675661828675,-9,0,0,62,3,4,1,-9,-9,2019,1,1,9,1,52,0,15,1,1,1,0,10.16123955379972,10.16123955379972,0,0,0,0,0,0,0,0,0,0,0,7.630313982338114,0,0,51.14,60.45,6,1,0,0,9,5,1,453.5,0,0,0 +2130,2629,4857,-9,4858,4859,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.1770452171588,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,1,851.25,0,0,0 +2130,2629,4858,4859,-9,-9,2,1,0,33,1,0,2,0,2,-9,1,1,0,3,.5855630467215748,.4201380226506312,0,2,0,-9,10,0,-2,132.2629679977052,0,0,1,35,1,3,1,2,2,2019,1,1,11,1,40,25,15,1,1,1,0,.002768920522771,.002768920522771,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,2,3,1,851.25,0,0,0 +2130,2629,4859,4858,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,3,8.611196234164206,8.412468766527262,0,2,0,-9,10,0,2,7.188860331172977,0,0,0,33,2,3,1,2,2,2019,1,2,13,2,45,44,15,1,2,1,0,12.64602419747799,12.64602419747799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.49,56.58,3,1,0,0,2,3,1,851.25,0,0,0 +2130,2629,4860,-9,4858,4859,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.373226962631,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,3,1,851.25,0,0,0 +2131,2630,4861,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1045.575339915318,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,27,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.987898969768051,3,38.18,20.71,3,1,0,0,13,1,0,303,0,0,0 +2132,2631,4862,4863,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-4,-54.9212699403642,0,0,0,80,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,2.624677892951413,0,0,0,0,1,1,0,0,0,0,0,58.88,40.91,6,1,0,0,10,2,1,711,0,0,0 +2132,2631,4863,4862,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,7.552198331970739,7.416597053329722,1,0,-9,10,0,4,153.1140204832001,0,0,0,76,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.823491334678772,7.420990637309988,0,0,52.54,54.24,6,1,0,0,10,2,1,711,0,0,0 +2133,2632,4864,4865,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,0,-21.39317324651207,0,0,0,79,3,3,3,-9,-9,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.7,46.47,6,1,0,0,2,2,1,421,0,0,0 +2133,2632,4865,4864,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,5.003127045309314,4.693885127785101,1,0,-9,51,0,0,-18.73504879544137,0,0,0,79,2,3,3,2,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.202023787834177,4.721691624451408,0,0,57.1,30.43,7,1,0,0,2,2,1,421,0,0,0 +2134,2633,4866,4868,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,5,8.093270809418767,8.662929294073935,0,2,0,-9,6,0,1,48.15781940423262,0,0,0,42,2,4,1,2,2,2019,1,2,15,3,38,37,15,1,3,1,0,9.048316884281689,9.048316884281689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,5,1,0,0,12,3,1,288,0,0,0 +2134,2633,4867,-9,4868,4866,3,1,0,17,2,0,2,1,2,-9,7,2,0,4,6.470037361223405,6.222444259404103,0,2,0,0,0,-9,0,-902.1625035890436,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,12,3,1,288,0,0,0 +2134,2633,4868,4866,-9,-9,2,1,0,42,1,0,2,0,2,-9,1,1,0,4,7.065722325814018,7.123967990410097,0,2,0,-9,6,0,-1,118.8963783537398,0,0,1,43,2,5,1,2,2,2019,1,1,11,0,42,40,15,1,0,1,0,3.377576596595631,3.377576596595631,0,0,0,0,0,0,0,0,0,0,4.417616619788351,0,0,0,54.2,57.49,6,1,0,0,12,3,1,288,0,0,0 +2135,2634,4869,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,4.8181502923244,4.373767836206209,3,0,0,0,-9,0,-969.5544344268582,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.068857318315374,0,0,54,44,6,1,0,0,2,1,1,1850,0,0,0 +2136,2635,4870,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,8.701654708528952,8.422707981953685,0,3,0,0,0,-9,0,-1134.874383977821,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,88,48,15,1,0,-9,0,4.791785357071817,4.791785357071817,0,0,0,0,0,0,0,0,0,0,2.943393491992841,0,8.620023947856222,3,52.75,41.81,5,1,0,0,9,4,1,273,0,0,0 +2137,2636,4871,4872,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,5,0,8.217924686480616,7.99823982284673,1,0,-9,10,0,-1,23.78615145283627,0,0,0,63,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.932704582463203,7.72258595776052,0,0,62.39,56.71,7,1,0,0,12,3,1,647,0,0,0 +2137,2636,4872,4871,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,3.796059074768797,3.9953048105071,1,0,-9,10,0,1,-30.15121950453653,0,0,0,62,3,5,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.929417928960431,10.15721824009097,3,54.2,57.49,7,1,0,0,12,3,1,647,0,0,0 +2138,2637,4873,-9,-9,-9,1,1,1,37,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-931.4133792423133,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,4,0,41,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.72,63.76,6,1,1,0,9,1,0,437,0,0,0 +2139,2638,4874,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,3,0,7.900993009403083,7.739101112751233,3,0,0,0,-9,0,-997.9324720383891,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.255990477444928,7.647317975032021,0,0,55.76,42.06,6,1,0,0,9,3,1,432,0,0,0 +2140,2639,4875,4876,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,6.863336026237254,6.723628142124429,1,0,-9,2,0,5,33.92879656744275,0,0,0,61,2,3,1,2,2,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.358627776970034,7.078818374560363,0,0,64.98,27.13,5,1,0,0,5,3,1,1663.5,0,0,0 +2140,2639,4876,4875,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.742952451372357,7.567751334591218,0,1,0,-9,2,0,-5,58.6327730585027,0,0,0,66,2,2,3,3,3,2019,2,1,7,0,33,38,15,1,0,4,0,8.273844462545275,8.273844462545275,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.91,42.65,6,1,0,0,5,3,1,1663.5,0,0,0 +2141,2640,4877,-9,4878,4879,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.535571638084,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,1,570,0,0,0 +2141,2640,4878,4879,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,4,9.039223317456226,8.831068321441602,0,2,0,-9,17,0,-7,-131.4271995205742,0,0,0,54,2,2,1,1,2,2019,1,2,9,0,50,42,15,1,0,1,0,14.11731772467581,14.11731772467581,0,0,0,0,0,0,0,1,1,0,2.050572101633641,0,0,0,49.35,59.64,6,1,0,0,5,5,1,570,0,0,0 +2141,2640,4879,4878,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,2,7.674408893470501,8.209932913048366,0,2,0,-9,13,0,7,54.24285608975116,0,0,0,47,1,4,1,3,2,2019,1,1,11,1,51,53,15,1,1,1,0,6.878493866458993,6.878493866458993,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.74,47.8,6,1,0,0,5,5,1,570,0,0,0 +2142,2641,4880,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,3,8.324995976143059,8.343834236920786,0,3,0,0,0,-9,0,-1022.585562332292,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,70,76,15,1,0,-9,0,5.482905589818754,5.482905589818754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,9,4,1,138,0,0,0 +2143,2642,4881,4882,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,4,0,4.974926755027629,4.727993721136011,1,0,-9,65,0,-2,-111.0548835811403,0,0,0,86,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.500327916727477,4.998834675401644,0,0,61.12,51.57,7,1,0,0,4,2,1,1978,0,0,0 +2143,2642,4882,4881,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,65,0,2,-105.6417021787887,0,0,0,84,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.266060756598042,0,0,0,52.04,28.74,6,1,0,0,4,2,1,1978,0,0,0 +2144,2643,4883,-9,4884,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-947.154791366615,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,0,852,0,0,0 +2144,2643,4884,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,4,6.801682336209748,6.863433058364535,0,4,0,0,0,-9,0,-1000.77392693743,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,18,21,15,1,0,-9,0,5.783647661684173,5.783647661684173,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,4,2,0,852,0,0,0 +2145,2644,4885,4886,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,5.52518036579651,5.350224437243599,1,0,-9,8,0,-2,32.82725948438078,0,0,0,73,3,2,3,-9,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,2.632926522091475,0,0,0,0,1,1,0,4.700454464678468,5.18340097267892,0,0,55.36,48.86,5,1,0,0,8,2,1,2630,0,0,0 +2145,2644,4886,4885,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,6.191973992764456,6.273771495803148,1,0,-9,8,0,2,-46.1642053731521,0,0,0,71,3,3,3,3,-9,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.900875983078091,6.175122683298018,0,0,48.5,49.68,4,1,0,0,8,2,1,2630,0,0,0 +2146,2645,4887,4888,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,7.441747007781433,7.424499168259593,1,0,-9,9,0,-2,-19.36644935061627,0,0,0,77,2,2,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.484008732787794,7.690353000090581,0,0,52.16,43.45,4,1,0,0,12,3,1,679,0,0,0 +2146,2645,4888,4887,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,7.225726440560568,6.964936845776615,1,0,-9,9,0,2,-121.3672965646236,0,0,0,75,2,3,3,2,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.56762881436079,7.341841315554062,0,0,45.38,41.42,6,1,0,0,12,3,1,679,0,0,0 +2147,2646,4889,4890,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,8.489701967629419,8.699106515454034,7.062725391983755,1,0,-9,33,0,0,13.92383702343563,0,0,0,61,2,5,3,-9,2,2019,2,2,6,0,37,37,15,1,0,4,0,18.28082384356066,18.28082384356066,0,0,0,0,0,0,0,0,0,0,7.349945880177845,7.30706643064567,0,0,59.22,40.22,6,1,0,0,5,4,1,228.5,0,0,0 +2147,2646,4890,4889,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,4.863570266628785,4.859662786578385,1,0,-9,43,0,0,-11.17502945555814,0,0,0,61,1,3,1,3,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.873669500040465,4.544625216911992,0,3,62.39,56.71,7,1,0,0,5,4,1,228.5,0,0,0 +2148,2647,4891,4893,-9,-9,2,1,0,35,1,0,4,0,2,-9,6,3,0,5,0,0,0,2,0,-9,20,0,-5,85.53634764242994,0,0,1,40,1,2,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.86,43,6,3,0,0,8,2,0,384.25,0,0,0 +2148,2647,4892,-9,4891,4893,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-852.3149127444497,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,2,0,384.25,0,0,0 +2148,2647,4893,4891,-9,-9,1,1,1,40,1,0,4,0,1,-9,2,1,0,2,7.705863136887076,7.696407841123766,0,2,0,-9,20,0,5,57.58074160977785,0,0,0,35,2,5,3,3,2,2019,2,2,13,2,25,30,15,1,2,3,0,8.564437739076673,8.564437739076673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.16,29.58,6,3,0,0,8,2,0,384.25,0,0,0 +2148,2647,4894,-9,4891,4893,5,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.103206956388,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,384.25,0,0,0 +2149,2648,4895,-9,-9,-9,1,1,0,73,3,0,1,0,3,-9,4,3,0,4,0,7.813683588275362,7.867971687656072,4,0,0,0,-9,0,-1039.730326864818,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.880204841991997,7.621585348182018,0,0,61.8,45.76,7,1,0,0,7,3,1,314,0,0,0 +2150,2649,4896,-9,4898,4897,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.7347524745369,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,4,1,427.5,0,0,0 +2150,2649,4897,4898,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,8.549954582823913,8.680917802619392,0,2,0,-9,10,0,0,46.30265469238285,0,0,0,37,1,3,3,2,2,2019,2,2,9,0,38,37,15,1,0,3,0,25.34891395262242,25.34891395262242,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,7,4,1,427.5,0,0,0 +2150,2649,4898,4897,-9,-9,2,1,0,37,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,10,0,0,-9.279977205080401,0,0,1,37,1,4,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,5,1,0,1,7,4,1,427.5,0,0,0 +2150,2649,4899,-9,4898,4897,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.423750166715,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,4,1,427.5,0,0,0 +2151,2650,4900,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,4,8.293247934590159,8.274483577279989,0,3,0,0,0,-9,0,-1098.918611720245,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,10.81466242112609,10.81466242112609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,4,5,0,0,7,4,0,646,0,0,0 +2152,2651,4901,-9,-9,-9,1,1,0,24,3,0,0,0,1,-9,2,1,0,4,7.137604064448309,7.090560395808162,0,3,0,0,0,-9,0,-965.0688183768239,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,15,34,15,1,0,-9,0,9.033395572265038,9.033395572265038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.5,53.7,6,1,0,0,13,2,1,365,0,0,0 +2153,2652,4902,-9,-9,-9,1,1,0,34,2,1,2,0,3,-9,2,1,0,5,6.885024885998003,7.014212495260096,0,4,0,0,0,-9,0,-1002.137566585998,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,4,1,25,16,15,1,1,-9,0,5.672294518423687,5.672294518423687,0,0,0,0,0,0,0,1,1,0,0,0,10.13162920343802,3,49.96,56.89,6,1,0,0,6,2,0,745,0,0,0 +2153,2652,4903,-9,4902,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1120.210787724394,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,6,2,0,745,0,0,0 +2154,2653,4904,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,3,8.612681442003439,8.594314304683989,0,3,0,0,0,-9,0,-905.5691666090554,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,50,45,15,1,4,-9,0,12.66427146283485,12.66427146283485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.02,64.34,3,1,0,0,8,5,1,2854,0,0,0 +2155,2654,4905,4906,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,52,0,1,0,0,0,0,72,2,3,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,2.562007229063006,0,0,0,0,1,1,0,0,0,0,0,36.72,31.97,4,1,0,0,9,1,1,953.5,0,0,0 +2155,2654,4906,4905,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-1,0,0,0,0,73,1,2,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.144694905799779,0,0,0,54.96,53.17,6,1,0,0,9,1,1,953.5,0,0,0 +2156,2655,4907,4908,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,2,7.952988739316095,8.098941474338311,0,1,0,-9,9,0,-5,10.73708876598838,0,0,1,45,2,3,1,3,3,2019,1,1,10,0,68,38,15,1,0,1,0,5.886818843770442,5.886818843770442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,31.26,7,1,0,0,6,5,0,650.5,0,0,0 +2156,2655,4908,4907,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,3,8.412610207016925,7.979316607482346,0,1,0,-9,9,0,5,54.39729551878064,0,0,0,40,2,2,1,-9,-9,2019,1,2,12,0,60,35,15,1,0,1,0,7.897780431503445,7.897780431503445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.17,40.52,5,1,0,0,6,5,0,650.5,0,0,0 +2157,2656,4909,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,2,0,7.249634005811994,6.912197045212948,3,0,0,0,-9,0,-1068.813011038028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.490124454002615,6.972493633532403,0,0,50.78,33.91,4,1,0,0,11,2,0,992,0,0,0 +2158,2657,4910,-9,4911,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-979.2879796109127,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,0,552,0,0,0 +2158,2657,4911,-9,-9,-9,1,1,0,29,3,1,2,0,1,-9,5,1,0,4,7.741129228340575,7.935504098914963,0,4,0,0,0,-9,0,-884.8102904676419,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,8.217261777789123,8.217261777789123,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,56.21,6,1,0,0,10,3,0,552,0,0,0 +2158,2657,4912,-9,4911,-9,2,1,0,12,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.6629047977711,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,3,0,552,0,0,0 +2159,2658,4913,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,8,3,1,2,0,6.221086868822539,5.77271025221657,3,0,0,0,-9,0,-1011.0519107122,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.508327211735442,0,6.874068260787436,3,51.92,20.94,6,1,0,0,12,2,0,2161,0,0,0 +2160,2659,4914,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,4,9.481201000093797,9.377574456900094,0,3,0,0,0,-9,0,-1039.068492818413,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,40,15,1,1,-9,0,32.97603380862717,32.97603380862717,0,0,0,0,0,0,0,0,0,0,2.391655318952806,0,0,0,40.47,55.65,6,1,0,0,7,5,1,244,0,0,0 +2161,2660,4915,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,2,1,0,1,8.997657449977149,8.810676087687259,0,3,0,0,0,-9,0,-921.6265722806073,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,50,45,15,1,11,-9,0,13.08486212076612,13.08486212076612,0,0,0,0,0,0,0,0,0,0,.1580210039309363,0,0,0,35.63,34,3,1,0,0,7,5,0,153,0,0,0 +2162,2661,4916,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-852.1781960992021,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,28,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.291870625651075,0,1.338228991774677,3,56.92,49.39,6,1,0,0,4,1,1,3067,0,0,0 +2163,2662,4917,-9,4919,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1111.273182137652,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,62,5,5,0,0,10,1,0,505.75,0,0,0 +2163,2662,4918,-9,4919,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1016.457694936875,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,5,0,0,10,1,0,505.75,0,0,0 +2163,2662,4919,-9,-9,-9,1,1,0,44,3,0,3,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1025.089151209213,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,71.6479941564379,3,41.7,39.18,6,1,0,0,10,1,0,505.75,0,0,0 +2163,2662,4920,-9,4919,-9,2,1,0,17,2,0,3,0,3,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1050.269875222996,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.58,56.89,6,1,0,0,10,1,0,505.75,0,0,0 +2164,2663,4921,-9,4922,4925,4,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.4177787476439,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,1103.166666666667,0,0,0 +2164,2663,4922,4925,-9,-9,2,1,0,42,1,1,4,0,1,-9,2,1,0,5,8.669819679546718,8.655175078538459,0,2,0,-9,6,0,-1,35.45047880642326,0,0,1,43,2,4,1,2,3,2019,1,1,11,0,33,30,15,1,0,1,0,23.55082093049171,23.55082093049171,0,0,0,0,0,0,0,1,1,0,3.068664475866609,0,0,0,48.77,60.16,6,1,0,0,13,4,1,1103.166666666667,0,0,0 +2164,2663,4923,-9,4922,4925,6,1,0,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.3367070065323,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,1103.166666666667,0,0,0 +2164,2663,4924,-9,4922,4925,5,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.217596510896,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,1103.166666666667,0,0,0 +2164,2663,4925,4922,-9,-9,1,1,1,43,1,1,4,0,2,-9,2,1,0,4,8.538050907882948,8.378750255009201,0,2,0,-9,6,0,1,34.8796943695455,0,0,0,42,1,5,1,2,3,2019,1,2,11,0,50,45,15,1,0,1,0,11.7688371044373,11.7688371044373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.47,53.17,6,1,0,0,13,4,1,1103.166666666667,0,0,0 +2164,2663,4926,-9,4922,4925,3,1,1,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.244052329933,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,4,1,1103.166666666667,0,0,0 +2165,2664,4927,4928,-9,-9,2,1,1,67,1,0,1,0,1,-9,4,3,0,4,0,8.02515811923154,8.273039669259381,2,0,-9,46,0,-1,213.5595511685414,0,0,0,68,1,2,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.546579768517063,8.209190097316192,29.97270425663321,3,59.71,50.89,6,1,0,0,9,3,1,240,0,0,0 +2165,2664,4928,4927,-9,-9,1,1,0,68,1,0,1,0,1,-9,4,3,0,2,0,5.880701197106839,6.470119575055592,2,0,-9,46,0,1,-1.569131889583291,0,0,0,67,1,4,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.96114806638986,6.012254639610286,34.94669549258495,3,55.92,36.72,5,1,0,0,9,3,1,240,0,0,0 +2166,2665,4929,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,3,0,6.367960769841759,6.283150083963646,3,0,0,0,-9,0,-1013.609597341552,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.539693645028902,6.497793491236996,0,0,53,46,6,1,0,0,2,2,1,505,0,0,0 +2167,2666,4930,-9,4931,4932,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.6786226207514,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,0,1345.666666666667,0,0,0 +2167,2666,4931,4932,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,4,8.3617516058872,8.358705477118459,0,2,0,-9,4,0,-3,33.73963460763047,0,0,1,38,2,2,1,2,2,2019,1,2,12,2,37,37,15,1,2,1,0,11.48096929071421,11.48096929071421,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.7,59.17,5,1,0,0,11,4,0,1345.666666666667,0,0,0 +2167,2666,4932,4931,-9,-9,2,1,1,38,1,1,1,0,2,-9,2,1,0,2,8.410561329014227,8.336450162850754,0,2,0,-9,4,0,3,135.8903973084551,0,0,0,35,1,4,1,-9,-9,2019,1,1,13,1,42,43,15,1,1,1,0,11.19309617141442,11.19309617141442,0,0,0,0,0,0,0,1,1,0,0,0,8.005922965219707,3,19.03,59.2,2,1,0,1,11,4,0,1345.666666666667,0,0,0 +2168,2667,4933,-9,4934,4936,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.2153555555909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,911.75,0,0,0 +2168,2667,4934,4936,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,3,7.715390954918527,7.634009567425261,0,2,0,-9,7,0,-1,.9658596211807673,-9,0,1,31,2,2,1,3,-9,2019,1,2,13,1,28,0,15,1,1,1,0,6.679115682473873,6.679115682473873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.61,45.13,4,1,0,0,11,4,1,911.75,0,0,0 +2168,2667,4935,-9,4934,4936,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.2258866088182,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,4,1,911.75,0,0,0 +2168,2667,4936,4934,-9,-9,2,1,1,31,1,1,2,0,2,-9,1,1,0,2,8.697182128477674,8.520627504953577,0,2,0,-9,7,0,1,-167.6450975688591,0,0,0,30,2,3,1,-9,-9,2019,1,1,24,11,40,40,15,1,11,1,0,13.08131382858648,13.08131382858648,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,48.18,3,1,0,0,11,4,1,911.75,0,0,0 +2169,2668,4937,4938,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,8.480017498520459,8.566055474045145,0,1,0,-9,27,0,0,-89.63404039993104,0,0,0,51,2,4,1,3,3,2019,1,2,7,0,31,58,15,1,0,1,0,19.77207647509486,19.77207647509486,0,0,0,0,0,0,0,0,0,0,1.725837162606932,0,0,0,59.14,52.5,7,1,0,0,9,5,1,523,0,0,0 +2169,2668,4938,4937,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,4,9.524510796210393,9.534115630650318,0,1,0,-9,27,0,0,18.12220519990533,0,0,0,51,2,4,1,2,2,2019,1,1,13,1,50,46,15,1,1,1,0,43.01662951751516,43.01662951751516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.29,66.78,5,1,0,0,9,5,1,523,0,0,0 +2169,2669,4939,-9,4937,4938,3,1,1,23,2,0,0,0,2,1,2,1,0,4,7.739289563397252,8.55307367580007,0,3,0,0,0,-9,0,-1094.902536575343,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,0,15,1,0,-9,1,8.409888809033388,8.409888809033388,0,0,0,0,0,0,0,0,0,0,.5685800614247765,0,0,0,47,59,6,1,0,0,9,4,1,2287,0,0,0 +2169,2670,4940,-9,4937,4938,4,1,1,19,2,0,0,1,2,0,7,2,0,3,7.739212126351649,8.008619733395635,0,3,0,0,0,-9,0,-867.586719153858,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,40,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.39439310035085,0,0,0,23.13,65.14,5,1,0,1,9,4,1,873,0,0,0 +2170,2671,4941,4942,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,9.200153566351338,9.307313052732654,8.53436003462412,2,0,-9,10,0,2,-78.53499909239217,-9,0,0,39,1,2,1,2,3,2019,1,1,10,0,37,0,15,1,1,1,0,24.51301660811681,24.51301660811681,0,0,0,0,0,0,0,1,1,0,.7803912933629384,8.661889524702611,0,0,50,57,5,1,0,0,5,5,1,437.75,0,0,0 +2170,2671,4942,4941,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,2,7.415477906706728,7.40458107715361,0,2,0,-9,10,0,-2,23.01807648888818,0,0,1,41,1,4,1,2,2,2019,1,2,19,8,30,41,15,1,8,1,0,5.495396854781625,5.495396854781625,0,0,0,0,0,0,0,1,1,0,0,0,27.02342833350392,2,35.05,35.48,5,1,0,0,5,5,1,437.75,0,0,0 +2170,2671,4943,-9,4942,4941,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.8980590947432,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,5,1,437.75,0,0,0 +2170,2671,4944,-9,4942,4941,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.58472863815,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,1,437.75,0,0,0 +2171,2672,4945,4946,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,7.903445140090414,8.14716760924432,4.817802762942951,1,0,-9,34,0,7,-17.86251645729335,0,0,0,56,2,3,1,2,3,2019,1,2,9,0,13,0,15,1,0,1,0,27.73278645763443,27.73278645763443,0,0,0,0,0,0,0,0,0,0,6.860844527795715,0,0,0,57.16,56.15,6,1,0,0,2,5,1,755,0,0,0 +2171,2672,4946,4945,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.918013367898158,8.937062446095647,8.147186205063784,1,0,-9,34,0,-7,-27.73243886048234,0,0,0,63,2,4,1,2,2,2019,1,1,10,0,22,22,15,1,0,1,0,16.04346402993768,16.04346402993768,0,0,0,0,0,0,0,0,0,0,0,8.395664769130853,0,0,61.43,43.34,7,1,0,0,2,5,1,755,0,0,0 +2172,2673,4947,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,3,0,5.924955938004905,5.954681312124339,3,0,0,0,-9,0,-1010.285716320445,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.872254213795345,0,0,0,50.34,46.94,4,1,0,0,2,2,1,552,0,0,0 +2173,2674,4948,4951,-9,-9,2,1,1,35,1,0,2,0,2,-9,3,3,0,2,0,0,0,2,0,-9,6,0,8,62.95597871864072,0,0,0,27,2,4,1,3,3,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.58459774708732,3,43.57,41.1,3,1,1,1,5,2,0,476,0,0,0 +2173,2674,4949,-9,4951,4948,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1018.514276565577,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,5,2,0,476,0,0,0 +2173,2674,4950,-9,4951,4948,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.736109258015,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,2,0,476,0,0,0 +2173,2674,4951,4948,-9,-9,1,1,0,27,1,0,2,0,2,-9,2,1,0,4,8.022888779012582,8.086545479167034,0,2,0,-9,6,0,-8,-58.2985782385945,0,1,1,35,2,2,3,2,2,2019,2,2,10,2,55,10,15,1,2,3,0,5.16036613625803,5.16036613625803,0,0,0,0,0,0,0,1,1,0,0,0,71.30657947414227,3,48.23,42.78,4,1,0,1,5,2,0,476,0,0,0 +2174,2675,4952,4953,-9,-9,2,1,0,56,1,0,0,0,3,-9,4,3,0,4,0,5.590899673067478,5.6301381220391,1,0,-9,7,0,3,-99.84863300349126,0,0,0,53,2,1,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.302447555707234,5.437073754672872,0,3,57.16,56.15,6,1,0,0,4,2,1,802.5,0,0,0 +2174,2675,4953,4952,-9,-9,1,1,1,53,1,0,0,0,2,-9,4,3,0,1,0,6.95300431881245,7.163423905568084,1,0,-9,7,0,-3,12.30432674837974,0,0,0,56,3,4,3,2,2,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.7908552619356645,6.36353336647912,8.614964175938795,3,30.47,28.46,3,1,0,0,4,2,1,802.5,0,0,0 +2175,2676,4954,-9,-9,-9,1,1,0,43,3,0,1,0,3,-9,97,3,0,3,0,0,0,4,0,-9,0,1,0,-972.3041936038823,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.90015409885595,3,30.94,61.65,4,1,0,0,12,1,0,269,0,0,0 +2175,2677,4955,-9,4954,-9,2,1,0,23,2,0,1,0,1,1,2,1,0,2,6.281184849973652,6.213214076721322,0,3,0,0,0,-9,0,-979.3996699085711,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,30,12,18,0,15,1,12,-9,1,2.910400713100893,2.910400713100893,0,0,0,0,0,0,0,1,0,1,0,0,0,3,23.53,42.28,2,1,0,1,12,2,0,1326,0,0,0 +2176,2678,4956,-9,-9,-9,1,1,1,23,2,0,0,1,1,0,7,2,0,4,7.840976943582413,7.600021550895525,0,3,0,0,0,-9,0,-1046.778576658754,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6408934277723953,0,0,0,51.83,57.2,6,1,0,0,5,3,0,576,0,0,0 +2177,2679,4957,4959,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,4,8.163418986864517,8.414681972530403,0,2,0,-9,26,0,-1,-149.9726405710744,0,0,0,52,2,3,1,2,3,2019,1,2,11,0,30,30,15,1,0,1,0,16.8164968926399,16.8164968926399,0,0,0,0,0,0,0,1,1,0,2.531209276970657,0,5.931097056458455,3,51.77,58.57,4,1,0,0,10,4,1,1145.333333333333,0,0,0 +2177,2679,4958,-9,4957,4959,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-917.5274855759079,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.29,54.84,6,1,0,0,10,4,1,1145.333333333333,0,0,0 +2177,2679,4959,4957,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.796450056840648,8.120201383117744,0,2,0,-9,26,0,1,18.14577915331923,0,0,0,51,1,4,1,2,3,2019,1,1,9,0,40,37,15,1,0,1,0,15.25380245084456,15.25380245084456,0,0,0,0,0,0,0,1,1,0,2.802593413213791,0,0,0,57.33,53.46,6,1,0,0,10,4,1,1145.333333333333,0,0,0 +2177,2680,4960,-9,4957,4959,3,1,0,20,2,0,1,0,2,-9,7,2,0,5,7.722516587578567,7.919782198082454,0,3,0,0,0,-9,0,-947.8407039434785,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,36,35,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.833619549491448,0,0,0,57.06,57.76,6,1,0,0,10,3,1,827,0,0,0 +2178,2681,4961,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,1,1,0,5,6.722097270819229,7.168250758189426,4.831771367093666,3,0,0,0,-9,0,-1116.47715626437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,5,0,15,1,0,-9,0,21.8015856341547,21.8015856341547,0,0,0,0,0,0,0,1,1,0,5.043312876919431,5.114945090766229,10.61097656480733,3,59.43,58.05,7,3,0,0,8,2,1,1036,0,0,0 +2179,2682,4962,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,3,8.86239044638522,8.553866029650385,0,3,0,0,0,-9,0,-1027.819322211633,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,49,15,1,0,-9,0,17.76275054807824,17.76275054807824,0,0,0,0,0,0,0,0,0,0,6.579883904983745,0,0,0,54.96,53.17,6,1,0,0,9,5,1,404,0,0,0 +2180,2683,4963,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,4,7.942046931266423,8.110991873233449,0,3,0,0,0,-9,0,-1072.046671770441,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,25,25,15,1,0,-9,0,15.5589931521172,15.5589931521172,0,0,0,0,0,0,0,1,1,0,0,0,24.57936596197528,3,44.53,56.37,6,1,0,0,13,4,1,433,0,0,0 +2180,2684,4964,-9,4963,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,3,7.420308342350371,7.688835880406107,0,3,0,0,0,-9,0,-1043.643522431963,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,0,15,1,2,-9,1,5.283829907990951,5.283829907990951,0,0,0,0,0,0,0,1,1,0,5.157185654758251,0,0,0,45.15,40.44,7,1,0,0,13,3,1,1396,0,0,0 +2181,2685,4965,4966,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,4,8.448224944125471,8.413168737557911,0,1,0,-9,1,-9,6,-99.0610579372609,-9,0,0,29,1,4,1,-9,-9,2019,1,1,13,1,44,0,15,1,1,1,0,6.763669339138045,6.763669339138045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.98,58.43,3,1,0,0,13,4,0,569,0,0,0 +2181,2685,4966,4965,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,4,7.863086770372101,7.981760138774404,0,1,0,1,1,-9,-6,90.51109728575776,0,1,1,35,1,4,1,2,1,2019,1,2,11,0,44,50,15,1,0,1,0,6.748061203584207,6.748061203584207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,6,1,0,0,13,4,0,569,0,0,0 +2182,2686,4967,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,1,1,0,2,8.395146637360167,8.505893167717527,6.203514993357618,3,0,0,0,-9,0,-906.5484881068948,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,17,16,15,1,3,-9,0,27.02379936197799,27.02379936197799,0,0,0,0,0,0,0,1,1,0,5.457077240376221,6.093303261746923,0,0,51.24,26.74,5,1,0,0,13,5,1,100,0,0,0 +2183,2687,4968,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-949.2882075093203,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,18,7,0,50,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.234135924499438,0,0,0,41.17,52.68,3,3,1,0,8,1,1,289,0,0,0 +2184,2688,4969,4970,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,42,0,2,49.40821805556844,0,0,0,63,2,2,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.97,48.09,7,1,0,0,7,4,1,2468.5,0,0,0 +2184,2688,4970,4969,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,2,0,8.443162738673529,8.268965522366873,1,0,-9,42,0,-2,-111.3651731473851,0,0,0,65,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.563948047842675,0,0,47.5,45.09,6,1,0,0,7,4,1,2468.5,0,0,0 +2185,2689,4971,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,3,0,7.177245175485367,6.938498672106631,3,0,0,0,-9,0,-1058.212054188356,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.168443724716719,7.07072963548188,0,0,54.81,42.24,6,1,0,0,9,2,1,1213,0,0,0 +2186,2690,4972,4973,-9,-9,1,1,0,60,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,36,0,-8,0,0,0,0,68,2,3,3,3,3,2019,4,2,11,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,46.48,4,3,0,1,6,1,1,1047.5,0,0,0 +2186,2690,4973,4972,-9,-9,2,1,1,68,1,1,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,6,0,8,0,0,0,0,60,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.057256997783129,0,0,0,53,47,5,3,0,0,6,1,1,1047.5,0,0,0 +2186,2691,4974,-9,4972,4973,3,1,1,31,2,1,1,0,2,-9,2,1,0,4,8.018823749502264,7.890034075109619,0,3,0,0,0,-9,0,-980.707510584664,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,5,35,37,15,1,5,-9,1,10.12410360329869,10.12410360329869,0,0,0,0,0,0,0,1,1,0,.2626943198734022,0,0,0,44.67,47.09,4,3,0,1,6,4,1,104,0,0,0 +2186,2692,4975,-9,4977,4976,6,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.4368274703752,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,4,1,486.3333333333333,0,0,0 +2186,2692,4976,4977,4972,4973,4,1,1,33,1,1,1,0,1,-9,2,1,0,5,9.118862016930604,9.159258341721106,0,2,0,-9,3,0,-2,-52.06030495702205,0,0,0,35,2,3,3,2,2,2019,2,5,17,5,41,41,15,1,5,3,0,20.87560729308647,20.87560729308647,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,65,3,3,0,0,6,4,1,486.3333333333333,0,0,0 +2186,2692,4977,4976,-9,-9,5,1,0,35,1,1,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,3,0,2,-135.7790778690795,0,0,1,33,1,5,1,-9,-9,2019,3,4,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,50.26,6,5,1,0,6,4,1,486.3333333333333,0,0,0 +2187,2693,4978,-9,4980,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1024.255811901918,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,765.3333333333334,0,0,0 +2187,2693,4979,-9,4980,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1048.972145569515,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,765.3333333333334,0,0,0 +2187,2693,4980,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,4,8.098731547810123,8.721355349117587,7.045200911967802,4,0,-9,0,-9,0,-986.6075735457638,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,1,23,0,15,1,1,-9,0,15.02866019929342,15.02866019929342,0,0,0,0,0,0,0,1,1,0,8.27818119284724,0,0,0,48.28,60.18,6,1,0,0,7,4,1,765.3333333333334,0,0,0 +2188,2694,4981,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,4,0,7.424060747458471,7.611963290005265,3,0,0,0,-9,0,-951.8253640057565,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.363741041447065,0,0,42.6,61.6,3,1,0,0,11,3,1,398,0,0,0 +2189,2695,4982,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-975.3094670010681,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.89,49.95,6,1,1,0,11,1,1,301,0,0,0 +2190,2696,4983,4984,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,6.763440520639793,6.892793870279205,1,0,-9,9,0,3,-29.10340759323885,0,0,0,73,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.970754913547025,0,0,53,47,5,1,0,0,4,2,1,490,0,0,0 +2190,2696,4984,4983,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,5.768336230672227,5.888135987763242,1,0,-9,55,0,-3,-8.715314530774711,0,0,0,76,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,1,0,0,0,15.71431310004205,0,0,1,1,0,.7481046719582343,6.244776470007406,127.1645353166089,2,40.97,28.18,5,1,0,0,4,2,1,490,0,0,0 +2191,2697,4985,4986,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,2,0,7.903648252379551,8.176633772081715,1,0,-9,57,0,3,-36.13318850974844,0,0,0,78,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.418583143286536,7.500359552137916,0,0,62.83,12.04,4,1,0,0,9,4,1,783,0,0,0 +2191,2697,4986,4985,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,7.706016880689845,7.677686591183346,1,0,-9,57,0,-3,37.03191257335267,0,0,0,81,1,2,3,2,1,2019,4,1,12,1,0,12,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.775602614937609,7.675878297451636,0,0,41.52,45.66,6,1,0,0,9,4,1,783,0,0,0 +2192,2698,4987,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,7.732180517650953,7.367089286325982,0,3,0,0,0,-9,0,-911.4837256882995,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,12,30,30,15,1,12,-9,0,8.115786090360618,8.115786090360618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.42,38.97,2,1,0,0,6,3,0,988,0,0,0 +2192,2699,4988,-9,4987,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.261460373345187,7.553181059575437,0,3,0,0,0,-9,0,-1004.465993213411,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,31,26,15,1,6,-9,1,5.789361804125853,5.789361804125853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.89,51.13,4,1,0,0,6,3,0,1582,0,0,0 +2193,2700,4989,4990,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,3,8.770629238845462,8.644694900329325,0,2,0,-9,6,-9,2,64.4240934119268,-9,0,0,37,1,4,1,2,2,2019,1,2,11,0,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.661232524347897,0,0,0,48,52,5,1,0,0,9,5,1,584.25,0,0,0 +2193,2700,4990,4989,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.720044036432157,8.69450250595475,0,2,0,-9,6,-9,-2,2.98478374091179,-9,0,1,39,2,3,1,2,2,2019,1,1,8,0,32,0,15,1,0,1,0,18.65203068047381,18.65203068047381,0,0,0,0,0,0,0,1,1,0,.2084544875051069,0,0,0,45.91,59.89,5,1,0,0,9,5,1,584.25,0,0,0 +2193,2700,4991,-9,4990,4989,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-935.6388210977736,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,1,584.25,0,0,0 +2193,2700,4992,-9,4990,4989,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1006.557898350875,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,584.25,0,0,0 +2194,2701,4993,4994,-9,-9,2,1,0,70,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,42,0,1,112.4213417493163,0,0,0,69,3,3,3,3,3,2019,4,1,11,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,5,0,0,4,2,1,487,0,0,0 +2194,2701,4994,4993,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,6.119459009065642,6.452105856011027,1,0,-9,42,0,-1,-14.79224383104447,0,0,0,70,2,3,3,3,3,2019,4,2,18,7,0,0,15,4,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.531446599040932,0,0,46.57,54.66,6,5,0,0,4,2,1,487,0,0,0 +2195,2702,4995,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,2,0,6.620639436180773,6.595625740433753,3,0,-9,0,-9,0,-940.3638921146842,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.354569286744288,0,0,50.29,23.1,6,1,0,0,11,2,1,526,0,0,0 +2196,2703,4996,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-938.3842322537355,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.57928452193124,3,23.49,53.12,2,1,1,0,12,1,0,593,0,0,0 +2197,2704,4997,-9,4999,4998,3,1,1,40,2,0,0,0,3,-9,2,1,0,4,8.612443369327524,8.369983910645738,0,3,0,0,0,-9,0,-923.4537908857271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,0,15,1,1,-9,1,15.05495797047141,15.05495797047141,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,9,4,1,243,0,0,0 +2197,2705,4998,4999,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,5.730727851223506,5.553007254786666,1,0,-9,6,0,0,-31.94860915439461,-9,0,0,66,2,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.219246540335381,5.837078699548858,0,0,52,48,5,5,0,0,9,2,1,391,0,0,0 +2197,2705,4999,4998,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,5,0,6.009240200177376,6.1703943967682,1,0,-9,6,0,0,76.77554115877723,0,0,0,66,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.654741491878742,6.187150398967726,0,0,60.02,56.42,6,1,0,0,9,2,1,391,0,0,0 +2198,2706,5000,5001,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,43,0,1,68.52622865226768,0,0,0,61,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,7,1,0,0,10,3,1,387,0,0,0 +2198,2706,5001,5000,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,3,8.060557460184841,8.193628153267246,0,1,0,-9,8,0,-1,73.25421384034723,0,0,0,62,3,3,3,-9,-9,2019,2,1,10,0,66,90,15,1,1,4,0,6.040011458812885,6.040011458812885,0,0,0,0,0,0,0,0,0,0,3.166650283516048,0,0,0,51,48,5,1,0,0,10,3,1,387,0,0,0 +2199,2707,5002,5003,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,2,7.057465394140923,6.835477577614206,0,1,0,-9,9,0,1,40.12288291698911,0,0,0,63,1,4,1,2,3,2019,1,2,12,4,60,60,15,1,4,1,0,2.213383718054971,2.213383718054971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.37,39.7,5,1,0,0,13,4,1,933.5,0,0,0 +2199,2707,5003,5002,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,4,7.862899910661012,8.180661821482639,0,1,0,-9,9,0,-1,132.6957841314639,0,0,0,64,3,2,1,3,3,2019,1,1,6,0,75,30,15,1,0,1,0,4.790930117012832,4.790930117012832,0,0,0,0,0,0,0,0,0,0,8.231425882451658,0,0,0,57.16,56.15,6,1,0,0,13,4,1,933.5,0,0,0 +2200,2708,5004,5005,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,4,3.01103332495704,3.15082310138264,0,1,0,-9,33,0,-1,-98.94216494976277,0,0,0,55,2,3,1,3,3,2019,1,1,9,0,37,41,15,1,0,1,0,.0709413576392083,.0709413576392083,0,0,0,0,0,0,0,0,0,0,0,0,0,3,50,54,7,1,0,0,6,4,1,283,0,0,0 +2200,2708,5005,5004,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,3,8.785875848129457,8.621508325131927,0,1,0,-9,33,0,1,-31.91724971059869,0,0,0,54,2,4,1,3,3,2019,1,2,13,1,58,50,15,1,1,1,0,12.2268371179413,12.2268371179413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,50.81,4,1,0,0,6,4,1,283,0,0,0 +2201,2709,5006,5007,-9,-9,2,1,0,60,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,33,-9,1,-23.23644377180217,-9,0,0,59,3,4,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.38,41.21,5,3,0,0,9,3,1,3489,0,0,0 +2201,2709,5007,5006,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,4,8.135731104439358,8.109300488852362,0,1,0,-9,33,-9,-1,3.240768136493425,-9,0,0,60,3,3,3,-9,-9,2019,2,2,8,0,40,0,15,1,0,3,0,9.809882927886527,9.809882927886527,0,0,0,0,0,0,0,1,1,0,3.266743081708333,0,0,0,55,53,6,3,0,0,9,3,1,3489,0,0,0 +2201,2710,5008,-9,5006,5007,3,1,0,25,2,0,0,0,1,-9,2,1,0,5,7.634728549859934,7.94500604492417,0,3,0,-9,0,-9,0,-970.7724335933583,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,3,40,0,15,1,3,-9,1,6.148373108258814,6.148373108258814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.63,55.53,6,3,0,0,9,3,1,430,0,0,0 +2201,2711,5009,-9,5006,5007,4,1,0,20,2,0,0,0,2,-9,2,1,0,5,7.628431597136799,8.086394628156979,0,3,0,-9,0,-9,0,-1147.504396691517,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,40,0,15,1,2,-9,1,7.757436611758711,7.757436611758711,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.41,51.96,6,3,0,0,9,3,1,1318,0,0,0 +2202,2712,5010,5011,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,2,0,7.05996751032071,7.279650831360475,1,0,-9,51,-9,7,27.29218748785011,-9,0,0,76,2,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.154830150708069,6.930922314709447,0,0,49.53,50.82,6,4,0,0,8,3,1,643.5,0,0,0 +2202,2712,5011,5010,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,1,0,7.369004762011183,7.082990124392751,1,0,-9,1,-9,-7,23.79098472775905,-9,0,0,83,2,2,3,-9,-9,2019,4,1,19,8,0,0,15,4,8,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.969270158112908,0,0,36.57,29.63,5,4,0,1,8,3,1,643.5,0,0,0 +2202,2713,5012,-9,5011,5010,5,1,1,47,2,0,0,0,2,-9,2,1,0,4,8.973021235135329,9.12420880442123,0,3,0,-9,0,-9,0,-890.5899244586597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,19.74372571076418,19.74372571076418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,4,0,0,8,5,1,660,0,0,0 +2202,2714,5013,-9,-9,-9,3,1,1,31,2,0,0,0,2,-9,2,1,0,2,7.84622339719676,7.636562825865165,0,3,0,-9,0,-9,0,-1075.688264506388,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,0,38,0,15,1,3,-9,0,7.45954070891735,7.45954070891735,0,0,0,0,0,0,0,1,1,0,.9539539800098824,0,0,0,43.84,47.84,4,2,0,0,8,3,1,228,0,0,0 +2202,2715,5014,-9,-9,-9,4,1,0,27,2,0,0,0,1,-9,2,1,0,3,7.994454688336199,7.678958122644432,0,3,0,-9,0,-9,0,-972.6323166324811,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,36,0,15,1,0,-9,0,8.182236522198442,8.182236522198442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.24,50.01,5,2,0,0,8,4,1,694,0,0,0 +2203,2716,5015,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,5.989292903595348,6.269376408640006,3,0,0,0,-9,0,-911.6253483150614,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,4,5,-9,0,0,0,1,0,0,4.674873603005683,0,0,0,1,1,0,0,6.29616450414172,0,0,23.04,34.09,5,1,0,0,5,2,1,239,0,0,0 +2203,2717,5016,-9,5015,-9,2,1,0,61,3,0,0,0,2,-9,2,1,0,5,8.522618581568812,8.3480636077913,0,3,0,0,0,-9,0,-1003.584104704168,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,30,30,15,1,0,-9,1,15.5915985027161,15.5915985027161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,5,4,1,404,0,0,0 +2204,2718,5017,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,4,8.636567163854805,8.313391847577662,0,3,0,0,0,-9,0,-920.8151384805512,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,80,0,15,1,0,-9,0,6.136291518740575,6.136291518740575,0,0,0,0,0,0,0,1,1,0,.3337688747602823,0,0,0,54.79,55.86,7,1,0,0,11,5,1,1255,0,0,0 +2205,2719,5018,5019,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.656188573071233,9.393704212253301,0,1,0,-9,27,0,4,41.30765860035564,0,0,0,49,1,4,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,38.56755169408428,38.56755169408428,0,0,0,0,0,0,0,0,0,0,1.516388111039768,0,0,0,51.77,58.57,6,1,0,0,2,5,1,398,0,0,0 +2205,2719,5019,5018,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.44016719743294,7.911153021352022,0,1,0,-9,28,0,-4,120.4778248583877,0,0,0,53,2,4,1,2,2,2019,1,2,21,9,40,40,15,1,9,1,0,10.7452694760686,10.7452694760686,0,0,0,0,0,0,0,0,0,0,6.667560528119073,0,0,0,30.55,61.98,3,1,0,0,2,5,1,398,0,0,0 +2206,2720,5020,5021,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,4,6.349471682524561,6.528419702806739,0,1,0,-9,8,0,4,45.68533618304247,0,0,0,58,2,4,1,-9,-9,2019,1,2,6,0,16,30,15,1,0,1,0,4.68571662796803,4.68571662796803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,5,4,1,1986,0,0,0 +2206,2720,5021,5020,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.95436613143693,8.399698141913126,7.467659814367281,1,0,-9,8,0,-4,28.65585665702973,0,0,0,62,3,4,1,-9,-9,2019,1,1,5,0,16,22,15,1,0,1,0,14.48927312620857,14.48927312620857,0,0,0,0,0,0,0,0,0,0,5.003656794631535,7.828579893959051,2.092261710357891,3,64.07000000000001,47.52,7,1,0,0,5,4,1,1986,0,0,0 +2207,2721,5022,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,1,1,0,4,9.085829964156421,8.816356732746057,0,3,0,0,0,-9,0,-1033.880680791915,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,15,3,35,40,15,1,3,-9,0,27.83187735772733,27.83187735772733,0,0,0,0,0,0,0,1,1,0,.5420623222210003,0,0,0,34.62,61.03,4,1,0,0,12,5,1,7498,0,0,0 +2208,2722,5023,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-985.3330374350539,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,39.21,5,3,0,1,8,1,1,462,0,0,0 +2209,2723,5024,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,2,0,6.837920242855205,6.96184717587928,3,0,0,0,-9,0,-1027.258324336914,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,18,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.661391037579339,6.773983320892096,0,0,58.1,31.46,5,1,0,0,13,2,1,534,0,0,0 +2210,2724,5025,-9,5026,5027,3,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-959.8466099298787,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,61,6,1,0,0,9,2,1,1513,0,0,0 +2210,2724,5026,5027,-9,-9,2,1,0,58,1,0,1,0,2,-9,10,3,0,3,0,0,0,2,0,-9,7,0,11,-66.58063167431266,0,0,0,47,2,3,1,2,2,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,3.774292988434358,3,32.65,56.8,5,1,0,0,9,2,1,1513,0,0,0 +2210,2724,5027,5026,-9,-9,1,1,1,47,1,0,1,0,2,-9,1,1,0,3,8.226069614762373,8.13883318507628,0,2,0,-9,7,0,-11,-47.28767844088792,0,0,0,58,2,3,3,2,1,2019,2,2,23,11,9,40,15,1,11,3,0,31.06264638190589,31.06264638190589,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.12,65.25,3,1,0,0,9,2,1,1513,0,0,0 +2211,2725,5028,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,5,0,7.814081538969885,8.061880860430088,3,0,0,0,-9,0,-941.2858075723439,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.732456826451583,7.811226078549558,0,3,54.67,57.49,6,1,0,0,5,3,1,468,0,0,0 +2212,2726,5029,5030,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,5,0,8.746587565873478,8.674166299704476,1,0,-9,53,0,-1,-18.63663308130483,0,0,0,75,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.736333564540191,8.77748316846208,0,0,57.06,57.76,7,1,0,0,6,5,1,1276,0,0,0 +2212,2726,5030,5029,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,3,0,7.284284457515088,7.282321569897826,1,0,-9,53,0,1,-187.9058856918397,0,0,0,74,1,5,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.841847466104056,7.227739219498174,0,0,54.7,46.42,6,1,0,0,6,5,1,1276,0,0,0 +2213,2727,5031,-9,5033,5032,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1016.827101956159,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,8,3,0,291,0,0,0 +2213,2727,5032,5033,-9,-9,1,1,1,30,1,1,1,0,1,-9,1,1,0,5,7.825131938364415,8.028332118658723,0,2,0,-9,4,0,-5,56.72718658462227,0,0,0,35,2,3,1,-9,-9,2019,1,2,7,0,70,30,15,1,0,1,0,4.904794960266642,4.904794960266642,0,0,0,0,0,0,0,1,1,0,0,0,85.25801346228202,3,57.06,57.76,5,2,0,0,8,3,0,291,0,0,0 +2213,2727,5033,5032,-9,-9,2,1,0,35,1,1,1,0,2,-9,5,1,0,3,0,0,0,2,0,-9,4,0,5,-119.5526322684589,0,0,1,30,1,5,1,-9,-9,2019,1,1,10,1,0,37,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,51.52,6,1,0,0,8,3,0,291,0,0,0 +2214,2728,5034,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,4,0,7.087667304969306,6.754095833761228,3,0,0,0,-9,0,-1116.625540774289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.830595198421066,6.946990834145931,0,0,57.16,56.15,6,1,0,0,11,2,1,1743,0,0,0 +2215,2729,5035,5036,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,4,9.121965240196415,8.791826767356838,0,2,0,-9,6,0,7,-78.62528915805586,0,0,0,40,2,4,1,-9,-9,2019,1,1,11,0,58,54,15,1,0,1,0,13.97391502608559,13.97391502608559,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,5,1,0,0,6,5,1,607,0,0,0 +2215,2729,5036,5035,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,4,8.244087864162484,8.32651957740665,0,2,0,-9,6,0,-7,32.35749836596752,0,0,1,47,2,4,1,3,2,2019,1,2,20,8,29,30,15,1,8,1,0,19.07581006938219,19.07581006938219,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.9,59.13,3,1,0,0,6,5,1,607,0,0,0 +2215,2729,5037,-9,5036,5035,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.098097391304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,5,1,607,0,0,0 +2216,2730,5038,5039,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.51070287269116,8.016639421030662,0,1,0,-9,10,0,11,-69.41451842445177,0,0,0,40,2,3,1,2,3,2019,1,2,23,11,38,38,15,1,11,1,0,8.510209335998162,8.510209335998162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.51,63.43,6,1,0,0,5,3,1,781.5,0,0,0 +2216,2730,5039,5038,-9,-9,2,1,1,40,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,10,0,-11,-110.5861578824091,0,0,0,51,2,3,1,-9,-9,2019,1,1,11,1,60,55,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.0416786971350705,0,0,0,41.96,53.77,6,1,0,0,5,3,1,781.5,0,0,0 +2217,2731,5040,5041,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.28433842425798,8.305331495699024,0,1,0,-9,32,0,4,-91.71659076428982,0,0,0,55,2,3,1,2,2,2019,1,1,9,0,42,38,15,1,0,1,0,11.25421332932024,11.25421332932024,0,0,0,0,0,0,0,0,0,0,0,0,2.549479026880732,3,57.07,49.39,6,1,0,0,5,4,1,654.5,0,0,0 +2217,2731,5041,5040,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.614406778086852,7.383650931323856,0,1,0,-9,32,0,-4,-81.10007696607259,0,0,0,59,1,4,1,2,2,2019,1,2,5,1,28,30,15,1,1,1,0,6.607727928152976,6.607727928152976,0,0,0,0,0,0,0,0,0,0,0,0,0,3,59.31,49.81,7,1,0,0,5,4,1,654.5,0,0,0 +2217,2732,5042,-9,5041,5040,3,1,0,25,2,0,0,0,2,-9,2,1,0,4,6.815456383299105,6.812085590998967,0,3,0,0,0,-9,0,-931.9190167584934,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,0,15,1,2,-9,1,3.243904194305183,3.243904194305183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,1,0,0,5,2,1,1319,0,0,0 +2218,2733,5043,5045,-9,-9,1,1,0,45,1,0,2,0,2,-9,1,1,0,5,7.622809577758398,7.517301442793473,0,2,0,-9,23,0,0,91.09568208943627,0,0,0,54,2,4,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,5.502986530578219,5.502986530578219,0,0,0,0,0,0,0,1,1,0,2.009052089560396,0,6.299296718777128,3,59.43,58.05,6,1,0,0,10,3,1,788.6666666666666,0,0,0 +2218,2733,5044,-9,5043,5045,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.264922218075,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,3,1,788.6666666666666,0,0,0 +2218,2733,5045,5043,-9,-9,2,1,1,54,1,0,2,0,2,-9,1,1,0,4,7.779323303335373,7.753978492202386,0,2,0,-9,7,0,9,-26.56863260301099,0,0,0,45,2,5,1,-9,-9,2019,1,1,7,0,50,35,15,1,0,1,0,4.129400798821304,4.129400798821304,0,0,0,0,0,0,0,1,1,0,2.002067110875326,0,0,0,58.3,52.91,6,1,0,0,10,3,1,788.6666666666666,0,0,0 +2219,2734,5046,5047,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,2,0,6.855063603736592,6.72633800828282,1,0,-9,39,0,-2,84.22635524274428,0,0,0,60,2,3,1,-9,3,2019,3,1,20,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.452720772620428,0,0,42.38,36.42,5,1,0,0,4,5,1,461,0,0,0 +2219,2734,5047,5046,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,3,7.750061008149351,9.031489655592205,8.538074705839522,1,0,-9,39,0,2,82.94729712642358,0,0,0,58,2,2,3,3,2,2019,2,2,10,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.27115213071955,0,0,54.37,54.8,6,1,0,0,4,5,1,461,0,0,0 +2220,2735,5048,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,5.169296633443081,5.417433567197279,3,0,0,0,-9,0,-904.0409638562032,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.660159441958147,4.995726295082033,0,0,39.1,44.56,4,1,0,0,1,2,1,153,0,0,0 +2221,2736,5049,-9,-9,-9,2,1,0,79,3,1,2,0,3,-9,4,3,0,3,0,0,0,4,0,-9,0,-9,0,-1074.281624985355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,65.14,32.13,7,1,0,0,8,1,1,615,0,0,0 +2222,2737,5050,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1000.921405358541,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,7.33,2,1,0,0,5,1,0,684,0,0,0 +2223,2738,5051,5052,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,1,0,7.050285410786223,7.259515997256535,1,0,-9,65,0,1,-31.56299258791987,0,0,0,82,2,2,3,3,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,1,0,82.0267995274086,0,0,0,0,1,1,0,0,7.247779759883444,0,0,49.69,18.65,7,1,0,0,9,2,1,924.5,0,0,0 +2223,2738,5052,5051,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,2,0,6.05865431594992,5.745046634999302,1,0,-9,65,0,-1,28.83341525391362,0,0,0,83,3,1,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.988099597542141,31.91555261620121,1,61.53,31.55,6,1,0,0,9,2,1,924.5,0,0,0 +2224,2739,5053,-9,5055,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1142.866726846242,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,2,0,789,0,0,0 +2224,2739,5054,-9,5055,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.273576334129,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,0,789,0,0,0 +2224,2739,5055,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,5,7.690920023265206,7.765919353264603,0,4,0,0,0,-9,0,-1172.783426876265,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,22,0,15,1,0,-9,0,10.0740050672608,10.0740050672608,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,4,2,0,789,0,0,0 +2225,2740,5056,5058,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.624714628370509,8.651206342958584,0,2,0,-9,9,0,4,3.290423246950858,0,0,0,40,2,4,1,3,3,2019,1,2,8,0,39,39,15,1,0,1,0,15.1872548567397,15.1872548567397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,5,1,0,0,2,4,1,891.3333333333334,0,0,0 +2225,2740,5057,-9,5058,5056,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.5477132797769,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,891.3333333333334,0,0,0 +2225,2740,5058,5056,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,4,6.442049919845481,6.579572952595968,0,2,0,-9,9,0,-4,-17.51042531124302,0,0,1,44,2,3,1,3,3,2019,1,1,6,0,11,12,15,1,0,1,0,7.262130804198998,7.262130804198998,0,0,0,0,0,0,0,1,1,0,0,0,12.40584259210791,3,51.83,57.2,7,1,0,0,2,4,1,891.3333333333334,0,0,0 +2226,2741,5059,-9,5060,5061,4,1,0,16,2,0,1,1,3,-9,7,2,0,4,0,3.538377051522914,3.844292761917099,2,0,0,0,-9,0,-1026.822695986736,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.05217067079633,0,0,0,57.16,56.15,6,1,0,0,10,5,1,745.6666666666666,0,0,0 +2226,2741,5060,5061,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,2,7.014834035089386,7.064210034010266,0,2,0,-9,5,0,0,-76.54087506246329,0,0,0,49,2,2,1,3,2,2019,1,1,12,1,16,16,15,1,1,1,0,6.14600137679799,6.14600137679799,0,0,0,0,0,0,0,1,1,0,.1661397103013203,0,0,0,41.79,47.21,5,1,0,1,10,5,1,745.6666666666666,0,0,0 +2226,2741,5061,5060,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,2,9.751342614583757,9.306532953350057,0,2,0,-9,5,0,0,-48.20468439287757,0,0,0,49,2,2,1,2,3,2019,1,2,26,11,62,65,15,1,11,1,0,26.29048859487244,26.29048859487244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.74,40.17,3,1,0,0,10,5,1,745.6666666666666,0,0,0 +2226,2742,5062,-9,5060,5061,3,1,0,19,2,0,1,0,2,1,97,3,0,3,0,0,0,3,0,0,0,-9,0,-868.1897073234869,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.065192481124053,0,0,0,59.7,53.75,7,1,0,0,10,1,1,1079,0,0,0 +2227,2743,5063,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,0,7.495608059391139,6.997396152872634,3,0,0,0,-9,0,-910.7502781570071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.747938483304073,7.806327792271951,0,0,63.7,16.76,2,1,0,0,12,3,1,822,0,0,0 +2228,2744,5064,5065,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,9.121799305806681,9.190794493298995,0,1,0,-9,16,0,3,-8.377245032383788,0,0,0,57,2,4,1,3,3,2019,1,1,4,0,45,47,15,1,0,1,0,31.51571224006157,31.51571224006157,0,0,0,0,0,0,0,0,0,0,3.124812243494592,0,0,0,54.2,57.49,6,1,0,0,4,5,1,738.5,0,0,0 +2228,2744,5065,5064,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.08154924078069,7.964958060662184,0,1,0,-9,17,0,-3,48.95338291295283,0,0,0,60,2,4,1,3,3,2019,1,2,7,0,34,34,15,1,0,1,0,10.74629053349848,10.74629053349848,0,0,0,0,0,0,0,0,0,0,3.084951066742014,0,0,0,49.35,59.64,7,1,0,0,4,5,1,738.5,0,0,0 +2228,2745,5066,-9,5065,5064,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.694213466156147,8.194375363353252,0,3,0,0,0,-9,0,-1022.825014260841,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,32,15,1,0,-9,1,7.86415345252317,7.86415345252317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,4,3,1,762,0,0,0 +2229,2746,5067,5068,-9,-9,2,1,0,53,1,0,1,0,3,-9,2,1,0,3,7.832163162480734,8.280958197078879,7.269350144856529,2,0,-9,9,0,1,78.79981898419287,0,0,0,52,2,3,1,3,3,2019,1,1,12,0,25,25,15,1,0,1,0,10.33937772485843,10.33937772485843,0,0,0,0,0,0,0,1,1,0,0,7.097770111511293,0,0,44.17,44.46,6,1,0,0,2,5,1,273.5,0,0,0 +2229,2746,5068,5067,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.796925358293016,8.422859538245175,0,2,0,-9,9,0,-1,49.29420755354816,0,0,0,53,3,3,1,2,2,2019,1,2,10,0,38,38,15,1,0,1,0,13.51148587222358,13.51148587222358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,2,5,1,273.5,0,0,0 +2230,2747,5069,5070,-9,-9,1,1,1,57,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,32,0,1,0,0,0,0,56,2,1,3,3,3,2019,4,2,27,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.74,31.46,1,3,0,0,8,1,1,1213,0,0,0 +2230,2747,5070,5069,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,1,0,0,0,1,0,-9,32,0,-1,0,0,0,0,57,2,1,3,3,-9,2019,4,1,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.7415554877921,1,39.97,14.6,3,3,0,1,8,1,1,1213,0,0,0 +2230,2748,5071,-9,5070,5069,4,1,1,27,2,0,0,0,2,-9,2,1,0,5,8.177922308351652,8.389218757854616,0,3,0,0,0,-9,0,-957.8287207988232,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,48,15,1,0,-9,1,10.62141610058505,10.62141610058505,0,0,0,0,0,0,0,1,1,0,0,0,9.97839396549448,3,57.06,57.76,7,3,0,0,8,4,1,413,0,0,0 +2230,2749,5072,-9,5070,5069,5,1,0,24,2,0,0,0,1,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1163.160696233594,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,3,1,0,8,1,1,3207,0,0,0 +2231,2750,5073,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-982.4676946626467,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,33.80182223195491,3,54.93,20.87,6,1,0,1,12,1,0,640,0,0,0 +2232,2751,5074,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.050384412460435,7.697367586248798,0,3,0,0,0,-9,0,-949.9001918480935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,26,26,15,1,3,-9,0,12.34500843085024,12.34500843085024,0,0,0,0,0,0,0,0,0,0,1.416621096666756,0,15.41932735631888,3,48.27,45.05,6,1,0,1,6,3,1,560,0,0,0 +2232,2752,5075,-9,5074,-9,2,1,0,21,2,0,0,0,2,0,7,2,0,2,6.550398165845752,6.298536559016346,0,3,0,0,0,-9,0,-984.3408820148767,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.92102475904791,0,0,3,65.78,29.46,7,1,0,0,6,2,1,1275,0,0,0 +2232,2753,5076,-9,5074,-9,3,1,0,18,2,0,0,0,2,1,2,1,0,4,7.640900570613237,7.906133399590089,0,3,0,0,0,-9,0,-887.4671358532094,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,0,15,1,2,-9,1,6.93693550545292,6.93693550545292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,6,3,1,278,0,0,0 +2233,2754,5077,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,4,8.808148926540209,8.987661057590161,0,3,0,0,0,-9,0,-1014.720551233221,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,42,53,15,1,0,-9,0,21.91595804676368,21.91595804676368,0,0,0,0,0,0,0,1,1,0,5.104802892723869,0,0,0,48.87,58.55,5,1,0,0,12,5,1,371,0,0,0 +2234,2755,5078,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,11,3,0,2,7.660250874488419,7.704933518023216,0,3,0,0,0,-9,0,-1128.751473751442,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,19,6,36,45,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.490707155316665,0,0,0,52.39,45.21,2,1,0,0,2,3,1,464,0,0,0 +2235,2756,5079,-9,-9,-9,1,1,1,36,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1020.772130201146,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,60.6,6,1,1,0,4,1,0,820,0,0,0 +2236,2757,5080,5082,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,3,7.725872090335062,7.715791303488317,0,1,0,-9,9,0,9,-34.99173961736854,0,0,0,38,2,2,3,2,2,2019,2,1,10,0,51,48,15,1,0,3,0,6.233661290258472,6.233661290258472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.55,48.3,5,1,0,0,9,3,1,333.6666666666667,0,0,0 +2236,2757,5081,-9,5082,5080,3,1,1,16,2,0,0,0,2,-9,2,2,0,5,8.071415614436269,7.9983372983015,0,1,0,0,0,-9,0,-887.9869761511638,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,51,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.140738552588134,0,0,0,50.54,62.09,4,1,0,0,9,3,1,333.6666666666667,0,0,0 +2236,2757,5082,5080,-9,-9,1,1,0,38,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,9,0,0,95.20416739695307,0,0,1,47,2,3,1,2,2,2019,3,2,24,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4072870623060777,0,0,0,27.89,53.85,3,1,0,1,9,3,1,333.6666666666667,0,0,0 +2237,2758,5083,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,4.954678466761929,4.598566267165689,3,0,0,0,-9,0,-1153.618338222949,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.997184634846386,0,0,54.82,34.4,7,1,0,0,1,2,1,1921,0,0,0 +2238,2759,5084,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,2,0,3.798351630068356,4.102205484735957,3,0,0,0,-9,0,-1103.535052205311,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.946292150890116,0,0,53.23,47.51,2,3,0,0,9,1,1,986,0,0,0 +2239,2760,5085,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,5,7.835093974265019,8.436619784239298,0,3,0,0,0,-9,0,-965.5549056615453,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,70,80,15,1,0,-9,0,6.555154204582355,6.555154204582355,0,0,0,0,0,0,0,0,0,0,2.565141336562812,0,0,0,51.73,58.82,2,1,0,0,11,4,0,183,0,0,0 +2240,2761,5086,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1056.260923618927,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,12.06525214006715,0,26.04401621192613,0,0,117.2777823740126,1,1,0,0,0,0,0,30.85,17.26,3,1,0,0,10,1,0,221,0,0,0 +2241,2762,5087,5088,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.532039200209836,7.508852689564273,1,0,-9,43,0,-2,-21.63303338682302,0,0,0,65,3,3,1,2,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.111694703660391,7.471604956821904,0,0,66.95,33.91,6,1,0,0,9,4,1,323.5,0,0,0 +2241,2762,5088,5087,-9,-9,2,1,0,65,1,0,0,0,3,-9,2,1,0,3,8.588746260405381,8.117686052265217,0,1,0,-9,43,0,2,-43.54506903892167,0,0,0,63,2,3,3,2,2,2019,2,1,6,0,45,40,15,1,0,4,0,13.00881710538221,13.00881710538221,0,0,0,0,0,0,0,1,1,0,7.267467292331086,0,0,0,59.31,49.81,7,1,0,0,9,4,1,323.5,0,0,0 +2242,2763,5089,5090,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,6.591752934965305,6.532296279822428,1,0,-9,48,0,3,-26.02903453296405,0,0,0,68,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.5224875341156245,6.553034361782929,0,0,59.14,52.5,6,1,0,0,7,2,1,172,0,0,0 +2242,2763,5090,5089,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,7.226361144272208,6.532934395480626,1,0,-9,48,0,-3,-52.61612409736802,0,0,0,71,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.823201395927805,6.840044354780839,0,0,57.16,56.15,7,1,0,0,7,2,1,172,0,0,0 +2243,2764,5091,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,5.661000724921969,5.546257683785359,3,0,0,0,-9,0,-952.5210213622925,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.828787066405416,6.183438533513216,0,0,50.49,44.11,7,1,0,0,7,2,1,2488,0,0,0 +2244,2765,5092,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,4,8.780758030840198,8.811856644453353,0,3,0,0,0,-9,0,-1083.249041879646,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,50,30,15,1,1,-9,0,18.28143463178224,18.28143463178224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,56.22,5,3,0,0,8,5,0,979,0,0,0 +2245,2766,5093,5094,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.635581024206632,8.652002013830794,0,1,0,1,1,-9,0,89.21155168073724,0,1,0,25,1,5,1,2,-9,2019,1,2,3,0,38,37,15,1,0,1,0,14.28982301358359,14.28982301358359,0,0,0,0,0,0,0,0,0,0,1.899680568564093,0,0,0,57.06,57.76,6,1,0,0,2,5,1,1482.5,0,0,0 +2245,2766,5094,5093,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,5,8.25973477080451,8.495176197642385,0,1,0,-9,1,-9,0,-49.28823542655319,-9,1,1,25,1,5,1,-9,-9,2019,1,1,8,1,43,0,15,1,1,1,0,11.95446962438795,11.95446962438795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.2,54.53,7,1,0,0,2,5,1,1482.5,0,0,0 +2246,2767,5095,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,4,9.360516977630969,9.386368021285614,0,1,0,-9,6,0,0,111.9067105264038,0,0,0,-9,-9,-9,-9,2,1,2019,-9,2,12,0,90,55,15,1,0,-9,0,16.75351336308194,16.75351336308194,0,0,0,0,0,0,0,0,0,0,6.763133513640602,0,0,0,57.16,56.15,6,1,0,0,8,5,0,206,0,0,0 +2247,2768,5096,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,4,0,8.203425600708112,7.981759412854126,3,0,0,0,-9,0,-1018.640746214854,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.425161437770326,7.864512325798223,0,0,55.48,50.05,6,1,0,0,2,4,1,855,0,0,0 +2248,2769,5097,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,1,1,0,3,7.335298361881409,7.302616913072832,0,3,0,0,0,-9,0,-900.0795256148556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,48,15,1,0,-9,0,3.860846409356186,3.860846409356186,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,5,3,1,537,0,0,0 +2249,2770,5098,5099,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,5,7.219118516488245,7.409643876168223,0,2,0,-9,28,0,-4,59.75454883562235,0,0,0,51,1,5,1,1,1,2019,1,1,6,0,24,24,15,1,0,1,0,5.889884569156533,5.889884569156533,0,0,0,0,0,0,0,1,1,0,7.050374720450506,0,0,0,62.39,56.71,7,3,0,0,10,4,1,403.3333333333333,0,0,0 +2249,2770,5099,5098,-9,-9,1,1,1,51,1,0,1,0,1,-9,1,1,0,5,8.63120902833438,8.882163444346542,0,2,0,-9,28,0,4,30.07144180945787,0,0,0,47,1,5,1,1,1,2019,1,2,4,0,50,43,15,1,0,1,0,12.80219035179178,12.80219035179178,0,0,0,0,0,0,0,1,1,0,2.646211603072155,0,0,0,70.29000000000001,42.14,7,3,0,0,10,4,1,403.3333333333333,0,0,0 +2249,2770,5100,-9,5098,5099,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.121505145959,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,10,4,1,403.3333333333333,0,0,0 +2249,2771,5101,-9,5098,5099,3,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-982.1418442186159,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.355930135850881,0,0,0,52.43,55.57,4,3,0,0,10,1,1,588,0,0,0 +2250,2772,5102,-9,5104,5103,4,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-984.9724682059791,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.29,53.96,6,1,0,0,1,2,0,1310.333333333333,0,0,0 +2250,2772,5103,5104,-9,-9,1,1,1,40,1,0,1,0,3,-9,2,1,0,4,7.702426445970431,8.070144281578401,0,2,0,-9,7,0,-7,138.6508317702392,0,0,0,47,3,3,3,3,3,2019,2,2,12,0,40,34,15,1,0,3,0,5.575945570185866,5.575945570185866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.27,47.75,3,1,0,0,1,2,0,1310.333333333333,0,0,0 +2250,2772,5104,5103,-9,-9,2,1,0,47,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,7,0,7,-213.5593895970213,0,0,0,40,3,4,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,6,1,0,0,1,2,0,1310.333333333333,0,0,0 +2250,2773,5105,-9,5104,5103,3,1,1,20,2,0,1,0,2,-9,2,1,0,5,7.389942807796434,7.358777414906974,0,3,0,0,0,-9,0,-1147.797550355758,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,18,0,15,1,0,-9,1,13.30497083906569,13.30497083906569,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,7,1,0,0,1,3,0,557,0,0,0 +2250,2774,5106,-9,5104,5103,5,1,1,27,2,0,1,0,2,-9,2,1,0,4,7.496975839907599,7.716692268655293,0,4,0,0,0,-9,0,-1019.912343825314,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,0,15,1,0,-9,0,5.151384007656616,5.151384007656616,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.18,52.33,4,1,0,0,1,3,0,2668,0,0,0 +2251,2775,5107,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,6.886820698802455,6.429806552386038,3,0,0,0,-9,0,-1020.835922137814,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.699428552081881,6.859845109000498,0,0,53,44,6,1,0,0,11,2,1,238,0,0,0 +2252,2776,5108,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,5,8.829561739317432,8.639989173942991,0,3,0,0,0,-9,0,-927.9932196938081,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,40,40,15,1,1,-9,0,16.65785497171758,16.65785497171758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,7,5,1,461,0,0,0 +2253,2777,5109,-9,5110,-9,4,1,0,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1008.389575194475,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,3,0,0,2,1,0,2110,0,0,0 +2253,2777,5110,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1010.696059660369,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.19,45.47,5,3,0,0,2,1,0,2110,0,0,0 +2253,2778,5111,-9,5110,-9,2,1,0,27,2,0,1,0,1,-9,2,1,0,3,8.152576108584759,8.132030565899463,0,3,0,0,0,-9,0,-958.9235649308303,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,38,38,15,1,2,-9,1,11.37325345814951,11.37325345814951,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,3,0,0,2,4,0,283,0,0,0 +2253,2779,5112,-9,5110,-9,3,1,1,23,2,0,1,0,1,-9,1,1,0,4,9.602747412255148,9.706112706469161,0,3,0,0,0,-9,0,-1000.850999839955,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,5,40,39,15,1,5,-9,1,39.76852740898751,39.76852740898751,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.87,59.76,5,3,0,0,2,5,0,2319,0,0,0 +2254,2780,5113,-9,-9,-9,1,1,0,98,3,0,0,0,3,-9,4,3,0,1,0,5.631447943503993,5.532791047638255,3,0,0,0,-9,0,-888.235785721634,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,29.34679468934054,8.824307155941989,0,1,1,0,0,5.93429365128497,0,0,44.88,14.7,3,1,0,1,8,2,0,464,0,0,0 +2254,2781,5114,-9,5113,-9,2,1,1,57,2,0,0,0,1,-9,2,1,0,3,9.104540841000487,9.010829119702958,0,3,0,0,0,-9,0,-1022.026210344664,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,58,67,15,1,1,-9,1,19.19405431095173,19.19405431095173,0,0,0,0,0,0,0,1,1,0,4.676753853745844,0,.3512287238496754,3,49.61,54.24,4,1,0,0,8,5,0,868,0,0,0 +2255,2782,5115,5116,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,4,8.446682831687893,8.489810978350203,0,1,0,-9,8,0,-6,-69.12869061097177,0,0,0,51,2,3,1,2,2,2019,1,1,12,0,39,45,15,1,0,1,0,14.97077517963044,14.97077517963044,0,0,0,0,0,0,0,0,0,0,1.500625955233697,0,0,0,40.99,59.79,6,1,0,0,12,5,1,449.5,0,0,0 +2255,2782,5116,5115,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,3,8.642446932417474,8.516823674750384,0,1,0,-9,8,0,6,68.12319372513714,0,0,0,45,1,4,1,3,3,2019,1,2,18,6,50,50,15,1,6,1,0,17.16707817932866,17.16707817932866,0,0,0,0,0,0,0,0,0,0,0,0,6.852201263455085,3,37.93,47.5,4,1,0,0,12,5,1,449.5,0,0,0 +2256,2783,5117,5118,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,3.935033055753404,4.115744101387424,1,0,-9,11,0,0,125.2802297100392,0,0,0,76,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.10584129219582,3.903922778032572,2.640216272684983,3,55.37,29.96,7,1,0,0,4,2,1,370,0,0,0 +2256,2783,5118,5117,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,11,0,0,-76.15929679060982,0,0,0,76,2,2,3,3,-9,2019,4,2,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.884324683742754,3,25.01,24,7,1,0,0,4,2,1,370,0,0,0 +2257,2784,5119,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1018.761723224443,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.25,26.92,3,1,0,0,8,1,0,769,0,0,0 +2258,2785,5120,5121,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,2,0,0,0,0,83,3,2,3,-9,-9,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,45.71,33.49,4,5,0,0,8,1,0,421,0,0,0 +2258,2785,5121,5120,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,55,0,-2,0,0,0,0,85,3,3,3,-9,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.19820495893345,1,60.48,24.97,5,5,0,0,8,1,0,421,0,0,0 +2259,2786,5122,5123,-9,-9,2,1,1,40,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,8,0,-12,71.6212311223527,0,0,0,52,1,4,1,1,2,2019,3,1,25,11,0,37,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.360906346125222,0,20.74892607338563,3,35.34,50.05,3,1,0,0,8,5,1,614.5,0,0,0 +2259,2786,5123,5122,5124,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,9.231516985328378,9.151600235183846,0,1,0,-9,8,0,12,24.29571693472498,0,0,0,40,1,3,3,2,3,2019,2,2,16,6,35,35,15,1,6,3,0,30.87180367720368,30.87180367720368,0,0,0,0,0,0,0,1,1,0,5.170727844287655,0,127.2471928778624,3,35.91,63.19,6,1,0,0,8,5,1,614.5,0,0,0 +2259,2787,5124,-9,-9,-9,3,1,0,94,3,0,0,0,2,-9,4,3,0,3,0,7.44059459805214,7.130299191661075,3,0,0,0,-9,0,-992.8322146629091,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,0,0,15,4,8,-9,0,0,0,1,10.48503584370729,0,7.150331454030296,0,0,119.3959556696179,1,1,0,6.350397118096712,7.279850439065117,0,0,71.38,12.71,2,1,0,0,8,2,1,606,0,0,0 +2260,2788,5125,5126,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,5,5.920090563343356,5.960703223847807,0,2,0,-9,33,0,0,-59.08020573075351,0,0,0,59,2,4,1,-9,-9,2019,1,2,16,4,28,8,15,1,4,1,0,1.490449263496809,1.490449263496809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,3,1,0,1,10,4,1,852.6666666666666,0,0,0 +2260,2788,5126,5125,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,4,8.901638351819988,9.01252086568052,6.026217494840009,2,0,-9,33,0,9,58.70024353003542,0,0,0,50,2,5,1,-9,-9,2019,1,1,10,0,52,50,15,1,0,1,0,19.65581254518606,19.65581254518606,0,0,0,0,0,0,0,1,1,0,0,6.625061428973289,0,0,49.9,47.26,4,1,0,0,10,4,1,852.6666666666666,0,0,0 +2260,2788,5127,-9,5125,5126,4,1,1,17,2,0,1,0,2,-9,2,3,0,4,6.860419919358892,6.693109827395516,0,2,0,0,0,-9,0,-1115.607044448029,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,10,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,1,852.6666666666666,0,0,0 +2260,2789,5128,-9,5125,5126,3,1,1,19,2,0,1,0,2,1,2,1,0,4,7.781835065646455,8.030371536306181,0,3,0,0,0,-9,0,-1099.140809602108,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,46,0,15,1,2,-9,1,7.575804163388327,7.575804163388327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,1,10,3,1,529,0,0,0 +2261,2790,5129,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1089.521253202933,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,14.20351032525548,0,2.934065164694657,2.443703420349876,0,76.88461625768826,1,1,0,0,0,0,0,33.08,24.12,3,1,0,0,11,1,0,1664,0,0,0 +2262,2791,5130,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.988659421304552,8.353815959363184,0,3,0,0,0,-9,0,-1050.845166580039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,40,42,15,1,1,-9,0,8.769838579394806,8.769838579394806,0,0,0,0,0,0,0,0,0,0,0,0,27.06152123770882,3,48.45,57.49,2,1,0,0,12,4,0,532,0,0,0 +2263,2792,5131,5132,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,5.502683851629079,5.863353018496635,1,0,-9,7,0,1,-99.78309572536094,0,0,0,72,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.62616837738624,5.357518034997133,0,0,62.27,48.47,6,1,0,0,8,4,1,645.5,0,0,0 +2263,2792,5132,5131,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,5,5.097427627054065,8.221137096306558,7.996632545931379,1,0,-9,51,0,-1,-24.26097744548811,0,0,0,73,2,3,3,2,1,2019,4,2,6,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.989810846279555,7.803189297730206,0,0,62.39,56.71,7,1,0,0,8,4,1,645.5,0,0,0 +2264,2793,5133,5134,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,44,0,-1,10.62697385778193,0,0,0,65,3,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.61,54.85,5,1,0,1,9,2,0,1634.5,0,0,0 +2264,2793,5134,5133,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,4,0,5.50019300693304,5.435269608293037,1,0,-9,44,0,1,-112.4979175915468,0,0,0,64,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.621849446073873,5.598014701083843,0,0,55,52,6,1,0,1,9,2,0,1634.5,0,0,0 +2264,2794,5135,-9,5133,5134,3,1,1,37,2,0,0,0,2,-9,1,1,0,4,8.395808902958075,8.132249794866093,0,3,0,0,0,-9,0,-1055.944683144316,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,50,15,1,1,-9,1,11.63224951426108,11.63224951426108,0,0,0,0,0,0,0,1,1,0,3.608813249022943,0,0,0,51,56,5,1,0,0,9,4,0,475,0,0,0 +2265,2795,5136,-9,5141,5137,4,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.8787039102415,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,273.6666666666667,0,0,0 +2265,2795,5137,5141,-9,-9,1,1,1,44,1,0,4,0,2,-9,2,1,0,3,8.3340211940755,8.465968284759315,0,2,0,-9,7,0,0,90.20004343058949,0,0,0,44,1,4,1,2,3,2019,1,2,12,0,46,50,15,1,0,1,0,11.61091919113908,11.61091919113908,0,0,0,0,0,0,0,1,1,0,3.356656741400613,0,0,0,51.65,39.74,5,1,0,0,13,4,1,273.6666666666667,0,0,0 +2265,2795,5138,-9,5141,5137,3,1,1,11,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1061.208499665178,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,13,4,1,273.6666666666667,0,0,0 +2265,2795,5139,-9,5141,5137,6,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.108159102048,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,273.6666666666667,0,0,0 +2265,2795,5140,-9,5141,5137,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.4710273774791,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,273.6666666666667,0,0,0 +2265,2795,5141,5137,-9,-9,2,1,0,44,1,0,4,0,1,-9,2,1,0,4,8.807548568280332,8.793557734712804,0,2,0,-9,7,0,0,107.987747819161,0,0,1,44,2,3,1,2,3,2019,1,1,10,0,47,33,15,1,0,1,0,13.83125239997668,13.83125239997668,0,0,0,0,0,0,0,1,1,0,2.059816228366184,0,0,0,54.2,57.49,6,1,0,0,13,4,1,273.6666666666667,0,0,0 +2266,2796,5142,-9,-9,-9,1,1,0,44,3,0,0,0,2,-9,2,1,0,2,7.630867462937569,7.478449866264317,0,3,0,-9,0,-9,0,-851.0253489334762,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,44,0,15,1,5,-9,0,4.950316318390009,4.950316318390009,0,0,0,0,0,0,0,1,1,0,0,0,12.44175791689131,3,27.98,41.86,5,1,0,1,9,3,0,1009,0,0,0 +2267,2797,5143,-9,-9,-9,1,1,1,31,3,0,0,0,2,-9,2,1,0,5,8.821232931022047,8.897509987098767,0,3,0,-9,0,1,0,-1069.169673528836,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,57,67,15,1,1,-9,0,20.12994522991925,20.12994522991925,0,0,0,0,0,0,0,1,1,0,2.887098067041629,0,0,0,51.14,60.45,5,1,0,0,5,5,1,1963,0,0,0 +2268,2798,5144,5145,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,5,9.173621785774193,8.793806567080782,0,1,0,-9,5,0,8,110.6237882621021,0,0,0,46,1,4,1,2,-9,2019,1,2,9,0,35,40,15,1,0,1,0,31.45878839796471,31.45878839796471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,8,5,1,505,0,0,0 +2268,2798,5145,5144,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,4,9.204652413941121,9.187415395990792,0,1,0,-9,5,0,-8,92.18205342616776,0,0,0,54,1,5,1,-9,-9,2019,1,1,8,1,42,0,15,1,1,1,0,25.10518079075786,25.10518079075786,0,0,0,0,0,0,0,0,0,0,7.356909182356515,0,0,0,56.92,49.39,6,1,0,0,8,5,1,505,0,0,0 +2269,2799,5146,5147,-9,-9,1,1,0,45,1,0,0,0,1,-9,1,1,0,4,9.960893634096379,9.542573990162001,0,1,0,-9,11,0,-2,16.03835107577328,0,0,0,47,1,3,1,2,1,2019,1,2,16,5,6,10,15,1,5,1,0,329.2897339051569,329.2897339051569,0,0,0,0,0,0,0,1,1,0,7.811637214844652,0,0,0,33.05,57.87,6,5,0,0,8,5,1,1196.5,0,0,0 +2269,2799,5147,5146,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,3,9.049848774864246,9.32611109851454,0,1,0,-9,11,0,2,-73.28417840219966,0,0,0,45,1,4,1,2,3,2019,1,1,18,7,40,40,15,1,7,1,0,24.79094967134391,24.79094967134391,0,0,0,0,0,0,0,1,1,0,2.084190478259804,0,0,0,48.35,50.73,3,1,0,1,8,5,1,1196.5,0,0,0 +2270,2800,5148,-9,5151,5149,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.0359409684296,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,2,0,377.25,0,0,0 +2270,2800,5149,5151,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,3,7.394590888958065,7.596815118363726,0,2,0,-9,23,0,9,30.5594679281862,0,0,0,39,2,3,3,2,1,2019,2,2,12,2,40,35,15,1,2,3,0,7.261788609598198,7.261788609598198,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.85,51.81,5,3,0,1,8,2,0,377.25,0,0,0 +2270,2800,5150,-9,5151,5149,3,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-997.6983068097895,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,3,0,0,8,2,0,377.25,0,0,0 +2270,2800,5151,5149,-9,-9,2,1,0,39,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,23,0,0,-102.225043957071,0,0,1,48,1,3,1,3,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,6,3,0,0,8,2,0,377.25,0,0,0 +2271,2801,5152,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,4,8.646866555734961,8.133351841800245,6.758126494490626,3,0,0,0,-9,0,-903.8009920994803,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,27,35,15,1,0,-9,0,20.00139596476677,20.00139596476677,0,0,0,0,0,0,0,0,0,0,0,7.127478594291235,.3572623088220253,3,50.4,55.04,4,1,0,0,8,5,0,399,0,0,0 +2272,2802,5153,-9,-9,-9,1,1,0,94,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1083.404566972077,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,200.9707259172114,0,0,0,0,0,1,1,0,0,0,0,0,54,43,6,1,0,0,4,1,0,332,0,0,0 +2273,2803,5154,5155,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,2,6.933010157452063,6.851060880203649,0,2,0,-9,20,0,-1,81.43847894096881,0,0,1,39,2,4,1,2,2,2019,1,2,10,0,40,0,15,1,0,1,0,2.756501294863103,2.756501294863103,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.25,36.27,6,1,0,0,7,3,0,1537.333333333333,0,0,0 +2273,2803,5155,5154,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,4,8.121120113868432,8.197932199603326,0,2,0,-9,18,0,1,68.11702616808022,0,0,0,38,2,2,1,2,2,2019,1,1,7,0,42,53,15,1,0,1,0,9.289384544696947,9.289384544696947,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,3,0,1537.333333333333,0,0,0 +2273,2803,5156,-9,5154,5155,3,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1069.846095344781,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,7,3,0,1537.333333333333,0,0,0 +2274,2804,5157,5158,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,9.110070731724425,8.98317726921533,0,1,0,-9,7,0,2,-113.706831616261,0,0,0,41,2,3,1,2,2,2019,1,2,10,0,43,40,15,1,0,1,0,18.61978259031266,18.61978259031266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,11,5,1,1175,0,0,0 +2274,2804,5158,5157,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,3,8.768040821565389,8.566315285496639,0,1,0,-9,7,0,-2,53.22374330537405,0,0,1,43,2,4,1,2,2,2019,1,1,20,8,45,45,15,1,8,1,0,16.15185988389219,16.15185988389219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.82,42.48,5,1,0,0,11,5,1,1175,0,0,0 +2275,2805,5159,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,2,1,0,3,8.179063353439371,8.369878521394343,0,3,0,0,0,-9,0,-918.9683051654104,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,39,39,15,1,0,-9,0,11.22927153793956,11.22927153793956,0,0,0,0,0,0,0,1,1,0,3.461401800016768,0,0,0,43.8,50.25,4,1,0,0,9,4,1,1455,0,0,0 +2276,2806,5160,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,8.399523975938884,8.658684321499624,0,3,0,0,0,-9,0,-1123.369205966329,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,39,40,15,1,2,-9,0,12.25322790842156,12.25322790842156,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.14,39.88,6,1,0,0,2,4,1,569,0,0,0 +2277,2807,5161,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,3,8.734594174950841,8.78955740288197,0,1,0,-9,2,0,-3,-19.64061409331796,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,2,32,11,28,40,15,1,11,-9,0,30.61943951669142,30.61943951669142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.4,56.6,2,1,0,0,7,5,0,1884,0,0,0 +2277,2808,5162,-9,-9,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,3,7.551430879514504,7.853880114427202,3.362009725932734,1,0,-9,2,0,3,-66.57149549138239,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,1,13,3,24,28,15,1,3,-9,0,7.89240045044757,7.89240045044757,0,0,0,0,0,0,0,0,0,0,3.173926052055657,0,0,0,48.98,57.22,5,1,0,0,7,5,0,191,0,0,0 +2278,2809,5163,-9,5166,5167,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.606793812725,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,0,908.6,0,0,0 +2278,2809,5164,-9,5166,5167,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-926.7739155817591,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,19,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,39.61,56.27,6,1,0,0,10,5,0,908.6,0,0,0 +2278,2809,5165,-9,5166,5167,5,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-966.9895474229286,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,10,5,0,908.6,0,0,0 +2278,2809,5166,5167,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,3,8.102108411634974,8.102000376939326,0,2,0,-9,24,0,-4,-64.24197029899103,0,0,1,44,2,4,1,3,2,2019,1,2,9,1,28,26,15,1,1,1,0,14.62370338173244,14.62370338173244,0,0,0,0,0,0,0,1,1,0,7.999722175931051,0,9.516432808441754,3,38.76,58.16,4,1,0,0,10,5,0,908.6,0,0,0 +2278,2809,5167,5166,-9,-9,2,1,1,44,1,0,3,0,2,-9,1,1,0,4,9.31470636548398,9.622385083874088,0,2,0,-9,24,0,4,11.76827360043363,0,0,0,40,1,3,1,-9,-9,2019,1,1,12,0,50,50,15,1,0,1,0,28.18892758584861,28.18892758584861,0,0,0,0,0,0,0,1,1,0,7.346691215963686,0,7.261738228390636,3,58.15,52.91,6,1,0,0,10,5,0,908.6,0,0,0 +2279,2810,5168,5169,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.413165869893714,8.157071440069656,0,1,0,-9,1,-9,2,124.9099019470536,-9,1,1,25,1,5,2,-9,-9,2019,2,1,11,0,35,0,15,1,2,2,0,16.44331232601882,16.44331232601882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,1,0,0,10,4,0,1592,0,0,0 +2279,2810,5169,5168,-9,-9,1,1,1,25,1,0,0,0,1,-9,7,2,0,5,0,0,0,1,0,1,1,-9,-2,-74.49218501158497,1,1,0,27,1,4,1,-9,-9,2019,3,2,6,0,0,38,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,10,4,0,1592,0,0,0 +2280,2811,5170,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,7.244336444631214,7.35562914964129,3,0,0,0,-9,0,-966.2991535864488,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.164406175652618,7.257056970568353,1.670506376666125,3,40.87,44.58,5,2,0,0,9,3,1,1115,0,0,0 +2281,2812,5171,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,6.38632414694491,6.402284081082309,3,0,0,0,-9,0,-911.9296156883923,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.501387936055969,0,0,57.16,56.15,6,1,0,0,1,2,0,203,0,0,0 +2282,2813,5172,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,2,1,0,3,7.285458199046384,7.249944585673994,0,3,0,0,0,-9,0,-928.5974269192711,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,10,8,15,1,0,-9,0,17.96780651601501,17.96780651601501,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.44,43.33,6,1,0,0,10,3,1,403,0,0,0 +2283,2814,5173,-9,-9,-9,3,1,0,19,2,0,1,1,2,0,7,2,0,4,6.291293401347128,7.362157501269927,6.898811000258348,3,0,0,0,-9,0,-906.1998147953873,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,28,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.959456547010961,0,0,0,46.56,48.99,5,1,0,0,12,3,1,318,0,0,0 +2284,2815,5174,-9,5175,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1032.836592822575,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,374.5,0,0,0 +2284,2815,5175,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1049.224331712913,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,56.44,4,1,0,1,2,1,0,374.5,0,0,0 +2285,2816,5176,5177,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,7,0,3,0,0,0,0,68,3,1,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.4032134461249,1,58.5,20.74,6,1,0,0,6,1,0,920.5,0,0,0 +2285,2816,5177,5176,-9,-9,2,1,0,68,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-3,0,0,0,0,71,2,1,3,3,3,2019,4,1,13,3,0,0,15,3,3,4,0,0,0,1,0,122.0053990178875,0,0,0,0,1,1,0,0,0,0,0,32.08,22.96,1,1,0,0,6,1,0,920.5,0,0,0 +2286,2817,5178,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-992.106340762748,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.35,16.75,4,1,0,0,2,1,0,251,0,0,0 +2287,2818,5179,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,2,0,7.954698658239823,8.289004679779145,3,0,0,0,-9,0,-1046.048577743989,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.933366998369566,8.155005058358402,35.30879823166466,3,58.47,34.16,6,1,0,0,6,4,1,413,0,0,0 +2288,2819,5180,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,2,7.961686448479144,7.616547385353305,0,3,0,0,0,-9,0,-1081.99287973338,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,38,0,15,1,2,-9,0,8.497795713311506,8.497795713311506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.42,63.1,2,1,0,0,12,3,0,111,0,0,0 +2289,2820,5181,5182,-9,-9,1,1,0,48,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,28,0,0,0,0,0,0,48,2,4,3,-9,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.30460067187626,3,50,54,6,3,0,0,8,1,0,526,0,0,0 +2289,2820,5182,5181,-9,-9,2,1,1,48,1,0,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,28,0,0,0,0,0,0,48,3,4,3,2,2,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,1,0,8,1,0,526,0,0,0 +2289,2820,5183,-9,5181,5182,6,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.623698650494,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,526,0,0,0 +2289,2820,5184,-9,5181,5182,5,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.702039010803,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,0,526,0,0,0 +2289,2821,5185,-9,5181,5182,3,1,1,23,2,0,3,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1025.273692847996,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,1,0,8,1,0,451,0,0,0 +2290,2822,5186,5188,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,4,8.9722379551741,8.727138806093972,0,2,0,-9,7,0,1,105.7917371765033,0,0,0,50,1,2,1,3,3,2019,1,2,6,0,42,80,15,1,0,1,0,16.75543742988408,16.75543742988408,0,0,0,0,0,0,0,1,1,0,2.843075908086405,0,0,0,58.15,52.91,6,1,0,0,1,5,1,568,0,0,0 +2290,2822,5187,-9,5188,5186,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.238394966963,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,5,1,568,0,0,0 +2290,2822,5188,5186,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,2,8.584659937939467,8.876842521080752,0,2,0,-9,7,0,-1,-45.2656741718718,0,0,0,51,1,4,1,2,2,2019,1,1,9,0,49,50,15,1,0,1,0,17.07063118184115,17.07063118184115,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,7,1,0,0,1,5,1,568,0,0,0 +2290,2823,5189,-9,5188,5186,3,1,1,19,2,0,1,0,2,-9,7,2,0,5,4.443533922548116,4.386444956245007,0,3,0,0,0,-9,0,-1158.142018756002,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.74,62.66,5,1,0,0,1,1,1,379,0,0,0 +2291,2824,5190,5191,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,3,9.059001973895295,8.742332615120908,0,2,0,-9,9,0,-2,8.93111354839651,0,0,0,50,2,2,1,2,3,2019,1,2,2,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.679450501199231,3,52.24,48.84,6,1,0,0,2,5,1,954,0,0,0 +2291,2824,5191,5190,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,2,7.762669935947536,8.033424162729593,0,2,0,-9,9,0,2,63.68662799952921,0,0,0,48,1,3,1,2,3,2019,1,1,17,5,39,38,15,1,5,1,0,8.162715466704704,8.162715466704704,0,0,0,0,0,0,0,1,1,0,0,0,.4048747437537752,3,34.2,49.45,4,1,0,0,2,5,1,954,0,0,0 +2291,2824,5192,-9,5191,5190,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-998.4568179505267,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,1,1,0,0,2,5,1,954,0,0,0 +2292,2825,5193,-9,-9,-9,1,1,1,67,3,1,1,0,3,-9,4,3,0,3,0,5.256808755553049,5.344394558197458,4,0,0,0,-9,0,-1054.355498634818,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,6.175187012984447,0,0,0,1,1,0,0,5.226830541833614,0,0,52,48,5,1,0,0,11,2,0,1544,0,0,0 +2293,2826,5194,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,4,8.030153989723393,7.864985126684111,0,3,0,0,0,-9,0,-912.1746575938537,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,7.607813663368098,7.607813663368098,0,0,0,0,0,0,0,1,1,0,3.057592374017581,0,0,0,47.38,57.75,3,1,0,0,7,3,1,729,0,0,0 +2294,2827,5195,-9,-9,-9,1,1,0,24,2,0,0,0,2,1,2,1,0,4,8.087958498569133,8.042096943290508,0,3,0,0,0,-9,0,-1034.430723001462,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,58,0,15,1,0,-9,0,11.3255963399742,11.3255963399742,0,0,0,0,0,0,0,0,0,0,7.87776866581664,0,0,0,51.83,57.2,6,1,0,0,8,4,0,863,0,0,0 +2295,2828,5196,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,4,0,7.180773115803635,6.845501271273233,3,0,0,0,-9,0,-953.9775048833939,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.596651966713632,7.446550688882901,24.46375267056215,3,58.89,51.28,6,1,0,0,7,2,0,738,0,0,0 +2296,2829,5197,5198,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,3,7.696022226677464,7.558876070232139,0,1,0,-9,4,0,5,-77.10665717280622,0,0,0,48,1,1,3,2,2,2019,2,2,13,2,36,36,15,1,2,3,0,4.946769697976253,4.946769697976253,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,50.6,5,1,0,0,10,2,0,569.5,0,0,0 +2296,2829,5198,5197,-9,-9,2,1,0,48,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,4,0,-5,78.53772419278305,0,0,0,53,1,3,1,2,3,2019,3,1,24,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.32692843673413,3,17.92,58.75,2,1,0,1,10,2,0,569.5,0,0,0 +2297,2830,5199,5201,-9,-9,1,1,0,42,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,17,0,-2,11.35445386758146,0,0,1,44,1,5,1,2,1,2019,3,2,15,5,0,38,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.20949956775579,0,0,0,51.49,57.57,5,3,0,0,8,5,1,943,0,0,0 +2297,2830,5200,-9,5199,5201,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.126648989382,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,2,0,0,8,5,1,943,0,0,0 +2297,2830,5201,5199,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,5,9.57870447380685,9.520597769947704,0,2,0,-9,17,0,2,22.93809492507778,0,0,0,42,1,4,3,1,1,2019,2,1,11,0,55,55,15,1,0,3,0,42.48926970968594,42.48926970968594,0,0,0,0,0,0,0,0,0,0,8.343859647935892,0,0,0,54.1,59.11,5,1,0,0,8,5,1,943,0,0,0 +2297,2830,5202,-9,5199,5201,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1148.214732221968,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,2,0,0,8,5,1,943,0,0,0 +2298,2831,5203,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,4,8.173451765040305,8.897849565426801,7.645330471291948,3,0,0,0,-9,0,-977.3224166453531,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.448033289082012,7.736041891232606,0,0,61.13,43.2,6,1,0,0,7,5,1,137,0,0,0 +2299,2832,5204,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,6.417793604061931,5.991667127244456,3,0,0,0,-9,0,-1022.105039040737,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.539718047031069,0,0,57.33,53.46,6,1,0,0,2,2,1,377,0,0,0 +2299,2833,5205,-9,-9,-9,2,1,1,47,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-992.9378383798237,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,4,1,1,0,2,1,1,566,0,0,0 +2300,2834,5206,5207,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,4,8.221515014182605,8.27878889894615,0,1,0,-9,2,0,-2,-157.3357070727542,0,1,1,29,2,3,1,2,3,2019,1,2,10,0,35,35,15,1,0,1,0,15.42695238689909,15.42695238689909,0,0,0,0,0,0,0,0,0,0,5.257685164190889,0,0,0,57.16,56.15,6,1,0,0,11,5,1,590.5,0,0,0 +2300,2834,5207,5206,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,3,8.576257173889022,8.566795470687451,0,1,0,-9,2,0,2,-66.38587741172941,0,1,0,27,2,4,1,-9,-9,2019,1,1,10,1,45,40,15,1,1,1,0,10.93781868951086,10.93781868951086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,0,0,11,5,1,590.5,0,0,0 +2301,2835,5208,5209,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,36,0,2,23.34437375377573,0,0,0,73,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.41,39.7,1,1,0,0,8,2,1,280,0,0,0 +2301,2835,5209,5208,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,7.017445775765585,7.202562021766839,1,0,-9,38,0,-2,72.51910386524131,0,0,0,75,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.184208237370437,0,0,54.79,55.86,6,1,0,0,8,2,1,280,0,0,0 +2302,2836,5210,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1086.753458230591,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.211027267295513,0,0,0,49.52,55.68,4,1,0,0,9,1,1,275,0,0,0 +2303,2837,5211,5212,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,8.020128929205608,8.340278174371853,1,0,-9,31,0,-4,-22.37385468071957,0,0,0,68,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.437837799741293,8.241977139616653,0,0,57.33,53.46,6,1,0,0,4,5,1,746,0,0,0 +2303,2837,5212,5211,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,9.181904330260313,9.254460555607899,1,0,-9,31,0,4,127.9562331525143,0,0,0,64,2,3,3,2,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.459819080159104,9.807840608517722,0,0,46.39,60.99,6,1,0,0,4,5,1,746,0,0,0 +2304,2838,5213,5214,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,7.160139992887084,7.179582620721871,1,0,-9,9,0,0,-117.9276021355898,0,0,0,73,2,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.682215415002332,7.213936441289579,5.827175379279632,3,59.04,48.6,6,1,0,0,7,2,1,773.5,0,0,0 +2304,2838,5214,5213,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,4.739733423144743,4.609746555691673,1,0,-9,9,0,0,-43.57681250384328,0,0,0,73,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.748299722454954,5.066870129319533,31.36867626466562,3,38.69,61.75,6,1,0,0,7,2,1,773.5,0,0,0 +2305,2839,5215,5216,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,39.75806275840667,0,0,0,65,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.465175638335046,0,0,0,55.44,54.26,7,1,0,0,11,3,1,757,0,0,0 +2305,2839,5216,5215,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,8.113375091826661,8.198485604942345,1,0,-9,47,0,2,-19.83459061024379,0,0,0,63,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.458526855654887,8.186131145946121,0,0,55.2,49.4,6,1,0,0,11,3,1,757,0,0,0 +2306,2840,5217,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,3,0,7.112392894964889,7.439488560557142,3,0,0,0,-9,0,-969.95277650001,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.202478225661852,0,0,54,46,5,1,0,0,2,2,1,579,0,0,0 +2307,2841,5218,5220,-9,-9,2,1,1,31,1,0,1,0,1,-9,3,3,0,4,0,0,0,2,0,-9,10,0,3,0,0,0,0,28,2,1,3,3,2,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.38122766263544,1,52.38,55.6,6,3,1,0,8,1,0,531.6666666666666,0,0,0 +2307,2841,5219,-9,5220,5218,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1135.295310782827,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,1,0,531.6666666666666,0,0,0 +2307,2841,5220,5218,-9,-9,1,1,0,28,1,0,1,0,2,-9,6,3,0,1,0,0,0,2,0,-9,10,0,-3,0,0,1,1,31,1,4,3,3,3,2019,4,2,26,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,30.16,2,3,0,0,8,1,0,531.6666666666666,0,0,0 +2308,2842,5221,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,3,0,6.767565663637074,6.828218558200764,3,0,-9,0,-9,0,-1040.07764428559,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.713681459773242,0,0,63.76,31.3,6,1,0,0,12,2,0,420,0,0,0 +2309,2843,5222,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-966.1357872745074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,14.81584940707412,0,0,6.442909974144834,0,35.16334440894628,1,1,0,0,0,0,0,30.21,31.29,5,1,0,0,13,1,0,74,0,0,0 +2310,2844,5223,5224,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,6.663813339138675,6.560350215590958,1,0,-9,2,0,-3,-136.2345024901144,0,0,0,85,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.000499259796094,0,0,55.2,38.35,6,1,0,0,4,2,1,1044,0,0,0 +2310,2844,5224,5223,-9,-9,1,1,0,85,1,0,0,0,2,-9,4,3,0,2,0,6.882436383507756,6.625987266383383,1,0,-9,2,0,3,23.92434985817502,0,0,0,82,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.782692484919253,0,0,47.52,33.82,6,1,0,0,4,2,1,1044,0,0,0 +2311,2845,5225,5226,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,2,8.544613098051673,8.913169440615718,0,1,0,-9,10,0,0,12.17599687607027,0,0,0,67,3,2,3,3,3,2019,2,2,12,1,60,65,15,1,1,4,0,8.811605914712667,8.811605914712667,0,0,0,0,0,0,0,1,1,0,4.448992201487299,0,32.56996619308687,2,41.46,55.58,4,1,0,0,11,4,1,355.5,0,0,0 +2311,2845,5226,5225,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,2.433327642258017,2.036864980785229,1,0,-9,10,0,0,-173.9758239742354,0,0,0,67,2,2,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,30.1348106608145,0,0,19.01251435327899,0,1,1,0,3.067717326632802,1.950672471601597,0,0,38.19,19.09,5,1,0,0,11,4,1,355.5,0,0,0 +2312,2846,5227,5228,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.455725543341483,8.429621568364142,0,1,0,-9,2,0,-1,27.62123051822171,0,1,0,28,1,5,1,-9,-9,2019,1,1,11,1,40,40,15,1,1,1,0,15.85489265055769,15.85489265055769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,1,0,0,4,5,1,703,0,0,0 +2312,2846,5228,5227,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,9.127217244045896,8.73544527818737,0,1,0,-9,2,0,1,-78.87942372093285,0,1,1,27,1,4,1,1,1,2019,1,2,9,0,43,46,15,1,0,1,0,16.83221831199692,16.83221831199692,0,0,0,0,0,0,0,0,0,0,8.008855653427112,0,0,0,54.1,59.11,7,1,0,0,4,5,1,703,0,0,0 +2313,2847,5229,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,6.185262722864075,6.431570037953533,5.887679116348092,3,0,-9,0,1,0,-1120.251311067214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,5,4,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.703706512316217,5.598969027838899,0,0,60.49,35.34,5,1,0,0,6,2,1,912,0,0,0 +2314,2848,5230,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,1,1,0,3,0,7.860199584271663,7.807451856417114,3,0,0,0,-9,0,-1063.907687720057,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.30568303173499,7.685893545748355,0,0,49.63,54.22,6,1,0,0,11,3,1,283,0,0,0 +2315,2849,5231,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1150.594019848561,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.18,51.5,1,1,0,1,11,1,0,168,0,0,0 +2316,2850,5232,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1006.942536068203,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,7.329287203671679,11.42822464796437,0,1,1,0,0,0,0,0,43.83,43.24,6,1,0,0,11,1,0,2149,0,0,0 +2317,2851,5233,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1007.304604231013,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.7,38.44,6,1,0,0,7,1,0,220,0,0,0 +2318,2852,5234,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,2,1,0,3,7.445312085938055,8.319679838027607,7.487214519559285,3,0,0,0,-9,0,-955.4750358444223,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,30,40,15,1,0,-9,0,8.955861602431726,8.955861602431726,0,0,0,0,0,0,0,1,1,0,0,7.450648740815399,0,0,59.46,46.99,6,1,0,0,12,4,1,2177,0,0,0 +2319,2853,5235,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,4,0,8.250735220382467,8.525225367272167,3,0,0,0,-9,0,-958.5355593748924,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.278554031657564,8.486045030465794,5.591328546018316,3,51.77,58.57,7,1,0,0,7,4,1,522,0,0,0 +2320,2854,5236,-9,5237,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.5804944707587,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,5,0,337.6666666666667,0,0,0 +2320,2854,5237,5238,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,3,7.557341963869881,7.624963649013851,4.864418480219158,2,0,-9,7,0,7,20.92778017392936,0,0,0,42,2,4,1,3,3,2019,1,2,11,0,30,21,15,1,0,1,0,8.814168460342914,8.814168460342914,0,0,0,0,0,0,0,1,1,0,4.980826866941196,0,0,0,43.6,48.91,4,1,0,0,6,5,0,337.6666666666667,0,0,0 +2320,2854,5238,5237,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,4,9.060155416988884,8.935068633873321,0,2,0,-9,7,0,-7,225.4622487496442,0,0,0,49,1,3,1,-9,-9,2019,1,1,11,2,59,49,15,1,2,1,0,14.49879054059391,14.49879054059391,0,0,0,0,0,0,0,1,1,0,2.230151680990539,0,0,0,51.81,57.22,6,1,0,0,6,5,0,337.6666666666667,0,0,0 +2321,2855,5239,5240,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,2,8.6022131724344,8.760858695400449,0,1,0,1,1,-9,-5,160.3023850995313,0,0,1,45,1,5,1,2,2,2019,1,2,14,2,40,0,15,1,2,1,0,15.48237151196307,15.48237151196307,0,0,0,0,0,0,0,0,0,0,7.078710348817355,0,0,0,40.59,37.46,5,1,0,0,9,5,1,895,0,0,0 +2321,2855,5240,5239,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,5,7.945188362110187,7.991633373452712,0,1,0,-9,1,-9,5,70.87173784493798,-9,0,0,40,1,2,1,-9,-9,2019,1,1,9,0,38,0,15,1,0,1,0,8.537338540813925,8.537338540813925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,2,0,0,9,5,1,895,0,0,0 +2322,2856,5241,5242,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.413868641620891,8.927659406912619,0,1,0,-9,7,0,-7,-72.29873567784904,0,0,0,58,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,14.42323659192785,14.42323659192785,0,0,0,0,0,0,0,0,0,0,3.438187773955711,0,0,0,53,54,6,5,0,0,2,5,1,763,0,0,0 +2322,2856,5242,5241,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.029586317479157,7.117898818713246,0,1,0,-9,17,0,7,104.4189659549419,0,0,0,51,2,4,1,3,3,2019,1,2,8,0,20,80,15,1,0,1,0,6.198262342809149,6.198262342809149,0,0,0,0,0,0,0,0,0,0,0,0,8.066151026791307,3,49.27,56.95,2,1,0,0,2,5,1,763,0,0,0 +2323,2857,5243,5244,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,4,9.032398938500098,8.877501185608951,0,2,0,-9,6,0,9,81.10517282773293,0,0,0,46,1,5,3,3,3,2019,2,1,8,0,45,42,15,1,0,3,0,21.11405135820666,21.11405135820666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,1,544.25,0,0,0 +2323,2857,5244,5243,-9,-9,1,1,0,46,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,6,0,0,47.46948855350674,0,0,0,55,1,4,1,2,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,4,4,1,544.25,0,0,0 +2323,2857,5245,-9,5244,5243,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1133.03895013787,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,544.25,0,0,0 +2323,2857,5246,-9,5244,5243,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.556536455754,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,544.25,0,0,0 +2324,2858,5247,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,4,8.971288481798419,8.640880812338638,0,3,0,0,0,-9,0,-1107.017339489015,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,80,15,1,0,-9,0,18.21549951454028,18.21549951454028,0,0,0,0,0,0,0,0,0,0,6.367453321016821,0,0,0,57.16,56.15,7,1,0,0,2,5,1,1171,0,0,0 +2325,2859,5248,5249,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,3,8.904220251051555,8.843437319569826,0,1,0,-9,40,0,0,17.91887933618247,0,0,0,60,2,4,3,3,3,2019,2,1,10,0,40,45,15,1,1,4,0,19.18162911770145,19.18162911770145,0,0,0,0,0,0,0,0,0,0,3.75402782518691,0,0,0,51,48,5,1,0,0,5,4,1,1991,0,0,0 +2325,2859,5249,5248,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,4.263972129021153,4.096233984256594,1,0,-9,40,0,0,-27.33349397234822,0,0,0,60,3,3,1,3,2,2019,3,2,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.009768429190032,4.137321226742024,.9027740370802428,3,46.16,58.62,2,1,0,0,5,4,1,1991,0,0,0 +2326,2860,5250,-9,-9,-9,1,1,0,23,2,0,0,1,2,0,7,2,0,4,0,7.095797756015439,7.158086967571262,3,0,0,0,-9,0,-1073.985213743094,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.681601342869282,0,0,0,57.16,56.15,6,1,0,0,6,2,0,471,0,0,0 +2327,2861,5251,5253,-9,-9,4,1,1,49,1,2,4,0,1,-9,2,1,0,4,8.865438780735534,9.01762480773324,0,2,0,-9,3,0,10,-40.42111717613162,0,0,0,39,3,4,1,-9,-9,2019,1,1,9,0,37,37,15,1,1,1,0,18.24516070530376,18.24516070530376,0,0,0,0,0,0,0,1,1,0,1.624988386293646,0,0,0,52,55,6,1,0,0,4,4,1,1540.8,0,0,0 +2327,2861,5252,-9,5253,5251,5,1,1,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-904.1816241011107,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,1540.8,0,0,0 +2327,2861,5253,5251,-9,-9,1,1,0,39,1,2,4,0,3,-9,2,1,0,4,8.348038191866541,8.2580745912531,0,2,0,-9,3,0,-10,33.21140089403841,0,0,1,49,1,4,1,1,1,2019,1,4,11,0,40,40,15,1,1,1,0,13.26776455199239,13.26776455199239,0,0,0,0,0,0,0,1,1,0,2.260727611654333,0,0,0,49,56,5,1,0,0,4,4,1,1540.8,0,0,0 +2327,2861,5254,-9,5253,-9,2,1,1,16,2,2,4,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1048.691367452237,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,4,4,1,1540.8,0,0,0 +2327,2861,5255,-9,5253,5251,6,1,0,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-917.305990258688,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,1540.8,0,0,0 +2328,2862,5256,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,6.696161462417741,6.336114910793579,3,0,0,0,-9,0,-1084.33022418885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,6.007611231653573,0,1,1,0,4.048774948801393,6.538494247444885,0,0,58.33,23.43,5,1,0,0,12,2,1,263,0,0,0 +2329,2863,5257,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-972.9592871012759,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,5.943439321777786,0,0,0,1,1,0,2.634631300924847,0,0,0,27.63,26.97,4,1,0,0,6,1,1,589,0,0,0 +2330,2864,5258,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,5,9.776930324602349,9.541375562270693,0,3,0,0,0,-9,0,-986.660939178434,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,37,15,1,1,-9,0,49.56282780936591,49.56282780936591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,1,1,0,0,11,5,1,1744,0,0,0 +2331,2865,5259,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1021.089801613579,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,8,0,47,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.2379997786452,3,28.86,67.79000000000001,3,1,1,1,11,1,1,307,0,0,0 +2332,2866,5260,5261,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,2,5.920690122864163,6.728148316894196,6.600108309211036,1,0,-9,28,0,-2,90.83015833018571,0,0,0,62,1,3,1,-9,-9,2019,1,2,12,2,0,5,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.007295795120405,6.259078689606642,18.21394906163805,3,37.9,18.09,6,1,0,0,9,5,1,644.5,0,0,0 +2332,2866,5261,5260,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,3,8.04142910797699,8.292244974946453,7.891761702365316,1,0,-9,28,0,2,67.41894486974101,0,0,0,60,1,2,1,2,2,2019,1,1,10,0,20,30,15,1,0,1,0,22.9960181379584,22.9960181379584,0,0,0,0,0,0,0,0,0,0,0,7.845921745766072,6.891636049329319,3,50.72,46.82,5,1,0,0,9,5,1,644.5,0,0,0 +2332,2867,5262,-9,5260,5261,3,1,0,24,2,0,0,0,1,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1003.328375328293,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,17,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,6,1,0,0,9,1,1,739,0,0,0 +2333,2868,5263,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,2,7.451387670614407,7.642665359363605,0,3,0,0,0,-9,0,-893.4955433969644,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,33,12,38,80,15,1,12,-9,0,6.863884311076793,6.863884311076793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.37,36.9,2,1,0,1,10,3,0,379,0,0,0 +2334,2869,5264,-9,5266,5265,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.274905455305,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,2,0,0,2,5,1,468.25,0,0,0 +2334,2869,5265,5266,-9,-9,1,1,1,48,1,0,2,0,1,-9,1,1,0,4,9.623208524948559,9.795807023748001,0,2,0,-9,14,0,2,17.9588337897425,0,0,0,46,1,4,3,1,1,2019,2,2,14,4,50,48,15,1,4,3,0,36.53585865434657,36.53585865434657,0,0,0,0,0,0,0,0,0,0,1.271914746401907,0,0,0,48.87,58.55,6,1,0,0,2,5,1,468.25,0,0,0 +2334,2869,5266,5265,-9,-9,2,1,0,46,1,0,2,0,1,-9,3,3,0,4,9.634956076532522,9.44372434046233,0,2,0,-9,14,0,-2,48.79470793586945,0,0,0,48,1,4,1,1,1,2019,3,1,8,0,42,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.167607413170692,0,0,0,55.3,55.6,5,2,1,0,2,5,1,468.25,0,0,0 +2334,2869,5267,-9,5266,5265,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1119.519097391611,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,2,5,1,468.25,0,0,0 +2335,2870,5268,-9,5269,5270,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1125.041352588074,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,5,1,5579,0,0,0 +2335,2870,5269,5270,-9,-9,1,1,0,44,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,17,0,1,-17.23992971008618,0,0,1,43,1,5,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,6,1,0,0,1,5,1,5579,0,0,0 +2335,2870,5270,5269,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,5,9.583471848338508,9.141345914874874,0,2,0,-9,17,0,-1,-44.80604486361501,0,0,0,44,1,4,3,2,1,2019,2,1,8,2,34,33,15,1,2,3,0,35.1016172600558,35.1016172600558,0,0,0,0,0,0,0,1,1,0,3.154940129707052,0,0,0,48.96,60.26,6,1,0,0,1,5,1,5579,0,0,0 +2336,2871,5271,5272,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,2,7.634490460323993,7.910093450624222,6.165720036786619,1,0,-9,1,-9,3,-6.442457543137844,-9,0,0,52,1,4,3,2,2,2019,2,1,15,3,27,0,15,1,3,3,0,8.525897163183014,8.525897163183014,0,0,0,0,0,0,0,0,0,0,6.245775147861353,0,0,0,44.14,47.71,5,1,0,0,10,3,1,750.5,0,0,0 +2336,2871,5272,5271,-9,-9,1,1,1,52,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,1,-9,-3,-1.813241915729599,-9,0,0,55,1,2,1,3,2,2019,3,2,14,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,5,1,1,0,10,3,1,750.5,0,0,0 +2337,2872,5273,5275,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,5,7.96505651700432,7.911470833152516,0,2,0,-9,8,0,-3,51.61205225975917,0,0,1,33,1,2,1,-9,-9,2019,1,1,12,1,24,24,15,1,1,1,0,10.21488709404673,10.21488709404673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,59.87,4,1,0,0,11,4,1,397.5,0,0,0 +2337,2872,5274,-9,5273,5275,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.5501497371217,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,397.5,0,0,0 +2337,2872,5275,5273,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,2,8.399338491484903,8.384433249626854,0,2,0,-9,8,0,3,-4.951733582372423,0,0,0,30,2,5,1,3,2,2019,1,2,15,4,40,40,15,1,4,1,0,11.68390743245902,11.68390743245902,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.63,40.36,5,1,0,0,11,4,1,397.5,0,0,0 +2337,2872,5276,-9,5273,5275,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1129.563472863223,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,397.5,0,0,0 +2338,2873,5277,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,4,8.108649477827031,8.063305149327078,0,3,0,0,0,-9,0,-963.5316508305631,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,1,8.8865945357533,8.8865945357533,0,0,0,0,0,0,0,1,1,0,4.519692164344953,0,0,0,48.28,60.18,6,1,0,0,1,4,1,272,0,0,0 +2339,2874,5278,5279,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,1,0,5.67825748025575,5.758298309750008,1,0,-9,35,0,6,-6.123281760166988,0,0,0,75,2,1,3,3,-9,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,10.06811608946058,0,0,0,0,1,1,0,5.704488979838426,5.569519071673713,0,0,41,22,7,1,0,0,1,2,1,868,0,0,0 +2339,2874,5279,5278,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,1,0,5.463303290964168,5.478995291674265,1,0,-9,35,0,-6,-27.4856176961922,0,0,0,81,2,1,3,3,3,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.445271458201759,8.900636057813538,1,41.04,20.63,5,1,0,0,1,2,1,868,0,0,0 +2340,2875,5280,5283,-9,-9,1,1,1,54,1,0,2,0,2,-9,2,1,0,2,8.142679667728181,8.096803514523879,0,2,0,-9,8,0,8,-18.96308249092311,0,0,0,46,2,4,1,-9,-9,2019,1,2,19,5,36,40,15,1,5,1,0,9.836698634551722,9.836698634551722,0,0,0,0,0,0,0,1,1,0,6.96035030964325,0,0,0,30.05,55.26,3,1,0,1,13,3,1,573.25,0,0,0 +2340,2875,5281,-9,5283,5280,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.197848469361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,1,573.25,0,0,0 +2340,2875,5282,-9,5283,5280,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.668145187217,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,1,573.25,0,0,0 +2340,2875,5283,5280,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.451536216049842,7.672374053529247,0,2,0,-9,8,0,-8,-272.5238006156116,0,0,0,54,2,2,1,3,3,2019,1,1,6,0,28,28,15,1,0,1,0,7.230667667205775,7.230667667205775,0,0,0,0,0,0,0,1,1,0,6.830503564091685,0,8.007072824287576,3,61.68,47.24,5,1,0,0,13,3,1,573.25,0,0,0 +2341,2876,5284,-9,5285,5286,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.774066342959,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,774,0,0,0 +2341,2876,5285,5286,-9,-9,1,1,0,35,1,0,1,0,1,-9,5,1,0,3,8.12242664712592,8.430090207763151,0,2,0,-9,6,0,-1,22.41344102372362,0,0,1,36,1,3,1,1,1,2019,1,2,15,4,29,30,15,1,4,1,0,15.28366254589856,15.28366254589856,0,0,0,0,0,0,0,1,1,0,2.504186379650029,0,0,0,48.05,38.43,5,1,0,0,11,4,1,774,0,0,0 +2341,2876,5286,5285,-9,-9,2,1,1,36,1,0,1,0,1,-9,1,1,0,3,7.870473646841186,7.532991993719125,0,2,0,-9,6,0,1,-16.5968961519296,0,0,0,35,1,3,1,-9,-9,2019,1,1,11,1,35,40,15,1,1,1,0,5.645862679102613,5.645862679102613,0,0,0,0,0,0,0,1,1,0,3.844264430052207,0,0,0,51.41,56.15,5,1,0,0,11,4,1,774,0,0,0 +2342,2877,5287,5288,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,2.200388307016359,2.180331641084776,1,0,-9,62,0,-2,40.34019912924857,0,0,0,83,2,4,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.216486043985088,0,0,56.26,38.87,5,1,0,0,7,2,1,546,0,0,0 +2342,2877,5288,5287,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,4,0,7.463105736097564,7.535693542426296,1,0,-9,62,0,2,62.37996479602605,0,0,0,81,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.207704080876774,7.277596832713618,0,0,57.73,54.53,6,1,0,0,7,2,1,546,0,0,0 +2343,2878,5289,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-916.7711502363595,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.81,39.12,3,1,0,0,13,1,1,1087,0,0,0 +2344,2879,5290,5291,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,48,0,-1,41.1011002486084,0,0,0,75,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.3200834156301064,3,53.48,25.57,5,1,0,0,6,2,1,236,0,0,0 +2344,2879,5291,5290,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,7.444088318265161,7.21472996167664,1,0,-9,48,0,1,29.22588435880222,0,0,0,74,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.010891478337396,7.142899555683814,0,3,60.52,53.2,6,1,0,0,6,2,1,236,0,0,0 +2345,2880,5292,5293,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.302438690582774,7.509855528927528,0,1,0,-9,27,0,1,37.11974108451231,0,0,0,48,3,5,1,2,3,2019,1,1,7,0,24,32,15,1,0,1,0,9.904861090772631,9.904861090772631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.51,54.26,6,1,0,0,12,4,1,2087.5,0,0,0 +2345,2880,5293,5292,-9,-9,1,1,1,48,1,0,0,0,3,-9,1,1,0,5,8.454813184697127,8.531353343915207,0,1,0,-9,27,0,-1,29.81414788165631,0,0,0,49,2,3,1,3,3,2019,1,2,7,0,54,40,15,1,0,1,0,9.856694743476321,9.856694743476321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,6,1,0,0,12,4,1,2087.5,0,0,0 +2345,2881,5294,-9,5292,5293,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.979211947722233,7.963784505603211,0,3,0,0,0,-9,0,-1170.405189060343,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,37,15,1,0,-9,1,8.741583310341783,8.741583310341783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,6,1,0,0,12,4,1,1251,0,0,0 +2345,2882,5295,-9,5292,5293,4,1,0,19,2,0,0,1,2,0,7,2,0,4,7.690515287606359,7.592543128698136,0,3,0,0,0,-9,0,-906.1088960273888,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,36,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,12,3,1,590,0,0,0 +2346,2883,5296,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,4,9.239741576255968,8.991365253727954,0,3,0,0,0,-9,0,-1034.619181037482,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,52,15,1,0,-9,0,17.04564275050427,17.04564275050427,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,4,1,0,0,12,5,1,1582,0,0,0 +2347,2884,5297,5298,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,45,0,0,-13.22533360451646,0,0,0,65,1,3,1,2,2,2019,3,1,7,1,0,21,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,7.651365153846483,1,58.34,36.66,7,1,0,0,10,2,1,800,0,0,0 +2347,2884,5298,5297,-9,-9,1,1,1,65,1,0,0,0,1,-9,1,1,0,3,7.101650597001091,6.938598550958115,0,1,0,-9,45,0,0,-40.8778662589642,0,0,0,65,1,3,3,2,2,2019,2,2,9,0,22,32,15,1,0,4,0,7.923547323113757,7.923547323113757,1,0,7.268562726636706,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,10,2,1,800,0,0,0 +2348,2885,5299,5300,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,3,7.872835514114964,7.755351945309202,0,1,0,-9,1,-9,0,-90.08187726853672,-9,0,0,56,2,3,1,-9,-9,2019,1,1,16,4,42,0,15,1,4,1,0,7.511289022145392,7.511289022145392,0,0,0,0,0,0,0,0,0,0,7.27286984602671,0,0,0,41.86,41.35,3,1,0,0,2,5,1,841,0,0,0 +2348,2885,5300,5299,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.924062631775385,8.974938748821334,0,1,0,-9,1,-9,0,-4.960483188207379,-9,0,0,56,1,3,1,3,2,2019,1,2,6,0,44,0,15,1,0,1,0,18.25374173006352,18.25374173006352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.87,44.96,4,1,0,0,2,5,1,841,0,0,0 +2349,2886,5301,5302,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,6.128783252289518,6.196801039983812,1,0,-9,7,0,1,83.74846676758925,0,0,0,65,3,3,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.776558956003492,6.088162249046816,0,0,57.19,32.2,6,1,0,0,1,2,1,341,0,0,0 +2349,2886,5302,5301,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-1,-13.1480699138797,0,0,0,66,2,2,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.834248228014619,0,0,0,37.61,56.99,4,1,0,0,1,2,1,341,0,0,0 +2349,2887,5303,-9,5302,5301,3,1,1,22,2,0,0,0,2,-9,2,1,0,5,7.631489873535682,7.660063695986469,0,3,0,0,0,-9,0,-930.3191832315093,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,30,35,15,1,0,-9,1,8.239033236687222,8.239033236687222,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,1,3,1,458,0,0,0 +2350,2888,5304,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,2,7.455731258094927,7.935332865296013,0,3,0,0,0,-9,0,-1066.799743407079,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,42,15,1,0,-9,0,7.085900180447634,7.085900180447634,0,0,0,0,0,0,0,0,0,0,1.475017745537197,0,0,0,56.76,44.55,4,1,0,1,6,3,1,298,0,0,0 +2351,2889,5305,5306,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,6.603879477917616,6.730470133656933,1,0,-9,5,0,-4,113.8469187600256,0,0,0,72,2,2,3,2,2,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.128043147905572,6.385415205443522,0,0,32.76,56.87,5,1,0,0,10,2,1,820,0,0,0 +2351,2889,5306,5305,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,6.261247038994394,6.334991791478947,1,0,-9,5,0,4,-23.26167358300577,0,0,0,68,3,4,3,3,2,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.953828663550986,6.524563513422492,0,0,50.36,32.45,6,1,0,0,10,2,1,820,0,0,0 +2352,2890,5307,-9,5309,-9,1,1,1,17,2,0,2,1,2,-9,7,2,0,4,4.994547096448984,5.538831117115744,4.720957849646673,4,0,0,0,-9,0,-1073.464961623086,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.485443791722378,0,0,0,46.92,60.71,6,1,0,0,4,1,0,1066,0,0,0 +2352,2890,5308,-9,5309,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1082.018528425321,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,4,1,0,1066,0,0,0 +2352,2890,5309,-9,-9,-9,3,1,0,48,3,0,2,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-840.3893154635248,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.69,38.14,4,1,0,0,4,1,0,1066,0,0,0 +2353,2891,5310,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,4,8.298803125635148,8.44827595733808,0,3,0,0,0,-9,0,-866.4415078121822,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,38,30,15,1,2,-9,0,9.182744259631081,9.182744259631081,0,0,0,0,0,0,0,0,0,0,3.977164260338135,0,9.909903096705895,3,47.77,56.48,4,1,0,0,8,4,0,441,0,0,0 +2353,2892,5311,-9,5310,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.797037006461218,7.822129118140634,0,3,0,0,0,-9,0,-1004.686027192982,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,35,35,15,1,1,-9,1,6.02542347596726,6.02542347596726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,8,3,0,2771,0,0,0 +2354,2893,5312,-9,5315,5314,6,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.5384648873084,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,1758.166666666667,0,0,0 +2354,2893,5313,-9,5315,5314,3,1,1,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.729386087396,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1758.166666666667,0,0,0 +2354,2893,5314,5315,-9,-9,2,1,1,47,1,0,4,0,3,-9,1,1,0,3,8.328651892336559,8.496850319369502,0,2,0,-9,16,0,5,-149.6568129806174,0,0,0,42,1,5,1,2,3,2019,1,1,10,1,35,40,15,1,1,1,0,17.58675641224464,17.58675641224464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.11,58.61,5,1,0,0,5,4,1,1758.166666666667,0,0,0 +2354,2893,5315,5314,-9,-9,1,1,0,42,1,0,4,0,1,-9,1,1,0,5,8.34744706047813,8.302686013884927,0,2,0,-9,16,0,-5,118.9552105504923,0,0,1,47,3,3,1,3,1,2019,1,2,7,0,30,35,15,1,0,1,0,17.82888025051212,17.82888025051212,0,0,0,0,0,0,0,1,1,0,.4581653805463887,0,0,0,57.06,57.76,6,1,0,0,5,4,1,1758.166666666667,0,0,0 +2354,2893,5316,-9,5315,5314,4,1,1,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1030.602614429941,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,5,4,1,1758.166666666667,0,0,0 +2354,2893,5317,-9,5315,5314,5,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.6393365959452,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,1758.166666666667,0,0,0 +2355,2894,5318,-9,5319,-9,2,1,0,17,2,0,1,1,3,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1063.347412398708,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.39,50.44,3,1,0,0,2,2,1,1148,0,0,0 +2355,2894,5319,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,3,7.724947796184026,7.67571510716505,0,4,0,0,0,-9,0,-1156.569401127419,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,30,40,15,1,1,-9,0,7.318550809741896,7.318550809741896,0,0,0,0,0,0,0,1,1,0,0,0,1.794889508332891,3,48.45,49.46,3,1,0,0,2,2,1,1148,0,0,0 +2356,2895,5320,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1001.248807085549,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,0,0,6,1,0,3737,0,0,0 +2357,2896,5321,5322,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,5,0,6.216472965568508,5.946434904177977,1,0,-9,8,0,9,37.75834922512521,0,0,0,56,2,3,1,3,2,2019,3,2,19,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.071807325042069,0,0,19.07,70.07000000000001,4,1,0,0,10,4,1,1929,0,0,0 +2357,2896,5322,5321,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.32143866464952,8.042813020553588,0,1,0,-9,8,0,0,113.3685792993829,0,0,0,65,1,5,3,2,2,2019,2,1,22,10,39,39,15,1,10,4,0,12.76294862868503,12.76294862868503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.04,43.1,3,1,0,0,10,4,1,1929,0,0,0 +2358,2897,5323,5324,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,7.762356632233128,7.663156005682426,0,1,0,-9,2,0,-5,-39.24528501924116,0,0,0,59,2,3,1,2,-9,2019,1,2,11,0,40,53,15,1,0,1,0,8.171815770724388,8.171815770724388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,11,5,1,549,0,0,0 +2358,2897,5324,5323,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.453623758624756,8.698774241469117,0,1,0,-9,2,0,5,30.4096169362597,-9,0,0,54,2,4,1,-9,-9,2019,1,1,12,1,49,0,15,1,1,1,0,11.21782434590246,11.21782434590246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,6,1,0,0,11,5,1,549,0,0,0 +2359,2898,5325,5326,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.238814591211468,7.150927516718737,0,1,0,-9,7,0,-2,14.84562977862612,0,0,0,54,2,4,1,3,3,2019,1,1,12,0,22,23,15,1,0,1,0,5.937388263394925,5.937388263394925,0,0,0,0,0,0,0,0,0,0,1.086583177406818,0,5.702116603247431,3,54.79,55.86,6,1,0,0,13,4,1,637,0,0,0 +2359,2898,5326,5325,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,8.305815743517979,8.307643777061738,5.17727111376648,1,0,-9,7,0,2,-62.18277281441296,0,0,0,52,2,4,1,3,3,2019,1,2,9,0,0,25,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.154679310831842,0,0,53,54,6,1,0,0,13,4,1,637,0,0,0 +2360,2899,5327,-9,5328,5329,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.909323271408,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,2,0,0,7,5,1,834.25,0,0,0 +2360,2899,5328,5329,-9,-9,2,1,0,38,1,1,2,0,1,-9,1,1,0,3,9.052036841567617,9.463343607552334,0,2,0,-9,3,0,-7,-22.82412325616698,0,0,1,45,1,3,1,-9,-9,2019,1,1,11,1,30,0,15,1,1,1,0,39.65531991544898,39.65531991544898,0,0,0,0,0,0,0,0,0,0,7.681441115786298,0,0,0,47.32,47.16,6,1,0,0,7,5,1,834.25,0,0,0 +2360,2899,5329,5328,-9,-9,1,1,1,45,1,1,2,0,1,-9,2,1,0,3,9.070138744527998,9.276712387918028,0,2,0,-9,3,0,7,26.92876480537634,0,0,0,38,1,3,1,2,2,2019,1,2,8,0,47,45,15,1,0,1,0,16.4819866623398,16.4819866623398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,6,2,0,0,7,5,1,834.25,0,0,0 +2360,2899,5330,-9,5328,5329,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.294576796323,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,7,5,1,834.25,0,0,0 +2361,2900,5331,-9,-9,-9,1,1,1,87,2,0,0,0,3,-9,4,3,0,3,0,6.02813445871208,5.990714559951792,3,0,0,0,-9,0,-986.4171772509744,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.119832385711751,6.253276082223657,0,0,59.91,45.35,7,1,0,0,9,2,0,223,0,0,0 +2362,2901,5332,5333,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,3,8.356889464213591,8.387159685072447,0,1,0,-9,8,0,-3,-64.92278367298225,0,0,0,53,3,4,1,-9,2,2019,1,1,11,0,45,45,15,1,0,1,0,10.14267728496254,10.14267728496254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,51.81,6,1,0,0,10,5,1,928,0,0,0 +2362,2901,5333,5332,-9,-9,1,1,1,53,1,0,0,0,3,-9,1,1,0,4,8.150049698819192,8.732067947026524,0,1,0,-9,8,0,3,64.84142352786208,0,0,0,50,3,3,1,3,2,2019,1,2,9,0,40,38,15,1,0,1,0,15.51449973094294,15.51449973094294,0,0,0,0,0,0,0,0,0,0,1.907451803300232,0,3.313804415859719,3,60.87,42.1,6,1,0,0,10,5,1,928,0,0,0 +2363,2902,5334,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,5,9.091972704070727,9.476801731377131,0,3,0,0,0,-9,0,-1080.784227345575,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,42,37,15,1,0,-9,0,23.78096021416546,23.78096021416546,0,0,0,0,0,0,0,1,1,0,7.607464235573767,0,0,0,58.05,54.52,6,1,0,0,6,5,0,990,0,0,0 +2364,2903,5335,-9,5337,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-971.6079415022737,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,597.3333333333334,0,0,0 +2364,2903,5336,-9,5337,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,4,5.54694300686639,5.221427015602526,0,4,0,0,0,-9,0,-1142.165481268933,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,6,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.62,59.88,4,1,0,0,5,3,1,597.3333333333334,0,0,0 +2364,2903,5337,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,4,7.733552467845476,8.119447995946764,6.419610164333396,4,0,0,0,-9,0,-912.5479662337632,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,0,8.274519716420324,8.274519716420324,0,0,0,0,0,0,0,1,1,0,6.183396776668179,0,0,0,55.36,54.24,6,1,0,0,5,3,1,597.3333333333334,0,0,0 +2365,2904,5338,5340,-9,-9,2,1,0,42,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,16,0,-4,-14.92201034634046,0,0,1,46,1,3,1,1,1,2019,3,1,12,0,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.53,44.95,5,3,0,0,8,5,1,1048,0,0,0 +2365,2904,5339,-9,5338,5340,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.8520143336773,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,8,5,1,1048,0,0,0 +2365,2904,5340,5338,-9,-9,1,1,1,46,1,0,2,0,1,-9,1,1,0,3,9.781762852716639,9.515718707263066,0,2,0,-9,10,0,4,42.15759529924247,0,0,0,42,1,3,3,2,1,2019,2,2,12,0,40,40,15,1,0,3,0,59.70058253212602,59.70058253212602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,38.54,5,3,0,0,8,5,1,1048,0,0,0 +2366,2905,5341,5342,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,1,-19.22620875207978,0,0,0,76,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,2.528650985523013,0,2.241532960448924,0,1,1,0,1.360545144584984,0,0,0,51.25,46.55,6,1,0,0,12,3,1,1624.5,0,0,0 +2366,2905,5342,5341,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,8.21856690504025,7.504690891989291,1,0,-9,10,0,-1,187.1520107637348,0,0,0,77,2,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,1.907443772867007,.4056588504109131,0,0,0,71.16551466638191,1,1,0,6.314456552450605,7.747889334610989,0,0,45.59,20.83,6,1,0,0,12,3,1,1624.5,0,0,0 +2367,2906,5343,5344,-9,-9,2,1,1,43,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,7,0,2,0,0,0,0,41,2,2,3,-9,-9,2019,4,1,24,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.55,39.59,2,1,1,1,12,1,0,517.5,0,0,0 +2367,2906,5344,5343,-9,-9,1,1,0,41,1,0,0,0,2,-9,97,3,0,2,0,0,0,1,0,-9,7,0,-2,0,0,0,1,43,2,1,3,2,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,32.4,46.28,3,1,0,0,12,1,0,517.5,0,0,0 +2368,2907,5345,5346,-9,-9,1,1,1,57,1,0,0,0,3,-9,4,3,0,4,0,5.33722543748048,5.634516077439398,1,0,-9,6,0,-8,3.238781162293291,0,0,0,65,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.435465901795888,5.494163250865243,0,0,57.16,56.15,6,1,0,0,10,2,1,1046.5,0,0,0 +2368,2907,5346,5345,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,5.55547909797767,5.308226233998818,1,0,-9,6,0,8,153.147669858606,0,0,0,57,3,4,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.249687249116985,5.423750422601818,0,0,54.2,57.49,6,1,0,0,10,2,1,1046.5,0,0,0 +2369,2908,5347,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1153.411021486229,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.3,53.27,3,1,1,1,6,1,0,756,0,0,0 +2370,2909,5348,5350,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,4,8.953191041283029,8.641083866433906,0,2,0,-9,6,0,8,-49.27577127446384,0,0,0,43,2,4,1,2,2,2019,1,2,7,0,50,55,15,1,0,1,0,20.50366721491296,20.50366721491296,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,11,5,1,1504.5,0,0,0 +2370,2909,5349,-9,5350,5348,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.861389073335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,5,1,1504.5,0,0,0 +2370,2909,5350,5348,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.934186483443892,8.994958740378506,0,2,0,-9,6,0,-8,41.27153365195431,0,0,1,51,2,4,1,3,2,2019,1,1,9,0,41,60,15,1,0,1,0,16.4015039086508,16.4015039086508,0,0,0,0,0,0,0,1,1,0,1.950594083396755,0,0,0,42.17,56.08,6,1,0,0,11,5,1,1504.5,0,0,0 +2370,2909,5351,-9,5350,5348,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1068.507735472525,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,11,5,1,1504.5,0,0,0 +2371,2910,5352,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,5,0,5.100764328102631,4.88149599761231,3,0,0,0,-9,0,-1029.596945584634,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.979294330335958,5.172400907465471,4.718158941385797,3,62.39,56.71,6,1,0,0,13,2,1,665,0,0,0 +2372,2911,5353,5354,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,1,95.59424497557666,0,0,0,79,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.18,51.65,4,1,0,1,12,2,1,502.5,0,0,0 +2372,2911,5354,5353,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,6.141067636404817,6.234937826777053,1,0,-9,8,0,-1,75.62127683534183,0,0,0,80,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.974536168687488,6.366549177848297,0,0,51.24,40.87,6,1,0,1,12,2,1,502.5,0,0,0 +2373,2912,5355,-9,-9,-9,1,1,0,66,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-978.8416857110931,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.537353426638196,0,0,0,62.66,52.4,7,1,0,0,8,1,0,845,0,0,0 +2374,2913,5356,-9,-9,-9,1,1,0,65,2,0,0,0,2,-9,4,3,0,4,0,5.523799613779293,5.626082540729665,3,0,0,0,-9,0,-1021.432488037546,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,14,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.559510336792671,5.408744226167303,0,0,45.45,50.43,6,1,0,0,12,2,1,1929,0,0,0 +2374,2914,5357,-9,-9,-9,2,1,1,54,2,0,0,0,2,-9,2,1,0,5,6.669006569597445,6.769765036693002,0,3,0,0,0,-9,0,-1082.695995258134,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,11,11,15,1,0,-9,0,7.809399484031402,7.809399484031402,0,0,0,0,0,0,0,1,1,0,.0166285986941451,0,0,0,57.06,57.76,7,1,0,0,12,2,1,416,0,0,0 +2375,2915,5358,5359,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.048269191742296,8.227173366734737,0,1,0,-9,17,0,-1,7.679539774920114,0,0,0,55,1,4,1,2,1,2019,1,2,8,0,35,37,15,1,0,1,0,11.31180237058185,11.31180237058185,0,0,0,0,0,0,0,0,0,0,1.038584155454604,0,0,0,46.5,58.26,5,1,0,0,10,5,1,425,0,0,0 +2375,2915,5359,5358,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,4,8.713819094031001,8.717038142954499,0,1,0,-9,18,0,1,10.18102578406081,0,0,0,54,1,4,1,2,2,2019,1,1,10,2,55,47,15,1,2,1,0,12.31223170397373,12.31223170397373,0,0,0,0,0,0,0,0,0,0,1.911254834335701,0,0,0,48.28,60.18,6,1,0,0,10,5,1,425,0,0,0 +2376,2916,5360,5362,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,5,8.637413083868426,8.273275357258699,0,2,0,-9,21,0,-8,136.2225310629865,0,0,1,47,2,4,1,2,2,2019,1,1,14,3,37,32,15,1,3,1,0,13.99580331698554,13.99580331698554,0,0,0,0,0,0,0,1,1,0,6.702459598896191,0,0,0,56.72,58.13,7,1,0,0,12,4,0,1399,0,0,0 +2376,2916,5361,-9,5360,5362,3,1,0,17,2,0,1,1,2,0,7,2,0,4,6.751504219009699,7.216654374060362,0,2,0,0,0,-9,0,-1005.485168255314,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,3,21,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.32,33.18,6,1,0,0,12,4,0,1399,0,0,0 +2376,2916,5362,5360,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,4,7.077797599923302,7.597453553244547,0,2,0,-9,22,0,8,-25.04529362242667,0,0,0,39,2,5,1,2,2,2019,1,2,7,0,84,84,15,1,0,1,0,2.492306893140788,2.492306893140788,0,0,0,0,0,0,0,1,1,0,6.794195961103921,0,0,0,46.92,60.71,7,1,0,0,12,4,0,1399,0,0,0 +2376,2916,5363,-9,5360,5362,4,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.8977128688347,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,0,1399,0,0,0 +2377,2917,5364,-9,-9,-9,1,1,0,64,3,1,3,0,3,-9,6,3,0,3,0,4.453472918234489,4.664231318167714,4,0,0,0,-9,0,-998.5339432211856,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.422799700741448,0,0,49,48,5,3,0,1,4,2,1,1800,0,0,0 +2377,2918,5365,5366,5364,-9,4,1,0,31,1,1,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,8,0,-3,115.188310890681,0,0,1,34,2,4,1,3,3,2019,3,7,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.746283726564937,0,0,0,55.36,51.57,5,3,1,0,4,2,1,654.5,0,0,0 +2377,2918,5366,5365,-9,-9,7,1,1,34,1,1,3,0,2,-9,1,1,0,4,8.01571595033073,7.704582259648724,0,2,0,-9,8,0,3,-15.04232556673262,0,0,0,31,2,3,3,-9,-9,2019,2,4,10,0,40,36,15,1,1,3,0,5.647968849376495,5.647968849376495,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,4,2,1,654.5,0,0,0 +2377,2919,5367,-9,5368,-9,9,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-970.9603480706022,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,4,1,1,847.5,0,0,0 +2377,2919,5368,-9,5364,-9,8,1,0,25,3,1,3,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-991.5118363929919,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,21,9,0,15,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.69,36.29,3,3,1,1,4,1,1,847.5,0,0,0 +2378,2920,5369,-9,5370,5371,4,1,0,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-980.4925370956634,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,61.53,7,1,0,0,2,5,1,1077,0,0,0 +2378,2920,5370,5371,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.775534597256737,8.821293212351653,0,2,0,-9,28,0,0,138.3677716004884,0,0,0,50,1,4,1,2,2,2019,1,1,8,0,50,60,15,1,0,1,0,11.64234483646872,11.64234483646872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,50.24,6,1,0,0,2,5,1,1077,0,0,0 +2378,2920,5371,5370,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,4,8.664660771197575,8.580306729031777,0,2,0,-9,28,0,0,85.75507558695669,0,0,0,50,1,4,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,17.66246406069097,17.66246406069097,0,0,0,0,0,0,0,1,1,0,4.556069995721346,0,0,0,57.16,56.15,6,1,0,0,2,5,1,1077,0,0,0 +2378,2921,5372,-9,5370,5371,3,1,0,20,2,0,1,1,2,0,7,2,0,5,7.356342171006632,7.467521085539414,0,3,0,0,0,-9,0,-1144.200662951847,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.022127168976729,0,0,0,41.85,59.52,6,1,0,0,2,3,1,276,0,0,0 +2379,2922,5373,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,8.442443929488872,8.18609303287716,0,3,0,0,0,-9,0,-1096.560423902902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,53,40,15,1,0,-9,0,9.010804788328009,9.010804788328009,0,0,0,0,0,0,0,1,1,0,0,0,2.516063918294845,3,32.44,56.92,5,1,0,0,7,4,0,1467,0,0,0 +2380,2923,5374,5375,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,3,8.727886242574401,8.339165514418497,0,1,0,-9,1,-9,0,17.93580361225048,-9,0,0,57,3,5,1,2,2,2019,1,2,23,11,38,0,15,1,11,1,0,20.27358697999282,20.27358697999282,0,0,0,0,0,0,0,0,0,0,1.183730774813381,0,0,0,35.49,62.14,3,1,0,0,11,5,1,287,0,0,0 +2380,2923,5375,5374,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,5,8.010980266297899,8.010997865012513,0,1,0,-9,1,-9,9,-59.29274413519549,-9,0,0,48,2,3,1,3,3,2019,1,1,11,0,35,0,15,1,0,1,0,8.982337358929488,8.982337358929488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,11,5,1,287,0,0,0 +2381,2924,5376,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,4,8.257790248847975,8.501216808207037,0,3,0,-9,0,0,0,-1029.270988507918,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,36,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.74,52.23,6,1,0,0,12,4,1,1042,0,0,0 +2381,2925,5377,-9,5376,-9,2,1,0,28,2,0,0,0,2,-9,2,1,0,5,8.223565410914311,8.127671735147636,0,3,0,0,0,-9,0,-1017.907159094666,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,35,0,15,1,0,-9,1,12.48312333945866,12.48312333945866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.05,51.82,3,1,0,0,12,4,1,325,0,0,0 +2382,2926,5378,5379,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.03406586266923,5.199269041536838,1,0,-9,53,0,-3,-101.8685521337305,0,0,0,73,2,4,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.024615480975959,0,0,45.03,37.05,5,1,0,0,4,3,1,717.5,0,0,0 +2382,2926,5379,5378,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,7.9697128039605,7.948033077322393,1,0,-9,53,0,3,94.64748559653007,0,0,0,70,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.770285778662626,7.778562217259746,0,0,48.93,53.23,6,1,0,0,4,3,1,717.5,0,0,0 +2383,2927,5380,5381,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.029877059264492,7.090202299608742,1,0,-9,39,0,-10,34.65376980233577,0,0,0,84,3,4,3,-9,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,1,0,86.0900900754755,0,0,0,0,1,1,0,7.039525393772695,7.173006044905125,67.8736363738566,1,57.83,39.53,5,1,0,0,7,2,0,578.5,0,0,0 +2383,2927,5381,5380,-9,-9,2,1,0,84,1,0,0,0,3,-9,97,3,0,4,0,5.232948914404669,5.240692613115211,1,0,-9,32,0,10,-97.12278099901296,0,0,0,74,2,3,3,3,3,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.653516699319858,5.325035194470324,72.58412365517606,1,41.83,54.77,7,1,0,0,7,2,0,578.5,0,0,0 +2384,2928,5382,5383,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,39,0,5,114.4013426601224,0,0,0,64,2,3,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.058696334620475,0,0,0,64.23,44.69,6,1,0,0,10,2,1,1118,0,0,0 +2384,2928,5383,5382,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,3,6.403205357174262,7.615227929865288,7.146251781828345,1,0,-9,7,0,-5,-42.53002912954065,0,0,0,69,2,4,3,3,3,2019,2,1,7,0,35,35,15,1,0,4,0,1.709550965657987,1.709550965657987,0,0,0,0,0,0,0,1,1,0,1.111237506578021,6.89081229332996,0,0,59.46,46.99,6,1,0,0,10,2,1,1118,0,0,0 +2385,2929,5384,-9,-9,-9,3,1,0,24,2,0,0,0,1,1,2,1,0,3,7.419652364219264,7.267876554782763,0,3,0,0,0,-9,0,-1082.922535384182,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,3,28,0,15,1,3,-9,1,6.412327100705945,6.412327100705945,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,3,0,0,8,3,1,520,0,0,0 +2386,2930,5385,5386,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,9,0,-2,0,0,0,0,52,2,1,3,-9,-9,2019,2,1,12,1,0,47,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.93897618559683,1,47.4,39.33,3,1,0,0,11,1,1,575,0,0,0 +2386,2930,5386,5385,-9,-9,1,1,0,52,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,9,0,2,0,0,0,0,50,2,2,1,3,3,2019,3,2,22,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.631249463859616,0,0,0,32.97,18.82,2,1,0,0,11,1,1,575,0,0,0 +2387,2931,5387,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,2,8.249344830314739,8.240963861929458,0,3,0,0,0,-9,0,-1183.7754211316,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,51,37,15,1,1,-9,0,6.903294270956224,6.903294270956224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.12,27.32,4,4,0,1,8,4,0,354,0,0,0 +2388,2932,5388,-9,5389,-9,3,1,1,17,2,0,0,0,2,-9,2,3,0,4,6.623056190052408,6.411552673864915,0,3,0,0,0,-9,0,-940.4957404431703,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,10,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,4,4,1,169.5,0,0,0 +2388,2932,5389,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,3,8.218561760495206,8.156962082985233,5.67481399469473,3,0,0,0,-9,0,-959.7307131342793,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,78,44,15,1,0,-9,0,6.235450669006594,6.235450669006594,0,0,0,0,0,0,0,1,1,0,6.539560471400478,0,7.784629148153825,3,53.99,37.31,6,1,0,0,4,4,1,169.5,0,0,0 +2388,2933,5390,-9,5389,-9,2,1,1,19,2,0,0,0,2,1,2,1,0,4,7.131441524287144,7.251577191785679,0,3,0,0,0,-9,0,-961.3550976518317,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,20,0,15,1,2,-9,1,6.714636268008469,6.714636268008469,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,4,2,1,906,0,0,0 +2389,2934,5391,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,4,0,7.733505189739602,7.430443412952096,3,0,0,0,-9,0,-1006.319717366408,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.629429106951521,7.248945920874569,0,0,40.71,62.41,6,1,0,0,6,3,1,727,0,0,0 +2390,2935,5392,5393,-9,-9,1,1,0,20,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,1,1,-9,-1,181.9677463583789,0,1,1,21,2,3,1,-9,-9,2019,3,2,19,5,0,52,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.51,43.03,5,1,1,1,9,2,0,783,0,0,0 +2390,2935,5393,5392,-9,-9,2,1,1,21,1,0,0,0,2,-9,2,1,0,3,7.199394513454748,7.378837933412263,0,1,0,-9,1,-9,1,79.45131765985964,-9,1,0,20,3,3,3,-9,-9,2019,2,1,18,5,50,0,15,1,5,3,0,3.593661208020433,3.593661208020433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.33,50.15,1,1,0,1,9,2,0,783,0,0,0 +2391,2936,5394,5395,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,1,9.781780054087466,9.692917736517909,0,2,0,-9,10,0,4,64.82392076925285,0,0,0,40,1,4,1,2,2,2019,1,2,30,12,55,57,15,1,12,1,0,32.63339790434642,32.63339790434642,0,0,0,0,0,0,0,0,0,0,4.154968267183985,0,0,0,18.2,50.6,2,1,0,0,5,5,1,921.5,0,0,0 +2391,2936,5395,5394,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,7.015636325057156,7.081361311901211,0,2,0,-9,10,0,-4,-169.1209833389094,0,0,1,44,1,1,1,2,3,2019,1,1,15,4,13,14,15,1,4,1,0,10.05250629896098,10.05250629896098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.32,51.41,4,1,0,0,5,5,1,921.5,0,0,0 +2391,2936,5396,-9,5395,5394,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.205767834814,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,5,5,1,921.5,0,0,0 +2391,2936,5397,-9,5395,5394,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.745574314416,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,5,5,1,921.5,0,0,0 +2392,2937,5398,5400,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,4,9.590015873237885,9.592390234440026,0,2,0,-9,8,0,0,-17.56331034167757,0,0,0,35,1,5,1,2,2,2019,1,1,11,1,50,45,15,1,1,1,0,32.92959915537393,32.92959915537393,0,0,0,0,0,0,0,0,0,0,4.205665593869764,0,0,0,47.62,56.48,5,1,0,0,9,5,1,493.5,0,0,0 +2392,2937,5399,-9,5400,5398,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.8503768417702,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,493.5,0,0,0 +2392,2937,5400,5398,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,5,7.003912271972341,7.090447670712214,0,2,0,-9,13,0,0,-56.54581641109614,0,0,1,35,1,4,1,2,3,2019,1,2,11,0,13,7,15,1,0,1,0,8.535462225886954,8.535462225886954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,59.07,6,1,0,0,9,5,1,493.5,0,0,0 +2392,2937,5401,-9,5400,5398,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.1270181754264,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,9,5,1,493.5,0,0,0 +2393,2938,5402,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,1,6.988765763968946,8.266666170209893,7.223718043311119,3,0,0,0,-9,0,-970.5985760025695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,15,15,15,1,3,-9,0,9.017553307359361,9.017553307359361,1,0,0,0,0,0,0,1,1,0,0,7.140208653930042,0,0,51.86,19.84,3,1,0,0,2,4,1,157,0,0,0 +2394,2939,5403,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.912529564316167,7.381348078331164,0,3,0,-9,0,-9,0,-998.6422397129625,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,30,0,15,1,12,-9,0,9.595019102886491,9.595019102886491,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.58,54.21,1,1,0,0,9,3,1,314,0,0,0 +2395,2940,5404,-9,-9,-9,1,1,1,18,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-977.6712293804417,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.63,6,1,0,0,10,1,0,675,0,0,0 +2396,2941,5405,5406,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,1,0,7.426903251129413,7.860398086982091,1,0,-9,52,0,9,-2.733593930338162,0,0,0,73,1,4,3,3,3,2019,4,2,11,4,0,0,15,4,4,4,0,0,0,1,0,119.6891051593988,0,0,0,0,1,1,0,0,7.67152672375753,0,0,54.38,24.08,6,1,0,0,13,4,1,1036,0,0,0 +2396,2941,5406,5405,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,7.670554589312255,7.835767111307554,1,0,-9,52,0,0,40.08873747047197,0,0,0,82,1,1,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.632862908055551,75.18668554971971,1,57.16,56.15,7,1,0,0,13,4,1,1036,0,0,0 +2397,2942,5407,5408,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,6.868762943674459,6.275695724800624,1,0,-9,57,0,0,-8.154045476484718,0,0,0,76,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.539563774865145,6.466810200034698,0,0,43.95,39.24,6,1,0,0,7,2,1,619.5,0,0,0 +2397,2942,5408,5407,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,2.042974166313291,2.240681801645225,1,0,-9,57,0,0,69.32901992590418,0,0,0,76,3,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.880928125514199,1.730626523897915,0,0,50.16,46.82,4,1,0,0,7,2,1,619.5,0,0,0 +2398,2943,5409,-9,5410,5411,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.888797067797,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,0,1506.75,0,0,0 +2398,2943,5410,5411,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.347003719508159,8.629718977016616,0,2,0,-9,16,0,-3,-23.24405487080224,0,0,1,43,1,3,3,2,2,2019,2,2,10,0,28,0,15,1,0,3,0,20.60363497124119,20.60363497124119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,56.4,2,1,0,0,2,3,0,1506.75,0,0,0 +2398,2943,5411,5410,-9,-9,2,1,1,43,1,0,2,0,1,-9,3,3,0,3,0,0,0,2,0,-9,16,0,3,-16.97182693287183,0,0,0,40,1,4,1,2,1,2019,3,1,25,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.82,55.51,2,1,1,1,2,3,0,1506.75,0,0,0 +2398,2943,5412,-9,5410,5411,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.182394142119,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,0,1506.75,0,0,0 +2399,2944,5413,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,2,0,5.488450979600593,5.195706683568716,3,0,0,0,-9,0,-1014.885583259347,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.561942114544641,0,0,26.41,35.75,4,1,0,1,5,2,1,246,0,0,0 +2400,2945,5414,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,2,1,0,3,7.587993313959115,7.867626898048549,0,3,0,0,0,-9,0,-1045.237325132664,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,30,37,15,1,1,-9,0,7.857881677387842,7.857881677387842,0,0,0,0,0,0,0,0,0,0,1.076320000847975,0,0,0,50.68,48.16,6,1,0,0,4,3,1,253,0,0,0 +2401,2946,5415,-9,-9,-9,2,1,1,45,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-989.6948188120524,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,36.76,6,1,1,1,10,1,0,236,0,0,0 +2402,2947,5416,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,3,0,6.656676760485141,6.458940489374382,3,0,0,0,-9,0,-1060.117934822905,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8530734021928,6.428682584764181,0,0,57.66,45.08,6,1,0,0,7,2,1,210,0,0,0 +2402,2948,5417,-9,-9,-9,2,1,1,49,3,0,0,0,2,-9,1,1,0,2,6.057956770483381,6.141537865281812,0,3,0,-9,0,-9,0,-918.9443774802586,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,8,0,15,1,0,-9,0,6.93935834715062,6.93935834715062,0,0,0,0,0,0,0,1,1,0,4.343645001091424,0,48.62438945158033,3,40.54,20.86,4,1,0,0,7,2,1,327,0,0,0 +2403,2949,5418,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,3,3,0,5,8.083485666868878,8.126552786404421,0,3,0,0,0,-9,0,-1081.640588457903,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,38,40,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.32,57.18,7,1,1,0,8,4,1,209,0,0,0 +2404,2950,5419,5420,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,4.160327971143031,6.613021235729376,6.896156826261072,1,0,-9,19,0,5,22.8497998734893,0,0,0,66,3,2,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.942315961817372,0,0,55.57,48.59,6,1,0,0,7,2,1,453.5,0,0,0 +2404,2950,5420,5419,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,18,0,-5,-106.5857623705998,0,0,0,71,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.695540827197838,0,0,0,66.62,21.03,7,1,0,0,7,2,1,453.5,0,0,0 +2405,2951,5421,5422,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.882396806248442,7.749209331540345,1,0,-9,8,0,0,-11.84085981200654,0,0,0,82,2,1,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.533451726517186,7.981735750067631,0,0,58.07,46.29,7,1,0,0,10,3,1,394,0,0,0 +2405,2951,5422,5421,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,1,0,6.08864241593772,6.202508497008809,1,0,-9,8,0,0,111.792475812761,0,0,0,82,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.090845129645245,0,0,58.48,19.17,5,1,0,0,10,3,1,394,0,0,0 +2406,2952,5423,-9,-9,-9,1,1,1,69,3,1,1,0,2,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-882.6944273123715,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,29.14342571049621,27.64818316150821,0,0,1,1,0,0,0,0,0,52,47,5,4,0,0,8,1,0,420,0,0,0 +2406,2953,5424,5425,-9,5423,2,1,1,35,1,1,1,0,1,-9,1,1,0,4,3.553980941764131,3.758562836639889,0,2,0,1,1,-9,0,-103.3383705198192,0,0,0,35,1,5,3,-9,2,2019,2,3,10,0,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,5,4,0,0,8,1,0,597.3333333333334,0,0,0 +2406,2953,5425,5424,-9,-9,3,1,0,35,1,1,1,0,1,-9,6,3,0,5,0,0,0,2,0,-9,1,-9,0,-129.0797228369388,-9,0,1,35,1,4,1,-9,-9,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.8884961339052,3,57.06,57.76,5,4,0,0,8,1,0,597.3333333333334,0,0,0 +2406,2953,5426,-9,5425,5424,4,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-932.5190647109785,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,4,0,0,8,1,0,597.3333333333334,0,0,0 +2407,2954,5427,5429,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,6.579010432442024,6.601433580716453,0,2,0,-9,11,-9,-8,-93.67962444587565,-9,0,1,48,1,2,3,2,2,2019,2,2,11,0,18,0,15,1,0,3,0,6.312333067821487,6.312333067821487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,1,13,2,1,988,0,0,0 +2407,2954,5428,-9,5427,5429,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1045.805107815441,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,1,988,0,0,0 +2407,2954,5429,5427,-9,-9,2,1,1,48,1,0,2,0,1,-9,6,3,0,2,0,0,0,2,0,-9,1,-9,8,-152.1794710720202,-9,0,0,40,2,4,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.91,53.01,5,1,0,0,13,2,1,988,0,0,0 +2407,2954,5430,-9,5427,5429,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-1089.338188121105,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,13,2,1,988,0,0,0 +2408,2955,5431,5432,-9,-9,1,1,1,68,1,0,0,0,2,-9,1,1,0,3,7.437711858023857,7.729036863417368,0,1,0,-9,9,0,3,-72.7912928831954,0,0,0,65,3,2,3,3,3,2019,2,2,12,0,30,33,15,1,0,4,0,6.99629011132075,6.99629011132075,1,0,0,0,0,0,0,1,1,0,0,0,0,0,40.13,41.02,6,1,0,0,11,3,1,1250.5,0,0,0 +2408,2955,5432,5431,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-3,27.09787086773564,0,0,0,68,2,3,1,3,3,2019,3,1,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,35.19,5,1,0,0,11,3,1,1250.5,0,0,0 +2409,2956,5433,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-986.6959627091993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,1,1,143,0,0,0 +2410,2957,5434,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,3,8.062781736624801,8.349959739612723,4.152186506814642,3,0,0,0,-9,0,-1024.809641361458,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,48,15,1,2,-9,0,11.08963586362422,11.08963586362422,0,0,0,0,0,0,0,0,0,0,0,4.474795665323602,5.832846977238415,3,48,49,5,4,0,1,8,4,0,606,0,0,0 +2410,2958,5435,-9,5434,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.263393355564286,8.33686126779565,0,3,0,0,0,-9,0,-1052.079043353286,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,25,35,15,1,2,-9,1,13.02884656227897,13.02884656227897,0,0,0,0,0,0,0,0,0,0,5.383383423147759,0,0,0,46,58,5,4,0,0,8,4,0,338,0,0,0 +2410,2959,5436,-9,5434,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.078424553268177,7.065994698833154,0,3,0,0,0,-9,0,-851.1163870723017,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,4,0,0,8,3,0,641,0,0,0 +2411,2960,5437,-9,5440,5438,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.5044077043797,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,3,1,669.25,0,0,0 +2411,2960,5438,5440,-9,-9,2,1,1,36,1,1,2,0,2,-9,2,1,0,4,8.481082187642398,8.504363415617227,0,2,0,-9,5,0,7,-56.29532978833312,0,0,0,29,2,3,1,-9,-9,2019,1,1,12,1,35,35,15,1,1,1,0,16.6771499744743,16.6771499744743,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,6,1,0,0,10,3,1,669.25,0,0,0 +2411,2960,5439,-9,5440,5438,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.2513658936074,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,1,669.25,0,0,0 +2411,2960,5440,5438,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,3,7.00563706033968,7.284245079603044,0,2,0,-9,5,0,-7,-104.5945525025386,0,1,1,36,2,4,1,-9,-9,2019,1,2,16,5,15,23,15,1,5,1,0,9.196169150236956,9.196169150236956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,10,3,1,669.25,0,0,0 +2412,2961,5441,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,3,8.722824037078837,8.763453542273025,5.639114399217854,4,0,0,0,-9,0,-887.4595216640621,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,37,37,15,1,6,-9,0,22.15444677587896,22.15444677587896,0,0,0,0,0,0,0,1,1,0,6.162237391832264,0,0,0,45.73,42.44,5,1,0,0,9,4,1,336,0,0,0 +2412,2962,5442,-9,5441,-9,3,1,0,20,2,0,1,0,3,-9,2,1,0,4,7.696633258465596,7.9742435576397,0,3,0,0,0,-9,0,-1052.372215554946,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,37,0,15,1,2,-9,1,7.352587574428886,7.352587574428886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,3,1,249,0,0,0 +2413,2963,5443,5444,-9,-9,2,1,1,31,1,0,0,0,2,-9,1,1,0,5,8.259339678567839,8.410163626747346,0,1,0,-9,2,0,-2,155.5899150759244,0,0,0,33,2,3,1,-9,-9,2019,1,1,8,0,35,35,15,1,0,1,0,10.22705467097166,10.22705467097166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,43.19,6,1,0,0,9,5,0,543,0,0,0 +2413,2963,5444,5443,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,3,8.788654605980858,8.759321123051551,0,1,0,-9,2,0,2,-32.05314662054232,0,0,1,31,2,5,1,2,2,2019,1,2,9,0,42,40,15,1,0,1,0,16.30751755541737,16.30751755541737,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52,54.51,5,2,0,0,9,5,0,543,0,0,0 +2414,2964,5445,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,1,1,0,4,9.43131083597013,9.475617577093979,0,3,0,0,0,-9,0,-991.9142795954734,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,40,40,15,1,0,-9,0,48.1732620545786,48.1732620545786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,5,1,0,0,12,5,1,906,0,0,0 +2415,2965,5446,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,3.015732418721583,5.523353698339092,5.731627615043839,3,0,0,0,-9,0,-983.8140984024586,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.969718425189745,0,0,55.22,46.37,6,1,0,1,4,2,0,367,0,0,0 +2416,2966,5447,5448,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,1,0,3.884149631065401,4.400798839135652,1,0,-9,1,-9,-2,-186.6005612625568,-9,0,0,79,2,1,3,-9,-9,2019,4,1,33,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.067413619858152,0,0,19.01,22.64,1,1,0,1,9,2,1,1003,0,0,0 +2416,2966,5448,5447,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,0,6.445043037856464,6.397548953501979,1,0,-9,1,-9,2,-14.84719750360211,-9,0,0,77,2,1,3,-9,-9,2019,4,2,28,11,0,0,15,4,11,4,0,0,0,1,8.191728722329813,0,0,0,7.365141804406674,1.120842934389721,1,1,0,2.892169806025279,5.987392115648107,128.9697730583819,2,35.45,24.41,1,1,0,0,9,2,1,1003,0,0,0 +2417,2967,5449,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1016.637467381604,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,1,1,0,0,8,1,1,122,0,0,0 +2418,2968,5450,5451,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,3,8.079347482090913,8.3234181055149,0,1,0,-9,3,0,0,129.5504907153486,0,1,1,27,2,4,1,2,1,2019,1,2,13,1,45,43,15,1,1,1,0,9.959753809108941,9.959753809108941,0,0,0,0,0,0,0,0,0,0,5.115675702408517,0,0,0,39.7,53.37,5,1,0,0,8,5,0,308,0,0,0 +2418,2968,5451,5450,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.803395342353967,8.718781761571131,0,1,0,-9,3,0,0,250.0985050207834,0,1,0,27,1,3,1,-9,-9,2019,1,1,9,0,43,44,15,1,0,1,0,19.21715029723362,19.21715029723362,0,0,0,0,0,0,0,0,0,0,2.327836555300096,0,0,0,54.2,57.49,6,1,0,0,8,5,0,308,0,0,0 +2419,2969,5452,5454,-9,-9,1,1,0,37,1,0,1,0,1,-9,1,1,0,4,7.906491081543348,7.626928785971421,0,2,0,-9,11,0,-2,-147.4440830750158,0,0,1,39,3,4,1,1,2,2019,1,2,11,0,47,42,15,1,2,1,0,7.193367806121487,7.193367806121487,0,0,0,0,0,0,0,1,1,0,.4922318074855778,0,0,0,49,55,5,1,0,0,7,4,1,227.6666666666667,0,0,0 +2419,2969,5453,-9,5452,5454,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.1479654375838,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,227.6666666666667,0,0,0 +2419,2969,5454,5452,-9,-9,2,1,1,39,1,0,1,0,3,-9,2,1,0,4,8.397931093286495,8.360327927728667,0,2,0,-9,11,0,2,14.91041377753347,0,0,0,37,1,4,1,3,3,2019,1,1,9,0,50,50,15,1,1,1,0,9.267611137748695,9.267611137748695,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,5,1,0,0,7,4,1,227.6666666666667,0,0,0 +2420,2970,5455,5459,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,3,7.963710564656521,8.149584976391727,0,2,0,-9,18,0,2,108.4849628572044,0,0,1,42,2,3,1,-9,-9,2019,1,1,24,12,38,30,15,1,12,1,0,12.57997653705083,12.57997653705083,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.57,52.23,5,3,0,0,9,3,1,1580,0,0,0 +2420,2970,5456,-9,5455,5459,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.36566301636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,3,1,1580,0,0,0 +2420,2970,5457,-9,5455,5459,4,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1089.312576408785,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,9,3,1,1580,0,0,0 +2420,2970,5458,-9,5455,5459,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.76924735893,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,3,1,1580,0,0,0 +2420,2970,5459,5455,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,3,0,0,0,2,0,-9,18,0,-2,-95.0363565325131,0,0,0,44,2,3,1,2,2,2019,1,2,12,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.62,50.48,5,3,0,0,9,3,1,1580,0,0,0 +2421,2971,5460,5461,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,7.848768829455621,8.192269986241795,0,1,0,-9,7,0,7,-101.811582989469,0,0,0,56,2,4,1,3,3,2019,1,2,8,0,38,38,15,1,0,1,0,9.674087347538833,9.674087347538833,0,0,0,0,0,0,0,0,0,0,4.830294282441616,0,8.355793274148729,3,51.65,49.21,5,1,0,0,4,4,1,379,0,0,0 +2421,2971,5461,5460,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.061626894478136,8.024703168958126,0,1,0,-9,7,0,-7,38.05140027732002,0,0,0,63,2,4,1,2,2,2019,1,1,6,0,38,38,15,1,0,1,0,9.736254443079725,9.736254443079725,0,0,0,0,0,0,0,0,0,0,3.03182931532506,0,13.29334966020684,3,57.16,56.15,6,1,0,0,4,4,1,379,0,0,0 +2422,2972,5462,5463,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,1,8.228926217415736,8.414132524138372,0,1,0,-9,7,0,3,20.67181068712908,0,1,0,22,2,3,1,-9,-9,2019,1,2,18,6,40,40,15,1,6,1,0,8.945637578854566,8.945637578854566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,28.21,5,1,0,0,9,4,0,900.5,0,0,0 +2422,2972,5463,5462,-9,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,3,7.918898111870866,7.884026309132908,0,1,0,-9,7,0,-3,85.34660016358394,0,1,1,25,2,1,1,-9,-9,2019,1,1,12,0,0,44,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,4,1,0,0,9,4,0,900.5,0,0,0 +2423,2973,5464,5466,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,4,7.610845297823292,7.817154705557876,0,2,0,-9,12,0,4,-81.40937476368751,0,0,0,35,1,4,1,2,2,2019,1,2,11,0,30,44,15,1,0,1,0,8.563618365867899,8.563618365867899,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,10,4,0,954.6666666666666,0,0,0 +2423,2973,5465,-9,5466,5464,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.914155468264,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,0,954.6666666666666,0,0,0 +2423,2973,5466,5464,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,4,8.400216595175038,8.175532299883018,0,2,0,-9,12,0,-4,-100.0577708781126,0,0,1,39,2,4,1,2,2,2019,1,1,11,0,38,37,15,1,2,1,0,16.82201847086422,16.82201847086422,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,10,4,0,954.6666666666666,0,0,0 +2424,2974,5467,-9,5470,5468,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.977652952844,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,760.75,0,0,0 +2424,2974,5468,5470,-9,-9,1,1,1,30,1,1,2,0,1,-9,2,1,0,3,9.130279652885326,9.136751603139583,0,2,0,-9,6,0,-8,102.1700725598955,0,0,0,38,2,3,1,1,1,2019,1,2,11,0,44,42,15,1,0,1,0,20.26713492709456,20.26713492709456,0,0,0,0,0,0,0,1,1,0,4.34909782239108,0,0,0,51.41,56.15,6,1,0,0,7,5,1,760.75,0,0,0 +2424,2974,5469,-9,5470,5468,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-899.0866868097226,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,760.75,0,0,0 +2424,2974,5470,5468,-9,-9,2,1,0,38,1,1,2,0,2,-9,5,1,0,3,7.072824438746222,7.151864458046383,0,2,0,-9,6,0,8,-44.86207456622029,0,0,1,30,1,3,1,-9,-9,2019,1,1,6,0,16,21,15,1,0,1,0,9.791034801852161,9.791034801852161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,7,5,1,760.75,0,0,0 +2425,2975,5471,-9,5472,5473,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.147427817312,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,4,0,234.3333333333333,0,0,0 +2425,2975,5472,5473,-9,-9,2,1,0,37,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-1,69.76520109685831,0,0,1,38,1,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.88,43.83,4,3,0,0,8,4,0,234.3333333333333,0,0,0 +2425,2975,5473,5472,-9,-9,1,1,1,38,1,0,1,0,1,-9,2,1,0,4,8.868994621073467,8.559350186441138,0,2,0,-9,5,0,1,-197.639478592743,0,0,0,37,1,3,3,2,2,2019,2,2,8,0,46,48,15,1,0,3,0,12.53650879330583,12.53650879330583,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,48.03,5,3,0,0,8,4,0,234.3333333333333,0,0,0 +2426,2976,5474,5475,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,2,7.773327386077956,7.668422912649239,0,2,0,-9,2,0,-5,140.9643388395742,0,1,1,30,2,4,1,2,2,2019,1,2,18,6,38,37,15,1,6,1,0,8.29926292384059,8.29926292384059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.79,50.23,6,1,0,0,6,4,0,446.6666666666667,0,0,0 +2426,2976,5475,5474,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,4,8.056202960805525,8.035719101399941,0,2,0,-9,2,0,5,65.4388962759175,0,0,0,25,2,2,1,-9,-9,2019,1,1,10,0,40,38,15,1,1,1,0,8.742104060888392,8.742104060888392,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,6,4,0,446.6666666666667,0,0,0 +2426,2976,5476,-9,5474,5475,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-998.1106898080342,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,4,0,446.6666666666667,0,0,0 +2427,2977,5477,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,1,1,0,2,7.503527241340073,7.301441841524788,0,3,0,0,0,-9,0,-1056.22947599299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,12,25,33,15,1,12,-9,0,7.929215833325244,7.929215833325244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.31,43.73,1,4,0,0,6,3,0,1281,0,0,0 +2427,2978,5478,-9,5477,-9,2,1,1,20,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1028.505041541527,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,33,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.98,44.85,1,2,1,0,6,1,0,2184,0,0,0 +2428,2979,5479,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,3,7.094782898713904,7.144319192159469,0,3,0,0,0,-9,0,-950.0628682382918,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,6,27,37,15,1,6,-9,0,6.000427133377283,6.000427133377283,0,0,0,0,0,0,0,1,1,0,8.7538488753616,0,0,0,40.07,54.57,6,1,0,0,10,2,1,334,0,0,0 +2429,2980,5480,-9,5482,5481,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.332890506272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,0,530.5,0,0,0 +2429,2980,5481,5482,-9,-9,2,1,1,32,1,1,2,0,2,-9,1,1,0,5,9.016864131379313,9.356467874512527,0,2,0,-9,6,0,5,41.92121557256591,0,0,0,27,2,3,1,-9,-9,2019,1,1,6,0,40,55,15,1,0,1,0,28.44974031219602,28.44974031219602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,9,5,0,530.5,0,0,0 +2429,2980,5482,5481,-9,-9,1,1,0,27,1,1,2,0,2,-9,2,1,0,3,7.655227294256979,7.69028387105131,0,2,0,-9,6,0,-5,-113.6374610950188,0,1,1,32,2,5,1,-9,-9,2019,1,2,9,0,35,0,15,1,0,1,0,6.650216021216594,6.650216021216594,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,6,1,0,0,9,5,0,530.5,0,0,0 +2429,2980,5483,-9,5482,5481,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.858342872265,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,0,530.5,0,0,0 +2430,2981,5484,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,1,1,0,3,8.073390167240889,7.87156410148474,0,4,0,0,0,-9,0,-1028.696014821323,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,16,16,15,1,9,-9,0,21.68938766459096,21.68938766459096,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.69,59.68,3,1,0,0,1,3,0,578,0,0,0 +2431,2982,5485,5486,-9,-9,1,1,0,44,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,28,0,-2,-95.30728901281229,0,0,1,46,2,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,3,0,0,8,2,0,374.5,0,0,0 +2431,2982,5486,5485,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,4,4.523634803397507,4.350261083139789,0,1,0,-9,8,0,2,56.80295083755767,0,0,0,44,2,3,3,3,3,2019,2,1,9,0,30,40,15,1,1,3,0,.2960154547382208,.2960154547382208,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,2,0,374.5,0,0,0 +2431,2983,5487,-9,5485,5486,3,1,0,21,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-958.7785888590172,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,28,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.61,57.73,5,3,1,0,8,1,0,546,0,0,0 +2432,2984,5488,5489,-9,-9,2,1,0,51,1,0,1,0,1,-9,1,1,0,4,7.573581707668243,7.617105702913826,0,2,0,-9,9,0,4,48.65295548045359,0,0,0,47,1,3,1,2,2,2019,1,1,10,1,16,25,15,1,1,1,0,13.73941078827192,13.73941078827192,0,0,0,0,0,0,0,0,0,0,7.383294974003713,0,0,0,52.13,48.84,6,1,0,0,12,3,1,1030,0,0,0 +2432,2984,5489,5488,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,3,7.621218498064241,7.683020644706374,0,2,0,-9,9,0,-4,100.2606878036856,0,0,0,51,1,4,1,1,1,2019,1,2,7,1,65,55,15,1,1,1,0,3.116563948337747,3.116563948337747,0,0,0,0,0,0,0,0,0,0,0,0,24.96911294593979,3,46.06,35.5,5,2,0,0,12,3,1,1030,0,0,0 +2432,2984,5490,-9,5488,5489,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.224102198501,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,3,1,1030,0,0,0 +2433,2985,5491,-9,5492,5494,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.501612889627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,827.25,0,0,0 +2433,2985,5492,5494,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,3,8.624930392695626,8.571504694096934,0,2,0,-9,6,0,9,-15.11094836141464,0,0,1,29,2,2,1,2,3,2019,1,2,6,0,40,45,15,1,0,1,0,21.57968418341343,21.57968418341343,0,0,0,0,0,0,0,1,1,0,0,0,6.207192475267523,3,57.33,53.46,6,1,0,0,11,5,1,827.25,0,0,0 +2433,2985,5493,-9,5492,5494,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.778731803388,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,827.25,0,0,0 +2433,2985,5494,5492,-9,-9,2,1,1,29,1,0,2,0,2,-9,2,1,0,2,8.614540221211197,8.432540870603608,0,2,0,-9,6,0,0,-37.52344436175734,0,1,0,38,2,3,1,-9,-9,2019,1,1,28,10,40,60,15,1,10,1,0,12.92006505115882,12.92006505115882,0,0,0,0,0,0,0,1,1,0,7.975368264784446,0,0,0,41.18,54.59,5,1,0,0,11,5,1,827.25,0,0,0 +2434,2986,5495,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,3,8.219183174430158,7.859211069987717,0,3,0,0,0,-9,0,-867.7082839258462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,11.45091998321107,11.45091998321107,0,0,0,0,0,0,0,0,0,0,0,0,5.19011930893956,3,57.33,53.46,7,1,0,0,7,4,1,280,0,0,0 +2435,2987,5496,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,97,3,0,2,7.145305786838589,7.482729753983445,0,3,0,0,0,-9,0,-1031.749753809466,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,24,11,16,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,18.04,62.43,2,1,0,1,8,3,0,359,0,0,0 +2436,2988,5497,5498,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,5,8.205826002009179,8.288630392662295,0,1,0,-9,9,0,-6,-47.14993624132667,0,0,0,39,2,4,1,3,3,2019,1,1,21,9,37,38,15,1,9,1,0,11.68741344699254,11.68741344699254,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,61.58,6,1,0,0,5,5,1,464,0,0,0 +2436,2988,5498,5497,5499,-9,1,1,0,39,1,0,0,0,2,-9,2,1,0,4,8.741363590088481,9.016875869136696,0,1,0,-9,9,0,6,-44.01826963066989,0,0,1,33,2,5,1,3,2,2019,1,2,9,0,39,38,15,1,0,1,0,17.80794464305329,17.80794464305329,0,0,0,0,0,0,0,1,1,0,3.573999747332325,0,0,0,51.24,58.84,6,1,0,0,5,5,1,464,0,0,0 +2436,2989,5499,-9,-9,-9,3,1,0,73,3,0,0,0,3,-9,4,3,0,3,0,8.418184424879147,8.107848095361764,3,0,0,0,-9,0,-961.0471704831851,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,.8760603142827394,0,0,0,1,1,0,0,7.984309692739752,0,0,51.42,37.38,5,1,0,0,5,4,1,1255,0,0,0 +2437,2990,5500,5501,-9,-9,1,1,1,52,1,0,0,0,3,-9,1,1,0,3,8.560850788527015,8.666003265783297,0,1,0,-9,34,0,1,-73.84017490954558,0,0,0,51,2,3,1,3,2,2019,1,2,10,0,50,45,15,1,0,1,0,12.25587077346202,12.25587077346202,0,0,0,0,0,0,0,0,0,0,4.830341083813671,0,0,0,47.96,45.3,6,1,0,0,9,5,1,869,0,0,0 +2437,2990,5501,5500,-9,-9,2,1,0,51,1,0,0,0,2,-9,1,1,0,3,8.070891761751399,7.991079049073046,0,1,0,-9,34,0,-1,10.21898267189233,0,0,0,52,3,3,1,2,2,2019,1,1,9,0,10,12,15,1,0,1,0,45.25752122190706,45.25752122190706,0,0,0,0,0,0,0,0,0,0,3.239885193308345,0,0,0,55.96,49.93,6,1,0,0,9,5,1,869,0,0,0 +2437,2991,5502,-9,5501,5500,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.018796893564833,6.500027167424047,0,3,0,0,0,-9,0,-1011.577208043775,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,37,42,15,1,1,-9,1,3.097505702171009,3.097505702171009,0,0,0,0,0,0,0,0,0,0,.243354162730874,0,0,0,48,59,5,1,0,0,9,2,1,260,0,0,0 +2438,2992,5503,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,3,7.960807163074994,8.327536529156163,0,3,0,0,0,-9,0,-1069.113732165034,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,65,60,15,1,2,-9,0,4.776627528481852,4.776627528481852,0,0,0,0,0,0,0,1,1,0,5.347576289376336,0,0,0,50.63,50.99,5,1,0,0,9,4,1,221,0,0,0 +2439,2993,5504,5506,-9,-9,1,1,0,31,1,0,2,0,2,-9,6,3,0,3,0,5.524261133602801,5.636872403547578,2,0,-9,5,0,-4,62.83021784063887,0,0,1,35,2,4,1,2,2,2019,3,3,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.202495743602951,0,0,0,57.66,35.34,6,1,0,0,4,3,0,837.3333333333334,0,0,0 +2439,2993,5505,-9,5504,5506,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-834.4401500701902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,4,3,0,837.3333333333334,0,0,0 +2439,2993,5506,5504,-9,-9,3,1,1,35,1,0,2,0,2,-9,2,1,0,4,7.985626913448733,8.021126700955268,0,2,0,-9,5,0,4,70.23553683801636,0,0,0,31,2,3,3,-9,-9,2019,2,1,10,0,37,40,15,1,1,3,0,11.49211196100855,11.49211196100855,0,0,0,0,0,0,0,1,0,1,1.65127529970237,0,0,0,51,56,5,1,0,0,4,3,0,837.3333333333334,0,0,0 +2440,2994,5507,5508,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,44,0,-1,-104.7094204496801,0,0,0,70,1,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.451067448103629,0,0,0,55.02,54.61,7,3,0,0,9,4,1,820,0,0,0 +2440,2994,5508,5507,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,1,0,8.467303150910567,8.379391229871517,1,0,-9,44,0,1,48.83183154968721,0,0,0,69,2,4,3,2,2,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,1,0,5.592781373087756,0,0,0,0,1,1,0,4.456269987309908,8.412129379639062,0,0,42.71,29.64,3,3,0,0,9,4,1,820,0,0,0 +2441,2995,5509,5510,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.030541987361735,8.171389501898718,1,0,-9,28,0,0,8.10398127201727,0,0,0,69,1,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.70862345954391,8.147972695051719,0,0,54.2,57.49,6,1,0,0,1,4,1,794,0,0,0 +2441,2995,5510,5509,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.816323759450951,7.9938876882017,1,0,-9,28,0,0,-28.12908849347674,0,0,0,69,1,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.664250128928952,8.10311098445699,0,0,55.19,54.26,6,1,0,0,1,4,1,794,0,0,0 +2442,2996,5511,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-940.1873403153431,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,1,0,0,0,25.00308105387793,0,0,1,1,0,0,0,0,0,17.62,27.15,1,1,0,1,10,1,0,650,0,0,0 +2442,2997,5512,-9,5511,-9,2,1,1,47,2,0,0,0,3,-9,2,1,0,4,7.601374427893631,7.559552840278115,0,3,0,0,0,-9,0,-1038.086450045955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,54,49,15,1,5,-9,1,4.151406142222769,4.151406142222769,0,0,0,0,0,0,0,1,1,0,.4525535722313224,0,38.71740186851937,3,41.06,62.04,6,1,0,0,10,3,0,1003,0,0,0 +2443,2998,5513,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1174.625022491194,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,42,42,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0306699223455878,0,0,0,40.58,60.95,6,1,0,0,7,1,1,1565,0,0,0 +2444,2999,5514,-9,5516,5515,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1131.241926807918,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.311395180891761,0,0,0,57.16,56.15,7,1,0,0,1,5,1,791.6666666666666,0,0,0 +2444,2999,5515,5516,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,4,8.738492955809658,8.702163020273474,0,2,0,-9,9,0,2,-110.233479594778,0,0,0,48,1,4,1,2,1,2019,1,2,11,2,45,37,15,1,2,1,0,20.05875012529639,20.05875012529639,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,1,5,1,791.6666666666666,0,0,0 +2444,2999,5516,5515,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,4,8.96733172384349,8.894477076726503,0,2,0,-9,9,0,-2,-79.26161425858869,0,0,0,50,1,4,1,2,2,2019,1,1,12,1,45,39,15,1,1,1,0,15.74681578091632,15.74681578091632,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,5,1,0,0,1,5,1,791.6666666666666,0,0,0 +2444,3000,5517,-9,5516,5515,3,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-929.830294305414,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.410542122625029,0,0,0,44.02,60.7,6,1,0,0,1,1,1,399,0,0,0 +2445,3001,5518,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,3,0,7.789524644831936,7.360114385554568,3,0,0,0,-9,0,-931.6185484862905,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.378883687158158,7.440387097811483,114.5197079225003,3,58.5,44.67,6,1,0,0,12,3,1,685,0,0,0 +2445,3002,5519,-9,-9,5518,2,1,1,50,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1038.059090827027,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,12,1,1,174,0,0,0 +2446,3003,5520,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,5,8.501812222787402,9.17672864280231,0,3,0,0,0,-9,0,-955.7602303117136,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,41,43,15,1,3,-9,0,17.07901116490688,17.07901116490688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.02,58.89,5,4,0,0,8,5,0,1741,0,0,0 +2447,3004,5521,-9,-9,-9,1,1,1,88,3,0,0,0,1,-9,4,3,0,3,0,8.011354148442317,8.212151917085256,3,0,0,0,-9,0,-953.387881986819,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,42.41170819132036,7.559637189345781,0,0,1,1,0,4.706986980857316,8.018742389004828,0,0,55,45,6,1,0,0,9,4,1,337,0,0,0 +2448,3005,5522,5523,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.750171292220408,8.878233340844654,0,1,0,-9,8,0,1,11.79151348040561,0,0,0,55,3,3,1,2,2,2019,1,2,6,0,37,35,15,1,0,1,0,22.48669604827509,22.48669604827509,0,0,0,0,0,0,0,0,0,0,6.680660710235198,0,13.99290853407683,3,49.58,55.59,6,1,0,0,11,5,1,754,0,0,0 +2448,3005,5523,5522,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,3,6.946249874475407,6.9239837948233,0,1,0,-9,8,0,-1,134.6631631777439,0,0,0,56,2,3,1,3,3,2019,1,1,13,2,16,15,15,1,2,1,0,7.465017102029043,7.465017102029043,0,0,0,0,0,0,0,0,0,0,3.756353672529622,0,6.197807000520495,3,52.24,39.7,6,1,0,0,11,5,1,754,0,0,0 +2449,3006,5524,-9,-9,-9,1,1,0,52,2,0,1,0,2,-9,2,1,0,3,7.882899997316671,7.980630396877638,0,4,0,0,0,-9,0,-1084.935677699892,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,21,9,22,21,15,1,9,-9,0,15.54519867868287,15.54519867868287,0,0,0,0,0,0,0,1,1,0,3.593399212249256,0,2.594567359122836,3,41.27,49.97,5,1,0,0,6,3,1,622.5,0,0,0 +2449,3006,5525,-9,5524,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-945.7942078832601,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,5,0,0,6,3,1,622.5,0,0,0 +2450,3007,5526,-9,5529,5528,5,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.630998881234,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,0,710.2,0,0,0 +2450,3007,5527,-9,5529,5528,3,1,0,4,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.9935550945534,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,710.2,0,0,0 +2450,3007,5528,5529,-9,-9,1,1,1,35,1,2,3,0,2,-9,2,1,0,4,8.750365142845132,8.710235238663163,0,2,0,-9,6,0,3,-67.5032817487031,0,0,0,32,2,4,1,2,2,2019,1,2,9,0,35,37,15,1,0,1,0,22.84861874121696,22.84861874121696,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,4,0,710.2,0,0,0 +2450,3007,5529,5528,-9,-9,2,1,0,32,1,2,3,0,2,-9,2,1,0,4,7.265467869154838,7.962028832996784,0,2,0,-9,6,0,-3,-8.984096878458693,0,0,1,35,2,4,1,-9,-9,2019,1,1,14,4,20,18,15,1,4,1,0,9.485954873110483,9.485954873110483,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,6,1,0,0,2,4,0,710.2,0,0,0 +2450,3007,5530,-9,5529,5528,4,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.1691858137084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,0,710.2,0,0,0 +2451,3008,5531,-9,-9,-9,1,1,0,72,3,0,1,0,3,-9,4,3,0,1,0,0,0,4,0,0,0,-9,0,-941.1269127679692,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.63,22.17,4,1,0,0,6,1,1,514,0,0,0 +2451,3009,5532,-9,5531,-9,2,1,0,46,2,0,1,0,3,-9,1,1,0,5,0,0,0,3,0,0,0,-9,0,-1100.235794580531,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,2,16,16,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89455634315148,3,43.75,50.35,1,1,0,0,6,1,1,381,0,0,0 +2451,3009,5533,-9,5532,-9,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-952.6995486042067,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,1,1,381,0,0,0 +2452,3010,5534,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,4,8.277942743752536,8.073046462185895,0,4,0,0,0,-9,0,-1079.664951320668,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,36,36,15,1,0,-9,0,10.47354570792116,10.47354570792116,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,3,1,725,0,0,0 +2452,3011,5535,-9,5534,-9,2,1,0,20,2,0,1,1,2,0,7,2,0,4,7.208001612718447,6.745483161872008,0,3,0,0,0,-9,0,-1065.989047877774,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.52,63.52,5,1,0,0,12,2,1,63,0,0,0 +2453,3012,5536,-9,-9,-9,1,1,1,48,3,0,1,0,2,-9,2,1,0,3,8.412095082955602,8.26290725880407,0,4,0,0,0,-9,0,-937.2102307932241,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,40,40,15,1,3,-9,0,11.70213070917432,11.70213070917432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.68,50.64,4,1,0,0,13,4,1,504,0,0,0 +2453,3013,5537,-9,-9,5536,2,1,1,21,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-886.1419180659759,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,2,0,0,25,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.48,57.01,6,1,1,0,13,1,1,82,0,0,0 +2453,3014,5538,-9,-9,5536,3,1,1,18,2,0,1,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1009.414239473127,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.196063430462915,0,3.342574142952125,3,57.06,57.76,7,1,1,0,13,4,1,124,0,0,0 +2454,3015,5539,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,6.426480595526583,6.633087653806838,3,0,0,0,-9,0,-1017.028941596665,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,2.228091441537444,0,0,0,0,27.84946473743088,1,1,0,0,6.45477221676664,0,0,39.8,26.44,5,1,0,0,6,2,1,1380,0,0,0 +2455,3016,5540,5541,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,5,7.757334171068004,8.603762587768781,5.472223978082139,1,0,-9,7,0,-8,-112.414238291995,0,0,0,66,3,4,3,3,3,2019,2,2,6,0,40,0,15,1,0,4,0,9.352131107903435,9.352131107903435,0,0,0,0,0,0,0,1,1,0,5.645568377506187,6.051071085270804,0,0,57.06,57.76,6,1,0,0,10,3,1,1623,0,0,0 +2455,3016,5541,5540,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,5.131017690252862,5.468235649450125,1,0,-9,7,0,8,-98.12891165775784,0,0,0,58,3,5,1,2,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.451232698033539,5.570624605280769,0,0,57.16,56.15,7,1,0,0,10,3,1,1623,0,0,0 +2456,3017,5542,5543,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.759186348670674,8.820687264507338,0,1,0,-9,7,0,4,22.56326484675829,0,0,0,57,3,2,1,3,3,2019,1,2,12,0,40,41,15,1,0,1,0,14.38959911467172,14.38959911467172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,11,5,1,528.5,0,0,0 +2456,3017,5543,5542,-9,-9,2,1,0,57,1,0,0,0,3,-9,1,1,0,2,8.889409846488174,8.6155903459911,0,1,0,-9,7,0,-4,41.71185456452847,0,0,0,61,2,3,1,2,3,2019,1,1,10,2,12,30,15,1,2,1,0,55.70200641967387,55.70200641967387,0,0,0,0,0,0,0,0,0,0,4.681366007341336,0,0,0,45.82,29.18,6,1,0,0,11,5,1,528.5,0,0,0 +2457,3018,5544,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-970.8476351895537,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.116797483348048,0,0,0,1,1,0,0,0,0,0,56.34,31.82,2,1,0,0,12,1,0,117,0,0,0 +2458,3019,5545,5546,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,5,0,6.476330259272035,6.991376027553758,1,0,-9,7,0,17,140.2400333986564,0,0,0,52,1,4,3,2,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.453428995504529,0,0,43.33,55.91,6,1,0,0,4,2,1,466,0,0,0 +2458,3019,5546,5545,-9,-9,2,1,0,52,1,0,0,0,1,-9,8,3,1,4,0,0,0,1,0,-9,7,0,-17,-20.93000787455381,0,0,0,69,2,5,3,-9,-9,2019,4,1,14,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4885458802464741,0,0,0,19.21,61.32,5,1,0,0,4,2,1,466,0,0,0 +2459,3020,5547,5548,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,2,6.359792425515835,6.577485733577569,2.762612576586883,1,0,-9,43,0,-4,106.1680460435022,0,0,0,64,3,1,3,-9,-9,2019,2,2,13,2,10,10,15,1,2,4,0,6.763837367477754,6.763837367477754,0,0,0,0,0,0,0,1,1,0,0,2.161229472200386,29.55540616368302,1,39.73,26.69,6,1,0,0,11,3,1,1085.5,0,0,0 +2459,3020,5548,5547,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,1,0,8.307636827745398,8.007732440292505,1,0,-9,9,0,4,-20.75588832589863,0,0,0,60,3,2,1,2,3,2019,3,1,15,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.029086805616803,7.899448097686558,0,0,35.4,17.75,4,1,0,0,11,3,1,1085.5,0,0,0 +2460,3021,5549,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,4,7.878776618385031,7.925982921059846,6.765671524549194,3,0,0,0,-9,0,-1103.834280809379,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,20,27,15,1,1,-9,0,11.73108200730581,11.73108200730581,0,0,0,0,0,0,0,1,1,0,6.343164690791196,5.852730880732173,0,0,50.11,54.04,6,1,0,0,2,4,1,472,0,0,0 +2460,3021,5550,-9,5549,-9,3,1,0,17,2,0,0,0,2,1,2,3,0,4,6.887311259601193,6.743960200714191,0,3,0,0,0,-9,0,-1010.551333382099,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,15,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,2,4,1,472,0,0,0 +2461,3022,5551,5552,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,4,8.397145525637454,8.567101237958063,0,1,0,-9,10,0,11,-79.70922525466514,0,0,0,51,2,2,1,2,2,2019,1,1,8,0,24,24,15,1,0,1,0,22.60243009723786,22.60243009723786,0,0,0,0,0,0,0,0,0,0,4.896808512787022,0,0,3,58.87,51.29,6,1,0,0,4,5,1,839,0,0,0 +2461,3022,5552,5551,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,2,8.938321697282076,8.957454301022761,0,1,0,-9,10,0,-11,-101.6162108462973,0,0,0,62,2,4,1,2,2,2019,1,2,11,4,38,38,15,1,4,1,0,19.9524203041706,19.9524203041706,0,0,0,0,0,0,0,0,0,0,5.652106276629547,0,0,0,54.23,25.51,5,1,0,0,4,5,1,839,0,0,0 +2462,3023,5553,-9,5554,5555,4,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-839.4698936941002,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,818.6666666666666,0,0,0 +2462,3023,5554,5555,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,3,8.309396928810267,8.302795791442211,0,2,0,-9,14,0,-8,3.039793269611371,0,0,1,49,2,3,1,3,3,2019,1,2,11,0,37,40,15,1,0,1,0,14.63035106402159,14.63035106402159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,1,4,1,818.6666666666666,0,0,0 +2462,3023,5555,5554,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,3,7.964794583867421,8.289648607600286,0,2,0,-9,15,0,8,98.34549565261077,0,0,0,41,2,3,1,2,2,2019,1,1,9,0,47,40,15,1,0,1,0,8.646004434546626,8.646004434546626,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,46.71,6,1,0,0,1,4,1,818.6666666666666,0,0,0 +2463,3024,5556,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,4,8.780973153797087,8.614501946804245,0,3,0,0,0,-9,0,-932.5572774245611,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,42,0,15,1,6,-9,0,17.88622603549559,17.88622603549559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.59,56.63,5,1,0,0,5,5,1,563,0,0,0 +2464,3025,5557,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,4,0,7.455873454035407,7.924416532327071,3,0,0,0,-9,0,-1117.29095161673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7204797484951916,7.45673718999022,0,0,41.17,59.31,6,1,0,0,1,3,1,465,0,0,0 +2465,3026,5558,5559,-9,-9,2,1,1,65,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,6,0,7,0,-9,0,0,58,3,2,3,-9,-9,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.582717731085353,0,0,0,52,47,5,1,0,0,1,1,0,798,0,0,0 +2465,3026,5559,5558,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,19,0,-7,0,0,0,0,65,2,3,3,2,2,2019,4,2,16,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,78.48789491624059,1,47.59,17.43,5,1,0,0,1,1,0,798,0,0,0 +2466,3027,5560,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,1,8.646388672656734,8.392474832262641,0,3,0,0,0,-9,0,-1040.050889246088,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,35,38,15,1,0,-9,0,15.16948437993318,15.16948437993318,0,0,0,0,0,0,0,0,0,0,6.795334391054979,0,0,0,43.72,44.16,6,1,0,0,7,4,0,507,0,0,0 +2467,3028,5561,5562,-9,-9,1,1,1,77,1,0,1,0,2,-9,2,1,0,4,6.343504919089206,6.235127756914951,0,2,0,-9,34,0,24,17.52548968118574,0,0,0,53,3,3,1,-9,-9,2019,1,2,6,0,26,8,15,1,0,1,0,2.33506167453999,2.33506167453999,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,6,2,0,196.6666666666667,0,0,0 +2467,3028,5562,5561,-9,-9,2,1,0,53,1,0,1,0,3,-9,2,1,0,3,7.088653210543115,7.305665271818246,0,2,0,-9,34,0,-24,-19.6632942016736,0,0,0,77,2,4,1,-9,-9,2019,1,1,11,2,16,16,15,1,2,1,0,7.942796914306157,7.942796914306157,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,39.86,5,2,0,0,6,2,0,196.6666666666667,0,0,0 +2467,3028,5563,-9,5562,5561,3,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-921.9804984642794,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,6,2,0,196.6666666666667,0,0,0 +2467,3029,5564,-9,-9,-9,4,1,0,20,2,0,1,1,2,0,7,2,0,5,4.006773090994815,3.850779873613171,0,4,0,0,0,-9,0,-933.4557874935969,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.46,56.16,7,2,0,0,6,2,0,2644,0,0,0 +2468,3030,5565,-9,5567,-9,3,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1141.597882849051,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,1,0,551.5,0,0,0 +2468,3030,5566,-9,5567,-9,5,1,0,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-963.2313354922816,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,1,0,551.5,0,0,0 +2468,3030,5567,-9,-9,-9,1,1,0,35,2,1,4,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-940.921468674391,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,50.54,6,1,0,1,6,1,0,551.5,0,0,0 +2468,3030,5568,-9,5567,-9,4,1,1,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-986.7858225492803,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,1,0,551.5,0,0,0 +2469,3031,5569,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1050.97243401719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.4,32.38,4,4,0,1,8,1,0,104,0,0,0 +2470,3032,5570,5571,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,5.971062498035205,5.579939658493807,1,0,-9,52,0,2,-118.3977319334027,0,0,0,71,3,3,3,2,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.190112345823383,5.688887819820599,0,0,41.9,37.91,7,1,0,0,2,2,1,352,0,0,0 +2470,3032,5571,5570,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-2,-92.86844686264158,0,0,0,73,2,2,3,3,2,2019,4,1,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.92,54.3,6,1,0,0,2,2,1,352,0,0,0 +2471,3033,5572,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,5,0,7.407922993049193,6.870692450810939,3,0,0,0,-9,0,-907.9215297518426,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.479547970851834,6.852058480014876,0,0,67.92,41.85,1,1,0,0,6,2,1,91,0,0,0 +2472,3034,5573,5574,-9,-9,1,1,1,37,1,0,1,0,1,-9,2,1,0,4,9.147792831770126,9.007924455429427,0,2,0,-9,8,0,2,-79.68376302911474,0,0,0,35,1,3,1,2,3,2019,1,2,8,0,42,42,15,1,0,1,0,20.97438179883968,20.97438179883968,0,0,0,0,0,0,0,1,1,0,5.660940859936479,0,0,0,48.28,60.18,6,1,0,0,5,5,1,251.3333333333333,0,0,0 +2472,3034,5574,5573,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,3,8.106971549264172,8.100488297944834,0,2,0,-9,8,0,-2,-116.1332510368311,0,0,1,37,1,4,1,2,2,2019,1,1,10,0,36,0,15,1,0,1,0,11.41316302526769,11.41316302526769,0,0,0,0,0,0,0,1,1,0,4.21509011203445,0,0,0,57.33,53.46,6,1,0,0,5,5,1,251.3333333333333,0,0,0 +2472,3034,5575,-9,5574,5573,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.7482043465361,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,251.3333333333333,0,0,0 +2473,3035,5576,-9,5578,5577,2,1,0,12,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-957.3746653254566,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,4,1,0,0,4,3,0,813.4,0,0,0 +2473,3035,5577,5578,-9,-9,5,1,1,32,1,0,3,0,2,-9,2,1,0,4,7.850283917787643,8.31686552988857,0,2,0,-9,3,0,-13,107.8959109363023,0,0,0,45,2,2,3,-9,-9,2019,2,1,12,0,50,0,15,1,0,3,0,8.449982267595368,8.449982267595368,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,4,1,0,0,4,3,0,813.4,0,0,0 +2473,3035,5578,5577,-9,-9,1,1,0,45,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,3,0,13,-6.816581647238629,0,0,0,32,2,4,1,2,-9,2019,3,5,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.01,52.09,6,1,0,0,4,3,0,813.4,0,0,0 +2473,3035,5579,-9,5578,5577,3,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1084.701556639129,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,5,1,0,0,4,3,0,813.4,0,0,0 +2473,3035,5580,-9,5578,5577,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.116645397561,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,0,813.4,0,0,0 +2474,3036,5581,-9,5584,5583,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1134.344700702685,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,519.75,0,0,0 +2474,3036,5582,-9,5584,5583,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1121.789335840289,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,10,4,1,519.75,0,0,0 +2474,3036,5583,5584,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,2,9.035539389719279,8.460267246014343,0,2,0,-9,10,0,5,6.279885203258771,0,0,0,43,2,5,1,2,3,2019,1,1,12,0,40,37,15,1,0,1,0,16.5768279407659,16.5768279407659,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.06,53.95,5,1,0,0,10,4,1,519.75,0,0,0 +2474,3036,5584,5583,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,5,8.091388983820679,7.925768266425287,0,2,0,-9,10,0,-5,-49.27936923729344,0,0,1,48,2,2,1,3,2,2019,1,2,8,0,28,25,15,1,0,1,0,11.70999534990233,11.70999534990233,0,0,0,0,0,0,0,1,1,0,2.025333525921536,0,0,0,48.77,60.16,5,1,0,0,10,4,1,519.75,0,0,0 +2475,3037,5585,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,5,0,-8,0,0,0,1,-9,-9,-9,-9,2,3,2019,4,2,24,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.981987443887,1,23.64,60.82,6,1,0,0,13,1,0,425,0,0,0 +2475,3038,5586,-9,-9,-9,2,1,0,44,2,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,5,0,8,0,0,0,1,-9,-9,-9,-9,-9,-9,2019,4,1,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.314140852745648,0,0,0,25.46,26.38,2,1,0,0,13,1,0,897,0,0,0 +2475,3039,5587,-9,5586,-9,3,1,1,20,2,0,0,0,2,-9,9,3,0,3,0,0,0,3,0,0,0,-9,0,-1037.849924719165,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,5,1,0,0,13,1,0,582,0,0,0 +2476,3040,5588,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,2,1,0,5,7.993391283306884,8.144175221185337,6.56387966436449,4,0,0,0,-9,0,-1083.835234646568,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,41,40,15,1,0,-9,0,8.794746547409069,8.794746547409069,0,0,0,0,0,0,0,1,1,0,6.712856442158559,0,0,0,62.39,56.71,6,1,0,0,5,3,1,170,0,0,0 +2476,3041,5589,-9,5588,-9,2,1,1,25,2,0,2,0,2,-9,2,1,0,4,7.664432258944364,7.747548968936753,0,3,0,0,0,-9,0,-1068.073034206786,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,25,39,15,1,0,-9,1,10.9013053700397,10.9013053700397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.76,51.1,6,1,0,0,5,3,1,261,0,0,0 +2477,3042,5590,5591,-9,-9,2,1,0,30,1,0,0,0,2,-9,1,1,0,2,6.652861948070448,6.752662176433252,0,1,0,-9,8,0,1,133.1521478672481,0,0,1,29,3,5,1,1,1,2019,1,1,11,2,8,15,15,1,2,1,0,8.658652283290042,8.658652283290042,0,0,0,0,0,0,0,0,0,0,1.821725940713709,0,0,0,51.65,44.35,6,2,0,0,5,3,0,874,0,0,0 +2477,3042,5591,5590,-9,-9,1,1,1,29,1,0,0,0,3,-9,1,1,0,5,7.464604590717591,7.35916910464582,0,1,0,-9,8,0,-1,-32.1640224008157,0,1,0,30,2,2,1,1,1,2019,1,2,13,2,16,14,15,1,2,1,0,11.42668160607543,11.42668160607543,0,0,0,0,0,0,0,0,0,0,2.367358969691088,0,0,0,57.06,57.76,2,1,0,0,5,3,0,874,0,0,0 +2478,3043,5592,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,2,1,0,3,8.542359070315726,8.422243499790254,0,3,0,0,0,-9,0,-1059.404290976745,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,42,37,15,1,3,-9,0,13.40593966867549,13.40593966867549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.72,49.13,4,1,0,1,9,5,0,914,0,0,0 +2479,3044,5593,5595,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,4,9.154951170665003,8.978079234933798,0,2,0,-9,4,0,-1,-38.39876193646789,0,0,1,35,1,3,1,1,1,2019,1,3,14,3,40,30,15,1,3,1,0,28.76930030917189,28.76930030917189,0,0,0,0,0,0,0,1,1,0,5.730105518787197,0,0,0,27.06,63.25,5,1,0,0,10,5,1,396.6666666666667,0,0,0 +2479,3044,5594,-9,5593,5595,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.002210227694,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,396.6666666666667,0,0,0 +2479,3044,5595,5593,-9,-9,3,1,1,35,1,1,2,0,1,-9,2,1,0,3,8.303666804797871,8.374938466446849,0,2,0,-9,4,0,1,-68.86933456978363,0,0,0,34,1,4,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,14.18544811071209,14.18544811071209,0,0,0,0,0,0,0,1,1,0,2.095299930098661,0,0,0,51.41,56.15,5,5,0,0,10,5,1,396.6666666666667,0,0,0 +2480,3045,5596,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,3,8.946727291017035,9.271146026374851,0,3,0,-9,0,0,0,-958.4663304930235,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,60,0,15,1,0,-9,0,13.1679500633908,13.1679500633908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,5,1,0,0,6,5,1,227,0,0,0 +2481,3046,5597,5598,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.677180529323364,8.911456076913563,0,1,0,-9,41,0,3,97.15787969452181,0,0,0,55,3,3,3,3,3,2019,2,2,11,0,20,30,15,1,0,3,0,36.90890440578728,36.90890440578728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,41.62,5,3,0,0,8,4,1,866,0,0,0 +2481,3046,5598,5597,-9,-9,2,1,0,55,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,31,0,-3,-68.18133497240191,0,0,0,58,2,3,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,6,3,1,0,8,4,1,866,0,0,0 +2481,3047,5599,-9,5598,5597,3,1,0,29,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-987.2851527054265,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,30,10,0,45,15,1,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.02,57.58,2,3,0,0,8,1,1,1061,0,0,0 +2481,3048,5600,-9,5598,5597,4,1,0,20,2,0,0,0,1,1,2,1,0,3,5.821570924819782,6.12162965071687,0,3,0,0,0,-9,0,-900.2438816138896,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,18,0,15,1,0,-9,1,2.49910688244084,2.49910688244084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.6,53.68,4,3,0,0,8,2,1,418,0,0,0 +2482,3049,5601,5602,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,2,8.041257427283975,8.147103534374629,0,1,0,-9,31,0,3,-25.10015886334141,0,0,0,48,3,3,1,3,3,2019,1,1,27,10,40,40,15,1,10,1,0,10.2776484669202,10.2776484669202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.23,39.58,4,1,0,0,6,4,0,1167.5,0,0,0 +2482,3049,5602,5601,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,3,7.277638298707267,6.877223607460771,0,1,0,-9,31,0,-3,152.2596062007302,0,0,0,51,2,2,1,3,-9,2019,1,2,12,0,21,30,15,1,0,1,0,6.139062585379324,6.139062585379324,0,0,0,0,0,0,0,0,0,0,1.098747628043454,0,0,0,46.08,57.2,5,1,0,0,6,4,0,1167.5,0,0,0 +2482,3050,5603,-9,5602,5601,3,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.610107466455209,7.680732297638518,0,3,0,0,0,-9,0,-883.3116097004979,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,38,35,15,1,2,-9,1,7.211767416285606,7.211767416285606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.88,45.14,3,1,0,0,6,3,0,2499,0,0,0 +2483,3051,5604,5606,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,19,0,-7,56.37310321817588,0,0,1,44,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,3,0,0,7,2,0,973.3333333333334,0,0,0 +2483,3051,5605,-9,5604,5606,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.3390876817552,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,2,0,973.3333333333334,0,0,0 +2483,3051,5606,5604,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,4,7.852403494523222,7.781841460080501,0,2,0,-9,19,0,7,-26.23160142540054,0,0,0,37,2,4,3,3,3,2019,2,2,11,0,35,0,15,1,0,3,0,9.482392619287163,9.482392619287163,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,3,0,0,7,2,0,973.3333333333334,0,0,0 +2484,3052,5607,5608,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,6.70270229442865,6.906527898771343,1,0,-9,51,0,9,0,0,0,0,69,3,5,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.68634685821949,0,0,51.32,37.6,6,1,0,0,6,2,1,1920,0,0,0 +2484,3052,5608,5607,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,5,0,6.802147679661436,7.058734377928094,1,0,-9,26,0,0,0,0,0,0,78,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.832230166443152,6.68296613481701,0,0,57.06,57.76,6,1,0,0,6,2,1,1920,0,0,0 +2485,3053,5609,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,4,0,8.137804255020351,7.854499755422991,3,0,0,0,-9,0,-986.4728442053676,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8891090507046242,8.044506131278752,0,0,57.16,56.15,7,1,0,0,8,4,1,525,0,0,0 +2486,3054,5610,5611,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-3,68.88545188242321,0,0,0,74,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.064374165173343,0,11.65293908301223,3,54.96,53.17,6,1,0,0,1,3,1,361,0,0,0 +2486,3054,5611,5610,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.833784336928817,7.800333390210019,1,0,-9,52,0,3,81.89197584630143,0,0,0,71,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.071982942021006,7.92952067993618,.7882743569337956,3,54.96,53.17,6,1,0,0,1,3,1,361,0,0,0 +2487,3055,5612,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1109.858617463018,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,22,7,0,38,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.82,62.29,2,1,1,1,13,1,0,172,0,0,0 +2488,3056,5613,5614,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,8.192671125030552,8.460096205934191,0,1,0,-9,5,0,3,120.6847885417485,0,0,0,28,2,4,1,2,2,2019,1,2,7,0,41,38,15,1,0,1,0,10.14976871509405,10.14976871509405,0,0,0,0,0,0,0,0,0,0,1.00962125321437,0,0,0,57.16,56.15,6,1,0,0,9,4,1,545,0,0,0 +2488,3056,5614,5613,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,4,7.76997099171894,7.679923737337533,0,1,0,-9,5,0,-3,-15.62905670293264,0,1,1,31,2,4,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,8.191912621391371,8.191912621391371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,9,4,1,545,0,0,0 +2489,3057,5615,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.600619999047563,7.712350430349136,0,3,0,0,0,-9,0,-985.9332049237532,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,42,44,15,1,2,-9,0,5.977313231350617,5.977313231350617,0,0,0,0,0,0,0,0,0,0,1.257895444133724,0,0,0,48.81,59.91,3,1,0,0,2,3,0,556,0,0,0 +2490,3058,5616,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,3,8.596219175471496,8.979039991733018,5.061113763009505,3,0,0,0,-9,0,-1091.546667525371,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,40,41,15,1,4,-9,0,16.90265259641733,16.90265259641733,0,0,0,0,0,0,0,0,0,0,5.045949644152326,5.497581279540143,0,0,54.85,38.19,5,4,0,0,8,5,1,456,0,0,0 +2490,3059,5617,-9,5616,-9,2,1,1,27,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-999.8130416313127,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,2,0,0,8,1,1,189,0,0,0 +2490,3060,5618,-9,5616,-9,3,1,1,22,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-967.9946868583602,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,4,1,0,8,1,1,415,0,0,0 +2491,3061,5619,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1098.879456606838,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.97,24.82,6,1,0,0,2,1,0,828,0,0,0 +2492,3062,5620,-9,-9,-9,1,1,0,42,3,0,1,0,3,-9,2,1,0,4,7.472893937087744,7.62726858468064,0,4,0,0,0,-9,0,-984.1149727251463,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,20,20,15,1,2,-9,0,9.468517714208808,9.468517714208808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.62,58.96,4,1,0,0,13,2,0,959,0,0,0 +2492,3063,5621,-9,5620,-9,2,1,0,22,2,0,1,0,2,-9,2,1,0,4,8.027858096617702,8.117417651651687,0,3,0,0,0,-9,0,-1076.262594703722,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,37,45,15,1,0,-9,1,8.674544940941249,8.674544940941249,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,0,391,0,0,0 +2493,3064,5622,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,2,0,5.732326888994806,6.06606987536926,3,0,0,0,-9,0,-1021.958305366961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.728200158290582,5.964119155477598,0,0,62.58,18.51,6,1,0,0,7,2,1,1551,0,0,0 +2494,3065,5623,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,4,3,0,3,0,5.64520846984812,5.793990381041682,3,0,0,0,-9,0,-1029.011666362671,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.437579640367675,0,0,46.33,55.93,5,1,0,1,13,2,1,521,0,0,0 +2495,3066,5624,5625,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,7.799498343520241,8.524805828807247,7.049222846925389,1,0,-9,10,0,0,-135.2854786240798,0,0,0,62,2,3,3,3,3,2019,2,2,6,0,30,30,15,1,0,4,0,8.521374508074787,8.521374508074787,0,0,0,0,0,0,0,0,0,0,3.64239361354484,7.495906305108301,0,0,57.92,51.82,6,1,0,0,2,4,1,2063,0,0,0 +2495,3066,5625,5624,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,6.832657772827927,6.717299090861885,1,0,-9,10,0,0,-123.9713819766721,0,0,0,62,2,3,1,2,3,2019,3,1,5,0,0,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.881210114586902,6.81644498014919,0,0,60.3,46.58,6,1,0,0,2,4,1,2063,0,0,0 +2496,3067,5626,-9,-9,-9,1,1,1,24,2,0,0,0,1,0,7,2,0,2,8.030510271950515,7.897802734783445,0,3,0,0,0,-9,0,-1011.60041320105,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,43,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9015520718403,0,0,0,51.89,51.11,6,1,0,0,2,3,0,866,0,0,0 +2497,3068,5627,5628,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,4,7.757811953945217,8.794860381899765,7.93920287932731,1,0,-9,7,0,3,8.609302839307579,0,0,0,63,2,3,3,3,3,2019,2,2,10,0,11,28,15,1,0,3,0,19.35627885696157,19.35627885696157,1,0,0,0,0,0,0,1,1,0,0,8.140331018187233,0,0,59.15,49.67,7,1,0,0,11,4,1,1362.5,0,0,0 +2497,3068,5628,5627,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,7,0,-3,2.354939783173871,0,0,0,66,2,4,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,7,1,0,0,11,4,1,1362.5,0,0,0 +2498,3069,5629,5630,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,8,0,7,31.17853630260625,0,0,0,40,3,3,1,-9,-9,2019,1,1,7,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.71,57.52,6,1,0,0,4,3,0,825.5,0,0,0 +2498,3069,5630,5629,-9,-9,1,1,0,40,1,0,0,0,3,-9,2,1,0,3,8.339059097719177,8.043032556751241,0,1,0,-9,8,0,-7,-40.48563735823583,0,0,1,47,3,3,1,2,3,2019,1,2,12,0,27,18,15,1,2,1,0,13.13589912904399,13.13589912904399,0,0,0,0,0,0,0,0,0,0,1.597303290566592,0,0,0,34.74,55.63,6,1,0,0,4,3,0,825.5,0,0,0 +2498,3070,5631,-9,5630,5629,3,1,0,22,2,0,0,0,2,-9,2,1,0,3,7.608765866665871,7.676826571424528,0,3,0,0,0,-9,0,-1011.667242699362,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,45,40,15,1,1,-9,1,5.43572557461718,5.43572557461718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,53,6,1,0,0,4,3,0,2718,0,0,0 +2499,3071,5632,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,4.320382045518442,5.6470423034585,5.750085937793089,3,0,0,0,-9,0,-1048.125405987198,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,27,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.221580407007526,5.805568862500691,11.45089434264547,3,37.1,16.85,3,1,0,0,8,2,1,156,0,0,0 +2500,3072,5633,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,2,7.788811910965603,7.907392329870412,0,3,0,0,0,-9,0,-1045.276235319331,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,42,15,1,0,-9,0,8.136052633767562,8.136052633767562,0,0,0,0,0,0,0,1,1,0,.453659105734736,0,0,0,62.81,30.81,6,1,0,0,6,4,1,1039,0,0,0 +2501,3073,5634,5635,-9,-9,2,1,1,27,1,0,0,0,2,-9,1,1,0,5,7.643305649542986,8.099729726190022,0,1,0,-9,3,0,1,-24.08422854236143,0,1,0,26,1,4,1,-9,-9,2019,1,1,6,0,40,55,15,1,0,1,0,6.793439729662425,6.793439729662425,0,0,0,0,0,0,0,0,0,0,.0539376046427312,0,0,0,54.1,59.11,7,1,0,0,11,4,1,1139.5,0,0,0 +2501,3073,5635,5634,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.641944295445228,8.174219421573373,0,1,0,-9,3,0,-1,-71.41910567008055,0,1,1,27,2,5,1,-9,-9,2019,1,2,6,0,46,52,15,1,0,1,0,9.74743134790122,9.74743134790122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,5,1,0,0,11,4,1,1139.5,0,0,0 +2502,3074,5636,-9,5638,5637,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.8613970813229,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,386.5,0,0,0 +2502,3074,5637,5638,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,5,9.513273263397478,9.111934394529625,0,2,0,-9,26,0,0,26.94613021384909,0,0,0,47,1,4,1,1,1,2019,1,2,20,7,50,37,15,1,7,1,0,25.82953747756985,25.82953747756985,0,0,0,0,0,0,0,0,0,0,4.13712418265329,0,0,0,32.91,64.79000000000001,6,1,0,0,9,5,1,386.5,0,0,0 +2502,3074,5638,5637,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,4,9.027429112985477,8.523684202650218,0,2,0,-9,26,0,0,-84.17851938461774,0,0,0,47,1,5,1,3,3,2019,1,1,14,3,33,29,15,1,3,1,0,24.09304966493253,24.09304966493253,0,0,0,0,0,0,0,0,0,0,.7978923307168815,0,0,0,46.98,59.35,6,2,0,0,9,5,1,386.5,0,0,0 +2502,3074,5639,-9,5638,5637,3,1,0,17,2,0,2,1,2,0,7,2,0,4,3.423127355804553,3.330433988488545,0,2,0,0,0,-9,0,-915.8446800739371,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,6,2,0,0,9,5,1,386.5,0,0,0 +2503,3075,5640,5642,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,4,8.811701577001221,8.583793362206562,0,2,0,-9,3,0,1,-34.10280043688554,0,0,1,43,1,5,1,2,3,2019,1,2,16,5,37,39,15,1,5,1,0,15.9071189308849,15.9071189308849,0,0,0,0,0,0,0,1,1,0,6.764997925107141,0,0,3,40.77,61.04,3,1,0,0,2,5,1,1046.666666666667,0,0,0 +2503,3075,5641,-9,5640,5642,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-872.370926642511,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,2,5,1,1046.666666666667,0,0,0 +2503,3075,5642,5640,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,5,9.029012662608789,8.923460769237058,0,2,0,-9,3,0,-1,-82.12551816515074,0,0,0,44,1,4,1,-9,-9,2019,1,1,1,0,43,48,15,1,0,1,0,22.16302271735492,22.16302271735492,0,0,0,0,0,0,0,1,1,0,7.051942152751357,0,0,0,62.39,56.71,6,3,0,0,2,5,1,1046.666666666667,0,0,0 +2504,3076,5643,5644,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.47823958964241,7.212884269762943,0,1,0,-9,9,0,-4,-71.92438367245315,0,0,0,57,2,4,3,2,2,2019,2,1,6,0,28,28,15,1,0,4,0,6.922699516879587,6.922699516879587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,9,5,1,426.3333333333333,0,0,0 +2504,3076,5644,5643,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,4,0,9.278795349078731,8.75178249355409,1,0,-9,9,0,4,-140.3310400172487,0,0,0,53,2,4,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.343185774018087,9.189176523794581,0,0,58.15,52.91,6,1,0,0,9,5,1,426.3333333333333,0,0,0 +2504,3076,5645,-9,5643,5644,4,1,0,17,2,0,0,0,2,1,2,3,0,4,5.979592260143275,5.782953123200032,0,1,0,0,0,-9,0,-994.9831433978973,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,11,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4517359598957456,0,0,0,40.48,60.05,4,1,0,0,9,5,1,426.3333333333333,0,0,0 +2504,3077,5646,-9,5643,5644,3,1,0,19,2,0,0,0,2,0,7,2,0,4,6.036434807434916,6.207479181011942,0,3,0,0,0,-9,0,-1008.247774624189,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.283465265527621,0,0,0,39.33,58.88,6,1,0,0,9,2,1,599,0,0,0 +2505,3078,5647,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-933.6986444839675,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.63,36.67,7,1,0,0,9,1,0,337,0,0,0 +2506,3079,5648,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,2,1,0,4,9.528850348656606,9.05046477050719,0,3,0,0,0,-9,0,-952.9954594658199,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,37,37,15,1,4,-9,0,32.26057345122614,32.26057345122614,0,0,0,0,0,0,0,0,0,0,5.158885159810736,0,5.921943429117878,3,41,63.4,3,1,0,0,2,5,0,855,0,0,0 +2507,3080,5649,5652,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,1,8.461961438303323,8.872851925341985,0,2,0,-9,13,0,4,93.08553496772251,0,0,0,33,1,4,1,3,2,2019,1,2,20,8,35,35,15,1,8,1,0,25.33082728984838,25.33082728984838,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.87,54.71,3,1,0,0,2,4,1,719.75,0,0,0 +2507,3080,5650,-9,5652,5649,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.9525438215101,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,719.75,0,0,0 +2507,3080,5651,-9,5652,5649,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.3438854376416,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,719.75,0,0,0 +2507,3080,5652,5649,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,4,8.219598046676051,7.894016069018512,0,2,0,-9,13,0,-4,-48.47498968147633,0,0,1,37,2,1,1,2,2,2019,1,1,8,0,30,35,15,1,0,1,0,13.08630615244932,13.08630615244932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.4,44.31,6,1,0,0,2,4,1,719.75,0,0,0 +2508,3081,5653,5655,-9,-9,2,1,1,30,1,2,2,0,2,-9,2,1,0,2,8.289363957097567,8.519858952974101,0,2,0,-9,3,0,1,87.2705839386084,0,0,0,29,1,3,1,-9,-9,2019,1,1,11,1,38,40,15,1,1,1,0,13.47063658183844,13.47063658183844,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.64,41.11,6,1,0,0,4,4,1,519,0,0,0 +2508,3081,5654,-9,5655,5653,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-993.7483082283295,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,519,0,0,0 +2508,3081,5655,5653,-9,-9,1,1,0,29,1,2,2,0,1,-9,2,1,0,3,8.158030689297057,8.420285736996995,0,2,0,-9,3,0,-1,29.95225947789132,0,1,1,30,2,2,1,-9,-9,2019,1,2,8,1,38,51,15,1,1,1,0,14.34434944696195,14.34434944696195,0,0,0,0,0,0,0,1,1,0,2.821520142764422,0,10.55634900618435,3,51.42,48.12,6,1,0,0,4,4,1,519,0,0,0 +2508,3081,5656,-9,5655,5653,3,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.097768052255,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,519,0,0,0 +2509,3082,5657,5658,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,4,7.311367731619962,9.39916499773844,8.837012998081667,1,0,-9,37,0,-2,168.3550088422461,0,0,0,65,1,3,3,2,2,2019,2,2,8,0,2,0,15,1,0,4,0,137.870884410032,137.870884410032,0,0,0,0,0,0,0,1,1,0,9.924081883958419,8.723923704808822,0,3,51.83,57.2,6,1,0,0,9,5,1,554,0,0,0 +2509,3082,5658,5657,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,36,0,2,-29.62913910369262,0,0,0,63,1,4,1,3,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.62399275349042,0,0,3,38.16,47.36,6,3,0,0,9,5,1,554,0,0,0 +2510,3083,5659,5660,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.15123897973998,7.355142046663955,0,1,0,-9,9,0,-3,98.64572722299705,0,0,0,55,2,1,1,3,3,2019,1,1,12,0,5,23,15,1,0,1,0,31.01602483692278,31.01602483692278,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,41.62,4,1,0,0,13,4,0,1103.5,0,0,0 +2510,3083,5660,5659,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,1,7.92828403672956,7.918059418735339,0,1,0,-9,9,0,3,-57.109665187636,0,0,0,52,2,2,1,3,3,2019,1,2,12,0,13,50,15,1,0,1,0,28.95865006043239,28.95865006043239,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,34.69,4,1,0,0,13,4,0,1103.5,0,0,0 +2510,3084,5661,-9,5659,5660,3,1,0,33,2,0,0,0,1,-9,2,1,0,3,8.313454108452024,8.19182231120304,0,3,0,0,0,-9,0,-931.6040036293863,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,36,15,1,0,-9,1,17.19797248254951,17.19797248254951,0,0,0,0,0,0,0,1,1,0,5.670592807368997,0,0,0,45.49,58.84,6,1,0,0,13,5,0,67,0,0,0 +2510,3085,5662,-9,5659,5660,4,1,1,27,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-799.0727798529782,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,5,1,1,0,13,1,0,371,0,0,0 +2511,3086,5663,5664,-9,-9,1,1,1,46,1,0,0,0,2,-9,8,3,1,2,0,7.690036763491159,7.921708071979189,1,0,-9,9,0,1,17.66889098554661,0,0,0,45,2,5,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.749794601429686,0,0,48.73,30.66,6,1,0,0,12,3,1,594,0,0,0 +2511,3086,5664,5663,-9,-9,2,1,0,45,1,0,0,0,2,-9,1,1,0,5,7.225358126152033,7.504114614540676,0,1,0,-9,9,0,-1,-22.25027455788192,0,0,0,46,2,2,3,2,2,2019,2,1,7,0,18,40,15,1,0,3,0,9.644652324536924,9.644652324536924,0,0,0,0,0,0,0,1,1,0,0,0,0,1,57.06,57.76,6,1,0,0,12,3,1,594,0,0,0 +2511,3087,5665,-9,5664,5663,3,1,0,20,2,0,0,1,2,0,7,2,0,3,6.452631922534435,6.872589103051589,0,3,0,0,0,-9,0,-923.6262833522312,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,16,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.355631434820609,3,38,55.72,6,1,0,0,12,2,1,610,0,0,0 +2512,3088,5666,5667,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,2,7.935405987220413,7.685463808269299,0,1,0,-9,2,0,0,2.775339481653215,0,0,0,50,2,4,1,-9,-9,2019,1,1,15,3,45,80,15,1,3,1,0,6.52923407160609,6.52923407160609,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.91,34.49,4,1,0,1,10,4,1,344.5,0,0,0 +2512,3088,5667,5666,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.822343758712245,7.296764939499106,0,1,0,-9,2,0,0,-.2950502152715775,0,0,0,50,2,2,1,2,2,2019,1,2,21,7,31,30,15,1,7,1,0,6.101366714234996,6.101366714234996,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.67,64.46000000000001,5,1,0,1,10,4,1,344.5,0,0,0 +2513,3089,5668,5671,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,4,9.103745284453238,8.845325468140121,0,2,0,-9,6,0,2,4.173144333041014,0,0,0,33,1,3,1,-9,-9,2019,1,1,10,1,40,40,15,1,1,1,0,23.46419482699008,23.46419482699008,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.1,42.92,7,1,0,0,7,5,1,605.75,0,0,0 +2513,3089,5669,-9,5671,5668,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.819767202885,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,605.75,0,0,0 +2513,3089,5670,-9,5671,5668,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.1914482254278,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,605.75,0,0,0 +2513,3089,5671,5668,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,3,8.310375117639232,8.709561339950625,0,2,0,-9,6,0,-2,28.45564282592604,0,0,1,35,2,4,1,2,2,2019,1,2,13,3,26,19,15,1,3,1,0,24.4127671303432,24.4127671303432,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.21,41.54,4,1,0,0,7,5,1,605.75,0,0,0 +2514,3090,5672,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,3,0,7.221534196819346,7.250763587416176,3,0,-9,0,-9,0,-1004.835499230638,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,9.879822423619508,0,0,0,1,1,0,2.193177195848294,6.844976798203199,0,0,54,46,6,1,0,0,4,2,1,993,0,0,0 +2515,3091,5673,5674,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,7.043056808414663,7.12139618905297,1,0,-9,48,0,-1,-75.11587985008106,0,0,0,70,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.051870209349225,6.854879619691276,0,0,64.64,35.4,6,1,0,0,1,2,1,401,0,0,0 +2515,3091,5674,5673,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,48,0,1,36.95298417083833,0,0,0,69,2,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,1.337451239915447,0,0,0,0,1,1,0,2.388388935407191,0,0,0,46.85,32.5,4,1,0,0,1,2,1,401,0,0,0 +2516,3092,5675,5677,-9,-9,1,1,1,54,1,0,2,0,2,-9,1,1,0,3,5.448412194430184,7.84089715260179,7.747847440728573,2,0,1,1,-9,3,86.19427582469581,0,0,0,51,2,2,3,3,3,2019,2,2,11,2,40,30,15,1,2,3,0,.5608626570978297,.5608626570978297,0,0,0,0,0,0,0,1,1,0,7.039903338476984,7.715036492463532,0,0,44.43,56.74,6,1,0,0,1,3,1,423,0,0,0 +2516,3092,5676,-9,5677,-9,3,1,0,17,2,0,2,1,2,-9,7,2,0,3,0,4.237509597655897,3.825299111086101,2,0,-9,0,-9,0,-1044.883104960678,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.863689323326768,0,0,0,51.55,51.94,6,1,0,0,1,3,1,423,0,0,0 +2516,3092,5677,5675,-9,-9,2,1,0,51,1,0,2,0,2,-9,6,3,0,2,0,7.3979672139523,7.345039226371274,2,0,-9,1,-9,-3,65.54132691824651,-9,0,0,54,2,3,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.305991406108086,7.535382049548269,0,0,45.39,40.29,4,1,0,0,1,3,1,423,0,0,0 +2517,3093,5678,-9,5680,5679,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-911.6330633724675,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,2,0,0,7,3,1,493.3333333333333,0,0,0 +2517,3093,5679,5680,-9,-9,2,1,1,42,1,0,2,0,2,-9,1,1,0,3,8.578184358280579,8.835855465434129,0,2,0,-9,19,0,0,-22.6044283689944,0,0,0,42,2,1,3,-9,-9,2019,2,1,9,1,0,30,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49.04,55.86,6,1,0,0,7,3,1,493.3333333333333,0,0,0 +2517,3093,5680,5679,-9,-9,1,1,0,42,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,19,0,0,-25.38264349829045,0,0,1,42,2,3,1,2,2,2019,3,2,21,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.64,19.88,4,2,0,0,7,3,1,493.3333333333333,0,0,0 +2517,3094,5681,-9,5680,5679,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1054.234815293119,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4589612472361488,0,5.140510521711682,3,37.41,54.5,6,2,0,0,7,3,1,792,0,0,0 +2518,3095,5682,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,6.440489282597442,6.439767121492768,3,0,0,0,-9,0,-1039.874834524328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.068023712892169,6.919645830051179,0,0,57.33,53.46,7,1,0,0,9,2,1,500,0,0,0 +2519,3096,5683,-9,5684,-9,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1034.004816131527,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,6,1,0,587,0,0,0 +2519,3096,5684,-9,-9,-9,1,1,0,29,2,1,2,0,1,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-952.0963342229261,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123.2316631148426,3,38.99,59.25,3,1,0,0,6,1,0,587,0,0,0 +2519,3096,5685,-9,5684,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1048.896701249341,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,1,0,587,0,0,0 +2520,3097,5686,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,5.649545696989196,5.224750451961204,3,0,0,0,-9,0,-1092.5830228418,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.969377828193997,0,0,0,57.24,41.16,6,1,0,0,7,2,1,299,0,0,0 +2521,3098,5687,5688,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,3,8.307173930923765,8.694135436066121,5.900313634827699,1,0,-9,3,0,10,83.84886020359866,0,0,0,57,2,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,15.21794971583634,15.21794971583634,0,0,0,0,0,0,0,1,1,0,0,6.402903404534905,0,0,52,47,5,1,0,0,10,5,0,180.5,0,0,0 +2521,3098,5688,5687,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.107815029219055,7.557135362073177,7.163514743898661,1,0,-9,3,0,-10,43.34975490261208,0,0,0,67,2,3,1,2,2,2019,1,2,7,0,25,34,15,1,0,1,0,7.309365279432131,7.309365279432131,0,0,0,0,0,0,0,1,1,0,5.356784225676732,6.976621738026664,0,0,55.19,54.26,6,1,0,0,10,5,0,180.5,0,0,0 +2522,3099,5689,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,7.502949239560939,7.019302411173341,3,0,0,0,-9,0,-1056.606179906827,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.250744536616041,0,3,51.2,52.31,6,5,0,0,6,3,0,221,0,0,0 +2523,3100,5690,5691,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,4,8.553612389369132,8.562143162955399,0,1,0,-9,22,-9,4,76.96495871509269,-9,0,0,56,3,4,1,3,3,2019,1,1,9,0,35,0,15,1,0,1,0,21.60421337999962,21.60421337999962,0,0,0,0,0,0,0,0,0,0,6.902024681040633,0,0,0,57.16,56.15,6,1,0,0,7,5,1,861.5,0,0,0 +2523,3100,5691,5690,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,4,8.012918866875642,7.908739730844246,0,1,0,-9,13,-9,-4,-60.83432867617533,-9,0,0,60,2,4,1,3,3,2019,1,2,11,0,40,0,15,1,0,1,0,8.106406604930486,8.106406604930486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,7,5,1,861.5,0,0,0 +2524,3101,5692,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,5.363661492186365,5.222945591872334,3,0,0,0,-9,0,-989.8314917741193,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,13.30558533712756,0,0,72.71354322826774,0,175.6910555014138,1,1,0,0,5.316301619323111,0,0,53,44,6,4,0,0,12,2,1,242,0,0,0 +2524,3102,5693,-9,5692,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,3,7.914552345246021,7.563102397252594,0,3,0,0,0,-9,0,-1121.70332585855,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,1,7.925574183671609,7.925574183671609,0,0,0,0,0,0,0,1,1,0,0,0,124.775248580258,3,52,54.51,7,4,0,0,12,3,1,1217,0,0,0 +2525,3103,5694,5695,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,2,8.10826604904392,8.203514134343381,0,1,0,-9,19,0,-12,118.7905175744212,0,0,1,53,2,3,1,3,3,2019,1,2,14,2,38,38,15,1,2,1,0,9.301528947695752,9.301528947695752,0,0,0,0,0,0,0,0,0,0,2.174964531589502,0,5.963085547053138,3,33.46,40.35,4,1,0,0,7,5,1,693,0,0,0 +2525,3103,5695,5694,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.357546478074513,8.627627063289886,0,1,0,-9,19,0,12,-59.54653848631553,0,0,0,41,2,2,1,-9,2,2019,1,1,9,0,42,42,15,1,0,1,0,15.0071459943607,15.0071459943607,0,0,0,0,0,0,0,0,0,0,3.262598579053253,0,0,0,52,54.51,6,1,0,0,7,5,1,693,0,0,0 +2526,3104,5696,-9,-9,-9,2,1,0,58,3,1,1,0,3,-9,4,3,0,4,0,0,0,4,0,0,0,-9,0,-1108.518270686748,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,52,6,3,0,0,8,1,0,640,0,0,0 +2526,3105,5697,-9,5696,-9,3,1,1,23,2,1,1,0,2,-9,2,1,0,4,7.748250066143801,7.588516480264285,0,3,0,0,0,-9,0,-1043.081356052307,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,8,3,0,256,0,0,0 +2526,3106,5698,5699,5696,-9,1,1,1,26,1,1,1,0,2,-9,2,1,0,4,8.199173515111973,7.780251672206584,0,2,0,-9,5,0,-1,17.40076834415542,-9,1,0,27,2,4,3,3,2,2019,2,4,10,0,35,0,15,1,1,3,0,10.0761573849527,10.0761573849527,0,0,0,0,0,0,0,1,1,0,4.926726716258788,0,0,0,50,57,5,3,0,0,8,3,0,436,0,0,0 +2526,3106,5699,5698,-9,-9,4,1,0,27,1,1,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,5,0,1,-212.8745883916736,-9,1,1,26,2,4,1,-9,-9,2019,3,1,16,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.42,36.49,4,3,1,0,8,3,0,436,0,0,0 +2526,3106,5700,-9,5699,5698,5,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.2117678660088,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,436,0,0,0 +2527,3107,5701,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,9.059999173076557,8.795769410826107,0,3,0,0,0,-9,0,-1012.898998316154,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,36,35,15,1,0,-9,0,18.65976295948078,18.65976295948078,0,0,0,0,0,0,0,0,0,0,5.259494652632484,0,0,0,51.24,58.84,5,1,0,0,4,5,1,433,0,0,0 +2528,3108,5702,5703,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,8.10582503558812,7.867860977388832,1,0,-9,53,0,-1,16.27567173849776,0,0,0,77,3,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.751265496039358,8.138569468760272,0,1,46.3,29.03,5,1,0,0,5,3,1,473,0,0,0 +2528,3108,5703,5702,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,4,0,6.050978400137764,6.089681324300103,1,0,-9,53,0,1,270.6998289306684,0,0,0,76,1,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.248471660614515,6.318694692640163,0,0,44.17,55.16,6,1,0,0,5,3,1,473,0,0,0 +2529,3109,5704,-9,-9,-9,1,1,1,96,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-896.3074472039265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,7,-9,0,0,0,1,8.080133917537312,0,7.654958882029399,0,0,53.57732460130033,1,1,0,0,0,0,0,26.84,35.31,5,1,0,0,13,1,0,3445,0,0,0 +2530,3110,5705,-9,5707,5706,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-955.5505462607483,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,5,1,567,0,0,0 +2530,3110,5706,5707,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,4,8.788832732087934,8.836616008736405,0,2,0,-9,2,0,4,38.6344127201456,0,0,0,29,1,5,1,2,2,2019,1,2,8,0,40,47,15,1,0,1,0,19.26273270256265,19.26273270256265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,12,5,1,567,0,0,0 +2530,3110,5707,5706,-9,-9,2,1,0,29,1,1,1,0,1,-9,5,1,0,5,8.728889839251062,8.591020265362422,0,2,0,-9,2,0,-4,-10.37265029823748,0,1,1,33,2,4,1,-9,-9,2019,1,1,9,0,42,40,15,1,0,1,0,14.743708869732,14.743708869732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,6,1,0,0,12,5,1,567,0,0,0 +2531,3111,5708,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,1,0,4.337242918206762,4.008482471499602,3,0,0,0,-9,0,-964.3040810810322,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,6.382788034476448,0,4.318478628216321,0,1,1,0,0,4.334620829868303,0,0,48.87,21.54,5,1,0,0,9,2,1,503,0,0,0 +2532,3112,5709,5710,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,8.380571095545257,8.531622027378891,1,0,-9,7,0,2,107.7490562977828,0,0,0,67,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.23208966199802,8.459023443588091,0,0,60.12,54.8,7,1,0,0,7,4,1,1677,0,0,0 +2532,3112,5710,5709,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,7.212941317228731,7.29089754835414,1,0,-9,7,0,-2,-58.05566186574474,0,0,0,69,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.684597568965855,7.408645248820142,0,0,54.2,57.49,6,1,0,0,7,4,1,1677,0,0,0 +2533,3113,5711,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.095277127606431,8.089937456600241,0,3,0,0,0,-9,0,-1076.14908570884,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,40,15,1,0,-9,0,7.570213501308138,7.570213501308138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,12,3,0,499,0,0,0 +2534,3114,5712,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,3,8.508859576578349,8.570262701223999,0,3,0,0,0,-9,0,-1082.00334213926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,37,37,15,1,3,-9,0,17.18542920565296,17.18542920565296,0,0,0,0,0,0,0,1,1,0,4.089678534007569,0,0,0,54.72,46.41,6,2,0,0,6,5,1,581,0,0,0 +2535,3115,5713,5714,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-2,0,0,0,0,68,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,53.95,6,1,0,0,13,1,0,605.5,0,0,0 +2535,3115,5714,5713,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,47,0,2,0,0,0,0,66,3,3,3,3,2,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,38.55,5,1,0,0,13,1,0,605.5,0,0,0 +2536,3116,5715,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,2,8.367709306321732,8.39396967426662,7.59824424210613,3,0,0,0,-9,0,-910.6266006991777,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,43,37,15,1,1,-9,0,11.48530218159665,11.48530218159665,0,0,0,0,0,0,0,1,1,0,8.500998057209605,7.473774150608869,0,0,55.77,42.25,5,1,0,0,11,5,1,1058,0,0,0 +2537,3117,5716,5717,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,4,8.272356412185433,8.240725901372446,0,2,0,-9,4,0,-2,-99.78853451970652,0,1,1,30,2,4,1,-9,-9,2019,1,2,9,0,40,33,15,1,0,1,0,8.604194397525459,8.604194397525459,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,1,983.6666666666666,0,0,0 +2537,3117,5717,5716,-9,-9,2,1,1,30,1,0,1,0,2,-9,2,1,0,4,8.228059006900427,8.531270561912688,0,2,0,-9,4,0,2,-10.75104009383823,0,0,0,28,2,4,1,-9,-9,2019,1,1,11,0,48,50,15,1,0,1,0,7.643537737069456,7.643537737069456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,6,1,0,0,7,4,1,983.6666666666666,0,0,0 +2537,3117,5718,-9,5716,5717,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.968707923313,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,983.6666666666666,0,0,0 +2538,3118,5719,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-942.1861872431108,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.456360795926818,0,0,0,45.06,36.24,5,1,0,0,9,1,1,1599,0,0,0 +2539,3119,5720,-9,5722,-9,2,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-902.9178452581243,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,2,0,966.6666666666666,0,0,0 +2539,3119,5721,-9,5722,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1023.066131896925,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,2,0,966.6666666666666,0,0,0 +2539,3119,5722,-9,-9,-9,1,1,0,27,2,1,2,0,2,-9,3,3,0,3,0,6.163344101497803,5.976501932017035,4,0,0,0,-9,0,-1057.147440357839,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,8,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.592041293402612,0,3.030341059857149,3,41.79,57.73,6,1,1,0,12,2,0,966.6666666666666,0,0,0 +2540,3120,5723,5724,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,5,0,6.442976581923706,6.804417748174527,1,0,-9,10,0,-2,26.18305514610843,0,0,0,63,1,4,1,-9,-9,2019,1,1,10,0,15,16,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.000665062168205,6.629098649881356,4.389509656507469,3,51.73,58.82,6,1,0,0,2,4,1,1138.5,0,0,0 +2540,3120,5724,5723,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,4,8.289682086700971,8.095841457430645,0,1,0,-9,38,0,2,-90.83669359383944,0,0,0,61,1,5,1,3,3,2019,1,2,8,0,25,30,15,1,0,1,0,17.31887224108971,17.31887224108971,0,0,0,0,0,0,0,0,0,0,4.369923670547402,0,0,3,57.16,56.15,2,1,0,0,2,4,1,1138.5,0,0,0 +2541,3121,5725,-9,5727,5726,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.33435637845,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,0,682.6,0,0,0 +2541,3121,5726,5727,-9,-9,1,1,1,40,1,1,3,0,2,-9,2,1,0,4,8.818150720079283,8.532696187046284,0,2,0,-9,2,0,13,48.09089573536177,0,0,0,27,3,2,3,2,2,2019,2,2,9,0,48,41,15,1,0,3,0,19.48719552071714,19.48719552071714,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,5,1,0,0,2,4,0,682.6,0,0,0 +2541,3121,5727,5726,-9,-9,2,1,0,27,1,1,3,0,3,-9,6,3,0,2,0,0,0,2,0,-9,2,0,-13,-83.61353952048394,0,1,1,40,2,4,1,-9,-9,2019,3,1,13,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.69,33.87,4,1,0,0,2,4,0,682.6,0,0,0 +2541,3121,5728,-9,5727,5726,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.658246323923,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,0,682.6,0,0,0 +2541,3121,5729,-9,5727,5726,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.8767361220803,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,682.6,0,0,0 +2542,3122,5730,5731,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,5,0,6.545691641466972,6.373115490217773,1,0,-9,1,-9,4,13.10758979397271,-9,0,0,69,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.392169104495013,0,0,62.39,56.71,7,1,0,0,1,2,1,821,0,0,0 +2542,3122,5731,5730,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,-4,-112.3871068698125,-9,0,0,73,2,5,3,-9,-9,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,1,0,0,1,2,1,821,0,0,0 +2543,3123,5732,5733,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,3,7.928613042238048,7.949219995904842,0,1,0,-9,2,0,-8,-11.00845436772872,0,0,1,48,2,4,1,3,3,2019,1,4,10,1,37,80,15,1,1,1,0,12.83646885347218,12.83646885347218,0,0,0,0,0,0,0,1,1,0,2.968036527694482,0,0,0,54.37,54.8,6,1,0,0,13,4,1,329.5,0,0,0 +2543,3123,5733,5732,-9,-9,4,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.17533187935245,7.871418495309881,0,1,0,-9,2,0,8,130.3887702785437,0,0,0,40,2,3,1,-9,-9,2019,1,1,9,0,36,38,15,1,1,1,0,8.403329050756208,8.403329050756208,0,0,0,0,0,0,0,1,1,0,2.939636651532705,0,0,0,52,55,6,1,0,0,13,4,1,329.5,0,0,0 +2543,3124,5734,-9,5732,5733,2,1,0,20,2,0,0,1,2,0,7,2,0,4,6.731343899925662,6.718658838946451,0,3,0,0,0,-9,0,-1106.279619426112,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,14,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,13,2,1,1905,0,0,0 +2543,3125,5735,-9,5732,5733,3,1,1,19,2,0,0,0,2,1,2,1,0,3,0,0,0,3,0,0,0,-9,0,-962.8361794045309,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,13,1,1,246,0,0,0 +2544,3126,5736,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-948.7938060644292,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.708589169388707,3,27.64,19.88,2,1,0,0,4,1,0,1197,0,0,0 +2544,3127,5737,-9,-9,-9,2,1,0,19,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1131.340469359328,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.7944955712219,3,43.51,55.11,3,1,1,0,4,1,0,1500,0,0,0 +2545,3128,5738,-9,5740,5741,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1100.818013794887,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,523.25,0,0,0 +2545,3128,5739,-9,5740,5741,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-873.4097564705779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,523.25,0,0,0 +2545,3128,5740,5741,-9,-9,1,1,0,33,1,0,3,0,2,-9,2,1,0,3,8.439339851284508,8.553675641774054,0,2,0,-9,1,-9,-4,-36.4934607496246,-9,0,1,37,2,4,1,2,2,2019,1,2,9,0,37,0,15,1,0,1,0,18.20401084247242,18.20401084247242,0,0,0,0,0,0,0,1,1,0,8.253670673513053,0,1.745117075646884,3,49.16,42.18,6,1,0,0,10,5,1,523.25,0,0,0 +2545,3128,5741,5740,-9,-9,2,1,1,37,1,0,3,0,2,-9,2,1,0,4,9.051883893002403,9.271124386065015,0,2,0,-9,1,-9,4,38.80946479415667,-9,0,0,33,2,3,1,2,2,2019,1,1,10,0,8,0,15,1,0,1,0,117.3177291325983,117.3177291325983,0,0,0,0,0,0,0,1,1,0,8.284587496890477,0,0,0,46.5,58.26,5,1,0,0,10,5,1,523.25,0,0,0 +2546,3129,5742,5743,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,4,8.229854074397748,8.476812428951201,0,1,0,-9,38,0,0,73.51578148542443,0,0,0,56,1,5,1,-9,-9,2019,1,2,23,11,30,28,15,1,11,1,0,13.81222248195173,13.81222248195173,0,0,0,0,0,0,0,0,0,0,1.294241370200294,0,0,0,41,63.4,3,1,0,0,8,5,1,303,0,0,0 +2546,3129,5743,5742,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,5,9.050981958317445,9.148445225495822,0,1,0,-9,38,0,0,133.273154900917,0,0,0,56,1,4,1,2,2,2019,1,1,14,5,45,50,15,1,5,1,0,25.25956340417589,25.25956340417589,0,0,0,0,0,0,0,0,0,0,8.634334589889848,0,0,0,50.86,52.33,5,3,0,0,8,5,1,303,0,0,0 +2546,3130,5744,-9,5743,5742,3,1,1,22,2,0,0,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-899.1433074012023,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,8,0,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.44,64.52,6,2,0,0,8,1,1,879,0,0,0 +2547,3131,5745,-9,-9,-9,1,1,1,81,3,0,0,0,1,-9,3,3,0,4,0,7.746046274269187,7.873253207978549,3,0,0,0,-9,0,-1121.301121897343,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,1,1.218470978277221,0,0,0,0,60.87904887994647,1,1,0,.2685142400879257,7.373952177307306,0,0,59.86,45.35,6,1,1,0,7,3,1,1391,0,0,0 +2548,3132,5746,5747,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.607080703520307,7.232945375862581,1,0,-9,7,0,-8,-17.19491474230823,0,0,0,76,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.888944235070534,7.191028330417232,5.372985588926186,2,51.66,54.88,5,1,0,0,2,2,1,571,0,0,0 +2548,3132,5747,5746,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,8,-70.60027938865575,0,0,0,68,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,43.61003361733778,0,0,0,0,1,1,0,0,0,0,0,54.95,10.49,5,1,0,0,2,2,1,571,0,0,0 +2549,3133,5748,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,2,7.993410709114425,7.793899279461805,0,3,0,0,0,-9,0,-991.4976526372772,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,38,38,15,1,3,-9,0,7.871429284281262,7.871429284281262,0,0,0,0,0,0,0,1,1,0,0,0,74.8694977618519,3,38.04,50.75,4,1,0,0,1,3,1,197,0,0,0 +2549,3134,5749,-9,5748,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.301285214354718,7.069503657313287,0,3,0,0,0,-9,0,-1036.239814663568,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,50,15,1,0,-9,1,3.936341311895543,3.936341311895543,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.23,37.6,6,1,0,0,1,3,1,1574,0,0,0 +2550,3135,5750,5751,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,4,7.805195052990281,8.266307028777916,0,1,0,-9,5,0,-1,-42.08913586255769,0,1,1,30,1,4,1,2,-9,2019,1,2,10,0,35,37,15,1,0,1,0,9.252192885759964,9.252192885759964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.55,60.42,4,1,0,0,4,5,1,1153.5,0,0,0 +2550,3135,5751,5750,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.405134167210461,8.71606764740555,0,1,0,-9,5,0,1,25.84531434731496,0,1,0,29,2,4,1,-9,-9,2019,1,1,10,0,41,41,15,1,1,1,0,18.61862175358113,18.61862175358113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,3,0,0,4,5,1,1153.5,0,0,0 +2551,3136,5752,5753,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,3,8.724241640659713,8.640736534455188,0,1,0,-9,9,0,0,29.4256846914314,0,0,0,66,3,2,3,3,3,2019,2,2,10,0,65,69,15,1,0,4,0,12.30180285409176,12.30180285409176,0,0,0,0,0,0,0,1,1,0,0,0,67.43109902050355,1,48.98,57.22,4,1,0,0,11,4,1,1434,0,0,0 +2551,3136,5753,5752,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,4.210818226777378,4.454687652643645,1,0,-9,9,0,0,3.063103336669738,0,0,0,66,2,3,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,28.87711676040968,0,0,17.24544570540501,0,1,1,0,3.322998348718111,4.274789025593003,0,0,56.59,18.7,6,1,0,0,11,4,1,1434,0,0,0 +2551,3136,5754,-9,-9,5752,3,1,1,17,2,0,0,1,2,0,7,2,0,4,0,0,0,1,0,0,0,-9,0,-938.5692565264831,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.75,67.05,4,1,0,0,11,4,1,1434,0,0,0 +2552,3137,5755,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,3,7.480273380509861,7.419054462023914,0,3,0,0,0,-9,0,-908.5186455802777,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,30,25,15,1,3,-9,0,5.701218038592859,5.701218038592859,0,0,0,0,0,0,0,1,1,0,0,0,1.114596813029752,3,49.87,40.32,6,1,0,0,6,3,0,925,0,0,0 +2553,3138,5756,5758,-9,-9,2,1,0,34,1,2,2,0,1,-9,5,1,0,4,7.249996252260908,7.247519053782176,0,2,0,-9,9,0,-2,53.10677713747194,0,0,1,36,1,4,1,2,1,2019,1,1,9,0,12,13,15,1,0,1,0,14.57803067835567,14.57803067835567,0,0,0,0,0,0,0,0,0,0,2.477948133176395,0,0,0,51.83,57.2,6,1,0,0,7,5,1,809,0,0,0 +2553,3138,5757,-9,5756,5758,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1191.865506216692,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,7,5,1,809,0,0,0 +2553,3138,5758,5756,-9,-9,1,1,1,36,1,2,2,0,1,-9,2,1,0,4,9.887790750738199,9.921231423960604,0,2,0,-9,9,0,2,51.7214488184449,0,0,0,34,1,4,1,2,2,2019,1,2,8,0,60,60,15,1,0,1,0,27.86169243233921,27.86169243233921,0,0,0,0,0,0,0,0,0,0,2.592465546389338,0,0,0,57.16,56.15,6,1,0,0,7,5,1,809,0,0,0 +2553,3138,5759,-9,5756,5758,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1136.58614944749,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,7,5,1,809,0,0,0 +2554,3139,5760,5761,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,9.038812569669089,8.656415972918804,0,1,0,-9,9,0,-3,-35.69940477621342,0,0,0,57,2,4,1,1,2,2019,1,1,6,0,37,41,15,1,0,1,0,25.0323640263119,25.0323640263119,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51.83,57.2,6,1,0,0,7,5,1,766.5,0,0,0 +2554,3139,5761,5760,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,9,0,3,-20.48635445889579,0,0,0,54,1,4,1,2,1,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,7,5,1,766.5,0,0,0 +2555,3140,5762,-9,-9,-9,1,1,1,37,3,0,0,0,1,-9,2,1,0,3,8.436323617154486,8.250854953648615,0,3,0,0,0,-9,0,-944.4435298783184,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,40,0,15,1,1,-9,0,9.639211383403994,9.639211383403994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,45.93,7,4,0,0,8,4,0,1334,0,0,0 +2556,3141,5763,5764,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,51,0,0,-44.25975887416914,0,0,0,76,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.850740624586575,0,0,0,59.14,52.5,6,1,0,0,6,3,1,296,0,0,0 +2556,3141,5764,5763,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,8.128623210012627,7.696684990421494,1,0,-9,51,0,0,-25.06976659442136,0,0,0,76,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.103518968304614,7.684487571314197,0,0,57.16,56.15,6,1,0,0,6,3,1,296,0,0,0 +2557,3142,5765,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,4.606203064783678,4.892602764225694,3,0,0,0,-9,0,-921.027819415929,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,4.975192442974803,0,1,1,0,2.445964891797339,4.613046588242445,0,0,43,40.01,5,1,0,0,5,2,1,810,0,0,0 +2557,3143,5766,-9,-9,-9,2,1,0,65,2,0,0,0,3,-9,4,3,0,4,0,6.767618112827113,7.010847897246455,3,0,0,0,-9,0,-1168.156688267025,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.1003380391665,0,0,52.77,44.6,5,1,0,0,5,2,1,574,0,0,0 +2558,3144,5767,5768,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,49,0,-14,-49.07121148941491,0,0,0,80,2,3,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,37.02808500173833,5.819199346367563,5.673818678893051,3.651320429379381,0,1,1,0,0,0,0,0,31.98,22.06,4,1,0,0,1,2,1,1136,0,0,0 +2558,3144,5768,5767,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,7.006575309280803,7.61003474018591,1,0,-9,49,0,14,60.10115973204856,0,0,0,66,3,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.245798005052883,.7592447286947417,1,51.31,49.39,4,1,0,0,1,2,1,1136,0,0,0 +2559,3145,5769,5770,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.536348781082623,8.368948969048283,5.490711469538902,1,0,-9,36,0,-2,-14.67497456711908,0,0,0,59,2,2,1,3,3,2019,1,1,16,4,48,49,15,1,4,1,0,13.55841435005874,13.55841435005874,0,0,0,0,0,0,0,0,0,0,6.453881162797042,0,0,0,32.17,66.08,3,1,0,0,5,5,1,2198.5,0,0,0 +2559,3145,5770,5769,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.919041654427417,8.770144826188652,0,1,0,-9,36,0,2,-130.90859558182,0,0,0,57,2,4,1,3,3,2019,1,2,13,1,90,44,15,1,1,1,0,7.856912513765096,7.856912513765096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,46.5,6,2,0,0,5,5,1,2198.5,0,0,0 +2560,3146,5771,5772,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.589680791571439,8.541471951978346,0,1,0,-9,31,0,6,2.265986597673279,0,0,0,46,1,3,1,3,2,2019,1,2,15,4,37,37,15,1,4,1,0,14.76120400624722,14.76120400624722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.75,31,3,1,0,0,11,5,1,459.5,0,0,0 +2560,3146,5772,5771,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,3,8.783482074194248,8.477569864827833,0,1,0,-9,31,0,-6,30.75549821149714,0,0,0,52,2,2,1,3,1,2019,1,1,22,9,37,37,15,1,9,1,0,19.41843239426898,19.41843239426898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.9,49.04,2,1,0,0,11,5,1,459.5,0,0,0 +2560,3147,5773,-9,5772,5771,3,1,1,23,2,0,0,0,2,-9,1,1,0,5,7.584812214997116,7.506689445436271,0,3,0,0,0,-9,0,-943.9395270094103,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,37,15,1,0,-9,1,3.518653258197352,3.518653258197352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,4,1,0,1,11,3,1,797,0,0,0 +2561,3148,5774,5775,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,3,8.620552970186756,8.585403665241166,0,1,0,-9,31,0,1,-85.70767084898368,0,0,0,49,3,4,1,-9,-9,2019,1,2,12,0,35,35,15,1,0,1,0,16.56476804183863,16.56476804183863,0,0,0,0,0,0,0,0,0,0,0,0,0,3,56.95,46.69,5,1,0,0,6,5,1,509.5,0,0,0 +2561,3148,5775,5774,-9,-9,2,1,1,49,1,0,0,0,3,-9,2,1,0,4,7.581368496007594,7.594632347963195,0,1,0,-9,31,0,-1,-27.7519957854659,0,0,0,50,2,3,1,2,2,2019,1,1,9,0,30,30,15,1,1,1,0,7.834075780569518,7.834075780569518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,6,5,1,509.5,0,0,0 +2562,3149,5776,5777,5779,-9,2,1,1,48,1,0,1,0,1,-9,1,1,0,4,6.942068587545442,6.999667518356463,0,2,0,-9,7,0,0,21.66220004645039,-9,0,0,48,2,5,1,3,-9,2019,1,1,9,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,4,2,1,1381.666666666667,0,0,0 +2562,3149,5777,5776,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,5,7.422420175393528,7.309111185566314,0,2,0,-9,27,0,0,-88.37993609020333,0,0,0,48,1,4,1,3,2,2019,1,2,9,0,15,37,15,1,0,1,0,9.547296507614563,9.547296507614563,0,0,0,0,0,0,0,1,1,0,0,0,29.06864285301,3,45.96,59.33,7,3,0,0,4,2,1,1381.666666666667,0,0,0 +2562,3149,5778,-9,5777,5776,6,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.76770130517,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,4,2,1,1381.666666666667,0,0,0 +2562,3150,5779,-9,-9,-9,3,1,0,71,3,0,1,0,3,-9,6,3,0,3,0,5.468489321188524,5.72656364825174,4,0,0,0,-9,0,-1086.272726040907,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.298193060930433,0,3,51,46,5,3,0,0,4,2,1,523,0,0,0 +2562,3151,5780,-9,5777,5776,5,1,1,21,2,0,1,0,2,-9,97,3,0,5,0,0,0,3,0,0,0,-9,0,-1058.291590522244,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,3,0,0,4,1,1,944,0,0,0 +2562,3152,5781,5782,-9,-9,7,1,0,29,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,2,0,5,0,0,1,1,24,2,4,3,-9,-9,2019,4,4,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.28572591122951,1,46.16,58.62,7,3,1,0,4,1,1,467.5,0,0,0 +2562,3152,5782,5781,5777,5776,4,1,1,24,1,0,1,0,2,-9,8,3,1,4,0,0,0,2,0,-9,2,0,-5,0,0,1,0,29,3,4,3,1,2,2019,4,7,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,4,1,1,467.5,0,0,0 +2563,3153,5783,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,3,8.28104086677803,8.032607351430244,0,3,0,0,0,-9,0,-1028.516232949359,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,43,41,15,1,0,-9,0,7.984132640135127,7.984132640135127,0,0,0,0,0,0,0,0,0,0,6.881587014559822,0,0,0,41,56.99,5,1,0,0,2,4,1,879,0,0,0 +2564,3154,5784,5785,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,3,9.860491223273138,9.607778960457546,0,2,0,-9,24,0,0,-71.12774016309378,0,0,0,44,1,4,1,2,1,2019,1,2,7,0,50,50,15,1,0,1,0,43.0501754442236,43.0501754442236,0,0,0,0,0,0,0,0,0,0,4.796062208491883,0,0,0,57.33,53.46,6,1,0,0,8,5,1,836.75,0,0,0 +2564,3154,5785,5784,-9,-9,2,1,0,44,1,0,2,0,1,-9,1,1,0,4,5.805677594701123,6.001424619307121,0,2,0,-9,6,0,0,-63.93032524221444,0,0,1,44,1,3,1,-9,-9,2019,1,1,8,0,20,40,15,1,0,1,0,2.402200574038091,2.402200574038091,0,0,0,0,0,0,0,0,0,0,.288085914364292,0,0,0,57.16,56.15,5,1,0,0,8,5,1,836.75,0,0,0 +2564,3154,5786,-9,5785,5784,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.188143947567,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,5,1,836.75,0,0,0 +2564,3154,5787,-9,5785,5784,3,1,1,17,2,0,2,1,2,0,7,2,0,5,5.368160352529647,5.118954873662815,0,2,0,0,0,-9,0,-987.4503643719852,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,6,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,2,1,0,0,8,5,1,836.75,0,0,0 +2565,3155,5788,-9,5789,5790,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1008.712976434052,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,10,4,1,1128,0,0,0 +2565,3155,5789,5790,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,3,7.893436451483422,7.60179089388066,0,2,0,-9,1,-9,0,-18.85004452219329,-9,0,1,37,2,4,1,-9,-9,2019,1,1,14,2,25,0,15,1,2,1,0,10.04486876523617,10.04486876523617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,2,1,0,0,10,4,1,1128,0,0,0 +2565,3155,5790,5789,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,4,8.175369489853326,8.435235982529113,0,2,0,1,1,-9,0,87.16093231703248,0,0,0,37,2,3,1,2,2,2019,1,2,11,2,39,43,15,1,2,1,0,12.14638940433764,12.14638940433764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,51.02,6,1,0,1,10,4,1,1128,0,0,0 +2566,3156,5791,5792,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,3,1.287016468462247,1.480662916027604,0,1,0,-9,8,0,0,9.377201066300731,0,0,0,55,2,4,1,-9,-9,2019,1,2,10,0,45,40,15,1,0,1,0,.0066749201500153,.0066749201500153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,5,1,0,0,11,3,1,1275,0,0,0 +2566,3156,5792,5791,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.918840585267684,8.256648343057103,0,1,0,-9,8,0,0,-5.245839459162845,0,0,0,55,3,3,1,-9,-9,2019,1,1,6,0,36,36,15,1,0,1,0,7.126616012438547,7.126616012438547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,6,1,0,0,11,3,1,1275,0,0,0 +2567,3157,5793,-9,-9,-9,1,1,0,87,2,0,0,0,3,-9,4,3,0,2,0,4.370573771876425,4.598648893945469,3,0,0,0,-9,0,-1026.454354958919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.330499073765215,4.773243824339555,0,0,48.36,28.21,6,1,0,0,2,2,0,1605,0,0,0 +2568,3158,5794,-9,5798,5796,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.601696130828,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,3,1,1280.2,0,0,0 +2568,3158,5795,-9,5798,5796,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.673576967752,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,1280.2,0,0,0 +2568,3158,5796,5798,-9,-9,1,1,1,49,1,0,3,0,2,-9,2,1,0,4,7.178340876611286,7.162985337154517,0,2,0,-9,18,0,10,59.83441309100647,0,0,0,39,2,4,1,3,3,2019,1,2,9,0,35,21,15,1,1,1,0,3.747843658643682,3.747843658643682,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,0,0,8,3,1,1280.2,0,0,0 +2568,3158,5797,-9,5798,5796,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.3183843390757,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,1280.2,0,0,0 +2568,3158,5798,5796,-9,-9,2,1,0,39,1,0,3,0,2,-9,2,1,0,4,8.216380630105695,8.480846291089332,0,2,0,-9,18,0,-10,25.29844111504981,0,0,1,49,2,4,1,3,3,2019,1,1,11,0,30,30,15,1,0,1,0,13.95730985453235,13.95730985453235,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,51.1,6,3,0,0,8,3,1,1280.2,0,0,0 +2569,3159,5799,5800,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,2,8.408519337117262,8.080875110334881,0,1,0,-9,8,0,-3,-89.10350928594906,0,0,1,43,2,3,1,1,2,2019,1,1,27,11,42,42,15,1,11,1,0,8.92945544277279,8.92945544277279,0,0,0,0,0,0,0,0,0,0,1.42721392356696,0,0,0,22.99,61.19,5,1,0,0,4,5,1,977,0,0,0 +2569,3159,5800,5799,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,3,8.966303799461954,8.783981105013874,0,1,0,-9,8,0,3,7.141557286341595,0,0,0,40,2,2,1,2,1,2019,1,2,9,0,48,42,15,1,0,1,0,15.18370484116978,15.18370484116978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,4,5,1,977,0,0,0 +2570,3160,5801,5802,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,2,0,6.258105863506509,6.056403938273908,1,0,-9,6,0,-4,-46.28735874998687,0,0,0,82,3,3,3,3,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.72401194370406,6.100727326175125,0,0,53.02,15.44,7,1,0,0,2,2,1,1710.5,0,0,0 +2570,3160,5802,5801,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,4,-70.4677880177446,0,0,0,78,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,74.24568737986591,1,55,45,6,1,0,0,2,2,1,1710.5,0,0,0 +2571,3161,5803,-9,5805,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1104.676775182438,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,1,0,1010.333333333333,0,0,0 +2571,3161,5804,-9,5805,-9,2,1,0,13,2,1,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-986.7465016796,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,11,1,0,1010.333333333333,0,0,0 +2571,3161,5805,-9,-9,-9,1,1,0,32,2,1,2,0,2,-9,8,3,1,1,0,0,0,4,0,-9,0,0,0,-985.2797524899203,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5.17,48.27,1,1,0,0,11,1,0,1010.333333333333,0,0,0 +2572,3162,5806,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.171503927885567,6.77401434761877,0,3,0,0,0,-9,0,-1113.994520143506,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,22,22,15,1,0,-9,0,9.578975142379923,9.578975142379923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.5,37.35,5,1,0,0,9,3,1,1106,0,0,0 +2573,3163,5807,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,2,8.442262563033809,8.28691920445185,0,3,0,0,0,-9,0,-1130.009350809097,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,44,15,1,0,-9,0,13.4393392643516,13.4393392643516,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.23,49.99,4,1,0,0,6,4,0,589,0,0,0 +2574,3164,5808,-9,-9,-9,1,1,0,45,2,0,1,0,3,-9,2,1,0,2,7.892396254366927,8.193426488614032,5.550729707551311,4,0,0,0,-9,0,-1007.249027249466,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,46,40,15,1,8,-9,0,6.604286746201193,6.604286746201193,0,0,0,0,0,0,0,1,1,0,5.621028360555735,0,0,0,22.15,49.49,3,1,0,1,6,3,0,269.5,0,0,0 +2574,3164,5809,-9,5808,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1111.225002974069,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.86,59.06,5,1,0,0,6,3,0,269.5,0,0,0 +2575,3165,5810,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1177.986840761317,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,14.84754065592916,0,0,0,1,1,0,0,0,0,0,41.14,32.77,5,1,0,0,12,1,1,255,0,0,0 +2576,3166,5811,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-934.1939871641787,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.4555470029313,3,39.15,41.42,5,1,0,0,11,1,0,277,0,0,0 +2576,3167,5812,-9,5811,-9,3,1,0,23,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-965.8997961351886,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,59,5,1,0,0,11,1,0,915,0,0,0 +2577,3168,5813,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,6.981963855087832,7.002144667809098,3,0,0,0,-9,0,-893.5439067334113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.853255438218324,0,0,0,0,79.01324880301621,1,1,0,4.811918235469951,7.187710902285023,0,0,58.49,25.92,7,1,0,0,10,2,1,2733,0,0,0 +2578,3169,5814,-9,-9,-9,1,1,0,40,3,0,0,0,2,-9,2,1,0,3,8.574649731582308,8.481154439040045,0,3,0,0,0,-9,0,-990.9131568547114,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,14.13745422115258,14.13745422115258,0,0,0,0,0,0,0,0,0,0,1.664434197603529,0,0,0,55.96,49.93,6,1,0,0,9,5,1,410,0,0,0 +2579,3170,5815,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,2,1,0,3,7.41165350755664,7.727620762657134,0,3,0,0,0,-9,0,-912.8157296836071,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,4,35,30,15,1,4,-9,0,5.491823139379053,5.491823139379053,0,0,0,0,0,0,0,0,0,0,1.340725305916102,0,0,0,40.86,46.26,7,1,0,0,12,3,0,2079,0,0,0 +2580,3171,5816,-9,-9,-9,1,1,0,33,3,0,0,0,1,-9,2,1,0,4,9.197803475614482,8.919947386227243,0,3,0,0,0,-9,0,-922.3181070877323,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,17,5,40,37,15,1,5,-9,0,23.16856539719035,23.16856539719035,0,0,0,0,0,0,0,0,0,0,2.70075535238346,0,0,0,34.3,61.38,6,1,0,0,9,5,0,152,0,0,0 +2581,3172,5817,-9,-9,-9,1,1,0,42,3,0,0,0,3,-9,2,1,0,3,7.213751425487775,7.146433856505229,3.358595900214669,3,0,0,0,-9,0,-977.2892782636115,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,26,21,15,1,2,-9,0,5.90419731111794,5.90419731111794,0,0,0,0,0,0,0,1,1,0,3.837122533435607,0,16.63587832167403,3,55.12,44.8,4,1,0,1,6,3,0,853.5,0,0,0 +2581,3172,5818,-9,5817,-9,2,1,0,17,2,0,0,0,3,1,2,3,0,5,4.81308537122705,4.815245850477741,0,3,0,0,0,-9,0,-1120.715373594273,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,1,4,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.920012700288055,3,56.73,49.76,7,1,0,0,6,3,0,853.5,0,0,0 +2582,3173,5819,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,2,8.396367886310617,8.25562403072696,0,3,0,0,0,-9,0,-960.943807073729,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,45,45,15,1,0,-9,0,12.17516475492396,12.17516475492396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.98,51.33,4,1,0,0,6,4,1,341,0,0,0 +2583,3174,5820,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,4,7.984633624225518,7.859143127290561,0,3,0,0,0,-9,0,-993.8534752400371,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,25,35,15,1,1,-9,0,10.9841949061774,10.9841949061774,0,0,0,0,0,0,0,0,0,0,.9085987688933316,0,0,3,33.49,64.26000000000001,6,1,0,0,10,3,0,224,0,0,0 +2583,3175,5821,-9,-9,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,5,8.067371149150361,8.125597560051098,0,1,0,-9,2,0,0,226.3504294355535,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,3,11,0,22,30,15,1,0,-9,0,13.03443145424125,13.03443145424125,0,0,0,0,0,0,0,0,0,0,7.393484557574403,0,0,0,54.1,59.11,6,1,0,0,10,5,0,593,0,0,0 +2583,3176,5822,-9,-9,-9,3,1,0,27,2,0,0,0,1,-9,2,1,0,5,8.585645582281051,8.416133603259613,0,1,0,-9,2,0,0,80.33468367992552,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,2,5,0,42,42,15,1,0,-9,0,14.80169940990654,14.80169940990654,0,0,0,0,0,0,0,0,0,0,2.294428426668986,0,0,0,62.39,56.71,7,1,0,0,10,5,0,960,0,0,0 +2583,3177,5823,-9,-9,-9,4,1,0,27,2,0,0,0,1,-9,2,1,0,3,7.983642173936132,7.805341892604678,0,3,0,0,0,-9,0,-1108.935252198115,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,11,37,38,15,1,11,-9,0,9.498707657382511,9.498707657382511,0,0,0,0,0,0,0,0,0,0,1.165261513059162,0,0,0,21.33,57.7,2,2,0,0,10,4,0,246,0,0,0 +2584,3178,5824,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,1,1,0,5,8.115239063804749,8.178574978852382,0,3,0,0,0,-9,0,-1006.480597004941,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,59,15,1,0,-9,0,11.38511528300212,11.38511528300212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.19,59.15,6,1,0,0,10,4,0,360,0,0,0 +2585,3179,5825,-9,5826,5827,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.7056778705978,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,6,5,1,942.75,0,0,0 +2585,3179,5826,5827,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.714973215836821,8.456220177682658,0,2,0,-9,13,0,-3,28.64225050859186,-9,0,1,39,1,4,1,2,1,2019,1,2,11,0,28,0,15,1,0,1,0,18.35335947795368,18.35335947795368,0,0,0,0,0,0,0,1,1,0,0,0,120.9227458718542,3,49.52,55.68,5,3,0,0,6,5,1,942.75,0,0,0 +2585,3179,5827,5826,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,4,9.776077651493685,9.507410744975585,0,2,0,-9,13,0,3,10.37945235308041,-9,0,0,36,1,4,1,2,1,2019,1,1,11,1,47,0,15,1,1,1,0,38.76437646775457,38.76437646775457,0,0,0,0,0,0,0,1,1,0,0,0,32.33271231583178,3,57.08,36.15,5,3,0,0,6,5,1,942.75,0,0,0 +2585,3179,5828,-9,5826,5827,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.108863645059,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,6,5,1,942.75,0,0,0 +2586,3180,5829,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,4,0,5.918191483715432,6.195376023984658,3,0,0,0,-9,0,-950.8156169119559,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.751598889309965,6.237816659669795,0,0,54.79,55.86,1,1,0,0,7,2,0,228,0,0,0 +2587,3181,5830,5831,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.16988272202965,7.880531598975669,0,1,0,-9,6,0,-8,-5.531423117367566,0,0,0,56,2,4,1,3,3,2019,1,1,16,4,36,36,15,1,4,1,0,9.931648178484876,9.931648178484876,0,0,0,0,0,0,0,1,1,0,0,0,13.42296430733722,3,52.88,43.27,6,1,0,0,13,4,1,1071.5,0,0,0 +2587,3181,5831,5830,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,7.409209936373908,7.433439131590255,0,1,0,-9,6,0,8,48.55721003569786,0,0,0,48,2,3,1,-9,-9,2019,1,2,9,0,46,38,15,1,0,1,0,5.33026159224239,5.33026159224239,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,13,4,1,1071.5,0,0,0 +2587,3182,5832,-9,5830,5831,3,1,1,23,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-1113.847416182349,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,30.45,4,1,1,0,13,1,1,666,0,0,0 +2588,3183,5833,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,5,8.746049170993054,8.502218574452849,0,3,0,0,0,-9,0,-923.6009590542594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,42,15,1,0,-9,0,18.11891940972775,18.11891940972775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,2,5,1,583,0,0,0 +2589,3184,5834,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,3,0,7.568180822236912,7.204587371133104,3,0,0,0,-9,0,-978.0468690794538,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,5.772093078557186,0,0,0,0,14.52286507578868,1,1,0,6.771783806944054,7.448006795297968,3.545157231160979,3,52.65,35.05,6,1,0,0,10,3,1,690,0,0,0 +2590,3185,5835,5836,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,4.838170116819819,4.553486950289122,1,0,-9,44,0,0,41.38400249344084,0,0,0,62,1,3,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.401193242346986,4.760541274370286,0,0,57.16,56.15,7,1,0,0,5,4,1,777.5,0,0,0 +2590,3185,5836,5835,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,3,8.698990815043068,8.503634017482364,6.979332745384675,1,0,-9,34,0,0,-117.6782877766473,0,0,0,62,2,4,3,-9,2,2019,2,2,8,0,37,37,15,1,0,4,0,17.87290880512041,17.87290880512041,0,0,0,0,0,0,0,0,0,0,4.46359002777743,7.114009818184725,0,0,61.19,36.58,6,1,0,0,5,4,1,777.5,0,0,0 +2591,3186,5837,5838,-9,-9,1,1,1,45,1,0,1,0,2,-9,1,1,0,4,7.860880032725087,7.642376068787824,0,2,0,-9,7,0,2,114.2027740904416,0,0,0,43,1,4,1,-9,-9,2019,1,2,10,0,60,50,15,1,0,1,0,4.298837030210553,4.298837030210553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,12,3,1,323.5,0,0,0 +2591,3186,5838,5837,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,4,7.752479803171682,7.894029452452293,0,2,0,-9,7,0,-2,-80.83122317636673,0,0,1,45,2,4,1,2,-9,2019,1,1,10,0,68,30,15,1,0,1,0,5.132756574683804,5.132756574683804,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,3,1,323.5,0,0,0 +2591,3186,5839,-9,5838,5837,3,1,0,17,2,0,1,1,2,0,7,2,0,3,5.794535439553952,5.962728258096451,0,2,0,0,0,-9,0,-956.6241145293245,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,11,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.162293623233546,0,0,0,53.98,50.87,6,1,0,0,12,3,1,323.5,0,0,0 +2591,3186,5840,-9,5838,5837,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.351576971617,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,323.5,0,0,0 +2592,3187,5841,5842,-9,-9,1,1,0,47,1,0,0,0,3,-9,2,1,0,3,8.450935795418847,8.062060024569748,0,1,0,-9,3,0,0,1.117698939352616,0,0,0,47,3,4,1,2,2,2019,1,2,19,6,39,37,15,1,6,1,0,16.403115348198,16.403115348198,0,0,0,0,0,0,0,0,0,0,7.265645500582227,0,0,0,29.03,58.4,3,1,0,0,8,5,1,636.5,0,0,0 +2592,3187,5842,5841,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,4,8.658598794848011,8.250270824546419,0,1,0,-9,3,0,0,-141.9399462741908,0,0,0,47,3,3,1,-9,-9,2019,1,1,10,1,45,40,15,1,1,1,0,10.16296606610661,10.16296606610661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,52.44,6,1,0,0,8,5,1,636.5,0,0,0 +2592,3188,5843,-9,5841,5842,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.802001604878898,8.745416483658873,0,3,0,0,0,-9,0,-942.9751363638766,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,45,15,1,1,-9,1,16.87334760076752,16.87334760076752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,8,5,1,552,0,0,0 +2593,3189,5844,5846,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,3,7.323339054154241,7.146113939522507,0,2,0,-9,8,-9,7,-85.2479201127493,-9,0,0,30,1,4,2,2,2,2019,2,2,17,6,24,0,15,1,6,2,0,7.600782294454581,7.600782294454581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.08,45.59,5,5,0,1,11,2,0,785.75,0,0,0 +2593,3189,5845,-9,5846,5844,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1016.626386177141,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,5,0,0,11,2,0,785.75,0,0,0 +2593,3189,5846,5844,-9,-9,2,1,0,30,1,0,2,0,1,-9,7,2,0,4,0,0,0,2,0,-9,8,-9,-7,43.77900360932305,-9,0,1,37,1,3,1,1,1,2019,3,1,25,11,0,0,15,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.4,49.86,5,5,0,1,11,2,0,785.75,0,0,0 +2593,3189,5847,-9,5846,5844,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1005.329826769203,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,5,0,0,11,2,0,785.75,0,0,0 +2594,3190,5848,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,5,6.627440505192224,6.945516841613526,0,3,0,0,0,-9,0,-1030.69524599863,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,16,16,15,1,6,-9,0,6.741089975835087,6.741089975835087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,62.85,4,1,0,0,2,2,1,558,0,0,0 +2595,3191,5849,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,2,0,7.22198543045447,7.031908149060244,3,0,0,0,-9,0,-1013.643012257161,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.919629634908878,7.228722914656524,0,3,63.22,37.55,6,1,0,0,7,3,1,592,0,0,0 +2596,3192,5850,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,5,8.296990967713779,8.447912354945275,3.852907877931191,3,0,-9,0,1,0,-888.9255605656338,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,43,15,1,0,-9,0,13.82254543494433,13.82254543494433,0,0,0,0,0,0,0,0,0,0,4.860796863077991,0,0,0,57.06,57.76,7,1,0,0,5,5,1,138,0,0,0 +2596,3193,5851,-9,5850,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,5,8.145397849693913,7.74909280689434,0,3,0,0,0,-9,0,-1175.03949632892,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,38,36,15,1,0,-9,1,9.980970487763145,9.980970487763145,0,0,0,0,0,0,0,0,0,0,.4892511629561782,0,0,0,57.06,57.76,7,1,0,0,5,4,1,253,0,0,0 +2597,3194,5852,-9,-9,-9,1,1,0,40,2,0,1,0,3,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-993.9596879606012,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,26,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.87,35.63,4,1,1,0,5,1,0,1273,0,0,0 +2597,3194,5853,-9,5852,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1038.935370029401,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.246512890364249,3,32.08,58.42,6,1,0,0,5,1,0,1273,0,0,0 +2598,3195,5854,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,4,9.20851701663719,9.491813796458681,0,3,0,0,0,-9,0,-958.8545610928475,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,40,46,15,1,0,-9,0,31.18122528001974,31.18122528001974,0,0,0,0,0,0,0,0,0,0,7.562035260387092,0,0,0,49.91,58.02,6,1,0,0,8,5,1,325,0,0,0 +2599,3196,5855,-9,5858,5860,6,1,1,10,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1001.884658516347,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,5,1,0,0,7,5,1,446.6666666666667,0,0,0 +2599,3196,5856,-9,5858,5860,5,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.088173557567,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,446.6666666666667,0,0,0 +2599,3196,5857,-9,5858,5860,4,1,1,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1001.427556717104,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,1,0,0,7,5,1,446.6666666666667,0,0,0 +2599,3196,5858,5860,-9,-9,1,1,0,49,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,19,0,0,-2.902533204417413,0,0,0,49,1,4,1,2,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.192634748763195,0,0,0,57.16,56.15,6,1,0,0,7,5,1,446.6666666666667,0,0,0 +2599,3196,5859,-9,5858,5860,3,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.88107643513,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,7,5,1,446.6666666666667,0,0,0 +2599,3196,5860,5858,-9,-9,2,1,1,49,1,0,4,0,1,-9,1,1,0,4,9.647546305747289,9.460182651104097,0,2,0,-9,8,0,0,77.43878366960361,0,0,0,49,2,4,3,-9,-9,2019,2,1,8,0,65,40,15,1,0,3,0,28.23307386092646,28.23307386092646,0,0,0,0,0,0,0,0,0,0,5.955783322006038,0,0,0,52.23,55.6,6,1,0,0,7,5,1,446.6666666666667,0,0,0 +2600,3197,5861,-9,5862,5863,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.527689335619979,8.355921897318938,0,3,0,0,0,-9,0,-996.9547145443013,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,0,15,1,2,-9,1,14.97428096704982,14.97428096704982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,9,4,0,321,0,0,0 +2600,3198,5862,5863,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.963327714559597,8.595987539940994,0,1,0,-9,7,0,-4,-50.06021787012725,0,0,0,60,2,5,1,3,3,2019,1,3,9,0,36,38,15,1,0,1,0,23.1017908230654,23.1017908230654,0,0,0,0,0,0,0,0,0,0,.6818040119178579,0,0,0,51.83,57.2,2,1,0,0,9,5,0,703,0,0,0 +2600,3198,5863,5862,-9,-9,3,1,1,60,1,0,0,0,2,-9,2,1,0,5,8.755277490358406,8.558645819843855,0,1,0,-9,7,0,4,46.74414915512038,0,0,0,56,2,4,1,-9,-9,2019,1,1,10,0,45,43,15,1,0,1,0,19.34831788071335,19.34831788071335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,5,1,0,0,9,5,0,703,0,0,0 +2601,3199,5864,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,4,8.192879144718587,8.323298491456812,0,3,0,0,0,-9,0,-958.5433960257097,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,43,40,15,1,0,-9,0,9.871958160590109,9.871958160590109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,8,4,0,114,0,0,0 +2602,3200,5865,5866,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,7.99708066196809,8.102227699529065,1,0,-9,11,0,1,74.67207754756492,0,0,0,76,1,4,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,0,.6873850366668031,0,0,0,0,1,1,0,5.284616863781112,8.259421794617294,0,0,48.9,31.88,7,1,0,0,8,4,1,1166.5,0,0,0 +2602,3200,5866,5865,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,4,0,7.100001426756743,7.127784793292636,1,0,-9,55,0,-1,-164.0216875161371,0,0,0,77,2,2,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.426568939573277,7.279112043179702,0,0,62.49,55.09,7,1,0,0,8,4,1,1166.5,0,0,0 +2603,3201,5867,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-930.736356301604,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.97,22.78,3,1,0,0,9,1,0,87,0,0,0 +2604,3202,5868,5869,-9,-9,2,1,1,42,1,0,0,0,3,-9,3,3,0,3,8.073363616765601,8.331881330617867,0,1,0,-9,4,0,12,-70.42674561951431,0,0,0,30,2,3,1,-9,-9,2019,3,1,12,1,0,39,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.81,55.69,4,1,1,0,9,4,0,719.5,0,0,0 +2604,3202,5869,5868,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,3,7.510373943871684,7.846605359669855,0,1,0,-9,4,0,-12,-174.7106147891847,0,0,1,42,3,3,3,3,3,2019,2,2,23,9,39,39,15,1,9,3,0,6.168832613603914,6.168832613603914,0,0,0,0,0,0,0,0,0,0,0,0,11.808415120361,2,35.78,55.1,3,1,0,0,9,4,0,719.5,0,0,0 +2605,3203,5870,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,2,7.631086865277427,7.914962942119607,0,3,0,0,0,-9,0,-881.5031214976324,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,18,17,15,1,2,-9,0,19.27494483435929,19.27494483435929,0,0,0,0,0,0,0,0,0,0,3.324286457601304,0,0,0,54.85,28.19,4,1,0,0,8,3,1,794,0,0,0 +2606,3204,5871,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-988.9365621485242,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.05,43.64,4,1,0,0,1,1,0,2520.5,0,0,0 +2606,3204,5872,-9,5871,-9,2,1,0,3,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1070.300369246432,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,1,1,0,2520.5,0,0,0 +2607,3205,5873,5875,-9,-9,2,1,0,39,1,0,1,0,3,-9,2,1,0,4,7.690820618193232,7.605308033874852,0,2,0,-9,16,0,-2,-9.503442696350014,0,0,1,41,2,3,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,7.030873274875489,7.030873274875489,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.72,50.36,6,1,0,0,13,4,1,1358.333333333333,0,0,0 +2607,3205,5874,-9,5873,5875,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.3152919612861,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,1358.333333333333,0,0,0 +2607,3205,5875,5873,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,3,8.567487557128507,8.512394604535654,0,2,0,-9,16,0,2,-53.54702421093478,0,0,0,39,3,4,1,2,2,2019,1,2,12,0,46,50,15,1,0,1,0,9.772646319426187,9.772646319426187,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.94,5,1,0,0,13,4,1,1358.333333333333,0,0,0 +2608,3206,5876,5877,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,4,8.582335140196932,8.565751788326434,6.79361414722735,1,0,-9,37,0,0,57.36378652569687,0,0,0,61,2,4,1,2,3,2019,1,2,9,0,30,20,15,1,0,1,0,16.85030839378226,16.85030839378226,0,0,0,0,0,0,0,0,0,0,6.415999896545033,6.707418628386067,9.031571076237373,3,54.2,57.49,6,1,0,0,5,4,1,721.5,0,0,0 +2608,3206,5877,5876,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,7.276136081317098,7.418584878044653,5.125539416285104,1,0,-9,37,0,0,158.378710711593,0,0,0,61,1,4,1,3,2,2019,1,1,8,0,21,20,15,1,0,1,0,6.400969773909832,6.400969773909832,0,0,0,0,0,0,0,0,0,0,4.923232126134563,5.088803088133447,0,3,57.16,56.15,6,1,0,0,5,4,1,721.5,0,0,0 +2609,3207,5878,5879,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,4,9.257922257907635,9.401437284317891,0,1,0,-9,9,0,3,90.20446305460655,0,0,0,32,1,4,1,-9,-9,2019,1,1,9,1,53,52,15,1,1,1,0,28.92207348441563,28.92207348441563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,9,5,1,544,0,0,0 +2609,3207,5879,5878,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.922190767761469,8.950159127606252,0,1,0,-9,9,0,-3,8.151970943194078,0,0,1,35,1,4,1,1,2,2019,1,2,13,2,58,60,15,1,2,1,0,14.991517146653,14.991517146653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,9,5,1,544,0,0,0 +2610,3208,5880,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,4.493675208050248,4.453763402041089,3,0,0,0,-9,0,-968.6532039019932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.338412961261791,0,0,59.31,49.81,7,1,0,0,5,2,1,193,0,0,0 +2611,3209,5881,-9,5882,-9,3,1,0,16,2,0,1,0,3,-9,8,2,1,4,2.851638408098233,2.759112643704198,0,4,0,0,0,-9,0,-967.7626670844805,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,7,1,1,465.5,0,0,0 +2611,3209,5882,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1059.769142274963,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.6583418391782,3,38.37,42.37,4,1,0,0,7,1,1,465.5,0,0,0 +2611,3210,5883,-9,5882,-9,2,1,0,18,2,0,1,0,2,1,2,1,0,4,7.511024171974037,7.550690031697489,0,3,0,0,0,-9,0,-887.5548760639437,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,14,0,15,1,2,-9,1,14.88695967322366,14.88695967322366,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,7,3,1,606,0,0,0 +2612,3211,5884,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1022.586206784907,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,36.95,6,1,0,1,2,1,0,221,0,0,0 +2613,3212,5885,5886,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,3,6.309087632618611,6.221212949125768,0,1,0,-9,33,0,-1,19.86388351580991,0,0,0,53,2,3,1,2,2,2019,1,1,8,0,8,8,15,1,0,1,0,6.342822270068569,6.342822270068569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.62,46.84,6,1,0,0,4,4,0,734,0,0,0 +2613,3212,5886,5885,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.864703082648205,8.894593711266307,0,1,0,-9,33,0,1,-110.2499061452429,0,0,0,52,3,3,1,3,-9,2019,1,2,5,0,38,38,15,1,0,1,0,25.86704547863396,25.86704547863396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.07,46.29,5,1,0,0,4,4,0,734,0,0,0 +2613,3213,5887,-9,5885,5886,5,1,1,21,2,0,0,0,2,-9,2,1,0,3,8.288225662197403,8.421805017258531,0,3,0,0,0,-9,0,-994.6567581672601,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,39,40,15,1,0,-9,1,14.38832192052281,14.38832192052281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,4,4,0,353,0,0,0 +2614,3214,5888,5889,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,7.476393048512303,8.311851102814664,7.729047514833159,1,0,-9,4,0,4,38.29740247657964,0,0,0,54,2,3,1,-9,-9,2019,1,1,8,0,19,0,15,1,0,1,0,8.588713720873974,8.588713720873974,0,0,0,0,0,0,0,0,0,0,0,7.653635677691899,0,0,60.29,52.11,6,1,0,0,9,4,1,611,0,0,0 +2614,3214,5889,5888,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.479959950213105,7.814080418000637,0,1,0,-9,4,0,-4,62.72635875142728,0,0,0,58,2,3,1,3,-9,2019,1,2,13,3,37,40,15,1,3,1,0,9.43550014672142,9.43550014672142,0,0,0,0,0,0,0,0,0,0,0,0,5.029463693804118,3,37.07,46.09,6,1,0,0,9,4,1,611,0,0,0 +2615,3215,5890,5891,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,5,7.970339235667202,8.206842170529296,0,1,0,-9,6,0,-2,3.60761383296894,0,0,0,53,2,4,1,2,2,2019,1,2,5,0,38,37,15,1,0,1,0,9.876256982114624,9.876256982114624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,1,233.5,0,0,0 +2615,3215,5891,5890,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,6.625829945652204,6.161555507668288,0,1,0,-9,6,0,2,31.92950977859987,0,0,0,51,1,5,1,3,3,2019,1,1,8,0,12,14,15,1,0,1,0,6.199239314674062,6.199239314674062,0,0,0,0,0,0,0,0,0,0,2.581976424173891,0,4.372515262728069,3,37.42,60.49,6,1,0,0,13,3,1,233.5,0,0,0 +2616,3216,5892,5893,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,3,8.471735052345821,7.996186168891868,0,1,0,-9,41,0,1,-12.71717318225422,0,0,0,58,2,5,3,3,3,2019,2,2,6,0,50,60,15,1,0,4,0,7.230133699073049,7.230133699073049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.5,48.26,6,1,0,0,10,3,1,889,0,0,0 +2616,3216,5893,5892,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,41,0,-1,56.6458353690599,0,0,0,59,2,3,1,2,3,2019,3,1,1,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.914288699348873,0,13.60054655258149,3,62.39,56.71,7,1,0,0,10,3,1,889,0,0,0 +2617,3217,5894,-9,-9,-9,1,1,0,41,3,0,0,0,2,-9,2,1,0,3,9.663743856120421,9.684142415495129,0,3,0,0,0,-9,0,-1010.919223582478,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,50,15,1,0,-9,0,37.06697379321455,37.06697379321455,0,0,0,0,0,0,0,0,0,0,6.907055960266989,0,0,0,49.04,55.86,5,1,0,0,8,5,0,395,0,0,0 +2618,3218,5895,-9,5897,5896,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-952.5478471414908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,2,1,383.5,0,0,0 +2618,3218,5896,5897,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,3,7.39783041087519,7.391942335904138,0,2,0,-9,1,-9,0,192.0070756658511,-9,0,0,39,2,4,3,3,3,2019,2,2,19,7,16,0,15,1,7,3,0,10.18507398032698,10.18507398032698,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.69,58.7,4,1,0,0,11,2,1,383.5,0,0,0 +2618,3218,5897,5896,-9,-9,2,1,0,39,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,0,-87.23489673729912,-9,0,1,39,2,3,1,-9,3,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,11,2,1,383.5,0,0,0 +2618,3218,5898,-9,5897,5896,3,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1019.240538863602,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,11,2,1,383.5,0,0,0 +2619,3219,5899,-9,5901,5900,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.1008066759432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,3,0,0,8,1,0,686,0,0,0 +2619,3219,5900,5901,-9,-9,1,1,1,42,1,0,3,0,2,-9,1,1,0,2,0,0,0,2,0,-9,18,0,3,0,0,0,0,39,2,3,3,3,1,2019,2,2,8,1,0,40,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.85,46.53,5,3,0,0,8,1,0,686,0,0,0 +2619,3219,5901,5900,-9,-9,2,1,0,39,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,18,0,-3,0,0,0,1,42,2,2,1,3,2,2019,3,1,12,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.72,45.55,5,3,1,0,8,1,0,686,0,0,0 +2619,3219,5902,-9,5901,5900,3,1,0,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1024.532251920993,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,5,3,0,0,8,1,0,686,0,0,0 +2619,3220,5903,-9,5901,5900,4,1,1,18,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-890.5656463799361,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.09,45.2,2,3,0,0,8,1,0,896,0,0,0 +2620,3221,5904,5905,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,5,8.408904518878829,8.330636335842355,0,1,0,-9,4,0,-1,-32.32799227601534,0,1,0,29,1,3,1,2,-9,2019,1,2,12,3,40,44,15,1,3,1,0,10.78182225616576,10.78182225616576,0,0,0,0,0,0,0,0,0,0,1.149588833560744,0,0,0,49.25,61.25,6,1,0,0,1,4,1,2197.5,0,0,0 +2620,3221,5905,5904,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,3,8.076263470216267,8.415443900376207,0,1,0,-9,4,0,1,8.091895806027599,0,0,1,28,2,5,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,8.416413672406616,8.416413672406616,0,0,0,0,0,0,0,0,0,0,2.534185744900793,0,0,0,44.25,56.64,6,1,0,0,1,4,1,2197.5,0,0,0 +2621,3222,5906,5907,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,7.714438260450678,7.57995470299866,1,0,-9,8,0,12,-87.49942806624418,0,0,0,72,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.834260729024719,7.729600532230317,.6847466058233251,1,51.64,50.48,5,1,0,0,11,3,1,205,0,0,0 +2621,3222,5907,5906,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,5.565815859780429,5.804277736390003,1,0,-9,8,0,-12,115.4172018485101,0,0,0,84,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.070868083734327,0,0,57.16,56.15,7,1,0,0,11,3,1,205,0,0,0 +2622,3223,5908,-9,5909,-9,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-987.1548340218467,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,2017.666666666667,0,0,0 +2622,3223,5909,-9,-9,-9,1,1,0,44,2,0,2,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-976.4548313654878,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.16579990783097,3,62.49,55.09,2,1,0,0,9,1,0,2017.666666666667,0,0,0 +2622,3223,5910,-9,5909,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.3021319796744,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,2017.666666666667,0,0,0 +2622,3224,5911,-9,5909,-9,2,1,0,25,2,0,2,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-919.6125792503963,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.8,41.25,6,1,0,0,9,1,0,946,0,0,0 +2623,3225,5912,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,3,8.016993085312198,7.760273719557969,0,3,0,0,0,-9,0,-1077.105437500301,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,35,35,15,1,11,-9,0,9.394578586473555,9.394578586473555,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.46,56.7,3,1,0,1,6,4,1,197,0,0,0 +2624,3226,5913,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,5,7.000171993780403,7.373677625825633,5.047977198046772,3,0,0,0,-9,0,-1092.127882099007,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.368505865510127,5.502296065533523,10.90536655231372,3,54.1,59.11,7,1,0,0,7,2,1,863,0,0,0 +2625,3227,5914,5915,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,9.082657723273085,9.241620512233768,0,1,0,-9,34,0,-2,-37.77700159061138,0,0,0,59,2,4,1,2,2,2019,1,2,6,0,38,45,15,1,0,1,0,29.83224589466742,29.83224589466742,0,0,0,0,0,0,0,0,0,0,4.746680690585335,0,0,0,55.96,49.93,6,1,0,0,9,5,1,550,0,0,0 +2625,3227,5915,5914,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.851915684715021,7.98112077066336,0,1,0,-9,34,0,2,-81.77565360035911,0,0,0,57,2,3,1,2,3,2019,1,1,5,0,36,36,15,1,0,1,0,7.945179343149128,7.945179343149128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.35,47.77,6,1,0,0,9,5,1,550,0,0,0 +2626,3228,5916,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,2,1,0,3,8.060217709243684,8.041912329690156,0,3,0,-9,0,-9,0,-1022.271915275277,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,60,0,15,1,0,-9,0,5.034594002904335,5.034594002904335,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,6,1,0,0,7,4,0,4351,0,0,0 +2627,3229,5917,5918,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,5.719229323355292,6.377170711319419,1,0,-9,6,0,-1,-103.3988208129797,0,0,0,79,2,3,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,1,0,117.919091235905,0,0,0,0,1,1,0,6.213251392794985,6.143391614333991,0,0,52.01,40.95,6,1,0,0,11,2,1,709,0,0,0 +2627,3229,5918,5917,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.155201998211306,7.268742340983354,1,0,-9,6,0,1,33.25233647752437,0,0,0,78,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.650401042813821,7.038448386997362,0,0,67.27,22.83,6,1,0,0,11,2,1,709,0,0,0 +2628,3230,5919,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,1,1,0,4,8.845691317242807,9.295460945672524,6.950061007581328,3,0,-9,0,-9,0,-1042.941912187467,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,45,0,15,1,0,-9,0,17.20252964583752,17.20252964583752,0,0,0,0,0,0,0,1,1,0,0,7.331764647559437,0,0,62.1,51.16,6,1,0,0,12,5,1,330,0,0,0 +2629,3231,5920,5921,-9,-9,2,1,1,48,1,0,0,0,2,-9,97,3,0,4,0,0,0,1,0,-9,12,0,2,0,0,0,0,46,2,1,3,2,2,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.0243230471444,1,55.19,54.26,2,1,0,0,12,1,0,570,0,0,0 +2629,3231,5921,5920,-9,-9,1,1,0,46,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,12,0,-2,0,0,0,0,48,2,4,3,2,2,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,3,1,0,0,12,1,0,570,0,0,0 +2630,3232,5922,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,2,8.358351300820347,8.063679646082592,0,3,0,-9,0,-9,0,-1072.826884587056,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,44,0,15,1,0,-9,0,11.05164526173225,11.05164526173225,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,39.68,4,1,0,0,5,4,0,969,0,0,0 +2630,3233,5923,-9,-9,5922,2,1,1,23,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1054.513314861686,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.09,56.13,5,1,1,1,5,1,0,508,0,0,0 +2631,3234,5924,5925,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,3,8.427308689249125,8.649336627325694,0,1,0,-9,22,0,2,19.03430769880106,0,0,0,51,1,4,1,2,3,2019,1,2,11,1,36,35,15,1,1,1,0,14.76447404440333,14.76447404440333,0,0,0,0,0,0,0,0,0,0,2.086391791286089,0,0,0,45.52,50.79,6,1,0,0,2,5,1,1216,0,0,0 +2631,3234,5925,5924,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,4,8.919043369218057,9.106756814252314,0,1,0,-9,21,0,-2,-13.10591799990459,0,0,0,53,1,3,1,2,2,2019,1,1,8,0,43,44,15,1,0,1,0,22.82173316560349,22.82173316560349,0,0,0,0,0,0,0,0,0,0,2.425846990972035,0,0,0,59.14,52.5,6,1,0,0,2,5,1,1216,0,0,0 +2632,3235,5926,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-971.8743292876642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,36,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.89,54.92,3,1,0,0,13,1,1,3742,0,0,0 +2632,3236,5927,-9,5926,-9,2,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1068.307322635894,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,13,1,1,637,0,0,0 +2633,3237,5928,-9,5929,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1200.093023236667,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,0,538.3333333333334,0,0,0 +2633,3237,5929,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,4,8.27267728467276,8.291572266840037,6.191203775106808,4,0,0,0,-9,0,-906.0511888309439,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,38,39,15,1,5,-9,0,11.32070284759611,11.32070284759611,0,0,0,0,0,0,0,1,1,0,6.223149147466136,0,0,0,31.12,63.98,5,1,0,0,5,3,0,538.3333333333334,0,0,0 +2633,3237,5930,-9,5929,-9,2,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1067.98545784827,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,0,538.3333333333334,0,0,0 +2634,3238,5931,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,1,1,0,5,6.831102426469289,7.497040774599522,6.833694554145996,3,0,0,0,-9,0,-913.751166445348,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,14,12,15,1,0,-9,0,8.279031263200606,8.279031263200606,0,0,0,0,0,0,0,0,0,0,6.766351845294863,0,0,0,59.43,58.05,6,1,0,0,1,3,1,1186,0,0,0 +2635,3239,5932,-9,-9,-9,1,1,0,73,2,0,0,0,1,-9,4,3,0,3,0,8.056309737045643,8.101235244179238,3,0,0,0,-9,0,-1022.635591828918,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,33.31312916923532,1,1,0,7.397123480072084,7.944445754137513,3.72231729553764,3,53.14,45.74,6,1,0,0,11,4,1,218,0,0,0 +2636,3240,5933,-9,5934,-9,3,1,1,16,2,0,2,1,3,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1086.64895447129,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,7,1,0,0,10,4,0,475,0,0,0 +2636,3240,5934,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,2,1,0,2,8.333957789754765,9.211634584839903,8.683221351637359,4,0,0,0,-9,0,-898.5592922394405,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,40,45,15,1,1,-9,0,10.01164179064823,10.01164179064823,0,0,0,0,0,0,0,1,1,0,8.765899568788852,0,0,0,50.51,23.31,5,1,0,0,10,4,0,475,0,0,0 +2636,3241,5935,-9,5934,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1151.727416253524,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.81,52.29,6,1,0,0,10,4,0,283,0,0,0 +2637,3242,5936,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,3,0,5.425772901951981,5.531473687779707,4,0,0,0,-9,0,-848.4705505234891,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.675861595844423,0,33.72127560166277,3,44.17,49.99,5,1,0,0,6,2,0,570,0,0,0 +2638,3243,5937,-9,-9,-9,1,1,1,90,3,0,0,0,1,-9,4,3,0,2,0,5.327190362870613,5.038346211902068,3,0,0,0,-9,0,-1040.715911863388,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.14123592552343,5.401285727452119,0,0,38.25,35.69,4,3,0,0,8,2,1,671,0,0,0 +2638,3244,5938,5939,-9,5937,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,6.721812640258016,6.9760075629163,0,1,0,-9,8,0,-12,-11.83579484624417,0,0,0,73,1,4,3,-9,1,2019,2,3,24,10,15,16,15,1,10,4,0,7.97839318531225,7.97839318531225,0,0,0,0,0,0,0,1,1,0,3.948216905032554,0,67.78842667692311,3,24.54,63.25,3,2,0,0,8,4,1,118.5,0,0,0 +2638,3244,5939,5938,-9,-9,3,1,1,73,1,0,0,0,1,-9,4,3,0,4,0,8.39437340651032,8.394060374325059,1,0,-9,8,0,12,26.62415759982094,0,0,0,61,2,3,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.784643055173792,0,.0953553860583689,3,57.16,56.15,6,3,0,0,8,4,1,118.5,0,0,0 +2639,3245,5940,5941,-9,-9,1,1,0,60,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,0,0,0,0,0,60,3,1,3,3,3,2019,4,3,22,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.172769608108886,0,68.07794184992603,2,27.93,36.35,2,1,0,1,5,1,1,1235,0,0,0 +2639,3245,5941,5940,-9,-9,3,1,1,60,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,0,0,0,0,0,60,3,1,3,-9,-9,2019,4,1,32,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.83,23.32,1,1,0,0,5,1,1,1235,0,0,0 +2639,3246,5942,-9,-9,-9,2,1,0,19,2,0,0,1,1,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1032.482881226494,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.22,48.57,4,1,0,1,5,1,1,296,0,0,0 +2640,3247,5943,5944,-9,-9,1,1,1,49,1,0,0,0,3,-9,1,1,0,4,7.395211776661438,7.303652622380405,0,1,0,-9,36,0,-7,152.0724178370308,0,0,0,56,2,2,3,3,3,2019,2,2,17,6,38,28,15,1,6,3,0,4.187858870703463,4.187858870703463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.65,52.49,5,3,0,1,5,2,1,1659.5,0,0,0 +2640,3247,5944,5943,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,7,0,7,13.91476101809688,0,0,0,49,3,4,1,3,3,2019,3,1,14,0,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.72,29.9,1,3,0,1,5,2,1,1659.5,0,0,0 +2640,3248,5945,-9,5944,5943,3,1,1,23,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1001.226026515028,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.8973659344548952,0,0,0,60.12,54.8,5,3,1,0,5,1,1,289,0,0,0 +2640,3249,5946,-9,5944,5943,4,1,0,20,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-991.368726747622,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,6,3,0,0,5,1,1,983,0,0,0 +2640,3250,5947,-9,5944,5943,5,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-858.4225881885216,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.006194061383733,0,0,3,49.85,43.33,6,3,0,0,5,1,1,1533,0,0,0 +2641,3251,5948,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-965.0602904363828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.875892894723083,0,.4718947444628894,3,61.95,30.05,6,1,0,0,5,1,1,1144,0,0,0 +2642,3252,5949,5950,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.596600451324447,7.661731942460936,6.217764212594608,1,0,-9,38,0,-5,40.32940922680412,0,0,0,63,2,3,3,2,2,2019,2,2,7,0,30,37,15,1,0,4,0,9.348888587333782,9.348888587333782,0,0,0,0,0,0,0,0,0,0,.2899429917368358,6.001560395070667,0,0,49.87,50.46,4,1,0,0,2,4,1,2203.5,0,0,0 +2642,3252,5950,5949,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.598714877236823,7.834680109456556,1,0,-9,38,0,5,84.22801548388534,0,0,0,58,2,2,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4362242872118698,7.459728796861703,0,0,62.33,30.64,5,1,0,0,2,4,1,2203.5,0,0,0 +2642,3253,5951,-9,5949,5950,3,1,0,28,2,0,0,0,1,-9,2,1,0,3,7.505493002561345,7.477613085975158,0,3,0,0,0,-9,0,-892.7610002562462,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,32,7,15,1,0,-9,1,8.475108766477202,8.475108766477202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.72,47.36,6,1,0,0,2,3,1,327,0,0,0 +2643,3254,5952,5953,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,5,8.678718461090314,8.893964600155909,6.105971992333935,1,0,-9,49,0,1,-113.3588237757842,0,0,0,72,3,3,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,16.88175012173936,16.88175012173936,0,0,0,0,0,0,0,1,1,0,5.654559312755615,6.272313127300166,.751893977056415,3,62.39,56.71,6,1,0,0,9,4,1,2024.5,0,0,0 +2643,3254,5953,5952,-9,-9,1,1,0,72,1,0,0,0,3,-9,2,1,0,3,6.499455821706452,6.43403644142012,0,1,0,-9,49,0,-1,-26.27106235724485,0,0,0,73,2,5,1,-9,-9,2019,1,2,9,0,13,18,15,1,0,1,0,4.271953070855692,4.271953070855692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,48.06,6,1,0,0,9,4,1,2024.5,0,0,0 +2644,3255,5954,5955,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,3,8.373804721610448,8.309711066266303,0,1,0,-9,8,0,1,10.61001565741837,0,0,0,61,1,3,1,2,3,2019,1,2,6,0,22,27,15,1,0,1,0,27.25074121723173,27.25074121723173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.47,37.79,6,1,0,0,13,5,1,1184.5,0,0,0 +2644,3255,5955,5954,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,3,9.531549268577955,9.369550184938138,0,1,0,-9,8,0,-1,99.37866913653187,0,0,0,62,1,3,1,3,2,2019,1,1,9,1,37,37,15,1,1,1,0,40.83853467288542,40.83853467288542,0,0,0,0,0,0,0,0,0,0,.4361778474112931,0,0,0,47.86,45.9,5,1,0,0,13,5,1,1184.5,0,0,0 +2645,3256,5956,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-918.6899261792572,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.79,21.96,4,1,0,1,1,1,0,3060,0,0,0 +2646,3257,5957,5958,-9,-9,1,1,1,66,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,28,0,4,23.17250314640487,0,0,0,62,1,3,1,-9,-9,2019,3,2,11,0,0,72,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.28,57.07,3,4,1,0,6,2,1,1537,0,0,0 +2646,3257,5958,5957,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,3,7.441969906605758,7.517826965269894,0,1,0,-9,28,0,-4,68.49732066065671,0,0,0,66,2,3,3,3,2,2019,2,1,12,0,40,20,15,1,0,3,0,5.428539999360646,5.428539999360646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.09,43.03,4,4,0,0,6,2,1,1537,0,0,0 +2647,3258,5959,-9,5960,5961,6,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,-9,0,-9,0,-1004.42551794113,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,8,2,0,304,0,0,0 +2647,3258,5960,5961,-9,-9,1,1,0,45,1,0,3,0,3,-9,2,1,0,4,0,0,0,2,0,-9,18,-9,-6,97.62142145033957,-9,0,0,51,3,4,1,3,3,2019,1,2,10,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,5,0,0,8,2,0,304,0,0,0 +2647,3258,5961,5960,-9,-9,2,1,1,51,1,0,3,0,3,-9,2,1,0,4,8.152183936151619,8.259670303633538,0,2,0,-9,1,-9,6,-110.539238148807,-9,0,0,45,3,4,1,3,3,2019,1,1,9,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,8,2,0,304,0,0,0 +2647,3259,5962,-9,5960,5961,3,1,0,23,2,0,3,1,2,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-1065.663419010985,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,8,1,0,621,0,0,0 +2647,3260,5963,-9,5960,5961,4,1,0,21,2,0,3,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-983.9213627078093,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,5,0,0,8,1,0,575,0,0,0 +2648,3261,5964,-9,-9,-9,1,1,0,46,2,0,2,0,2,-9,2,1,0,4,7.067507548472621,7.160983338660129,0,4,0,0,0,-9,0,-922.9211503716624,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,16,16,15,1,9,-9,0,8.519450445196538,8.519450445196538,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.89,61.61,2,1,0,1,10,2,0,710,0,0,0 +2648,3261,5965,-9,5964,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-922.7528651125956,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,2,1,0,1,10,2,0,710,0,0,0 +2649,3262,5966,5967,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,2,9.470192975579868,9.629164122071707,0,1,0,-9,9,0,3,26.02998863325587,0,0,0,52,2,1,1,-9,-9,2019,1,1,10,2,43,48,15,1,2,1,0,35.09418768233239,35.09418768233239,0,0,0,0,0,0,0,0,0,0,3.467265204393355,0,6.08884143367649,3,48.12,47.31,6,1,0,0,1,5,1,1156,0,0,0 +2649,3262,5967,5966,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,1,8.151710966410247,7.959687036920779,0,1,0,-9,29,0,-3,-112.7714393177194,0,0,0,55,1,2,1,2,2,2019,1,2,18,7,30,32,15,1,7,1,0,11.79293101689702,11.79293101689702,0,0,0,0,0,0,0,0,0,0,2.419929472163131,0,0,0,43.58,19.66,3,1,0,0,1,5,1,1156,0,0,0 +2649,3263,5968,-9,5967,5966,3,1,1,19,2,0,0,0,2,-9,7,2,0,4,6.132848370014436,6.084193716880474,0,3,0,0,0,-9,0,-895.8109519753442,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,15,22,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.082097228715831,0,0,0,58.15,52.91,7,1,0,0,1,2,1,4099,0,0,0 +2650,3264,5969,5972,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,3,7.366252990434814,7.230213373293463,0,2,0,-9,10,0,10,95.36406495750037,0,0,0,29,1,5,1,1,1,2019,1,2,9,0,20,40,15,1,0,1,0,9.383327719763411,9.383327719763411,0,0,0,0,0,0,0,1,1,0,0,0,30.18352008457367,3,52.48,50.07,5,5,0,0,7,3,0,981.5,0,0,0 +2650,3264,5970,-9,5972,5969,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.91921884319,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,3,0,981.5,0,0,0 +2650,3264,5971,-9,5972,5969,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.76963168921,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,3,0,981.5,0,0,0 +2650,3264,5972,5969,-9,-9,2,1,0,29,1,0,2,0,1,-9,2,1,0,5,7.440843267082242,7.260401825613144,0,2,0,-9,10,0,-10,-90.05424190553238,0,1,1,39,1,3,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,7.360355389221453,7.360355389221453,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,7,3,0,981.5,0,0,0 +2651,3265,5973,5974,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,54,0,0,-27.69524897343578,0,0,0,72,2,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.026640522281232,0,4.450517723747878,1,57.06,57.76,2,1,0,0,2,2,1,509.5,0,0,0 +2651,3265,5974,5973,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.932607599458141,7.162324922092774,1,0,-9,54,0,0,114.2177222889218,0,0,0,72,3,5,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.862235266125352,6.696994410273185,0,0,53.46,35.96,6,1,0,0,2,2,1,509.5,0,0,0 +2652,3266,5975,-9,5977,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-997.7801621992859,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,2,0,1557,0,0,0 +2652,3266,5976,-9,5977,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.3267960278545,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,2,0,1557,0,0,0 +2652,3266,5977,-9,-9,-9,1,1,0,28,2,0,2,0,2,-9,11,3,0,3,7.145946833445118,7.472592122987186,6.050713186442318,4,0,0,0,-9,0,-943.6976861390458,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,36,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.302143168689013,0,0,0,49.52,56.95,5,1,0,0,12,2,0,1557,0,0,0 +2653,3267,5978,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,2,0,5.42866036861195,5.054522555849742,3,0,0,0,-9,0,-1111.849761407971,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.743256745471176,4.879074082428345,0,0,55.19,34.27,6,1,0,0,5,2,1,414,0,0,0 +2654,3268,5979,5980,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.881523574853247,8.245941046769083,1,0,-9,8,0,1,70.33893832882687,0,0,0,73,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.768651768037613,8.084364204151361,0,0,60.05,42.65,5,1,0,0,5,4,1,172,0,0,0 +2654,3268,5980,5979,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,6.994647828833875,6.60566957670019,1,0,-9,8,0,-1,127.0103625546989,0,0,0,74,2,3,3,2,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,21.62598797241182,0,0,0,0,1,1,0,0,6.865317141753075,0,0,47.08,43.23,6,1,0,0,5,4,1,172,0,0,0 +2655,3269,5981,5982,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,6.398978381249029,6.146060935032279,1,0,-9,44,0,-1,-58.64091716858759,0,0,0,64,2,4,3,-9,-9,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.416018264144052,6.027884165283647,3.37159709268532,3,55.87,53.99,5,1,0,0,6,2,1,504.5,0,0,0 +2655,3269,5982,5981,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,7.245215531603835,7.061419696096202,1,0,-9,44,0,1,72.26571350404112,0,0,0,63,1,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.620150790700945,7.125247361131999,0,3,58.72,48.59,5,1,0,0,6,2,1,504.5,0,0,0 +2656,3270,5983,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,3,0,7.927384948009949,8.075864950389535,3,0,0,0,-9,0,-950.8508897078639,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0477128607092409,8.159905811243204,0,0,60.29,52.11,2,1,0,0,2,4,1,731,0,0,0 +2657,3271,5984,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,4,3,0,4,0,7.50644223183778,7.882880154033978,3,0,0,0,-9,0,-1056.229048114011,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.75618603595844,8.04479014590493,2.937319079604087,3,58.3,52.91,6,1,0,0,10,3,1,415,0,0,0 +2658,3272,5985,-9,-9,-9,1,1,0,91,2,0,0,0,3,-9,4,3,0,2,0,5.462322358032759,5.232486614446461,3,0,0,0,-9,0,-1173.586627612301,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.013779480933021,5.440618634452622,2.198927425356056,3,57.53,34.66,6,1,0,0,4,2,1,144,0,0,0 +2659,3273,5986,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1029.846606207465,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,56.38,5,1,1,0,6,1,0,3563,0,0,0 +2660,3274,5987,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,3,0,3.952459271922559,3.810773881308565,3,0,0,0,-9,0,-972.7198744107985,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.712877876738103,3.816424928548837,1.319482553133462,3,61.28,48.88,6,1,0,0,8,1,1,3838,0,0,0 +2661,3275,5988,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,4,8.388171071933924,8.00645264227807,0,3,0,0,0,-9,0,-897.0534973372422,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,40,40,15,1,0,-9,0,11.99457909706059,11.99457909706059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,10,4,1,520,0,0,0 +2662,3276,5989,-9,-9,-9,1,1,0,29,3,0,2,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-936.5110376073119,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.15178237592996,3,43.09,39.88,5,1,0,0,5,1,0,758.3333333333334,0,0,0 +2662,3276,5990,-9,5989,-9,2,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-978.7842788317685,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,1,0,758.3333333333334,0,0,0 +2662,3276,5991,-9,5989,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.012108769513,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,1,0,758.3333333333334,0,0,0 +2663,3277,5992,-9,-9,-9,1,1,0,54,2,0,2,0,1,-9,2,1,0,1,7.770630462296558,7.58080662089175,0,4,0,0,0,-9,0,-966.8746212303224,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,55,25,15,1,4,-9,0,4.060459302772263,4.060459302772263,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.8,30.46,3,4,0,1,8,2,0,4413,0,0,0 +2663,3278,5993,-9,5992,-9,2,1,0,32,2,0,2,0,2,-9,2,1,0,3,7.927716919381791,7.864351091592529,0,3,0,0,0,-9,0,-933.8558044298408,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,48,0,15,1,2,-9,1,8.062609874886146,8.062609874886146,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.99,48.02,2,4,0,0,8,4,0,111,0,0,0 +2663,3279,5994,-9,5992,-9,3,1,0,29,2,0,2,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1032.385996786716,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,0,44,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.33,55.93,6,4,0,0,8,1,0,1761,0,0,0 +2663,3280,5995,-9,5992,-9,4,1,0,25,2,0,2,0,1,-9,2,1,0,3,7.86482311888683,7.866499661233239,0,3,0,0,0,-9,0,-1016.810743759487,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,43,0,15,1,1,-9,1,8.693557027511396,8.693557027511396,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.91,48.98,6,4,0,0,8,3,0,662,0,0,0 +2663,3281,5996,-9,5992,-9,5,1,0,20,2,0,2,0,2,-9,2,1,0,4,7.140009695574475,7.257907210314372,0,3,0,0,0,-9,0,-1045.573118823949,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,16,16,15,1,7,-9,1,10.65122329925003,10.65122329925003,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.74,55.32,5,2,0,0,8,3,0,939,0,0,0 +2663,3282,5997,-9,5992,-9,6,1,0,18,2,0,2,1,3,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1061.018187214301,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,0,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,.1476203435560018,0,0,0,30.47,44.5,4,4,0,0,8,4,0,310,0,0,0 +2663,3283,5998,-9,5992,-9,8,1,0,30,2,0,2,0,1,-9,2,1,0,3,8.235361978300643,7.999154528188088,0,3,0,0,0,-9,0,-998.2929610169946,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,1,37,39,15,1,1,-9,1,11.05488646776995,11.05488646776995,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.42,52.37,5,4,0,0,8,4,0,935,0,0,0 +2664,3284,5999,6000,-9,-9,3,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.855830448047911,8.74336663828768,0,1,0,-9,1,-9,1,69.83785980988903,-9,0,0,50,1,3,1,-9,-9,2019,1,1,7,0,35,0,15,1,0,1,0,23.97280077518019,23.97280077518019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,12,5,1,2084,0,0,0 +2664,3284,6000,5999,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,3,8.035930356563748,7.889764548496229,0,1,0,1,1,-9,-1,-23.6842327886555,0,0,0,51,2,3,1,2,2,2019,1,3,7,0,37,37,15,1,0,1,0,8.994059500943886,8.994059500943886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.15,54.82,7,1,0,0,12,5,1,2084,0,0,0 +2664,3285,6001,-9,5999,6000,2,1,1,20,2,0,0,0,2,1,2,1,0,4,6.9480596141811,6.936144930815117,0,3,0,0,0,-9,0,-950.5488748054753,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,15,0,15,1,0,-9,1,7.315162108820254,7.315162108820254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,2,1,0,0,12,2,1,379,0,0,0 +2665,3286,6002,6003,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,19,0,0,0,0,55,1,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,1,0,125.1658921560274,0,0,0,0,1,1,0,.0863615035109681,0,0,0,54.04,16.08,6,1,0,0,2,1,1,360.5,0,0,0 +2665,3286,6003,6002,-9,-9,2,1,1,55,1,0,0,0,1,-9,97,3,0,4,0,0,0,1,0,-9,7,0,-19,0,0,0,0,74,3,1,3,3,3,2019,4,1,12,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.9344818809716,1,39.27,60.24,5,1,0,0,2,1,1,360.5,0,0,0 +2666,3287,6004,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,-9,0,0,0,-986.6513305949017,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,9,0,38,15,1,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.8,44.5,1,1,0,0,4,1,0,807,0,0,0 +2667,3288,6005,-9,6007,6008,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1004.085656076729,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,11,3,1,1083.5,0,0,0 +2667,3288,6006,-9,6007,6008,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.087468320966,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,1,1083.5,0,0,0 +2667,3288,6007,6008,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,3,8.040183717253942,7.98293287566225,0,2,0,-9,14,0,-2,43.49803919025394,0,0,1,38,2,4,1,2,3,2019,1,2,9,1,33,36,15,1,1,1,0,11.02565462496812,11.02565462496812,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.37,57.28,6,1,0,0,11,3,1,1083.5,0,0,0 +2667,3288,6008,6007,-9,-9,2,1,1,38,1,0,2,0,2,-9,1,1,0,4,7.522286087426695,7.620775528280074,0,2,0,-9,14,0,2,80.42692171494156,0,0,0,36,1,3,1,3,3,2019,1,1,11,0,45,40,15,1,0,1,0,4.854427894027821,4.854427894027821,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,11,3,1,1083.5,0,0,0 +2668,3289,6009,6011,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.36922457198183,8.511647829289902,0,1,0,-9,6,0,4,-53.79246979008815,0,0,0,52,1,4,1,3,3,2019,1,1,16,4,53,51,15,1,4,1,0,10.20705985339652,10.20705985339652,0,0,0,0,0,0,0,0,0,0,0,0,35.10309739027745,3,42.61,54.85,6,1,0,0,12,5,1,749.3333333333334,0,0,0 +2668,3289,6010,-9,-9,6011,3,1,0,17,2,0,0,1,2,0,7,2,0,4,6.287514599980896,5.878832496426248,0,1,0,0,0,-9,0,-909.9238972108237,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,15,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,12,5,1,749.3333333333334,0,0,0 +2668,3289,6011,6009,-9,-9,1,1,1,52,1,0,0,0,1,-9,1,1,0,4,9.822280236598962,9.621738341780059,0,1,0,-9,6,0,-4,-66.28381779149987,0,0,0,56,1,3,1,3,2,2019,1,2,13,2,50,50,15,1,2,1,0,32.47539351507611,32.47539351507611,0,0,0,0,0,0,0,0,0,0,0,0,0,3,32.55,66.27,3,1,0,0,12,5,1,749.3333333333334,0,0,0 +2669,3290,6012,6013,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,3,8.157695055565702,7.958748535853689,0,1,0,-9,6,0,1,73.35286726039203,0,0,0,35,2,2,1,3,2,2019,1,2,12,0,40,38,15,1,0,1,0,8.350230729841421,8.350230729841421,0,0,0,0,0,0,0,0,0,0,3.23562458892556,0,0,0,43.92,47.65,4,1,0,0,1,4,1,564,0,0,0 +2669,3290,6013,6012,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,2,8.054446388132751,8.244295696695655,0,1,0,-9,6,0,-1,114.5096406207797,0,0,1,36,2,3,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,10.08937638534528,10.08937638534528,0,0,0,0,0,0,0,0,0,0,1.002358049345538,0,0,0,51.85,46.81,5,1,0,0,1,4,1,564,0,0,0 +2670,3291,6014,6015,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,2,8.255454841975055,8.614759551100084,0,1,0,-9,34,0,2,-36.51833048708912,0,0,0,53,3,3,1,2,1,2019,1,2,7,0,39,37,15,1,0,1,0,10.29040979242357,10.29040979242357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,6,1,0,0,7,4,0,767.5,0,0,0 +2670,3291,6015,6014,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,3,7.896946837088617,7.890502916707668,0,1,0,-9,34,0,-2,25.36724947986097,0,0,0,55,3,2,1,2,2,2019,1,1,12,0,43,38,15,1,2,1,0,7.007693891885798,7.007693891885798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,5,1,0,0,7,4,0,767.5,0,0,0 +2671,3292,6016,-9,-9,-9,2,1,1,28,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-964.7731267412365,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,48.62,5,1,1,0,2,1,0,285,0,0,0 +2671,3293,6017,-9,-9,-9,4,1,1,20,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,-9,0,-9,0,-886.3178946707519,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,1,0,2,1,0,420,0,0,0 +2672,3294,6018,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,3,9.005065715590657,8.704045814496931,0,3,0,0,0,-9,0,-962.4577940351891,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,42,45,15,1,10,-9,0,21.51661284604576,21.51661284604576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,50.93,3,1,0,0,11,5,0,967,0,0,0 +2673,3295,6019,6020,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,5,6.97783007868162,6.655229132758294,0,1,0,-9,36,0,2,46.81963396058052,0,0,0,59,1,3,1,3,3,2019,1,2,5,0,30,30,15,1,0,1,0,4.587673774342828,4.587673774342828,0,0,0,0,0,0,0,0,0,0,7.032833891764342,0,0,0,57.06,57.76,6,1,0,0,2,4,1,340.5,0,0,0 +2673,3295,6020,6019,-9,-9,2,1,0,59,1,0,0,0,1,-9,1,1,0,3,7.949312352221888,7.921995104940821,6.634291343727963,1,0,-9,8,0,-2,51.95667365927637,0,0,0,61,1,5,1,-9,-9,2019,1,1,11,0,15,7,15,1,2,1,0,20.02707926764679,20.02707926764679,0,0,0,0,0,0,0,0,0,0,7.039472709166967,6.780128413515204,0,0,49,48,5,1,0,0,2,4,1,340.5,0,0,0 +2674,3296,6021,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1006.187529878872,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.350670916679845,0,0,0,37.56,35.77,5,1,0,0,2,1,1,316,0,0,0 +2674,3297,6022,-9,-9,-9,2,1,1,53,3,0,0,0,1,-9,97,3,0,2,0,0,0,3,0,0,0,-9,0,-1004.064278905003,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.066101628189785,0,0,0,46.12,45.77,6,1,0,0,2,1,1,245,0,0,0 +2675,3298,6023,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,3,8.701777140954459,8.808078841183566,0,3,0,0,0,-9,0,-932.1761631347006,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,43,0,15,1,0,-9,0,20.22764172144761,20.22764172144761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,6,1,0,0,5,5,1,905,0,0,0 +2676,3299,6024,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-836.9763118043386,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.03,25.03,4,1,0,0,5,1,1,2846,0,0,0 +2677,3300,6025,6026,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,8.109782860329032,7.640207316656123,1,0,-9,48,0,5,-13.84670098956763,0,0,0,65,2,3,1,3,3,2019,3,1,14,2,0,0,15,4,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,6.670987434816971,8.038700533416593,0,0,25.71,42.48,4,1,0,0,2,4,1,865.5,0,0,0 +2677,3300,6026,6025,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,3,7.721492708356264,8.026818967658526,6.6958100076344,1,0,-9,48,0,-5,77.99815086010997,0,0,0,70,1,2,3,2,2,2019,2,2,15,2,8,1,15,1,2,4,0,28.35297018843471,28.35297018843471,1,0,0,0,0,0,0,1,1,0,3.505160496349118,6.806808079028632,0,0,39.44,52.35,6,1,0,0,2,4,1,865.5,0,0,0 +2678,3301,6027,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,1,1,0,5,8.980290184261337,9.293220485516564,0,3,0,0,0,-9,0,-1100.842547493078,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,30,30,15,1,0,-9,0,38.24717825673438,38.24717825673438,0,0,0,0,0,0,0,0,0,0,6.169429172175929,0,0,0,54.1,59.11,6,1,0,0,8,5,1,68,0,0,0 +2679,3302,6028,6029,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,4,7.438116017139042,7.350518520325414,0,1,0,-9,3,0,-3,95.91804997340134,0,0,0,48,1,5,1,2,2,2019,1,1,12,0,22,20,15,1,0,1,0,9.337807728526684,9.337807728526684,0,0,0,0,0,0,0,0,0,0,0,0,0,3,43.43,54.3,2,1,0,0,13,5,1,515.5,0,0,0 +2679,3302,6029,6028,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,5,8.961891685117275,8.971717244898938,0,1,0,-9,3,0,3,44.12964301133518,0,0,0,45,2,4,1,2,3,2019,1,2,8,0,43,42,15,1,0,1,0,24.6783502819688,24.6783502819688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,13,5,1,515.5,0,0,0 +2679,3303,6030,-9,6028,6029,3,1,0,19,2,0,0,0,2,-9,7,2,0,4,6.34012900533239,6.088832059710645,0,3,0,0,0,-9,0,-882.1912968309281,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,1,15,13,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.79,6,1,0,0,13,2,1,5490,0,0,0 +2680,3304,6031,6032,-9,-9,2,1,0,46,1,0,1,0,3,-9,2,1,0,2,8.10974295038173,8.320091074944989,0,2,0,-9,8,0,-13,-59.58740101293971,0,0,0,59,3,4,1,3,3,2019,1,1,12,0,30,0,15,1,0,1,0,13.72017016696945,13.72017016696945,0,0,0,0,0,0,0,1,1,0,0,0,7.105141614645687,3,29.64,34.83,5,1,0,0,13,4,1,790,0,0,0 +2680,3304,6032,6031,-9,-9,1,1,1,59,1,0,1,0,3,-9,2,1,0,4,8.314301535248514,8.427548548151133,0,2,0,-9,8,0,13,-34.26337313295453,0,0,0,46,3,2,1,2,2,2019,1,2,12,1,39,40,15,1,1,1,0,13.82892700411629,13.82892700411629,0,0,0,0,0,0,0,1,1,0,.0740877594088846,0,0,0,41.47,56.81,5,1,0,0,13,4,1,790,0,0,0 +2680,3305,6033,-9,6031,6032,3,1,1,18,2,0,1,0,3,1,2,1,0,4,8.193622542023038,7.967180182772408,0,3,0,0,0,-9,0,-930.1743170405034,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,0,15,1,0,-9,1,7.907128679437635,7.907128679437635,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,13,3,1,451,0,0,0 +2681,3306,6034,6035,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,6.872864759219445,7.111620946723805,0,1,0,-9,30,0,0,32.50439904407914,0,0,0,53,1,4,1,2,2,2019,1,2,9,0,14,14,15,1,0,1,0,11.05367008104766,11.05367008104766,0,0,0,0,0,0,0,0,0,0,5.332403620315569,0,0,0,57.06,57.76,2,1,0,0,6,5,1,938.5,0,0,0 +2681,3306,6035,6034,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,4,9.244356001418096,9.305961952373197,0,1,0,-9,6,0,0,62.6326453777429,0,0,0,53,2,5,1,-9,-9,2019,1,1,9,0,60,38,15,1,1,1,0,26.16533396990857,26.16533396990857,0,0,0,0,0,0,0,0,0,0,1.918411963780334,0,0,0,54,54,6,1,0,0,6,5,1,938.5,0,0,0 +2681,3307,6036,-9,6034,6035,3,1,0,24,2,0,0,0,2,-9,1,1,0,4,8.312530893036492,8.437812983057121,0,3,0,0,0,-9,0,-1002.973319647571,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,45,52,15,1,2,-9,1,9.074841949505529,9.074841949505529,0,0,0,0,0,0,0,0,0,0,.6761924122517108,0,0,0,47,57,5,1,0,0,6,4,1,677,0,0,0 +2681,3308,6037,-9,6034,6035,4,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.073938946677371,8.058024437450182,0,3,0,0,0,-9,0,-959.5431712571514,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,37,38,15,1,1,-9,1,10.59827632252524,10.59827632252524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,6,4,1,520,0,0,0 +2682,3309,6038,-9,6040,6039,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.076380493973,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,885.3333333333334,0,0,0 +2682,3309,6039,6040,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,4,8.354414475870021,8.639036670099438,0,2,0,-9,16,0,4,0,0,0,0,37,2,5,1,3,2,2019,1,2,7,0,46,60,15,1,0,1,0,10.81455700272694,10.81455700272694,0,0,0,0,0,0,0,1,1,0,6.911644933170852,0,0,0,47.81,54.79,5,1,0,0,6,5,1,885.3333333333334,0,0,0 +2682,3309,6040,6039,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,5,8.798064098662763,8.519205646681737,0,2,0,-9,16,0,-4,0,0,0,1,41,1,4,1,2,3,2019,1,1,5,0,37,0,15,1,0,1,0,15.450797932618,15.450797932618,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,6,5,1,885.3333333333334,0,0,0 +2683,3310,6041,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,3,8.16914555716296,7.899296448320216,0,3,0,-9,0,1,0,-905.4771208017178,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,51,55,15,1,2,-9,0,9.475072694438328,9.475072694438328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,5,1,0,0,13,4,0,387,0,0,0 +2684,3311,6042,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.872870192836412,7.705559787161638,0,3,0,0,0,-9,0,-995.2375721474511,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,40,20,15,1,7,-9,0,7.043080868504769,7.043080868504769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.69,31.03,3,1,0,1,7,3,0,407,0,0,0 +2685,3312,6043,6044,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,7.31337901103598,7.846499797397672,1,0,-9,19,0,4,-167.3486594443887,0,0,0,67,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.81555465346386,0,0,57.76,54.51,7,1,0,0,9,3,1,118,0,0,0 +2685,3312,6044,6043,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,5.167065711295034,5.566781120780029,1,0,-9,19,0,-4,13.5110174982498,0,0,0,71,3,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.650610895127362,5.104883126841162,0,0,49.63,54.22,6,1,0,0,9,3,1,118,0,0,0 +2686,3313,6045,-9,6048,6047,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-898.9368569689609,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,5,1,2007.8,0,0,0 +2686,3313,6046,-9,6048,6047,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-923.7864132919781,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,2007.8,0,0,0 +2686,3313,6047,6048,-9,-9,1,1,1,49,1,0,3,0,1,-9,2,1,0,3,8.702500813060118,8.703118608508074,0,2,0,-9,13,-9,6,-82.27336248048559,-9,0,0,43,1,3,1,3,2,2019,1,2,12,0,45,0,15,1,0,1,0,13.40147874616544,13.40147874616544,0,0,0,0,0,0,0,1,1,0,0,0,6.542405118502478,3,49.29,54.59,5,1,0,0,13,5,1,2007.8,0,0,0 +2686,3313,6048,6047,-9,-9,2,1,0,43,1,0,3,0,1,-9,2,1,0,3,8.980479775630487,8.293212269757122,0,2,0,-9,11,-9,-6,43.45342880691217,-9,0,1,49,1,3,1,1,1,2019,1,1,25,11,43,0,15,1,11,1,0,15.29869787680058,15.29869787680058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.02,64.34,4,1,0,0,13,5,1,2007.8,0,0,0 +2686,3313,6049,-9,6048,6047,3,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-951.2637710772284,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,13,5,1,2007.8,0,0,0 +2687,3314,6050,6052,-9,-9,1,1,1,43,1,0,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,20,0,1,0,0,0,0,42,1,4,3,3,2,2019,2,2,9,0,50,50,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,3,0,0,5,1,1,507.25,0,0,0 +2687,3314,6051,-9,6052,6050,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.911751828364,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,1,1,507.25,0,0,0 +2687,3314,6052,6050,-9,-9,2,1,0,42,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,20,0,-1,0,0,0,1,43,2,4,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.105195447084474,0,0,0,33.47,56.25,5,3,0,0,5,1,1,507.25,0,0,0 +2687,3314,6053,-9,6052,6050,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.109158358211,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,1,1,507.25,0,0,0 +2688,3315,6054,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,4,0,4.970423374837141,5.07979513928259,3,0,-9,0,-9,0,-1025.16667541504,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,13.62496108128155,0,0,2.075735468277464,1.973660192477791,129.9294322715384,1,1,0,0,5.024503009728044,0,0,57.16,56.15,2,1,0,0,5,2,1,591,0,0,0 +2689,3316,6055,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-984.098131573955,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.84,40.76,6,1,0,0,12,1,0,911,0,0,0 +2690,3317,6056,6058,-9,-9,1,1,1,56,1,0,2,0,1,-9,2,1,0,1,9.00220962440317,8.99307760252861,0,2,0,-9,22,0,10,8.743886202550314,0,0,0,46,2,4,1,2,3,2019,1,2,24,12,51,51,15,1,12,1,0,20.45813444656615,20.45813444656615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.82,31.96,3,1,0,0,2,4,1,312.6666666666667,0,0,0 +2690,3317,6057,-9,6058,6056,3,1,1,17,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-999.3330240129377,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,2,4,1,312.6666666666667,0,0,0 +2690,3317,6058,6056,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.592636443770835,7.352664753859905,0,2,0,-9,22,0,-10,-184.6685132737519,0,0,0,56,1,1,1,1,1,2019,1,1,7,0,23,23,15,1,0,1,0,9.120976127445246,9.120976127445246,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,2,4,1,312.6666666666667,0,0,0 +2691,3318,6059,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1038.151271619239,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.57823354120496,3,62.18,30.64,6,1,0,0,9,1,0,299,0,0,0 +2692,3319,6060,6061,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,4,3.209966373441064,7.93225952573207,7.906983073441904,1,0,-9,45,0,-2,-13.0475468719339,0,0,0,72,1,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.74262928716341,7.458330515936979,0,0,57.16,56.15,6,1,0,0,9,4,1,1560.5,0,0,0 +2692,3319,6061,6060,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,5.201197494934566,8.181710302376608,8.444701110162583,1,0,-9,45,0,2,50.54135632793361,0,0,0,70,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.215760668493663,0,0,54.96,53.17,6,1,0,0,9,4,1,1560.5,0,0,0 +2693,3320,6062,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,3.565504204304961,3.575319794720326,3,0,0,0,-9,0,-1018.193851859966,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.731979824656809,3.624282622661769,0,0,36.27,39.93,4,1,0,0,8,1,1,1071,0,0,0 +2694,3321,6063,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,-9,0,1,0,-912.7909740993695,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.586920235027216,0,0,0,23.43,55.25,1,1,0,0,10,1,0,318,0,0,0 +2695,3322,6064,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,3,8.770488875653408,8.552404978465013,0,3,0,0,0,-9,0,-839.8130297397211,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,40,48,15,1,3,-9,0,13.09373416108309,13.09373416108309,0,0,0,0,0,0,0,0,0,0,5.067335528380182,0,0,0,43.84,58.37,5,1,0,0,12,5,0,572,0,0,0 +2696,3323,6065,6066,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,2,7.108230124860723,7.021986663577386,0,1,0,-9,2,0,5,-64.68529056450357,0,0,0,45,2,2,1,-9,-9,2019,1,1,8,0,39,30,15,1,0,1,0,4.029007554832539,4.029007554832539,0,0,0,0,0,0,0,0,0,0,8.095391974371251,0,0,0,57.78,38.59,6,1,0,0,9,4,1,1579.5,0,0,0 +2696,3323,6066,6065,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,2,8.61201212738459,8.219007261109898,0,1,0,-9,2,0,-5,-9.741405247651654,0,0,0,50,2,2,1,2,-9,2019,1,2,6,1,45,24,15,1,1,1,0,8.713598869555051,8.713598869555051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,48.96,6,1,0,1,9,4,1,1579.5,0,0,0 +2697,3324,6067,-9,6070,6068,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.5259652388831,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,5,1,955.75,0,0,0 +2697,3324,6068,6070,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,5,9.824578153045756,10.02449540695053,0,2,0,-9,2,0,0,-71.70066959940193,0,0,0,38,1,5,2,-9,-9,2019,2,1,10,1,46,0,15,1,1,2,0,43.26265633208829,43.26265633208829,0,0,0,0,0,0,0,1,1,0,7.977149768008453,0,0,0,54.1,59.11,6,1,0,0,10,5,1,955.75,0,0,0 +2697,3324,6069,-9,6070,6068,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1155.349674381441,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,5,1,955.75,0,0,0 +2697,3324,6070,6068,-9,-9,1,1,0,38,1,0,2,0,1,-9,7,2,0,5,0,0,0,2,0,-9,2,0,0,-52.91963130439819,-9,0,1,38,1,5,1,2,1,2019,3,2,0,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.561992149698257,0,0,0,57.06,57.76,6,1,0,0,10,5,1,955.75,0,0,0 +2698,3325,6071,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1090.774757712606,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,32.79,6,1,0,0,5,2,1,269,0,0,0 +2699,3326,6072,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-968.7407878825705,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.551201824562556,0,0,0,20.71,43.63,4,1,0,0,6,1,0,308,0,0,0 +2700,3327,6073,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,7.154036484095669,7.11209610094182,3,0,0,0,-9,0,-1118.030697827683,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.938007653630915,7.372022949949255,0,0,44.69,42.62,6,2,0,0,8,3,0,333,0,0,0 +2701,3328,6074,-9,-9,-9,1,1,0,53,2,0,1,0,2,-9,2,1,0,1,7.011049180789063,7.15221612010059,0,4,0,0,0,-9,0,-914.7227504785003,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,16,16,15,1,2,-9,0,8.350297010815501,8.350297010815501,0,0,0,0,0,0,0,1,1,0,0,0,7.549853027424489,3,50.84,39.36,4,1,0,0,2,2,1,1056,0,0,0 +2701,3329,6075,-9,6074,-9,2,1,1,19,2,0,1,0,2,1,2,1,0,4,7.848941250984083,7.731438811835545,0,3,0,0,0,-9,0,-897.7699232853499,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,40,0,15,1,2,-9,1,8.779052204200116,8.779052204200116,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,2,3,1,339,0,0,0 +2702,3330,6076,-9,6077,-9,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.6447766639601,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,3,0,183.5,0,0,0 +2702,3330,6077,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,2,1,0,4,7.122729375503094,8.159040363039317,7.623830366987448,4,0,0,0,-9,0,-1103.729124558016,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,22,22,15,1,0,-9,0,5.769386048303504,5.769386048303504,0,0,0,0,0,0,0,1,1,0,7.613541730210258,0,0,0,49.75,50.01,2,1,0,1,9,3,0,183.5,0,0,0 +2702,3331,6078,-9,6077,-9,3,1,0,21,2,0,1,0,2,-9,2,1,0,4,7.526358415059716,6.956103035691718,0,3,0,0,0,-9,0,-886.4597259306364,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,25,35,15,1,1,-9,1,6.122548395506135,6.122548395506135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,6,1,0,0,9,3,0,1195,0,0,0 +2703,3332,6079,6080,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,4,7.425108996295942,7.519573531176734,0,1,0,-9,8,0,2,-30.38331934496124,0,0,0,62,2,3,3,2,2,2019,2,2,8,0,40,40,15,1,0,4,0,5.271480678199529,5.271480678199529,0,0,0,0,0,0,0,0,0,0,7.772579941828158,0,0,0,57.16,56.15,6,1,0,0,12,2,1,187.5,0,0,0 +2703,3332,6080,6079,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-2,34.40496125142683,0,0,0,64,3,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.947125243026898,3,59.46,46.99,7,1,0,0,12,2,1,187.5,0,0,0 +2704,3333,6081,6082,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,3,0,8.906797590531141,8.937832730664406,1,0,-9,10,0,-3,53.7163662684337,0,0,0,62,1,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.994268443412334,33.87484364043197,3,60.29,52.11,6,1,0,0,6,5,1,196,0,0,0 +2704,3333,6082,6081,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,7.094350677390115,7.426329384205752,1,0,-9,10,0,3,-6.064034239670245,0,0,0,59,1,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.975689479375082,7.415410766554285,44.36505924303712,3,48.45,57.49,6,1,0,0,6,5,1,196,0,0,0 +2705,3334,6083,-9,6086,6085,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.9121456771388,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,1,1285.25,0,0,0 +2705,3334,6084,-9,6086,6085,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.1266528841684,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,2,1,1285.25,0,0,0 +2705,3334,6085,6086,-9,-9,2,1,1,40,1,0,2,0,2,-9,1,1,0,3,0,0,0,2,0,-9,15,0,0,-24.34675087263148,0,0,0,40,1,4,1,2,-9,2019,1,1,9,0,57,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,5,1,0,0,5,2,1,1285.25,0,0,0 +2705,3334,6086,6085,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,4,7.260077686638002,7.022135720670301,0,2,0,-9,16,0,0,76.08006998798538,0,0,1,40,2,3,1,-9,2,2019,1,2,11,1,16,16,15,1,1,1,0,8.298952980738941,8.298952980738941,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,5,1,0,0,5,2,1,1285.25,0,0,0 +2706,3335,6087,6088,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,6.64834786544277,6.664970519422928,1,0,-9,9,0,-1,147.8003927858956,0,0,0,70,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.945979975566799,6.471037900215945,0,0,54.13,48.04,6,1,0,0,10,3,1,429,0,0,0 +2706,3335,6088,6087,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.229413781286248,7.253149717615866,1,0,-9,9,0,1,-28.52042529164302,0,0,0,69,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.822070903027192,7.361916525215005,0,0,56.33,51.02,5,1,0,0,10,3,1,429,0,0,0 +2707,3336,6089,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,6.713295964628681,6.673868200068258,3,0,0,0,-9,0,-1002.919691911245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.771050119131612,6.616969398931056,0,0,52.24,34.16,6,1,0,0,4,2,1,1103,0,0,0 +2708,3337,6090,6092,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,3,8.027097679814737,7.842744813306274,0,2,0,-9,6,0,-2,-4.942233279958657,0,0,0,41,2,5,1,-9,-9,2019,1,1,16,5,38,38,15,1,5,1,0,7.20477436152682,7.20477436152682,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.06,50.73,4,2,0,0,6,3,1,1119.666666666667,0,0,0 +2708,3337,6091,-9,6092,6090,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.0489409240367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,1119.666666666667,0,0,0 +2708,3337,6092,6090,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,5,7.179350593510994,7.634104264405448,0,2,0,-9,6,0,2,31.71918505447242,0,0,1,39,2,3,1,2,2,2019,1,2,6,0,14,25,15,1,0,1,0,13.70524845933738,13.70524845933738,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,1,1,0,0,6,3,1,1119.666666666667,0,0,0 +2709,3338,6093,6094,-9,-9,1,1,1,56,1,0,0,0,2,-9,97,3,0,4,0,7.64802727260718,7.384075987820808,1,0,-9,30,0,5,12.79877879715407,0,0,0,51,2,4,1,3,2,2019,3,2,1,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.832461680012862,7.437984472623826,0,0,57.16,56.15,6,1,0,0,7,4,1,620.5,0,0,0 +2709,3338,6094,6093,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,8.277560603022042,8.510638563880569,0,1,0,-9,30,0,-5,-4.641883207740804,0,0,0,56,2,4,3,3,3,2019,2,1,10,0,39,39,15,1,1,3,0,14.25155042068742,14.25155042068742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,6,1,0,0,7,4,1,620.5,0,0,0 +2709,3339,6095,-9,6094,6093,3,1,1,20,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1153.185479797377,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.274822908000837,0,0,0,52.24,58.56,6,1,0,0,7,1,1,307,0,0,0 +2710,3340,6096,6098,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.550959038940356,8.916744577290382,0,2,0,-9,21,0,1,42.30413365465461,0,0,0,45,1,4,1,-9,-9,2019,1,2,9,1,60,45,15,1,1,1,0,17.30136687782178,17.30136687782178,0,0,0,0,0,0,0,1,1,0,3.327346792919891,0,0,0,54.2,57.49,6,1,0,0,6,5,1,1933.5,0,0,0 +2710,3340,6097,-9,6098,6096,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.3227591465064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,5,1,1933.5,0,0,0 +2710,3340,6098,6096,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,4,7.495043401216741,7.190563789217296,0,2,0,-9,21,0,-1,-14.09951167946179,0,0,0,46,1,4,1,2,2,2019,1,1,9,0,17,16,15,1,0,1,0,13.64964381942957,13.64964381942957,0,0,0,0,0,0,0,1,1,0,.6606622629349536,0,0,0,51.24,58.84,5,1,0,0,6,5,1,1933.5,0,0,0 +2710,3340,6099,-9,6098,6096,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.88340719979,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,6,5,1,1933.5,0,0,0 +2711,3341,6100,6101,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,5.623636089020508,5.863729759705882,1,0,-9,49,0,-4,51.18149749317953,0,0,0,74,3,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.983318332810406,5.865859901003448,0,0,55.36,46.37,6,1,0,0,10,2,1,382,0,0,0 +2711,3341,6101,6100,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,6.474562759601421,6.687175524766483,1,0,-9,49,0,4,-120.6892000278651,0,0,0,70,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.033794019758743,6.563510752932996,0,0,58.15,52.91,7,1,0,0,10,2,1,382,0,0,0 +2712,3342,6102,-9,6104,6103,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.155437252778,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,0,908.5,0,0,0 +2712,3342,6103,6104,-9,-9,2,1,1,33,1,0,2,0,2,-9,1,1,0,3,9.482923328939124,9.414810050167699,0,2,0,-9,8,0,-1,-12.80447495068408,0,0,0,34,2,3,1,-9,-9,2019,1,1,17,5,45,46,15,1,5,1,0,32.67082642994931,32.67082642994931,0,0,0,0,0,0,0,1,1,0,6.996673666011059,0,0,0,43.25,49.27,5,1,0,0,10,5,0,908.5,0,0,0 +2712,3342,6104,6103,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,3,6.551124951490584,6.86687231773908,0,2,0,-9,8,0,1,-137.2091340388388,0,0,1,33,2,3,1,2,2,2019,1,2,15,5,16,12,15,1,5,1,0,6.945428627581181,6.945428627581181,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.12,43.31,6,1,0,0,10,5,0,908.5,0,0,0 +2712,3342,6105,-9,6104,6103,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.5183210380768,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,5,0,908.5,0,0,0 +2713,3343,6106,6107,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,5,0,7.642314092800115,7.200860983160299,1,0,-9,60,0,2,82.32550319116943,0,0,0,79,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.403172923492011,0,0,59.6,52.5,6,1,0,0,7,2,1,460,0,0,0 +2713,3343,6107,6106,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,2.247389881041589,2.844869111719282,1,0,-9,60,0,-2,95.8804149412862,0,0,0,81,2,5,3,3,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.314602931286084,0,0,52,45,6,1,0,0,7,2,1,460,0,0,0 +2714,3344,6108,-9,6109,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1056.676224217101,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,490,0,0,0 +2714,3344,6109,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,3,6.886059089068294,6.999763150293766,0,4,0,0,0,-9,0,-953.7920596272755,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,19,0,15,1,0,-9,0,7.541989736784759,7.541989736784759,0,0,0,0,0,0,0,1,1,0,2.487225190055939,0,0,0,45.57,53.5,6,1,0,0,7,2,0,490,0,0,0 +2715,3345,6110,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,5,6.665600509081337,6.754297858456132,0,3,0,0,0,-9,0,-967.6234129810142,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,24,20,15,1,0,-9,0,4.261342227341061,4.261342227341061,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,13,2,1,111,0,0,0 +2716,3346,6111,6112,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,7.403908597032848,7.90489539969955,1,0,-9,52,0,4,27.74851097320362,0,0,0,69,3,3,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,12.77687955987426,0,0,0,0,1,1,0,4.595068361144249,7.842118284677893,0,0,36.27,39.33,5,1,0,0,9,3,1,321.5,0,0,0 +2716,3346,6112,6111,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,4.600791378116835,4.167080696915091,1,0,-9,52,0,-4,204.2551240955442,0,0,0,73,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,15.91094679881013,0,0,0,0,1,1,0,4.503309956508952,4.339451085139236,0,0,55.93,49.95,6,1,0,0,9,3,1,321.5,0,0,0 +2717,3347,6113,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,3,9.132036446378473,9.089087051593648,0,3,0,0,0,-9,0,-1099.530076717364,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,65,0,15,1,11,-9,0,16.47317091349542,16.47317091349542,0,0,0,0,0,0,0,0,0,0,3.1991324475759,0,0,0,29.46,59.39,4,1,0,0,8,5,0,2599,0,0,0 +2717,3348,6114,-9,-9,-9,2,1,0,33,2,0,0,0,1,-9,1,1,0,3,8.892661986562148,8.93292264081461,0,3,0,0,0,-9,0,-1003.09882374759,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,50,35,15,1,5,-9,0,16.69559236809529,16.69559236809529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.29,61.29,3,1,0,0,8,5,0,470,0,0,0 +2718,3349,6115,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,2,8.486735556233338,8.805985744457681,0,3,0,0,0,-9,0,-1015.88902612883,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,40,40,15,1,6,-9,0,13.89845665519852,13.89845665519852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,25.83,7,4,0,0,8,5,1,202,0,0,0 +2719,3350,6116,6117,-9,-9,1,1,1,49,1,0,0,0,3,-9,2,1,0,4,7.808108353459986,7.740251506354904,0,1,0,-9,9,0,2,14.5790446080839,0,0,0,47,3,3,1,-9,-9,2019,1,2,9,0,60,0,15,1,1,1,0,4.428193925447589,4.428193925447589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,5,0,0,13,4,1,1411,0,0,0 +2719,3350,6117,6116,-9,-9,2,1,0,47,1,0,0,0,3,-9,2,1,0,3,7.209534730594532,7.526078153711234,0,1,0,-9,33,0,-2,2.018583076189019,0,0,0,49,3,4,1,3,3,2019,1,1,20,6,18,34,15,1,6,1,0,9.961266998015285,9.961266998015285,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.4,57.46,3,1,0,0,13,4,1,1411,0,0,0 +2720,3351,6118,-9,6120,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.577082898942,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,363.6666666666667,0,0,0 +2720,3351,6119,-9,6120,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-873.0020564983187,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,9,2,0,363.6666666666667,0,0,0 +2720,3351,6120,-9,-9,-9,1,1,0,44,2,0,2,0,2,-9,2,1,0,2,7.694338224480235,7.617026528929256,0,4,0,0,0,-9,0,-1071.093576887365,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,11,26,24,15,1,11,-9,0,6.919320808642436,6.919320808642436,0,0,0,0,0,0,0,1,1,0,0,0,8.121069154071535,3,22.59,54.89,3,1,0,0,9,2,0,363.6666666666667,0,0,0 +2721,3352,6121,6122,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,3,6.704375496427748,6.702053660476873,0,2,0,-9,7,0,4,-44.96900488286194,0,0,0,45,1,4,1,2,2,2019,1,2,12,0,45,42,15,1,0,1,0,1.870400538771698,1.870400538771698,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,58.42,4,1,0,0,4,4,1,566.5,0,0,0 +2721,3352,6122,6121,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,4,9.18938298779017,8.669269700825961,0,2,0,-9,7,0,-4,24.3077518900743,0,0,0,49,2,3,1,2,2,2019,1,1,14,5,63,70,15,1,5,1,0,13.50390324986158,13.50390324986158,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,61.77,5,1,0,0,4,4,1,566.5,0,0,0 +2722,3353,6123,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,3,8.290665259391929,8.002942829175286,0,3,0,0,0,-9,0,-884.9557706865348,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,36,0,15,1,2,-9,0,8.402325927182368,8.402325927182368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.56,49.66,5,1,0,0,8,4,0,454,0,0,0 +2723,3354,6124,6125,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.379928194747697,8.161367463716918,0,1,0,1,1,-9,11,-20.79608489753655,0,0,0,25,1,4,2,3,2,2019,2,2,8,0,43,35,15,1,0,2,0,9.333836861787624,9.333836861787624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.46,44.55,6,1,0,0,2,3,0,306.5,0,0,0 +2723,3354,6125,6124,-9,-9,2,1,0,25,1,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,1,-9,-11,66.55046760954968,-9,1,1,36,1,4,1,-9,-9,2019,3,1,6,1,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.2566879741010768,0,0,0,57.16,56.15,7,1,0,0,2,3,0,306.5,0,0,0 +2724,3355,6126,6127,-9,-9,2,1,1,42,1,0,0,0,1,-9,2,1,0,4,9.424289695350634,9.451210283975165,0,1,0,-9,7,0,1,87.22087055822303,-9,0,0,41,1,5,1,-9,-9,2019,1,1,9,0,48,0,15,1,1,1,0,24.86395484514162,24.86395484514162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,6,5,0,0,8,5,1,1708,0,0,0 +2724,3355,6127,6126,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,5,10.27134616824196,10.04086297243732,0,1,0,-9,11,0,-1,14.37749227012016,0,0,1,42,1,4,1,2,1,2019,1,2,7,0,52,48,15,1,0,1,0,66.96258382798281,66.96258382798281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,7,1,0,0,8,5,1,1708,0,0,0 +2725,3356,6128,-9,6129,6130,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1143.944555602994,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,0,952.5,0,0,0 +2725,3356,6129,6130,-9,-9,2,1,0,33,1,0,2,0,1,1,2,1,0,4,7.254003436575431,7.457094305618885,0,2,0,-9,8,0,-1,63.02109122232857,-9,0,1,34,2,4,1,-9,-9,2019,1,1,11,0,21,0,15,1,0,1,0,8.984210087376201,8.984210087376201,0,0,0,0,0,0,0,1,1,0,0,0,5.853669754714426,3,37.51,56.99,6,1,0,0,2,3,0,952.5,0,0,0 +2725,3356,6130,6129,-9,-9,1,1,1,34,1,0,2,0,2,-9,2,1,0,4,8.091982746978301,7.845154137192448,0,2,0,-9,8,0,1,103.31657907864,0,0,0,33,1,4,1,1,3,2019,1,2,10,0,20,65,15,1,1,1,0,14.31367354249021,14.31367354249021,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,2,3,0,952.5,0,0,0 +2725,3356,6131,-9,6129,6130,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.3721474453725,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,0,952.5,0,0,0 +2726,3357,6132,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,6.497338062469657,6.400068579465897,3,0,0,0,-9,0,-985.9724081053389,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,4.001512556578497,0,0,1,1,0,1.214744303630321,6.550528121656255,0,0,46.62,26.18,4,1,0,0,13,2,1,615,0,0,0 +2727,3358,6133,6134,-9,-9,2,1,1,64,1,0,0,0,1,-9,1,1,0,3,8.861377442438451,9.094196722607398,0,1,0,-9,6,0,9,-54.581433223449,-9,0,0,55,1,3,1,-9,-9,2019,1,1,8,0,50,0,15,1,0,1,0,21.67555813603865,21.67555813603865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.17,49.39,6,1,0,0,5,5,1,516.5,0,0,0 +2727,3358,6134,6133,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,3,7.821139882168459,7.652970526016949,0,1,0,-9,6,0,0,-52.61586271462212,0,0,0,64,1,3,1,-9,-9,2019,1,2,3,0,15,20,15,1,0,1,0,12.72314691189714,12.72314691189714,0,0,0,0,0,0,0,0,0,0,7.131305918734119,0,0,3,60.7,39.78,6,4,0,0,5,5,1,516.5,0,0,0 +2728,3359,6135,-9,6136,-9,5,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.412033706997,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,3,0,0,6,1,1,216,0,0,0 +2728,3359,6136,-9,-9,-9,1,1,0,44,3,1,2,0,2,-9,3,3,0,2,0,0,0,4,0,-9,0,1,0,-965.7395489695143,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.1,40.66,2,3,1,1,6,1,1,216,0,0,0 +2729,3360,6137,-9,6138,6139,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.918429596823,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,3,0,1109.5,0,0,0 +2729,3360,6138,6139,-9,-9,1,1,0,36,1,1,3,0,2,-9,5,1,0,4,6.932574609659279,7.067143437182748,0,2,0,-9,2,0,-3,31.42719266846335,0,0,1,39,1,4,1,2,1,2019,1,4,11,0,17,18,15,1,2,1,0,8.667825297467639,8.667825297467639,0,0,0,0,0,0,0,1,1,0,0,0,43.08266339214055,3,49,56,5,4,0,0,8,3,0,1109.5,0,0,0 +2729,3360,6139,6138,-9,-9,4,1,1,39,1,1,3,0,1,-9,2,1,0,4,8.350964206100167,8.353981951195506,0,2,0,-9,2,0,3,-38.24902386732144,0,0,0,36,2,4,1,-9,-9,2019,1,1,9,0,45,38,15,1,1,1,0,11.89503438517814,11.89503438517814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,5,4,0,0,8,3,0,1109.5,0,0,0 +2729,3360,6140,-9,6138,6139,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-999.3143647398244,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,8,3,0,1109.5,0,0,0 +2730,3361,6141,-9,6143,6144,5,1,0,10,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1093.898094742954,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,5,3,0,0,7,2,1,473.5714285714286,0,0,0 +2730,3361,6142,-9,6143,6144,3,1,0,14,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-849.9178573172286,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,59,5,3,0,0,7,2,1,473.5714285714286,0,0,0 +2730,3361,6143,6144,-9,-9,1,1,0,43,1,0,5,0,2,-9,2,1,0,4,6.815352724536983,7.093086206567952,0,2,0,-9,10,0,3,21.18513990388534,0,0,1,40,3,2,1,2,2,2019,1,2,6,0,16,16,15,1,0,1,0,6.653405021190158,6.653405021190158,0,0,0,0,0,0,0,1,0,1,1.455356978869425,0,18.87250663283278,2,46.09,55.59,6,3,0,0,7,2,1,473.5714285714286,0,0,0 +2730,3361,6144,6143,-9,-9,2,1,1,40,1,0,5,0,3,-9,2,1,0,2,7.404025513136484,7.710706667852746,0,2,0,-9,3,0,-3,79.73025574630989,0,0,0,43,2,4,1,3,3,2019,1,1,12,0,30,30,15,1,0,1,0,7.607400334664432,7.607400334664432,0,0,0,0,0,0,0,1,0,1,.5870874435957331,0,0,0,37.83,42.51,6,3,0,0,7,2,1,473.5714285714286,0,0,0 +2730,3361,6145,-9,6143,6144,4,1,0,12,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1003.170357312748,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,5,3,0,0,7,2,1,473.5714285714286,0,0,0 +2730,3361,6146,-9,6143,6144,7,1,0,5,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.986448120056,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,7,2,1,473.5714285714286,0,0,0 +2730,3361,6147,-9,6143,6144,6,1,1,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.720445396162,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,3,0,0,7,2,1,473.5714285714286,0,0,0 +2731,3362,6148,6149,-9,-9,1,1,1,52,1,0,0,0,3,-9,1,1,0,5,9.028744849465507,8.485921668759877,0,1,0,-9,9,0,-4,-57.99895684471048,0,0,0,56,2,3,1,2,2,2019,1,2,0,0,60,70,15,1,0,1,0,14.33113758854238,14.33113758854238,0,0,0,0,0,0,0,0,0,0,5.51944825226967,0,0,0,62.39,56.71,7,1,0,0,4,5,1,1025.5,0,0,0 +2731,3362,6149,6148,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.722814543070563,7.810959730592581,0,1,0,-9,9,0,4,-39.62465823582109,0,0,0,52,3,5,1,3,3,2019,1,1,7,0,24,30,15,1,0,1,0,10.4850508592949,10.4850508592949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,3,1,0,0,4,5,1,1025.5,0,0,0 +2732,3363,6150,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,5.294899782147467,5.785940967735356,3,0,0,0,-9,0,-1176.972655925504,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.432186650951949,0,0,30.5,55.26,3,1,0,0,12,2,1,1015,0,0,0 +2733,3364,6151,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-934.4745922806896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,1,3.333874129442656,0,0,0,0,28.69045569418022,1,1,0,0,0,0,0,36.53,14.85,1,1,0,0,13,1,0,1070,0,0,0 +2734,3365,6152,6153,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,4,8.438332209597666,8.373844955505811,0,1,0,-9,8,0,3,31.76381853257514,0,0,1,30,2,4,1,2,2,2019,1,2,8,0,35,37,15,1,0,1,0,17.59604741697617,17.59604741697617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,7,5,1,2137.5,0,0,0 +2734,3365,6153,6152,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,4,9.424622610028811,9.565021181947087,0,1,0,-9,8,0,-3,-15.45341917143196,0,0,0,33,2,4,1,2,2,2019,1,1,8,1,53,48,15,1,1,1,0,29.26986082761653,29.26986082761653,0,0,0,0,0,0,0,0,0,0,4.643146100985094,0,0,0,49.86,55.31,6,1,0,0,7,5,1,2137.5,0,0,0 +2735,3366,6154,6155,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,2,0,3.190336056310683,3.423589924170319,1,0,-9,7,0,7,44.75854851053521,0,0,0,59,2,1,3,3,3,2019,4,2,15,4,0,52,15,4,4,3,0,0,0,1,0,0,0,0,0,0,1,1,0,3.255560278212605,3.552856585144383,0,0,41.88,28.1,6,1,0,0,5,1,0,174,0,0,0 +2735,3366,6155,6154,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,1,0,0,0,1,0,-9,7,0,-7,-5.915796083594955,0,0,0,66,3,2,3,-9,-9,2019,4,1,11,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.43,33.51,6,1,0,0,5,1,0,174,0,0,0 +2736,3367,6156,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-862.4378722286846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,9,1,0,395,0,0,0 +2737,3368,6157,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,2,0,0,5.637483303977946,3,0,0,0,-9,0,-924.8155899476044,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,30,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3297753868251905,5.148713282503318,0,0,54.99,30.43,6,1,0,1,6,1,0,1658,0,0,0 +2738,3369,6158,6159,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,2,0,5.183480736668943,5.432487503966819,1,0,-9,1,-9,-1,-107.1917906242269,-9,0,0,85,3,4,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.230326580785593,5.093820780586646,0,0,47.72,38.98,4,1,0,0,11,2,1,435.5,0,0,0 +2738,3369,6159,6158,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,4,0,5.535122315028181,5.95773172737734,1,0,-9,1,-9,1,173.1293986055563,-9,0,0,84,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.219227540335975,5.522685225059025,41.66111562974572,1,51.24,58.84,6,1,0,0,11,2,1,435.5,0,0,0 +2739,3370,6160,-9,6163,6162,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-983.7861794622575,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,2,0,0,2,2,1,637.75,0,0,0 +2739,3370,6161,-9,6163,6162,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.190774823101,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,2,2,1,637.75,0,0,0 +2739,3370,6162,6163,-9,-9,2,1,1,41,1,1,2,0,1,-9,1,1,0,2,0,0,0,2,0,-9,2,0,14,23.81787429836504,0,0,0,27,1,2,1,-9,-9,2019,1,1,12,0,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.27,51.53,5,5,0,0,2,2,1,637.75,0,0,0 +2739,3370,6163,6162,-9,-9,1,1,0,27,1,1,2,0,1,-9,5,1,0,2,7.53042884506243,7.6521970185607,0,2,0,-9,2,0,-14,-105.9749893631336,0,1,1,41,1,2,1,-9,-9,2019,1,2,11,1,23,22,15,1,1,1,0,9.978544628400659,9.978544628400659,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.69,41.42,6,1,0,0,2,2,1,637.75,0,0,0 +2740,3371,6164,-9,-9,-9,2,1,0,68,3,0,0,0,1,-9,4,3,0,3,0,7.655952669680312,7.457341695695214,3,0,-9,0,1,0,-1010.910638868364,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.833890718004778,7.299159021415464,0,0,54.37,54.8,6,1,0,0,6,3,1,936,0,0,0 +2741,3372,6165,-9,-9,-9,3,1,0,22,2,0,0,0,1,-9,2,1,0,5,7.617177781864643,7.949365952444022,0,3,0,0,0,-9,0,-1041.494823714496,0,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,8,0,32,31,15,1,0,-9,1,7.593140614615765,7.593140614615765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,5,3,1,708,0,0,0 +2742,3373,6166,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-935.5822581651414,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,0,0,15,4,8,-9,0,0,0,1,12.48327513345046,0,0,0,6.79194796077053,103.9050144410181,1,1,0,2.4171016290678,0,0,0,38.25,19,2,1,0,0,12,1,0,2302,0,0,0 +2743,3374,6167,6168,-9,-9,1,1,0,34,1,1,1,0,1,-9,5,1,0,3,0,0,0,2,0,-9,7,0,2,-21.16059935531509,0,0,1,32,2,3,1,-9,-9,2019,1,2,9,0,0,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.236344529346173,0,0,0,57.33,53.46,6,3,0,0,7,5,1,1051.333333333333,0,0,0 +2743,3374,6168,6167,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,3,9.043883259011491,9.226963041184561,0,2,0,-9,7,0,-2,32.88864572456266,0,0,0,34,1,3,1,-9,-9,2019,1,1,12,0,48,42,15,1,0,1,0,20.95809468880863,20.95809468880863,0,0,0,0,0,0,0,1,1,0,4.91906389189296,0,0,0,46.08,57.2,6,1,0,0,7,5,1,1051.333333333333,0,0,0 +2743,3374,6169,-9,6167,6168,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-954.6900789432877,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,2,0,0,7,5,1,1051.333333333333,0,0,0 +2744,3375,6170,6171,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,5,9.313022497454376,9.52442479967538,0,2,0,-9,12,0,-2,51.15974272810723,0,0,1,46,1,4,1,1,1,2019,1,1,6,0,42,42,15,1,0,1,0,43.08306628598664,43.08306628598664,0,0,0,0,0,0,0,0,0,0,7.249961152356562,0,0,0,58.05,54.52,6,2,0,0,2,5,1,896,0,0,0 +2744,3375,6171,6170,-9,-9,1,1,1,46,1,0,2,0,1,-9,1,1,0,4,9.590763994101964,9.492523510338486,0,2,0,-9,12,0,2,60.95587858723518,0,0,0,44,1,5,1,1,1,2019,1,2,7,0,48,48,15,1,0,1,0,41.47743788395537,41.47743788395537,0,0,0,0,0,0,0,0,0,0,1.186702198819667,0,0,0,54.79,55.86,6,1,0,0,2,5,1,896,0,0,0 +2744,3375,6172,-9,6170,6171,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.828416200531,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,2,5,1,896,0,0,0 +2744,3375,6173,-9,6170,6171,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0166471313014,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,2,0,0,2,5,1,896,0,0,0 +2745,3376,6174,6175,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,8.360624894790615,8.184905437618923,1,0,-9,39,0,0,-76.82886704489137,0,0,0,67,1,4,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.452975600206927,8.135753660434254,0,0,48.94,54.95,6,1,0,0,9,4,1,1235,0,0,0 +2745,3376,6175,6174,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,6.919467891217044,6.975447476806901,1,0,-9,39,0,0,-2.265191412551446,0,0,0,67,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.787730034334179,6.761060993799736,0,0,58.33,47.36,7,1,0,0,9,4,1,1235,0,0,0 +2746,3377,6176,6179,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,5,9.022072695828681,9.142405184854974,0,2,0,-9,18,0,4,-43.59725921735647,0,0,0,39,1,3,1,3,2,2019,1,2,4,0,35,35,15,1,0,1,0,32.55099887117883,32.55099887117883,0,0,0,0,0,0,0,1,1,0,4.64563003559983,0,0,0,52.21,59.91,6,3,0,0,8,5,1,380.25,0,0,0 +2746,3377,6177,-9,6179,6176,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.656885995746,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,5,1,380.25,0,0,0 +2746,3377,6178,-9,6179,6176,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1059.529478432157,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,8,5,1,380.25,0,0,0 +2746,3377,6179,6176,-9,-9,2,1,0,39,1,0,2,0,1,-9,1,1,0,3,7.236362435084491,7.229183872898999,0,2,0,-9,18,0,-4,-13.83207844150837,0,0,1,43,1,5,1,2,1,2019,1,1,6,1,15,21,15,1,1,1,0,9.763352089210173,9.763352089210173,0,0,0,0,0,0,0,1,1,0,4.443282903256232,0,0,0,49.02,55.87,6,3,0,0,8,5,1,380.25,0,0,0 +2747,3378,6180,6181,-9,-9,2,1,0,23,1,0,0,0,2,-9,7,2,0,2,6.356105848590173,6.081368202207166,0,1,0,-9,3,0,-3,131.2110961906131,1,1,1,26,2,2,1,-9,-9,2019,3,1,25,10,1,37,15,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.56,61.34,5,1,0,0,9,4,1,452,0,0,0 +2747,3378,6181,6180,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,2,8.577315655831242,8.891523357523726,0,1,0,-9,3,0,3,75.10203484664322,0,1,0,23,2,2,2,2,2,2019,2,2,14,1,50,75,15,1,1,2,0,10.73734166498008,10.73734166498008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.68,56.27,4,1,0,0,9,4,1,452,0,0,0 +2748,3379,6182,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,7.026855500736493,7.0776259316859,3,0,0,0,-9,0,-982.1757038352807,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.659226742559147,6.825025077776877,0,0,55.12,44.8,6,1,0,0,4,2,1,419,0,0,0 +2749,3380,6183,6184,-9,-9,1,1,1,52,1,0,2,0,2,-9,2,1,0,3,7.6983607921927,7.729500185632718,0,2,0,-9,10,0,6,3.217182063693873,0,0,0,46,1,2,3,2,3,2019,2,2,12,0,40,31,15,1,0,3,0,5.653853199866623,5.653853199866623,0,0,0,0,0,0,0,1,1,0,0,0,62.000810994639,1,48.21,50.73,5,1,0,0,12,2,1,815.5,0,0,0 +2749,3380,6184,6183,-9,-9,2,1,0,46,1,0,2,0,1,-9,3,3,0,2,0,0,0,2,0,-9,10,0,-6,-101.9969778318871,0,0,0,52,2,3,1,2,3,2019,3,1,24,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.83,53.4,5,1,1,0,12,2,1,815.5,0,0,0 +2749,3380,6185,-9,6184,6183,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.7289100546355,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,815.5,0,0,0 +2749,3380,6186,-9,6184,6183,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.403351853077,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,815.5,0,0,0 +2750,3381,6187,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.466544505563524,8.511880587447544,0,3,0,0,0,-9,0,-912.3017100253904,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,36,36,15,1,2,-9,0,15.08026004277649,15.08026004277649,0,0,0,0,0,0,0,1,1,0,1.56769668396021,0,0,0,50.03,55.3,4,1,0,0,2,5,1,376,0,0,0 +2751,3382,6188,6189,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,4,9.182421868986316,9.21623717110853,0,1,0,-9,1,-9,5,-10.5161138293769,-9,0,0,25,1,5,1,-9,-9,2019,1,1,10,0,45,0,15,1,1,1,0,30.92720355305302,30.92720355305302,0,0,0,0,0,0,0,0,0,0,6.428309834799562,0,0,0,50,57,5,1,0,0,1,5,1,718.5,0,0,0 +2751,3382,6189,6188,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,5,7.931240940349127,8.273142418693384,0,1,0,1,1,-9,-5,132.1498592337575,0,1,1,30,2,4,1,2,3,2019,1,2,9,0,37,38,15,1,0,1,0,11.08462893945771,11.08462893945771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,58.56,6,1,0,0,1,5,1,718.5,0,0,0 +2752,3383,6190,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,2,0,6.589545052673196,6.401150494671297,3,0,0,0,-9,0,-1055.94604293318,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.900439194432705,6.378162331446058,0,0,34.89,43.84,4,1,0,1,5,2,1,2693,0,0,0 +2753,3384,6191,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-966.3754811193601,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,55.3,4,3,1,1,7,1,1,945,0,0,0 +2754,3385,6192,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,4,7.074980673255157,7.121903520283588,0,4,0,0,0,-9,0,-1039.509699697943,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,18,20,15,1,0,-9,0,9.828851307945147,9.828851307945147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,56.48,4,1,0,0,11,2,0,583.5,0,0,0 +2754,3385,6193,-9,6192,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-920.2906390029395,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,0,583.5,0,0,0 +2755,3386,6194,-9,6196,6197,2,1,1,18,2,0,2,1,2,0,7,2,0,5,6.795557812453977,6.788740893933724,0,3,0,0,0,-9,0,-970.9499475125833,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4145672107593962,0,0,0,57.06,57.76,7,1,0,0,9,4,0,464,0,0,0 +2755,3387,6195,-9,6196,6197,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.880225358857,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,0,935.6666666666666,0,0,0 +2755,3387,6196,6197,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,5,8.676360334929573,8.512718922794933,6.347618950914126,2,0,-9,2,0,-10,-131.3354236531127,0,0,1,49,2,5,1,2,2,2019,1,4,8,0,38,38,15,1,0,1,0,17.55774711661178,17.55774711661178,0,0,0,0,0,0,0,1,1,0,6.749056500306676,0,0,0,54.1,59.11,6,1,0,0,9,4,0,935.6666666666666,0,0,0 +2755,3387,6197,6196,-9,-9,4,1,1,49,1,0,2,0,2,-9,1,1,0,5,8.743824661328922,8.347041104085948,0,2,0,-9,2,0,10,-28.00439078414772,0,0,0,39,2,5,1,-9,-9,2019,1,1,8,0,30,45,15,1,0,1,0,21.96000098015639,21.96000098015639,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,9,4,0,935.6666666666666,0,0,0 +2756,3388,6198,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1014.760718839329,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,36,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,4,1,0,8,1,0,2024,0,0,0 +2757,3389,6199,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,3,8.796620623471734,8.931872166794811,0,3,0,0,0,-9,0,-962.7249456126633,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,42,42,15,1,0,-9,0,20.58624706633656,20.58624706633656,0,0,0,0,0,0,0,0,0,0,6.789919131576704,0,0,0,63.56,42.4,6,1,0,0,6,5,1,349,0,0,0 +2758,3390,6200,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1092.115739468926,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.63,40.33,5,1,0,0,12,1,0,401,0,0,0 +2759,3391,6201,-9,-9,-9,1,1,0,24,2,0,2,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-855.4487008535582,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.1,33.2,2,1,1,0,6,1,0,666.6666666666666,0,0,0 +2759,3391,6202,-9,6201,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-951.3402322668849,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,666.6666666666666,0,0,0 +2759,3391,6203,-9,6201,-9,2,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1110.751477930241,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,666.6666666666666,0,0,0 +2760,3392,6204,6205,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-2,100.1687622964554,0,0,0,84,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.841103586490898,0,0,0,58.92,48.59,7,1,0,0,6,2,1,586,0,0,0 +2760,3392,6205,6204,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,7.442485508947554,7.449761242551861,1,0,-9,8,0,2,14.29902535334198,0,0,0,82,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.407315178915797,0,0,43.66,50.25,5,1,0,0,6,2,1,586,0,0,0 +2761,3393,6206,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,5,8.977561924673493,8.821381573843578,0,3,0,0,0,-9,0,-993.6691631749206,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,42,39,15,1,1,-9,0,19.62306152015508,19.62306152015508,0,0,0,0,0,0,0,0,0,0,4.583943026973544,0,0,0,51.73,58.82,6,1,0,0,12,5,1,758,0,0,0 +2762,3394,6207,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,4,7.764792349399873,7.450252076853109,0,3,0,0,0,-9,0,-1060.388643949248,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,42,35,15,1,3,-9,0,5.760366362356431,5.760366362356431,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.13,59.25,6,1,0,0,7,3,0,584,0,0,0 +2763,3395,6208,6209,-9,-9,2,1,0,27,1,0,0,0,1,0,7,2,0,4,0,7.502209820839511,7.595688526198925,1,0,-9,2,0,3,-14.96180962174273,-9,1,1,24,1,4,1,-9,-9,2019,3,1,17,5,0,0,15,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.054527819883674,0,0,0,39.48,58.88,4,1,0,0,4,4,0,770.5,0,0,0 +2763,3395,6209,6208,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,4,8.114279032846598,7.90909491495189,0,1,0,-9,2,0,-3,34.01322463840206,0,1,0,27,1,4,2,1,1,2019,2,2,7,0,35,38,15,1,0,2,0,9.989377828183379,9.989377828183379,0,0,0,0,0,0,0,0,0,0,2.130404242453273,0,0,0,54.2,57.49,4,1,0,0,4,4,0,770.5,0,0,0 +2764,3396,6210,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,3,8.371543833218187,8.41376090623595,0,3,0,0,0,-9,0,-1025.345323233369,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,48,15,1,0,-9,0,10.73746095186143,10.73746095186143,0,0,0,0,0,0,0,1,1,0,4.793953194946712,0,0,0,50.2,52.61,6,1,0,0,9,5,1,290,0,0,0 +2765,3397,6211,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,7.5125144047462,7.67896720071806,0,3,0,0,0,-9,0,-1010.71561854584,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,28,0,15,1,10,-9,0,6.031682698078319,6.031682698078319,0,0,0,0,0,0,0,1,1,0,6.18502129841407,0,0,0,23.78,67.57000000000001,1,1,0,0,8,3,1,2142,0,0,0 +2766,3398,6212,6214,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,4,9.162549553607263,8.917766606039718,6.142815397468162,2,0,-9,7,0,8,-59.58328878107244,0,0,0,49,2,4,3,2,2,2019,2,2,9,0,48,43,15,1,0,3,0,19.7820486515765,19.7820486515765,0,0,0,0,0,0,0,0,0,0,6.545566914641778,6.585399059226171,0,0,49.94,58.01,2,1,0,0,4,5,1,670.3333333333334,0,0,0 +2766,3398,6213,-9,6214,6212,3,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-886.5040307060926,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,4,5,1,670.3333333333334,0,0,0 +2766,3398,6214,6212,-9,-9,2,1,0,49,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-8,-93.6744946578592,0,0,0,57,2,4,1,2,2,2019,3,1,10,0,0,6,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,670.3333333333334,0,0,0 +2766,3399,6215,-9,6214,6212,4,1,1,21,2,0,1,1,1,0,7,2,0,4,0,5.377150305437801,5.402364113819692,3,0,0,0,-9,0,-891.1833672909918,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.830751863674161,0,0,0,43.44,58.7,6,1,0,0,4,2,1,347,0,0,0 +2767,3400,6216,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,3,0,6.221570630635435,6.112814868059245,3,0,0,0,-9,0,-998.6603341467276,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.60418189890343,5.995965561373687,0,0,55.96,49.93,6,1,0,0,12,2,0,216,0,0,0 +2768,3401,6217,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,2,1,0,4,6.94232216545447,7.082994985972267,0,3,0,0,0,-9,0,-1065.346917920211,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,18,18,15,1,11,-9,0,8.58945970711933,8.58945970711933,0,0,0,0,0,0,0,1,1,0,2.914462081549831,0,10.20840905611066,3,21.73,64.31,3,1,0,0,7,2,1,1557,0,0,0 +2769,3402,6218,6219,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,5,8.862823177620601,8.716276188231172,0,1,0,-9,8,0,-1,15.80628664777275,0,0,0,61,2,3,1,3,3,2019,1,1,6,0,55,55,15,1,0,1,0,11.92949103741239,11.92949103741239,0,0,0,0,0,0,0,0,0,0,1.40625908369257,0,0,0,62.39,56.71,7,1,0,0,9,5,1,449.5,0,0,0 +2769,3402,6219,6218,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,3,8.333087813055476,8.217140078129354,0,1,0,-9,38,0,1,-115.5978069936875,0,0,0,60,2,5,1,3,3,2019,1,2,8,0,36,36,15,1,0,1,0,11.77224840537573,11.77224840537573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,6,1,0,0,9,5,1,449.5,0,0,0 +2770,3403,6220,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,2,1,0,3,8.426017999619637,8.531518983226707,0,3,0,0,0,-9,0,-1007.384680093552,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,60,60,15,1,0,-9,0,9.045499601318149,9.045499601318149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,11,5,1,1030,0,0,0 +2771,3404,6221,-9,6224,6225,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.641454409538,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1620.2,0,0,0 +2771,3404,6222,-9,6224,6225,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.7975326746619,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,1620.2,0,0,0 +2771,3404,6223,-9,6224,6225,3,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.649350186527,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,1620.2,0,0,0 +2771,3404,6224,6225,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,4,7.037152279336309,7.390719678004097,0,2,0,-9,4,0,8,-92.50904076372403,0,0,1,34,2,4,1,-9,-9,2019,1,2,8,0,16,16,15,1,0,1,0,8.988461049361453,8.988461049361453,0,0,0,0,0,0,0,1,1,0,0,0,14.66169414461248,3,46.5,58.26,6,1,0,0,6,4,1,1620.2,0,0,0 +2771,3404,6225,6224,-9,-9,2,1,1,34,1,0,3,0,2,-9,2,1,0,4,8.50799479137244,8.51953442387191,0,2,0,-9,4,0,-8,264.6564095991356,-9,0,0,42,1,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,14.36261390711724,14.36261390711724,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,6,4,1,1620.2,0,0,0 +2772,3405,6226,6227,-9,-9,2,1,0,72,1,0,0,0,3,-9,2,1,0,3,6.604752340039123,6.958267947356638,0,1,0,-9,56,0,-6,90.29983265871152,0,0,0,78,2,4,3,-9,-9,2019,2,1,6,0,11,11,15,1,0,4,0,8.269263710471042,8.269263710471042,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,7,1,0,0,4,2,1,239.5,0,0,0 +2772,3405,6227,6226,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,4.5626965449611,4.406315366337329,1,0,-9,56,0,6,-101.4860382144082,0,0,0,72,3,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.952911451235649,4.031910375926849,0,0,60.12,54.8,7,1,0,0,4,2,1,239.5,0,0,0 +2773,3406,6228,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,2,8.009069037202329,7.862440996422388,0,3,0,-9,0,-9,0,-985.6424340270318,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,43,0,15,1,2,-9,0,7.518845113397568,7.518845113397568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.85,44.92,4,1,0,1,9,4,0,843,0,0,0 +2774,3407,6229,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,5,0,6.254139474051609,6.109309665067884,3,0,0,0,-9,0,-1086.734560855468,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.180239591073187,5.620330853919126,0,0,51.06,45.65,1,1,0,0,4,2,0,211,0,0,0 +2775,3408,6230,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,4.601537432401988,4.38565455427348,3,0,0,0,-9,0,-873.3482684383225,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.951878906863088,0,0,65.83,37.25,7,1,0,0,9,1,0,241,0,0,0 +2775,3409,6231,-9,-9,-9,2,1,0,59,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-989.511543076007,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.28,64.75,7,1,1,0,9,1,0,393,0,0,0 +2776,3410,6232,6234,-9,-9,2,1,1,33,1,1,1,0,2,-9,2,1,0,3,8.474405891736005,8.413504618427639,0,2,0,-9,3,0,-4,16.25384248600962,0,0,0,37,2,4,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,13.94493215354582,13.94493215354582,0,0,0,0,0,0,0,1,1,0,1.723933485239937,0,0,0,54.27,48.04,6,1,0,0,6,5,1,1036.333333333333,0,0,0 +2776,3410,6233,-9,6234,6232,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.261498045018,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,5,1,1036.333333333333,0,0,0 +2776,3410,6234,6232,-9,-9,1,1,0,37,1,1,1,0,2,-9,2,1,0,4,8.475258888283772,8.771328346042935,0,2,0,-9,3,0,4,50.87617105213442,0,0,1,33,2,3,1,3,2,2019,1,2,11,2,39,40,15,1,2,1,0,19.12857140575546,19.12857140575546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.65,59.48,6,1,0,0,6,5,1,1036.333333333333,0,0,0 +2777,3411,6235,6236,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,7.493829558607408,8.027160182047691,1,0,-9,54,0,-1,-255.069871341598,0,0,0,76,2,3,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.205581722435811,0,0,62.18,36.18,5,1,0,0,4,3,1,813.5,0,0,0 +2777,3411,6236,6235,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,54,0,1,-161.9001514478532,0,0,0,75,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.842557016559668,0,0,1,52,46,6,1,0,0,4,3,1,813.5,0,0,0 +2778,3412,6237,-9,6239,6240,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-931.7296726693808,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,62,5,3,0,0,8,2,0,377,0,0,0 +2778,3412,6238,-9,6239,6240,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.0894936370056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,8,2,0,377,0,0,0 +2778,3412,6239,6240,-9,-9,2,1,0,32,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-7,74.82216372547529,0,0,1,39,2,4,1,2,2,2019,3,1,20,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.36,42.46,3,3,0,0,8,2,0,377,0,0,0 +2778,3412,6240,6239,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,4,7.451690772416081,7.580315620556599,0,2,0,-9,3,0,7,97.28468637534533,-9,0,0,32,2,4,3,-9,-9,2019,2,2,9,0,16,0,15,1,0,3,0,15.49036025728589,15.49036025728589,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,5,3,0,0,8,2,0,377,0,0,0 +2779,3413,6241,6242,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,5,9.223418961237105,9.221340061534871,0,2,0,-9,27,0,2,15.74417072176131,0,0,0,44,1,1,1,3,1,2019,1,1,8,0,42,39,15,1,0,1,0,31.67716666606452,31.67716666606452,0,0,0,0,0,0,0,1,1,0,1.584578434541134,0,0,0,58.05,54.52,6,1,0,0,8,5,1,349,0,0,0 +2779,3413,6242,6241,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,1,9.373072188063841,9.169568768038642,0,2,0,-9,27,0,-2,-97.51989737070197,0,0,1,46,1,5,1,2,1,2019,1,2,35,12,41,35,15,1,12,1,0,33.91285202857549,33.91285202857549,0,0,0,0,0,0,0,1,1,0,6.026835167861407,0,0,0,18.09,44.97,3,1,0,0,8,5,1,349,0,0,0 +2779,3413,6243,-9,6242,6241,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-850.2772575209239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,5,1,349,0,0,0 +2779,3413,6244,-9,6242,6241,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.731090197301,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,5,1,349,0,0,0 +2780,3414,6245,6246,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,2,0,6.02414612815903,5.596510105533943,1,0,-9,6,0,-1,28.08970720576619,0,0,0,78,3,4,3,-9,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.662166566869342,5.930294853671563,0,0,36.03,35.07,6,1,0,0,7,2,1,342,0,0,0 +2780,3414,6246,6245,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,1,-60.04050061439217,0,0,0,77,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.167818192748876,0,4.98726707980807,1,51.77,58.57,7,1,0,0,7,2,1,342,0,0,0 +2781,3415,6247,6249,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,4,8.773564912616916,8.89090061978348,0,2,0,-9,6,0,8,6.785750540450067,0,0,0,28,1,4,1,2,2,2019,1,2,9,0,43,42,15,1,0,1,0,19.85122211179293,19.85122211179293,0,0,0,0,0,0,0,1,1,0,1.425552386822711,0,0,0,53.44,55.06,6,1,0,0,9,5,1,705,0,0,0 +2781,3415,6248,-9,6249,6247,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-956.6107576690356,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,5,1,705,0,0,0 +2781,3415,6249,6247,-9,-9,2,1,0,28,1,1,1,0,1,-9,5,1,0,4,8.95367490521873,8.932967513724599,0,2,0,-9,6,0,-8,5.717655215930979,0,1,1,36,2,4,1,-9,-9,2019,1,1,11,0,45,47,15,1,0,1,0,18.63810877758013,18.63810877758013,0,0,0,0,0,0,0,1,1,0,7.648658079410895,0,0,0,51.49,57.57,6,1,0,0,9,5,1,705,0,0,0 +2782,3416,6250,-9,6251,6252,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.4002856382374,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,12,5,1,1085.5,0,0,0 +2782,3416,6251,6252,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.78246031138095,8.705634919944028,0,2,0,-9,3,0,-2,62.75962500937174,0,0,1,38,1,3,1,-9,-9,2019,1,1,6,0,36,38,15,1,0,1,0,16.81760142872414,16.81760142872414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,1085.5,0,0,0 +2782,3416,6252,6251,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,3,9.31493238376075,9.254399316837764,0,2,0,-9,3,0,2,47.91681232666835,0,0,0,36,1,4,1,1,1,2019,1,2,12,3,45,40,15,1,3,1,0,21.60787306291872,21.60787306291872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,6,1,0,0,12,5,1,1085.5,0,0,0 +2782,3416,6253,-9,6251,6252,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.3841412649117,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,1085.5,0,0,0 +2783,3417,6254,6255,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,3,8.558683533405409,8.776296263568533,0,1,0,-9,2,0,-6,114.2469845978264,0,0,1,50,1,3,1,-9,-9,2019,1,1,10,1,40,45,15,1,1,1,0,15.93074525096279,15.93074525096279,0,0,0,0,0,0,0,0,0,0,3.24699901387498,0,6.528735259655005,3,49.45,41.03,6,1,0,0,13,5,1,1151,0,0,0 +2783,3417,6255,6254,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,3,8.6936332998024,8.939548221528941,0,1,0,-9,2,0,6,58.33281054218059,0,0,0,44,1,3,1,2,1,2019,1,2,10,0,40,37,15,1,0,1,0,16.74747855508208,16.74747855508208,0,0,0,0,0,0,0,0,0,0,3.849180716711432,0,0,0,44.25,47.15,6,1,0,0,13,5,1,1151,0,0,0 +2784,3418,6256,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,4,7.460190651713203,8.093407967253524,7.50636938812378,3,0,0,0,-9,0,-954.8830965931548,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.116595721144728,7.8255503555152,0,0,57.16,56.15,6,1,0,0,7,4,1,375,0,0,0 +2785,3419,6257,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,3,8.534709935802965,8.541631841498395,0,3,0,0,0,-9,0,-1042.686565722766,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,1,37,40,15,1,1,-9,0,18.98052407639236,18.98052407639236,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,3,0,0,7,5,1,607,0,0,0 +2785,3420,6258,-9,6257,-9,3,1,1,21,2,0,0,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1104.275907506205,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,2,0,0,7,1,1,1403,0,0,0 +2786,3421,6259,6260,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,9.112284328463636,9.316744980575155,0,1,0,-9,1,-9,14,94.05523585458032,-9,0,0,44,1,5,1,-9,-9,2019,1,1,10,0,50,0,15,1,1,1,0,20.6461998701428,20.6461998701428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,52,6,1,0,0,8,5,1,678,0,0,0 +2786,3421,6260,6259,-9,-9,1,1,1,44,1,0,0,0,1,-9,1,1,0,5,9.53595117852193,9.547679807445149,0,1,0,1,1,-9,-14,196.8135291319442,0,0,0,58,1,4,1,3,2,2019,1,2,23,8,10,0,15,1,8,1,0,180.1301712960702,180.1301712960702,0,0,0,0,0,0,0,0,0,0,3.524613550034519,0,0,0,51.67,46.42,3,1,0,0,8,5,1,678,0,0,0 +2787,3422,6261,6262,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,3,6.103867600752988,7.823067535738346,7.603656401462306,1,0,-9,23,0,6,-26.50473609970934,0,0,0,55,1,3,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.654563560376603,7.815536218994641,0,0,57.33,53.46,6,1,0,0,9,4,1,898,0,0,0 +2787,3422,6262,6261,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,3,8.120672481225629,8.033681903579934,4.998823768365089,1,0,-9,23,0,-6,-141.7443478564845,0,0,0,61,1,3,3,2,1,2019,2,1,9,0,20,30,15,1,0,4,0,21.3713205000767,21.3713205000767,0,0,0,0,0,0,0,0,0,0,5.037667296611286,5.376679820295801,0,0,39.63,48.18,5,1,0,0,9,4,1,898,0,0,0 +2788,3423,6263,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,1,0,7.50054585470303,7.895877715763926,3,0,-9,0,1,0,-957.0274704957974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.525392194558677,7.311360778473938,17.74128407726665,3,27.29,29.73,2,1,0,0,9,3,1,370,0,0,0 +2789,3424,6264,-9,6265,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1035.594899759002,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,4,3,1,1569.5,0,0,0 +2789,3424,6265,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,2,7.793385316321583,7.784245994192223,0,4,0,0,0,-9,0,-1061.104628166811,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,34,34,15,1,0,-9,0,9.814478414470161,9.814478414470161,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.57,49.69,6,1,0,0,4,3,1,1569.5,0,0,0 +2790,3425,6266,6267,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.268933061695977,7.640733135637106,1,0,-9,6,0,6,-55.14081694526175,0,0,0,70,2,4,3,3,3,2019,4,2,20,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.754107758225699,7.479169502149607,1.429997632491879,1,41.38,45.79,5,1,0,0,8,2,1,613,0,0,0 +2790,3425,6267,6266,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,2.558175697861262,2.407149305039192,1,0,-9,6,0,-6,36.61279601040383,0,0,0,76,2,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.017712220404996,2.763532432432503,0,0,58.53,44.54,6,1,0,0,8,2,1,613,0,0,0 +2791,3426,6268,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,5.912716926202468,6.359621347998003,3,0,0,0,-9,0,-999.5616313464642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,6.703521182293941,0,5.275452123366952,0,0,1.593711520248647,1,1,0,3.354259064551953,6.17349926958999,0,0,52,45,6,1,0,0,6,2,1,1238,0,0,0 +2792,3427,6269,-9,-9,-9,4,1,0,20,2,0,1,0,2,1,2,1,0,4,7.989993845975639,7.713367116889743,0,3,0,0,0,-9,0,-1003.219878507121,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,37,0,15,1,1,-9,1,8.580748423497297,8.580748423497297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,2,3,0,1201,0,0,0 +2793,3428,6270,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1047.160026130158,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,29,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.783733415365215,0,4.215908590185139,3,23.45,56.76,4,1,1,0,10,1,0,895,0,0,0 +2794,3429,6271,6272,-9,-9,1,1,1,38,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,9,0,6,-44.59885227271828,0,0,0,32,1,2,1,2,3,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,5,1,0,0,1,4,1,312,0,0,0 +2794,3429,6272,6271,-9,-9,2,1,0,32,1,0,2,0,1,-9,2,1,0,2,8.732623469025517,8.545367831458424,0,2,0,-9,9,0,-6,-85.78084095669651,0,0,1,38,1,3,3,2,2,2019,2,1,8,1,47,51,15,1,1,3,0,15.80386672741217,15.80386672741217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.29,49.79,5,1,0,0,1,4,1,312,0,0,0 +2794,3429,6273,-9,6272,6271,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.4042417352259,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,312,0,0,0 +2794,3429,6274,-9,6272,6271,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.0347075845361,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,312,0,0,0 +2795,3430,6275,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,1,1,0,5,5.566352934849967,5.587985827300446,0,3,0,0,0,-9,0,-926.3293590709793,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,65,60,15,1,0,-9,0,.4574112515779605,.4574112515779605,0,0,0,0,0,0,0,1,1,0,.6816013065652844,0,0,0,60.02,56.42,7,1,0,0,10,2,1,685,0,0,0 +2796,3431,6276,-9,-9,-9,1,1,0,35,2,1,2,0,2,-9,2,1,0,2,7.391445231391019,7.302260345512292,0,4,0,0,0,-9,0,-936.3405269976316,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,23,38,15,1,1,-9,0,9.706393442428494,9.706393442428494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,39.25,3,4,0,1,6,2,0,485,0,0,0 +2796,3431,6277,-9,6276,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1135.52742327582,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,6,2,0,485,0,0,0 +2797,3432,6278,6279,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,12,0,-1,-16.76549927521695,0,0,0,69,2,4,3,2,1,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.89,45.61,6,1,0,0,13,3,1,359,0,0,0 +2797,3432,6279,6278,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.605251677583361,8.010393665528809,1,0,-9,12,0,1,47.58032189029139,0,0,0,68,2,4,3,-9,-9,2019,4,2,7,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.964715005587159,0,0,60.12,54.8,7,1,0,0,13,3,1,359,0,0,0 +2798,3433,6280,-9,6283,6282,1,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-876.8434772677251,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,2,2,1,1147.5,0,0,0 +2798,3433,6281,-9,6283,6282,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.0493096906324,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,2,2,1,1147.5,0,0,0 +2798,3433,6282,6283,-9,-9,2,1,1,44,1,0,3,0,3,-9,2,1,0,3,7.338155505170761,7.249422768791369,0,2,0,-9,20,0,7,74.56226237976809,0,0,0,37,3,1,3,2,3,2019,2,3,7,0,29,25,15,1,0,3,0,6.030912251428203,6.030912251428203,0,0,0,0,0,0,0,1,1,0,0,0,19.71159327193719,2,57.33,53.46,6,3,0,0,2,2,1,1147.5,0,0,0 +2798,3433,6283,6282,-9,-9,3,1,0,37,1,0,3,0,3,-9,6,3,0,1,0,0,0,2,0,-9,20,0,-7,-26.71100466574391,0,0,1,44,3,3,1,3,2,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.87351782260775,3,30.59,46.9,7,3,0,0,2,2,1,1147.5,0,0,0 +2798,3434,6284,-9,6283,6282,4,1,1,18,2,0,3,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-990.1328330305075,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.54,65.55,7,3,0,0,2,2,1,98,0,0,0 +2799,3435,6285,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,5.398171251797602,5.274710593002339,3,0,0,0,-9,0,-1077.879071483789,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.391965811181898,.2278176640741592,3,56.74,55.09,7,1,0,0,1,2,1,380,0,0,0 +2800,3436,6286,6287,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,3,0,4.041886949418219,4.31680795600757,1,0,-9,24,0,0,27.62253604045443,0,0,0,60,2,2,1,3,3,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.938784894737995,4.117766447555915,0,0,49,48,5,1,0,1,6,1,1,2538,0,0,0 +2800,3436,6287,6286,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,7,0,0,22.29544193165803,0,0,0,60,2,3,3,-9,-9,2019,2,1,12,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.82,46.83,4,1,0,0,6,1,1,2538,0,0,0 +2801,3437,6288,6289,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,8.583422169760286,8.2151665752654,1,0,-9,58,0,2,105.4395917683857,0,0,0,77,3,3,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.844228891576408,8.377776068481415,0,0,53.16,21.45,7,1,0,0,9,4,1,573.5,0,0,0 +2801,3437,6289,6288,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,4.686089971854038,5.047103159959542,1,0,-9,58,0,-2,-33.54595161567298,0,0,0,79,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.985009209595296,0,0,51,46,5,1,0,0,9,4,1,573.5,0,0,0 +2802,3438,6290,-9,6294,6293,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.6941928499538,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,1142.4,0,0,0 +2802,3438,6291,-9,6294,6293,3,1,1,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-929.7883327472219,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.218327546748531,0,0,0,57.06,57.76,7,1,0,0,10,3,1,1142.4,0,0,0 +2802,3438,6292,-9,6294,6293,5,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.0038387028959,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,1142.4,0,0,0 +2802,3438,6293,6294,-9,-9,2,1,1,55,1,0,3,0,2,-9,2,1,0,4,8.579430232684329,8.559104344446485,0,2,0,-9,5,0,10,12.98621579301169,0,0,0,45,2,3,1,2,1,2019,1,1,9,0,60,60,15,1,1,1,0,11.48790877307239,11.48790877307239,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,5,1,0,0,10,3,1,1142.4,0,0,0 +2802,3438,6294,6293,-9,-9,1,1,0,45,1,0,3,0,2,-9,2,1,0,3,7.828248929298317,7.97139507126529,6.44722328814958,2,0,-9,5,0,-10,60.51421106413242,0,0,0,55,2,4,1,2,2,2019,1,2,6,0,40,36,15,1,0,1,0,8.3698439300393,8.3698439300393,0,0,0,0,0,0,0,1,1,0,6.132956880367876,0,0,0,54.96,53.17,4,1,0,0,10,3,1,1142.4,0,0,0 +2803,3439,6295,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,1,1,0,3,5.738330057619633,6.651370777283989,5.180649993240688,3,0,0,0,-9,0,-972.3460568794832,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,35,35,15,1,0,-9,0,.8477574617969015,.8477574617969015,0,0,0,0,0,0,0,1,1,0,5.856803981575476,0,9.518813870693702,3,45.18,49.57,5,2,0,1,4,2,0,2445,0,0,0 +2804,3440,6296,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,2,0,7.523775470827134,7.838347208611991,3,0,0,0,-9,0,-884.2045057883851,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.198258771428219,7.372005931738833,0,0,60.53,48.35,6,1,0,0,6,3,1,100,0,0,0 +2805,3441,6297,6298,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,6,0,-3,-41.61156371547227,0,0,0,59,2,3,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.2,18.99,4,1,0,0,11,4,1,762.5,0,0,0 +2805,3441,6298,6297,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.831473991075807,8.836885154352858,4.796061286429762,1,0,-9,6,0,3,74.3027381093443,0,0,0,56,3,1,3,2,3,2019,2,2,7,0,49,60,15,1,0,3,0,17.05412331162059,17.05412331162059,0,0,0,0,0,0,0,1,1,0,5.254571566726082,5.170193793642972,0,0,61.04,39.41,6,1,0,0,11,4,1,762.5,0,0,0 +2806,3442,6299,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,1,1,0,3,8.397577951663036,8.393735042466467,6.137228539954577,3,0,0,0,-9,0,-825.393754271625,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,32,12,30,40,15,1,12,-9,0,14.78531044977242,14.78531044977242,0,0,0,0,0,0,0,1,1,0,1.631719672575802,6.313045885629229,0,0,18.2,64.59999999999999,2,1,0,0,2,4,1,412,0,0,0 +2807,3443,6300,6301,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,36,0,10,0,0,0,0,60,2,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,1,0,.3836358253049372,2.543585955842402,0,0,0,1,1,0,0,0,0,0,43.48,18.88,4,1,0,0,9,1,0,758.5,0,0,0 +2807,3443,6301,6300,-9,-9,2,1,0,60,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,36,0,-10,0,0,0,0,70,2,1,3,3,3,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.333685581376213,0,121.32325698328,2,44.58,41.27,3,1,0,0,9,1,0,758.5,0,0,0 +2807,3444,6302,-9,6301,6300,3,1,0,25,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-949.8332488855386,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.041855116326772,0,13.37035255006185,3,36.18,16.21,4,1,0,0,9,2,0,1442,0,0,0 +2807,3445,6303,-9,6301,6300,4,1,1,19,2,0,0,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-971.0700793431306,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.61769937005295,3,62.9,48.63,7,1,0,1,9,1,0,2184,0,0,0 +2808,3446,6304,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,2,1,0,3,5.832341803084451,7.204377634373367,6.647029505338773,3,0,0,0,-9,0,-1001.24305976381,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.913357744066875,6.654655493100907,0,0,50.27,44.25,6,1,0,0,9,2,1,1166,0,0,0 +2809,3447,6305,-9,6308,6306,3,1,1,11,2,1,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1016.15758964332,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,1,0,488.5,0,0,0 +2809,3447,6306,6308,-9,-9,2,1,1,47,1,1,2,0,2,-9,3,3,0,1,0,0,0,2,0,-9,2,0,14,0,0,0,0,33,2,3,3,-9,-9,2019,4,1,20,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.548055762079779,0,0,0,45.76,44.35,4,1,1,0,12,1,0,488.5,0,0,0 +2809,3447,6307,-9,6308,6306,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.264057629827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,1,0,488.5,0,0,0 +2809,3447,6308,6306,-9,-9,1,1,0,33,1,1,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,-14,0,0,0,1,47,2,1,3,2,2,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.4208810603676006,0,0,0,28.38,57.44,3,1,1,0,12,1,0,488.5,0,0,0 +2810,3448,6309,6310,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.108469246822576,7.213720233229114,1,0,-9,44,0,3,-23.97050287935852,0,0,0,67,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.131272458411604,7.028660708531997,0,0,55.19,54.26,6,1,0,0,9,2,1,644.5,0,0,0 +2810,3448,6310,6309,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-3,-18.35951357776344,0,0,0,70,2,4,3,2,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.7577260596659616,0,0,0,50,47,5,1,0,0,9,2,1,644.5,0,0,0 +2811,3449,6311,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,1,1,0,3,9.418212338019751,9.154898280078328,0,3,0,0,0,-9,0,-967.8905748181375,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,20,12,15,1,0,-9,0,65.3376706924839,65.3376706924839,1,0,0,0,0,0,0,1,1,0,.3041135024139214,0,0,0,54.9,39.4,6,1,0,0,13,5,1,335,0,0,0 +2812,3450,6312,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1078.350217291683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,8.541977292214543,0,0,1.55400130910186,0,32.39372077100639,1,1,0,4.679778128849541,0,.4740186792754282,3,53,44,6,1,0,0,1,1,1,476,0,0,0 +2813,3451,6313,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,2,1,0,3,6.54249493026409,7.506309969024814,6.567631517701241,3,0,0,0,-9,0,-1126.094127223171,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,15,15,15,1,0,-9,0,5.549931164480984,5.549931164480984,1,0,0,0,0,0,0,1,1,0,0,6.589053107186343,0,0,54.55,49.25,6,1,0,0,9,3,1,2812,0,0,0 +2814,3452,6314,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,6.895210512328039,6.87052349493161,3,0,0,0,-9,0,-955.5388951031015,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6561856410672005,6.750174288141391,41.51823927038857,3,57.16,56.15,6,1,0,0,7,2,1,451,0,0,0 +2815,3453,6315,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,5,8.52886051127444,8.304977020013366,6.620861132345819,4,0,0,0,-9,0,-866.7637206126511,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,40,43,15,1,0,-9,0,13.03808796537838,13.03808796537838,0,0,0,0,0,0,0,1,1,0,6.935960786902053,0,0,0,57.06,57.76,4,1,0,0,9,4,0,635.3333333333334,0,0,0 +2815,3453,6316,-9,6315,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1094.189339261526,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,9,4,0,635.3333333333334,0,0,0 +2815,3453,6317,-9,6315,-9,3,1,0,17,2,0,1,1,2,-9,7,2,0,2,5.283093704921499,4.926636988642741,0,4,0,0,0,-9,0,-1108.565546011552,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.355925985802378,0,0,0,48.66,47.04,5,1,0,0,9,4,0,635.3333333333334,0,0,0 +2815,3454,6318,-9,6315,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,4,7.146150393344825,7.187232961756758,0,3,0,0,0,-9,0,-1124.433716157414,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,1,25,15,1,0,-9,1,184.4608117398449,184.4608117398449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,55.57,4,1,0,0,9,3,0,329,0,0,0 +2816,3455,6319,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,3,7.592706816003352,7.489857327173442,0,3,0,0,0,-9,0,-1019.612036775303,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,42,37,15,1,8,-9,0,6.236457668931454,6.236457668931454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.37,48.08,4,1,0,1,9,3,0,300,0,0,0 +2816,3456,6320,-9,6319,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-962.0436821257555,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,6,1,0,0,9,1,0,269,0,0,0 +2817,3457,6321,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-998.8340165249098,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,.7251835413185161,0,0,0,0,18.51556233237431,1,1,0,0,0,0,0,53,44,6,1,0,0,13,1,1,1801,0,0,0 +2818,3458,6322,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-986.5365053343279,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,45,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.51,42.8,4,1,0,0,9,1,0,680,0,0,0 +2819,3459,6323,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1073.956348514824,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.71,37.18,3,1,0,0,6,1,0,1411,0,0,0 +2820,3460,6324,6325,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,1,92.62527295564151,0,0,0,69,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,5,1,0,0,5,2,0,1024.5,0,0,0 +2820,3460,6325,6324,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,6.167068031417429,6.788737429525013,5.030736239577121,1,0,-9,50,0,-1,-154.767872166897,0,0,0,70,2,3,3,3,3,2019,4,1,16,6,10,10,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.767702637521882,5.195063411640929,70.04608465078255,1,42.61,53.57,5,1,0,0,5,2,0,1024.5,0,0,0 +2821,3461,6326,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,2,7.041857864715577,7.114776993224847,0,3,0,0,0,-9,0,-936.5468643048208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,34,36,15,1,0,-9,0,4.307190416855062,4.307190416855062,0,0,0,0,0,0,0,1,1,0,0,0,25.35066326225357,3,53.24,36.44,4,1,0,0,12,2,1,705,0,0,0 +2822,3462,6327,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,1,1,0,4,7.650636825636286,7.940206420690536,0,3,0,0,0,-9,0,-974.613971287284,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,12,25,35,15,1,12,-9,0,11.99228667455713,11.99228667455713,0,0,0,0,0,0,0,1,1,0,8.057101197048997,0,0,0,38.28,63.48,6,1,0,0,12,3,1,526,0,0,0 +2823,3463,6328,6330,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,5,7.834747385976745,7.921249918126813,0,2,0,-9,10,0,-4,20.36105843038522,0,0,0,54,2,1,1,3,3,2019,1,1,9,1,45,40,15,1,1,1,0,7.825636240539419,7.825636240539419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,58.07,7,1,0,0,11,4,1,1194.666666666667,0,0,0 +2823,3463,6329,-9,6330,6328,4,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.824984915514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,1194.666666666667,0,0,0 +2823,3463,6330,6328,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,1,7.642563831495607,7.682489485065513,0,2,0,-9,18,0,4,-118.0012496809217,0,0,0,50,2,5,1,3,3,2019,1,2,15,4,32,30,15,1,4,1,0,7.675388652409558,7.675388652409558,0,0,0,0,0,0,0,1,1,0,.0834533058692488,0,0,0,49.47,30.3,4,1,0,0,11,4,1,1194.666666666667,0,0,0 +2823,3464,6331,-9,6330,6328,3,1,1,21,2,0,1,0,2,-9,2,1,0,4,7.662443456431149,7.839223392467893,0,3,0,0,0,-9,0,-722.4120809201199,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,25,0,15,1,2,-9,1,9.920408789756941,9.920408789756941,0,0,0,0,0,0,0,1,1,0,2.539070328548072,0,0,0,47,59,5,2,0,0,11,3,1,264,0,0,0 +2824,3465,6332,-9,6333,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1078.199637937423,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,9,4,0,776.5,0,0,0 +2824,3465,6333,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,2,1,0,3,8.205867945580062,8.494568064306065,0,4,0,0,0,-9,0,-1007.596841477567,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,27,11,40,40,15,1,11,-9,0,12.43630311545852,12.43630311545852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,57.17,1,4,0,1,9,4,0,776.5,0,0,0 +2825,3466,6334,-9,-9,6335,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-972.2858340280065,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,4,1,1091,0,0,0 +2825,3466,6335,-9,-9,-9,1,1,1,42,2,0,1,0,2,-9,2,1,0,2,8.726253990045933,8.403476845932396,0,4,0,0,0,-9,0,-1096.959443605912,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,56,30,15,1,3,-9,0,13.29049835464714,13.29049835464714,0,0,0,0,0,0,0,0,0,0,0,0,69.26392508904929,3,42.98,29.04,5,1,0,0,12,4,1,1091,0,0,0 +2826,3467,6336,6337,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,4,0,7.397587470594046,7.477165619916392,1,0,-9,48,0,-4,24.43827439325775,0,0,0,76,1,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.025323724358243,7.753140182836609,0,0,55.19,54.26,5,1,0,0,9,3,1,301.5,0,0,0 +2826,3467,6337,6336,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,4,0,7.606664752787294,7.67236669983465,1,0,-9,10,0,4,68.04786747692806,0,0,0,72,1,4,3,-9,-9,2019,4,1,28,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.514351004170748,0,0,56,51,3,1,0,0,9,3,1,301.5,0,0,0 +2827,3468,6338,-9,6340,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-947.5872414317296,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,451.3333333333333,0,0,0 +2827,3468,6339,-9,6340,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1039.903879389577,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,451.3333333333333,0,0,0 +2827,3468,6340,-9,-9,-9,1,1,0,34,3,0,2,0,2,-9,2,1,0,3,7.819645359348151,7.892096695440224,0,4,0,0,0,-9,0,-1158.625786892123,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,42,15,1,0,-9,0,8.077240680635617,8.077240680635617,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,5,3,1,451.3333333333333,0,0,0 +2828,3469,6341,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-989.5910148632066,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,43.2,6,4,0,0,8,1,0,1521,0,0,0 +2829,3470,6342,-9,-9,-9,1,1,1,28,3,0,0,0,2,-9,2,1,0,5,7.794829854968157,8.243659086711814,0,3,0,-9,0,-9,0,-971.998460752242,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,40,0,15,1,0,-9,0,9.567218038077545,9.567218038077545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,13,4,1,606,0,0,0 +2830,3471,6343,6344,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,5.559986703188279,5.664082844062589,1,0,-9,10,0,-13,-36.8606430343097,0,0,0,74,3,4,3,2,2,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.612995029762049,5.923601922058553,0,0,40.65,57.36,5,1,0,0,7,4,1,911,0,0,0 +2830,3471,6344,6343,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,8.871880891973351,8.868279437485933,1,0,-9,10,0,13,-30.65503051414549,0,0,0,61,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.23610157379039,8.966046418309633,0,0,60.12,54.8,7,1,0,0,7,4,1,911,0,0,0 +2831,3472,6345,6346,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,3,8.714309964081894,8.760972535766834,0,1,0,-9,37,0,4,44.20794674200559,0,0,0,54,3,4,1,3,3,2019,1,1,18,6,48,50,15,1,6,1,0,14.34686651649501,14.34686651649501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.21,55.28,4,1,0,1,9,5,1,289.5,0,0,0 +2831,3472,6346,6345,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,4,7.596421474215975,7.675263968878177,0,1,0,-9,38,0,-4,5.519277862774755,0,0,0,58,2,3,1,-9,-9,2019,1,2,11,0,24,21,15,1,0,1,0,8.784102162792545,8.784102162792545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,4,1,0,0,9,5,1,289.5,0,0,0 +2831,3473,6347,-9,6346,6345,3,1,0,27,2,0,0,0,2,-9,2,1,0,3,8.231385987485615,8.086250405732901,0,3,0,0,0,-9,0,-1029.636277964428,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,20,9,39,40,15,1,9,-9,1,7.328344562693039,7.328344562693039,0,0,0,0,0,0,0,0,0,0,0,0,12.39691992328057,3,39.65,56.19,5,1,0,0,9,3,1,247,0,0,0 +2832,3474,6348,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,2,7.629795205926153,7.425554364351293,0,3,0,0,0,-9,0,-938.943449619325,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,8,25,25,15,1,8,-9,0,8.077964805605033,8.077964805605033,0,0,0,0,0,0,0,1,1,0,0,0,0,3,30.47,32.31,3,1,0,0,7,3,0,1166,0,0,0 +2833,3475,6349,6350,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,2,0,8.029099044145946,8.158496922920779,1,0,-9,10,0,8,34.25929395135962,0,0,0,63,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.679868000914211,8.127561444591725,0,0,60.29,38.88,7,1,0,0,5,4,1,728.5,0,0,0 +2833,3475,6350,6349,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.742665111005361,7.895819893578999,1,0,-9,10,0,-8,67.86576442069506,0,0,0,71,1,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.782786168982593,7.830127615429551,8.055437405837814,2,43.38,60.06,6,1,0,0,5,4,1,728.5,0,0,0 +2834,3476,6351,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,3,8.106473727281999,8.370130070123013,0,3,0,0,0,-9,0,-1025.759306253583,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,42,41,15,1,1,-9,0,12.72916973124766,12.72916973124766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,57.19,6,1,0,0,7,4,0,232,0,0,0 +2834,3477,6352,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,3,8.607129093058781,8.874636358548191,6.089009221102532,3,0,-9,0,-9,0,-940.9876794058822,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,40,0,15,1,1,-9,0,13.50018563465343,13.50018563465343,0,0,0,0,0,0,0,0,0,0,5.769665065038894,0,0,0,48.17,52.08,5,3,0,0,7,5,0,255,0,0,0 +2835,3478,6353,6354,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,3,8.096341564722891,8.377926627815283,0,1,0,-9,13,0,5,107.9658439092698,0,0,0,35,1,4,1,2,3,2019,1,2,8,1,41,38,15,1,1,1,0,9.836854668156404,9.836854668156404,0,0,0,0,0,0,0,0,0,0,1.671661903057337,0,0,0,55.33,42.18,5,1,0,0,10,5,1,229,0,0,0 +2835,3478,6354,6353,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,4,8.689787877234515,9.014069880832711,0,1,0,-9,13,0,-5,-5.600127916999722,0,0,1,40,2,3,1,2,3,2019,1,1,10,0,41,38,15,1,0,1,0,20.43771096765514,20.43771096765514,0,0,0,0,0,0,0,0,0,0,.3432256028660124,0,0,0,49.35,59.64,6,1,0,0,10,5,1,229,0,0,0 +2836,3479,6355,6356,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,4,5.056250686780641,8.178871378437449,8.21667313581856,1,0,-9,35,0,8,37.9812165024189,0,0,0,56,2,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.784782298858705,0,0,60.69,53.18,6,1,0,0,6,3,1,772.5,0,0,0 +2836,3479,6356,6355,-9,-9,1,1,0,56,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,36,0,-8,16.08961365453181,0,0,0,64,2,4,3,2,2,2019,4,2,13,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.52,46.65,5,1,1,1,6,3,1,772.5,0,0,0 +2836,3480,6357,-9,6356,6355,3,1,0,23,2,0,0,0,1,0,7,2,0,5,7.468866615851444,7.229537339043276,5.285741266535789,3,0,0,0,-9,0,-1011.975535296933,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,25,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.17821793640791,0,0,0,48.18,55.1,6,1,0,0,6,3,1,1662,0,0,0 +2837,3481,6358,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,2,0,3.526624957511086,3.135012015251695,3,0,0,0,-9,0,-981.6459963464504,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.436342745805951,0,0,64.22,34.32,6,3,0,0,7,1,1,3274,0,0,0 +2838,3482,6359,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,4,0,6.780310397004342,6.781706138934014,3,0,0,0,-9,0,-892.6752978247878,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.557155400208242,0,0,51.83,57.2,6,3,0,0,11,2,0,445,0,0,0 +2839,3483,6360,6361,-9,-9,1,1,1,31,1,1,1,0,2,-9,2,1,0,3,8.742190060033369,8.986886097583376,0,2,0,-9,5,0,-3,-80.32447690633536,0,0,0,34,2,4,1,2,2,2019,1,2,12,0,41,45,15,1,0,1,0,18.56946651246408,18.56946651246408,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.51,57.34,4,1,0,0,12,5,1,753,0,0,0 +2839,3483,6361,6360,-9,-9,2,1,0,34,1,1,1,0,2,-9,2,1,0,4,7.615333919490871,7.757701759614482,0,2,0,-9,5,0,3,114.1984894780289,0,0,1,31,2,3,1,-9,-9,2019,1,1,11,1,28,27,15,1,1,1,0,8.302252876423694,8.302252876423694,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,5,1,0,0,12,5,1,753,0,0,0 +2839,3483,6362,-9,6361,6360,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.7395579161687,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,753,0,0,0 +2840,3484,6363,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,4,4.700887464969001,7.872795004587262,7.737660762915932,3,0,0,0,-9,0,-1003.801604884054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,2,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.816682295685589,8.152299260619984,8.76760327232131,3,51.77,58.57,6,1,0,0,13,4,1,366,0,0,0 +2841,3485,6364,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,7.105011212953363,7.05884671709012,3,0,0,0,-9,0,-990.4196814533237,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.357978214480931,7.236379364276876,0,0,50.26,49.78,6,1,0,0,5,2,1,385,0,0,0 +2842,3486,6365,6367,-9,-9,2,1,1,54,1,0,3,0,2,-9,1,1,0,3,7.565291103910548,7.06243490730162,0,2,0,-9,8,0,9,34.79710597099946,0,0,0,45,2,3,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,4.699271931121012,4.699271931121012,0,0,0,0,0,0,0,1,1,0,2.594159913507307,0,0,0,57.33,53.46,6,1,0,0,12,3,1,455.3333333333333,0,0,0 +2842,3486,6366,-9,6367,6365,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.39014643808,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,1,455.3333333333333,0,0,0 +2842,3486,6367,6365,-9,-9,1,1,0,45,1,0,3,0,2,-9,2,1,0,3,8.005556335777152,7.916699252710782,0,2,0,-9,8,0,0,44.29867697295558,0,0,0,54,2,3,1,2,2,2019,1,2,13,2,38,38,15,1,2,1,0,9.518650968126353,9.518650968126353,0,0,0,0,0,0,0,1,1,0,7.463801834203732,0,0,0,47.17,36.23,4,1,0,0,12,3,1,455.3333333333333,0,0,0 +2842,3487,6368,-9,6367,6365,3,1,1,18,2,0,3,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-938.0574269377598,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.98,49.96,5,1,1,0,12,3,1,1185,0,0,0 +2843,3488,6369,6370,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,41,0,-1,-87.54852973987821,0,0,0,65,1,1,3,2,3,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.4252932946542769,0,0,0,50,47,5,1,0,0,10,3,1,423.5,0,0,0 +2843,3488,6370,6369,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,1,0,8.51527965019258,8.225863980242375,1,0,-9,41,0,1,-17.46111173450895,0,0,0,64,1,3,3,3,2,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.266502243085438,8.183798283358227,121.2134264365145,1,51.34,25.44,4,1,0,0,10,3,1,423.5,0,0,0 +2844,3489,6371,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,3,9.412166961633501,9.558305313284958,0,3,0,0,0,-9,0,-1004.005483122354,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,5,50,70,15,1,5,-9,0,29.31698359449334,29.31698359449334,0,0,0,0,0,0,0,0,0,0,6.862289726241171,0,0,0,43.77,54.09,6,1,0,0,9,5,1,351,0,0,0 +2845,3490,6372,6373,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.194323724703644,8.114949669205894,0,2,0,-9,15,0,-15,105.7856776377211,0,0,0,65,2,2,1,-9,-9,2019,1,1,9,0,35,35,15,1,0,1,0,12.03519269693424,12.03519269693424,0,0,0,0,0,0,0,1,1,0,2.856675786153072,0,0,0,52.43,55.57,6,1,0,0,10,4,1,862.3333333333334,0,0,0 +2845,3490,6373,6372,-9,-9,1,1,1,65,1,0,1,0,2,-9,1,1,0,2,7.264959935014891,7.381741773459137,0,2,0,-9,15,0,15,4.600459662328368,0,0,0,50,1,4,1,2,2,2019,1,2,5,0,25,30,15,1,0,1,0,8.978181477422611,8.978181477422611,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.51,41.87,6,4,0,0,10,4,1,862.3333333333334,0,0,0 +2845,3490,6374,-9,6372,6373,3,1,0,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1007.574303239721,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,2,0,0,10,4,1,862.3333333333334,0,0,0 +2846,3491,6375,-9,6377,6376,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.012815706091,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,1,740.3333333333334,0,0,0 +2846,3491,6376,6377,-9,-9,2,1,1,31,1,0,1,0,3,-9,2,1,0,4,8.282752470400361,8.255869923674812,0,2,0,-9,5,0,-7,98.01764109774574,0,0,0,38,2,4,1,2,2,2019,1,1,9,0,50,50,15,1,0,1,0,6.798567419265989,6.798567419265989,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,57.45,6,1,0,0,7,3,1,740.3333333333334,0,0,0 +2846,3491,6377,6376,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,4,7.083685158154891,7.050253256135054,0,2,0,-9,5,0,7,106.0714447965295,0,0,1,31,3,4,1,2,2,2019,1,2,12,1,30,20,15,1,1,1,0,5.742383320093177,5.742383320093177,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.97,56.11,5,1,0,0,7,3,1,740.3333333333334,0,0,0 +2847,3492,6378,-9,6380,6379,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.0002023592843,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,1,0,1500,0,0,0 +2847,3492,6379,6380,-9,-9,2,1,1,31,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,8,0,0,0,0,0,0,31,3,2,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.86600146438998,3,31.93,58.41,4,1,1,0,5,1,0,1500,0,0,0 +2847,3492,6380,6379,-9,-9,1,1,0,31,1,0,1,0,3,-9,3,3,0,2,0,0,0,2,0,-9,8,0,0,0,0,0,1,31,2,3,3,3,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,46.53,4,1,1,0,5,1,0,1500,0,0,0 +2848,3493,6381,-9,6384,6383,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.061793480774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,4,1,1075,0,0,0 +2848,3493,6382,-9,6384,6383,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1121.929802651735,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,4,1,1075,0,0,0 +2848,3493,6383,6384,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,9.048639487655292,8.887919044519473,0,2,0,-9,8,0,-3,100.696091705218,0,0,0,48,3,3,3,2,2,2019,2,2,11,0,41,41,15,1,0,3,0,22.06399273550896,22.06399273550896,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,1075,0,0,0 +2848,3493,6384,6383,-9,-9,2,1,0,48,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,8,0,3,-74.46891501247538,0,0,0,45,2,4,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.29,6,1,0,0,11,4,1,1075,0,0,0 +2849,3494,6385,6386,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,6.32240998518982,6.355362413408434,0,1,0,-9,9,0,0,29.90408909126436,0,0,0,51,2,3,1,3,3,2019,1,1,10,0,30,30,15,1,0,1,0,2.006938916369218,2.006938916369218,0,0,0,0,0,0,0,0,0,0,0,0,27.62090297375136,3,59.06,48.59,6,1,0,0,10,3,1,394.5,0,0,0 +2849,3494,6386,6385,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.303389146865781,8.261032157283273,0,1,0,-9,9,0,0,16.51329512582545,0,0,0,51,2,3,1,-9,-9,2019,1,2,6,0,59,50,15,1,0,1,0,5.754486156127518,5.754486156127518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.61,46.92,2,1,0,0,10,3,1,394.5,0,0,0 +2850,3495,6387,6389,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,4,8.460167254568807,8.267796288338838,0,2,0,-9,4,0,-5,90.41588884232988,0,0,0,35,1,3,1,-9,-9,2019,1,2,14,4,39,0,15,1,4,1,0,14.45903814598136,14.45903814598136,0,0,0,0,0,0,0,1,1,0,.2344437797376542,0,0,0,50.37,55.06,3,1,0,0,11,4,1,644.6666666666666,0,0,0 +2850,3495,6388,-9,6389,6387,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1000.342225252027,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,11,4,1,644.6666666666666,0,0,0 +2850,3495,6389,6387,-9,-9,2,1,0,35,1,1,1,0,1,-9,5,1,0,3,8.033962951401373,8.086996338655451,0,2,0,-9,4,0,5,105.3658154416165,0,0,1,30,1,4,1,-9,-9,2019,1,1,9,3,40,2,15,1,3,1,0,8.467997173356988,8.467997173356988,0,0,0,0,0,0,0,1,1,0,.8797630290175669,0,0,0,38.51,59.43,7,1,0,0,11,4,1,644.6666666666666,0,0,0 +2851,3496,6390,6391,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,8.010216731223082,8.112305030891179,1,0,-9,6,0,0,-48.48790560154114,0,0,0,63,2,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.875644157509236,8.058278927047985,0,0,53.61,52.37,7,1,0,0,11,4,1,1575.5,0,0,0 +2851,3496,6391,6390,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.955510541072092,7.713887601962939,1,0,-9,6,0,0,115.539462771244,0,0,0,63,2,3,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.656499504002989,7.701803072599424,0,0,48.21,50.73,6,1,0,0,11,4,1,1575.5,0,0,0 +2852,3497,6392,6393,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,43,0,3,-109.2962133107269,0,0,0,60,2,3,1,3,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,10,3,1,997,0,0,0 +2852,3497,6393,6392,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,3,8.06911296644744,8.022530603453491,5.717059807962654,1,0,-9,43,0,-3,51.5648937799092,0,0,0,63,2,3,3,2,2,2019,2,2,11,0,33,30,15,1,0,3,0,13.4318896637112,13.4318896637112,0,0,0,0,0,0,0,1,1,0,5.780715279759439,5.516763200957953,0,0,61.44,40.51,6,1,0,0,10,3,1,997,0,0,0 +2853,3498,6394,-9,-9,-9,1,1,0,47,2,0,2,0,2,-9,2,1,0,3,8.326120811763467,8.77847978111356,0,4,0,0,0,-9,0,-947.4372229644349,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,38,42,15,1,2,-9,0,14.66875421623067,14.66875421623067,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,4,4,0,0,8,3,0,993,0,0,0 +2853,3498,6395,-9,6394,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1007.431372370992,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,3,0,993,0,0,0 +2853,3499,6396,-9,6394,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,4,5.884625241656389,5.720989526089013,0,3,0,0,0,-9,0,-955.7659979562716,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,5,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.64,53.76,4,4,0,0,8,3,0,859,0,0,0 +2854,3500,6397,-9,6398,-9,2,1,1,16,2,0,1,0,2,-9,3,2,0,3,0,0,0,4,0,0,0,-9,0,-1024.750886698673,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.08,60.5,4,1,1,1,8,3,1,929.5,0,0,0 +2854,3500,6398,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,3,8.079624453382641,8.070781138458532,6.256881804178309,4,0,0,0,-9,0,-1111.375723408313,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,47,40,15,1,0,-9,0,7.962892225095263,7.962892225095263,0,0,0,0,0,0,0,1,1,0,6.551682271994958,0,0,0,53.47,52.37,6,1,0,0,8,3,1,929.5,0,0,0 +2855,3501,6399,6400,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,5.95421985920623,6.114056002000798,1,0,-9,48,0,0,63.64688768172036,0,0,0,69,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.07354225966649,5.994846410700301,0,0,62.1,51.16,7,1,0,0,4,5,1,1467.5,0,0,0 +2855,3501,6400,6399,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,9.073970302826776,9.370608053613587,1,0,-9,48,0,0,50.33791429701339,0,0,0,69,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.47492861259215,0,0,55.7,54,7,1,0,0,4,5,1,1467.5,0,0,0 +2856,3502,6401,6402,-9,-9,1,1,0,44,1,0,5,0,2,-9,6,3,0,4,0,0,0,2,0,-9,21,0,-5,0,0,0,1,49,2,4,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.98186183007325,1,50,55,6,3,0,0,8,1,1,281.6666666666667,0,0,0 +2856,3502,6402,6401,-9,-9,2,1,1,49,1,0,5,0,2,-9,1,1,0,4,0,0,0,2,0,-9,8,0,5,0,0,0,0,44,2,4,3,-9,-9,2019,2,1,9,0,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,1,8,1,1,281.6666666666667,0,0,0 +2856,3502,6403,-9,6401,6402,8,1,1,8,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1102.343952572179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,1,281.6666666666667,0,0,0 +2856,3503,6404,6406,-9,-9,4,1,1,41,1,0,5,0,1,-9,2,1,0,4,8.752989268838929,8.787704179016664,0,2,0,-9,8,0,5,117.3601125862417,0,0,0,36,2,4,3,-9,-9,2019,2,3,9,0,38,0,15,1,1,3,0,20.11130373204377,20.11130373204377,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,8,3,1,1001.25,0,0,0 +2856,3503,6405,-9,6406,6404,7,1,0,8,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.127143233736,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,1,1001.25,0,0,0 +2856,3503,6406,6404,-9,-9,3,1,0,36,1,0,5,0,2,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-5,-69.84074511701478,0,0,1,41,1,4,1,-9,-9,2019,3,4,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,8,3,1,1001.25,0,0,0 +2856,3503,6407,-9,6406,6404,9,1,0,4,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.832954387525,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,3,1,1001.25,0,0,0 +2857,3504,6408,6409,-9,-9,1,1,0,63,1,0,0,0,2,-9,3,3,0,3,0,6.791646533580593,6.64658896599446,1,0,-9,8,0,-4,-21.31846478707224,0,0,0,67,2,4,3,3,3,2019,4,2,32,12,0,18,15,3,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.859235817915352,16.05117576161645,3,49,47,3,1,1,0,9,3,1,1111,0,0,0 +2857,3504,6409,6408,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.380669704668724,7.322625440814534,1,0,-9,8,0,4,8.072744533646695,0,0,0,63,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.548197545968774,0,0,57.16,56.15,6,1,0,0,9,3,1,1111,0,0,0 +2858,3505,6410,6412,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,4,8.172027231821087,8.093345413733971,0,2,0,-9,24,0,-7,-40.61001909375103,-9,0,1,48,2,4,1,-9,-9,2019,1,2,10,0,35,0,15,1,1,1,0,12.65548370463075,12.65548370463075,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,6,3,0,0,6,5,1,727,0,0,0 +2858,3505,6411,-9,6410,6412,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.5916018831554,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,5,1,727,0,0,0 +2858,3505,6412,6410,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.967932263123284,8.839661743883559,0,2,0,-9,24,0,7,-10.19836525692315,0,0,0,41,2,4,1,3,3,2019,1,1,9,1,37,37,15,1,1,1,0,20.26594079420039,20.26594079420039,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.72,32.95,4,3,0,1,6,5,1,727,0,0,0 +2859,3506,6413,6414,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,7.409291613519512,7.411771321222367,1,0,-9,56,0,-3,93.22856460887581,0,0,0,74,2,3,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.098789845929555,80.20552796533646,1,27.43,45.64,5,1,0,0,12,2,1,1707,0,0,0 +2859,3506,6414,6413,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,6.169542872913837,6.351124926711812,1,0,-9,6,0,3,-25.82729065456087,0,0,0,71,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.19885907385802,0,0,54,46,5,1,0,0,12,2,1,1707,0,0,0 +2860,3507,6415,6416,-9,-9,1,1,1,58,1,0,0,0,3,-9,4,3,0,3,0,6.909807351356077,7.148585892655953,1,0,-9,9,0,1,-75.92200095607834,0,0,0,57,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.403104057726148,6.897861299126233,0,0,57.33,53.46,6,1,0,0,5,3,1,1033,0,0,0 +2860,3507,6416,6415,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,3,5.847108633265877,7.399290214318655,6.830989254505093,1,0,-9,9,0,-1,8.964084207181227,0,0,0,58,3,3,3,-9,-9,2019,4,1,6,0,1,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.81604128061417,6.735758643865356,0,0,62.18,36.18,6,1,0,0,5,3,1,1033,0,0,0 +2861,3508,6417,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,1,0,5.081948468809016,4.859616001564293,3,0,0,0,-9,0,-989.7697391095686,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.790050112270332,0,0,31.97,33.13,3,1,0,1,13,1,0,390,0,0,0 +2862,3509,6418,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,6,3,0,2,0,7.464711282637723,7.555758392433009,3,0,0,0,-9,0,-926.0988463168594,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.399813931862235,0,0,30.96,36.23,2,1,0,0,9,3,1,568,0,0,0 +2863,3510,6419,6420,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,3,7.986445679274929,8.172305437815954,7.086937837624641,1,0,-9,6,0,1,32.30103568810763,0,0,0,63,2,3,3,2,2,2019,2,1,10,0,38,40,15,1,1,4,0,10.75219198722262,10.75219198722262,0,0,0,0,0,0,0,1,1,0,4.288475755249999,6.882821024015696,0,0,52,48,5,1,0,0,11,3,1,2446,0,0,0 +2863,3510,6420,6419,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,-98.57052946980573,0,0,0,64,2,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,11,3,1,2446,0,0,0 +2864,3511,6421,6422,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,5,8.790725984187048,8.68587600435915,0,1,0,-9,7,0,0,-115.2637259116039,0,0,1,31,1,3,1,2,1,2019,1,2,12,1,51,0,15,1,1,1,0,12.8399856537458,12.8399856537458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,10,5,0,1347,0,0,0 +2864,3511,6422,6421,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,3,9.116771437438896,8.874227890075124,0,1,0,-9,7,0,0,25.31738956755283,0,0,0,31,1,5,1,-9,-9,2019,1,1,16,5,37,37,15,1,5,1,0,22.53684296449342,22.53684296449342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.44,60.09,4,1,0,0,10,5,0,1347,0,0,0 +2865,3512,6423,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1055.707932769389,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,20.39198345598758,16.57084382575002,0,0,1,1,0,.3971038964218911,0,0,0,44,28.75,3,1,0,0,11,1,1,730,0,0,0 +2866,3513,6424,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,5,6.691012843352103,8.072132351624305,7.139080522875925,3,0,0,0,-9,0,-932.8941302606797,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,10,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.464318639055203,0,0,0,30.67,65.95,6,1,0,0,10,3,0,4881,0,0,0 +2867,3514,6425,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,1,1,0,2,8.204445293498907,8.184522319420045,0,3,0,0,0,-9,0,-935.6140608732436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,12,14,15,1,1,-9,0,33.79766227504381,33.79766227504381,0,0,0,0,0,0,0,0,0,0,7.123413170421763,0,0,0,50.25,38.14,6,1,0,0,10,4,1,382,0,0,0 +2868,3515,6426,6427,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,3,7.279187524250278,7.842077135857587,6.79951240116453,1,0,-9,6,0,3,-54.40877966938353,0,0,0,65,3,3,3,-9,-9,2019,2,2,10,0,40,55,15,1,0,4,0,4.727780834477467,4.727780834477467,1,0,0,0,0,0,0,1,1,0,4.89253708635716,6.725606147306802,0,0,57.33,53.46,6,1,0,0,7,3,1,525.5,0,0,0 +2868,3515,6427,6426,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,5.68983459857578,5.091326373661713,1,0,-9,6,0,-3,-36.90245066601776,0,0,0,68,3,3,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.093882498111713,5.681456303147439,0,0,42.22,56.11,6,1,0,0,7,3,1,525.5,0,0,0 +2869,3516,6428,6429,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,2,8.297759190476491,8.653583811715153,0,1,0,-9,17,0,13,60.46641073495892,0,0,0,41,2,3,1,2,2,2019,1,1,10,0,40,25,15,1,0,1,0,9.668889121992919,9.668889121992919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,39.95,3,1,0,0,5,5,0,386.5,0,0,0 +2869,3516,6429,6428,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,3,8.924399434162693,8.907680101932691,0,1,0,-9,17,0,-13,-50.68883487391174,0,0,0,54,1,2,1,2,2,2019,1,2,7,1,40,38,15,1,1,1,0,23.62538196930801,23.62538196930801,0,0,0,0,0,0,0,0,0,0,.9593912608138508,0,0,0,54.97,47.63,5,1,0,0,5,5,0,386.5,0,0,0 +2870,3517,6430,6431,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,5,6.584141186377948,9.045246555227573,8.729842755783199,1,0,-9,35,0,6,-52.44974461244127,0,0,0,56,1,4,1,2,2,2019,3,2,6,0,2,2,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.536320911665888,8.82809685275083,0,0,62.39,56.71,1,1,0,0,5,5,1,413.5,0,0,0 +2870,3517,6431,6430,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.631039735510241,8.353922678181826,0,1,0,-9,36,0,-6,135.0337434176971,0,0,0,62,2,5,3,3,3,2019,2,1,6,0,38,37,15,1,0,4,0,13.85283370099874,13.85283370099874,0,0,0,0,0,0,0,0,0,0,7.688493337291595,0,0,0,57.16,56.15,7,1,0,0,5,5,1,413.5,0,0,0 +2871,3518,6432,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,4,8.993625005335812,8.927719863946656,0,3,0,0,0,-9,0,-1008.972100131532,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,80,15,1,0,-9,0,27.80232499747027,27.80232499747027,0,0,0,0,0,0,0,1,1,0,4.363541638199214,0,0,0,51.83,57.2,6,1,0,0,12,5,1,469,0,0,0 +2872,3519,6433,-9,6434,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1135.968168661541,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,1980,0,0,0 +2872,3519,6434,-9,-9,-9,1,1,0,24,2,1,2,0,2,-9,6,3,0,5,0,0,0,4,0,0,0,-9,0,-992.1562934202453,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.5,55.35,6,1,0,0,9,1,0,1980,0,0,0 +2872,3519,6435,-9,6434,-9,2,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.471485003513,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,1980,0,0,0 +2873,3520,6436,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,3,0,7.277615219330086,7.068136211177324,3,0,0,0,-9,0,-1071.684774394985,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.255626996866637,0,0,60.2,39.82,6,1,0,0,2,2,1,460,0,0,0 +2874,3521,6437,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,2,1,0,2,9.334352317984411,9.20065318479427,0,3,0,0,0,-9,0,-893.0740264823646,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,35,35,15,1,1,-9,0,23.82838014747765,23.82838014747765,0,0,0,0,0,0,0,0,0,0,2.062436211602523,0,0,0,52.67,38.39,3,1,0,0,10,5,1,291,0,0,0 +2875,3522,6438,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,4,0,6.899922584824259,6.942750387854528,3,0,0,0,-9,0,-1087.813822688184,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.461943197567129,6.938057769517494,0,0,50.85,54.91,6,1,0,0,12,2,1,373,0,0,0 +2876,3523,6439,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,4,9.404246427315043,9.446249470399174,0,3,0,0,0,-9,0,-953.9840748307229,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,53,15,1,0,-9,0,32.20255367643477,32.20255367643477,0,0,0,0,0,0,0,0,0,0,5.657682900421099,0,0,0,54.2,57.49,5,3,0,0,8,5,0,240,0,0,0 +2877,3524,6440,-9,6442,-9,2,1,1,34,2,0,0,0,1,-9,2,1,0,5,8.411514763840879,8.441904815229092,0,3,0,0,0,-9,0,-968.5939929055944,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,69,59,15,1,0,-9,1,7.550236970563744,7.550236970563744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.96,57.78,7,1,0,0,4,4,1,84,0,0,0 +2877,3525,6441,6442,-9,-9,3,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.362323208060703,8.334551959058219,5.318107149871985,1,0,-9,6,0,0,-21.07860121327953,0,0,0,55,2,3,1,-9,2,2019,1,1,8,1,48,45,15,1,1,1,0,8.496836132118331,8.496836132118331,0,0,0,0,0,0,0,0,0,0,0,5.179675318458893,0,0,60.12,54.8,6,1,0,0,4,4,1,383,0,0,0 +2877,3525,6442,6441,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.611224944704917,7.855148914338475,0,1,0,-9,6,0,0,26.70381727462898,0,0,0,55,2,4,1,3,2,2019,1,3,15,4,48,48,15,1,4,1,0,4.319306323537687,4.319306323537687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.78,43.64,6,1,0,0,4,4,1,383,0,0,0 +2877,3526,6443,-9,-9,-9,4,1,1,34,2,0,0,0,2,-9,2,1,0,5,7.758754517117834,7.92352593102425,0,3,0,0,0,-9,0,-1055.275524585623,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,35,49,15,1,5,-9,0,9.607225999276663,9.607225999276663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.53,51.01,3,1,0,0,4,3,1,562,0,0,0 +2878,3527,6444,6445,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.336233361959234,8.403337585494507,0,1,0,-9,7,0,-1,1.896288219826704,0,0,0,56,1,5,1,2,1,2019,1,1,13,2,43,30,15,1,2,1,0,11.35671973585223,11.35671973585223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.17,17.7,5,1,0,0,5,5,1,414.5,0,0,0 +2878,3527,6445,6444,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,5,9.062257756538949,9.104859969594107,0,1,0,-9,7,0,1,38.03823663404579,0,0,0,55,2,3,1,1,2,2019,1,2,9,0,50,55,15,1,0,1,0,19.71378329725763,19.71378329725763,0,0,0,0,0,0,0,0,0,0,7.038721697638236,0,0,0,49.17,56.72,6,1,0,0,5,5,1,414.5,0,0,0 +2878,3528,6446,-9,6444,6445,3,1,1,23,2,0,0,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1153.960936789513,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,5,1,1,2414,0,0,0 +2878,3529,6447,-9,6444,6445,4,1,1,20,2,0,0,1,2,0,7,2,0,5,6.567611806237804,6.940611051160628,0,3,0,0,0,-9,0,-990.2602939689192,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,1,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,56.14,7,1,0,0,5,2,1,536,0,0,0 +2879,3530,6448,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1006.774703884241,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.25,23.88,5,1,0,0,9,1,0,378,0,0,0 +2880,3531,6449,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,5,8.058738268938978,7.95993346670227,0,3,0,0,0,-9,0,-1078.199110200478,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,37,0,15,1,4,-9,0,9.127553935306464,9.127553935306464,0,0,0,0,0,0,0,0,0,0,1.984125533856825,0,0,0,32.51,66.52,2,1,0,0,5,3,1,223,0,0,0 +2881,3532,6450,6451,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,6.626763553120131,6.162717604045721,1,0,-9,10,0,0,-36.03666841566232,0,0,0,83,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.768754043852261,6.549517747635011,0,3,57.87,47.65,6,1,0,0,10,2,1,430,0,0,0 +2881,3532,6451,6450,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,4,0,6.883943860812612,6.898368960347728,1,0,-9,10,0,9,-25.40451374523056,0,0,0,74,3,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.315126377513585,6.8421290609629,0,0,54.77,55.87,6,1,0,0,10,2,1,430,0,0,0 +2882,3533,6452,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,1,0,7.345072424008316,7.373564538748674,3,0,0,0,-9,0,-1016.695078289002,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.464602113562877,7.520602478215371,0,0,35.41,41.31,4,1,0,0,8,3,0,348,0,0,0 +2883,3534,6453,6454,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.986834042312392,9.012252587317191,0,1,0,-9,6,0,-3,80.18458017071488,0,0,0,56,2,2,3,3,3,2019,2,2,8,0,39,0,15,1,0,4,0,19.70447150344925,19.70447150344925,0,0,0,0,0,0,0,0,0,0,3.284440003366024,0,0,0,49.04,55.86,5,1,0,0,6,5,1,710,0,0,0 +2883,3534,6454,6453,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,2,0,7.949777183808242,7.33059437936355,1,0,-9,6,0,3,-74.97358613326713,0,0,0,53,1,3,1,-9,-9,2019,3,1,23,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.273710457678009,7.758054104539423,0,0,52.55,36.85,4,1,0,0,6,5,1,710,0,0,0 +2884,3535,6455,6456,-9,-9,1,1,0,51,1,0,1,0,1,-9,1,1,0,4,7.974410467249791,7.525451687849713,0,2,0,-9,7,0,-6,-30.22262060038817,0,0,0,57,2,4,1,2,-9,2019,1,2,6,0,22,21,15,1,0,1,0,11.30691183511394,11.30691183511394,0,0,0,0,0,0,0,1,1,0,2.263967311514728,0,0,0,51.24,58.84,6,1,0,0,12,5,1,709,0,0,0 +2884,3535,6456,6455,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,4,8.758813816561366,8.847742254751154,0,2,0,-9,7,0,6,-9.505901134427459,0,0,0,51,1,4,1,3,3,2019,1,1,6,0,52,48,15,1,0,1,0,21.71109884221726,21.71109884221726,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,12,5,1,709,0,0,0 +2885,3536,6457,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-954.1100757305494,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,61.5,4,1,0,1,13,1,0,1026,0,0,0 +2885,3537,6458,-9,6457,-9,2,1,0,36,2,0,0,0,2,-9,2,1,0,2,8.235190229356077,8.176153712150683,0,3,0,0,0,-9,0,-1093.645012806053,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,18,6,46,40,15,1,6,-9,1,8.661236039736179,8.661236039736179,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.49,49.1,3,1,0,0,13,4,0,138,0,0,0 +2886,3538,6459,6460,-9,-9,1,1,1,58,1,0,1,0,1,-9,2,1,0,4,8.818784894730808,8.314626508976525,0,2,0,-9,30,0,-1,121.008905041131,0,0,0,59,2,5,3,3,3,2019,2,2,6,0,30,30,15,1,0,4,0,18.45698462081658,18.45698462081658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.26,40.09,6,1,0,0,13,3,1,584.5,0,0,0 +2886,3538,6460,6459,-9,-9,2,1,0,59,1,0,1,0,2,-9,4,3,0,5,0,0,0,2,0,-9,30,0,1,-29.35109125156431,0,0,0,58,1,4,1,2,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.81,59.64,6,1,0,0,13,3,1,584.5,0,0,0 +2886,3539,6461,-9,6460,6459,3,1,1,26,2,0,1,0,1,1,2,1,0,5,8.43073503158687,8.520827751660253,0,3,0,0,0,-9,0,-1194.378850402353,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,1,37,0,15,1,1,-9,1,15.66675602927407,15.66675602927407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,5,1,1135,0,0,0 +2886,3540,6462,-9,6460,6459,4,1,0,24,2,0,1,1,1,0,7,2,0,5,8.206743455444514,8.21688026601238,0,3,0,0,0,-9,0,-1048.229975506503,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,3907,0,0,0 +2886,3541,6463,-9,6460,6459,5,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1012.80913970431,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,6,1,0,0,13,5,1,2041,0,0,0 +2887,3542,6464,6465,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,5,0,7.641708246664915,7.456386993778613,1,0,-9,8,0,2,61.05219905501095,0,0,0,66,1,5,1,-9,-9,2019,3,1,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.328162720226554,0,0,59.19,51.29,6,1,0,0,11,4,1,549.5,0,0,0 +2887,3542,6465,6464,-9,-9,1,1,0,66,1,0,0,0,1,-9,1,1,0,5,6.553256311763326,7.859423114261745,7.599896940604705,1,0,-9,20,0,-2,118.5837758550648,0,0,0,68,3,5,3,3,3,2019,2,2,6,0,3,4,15,1,0,4,0,29.91107896616792,29.91107896616792,0,0,0,0,0,0,0,1,1,0,4.162618095838933,7.678226730503158,0,3,57.06,57.76,7,1,0,0,11,4,1,549.5,0,0,0 +2888,3543,6466,6467,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,3,4.206798474627734,6.630827466505901,6.13472978175438,1,0,-9,41,0,18,-20.28494638635973,0,0,0,60,2,5,1,3,3,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.904024849463854,0,0,55.27,44.81,6,1,0,0,6,2,1,918.5,0,0,0 +2888,3543,6467,6466,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,5,6.806925126667206,6.785725452713566,0,1,0,-9,41,0,-18,-3.867667316298123,0,0,0,78,3,3,3,3,-9,2019,2,2,12,0,84,77,15,1,0,4,0,1.050467990555713,1.050467990555713,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.71,58.83,5,1,0,0,6,2,1,918.5,0,0,0 +2888,3544,6468,-9,-9,-9,3,1,0,29,2,0,0,0,2,-9,2,1,0,4,7.229872973633833,7.267848873420227,0,3,0,0,0,-9,0,-1055.026930185526,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,37,0,15,1,0,-9,0,4.747353777626739,4.747353777626739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,0,6,3,1,387,0,0,0 +2888,3544,6469,-9,6468,-9,4,1,0,17,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-915.5104717511859,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.42,46.82,4,1,0,0,6,3,1,387,0,0,0 +2888,3544,6470,-9,6468,-9,5,1,0,17,2,0,0,1,2,0,7,2,0,5,6.40120940188437,6.709035991722697,0,3,0,0,0,-9,0,-815.7169259265037,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.35,57.84,6,1,0,0,6,3,1,387,0,0,0 +2889,3545,6471,6472,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,3,8.991537564205716,9.228203359522107,0,2,0,-9,24,0,0,-70.41588193135478,0,0,0,46,2,2,1,2,2,2019,1,1,9,0,68,52,15,1,0,1,0,15.70410004759677,15.70410004759677,0,0,0,0,0,0,0,1,1,0,3.638111358717807,0,0,0,51.66,54.88,5,1,0,0,12,5,1,641,0,0,0 +2889,3545,6472,6471,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,2,0,0,0,2,0,-9,24,0,0,-.9706561104736675,0,0,0,46,2,3,1,2,2,2019,1,2,6,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.83,27.55,5,1,0,0,12,5,1,641,0,0,0 +2890,3546,6473,-9,-9,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,3,8.440623208118184,8.631359508069819,0,3,0,0,0,-9,0,-899.2736441058146,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,45,0,15,1,2,-9,1,12.485154192234,12.485154192234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,7,5,1,462,0,0,0 +2891,3547,6474,-9,6475,6476,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.026771273958,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,12,5,1,1138,0,0,0 +2891,3547,6475,6476,-9,-9,1,1,0,31,1,1,1,0,1,-9,1,1,0,3,0,0,0,2,0,-9,7,0,-4,-97.19408504097049,0,0,1,35,2,4,1,2,2,2019,1,2,6,0,6,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,7,1,0,0,12,5,1,1138,0,0,0 +2891,3547,6476,6475,-9,-9,2,1,1,35,1,1,1,0,2,-9,2,1,0,4,8.835418645182685,9.403983195646379,0,2,0,-9,7,0,4,119.978347170292,0,0,0,31,1,3,1,-9,-9,2019,1,1,4,0,38,32,15,1,0,1,0,27.94241649753684,27.94241649753684,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,1138,0,0,0 +2892,3548,6477,-9,6480,6479,3,1,1,16,2,0,2,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1080.433154494513,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,45.64,3,1,0,1,12,2,0,660.5,0,0,0 +2892,3548,6478,-9,6480,6479,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.091623908005,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,2,0,660.5,0,0,0 +2892,3548,6479,6480,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,7.597045874687542,7.481670299785168,0,2,0,-9,10,0,5,21.68463229995405,0,0,0,40,2,4,3,-9,3,2019,2,1,12,0,36,36,15,1,0,3,0,6.321444352330155,6.321444352330155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,6,1,0,0,12,2,0,660.5,0,0,0 +2892,3548,6480,6479,-9,-9,1,1,0,40,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,10,0,-5,37.10472035688259,0,0,1,45,2,3,1,3,2,2019,3,2,27,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80.97440015901971,3,24.69,57.43,4,1,0,0,12,2,0,660.5,0,0,0 +2893,3549,6481,6482,-9,-9,2,1,0,40,1,0,0,0,1,-9,2,1,0,4,8.955557104200818,8.699500048049917,0,1,0,-9,17,0,-6,67.44884481950812,0,0,1,46,1,4,1,2,1,2019,1,1,15,5,55,50,15,1,5,1,0,18.75844720243481,18.75844720243481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,55.65,3,1,0,0,10,5,1,784.5,0,0,0 +2893,3549,6482,6481,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,4,8.412331013770702,8.56971227766183,0,1,0,-9,17,0,6,-90.0356617329241,0,0,0,40,1,4,1,2,1,2019,1,2,11,0,50,50,15,1,0,1,0,12.37291329424029,12.37291329424029,0,0,0,0,0,0,0,0,0,0,1.564230756412745,0,0,0,54.2,57.49,6,1,0,0,10,5,1,784.5,0,0,0 +2894,3550,6483,-9,-9,-9,1,1,0,46,2,0,1,0,3,-9,2,1,0,5,8.559158947199311,8.349707031772912,0,4,0,0,0,-9,0,-940.0930587097959,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,60,80,15,1,0,-9,0,7.27230371411929,7.27230371411929,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,1,4,1,524,0,0,0 +2894,3551,6484,-9,6485,-9,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-992.3042633279613,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,1,1,1,1764,0,0,0 +2894,3551,6485,-9,6483,-9,2,1,1,20,2,0,1,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-978.9200185372788,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.57,46.33,4,1,1,0,1,1,1,1764,0,0,0 +2895,3552,6486,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,4,0,6.123654298802313,5.647502560338896,4,0,0,0,-9,0,-868.7284840878754,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,38,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.74962756459345,0,0,0,54.79,55.86,6,1,0,0,4,2,0,493,0,0,0 +2896,3553,6487,6488,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,3,9.177673938094758,9.493584343477838,0,1,0,-9,16,0,-5,126.2092815559752,0,0,0,60,2,3,3,2,2,2019,2,1,9,1,80,0,15,1,1,3,0,15.85231835032916,15.85231835032916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,8,5,1,1193,0,0,0 +2896,3553,6488,6487,-9,-9,1,1,0,60,1,0,0,0,2,-9,97,3,0,3,0,8.756169723117619,8.600933950226628,1,0,-9,16,0,5,55.65320243203749,0,0,0,55,1,3,1,1,1,2019,3,2,12,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.208519889124659,8.386318751981342,10.15233129969102,3,51.94,55.88,6,1,0,0,8,5,1,1193,0,0,0 +2897,3554,6489,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,6.943412717725816,7.07177878242083,3,0,0,0,-9,0,-950.1483657991731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.529364401777154,6.916000215601866,0,0,48.36,52.17,6,1,0,0,9,2,1,367,0,0,0 +2898,3555,6490,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,2,0,7.497083152601184,7.717478138453987,3,0,-9,0,1,0,-1090.388956369427,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.871042230991495,7.654620171547957,0,0,35.43,42.24,4,1,0,0,7,3,1,543,0,0,0 +2899,3556,6491,-9,6493,6492,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.0730997253281,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,4,1,590,0,0,0 +2899,3556,6492,6493,-9,-9,1,1,1,48,1,0,1,0,1,-9,1,1,0,4,7.2520889757922,7.51744555979957,0,2,0,-9,10,0,10,-39.14152091965634,0,0,0,38,1,4,1,1,1,2019,1,2,12,1,48,40,15,1,1,1,0,3.062653882959919,3.062653882959919,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,8,4,1,590,0,0,0 +2899,3556,6493,6492,-9,-9,2,1,0,38,1,0,1,0,1,-9,1,1,0,4,8.440614618548885,8.441329059933759,0,2,0,-9,10,0,-10,-182.4444199187501,0,0,1,48,1,4,1,-9,-9,2019,1,1,9,2,40,0,15,1,2,1,0,12.40947582469131,12.40947582469131,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,6,1,0,0,8,4,1,590,0,0,0 +2900,3557,6494,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,4,3,0,4,0,8.106569650008062,7.955184650328841,3,0,0,0,-9,0,-1016.048458867083,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.860132300672245,8.154281670124966,0,0,60.12,54.8,6,1,0,0,10,4,1,554,0,0,0 +2901,3558,6495,6496,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,7.838952084961119,7.833359897969311,1,0,-9,36,0,11,99.65730059824301,0,0,0,58,2,1,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.112649652647348,7.942106820309937,37.83527428916294,1,62.27,42.94,6,1,0,0,5,3,1,1186,0,0,0 +2901,3558,6496,6495,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,36,0,-11,-48.76826381608871,0,0,0,69,1,3,3,-9,-9,2019,4,1,26,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.540582836584161,0,0,0,40.08,19.91,6,1,0,0,5,3,1,1186,0,0,0 +2902,3559,6497,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-987.8745527568196,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46.15,32.66,6,1,0,0,1,1,1,1230,0,0,0 +2903,3560,6498,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,3,0,8.189037544481748,8.118041428387031,3,0,0,0,-9,0,-1066.568110688335,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.173868538099647,8.354476100677385,0,0,57.33,53.46,6,1,0,0,9,4,1,357,0,0,0 +2904,3561,6499,-9,6501,6502,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.078725715044,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,2,0,0,7,5,1,592.25,0,0,0 +2904,3561,6500,-9,6501,6502,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.6602350042044,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,7,5,1,592.25,0,0,0 +2904,3561,6501,6502,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,2,7.545573389415543,7.450014549704107,0,2,0,-9,19,0,-8,-2.95732496891034,0,0,0,54,3,2,1,3,-9,2019,1,1,8,0,21,25,15,1,0,1,0,9.555406656064433,9.555406656064433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.18,45.76,6,2,0,0,7,5,1,592.25,0,0,0 +2904,3561,6502,6501,-9,-9,1,1,1,54,1,0,2,0,3,-9,2,1,0,2,9.347524976874485,9.415497437260347,0,2,0,-9,19,0,8,25.4934515613487,-9,0,0,46,2,2,1,-9,-9,2019,1,2,11,0,55,0,15,1,0,1,0,21.41654610485627,21.41654610485627,0,0,0,0,0,0,0,0,0,0,7.128782584018184,0,0,0,55.2,49.4,5,1,0,0,7,5,1,592.25,0,0,0 +2905,3562,6503,6504,-9,-9,1,1,0,23,1,0,0,0,2,1,2,1,0,3,7.844700899091571,8.416815705533082,0,1,0,-9,4,0,-6,24.25647055843618,-9,1,1,29,2,3,1,1,2,2019,1,2,13,1,37,0,15,1,1,1,0,9.48237842715023,9.48237842715023,0,0,0,0,0,0,0,0,0,0,2.829654234956902,0,0,0,55.98,43.19,6,1,0,0,2,5,0,498.5,0,0,0 +2905,3562,6504,6503,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,3,8.900336631579711,9.134651812516989,0,1,0,-9,4,0,6,-135.9012755566049,0,1,0,23,2,3,1,-9,-9,2019,1,1,1,0,43,48,15,1,0,1,0,23.30986864449635,23.30986864449635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,57.03,6,1,0,0,2,5,0,498.5,0,0,0 +2906,3563,6505,6506,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,4,6.960954626749498,6.953302368824421,0,1,0,-9,2,0,7,122.2868853104225,0,0,0,56,2,2,1,3,3,2019,1,2,13,2,24,22,15,1,2,1,0,4.402058808263866,4.402058808263866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,6,1,0,0,6,4,1,315,0,0,0 +2906,3563,6506,6505,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,2,8.358513566674679,8.178372799037163,0,1,0,-9,2,0,-7,-172.1277811484765,0,0,0,63,2,4,1,-9,-9,2019,1,1,14,4,44,42,15,1,4,1,0,10.15726994000531,10.15726994000531,0,0,0,0,0,0,0,1,1,0,4.101085444229832,0,0,0,48.1,24.17,5,1,0,0,6,4,1,315,0,0,0 +2907,3564,6507,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,2,0,6.945841850988888,7.406053100097806,3,0,0,0,-9,0,-1100.520926194247,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.985937995212907,0,0,50.86,47.22,5,1,0,0,2,3,0,587,0,0,0 +2908,3565,6508,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,5.186204990250518,5.065038876943699,3,0,0,0,-9,0,-1096.593688868709,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.275735213669705,5.308489074675503,7.001864717441354,3,50.95,41.15,5,1,0,0,6,2,1,970,0,0,0 +2908,3566,6509,-9,6508,-9,2,1,1,50,2,0,0,0,3,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-986.5718407366604,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.110915592742569,0,0,0,53,54,6,1,0,0,6,1,1,739,0,0,0 +2909,3567,6510,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,4,8.684235666457589,8.650710086669548,0,3,0,0,0,-9,0,-973.9865468880429,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,38,38,15,1,0,-9,0,16.67283687150228,16.67283687150228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,6,1,0,0,13,5,1,151,0,0,0 +2910,3568,6511,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,2,8.094872957444625,8.091538639321801,0,3,0,0,0,-9,0,-1014.972691738362,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,39,39,15,1,0,-9,0,10.54811111389268,10.54811111389268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.65,35.93,5,1,0,0,13,4,0,1243,0,0,0 +2911,3569,6512,-9,-9,-9,1,1,1,46,3,0,0,0,1,-9,2,1,0,4,9.224655159360685,8.984271108580444,0,3,0,-9,0,1,0,-976.8467114085296,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,52,15,1,0,-9,0,19.07741341797773,19.07741341797773,0,0,0,0,0,0,0,0,0,0,0,0,7.729906502834226,3,48.87,58.55,5,1,0,0,9,5,0,3054,0,0,0 +2912,3570,6513,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,3,7.53191262716918,7.49760431779765,5.793134243349804,3,0,0,0,-9,0,-919.3822118681296,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,34,32,15,1,0,-9,0,6.182750994708559,6.182750994708559,0,0,0,0,0,0,0,1,1,0,2.825124988781587,6.29497346049263,0,0,57.33,53.46,6,1,0,0,1,3,1,1364,0,0,0 +2912,3571,6514,-9,6513,-9,2,1,1,28,2,0,0,0,2,-9,1,1,0,5,5.420276841428438,4.879448769866928,0,3,0,0,0,-9,0,-1079.790402169838,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,60,60,15,1,0,-9,1,.3750996196878884,.3750996196878884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.96,55.09,5,1,0,0,1,2,1,201,0,0,0 +2912,3572,6515,-9,6513,-9,3,1,1,26,2,0,0,0,1,-9,2,1,0,3,7.827764937813459,7.980292415980391,0,3,0,0,0,-9,0,-1025.612071049095,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,37,37,15,1,0,-9,1,9.005049967436671,9.005049967436671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,5,1,0,0,1,3,1,1855,0,0,0 +2913,3573,6516,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,4,3,0,4,0,6.967943569479307,7.377711981943115,3,0,0,0,-9,0,-1025.149944602814,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.519672271959233,7.316815354788051,0,0,53,54,6,1,0,0,7,2,1,874,0,0,0 +2914,3574,6517,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,2,0,6.237995751261551,6.936654990660426,3,0,0,0,-9,0,-818.9693321384823,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.770250374836921,0,0,0,24.6,36.21,3,1,0,0,10,2,0,1217,0,0,0 +2915,3575,6518,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,4,9.103623471266902,8.874669117325023,0,3,0,0,0,-9,0,-1000.891737781615,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,80,41,15,1,0,-9,0,12.26319791246284,12.26319791246284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.07000000000001,47.52,6,1,0,0,2,5,1,260,0,0,0 +2915,3576,6519,-9,6518,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,3,8.224006044744504,8.381747967107843,0,3,0,0,0,-9,0,-1042.165572451635,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,2,35,0,15,1,2,-9,1,11.45146802772202,11.45146802772202,0,0,0,0,0,0,0,0,0,0,4.927826270945591,0,0,0,48.45,57.49,4,1,0,0,2,4,1,64,0,0,0 +2915,3577,6520,-9,6518,-9,3,1,0,18,2,0,0,0,2,-9,2,1,0,3,7.926471672877293,7.81821609387316,0,3,0,0,0,-9,0,-965.8329352025469,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,43,0,15,1,0,-9,1,8.255857303089254,8.255857303089254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,2,4,1,793,0,0,0 +2916,3578,6521,-9,-9,-9,1,1,0,67,2,0,0,0,1,-9,4,3,0,4,0,7.966623507081938,8.204106263021218,3,0,0,0,-9,0,-974.9465542209645,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.276216352322933,8.045099612135305,0,0,54.2,57.49,7,1,0,0,12,4,1,243,0,0,0 +2917,3579,6522,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.906562032155041,7.766783609886838,0,3,0,0,0,-9,0,-981.0658706780397,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,28,20,15,1,0,-9,0,11.63542746674598,11.63542746674598,0,0,0,0,0,0,0,1,1,0,6.990502028852486,0,0,0,58.87,51.29,5,1,0,0,12,4,1,332,0,0,0 +2918,3580,6523,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,1,8.385782846697548,8.628251153588067,0,3,0,0,0,-9,0,-940.5751213079923,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,9,40,40,15,1,9,-9,0,18.49139963501225,18.49139963501225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.89,26.83,2,1,0,0,7,5,1,783,0,0,0 +2919,3581,6524,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,7.178961848302879,7.012963627592695,3,0,0,0,-9,0,-990.0010322307367,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.279252242073521,6.979744475226682,0,0,38.52,51.4,6,1,0,0,9,2,1,840,0,0,0 +2920,3582,6525,-9,-9,-9,2,1,0,48,3,0,1,0,1,-9,2,1,0,4,7.497558773087645,7.025153031607106,0,4,0,-9,0,1,0,-948.5838452616879,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,16,8,15,1,0,-9,0,9.468389286515761,9.468389286515761,0,0,0,0,0,0,0,1,1,0,0,0,121.5857723507065,3,44.53,56.37,5,1,0,0,9,2,1,724,0,0,0 +2920,3582,6526,-9,6525,-9,5,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1008.651522991155,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,9,2,1,724,0,0,0 +2920,3583,6527,-9,6525,-9,3,1,0,22,2,0,1,0,1,1,97,3,0,4,6.432624757912171,6.133911650370482,0,3,0,0,0,-9,0,-993.4913809551322,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,36,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.813195881334439,0,0,0,54.79,55.86,6,1,0,0,9,2,1,192,0,0,0 +2921,3584,6528,6529,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,48,0,-8,-23.23768735443273,0,0,0,81,1,4,3,-9,2,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.754835175663765,0,0,3,57.04,39.67,6,1,0,0,7,2,1,1054,0,0,0 +2921,3584,6529,6528,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,4,0,7.434021985482766,7.635949978927646,1,0,-9,48,0,8,184.0453216341387,0,0,0,73,1,4,3,1,1,2019,4,2,4,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.838783426376244,7.367747247019176,0,3,57,50,7,1,0,0,7,2,1,1054,0,0,0 +2922,3585,6530,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,5.422201622262381,5.112290272520242,3,0,0,0,-9,0,-1057.108552546769,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.047886258149467,0,0,48.68,53.73,6,4,0,0,9,2,1,329,0,0,0 +2923,3586,6531,-9,-9,-9,2,1,0,29,2,0,0,0,2,-9,2,1,0,4,8.038456181575611,7.966420580939955,0,3,0,0,0,-9,0,-1095.873212077304,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,41,37,15,1,0,-9,0,8.931445811589198,8.931445811589198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.11,56.11,5,1,0,0,12,4,0,602,0,0,0 +2924,3587,6532,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1026.567171375638,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,41.02546348238175,3,51,46,6,3,0,0,9,1,1,517,0,0,0 +2924,3588,6533,6534,6532,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,3,8.014438304039102,7.991728549402494,0,1,0,-9,1,-9,0,-5.134939151482511,-9,0,0,55,2,4,1,3,2,2019,1,3,9,0,37,0,15,1,0,1,0,8.684382838982515,8.684382838982515,0,0,0,0,0,0,0,1,1,0,0,0,10.56107506756699,3,40.48,52.84,7,3,0,0,9,4,1,2801.5,0,0,0 +2924,3588,6534,6533,-9,-9,3,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.086197730668486,8.349373567328534,0,1,0,-9,1,-9,0,-48.06036873061993,-9,0,0,55,3,3,1,-9,-9,2019,1,2,11,0,37,0,15,1,0,1,0,10.25432362521444,10.25432362521444,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,3,0,0,9,4,1,2801.5,0,0,0 +2925,3589,6535,6536,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,7.727844926304152,7.92339937930247,1,0,-9,5,0,5,3.986818056662286,0,0,0,60,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.535084117250093,7.881289201910873,0,0,54.37,54.8,6,1,0,0,2,3,1,1241.5,0,0,0 +2925,3589,6536,6535,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,36,0,-5,35.88896681004475,0,0,0,65,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.929389260538628,0,0,0,52.12,44.79,6,1,0,0,2,3,1,1241.5,0,0,0 +2926,3590,6537,6538,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,3,7.996163314609137,8.183672951354362,0,1,0,-9,1,-9,0,144.4701840990642,-9,0,0,44,2,3,1,-9,-9,2019,1,1,10,0,45,0,15,1,0,1,0,8.282641331691714,8.282641331691714,0,0,0,0,0,0,0,0,0,0,0,0,4.394094976662952,3,38.82,56.79,6,1,0,0,7,4,0,911,0,0,0 +2926,3590,6538,6537,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,3,7.938737457545895,7.777096619293048,0,1,0,1,1,-9,0,33.08245958141468,0,0,1,44,1,3,1,-9,-9,2019,1,2,22,10,35,0,15,1,10,1,0,8.819100953912374,8.819100953912374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.05,54.77,3,1,0,0,7,4,0,911,0,0,0 +2927,3591,6539,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,4,0,6.742619867733719,6.947469209963447,3,0,0,0,-9,0,-958.5682363863842,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.566898845014796,0,0,59.88,45.34,6,1,0,0,13,2,1,2363,0,0,0 +2928,3592,6540,6541,-9,-9,2,1,1,69,1,0,0,0,3,-9,2,1,0,3,7.988878833713409,8.133403716886562,6.615344500886697,1,0,-9,33,0,-3,-72.55468858662415,0,0,0,72,1,3,1,2,3,2019,1,1,7,0,17,24,15,1,0,1,0,16.23602402290389,16.23602402290389,1,0,0,0,0,0,0,1,1,0,6.72995413193956,6.868924035349385,0,0,64.23999999999999,29.69,6,1,0,0,4,4,1,370,0,0,0 +2928,3592,6541,6540,-9,-9,1,1,0,72,1,0,0,0,1,-9,1,1,0,3,5.725554230704494,6.968589608354963,6.637253886462574,1,0,-9,33,0,3,66.55693952029699,0,0,0,69,3,3,1,3,3,2019,1,2,15,3,10,8,15,1,3,1,0,3.558624042963244,3.558624042963244,0,0,0,0,0,0,0,1,1,0,2.565695177268951,6.269090967009133,0,0,40.05,43.86,5,1,0,0,4,4,1,370,0,0,0 +2929,3593,6542,6544,-9,-9,2,1,0,24,1,1,1,0,2,-9,2,1,0,4,7.489759805824123,7.329974427722127,0,2,0,-9,6,0,-6,-110.3045634443906,0,1,1,30,2,4,1,-9,-9,2019,1,1,11,0,24,34,15,1,2,1,0,5.634433018549535,5.634433018549535,0,0,0,0,0,0,0,1,1,0,.2243949848009663,0,0,0,46,58,5,1,0,0,4,4,1,1309.333333333333,0,0,0 +2929,3593,6543,-9,6542,6544,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.567896924224,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,1309.333333333333,0,0,0 +2929,3593,6544,6542,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,4,8.184804200397688,8.387117485193611,0,2,0,-9,6,0,6,-119.3162730200007,0,0,0,24,2,4,1,3,3,2019,1,2,10,0,48,50,15,1,1,1,0,11.69521539596132,11.69521539596132,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,4,4,1,1309.333333333333,0,0,0 +2930,3594,6545,6546,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,3,8.485803450991588,8.427425398672559,0,1,0,-9,38,0,-2,-92.31784984620059,0,0,0,59,1,4,1,3,3,2019,1,2,11,1,48,43,15,1,1,1,0,13.56470794757404,13.56470794757404,0,0,0,0,0,0,0,1,1,0,.8796825008283449,0,0,0,47.16,43.1,6,2,0,0,9,5,1,421,0,0,0 +2930,3594,6546,6545,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,4,9.699830166307063,10.01762330051773,0,1,0,-9,38,0,2,93.93714202195132,0,0,0,57,1,3,1,3,3,2019,1,1,8,0,55,55,15,1,0,1,0,30.59764072545113,30.59764072545113,0,0,0,0,0,0,0,1,1,0,4.832438853770754,0,0,0,57.16,56.15,6,1,0,0,9,5,1,421,0,0,0 +2930,3595,6547,-9,6545,6546,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.673200448535246,8.062324265803147,0,3,0,0,0,-9,0,-1075.288322845485,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,37,43,15,1,2,-9,1,9.819530825583202,9.819530825583202,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,9,3,1,542,0,0,0 +2931,3596,6548,6549,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.952785276972067,9.335391366010425,0,1,0,-9,9,0,0,71.19675403801492,0,0,0,56,2,4,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,27.49938180318313,27.49938180318313,0,0,0,0,0,0,0,0,0,0,7.024355798660906,0,0,0,62.1,42.92,6,1,0,0,10,5,1,1538,0,0,0 +2931,3596,6549,6548,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.885831815892272,8.445916042512202,0,1,0,-9,9,0,0,-39.33161922401693,0,0,0,56,2,4,1,2,-9,2019,1,2,8,0,37,37,15,1,0,1,0,10.71528182830127,10.71528182830127,0,0,0,0,0,0,0,0,0,0,7.630458885609749,0,0,0,51.24,58.84,6,1,0,0,10,5,1,1538,0,0,0 +2932,3597,6550,6551,-9,-9,1,1,1,79,1,0,0,0,3,-9,2,1,0,4,8.103345320598839,7.718696959851707,0,1,0,-9,8,0,3,28.68689417113329,0,0,0,76,3,3,3,3,3,2019,2,2,9,0,28,28,15,1,0,4,0,10.02971555722509,10.02971555722509,0,0,0,0,0,0,0,1,1,0,2.087837584626946,0,0,0,57.16,56.15,7,1,0,0,7,3,1,365,0,0,0 +2932,3597,6551,6550,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-3,24.46903188377593,0,0,0,79,3,4,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.302397201343545,0,0,0,57.33,53.46,6,1,0,0,7,3,1,365,0,0,0 +2933,3598,6552,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,3,6.232139345618362,10.27706505352107,10.00285164198869,4,0,0,0,-9,0,-920.7223604979473,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,26,26,15,1,0,-9,0,2.143725836777239,2.143725836777239,0,0,0,0,0,0,0,1,1,0,0,9.659634286093665,0,0,48.54,46.62,6,1,0,0,5,5,1,303,0,0,0 +2933,3598,6553,-9,6552,-9,3,1,0,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1051.887096039206,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.07,55.12,2,1,0,0,5,5,1,303,0,0,0 +2933,3599,6554,-9,6552,-9,2,1,1,18,2,0,1,0,2,-9,2,1,0,4,8.040396471891739,8.202804622908474,0,3,0,0,0,-9,0,-933.6649463600968,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,40,0,15,1,5,-9,1,8.73748115948456,8.73748115948456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,3,1,0,1,5,4,1,1241,0,0,0 +2934,3600,6555,6556,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.761981063134782,7.393010627801999,0,1,0,-9,15,0,2,143.9639306652093,0,0,0,56,3,5,1,2,2,2019,1,1,20,8,26,26,15,1,8,1,0,6.854351831920508,6.854351831920508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.44,22.08,6,1,0,0,9,3,1,447.5,0,0,0 +2934,3600,6556,6555,-9,-9,1,1,1,56,1,0,0,0,3,-9,1,1,0,5,6.099959916505121,6.052071035977324,0,1,0,-9,15,0,-2,93.72470883047393,0,0,0,58,2,2,1,3,3,2019,1,2,6,0,50,55,15,1,0,1,0,1.002292342274828,1.002292342274828,0,0,0,0,0,0,0,0,0,0,4.242192207216069,0,.4154892667952783,1,57.06,57.76,1,1,0,0,9,3,1,447.5,0,0,0 +2935,3601,6557,-9,6558,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,3,7.890427589825213,7.899529976625062,0,3,0,0,0,-9,0,-1042.532603271109,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,1,9.702949387663203,9.702949387663203,0,0,0,0,0,0,0,1,1,0,1.578415195035571,0,70.46244288347717,3,59.04,48.6,2,1,0,0,6,4,0,405,0,0,0 +2935,3602,6558,-9,-9,-9,2,1,0,96,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1024.096063410604,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,42,6,1,0,0,6,1,0,1365,0,0,0 +2936,3603,6559,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-956.5405257812273,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,37,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.725725565230593,0,0,0,51.07,39.92,6,1,1,0,12,1,1,567,0,0,0 +2937,3604,6560,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,2,8.648086074725555,8.368259749061153,5.166623175935068,4,0,0,0,-9,0,-1202.332027071541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,32,41,15,1,0,-9,0,21.26480143723783,21.26480143723783,0,0,0,0,0,0,0,1,1,0,5.555287828230243,0,0,0,50.01,35.65,5,1,0,0,12,4,0,710,0,0,0 +2937,3604,6561,-9,6560,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-910.2848387629989,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,4,0,710,0,0,0 +2938,3605,6562,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,2,7.507780218011607,7.623238938738314,0,3,0,0,0,-9,0,-988.0325498691757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,35,37,15,1,7,-9,0,5.642402173677907,5.642402173677907,0,0,0,0,0,0,0,0,0,0,0,0,4.801060855374679,3,44.33,27.14,6,1,0,1,10,3,1,233,0,0,0 +2939,3606,6563,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,5.250218327213911,5.343049429450944,3,0,-9,0,-9,0,-894.1418136055341,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.775635384600393,0,0,0,44.74,34.68,4,1,0,0,7,2,1,535,0,0,0 +2940,3607,6564,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,1,1,0,3,0,0,0,3,0,-9,0,-9,0,-972.5586863785451,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.082918003827124,3,46.48,53.76,7,3,0,0,8,1,1,52,0,0,0 +2941,3608,6565,6567,-9,-9,2,1,0,54,1,0,2,0,2,-9,1,1,0,4,6.577231614830321,6.228205721139067,0,2,0,-9,19,0,4,-9.227118847735527,0,0,0,50,1,4,1,2,1,2019,1,1,11,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,8,4,1,1110.333333333333,0,0,0 +2941,3608,6566,-9,6565,6567,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.1711752375286,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,4,1,1110.333333333333,0,0,0 +2941,3608,6567,6565,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,4,9.027059148533624,8.942693443139108,0,2,0,-9,10,0,-4,-72.21829376283193,0,0,0,54,2,4,1,-9,-9,2019,1,2,17,5,40,80,15,1,5,1,0,28.37899349182974,28.37899349182974,0,0,0,0,0,0,0,0,0,0,7.42242718373709,0,0,0,50.54,55.04,4,1,0,0,8,4,1,1110.333333333333,0,0,0 +2942,3609,6568,-9,6571,6572,7,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.991693750695,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,798.1666666666666,0,0,0 +2942,3609,6569,-9,6571,6572,4,1,1,16,2,0,4,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1035.11718240018,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.9,50.92,5,1,0,0,5,3,1,798.1666666666666,0,0,0 +2942,3609,6570,-9,6571,6572,2,1,0,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1074.807804011896,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,5,3,1,798.1666666666666,0,0,0 +2942,3609,6571,6572,-9,-9,3,1,0,45,1,0,4,0,1,-9,2,1,0,4,6.934377832728344,7.169556396911166,5.049768119499254,2,0,-9,8,0,5,-73.92083551322273,0,0,0,40,1,3,1,-9,-9,2019,1,1,7,0,16,0,15,1,0,1,0,6.615593205083544,6.615593205083544,0,0,0,0,0,0,0,1,1,0,5.361566207536314,0,0,0,51.24,58.84,6,1,0,0,5,3,1,798.1666666666666,0,0,0 +2942,3609,6572,6571,-9,-9,1,1,1,40,1,0,4,0,1,-9,2,1,0,3,8.377867429327027,8.497879543131695,0,2,0,-9,8,0,-5,29.35606660631867,0,0,0,45,1,4,1,1,1,2019,1,3,8,0,40,45,15,1,0,1,0,13.91459300269765,13.91459300269765,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,6,1,0,1,5,3,1,798.1666666666666,0,0,0 +2942,3609,6573,-9,6571,6572,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.4223931686519,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,798.1666666666666,0,0,0 +2942,3610,6574,-9,6571,6572,5,1,1,22,2,0,4,1,2,0,7,2,0,3,7.227684891310499,7.260522618404769,0,3,0,0,0,-9,0,-977.4437006787019,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,16,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.51,42.06,6,1,0,0,5,2,1,394,0,0,0 +2943,3611,6575,-9,6578,6576,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.96349218833,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,787.5,0,0,0 +2943,3611,6576,6578,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,3,7.982315104568291,7.721942702771881,0,2,0,-9,6,0,3,-64.85736649648285,0,0,0,33,2,2,1,-9,-9,2019,1,1,10,0,58,0,15,1,0,1,0,5.568583627580575,5.568583627580575,0,0,0,0,0,0,0,1,1,0,0,0,4.337749775731366,3,46.67,55.57,6,1,0,0,4,3,1,787.5,0,0,0 +2943,3611,6577,-9,6578,6576,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.1957074813324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,787.5,0,0,0 +2943,3611,6578,6576,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,2,6.758474495021488,6.967516426790108,0,2,0,-9,6,0,-3,-44.42010579006076,0,0,1,36,2,3,1,-9,-9,2019,1,2,21,9,16,0,15,1,9,1,0,9.149207075320826,9.149207075320826,0,0,0,0,0,0,0,1,1,0,0,0,10.77696725906797,3,33.84,48.44,5,1,0,1,4,3,1,787.5,0,0,0 +2944,3612,6579,-9,-9,-9,1,1,0,51,2,0,2,0,2,-9,2,1,0,3,7.842758005933558,7.686012642898584,0,4,0,0,0,-9,0,-982.3216813074213,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,36,28,15,1,3,-9,0,9.859014572792749,9.859014572792749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.49,45.98,3,1,0,0,12,3,1,332,0,0,0 +2944,3612,6580,-9,6579,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-904.0949898163371,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,332,0,0,0 +2945,3613,6581,-9,-9,-9,1,1,1,46,2,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1036.800154875958,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.5722268325387,3,27.51,36.35,2,1,0,1,9,1,0,722.5,0,0,0 +2945,3613,6582,-9,-9,6581,2,1,1,17,2,0,1,0,-9,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1129.538671419386,1,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,1,0,722.5,0,0,0 +2946,3614,6583,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,97,3,0,4,8.084827933910914,8.098897993437459,0,3,0,0,0,-9,0,-953.3587152727686,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,1,70,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.04,39.68,5,1,0,0,8,4,0,1898,0,0,0 +2946,3615,6584,-9,6583,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.553890786537496,7.502380697773937,0,3,0,0,0,-9,0,-1050.927318239843,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,40,15,1,1,-9,1,5.145631415966759,5.145631415966759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,8,3,0,275,0,0,0 +2947,3616,6585,6586,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,4.231445707277264,4.327660959348826,1,0,-9,8,0,1,65.1794420151621,0,0,0,72,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.120135413764485,4.263487134611363,0,0,60.12,54.8,7,1,0,0,2,2,1,560.5,0,0,0 +2947,3616,6586,6585,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,3.878834948382308,4.20239180548129,1,0,-9,8,0,-1,177.5400870840603,0,0,0,73,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.422112854206674,4.020496838083105,0,0,59.15,49.67,6,1,0,0,2,2,1,560.5,0,0,0 +2948,3617,6587,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,6,3,0,4,0,5.252644460771664,4.683223792504804,3,0,0,0,-9,0,-1122.962053457552,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.112677457484747,4.964914988369578,0,0,57.16,56.15,6,1,0,0,6,2,1,879,0,0,0 +2949,3618,6588,6589,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,7.289224975559363,7.235428866955647,1,0,-9,48,0,-3,-37.62791634445783,0,0,0,69,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,32.46432075610577,0,0,15.49823344663195,0,1,1,0,0,7.112358821520299,0,0,36.44,20.24,5,1,0,0,10,2,0,533,0,0,0 +2949,3618,6589,6588,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,6.311765593046162,6.107036090818053,1,0,-9,48,0,3,137.7517432110683,0,0,0,66,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.532374999356206,6.176690623850266,71.1239140716001,2,50.86,47.22,6,1,0,0,10,2,0,533,0,0,0 +2949,3619,6590,-9,-9,-9,3,1,1,22,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1011.04986949825,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.75833829567811,3,19.58,60.09,3,1,0,0,10,1,0,390,0,0,0 +2950,3620,6591,-9,-9,-9,1,1,1,72,2,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-981.7986936732541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.18,54.08,3,1,0,1,9,1,1,284,0,0,0 +2951,3621,6592,-9,6593,-9,4,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-881.950536259985,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,6,1,0,748.3333333333334,0,0,0 +2951,3621,6593,-9,-9,-9,1,1,0,36,2,0,3,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-967.1813827092689,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,4,0,0,6,1,0,748.3333333333334,0,0,0 +2951,3621,6594,-9,6593,-9,3,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.259321283206,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,6,1,0,748.3333333333334,0,0,0 +2952,3622,6595,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-932.7044279887126,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.26,25.5,7,1,0,0,9,1,1,1109,0,0,0 +2953,3623,6596,6597,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,9.476857664456062,9.438519384245284,0,1,0,-9,28,0,-15,49.05407984986969,0,0,0,71,1,3,3,2,2,2019,2,2,7,0,47,50,15,1,0,4,0,28.42935983136248,28.42935983136248,0,0,0,0,0,0,0,1,1,0,2.660304593605523,0,6.14781981987453,3,56.57,57.78,6,1,0,0,5,5,1,498,0,0,0 +2953,3623,6597,6596,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,3,7.744814228890669,8.724028959394246,8.269455062830668,1,0,-9,27,0,15,9.066822549973759,0,0,0,56,1,4,1,2,2,2019,3,1,11,0,6,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.545887404367443,.0447342009503258,3,59.91,42.65,7,1,0,0,5,5,1,498,0,0,0 +2953,3624,6598,-9,6596,6597,3,1,1,20,2,0,0,0,2,1,2,1,0,4,6.241888917709197,7.074545496502503,6.66332531022394,3,0,0,0,-9,0,-879.0647426736504,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,4,0,15,1,0,-9,1,15.51681994581141,15.51681994581141,0,0,0,0,0,0,0,1,1,0,6.419349124226065,0,0,0,38,62.48,5,1,0,0,5,3,1,501,0,0,0 +2953,3625,6599,-9,6596,6597,4,1,1,20,2,0,0,1,3,-9,7,2,0,5,7.001483595643217,6.931155440100888,0,3,0,0,0,-9,0,-964.8025654327863,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,1,15,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.883075325857684,0,0,0,57.06,57.76,7,1,0,0,5,2,1,414,0,0,0 +2954,3626,6600,6602,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,5,7.561348230544953,7.690231861865537,0,2,0,-9,1,-9,-2,19.82686242076678,-9,0,0,47,2,3,1,-9,-9,2019,1,2,6,0,30,0,15,1,0,1,0,8.255594094220292,8.255594094220292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,1,527,0,0,0 +2954,3626,6601,-9,6600,6602,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1020.967111984154,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,527,0,0,0 +2954,3626,6602,6600,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,3,9.14034497346648,8.79905644839752,0,2,0,-9,1,-9,2,-120.3127255640646,-9,0,0,45,3,5,1,-9,-9,2019,1,1,9,0,60,0,15,1,0,1,0,14.65590878059837,14.65590878059837,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.35,57.86,6,1,0,0,2,5,1,527,0,0,0 +2955,3627,6603,6604,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,3,7.928402606918795,8.058702322476808,0,1,0,-9,6,0,-8,-166.2916518902393,0,0,0,59,3,1,1,-9,-9,2019,1,1,14,2,40,40,15,1,2,1,0,7.732823271788162,7.732823271788162,0,0,0,0,0,0,0,0,0,0,0,0,0,1,44.74,48.37,3,1,0,0,12,4,1,451.5,0,0,0 +2955,3627,6604,6603,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,1,8.0382141295631,7.710586729628754,0,1,0,-9,6,0,8,-35.27630214730745,0,0,0,51,2,3,1,3,3,2019,1,2,26,11,40,50,15,1,11,1,0,7.628587372730282,7.628587372730282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.42,24.23,4,1,0,0,12,4,1,451.5,0,0,0 +2956,3628,6605,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,4.338823134257852,4.523691705582481,3,0,0,0,-9,0,-1058.162029307084,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.82126590970966,4.259486883625372,38.20076773944226,3,60.8,32.65,6,1,0,0,2,1,1,364,0,0,0 +2957,3629,6606,6607,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,9.196612780374704,9.125375946458735,0,2,0,-9,2,0,4,18.62687636087418,0,0,0,41,2,4,3,2,2,2019,2,2,7,0,55,50,15,1,0,3,0,21.72130017666775,21.72130017666775,0,0,0,0,0,0,0,1,1,0,6.958709177551684,0,0,0,51.24,58.84,6,1,0,0,7,5,1,449,0,0,0 +2957,3629,6607,6606,-9,-9,2,1,0,41,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-4,-138.3353604963521,0,0,1,45,2,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,1,449,0,0,0 +2957,3629,6608,-9,6607,6606,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1041.021269542262,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,7,5,1,449,0,0,0 +2957,3629,6609,-9,6607,6606,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.3685965755145,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,449,0,0,0 +2958,3630,6610,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,4,0,6.205560770899009,6.153581051473298,3,0,0,0,-9,0,-997.7222762461358,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.592768519437155,5.888524674903564,0,0,57.16,56.15,7,1,0,0,13,2,1,544,0,0,0 +2959,3631,6611,-9,-9,6613,3,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-999.6963266034519,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.24,50.42,6,1,0,0,2,3,0,271.6666666666667,0,0,0 +2959,3631,6612,-9,-9,6613,2,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1094.497829378616,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,2,3,0,271.6666666666667,0,0,0 +2959,3631,6613,-9,-9,-9,1,1,1,46,3,0,2,0,2,-9,2,1,0,5,8.546059328065596,8.522656387312191,0,4,0,-9,0,1,0,-980.1237115456247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,9,55,54,15,1,9,-9,0,10.27395985586197,10.27395985586197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.22,72.21000000000001,2,1,0,1,2,3,0,271.6666666666667,0,0,0 +2960,3632,6614,-9,-9,-9,1,1,0,24,3,0,0,0,1,-9,2,1,0,4,8.448914912523621,8.491136712669643,0,3,0,0,0,-9,0,-1000.122960616538,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,32,12,58,63,15,1,12,-9,0,9.761410273280926,9.761410273280926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.48,66.73999999999999,3,1,0,0,8,5,0,536,0,0,0 +2960,3633,6615,-9,-9,-9,2,1,1,24,3,0,0,0,1,-9,2,1,0,5,8.170803370529324,8.729360500711167,0,3,0,0,0,-9,0,-804.8326941235316,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,42,45,15,1,0,-9,0,10.0920448107989,10.0920448107989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,7,1,0,0,8,4,0,432,0,0,0 +2961,3634,6616,-9,-9,6617,2,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1055.923682545022,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,2,1,1580,0,0,0 +2961,3634,6617,-9,-9,-9,1,1,1,48,2,0,1,0,3,-9,2,1,0,3,6.724327632603091,6.835024059109326,0,4,0,0,0,-9,0,-1056.745865767714,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,16,17,15,1,0,-9,0,6.322781802751591,6.322781802751591,0,0,0,0,0,0,0,1,1,0,0,0,40.8746304854165,3,58.53,36.42,6,1,0,0,5,2,1,1580,0,0,0 +2962,3635,6618,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,5,0,7.170632002122053,6.614426717252998,3,0,0,0,-9,0,-1034.367848854625,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.263261671279395,6.800604218773836,0,0,57.06,57.76,7,1,0,0,10,2,1,305,0,0,0 +2963,3636,6619,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-966.6515953086739,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.392049613827585,0,0,0,62.08,19.21,6,1,0,0,6,1,1,930,0,0,0 +2964,3637,6620,6621,-9,-9,2,1,0,53,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,8,0,-3,-78.63496750982657,0,0,0,56,1,4,3,3,2,2019,4,1,15,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.161872100134081,0,9.760283191884442,3,48.45,57.49,6,1,1,0,12,4,1,656,0,0,0 +2964,3637,6621,6620,-9,-9,1,1,1,56,1,0,0,0,1,-9,4,3,0,4,0,8.659017746396108,8.233953069777316,1,0,-9,8,0,3,36.2378291973484,0,0,0,53,2,3,3,2,2,2019,4,2,12,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.147911154127455,8.869528868351882,10.53823569117735,3,41.06,62.04,5,1,0,0,12,4,1,656,0,0,0 +2965,3638,6622,6625,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,3,8.094398301455659,7.796264827251238,0,2,0,-9,8,0,3,87.40212671568834,0,0,0,38,2,3,3,3,3,2019,2,1,7,1,48,48,15,1,1,3,0,7.340749248813667,7.340749248813667,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,55.13,6,3,0,0,5,2,0,1142.4,0,0,0 +2965,3638,6623,-9,6625,6622,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.303847391206,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,5,2,0,1142.4,0,0,0 +2965,3638,6624,-9,6625,6622,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.7869004965938,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,5,2,0,1142.4,0,0,0 +2965,3638,6625,6622,-9,-9,1,1,0,38,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,12,0,-3,-65.61690991984055,0,0,1,41,2,3,1,3,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,4,3,0,0,5,2,0,1142.4,0,0,0 +2965,3638,6626,-9,6625,6622,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.1797431661988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,5,2,0,1142.4,0,0,0 +2966,3639,6627,6628,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,3,.8433268532519311,.8101460318930773,0,1,0,-9,9,0,-7,-25.09083441292245,0,0,0,64,2,4,1,2,2,2019,1,2,19,6,35,38,15,1,6,1,0,.0058939881591548,.0058939881591548,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.06,63.21,2,1,0,1,8,5,1,356,0,0,0 +2966,3639,6628,6627,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,4,9.563987049475111,9.362817724777686,3.253516454923522,1,0,-9,9,0,7,103.4121337389261,0,0,0,57,3,3,1,3,3,2019,1,1,6,0,60,57,15,1,0,1,0,23.16211745197027,23.16211745197027,0,0,0,0,0,0,0,1,1,0,3.832056278938243,4.024808972852738,0,0,57.16,56.15,7,1,0,0,8,5,1,356,0,0,0 +2966,3640,6629,-9,6627,6628,3,1,0,23,2,0,0,0,2,-9,5,1,0,3,8.047497722468224,8.266980326264287,0,3,0,0,0,-9,0,-979.8109495376707,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,35,40,15,1,0,-9,1,13.55927972368759,13.55927972368759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,5,1,0,0,8,4,1,361,0,0,0 +2966,3641,6630,-9,6627,6628,4,1,1,18,2,0,0,0,2,-9,2,1,0,3,7.714476954011458,7.409258961767274,0,3,0,0,0,-9,0,-871.6728635498147,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,6.027632521116324,6.027632521116324,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,4,1,0,0,8,3,1,1926,0,0,0 +2967,3642,6631,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,4,8.364198805782223,8.359592341162577,0,3,0,0,0,-9,0,-1074.142069710625,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,17,6,20,0,15,1,6,-9,1,20.6353730433191,20.6353730433191,0,0,0,0,0,0,0,1,1,0,0,0,3.017880953957602,3,19.77,66.82000000000001,5,3,0,0,2,4,1,435,0,0,0 +2968,3643,6632,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,1,1,0,3,6.445478315339371,6.099247471709495,0,3,0,-9,0,-9,0,-1051.141053104763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,13,0,15,1,0,-9,0,4.923125325201387,4.923125325201387,0,0,0,0,0,0,0,0,0,0,7.148101220573236,0,13.70764584733782,3,52.22,53.26,6,1,0,1,12,2,1,1672,0,0,0 +2969,3644,6633,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,4,8.173387328800681,8.311687460001901,0,3,0,0,0,-9,0,-945.7571773307729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,41,40,15,1,0,-9,0,11.36361029505244,11.36361029505244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,6,2,0,0,2,4,0,577,0,0,0 +2970,3645,6634,6635,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,2,0,7.857381101000595,7.755158526302447,1,0,-9,6,0,1,-24.83115024828225,0,0,0,57,1,2,3,3,3,2019,4,2,19,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.447359670267073,8.350963885919613,0,0,31.91,39.87,4,1,0,0,11,3,1,465.5,0,0,0 +2970,3645,6635,6634,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,2,0,6.642111677729989,6.352047361881265,1,0,-9,6,0,-1,-87.78693311343463,0,0,0,58,2,2,3,3,3,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.585338577442902,6.408613862805843,0,0,37.77,45.33,3,1,0,0,11,3,1,465.5,0,0,0 +2970,3646,6636,-9,6635,6634,3,1,0,29,2,0,0,0,1,-9,2,1,0,4,8.119554967068254,7.74958361939725,0,3,0,0,0,-9,0,-1008.234317235456,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,37,37,15,1,0,-9,1,7.976358417309758,7.976358417309758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.81,53.21,6,1,0,0,11,4,1,475,0,0,0 +2970,3647,6637,-9,6635,6634,4,1,0,34,2,0,0,0,1,-9,2,1,0,4,8.76236433006577,8.81283065380598,0,3,0,-9,0,-9,0,-932.0638553438445,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,13,2,37,0,15,1,2,-9,1,15.58559434594721,15.58559434594721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.41,31.43,5,1,0,0,11,5,1,37,0,0,0 +2971,3648,6638,6640,-9,-9,1,1,1,44,1,0,2,0,1,-9,1,1,0,5,9.78397984178644,9.935974172940107,0,2,0,-9,7,0,-6,1.125071014982492,0,0,0,50,1,4,1,2,3,2019,1,2,9,0,47,48,15,1,0,1,0,37.75330220532958,37.75330220532958,0,0,0,0,0,0,0,0,0,0,6.696278569169621,0,0,0,45.81,61.51,6,1,0,0,13,5,1,476.25,0,0,0 +2971,3648,6639,-9,6640,6638,4,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1094.676065728783,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,13,5,1,476.25,0,0,0 +2971,3648,6640,6638,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,4,8.640478753449415,8.447876843081371,0,2,0,-9,7,0,6,18.34293101284964,0,0,0,44,1,5,1,3,3,2019,1,1,12,3,34,34,15,1,3,1,0,21.21383983816999,21.21383983816999,0,0,0,0,0,0,0,0,0,0,4.485214066011787,0,2.357385623359734,3,43.48,60.97,6,1,0,0,13,5,1,476.25,0,0,0 +2971,3648,6641,-9,6640,6638,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.6256899528659,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,13,5,1,476.25,0,0,0 +2972,3649,6642,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,4,5.783487550236263,7.81901473962926,7.448380147134785,3,0,0,0,-9,0,-1047.788241460088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,6,18,15,1,1,-9,0,7.226227314308943,7.226227314308943,0,0,0,0,0,0,0,1,1,0,6.681230566827498,6.678727899035259,0,0,56.57,57.78,6,1,0,0,9,3,1,909,0,0,0 +2973,3650,6643,-9,6644,6646,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.345676302044,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,804,0,0,0 +2973,3650,6644,6646,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,3,8.175407909110042,7.872058551051257,0,2,0,-9,8,0,-4,36.65720996281388,0,0,1,39,1,4,1,2,2,2019,1,1,8,0,30,30,15,1,0,1,0,11.26124529332257,11.26124529332257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,6,1,0,0,11,4,1,804,0,0,0 +2973,3650,6645,-9,6644,6646,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1144.250502765098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,804,0,0,0 +2973,3650,6646,6644,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,4,8.897225516382672,9.092139564156749,0,2,0,-9,8,0,4,33.60603343604225,0,0,0,35,1,3,1,2,1,2019,1,2,9,0,38,38,15,1,0,1,0,18.91291388033269,18.91291388033269,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,51.02,6,1,0,0,11,4,1,804,0,0,0 +2974,3651,6647,6648,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,2,7.800939292038818,8.040957466842622,0,1,0,-9,9,0,1,-6.702724584194279,0,0,0,60,2,5,1,3,3,2019,1,2,10,0,40,46,15,1,0,1,0,8.985086916968095,8.985086916968095,0,0,0,0,0,0,0,1,1,0,4.196676859807877,0,0,0,55.49,20.59,4,1,0,0,7,4,1,231,0,0,0 +2974,3651,6648,6647,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,5,7.937751487869537,8.042376390770436,0,1,0,-9,9,0,-1,87.0846889352953,0,0,0,61,2,2,1,3,3,2019,1,1,11,0,38,38,15,1,0,1,0,11.04520749234561,11.04520749234561,0,0,0,0,0,0,0,1,1,0,4.540214791431675,0,16.50867965749242,1,36.06,63.54,6,1,0,0,7,4,1,231,0,0,0 +2975,3652,6649,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.768875934000851,8.917524606304388,0,3,0,-9,0,-9,0,-1060.975023782416,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,50,0,15,1,1,-9,0,13.59721881672442,13.59721881672442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.2,58.1,6,1,0,0,8,5,0,431,0,0,0 +2976,3653,6650,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1096.186413337435,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,21.22,1,1,0,1,5,1,0,577,0,0,0 +2977,3654,6651,6652,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.286430487284449,7.414932319566078,1,0,-9,58,0,0,71.51933971636211,0,0,0,76,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.022602205074936,7.313200505869887,71.43464460750984,1,56.47,40.19,6,1,0,0,4,2,0,372,0,0,0 +2977,3654,6652,6651,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,0,36.27084216185635,0,0,0,76,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,4,2,0,372,0,0,0 +2978,3655,6653,-9,6654,6655,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.208713547165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,7,4,1,309.25,0,0,0 +2978,3655,6654,6655,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,3,7.832294454253253,7.416114555812585,0,2,0,-9,7,0,-3,68.0281768471458,0,0,1,34,1,3,1,-9,-9,2019,1,2,13,0,22,22,15,1,2,1,0,14.26068098662152,14.26068098662152,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.46,58.24,5,1,0,0,7,4,1,309.25,0,0,0 +2978,3655,6655,6654,-9,-9,2,1,1,34,1,1,2,0,1,-9,2,1,0,3,8.70863455637028,8.734449092520851,0,2,0,-9,7,0,3,101.1552942570674,0,0,0,31,1,3,1,-9,-9,2019,1,1,15,4,35,38,15,1,4,1,0,24.66612743005556,24.66612743005556,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,6,4,0,0,7,4,1,309.25,0,0,0 +2978,3655,6656,-9,6654,6655,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.336585535727,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,7,4,1,309.25,0,0,0 +2979,3656,6657,6658,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,1,0,6.731841864947481,6.225319617653092,1,0,-9,55,0,4,-86.70973770005118,0,0,0,77,3,2,3,2,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.906825136079561,6.74753224034989,0,0,44,23,6,1,0,0,10,2,1,1892.5,0,0,0 +2979,3656,6658,6657,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,55,0,-4,8.856928180677482,0,0,0,81,2,1,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,56.44,24.23,6,1,0,0,10,2,1,1892.5,0,0,0 +2980,3657,6659,6660,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,3,7.564331873434216,7.540231952126145,0,1,0,-9,37,0,0,-6.686657273496718,0,0,0,57,2,4,1,2,2,2019,1,1,12,0,24,24,15,1,0,1,0,7.760852044644552,7.760852044644552,0,0,0,0,0,0,0,0,0,0,7.713300051203084,0,0,0,38.92,57.7,6,1,0,0,5,4,1,399,0,0,0 +2980,3657,6660,6659,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,4,7.898720239287164,8.027802627465444,0,1,0,-9,37,0,0,-69.57265193534313,0,0,0,57,2,3,1,2,1,2019,1,2,8,0,40,60,15,1,0,1,0,8.826321595463734,8.826321595463734,0,0,0,0,0,0,0,0,0,0,7.854661815970757,0,0,0,58.15,52.91,6,1,0,0,5,4,1,399,0,0,0 +2980,3658,6661,-9,6659,6660,3,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.969965485038609,8.169101991462965,0,3,0,0,0,-9,0,-996.2091872343087,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,54,0,15,1,0,-9,1,5.763616363397801,5.763616363397801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.24,62.14,5,1,0,0,5,4,1,179,0,0,0 +2981,3659,6662,6663,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,5,8.369197830059584,8.169691947008195,0,1,0,-9,4,0,-1,-246.8257597212918,0,1,1,27,1,3,1,2,2,2019,1,2,13,2,38,38,15,1,2,1,0,14.40911486249562,14.40911486249562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.23,55.33,7,1,0,0,13,5,1,1576,0,0,0 +2981,3659,6663,6662,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,3,8.599688876778965,8.454309977496964,0,1,0,-9,4,0,1,18.56580296626482,0,1,0,26,1,5,1,-9,-9,2019,1,1,9,0,37,38,15,1,0,1,0,16.62724060343335,16.62724060343335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,57.75,6,1,0,0,13,5,1,1576,0,0,0 +2982,3660,6664,6665,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,4,9.625913676878747,9.659481034254155,0,2,0,-9,26,0,4,32.51118908799671,0,0,0,43,1,5,1,1,1,2019,1,1,14,3,46,50,15,1,3,1,0,40.14030132201676,40.14030132201676,0,0,0,0,0,0,0,0,0,0,6.705579000392801,0,14.14555353353039,3,51.24,58.84,3,1,0,0,6,5,1,389,0,0,0 +2982,3660,6665,6664,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,5,9.340470215451376,9.619859262630758,0,2,0,-9,27,0,-4,-17.99601795843635,0,0,1,47,1,4,1,1,1,2019,1,2,18,6,36,48,15,1,6,1,0,47.673762640862,47.673762640862,0,0,0,0,0,0,0,0,0,0,7.102564703183656,0,7.395331211552961,3,35.34,63.71,3,1,0,0,6,5,1,389,0,0,0 +2982,3661,6666,-9,6665,6664,3,1,1,19,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1054.71547564072,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.6,51,5,1,0,0,6,1,1,2049,0,0,0 +2983,3662,6667,6668,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.286678630713471,8.056047439052751,4.785270407252128,1,0,-9,31,0,0,16.48994441351906,0,0,0,54,1,3,1,2,2,2019,1,1,14,3,47,39,15,1,3,1,0,10.51398198804707,10.51398198804707,0,0,0,0,0,0,0,0,0,0,5.842173341206355,0,0,3,42.69,56.27,6,1,0,0,2,5,1,406.5,0,0,0 +2983,3662,6668,6667,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,3,8.919537461458889,9.014509531849887,0,1,0,-9,31,0,0,-59.23240072828771,0,0,0,54,1,4,1,2,2,2019,1,2,10,2,53,47,15,1,2,1,0,17.16626702091251,17.16626702091251,0,0,0,0,0,0,0,0,0,0,0,0,5.219285003009889,3,57.93,46.29,6,1,0,0,2,5,1,406.5,0,0,0 +2983,3663,6669,-9,6667,6668,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.133468259083253,8.103675242238754,0,3,0,0,0,-9,0,-1029.418227804019,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,48,0,15,1,1,-9,1,9.797617334049654,9.797617334049654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,56.19,6,1,0,0,2,4,1,916,0,0,0 +2983,3664,6670,-9,6667,6668,4,1,0,23,2,0,0,1,2,0,7,2,0,4,4.906881419122084,5.54487229276903,5.037816489059119,3,0,0,0,-9,0,-989.2636157522056,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,5,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.931368832893636,0,0,0,54.2,57.49,6,1,0,0,2,2,1,1611,0,0,0 +2983,3665,6671,-9,6667,6668,5,1,0,20,2,0,0,1,2,0,7,2,0,4,0,6.765381424749123,7.188409905782678,3,0,0,0,-9,0,-1059.748119676826,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,7.009064738235955,0,0,0,53.44,55.06,6,1,0,0,2,2,1,713,0,0,0 +2984,3666,6672,6675,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,5,6.410244506317295,6.665149851573322,0,2,0,-9,16,0,-2,-38.05793937700818,0,0,1,42,1,4,1,2,2,2019,1,2,14,4,25,0,15,1,4,1,0,2.451255144564374,2.451255144564374,0,0,0,0,0,0,0,1,1,0,8.134099551060103,0,0,0,37.4,66.64,6,1,0,1,2,4,1,965.2,0,0,0 +2984,3666,6673,-9,6672,6675,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.9294998944362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,965.2,0,0,0 +2984,3666,6674,-9,6672,6675,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.670297581326,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,965.2,0,0,0 +2984,3666,6675,6672,-9,-9,2,1,1,42,1,0,3,0,1,-9,1,1,0,4,9.335069757635246,9.030072986926589,0,2,0,-9,6,0,2,12.08372058968817,0,0,0,40,1,5,1,-9,-9,2019,1,1,9,0,55,70,15,1,1,1,0,18.51966016569407,18.51966016569407,0,0,0,0,0,0,0,1,1,0,3.883944549931281,0,0,0,52,55,5,1,0,0,2,4,1,965.2,0,0,0 +2984,3666,6676,-9,6672,6675,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.932816281674,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,4,1,965.2,0,0,0 +2985,3667,6677,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,4,8.214863832116356,8.485331632618648,0,3,0,0,0,-9,0,-872.6485229647989,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,50,45,15,1,0,-9,0,9.607403680093674,9.607403680093674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,6,1,0,0,7,5,1,398,0,0,0 +2985,3668,6678,-9,6677,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,5,7.750131586437573,7.47292549963253,0,3,0,0,0,-9,0,-1106.134609429954,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,37,45,15,1,0,-9,1,6.048915207165595,6.048915207165595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,7,3,1,415,0,0,0 +2986,3669,6679,-9,6680,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-974.0996783363231,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,531,0,0,0 +2986,3669,6680,-9,-9,-9,1,1,0,46,3,0,2,0,3,-9,6,3,0,3,0,5.641492868248934,5.6632970370244,4,0,0,0,-9,0,-910.3071251883853,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.112794400977397,0,4.862501007566173,3,41.9,47.32,5,1,0,0,9,2,0,531,0,0,0 +2986,3669,6681,-9,6680,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-936.2262899827172,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,531,0,0,0 +2987,3670,6682,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,2,7.622444318987159,7.755942386167181,0,3,0,0,0,-9,0,-1026.852559323485,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,44,33,15,1,1,-9,0,6.620475493465521,6.620475493465521,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,37.18,6,1,0,0,2,3,1,3044,0,0,0 +2987,3671,6683,-9,6682,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.820807700112653,8.132293457651409,0,3,0,0,0,-9,0,-905.1248111989311,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,37,40,15,1,1,-9,1,7.022613593623699,7.022613593623699,0,0,0,0,0,0,0,1,1,0,.7458872330562268,0,0,0,50,58,5,1,0,0,2,3,1,856,0,0,0 +2987,3672,6684,-9,6682,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,3,6.960200012935507,7.55687099978651,0,3,0,0,0,-9,0,-948.7273869582884,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,39,25,15,1,1,-9,1,4.392978120000001,4.392978120000001,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.36,54.04,3,1,0,0,2,3,1,2011,0,0,0 +2988,3673,6685,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-866.2137049500632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.922099745691799,0,4.157785125906599,0,0,1.247001947962836,1,1,0,0,0,0,0,59.49,12.3,4,1,0,0,9,1,0,286,0,0,0 +2989,3674,6686,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,7.72147844865275,7.822869680045298,0,3,0,0,0,-9,0,-1074.243318653432,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,37,37,15,1,1,-9,0,8.597801962791268,8.597801962791268,0,0,0,0,0,0,0,1,1,0,3.200750541893384,0,0,0,47.91,51.06,6,1,0,0,10,4,1,483,0,0,0 +2990,3675,6687,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,4,0,7.523209701694766,7.447911911174787,3,0,0,0,-9,0,-941.7886355273032,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.489287134002241,7.863810858480885,0,0,57.31,50.61,6,1,0,0,2,3,1,79,0,0,0 +2991,3676,6688,6689,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,47,0,-2,-137.4959235716181,0,0,0,75,2,3,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,2.91812450904084,4.904470556219776,0,0,0,1,1,0,0,0,0,0,39.94,22.24,5,1,0,0,13,3,0,863.5,0,0,0 +2991,3676,6689,6688,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,8.118915314208534,8.162301053448589,1,0,-9,47,0,2,26.07180667539845,0,0,0,73,2,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.932548219110829,7.848412640871702,8.680694822995546,3,55.2,44.8,6,1,0,0,13,3,0,863.5,0,0,0 +2992,3677,6690,-9,6692,-9,1,1,1,47,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-921.9053399590023,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,45,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.375759391353913,0,10.40664056094681,3,41.17,52.68,3,1,1,1,7,1,0,320,0,0,0 +2992,3678,6691,-9,6692,-9,2,1,1,41,2,0,0,0,1,-9,2,1,0,2,7.995210850078244,7.942405398310539,0,3,0,0,0,-9,0,-1039.574043636927,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,45,15,1,0,-9,1,8.513091053382915,8.513091053382915,0,0,0,0,0,0,0,1,1,0,0,0,5.107324652900394,3,53.86,43.07,3,1,0,0,7,4,0,442,0,0,0 +2992,3679,6692,-9,-9,-9,3,1,0,73,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-939.617900115247,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,14.65291840450003,0,0,1,1,0,0,0,0,0,45.63,21.21,2,1,0,1,7,1,0,659,0,0,0 +2993,3680,6693,6694,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,31,0,-6,19.47065507484937,0,0,0,77,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.840904377868787,0,0,0,37.35,51.04,6,1,0,0,10,3,1,406.5,0,0,0 +2993,3680,6694,6693,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,8.352796709344116,8.370286033369394,1,0,-9,31,0,6,-81.85815587916332,0,0,0,71,3,3,3,2,2,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.181524245266332,8.516139344370004,0,0,44.47,34.13,6,1,0,0,10,3,1,406.5,0,0,0 +2994,3681,6695,-9,-9,-9,1,1,0,51,2,0,1,0,1,-9,1,1,0,4,0,0,0,4,0,0,0,-9,0,-837.0019514944441,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,15,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,2,0,0,4,1,0,540,0,0,0 +2994,3682,6696,-9,6695,-9,2,1,1,18,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1011.904076884593,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.3422297398649,0,0,0,48,59,5,2,0,0,4,1,0,1237,0,0,0 +2995,3683,6697,6698,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.781306971206263,8.770755825027136,0,1,0,-9,8,0,-3,54.74789049865179,0,0,0,60,2,4,1,-9,-9,2019,1,1,9,0,50,0,15,1,0,1,0,13.70865857321911,13.70865857321911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,0,0,12,5,1,479,0,0,0 +2995,3683,6698,6697,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.343974070901225,6.83337831062686,0,1,0,-9,40,0,3,39.92082683424419,0,0,0,57,2,4,1,3,3,2019,1,2,6,0,25,25,15,1,0,1,0,5.884851769447656,5.884851769447656,0,0,0,0,0,0,0,0,0,0,0,0,0,3,59.29,49.68,6,1,0,0,12,5,1,479,0,0,0 +2996,3684,6699,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1117.877583329716,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,.1982044786786843,.8726322398782274,0,1,1,0,0,0,0,0,63.23,12.94,3,1,0,0,11,1,1,507,0,0,0 +2997,3685,6700,6701,-9,-9,2,1,1,63,1,0,0,0,1,-9,1,1,0,3,1.522968174244856,8.100234832952371,7.714545674432702,1,0,-9,34,0,-3,-104.170797632029,0,0,0,66,1,3,3,-9,-9,2019,2,1,8,0,30,37,15,1,0,3,0,.0173532244570284,.0173532244570284,0,0,0,0,0,0,0,1,1,0,0,7.823262538645821,0,0,55.53,51.55,5,1,0,0,8,4,1,806.5,0,0,0 +2997,3685,6701,6700,-9,-9,1,1,0,66,1,0,0,0,1,-9,6,3,0,3,0,7.285903613506258,7.704300325680191,1,0,-9,34,0,3,-69.84113681051649,0,0,0,63,1,3,1,1,1,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.363833759075652,0,0,51,46,5,1,0,0,8,4,1,806.5,0,0,0 +2998,3686,6702,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-953.8041702533762,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,7,1,0,1021,0,0,0 +2998,3687,6703,-9,6702,-9,2,1,1,46,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-970.9092898414765,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.35392817369436,3,59.37,19.29,5,1,0,0,7,1,0,1027,0,0,0 +2999,3688,6704,6705,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,1,8.809028218213633,8.666411926317391,0,1,0,-9,2,0,2,-39.38720080284743,0,1,0,26,1,3,1,3,3,2019,1,2,10,0,44,37,15,1,0,1,0,14.22276953920214,14.22276953920214,0,0,0,0,0,0,0,0,0,0,6.585354061372533,0,0,0,28.45,55.18,3,1,0,0,5,5,1,4211,0,0,0 +2999,3688,6705,6704,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,3,8.09455307987168,8.247028927694597,0,1,0,-9,2,0,-2,75.39823270801203,0,1,1,28,2,1,1,-9,-9,2019,1,1,11,2,41,41,15,1,2,1,0,10.80074115564507,10.80074115564507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,6,1,0,0,5,5,1,4211,0,0,0 +3000,3689,6706,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,2,1,0,3,8.065360432767546,8.098023567297728,0,4,0,0,0,-9,0,-996.6825616482058,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,38,38,15,1,2,-9,0,7.738784471789731,7.738784471789731,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.22,57.27,5,1,0,1,2,3,0,684,0,0,0 +3001,3690,6707,-9,-9,-9,1,1,1,32,2,0,0,0,1,1,3,3,0,2,0,0,0,3,0,-9,0,0,0,-980.4358628895509,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,42.86,3,1,1,0,8,1,0,844,0,0,0 +3001,3691,6708,-9,-9,-9,2,1,0,32,2,0,0,0,2,-9,2,1,0,2,8.65424645633278,8.766239293326469,0,3,0,-9,0,0,0,-1046.530820300938,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,22,10,38,40,15,1,10,-9,0,16.9617673475693,16.9617673475693,0,0,0,0,0,0,0,1,1,0,0,0,10.69199011427085,3,26.49,40.94,3,1,0,0,8,5,0,423,0,0,0 +3002,3692,6709,6710,-9,-9,2,1,0,51,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,30,0,2,0,-9,0,0,49,2,4,3,3,3,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,52,53,6,3,0,0,4,1,0,1480,0,0,0 +3002,3692,6710,6709,-9,-9,1,1,1,49,1,0,0,0,2,-9,8,3,1,4,0,0,0,1,0,-9,30,0,-2,0,-9,0,0,51,3,4,3,3,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,54,6,3,0,1,4,1,0,1480,0,0,0 +3002,3693,6711,6712,6709,6710,3,1,1,20,1,0,0,0,2,-9,2,1,0,5,8.312804757189893,8.393075182996933,0,1,0,1,1,-9,0,48.79644690947992,0,1,0,20,3,4,3,3,2,2019,2,6,7,0,38,48,15,1,0,3,0,13.47428604807985,13.47428604807985,0,0,0,0,0,0,0,1,1,0,0,0,6.622015314277347,3,57.06,57.76,6,3,0,0,4,3,0,567.5,0,0,0 +3002,3693,6712,6711,-9,-9,6,1,0,20,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,1,-9,0,15.95709289128076,-9,1,1,20,2,5,1,-9,-9,2019,3,3,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,5,1,0,4,3,0,567.5,0,0,0 +3002,3694,6713,-9,6709,6710,4,1,1,23,3,0,0,0,2,-9,2,1,0,5,7.543858429745307,7.681891883583508,0,3,0,0,0,-9,0,-1014.251600451335,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,37,90,15,1,2,-9,1,5.052960636703531,5.052960636703531,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.12,53.98,4,3,0,0,4,3,0,1976,0,0,0 +3002,3695,6714,-9,6709,6710,5,1,0,18,2,0,0,0,2,1,2,1,0,3,7.073344188496765,6.950528491046324,0,3,0,0,0,-9,0,-898.0037336119821,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,38,0,15,1,0,-9,1,2.826809834637768,2.826809834637768,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.08,57.2,4,3,0,0,4,2,0,851,0,0,0 +3003,3696,6715,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1204.712635854243,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.942308648119937,0,0,0,54.79,55.86,5,1,0,0,7,1,1,236,0,0,0 +3004,3697,6716,6717,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,2,8.510331469106578,8.570862167878245,0,1,0,-9,9,0,1,-30.99518875170011,0,0,0,37,1,3,1,2,2,2019,1,1,7,0,38,37,15,1,0,1,0,14.5831489640397,14.5831489640397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,5,1,0,0,2,5,1,831.5,0,0,0 +3004,3697,6717,6716,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,3,8.880190201316269,8.489325266355781,0,1,0,-9,9,0,-1,47.56661581720319,0,0,1,38,1,2,1,2,2,2019,1,2,13,2,44,48,15,1,2,1,0,15.95267472063685,15.95267472063685,0,0,0,0,0,0,0,0,0,0,2.265539118387493,0,0,0,46.61,56.93,5,1,0,0,2,5,1,831.5,0,0,0 +3005,3698,6718,6720,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.553427050140716,8.710263513657983,0,2,0,-9,21,0,1,-13.85156445334388,0,0,1,40,1,4,1,1,1,2019,1,1,8,0,42,44,15,1,0,1,0,15.3370714666761,15.3370714666761,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,6,1,0,0,8,5,1,519.3333333333334,0,0,0 +3005,3698,6719,-9,6718,6720,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.598011175072,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,5,1,519.3333333333334,0,0,0 +3005,3698,6720,6718,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,9.006080405781205,8.935126805188377,0,2,0,-9,21,0,-1,11.31893834054376,0,0,0,41,1,4,1,2,1,2019,1,2,10,0,40,40,15,1,0,1,0,23.97869564243304,23.97869564243304,0,0,0,0,0,0,0,1,1,0,2.449754416368093,0,0,0,54.2,57.49,6,1,0,0,8,5,1,519.3333333333334,0,0,0 +3006,3699,6721,6722,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,7,0,7,-65.0854981935061,0,0,0,58,1,4,1,2,3,2019,3,3,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.455888637076483,0,0,0,54.94,53.18,6,1,0,0,11,5,1,2458,0,0,0 +3006,3699,6722,6721,-9,-9,3,1,0,58,1,0,0,0,1,-9,2,1,0,4,9.055043390717303,8.873122389567229,0,1,0,-9,7,0,-7,-42.0463842011112,0,0,0,65,1,3,3,2,2,2019,2,2,3,0,40,0,15,1,0,4,0,19.23814515019122,19.23814515019122,0,0,0,0,0,0,0,1,1,0,4.165224561012367,0,0,0,46.44,59.62,5,1,0,0,11,5,1,2458,0,0,0 +3007,3700,6723,6726,-9,-9,1,1,0,41,1,1,3,0,1,-9,1,1,0,5,7.469185219882555,7.112191014166323,0,2,0,-9,3,0,-2,-36.16148737294979,0,0,1,43,1,4,1,2,2,2019,1,2,7,0,5,14,15,1,0,1,0,37.03475066886516,37.03475066886516,0,0,0,0,0,0,0,1,1,0,1.193852940739089,0,0,0,57.06,57.76,6,1,0,0,9,2,1,860.4,0,0,0 +3007,3700,6724,-9,6723,6726,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.009734613571,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,1,860.4,0,0,0 +3007,3700,6725,-9,6723,6726,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.9181462600742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,1,860.4,0,0,0 +3007,3700,6726,6723,-9,-9,2,1,1,43,1,1,3,0,1,-9,1,1,0,4,7.070860398886383,7.034351937669878,0,2,0,-9,3,0,2,66.41660268751666,0,0,0,41,1,5,1,2,3,2019,1,1,9,0,40,40,15,1,0,1,0,2.849610913902597,2.849610913902597,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,9,2,1,860.4,0,0,0 +3007,3700,6727,-9,6723,6726,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.8288923604474,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,1,860.4,0,0,0 +3008,3701,6728,6729,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,4,7.985496508995602,7.817080613393316,0,2,0,-9,9,0,3,35.54481226177428,0,0,0,42,2,3,1,-9,-9,2019,1,1,6,0,39,39,15,1,0,1,0,11.89305177436743,11.89305177436743,0,0,0,0,0,0,0,1,1,0,0,0,6.477987774622715,3,59.53,56.44,7,1,0,0,10,3,1,427,0,0,0 +3008,3701,6729,6728,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,8.091323242729628,7.565969952313497,0,2,0,-9,9,0,-3,-34.13981370204417,0,0,1,45,2,4,1,3,2,2019,1,2,10,0,48,48,15,1,0,1,0,6.921445634544301,6.921445634544301,0,0,0,0,0,0,0,1,1,0,0,0,7.735906391409276,3,57.33,53.46,6,1,0,0,10,3,1,427,0,0,0 +3008,3701,6730,-9,6729,6728,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.012963353719,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,1,427,0,0,0 +3009,3702,6731,6732,-9,-9,1,1,1,51,1,0,0,0,1,-9,1,1,0,3,0,0,0,1,0,-9,8,0,5,-54.90216539526158,0,0,0,46,1,4,1,2,2,2019,1,2,18,7,0,0,15,1,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.289886456916591,3,37.87,48.86,1,1,0,0,13,2,0,408.5,0,0,0 +3009,3702,6732,6731,-9,-9,2,1,0,46,1,0,0,0,1,1,2,1,0,4,7.670723973420663,7.435683552844083,0,1,0,-9,8,0,-5,-39.94651799545762,-9,0,0,51,1,3,1,2,2,2019,1,1,12,1,6,0,15,1,1,1,0,34.50641417055164,34.50641417055164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,3,1,0,1,13,2,0,408.5,0,0,0 +3010,3703,6733,6734,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,5,7.620363940363613,7.378822941739388,0,2,0,-9,13,0,-10,91.90792295408238,0,0,1,40,2,3,1,2,3,2019,1,2,10,0,31,22,15,1,0,1,0,9.452940819265198,9.452940819265198,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.1,59.11,5,1,0,0,4,4,1,322,0,0,0 +3010,3703,6734,6733,-9,-9,2,1,1,40,1,1,2,0,2,-9,2,1,0,3,8.260709311912786,8.353402648484982,0,2,0,-9,13,0,10,88.1244639789375,0,0,0,30,2,5,1,3,3,2019,1,1,18,7,44,41,15,1,7,1,0,10.39794028865126,10.39794028865126,0,0,0,0,0,0,0,1,1,0,0,0,9.596560690770772,3,32.24,44.52,3,1,0,1,4,4,1,322,0,0,0 +3010,3703,6735,-9,6733,6734,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.820015856084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,322,0,0,0 +3010,3703,6736,-9,6733,6734,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-868.7441258552069,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,322,0,0,0 +3011,3704,6737,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,3,7.604818512693412,7.638220342656267,0,3,0,0,0,-9,0,-1015.844885253333,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,38,38,15,1,0,-9,0,6.972738261828042,6.972738261828042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,46.82,5,1,0,0,13,3,1,1146,0,0,0 +3011,3705,6738,-9,-9,6737,2,1,0,25,2,0,0,0,1,-9,2,1,0,4,7.682594684053249,7.836970336390523,0,3,0,0,0,-9,0,-1006.714647881336,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,36,37,15,1,0,-9,1,8.423762191557286,8.423762191557286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,6,1,0,0,13,3,1,2008,0,0,0 +3012,3706,6739,-9,-9,-9,1,1,0,60,3,0,2,0,3,-9,1,1,0,4,8.304265681480068,8.61597357047571,0,4,0,0,0,-9,0,-1030.208205945066,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,120,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.79,55.86,6,1,0,0,2,4,1,355,0,0,0 +3012,3707,6740,-9,6739,-9,2,1,1,36,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-965.0939133546631,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,38,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.283605608024519,0,0,0,51,56,5,1,1,0,2,1,1,857,0,0,0 +3013,3708,6741,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,3,8.195991638814679,8.055310226153855,0,3,0,0,0,-9,0,-1023.283994996482,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,38,0,15,1,1,-9,0,10.38815100896985,10.38815100896985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.37,61.5,2,1,0,0,12,4,1,934,0,0,0 +3014,3709,6742,6743,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,4,8.389297980907275,8.477594619056161,0,1,0,-9,7,0,2,-154.0487547333628,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,0,40,8,15,1,1,1,0,12.40847992190445,12.40847992190445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,5,0,0,9,4,0,710,0,0,0 +3014,3709,6743,6742,-9,-9,1,1,0,47,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,7,0,-2,91.81054830390006,0,0,0,49,1,4,1,2,1,2019,1,2,14,5,0,20,15,1,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.108579249272687,0,0,0,38.63,63.11,5,1,0,0,9,4,0,710,0,0,0 +3015,3710,6744,6747,-9,-9,2,1,0,36,1,1,2,0,2,-9,5,1,0,5,8.498088552594266,8.66381103628018,0,2,0,-9,7,0,5,17.05349468620075,0,0,1,31,2,3,1,-9,-9,2019,1,1,13,1,37,51,15,1,1,1,0,16.69808471014075,16.69808471014075,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.34,60.31,6,1,0,0,8,5,0,1293,0,0,0 +3015,3710,6745,-9,6744,6747,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1021.05079575801,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,8,5,0,1293,0,0,0 +3015,3710,6746,-9,6744,6747,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.143225193789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,5,0,1293,0,0,0 +3015,3710,6747,6744,-9,-9,1,1,1,31,1,1,2,0,2,-9,1,1,0,3,9.472031284018017,9.641609857661985,0,2,0,-9,7,0,-5,-80.29589894558744,0,0,0,36,2,5,1,3,3,2019,1,2,13,3,48,0,15,1,3,1,0,30.15647049277178,30.15647049277178,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,5,4,0,0,8,5,0,1293,0,0,0 +3016,3711,6748,6749,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,4,8.766691537313397,8.877651433591639,0,1,0,-9,10,0,9,14.95450934911324,0,0,0,52,1,5,1,-9,-9,2019,1,1,5,0,40,55,15,1,0,1,0,24.43551401361464,24.43551401361464,0,0,0,0,0,0,0,1,1,0,.7641977207730004,0,0,0,57.16,56.15,6,1,0,0,2,5,1,479.5,0,0,0 +3016,3711,6749,6748,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,5,8.334976894828564,8.552128059655564,0,1,0,-9,16,0,0,-24.91064310668858,0,0,0,61,1,4,1,3,2,2019,1,2,5,0,37,29,15,1,0,1,0,16.91159811114515,16.91159811114515,0,0,0,0,0,0,0,1,1,0,5.711508927096241,0,0,0,51.73,58.82,7,1,0,0,2,5,1,479.5,0,0,0 +3016,3712,6750,-9,6749,6748,3,1,0,30,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-912.1891887954667,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,59.13,5,1,1,0,2,1,1,728,0,0,0 +3017,3713,6751,6752,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.040592374448348,8.03378681314015,0,1,0,-9,8,0,-4,-4.624719518877727,0,0,0,35,1,5,1,-9,-9,2019,1,1,13,1,95,35,15,1,1,1,0,3.389485130427814,3.389485130427814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.45,60.44,3,1,0,0,1,5,1,497.5,0,0,0 +3017,3713,6752,6751,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,5,8.870530511492309,9.167569881706404,0,1,0,-9,8,0,4,-43.00908938480281,0,0,1,31,1,4,1,2,1,2019,1,2,6,0,40,40,15,1,0,1,0,21.68437675339807,21.68437675339807,0,0,0,0,0,0,0,0,0,0,0,0,4.529758866070218,3,57.06,57.76,6,1,0,0,1,5,1,497.5,0,0,0 +3018,3714,6753,6754,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,2,7.241671987745394,7.276023911145963,0,1,0,-9,34,0,-1,63.00537419429061,0,0,0,58,2,4,1,3,3,2019,1,2,13,1,19,18,15,1,1,1,0,8.07331823617532,8.07331823617532,0,0,0,0,0,0,0,0,0,0,5.137143527447438,0,0,0,56.19,46.16,2,1,0,0,6,4,1,467,0,0,0 +3018,3714,6754,6753,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,4,8.042379326927129,8.598819733243072,7.669136758042248,1,0,-9,9,0,1,25.23100775287829,0,0,0,57,2,2,1,-9,-9,2019,1,1,7,0,37,39,15,1,0,1,0,8.909320006861126,8.909320006861126,0,0,0,0,0,0,0,0,0,0,4.407531010501129,7.803356547822602,0,0,57.16,56.15,6,1,0,0,6,4,1,467,0,0,0 +3018,3715,6755,-9,6753,6754,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.393585750368578,8.497311272840051,0,3,0,0,0,-9,0,-932.9938583992222,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,43,0,15,1,0,-9,1,12.92465517540067,12.92465517540067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,671,0,0,0 +3019,3716,6756,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,6.830990947401565,7.086357276584263,3,0,0,0,-9,0,-937.5117269002981,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.95143773697713,0,0,53.22,52.37,6,1,0,0,13,2,1,258,0,0,0 +3020,3717,6757,6758,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,2,0,6.631563482703052,6.767393626674257,1,0,-9,9,0,-1,19.14392322727537,0,0,0,76,2,3,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.095092747297142,6.873143298277249,0,0,50.02,44.92,4,1,0,0,2,2,1,527,0,0,0 +3020,3717,6758,6757,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.319538569768701,6.211431928008484,1,0,-9,9,0,1,-23.70285373212756,0,0,0,75,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.90404376944515,6.384733183556916,0,0,65.78,30.25,6,1,0,0,2,2,1,527,0,0,0 +3021,3718,6759,6760,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,5,7.630713761343979,8.026211025067241,7.022605142140505,1,0,-9,43,0,-1,34.95485242278505,0,0,0,61,3,5,1,3,3,2019,1,2,10,0,30,30,15,1,0,1,0,5.485731766541271,5.485731766541271,0,0,0,0,0,0,0,0,0,0,0,7.026985199006244,0,0,60.02,56.42,7,1,0,0,5,5,1,1026,0,0,0 +3021,3718,6760,6759,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,5,8.672119704481222,9.010863882090698,7.391535627142637,1,0,-9,43,0,1,12.52915559194453,0,0,0,60,2,5,1,3,3,2019,1,1,6,0,40,0,15,1,0,1,0,20.91091569121538,20.91091569121538,0,0,0,0,0,0,0,0,0,0,6.33375805749415,7.750295265836649,0,0,47.39,56.64,6,1,0,0,5,5,1,1026,0,0,0 +3022,3719,6761,-9,-9,-9,1,1,0,53,3,0,1,0,2,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-992.3594298200111,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,12,0,16,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.4,22.31,1,1,1,1,2,1,0,711,0,0,0 +3022,3719,6762,-9,6761,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1092.935843715902,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.36,46.8,6,1,0,0,2,1,0,711,0,0,0 +3022,3720,6763,-9,6761,-9,3,1,1,28,2,0,1,0,2,-9,2,1,0,2,7.942747827267549,8.022916922209467,0,3,0,0,0,-9,0,-1063.46001696247,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,30,12,70,60,15,1,12,-9,1,4.111079599861593,4.111079599861593,0,0,0,0,0,0,0,1,1,0,0,0,7.406231046365989,3,34.26,49.91,7,1,0,0,2,4,0,716,0,0,0 +3023,3721,6764,6765,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.830659931014527,10.01649572867062,0,1,0,-9,7,0,-10,-146.7940868480683,0,0,0,68,2,4,1,3,2,2019,1,1,6,0,70,70,15,1,0,1,0,31.7206226524856,31.7206226524856,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.92,51.82,5,1,0,0,11,5,1,1203,0,0,0 +3023,3721,6765,6764,-9,-9,1,1,0,68,1,0,0,0,2,-9,1,1,0,4,6.905967189750958,8.087455092216706,7.204072747149159,1,0,-9,7,0,10,105.528230029563,0,0,0,58,2,3,1,3,3,2019,1,2,6,0,70,56,15,1,0,1,0,1.417221688118763,1.417221688118763,0,0,0,0,0,0,0,1,1,0,0,7.096786024295271,0,0,61.27,46.03,5,1,0,0,11,5,1,1203,0,0,0 +3024,3722,6766,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1014.207054232706,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.121721400958447,0,0,0,0,0,0,0,0,0,0,58.72,30.19,6,5,0,0,8,1,0,1067,0,0,0 +3025,3723,6767,6769,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,5,7.493192682718107,7.637051511531869,0,2,0,-9,3,0,8,46.03664967467831,0,0,0,28,2,4,1,3,2,2019,1,2,7,1,56,55,15,1,1,1,0,4.853131548587672,4.853131548587672,0,0,0,0,0,0,0,1,1,0,7.594224412901062,0,0,0,54.1,59.11,5,1,0,0,10,4,1,159.6666666666667,0,0,0 +3025,3723,6768,-9,6769,6767,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1018.528882673948,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,1,159.6666666666667,0,0,0 +3025,3723,6769,6767,-9,-9,2,1,0,28,1,1,1,0,2,-9,5,1,0,4,8.24295679333771,8.399347774904479,0,2,0,-9,3,0,-8,20.00647152498439,0,1,1,36,2,5,1,-9,-9,2019,1,1,11,0,37,37,15,1,0,1,0,14.25397144046877,14.25397144046877,0,0,0,0,0,0,0,1,1,0,7.256796740513165,0,0,0,52.43,55.57,5,1,0,0,10,4,1,159.6666666666667,0,0,0 +3026,3724,6770,-9,6773,6774,3,1,0,17,2,0,3,1,2,0,7,2,0,4,4.860158631530967,5.261751941702159,0,2,0,0,0,-9,0,-1099.452159129446,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,1224.4,0,0,0 +3026,3724,6771,-9,6773,6774,4,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.7103824647404,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,13,4,1,1224.4,0,0,0 +3026,3724,6772,-9,6773,6774,5,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.9180231612957,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,1224.4,0,0,0 +3026,3724,6773,6774,-9,-9,2,1,0,46,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,6,0,0,-109.2950289119226,0,0,0,46,1,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.697443462783587,0,0,0,49.25,61.25,7,1,0,0,13,4,1,1224.4,0,0,0 +3026,3724,6774,6773,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,4,9.468718763139165,9.385919550867792,0,2,0,-9,6,0,0,10.03606318338176,0,0,0,46,2,5,3,2,1,2019,2,2,10,0,52,0,15,1,0,3,0,24.74211372432558,24.74211372432558,0,0,0,0,0,0,0,1,1,0,8.393442912435047,0,0,0,57.16,56.15,6,1,0,0,13,4,1,1224.4,0,0,0 +3027,3725,6775,6776,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,4,0,4.774096330056946,4.943640674195578,1,0,-9,33,0,-1,66.72723000504251,0,0,0,60,3,4,1,-9,-9,2019,1,1,10,0,48,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.753400668818157,0,0,0,51.24,58.84,2,2,0,0,8,2,1,437.5,0,0,0 +3027,3725,6776,6775,-9,-9,1,1,0,60,1,0,0,0,3,-9,1,1,0,4,0,0,0,1,0,-9,33,0,1,73.35558996591352,0,0,0,59,3,4,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,8,2,1,437.5,0,0,0 +3027,3726,6777,-9,6776,6775,3,1,0,20,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-993.7497333939618,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.54,47.83,4,2,1,1,8,1,1,343,0,0,0 +3028,3727,6778,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,4,8.384916625166779,8.009921969615034,0,3,0,0,0,-9,0,-1146.86184902295,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,39,39,15,1,0,-9,0,10.78289234799319,10.78289234799319,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,11,4,1,619,0,0,0 +3028,3728,6779,-9,-9,6778,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1018.979477114726,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.4,51.02,6,1,0,0,11,1,1,309,0,0,0 +3029,3729,6780,6781,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,4,8.354634387359347,8.111991714845187,0,2,0,-9,4,0,10,69.32131962582933,0,0,0,38,1,3,1,2,2,2019,1,1,3,0,40,20,15,1,0,1,0,13.86375421086717,13.86375421086717,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,54.79,6,3,0,0,8,4,1,442.5,0,0,0 +3029,3729,6781,6780,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,3,8.047675982523847,7.496577759773278,0,2,0,-9,8,0,-10,-31.98066605875123,0,0,1,48,2,4,1,-9,2,2019,1,2,12,0,30,25,15,1,0,1,0,12.80149313289997,12.80149313289997,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.54,59.06,4,3,0,0,8,4,1,442.5,0,0,0 +3030,3730,6782,6783,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,4,9.045211248391549,9.057474609879302,0,1,0,-9,7,0,-2,55.16939070092791,-9,0,1,37,1,4,1,2,2,2019,1,1,9,2,65,0,15,1,2,1,0,14.81635290128452,14.81635290128452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,8,5,1,1520,0,0,0 +3030,3730,6783,6782,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,4,9.10708440792949,9.481808884942952,0,1,0,-9,7,0,2,-9.108836136499333,0,0,0,35,1,4,1,2,2,2019,1,2,10,0,55,45,15,1,1,1,0,27.18359258082303,27.18359258082303,0,0,0,0,0,0,0,0,0,0,2.404860331553076,0,0,0,51,56,5,1,0,0,8,5,1,1520,0,0,0 +3031,3731,6784,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1021.622482675023,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,8.117369183776887,0,29.11081890839976,0,0,0,1,1,0,0,0,0,0,33.22,17.55,5,1,0,0,6,1,1,340,0,0,0 +3032,3732,6785,6786,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,2,7.319155811508818,7.072106311623027,0,1,0,-9,33,0,2,-65.71967751974772,0,0,0,57,2,4,1,3,3,2019,1,2,16,5,28,30,15,1,5,1,0,4.697075261262616,4.697075261262616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.38,41.43,6,1,0,1,4,4,1,989.5,0,0,0 +3032,3732,6786,6785,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.10274291464105,8.200691792984257,0,1,0,-9,6,0,-2,34.44674641911416,0,0,0,59,2,2,1,-9,-9,2019,1,1,9,0,77,77,15,1,0,1,0,4.233971254370375,4.233971254370375,0,0,0,0,0,0,0,0,0,0,5.273302255809905,0,0,0,54,53,6,1,0,0,4,4,1,989.5,0,0,0 +3033,3733,6787,6788,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,4,8.229897146094091,8.842244563455303,7.138743647209622,1,0,-9,48,0,-1,40.24285733070268,0,0,0,68,3,3,3,2,1,2019,2,1,7,0,40,36,15,1,0,4,0,9.101078339505577,9.101078339505577,0,0,0,0,0,0,0,1,1,0,8.706361851363155,7.165628634531728,0,0,58.15,52.91,6,1,0,0,12,4,1,384.5,0,0,0 +3033,3733,6788,6787,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,7.748553649902138,7.414514487091023,1,0,-9,48,0,1,-122.299983838137,0,0,0,67,2,4,1,2,1,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.053671047331541,7.613209213873297,0,0,63.99,35.25,6,1,0,0,12,4,1,384.5,0,0,0 +3034,3734,6789,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,7.51272519434585,7.437995474212741,3,0,0,0,-9,0,-896.347034141089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.495209206593568,7.448258614098459,0,3,47.98,45.38,5,1,0,0,12,3,1,508,0,0,0 +3035,3735,6790,-9,6793,6791,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.47433662809,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,4,2,1,1093.75,0,0,0 +3035,3735,6791,6793,-9,-9,1,1,1,45,1,0,2,0,1,-9,1,1,0,4,7.939201079793032,7.766015254498974,0,2,0,-9,17,0,11,-113.4721701854935,0,0,0,34,2,4,3,3,2,2019,2,2,8,0,40,35,15,1,0,3,0,6.775928805306258,6.775928805306258,0,0,0,0,0,0,0,1,1,0,0,0,22.99797225388502,3,48.87,58.55,5,3,0,0,4,2,1,1093.75,0,0,0 +3035,3735,6792,-9,6793,6791,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.7251776485473,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,2,1,1093.75,0,0,0 +3035,3735,6793,6791,-9,-9,2,1,0,34,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,17,0,-11,48.73164309986654,0,0,1,45,1,4,1,3,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,4,2,1,1093.75,0,0,0 +3036,3736,6794,6795,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,7.767397425584069,7.923121955761022,0,2,0,-9,6,0,16,-29.62330538687796,0,0,0,35,2,4,1,-9,-9,2019,1,1,10,0,38,39,15,1,0,1,0,9.940838682120482,9.940838682120482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,6,1,0,0,4,3,1,1199,0,0,0 +3036,3736,6795,6794,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,4,7.234300998284307,7.425702489139778,0,2,0,-9,6,0,-16,68.03555072261449,0,0,1,51,2,4,1,3,-9,2019,1,2,6,0,22,30,15,1,0,1,0,9.558673636505606,9.558673636505606,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,4,3,1,1199,0,0,0 +3037,3737,6796,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,5.388249040031414,5.476702204502239,3,0,0,0,-9,0,-943.1060542480981,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,2.445371705282454,0,1,1,0,0,5.167428477521547,0,0,55.77,26,7,1,0,0,8,2,0,389,0,0,0 +3038,3738,6797,6798,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,4.911797443689276,4.782796033157158,1,0,-9,2,0,-7,-32.64551136701972,0,0,0,84,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.7484897226567074,4.546871050303353,0,0,51,46,5,4,0,0,8,2,1,1443.5,0,0,0 +3038,3738,6798,6797,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,5.703427908316698,5.963113915019349,1,0,-9,52,0,7,-50.72128104149346,0,0,0,77,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.869513493413854,3.277913630897296,1,54,45,6,4,0,0,8,2,1,1443.5,0,0,0 +3038,3739,6799,-9,-9,-9,3,1,1,33,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1024.460271753411,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,38,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,2,0,0,8,1,1,1033,0,0,0 +3038,3740,6800,-9,-9,-9,4,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.373857794521657,8.053724731096555,0,3,0,0,0,-9,0,-825.8915015969199,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,36,15,1,1,-9,0,12.03449180743981,12.03449180743981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,31.2,4,2,0,0,8,4,1,165,0,0,0 +3039,3741,6801,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-938.1035612038837,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.62,60.23,4,1,1,1,4,1,0,650.5,0,0,0 +3039,3741,6802,-9,6801,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1003.537205060306,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,1,0,650.5,0,0,0 +3040,3742,6803,6804,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,3,8.414660911102331,8.900254535291687,7.458651114216337,1,0,-9,8,0,-3,124.2012277843401,0,0,0,60,2,5,1,2,2,2019,1,2,6,0,34,41,15,1,0,1,0,17.2961365606984,17.2961365606984,0,0,0,0,0,0,0,1,1,0,5.145692086275586,7.986466811507777,0,0,57.97,35.45,2,1,0,0,2,5,1,1779,0,0,0 +3040,3742,6804,6803,-9,-9,2,1,0,60,1,0,0,0,2,-9,1,1,0,5,7.914533902149512,8.228676649864012,6.739289883364575,1,0,-9,8,0,3,107.6854126959221,0,0,0,57,3,3,1,3,2,2019,1,1,7,1,35,16,15,1,1,1,0,8.776112655355847,8.776112655355847,0,0,0,0,0,0,0,1,1,0,8.779977015835236,6.731596810176619,0,0,51.14,60.45,6,1,0,0,2,5,1,1779,0,0,0 +3041,3743,6805,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,3,7.978339466708301,7.84176570023317,0,3,0,0,0,-9,0,-1023.256167329999,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,35,25,15,1,0,-9,0,7.768038798458209,7.768038798458209,0,0,0,0,0,0,0,1,0,1,0,0,8.610620686487954,3,54.37,54.8,6,4,0,0,6,3,0,350,0,0,0 +3042,3744,6806,-9,-9,-9,1,1,0,42,2,0,1,0,3,-9,4,3,0,1,0,6.321159449067029,6.507813211188493,4,0,0,0,-9,0,-1075.941448416911,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4932659494560076,6.339356642145959,0,0,26.44,33.05,1,1,0,0,11,2,1,707,0,0,0 +3042,3745,6807,-9,6806,-9,2,1,0,21,2,0,1,0,2,-9,2,1,0,5,7.678588704673044,7.4671591215809,0,3,0,0,0,-9,0,-954.1262339818803,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,34,0,15,1,0,-9,1,5.694122368478121,5.694122368478121,0,0,0,0,0,0,0,1,1,0,5.812745859475618,0,3.674397359214011,3,54.67,57.49,7,1,0,0,11,3,1,1655,0,0,0 +3043,3746,6808,6809,-9,-9,3,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.764582528742816,8.308974201422759,0,1,0,-9,2,0,1,12.07595677418206,0,0,0,51,1,5,1,-9,-9,2019,1,1,6,0,35,35,15,1,0,1,0,18.27902806476895,18.27902806476895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,51,6,1,0,0,12,5,1,1255.5,0,0,0 +3043,3746,6809,6808,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,5,8.183345067655464,7.917703013445355,0,1,0,-9,2,0,-1,-133.8903106832767,0,0,0,52,2,4,1,2,2,2019,1,3,6,0,37,37,15,1,0,1,0,8.118178637025629,8.118178637025629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,6,1,0,0,12,5,1,1255.5,0,0,0 +3044,3747,6810,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,3,0,5.031523521875275,4.737434817925503,3,0,0,0,-9,0,-1022.406549848993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.976518747351302,5.17581972891255,0,0,39,41.76,6,1,0,0,4,2,0,334,0,0,0 +3045,3748,6811,-9,6816,6813,4,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.4892360584544,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,4,2,0,746.8333333333334,0,0,0 +3045,3748,6812,-9,6816,6813,3,1,1,16,2,1,4,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.1425670972,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.1,54.27,7,3,0,0,4,2,0,746.8333333333334,0,0,0 +3045,3748,6813,6816,-9,-9,1,1,1,36,1,1,4,0,2,-9,2,1,0,3,8.085217214000435,8.219185809034853,0,2,0,-9,14,0,-1,-91.55260672035487,0,0,0,37,3,4,3,2,2,2019,2,2,19,7,40,40,15,1,7,3,0,10.17360117488614,10.17360117488614,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.22,29.9,2,3,0,0,4,2,0,746.8333333333334,0,0,0 +3045,3748,6814,-9,6816,6813,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.570003305723,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,4,2,0,746.8333333333334,0,0,0 +3045,3748,6815,-9,6816,6813,5,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-852.8334857776993,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,2,0,746.8333333333334,0,0,0 +3045,3748,6816,6813,-9,-9,2,1,0,37,1,1,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,14,0,1,38.45860815441287,0,0,1,36,2,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,4,2,0,746.8333333333334,0,0,0 +3046,3749,6817,-9,6818,-9,4,1,1,19,3,0,2,0,3,-9,1,1,0,4,8.15153780206402,8.079767285186664,0,3,0,0,0,-9,0,-1040.027145176643,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,35,15,1,2,-9,1,10.31804001613868,10.31804001613868,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,8,4,0,1447,0,0,0 +3046,3750,6818,6820,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,5,6.440870580371636,6.314595011757426,0,2,0,-9,4,0,3,65.7524728446061,0,0,1,32,1,4,1,-9,-9,2019,1,1,14,3,16,16,15,1,3,1,0,4.553671023799015,4.553671023799015,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,6,1,0,1,8,3,0,345.5,0,0,0 +3046,3750,6819,-9,6818,6820,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.668429902659,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,3,0,345.5,0,0,0 +3046,3750,6820,6818,-9,-9,1,1,1,32,1,0,2,0,1,-9,2,1,0,4,8.351062795188499,8.111236262855986,0,2,0,-9,4,0,-3,-76.59732632409482,0,0,0,35,2,5,1,1,1,2019,1,2,11,0,49,51,15,1,0,1,0,5.842566694731547,5.842566694731547,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,2,3,0,1,8,3,0,345.5,0,0,0 +3046,3750,6821,-9,6818,-9,5,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1043.735021102369,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,8,3,0,345.5,0,0,0 +3047,3751,6822,6823,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,5,8.887892631094827,8.900842001498294,0,2,0,-9,9,0,-2,35.70460286173849,0,0,0,49,1,4,1,2,2,2019,1,1,7,0,38,44,15,1,0,1,0,21.24056812398148,21.24056812398148,0,0,0,0,0,0,0,1,1,0,2.623738051744203,0,0,0,57.06,57.76,6,1,0,0,8,5,1,1897.5,0,0,0 +3047,3751,6823,6822,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,4,9.325205281431149,9.440505286538347,0,2,0,-9,9,0,2,-137.7882207846284,0,0,0,47,2,5,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,35.04083602035377,35.04083602035377,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,8,5,1,1897.5,0,0,0 +3048,3752,6824,-9,-9,-9,1,1,1,74,2,0,0,0,3,-9,4,3,0,3,0,6.809499491688521,7.092756880973798,3,0,0,0,-9,0,-1030.254471942931,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.268273915920882,6.813924945167724,0,0,54,46,5,1,0,0,12,2,1,168,0,0,0 +3049,3753,6825,6826,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,3,68.98638496952097,0,0,0,67,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.164071099711406,0,0,0,51,46,5,1,0,0,7,3,1,879.5,0,0,0 +3049,3753,6826,6825,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.915292227826698,8.066099967369542,1,0,-9,29,0,-3,-109.3011317488013,0,0,0,70,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.059997864392982,8.047901293179685,0,0,53,47,5,1,0,0,7,3,1,879.5,0,0,0 +3050,3754,6827,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-910.507740188945,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.9732532433121,3,33.4,48.7,3,1,0,0,7,1,1,391,0,0,0 +3050,3754,6828,-9,6827,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-934.7248658215743,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,7,1,1,391,0,0,0 +3051,3755,6829,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,3,8.554024960270739,8.785493413857827,0,3,0,0,0,-9,0,-1079.710117123592,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,45,15,1,0,-9,0,14.61933976408464,14.61933976408464,0,0,0,0,0,0,0,0,0,0,0,0,25.58752872882831,3,57.33,53.46,5,1,0,0,13,5,1,902,0,0,0 +3052,3756,6830,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1046.347997097008,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.94,32.61,3,1,0,0,4,1,0,3185,0,0,0 +3053,3757,6831,-9,6833,6832,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.751184862147,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,5,1,586.5,0,0,0 +3053,3757,6832,6833,-9,-9,2,1,1,34,1,0,2,0,2,-9,1,1,0,3,8.585523900602496,9.162680615816901,0,2,0,-9,13,0,-2,-146.7938674451779,0,0,0,36,1,4,1,-9,1,2019,1,1,24,10,34,37,15,1,10,1,0,19.71748201932339,19.71748201932339,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.11,56.52,3,1,0,0,11,5,1,586.5,0,0,0 +3053,3757,6833,6832,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.520413229967165,8.373822435984541,0,2,0,-9,13,0,2,79.17486552509642,0,0,1,34,2,3,1,3,3,2019,1,2,7,1,30,40,15,1,1,1,0,18.28884054056873,18.28884054056873,0,0,0,0,0,0,0,1,1,0,.9328416477754919,0,0,0,42.11,57.44,6,1,0,0,11,5,1,586.5,0,0,0 +3053,3757,6834,-9,6833,6832,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.2443444505953,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,5,1,586.5,0,0,0 +3054,3758,6835,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-966.2283383132524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.3,25.73,3,1,0,0,13,1,0,440,0,0,0 +3055,3759,6836,6837,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,4,8.217562984112096,8.194387240293139,0,1,0,-9,14,0,-3,-83.52104669667396,0,0,1,38,1,3,1,2,2,2019,1,2,8,0,23,24,15,1,0,1,0,21.22452384295918,21.22452384295918,0,0,0,0,0,0,0,0,0,0,0,0,3.764713345789997,3,57.16,56.15,7,1,0,0,2,5,1,731,0,0,0 +3055,3759,6837,6836,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,3,9.909683706462999,9.683818303247655,0,1,0,-9,14,0,3,3.795665954590653,0,0,0,35,1,4,1,2,2,2019,1,1,10,0,45,55,15,1,0,1,0,36.14023687417497,36.14023687417497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.08,52.64,2,1,0,0,2,5,1,731,0,0,0 +3056,3760,6838,6839,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,5,0,8.906837467156629,9.179323581734772,1,0,-9,62,0,-1,28.39676134233926,0,0,0,83,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.420502054800343,9.014420945896527,0,0,41.58,60.67,7,1,0,0,7,5,1,467.5,0,0,0 +3056,3760,6839,6838,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,62,0,1,92.48711894738429,0,0,0,82,1,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,1.033626277352253,0,0,0,0,1,1,0,0,0,0,0,58.9,45.74,7,1,0,0,7,5,1,467.5,0,0,0 +3057,3761,6840,6841,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,7.053917047834847,6.752521709201243,1,0,-9,9,0,-6,55.68871661138309,0,0,0,73,3,3,3,2,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.460439337501433,6.994978490044679,0,0,64.83,34.85,7,1,0,0,4,2,1,538,0,0,0 +3057,3761,6841,6840,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,6,110.424479998463,0,0,0,67,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.701016968134887,0,0,0,67.11,31.19,6,1,0,0,4,2,1,538,0,0,0 +3058,3762,6842,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1099.504475511351,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,29,12,0,0,15,4,12,-9,0,0,0,1,0,0,17.67401454295601,14.97223646430486,27.07583564452302,0,1,1,0,0,0,0,0,38.42,14.05,1,1,0,0,5,1,0,186,0,0,0 +3058,3763,6843,-9,-9,6842,2,1,1,31,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-999.3174992115801,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,58,5,1,1,0,5,1,0,731,0,0,0 +3059,3764,6844,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,4,0,5.774807449042799,5.684337311728038,3,0,0,0,-9,0,-924.8955399306767,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.805458602247513,11.31842429354788,3,65.79000000000001,39.83,2,1,0,0,13,2,1,3935,0,0,0 +3059,3765,6845,-9,-9,-9,2,1,1,83,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1013.360334871494,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,1,0,0,13,1,1,120,0,0,0 +3060,3766,6846,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,1,0,3.525348402415991,3.555120770369058,3,0,0,0,-9,0,-942.2593755822614,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.794393630831065,14.89354575160015,3,37.6,14.31,3,1,0,0,13,1,0,373,0,0,0 +3061,3767,6847,6848,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,3,9.340127970714029,9.866665691839774,0,1,0,-9,42,0,-2,-7.834664789587281,0,0,0,64,2,4,1,2,2,2019,1,1,10,0,40,40,15,1,1,1,0,50.1145084422781,50.1145084422781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,5,1,0,0,5,5,1,371,0,0,0 +3061,3767,6848,6847,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,4,7.387001692583832,7.284015875531773,0,1,0,-9,42,0,2,-8.688317131654715,0,0,0,62,2,3,1,2,2,2019,1,2,6,0,28,37,15,1,0,1,0,8.709006641440496,8.709006641440496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,1,371,0,0,0 +3062,3768,6849,6850,-9,-9,1,1,0,62,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,45,0,-6,17.64286335194054,0,0,0,68,2,2,1,3,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.533807999082109,0,3.947174713578516,3,53.8,43.99,6,1,1,0,9,3,1,599.5,0,0,0 +3062,3768,6850,6849,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,2,7.554961782399587,7.637913847792534,6.056846443391679,1,0,-9,9,0,6,-52.35752554717357,-9,0,0,62,2,3,3,-9,-9,2019,2,1,10,0,24,0,15,1,0,3,0,9.313699000688761,9.313699000688761,1,0,0,0,0,0,0,1,1,0,6.361988222267019,6.452621371240025,0,0,50.03,31.36,6,1,0,0,9,3,1,599.5,0,0,0 +3063,3769,6851,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,2,1,0,5,8.305405653358378,8.417601842734351,0,3,0,0,0,-9,0,-968.5519558030251,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,37,32,15,1,0,-9,0,14.60519993330372,14.60519993330372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,1,4,1,786,0,0,0 +3064,3770,6852,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,3,8.184842607123384,8.202622902439401,0,3,0,0,0,-9,0,-955.6506743369031,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,40,40,15,1,3,-9,0,9.7900013459122,9.7900013459122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.49,57.5,5,1,0,0,12,4,0,276,0,0,0 +3065,3771,6853,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,4,7.872371896029292,8.212839750937992,0,3,0,0,0,-9,0,-1011.548767184041,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,12,1,39,37,15,1,1,-9,0,8.920694908079884,8.920694908079884,0,0,0,0,0,0,0,0,0,0,2.373768694618166,0,0,0,38.69,61.75,3,1,0,0,1,4,1,1117,0,0,0 +3066,3772,6854,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1080.168195998538,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.532404800402285,0,0,0,50,47,5,1,0,0,13,1,1,529,0,0,0 +3067,3773,6855,6856,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,3,7.99742275058256,8.441154348458264,0,2,0,-9,10,0,-3,35.46316778112354,0,0,1,46,1,4,1,2,1,2019,1,1,12,0,23,23,15,1,0,1,0,15.88560790991905,15.88560790991905,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.25,59.94,5,1,0,0,8,5,1,375.3333333333333,0,0,0 +3067,3773,6856,6855,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,4,9.491559660605102,9.707032540748344,0,2,0,-9,10,0,3,29.15066703512483,0,0,0,43,1,3,1,1,1,2019,1,2,2,0,40,40,15,1,0,1,0,45.20423688593966,45.20423688593966,0,0,0,0,0,0,0,1,1,0,2.822454661688156,0,0,0,55.14,47.59,6,1,0,0,8,5,1,375.3333333333333,0,0,0 +3067,3773,6857,-9,6855,6856,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.176072695527,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,8,5,1,375.3333333333333,0,0,0 +3068,3774,6858,-9,6860,6859,5,1,1,17,2,0,1,1,2,0,7,2,0,4,4.886792437751674,5.295674211460971,0,2,0,0,0,-9,0,-916.2627734836399,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,5,3,0,0,6,4,1,331.6666666666667,0,0,0 +3068,3774,6859,6860,-9,6861,1,1,1,48,1,0,1,0,2,-9,2,1,0,1,7.997439635279309,8.118428494224306,0,2,0,-9,23,0,7,47.51851098819566,0,0,0,41,2,4,1,3,3,2019,1,3,20,8,40,40,15,1,8,1,0,10.48491714163834,10.48491714163834,0,0,0,0,0,0,0,1,1,0,2.790804305686735,0,23.68798091447025,3,53.22,26.09,2,3,0,0,6,4,1,331.6666666666667,0,0,0 +3068,3774,6860,6859,-9,-9,3,1,0,41,1,0,1,0,2,-9,2,1,0,4,8.323761623364494,8.343384559861439,0,2,0,-9,8,0,-7,-25.93093327303444,0,0,1,48,2,1,1,-9,-9,2019,1,1,11,0,40,40,15,1,1,1,0,13.0774810135547,13.0774810135547,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,55,5,3,0,0,6,4,1,331.6666666666667,0,0,0 +3068,3775,6861,-9,-9,-9,2,1,1,76,3,0,1,0,2,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-892.6972928477485,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,6,3,0,0,6,1,1,566,0,0,0 +3068,3776,6862,-9,6860,6859,4,1,0,19,2,0,1,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1028.348085274294,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,5,3,0,0,6,1,1,331,0,0,0 +3069,3777,6863,6864,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,4.338193241092066,4.221126177430898,1,0,-9,56,0,-5,136.7726588470797,0,0,0,81,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.231374592117016,0,0,57.33,53.46,6,1,0,0,7,2,1,590,0,0,0 +3069,3777,6864,6863,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,4,0,6.107206636609151,6.010752951640695,1,0,-9,56,0,5,92.16348790839079,0,0,0,76,3,3,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.865609048001514,6.202942138076131,0,0,45.58,55.84,5,1,0,0,7,2,1,590,0,0,0 +3070,3778,6865,-9,-9,-9,1,1,1,44,3,0,0,0,3,-9,2,1,0,4,8.63028799354815,8.650766632317149,0,3,0,0,0,-9,0,-1046.077547078194,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,14.32528943332298,14.32528943332298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,3,1,0,0,2,5,1,1403,0,0,0 +3071,3779,6866,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,3,6.996624055741258,7.541244980601832,6.371302170494972,3,0,0,0,-9,0,-940.3003767409284,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,19,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.59398890954257,6.408450968095702,0,0,57.33,53.46,6,1,0,0,10,3,1,1775,0,0,0 +3072,3780,6867,6868,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,9.254543756309788,9.57052365988126,7.319348687146144,1,0,-9,11,0,2,33.93368984225057,0,0,0,59,2,4,1,-9,-9,2019,1,2,13,1,45,35,15,1,1,1,0,30.55520956231828,30.55520956231828,0,0,0,0,0,0,0,0,0,0,7.191543502291595,7.301037122827671,0,0,58.92,48.59,6,1,0,0,1,5,1,967,0,0,0 +3072,3780,6868,6867,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.193332732977524,8.457587223941063,0,1,0,-9,36,0,-2,-121.9525707996856,0,0,0,61,1,3,1,3,2,2019,1,1,12,0,35,38,15,1,0,1,0,14.4950308620499,14.4950308620499,0,0,0,0,0,0,0,0,0,0,0,0,8.26464060469665,3,54.2,57.49,6,1,0,0,1,5,1,967,0,0,0 +3073,3781,6869,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1136.389471642018,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,17,2,1,0,0,13,1,1,107,0,0,0 +3074,3782,6870,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-918.3931384584972,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,13.25,3,1,0,0,2,1,0,379,0,0,0 +3075,3783,6871,-9,-9,-9,1,1,0,42,2,0,2,0,1,-9,1,1,0,3,6.881073980980498,7.378363991383677,6.525459687607422,2,0,-9,4,0,6,80.08406060683269,0,0,1,-9,-9,-9,-9,2,2,2019,1,4,8,1,33,33,15,1,1,-9,0,3.485653844876908,3.485653844876908,0,0,0,0,0,0,0,1,1,0,6.811481361868885,0,121.3825073756079,3,56.35,43.13,6,1,0,0,4,3,1,257,0,0,0 +3075,3783,6872,-9,6871,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.313743040421,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,1,257,0,0,0 +3075,3783,6873,-9,6871,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-876.6626960432042,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,63.4,5,1,0,0,4,3,1,257,0,0,0 +3075,3784,6874,-9,-9,-9,4,1,0,36,2,0,2,0,2,-9,2,1,0,3,7.800739937556104,7.84486103523508,0,2,0,-9,4,0,-6,-59.37752606759223,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,24,9,37,38,15,1,9,-9,0,7.751644820650709,7.751644820650709,0,0,0,0,0,0,0,1,1,0,0,0,2.885630866050545,3,33.43,59.21,3,1,0,0,4,3,1,117,0,0,0 +3076,3785,6875,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,1,1,0,5,0,0,0,3,0,0,0,-9,0,-906.5583329628734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,18,15,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,6,4,0,0,8,1,1,204,0,0,0 +3077,3786,6876,-9,6880,-9,2,1,1,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1115.582798546907,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,474.6,0,0,0 +3077,3786,6877,-9,6880,-9,5,1,0,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.362777939563,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,0,474.6,0,0,0 +3077,3786,6878,-9,6880,-9,4,1,0,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1161.954295178281,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,0,474.6,0,0,0 +3077,3786,6879,-9,6880,-9,3,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-926.777098814969,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,2,0,474.6,0,0,0 +3077,3786,6880,-9,-9,-9,1,1,0,27,3,1,4,0,2,-9,6,3,0,4,0,5.78169752658528,5.978123154741746,4,0,0,0,-9,0,-1000.639116454113,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.162169968537092,0,0,0,34.51,54.48,6,1,0,0,5,2,0,474.6,0,0,0 +3078,3787,6881,6882,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,2,0,6.255874186724064,5.644639507401616,1,0,-9,42,0,-2,49.55718788402299,0,0,0,66,2,4,3,3,3,2019,4,1,7,0,0,22,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.62171201186447,5.595805060814215,0,0,54.1,41.8,6,1,0,0,8,2,1,2167,0,0,0 +3078,3787,6882,6881,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,6.288334026793733,5.822318500116123,1,0,-9,42,0,2,-52.90887499301388,0,0,0,64,3,2,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.752827634518685,6.046549357813738,0,0,61.12,51.57,7,1,0,0,8,2,1,2167,0,0,0 +3078,3788,6883,-9,6881,6882,3,1,0,37,2,0,0,0,2,-9,2,1,0,1,7.202341497245039,7.074998093489966,0,3,0,0,0,-9,0,-1038.286489372231,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,17,3,16,33,15,1,3,-9,1,8.477464108461152,8.477464108461152,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.04,24.97,1,1,0,0,8,2,1,556,0,0,0 +3079,3789,6884,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.235647379376857,8.247585704086632,0,3,0,0,0,-9,0,-887.3100023064494,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,40,15,1,1,-9,0,9.857312634994557,9.857312634994557,0,0,0,0,0,0,0,0,0,0,1.453107388707075,0,0,0,56.02,37.81,6,1,0,0,10,4,0,890,0,0,0 +3080,3790,6885,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,3,0,3.831286953763652,3.597460990533556,3,0,0,0,-9,0,-859.6301430343221,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.542449168027666,4.213917117542371,5.658294287100458,3,44.27,26.47,6,1,0,0,5,1,1,742,0,0,0 +3081,3791,6886,6887,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,0,6.046984735414877,5.623202477313143,1,0,-9,46,0,2,-29.27372854001777,0,0,0,68,3,4,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,1,0,6.912237325952845,0,0,0,0,1,1,0,0,5.783947583645144,0,0,55.5,10.33,3,1,0,0,2,2,1,297,0,0,0 +3081,3791,6887,6886,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,5.322382055776731,5.563126133309332,1,0,-9,7,0,-2,127.440987591693,0,0,0,70,2,1,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.379432098879442,23.94854713240231,1,57.55,39.41,6,1,0,0,2,2,1,297,0,0,0 +3082,3792,6888,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,7.986263724971438,7.843286348193815,3,0,0,0,-9,0,-1118.860480549907,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,5.247811649496613,0,3.662817587830066,0,0,21.52336811271005,1,1,0,1.39611708747267,7.866103053553963,0,0,52,45,6,1,0,0,11,3,1,880,0,0,0 +3083,3793,6889,-9,-9,-9,1,1,0,84,2,0,0,0,1,-9,4,3,0,1,0,6.621425875945934,6.933289559545783,3,0,0,0,-9,0,-1025.248236685416,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.066393723423344,0,0,34.1,23.62,3,1,0,0,10,2,0,64,0,0,0 +3084,3794,6890,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1041.784482165652,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,9,1,0,593,0,0,0 +3085,3795,6891,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1029.985092339484,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.08,21.43,3,1,0,1,7,1,0,980,0,0,0 +3086,3796,6892,6893,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,8.192876048655831,7.896323007145565,1,0,-9,43,0,2,-22.90885498290468,0,0,0,63,2,4,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.436206599918778,8.457103695644246,0,0,55.76,44.76,7,1,0,0,9,4,1,340,0,0,0 +3086,3796,6893,6892,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,8.04411102539928,7.567840835152236,1,0,-9,43,0,-2,105.548590014535,0,0,0,65,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.419167104717701,7.673229901390062,0,3,51.24,58.84,6,1,0,0,9,4,1,340,0,0,0 +3087,3797,6894,-9,6896,6897,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-994.286917596288,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,8,3,1,1019.25,0,0,0 +3087,3797,6895,-9,6896,6897,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1085.760344234679,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,8,3,1,1019.25,0,0,0 +3087,3797,6896,6897,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,8.056158918978733,8.025603947266493,0,2,0,-9,17,0,0,-135.9847836019038,0,0,1,40,2,4,1,2,2,2019,1,2,10,0,40,0,15,1,0,1,0,7.440868529632855,7.440868529632855,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.13,49.87,6,3,0,0,8,3,1,1019.25,0,0,0 +3087,3797,6897,6896,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,4,7.051030003619434,6.979449210867465,0,2,0,-9,8,0,0,114.6288849471987,0,0,0,40,2,4,1,-9,-9,2019,1,1,6,0,16,40,15,1,0,1,0,8.247370533159179,8.247370533159179,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,56.95,7,3,0,0,8,3,1,1019.25,0,0,0 +3088,3798,6898,-9,6900,6901,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-987.8512175546614,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,11,4,0,557.25,0,0,0 +3088,3798,6899,-9,6900,6901,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.555267771425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,0,557.25,0,0,0 +3088,3798,6900,6901,-9,-9,2,1,0,40,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,0,40.45661028291669,0,0,1,40,2,3,1,3,3,2019,3,1,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.4055512937826,3,19.18,61.69,4,1,0,0,11,4,0,557.25,0,0,0 +3088,3798,6901,6900,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,3,8.773884935056746,8.859491451571232,0,2,0,-9,7,0,0,77.67224864395425,0,0,0,40,2,3,3,3,2,2019,2,2,17,5,40,43,15,1,5,3,0,16.69669856204057,16.69669856204057,0,0,0,0,0,0,0,1,1,0,0,0,14.62761583214698,3,45.33,44.04,6,1,0,0,11,4,0,557.25,0,0,0 +3088,3799,6902,-9,6900,6901,3,1,1,19,2,0,2,0,2,0,7,2,0,4,6.767308142009774,6.889117873288356,0,3,0,0,0,-9,0,-984.9615038698009,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,11,2,0,1092,0,0,0 +3089,3800,6903,-9,-9,-9,1,1,0,24,2,1,1,0,2,-9,2,1,0,4,7.086734666361507,7.019067171967588,0,4,0,0,0,-9,0,-846.3376207500093,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,18,0,15,1,0,-9,0,8.257522733194291,8.257522733194291,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,50.59,4,1,0,0,7,2,0,1403,0,0,0 +3089,3800,6904,-9,6903,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-921.5075220558293,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,2,0,1403,0,0,0 +3090,3801,6905,-9,6908,6907,4,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.4815781270436,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,1015,0,0,0 +3090,3801,6906,-9,6908,6907,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.568971354718,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,1015,0,0,0 +3090,3801,6907,6908,-9,-9,3,1,1,31,1,0,4,0,2,-9,2,1,0,2,7.975152331452172,7.788694835248313,0,2,0,-9,8,0,1,19.83320473287206,0,0,0,30,2,3,3,-9,-9,2019,2,1,13,1,50,47,15,1,1,3,0,8.721472919354369,8.721472919354369,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,41.62,3,1,0,0,9,2,0,1015,0,0,0 +3090,3801,6908,6907,-9,-9,1,1,0,30,1,0,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-1,52.85127873130113,0,0,1,31,2,2,1,2,2,2019,3,3,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,55.8,4,1,0,0,9,2,0,1015,0,0,0 +3090,3801,6909,-9,6908,6907,2,1,1,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1130.622140059819,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,0,1015,0,0,0 +3090,3801,6910,-9,6908,6907,6,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.1225159696318,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,0,1015,0,0,0 +3091,3802,6911,6912,-9,-9,2,1,1,89,1,0,0,0,3,-9,4,3,0,3,0,7.169974285867132,7.026592221357048,1,0,-9,67,0,3,86.47523694005702,0,0,0,86,3,3,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.787917486646076,7.338774872841486,0,0,46.93,39.28,6,1,0,0,5,2,1,680,0,0,0 +3091,3802,6912,6911,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,67,0,-3,-113.3091760285959,0,0,0,89,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.58,55.59,7,1,0,0,5,2,1,680,0,0,0 +3092,3803,6913,6915,-9,-9,1,1,0,31,1,1,1,0,1,-9,2,1,0,4,8.618793709149269,8.578864272776922,0,2,0,-9,7,0,-1,-4.517459520798138,0,0,1,32,1,4,1,1,1,2019,1,2,9,0,28,29,15,1,0,1,0,29.890854856548,29.890854856548,0,0,0,0,0,0,0,0,0,0,3.870295485828459,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1103,0,0,0 +3092,3803,6914,-9,6913,6915,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.7790067373496,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,10,5,1,1103,0,0,0 +3092,3803,6915,6913,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.585959076907539,8.415300792932143,0,2,0,-9,7,0,1,74.83731211464901,0,0,0,31,1,4,1,-9,-9,2019,1,1,8,0,40,42,15,1,0,1,0,14.16337535330467,14.16337535330467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1103,0,0,0 +3093,3804,6916,6917,-9,-9,2,1,0,65,1,0,0,0,1,-9,1,1,0,5,8.437509254492811,8.658185293763777,8.101115112464603,1,0,-9,40,0,1,-2.565867214524027,0,0,0,64,1,4,3,3,3,2019,2,1,7,0,10,10,15,1,0,4,0,36.51573629920716,36.51573629920716,1,0,0,0,0,0,0,1,1,0,2.047353785360404,8.087966692040499,0,0,54.1,59.11,7,1,0,0,12,5,1,279,0,0,0 +3093,3804,6917,6916,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,7.755089819388217,7.981506486161409,1,0,-9,40,0,-1,222.6869170564563,0,0,0,65,1,5,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.099040400947598,8.024499561024134,0,0,49.35,59.64,6,1,0,0,12,5,1,279,0,0,0 +3094,3805,6918,6919,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,3,8.356782077784425,8.677151266015715,0,2,0,-9,8,0,-2,-88.51050589166032,0,0,1,45,2,4,1,2,2,2019,1,2,14,2,42,42,15,1,2,1,0,11.60211616919723,11.60211616919723,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,4,1,0,0,2,4,1,311,0,0,0 +3094,3805,6919,6918,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,4,7.527132409347967,7.398578270086119,0,2,0,-9,8,0,2,-68.91191696495628,0,0,0,43,2,3,1,2,-9,2019,1,1,9,0,36,40,15,1,1,1,0,6.649490313238569,6.649490313238569,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,1,0,0,2,4,1,311,0,0,0 +3095,3806,6920,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,4,7.534672773621717,7.448523739696917,0,3,0,0,0,-9,0,-994.9524807628344,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,32,15,1,0,-9,0,6.993029317605393,6.993029317605393,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.26,61.9,3,1,0,0,6,3,1,1271,0,0,0 +3096,3807,6921,6922,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,4,0,8.002062189394339,8.116766455924147,1,0,-9,33,0,2,53.38769387343281,0,0,0,73,1,2,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.558688187750899,8.068455855135383,0,0,56.92,49.39,6,1,0,0,2,4,1,196,0,0,0 +3096,3807,6922,6921,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,2,0,7.686994516622958,7.811919146518246,1,0,-9,33,0,-2,-130.0186576258056,0,0,0,75,1,4,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.783176332054838,8.56548190130539,3,63.41,29.17,6,1,0,0,2,4,1,196,0,0,0 +3097,3808,6923,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,3,8.170568511010991,8.129188692557252,0,3,0,0,0,-9,0,-1104.763519007996,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,45,36,15,1,6,-9,0,8.641337786951144,8.641337786951144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.27,55.75,2,1,0,0,8,4,0,850,0,0,0 +3098,3809,6924,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,2,7.888183502817419,7.872984309042107,5.835164942461755,3,0,0,0,-9,0,-950.4894789141596,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,38,38,15,1,1,-9,0,9.826426014248305,9.826426014248305,0,0,0,0,0,0,0,0,0,0,6.295449800634408,5.777245061183712,0,0,46.08,35.94,4,1,0,0,9,4,0,716,0,0,0 +3099,3810,6925,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,2,1,0,3,7.86744905364849,7.459448195834803,0,3,0,0,0,-9,0,-1014.689273226615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,27,22,15,1,1,-9,0,8.777148594262549,8.777148594262549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.27,48.4,4,4,0,0,2,3,0,1463.5,0,0,0 +3099,3810,6926,-9,6925,-9,2,1,1,16,2,0,0,1,2,0,7,2,0,3,5.358438104834476,5.431744279927969,0,3,0,0,0,-9,0,-1081.739594969724,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,5,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.87,51.86,7,4,0,0,2,3,0,1463.5,0,0,0 +3099,3811,6927,-9,6925,-9,3,1,1,18,2,0,0,0,3,-9,2,1,0,4,4.917513086723719,5.134557414673115,0,3,0,0,0,-9,0,-1142.632247751081,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,6,0,15,1,1,-9,1,3.469306333198927,3.469306333198927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,5,4,0,1,2,2,0,2408,0,0,0 +3099,3812,6928,-9,6925,-9,4,1,1,24,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-976.491353557806,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.39,72.53,1,4,1,1,2,1,0,282,0,0,0 +3100,3813,6929,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,5,0,6.305031112410333,6.462218393505506,3,0,0,0,-9,0,-1002.388624283822,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,.6608759280233696,4.069166096057869,1.275014998933078,0,1,1,0,0,6.523583537660282,0,0,65.12,32.33,7,4,0,0,8,2,0,272,0,0,0 +3101,3814,6930,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,2,7.480466438945238,7.894354606751413,3.88276788772869,3,0,0,0,-9,0,-1087.368857046984,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,35,35,15,1,1,-9,0,7.551738595178505,7.551738595178505,0,0,0,0,0,0,0,1,1,0,4.900152079542501,3.753384940701099,3.303088965847078,3,44.94,45.95,5,1,0,0,13,3,1,924,0,0,0 +3101,3815,6931,-9,6930,-9,2,1,1,36,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-985.8205030901241,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,9,0,37,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.41,44.32,2,1,1,0,13,1,1,528,0,0,0 +3102,3816,6932,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,2,7.666802942338776,7.874655689622395,6.938940742011972,3,0,0,0,-9,0,-1252.532455459465,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,10,39,39,15,1,10,-9,0,6.934765148809288,6.934765148809288,0,0,0,0,0,0,0,1,1,0,0,7.000691112588876,0,0,31.67,46.91,2,1,0,0,9,4,0,201,0,0,0 +3103,3817,6933,-9,-9,-9,1,1,0,38,3,0,2,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-916.5072011610773,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,127.3638016420941,3,37.74,50.88,6,3,0,1,6,1,0,1637.333333333333,0,0,0 +3103,3817,6934,-9,6933,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.9112891682927,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,1,0,1637.333333333333,0,0,0 +3103,3817,6935,-9,6933,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1053.785178899944,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.38424088264032,3,52.97,53.97,6,3,0,0,6,1,0,1637.333333333333,0,0,0 +3104,3818,6936,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,4,7.891711993705837,7.67038935539982,0,3,0,0,0,-9,0,-1091.090283872291,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,40,38,15,1,1,-9,0,8.952751443523242,8.952751443523242,0,0,0,0,0,0,0,0,0,0,6.805189340830225,0,0,0,44.02,60.7,5,1,0,0,4,3,1,217,0,0,0 +3105,3819,6937,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,7.891341832122939,8.481325920996202,7.242683629963893,3,0,0,0,-9,0,-1044.674257969789,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,19,35,15,1,0,-9,0,17.62118689046816,17.62118689046816,0,0,0,0,0,0,0,1,1,0,6.902627315309487,7.153406328040647,6.392392383581035,3,41.85,59.17,4,1,0,0,12,4,1,160,0,0,0 +3106,3820,6938,6939,-9,-9,2,1,0,50,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,32,0,-2,-110.3606713268268,0,0,0,52,2,2,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.7243104832883659,0,70.03397224119398,3,55.93,49.95,6,1,0,0,6,5,1,364,0,0,0 +3106,3820,6939,6938,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,9.021159831846692,8.843782638474682,0,1,0,-9,32,0,2,-85.99910581114281,0,0,0,50,3,3,3,3,3,2019,2,2,10,0,70,75,15,1,0,3,0,14.95692372400113,14.95692372400113,0,0,0,0,0,0,0,0,0,0,0,0,.9266998802352682,3,50.27,48.86,5,1,0,0,6,5,1,364,0,0,0 +3106,3821,6940,-9,6938,6939,3,1,0,26,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-943.5097055226418,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,76,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.08,48.61,5,1,1,0,6,1,1,689,0,0,0 +3107,3822,6941,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,2,0,6.635584269219451,6.430904504604224,3,0,0,0,-9,0,-977.4476745490151,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.105103072103029,6.679193264548521,0,0,54.49,23.82,6,1,0,0,9,2,1,251,0,0,0 +3107,3823,6942,-9,6941,-9,2,1,0,43,2,0,0,0,1,1,2,1,0,2,0,0,0,3,0,0,0,-9,0,-929.964382455892,-9,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,6,0,0,15,1,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.45,55.43,4,1,0,0,9,1,1,80,0,0,0 +3108,3824,6943,6944,-9,-9,2,1,1,61,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,11,0,7,0,-9,0,0,54,3,3,3,-9,-9,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.16,41.02,4,3,0,0,4,1,0,646.5,0,0,0 +3108,3824,6944,6943,-9,-9,1,1,0,54,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,40,0,-7,0,-9,0,0,61,2,2,3,3,3,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,123.1271960486148,1,50.72,46.82,5,3,0,0,4,1,0,646.5,0,0,0 +3108,3825,6945,-9,6944,6943,3,1,0,32,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-970.2876784118124,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,3.873720450397009,0,0,0,61.28,46.17,5,3,1,0,4,1,0,1838,0,0,0 +3108,3826,6946,-9,6944,6943,4,1,0,28,2,0,0,0,1,-9,2,1,0,4,7.208189799317277,7.412630579195185,0,3,0,0,0,-9,0,-870.458445982415,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,28,20,15,1,0,-9,1,6.681252664146679,6.681252664146679,0,0,0,0,0,0,0,1,0,1,0,0,0,3,45.91,59.89,4,3,0,1,4,3,0,551,0,0,0 +3108,3827,6947,-9,6944,6943,5,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.562529731137318,7.877907125936192,0,3,0,0,0,-9,0,-900.2461401770346,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,38,38,15,1,0,-9,1,8.272110292117981,8.272110292117981,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.87,51.29,6,3,0,0,4,3,0,1927,0,0,0 +3108,3828,6948,-9,6944,6943,6,1,1,19,2,0,0,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-956.5823009281231,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.72,41.15,4,3,0,0,4,1,0,146,0,0,0 +3108,3829,6949,-9,6944,6943,7,1,1,22,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1005.225102999779,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,23,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.14,51.28,6,3,1,0,4,1,0,411,0,0,0 +3108,3830,6950,-9,6944,6943,8,1,0,30,2,0,0,0,2,-9,2,1,0,3,8.061557983946186,7.836298699978215,0,3,0,0,0,-9,0,-936.0627924603446,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,38,38,15,1,0,-9,1,8.929281173760556,8.929281173760556,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.73,57.57,2,3,0,0,4,4,0,1668,0,0,0 +3109,3831,6951,6953,-9,-9,1,1,1,40,1,0,3,0,2,-9,1,1,0,3,0,0,0,2,0,-9,9,0,6,0,0,0,0,34,2,3,3,-9,-9,2019,2,2,12,0,37,38,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,4,3,0,0,2,1,0,494,0,0,0 +3109,3831,6952,-9,6953,6951,4,1,1,17,2,0,3,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-975.2567069330273,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.27,48.04,4,3,0,0,2,1,0,494,0,0,0 +3109,3831,6953,6951,-9,-9,2,1,0,34,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,20,0,-6,0,0,0,1,40,2,3,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.667548605008317,0,0,0,45,52,4,3,0,0,2,1,0,494,0,0,0 +3109,3832,6954,-9,6953,6951,3,1,0,18,2,0,3,0,2,1,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1068.640123950705,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,4,1,0,0,2,1,0,339,0,0,0 +3110,3833,6955,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,3,7.979726248599849,8.081378079673797,0,3,0,0,0,-9,0,-967.4006142238054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,35,36,15,1,6,-9,0,8.635950280171546,8.635950280171546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,44.38,4,1,0,1,2,4,1,1088,0,0,0 +3111,3834,6956,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,4.815081498679516,5.254868448227603,3,0,0,0,-9,0,-1125.712188771876,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.055247235526912,0,0,54.63,30.35,5,1,0,0,13,2,0,975,0,0,0 +3112,3835,6957,6958,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,3,8.108802002745533,8.021379367380582,0,1,0,-9,45,0,3,11.11472838421193,0,0,0,65,2,2,3,3,3,2019,2,2,10,0,20,0,15,1,1,4,0,20.14659011163913,20.14659011163913,0,0,0,0,0,0,0,1,1,0,3.065683594601768,0,0,0,51,48,5,1,0,0,1,3,1,796.5,0,0,0 +3112,3835,6958,6957,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,4.753968903176068,4.661787159725401,1,0,-9,44,0,-3,-19.59196007890793,0,0,0,68,2,3,1,-9,3,2019,3,1,17,4,0,0,15,4,4,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.263321626264269,5.085881764647878,0,0,23.53,34.25,2,1,0,0,1,3,1,796.5,0,0,0 +3113,3836,6959,6960,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,5,8.226900651719173,8.291226480202186,0,2,0,-9,23,0,-1,25.17868892734538,0,0,0,49,2,4,1,2,2,2019,1,1,3,0,45,50,15,1,0,1,0,7.968757632968652,7.968757632968652,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,6,1,0,0,6,5,1,338,0,0,0 +3113,3836,6960,6959,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,9.56007686396844,9.062516397269089,0,2,0,-9,22,0,1,61.7844796507561,0,0,0,48,1,5,1,2,2,2019,1,2,9,0,40,38,15,1,0,1,0,21.26049775574062,21.26049775574062,0,0,0,0,0,0,0,1,1,0,.3706715241100853,0,0,0,53.81,53.56,6,1,0,0,6,5,1,338,0,0,0 +3114,3837,6961,6962,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,4,8.533242552739059,8.377514977772222,0,1,0,-9,10,0,-1,-78.8205453156571,0,0,0,46,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,13.38429833237693,13.38429833237693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,5,1,0,0,2,4,1,943,0,0,0 +3114,3837,6962,6961,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.338373221712071,7.451478367687776,0,1,0,-9,24,0,1,74.15363585894372,0,0,0,45,2,4,1,2,2,2019,1,2,7,0,23,23,15,1,0,1,0,6.308415217051502,6.308415217051502,0,0,0,0,0,0,0,0,0,0,3.972238869992514,0,0,0,54.79,55.86,6,1,0,0,2,4,1,943,0,0,0 +3114,3838,6963,-9,6962,6961,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.883640460339375,8.150759541813589,0,3,0,0,0,-9,0,-926.8094744802582,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,36,15,1,0,-9,1,11.47866230049496,11.47866230049496,0,0,0,0,0,0,0,0,0,0,.8356404548166885,0,0,0,61.12,51.57,7,1,0,0,2,4,1,820,0,0,0 +3114,3839,6964,-9,6962,6961,4,1,0,18,2,0,0,1,2,0,7,2,0,4,6.094921815047969,6.096574969651857,3.640317190225943,3,0,0,0,-9,0,-972.1600809769222,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.235143046507426,0,0,0,57.16,56.15,7,1,0,0,2,2,1,1371,0,0,0 +3115,3840,6965,6966,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.019039728515313,7.882786859055637,0,1,0,-9,33,0,1,48.96699005006712,0,0,0,56,2,3,1,-9,2,2019,1,2,19,7,38,39,15,1,7,1,0,9.31906002197657,9.31906002197657,0,0,0,0,0,0,0,0,0,0,6.362885329956201,0,11.39528120691566,3,39.48,53.35,6,1,0,0,7,4,1,169.5,0,0,0 +3115,3840,6966,6965,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,3,7.332338412117176,7.126710469986993,0,1,0,-9,33,0,-1,-41.50002780880714,0,0,0,57,2,4,1,2,2,2019,1,1,9,0,50,50,15,1,0,1,0,2.736992368223198,2.736992368223198,0,0,0,0,0,0,0,0,0,0,0,0,7.384966723712223,3,58.32,50.22,6,1,0,0,7,4,1,169.5,0,0,0 +3116,3841,6967,6969,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,16,0,-15,-152.2758794199536,0,0,1,51,2,2,1,2,1,2019,1,2,9,0,0,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,3,1,1036.5,0,0,0 +3116,3841,6968,-9,6967,6969,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1013.662825450754,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,10,3,1,1036.5,0,0,0 +3116,3841,6969,6967,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,2,8.209531625427323,8.226644972561676,4.023571419273101,2,0,-9,17,0,15,100.9471763700379,0,0,0,36,1,4,1,3,2,2019,1,1,14,2,40,37,15,1,2,1,0,11.41932176893743,11.41932176893743,0,0,0,0,0,0,0,1,1,0,3.314336397992063,4.365382904259266,0,0,57.18,40.23,5,1,0,0,10,3,1,1036.5,0,0,0 +3116,3841,6970,-9,6967,6969,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-973.2547883191201,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,10,3,1,1036.5,0,0,0 +3117,3842,6971,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,3,0,7.001820970547518,7.104621781927461,3,0,0,0,-9,0,-1100.594395139776,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0137407922470069,6.619277330222743,0,0,52,48,5,1,0,0,1,2,1,821,0,0,0 +3118,3843,6972,6974,-9,-9,1,1,1,62,1,0,1,0,3,-9,2,1,0,4,7.738215899165422,7.877370817125075,0,2,0,-9,36,0,7,41.37730155239061,0,0,0,55,2,4,1,1,1,2019,1,2,11,0,45,0,15,1,0,1,0,7.500311460407601,7.500311460407601,0,0,0,0,0,0,0,1,1,0,0,0,11.03488647438008,3,54.2,57.49,6,1,0,0,10,4,1,490,0,0,0 +3118,3843,6973,-9,6974,6972,4,1,0,17,2,0,1,1,2,0,7,2,0,5,6.341140793964902,6.303981871377879,0,2,0,0,0,-9,0,-927.0989615497734,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.15,57.8,6,1,0,1,10,4,1,490,0,0,0 +3118,3843,6974,6972,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,4,8.047356621303415,8.016656396399876,0,2,0,-9,36,0,-7,-44.24362623870593,0,0,0,62,3,4,1,2,2,2019,1,1,16,5,33,37,15,1,5,1,0,8.130320912755979,8.130320912755979,0,0,0,0,0,0,0,1,1,0,0,0,4.235546843362156,3,30.64,62.88,2,1,0,1,10,4,1,490,0,0,0 +3119,3844,6975,-9,6978,6976,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.2883593175223,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,1,849.75,0,0,0 +3119,3844,6976,6978,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,5,9.066028328499669,8.649612234787623,0,2,0,-9,15,0,5,-31.62017420123653,0,0,0,37,1,4,1,3,3,2019,1,1,9,0,42,37,15,1,0,1,0,21.97274352391333,21.97274352391333,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.24,63.73,4,3,0,0,9,4,1,849.75,0,0,0 +3119,3844,6977,-9,6978,6976,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.078791818609,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,1,849.75,0,0,0 +3119,3844,6978,6976,-9,-9,1,1,0,37,1,0,2,0,1,-9,1,1,0,4,7.559594375727276,7.688633958539937,0,2,0,-9,15,0,-5,-25.73632972416569,0,0,1,42,1,5,1,1,1,2019,1,2,8,0,20,15,15,1,0,1,0,12.78456463753353,12.78456463753353,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,6,1,0,0,9,4,1,849.75,0,0,0 +3120,3845,6979,6980,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,1,71.00428445328066,0,0,0,74,2,2,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.546131879513164,0,0,0,55.36,54.24,6,1,0,0,6,4,1,517.5,0,0,0 +3120,3845,6980,6979,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,2,8.436303957967926,8.938698331885387,8.162955029690005,1,0,-9,7,0,-1,44.57088201574896,0,0,0,75,2,4,3,3,2,2019,4,1,8,0,16,11,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.234421570726179,7.5929687503166,0,0,59.84,43.22,6,1,0,0,6,4,1,517.5,0,0,0 +3121,3846,6981,-9,-9,-9,2,1,0,23,3,0,0,0,2,-9,2,1,0,3,8.324156169001734,8.132787375372979,0,3,0,0,0,-9,0,-1007.93916892706,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,31,12,39,38,15,1,12,-9,1,12.91133559797565,12.91133559797565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.04,67.41,3,1,0,1,12,4,0,1132,0,0,0 +3122,3847,6982,6983,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,3,8.556771634464818,8.696852208348602,0,1,0,-9,29,0,-1,41.08708331242187,0,0,0,52,1,4,1,2,1,2019,1,2,8,1,20,20,15,1,1,1,0,38.55042133243604,38.55042133243604,0,0,0,0,0,0,0,0,0,0,4.218940776636049,0,0,0,55.93,49.95,6,1,0,0,4,5,1,925,0,0,0 +3122,3847,6983,6982,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.786096261993452,8.599457201801602,0,1,0,-9,29,0,1,10.75070869042469,0,0,0,51,1,3,1,1,2,2019,1,1,8,1,40,40,15,1,1,1,0,15.03837270733606,15.03837270733606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,5,1,0,0,4,5,1,925,0,0,0 +3122,3848,6984,-9,6982,6983,3,1,0,18,2,0,0,0,2,1,2,1,0,5,7.794947333838767,7.474203313260306,0,3,0,0,0,-9,0,-958.3894224267087,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,74,0,15,1,0,-9,1,3.497007953648421,3.497007953648421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,4,3,1,788,0,0,0 +3123,3849,6985,-9,6986,6987,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.211290216778,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,484.3333333333333,0,0,0 +3123,3849,6986,6987,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,4,7.726190853234932,7.855881593049514,0,2,0,-9,10,0,0,-113.3715837792771,0,0,0,50,2,5,1,-9,-9,2019,1,1,12,2,27,17,15,1,2,1,0,10.51220337897995,10.51220337897995,0,0,0,0,0,0,0,1,1,0,.4594048305250488,0,0,0,46.99,58.02,6,1,0,0,12,4,1,484.3333333333333,0,0,0 +3123,3849,6987,6986,-9,-9,1,1,1,50,1,0,2,0,2,-9,1,1,0,5,8.617482400159663,8.527095772879798,0,2,0,-9,10,0,0,52.01969976603265,0,0,0,50,1,4,1,2,2,2019,1,2,7,0,38,42,15,1,0,1,0,16.27297252485402,16.27297252485402,0,0,0,0,0,0,0,1,1,0,6.847601015816546,0,0,0,57.06,57.76,7,1,0,0,12,4,1,484.3333333333333,0,0,0 +3124,3850,6988,-9,6990,6989,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1010.305413945453,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,5,1,317.6666666666667,0,0,0 +3124,3850,6989,6990,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,4,8.824984195979699,8.805569836889545,0,2,0,-9,5,0,3,-61.17346896901851,0,0,0,35,1,4,1,2,2,2019,1,2,10,0,12,42,15,1,0,1,0,66.62957401167264,66.62957401167264,0,0,0,0,0,0,0,1,1,0,4.277257676079378,0,0,0,54.2,57.49,5,1,0,0,2,5,1,317.6666666666667,0,0,0 +3124,3850,6990,6989,-9,-9,2,1,0,35,1,1,1,0,1,-9,5,1,0,4,8.457648902017363,8.74311431963209,0,2,0,-9,5,0,-3,-28.53736583254448,0,0,1,38,2,4,1,-9,-9,2019,1,1,7,0,75,40,15,1,0,1,0,9.275275172714124,9.275275172714124,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,2,5,1,317.6666666666667,0,0,0 +3125,3851,6991,-9,-9,-9,1,1,0,36,3,0,0,0,1,-9,6,3,0,3,0,0,0,3,0,-9,0,-9,0,-990.5120090379033,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.7,56.16,6,1,0,0,8,1,1,1010,0,0,0 +3126,3852,6992,6993,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,6.859949880885708,6.791087546281354,1,0,-9,46,0,-6,64.9237138242048,0,0,0,72,2,2,3,3,-9,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9575870498771686,6.775728611399334,0,0,37.36,33.39,4,1,0,0,7,3,1,589.5,0,0,0 +3126,3852,6993,6992,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,7.216359887545727,7.653211199238153,1,0,-9,46,0,6,-106.6571041403555,0,0,0,66,2,2,3,3,3,2019,4,2,13,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.180736287359383,7.568754864798009,0,0,46.78,35.78,3,1,0,0,7,3,1,589.5,0,0,0 +3127,3853,6994,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,2,0,5.320927509853293,5.333997935526828,3,0,0,0,-9,0,-988.3856940907017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.843738868536355,4.986730889648554,0,0,64.54000000000001,21.73,6,1,0,0,11,2,1,527,0,0,0 +3128,3854,6995,-9,6998,6997,1,1,1,36,2,0,1,0,2,-9,2,1,0,3,8.615594921854793,8.703299394471784,0,3,0,0,0,-9,0,-916.2384516284304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,45,45,15,1,0,-9,1,9.019464787374549,9.019464787374549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.68,52.15,2,1,0,1,11,4,1,707.5,0,0,0 +3128,3854,6996,-9,-9,6995,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-879.1881422921946,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,707.5,0,0,0 +3128,3855,6997,6998,-9,-9,4,1,1,57,1,0,1,0,3,-9,2,1,0,5,8.329671951557415,8.532506578346458,0,2,0,-9,4,0,0,-175.7486940814641,0,0,0,57,3,3,1,-9,-9,2019,1,3,8,0,45,0,15,1,0,1,0,12.25937363175169,12.25937363175169,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,1,0,0,11,5,1,437,0,0,0 +3128,3855,6998,6997,-9,-9,3,1,0,57,1,0,1,0,3,-9,2,1,0,3,8.512488128482769,8.179941986405895,0,2,0,-9,4,0,0,27.10069356007164,0,0,0,57,3,5,1,-9,-9,2019,1,4,7,0,40,39,15,1,0,1,0,10.14971204107312,10.14971204107312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,41.92,2,1,0,0,11,5,1,437,0,0,0 +3129,3856,6999,7000,-9,-9,2,1,1,53,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,6,0,-3,1.323146366504552,0,0,0,56,1,3,1,3,3,2019,3,1,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,1,0,9,4,1,512,0,0,0 +3129,3856,7000,6999,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.472806894946379,8.538925186346152,0,1,0,-9,10,0,3,-79.40733953545814,0,0,0,53,2,4,3,-9,-9,2019,2,2,7,0,26,24,15,1,0,3,0,21.96772191505232,21.96772191505232,0,0,0,0,0,0,0,0,0,0,3.162041730084408,0,1.751068741744794,3,52,54.51,6,1,0,0,9,4,1,512,0,0,0 +3130,3857,7001,-9,7002,7003,2,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.702595539922,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,3,0,310.3333333333333,0,0,0 +3130,3857,7002,7003,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,5,7.07852423224805,7.140704415332366,0,2,0,-9,5,0,-7,27.10617983425197,0,0,1,37,2,5,1,2,2,2019,1,3,24,10,19,18,15,1,10,1,0,7.624768667510292,7.624768667510292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.46,64.34999999999999,4,1,0,1,4,3,0,310.3333333333333,0,0,0 +3130,3857,7003,7002,-9,-9,3,1,1,37,1,0,1,0,2,-9,2,1,0,5,7.824135221460348,7.675784904686982,0,2,0,-9,5,0,7,-46.24319637724746,-9,0,0,30,2,5,1,-9,-9,2019,1,1,14,3,39,0,15,1,3,1,0,7.838079341203113,7.838079341203113,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,4,1,0,0,4,3,0,310.3333333333333,0,0,0 +3131,3858,7004,-9,7005,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-929.8122462968075,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,5,1,0,0,8,1,0,1913,0,0,0 +3131,3858,7005,-9,-9,-9,1,1,0,37,2,0,3,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1036.911700078385,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,56,5,1,1,1,8,1,0,1913,0,0,0 +3132,3859,7006,7007,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,8,0,0,0,0,61,2,4,3,-9,-9,2019,4,1,10,0,0,45,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,7,1,1,710,0,0,0 +3132,3859,7007,7006,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,41,0,-8,0,0,0,0,69,2,3,3,2,2,2019,4,2,20,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.652947430972965,0,0,0,46.9,53.95,5,1,0,0,7,1,1,710,0,0,0 +3133,3860,7008,-9,7011,7009,3,1,1,2,2,2,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.357153407968,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,2,1,0,948.75,0,0,0 +3133,3860,7009,7011,-9,-9,2,1,1,31,1,2,1,0,2,-9,3,3,0,2,0,0,0,2,0,-9,3,0,4,0,0,0,0,27,2,2,3,-9,-9,2019,4,1,30,12,0,30,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.96,46.59,2,1,1,1,2,1,0,948.75,0,0,0 +3133,3860,7010,-9,7011,7009,4,1,0,0,2,2,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-929.3830839962624,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,2,1,0,948.75,0,0,0 +3133,3860,7011,7009,-9,-9,1,1,0,27,1,2,1,0,2,1,6,3,0,2,0,0,0,2,0,-9,3,0,-4,0,-9,1,1,31,2,2,3,3,2,2019,4,2,18,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.91,56.41,4,1,0,1,2,1,0,948.75,0,0,0 +3134,3861,7012,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,3,8.103797876358499,7.913187750241875,0,3,0,-9,0,-9,0,-933.133791570446,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,35,0,15,1,0,-9,0,9.011780337874045,9.011780337874045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.01,44.96,4,3,0,0,8,4,1,403,0,0,0 +3135,3862,7013,7014,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.759764313600572,7.649337994168272,0,1,0,-9,7,0,-3,7.085009985438615,0,0,0,52,3,3,1,-9,-9,2019,1,1,12,0,27,27,15,1,0,1,0,10.92017754603583,10.92017754603583,0,0,0,0,0,0,0,0,0,0,0,0,14.2046616068496,3,34.13,61.39,6,1,0,0,12,4,0,303,0,0,0 +3135,3862,7014,7013,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,3,7.979784772158655,7.843633000908149,0,1,0,-9,7,0,3,124.8681702880297,0,0,0,49,2,4,1,2,3,2019,1,2,10,0,37,37,15,1,0,1,0,11.06224894342398,11.06224894342398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.46,39.43,4,1,0,0,12,4,0,303,0,0,0 +3136,3863,7015,-9,7016,7018,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.779564951508,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,2,0,0,8,5,1,1065.5,0,0,0 +3136,3863,7016,7018,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.968771859507086,8.854239968615452,0,2,0,-9,19,0,4,163.6519776510125,0,0,0,44,1,4,1,2,2,2019,1,2,16,4,60,64,15,1,4,1,0,12.26692416252442,12.26692416252442,0,0,0,0,0,0,0,0,0,0,4.130629661352016,0,0,0,34.48,61.03,5,1,0,0,8,5,1,1065.5,0,0,0 +3136,3863,7017,-9,7016,7018,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.901576349007,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,2,0,0,8,5,1,1065.5,0,0,0 +3136,3863,7018,7016,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,9.859092387086465,9.563570163067912,0,2,0,-9,21,0,-4,64.12146694063148,0,0,0,48,1,4,1,2,1,2019,1,1,9,0,50,60,15,1,0,1,0,39.53776884933426,39.53776884933426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,52.44,4,2,0,0,8,5,1,1065.5,0,0,0 +3137,3864,7019,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-1017.730979444825,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,102.7145387663655,0,0,0,1,1,0,0,0,0,0,24.91,28.32,5,1,0,0,13,1,1,3740,0,0,0 +3138,3865,7020,7021,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,4,7.848549873332263,8.053458502411818,0,2,0,-9,10,0,-10,-22.22622831965322,0,0,1,49,1,4,1,2,2,2019,1,2,7,0,21,21,15,1,0,1,0,15.49844072835182,15.49844072835182,0,0,0,0,0,0,0,0,0,0,2.868016359050837,0,0,0,57.16,56.15,2,1,0,0,2,5,1,916,0,0,0 +3138,3865,7021,7020,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,4,9.362610903552548,9.281659176951869,0,2,0,-9,10,0,10,-189.6901801124072,0,0,0,39,2,4,1,-9,-9,2019,1,1,15,3,50,45,15,1,3,1,0,28.40262651483805,28.40262651483805,0,0,0,0,0,0,0,0,0,0,1.535487328081057,0,0,0,49.6,52.84,6,1,0,0,2,5,1,916,0,0,0 +3138,3865,7022,-9,7020,7021,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.8893739670139,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,2,5,1,916,0,0,0 +3139,3866,7023,-9,-9,-9,2,1,0,40,2,0,0,0,1,-9,1,1,0,4,7.319383930569457,7.44818701049019,0,1,0,-9,4,0,4,48.30334126952593,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,1,12,4,32,36,15,1,4,-9,0,5.087028705579747,5.087028705579747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,6,1,0,0,11,2,1,807,0,0,0 +3140,3867,7024,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-1037.557648688534,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.76,52.99,6,2,0,1,8,1,1,165,0,0,0 +3141,3868,7025,7026,-9,-9,2,1,0,28,1,0,0,0,1,0,7,2,0,4,5.947312215266957,5.837780238668062,0,1,0,-9,2,0,-4,49.41060580083018,-9,1,1,32,1,5,1,-9,-9,2019,3,1,2,0,5,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,2,0,0,9,4,1,565.5,0,0,0 +3141,3868,7026,7025,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,5,8.921356217687824,8.87343570604491,0,1,0,-9,2,0,4,-63.65702379658758,0,0,0,28,1,4,2,2,2,2019,2,2,6,0,39,39,15,1,0,2,0,21.0091776709942,21.0091776709942,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,9,4,1,565.5,0,0,0 +3142,3869,7027,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,1,1,0,5,7.025589614287739,7.34449786306983,0,3,0,0,0,-9,0,-952.9825575526423,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,17,14,15,1,0,-9,0,8.886771858245666,8.886771858245666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,10,2,1,910,0,0,0 +3143,3870,7028,7031,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.237286306998174,8.06481954942007,0,2,0,-9,16,0,0,35.67041079022236,0,0,0,43,1,4,1,2,2,2019,1,2,16,4,40,37,15,1,4,1,0,9.586777282061821,9.586777282061821,0,0,0,0,0,0,0,1,1,0,2.053986721235213,0,0,0,36.62,58.96,5,1,0,0,10,4,1,1419.5,0,0,0 +3143,3870,7029,-9,7031,7028,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-811.3030610242104,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,1,1419.5,0,0,0 +3143,3870,7030,-9,7031,7028,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.1129041613159,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,10,4,1,1419.5,0,0,0 +3143,3870,7031,7028,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,7.984150479666861,7.931070469926245,0,2,0,-9,10,0,0,-16.15161732166007,0,0,1,43,1,4,1,-9,-9,2019,1,1,10,0,27,30,15,1,0,1,0,12.34156517191217,12.34156517191217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,10,4,1,1419.5,0,0,0 +3144,3871,7032,-9,-9,-9,1,1,0,44,3,0,1,0,3,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1027.387474208658,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.64,39.37,4,1,0,0,6,1,1,630,0,0,0 +3145,3872,7033,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,2,1,0,3,8.005411392211457,8.237758797455109,0,4,0,0,0,-9,0,-968.298762500372,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,21,21,15,1,1,-9,0,18.34334565156952,18.34334565156952,0,0,0,0,0,0,0,1,1,0,5.533465081433016,0,0,0,51.02,52.22,5,1,0,0,6,3,1,1049.5,0,0,0 +3145,3872,7034,-9,7033,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1003.157901004884,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,6,3,1,1049.5,0,0,0 +3146,3873,7035,7036,-9,-9,1,1,1,44,1,0,3,0,1,-9,1,1,0,4,7.535679782173205,7.911347614570162,0,2,0,-9,24,0,-3,70.26845064547967,0,0,0,47,1,3,3,2,2,2019,2,2,10,0,35,37,15,1,0,3,0,8.688224449347874,8.688224449347874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,3,0,0,5,2,1,566.25,0,0,0 +3146,3873,7036,7035,-9,-9,2,1,0,47,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,24,0,3,-136.5641549827181,0,0,0,44,1,4,1,3,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55.37,40.83,5,3,0,0,5,2,1,566.25,0,0,0 +3146,3873,7037,-9,7036,7035,5,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-902.8119981084333,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,5,2,1,566.25,0,0,0 +3146,3873,7038,-9,7036,7035,4,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.68292280663,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,5,2,1,566.25,0,0,0 +3146,3874,7039,-9,7036,7035,3,1,0,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-870.8600818087868,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.805432007705465,0,0,0,57.16,56.15,6,3,0,0,5,2,1,1059,0,0,0 +3147,3875,7040,7041,-9,-9,1,1,0,42,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,27,0,-4,25.15185319718312,0,0,1,46,2,3,1,3,3,2019,3,2,30,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.207197714039014,0,12.98541908232135,3,29.26,31.59,1,3,0,0,8,5,1,722,0,0,0 +3147,3875,7041,7040,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,3,9.003870600925957,9.35627664412586,0,2,0,-9,27,0,4,62.75982348917849,0,0,0,42,2,2,3,3,2,2019,2,1,18,6,80,120,15,1,6,3,0,14.7078732812564,14.7078732812564,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.66,49.04,4,3,0,0,8,5,1,722,0,0,0 +3147,3876,7042,-9,7040,7041,3,1,0,23,2,0,1,0,1,-9,1,1,0,5,8.706145555891878,8.787826421777256,0,3,0,0,0,-9,0,-903.9827605554721,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,38,16,15,1,0,-9,1,21.50476006569511,21.50476006569511,0,0,0,0,0,0,0,1,1,0,2.960865895134937,0,0,0,57.06,57.76,6,3,0,0,8,5,1,3301,0,0,0 +3147,3877,7043,-9,7040,7041,4,1,1,18,2,0,1,1,2,0,7,2,0,4,6.004888040656738,6.032167924705672,0,3,0,0,0,-9,0,-953.6998888171207,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,7,3,0,0,8,5,1,179,0,0,0 +3148,3878,7044,-9,7045,7047,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1025.909027043903,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,1,0,0,5,4,1,1074.5,0,0,0 +3148,3878,7045,7047,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,4,7.314789704133777,7.274208469742763,0,2,0,-9,18,0,2,39.65234153923996,0,0,0,49,2,4,1,3,3,2019,1,1,19,7,16,26,15,1,7,1,0,9.20025103102317,9.20025103102317,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.54,59.6,2,1,0,0,5,4,1,1074.5,0,0,0 +3148,3878,7046,-9,7045,7047,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.709141258591,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,5,4,1,1074.5,0,0,0 +3148,3878,7047,7045,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,4,8.284934740446545,8.887178664061633,0,2,0,-9,18,0,-2,-4.465448843335531,0,0,0,51,2,4,1,2,3,2019,1,2,19,7,50,50,15,1,7,1,0,11.92648514333778,11.92648514333778,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.45,62.92,3,1,0,0,5,4,1,1074.5,0,0,0 +3149,3879,7048,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1012.840015432494,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,0,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.2,30.93,3,4,0,0,8,1,0,1093,0,0,0 +3149,3880,7049,-9,-9,-9,2,1,0,56,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1062.140048685337,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.6,49.54,3,4,0,0,8,1,0,298,0,0,0 +3150,3881,7050,7053,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,1,9.003182146716322,9.011619766743042,0,2,0,-9,10,0,-1,-63.236033766757,0,0,0,37,1,5,1,2,3,2019,1,1,16,5,38,40,15,1,5,1,0,27.05281142449979,27.05281142449979,0,0,0,0,0,0,0,1,1,0,3.716084652276331,0,0,0,44.61,32.45,5,1,0,0,5,5,1,427.75,0,0,0 +3150,3881,7051,-9,7053,7050,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.8900066013737,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,427.75,0,0,0 +3150,3881,7052,-9,7053,7050,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.11565168553,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,5,1,427.75,0,0,0 +3150,3881,7053,7050,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,5,8.547379628238568,8.541459158046159,0,2,0,-9,10,0,1,-74.60664456427472,0,0,1,36,1,1,1,3,3,2019,1,2,11,1,30,39,15,1,1,1,0,14.06707087078138,14.06707087078138,0,0,0,0,0,0,0,1,1,0,2.959164419042019,0,0,0,55.83,54.24,6,1,0,0,5,5,1,427.75,0,0,0 +3151,3882,7054,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1016.429899717108,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.630883644731655,0,0,0,55.93,39.42,6,1,0,0,4,1,0,128,0,0,0 +3152,3883,7055,7056,-9,-9,2,1,0,60,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,10,0,1,15.07945523350415,0,0,0,59,2,3,1,2,2,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.365943486483809,0,20.42167987430678,3,55.12,42.1,4,1,0,0,11,5,1,1254,0,0,0 +3152,3883,7056,7055,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.879601454738554,9.092951129602215,0,1,0,-9,10,0,-1,58.2499209921672,0,0,0,60,2,3,3,2,2,2019,2,2,6,0,49,53,15,1,0,3,0,19.49536529042873,19.49536529042873,0,0,0,0,0,0,0,1,1,0,4.366726788542087,0,0,0,54.96,53.17,5,1,0,0,11,5,1,1254,0,0,0 +3152,3884,7057,-9,7055,7056,3,1,1,34,2,0,0,0,2,-9,2,1,0,3,6.742902210602463,6.649626730444764,0,3,0,0,0,-9,0,-984.6239306268325,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,15,16,15,1,0,-9,1,8.146672189769564,8.146672189769564,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,48.57,7,1,0,0,11,2,1,399,0,0,0 +3153,3885,7058,7059,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,6.186940821425962,6.560008742022228,1,0,-9,46,0,-3,22.69400433618362,0,0,0,69,2,5,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.086312781644143,6.851453984125801,0,0,43.42,62.33,5,1,0,0,5,2,1,338,0,0,0 +3153,3885,7059,7058,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,5,6.709225876891781,7.200208133643914,5.653185548883176,1,0,-9,46,0,3,-33.51761222105301,0,0,0,66,2,4,3,2,2,2019,4,2,7,0,48,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.537981319245656,5.847887050486252,0,0,63.64,43.84,1,1,0,0,5,2,1,338,0,0,0 +3154,3886,7060,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,4,8.402553984798859,8.890148609195238,6.520251129660489,3,0,0,0,-9,0,-1042.721775747004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,51,51,15,1,0,-9,0,9.985084318084839,9.985084318084839,0,0,0,0,0,0,0,0,0,0,7.255234461929486,6.54305966339674,0,0,57.16,56.15,6,1,0,0,7,5,1,3224,0,0,0 +3155,3887,7061,7063,-9,-9,1,1,0,48,1,0,1,0,1,-9,1,1,0,4,0,0,0,2,0,-9,8,0,-3,-6.644259465830597,0,0,0,51,1,4,1,1,1,2019,1,2,6,0,10,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,818,0,0,0 +3155,3887,7062,-9,7061,7063,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.6940968759335,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,818,0,0,0 +3155,3887,7063,7061,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,4,9.638851732129462,9.567244722721963,0,2,0,-9,8,0,3,18.79957924153207,0,0,0,48,1,4,1,-9,-9,2019,1,1,10,0,43,50,15,1,0,1,0,35.88802617251691,35.88802617251691,0,0,0,0,0,0,0,1,1,0,6.268653375389313,0,0,0,49.86,55.31,6,1,0,0,7,5,1,818,0,0,0 +3156,3888,7064,7065,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,4,0,6.389621009483976,5.72150688394052,1,0,-9,56,0,-1,94.44648774148733,0,0,0,78,1,4,3,3,2,2019,4,1,6,0,0,15,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.342880954814842,5.916757220055133,0,0,56.54,28.84,6,1,0,0,5,4,1,630.5,0,0,0 +3156,3888,7065,7064,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,4,0,8.510691804647625,8.469835086658547,1,0,-9,56,0,1,-190.988669077438,0,0,0,77,1,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7083101118715,8.206414984172486,.2424948841951264,1,57.73,54.53,7,1,0,0,5,4,1,630.5,0,0,0 +3157,3889,7066,7067,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,4,8.216096267701538,8.01141699223291,0,1,0,-9,2,0,-1,48.20729492085837,0,1,1,24,3,4,1,1,-9,2019,1,2,7,0,38,40,15,1,0,1,0,9.741038748394711,9.741038748394711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.59,55.42,6,1,0,0,10,5,0,132,0,0,0 +3157,3889,7067,7066,-9,-9,2,1,1,24,1,0,0,0,3,-9,2,1,0,4,8.320275147242294,8.214841662821778,0,1,0,-9,2,0,1,-53.73669369389297,0,1,0,23,2,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,10.87415379191638,10.87415379191638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,10,5,0,132,0,0,0 +3158,3890,7068,7069,-9,-9,1,1,0,39,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,3,0,5,0,0,0,1,34,2,3,3,2,3,2019,4,3,27,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.95,30.47,1,1,1,1,4,1,0,2666,0,0,0 +3158,3890,7069,7068,-9,-9,3,1,1,34,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,3,0,-5,0,0,0,0,39,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.27982613824743,3,57.92,51.82,7,1,1,1,4,1,0,2666,0,0,0 +3158,3891,7070,-9,7068,7069,2,1,1,21,2,0,0,0,2,-9,11,3,0,4,7.868164745456998,8.181718898674982,0,3,0,0,0,-9,0,-1025.011632466695,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,39,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,1,1,0,0,4,4,0,419,0,0,0 +3159,3892,7071,7072,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,7.562815649909259,7.837692573292808,1,0,-9,51,0,2,119.3271406711431,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.474362950295582,7.789039945519058,2.102424522756819,3,57.16,56.15,2,1,0,0,10,3,1,172,0,0,0 +3159,3892,7072,7071,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,7.445673063214749,7.0797512211855,1,0,-9,51,0,-2,-46.22996170104105,0,0,0,72,3,4,3,3,-9,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.74399982110898,6.970463723511497,11.96346236778839,3,45.72,55.84,6,1,0,0,10,3,1,172,0,0,0 +3160,3893,7073,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,4,3,0,4,0,8.334302136180357,8.186794915929717,3,0,0,0,-9,0,-859.592897259656,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.229366411387208,8.032645858106868,0,0,38.34,62.12,5,1,0,1,8,4,1,3792,0,0,0 +3161,3894,7074,7075,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,2,0,0,0,1,0,-9,7,0,-6,0,0,0,0,54,2,2,3,-9,-9,2019,2,2,8,0,25,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.26,34.93,4,1,0,0,9,1,0,813.5,0,0,0 +3161,3894,7075,7074,-9,-9,2,1,0,54,1,0,0,0,2,-9,10,3,0,2,0,0,0,1,0,-9,9,0,6,0,0,0,0,48,2,2,1,-9,-9,2019,3,1,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,78.28697100114384,3,22.8,47.99,3,1,0,0,9,1,0,813.5,0,0,0 +3162,3895,7076,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-912.1564468392443,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,8,1,0,413,0,0,0 +3163,3896,7077,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,3,8.374517779145835,8.240457643023765,0,3,0,-9,0,1,0,-1041.898719150937,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,0,-9,0,11.25222737872857,11.25222737872857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,12,5,1,158,0,0,0 +3163,3897,7078,-9,7077,-9,4,1,0,18,2,0,0,0,2,1,2,1,0,4,7.403371545780724,7.508434046020739,0,3,0,0,0,-9,0,-1005.418140949953,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,16,3,0,0,15,1,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.5357633716468907,0,0,0,16.12,60.08,4,1,0,0,12,3,1,804,0,0,0 +3164,3898,7079,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,3,7.435305846363977,7.188628771933424,0,3,0,0,0,-9,0,-1008.758695157543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,28,30,15,1,0,-9,0,7.480011716920673,7.480011716920673,0,0,0,0,0,0,0,1,1,0,1.715311606221519,0,0,0,54.37,54.8,6,4,0,0,8,3,1,661,0,0,0 +3165,3899,7080,7081,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,3,4.469569993624583,4.301742655948304,0,1,0,-9,6,0,2,-15.45748096976203,0,0,0,50,2,3,3,3,3,2019,2,2,14,2,42,40,15,1,2,3,0,.2278628139535171,.2278628139535171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,47.71,5,1,0,0,13,2,1,730,0,0,0 +3165,3899,7081,7080,-9,-9,2,1,0,50,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,6,0,-2,-86.54351837698995,0,0,0,52,2,3,1,3,3,2019,3,1,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,31.72,5,1,0,0,13,2,1,730,0,0,0 +3166,3900,7082,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,2,8.323412466629325,8.467477075546487,0,3,0,0,0,-9,0,-927.8012825302091,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,38,38,15,1,6,-9,0,15.8946855946267,15.8946855946267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.85,46.15,2,1,0,0,9,5,0,1098,0,0,0 +3167,3901,7083,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,3,8.14186264867479,8.232637376227762,3.727799537239546,3,0,0,0,-9,0,-1048.077132382595,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,11.67971103033075,11.67971103033075,0,0,0,0,0,0,0,1,1,0,4.293748587844505,3.814035791583919,0,0,54.37,54.8,6,1,0,0,1,4,1,208,0,0,0 +3168,3902,7084,7085,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,6.653758400277869,6.532573817364598,1,0,-9,46,0,-4,-16.29350387920197,0,0,0,68,1,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.653660833482913,6.539091033397901,3.688790743433992,2,57.33,53.46,6,3,0,0,8,3,1,1836.5,0,0,0 +3168,3902,7085,7084,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,8.289788131868027,7.747322097063624,1,0,-9,6,0,4,19.65598744179418,-9,0,0,64,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3858514334781878,7.915299546967437,0,0,53,47,5,3,0,0,8,3,1,1836.5,0,0,0 +3169,3903,7086,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,2,1,0,3,7.950930352549202,7.990681583873311,4.193348830628865,3,0,0,0,-9,0,-912.1338826235022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,39,15,1,1,-9,0,7.464996400223502,7.464996400223502,0,0,0,0,0,0,0,0,0,0,0,4.786293825078609,0,0,50,49,5,1,0,0,13,4,0,168,0,0,0 +3170,3904,7087,7088,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,5.472827356263285,5.398009508967834,1,0,-9,7,0,5,-18.06171405874749,0,0,0,69,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.473696394004165,5.54866475190979,0,0,56.99,32.56,6,1,0,0,9,2,1,778,0,0,0 +3170,3904,7088,7087,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-5,-37.6505711351717,0,0,0,74,3,2,3,3,3,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,1,0,1.287568001861252,0,0,0,0,1,1,0,1.215717485469989,0,0,0,52.71,36.71,6,1,0,0,9,2,1,778,0,0,0 +3171,3905,7089,7090,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,4,5.295681363205084,5.574958298559401,0,2,0,-9,19,0,-3,-15.37439628469187,0,0,1,41,2,4,1,3,3,2019,1,2,11,0,48,32,15,1,1,1,0,.5222535439002802,.5222535439002802,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,2,4,1,806.75,0,0,0 +3171,3905,7090,7089,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,8.795314136566939,8.755913252741111,0,2,0,-9,7,0,3,106.0073755709745,0,0,0,38,2,4,1,-9,-9,2019,1,1,9,0,43,42,15,1,1,1,0,15.95541501811115,15.95541501811115,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,2,4,1,806.75,0,0,0 +3171,3905,7091,-9,7089,7090,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1166.102726857892,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,4,1,806.75,0,0,0 +3171,3905,7092,-9,7089,7090,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.570402339982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,4,1,806.75,0,0,0 +3172,3906,7093,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,2,1,0,2,8.649261359271254,8.398980909988433,0,3,0,0,0,-9,0,-1044.567340098761,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,43,39,15,1,0,-9,0,14.52279482883615,14.52279482883615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,41.87,2,1,0,0,13,5,0,698,0,0,0 +3173,3907,7094,7095,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,7.490462510972461,7.851836990591867,1,0,-9,46,0,3,-102.8543605787853,0,0,0,63,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.024082459188399,7.406984229356879,0,0,60.12,54.8,6,1,0,0,2,3,1,464.5,0,0,0 +3173,3907,7095,7094,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,6.055539265081233,6.119098553458588,1,0,-9,46,0,-3,3.021745420292414,0,0,0,66,1,4,3,2,2,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.974130809808599,5.958531774668783,0,0,52.31,58.29,7,1,0,0,2,3,1,464.5,0,0,0 +3174,3908,7096,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,4,0,6.090491606578975,6.35769859847419,3,0,0,0,-9,0,-967.7844527878506,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.273062731576849,5.846093331951352,0,0,54.79,55.86,6,1,0,0,10,2,1,1776,0,0,0 +3175,3909,7097,7098,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,1,0,6.258318474652209,6.48100973765307,1,0,-9,7,0,7,24.27404007798965,0,0,0,66,2,1,1,3,3,2019,3,2,24,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.243431840502885,6.275970926173158,0,0,35.35,46.35,2,1,0,0,11,3,0,262.5,0,0,0 +3175,3909,7098,7097,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,1,7.772293194467776,8.362611705219644,6.569198871558386,1,0,-9,7,0,-7,82.69906369201665,0,0,0,73,1,1,3,2,2,2019,2,1,6,0,25,35,15,1,0,4,0,11.57422563097942,11.57422563097942,1,0,0,0,0,0,0,1,1,0,6.493218400465198,6.944244248558705,0,0,59.21,14.92,6,1,0,0,11,3,0,262.5,0,0,0 +3176,3910,7099,7100,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,2,7.281487221462353,7.235436114276864,0,1,0,-9,37,0,-5,-33.53545616552879,0,0,0,59,3,2,1,3,3,2019,1,1,21,7,32,13,15,1,7,1,0,5.76168158956999,5.76168158956999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.2,50.05,6,1,0,0,13,5,1,432,0,0,0 +3176,3910,7100,7099,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,2,8.932700756804792,8.777695262257454,0,1,0,-9,37,0,5,-75.67263590384886,0,0,0,54,3,2,1,3,3,2019,1,2,7,0,12,16,15,1,0,1,0,59.56402402246519,59.56402402246519,0,0,0,0,0,0,0,0,0,0,3.7066136606294,0,0,0,58.56,46.45,6,1,0,0,13,5,1,432,0,0,0 +3177,3911,7101,-9,7103,7102,5,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.232129560429,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,3,1,965.75,0,0,0 +3177,3911,7102,7103,-9,-9,1,1,1,44,1,1,2,0,1,-9,2,1,0,3,7.855809724577787,8.026588761039811,0,2,0,-9,5,0,15,60.49415829073496,0,0,0,29,1,4,3,2,3,2019,2,4,9,0,40,16,15,1,0,3,0,9.302872951732668,9.302872951732668,0,0,0,0,0,0,0,1,1,0,.3970082156630385,0,10.96502493802964,3,58.32,50.22,6,3,0,0,4,3,1,965.75,0,0,0 +3177,3911,7103,7102,-9,-9,4,1,0,29,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-15,113.9973086944276,0,1,1,44,1,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.449028428749309,3,55.19,54.26,4,3,0,0,4,3,1,965.75,0,0,0 +3177,3911,7104,-9,7103,7102,6,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.3019107400986,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,3,1,965.75,0,0,0 +3178,3912,7105,-9,7107,7106,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.9412659269141,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,836,0,0,0 +3178,3912,7106,7107,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,2,8.857772143420917,9.433552866171219,0,2,0,-9,24,0,2,79.54933754338522,0,0,0,44,2,3,1,-9,2,2019,1,2,12,0,40,42,15,1,0,1,0,20.33348590033237,20.33348590033237,0,0,0,0,0,0,0,1,1,0,0,0,12.37870528558896,3,44.83,41.9,4,1,0,0,7,5,1,836,0,0,0 +3178,3912,7107,7106,-9,-9,2,1,0,44,1,0,2,0,2,-9,1,1,0,3,8.102317416418147,8.287597237153459,0,2,0,-9,22,0,-2,-34.78272207286194,0,0,1,46,1,2,1,3,2,2019,1,1,12,0,30,25,15,1,0,1,0,11.4530083610392,11.4530083610392,0,0,0,0,0,0,0,1,1,0,0,0,9.796426302013622,3,46.89,54.32,4,1,0,0,7,5,1,836,0,0,0 +3179,3913,7108,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,5.455296159216526,4.799377816262052,3,0,0,0,-9,0,-1003.252351168653,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.448782497531349,5.160729149911669,0,0,62.84,46.85,6,1,0,0,4,2,0,438,0,0,0 +3180,3914,7109,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,4,8.492827012333326,8.360608041882312,0,3,0,0,0,-9,0,-1047.307518441635,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,13.73761579634501,13.73761579634501,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,5,1,378,0,0,0 +3181,3915,7110,7111,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,3,8.831869766192732,8.880036101339806,0,2,0,-9,20,0,-18,39.73866314850364,0,0,0,64,3,4,1,3,3,2019,1,1,7,0,72,40,15,1,0,1,0,11.68550672203406,11.68550672203406,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,4,0,0,8,5,1,596.3333333333334,0,0,0 +3181,3915,7111,7110,-9,-9,1,1,1,64,1,0,2,0,3,-9,2,1,0,4,9.183206676964197,8.625252589396696,0,2,0,-9,20,0,18,-80.96501950110998,0,0,0,46,1,3,1,3,3,2019,1,2,10,1,38,37,15,1,1,1,0,21.12082213742928,21.12082213742928,0,0,0,0,0,0,0,1,1,0,7.454015365244784,0,0,0,50.11,54.04,6,4,0,0,8,5,1,596.3333333333334,0,0,0 +3181,3915,7112,-9,7110,7111,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.785548050142,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,5,1,596.3333333333334,0,0,0 +3182,3916,7113,7114,-9,-9,1,1,1,58,1,0,1,0,2,-9,1,1,0,4,8.637801657391902,8.542758643247952,0,2,0,-9,10,0,2,-84.02519058217797,0,0,0,56,2,4,1,3,3,2019,1,2,12,1,65,50,15,1,1,1,0,6.770241132040015,6.770241132040015,0,0,0,0,0,0,0,1,1,0,1.732949838998004,0,0,0,50.11,54.04,5,1,0,0,13,5,0,583.3333333333334,0,0,0 +3182,3916,7114,7113,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,4,8.922393753397607,8.768941727125691,0,2,0,-9,10,0,-2,-69.31977073395603,0,0,0,58,2,4,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,23.77457794496764,23.77457794496764,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,47.02,5,1,0,0,13,5,0,583.3333333333334,0,0,0 +3182,3916,7115,-9,7114,7113,4,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-909.9879454488751,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,5,0,583.3333333333334,0,0,0 +3182,3917,7116,-9,7114,7113,3,1,1,23,2,0,1,0,2,-9,2,1,0,3,7.5650114633485,7.944792817954212,0,3,0,0,0,-9,0,-892.2815625457009,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,40,15,1,0,-9,1,6.968179277512842,6.968179277512842,0,0,0,0,0,0,0,1,1,0,.4262162871877486,0,0,0,54.96,53.17,5,1,0,0,13,3,0,356,0,0,0 +3183,3918,7117,-9,-9,-9,1,1,0,52,3,0,1,0,1,-9,2,1,0,4,8.235232711912953,8.523191915828427,0,4,0,0,0,-9,0,-1113.729813501113,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,50,15,1,0,-9,0,14.47283338770785,14.47283338770785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,4,1,0,0,5,3,1,767.5,0,0,0 +3183,3918,7118,-9,7117,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-984.2111002065916,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,6,1,0,0,5,3,1,767.5,0,0,0 +3183,3919,7119,-9,7117,-9,2,1,0,18,2,0,1,0,2,-9,2,1,0,4,7.700753986910342,7.562053879615963,0,3,0,0,0,-9,0,-1071.175091554667,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,29,0,15,1,3,-9,1,7.646621161465882,7.646621161465882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.13,63.81,6,1,0,0,5,3,1,243,0,0,0 +3184,3920,7120,7121,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,55,0,3,1.776348355371019,0,0,0,72,3,3,3,2,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,1,1,0,0,2,2,1,1348,0,0,0 +3184,3920,7121,7120,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,6.868660019938664,6.649940430352968,1,0,-9,55,0,-3,54.41342160638633,0,0,0,75,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.613982376235626,6.105192987974672,0,0,60.29,52.11,7,1,0,0,2,2,1,1348,0,0,0 +3185,3921,7122,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,2,8.138466581485268,8.647887112280062,6.46438719711983,4,0,0,0,-9,0,-1056.061684249133,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,37,30,15,1,6,-9,0,11.09463323479273,11.09463323479273,0,0,0,0,0,0,0,1,1,0,7.465502479774806,0,0,0,37.15,32.97,3,3,0,1,7,4,1,1239,0,0,0 +3185,3921,7123,-9,7122,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-908.3112616023104,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,7,4,1,1239,0,0,0 +3186,3922,7124,7125,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,4,8.546311070213457,8.684422636092876,0,2,0,-9,11,0,1,40.28060890447156,0,0,0,48,1,3,1,2,2,2019,1,1,8,0,36,32,15,1,0,1,0,21.77990154808979,21.77990154808979,0,0,0,0,0,0,0,0,0,0,4.312275868700707,0,0,0,52.31,58.29,5,1,0,0,7,5,1,1429.75,0,0,0 +3186,3922,7125,7124,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,3,9.448721490753215,9.300798922413419,0,2,0,-9,31,0,-1,-55.43431271521207,0,0,0,49,1,4,1,2,1,2019,1,2,5,1,40,35,15,1,1,1,0,40.67015400730244,40.67015400730244,0,0,0,0,0,0,0,0,0,0,2.031966684172159,0,0,0,51.13,50.73,4,1,0,0,7,5,1,1429.75,0,0,0 +3186,3922,7126,-9,7124,7125,5,1,0,16,2,0,2,1,2,-9,7,2,0,4,5.476200536826005,5.715701083226854,0,2,0,0,0,-9,0,-1024.164689529158,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.07454516112325,0,0,0,53.39,52.35,6,1,0,0,7,5,1,1429.75,0,0,0 +3186,3922,7127,-9,7124,7125,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.531873124057,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,1429.75,0,0,0 +3187,3923,7128,7129,-9,-9,2,1,1,66,1,0,0,0,3,-9,1,1,0,4,5.86784321711938,5.865145221778612,0,1,0,-9,21,0,3,69.27140195705711,0,0,0,63,2,3,1,3,3,2019,1,1,7,0,34,25,15,1,0,1,0,1.208658775560642,1.208658775560642,0,0,0,0,0,0,0,1,1,0,0,0,7.454232881504494,1,55.78,49.92,5,1,0,0,2,3,1,747.5,0,0,0 +3187,3923,7129,7128,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,3,7.861578127801129,7.944633800728162,0,1,0,-9,21,0,-3,-58.52536977654681,0,0,0,66,3,4,1,3,3,2019,1,2,7,0,43,38,15,1,0,1,0,6.323968708015058,6.323968708015058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.87,41.3,7,1,0,0,2,3,1,747.5,0,0,0 +3188,3924,7130,-9,-9,-9,1,1,0,43,2,0,2,0,2,-9,1,1,0,4,0,0,0,4,0,0,0,-9,0,-1072.989274316597,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.60874405919301,3,34.25,58.67,5,4,0,1,6,1,0,1078.333333333333,0,0,0 +3188,3924,7131,-9,7130,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.643741627608,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,6,1,0,1078.333333333333,0,0,0 +3188,3924,7132,-9,7130,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1065.277801028223,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,6,1,0,1078.333333333333,0,0,0 +3189,3925,7133,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,6.737193059635753,7.263131029221092,3,0,0,0,-9,0,-976.0337769175492,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.714008633493417,0,0,43.59,59.64,5,1,0,0,12,3,1,802,0,0,0 +3189,3926,7134,-9,7133,-9,2,1,1,48,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1018.320247883427,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.355264361349668,0,0,0,41.23,51.32,2,1,1,1,12,1,1,807,0,0,0 +3190,3927,7135,7136,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.859667692595161,7.689126837384935,1,0,-9,41,0,1,94.46076554153228,0,0,0,64,1,3,1,3,3,2019,3,1,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.909798582533584,7.94119249977808,0,0,58.86,35.57,6,1,0,0,6,4,1,768,0,0,0 +3190,3927,7136,7135,-9,-9,1,1,0,64,1,0,0,0,1,-9,2,1,0,3,8.018743866768791,8.133936888445307,0,1,0,-9,41,0,-1,196.7845817329598,0,0,0,65,2,4,3,3,3,2019,2,2,9,0,20,0,15,1,0,4,0,20.33484044102902,20.33484044102902,0,0,0,0,0,0,0,1,1,0,4.475353394225679,0,0,3,61.88,39,6,1,0,0,6,4,1,768,0,0,0 +3191,3928,7137,-9,7139,7140,1,1,0,39,3,0,1,0,2,-9,2,1,0,4,7.276638895394751,7.767386229018274,6.555628557103234,3,0,0,0,-9,0,-1008.203968791153,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,1,0,33,20,15,1,0,-9,1,5.611721275192474,5.611721275192474,0,0,0,0,0,0,0,1,1,0,6.68996683663821,0,0,0,62.49,55.09,7,1,0,0,12,3,1,1510,0,0,0 +3191,3928,7138,-9,7137,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1065.262220706961,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,3,1,1510,0,0,0 +3191,3929,7139,7140,-9,-9,3,1,0,68,1,0,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,1,-9,-1,42.47204649540725,-9,0,0,69,1,4,3,-9,-9,2019,4,4,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,5,0,0,12,3,1,1107.5,0,0,0 +3191,3929,7140,7139,-9,-9,4,1,1,69,1,0,1,0,1,-9,4,3,0,4,0,8.44599171545037,8.551421911446136,2,0,-9,1,-9,1,80.33598323192383,-9,0,0,68,2,3,3,-9,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.855794832737001,8.589420582824781,0,0,54.77,55.87,6,1,0,0,12,3,1,1107.5,0,0,0 +3192,3930,7141,-9,-9,-9,1,1,1,92,3,0,0,0,1,-9,4,3,0,1,0,5.882102215460952,6.054939599682957,3,0,0,0,-9,0,-1008.01656465769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.634089923254289,6.132575553531029,0,0,18.01,25.88,4,3,0,0,8,2,1,349,0,0,0 +3192,3931,7142,7143,-9,7141,2,1,0,62,1,0,0,0,2,-9,2,1,0,3,6.737883688768831,6.949304954492782,0,1,0,-9,9,0,-12,67.69859658950537,0,0,0,74,1,4,3,-9,1,2019,2,3,21,9,15,15,15,1,9,4,0,7.618349977709299,7.618349977709299,0,0,0,0,0,0,0,1,1,0,3.09565017789619,0,80.88015661827949,3,30.47,60.56,5,2,0,0,8,4,1,960,0,0,0 +3192,3931,7143,7142,-9,-9,3,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,8.562807901808272,8.682888992505134,1,0,-9,9,0,12,76.51812244823458,0,0,0,62,2,3,1,-9,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.319624659925731,0,9.395700706055672,3,57.16,56.15,6,3,0,0,8,4,1,960,0,0,0 +3193,3932,7144,7145,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,4,5.082991042391868,9.154019342007834,9.081857187939992,1,0,-9,30,0,11,-28.43281491411884,0,0,0,54,1,4,1,2,2,2019,3,2,6,0,1,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.733233694489584,9.050844848355538,0,0,57.16,56.15,7,1,0,0,9,5,1,854.5,0,0,0 +3193,3932,7145,7144,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,9.969888835507414,9.722471054038063,7.482449480430904,1,0,-9,31,0,-11,33.03309603798661,0,0,0,65,1,4,3,3,2,2019,2,1,7,0,50,60,15,1,0,4,0,38.94541719597714,38.94541719597714,0,0,0,0,0,0,0,1,1,0,4.892198068882911,7.599209226533407,2.563600924309423,3,51.24,58.84,6,1,0,0,9,5,1,854.5,0,0,0 +3193,3933,7146,-9,7145,7144,3,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.317583452916159,8.068930064016632,0,3,0,0,0,-9,0,-1051.739231181668,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,9,40,15,1,0,-9,1,45.7781434864961,45.7781434864961,0,0,0,0,0,0,0,1,1,0,3.824893432896042,0,0,0,58.15,52.91,6,1,0,0,9,4,1,74,0,0,0 +3193,3934,7147,-9,7145,7144,4,1,0,20,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1040.827448015589,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,6,1,0,0,9,1,1,848,0,0,0 +3194,3935,7148,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-929.1311184564465,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,20.62,4,1,0,0,1,1,0,1734,0,0,0 +3195,3936,7149,7151,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.99249356965227,7.937996062806298,0,2,0,-9,9,0,2,-69.40646584887413,0,0,0,45,2,3,1,2,2,2019,1,1,7,0,28,31,15,1,0,1,0,11.86021377648786,11.86021377648786,0,0,0,0,0,0,0,1,1,0,2.149966835329171,0,0,0,52.01,48.98,5,1,0,0,7,4,1,985.6666666666666,0,0,0 +3195,3936,7150,-9,7149,7151,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.5069667912981,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,985.6666666666666,0,0,0 +3195,3936,7151,7149,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,3,8.237884656289097,8.214155424847466,0,2,0,-9,9,0,-2,-104.3197387033067,0,0,0,47,2,3,1,2,1,2019,1,2,11,0,37,0,15,1,0,1,0,11.26017053864709,11.26017053864709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,7,4,1,985.6666666666666,0,0,0 +3195,3937,7152,-9,7149,7151,3,1,1,18,2,0,1,0,2,1,2,1,0,4,7.102931833276368,7.030581705482486,0,3,0,0,0,-9,0,-1030.458930503112,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,47,0,15,1,0,-9,1,2.412848115618875,2.412848115618875,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,7,2,1,422,0,0,0 +3196,3938,7153,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,2,0,5.997909570871934,6.031011443546274,3,0,-9,0,-9,0,-854.2525784821626,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,16.02314864619827,0,0,0,0,131.7145246193411,1,1,0,5.657074548957937,5.928674451943547,0,0,67.73999999999999,28.65,5,1,0,0,2,2,1,1463,0,0,0 +3196,3939,7154,-9,-9,7153,2,1,1,56,2,0,0,0,2,-9,2,1,0,3,7.927793600113224,8.037782281781283,5.965857629341545,3,0,-9,0,-9,0,-1054.409244745381,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,39,0,15,1,0,-9,1,8.407638915014992,8.407638915014992,0,0,0,0,0,0,0,1,1,0,3.408755803987247,6.134890256419922,2.308334267412298,3,60.3,46.58,6,1,0,0,2,4,1,747,0,0,0 +3197,3940,7155,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,3,6.914370168465981,6.757362044145845,0,3,0,0,0,-9,0,-1008.039497353799,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,16,16,15,1,4,-9,0,7.713611033316728,7.713611033316728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.75,60.63,3,1,0,0,5,2,1,233,0,0,0 +3198,3941,7156,7158,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,4,7.524243489213064,7.471164371104509,0,2,0,-9,18,0,-15,-14.27285757584642,0,0,0,67,2,3,3,1,1,2019,2,2,5,0,22,5,15,1,0,4,0,8.758910534890816,8.758910534890816,0,0,0,0,0,0,0,1,1,0,3.278385629527339,0,0,0,57.73,54.53,7,1,0,0,7,2,1,494.3333333333333,0,0,0 +3198,3941,7157,-9,7156,7158,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.539327158992,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,2,1,494.3333333333333,0,0,0 +3198,3941,7158,7156,-9,-9,2,1,1,67,1,0,1,0,2,-9,4,3,0,3,0,5.173975229283078,4.858704947675566,2,0,-9,18,0,15,56.5703165612623,0,0,0,52,1,4,1,2,2,2019,3,1,10,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.409300534132184,5.141104095246073,0,0,59.46,46.99,6,1,0,0,7,2,1,494.3333333333333,0,0,0 +3199,3942,7159,-9,7162,7160,2,1,0,20,2,0,2,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-986.1847880949747,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,12,1,1,179,0,0,0 +3199,3943,7160,7162,-9,-9,3,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.402192364481378,8.375714859028527,0,2,0,-9,6,0,4,12.16733774231736,0,0,0,38,2,3,1,-9,-9,2019,1,1,9,0,37,37,15,1,1,1,0,16.78787601577978,16.78787601577978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,12,4,1,709,0,0,0 +3199,3943,7161,-9,7162,7160,4,1,1,16,2,0,2,0,2,-9,11,2,0,4,6.632345053280383,6.635216381588681,0,2,0,0,0,-9,0,-1040.84447300277,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,4,1,709,0,0,0 +3199,3943,7162,7160,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,3,7.673121042812915,7.470771689429418,0,2,0,-9,6,0,-4,86.72392869896586,0,0,1,42,2,4,1,3,2,2019,1,3,11,0,28,21,15,1,0,1,0,7.086515524065595,7.086515524065595,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.41,50.59,6,1,0,0,12,4,1,709,0,0,0 +3200,3944,7163,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,4,9.005620037832502,8.77937497587415,6.491345798295995,3,0,0,0,-9,0,-971.7988501536943,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,21,15,1,0,-9,0,32.63766206741197,32.63766206741197,0,0,0,0,0,0,0,1,1,0,4.101112504348303,6.90294088680336,0,0,54.2,57.49,6,1,0,0,7,5,1,348,0,0,0 +3201,3945,7164,7165,7168,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,5,7.977633387207179,7.981391551345332,0,2,0,-9,14,0,-4,77.20308472475621,0,0,0,43,2,5,1,2,2,2019,1,2,16,6,45,45,15,1,6,1,0,7.771244724306019,7.771244724306019,0,0,0,0,0,0,0,1,1,0,7.55715461859093,0,8.751652090666257,3,50.13,55.67,3,1,0,0,10,3,1,312,0,0,0 +3201,3945,7165,7164,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,5,7.19061046771773,7.375197292002985,0,2,0,-9,11,0,4,33.03461963859563,0,0,1,39,2,5,1,2,1,2019,1,1,14,4,32,15,15,1,4,1,0,4.700965866230886,4.700965866230886,0,0,0,0,0,0,0,1,1,0,0,0,11.84917406578028,3,35.87,63.44,6,1,0,0,10,3,1,312,0,0,0 +3201,3945,7166,-9,7165,7164,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.0114430289394,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,312,0,0,0 +3201,3945,7167,-9,7165,7164,5,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.951833746208,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,3,1,312,0,0,0 +3201,3946,7168,-9,-9,-9,3,1,0,69,3,0,2,0,2,-9,4,3,0,3,0,6.586315038172544,6.705586242080283,4,0,0,0,-9,0,-882.2464435699106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.89879512168964,0,0,50,47,5,1,0,0,10,2,1,197,0,0,0 +3202,3947,7169,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,3,8.099458601034412,8.192589941888489,0,3,0,0,0,-9,0,-1064.247527920348,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,38,37,15,1,1,-9,0,13.37964062330854,13.37964062330854,0,0,0,0,0,0,0,0,0,0,7.109805402017387,0,5.761028023450377,3,49.23,39.45,6,1,0,0,9,4,1,126,0,0,0 +3203,3948,7170,7171,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,6.326863393836149,6.432927087169074,1,0,-9,43,0,-6,17.5062912935208,0,0,0,71,3,3,3,2,2,2019,4,2,7,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.51222833492724,6.103950409357845,0,0,62.49,55.09,6,1,0,0,6,2,1,692.5,0,0,0 +3203,3948,7171,7170,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,5.270729249280841,5.605131321740451,1,0,-9,43,0,6,-149.2365284093241,0,0,0,65,2,4,3,2,3,2019,4,1,7,0,0,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.611417141693575,5.034351464041387,9.699057717172362,3,63.26,45.23,6,1,0,0,6,2,1,692.5,0,0,0 +3204,3949,7172,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,5,8.891309991949376,8.631441399848088,0,3,0,0,0,-9,0,-980.2363888067337,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,38,15,1,0,-9,0,17.22674849809258,17.22674849809258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,1,0,0,13,5,1,293,0,0,0 +3205,3950,7173,7174,-9,-9,2,1,1,25,1,0,1,0,2,-9,2,1,0,3,8.443985317216139,8.140879285876492,0,2,0,-9,5,0,-2,4.620528118928209,0,1,0,27,2,2,1,-9,-9,2019,1,1,9,0,39,39,15,1,0,1,0,13.55184801375944,13.55184801375944,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,5,1,0,0,2,4,0,1437.666666666667,0,0,0 +3205,3950,7174,7173,-9,-9,1,1,0,27,1,0,1,0,2,-9,1,1,0,2,7.734500338521928,7.812516059118879,0,2,0,-9,5,0,2,23.45747876452214,0,1,1,25,2,3,1,2,3,2019,1,2,13,1,15,16,15,1,1,1,0,22.38047452827552,22.38047452827552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.13,33.19,5,1,0,0,2,4,0,1437.666666666667,0,0,0 +3205,3950,7175,-9,7174,7173,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.695217734902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,0,1437.666666666667,0,0,0 +3206,3951,7176,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,4,7.947419848147536,8.071123016704099,0,3,0,0,0,-9,0,-1105.624700578757,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,35,35,15,1,0,-9,0,10.46512226311985,10.46512226311985,0,0,0,0,0,0,0,0,0,0,4.521828345014044,0,0,3,47.62,56.48,3,1,0,0,11,4,1,353,0,0,0 +3207,3952,7177,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,1,1,0,2,0,6.004337204622185,6.053240016983156,3,0,0,0,-9,0,-922.8732483457518,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,9,0,48,15,1,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.286839716044432,5.561371941590934,0,0,39.74,18.66,3,1,0,1,10,2,1,608,0,0,0 +3208,3953,7178,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,1,1,0,3,6.350500485341359,7.156118838301979,6.277938639108908,4,0,0,0,-9,0,-929.5107908293925,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,9,0,16,13,15,1,0,-9,0,4.570688244171999,4.570688244171999,0,0,0,0,0,0,0,1,1,0,6.214620279375211,0,0,0,49.42,50.19,6,1,0,0,9,2,1,670,0,0,0 +3208,3953,7179,-9,7178,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-958.6117053946947,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,2,1,670,0,0,0 +3209,3954,7180,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,3,3,0,4,0,7.064153294722228,6.628811421886122,3,0,0,0,-9,0,-1066.661182817735,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.363052738294792,6.749715513423591,0,0,47.49,59.1,5,1,1,0,8,2,1,487,0,0,0 +3210,3955,7181,-9,-9,-9,5,1,0,68,3,0,2,0,2,-9,4,3,0,2,0,7.291136666444934,6.981494784998898,4,0,-9,0,-9,0,-967.6982874570792,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.839552247870839,0,0,0,1,1,0,0,7.223733280304459,0,0,35.88,35.4,4,1,0,0,12,2,1,1230,0,0,0 +3210,3956,7182,-9,7185,7184,3,1,0,16,2,0,2,0,-9,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-951.9496841937973,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,4,1,915.5,0,0,0 +3210,3956,7183,-9,7185,7184,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-976.76379399235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,4,1,915.5,0,0,0 +3210,3956,7184,7185,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,2,8.28628209345187,8.693910925668149,0,2,0,-9,3,0,5,-58.77559043028547,0,0,0,40,2,4,1,2,2,2019,1,1,10,0,40,39,15,1,0,1,0,11.41819580900761,11.41819580900761,0,0,0,0,0,0,0,1,1,0,0,0,8.125029132149812,3,50.8,48.58,5,1,0,0,12,4,1,915.5,0,0,0 +3210,3956,7185,7184,7181,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,8.656533616709542,8.476386725507519,0,2,0,-9,3,0,-5,-115.6606631400868,0,0,1,45,2,2,1,2,1,2019,1,2,7,0,43,43,15,1,0,1,0,13.17689328984029,13.17689328984029,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,12,4,1,915.5,0,0,0 +3211,3957,7186,-9,7188,7187,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.1236832714721,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,1,1,1611.666666666667,0,0,0 +3211,3957,7187,7188,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,3,0,0,0,2,0,-9,7,0,10,0,0,0,0,49,1,3,1,-9,-9,2019,1,1,10,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,51.1,4,1,0,0,12,1,1,1611.666666666667,0,0,0 +3211,3957,7188,7187,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,3,0,0,0,2,0,-9,7,0,-10,0,0,0,0,59,2,3,1,2,2,2019,1,2,19,7,0,40,15,1,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,47,3,1,0,0,12,1,1,1611.666666666667,0,0,0 +3212,3958,7189,7190,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,4.753329291283995,4.36184479456978,1,0,-9,49,0,2,130.6964435911377,0,0,0,71,1,1,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.492610425633568,4.469045082935991,0,2,54.2,57.49,6,1,0,0,2,2,1,2860,0,0,0 +3212,3958,7190,7189,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,1,0,6.96261121960043,7.015828653680798,1,0,-9,49,0,-2,123.2974435492284,0,0,0,73,3,4,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.82796544907476,6.703759983611668,0,0,43.57,29.02,3,1,0,0,2,2,1,2860,0,0,0 +3213,3959,7191,7192,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.118754542381401,7.844623753395938,0,1,0,-9,31,0,8,-24.56638327556639,0,0,0,50,2,3,1,-9,-9,2019,1,2,10,0,40,51,15,1,0,1,0,10.77165199292721,10.77165199292721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.83,38.69,6,1,0,0,2,4,0,839.5,0,0,0 +3213,3959,7192,7191,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.206710821491929,7.42649458658538,0,1,0,-9,31,0,-8,62.18783181531847,0,0,0,58,2,3,1,2,2,2019,1,1,11,0,33,30,15,1,0,1,0,5.005057868591692,5.005057868591692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,2,4,0,839.5,0,0,0 +3213,3960,7193,7194,-9,-9,4,1,1,35,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,-9,2,0,9,-7.088311562184988,0,0,0,26,2,4,1,-9,-9,2019,3,3,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,67.22,6,1,1,1,2,2,0,572.5,0,0,0 +3213,3960,7194,7193,7192,7191,3,1,0,26,1,0,0,0,2,-9,2,1,0,4,6.989310916870418,7.17490865541758,0,1,0,-9,2,0,0,51.6553073183893,0,1,1,35,2,5,3,2,2,2019,2,4,9,2,40,25,15,1,2,3,0,4.184894847856735,4.184894847856735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,5,1,0,0,2,2,0,572.5,0,0,0 +3214,3961,7195,-9,7196,-9,6,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-975.1844783376575,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,7,3,0,1484.5,0,0,0 +3214,3961,7196,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,2,1,0,4,7.627214158724652,8.091413617147634,6.143168612468875,4,0,0,0,-9,0,-1072.439956044176,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,2,0,30,38,15,1,0,-9,0,8.994963936326428,8.994963936326428,0,0,0,0,0,0,0,1,1,0,5.833613323004352,0,0,0,50.36,52.77,5,1,0,0,7,3,0,1484.5,0,0,0 +3215,3962,7197,-9,7198,7200,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.9494430689269,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,0,1891.75,0,0,0 +3215,3962,7198,7200,-9,-9,2,1,0,38,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,3,0,-1,127.0643362073201,0,0,1,39,1,3,1,2,1,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.453375024569461,0,0,0,48.18,61.8,6,1,0,0,5,3,0,1891.75,0,0,0 +3215,3962,7199,-9,7198,7200,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-837.4514655757935,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,0,1891.75,0,0,0 +3215,3962,7200,7198,-9,-9,1,1,1,39,1,0,3,0,1,-9,2,1,0,3,8.389735262506361,8.190999265080217,0,2,0,-9,3,0,1,-36.02461633127157,0,0,0,38,1,5,3,2,1,2019,2,2,15,4,55,58,15,1,4,3,0,8.618264578379701,8.618264578379701,0,0,0,0,0,0,0,1,1,0,3.305060985165392,0,0,0,49.04,55.86,6,1,0,0,5,3,0,1891.75,0,0,0 +3216,3963,7201,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,4,0,6.55696462730263,6.746904047014074,3,0,0,0,-9,0,-1108.961451105827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.057647016819231,6.566884062761099,0,0,60.13,49.27,7,1,0,0,2,2,1,851,0,0,0 +3217,3964,7202,7203,-9,-9,2,1,0,38,1,1,1,0,1,-9,5,1,0,4,9.046695020238948,8.954106019788515,0,2,0,-9,10,0,0,49.60611942815628,0,0,1,38,1,3,1,-9,-9,2019,1,1,8,0,42,43,15,1,0,1,0,24.15372549313311,24.15372549313311,0,0,0,0,0,0,0,0,0,0,8.329975196481124,0,0,0,54.2,57.49,6,3,0,0,8,5,1,552,0,0,0 +3217,3964,7203,7202,-9,-9,1,1,1,38,1,1,1,0,1,-9,2,1,0,3,9.261861540626089,9.572907823462113,0,2,0,-9,15,0,0,-56.87379290185402,0,0,0,38,1,4,1,2,2,2019,1,2,8,0,42,42,15,1,0,1,0,31.78395800912876,31.78395800912876,0,0,0,0,0,0,0,0,0,0,7.001898663560546,0,0,0,57.92,51.82,6,3,0,0,8,5,1,552,0,0,0 +3217,3964,7204,-9,7202,7203,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-894.4463215264855,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,3,0,0,8,5,1,552,0,0,0 +3218,3965,7205,7206,-9,-9,1,1,1,34,1,0,0,0,1,-9,1,1,0,4,8.937960120297308,9.126378991435818,0,1,0,-9,3,0,6,27.31443887766994,0,0,0,28,1,3,1,1,1,2019,1,2,9,0,40,40,15,1,0,1,0,17.51618339044208,17.51618339044208,0,0,0,0,0,0,0,0,0,0,3.566878825456905,0,0,0,43.73,59.7,6,3,0,0,8,5,1,471.5,0,0,0 +3218,3965,7206,7205,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,3,7.196223434901383,7.091127534409812,0,1,0,-9,3,0,-6,24.42241170115998,0,1,1,34,1,4,1,-9,-9,2019,1,1,9,0,30,0,15,1,0,1,0,4.849947199246819,4.849947199246819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,3,0,0,8,5,1,471.5,0,0,0 +3219,3966,7207,-9,7208,7209,3,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-947.4051703646271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,6,1,0,0,7,5,1,815.75,0,0,0 +3219,3966,7208,7209,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,5,8.591095805867395,8.634297010028916,6.405675834854641,2,0,-9,8,0,4,-14.70574529162301,0,0,0,41,2,4,1,3,2,2019,1,1,12,1,46,44,15,1,1,1,0,15.80077754908119,15.80077754908119,0,0,0,0,0,0,0,1,1,0,6.759476130979476,0,0,0,32.43,57.12,4,1,0,0,7,5,1,815.75,0,0,0 +3219,3966,7209,7208,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,4,8.860168841665324,8.787736475359148,0,2,0,-9,14,0,-4,47.13787314565705,0,0,0,45,2,5,1,-9,-9,2019,1,2,12,0,40,44,15,1,0,1,0,18.95333425085519,18.95333425085519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.72,66.52,4,1,0,0,7,5,1,815.75,0,0,0 +3219,3966,7210,-9,7208,7209,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1047.123927077772,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,5,1,815.75,0,0,0 +3220,3967,7211,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,2,1,0,2,6.095648911874608,6.04294704568814,0,3,0,-9,0,-9,0,-1010.913297318742,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,12,16,16,15,1,12,-9,0,3.339298730661936,3.339298730661936,0,0,0,0,0,0,0,1,1,0,0,0,7.35596558401235,3,20.93,44.83,1,1,0,1,7,2,0,1601,0,0,0 +3220,3968,7212,-9,7211,-9,2,1,0,28,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-848.4975930549091,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.73,30.02,3,2,0,1,7,1,0,557,0,0,0 +3220,3969,7213,-9,7211,-9,3,1,1,19,2,0,0,0,2,1,2,1,0,4,8.023309576408927,8.200152748446097,0,3,0,-9,0,-9,0,-1042.938615045951,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,37,0,15,1,2,-9,1,11.37909934680308,11.37909934680308,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,2,0,0,7,4,0,96,0,0,0 +3221,3970,7214,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.560009089026381,7.825162563512038,2.986860774326349,3,0,0,0,-9,0,-980.6849634831208,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,45,45,15,1,0,-9,0,7.84874188158707,7.84874188158707,0,0,0,0,0,0,0,1,1,0,2.825853401987264,0,0,0,41.34,56.62,6,1,0,0,2,3,0,1272,0,0,0 +3222,3971,7215,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.711447855953111,7.718492182283564,0,3,0,0,0,-9,0,-1079.930346077071,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,14,2,37,39,15,1,2,-9,0,7.622400360244014,7.622400360244014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.44,47.54,4,1,0,0,2,3,0,301,0,0,0 +3223,3972,7216,-9,7220,7218,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-887.1089019571779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,12,4,1,992.4,0,0,0 +3223,3972,7217,-9,7220,7218,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.419912688107,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,4,1,992.4,0,0,0 +3223,3972,7218,7220,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,5,9.130743482916131,8.905713020110996,0,2,0,-9,5,0,-7,-18.56524020219371,0,0,0,43,2,3,1,2,2,2019,1,2,13,1,42,40,15,1,1,1,0,34.00171921449637,34.00171921449637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,60.96,5,1,0,0,12,4,1,992.4,0,0,0 +3223,3972,7219,-9,7220,7218,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.8450268940463,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,12,4,1,992.4,0,0,0 +3223,3972,7220,7218,-9,-9,2,1,0,43,1,0,3,0,2,-9,2,1,0,3,7.044784628151976,6.953536090585427,0,2,0,-9,5,0,7,83.48980684972889,0,0,1,36,2,5,1,-9,-9,2019,1,1,10,0,20,20,15,1,0,1,0,6.940072862551368,6.940072862551368,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.32,50.22,5,1,0,0,12,4,1,992.4,0,0,0 +3224,3973,7221,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,3,8.330860156707898,7.923059258480921,0,3,0,0,0,-9,0,-1010.374228466717,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,38,36,15,1,0,-9,0,11.94070507651716,11.94070507651716,0,0,0,0,0,0,0,0,0,0,3.027288389267249,0,0,0,50.82,57.78,4,1,0,0,8,4,0,505,0,0,0 +3225,3974,7222,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.768980043331814,8.273433715201781,8.070455641548717,3,0,0,0,-9,0,-926.2705843826135,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,16,0,15,1,0,-9,0,12.56843111901639,12.56843111901639,0,0,0,0,0,0,0,1,1,0,0,7.772373535723498,0,0,68.03,40.23,7,1,0,0,12,5,1,804,0,0,0 +3226,3975,7223,7224,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,45,0,-7,0,0,0,0,88,3,2,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.78,47.49,6,1,0,0,12,1,1,653,0,0,0 +3226,3975,7224,7223,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,45,0,7,0,0,0,0,81,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.10720338647964,0,0,0,46.91,51.8,5,1,0,0,12,1,1,653,0,0,0 +3227,3976,7225,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-1010.562081725651,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,33,12,0,17,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.16151624858716,3,21.15,29.72,3,2,1,0,6,1,0,308,0,0,0 +3228,3977,7226,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,3,0,6.525980498715152,6.744413290147276,3,0,0,0,-9,0,-1087.645928071429,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.476308532973194,6.793145202730546,0,0,64.23999999999999,44.83,7,1,0,0,13,2,1,306,0,0,0 +3229,3978,7227,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.358436894439905,8.354222488101511,0,3,0,-9,0,0,0,-1094.929284267173,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,45,15,1,0,-9,0,11.50871580043892,11.50871580043892,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,4,0,700,0,0,0 +3230,3979,7228,7229,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,3,6.463862161331069,6.561344677230303,0,2,0,-9,7,0,1,-60.33869475184536,0,0,1,32,2,3,1,2,2,2019,1,2,22,9,12,12,15,1,9,1,0,6.71803040403433,6.71803040403433,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.12,67.62,6,1,0,0,10,5,0,932.5,0,0,0 +3230,3979,7229,7228,-9,-9,2,1,1,32,1,0,2,0,2,-9,1,1,0,3,9.261187859509995,9.143370873484308,0,2,0,-9,7,0,-1,-140.6038382793471,0,0,0,33,2,3,1,-9,-9,2019,1,1,8,0,46,50,15,1,0,1,0,26.07347102943348,26.07347102943348,0,0,0,0,0,0,0,1,1,0,6.731328362000159,0,0,0,41.91,55.01,1,1,0,0,10,5,0,932.5,0,0,0 +3230,3979,7230,-9,7228,7229,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.6401863616425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,0,932.5,0,0,0 +3230,3979,7231,-9,7228,7229,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.23023584285,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,5,0,932.5,0,0,0 +3231,3980,7232,7233,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.925221876116743,7.777057760481079,1,0,-9,7,0,1,82.22799073096714,0,0,0,75,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.784166289367812,7.492845563704851,0,0,59.53,56.44,7,1,0,0,11,3,1,258.5,0,0,0 +3231,3980,7233,7232,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,6.366577329361824,6.600436433776252,1,0,-9,7,0,-1,-32.80613901343452,0,0,0,76,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121752830418442,6.562574974995929,0,0,58.32,50.22,7,1,0,0,11,3,1,258.5,0,0,0 +3232,3981,7234,-9,7235,-9,1,1,0,34,2,0,0,0,3,-9,2,1,0,4,8.481113014938707,8.394490594889991,0,3,0,0,0,-9,0,-1059.534582851998,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,2,0,40,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.789740030275044,0,2.099869087568545,3,42.31,47.25,7,4,0,0,8,5,0,334,0,0,0 +3232,3982,7235,-9,-9,-9,2,1,0,77,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-855.9467647779494,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,44.11,6,4,0,0,8,1,0,643,0,0,0 +3233,3983,7236,-9,-9,-9,1,1,0,53,2,0,1,0,2,-9,2,1,0,4,7.887982627980208,7.56116634082515,0,4,0,0,0,-9,0,-988.9844157474128,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,5,21,22,15,1,5,-9,0,12.06970601249332,12.06970601249332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.46,60.06,2,1,0,0,7,3,1,339.5,0,0,0 +3233,3983,7237,-9,7236,-9,3,1,1,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1066.736315972398,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,3,1,339.5,0,0,0 +3233,3984,7238,-9,7236,-9,2,1,1,20,2,0,1,0,2,-9,2,1,0,4,7.521702710028828,7.500064469853943,0,3,0,0,0,-9,0,-1002.201451640841,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,28,29,15,1,3,-9,1,7.896516684359939,7.896516684359939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.32,63.9,5,1,0,0,7,3,1,2267,0,0,0 +3234,3985,7239,7240,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,3,9.012378441670021,8.711460806612234,0,1,0,-9,9,0,0,36.40575007007799,0,0,1,37,1,4,1,-9,-9,2019,1,1,7,0,43,43,15,1,0,1,0,21.14676882655326,21.14676882655326,0,0,0,0,0,0,0,0,0,0,8.145511700510772,0,0,0,57.92,51.82,6,3,0,0,8,5,1,783.5,0,0,0 +3234,3985,7240,7239,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,4,9.541145360323618,9.506251412766378,0,1,0,-9,14,0,0,-85.13223046646742,0,0,0,37,1,3,1,2,2,2019,1,2,8,0,42,45,15,1,0,1,0,33.67227992781602,33.67227992781602,0,0,0,0,0,0,0,0,0,0,4.022509882271758,0,0,0,60.12,54.8,6,3,0,0,8,5,1,783.5,0,0,0 +3235,3986,7241,7242,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,6.318191500612399,6.338694310879377,1,0,-9,8,0,-10,-34.33591726257691,0,0,0,82,3,2,3,2,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.350018119606044,6.05037641993175,0,0,36.33,35.3,6,1,0,0,10,2,1,956.5,0,0,0 +3235,3986,7242,7241,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,6.070834849728152,6.140950677722731,1,0,-9,8,0,10,24.51293035129727,0,0,0,72,2,1,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.950957786940841,0,0,49.02,20.92,5,1,0,0,10,2,1,956.5,0,0,0 +3236,3987,7243,7244,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,0,-25.58546004525413,0,0,0,72,2,2,3,3,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.09,30.9,7,1,0,0,4,1,1,373,0,0,0 +3236,3987,7244,7243,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,4.197054584885297,4.343442352403466,1,0,-9,7,0,0,15.8069828269691,0,0,0,72,3,3,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.074026135947331,4.425322889297973,0,0,59.22,21.46,6,1,0,0,4,1,1,373,0,0,0 +3237,3988,7245,-9,7246,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1102.576456097476,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,548,0,0,0 +3237,3988,7246,-9,-9,-9,1,1,0,45,3,0,1,0,1,-9,2,1,0,3,8.984156878496236,9.080899523569995,5.943443009022524,4,0,0,0,-9,0,-907.3520086049285,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,50,55,15,1,2,-9,0,17.95744475568835,17.95744475568835,0,0,0,0,0,0,0,1,1,0,6.934753072348808,0,0,0,39.5,56.19,3,1,0,0,7,5,1,548,0,0,0 +3238,3989,7247,7248,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,6.720208039493576,7.491482334314568,6.52498806974948,1,0,-9,8,0,-4,22.70390401433827,0,0,0,71,1,4,3,-9,-9,2019,4,1,13,2,16,12,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.521855104237409,6.472760882493516,0,0,43.14,61.33,6,1,0,0,4,3,1,581.5,0,0,0 +3238,3989,7248,7247,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,7.670481015741616,7.506422576917892,1,0,-9,8,0,4,32.334172355167,0,0,0,67,2,4,3,2,-9,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.500962350811275,7.287313412526419,0,0,52.65,54.32,5,1,0,0,4,3,1,581.5,0,0,0 +3239,3990,7249,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.069721551551417,8.134904107872094,0,3,0,-9,0,-9,0,-977.6740790330997,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,42,0,15,1,0,-9,0,10.92153169946602,10.92153169946602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,10,4,0,1069,0,0,0 +3240,3991,7250,-9,7254,7255,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.376296693203,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,7,4,1,835.1666666666666,0,0,0 +3240,3991,7251,-9,7254,7255,3,1,1,15,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1067.665219404447,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,3,0,0,7,4,1,835.1666666666666,0,0,0 +3240,3991,7252,-9,7254,7255,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.467066752655,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,7,4,1,835.1666666666666,0,0,0 +3240,3991,7253,-9,7254,7255,4,1,0,12,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-984.0777886650608,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,3,0,0,7,4,1,835.1666666666666,0,0,0 +3240,3991,7254,7255,-9,-9,2,1,0,40,1,0,4,0,1,-9,2,1,0,3,7.234978645587258,6.825615258668392,0,2,0,-9,18,0,-1,-36.95704861350312,0,0,1,41,1,2,1,3,3,2019,1,1,12,0,18,18,15,1,0,1,0,6.566753320246862,6.566753320246862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.77,49.77,4,3,0,0,7,4,1,835.1666666666666,0,0,0 +3240,3991,7255,7254,-9,-9,1,1,1,41,1,0,4,0,1,-9,2,1,0,2,9.092737815805878,8.98536199646362,0,2,0,-9,19,0,1,-131.9443476352414,0,0,0,40,1,3,1,3,3,2019,1,2,14,3,40,40,15,1,3,1,0,22.48201257623701,22.48201257623701,0,0,0,0,0,0,0,0,0,0,6.664037144911921,0,0,0,36.57,55.47,4,3,0,0,7,4,1,835.1666666666666,0,0,0 +3241,3992,7256,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1108.658792831714,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,52.42,7,1,1,0,6,1,0,662,0,0,0 +3242,3993,7257,7259,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,3,8.804024289796793,8.899451535627925,0,1,0,-9,9,0,-1,21.29349484772991,0,0,0,61,2,4,3,2,2,2019,2,1,10,0,40,38,15,1,0,4,0,26.7820277259776,26.7820277259776,0,0,0,0,0,0,0,1,1,0,1.785330822554778,0,0,0,54.37,54.8,6,1,0,0,9,5,1,801.6666666666666,0,0,0 +3242,3993,7258,-9,7259,7257,3,1,0,17,2,0,0,0,2,1,2,3,0,4,5.890180646511357,6.487177705525221,0,1,0,0,0,-9,0,-997.7397891005722,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,10,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,5,1,0,0,9,5,1,801.6666666666666,0,0,0 +3242,3993,7259,7257,-9,-9,1,1,0,61,1,0,0,0,2,1,4,3,0,4,0,7.372844536470981,7.253754155856005,1,0,-9,9,0,1,-62.536045030766,-9,0,0,60,1,3,1,2,1,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.081080374493711,7.325455226691191,0,0,48.81,59.91,2,1,0,0,9,5,1,801.6666666666666,0,0,0 +3243,3994,7260,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,1,1,0,2,8.361086252554244,8.373839681075246,0,3,0,0,0,-9,0,-1108.794698107057,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,50,70,15,1,7,-9,0,12.23788354650376,12.23788354650376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.43,56.62,3,1,0,0,8,5,1,652,0,0,0 +3244,3995,7261,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,8.274080521281205,8.312022840461939,3.817075581844837,3,0,0,0,-9,0,-1017.360667780767,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,38,37,15,1,0,-9,0,11.03378301841767,11.03378301841767,0,0,0,0,0,0,0,0,0,0,6.403547558879194,0,0,0,48.48,54.62,6,1,0,0,13,4,1,322,0,0,0 +3245,3996,7262,7263,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,5,8.717731020179256,8.863639784173344,0,2,0,-9,9,0,-4,55.77699120097499,0,0,1,47,2,3,1,3,3,2019,1,2,7,0,40,0,15,1,0,1,0,25.12931048932053,25.12931048932053,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,5,1,0,0,11,5,1,316,0,0,0 +3245,3996,7263,7262,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.196013070618005,7.756448182072588,0,2,0,-9,9,0,4,140.2572402033909,0,0,0,43,1,5,1,3,3,2019,1,1,7,0,40,44,15,1,0,1,0,9.16333537916757,9.16333537916757,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,45.08,5,2,0,0,11,5,1,316,0,0,0 +3245,3996,7264,-9,7262,7263,3,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-995.8124596232811,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,11,5,1,316,0,0,0 +3245,3996,7265,-9,7262,7263,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-778.3285496173484,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,11,5,1,316,0,0,0 +3246,3997,7266,7267,-9,-9,4,1,1,54,1,0,1,0,1,-9,2,1,0,4,8.582878627379115,8.170237487568395,6.922397030732524,2,0,-9,6,0,-1,10.10179418900219,0,0,0,55,1,4,1,-9,-9,2019,1,1,7,0,40,45,15,1,0,1,0,16.90518511876025,16.90518511876025,0,0,0,0,0,0,0,1,1,0,0,7.241376337755003,0,0,57.16,56.15,6,1,0,0,4,4,1,578,0,0,0 +3246,3997,7267,7266,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,4,8.119279174583223,8.254330900255047,6.624249257370812,2,0,-9,6,0,1,29.36009293743474,0,0,0,54,1,4,1,3,2,2019,1,4,9,1,28,28,15,1,1,1,0,12.14535033533867,12.14535033533867,0,0,0,0,0,0,0,1,1,0,6.561496187814619,0,0,0,60.57,46.44,6,1,0,0,4,4,1,578,0,0,0 +3246,3997,7268,-9,7267,7266,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1132.096922742647,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,4,1,578,0,0,0 +3246,3998,7269,-9,7267,7266,3,1,0,23,2,0,1,0,2,1,2,1,0,3,7.883165013468187,7.992024791928931,0,3,0,0,0,-9,0,-1095.353116740688,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,18,6,37,0,15,1,6,-9,1,8.575237344546673,8.575237344546673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.21,4,1,0,1,4,3,1,372,0,0,0 +3247,3999,7270,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,7.319430118477785,7.909374163369135,3,0,0,0,-9,0,-946.0989036129055,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,25.3474464160656,0,7.932053630624623,0,0,273.6878921514844,1,1,0,7.186849278306639,7.228929420423428,0,0,46.85,19.4,6,1,0,0,9,3,1,335,0,0,0 +3248,4000,7271,7272,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,4,0,0,0,1,0,-9,9,0,-5,0,0,0,0,52,1,2,3,2,2,2019,2,1,23,10,0,6,15,1,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,3,1,0,1,13,1,0,433,0,0,0 +3248,4000,7272,7271,-9,-9,1,1,1,52,1,0,0,0,1,-9,3,3,0,2,0,0,0,1,0,-9,9,0,5,0,0,0,0,47,1,4,1,2,2,2019,3,2,30,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.81,46.33,1,1,1,1,13,1,0,433,0,0,0 +3249,4001,7273,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,6.120799927358205,6.103616717025496,3,0,0,0,-9,0,-1064.385396548374,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.238133005721356,6.108373451057297,0,0,53.78,35.18,4,1,0,0,8,2,1,333,0,0,0 +3250,4002,7274,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,4,0,5.696505589489356,5.821997327600538,3,0,0,0,-9,0,-982.9525434512108,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.951998449229415,0,0,54.55,46.39,5,4,0,0,2,2,0,853,0,0,0 +3251,4003,7275,7276,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,2.356700739141115,2.171341021881627,1,0,-9,54,0,-1,68.80591920286406,0,0,0,76,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.772180020334218,2.185191201325469,0,0,59.05,35.04,5,1,0,0,1,3,1,1066,0,0,0 +3251,4003,7276,7275,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,8.014687522863687,7.82418770283838,1,0,-9,54,0,1,-65.29645803290143,0,0,0,75,2,3,3,3,1,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.913452762108713,7.759417829658676,0,0,55.9,48.44,7,1,0,0,1,3,1,1066,0,0,0 +3252,4004,7277,-9,7278,7279,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.989362122945,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,8,5,1,273,0,0,0 +3252,4004,7278,7279,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,4,9.501164432075408,9.398357337753076,0,2,0,-9,14,0,-3,-57.0304293419046,0,0,1,47,2,3,1,1,1,2019,1,2,14,1,50,50,15,1,1,1,0,34.15683313403851,34.15683313403851,0,0,0,0,0,0,0,0,0,0,7.259010253271629,0,0,0,54.77,55.87,6,1,0,0,8,5,1,273,0,0,0 +3252,4004,7279,7278,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,3,7.939070149177012,7.701379949823551,0,2,0,-9,14,0,3,-92.26198283864279,0,0,0,44,1,4,1,2,1,2019,1,1,13,1,25,20,15,1,1,1,0,10.9063493744248,10.9063493744248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,5,1,0,0,8,5,1,273,0,0,0 +3253,4005,7280,-9,7281,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-987.4076140954546,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,981.5,0,0,0 +3253,4005,7281,-9,-9,-9,1,1,0,41,2,0,1,0,1,-9,2,1,0,4,0,0,0,4,0,0,0,-9,0,-922.5567066094691,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,16,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.75,50.34,6,1,0,0,9,1,0,981.5,0,0,0 +3254,4006,7282,7283,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,3,7.95316076108021,8.349834629810273,0,1,0,-9,5,0,-6,46.11617882373839,0,0,0,64,2,4,3,3,2,2019,2,1,11,0,24,16,15,1,2,4,0,19.96541717584906,19.96541717584906,0,0,0,0,0,0,0,0,0,0,1.65696644383208,0,0,0,49,48,5,1,0,0,8,3,1,2036,0,0,0 +3254,4006,7283,7282,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,6.907289234438085,7.031867571180024,1,0,-9,5,0,6,-95.87498782746968,0,0,0,58,1,3,1,2,2,2019,3,2,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.351298086934841,6.712519510681695,0,0,45.58,55.84,5,1,0,0,8,3,1,2036,0,0,0 +3254,4007,7284,-9,7282,7283,3,1,0,23,2,0,0,0,1,1,2,1,0,4,7.37457943036554,7.760899553794755,0,3,0,0,0,-9,0,-954.5335950945968,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,40,0,15,1,2,-9,1,5.027872345915532,5.027872345915532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,1,0,0,8,3,1,649,0,0,0 +3255,4008,7285,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,3,3,0,1,6.127741600772583,5.647482630853902,0,3,0,0,0,-9,0,-838.0056426039025,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,0,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.733622865572518,0,0,0,40.3,39.69,1,1,1,1,12,2,0,1904,0,0,0 +3256,4009,7286,7287,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,2,8.90037678962817,8.712000720212121,4.824016322349845,1,0,-9,38,0,-1,70.57673078406958,0,0,0,58,3,2,1,3,2,2019,1,1,9,0,42,40,15,1,0,1,0,14.50760652046858,14.50760652046858,0,0,0,0,0,0,0,0,0,0,4.121216446224611,5.593448071094818,0,0,50.27,48.86,7,1,0,0,1,5,1,965,0,0,0 +3256,4009,7287,7286,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,2,8.118728395893575,8.085923353022372,0,1,0,-9,38,0,1,-30.02245533893682,0,0,0,57,2,2,1,2,2,2019,1,2,9,1,42,40,15,1,1,1,0,9.316792934645095,9.316792934645095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.44,27.28,5,1,0,0,1,5,1,965,0,0,0 +3256,4010,7288,-9,7286,7287,3,1,1,31,2,0,0,0,2,-9,2,1,0,3,8.521557249987465,7.83523671616,0,3,0,0,0,-9,0,-971.3768338139259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,37,15,1,0,-9,1,11.5863544912611,11.5863544912611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.6,51,5,1,0,0,1,4,1,648,0,0,0 +3257,4011,7289,7290,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,3,7.699214948019429,7.940122696272124,0,1,0,-9,2,0,3,-92.53665495240992,0,0,1,32,1,4,1,-9,-9,2019,1,1,11,1,32,0,15,1,1,1,0,8.964632399444973,8.964632399444973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.73,54.52,6,1,0,0,8,5,0,1091,0,0,0 +3257,4011,7290,7289,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.908131610022332,8.803695500517376,0,1,0,-9,2,0,-3,-12.58232318521715,0,0,0,35,2,3,1,1,1,2019,1,2,11,2,39,37,15,1,2,1,0,17.71059192006886,17.71059192006886,0,0,0,0,0,0,0,0,0,0,1.308920340503954,0,0,0,53.42,50.87,6,2,0,0,8,5,0,1091,0,0,0 +3258,4012,7291,-9,7292,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1037.199376224111,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,2,0,380,0,0,0 +3258,4012,7292,-9,-9,-9,1,1,0,44,3,0,2,0,2,1,2,1,0,1,7.318245093367927,7.358495029331891,0,4,0,0,0,-9,0,-1167.687643909572,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,23,11,24,0,15,1,11,-9,0,5.883158015188982,5.883158015188982,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.17,33.73,2,1,0,0,5,2,0,380,0,0,0 +3258,4013,7293,-9,7292,-9,2,1,1,18,2,0,2,0,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1166.588655264478,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,2,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.01,53.18,7,1,0,0,5,2,0,229,0,0,0 +3259,4014,7294,7297,-9,-9,3,1,0,26,1,1,3,0,2,-9,6,3,0,4,7.251937557891441,7.148201828598815,0,2,0,-9,5,0,-7,70.67456804526823,0,1,1,33,2,4,1,-9,-9,2019,3,1,16,4,40,45,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,6,1,0,0,7,5,0,702.4,0,0,0 +3259,4014,7295,-9,7294,7297,2,1,0,12,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.176574614053,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,7,5,0,702.4,0,0,0 +3259,4014,7296,-9,7294,7297,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-836.1501546215009,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,0,702.4,0,0,0 +3259,4014,7297,7294,-9,-9,1,1,1,33,1,1,3,0,2,-9,1,1,0,4,9.208609355712369,9.277633501686671,0,2,0,-9,5,0,7,-12.5217492357952,0,0,0,26,2,4,3,2,2,2019,2,3,11,0,70,90,15,1,0,3,0,16.2391109261689,16.2391109261689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,0,7,5,0,702.4,0,0,0 +3259,4014,7298,-9,7294,7297,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.7491142891809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,0,702.4,0,0,0 +3260,4015,7299,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,5.331748590953742,5.638353672372113,3,0,0,0,-9,0,-883.8303806743256,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,6.866931140464417,0,0,1,1,0,0,5.223651842754924,0,0,47.7,28.27,6,1,0,0,13,2,1,294,0,0,0 +3261,4016,7300,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,1,1,0,5,8.526758466504115,8.365283061887881,0,3,0,0,0,-9,0,-1037.609525467778,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,50,40,15,1,0,-9,0,9.824600300602183,9.824600300602183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,2,1,0,0,10,4,1,399,0,0,0 +3262,4017,7301,7302,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,5,0,7.342622051061438,7.355719457760732,1,0,-9,43,0,-2,-17.01209983519503,0,0,0,65,1,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.69330361061411,7.096114166525797,0,0,38.24,63.73,5,1,0,0,9,3,1,458,0,0,0 +3262,4017,7302,7301,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,6.418286543451099,6.359825640525552,1,0,-9,43,0,2,96.41185989061265,0,0,0,63,1,5,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.951866833419501,6.447262046362651,0,0,47.94,53.79,6,1,0,0,9,3,1,458,0,0,0 +3263,4018,7303,7304,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,47,0,-2,38.28102000201466,0,0,0,77,3,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.789186422615297,0,17.98828258238888,1,61.12,51.57,7,1,0,0,7,2,1,655.5,0,0,0 +3263,4018,7304,7303,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,6.958988807336588,6.575117970583772,1,0,-9,6,0,2,101.9733609915787,0,0,0,75,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.35255193053943,0,0,54,46,5,1,0,0,7,2,1,655.5,0,0,0 +3264,4019,7305,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,8.389999099874512,8.699057331817368,0,3,0,-9,0,-9,0,-1099.982442718868,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,35,0,15,1,0,-9,0,17.55945234790875,17.55945234790875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,52.6,4,1,0,0,8,5,0,154,0,0,0 +3265,4020,7306,7307,-9,-9,2,1,0,31,1,1,1,0,1,-9,2,1,0,5,8.684433563106865,8.651156964585505,0,2,0,-9,3,0,-1,-136.1797526489038,0,0,1,32,1,4,1,-9,-9,2019,1,1,6,0,35,38,15,1,0,1,0,21.76594159949348,21.76594159949348,0,0,0,0,0,0,0,0,0,0,2.410436980872623,0,0,0,54.69,57.47,7,1,0,0,8,5,1,624.6666666666666,0,0,0 +3265,4020,7307,7306,-9,-9,1,1,1,32,1,1,1,0,1,-9,2,1,0,4,9.26314934077014,9.223548580633505,0,2,0,-9,3,0,1,-103.2355964561815,0,0,0,31,1,5,1,1,1,2019,1,2,8,0,45,50,15,1,0,1,0,26.85667571651171,26.85667571651171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,2,0,0,8,5,1,624.6666666666666,0,0,0 +3265,4020,7308,-9,7306,7307,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1034.264000276813,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,2,0,0,8,5,1,624.6666666666666,0,0,0 +3266,4021,7309,7310,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,6.09957324778131,5.825170228835692,1,0,-9,56,0,-3,-89.95443815080012,0,0,0,77,1,3,3,2,3,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.938516363199792,6.40310781629993,8.25934601492024,3,61.68,49.95,6,1,0,0,2,3,1,201.5,0,0,0 +3266,4021,7310,7309,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.974925136523639,8.154780851137186,1,0,-9,56,0,3,-50.48635365646973,0,0,0,74,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.219368105075633,7.879770742614395,0,0,60.29,52.11,7,1,0,0,2,3,1,201.5,0,0,0 +3267,4022,7311,-9,-9,-9,1,1,0,24,2,1,1,0,2,-9,3,3,0,3,0,4.868939249000761,4.630911030778038,4,0,0,0,-9,0,-923.6352794750851,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.204017876323622,0,0,0,36.62,54.7,5,1,1,0,5,2,0,134,0,0,0 +3267,4022,7312,-9,7311,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1036.668139113824,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,2,0,134,0,0,0 +3268,4023,7313,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,7.960843234163753,8.048570813907419,0,3,0,0,0,-9,0,-1088.960633603624,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,43,15,1,0,-9,0,8.217699923789851,8.217699923789851,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,6,3,0,0,4,4,1,86,0,0,0 +3269,4024,7314,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,4,0,8.083392676738798,7.844939660517907,3,0,0,0,-9,0,-1063.07197512427,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.915702168989636,8.324645974761028,0,0,61.51,49.96,6,1,0,0,8,4,1,1088,0,0,0 +3270,4025,7315,-9,7316,-9,2,1,0,16,2,0,1,0,2,-9,3,2,0,4,0,0,0,4,0,0,0,-9,0,-1067.359604343851,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.466890508469158,0,0,0,43.79,58.33,4,3,1,0,6,3,0,533,0,0,0 +3270,4025,7316,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,2,1,0,2,7.965179869508265,8.037730624589868,0,4,0,0,0,-9,0,-975.7511097190804,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,3,0,40,0,15,1,0,-9,0,9.648815182366562,9.648815182366562,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.58,52.86,2,3,0,0,6,3,0,533,0,0,0 +3271,4026,7317,7318,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,8.086316803481116,8.026415077047163,1,0,-9,10,0,0,16.20232249077832,0,0,0,82,2,2,3,3,3,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.913852528203843,32.40258898151681,1,39.63,49.09,6,1,0,0,11,3,1,675.5,0,0,0 +3271,4026,7318,7317,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,2,0,6.260613785322705,6.07348085550126,1,0,-9,10,0,0,-30.92819822311402,0,0,0,82,1,3,3,3,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,23.51338651454762,0,0,0,0,1,1,0,0,5.924144122659516,0,0,49.35,24.97,3,1,0,0,11,3,1,675.5,0,0,0 +3272,4027,7319,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,4,7.657490318204776,7.625398164307864,6.610921055509704,4,0,0,0,-9,0,-1041.49119694366,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,44,34,15,1,1,-9,0,5.593184424009482,5.593184424009482,0,0,0,0,0,0,0,1,1,0,6.475306376333192,0,0,0,41.28,60.79,5,1,0,1,4,3,0,1714,0,0,0 +3273,4028,7320,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,5,8.345321134221587,8.490148192749377,0,3,0,0,0,-9,0,-988.4120126058012,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,48,48,15,1,0,-9,0,10.43540630291784,10.43540630291784,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,4,5,0,871,0,0,0 +3274,4029,7321,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,5.980568885652472,5.66046834499476,3,0,-9,0,-9,0,-1060.802254385836,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.892718948668491,6.849817612063041,3,38.82,63.21,6,1,0,0,7,2,1,506,0,0,0 +3275,4030,7322,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1163.663488237989,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.83,47.65,6,1,0,0,4,1,1,373,0,0,0 +3276,4031,7323,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,2,1,0,4,6.47390740440785,6.921918806591067,0,3,0,-9,0,-9,0,-1042.166153794312,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,15,0,15,1,0,-9,0,8.336247233978431,8.336247233978431,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.77,55.87,3,1,0,0,10,2,0,167,0,0,0 +3276,4032,7324,-9,-9,-9,2,1,1,18,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-990.9237200803649,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,34.93,55.72,6,1,1,0,10,1,0,225,0,0,0 +3277,4033,7325,7326,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,3,8.303160826597558,8.192468316926732,0,1,0,-9,5,0,-4,84.41292241806389,0,0,0,34,1,4,1,-9,-9,2019,1,1,10,0,41,45,15,1,0,1,0,12.05073724163541,12.05073724163541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,6,1,0,0,12,5,1,536.5,0,0,0 +3277,4033,7326,7325,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,4,8.506030671990352,8.627603235966969,0,1,0,-9,5,0,4,41.2548020056051,0,0,1,30,1,3,1,2,2,2019,1,2,11,0,40,38,15,1,0,1,0,15.2142642300451,15.2142642300451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,6,1,0,0,12,5,1,536.5,0,0,0 +3278,4034,7327,7328,-9,-9,2,1,0,57,1,0,0,0,3,-9,1,1,0,2,9.226593157404992,8.915058357517065,0,1,0,-9,16,0,-4,111.077283818514,0,0,0,61,2,2,1,2,2,2019,1,1,15,3,40,40,15,1,3,1,0,21.39801940825998,21.39801940825998,0,0,0,0,0,0,0,1,1,0,0,0,8.815687118760941,3,47.01,34.07,4,1,0,0,7,5,1,400.5,0,0,0 +3278,4034,7328,7327,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,2,0,5.064348130515551,5.211915752403609,1,0,-9,16,0,4,123.0456508794532,0,0,0,57,3,2,1,3,3,2019,1,2,14,2,40,40,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.785774496112227,5.242296820409738,3.079677795267431,3,37.02,37.37,4,1,0,0,7,5,1,400.5,0,0,0 +3279,4035,7329,7332,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,4,9.482002154253228,9.799765173480301,0,2,0,-9,26,0,-1,-25.64468848585371,0,0,0,45,1,2,1,2,1,2019,1,2,20,7,45,42,15,1,7,1,0,42.94521922648875,42.94521922648875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.09,63.39,5,1,0,0,2,5,1,668.8,0,0,0 +3279,4035,7330,-9,7332,7329,3,1,0,17,2,0,3,1,2,0,7,2,0,3,0,5.656612158494673,5.522907337248187,2,0,0,0,-9,0,-915.5925910910278,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.120984343710347,0,0,0,41.23,59.35,5,1,0,0,2,5,1,668.8,0,0,0 +3279,4035,7331,-9,7332,7329,5,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.4178119760664,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,2,5,1,668.8,0,0,0 +3279,4035,7332,7329,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,2,7.255647540802313,6.916266549676192,0,2,0,-9,26,0,1,34.12139180971299,0,0,0,44,1,4,1,1,2,2019,1,1,5,0,13,20,15,1,0,1,0,10.31430765343997,10.31430765343997,0,0,0,0,0,0,0,0,0,0,.9101890712381417,0,0,0,59.06,35.36,6,1,0,0,2,5,1,668.8,0,0,0 +3279,4035,7333,-9,7332,7329,4,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.754266334281,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,2,5,1,668.8,0,0,0 +3280,4036,7334,7335,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,4,8.883565744231445,8.51896698604526,0,1,0,-9,7,0,1,30.74829153630485,0,0,1,36,1,4,1,1,1,2019,1,1,7,0,37,37,15,1,0,1,0,21.29108608011988,21.29108608011988,0,0,0,0,0,0,0,0,0,0,.181858151387189,0,0,0,51.83,57.2,6,1,0,0,7,5,0,1187.5,0,0,0 +3280,4036,7335,7334,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.433643591644554,8.890420648274024,0,1,0,-9,7,0,-1,105.9611110237626,0,0,0,37,1,4,1,2,2,2019,1,2,8,0,50,45,15,1,0,1,0,14.40805709725443,14.40805709725443,0,0,0,0,0,0,0,0,0,0,.2933351400108627,0,0,0,47.38,57.75,6,1,0,0,7,5,0,1187.5,0,0,0 +3281,4037,7336,7337,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,8.275261768456764,8.193706375518472,1,0,-9,10,0,2,111.5998739215978,0,0,0,70,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.599034480033704,8.540148674304676,0,0,57.06,57.76,7,1,0,0,7,4,1,692.5,0,0,0 +3281,4037,7337,7336,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,7.463597595267496,7.328887643437819,1,0,-9,10,0,-2,-74.77678603391787,0,0,0,72,2,5,3,2,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.814940624915845,7.538218292608767,4.586459836534651,3,51.77,58.57,6,1,0,0,7,4,1,692.5,0,0,0 +3282,4038,7338,-9,7340,7339,2,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-931.6249719249359,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,4,5,1,375.6666666666667,0,0,0 +3282,4038,7339,7340,-9,-9,3,1,1,44,1,0,1,0,1,-9,2,1,0,4,8.627959704215582,8.314421109339206,0,2,0,-9,2,0,-1,-.1880495653405839,0,0,0,45,2,3,1,-9,-9,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.115250320584233,0,0,0,48.87,58.55,6,1,0,0,4,5,1,375.6666666666667,0,0,0 +3282,4038,7340,7339,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,3,8.344531471009294,8.018972657928401,0,2,0,-9,2,0,1,18.24582459040424,0,0,0,44,1,4,1,3,2,2019,1,3,6,0,43,43,15,1,0,1,0,11.61821573486346,11.61821573486346,0,0,0,0,0,0,0,1,1,0,2.742301282969892,0,0,0,49.04,55.86,6,1,0,0,4,5,1,375.6666666666667,0,0,0 +3283,4039,7341,7342,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,5,8.804460715684289,8.510016788813138,0,1,0,-9,35,0,0,101.5125953819837,-9,0,0,59,1,4,1,2,2,2019,1,2,10,1,40,0,15,1,1,1,0,15.96121569136078,15.96121569136078,0,0,0,0,0,0,0,1,1,0,2.555574085771088,0,2.150715773229801,3,50.75,56.52,6,1,0,0,2,5,1,543.5,0,0,0 +3283,4039,7342,7341,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,9.240622470082421,9.041807538657878,0,1,0,-9,36,0,0,-70.01486875240266,0,0,0,59,1,5,1,2,1,2019,1,1,8,0,60,45,15,1,0,1,0,21.10315603275804,21.10315603275804,0,0,0,0,0,0,0,1,1,0,3.051177871247391,0,2.594983600132374,3,51.83,57.2,6,1,0,0,2,5,1,543.5,0,0,0 +3284,4040,7343,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1066.203185441124,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.9,37.87,6,4,0,0,6,1,0,610,0,0,0 +3285,4041,7344,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-891.1622200571341,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.23740221701981,3,36.69,19.91,2,1,1,0,9,1,0,415,0,0,0 +3285,4042,7345,-9,-9,-9,2,1,1,65,3,0,0,0,3,-9,4,3,0,1,0,6.347858066486663,6.146413571788863,3,0,0,0,-9,0,-979.1155675013837,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.478910471005991,19.90549206413663,3,38.05,23.32,3,1,0,1,9,2,0,136,0,0,0 +3286,4043,7346,7347,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.637740422501004,9.121082035969897,0,1,0,-9,6,0,0,-98.98988674207588,0,0,0,54,2,4,1,2,2,2019,1,1,6,0,55,55,15,1,0,1,0,15.07195615646121,15.07195615646121,0,0,0,0,0,0,0,0,0,0,0,0,7.546670545008326,3,58.56,46.45,6,1,0,0,7,5,0,485,0,0,0 +3286,4043,7347,7346,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,0,8.495126051366244,8.290333184688699,1,0,-9,6,0,0,-34.15952155626633,0,0,0,54,2,2,1,2,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.328736845159786,7.977422695569926,11.11289255089449,3,56.33,51.02,6,1,0,0,7,5,0,485,0,0,0 +3287,4044,7348,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,3,0,7.126223356763693,7.209276518021827,3,0,0,0,-9,0,-1032.200025804953,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.057297820286655,0,0,57.33,53.46,6,1,0,0,2,2,1,259,0,0,0 +3288,4045,7349,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1109.371015851426,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.2,44.5,4,1,0,1,2,1,0,345,0,0,0 +3289,4046,7350,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-875.9713654134906,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,13,1,1,988,0,0,0 +3290,4047,7351,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,7.555697975630298,7.907294329439528,3,0,0,0,-9,0,-972.6197875602512,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.678564892087165,12.23986257299586,3,56.67,42.78,6,1,0,0,11,3,1,331,0,0,0 +3291,4048,7352,7353,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,5.917968499765632,6.149445789084802,1,0,-9,37,0,-15,-120.4620414738904,0,0,0,79,2,1,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.044974653205356,117.5776972980943,1,51.48,39.17,4,4,0,0,7,2,1,291,0,0,0 +3291,4048,7353,7352,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,37,0,15,40.00686732839614,0,0,0,64,2,2,3,-9,-9,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,1,37.82709391963752,130.1330353842087,0,0,0,368.4942318591569,1,1,0,0,0,0,0,29.61,21.77,5,4,0,0,7,2,1,291,0,0,0 +3292,4049,7354,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,2,1,0,4,7.009911680552757,8.052506564422835,7.603169842887041,3,0,0,0,-9,0,-948.9799113279281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,20,15,1,0,-9,0,5.201054344543787,5.201054344543787,0,0,0,0,0,0,0,1,1,0,0,7.270593270199094,0,0,43.35,57.8,6,1,0,0,13,3,1,1707,0,0,0 +3293,4050,7355,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,3,0,6.903953881404955,7.077908681042029,3,0,0,0,-9,0,-985.9035265333333,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.141436564518002,7.05326932704668,0,0,59.31,49.81,7,1,0,0,9,2,0,275,0,0,0 +3294,4051,7356,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,4,3,0,5,7.889561363607569,8.698533460355847,7.922009492762961,3,0,0,0,-9,0,-1120.621726758916,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,17,26,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.539758757475792,0,0,57.06,57.76,6,1,0,0,5,5,1,992,0,0,0 +3295,4052,7357,7358,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.363823253848577,7.1830419627469,0,1,0,-9,34,0,-3,34.74412252930904,0,0,0,58,2,3,1,2,2,2019,1,2,8,0,18,20,15,1,0,1,0,8.98642196169409,8.98642196169409,0,0,0,0,0,0,0,0,0,0,2.905948825739908,0,0,0,58.15,52.91,6,1,0,0,7,5,1,617.5,0,0,0 +3295,4052,7358,7357,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,3,9.493409636468993,9.551206050324117,0,1,0,-9,34,0,3,-26.17418099160701,0,0,0,55,2,4,1,-9,-9,2019,1,1,11,0,45,40,15,1,0,1,0,35.56150581472092,35.56150581472092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,2,1,0,0,7,5,1,617.5,0,0,0 +3295,4053,7359,-9,7357,7358,3,1,0,23,2,0,0,0,1,-9,2,1,0,5,8.303696729143462,8.346016471154092,0,3,0,0,0,-9,0,-983.5297410762347,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,37,38,15,1,1,-9,1,13.45096963263138,13.45096963263138,0,0,0,0,0,0,0,0,0,0,5.712831472603635,0,0,0,57.06,57.76,6,1,0,0,7,4,1,366,0,0,0 +3296,4054,7360,-9,-9,-9,1,1,0,40,3,0,4,0,2,-9,2,1,0,3,7.702890124482809,8.051926284957979,0,4,0,0,0,-9,0,-1031.761315799326,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,19,17,15,1,0,-9,0,14.9428247771299,14.9428247771299,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,6,1,0,0,2,2,1,371.2,0,0,0 +3296,4054,7361,-9,7360,-9,3,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-880.7703814028303,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,1,371.2,0,0,0 +3296,4054,7362,-9,7360,-9,2,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1061.063252234996,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,1,371.2,0,0,0 +3296,4054,7363,-9,7360,-9,4,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-959.4285067869055,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,2,1,371.2,0,0,0 +3296,4054,7364,-9,7360,-9,5,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1042.342770606556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,1,371.2,0,0,0 +3297,4055,7365,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,4,8.541083932534796,8.452024956125637,0,3,0,0,0,-9,0,-844.5149365445844,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,35,36,15,1,0,-9,0,14.25344055984907,14.25344055984907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.9,52.09,4,4,0,0,8,5,0,562,0,0,0 +3298,4056,7366,7367,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,5,0,-3,99.25114920070247,0,0,0,69,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.107088085568764,0,0,0,34.87,55.38,6,1,0,0,5,1,0,1572,0,0,0 +3298,4056,7367,7366,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,2.141638960791255,2.206421089227441,1,0,-9,5,0,3,-67.03355066438435,0,0,0,66,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,14.39598663376476,0,0,0,0,1,1,0,0,2.450853962262959,0,3,59.06,32.53,7,1,0,0,5,1,0,1572,0,0,0 +3299,4057,7368,7370,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,9.207459818731408,8.648945635238302,0,2,0,-9,11,0,1,19.50736306852233,0,0,0,43,1,2,3,-9,-9,2019,2,1,14,4,42,40,15,1,4,3,0,18.8584926289532,18.8584926289532,0,0,0,0,0,0,0,1,1,0,.2960040158473647,0,0,2,46.16,58.62,5,1,0,0,10,4,1,487,0,0,0 +3299,4057,7369,-9,7370,7368,4,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-992.8753390549434,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,4,1,0,0,10,4,1,487,0,0,0 +3299,4057,7370,7368,-9,-9,1,1,0,43,1,0,2,0,1,-9,8,3,1,2,0,0,0,2,0,-9,23,0,-1,137.2260254432962,0,0,1,44,1,4,1,2,2,2019,3,2,15,0,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.69634939636581,3,44.92,25.83,6,1,0,0,10,4,1,487,0,0,0 +3299,4058,7371,-9,7370,7368,3,1,0,18,2,0,2,1,2,0,7,2,0,2,6.363163873527466,6.44879359301134,0,3,0,0,0,-9,0,-984.4019682331626,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,17,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.10737663833572,0,5.917168810531015,3,43.66,48.19,6,1,0,0,10,4,1,284,0,0,0 +3300,4059,7372,-9,7373,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1082.838123833378,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,2,0,0,4,1,0,597,0,0,0 +3300,4059,7373,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1046.172840654493,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.89414499720453,3,54.47,38.4,1,4,1,0,4,1,0,597,0,0,0 +3301,4060,7374,7375,-9,-9,2,1,0,65,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,8,0,-2,0,0,0,0,67,3,4,3,2,2,2019,4,1,25,11,0,0,15,3,11,4,0,0,0,1,0,22.20847976085653,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,3,1,0,0,13,1,0,349,0,0,0 +3301,4060,7375,7374,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,2,0,0,0,0,65,3,1,3,3,2,2019,4,2,13,4,0,0,15,4,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,74.82873404634928,1,44.81,57.83,6,1,0,0,13,1,0,349,0,0,0 +3301,4061,7376,-9,-9,-9,3,1,1,20,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1021.420655993709,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.76,59.88,5,1,0,0,13,1,0,347,0,0,0 +3302,4062,7377,7378,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,4,7.611897405302136,7.458087205217664,0,1,0,-9,4,0,-1,-77.30095497142337,0,1,1,30,2,1,3,3,2,2019,2,2,8,0,28,28,15,1,0,3,0,6.290369443722723,6.290369443722723,0,0,0,0,0,0,0,1,1,0,1.605998254317318,0,6.848088444682094,1,43.42,62.33,6,1,0,0,13,2,1,536.5,0,0,0 +3302,4062,7378,7377,-9,-9,2,1,1,30,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,4,0,1,-32.46320268330847,0,0,0,29,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.197933590526482,0,0,0,37.59,33.08,4,1,0,0,13,2,1,536.5,0,0,0 +3303,4063,7379,7380,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.100357273691595,7.301977045115336,0,1,0,-9,19,0,3,-141.3362938158726,0,0,0,53,2,3,1,-9,2,2019,1,2,17,4,28,20,15,1,4,1,0,5.134022715285904,5.134022715285904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.01,28.03,5,1,0,0,10,4,1,601,0,0,0 +3303,4063,7380,7379,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.346907407985157,8.136071270110477,0,1,0,-9,9,0,-3,28.83573347439338,0,0,0,56,2,3,1,3,-9,2019,1,1,17,5,47,46,15,1,5,1,0,10.35645055548852,10.35645055548852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.11,57.69,3,1,0,0,10,4,1,601,0,0,0 +3304,4064,7381,-9,7383,7382,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.6430229489488,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,1219.75,0,0,0 +3304,4064,7382,7383,-9,-9,1,1,1,38,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,9,0,0,37.66975105714491,0,0,0,38,1,4,1,2,2,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.79,57.73,6,1,0,0,2,5,1,1219.75,0,0,0 +3304,4064,7383,7382,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,4,9.480343536547489,9.60794606760167,0,2,0,-9,9,0,0,-47.98052652898679,0,0,1,38,2,3,3,2,2,2019,2,1,9,0,38,38,15,1,0,3,0,33.31999617701784,33.31999617701784,0,0,0,0,0,0,0,1,1,0,1.593780404656735,0,0,0,51.98,51.67,4,1,0,0,2,5,1,1219.75,0,0,0 +3304,4064,7384,-9,7383,7382,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.2902623955936,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,1219.75,0,0,0 +3305,4065,7385,7387,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,4,7.710762123100294,7.556682300053575,0,2,0,-9,1,-9,-2,7.932036628903436,-9,0,1,32,1,3,1,2,2,2019,1,3,12,0,20,0,15,1,0,1,0,11.59342482095775,11.59342482095775,0,0,0,0,0,0,0,0,0,0,0,0,31.02995308934427,3,25.39,66.76000000000001,6,1,0,0,6,4,1,1281.5,0,0,0 +3305,4065,7386,-9,7385,7387,2,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1050.265196542616,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,2,0,0,6,4,1,1281.5,0,0,0 +3305,4065,7387,7385,-9,-9,3,1,1,32,1,1,2,0,1,-9,2,1,0,3,8.243455331559167,8.431823966003289,0,2,0,-9,1,-9,2,13.3437623423611,-9,0,0,30,2,4,1,-9,-9,2019,1,1,8,0,50,0,15,1,0,1,0,10.38914513139821,10.38914513139821,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.32,50.22,5,2,0,0,6,4,1,1281.5,0,0,0 +3305,4065,7388,-9,7385,7387,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1057.721343317246,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,2,0,0,6,4,1,1281.5,0,0,0 +3306,4066,7389,7391,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,4,8.529591814845338,8.681472221008631,0,2,0,-9,11,0,8,-47.69430882135849,0,0,0,39,2,4,1,2,2,2019,1,1,12,3,41,41,15,1,3,1,0,11.71664745952222,11.71664745952222,0,0,0,0,0,0,0,1,1,0,3.143999669830999,0,6.136758196405849,3,50.79,48.24,5,1,0,0,7,4,1,2265.75,0,0,0 +3306,4066,7390,-9,7391,7389,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.351958587991,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,4,1,2265.75,0,0,0 +3306,4066,7391,7389,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,4,7.779013006954296,7.851097181393549,0,2,0,-9,11,0,-8,-68.43296669895639,0,0,1,47,2,4,1,2,2,2019,1,2,21,9,23,23,15,1,9,1,0,14.45323605147958,14.45323605147958,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.42,48.97,5,1,0,0,7,4,1,2265.75,0,0,0 +3306,4066,7392,-9,7391,7389,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.8447566646927,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,4,1,2265.75,0,0,0 +3307,4067,7393,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,2,1,0,3,7.409856599234707,7.46056940021245,0,3,0,0,0,-9,0,-969.7844220643316,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,30,15,1,0,-9,0,8.53295824944222,8.53295824944222,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.5,56.19,5,1,0,0,13,3,0,1151,0,0,0 +3307,4068,7394,-9,7393,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,4,6.941754506234845,7.333801562125817,0,3,0,0,0,-9,0,-942.5230537063256,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,40,33,15,1,0,-9,1,3.077264173814478,3.077264173814478,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.71,55.64,6,1,0,0,13,2,0,1931,0,0,0 +3308,4069,7395,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,8.133379496378801,7.97033799242643,0,3,0,0,0,-9,0,-1056.781036964909,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,35,35,15,1,1,-9,0,9.460097016983058,9.460097016983058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.82,49.49,5,1,0,0,9,3,1,803,0,0,0 +3308,4070,7396,-9,7395,-9,2,1,1,22,2,0,0,0,1,1,2,1,0,5,7.804200431403939,7.662568123112497,0,3,0,0,0,-9,0,-1025.109614559908,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,40,0,15,1,2,-9,1,6.953129349720344,6.953129349720344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.96,59.33,5,1,0,0,9,3,1,689,0,0,0 +3309,4071,7397,7398,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,3,7.624935829746593,7.62662053030253,0,1,0,-9,41,0,-3,-165.2554406332218,0,0,0,65,3,3,1,3,3,2019,1,2,11,0,20,20,15,1,0,1,0,7.883856116304832,7.883856116304832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.58,40.29,2,1,0,0,10,4,1,476,0,0,0 +3309,4071,7398,7397,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,3,8.062691079587255,8.316400144167444,6.412732119319683,1,0,-9,41,0,3,-34.5864719033633,0,0,0,62,3,3,1,3,3,2019,1,1,8,0,50,50,15,1,0,1,0,6.960655751057406,6.960655751057406,0,0,0,0,0,0,0,1,1,0,0,7.088814967328336,3.902002537520855,3,54.96,53.17,4,1,0,0,10,4,1,476,0,0,0 +3310,4072,7399,7400,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,8.638785259705063,8.407366782794414,1,0,-9,46,0,-1,47.29543062116431,0,0,0,66,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.645912949446606,8.781736162697193,2.176008201984901,3,56.26,41.57,6,1,0,0,11,5,1,332,0,0,0 +3310,4072,7400,7399,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,7.918489262416486,7.792131399872506,1,0,-9,46,0,1,-79.57849364769199,0,0,0,65,2,3,3,2,1,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8527910542003603,8.175219066874234,0,3,48.76,53.24,5,1,0,0,11,5,1,332,0,0,0 +3311,4073,7401,7402,-9,-9,1,1,1,32,1,1,2,0,1,-9,2,1,0,4,8.878605064963416,8.851147694053035,0,2,0,-9,12,0,-1,84.56257889578737,0,0,0,33,1,3,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,24.36965236265291,24.36965236265291,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,6,5,1,347,0,0,0 +3311,4073,7402,7401,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,3,8.218216627440389,8.303169587376908,0,2,0,-9,12,0,1,-70.83073171620056,0,0,1,32,1,4,1,2,1,2019,1,1,11,0,25,30,15,1,0,1,0,19.04796180598676,19.04796180598676,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,5,3,0,0,6,5,1,347,0,0,0 +3311,4073,7403,-9,7402,7401,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.410567924992,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,5,1,347,0,0,0 +3311,4073,7404,-9,7402,7401,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.081529859558,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,5,1,347,0,0,0 +3312,4074,7405,7406,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,3,9.01827186363928,8.848742493432434,0,2,0,-9,27,0,6,-61.67873168700762,0,0,0,47,1,4,1,-9,2,2019,1,2,17,6,48,54,15,1,6,1,0,17.71411726763228,17.71411726763228,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.84,61.77,5,1,0,0,4,5,1,1066,0,0,0 +3312,4074,7406,7405,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,4,8.727498158957841,9.060993127985927,0,2,0,-9,28,0,-6,-46.36481115839058,0,0,0,53,2,3,1,2,2,2019,1,1,12,1,45,43,15,1,1,1,0,13.50026282090195,13.50026282090195,0,0,0,0,0,0,0,1,1,0,1.127832800539244,0,11.68914455187086,3,36.09,59.23,3,1,0,0,4,5,1,1066,0,0,0 +3312,4075,7407,-9,7406,7405,3,1,1,22,2,0,1,0,1,1,3,3,0,4,0,4.418359850801652,4.363316616165274,3,0,0,0,-9,0,-1000.026770809973,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.595512372418012,0,0,0,49.41,58.28,3,1,1,0,4,1,1,1168,0,0,0 +3313,4076,7408,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1074.088457203514,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,32,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,1,1,0,0,7,1,0,1386,0,0,0 +3314,4077,7409,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,3,8.283927451153628,8.340497651721822,0,3,0,0,0,-9,0,-954.5646603447856,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,36,15,1,0,-9,0,9.749834155982137,9.749834155982137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.3,58.7,6,1,0,0,8,4,1,649,0,0,0 +3315,4078,7410,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.739796635760303,7.688244523462732,0,3,0,0,0,-9,0,-955.7653430568872,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,41,0,15,1,1,-9,0,6.442504511130335,6.442504511130335,0,0,0,0,0,0,0,0,0,0,0,0,12.19293909182328,3,41.17,59.31,7,1,0,0,11,3,1,658,0,0,0 +3315,4079,7411,-9,7412,-9,3,1,0,17,2,0,0,1,2,-9,7,2,0,4,0,5.885795419258837,6.008035333208722,3,0,-9,0,-9,0,-906.1360626218176,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.289532269308692,0,0,0,51.14,57.93,3,1,0,0,11,5,1,2713,0,0,0 +3315,4079,7412,-9,-9,-9,2,1,0,39,3,0,0,0,2,-9,2,1,0,3,9.320139904009439,9.25374332058894,0,3,0,-9,0,-9,0,-1082.572664554664,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,1,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.335774458286163,0,3.942243857993433,3,46.51,40.56,5,1,0,0,11,5,1,2713,0,0,0 +3316,4080,7413,7417,-9,-9,2,1,0,38,1,0,3,0,1,-9,2,1,0,5,8.760166491894186,8.518588574889378,0,2,0,-9,9,0,-2,105.0110866867972,0,0,1,40,1,3,1,-9,-9,2019,1,1,6,0,38,32,15,1,0,1,0,26.65452289358432,26.65452289358432,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,56.93,6,1,0,0,13,5,1,962.8,0,0,0 +3316,4080,7414,-9,7413,7417,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.751436124258,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,962.8,0,0,0 +3316,4080,7415,-9,7413,7417,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.493415552407,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,1,962.8,0,0,0 +3316,4080,7416,-9,7413,7417,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.9187103409041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,13,5,1,962.8,0,0,0 +3316,4080,7417,7413,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,3,8.357299081879551,8.475967138721291,0,2,0,-9,9,0,2,43.27430724239362,0,0,0,38,1,5,1,2,2,2019,1,2,23,11,43,41,15,1,11,1,0,14.53429258333038,14.53429258333038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.73,64.27,3,1,0,0,13,5,1,962.8,0,0,0 +3317,4081,7418,-9,-9,-9,1,1,0,38,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1165.458008324083,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.01,54.19,1,1,1,1,5,1,0,383,0,0,0 +3317,4082,7419,-9,7418,-9,2,1,1,20,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1066.416868255686,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,3,1,0,1,5,1,0,417,0,0,0 +3318,4083,7420,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,7.04516062562319,6.839088467409569,3,0,0,0,-9,0,-1056.744550538828,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,4.174135382628474,0,1,1,0,0,7.070703717090419,0,0,55.76,18.3,6,1,0,0,7,2,1,202,0,0,0 +3319,4084,7421,-9,-9,-9,1,1,0,85,3,0,0,0,1,-9,4,3,0,4,0,8.447872810841627,8.645904804751316,3,0,0,0,-9,0,-1071.455555557839,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.053211476564818,8.737880210408113,0,0,58.99,41.57,6,1,0,0,6,5,1,1356,0,0,0 +3320,4085,7422,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-992.7121215343961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,2.944823738246222,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,11,1,1,798,0,0,0 +3321,4086,7423,7424,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,4,9.800402214942004,9.791295561272234,0,1,0,-9,5,0,24,-38.33743595840138,0,0,0,37,2,5,3,2,2,2019,2,2,9,0,55,55,15,1,0,3,0,26.46608271176877,26.46608271176877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,6,3,0,0,4,5,1,658,0,0,0 +3321,4086,7424,7423,-9,-9,2,1,0,37,1,0,0,0,2,-9,3,3,0,5,5.246709159358553,5.273019025849509,0,1,0,-9,5,0,-24,62.9801746632838,0,0,1,61,1,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,1,0,4,5,1,658,0,0,0 +3322,4087,7425,7426,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,6.695567410491136,6.48169447804205,1,0,-9,10,0,1,-127.7194283735126,0,0,0,75,3,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.49682959891863,0,0,57.16,56.15,6,1,0,0,11,2,1,493,0,0,0 +3322,4087,7426,7425,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-1,7.169277085074649,0,0,0,76,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,1,0,0,11,2,1,493,0,0,0 +3323,4088,7427,7428,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,2,7.571258720625707,7.262422953350392,0,1,0,-9,2,0,3,-45.78621110555974,0,0,1,33,2,5,1,-9,-9,2019,1,1,12,0,22,22,15,1,0,1,0,8.072605073848839,8.072605073848839,0,0,0,0,0,0,0,1,1,0,.8200670212604301,0,0,0,37.17,31.84,4,1,0,1,11,2,0,1546,0,0,0 +3323,4088,7428,7427,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,5,0,0,0,1,0,-9,2,0,-3,96.44447340349934,0,0,0,36,2,2,1,2,2,2019,1,2,9,0,0,33,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.536930366015057,0,0,3,49.25,61.25,6,1,0,0,11,2,0,1546,0,0,0 +3324,4089,7429,-9,-9,7431,1,1,0,55,2,0,0,0,2,-9,97,3,0,1,0,0,0,3,0,-9,0,0,0,-973.9724566418572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,5,0,36,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.038723886136636,3,30.4,24.1,5,3,0,1,8,1,0,879,0,0,0 +3324,4090,7430,-9,7429,7431,2,1,0,32,2,0,0,0,1,-9,2,1,0,4,9.235449214836768,9.069255047537824,0,3,0,0,0,-9,0,-883.6164585849957,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,80,47,15,1,0,-9,1,9.931485278890648,9.931485278890648,0,0,0,0,0,0,0,0,0,0,1.697716801627795,0,0,0,51.83,57.2,6,3,0,0,8,5,0,647,0,0,0 +3324,4091,7431,-9,-9,-9,3,1,1,59,3,0,0,0,1,-9,1,1,0,3,5.135562018190943,4.87945691468912,0,3,0,-9,0,1,0,-1060.768494017252,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,30,50,15,1,1,-9,0,.7936628232309875,.7936628232309875,0,0,0,0,0,0,0,0,0,0,6.564738501110917,0,0,0,51,49,5,3,0,0,8,2,0,699,0,0,0 +3325,4092,7432,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,1,1,0,4,7.621886746721765,7.558697892867041,0,3,0,0,0,-9,0,-958.2055394652642,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,50,48,15,1,0,-9,0,4.879347432439117,4.879347432439117,0,0,0,0,0,0,0,1,1,0,4.406218219385598,0,0,0,50.34,56.4,6,1,0,0,2,3,1,248,0,0,0 +3326,4093,7433,-9,7434,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.046405804761338,6.901311275903098,0,3,0,0,0,-9,0,-924.9793953353364,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,18,16,15,1,6,-9,1,6.051091116340487,6.051091116340487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.65,51.87,4,1,0,0,7,2,0,273,0,0,0 +3326,4094,7434,7435,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,6.839425855336073,7.16325942698368,0,1,0,-9,4,0,-5,-23.2501375517533,0,0,0,58,3,3,1,-9,-9,2019,1,3,13,1,23,21,15,1,1,1,0,5.5484563894201,5.5484563894201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.64,38.99,4,1,0,0,7,4,0,666.5,0,0,0 +3326,4094,7435,7434,-9,-9,3,1,1,58,1,0,0,0,3,-9,2,1,0,3,8.029741993866171,7.901183053476514,0,1,0,-9,4,0,5,-104.5059756266551,0,0,0,53,2,3,1,-9,-9,2019,1,1,10,0,39,40,15,1,1,1,0,9.831953297733676,9.831953297733676,0,0,0,0,0,0,0,0,0,0,3.402137969026062,0,0,0,51,49,5,1,0,0,7,4,0,666.5,0,0,0 +3327,4095,7436,7438,-9,-9,1,1,0,51,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,23,0,2,100.8971021275989,0,0,0,49,2,4,1,-9,-9,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.12,51.57,6,1,0,0,4,2,0,308.6666666666667,0,0,0 +3327,4095,7437,-9,7436,7438,4,1,1,16,2,0,3,1,3,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-991.6034851206111,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.01,55.15,6,1,0,0,4,2,0,308.6666666666667,0,0,0 +3327,4095,7438,7436,-9,-9,2,1,1,49,1,0,3,0,2,-9,2,1,0,4,8.171228277442152,8.046339976796389,0,2,0,-9,23,0,-2,-34.13199013621947,0,0,0,51,2,4,3,-9,-9,2019,2,1,10,0,40,34,15,1,0,3,0,8.249599594854528,8.249599594854528,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,6,1,0,0,4,2,0,308.6666666666667,0,0,0 +3327,4096,7439,-9,7436,7438,3,1,1,19,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-996.4351890450096,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.12,54.8,6,1,0,0,4,1,0,681,0,0,0 +3328,4097,7440,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,4,9.644111315255046,9.902739551044357,0,3,0,0,0,-9,0,-932.5818262611765,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,57,0,15,1,0,-9,0,27.9753925801951,27.9753925801951,0,0,0,0,0,0,0,0,0,0,6.330074499679135,0,0,0,54.2,57.49,6,1,0,0,9,5,1,643,0,0,0 +3329,4098,7441,-9,-9,-9,1,1,0,44,3,0,3,0,1,-9,2,1,0,5,6.930212189937984,7.948319048193914,7.003822194625092,4,0,-9,0,1,0,-991.36637451899,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,5,5,15,1,7,-9,0,18.63071140389748,18.63071140389748,0,0,0,0,0,0,0,1,1,0,7.102822786752184,0,0,0,38.24,63.73,4,1,0,0,9,2,1,462,0,0,0 +3329,4098,7442,-9,7441,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-985.025205947913,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,1,462,0,0,0 +3330,4099,7443,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,-9,0,0,0,-871.5698954032249,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.09,45.59,3,1,0,0,13,1,0,335,0,0,0 +3330,4100,7444,-9,-9,-9,2,1,1,29,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,0,0,-1196.180982908373,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.63,60.92,5,1,0,0,13,1,0,461,0,0,0 +3331,4101,7445,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,3,8.577591677931881,8.536286104802965,6.633782340079973,3,0,0,0,-9,0,-940.1332482253772,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,42,42,15,1,5,-9,0,13.01338662125505,13.01338662125505,0,0,0,0,0,0,0,0,0,0,0,6.9472460913836,0,0,43.4,31.31,6,1,0,0,11,5,0,102,0,0,0 +3332,4102,7446,-9,-9,-9,1,1,1,53,3,0,1,0,1,-9,2,1,0,5,9.316536733527336,9.389789293901778,0,4,0,0,0,-9,0,-929.2222750908919,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,48,44,15,1,0,-9,0,28.06970185555351,28.06970185555351,0,0,0,0,0,0,0,1,1,0,3.533235870502424,0,0,0,51.14,60.45,6,1,0,0,5,5,1,138,0,0,0 +3333,4103,7447,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,4,8.921873491250313,8.682498501842888,0,3,0,0,0,-9,0,-1102.654559337361,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,77,37,15,1,0,-9,0,9.304880172992346,9.304880172992346,0,0,0,0,0,0,0,1,1,0,7.766903679085838,0,0,0,57.16,56.15,2,1,0,0,12,5,1,443,0,0,0 +3334,4104,7448,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,1,8.509790835812789,8.45927267168153,0,3,0,0,0,-9,0,-1016.78517309516,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,42,42,15,1,1,-9,0,15.02677422401709,15.02677422401709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.93,35.19,3,1,0,1,8,5,0,606,0,0,0 +3335,4105,7449,7450,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,5.272885629317524,5.497153396271306,1,0,-9,36,0,-4,-33.71975227491704,0,0,0,64,1,4,3,2,2,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.528681565418357,5.557530834617011,36.64097569524984,3,35.62,49.76,3,1,0,0,9,3,1,903,0,0,0 +3335,4105,7450,7449,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,8.132261067945656,8.162228156932898,1,0,-9,36,0,4,-30.68655599957061,0,0,0,60,2,4,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.631273702562314,8.145070076566414,45.90857138018471,3,51.83,57.2,6,1,0,0,9,3,1,903,0,0,0 +3336,4106,7451,7452,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,3,7.958458372591714,7.708133276067564,0,1,0,-9,6,0,26,-37.31119579980678,0,0,0,37,2,4,1,-9,-9,2019,1,1,12,0,8,60,15,1,0,1,0,38.10294672677988,38.10294672677988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.49,44.77,2,1,0,0,1,4,0,479,0,0,0 +3336,4106,7452,7451,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,4,8.038440764877576,7.619889372016028,0,1,0,-9,6,0,-26,-12.27333694161709,0,0,1,63,3,3,1,2,2,2019,1,2,22,10,40,40,15,1,10,1,0,6.950950665143602,6.950950665143602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,5,1,0,0,1,4,0,479,0,0,0 +3337,4107,7453,7454,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,3,8.983546028806359,9.31924135372722,0,2,0,-9,15,0,8,-188.3825522338054,0,0,0,38,2,4,1,3,3,2019,1,2,13,2,41,41,15,1,2,1,0,23.14120125296857,23.14120125296857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.66,60.65,4,1,0,0,9,5,0,416,0,0,0 +3337,4107,7454,7453,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,4,7.73009339145005,7.502552426555469,0,2,0,-9,16,0,-8,57.05690153567142,0,0,1,46,1,3,1,3,3,2019,1,1,8,0,32,12,15,1,0,1,0,6.666797347457916,6.666797347457916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.9,52.64,6,3,0,0,9,5,0,416,0,0,0 +3338,4108,7455,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,4,9.485382215866956,9.269183731660393,0,3,0,0,0,-9,0,-1023.854840364037,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,40,40,15,1,0,-9,0,27.64108248940398,27.64108248940398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,8,5,1,222,0,0,0 +3339,4109,7456,7457,-9,-9,1,1,1,44,1,0,1,0,3,-9,1,1,0,3,8.320634168289054,8.430166329835656,0,2,0,-9,4,0,7,61.00619162520439,0,0,0,37,2,2,1,2,3,2019,1,3,9,0,40,50,15,1,0,1,0,13.13636208322645,13.13636208322645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.46,43.38,6,1,0,0,9,4,0,385,0,0,0 +3339,4109,7457,7456,-9,-9,3,1,0,37,1,0,1,0,2,-9,2,1,0,2,7.577382179643855,7.720498055866251,0,2,0,-9,4,0,-7,-48.97949298806017,0,0,1,44,3,3,1,-9,-9,2019,1,1,18,6,28,35,15,1,6,1,0,7.764306273065802,7.764306273065802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.12,44.97,6,1,0,0,9,4,0,385,0,0,0 +3339,4110,7458,-9,-9,7456,2,1,1,18,2,0,1,1,2,-9,7,2,0,3,6.706750805981541,6.67012455192457,0,3,0,0,0,-9,0,-932.7003429652573,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,18,5,20,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.21,51.32,4,1,0,0,9,4,0,831,0,0,0 +3340,4111,7459,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,2,1,0,2,8.399433309891229,8.556523374045831,2.996887134121704,3,0,0,0,-9,0,-1007.961549024184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,44,42,15,1,0,-9,0,12.12434581661037,12.12434581661037,0,0,0,0,0,0,0,0,0,0,3.514114673021951,3.625023247604975,10.21302688997366,3,61.28,35.65,6,1,0,0,9,4,0,204,0,0,0 +3341,4112,7460,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1021.145375761898,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.2,21.18,5,1,0,0,4,1,0,1303,0,0,0 +3342,4113,7461,7462,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,2,6.564011476509757,6.635236227483272,0,1,0,-9,12,0,4,-96.61399847376261,0,0,0,44,1,3,1,3,2,2019,1,2,20,8,11,16,15,1,8,1,0,8.441388469009841,8.441388469009841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.14,56.54,4,3,0,0,5,4,0,569,0,0,0 +3342,4113,7462,7461,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,3,8.729361062677901,8.570632925864556,0,1,0,-9,8,0,-4,-67.96298304299532,0,0,0,48,1,2,1,3,2,2019,1,1,12,0,60,44,15,1,0,1,0,12.10561800565291,12.10561800565291,0,0,0,0,0,0,0,0,0,0,2.80621071962877,0,0,0,40.01,53.23,4,3,0,0,5,4,0,569,0,0,0 +3343,4114,7463,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,2,0,7.175417437526482,6.822205168334113,3,0,0,0,-9,0,-922.1290829831396,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.378502153470316,6.672831928789661,0,0,61.6,35.95,7,1,0,0,1,2,0,666,0,0,0 +3344,4115,7464,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1012.810397053417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.8,44.07,5,1,0,0,13,1,1,286,0,0,0 +3344,4116,7465,-9,-9,-9,2,1,1,54,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-937.9665473762587,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.42,52.58,6,1,1,0,13,1,1,693,0,0,0 +3345,4117,7466,7468,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,9.273000072183338,9.151721287335205,0,2,0,-9,8,0,0,7.050158547973324,0,0,0,43,1,4,1,-9,-9,2019,1,1,6,0,55,60,15,1,0,1,0,18.30969569889008,18.30969569889008,0,0,0,0,0,0,0,1,1,0,0,0,3.167730561784284,3,57.16,56.15,6,1,0,0,9,5,1,252,0,0,0 +3345,4117,7467,-9,7468,7466,4,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-926.3267647274347,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,9,5,1,252,0,0,0 +3345,4117,7468,7466,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,7.814044818545739,7.785177802542398,0,2,0,-9,8,0,0,55.69561535616157,0,0,1,43,1,4,1,2,2,2019,1,2,8,0,26,26,15,1,0,1,0,11.1343664006532,11.1343664006532,0,0,0,0,0,0,0,1,1,0,0,0,9.718405685882571,3,52.82,53.97,6,1,0,0,9,5,1,252,0,0,0 +3345,4117,7469,-9,7468,7466,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1202.662486420539,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,9,5,1,252,0,0,0 +3346,4118,7470,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,1,7.607791348178985,6.928846270040282,0,3,0,0,0,-9,0,-1042.379956520272,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,30,40,15,1,12,-9,0,4.913021765634623,4.913021765634623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.34,41.27,1,2,0,1,12,3,0,307,0,0,0 +3347,4119,7471,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,4,0,6.092532713563592,5.935024634552102,3,0,0,0,-9,0,-963.5418823738022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.124802890929169,0,0,56.11,41.54,6,1,0,0,11,2,1,827,0,0,0 +3348,4120,7472,7473,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.589999499097052,8.963812076690051,7.389504177634868,1,0,-9,1,-9,1,20.46669583895419,-9,0,0,58,2,3,1,-9,-9,2019,1,2,6,0,40,0,15,1,0,1,0,21.43738846364468,21.43738846364468,0,0,0,0,0,0,0,0,0,0,8.060572021809199,5.828680362763055,10.71213274204664,3,59.14,52.5,6,1,0,0,13,5,1,321,0,0,0 +3348,4120,7473,7472,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.604518392943937,8.782799755780861,0,1,0,-9,31,-9,-1,-113.4377527108292,-9,0,0,59,2,4,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,23.44301708420963,23.44301708420963,0,0,0,0,0,0,0,0,0,0,3.59810353795402,0,8.507258534408656,3,58.08,40.76,6,1,0,0,13,5,1,321,0,0,0 +3349,4121,7474,-9,7476,-9,2,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-968.6160855626962,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,9,1,1,1374,0,0,0 +3349,4121,7475,-9,7476,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1047.88948152147,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,1,1,1374,0,0,0 +3349,4121,7476,-9,-9,-9,1,1,0,42,3,0,3,0,1,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1067.65377884014,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,17,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.58475837070993,3,28.8,62.45,3,1,0,0,9,1,1,1374,0,0,0 +3349,4121,7477,-9,7476,-9,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1060.67164900757,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,1,1,1374,0,0,0 +3350,4122,7478,-9,-9,-9,1,1,1,54,3,0,0,0,1,-9,2,1,0,4,9.020261986839985,9.128031382255665,0,3,0,0,0,-9,0,-943.7633989945069,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,29.90363401871639,29.90363401871639,0,0,0,0,0,0,0,1,1,0,7.35355491250986,0,0,0,57.16,56.15,6,1,0,0,6,5,0,222,0,0,0 +3351,4123,7479,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,5.249742402341783,5.21458988906401,3,0,0,0,-9,0,-1006.089071508111,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,7.371980500156504,0,0,0,0,29.16500342518211,1,1,0,5.521813217257192,4.873277765140265,0,0,52,44,6,1,0,0,11,2,1,749,0,0,0 +3351,4124,7480,-9,7479,-9,2,1,1,59,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-993.2517061611708,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,84,75,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.177299407631291,0,0,0,57.16,56.15,6,1,0,0,11,1,1,282,0,0,0 +3352,4125,7481,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-943.3816001190635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.508818363951366,0,72.97981605088472,3,59.96,22.85,5,1,0,0,11,2,0,2044,0,0,0 +3352,4126,7482,-9,-9,-9,2,1,0,45,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1098.938186175398,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,44.56,5,1,0,0,11,1,0,330,0,0,0 +3353,4127,7483,7484,-9,-9,1,1,1,40,1,0,0,0,1,-9,1,1,0,3,8.381710768786927,8.412828799375747,0,1,0,-9,7,0,4,-8.973187421208531,0,0,0,36,2,4,1,1,2,2019,1,2,10,0,40,40,15,1,0,1,0,11.30251384711596,11.30251384711596,0,0,0,0,0,0,0,1,1,0,1.742767385465996,0,0,0,52.99,51.28,6,1,0,0,8,5,1,439,0,0,0 +3353,4127,7484,7483,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,4,9.181063459428369,8.995038172873885,0,1,0,-9,7,0,-4,-57.28661970224508,0,0,1,40,1,3,1,-9,-9,2019,1,1,10,0,43,47,15,1,0,1,0,21.84945244150038,21.84945244150038,0,0,0,0,0,0,0,1,1,0,6.835024631631297,0,0,0,46.44,59.62,6,1,0,0,8,5,1,439,0,0,0 +3354,4128,7485,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,1,0,-1017.183006868505,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,8.094915306155503,0,0,1,1,0,0,0,0,0,40.23,25.31,5,1,0,0,11,1,1,211,0,0,0 +3355,4129,7486,-9,7488,7487,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.249283447698,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,1,0,867.6,0,0,0 +3355,4129,7487,7488,-9,-9,4,1,1,33,1,1,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,4,0,2,0,0,0,0,31,3,3,3,-9,-9,2019,4,1,6,0,0,36,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,6,1,1,1,10,1,0,867.6,0,0,0 +3355,4129,7488,7487,-9,-9,1,1,0,31,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-2,0,0,0,1,33,2,4,3,-9,-9,2019,4,4,13,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.96,65.7,6,1,0,1,10,1,0,867.6,0,0,0 +3355,4129,7489,-9,7488,7487,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-896.0634075929104,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,1,0,867.6,0,0,0 +3355,4129,7490,-9,7488,7487,2,1,1,13,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.0690648681056,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,1,0,867.6,0,0,0 +3356,4130,7491,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,5,8.135412799254507,8.315725404717803,7.555630797407979,3,0,0,0,-9,0,-828.7727698931745,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,50,15,1,0,-9,0,5.951084134241468,5.951084134241468,0,0,0,0,0,0,0,1,1,0,9.154573279253055,7.347261289859698,0,0,54.67,57.49,7,1,0,0,10,4,1,955,0,0,0 +3357,4131,7492,7493,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,4,8.2645946623449,8.180762165407717,0,2,0,-9,9,0,7,-78.3800508384937,0,0,0,39,1,3,1,-9,-9,2019,1,1,9,0,19,19,15,1,0,1,0,20.3885633241526,20.3885633241526,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,903.6666666666666,0,0,0 +3357,4131,7493,7492,-9,-9,1,1,1,39,1,0,1,0,1,-9,2,1,0,3,9.007922120799655,8.845059391772123,0,2,0,-9,15,0,-7,20.73759319006336,0,0,0,46,1,4,1,2,1,2019,1,2,10,1,40,75,15,1,1,1,0,16.5984206524796,16.5984206524796,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,6,4,0,0,12,5,1,903.6666666666666,0,0,0 +3357,4131,7494,-9,7492,7493,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.232660238625,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,903.6666666666666,0,0,0 +3358,4132,7495,7496,-9,-9,1,1,1,73,1,0,0,0,2,-9,1,1,0,4,7.32343927590968,7.226705271130156,0,1,0,-9,9,0,21,-80.42454425848771,0,0,0,52,2,5,3,-9,-9,2019,2,2,8,0,12,12,15,1,0,3,0,15.76388569459374,15.76388569459374,0,0,0,0,0,0,0,1,1,0,4.649771220775826,0,0,0,51.24,58.84,6,1,0,0,7,3,1,230.5,0,0,0 +3358,4132,7496,7495,-9,-9,2,1,0,52,1,0,0,0,2,-9,6,3,0,5,0,6.335610130162364,5.892706931934142,1,0,-9,9,0,-21,68.49211663221232,0,0,0,73,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.045301036973551,0,0,0,62.39,56.71,7,1,0,0,7,3,1,230.5,0,0,0 +3359,4133,7497,-9,-9,-9,1,1,0,25,2,0,2,0,2,-9,2,1,0,2,7.216139917999903,7.32711287871271,0,4,0,0,0,-9,0,-952.4960325721916,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,12,24,24,15,1,12,-9,0,6.676078146653746,6.676078146653746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.08,40.26,4,1,0,1,2,2,0,798.3333333333334,0,0,0 +3359,4133,7498,-9,7497,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1116.911012975882,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,798.3333333333334,0,0,0 +3359,4133,7499,-9,7497,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-951.3954658588405,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,798.3333333333334,0,0,0 +3360,4134,7500,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,5,0,6.960745527248418,7.136272736205409,3,0,0,0,-9,0,-890.1788042352002,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.198517365537158,0,0,57.06,57.76,7,1,0,0,1,2,0,613,0,0,0 +3361,4135,7501,7502,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,9.004480810928307,8.759199834223946,0,1,0,-9,13,0,3,25.70434561183117,0,0,0,51,1,3,1,2,2,2019,1,2,8,0,38,40,15,1,0,1,0,19.2553967494838,19.2553967494838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.86,49.95,6,1,0,0,6,5,1,195,0,0,0 +3361,4135,7502,7501,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,3,9.1538861411579,9.346295865155497,0,1,0,-9,13,0,-3,138.5335657592904,0,0,0,54,2,3,1,2,2,2019,1,1,11,0,32,32,15,1,0,1,0,28.19286588600102,28.19286588600102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,31.2,6,1,0,0,6,5,1,195,0,0,0 +3361,4136,7503,-9,7502,7501,3,1,0,22,2,0,0,0,3,-9,2,1,0,4,6.805054107322577,6.875910485299424,0,3,0,0,0,-9,0,-1037.473884815886,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,36,15,1,2,-9,1,9.011207891692349,9.011207891692349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,62.46,5,1,0,0,6,2,1,589,0,0,0 +3362,4137,7504,-9,7506,-9,4,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-960.3568593868513,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,1,592.4,0,0,0 +3362,4137,7505,-9,7506,-9,5,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.5003577640538,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,1,592.4,0,0,0 +3362,4137,7506,-9,-9,-9,1,1,0,32,3,0,4,0,3,-9,6,3,0,3,0,6.967460026656086,7.483169888021381,4,0,-9,0,1,0,-857.4726077775822,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,12,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.790115696451115,0,0,0,35.07,44.55,4,1,0,0,6,2,1,592.4,0,0,0 +3362,4137,7507,-9,7506,-9,3,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.5393212143213,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,2,1,592.4,0,0,0 +3362,4137,7508,-9,7506,-9,2,1,1,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-967.4774504324774,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,2,1,592.4,0,0,0 +3363,4138,7509,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,5,0,8.049519601323441,7.883938675515858,3,0,0,0,-9,0,-943.1344271462856,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.881021749262986,8.175586585897925,13.59514799557704,3,62.15,49.94,7,1,0,0,13,3,1,435,0,0,0 +3364,4139,7510,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1032.284450359363,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.46,23.66,4,1,0,0,9,1,0,781,0,0,0 +3365,4140,7511,7512,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,2,0,7.534133256734999,7.87333766593447,1,0,-9,13,0,5,-42.75182718585695,0,0,0,57,3,3,1,2,2,2019,3,2,22,6,0,0,15,4,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.439528643639203,0,0,61.93,16.18,6,1,0,0,4,4,1,572,0,0,0 +3365,4140,7512,7511,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,3,7.867656893929572,7.816194072068543,0,1,0,-9,13,0,-5,-78.61177334134096,0,0,0,62,3,2,3,2,2,2019,2,1,8,1,43,43,15,1,1,4,0,8.715141074568034,8.715141074568034,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,4,4,1,572,0,0,0 +3366,4141,7513,-9,-9,-9,1,1,0,68,2,0,0,0,1,-9,4,3,0,3,0,7.619761754643211,7.373104089105076,3,0,0,0,-9,0,-1146.658541646278,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.121193580584503,8.068193808328061,4.289873520475306,3,35.02,49.06,3,1,0,1,4,3,1,324,0,0,0 +3366,4142,7514,-9,7513,-9,2,1,0,31,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1079.544661278981,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,35,12,0,20,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,8.408114562700343,0,0,0,24.84,31.03,1,1,0,1,4,1,1,204,0,0,0 +3367,4143,7515,7516,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,3,-52.14795739734532,0,0,0,69,3,5,1,3,-9,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,1,0,8.131984384602857,0,0,0,0,1,1,0,0,0,0,0,63.26,29.17,7,1,0,0,11,4,0,484.5,0,0,0 +3367,4143,7516,7515,-9,-9,2,1,1,69,1,0,0,0,3,-9,2,1,0,5,8.420495163072724,8.503560187675959,6.985122553761459,1,0,-9,6,0,-3,48.72377565495024,0,0,0,72,3,2,3,3,3,2019,2,1,10,0,38,39,15,1,0,4,0,15.14475885005512,15.14475885005512,0,0,0,0,0,0,0,1,1,0,0,7.028768078366674,0,0,41.07,60.93,5,1,0,0,11,4,0,484.5,0,0,0 +3368,4144,7517,-9,-9,-9,3,1,0,36,2,0,0,0,1,-9,2,1,0,1,8.233073999108965,8.229279450300583,0,3,0,0,0,-9,0,-995.5389659689255,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,30,12,32,40,15,1,12,-9,1,16.46297075982087,16.46297075982087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.78,34.25,1,2,0,0,8,4,1,791,0,0,0 +3369,4145,7518,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-975.8358542782336,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,4.613263317753831,0,0,0,0,52.08416538026653,1,1,0,0,0,0,0,52,47,5,1,0,0,12,1,0,324,0,0,0 +3370,4146,7519,-9,-9,-9,1,1,0,39,3,1,4,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1025.57943364735,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,112.376121922534,3,48.28,60.18,7,1,0,0,9,1,0,666.6,0,0,0 +3370,4146,7520,-9,7519,-9,3,1,1,13,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1118.430324818522,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,1,0,666.6,0,0,0 +3370,4146,7521,-9,7519,-9,2,1,1,15,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.907778571627,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,1,0,666.6,0,0,0 +3370,4146,7522,-9,7519,-9,4,1,1,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-945.7708723708797,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,666.6,0,0,0 +3370,4146,7523,-9,7519,-9,5,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1144.723200897233,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,1,0,666.6,0,0,0 +3371,4147,7524,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,8,3,1,1,0,0,0,4,0,-9,0,1,0,-1030.99322871496,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,1,4,1,0,580,0,0,0 +3371,4147,7525,-9,7524,-9,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-981.6002663136303,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,4,1,0,580,0,0,0 +3371,4148,7526,-9,7524,-9,2,1,1,20,2,0,2,0,2,-9,2,1,0,5,7.945195862999005,7.661288070845867,0,3,0,0,0,-9,0,-943.9423396108268,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,4,0,0,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.104070850250928,0,0,3,42.85,62.85,5,1,0,0,4,3,0,609,0,0,0 +3371,4149,7527,-9,7524,-9,3,1,0,18,2,0,2,0,2,-9,7,2,0,2,7.156293388162469,6.957864749330875,0,3,0,0,0,-9,0,-1009.5531845446,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,8,12,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.23724537783754,0,25.82,47.44,5,1,0,1,4,3,0,136,0,0,0 +3372,4150,7528,7530,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.160684475257789,7.362493222168517,0,2,0,-9,26,0,1,-20.05801088847485,0,0,1,41,2,4,1,1,2,2019,1,2,12,0,30,32,15,1,0,1,0,6.401894074478027,6.401894074478027,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.44,59.97,4,1,0,0,9,3,1,451,0,0,0 +3372,4150,7529,-9,7528,7530,4,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-992.4677924693785,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,9,3,1,451,0,0,0 +3372,4150,7530,7528,-9,-9,2,1,1,41,1,0,2,0,2,-9,1,1,0,4,7.925231870748449,7.76169853508721,0,2,0,-9,10,0,-1,-43.38274710285765,0,0,0,42,2,3,1,-9,-9,2019,1,1,10,0,40,45,15,1,1,1,0,6.155055252151271,6.155055252151271,0,0,0,0,0,0,0,1,1,0,6.83874643488846,0,0,0,50,56,5,1,0,0,9,3,1,451,0,0,0 +3372,4150,7531,-9,7528,7530,3,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1036.207194090704,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,5,1,0,0,9,3,1,451,0,0,0 +3373,4151,7532,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,2,8.481156390049973,8.556146808482039,0,3,0,0,0,-9,0,-987.9368515929116,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,5,37,37,15,1,5,-9,1,14.83799380046174,14.83799380046174,0,0,0,0,0,0,0,1,1,0,3.297636812569593,0,0,3,33.27,51.52,5,1,0,0,2,5,1,873,0,0,0 +3374,4152,7533,7534,-9,-9,2,1,1,62,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,8,0,4,0,0,0,0,58,2,2,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.27606394484232,1,51.74,31.37,2,1,0,0,12,1,0,1368,0,0,0 +3374,4152,7534,7533,-9,-9,1,1,0,58,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,40,0,-4,0,0,0,0,62,3,3,3,3,3,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.01,28.95,2,1,0,0,12,1,0,1368,0,0,0 +3374,4153,7535,-9,7534,7533,3,1,1,31,2,0,0,0,2,-9,2,1,0,4,7.812239471035454,7.771938118377274,0,3,0,0,0,-9,0,-1057.179117786555,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,37,37,15,1,1,-9,1,6.622213249873346,6.622213249873346,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,12,3,0,610,0,0,0 +3375,4154,7536,7537,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.905274324529017,8.245225209774306,6.433792393652334,1,0,-9,8,0,-1,-23.30665129506773,0,0,0,61,2,3,1,2,3,2019,1,1,6,0,35,35,15,1,0,1,0,11.45491482905959,11.45491482905959,0,0,0,0,0,0,0,0,0,0,3.387923822691427,6.590518261236635,7.450731765006217,3,57.17,50.61,6,1,0,0,2,5,0,1233,0,0,0 +3375,4154,7537,7536,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,7.606921141649472,8.279220409034403,7.016844551898902,1,0,-9,8,0,1,-52.81061173959636,0,0,0,60,2,4,1,3,3,2019,1,2,7,0,30,38,15,1,0,1,0,10.01474484419538,10.01474484419538,0,0,0,0,0,0,0,0,0,0,0,7.274975316772221,7.330730996262252,3,54.37,54.8,7,1,0,0,2,5,0,1233,0,0,0 +3376,4155,7538,7539,-9,-9,1,1,1,58,1,0,1,0,1,-9,1,1,0,3,5.458172871779513,5.195626914024345,0,2,0,-9,31,0,9,-7.984569849610633,0,0,0,49,3,3,3,-9,-9,2019,2,2,25,11,45,50,15,1,11,3,0,.5679025095901252,.5679025095901252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,42.66,5,3,0,0,6,2,0,722.6666666666666,0,0,0 +3376,4155,7539,7538,-9,-9,2,1,0,49,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,31,0,0,-88.86096447120551,0,0,0,58,1,3,1,-9,-9,2019,3,1,10,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.113111876186816,0,0,0,48.92,44.91,5,3,0,0,6,2,0,722.6666666666666,0,0,0 +3376,4155,7540,-9,7539,7538,5,1,1,17,2,0,1,1,2,-9,7,2,0,4,6.469158751262839,6.71987829547183,0,2,0,0,0,-9,0,-1084.44823812662,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,3,0,0,6,2,0,722.6666666666666,0,0,0 +3376,4156,7541,-9,7539,7538,3,1,1,24,2,0,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-882.7579794559408,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.26,60.7,2,3,1,0,6,1,0,254,0,0,0 +3376,4157,7542,-9,7539,7538,4,1,0,23,2,0,1,0,1,1,2,1,0,4,7.863111694290853,8.147455949044573,0,3,0,0,0,-9,0,-1005.002677922442,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,10,3,37,0,15,1,3,-9,1,7.028603796129127,7.028603796129127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.79,58.33,5,3,0,0,6,3,0,458,0,0,0 +3377,4158,7543,-9,7545,7544,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-884.5610183981017,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,4,1,1775,0,0,0 +3377,4158,7544,7545,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.272186823186544,8.514885455004485,0,2,0,-9,8,0,-2,-126.1593868583486,-9,0,0,38,2,5,1,-9,-9,2019,1,1,10,0,12,0,15,1,1,1,0,37.2758263443138,37.2758263443138,0,0,0,0,0,0,0,1,1,0,4.8866182194567,0,0,0,50,57,5,5,0,0,13,4,1,1775,0,0,0 +3377,4158,7545,7544,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,5,7.28951895693131,7.475066190313723,0,2,0,-9,8,0,2,104.786878026428,0,0,1,36,2,4,1,2,2,2019,1,2,12,1,21,20,15,1,1,1,0,11.0464532324411,11.0464532324411,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,2,1,0,0,13,4,1,1775,0,0,0 +3378,4159,7546,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,3,9.052838430597671,8.867816700501857,0,3,0,0,0,-9,0,-846.0069870647983,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,39,0,15,1,0,-9,0,24.7888445182902,24.7888445182902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.47,56,5,1,0,0,7,5,0,1660,0,0,0 +3379,4160,7547,-9,-9,-9,3,1,1,19,2,0,0,0,2,1,2,1,0,5,7.10981985670719,6.641047832488717,0,3,0,0,0,-9,0,-1013.426568779682,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,14,0,15,1,0,-9,1,8.164103170638203,8.164103170638203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,3,0,0,4,2,1,169,0,0,0 +3380,4161,7548,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-907.8027927444289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.45,63.27,3,1,0,0,1,1,0,2390,0,0,0 +3381,4162,7549,-9,7550,7551,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.613570876804,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,3,1,574,0,0,0 +3381,4162,7550,7551,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,3,6.79571453189067,6.715683302818546,0,2,0,-9,8,0,-5,-87.01069528345619,0,0,1,47,2,3,1,-9,-9,2019,1,1,15,2,10,4,15,1,2,1,0,9.942352604273843,9.942352604273843,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.17,32.94,6,1,0,0,13,3,1,574,0,0,0 +3381,4162,7551,7550,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.22493876655412,8.264736199875951,0,2,0,-9,25,0,5,25.54499748594726,0,0,0,42,2,3,1,3,3,2019,1,2,13,1,42,44,15,1,1,1,0,9.93651130377452,9.93651130377452,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,44.42,6,1,0,0,13,3,1,574,0,0,0 +3382,4163,7552,7553,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,4,8.559141525295715,8.631477773594627,7.120446567072609,1,0,-9,45,0,2,6.781895308525089,0,0,0,62,2,3,3,-9,-9,2019,2,2,5,0,30,28,15,1,0,4,0,17.62739363404128,17.62739363404128,0,0,0,0,0,0,0,0,0,0,7.650088296366554,6.988917539038318,0,0,60.12,54.8,7,1,0,0,7,4,1,782,0,0,0 +3382,4163,7553,7552,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,7.368867609713883,7.06084093984275,1,0,-9,45,0,-2,27.0031181836242,0,0,0,64,2,4,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.10776856721874,7.200577344104516,0,0,58.61,40.49,6,1,0,0,7,4,1,782,0,0,0 +3383,4164,7554,-9,-9,-9,1,1,0,40,3,0,0,0,3,-9,1,1,0,5,6.936737296798602,6.81771652500954,0,3,0,-9,0,-9,0,-912.7599607171011,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,58,0,15,1,0,-9,0,1.786925337535416,1.786925337535416,0,0,0,0,0,0,0,1,1,0,7.729477671121168,0,0,0,49.76,56.93,5,1,0,0,10,2,1,498,0,0,0 +3384,4165,7555,-9,-9,-9,1,1,0,59,3,1,1,0,2,-9,2,1,0,3,7.675462258521387,7.693064667911376,0,4,0,0,0,-9,0,-915.8769256077439,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,20,15,1,1,-9,0,6.634613898218207,6.634613898218207,0,0,0,0,0,0,0,1,1,0,0,0,30.68197473318462,3,48.05,53.56,4,1,0,1,2,3,0,522,0,0,0 +3384,4166,7556,-9,7557,-9,4,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-840.2339886238965,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,0,943,0,0,0 +3384,4166,7557,-9,7555,-9,2,1,0,30,2,1,1,0,2,-9,6,3,0,2,0,5.745714043266925,5.631579000337421,3,0,0,0,-9,0,-869.5143764990969,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,35,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.175409372974791,0,0,0,.6,63.9,1,1,0,1,2,2,0,943,0,0,0 +3384,4167,7558,-9,7555,-9,3,1,0,25,2,1,1,0,1,-9,2,1,0,2,7.617213811311236,7.388229321230159,0,3,0,0,0,-9,0,-1077.624372245876,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,40,42,15,1,11,-9,1,6.300921804043154,6.300921804043154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.51,44.3,3,1,0,0,2,3,0,337,0,0,0 +3385,4168,7559,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1067.576737836733,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,1,0,0,.3350769878418252,0,0,0,1,1,0,0,0,0,0,39.74,18.66,5,1,0,0,2,1,0,192,0,0,0 +3386,4169,7560,7561,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,6.418152037691288,5.895939807961981,1,0,-9,10,0,3,-6.258545493209978,0,0,0,76,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.419552244582273,6.213821572047878,0,0,57.16,56.15,6,1,0,0,13,2,1,392,0,0,0 +3386,4169,7561,7560,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,7.163829724506789,6.751656163215692,1,0,-9,10,0,-3,-75.15669727318951,0,0,0,79,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.868729603975598,7.325923647333378,0,0,57.33,53.46,6,1,0,0,13,2,1,392,0,0,0 +3387,4170,7562,7563,-9,-9,1,1,1,56,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,9,0,4,162.7756095095463,0,0,0,52,2,4,1,-9,-9,2019,3,2,16,4,0,38,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.99056081582694,0,0,0,47.12,46,4,1,1,0,7,2,1,1569,0,0,0 +3387,4170,7563,7562,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,5.805992971841198,5.917641490029775,0,1,0,-9,9,0,-4,21.40976403146336,0,0,0,56,2,4,3,-9,2,2019,2,1,9,0,8,2,15,1,0,3,0,6.046927075143522,6.046927075143522,0,0,0,0,0,0,0,0,0,0,2.263267159406714,0,19.47454406567568,3,58.15,52.91,6,1,0,0,7,2,1,1569,0,0,0 +3388,4171,7564,7565,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,5,9.127029115049634,9.236966758419236,0,1,0,-9,4,0,-5,-26.43970231837774,0,1,1,32,1,5,1,-9,-9,2019,1,2,3,0,45,35,15,1,0,1,0,27.13606297649078,27.13606297649078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,12,5,1,600,0,0,0 +3388,4171,7565,7564,-9,-9,2,1,1,32,1,0,0,0,1,-9,1,1,0,5,0,6.674592912068962,6.506837864657665,1,0,-9,4,0,5,-43.96286519348872,0,0,0,27,1,5,1,-9,-9,2019,1,1,6,0,50,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.139690930318684,0,0,0,62.39,56.71,6,1,0,0,12,5,1,600,0,0,0 +3389,4172,7566,7567,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,2,0,7.789048506915808,7.894143766749571,1,0,-9,8,0,3,-24.23686294788851,0,0,0,75,2,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.009857849292039,7.957448660852654,0,0,63.38,23.99,6,1,0,0,10,3,1,436.5,0,0,0 +3389,4172,7567,7566,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,6.051673523866723,6.54242556162239,1,0,-9,8,0,-3,-5.241911881119387,0,0,0,78,2,2,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.007613715919135,6.394128904959259,0,0,66.52,32.82,7,1,0,0,10,3,1,436.5,0,0,0 +3390,4173,7568,-9,7570,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,3,8.390274959716404,8.429094047885551,0,3,0,0,0,-9,0,-881.6756209773093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,44,46,15,1,1,-9,1,11.68774802407488,11.68774802407488,0,0,0,0,0,0,0,1,1,0,7.746576194005278,0,0,0,43.83,48.77,4,3,0,0,6,4,1,801,0,0,0 +3390,4174,7569,-9,7570,-9,3,1,1,27,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1121.684128529652,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,6,1,1,2740,0,0,0 +3390,4175,7570,-9,-9,-9,4,1,0,62,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-920.3315055321098,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.63063091056496,3,39.39,37.66,4,3,0,1,6,1,1,1077,0,0,0 +3391,4176,7571,-9,7573,7572,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-770.5403843341512,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,6,2,0,2120,0,0,0 +3391,4176,7572,7573,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,3,0,0,0,2,0,-9,9,0,4,8.39575347556621,0,0,0,34,1,3,1,-9,-9,2019,1,1,2,0,0,41,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,7,1,0,0,6,2,0,2120,0,0,0 +3391,4176,7573,7572,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,3,6.668268112915436,7.058379876987389,0,2,0,-9,9,0,-4,52.2677179504648,0,0,1,38,2,3,1,2,2,2019,1,2,12,0,19,2,15,1,0,1,0,4.726119038761485,4.726119038761485,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.83,52.44,6,1,0,0,6,2,0,2120,0,0,0 +3391,4176,7574,-9,7573,7572,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-909.1389225188417,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,2,0,2120,0,0,0 +3392,4177,7575,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1031.463463877183,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,17.05719025050448,0,0,4.626217722462388,0,124.8067339715304,1,1,0,0,0,0,0,49.7,31.36,6,1,0,0,12,1,0,113,0,0,0 +3393,4178,7576,7577,-9,-9,2,1,1,52,1,0,0,0,3,-9,1,1,0,3,9.543062551691966,9.548186680104321,0,1,0,-9,9,0,0,156.0095942234063,0,0,0,52,2,4,3,-9,-9,2019,2,1,11,0,20,50,15,1,1,3,0,101.1453820287147,101.1453820287147,0,0,0,0,0,0,0,0,0,0,6.35911690860544,0,0,0,50,50,5,3,0,0,4,5,1,494,0,0,0 +3393,4178,7577,7576,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,24,0,0,-15.19011589900468,0,0,0,52,3,3,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,4,5,1,494,0,0,0 +3393,4179,7578,-9,7577,7576,3,1,1,32,2,0,0,0,1,-9,2,1,0,4,7.989456668475684,8.08790598411707,0,3,0,0,0,-9,0,-984.8310967224054,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,35,41,15,1,0,-9,1,10.61417400253286,10.61417400253286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,3,0,0,4,4,1,487,0,0,0 +3393,4180,7579,-9,7577,7576,4,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.471300645287096,8.804471563798488,0,3,0,0,0,-9,0,-977.9599088045063,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,39,15,1,0,-9,1,10.7650594280823,10.7650594280823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,4,4,1,1393,0,0,0 +3394,4181,7580,7581,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,3,8.062196081509034,8.3003998658684,0,1,0,-9,7,0,-2,-117.1979714353235,0,0,0,48,2,4,1,3,2,2019,1,1,9,0,35,35,15,1,0,1,0,12.92103514306125,12.92103514306125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.87,44.96,6,1,0,0,13,4,1,472.5,0,0,0 +3394,4181,7581,7580,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.023335064525719,8.226818237502634,0,1,0,-9,7,0,2,38.43095193053811,0,0,0,46,2,3,1,3,3,2019,1,2,13,1,46,58,15,1,1,1,0,7.06704833263528,7.06704833263528,0,0,0,0,0,0,0,0,0,0,0,0,3.146662513205474,3,48.76,53.24,6,1,0,0,13,4,1,472.5,0,0,0 +3394,4182,7582,-9,7580,7581,3,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1086.327678522014,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.978984586052949,0,0,0,46.16,58.62,6,1,0,0,13,1,1,128,0,0,0 +3395,4183,7583,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,3,0,6.510010656595945,6.504914908415404,3,0,0,0,-9,0,-971.9508092986244,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.668438912655498,6.606435309762225,.5614501868751063,3,58.35,33.74,4,1,0,0,9,2,1,374,0,0,0 +3396,4184,7584,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,2,7.63255198627547,8.103507388907957,7.183977136231918,3,0,0,0,-9,0,-860.548050441313,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,22,23,15,1,0,-9,0,11.95585108994212,11.95585108994212,0,0,0,0,0,0,0,1,1,0,0,7.020214651068766,0,0,61.1,41.19,6,1,0,0,9,4,1,1500,0,0,0 +3397,4185,7585,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,2,0,5.677164808338524,6.065932907304751,3,0,0,0,-9,0,-1052.196700540291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.744900180984143,6.355714112375172,0,0,34.13,38.7,6,1,0,0,12,2,1,1118,0,0,0 +3398,4186,7586,-9,7590,-9,1,1,1,22,2,0,1,0,2,-9,2,1,0,4,7.866345656345501,7.774632915083364,0,3,0,0,0,-9,0,-903.0255424698635,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,6.192922764790874,6.192922764790874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,6,3,0,96,0,0,0 +3398,4187,7587,-9,7590,-9,2,1,0,22,2,0,1,0,2,-9,2,1,0,4,7.4910926570172,7.316717391746881,0,3,0,0,0,-9,0,-935.8862633406465,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,32,32,15,1,0,-9,1,5.964999639619668,5.964999639619668,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,6,3,0,1024,0,0,0 +3398,4188,7588,-9,7590,-9,3,1,0,19,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-975.2146046040988,1,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.348878178054782,0,0,0,57.57,43.81,7,3,0,0,6,1,0,503,0,0,0 +3398,4189,7589,-9,7590,-9,4,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.402468035034,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,2,0,1774.5,0,0,0 +3398,4189,7590,-9,-9,-9,5,1,0,47,3,0,1,0,3,-9,2,1,0,4,7.024216632523262,6.978046052945914,0,4,0,0,0,-9,0,-1057.755855995268,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,16,15,1,1,-9,0,6.138416403785734,6.138416403785734,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,3,0,1,6,2,0,1774.5,0,0,0 +3399,4190,7591,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1218.197839216933,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.1179148040399018,3,48.73,27.95,3,1,0,0,1,1,0,631,0,0,0 +3400,4191,7592,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,2,1,0,3,8.096694890394465,7.90351651890079,0,3,0,0,0,-9,0,-986.0302933241321,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,40,43,15,1,1,-9,0,8.938660053788158,8.938660053788158,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,5,4,0,0,6,4,1,1050,0,0,0 +3401,4192,7593,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,4,8.368786052036606,8.860650144039477,7.461571073741017,3,0,0,0,-9,0,-1001.14810966018,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,22,21,15,1,0,-9,0,16.48438515134974,16.48438515134974,0,0,0,0,0,0,0,0,0,0,7.244465839627473,7.779619106123658,1.202838596049051,3,49.63,57.02,6,1,0,0,8,5,1,1355,0,0,0 +3401,4193,7594,-9,7593,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-951.7848025848721,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.9,57.81,6,2,0,0,8,1,1,388,0,0,0 +3401,4194,7595,-9,-9,-9,3,1,0,27,2,0,0,0,2,-9,2,1,0,4,7.238602107737504,7.106607512545471,0,3,0,0,0,-9,0,-1094.326685712283,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,32,30,15,1,0,-9,0,3.9236599384888,3.9236599384888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,6,1,0,0,8,2,1,566,0,0,0 +3402,4195,7596,-9,7597,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-860.3199189857826,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,1286,0,0,0 +3402,4195,7597,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,2,1,0,2,8.308560422558784,8.048560342299062,3.795984104011596,4,0,0,0,-9,0,-1034.947425901744,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,21,10,24,25,15,1,10,-9,0,15.47478618114435,15.47478618114435,0,0,0,0,0,0,0,1,1,0,3.858759989234009,0,0,0,52.8,30.05,3,1,0,1,13,3,1,1286,0,0,0 +3403,4196,7598,7599,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,16,0,-21,-29.71748621777443,0,0,0,96,3,2,3,3,-9,2019,4,1,26,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.547419870251038,0,111.7339949442267,1,36.29,20.24,4,1,0,0,10,2,1,129.5,0,0,0 +3403,4196,7599,7598,-9,-9,1,1,1,96,1,0,0,0,3,-9,4,3,0,2,0,6.506029212988151,6.39900914922861,1,0,-9,16,0,21,143.1812429476948,0,0,0,75,2,2,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,7.989424711623463,0,0,0,0,1,1,0,0,6.715254201385041,0,0,55.03,11.91,4,1,0,0,10,2,1,129.5,0,0,0 +3404,4197,7600,7601,-9,-9,1,1,1,53,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,29,0,1,19.55198837379264,0,0,0,52,1,5,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,114.7009109463471,3,62.39,56.71,7,1,0,0,9,3,1,615.5,0,0,0 +3404,4197,7601,7600,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,5,7.499524962303667,8.1198231996131,0,1,0,-9,29,0,-1,6.209689133886112,0,0,0,53,1,5,3,-9,-9,2019,2,1,8,0,60,90,15,1,0,4,0,6.690181549446084,6.690181549446084,0,0,0,0,0,0,0,1,1,0,0,0,32.1230194254403,3,59.43,58.05,6,1,0,0,9,3,1,615.5,0,0,0 +3404,4198,7602,-9,7601,7600,3,1,1,21,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-957.9068613198694,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,7,1,0,0,9,1,1,712,0,0,0 +3405,4199,7603,7604,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,3,8.72619487149341,8.748030364174205,0,1,0,-9,3,0,-2,-46.27363052450784,0,0,0,57,1,3,1,1,1,2019,1,2,12,0,50,50,15,1,0,1,0,13.7510056770344,13.7510056770344,0,0,0,0,0,0,0,0,0,0,4.197127160174256,0,0,3,50.03,52.62,5,1,0,0,12,5,1,601.5,0,0,0 +3405,4199,7604,7603,-9,-9,2,1,1,57,1,0,0,0,1,-9,1,1,0,3,9.302067244749784,9.145004121014727,0,1,0,-9,3,0,2,30.7786688746203,0,0,0,55,1,3,1,2,2,2019,1,1,12,0,50,50,15,1,0,1,0,29.29193229282858,29.29193229282858,0,0,0,0,0,0,0,0,0,0,4.75798580862653,0,1.632951590166079,3,54.37,54.8,6,1,0,0,12,5,1,601.5,0,0,0 +3406,4200,7605,7606,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,5,8.367405418171348,8.439622000629615,0,1,0,-9,23,-9,-7,66.22072256237418,-9,0,0,61,3,5,3,2,2,2019,2,1,9,1,46,0,15,1,1,4,0,11.61165128065074,11.61165128065074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,45.67,6,3,0,0,9,4,1,1187,0,0,0 +3406,4200,7606,7605,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,5,7.763767051434461,7.611406216223422,0,1,0,-9,23,-9,7,9.883980109154683,-9,0,0,54,3,5,1,2,2,2019,3,2,4,0,40,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,53.8,6,3,0,0,9,4,1,1187,0,0,0 +3406,4201,7607,7608,-9,-9,4,1,0,25,1,0,0,0,2,-9,2,1,0,1,8.077385341194203,8.047768424043223,0,1,0,-9,1,-9,-3,85.20034272885137,-9,0,1,28,1,2,1,-9,-9,2019,1,3,29,11,47,0,15,1,11,1,0,6.69272518166387,6.69272518166387,0,0,0,0,0,0,0,0,0,0,.3819345544882782,0,0,0,20.43,41.07,3,3,0,0,9,4,1,999.5,0,0,0 +3406,4201,7608,7607,7605,7606,3,1,1,28,1,0,0,0,1,-9,2,1,0,2,8.218540821079966,8.45267447487104,0,1,0,-9,1,-9,3,124.6109541855463,-9,1,0,25,2,1,1,3,3,2019,1,4,17,5,40,0,15,1,5,1,0,10.31157104067447,10.31157104067447,0,0,0,0,0,0,0,0,0,0,5.048161163603717,0,0,0,46.3,45.42,4,3,0,0,9,4,1,999.5,0,0,0 +3407,4202,7609,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,1,1,0,2,7.022011491171742,6.884260246347011,0,3,0,0,0,-9,0,-944.2807716634144,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,20,8,15,1,1,-9,0,4.85038146004158,4.85038146004158,0,0,0,0,0,0,0,0,0,0,8.181240470938501,0,0,0,58.96,39.65,6,1,0,0,8,2,1,957,0,0,0 +3408,4203,7610,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,4,8.168460734876392,8.975958362315499,8.442856978914074,3,0,0,0,-9,0,-993.0957116683245,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.423946225169484,8.3632317053808,0,0,57.16,56.15,6,1,0,0,2,5,1,454,0,0,0 +3409,4204,7611,7612,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,6.923799252711323,7.04893419482204,1,0,-9,1,-9,1,50.1633320748188,-9,0,0,67,3,3,3,2,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.045590566143145,0,0,42.36,56.12,6,1,0,0,6,2,1,393.5,0,0,0 +3409,4204,7612,7611,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,6.181195972316281,5.873186705262833,1,0,-9,1,-9,-1,-1.847884881918075,-9,0,0,68,2,3,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.093451109515827,0,0,56.04,51.3,6,1,0,0,6,2,1,393.5,0,0,0 +3410,4205,7613,7615,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.738024945452965,8.667610292515622,0,2,0,-9,6,0,-5,85.62445379695038,0,0,0,55,1,2,3,-9,-9,2019,2,1,14,2,38,35,15,1,2,4,0,14.83280642430472,14.83280642430472,0,0,0,0,0,0,0,1,1,0,3.601347720488728,0,0,0,38.86,56.33,6,1,0,0,12,4,1,485.3333333333333,0,0,0 +3410,4205,7614,-9,7613,7615,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.59841258962,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,485.3333333333333,0,0,0 +3410,4205,7615,7613,-9,-9,1,1,1,55,1,0,1,0,1,-9,4,3,0,2,0,7.946710287114519,7.648232495186639,2,0,-9,6,0,5,-196.7558109890278,0,0,0,50,1,4,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.199761051848114,7.907139523444171,0,0,53.83,40.34,6,1,0,0,12,4,1,485.3333333333333,0,0,0 +3411,4206,7616,-9,-9,7617,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-953.8964553016443,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,6,1,1,796.5,0,0,0 +3411,4206,7617,-9,-9,-9,1,1,1,47,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1070.832503040434,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.97880599505854,3,63.09,45.22,6,4,1,0,6,1,1,796.5,0,0,0 +3412,4207,7618,7619,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.665629489065575,9.255271314659126,0,1,0,-9,10,0,1,-67.75966751498245,0,0,0,53,2,2,1,2,2,2019,1,2,12,0,41,40,15,1,0,1,0,20.40171886893028,20.40171886893028,0,0,0,0,0,0,0,0,0,0,4.754680934871399,0,0,0,45.11,50.74,2,1,0,0,7,5,1,296,0,0,0 +3412,4207,7619,7618,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,6.603988453306843,6.420636889129437,0,1,0,-9,10,0,-1,233.6005430581427,0,0,0,54,2,3,1,2,2,2019,1,1,11,0,0,20,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.55340164881833,0,0,0,47.84,49.93,6,1,0,0,7,5,1,296,0,0,0 +3412,4208,7620,-9,7619,7618,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.924811007077254,8.361442503724367,0,3,0,0,0,-9,0,-941.9050102538483,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,38,34,15,1,3,-9,1,8.50560128219476,8.50560128219476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.52,62.31,6,1,0,0,7,4,1,605,0,0,0 +3413,4209,7621,7622,-9,-9,2,1,0,51,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,26,0,2,70.87705785621496,0,0,0,49,2,3,1,2,2,2019,3,1,4,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.30420865983374,3,56.57,51.02,7,1,0,0,2,5,1,679,0,0,0 +3413,4209,7622,7621,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,3,9.145552003868049,8.861381572019235,0,1,0,-9,26,0,-2,146.7517209054359,0,0,0,51,2,3,3,2,1,2019,2,2,8,0,55,55,15,1,0,4,0,15.58573156573473,15.58573156573473,0,0,0,0,0,0,0,0,0,0,0,0,10.89934869793764,2,59.31,49.81,7,1,0,0,2,5,1,679,0,0,0 +3414,4210,7623,7624,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.242176946126785,8.669040013447637,1,0,-9,47,0,5,57.32310431157573,0,0,0,67,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,8.652068460932114,8.45720747258485,0,0,51.05,41.44,6,1,0,0,13,4,1,694,0,0,0 +3414,4210,7624,7623,-9,-9,2,1,0,67,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,47,0,-5,50.68325291224544,0,0,0,72,1,4,3,2,3,2019,4,1,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.043596647240298,0,0,0,58.15,52.91,7,1,0,0,13,4,1,694,0,0,0 +3415,4211,7625,7626,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,4,8.65250577139234,8.1094242976336,0,1,0,-9,5,0,-1,38.10502034898186,0,0,1,32,2,4,1,-9,-9,2019,1,1,9,1,37,39,15,1,1,1,0,18.84452355370205,18.84452355370205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.27,50.79,1,1,0,0,10,5,1,753.5,0,0,0 +3415,4211,7626,7625,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,4,8.675990622305063,8.437344702359223,0,1,0,-9,5,0,1,-1.760179602706504,0,0,0,31,2,4,1,3,2,2019,1,2,4,0,37,37,15,1,0,1,0,15.02489995067431,15.02489995067431,0,0,0,0,0,0,0,0,0,0,1.439079672722388,0,0,0,52.31,58.29,6,1,0,0,10,5,1,753.5,0,0,0 +3416,4212,7627,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,3,9.03500236043908,8.971531115748455,0,3,0,0,0,-9,0,-986.6724515718473,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,37,37,15,1,0,-9,0,19.9084226863954,19.9084226863954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.89,51.08,5,1,0,0,6,5,0,534,0,0,0 +3417,4213,7628,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,2,1,0,5,7.469877188984038,7.733435988047541,5.674838009204692,3,0,0,0,-9,0,-903.3192876487731,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,26,26,15,1,0,-9,0,7.624397603443523,7.624397603443523,0,0,0,0,0,0,0,1,1,0,5.394218978500254,6.05421089689351,0,0,62.39,56.71,7,1,0,0,2,3,1,774,0,0,0 +3418,4214,7629,-9,7631,7630,5,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1018.761576817382,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,3,0,0,7,3,1,986.5,0,0,0 +3418,4214,7630,7631,-9,-9,1,1,1,44,1,0,2,0,3,-9,2,1,0,2,8.253085910016821,8.340771255819041,0,2,0,-9,18,0,5,-100.9992192633997,0,0,0,39,3,4,1,3,3,2019,1,2,17,5,40,40,15,1,5,1,0,13.24560664589324,13.24560664589324,0,0,0,0,0,0,0,1,1,0,0,0,10.00143474388596,3,45.06,33.53,5,3,0,0,7,3,1,986.5,0,0,0 +3418,4214,7631,7630,-9,-9,2,1,0,39,1,0,2,0,3,-9,2,1,0,4,6.415267632838496,6.278464000321708,0,2,0,-9,18,0,-5,-36.52286455442228,0,0,1,44,3,2,1,2,2,2019,1,1,11,0,10,0,15,1,1,1,0,6.217181449004844,6.217181449004844,0,0,0,0,0,0,0,1,1,0,0,0,2.811170108716899,3,50,55,5,3,0,0,7,3,1,986.5,0,0,0 +3418,4214,7632,-9,7631,7630,6,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.1914428662313,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,7,3,1,986.5,0,0,0 +3418,4215,7633,-9,7631,7630,4,1,0,18,2,0,2,1,2,0,7,2,0,3,5.626515442050505,5.945447092196997,0,3,0,0,0,-9,0,-916.8822067712196,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,1,7,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.26,42.53,6,3,0,0,7,2,1,801,0,0,0 +3419,4216,7634,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,1,1,0,2,8.258216058549667,8.286523039889211,0,3,0,0,0,-9,0,-1002.999592829846,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,20,20,15,1,7,-9,0,18.9528384247607,18.9528384247607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.91,36.56,3,1,0,0,9,4,1,1075,0,0,0 +3420,4217,7635,7636,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,7.869128993148698,8.201213079427728,1,0,-9,10,0,6,3.405513036153148,0,0,0,66,1,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.391663807422038,7.737421293627489,11.26741998905582,3,57.16,56.15,6,1,0,0,12,4,1,1628.5,0,0,0 +3420,4217,7636,7635,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,5,0,7.907382284751597,7.953202116675174,1,0,-9,10,0,-6,-65.04027532152432,0,0,0,72,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.281856833599361,0,0,62.39,56.71,7,1,0,0,12,4,1,1628.5,0,0,0 +3421,4218,7637,7638,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,68,0,-3,-83.74264282608695,0,0,0,86,2,3,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,13,3,1,615.5,0,0,0 +3421,4218,7638,7637,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,3,0,7.567790562480837,7.333463773030685,1,0,-9,59,0,3,99.21864313657126,0,0,0,83,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.582581222779215,0,0,55,45,6,1,0,0,13,3,1,615.5,0,0,0 +3422,4219,7639,7640,-9,-9,2,1,0,46,1,0,2,0,1,-9,1,1,0,1,0,0,0,2,0,-9,7,0,2,-78.59007228148721,0,0,0,44,1,2,1,-9,-9,2019,1,1,11,0,16,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.260018533160753,0,0,0,51.84,19.86,4,1,0,0,9,4,1,423,0,0,0 +3422,4219,7640,7639,-9,-9,1,1,1,44,1,0,2,0,1,-9,1,1,0,2,8.966460484160894,8.826591858292787,0,2,0,-9,7,0,-2,43.77496740899814,-9,0,0,46,1,1,1,-9,-9,2019,1,2,13,2,50,0,15,1,2,1,0,16.08782003697343,16.08782003697343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.44,47.57,4,1,0,0,9,4,1,423,0,0,0 +3423,4220,7641,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,4,0,7.354244634537799,7.184972531334502,3,0,0,0,-9,0,-1078.043504681626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.906298463300872,7.256761279560488,0,0,40.39,42.09,3,1,0,0,8,3,1,565,0,0,0 +3424,4221,7642,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,2,1,0,4,8.426042954420796,8.50430589182851,0,3,0,0,0,-9,0,-1032.203919760002,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,55,55,15,1,0,-9,0,10.87061214006918,10.87061214006918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,6,3,0,0,6,4,1,323,0,0,0 +3424,4222,7643,-9,7642,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,4,7.720717404556461,8.258568923306463,0,3,0,0,0,-9,0,-1074.55914668524,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,48,48,15,1,1,-9,1,6.552821029699682,6.552821029699682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,3,0,0,6,4,1,373,0,0,0 +3424,4223,7644,-9,7642,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.472184492589202,8.315872551200469,0,3,0,0,0,-9,0,-967.6862603803107,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,40,15,1,1,-9,1,14.76828542807569,14.76828542807569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,3,0,0,6,4,1,705,0,0,0 +3425,4224,7645,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,1,1,0,2,8.175724355618879,7.753072242319183,0,3,0,0,0,-9,0,-1048.946234827081,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,0,15,1,0,-9,0,8.815813534958194,8.815813534958194,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.43,47.48,6,1,0,0,7,3,0,2953,0,0,0 +3426,4225,7646,7647,-9,-9,2,1,0,89,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,46,-9,-5,-76.8652436087027,-9,0,0,94,2,2,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.359252830762037,0,0,0,63.49,8.66,6,1,0,0,7,2,1,450.5,0,0,0 +3426,4225,7647,7646,-9,-9,1,1,1,94,1,0,0,0,2,-9,4,3,0,2,0,5.702924250255974,6.180947766362934,1,0,-9,46,-9,5,18.50639532099447,-9,0,0,89,3,1,3,-9,-9,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.212356316408493,5.976552221987328,8.806929888484385,1,62.96,25.28,6,1,0,0,7,2,1,450.5,0,0,0 +3427,4226,7648,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,7.700047378437697,7.641342647738704,3,0,0,0,-9,0,-1079.709887202789,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.806899222466188,7.66934503686242,0,0,60.12,54.8,7,1,0,0,2,3,1,229,0,0,0 +3428,4227,7649,-9,-9,-9,1,1,1,50,2,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-926.9739186444218,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.07,27.63,1,1,1,0,1,1,0,1381,0,0,0 +3429,4228,7650,7651,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,2,-17.63270582561766,0,0,0,82,3,2,3,-9,-9,2019,4,1,12,4,0,0,15,4,4,4,0,0,0,1,8.392672327680252,2.255772012250649,9.032225803002168,0,0,0,1,1,0,3.829869812918044,0,0,0,60.3,25.32,7,1,0,0,12,2,1,637,0,0,0 +3429,4228,7651,7650,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,2,0,6.935892061504697,7.047086679634202,1,0,-9,7,0,-2,14.98223348724963,0,0,0,84,3,2,3,-9,-9,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.745000197086414,6.920233633560313,0,0,52.65,25.18,7,1,0,0,12,2,1,637,0,0,0 +3430,4229,7652,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,5,0,7.498216523043614,7.281813748911716,3,0,0,0,-9,0,-1016.527212913442,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.785564869909568,6.898053158835537,50.00765500196409,3,57.06,57.76,7,1,0,0,5,3,1,434,0,0,0 +3431,4230,7653,7654,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,3,9.852213270406072,9.705698952463212,0,1,0,-9,3,0,6,-52.51521759228566,0,0,0,44,2,3,1,2,3,2019,1,2,10,0,50,50,15,1,0,1,0,35.88848693039757,35.88848693039757,0,0,0,0,0,0,0,1,1,0,0,0,8.742435502679456,3,34.97,57.32,4,1,0,0,5,5,0,1045,0,0,0 +3431,4230,7654,7653,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,3,8.155938061579837,8.437149495352777,6.611319214321153,1,0,-9,3,0,-6,-68.62548173954623,0,0,1,50,2,3,1,-9,-9,2019,1,1,9,1,40,40,15,1,1,1,0,9.224876085251726,9.224876085251726,0,0,0,0,0,0,0,1,1,0,6.851922492671911,0,2.362092619764119,3,36.45,56.5,6,1,0,0,5,5,0,1045,0,0,0 +3431,4231,7655,-9,7654,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.553766265798831,7.47334130998228,0,3,0,0,0,-9,0,-1002.714700711558,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,50,36,15,1,2,-9,1,6.052391279817432,6.052391279817432,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,5,3,0,1101,0,0,0 +3431,4232,7656,-9,7654,-9,4,1,0,19,2,0,0,1,2,0,7,2,0,2,5.881179291168118,5.84185102040934,0,3,0,0,0,-9,0,-871.8238921822019,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,0,9,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.90363183788743,3,44.54,51.51,1,1,0,0,5,2,0,1762,0,0,0 +3432,4233,7657,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,1,1,0,3,8.205634859085263,8.083369721504733,0,3,0,0,0,-9,0,-1014.115634651686,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,12,0,15,1,0,-9,0,46.7036495604255,46.7036495604255,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,6,4,0,0,9,4,1,528,0,0,0 +3433,4234,7658,-9,7659,7660,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.93049656773,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,1231.333333333333,0,0,0 +3433,4234,7659,7660,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,4,9.386057715380248,9.340789024575669,0,2,0,-9,19,0,-8,-78.74594807830691,0,0,1,50,1,4,1,3,3,2019,1,1,17,7,42,52,15,1,7,1,0,33.11316135325352,33.11316135325352,0,0,0,0,0,0,0,0,0,0,.4108500368331396,0,0,0,31.77,61.1,5,1,0,0,9,5,1,1231.333333333333,0,0,0 +3433,4234,7660,7659,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,4,8.078669862582952,8.007607768433363,0,2,0,-9,19,0,8,-84.32636327310712,0,0,0,42,1,4,1,2,2,2019,1,2,7,0,37,47,15,1,0,1,0,10.83614044892188,10.83614044892188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,9,5,1,1231.333333333333,0,0,0 +3434,4235,7661,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,0,5.723564835189773,5.403301972649181,3,0,0,0,-9,0,-1131.493372584865,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,1.939437606511045,0,0,4.611624598927779,0,0,1,1,0,.2621746954865897,5.333788203090322,0,0,47.72,20.37,2,1,0,0,7,2,1,133,0,0,0 +3435,4236,7662,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,4,7.299556825904249,7.583833331747257,6.965927099239053,3,0,0,0,-9,0,-1015.565850951287,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,20,27,15,1,0,-9,0,7.896532735193212,7.896532735193212,0,0,0,0,0,0,0,1,1,0,0,7.183281303755946,0,0,55.19,54.26,6,1,0,0,2,3,1,176,0,0,0 +3436,4237,7663,7664,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,7.984848429575618,8.118576622937681,1,0,-9,40,0,-1,103.0580529516145,0,0,0,63,2,3,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.74135822051949,8.331140310644551,0,0,58.15,52.91,6,1,0,0,5,4,1,376,0,0,0 +3436,4237,7664,7663,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,6.893479715263116,8.082003309843492,7.644772767869465,1,0,-9,40,0,1,75.23886930630971,0,0,0,62,1,4,3,3,3,2019,2,2,7,0,22,23,15,1,0,4,0,4.511743698400539,4.511743698400539,0,0,0,0,0,0,0,0,0,0,1.035820164931267,7.570701464352409,0,0,58.89,48.6,7,1,0,0,5,4,1,376,0,0,0 +3437,4238,7665,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,3,0,7.293015464101045,7.36286557244717,3,0,0,0,-9,0,-969.8619026431085,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.658149168507932,7.310888077509432,2.943057616520965,3,38.07,47.5,5,1,0,0,12,3,1,848,0,0,0 +3438,4239,7666,7667,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,5,8.415177484907831,8.345173100094925,0,1,0,-9,1,-9,2,38.83096497323496,-9,1,0,26,1,3,1,-9,-9,2019,1,1,6,0,39,0,15,1,0,1,0,13.13380455161341,13.13380455161341,0,0,0,0,0,0,0,1,1,0,5.973866100681757,0,0,0,54.69,57.47,5,1,0,1,12,5,0,317,0,0,0 +3438,4239,7667,7666,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,3,8.587468532209039,8.314222374415186,0,1,0,1,1,-9,-2,107.7219233726358,0,1,1,28,2,5,1,-9,-9,2019,1,2,8,0,38,50,15,1,0,1,0,12.45930907995922,12.45930907995922,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,12,5,0,317,0,0,0 +3439,4240,7668,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,1,1,0,3,8.071168755123983,7.896444298789735,0,3,0,0,0,-9,0,-1031.686520346748,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,12,10,15,1,1,-9,0,38.50140647287548,38.50140647287548,0,0,0,0,0,0,0,0,0,0,8.009401790131685,0,0,0,51,48,5,1,0,0,9,4,1,412,0,0,0 +3439,4241,7669,-9,-9,7668,2,1,1,30,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1030.968543550553,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,6,1,1,0,9,1,1,708,0,0,0 +3440,4242,7670,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,5.853661513372884,5.749031261628058,3,0,0,0,-9,0,-962.8761626260296,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.660873952635059,78.54523999352142,3,45.8,54.59,6,1,0,0,1,2,1,1165,0,0,0 +3440,4243,7671,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,8,3,1,2,0,3.805729055620109,3.987703239596228,3,0,0,0,-9,0,-1002.772363886759,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.208979583820801,0,0,0,39.83,43.06,4,1,0,0,1,2,1,177,0,0,0 +3441,4244,7672,7673,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,1,0,6.066227796372102,6.235854791513641,1,0,-9,7,0,8,94.86178709684809,0,0,0,54,2,2,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.07761163743754,14.58429441710199,2,37.61,33.06,3,1,0,0,5,3,1,672,0,0,0 +3441,4244,7673,7672,-9,-9,2,1,1,54,1,0,0,0,2,-9,4,3,0,2,0,7.498212821368841,7.723330554766853,1,0,-9,7,0,-8,-122.491101420893,0,0,0,62,3,1,3,-9,-9,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.855925781853391,42.11990762611797,1,38.72,18.82,3,1,0,0,5,3,1,672,0,0,0 +3442,4245,7674,-9,-9,-9,1,1,0,22,2,0,0,1,1,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-934.3010844692766,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,1,0,0,6,1,1,1920,0,0,0 +3443,4246,7675,-9,-9,-9,1,1,1,84,2,0,0,0,1,-9,4,3,0,1,0,7.931459060484771,8.535135965999169,3,0,0,0,-9,0,-954.5231553106752,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.322151942288292,0,0,46.89,25.18,5,1,0,0,4,4,1,349,0,0,0 +3444,4247,7676,7677,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,2,0,0,0,1,0,-9,7,0,-1,-125.8013391225022,0,0,0,61,2,3,1,1,2,2019,1,2,9,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.959568647253207,0,0,0,41.71,54.32,3,1,0,0,8,4,1,773.5,0,0,0 +3444,4247,7677,7676,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,3,8.752071247803288,8.761485068461724,4.153885986814953,1,0,-9,7,0,1,16.05700698149498,0,0,0,60,1,2,1,-9,-9,2019,1,1,8,0,33,60,15,1,0,1,0,21.20839725394242,21.20839725394242,0,0,0,0,0,0,0,0,0,0,4.215481386376116,3.975159783352691,0,0,54.37,54.8,6,1,0,0,8,4,1,773.5,0,0,0 +3445,4248,7678,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,1,1,0,3,8.960061558204004,9.322215950963624,0,3,0,-9,0,-9,0,-1022.146405449524,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,15,3,50,0,15,1,3,-9,0,25.08632316850875,25.08632316850875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,4,3,0,0,8,5,0,634,0,0,0 +3446,4249,7679,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.779937737743744,8.276402419049308,6.749065222095038,3,0,0,0,-9,0,-1035.157314118745,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,37,15,1,0,-9,0,8.549510044350487,8.549510044350487,0,0,0,0,0,0,0,0,0,0,5.573205416071445,6.655415716819564,0,3,39.1,57.79,5,1,0,0,11,4,1,445,0,0,0 +3447,4250,7680,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-956.1620756096224,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.09,29.55,3,4,1,0,8,1,0,1999,0,0,0 +3447,4251,7681,-9,7680,-9,2,1,1,22,2,0,0,1,2,0,7,2,0,3,6.840264821388129,6.899136152590116,0,3,0,0,0,-9,0,-1009.50694051095,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.54,41.65,5,4,0,0,8,2,0,620,0,0,0 +3447,4252,7682,-9,7680,-9,3,1,0,26,2,0,0,0,1,-9,2,1,0,3,7.102306275145031,6.919201952699722,0,3,0,0,0,-9,0,-984.3964657754332,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,25,25,15,1,0,-9,1,5.295620675876465,5.295620675876465,0,0,0,0,0,0,0,1,0,1,0,0,7.785831682625735,3,41.79,54.12,5,4,0,0,8,2,0,123,0,0,0 +3448,4253,7683,7684,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.806590618856456,8.515930577221505,0,1,0,-9,4,0,-1,-99.58139712969167,0,0,0,53,1,5,1,-9,-9,2019,1,1,12,0,38,45,15,1,0,1,0,20.57202785879593,20.57202785879593,0,0,0,0,0,0,0,0,0,0,6.837861149346121,0,0,0,41.11,60.68,5,1,0,0,6,5,1,662.5,0,0,0 +3448,4253,7684,7683,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,5,8.766976595117018,8.867462544887209,0,1,0,-9,4,0,1,-39.22929005040593,0,0,0,52,1,4,1,1,1,2019,1,2,14,2,50,55,15,1,2,1,0,15.66721004005983,15.66721004005983,0,0,0,0,0,0,0,0,0,0,7.594722889438609,0,0,0,46.88,60.96,6,1,0,0,6,5,1,662.5,0,0,0 +3449,4254,7685,7686,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,8.322002272394867,8.478145813533796,0,1,0,-9,9,0,-6,76.31596453867041,0,0,1,50,2,3,1,2,2,2019,1,1,7,0,38,38,15,1,0,1,0,12.39306380324886,12.39306380324886,0,0,0,0,0,0,0,0,0,0,7.160358809138147,0,0,0,60.12,54.8,6,1,0,0,13,5,1,3864.5,0,0,0 +3449,4254,7686,7685,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.641797772005694,8.450433074323637,0,1,0,-9,9,0,6,.4725346682992702,0,0,0,44,2,4,1,2,2,2019,1,2,12,0,78,47,15,1,0,1,0,10.23020250577247,10.23020250577247,0,0,0,0,0,0,0,0,0,0,1.262193027042557,0,0,0,27.99,54.97,5,1,0,0,13,5,1,3864.5,0,0,0 +3449,4255,7687,-9,7685,7686,3,1,1,21,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1000.144243254764,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,0,0,13,1,1,154,0,0,0 +3449,4256,7688,-9,7685,7686,4,1,1,19,2,0,0,0,2,-9,2,1,0,4,8.02024109238539,7.716582976170178,0,3,0,0,0,-9,0,-1019.837467981314,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,20,15,1,0,-9,1,6.618031702200573,6.618031702200573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,2157,0,0,0 +3450,4257,7689,7690,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,4,8.557520725132347,8.653507284910109,0,1,0,-9,36,0,-6,1.458800989788371,0,0,0,56,2,4,1,3,3,2019,1,2,10,0,40,38,15,1,1,1,0,16.84574754611196,16.84574754611196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,3,0,0,6,5,1,2261.5,0,0,0 +3450,4257,7690,7689,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.583361592502145,8.843925754210863,6.774539133081527,1,0,-9,7,0,6,-58.7159151245293,0,0,0,50,3,4,1,-9,-9,2019,1,1,9,0,38,40,15,1,0,1,0,16.87480979572111,16.87480979572111,0,0,0,0,0,0,0,0,0,0,0,6.96215892022476,0,0,57.16,56.15,6,3,0,0,6,5,1,2261.5,0,0,0 +3450,4258,7691,-9,7689,7690,3,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.194888895381037,8.418972006891556,0,3,0,0,0,-9,0,-873.7157347218483,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,38,15,1,1,-9,1,11.96437115342211,11.96437115342211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,3,0,0,6,4,1,513,0,0,0 +3450,4259,7692,7693,-9,-9,5,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.571442927767803,8.34721853245051,0,1,0,-9,2,0,-1,-34.56366713521233,0,0,1,31,1,4,1,-9,-9,2019,1,4,11,0,40,38,15,1,2,1,0,15.11577517704493,15.11577517704493,0,0,0,0,0,0,0,0,0,0,2.514389483713536,0,0,0,48,57,5,3,0,0,6,5,1,632,0,0,0 +3450,4259,7693,7692,7689,7690,4,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.588205790589027,8.715202903950667,0,1,0,-9,2,0,1,-38.51420638660369,0,0,0,30,1,4,1,3,2,2019,1,5,10,0,40,38,15,1,1,1,0,14.02210713591515,14.02210713591515,0,0,0,0,0,0,0,0,0,0,6.786459800506758,0,0,0,50,57,5,3,0,0,6,5,1,632,0,0,0 +3451,4260,7694,-9,7696,7695,3,1,1,16,2,0,2,0,2,-9,8,2,1,4,0,0,0,2,0,0,0,-9,0,-1058.406156954114,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.53,37.87,7,1,0,0,10,2,0,1123.75,0,0,0 +3451,4260,7695,7696,-9,-9,1,1,1,56,1,0,2,0,3,-9,2,1,0,2,7.903649273035774,7.718040264088099,0,2,0,-9,27,0,6,3.777147124604266,0,0,0,50,3,2,3,2,2,2019,2,2,12,3,40,47,15,1,3,3,0,7.625158069736576,7.625158069736576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.82,40.74,4,1,0,0,10,2,0,1123.75,0,0,0 +3451,4260,7696,7695,-9,-9,2,1,0,50,1,0,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,27,0,-6,27.08373033118242,0,0,0,56,3,2,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.9239921669451,3,36.89,45.63,4,1,0,0,10,2,0,1123.75,0,0,0 +3451,4260,7697,-9,7696,7695,4,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1031.214565405649,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,10,2,0,1123.75,0,0,0 +3452,4261,7698,7699,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,5,9.521497782141434,9.279994587125566,0,2,0,-9,14,0,17,40.20580368883707,0,0,0,32,3,4,1,3,2,2019,1,2,10,2,50,50,15,1,2,1,0,33.87028099156411,33.87028099156411,0,0,0,0,0,0,0,1,1,0,4.233474682872909,0,0,0,55.09,55.87,6,1,0,0,4,5,1,811.75,0,0,0 +3452,4261,7699,7698,-9,-9,2,1,0,32,1,0,2,0,3,-9,1,1,0,4,8.153538974949358,8.031889018431139,0,2,0,-9,14,0,-17,19.87978522331434,0,0,1,49,2,5,1,2,2,2019,1,1,15,4,40,16,15,1,4,1,0,7.965450264779982,7.965450264779982,0,0,0,0,0,0,0,1,1,0,4.57560649740905,0,0,0,45.92,51.86,5,1,0,0,4,5,1,811.75,0,0,0 +3452,4261,7700,-9,7699,7698,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.952606567558,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,811.75,0,0,0 +3452,4261,7701,-9,7699,7698,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.38422123138,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,811.75,0,0,0 +3453,4262,7702,7703,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,4,0,8.547965640885129,8.901502566888809,1,0,-9,50,0,8,-100.4499609135731,0,0,0,74,2,3,3,1,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.630405159287394,0,0,51.83,57.2,6,1,0,0,10,4,1,304,0,0,0 +3453,4262,7703,7702,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-8,-6.487238793813934,0,0,0,82,3,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.008595298105618,0,0,0,63.41,39.7,7,1,0,0,10,4,1,304,0,0,0 +3454,4263,7704,7705,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,4,7.476617048589248,7.521036620975964,0,1,0,-9,26,0,2,117.1665352168786,0,0,0,58,2,4,1,2,2,2019,1,2,10,0,15,25,15,1,0,1,0,14.94911859612325,14.94911859612325,0,0,0,0,0,0,0,0,0,0,5.597410994008518,0,0,0,54.79,55.86,6,1,0,0,9,4,1,694.5,0,0,0 +3454,4263,7705,7704,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.336537085626919,8.617638441466001,0,1,0,-9,26,0,-2,6.460177301771709,-9,0,0,60,1,4,1,2,1,2019,1,1,11,0,14,0,15,1,0,1,0,42.75927829743036,42.75927829743036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.93,40.19,6,1,0,0,9,4,1,694.5,0,0,0 +3454,4264,7706,-9,7705,7704,3,1,0,23,2,0,0,0,1,-9,2,1,0,3,8.407690887259465,8.301043181901045,0,3,0,0,0,-9,0,-907.94571959029,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,37,37,15,1,0,-9,1,12.33541707231509,12.33541707231509,0,0,0,0,0,0,0,0,0,0,5.351670320573883,0,0,0,43,53,6,1,0,0,9,4,1,508,0,0,0 +3455,4265,7707,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,5.633341582758331,5.493439880913341,3,0,-9,0,-9,0,-1029.946425869553,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.46091549567794,43.81159634057877,3,52,45,6,1,0,0,8,2,0,1776,0,0,0 +3455,4266,7708,-9,-9,-9,2,1,0,32,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1101.495772812832,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.76,25.08,1,1,0,0,8,1,0,911,0,0,0 +3456,4267,7709,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-901.2415019544894,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.4154348883275,3,38.01,34.13,4,1,0,0,13,1,0,304,0,0,0 +3456,4268,7710,-9,-9,7709,2,1,1,19,2,0,0,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-967.8415247968908,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,1,0,85,0,0,0 +3457,4269,7711,-9,-9,-9,1,1,1,38,2,0,3,0,1,-9,2,1,0,3,8.42612679045312,8.526322690739867,0,2,0,-9,18,0,-4,-11.79665047930524,0,0,0,-9,-9,-9,-9,2,2,2019,2,2,2,0,50,50,15,1,0,-9,0,10.90833138434529,10.90833138434529,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.96,53.23,6,1,0,0,4,4,1,405,0,0,0 +3457,4269,7712,-9,-9,7711,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.0823373598646,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,405,0,0,0 +3457,4269,7713,-9,-9,7711,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-886.9759069282215,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,405,0,0,0 +3457,4269,7714,-9,-9,7711,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.7229399888807,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,5,0,0,4,4,1,405,0,0,0 +3457,4270,7715,-9,-9,-9,2,1,1,42,2,0,3,0,1,-9,6,3,0,4,7.273877939541017,7.195624305489531,0,2,0,-9,17,0,4,-119.1425995436371,0,0,0,-9,-9,-9,-9,3,3,2019,3,1,10,1,35,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,6,1,0,0,4,4,1,596,0,0,0 +3458,4271,7716,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1076.360671933336,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.5670297778498,3,31.36,20.96,3,1,0,1,5,1,0,1175,0,0,0 +3458,4271,7717,-9,7716,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-916.4643517969869,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,5,1,0,1175,0,0,0 +3458,4271,7718,-9,7716,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1021.610714962887,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,1,0,1175,0,0,0 +3459,4272,7719,-9,-9,-9,2,1,1,66,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1085.112088931498,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,122.6034022077505,3,51,48,5,1,0,1,5,1,1,3524,0,0,0 +3460,4273,7720,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,1,1,0,4,7.897952491749609,8.132156810673543,0,3,0,0,0,-9,0,-1137.101446237687,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,30,15,1,0,-9,0,7.489812140133029,7.489812140133029,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,4,3,1,476,0,0,0 +3461,4274,7721,7722,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,4,7.90391192760528,7.768035400571796,0,1,0,-9,6,0,0,-46.3274443340949,0,1,1,25,2,4,1,-9,-9,2019,1,1,21,8,42,40,15,1,8,1,0,6.078854320239576,6.078854320239576,0,0,0,0,0,0,0,0,0,0,0,0,78.85031745548463,3,22.65,62.78,3,1,0,0,9,4,0,973,0,0,0 +3461,4274,7722,7721,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,4,7.928224082650027,7.90145098850927,0,1,0,-9,6,0,0,-64.7859711163584,0,1,0,25,2,4,1,2,1,2019,1,2,20,8,50,51,15,1,8,1,0,5.909381106644657,5.909381106644657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.85,53.99,3,1,0,0,9,4,0,973,0,0,0 +3462,4275,7723,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,0,4.348746200697754,4.539088222671211,3,0,0,0,-9,0,-1060.357807048998,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.342261344344988,4.341333995663768,0,0,30.53,25.77,6,1,0,0,12,1,1,3273,0,0,0 +3463,4276,7724,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,4,3,0,4,0,7.701396626659428,7.945852004690042,3,0,0,0,-9,0,-1025.564645001259,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7425703273259,8.093034689701739,0,0,58.3,47.38,6,1,0,0,7,3,1,207,0,0,0 +3464,4277,7725,7726,-9,-9,1,1,0,24,1,0,0,0,1,-9,8,3,1,4,0,0,0,1,0,-9,6,0,0,0,0,1,1,33,3,2,3,-9,-9,2019,4,2,23,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.9,28.98,3,1,0,0,11,1,0,456,0,0,0 +3464,4277,7726,7725,-9,-9,2,1,1,33,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,6,0,9,0,0,0,0,24,1,4,3,-9,-9,2019,4,1,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.1,55.18,2,1,1,0,11,1,0,456,0,0,0 +3465,4278,7727,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,4,9.733441780565732,9.716088681229945,0,3,0,0,0,-9,0,-921.5820335559705,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,49,93,15,1,1,-9,0,35.91432531210856,35.91432531210856,0,0,0,0,0,0,0,0,0,0,3.152020216764745,0,0,0,57.16,56.15,6,3,0,0,8,5,0,740,0,0,0 +3466,4279,7728,7729,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,5,8.983496330394816,9.061105227980404,0,1,0,-9,1,-9,0,21.31831870102339,-9,0,0,57,1,5,3,3,3,2019,2,2,6,0,50,0,15,1,0,3,0,21.19725070515574,21.19725070515574,0,0,0,0,0,0,0,0,0,0,9.635585156308949,0,0,0,57.06,57.76,7,1,0,0,13,5,1,797.5,0,0,0 +3466,4279,7729,7728,-9,-9,2,1,0,57,1,0,0,0,1,-9,6,3,0,5,0,0,0,1,0,-9,1,-9,0,-14.6478674980106,-9,0,0,57,2,5,1,3,3,2019,3,1,7,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.72,64.82000000000001,7,1,0,0,13,5,1,797.5,0,0,0 +3467,4280,7730,7731,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.334844680254975,7.540927626971047,1,0,-9,8,0,3,-70.10889806911939,0,0,0,68,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.076690061916665,7.426274635922741,0,0,54.2,57.49,6,1,0,0,6,4,1,992,0,0,0 +3467,4280,7731,7730,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,8.178355143628959,7.99093194851976,1,0,-9,8,0,-3,-146.0632281062128,0,0,0,71,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.621365562525281,7.975902846913928,0,0,58.5,44.67,7,1,0,0,6,4,1,992,0,0,0 +3468,4281,7732,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,2,1,0,4,8.216136357589601,8.478343967937821,5.918825347628694,4,0,0,0,-9,0,-909.7139119321794,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,34,37,15,1,3,-9,0,12.01963830928022,12.01963830928022,0,0,0,0,0,0,0,1,0,1,6.246319756325392,0,0,0,25.79,65.03,5,1,0,0,5,3,0,1026,0,0,0 +3469,4282,7733,7734,-9,-9,1,1,1,44,1,1,4,0,2,-9,2,1,0,3,8.260784902165325,8.588263083175228,0,2,0,1,1,-9,9,-20.65890207759337,0,0,0,35,2,4,3,2,2,2019,2,6,10,0,38,38,15,1,0,3,0,13.01136452079354,13.01136452079354,0,0,0,0,0,0,0,1,1,0,8.307025352590388,0,0,0,49.78,47.32,6,1,0,0,11,3,1,1122.166666666667,0,0,0 +3469,4282,7734,7733,-9,-9,6,1,0,35,1,1,4,0,2,-9,6,3,0,4,0,5.300143092002945,5.247464504014924,2,0,-9,1,-9,0,65.99576944140028,-9,0,1,44,2,3,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.968288296151048,0,0,0,50.4,55.04,6,1,0,0,11,3,1,1122.166666666667,0,0,0 +3469,4282,7735,-9,7734,7733,4,1,0,12,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.828955974111,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,1,1122.166666666667,0,0,0 +3469,4282,7736,-9,7734,7733,5,1,0,10,2,1,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-961.8518974327407,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,11,3,1,1122.166666666667,0,0,0 +3469,4282,7737,-9,7734,7733,3,1,1,16,2,1,4,0,2,-9,2,2,0,3,8.098568602140702,7.719277309177746,0,2,0,0,0,-9,0,-1078.180340320724,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,42,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,42.9,5,1,0,0,11,3,1,1122.166666666667,0,0,0 +3469,4282,7738,-9,7734,7733,7,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1007.205489266795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,3,1,1122.166666666667,0,0,0 +3469,4283,7739,-9,7734,7733,2,1,1,19,2,1,4,0,2,-9,2,1,0,5,7.69859704776036,7.934844983685543,0,3,0,0,0,-9,0,-868.0589523779481,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,62,58,15,1,0,-9,1,3.311510051700159,3.311510051700159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,53.47,7,1,0,0,11,3,1,912,0,0,0 +3470,4284,7740,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,7.958420448729779,7.907239245336187,3,0,0,0,-9,0,-1053.414337803363,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.120850191235613,7.858561432872436,0,0,54.37,54.8,6,1,0,0,10,4,0,365,0,0,0 +3471,4285,7741,-9,-9,-9,2,1,1,33,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,-9,0,-9,0,-950.2480259466143,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.17369072553369,0,0,0,51.67,60.18,5,1,1,0,12,1,1,150,0,0,0 +3472,4286,7742,7743,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,1,0,5.501661021261027,5.021275194427503,1,0,-9,55,0,0,72.62067176969663,0,0,0,74,1,3,3,2,2,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,10.17966916940302,0,0,0,0,1,1,0,4.043157049469695,5.410196673384035,0,0,39,24,3,1,0,0,6,2,1,627,0,0,0 +3472,4286,7743,7742,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,7.040495593946882,7.174052057798226,1,0,-9,10,0,0,111.3457443108842,0,0,0,74,2,1,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.190420785265017,7.111026076537521,1.351366760224883,1,59.46,46.99,6,1,0,0,6,2,1,627,0,0,0 +3473,4287,7744,7746,-9,-9,2,1,1,44,1,0,2,0,2,-9,6,3,0,3,0,5.850095526983129,5.551103026504162,2,0,-9,5,0,13,54.04216461262146,0,0,0,31,2,3,2,2,2,2019,4,1,22,8,0,0,15,3,8,2,0,0,0,0,0,0,0,0,0,0,1,1,0,6.168677830242895,0,0,0,29.54,58.14,3,1,0,1,1,2,0,2274,0,0,0 +3473,4287,7745,-9,7746,7744,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.3787749325261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,2,0,2274,0,0,0 +3473,4287,7746,7744,-9,-9,1,1,0,31,1,0,2,0,2,-9,7,2,0,3,0,0,0,2,0,-9,5,0,-13,63.72443431360276,1,0,1,44,2,3,3,3,3,2019,4,2,12,0,0,24,15,2,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.93,50.55,6,1,0,1,1,2,0,2274,0,0,0 +3474,4288,7747,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,2,0,6.607191758064745,6.180718299744926,3,0,0,0,-9,0,-942.4895755227101,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,24,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.207436974827559,6.251061779266213,0,0,44.15,34.13,7,1,0,0,10,2,1,837,0,0,0 +3475,4289,7748,-9,-9,-9,1,1,0,34,3,0,2,0,2,-9,2,1,0,4,7.389959105716031,7.237281949425244,0,4,0,0,0,-9,0,-914.9892221521371,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,25,25,15,1,0,-9,0,7.255014624813416,7.255014624813416,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,55.6,6,1,0,0,13,2,0,1491,0,0,0 +3475,4289,7749,-9,7748,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.161875352523,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,0,1491,0,0,0 +3476,4290,7750,7751,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,7.943048016669159,7.949520878360354,1,0,-9,49,0,-5,72.32569567878878,0,0,0,75,1,3,1,2,2,2019,3,1,9,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.568365735047843,8.028441184464114,14.93659268194686,3,53.74,44.11,5,1,0,0,2,5,1,1496,0,0,0 +3476,4290,7751,7750,-9,-9,1,1,1,75,1,0,0,0,1,-9,2,1,0,3,9.295697897167308,9.963754971919853,8.475156494732841,1,0,-9,49,0,5,42.77577565778419,0,0,0,70,1,3,3,2,1,2019,2,2,7,0,21,15,15,1,0,4,0,66.41856805115631,66.41856805115631,0,0,0,0,0,0,0,1,1,0,7.312155558565962,8.588140969093143,0,0,59.88,48.2,6,1,0,0,2,5,1,1496,0,0,0 +3477,4291,7752,7753,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,48,0,-1,0,0,0,0,67,2,4,3,3,-9,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.75,42.2,6,1,0,0,10,1,0,837.5,0,0,0 +3477,4291,7753,7752,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,47,0,1,0,0,0,0,66,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.62,47.44,2,1,0,0,10,1,0,837.5,0,0,0 +3478,4292,7754,7755,-9,-9,2,1,0,51,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,12,0,0,82.2703695064303,-9,0,0,51,1,3,1,-9,3,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,38.79,3,1,1,0,9,5,1,2291.5,0,0,0 +3478,4292,7755,7754,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,3,8.915803074930958,9.075275820514021,0,1,0,-9,12,0,0,138.4303382554466,0,0,0,51,2,2,3,3,3,2019,2,2,14,3,41,38,15,1,3,3,0,24.4296327699277,24.4296327699277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,59.64,3,1,0,0,9,5,1,2291.5,0,0,0 +3479,4293,7756,7757,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,4,0,8.308689375733886,8.622610240254602,1,0,-9,57,0,3,-37.79888582677629,0,0,0,79,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.659854425509451,0,3,55.94,47.09,1,1,0,0,5,4,1,522.5,0,0,0 +3479,4293,7757,7756,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,6.531005558268206,6.321300565924263,1,0,-9,57,0,-3,-101.6633843984211,0,0,0,82,3,4,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.547644373210552,0,0,48.87,58.55,6,1,0,0,5,4,1,522.5,0,0,0 +3480,4294,7758,7760,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,3,8.637341078968481,8.065036752720879,0,2,0,-9,18,0,5,94.88202999553393,0,0,0,40,2,2,1,2,3,2019,1,2,8,0,40,40,15,1,0,1,0,13.65837739709244,13.65837739709244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,4,1,0,0,1,4,1,549.3333333333334,0,0,0 +3480,4294,7759,-9,7760,7758,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.14259871666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,4,1,549.3333333333334,0,0,0 +3480,4294,7760,7758,-9,-9,2,1,0,40,1,0,1,0,2,-9,2,1,0,2,7.944893564246342,8.112566010254927,0,2,0,-9,18,0,-5,11.03977138146046,0,0,1,45,2,3,1,1,1,2019,1,1,12,1,50,48,15,1,1,1,0,6.06040356090048,6.06040356090048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.6,34.63,2,1,0,0,1,4,1,549.3333333333334,0,0,0 +3481,4295,7761,7762,-9,-9,2,1,1,50,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,6,0,-7,135.1669324789319,0,0,0,57,2,1,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.1125056613129,2,47.16,50.53,5,1,0,0,11,1,0,676.5,0,0,0 +3481,4295,7762,7761,-9,-9,1,1,0,57,1,0,0,0,2,-9,8,3,1,1,0,4.281593375650696,4.261161500558311,1,0,-9,6,0,7,-16.24405795237697,0,0,0,50,2,2,3,2,1,2019,4,2,22,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.832358450410719,4.632518466966349,0,0,24.93,19.95,1,1,0,0,11,1,0,676.5,0,0,0 +3482,4296,7763,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,7,2,0,4,7.908416914890642,7.860602867708462,0,3,0,-9,0,-9,0,-1104.362108469814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.52,61.39,4,4,0,0,6,3,0,255,0,0,0 +3483,4297,7764,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.778349298385024,8.743180254216066,0,3,0,0,0,-9,0,-1175.640237814951,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,37,15,1,1,-9,0,21.77492920990005,21.77492920990005,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,6,1,0,0,10,5,1,646,0,0,0 +3484,4298,7765,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1109.564240735518,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.277773154281521,0,0,0,56.18,48.32,6,1,0,0,9,1,0,630,0,0,0 +3485,4299,7766,7767,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,5.741098281338612,5.785779288640359,1,0,-9,8,0,3,26.01865792632602,0,0,0,69,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.965635857804849,0,0,69.86,27.71,6,1,0,0,12,2,1,296.5,0,0,0 +3485,4299,7767,7766,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,6.836240761625956,7.176465505995564,1,0,-9,49,0,-3,30.32564381287023,0,0,0,72,2,2,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.84105027559812,0,0,56.59,28.63,5,1,0,0,12,2,1,296.5,0,0,0 +3486,4300,7768,7769,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,3,8.972414194735029,9.36296128971027,0,1,0,-9,3,0,1,-15.57489298266229,0,1,0,28,1,5,1,-9,-9,2019,1,2,15,3,41,38,15,1,3,1,0,23.06289635938337,23.06289635938337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.66,61.57,3,1,0,0,7,5,1,1611.5,0,0,0 +3486,4300,7769,7768,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.339871511743718,8.257418860660421,0,1,0,-9,3,0,-1,55.19660488985767,0,1,1,29,1,3,1,-9,-9,2019,1,1,7,0,42,40,15,1,0,1,0,12.58250393969156,12.58250393969156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,7,5,1,1611.5,0,0,0 +3487,4301,7770,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,2,1,0,1,7.683754901136847,7.605002289720783,5.874449460610818,4,0,-9,0,-9,0,-1104.318196999894,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,28,11,32,0,15,1,11,-9,0,6.71798438874837,6.71798438874837,0,0,0,0,0,0,0,1,0,1,5.217081777686526,0,0,0,39.63,18.58,3,1,0,0,1,3,0,1090,0,0,0 +3487,4302,7771,-9,7770,-9,2,1,1,18,2,0,1,1,3,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-1119.291066503591,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,59.7,53.75,6,1,0,0,1,3,0,2566,0,0,0 +3488,4303,7772,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1004.260148457108,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.43,43.95,7,1,0,0,7,1,0,504,0,0,0 +3489,4304,7773,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,4,7.223079767669994,7.983053206868095,7.739564866990956,3,0,0,0,-9,0,-1043.708658520882,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,25,40,15,1,0,-9,0,6.250691957089937,6.250691957089937,0,0,0,0,0,0,0,1,1,0,.5351469883300622,7.661277937608502,9.449380889358315,3,52.37,56.93,7,1,0,0,7,4,1,425,0,0,0 +3490,4305,7774,7775,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,5,9.215716191835883,8.708089798743835,0,1,0,-9,8,0,-12,-41.38050512206676,0,0,0,64,1,5,1,-9,-9,2019,1,1,4,0,45,60,15,1,0,1,0,19.81077833736217,19.81077833736217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,10,5,1,1366,0,0,0 +3490,4305,7775,7774,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,5,8.131017968349203,8.66280581459716,6.813374176759955,1,0,-9,8,0,12,-112.1828202302326,0,0,0,52,1,5,1,-9,-9,2019,1,2,7,0,51,45,15,1,0,1,0,10.04300617539533,10.04300617539533,0,0,0,0,0,0,0,0,0,0,0,7.230778213956622,0,0,57.57,57.51,6,1,0,0,10,5,1,1366,0,0,0 +3491,4306,7776,-9,-9,-9,1,1,0,50,3,0,1,0,1,-9,2,1,0,4,8.77491131199781,8.439073117162538,0,4,0,0,0,-9,0,-924.0489834487605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,0,15.92963057859537,15.92963057859537,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.97,59.14,4,1,0,0,13,4,1,100,0,0,0 +3491,4307,7777,-9,7776,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-991.2714622843127,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,14,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,58.89,7,1,0,0,13,4,1,422,0,0,0 +3492,4308,7778,-9,-9,-9,1,1,0,47,2,0,1,0,1,-9,1,1,0,3,9.391588594528939,9.154497407636933,0,4,0,0,0,-9,0,-1006.677468254818,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,12,50,15,1,11,-9,0,112.2151241208749,112.2151241208749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.69,57.18,3,2,0,0,6,5,1,587,0,0,0 +3492,4308,7779,-9,7778,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-944.8698289860525,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,2,0,0,6,5,1,587,0,0,0 +3493,4309,7780,7781,-9,-9,2,1,1,53,1,0,0,0,3,-9,1,1,0,3,8.846179848641908,8.908067700583064,0,1,0,-9,10,0,0,48.1603933200546,0,0,0,53,2,4,3,-9,-9,2019,2,1,11,0,50,20,15,1,1,3,0,13.76491360388602,13.76491360388602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,5,3,0,0,4,4,1,1066,0,0,0 +3493,4309,7781,7780,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,25,0,0,20.49614010376923,0,0,0,53,3,3,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,6,3,0,0,4,4,1,1066,0,0,0 +3493,4310,7782,-9,7781,7780,3,1,1,33,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-916.7728047264023,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,35,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,3,1,0,4,1,1,254,0,0,0 +3493,4311,7783,-9,7781,7780,4,1,1,28,2,0,0,0,1,-9,2,1,0,4,8.226295236043537,8.500975046564857,0,3,0,0,0,-9,0,-860.013885115588,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,37,15,1,0,-9,1,12.84844086433216,12.84844086433216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,4,4,1,750,0,0,0 +3494,4312,7784,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1101.956159110392,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5347396069244821,0,0,0,62.68,22.57,6,1,0,0,13,1,0,1002,0,0,0 +3495,4313,7785,-9,-9,-9,1,1,1,36,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-950.1233393125037,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.93,54.93,5,1,1,0,4,1,0,647,0,0,0 +3496,4314,7786,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,1,1,0,4,9.487096922357354,9.082668809579133,3.561414538892968,3,0,0,0,-9,0,-1038.893740872367,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,30,30,15,1,0,-9,0,39.58859277509316,39.58859277509316,0,0,0,0,0,0,0,0,0,0,7.529924228945613,3.55678728332774,0,0,58.15,52.91,6,1,0,0,9,5,1,1302,0,0,0 +3497,4315,7787,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1048.506414915524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,5,1,1,1,13,1,0,1197,0,0,0 +3498,4316,7788,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-947.8789810906646,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,28.13368315443434,0,.9142781863219922,0,1,1,0,0,0,0,0,50.76,41.71,7,1,0,0,13,1,1,374,0,0,0 +3499,4317,7789,7790,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.581755857714477,7.879218718410477,0,2,0,-9,11,0,-20,60.82950254936302,0,0,1,54,3,4,1,3,-9,2019,1,1,11,0,30,36,15,1,0,1,0,7.45406293900656,7.45406293900656,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.89,46.77,4,4,0,1,7,3,0,779.75,0,0,0 +3499,4317,7790,7789,-9,-9,1,1,1,54,1,0,2,0,3,-9,2,1,0,4,7.793821389984125,7.680029797727019,0,2,0,-9,11,0,20,-111.0821309869467,0,0,0,34,2,4,1,-9,-9,2019,1,2,9,0,27,30,15,1,1,1,0,9.917824002230448,9.917824002230448,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,4,0,0,7,3,0,779.75,0,0,0 +3499,4317,7791,-9,7789,7790,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.426346325528,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,7,3,0,779.75,0,0,0 +3499,4317,7792,-9,7789,7790,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-824.9551406696686,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,7,3,0,779.75,0,0,0 +3500,4318,7793,-9,7796,7794,5,1,1,11,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-982.4936882773086,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,10,4,1,519.8333333333334,0,0,0 +3500,4318,7794,7796,-9,-9,1,1,1,48,1,0,4,0,1,-9,2,1,0,4,8.727534506959827,8.435129405740488,0,2,0,-9,21,0,0,-41.02224091541417,0,0,0,48,2,4,1,2,2,2019,1,2,14,3,45,43,15,1,3,1,0,17.74246453934074,17.74246453934074,0,0,0,0,0,0,0,1,1,0,4.420190910047742,0,0,0,38.02,58.85,5,1,0,0,10,4,1,519.8333333333334,0,0,0 +3500,4318,7795,-9,7796,7794,6,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.045526872759,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,10,4,1,519.8333333333334,0,0,0 +3500,4318,7796,7794,-9,-9,2,1,0,48,1,0,4,0,2,-9,2,1,0,4,7.037832869423507,7.261363031650823,0,2,0,-9,10,0,0,-71.13352009445613,0,0,0,48,1,4,1,2,2,2019,1,1,7,0,35,35,15,1,0,1,0,4.984484119038481,4.984484119038481,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58.15,52.91,6,1,0,0,10,4,1,519.8333333333334,0,0,0 +3500,4318,7797,-9,7796,7794,3,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.926453338575,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,10,4,1,519.8333333333334,0,0,0 +3500,4318,7798,-9,7796,7794,4,1,0,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-863.5530972466249,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,519.8333333333334,0,0,0 +3501,4319,7799,7800,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,2,0,6.966518235541859,6.90713615876918,1,0,-9,7,0,5,-27.18329711820486,0,0,0,47,3,3,1,3,-9,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.728404043929772,0,7.48714314608435,3,32.02,43.72,2,1,0,0,6,3,1,588.5,0,0,0 +3501,4319,7800,7799,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,3,7.704625319621342,7.274447912082969,0,1,0,-9,7,0,-5,-126.1735430883518,0,0,0,52,2,2,3,-9,-9,2019,2,1,12,0,65,60,15,1,0,3,0,3.159456136563482,3.159456136563482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.22,44.43,3,1,0,0,6,3,1,588.5,0,0,0 +3502,4320,7801,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,2,0,7.157008781562239,6.643823754331362,3,0,0,0,-9,0,-934.2160709750924,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,8.155879273686736,0,0,0,1,1,0,0,7.220367125097924,0,0,44.25,16.75,7,1,0,0,6,2,0,1935,0,0,0 +3503,4321,7802,7803,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,1,0,6.960031720974203,6.153106098359053,1,0,-9,29,0,-3,94.24943449442496,0,0,0,65,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.338220534508659,0,0,41.72,21.36,6,1,0,0,6,2,1,862.5,0,0,0 +3503,4321,7803,7802,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,5.775260896752416,5.996504242476508,1,0,-9,30,0,3,153.704330460216,0,0,0,62,2,1,3,-9,-9,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.05817286953233,5.848100125567953,0,0,48.68,51.82,5,1,0,0,6,2,1,862.5,0,0,0 +3504,4322,7804,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,3,7.992053772570457,8.166551436620166,0,3,0,0,0,-9,0,-1004.83376642846,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,30,12,38,37,15,1,12,-9,0,10.10885491454037,10.10885491454037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.78,58.73,3,4,0,0,9,4,0,160,0,0,0 +3504,4323,7805,-9,-9,-9,3,1,0,19,2,0,0,1,2,-9,7,2,0,3,6.826137981106766,7.138419784492406,0,3,0,0,0,-9,0,-896.028665517485,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,25,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.1387786222429531,0,0,0,46.61,56.93,6,1,0,0,9,2,0,572,0,0,0 +3505,4324,7806,-9,-9,-9,1,1,1,91,3,0,0,0,3,-9,4,3,0,3,0,7.081936939111557,7.505560536296647,3,0,0,0,-9,0,-1043.165081860999,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.182809927916638,7.242094427700104,0,0,49.82,33.65,6,1,0,0,4,3,1,321,0,0,0 +3506,4325,7807,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,4,0,8.177833369532726,7.970068407439403,3,0,0,0,-9,0,-829.3653495084956,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.750835368722115,7.681929254394574,0,0,54.79,55.86,6,1,0,0,10,3,1,2123,0,0,0 +3507,4326,7808,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,3,8.209931701087591,8.286307704544491,0,3,0,0,0,-9,0,-1075.782601291711,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,44,49,15,1,0,-9,0,11.33805244733952,11.33805244733952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.55,55.06,6,1,0,0,7,4,0,843,0,0,0 +3508,4327,7809,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1137.272979797064,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,50,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,6,1,1,0,12,1,1,1031,0,0,0 +3509,4328,7810,7812,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,3,8.024682106760245,7.68190775542162,0,2,0,-9,24,0,-2,-44.20419125460184,0,0,0,47,2,3,1,3,3,2019,1,1,7,0,37,35,15,1,0,1,0,7.548890779131404,7.548890779131404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,52.08,4,1,0,0,4,4,1,734,0,0,0 +3509,4328,7811,-9,7810,7812,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.9953817897555,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,4,4,1,734,0,0,0 +3509,4328,7812,7810,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,3,8.636069465270751,8.778871688422345,0,2,0,-9,19,0,2,-18.0765804563833,0,0,0,45,2,3,1,3,3,2019,1,2,10,0,44,50,15,1,0,1,0,11.05527008709425,11.05527008709425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,4,4,1,734,0,0,0 +3509,4329,7813,-9,7810,7812,3,1,0,19,2,0,1,0,2,1,1,1,0,4,7.872070193983498,7.705106736803248,0,3,0,0,0,-9,0,-1002.966912238677,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,0,15,1,0,-9,1,10.0284131644184,10.0284131644184,0,0,0,0,0,0,0,1,1,0,2.510391283229653,0,0,0,33.48,60.65,5,1,0,0,4,4,1,1117,0,0,0 +3510,4330,7814,-9,7816,7815,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-886.1458398781429,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,7,4,1,445.3333333333333,0,0,0 +3510,4330,7815,7816,-9,-9,1,1,1,50,1,1,1,0,1,-9,1,1,0,4,7.851667287540537,7.5100525380455,0,2,0,-9,7,0,14,27.66106966523244,0,0,0,36,2,5,1,2,1,2019,1,2,9,0,45,50,15,1,0,1,0,8.245088893962272,8.245088893962272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,6,1,0,0,7,4,1,445.3333333333333,0,0,0 +3510,4330,7816,7815,-9,-9,2,1,0,36,1,1,1,0,2,-9,2,1,0,5,7.821952794022978,8.003468095447836,0,2,0,-9,7,0,-14,-38.4518168823357,0,0,1,50,1,4,1,-9,-9,2019,1,1,12,0,26,38,15,1,0,1,0,10.05603745787367,10.05603745787367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.46,61.87,6,1,0,0,7,4,1,445.3333333333333,0,0,0 +3511,4331,7817,7819,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,10,0,3,23.43039643860152,0,0,1,38,1,4,1,2,3,2019,3,2,9,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.86,53.23,7,1,0,0,11,3,0,1495.4,0,0,0 +3511,4331,7818,-9,7817,7819,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.36140155335,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,1495.4,0,0,0 +3511,4331,7819,7817,-9,-9,2,1,1,38,1,0,3,0,1,-9,2,1,0,4,8.383129905136755,8.432371711105917,0,2,0,-9,10,0,-3,15.02457451268521,0,0,0,41,2,4,3,-9,-9,2019,2,1,11,0,47,45,15,1,0,3,0,9.626266799316138,9.626266799316138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.54,54.5,6,1,0,0,11,3,0,1495.4,0,0,0 +3511,4331,7820,-9,7817,7819,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.6857821849627,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,0,1495.4,0,0,0 +3511,4331,7821,-9,7817,7819,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.1084869069772,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,3,0,1495.4,0,0,0 +3512,4332,7822,-9,-9,-9,1,1,0,27,2,0,0,0,1,1,2,1,0,5,8.467813520813918,8.783759320434248,7.298813277686142,3,0,0,0,-9,0,-1059.531174149661,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,1,57,0,15,1,1,-9,0,10.06719446103677,10.06719446103677,0,0,0,0,0,0,0,0,0,0,7.552524581200154,0,0,0,57.06,57.76,6,1,0,0,8,5,0,1683,0,0,0 +3513,4333,7823,7824,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,5.98852014802303,5.794765982361805,1,0,-9,9,0,8,28.37901761972287,0,0,0,66,2,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.706757616163515,0,0,54.2,57.49,6,1,0,0,12,2,1,333,0,0,0 +3513,4333,7824,7823,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-8,35.42669266893284,0,0,0,74,3,4,3,-9,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,43.49,39.53,4,1,0,0,12,2,1,333,0,0,0 +3514,4334,7825,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,3,7.218105166458654,7.178680573203894,5.877391059750922,3,0,0,0,-9,0,-1067.643183059902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,10,20,15,1,1,-9,0,12.20592014121455,12.20592014121455,0,0,0,0,0,0,0,1,1,0,1.044782717184709,5.731244331456466,0,0,60.29,52.11,7,1,0,0,5,3,1,3723,0,0,0 +3515,4335,7826,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1023.257273041988,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.24,22.81,3,1,0,1,9,1,0,513,0,0,0 +3515,4336,7827,-9,7826,-9,2,1,1,34,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-937.2846016710967,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,18,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.81129890503126,3,35.19,41.95,4,1,0,1,9,1,0,273,0,0,0 +3516,4337,7828,7829,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,3,0,9.124271545233762,9.271012313735348,1,0,-9,7,0,5,-11.70530003243822,0,0,0,75,2,2,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.362437009593691,8.512966958359875,0,0,55.53,51.55,6,1,0,0,7,5,1,1012.5,0,0,0 +3516,4337,7829,7828,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-5,49.73563590570682,0,0,0,80,1,3,3,3,1,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.480440588223344,0,0,0,50.35,32.26,2,1,0,0,7,5,1,1012.5,0,0,0 +3517,4338,7830,7831,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.725484921787174,8.735945629608571,0,2,0,-9,22,0,1,142.3793528839185,0,0,0,42,2,3,1,2,2,2019,1,1,13,1,42,40,15,1,1,1,0,21.28998046472794,21.28998046472794,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.47,44.11,4,1,0,0,5,4,1,490.25,0,0,0 +3517,4338,7831,7830,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.327290099195115,7.480628330845623,0,2,0,-9,22,0,-1,57.50800973055798,0,0,1,43,2,3,1,2,3,2019,1,2,16,4,25,25,15,1,4,1,0,9.257381593112775,9.257381593112775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,42.81,6,1,0,0,5,4,1,490.25,0,0,0 +3517,4338,7832,-9,7831,7830,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.755558310832,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,490.25,0,0,0 +3517,4338,7833,-9,7831,7830,3,1,0,16,2,0,2,0,3,-9,3,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.855443700954,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,1,0,5,4,1,490.25,0,0,0 +3518,4339,7834,7837,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,4,8.072653574251381,7.400570215494012,0,2,0,-9,5,0,7,95.7897513171788,0,0,0,40,2,4,1,-9,-9,2019,1,1,6,0,60,60,15,1,0,1,0,5.150990282791958,5.150990282791958,0,0,0,0,0,0,0,1,1,0,5.721375424193963,0,0,0,56.57,57.78,6,1,0,0,2,3,1,1266.5,0,0,0 +3518,4339,7835,-9,7837,7834,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.561880311651,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,1266.5,0,0,0 +3518,4339,7836,-9,7837,7834,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.334212326589,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,1266.5,0,0,0 +3518,4339,7837,7834,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,7.625497748431797,7.564223757097904,0,2,0,-9,15,0,-7,-97.90131201824303,0,0,1,47,2,4,1,-9,-9,2019,1,2,7,0,32,31,15,1,0,1,0,6.990388298654221,6.990388298654221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,2,3,1,1266.5,0,0,0 +3519,4340,7838,7839,-9,-9,1,1,1,46,1,0,0,0,2,-9,1,1,0,4,7.466764576483826,7.682234174612943,0,1,0,-9,5,0,-3,-2.683877490455092,0,0,0,49,2,4,1,2,2,2019,1,2,8,0,15,20,15,1,0,1,0,16.79232827369361,16.79232827369361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,4,3,0,376,0,0,0 +3519,4340,7839,7838,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.431433087334513,6.993537417146381,0,1,0,-9,5,0,3,-12.13396120849124,0,0,0,46,2,4,1,-9,-9,2019,1,1,12,2,40,40,15,1,2,1,0,4.249621112705822,4.249621112705822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.62,58.96,3,3,0,0,4,3,0,376,0,0,0 +3520,4341,7840,-9,7843,7842,6,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.744594720183,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,1,386.25,0,0,0 +3520,4341,7841,-9,7843,7842,5,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1173.38796593338,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,8,2,1,386.25,0,0,0 +3520,4341,7842,7843,-9,-9,1,1,1,51,1,0,3,0,1,-9,2,1,0,3,7.795490869849841,7.676503644720928,0,2,0,-9,24,0,1,40.58224554956426,0,0,0,50,3,5,3,3,1,2019,2,2,11,0,32,32,15,1,0,3,0,7.152558385296316,7.152558385296316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.33,43.75,4,3,0,1,8,2,1,386.25,0,0,0 +3520,4341,7843,7842,-9,-9,2,1,0,50,1,0,3,0,3,-9,6,3,0,5,0,0,0,2,0,-9,24,0,-1,-73.81128095647276,0,0,0,51,1,3,1,3,1,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.28,62.6,5,3,0,1,8,2,1,386.25,0,0,0 +3520,4342,7844,-9,7843,7842,3,1,0,20,2,0,3,1,2,0,7,2,0,3,6.219076643878985,6.476287599443813,0,3,0,0,0,-9,0,-1114.140798311383,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,11,1,18,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.58,55.59,4,3,0,1,8,2,1,1878,0,0,0 +3520,4343,7845,-9,7843,7842,4,1,1,18,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1144.889649829414,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,44.83,2,3,0,0,8,2,1,449,0,0,0 +3521,4344,7846,7848,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,4,8.621721022898985,8.346211099684099,0,2,0,-9,1,-9,2,30.91237582646455,-9,0,0,34,2,4,1,-9,-9,2019,1,1,11,0,45,0,15,1,0,1,0,12.39356143128266,12.39356143128266,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,56.46,5,1,0,0,5,5,1,460.6666666666667,0,0,0 +3521,4344,7847,-9,7848,7846,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1083.977481414841,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,5,1,460.6666666666667,0,0,0 +3521,4344,7848,7846,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,4,8.016386958146327,8.370046323978121,0,2,0,-9,1,-9,-2,-65.41813493608312,-9,0,1,36,1,4,1,2,2,2019,1,2,11,0,30,0,15,1,2,1,0,11.94452611349072,11.94452611349072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,1,0,0,5,5,1,460.6666666666667,0,0,0 +3522,4345,7849,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1067.614104142743,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.75,66.17,5,1,1,1,1,1,0,805,0,0,0 +3523,4346,7850,-9,7853,7851,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.914371911803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,4,4,1,470,0,0,0 +3523,4346,7851,7853,-9,-9,1,1,1,32,1,1,2,0,2,-9,2,1,0,4,8.150260683182902,8.297866228351896,0,2,0,-9,9,0,-1,15.84702535129466,0,0,0,33,2,2,1,1,2,2019,1,2,12,2,36,42,15,1,2,1,0,13.84289859195884,13.84289859195884,0,0,0,0,0,0,0,1,1,0,2.104971788726901,0,0,0,48.53,58.91,5,1,0,0,4,4,1,470,0,0,0 +3523,4346,7852,-9,7853,7851,3,1,0,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.641665539137,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,4,4,1,470,0,0,0 +3523,4346,7853,7851,-9,-9,2,1,0,33,1,1,2,0,2,-9,2,1,0,2,8.053031263141186,8.012663936398562,0,2,0,-9,9,0,1,121.5454921928842,0,0,1,32,2,4,1,-9,-9,2019,1,1,9,0,20,39,15,1,0,1,0,17.62612093936252,17.62612093936252,0,0,0,0,0,0,0,1,1,0,0,0,9.528613355288275,3,52.24,50.75,4,1,0,0,4,4,1,470,0,0,0 +3524,4347,7854,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,2,0,8.794393678611614,9.043736403562189,3,0,0,0,-9,0,-1103.528365197998,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,9.309675486308624,0,7.970393238463158,0,0,0,1,1,0,5.814070196027366,9.063902833928331,0,0,51.08,16.49,6,1,0,0,9,5,1,2213,0,0,0 +3525,4348,7855,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,2,7.758208307528777,8.276174445871735,6.184601580869431,3,0,0,0,-9,0,-966.8437266377096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,0,8.363999880966405,8.363999880966405,0,0,0,0,0,0,0,0,0,0,6.1621893825615,5.915903073597181,0,0,56.71,35.18,5,4,0,1,8,4,1,2240,0,0,0 +3526,4349,7856,7859,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,4,7.433180425335956,7.334376022870906,0,2,0,-9,7,0,-1,150.5328719490846,0,0,0,45,2,4,1,2,2,2019,1,1,12,0,40,45,15,1,0,1,0,5.62387547394431,5.62387547394431,0,0,0,0,0,0,0,1,1,0,6.894124276526443,0,0,0,51.24,58.84,6,1,0,0,1,3,1,659.25,0,0,0 +3526,4349,7857,-9,7859,7856,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.865505306956,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,659.25,0,0,0 +3526,4349,7858,-9,7859,7856,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.1318084080915,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,3,1,659.25,0,0,0 +3526,4349,7859,7856,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,4,7.61559805142778,7.472849351371417,0,2,0,-9,7,0,1,-112.784761762894,0,0,0,44,2,4,1,1,2,2019,1,2,10,0,31,30,15,1,0,1,0,6.407520159568543,6.407520159568543,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,6,1,0,0,1,3,1,659.25,0,0,0 +3527,4350,7860,7862,-9,-9,1,1,0,35,1,1,3,0,2,-9,2,1,0,4,7.448459044262583,7.354103491860048,0,2,0,-9,10,0,-5,-165.5095901584656,0,0,1,40,2,3,1,2,-9,2019,1,2,10,0,25,25,15,1,0,1,0,6.116162361018991,6.116162361018991,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,2,4,1,365,0,0,0 +3527,4350,7861,-9,7860,7862,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-938.653473455641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,2,4,1,365,0,0,0 +3527,4350,7862,7860,-9,-9,2,1,1,40,1,1,3,0,2,-9,2,1,0,3,8.729257232578306,8.707969208355786,0,2,0,-9,10,0,5,81.32221488913444,0,0,0,35,2,4,1,3,-9,2019,1,1,11,1,50,40,15,1,1,1,0,13.96946950019128,13.96946950019128,0,0,0,0,0,0,0,1,1,0,0,0,5.256818564990574,3,35.3,49.61,5,1,0,0,2,4,1,365,0,0,0 +3527,4350,7863,-9,7860,7862,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.2701491033849,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,365,0,0,0 +3528,4351,7864,7867,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,3,8.814984644656262,8.96845088897757,0,2,0,-9,8,0,5,141.791108147569,0,0,0,36,1,4,1,1,2,2019,1,1,12,0,45,45,15,1,0,1,0,14.64520829610546,14.64520829610546,0,0,0,0,0,0,0,1,1,0,3.92635585326422,0,0,0,35.95,36.01,5,1,0,0,4,4,1,659,0,0,0 +3528,4351,7865,-9,7867,7864,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1137.457034517709,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,659,0,0,0 +3528,4351,7866,-9,7867,7864,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.20697225891,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,4,1,659,0,0,0 +3528,4351,7867,7864,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,4,7.456950977880497,7.276638787786885,0,2,0,-9,15,0,-5,-27.1185828149036,0,0,1,41,1,3,1,1,1,2019,1,2,7,0,30,24,15,1,0,1,0,6.551823862180078,6.551823862180078,0,0,0,0,0,0,0,1,1,0,3.494563143331628,0,0,0,45.91,59.89,5,1,0,0,4,4,1,659,0,0,0 +3529,4352,7868,-9,7871,7869,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.202897538111,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,10,5,1,730.5,0,0,0 +3529,4352,7869,7871,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,9.521366685142215,9.607366851051404,0,2,0,-9,6,0,1,-66.56807932307412,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,29.15791884073541,29.15791884073541,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,10,5,1,730.5,0,0,0 +3529,4352,7870,-9,7871,7869,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.0471648218939,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,730.5,0,0,0 +3529,4352,7871,7869,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,7.363895175990694,7.555870278337265,0,2,0,-9,6,0,-1,77.46906040243651,0,0,0,48,2,4,1,2,2,2019,1,2,9,0,40,0,15,1,0,1,0,3.523570444358707,3.523570444358707,0,0,0,0,0,0,0,1,1,0,7.278999766078083,0,0,0,51.83,57.2,6,1,0,0,10,5,1,730.5,0,0,0 +3530,4353,7872,-9,7874,7873,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.2919576474317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,5,1,848.3333333333334,0,0,0 +3530,4353,7873,7874,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,4,9.060774559281645,8.989797391193701,0,2,0,-9,9,0,0,7.52579099430155,0,0,0,45,1,3,1,-9,-9,2019,1,1,13,1,45,43,15,1,1,1,0,25.91622957287274,25.91622957287274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,59.43,3,1,0,0,10,5,1,848.3333333333334,0,0,0 +3530,4353,7874,7873,-9,-9,1,1,0,45,1,1,1,0,1,-9,2,1,0,3,7.716754122147584,7.512960321241102,0,2,0,-9,9,0,9,-153.619580179221,0,0,0,36,1,4,1,-9,-9,2019,1,2,9,0,41,41,15,1,0,1,0,5.679017593513713,5.679017593513713,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.9,51.77,6,1,0,0,10,5,1,848.3333333333334,0,0,0 +3531,4354,7875,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,4,0,7.416181577136155,7.395595095441587,3,0,0,0,-9,0,-978.3649209793739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.002730805708747,7.208355644758988,72.25682239282072,3,60.12,54.8,6,1,0,0,2,3,1,1219,0,0,0 +3532,4355,7876,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,3,8.366852678830597,8.078465040035775,0,3,0,0,0,-9,0,-1150.141425822006,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,37,37,15,1,0,-9,0,12.85333870099377,12.85333870099377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.22,56.11,4,2,0,0,11,4,1,2653,0,0,0 +3533,4356,7877,7878,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,2,0,0,0,0,61,3,1,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.48532177492751,1,43.61,56.01,6,1,0,0,11,1,1,2310,0,0,0 +3533,4356,7878,7877,-9,-9,1,1,0,61,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,4,0,-2,0,0,0,0,63,3,3,3,-9,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.08,24.12,5,1,0,0,11,1,1,2310,0,0,0 +3534,4357,7879,7880,-9,-9,1,1,1,68,1,0,0,0,2,-9,1,1,0,3,6.245651279047973,6.207833744242641,5.283610008686225,1,0,-9,29,0,4,-1.671310498009695,0,0,0,64,3,4,1,3,3,2019,1,2,7,0,10,15,15,1,0,1,0,6.934271979830859,6.934271979830859,0,0,0,0,0,0,0,1,1,0,4.571505816001719,5.251674544586793,3.4378725354221,3,53.67,51.01,6,1,0,0,5,2,1,970,0,0,0 +3534,4357,7880,7879,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,4,5.604008470007106,6.845319876059741,6.357313848401573,1,0,-9,29,0,-4,-28.37960797082728,0,0,0,68,2,3,1,3,3,2019,1,1,10,1,7,0,15,1,1,1,0,4.447185968688274,4.447185968688274,0,0,0,0,0,0,0,1,1,0,5.196640210941657,6.367587543804275,3.255287122378759,3,54.21,51.96,6,1,0,0,5,2,1,970,0,0,0 +3535,4358,7881,-9,7882,-9,2,1,0,17,2,0,0,0,2,-9,2,3,0,5,6.085632258918337,5.73446794810548,0,3,0,0,0,-9,0,-1085.573181095553,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,2,10,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.16,53.1,7,1,0,0,10,1,0,530.6666666666666,0,0,0 +3535,4358,7882,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-987.9165221997807,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,10,16,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.24,29.07,2,1,0,1,10,1,0,530.6666666666666,0,0,0 +3535,4358,7883,-9,7882,-9,3,1,0,17,2,0,0,0,-9,-9,-9,3,0,5,0,0,0,3,0,0,0,-9,0,-944.590118472817,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,10,1,0,530.6666666666666,0,0,0 +3536,4359,7884,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,3,0,7.45102490437301,7.408675702073468,3,0,0,0,-9,0,-1003.48978182518,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.357617729061238,10.51703390965398,3,51,49,5,1,0,0,11,3,0,2018,0,0,0 +3537,4360,7885,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,5,8.113630633036987,8.205093441901393,0,1,0,-9,3,0,-4,-36.03632964456106,0,1,1,-9,-9,-9,-9,2,2,2019,1,2,7,0,41,45,15,1,0,-9,0,13.60633584256177,13.60633584256177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.61,64.02,6,1,0,0,9,4,0,347,0,0,0 +3537,4361,7886,-9,-9,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,4,7.631892556044808,7.75134250887233,0,1,0,-9,3,0,4,44.64511702314454,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,1,8,1,30,0,15,1,1,-9,0,8.855831688696954,8.855831688696954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,4,0,2193,0,0,0 +3538,4362,7887,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1120.569448125621,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,14.37,6,1,0,0,13,1,0,598,0,0,0 +3538,4363,7888,-9,-9,7887,2,1,0,18,2,0,0,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-862.6835135779031,-9,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,13,1,0,1284,0,0,0 +3539,4364,7889,-9,-9,-9,1,1,1,51,3,0,1,0,2,-9,1,1,0,4,8.227312687222842,8.650749160987457,0,4,0,0,0,-9,0,-986.4715052089711,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,60,50,15,1,1,-9,0,8.813174611441239,8.813174611441239,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.98,35.64,6,1,0,0,9,4,0,145,0,0,0 +3540,4365,7890,7891,-9,-9,1,1,1,32,1,0,0,0,3,-9,2,1,0,3,8.281662725481974,8.267761087085947,0,1,0,-9,9,0,2,129.720857130137,0,0,0,30,1,4,1,3,2,2019,1,2,10,0,38,38,15,1,0,1,0,11.66153125920158,11.66153125920158,0,0,0,0,0,0,0,0,0,0,.0712966673657202,0,0,0,55.36,51.57,5,1,0,0,10,5,1,1520,0,0,0 +3540,4365,7891,7890,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.493802845247052,8.395071916732743,0,1,0,-9,9,0,-2,45.97878488721647,0,0,1,32,3,3,1,-9,-9,2019,1,1,12,2,41,41,15,1,2,1,0,12.75780744438046,12.75780744438046,0,0,0,0,0,0,0,0,0,0,.0707561528181005,0,0,0,41.06,62.04,3,1,0,0,10,5,1,1520,0,0,0 +3541,4366,7892,7893,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,7.750570374964693,7.949792487489701,1,0,-9,7,0,2,85.79071270869463,0,0,0,70,2,4,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.037756043899551,7.79431744835799,0,0,53.14,45.74,6,1,0,0,10,3,1,387.5,0,0,0 +3541,4366,7893,7892,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-2,101.3043343809137,0,0,0,72,1,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.030232371886767,0,0,0,57.16,56.15,6,1,0,0,10,3,1,387.5,0,0,0 +3542,4367,7894,7895,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,6.715423962272131,6.581814348611028,1,0,-9,10,0,6,-48.53738644700002,0,0,0,77,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.682816849840397,6.691311348171965,0,0,63.65,46.46,7,1,0,0,13,2,1,468.5,0,0,0 +3542,4367,7895,7894,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,5.509061324112986,5.66250710213372,1,0,-9,10,0,-6,-5.038167104687078,0,0,0,83,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.607809845276403,0,0,52.13,49,7,1,0,0,13,2,1,468.5,0,0,0 +3543,4368,7896,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,7.082654734272798,7.525829457211566,3,0,0,0,-9,0,-998.5879255926756,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.608721603470468,7.427904163834064,0,3,32.05,44.76,5,2,0,0,9,2,1,988,0,0,0 +3544,4369,7897,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,5,7.905449491902926,8.085970133331745,5.76973319742121,3,0,0,0,-9,0,-965.0630989627584,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,39,15,1,0,-9,0,11.35654164501236,11.35654164501236,0,0,0,0,0,0,0,1,1,0,5.608277610030724,5.84291606286963,0,0,57.63,56.14,6,1,0,0,6,4,1,850,0,0,0 +3545,4370,7898,7899,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.334160440092349,8.390838687510994,0,1,0,-9,1,-9,0,-14.24018796244028,-9,0,0,56,2,3,1,1,1,2019,1,2,9,0,33,0,15,1,0,1,0,12.87504946848385,12.87504946848385,0,0,0,0,0,0,0,0,0,0,7.499737709312323,0,0,0,47.83,54.78,5,1,0,0,4,5,1,1170,0,0,0 +3545,4370,7899,7898,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.754950491189614,8.272481599033791,0,1,0,-9,1,-9,0,-46.88654256371671,-9,0,0,56,2,4,1,-9,2,2019,1,1,8,1,41,0,15,1,1,1,0,13.31966379232068,13.31966379232068,0,0,0,0,0,0,0,0,0,0,2.27108709648757,0,0,0,52,54.51,5,1,0,0,4,5,1,1170,0,0,0 +3546,4371,7900,-9,-9,-9,1,1,0,72,3,0,1,0,3,-9,4,3,0,1,0,5.773409922283801,5.58594784581868,4,0,0,0,-9,0,-1048.892668887277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,35,12,0,0,15,4,12,-9,0,0,0,1,0,0,5.853242488695779,0,0,0,1,1,0,0,5.787927911427008,0,0,16.04,23.99,1,1,0,0,1,2,1,201,0,0,0 +3547,4372,7901,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,2,7.837656672187362,7.615447154660242,0,3,0,0,0,-9,0,-991.7906178240071,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,57,50,15,1,1,-9,0,6.186116939477897,6.186116939477897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.4,38.06,4,1,0,0,11,4,0,235,0,0,0 +3548,4373,7902,7903,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,3.966775455582248,3.928329879659175,1,0,-9,6,0,1,64.86763170608786,0,0,0,68,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.679064774074753,3.777441952487274,3.215924103141346,3,49.45,41.03,6,1,0,0,2,3,1,554,0,0,0 +3548,4373,7903,7902,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,8.183723976844105,8.314657916313188,1,0,-9,6,0,-1,69.93644307982028,0,0,0,69,1,3,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.947357568915677,8.298580027025281,0,0,60.12,54.8,6,1,0,0,2,3,1,554,0,0,0 +3549,4374,7904,-9,-9,-9,1,1,0,37,3,0,2,0,1,-9,2,1,0,4,8.619005333912284,8.462966399642866,0,4,0,0,0,-9,0,-975.5191165123319,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,38,15,1,0,-9,0,14.52187413054306,14.52187413054306,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,2,4,1,375.3333333333333,0,0,0 +3549,4374,7905,-9,7904,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-999.5736728387438,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,375.3333333333333,0,0,0 +3549,4374,7906,-9,7904,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.33726157239,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,375.3333333333333,0,0,0 +3550,4375,7907,7908,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,3,7.474003051975487,8.054266517848957,7.134924659114827,1,0,-9,33,0,-2,46.9793825300225,0,0,0,53,2,3,1,-9,-9,2019,1,1,13,1,16,0,15,1,1,1,0,9.91534084341049,9.91534084341049,0,0,0,0,0,0,0,0,0,0,0,7.098185137849495,0,0,57.92,51.82,1,1,0,0,9,3,1,227,0,0,0 +3550,4375,7908,7907,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,3,6.494043330139465,6.454742615011994,0,1,0,-9,33,0,2,-56.87194357536804,0,0,0,51,3,3,1,3,3,2019,1,2,9,0,40,0,15,1,0,1,0,2.526652451450648,2.526652451450648,0,0,0,0,0,0,0,0,0,0,2.358585797755275,0,0,0,52.65,51.64,4,1,0,0,9,3,1,227,0,0,0 +3551,4376,7909,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,4,6.018355440507116,8.096995536402623,7.821132528759843,3,0,0,0,-9,0,-1142.6121461437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,3,4,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.191321766724473,7.873648471892212,0,0,60.12,54.8,7,1,0,0,2,4,1,1297,0,0,0 +3552,4377,7910,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,4,0,7.145373098041587,7.021857108884415,3,0,0,0,-9,0,-955.775425930901,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.578042000693341,0,0,67.45,33.62,7,4,0,0,6,2,1,782,0,0,0 +3553,4378,7911,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,4,8.946303890499783,9.094555027314511,0,3,0,0,0,-9,0,-952.8412469676546,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,52,55,15,1,10,-9,0,15.25063455539747,15.25063455539747,0,0,0,0,0,0,0,0,0,0,4.786705738789193,0,0,3,35.63,62.19,5,1,0,0,9,5,1,1240,0,0,0 +3553,4379,7912,-9,-9,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.556542116156196,8.396441665079854,0,3,0,0,0,-9,0,-1040.108294156143,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,49,25,15,1,0,-9,0,11.09245404638885,11.09245404638885,0,0,0,0,0,0,0,0,0,0,.40800733767315,0,2.474024605149188,3,52.82,53.97,6,1,0,0,9,5,1,1246,0,0,0 +3554,4380,7913,7914,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.310451211690533,7.366021265938335,0,1,0,-9,35,0,1,-204.9884789939214,0,0,0,58,3,3,1,3,2,2019,1,1,8,0,22,28,15,1,0,1,0,7.575907457639677,7.575907457639677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,51.92,5,3,0,0,8,4,1,1636.5,0,0,0 +3554,4380,7914,7913,-9,-9,1,1,1,58,1,0,0,0,3,-9,2,1,0,3,8.200814609024697,7.90027821735127,0,1,0,-9,35,0,-1,102.6229009285293,0,0,0,59,3,3,1,3,2,2019,1,2,10,0,40,50,15,1,0,1,0,10.56593983336863,10.56593983336863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,5,3,0,0,8,4,1,1636.5,0,0,0 +3554,4381,7915,-9,7913,7914,3,1,0,27,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-993.1129283336717,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,9,0,30,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.97,53.31,5,3,1,0,8,1,1,474,0,0,0 +3554,4382,7916,-9,7913,7914,4,1,0,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1044.565464277526,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.9,39.94,5,3,0,0,8,1,1,5005,0,0,0 +3555,4383,7917,7918,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,46,0,-1,-4.883195860580402,0,0,0,64,2,4,1,2,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.116000813974942,0,17.1054787217841,3,42.06,57.69,6,1,0,0,5,5,1,453,0,0,0 +3555,4383,7918,7917,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.673041856479216,9.810876040692937,8.899391201134918,1,0,-9,43,0,1,88.58509479097086,0,0,0,63,2,5,3,3,2,2019,2,2,8,0,20,47,15,1,0,4,0,43.3185942619191,43.3185942619191,0,0,0,0,0,0,0,0,0,0,7.417910053782188,9.1477325491415,0,0,54.79,55.86,5,1,0,0,5,5,1,453,0,0,0 +3556,4384,7919,7920,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,3,0,7.70392559571467,7.102340732028337,1,0,-9,57,0,-1,-111.1754603884352,0,0,0,81,1,2,3,2,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.18124221285703,7.945617204038964,114.7587259580382,1,50.55,44.34,4,1,0,0,10,3,1,564.5,0,0,0 +3556,4384,7920,7919,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,2,0,7.010630131942191,7.421198936979533,1,0,-9,57,0,1,-73.78951196509155,0,0,0,80,2,3,3,2,2,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.253146349749121,7.024169358993133,0,0,51.53,41.88,6,1,0,0,10,3,1,564.5,0,0,0 +3557,4385,7921,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,3,9.054371482200233,9.134184887541965,0,3,0,0,0,-9,0,-1107.654060220409,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,55,55,15,1,0,-9,0,17.44420759668822,17.44420759668822,0,0,0,0,0,0,0,1,1,0,2.248502695720152,0,11.80075874568959,3,60.99,37.94,6,1,0,0,5,5,1,101,0,0,0 +3558,4386,7922,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,2,8.213466562127863,8.73033971380033,0,3,0,0,0,-9,0,-1082.117147645457,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,37,15,1,0,-9,0,10.60031977341514,10.60031977341514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.64,41.47,6,1,0,0,9,4,1,5843,0,0,0 +3559,4387,7923,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,4,8.064473180007022,8.46452334395409,0,1,0,-9,4,0,-3,59.18620435706273,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,2,10,0,40,35,15,1,0,-9,0,9.770254417675883,9.770254417675883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,56.56,6,1,0,0,7,4,0,348,0,0,0 +3559,4388,7924,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,1,1,0,3,7.634244330676322,7.665658499821681,4.561956087110993,1,0,-9,4,0,3,20.34860868161609,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,1,8,2,40,20,15,1,2,-9,0,5.891416879756878,5.891416879756878,0,0,0,0,0,0,0,0,0,0,4.79928482396986,0,0,0,44.83,55.13,6,1,0,0,7,4,0,827,0,0,0 +3560,4389,7925,7926,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,8.456290668666231,8.408219078101325,1,0,-9,53,0,1,-13.65030226696184,0,0,0,74,2,5,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.340731778211049,8.333645428882875,0,0,58.3,52.91,6,1,0,0,10,3,1,747.5,0,0,0 +3560,4389,7926,7925,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,53,0,-1,-13.08938323878183,0,0,0,75,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.062496493908623,0,0,0,57.06,57.76,6,1,0,0,10,3,1,747.5,0,0,0 +3561,4390,7927,7928,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,3,8.537579513259841,8.80155727490405,0,1,0,-9,10,0,-1,40.11983573405787,0,0,0,47,2,4,1,2,3,2019,1,2,11,0,95,90,15,1,0,1,0,6.407824873155109,6.407824873155109,0,0,0,0,0,0,0,0,0,0,6.443364558464651,0,0,0,57.33,53.46,6,1,0,0,1,5,1,995,0,0,0 +3561,4390,7928,7927,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.276716503805988,8.498138633712889,0,1,0,-9,10,0,1,65.21131737219284,0,0,0,46,2,3,1,1,2,2019,1,1,6,0,35,35,15,1,0,1,0,12.42495692219198,12.42495692219198,0,0,0,0,0,0,0,0,0,0,6.240900338678035,0,0,0,57.16,56.15,6,1,0,0,1,5,1,995,0,0,0 +3562,4391,7929,7930,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,3,8.795456189394468,8.604831943005273,0,1,0,-9,6,0,3,67.37576630908889,0,0,0,47,1,4,1,2,3,2019,1,2,6,0,42,34,15,1,0,1,0,14.86712517616204,14.86712517616204,0,0,0,0,0,0,0,0,0,0,4.216381960553181,0,0,0,54.1,49.39,6,4,0,0,2,5,1,566.5,0,0,0 +3562,4391,7930,7929,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,4,8.963618654083513,8.519791143394345,0,1,0,-9,6,0,-3,-76.90791483187202,0,0,0,50,1,3,1,2,3,2019,1,1,9,1,44,47,15,1,1,1,0,19.33235061035158,19.33235061035158,0,0,0,0,0,0,0,0,0,0,5.863542602495454,0,0,0,48,54.77,3,1,0,0,2,5,1,566.5,0,0,0 +3563,4392,7931,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,4,9.205505156668112,9.217849182183645,0,1,0,-9,21,0,4,-76.20457993501117,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,6,0,42,43,15,1,0,-9,0,26.89193052578879,26.89193052578879,0,0,0,0,0,0,0,0,0,0,5.269819325627772,0,0,0,61.27,46.03,6,1,0,0,5,5,1,513,0,0,0 +3563,4393,7932,-9,-9,-9,2,1,0,47,2,0,0,0,1,-9,2,1,0,4,8.703104600449572,9.102421581691967,0,1,0,-9,21,0,-4,38.85648910917828,0,0,0,-9,-9,-9,-9,2,1,2019,1,1,10,0,43,40,15,1,0,-9,0,21.26502907359398,21.26502907359398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,1,480,0,0,0 +3564,4394,7933,7934,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,5,0,5.851004463217762,5.473418109854956,1,0,-9,51,0,1,-75.75631648509577,0,0,0,66,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.494396946267246,6.052962608902879,0,0,58.05,54.52,6,1,0,0,8,2,1,831.5,0,0,0 +3564,4394,7934,7933,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,7.000292257256063,6.924553606081016,1,0,-9,51,0,-1,-52.84993234500732,0,0,0,67,3,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.006538189536788,0,0,57.16,56.15,6,1,0,0,8,2,1,831.5,0,0,0 +3565,4395,7935,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,2,6.982803863954618,6.879509549815625,0,3,0,-9,0,-9,0,-1022.771897712743,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,12,16,0,15,1,12,-9,0,6.623132951588191,6.623132951588191,0,0,0,0,0,0,0,1,1,0,0,0,23.4215236414016,3,23.29,35.52,2,1,0,0,10,2,0,641,0,0,0 +3565,4396,7936,-9,7935,-9,2,1,1,20,2,0,0,0,3,-9,3,3,0,3,0,5.023376019515554,5.009404399995141,3,0,-9,0,-9,0,-979.8737329547514,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.556694575443113,5.553043304122606,0,0,52,54.51,5,1,1,0,10,2,0,389,0,0,0 +3566,4397,7937,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,4,9.029307433790459,9.204427629315676,0,3,0,0,0,-9,0,-1025.186842311225,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,47,47,15,1,0,-9,0,18.47137560272451,18.47137560272451,0,0,0,0,0,0,0,0,0,0,3.209297311946042,0,0,0,48.53,58.91,6,1,0,0,5,5,1,197,0,0,0 +3567,4398,7938,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,6.82746232086337,6.979077642108577,3,0,0,0,-9,0,-922.4637434561816,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.122397068447807,0,0,61.28,46.17,7,1,0,0,11,2,1,1575,0,0,0 +3568,4399,7939,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,5,8.550083029137138,7.925743210728411,0,3,0,0,0,-9,0,-923.3957160061536,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,0,13.09302412008005,13.09302412008005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,5,1,0,0,13,4,0,2241,0,0,0 +3569,4400,7940,-9,-9,-9,1,1,1,74,2,0,0,0,1,-9,4,3,0,4,0,6.734552080409693,6.960197832709295,3,0,0,0,-9,0,-1122.773892891032,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.474895552054555,6.401157761772986,0,0,54.2,57.49,6,1,0,0,1,2,1,803,0,0,0 +3570,4401,7941,7942,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,3,5.127966971609276,4.759868950397954,0,1,0,-9,8,0,-8,136.9929976578079,0,0,0,65,1,2,3,2,2,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.797968548101486,0,0,0,35.54,45.64,3,1,0,0,12,4,1,1085.5,0,0,0 +3570,4401,7942,7941,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,2,0,8.413650867157754,8.67705840328299,1,0,-9,8,0,8,-6.076987119722748,0,0,0,57,1,3,3,2,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.063652856633784,7.886401169073637,0,0,55.89,39.77,6,1,0,0,12,4,1,1085.5,0,0,0 +3571,4402,7943,7944,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.203054661817662,8.308170827857806,0,1,0,-9,6,0,-1,105.546227693913,0,0,0,51,2,4,3,2,2,2019,2,1,10,0,50,43,15,1,1,3,0,8.992055398115298,8.992055398115298,0,0,0,0,0,0,0,1,1,0,4.34762335544151,0,0,0,51,54,6,1,0,0,11,3,1,745.5,0,0,0 +3571,4402,7944,7943,-9,-9,1,1,1,51,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,6,0,1,-67.71148258618905,0,0,0,50,2,4,1,2,2,2019,3,2,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.26222439430639,3,47.68,61.82,4,1,1,1,11,3,1,745.5,0,0,0 +3572,4403,7945,7947,-9,-9,1,1,1,33,1,0,2,0,1,-9,2,1,0,4,8.773268641617952,8.49118722608978,0,2,0,-9,12,0,-1,-94.13735835231617,0,0,0,34,1,4,1,1,1,2019,1,2,12,0,37,35,15,1,0,1,0,16.22507306960506,16.22507306960506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,6,1,0,0,13,5,0,440,0,0,0 +3572,4403,7946,-9,7947,7945,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.486407279621,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,5,0,440,0,0,0 +3572,4403,7947,7945,-9,-9,2,1,0,34,1,0,2,0,1,-9,2,1,0,4,8.78347084203882,8.410204905829318,0,2,0,-9,12,0,1,-19.29220155711424,0,0,1,33,1,4,1,2,2,2019,1,1,8,0,30,35,15,1,0,1,0,26.71307948883635,26.71307948883635,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,6,1,0,0,13,5,0,440,0,0,0 +3572,4403,7948,-9,7947,7945,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.737797184301,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,5,0,440,0,0,0 +3573,4404,7949,-9,7951,7950,3,1,1,24,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-947.5891659935404,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.22,61.83,4,1,1,0,2,1,0,485,0,0,0 +3573,4405,7950,7951,-9,-9,1,1,1,62,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,3,0,5,50.24861562336369,0,0,0,57,2,1,1,3,3,2019,3,2,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.86958456589319,2,46.19,41.03,4,1,0,0,2,2,0,345,0,0,0 +3573,4405,7951,7950,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,1,6.709652282828783,6.842633077733087,0,1,0,-9,3,0,-5,21.07973567417024,0,0,0,62,3,2,3,-9,-9,2019,2,1,30,11,10,0,15,1,11,3,0,8.008704194443416,8.008704194443416,0,0,0,0,0,0,0,1,1,0,0,0,4.482596270875929,2,27.89,18.61,1,1,0,0,2,2,0,345,0,0,0 +3574,4406,7952,7953,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,5.397424637529625,7.282125045829486,6.901522713534069,1,0,-9,41,0,1,59.39669063010886,0,0,0,59,1,4,3,2,-9,2019,4,1,18,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.785033964538,0,3,45.49,58.84,3,1,0,0,6,2,1,1454.5,0,0,0 +3574,4406,7953,7952,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,38,0,-1,-28.70298923885755,0,0,0,60,2,3,3,1,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.177076235625327,0,0,0,61.8,49.97,7,1,0,0,6,2,1,1454.5,0,0,0 +3575,4407,7954,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,2,0,5.418341446712719,5.352395078217575,3,0,0,0,-9,0,-1039.705991529346,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.869357983844074,0,0,44.86,32.4,6,1,0,0,7,2,0,635,0,0,0 +3576,4408,7955,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,2,1,0,4,7.027109661701881,8.185555815369163,7.622107619935135,3,0,0,0,-9,0,-972.1477112181364,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,0,15,1,0,-9,0,3.492607188317992,3.492607188317992,0,0,0,0,0,0,0,1,1,0,0,7.768920452448406,0,0,58.15,52.91,7,1,0,0,12,4,1,125,0,0,0 +3577,4409,7956,7957,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,4,6.24640562062693,5.971493538472198,0,1,0,-9,1,-9,-5,10.81039816337706,-9,1,1,27,2,5,1,-9,-9,2019,1,2,8,0,24,0,15,1,0,1,0,1.996841812642307,1.996841812642307,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,6,3,0,0,11,3,1,1355.5,0,0,0 +3577,4409,7957,7956,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,5,8.230606486931652,8.129769036568431,0,1,0,-9,1,-9,5,63.81276173699199,-9,1,0,22,2,4,1,-9,-9,2019,1,1,4,1,38,0,15,1,1,1,0,10.06174430936669,10.06174430936669,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.28,55.34,5,3,0,0,11,3,1,1355.5,0,0,0 +3578,4410,7958,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-960.3270658429855,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.79,36.29,6,1,0,0,2,1,0,833,0,0,0 +3579,4411,7959,7960,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,3,8.257107344587983,8.37014851771179,0,1,0,-9,32,0,-7,60.49198635819677,0,0,0,57,3,2,1,2,2,2019,1,2,14,2,38,40,15,1,2,1,0,8.749672911654606,8.749672911654606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,4,1,0,0,5,4,1,760.5,0,0,0 +3579,4411,7960,7959,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,2,8.30561814822976,8.372316882875568,0,1,0,-9,32,0,7,28.91481392347328,0,0,0,50,2,3,1,3,2,2019,1,1,9,1,60,40,15,1,1,1,0,5.919843056498221,5.919843056498221,0,0,0,0,0,0,0,0,0,0,3.338148502105919,0,0,0,56.79,44.53,5,1,0,1,5,4,1,760.5,0,0,0 +3579,4412,7961,-9,7959,7960,3,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.986475030353107,8.120875889208486,0,3,0,0,0,-9,0,-980.3104510713928,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,0,15,1,1,-9,1,11.60944463343587,11.60944463343587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,5,4,1,128,0,0,0 +3579,4413,7962,-9,7959,7960,4,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-883.9777143252026,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.84,58.02,4,1,0,0,5,1,1,214,0,0,0 +3580,4414,7963,7965,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,4,8.658466101459044,8.592632094855935,0,2,0,-9,25,0,-1,31.43417248499516,0,0,0,48,1,3,1,3,2,2019,1,1,7,0,38,38,15,1,0,1,0,18.75665186555542,18.75665186555542,0,0,0,0,0,0,0,0,0,0,1.891383954482023,0,0,0,54.74,57.22,6,1,0,0,1,4,1,688.3333333333334,0,0,0 +3580,4414,7964,-9,7963,7965,4,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1047.324751934662,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.7144760588421083,0,0,0,49.02,55.87,6,1,0,0,1,4,1,688.3333333333334,0,0,0 +3580,4414,7965,7963,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,3,7.814102007078744,7.683828585043786,0,2,0,-9,18,0,1,-35.89513839145315,0,0,0,47,2,4,1,3,2,2019,1,2,20,8,58,52,15,1,8,1,0,3.556138574740106,3.556138574740106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.63,51.79,5,1,0,0,1,4,1,688.3333333333334,0,0,0 +3580,4415,7966,-9,7963,7965,3,1,0,19,2,0,1,1,2,0,7,2,0,4,6.127284103826389,5.992497891029338,0,3,0,0,0,-9,0,-953.278735504985,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.85,58.2,5,1,0,0,1,2,1,412,0,0,0 +3581,4416,7967,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,5,0,6.641786569236732,6.657721491704724,3,0,0,0,-9,0,-1032.734705114712,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3783761449159213,6.896003185325172,0,0,53.67,45.59,7,1,0,0,6,2,0,1877,0,0,0 +3582,4417,7968,7969,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,4,8.071497196574045,7.878487019307269,0,1,0,-9,1,-9,-5,172.8439225288487,-9,0,1,43,2,4,1,-9,-9,2019,1,1,11,0,28,0,15,1,2,1,0,10.19226577018566,10.19226577018566,0,0,0,0,0,0,0,0,0,0,6.658801660099697,0,0,0,50,55,5,1,0,0,5,5,1,657,0,0,0 +3582,4417,7969,7968,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,8.802300155649673,8.540283882746969,0,1,0,1,1,-9,5,-62.77833897495852,0,0,0,38,1,4,1,2,2,2019,1,2,6,0,36,36,15,1,0,1,0,16.60747738911797,16.60747738911797,0,0,0,0,0,0,0,0,0,0,5.279760955819578,0,9.514683669575865,3,59.29,49.68,6,1,0,0,5,5,1,657,0,0,0 +3583,4418,7970,-9,7972,7971,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.7965550723969,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,781.25,0,0,0 +3583,4418,7971,7972,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,2,8.256562889136271,8.434574302310912,0,2,0,-9,16,0,7,-29.97968626320565,0,0,0,37,1,4,1,3,2,2019,1,2,11,0,30,30,15,1,0,1,0,13.20600779278137,13.20600779278137,0,0,0,0,0,0,0,1,1,0,2.352105643629539,0,0,0,45.58,49.87,3,1,0,0,11,4,1,781.25,0,0,0 +3583,4418,7972,7971,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.33569454564282,7.98344488962857,0,2,0,-9,16,0,-7,-42.3815240951801,0,0,1,44,2,2,1,2,-9,2019,1,1,10,1,39,42,15,1,1,1,0,12.13396791701591,12.13396791701591,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,11,4,1,781.25,0,0,0 +3583,4418,7973,-9,7972,7971,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.494809402505,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,781.25,0,0,0 +3584,4419,7974,-9,7976,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-979.7116500270981,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,800,0,0,0 +3584,4419,7975,-9,7976,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-953.5969462168026,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,3,1,800,0,0,0 +3584,4419,7976,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,1,1,0,3,7.493105153181156,8.317179952031275,7.223302887852859,4,0,0,0,-9,0,-1111.721404601026,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,20,20,15,1,0,-9,0,9.670669803581067,9.670669803581067,0,0,0,0,0,0,0,1,1,0,6.961094577066267,0,0,0,41.23,59.35,4,1,0,0,4,3,1,800,0,0,0 +3585,4420,7977,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,4,7.890345121757409,7.800205444524394,0,1,0,1,1,-9,-10,-1.972928592554878,0,0,0,-9,-9,-9,-9,2,3,2019,2,2,30,12,39,38,15,1,12,-9,0,7.886912309413612,7.886912309413612,0,0,0,0,0,0,0,1,1,0,0,0,7.025218051748835,2,16.21,57.37,3,1,0,0,7,3,0,221,0,0,0 +3585,4421,7978,-9,-9,-9,2,1,0,60,2,0,0,0,2,-9,6,3,0,2,0,3.936964141618813,3.580699519111099,1,0,1,1,-9,10,18.20663956453941,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.983886974199904,0,0,52.64,25.98,5,1,0,0,7,3,0,340,0,0,0 +3586,4422,7979,7980,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,5.354645894666334,5.274828730171631,1,0,-9,8,0,3,246.9326714311505,0,0,0,76,1,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.593040775776331,5.783864146461418,0,0,52,45,6,1,0,0,6,3,1,2090,0,0,0 +3586,4422,7980,7979,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,5,5.721428309331276,7.390485395041599,7.696184967294071,1,0,-9,57,0,-3,8.646860752195002,0,0,0,79,3,3,3,3,3,2019,4,2,9,0,0,4,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.725660928909647,7.460801734483063,0,0,54.1,59.11,7,1,0,0,6,3,1,2090,0,0,0 +3587,4423,7981,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1024.901735567037,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.26,43.43,6,1,0,0,13,1,1,4201,0,0,0 +3588,4424,7982,-9,7983,-9,1,1,1,28,2,0,1,0,2,-9,2,1,0,5,7.82717496223462,7.83926821100071,0,3,0,0,0,-9,0,-1066.813887180368,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,38,15,1,0,-9,1,7.16218172822846,7.16218172822846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,60,7,1,0,0,1,3,0,210,0,0,0 +3588,4425,7983,-9,-9,-9,2,1,0,51,3,0,1,0,3,-9,2,1,0,3,7.809259842779237,8.301116141230139,0,4,0,0,0,-9,0,-936.5125558554677,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,38,15,1,0,-9,0,7.63644165418213,7.63644165418213,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.42,42.88,6,1,0,0,1,3,0,593.5,0,0,0 +3588,4425,7984,-9,7983,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-998.5252568015458,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,1,3,0,593.5,0,0,0 +3589,4426,7985,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,1,1,0,5,7.659310480843184,7.693559734422541,0,3,0,0,0,-9,0,-1012.912221348308,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,3,45,70,15,1,3,-9,0,5.603170169092052,5.603170169092052,0,0,0,0,0,0,0,0,0,0,.8011423446661883,0,0,0,44.31,60.71,5,3,0,0,9,3,0,339,0,0,0 +3590,4427,7986,-9,-9,-9,1,1,0,83,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1033.431106628808,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.394319161543485,0,0,0,49.72,35.32,7,1,0,0,1,1,1,693,0,0,0 +3591,4428,7987,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,6.728329945326841,7.148924824655316,3,0,0,0,-9,0,-883.8877591579135,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.79017618844914,6.863201816338656,0,0,54.2,57.49,6,1,0,0,12,2,1,1235,0,0,0 +3592,4429,7988,-9,7989,7990,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.941603598641,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,0,394,0,0,0 +3592,4429,7989,7990,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,3,9.201566964945911,9.327936651903523,0,2,0,-9,7,0,3,-11.01735121800428,0,0,0,42,1,4,1,1,1,2019,1,1,9,3,47,50,15,1,3,1,0,27.58235229054223,27.58235229054223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.27,51.76,6,1,0,0,4,5,0,394,0,0,0 +3592,4429,7990,7989,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,8.088574558429658,8.138011219779905,0,2,0,-9,16,0,-3,-81.47088338367683,0,0,0,45,1,3,1,2,1,2019,1,2,11,0,41,19,15,1,0,1,0,10.56034819684658,10.56034819684658,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.83,6,1,0,0,4,5,0,394,0,0,0 +3593,4430,7991,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-959.8852659912133,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,27,11,0,0,15,4,11,-9,0,0,0,1,0,0,14.14215385099641,0,0,0,1,1,0,0,0,0,0,28.54,22.31,3,1,0,0,13,1,0,314,0,0,0 +3594,4431,7992,7994,-9,-9,2,1,1,34,1,1,3,0,2,-9,2,1,0,3,9.308724973797236,9.469754884982937,0,2,0,-9,8,0,4,-49.64752586728531,0,0,0,30,2,4,1,2,2,2019,1,1,11,2,50,45,15,1,2,1,0,20.62572263632115,20.62572263632115,0,0,0,0,0,0,0,1,1,0,1.114064279885475,0,0,0,46.08,57.2,6,1,0,0,10,5,1,746.2,0,0,0 +3594,4431,7993,-9,7994,7992,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.327295809652,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,746.2,0,0,0 +3594,4431,7994,7992,-9,-9,1,1,0,30,1,1,3,0,2,-9,2,1,0,4,8.500899285032997,8.50612667738555,0,2,0,-9,8,0,-4,-69.52974339054958,0,0,1,34,2,3,1,2,2,2019,1,2,9,0,40,46,15,1,0,1,0,16.64304838263089,16.64304838263089,0,0,0,0,0,0,0,1,1,0,6.859675895572087,0,0,0,45.07,56.1,2,1,0,0,10,5,1,746.2,0,0,0 +3594,4431,7995,-9,7994,7992,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.7229813925572,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,746.2,0,0,0 +3594,4431,7996,-9,7994,7992,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1033.53056399767,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,746.2,0,0,0 +3595,4432,7997,7998,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,4,8.523407972428602,8.554727154775525,0,2,0,-9,6,0,5,-92.94514787086025,0,0,0,26,2,4,1,-9,-9,2019,1,1,7,0,49,42,15,1,0,1,0,8.744257402055059,8.744257402055059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,5,1,0,0,10,4,1,487.6666666666667,0,0,0 +3595,4432,7998,7997,-9,-9,1,1,0,26,1,1,1,0,2,-9,2,1,0,4,7.238705925347236,7.33010865722477,0,2,0,-9,6,0,-5,-30.86560067761278,0,1,1,31,1,4,1,2,2,2019,1,2,10,0,22,0,15,1,0,1,0,7.151321878271482,7.151321878271482,0,0,0,0,0,0,0,0,0,0,.8664787839127188,0,0,0,49.12,57.28,7,1,0,0,10,4,1,487.6666666666667,0,0,0 +3595,4432,7999,-9,7998,7997,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.627505309516,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,10,4,1,487.6666666666667,0,0,0 +3596,4433,8000,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,4,6.968910689374134,8.251558676815451,7.100133091717871,3,0,0,0,-9,0,-980.2926818137682,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,20,20,15,1,0,-9,0,8.007540675071532,8.007540675071532,0,0,0,0,0,0,0,0,0,0,7.447629158139622,7.680848000436159,0,0,48.53,58.91,5,1,0,0,1,4,1,779,0,0,0 +3597,4434,8001,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-919.957876654169,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.386891752739877,0,0,0,48.22,61.55,6,1,0,0,10,1,1,846,0,0,0 +3598,4435,8002,8003,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,7.508918773701025,7.503062920843141,0,1,0,-9,2,0,-4,-30.88948077126197,0,1,0,31,1,4,1,-9,-9,2019,1,1,12,1,38,24,15,1,1,1,0,5.663387905211335,5.663387905211335,0,0,0,0,0,0,0,0,0,0,2.759986410257653,0,0,0,51.24,58.84,6,1,0,0,12,4,1,845,0,0,0 +3598,4435,8003,8002,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,4,8.392857992282893,9.100881578796876,0,1,0,-9,2,0,4,-3.990647927027283,0,0,1,27,1,4,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,15.62387137919893,15.62387137919893,0,0,0,0,0,0,0,0,0,0,4.309331377771731,0,0,0,57.16,56.15,6,1,0,0,12,4,1,845,0,0,0 +3599,4436,8004,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-996.7429465554733,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.84,37.34,2,1,0,1,9,1,0,213,0,0,0 +3600,4437,8005,8006,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.512257924275888,7.764758702027612,0,1,0,-9,32,0,-12,-22.22592795925009,0,0,0,65,2,2,3,2,1,2019,2,2,9,0,34,36,15,1,0,4,0,7.848778576926335,7.848778576926335,0,0,0,0,0,0,0,1,1,0,4.408911990337169,0,0,0,58.72,51.29,6,1,0,0,4,3,1,676.5,0,0,0 +3600,4437,8006,8005,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,7.736372380974174,7.501810131427662,1,0,-9,32,0,12,-29.56149715999483,-9,0,0,53,2,4,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.910134633933618,0,0,39.3,46.03,5,1,0,0,4,3,1,676.5,0,0,0 +3601,4438,8007,8008,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,3,7.671403702023881,7.915387777142154,0,2,0,-9,2,0,-1,127.8751043846436,0,0,1,32,3,4,1,1,2,2019,1,4,9,1,55,43,15,1,1,1,0,4.313743327609891,4.313743327609891,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.03,48.06,6,1,0,0,9,3,0,1025,0,0,0 +3601,4438,8008,8007,-9,-9,4,1,1,32,1,0,2,0,3,-9,2,1,0,4,6.710120421505821,6.678606733502897,0,2,0,-9,2,0,1,80.91498098243221,0,0,0,31,2,3,1,-9,-9,2019,1,1,7,1,20,40,15,1,1,1,0,5.149854602277878,5.149854602277878,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.84999999999999,34.85,6,3,0,0,9,3,0,1025,0,0,0 +3601,4438,8009,-9,8007,8008,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.787119724267,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,0,1025,0,0,0 +3601,4438,8010,-9,8007,8008,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.403195552937,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,3,0,1025,0,0,0 +3602,4439,8011,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,3,0,7.016306230508598,7.249670254342172,3,0,0,0,-9,0,-1126.40762350867,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.896294796377313,7.264143274049708,0,0,34.46,58.24,2,1,0,0,11,3,1,1815,0,0,0 +3603,4440,8012,-9,8013,8014,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.5374669103587,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,1392.333333333333,0,0,0 +3603,4440,8013,8014,-9,-9,1,1,0,42,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-6,-15.46855953447377,0,0,1,48,2,4,1,3,3,2019,3,2,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.91,45.58,4,1,0,0,2,2,0,1392.333333333333,0,0,0 +3603,4440,8014,8013,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,4,6.441519951301001,6.605620874809961,0,2,0,-9,6,0,6,89.69811519399381,0,0,0,42,2,3,3,-9,-9,2019,2,1,8,0,24,27,15,1,0,3,0,3.412929820754574,3.412929820754574,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.63,51.86,5,1,0,0,2,2,0,1392.333333333333,0,0,0 +3604,4441,8015,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,3,3,0,5,0,0,0,4,0,-9,0,-9,0,-1021.149050831471,-9,0,1,-9,-9,-9,-9,3,1,2019,-9,0,12,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.263768067575056,0,0,0,54.1,59.11,6,2,1,0,8,1,0,401.5,0,0,0 +3604,4441,8016,-9,8015,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,-9,0,-9,0,-1101.550094821372,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,2,0,0,8,1,0,401.5,0,0,0 +3605,4442,8017,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1101.305045342165,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.46,14.79,7,1,0,0,9,1,0,53,0,0,0 +3606,4443,8018,8019,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.137263291369941,7.313584109358027,1,0,-9,53,0,0,-39.11517196410232,0,0,0,76,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.294519206990929,6.867990223173549,0,0,53,46,6,1,0,0,13,3,1,488,0,0,0 +3606,4443,8019,8018,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,7.045898580283033,6.696420928944923,1,0,-9,53,0,0,2.78261759648341,0,0,0,76,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.664687710404551,6.700410598919084,0,0,51,46,6,1,0,0,13,3,1,488,0,0,0 +3607,4444,8020,-9,-9,-9,1,1,1,74,3,0,1,0,2,-9,4,3,0,4,0,4.26215380954394,3.79861177900778,4,0,0,0,-9,0,-1073.362203608646,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.658117270060454,3.771900887660973,0,0,32.48,59.49,6,1,0,0,6,1,1,434,0,0,0 +3607,4445,8021,-9,-9,8020,2,1,0,41,3,0,1,0,1,-9,2,1,0,5,8.170437724161721,8.297569948858291,0,3,0,0,0,-9,0,-975.4118037608454,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,38,40,15,1,0,-9,1,10.9207907912793,10.9207907912793,0,0,0,0,0,0,0,1,1,0,6.744889101687848,0,0,0,57.06,57.76,6,1,0,0,6,4,1,519.5,0,0,0 +3607,4445,8022,-9,8021,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1017.923567082551,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,6,4,1,519.5,0,0,0 +3608,4446,8023,8024,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,7.146612131761392,7.31456186487089,1,0,-9,63,0,2,.7152799828415688,0,0,0,82,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.328992906413131,7.054835168114156,0,0,59.04,48.6,5,1,0,0,7,2,1,623.5,0,0,0 +3608,4446,8024,8023,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,3,0,1.886856218349881,2.00574598376437,1,0,-9,63,0,-2,106.3843974607379,0,0,0,84,2,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.255391376739582,0,0,53.93,42.87,5,1,0,0,7,2,1,623.5,0,0,0 +3609,4447,8025,8027,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,9.255897729182141,9.176004708400166,0,2,0,-9,15,0,0,32.23732455292288,0,0,0,43,1,4,1,2,2,2019,1,2,8,0,60,60,15,1,0,1,0,21.59026958642868,21.59026958642868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.5,53.7,5,1,0,0,8,5,1,514.25,0,0,0 +3609,4447,8026,-9,8027,8025,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1161.097166231799,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,514.25,0,0,0 +3609,4447,8027,8025,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.938732038564973,9.158067701814923,0,2,0,-9,15,0,0,-89.24132567753139,0,0,1,43,1,4,1,1,1,2019,1,1,10,0,50,50,15,1,0,1,0,16.29288746037316,16.29288746037316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,7,1,0,0,8,5,1,514.25,0,0,0 +3609,4447,8028,-9,8027,8025,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.952604077373,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,514.25,0,0,0 +3610,4448,8029,8030,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,49,0,0,-11.10546443633251,0,0,0,65,2,2,3,3,-9,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.13,42.67,4,1,0,0,11,2,1,386.5,0,0,0 +3610,4448,8030,8029,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,6.651834104413069,6.505867340727759,1,0,-9,49,0,0,6.908177714315943,0,0,0,65,3,2,3,3,-9,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.722813843537899,0,0,41.87,35.22,4,1,0,0,11,2,1,386.5,0,0,0 +3611,4449,8031,8032,-9,-9,1,1,0,72,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,48,0,-2,13.50974206925603,0,0,0,74,3,1,3,3,3,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.12322265585609,2,40.98,52.59,2,1,0,0,10,2,1,272,0,0,0 +3611,4449,8032,8031,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,1,0,7.036574117441505,7.128152520495352,1,0,-9,48,0,2,3.204901773759193,0,0,0,72,2,3,3,3,3,2019,4,1,20,7,0,0,15,4,7,3,0,0,0,1,0,47.68360988818716,0,0,0,0,1,1,0,6.618387278520853,6.698446895955398,0,0,37.1,16.85,4,1,0,0,10,2,1,272,0,0,0 +3612,4450,8033,8034,-9,-9,1,1,0,35,1,0,2,0,2,-9,1,1,0,2,0,0,0,2,0,-9,14,0,2,-70.63535444904726,0,0,1,33,2,5,1,2,2,2019,1,2,28,11,53,55,15,1,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,21.69,4,1,0,0,9,3,1,914.5,0,0,0 +3612,4450,8034,8033,-9,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,5,8.316243269196406,8.828158768608631,0,2,0,-9,16,0,-2,87.75388821470918,0,0,0,35,2,2,1,2,2,2019,1,1,8,0,41,45,15,1,0,1,0,13.42021506093806,13.42021506093806,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,5,1,0,0,9,3,1,914.5,0,0,0 +3612,4450,8035,-9,8033,8034,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.4190223982333,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,3,1,914.5,0,0,0 +3612,4450,8036,-9,8033,8034,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.8487149901961,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,1,914.5,0,0,0 +3613,4451,8037,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,3,8.101970425850435,8.190942110840581,0,3,0,0,0,-9,0,-1094.816687217372,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,13,1,55,55,15,1,1,-9,0,7.939283696329354,7.939283696329354,0,0,0,0,0,0,0,0,0,0,2.376884234885675,0,0,0,42.07,50.91,4,1,0,0,9,4,1,581,0,0,0 +3614,4452,8038,-9,8039,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-961.5909701242648,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,7,2,0,553,0,0,0 +3614,4452,8039,-9,-9,-9,1,1,0,26,2,1,2,0,2,-9,6,3,0,4,0,6.70638971496611,6.849395981101703,4,0,0,0,-9,0,-819.786242529102,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.222236221074893,0,0,0,51.24,58.84,6,3,0,1,7,2,0,553,0,0,0 +3614,4452,8040,-9,8039,-9,2,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-836.843749867006,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,7,2,0,553,0,0,0 +3615,4453,8041,8042,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,4,7.773556445376881,7.685263698096088,0,1,0,-9,4,0,-2,-3.614767775469693,0,1,0,28,2,4,2,1,2,2019,2,2,6,0,40,40,15,1,0,2,0,7.294996156026654,7.294996156026654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,3,1,1039.5,0,0,0 +3615,4453,8042,8041,-9,-9,2,1,0,28,1,0,0,0,2,-9,7,2,0,4,0,0,0,1,0,-9,4,0,2,58.22274331744531,1,1,1,26,2,4,1,-9,-9,2019,3,1,10,1,0,12,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,6,1,0,0,11,3,1,1039.5,0,0,0 +3616,4454,8043,8044,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,6.802710717043214,6.956304079488914,0,1,0,-9,24,0,6,-84.37897668079017,0,0,0,52,1,4,1,3,3,2019,1,2,8,0,14,12,15,1,0,1,0,8.640895965456487,8.640895965456487,0,0,0,0,0,0,0,0,0,0,1.901996113846791,0,1.468678091946078,3,52,54.51,1,1,0,0,10,5,1,774.5,0,0,0 +3616,4454,8044,8043,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.727314479070593,8.682085399346626,0,1,0,-9,24,0,-6,-57.72969851388178,0,0,0,58,2,3,1,3,3,2019,1,1,12,3,42,41,15,1,3,1,0,17.30676271576284,17.30676271576284,0,0,0,0,0,0,0,0,0,0,5.420669541541927,0,0,0,40.61,55.65,1,1,0,0,10,5,1,774.5,0,0,0 +3616,4455,8045,-9,8043,8044,3,1,1,22,2,0,0,0,2,-9,1,1,0,5,9.742176330711171,9.61554008790055,0,3,0,0,0,-9,0,-1023.676796139741,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,48,43,15,1,0,-9,1,27.35405515816319,27.35405515816319,0,0,0,0,0,0,0,0,0,0,3.782278287151585,0,0,0,38.37,59.33,1,1,0,0,10,5,1,464,0,0,0 +3617,4456,8046,8047,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.653124373155768,8.728558395932073,0,1,0,-9,6,0,-11,-25.94441756870106,0,0,0,64,2,3,3,-9,-9,2019,2,1,10,0,38,40,15,1,1,4,0,17.45531382544453,17.45531382544453,0,0,0,0,0,0,0,0,0,0,3.34924892395696,0,0,0,51,54,6,1,0,0,9,5,1,1151,0,0,0 +3617,4456,8047,8046,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.287816529502365,8.481723915958014,1,0,-9,27,0,11,-77.7479836659042,0,0,0,53,2,4,1,-9,-9,2019,3,2,10,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.762789702674478,8.306902301482401,15.85802268157897,3,52.41,42.18,6,1,0,0,9,5,1,1151,0,0,0 +3618,4457,8048,8049,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,4,7.692483301866666,7.973569596362461,6.281122297798607,2,0,-9,3,0,-3,-5.08724485923193,0,0,1,34,2,3,1,-9,-9,2019,1,1,12,1,30,30,15,1,1,1,0,8.823631557940921,8.823631557940921,0,0,0,0,0,0,0,0,0,0,6.096330484352998,0,0,0,44.36,56.72,6,1,0,0,7,4,0,305.6666666666667,0,0,0 +3618,4457,8049,8048,-9,-9,1,1,1,34,1,0,1,0,2,-9,2,1,0,3,8.228525067764606,8.154094634534697,0,2,0,-9,3,0,3,146.4117607651046,0,0,0,31,2,4,1,2,2,2019,1,2,11,1,39,40,15,1,1,1,0,8.632887459606353,8.632887459606353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.74,47.41,6,1,0,0,7,4,0,305.6666666666667,0,0,0 +3618,4457,8050,-9,8048,-9,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.4375609002068,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,7,4,0,305.6666666666667,0,0,0 +3619,4458,8051,-9,8053,8052,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1180.895820043152,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,8,2,1,449.25,0,0,0 +3619,4458,8052,8053,-9,-9,1,1,1,42,1,1,2,0,1,-9,2,1,0,3,7.892399304418741,7.745273407849502,0,2,0,-9,12,0,8,9.646076778758435,0,0,0,34,1,4,3,1,1,2019,2,2,5,0,35,40,15,1,0,3,0,6.711174301849576,6.711174301849576,0,0,0,0,0,0,0,1,0,1,3.20389210524112,0,0,0,62.66,52.4,5,3,0,0,8,2,1,449.25,0,0,0 +3619,4458,8053,8052,-9,-9,2,1,0,34,1,1,2,0,1,-9,3,3,0,4,0,0,0,2,0,-9,12,0,-8,16.03243486862506,0,0,1,42,1,3,1,1,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.79,52.62,7,3,1,0,8,2,1,449.25,0,0,0 +3619,4458,8054,-9,8053,8052,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.4666671558691,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,8,2,1,449.25,0,0,0 +3620,4459,8055,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,1,1,0,4,7.844029974851609,8.08698789810113,3.891096778020965,3,0,0,0,-9,0,-925.7096326458371,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,60,0,15,1,0,-9,0,6.291094468049828,6.291094468049828,0,0,0,0,0,0,0,0,0,0,6.346835394074033,4.562199264244986,0,0,52.23,55.6,5,1,0,0,4,4,1,335,0,0,0 +3621,4460,8056,-9,8059,8057,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-912.1155669046608,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,4,1,475.25,0,0,0 +3621,4460,8057,8059,-9,-9,1,1,1,47,1,0,2,0,1,-9,7,2,0,3,7.805676869414766,7.58680733964471,0,2,0,-9,18,0,7,-142.9084150188046,1,0,0,40,1,4,1,-9,1,2019,3,2,9,0,25,42,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.12,53.99,4,1,0,0,12,4,1,475.25,0,0,0 +3621,4460,8058,-9,8059,8057,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.382067731302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,4,1,475.25,0,0,0 +3621,4460,8059,8057,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.257906113725838,8.443377049082216,0,2,0,-9,18,0,-7,-11.4191742504541,0,0,1,47,1,3,2,-9,-9,2019,2,1,12,0,28,28,15,1,0,2,0,16.4753749636275,16.4753749636275,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,12,4,1,475.25,0,0,0 +3622,4461,8060,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,4,8.55739835614413,8.738496352202612,0,3,0,0,0,-9,0,-935.7914950342167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,40,50,15,1,0,-9,0,22.68280959306423,22.68280959306423,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,101,0,0,0 +3623,4462,8061,-9,-9,-9,1,1,1,100,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1028.556985336405,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.411794985027395,0,0,0,56.76,42.62,7,1,0,0,13,1,1,1171,0,0,0 +3624,4463,8062,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,4,8.110460364317477,7.930663676355076,0,3,0,0,0,-9,0,-1021.007357389174,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,7.942931450072559,7.942931450072559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,2,1,0,0,1,4,1,704,0,0,0 +3625,4464,8063,8064,-9,-9,3,1,0,25,1,0,0,0,1,-9,3,3,0,4,8.0117129797872,7.719971120564359,0,1,0,-9,1,-9,-5,100.0921911349133,-9,1,1,30,1,5,1,-9,-9,2019,3,1,11,0,40,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.9914407384086414,0,2.335313350069965,3,47,58,5,1,1,0,10,4,1,342,0,0,0 +3625,4464,8064,8063,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,5,8.113224506338311,8.015030857324714,0,1,0,1,1,-9,5,24.90584924848783,0,0,0,25,1,4,3,-9,-9,2019,2,3,16,4,40,40,15,1,4,3,0,10.21932850837333,10.21932850837333,0,0,0,0,0,0,0,0,0,0,7.309421658532007,0,0,0,48.77,60.16,5,1,0,0,10,4,1,342,0,0,0 +3625,4465,8065,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,4,8.080120695086611,8.296898448678936,0,3,0,-9,0,-9,0,-883.7280222608345,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,27,10,40,0,15,1,10,-9,0,8.814103656255403,8.814103656255403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.23,61.72,2,1,0,0,10,4,1,623,0,0,0 +3626,4466,8066,-9,8068,8069,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.0259192815545,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,9,5,1,680.25,0,0,0 +3626,4466,8067,-9,8068,8069,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1162.356694120683,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,2,0,0,9,5,1,680.25,0,0,0 +3626,4466,8068,8069,-9,-9,2,1,0,38,1,0,2,0,1,-9,3,3,0,4,0,0,0,2,0,-9,17,0,-2,-44.03731400395736,0,0,1,40,2,4,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,3,1,0,9,5,1,680.25,0,0,0 +3626,4466,8069,8068,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,4,9.258946058210494,9.045344768881099,0,2,0,-9,17,0,2,-96.12590918052251,0,0,0,38,1,4,3,2,2,2019,2,2,6,0,72,36,15,1,0,3,0,16.57277675661317,16.57277675661317,0,0,0,0,0,0,0,0,0,0,5.207183452699959,0,0,0,57.16,56.15,6,1,0,0,9,5,1,680.25,0,0,0 +3627,4467,8070,8071,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,5,8.908691034197291,9.270743438557236,0,1,0,-9,28,0,1,-95.33519821529381,0,0,0,53,2,3,1,3,3,2019,1,2,11,2,68,60,15,1,2,1,0,12.40310414032849,12.40310414032849,0,0,0,0,0,0,0,0,0,0,4.427843627593172,0,0,0,59.04,51.29,6,1,0,0,6,5,1,613,0,0,0 +3627,4467,8071,8070,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.616894454688077,7.568105342328846,0,1,0,-9,15,0,-1,-116.5654990984527,0,0,0,54,2,5,1,3,3,2019,1,1,10,0,28,39,15,1,0,1,0,8.436563787669639,8.436563787669639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.27,45.41,5,1,0,0,6,5,1,613,0,0,0 +3628,4468,8072,8073,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.026422615813038,8.265371827258813,0,1,0,-9,2,0,-5,177.5646746940701,0,0,1,35,1,3,2,-9,-9,2019,2,1,11,0,37,35,15,1,2,2,0,12.28516340895084,12.28516340895084,0,0,0,0,0,0,0,0,0,0,.5132653047804022,0,0,0,48,57,5,5,0,0,8,3,0,1203,0,0,0 +3628,4468,8073,8072,-9,-9,1,1,1,35,1,0,0,0,1,0,7,2,0,3,0,0,0,1,0,-9,2,0,5,85.70607408884649,-9,0,0,30,1,4,1,1,2,2019,3,2,20,8,0,0,15,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.39,52.15,5,4,0,0,8,3,0,1203,0,0,0 +3629,4469,8074,8075,-9,-9,2,1,0,55,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,6,0,-2,127.5415341374891,0,0,0,57,3,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.66654568213292,3,57.16,56.15,6,3,0,0,4,4,1,684.5,0,0,0 +3629,4469,8075,8074,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,4,8.432824987353243,8.639464228169238,0,1,0,-9,6,0,2,98.28316456127324,0,0,0,55,3,4,3,3,3,2019,2,2,6,0,30,30,15,1,0,3,0,20.69738480350121,20.69738480350121,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,4,4,1,684.5,0,0,0 +3629,4470,8076,-9,8074,8075,4,1,0,25,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1045.317037172628,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,20,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,51.86,2,3,1,0,4,1,1,592,0,0,0 +3629,4471,8077,-9,8074,8075,5,1,0,21,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-903.5226470904387,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,27.63,4,3,1,0,4,1,1,464,0,0,0 +3629,4472,8078,-9,8074,8075,6,1,1,20,2,0,0,0,2,1,97,3,0,5,0,0,0,3,0,-9,0,-9,0,-1058.882228125722,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,4,1,1,1074,0,0,0 +3630,4473,8079,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,1,1,0,2,5.702994635190483,6.01569272475546,0,3,0,0,0,-9,0,-977.536419093835,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,25,0,15,1,4,-9,0,1.720289106929281,1.720289106929281,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.35,52.76,6,1,0,0,5,2,1,250,0,0,0 +3630,4474,8080,-9,8079,-9,2,1,1,29,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-910.9680198572419,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,42,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.220400738178195,0,0,0,48.28,60.18,5,1,0,0,5,1,1,1062,0,0,0 +3631,4475,8081,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,4,7.060306518981095,7.040489872942851,0,3,0,0,0,-9,0,-976.4034855728419,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,12,12,15,1,0,-9,0,10.16814765337942,10.16814765337942,0,0,0,0,0,0,0,1,1,0,6.173971702464716,0,0,0,57.16,56.15,1,1,0,0,9,3,1,871,0,0,0 +3632,4476,8082,-9,8083,8085,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.915515812962,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,4,1,3308.5,0,0,0 +3632,4476,8083,8085,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,3,7.493462567010316,7.433521849027277,0,2,0,-9,2,0,-6,-69.11152469285243,-9,0,1,48,2,4,1,2,2,2019,1,1,14,4,22,0,15,1,4,1,0,10.68157251329807,10.68157251329807,0,0,0,0,0,0,0,1,1,0,3.805254427702857,0,0,0,39.44,34.39,5,1,0,0,2,4,1,3308.5,0,0,0 +3632,4476,8084,-9,8083,8085,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.231558502539,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,3308.5,0,0,0 +3632,4476,8085,8083,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,4,8.057213373914845,8.272771307032732,0,2,0,-9,2,0,6,52.79960931626148,0,0,0,42,1,3,1,3,3,2019,1,2,10,0,37,37,15,1,0,1,0,11.39799679305986,11.39799679305986,0,0,0,0,0,0,0,1,1,0,1.98196526214899,0,0,0,51.83,57.2,5,1,0,0,2,4,1,3308.5,0,0,0 +3633,4477,8086,8088,-9,-9,3,1,1,29,1,1,2,0,3,-9,2,1,0,5,8.294610516680176,8.498626789846416,0,2,0,-9,4,0,0,14.76218733012932,0,1,0,38,1,3,1,-9,-9,2019,1,1,6,0,46,54,15,1,0,1,0,10.12452074881447,10.12452074881447,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,61.29,2,1,0,0,7,4,0,1510.666666666667,0,0,0 +3633,4477,8087,-9,8088,8086,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.4142721910672,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,0,1510.666666666667,0,0,0 +3633,4477,8088,8086,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,3,8.262761873291605,8.32234223074518,0,2,0,-9,4,0,9,24.55044688941619,0,0,1,29,3,5,1,2,2,2019,1,3,6,0,37,38,15,1,0,1,0,13.52221354165427,13.52221354165427,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,53.42,2,3,0,0,7,4,0,1510.666666666667,0,0,0 +3634,4478,8089,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,5,0,6.706203751789028,6.458429605371669,3,0,0,0,-9,0,-963.3025886721313,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.373024186433187,6.671748812498721,0,0,59.7,21.09,4,1,0,0,7,2,1,1163,0,0,0 +3635,4479,8090,8091,-9,-9,1,1,1,40,1,0,0,0,1,-9,1,1,0,4,9.602049150289075,9.398602926540649,0,1,0,-9,4,0,5,5.034287990585562,0,0,0,35,1,4,1,1,1,2019,1,2,0,0,40,40,15,1,0,1,0,38.29402076185137,38.29402076185137,0,0,0,0,0,0,0,0,0,0,3.757642471372138,0,0,0,54.74,57.22,6,1,0,0,12,5,1,323,0,0,0 +3635,4479,8091,8090,-9,-9,2,1,0,35,1,0,0,0,1,-9,5,1,0,4,8.585843548606361,8.327677449058973,0,1,0,-9,4,0,-5,107.7992243831622,0,0,1,40,1,4,1,-9,-9,2019,1,1,10,1,45,45,15,1,1,1,0,12.19197610546918,12.19197610546918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,55.04,6,1,0,0,12,5,1,323,0,0,0 +3636,4480,8092,8093,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.677588145078929,8.530528884715766,0,1,0,-9,6,0,2,-41.98266056590307,0,0,0,42,2,4,1,3,2,2019,1,2,6,0,45,47,15,1,0,1,0,13.88950917966145,13.88950917966145,0,0,0,0,0,0,0,0,0,0,0,0,0,3,55.79,52.62,6,1,0,0,11,5,1,432,0,0,0 +3636,4480,8093,8092,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,4,8.349534678162001,8.17759584246509,0,1,0,-9,6,0,-2,57.44136578556461,0,0,1,44,2,4,1,3,2,2019,1,1,18,5,39,39,15,1,5,1,0,9.176610710460352,9.176610710460352,0,0,0,0,0,0,0,0,0,0,.5829710489982083,0,27.90439799495874,3,35.57,63.56,4,1,0,0,11,5,1,432,0,0,0 +3636,4481,8094,-9,8093,8092,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.380475352634256,7.074808770425392,0,3,0,0,0,-9,0,-1048.788579199948,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,28,35,15,1,0,-9,1,5.666953935127184,5.666953935127184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,11,3,1,252,0,0,0 +3637,4482,8095,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-945.4542558893384,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.61,21.77,4,1,0,0,11,1,1,735,0,0,0 +3638,4483,8096,-9,-9,-9,2,1,1,24,2,0,2,0,1,1,2,1,0,4,7.406057958496167,7.405788867770436,0,4,0,0,0,-9,0,-1041.338960972187,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,22,0,15,1,0,-9,0,9.088159456173271,9.088159456173271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,2,0,1677,0,0,0 +3639,4484,8097,8098,-9,-9,2,1,0,68,1,0,0,0,2,-9,2,1,0,3,7.907268490850705,7.769772856230343,5.992140089588317,1,0,-9,9,0,15,-38.13818787972644,0,0,0,53,2,2,3,2,3,2019,2,1,9,0,35,40,15,1,0,3,0,9.330141117261329,9.330141117261329,0,0,0,0,0,0,0,0,0,0,6.568788398104089,6.295575318334858,0,0,46.16,51.87,5,1,0,0,7,3,0,523.5,0,0,0 +3639,4484,8098,8097,-9,-9,1,1,1,53,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,9,0,-15,-83.41807570185512,0,0,0,68,2,3,1,1,1,2019,3,2,20,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,34.34,4,2,1,0,7,3,0,523.5,0,0,0 +3640,4485,8099,-9,8100,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,3,8.130338243660727,8.069723961452437,0,3,0,0,0,-9,0,-1215.634838258065,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,1,8.848919029329002,8.848919029329002,0,0,0,0,0,0,0,1,1,0,0,0,.2059720094420607,3,57.33,53.46,5,1,0,0,6,4,0,1503,0,0,0 +3640,4486,8100,-9,-9,-9,2,1,0,97,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1058.748921955648,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,5.343970258472634,0,0,6.102894059872729,0,0,1,1,0,0,0,0,0,55,43,6,1,0,0,6,1,0,784,0,0,0 +3641,4487,8101,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,5.34006722861554,5.87155264805198,3,0,0,0,-9,0,-879.17125404755,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.483709406554618,5.454623314413296,0,0,61.43,43.34,2,1,0,0,4,2,1,1682,0,0,0 +3642,4488,8102,8103,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,7.564767174470095,7.194497579700839,1,0,-9,9,0,-13,-27.36589824119432,0,0,0,79,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.121007884324358,7.175585098894551,0,0,52,48,5,1,0,0,9,3,1,582,0,0,0 +3642,4488,8103,8102,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,7.314150263414386,6.743755628439974,1,0,-9,34,0,13,32.56566744374993,0,0,0,66,3,3,3,3,2,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,10.15404610369276,0,0,0,0,1,1,0,8.26978925047545,7.339488769628094,0,0,61.04,44.94,6,1,0,0,9,3,1,582,0,0,0 +3643,4489,8104,-9,-9,-9,4,1,1,32,2,0,0,0,2,-9,3,3,0,4,8.087633662235516,8.26627716054108,0,3,0,0,0,-9,0,-1055.091603127609,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,60,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,5,3,1,0,11,4,1,595,0,0,0 +3643,4490,8105,-9,-9,-9,5,1,0,29,2,0,0,0,1,-9,2,1,0,5,5.943021549308137,6.31420482154352,0,3,0,0,0,-9,0,-1064.884650440699,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,4,0,15,1,0,-9,1,13.32066546444515,13.32066546444515,0,0,0,0,0,0,0,1,1,0,0,0,.9594189508048137,3,62.39,56.71,6,3,0,0,11,2,1,897,0,0,0 +3644,4491,8106,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1070.584209324936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.786241904582731,0,0,0,48.71,25.17,5,1,0,0,2,1,0,426,0,0,0 +3645,4492,8107,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1017.633675820425,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8848355521229327,0,0,0,33.4,51.97,4,1,0,0,10,1,1,342,0,0,0 +3646,4493,8108,8109,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,5,8.767200302482616,8.635190009643136,0,1,0,-9,2,0,1,40.36834327844986,0,1,1,24,1,3,1,1,1,2019,1,2,7,0,48,48,15,1,0,1,0,11.54211805957567,11.54211805957567,0,0,0,0,0,0,0,0,0,0,3.066570247009611,0,0,0,57.06,57.76,7,1,0,0,4,5,0,375,0,0,0 +3646,4493,8109,8108,-9,-9,2,1,1,24,1,0,0,0,1,-9,2,1,0,3,8.223603113198262,7.932178129852387,0,1,0,-9,2,0,-1,-4.661708903127266,0,1,0,25,1,5,1,-9,-9,2019,1,1,11,1,50,54,15,1,1,1,0,8.954382462735545,8.954382462735545,0,0,0,0,0,0,0,0,0,0,.7175562870292884,0,0,0,52.99,48.57,5,1,0,0,4,5,0,375,0,0,0 +3647,4494,8110,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,4,8.351832002787486,8.181945558056531,0,3,0,0,0,-9,0,-1011.586347777901,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,39,37,15,1,0,-9,0,12.13842298591218,12.13842298591218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.43,48.2,6,1,0,0,4,4,1,146,0,0,0 +3648,4495,8111,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,4,8.686332663489148,8.698514733510905,0,1,0,-9,10,0,6,-95.47360909784334,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,11,0,32,30,15,1,0,-9,0,16.67253035667473,16.67253035667473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,2,5,1,1218,0,0,0 +3648,4496,8112,-9,-9,-9,2,1,0,45,2,0,0,0,1,-9,2,1,0,4,8.340437329203287,8.125359554307593,0,1,0,-9,10,0,-6,75.58507856963297,0,0,0,-9,-9,-9,-9,2,3,2019,1,1,13,2,38,32,15,1,2,-9,0,12.31177784046155,12.31177784046155,0,0,0,0,0,0,0,0,0,0,2.93517860136029,0,0,0,45.82,54.57,6,1,0,0,2,5,1,371,0,0,0 +3649,4497,8113,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-969.5268619325891,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.84,29.24,1,1,0,1,11,1,1,256,0,0,0 +3650,4498,8114,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,5,0,5.055650689558414,4.734368938514538,3,0,-9,0,-9,0,-927.7980880478078,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.938122025843117,4.175768558376707,0,0,54.04,60.47,6,1,0,0,11,2,1,1552,0,0,0 +3651,4499,8115,8116,-9,-9,1,1,1,37,1,0,0,0,1,-9,2,1,0,5,8.766036135840077,8.918602251276925,0,1,0,-9,2,0,7,-21.31293575890254,0,0,0,30,1,4,3,3,2,2019,2,2,2,0,37,37,15,1,0,3,0,19.2594171382294,19.2594171382294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,4,0,0,6,5,0,594.5,0,0,0 +3651,4499,8116,8115,-9,-9,2,1,0,30,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,2,0,-7,23.07144303070833,0,0,1,37,1,5,1,-9,-9,2019,3,1,14,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,7,4,0,0,6,5,0,594.5,0,0,0 +3652,4500,8117,8118,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,6.405627056484667,6.304415056175898,1,0,-9,7,0,1,-11.2859899037997,0,0,0,66,3,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.913928366650865,6.489361910039853,0,0,53.62,46.84,6,1,0,0,11,2,1,4062,0,0,0 +3652,4500,8118,8117,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-1,-58.94415230544384,0,0,0,67,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.56,62.74,6,1,0,0,11,2,1,4062,0,0,0 +3653,4501,8119,-9,-9,-9,1,1,0,75,2,0,0,0,1,-9,4,3,0,3,0,7.654646548824647,7.510282754980214,3,0,0,0,-9,0,-1032.632780101578,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.36614834889577,0,0,0,1.833392337653178,65.00523480380454,1,1,0,.0494083048545478,7.554074888135717,0,0,50.27,29.56,6,1,0,0,13,3,1,429,0,0,0 +3654,4502,8120,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,4,8.47573152602496,8.602818904432153,0,3,0,0,0,-9,0,-798.9554891987866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,36,41,15,1,1,-9,0,16.2489507984593,16.2489507984593,0,0,0,0,0,0,0,1,1,0,5.165923741389152,0,0,0,48.81,59.91,6,1,0,0,8,5,1,617,0,0,0 +3655,4503,8121,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,8.941890112034292,8.900969707557762,3,0,0,0,-9,0,-960.3286588174077,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.606954628064672,8.974459478217989,0,0,61.28,46.17,6,1,0,0,6,5,1,179,0,0,0 +3656,4504,8122,8123,-9,-9,1,1,0,45,1,0,0,0,1,-9,1,1,0,5,7.640916381484398,7.689682942147238,0,1,0,-9,10,0,-1,-11.08168668959778,0,0,0,46,1,4,1,2,1,2019,1,2,15,4,10,5,15,1,4,1,0,29.81418040184315,29.81418040184315,0,0,0,0,0,0,0,1,1,0,7.647166303833393,0,0,0,40.38,61.66,2,5,0,1,8,5,1,691.5,0,0,0 +3656,4504,8123,8122,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,4,9.020972892307485,9.412962490341599,0,1,0,-9,10,0,1,-157.9945327947069,0,0,0,45,1,5,1,2,3,2019,1,1,12,1,40,40,15,1,1,1,0,26.76928339337506,26.76928339337506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,4,1,0,0,8,5,1,691.5,0,0,0 +3657,4505,8124,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,-9,0,1,0,-1004.086472358542,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.93,49.45,2,1,0,0,12,1,0,325,0,0,0 +3658,4506,8125,8127,-9,-9,2,1,1,38,1,0,1,0,1,-9,2,1,0,4,8.74743671246312,8.356793094966925,0,2,0,-9,2,0,6,55.44542021264115,0,0,0,32,1,5,1,-9,-9,2019,1,1,11,0,49,54,15,1,0,1,0,11.20185076926117,11.20185076926117,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,57.52,6,1,0,0,11,5,1,633.6666666666666,0,0,0 +3658,4506,8126,-9,8127,8125,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.440737422419,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,633.6666666666666,0,0,0 +3658,4506,8127,8125,-9,-9,1,1,0,32,1,0,1,0,1,-9,2,1,0,5,8.188301659221752,7.805363373819295,0,2,0,-9,2,0,-6,-37.35031281578539,0,0,1,38,1,4,1,2,1,2019,1,2,12,0,43,38,15,1,0,1,0,11.30374096911615,11.30374096911615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,11,5,1,633.6666666666666,0,0,0 +3659,4507,8128,-9,-9,-9,1,1,1,30,3,0,0,0,2,-9,2,1,0,4,7.846139024003669,7.702272218174468,0,3,0,0,0,-9,0,-926.0102048829511,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,38,40,15,1,1,-9,0,8.7224389955324,8.7224389955324,0,0,0,0,0,0,0,1,1,0,4.465098816710401,0,0,0,49,58,5,1,0,0,4,3,1,381,0,0,0 +3659,4508,8129,8130,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,5.020408896142052,5.109335774184708,1,0,-9,8,0,-2,3.47451707408332,0,0,0,76,3,2,3,-9,-9,2019,4,3,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.89921460920114,4.949537530402852,124.0375182244468,1,39.34,37.56,4,1,0,0,4,2,1,266,0,0,0 +3659,4508,8130,8129,-9,-9,3,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,5.888523482312042,5.93214184875777,1,0,-9,8,0,2,7.752988376551686,0,0,0,74,3,2,3,-9,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,125.4584478093962,0,1,1,0,5.183978396831721,5.882554702131628,0,0,30.09,21.59,4,1,0,0,4,2,1,266,0,0,0 +3660,4509,8131,8132,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,67,0,2,17.04175491371237,0,0,0,84,2,2,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,10.94887757367511,23.27980935480299,0,0,0,72.26511469761576,1,1,0,3.805737356511248,0,0,0,40.63,26.65,3,1,0,0,8,2,1,533,0,0,0 +3660,4509,8132,8131,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,2,0,7.518112675234994,7.245479282024077,1,0,-9,67,0,-2,-42.59451935889386,0,0,0,86,2,1,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.632447613106147,7.368485732945747,28.59651875152399,1,55.12,31.57,4,1,0,0,8,2,1,533,0,0,0 +3661,4510,8133,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-951.7620469023332,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,33.16,5,4,0,0,2,1,0,614,0,0,0 +3662,4511,8134,8136,-9,-9,2,1,0,39,1,1,1,0,2,-9,2,1,0,3,7.196773925971939,7.168264873854753,0,2,0,-9,4,0,-2,-22.21323419971775,0,0,1,41,2,5,1,-9,-9,2019,1,1,12,0,16,16,15,1,0,1,0,12.51477942236589,12.51477942236589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.35,6,1,0,0,5,4,0,501,0,0,0 +3662,4511,8135,-9,8134,8136,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.3248139669005,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,0,501,0,0,0 +3662,4511,8136,8134,-9,-9,1,1,1,41,1,1,1,0,2,-9,1,1,0,5,9.024801458060498,8.810884626756145,0,2,0,-9,4,0,2,-34.13593053268051,0,0,0,39,2,3,1,-9,-9,2019,1,2,8,0,65,60,15,1,0,1,0,10.67762700159575,10.67762700159575,0,0,0,0,0,0,0,1,1,0,2.67287770200192,0,0,0,57.06,57.76,5,1,0,0,5,4,0,501,0,0,0 +3663,4512,8137,-9,8138,8139,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.1653596870921,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,705,0,0,0 +3663,4512,8138,8139,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,4,0,0,0,2,0,-9,2,0,0,-135.1138374958005,0,1,1,29,1,3,1,1,1,2019,1,2,10,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,2,4,1,705,0,0,0 +3663,4512,8139,8138,-9,-9,2,1,1,29,1,1,1,0,1,-9,2,1,0,3,8.934832553793095,9.202469661728134,0,2,0,-9,2,0,0,9.883601749966903,0,1,0,29,1,4,1,-9,-9,2019,1,1,35,12,40,40,15,1,12,1,0,24.91875735279394,24.91875735279394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.3,63.25,2,1,0,0,2,4,1,705,0,0,0 +3664,4513,8140,8141,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,2,7.767705550465817,7.945694819932772,0,1,0,-9,40,0,0,26.16778716412902,0,0,0,56,2,2,1,3,3,2019,1,2,15,3,40,45,15,1,3,1,0,7.897599524498631,7.897599524498631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.72,41.16,7,1,0,0,6,4,0,288,0,0,0 +3664,4513,8141,8140,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,2,7.757578933582364,8.148596883655951,0,1,0,-9,7,0,0,70.04268166081503,0,0,0,56,2,2,1,-9,-9,2019,1,1,9,1,40,51,15,1,1,1,0,8.514895214650174,8.514895214650174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.76,43.08,6,1,0,0,6,4,0,288,0,0,0 +3665,4514,8142,8143,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.36773453748568,8.466291225465969,0,1,0,-9,21,0,12,58.06740238812622,0,0,0,43,2,2,3,-9,2,2019,2,1,8,0,48,46,15,1,0,3,0,11.05712085156826,11.05712085156826,0,0,0,0,0,0,0,0,0,0,3.373060036007907,0,0,0,51.24,58.84,6,1,0,0,7,4,1,2058.5,0,0,0 +3665,4514,8143,8142,-9,-9,1,1,0,43,1,0,0,0,2,-9,8,3,1,2,7.742217609621027,7.754600205584175,0,1,0,-9,21,0,-12,45.32664789813385,0,0,1,55,2,4,1,3,3,2019,3,2,32,12,23,38,15,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.595637880748488,0,5.615207863621054,3,15.46,43.43,4,1,0,1,7,4,1,2058.5,0,0,0 +3666,4515,8144,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,2,1,0,3,6.877934519569558,7.616103956469663,6.031375031050583,3,0,0,0,-9,0,-972.1988347429731,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,16,16,15,1,2,-9,0,7.908876334415847,7.908876334415847,0,0,0,0,0,0,0,1,1,0,4.534700709494624,6.215659947763434,0,0,49.98,32.52,3,1,0,0,6,3,0,161,0,0,0 +3667,4516,8145,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,8.331775092262744,8.36043423328916,3,0,0,0,-9,0,-1125.790923927604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.217581134963391,8.534340366453073,0,0,58.49,50.2,6,1,0,0,11,5,1,2686,0,0,0 +3668,4517,8146,-9,8147,8149,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-894.5679984770285,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,2,0,513.75,0,0,0 +3668,4517,8147,8149,-9,-9,2,1,0,34,1,1,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-14,-67.65743515402461,0,0,1,48,2,3,1,-9,-9,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.11,43.13,5,1,0,0,8,2,0,513.75,0,0,0 +3668,4517,8148,-9,8147,8149,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1102.171887787375,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,2,0,513.75,0,0,0 +3668,4517,8149,8147,-9,-9,1,1,1,48,1,1,3,0,2,-9,2,1,0,3,7.933965235318164,7.945949327168954,0,2,0,-9,5,0,14,109.3801418794917,0,0,0,34,2,3,3,-9,-9,2019,2,2,11,2,50,46,15,1,2,3,0,6.343576857451724,6.343576857451724,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,52.07,6,1,0,0,8,2,0,513.75,0,0,0 +3669,4518,8150,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,4,0,6.147701563695405,6.043412928601859,3,0,-9,0,1,0,-1020.25906112363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.749809455496862,0,0,47.04,47.38,5,1,0,1,8,2,0,868,0,0,0 +3669,4519,8151,-9,8150,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,4,7.291673961725643,7.066906112381979,0,3,0,0,0,-9,0,-998.4082752970794,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,35,35,15,1,0,-9,1,4.367353881054854,4.367353881054854,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,8,2,0,335,0,0,0 +3670,4520,8152,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,8.475934051036408,8.300359981982409,0,3,0,0,0,-9,0,-1088.401409061194,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,37,15,1,0,-9,0,10.68721976094087,10.68721976094087,0,0,0,0,0,0,0,0,0,0,.5961574043319865,0,0,0,42.61,49.31,5,1,0,0,11,4,1,1161,0,0,0 +3670,4521,8153,-9,8152,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,3,7.516101877004787,7.524800043732732,0,3,0,0,0,-9,0,-1096.294875196892,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,32,25,15,1,0,-9,1,5.706687875922841,5.706687875922841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,6,1,0,0,11,3,1,229,0,0,0 +3671,4522,8154,-9,8157,8155,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.2817390506272,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,9,5,1,462.25,0,0,0 +3671,4522,8155,8157,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,4,9.02392828937176,9.074197149191663,0,2,0,-9,16,0,-2,16.52421893430596,0,0,0,41,2,4,1,3,3,2019,1,2,10,0,47,40,15,1,0,1,0,15.67693490872614,15.67693490872614,0,0,0,0,0,0,0,0,0,0,5.436184799429438,0,0,0,51.83,57.2,6,1,0,0,9,5,1,462.25,0,0,0 +3671,4522,8156,-9,8157,8155,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.5989361691687,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,9,5,1,462.25,0,0,0 +3671,4522,8157,8155,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,4,8.302307595239084,8.478574853891237,0,2,0,-9,16,0,2,-103.5472199990823,0,0,1,39,1,4,1,2,3,2019,1,1,7,0,27,27,15,1,0,1,0,15.66133668505665,15.66133668505665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.93,52.62,7,1,0,0,9,5,1,462.25,0,0,0 +3672,4523,8158,-9,8159,8162,5,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-903.3412173639302,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,6,1,1,659.2,0,0,0 +3672,4523,8159,8162,-9,-9,2,1,0,46,1,0,3,0,2,-9,6,3,0,1,0,0,0,2,0,-9,23,-9,0,0,-9,0,0,46,3,2,1,3,3,2019,3,1,22,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.25151297871724,3,23.25,37.02,2,3,0,0,6,1,1,659.2,0,0,0 +3672,4523,8160,-9,8159,8162,3,1,0,16,2,0,3,1,3,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-1017.315888162978,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.84,29.12,5,3,0,0,6,1,1,659.2,0,0,0 +3672,4523,8161,-9,8159,8162,4,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-941.2559525314136,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,1,1,659.2,0,0,0 +3672,4523,8162,8159,-9,-9,1,1,1,46,1,0,3,0,3,-9,2,1,0,2,0,0,0,2,0,-9,23,-9,0,0,-9,0,0,46,2,1,3,3,3,2019,2,2,8,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.41911744813199,3,42.99,37.39,5,3,0,0,6,1,1,659.2,0,0,0 +3673,4524,8163,-9,-9,-9,1,1,0,52,3,0,1,0,1,-9,2,1,0,4,9.034430938454555,9.000789177813699,6.294914282525633,4,0,0,0,-9,0,-1071.833446388405,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,50,45,15,1,0,-9,0,19.46915125516337,19.46915125516337,0,0,0,0,0,0,0,0,0,0,6.364342369939338,0,0,0,55.19,54.26,6,1,0,1,9,5,1,235,0,0,0 +3673,4525,8164,-9,8163,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,3,6.426215904666841,6.966318338893487,6.290109884843171,3,0,0,0,-9,0,-940.3796224561601,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.294180714743832,0,0,0,49.58,55.59,6,2,0,0,9,2,1,1544,0,0,0 +3673,4526,8165,-9,8163,-9,3,1,1,18,2,0,1,1,2,0,7,2,0,4,5.58193387892744,5.701628322808931,0,3,0,0,0,-9,0,-1083.206986301774,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,2,0,0,9,5,1,890,0,0,0 +3674,4527,8166,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,2,8.129763718205307,8.435317305387976,0,3,0,0,0,-9,0,-1065.286110907451,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,3,38,38,15,1,3,-9,0,15.91618687917133,15.91618687917133,0,0,0,0,0,0,0,0,0,0,3.613573010830076,0,0,0,49.58,38.07,5,5,0,0,8,4,0,377,0,0,0 +3675,4528,8167,8168,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,0,-5.808674844600034,-9,0,0,70,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.92097468886985,0,0,0,51,46,5,1,0,0,2,2,1,1080.5,0,0,0 +3675,4528,8168,8167,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,7.007238934708487,6.943283431338047,1,0,-9,50,0,0,-113.5493700098166,0,0,0,70,3,3,3,3,3,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.234602407153692,7.047328065157412,0,0,52.4,34.35,6,1,0,0,2,2,1,1080.5,0,0,0 +3676,4529,8169,8170,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,8.962313118136681,8.782993274750874,1,0,-9,34,0,1,88.72738866474789,0,0,0,64,1,3,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6488631243268962,8.94484665983437,6.786552096479427,3,51.81,57.22,6,1,0,0,8,5,1,882.5,0,0,0 +3676,4529,8170,8169,-9,-9,1,1,0,64,1,0,0,0,1,-9,2,1,0,3,9.176699430311523,9.302723172725125,0,1,0,-9,22,0,-1,-116.4458258444215,0,0,0,65,1,4,3,-9,-9,2019,2,2,11,0,50,55,15,1,2,4,0,23.88890933916839,23.88890933916839,0,0,0,0,0,0,0,1,1,0,3.688243632711355,0,0,0,50,47,5,1,0,0,8,5,1,882.5,0,0,0 +3677,4530,8171,-9,-9,8172,3,1,1,16,2,0,1,1,2,0,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1089.110813506557,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,13,4,1,859.5,0,0,0 +3677,4530,8172,-9,-9,-9,1,1,1,47,3,0,1,0,2,-9,2,1,0,2,8.36638705371381,9.126336984154811,0,4,0,-9,0,1,0,-942.1322747856029,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,10,40,44,15,1,10,-9,0,16.62027935121478,16.62027935121478,0,0,0,0,0,0,0,1,1,0,2.856254289092966,0,0,0,22.3,61.92,3,1,0,0,13,4,1,859.5,0,0,0 +3677,4531,8173,-9,-9,8172,2,1,1,20,2,0,1,0,2,1,2,1,0,5,7.552072893681586,7.466001343431937,0,3,0,0,0,-9,0,-927.8587463032676,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,4,0,25,0,15,1,0,-9,1,6.910876078135565,6.910876078135565,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,13,3,1,2244,0,0,0 +3678,4532,8174,8175,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.243198433178117,8.497813989308664,0,1,0,-9,32,0,-1,-154.0251229750562,0,0,0,55,1,5,1,3,3,2019,1,2,6,0,38,37,15,1,0,1,0,14.907523829276,14.907523829276,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.57,40.11,6,1,0,0,6,5,1,1795,0,0,0 +3678,4532,8175,8174,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,5,8.586109600886379,8.899773977706518,6.656366703583592,1,0,-9,32,0,1,15.79001505695911,0,0,0,54,2,3,1,2,3,2019,1,1,11,1,45,40,15,1,1,1,0,16.14258720126173,16.14258720126173,0,0,0,0,0,0,0,1,1,0,3.342808352594493,7.299353813266978,0,0,57.63,56.14,6,1,0,0,6,5,1,1795,0,0,0 +3679,4533,8176,8178,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,4,7.438581745132885,7.536056108259459,0,2,0,-9,24,0,0,56.55723108012475,0,0,1,41,1,4,1,-9,-9,2019,1,1,10,0,27,27,15,1,1,1,0,8.566817311474409,8.566817311474409,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,6,4,1,822.3333333333334,0,0,0 +3679,4533,8177,-9,8176,8178,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.969266576146,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.15,56.92,6,3,0,0,6,4,1,822.3333333333334,0,0,0 +3679,4533,8178,8176,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,4,8.752732228616297,8.521123934252604,0,2,0,-9,24,0,0,53.05198985019148,0,0,0,41,2,4,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,18.61309325241698,18.61309325241698,0,0,0,0,0,0,0,1,1,0,4.255623547797666,0,0,0,55.79,52.62,6,3,0,0,6,4,1,822.3333333333334,0,0,0 +3679,4534,8179,-9,8176,8178,3,1,0,19,2,0,1,0,2,1,2,1,0,5,7.020982509467236,6.949355104628438,0,3,0,0,0,-9,0,-1080.133713470825,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,2,14,0,15,1,2,-9,1,8.249159870952752,8.249159870952752,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,49.02,2,3,0,0,6,2,1,1236,0,0,0 +3680,4535,8180,-9,-9,-9,1,1,0,68,3,0,1,0,3,-9,4,3,0,3,0,0,0,4,0,-9,0,1,0,-1018.125792603385,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,45.34203664040803,0,0,0,1,1,0,0,0,0,0,50,47,5,3,0,1,8,1,1,315,0,0,0 +3680,4536,8181,-9,8182,-9,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1055.511446406379,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,1,1,1083,0,0,0 +3680,4536,8182,-9,8180,-9,2,1,0,29,2,0,1,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-990.8086742587845,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.41,24.28,1,3,1,1,8,1,1,1083,0,0,0 +3681,4537,8183,-9,8186,8185,4,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1068.529023481504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,9,4,1,613.5,0,0,0 +3681,4537,8184,-9,8186,8185,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-949.9569974949875,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,9,4,1,613.5,0,0,0 +3681,4537,8185,8186,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.42019861580035,8.782726924234439,0,2,0,-9,21,0,4,-62.21975786079449,0,0,0,43,2,5,1,2,2,2019,1,1,10,1,50,55,15,1,1,1,0,12.99854250201055,12.99854250201055,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,4,1,613.5,0,0,0 +3681,4537,8186,8185,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,5,8.049465825461759,8.022955738088489,0,2,0,-9,21,0,-4,144.2900852802471,0,0,1,47,2,4,1,2,2,2019,1,2,6,0,8,12,15,1,0,1,0,42.40928363027905,42.40928363027905,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,9,4,1,613.5,0,0,0 +3682,4538,8187,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,1,1,0,4,.9019710339480718,.8636337853717915,0,4,0,0,0,-9,0,-1045.947042509443,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,16,30,15,1,1,-9,0,.0216980117743102,.0216980117743102,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,6,1,0,0,2,1,0,485,0,0,0 +3682,4538,8188,-9,8187,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1027.829402621123,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,485,0,0,0 +3683,4539,8189,-9,8193,-9,2,1,0,12,2,1,4,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1094.842407081927,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,4,0,0,8,1,0,546.2,0,0,0 +3683,4539,8190,-9,8193,-9,5,1,0,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-851.6690145365385,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,1,0,546.2,0,0,0 +3683,4539,8191,-9,8193,-9,3,1,0,11,2,1,4,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-920.5663146978873,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,4,0,0,8,1,0,546.2,0,0,0 +3683,4539,8192,-9,8193,-9,4,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1069.958375795059,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,8,1,0,546.2,0,0,0 +3683,4539,8193,-9,-9,-9,1,1,0,34,2,1,4,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1105.751631071251,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,31,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.3,27.76,1,4,0,0,8,1,0,546.2,0,0,0 +3684,4540,8194,8195,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.646600229998366,8.360867784913955,0,1,0,-9,3,0,-1,-21.6093461364295,0,0,0,56,2,4,1,3,2,2019,1,2,7,0,40,38,15,1,0,1,0,15.6155251655976,15.6155251655976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,13,5,0,1314,0,0,0 +3684,4540,8195,8194,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.179670585297632,8.268661567858359,0,1,0,-9,3,0,1,69.4573317935314,0,0,0,55,2,4,1,-9,-9,2019,1,1,7,0,38,41,15,1,0,1,0,8.790856862963519,8.790856862963519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.34,56.95,6,1,0,0,13,5,0,1314,0,0,0 +3685,4541,8196,-9,8197,8198,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.1598418994519,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,9,4,0,486,0,0,0 +3685,4541,8197,8198,-9,-9,1,1,0,39,1,0,4,0,2,-9,2,1,0,4,7.857911165894666,7.653270504107828,0,2,0,-9,9,0,-2,-58.95241038753053,0,0,1,41,2,3,1,2,3,2019,1,2,14,2,36,36,15,1,2,1,0,6.587438005238389,6.587438005238389,0,0,0,0,0,0,0,1,0,1,0,0,5.599397220710687,3,30.07,54.82,6,1,0,0,9,4,0,486,0,0,0 +3685,4541,8198,8197,-9,-9,2,1,1,41,1,0,4,0,2,-9,2,1,0,3,8.644677765541344,8.600538950046671,0,2,0,-9,9,0,2,-9.927740863889293,0,0,0,39,2,4,1,2,-9,2019,1,1,8,0,38,42,15,1,0,1,0,19.48363265465182,19.48363265465182,0,0,0,0,0,0,0,1,0,1,2.445613129931358,0,0,3,54.27,48.04,6,1,0,0,9,4,0,486,0,0,0 +3685,4541,8199,-9,8197,8198,3,1,0,16,2,0,4,1,2,-9,7,2,0,3,4.757793770046405,4.64397685638947,0,2,0,0,0,-9,0,-1055.875246961646,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,.5158080233258371,0,0,3,26.99,48.27,4,1,0,0,9,4,0,486,0,0,0 +3685,4541,8200,-9,8197,8198,5,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1158.502635850978,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,9,4,0,486,0,0,0 +3685,4541,8201,-9,8197,8198,4,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.8348353159,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,9,4,0,486,0,0,0 +3686,4542,8202,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,8.108403079772362,8.53236023041873,3,0,0,0,-9,0,-1117.869407377645,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.783683511252993,8.372698764230336,0,0,60.12,54.8,7,1,0,0,9,4,1,303,0,0,0 +3687,4543,8203,8204,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.683380090602199,8.501193428836165,0,1,0,-9,35,0,-3,-128.8889867446661,0,0,0,55,2,4,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,19.08004487293245,19.08004487293245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,6,1,0,0,1,4,0,377.5,0,0,0 +3687,4543,8204,8203,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,5.489313347308727,5.693498308725276,0,1,0,-9,35,0,3,109.8079359242691,0,0,0,52,1,4,1,2,2,2019,1,1,6,0,28,37,15,1,0,1,0,1.35553243839372,1.35553243839372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,1,4,0,377.5,0,0,0 +3688,4544,8205,8206,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,3,8.027130314690151,8.425578721200383,0,1,0,-9,29,0,-7,-24.20858842034569,0,0,0,56,2,3,1,2,2,2019,1,2,12,1,38,37,15,1,1,1,0,13.34774648265018,13.34774648265018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.04,43.32,4,1,0,0,9,5,1,576,0,0,0 +3688,4544,8206,8205,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.430543689601237,8.148351988336676,0,1,0,-9,29,0,7,94.53264068643529,0,0,0,49,3,3,1,-9,-9,2019,1,1,10,0,48,45,15,1,0,1,0,12.45583430685551,12.45583430685551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,49.46,4,1,0,0,9,5,1,576,0,0,0 +3689,4545,8207,8208,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,2,8.807432783351873,8.29893405118872,0,1,0,-9,4,0,2,-20.51294503544133,0,1,0,27,2,4,1,2,-9,2019,1,2,19,7,55,60,15,1,7,1,0,15.05956404840022,15.05956404840022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.66,34.78,3,1,0,0,9,5,1,434.5,0,0,0 +3689,4545,8208,8207,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,4,7.746472782261749,8.240864746618991,0,1,0,-9,4,0,-2,-68.57689327915257,0,1,1,29,2,2,1,-9,-9,2019,1,1,8,0,44,62,15,1,0,1,0,6.248051660660386,6.248051660660386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,9,5,1,434.5,0,0,0 +3690,4546,8209,8210,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,5.297660449927681,5.174370833405906,1,0,-9,50,0,4,-103.9268205329194,0,0,0,70,3,3,3,-9,2,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.337270633417969,5.295543210980894,0,0,46.55,38.62,6,1,0,0,7,2,1,1333,0,0,0 +3690,4546,8210,8209,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.051815142620558,4.793645955627633,1,0,-9,50,0,-4,-73.66682384211492,0,0,0,74,3,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.509734404028902,4.792392175490679,0,0,59.55,38.61,6,1,0,0,7,2,1,1333,0,0,0 +3691,4547,8211,8212,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,4.503832383423561,4.853928126212611,1,0,-9,53,0,-2,39.8866551002624,0,0,0,75,2,2,3,3,2,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.311055554065052,4.707370670019419,0,0,41.12,54.83,6,1,0,0,4,2,1,870,0,0,0 +3691,4547,8212,8211,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,2,0,5.986761553810888,6.517225252689552,1,0,-9,53,0,2,-76.34502472329952,0,0,0,73,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.403548562410346,6.152953623706482,0,0,51.9,43.08,6,1,0,0,4,2,1,870,0,0,0 +3692,4548,8213,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.256730083509051,7.876716898969153,0,3,0,0,0,-9,0,-1116.857864605936,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,44,37,15,1,0,-9,0,8.434041554687523,8.434041554687523,0,0,0,0,0,0,0,0,0,0,3.505121975645445,0,0,0,35.39,55.43,6,1,0,0,11,4,0,130,0,0,0 +3693,4549,8214,8215,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,3,7.944100380454795,7.841854222399762,0,1,0,-9,37,0,-7,-4.733730976944816,0,0,0,71,2,4,3,2,2,2019,2,2,8,0,37,37,15,1,0,4,0,12.50411804005044,12.50411804005044,0,0,0,0,0,0,0,1,1,0,4.597459729659563,0,9.067816161335044,3,59.07,43.05,5,1,0,0,6,4,1,378.5,0,0,0 +3693,4549,8215,8214,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,7.839104382563995,7.681059641631747,1,0,-9,6,0,7,-1.77690140723265,0,0,0,64,2,3,1,-9,-9,2019,3,1,7,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.350900983441045,7.681322601226199,8.144031780662058,3,57.08,41.02,7,1,0,0,6,4,1,378.5,0,0,0 +3694,4550,8216,-9,8217,-9,2,1,1,51,2,0,0,0,1,-9,2,1,0,5,8.397567908112645,8.719622998484768,0,3,0,0,0,-9,0,-994.0035778427016,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,37,15,1,0,-9,1,14.21982446951512,14.21982446951512,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,11,5,1,281,0,0,0 +3694,4551,8217,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,6.260768279613549,6.294153781747696,3,0,0,0,-9,0,-1067.856845160588,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.514180033219982,0,0,49.63,54.22,6,1,0,0,11,2,1,1382,0,0,0 +3695,4552,8218,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,4,0,6.701702223601385,6.624517301915755,3,0,0,0,-9,0,-1007.554190443249,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.998271622152115,6.629916955995585,.1328448631466044,3,49.86,55.31,6,1,0,0,9,2,1,183,0,0,0 +3696,4553,8219,8220,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,2,0,8.124168577660942,7.946191142116448,1,0,-9,38,0,7,-18.18399179442999,0,0,0,57,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4.629412314833378,8.122870472218349,0,3,47.31,50.2,6,1,0,0,2,3,1,645.5,0,0,0 +3696,4553,8220,8219,-9,-9,1,1,0,57,1,0,0,0,1,-9,6,3,0,3,0,6.333483916506226,6.638974250438494,1,0,-9,39,0,-7,-7.685717708691562,0,0,0,64,1,2,3,2,1,2019,4,2,16,4,0,9,15,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.245393429948008,6.38693170749508,0,0,36.35,53.49,5,1,0,0,2,3,1,645.5,0,0,0 +3697,4554,8221,-9,8222,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-868.7166585744052,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,0,332.5,0,0,0 +3697,4554,8222,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,2,1,0,4,6.99340316542089,6.776872612770957,0,4,0,0,0,-9,0,-900.9059551207334,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,20,0,15,1,0,-9,0,6.400060456164944,6.400060456164944,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,2,0,332.5,0,0,0 +3698,4555,8223,8224,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.737328826344654,7.415561639671264,0,1,0,-9,10,0,13,22.56123719648661,0,0,0,46,2,4,1,2,3,2019,1,1,6,0,34,24,15,1,0,1,0,6.408922672344042,6.408922672344042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,4,1,911.5,0,0,0 +3698,4555,8224,8223,-9,-9,1,1,1,46,1,0,0,0,2,-9,1,1,0,4,8.045313428880167,8.065832833485549,0,1,0,-9,19,0,-13,-109.7586075842727,0,0,0,59,3,3,1,2,2,2019,1,2,14,3,40,40,15,1,3,1,0,9.487324143251325,9.487324143251325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,9,4,1,911.5,0,0,0 +3699,4556,8225,-9,8228,8227,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.995757518999,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,342.75,0,0,0 +3699,4556,8226,-9,8228,8227,3,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1016.613732324816,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,12,4,1,342.75,0,0,0 +3699,4556,8227,8228,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.508244592828555,8.428558210374197,0,2,0,-9,13,0,0,-122.2010830600064,0,0,0,45,1,5,1,2,3,2019,1,1,12,1,37,35,15,1,1,1,0,15.85881233932073,15.85881233932073,0,0,0,0,0,0,0,1,1,0,1.443913120558775,0,0,0,54.37,54.8,6,1,0,0,12,4,1,342.75,0,0,0 +3699,4556,8228,8227,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,5,7.120834572994749,7.291017752929783,0,2,0,-9,17,0,0,99.59945069496962,0,0,0,45,2,3,1,1,3,2019,1,2,7,0,15,15,15,1,0,1,0,11.1000026610656,11.1000026610656,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.05,59.07,6,1,0,0,12,4,1,342.75,0,0,0 +3700,4557,8229,8230,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,3,8.583613390328331,8.607321401814596,0,1,0,-9,16,0,-16,-56.06341486083042,0,0,1,51,2,1,1,2,2,2019,1,1,7,0,46,45,15,1,0,1,0,16.78245673239704,16.78245673239704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,58.88,5,1,0,0,4,5,1,1714,0,0,0 +3700,4557,8230,8229,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,1,8.328290044753015,8.466395602636238,7.041437481584065,1,0,-9,16,0,16,21.00057076864601,0,0,0,35,2,3,1,3,2,2019,1,2,19,7,40,40,15,1,7,1,0,7.903557143397046,7.903557143397046,0,0,0,0,0,0,0,0,0,0,0,7.406359392452566,0,0,40.42,45.74,2,1,0,0,4,5,1,1714,0,0,0 +3701,4558,8231,-9,8233,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-966.8428332010619,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,5,1,0,0,8,2,0,646,0,0,0 +3701,4558,8232,-9,8233,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1065.032442325607,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,2,0,646,0,0,0 +3701,4558,8233,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,2,1,0,3,7.239112761002527,6.953077481000354,0,4,0,0,0,-9,0,-1018.294838815293,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,16,20,15,1,0,-9,0,9.059080299328798,9.059080299328798,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.35,52.87,3,1,0,0,8,2,0,646,0,0,0 +3702,4559,8234,8238,-9,-9,2,1,1,60,1,0,0,0,2,-9,6,3,0,2,0,5.712649798759289,5.615939852150595,1,0,-9,6,0,-1,-50.27814704799051,0,0,0,61,2,4,3,3,3,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.292866327906395,5.784007692998766,44.09071380092062,3,54.63,31.94,3,1,0,0,10,2,1,1500,0,0,0 +3702,4559,8235,-9,-9,8234,5,1,1,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-989.6177028514661,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,1,1500,0,0,0 +3702,4559,8236,-9,-9,8234,3,1,0,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1044.694054026639,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,1500,0,0,0 +3702,4559,8237,-9,-9,8234,4,1,0,6,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-943.7717033324425,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,1500,0,0,0 +3702,4559,8238,8234,-9,-9,1,1,0,61,1,0,0,0,2,-9,6,3,0,4,0,6.004647328608579,5.808316364985735,1,0,-9,6,0,1,-35.97985368007623,0,0,0,60,2,2,3,3,3,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.772182454629586,.0948783558911632,3,57.16,56.15,6,1,0,0,10,2,1,1500,0,0,0 +3703,4560,8239,-9,-9,-9,1,1,0,23,2,0,0,1,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1056.905862674172,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,7,1,0,0,2,1,0,588,0,0,0 +3704,4561,8240,8242,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,5,8.557511667736369,8.617759753255248,4.958436185042815,2,0,-9,28,0,-3,-71.28090028983499,0,0,0,51,1,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,19.3279082072925,19.3279082072925,0,0,0,0,0,0,0,1,1,0,5.050826139074941,0,0,0,57.06,57.76,6,1,0,0,4,5,1,397,0,0,0 +3704,4561,8241,-9,8240,8242,3,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1099.540127704689,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,4,5,1,397,0,0,0 +3704,4561,8242,8240,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,4,8.880403849163285,8.557303406705294,6.622521396277398,2,0,-9,10,0,3,-65.25379922419515,0,0,0,48,1,5,1,-9,-9,2019,1,1,6,0,40,48,15,1,0,1,0,17.86810300640514,17.86810300640514,0,0,0,0,0,0,0,1,1,0,6.77072705578153,0,0,0,58.15,52.91,6,1,0,0,4,5,1,397,0,0,0 +3704,4561,8243,-9,8240,8242,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1202.240450290811,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,397,0,0,0 +3705,4562,8244,-9,8247,8245,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.3400649994109,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,5,1,314.75,0,0,0 +3705,4562,8245,8247,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,3,9.148912254793046,8.991666920754053,0,2,0,-9,15,0,0,98.19871690086411,0,0,0,43,2,5,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,21.97054394888266,21.97054394888266,0,0,0,0,0,0,0,0,0,0,2.918155376139957,0,0,0,45.84,50.44,4,1,0,0,2,5,1,314.75,0,0,0 +3705,4562,8246,-9,8247,8245,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1121.521724679121,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,2,5,1,314.75,0,0,0 +3705,4562,8247,8245,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,5,8.232992477625418,8.11130943510458,0,2,0,-9,15,0,0,15.53305655157493,0,0,1,43,1,3,1,2,1,2019,1,2,7,0,20,0,15,1,0,1,0,22.38380650598532,22.38380650598532,0,0,0,0,0,0,0,0,0,0,5.85710747123555,0,0,0,57.06,57.76,6,1,0,0,2,5,1,314.75,0,0,0 +3706,4563,8248,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,4,0,8.250412665341301,8.391034335741544,3,0,0,0,-9,0,-975.8168207285476,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2860370559855414,8.091364580194929,0,0,46.48,58.28,6,1,0,0,9,4,1,249,0,0,0 +3707,4564,8249,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-990.7609889445918,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.725751104552731,0,0,0,57.06,57.76,7,1,0,0,2,1,1,744,0,0,0 +3708,4565,8250,8251,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.778077824792033,7.877176149575093,1,0,-9,50,0,4,14.81162121314213,0,0,0,71,1,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.383528080504653,7.62423800590655,0,0,54.35,46.79,6,1,0,0,10,3,1,955.5,0,0,0 +3708,4565,8251,8250,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,3.983408296573884,4.257202651976156,1,0,-9,50,0,-4,81.69449129551518,0,0,0,75,2,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.779526958765916,4.285657141142111,0,0,54.37,54.8,6,1,0,0,10,3,1,955.5,0,0,0 +3709,4566,8252,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1104.677603059605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,11.24786884128638,0,1.299375010037112,0,0,44.96546304889585,1,1,0,0,0,0,0,58.49,36.97,1,1,0,0,13,1,1,245,0,0,0 +3710,4567,8253,8254,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,4,8.802773524929226,8.97920519640326,0,2,0,-9,10,0,-1,-157.2716296837785,0,0,0,48,1,3,1,-9,-9,2019,1,1,15,3,43,41,15,1,3,1,0,26.33851308639694,26.33851308639694,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.47,57.73,5,1,0,0,8,5,1,1632.333333333333,0,0,0 +3710,4567,8254,8253,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,3,9.170213860694101,9.086942972361474,0,2,0,-9,20,0,1,-110.496214557887,0,0,0,47,1,4,1,2,2,2019,1,2,12,1,60,90,15,1,1,1,0,15.31390738675443,15.31390738675443,0,0,0,0,0,0,0,1,1,0,4.413273770280243,0,0,0,41.4,55.39,4,1,0,0,8,5,1,1632.333333333333,0,0,0 +3710,4567,8255,-9,8253,8254,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-837.2725351527529,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,5,1,1632.333333333333,0,0,0 +3711,4568,8256,8257,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,4.007453199786245,3.829021774944239,1,0,-9,9,0,1,36.62768517702944,0,0,0,72,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.522806032414074,3.713782801513567,0,0,52.41,44.88,6,1,0,0,2,2,1,785,0,0,0 +3711,4568,8257,8256,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.217128372491858,5.875087618203212,1,0,-9,9,0,-1,24.32515260431846,0,0,0,73,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.592087132045362,0,0,0,54.2,57.49,6,1,0,0,2,2,1,785,0,0,0 +3712,4569,8258,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,4,6.883061636556899,6.734349813044076,0,3,0,0,0,-9,0,-1002.651248720324,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,21,19,15,1,0,-9,0,5.730478362729918,5.730478362729918,0,0,0,0,0,0,0,0,0,0,0,0,2.171833526815983,3,48.87,58.55,6,1,0,0,11,2,0,1459,0,0,0 +3713,4570,8259,-9,8260,8262,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.035565336046,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,438.5,0,0,0 +3713,4570,8260,8262,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,2,7.117792333508334,7.11523782295456,0,2,0,-9,8,0,1,7.553619330434253,0,0,1,33,2,4,1,3,3,2019,1,2,15,3,16,16,15,1,3,1,0,8.293865829596159,8.293865829596159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.79,35.99,6,1,0,0,12,4,1,438.5,0,0,0 +3713,4570,8261,-9,8260,8262,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.952656345198,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,4,1,438.5,0,0,0 +3713,4570,8262,8260,-9,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,4,8.696453866238935,8.802643182222345,0,2,0,-9,8,0,-1,72.81329367385062,0,0,0,34,2,2,1,-9,-9,2019,1,1,10,0,44,40,15,1,1,1,0,18.64279185120088,18.64279185120088,0,0,0,0,0,0,0,1,1,0,4.59731705397964,0,0,0,50,57,5,1,0,0,12,4,1,438.5,0,0,0 +3714,4571,8263,-9,8264,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-907.6362785149518,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,2,0,221,0,0,0 +3714,4571,8264,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,2,1,0,2,5.422900381631169,5.568707375535586,0,4,0,0,0,-9,0,-1031.055753168703,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,24,9,2,0,15,1,9,-9,0,12.15059895693131,12.15059895693131,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.1,33.05,2,1,0,0,7,2,0,221,0,0,0 +3715,4572,8265,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,8.912068554670405,8.892961174122906,3,0,0,0,-9,0,-1015.30948936924,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.704318022362164,8.766147764145103,0,0,54.91,51.67,6,1,0,0,6,5,1,851,0,0,0 +3716,4573,8266,8267,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,4,6.688132900972855,7.332619489979781,0,2,0,-9,3,0,0,7.813947624839399,0,0,0,49,2,3,3,-9,-9,2019,2,1,8,0,25,30,15,1,0,3,0,5.879306556770352,5.879306556770352,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,49.67,6,1,0,0,5,3,0,736,0,0,0 +3716,4573,8267,8266,-9,-9,1,1,0,49,1,0,1,0,2,-9,10,3,0,3,7.884080031751901,7.991338521741045,0,2,0,-9,18,0,0,12.19557884109865,0,0,0,49,2,4,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.59,39.96,6,1,0,0,5,3,0,736,0,0,0 +3716,4574,8268,-9,8267,8266,3,1,1,22,2,0,1,0,2,-9,1,1,0,2,8.104539618079185,8.015194376215787,0,3,0,0,0,-9,0,-1056.555571270167,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,0,0,15,1,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.45,56.96,2,1,0,0,5,4,0,1761,0,0,0 +3716,4575,8269,-9,8267,8266,4,1,1,18,2,0,1,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-937.6668194869995,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.136903524871908,0,0,0,44.75,56.39,5,1,1,0,5,4,0,407,0,0,0 +3717,4576,8270,8271,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,2,0,7.153099025833841,7.250796529616774,1,0,-9,67,0,0,-129.6010448565442,0,0,0,84,3,3,3,3,-9,2019,4,1,12,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.997844784632413,0,0,41.56,32.65,2,1,0,0,6,2,1,640,0,0,0 +3717,4576,8271,8270,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,3,0,6.185347105157971,6.074109243887817,1,0,-9,68,0,0,-58.82848569059643,0,0,0,84,3,2,3,2,3,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.335862152772359,0,0,53.91,41.3,2,1,0,0,6,2,1,640,0,0,0 +3718,4577,8272,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,0,2.728156328198844,3.034102454634475,3,0,0,0,-9,0,-965.6101947148228,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.536439909640142,13.56570830423407,3,42.61,18.41,2,1,0,0,9,2,0,1026,0,0,0 +3719,4578,8273,8274,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,2,0,8.100746131126533,7.765955293944142,1,0,-9,9,0,0,119.2658747391735,0,0,0,69,1,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.010245196095435,8.232820072346504,0,0,54.61,51.04,6,1,0,0,12,3,1,1042.5,0,0,0 +3719,4578,8274,8273,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,9,0,0,-44.57810127884297,0,0,0,69,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4839727977778294,0,0,0,57.32,47.78,6,1,0,0,12,3,1,1042.5,0,0,0 +3720,4579,8275,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-860.7067785919328,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,42.13,24.16,6,1,0,0,6,1,0,605,0,0,0 +3721,4580,8276,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,7.215167748615813,7.17398020597184,0,3,0,-9,0,-9,0,-1025.19603668647,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,35,0,15,1,4,-9,0,5.124146792576949,5.124146792576949,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.35,5,1,0,0,1,3,1,1685,0,0,0 +3722,4581,8277,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,2,1,0,3,7.395684919667076,7.95844104315935,5.287545727310634,4,0,0,0,-9,0,-1062.406135047316,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,20,15,1,0,-9,0,6.1326416280092,6.1326416280092,0,0,0,0,0,0,0,1,1,0,5.344146844737176,0,0,0,39.68,41.15,5,1,0,0,2,3,0,888,0,0,0 +3722,4581,8278,-9,8277,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1095.484648865161,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,0,888,0,0,0 +3723,4582,8279,8280,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,5.610720215270043,6.142485016073095,1,0,-9,10,0,8,74.03215659316044,0,0,0,67,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.904718678691292,0,0,41.17,59.31,6,1,0,0,12,2,1,467,0,0,0 +3723,4582,8280,8279,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-8,-41.74622119920258,0,0,0,75,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,4,1,0,0,12,2,1,467,0,0,0 +3724,4583,8281,8283,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,8.213630520761766,8.128550139258497,0,2,0,-9,22,0,-1,-18.56759996798598,0,0,0,49,1,3,1,3,3,2019,1,2,6,0,40,7,15,1,0,1,0,11.83170430384915,11.83170430384915,0,0,0,0,0,0,0,0,0,0,4.368915193987897,0,0,0,63.83,43.62,6,1,0,0,6,5,1,744.2,0,0,0 +3724,4583,8282,-9,8281,8283,5,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.834188231751,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,6,5,1,744.2,0,0,0 +3724,4583,8283,8281,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,3,9.786212835620725,9.741125379744924,0,2,0,-9,22,0,1,128.5913152794451,0,0,0,48,2,3,1,-9,2,2019,1,1,7,0,50,55,15,1,0,1,0,30.71925410902383,30.71925410902383,0,0,0,0,0,0,0,0,0,0,.8095732250351511,0,0,0,59.04,48.6,6,1,0,0,6,5,1,744.2,0,0,0 +3724,4583,8284,-9,8281,8283,6,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-920.9839415812223,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,1,0,0,6,5,1,744.2,0,0,0 +3724,4583,8285,-9,8281,8283,4,1,1,17,2,0,2,1,2,0,7,2,0,4,6.922507951534099,6.658978364177084,0,2,0,0,0,-9,0,-1066.739619725077,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,13,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,744.2,0,0,0 +3724,4584,8286,-9,8281,8283,3,1,1,19,2,0,2,0,2,-9,7,2,0,5,6.463310491098739,6.493894267480462,0,3,0,0,0,-9,0,-1091.906334300518,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,42.07,7,1,0,0,6,2,1,759,0,0,0 +3725,4585,8287,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-960.9632510019771,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.750668795784596,0,0,0,36.87,37.64,3,1,0,1,12,1,1,268,0,0,0 +3726,4586,8288,-9,-9,-9,1,1,0,79,3,0,1,0,2,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-911.5567028728913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.67,28.89,5,2,0,1,8,1,0,147,0,0,0 +3726,4587,8289,-9,8290,-9,5,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1051.196854587932,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,8,1,0,881,0,0,0 +3726,4587,8290,-9,-9,-9,3,1,0,30,2,0,1,0,2,-9,97,3,0,1,0,0,0,3,0,0,0,-9,0,-877.9500538661686,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,0,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,30,3,2,0,0,8,1,0,881,0,0,0 +3727,4588,8291,-9,8292,-9,3,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-922.0035193308165,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,1,0,1001.8,0,0,0 +3727,4588,8292,-9,-9,-9,1,1,0,34,3,0,4,0,3,-9,7,2,0,3,0,0,0,4,0,-9,0,1,0,-1078.896553088362,1,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,79.90624948347909,3,27.89,50.7,2,1,0,1,2,1,0,1001.8,0,0,0 +3727,4588,8293,-9,8292,-9,2,1,0,16,2,0,4,1,3,-9,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1070.735758309479,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.05,22.72,2,1,0,0,2,1,0,1001.8,0,0,0 +3727,4588,8294,-9,8292,-9,5,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1119.65385523843,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,1,0,1001.8,0,0,0 +3727,4588,8295,-9,8292,-9,4,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1049.514252634053,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,2,1,0,1001.8,0,0,0 +3728,4589,8296,-9,8297,8299,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.00436817247,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,1,4,1,639,0,0,0 +3728,4589,8297,8299,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,3,7.954744530536334,7.493739272764214,0,2,0,-9,19,0,-7,-16.96192679468697,0,0,1,50,2,3,1,2,3,2019,1,2,8,0,37,37,15,1,0,1,0,7.215462138176849,7.215462138176849,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.67,55.57,5,1,0,0,1,4,1,639,0,0,0 +3728,4589,8298,-9,8297,8299,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.68138444752,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,1,4,1,639,0,0,0 +3728,4589,8299,8297,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,3,8.495546474346348,8.429319554399489,0,2,0,-9,11,0,7,-74.3187857546481,0,0,0,43,2,3,1,-9,-9,2019,1,1,13,2,37,37,15,1,2,1,0,12.81825310114997,12.81825310114997,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.94,49.7,4,1,0,1,1,4,1,639,0,0,0 +3729,4590,8300,8301,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,2,7.485887465553998,7.445796790042619,0,1,0,-9,3,0,3,-20.87123343347157,0,0,0,60,2,2,1,3,3,2019,1,2,23,11,45,40,15,1,11,1,0,5.871689269406064,5.871689269406064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.2,38.17,3,1,0,1,4,3,1,912.5,0,0,0 +3729,4590,8301,8300,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,2,7.166031149504337,6.964601268990428,0,1,0,-9,3,0,-3,54.89359933156098,0,0,0,63,2,2,1,3,3,2019,1,1,13,2,20,20,15,1,2,1,0,6.725201914455241,6.725201914455241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.21,28.63,3,1,0,1,4,3,1,912.5,0,0,0 +3730,4591,8302,8303,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,3,8.084261647011392,8.264140029294143,0,1,0,-9,29,0,7,75.2326705521005,0,0,0,52,2,2,1,3,3,2019,1,1,11,2,50,40,15,1,2,1,0,7.912770707248745,7.912770707248745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.59,41.47,7,3,0,0,9,4,1,927,0,0,0 +3730,4591,8303,8302,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.28878628889855,7.104239746764399,0,1,0,-9,30,0,-7,35.60155508943535,0,0,0,59,3,3,1,3,3,2019,1,2,20,8,30,8,15,1,8,1,0,4.636036464406565,4.636036464406565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.38,34.36,2,1,0,1,9,4,1,927,0,0,0 +3731,4592,8304,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-979.2446315189439,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,18.14,5,1,0,0,12,1,0,231,0,0,0 +3731,4593,8305,-9,8304,-9,2,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-975.5372425982368,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.034113507719628,0,0,0,51.49,57.57,6,1,0,0,12,1,0,357,0,0,0 +3732,4594,8306,8307,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-3,-10.60632700364997,-9,0,0,71,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,11,4,1,534.5,0,0,0 +3732,4594,8307,8306,-9,-9,1,1,1,71,1,0,0,0,2,-9,1,1,0,4,8.383483208458818,8.705100433980693,7.133517749841109,1,0,-9,44,0,3,-104.1680781756871,0,0,0,68,2,3,3,2,-9,2019,2,2,10,1,4,16,15,1,1,4,0,112.3027901030675,112.3027901030675,1,0,0,0,0,0,0,1,1,0,7.217670796142106,6.938400101641452,70.5495116799833,1,47.38,57.75,5,1,0,0,11,4,1,534.5,0,0,0 +3733,4595,8308,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-865.7345239065733,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.32,59.62,1,1,0,0,2,1,0,1114,0,0,0 +3734,4596,8309,-9,-9,-9,1,1,0,36,2,1,3,0,2,-9,2,1,0,2,6.591314079581404,6.851264239822477,0,4,0,0,0,-9,0,-1020.450823480009,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,40,15,1,0,-9,0,2.017299989319359,2.017299989319359,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,41,4,1,0,0,4,2,0,807.5,0,0,0 +3734,4596,8310,-9,8309,-9,4,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1118.880773095179,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,4,2,0,807.5,0,0,0 +3735,4597,8311,8312,-9,-9,1,1,0,59,1,0,0,0,3,-9,1,1,0,3,5.17079855952797,5.568776218583534,0,1,0,-9,42,0,-4,24.74395628465161,0,0,0,63,3,3,1,3,3,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.738116718352382,0,0,0,52.2,49.07,4,1,0,0,12,2,1,480.5,0,0,0 +3735,4597,8312,8311,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,3,6.434811746654151,6.776354499126289,4.938616610502743,1,0,-9,42,0,4,-12.81138188967,0,0,0,59,3,3,1,3,3,2019,1,1,6,0,55,0,15,1,0,1,0,1.385966288683147,1.385966288683147,0,0,0,0,0,0,0,0,0,0,4.927010476244275,5.030061869575205,0,0,57.17,45.44,6,1,0,0,12,2,1,480.5,0,0,0 +3736,4598,8313,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,4,8.536518567224322,8.59368314290719,0,3,0,0,0,-9,0,-983.5578924243013,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,42,42,15,1,0,-9,0,18.32105999245521,18.32105999245521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.4,54.12,5,1,0,0,4,5,1,805,0,0,0 +3737,4599,8314,8315,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,5,9.515423405104741,9.071256425622991,0,1,0,-9,6,0,3,-78.66905894263468,0,0,0,53,2,2,1,3,3,2019,1,2,8,1,50,61,15,1,1,1,0,28.65860926167211,28.65860926167211,0,0,0,0,0,0,0,0,0,0,.3823371594266477,0,0,0,59.43,58.05,7,1,0,0,10,5,1,783.5,0,0,0 +3737,4599,8315,8314,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.331939737517298,7.139198065996656,0,1,0,-9,6,0,-3,-5.082963860947908,0,0,0,56,1,5,1,2,2,2019,1,1,18,6,16,16,15,1,6,1,0,11.61070970747332,11.61070970747332,0,0,0,0,0,0,0,0,0,0,6.620070206640015,0,0,0,28.87,50.5,5,1,0,0,10,5,1,783.5,0,0,0 +3738,4600,8316,8317,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,51,0,0,-8.683138995717554,0,0,0,68,2,4,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,4.798491897782574,0,0,0,0,1,1,0,2.172502555833213,0,0,0,58.07,15.1,5,1,0,0,7,2,1,525.5,0,0,0 +3738,4600,8317,8316,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.149117799614239,7.212626676641587,1,0,-9,51,0,0,86.40235704410082,0,0,0,68,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.747336890510648,4.046319426820322,1,57.73,54.53,5,1,0,0,7,2,1,525.5,0,0,0 +3739,4601,8318,8319,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,8.689856434971997,8.688676264185551,1,0,-9,53,0,7,71.29117640509897,0,0,0,65,2,3,3,3,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.596586621621222,8.456312785788571,0,0,43.8,44.58,6,3,0,0,4,4,1,509,0,0,0 +3739,4601,8319,8318,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-7,-68.72841444867851,0,0,0,72,1,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,38.67,45.86,5,3,0,0,4,4,1,509,0,0,0 +3740,4602,8320,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-923.6924163280501,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,10,0,49,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.46,39.47,5,1,1,0,9,1,0,704,0,0,0 +3741,4603,8321,8322,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,3,8.989836223489959,9.195471169853501,7.513672033853475,1,0,-9,10,0,4,40.54377026165143,0,0,0,60,2,3,1,-9,-9,2019,1,1,16,5,37,36,15,1,5,1,0,16.81122463668514,16.81122463668514,0,0,0,0,0,0,0,0,0,0,0,8.137568515381028,0,0,36.35,53.49,4,1,0,0,2,5,1,613,0,0,0 +3741,4603,8322,8321,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,3,8.374628293781134,8.485353398135871,6.754207880535356,1,0,-9,43,0,-4,41.98932093388789,0,0,0,64,2,3,1,3,3,2019,1,2,18,7,40,39,15,1,7,1,0,12.62557566211096,12.62557566211096,0,0,0,0,0,0,0,0,0,0,6.538896048339031,6.619421052764705,0,0,29.32,59.39,5,1,0,0,2,5,1,613,0,0,0 +3742,4604,8323,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,4,0,4.75049763625692,4.881871634962444,3,0,0,0,-9,0,-872.1846798400087,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.34771756395187,5.141307319273982,0,0,54.79,55.86,6,1,0,0,2,2,1,344,0,0,0 +3743,4605,8324,8325,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.272839838357296,8.189795359277644,0,1,0,-9,8,0,0,-159.6311458433019,0,0,0,57,3,3,1,3,3,2019,1,2,6,0,45,39,15,1,0,1,0,7.578412613167303,7.578412613167303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,3,0,0,9,4,1,838,0,0,0 +3743,4605,8325,8324,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,3,8.196639207578293,7.952344408344,0,1,0,-9,8,0,0,59.09430616238492,0,0,0,57,2,4,1,3,3,2019,1,1,7,0,34,34,15,1,0,1,0,10.55600655681931,10.55600655681931,0,0,0,0,0,0,0,0,0,0,1.726396766742634,0,0,0,60.3,46.58,6,3,0,0,9,4,1,838,0,0,0 +3743,4606,8326,-9,8325,8324,3,1,0,23,2,0,0,0,1,-9,2,1,0,4,8.166706843344867,8.390955899130329,0,3,0,0,0,-9,0,-1092.283255107772,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,3,0,42,48,15,1,0,-9,1,11.25369260205092,11.25369260205092,0,0,0,0,0,0,0,0,0,0,4.822462157098024,0,0,0,49.71,55.64,4,3,0,0,9,4,1,642,0,0,0 +3743,4607,8327,-9,8325,8324,4,1,1,28,2,0,0,0,1,-9,2,1,0,2,8.606529130018773,8.529845592361676,0,3,0,0,0,-9,0,-1015.351902399427,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,19,6,37,35,15,1,6,-9,1,15.0292459911284,15.0292459911284,0,0,0,0,0,0,0,0,0,0,7.423567382387077,0,0,0,31.05,56.43,4,3,0,0,9,5,1,408,0,0,0 +3744,4608,8328,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1014.704206186156,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.35,6,1,0,0,2,1,1,319,0,0,0 +3745,4609,8329,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,2,1,0,3,8.335371910968998,8.229294421195279,4.821989635886013,3,0,0,0,-9,0,-971.0025871875742,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,30,50,15,1,1,-9,0,17.93138687913134,17.93138687913134,0,0,0,0,0,0,0,0,0,0,4.841594435242191,5.155208557076413,0,0,49.33,48.83,3,1,0,0,9,5,0,187,0,0,0 +3746,4610,8330,-9,8331,8333,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.62943462428,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,7,3,1,518,0,0,0 +3746,4610,8331,8333,-9,-9,2,1,0,28,1,2,2,0,3,-9,5,1,0,3,6.980050120156463,6.758964718418981,0,2,0,-9,2,0,1,39.672287578883,-9,1,1,27,2,3,1,-9,-9,2019,1,1,12,0,16,0,15,1,0,1,0,6.325467585348316,6.325467585348316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,41.42,4,1,0,0,7,3,1,518,0,0,0 +3746,4610,8332,-9,8331,8333,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1041.05208235141,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,7,3,1,518,0,0,0 +3746,4610,8333,8331,-9,-9,1,1,1,27,1,2,2,0,2,-9,2,1,0,3,8.129082343431129,8.347466781551372,0,2,0,-9,2,0,-1,110.8352111626629,0,1,0,28,3,3,1,2,-9,2019,1,2,12,0,38,37,15,1,0,1,0,11.58233627128814,11.58233627128814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.08,44.64,3,1,0,0,7,3,1,518,0,0,0 +3747,4611,8334,-9,-9,-9,1,1,0,40,3,0,2,0,3,-9,2,1,0,4,7.662017294352529,7.921617569939153,0,4,0,0,0,-9,0,-906.2222744828933,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,31,0,15,1,1,-9,0,10.46610243798064,10.46610243798064,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,4,0,0,5,3,0,843.6666666666666,0,0,0 +3747,4611,8335,-9,8334,-9,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1018.507315855822,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,5,3,0,843.6666666666666,0,0,0 +3747,4611,8336,-9,8334,-9,5,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1023.918239030331,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,5,3,0,843.6666666666666,0,0,0 +3748,4612,8337,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,2,0,7.672264706957543,7.53087211567131,3,0,0,0,-9,0,-955.8450163058094,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,10,0,0,15,4,10,-9,0,0,0,1,3.525502855063281,0,0,0,0,0,1,1,0,5.776322327474928,7.464424502958103,0,0,35.86,29.89,4,1,0,0,1,3,1,422,0,0,0 +3749,4613,8338,8339,-9,-9,2,1,1,63,1,0,0,0,1,-9,1,1,0,5,6.645988411964968,7.086338883471562,0,1,0,-9,32,0,2,30.94671481634516,0,0,0,61,1,4,1,3,3,2019,1,1,7,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,1,9,3,1,416.5,0,0,0 +3749,4613,8339,8338,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,4,7.294719535977415,7.118367579589684,0,1,0,-9,33,0,-2,-170.9081184767963,0,0,0,63,1,5,1,1,2,2019,1,2,7,0,6,4,15,1,0,1,0,25.41362404376776,25.41362404376776,0,0,0,0,0,0,0,1,1,0,3.074342429700798,0,0,0,51.77,58.57,6,1,0,0,9,3,1,416.5,0,0,0 +3750,4614,8340,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,97,3,0,5,0,0,0,3,0,-9,0,-9,0,-1047.961336969502,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.865678780415978,0,0,0,47.83,62.16,7,1,0,0,9,1,0,451,0,0,0 +3751,4615,8341,-9,-9,-9,2,1,0,49,2,0,0,0,3,-9,2,1,0,2,7.708670785318554,7.881910867655077,0,3,0,-9,0,-9,0,-974.8973007763703,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,38,0,15,1,3,-9,1,6.998241198423077,6.998241198423077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,52.99,4,1,0,0,13,3,1,295,0,0,0 +3752,4616,8342,8343,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,3,7.570393790652662,7.628628189912635,0,1,0,-9,19,0,2,68.07755736752934,0,0,0,47,3,4,1,2,2,2019,1,2,8,0,60,0,15,1,0,1,0,3.075802903073028,3.075802903073028,0,0,0,0,0,0,0,0,0,0,.9278248489373857,0,3.154287786254016,3,61.88,41.71,7,1,0,0,4,3,1,129,0,0,0 +3752,4616,8343,8342,-9,-9,2,1,1,47,1,0,0,0,3,-9,1,1,0,4,6.916587477909102,6.670855589798222,0,1,0,-9,7,0,-2,92.96464022856711,0,0,0,49,2,3,1,-9,-9,2019,1,1,6,0,75,75,15,1,0,1,0,1.124424556720444,1.124424556720444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.39,54.22,7,1,0,0,4,3,1,129,0,0,0 +3753,4617,8344,8345,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,4,0,8.181564979973356,7.714918722087702,1,0,-9,57,0,-1,-16.01511277806613,0,0,0,79,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.861260703476399,7.875273447469677,0,0,55.19,54.26,6,1,0,0,1,4,1,1387.5,0,0,0 +3753,4617,8345,8344,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,8.26862370502981,8.172670257582761,1,0,-9,57,0,1,24.3457520207673,0,0,0,78,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.569552899046685,8.370839834113212,0,0,53.17,43.02,7,1,0,0,1,4,1,1387.5,0,0,0 +3754,4618,8346,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,3,7.878023001206205,7.902490224237382,0,3,0,0,0,-9,0,-1049.974005305751,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,27,12,30,37,15,1,12,-9,0,8.847788253749114,8.847788253749114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.2,46.57,3,1,0,0,6,3,0,374,0,0,0 +3754,4619,8347,-9,8346,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.075136720385624,7.120243441096358,0,3,0,0,0,-9,0,-1015.448964645116,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,26,30,15,1,8,-9,1,5.036813871366086,5.036813871366086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.02,57.99,4,1,0,0,6,2,0,1175,0,0,0 +3755,4620,8348,-9,-9,-9,1,1,0,96,3,0,0,0,2,-9,4,3,0,1,0,4.518564464705886,4.469247706817975,3,0,0,0,-9,0,-953.8599219275068,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.843179498785858,4.640728947371518,0,0,26.73,24.82,2,1,0,0,11,1,1,664,0,0,0 +3756,4621,8349,8350,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,4,5.025632816037999,7.69055171468048,8.171001763070311,1,0,-9,48,0,1,27.93607445263217,0,0,0,72,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.859154329916999,7.959869913556351,5.234096937114366,3,58.15,52.91,6,1,0,0,5,4,1,608.5,0,0,0 +3756,4621,8350,8349,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,7.107778794931024,7.152503499951037,1,0,-9,48,0,-1,-34.24943331295644,0,0,0,73,1,4,3,3,2,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3892156976083,7.031314847228368,0,0,40.2,24.84,6,1,0,0,5,4,1,608.5,0,0,0 +3757,4622,8351,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,2.961979385534085,7.279079617216105,7.5234453961167,3,0,0,0,-9,0,-1033.099094036121,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,2,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.023911985466612,7.271156762971928,1.824238965006232,3,57.16,56.15,6,1,0,0,2,3,1,300,0,0,0 +3758,4623,8352,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-962.2836977042195,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.49,19.06,5,1,0,0,9,1,0,468,0,0,0 +3759,4624,8353,-9,8354,8355,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-711.6928553104797,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,5,5,1,801.6666666666666,0,0,0 +3759,4624,8354,8355,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,2,8.996026216171179,9.615345252191419,0,2,0,-9,6,0,-1,-176.8194813030356,0,0,0,52,2,4,1,-9,-9,2019,1,1,16,5,42,47,15,1,5,1,0,31.95619654373931,31.95619654373931,0,0,0,0,0,0,0,0,0,0,0,0,.1613395184559803,3,39.97,51.04,4,1,0,0,5,5,1,801.6666666666666,0,0,0 +3759,4624,8355,8354,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,4,9.35709215528019,8.764264697955651,0,2,0,-9,6,0,1,-131.0590213863171,0,0,0,51,1,2,1,2,1,2019,1,2,9,0,37,50,15,1,0,1,0,25.74081791460629,25.74081791460629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,6,1,0,0,5,5,1,801.6666666666666,0,0,0 +3759,4625,8356,-9,8354,8355,3,1,0,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1118.475363913474,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,6,1,0,0,5,1,1,515,0,0,0 +3760,4626,8357,8358,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,4.022129482714872,3.991841009823845,1,0,-9,53,0,1,33.21004341045342,0,0,0,71,3,3,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.96456494457747,3.822114172677592,5.740118666711171,1,62.19,33.35,7,1,0,0,9,3,1,614.5,0,0,0 +3760,4626,8358,8357,-9,-9,2,1,1,71,1,0,0,0,3,-9,2,1,0,3,8.284958113114467,7.990560922431712,3.701809931770725,1,0,-9,6,0,-1,31.45344022634164,0,0,0,72,2,3,3,-9,-9,2019,2,1,7,2,22,55,15,1,2,4,0,20.14612591590646,20.14612591590646,0,0,0,0,0,0,0,1,1,0,3.479509225700269,3.38589375949258,0,0,65.15000000000001,23.76,1,1,0,0,9,3,1,614.5,0,0,0 +3761,4627,8359,-9,-9,-9,1,1,0,40,3,0,0,0,1,-9,2,1,0,4,9.468201585588785,9.068798386385714,0,3,0,0,0,-9,0,-938.5256476206781,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,44,40,15,1,1,-9,0,23.477711200652,23.477711200652,0,0,0,0,0,0,0,0,0,0,7.011921372445916,0,0,0,37.87,61.03,6,1,0,0,7,5,0,752,0,0,0 +3762,4628,8360,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,3,8.849530159001368,8.951187459426265,6.210101851708083,3,0,0,0,-9,0,-971.6735956272639,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,44,40,15,1,4,-9,0,16.7822954427603,16.7822954427603,0,0,0,0,0,0,0,1,1,0,6.11200601068431,0,0,0,40.59,58.72,3,1,0,0,2,5,1,864,0,0,0 +3763,4629,8361,-9,8364,8363,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-925.8681082884223,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,422,0,0,0 +3763,4629,8362,-9,8364,8363,2,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.3593003804441,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,422,0,0,0 +3763,4629,8363,8364,-9,-9,3,1,1,37,1,1,2,0,2,-9,2,1,0,4,9.231039616183509,9.156716288975128,0,2,0,-9,2,0,0,5.754462039333913,-9,0,0,37,2,3,1,-9,-9,2019,1,1,10,0,55,0,15,1,0,1,0,17.40700832218489,17.40700832218489,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,52.37,6,1,0,0,4,5,1,422,0,0,0 +3763,4629,8364,8363,-9,-9,1,1,0,37,1,1,2,0,2,-9,5,1,0,3,8.159996475171196,8.203295869798284,5.638070694908116,2,0,-9,2,0,0,64.66923592593018,0,0,1,37,2,4,1,2,3,2019,1,3,7,1,38,43,15,1,1,1,0,8.044667511924544,8.044667511924544,0,0,0,0,0,0,0,1,1,0,5.954118446866414,0,0,0,55.37,43.54,6,1,0,0,4,5,1,422,0,0,0 +3764,4630,8365,8366,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,4,8.559166136117518,9.103974266486372,0,1,0,-9,2,0,-5,-164.7397468522226,0,0,1,45,2,3,1,2,2,2019,1,1,19,8,45,42,15,1,8,1,0,21.17071791315164,21.17071791315164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.62,57.79,5,1,0,0,9,5,1,249,0,0,0 +3764,4630,8366,8365,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,3,8.905699615628309,8.955959139587423,0,1,0,-9,2,0,5,39.73084383867139,0,0,0,40,2,4,1,2,2,2019,1,2,7,0,45,43,15,1,0,1,0,18.16251316372594,18.16251316372594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.81,48.39,5,1,0,0,9,5,1,249,0,0,0 +3765,4631,8367,8369,-9,-9,1,1,0,39,1,1,1,0,2,-9,2,1,0,5,0,0,0,2,0,-9,9,0,-5,-119.5612046446292,0,0,1,44,2,4,1,2,2,2019,1,2,16,6,0,43,15,1,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.6,50.05,4,1,0,0,5,3,1,779.6666666666666,0,0,0 +3765,4631,8368,-9,8367,8369,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-887.3194307136457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,779.6666666666666,0,0,0 +3765,4631,8369,8367,-9,-9,2,1,1,44,1,1,1,0,2,-9,2,1,0,4,7.925383880252518,7.57581039885938,0,2,0,-9,9,0,5,8.916882343440165,0,0,0,39,2,5,1,3,3,2019,1,1,10,0,37,37,15,1,0,1,0,7.106484743948413,7.106484743948413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,5,3,1,779.6666666666666,0,0,0 +3766,4632,8370,8371,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,44,0,11,-6.038950551896662,0,0,0,61,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,5,1,0,0,13,2,1,1453.5,0,0,0 +3766,4632,8371,8370,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,6.272960739108616,6.322035310490578,1,0,-9,44,0,-11,50.68128215724644,0,0,0,72,3,3,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.703891117072724,6.623553131435855,0,0,45.58,42.43,2,1,0,0,13,2,1,1453.5,0,0,0 +3767,4633,8372,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,3,0,6.253564613634566,6.1178670980117,3,0,0,0,-9,0,-1078.876799504698,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.217338531625458,0,0,53.47,27.29,6,1,0,0,2,2,1,158,0,0,0 +3768,4634,8373,8374,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,4,8.302319973585458,8.364004981194523,0,1,0,-9,1,-9,0,88.49652169491446,-9,0,0,42,3,4,1,-9,-9,2019,1,1,6,0,43,0,15,1,0,1,0,10.66339874973329,10.66339874973329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,0,949.5,0,0,0 +3768,4634,8374,8373,-9,-9,1,1,0,42,1,0,0,0,3,-9,2,1,0,4,7.881050579343773,8.332463304861491,0,1,0,-9,1,0,0,-73.08058671663652,0,0,1,42,2,4,1,3,3,2019,1,2,10,0,41,42,15,1,0,1,0,8.672540730147674,8.672540730147674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,6,5,0,949.5,0,0,0 +3769,4635,8375,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,2,0,5.701339898419357,5.636845403399378,3,0,0,0,-9,0,-1012.482911953824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.741993632575884,5.621248008634026,7.569390202086905,3,39.8,41.57,6,1,0,0,13,2,0,896,0,0,0 +3770,4636,8376,8378,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.553374769321255,9.038079828459402,0,1,0,-9,3,0,-2,-88.63299503264969,0,0,0,53,2,3,1,-9,-9,2019,1,2,8,1,43,39,15,1,1,1,0,12.56617838248222,12.56617838248222,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,1,0,0,10,4,1,997.6666666666666,0,0,0 +3770,4636,8377,-9,8378,8376,5,1,1,17,2,0,0,1,2,0,7,2,0,4,6.981674096088858,7.224493691264478,0,1,0,0,0,-9,0,-795.6561706812629,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,1,997.6666666666666,0,0,0 +3770,4636,8378,8376,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.117050461896757,7.072960384911005,0,1,0,-9,3,0,2,31.85480613450928,0,0,0,51,2,4,1,-9,-9,2019,1,1,6,0,27,0,15,1,0,1,0,6.075727860296583,6.075727860296583,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,10,4,1,997.6666666666666,0,0,0 +3770,4637,8379,-9,8378,8376,3,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.499342103261283,7.512675887041267,0,3,0,0,0,-9,0,-938.4454923701123,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,32,30,15,1,0,-9,1,7.308803163153901,7.308803163153901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,10,3,1,240,0,0,0 +3770,4638,8380,-9,8378,8376,4,1,1,28,2,0,0,0,2,-9,2,1,0,3,7.523727566279777,7.270561726324808,0,3,0,0,0,-9,0,-1118.05857447902,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,60,30,15,1,0,-9,1,3.142307332131781,3.142307332131781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,5,1,0,0,10,3,1,664,0,0,0 +3771,4639,8381,8382,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,5.915892539093369,5.954869406723323,1,0,-9,42,0,-6,-57.89553544585807,0,0,0,66,2,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.922253437490541,5.575259560055526,0,0,55.87,46.11,7,1,0,0,1,2,1,195.5,0,0,0 +3771,4639,8382,8381,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,6.804475100073739,7.039293472093023,1,0,-9,42,0,6,-32.23728433784191,0,0,0,60,2,3,3,3,2,2019,4,1,23,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.917498413152997,0,0,37.81,36.99,3,1,0,1,1,2,1,195.5,0,0,0 +3772,4640,8383,8384,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,6.368956370503686,6.539472457307978,1,0,-9,9,0,0,178.410738469162,0,0,0,65,2,4,1,3,3,2019,3,1,17,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.487019425095942,6.550626749517376,0,0,45.36,43.69,6,1,0,0,9,4,1,1823.5,0,0,0 +3772,4640,8384,8383,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,4,7.548432448084119,8.495490581520562,7.952528514046299,1,0,-9,9,0,0,102.2267471023399,0,0,0,65,3,3,3,-9,2,2019,2,2,6,0,32,23,15,1,0,4,0,6.673553008222973,6.673553008222973,0,0,0,0,0,0,0,1,1,0,7.444677047597875,8.101629611048608,0,0,57.16,56.15,2,1,0,0,9,4,1,1823.5,0,0,0 +3773,4641,8385,8386,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,3,7.197454575822774,7.920623714823519,7.25602123883982,1,0,-9,43,0,-1,18.53679819235412,0,0,0,63,2,3,1,3,2,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.828592347820575,7.439642108354879,28.39861750222928,3,52.88,45.97,5,1,0,0,9,5,1,638.5,0,0,0 +3773,4641,8386,8385,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,3,8.619153328140488,9.380647065907564,8.101260867804941,1,0,-9,43,0,1,89.27132883825891,0,0,0,62,1,3,1,3,3,2019,1,2,6,0,55,70,15,1,0,1,0,11.01085401489665,11.01085401489665,0,0,0,0,0,0,0,1,1,0,7.675309696941212,8.243450284421483,0,0,59.04,48.6,5,1,0,0,9,5,1,638.5,0,0,0 +3774,4642,8387,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-929.876958469334,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,39,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945211394538597,0,0,0,57.06,57.76,6,1,0,0,12,1,1,157,0,0,0 +3775,4643,8388,8389,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,.1612924616310175,6.162436903254473,6.133522491134233,1,0,-9,47,0,3,-152.8837356267499,0,0,0,67,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.116116598081735,5.910377226433289,0,0,62.27,48.47,6,1,0,0,5,2,1,720.5,0,0,0 +3775,4643,8389,8388,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.429599207726064,6.233280919419625,1,0,-9,47,0,-3,85.0936572775823,0,0,0,70,2,3,3,3,2,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.071183759220269,6.139359101889827,0,1,42.22,56.11,3,1,0,0,5,2,1,720.5,0,0,0 +3776,4644,8390,-9,-9,-9,1,1,1,54,3,1,1,0,2,-9,2,1,0,3,7.937633077948266,8.147218710928954,0,4,0,0,0,-9,0,-1009.630757590504,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,5,36,40,15,1,5,-9,0,12.59045276559875,12.59045276559875,0,0,0,0,0,0,0,1,1,0,0,0,13.33810203097773,3,33.2,50.78,1,4,0,1,8,3,0,690,0,0,0 +3776,4645,8391,-9,-9,8390,2,1,0,20,2,1,1,0,2,-9,5,1,0,4,7.203999994064756,7.502855827787361,0,3,0,0,0,-9,0,-992.0193902511102,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,35,22,15,1,0,-9,1,4.693995413210453,4.693995413210453,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.28,6,4,0,0,8,3,0,735.5,0,0,0 +3776,4645,8392,-9,8391,-9,4,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-964.4227668603007,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,3,0,735.5,0,0,0 +3776,4646,8393,-9,-9,8390,3,1,1,19,2,1,1,0,2,-9,2,1,0,4,6.473756098925652,6.373803651786019,0,3,0,0,0,-9,0,-1019.473811246,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,2,12,17,15,1,2,-9,1,6.607511296959169,6.607511296959169,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,6,4,0,0,8,2,0,95,0,0,0 +3777,4647,8394,8395,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,2,9.343818147553071,9.245820491860032,0,1,0,-9,13,0,-8,-17.34314951607159,0,0,0,50,1,2,1,2,1,2019,1,2,7,0,43,42,15,1,0,1,0,33.74096166544987,33.74096166544987,0,0,0,0,0,0,0,0,0,0,4.65463908423286,0,0,0,52.24,50.75,6,1,0,0,10,5,1,959,0,0,0 +3777,4647,8395,8394,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,2,8.721629792144492,9.095059261624421,0,1,0,-9,13,0,8,6.302551052525353,0,0,0,42,1,2,1,2,2,2019,1,1,17,6,37,37,15,1,6,1,0,23.3104838408997,23.3104838408997,0,0,0,0,0,0,0,0,0,0,5.091880920873272,0,0,3,55.19,30.32,6,1,0,0,10,5,1,959,0,0,0 +3778,4648,8396,-9,8399,8398,3,1,0,17,2,0,1,1,2,0,7,2,0,5,6.782402204363058,6.519825998389127,0,2,0,0,0,-9,0,-958.4011259770379,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.04,48.05,5,1,0,0,1,5,0,1174.25,0,0,0 +3778,4648,8397,-9,8399,8398,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.111789852501,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,1,5,0,1174.25,0,0,0 +3778,4648,8398,8399,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,5,8.637881477091346,8.453991693039226,0,2,0,-9,6,0,3,-41.07747621037222,0,0,0,56,1,3,1,1,1,2019,1,1,8,0,40,50,15,1,0,1,0,13.15005745330066,13.15005745330066,0,0,0,0,0,0,0,0,0,0,8.021607564331871,0,0,0,51.73,58.82,6,1,0,0,1,5,0,1174.25,0,0,0 +3778,4648,8399,8398,-9,-9,1,1,0,56,1,0,1,0,1,-9,2,1,0,3,9.206060777843918,9.098620403586123,0,2,0,-9,6,0,-3,-77.26112062971512,0,0,0,59,2,5,1,2,2,2019,1,2,11,0,32,29,15,1,2,1,0,29.42363400887197,29.42363400887197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,1,0,0,1,5,0,1174.25,0,0,0 +3779,4649,8400,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,1,7.828046033699786,7.839364401801545,0,3,0,0,0,-9,0,-987.0312911842968,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,35,32,15,1,2,-9,0,9.282079102829019,9.282079102829019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.23,30.82,3,1,0,0,9,3,1,65,0,0,0 +3779,4650,8401,-9,-9,-9,2,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,7.776307812585841,7.971723824016008,3,0,0,0,-9,0,-928.9925733248931,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.100794539104681,34.27513042774198,3,49.04,55.86,6,1,0,0,9,4,1,379,0,0,0 +3780,4651,8402,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,4,8.173016721017504,8.478561734317974,0,3,0,0,0,-9,0,-1070.794773689434,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,41,38,15,1,0,-9,0,12.95303527361196,12.95303527361196,0,0,0,0,0,0,0,1,1,0,2.416418628143842,0,0,0,51.83,57.2,6,1,0,0,12,4,1,251,0,0,0 +3781,4652,8403,8404,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,3,7.62263863504535,7.331363790157634,0,2,0,-9,9,0,2,-1.246567458592034,-9,0,0,50,2,4,3,2,2,2019,2,2,7,0,50,0,15,1,0,3,0,4.022049345103834,4.022049345103834,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,42.13,5,1,0,0,6,3,1,534,0,0,0 +3781,4652,8404,8403,-9,-9,2,1,0,50,1,0,1,0,2,-9,6,3,0,4,0,7.235061711099299,7.845836858480018,2,0,-9,9,0,-2,112.0122334215275,0,0,0,52,2,3,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.870034815455413,0,0,3,57.16,56.15,6,1,0,0,6,3,1,534,0,0,0 +3781,4652,8405,-9,8404,8403,4,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1043.109151563345,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,6,3,1,534,0,0,0 +3781,4653,8406,-9,8404,8403,3,1,0,24,2,0,1,0,2,-9,2,1,0,4,7.778758541256013,7.665113155224347,0,3,0,0,0,-9,0,-963.4910728151619,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,0,15,1,0,-9,1,5.294175114465129,5.294175114465129,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,6,3,1,936.6666666666666,0,0,0 +3781,4653,8407,-9,8406,-9,6,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1089.202790125057,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,6,3,1,936.6666666666666,0,0,0 +3781,4653,8408,-9,8406,-9,5,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-867.8808373228769,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,936.6666666666666,0,0,0 +3782,4654,8409,-9,8410,8411,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.382905122824,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,959.3333333333334,0,0,0 +3782,4654,8410,8411,-9,-9,1,1,0,34,1,0,1,0,1,-9,2,1,0,4,9.001698661905348,8.621943669441727,0,2,0,-9,7,0,0,-43.95203586857163,0,0,1,34,2,4,1,2,1,2019,1,2,7,0,38,0,15,1,0,1,0,23.02905955751265,23.02905955751265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.1,54.82,6,1,0,0,2,5,1,959.3333333333334,0,0,0 +3782,4654,8411,8410,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,4,8.927715561702648,8.933890106959204,0,2,0,-9,7,0,0,-114.0163810918573,0,0,0,34,1,4,1,-9,-9,2019,1,1,11,0,39,0,15,1,0,1,0,20.46851828680686,20.46851828680686,0,0,0,0,0,0,0,1,1,0,0,0,.8458354180841969,3,48.76,53.24,6,1,0,0,2,5,1,959.3333333333334,0,0,0 +3783,4655,8412,8413,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,3,8.747218570024533,8.699234295399554,0,2,0,-9,14,0,-4,21.89799872489674,0,0,1,46,1,3,1,2,3,2019,1,2,12,0,45,50,15,1,0,1,0,16.51735591652423,16.51735591652423,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.5,48.94,7,3,0,0,6,5,1,312.3333333333333,0,0,0 +3783,4655,8413,8412,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,8.674831185051209,8.53379696918479,0,2,0,-9,12,0,4,12.48973902020606,0,0,0,42,1,3,1,2,1,2019,1,1,9,0,30,46,15,1,0,1,0,22.55824140973607,22.55824140973607,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,51,6,1,0,0,6,5,1,312.3333333333333,0,0,0 +3783,4655,8414,-9,8412,8413,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.0614838108463,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,6,5,1,312.3333333333333,0,0,0 +3784,4656,8415,8416,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.40040211709862,7.618793592866945,1,0,-9,10,0,-7,-54.05222275230296,0,0,0,74,2,4,3,3,3,2019,4,1,10,0,0,18,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.46213108029106,0,0,57.16,56.15,6,1,0,0,12,4,1,817,0,0,0 +3784,4656,8416,8415,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,8.219878272785097,8.025200453139261,1,0,-9,35,0,7,32.00364363480907,0,0,0,67,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.143940045075942,0,0,59.15,49.67,6,1,0,0,12,4,1,817,0,0,0 +3785,4657,8417,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,9.093735227857165,8.654900100203262,0,3,0,0,0,-9,0,-993.0302917444205,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,40,15,1,0,-9,0,17.61756547237161,17.61756547237161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,4,0,0,6,5,1,952,0,0,0 +3786,4658,8418,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,4,8.156057851446022,8.383616370190859,0,3,0,0,0,-9,0,-1016.679182810809,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,37,37,15,1,2,-9,0,12.41500862263865,12.41500862263865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.45,51.4,6,1,0,0,11,4,1,299,0,0,0 +3787,4659,8419,8420,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,3,0,7.697022476188667,7.573532297292632,1,0,-9,22,0,-3,-64.16969769074451,0,0,0,63,1,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.803731009704658,7.666620421613181,3.595076417215388,3,47.42,42,6,1,0,0,5,3,1,763.5,0,0,0 +3787,4659,8420,8419,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,8.079068968344984,7.497258027909295,1,0,-9,20,0,3,-123.9355007464236,0,0,0,60,1,3,3,3,3,2019,4,2,6,0,0,28,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.427679508090815,22.33715629858369,2,62.49,55.09,7,1,0,0,5,3,1,763.5,0,0,0 +3788,4660,8421,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,3,8.621522780817212,8.077683239911225,0,3,0,0,0,-9,0,-918.4218800100576,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,3,46,38,15,1,3,-9,0,9.775318025605948,9.775318025605948,0,0,0,0,0,0,0,0,0,0,2.446268452543355,0,0,0,40.64,52.96,5,1,0,0,7,4,1,664,0,0,0 +3788,4661,8422,-9,-9,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,3,8.436269572785662,8.181379289984351,0,3,0,0,0,-9,0,-1021.615309383773,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,44,45,15,1,0,-9,0,9.470017482924176,9.470017482924176,0,0,0,0,0,0,0,0,0,0,6.355336915305319,0,0,0,54.78,45.17,6,1,0,0,7,4,1,1041,0,0,0 +3789,4662,8423,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,3,8.43740137354844,8.265083149219368,0,1,0,-9,7,0,-17,-135.3405039837481,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,18,6,10,47,15,1,6,-9,0,58.55419839074647,58.55419839074647,0,0,0,0,0,0,0,0,0,0,3.619149142661883,0,0,0,30.7,62.92,3,3,0,0,10,5,1,448,0,0,0 +3789,4663,8424,-9,-9,-9,2,1,1,57,2,0,0,0,1,-9,2,1,0,4,9.563965279942616,9.674213428653124,0,1,0,-9,7,0,17,-88.61600864389239,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,9,0,40,60,15,1,0,-9,0,33.24106681321253,33.24106681321253,0,0,0,0,0,0,0,0,0,0,5.505667123407269,0,0,0,54.2,57.49,6,1,0,0,10,5,1,371,0,0,0 +3790,4664,8425,8426,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,55,0,-6,154.0502113559102,0,0,0,78,2,3,3,2,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.165735024257587,0,0,0,54.22,36.37,6,1,0,0,9,2,1,702,0,0,0 +3790,4664,8426,8425,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,4.883431432274746,4.705298298441622,1,0,-9,55,0,6,-63.52023082636135,0,0,0,72,3,2,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.304772406773955,4.865276796486567,7.888861285502298,3,64.57000000000001,33.75,7,1,0,0,9,2,1,702,0,0,0 +3791,4665,8427,8428,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,5,0,8.857069769345134,8.768893917589709,1,0,-9,37,0,-2,8.669127176588265,0,0,0,64,1,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.907244582151487,8.488686307063462,0,0,62.39,56.71,7,1,0,0,1,5,1,2384.5,0,0,0 +3791,4665,8428,8427,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,7.702025357480395,7.541350164583219,1,0,-9,7,0,2,-39.59890206093662,0,0,0,62,1,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.913531284773352,0,0,52,48,5,1,0,0,1,5,1,2384.5,0,0,0 +3792,4666,8429,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,8,3,1,4,0,0,0,4,0,-9,0,-9,0,-1055.648756545391,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,4,0,0,8,1,0,1069,0,0,0 +3792,4666,8430,-9,8429,-9,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-931.2981834526918,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,1,0,1069,0,0,0 +3792,4667,8431,-9,8429,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,5,7.872205530222896,7.85868177170175,0,3,0,-9,0,-9,0,-902.3180613880166,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,40,0,15,1,1,-9,1,9.081291325061665,9.081291325061665,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.68,56.78,6,4,0,0,8,3,0,778,0,0,0 +3793,4668,8432,8433,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.656364075096431,7.506028503653998,1,0,-9,29,0,3,-70.06444174459403,0,0,0,66,2,3,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.597263718734089,0,0,59.14,52.5,6,1,0,0,2,3,1,530.5,0,0,0 +3793,4668,8433,8432,-9,-9,1,1,1,66,1,0,0,0,2,-9,1,1,0,3,6.455171499952329,7.580167480170411,7.088738954596856,1,0,-9,29,0,-3,-108.6891641867006,0,0,0,69,1,4,3,2,2,2019,2,2,10,0,28,28,15,1,0,4,0,2.984487833816394,2.984487833816394,0,0,0,0,0,0,0,1,1,0,7.277513935168797,7.000386939254979,0,0,54.37,54.8,2,1,0,0,2,3,1,530.5,0,0,0 +3794,4669,8434,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,97,3,0,2,0,0,0,3,0,0,0,-9,0,-889.6038146414841,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.364623679076129,0,74.11704410684148,3,52.4,28.95,3,2,0,0,8,1,0,1469,0,0,0 +3795,4670,8435,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-962.3184282014539,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.36,57.34,6,1,0,0,11,1,1,515,0,0,0 +3796,4671,8436,8439,-9,-9,2,1,1,33,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,8,0,0,0,0,0,0,33,2,3,3,2,3,2019,4,1,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,5,1,1,0,8,1,0,441.4,0,0,0 +3796,4671,8437,-9,8439,8436,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.963318110431,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,1,0,441.4,0,0,0 +3796,4671,8438,-9,8439,8436,4,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-875.7406873598485,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,8,1,0,441.4,0,0,0 +3796,4671,8439,8436,-9,-9,1,1,0,33,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,8,0,0,0,0,0,1,33,2,3,3,2,-9,2019,4,2,0,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,45.38,5,1,0,0,8,1,0,441.4,0,0,0 +3796,4671,8440,-9,8439,8436,3,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-854.4124866230029,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,8,1,0,441.4,0,0,0 +3797,4672,8441,8442,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,2,9.169196171947458,9.15985139780406,6.918710373066432,1,0,-9,32,0,4,29.39258340569496,0,0,0,54,3,3,1,2,2,2019,1,2,20,8,45,50,15,1,8,1,0,26.65332827197973,26.65332827197973,0,0,0,0,0,0,0,0,0,0,0,7.080281150349464,0,0,47.79,40.56,3,3,0,0,8,5,1,1745.5,0,0,0 +3797,4672,8442,8441,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,3,7.208281680265173,7.250142794250631,0,1,0,-9,32,0,-4,-59.4788919816264,0,0,0,58,2,2,1,-9,-9,2019,1,1,12,0,25,25,15,1,0,1,0,5.276048911186427,5.276048911186427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.66,39.54,4,3,0,0,8,5,1,1745.5,0,0,0 +3797,4673,8443,-9,8442,8441,4,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.159972194200945,8.621903203083834,0,3,0,0,0,-9,0,-1197.608088475342,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,46,36,15,1,0,-9,1,9.881298508847541,9.881298508847541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,8,4,1,651,0,0,0 +3798,4674,8444,-9,8446,8447,2,1,0,23,2,0,1,0,1,-9,7,2,0,4,6.927261709962742,7.354262753168622,0,3,0,0,0,-9,0,-822.840993281714,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,0,0,16,22,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,4,0,0,2,3,0,101,0,0,0 +3798,4675,8445,-9,8446,8447,3,1,0,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-894.1174631201985,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,6,4,0,0,2,3,0,774.6666666666666,0,0,0 +3798,4675,8446,8447,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,5,7.651502864271764,7.582159429106735,0,2,0,-9,27,0,-11,42.51799600253187,0,0,0,59,2,3,1,3,3,2019,1,4,11,1,29,29,15,1,1,1,0,7.673622237766964,7.673622237766964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,4,0,0,2,3,0,774.6666666666666,0,0,0 +3798,4675,8447,8446,-9,-9,4,1,1,59,1,0,1,0,2,-9,2,1,0,3,8.058941850954142,7.763916099760957,0,2,0,-9,2,0,11,112.0409332783923,0,0,0,48,2,5,1,-9,-9,2019,1,1,10,0,39,40,15,1,1,1,0,6.886335821631961,6.886335821631961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,5,4,0,0,2,3,0,774.6666666666666,0,0,0 +3798,4676,8448,-9,8446,8447,5,1,1,26,2,0,1,0,2,-9,1,1,0,5,7.986760467351244,7.978874037538612,0,3,0,0,0,-9,0,-1142.709599027892,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,30,38,15,1,0,-9,1,12.82363767784584,12.82363767784584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,5,4,0,0,2,4,0,663,0,0,0 +3799,4677,8449,8450,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,4.710655226807688,5.368954403370325,1,0,-9,8,0,-6,35.98390162545603,0,0,0,74,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.43374538454649,5.532584470884664,0,0,57.16,56.15,6,1,0,0,4,3,1,346,0,0,0 +3799,4677,8450,8449,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.817053970418136,7.715117415312385,1,0,-9,8,0,6,1.699753485202354,0,0,0,68,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.869187590413602,8.001722441332376,0,0,62,41.73,6,1,0,0,4,3,1,346,0,0,0 +3800,4678,8451,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,4,8.416108184643402,8.633683783834321,6.655688774069125,3,0,-9,0,-9,0,-966.2821845956271,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,0,15,1,0,-9,0,13.87464922694546,13.87464922694546,0,0,0,0,0,0,0,0,0,0,0,6.532975152519565,18.24742512624299,3,54.79,55.86,6,1,0,0,13,5,1,409,0,0,0 +3801,4679,8452,8453,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,3,9.376488438187998,10.03490178434917,0,1,0,-9,22,0,4,4.639154713821833,-9,0,0,45,1,3,1,-9,-9,2019,1,2,11,2,40,0,15,1,2,1,0,45.58083200118267,45.58083200118267,0,0,0,0,0,0,0,0,0,0,7.078140130473437,0,0,0,42.52,57.56,6,3,0,0,8,5,1,242.5,0,0,0 +3801,4679,8453,8452,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,3,9.693576124827015,9.050024707811254,0,1,0,-9,7,0,-4,153.5290296648161,0,0,0,49,1,3,1,1,1,2019,1,1,13,1,46,48,15,1,1,1,0,27.31669304322489,27.31669304322489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.08,51.72,5,3,0,0,8,5,1,242.5,0,0,0 +3802,4680,8454,8455,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,4,7.843393976721861,8.360431760124502,7.056208984108584,1,0,-9,9,0,4,-32.73508190266033,0,0,0,61,2,4,1,2,2,2019,1,2,12,2,38,37,15,1,2,1,0,8.52045208765762,8.52045208765762,0,0,0,0,0,0,0,0,0,0,0,7.129307827270462,0,0,61.11,48.86,6,1,0,0,12,4,1,261.5,0,0,0 +3802,4680,8455,8454,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,7.4022403342726,7.798976637613594,0,1,0,-9,9,0,-4,7.202449650397354,0,0,0,65,3,4,1,3,2,2019,1,1,12,2,19,14,15,1,2,1,0,9.542243453037498,9.542243453037498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,12,4,1,261.5,0,0,0 +3803,4681,8456,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,5,0,5.739601979035289,5.522323520313106,3,0,0,0,-9,0,-1043.961916768581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.814035375251683,5.476680423463446,0,0,50.54,62.09,7,1,0,0,5,2,1,83,0,0,0 +3804,4682,8457,8458,-9,-9,1,1,0,55,1,0,0,0,3,-9,97,3,0,3,0,0,0,1,0,-9,8,0,7,0,0,0,0,48,2,5,3,3,2,2019,4,2,6,0,0,20,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.80737148212629,0,0,0,59.32,46.98,7,1,0,0,10,1,1,972,0,0,0 +3804,4682,8458,8457,-9,-9,2,1,1,48,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,8,0,-7,0,0,0,0,55,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4395845080334,0,0,0,60.02,56.42,6,1,0,0,10,1,1,972,0,0,0 +3805,4683,8459,-9,8463,8462,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1119.546687970627,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,596,0,0,0 +3805,4683,8460,-9,8463,8462,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.7176935983362,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,596,0,0,0 +3805,4683,8461,-9,8463,8462,4,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1011.352398938514,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,2,0,0,9,4,1,596,0,0,0 +3805,4683,8462,8463,-9,-9,1,1,1,43,1,0,3,0,1,-9,3,3,0,3,0,0,0,2,0,-9,8,0,0,-76.57450793354607,0,0,0,43,1,4,1,2,2,2019,3,2,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,58.34,3,1,1,0,9,4,1,596,0,0,0 +3805,4683,8463,8462,-9,-9,2,1,0,43,1,0,3,0,1,-9,2,1,0,4,9.039216387104956,9.024852442263608,0,2,0,-9,8,0,0,29.68144701789321,0,0,1,43,1,3,3,2,2,2019,2,1,16,5,33,24,15,1,5,3,0,23.54285675307211,23.54285675307211,0,0,0,0,0,0,0,1,1,0,.7152159551969716,0,0,0,30.87,65.23999999999999,4,1,0,0,9,4,1,596,0,0,0 +3806,4684,8464,8465,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,4,8.287870116962777,8.221677906193802,0,1,0,-9,3,0,0,24.83028459515436,0,1,0,24,1,5,1,-9,-9,2019,1,2,3,1,45,36,15,1,1,1,0,10.2099362060811,10.2099362060811,0,0,0,0,0,0,0,0,0,0,1.745740168678144,0,0,0,59.14,52.5,7,1,0,0,8,5,0,373.5,0,0,0 +3806,4684,8465,8464,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,5,7.744529105165634,7.723037329403152,0,1,0,-9,3,0,0,-13.60265726837382,0,1,1,24,1,4,1,-9,-9,2019,1,1,9,0,38,36,15,1,0,1,0,7.74737959518668,7.74737959518668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,7,1,0,0,8,5,0,373.5,0,0,0 +3807,4685,8466,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,3,0,7.086669530967734,7.367702920131067,3,0,0,0,-9,0,-969.2635979861549,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.938282240639648,13.14723253750381,3,39.64,57.52,5,1,0,0,11,3,1,690,0,0,0 +3808,4686,8467,8469,-9,-9,2,1,1,57,1,0,3,0,1,-9,2,1,0,3,8.79658818836403,8.292412076648228,0,2,0,-9,6,0,15,.1833415183313156,0,0,0,42,2,4,1,3,3,2019,1,1,12,1,60,66,15,1,1,1,0,8.008211148530284,8.008211148530284,0,0,0,0,0,0,0,1,1,0,0,0,13.3506463704961,3,46.33,55.93,5,5,0,1,8,4,0,1430.25,0,0,0 +3808,4686,8468,-9,8469,8467,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.621702290466,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,5,0,0,8,4,0,1430.25,0,0,0 +3808,4686,8469,8467,-9,-9,1,1,0,42,1,0,3,0,2,-9,2,1,0,4,8.027176071862254,7.871930654057669,0,2,0,-9,19,0,-15,-45.48940579197141,0,0,1,57,1,3,1,3,3,2019,1,2,10,0,32,15,15,1,1,1,0,11.93278221140241,11.93278221140241,0,0,0,0,0,0,0,1,1,0,0,0,69.20258379761522,3,50,55,6,5,0,1,8,4,0,1430.25,0,0,0 +3808,4686,8470,-9,8469,8467,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1146.854029762073,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,5,0,0,8,4,0,1430.25,0,0,0 +3809,4687,8471,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,5.401558201998599,5.667048309397198,3,0,0,0,-9,0,-971.858669692882,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.842766994978978,5.487301702742758,1.831629403840785,3,51.39,51.8,6,1,0,0,7,2,1,781,0,0,0 +3810,4688,8472,-9,-9,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,4,8.179516879711132,7.986195592723318,0,3,0,0,0,-9,0,-967.434711686419,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,35,29,15,1,0,-9,0,10.60293307209964,10.60293307209964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,6,1,0,0,2,4,1,461,0,0,0 +3811,4689,8473,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-967.5972452507166,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.57,28.62,6,1,0,0,10,1,1,1008,0,0,0 +3812,4690,8474,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,4,8.754163027480098,8.997559350375976,0,3,0,0,0,-9,0,-968.1547318960478,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,40,38,15,1,2,-9,0,29.75714525335677,29.75714525335677,0,0,0,0,0,0,0,0,0,0,3.522308321684165,0,0,0,46.16,58.62,5,1,0,0,8,5,1,614,0,0,0 +3813,4691,8475,-9,8477,8476,5,1,1,17,2,0,1,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-1115.998383710907,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,69.18000000000001,3,1,1,0,7,4,1,1516.333333333333,0,0,0 +3813,4691,8476,8477,-9,-9,1,1,1,58,1,0,1,0,1,-9,7,2,0,3,0,8.242378439683893,8.159891148565748,2,0,-9,29,0,5,-32.77812571113017,1,0,0,53,2,4,1,3,-9,2019,3,2,6,0,0,41,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.264658092536546,8.245431668160528,0,0,54.96,53.17,6,1,0,0,7,4,1,1516.333333333333,0,0,0 +3813,4691,8477,8476,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,4,7.9285483802236,8.138817558554768,5.92217615744325,2,0,-9,29,0,-5,58.7579518014641,0,0,0,58,1,3,2,2,1,2019,2,1,12,0,27,24,15,1,0,2,0,15.27690870460865,15.27690870460865,0,0,0,0,0,0,0,0,0,0,7.726727803983503,0,0,0,52.97,53.97,5,1,0,0,7,4,1,1516.333333333333,0,0,0 +3813,4692,8478,-9,8477,8476,3,1,1,23,2,0,1,0,2,-9,2,1,0,4,8.420444902435422,8.101430639796353,0,3,0,0,0,-9,0,-944.4064373953895,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,45,43,15,1,0,-9,1,10.85611930612884,10.85611930612884,0,0,0,0,0,0,0,0,0,0,4.644113090983511,0,0,0,57.16,56.15,6,1,0,0,7,4,1,406,0,0,0 +3813,4693,8479,-9,8477,8476,4,1,1,20,2,0,1,0,2,-9,7,2,0,3,7.856573638367558,7.655898422794353,5.826690967547498,3,0,0,0,-9,0,-893.1344774641182,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,38,16,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.112810245385199,0,0,0,50.43,45.82,5,1,0,0,7,3,1,601,0,0,0 +3814,4694,8480,-9,8481,8483,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.9988607841456,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,933.4,0,0,0 +3814,4694,8481,8483,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,3,8.869858254706878,8.990971324863189,0,2,0,-9,22,0,-5,-30.15982831474957,0,0,1,45,2,1,3,3,2,2019,2,2,9,0,45,40,15,1,0,3,0,15.41098757787202,15.41098757787202,0,0,0,0,0,0,0,1,1,0,0,0,2.528541470051509,3,47.7,47.03,5,3,0,0,6,3,1,933.4,0,0,0 +3814,4694,8482,-9,8481,8483,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.9314743614343,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,3,1,933.4,0,0,0 +3814,4694,8483,8481,-9,-9,2,1,1,45,1,0,3,0,2,-9,3,3,0,1,0,0,0,2,0,-9,22,0,5,-139.9725483342622,0,0,0,40,1,3,1,3,3,2019,3,1,24,12,0,18,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,21.18,3,3,1,1,6,3,1,933.4,0,0,0 +3814,4694,8484,-9,8481,8483,3,1,1,17,2,0,3,1,2,-9,7,2,0,3,5.333492798771137,5.380366536181135,0,2,0,0,0,-9,0,-898.7157986780146,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.180656160634267,0,0,0,43.59,59.64,6,3,0,0,6,3,1,933.4,0,0,0 +3815,4695,8485,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-913.3491030070578,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,7,1,1,0,5,1,0,59,0,0,0 +3816,4696,8486,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,0,7.371749624999721,7.542081334169655,3,0,0,0,-9,0,-976.5512194094592,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,37.43535430636412,0,1,1,0,0,7.20378691404736,0,0,32.82,20.99,4,1,0,0,2,3,1,767,0,0,0 +3816,4697,8487,-9,-9,-9,2,1,1,34,2,0,0,0,2,-9,2,1,0,4,8.616959002812848,8.58318744638718,0,3,0,0,0,-9,0,-1077.085859992076,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,35,35,15,1,2,-9,0,21.18777519128088,21.18777519128088,0,0,0,0,0,0,0,1,1,0,5.895652168033158,0,27.42464731108049,3,48.87,58.55,6,1,0,0,2,5,1,647,0,0,0 +3817,4698,8488,8489,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.31976438500724,7.567813630815781,0,1,0,-9,40,0,-6,63.26563900520193,0,0,0,62,1,4,3,3,2,2019,2,1,8,0,23,23,15,1,0,4,0,7.920149422388358,7.920149422388358,0,0,0,0,0,0,0,0,0,0,6.227959551518394,0,0,0,63.24,42.39,6,1,0,0,4,4,1,2547,0,0,0 +3817,4698,8489,8488,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,4,0,7.838020091737471,7.822784984669935,1,0,-9,40,0,6,-37.27605313657022,0,0,0,56,2,4,1,2,2,2019,3,2,10,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.517621428022539,7.842224850661528,0,0,57.12,48.15,6,1,0,0,4,4,1,2547,0,0,0 +3818,4699,8490,-9,-9,-9,3,1,1,54,2,0,0,0,3,-9,1,1,0,4,6.22022588349494,6.093522565873625,0,3,0,0,0,-9,0,-1017.43803207676,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,1,1.206308417495535,1.206308417495535,0,0,0,0,0,0,0,1,1,0,6.685240831273533,0,0,0,52.43,55.57,2,1,0,0,13,2,1,756,0,0,0 +3819,4700,8491,8492,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,6.822845848955674,7.117513327642468,1,0,-9,5,0,15,-25.74222212061187,-9,0,0,61,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.852158992484067,0,0,54,46,6,3,0,0,8,2,1,1321.5,0,0,0 +3819,4700,8492,8491,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,5,0,-15,25.44624618703414,-9,0,0,76,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,0,0,8,2,1,1321.5,0,0,0 +3819,4701,8493,-9,8492,8491,3,1,1,33,3,0,0,0,1,-9,2,1,0,3,8.2922834551705,8.378255020501429,0,3,0,0,0,-9,0,-913.1472867659875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,59,50,15,1,1,-9,1,9.251175602051449,9.251175602051449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.89,47.06,6,3,0,0,8,4,1,364,0,0,0 +3820,4702,8494,8495,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,4,7.710526481266403,7.879752436451935,0,1,0,-9,7,0,0,12.41223651610076,0,1,1,24,1,3,1,2,2,2019,1,2,16,5,41,40,15,1,5,1,0,8.438318785549892,8.438318785549892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.85,53.29,6,1,0,0,5,4,1,1713.5,0,0,0 +3820,4702,8495,8494,-9,-9,2,1,1,24,1,0,0,0,1,-9,2,1,0,3,8.060489334876067,8.460529471476914,0,1,0,-9,7,0,0,-44.20525573855796,0,1,0,24,2,4,1,-9,-9,2019,1,1,6,0,37,39,15,1,0,1,0,12.58097893051638,12.58097893051638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,5,4,1,1713.5,0,0,0 +3821,4703,8496,-9,8498,8497,1,1,0,28,3,1,2,0,2,-9,2,1,0,3,8.198046756482142,8.090024585215689,0,3,0,-9,0,-9,0,-958.9300367436316,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,0,15,1,0,-9,1,10.84577894369053,10.84577894369053,0,0,0,0,0,0,0,1,1,0,0,0,24.33211800473951,3,40.13,41.02,2,3,0,0,5,4,1,866,0,0,0 +3821,4704,8497,8498,-9,-9,2,1,1,71,1,1,2,0,3,-9,3,3,0,2,0,0,0,2,0,-9,10,0,11,0,-9,0,0,60,3,3,3,-9,-9,2019,4,3,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.43,45.6,6,3,1,0,5,1,1,829,0,0,0 +3821,4704,8498,8497,-9,-9,3,1,0,60,1,1,2,0,3,-9,3,3,0,3,0,0,0,2,0,-9,10,0,-11,0,-9,0,0,71,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.354239393646651,0,0,0,48,48,6,3,1,0,5,1,1,829,0,0,0 +3821,4705,8499,8500,8498,8497,6,1,1,33,1,1,2,0,2,-9,97,3,0,3,8.264644226561746,7.942084192280759,0,2,0,-9,9,0,3,-90.35863600513922,-9,0,0,30,1,3,3,3,3,2019,4,7,6,0,14,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.5710850340379902,0,0,0,50.56,42.08,6,3,0,0,5,3,1,686,0,0,0 +3821,4705,8500,8499,-9,-9,7,1,0,30,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,9,0,-3,55.15834230015995,0,0,1,33,2,3,3,-9,-9,2019,4,6,13,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.5507718460971158,0,0,0,48.31,44.06,4,3,0,0,5,3,1,686,0,0,0 +3822,4706,8501,8502,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.444194787074454,7.719856876251759,1,0,-9,55,0,2,41.81456382662687,0,0,0,75,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.578515154640558,0,0,44.61,47.24,6,1,0,0,4,3,1,1654.5,0,0,0 +3822,4706,8502,8501,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-2,31.80005247689679,0,0,0,77,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.22,53.97,5,1,0,0,4,3,1,1654.5,0,0,0 +3823,4707,8503,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,1,1,0,4,0,0,0,4,0,0,0,-9,0,-953.8863785303323,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,28,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,6,1,0,1,9,1,0,361,0,0,0 +3823,4707,8504,-9,8503,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.199038952578,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,361,0,0,0 +3824,4708,8505,8506,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,7.130934665336758,7.181703146016992,1,0,-9,50,0,-2,-69.76927619970228,0,0,0,72,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.651838401102312,6.66492511616281,0,0,46.28,51.64,6,1,0,0,5,2,1,720.5,0,0,0 +3824,4708,8506,8505,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,3.887431437688053,3.667927440790298,1,0,-9,50,0,2,-49.43264442668106,0,0,0,70,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.344067067471357,3.669507116640276,0,0,51.95,54.55,7,1,0,0,5,2,1,720.5,0,0,0 +3825,4709,8507,-9,-9,-9,1,1,1,37,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1000.850725232025,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.26,60.7,5,1,1,1,12,1,0,181,0,0,0 +3825,4710,8508,-9,-9,-9,2,1,1,46,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-936.8614971437912,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.34,35.19,1,1,1,1,12,1,0,535,0,0,0 +3826,4711,8509,-9,-9,-9,1,1,0,45,2,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1140.111922726598,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,42.95,4,4,1,1,9,1,1,1002,0,0,0 +3827,4712,8510,8511,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.576980946862705,8.579033275986022,0,1,0,-9,27,0,-5,114.7193888121057,-9,0,0,54,1,3,1,2,3,2019,1,1,9,0,37,0,15,1,0,1,0,15.46233342971555,15.46233342971555,0,0,0,0,0,0,0,0,0,0,7.597620798160386,0,0,0,55.34,54.26,6,1,0,0,2,5,1,937,0,0,0 +3827,4712,8511,8510,-9,-9,1,1,1,54,1,0,0,0,1,-9,1,1,0,3,5.470420010148604,8.342131219665536,8.139149554024797,1,0,-9,27,0,5,42.03087705209369,0,0,0,49,1,4,1,2,2,2019,1,2,10,0,35,32,15,1,0,1,0,.6613588131992125,.6613588131992125,0,0,0,0,0,0,0,0,0,0,3.490373181390157,7.945615132246296,0,0,51.1,52.08,5,1,0,0,2,5,1,937,0,0,0 +3828,4713,8512,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,2,0,5.11024162786357,5.050227459816178,3,0,0,0,-9,0,-957.2666445695746,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.332877838420689,4.982846131353647,0,0,56.83,21.19,5,1,0,0,12,2,1,615,0,0,0 +3829,4714,8513,8514,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,4,7.403435428852025,7.54015278038117,0,1,0,-9,6,0,0,-8.690177917354196,0,0,0,64,3,3,3,3,3,2019,2,1,7,0,37,35,15,1,0,4,0,5.30778670682094,5.30778670682094,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,2,1,335.5,0,0,0 +3829,4714,8514,8513,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,0,-8.27043058125944,0,0,0,64,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,12,2,1,335.5,0,0,0 +3830,4715,8515,8516,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,5.74605996285146,5.910457492302216,1,0,-9,55,0,0,83.23735492656441,0,0,0,80,1,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4575048992984,5.603193713596188,0,0,49,42.07,6,1,0,0,13,3,1,646.5,0,0,0 +3830,4715,8516,8515,-9,-9,2,1,0,80,1,0,0,0,1,-9,4,3,0,3,0,7.582534070121818,7.428656056441032,1,0,-9,55,0,0,-96.54664781558324,0,0,0,80,3,3,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.586818673438962,7.538918229600614,0,0,60.7,39.78,6,1,0,0,13,3,1,646.5,0,0,0 +3831,4716,8517,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,3,0,6.093413940338596,5.938387853133586,3,0,0,0,-9,0,-971.7105847828248,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.026360301324594,0,0,54.52,46.77,4,2,0,0,8,2,0,747,0,0,0 +3832,4717,8518,-9,8519,-9,2,1,1,17,2,0,0,1,2,0,7,2,0,4,5.718076629455257,6.318871490443541,5.593132743336373,3,0,0,0,-9,0,-1052.108145696933,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.459949126012951,0,0,0,48.87,58.55,6,1,0,0,11,2,1,439.5,0,0,0 +3832,4717,8519,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,7.059109161333996,7.066994557140423,0,3,0,0,0,-9,0,-980.6360267126799,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,17,17,15,1,0,-9,0,7.049400896399501,7.049400896399501,0,0,0,0,0,0,0,1,0,1,0,0,6.949164568927806,3,44.53,34.6,6,1,0,0,11,2,1,439.5,0,0,0 +3833,4718,8520,8522,-9,-9,3,1,1,48,1,0,1,0,1,-9,1,1,0,3,8.966908505085991,8.839308079555929,0,2,0,-9,1,-9,-2,21.75175818504391,-9,0,0,50,2,4,1,-9,-9,2019,1,1,16,4,30,0,15,1,4,1,0,18.86702632323872,18.86702632323872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,4,4,0,1,7,4,0,797.6666666666666,0,0,0 +3833,4718,8521,-9,8522,8520,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.8550161139609,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,0,797.6666666666666,0,0,0 +3833,4718,8522,8520,-9,-9,1,1,0,50,1,0,1,0,2,-9,1,1,0,4,7.205721757215416,7.073148539140274,0,2,0,1,1,-9,2,-55.65098674493549,0,0,0,48,1,3,1,2,2,2019,1,3,10,1,30,20,15,1,1,1,0,5.251204919106591,5.251204919106591,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.14,59.39,1,1,0,0,7,4,0,797.6666666666666,0,0,0 +3834,4719,8523,8524,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.272546988184057,8.466640556143876,0,1,0,-9,39,0,3,50.78641162723422,0,0,0,59,3,2,3,-9,-9,2019,2,2,9,0,36,40,15,1,0,3,0,12.15571733844244,12.15571733844244,0,0,0,0,0,0,0,0,0,0,0,0,20.08204856811205,1,37.89,41.15,3,3,0,0,8,3,1,813.5,0,0,0 +3834,4719,8524,8523,-9,-9,2,1,0,59,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,9,0,-3,151.3153132982276,0,0,0,62,2,2,1,3,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.16,29.15,5,3,0,0,8,3,1,813.5,0,0,0 +3834,4720,8525,-9,8524,8523,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.756708563970896,8.628067594277494,0,3,0,0,0,-9,0,-1039.684712594079,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,37,43,15,1,1,-9,1,15.43249522900305,15.43249522900305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,3,0,0,8,5,1,281,0,0,0 +3834,4721,8526,-9,8524,8523,4,1,1,23,2,0,0,0,2,1,2,1,0,4,7.785722453266794,7.600242087984165,0,3,0,0,0,-9,0,-1103.38513553759,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,7.284691725718947,7.284691725718947,0,0,0,0,0,0,0,0,0,0,1.436222057228183,0,0,0,48,59,5,3,0,0,8,3,1,474,0,0,0 +3835,4722,8527,8529,-9,-9,1,1,0,33,1,0,1,0,1,-9,2,1,0,4,9.019661313698572,8.929066843768219,0,2,0,-9,6,0,-7,32.21058427375845,0,0,1,40,2,4,1,2,2,2019,1,2,12,0,50,45,15,1,0,1,0,14.51385716386613,14.51385716386613,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,5,1,0,0,11,5,1,1827.666666666667,0,0,0 +3835,4722,8528,-9,8527,8529,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.939002622319,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,5,1,1827.666666666667,0,0,0 +3835,4722,8529,8527,-9,-9,2,1,1,40,1,0,1,0,2,-9,2,1,0,4,7.801083900167409,8.178633908649974,0,2,0,-9,6,0,7,25.67454046156043,0,0,0,33,1,4,1,-9,-9,2019,1,1,7,0,40,42,15,1,0,1,0,8.638867974751335,8.638867974751335,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,5,1,1827.666666666667,0,0,0 +3836,4723,8530,8531,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,9,0,-1,0,0,0,0,75,3,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.912221934910822,0,0,0,57.16,56.15,7,1,0,0,13,1,1,410.5,0,0,0 +3836,4723,8531,8530,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,1,0,0,0,0,74,3,4,3,3,3,2019,4,2,6,0,16,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.132899568833288,0,0,0,57.33,53.46,6,1,0,0,13,1,1,410.5,0,0,0 +3837,4724,8532,8533,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,2,8.090849964919766,8.314629300048217,6.677505724117361,1,0,-9,10,0,1,-89.11122937158302,0,0,0,62,2,4,2,3,3,2019,2,2,20,8,37,0,15,1,8,2,0,10.25337932570364,10.25337932570364,0,0,0,0,0,0,0,0,0,0,0,6.447363122003776,0,0,24.26,51.38,3,1,0,0,11,4,1,815.5,0,0,0 +3837,4724,8533,8532,-9,-9,2,1,0,62,1,0,0,0,2,0,7,2,0,4,0,0,0,1,0,-9,10,0,-1,19.7015658909514,-9,0,0,63,3,2,1,3,3,2019,3,1,14,2,0,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,11,4,1,815.5,0,0,0 +3838,4725,8534,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-998.3362006045808,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,48.62,5,1,1,0,8,1,0,671,0,0,0 +3839,4726,8535,8536,-9,-9,2,1,0,52,1,0,0,0,1,-9,1,1,0,3,7.627597357860142,7.564220475420416,0,1,0,-9,33,0,1,6.189190869106946,0,0,0,51,1,5,1,3,3,2019,1,1,8,0,30,40,15,1,0,1,0,8.101054430312697,8.101054430312697,0,0,0,0,0,0,0,0,0,0,1.538883461310006,0,0,0,55.22,46.37,6,1,0,0,4,5,1,487.5,0,0,0 +3839,4726,8536,8535,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,5,8.686336800758864,9.159604298880966,0,1,0,-9,33,0,-1,76.66430314459535,0,0,0,52,1,3,1,2,1,2019,1,2,6,0,48,16,15,1,0,1,0,17.38797429801471,17.38797429801471,0,0,0,0,0,0,0,0,0,0,8.505003246447695,0,0,0,57.06,57.76,6,2,0,0,4,5,1,487.5,0,0,0 +3839,4727,8537,-9,8535,8536,3,1,0,20,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1022.360555578042,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.2832898055026,0,0,0,43.82,61.41,6,2,0,0,4,1,1,272,0,0,0 +3840,4728,8538,-9,8541,8539,3,1,1,17,2,0,2,0,2,1,2,3,0,3,6.228173458148019,6.131390349315502,4.89491088296198,2,0,0,0,-9,0,-1137.359289208224,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,3,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.644658367041473,0,0,0,56.74,55.09,7,1,0,0,2,5,1,456,0,0,0 +3840,4728,8539,8541,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,3,9.41361996706646,9.173637980926538,0,2,0,-9,26,0,1,0,0,0,0,46,1,4,1,2,3,2019,1,1,9,0,56,40,15,1,0,1,0,20.41274524974361,20.41274524974361,0,0,0,0,0,0,0,1,1,0,7.293130822680965,0,0,0,54.37,54.8,6,1,0,0,2,5,1,456,0,0,0 +3840,4728,8540,-9,8541,8539,4,1,1,16,2,0,2,0,-9,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.3950588491451,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,2,5,1,456,0,0,0 +3840,4728,8541,8539,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,4,9.212590282796187,9.062511745199814,0,2,0,-9,27,0,-1,0,0,0,0,47,1,3,1,1,2,2019,1,2,8,0,40,25,15,1,0,1,0,26.31256761926783,26.31256761926783,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.99,60.71,1,1,0,0,2,5,1,456,0,0,0 +3840,4728,8542,-9,8541,8539,5,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-866.5040136043373,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,2,5,1,456,0,0,0 +3841,4729,8543,8544,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,4,8.209449573828573,8.052443242101855,0,1,0,-9,18,0,8,-38.35074060464403,0,0,0,39,1,3,1,2,2,2019,1,2,12,0,35,36,15,1,0,1,0,12.3898131301252,12.3898131301252,0,0,0,0,0,0,0,0,0,0,5.343401769412973,0,0,0,48.87,58.55,5,1,0,0,2,5,1,771,0,0,0 +3841,4729,8544,8543,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,3,8.813814952856418,8.832898520862573,0,1,0,-9,18,0,-8,39.01758386309405,0,0,1,47,1,4,1,2,2,2019,1,1,23,11,40,43,15,1,11,1,0,19.75688055331344,19.75688055331344,0,0,0,0,0,0,0,0,0,0,5.320720306867474,0,0,0,42.62,43.78,5,1,0,0,2,5,1,771,0,0,0 +3842,4730,8545,8546,-9,-9,1,1,1,43,1,0,0,0,2,-9,6,3,0,2,4.020809086333235,4.140325113917555,0,1,0,-9,8,0,-4,-39.27275774468066,0,0,0,47,2,1,3,2,2,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,0,1,.0413192671532538,0,.139390040378444,2,24.96,55.18,4,2,0,0,11,1,0,238,0,0,0 +3842,4730,8546,8545,-9,-9,2,1,0,47,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,8,0,4,-15.33801484386696,0,0,0,43,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.61,21.16,4,1,0,0,11,1,0,238,0,0,0 +3842,4731,8547,-9,8546,8545,3,1,1,23,2,0,0,0,2,-9,2,1,0,3,8.220587148850107,8.308066615526776,0,3,0,0,0,-9,0,-988.7737577850306,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,45,30,15,1,6,-9,1,14.38389719113833,14.38389719113833,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.31,54.01,3,1,0,0,11,5,0,885,0,0,0 +3843,4732,8548,-9,8550,8549,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.921855833278,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,1,3,0,709.25,0,0,0 +3843,4732,8549,8550,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.26280517656221,8.590104759696541,0,2,0,-9,2,0,1,-48.86852978242715,0,0,0,39,2,4,1,2,2,2019,1,1,9,0,38,37,15,1,1,1,0,14.38450943764223,14.38450943764223,0,0,0,0,0,0,0,1,1,0,3.873652435916413,0,0,0,52,56,5,1,0,0,1,3,0,709.25,0,0,0 +3843,4732,8550,8549,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,4,6.911242397734173,7.309519665351896,3.661673896711406,2,0,-9,2,0,-1,-20.34396781884086,0,0,1,40,2,4,1,2,2,2019,1,2,7,0,20,20,15,1,0,1,0,5.251007121619308,5.251007121619308,0,0,0,0,0,0,0,1,1,0,3.32036297369661,0,0,0,55.49,47.22,4,1,0,0,1,3,0,709.25,0,0,0 +3843,4732,8551,-9,8550,8549,3,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-836.0546485380272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,1,3,0,709.25,0,0,0 +3844,4733,8552,8553,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,4,8.874489561244134,9.014709784690455,0,1,0,-9,10,0,-5,-50.68853631770222,0,0,1,43,2,4,1,2,2,2019,1,1,8,0,42,45,15,1,0,1,0,18.40907652236606,18.40907652236606,0,0,0,0,0,0,0,0,0,0,.4306722753697926,0,0,0,44.21,60.79,6,1,0,0,12,5,1,1224.5,0,0,0 +3844,4733,8553,8552,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,8.280716362659478,8.471696839298453,0,1,0,-9,10,0,5,74.10322820328847,0,0,0,38,1,4,1,1,2,2019,1,2,10,0,36,36,15,1,0,1,0,10.89521651203478,10.89521651203478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,1224.5,0,0,0 +3845,4734,8554,8555,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.566908737162391,7.525744088460462,0,1,0,-9,28,0,-1,28.67261011639313,0,0,0,54,3,1,3,3,2,2019,2,2,12,0,30,30,15,1,0,3,0,8.311315472426241,8.311315472426241,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.04,41.01,3,1,0,0,2,2,0,313.5,0,0,0 +3845,4734,8555,8554,-9,-9,2,1,1,54,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,28,0,1,-73.83436555446177,0,0,0,53,2,2,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.97,30.66,3,1,1,1,2,2,0,313.5,0,0,0 +3845,4735,8556,-9,8554,8555,3,1,0,31,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-944.9720376729789,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.3,54.12,6,1,0,0,2,1,0,382,0,0,0 +3845,4736,8557,-9,8554,8555,4,1,1,24,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-968.2254268582907,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,40,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.21,55.18,3,1,1,1,2,1,0,161,0,0,0 +3846,4737,8558,-9,-9,-9,1,1,1,44,3,0,0,0,3,-9,2,1,0,1,6.780485281313908,6.67083323779999,0,3,0,0,0,-9,0,-899.1865033308683,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,3,0,51,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117.5873785815203,3,45.82,38.7,6,1,0,0,4,2,0,926,0,0,0 +3847,4738,8559,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,3,8.296629516900699,8.186978656035752,0,3,0,0,0,-9,0,-929.4942013294833,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,5,46,47,15,1,5,-9,0,8.315054843009667,8.315054843009667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.08,46.53,3,1,0,0,10,4,0,895,0,0,0 +3848,4739,8560,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,4,8.574738914786254,9.012197687459109,0,3,0,0,0,-9,0,-801.101375459198,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,42,44,15,1,0,-9,0,16.86115482718265,16.86115482718265,0,0,0,0,0,0,0,0,0,0,1.367064503863657,0,0,0,52.82,53.97,6,1,0,0,10,5,1,1292,0,0,0 +3849,4740,8561,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,4,7.573995187112317,7.799522535972836,0,3,0,0,0,-9,0,-930.51166067881,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.953122668793713,0,0,0,57.16,56.15,6,1,0,0,2,3,1,565,0,0,0 +3850,4741,8562,8566,-9,-9,1,1,0,36,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,15,0,-3,-125.0644927190555,0,0,1,39,1,3,1,-9,-9,2019,3,2,15,0,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,40,41,4,3,1,0,8,2,0,1502.4,0,0,0 +3850,4741,8563,-9,8562,8566,5,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-983.6974400398036,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,8,2,0,1502.4,0,0,0 +3850,4741,8564,-9,8562,8566,7,1,1,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-905.0778894622091,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,8,2,0,1502.4,0,0,0 +3850,4741,8565,-9,8562,8566,6,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-901.8969981158987,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,8,2,0,1502.4,0,0,0 +3850,4741,8566,8562,-9,-9,2,1,1,39,1,0,3,0,1,-9,2,1,0,3,8.307698944656867,7.894659047042109,0,2,0,-9,8,0,3,-53.89358004216555,-9,0,0,36,2,2,3,3,2,2019,2,1,11,0,0,0,15,1,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,52,5,3,0,0,8,2,0,1502.4,0,0,0 +3851,4742,8567,-9,8568,-9,1,1,1,50,2,0,0,0,3,-9,2,1,0,3,8.394887271075479,8.449315885874821,0,3,0,0,0,-9,0,-986.9576884685248,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,37,39,15,1,0,-9,1,14.19268840206523,14.19268840206523,0,0,0,0,0,0,0,1,1,0,0,0,8.404166599788141,3,49.04,55.86,4,1,0,1,8,4,1,840,0,0,0 +3851,4743,8568,-9,-9,-9,2,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.890522811675131,5.55450815606395,3,0,0,0,-9,0,-915.1812193919096,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,1,0,0,12.99444417499638,6.077996546092279,0,0,1,1,0,0,5.572035079676876,0,0,55.03,11.91,4,1,0,0,8,2,1,303,0,0,0 +3852,4744,8569,8570,-9,-9,2,1,1,75,1,0,0,0,3,-9,1,1,0,3,8.70899333128836,8.685902770694893,0,1,0,-9,10,0,8,8.189896052175452,0,0,0,67,2,4,1,3,2,2019,1,1,13,2,16,22,15,1,2,1,0,40.56743690216753,40.56743690216753,1,0,7.321045266419924,0,0,0,0,1,1,0,0,0,2.145583412868641,1,45.92,53.14,3,1,0,0,10,5,0,903,0,0,0 +3852,4744,8570,8569,-9,-9,1,1,0,67,1,0,0,0,2,-9,1,1,0,4,7.144631810939189,6.993897972660913,0,1,0,-9,10,0,-8,17.59462218806942,0,0,0,75,3,3,1,2,1,2019,1,2,11,3,0,15,15,1,3,1,0,0,0,1,0,.7106823007014333,0,0,0,0,1,1,0,0,0,0,0,48.28,23.33,6,1,0,0,10,5,0,903,0,0,0 +3853,4745,8571,-9,8574,8573,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.590483712611,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,7,5,1,1860.25,0,0,0 +3853,4745,8572,-9,8574,8573,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.101614122075,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,7,5,1,1860.25,0,0,0 +3853,4745,8573,8574,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,3,9.457253349349205,9.390778495882396,0,2,0,-9,15,0,11,30.75745415902881,0,0,0,40,1,4,1,3,3,2019,1,2,12,0,45,40,15,1,0,1,0,25.70999098213309,25.70999098213309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.55,42.24,5,3,0,0,7,5,1,1860.25,0,0,0 +3853,4745,8574,8573,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.434193585075292,8.363254710500664,0,2,0,-9,15,0,-11,-75.31782795217592,0,0,1,51,1,3,1,3,3,2019,1,1,12,0,40,40,15,1,0,1,0,9.05496540040831,9.05496540040831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,41.15,4,3,0,0,7,5,1,1860.25,0,0,0 +3854,4746,8575,-9,-9,-9,1,1,0,29,3,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-903.6601586939389,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.84199859331546,3,37.84,52.88,6,5,1,0,7,1,0,727,0,0,0 +3854,4746,8576,-9,8575,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.532403241092,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,5,0,0,7,1,0,727,0,0,0 +3855,4747,8577,8579,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,4,9.156476863407491,9.141207372347901,0,2,0,-9,22,0,-3,-55.57984507659776,0,0,0,48,1,4,1,2,1,2019,1,1,6,0,40,47,15,1,0,1,0,30.54198461664899,30.54198461664899,0,0,0,0,0,0,0,1,1,0,7.161969602385468,0,0,0,54.2,57.49,6,1,0,0,12,5,0,609,0,0,0 +3855,4747,8578,-9,8579,8577,3,1,1,17,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1064.985615914666,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.04,60.47,7,1,0,0,12,5,0,609,0,0,0 +3855,4747,8579,8577,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,4,8.841944450765036,9.17583501852018,5.890810799491842,2,0,-9,22,0,3,9.336361100475544,0,0,0,45,2,4,1,1,2,2019,1,2,10,1,43,44,15,1,1,1,0,18.9605332929587,18.9605332929587,0,0,0,0,0,0,0,1,1,0,6.040486626138348,0,0,0,35.63,62.19,6,1,0,0,12,5,0,609,0,0,0 +3856,4748,8580,-9,8581,-9,2,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1055.178452829861,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.619254482290138,0,0,0,34.38,62.3,6,1,0,0,5,3,1,547.5,0,0,0 +3856,4748,8581,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,2,1,0,4,7.379358713408169,7.87509113270573,6.885619138694277,4,0,0,0,-9,0,-1015.559025663291,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,20,20,15,1,5,-9,0,7.589162825103855,7.589162825103855,0,0,0,0,0,0,0,1,1,0,6.484851236771331,0,0,0,34.93,58.4,5,1,0,0,5,3,1,547.5,0,0,0 +3857,4749,8582,8584,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,3,9.609608981020511,9.564722892566504,0,2,0,-9,25,0,7,-80.33898165819217,0,0,0,46,2,5,3,2,2,2019,2,2,12,0,50,35,15,1,0,3,0,33.04048125970287,33.04048125970287,0,0,0,0,0,0,0,0,0,0,.7886062546544164,0,0,0,41.47,40.12,6,1,0,0,10,5,1,936,0,0,0 +3857,4749,8583,-9,8584,8582,4,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.627125946235,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.69,51.72,7,1,0,0,10,5,1,936,0,0,0 +3857,4749,8584,8582,-9,-9,2,1,0,46,1,0,1,0,2,-9,6,3,0,5,0,0,0,2,0,-9,24,0,-7,-20.51058107987088,0,0,0,53,1,3,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.025581245928693,0,0,0,57.06,57.76,7,1,0,0,10,5,1,936,0,0,0 +3857,4750,8585,-9,8584,8582,3,1,1,19,2,0,1,0,2,-9,2,1,0,2,7.366734435590031,7.522481240664044,0,3,0,0,0,-9,0,-929.8113951766965,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,35,20,15,1,8,-9,1,6.655537614159337,6.655537614159337,0,0,0,0,0,0,0,0,0,0,.3667101178975723,0,0,0,37.35,52.15,3,1,0,0,10,3,1,1480,0,0,0 +3858,4751,8586,8589,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,3,0,0,0,2,0,-9,16,0,10,0,0,0,0,36,1,4,1,3,2,2019,1,2,10,0,0,41,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,3,0,0,8,1,1,552,0,0,0 +3858,4751,8587,-9,8589,8586,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.091499844015,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,1,1,552,0,0,0 +3858,4751,8588,-9,8589,8586,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.288667823246,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,1,1,552,0,0,0 +3858,4751,8589,8586,-9,-9,2,1,0,36,1,0,2,0,1,-9,1,1,0,4,0,0,0,2,0,-9,14,0,-10,0,0,0,1,46,1,3,1,1,2,2019,1,1,6,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,6,1,0,0,8,1,1,552,0,0,0 +3859,4752,8590,8591,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,7.320997488105786,7.567484533536208,0,1,0,-9,2,0,4,-146.4624637774619,0,1,0,23,2,5,1,-9,-9,2019,1,1,10,0,31,31,15,1,1,1,0,5.456856989144431,5.456856989144431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,13,3,1,564,0,0,0 +3859,4752,8591,8590,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,5,7.813696016517167,7.811363683255472,0,1,0,-9,2,0,-4,-24.14319998978223,0,1,1,27,2,4,1,2,3,2019,1,2,4,0,39,39,15,1,0,1,0,7.19550331853387,7.19550331853387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.01,53.18,7,1,0,0,13,3,1,564,0,0,0 +3860,4753,8592,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.360531882042006,8.710189714904452,0,3,0,0,0,-9,0,-1122.096583307177,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,44,38,15,1,1,-9,0,12.79679603221219,12.79679603221219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.74,53.75,6,1,0,0,12,5,1,905,0,0,0 +3861,4754,8593,8594,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,8.882561818721733,8.987036733918359,1,0,-9,30,0,4,-39.02323171592441,0,0,0,59,1,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.917534138934112,8.784634047882378,0,0,48.45,57.49,6,1,0,0,7,5,1,1160,0,0,0 +3861,4754,8594,8593,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,6.166955459153963,5.886732848187779,0,1,0,-9,30,0,-4,117.065279203176,0,0,0,63,1,3,3,3,2,2019,2,1,6,0,8,10,15,1,0,4,0,7.566813474004984,7.566813474004984,0,0,0,0,0,0,0,0,0,0,7.205109621149317,0,0,3,57.16,56.15,6,1,0,0,7,5,1,1160,0,0,0 +3862,4755,8595,8596,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.777153432098961,8.876762563608263,0,1,0,-9,30,0,1,-124.6099537916193,0,0,0,51,2,2,1,-9,2,2019,1,1,6,0,48,42,15,1,0,1,0,16.63798661217839,16.63798661217839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,7,1,0,0,11,5,1,507.5,0,0,0 +3862,4755,8596,8595,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,2,8.845857644853831,8.843220794428648,0,1,0,-9,30,0,-1,56.25030275392043,0,0,0,52,2,3,1,3,1,2019,1,2,11,0,43,43,15,1,0,1,0,18.06339441868587,18.06339441868587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.17,51.9,5,1,0,0,11,5,1,507.5,0,0,0 +3862,4756,8597,-9,8596,8595,3,1,0,23,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-975.0985393696072,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.71,64.88,4,1,0,0,11,1,1,218,0,0,0 +3863,4757,8598,8599,-9,-9,1,1,1,37,1,0,0,0,2,-9,2,1,0,4,6.673516057475116,7.088770357211779,0,1,0,-9,6,0,4,69.50832316520433,0,0,0,33,1,5,1,1,3,2019,1,2,13,2,5,7,15,1,2,1,0,22.97700308950942,22.97700308950942,0,0,0,0,0,0,0,0,0,0,8.230299094000857,0,0,0,39.44,60.23,6,1,0,0,12,5,1,1122.5,0,0,0 +3863,4757,8599,8598,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,5,8.756555217473174,8.707430686071886,0,1,0,-9,6,0,-4,-69.53876684755184,0,0,1,37,2,4,1,-9,-9,2019,1,1,8,1,34,33,15,1,1,1,0,20.33094074375324,20.33094074375324,0,0,0,0,0,0,0,0,0,0,.0174864852141995,0,0,0,39.31,63.19,6,1,0,0,12,5,1,1122.5,0,0,0 +3864,4758,8600,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1136.771512149966,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,4,0,1,2,1,0,253.5,0,0,0 +3864,4758,8601,-9,-9,8600,2,1,0,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-893.7808206484309,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,2,1,0,253.5,0,0,0 +3865,4759,8602,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-1103.594273244567,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,37.57,51.67,6,1,0,0,9,1,1,490,0,0,0 +3866,4760,8603,8605,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,5,8.291118991974081,8.193865629861961,0,2,0,-9,16,0,3,154.5729036509842,0,0,0,38,2,3,1,2,2,2019,1,1,4,1,50,36,15,1,1,1,0,9.972730669612485,9.972730669612485,0,0,0,0,0,0,0,1,1,0,.071263227977687,0,0,0,59.19,51.29,7,1,0,0,7,3,1,771.6666666666666,0,0,0 +3866,4760,8604,-9,8605,8603,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.506705839123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,1,771.6666666666666,0,0,0 +3866,4760,8605,8603,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,3,6.142432296880395,5.879561691202339,0,2,0,-9,21,0,-3,71.97526619244313,0,0,1,41,2,5,1,2,2,2019,1,2,6,0,7,7,15,1,0,1,0,7.252876341345989,7.252876341345989,0,0,0,0,0,0,0,1,1,0,.419300504383669,0,0,0,57.33,53.46,7,1,0,0,7,3,1,771.6666666666666,0,0,0 +3867,4761,8606,8613,-9,-9,3,1,0,34,1,0,6,0,2,-9,8,3,1,2,0,0,0,2,0,-9,1,-9,0,0,-9,0,1,34,2,3,3,-9,-9,2019,4,1,22,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.53,25.83,2,1,0,1,11,1,0,765.75,0,0,0 +3867,4761,8607,-9,8606,8613,5,1,1,13,2,0,6,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-962.2067296633649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,11,1,0,765.75,0,0,0 +3867,4761,8608,-9,8606,8613,6,1,1,9,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-969.4349172601136,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,1,0,765.75,0,0,0 +3867,4761,8609,-9,8606,8613,2,1,1,8,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-992.1937133749362,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,1,0,765.75,0,0,0 +3867,4761,8610,-9,8606,8613,8,1,1,6,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1026.857654590224,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,1,0,765.75,0,0,0 +3867,4761,8611,-9,8606,8613,4,1,1,16,2,0,6,1,2,-9,7,2,0,5,0,0,0,2,0,-9,0,-9,0,-1117.828295387931,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,11,1,0,765.75,0,0,0 +3867,4761,8612,-9,8606,8613,7,1,0,6,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-933.8600045088956,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,1,0,765.75,0,0,0 +3867,4761,8613,8606,-9,-9,1,1,1,34,1,0,6,0,2,-9,97,3,0,3,0,0,0,2,0,-9,1,-9,0,0,-9,0,0,34,2,2,3,2,2,2019,4,3,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.76716304904166,2,51.38,56.16,5,1,0,0,11,1,0,765.75,0,0,0 +3868,4762,8614,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,3,8.6266226478674,8.483169877995101,0,3,0,0,0,-9,0,-1042.770431818431,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,2,37,37,15,1,2,-9,0,13.53739061176963,13.53739061176963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.56,49.66,6,1,0,0,11,5,1,743,0,0,0 +3869,4763,8615,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,0,3.949162996572472,3.814856003314747,3,0,0,0,-9,0,-940.5398448853826,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.826571894650753,0,0,44.44,25.81,6,1,0,0,2,1,0,406,0,0,0 +3870,4764,8616,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.627184334493149,8.658313334797919,0,3,0,0,0,-9,0,-895.5444872180663,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,70,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,6,1,0,0,12,5,1,552,0,0,0 +3871,4765,8617,8619,8620,8621,1,1,1,40,1,0,1,0,1,-9,2,1,0,4,8.131669885499974,9.017596627890553,0,2,0,-9,15,0,3,-18.38981465053448,0,0,0,37,1,4,3,1,1,2019,2,4,6,0,36,45,15,1,0,3,0,17.38506736148177,17.38506736148177,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,3,0,0,8,4,1,590,0,0,0 +3871,4765,8618,-9,8619,8617,6,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.340617927611,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,4,1,590,0,0,0 +3871,4765,8619,8617,-9,-9,4,1,0,37,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-3,-72.84370508349846,0,0,1,40,1,4,1,3,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.230744698476003,3,62.49,55.09,7,3,0,0,8,4,1,590,0,0,0 +3871,4766,8620,8621,-9,-9,3,1,0,61,1,0,1,0,1,-9,6,3,0,5,0,0,0,2,0,-9,8,0,-6,0,0,0,0,67,1,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.23,66.31,6,3,0,0,8,1,1,699.5,0,0,0 +3871,4766,8621,8620,8622,-9,2,1,1,67,1,0,1,0,1,-9,2,1,0,4,0,0,0,2,0,-9,8,0,6,0,0,0,0,61,1,5,3,3,3,2019,2,3,6,0,0,35,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,52.62,7,3,0,0,8,1,1,699.5,0,0,0 +3871,4767,8622,-9,-9,-9,5,1,0,100,3,0,1,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1079.647153692841,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,7,0,0,15,3,7,-9,0,0,0,1,7.174711805420856,0,0,2.926799132692524,0,49.96746977715566,1,1,0,0,0,0,0,57.06,55.24,7,3,0,0,8,1,1,1046,0,0,0 +3872,4768,8623,8624,-9,-9,1,1,1,45,1,0,0,0,2,-9,1,1,0,5,8.016490998174454,8.071454572989998,7.221010844757611,1,0,-9,9,0,7,66.44989462267542,0,0,0,38,2,5,1,2,2,2019,1,2,5,0,40,30,15,1,0,1,0,5.263854431253487,5.263854431253487,0,0,0,0,0,0,0,0,0,0,7.950327961855282,7.413037395906695,0,0,54.1,59.11,6,1,0,0,5,3,1,1187.5,0,0,0 +3872,4768,8624,8623,-9,-9,2,1,0,38,1,0,0,0,2,-9,1,1,0,5,5.266173879331014,5.593033888396863,0,1,0,-9,9,0,-7,-79.98585698270912,0,0,1,45,2,5,1,2,2,2019,1,1,6,0,40,20,15,1,0,1,0,.642338112608361,.642338112608361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,5,3,1,1187.5,0,0,0 +3873,4769,8625,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,4,3,0,4,0,7.112321155078135,7.225990118008848,3,0,0,0,-9,0,-926.1042885527127,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.999665745513304,0,0,54.43,49.12,6,1,0,0,2,2,1,558,0,0,0 +3874,4770,8626,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-989.4552768522875,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,1,0,0,2,1,1,1355,0,0,0 +3875,4771,8627,-9,8629,8628,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.9556402594038,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,735.6666666666666,0,0,0 +3875,4771,8628,8629,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,3,8.742116195754917,8.695757313333308,0,2,0,-9,10,0,16,66.63909724014083,0,0,0,41,1,3,1,3,2,2019,1,2,13,3,42,43,15,1,3,1,0,13.0430375805331,13.0430375805331,0,0,0,0,0,0,0,1,1,0,1.966660979798491,0,0,0,31.23,54.96,5,1,0,0,9,4,1,735.6666666666666,0,0,0 +3875,4771,8629,8628,-9,-9,2,1,0,41,1,0,1,0,1,-9,1,1,0,3,0,0,0,2,0,-9,10,0,-16,77.87851757163327,0,0,1,57,2,3,1,-9,-9,2019,1,1,10,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,46.55,4,1,0,0,9,4,1,735.6666666666666,0,0,0 +3876,4772,8630,-9,-9,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.453533440540249,7.393248521076195,0,3,0,0,0,-9,0,-1006.818399538224,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,1,7.801601788760045,7.801601788760045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,3,0,1553,0,0,0 +3877,4773,8631,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,3,0,7.687692779041993,7.655125392903972,3,0,0,0,-9,0,-1095.624298005211,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.684284926784743,7.927613182260384,0,0,60.29,52.11,7,1,0,0,4,3,1,427,0,0,0 +3878,4774,8632,8633,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,47.35148505403801,0,0,0,72,1,4,3,2,1,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.225796066859119,0,0,0,44.88,46.67,6,1,0,0,9,3,1,2249,0,0,0 +3878,4774,8633,8632,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.276563445342193,8.121445229150137,1,0,-9,9,0,1,55.91124914651512,0,0,0,71,1,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.094569159922621,8.159569625215518,0,0,56.33,51.02,6,1,0,0,9,3,1,2249,0,0,0 +3879,4775,8634,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-830.394228807072,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.570746851629622,0,0,0,28.54,22.31,2,1,0,1,2,1,0,1246,0,0,0 +3880,4776,8635,-9,8637,8636,6,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.954327517744,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,428.25,0,0,0 +3880,4776,8636,8637,-9,-9,1,1,1,49,1,0,2,0,1,-9,1,1,0,4,7.237908587239024,6.800977008643174,0,2,0,-9,23,0,-1,-53.57429729599929,0,0,0,50,1,4,1,-9,-9,2019,1,2,9,0,40,60,15,1,1,1,0,3.729842464128688,3.729842464128688,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,13,4,1,428.25,0,0,0 +3880,4776,8637,8636,-9,-9,2,1,0,50,1,0,2,0,1,-9,1,1,0,4,8.897316591606954,8.691831701425452,0,2,0,-9,23,0,1,-56.61996878400734,0,0,0,49,1,4,1,-9,-9,2019,1,1,12,0,30,38,15,1,0,1,0,25.56706211758445,25.56706211758445,0,0,0,0,0,0,0,1,1,0,8.451040495604776,0,8.174499452089606,3,48.87,58.55,6,1,0,0,13,4,1,428.25,0,0,0 +3880,4776,8638,-9,8637,8636,5,1,1,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1025.812013190108,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,13,4,1,428.25,0,0,0 +3880,4777,8639,-9,8637,8636,3,1,0,20,2,0,2,0,2,0,7,2,0,5,6.990105341832252,6.733733550380623,0,3,0,0,0,-9,0,-1058.470128517776,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,25,9,15,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.95,64.87,5,1,0,0,13,2,1,213,0,0,0 +3880,4778,8640,-9,8637,8636,4,1,0,19,2,0,2,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1007.78359451516,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,52.37,6,1,0,0,13,1,1,937,0,0,0 +3881,4779,8641,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,1,1,0,3,8.091019722680125,8.12150250586715,0,3,0,0,0,-9,0,-1014.569360624572,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,48,50,15,1,2,-9,0,10.00687142365645,10.00687142365645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.84,50.44,4,4,0,0,8,4,0,474,0,0,0 +3882,4780,8642,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,0,6.364560536659861,6.03131273596889,3,0,-9,0,-9,0,-1001.051607514674,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.427506150055226,6.01825845130769,0,0,44.4,17.69,6,1,0,0,11,2,1,448,0,0,0 +3883,4781,8643,-9,8645,8644,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.952182726095,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,416,0,0,0 +3883,4781,8644,8645,-9,-9,1,1,1,42,1,1,1,0,1,-9,2,1,0,4,8.93067439294949,8.418813378376834,0,2,0,-9,8,0,0,47.47136791916603,0,0,0,42,2,4,1,1,1,2019,1,2,10,0,42,43,15,1,0,1,0,19.34831988388084,19.34831988388084,0,0,0,0,0,0,0,1,1,0,1.557617921838891,0,0,0,45.32,61.53,6,1,0,0,6,5,1,416,0,0,0 +3883,4781,8645,8644,-9,-9,2,1,0,42,1,1,1,0,2,-9,2,1,0,4,8.511957827022931,8.739697011719059,0,2,0,-9,8,0,0,150.2410596906959,0,0,1,42,1,4,1,2,2,2019,1,1,15,4,32,37,15,1,4,1,0,15.63730845469336,15.63730845469336,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.04,61.28,3,1,0,0,6,5,1,416,0,0,0 +3884,4782,8646,8647,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,5.064609926888167,4.725492749203091,1,0,-9,50,0,-2,4.054064610418858,0,0,0,72,2,2,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.091393724217105,4.972918547835502,0,0,62.5,49.56,6,1,0,0,5,3,1,762,0,0,0 +3884,4782,8647,8646,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,7.671928454007472,7.754184280758033,1,0,-9,50,0,2,41.23680038112039,0,0,0,70,3,4,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.344975327132741,7.707897150778239,0,0,35.82,51.7,6,1,0,0,5,3,1,762,0,0,0 +3885,4783,8648,-9,8650,8649,3,1,0,17,2,0,2,1,2,0,7,2,0,4,5.676524431717803,5.621020638541143,0,2,0,0,0,-9,0,-1073.177606615991,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,8,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.73,59.7,7,1,0,0,4,3,1,670.3333333333334,0,0,0 +3885,4783,8649,8650,-9,-9,1,1,1,48,1,0,2,0,2,-9,4,3,0,1,0,6.220482545432956,5.907525305070444,2,0,-9,4,0,4,10.7819391446836,0,0,0,44,2,4,1,3,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.622329797340828,5.981195890259311,0,0,50.32,20.53,5,1,0,0,4,3,1,670.3333333333334,0,0,0 +3885,4783,8650,8649,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.959957184310334,8.181096212144778,6.669192072861286,2,0,-9,4,0,-4,-44.50574309236488,0,0,1,48,2,1,3,-9,-9,2019,2,1,7,0,35,40,15,1,0,4,0,9.302975500956403,9.302975500956403,0,0,0,0,0,0,0,1,0,1,6.989429738008665,0,5.620721790800379,1,48.87,58.55,6,1,0,0,4,3,1,670.3333333333334,0,0,0 +3885,4784,8651,-9,8650,8649,5,1,1,18,2,0,2,0,2,-9,2,1,0,4,7.333789663202746,7.465357606903414,0,3,0,-9,0,-9,0,-1188.888918705514,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,0,15,1,2,-9,1,5.612729826483698,5.612729826483698,0,0,0,0,0,0,0,1,0,1,2.794026950687891,0,0,3,48,59,5,1,0,0,4,3,1,225,0,0,0 +3886,4785,8652,8654,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,2,8.833975889748293,9.046603835994866,0,2,0,-9,24,0,-5,43.88288257071808,-9,0,1,48,1,3,1,1,2,2019,1,1,9,0,49,0,15,1,0,1,0,19.73482423370143,19.73482423370143,0,0,0,0,0,0,0,1,1,0,7.433709069803511,0,0,0,54.97,45.58,6,3,0,0,6,5,1,292,0,0,0 +3886,4785,8653,-9,8652,8654,4,1,1,16,2,0,1,1,-9,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-993.244370553763,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.71,43.2,6,3,0,0,6,5,1,292,0,0,0 +3886,4785,8654,8652,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,3,9.099304450437222,8.807883301760882,0,2,0,-9,24,0,5,114.7890273020932,-9,0,0,43,1,2,1,2,2,2019,1,2,11,0,44,0,15,1,0,1,0,15.44343624512693,15.44343624512693,0,0,0,0,0,0,0,1,1,0,7.582815088814488,0,0,0,42.98,50.52,6,3,0,0,6,5,1,292,0,0,0 +3886,4786,8655,-9,8652,8654,3,1,0,22,2,0,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1026.517967488849,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,34,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.869823458425093,0,0,0,10.33,69.33,3,3,1,0,6,1,1,353,0,0,0 +3887,4787,8656,8657,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,3,6.647231926431089,6.5784265927753,0,1,0,-9,11,0,-4,53.63554486879816,0,0,0,62,2,2,1,2,2,2019,1,1,13,1,48,24,15,1,1,1,0,1.706749573547319,1.706749573547319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.72,55.65,2,1,0,0,10,4,1,636,0,0,0 +3887,4787,8657,8656,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,2,8.200678969725715,7.969307635500032,0,1,0,-9,11,0,4,-182.9521927010778,0,0,0,58,1,3,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,9.66862830240251,9.66862830240251,0,0,0,0,0,0,0,0,0,0,1.241493738605532,0,0,0,38.83,48.55,3,1,0,0,10,4,1,636,0,0,0 +3888,4788,8658,8661,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,5,8.818777928192301,9.009744067232308,0,2,0,-9,10,0,-8,0,0,0,1,52,2,3,1,1,2,2019,1,2,9,0,43,40,15,1,0,1,0,20.08828924980524,20.08828924980524,0,0,0,0,0,0,0,1,1,0,7.370102859992522,0,0,0,51.73,58.82,6,1,0,0,2,5,1,1030.5,0,0,0 +3888,4788,8659,-9,8658,8661,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.7093792778883,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,1030.5,0,0,0 +3888,4788,8660,-9,8658,8661,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.129341231357,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,1030.5,0,0,0 +3888,4788,8661,8658,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,3,8.760561922777262,9.016674906474625,0,2,0,-9,10,0,8,0,0,0,0,44,1,5,1,2,3,2019,1,1,8,0,40,1,15,1,0,1,0,22.28197846729801,22.28197846729801,0,0,0,0,0,0,0,1,1,0,7.58694999363963,0,0,0,57.33,53.46,6,1,0,0,2,5,1,1030.5,0,0,0 +3889,4789,8662,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,0,5.717390458004569,5.942945620529747,3,0,0,0,-9,0,-993.218938927405,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.484176317073544,5.98397442188996,0,0,32.65,38.06,4,1,0,0,10,2,1,424,0,0,0 +3890,4790,8663,8664,-9,-9,1,1,0,59,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,40,0,-8,-31.40585936523934,0,0,0,67,3,3,1,3,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.779616042520286,0,0,0,42.05,58.8,7,1,0,0,5,2,1,324.5,0,0,0 +3890,4790,8664,8663,-9,-9,2,1,1,67,1,0,0,0,3,-9,1,1,0,3,7.02868644310053,6.641537645800925,0,1,0,-9,39,0,8,73.96248866406737,0,0,0,59,3,4,3,3,3,2019,2,1,7,2,40,20,15,1,2,3,0,2.523241537777793,2.523241537777793,0,0,0,0,0,0,0,1,1,0,6.524478341565684,0,0,0,52,48,7,1,0,0,5,2,1,324.5,0,0,0 +3891,4791,8665,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,5,8.769243996006114,9.146054700610406,0,3,0,0,0,-9,0,-1094.173433467815,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,45,25,15,1,0,-9,0,21.08016057720663,21.08016057720663,0,0,0,0,0,0,0,0,0,0,2.964560699936802,0,0,0,57.06,57.76,5,1,0,0,12,5,1,436,0,0,0 +3892,4792,8666,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,2,7.157568314235494,6.926291822073711,0,3,0,0,0,-9,0,-1048.232005899737,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,20,20,15,1,12,-9,0,8.468249272535928,8.468249272535928,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.19,19.13,4,3,0,0,5,3,1,562,0,0,0 +3893,4793,8667,-9,8668,8669,5,1,0,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.251131443599,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,7,4,0,971.3333333333334,0,0,0 +3893,4793,8668,8669,-9,-9,2,1,0,39,1,0,4,0,2,-9,2,1,0,3,6.727302885847109,6.863609481086927,0,2,0,-9,16,0,-1,88.69867341927467,0,0,1,40,1,4,1,-9,-9,2019,1,1,10,0,17,11,15,1,0,1,0,7.273757963922769,7.273757963922769,0,0,0,0,0,0,0,1,1,0,1.965920281319773,0,0,0,46.56,50.26,3,1,0,0,7,4,0,971.3333333333334,0,0,0 +3893,4793,8669,8668,-9,-9,1,1,1,40,1,0,4,0,1,-9,2,1,0,4,9.124324261726718,8.863485609433461,0,2,0,-9,16,0,1,.3636384783668503,0,0,0,39,2,3,1,2,1,2019,1,2,12,1,60,63,15,1,1,1,0,10.85986396506372,10.85986396506372,0,0,0,0,0,0,0,1,1,0,3.050927271644627,0,0,0,49.35,59.64,5,3,0,0,7,4,0,971.3333333333334,0,0,0 +3893,4793,8670,-9,8668,8669,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.000836700847,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,7,4,0,971.3333333333334,0,0,0 +3893,4793,8671,-9,8668,8669,4,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.148176453728,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,0,971.3333333333334,0,0,0 +3893,4793,8672,-9,8668,8669,3,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.680933977952,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,0,971.3333333333334,0,0,0 +3894,4794,8673,-9,8675,8676,6,1,0,17,2,0,2,0,2,-9,3,3,0,5,0,0,0,2,0,-9,0,-9,0,-987.7699210989167,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,7,3,1,0,5,2,0,1036,0,0,0 +3894,4794,8674,-9,8675,8676,7,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1147.834689229182,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,5,2,0,1036,0,0,0 +3894,4794,8675,8676,-9,-9,2,1,0,41,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,4,-9,-8,-4.10110593485629,-9,0,1,49,3,3,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.65,49.16,6,3,0,0,5,2,0,1036,0,0,0 +3894,4794,8676,8675,-9,-9,1,1,1,49,1,0,2,0,3,-9,2,1,0,3,7.26948284478992,7.223347324484004,0,2,0,-9,4,-9,8,98.77311759239453,-9,0,0,41,3,3,3,3,2,2019,2,2,6,0,24,0,15,1,0,3,0,7.329096659052956,7.329096659052956,0,0,0,0,0,0,0,1,1,0,1.596014018610175,0,0,0,60.29,52.11,6,3,0,0,5,2,0,1036,0,0,0 +3894,4795,8677,-9,8675,8676,5,1,0,22,2,0,2,0,2,-9,10,3,0,3,0,0,0,3,0,-9,0,-9,0,-981.2824050186987,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,5,3,0,0,5,1,0,670,0,0,0 +3895,4796,8678,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,3,0,7.594230494643942,7.682113591997421,3,0,0,0,-9,0,-1024.207976550406,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,1.399445736842539,0,0,0,0,61.18875224443946,1,1,0,0,7.951494800495297,0,0,64.81,43.21,5,1,0,0,9,3,1,453,0,0,0 +3896,4797,8679,8680,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.011880245581667,8.135709104245072,0,1,0,-9,18,0,4,53.69864011537222,0,0,0,53,2,4,1,-9,-9,2019,1,2,11,2,47,41,15,1,2,1,0,11.09074573179745,11.09074573179745,0,0,0,0,0,0,0,0,0,0,0,0,3.686815247509613,3,53.64,45.35,5,1,0,0,1,4,1,517,0,0,0 +3896,4797,8680,8679,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,7.859669434339065,8.041744738892445,6.29273988269586,1,0,-9,7,0,-4,-90.01423737365693,0,0,0,57,2,4,1,-9,-9,2019,1,1,6,1,35,27,15,1,1,1,0,7.05174919818794,7.05174919818794,0,0,0,0,0,0,0,0,0,0,6.51462458506923,6.696410138947793,0,0,41.82,56.44,3,1,0,0,1,4,1,517,0,0,0 +3897,4798,8681,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,2,1,0,4,9.294291707067826,9.424853927398679,0,3,0,0,0,-9,0,-1033.39145355492,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,35,15,1,2,-9,0,47.19235835903826,47.19235835903826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.19,54.86,6,1,0,0,4,5,1,565,0,0,0 +3898,4799,8682,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1085.936000354156,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,26.74834218443093,0,0,0,1,1,0,2.815127130725426,0,0,0,64.3,19.18,6,1,0,0,9,1,1,582,0,0,0 +3899,4800,8683,8685,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,4,8.392717767610925,8.635787638843524,0,2,0,-9,7,0,-2,12.32462242601117,0,0,1,35,2,4,1,1,1,2019,1,2,13,2,42,42,15,1,2,1,0,11.20913957239215,11.20913957239215,0,0,0,0,0,0,0,1,1,0,.4471593794095613,0,0,0,46.5,58.26,6,1,0,0,7,5,1,270,0,0,0 +3899,4800,8684,-9,8683,8685,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1217.603394940143,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,270,0,0,0 +3899,4800,8685,8683,-9,-9,2,1,1,35,1,1,1,0,2,-9,2,1,0,4,8.691625539239844,8.623948522705867,0,2,0,-9,7,0,2,-70.87982224583978,0,0,0,33,2,4,1,-9,-9,2019,1,1,10,0,42,37,15,1,1,1,0,17.55339105996041,17.55339105996041,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,7,5,1,270,0,0,0 +3900,4801,8686,8687,-9,-9,1,1,0,55,1,0,1,0,3,-9,2,1,0,2,7.460421615043886,7.188680314801076,0,2,0,-9,24,0,3,-13.82847783003387,0,0,0,52,3,3,1,-9,-9,2019,1,2,7,0,27,23,15,1,0,1,0,7.877387203910411,7.877387203910411,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.24,36.49,4,1,0,1,4,3,0,667,0,0,0 +3900,4801,8687,8686,-9,-9,2,1,1,52,1,0,1,0,3,-9,2,1,0,3,7.96389216350547,8.090863487024743,0,2,0,-9,24,0,-3,-100.4445346744112,0,0,0,55,3,2,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,10.13139452118537,10.13139452118537,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.09,28.15,6,1,0,1,4,3,0,667,0,0,0 +3900,4801,8688,-9,8686,8687,4,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-937.9200444409521,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,4,3,0,667,0,0,0 +3900,4802,8689,-9,8686,8687,3,1,0,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-891.4388780862189,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,4,1,0,484,0,0,0 +3901,4803,8690,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-969.1206938540181,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,38,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.63,64.61,5,4,1,0,9,1,1,868,0,0,0 +3902,4804,8691,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,4,0,7.24113622674296,7.060142026420907,3,0,0,0,-9,0,-946.6274790611527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.58145305827978,7.112802802853076,0,0,55.74,44.96,7,1,0,0,9,3,1,373,0,0,0 +3902,4805,8692,-9,-9,8691,2,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.547558658612786,7.661150130632937,5.541825771612723,3,0,0,0,-9,0,-957.0204601725065,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,8,0,22,18,15,1,0,-9,1,8.16127349561857,8.16127349561857,0,0,0,0,0,0,0,1,1,0,3.860521336194216,5.708810550768471,0,0,59.14,52.5,6,1,0,0,9,3,1,601,0,0,0 +3903,4806,8693,8694,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,6.764016176577146,6.625745199570635,1,0,-9,34,0,8,-99.06142611497627,0,0,0,75,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.294778526681731,6.6800445699387,0,0,60.99,44.82,6,1,0,0,10,2,0,504.5,0,0,0 +3903,4806,8694,8693,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,34,0,-8,-45.48880691662656,0,0,0,83,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.065198979071168,0,0,0,62.84,30.79,6,1,0,0,10,2,0,504.5,0,0,0 +3904,4807,8695,-9,8697,8696,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-968.19628896488,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,7,4,1,224,0,0,0 +3904,4807,8696,8697,-9,-9,2,1,1,43,1,0,2,0,3,-9,2,1,0,4,8.317541699946982,8.427312110616263,0,2,0,-9,8,0,5,39.56720565817666,0,0,0,38,2,5,1,-9,-9,2019,1,1,9,0,50,40,15,1,1,1,0,12.92848638382821,12.92848638382821,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,7,4,1,224,0,0,0 +3904,4807,8697,8696,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,5,7.326161476128897,7.410469095872958,0,2,0,-9,18,0,-5,-14.33353852819482,0,0,1,43,3,4,1,-9,3,2019,1,2,7,0,22,25,15,1,0,1,0,7.458980249574796,7.458980249574796,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.24,58.02,6,1,0,0,7,4,1,224,0,0,0 +3904,4807,8698,-9,8697,8696,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1001.408086105239,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,4,1,224,0,0,0 +3905,4808,8699,8702,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,3,8.180055165467179,8.541878537423498,7.581384310711737,2,0,-9,18,0,-2,-56.50365793674365,0,0,1,42,1,4,1,2,2,2019,1,2,13,1,47,0,15,1,1,1,0,10.46095969051007,10.46095969051007,0,0,0,0,0,0,0,1,1,0,3.429442532181232,7.837116456576291,0,0,46.16,45.22,6,1,0,0,12,4,0,453.75,0,0,0 +3905,4808,8700,-9,8699,8702,3,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-996.2298172431954,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,12,4,0,453.75,0,0,0 +3905,4808,8701,-9,8699,8702,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.709287934581,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,0,453.75,0,0,0 +3905,4808,8702,8699,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,7.902026552781652,7.990579397027763,0,2,0,-9,18,0,2,7.304742561820271,0,0,0,40,1,3,1,2,2,2019,1,1,12,0,50,8,15,1,0,1,0,6.378914788028273,6.378914788028273,0,0,0,0,0,0,0,1,1,0,4.024716276101956,0,0,0,37,50.59,6,1,0,0,12,4,0,453.75,0,0,0 +3906,4809,8703,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,5,8.220847196043165,7.973408639983463,0,3,0,0,0,-9,0,-928.1873545630264,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,37,15,1,0,-9,0,9.080766732334526,9.080766732334526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,2,4,1,602,0,0,0 +3906,4810,8704,-9,8703,-9,2,1,1,29,2,0,0,0,1,-9,2,1,0,4,8.064460146340748,8.027612727217543,0,3,0,0,0,-9,0,-885.2334160278099,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,38,0,15,1,1,-9,1,8.545695236618895,8.545695236618895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,2,4,1,829,0,0,0 +3907,4811,8705,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,3,7.349258005095148,7.122781369287976,0,3,0,0,0,-9,0,-999.2187013674485,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,38,15,1,0,-9,0,4.377517754125177,4.377517754125177,0,0,0,0,0,0,0,0,0,0,7.811716539161946,0,0,0,50.91,44.08,5,1,0,0,1,3,1,500,0,0,0 +3908,4812,8706,8707,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,7.370467701953844,7.385394784248975,1,0,-9,50,0,5,63.01031134236676,0,0,0,71,2,2,3,3,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.40370819753064,7.202021675399932,12.71598276951892,3,45.13,43.13,4,1,0,0,2,2,1,504.5,0,0,0 +3908,4812,8707,8706,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,5.389868810345143,5.786512632128318,1,0,-9,50,0,-5,-117.8339652877725,0,0,0,76,3,4,3,3,3,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.908129085901147,5.676175944698549,0,0,62.54,25.39,6,1,0,0,2,2,1,504.5,0,0,0 +3909,4813,8708,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,8.366319661165988,8.555501529738883,0,3,0,0,0,-9,0,-966.5223489987405,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,40,15,1,0,-9,0,12.15575985674231,12.15575985674231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.41,43.65,6,1,0,0,2,5,0,833,0,0,0 +3910,4814,8709,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,3,8.923577762149367,8.717317885837247,0,3,0,0,0,-9,0,-1038.772061489843,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,73,67,15,1,0,-9,0,10.92578658012115,10.92578658012115,0,0,0,0,0,0,0,0,0,0,0,0,4.853101446272795,3,56.94,49.53,6,1,0,0,5,5,0,506,0,0,0 +3911,4815,8710,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,3,3,0,4,0,4.380461739708327,4.236105631191451,3,0,-9,0,1,0,-1015.301296005567,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.355155158650188,4.157080616711555,0,0,35.28,57.7,3,1,1,1,11,1,1,809,0,0,0 +3912,4816,8711,-9,-9,-9,1,1,0,52,2,0,2,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-957.4290560178683,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.72,22.57,1,4,0,1,8,1,0,854.5,0,0,0 +3912,4816,8712,-9,8711,-9,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-979.3058917580105,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,1,0,854.5,0,0,0 +3912,4817,8713,-9,8711,-9,2,1,0,25,2,0,2,0,1,-9,2,1,0,4,7.371154220392625,7.65660422284403,0,3,0,0,0,-9,0,-1028.458506454771,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,4,0,0,8,3,0,464,0,0,0 +3912,4818,8714,-9,8711,-9,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1022.070000777188,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,4,0,0,8,3,0,619,0,0,0 +3913,4819,8715,8716,-9,-9,2,1,0,58,1,0,1,0,3,-9,4,3,0,4,0,0,0,2,0,-9,25,0,-6,0,0,0,0,64,1,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.120441143469559,0,0,0,56.74,52.23,7,1,0,0,8,1,0,1123,0,0,0 +3913,4819,8716,8715,-9,-9,1,1,1,64,1,0,1,0,1,-9,4,3,0,5,0,0,0,2,0,-9,18,0,6,0,0,0,0,58,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.847965920785952,0,0,0,62.39,56.71,7,1,0,0,8,1,0,1123,0,0,0 +3913,4819,8717,-9,8715,8716,4,1,0,17,2,0,1,1,2,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1094.589776550656,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,18,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.36,52.34,5,1,0,0,8,1,0,1123,0,0,0 +3914,4820,8718,8719,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,7.659139906424279,8.444806202851755,8.255158746189995,1,0,-9,10,0,-8,-131.7333539448987,0,0,0,71,1,3,3,2,1,2019,4,1,8,0,7,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.58037589200048,8.234161122619039,2.636530615165431,3,47.61,55.04,6,1,0,0,13,4,1,319.5,0,0,0 +3914,4820,8719,8718,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,6.198658588519335,6.535838203116983,1,0,-9,10,0,8,78.50947534220198,0,0,0,63,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.710119799651652,6.479230500513344,0,3,54.33,42.47,6,1,0,0,13,4,1,319.5,0,0,0 +3915,4821,8720,8721,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,6.452844251136451,6.042883162140191,1,0,-9,10,0,-1,-64.4952348209098,0,0,0,75,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,4.930682199729706,0,0,0,0,1,1,0,3.442900982961256,6.299676522509389,0,0,55.91,28.5,5,1,0,0,4,2,1,361,0,0,0 +3915,4821,8721,8720,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.578972853509053,6.423107841317241,1,0,-9,10,0,1,64.9982576668036,0,0,0,74,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,4.473091363622607,0,0,0,0,1,1,0,6.384631896543294,6.410463243407288,7.116699777888032,1,55.15,32.6,6,1,0,0,4,2,1,361,0,0,0 +3916,4822,8722,8724,-9,-9,3,1,1,47,1,0,1,0,2,-9,2,1,0,3,8.395834413364902,8.48013359788853,0,2,0,-9,7,0,10,14.920885825882,0,0,0,37,2,3,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,13.27998560289062,13.27998560289062,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,9,4,1,447.3333333333333,0,0,0 +3916,4822,8723,-9,8724,8722,2,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-860.0872733027568,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,58.83,7,1,0,0,9,4,1,447.3333333333333,0,0,0 +3916,4822,8724,8722,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,3,8.218653540394806,8.466464676571826,6.4186961286,2,0,-9,7,0,-10,38.74598249462977,0,0,1,47,2,3,1,2,2,2019,1,3,9,0,46,40,15,1,0,1,0,9.952155324508546,9.952155324508546,0,0,0,0,0,0,0,1,1,0,6.057132254190477,0,0,0,52.6,52.88,7,1,0,0,9,4,1,447.3333333333333,0,0,0 +3917,4823,8725,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,8.317538117594797,8.314472241111856,3.836631302587788,3,0,0,0,-9,0,-878.0431121906834,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,37,38,15,1,0,-9,0,11.5845032675132,11.5845032675132,0,0,0,0,0,0,0,0,0,0,7.302941501363661,0,0,0,49.46,56.91,6,1,0,0,13,4,1,443,0,0,0 +3918,4824,8726,8727,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,8.312387042692285,7.898317883610622,1,0,-9,46,0,2,22.62439415484434,0,0,0,67,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.568986225511346,8.026250928410951,0,0,45.46,52.15,6,1,0,0,11,4,1,444.5,0,0,0 +3918,4824,8727,8726,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.23811343024938,7.16738895857235,1,0,-9,46,0,-2,116.9068293720093,0,0,0,69,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.680906544703346,7.442734397867719,0,0,57.16,56.15,6,1,0,0,11,4,1,444.5,0,0,0 +3919,4825,8728,8729,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,8.254407739649064,8.254709150363038,1,0,-9,59,0,-1,-.3996085568003132,0,0,0,77,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.039041972615992,0,0,67.42,34.2,6,1,0,0,10,3,1,382,0,0,0 +3919,4825,8729,8728,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,3.239440911111879,3.086373339839804,1,0,-9,59,0,1,111.7768812166676,0,0,0,76,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.23697140956169,3.111706357950789,1,61.12,51.57,7,1,0,0,10,3,1,382,0,0,0 +3920,4826,8730,-9,8731,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-991.5491272310333,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,3,0,451.5,0,0,0 +3920,4826,8731,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,5,8.10597463240547,8.283801105530877,5.954763633759407,4,0,0,0,-9,0,-1164.201302623981,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,5,0,38,20,15,1,0,-9,0,9.659775361063277,9.659775361063277,0,0,0,0,0,0,0,1,1,0,6.630147578198205,0,0,0,69.51000000000001,30.25,7,1,0,0,12,3,0,451.5,0,0,0 +3921,4827,8732,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,4,7.743996397699122,7.655857906747102,0,3,0,0,0,-9,0,-1090.201922961009,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,36,39,15,1,3,-9,0,7.199419921937789,7.199419921937789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.43,56.17,5,1,0,0,6,3,0,704,0,0,0 +3922,4828,8733,-9,8735,8734,5,1,0,17,2,0,2,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1076.282229528009,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.85,50.36,6,1,0,0,13,3,1,811.75,0,0,0 +3922,4828,8734,8735,-9,-9,1,1,1,52,1,0,2,0,3,-9,2,1,0,4,7.584462122100224,7.700608181103715,0,2,0,-9,27,0,2,-2.605668796818701,0,0,0,50,2,5,1,3,3,2019,1,2,12,0,42,42,15,1,0,1,0,5.100912641074896,5.100912641074896,0,0,0,0,0,0,0,1,1,0,0,0,14.76468064062876,3,60.28,46.44,5,1,0,0,13,3,1,811.75,0,0,0 +3922,4828,8735,8734,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,5,7.656759787697187,7.561323879702972,0,2,0,-9,27,0,-2,-6.592244021909724,0,0,0,52,3,4,1,3,3,2019,1,1,14,2,48,45,15,1,2,1,0,5.326529519630516,5.326529519630516,0,0,0,0,0,0,0,1,1,0,0,0,19.6859401159386,3,55.09,55.87,5,1,0,0,13,3,1,811.75,0,0,0 +3922,4828,8736,-9,8735,8734,6,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.0919001055047,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,3,1,811.75,0,0,0 +3922,4829,8737,-9,8735,8734,3,1,1,23,2,0,2,0,2,-9,2,1,0,3,8.179966382368901,8.182944384410556,0,3,0,0,0,-9,0,-845.8987120416413,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,12,40,15,1,1,-9,1,41.84143773561426,41.84143773561426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,38.97,6,1,0,1,13,4,1,553,0,0,0 +3922,4830,8738,-9,8735,8734,4,1,1,21,2,0,2,0,2,-9,2,1,0,4,7.337640316290909,7.449244834214196,0,3,0,0,0,-9,0,-967.6178997299024,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,47,39,15,1,0,-9,1,4.403659498122721,4.403659498122721,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,529,0,0,0 +3923,4831,8739,8740,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,3,8.702470110956789,8.61175890670938,0,1,0,-9,3,0,0,-136.2169191152151,0,1,1,28,1,4,3,-9,-9,2019,2,1,12,0,38,38,15,1,0,3,0,17.37832516132805,17.37832516132805,0,0,0,0,0,0,0,0,0,0,2.88751039995334,0,0,0,44.95,52.41,5,1,0,0,5,4,1,600,0,0,0 +3923,4831,8740,8739,-9,-9,1,1,1,28,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,3,0,0,46.51263943075742,0,1,0,28,1,3,1,-9,-9,2019,3,2,11,2,0,38,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.447271403916399,0,0,0,46.39,60.99,5,1,1,0,5,4,1,600,0,0,0 +3924,4832,8741,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-911.9931994159479,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.43,20.42,3,1,0,1,9,1,0,253,0,0,0 +3925,4833,8742,8743,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,.0938200404392996,.3836691291506394,0,1,0,-9,24,0,1,6.317934048663449,-9,0,0,58,2,5,1,2,2,2019,1,1,12,1,78,0,15,1,1,1,0,.0005090501248104,.0005090501248104,0,0,0,0,0,0,0,0,0,0,6.464066953810896,0,0,0,51.83,57.2,6,1,0,0,2,3,1,425,0,0,0 +3925,4833,8743,8742,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,5,8.218356251196331,8.428911919949833,0,1,0,-9,24,0,-1,-15.38748027998025,0,0,0,59,1,4,1,3,3,2019,1,2,5,0,30,30,15,1,0,1,0,16.7121530912286,16.7121530912286,0,0,0,0,0,0,0,0,0,0,3.79049429692706,0,0,0,57.06,57.76,6,1,0,0,2,3,1,425,0,0,0 +3926,4834,8744,8745,-9,-9,1,1,0,76,1,0,0,0,3,-9,2,1,0,4,6.829948514216767,7.494930801053486,6.2669723539028,1,0,-9,57,0,-5,-50.18385326100981,0,0,0,81,2,3,3,-9,-9,2019,2,2,6,0,15,15,15,1,0,4,0,6.645745436309156,6.645745436309156,0,0,0,0,0,0,0,1,1,0,0,6.480349017873944,0,0,55.79,52.62,6,1,0,0,12,3,1,178,0,0,0 +3926,4834,8745,8744,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,7.133971197018056,7.215603421264348,1,0,-9,57,0,5,97.80738441538533,0,0,0,76,3,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.233784719205365,0,0,58.92,48.59,6,1,0,0,12,3,1,178,0,0,0 +3927,4835,8746,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1155.162050712546,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,5,1,0,0,1,1,0,713,0,0,0 +3928,4836,8747,8748,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.717538955456615,6.723802458169956,1,0,-9,50,0,-5,5.300622925361642,0,0,0,71,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.476506237560013,6.726520113151742,0,0,63.83,43.62,7,1,0,0,2,2,1,981,0,0,0 +3928,4836,8748,8747,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,5,0,3.656718802686278,3.359176336147119,1,0,-9,50,0,5,-80.07291075404586,0,0,0,66,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.50690400439205,3.502874581458808,3.621440407690417,3,62.39,56.71,7,1,0,0,2,2,1,981,0,0,0 +3929,4837,8749,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,5.915195555094019,5.607928707892056,3,0,0,0,-9,0,-974.5694085868353,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,35.50396389630129,1,1,0,0,5.19915283038591,0,0,53,45,6,1,0,0,9,2,1,644,0,0,0 +3930,4838,8750,8751,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,1,0,7.619516089374031,7.753995647378199,1,0,-9,42,0,7,13.50924876860375,0,0,0,63,1,5,3,2,2,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,0,21.91632206695262,0,0,0,0,1,1,0,4.241654427373393,7.840500249139039,0,0,49.45,26.24,5,1,0,0,12,4,1,946.5,0,0,0 +3930,4838,8751,8750,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,5,0,8.284487027752034,8.277904636232165,1,0,-9,42,0,-7,-122.9185230681188,0,0,0,70,1,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.310678916792938,8.415257185348066,32.96623318312265,1,57.06,57.76,7,1,0,0,12,4,1,946.5,0,0,0 +3931,4839,8752,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,1,8.03792818400685,8.634979155424697,5.277576873203424,3,0,0,0,-9,0,-937.1021422039811,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,12,50,53,15,1,12,-9,0,8.088565048600856,8.088565048600856,0,0,0,0,0,0,0,0,0,0,.2524497073102819,5.642282614282794,0,0,34.26,37.38,2,1,0,1,5,4,0,1139,0,0,0 +3932,4840,8753,8754,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,2,0,7.545309362105783,7.542002358495618,1,0,-9,55,0,2,41.72099557073946,0,0,0,73,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.527146734861509,7.487957259198684,4.271784734453307,3,49.77,49.55,6,1,0,0,7,2,1,423,0,0,0 +3932,4840,8754,8753,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-2,-74.81813393210325,0,0,0,75,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.727290203251121,0,2.947189602057964,3,57.33,53.46,7,1,0,0,7,2,1,423,0,0,0 +3933,4841,8755,8756,-9,-9,1,1,0,36,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,1,-43.96273877241158,0,0,1,35,3,4,1,2,2,2019,3,4,21,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,5,1,0,0,11,3,0,643.5,0,0,0 +3933,4841,8756,8755,-9,-9,4,1,1,35,1,0,3,0,3,-9,2,1,0,4,8.375735574589333,7.852826014379724,0,2,0,-9,6,0,-1,137.0005810084259,0,0,0,36,2,4,3,-9,-9,2019,2,1,10,0,40,50,15,1,1,3,0,10.90727773228713,10.90727773228713,0,0,0,0,0,0,0,1,1,0,4.496791696172021,0,0,0,50,57,5,1,0,0,11,3,0,643.5,0,0,0 +3933,4841,8757,-9,8755,8756,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.423284458266,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,3,0,643.5,0,0,0 +3933,4841,8758,-9,8755,8756,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.209390064219,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,3,0,643.5,0,0,0 +3934,4842,8759,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-811.3055401489044,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.34,37.85,5,2,1,0,8,1,0,562,0,0,0 +3935,4843,8760,8761,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,7.014633787642119,7.180619302574298,1,0,-9,7,0,-1,-82.4226103034382,0,0,0,68,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.296401244775748,6.764213246127987,0,0,60.05,42.65,6,1,0,0,13,2,1,556.5,0,0,0 +3935,4843,8761,8760,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,1,-19.73799778639998,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,51.84,7,5,0,0,13,2,1,556.5,0,0,0 +3936,4844,8762,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1036.802161735691,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.16,39.62,4,1,0,0,12,1,0,1472,0,0,0 +3937,4845,8763,8764,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,2,8.199377348205996,8.29759400580118,0,1,0,-9,6,0,-4,-55.391414213519,0,0,1,46,2,3,1,2,-9,2019,1,1,22,10,42,44,15,1,10,1,0,9.697602455780954,9.697602455780954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,36.82,5,1,0,0,4,4,1,1057.5,0,0,0 +3937,4845,8764,8763,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,3,8.434514198594776,8.306861075494336,0,1,0,-9,9,0,4,51.64038012989228,0,0,0,42,2,2,1,3,3,2019,1,2,12,0,40,50,15,1,0,1,0,12.33814485239855,12.33814485239855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.54,54.84,5,1,0,0,4,4,1,1057.5,0,0,0 +3938,4846,8765,-9,8766,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,2,0,4.99901093807431,5.631485752907806,4,0,0,0,-9,0,-1067.140975761989,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.749834289909982,0,0,0,46.21,48.13,5,1,0,0,13,3,1,1675,0,0,0 +3938,4846,8766,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,4,7.937491787812283,7.776627728591881,0,4,0,-9,0,1,0,-968.3406007027938,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,37,36,15,1,0,-9,0,6.993068552717696,6.993068552717696,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,6,1,0,0,13,3,1,1675,0,0,0 +3939,4847,8767,8768,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,5,0,7.185196753025676,7.777267482557017,1,0,-9,55,0,0,-9.901115241554002,0,0,0,75,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.65633559098227,7.506096689993786,0,0,59.43,58.05,7,1,0,0,9,3,1,1047,0,0,0 +3939,4847,8768,8767,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,6.13526299303322,6.512526733932763,1,0,-9,55,0,0,-66.06089168062137,0,0,0,75,2,5,3,-9,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,6.32671940147567,0,0,0,0,1,1,0,2.317300603344051,6.185094493895026,0,0,64.40000000000001,39.14,7,1,0,0,9,3,1,1047,0,0,0 +3940,4848,8769,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,3,0,8.605846027980233,8.922387907943699,3,0,0,0,-9,0,-1010.612627222154,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.699522853233129,8.281103258103553,0,3,66.53,29.99,6,1,0,0,8,5,1,641,0,0,0 +3941,4849,8770,8771,-9,-9,2,1,1,39,1,0,0,0,2,-9,1,1,0,5,8.437947303518788,8.410714187345466,0,1,0,-9,4,0,11,10.27952368265477,0,0,0,28,1,5,1,-9,-9,2019,1,1,13,1,55,50,15,1,1,1,0,9.13799310141162,9.13799310141162,0,0,0,0,0,0,0,0,0,0,8.158886337937505,0,0,0,40.91,48.75,7,1,0,0,4,5,1,237.5,0,0,0 +3941,4849,8771,8770,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.182850123969839,8.115809292916103,0,1,0,-9,4,0,-11,-38.58453714629654,0,1,1,39,2,5,1,-9,-9,2019,1,2,12,1,39,35,15,1,1,1,0,9.199852052792746,9.199852052792746,0,0,0,0,0,0,0,0,0,0,0,0,0,3,55.09,55.87,7,1,0,0,4,5,1,237.5,0,0,0 +3942,4850,8772,8774,-9,-9,1,1,0,34,1,0,1,0,1,-9,2,1,0,5,8.447441703850368,8.377816074246319,0,2,0,-9,9,0,-6,81.49345336409452,0,0,1,40,1,3,1,-9,-9,2019,1,2,9,0,39,45,15,1,0,1,0,18.19208724738722,18.19208724738722,0,0,0,0,0,0,0,0,0,0,2.931192514902453,0,0,0,46.65,58.6,6,1,0,0,2,5,1,2270.333333333333,0,0,0 +3942,4850,8773,-9,8772,8774,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.5215208840589,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,5,1,2270.333333333333,0,0,0 +3942,4850,8774,8772,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,3,9.153400509965687,9.499396853535073,0,2,0,-9,9,0,6,61.27191601110618,0,0,0,34,1,5,1,-9,-9,2019,1,1,12,1,60,55,15,1,1,1,0,26.51843186260137,26.51843186260137,0,0,0,0,0,0,0,0,0,0,6.23041905148748,0,0,0,52,54.51,6,1,0,0,2,5,1,2270.333333333333,0,0,0 +3943,4851,8775,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1116.407265044346,1,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,0,48,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.242780271302026,0,0,0,31.3,53.25,4,1,0,0,12,1,0,1661,0,0,0 +3944,4852,8776,8777,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,6.729555956590746,6.74253097614432,1,0,-9,10,0,-4,-63.57265406951771,0,0,0,76,2,3,1,3,3,2019,3,1,17,6,0,0,15,4,6,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.073650371866971,6.326745788228353,0,0,43.01,34.69,5,1,0,0,4,3,1,1266.5,0,0,0 +3944,4852,8777,8776,-9,-9,1,1,1,76,1,0,0,0,2,-9,2,1,0,3,7.259290372938701,7.41212101344012,5.919808185449766,1,0,-9,10,0,4,21.64547004179257,0,0,0,72,3,2,3,3,3,2019,2,2,9,0,20,20,15,1,0,4,0,7.773741443187761,7.773741443187761,0,0,0,0,0,0,0,1,1,0,0,5.979279189279155,0,0,36.37,61.5,6,1,0,0,4,3,1,1266.5,0,0,0 +3945,4853,8778,8779,-9,-9,1,1,1,56,1,0,1,0,3,-9,2,1,0,4,7.018518741713624,7.165274024202461,0,2,0,-9,34,0,7,31.08263316957185,0,0,0,49,3,4,3,3,3,2019,2,2,11,0,24,24,15,1,0,3,0,5.572530071138727,5.572530071138727,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,49.09,6,3,0,0,8,2,1,608.3333333333334,0,0,0 +3945,4853,8779,8778,-9,-9,2,1,0,49,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,34,0,-7,35.6645647805167,0,0,0,56,3,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,3,0,0,8,2,1,608.3333333333334,0,0,0 +3945,4853,8780,-9,8779,8778,4,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.7959319280726,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,8,2,1,608.3333333333334,0,0,0 +3945,4854,8781,-9,8779,8778,3,1,0,23,2,0,1,0,2,-9,2,1,0,3,8.401984398196863,8.400693084814318,0,3,0,0,0,-9,0,-1014.857470408208,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,48,40,15,1,2,-9,1,11.94174059508538,11.94174059508538,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.64,59.59,4,3,0,0,8,4,1,1575,0,0,0 +3945,4855,8782,-9,8779,8778,5,1,0,29,2,0,1,0,1,-9,2,1,0,5,7.712783262944172,7.593024561342094,0,3,0,-9,0,-9,0,-1009.341410305654,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,3,22,0,15,1,3,-9,1,11.5934215869439,11.5934215869439,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.88,61.57,6,3,0,0,8,3,1,609,0,0,0 +3946,4856,8783,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-979.4892801712534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46,15.94,6,1,0,0,13,1,1,1206,0,0,0 +3947,4857,8784,8785,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.133815216737204,7.215074321448861,1,0,-9,48,0,3,-56.74820521808316,0,0,0,66,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.498001359807247,6.89056003689664,0,0,51.81,46.52,6,1,0,0,6,3,1,1005,0,0,0 +3947,4857,8785,8784,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,7.462933735563658,7.300113964611056,1,0,-9,48,0,-3,-86.34015471999459,0,0,0,69,2,3,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.788667747454684,7.489222781447508,0,0,42.78,54.5,4,1,0,0,6,3,1,1005,0,0,0 +3947,4858,8786,-9,8785,8784,3,1,0,38,3,0,0,0,1,-9,2,1,0,2,8.759260899363522,8.666080196606192,0,3,0,0,0,-9,0,-1023.017024231586,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,1,40,50,15,1,1,-9,1,13.55335684898154,13.55335684898154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.72,31.97,6,1,0,0,6,5,1,383,0,0,0 +3948,4859,8787,8788,-9,-9,2,1,0,62,1,0,2,0,3,-9,4,3,0,3,0,7.614405501064316,7.939588957137509,2,0,-9,45,0,-4,-76.24303707782639,0,0,0,66,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.334300403807006,7.858119419998874,0,0,41.41,44.31,6,3,0,0,8,4,1,551.5,0,0,0 +3948,4859,8788,8787,-9,-9,1,1,1,66,1,0,2,0,1,-9,4,3,0,3,0,8.12514157603702,8.254713356752452,2,0,-9,45,0,4,31.96094212051385,0,0,0,62,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.436309740692349,8.563474510675045,0,0,55.51,40.83,7,3,0,0,8,4,1,551.5,0,0,0 +3948,4860,8789,8790,-9,-9,4,1,0,36,1,0,2,0,2,-9,2,1,0,4,8.465125881360548,8.556307554112033,0,2,0,-9,13,0,-1,-76.55410171387334,0,0,1,37,2,4,1,3,3,2019,1,3,6,0,30,26,15,1,0,1,0,20.18479073285869,20.18479073285869,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,8,4,1,911.75,0,0,0 +3948,4860,8790,8789,8787,8788,3,1,1,37,1,0,2,0,2,-9,1,1,0,4,8.146535622042004,8.397023953671342,0,2,0,-9,13,0,1,13.88358800916505,0,0,0,36,2,4,1,3,2,2019,1,4,5,0,25,28,15,1,0,1,0,18.93643309407949,18.93643309407949,0,0,0,0,0,0,0,1,1,0,8.673469988978139,0,0,0,57.16,56.15,6,3,0,0,8,4,1,911.75,0,0,0 +3948,4860,8791,-9,8789,8790,6,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.5393519406468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,911.75,0,0,0 +3948,4860,8792,-9,8789,8790,7,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.00242301665,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,4,1,911.75,0,0,0 +3948,4861,8793,-9,8787,8788,5,1,0,41,2,0,2,0,1,-9,2,1,0,4,8.833713312323662,8.662374091756032,0,3,0,0,0,-9,0,-1064.180896117615,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,41,40,15,1,0,-9,1,20.31403310647705,20.31403310647705,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,3,0,0,8,5,1,439,0,0,0 +3949,4862,8794,8795,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,6.745004271201266,7.160388858237162,0,1,0,-9,40,0,0,-68.47197115173144,0,0,0,61,3,5,1,2,2,2019,1,1,6,0,25,20,15,1,0,1,0,4.401709800239618,4.401709800239618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,13,4,1,1166,0,0,0 +3949,4862,8795,8794,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,5,7.511655045731875,8.097646614253787,6.701066498659865,1,0,-9,9,0,0,235.7279075275293,0,0,0,61,2,4,1,-9,-9,2019,1,2,6,0,22,23,15,1,0,1,0,11.80685752280976,11.80685752280976,0,0,0,0,0,0,0,0,0,0,0,7.316327658605686,0,0,58.16,55.87,6,1,0,0,13,4,1,1166,0,0,0 +3950,4863,8796,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,2,7.505225657220832,7.801399442460588,6.460072061587815,3,0,0,0,-9,0,-994.659800514474,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,30,32,15,1,3,-9,0,7.429973368529044,7.429973368529044,0,0,0,0,0,0,0,0,0,0,0,6.827531473181998,0,0,34.3,48.18,4,1,0,0,6,4,1,655,0,0,0 +3951,4864,8797,-9,8800,8798,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-913.9015927894061,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,1,0,0,11,5,0,1156.75,0,0,0 +3951,4864,8798,8800,-9,-9,2,1,1,50,1,0,2,0,1,-9,1,1,0,5,9.862947752094014,9.733065722848719,0,2,0,-9,2,0,4,11.23892322548176,0,0,0,46,1,4,1,2,2,2019,1,1,6,0,45,32,15,1,0,1,0,41.1253619940146,41.1253619940146,0,0,0,0,0,0,0,0,0,0,7.414343122158964,0,0,0,55.2,57.22,6,1,0,0,11,5,0,1156.75,0,0,0 +3951,4864,8799,-9,8800,8798,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.0096050043624,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,11,5,0,1156.75,0,0,0 +3951,4864,8800,8798,-9,-9,1,1,0,46,1,0,2,0,1,-9,1,1,0,4,8.440649528954813,8.577147484365968,0,2,0,-9,2,0,-4,62.68385777154622,0,0,0,50,1,5,1,2,2,2019,1,2,14,3,60,50,15,1,3,1,0,11.29178014836168,11.29178014836168,0,0,0,0,0,0,0,0,0,0,7.555632735231689,0,0,0,47.05,56.66,5,1,0,0,11,5,0,1156.75,0,0,0 +3952,4865,8801,8802,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,7.955133595214518,7.978916819479144,1,0,-9,10,0,1,24.78025521009013,0,0,0,70,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.931625586215134,7.24518144143543,0,0,53.33,45.84,6,1,0,0,7,3,1,636.5,0,0,0 +3952,4865,8802,8801,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,6.966969273083377,7.044565602882747,1,0,-9,10,0,-1,-47.0345187314081,0,0,0,71,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.715646911611244,6.944287378748313,0,0,58.72,43.42,6,1,0,0,7,3,1,636.5,0,0,0 +3953,4866,8803,8804,-9,-9,2,1,0,51,1,0,0,0,3,-9,6,3,0,1,0,0,0,1,0,-9,8,0,-2,0,0,0,0,53,3,2,3,3,3,2019,4,1,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88262866289544,1,39.64,26.59,3,1,0,0,6,1,0,814.5,0,0,0 +3953,4866,8804,8803,-9,-9,1,1,1,53,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,8,0,2,0,0,0,0,51,3,1,3,-9,-9,2019,4,2,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.09,44.68,5,1,0,0,6,1,0,814.5,0,0,0 +3954,4867,8805,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1055.21986487498,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.17,26.71,1,1,0,1,6,1,0,1183,0,0,0 +3954,4868,8806,-9,8805,-9,2,1,1,33,2,0,0,0,2,-9,97,3,0,1,0,0,0,3,0,0,0,-9,0,-991.8448286770063,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.06315908684714,3,40.25,25.09,4,1,0,1,6,1,0,250,0,0,0 +3955,4869,8807,8808,-9,-9,1,1,1,59,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,37,0,1,0,0,0,0,58,3,1,3,3,3,2019,4,2,25,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.9359418972054,1,51.42,26.52,5,1,0,0,2,1,1,988,0,0,0 +3955,4869,8808,8807,-9,-9,2,1,0,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,37,0,-1,0,0,0,0,59,3,2,3,3,3,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.24,29.51,2,1,0,0,2,1,1,988,0,0,0 +3956,4870,8809,8810,-9,-9,1,1,1,63,1,0,0,0,3,-9,3,3,0,2,0,6.02342547115583,6.321257812829077,1,0,-9,22,0,21,25.06271371721234,0,0,0,42,2,3,1,3,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.036275789364267,13.88858903800756,3,37.6,43.76,5,1,1,0,4,3,0,459,0,0,0 +3956,4870,8810,8809,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,3,7.98667795477837,8.112379509167484,4.847597845700964,1,0,-9,8,0,-21,-63.5915676252641,0,0,1,63,3,2,3,-9,-9,2019,2,1,12,0,39,39,15,1,0,3,0,8.196560980809815,8.196560980809815,0,0,0,0,0,0,0,0,0,0,0,5.087439782462224,2.061513680307876,3,39.44,57.55,3,1,0,1,4,3,0,459,0,0,0 +3957,4871,8811,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,2,0,7.369721615911351,7.599514328667381,3,0,0,0,-9,0,-985.5175707290837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.30980083219093,7.154239594649305,0,0,58.79,38.08,6,2,0,0,9,3,1,348,0,0,0 +3958,4872,8812,8814,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,3,7.807491172871742,7.909580245484737,0,2,0,-9,11,0,8,124.4386638102612,0,0,0,34,2,3,1,2,2,2019,1,2,8,0,39,40,15,1,0,1,0,7.737961359184674,7.737961359184674,0,0,0,0,0,0,0,1,1,0,2.087977405860483,0,0,0,51.07,42.63,5,1,0,1,4,3,1,428.3333333333333,0,0,0 +3958,4872,8813,-9,8814,8812,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1126.083291099011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,428.3333333333333,0,0,0 +3958,4872,8814,8812,-9,-9,2,1,0,34,1,0,1,0,2,-9,2,1,0,3,7.120421927194627,7.344378975865198,0,2,0,-9,9,0,-8,-69.51747703491084,0,0,1,42,2,3,1,2,3,2019,1,1,7,0,21,28,15,1,0,1,0,9.020567821419572,9.020567821419572,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,2,1,0,0,4,3,1,428.3333333333333,0,0,0 +3959,4873,8815,-9,-9,-9,3,1,1,21,2,0,1,1,2,0,7,2,0,4,7.617088961615632,8.093811518595377,0,3,0,0,0,-9,0,-959.9873679022522,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,1,42,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,4,3,0,0,10,4,0,1421,0,0,0 +3960,4874,8816,-9,8819,8817,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.792096479965,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,5,1,1472.75,0,0,0 +3960,4874,8817,8819,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,4,8.82263823749911,9.199610145489297,0,2,0,-9,10,0,-1,-41.8240886664417,0,0,0,39,1,4,1,2,3,2019,1,2,7,0,60,40,15,1,0,1,0,17.85358128921612,17.85358128921612,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1472.75,0,0,0 +3960,4874,8818,-9,8819,8817,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.88254051491,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,5,1,1472.75,0,0,0 +3960,4874,8819,8817,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,4,7.783594177064082,7.716061162162674,0,2,0,-9,10,0,1,27.83674505023905,0,0,1,38,1,4,1,2,1,2019,1,1,10,0,50,32,15,1,0,1,0,7.073879598899309,7.073879598899309,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,6,1,0,0,10,5,1,1472.75,0,0,0 +3961,4875,8820,-9,8821,8822,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1167.889652681013,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,1158,0,0,0 +3961,4875,8821,8822,-9,-9,1,1,0,32,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,2,0,-17,24.27155998392277,0,0,1,49,2,3,1,2,2,2019,3,4,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,1,0,8,2,0,1158,0,0,0 +3961,4875,8822,8821,-9,-9,4,1,1,49,1,0,2,0,2,-9,2,1,0,3,7.475869594080265,7.505627819769707,0,2,0,-9,2,0,17,-80.01291258656214,0,0,0,32,2,4,3,-9,-9,2019,2,1,10,1,24,30,15,1,1,3,0,9.837860171102463,9.837860171102463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.14,43.02,6,3,0,1,8,2,0,1158,0,0,0 +3961,4875,8823,-9,8821,8822,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.2631615983604,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,1158,0,0,0 +3962,4876,8824,8825,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,2,0,7.629573075267108,7.330002881629038,1,0,-9,39,0,0,-29.93230566609407,0,0,0,61,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.826928984677874,7.502119368639015,0,0,56.28,47.53,6,1,0,0,13,4,1,300,0,0,0 +3962,4876,8825,8824,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,7.944134168740232,8.116158724866036,1,0,-9,39,0,0,-65.77406040884075,0,0,0,61,2,2,3,2,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.110642596579407,15.95816321183606,3,56.1,49.93,5,1,0,0,13,4,1,300,0,0,0 +3963,4877,8826,8827,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,2,7.69102107939473,7.853596201356446,0,2,0,-9,9,0,-2,-38.83859504449271,0,0,1,45,2,3,1,-9,-9,2019,1,1,12,0,26,20,15,1,0,1,0,11.5594017388808,11.5594017388808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,6,1,0,0,9,5,1,681.5,0,0,0 +3963,4877,8827,8826,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,3,9.4344448495078,8.940761271623936,0,2,0,-9,9,0,2,99.25154120249037,0,0,0,43,2,2,1,3,2,2019,1,2,9,0,38,40,15,1,0,1,0,27.73338476371521,27.73338476371521,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,9,5,1,681.5,0,0,0 +3964,4878,8828,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,7.689186846991867,7.332466628587019,3,0,-9,0,-9,0,-845.7120214554528,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.79548663195189,7.41775624971328,0,0,57.33,53.46,6,1,0,0,12,3,1,1142,0,0,0 +3965,4879,8829,-9,-9,-9,1,1,1,70,2,0,0,0,1,-9,1,1,0,5,8.067802844107037,8.054704526860064,0,3,0,0,0,-9,0,-1012.367322392029,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,60,70,15,1,0,-9,0,6.968488074583735,6.968488074583735,0,0,0,0,0,0,0,1,1,0,2.494099282181207,0,0,0,60.02,56.42,7,1,0,0,2,4,0,1719,0,0,0 +3966,4880,8830,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,2,0,7.374498893309354,7.480565259688293,3,0,0,0,-9,0,-1028.962396559866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,7.632037034190278,0,0,0,0,26.26935945527611,1,1,0,3.126552272101442,7.393783737436161,0,0,60.89,31.71,6,1,0,0,12,3,1,531,0,0,0 +3967,4881,8831,8832,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,2,8.377610236907026,8.240945603013412,0,1,0,-9,9,0,-12,75.27732907405193,0,0,1,43,2,3,1,2,2,2019,1,2,9,0,42,40,15,1,0,1,0,12.31456908171294,12.31456908171294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.82,52,5,1,0,0,2,5,1,266,0,0,0 +3967,4881,8832,8831,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,3,9.131521393945146,9.186997554953315,0,1,0,-9,9,0,12,-6.482120539302667,0,0,0,31,1,2,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,20.97040906506034,20.97040906506034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,6,1,0,0,2,5,1,266,0,0,0 +3968,4882,8833,8834,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.222190784513799,8.208580732214957,0,2,0,-9,7,0,0,5.438644699524821,0,0,0,50,1,2,1,1,1,2019,1,1,7,0,30,31,15,1,0,1,0,16.21299697420518,16.21299697420518,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,13,4,1,345,0,0,0 +3968,4882,8834,8833,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,2,8.480108762272392,8.505336116411677,0,2,0,-9,7,0,0,-52.9693200818982,0,0,0,50,1,4,1,2,3,2019,1,2,10,1,55,60,15,1,1,1,0,8.432611699922077,8.432611699922077,0,0,0,0,0,0,0,1,1,0,.2519392022271348,0,0,0,42.43,52.37,5,1,0,0,13,4,1,345,0,0,0 +3968,4882,8835,-9,8833,8834,4,1,1,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-999.5615982177784,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,1,0,0,13,4,1,345,0,0,0 +3968,4883,8836,-9,8833,8834,3,1,1,21,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-906.8215131174561,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.06,45.94,5,1,0,0,13,1,1,578,0,0,0 +3969,4884,8837,8838,-9,-9,1,1,0,63,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,10,0,0,123.1265517767059,0,0,0,72,3,2,3,3,3,2019,4,2,27,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.89,27.8,4,1,0,0,11,2,0,877.5,0,0,0 +3969,4884,8838,8837,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,6.399978876495721,6.261646894451797,1,0,-9,10,0,9,-17.11459862198898,0,0,0,63,2,1,3,3,3,2019,4,1,5,0,0,0,15,4,0,3,0,0,0,1,0,0,0,4.34141098497742,0,0,1,1,0,0,6.814751289172769,70.62244515249061,1,60.27,25.33,5,1,0,0,11,2,0,877.5,0,0,0 +3970,4885,8839,8841,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,3,8.719316268930262,8.438151072765603,0,2,0,-9,4,0,6,-23.58432545542694,0,0,0,47,1,3,1,3,3,2019,1,2,8,0,45,45,15,1,0,1,0,12.97879515041617,12.97879515041617,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.71,52.35,3,1,0,1,13,5,1,1128.333333333333,0,0,0 +3970,4885,8840,-9,8841,8839,5,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,5.390036800834334,5.565927560179855,2,0,0,0,-9,0,-1030.457849873231,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.447355862834026,0,0,0,57.16,56.15,6,1,0,0,13,5,1,1128.333333333333,0,0,0 +3970,4885,8841,8839,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,3,8.446573831001876,8.633008741797914,0,2,0,-9,4,0,-6,71.25135633690185,0,0,0,53,2,3,1,2,3,2019,1,1,10,0,36,38,15,1,0,1,0,21.05939166927554,21.05939166927554,0,0,0,0,0,0,0,1,1,0,0,0,9.160990819341684,3,50.65,53.71,6,1,0,0,13,5,1,1128.333333333333,0,0,0 +3970,4886,8842,-9,8841,8839,3,1,1,21,2,0,1,0,2,0,7,2,0,4,6.760473745509909,6.918508048228373,0,3,0,0,0,-9,0,-953.5128788783334,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,13,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.4,56.19,6,1,0,0,13,2,1,886,0,0,0 +3970,4887,8843,-9,8841,8839,4,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-932.4986991582672,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,14,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.78209416266644,0,0,0,38.58,56.45,6,1,0,0,13,1,1,125,0,0,0 +3971,4888,8844,8845,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,5,8.818543967887297,8.819806676943656,0,1,0,-9,9,0,0,50.286969872639,0,0,1,36,2,3,1,1,1,2019,1,1,10,0,48,53,15,1,0,1,0,15.03730736474456,15.03730736474456,0,0,0,0,0,0,0,0,0,0,3.699990671785546,0,0,0,52.38,55.95,6,1,0,0,4,5,1,758.5,0,0,0 +3971,4888,8845,8844,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,3,8.762759786367903,8.986756330829667,0,1,0,-9,10,0,0,118.2044369727737,0,0,0,36,1,5,1,2,2,2019,1,2,23,9,50,60,15,1,9,1,0,11.67008710337021,11.67008710337021,0,0,0,0,0,0,0,0,0,0,4.030938272932137,0,0,0,32.78,62.21,6,1,0,0,4,5,1,758.5,0,0,0 +3972,4889,8846,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,4,7.80645002085478,7.782979570088743,0,3,0,0,0,-9,0,-1075.263798589658,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,41,33,15,1,0,-9,0,5.077332218222372,5.077332218222372,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.78,39.89,5,1,0,0,12,3,0,1172,0,0,0 +3973,4890,8847,8848,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,4,7.79292903344597,7.79367691237874,0,2,0,-9,27,0,1,24.96488255296264,0,0,0,49,2,4,1,3,3,2019,1,2,7,0,41,25,15,1,0,1,0,7.359895869030445,7.359895869030445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.44,45.04,7,4,0,1,7,3,0,244.6666666666667,0,0,0 +3973,4890,8848,8847,-9,-9,2,1,0,49,1,0,2,0,2,-9,2,1,0,4,8.074481568198857,7.817047154532801,0,2,0,-9,27,0,-1,32.40339767799645,0,0,0,50,2,4,1,2,1,2019,1,1,6,0,39,20,15,1,0,1,0,8.354829162672543,8.354829162672543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,4,0,0,7,3,0,244.6666666666667,0,0,0 +3973,4890,8849,-9,8848,8847,5,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.806047676658,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,4,0,0,7,3,0,244.6666666666667,0,0,0 +3973,4891,8850,-9,8848,8847,3,1,1,23,2,0,2,0,1,0,7,2,0,5,0,5.303064397671835,5.040682806336369,3,0,0,0,-9,0,-1103.581743724843,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,1,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.098135115701899,0,0,0,62.39,56.71,7,4,0,0,7,2,0,665,0,0,0 +3973,4892,8851,-9,8848,8847,4,1,0,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1058.455222940165,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,4,0,0,7,3,0,499,0,0,0 +3974,4893,8852,8853,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,0,6.241787570056465,5.644976839573233,1,0,-9,8,0,3,9.4729099540072,0,0,0,55,2,2,3,2,3,2019,4,1,25,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.752727990155627,5.852083412359621,0,1,39.78,30.97,3,1,0,0,12,2,0,993,0,0,0 +3974,4893,8853,8852,-9,-9,1,1,0,55,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,8,0,-3,27.65410169972913,0,0,0,58,2,1,3,2,3,2019,4,2,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,104.2780053752617,1,44.9,25.52,2,1,0,0,12,2,0,993,0,0,0 +3975,4894,8854,8855,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,5.439240803563071,5.864176056799618,1,0,-9,41,0,2,-7.655152291736378,0,0,0,64,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.607384319982114,8.357780626339389,1,45.16,51.93,6,1,0,0,12,3,1,562.5,0,0,0 +3975,4894,8855,8854,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,2,0,8.235332783262473,8.250246367911526,1,0,-9,6,0,-2,66.85370247001963,0,0,0,66,2,4,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.368578885726714,0,0,50.21,45.02,6,1,0,0,12,3,1,562.5,0,0,0 +3976,4895,8856,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,4,0,5.791829333792833,5.896583042110867,3,0,0,0,-9,0,-997.3882790863512,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.836495623947538,9.811358501334929,3,47.3,47.36,2,1,0,0,5,2,1,96,0,0,0 +3977,4896,8857,-9,-9,-9,1,1,0,42,3,0,2,0,1,-9,2,1,0,4,8.314216797450367,8.914488320492342,7.291362261129444,4,0,0,0,-9,0,-944.3587087852977,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,38,37,15,1,0,-9,0,15.28289767657717,15.28289767657717,0,0,0,0,0,0,0,1,1,0,7.65274774595735,0,0,0,51.49,57.57,6,3,0,0,9,4,1,1669,0,0,0 +3978,4897,8858,8859,-9,-9,1,1,0,55,1,0,0,0,2,-9,4,3,0,3,0,8.427083449094319,8.660697368629357,1,0,-9,12,0,-2,-13.78638088106734,0,0,0,57,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.867778630855838,11.28778253842224,3,60.44,46.58,6,1,0,0,7,4,1,1039.5,0,0,0 +3978,4897,8859,8858,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,12,0,2,-79.32983050641418,0,0,0,55,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.006960637334146,0,3.049176547160619,3,57.16,56.15,6,1,0,0,7,4,1,1039.5,0,0,0 +3979,4898,8860,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,4,7.492983358173442,7.472517207973994,3.366216083246814,3,0,0,0,-9,0,-982.0617875781188,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,30,35,15,1,1,-9,0,6.170091612656551,6.170091612656551,0,0,0,0,0,0,0,1,1,0,2.96874966343618,3.293460853440877,0,0,54.79,55.86,6,1,0,0,9,3,1,539,0,0,0 +3980,4899,8861,-9,-9,-9,1,1,0,51,2,0,1,0,2,-9,2,1,0,4,8.144481325983365,8.090509714972089,0,4,0,-9,0,-9,0,-1028.011354876517,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,37,0,15,1,2,-9,0,11.63774809527515,11.63774809527515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,60.33,2,1,0,0,8,3,0,936,0,0,0 +3981,4900,8862,-9,8864,8865,4,1,0,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-900.5824914580211,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,1,3,0,291.6,0,0,0 +3981,4900,8863,-9,8864,8865,5,1,1,10,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1050.233525480816,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,1,3,0,291.6,0,0,0 +3981,4900,8864,8865,-9,-9,2,1,0,43,1,0,4,0,2,-9,6,3,0,2,0,0,0,2,0,-9,9,0,-2,-33.03127042384891,0,0,1,45,1,4,1,2,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,48.86,4,1,0,0,1,3,0,291.6,0,0,0 +3981,4900,8865,8864,-9,-9,1,1,1,45,1,0,4,0,1,-9,2,1,0,4,8.756872153636865,8.585784536542482,0,2,0,-9,25,0,2,-46.00836076742036,0,0,0,43,2,2,3,2,2,2019,2,2,10,0,46,45,15,1,0,3,0,14.81237275862271,14.81237275862271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,58.08,2,1,0,0,1,3,0,291.6,0,0,0 +3981,4900,8866,-9,8864,8865,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.652924773893,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,3,0,291.6,0,0,0 +3982,4901,8867,-9,-9,-9,1,1,0,49,2,0,1,0,1,-9,2,1,0,4,7.980237575718633,8.026102451428045,0,4,0,-9,0,-9,0,-1118.831094346581,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,35,40,15,1,0,-9,0,11.47925905648661,11.47925905648661,0,0,0,0,0,0,0,1,1,0,0,0,119.661609533081,3,47.01,58,5,4,0,0,8,3,0,464,0,0,0 +3982,4902,8868,-9,8867,-9,2,1,1,21,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1043.913929793894,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,5,4,0,0,8,1,0,943,0,0,0 +3982,4903,8869,-9,8867,-9,3,1,1,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,-9,0,0,0,-1011.500991158324,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.661993507549183,3,48.7,56.22,6,4,0,0,8,3,0,2773,0,0,0 +3983,4904,8870,-9,8871,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-886.8521890881447,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,1,0,434.5,0,0,0 +3983,4904,8871,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1165.500123243757,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,29,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.12118096923701,3,38.79,39.29,1,1,1,1,4,1,0,434.5,0,0,0 +3984,4905,8872,8873,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,5,0,6.360825349918884,6.722804229493826,1,0,-9,51,0,-5,-38.16239257476572,0,0,0,74,1,2,3,-9,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.177522010671849,6.32369385451722,0,0,54.1,59.11,7,1,0,0,9,3,1,338,0,0,0 +3984,4905,8873,8872,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,2,0,7.634977888002453,8.208275259706314,1,0,-9,51,0,5,-51.01238982768622,0,0,0,69,2,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.997692792439177,7.692656586686977,0,0,54.96,42.64,5,1,0,0,9,3,1,338,0,0,0 +3985,4906,8874,8875,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,53,0,-2,38.85220456075525,0,0,0,72,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.673015505643231,0,0,0,58.89,48.6,6,1,0,0,2,3,1,365,0,0,0 +3985,4906,8875,8874,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,8.075944880407063,8.017137256114211,1,0,-9,53,0,2,9.364945958108954,0,0,0,70,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.968140873887482,8.036525873190225,0,0,58.32,50.22,6,1,0,0,2,3,1,365,0,0,0 +3986,4907,8876,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,4,3,0,3,7.753386112487757,8.480887562019761,7.634605794976808,3,0,0,0,-9,0,-1060.762092487333,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,15,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.081607159171023,7.587836756516773,0,3,55.54,46.02,5,4,0,0,8,4,1,282,0,0,0 +3987,4908,8877,-9,-9,-9,1,1,0,52,2,0,0,0,3,-9,2,1,0,2,7.820010480875912,8.019290518908743,0,3,0,0,0,-9,0,-1074.877351645512,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,50,44,15,1,5,-9,0,5.985416078673675,5.985416078673675,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.67,53.03,3,1,0,0,5,4,0,397,0,0,0 +3988,4909,8878,-9,8883,8880,3,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.3267062574649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,2,1,310.5,0,0,0 +3988,4909,8879,-9,8883,8880,6,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.186406821211,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,310.5,0,0,0 +3988,4909,8880,8883,-9,-9,2,1,1,36,1,0,4,0,2,-9,2,1,0,5,8.263741248916759,8.214190314724283,0,2,0,-9,7,0,3,-116.689821502729,0,0,0,33,2,4,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,7.6008365607927,7.6008365607927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.18,48.05,6,1,0,0,12,2,1,310.5,0,0,0 +3988,4909,8881,-9,8883,8880,5,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.226037404031,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,310.5,0,0,0 +3988,4909,8882,-9,8883,8880,4,1,1,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.6876534070317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,1,310.5,0,0,0 +3988,4909,8883,8880,-9,-9,1,1,0,33,1,0,4,0,2,-9,2,1,0,4,5.891781936553643,6.081647339260871,0,2,0,-9,7,0,-3,-54.26187583075178,0,0,1,36,2,5,1,2,2,2019,1,2,7,0,8,0,15,1,0,1,0,5.518378718583472,5.518378718583472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,12,2,1,310.5,0,0,0 +3989,4910,8884,-9,-9,-9,1,1,0,80,2,0,0,0,3,-9,4,3,0,1,0,3.194165112492503,3.410948583447389,3,0,0,0,-9,0,-1087.375243811803,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,3.174258030713675,0,1,1,0,3.685271387644235,3.753809900276584,0,0,41.12,23.33,4,1,0,0,9,2,1,510,0,0,0 +3990,4911,8885,8886,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,2,7.352855373091913,7.363924760431606,0,1,0,-9,9,0,-4,77.65514966762593,0,0,0,50,2,3,1,-9,-9,2019,1,2,24,12,25,26,15,1,12,1,0,7.847507739262455,7.847507739262455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.02,37.37,4,1,0,0,4,3,1,478,0,0,0 +3990,4911,8886,8885,-9,-9,2,1,1,50,1,0,0,0,2,-9,1,1,0,3,7.70998344784869,7.928335455411769,0,1,0,-9,9,0,4,31.46447248015286,0,0,0,46,2,2,1,3,2,2019,1,1,17,4,0,42,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,49.31,5,1,0,0,4,3,1,478,0,0,0 +3990,4912,8887,-9,8885,8886,3,1,1,25,2,0,0,0,2,-9,2,1,0,3,8.226930655590204,8.400705570299406,0,3,0,0,0,-9,0,-1091.914335421144,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,47,40,15,1,3,-9,1,9.336314231295379,9.336314231295379,0,0,0,0,0,0,0,0,0,0,.0737154086060458,0,0,0,29.57,58.13,4,1,0,0,4,4,1,106,0,0,0 +3991,4913,8888,8891,-9,-9,1,1,0,35,1,1,2,0,2,-9,1,1,0,2,0,0,0,2,0,-9,5,0,-1,0,0,0,1,36,2,1,3,-9,-9,2019,2,2,17,5,10,51,15,1,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.69,31.65,3,1,0,0,6,1,1,336.5,0,0,0 +3991,4913,8889,-9,8888,8891,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.3112791140708,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,1,1,336.5,0,0,0 +3991,4913,8890,-9,8888,8891,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.2333053643113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,1,1,336.5,0,0,0 +3991,4913,8891,8888,-9,-9,2,1,1,36,1,1,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,5,0,1,0,0,0,0,35,2,2,1,-9,-9,2019,3,1,18,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.77,25.85,2,1,0,0,6,1,1,336.5,0,0,0 +3992,4914,8892,8893,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,4,7.819604137745316,8.021252964002857,0,1,0,-9,42,0,3,1.992790408999247,0,0,0,60,2,3,1,3,2,2019,1,1,8,0,50,45,15,1,0,1,0,7.90958254976421,7.90958254976421,0,0,0,0,0,0,0,0,0,0,1.056784917285057,0,0,0,52.08,55.93,5,1,0,0,5,3,0,475,0,0,0 +3992,4914,8893,8892,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,3,6.352546767451632,6.674241453873938,0,1,0,-9,42,0,-3,-4.187024951272488,0,0,0,63,2,4,1,3,2,2019,1,2,8,0,5,10,15,1,0,1,0,13.39529384768561,13.39529384768561,0,0,0,0,0,0,0,0,0,0,4.906715419488071,0,0,0,55.96,49.93,4,1,0,1,5,3,0,475,0,0,0 +3992,4915,8894,-9,8893,8892,3,1,1,24,2,0,0,0,3,-9,2,1,0,3,8.050238383123567,8.012604856958665,0,3,0,0,0,-9,0,-1051.595249331162,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,40,40,15,1,2,-9,1,7.85813998591537,7.85813998591537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,5,1,0,0,5,4,0,684,0,0,0 +3992,4916,8895,-9,8893,8892,4,1,0,22,2,0,0,0,2,-9,2,1,0,2,7.097712715880182,7.356538811145457,0,3,0,0,0,-9,0,-895.5910918127745,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,32,34,15,1,3,-9,1,4.24762136568744,4.24762136568744,0,0,0,0,0,0,0,0,0,0,.5432072242728654,0,0,0,31.77,56.25,6,1,0,1,5,2,0,116,0,0,0 +3993,4917,8896,-9,-9,-9,1,1,0,70,2,0,0,0,1,-9,4,3,0,2,0,7.802336717162309,7.999999733989854,3,0,0,0,-9,0,-895.3893212959986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.794318010529362,8.043895496377045,0,0,45.06,36.24,6,2,0,0,2,3,1,251,0,0,0 +3994,4918,8897,-9,-9,-9,1,1,0,40,3,0,0,0,1,-9,2,1,0,4,7.711310009252731,7.781539324276835,0,3,0,0,0,-9,0,-875.5094157144937,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,23,0,15,1,0,-9,0,8.195062571604945,8.195062571604945,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,0,672,0,0,0 +3994,4918,8898,-9,8897,-9,2,1,1,17,2,0,0,0,2,1,2,3,0,4,5.944779205902397,5.871239088876778,0,3,0,0,0,-9,0,-952.1360073031758,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,6,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.51,52.44,5,1,0,0,13,3,0,672,0,0,0 +3995,4919,8899,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,3,0,7.862905861072782,7.861538232750608,3,0,0,0,-9,0,-895.3247946770178,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.912958708253437,0,0,52.69,43.18,6,3,0,0,9,3,1,588,0,0,0 +3996,4920,8900,-9,-9,-9,1,1,0,34,3,0,2,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-964.5032165081255,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.83,21.24,5,3,0,1,8,1,0,1453.5,0,0,0 +3996,4920,8901,-9,8900,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-969.3432572738177,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,1,0,1453.5,0,0,0 +3997,4921,8902,8903,-9,-9,1,1,0,21,1,0,0,0,2,0,7,2,0,4,6.499575061072989,6.583700107436567,0,1,0,-9,2,0,0,15.10964968854222,-9,1,1,21,2,4,1,-9,-9,2019,3,2,13,4,12,0,15,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28,65.78,6,1,0,1,5,3,0,1118.5,0,0,0 +3997,4921,8903,8902,-9,-9,2,1,1,21,1,0,0,0,2,-9,2,1,0,4,7.857086413809586,7.535162865397806,0,1,0,-9,2,0,0,-26.36041061472033,0,1,0,21,2,4,2,-9,-9,2019,2,1,4,0,41,40,15,1,0,2,0,5.560911031651058,5.560911031651058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,1,0,0,5,3,0,1118.5,0,0,0 +3998,4922,8904,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-884.3473981653606,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.086891478104492,0,0,0,54.1,59.11,6,1,0,0,5,1,1,2264,0,0,0 +3999,4923,8905,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,5,8.785009270594626,8.503068559552935,0,3,0,0,0,-9,0,-1045.361054083284,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,41,0,15,1,0,-9,0,14.67206935805465,14.67206935805465,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,6,1,0,0,11,5,0,735,0,0,0 +4000,4924,8906,8907,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,54,0,-2,133.4092346438007,0,0,0,75,2,3,3,3,3,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.11,16.75,4,1,0,0,5,2,1,689,0,0,0 +4000,4924,8907,8906,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.493488086362125,6.574778574620277,1,0,-9,54,0,2,22.89156049277783,0,0,0,73,3,1,3,2,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.513789856584551,6.280103973719246,119.0591833399333,1,48.45,49.46,5,1,0,0,5,2,1,689,0,0,0 +4001,4925,8908,8909,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.47740849794102,7.708737042585086,0,1,0,-9,8,0,-2,-63.55958888163108,0,0,0,58,2,3,1,3,3,2019,1,1,12,0,30,30,15,1,2,1,0,7.048560490376122,7.048560490376122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,5,1,0,0,13,4,1,466,0,0,0 +4001,4925,8909,8908,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,3,8.353164143123987,8.384282949442627,3.664295037813071,1,0,-9,8,0,2,-171.9507449102554,0,0,0,56,2,3,1,3,2,2019,1,2,10,0,35,35,15,1,1,1,0,15.03734317243619,15.03734317243619,0,0,0,0,0,0,0,0,0,0,3.291549323802772,3.81543276417034,0,0,50,49,5,1,0,0,13,4,1,466,0,0,0 +4001,4926,8910,-9,8908,8909,3,1,1,22,2,0,0,0,1,1,2,1,0,4,6.548525873955303,6.818739411828943,0,3,0,0,0,-9,0,-1149.214356473282,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,9,0,15,1,0,-9,1,10.15067033646137,10.15067033646137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,13,2,1,304,0,0,0 +4002,4927,8911,8912,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,3,0,0,-1.293036717808518,0,0,0,70,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.304301508891404,0,0,0,57.16,56.15,7,1,0,0,8,4,1,2310.5,0,0,0 +4002,4927,8912,8911,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.447371282424337,8.682626891077089,1,0,-9,3,0,9,-2.929186341105638,0,0,0,61,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.890840503537824,8.798172518955889,0,0,59.31,49.81,6,1,0,0,8,4,1,2310.5,0,0,0 +4003,4928,8913,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,4,0,7.05684327687581,7.156493198458065,3,0,0,0,-9,0,-1041.499447090212,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.464938847355862,7.029927883355696,0,0,57.16,56.15,1,1,0,0,2,2,0,465,0,0,0 +4004,4929,8914,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1066.228202474419,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.38,32.45,6,1,0,0,9,1,0,354,0,0,0 +4005,4930,8915,-9,8916,-9,2,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-926.7332035352802,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,667,0,0,0 +4005,4930,8916,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,2,1,0,4,7.442416671265605,7.215182004548042,0,4,0,0,0,-9,0,-932.6625715908973,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,25,17,15,1,0,-9,0,5.746837962089859,5.746837962089859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.44,55.46,5,1,0,0,4,2,0,667,0,0,0 +4005,4930,8917,-9,8916,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.6881975272844,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,2,0,667,0,0,0 +4006,4931,8918,8919,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.468002771568646,8.609874446136374,0,1,0,-9,13,0,-3,-148.9215827669071,0,0,0,59,3,5,1,-9,-9,2019,1,2,14,3,45,42,15,1,3,1,0,12.78620978867271,12.78620978867271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.56,27.1,6,1,0,0,2,5,1,1643.5,0,0,0 +4006,4931,8919,8918,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,5,8.1026529640892,7.888311901044263,0,1,0,-9,13,0,3,28.58284064801566,0,0,0,56,2,3,1,-9,-9,2019,1,1,7,2,35,35,15,1,2,1,0,8.264191134816798,8.264191134816798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,55,7,2,0,0,2,5,1,1643.5,0,0,0 +4007,4932,8920,8921,-9,-9,2,1,1,72,1,0,0,0,3,-9,2,1,0,3,7.488349134409237,7.961812282942318,6.620340859076608,1,0,-9,8,0,18,16.10415949233494,0,0,0,54,2,3,1,3,3,2019,1,1,11,1,24,24,15,1,1,1,0,8.735058321876961,8.735058321876961,0,0,0,0,0,0,0,1,1,0,6.482151712560695,7.281049386178108,0,0,54.23,44.07,5,1,0,0,7,4,0,301,0,0,0 +4007,4932,8921,8920,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.998190245229686,8.128488617646058,0,1,0,-9,8,0,-18,18.56642927490822,0,0,0,72,3,3,1,3,3,2019,1,2,7,0,38,38,15,1,0,1,0,6.237027679981519,6.237027679981519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.19,39.41,6,1,0,0,7,4,0,301,0,0,0 +4008,4933,8922,8923,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,5.782103022231673,5.976770323641901,1,0,-9,8,0,10,-52.56921796425308,0,0,0,56,1,4,1,2,2,2019,3,2,22,10,0,24,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.50381790839497,6.310081336183067,0,0,30.72,51.97,3,1,0,0,11,4,1,992.5,0,0,0 +4008,4933,8923,8922,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,8.716708308299168,8.814729797352635,0,1,0,-9,8,0,-10,62.81356557608584,0,0,0,66,1,3,3,3,2,2019,2,1,12,2,56,53,15,1,2,4,0,11.03166947807927,11.03166947807927,0,0,0,0,0,0,0,1,1,0,2.045586053363665,0,0,0,38.45,59.52,3,1,0,0,11,4,1,992.5,0,0,0 +4009,4934,8924,-9,8927,8925,5,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.1706156343779,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,385.2,0,0,0 +4009,4934,8925,8927,-9,-9,1,1,1,52,1,0,3,0,2,-9,2,1,0,4,8.809250709737865,8.567159094499528,0,2,0,-9,8,0,2,70.97169671987122,0,0,0,50,1,4,1,3,3,2019,1,2,7,0,55,45,15,1,0,1,0,13.1534574809451,13.1534574809451,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,56.51,6,1,0,0,9,4,1,385.2,0,0,0 +4009,4934,8926,-9,8927,8925,4,1,0,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-922.7402406109391,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,9,4,1,385.2,0,0,0 +4009,4934,8927,8925,-9,-9,2,1,0,50,1,0,3,0,1,-9,2,1,0,4,8.201169999430823,7.97899704790226,0,2,0,-9,8,0,-2,89.6793200628294,0,0,0,52,2,4,1,2,3,2019,1,1,10,0,30,27,15,1,0,1,0,12.63763828734834,12.63763828734834,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,2,1,0,0,9,4,1,385.2,0,0,0 +4009,4934,8928,-9,8927,8925,3,1,1,16,2,0,3,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1085.694592915861,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.63,55.6,7,1,0,0,9,4,1,385.2,0,0,0 +4010,4935,8929,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-994.5010237272388,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.91,30.22,3,4,0,0,12,2,0,233,0,0,0 +4011,4936,8930,8932,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,3,7.13401485087032,7.024493887891924,0,2,0,-9,6,0,5,-93.34920271318022,0,0,0,46,2,2,1,2,2,2019,1,1,12,1,10,48,15,1,1,1,0,13.16752811274274,13.16752811274274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.84,35.77,3,1,0,1,1,3,1,692,0,0,0 +4011,4936,8931,-9,8932,8930,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1138.178999942359,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,3,1,692,0,0,0 +4011,4936,8932,8930,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,2,7.800277734160916,7.937572870011611,0,2,0,-9,6,0,-5,82.23381186097754,0,0,0,51,1,3,1,2,3,2019,1,2,9,0,38,37,15,1,0,1,0,5.753003173426818,5.753003173426818,0,0,0,0,0,0,0,1,1,0,0,0,0,1,47.02,39.8,5,1,0,0,1,3,1,692,0,0,0 +4011,4936,8933,-9,8932,8930,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.0539963926876,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,3,1,692,0,0,0 +4012,4937,8934,8936,-9,-9,1,1,0,31,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-4,-17.05906241093189,0,0,1,35,2,3,1,2,-9,2019,3,2,12,0,0,21,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.2,58.1,4,1,0,0,13,3,0,806.5,0,0,0 +4012,4937,8935,-9,8934,8936,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.189370692661,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,0,806.5,0,0,0 +4012,4937,8936,8934,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,3,7.790407694086793,7.845658647133146,0,2,0,-9,6,0,4,51.09872439602223,0,0,0,31,2,4,3,-9,-9,2019,2,1,7,0,40,40,15,1,0,3,0,8.357694839927731,8.357694839927731,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,5,1,0,0,13,3,0,806.5,0,0,0 +4012,4937,8937,-9,8934,8936,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-973.7267178732274,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,3,0,806.5,0,0,0 +4013,4938,8938,8939,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,4,0,-1,-104.1036198764615,0,0,0,79,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.983080897604025,0,0,0,53,45,6,1,0,0,2,2,1,559,0,0,0 +4013,4938,8939,8938,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,7.165697336065032,7.415724532267604,1,0,-9,59,0,1,-99.18286508550631,0,0,0,78,2,3,3,-9,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.818258508014996,7.182255190865971,0,0,58.29,37.01,6,1,0,0,2,2,1,559,0,0,0 +4014,4939,8940,8941,-9,-9,1,1,1,63,1,0,2,0,1,-9,1,1,0,4,7.482397701052587,7.735924171587434,0,2,0,-9,7,0,27,-23.07058606651885,0,0,0,36,1,3,1,-9,-9,2019,1,2,4,0,30,35,15,1,0,1,0,9.298592559392871,9.298592559392871,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,49.75,6,4,0,0,8,4,1,987,0,0,0 +4014,4939,8941,8940,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,3,8.739097575958755,8.593325380543561,0,2,0,-9,7,0,-27,-152.2982360198591,0,0,1,63,1,4,1,2,1,2019,1,1,5,0,38,35,15,1,0,1,0,13.73932702224209,13.73932702224209,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.37,40.83,6,4,0,0,8,4,1,987,0,0,0 +4014,4939,8942,-9,8941,8940,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.730630292263,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,4,1,987,0,0,0 +4014,4939,8943,-9,8941,8940,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.1493273621675,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,1,987,0,0,0 +4015,4940,8944,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,6.626610568757513,6.351159456883578,3,0,0,0,-9,0,-956.6564563521432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,1.71321325405495,0,0,1,1,0,0,6.443269178301765,0,0,52,45,6,1,0,0,2,2,1,225,0,0,0 +4016,4941,8945,8946,-9,-9,1,1,0,49,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,35,0,-4,19.17505216713966,0,0,0,53,2,4,1,3,3,2019,3,2,9,0,0,2,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.77525404992309,3,52,54.51,6,1,0,0,9,5,1,462.5,0,0,0 +4016,4941,8946,8945,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.68852567027929,9.050880760580908,7.423000042068361,1,0,-9,6,0,4,-76.79277128259702,-9,0,0,49,2,3,3,3,3,2019,2,1,9,0,40,0,15,1,1,3,0,18.21069260102101,18.21069260102101,0,0,0,0,0,0,0,1,1,0,1.814895307330519,7.795212236480763,0,3,54,54,6,1,0,0,9,5,1,462.5,0,0,0 +4016,4942,8947,-9,8945,8946,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.297019999496811,8.330645273411207,0,3,0,0,0,-9,0,-815.3024406722317,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,11.27728824042513,11.27728824042513,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,9,4,1,6449,0,0,0 +4016,4943,8948,-9,8945,8946,4,1,0,24,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1034.029304852398,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.56,44.16,4,1,1,0,9,1,1,662,0,0,0 +4017,4944,8949,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,3,7.559108376111736,7.82239201769754,0,3,0,0,0,-9,0,-848.5308627103682,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,33,37,15,1,3,-9,0,7.557517575066148,7.557517575066148,0,0,0,0,0,0,0,1,1,0,6.261474676092923,0,0,0,38.95,52.39,4,1,0,0,6,3,1,1378,0,0,0 +4018,4945,8950,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,3,7.374683882691831,7.382836922710129,0,3,0,0,0,-9,0,-921.161288161892,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,8,33,30,15,1,8,-9,0,4.798539851707584,4.798539851707584,0,0,0,0,0,0,0,1,1,0,3.137799033135383,0,0,0,26.89,54.74,2,2,0,1,12,3,0,780,0,0,0 +4019,4946,8951,8955,-9,-9,2,1,0,34,1,0,4,0,2,-9,6,3,0,2,0,0,0,2,0,-9,16,0,-12,6.049757085280312,0,0,1,46,1,2,1,2,2,2019,3,1,14,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,44.65,4,1,0,0,1,2,0,383.6666666666667,0,0,0 +4019,4946,8952,-9,8951,8955,4,1,0,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.318498566066,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,2,0,383.6666666666667,0,0,0 +4019,4946,8953,-9,8951,8955,5,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.9180498803922,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,2,0,383.6666666666667,0,0,0 +4019,4946,8954,-9,8951,8955,3,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.6404340778029,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,2,0,383.6666666666667,0,0,0 +4019,4946,8955,8951,-9,-9,1,1,1,46,1,0,4,0,1,-9,2,1,0,2,7.893740346766166,8.175265940037445,0,2,0,-9,15,0,12,-36.65169642244147,0,0,0,34,2,2,3,1,1,2019,2,2,7,0,37,37,15,1,0,3,0,10.50504596389002,10.50504596389002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.89,51.11,5,1,0,0,1,2,0,383.6666666666667,0,0,0 +4019,4946,8956,-9,8951,8955,6,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.849540387555,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,2,0,383.6666666666667,0,0,0 +4020,4947,8957,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,2,1,0,2,7.381676774037218,8.045259532361548,6.657198146406152,4,0,0,0,-9,0,-914.2282802501197,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,33,32,15,1,0,-9,0,7.424916765447013,7.424916765447013,0,0,0,0,0,0,0,1,1,0,6.914140018293038,0,8.771920387184995,3,65.54000000000001,21.44,7,1,0,0,12,3,0,517,0,0,0 +4020,4947,8958,-9,8957,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1092.405184206446,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.62,52.55,5,1,0,0,12,3,0,517,0,0,0 +4021,4948,8959,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,4,0,5.71475338296806,5.500761051057873,3,0,0,0,-9,0,-1059.393852871819,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.312350077180293,5.60422794239868,0,0,49.35,59.64,7,1,0,0,2,2,1,377,0,0,0 +4022,4949,8960,-9,-9,-9,1,1,1,24,2,0,0,0,1,1,2,1,0,5,0,0,0,3,0,0,0,-9,0,-1059.82172422745,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,2,1,1,873,0,0,0 +4023,4950,8961,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,7.755455366328033,7.554391381909968,3,0,0,0,-9,0,-1092.949671429445,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.085547424040901,7.722460176091085,0,0,58.3,52.91,7,1,0,0,10,3,1,375,0,0,0 +4024,4951,8962,8963,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.598158013834445,6.805142480399748,1,0,-9,8,0,-2,104.2828436529549,0,0,0,78,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.410214746784633,6.50014221838263,0,0,48.45,57.49,5,1,0,0,12,2,1,937,0,0,0 +4024,4951,8963,8962,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,5.173141699304179,4.898729649961759,1,0,-9,8,0,2,116.6512992047044,0,0,0,76,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.107951596494051,5.210178069847131,0,0,54.77,55.87,6,1,0,0,12,2,1,937,0,0,0 +4025,4952,8964,-9,8966,8968,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.7514631022683,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,1,0,869.2,0,0,0 +4025,4952,8965,-9,8966,8968,4,1,0,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-854.4609025724942,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,2,1,0,869.2,0,0,0 +4025,4952,8966,8968,-9,-9,2,1,0,25,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-2,0,0,1,1,27,2,2,3,-9,-9,2019,4,1,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,3,0,0,2,1,0,869.2,0,0,0 +4025,4952,8967,-9,8966,8968,3,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.4699929141476,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,1,0,869.2,0,0,0 +4025,4952,8968,8966,-9,-9,1,1,1,27,1,1,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,3,0,2,0,0,1,0,25,2,4,3,-9,-9,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.545999758798229,0,0,0,47.14,39.47,4,3,1,0,2,1,0,869.2,0,0,0 +4026,4953,8969,8970,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.787330816406367,9.25174635175053,0,1,0,-9,30,0,2,-107.7868972316649,0,0,0,54,2,4,1,2,2,2019,1,1,6,0,45,45,15,1,0,1,0,18.82888413053025,18.82888413053025,0,0,0,0,0,0,0,0,0,0,3.863177041868369,0,0,0,57.16,56.15,6,1,0,0,5,5,1,495,0,0,0 +4026,4953,8970,8969,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,8.112920799033812,7.979336380108387,0,1,0,-9,32,0,-2,-9.69044725495268,0,0,0,56,2,4,1,2,1,2019,1,2,8,0,37,40,15,1,0,1,0,9.305085106569365,9.305085106569365,0,0,0,0,0,0,0,0,0,0,3.306527126668701,0,0,0,53.3,55.06,6,1,0,0,5,5,1,495,0,0,0 +4026,4954,8971,-9,8970,8969,3,1,0,25,2,0,0,0,1,-9,2,1,0,3,7.802940701741629,7.878758827291018,0,3,0,0,0,-9,0,-988.4454568382963,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,45,40,15,1,0,-9,1,7.189565705923142,7.189565705923142,0,0,0,0,0,0,0,0,0,0,3.394768319268369,0,0,0,36.13,54.74,5,1,0,0,5,4,1,793,0,0,0 +4027,4955,8972,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,8,3,1,2,0,6.230533682674952,6.486594591525478,4,0,0,0,-9,0,-1029.981697217955,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,17,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.152036299474335,0,0,0,33.46,29.95,4,3,0,0,9,2,1,611,0,0,0 +4027,4956,8973,-9,8972,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-970.3511579815306,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,127.822118032416,3,40.41,47.55,6,3,0,0,9,2,1,105,0,0,0 +4028,4957,8974,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,2,0,-4,0,0,0,0,-9,-9,-9,-9,2,2,2019,-9,2,25,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,36.19,21.51,2,1,1,1,4,1,0,1646,0,0,0 +4029,4958,8975,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,4,8.300106889942228,8.302825354827112,0,4,0,-9,0,1,0,-986.5551204319128,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,20,20,15,1,0,-9,0,22.30831317918143,22.30831317918143,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,3,1,342.5,0,0,0 +4029,4958,8976,-9,8975,-9,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-951.1609334733831,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,1,342.5,0,0,0 +4030,4959,8977,8978,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,6.390729573550144,6.559108634769398,1,0,-9,7,0,0,36.6166873822698,0,0,0,63,2,4,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.455364243598241,6.471890817608333,0,0,56.94,43.99,6,1,0,0,9,4,1,1230,0,0,0 +4030,4959,8978,8977,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,7.108977509520773,8.106822263929919,8.335807097613577,1,0,-9,7,0,0,-27.34111563903288,0,0,0,63,3,3,3,-9,2,2019,2,2,6,0,21,21,15,1,0,4,0,6.335940273318658,6.335940273318658,0,0,0,0,0,0,0,1,1,0,7.585246220486441,8.318768383559588,0,0,57.16,56.15,2,1,0,0,9,4,1,1230,0,0,0 +4031,4960,8979,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-949.6467269033067,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.863840903228695,0,0,0,57.42,11.68,5,1,0,0,9,1,0,406,0,0,0 +4032,4961,8980,8981,-9,-9,1,1,0,36,1,0,2,0,2,-9,1,1,0,4,7.93436566847551,8.069863939062039,6.214594952164749,2,0,-9,7,0,1,6.868213846058044,0,0,1,35,2,4,1,2,1,2019,1,3,14,4,4,20,15,1,4,1,0,102.4037280030779,102.4037280030779,0,0,0,0,0,0,0,1,1,0,6.39882437083086,0,0,0,36.52,53.19,2,1,0,0,7,5,1,394.25,0,0,0 +4032,4961,8981,8980,-9,-9,3,1,1,35,1,0,2,0,2,-9,1,1,0,4,9.673623128113872,9.516657764847682,0,2,0,-9,7,0,-1,-46.73321002181918,0,0,0,36,2,4,1,-9,-9,2019,1,1,7,0,50,50,15,1,0,1,0,33.41906355263274,33.41906355263274,0,0,0,0,0,0,0,1,1,0,6.696251510188976,0,0,3,57.77,46.15,7,1,0,0,7,5,1,394.25,0,0,0 +4032,4961,8982,-9,8980,8981,2,1,0,16,2,0,2,1,2,-9,7,2,0,4,5.428196224877309,5.38969959658474,0,2,0,0,0,-9,0,-1056.001977006495,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,4,3,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,61.77,6,1,0,0,7,5,1,394.25,0,0,0 +4032,4961,8983,-9,8980,8981,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.4298975651741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,394.25,0,0,0 +4033,4962,8984,8986,-9,-9,2,1,1,49,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,29,0,0,0,0,0,0,49,3,4,3,2,2,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,55,6,3,1,0,8,1,0,712.5,0,0,0 +4033,4962,8985,-9,8986,8984,5,1,0,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.391930484701,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.058281386645565,3,45,59,5,3,0,0,8,1,0,712.5,0,0,0 +4033,4962,8986,8984,-9,-9,1,1,0,49,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,29,0,0,0,0,0,0,49,2,4,3,-9,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,83.54430604127039,3,50,54,6,3,0,0,8,1,0,712.5,0,0,0 +4033,4962,8987,-9,8986,8984,6,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.9392046082326,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,712.5,0,0,0 +4033,4963,8988,-9,8986,8984,3,1,1,24,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-962.2777596744487,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.3174962160207235,3,49,58,5,3,1,0,8,1,0,355,0,0,0 +4033,4964,8989,-9,8986,8984,4,1,0,19,2,0,2,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1064.022019142026,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.3062017857612086,0,0,0,46,58,5,1,0,0,8,1,0,220,0,0,0 +4034,4965,8990,-9,8991,-9,3,1,1,17,2,0,3,0,2,1,3,3,0,3,0,0,0,4,0,0,0,-9,0,-973.9420613819535,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,39.39,3,1,1,0,5,2,0,752.5,0,0,0 +4034,4965,8991,-9,-9,-9,1,1,0,42,2,0,3,0,2,-9,2,1,0,4,7.164912883343809,7.116347841458002,0,4,0,0,0,-9,0,-923.4488149794587,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,20,30,15,1,0,-9,0,7.199382959761932,7.199382959761932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,5,2,0,752.5,0,0,0 +4035,4966,8992,8993,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,68,0,-8,37.88856884087893,0,0,0,94,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4463656424457104,0,117.1620042808052,1,49.36,51.55,6,1,0,0,9,2,1,565,0,0,0 +4035,4966,8993,8992,-9,-9,2,1,1,94,1,0,0,0,3,-9,4,3,0,3,0,5.919278752669309,5.964151855105073,1,0,-9,68,0,8,23.89065156436309,0,0,0,86,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.838764376132263,6.136943317911912,0,0,56,44,6,1,0,0,9,2,1,565,0,0,0 +4036,4967,8994,8995,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,4,0,7.562908858240837,7.372340033452968,1,0,-9,8,0,-1,-39.77477857448125,0,0,0,87,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.779964016222273,5.406368448932218,116.0150446978508,1,59.73,50.87,5,1,0,0,13,2,1,434.5,0,0,0 +4036,4967,8995,8994,-9,-9,2,1,0,87,1,0,0,0,2,-9,4,3,0,4,0,6.366213980875564,5.779344673233009,1,0,-9,8,0,1,-37.23845142539135,0,0,0,86,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.368153121964712,0,0,51.83,57.2,7,1,0,0,13,2,1,434.5,0,0,0 +4037,4968,8996,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1061.023091391144,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,1,1.409723502635547,0,0,0,0,43.65655551731705,1,1,0,0,0,0,0,49.91,31.39,5,1,0,0,11,1,0,545,0,0,0 +4038,4969,8997,-9,8999,8998,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1099.948867226738,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,5,1,0,0,9,5,1,521.25,0,0,0 +4038,4969,8998,8999,-9,-9,2,1,1,51,1,0,2,0,1,-9,2,1,0,3,9.701633369553745,9.495017262171793,0,2,0,-9,4,0,11,-84.07339194304959,0,0,0,40,2,5,1,3,1,2019,1,1,13,1,35,35,15,1,1,1,0,42.34496926922311,42.34496926922311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.41,62.84,4,1,0,0,9,5,1,521.25,0,0,0 +4038,4969,8999,8998,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,5,7.659578057600528,7.53263857725518,0,2,0,-9,4,0,-11,-91.56436039720985,0,0,1,51,1,3,1,2,3,2019,1,2,11,0,32,32,15,1,0,1,0,8.18057905219719,8.18057905219719,0,0,0,0,0,0,0,0,0,0,.4123096117784559,0,0,0,46.82,62.33,6,1,0,0,9,5,1,521.25,0,0,0 +4038,4969,9000,-9,8999,8998,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.9457322314734,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,9,5,1,521.25,0,0,0 +4039,4970,9001,9002,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,20,0,-5,3.979052552895965,0,0,0,78,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.11,44.4,6,1,0,0,13,2,0,963.5,0,0,0 +4039,4970,9002,9001,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,6.056357897870052,5.839896708696692,1,0,-9,25,0,5,-8.649538127065123,0,0,0,73,3,3,3,3,3,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.88960761348785,0,0,48.24,22.46,6,1,0,0,13,2,0,963.5,0,0,0 +4040,4971,9003,9004,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,30,0,-6,-68.72909086472708,0,0,0,69,3,1,3,3,3,2019,4,1,36,12,0,0,15,4,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.96927967101776,1,14.55,49.03,2,1,0,0,6,3,0,826,0,0,0 +4040,4971,9004,9003,-9,-9,1,1,1,69,1,0,0,0,3,-9,8,3,1,1,0,7.83954756815143,7.680026694009049,1,0,-9,31,0,6,95.08765192389058,0,0,0,63,3,2,3,3,3,2019,4,2,23,8,0,0,15,3,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.850034046391401,0,0,40.31,14.24,2,1,0,0,6,3,0,826,0,0,0 +4041,4972,9005,9006,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,7.350261076017111,7.350969888262925,1,0,-9,53,0,3,-68.91680667825025,0,0,0,70,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.469019764990827,0,0,51.42,42.58,6,1,0,0,5,3,1,823,0,0,0 +4041,4972,9006,9005,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,6.735349726181998,6.86458029236096,1,0,-9,53,0,-3,-35.34415778955668,0,0,0,73,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.641262521794658,0,0,60.27,49.27,6,1,0,0,5,3,1,823,0,0,0 +4042,4973,9007,9008,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.331561200762886,8.188559740281079,0,1,0,-9,1,-9,-3,-5.774905658717928,-9,1,1,28,1,4,1,-9,-9,2019,1,1,4,0,51,0,15,1,0,1,0,8.753167424985291,8.753167424985291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,2,5,0,251.5,0,0,0 +4042,4973,9008,9007,-9,-9,1,1,1,28,1,0,0,0,1,-9,1,1,0,4,8.741597352451119,8.85786138732059,0,1,0,-9,1,-9,3,179.8642198527469,-9,1,0,25,1,4,1,1,1,2019,1,2,10,2,40,0,15,1,2,1,0,22.02166086733522,22.02166086733522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,2,5,0,251.5,0,0,0 +4043,4974,9009,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,5,0,7.818065615951444,7.71480791905531,3,0,0,0,-9,0,-1035.854013463459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.031421856301066,7.694935321620075,0,0,54.1,59.11,6,1,0,0,9,3,1,249,0,0,0 +4044,4975,9010,9012,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.227654482543734,8.447866345021502,0,2,0,-9,6,0,-4,-64.90054879470911,0,0,0,49,1,3,1,2,2,2019,1,2,5,0,33,21,15,1,0,1,0,16.25796552397637,16.25796552397637,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,59.08,6,1,0,0,5,5,1,634.5,0,0,0 +4044,4975,9011,-9,9010,9012,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.6827656449867,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,5,5,1,634.5,0,0,0 +4044,4975,9012,9010,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,3,9.027439718950562,8.982451515348613,0,2,0,-9,6,0,4,-44.89360077467934,0,0,0,45,1,4,1,3,2,2019,1,1,8,0,43,37,15,1,0,1,0,21.72892537952252,21.72892537952252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,1,0,0,5,5,1,634.5,0,0,0 +4044,4975,9013,-9,9010,9012,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.962821040744,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,5,1,634.5,0,0,0 +4045,4976,9014,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,1,1,0,3,8.866694851926097,8.870523346714798,0,3,0,0,0,-9,0,-986.5073258729184,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,30,60,15,1,3,-9,0,31.13017706841773,31.13017706841773,0,0,0,0,0,0,0,1,1,0,.1034764536615897,0,0,0,43,54.57,5,1,0,0,12,5,1,1317,0,0,0 +4046,4977,9015,9016,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,2,6.289646580997825,6.885179279683206,0,1,0,-9,9,0,-10,71.60485045734696,0,0,0,69,3,1,3,3,3,2019,2,2,12,0,17,20,15,1,0,3,0,4.210833996865914,4.210833996865914,0,0,0,0,0,0,0,1,0,1,0,0,125.2512833525806,1,57.18,42.93,4,1,0,0,12,2,0,776.5,0,0,0 +4046,4977,9016,9015,-9,-9,2,1,1,69,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,9,0,10,-56.31774437395083,0,0,0,59,3,2,1,3,3,2019,3,1,29,12,0,0,15,3,12,1,0,0,0,1,0,126.4987577042168,0,0,2.560423249684887,0,1,0,1,0,0,0,1,21.72,22.57,2,1,0,1,12,2,0,776.5,0,0,0 +4047,4978,9017,-9,-9,-9,1,1,1,60,3,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-878.5171275635083,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.29,32.44,6,1,0,1,2,1,0,341,0,0,0 +4047,4978,9018,-9,-9,9017,3,1,1,16,2,0,1,0,2,-9,3,2,0,4,0,0,0,4,0,0,0,-9,0,-908.2409848320411,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.64,57.24,7,1,1,0,2,1,0,341,0,0,0 +4048,4979,9019,9020,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,3,7.913852767806226,8.258788066327975,0,2,0,-9,3,0,-4,-27.15178169676528,0,0,1,38,1,3,1,2,3,2019,1,2,13,1,16,0,15,1,1,1,0,30.9882475704895,30.9882475704895,0,0,0,0,0,0,0,1,1,0,4.059986453615056,0,0,0,54.37,54.8,6,1,0,0,13,5,1,535,0,0,0 +4048,4979,9020,9019,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,3,8.783288095391628,8.908778946078035,0,2,0,-9,3,0,4,185.0344814099726,0,0,0,34,1,3,1,-9,-9,2019,1,1,11,0,42,41,15,1,0,1,0,20.03648856946871,20.03648856946871,0,0,0,0,0,0,0,1,1,0,3.662995663740715,0,0,0,53.67,51.01,6,1,0,0,13,5,1,535,0,0,0 +4048,4979,9021,-9,9019,9020,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.911516630286,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,5,1,535,0,0,0 +4049,4980,9022,-9,9025,9024,5,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.107941920913,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,690.6,0,0,0 +4049,4980,9023,-9,9025,9024,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-843.1388633029164,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,3,1,690.6,0,0,0 +4049,4980,9024,9025,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,4,8.265934538676236,8.275894090614239,0,2,0,-9,25,0,0,-51.96907210359186,0,0,0,46,1,4,3,2,2,2019,2,1,12,0,38,38,15,1,0,3,0,11.31723620640183,11.31723620640183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,1,3,1,690.6,0,0,0 +4049,4980,9025,9024,-9,-9,1,1,0,46,1,0,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,25,0,0,-1.748721531821849,0,0,0,46,1,4,1,2,3,2019,3,2,13,2,0,11,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.117869999556578,0,0,0,53.76,51.1,6,1,0,0,1,3,1,690.6,0,0,0 +4049,4980,9026,-9,9025,9024,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.504458244451,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,3,1,690.6,0,0,0 +4050,4981,9027,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,8.645220581189442,8.663386890501029,3,0,0,0,-9,0,-825.4864247480357,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.595615137225678,0,3,54.2,57.49,6,1,0,0,11,5,1,1505,0,0,0 +4051,4982,9028,9029,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,2,8.612713362555597,8.548412235691051,0,2,0,-9,9,0,-3,-86.34018665770034,0,0,0,50,2,4,1,2,2,2019,1,2,8,0,43,37,15,1,0,1,0,15.81512711290939,15.81512711290939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.12,46.77,5,1,0,0,1,5,1,802,0,0,0 +4051,4982,9029,9028,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,4,9.29551858289773,9.362545952707382,0,2,0,-9,9,0,3,-13.14729281522825,0,0,0,47,2,2,1,2,2,2019,1,1,15,4,38,38,15,1,4,1,0,28.2827937080629,28.2827937080629,0,0,0,0,0,0,0,1,1,0,4.852863140765585,0,5.215810208802083,3,48.53,58.91,4,1,0,0,1,5,1,802,0,0,0 +4052,4983,9030,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,5,8.350859655153386,8.484257368764618,0,3,0,0,0,-9,0,-1105.961756173686,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,38,38,15,1,1,-9,0,10.94326778243732,10.94326778243732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,5,1,0,1,13,4,1,1685,0,0,0 +4053,4984,9031,-9,-9,-9,1,1,0,85,3,0,0,0,1,-9,4,3,0,2,0,7.531110316378086,7.335036785122508,3,0,0,0,-9,0,-960.9112628782345,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.635869311216288,7.234338328729462,0,0,58.73,16.63,6,1,0,0,9,3,1,605,0,0,0 +4054,4985,9032,-9,-9,-9,1,1,0,52,3,2,2,0,2,-9,2,1,0,2,8.180950224877591,7.938248889623291,0,4,0,0,0,-9,0,-965.1410417206693,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,38,38,15,1,1,-9,0,10.75503308220801,10.75503308220801,0,0,0,0,0,0,0,1,1,0,2.033445451288674,0,0,0,60.55,29.25,3,1,0,0,10,3,1,837,0,0,0 +4054,4986,9033,-9,9034,-9,4,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-976.9919481175104,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,3,1,640,0,0,0 +4054,4986,9034,-9,9032,-9,2,1,0,27,2,2,2,0,2,-9,2,1,0,3,7.995260225211665,7.714903709808762,0,3,0,0,0,-9,0,-851.8196840164653,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,23,48,15,1,0,-9,1,11.84072040525625,11.84072040525625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,49.79,6,1,0,0,10,3,1,640,0,0,0 +4054,4986,9035,-9,9034,-9,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-833.4012470893131,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,10,3,1,640,0,0,0 +4055,4987,9036,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,2,7.108623881741298,6.975146846158479,0,3,0,0,0,-9,0,-971.8977039384785,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,20,20,15,1,2,-9,0,6.443488253274191,6.443488253274191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.48,31.86,3,1,0,0,5,2,1,428,0,0,0 +4056,4988,9037,-9,9038,9041,4,1,1,5,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.518687080258,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,3,0,759,0,0,0 +4056,4988,9038,9041,-9,-9,1,1,0,38,1,1,4,0,3,-9,2,1,0,4,6.369438947366647,6.643666384178219,0,2,0,-9,3,0,9,-46.18313516054391,0,0,1,29,2,5,1,-9,-9,2019,1,5,7,0,12,8,15,1,0,1,0,6.112398520197695,6.112398520197695,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,42.1,6,1,0,0,1,3,0,759,0,0,0 +4056,4988,9039,-9,9038,9041,6,1,0,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1092.577931351339,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,3,0,759,0,0,0 +4056,4988,9040,-9,9038,9041,2,1,0,17,2,1,4,0,2,1,3,3,0,4,6.989410760888791,6.943836223750788,0,2,0,0,0,-9,0,-946.3278852961815,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.73,63.1,7,1,1,0,1,3,0,759,0,0,0 +4056,4988,9041,9038,-9,-9,5,1,1,29,1,1,4,0,2,-9,2,1,0,5,8.249816861739907,8.458481226416502,0,2,0,-9,3,0,0,47.56399276012479,0,1,0,38,3,4,1,-9,-9,2019,1,1,4,0,43,48,15,1,0,1,0,10.82587027649049,10.82587027649049,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,1,3,0,759,0,0,0 +4056,4988,9042,-9,9038,9041,3,1,0,15,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.992522144481,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,3,0,759,0,0,0 +4057,4989,9043,9045,-9,-9,2,1,1,29,1,1,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,4,0,-4,-59.15999742023891,0,1,0,33,1,4,1,-9,-9,2019,3,1,12,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.22,47.55,4,4,1,1,10,2,1,720.3333333333334,0,0,0 +4057,4989,9044,-9,9045,9043,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.0425224398341,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,10,2,1,720.3333333333334,0,0,0 +4057,4989,9045,9043,-9,-9,1,1,0,33,1,1,1,0,1,-9,1,1,0,4,5.589375955194427,5.326756065112895,0,2,0,-9,4,0,4,51.66258236083632,0,0,1,29,2,3,3,1,3,2019,2,2,9,1,20,16,15,1,1,3,0,1.672982157633065,1.672982157633065,0,0,0,0,0,0,0,1,1,0,6.585179354681342,0,0,0,59.29,49.68,6,1,0,1,10,2,1,720.3333333333334,0,0,0 +4058,4990,9046,9047,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,5,1.134140193669096,1.13310980278499,0,2,0,-9,10,0,2,-46.01511788473651,0,0,0,39,2,5,1,2,2,2019,1,2,10,3,38,35,15,1,3,1,0,.0087165387526443,.0087165387526443,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.56,65.25,7,1,0,0,13,2,1,625.25,0,0,0 +4058,4990,9047,9046,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,5,7.387776339510189,7.075521001631351,0,2,0,-9,10,0,-2,-24.0346076541442,0,0,1,41,2,5,1,3,3,2019,1,1,11,0,25,25,15,1,0,1,0,7.288606951619734,7.288606951619734,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,6,1,0,0,13,2,1,625.25,0,0,0 +4058,4990,9048,-9,9047,9046,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.5785780921507,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,13,2,1,625.25,0,0,0 +4058,4990,9049,-9,9047,9046,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.727604913642,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,2,1,625.25,0,0,0 +4059,4991,9050,9051,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.14303622082375,6.468781366320572,1,0,-9,2,0,-7,-209.2979133207297,-9,0,0,74,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.434099666595699,6.402753440064915,0,0,63.24,42.39,6,1,0,0,12,3,1,848,0,0,0 +4059,4991,9051,9050,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.803183859012173,7.737866645622435,1,0,-9,2,0,7,-62.98560697710543,0,0,0,67,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.744536545070384,7.454697998029434,0,0,52.82,53.97,6,1,0,0,12,3,1,848,0,0,0 +4060,4992,9052,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-891.7383042985833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,7.419417533425223,0,1,1,0,.7252079197100576,0,0,0,38.75,21.89,4,1,0,0,9,1,0,851,0,0,0 +4061,4993,9053,-9,-9,-9,1,1,1,22,2,0,0,0,1,-9,2,1,0,4,7.765485744735166,7.907645895709479,0,3,0,0,0,-9,0,-1014.650704765444,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,41,37,15,1,0,-9,0,6.661088902142057,6.661088902142057,0,0,0,0,0,0,0,0,0,0,6.910257924868042,0,0,0,43.2,59.97,5,1,0,0,2,3,1,1097,0,0,0 +4062,4994,9054,9055,-9,-9,1,1,1,78,1,0,0,0,2,-9,2,1,0,4,7.119738227167486,7.454459424887379,0,1,0,-9,54,0,3,-36.0349628301575,0,0,0,75,1,4,3,3,3,2019,2,2,6,0,28,24,15,1,0,4,0,5.844046392226788,5.844046392226788,0,0,0,0,0,0,0,1,1,0,3.84582005524307,0,0,0,58.3,52.91,6,1,0,0,2,2,1,1136,0,0,0 +4062,4994,9055,9054,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,4,0,5.970288767055417,6.2274267660697,1,0,-9,52,0,-3,18.91110958471684,0,0,0,78,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.258155731775201,6.261338996952635,0,0,60.57,46.44,7,1,0,0,2,2,1,1136,0,0,0 +4063,4995,9056,9059,-9,-9,1,1,1,37,1,0,3,0,3,-9,1,1,0,3,6.393733342338783,6.600980141869305,0,2,0,-9,17,0,-3,-117.3316408601102,0,0,0,40,2,2,1,-9,-9,2019,1,2,9,0,40,35,15,1,0,1,0,2.061729063316197,2.061729063316197,0,0,0,0,0,0,0,1,1,0,0,0,13.55928225639317,3,50.72,51.02,5,1,0,0,2,2,0,475.25,0,0,0 +4063,4995,9057,-9,9059,9056,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-896.025724681581,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,475.25,0,0,0 +4063,4995,9058,-9,9059,9056,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1134.808368167924,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,475.25,0,0,0 +4063,4995,9059,9056,-9,-9,2,1,0,40,1,0,3,0,2,-9,1,1,0,2,5.076993358392577,5.197224600046731,0,2,0,-9,17,0,3,-161.9734817841086,0,0,1,37,3,3,1,2,2,2019,1,1,16,4,40,35,15,1,4,1,0,.4396507236372931,.4396507236372931,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,35.15,5,1,0,0,2,2,0,475.25,0,0,0 +4063,4996,9060,-9,9059,9056,3,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1030.192469550726,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,2,0,943,0,0,0 +4064,4997,9061,9062,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,55,0,-3,-35.40303507254423,0,0,0,78,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.957527650476068,0,3.405840191550865,3,59.88,48.04,6,1,0,0,5,2,1,2112,0,0,0 +4064,4997,9062,9061,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,6.657778661910021,6.62741134870839,1,0,-9,55,0,3,78.56794865965435,0,0,0,75,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.423121829533104,6.454256536787701,0,3,57.17,48.12,6,1,0,1,5,2,1,2112,0,0,0 +4065,4998,9063,-9,-9,-9,2,1,0,30,2,0,0,0,2,-9,8,3,1,5,0,0,0,3,0,0,0,-9,0,-1050.559876714808,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.72,51,7,4,0,0,8,1,1,205,0,0,0 +4066,4999,9064,9065,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,47,0,0,0,0,0,0,81,3,3,3,3,1,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.905304691670076,0,6.809159161310374,3,53,47,5,1,0,0,4,1,1,279.5,0,0,0 +4066,4999,9065,9064,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,9,0,0,0,0,72,2,3,3,-9,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.220732326127438,0,0,2,52,45,6,1,0,0,4,1,1,279.5,0,0,0 +4067,5000,9066,9067,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,3,0,8.070671295233984,7.952558785291096,1,0,-9,6,0,12,77.80266774749823,0,0,0,71,2,2,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.199835725232494,8.253849431777626,0,0,49.31,38.11,6,1,0,0,1,3,1,264,0,0,0 +4067,5000,9067,9066,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,6.627345727832052,6.87284595412756,1,0,-9,6,0,-12,62.94454767057321,0,0,0,83,1,3,3,2,1,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.967037263316392,0,0,0,44.39,25.77,5,1,0,0,1,3,1,264,0,0,0 +4068,5001,9068,9069,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.146187806968854,8.212919621375383,0,1,0,-9,2,0,0,-143.9096703299095,0,1,1,25,1,5,1,-9,-9,2019,1,1,11,0,45,40,15,1,2,1,0,10.7294443062363,10.7294443062363,0,0,0,0,0,0,0,0,0,0,2.395669457264682,0,0,0,47,58,5,1,0,0,8,5,1,420,0,0,0 +4068,5001,9069,9068,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,5,9.070875186750852,8.800190371878958,0,1,0,-9,2,0,0,75.74169003191605,0,1,0,25,1,4,1,2,2,2019,1,2,7,0,45,40,15,1,0,1,0,19.23553321598898,19.23553321598898,0,0,0,0,0,0,0,0,0,0,3.601430379944385,0,0,0,57.06,57.76,6,1,0,0,8,5,1,420,0,0,0 +4069,5002,9070,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,1,1,0,5,0,0,0,3,0,0,0,-9,0,-873.3733652376244,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.137662027160899,0,0,0,57.06,57.76,6,1,0,0,8,1,1,488,0,0,0 +4070,5003,9071,9072,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,7.548202189247281,7.41096306963272,1,0,-9,48,0,-2,-2.129831141434095,0,0,0,71,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.455535783036989,7.401929717690335,0,0,56.1,49.93,7,1,0,0,11,4,1,421,0,0,0 +4070,5003,9072,9071,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.941422383164737,7.960607190809944,1,0,-9,48,0,2,-.328640559309434,0,0,0,69,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.583244052576457,8.412959925749858,0,0,51.91,42.22,5,1,0,0,11,4,1,421,0,0,0 +4071,5004,9073,-9,9076,9074,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.583010251126,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,2,3,1,469,0,0,0 +4071,5004,9074,9076,-9,-9,1,1,1,42,1,1,2,0,2,-9,2,1,0,5,7.876675564795234,7.899781086525236,0,2,0,-9,7,0,1,105.5502601563375,0,0,0,41,1,4,1,1,1,2019,1,2,7,0,32,31,15,1,0,1,0,8.506410576067278,8.506410576067278,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,3,1,469,0,0,0 +4071,5004,9075,-9,9076,9074,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.3165737555576,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,2,3,1,469,0,0,0 +4071,5004,9076,9074,-9,-9,2,1,0,41,1,1,2,0,1,-9,1,1,0,4,7.133543110803999,7.08442189494849,0,2,0,-9,7,0,-1,54.47714276867755,0,0,1,42,2,5,1,-9,-9,2019,1,1,8,0,32,25,15,1,0,1,0,3.778918660281826,3.778918660281826,0,0,0,0,0,0,0,1,1,0,6.413397019847323,0,0,0,52.43,55.57,6,3,0,0,2,3,1,469,0,0,0 +4072,5005,9077,9078,-9,-9,1,1,1,57,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,26,0,-5,65.61556188970344,0,0,0,62,2,3,3,2,1,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.391919398723445,0,0,0,37.26,44.13,6,1,0,0,10,3,1,1902,0,0,0 +4072,5005,9078,9077,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,8.082606492999654,7.532855982499483,1,0,-9,26,0,5,8.615634633603317,0,0,0,57,1,2,3,2,2,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.280005374831569,7.758950725976367,0,0,52.99,51.28,6,1,0,0,10,3,1,1902,0,0,0 +4072,5006,9079,-9,9078,9077,3,1,1,21,2,0,0,1,2,0,7,2,0,4,7.273913803817648,7.286337411347577,0,3,0,0,0,-9,0,-1049.054111827854,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,18,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.290061182670011,0,0,0,51.77,58.57,6,1,0,0,10,3,1,314,0,0,0 +4073,5007,9080,9081,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,2,7.57571952630962,7.660849453918223,0,1,0,-9,29,0,0,97.9569960290337,0,0,1,44,3,1,1,3,3,2019,1,2,11,0,38,45,15,1,0,1,0,6.622058425453726,6.622058425453726,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.57,45.47,4,1,0,0,7,4,0,206.5,0,0,0 +4073,5007,9081,9080,-9,-9,2,1,1,44,1,0,0,0,3,-9,2,1,0,1,7.880679048581852,7.947963702579695,0,1,0,-9,29,0,0,-89.16412508278289,0,0,0,44,2,2,1,2,3,2019,1,1,13,1,40,30,15,1,1,1,0,6.703168548766515,6.703168548766515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.08,26.22,3,1,0,0,7,4,0,206.5,0,0,0 +4073,5008,9082,-9,9080,9081,3,1,1,21,2,0,0,0,2,-9,7,2,0,3,7.62880230196547,7.09287804505683,4.450728148475439,3,0,0,0,-9,0,-1025.297675985448,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,16,8,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.631265812542229,0,0,0,43.95,51.24,5,1,0,1,7,3,0,214,0,0,0 +4073,5009,9083,-9,9080,9081,4,1,0,18,2,0,0,1,2,0,7,2,0,4,6.553307017792573,6.798307776595878,0,3,0,0,0,-9,0,-1029.96566367848,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,7,2,0,440,0,0,0 +4074,5010,9084,9085,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,7.330787371911078,7.584178529015453,1,0,-9,44,0,3,73.14013283308581,0,0,0,63,2,2,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.911133932679947,7.602277530740505,0,0,62.66,52.4,7,1,0,0,12,4,1,1518,0,0,0 +4074,5010,9085,9084,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,2,7.93763102211056,8.262294090058022,7.0391399506199,1,0,-9,44,0,-3,68.12047818272758,0,0,0,66,2,3,3,3,3,2019,2,2,11,0,36,36,15,1,0,4,0,7.978358114074157,7.978358114074157,0,0,0,0,0,0,0,1,1,0,0,7.15602661181667,0,0,53.97,45.88,6,1,0,0,12,4,1,1518,0,0,0 +4075,5011,9086,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,3,7.392100885247293,7.345278084246337,0,3,0,0,0,-9,0,-972.7151452369869,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,18,18,15,1,2,-9,0,11.07984483232104,11.07984483232104,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,5,4,0,0,8,3,0,880,0,0,0 +4075,5012,9087,-9,9086,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,5,6.809508058394543,6.848481845935307,0,3,0,0,0,-9,0,-909.1632474815166,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,3,10,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.69,44.73,6,4,0,0,8,2,0,192,0,0,0 +4075,5013,9088,-9,9086,-9,3,1,1,20,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-937.4019290213346,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,56.44,3,4,1,0,8,1,0,156,0,0,0 +4076,5014,9089,-9,9091,9092,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.7528117269223,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,806.5,0,0,0 +4076,5014,9090,-9,9091,9092,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.118466011415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,806.5,0,0,0 +4076,5014,9091,9092,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.564404646889759,8.787763618581483,0,2,0,-9,6,0,-5,-81.11445931281065,0,0,0,50,2,4,1,2,2,2019,1,1,8,0,39,37,15,1,0,1,0,17.79271138757176,17.79271138757176,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,7,1,0,0,7,4,1,806.5,0,0,0 +4076,5014,9092,9091,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.164623515106353,7.938210760877964,0,2,0,-9,6,0,5,-57.26059634719595,0,0,0,45,2,4,1,2,3,2019,1,2,6,0,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,7,4,1,806.5,0,0,0 +4077,5015,9093,9094,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,6.187810774503884,5.977612430146673,1,0,-9,19,0,-1,-14.46238259954584,0,0,0,70,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.856321042549324,0,0,55.76,44.76,6,1,0,0,9,2,1,162.5,0,0,0 +4077,5015,9094,9093,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,5.877876118163324,5.996110961146125,1,0,-9,19,0,1,49.88282801847856,0,0,0,69,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.282351893398396,0,0,46.3,29.03,4,1,0,0,9,2,1,162.5,0,0,0 +4078,5016,9095,-9,-9,-9,1,1,1,72,3,1,1,0,2,-9,2,1,0,4,0,6.174457633818541,5.881683756605255,4,0,0,0,-9,0,-862.5907898632006,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.130735790010783,5.899635374477337,0,0,57.73,54.53,6,1,0,0,13,2,1,119,0,0,0 +4078,5017,9096,-9,9098,9097,4,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.905377217148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,5,1,1076.333333333333,0,0,0 +4078,5017,9097,9098,-9,9095,2,1,1,36,1,1,1,0,2,-9,2,1,0,4,9.58612462391207,10.02157089210925,0,2,0,-9,4,0,4,-12.03382549120959,0,0,0,32,2,4,1,2,2,2019,1,3,10,0,60,48,15,1,1,1,0,42.35858281400417,42.35858281400417,0,0,0,0,0,0,0,1,1,0,6.17688185900371,0,0,0,51,57,5,1,0,0,13,5,1,1076.333333333333,0,0,0 +4078,5017,9098,9097,-9,-9,3,1,0,32,1,1,1,0,2,-9,2,1,0,4,8.503079667433479,8.420009039162798,0,2,0,-9,4,0,-4,-67.21426009846002,0,0,1,36,2,4,1,-9,-9,2019,1,2,11,0,30,37,15,1,2,1,0,16.60382312395891,16.60382312395891,0,0,0,0,0,0,0,1,1,0,3.81993424135901,0,0,0,48,57,5,1,0,0,13,5,1,1076.333333333333,0,0,0 +4079,5018,9099,9100,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,3,8.006031064512216,7.746598690542815,0,1,0,-9,31,0,-1,-2.787967927058249,0,0,0,55,2,3,1,-9,-9,2019,1,2,7,0,37,35,15,1,0,1,0,8.294984392921002,8.294984392921002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,4,1,0,0,12,4,1,604.5,0,0,0 +4079,5018,9100,9099,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,3,8.206737276274412,8.160627851606668,0,1,0,-9,31,0,1,-66.18428088453096,0,0,0,54,3,3,1,-9,-9,2019,1,1,6,0,40,42,15,1,0,1,0,9.581155550215783,9.581155550215783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,6,1,0,0,12,4,1,604.5,0,0,0 +4080,5019,9101,9102,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,64,0,-2,-8.46524247043811,0,0,0,82,3,2,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,12.48195690622895,0,0,0,0,1,1,0,0,0,41.09184264275747,1,47.68,37.63,4,1,0,0,7,2,0,1674.5,0,0,0 +4080,5019,9102,9101,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,2,0,5.812203191330859,5.892809193338236,1,0,-9,64,0,2,-72.25386141889885,0,0,0,80,3,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,41.7168122622227,0,0,0,0,1,1,0,0,6.124704257776186,0,0,36.72,31.97,5,1,0,0,7,2,0,1674.5,0,0,0 +4081,5020,9103,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,4,0,3.582481066451903,3.214541963854254,3,0,0,0,-9,0,-1171.277256472867,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.310190074130376,3.164300696672546,0,0,60.04,39.68,7,1,0,0,12,1,1,975,0,0,0 +4082,5021,9104,9105,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.747531019710708,8.769190330673519,0,1,0,-9,31,0,2,54.06035057453293,0,0,0,55,2,4,1,2,2,2019,1,1,6,0,45,45,15,1,0,1,0,15.93208524602548,15.93208524602548,0,0,0,0,0,0,0,0,0,0,4.238088564316584,0,0,0,61.12,51.57,6,1,0,0,5,5,1,999.5,0,0,0 +4082,5021,9105,9104,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.853050848708432,8.028593148383862,0,1,0,-9,33,0,-2,53.16016325610865,0,0,0,57,2,4,1,2,1,2019,1,2,7,0,41,37,15,1,0,1,0,8.630401165515348,8.630401165515348,0,0,0,0,0,0,0,0,0,0,1.711689544669137,0,0,0,57.16,56.15,6,1,0,0,5,5,1,999.5,0,0,0 +4082,5022,9106,-9,9105,9104,3,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.420486308181651,8.624601058447661,0,3,0,0,0,-9,0,-979.8982696336714,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,40,45,15,1,1,-9,1,11.17456048863297,11.17456048863297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,6,1,0,0,5,5,1,865,0,0,0 +4083,5023,9107,9108,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,3,7.705076245780469,7.67531595273879,0,1,0,-9,6,0,-21,126.9380760858562,0,0,0,54,1,1,3,1,1,2019,2,1,12,2,35,0,15,1,2,3,0,8.908735279013092,8.908735279013092,0,0,0,0,0,0,0,1,1,0,0,0,27.28673269897942,1,42.16,46.74,4,3,0,1,8,3,0,715,0,0,0 +4083,5023,9108,9107,-9,-9,1,1,0,54,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,6,0,21,-84.42993865705388,0,0,0,33,1,3,1,3,-9,2019,3,2,21,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.63,27.26,3,3,0,0,8,3,0,715,0,0,0 +4083,5024,9109,-9,9108,-9,3,1,1,24,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-932.714414612019,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,8,0,46,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.507223656695061,3,37.68,60.06,7,3,1,1,8,1,0,962,0,0,0 +4084,5025,9110,-9,-9,-9,1,1,1,86,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1059.90410045526,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,1,11.06213562999823,0,0,0,0,50.11108952796292,1,1,0,0,0,0,0,47.88,12.01,5,1,0,1,13,1,1,943,0,0,0 +4085,5026,9111,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,5,7.432078162628007,7.892350931940241,6.277387027176295,3,0,0,0,-9,0,-1014.572099423931,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,28,28,15,1,0,-9,0,6.41283950877137,6.41283950877137,0,0,0,0,0,0,0,1,1,0,0,6.495832619548686,0,0,48.77,60.16,1,1,0,0,2,3,0,238,0,0,0 +4086,5027,9112,9113,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,5,0,6.744654106762377,6.958040967240906,1,0,-9,6,0,-2,-77.46775653658754,0,0,0,68,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.16936637282158,6.894791526337142,0,0,60.02,56.42,7,1,0,0,12,2,1,650,0,0,0 +4086,5027,9113,9112,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,6.969802645522747,6.838485977468575,1,0,-9,6,0,2,96.22140341570811,0,0,0,66,2,5,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9234460009444474,7.24333271759314,0,0,56.67,44.08,7,1,0,0,12,2,1,650,0,0,0 +4087,5028,9114,9115,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.344199837920014,8.672212376247913,0,1,0,-9,7,0,0,67.80505283577335,0,0,0,59,2,1,1,-9,-9,2019,1,1,8,0,40,42,15,1,0,1,0,15.50168648719564,15.50168648719564,0,0,0,0,0,0,0,1,1,0,3.741684673508515,0,0,0,54,53,6,1,0,0,8,5,0,241,0,0,0 +4087,5028,9115,9114,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,1,7.37086733641923,7.457813232227701,0,1,0,-9,7,0,0,-74.20336467967594,0,0,0,59,1,4,1,-9,-9,2019,1,2,15,3,24,16,15,1,3,1,0,9.683977210724795,9.683977210724795,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,31.11,3,1,0,0,8,5,0,241,0,0,0 +4087,5029,9116,-9,9115,-9,3,1,1,28,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1025.02555920421,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,40,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,8,1,0,321,0,0,0 +4088,5030,9117,9118,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,.5137774449109109,.927665567481416,1,0,-9,54,0,-8,46.69382998080179,0,0,0,82,3,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.824193296322947,.8356374478400672,0,0,57.16,56.15,6,1,0,0,10,2,1,4800,0,0,0 +4088,5030,9118,9117,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,6.521457298662038,6.646899108312807,1,0,-9,54,0,8,-20.24705456954167,0,0,0,74,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.055182062374377,6.742398948098454,0,0,57.33,53.46,5,1,0,0,10,2,1,4800,0,0,0 +4089,5031,9119,9120,-9,-9,2,1,0,70,1,0,0,0,2,-9,2,1,0,4,5.166742518345699,6.879710800979239,6.932315699157774,1,0,-9,9,0,-11,-23.58104560045945,0,0,0,81,2,1,3,-9,-9,2019,2,1,8,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.350309760676637,6.560283079836906,0,0,57.16,56.15,7,1,0,0,12,3,1,1094,0,0,0 +4089,5031,9120,9119,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,1,0,7.404182604942947,7.298144200239157,1,0,-9,9,0,11,-72.62161893259999,0,0,0,70,2,4,1,2,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.216245107308793,0,0,41.37,21.72,7,1,0,0,12,3,1,1094,0,0,0 +4090,5032,9121,9122,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.005312357942715,7.642048452730143,1,0,-9,47,0,3,153.3865689807004,0,0,0,70,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.995578645726071,8.235785359933198,0,0,57.33,53.46,6,1,0,0,13,3,1,1045.5,0,0,0 +4090,5032,9122,9121,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,47,0,-3,-75.35495648780189,0,0,0,73,1,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,13,3,1,1045.5,0,0,0 +4091,5033,9123,9124,-9,-9,2,1,0,55,1,0,0,0,2,-9,6,3,0,5,0,0,0,1,0,-9,6,0,-14,46.71358781359976,0,0,0,69,2,4,1,2,2,2019,3,1,7,0,0,12,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.147963831149672,0,0,0,51.67,60.18,7,1,0,0,10,2,1,322.5,0,0,0 +4091,5033,9124,9123,-9,-9,1,1,1,69,1,0,0,0,2,-9,1,1,0,4,7.054231679711058,6.813198662533434,0,1,0,-9,6,0,14,76.79991221212957,0,0,0,55,2,5,3,3,3,2019,2,2,7,0,25,40,15,1,0,3,0,4.840812293859782,4.840812293859782,0,0,0,0,0,0,0,1,1,0,0,0,4.447030867322535,3,57.16,56.15,7,1,0,0,10,2,1,322.5,0,0,0 +4092,5034,9125,9126,-9,-9,1,1,0,34,1,0,1,0,3,-9,1,1,0,4,6.580349104129764,6.870157584331614,0,2,0,-9,7,0,-1,-34.08972355361769,0,0,1,35,2,4,1,2,2,2019,1,2,10,0,20,20,15,1,0,1,0,4.291600783115085,4.291600783115085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,6,1,0,0,11,3,1,667,0,0,0 +4092,5034,9126,9125,-9,-9,2,1,1,35,1,0,1,0,2,-9,1,1,0,4,7.890023991198687,7.927845365664755,0,2,0,-9,7,0,1,-54.53200220688173,0,0,0,34,3,4,1,2,2,2019,1,1,11,0,50,40,15,1,0,1,0,5.900697656378126,5.900697656378126,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,49.75,5,1,0,0,11,3,1,667,0,0,0 +4093,5035,9127,-9,-9,-9,1,1,0,70,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-954.825755041563,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.124675480203734,0,0,0,25.89,27.44,2,1,0,1,13,1,0,317,0,0,0 +4094,5036,9128,9132,-9,-9,2,1,0,28,1,1,3,0,2,-9,6,3,0,3,5.475102065872218,5.74186660624119,0,2,0,-9,1,-9,-1,-30.53740397321463,-9,1,1,29,2,4,1,-9,-9,2019,3,1,19,7,16,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.14,49.43,3,1,0,1,2,2,0,1075.2,0,0,0 +4094,5036,9129,-9,9128,9132,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-939.7145902097693,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,0,1075.2,0,0,0 +4094,5036,9130,-9,9128,9132,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1087.956159718819,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,0,1075.2,0,0,0 +4094,5036,9131,-9,9128,9132,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-928.1993755132584,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,2,0,1075.2,0,0,0 +4094,5036,9132,9128,-9,-9,1,1,1,29,1,1,3,0,2,-9,2,1,0,4,7.849700317863354,7.630544296305038,0,2,0,-9,1,-9,1,-171.1925029839265,-9,1,0,28,2,3,3,2,2,2019,2,2,7,0,52,0,15,1,0,3,0,5.150409054968119,5.150409054968119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,5,1,0,0,2,2,0,1075.2,0,0,0 +4095,5037,9133,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,3,0,7.844072779032189,8.18137212600984,3,0,0,0,-9,0,-1028.641065834968,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.805241969439063,8.044881453255096,0,0,53.67,51.01,6,1,0,0,12,4,1,2171,0,0,0 +4096,5038,9134,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,2,1,0,4,7.942715331922716,7.977664378405733,5.934628678672312,3,0,0,0,-9,0,-1071.721819079959,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,38,15,1,0,-9,0,6.971963543188753,6.971963543188753,0,0,0,0,0,0,0,1,1,0,0,6.194796544684683,0,0,62.49,55.09,7,1,0,0,10,4,0,1168,0,0,0 +4097,5039,9135,-9,-9,-9,1,1,1,18,2,0,0,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1080.150710575675,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.08,35.56,1,1,0,0,11,1,0,3057,0,0,0 +4098,5040,9136,9137,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.815075791866666,7.595387879598625,0,1,0,-9,6,0,-1,23.11929121740282,0,0,0,49,2,1,1,3,3,2019,1,2,11,2,39,24,15,1,2,1,0,8.219595504216553,8.219595504216553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,4,5,1,793,0,0,0 +4098,5040,9137,9136,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,1,8.361329203104217,8.825563150457221,0,1,0,-9,6,0,1,-93.28716985410975,0,0,0,48,2,3,1,3,2,2019,1,1,11,1,50,45,15,1,1,1,0,12.17816254143689,12.17816254143689,0,0,0,0,0,0,0,0,0,0,6.782748017598134,0,0,0,55.78,31.55,6,1,0,0,4,5,1,793,0,0,0 +4099,5041,9138,9139,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.081893191690217,6.859297244322546,1,0,-9,8,0,5,86.69971486000965,0,0,0,62,1,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.615329340892071,6.940159046196701,0,0,58.32,50.22,6,1,0,0,4,2,1,680.5,0,0,0 +4099,5041,9139,9138,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,2,0,6.316098796749146,6.25262563536555,1,0,-9,8,0,-5,33.9394354100122,0,0,0,67,2,3,3,2,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.051133276955616,6.209791638479975,0,0,42.23,49.99,4,1,0,0,4,2,1,680.5,0,0,0 +4100,5042,9140,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,1,1,0,4,7.079138476651372,7.274358768502061,5.556721477815932,3,0,0,0,-9,0,-1004.0844777382,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,25,40,15,1,3,-9,0,6.19882933479716,6.19882933479716,0,0,0,0,0,0,0,1,1,0,0,5.657935472637011,0,0,54.89,46.16,6,1,0,0,4,3,1,559,0,0,0 +4101,5043,9141,9143,-9,-9,3,1,1,49,1,0,2,0,2,-9,2,1,0,3,0,0,0,2,0,-9,10,0,12,-105.5207567632354,0,0,0,37,2,4,1,-9,-9,2019,1,1,10,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,2,1,0,0,12,3,1,474,0,0,0 +4101,5043,9142,-9,9143,9141,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.040255308023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,1,474,0,0,0 +4101,5043,9143,9141,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,8.395935252629256,8.295466885513063,0,2,0,-9,10,0,-12,75.74037057751008,0,0,1,49,2,3,1,2,2,2019,1,3,12,0,37,37,15,1,0,1,0,13.91317012446134,13.91317012446134,0,0,0,0,0,0,0,1,1,0,0,0,6.811303339092588,3,54.79,55.86,6,1,0,0,12,3,1,474,0,0,0 +4101,5043,9144,-9,9143,9141,2,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.872317691327,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,474,0,0,0 +4102,5044,9145,9146,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.063754158687994,7.939388239475748,0,1,0,-9,6,0,0,-78.88413441732982,0,1,1,28,1,4,3,-9,-9,2019,2,1,6,0,37,0,15,1,0,3,0,8.87922034035236,8.87922034035236,0,0,0,0,0,0,0,0,0,0,3.253693533644744,0,0,0,51.67,60.18,6,1,0,0,12,3,0,1365.5,0,0,0 +4102,5044,9146,9145,-9,-9,1,1,1,28,1,0,0,0,1,-9,3,3,0,4,0,7.016608204971329,6.745254498584062,1,0,-9,6,0,0,15.09282502730588,0,1,0,28,1,5,1,1,2,2019,3,2,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.612547260593714,0,0,0,54.2,57.49,6,1,1,0,12,3,0,1365.5,0,0,0 +4103,5045,9147,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,-9,0,-9,0,-1059.214242050595,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.39,46.45,6,4,0,0,8,1,0,225,0,0,0 +4104,5046,9148,9149,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.631041385040332,7.590479795894434,1,0,-9,52,0,2,36.33728881847095,0,0,0,73,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.855668296770872,7.406832749363281,0,0,51.65,39.74,6,1,0,0,9,3,1,572.5,0,0,0 +4104,5046,9149,9148,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,7.669297821283243,7.742108601570461,1,0,-9,52,0,-2,6.65303179032069,0,0,0,75,2,3,3,2,2,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.516360145102638,7.47695649050713,0,0,54.21,49.46,6,1,0,0,9,3,1,572.5,0,0,0 +4105,5047,9150,9151,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,3,7.653519255607266,7.206300652400928,0,1,0,-9,5,0,10,-91.68528268135762,0,0,0,41,1,4,1,3,2,2019,1,2,5,1,50,48,15,1,1,1,0,4.440098781388315,4.440098781388315,0,0,0,0,0,0,0,0,0,0,3.285126167317852,0,0,0,47.07,53.97,6,1,0,0,5,4,1,770.5,0,0,0 +4105,5047,9151,9150,-9,-9,2,1,0,41,1,0,0,0,1,-9,2,1,0,4,8.443493877961675,8.30183128930587,0,1,0,-9,5,0,-10,46.51262666536574,0,0,1,51,1,3,1,3,2,2019,1,1,7,0,38,39,15,1,0,1,0,12.34531044850315,12.34531044850315,0,0,0,0,0,0,0,0,0,0,5.069118126389313,0,0,0,55.99,43.36,6,1,0,0,5,4,1,770.5,0,0,0 +4106,5048,9152,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,3,0,6.022718982827282,5.809947568685881,3,0,0,0,-9,0,-1140.223518496576,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.92298135983028,6.113226475336745,0,0,53.16,51.26,7,1,0,0,9,2,1,444,0,0,0 +4107,5049,9153,9154,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,49,0,1,-22.20316373916072,0,0,0,70,2,3,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,44.67,32.3,5,1,0,0,1,2,1,401,0,0,0 +4107,5049,9154,9153,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.173651999906407,7.084877668102465,1,0,-9,49,0,-1,4.103171922157948,0,0,0,71,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.786323432327108,6.955827414271123,0,0,61.85,47.26,7,1,0,0,1,2,1,401,0,0,0 +4108,5050,9155,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,3,9.35335903444961,9.450712173574338,5.977300619802075,4,0,0,0,-9,0,-983.4419325327486,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,27,10,40,35,15,1,10,-9,0,43.54840402344188,43.54840402344188,0,0,0,0,0,0,0,0,0,0,6.840384555822338,0,0,0,24.1,45.42,2,1,0,1,4,5,1,976,0,0,0 +4109,5051,9156,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-965.6088009347388,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69127807973857,3,54.7,43.72,4,1,0,0,10,1,0,1251,0,0,0 +4109,5052,9157,-9,9156,-9,2,1,0,28,2,0,0,0,2,-9,2,1,0,4,7.391662981775346,7.611559318859179,0,3,0,0,0,-9,0,-1034.300205913418,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,48,50,15,1,2,-9,1,3.373015587224179,3.373015587224179,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,10,3,0,856,0,0,0 +4109,5053,9158,-9,9156,-9,3,1,1,27,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-968.614437104851,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,1,0,10,1,0,1738,0,0,0 +4109,5054,9159,-9,9156,-9,4,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.009457169900154,8.073770972951893,0,3,0,0,0,-9,0,-1120.636932804533,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,37,20,15,1,2,-9,1,11.20292211690604,11.20292211690604,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,10,4,0,837,0,0,0 +4109,5055,9160,-9,9156,-9,5,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.815399936669482,8.089618758687331,0,3,0,0,0,-9,0,-1100.18846028951,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,45,48,15,1,0,-9,1,7.889228580830265,7.889228580830265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,10,4,0,624,0,0,0 +4110,5056,9161,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-834.6868306852912,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.931235200925284,3,47.15,56.66,6,1,1,1,1,2,0,2379,0,0,0 +4111,5057,9162,-9,9163,9164,4,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1025.608999635384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,10,3,0,1249.666666666667,0,0,0 +4111,5057,9163,9164,-9,-9,1,1,0,43,1,0,1,0,2,-9,97,3,0,1,0,0,0,2,0,-9,28,0,-2,35.35654763835048,0,0,1,45,2,1,1,2,1,2019,3,2,16,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.9990972669415,3,32.59,27.53,1,1,0,1,10,3,0,1249.666666666667,0,0,0 +4111,5057,9164,9163,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,1,8.090069406341186,7.905841447623104,0,2,0,-9,28,0,2,-4.925145699375995,0,0,0,43,2,1,3,2,2,2019,2,1,13,1,40,43,15,1,1,3,0,6.591764043342394,6.591764043342394,0,0,0,0,0,0,0,1,1,0,0,0,25.59396113006682,3,57.32,43.09,3,1,0,1,10,3,0,1249.666666666667,0,0,0 +4111,5058,9165,-9,9163,9164,3,1,1,18,2,0,1,0,2,1,2,1,0,5,8.050782912822381,7.602184364300912,0,3,0,0,0,-9,0,-987.9586705016687,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,80,0,15,1,1,-9,1,3.337402213906832,3.337402213906832,0,0,0,0,0,0,0,1,1,0,0,0,13.32132219065836,3,34.49,56.3,5,1,0,0,10,3,0,261,0,0,0 +4112,5059,9166,9168,-9,-9,2,1,0,33,1,0,1,0,2,-9,1,1,0,3,7.674381883357282,7.829866271632278,0,2,0,-9,9,0,-5,151.5415731450325,0,0,1,38,2,2,1,-9,-9,2019,1,1,12,0,30,0,15,1,0,1,0,10.75453406883062,10.75453406883062,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.97,41.17,3,1,0,0,12,3,1,1306.666666666667,0,0,0 +4112,5059,9167,-9,9166,9168,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.105727847675,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,1,1306.666666666667,0,0,0 +4112,5059,9168,9166,-9,-9,1,1,1,38,1,0,1,0,2,-9,1,1,0,2,7.075846538556228,6.659186021186445,0,2,0,-9,9,0,5,73.22724162948629,0,0,0,33,2,3,1,2,2,2019,1,2,8,0,35,45,15,1,0,1,0,3.930828513087956,3.930828513087956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,36.99,5,1,0,0,12,3,1,1306.666666666667,0,0,0 +4113,5060,9169,9170,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,5.349256019227203,5.223115584854382,1,0,-9,52,0,-5,-45.85631267931308,0,0,0,74,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.905883463504644,5.071916094083233,0,0,56.35,51.16,6,1,0,0,12,2,1,168.5,0,0,0 +4113,5060,9170,9169,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,5.441879746487741,5.591358707584826,1,0,-9,52,0,5,-68.74249521843983,0,0,0,69,2,3,3,-9,-9,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.088628165063164,5.384985707837902,0,0,41.99,44.26,3,1,0,0,12,2,1,168.5,0,0,0 +4114,5061,9171,9172,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,3,8.924854728367341,8.999131323557368,0,1,0,-9,6,0,4,76.61249956970329,0,0,1,29,1,5,1,-9,-9,2019,1,1,16,5,38,42,15,1,5,1,0,19.73801172219319,19.73801172219319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.56,53.29,5,1,0,0,7,5,1,224,0,0,0 +4114,5061,9172,9171,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,5,8.533556475034949,8.711713223829218,6.268230928066541,1,0,-9,6,0,-4,-74.57457188667139,0,1,0,33,1,3,1,1,2,2019,1,2,14,3,46,45,15,1,3,1,0,13.43522626776737,13.43522626776737,0,0,0,0,0,0,0,0,0,0,7.431793104185674,0,0,0,51.73,58.82,5,1,0,0,7,5,1,224,0,0,0 +4115,5062,9173,9174,-9,-9,2,1,0,76,1,0,0,0,3,-9,2,1,0,4,7.885449793626462,7.68269261448541,6.178205244428959,1,0,-9,51,0,0,-32.93514857980801,0,0,0,76,3,4,3,2,-9,2019,2,1,2,0,26,26,15,1,0,4,0,10.87339125730582,10.87339125730582,0,0,0,0,0,0,0,1,1,0,3.879918605612005,6.583761386579646,0,0,57.16,56.15,7,1,0,0,12,4,1,1110.5,0,0,0 +4115,5062,9174,9173,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,7.330546220441142,7.400316282804519,1,0,-9,51,0,0,28.33677195848309,0,0,0,76,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.324948642251573,7.072382930031512,0,0,60.81,43.46,6,1,0,0,12,4,1,1110.5,0,0,0 +4116,5063,9175,9176,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-2,-14.93286466468271,0,0,0,80,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,2.982456552673176,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,2,2,0,374,0,0,0 +4116,5063,9176,9175,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,6.75166107257202,6.10917408604149,1,0,-9,59,0,2,71.76668110175437,0,0,0,78,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.510348926718791,0,0,60.29,52.11,6,1,0,0,2,2,0,374,0,0,0 +4117,5064,9177,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,3,7.621840848911996,7.691589121910097,0,3,0,0,0,-9,0,-1061.693660858185,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,18,43,15,1,0,-9,0,14.81817403001788,14.81817403001788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,4,1,0,0,4,3,0,469,0,0,0 +4118,5065,9178,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.383278130460851,7.13315915650535,5.555923891343268,3,0,0,0,-9,0,-1005.528477206364,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,20,28,15,1,1,-9,0,8.610493901748047,8.610493901748047,0,0,0,0,0,0,0,0,0,0,0,5.586640382866791,0,0,52,52,6,1,0,0,12,3,1,648,0,0,0 +4119,5066,9179,-9,-9,-9,1,1,0,27,2,0,0,0,3,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-896.2096125052174,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,30,12,0,30,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.73,62.24,5,2,0,0,8,1,0,1576,0,0,0 +4120,5067,9180,9181,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,4,8.756038866147247,8.727112439244626,0,1,0,-9,12,0,0,121.9559049936779,0,0,1,36,1,4,1,2,2,2019,1,1,0,0,42,41,15,1,0,1,0,13.4753854095658,13.4753854095658,0,0,0,0,0,0,0,0,0,0,.4554720437561444,0,0,0,64.12,32.85,7,1,0,0,9,5,1,235.5,0,0,0 +4120,5067,9181,9180,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.642244844616418,8.471431233719276,0,1,0,-9,12,0,0,60.42908695890365,0,0,0,36,1,4,1,2,2,2019,1,2,7,0,48,40,15,1,0,1,0,14.74897209679038,14.74897209679038,0,0,0,0,0,0,0,0,0,0,3.997641642072702,0,0,0,60.13,49.27,6,1,0,0,9,5,1,235.5,0,0,0 +4121,5068,9182,9183,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.539744277582574,8.53597851944833,0,1,0,-9,14,0,2,-44.08470831484387,0,0,0,42,2,2,1,3,2,2019,1,2,14,4,40,40,15,1,4,1,0,14.574589503339,14.574589503339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.99,60.71,7,1,0,0,2,5,1,544.5,0,0,0 +4121,5068,9183,9182,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,2,8.406272831969506,8.214171133928129,0,1,0,-9,14,0,-2,-21.3167293146245,0,0,1,44,2,4,1,2,-9,2019,1,1,10,0,42,40,15,1,0,1,0,10.37922985779375,10.37922985779375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.43,45.6,6,1,0,0,2,5,1,544.5,0,0,0 +4122,5069,9184,9186,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,3,7.013709114134803,7.079982777798382,0,2,0,-9,10,0,-5,-10.87207415136103,0,0,1,49,2,3,1,-9,-9,2019,1,1,10,0,18,10,15,1,0,1,0,6.928621708816472,6.928621708816472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.48,44.27,6,1,0,0,13,3,1,942,0,0,0 +4122,5069,9185,-9,9184,9186,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.1320249514081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,3,1,942,0,0,0 +4122,5069,9186,9184,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,3,8.011553140592202,8.041480119682255,0,2,0,-9,27,0,5,-136.6245297034732,0,0,0,44,2,3,1,3,3,2019,1,2,12,0,39,43,15,1,0,1,0,9.31731344644505,9.31731344644505,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,5,1,0,0,13,3,1,942,0,0,0 +4122,5069,9187,-9,9184,9186,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-923.6498033370419,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,3,1,942,0,0,0 +4123,5070,9188,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,3,0,6.215903970628481,6.2204153656418,3,0,0,0,-9,0,-874.5091224486343,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,16.44190384082315,0,0,1,1,0,0,6.461216538613658,0,0,54,43,6,1,0,0,9,2,0,981,0,0,0 +4124,5071,9189,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,3,8.190338211089138,8.363499698225914,0,3,0,0,0,-9,0,-902.0279127172068,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,12.6174624164388,12.6174624164388,0,0,0,0,0,0,0,1,1,0,2.679368235214775,0,0,0,49.29,54.59,6,1,0,0,9,5,1,1810,0,0,0 +4125,5072,9190,9191,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,4,7.940649589867845,8.468019477338251,6.063329426810867,1,0,-9,36,0,2,16.31550222862052,0,0,0,54,3,1,3,-9,-9,2019,2,1,6,0,48,48,15,1,0,3,0,6.89021941065656,6.89021941065656,0,0,0,0,0,0,0,1,1,0,0,6.203296646726568,15.20919637637438,1,60.12,54.8,7,1,0,0,6,3,0,1284,0,0,0 +4125,5072,9191,9190,-9,-9,1,1,0,54,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,36,0,-2,-21.39636937176505,0,0,0,56,3,4,1,-9,-9,2019,3,2,22,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,2,1,0,0,6,3,0,1284,0,0,0 +4126,5073,9192,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,3,0,8.040673688456463,7.835673015626276,3,0,0,0,-9,0,-1092.759821606061,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.922281987290002,8.02275174266714,0,0,48.99,38.46,6,1,0,0,9,3,1,864,0,0,0 +4127,5074,9193,9194,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,3,8.23473030690552,8.154624259309685,0,2,0,-9,23,0,-3,-14.40213042810284,0,0,1,46,1,3,1,1,1,2019,1,2,10,0,50,40,15,1,0,1,0,7.715940834379274,7.715940834379274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,3,0,0,9,5,1,436.5,0,0,0 +4127,5074,9194,9193,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,8.832047633037039,9.206781658205946,0,2,0,-9,9,0,3,51.28800391971059,0,0,0,43,1,3,1,-9,-9,2019,1,1,9,0,50,60,15,1,0,1,0,24.31105169169579,24.31105169169579,0,0,0,0,0,0,0,0,0,0,7.966017144444016,0,0,0,54.96,53.17,6,3,0,0,9,5,1,436.5,0,0,0 +4127,5075,9195,-9,9193,9194,3,1,1,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1031.890037181026,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,3,0,0,9,5,1,4706,0,0,0 +4128,5076,9196,9197,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,3,0,7.712260565280986,7.501084478625609,1,0,-9,10,0,-1,-112.8492247570861,0,0,0,79,2,2,3,2,2,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.392074531448003,7.429527083297806,4.212984342448504,1,51.17,49.39,3,1,0,0,1,3,1,271,0,0,0 +4128,5076,9197,9196,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,2,0,7.248595689820255,7.55577035629135,1,0,-9,10,0,1,-150.0285904120096,0,0,0,78,1,3,3,3,3,2019,4,2,32,12,0,0,15,4,12,4,0,0,0,1,0,5.905180165114802,0,0,0,0,1,1,0,4.868429005318838,7.241966049110134,0,0,25.01,33.15,2,1,0,0,1,3,1,271,0,0,0 +4128,5077,9198,-9,9199,-9,4,1,1,16,2,0,0,1,-9,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-997.0306906217164,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,63.9,5,2,0,0,1,2,1,605.5,0,0,0 +4128,5077,9199,-9,-9,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,5,0,4.223313412911704,4.295588606475438,3,0,0,0,-9,0,-886.9380497548964,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.747990736654758,0,0,0,43.09,61.58,5,2,0,0,1,2,1,605.5,0,0,0 +4129,5078,9200,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-924.5685874442934,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,38,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.126139480545939,0,0,0,33.53,60.12,2,1,1,0,12,1,1,178,0,0,0 +4130,5079,9201,-9,9202,9203,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.115087890325,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,3,1,1222.333333333333,0,0,0 +4130,5079,9202,9203,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,3,8.208746242288512,8.278081348408357,0,2,0,-9,13,0,-1,-66.48484710419091,0,0,0,46,2,2,1,2,2,2019,1,2,16,5,24,24,15,1,5,1,0,16.32942898613289,16.32942898613289,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,40.8,6,1,0,0,9,3,1,1222.333333333333,0,0,0 +4130,5079,9203,9202,-9,-9,2,1,1,46,1,0,1,0,2,-9,1,1,0,2,7.186503285673302,7.225807093732656,0,2,0,-9,16,0,1,-34.83885469883018,0,0,0,45,2,3,1,2,3,2019,1,1,14,2,60,0,15,1,2,1,0,2.590616026951164,2.590616026951164,0,0,0,0,0,0,0,1,1,0,4.715337905298723,0,.9520220033119402,2,38.65,48.44,4,1,0,0,9,3,1,1222.333333333333,0,0,0 +4131,5080,9204,9205,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,3,9.117411673320991,8.851366244455138,0,2,0,-9,13,0,0,-95.42020960791329,0,0,0,40,1,5,1,2,1,2019,1,1,17,7,40,45,15,1,7,1,0,27.08068702302673,27.08068702302673,0,0,0,0,0,0,0,1,1,0,7.883293853358685,0,0,0,34,61.21,3,1,0,0,8,5,1,826,0,0,0 +4131,5080,9205,9204,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,5,7.584454789380841,7.531956010447079,0,2,0,-9,13,0,0,101.2127166236766,0,0,1,40,1,3,1,2,2,2019,1,2,5,0,4,10,15,1,0,1,0,53.64772892221225,53.64772892221225,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,4,0,0,8,5,1,826,0,0,0 +4131,5080,9206,-9,9205,9204,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.2749062564233,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,5,1,826,0,0,0 +4131,5080,9207,-9,9205,9204,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.7585945037853,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,5,1,826,0,0,0 +4132,5081,9208,9209,-9,-9,1,1,0,81,1,0,0,0,1,-9,4,3,0,4,0,6.916582863037169,6.619488676457042,1,0,-9,48,0,10,163.8614067934559,0,0,0,71,2,4,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.273318622504415,0,0,59.89,42.51,6,1,0,0,7,4,1,379.5,0,0,0 +4132,5081,9209,9208,-9,-9,2,1,1,71,1,0,0,0,2,-9,2,1,0,4,7.266581434198383,8.458801912675437,8.326441149655954,1,0,-9,48,0,-10,-27.85959478656532,0,0,0,81,1,4,3,2,1,2019,2,1,10,0,30,0,15,1,0,4,0,6.872917302950608,6.872917302950608,0,0,0,0,0,0,0,1,1,0,7.643962912363801,8.446373677307871,0,0,55.37,48.71,6,1,0,0,7,4,1,379.5,0,0,0 +4133,5082,9210,-9,-9,-9,3,1,0,59,2,0,0,0,2,-9,2,1,0,3,8.467528183779029,8.209977781028849,0,3,0,0,0,-9,0,-992.8344888615947,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,48,60,15,1,0,-9,0,11.25556247011451,11.25556247011451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.44,40.19,6,4,0,0,8,4,0,441,0,0,0 +4134,5083,9211,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,2,0,7.05345274067175,7.41453940416389,3,0,0,0,-9,0,-963.1611757821447,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.556034896797184,0,0,31.84,38.09,2,1,0,0,9,3,0,92,0,0,0 +4135,5084,9212,-9,-9,-9,1,1,0,50,3,0,0,0,3,-9,2,1,0,4,7.791988976088804,7.44557585742077,0,3,0,0,0,-9,0,-1050.69741463127,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,39,39,15,1,1,-9,0,5.137058789704427,5.137058789704427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.95,52.04,4,1,0,0,13,3,1,2561,0,0,0 +4135,5085,9213,-9,9212,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.072241942805396,8.181115702818939,0,3,0,0,0,-9,0,-979.6323585461996,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,35,40,15,1,5,-9,1,11.10721345289498,11.10721345289498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,61.77,4,1,0,0,13,4,1,413,0,0,0 +4135,5086,9214,-9,9212,-9,3,1,0,19,2,0,0,0,2,-9,2,1,0,5,6.980914490990791,7.420726188748602,0,3,0,0,0,-9,0,-994.0722205386369,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,34,40,15,1,0,-9,1,3.330432723995378,3.330432723995378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,3,1,0,0,13,2,1,454,0,0,0 +4136,5087,9215,9216,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,4,8.524676261504446,8.979067405366262,0,2,0,-9,10,0,0,8.394562535454991,0,0,0,35,1,3,1,2,1,2019,1,2,5,0,50,40,15,1,0,1,0,14.97589188083634,14.97589188083634,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.99,50.71,6,1,0,0,10,4,1,1085.25,0,0,0 +4136,5087,9216,9215,-9,-9,2,1,0,35,1,0,2,0,1,-9,1,1,0,3,7.638484548246003,7.759184154910754,0,2,0,-9,10,0,0,.1052693061804795,0,0,1,35,1,4,1,1,2,2019,1,1,10,2,8,10,15,1,2,1,0,28.55384588510397,28.55384588510397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.05,33.51,6,1,0,0,10,4,1,1085.25,0,0,0 +4136,5087,9217,-9,9216,9215,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.286925752453,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,4,1,1085.25,0,0,0 +4136,5087,9218,-9,9216,9215,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.6219350280397,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,1085.25,0,0,0 +4137,5088,9219,9220,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.288036857135134,7.902981632452672,0,1,0,-9,8,0,-8,-101.292786882105,0,0,0,58,2,3,1,2,2,2019,1,1,7,0,38,37,15,1,0,1,0,9.292715029394152,9.292715029394152,0,0,0,0,0,0,0,0,0,0,0,0,4.008858582052993,3,54.79,55.86,6,1,0,0,13,5,1,2615.5,0,0,0 +4137,5088,9220,9219,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.224164118825453,7.990650391640354,0,1,0,-9,8,0,8,48.23361222528721,0,0,0,50,1,4,1,3,2,2019,1,2,12,0,41,49,15,1,0,1,0,10.09551930724217,10.09551930724217,0,0,0,0,0,0,0,0,0,0,0,0,24.45697984666332,3,42.46,54.85,5,1,0,0,13,5,1,2615.5,0,0,0 +4137,5089,9221,-9,9219,9220,3,1,0,30,2,0,0,0,1,-9,2,1,0,4,8.120360146689192,8.322516484171928,0,3,0,0,0,-9,0,-1070.638312501223,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,38,38,15,1,0,-9,1,12.0711476939912,12.0711476939912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.07,49.99,6,1,0,0,13,4,1,1285,0,0,0 +4137,5090,9222,-9,9219,9220,4,1,1,20,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1036.819339726019,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.43000000000001,41.87,6,1,0,0,13,1,1,580,0,0,0 +4138,5091,9223,-9,9226,9224,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-883.5540268954658,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,411.5,0,0,0 +4138,5091,9224,9226,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,3,8.795557147883533,8.946095317569249,0,2,0,-9,5,0,-5,-13.42492523417582,0,0,0,45,2,4,1,2,2,2019,1,2,11,1,47,43,15,1,1,1,0,20.06021704778353,20.06021704778353,0,0,0,0,0,0,0,1,1,0,2.68991167717518,0,0,0,54.37,54.8,6,1,0,0,7,4,1,411.5,0,0,0 +4138,5091,9225,-9,9226,9224,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.8498175643253,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,4,1,411.5,0,0,0 +4138,5091,9226,9224,-9,-9,2,1,0,45,1,1,2,0,2,-9,2,1,0,4,6.452237126965951,6.302883333107663,0,2,0,-9,5,0,5,-11.89257413062436,0,0,0,40,1,3,1,-9,2,2019,1,1,12,0,11,0,15,1,0,1,0,5.164024926029519,5.164024926029519,0,0,0,0,0,0,0,1,1,0,0,0,4.746547559684803,3,48.87,58.55,6,1,0,0,7,4,1,411.5,0,0,0 +4139,5092,9227,9228,-9,-9,2,1,0,52,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,-15,0,0,0,0,67,2,3,3,3,3,2019,4,1,15,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.83,24.19,6,1,0,1,7,1,0,306.5,0,0,0 +4139,5092,9228,9227,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,15,0,0,0,0,52,3,2,3,-9,3,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.8,41.24,5,1,0,0,7,1,0,306.5,0,0,0 +4140,5093,9229,9231,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,3,8.280513460516259,8.217515972139958,0,2,0,-9,3,0,0,-7.857971466421262,0,1,1,28,2,3,1,-9,-9,2019,1,1,9,0,30,45,15,1,0,1,0,13.01245106756989,13.01245106756989,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,5,4,1,231.6666666666667,0,0,0 +4140,5093,9230,-9,9229,9231,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.9982565245431,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,231.6666666666667,0,0,0 +4140,5093,9231,9229,-9,-9,1,1,1,28,1,1,1,0,2,-9,1,1,0,3,8.504961127066938,8.379615378641445,0,2,0,-9,3,0,0,-9.270154808274068,0,1,0,28,1,3,1,2,3,2019,1,2,7,0,47,40,15,1,0,1,0,10.60589930618201,10.60589930618201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,5,4,1,231.6666666666667,0,0,0 +4141,5094,9232,9233,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,2,7.76025939524534,7.460039421714629,0,1,0,-9,32,0,0,-64.35268999283322,0,0,0,62,1,3,3,2,2,2019,2,1,9,0,23,22,15,1,0,4,0,10.07153005438007,10.07153005438007,0,0,0,0,0,0,0,0,0,0,0,0,3.014574025709931,3,56.49,35.1,7,1,0,0,13,4,1,700.5,0,0,0 +4141,5094,9233,9232,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,8.387018540892818,8.189044795633198,1,0,-9,32,0,9,33.28746020843909,0,0,0,53,2,2,1,2,2,2019,3,2,4,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.978695119758358,8.001630176377045,0,0,60.05,42.65,6,1,0,0,13,4,1,700.5,0,0,0 +4142,5095,9234,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,2,1,0,4,7.772373887482614,7.873772641125556,6.136616813697469,3,0,0,0,-9,0,-899.3603083711687,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,44,45,15,1,0,-9,0,5.26590214483847,5.26590214483847,0,0,0,0,0,0,0,0,0,0,0,6.169006188273556,0,0,49.52,55.68,6,1,0,0,2,4,0,164,0,0,0 +4142,5096,9235,-9,-9,-9,2,1,1,48,2,0,0,0,2,-9,2,1,0,4,7.539648325267947,7.69390819325692,0,3,0,0,0,-9,0,-920.6099787675673,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,40,15,1,1,-9,0,5.416147846835827,5.416147846835827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,2,3,0,527,0,0,0 +4143,5097,9236,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,3,6.577277343823417,7.685482935550034,6.749506118599036,3,0,0,0,-9,0,-907.5268170886769,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.924573189990767,75.28336235111328,3,40.64,42.22,3,1,0,0,1,3,1,1185,0,0,0 +4144,5098,9237,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,4,0,3.786747899669658,3.834684869732384,3,0,0,0,-9,0,-1062.760018272757,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.875393533389026,0,0,54.2,57.49,7,1,0,0,4,2,0,778,0,0,0 +4145,5099,9238,9241,-9,-9,1,1,1,28,1,1,2,0,2,-9,2,1,0,3,7.764765965297148,7.893674875032195,0,2,0,-9,2,0,2,86.49291362591958,0,1,0,26,2,3,3,-9,-9,2019,2,2,8,0,48,0,15,1,0,3,0,6.132410918363065,6.132410918363065,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.23,50.71,6,1,0,0,5,2,0,605.5,0,0,0 +4145,5099,9239,-9,9241,9238,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-877.9298510434946,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,0,605.5,0,0,0 +4145,5099,9240,-9,9241,9238,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.122136678364,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,605.5,0,0,0 +4145,5099,9241,9238,-9,-9,2,1,0,26,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,-2,-21.13867867195554,0,1,1,28,2,3,1,-9,-9,2019,3,1,13,1,0,45,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,5,2,0,605.5,0,0,0 +4146,5100,9242,9243,-9,-9,1,1,1,49,1,0,0,0,1,-9,1,1,0,4,9.873886600308815,9.709728933639367,0,1,0,-9,10,0,-17,-74.99784541013047,0,0,0,66,1,4,1,2,2,2019,1,2,8,1,40,50,15,1,1,1,0,42.63018625513021,42.63018625513021,0,0,0,0,0,0,0,1,1,0,8.213972807976804,0,0,0,58.15,52.91,6,1,0,0,10,5,1,417,0,0,0 +4146,5100,9243,9242,-9,-9,2,1,0,66,1,0,0,0,1,-9,2,1,0,4,6.733488499483576,7.000863098820438,0,1,0,-9,10,0,17,9.250788836183368,0,0,0,49,1,4,1,1,3,2019,1,1,5,0,5,10,15,1,0,1,0,20.15679706289852,20.15679706289852,0,0,0,0,0,0,0,1,1,0,6.633732029995482,0,0,0,58.15,52.91,6,1,0,0,10,5,1,417,0,0,0 +4147,5101,9244,-9,9247,9246,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.1823051294849,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,1,604,0,0,0 +4147,5101,9245,-9,9247,9246,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.5258832237803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,1,604,0,0,0 +4147,5101,9246,9247,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,2,7.730719000234306,7.815822012613537,0,2,0,-9,14,0,3,-81.63663361507791,0,0,0,33,2,5,3,2,2,2019,2,2,14,2,40,38,15,1,2,3,0,7.888539433583902,7.888539433583902,0,0,0,0,0,0,0,1,1,0,3.400431167409681,0,0,0,31.06,46.94,2,1,0,0,7,2,1,604,0,0,0 +4147,5101,9247,9246,-9,-9,2,1,0,33,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,14,0,-3,-104.7803778560003,0,0,1,36,2,2,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,0,7,2,1,604,0,0,0 +4148,5102,9248,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,1,1,0,3,0,7.044188859699303,7.543744199996002,3,0,0,0,-9,0,-898.643286818774,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.789284723791096,7.118860482220942,0,0,48.45,57.49,4,1,0,0,9,3,1,796,0,0,0 +4149,5103,9249,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,7,2,0,4,7.77689140529986,7.065312652023251,0,3,0,0,0,-9,0,-1003.982812292145,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,10,25,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,1,3,0,227,0,0,0 +4150,5104,9250,9253,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,3,8.822220960549195,8.644423398051115,0,2,0,-9,11,0,-2,31.12836736368882,0,0,1,37,1,4,1,3,3,2019,1,1,8,0,37,37,15,1,0,1,0,22.87993620865413,22.87993620865413,0,0,0,0,0,0,0,1,1,0,0,0,1.666471399354969,3,59.31,49.81,5,1,0,0,13,5,1,951.75,0,0,0 +4150,5104,9251,-9,9250,9253,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.703287581504,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,5,1,951.75,0,0,0 +4150,5104,9252,-9,9250,9253,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.0675637696717,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,5,1,951.75,0,0,0 +4150,5104,9253,9250,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,8.709904107077756,8.83488941142261,0,2,0,-9,11,0,2,99.67476057259923,0,0,0,35,1,3,1,2,1,2019,1,2,18,6,37,48,15,1,6,1,0,23.29294633230678,23.29294633230678,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,55.68,6,1,0,0,13,5,1,951.75,0,0,0 +4151,5105,9254,-9,9257,9256,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.390305672545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,3,1,1080,0,0,0 +4151,5105,9255,-9,9257,9256,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.7602095194487,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,1080,0,0,0 +4151,5105,9256,9257,-9,-9,1,1,1,29,1,1,2,0,2,-9,1,1,0,4,8.703064469476203,8.724405676545558,0,2,0,-9,7,0,5,53.97526110926751,0,1,0,24,2,4,3,-9,-9,2019,2,2,12,0,40,0,15,1,0,3,0,17.96771664164845,17.96771664164845,0,0,0,0,0,0,0,1,1,0,4.468543277167045,0,0,0,57.16,56.15,5,1,0,0,6,3,1,1080,0,0,0 +4151,5105,9257,9256,-9,-9,2,1,0,24,1,1,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,-5,-154.9801578429889,0,1,1,29,2,4,1,-9,-9,2019,3,1,21,8,0,20,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.38,70.16,4,1,1,0,6,3,1,1080,0,0,0 +4152,5106,9258,9261,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,3,8.031827212111828,8.196114742248186,0,2,0,-9,9,0,-5,56.67031383428186,0,0,1,43,2,4,1,-9,-9,2019,1,1,13,1,39,37,15,1,1,1,0,10.77898601232385,10.77898601232385,0,0,0,0,0,0,0,1,1,0,2.901914196352996,0,0,0,38.97,56.46,5,2,0,0,11,4,1,544.5,0,0,0 +4152,5106,9259,-9,9258,9261,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.829052687732,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,2,0,0,11,4,1,544.5,0,0,0 +4152,5106,9260,-9,9258,9261,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.4673239187129,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,11,4,1,544.5,0,0,0 +4152,5106,9261,9258,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,4,7.992575801015255,8.257400427014433,0,2,0,-9,9,0,5,116.7728280424744,0,0,0,38,1,3,1,2,2,2019,1,2,10,0,37,37,15,1,0,1,0,10.08187351252511,10.08187351252511,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,11,4,1,544.5,0,0,0 +4153,5107,9262,-9,-9,-9,1,1,0,83,2,0,0,0,2,-9,4,3,0,3,0,6.77713057213598,6.852417557540341,3,0,0,0,-9,0,-991.8565727038728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.198476394575825,6.832906694642066,0,0,53,45,6,1,0,0,4,2,1,405,0,0,0 +4154,5108,9263,-9,9264,9265,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.540735779953,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,5,1,1053,0,0,0 +4154,5108,9264,9265,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,2,8.680829390384128,8.815677874691939,0,2,0,-9,6,0,-8,175.0841632662618,0,0,0,55,2,3,1,1,-9,2019,1,2,11,1,40,39,15,1,1,1,0,25.02805007813352,25.02805007813352,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.71,35.37,5,1,0,0,9,5,1,1053,0,0,0 +4154,5108,9265,9264,-9,-9,2,1,1,55,1,0,3,0,2,-9,2,1,0,3,8.306199185849628,8.872417227647889,0,2,0,-9,6,0,8,-63.5732383091709,0,0,0,47,1,2,1,2,2,2019,1,1,16,4,50,54,15,1,4,1,0,15.93840131047946,15.93840131047946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.07,41.15,5,1,0,0,9,5,1,1053,0,0,0 +4155,5109,9266,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.407673497221657,8.117972689478204,0,3,0,0,0,-9,0,-957.098479534286,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,49,53,15,1,7,-9,0,9.94960272990693,9.94960272990693,0,0,0,0,0,0,0,1,1,0,.0261017755562875,0,0,0,41.76,57.81,3,1,0,0,5,4,1,332,0,0,0 +4156,5110,9267,-9,-9,-9,3,1,1,30,2,0,0,0,1,-9,2,1,0,4,8.605316907940026,8.379532985946765,0,3,0,0,0,-9,0,-1046.947078251721,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,38,15,1,1,-9,1,12.05947189203906,12.05947189203906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,5,4,1,133,0,0,0 +4157,5111,9268,9269,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,53,0,0,-72.45861147041163,0,0,0,71,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.31,57.72,2,1,0,0,7,2,1,427.5,0,0,0 +4157,5111,9269,9268,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,6.957327322466629,7.40322034197272,1,0,-9,53,0,0,21.39942790623842,0,0,0,71,2,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.583314687817783,7.134886370690977,0,0,49.11,52.88,6,1,0,0,7,2,1,427.5,0,0,0 +4158,5112,9270,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,4,6.499162862788567,6.742082127384253,0,3,0,0,0,-9,0,-978.1332109922505,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,8,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,47.35,5,1,0,0,2,2,0,158,0,0,0 +4159,5113,9271,9272,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.5217797810232,8.725664840108976,0,1,0,-9,4,0,5,123.6902535126021,0,0,0,45,2,4,1,3,3,2019,1,2,12,0,48,49,15,1,0,1,0,10.57559039217236,10.57559039217236,0,0,0,0,0,0,0,0,0,0,8.28092602320609,0,0,0,45.43,53.5,4,1,0,0,9,5,1,143.5,0,0,0 +4159,5113,9272,9271,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,4,8.314808320512773,8.447808267582879,0,1,0,-9,4,0,-5,35.39500958732801,0,0,0,50,2,3,1,-9,-9,2019,1,1,12,1,37,37,15,1,1,1,0,15.85443135677001,15.85443135677001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,9,5,1,143.5,0,0,0 +4159,5114,9273,-9,9272,9271,3,1,0,21,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-1130.691967485138,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,9,1,1,171,0,0,0 +4160,5115,9274,9275,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,3,6.840137548275544,6.826439349131836,0,1,0,-9,6,0,1,-24.45013348686419,0,1,1,24,1,4,1,-9,-9,2019,1,1,20,7,20,40,15,1,7,1,0,6.319280161737507,6.319280161737507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.13,40.48,5,1,0,0,9,4,1,1120,0,0,0 +4160,5115,9275,9274,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,4,8.463697570909172,8.485525637526091,0,1,0,-9,6,0,-1,24.58911421500014,0,1,0,25,1,3,1,-9,-9,2019,1,2,4,0,40,41,15,1,0,1,0,12.49838650641859,12.49838650641859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,9,4,1,1120,0,0,0 +4161,5116,9276,9277,-9,-9,1,1,0,31,1,1,1,0,1,-9,1,1,0,5,0,0,0,2,0,-9,9,0,0,126.1535129427858,0,0,1,31,2,5,1,2,3,2019,1,2,9,1,30,37,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,5,1,0,0,12,5,1,1144,0,0,0 +4161,5116,9277,9276,-9,-9,2,1,1,31,1,1,1,0,2,-9,2,1,0,5,9.289878250036594,9.609764753334094,0,2,0,-9,9,0,0,-62.15023181513169,0,0,0,31,1,5,1,1,2,2019,1,1,9,0,42,0,15,1,0,1,0,33.73207992612441,33.73207992612441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.72,51.02,5,1,0,0,12,5,1,1144,0,0,0 +4161,5116,9278,-9,9276,9277,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.2442565425156,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,1144,0,0,0 +4162,5117,9279,9280,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,5,8.773320729161949,8.53158377972817,0,2,0,-9,18,0,6,-24.45106073165158,0,0,0,36,1,3,1,3,3,2019,1,2,11,2,43,42,15,1,2,1,0,18.11948964967773,18.11948964967773,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.46,64.34999999999999,6,1,0,0,2,5,1,601.5,0,0,0 +4162,5117,9280,9279,-9,-9,2,1,0,36,1,0,1,0,1,-9,2,1,0,3,8.349985177819697,8.072841449029049,0,2,0,-9,18,0,-6,80.34686170184008,0,0,1,42,2,5,1,3,3,2019,1,1,14,2,35,35,15,1,2,1,0,9.138172613247411,9.138172613247411,0,0,0,0,0,0,0,1,1,0,0,0,8.726017487113182,3,22.48,58.87,2,1,0,0,2,5,1,601.5,0,0,0 +4163,5118,9281,-9,-9,-9,1,1,0,19,2,0,0,1,2,-9,7,2,0,3,7.858793643727249,7.708040630359925,0,3,0,-9,0,-9,0,-916.26211612108,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,24,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.77,65.61,5,1,0,0,9,3,1,642,0,0,0 +4164,5119,9282,9284,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,3,7.646370196456131,7.614871130435444,0,2,0,-9,7,0,-8,-143.4562110277841,0,0,1,47,2,2,1,2,3,2019,1,4,22,7,37,20,15,1,7,1,0,6.945171411698943,6.945171411698943,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.01,49.22,4,1,0,0,13,3,0,696.6666666666666,0,0,0 +4164,5119,9283,-9,9282,9284,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.5333696815911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,3,0,696.6666666666666,0,0,0 +4164,5119,9284,9282,-9,-9,4,1,1,47,1,0,1,0,2,-9,1,1,0,2,6.661184971408586,6.539798222223125,0,2,0,-9,7,0,8,-117.955297984018,0,0,0,39,2,3,1,-9,-9,2019,1,1,9,0,25,25,15,1,0,1,0,3.42399298921015,3.42399298921015,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.32,38.51,5,1,0,0,13,3,0,696.6666666666666,0,0,0 +4165,5120,9285,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,4,0,7.317016880817975,7.116014486761277,3,0,0,0,-9,0,-1030.986955675429,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,2.796111187592743,0,0,0,0,5.906110463734205,1,1,0,0,7.169240924213829,0,0,51.83,57.2,6,1,0,0,2,2,1,250,0,0,0 +4166,5121,9286,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,7.947499550373152,8.012011785732685,0,3,0,0,0,-9,0,-1173.86619216862,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,30,30,15,1,0,-9,0,9.901771726701849,9.901771726701849,0,0,0,0,0,0,0,0,0,0,2.286926389674974,0,0,0,53.43,33.64,6,1,0,0,2,3,1,1105,0,0,0 +4167,5122,9287,-9,-9,-9,1,1,1,96,3,0,0,0,3,-9,4,3,0,3,0,4.980429524715611,5.7615309820518,3,0,0,0,-9,0,-1079.062200742856,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,13.65006562162536,0,14.92591053134227,0,0,137.3606755596417,1,1,0,0,5.171127282630495,0,0,56,44,6,1,0,0,10,2,1,882,0,0,0 +4168,5123,9288,9289,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,5.723462347430459,5.263324240513452,1,0,-9,48,0,-1,3.869770192795245,0,0,0,74,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,35.75780476619785,0,0,0,0,1,0,1,0,5.348304845956261,0,0,48.63,21.19,4,1,0,0,5,2,0,966,0,0,0 +4168,5123,9289,9288,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,5.846976658932562,5.45524071931555,1,0,-9,49,0,1,-21.77614248247404,0,0,0,73,2,2,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,0,1,5.87899122018121,5.395643164637105,12.05479262692381,1,45.65,34.6,4,1,0,0,5,2,0,966,0,0,0 +4169,5124,9290,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,1.767400213914593,2.001397824077447,3,0,0,0,-9,0,-1134.24471821013,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.428329470692296,2.039549013738726,25.61261358044256,3,62.78,29.01,6,1,0,0,2,1,1,1918,0,0,0 +4170,5125,9291,9292,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,5.886877963536285,6.414097748918087,1,0,-9,41,0,-2,16.60740189615884,0,0,0,69,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.191506340278729,0,0,56.41,53.71,7,1,0,0,4,2,0,985.5,0,0,0 +4170,5125,9292,9291,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,5.390039541868481,5.173120382040344,1,0,-9,41,0,2,-47.6410699819383,0,0,0,67,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,22.55919624518943,0,0,0,0,1,1,0,0,5.136348433027609,0,0,67.12,25.66,6,1,0,0,4,2,0,985.5,0,0,0 +4171,5126,9293,-9,9294,-9,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-903.5768602972284,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,9,2,0,248,0,0,0 +4171,5126,9294,-9,-9,-9,1,1,0,44,3,0,2,0,3,-9,2,1,0,4,6.83474088997395,6.852965337929829,0,4,0,0,0,-9,0,-936.0022049580299,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,16,0,15,1,0,-9,0,6.09928985855871,6.09928985855871,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.97,46.65,4,2,0,1,9,2,0,248,0,0,0 +4172,5127,9295,9296,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,0,-118.6661884881654,0,0,0,73,2,2,3,3,-9,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,32.12,6,1,0,0,4,1,1,576,0,0,0 +4172,5127,9296,9295,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,4.32131328727396,4.148834015489424,1,0,-9,8,0,0,-17.02270270142235,0,0,0,73,3,2,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.008192253461519,3.72996892847238,0,0,62.52,31.14,7,1,0,0,4,1,1,576,0,0,0 +4173,5128,9297,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1047.714053132696,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,5,1,1,163,0,0,0 +4173,5129,9298,9299,-9,-9,3,1,1,47,1,0,0,0,2,-9,2,1,0,3,7.564866104151672,7.751559323665112,0,1,0,-9,2,0,12,-203.2488082395479,-9,0,0,35,2,4,1,-9,-9,2019,1,2,6,0,41,0,15,1,0,1,0,7.253156469086695,7.253156469086695,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,52.08,7,1,0,0,5,5,1,1709,0,0,0 +4173,5129,9299,9298,9297,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,4,8.49836134271084,8.320628632320151,0,1,0,-9,2,0,-12,161.3785055184819,0,0,1,47,2,3,1,3,-9,2019,1,3,7,0,42,40,15,1,0,1,0,12.34679472348577,12.34679472348577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,1,1709,0,0,0 +4174,5130,9300,9301,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,4.810229064806264,4.241256794786063,1,0,-9,51,-9,5,48.36413762183737,-9,0,0,71,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.085415192996896,4.373158034362144,0,0,52,46,6,3,0,0,7,1,1,659.5,0,0,0 +4174,5130,9301,9300,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,51,-9,-5,59.91685122761455,-9,0,0,76,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.491433480857893,0,0,0,40.03,30.18,2,3,0,0,7,1,1,659.5,0,0,0 +4175,5131,9302,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,4,0,5.948137942237197,5.884428772851168,3,0,0,0,-9,0,-1055.199130848,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8631412281986944,5.802255463367356,18.33747380561005,3,59.53,56.44,6,1,0,0,6,2,1,909,0,0,0 +4176,5132,9303,9305,-9,-9,2,1,0,36,1,1,1,0,1,-9,5,1,0,3,6.508843230842699,6.759709875070501,0,2,0,-9,5,0,1,-132.3760466557668,0,0,1,35,2,4,1,-9,-9,2019,1,1,18,6,15,25,15,1,6,1,0,4.959900372000326,4.959900372000326,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.1,57.79,5,1,0,0,9,2,0,436.3333333333333,0,0,0 +4176,5132,9304,-9,9303,9305,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-964.6266442451152,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,2,0,436.3333333333333,0,0,0 +4176,5132,9305,9303,-9,-9,1,1,1,35,1,1,1,0,2,-9,1,1,0,4,0,0,0,2,0,-9,5,0,-1,25.629238605477,0,0,0,36,1,3,1,2,2,2019,1,2,10,2,0,45,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.25,36.86,6,1,0,0,9,2,0,436.3333333333333,0,0,0 +4177,5133,9306,9307,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,8.28100225792053,8.487894882558441,1,0,-9,7,0,-1,114.2881831193086,0,0,0,70,1,2,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.936652369734229,8.401035510199671,2.205733307841631,3,57.92,51.82,6,1,0,0,2,4,1,741,0,0,0 +4177,5133,9307,9306,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,2,0,3.729043258368442,3.631314572991495,1,0,-9,7,0,1,1.951072477470384,0,0,0,69,1,3,3,2,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.303815940918775,3.960440209718106,0,0,54.66,34.54,6,1,0,0,2,4,1,741,0,0,0 +4178,5134,9308,9309,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,2,8.925700656175032,8.913408778449178,0,1,0,-9,30,0,9,45.90669475328073,0,0,0,53,1,3,3,3,2,2019,2,2,6,0,44,44,15,1,0,3,0,20.82934144202711,20.82934144202711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.85,49.77,6,2,0,0,8,5,1,1194,0,0,0 +4178,5134,9309,9308,-9,-9,2,1,0,53,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,30,0,0,138.0810326074995,0,0,0,62,1,2,1,3,-9,2019,3,1,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.22,58.49,6,3,0,0,8,5,1,1194,0,0,0 +4179,5135,9310,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,5,8.607754953560381,8.764791596886726,0,3,0,0,0,-9,0,-973.346968665285,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,41,42,15,1,0,-9,0,14.26455498002209,14.26455498002209,0,0,0,0,0,0,0,0,0,0,7.970503967748268,0,0,0,57.06,57.76,6,1,0,0,12,5,1,156,0,0,0 +4180,5136,9311,-9,9313,9312,3,1,0,17,2,0,2,1,2,-9,7,2,0,4,3.84923671360639,3.856647173983784,0,2,0,0,0,-9,0,-1056.127075744849,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.97,56.11,6,2,0,0,9,5,1,905.5,0,0,0 +4180,5136,9312,9313,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,5,9.467421541918895,9.218149650078228,0,2,0,-9,25,0,0,-23.04170886181754,0,0,0,46,1,4,1,1,1,2019,1,2,12,4,37,42,15,1,4,1,0,39.8215848470721,39.8215848470721,0,0,0,0,0,0,0,0,0,0,4.622196763495993,0,0,0,51.73,58.82,6,1,0,0,9,5,1,905.5,0,0,0 +4180,5136,9313,9312,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,4,8.873232339277338,8.903911160890523,0,2,0,-9,25,0,0,-123.6831217289019,0,0,0,46,1,5,1,3,3,2019,1,1,14,4,29,34,15,1,4,1,0,36.49316823346403,36.49316823346403,0,0,0,0,0,0,0,0,0,0,2.247581261613578,0,0,0,48.81,59.91,6,2,0,0,9,5,1,905.5,0,0,0 +4180,5136,9314,-9,9313,9312,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-986.7557139680276,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,5,1,0,0,9,5,1,905.5,0,0,0 +4181,5137,9315,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,5,8.184131519173912,7.531266349123351,0,1,0,-9,1,-9,7,147.2256277349131,-9,0,0,-9,-9,-9,-9,3,3,2019,1,2,12,2,37,0,15,1,2,-9,0,9.738075046128586,9.738075046128586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,4,1,0,0,7,4,1,226,0,0,0 +4181,5138,9316,-9,-9,-9,2,1,1,44,2,0,0,0,1,-9,2,1,0,3,8.052615797257969,8.215856302971636,0,1,0,-9,1,-9,-7,9.661568156991319,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,9,0,35,0,15,1,0,-9,0,9.581413774354925,9.581413774354925,0,0,0,0,0,0,0,0,0,0,6.646593013659492,0,0,0,55.75,50.3,6,1,0,0,7,4,1,1993,0,0,0 +4182,5139,9317,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,1,0,6.73444196420019,6.780141008684473,3,0,0,0,-9,0,-1011.681884333777,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.809011109257009,6.992809269152532,0,0,55.39,16.88,3,1,0,0,9,2,1,499,0,0,0 +4183,5140,9318,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,4,8.392740631733444,8.563381625057408,0,3,0,0,0,-9,0,-941.4132863607178,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,40,15,1,0,-9,0,19.45654406931794,19.45654406931794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,11,5,1,1536,0,0,0 +4184,5141,9319,9320,-9,-9,2,1,0,64,1,0,0,0,3,-9,6,3,0,3,7.592486730987416,7.392474994437845,0,1,0,-9,43,0,-7,149.1940530533508,0,0,0,71,2,3,3,3,2,2019,4,1,11,0,24,20,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,110.0978952960878,1,49,48,5,3,0,1,8,2,1,927.5,0,0,0 +4184,5141,9320,9319,-9,-9,1,1,1,71,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,42,0,7,-33.96120890995403,-9,0,0,64,3,3,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.81654287192751,0,0,0,52,48,5,3,0,0,8,2,1,927.5,0,0,0 +4184,5142,9321,-9,9319,9320,3,1,0,46,2,0,0,0,2,-9,2,1,0,4,7.464910613192731,7.655070882200948,0,3,0,0,0,-9,0,-1064.41434572079,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,20,0,15,1,1,-9,1,10.6140773766122,10.6140773766122,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,55,5,3,0,0,8,3,1,977,0,0,0 +4184,5143,9322,-9,9319,9320,4,1,1,43,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1033.065038835282,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,5,3,1,0,8,1,1,127,0,0,0 +4185,5144,9323,9326,-9,-9,1,1,1,57,1,0,2,0,1,-9,4,3,0,4,0,8.644763592157522,9.076555174949727,2,0,-9,26,0,3,89.5277259385285,0,0,0,54,1,4,1,2,1,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.445522942304865,8.950021842764388,0,0,57.16,56.15,6,1,0,0,9,5,1,617.5,0,0,0 +4185,5144,9324,-9,9326,9323,5,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.299482814759,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,53.29,5,1,0,0,9,5,1,617.5,0,0,0 +4185,5144,9325,-9,9326,9323,6,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.205316482073,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,5,1,617.5,0,0,0 +4185,5144,9326,9323,-9,-9,2,1,0,54,1,0,2,0,1,-9,2,1,0,4,8.715197749917834,8.695971487419532,0,2,0,-9,25,0,-3,123.4751433258035,0,0,0,57,1,4,3,1,1,2019,2,1,12,0,39,38,15,1,0,4,0,17.50665629214392,17.50665629214392,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,7,1,0,0,9,5,1,617.5,0,0,0 +4185,5145,9327,-9,9326,9323,3,1,1,20,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-909.0298438971603,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,9,1,1,694,0,0,0 +4185,5146,9328,-9,9326,9323,4,1,1,19,2,0,2,0,2,1,97,3,0,4,4.816759528309349,5.201469250843834,0,3,0,0,0,-9,0,-1045.161576840236,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2443204409557426,0,0,0,48,59,5,1,0,0,9,2,1,1221,0,0,0 +4186,5147,9329,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1095.226005784787,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,7,1,1,2567,0,0,0 +4187,5148,9330,9331,-9,-9,1,1,0,89,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,48,0,6,-95.43432957190305,0,0,0,83,3,2,3,-9,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,4.344096183139389,46.92707894017953,0,0,0,0,1,1,0,0,0,129.0342920104624,1,48,34,6,1,0,0,11,2,1,507,0,0,0 +4187,5148,9331,9330,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,4.230616061428825,3.842952371217097,1,0,-9,48,0,-6,-78.19677504408543,0,0,0,89,3,2,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.035280099091129,4.154488005205222,0,0,49,35,5,1,0,0,11,2,1,507,0,0,0 +4188,5149,9332,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,5,8.956053074598461,8.838212364654996,0,1,0,-9,2,0,5,30.62212959355451,0,0,1,-9,-9,-9,-9,2,2,2019,-9,2,5,0,40,42,15,1,0,-9,0,21.42551751662638,21.42551751662638,0,0,0,0,0,0,0,0,0,0,7.49546461898951,0,0,0,54.1,59.11,7,1,0,0,2,5,1,746,0,0,0 +4189,5150,9333,9334,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.546734474522253,8.73345678150705,7.404548510587099,1,0,-9,29,0,-7,52.94256929200065,0,0,0,65,2,4,3,3,3,2019,2,2,10,0,44,44,15,1,0,4,0,14.60443096644222,14.60443096644222,0,0,0,0,0,0,0,1,1,0,2.543423997984034,7.403244313590716,0,0,54.2,57.49,6,1,0,0,6,5,1,192.5,0,0,0 +4189,5150,9334,9333,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,8.032093434762965,7.746581162631131,1,0,-9,11,0,7,-67.72614224139645,0,0,0,58,2,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4138879565909,7.885482544434048,0,0,60.69,53.18,7,1,0,0,6,5,1,192.5,0,0,0 +4190,5151,9335,9336,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,2,7.397177812842822,7.38861029925975,4.39998620136104,1,0,-9,39,0,3,36.37980614018477,0,0,0,57,3,3,1,2,2,2019,1,1,13,2,30,25,15,1,2,1,0,7.355366936016702,7.355366936016702,0,0,0,0,0,0,0,0,0,0,0,4.718149849659095,0,0,52.81,31.17,5,1,0,0,2,4,1,1565.5,0,0,0 +4190,5151,9336,9335,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,3,8.029212986720083,7.879742326063894,0,1,0,-9,39,0,-3,142.2484876151618,0,0,0,60,2,2,1,3,3,2019,1,2,19,7,25,25,15,1,7,1,0,12.25058229515832,12.25058229515832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.52,48.92,6,1,0,0,2,4,1,1565.5,0,0,0 +4191,5152,9337,-9,-9,-9,1,1,0,66,3,0,1,0,2,-9,4,3,0,5,0,6.962327409590342,6.973153907090262,4,0,0,0,-9,0,-1095.945940039626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.717710292661765,0,0,57.06,57.76,2,1,0,0,2,2,1,2240,0,0,0 +4191,5153,9338,-9,9337,-9,2,1,0,34,2,0,1,0,2,-9,2,1,0,3,8.310680905837472,8.155423359902821,4.127032383741086,3,0,0,0,-9,0,-820.1307641011939,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,40,15,1,0,-9,1,12.38740487790003,12.38740487790003,0,0,0,0,0,0,0,1,1,0,4.922222781039753,0,0,0,43.03,53.23,6,1,0,0,2,4,1,99,0,0,0 +4192,5154,9339,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,6.831830739976698,6.905698614336902,0,3,0,0,0,-9,0,-963.0064111839437,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,8,16,15,1,0,-9,0,16.59904481219058,16.59904481219058,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.79,32.24,6,1,0,0,9,2,0,1990,0,0,0 +4192,5155,9340,-9,9339,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.75956423825608,7.790624211235873,0,3,0,0,0,-9,0,-979.6114933226946,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,38,37,15,1,2,-9,1,5.846797957932258,5.846797957932258,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,58,5,1,0,0,9,3,0,548,0,0,0 +4193,5156,9341,9342,-9,-9,1,1,0,45,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,11,0,-2,0,0,0,0,47,2,4,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,7.33,5,1,0,0,12,1,0,167,0,0,0 +4193,5156,9342,9341,-9,-9,2,1,1,47,1,0,0,0,2,-9,97,3,0,4,0,0,0,1,0,-9,11,0,2,0,0,0,0,45,2,1,3,2,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123.0901383972645,1,51.83,57.2,6,1,0,0,12,1,0,167,0,0,0 +4194,5157,9343,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,2,1,0,2,8.180949780725404,8.007299929068788,0,3,0,0,0,-9,0,-948.9313937399671,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,42,35,15,1,5,-9,0,7.747833217522667,7.747833217522667,0,0,0,0,0,0,0,0,0,0,6.603886743119888,0,0,0,33.07,39.12,5,4,0,0,8,4,0,445,0,0,0 +4195,5158,9344,9345,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,9.672168466956085,9.78579953639783,0,2,0,-9,19,0,3,27.36828202025925,0,0,0,39,1,3,3,2,2,2019,2,2,7,0,46,45,15,1,0,3,0,39.46243370288327,39.46243370288327,0,0,0,0,0,0,0,0,0,0,4.817378263200047,0,0,0,56.29,52.37,7,3,0,0,8,5,1,904.6666666666666,0,0,0 +4195,5158,9345,9344,-9,-9,2,1,0,39,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-3,-14.47527706372829,0,0,1,42,1,4,1,3,2,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.541336970253215,0,0,0,44.13,51.34,5,3,0,0,8,5,1,904.6666666666666,0,0,0 +4195,5158,9346,-9,9345,9344,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.441151762775,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,5,3,0,0,8,5,1,904.6666666666666,0,0,0 +4196,5159,9347,9349,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.546027586227963,8.540593953077932,0,2,0,-9,17,0,3,-157.9977929407589,0,0,0,50,2,3,1,-9,2,2019,1,2,7,0,40,40,15,1,0,1,0,11.82082061067218,11.82082061067218,0,0,0,0,0,0,0,1,1,0,7.422431339507558,0,0,0,57.16,56.15,6,1,0,0,10,4,1,389.3333333333333,0,0,0 +4196,5159,9348,-9,9349,9347,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.599580845889,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,389.3333333333333,0,0,0 +4196,5159,9349,9347,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,3,6.900228987226518,7.235538766446115,0,2,0,-9,17,0,-3,-85.98308817719639,0,0,0,53,2,4,1,2,-9,2019,1,1,12,3,8,10,15,1,3,1,0,12.95674937282892,12.95674937282892,0,0,0,0,0,0,0,1,1,0,5.374603485073194,0,0,0,56.16,40.67,7,1,0,0,10,4,1,389.3333333333333,0,0,0 +4197,5160,9350,9352,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,3,8.680254667802188,8.98972930698409,0,2,0,-9,7,0,8,80.15587370137722,0,0,0,35,3,1,1,2,3,2019,1,2,17,6,39,40,15,1,6,1,0,18.123798793382,18.123798793382,0,0,0,0,0,0,0,1,1,0,4.647800134017976,0,0,0,54.36,39.67,6,1,0,0,5,4,1,1642,0,0,0 +4197,5160,9351,-9,9352,9350,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1201.976862461935,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,1642,0,0,0 +4197,5160,9352,9350,-9,-9,2,1,0,35,1,0,2,0,3,-9,2,1,0,1,7.393749216852894,7.423488645405346,0,2,0,-9,7,0,-8,-51.28151785773989,0,0,1,43,1,3,1,-9,-9,2019,1,1,29,10,22,39,15,1,10,1,0,9.652219387575444,9.652219387575444,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.81,52.22,6,5,0,0,5,4,1,1642,0,0,0 +4197,5160,9353,-9,9352,9350,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.844104468107,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1642,0,0,0 +4198,5161,9354,9355,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,42,-9,-5,6.945112838962915,-9,0,0,76,3,1,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.4670595574085,1,53.47,41.64,7,1,0,0,2,2,1,533.5,0,0,0 +4198,5161,9355,9354,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,0,6.125077565383358,6.087661359225337,1,0,-9,42,-9,5,124.8715831664537,-9,0,0,71,3,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,125.5258889208471,0,0,0,0,1,1,0,0,6.319970770897831,0,0,33.95,23.95,6,1,0,0,2,2,1,533.5,0,0,0 +4199,5162,9356,9357,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,2,0,6.80413793507523,7.142718087075006,1,0,-9,28,0,1,-66.66437858497694,0,0,0,62,3,2,3,3,3,2019,4,2,11,0,0,35,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.009835229806686,0,0,47.46,36.51,4,1,0,0,2,3,1,371,0,0,0 +4199,5162,9357,9356,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,2,0,7.05042749901706,7.293574138004241,1,0,-9,28,0,-1,-50.03153907759951,0,0,0,63,2,2,3,3,2,2019,4,1,8,0,0,35,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.414815001791468,7.193721158791603,15.4384388015215,3,42.19,17.56,5,1,0,0,2,3,1,371,0,0,0 +4199,5163,9358,-9,9357,9356,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.270367381706718,8.284182862949571,0,3,0,0,0,-9,0,-1017.039848034853,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,40,15,1,0,-9,1,10.60297185190964,10.60297185190964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,2,4,1,1114,0,0,0 +4200,5164,9359,9360,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.425185174220449,8.183006109068589,0,2,0,-9,10,0,2,-51.4570469946549,0,0,0,42,3,2,1,-9,-9,2019,1,2,12,0,43,82,15,1,0,1,0,10.82674747494364,10.82674747494364,0,0,0,0,0,0,0,1,1,0,2.253416036077883,0,0,0,39.8,58.53,4,1,0,1,11,3,1,702,0,0,0 +4200,5164,9360,9359,-9,-9,2,1,0,42,1,0,1,0,3,-9,2,1,0,2,6.250229923064559,6.571664691729685,0,2,0,-9,10,0,-2,31.84137724493421,0,0,1,44,2,4,1,3,2,2019,1,1,15,3,10,10,15,1,3,1,0,5.74442595150759,5.74442595150759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,29.61,5,1,0,0,11,3,1,702,0,0,0 +4200,5164,9361,-9,9360,9359,5,1,0,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1091.718038571855,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,1,0,0,11,3,1,702,0,0,0 +4200,5165,9362,-9,9360,9359,4,1,0,20,2,0,1,0,2,-9,2,1,0,4,7.959727394764435,8.168783842717506,0,3,0,0,0,-9,0,-932.4087757245735,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,42,35,15,1,0,-9,1,8.294969382383853,8.294969382383853,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,4,1,0,0,11,4,1,895,0,0,0 +4201,5166,9363,9364,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,3,8.105485722869421,8.071415756465791,4.394595539405313,1,0,-9,28,0,2,-26.53164092845274,0,0,0,63,1,2,1,-9,-9,2019,1,1,6,0,40,44,15,1,0,1,0,11.66355890002461,11.66355890002461,0,0,0,0,0,0,0,0,0,0,2.269878120492568,4.71751422128078,0,0,57.33,53.46,7,1,0,0,5,4,1,298.5,0,0,0 +4201,5166,9364,9363,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,2,8.059396175961636,8.051840078006375,5.280157821339809,1,0,-9,28,0,-2,-61.5146517916906,0,0,0,65,3,3,1,3,3,2019,1,2,12,0,34,0,15,1,0,1,0,11.43227875001586,11.43227875001586,0,0,0,0,0,0,0,0,0,0,0,5.671721169886685,0,0,39.56,37.64,3,1,0,0,5,4,1,298.5,0,0,0 +4202,5167,9365,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,8.324891184019892,7.937809211941786,0,3,0,0,0,-9,0,-1187.60719186192,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,50,46,15,1,0,-9,0,7.696518129959759,7.696518129959759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.62,47.75,7,1,0,0,4,4,0,148,0,0,0 +4202,5168,9366,-9,9365,-9,2,1,1,31,2,0,0,0,2,-9,2,1,0,4,7.86851300309635,7.577825422108601,0,3,0,0,0,-9,0,-974.1376103093387,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,40,0,15,1,1,-9,1,6.00484489874275,6.00484489874275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,4,3,0,152,0,0,0 +4203,5169,9367,9368,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,4,9.641741993101791,9.781364837096653,0,1,0,-9,6,0,-6,0,0,0,0,52,1,4,1,2,2,2019,1,1,9,0,50,50,15,1,0,1,0,40.01447143358159,40.01447143358159,0,0,0,0,0,0,0,0,0,0,7.428304977358065,0,0,0,57.16,56.15,6,1,0,0,2,5,1,880,0,0,0 +4203,5169,9368,9367,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,4,9.68698096029178,9.563110380379472,0,1,0,-9,6,0,6,0,0,0,0,46,1,4,1,2,2,2019,1,2,11,0,50,50,15,1,0,1,0,39.3539307654672,39.3539307654672,0,0,0,0,0,0,0,0,0,0,6.661621432488811,0,11.3095392721649,3,52.23,55.6,6,1,0,0,2,5,1,880,0,0,0 +4204,5170,9369,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,7.615853332573232,7.422289130001698,0,3,0,0,0,-9,0,-1027.273904589677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,33,15,1,0,-9,0,6.789782540407742,6.789782540407742,0,0,0,0,0,0,0,1,1,0,0,0,2.212419875080155,3,48,54.77,5,1,0,0,13,3,1,343,0,0,0 +4205,5171,9370,9371,-9,-9,1,1,0,52,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,22,0,2,-41.6077561410754,0,0,0,50,3,4,1,2,2,2019,1,2,9,1,60,65,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.25093345957451,3,60.29,52.11,7,1,0,0,4,2,1,408,0,0,0 +4205,5171,9371,9370,-9,-9,2,1,1,50,1,0,0,0,3,-9,1,1,0,4,7.073036750126001,6.850133346898559,0,1,0,-9,10,0,-2,105.7274471963692,0,0,0,52,2,3,1,-9,-9,2019,1,1,9,0,80,90,15,1,1,1,0,1.564722229443089,1.564722229443089,0,0,0,0,0,0,0,0,0,0,7.776804407883421,0,0,0,52,55,6,1,0,0,4,2,1,408,0,0,0 +4206,5172,9372,9373,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.351139545552073,8.659184956382806,0,1,0,-9,30,0,0,-26.12105393007302,0,0,0,52,2,3,1,-9,-9,2019,1,1,10,0,34,34,15,1,0,1,0,12.34089836831736,12.34089836831736,0,0,0,0,0,0,0,0,0,0,0,0,3.871963131487261,3,47.07,53.97,7,1,0,0,2,5,1,1091.5,0,0,0 +4206,5172,9373,9372,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.71225885030232,8.546626618837699,0,1,0,-9,30,0,0,-51.87167143265573,0,0,0,52,2,3,1,-9,-9,2019,1,2,10,0,40,0,15,1,0,1,0,14.21713916752876,14.21713916752876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,2,5,1,1091.5,0,0,0 +4207,5173,9374,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-973.2593093788714,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.717597875578246,3,39.99,23.73,3,1,0,0,11,1,0,1108,0,0,0 +4208,5174,9375,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-930.7428855034099,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,13,1,0,1185,0,0,0 +4209,5175,9376,9377,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,2,7.657963255436314,7.75086932389737,0,1,0,-9,28,0,2,94.92083832356714,0,0,0,51,1,4,1,2,3,2019,1,2,14,2,37,37,15,1,2,1,0,6.837510970902856,6.837510970902856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.05,24.81,5,3,0,0,2,5,1,856.6666666666666,0,0,0 +4209,5175,9377,9376,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,4,8.299881778977454,8.558424883161814,0,1,0,-9,28,0,-2,44.37416366600306,0,0,0,53,2,2,1,3,3,2019,1,1,11,0,37,37,15,1,0,1,0,14.30286785642232,14.30286785642232,0,0,0,0,0,0,0,1,1,0,0,0,0,2,50.25,54.04,5,3,0,0,2,5,1,856.6666666666666,0,0,0 +4209,5175,9378,-9,9377,9376,4,1,1,17,2,0,0,1,2,0,7,2,0,4,5.781555747150043,5.399628716795601,0,1,0,0,0,-9,0,-967.1966147827345,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,9,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,3,0,0,2,5,1,856.6666666666666,0,0,0 +4209,5176,9379,-9,9377,9376,3,1,0,22,2,0,0,0,2,0,7,2,0,3,5.718519943778738,5.618867124460844,0,3,0,0,0,-9,0,-1103.700339777515,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,19,7,3,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.405924044174188,0,7.106113010002225,3,24.47,61.54,3,3,0,0,2,2,1,1779,0,0,0 +4210,5177,9380,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,3,8.235458683517029,8.188329954435376,0,3,0,0,0,-9,0,-986.3821271982957,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,50,55,15,1,7,-9,0,7.570912754153943,7.570912754153943,0,0,0,0,0,0,0,0,0,0,4.032098462862638,0,0,0,45.52,50.79,4,1,0,0,9,4,1,351,0,0,0 +4211,5178,9381,9382,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,5,8.544481942871959,8.547320101662207,0,1,0,-9,1,-9,-1,-94.19916246797276,-9,1,1,25,1,5,1,-9,-9,2019,1,1,9,0,46,0,15,1,0,1,0,14.74246924059134,14.74246924059134,0,0,0,0,0,0,0,0,0,0,5.701025221916405,0,0,0,54.1,59.11,6,1,0,0,5,5,0,478,0,0,0 +4211,5178,9382,9381,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.585582551898467,8.670402706069508,0,1,0,1,1,-9,1,139.5453641975312,0,1,0,24,1,5,1,-9,-9,2019,1,2,7,0,48,45,15,1,0,1,0,18.12496080304602,18.12496080304602,0,0,0,0,0,0,0,0,0,0,4.56119215052779,0,0,0,57.06,57.76,6,1,0,0,5,5,0,478,0,0,0 +4212,5179,9383,9384,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,4,0,0,0,1,0,-9,7,0,5,77.95764250352805,0,0,0,29,2,5,1,-9,-9,2019,1,1,11,0,0,47,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,5,1,0,0,2,4,1,375,0,0,0 +4212,5179,9384,9383,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,5,8.527777291437825,8.283592276503532,0,1,0,-9,7,0,-5,73.11823311262013,0,1,1,34,1,4,1,2,1,2019,1,2,7,0,40,42,15,1,0,1,0,12.30954698219174,12.30954698219174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.27,58.55,6,2,0,0,2,4,1,375,0,0,0 +4213,5180,9385,9386,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,4,9.78895686496864,9.92695260266547,0,1,0,-9,6,0,0,-119.8032182329584,0,0,0,57,2,4,1,-9,-9,2019,1,1,9,0,40,50,15,1,0,1,0,47.7157609427066,47.7157609427066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,6,1,0,0,7,5,1,822,0,0,0 +4213,5180,9386,9385,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.569969344933884,7.616747340200236,0,1,0,-9,35,0,0,59.92268012070598,0,0,0,57,1,4,1,3,3,2019,1,2,6,0,30,27,15,1,0,1,0,7.890384052368725,7.890384052368725,0,0,0,0,0,0,0,0,0,0,5.475447459248669,0,14.98895548190421,3,57.16,56.15,6,1,0,0,7,5,1,822,0,0,0 +4214,5181,9387,9388,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,2,8.108531547706471,8.351091602614991,4.72669134297109,1,0,-9,8,0,-2,101.6168956823871,0,0,0,59,2,3,3,3,3,2019,2,1,16,3,37,38,15,1,3,3,0,13.1848462788965,13.1848462788965,0,0,0,0,0,0,0,1,1,0,4.641929916786204,4.955058788347932,0,0,52.9,34.31,6,1,0,1,5,3,1,1920.5,0,0,0 +4214,5181,9388,9387,-9,-9,1,1,1,59,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,8,0,2,-47.63370799781243,0,0,0,57,3,2,1,2,2,2019,3,2,18,6,0,38,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.149960185830569,0,0,0,51.02,49.39,3,1,1,0,5,3,1,1920.5,0,0,0 +4215,5182,9389,9390,-9,-9,2,1,0,44,1,0,0,0,2,-9,1,1,0,4,8.067681248539831,8.132740662745054,4.5273257372673,1,0,-9,7,0,-10,30.53535924202271,0,0,1,54,3,3,1,2,2,2019,1,1,7,0,50,45,15,1,0,1,0,8.453524148864407,8.453524148864407,0,0,0,0,0,0,0,0,0,0,4.154460687594531,0,0,0,52.93,55.31,6,1,0,0,9,5,1,1686,0,0,0 +4215,5182,9390,9389,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,3,8.900800650298695,9.194983036941824,0,1,0,-9,7,0,10,19.94059611047878,0,0,0,44,2,4,1,2,3,2019,1,2,6,0,65,70,15,1,0,1,0,15.51591717025269,15.51591717025269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,6,1,0,0,9,5,1,1686,0,0,0 +4216,5183,9391,9392,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,7.666700226736742,7.766048273124171,1,0,-9,5,0,-11,143.5067440079606,0,0,0,73,2,3,3,3,1,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.557384463141894,7.973855041756284,0,0,26.09,60.94,5,1,0,0,9,3,1,511,0,0,0 +4216,5183,9392,9391,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.784417555872574,6.713368439764897,1,0,-9,5,0,11,48.27926367952222,0,0,0,62,1,4,3,-9,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.729850230587008,0,0,40.87,44.58,5,1,0,0,9,3,1,511,0,0,0 +4217,5184,9393,9394,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,3,7.420361762794903,7.479936928883729,0,2,0,-9,26,0,-1,-60.05193836824922,0,0,1,44,1,4,1,2,1,2019,1,2,11,4,15,8,15,1,4,1,0,11.37823881765928,11.37823881765928,0,0,0,0,0,0,0,1,1,0,3.97401676976587,0,0,0,40.82,40.96,6,1,0,0,7,4,1,560,0,0,0 +4217,5184,9394,9393,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.900775007245102,9.101269254528823,0,2,0,-9,20,0,1,-95.70500509405785,0,0,0,43,1,3,1,3,2,2019,1,1,15,4,37,37,15,1,4,1,0,22.02502143118539,22.02502143118539,0,0,0,0,0,0,0,1,1,0,3.426167583652806,0,0,0,40.52,62.31,6,1,0,0,7,4,1,560,0,0,0 +4217,5184,9395,-9,9393,9394,3,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-989.3467838643298,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,7,4,1,560,0,0,0 +4217,5184,9396,-9,9393,9394,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.484905117805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,560,0,0,0 +4218,5185,9397,9398,-9,-9,2,1,0,64,1,0,0,0,1,-9,1,1,0,3,6.934962975158934,6.714200822812689,5.824822066613923,1,0,-9,7,0,-7,57.83600340368726,0,0,0,71,1,3,3,-9,-9,2019,2,1,16,4,15,20,15,1,4,4,0,7.006010338456943,7.006010338456943,0,0,0,0,0,0,0,1,1,0,.2225394353622717,5.819822903758046,0,0,47.43,54.04,6,1,0,0,6,4,1,622,0,0,0 +4218,5185,9398,9397,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,7.401540951498445,8.68651292597669,7.998304881028078,1,0,-9,7,0,7,25.40261138468913,0,0,0,64,1,3,1,2,2,2019,3,2,7,0,20,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.567378966398763,8.33249455553362,0,0,57.33,53.46,6,1,0,0,6,4,1,622,0,0,0 +4219,5186,9399,9400,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,3,7.606580135601013,7.90580030664553,0,1,0,-9,1,-9,11,68.46886130325512,-9,0,0,47,2,5,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,8.143724639130143,8.143724639130143,0,0,0,0,0,0,0,0,0,0,3.327500808372446,0,0,0,51,49,5,1,0,0,4,4,1,306.5,0,0,0 +4219,5186,9400,9399,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,5,7.803680580375216,8.117678353500454,0,1,0,1,1,-9,-11,-62.08338096576205,0,0,0,58,3,3,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,9.54645907935444,9.54645907935444,0,0,0,0,0,0,0,0,0,0,4.120087150730698,0,0,0,51.88,56.64,7,1,0,0,4,4,1,306.5,0,0,0 +4220,5187,9401,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,2,1,0,2,6.722485366563995,6.663630013553915,0,3,0,0,0,-9,0,-1058.567531600134,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,15,0,15,1,0,-9,0,7.360765964061931,7.360765964061931,1,0,0,2.314977731831195,0,0,0,1,0,1,0,0,0,0,57.38,25.76,6,1,0,0,5,2,1,1023,0,0,0 +4220,5188,9402,-9,9401,-9,2,1,1,43,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-877.2791982769655,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.41,38.25,2,1,1,1,5,1,1,590,0,0,0 +4221,5189,9403,-9,9406,9405,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-987.8360767630297,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,6,5,1,464.5,0,0,0 +4221,5189,9404,-9,9406,9405,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.2747655434138,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,6,5,1,464.5,0,0,0 +4221,5189,9405,9406,-9,-9,2,1,1,33,1,2,2,0,1,-9,1,1,0,5,8.991072265663679,9.101998656665231,0,2,0,-9,10,0,-1,16.78045764589971,-9,0,0,34,1,5,1,-9,-9,2019,1,1,8,0,50,0,15,1,0,1,0,18.63459783654417,18.63459783654417,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,1,0,0,6,5,1,464.5,0,0,0 +4221,5189,9406,9405,-9,-9,1,1,0,34,1,2,2,0,1,-9,5,1,0,5,8.610586454561489,8.806915499316682,0,2,0,-9,10,0,1,-156.1451599655621,0,0,1,33,1,5,1,2,1,2019,1,2,6,0,20,25,15,1,0,1,0,20.68474516679863,20.68474516679863,0,0,0,0,0,0,0,1,1,0,.4455918772262831,0,0,0,54.1,59.11,6,1,0,0,6,5,1,464.5,0,0,0 +4222,5190,9407,9408,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,3,7.750250818228084,8.30463489517304,0,1,0,-9,7,0,3,63.72834933315158,0,0,0,48,1,4,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,9.832064834464404,9.832064834464404,0,0,0,0,0,0,0,0,0,0,4.377097145400776,0,0,0,57.33,53.46,6,1,0,0,10,5,1,380.5,0,0,0 +4222,5190,9408,9407,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,4,8.391686122160895,8.408810756263952,6.595124318921754,1,0,-9,7,0,-3,58.00262619819303,0,0,0,51,2,3,1,-9,-9,2019,1,1,8,0,38,26,15,1,0,1,0,10.28117148156938,10.28117148156938,0,0,0,0,0,0,0,0,0,0,6.788399287121532,0,0,0,48.37,49.31,6,1,0,0,10,5,1,380.5,0,0,0 +4223,5191,9409,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1050.007718499317,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.02,22.25,3,1,0,0,2,1,0,600,0,0,0 +4224,5192,9410,9411,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,2,9.263365565906136,8.853358179752162,0,1,0,-9,9,0,1,-61.18812207664971,0,0,0,59,3,3,1,2,3,2019,1,2,18,6,44,38,15,1,6,1,0,19.99050942659174,19.99050942659174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.88,38.46,5,1,0,0,7,5,0,150.5,0,0,0 +4224,5192,9411,9410,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.552562753849732,7.766346546084748,0,1,0,-9,9,0,-1,-32.80732554839552,0,0,0,60,2,2,1,3,3,2019,1,1,14,2,23,22,15,1,2,1,0,13.9367289675653,13.9367289675653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,41.35,5,1,0,0,7,5,0,150.5,0,0,0 +4225,5193,9412,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,6.36976210770549,6.2193310454886,3,0,0,0,-9,0,-901.4688063904733,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.303768854855892,0,0,47.95,49.37,6,1,0,0,4,2,1,986,0,0,0 +4226,5194,9413,-9,9415,9414,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1145.634728183436,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,10,4,0,730.6666666666666,0,0,0 +4226,5194,9414,9415,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,3,8.391319665378438,8.080687737202682,0,2,0,-9,10,0,1,-97.69327318745636,0,0,0,32,2,3,1,-9,-9,2019,1,1,12,0,46,84,15,1,0,1,0,8.514225657466822,8.514225657466822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,60.15,5,1,0,1,10,4,0,730.6666666666666,0,0,0 +4226,5194,9415,9414,-9,-9,1,1,0,32,1,0,1,0,2,-9,2,1,0,3,7.877299837557007,7.379118835683245,0,2,0,-9,10,0,-1,-2.167661507637745,0,0,1,33,2,3,1,2,2,2019,1,2,7,0,37,42,15,1,0,1,0,9.702476936122302,9.702476936122302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,10,4,0,730.6666666666666,0,0,0 +4227,5195,9416,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-871.65910681009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.627134979841184,3,31.71,19.27,2,1,0,1,9,1,0,211,0,0,0 +4228,5196,9417,-9,9421,9420,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.819578873885,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,963.8,0,0,0 +4228,5196,9418,-9,9421,9420,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.452807007562,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,4,1,963.8,0,0,0 +4228,5196,9419,-9,9421,9420,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.439380283689,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,1,963.8,0,0,0 +4228,5196,9420,9421,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,2,8.845701374996942,8.838433615378619,0,2,0,-9,20,0,8,-133.9130843698213,0,0,0,37,2,1,3,2,2,2019,2,1,11,0,41,41,15,1,0,3,0,17.0639896980437,17.0639896980437,0,0,0,0,0,0,0,1,1,0,0,0,23.33561693295376,3,43.84,47.84,5,1,0,0,10,4,1,963.8,0,0,0 +4228,5196,9421,9420,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,1,0,0,0,2,0,-9,20,0,-8,-61.97068194338853,0,0,1,45,2,2,1,-9,-9,2019,3,2,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.2764196143384,3,53.72,39.27,6,1,0,0,10,4,1,963.8,0,0,0 +4229,5197,9422,9423,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,3,0,5.660855778405385,6.009129961451612,1,0,-9,7,0,6,-75.41558669867139,0,0,0,57,2,3,1,3,2,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.215853322611158,5.76959917995492,0,0,38.91,47.09,5,1,0,1,1,3,1,499,0,0,0 +4229,5197,9423,9422,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.221856738650537,7.995329854444984,0,1,0,-9,7,0,-6,-10.54218344961773,0,0,0,63,2,3,3,1,1,2019,2,2,6,0,35,35,15,1,0,3,0,16.01489047291357,16.01489047291357,0,0,0,0,0,0,0,0,0,0,3.843175698242933,0,0,0,54.96,53.17,6,1,0,0,1,3,1,499,0,0,0 +4230,5198,9424,9425,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,7.163881644846589,7.12540580390371,1,0,-9,34,0,0,-123.0558316156742,0,0,0,69,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.383735375739232,6.94585929036876,0,0,56.94,49.53,6,1,0,0,2,2,1,412.5,0,0,0 +4230,5198,9425,9424,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,6.3865812334978,6.029964376118437,1,0,-9,34,0,0,84.91275030922958,0,0,0,69,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.976563459175296,6.39678697656626,0,0,54.2,57.49,5,1,0,0,2,2,1,412.5,0,0,0 +4230,5199,9426,-9,9424,9425,3,1,1,32,2,0,0,0,1,-9,1,1,0,2,9.410051521692603,9.350532555628966,0,3,0,0,0,-9,0,-1104.259333435131,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,15,40,15,1,9,-9,1,77.0503230681848,77.0503230681848,0,0,0,0,0,0,0,1,1,0,3.022804102267075,0,0,0,31.18,57.88,3,1,0,0,2,5,1,1405,0,0,0 +4230,5200,9427,-9,9424,9425,4,1,1,31,2,0,0,0,1,-9,1,1,0,5,5.994711615534856,6.10819076439986,0,3,0,0,0,-9,0,-957.0413230293742,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,1.549140913452005,1.549140913452005,0,0,0,0,0,0,0,1,1,0,2.726588548832543,0,0,0,62.29,49.94,6,1,0,0,2,2,1,354,0,0,0 +4231,5201,9428,9429,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,40,0,0,134.7960379251359,0,0,0,59,1,5,1,2,2,2019,3,1,11,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.185807066974683,0,0,0,44.86,26.87,6,1,0,0,6,4,0,334.5,0,0,0 +4231,5201,9429,9428,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,5,9.025302130778099,8.630213027075186,0,1,0,-9,40,0,0,48.04131594332325,0,0,0,59,1,2,3,2,2,2019,2,2,7,0,55,55,15,1,0,4,0,12.23768956346669,12.23768956346669,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.65,52.89,6,1,0,0,6,4,0,334.5,0,0,0 +4231,5202,9430,-9,9428,9429,3,1,1,28,2,0,0,0,1,-9,2,1,0,3,8.066593421857645,7.836858095125629,0,3,0,0,0,-9,0,-974.1607257258728,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,29,9,51,46,15,1,9,-9,1,5.912433017134188,5.912433017134188,0,0,0,0,0,0,0,1,1,0,.9710397851456642,0,0,0,4.9,69.48,3,1,0,0,6,3,0,1117,0,0,0 +4231,5203,9431,-9,9428,9429,4,1,0,20,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-933.9679932053402,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,31,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,43,2,1,0,0,6,1,0,319,0,0,0 +4232,5204,9432,-9,-9,-9,1,1,0,70,2,0,0,0,1,-9,4,3,0,3,0,2.931315913688082,3.017301964503445,3,0,-9,0,-9,0,-1076.824048928608,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.083906425553431,0,0,43.55,42.24,6,1,0,0,8,2,0,8374,0,0,0 +4233,5205,9433,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.742014571583631,8.891175644523708,8.477704526409751,3,0,0,0,-9,0,-924.2968350919917,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,30,30,15,1,6,-9,0,9.329445517340138,9.329445517340138,0,0,0,0,0,0,0,0,0,0,1.75055721130331,8.431708796772533,0,0,44.54,46.88,6,4,0,0,8,5,0,598,0,0,0 +4233,5206,9434,-9,9433,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,5,7.723208273090253,8.246816552847767,0,3,0,0,0,-9,0,-1042.721378008634,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,45,54,15,1,0,-9,1,9.244639236462529,9.244639236462529,0,0,0,0,0,0,0,0,0,0,4.511473282152702,0,0,0,62.92,45.5,1,4,0,0,8,4,0,954,0,0,0 +4234,5207,9435,9438,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.256154810295467,8.13368052898713,5.341568044211265,2,0,-9,6,0,4,30.70176807332924,0,0,1,40,2,4,1,-9,-9,2019,1,1,7,0,20,20,15,1,0,1,0,22.32976435436505,22.32976435436505,0,0,0,0,0,0,0,0,0,0,7.661955970174231,0,0,0,57.16,56.15,7,1,0,0,10,5,1,928,0,0,0 +4234,5207,9436,-9,9435,9438,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.044556139433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,10,5,1,928,0,0,0 +4234,5207,9437,-9,9435,9438,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.1911132055218,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,10,5,1,928,0,0,0 +4234,5207,9438,9435,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,4,9.273520451811546,9.026200971665087,0,2,0,-9,6,0,-4,-120.9257533555474,0,0,0,44,2,4,1,2,3,2019,1,2,6,0,47,47,15,1,0,1,0,24.4864097678971,24.4864097678971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,7,1,0,0,10,5,1,928,0,0,0 +4235,5208,9439,-9,-9,-9,1,1,1,21,2,0,0,1,1,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1023.540834267175,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.885881846159025,0,0,0,51.73,58.82,7,1,0,0,7,1,0,2050,0,0,0 +4236,5209,9440,9443,-9,-9,1,1,0,24,1,1,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,5,0,-3,-48.40489233474065,0,1,1,27,2,4,1,2,2,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.290829830069855,0,0,0,46.88,60.96,6,1,0,0,11,3,1,1207.6,0,0,0 +4236,5209,9441,-9,9440,9443,4,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.416951125985,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,3,1,1207.6,0,0,0 +4236,5209,9442,-9,9440,9443,3,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.7647177450615,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,1,1207.6,0,0,0 +4236,5209,9443,9440,-9,-9,2,1,1,27,1,1,3,0,2,-9,1,1,0,4,8.139401843608827,8.160668506686795,0,2,0,-9,5,0,3,-58.17606220544663,0,1,0,24,2,5,3,-9,-9,2019,2,1,10,0,40,70,15,1,1,3,0,11.08716177876818,11.08716177876818,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,11,3,1,1207.6,0,0,0 +4236,5209,9444,-9,9440,9443,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-988.4214318794574,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,1207.6,0,0,0 +4237,5210,9445,-9,-9,-9,1,1,0,38,3,0,0,0,2,-9,2,1,0,4,9.310476900617884,9.560200919585013,0,3,0,0,0,-9,0,-890.1262692875051,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,41,15,1,0,-9,1,29.18637280825935,29.18637280825935,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,348,0,0,0 +4238,5211,9446,-9,-9,-9,1,1,1,89,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1107.163459473195,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.027730708987525,0,0,0,32.33,31.62,5,1,0,0,12,1,0,398,0,0,0 +4239,5212,9447,9448,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,2,0,4.419642288820635,4.621311974440882,1,0,-9,45,0,1,83.73699722471579,0,0,0,67,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,8.03159129069658,0,0,0,0,1,1,0,6.211616121529989,4.47157574669956,10.03104409209833,3,68.2,24.19,7,1,0,0,5,2,1,427.5,0,0,0 +4239,5212,9448,9447,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,3,0,5.36266369974031,5.746506700171237,1,0,-9,45,0,-1,3.705390594717761,0,0,0,68,1,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.236314298634605,5.669109797492887,8.450765945087548,2,64.82000000000001,37.68,6,1,0,0,5,2,1,427.5,0,0,0 +4240,5213,9449,9450,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,5,7.527488300999805,7.289696717737794,0,1,0,-9,2,0,1,-16.31005914783308,0,0,0,47,2,4,1,2,2,2019,1,2,10,2,75,60,15,1,2,1,0,2.582208853420647,2.582208853420647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,8,5,1,470,0,0,0 +4240,5213,9450,9449,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,4,8.493446613259628,8.909222248119047,0,1,0,-9,2,0,-1,-13.90870435306248,0,0,0,48,1,5,1,-9,-9,2019,1,1,5,0,40,40,15,1,0,1,0,13.71549421649671,13.71549421649671,0,0,0,0,0,0,0,0,0,0,2.93837692515155,0,0,0,57.16,56.15,6,1,0,0,8,5,1,470,0,0,0 +4241,5214,9451,-9,-9,-9,1,1,1,94,3,0,0,0,2,-9,4,3,0,4,0,7.229430504433503,7.385442998736634,3,0,0,0,-9,0,-999.783130811753,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,2.166966483657874,0,0,0,0,35.94139383997884,1,1,0,.5501075723723805,7.376806149237359,0,0,46.71,56.69,5,1,0,0,11,3,1,666,0,0,0 +4242,5215,9452,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-967.3645827758526,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,10.72942494235229,0,0,0,0,156.8663682707956,1,1,0,0,0,0,0,55.02,20.27,3,1,0,0,6,1,1,690,0,0,0 +4243,5216,9453,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,4,9.294798853638415,8.890798535469024,0,1,0,-9,11,0,-5,31.15218352690712,0,0,0,-9,-9,-9,-9,3,1,2019,1,2,12,1,38,5,15,1,1,-9,0,27.11340719698157,27.11340719698157,0,0,0,0,0,0,0,0,0,0,7.11741941297719,0,0,0,59.69,42.87,5,1,0,0,2,5,1,1753,0,0,0 +4243,5217,9454,-9,-9,-9,2,1,1,41,2,0,0,0,1,-9,1,1,0,4,9.626033718670882,9.204672272581076,0,1,0,-9,11,0,5,-56.0655462987633,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,6,0,40,40,15,1,0,-9,0,38.30414692213577,38.30414692213577,0,0,0,0,0,0,0,0,0,0,7.488340962187049,0,0,0,58.15,52.91,6,1,0,0,2,5,1,899,0,0,0 +4244,5218,9455,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,7.131839460760557,7.124241375376105,3,0,0,0,-9,0,-1072.022747530995,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.155409873393449,7.067061986130857,0,0,49.91,39.62,5,1,0,0,4,3,1,468,0,0,0 +4245,5219,9456,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,5.715758110899006,5.680061597437351,3,0,0,0,-9,0,-990.5577850080459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0887028239442,5.422892075908496,0,0,60.11,44.43,7,1,0,0,7,2,1,294,0,0,0 +4246,5220,9457,9458,-9,-9,2,1,0,48,1,0,2,0,3,-9,2,1,0,4,7.068666542742867,7.347730376775831,0,2,0,-9,8,0,-2,-18.64335640500994,0,0,0,50,2,4,1,-9,-9,2019,1,1,10,0,20,20,15,1,1,1,0,7.379959905461817,7.379959905461817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,1,0,0,7,4,1,1184.5,0,0,0 +4246,5220,9458,9457,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.832015782603245,8.807951472597955,0,2,0,-9,21,0,2,40.69613039624889,0,0,0,48,3,4,1,2,2,2019,1,2,10,0,60,60,15,1,0,1,0,9.484850288682857,9.484850288682857,0,0,0,0,0,0,0,1,1,0,3.760764180164291,0,0,0,57.16,56.15,6,1,0,0,7,4,1,1184.5,0,0,0 +4247,5221,9459,9460,-9,-9,2,1,0,52,1,0,0,0,1,-9,1,1,0,1,7.260928306398519,7.477459005281927,0,1,0,-9,27,0,-4,-51.44543171736122,0,0,0,56,2,4,1,3,3,2019,1,1,10,0,35,30,15,1,0,1,0,5.05644190946903,5.05644190946903,0,0,0,0,0,0,0,0,0,0,0,0,15.49517757897124,3,53.24,26.07,3,1,0,0,13,5,1,1066.5,0,0,0 +4247,5221,9460,9459,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.799593659826215,9.06885064559337,0,1,0,-9,27,0,4,75.54618785466124,0,0,0,52,1,1,1,3,3,2019,1,2,11,0,38,40,15,1,0,1,0,22.83152521076705,22.83152521076705,0,0,0,0,0,0,0,0,0,0,6.616402942453214,0,0,0,58.72,51.29,6,1,0,0,13,5,1,1066.5,0,0,0 +4247,5222,9461,-9,9459,9460,3,1,0,24,2,0,0,0,1,-9,7,2,0,4,6.51105717680218,6.087478024520658,0,3,0,0,0,-9,0,-998.27144605024,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,7,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,13,2,1,436,0,0,0 +4247,5223,9462,-9,9459,9460,4,1,1,20,2,0,0,1,2,0,7,2,0,4,7.077709963017825,6.92590854017931,0,3,0,0,0,-9,0,-1046.345461643055,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.443758797118539,0,0,0,51.24,58.84,5,1,0,0,13,2,1,1934,0,0,0 +4248,5224,9463,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,4,8.60474302237265,8.742195236656805,0,3,0,0,0,-9,0,-845.913297622757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,40,35,15,1,6,-9,0,16.70021396433749,16.70021396433749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,52.7,6,1,0,0,2,5,1,281,0,0,0 +4249,5225,9464,9465,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,4,7.94910608212887,8.018447545826087,4.714270133754526,1,0,-9,42,0,3,34.43679638032064,0,0,0,62,1,5,1,2,3,2019,1,1,7,0,40,40,15,1,0,1,0,9.014671935307632,9.014671935307632,0,0,0,0,0,0,0,1,1,0,7.135421584169716,4.924242433658248,0,0,54.2,57.49,6,1,0,0,2,4,1,166.5,0,0,0 +4249,5225,9465,9464,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,5,6.77223349757791,7.245516992736371,5.376823881688709,1,0,-9,42,0,-3,21.1205221243046,0,0,0,65,2,4,1,3,3,2019,1,2,10,0,9,16,15,1,0,1,0,12.34277404761364,12.34277404761364,0,0,0,0,0,0,0,1,1,0,2.73753939935105,5.318737349633498,1.458939357130147,3,58.62,52.91,6,1,0,0,2,4,1,166.5,0,0,0 +4249,5226,9466,-9,9465,9464,3,1,1,35,2,0,0,0,2,-9,2,1,0,5,6.926751728426295,6.996276119157704,0,3,0,0,0,-9,0,-971.9694515464016,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,19,19,15,1,0,-9,1,5.622067619712101,5.622067619712101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,2,2,1,393,0,0,0 +4250,5227,9467,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.012542345895733,8.629929748433369,8.57051748082057,3,0,0,0,-9,0,-1233.363845609419,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,16,16,15,1,0,-9,0,23.7641615086366,23.7641615086366,0,0,0,0,0,0,0,0,0,0,6.943203904171813,8.142726846469003,0,0,57.16,56.15,6,1,0,0,2,5,0,972,0,0,0 +4251,5228,9468,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,4,6.117243375205181,6.193412840385629,0,3,0,0,0,-9,0,-1125.687773656686,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,55,50,15,1,0,-9,0,1.089039784566479,1.089039784566479,0,0,0,0,0,0,0,0,0,0,4.569265517512341,0,0,0,57.16,56.15,6,1,0,0,9,2,1,2283,0,0,0 +4252,5229,9469,-9,-9,9470,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.798619656572,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,4,1,574.5,0,0,0 +4252,5229,9470,-9,-9,-9,1,1,1,41,2,0,1,0,2,-9,2,1,0,4,8.830693354717631,8.574262847937161,0,4,0,0,0,-9,0,-982.9563026887979,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,2,60,60,15,1,2,-9,0,11.89029068465985,11.89029068465985,0,0,0,0,0,0,0,0,0,0,0,0,69.66314772800045,3,55.91,29.14,5,1,0,0,12,4,1,574.5,0,0,0 +4253,5230,9471,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,7.087901931648504,6.780486946505995,0,3,0,0,0,-9,0,-885.6059540996124,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,12,12,15,1,2,-9,0,10.18647959577257,10.18647959577257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.56,54.55,3,4,0,1,8,2,0,259,0,0,0 +4253,5231,9472,-9,9471,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.183822666137116,8.233998417619873,0,3,0,0,0,-9,0,-1057.961039763224,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,38,0,15,1,3,-9,1,10.05074946153832,10.05074946153832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,3,4,0,0,8,4,0,196,0,0,0 +4254,5232,9473,9474,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,4,8.349217521487901,8.483962628922612,0,1,0,1,1,-9,0,154.6094038045905,0,1,0,33,2,4,1,2,2,2019,1,2,6,0,36,35,15,1,0,1,0,15.91073009130014,15.91073009130014,0,0,0,0,0,0,0,1,1,0,3.729121114809333,0,0,0,57.16,56.15,6,1,0,0,9,4,1,801.5,0,0,0 +4254,5232,9474,9473,-9,-9,2,1,0,33,1,0,0,0,2,-9,1,1,0,4,6.863429721264197,7.091677122999348,6.49020998754893,1,0,-9,1,-9,9,93.02432160007119,-9,0,1,24,2,4,1,-9,-9,2019,1,1,13,3,21,0,15,1,3,1,0,3.918967620074815,3.918967620074815,0,0,0,0,0,0,0,1,1,0,5.429885089133022,0,0,0,31.15,62.63,5,1,0,0,9,4,1,801.5,0,0,0 +4255,5233,9475,-9,9476,9477,3,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1177.068465538046,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,4,1,443.25,0,0,0 +4255,5233,9476,9477,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,5,7.550123045032228,7.756482703780452,5.549314359604478,2,0,-9,12,0,-2,90.22050904769674,0,0,1,39,2,3,1,2,2,2019,1,1,10,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.088081605918761,0,0,0,54.1,59.11,6,1,0,0,10,4,1,443.25,0,0,0 +4255,5233,9477,9476,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,3,8.752779113713364,8.723874006727117,7.426962560808097,2,0,-9,12,0,2,-98.77803587138162,0,0,0,37,2,5,1,2,2,2019,1,2,16,5,43,43,15,1,5,1,0,12.59857315537952,12.59857315537952,0,0,0,0,0,0,0,1,1,0,7.754439233917626,0,0,0,42.81,54.48,5,1,0,0,10,4,1,443.25,0,0,0 +4255,5233,9478,-9,9476,9477,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.3134422081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,4,1,443.25,0,0,0 +4256,5234,9479,9480,-9,-9,2,1,0,69,1,0,0,0,2,-9,1,1,0,3,.9521612389254452,1.184488479752012,0,1,0,-9,45,0,-8,-45.56870359647418,0,0,0,77,1,4,3,2,2,2019,2,1,10,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.265585130709973,0,5.820645558027618,3,52.28,41.96,6,1,0,0,9,5,1,209.5,0,0,0 +4256,5234,9480,9479,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,4,0,9.675196914011002,9.289011120115324,1,0,-9,45,0,8,129.1075407588114,0,0,0,69,2,3,1,1,1,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,8.909895365590998,9.67388909186209,0,0,60.13,49.27,6,1,0,0,9,5,1,209.5,0,0,0 +4257,5235,9481,-9,-9,-9,1,1,0,27,3,0,0,0,1,-9,2,1,0,3,7.719055314928023,7.918285730829161,0,3,0,0,0,-9,0,-1050.078981993525,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,30,60,15,1,5,-9,0,9.047380005214961,9.047380005214961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,54.21,5,1,0,0,7,3,1,543,0,0,0 +4258,5236,9482,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,6.377192716091208,6.454879449191338,3,0,0,0,-9,0,-968.9846210361598,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.129254570260507,6.37721478733961,0,0,53.91,21.04,6,1,0,0,4,2,1,792,0,0,0 +4259,5237,9483,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,4,9.0752666025564,9.063968398503045,0,3,0,0,0,-9,0,-1061.067061171215,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,50,37,15,1,0,-9,0,17.45804456560323,17.45804456560323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,2,0,0,4,5,1,461,0,0,0 +4260,5238,9484,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,2,1,0,3,7.063328952664005,7.15855425820592,0,4,0,-9,0,-9,0,-970.4642621996534,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,25,0,15,1,5,-9,0,7.094557592416812,7.094557592416812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.63,56.7,3,1,0,1,5,2,0,518,0,0,0 +4260,5238,9485,-9,9484,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-932.4026909717661,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,2,0,518,0,0,0 +4261,5239,9486,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,1,0,6.928921145732801,6.902473305069981,3,0,0,0,-9,0,-1005.158939317307,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.829472979608924,0,0,56.43,14.92,5,1,0,0,13,2,1,1005,0,0,0 +4262,5240,9487,9489,-9,-9,2,1,1,29,1,1,1,0,1,-9,2,1,0,4,8.332829531577413,8.580817251131966,0,2,0,-9,6,0,0,59.47840685799974,0,1,0,29,1,4,1,-9,-9,2019,1,1,3,0,40,40,15,1,0,1,0,12.63331175384898,12.63331175384898,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,821.6666666666666,0,0,0 +4262,5240,9488,-9,9489,9487,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-983.4642960745433,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,4,1,821.6666666666666,0,0,0 +4262,5240,9489,9487,-9,-9,1,1,0,29,1,1,1,0,1,-9,5,1,0,4,7.803560890481396,7.74587634469249,0,2,0,-9,6,0,0,-42.48343497441595,0,1,1,29,1,4,1,-9,-9,2019,1,2,9,0,37,37,15,1,0,1,0,7.898514217143791,7.898514217143791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,7,1,0,0,13,4,1,821.6666666666666,0,0,0 +4263,5241,9490,-9,-9,-9,1,1,0,84,3,0,0,0,1,-9,4,3,0,4,0,8.465131968787697,8.098533063143655,3,0,0,0,-9,0,-1103.532442094534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.848872578992976,8.135717855109633,0,0,50.77,46.67,6,1,0,0,12,4,1,639,0,0,0 +4264,5242,9491,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,3,7.814806568800328,7.924377981480305,5.069208088684836,3,0,0,0,-9,0,-1089.153928633481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,43,40,15,1,0,-9,0,8.041581275154657,8.041581275154657,0,0,0,0,0,0,0,0,0,0,2.831738181110562,5.211469242738823,0,0,55.96,49.93,6,1,0,0,11,4,1,136,0,0,0 +4265,5243,9492,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,4,8.520843591791724,8.450046143777824,0,3,0,0,0,-9,0,-1018.42454303525,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,41,38,15,1,0,-9,0,15.57504232350247,15.57504232350247,0,0,0,0,0,0,0,0,0,0,1.675788827762132,0,0,0,34.25,58.67,5,1,0,0,11,5,1,248,0,0,0 +4266,5244,9493,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,1,1,0,3,6.040110025700882,5.679781066435115,0,3,0,0,0,-9,0,-1042.925821428513,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,8,15,15,1,3,-9,0,3.752967536662546,3.752967536662546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,4,1,0,0,13,2,0,1812,0,0,0 +4267,5245,9494,9495,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,5,0,6.65253800947486,6.530880623426138,1,0,-9,7,0,-1,48.77418260702957,0,0,0,61,1,4,3,3,1,2019,4,1,6,0,0,11,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.055921684356611,0,0,57.06,57.76,7,1,0,0,9,4,1,968,0,0,0 +4267,5245,9495,9494,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.330346461743991,8.042931012646454,1,0,-9,38,0,1,-59.8175805227104,0,0,0,60,2,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5789513997754,8.273298826355184,0,0,51.83,57.2,6,1,0,0,9,4,1,968,0,0,0 +4268,5246,9496,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,5.757669029014908,5.853182745900213,3,0,0,0,-9,0,-1055.882312621927,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.95310471259122,5.768066088084791,0,0,49.75,32.52,6,1,0,0,5,2,1,2386,0,0,0 +4269,5247,9497,-9,-9,-9,1,1,1,82,2,0,0,0,2,-9,4,3,0,3,0,7.528091251487197,7.431556870608143,3,0,0,0,-9,0,-990.8905548393681,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.374942095355353,7.292234510742015,0,0,52.47,40.47,5,1,0,0,12,3,1,864,0,0,0 +4270,5248,9498,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,8.147367664261234,8.056920021374374,0,3,0,0,0,-9,0,-931.2184713525862,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,42,43,15,1,8,-9,0,7.342765449231884,7.342765449231884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,37.64,2,1,0,1,9,4,1,2157,0,0,0 +4271,5249,9499,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,3,8.179622906927706,8.036545743987624,0,3,0,0,0,-9,0,-1260.361257095183,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,55,53,15,1,3,-9,0,8.831589119272056,8.831589119272056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,4,1,0,0,10,4,0,263,0,0,0 +4272,5250,9500,9501,-9,-9,2,1,0,57,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,30,0,1,0,-9,0,0,56,3,3,3,2,2,2019,4,1,25,12,0,0,15,3,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.36,18.82,4,1,0,0,6,1,1,1086,0,0,0 +4272,5250,9501,9500,-9,-9,1,1,1,56,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,29,0,-1,0,-9,0,0,57,2,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,6,1,1,1086,0,0,0 +4272,5251,9502,-9,9500,9501,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.257451356186399,8.098500880524451,0,3,0,0,0,-9,0,-930.2059313509368,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,38,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,6,4,1,339,0,0,0 +4273,5252,9503,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,4,0,7.731904616029729,7.387709653596289,3,0,0,0,-9,0,-1062.301297329391,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.679940022758335,7.847134119822487,0,0,50.11,54.04,6,3,0,0,12,3,1,1014,0,0,0 +4274,5253,9504,9505,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,1,8.443978873460413,7.883876315288619,0,2,0,-9,32,0,-3,-82.24021919575547,-9,0,0,57,3,3,1,2,2,2019,1,1,25,12,38,0,15,1,12,1,0,8.67524577585729,8.67524577585729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,29.82,4,1,0,0,4,4,0,395.5,0,0,0 +4274,5253,9505,9504,-9,-9,1,1,0,57,1,0,1,0,3,-9,2,1,0,3,7.994795360540865,8.173045898070718,0,2,0,-9,38,0,3,-71.76275916620294,0,0,0,54,2,1,1,-9,-9,2019,1,2,7,0,38,37,15,1,0,1,0,8.687380519080952,8.687380519080952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.91,45.88,7,1,0,0,4,4,0,395.5,0,0,0 +4274,5254,9506,-9,9505,9504,3,1,0,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-928.3050868491364,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.97,43.6,5,1,0,0,4,4,0,1420,0,0,0 +4275,5255,9507,9508,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,5.024747621704967,4.869903142645806,1,0,-9,50,0,0,64.37779816231128,0,0,0,71,2,3,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.519457825836104,4.81356439799303,0,0,51.64,53.15,6,1,0,0,7,2,1,539.5,0,0,0 +4275,5255,9508,9507,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,5.414692062743383,5.427346927916236,1,0,-9,51,0,0,15.05644239685179,0,0,0,71,2,4,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.457815085889773,5.6638168299432,0,0,50.1,32.62,4,1,0,0,7,2,1,539.5,0,0,0 +4276,5256,9509,9510,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,4,7.854720970015856,7.735775323182394,0,1,0,-9,7,0,-1,80.47055621524518,0,0,0,61,3,4,3,-9,-9,2019,2,1,8,0,90,90,15,1,0,4,0,2.583653019757714,2.583653019757714,0,0,0,0,0,0,0,0,0,0,8.87421493346668,0,0,0,54,53,6,1,0,0,10,3,1,708,0,0,0 +4276,5256,9510,9509,-9,-9,1,1,0,61,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,42,0,1,-48.0164921184122,0,0,0,60,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.64501763397312,3,63.01,30.1,7,1,0,0,10,3,1,708,0,0,0 +4277,5257,9511,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-846.4443156632161,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.88,42.66,3,1,0,0,8,1,0,666,0,0,0 +4278,5258,9512,-9,9514,9515,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.566655617131,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,0,811.4,0,0,0 +4278,5258,9513,-9,9514,9515,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.0760039750317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,0,811.4,0,0,0 +4278,5258,9514,9515,-9,-9,2,1,0,41,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,8,0,0,80.02524805559293,0,0,1,41,1,3,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,48.27,6,3,0,0,8,3,0,811.4,0,0,0 +4278,5258,9515,9514,-9,-9,1,1,1,41,1,0,3,0,1,-9,2,1,0,3,8.389728385099527,8.058775338712019,0,2,0,-9,14,0,0,-33.82519858191129,0,0,0,41,1,3,3,2,2,2019,2,2,7,0,38,38,15,1,0,3,0,9.784344911805745,9.784344911805745,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.02,55.17,7,3,0,0,8,3,0,811.4,0,0,0 +4278,5258,9516,-9,9514,9515,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-912.2323662899877,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,811.4,0,0,0 +4279,5259,9517,9518,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,2,6.627579453678483,7.737155413242832,7.643725409704889,1,0,-9,6,0,-1,-56.30995225490815,0,0,0,65,2,4,1,2,2,2019,1,1,9,1,80,0,15,1,1,1,0,.9494526179237228,.9494526179237228,0,0,0,0,0,0,0,1,1,0,1.960763956075097,7.77845910389868,0,0,56.32,40.65,6,1,0,0,1,3,1,1504,0,0,0 +4279,5259,9518,9517,-9,-9,1,1,0,65,1,0,0,0,2,-9,1,1,0,4,6.555006442111193,6.406923205327272,4.61328470019156,1,0,-9,6,0,1,-35.01073773511228,0,0,0,64,2,2,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,1.762406889535318,1.762406889535318,0,0,0,0,0,0,0,1,1,0,0,4.479678144204033,0,0,54.45,56.22,6,1,0,0,1,3,1,1504,0,0,0 +4280,5260,9519,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,6.366370144549443,6.490726183071694,3,0,0,0,-9,0,-898.2202147902774,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,5.951272749478001,0,3.381948872062265,0,0,0,1,1,0,0,6.320584757260365,0,0,66.13,18.36,4,1,0,0,12,2,0,1023,0,0,0 +4281,5261,9520,-9,9521,9522,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.9318077876628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,1858.333333333333,0,0,0 +4281,5261,9521,9522,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,4,9.39489761035952,9.299521307764978,0,2,0,-9,7,0,-2,-61.23129015329925,-9,0,1,44,1,4,1,-9,-9,2019,1,1,10,0,43,0,15,1,1,1,0,27.18984488598694,27.18984488598694,0,0,0,0,0,0,0,0,0,0,4.410080999637552,0,0,0,50,55,6,1,0,0,8,5,1,1858.333333333333,0,0,0 +4281,5261,9522,9521,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,4,9.611408504316609,9.653746485685607,0,2,0,-9,18,0,2,44.66282994233719,0,0,0,42,1,4,1,1,1,2019,1,2,9,0,55,50,15,1,1,1,0,46.77583358841227,46.77583358841227,0,0,0,0,0,0,0,0,0,0,7.06749137774609,0,0,0,52,55,6,1,0,0,8,5,1,1858.333333333333,0,0,0 +4282,5262,9523,9524,-9,-9,1,1,0,68,1,0,0,0,3,-9,1,1,0,4,0,0,0,1,0,-9,8,0,-2,-119.7870020818909,0,0,0,70,2,4,3,3,2,2019,2,2,10,0,0,0,15,1,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,2,0,499.5,0,0,0 +4282,5262,9524,9523,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,5.882439313507601,6.336414934850175,1,0,-9,8,0,2,126.8374743020533,0,0,0,68,3,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.977253120515283,0,0,49.73,53.97,6,1,0,0,12,2,0,499.5,0,0,0 +4283,5263,9525,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,2,1,0,3,6.978066059188123,6.790325202742648,0,3,0,0,0,-9,0,-913.5138444963859,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,27,50,15,1,0,-9,0,3.975783949271535,3.975783949271535,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,6,4,0,0,8,2,0,1086,0,0,0 +4284,5264,9526,9527,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,5,6.88979881779583,7.092449022539633,0,1,0,-9,23,0,12,1.819131767893076,0,0,0,53,2,5,1,3,2,2019,1,2,11,0,9,4,15,1,0,1,0,13.8490624139348,13.8490624139348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.24,58.02,6,1,0,0,8,3,1,396.5,0,0,0 +4284,5264,9527,9526,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,5,7.904146879303301,7.823685247831616,0,1,0,-9,25,0,-12,-29.45589307499716,0,0,0,65,1,5,1,2,2,2019,1,1,11,0,40,50,15,1,0,1,0,7.714322965845908,7.714322965845908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,8,3,1,396.5,0,0,0 +4284,5265,9528,-9,9526,9527,3,1,0,21,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-990.2539921840626,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.11,60.74,6,1,0,0,8,1,1,552,0,0,0 +4285,5266,9529,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1007.449136142589,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,3,0,0,7,1,1,117,0,0,0 +4285,5267,9530,-9,9529,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,4,7.976955122960874,8.452343297454149,0,3,0,0,0,-9,0,-963.7414598389261,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,38,37,15,1,0,-9,1,12.90039713166943,12.90039713166943,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.85,57.84,7,3,0,0,7,4,1,482,0,0,0 +4285,5268,9531,-9,9529,-9,3,1,0,25,2,0,0,0,2,-9,2,1,0,5,8.066939940499463,8.126175839767088,0,3,0,0,0,-9,0,-1104.324962487745,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,20,7,37,30,15,1,7,-9,1,12.04869390733489,12.04869390733489,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.99,58.35,6,3,0,0,7,4,1,736,0,0,0 +4285,5269,9532,-9,9529,-9,4,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.416048278356731,8.095094577655825,0,3,0,0,0,-9,0,-844.47785117321,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,38,37,15,1,0,-9,1,9.659742283692202,9.659742283692202,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,3,0,0,7,4,1,632,0,0,0 +4285,5270,9533,-9,9529,-9,5,1,0,23,2,0,0,0,2,-9,2,1,0,4,7.83623002736377,7.89621502092743,0,3,0,0,0,-9,0,-1032.825425688896,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,1,8.662135731976592,8.662135731976592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,7,4,1,686,0,0,0 +4286,5271,9534,9535,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.778001508890767,7.963277979965723,1,0,-9,49,0,-3,-155.9423832668646,0,0,0,72,1,4,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.462295938438777,7.367326461976333,0,0,53.98,50.87,6,1,0,0,12,4,1,457.5,0,0,0 +4286,5271,9535,9534,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.36324369366846,8.398976216379646,1,0,-9,49,0,3,2.298873829626249,0,0,0,69,1,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.629829477861713,8.412542595045736,0,0,51.49,57.57,6,1,0,0,12,4,1,457.5,0,0,0 +4287,5272,9536,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,1,1,0,3,8.222830494910859,7.981002895919917,0,3,0,0,0,-9,0,-1076.655828050248,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,0,15,1,0,-9,0,6.249021587601251,6.249021587601251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,45.09,6,1,0,0,7,4,1,816,0,0,0 +4288,5273,9537,9538,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,2,7.797117740401507,7.528950681092342,0,1,0,-9,26,0,8,107.7892498704398,0,0,0,41,2,5,1,-9,-9,2019,1,2,22,10,45,40,15,1,10,1,0,7.472138156404476,7.472138156404476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,53.77,5,1,0,0,5,4,0,577,0,0,0 +4288,5273,9538,9537,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,5,7.547209779974319,7.612259250916146,0,1,0,-9,26,0,-8,-13.62803322138125,0,0,1,49,2,2,1,-9,-9,2019,1,1,7,0,20,20,15,1,0,1,0,11.11849080630702,11.11849080630702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.32,45.35,6,1,0,0,5,4,0,577,0,0,0 +4288,5274,9539,-9,9538,9537,3,1,0,21,2,0,0,0,2,-9,2,1,0,5,6.225652758820102,5.88362439289306,0,3,0,0,0,-9,0,-1028.654415495268,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,16,0,15,1,0,-9,1,3.36367724928243,3.36367724928243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,7,1,0,0,5,2,0,214,0,0,0 +4289,5275,9540,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,4,0,7.425429041526574,7.553387450053172,3,0,0,0,-9,0,-1024.37345606883,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.329682527777248,0,0,59.14,52.5,6,1,0,0,5,3,1,1266,0,0,0 +4290,5276,9541,9542,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.779208724925004,8.599086285170829,0,1,0,-9,2,0,1,118.8167982249036,0,1,1,27,1,4,1,-9,-9,2019,1,1,15,4,39,39,15,1,4,1,0,16.71764394925598,16.71764394925598,0,0,0,0,0,0,0,0,0,0,5.905152665978711,0,0,0,56.33,51.02,6,1,0,0,10,5,0,351,0,0,0 +4290,5276,9542,9541,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.709008864801051,8.549539713179012,0,1,0,-9,2,0,-1,20.19812027576391,0,1,0,28,1,4,1,-9,-9,2019,1,2,8,2,55,47,15,1,2,1,0,11.92192462410339,11.92192462410339,0,0,0,0,0,0,0,0,0,0,5.509042428169517,0,0,0,44.02,60.7,5,1,0,0,10,5,0,351,0,0,0 +4291,5277,9543,9544,-9,-9,2,1,1,51,1,0,1,0,3,-9,2,1,0,3,8.166738257559546,7.980338825304248,0,2,0,-9,10,0,0,-19.58411333718788,0,0,0,51,3,1,3,-9,-9,2019,2,1,10,2,38,30,15,1,2,3,0,7.817729238416067,7.817729238416067,0,0,0,0,0,0,0,1,0,1,0,0,41.37704049960868,1,49,50,4,1,0,0,9,3,0,891.5,0,0,0 +4291,5277,9544,9543,-9,-9,1,1,0,51,1,0,1,0,3,-9,6,3,0,1,0,0,0,2,0,-9,10,0,0,-66.23826464325816,0,0,0,51,3,3,1,3,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.06,38.41,2,1,0,0,9,3,0,891.5,0,0,0 +4291,5278,9545,-9,9544,9543,3,1,0,18,2,0,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1051.789695704818,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,30,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,19.35,37.07,2,1,1,0,9,3,0,168,0,0,0 +4292,5279,9546,-9,-9,-9,1,1,1,87,3,0,0,0,2,-9,4,3,0,3,0,6.283937904070016,6.286582446514238,3,0,0,0,-9,0,-1046.832173818241,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,29.29249455924455,0,0,0,1,1,0,0,6.221686517366206,0,0,55,45,6,1,0,0,2,2,1,1039,0,0,0 +4293,5280,9547,9548,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,4,8.333151098695625,7.962343994038601,0,2,0,-9,4,0,7,78.30335949803224,-9,0,0,34,1,4,3,2,2,2019,2,2,5,0,60,0,15,1,0,3,0,8.231811086369023,8.231811086369023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,6,3,0,419,0,0,0 +4293,5280,9548,9547,-9,-9,2,1,0,34,1,0,1,0,1,-9,3,3,0,4,0,0,0,2,0,-9,4,0,-7,34.67006479193573,-9,0,1,41,2,4,1,1,1,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,5,3,1,0,6,3,0,419,0,0,0 +4294,5281,9549,9550,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,7.498780529134843,7.293956875370608,1,0,-9,52,0,2,7.573849717621065,0,0,0,69,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.375336435560365,0,0,57.16,56.15,7,1,0,0,4,2,0,1076.5,0,0,0 +4294,5281,9550,9549,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-2,-9.861463872058373,0,0,0,71,1,4,3,3,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.22,49.35,6,1,0,0,4,2,0,1076.5,0,0,0 +4295,5282,9551,-9,9554,9553,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.7353623105203,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,4,1,615.25,0,0,0 +4295,5282,9552,-9,9554,9553,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.9379866590934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,4,1,615.25,0,0,0 +4295,5282,9553,9554,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.730499868613942,8.579949032338385,0,2,0,-9,6,0,1,-128.7168709517405,0,0,0,45,1,4,1,2,2,2019,1,2,9,0,39,38,15,1,1,1,0,16.94742355470028,16.94742355470028,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,4,1,615.25,0,0,0 +4295,5282,9554,9553,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.155087445417218,8.219383822056676,0,2,0,-9,6,0,-1,-21.10059286371681,0,0,0,46,1,4,1,2,3,2019,1,1,10,0,35,0,15,1,1,1,0,12.51246999806085,12.51246999806085,0,0,0,0,0,0,0,1,1,0,0,0,12.55063390659569,3,50,55,6,1,0,0,8,4,1,615.25,0,0,0 +4296,5283,9555,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,4,3,0,3,0,8.102255157551888,8.412848626740699,3,0,0,0,-9,0,-1041.177019296112,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.734515909343608,8.266000804253572,0,0,47.55,44.33,4,1,0,0,9,4,1,917,0,0,0 +4297,5284,9556,9557,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.732929363251352,7.704738720339322,1,0,-9,30,0,-10,103.2649493643878,0,0,0,79,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.847726949799577,8.049639091740259,0,0,51,46,5,1,0,0,8,5,1,1939.5,0,0,0 +4297,5284,9557,9556,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,9.456796110010888,9.221620691381139,1,0,-9,26,0,10,-18.9808233769311,0,0,0,69,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.434110596627702,9.049439108945098,0,0,55,45,6,1,0,0,8,5,1,1939.5,0,0,0 +4298,5285,9558,9559,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.928906268331309,7.953346468491909,1,0,-9,51,0,1,-73.45034231316913,0,0,0,70,2,3,1,3,2,2019,3,2,12,0,0,17,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.41187676682849,8.221092578661166,0,0,51.66,54.88,6,1,0,0,13,4,1,825,0,0,0 +4298,5285,9559,9558,-9,-9,2,1,0,70,1,0,0,0,2,-9,2,1,0,3,5.745516221648381,5.165389218026241,0,1,0,-9,8,0,-1,76.58814704084203,-9,0,0,71,2,3,3,-9,-9,2019,2,1,11,0,12,0,15,1,1,4,0,3.443423318473397,3.443423318473397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,5,0,0,13,4,1,825,0,0,0 +4299,5286,9560,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,2,7.947962059707327,8.052542257941964,0,3,0,-9,0,-9,0,-898.4964509715162,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,0,15,1,0,-9,0,8.243021463960645,8.243021463960645,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52.99,38.05,5,1,0,0,5,4,0,194,0,0,0 +4300,5287,9561,-9,9562,9564,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.3661538556424,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,5,4,1,752.75,0,0,0 +4300,5287,9562,9564,-9,-9,2,1,0,42,1,0,3,0,2,-9,2,1,0,3,7.5276922179306,7.227320524630185,0,2,0,-9,22,0,-4,65.7417652366689,0,0,1,46,2,3,1,2,3,2019,1,1,7,0,27,20,15,1,0,1,0,6.758400025223011,6.758400025223011,0,0,0,0,0,0,0,0,0,0,1.504001823771121,0,0,0,51.41,56.15,6,1,0,0,5,4,1,752.75,0,0,0 +4300,5287,9563,-9,9562,9564,3,1,1,16,2,0,3,1,2,-9,7,2,0,3,6.181334994011163,6.075524096366991,0,2,0,0,0,-9,0,-885.5610970645627,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.8433089314378189,0,0,0,39.05,59.16,5,1,0,0,5,4,1,752.75,0,0,0 +4300,5287,9564,9562,-9,-9,1,1,1,46,1,0,3,0,2,-9,2,1,0,3,9.531894345065377,9.416119123503538,0,2,0,-9,22,0,4,169.7615072677836,0,0,0,42,2,3,1,2,3,2019,1,2,11,0,45,42,15,1,0,1,0,28.1028236522827,28.1028236522827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.76,38.7,6,1,0,0,5,4,1,752.75,0,0,0 +4301,5288,9565,9566,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,6.089659048896327,6.131109640186535,0,1,0,-9,31,0,-1,-50.44796285149067,0,0,0,55,1,3,1,2,2,2019,1,2,7,0,7,10,15,1,0,1,0,5.593331215217349,5.593331215217349,0,0,0,0,0,0,0,0,0,0,0,0,1.501435513981593,3,55.79,52.62,6,1,0,0,6,5,1,551,0,0,0 +4301,5288,9566,9565,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,3,8.725709122213102,8.67361614209816,0,1,0,-9,31,0,1,-9.993082510376126,0,0,0,54,2,4,1,3,3,2019,1,1,12,0,42,42,15,1,0,1,0,17.0143978958587,17.0143978958587,0,0,0,0,0,0,0,0,0,0,5.481704025668932,0,0,0,54.37,54.8,6,1,0,0,6,5,1,551,0,0,0 +4302,5289,9567,9568,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,7.358267127006722,7.465602365421431,1,0,-9,44,0,-3,58.14472824925723,0,0,0,69,2,4,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.2462047237855365,7.545983631527235,0,0,54.07,49.4,6,1,0,0,7,4,1,1733,0,0,0 +4302,5289,9568,9567,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,5.370960938735394,8.301233388782007,8.171160437128288,1,0,-9,44,0,3,33.19047931591599,0,0,0,66,1,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.861026009826328,8.331537002170736,0,0,57.16,56.15,6,1,0,0,7,4,1,1733,0,0,0 +4303,5290,9569,9570,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,29,0,-2,-52.60460066286588,0,0,0,67,1,3,3,3,3,2019,4,1,10,0,0,39,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,13,3,1,539,0,0,0 +4303,5290,9570,9569,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,3,7.535558554047048,7.637188255707342,0,1,0,-9,29,0,2,-85.1881661901961,0,0,0,65,2,4,3,3,3,2019,4,2,9,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.29,7,1,0,0,13,3,1,539,0,0,0 +4304,5291,9571,9574,-9,-9,2,1,1,48,1,0,2,0,2,-9,1,1,0,3,5.874940438330047,5.804571151274725,0,2,0,-9,6,0,7,-10.5280458364199,0,0,0,41,2,5,1,-9,-9,2019,1,1,11,1,35,60,15,1,1,1,0,.9906792563501291,.9906792563501291,0,0,0,0,0,0,0,1,1,0,6.875436676288854,0,0,0,52,54.51,6,1,0,0,2,2,1,815.25,0,0,0 +4304,5291,9572,-9,9574,9571,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.0411817499585,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,1,815.25,0,0,0 +4304,5291,9573,-9,9574,9571,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1061.36472652619,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,2,2,1,815.25,0,0,0 +4304,5291,9574,9571,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,5,7.615118490727411,7.939954844834216,0,2,0,-9,16,0,-7,55.8110806071823,0,0,1,48,2,3,1,-9,-9,2019,1,2,8,0,27,32,15,1,0,1,0,9.030280937470716,9.030280937470716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,57.55,6,1,0,0,2,2,1,815.25,0,0,0 +4305,5292,9575,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,2,1,0,1,8.695976015051651,8.593777508817277,0,3,0,-9,0,0,0,-956.2919290837217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,57,39,15,1,4,-9,0,13.92269749752381,13.92269749752381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.11,35.1,4,3,0,0,8,5,0,2125,0,0,0 +4306,5293,9576,9577,-9,-9,1,1,1,48,1,1,1,0,3,-9,2,1,0,5,8.479313256497456,8.460120222768165,0,2,0,-9,27,0,3,-60.03220741077263,0,0,0,45,2,3,3,-9,2,2019,2,2,6,0,50,39,15,1,0,3,0,9.327130278188074,9.327130278188074,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.39,56.71,7,1,0,0,2,3,1,804,0,0,0 +4306,5293,9577,9576,-9,-9,2,1,0,45,1,1,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,27,0,-3,76.4763144674934,0,0,0,48,3,5,1,3,2,2019,3,1,19,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.01,55.9,3,1,1,0,2,3,1,804,0,0,0 +4306,5294,9578,-9,9577,9576,3,1,1,22,2,1,1,0,2,-9,2,1,0,4,7.486044408676896,7.763182794075814,0,3,0,0,0,-9,0,-1121.432622442831,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,37,0,15,1,0,-9,1,5.748830659173906,5.748830659173906,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,467,0,0,0 +4306,5295,9579,-9,9577,9576,4,1,0,19,2,1,1,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-962.7013787514625,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.58,63.43,4,1,1,0,2,1,1,166,0,0,0 +4306,5295,9580,-9,9579,-9,5,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1090.32949644825,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,2,1,1,166,0,0,0 +4307,5296,9581,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-981.1377704964132,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.84,44.47,4,1,0,0,12,1,0,771,0,0,0 +4308,5297,9582,9583,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,6.176452892065805,5.969910483290347,1,0,-9,34,0,-2,-18.08549050823562,0,0,0,78,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.879074138340712,6.338610725299867,0,0,52.91,55.33,7,1,0,0,12,3,1,255.5,0,0,0 +4308,5297,9583,9582,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,4,0,7.236741033989088,7.477748990962853,1,0,-9,34,0,2,-43.75076834434195,0,0,0,76,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.682818405801687,7.185831982337179,0,0,56.97,52.1,7,1,0,0,12,3,1,255.5,0,0,0 +4309,5298,9584,-9,9586,9585,4,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-959.4328686801704,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.1,35.32,6,1,0,0,13,4,1,746.3333333333334,0,0,0 +4309,5298,9585,9586,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.569145011363538,8.775643516774752,0,2,0,-9,6,0,6,19.1487506230905,0,0,0,41,2,5,1,2,2,2019,1,2,11,0,39,46,15,1,0,1,0,14.16320855957703,14.16320855957703,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.22,57.27,4,1,0,0,13,4,1,746.3333333333334,0,0,0 +4309,5298,9586,9585,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,5,8.398336293831992,8.686211995083461,0,2,0,-9,6,0,-6,-95.69273142686643,0,0,1,47,2,3,1,2,2,2019,1,1,8,0,38,38,15,1,0,1,0,14.55231777248636,14.55231777248636,0,0,0,0,0,0,0,1,1,0,6.457304000417885,0,0,0,57.06,57.76,6,1,0,0,13,4,1,746.3333333333334,0,0,0 +4309,5299,9587,-9,9586,9585,3,1,1,18,2,0,2,1,2,0,7,2,0,4,6.740422977199336,6.448129020543941,0,3,0,0,0,-9,0,-908.6240209182964,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,755,0,0,0 +4310,5300,9588,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,6.806307734399934,6.974997182015619,3,0,0,0,-9,0,-1007.294132860929,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.884162485693374,0,0,0,0,47.71532005278802,1,1,0,0,7.210380293669233,0,0,35.46,36.69,7,1,0,0,7,2,0,898,0,0,0 +4311,5301,9589,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,3,8.417821336311485,9.015087941060081,7.240145866719506,3,0,0,0,-9,0,-962.0056573196844,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.449545478348285,7.633141345739191,.608154510940442,3,46.08,57.2,5,4,0,0,8,5,1,294,0,0,0 +4312,5302,9590,9592,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.998348950152948,8.086177299584673,0,2,0,-9,23,0,2,91.02058038066495,0,0,0,44,1,4,1,2,2,2019,1,2,6,0,10,10,15,1,0,1,0,31.7462481797747,31.7462481797747,0,0,0,0,0,0,0,0,0,0,7.618929023944558,0,0,0,61.12,51.57,6,1,0,0,9,3,1,544.5,0,0,0 +4312,5302,9591,-9,9590,9592,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.8027338500974,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,3,1,544.5,0,0,0 +4312,5302,9592,9590,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,7.477349514490252,7.720198423629138,0,2,0,-9,23,0,-2,-23.4882851800933,0,0,0,46,2,4,1,2,2,2019,1,1,13,2,50,40,15,1,2,1,0,3.557579251538789,3.557579251538789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,5,1,0,0,9,3,1,544.5,0,0,0 +4312,5302,9593,-9,9590,9592,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1051.873440425143,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,1,0,0,9,3,1,544.5,0,0,0 +4313,5303,9594,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,3,8.516968224245044,8.692472917768239,7.936640136898844,3,0,0,0,-9,0,-919.3468475592713,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,49,22,15,1,1,-9,0,12.05485466337463,12.05485466337463,0,0,0,0,0,0,0,1,1,0,0,8.02944354289296,0,0,50,47,5,4,0,0,6,5,1,217,0,0,0 +4314,5304,9595,-9,-9,-9,1,1,0,43,3,0,4,0,2,-9,2,1,0,2,7.26815293174222,7.967179219274506,7.041834830680933,4,0,0,0,-9,0,-1038.854317418809,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,1,21,21,15,1,1,-9,0,6.742037028074415,6.742037028074415,0,0,0,0,0,0,0,1,1,0,6.930096698713617,0,0,0,61.1,19.62,4,3,0,0,6,2,1,1421,0,0,0 +4314,5304,9596,-9,9595,-9,2,1,0,17,2,0,4,1,2,-9,7,2,0,4,6.787140561829127,6.700402053894949,0,4,0,0,0,-9,0,-972.4981026019465,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,2,0,0,6,2,1,1421,0,0,0 +4314,5304,9597,-9,9595,-9,4,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1065.87228995094,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,2,1,1421,0,0,0 +4314,5304,9598,-9,9595,-9,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1007.697434211615,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,1421,0,0,0 +4314,5304,9599,-9,9595,-9,3,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-937.6355681751419,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,2,0,0,6,2,1,1421,0,0,0 +4315,5305,9600,9601,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,7.127838969981664,7.27028024085837,0,1,0,-9,25,0,-5,25.90121778353992,0,0,0,64,2,2,1,3,3,2019,1,1,12,0,22,34,15,1,0,1,0,6.98865979763884,6.98865979763884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.01,42.9,2,1,0,0,1,4,0,915,0,0,0 +4315,5305,9601,9600,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,2,8.07867229267927,8.356020303742559,7.056905752382892,1,0,-9,28,0,5,123.5490657997548,0,0,0,59,2,2,1,3,3,2019,1,2,12,0,49,55,15,1,0,1,0,7.327770110268691,7.327770110268691,0,0,0,0,0,0,0,1,1,0,6.432983030041436,7.293423089386778,0,0,35.05,35.48,4,1,0,1,1,4,0,915,0,0,0 +4316,5306,9602,9603,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,50,0,-5,-150.8186407353403,0,0,0,75,2,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.795753977727546,0,0,0,54.2,57.49,7,1,0,0,9,2,1,1150.5,0,0,0 +4316,5306,9603,9602,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.042357573237036,7.397392594701697,1,0,-9,50,0,5,64.85764914227111,0,0,0,70,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.297655874914376,6.971511090635115,0,0,62.42,42.94,7,1,0,0,9,2,1,1150.5,0,0,0 +4317,5307,9604,9605,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,5,8.729619683140665,8.825214123552835,8.066696903452144,1,0,-9,41,0,3,15.11453964526105,0,0,0,61,2,3,3,-9,-9,2019,2,2,6,0,19,19,15,1,0,4,0,30.47485913865111,30.47485913865111,0,0,0,0,0,0,0,0,0,0,0,8.003121003715751,0,0,53.34,56.67,6,1,0,0,13,5,1,338,0,0,0 +4317,5307,9605,9604,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,41,0,-3,-129.4920782394426,0,0,0,64,1,5,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,4,1,0,0,13,5,1,338,0,0,0 +4318,5308,9606,9607,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,3,8.591358806507728,7.79657207378125,0,1,0,-9,18,-9,11,-37.13953054119759,-9,0,0,43,2,4,1,3,3,2019,1,2,6,0,12,0,15,1,0,1,0,42.27559024618913,42.27559024618913,0,0,0,0,0,0,0,1,0,1,0,0,32.21067301963367,3,61.43,48.88,7,1,0,0,4,5,0,236,0,0,0 +4318,5308,9607,9606,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,4,8.029536200509526,8.312629146663038,0,1,0,-9,18,-9,-11,131.1747416689325,-9,0,0,54,2,3,1,3,3,2019,1,1,15,3,54,0,15,1,3,1,0,10.39561893278995,10.39561893278995,0,0,0,0,0,0,0,1,0,1,0,0,18.61472306365366,3,51.92,54.36,5,1,0,0,4,5,0,236,0,0,0 +4318,5309,9608,-9,9606,9607,3,1,0,26,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1093.723455520165,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.7,57.11,7,1,1,0,4,1,0,73,0,0,0 +4318,5310,9609,-9,9606,9607,4,1,1,21,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-963.1785830842541,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.58,31.28,6,1,1,0,4,1,0,415,0,0,0 +4319,5311,9610,9611,-9,-9,2,1,0,36,1,0,3,0,2,-9,2,1,0,4,7.264852545796475,7.809793958333342,0,2,0,-9,15,0,0,-61.15412670175656,0,0,1,36,2,3,1,2,1,2019,1,1,13,1,28,28,15,1,1,1,0,7.818347516504418,7.818347516504418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.48,59.49,2,1,0,0,13,4,1,458.2,0,0,0 +4319,5311,9611,9610,-9,-9,1,1,1,36,1,0,3,0,2,-9,2,1,0,3,8.54195389150944,8.872148190395007,0,2,0,-9,15,0,0,-153.4916702388317,0,0,0,36,2,4,1,3,3,2019,1,2,10,0,42,38,15,1,0,1,0,14.92678851640665,14.92678851640665,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,48.27,4,1,0,0,13,4,1,458.2,0,0,0 +4319,5311,9612,-9,9610,9611,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1080.953394759757,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,13,4,1,458.2,0,0,0 +4319,5311,9613,-9,9610,9611,5,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1001.075084797266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,13,4,1,458.2,0,0,0 +4319,5311,9614,-9,9610,9611,4,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1021.129381216959,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,13,4,1,458.2,0,0,0 +4320,5312,9615,9616,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,7.768518812494044,7.834329143434477,0,1,0,-9,30,0,1,-49.99680143703576,0,0,0,53,2,4,1,2,2,2019,1,2,10,1,22,20,15,1,1,1,0,11.85213373579401,11.85213373579401,0,0,0,0,0,0,0,0,0,0,8.438149131382172,0,0,0,51.83,57.2,6,1,0,0,9,4,1,604.5,0,0,0 +4320,5312,9616,9615,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,7.911439870016054,7.697165731342565,0,1,0,-9,30,0,-1,-38.57182677270052,0,0,0,54,2,4,1,2,-9,2019,1,1,6,0,40,40,15,1,0,1,0,6.724973315029339,6.724973315029339,0,0,0,0,0,0,0,0,0,0,9.678666720962253,0,0,0,59.53,56.44,6,1,0,0,9,4,1,604.5,0,0,0 +4320,5313,9617,-9,9615,9616,3,1,1,25,2,0,0,0,2,-9,2,1,0,3,8.016051291742182,7.955587514345166,0,3,0,0,0,-9,0,-1042.684810735861,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,43,40,15,1,2,-9,1,9.235211632773312,9.235211632773312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.62,3,1,0,0,9,4,1,421,0,0,0 +4321,5314,9618,-9,9619,9621,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.980413629197,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,1056,0,0,0 +4321,5314,9619,9621,-9,-9,2,1,0,53,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,20,0,0,-138.9078076091669,0,0,0,53,1,3,1,2,1,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.817340923466732,0,0,0,57.33,53.46,6,1,0,0,9,5,1,1056,0,0,0 +4321,5314,9620,-9,9619,9621,3,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-998.9310333710843,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,14,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,6,1,0,0,9,5,1,1056,0,0,0 +4321,5314,9621,9619,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,3,9.64699896582615,9.619362687504813,0,2,0,-9,20,0,0,-26.62570709342553,0,0,0,53,2,3,3,2,3,2019,2,2,11,0,45,60,15,1,0,3,0,36.58162697566394,36.58162697566394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,9,5,1,1056,0,0,0 +4322,5315,9622,9623,-9,-9,2,1,1,57,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,17,0,5,110.722042411641,0,0,0,52,2,3,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.626390225720663,0,123.694109665988,3,54,54,6,1,0,0,7,3,1,376,0,0,0 +4322,5315,9623,9622,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,6.912766529970056,7.514417394275866,6.801469461349638,1,0,-9,17,0,-5,3.965899070407495,0,0,0,57,1,4,3,3,3,2019,2,2,11,1,25,8,15,1,1,4,0,5.121345610400109,5.121345610400109,0,0,0,0,0,0,0,0,0,0,3.065611581107217,7.14431514482499,0,0,39.15,41.42,6,1,0,0,7,3,1,376,0,0,0 +4323,5316,9624,9625,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,6.788430646730047,6.48191856585656,1,0,-9,58,0,1,70.50066104235295,0,0,0,80,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.053096300230647,6.502579619033468,0,0,65.40000000000001,22.5,6,1,0,0,6,2,1,551,0,0,0 +4323,5316,9625,9624,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,6.823677961180268,7.01119924069671,1,0,-9,10,0,-1,101.3999458591916,0,0,0,81,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.049256102305445,6.727394772403971,0,0,54.96,53.17,7,1,0,0,6,2,1,551,0,0,0 +4324,5317,9626,-9,9628,9630,3,1,1,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1014.342466114905,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,4,1,501.4,0,0,0 +4324,5317,9627,-9,9628,9630,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.4894681060822,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,501.4,0,0,0 +4324,5317,9628,9630,-9,-9,1,1,0,34,1,1,3,0,1,-9,2,1,0,5,8.32967136359248,8.36401017029039,0,2,0,-9,15,0,0,-26.03094342228215,0,0,1,43,2,4,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,13.83189845477268,13.83189845477268,0,0,0,0,0,0,0,1,1,0,2.187242710397423,0,0,0,54.1,59.11,6,1,0,0,9,4,1,501.4,0,0,0 +4324,5317,9629,-9,9628,9630,4,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.5290941042816,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,501.4,0,0,0 +4324,5317,9630,9628,-9,-9,2,1,1,43,1,1,3,0,2,-9,2,1,0,4,8.372837637401766,8.162606718073997,0,2,0,-9,15,0,9,-4.387078804442388,0,0,0,34,1,5,1,2,2,2019,1,1,7,0,50,44,15,1,0,1,0,9.371111923430488,9.371111923430488,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,4,1,501.4,0,0,0 +4325,5318,9631,9632,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,42,-9,-1,-93.68562800056148,-9,0,0,79,3,2,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.9845983089009,1,49.67,35.36,6,1,0,0,7,2,1,421.5,0,0,0 +4325,5318,9632,9631,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,6.287975320567806,6.671613505799249,1,0,-9,1,-9,1,-3.436139132698933,-9,0,0,78,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,31.57992764736023,0,0,0,0,1,1,0,0,6.427930656053419,0,0,51.7,35.88,7,1,0,0,7,2,1,421.5,0,0,0 +4326,5319,9633,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1079.700936959186,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.31,39.42,3,4,0,0,4,1,0,1423,0,0,0 +4326,5320,9634,-9,9633,-9,2,1,0,20,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1060.260034054031,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.35,38.67,4,1,1,0,4,1,0,5837,0,0,0 +4327,5321,9635,-9,-9,-9,1,1,0,33,3,0,2,0,3,-9,6,3,0,3,0,6.447963885691842,6.393168479179853,4,0,0,0,-9,0,-1084.789014894282,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.522142891896366,0,120.447265789227,3,49.04,55.86,6,1,0,0,12,2,0,530.6666666666666,0,0,0 +4327,5321,9636,-9,9635,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-934.4520058291938,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,530.6666666666666,0,0,0 +4327,5321,9637,-9,9635,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-965.3299979990076,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,530.6666666666666,0,0,0 +4328,5322,9638,-9,-9,-9,1,1,1,25,2,0,0,0,1,0,7,2,0,3,4.649656604394763,4.652489065252738,0,3,0,0,0,-9,0,-1049.118860954765,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.371832861141732,0,0,0,49.04,55.86,6,1,0,0,2,2,0,471,0,0,0 +4329,5323,9639,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,5,0,7.803297968747923,8.445906130902742,3,0,0,0,-9,0,-1067.389336955618,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.279801941859807,.6748145290848377,3,62.39,56.71,7,1,0,0,12,4,1,321,0,0,0 +4330,5324,9640,9641,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,7.837023736642091,8.193556598959406,1,0,-9,7,0,9,64.06439176382695,0,0,0,54,1,2,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.02942059030493,7.89791538117348,3.81302379069023,3,54.2,57.49,6,1,0,0,10,4,1,310,0,0,0 +4330,5324,9641,9640,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,2,7.707809357115075,7.560293559747964,0,1,0,-9,7,0,0,-66.12802025164024,0,0,0,63,2,4,3,-9,-9,2019,2,1,9,0,20,10,15,1,0,4,0,12.08156483723611,12.08156483723611,0,0,0,0,0,0,0,1,1,0,1.292782253967031,0,10.13575897794608,3,53.57,31.34,5,1,0,0,10,4,1,310,0,0,0 +4331,5325,9642,9643,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,5.844163429627878,6.291873855430163,1,0,-9,37,0,3,-24.34881769711345,0,0,0,63,2,3,3,2,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.333360395060226,6.207778878928601,11.02734877040984,3,50.6,48.3,6,1,0,0,2,3,1,368,0,0,0 +4331,5325,9643,9642,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.699257125124539,7.473853984767905,1,0,-9,7,0,-3,104.4814040686897,0,0,0,66,2,3,3,-9,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.24572927433056,7.458928366270595,7.641280797342539,3,57.33,53.46,6,1,0,0,2,3,1,368,0,0,0 +4332,5326,9644,-9,9647,-9,2,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-958.0521292058618,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,555,0,0,0 +4332,5326,9645,-9,9647,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.29368003462,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,555,0,0,0 +4332,5326,9646,-9,9647,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-903.5876314063953,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,7,2,0,555,0,0,0 +4332,5326,9647,-9,-9,-9,1,1,0,29,2,0,3,0,2,-9,2,1,0,4,7.037404734966321,6.835338556521507,5.641295336898019,4,0,0,0,-9,0,-983.2381372744338,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,16,0,15,1,1,-9,0,7.168062237778964,7.168062237778964,0,0,0,0,0,0,0,1,1,0,5.626689799691564,0,16.86651131857546,3,45.91,59.89,6,1,0,0,7,2,0,555,0,0,0 +4333,5327,9648,-9,9652,9649,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.501978481521,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,10,2,1,840,0,0,0 +4333,5327,9649,9652,-9,-9,2,1,1,59,1,0,3,0,2,-9,2,1,0,4,6.843370721801324,6.613173644234903,0,2,0,-9,33,0,9,108.7712553436334,0,0,0,50,2,3,1,-9,2,2019,1,1,14,2,17,16,15,1,2,1,0,7.520268380772873,7.520268380772873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,56.48,5,1,0,0,10,2,1,840,0,0,0 +4333,5327,9650,-9,9652,9649,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.105954493342,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,1,840,0,0,0 +4333,5327,9651,-9,9652,9649,4,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-981.3911054712362,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,10,2,1,840,0,0,0 +4333,5327,9652,9649,-9,-9,1,1,0,50,1,0,3,0,2,-9,2,1,0,3,7.623272030895586,7.722886358630563,0,2,0,-9,33,0,0,28.93081995808874,0,0,0,59,2,4,1,2,2,2019,1,2,11,1,26,25,15,1,1,1,0,10.2250070940396,10.2250070940396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,10,2,1,840,0,0,0 +4334,5328,9653,9654,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,2,5.367233415849204,7.64612166516345,7.79846339372788,1,0,-9,8,0,0,-36.68131571529665,0,0,0,74,2,4,3,3,2,2019,4,1,9,0,7,0,15,4,0,4,0,0,0,1,0,3.212143870942943,0,0,0,0,1,1,0,4.02854164039194,7.604317142543615,0,0,55.95,36.7,4,1,0,0,7,3,1,1099,0,0,0 +4334,5328,9654,9653,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.292585247421791,7.432994349539489,1,0,-9,8,0,0,-122.4266018110782,0,0,0,74,1,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.636881372498669,7.279117041141257,0,0,50.4,51.87,1,1,0,0,7,3,1,1099,0,0,0 +4335,5329,9655,-9,9656,9658,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1031.488402164997,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,2,0,1619,0,0,0 +4335,5329,9656,-9,-9,-9,1,1,0,42,2,0,2,0,1,-9,1,1,0,3,6.947647813173017,6.683542972157952,0,4,0,-9,0,0,0,-1046.534149331292,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,25,35,15,1,5,-9,0,5.259497622983419,5.259497622983419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.65,56.19,4,1,0,0,12,2,0,1619,0,0,0 +4335,5329,9657,-9,9656,9658,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1087.181985227921,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,1619,0,0,0 +4335,5330,9658,-9,-9,-9,2,1,1,35,2,0,2,0,1,-9,2,1,0,4,7.59757965420865,7.278909933409307,0,4,0,-9,0,0,0,-1063.591447088712,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,26,10,40,55,15,1,10,-9,0,5.400111774465354,5.400111774465354,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.34,65.52,3,1,0,1,12,2,0,987,0,0,0 +4336,5331,9659,-9,9660,-9,1,1,0,36,2,0,3,0,2,-9,2,1,0,3,7.455687610456729,7.268999948280027,0,3,0,0,0,-9,0,-1052.978364949529,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,25,15,1,0,-9,1,7.713423393434415,7.713423393434415,0,0,0,0,0,0,0,1,1,0,0,0,75.47234623702798,3,46.18,44.66,4,1,0,0,4,3,0,303,0,0,0 +4336,5332,9660,-9,-9,-9,4,1,0,59,3,0,3,0,2,-9,4,3,0,1,0,4.590640841615184,4.3241190489062,4,0,0,0,-9,0,-952.7683953940613,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.708154419864838,117.917883634613,3,29.37,25.74,2,1,0,0,4,1,0,511,0,0,0 +4337,5333,9661,9662,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,1,-36.00292178226815,0,0,0,70,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,22.14609415402841,0,0,.8070220691538759,0,1,1,0,2.365820349978161,0,0,0,60.2,21.05,7,1,0,0,13,2,1,296.5,0,0,0 +4337,5333,9662,9661,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,5.89639936380872,5.887119682744261,1,0,-9,6,0,-1,44.827395577427,0,0,0,71,3,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.170962802498629,6.629137426995178,1,57.63,34.57,4,1,0,0,13,2,1,296.5,0,0,0 +4338,5334,9663,9664,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,4,0,8.140798868320934,8.195014661005294,1,0,-9,6,0,-6,-62.49221050303328,0,0,0,86,2,3,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,4.527838043824822,0,0,0,0,0,1,1,0,3.56407203175905,8.141950429529917,0,0,55.36,54.24,6,1,0,0,11,3,1,657,0,0,0 +4338,5334,9664,9663,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,3,0,5.474126852056142,5.225768780404312,1,0,-9,6,0,6,122.4528697390881,0,0,0,80,2,4,3,3,2,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,1,4.067070545329791,0,0,0,0,0,1,1,0,5.075851491162298,5.303871774844989,0,0,51.76,27.09,6,1,0,0,11,3,1,657,0,0,0 +4339,5335,9665,9666,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.675561867218253,8.581827901473753,3.625963828576639,1,0,-9,6,0,1,18.79301724767529,0,0,0,56,2,3,1,3,3,2019,1,2,11,0,57,48,15,1,0,1,0,10.60904709798136,10.60904709798136,0,0,0,0,0,0,0,0,0,0,4.634634699798383,3.597447993108165,0,0,43.48,60.97,6,1,0,0,8,5,0,872.5,0,0,0 +4339,5335,9666,9665,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,9.500569227493274,9.373051416220088,0,1,0,-9,6,0,-1,17.56330245528199,0,0,0,57,1,4,1,-9,-9,2019,1,1,7,0,45,50,15,1,0,1,0,36.64275031364738,36.64275031364738,0,0,0,0,0,0,0,0,0,0,6.781585436334969,0,0,0,57.93,46.29,6,1,0,0,8,5,0,872.5,0,0,0 +4340,5336,9667,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,2,0,5.290842785930894,5.342880817424407,3,0,0,0,-9,0,-946.6709437089665,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.130039702985532,0,0,58.17,42.52,6,1,0,0,2,2,0,140,0,0,0 +4341,5337,9668,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,2,0,7.127465886177363,7.138342273007556,3,0,0,0,-9,0,-1018.880047854109,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.3988862767404387,6.925844325088866,0,0,45.67,39,4,1,0,0,12,2,1,161,0,0,0 +4342,5338,9669,9671,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,3,7.912019602121759,7.821722413677795,0,2,0,-9,9,0,-3,-4.958290419246098,0,0,1,38,1,4,1,-9,-9,2019,1,1,20,8,21,20,15,1,8,1,0,17.20304818186685,17.20304818186685,0,0,0,0,0,0,0,1,1,0,2.109167864733136,0,0,0,26.77,59.45,5,1,0,0,5,4,1,659,0,0,0 +4342,5338,9670,-9,9669,9671,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.7133575426086,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,4,1,659,0,0,0 +4342,5338,9671,9669,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,4,8.99002272581024,8.770474195865281,0,2,0,-9,9,0,3,-11.45671362168239,0,0,0,35,1,3,1,2,1,2019,1,2,9,0,41,41,15,1,0,1,0,17.85381670742208,17.85381670742208,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,5,4,1,659,0,0,0 +4342,5338,9672,-9,9669,9671,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.542731819741,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,659,0,0,0 +4343,5339,9673,-9,-9,-9,1,1,0,79,2,0,0,0,3,-9,4,3,0,2,0,6.870554826392588,6.863700114490903,3,0,0,0,-9,0,-1103.22739410578,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.430865314244085,0,0,49.76,34.42,5,1,0,0,6,2,0,342,0,0,0 +4344,5340,9674,9675,-9,-9,2,1,0,58,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,27,0,-5,-56.70531172750172,0,0,0,63,3,4,1,2,3,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.55,44.33,2,1,0,0,13,2,1,208,0,0,0 +4344,5340,9675,9674,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,4,7.447984078772021,7.24861240825337,0,1,0,-9,28,0,5,39.62753462551782,0,0,0,58,3,3,3,3,3,2019,2,2,7,0,50,0,15,1,0,4,0,3.222504747619835,3.222504747619835,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,2,1,208,0,0,0 +4344,5341,9676,-9,9674,9675,3,1,1,22,2,0,0,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1119.544622768263,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,1,13,1,1,489,0,0,0 +4345,5342,9677,9678,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,3,9.074584440151062,8.732245199748192,0,2,0,-9,7,0,5,2.28455838036165,0,0,0,47,2,3,1,2,1,2019,1,1,9,0,41,36,15,1,0,1,0,15.14744162577218,15.14744162577218,0,0,0,0,0,0,0,1,1,0,0,0,13.97306611894504,3,57.33,53.46,6,1,0,0,8,4,1,184,0,0,0 +4345,5342,9678,9677,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.956832496635746,7.675237227786644,0,2,0,-9,7,0,-5,-41.01555316371369,0,0,0,52,2,3,1,2,2,2019,1,2,12,0,22,18,15,1,0,1,0,10.68115741203468,10.68115741203468,0,0,0,0,0,0,0,1,1,0,.7202219075079259,0,11.11716245152288,3,41.28,57.99,3,1,0,0,8,4,1,184,0,0,0 +4346,5343,9679,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-871.6850758131952,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.96,41.15,4,1,0,0,1,1,1,1386,0,0,0 +4347,5344,9680,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,2,1,0,4,7.208568480119384,7.245812522146456,0,3,0,-9,0,1,0,-976.4977850648994,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,41,40,15,1,2,-9,0,3.74417431258238,3.74417431258238,0,0,0,0,0,0,0,0,0,0,2.280632228796087,0,0,0,45.3,54.5,5,3,0,0,6,3,1,2900,0,0,0 +4348,5345,9681,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,2,8.190156210120868,8.556892827456444,0,3,0,0,0,-9,0,-991.8347105159008,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,38,15,1,0,-9,0,11.1278568501069,11.1278568501069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.08,43.27,6,1,0,0,6,4,0,584,0,0,0 +4349,5346,9682,9683,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,4,8.441280475543049,8.920476573536698,0,2,0,-9,3,0,3,10.19928271078558,0,0,0,31,2,4,1,-9,-9,2019,1,1,2,0,42,50,15,1,0,1,0,18.71047584507116,18.71047584507116,0,0,0,0,0,0,0,1,1,0,2.892147663378044,0,0,0,58.15,52.91,7,4,0,0,9,5,0,1209.333333333333,0,0,0 +4349,5346,9683,9682,-9,-9,1,1,0,31,1,1,1,0,2,-9,2,1,0,4,8.017323618079608,8.318424316212695,0,2,0,-9,3,0,-3,86.5651476919318,0,0,1,34,1,4,1,-9,-9,2019,1,2,6,0,20,52,15,1,0,1,0,19.88254177363027,19.88254177363027,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,0,1209.333333333333,0,0,0 +4349,5346,9684,-9,9683,9682,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.525378471544,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,9,5,0,1209.333333333333,0,0,0 +4350,5347,9685,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-918.6219596076962,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,7,1,0,629,0,0,0 +4351,5348,9686,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,8.015167716847126,7.641182846439611,3,0,0,0,-9,0,-981.9586325018495,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.519257476849623,7.881980822000346,0,0,57.16,56.15,6,1,0,0,12,3,1,1750,0,0,0 +4352,5349,9687,9688,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,6.496082937864545,6.513663535307877,1,0,-9,56,0,-1,-38.79385040953569,0,0,0,74,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.56752471425291,6.145151736815114,0,0,57.16,56.15,6,1,0,0,9,4,1,603.5,0,0,0 +4352,5349,9688,9687,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,8.765997173690675,8.557757691834114,1,0,-9,56,0,1,40.1050674745431,0,0,0,73,1,4,3,3,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.749280492567273,0,0,56.46,52.35,7,1,0,0,9,4,1,603.5,0,0,0 +4353,5350,9689,-9,9690,9691,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.780744378673,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,607,0,0,0 +4353,5350,9690,9691,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,5,8.580784893686033,8.627595331480443,0,2,0,-9,7,0,-2,140.9062698984105,0,0,1,41,1,4,1,2,2,2019,1,1,12,3,28,28,15,1,3,1,0,21.10329120928373,21.10329120928373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,64.09999999999999,6,1,0,0,12,5,1,607,0,0,0 +4353,5350,9691,9690,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,4,9.93169193778083,9.880034069012718,0,2,0,-9,7,0,2,27.43813505623106,0,0,0,39,1,5,1,2,2,2019,1,2,7,0,6,25,15,1,0,1,0,322.7050436137564,322.7050436137564,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,607,0,0,0 +4354,5351,9692,9693,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,1,0,0,0,0,83,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,4.090918616022391,0,0,0,0,1,1,0,0,0,0,0,55,45,6,1,0,0,13,1,1,131.5,0,0,0 +4354,5351,9693,9692,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,0,0,0,0,84,2,3,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,6,1,0,0,13,1,1,131.5,0,0,0 +4355,5352,9694,9695,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,0,5.370669782712397,4.774677088718052,1,0,-9,57,0,1,-65.76407466876665,0,0,0,75,3,2,3,3,3,2019,4,1,25,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.731748780140087,0,0,36.38,20.04,4,1,0,0,13,2,1,574.5,0,0,0 +4355,5352,9695,9694,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,57,0,-1,-9.800106891821338,0,0,0,76,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,74.69035924360082,1,61.12,27.63,7,1,0,0,13,2,1,574.5,0,0,0 +4356,5353,9696,9697,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,4.10156683942777,4.18855601266222,1,0,-9,22,0,18,-38.49777592725773,-9,0,0,58,2,3,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.191107245740223,3.973666666290211,0,0,50.67,47.25,6,4,0,1,6,4,1,609,0,0,0 +4356,5353,9697,9696,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.448384576609602,8.452420000130275,0,1,0,-9,21,0,-18,-14.33017491680792,0,0,0,76,3,2,3,2,3,2019,2,2,20,8,40,47,15,1,8,4,0,14.28182000916193,14.28182000916193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,47.36,5,4,0,1,6,4,1,609,0,0,0 +4357,5354,9698,9699,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,1,0,5.33280792555447,5.274980372705193,1,0,-9,37,0,6,-23.64544515767435,0,0,0,62,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,1,0,78.53070246190623,0,0,0,0,1,1,0,0,5.555403038096929,0,0,37.48,17.04,3,1,0,0,9,2,0,537.5,0,0,0 +4357,5354,9699,9698,-9,-9,1,1,0,62,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,37,0,-6,87.38201383754426,0,0,0,68,3,1,3,-9,-9,2019,4,2,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,128.2619596620383,1,38.75,43.02,4,1,1,0,9,2,0,537.5,0,0,0 +4358,5355,9700,-9,-9,-9,1,1,0,22,2,0,0,0,2,0,7,2,0,4,6.375133115770407,6.361189575591142,0,3,0,0,0,-9,0,-1102.056455431109,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,4,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.36,54.29,6,1,0,0,9,2,0,195,0,0,0 +4359,5356,9701,9702,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,5,0,9.718291704348424,9.549819567425146,1,0,-9,34,0,-12,-196.937197421184,0,0,0,70,1,3,1,3,1,2019,3,2,17,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.939280869170068,9.477569144779975,0,0,46.53,61.33,6,1,0,0,8,5,1,113.5,0,0,0 +4359,5356,9702,9701,-9,-9,2,1,1,70,1,0,0,0,1,-9,1,1,0,3,8.526035095638012,9.648777816138098,9.421210877441821,1,0,-9,11,0,12,-17.62414580313238,0,0,0,58,2,5,3,-9,-9,2019,2,1,13,2,20,20,15,1,2,4,0,29.00923514931241,29.00923514931241,0,0,0,0,0,0,0,1,1,0,7.990002128170545,9.018964322949595,0,0,43.73,47.21,6,1,0,0,8,5,1,113.5,0,0,0 +4360,5357,9703,-9,9704,9705,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.6212241305702,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,874.3333333333334,0,0,0 +4360,5357,9704,9705,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,4,7.832901002196661,8.16699366287569,0,2,0,-9,8,0,6,-83.72101902894903,0,0,1,37,2,4,1,2,2,2019,1,2,5,0,20,20,15,1,0,1,0,15.22468251659776,15.22468251659776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,7,5,1,874.3333333333334,0,0,0 +4360,5357,9705,9704,-9,-9,2,1,1,37,1,0,1,0,2,-9,2,1,0,4,8.962379686975792,8.402168282477167,0,2,0,-9,8,0,-6,19.85414463303624,0,0,0,43,2,4,1,-9,-9,2019,1,1,11,0,44,45,15,1,0,1,0,17.50515543340018,17.50515543340018,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,7,5,1,874.3333333333334,0,0,0 +4361,5358,9706,9707,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,4,0,0,0,1,0,-9,7,0,2,54.72730961902397,0,0,0,61,2,4,3,2,2,2019,2,2,6,0,40,45,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,2,1,579,0,0,0 +4361,5358,9707,9706,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,6.504126395318363,6.175494408000161,1,0,-9,7,0,-2,-3.726169306575118,0,0,0,63,3,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.399758192924494,5.002600334273668,3,54.79,55.86,7,1,0,0,12,2,1,579,0,0,0 +4362,5359,9708,9709,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.832353844409427,8.851028984921822,0,1,0,-9,8,0,2,45.32678033822255,0,0,0,55,1,4,3,2,2,2019,2,2,9,0,48,55,15,1,0,4,0,15.99607555200771,15.99607555200771,0,0,0,0,0,0,0,0,0,0,.1103263973968285,0,0,0,54,54,6,1,0,0,10,5,1,1163,0,0,0 +4362,5359,9709,9708,-9,-9,2,1,0,55,1,0,0,0,1,-9,4,3,0,4,0,7.249065015518213,7.298033788426167,1,0,-9,31,0,-2,4.406486688187734,0,0,0,57,1,4,1,1,1,2019,3,1,1,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.738705688864967,7.122035348802081,0,0,65.63,42.66,7,1,0,0,10,5,1,1163,0,0,0 +4362,5360,9710,-9,9709,9708,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,7.943821669456891,8.157459468149467,0,3,0,0,0,-9,0,-1076.612721755681,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,42,45,15,1,0,-9,1,11.27796400393265,11.27796400393265,0,0,0,0,0,0,0,0,0,0,4.79344334334454,0,0,0,54.38,41.24,6,1,0,0,10,4,1,2066,0,0,0 +4362,5361,9711,-9,9709,9708,4,1,0,22,2,0,0,0,2,-9,1,1,0,4,7.141484337393949,6.97879458652007,0,3,0,0,0,-9,0,-1075.949764320814,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,40,37,15,1,0,-9,1,3.472415953717053,3.472415953717053,0,0,0,0,0,0,0,0,0,0,1.128747942110081,0,0,0,46.5,58.26,6,1,0,0,10,2,1,902,0,0,0 +4363,5362,9712,9713,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,4,8.449925240500436,8.041145802987359,0,1,0,-9,12,0,4,141.6708032720736,0,0,0,46,2,3,1,-9,-9,2019,1,2,9,0,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,6,1,0,0,8,4,0,243.5,0,0,0 +4363,5362,9713,9712,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,3,7.341008660885179,7.15780104945377,0,1,0,-9,12,0,-4,-8.861044127788855,0,0,0,50,2,4,1,3,-9,2019,1,1,12,0,0,8,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,2,4,0,0,8,4,0,243.5,0,0,0 +4363,5363,9714,-9,9713,9712,3,1,0,19,2,0,0,0,2,1,11,3,0,3,6.946347968708342,6.992949525553228,0,3,0,0,0,-9,0,-822.3479070913864,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,38,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.2960102244912175,0,0,0,31.99,57.05,4,4,0,0,8,2,0,403,0,0,0 +4364,5364,9715,9716,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,4,6.948246228348736,7.194042421421075,0,1,0,-9,8,0,0,42.03456046835836,0,0,0,51,3,3,1,-9,-9,2019,1,1,22,9,18,16,15,1,9,1,0,7.358038008920749,7.358038008920749,0,0,0,0,0,0,0,0,0,0,0,0,2.838651861009577,3,53,55,3,1,0,0,5,4,0,831,0,0,0 +4364,5364,9716,9715,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,3,8.264738845443244,8.4120254972743,0,1,0,-9,8,0,0,-69.49940230963878,0,0,0,51,3,4,1,-9,-9,2019,1,2,7,0,95,70,15,1,0,1,0,4.592783956209226,4.592783956209226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,6,1,0,0,5,4,0,831,0,0,0 +4365,5365,9717,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1063.557602832263,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.22,55.74,4,4,0,0,8,1,0,779,0,0,0 +4365,5365,9718,-9,9717,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-932.3407277450689,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,779,0,0,0 +4365,5365,9719,-9,9717,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-941.5232926839396,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,1,0,779,0,0,0 +4366,5366,9720,9721,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,7.739866055706948,8.081228425765913,1,0,-9,36,0,14,103.7998732401679,0,0,0,59,1,3,3,3,3,2019,4,2,11,0,0,4,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.816124490731723,0,0,44.9,47.24,6,1,0,0,12,4,1,307,0,0,0 +4366,5366,9721,9720,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,3,0,7.762515021217308,7.501319365855587,1,0,-9,9,0,-14,60.73768126485532,0,0,0,73,1,3,3,-9,-9,2019,4,1,10,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.613559988608356,0,0,57.34,47.92,6,2,0,0,12,4,1,307,0,0,0 +4366,5367,9722,-9,9721,9720,3,1,1,21,2,0,0,0,2,1,2,1,0,3,6.810662402287615,6.716955246351035,0,3,0,0,0,-9,0,-913.3365140330309,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,25,12,15,0,15,1,12,-9,1,7.318340727244669,7.318340727244669,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.79,61.98,3,2,0,0,12,2,1,408,0,0,0 +4367,5368,9723,9724,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,5.767693424597792,5.592597771496592,1,0,-9,10,0,11,-42.28266482316049,0,0,0,64,3,2,3,-9,-9,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,2.664513632966181,0,0,0,0,1,1,0,6.140507660249421,5.480028767595538,0,3,38.91,42.1,5,1,0,0,6,2,1,635,0,0,0 +4367,5368,9724,9723,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,18,0,-11,73.52674087007986,0,0,0,75,3,2,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.049671060639515,0,.6412766507845014,3,42.65,41.71,5,1,0,0,6,2,1,635,0,0,0 +4368,5369,9725,9727,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,4,9.288344338829996,9.118065502268959,0,2,0,-9,6,0,2,-63.80825130251071,0,0,0,31,1,3,1,-9,-9,2019,1,1,7,0,53,50,15,1,0,1,0,21.75818481684821,21.75818481684821,0,0,0,0,0,0,0,0,0,0,6.774837385773932,0,0,0,57.16,56.15,6,1,0,0,2,5,1,733.3333333333334,0,0,0 +4368,5369,9726,-9,9727,9725,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.1592155631843,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,2,5,1,733.3333333333334,0,0,0 +4368,5369,9727,9725,-9,-9,1,1,0,31,1,1,1,0,1,-9,2,1,0,3,8.888257726358139,9.227636242972599,0,2,0,-9,6,0,-2,-2.468194834426151,0,0,1,33,1,4,1,2,1,2019,1,2,13,1,28,28,15,1,1,1,0,26.70655316032957,26.70655316032957,0,0,0,0,0,0,0,0,0,0,1.338277969583776,0,0,0,20.77,59.32,5,1,0,0,2,5,1,733.3333333333334,0,0,0 +4369,5370,9728,9729,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,4,8.582542158332252,8.648444875912025,0,2,0,-9,2,0,-2,-63.78798939104092,0,0,0,52,2,4,1,-9,-9,2019,1,2,10,0,39,38,15,1,0,1,0,17.23095306809988,17.23095306809988,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,0,10,4,1,1017,0,0,0 +4369,5370,9729,9728,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,4,7.428952330628031,7.719520399448963,0,2,0,-9,2,0,2,79.20040656456256,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,0,0,23,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,4,1,0,0,10,4,1,1017,0,0,0 +4369,5370,9730,-9,9729,9728,5,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-891.0469730591863,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,4,1,0,0,10,4,1,1017,0,0,0 +4369,5371,9731,-9,9729,9728,3,1,1,28,2,0,1,0,2,-9,2,1,0,4,7.394828552929281,7.675731492839155,0,3,0,0,0,-9,0,-1076.492983323948,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,0,15,1,0,-9,1,6.55710157676191,6.55710157676191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,4,1,0,0,10,3,1,335,0,0,0 +4369,5372,9732,-9,9729,9728,4,1,1,27,2,0,1,0,2,-9,2,1,0,4,7.228740943390375,7.177538213724474,0,3,0,0,0,-9,0,-1025.866047580471,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,37,15,1,0,-9,1,5.549910430429525,5.549910430429525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,4,1,0,0,10,3,1,467,0,0,0 +4370,5373,9733,-9,-9,-9,1,1,1,44,3,0,0,0,1,-9,2,1,0,3,9.228051458335875,8.920474059456062,0,3,0,0,0,-9,0,-883.186517757581,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,45,15,1,0,-9,0,26.09523068685091,26.09523068685091,0,0,0,0,0,0,0,0,0,0,7.072893057938876,0,0,0,51.94,55.88,6,2,0,0,9,5,1,599,0,0,0 +4371,5374,9734,-9,9736,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-930.8500318649036,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,799,0,0,0 +4371,5374,9735,-9,9736,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1122.249001281617,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,799,0,0,0 +4371,5374,9736,-9,-9,-9,1,1,0,43,2,0,2,0,1,-9,2,1,0,4,8.315938326129233,8.347675146866367,0,4,0,-9,0,0,0,-1033.778262985114,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,27,0,15,1,0,-9,0,15.96349391448267,15.96349391448267,0,0,0,0,0,0,0,1,1,0,0,0,68.26152437078896,3,41.45,58.6,6,1,0,0,4,3,1,799,0,0,0 +4372,5375,9737,9738,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,9,0,3,0,0,0,0,44,2,3,3,3,3,2019,2,1,12,0,40,30,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,5,3,0,0,8,1,0,758.5,0,0,0 +4372,5375,9738,9737,-9,-9,1,1,0,44,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,29,0,-3,0,0,0,1,47,2,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.69,52.99,5,3,1,0,8,1,0,758.5,0,0,0 +4372,5376,9739,-9,9738,9737,3,1,0,22,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1059.257824884436,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.193904909879016,0,0,0,44.98,55.14,5,3,0,1,8,1,0,654,0,0,0 +4373,5377,9740,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1102.6935776291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,3,3,-9,0,0,0,1,27.82817565286937,0,12.55224537738445,9.034201396902414,18.92699933037735,246.9803966934891,1,1,0,3.780547328146908,0,0,0,45.83,19.9,6,1,0,0,13,1,0,803,0,0,0 +4374,5378,9741,9742,-9,-9,2,1,1,58,1,0,0,0,3,-9,4,3,0,1,0,6.417746725755473,6.910656120914751,1,0,-9,7,0,0,124.6202743332638,0,0,0,58,2,3,1,3,2,2019,3,1,20,8,0,0,15,4,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.543364763451329,0,0,36.67,26.58,3,1,0,0,2,3,1,389.5,0,0,0 +4374,5378,9742,9741,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.302442231637586,7.059344576907266,0,1,0,-9,7,0,0,-30.56098280482691,0,0,0,58,3,1,3,-9,-9,2019,2,2,10,0,35,40,15,1,0,4,0,4.89531744088865,4.89531744088865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.26,38.87,4,1,0,0,2,3,1,389.5,0,0,0 +4375,5379,9743,9745,-9,-9,1,1,1,46,1,0,2,0,2,-9,1,1,0,2,7.342498055448364,6.94301387794684,0,2,0,-9,23,0,1,150.9808619973143,0,0,0,45,2,2,1,2,3,2019,1,2,6,0,45,45,15,1,0,1,0,3.692619846264192,3.692619846264192,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55.6,47.8,6,1,0,0,9,2,1,606.5,0,0,0 +4375,5379,9744,-9,9745,9743,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.6006092583664,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,1,606.5,0,0,0 +4375,5379,9745,9743,-9,-9,2,1,0,45,1,0,2,0,2,-9,1,1,0,2,0,0,0,2,0,-9,23,0,-1,117.2955717012009,0,0,0,46,2,2,1,2,2,2019,1,1,11,0,18,19,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.23,47.51,6,1,0,0,9,2,1,606.5,0,0,0 +4375,5379,9746,-9,9745,9743,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1103.352227407273,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,1,606.5,0,0,0 +4376,5380,9747,9748,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.418914182242177,7.699506860061662,1,0,-9,46,0,3,41.54631077643822,0,0,0,64,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.318151270980353,7.550842709769749,0,0,58.72,51.29,6,1,0,0,6,3,1,1410,0,0,0 +4376,5380,9748,9747,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,6.621524501466294,7.165810006696146,1,0,-9,46,0,-3,-60.71980744739062,0,0,0,67,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.982805525352739,6.91608237580268,0,0,46.64,55.46,6,1,0,0,6,3,1,1410,0,0,0 +4376,5381,9749,-9,9748,9747,3,1,0,36,3,0,0,0,1,1,2,1,0,3,7.553910986300962,7.390381489731175,0,3,0,0,0,-9,0,-914.2161054949896,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,60,0,15,1,0,-9,1,5.030266186753154,5.030266186753154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.74,48.37,6,1,0,0,6,3,1,4567,0,0,0 +4377,5382,9750,-9,-9,-9,2,1,1,62,3,0,3,0,3,-9,2,1,0,4,6.294356004221644,7.887479584182225,7.584956185377499,4,0,0,0,-9,0,-1013.265205589076,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,11,13,15,1,0,-9,0,6.494369540223495,6.494369540223495,0,0,0,0,0,0,0,1,1,0,5.21826187123577,7.310550514882676,0,0,54,53,6,1,0,0,4,2,1,183,0,0,0 +4377,5383,9751,-9,9754,9752,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.018207798893,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,915.8,0,0,0 +4377,5383,9752,9754,-9,-9,6,1,1,44,1,0,3,0,1,-9,2,1,0,5,8.572586571658137,8.512984697566749,6.729625334612614,2,0,-9,7,0,3,169.5571676805082,0,0,0,41,2,3,3,-9,-9,2019,2,1,10,0,40,38,15,1,0,3,0,11.98891619940015,11.98891619940015,0,0,0,0,0,0,0,1,1,0,0,7.144322515690591,0,0,54.1,59.11,6,1,0,0,4,3,1,915.8,0,0,0 +4377,5383,9753,-9,9754,9752,5,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.8944362480443,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,915.8,0,0,0 +4377,5383,9754,9752,-9,9750,1,1,0,41,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-3,36.81791865322418,0,0,1,44,1,5,1,3,3,2019,3,6,17,5,0,16,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.59097241331124,3,39.28,44.34,3,1,0,0,4,3,1,915.8,0,0,0 +4377,5383,9755,-9,9754,9752,4,1,1,14,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-929.2905360625801,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,4,3,1,915.8,0,0,0 +4378,5384,9756,9757,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,4,0,7.272262193282342,7.571841156471598,1,0,-9,17,0,0,63.557788516291,0,0,0,66,2,4,3,3,-9,2019,4,1,5,0,0,2,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.577912952090818,0,0,38.95,52.12,7,1,0,0,5,3,1,535.5,0,0,0 +4378,5384,9757,9756,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,6.975171718700988,7.250677419964056,1,0,-9,17,0,9,121.5039888666065,0,0,0,57,2,4,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.042098547074005,7.566039411286349,0,0,40.95,46,6,1,0,0,5,3,1,535.5,0,0,0 +4379,5385,9758,9759,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,3,7.902588392526046,8.032012415855222,0,1,0,-9,32,0,0,20.14493787845208,0,0,0,54,3,4,1,3,-9,2019,1,2,11,0,45,45,15,1,0,1,0,7.657202204924879,7.657202204924879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.24,46.59,5,1,0,0,8,4,0,431,0,0,0 +4379,5385,9759,9758,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,4,7.46681664225423,7.455783553214787,0,1,0,-9,7,0,0,15.09558215501603,0,0,0,54,3,3,1,-9,-9,2019,1,1,10,0,45,40,15,1,1,1,0,4.770131314916136,4.770131314916136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,53,6,1,0,0,8,4,0,431,0,0,0 +4380,5386,9760,9764,-9,-9,1,1,0,48,1,0,3,0,1,-9,2,1,0,3,9.271158642383135,8.66810438377051,0,2,0,-9,21,0,2,-56.86719821962681,0,0,0,46,2,4,1,1,2,2019,1,2,8,0,47,48,15,1,0,1,0,19.09799251504173,19.09799251504173,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,7,5,1,1247.4,0,0,0 +4380,5386,9761,-9,9760,9764,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.3469823470174,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,5,1,1247.4,0,0,0 +4380,5386,9762,-9,9760,9764,4,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1075.845167855408,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,7,5,1,1247.4,0,0,0 +4380,5386,9763,-9,9760,9764,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.313160917585,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,5,1,1247.4,0,0,0 +4380,5386,9764,9760,-9,-9,2,1,1,46,1,0,3,0,2,-9,2,1,0,4,8.745576824499258,8.627431587275851,0,2,0,-9,23,0,-2,17.69025179622938,0,0,0,48,1,3,1,2,2,2019,1,1,12,0,52,52,15,1,0,1,0,12.45245988119962,12.45245988119962,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.79,50.75,3,1,0,0,7,5,1,1247.4,0,0,0 +4381,5387,9765,9766,-9,-9,3,1,1,35,1,0,1,0,1,-9,2,1,0,4,9.054605394407998,9.226897643225623,0,2,0,-9,2,0,7,-149.1174524001934,0,0,0,28,2,5,1,-9,-9,2019,1,1,5,0,50,50,15,1,0,1,0,21.3423427988729,21.3423427988729,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,1271.333333333333,0,0,0 +4381,5387,9766,9765,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,5,7.212457051239412,7.38406131290244,0,2,0,-9,2,0,-7,50.62635652679135,0,1,1,35,1,4,1,-9,-9,2019,1,3,6,0,26,25,15,1,0,1,0,5.899025603369543,5.899025603369543,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.65,56.13,6,1,0,0,6,5,1,1271.333333333333,0,0,0 +4381,5387,9767,-9,9766,9765,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.779218197348,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,5,1,1271.333333333333,0,0,0 +4382,5388,9768,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,4,9.095431428980511,8.670203797777228,0,3,0,0,0,-9,0,-953.231700453638,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,2,38,41,15,1,2,-9,0,26.0363102420248,26.0363102420248,0,0,0,0,0,0,0,0,0,0,.8070495164496603,0,0,0,43.54,59.6,6,1,0,0,8,5,1,815,0,0,0 +4383,5389,9769,9770,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,8.297271369310883,8.563870144657516,0,1,0,-9,6,0,1,-90.500139206068,0,0,0,33,2,4,1,-9,-9,2019,1,2,6,0,40,0,15,1,0,1,0,11.61833232948904,11.61833232948904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,563.5,0,0,0 +4383,5389,9770,9769,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,4,7.752795434853129,7.665985156140658,0,1,0,-9,6,0,-1,-64.25975339411899,0,0,1,34,1,4,1,-9,-9,2019,1,1,7,0,39,40,15,1,0,1,0,7.902624072916307,7.902624072916307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,563.5,0,0,0 +4384,5390,9771,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,2,9.423479501213553,9.018434260531626,0,3,0,0,0,-9,0,-1121.182163539657,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,35,15,1,0,-9,0,20.40909369128958,20.40909369128958,0,0,0,0,0,0,0,0,0,0,4.150173407525409,0,9.168669354160421,3,56.2,40.63,5,1,0,0,4,5,1,256,0,0,0 +4385,5391,9772,9773,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,64,0,6,81.29868184257251,0,0,0,81,3,3,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.653640645421282,0,0,1,52.27,58.55,7,1,0,0,2,2,0,749,0,0,0 +4385,5391,9773,9772,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,6.590585427653685,6.921312928427279,1,0,-9,7,0,-6,-170.6989603898385,0,0,0,87,3,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.902751579129406,6.763949424041432,0,0,52,45,6,1,0,0,2,2,0,749,0,0,0 +4386,5392,9774,-9,-9,-9,1,1,0,32,2,0,0,0,1,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1107.658402962662,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.192638002882284,0,0,0,54.69,57.47,6,1,0,0,1,1,0,318,0,0,0 +4387,5393,9775,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,2,8.241832851392015,7.692321713415033,0,3,0,0,0,-9,0,-1226.797041098051,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,38,15,1,0,-9,0,10.49575461805682,10.49575461805682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.68,40.36,2,1,0,0,8,4,0,207,0,0,0 +4387,5394,9776,-9,9775,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.756446905019454,7.619528507486979,0,3,0,0,0,-9,0,-1025.800115103604,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,9,40,15,1,0,-9,1,22.86556958422232,22.86556958422232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,6,1,0,0,8,3,0,472,0,0,0 +4388,5395,9777,9778,-9,-9,1,1,0,56,1,0,0,0,2,-9,1,1,0,4,8.520181378019352,8.385566880224317,0,1,0,-9,34,0,-2,-33.55756398262878,0,0,0,58,2,4,1,1,1,2019,1,2,12,0,24,30,15,1,0,1,0,24.56335387124112,24.56335387124112,0,0,0,0,0,0,0,0,0,0,7.753089206996429,0,0,3,54.2,57.49,6,1,0,0,9,5,1,523,0,0,0 +4388,5395,9778,9777,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,4,8.733741486396546,8.414331431380136,0,1,0,-9,35,0,2,-87.04188227232454,0,0,0,56,2,4,1,3,1,2019,1,1,7,0,50,50,15,1,0,1,0,11.51739709004989,11.51739709004989,0,0,0,0,0,0,0,0,0,0,6.695600692016507,0,14.90847110310927,3,53.61,59.13,7,1,0,0,9,5,1,523,0,0,0 +4389,5396,9779,-9,9780,-9,2,1,0,16,2,0,2,1,3,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1041.446942758615,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.65,41.83,6,1,0,0,11,2,0,976,0,0,0 +4389,5396,9780,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,4,7.460439236775363,7.856135877973835,0,4,0,-9,0,1,0,-998.1885624631063,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,8,28,16,15,1,8,-9,0,11.0211962647595,11.0211962647595,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.47,63.92,4,1,0,0,11,2,0,976,0,0,0 +4390,5397,9781,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,5,9.384324123155595,9.262816984756189,0,3,0,-9,0,-9,0,-974.3201430733232,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,44,0,15,1,0,-9,0,25.13338300191388,25.13338300191388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,1,0,0,11,5,1,544,0,0,0 +4391,5398,9782,-9,9784,9783,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.6610429823822,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,5,1,1133.666666666667,0,0,0 +4391,5398,9783,9784,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,4,8.924475444122768,8.927946978146162,0,2,0,-9,17,0,-1,-110.3203297961279,0,0,0,42,1,4,1,2,1,2019,1,2,8,0,44,43,15,1,0,1,0,16.39675918818995,16.39675918818995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,1,5,1,1133.666666666667,0,0,0 +4391,5398,9784,9783,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,4,8.230581735509606,8.388949294658913,0,2,0,-9,17,0,1,-48.39396840241458,0,0,1,41,1,4,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,13.15264013907912,13.15264013907912,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,0,1,5,1,1133.666666666667,0,0,0 +4392,5399,9785,9786,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,3,0,6.820512863366445,6.829816414936387,1,0,-9,8,0,-2,49.64611598046176,0,0,0,87,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.624045750741343,6.658108449117957,0,0,56.75,47.06,6,1,0,0,11,2,1,2239,0,0,0 +4392,5399,9786,9785,-9,-9,2,1,0,87,1,0,0,0,2,-9,4,3,0,3,0,4.636018398422474,4.232671491260882,1,0,-9,8,0,2,-52.00038926131882,0,0,0,85,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.677578279705208,4.263636303576935,2.887576647930485,3,52.63,44.54,6,1,0,0,11,2,1,2239,0,0,0 +4393,5400,9787,9788,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,66,0,-3,-32.38595966695055,0,0,0,88,3,3,3,2,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.919045672502694,0,0,0,53,44,6,1,0,0,8,2,1,1621.5,0,0,0 +4393,5400,9788,9787,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,3,0,5.834959707385534,6.241312786024307,1,0,-9,66,0,3,145.6885428945337,0,0,0,85,3,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,15.58732119862573,0,0,0,0,144.7753520049893,1,1,0,0,6.03388505073451,0,0,55,45,6,1,0,0,8,2,1,1621.5,0,0,0 +4394,5401,9789,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,3,6.847823513230168,6.833274302808223,0,3,0,0,0,-9,0,-931.0650876466,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,16,33,15,1,6,-9,0,6.808916764770482,6.808916764770482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.5,60.13,4,1,0,0,9,2,1,195,0,0,0 +4394,5402,9790,-9,9789,-9,2,1,0,25,2,0,0,0,3,-9,2,1,0,2,0,0,0,3,0,0,0,-9,0,-865.2088157046626,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,0,8,15,1,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.148436507224696,0,0,0,12.99,64.48999999999999,1,1,0,0,9,1,1,523,0,0,0 +4395,5403,9791,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,5.328728994823392,5.385806219571316,3,0,0,0,-9,0,-971.693288139297,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.581801133025071,0,0,32.75,42.74,5,1,0,0,6,2,1,819,0,0,0 +4396,5404,9792,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,2,1,0,3,8.310840960487941,8.007469111774245,0,3,0,0,0,-9,0,-947.4164878814865,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,39,39,15,1,0,-9,0,10.36607081156001,10.36607081156001,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,53.53,6,1,0,0,2,4,0,507,0,0,0 +4397,5405,9793,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1058.276755512457,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.28,20.7,6,1,0,0,11,1,1,166,0,0,0 +4398,5406,9794,9795,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.862743502535617,8.32938362950526,0,1,0,-9,10,0,-2,-65.01219475430328,0,0,0,48,2,4,1,3,3,2019,1,1,15,3,41,41,15,1,3,1,0,9.449459225293134,9.449459225293134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,60.56,5,1,0,0,10,4,1,2194.5,0,0,0 +4398,5406,9795,9794,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,4,7.078313474759638,6.808586757397071,0,1,0,-9,10,0,2,65.87133275661178,0,0,0,46,2,4,1,-9,-9,2019,1,2,7,0,40,39,15,1,0,1,0,3.174814634037848,3.174814634037848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,10,4,1,2194.5,0,0,0 +4399,5407,9796,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,4,7.506666084011102,7.498281554632836,4.928696398772998,3,0,0,0,-9,0,-858.1315842788165,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,32,32,15,1,0,-9,0,6.727512625810006,6.727512625810006,0,0,0,0,0,0,0,1,1,0,4.974409707110057,0,0,0,57.16,56.15,6,1,0,0,5,3,0,895,0,0,0 +4399,5408,9797,-9,9796,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,6.686646087258951,6.537122167267087,0,3,0,0,0,-9,0,-1093.397981976246,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,8,40,15,1,1,-9,1,12.17392031237066,12.17392031237066,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,5,2,0,65,0,0,0 +4400,5409,9798,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-927.9628252993789,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.01,25.88,1,1,0,1,9,1,0,514,0,0,0 +4401,5410,9799,9800,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,4,7.804383790999582,7.638783674622698,0,1,0,-9,36,0,1,-50.86842911476831,0,0,0,63,2,4,3,3,3,2019,2,1,7,0,37,37,15,1,0,4,0,8.66473871923664,8.66473871923664,0,0,0,0,0,0,0,0,0,0,2.501069838316328,0,0,0,57.16,56.15,7,1,0,0,2,3,1,443,0,0,0 +4401,5410,9800,9799,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,7.489077827696613,7.572538481507895,1,0,-9,36,0,-1,73.88738048345023,0,0,0,64,3,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.039395654895873,7.178729184177012,0,0,58.15,52.91,6,1,0,0,2,3,1,443,0,0,0 +4402,5411,9801,-9,9803,9802,3,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1016.069678261783,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,2,0,0,4,5,1,1107.666666666667,0,0,0 +4402,5411,9802,9803,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,3,9.065058301627452,8.873043406740209,0,2,0,-9,9,0,2,217.2202763873697,0,0,0,46,1,2,1,2,2,2019,1,2,13,1,45,55,15,1,1,1,0,23.64553773610377,23.64553773610377,0,0,0,0,0,0,0,1,1,0,3.748281185853496,0,0,0,48.74,50.46,5,1,0,0,4,5,1,1107.666666666667,0,0,0 +4402,5411,9803,9802,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,2,7.598557893349672,7.598325097914737,0,2,0,-9,9,0,-2,-27.35141234323925,0,0,0,48,2,3,1,2,1,2019,1,1,11,0,30,30,15,1,0,1,0,6.025181185013654,6.025181185013654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,46.62,3,3,0,0,4,5,1,1107.666666666667,0,0,0 +4403,5412,9804,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,3,0,6.030185512713997,6.077828299177359,3,0,0,0,-9,0,-1047.682889590146,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.868693950365736,0,0,51,46,5,4,0,0,8,2,1,423,0,0,0 +4404,5413,9805,-9,9806,9807,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.324487849503,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,1,574.75,0,0,0 +4404,5413,9806,9807,-9,-9,2,1,0,31,1,0,2,0,2,-9,1,1,0,3,7.346053055737338,7.607265959345199,0,2,0,-9,8,0,2,51.7992315950655,0,0,1,29,2,4,1,2,2,2019,1,1,7,0,48,0,15,1,0,1,0,3.561710596095706,3.561710596095706,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,11,3,1,574.75,0,0,0 +4404,5413,9807,9806,-9,-9,1,1,1,29,1,0,2,0,2,-9,1,1,0,4,8.038215579237219,8.153368041855083,0,2,0,-9,8,0,-2,-142.929519388741,0,1,0,31,2,3,1,2,1,2019,1,2,10,0,50,44,15,1,1,1,0,8.132846601879216,8.132846601879216,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49,58,5,1,0,0,11,3,1,574.75,0,0,0 +4404,5413,9808,-9,9806,9807,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.236406644875,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,574.75,0,0,0 +4405,5414,9809,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1063.402982420104,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.310441766615613,0,3.472345133753845,3,52.35,51.42,6,1,0,0,9,1,0,715,0,0,0 +4406,5415,9810,9811,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,7.852602261721046,7.312174819334825,0,1,0,-9,7,0,-2,-7.569489650521811,0,0,0,56,2,3,1,-9,-9,2019,1,2,9,0,45,40,15,1,1,1,0,4.761164712263553,4.761164712263553,0,0,0,0,0,0,0,1,1,0,2.920076299199035,0,0,0,53,54,6,5,0,0,13,4,1,1439.5,0,0,0 +4406,5415,9811,9810,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.007192822513289,8.193576586912277,0,1,0,-9,7,0,2,-43.33905764408136,0,0,0,54,2,4,1,3,3,2019,1,1,7,0,44,62,15,1,0,1,0,9.378292023811655,9.378292023811655,0,0,0,0,0,0,0,1,1,0,7.082201351824679,0,0,0,53.59,49.64,6,1,0,0,13,4,1,1439.5,0,0,0 +4407,5416,9812,9813,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.506328018358579,7.294468338174872,0,1,0,-9,30,0,-5,74.41339155171998,0,0,0,56,2,3,3,2,3,2019,2,1,12,1,30,25,15,1,1,4,0,5.347142344887587,5.347142344887587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,5,1,0,0,13,3,1,513,0,0,0 +4407,5416,9813,9812,-9,-9,1,1,1,56,1,0,0,0,2,-9,4,3,0,3,0,7.162193988336664,6.943316903480841,1,0,-9,10,0,5,-57.49723623054255,0,0,0,51,2,3,1,-9,-9,2019,3,2,10,0,0,86,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.272189436034917,7.043674875359726,0,0,49.58,55.59,5,1,0,0,13,3,1,513,0,0,0 +4407,5417,9814,-9,9812,9813,3,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.670942459176419,7.401738715563326,0,3,0,0,0,-9,0,-972.4024166024703,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,45,45,15,1,1,-9,1,4.960094015133109,4.960094015133109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.6,52.77,5,1,0,0,13,3,1,118,0,0,0 +4407,5418,9815,-9,9812,9813,4,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.733595520615065,7.749339844912142,0,3,0,0,0,-9,0,-954.5660325244717,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,16,15,1,0,-9,1,6.027031416292923,6.027031416292923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.07,49.4,6,1,0,0,13,3,1,360,0,0,0 +4408,5419,9816,-9,9817,9818,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1108.237616619313,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,6,3,1,934.25,0,0,0 +4408,5419,9817,9818,-9,-9,2,1,0,40,1,0,2,0,3,-9,6,3,0,5,0,0,0,2,0,-9,18,0,-6,9.511692063845835,0,0,1,46,2,4,1,2,2,2019,3,1,15,3,0,25,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.16,52.62,2,3,0,1,6,3,1,934.25,0,0,0 +4408,5419,9818,9817,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.065922988161798,8.047964851488599,0,2,0,-9,18,0,6,17.83556532775334,0,0,0,40,3,5,3,-9,-9,2019,2,2,11,1,48,39,15,1,1,3,0,9.129191011455672,9.129191011455672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.71,62.41,3,3,0,0,6,3,1,934.25,0,0,0 +4408,5419,9819,-9,9817,9818,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.128213126315,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,3,1,934.25,0,0,0 +4409,5420,9820,9822,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,3,8.867573983104929,8.916950057795701,0,2,0,-9,3,0,1,-50.24101877236731,0,0,0,51,1,3,3,2,1,2019,2,2,10,0,40,40,15,1,0,3,0,20.62088692331009,20.62088692331009,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,13,4,1,741.6666666666666,0,0,0 +4409,5420,9821,-9,9822,9820,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.6519666283747,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,741.6666666666666,0,0,0 +4409,5420,9822,9820,-9,-9,2,1,0,51,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,3,0,-1,-47.80552149544145,0,0,0,52,1,3,1,3,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,5,1,0,0,13,4,1,741.6666666666666,0,0,0 +4410,5421,9823,-9,9824,-9,2,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1013.73525726646,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,4,1,0,2241,0,0,0 +4410,5421,9824,-9,-9,-9,1,1,0,34,3,1,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1087.315296053503,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,0,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.79,39.91,4,1,0,1,4,1,0,2241,0,0,0 +4411,5422,9825,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,3,9.920459713750791,9.828043871894655,0,3,0,0,0,-9,0,-1022.736379840939,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,45,60,15,1,1,-9,0,45.07820045251751,45.07820045251751,0,0,0,0,0,0,0,0,0,0,0,0,1.648599389898971,3,52.4,52.91,6,1,0,0,11,5,1,66,0,0,0 +4411,5423,9826,-9,9825,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.697982234395021,7.711742098354035,0,3,0,0,0,-9,0,-986.8665969567365,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,31,40,15,1,2,-9,1,8.584517540619125,8.584517540619125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,11,3,1,260,0,0,0 +4412,5424,9827,9828,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,8.18276337043207,7.962474058457675,1,0,-9,3,0,11,51.33461690143116,0,0,0,59,1,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.819206606108414,8.078297402785699,7.878681542923574,3,57.16,56.15,6,1,0,0,10,4,1,401.5,0,0,0 +4412,5424,9828,9827,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,4,0,7.595928795021996,7.926473719769923,1,0,-9,3,0,-11,-71.19417565148085,0,0,0,70,2,4,3,-9,-9,2019,4,1,6,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.476414568091602,7.604362357432871,0,3,57.16,56.15,6,1,0,0,10,4,1,401.5,0,0,0 +4413,5425,9829,9832,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,4,8.912770414393743,9.144977167329454,0,2,0,-9,13,0,1,-5.430440925096049,0,0,0,33,1,4,1,2,2,2019,1,1,8,0,48,43,15,1,0,1,0,15.06569150980368,15.06569150980368,0,0,0,0,0,0,0,1,1,0,1.481085214880318,0,0,0,51.83,57.2,6,1,0,0,2,5,1,1145.5,0,0,0 +4413,5425,9830,-9,9832,9829,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.4617994275279,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,1145.5,0,0,0 +4413,5425,9831,-9,9832,9829,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.5626844394412,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,1145.5,0,0,0 +4413,5425,9832,9829,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,4,8.141005614712808,8.287119291247102,0,2,0,-9,13,0,-1,-146.9815673096725,0,0,1,34,2,4,1,2,2,2019,1,2,6,0,30,23,15,1,0,1,0,15.19973295386422,15.19973295386422,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,53.68,6,1,0,0,2,5,1,1145.5,0,0,0 +4414,5426,9833,9834,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,35,0,-2,-69.71232752824332,0,0,0,60,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.93306725353174,3,60.29,52.11,7,1,0,0,6,3,1,741,0,0,0 +4414,5426,9834,9833,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,3,0,7.768343827799939,8.52194181929789,1,0,-9,35,0,2,92.68607409629395,0,0,0,58,2,3,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.380853097810157,0,0,57.33,53.46,7,1,0,0,6,3,1,741,0,0,0 +4415,5427,9835,9836,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,4.855476099725055,4.419772345538369,1,0,-9,10,0,-2,49.32613731752751,0,0,0,68,2,4,3,3,2,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.535783963892567,4.498748662593365,0,0,45.94,42.51,6,1,0,0,11,2,1,820,0,0,0 +4415,5427,9836,9835,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.040756414107103,6.850902900312756,1,0,-9,10,0,2,-29.50389320313424,0,0,0,66,2,3,3,-9,-9,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.63147298450146,7.08000800944258,0,0,48.79,51.9,6,1,0,0,11,2,1,820,0,0,0 +4416,5428,9837,9838,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,3,7.527626325322665,7.540095685954719,0,1,0,-9,9,0,-13,208.8339918861992,0,0,0,60,2,3,1,3,2,2019,1,1,10,0,24,18,15,1,0,1,0,8.972310362230528,8.972310362230528,0,0,0,0,0,0,0,1,1,0,2.297455583882227,0,0,0,39.15,41.42,6,1,0,0,2,5,1,1728.5,0,0,0 +4416,5428,9838,9837,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.50547061103938,8.719608032822419,6.776046811985481,1,0,-9,9,0,13,63.43571759145986,0,0,0,47,2,3,1,3,3,2019,1,2,9,0,45,48,15,1,0,1,0,13.98295296669998,13.98295296669998,0,0,0,0,0,0,0,1,1,0,0,6.930478837813691,0,0,55.65,47.36,6,1,0,0,2,5,1,1728.5,0,0,0 +4416,5429,9839,-9,9837,9838,3,1,1,20,2,0,0,1,2,0,7,2,0,5,5.903888938046695,7.025270207613153,6.033740562461918,3,0,0,0,-9,0,-1096.881855256148,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,7,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.384625084253269,0,0,0,62.39,56.71,6,1,0,0,2,2,1,198,0,0,0 +4417,5430,9840,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,3,3,0,2,0,6.790987979342004,6.81638815491755,1,0,-9,18,0,12,187.1435888409246,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,2,29,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.970005882785135,6.744958844626444,21.00460823082688,3,29.23,45.05,2,1,1,0,6,2,1,413,0,0,0 +4418,5431,9841,-9,-9,-9,1,1,0,19,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1125.652357995568,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,1,0,9,1,0,299,0,0,0 +4419,5432,9842,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1046.146804669934,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4277112387098776,0,114.8484103570434,3,27.53,54.1,3,1,0,0,7,1,1,278.5,0,0,0 +4419,5432,9843,-9,9842,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-951.9256747730669,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,7,1,1,278.5,0,0,0 +4420,5433,9844,9846,-9,-9,1,1,0,19,1,1,1,0,2,-9,2,1,0,4,6.240701437875848,6.385131610416496,0,2,0,1,1,-9,-10,38.20608214473292,0,1,1,29,2,2,1,-9,-9,2019,1,3,10,0,12,0,15,1,0,1,0,5.498510096188478,5.498510096188478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.42,61.41,6,1,0,0,2,2,0,335,0,0,0 +4420,5433,9845,-9,9844,9846,2,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-978.9939337523776,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,0,335,0,0,0 +4420,5433,9846,9844,-9,-9,3,1,1,29,1,1,1,0,2,-9,1,1,0,2,7.678833022431506,7.584249870685882,0,2,0,-9,1,-9,10,32.87407699586764,-9,1,0,19,2,4,1,-9,-9,2019,1,1,28,8,30,0,15,1,8,1,0,6.249068662698268,6.249068662698268,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,43,3,1,0,0,2,2,0,335,0,0,0 +4421,5434,9847,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,2,0,6.578961413779584,6.95240475962738,3,0,0,0,-9,0,-1082.400965308542,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.606877740153996,4.897985860943164,0,0,54.71,27.51,5,3,0,0,8,2,1,356,0,0,0 +4421,5435,9848,-9,-9,9847,2,1,0,40,3,0,0,0,1,-9,2,1,0,4,8.016944693329751,8.158977876387842,0,3,0,-9,0,-9,0,-1055.048451273986,-9,0,1,-9,-9,-9,-9,-9,1,2019,-9,0,10,0,40,0,15,1,1,-9,1,9.038537331237935,9.038537331237935,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,55,5,3,0,0,8,4,1,538,0,0,0 +4422,5436,9849,-9,9851,9850,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1066.327379659883,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,613.3333333333334,0,0,0 +4422,5436,9850,9851,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,3,8.770316914336831,8.89183595178681,0,2,0,-9,1,-9,-1,4.907481821162183,-9,0,0,36,1,4,1,1,1,2019,1,2,10,0,45,0,15,1,0,1,0,19.41958273259665,19.41958273259665,0,0,0,0,0,0,0,1,1,0,5.928674922794515,0,0,0,53.3,42.91,6,1,0,0,13,5,1,613.3333333333334,0,0,0 +4422,5436,9851,9850,-9,-9,2,1,0,36,1,0,1,0,1,-9,5,1,0,4,9.287509675958733,8.754410570760164,0,2,0,-9,1,-9,1,7.840823143921411,-9,0,1,35,2,3,1,2,2,2019,1,1,11,0,37,0,15,1,0,1,0,25.7250167675641,25.7250167675641,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,613.3333333333334,0,0,0 +4423,5437,9852,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,3,8.113657741159873,7.998558421110393,0,3,0,0,0,-9,0,-1021.084509550466,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,39,15,1,0,-9,0,7.002596134748932,7.002596134748932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,4,1,0,0,4,4,1,242,0,0,0 +4424,5438,9853,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1113.295663822769,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,1,0,13,1,0,1477,0,0,0 +4425,5439,9854,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,5,0,6.415493006607363,6.827945113697327,3,0,0,0,-9,0,-937.4360567167904,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.02439804888414,6.549620127300342,0,0,61.01,53.18,7,1,0,0,12,2,1,2928,0,0,0 +4426,5440,9855,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,4,8.359530683285005,8.514615804827807,0,3,0,0,0,-9,0,-1060.743523345073,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,39,39,15,1,3,-9,0,11.96172329635402,11.96172329635402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,6,1,0,0,4,4,1,474,0,0,0 +4427,5441,9856,9859,-9,-9,1,1,1,47,1,0,4,0,2,-9,2,1,0,3,6.985851075756939,7.185032951900928,0,2,0,-9,22,0,2,-41.89414360972195,0,0,0,45,3,4,3,3,3,2019,2,2,10,0,29,30,15,1,0,3,0,7.584233059970759,7.584233059970759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,3,0,0,2,2,1,1347.2,0,0,0 +4427,5441,9857,-9,9859,9856,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.761988334741,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,2,1,1347.2,0,0,0 +4427,5441,9858,-9,9859,9856,5,1,1,13,2,0,4,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-916.9980261904382,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,3,0,0,2,2,1,1347.2,0,0,0 +4427,5441,9859,9856,-9,-9,2,1,0,45,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,22,0,-2,-25.89138010123165,0,0,0,47,2,3,1,3,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,2,2,1,1347.2,0,0,0 +4427,5441,9860,-9,9859,9856,4,1,1,16,2,0,4,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-995.9942353478508,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,3,0,0,2,2,1,1347.2,0,0,0 +4427,5442,9861,-9,9859,9856,3,1,1,18,2,0,4,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-991.7148606448603,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,5,3,0,0,2,2,1,1952,0,0,0 +4428,5443,9862,9863,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.179658215270324,7.732841496664093,0,1,0,-9,6,0,-1,86.38842688178148,0,0,0,60,2,4,1,3,3,2019,1,1,9,0,41,41,15,1,0,1,0,7.780302371250746,7.780302371250746,0,0,0,0,0,0,0,0,0,0,2.236358846665448,0,0,0,48,52.09,7,1,0,0,12,3,1,207.5,0,0,0 +4428,5443,9863,9862,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.004034673401184,7.267137041747112,5.160692111142383,1,0,-9,6,0,1,28.48268121377465,0,0,0,59,2,3,1,2,3,2019,1,2,11,0,18,26,15,1,0,1,0,7.57444450072604,7.57444450072604,0,0,0,0,0,0,0,0,0,0,2.848015944985076,5.293949166779083,0,0,51.49,57.57,7,1,0,0,12,3,1,207.5,0,0,0 +4428,5444,9864,-9,9863,9862,3,1,1,28,2,0,0,0,3,-9,2,1,0,5,8.366860642210662,7.845272025293704,0,3,0,0,0,-9,0,-1039.310990502659,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,1,38,50,15,1,1,-9,1,10.81673141809897,10.81673141809897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,56.14,2,1,0,0,12,4,1,442,0,0,0 +4428,5445,9865,-9,9863,9862,4,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.389958580373971,8.251463584874539,0,3,0,0,0,-9,0,-969.4820057081048,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,9,1,38,37,15,1,1,-9,1,11.72315398377335,11.72315398377335,0,0,0,0,0,0,0,0,0,0,4.325686067963528,0,0,0,55.79,52.62,6,1,0,0,12,4,1,2426,0,0,0 +4429,5446,9866,-9,9867,9868,1,1,1,24,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-959.1112755019736,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,39,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,4,1,0,8,1,1,289,0,0,0 +4429,5447,9867,9868,-9,-9,3,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.335088700291726,8.324878831284376,0,1,0,-9,3,0,3,-13.27243732012867,0,0,0,52,2,4,1,3,3,2019,1,2,10,0,36,37,15,1,0,1,0,15.88536169047691,15.88536169047691,0,0,0,0,0,0,0,0,0,0,0,0,25.53940903699776,3,49.04,55.86,5,4,0,0,8,4,1,2463.5,0,0,0 +4429,5447,9868,9867,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,7.424002620423908,8.071346831012015,0,1,0,-9,3,0,-3,-110.365303649012,0,0,0,55,2,3,1,-9,-9,2019,1,3,7,0,10,36,15,1,0,1,0,24.23440165969555,24.23440165969555,0,0,0,0,0,0,0,0,0,0,3.003445907264468,0,0,0,60.12,54.8,6,4,0,0,8,4,1,2463.5,0,0,0 +4430,5448,9869,9870,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,2,0,11,-56.60469862981314,0,0,0,66,2,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.41,26.64,5,1,0,0,7,2,0,529.5,0,0,0 +4430,5448,9870,9869,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,7.687814880381562,7.819438277041778,1,0,-9,2,0,-11,-3.073730541750367,0,0,0,77,3,1,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.554620290484813,126.8136224719032,2,57.02,35.76,6,1,0,0,7,2,0,529.5,0,0,0 +4431,5449,9871,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,5.774051165540805,5.885828021178597,3,0,0,0,-9,0,-1100.620932652678,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.420399993957755,0,0,60.52,53.2,7,1,0,0,9,2,1,1041,0,0,0 +4432,5450,9872,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,3,0,6.633059791572069,6.726393118746092,3,0,0,0,-9,0,-933.5836831451243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.14281575089071,0,0,0,1,1,0,0,6.761588067834844,0,0,55,45,6,1,0,0,11,2,1,548,0,0,0 +4433,5451,9873,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,4,8.261045312263786,8.39453070111305,0,3,0,0,0,-9,0,-1006.621623847716,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,35,35,15,1,0,-9,0,13.42128984282286,13.42128984282286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,59.14,6,1,0,0,8,4,1,1565,0,0,0 +4433,5452,9874,-9,9873,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,3,7.705105755810279,7.72165044505674,0,3,0,0,0,-9,0,-1061.15098437461,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,13,2,55,52,15,1,2,-9,1,4.522416594947091,4.522416594947091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,2,1,0,0,8,3,1,3288,0,0,0 +4433,5453,9875,-9,9873,-9,3,1,1,27,2,0,0,0,2,-9,2,1,0,5,7.620167333597453,8.039557709951568,0,3,0,0,0,-9,0,-993.7142287699153,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,80,46,15,1,0,-9,1,5.05410287247056,5.05410287247056,0,0,0,0,0,0,0,0,0,0,1.062709341892616,0,0,0,51.14,60.45,5,1,0,0,8,4,1,102,0,0,0 +4433,5454,9876,-9,9873,-9,4,1,0,23,2,0,0,0,1,-9,11,3,0,3,7.773586761570026,8.030485088007286,0,3,0,0,0,-9,0,-1040.039773069391,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,35,30,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.32,58.41,3,1,0,0,8,3,1,1054,0,0,0 +4434,5455,9877,9878,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.499644000763644,7.732756376371186,0,1,0,-9,24,0,-5,82.82929573355541,0,0,0,61,2,5,1,2,2,2019,1,2,8,0,30,31,15,1,0,1,0,8.446505569476855,8.446505569476855,0,0,0,0,0,0,0,0,0,0,0,0,3.931203087893226,3,54.37,54.8,2,1,0,0,4,4,1,401,0,0,0 +4434,5455,9878,9877,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,5,7.553956724341789,7.852884177425268,0,1,0,-9,25,0,5,-82.19922795539719,0,0,0,56,2,3,1,-9,-9,2019,1,1,6,0,40,35,15,1,0,1,0,9.074113380252793,9.074113380252793,0,0,0,0,0,0,0,0,0,0,1.778361909755485,0,0,0,59.43,58.05,7,1,0,0,4,4,1,401,0,0,0 +4435,5456,9879,9880,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,4,7.660053305559321,7.738728785549371,0,1,0,-9,9,0,5,-54.62641637014364,0,0,0,56,2,4,1,2,2,2019,1,2,9,1,37,33,15,1,1,1,0,9.287253753895396,9.287253753895396,0,0,0,0,0,0,0,0,0,0,.0341167203072984,0,24.38207675252252,3,51.24,58.84,6,1,0,0,11,4,1,842.5,0,0,0 +4435,5456,9880,9879,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.775721733311902,7.90630474847275,0,1,0,-9,9,0,-5,74.54662958338835,0,0,0,61,2,4,1,2,2,2019,1,1,9,0,33,33,15,1,0,1,0,7.370803349246108,7.370803349246108,0,0,0,0,0,0,0,0,0,0,0,0,18.36164747063443,3,54.2,57.49,6,1,0,0,11,4,1,842.5,0,0,0 +4436,5457,9881,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,6.635877297244265,6.960347338239956,3,0,0,0,-9,0,-914.5202681596871,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.453112707428228,6.777583168197599,0,0,40.58,43.59,7,1,0,0,5,2,0,308,0,0,0 +4437,5458,9882,9883,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,6.623737103009623,6.962640939460224,1,0,-9,48,0,-4,55.7002157343705,0,0,0,78,2,2,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.369813512551662,7.013178334870883,0,0,59.46,46.99,6,1,0,0,5,2,1,581,0,0,0 +4437,5458,9883,9882,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,48,0,4,-40.11114358625193,0,0,0,74,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.582059302651811,0,0,0,54.2,39.09,5,1,0,0,5,2,1,581,0,0,0 +4438,5459,9884,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,8.977170228213843,8.837218531854498,0,3,0,0,0,-9,0,-912.4239124607582,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,21,9,50,45,15,1,9,-9,0,17.16856337052068,17.16856337052068,0,0,0,0,0,0,0,0,0,0,1.241318630600949,0,0,0,27.81,65.69,4,1,0,0,8,5,1,865,0,0,0 +4439,5460,9885,-9,-9,-9,3,1,0,93,3,0,0,0,3,-9,4,3,0,1,0,7.448220880726314,7.336118221807785,3,0,0,0,-9,0,-993.1067513230441,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,10.0017527681914,0,66.58844937259408,2.20757783916846,0,50.08087198706756,1,1,0,.4849874001002791,7.373940684779055,0,0,24.93,19.95,2,1,0,0,11,3,1,1716,0,0,0 +4439,5461,9886,9887,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,3,7.634194818801113,7.619438570320492,0,1,0,-9,10,0,1,117.3834637296492,0,0,0,59,1,3,1,3,3,2019,1,2,14,3,60,70,15,1,3,1,0,3.157939844487074,3.157939844487074,0,0,0,0,0,0,0,1,1,0,0,0,4.362108684951318,3,44.23,47.17,5,1,0,0,11,5,1,549,0,0,0 +4439,5461,9887,9886,9885,-9,2,1,0,59,1,0,0,0,1,-9,1,1,0,3,9.0408221455651,9.0854734803503,0,1,0,-9,10,0,-1,-1.530198908169897,0,0,0,60,1,3,1,3,2,2019,1,1,15,4,70,37,15,1,4,1,0,17.93636926918422,17.93636926918422,0,0,0,0,0,0,0,1,1,0,7.895019032641841,0,72.90021186701266,3,42.96,48.95,3,1,0,0,11,5,1,549,0,0,0 +4440,5462,9888,9889,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,24,0,9,0,0,0,0,49,2,1,3,2,3,2019,4,1,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123.1360770599904,1,22.94,26.43,3,1,0,0,9,1,0,402.5,0,0,0 +4440,5462,9889,9888,-9,-9,1,1,0,49,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,29,0,0,0,0,0,0,58,2,1,3,3,3,2019,4,2,23,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,15.95,1,1,0,0,9,1,0,402.5,0,0,0 +4440,5463,9890,-9,9889,9888,3,1,1,22,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-977.044150820066,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.39115850478626,3,49.21,58.31,5,1,1,0,9,1,0,869,0,0,0 +4441,5464,9891,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-998.8769559961015,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,8.936300705447859,0,0,1,1,0,0,0,0,0,47.53,25.14,3,1,0,0,4,1,0,343,0,0,0 +4442,5465,9892,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1025.648719145901,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.64,39.91,6,1,0,0,12,1,0,897,0,0,0 +4443,5466,9893,9894,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,6.687082143005583,6.644547233425031,1,0,-9,53,0,0,-9.257791948810596,0,0,0,76,1,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.913293975885781,6.63752842754067,0,0,57.57,49.69,6,1,0,0,8,4,1,610.5,0,0,0 +4443,5466,9894,9893,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,8.354316496295519,8.466863044491937,1,0,-9,53,0,0,14.71034402064724,0,0,0,76,3,2,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.344873753716847,8.664981781475346,0,0,52.15,32.92,4,1,0,0,8,4,1,610.5,0,0,0 +4444,5467,9895,9896,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,7.638747178316182,7.596549828873228,1,0,-9,7,0,5,128.4552912141502,0,0,0,63,1,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.779830672261707,7.288568249520933,0,0,54.79,55.86,6,1,0,0,10,2,1,1423.5,0,0,0 +4444,5467,9896,9895,-9,-9,1,1,0,63,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,7,0,-5,48.09442165053471,0,0,0,68,1,4,3,2,1,2019,4,2,14,2,0,45,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,57.33,6,1,1,0,10,2,1,1423.5,0,0,0 +4445,5468,9897,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-997.36867800251,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,11.9631925874319,0,0,0,22.83231582006501,159.7931514841933,1,1,0,0,0,0,0,55,45,6,1,0,0,13,1,1,47,0,0,0 +4446,5469,9898,-9,9901,9900,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1006.741681958064,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,749.25,0,0,0 +4446,5469,9899,-9,9901,9900,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-976.3174440504752,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,749.25,0,0,0 +4446,5469,9900,9901,-9,-9,2,1,1,42,1,1,2,0,1,-9,2,1,0,4,9.161582915162738,9.068704872623471,0,2,0,-9,4,-9,8,119.3664501334242,-9,0,0,34,2,5,1,1,1,2019,1,1,14,2,45,0,15,1,2,1,0,24.22300378254502,24.22300378254502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,7,5,1,749.25,0,0,0 +4446,5469,9901,9900,-9,-9,1,1,0,34,1,1,2,0,2,-9,2,1,0,5,7.20262542739043,7.105498122474479,0,2,0,-9,4,-9,-8,52.67921156679522,-9,0,1,42,1,4,1,2,2,2019,1,2,24,12,11,0,15,1,12,1,0,15.67806173965314,15.67806173965314,0,0,0,0,0,0,0,1,1,0,1.354541743955316,0,0,0,34.15,60.28,5,1,0,0,7,5,1,749.25,0,0,0 +4447,5470,9902,9903,-9,-9,2,1,0,58,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,10,0,-7,46.24091070044781,0,0,0,65,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.95,6,1,0,0,7,4,1,563,0,0,0 +4447,5470,9903,9902,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,3,8.719981479104174,8.612691685570802,6.227746001792361,1,0,-9,10,0,7,25.49739377252798,0,0,0,58,3,4,3,3,2,2019,2,2,13,1,40,50,15,1,1,3,0,15.30994721994134,15.30994721994134,1,0,0,0,0,0,0,1,1,0,0,6.671083412785332,0,0,54.49,47.79,6,1,0,0,7,4,1,563,0,0,0 +4448,5471,9904,9905,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,2,9.586994262952935,9.27689069995473,5.414283466900428,1,0,-9,10,0,0,31.87209008686404,0,0,0,61,3,2,1,2,2,2019,1,2,7,0,60,70,15,1,0,1,0,20.57862755996299,20.57862755996299,0,0,0,0,0,0,0,0,0,0,1.946138625707959,5.897280407889764,0,0,56.88,40.36,6,1,0,0,4,5,1,764,0,0,0 +4448,5471,9905,9904,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,2,7.640406635167264,7.843602794847684,0,1,0,-9,10,0,0,3.793105356433633,0,0,0,61,3,2,1,-9,-9,2019,1,1,8,1,42,42,15,1,1,1,0,8.482207973883126,8.482207973883126,0,0,0,0,0,0,0,0,0,0,2.699822766002867,0,19.3748619622036,3,61.68,26.01,6,1,0,0,4,5,1,764,0,0,0 +4449,5472,9906,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,3,8.189347527008824,8.079098498575878,0,3,0,0,0,-9,0,-966.393635447945,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,48,50,15,1,0,-9,0,11.40603556037782,11.40603556037782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.65,39.14,5,4,0,0,8,4,1,670,0,0,0 +4450,5473,9907,9909,-9,-9,2,1,0,38,1,0,2,0,2,-9,97,3,0,2,0,0,0,2,0,-9,6,0,-10,0,0,0,1,48,3,4,3,-9,-9,2019,4,1,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.41708012787754,3,30.5,28.34,4,1,0,1,2,1,0,470,0,0,0 +4450,5473,9908,-9,9907,9909,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.4044614118607,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,1,0,470,0,0,0 +4450,5473,9909,9907,-9,-9,1,1,1,48,1,0,2,0,3,-9,97,3,0,4,0,0,0,2,0,-9,6,0,10,0,0,0,0,38,2,2,3,-9,-9,2019,4,2,9,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.18691569738934,2,45.69,52.9,6,1,0,1,2,1,0,470,0,0,0 +4450,5474,9910,-9,9907,9909,3,1,0,18,2,0,2,0,2,1,3,3,0,2,0,0,0,3,0,0,0,-9,0,-934.4269252610898,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.73,54.34,3,1,1,0,2,1,0,832,0,0,0 +4451,5475,9911,-9,9912,-9,1,1,1,35,2,0,0,0,1,-9,1,1,0,3,7.675194174184572,7.830332539293112,0,3,0,0,0,-9,0,-946.6594879788947,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,30,36,15,1,0,-9,1,10.33492391779233,10.33492391779233,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.88,45.37,4,1,0,0,10,3,1,2908,0,0,0 +4451,5476,9912,-9,-9,-9,2,1,0,67,3,0,0,0,1,-9,1,1,0,2,5.860340615762003,5.833884258029486,0,3,0,0,0,-9,0,-962.205681686701,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,10,10,15,1,1,-9,0,4.12147534099669,4.12147534099669,0,0,0,0,0,0,0,1,1,0,3.29483017854787,0,0,0,52.83,26.08,6,1,0,0,10,2,1,380,0,0,0 +4452,5477,9913,9914,-9,-9,2,1,1,57,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,0,109.4966521463625,-9,0,0,57,3,2,3,2,3,2019,4,1,24,11,0,0,15,4,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.49,23.61,4,1,0,0,2,2,0,626.5,0,0,0 +4452,5477,9914,9913,-9,-9,1,1,0,57,1,0,0,0,3,-9,97,3,0,2,0,5.437519215981308,5.347666674192219,1,0,-9,8,0,0,114.0095055636297,-9,0,0,57,3,1,3,2,2,2019,4,2,11,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.074411219803985,73.70114904900854,1,58.72,27.36,3,1,0,1,2,2,0,626.5,0,0,0 +4453,5478,9915,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,3,0,6.880358227328943,6.888667916675832,3,0,0,0,-9,0,-1095.462476092064,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.029758599929024,6.874311806474011,7.178332443063938,3,59.4,48.35,6,1,0,0,7,2,1,728,0,0,0 +4454,5479,9916,9917,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.756793408085125,8.932405081037793,1,0,-9,51,0,7,16.94772893366407,0,0,0,63,2,3,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.188993926098316,8.839819018728647,0,0,54.96,53.17,6,3,0,0,4,4,1,876,0,0,0 +4454,5479,9917,9916,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-7,36.96672155689608,0,0,0,70,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,3,0,0,4,4,1,876,0,0,0 +4455,5480,9918,9921,-9,-9,1,1,1,31,1,2,2,0,1,-9,2,1,0,4,8.834132890592878,8.575361404374018,0,2,0,-9,5,0,0,-10.99573567021745,0,0,0,31,1,3,1,1,1,2019,1,2,4,2,45,48,15,1,2,1,0,14.26450144724647,14.26450144724647,0,0,0,0,0,0,0,1,1,0,4.277741408281183,0,0,0,54.79,55.86,6,1,0,0,10,4,1,919.25,0,0,0 +4455,5480,9919,-9,9921,9918,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-909.0260721524364,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,919.25,0,0,0 +4455,5480,9920,-9,9921,9918,3,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-861.256494008564,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,919.25,0,0,0 +4455,5480,9921,9918,-9,-9,2,1,0,31,1,2,2,0,1,-9,5,1,0,3,7.843060693811767,7.859928708704498,0,2,0,-9,5,0,0,-.9826974379488744,0,0,1,31,1,4,1,-9,-9,2019,1,1,5,0,38,38,15,1,0,1,0,6.781863237299742,6.781863237299742,0,0,0,0,0,0,0,1,1,0,4.498369611599458,0,0,0,49.22,51.55,7,1,0,0,10,4,1,919.25,0,0,0 +4456,5481,9922,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,3,0,7.831308880058931,7.468399269389584,3,0,0,0,-9,0,-1015.345686168259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.305960963788791,7.734159299905721,0,0,47.87,40.36,5,1,0,0,13,3,1,1260,0,0,0 +4457,5482,9923,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,3,0,6.968091125712843,6.821343504108897,3,0,0,0,-9,0,-987.4319099302155,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.437871074160859,6.709346053452601,0,0,43.64,43.14,6,1,0,0,9,2,1,272,0,0,0 +4458,5483,9924,-9,-9,-9,1,1,1,81,2,0,0,0,2,-9,4,3,0,2,0,7.555525725303446,7.595410899163607,3,0,0,0,-9,0,-888.4938615041129,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,6.102375423093983,0,1,1,0,2.314468445886676,7.679254345905655,0,0,47.34,35.49,6,1,0,0,11,3,1,879,0,0,0 +4459,5484,9925,-9,9927,9926,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-949.1254327754634,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,1,3,0,949.8,0,0,0 +4459,5484,9926,9927,-9,-9,1,1,1,40,1,1,3,0,2,-9,1,1,0,3,8.055663774324261,8.454792617382685,0,2,0,-9,13,0,7,17.61457068853964,0,0,0,33,1,3,3,3,3,2019,2,2,10,0,35,24,15,1,0,3,0,13.41180755574154,13.41180755574154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,6,3,0,0,1,3,0,949.8,0,0,0 +4459,5484,9927,9926,-9,-9,2,1,0,33,1,1,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-7,-24.08498034335261,0,0,1,40,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.6,49.46,6,3,0,0,1,3,0,949.8,0,0,0 +4459,5484,9928,-9,9927,9926,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1197.089895435794,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,1,3,0,949.8,0,0,0 +4459,5484,9929,-9,9927,9926,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1172.279553917841,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,1,3,0,949.8,0,0,0 +4460,5485,9930,9931,-9,-9,1,1,1,22,1,0,0,0,2,-9,2,1,0,4,8.264929014861215,8.562916901917978,0,1,0,1,1,-9,2,-138.4856157172321,0,1,0,20,2,4,1,-9,-9,2019,1,2,7,0,36,38,15,1,0,1,0,15.07184923731522,15.07184923731522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,1395.5,0,0,0 +4460,5485,9931,9930,-9,-9,2,1,0,20,1,0,0,0,2,-9,2,1,0,4,7.897672379986749,7.945133189293924,0,1,0,-9,1,-9,-2,161.5466690154414,-9,1,1,22,2,4,1,-9,-9,2019,1,1,12,0,35,0,15,1,2,1,0,11.73038840127564,11.73038840127564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,4,5,1,1395.5,0,0,0 +4461,5486,9932,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,4,0,3.492767338581716,3.131870244500092,3,0,0,0,-9,0,-922.0574587543497,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.591203749154807,2.889305672710113,0,0,53.06,45.59,7,1,0,0,2,1,0,183,0,0,0 +4462,5487,9933,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-988.4882876679308,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,6,1,0,0,10,1,0,365,0,0,0 +4463,5488,9934,-9,-9,-9,3,1,0,68,3,0,0,0,2,-9,2,1,0,3,5.986691454246289,6.963221016433049,6.551390008078061,3,0,0,0,-9,0,-940.7892400471695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,30,15,1,0,-9,0,3.031627555223667,3.031627555223667,0,0,0,0,0,0,0,1,1,0,0,6.014048096162084,0,0,54.96,53.17,6,1,0,0,9,2,0,433,0,0,0 +4464,5489,9935,9936,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,5,8.523140207090538,8.367517584880568,0,2,0,-9,6,0,4,21.36621423724755,0,0,0,31,2,1,3,-9,-9,2019,2,1,2,0,58,37,15,1,0,3,0,10.21846561546694,10.21846561546694,0,0,0,0,0,0,0,1,1,0,0,0,119.2272783442194,3,59.43,58.05,7,1,0,0,4,3,1,315.3333333333333,0,0,0 +4464,5489,9936,9935,-9,-9,1,1,0,31,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,12,0,-4,-47.19592817242727,0,0,1,35,2,5,1,2,-9,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,131.781567468243,3,21.49,30.94,5,1,0,0,4,3,1,315.3333333333333,0,0,0 +4464,5489,9937,-9,9936,9935,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.304566220428,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,315.3333333333333,0,0,0 +4465,5490,9938,9939,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,4,7.813164828937492,7.606197930576538,0,1,0,-9,9,0,-2,62.30719724763317,0,0,0,58,2,3,1,3,3,2019,1,2,10,0,48,47,15,1,0,1,0,5.165422992869559,5.165422992869559,0,0,0,0,0,0,0,0,0,0,2.013468149595586,0,0,0,57.16,56.15,6,1,0,0,11,5,1,1084.5,0,0,0 +4465,5490,9939,9938,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.49124751091658,9.616343697038936,0,1,0,-9,9,0,2,-58.64799934480966,0,0,0,56,3,4,1,3,-9,2019,1,1,10,0,40,0,15,1,1,1,0,48.24406242825835,48.24406242825835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,5,1,0,0,11,5,1,1084.5,0,0,0 +4466,5491,9940,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1007.059363241866,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.75,19.69,4,1,0,0,9,1,0,1378,0,0,0 +4467,5492,9941,-9,-9,-9,1,1,0,52,2,0,1,0,2,-9,2,1,0,4,8.422493376006619,8.332738599993075,0,4,0,0,0,-9,0,-1014.636071497641,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,45,15,1,0,-9,0,10.62861674595148,10.62861674595148,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.12,40.88,2,4,0,0,8,4,1,1622,0,0,0 +4468,5493,9942,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,1,7.611081590923337,7.517714051512947,0,3,0,0,0,-9,0,-889.232586220339,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,10,47,36,15,1,10,-9,0,5.897586127182991,5.897586127182991,0,0,0,0,0,0,0,1,1,0,6.17843389479769,0,0,0,29.89,33.84,1,1,0,1,10,3,1,386,0,0,0 +4469,5494,9943,-9,9945,9946,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.943937819022,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,5,5,1,1300.5,0,0,0 +4469,5494,9944,-9,9945,9946,3,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1034.832116203045,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,5,1,0,0,5,5,1,1300.5,0,0,0 +4469,5494,9945,9946,-9,-9,1,1,0,42,1,0,2,0,1,-9,1,1,0,4,6.869940824616996,7.107085005451832,0,2,0,-9,20,0,-6,-76.4881344781503,0,0,1,48,1,3,1,2,3,2019,1,2,12,0,18,0,15,1,0,1,0,5.641777955426956,5.641777955426956,0,0,0,0,0,0,0,0,0,0,.3744689964958132,0,0,0,45.91,59.89,5,1,0,0,5,5,1,1300.5,0,0,0 +4469,5494,9946,9945,-9,-9,2,1,1,48,1,0,2,0,1,-9,1,1,0,3,9.597949968180108,9.963423027191038,0,2,0,-9,10,0,6,202.7672686835779,0,0,0,42,1,4,1,-9,-9,2019,1,1,10,0,50,50,15,1,0,1,0,37.66912762764539,37.66912762764539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,6,1,0,0,5,5,1,1300.5,0,0,0 +4470,5495,9947,9948,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,1,0,4.289455941511787,4.345122706207515,1,0,-9,6,0,0,110.5484359585123,0,0,0,77,3,2,3,3,3,2019,4,1,28,12,0,0,15,4,12,4,0,0,0,1,128.0398462756791,127.4505195867077,0,0,0,0,1,1,0,0,4.560068742653903,0,0,37.6,14.31,1,1,0,0,10,2,1,849,0,0,0 +4470,5495,9948,9947,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,6.39677873925995,6.25546429831425,1,0,-9,6,0,0,29.82242267516041,0,0,0,77,3,1,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.973696706333291,0,0,48,35,4,1,0,0,10,2,1,849,0,0,0 +4471,5496,9949,9950,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.480268843985131,8.530425457390583,0,1,0,-9,4,0,1,8.621062986046468,0,1,1,26,1,3,1,-9,-9,2019,1,1,8,0,35,35,15,1,0,1,0,18.2515334131716,18.2515334131716,0,0,0,0,0,0,0,0,0,0,2.304497195666514,0,0,0,51.83,57.2,6,1,0,0,6,5,1,574,0,0,0 +4471,5496,9950,9949,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,3,7.919907807381909,7.642493478693932,0,1,0,-9,4,0,-1,131.2947675721074,0,1,0,27,1,4,1,-9,-9,2019,1,2,14,3,32,31,15,1,3,1,0,9.386280092784682,9.386280092784682,0,0,0,0,0,0,0,0,0,0,2.71077718509093,0,0,0,53.39,49.67,3,1,0,0,6,5,1,574,0,0,0 +4472,5497,9951,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,3,8.174695112216989,8.080566045193144,5.298253959336177,3,0,-9,0,-9,0,-1022.218179404985,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,36,0,15,1,4,-9,0,11.01892226781472,11.01892226781472,0,0,0,0,0,0,0,0,0,0,0,5.595198051236458,0,0,50.66,48.18,4,1,0,0,8,4,0,2819,0,0,0 +4473,5498,9952,9953,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,2,0,7.199677458767396,7.314436280515593,1,0,-9,35,0,-1,-61.02838539249304,0,0,0,65,2,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.093143158352176,0,0,61.28,35.65,6,1,0,0,6,3,1,1147,0,0,0 +4473,5498,9953,9952,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,4,7.181755361723206,7.149160254090122,5.382821568740064,1,0,-9,35,0,1,22.47221723623332,0,0,0,64,2,2,3,-9,-9,2019,2,1,8,0,10,0,15,1,0,4,0,14.24012634385783,14.24012634385783,0,0,0,0,0,0,0,1,1,0,3.487982243771587,5.527962327661247,0,0,57.16,56.15,7,1,0,0,6,3,1,1147,0,0,0 +4474,5499,9954,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-910.6250125593192,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,2,1,0,1,11,1,0,823,0,0,0 +4475,5500,9955,-9,9956,9957,4,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.778210475697,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,2,1,694,0,0,0 +4475,5500,9956,9957,-9,-9,2,1,0,52,1,0,1,0,2,-9,1,1,0,4,.5783581994352479,.685857706740891,0,2,0,-9,6,0,-2,86.04901219894056,0,0,0,54,2,4,1,2,2,2019,1,1,17,5,40,40,15,1,5,1,0,.0029259380287582,.0029259380287582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,48.15,4,1,0,1,13,2,1,694,0,0,0 +4475,5500,9957,9956,-9,-9,1,1,1,54,1,0,1,0,2,-9,1,1,0,4,6.871477554742182,6.763652942841929,0,2,0,-9,6,0,2,128.0974075448167,0,0,0,52,2,4,1,3,3,2019,1,2,9,0,70,80,15,1,1,1,0,1.50216827696027,1.50216827696027,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,13,2,1,694,0,0,0 +4475,5501,9958,-9,9956,9957,3,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-902.2458996232948,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,13,1,1,418,0,0,0 +4476,5502,9959,-9,9962,9960,2,1,0,24,2,0,1,0,2,-9,2,1,0,2,6.924966687205495,6.877062137309507,0,3,0,0,0,-9,0,-1085.330174121368,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,34,11,16,4,15,1,11,-9,1,6.262515633570728,6.262515633570728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.89,33.15,1,3,0,1,4,2,1,440,0,0,0 +4476,5503,9960,9962,-9,-9,6,1,1,47,1,0,1,0,2,-9,2,1,0,4,6.845873641414616,6.735429669673922,0,2,0,-9,7,0,1,31.05331141457158,0,0,0,46,2,2,1,-9,-9,2019,1,1,9,0,16,12,15,1,1,1,0,5.860693394047649,5.860693394047649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,4,2,1,586.6666666666666,0,0,0 +4476,5503,9961,-9,9962,9960,5,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.666514936599,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,586.6666666666666,0,0,0 +4476,5503,9962,9960,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,2,7.30460808833968,6.911214794278317,0,2,0,-9,7,0,-1,132.1069642786049,0,0,0,47,2,4,1,3,3,2019,1,6,4,0,18,18,15,1,0,1,0,8.148687282840749,8.148687282840749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,40,4,3,0,0,4,2,1,586.6666666666666,0,0,0 +4477,5504,9963,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1111.606208492585,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,7,1,1,0,6,1,0,1632,0,0,0 +4478,5505,9964,9965,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,4.021040252514733,3.519087896060796,1,0,-9,42,0,3,-67.15226853369455,0,0,0,63,2,4,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.627608753642616,0,0,49.68,27.33,6,1,0,0,4,3,1,609,0,0,0 +4478,5505,9965,9964,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,4,7.632622763825084,7.683999979940352,5.834088858495176,1,0,-9,6,0,-3,108.8812885342914,0,0,0,66,3,2,3,-9,3,2019,2,1,11,0,20,24,15,1,0,4,0,10.94732406812344,10.94732406812344,0,0,0,0,0,0,0,1,1,0,6.160405738154265,6.377685598601296,0,0,54.2,57.49,6,1,0,0,4,3,1,609,0,0,0 +4479,5506,9966,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,7.591427876036578,7.399968983399355,4.287583155920776,3,0,0,0,-9,0,-875.1255506102503,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,30,15,1,0,-9,0,7.962028258233056,7.962028258233056,0,0,0,0,0,0,0,1,1,0,3.891125325136725,4.363688138092921,0,0,57.34,50.6,6,1,0,0,6,3,1,1212,0,0,0 +4480,5507,9967,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-968.5886060968051,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,33.62,5,2,0,0,8,1,0,849,0,0,0 +4481,5508,9968,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,2,0,6.946062385948367,7.179921801953418,3,0,0,0,-9,0,-998.2640137849128,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.292818089234224,6.784027043611228,0,0,66.37,25.13,6,1,0,0,7,2,1,1855,0,0,0 +4482,5509,9969,9970,-9,-9,1,1,0,49,1,0,1,0,3,-9,1,1,0,5,8.311794337547992,8.531554707571878,0,2,0,-9,8,0,0,124.0053419082136,0,0,0,49,2,4,1,3,3,2019,1,2,11,0,30,30,15,1,0,1,0,20.98277225514746,20.98277225514746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,58.83,6,1,0,0,10,4,1,944.5,0,0,0 +4482,5509,9970,9969,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.547755459092542,8.589195162188231,0,2,0,-9,8,0,0,2.002864122393988,0,0,0,49,3,5,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,14.33261129721235,14.33261129721235,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,2,1,0,0,10,4,1,944.5,0,0,0 +4482,5510,9971,-9,9969,9970,3,1,0,20,2,0,1,0,2,-9,2,1,0,5,7.70872175381747,7.918257440688349,0,3,0,0,0,-9,0,-931.9574751349028,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,1,35,38,15,1,1,-9,1,8.59994404394744,8.59994404394744,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,62.68,6,1,0,0,10,3,1,628,0,0,0 +4482,5511,9972,-9,9969,9970,4,1,0,18,2,0,1,1,2,0,7,2,0,4,4.947792262807378,4.899622926169956,0,3,0,0,0,-9,0,-868.9664413799536,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,22,8,0,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,55.62,6,1,0,0,10,4,1,645,0,0,0 +4483,5512,9973,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,2,1,0,4,8.22923427811226,8.551843881338236,5.678455287313148,3,0,0,0,-9,0,-963.4883575686885,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,48,58,15,1,2,-9,0,10.55293889543831,10.55293889543831,0,0,0,0,0,0,0,1,1,0,0,5.58455095225352,0,0,57.18,42.58,6,1,0,0,4,4,1,1210,0,0,0 +4484,5513,9974,9975,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,4,7.146536086863803,7.024204687888178,0,2,0,-9,9,0,4,11.59081479841769,0,0,1,37,2,5,1,2,1,2019,1,1,15,5,30,15,15,1,5,1,0,4.849613823771963,4.849613823771963,0,0,0,0,0,0,0,1,1,0,7.091339522858362,0,21.29541402821925,3,41.06,62.04,6,1,0,0,10,3,1,1731.75,0,0,0 +4484,5513,9975,9974,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,5,7.711260228111282,7.636682880615789,0,2,0,-9,12,0,-4,70.32201576552059,0,0,0,41,2,4,1,2,2,2019,1,2,8,0,45,44,15,1,0,1,0,6.836170751316081,6.836170751316081,0,0,0,0,0,0,0,1,1,0,7.505477702451,0,10.74443726021275,3,54.1,59.11,5,1,0,1,10,3,1,1731.75,0,0,0 +4484,5513,9976,-9,9974,9975,5,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.17886799846,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,1731.75,0,0,0 +4484,5513,9977,-9,9974,9975,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.94380889587,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,1731.75,0,0,0 +4485,5514,9978,9979,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,6.394622355133214,5.974122202543627,1,0,-9,53,0,2,27.2190477589112,-9,0,0,77,3,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.375610061483767,0,0,54.38,46.77,6,1,0,0,11,2,0,1532,0,0,0 +4485,5514,9979,9978,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,53,0,-2,-100.8493744620625,0,0,0,79,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,46,6,1,0,0,11,2,0,1532,0,0,0 +4486,5515,9980,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,5.445700219889433,6.379068791013369,3,0,0,0,-9,0,-1003.159040388948,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.0292516833469345,6.134021092315243,0,0,62.18,36.18,7,1,0,0,6,2,1,578,0,0,0 +4487,5516,9981,9982,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,5,0,3.403405246745756,3.330882483741937,1,0,-9,9,0,10,-138.8410669863909,0,0,0,60,2,5,1,2,3,2019,3,1,6,0,0,21,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.538163063402918,2.321735757844601,3,58.05,54.52,6,1,0,0,9,3,1,402,0,0,0 +4487,5516,9982,9981,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,5,7.623669145197329,7.731672638726449,5.84195757786032,1,0,-9,9,0,-10,117.0564445628688,0,0,0,70,3,5,3,-9,-9,2019,2,2,6,0,8,0,15,1,0,4,0,28.2452499045363,28.2452499045363,0,0,0,0,0,0,0,1,1,0,4.800255043092096,5.722060650928939,.2465668607302802,3,60.02,56.42,7,1,0,0,9,3,1,402,0,0,0 +4488,5517,9983,9984,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,47,0,-1,-61.07920226638564,0,0,0,71,3,3,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.9287141379997,1,45.72,52.24,6,1,0,0,9,1,0,654,0,0,0 +4488,5517,9984,9983,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,4.212491403525587,4.0051717133755,1,0,-9,47,0,1,31.33563381914366,0,0,0,70,3,5,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.269198386959632,4.396850000859542,0,1,53,46,5,1,0,0,9,1,0,654,0,0,0 +4489,5518,9985,9987,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,4,8.578653210065266,8.606515106564679,0,2,0,-9,9,0,0,30.2102878081752,0,0,0,42,1,5,1,2,2,2019,1,2,8,0,38,38,15,1,0,1,0,21.9080533254483,21.9080533254483,0,0,0,0,0,0,0,1,1,0,1.922353360717193,0,0,0,48.81,59.91,6,1,0,0,9,5,1,569.25,0,0,0 +4489,5518,9986,-9,9987,9985,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.2713878812556,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,569.25,0,0,0 +4489,5518,9987,9985,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,5,8.440944039324719,8.454131125958245,0,2,0,-9,9,0,0,47.46680583501423,0,0,1,42,1,4,1,-9,-9,2019,1,1,11,0,54,29,15,1,0,1,0,10.93264976657804,10.93264976657804,0,0,0,0,0,0,0,1,1,0,.7093411289973486,0,0,0,39.77,60.22,6,1,0,0,9,5,1,569.25,0,0,0 +4489,5518,9988,-9,9987,9985,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.0126907433415,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,9,5,1,569.25,0,0,0 +4490,5519,9989,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,5,8.757210268864178,9.138444487962401,7.636099030279707,3,0,0,0,-9,0,-923.6062953884449,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,0,16,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.053732086653428,7.758717178152293,0,0,47.33,58,6,1,0,0,12,5,1,177,0,0,0 +4491,5520,9990,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,3,3,0,3,0,5.606806575500266,5.582638452324487,3,0,0,0,-9,0,-1094.925700294471,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,15,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.217192035247115,5.749420406402514,0,0,59.07,43.05,6,3,1,0,8,2,1,4396,0,0,0 +4492,5521,9991,9992,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,-2,78.22843171573219,0,0,0,71,2,1,3,3,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,13.07587858798713,0,.7542118046156505,2.015802975074199,0,1,1,0,0,0,0,1,42.68,14.53,3,1,0,1,12,2,1,874.5,0,0,0 +4492,5521,9992,9991,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,6.40827246609309,6.366292448283374,1,0,-9,7,0,2,-18.75428655807533,0,0,0,69,3,1,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,7.680775449980736,0,0,0,0,1,1,0,0,6.348781802558484,0,1,47.66,21.74,2,1,0,1,12,2,1,874.5,0,0,0 +4493,5522,9993,9994,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,7.706616474208777,8.046696117037857,1,0,-9,52,0,2,-68.40235177604113,0,0,0,70,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.02959462558743,7.998672877879287,0,0,57.16,56.15,7,1,0,0,1,3,1,293.5,0,0,0 +4493,5522,9994,9993,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,52,0,-2,-27.6646553275527,0,0,0,72,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.017064663959251,0,0,0,58.15,52.91,6,1,0,0,1,3,1,293.5,0,0,0 +4494,5523,9995,-9,9996,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.7586727013891,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,0,452.5,0,0,0 +4494,5523,9996,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,2,1,0,5,8.152074051221277,8.093111014640071,6.434527401894606,4,0,0,0,-9,0,-993.6272365981588,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,38,38,15,1,0,-9,0,11.1722716991779,11.1722716991779,0,0,0,0,0,0,0,1,1,0,6.196685445987448,0,0,0,57.06,57.76,6,1,0,0,9,4,0,452.5,0,0,0 +4494,5524,9997,-9,9996,-9,2,1,1,18,2,0,1,0,2,-9,7,2,0,3,6.819929932452935,6.477018899521122,0,3,0,0,0,-9,0,-1029.54893679243,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,9,2,0,396,0,0,0 +4495,5525,9998,-9,10002,9999,3,1,0,16,2,0,3,1,2,-9,7,2,0,3,0,5.598119123751086,5.411738546815,2,0,0,0,-9,0,-993.0245400071964,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.48513097562309,0,0,0,49.63,54.22,7,1,0,0,13,5,1,794.6,0,0,0 +4495,5525,9999,10002,-9,-9,1,1,1,47,1,0,3,0,2,-9,2,1,0,1,8.117419892389433,8.148860915985034,0,2,0,-9,20,0,2,.1596183208015121,0,0,0,45,1,2,1,3,3,2019,1,2,8,1,40,40,15,1,1,1,0,9.917252462894039,9.917252462894039,0,0,0,0,0,0,0,1,1,0,3.464230620180647,0,29.78723498166716,3,64.57000000000001,12.51,6,1,0,0,13,5,1,794.6,0,0,0 +4495,5525,10000,-9,10002,9999,5,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1014.490584357107,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,5,1,794.6,0,0,0 +4495,5525,10001,-9,10002,9999,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.0480291854295,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,5,1,794.6,0,0,0 +4495,5525,10002,9999,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,2,9.575333219375645,9.683843865270402,0,2,0,-9,20,0,-2,59.8874605635293,0,0,0,47,2,1,1,3,3,2019,1,1,11,1,42,44,15,1,1,1,0,35.62457671413296,35.62457671413296,0,0,0,0,0,0,0,1,1,0,0,0,32.86756145634275,3,55.22,30.3,4,1,0,0,13,5,1,794.6,0,0,0 +4496,5526,10003,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,4,8.914846337199601,8.899261851159775,0,1,0,-9,2,0,-18,-19.63095136167727,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,17,5,50,50,15,1,5,-9,0,13.64392287515159,13.64392287515159,0,0,0,0,0,0,0,0,0,0,6.703034346136977,0,0,0,40.77,61.04,5,3,0,0,10,5,1,860,0,0,0 +4496,5527,10004,-9,-9,-9,2,1,1,53,2,0,0,0,1,-9,2,1,0,5,9.610669494785185,9.675872977484453,0,1,0,-9,2,0,18,-28.29751165536461,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,3,0,45,50,15,1,0,-9,0,39.0791353195694,39.0791353195694,0,0,0,0,0,0,0,0,0,0,6.517525124715074,0,0,0,59.33,51.29,7,1,0,0,10,5,1,715,0,0,0 +4497,5528,10005,10006,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,4,7.46084057271255,7.499829787844316,0,2,0,-9,6,0,-3,-55.67886884630841,-9,0,0,50,3,4,1,-9,-9,2019,1,1,9,0,50,0,15,1,1,1,0,3.601147882209567,3.601147882209567,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,12,3,1,1680.5,0,0,0 +4497,5528,10006,10005,-9,-9,1,1,0,50,1,0,1,0,3,-9,2,1,0,4,7.407234714063413,6.710819329590715,0,2,0,-9,6,0,3,53.7013469518538,0,0,0,47,2,4,1,-9,-9,2019,1,2,7,0,20,20,15,1,0,1,0,6.223226708675892,6.223226708675892,0,0,0,0,0,0,0,1,1,0,0,0,20.00022638880335,3,58.15,52.91,2,1,0,0,12,3,1,1680.5,0,0,0 +4498,5529,10007,10008,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,3,9.491081665181314,9.040687888335546,0,2,0,-9,6,0,0,126.4584161809543,0,0,0,52,1,4,1,3,3,2019,1,2,23,11,40,50,15,1,11,1,0,30.02323271768921,30.02323271768921,0,0,0,0,0,0,0,1,1,0,0,0,6.463340699177942,3,34.9,57.07,5,1,0,0,13,5,1,662,0,0,0 +4498,5529,10008,10007,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,4,9.091450723546178,8.728699816092275,0,2,0,-9,6,0,0,33.1646836767353,0,0,0,52,1,3,1,-9,-9,2019,1,1,7,0,38,46,15,1,0,1,0,22.57552826740486,22.57552826740486,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.02,58.85,6,1,0,0,13,5,1,662,0,0,0 +4498,5529,10009,-9,10008,10007,4,1,0,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1099.75323531921,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,6,1,0,0,13,5,1,662,0,0,0 +4498,5530,10010,-9,10008,10007,3,1,1,19,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1141.043528902275,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,55.72,6,1,0,0,13,1,1,758,0,0,0 +4499,5531,10011,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,0,4.428097173475635,3.997339762602786,3,0,0,0,-9,0,-1061.588636984971,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,6.149344214108138,0,1,1,0,2.789204727161966,4.222319702623492,0,0,43.27,20.92,6,1,0,0,1,1,0,668,0,0,0 +4500,5532,10012,10014,-9,-9,2,1,0,45,1,0,4,0,1,-9,2,1,0,4,8.196177870484734,8.009430788703225,0,2,0,-9,26,0,-10,-86.28011230476477,0,0,0,55,1,4,1,2,2,2019,1,1,10,0,25,31,15,1,0,1,0,16.76565025384793,16.76565025384793,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,4,0,0,9,5,1,423,0,0,0 +4500,5532,10013,-9,10012,10014,6,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-834.8162762834752,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,9,5,1,423,0,0,0 +4500,5532,10014,10012,-9,-9,1,1,1,55,1,0,4,0,1,-9,2,1,0,4,9.434956315329384,9.233843309268339,0,2,0,-9,24,0,10,3.367590464865719,0,0,0,45,1,4,1,3,3,2019,1,2,6,0,50,50,15,1,0,1,0,26.20299335788127,26.20299335788127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,4,0,0,9,5,1,423,0,0,0 +4500,5533,10015,-9,10012,10014,3,1,0,18,2,0,4,1,2,0,7,2,0,4,5.205918052159046,5.496454879555776,0,3,0,0,0,-9,0,-951.8911797227842,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.968277136162408,0,0,0,41.59,61.77,6,4,0,0,9,5,1,1801,0,0,0 +4501,5534,10016,10017,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,3,7.72359515149507,7.647086771689262,2.589136298670851,1,0,-9,35,0,-5,-77.24777500666926,0,0,0,62,1,3,3,2,2,2019,2,1,10,1,31,31,15,1,1,4,0,8.334228817223487,8.334228817223487,0,0,0,0,0,0,0,0,0,0,3.402980215812708,2.498556708072482,1.057341770544572,3,55.13,34.07,6,1,0,0,9,4,1,1438,0,0,0 +4501,5534,10017,10016,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,7.888537029784918,7.981787678565682,1,0,-9,35,0,5,-7.224085462988999,0,0,0,57,3,3,1,2,2,2019,3,2,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.568685001019204,0,0,58.73,29.86,5,1,0,0,9,4,1,1438,0,0,0 +4501,5535,10018,-9,10016,10017,3,1,1,30,2,0,0,0,2,-9,2,1,0,3,7.985962863922122,7.631555063023176,0,3,0,0,0,-9,0,-936.2697325392321,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,40,50,15,1,0,-9,1,8.260916863129795,8.260916863129795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.58,37.81,6,1,0,0,9,3,1,287,0,0,0 +4502,5536,10019,-9,10020,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1145.165866135464,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,2,0,1008.666666666667,0,0,0 +4502,5536,10020,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,2,1,0,5,7.612782909276858,7.328525799855197,0,4,0,0,0,-9,0,-1083.285805739261,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,27,30,15,1,4,-9,0,7.187634618040172,7.187634618040172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.53,49.08,6,1,0,0,11,2,0,1008.666666666667,0,0,0 +4502,5536,10021,-9,10020,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1023.394416596456,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,11,2,0,1008.666666666667,0,0,0 +4503,5537,10022,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-978.4672548013576,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,20,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.668855568040138,0,0,0,52.78,47.24,4,1,1,0,11,1,1,652,0,0,0 +4504,5538,10023,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,2,0,6.418657451318561,6.512917008094906,3,0,0,0,-9,0,-941.5166784204621,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,75.82923787407428,0,0,0,0,0,1,1,0,0,6.502108655851349,0,0,65.47,21.7,5,1,0,0,6,2,0,1604,0,0,0 +4505,5539,10024,-9,10026,10027,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-997.1327025702002,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,10,5,1,481,0,0,0 +4505,5539,10025,-9,10026,10027,4,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-865.5647698272851,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,10,5,1,481,0,0,0 +4505,5539,10026,10027,-9,-9,1,1,0,40,1,1,3,0,1,-9,5,1,0,4,8.909499045257485,8.668758678560877,0,2,0,-9,11,0,-1,-28.25531751424268,0,0,1,41,1,4,1,2,2,2019,1,2,18,4,26,25,15,1,4,1,0,24.07690124857655,24.07690124857655,0,0,0,0,0,0,0,0,0,0,3.175510422887881,0,0,0,43.54,59.6,6,3,0,0,10,5,1,481,0,0,0 +4505,5539,10027,10026,-9,-9,2,1,1,41,1,1,3,0,1,-9,2,1,0,4,9.673944230312065,9.843795352203173,0,2,0,-9,11,0,1,99.9797053990759,0,0,0,40,1,4,1,1,1,2019,1,1,14,2,50,49,15,1,2,1,0,31.4951171033111,31.4951171033111,0,0,0,0,0,0,0,0,0,0,1.758529080869896,0,0,0,46.95,59.37,5,3,0,0,10,5,1,481,0,0,0 +4505,5539,10028,-9,10026,10027,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.870507385632,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,10,5,1,481,0,0,0 +4506,5540,10029,10030,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,5,7.978031020379605,8.330710445616225,0,1,0,-9,27,0,-2,68.01616863148971,0,0,0,56,3,4,1,3,3,2019,1,2,7,0,24,25,15,1,0,1,0,17.58834989421534,17.58834989421534,0,0,0,0,0,0,0,0,0,0,3.386383920048798,0,0,0,60.02,56.42,6,1,0,0,6,5,1,1787,0,0,0 +4506,5540,10030,10029,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,4,7.869242044683089,8.284862360891017,7.595661306092268,1,0,-9,27,0,2,40.62448248216477,0,0,0,54,2,5,1,3,2,2019,1,1,2,0,25,20,15,1,0,1,0,13.67999222216336,13.67999222216336,0,0,0,0,0,0,0,0,0,0,.1777810413873803,8.092836058554925,0,0,55.81,55.35,7,1,0,0,6,5,1,1787,0,0,0 +4507,5541,10031,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-914.3656977398289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.72,21.24,5,1,0,0,12,1,1,254,0,0,0 +4508,5542,10032,10033,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,7.30964222607347,7.231227073524428,1,0,-9,9,0,8,56.77105753049671,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.990701584572247,7.376363959158474,0,0,56.76,39.94,7,1,0,0,7,5,1,615.5,0,0,0 +4508,5542,10033,10032,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,8.566784969157217,8.503424928558218,1,0,-9,9,0,-8,73.85471453788746,0,0,0,75,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.178253312102654,8.821370474110587,0,0,57.33,53.46,6,1,0,0,7,5,1,615.5,0,0,0 +4509,5543,10034,10035,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,3,9.607318047040788,9.327281758100728,0,1,0,-9,29,0,0,.2500003786836091,0,0,0,54,1,2,1,1,1,2019,1,2,6,0,43,40,15,1,0,1,0,29.5555465118485,29.5555465118485,0,0,0,0,0,0,0,0,0,0,6.077972158911993,0,0,0,61.85,47.26,6,1,0,0,12,5,1,431.5,0,0,0 +4509,5543,10035,10034,-9,-9,2,1,0,54,1,0,0,0,1,-9,1,1,0,2,8.279288876823914,8.047587562293934,0,1,0,-9,29,0,0,17.19841266120072,0,0,0,54,1,3,1,1,1,2019,1,1,11,0,22,25,15,1,0,1,0,18.24188889136004,18.24188889136004,0,0,0,0,0,0,0,0,0,0,3.915155832083536,0,0,0,53.38,47.51,6,1,0,0,12,5,1,431.5,0,0,0 +4510,5544,10036,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1016.600292773574,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,76.79565096084079,3,47,49,5,3,0,1,8,1,0,516,0,0,0 +4510,5545,10037,-9,10036,-9,2,1,1,22,2,0,0,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1066.075392382646,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.63,58.83,6,3,0,0,8,1,0,696,0,0,0 +4510,5546,10038,-9,10036,-9,3,1,1,31,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,-9,0,-9,0,-1057.17815004618,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,58,5,3,0,0,8,1,0,447,0,0,0 +4511,5547,10039,-9,10040,-9,3,1,1,17,2,0,1,0,2,1,3,3,0,2,0,0,0,4,0,0,0,-9,0,-881.4367275198542,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.057093641077374,3,59.14,28.57,5,1,1,0,12,1,0,991.5,0,0,0 +4511,5547,10040,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1007.892347587215,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.62850066732596,3,27.04,28.6,2,1,0,0,12,1,0,991.5,0,0,0 +4511,5548,10041,-9,10040,-9,2,1,1,20,2,0,1,0,2,-9,2,1,0,3,7.880018491356944,7.907423226993913,0,3,0,0,0,-9,0,-960.6733991530569,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,47,0,15,1,1,-9,1,7.61850722238595,7.61850722238595,0,0,0,0,0,0,0,1,1,0,0,0,4.69887893845752,3,57.33,53.46,6,1,0,0,12,3,0,1080,0,0,0 +4512,5549,10042,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,3,7.785993478875301,7.726948849411071,0,3,0,-9,0,-9,0,-1025.646927265482,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,0,15,1,1,-9,0,8.833539865380478,8.833539865380478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.41,56.75,6,1,0,0,6,4,1,928,0,0,0 +4513,5550,10043,-9,10044,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-962.7020637487582,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,5,1,667,0,0,0 +4513,5550,10044,-9,-9,-9,1,1,0,43,3,0,1,0,1,-9,2,1,0,4,8.770801814863134,9.220076098582853,3.48938151295195,4,0,0,0,-9,0,-1118.062079854755,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,45,52,15,1,0,-9,0,25.34936037499263,25.34936037499263,0,0,0,0,0,0,0,1,1,0,2.827124796750328,0,0,0,55.79,52.62,6,2,0,0,9,5,1,667,0,0,0 +4514,5551,10045,-9,10046,10048,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-975.1716979663793,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,0,556.5,0,0,0 +4514,5551,10046,10048,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,3,7.616550071198937,7.642307779192535,0,2,0,-9,6,0,-8,1.023267584128899,0,0,1,39,2,4,1,2,1,2019,1,2,12,1,30,0,15,1,1,1,0,8.227639907501622,8.227639907501622,0,0,0,0,0,0,0,1,1,0,7.599530962144976,0,0,0,43.37,57.28,6,1,0,0,11,4,0,556.5,0,0,0 +4514,5551,10047,-9,10046,10048,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.822789156127,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,0,556.5,0,0,0 +4514,5551,10048,10046,-9,-9,2,1,1,39,1,1,2,0,2,-9,2,1,0,4,8.516694289364578,8.576402263367635,0,2,0,-9,6,0,8,-54.78484533756457,0,0,0,31,1,3,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,14.72040298168979,14.72040298168979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,11,4,0,556.5,0,0,0 +4515,5552,10049,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,3,8.333030592419112,8.16763183608686,0,3,0,0,0,-9,0,-1031.051967361649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,46,15,1,0,-9,0,9.807349674431126,9.807349674431126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,5,1,0,0,10,4,1,613,0,0,0 +4516,5553,10050,-9,10053,10052,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.248584824445,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,0,1081.75,0,0,0 +4516,5553,10051,-9,10053,10052,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.912053249623,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,1081.75,0,0,0 +4516,5553,10052,10053,-9,-9,1,1,1,25,1,0,2,0,2,-9,2,1,0,4,7.593951000132345,7.230310700006838,0,2,0,-9,4,0,2,44.36191600156755,0,1,0,23,2,3,3,3,3,2019,2,2,9,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,4,1,0,0,4,2,0,1081.75,0,0,0 +4516,5553,10053,10052,-9,-9,2,1,0,23,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-2,2.023379218288228,0,1,1,25,2,4,1,-9,-9,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.22,56.72,5,1,0,0,4,2,0,1081.75,0,0,0 +4517,5554,10054,-9,-9,-9,1,1,1,56,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1026.434457636129,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,31,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.82,20.99,3,1,0,0,1,1,0,1268,0,0,0 +4518,5555,10055,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,6.897478107370132,6.373397702443198,3,0,0,0,-9,0,-973.7476210078297,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.686404457529573,6.439605863265978,0,0,50.1,41.77,6,1,0,0,5,2,0,417,0,0,0 +4519,5556,10056,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,4,8.491118722859568,8.54172931139448,0,3,0,0,0,-9,0,-987.9258557386395,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,41,42,15,1,0,-9,0,15.57852184374703,15.57852184374703,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52.82,53.97,5,1,0,0,13,5,0,2507,0,0,0 +4520,5557,10057,-9,-9,-9,1,1,1,56,2,0,0,0,1,-9,4,3,0,4,0,7.47290046794218,7.336556443283271,3,0,0,0,-9,0,-956.1374943729941,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.683099573799596,7.396444576161042,0,0,53,54,6,1,0,0,7,3,1,1166,0,0,0 +4521,5558,10058,-9,10060,10059,3,1,0,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1039.708606598597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,1,0,0,10,4,1,274,0,0,0 +4521,5558,10059,10060,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.77153913081783,8.693907344435022,6.906846552949381,2,0,-9,20,0,-2,45.83740281157843,0,0,0,55,2,5,1,2,2,2019,1,2,14,3,45,44,15,1,3,1,0,16.26787135943741,16.26787135943741,0,0,0,0,0,0,0,1,1,0,0,6.968785376214857,0,0,39.09,60.15,6,1,0,0,10,4,1,274,0,0,0 +4521,5558,10060,10059,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,5,7.28891798043803,7.247598725066307,0,2,0,-9,22,0,2,87.08964627379471,0,0,0,53,2,4,1,2,2,2019,1,1,11,2,33,35,15,1,2,1,0,5.709641303234509,5.709641303234509,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,38.37,6,1,0,0,10,4,1,274,0,0,0 +4522,5559,10061,10062,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,5,0,8.177066265102201,8.111536578694173,1,0,-9,46,0,-3,-104.3718451386368,0,0,0,75,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.398856382663308,8.307452033651092,0,0,55.83,54.24,6,1,0,0,8,5,1,805,0,0,0 +4522,5559,10062,10061,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,8.147149680198947,8.70321420746448,1,0,-9,46,0,3,-21.50066501846215,0,0,0,72,1,5,3,1,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.35079512509768,8.584205432871661,0,0,53.92,49.74,6,1,0,0,8,5,1,805,0,0,0 +4523,5560,10063,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-912.2331240978239,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.85945266843057,0,0,0,1,1,0,0,0,0,0,51.45,42.88,5,1,0,0,10,1,1,845,0,0,0 +4524,5561,10064,10065,-9,-9,1,1,1,67,1,0,0,0,3,-9,2,1,0,4,6.78896538566167,8.182586211591854,7.485786961591542,1,0,-9,39,0,8,-120.5556919084484,0,0,0,59,2,5,1,3,3,2019,1,2,7,0,18,18,15,1,0,1,0,5.656919249500216,5.656919249500216,0,0,0,0,0,0,0,1,1,0,4.794171670209589,7.647931709531137,0,0,60.12,54.8,6,1,0,0,11,4,1,468.5,0,0,0 +4524,5561,10065,10064,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,5,7.686812588213678,7.560915952420581,0,1,0,-9,39,0,-8,21.87962837166018,0,0,0,67,3,4,1,2,2,2019,1,1,10,0,26,26,15,1,0,1,0,11.85719837584068,11.85719837584068,0,0,0,0,0,0,0,1,1,0,3.381584105228638,0,0,0,54.1,59.11,7,1,0,0,11,4,1,468.5,0,0,0 +4525,5562,10066,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,2,1,0,4,7.930784432227123,8.37896173513287,0,3,0,0,0,-9,0,-994.4587858446865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,11.0768765627368,11.0768765627368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,6,1,0,0,12,4,0,741,0,0,0 +4526,5563,10067,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1006.176819637568,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,4,1,1,1188,0,0,0 +4527,5564,10068,10069,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,5.522425641119801,5.707942806411208,1,0,-9,55,0,-1,-51.75749487465676,0,0,0,81,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.807279683075394,5.938197209982737,0,0,44.53,56.37,6,1,0,0,4,2,1,940,0,0,0 +4527,5564,10069,10068,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,5.833073922066733,6.246119052739273,1,0,-9,55,0,1,114.7129024934558,0,0,0,80,3,4,3,3,2,2019,4,1,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.700803991143522,5.812159415042617,0,0,39.18,44.37,6,1,0,0,4,2,1,940,0,0,0 +4528,5565,10070,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1050.422899594661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,6,1,0,0,2,1,1,572,0,0,0 +4529,5566,10071,-9,-9,-9,1,1,0,90,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1048.677969876759,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,13.59362191793953,0,0,0,5.879870902966807,149.1331815175487,1,1,0,0,0,0,0,53,44,6,1,0,0,13,1,1,439,0,0,0 +4530,5567,10072,10073,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,4,8.114852261339118,8.303712682228426,0,1,0,-9,8,0,-2,54.37600714767013,0,0,0,58,3,2,1,3,-9,2019,1,2,9,0,42,42,15,1,0,1,0,11.3911771668738,11.3911771668738,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.08,52.59,6,1,0,0,13,4,1,591.5,0,0,0 +4530,5567,10073,10072,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,2,6.507507348743245,6.212963727647827,0,1,0,-9,8,0,2,-9.217396719703597,0,0,0,56,3,4,1,3,3,2019,1,1,20,8,10,10,15,1,8,1,0,7.935798489872528,7.935798489872528,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.01,49.04,4,1,0,0,13,4,1,591.5,0,0,0 +4531,5568,10074,10077,-9,-9,2,1,1,36,1,1,2,0,2,-9,1,1,0,5,7.659908886660094,7.775582438840457,0,2,0,-9,8,0,4,75.9941055765607,0,0,0,32,1,5,1,-9,-9,2019,1,1,6,0,70,55,15,1,0,1,0,3.87838239759621,3.87838239759621,0,0,0,0,0,0,0,1,1,0,8.289048318907081,0,0,0,60.02,56.42,6,1,0,0,5,4,1,661.25,0,0,0 +4531,5568,10075,-9,10077,10074,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1066.350417337452,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,4,1,661.25,0,0,0 +4531,5568,10076,-9,10077,10074,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.307956343609,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,661.25,0,0,0 +4531,5568,10077,10074,-9,-9,1,1,0,32,1,1,2,0,1,-9,5,1,0,5,8.498258278048581,8.437670155639021,0,2,0,-9,8,0,-4,66.33398954518262,0,0,1,36,2,5,1,2,2,2019,1,2,6,0,40,41,15,1,0,1,0,12.34003942747334,12.34003942747334,0,0,0,0,0,0,0,1,1,0,7.673264829674158,0,0,0,57.06,57.76,6,1,0,0,5,4,1,661.25,0,0,0 +4532,5569,10078,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,7.037119280739444,6.922219243489006,3,0,0,0,-9,0,-1117.351877502026,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.88825665114731,6.805745931870539,0,0,43.89,41.87,6,1,0,0,10,2,1,289,0,0,0 +4533,5570,10079,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,1,1,0,4,7.541995205022672,7.743815092774359,0,3,0,0,0,-9,0,-886.4478723753085,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,30,32,15,1,0,-9,0,9.827797834550873,9.827797834550873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,55.57,6,1,0,0,11,3,1,293,0,0,0 +4534,5571,10080,-9,-9,-9,1,1,1,27,3,0,0,0,2,-9,2,1,0,3,7.829813209159862,7.437439940530305,0,3,0,-9,0,1,0,-1078.967356242222,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,56,66,15,1,6,-9,0,4.441226562786796,4.441226562786796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,41.06,4,1,0,0,7,3,0,526,0,0,0 +4535,5572,10081,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-867.5124780395158,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.7799641496159,3,49.5,51.28,6,1,0,0,4,1,0,178,0,0,0 +4535,5573,10082,-9,10081,-9,2,1,0,42,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1016.075249645692,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,4,1,0,300,0,0,0 +4536,5574,10083,-9,10084,-9,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-988.5525488449512,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,1,0,3575.5,0,0,0 +4536,5574,10084,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-879.9584091547283,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,33,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.50695940474147,3,28.02,36.1,2,1,0,0,1,1,0,3575.5,0,0,0 +4536,5575,10085,-9,10084,-9,2,1,1,23,2,0,1,0,2,0,7,2,0,4,6.152423740917818,6.258344894159917,0,3,0,0,0,-9,0,-905.9562563661177,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,15,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.6,61.6,6,1,0,0,1,2,0,100,0,0,0 +4537,5576,10086,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,2,1,0,2,8.254513618328961,8.297068159087123,5.538155550295975,3,0,0,0,-9,0,-892.2377049609138,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,40,40,15,1,5,-9,0,12.29372157604725,12.29372157604725,0,0,0,0,0,0,0,1,1,0,0,5.395563559344679,0,0,45.57,42.64,6,1,0,0,8,4,0,442,0,0,0 +4538,5577,10087,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,4,8.188171425204974,7.877684286097578,0,3,0,0,0,-9,0,-1033.391770467961,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,41,0,15,1,0,-9,0,9.164734823636147,9.164734823636147,0,0,0,0,0,0,0,0,0,0,.2118842251336979,0,0,0,41.24,62.14,5,2,0,0,2,4,0,246,0,0,0 +4539,5578,10088,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,2,7.329151445114808,7.05300571357355,0,3,0,0,0,-9,0,-1059.600823996131,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,32,34,15,1,0,-9,0,7.108372265996292,7.108372265996292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,43.17,3,1,0,1,11,3,0,1034,0,0,0 +4539,5579,10089,-9,10088,-9,2,1,1,22,2,0,0,0,2,0,7,2,0,2,6.90532742558704,6.629297467305951,0,3,0,0,0,-9,0,-1002.09033321042,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.45,45.08,3,1,0,0,11,2,0,905,0,0,0 +4540,5580,10090,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,3,8.783420149485032,8.900508950583777,0,3,0,0,0,-9,0,-910.9233777094636,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,40,43,15,1,3,-9,0,17.49700539656759,17.49700539656759,0,0,0,0,0,0,0,1,1,0,.5603038280341154,0,0,0,23.79,60.82,5,1,0,0,8,5,1,214,0,0,0 +4541,5581,10091,-9,10092,10093,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.3288148285334,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,1036,0,0,0 +4541,5581,10092,10093,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,4,8.091159022660113,8.605153590950673,0,2,0,-9,6,0,0,96.80568683088265,0,0,1,39,2,4,1,-9,-9,2019,1,1,15,5,32,35,15,1,5,1,0,15.76799767474398,15.76799767474398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,61.77,5,1,0,0,9,4,1,1036,0,0,0 +4541,5581,10093,10092,-9,-9,1,1,1,39,1,1,2,0,2,-9,2,1,0,4,8.393917368913701,8.435169299710511,0,2,0,-9,6,0,0,-130.6064775536688,0,0,0,39,1,4,1,2,2,2019,1,2,5,0,39,37,15,1,0,1,0,14.07655972599722,14.07655972599722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,4,1,1036,0,0,0 +4541,5581,10094,-9,10092,10093,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.3381698717366,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,1036,0,0,0 +4542,5582,10095,10096,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,3,7.722745858151577,7.953456730756538,0,2,0,-9,6,0,1,-3.481216313982874,0,0,1,35,2,3,1,-9,-9,2019,1,1,10,1,48,28,15,1,1,1,0,5.940541169617743,5.940541169617743,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.44,40.51,6,1,0,0,5,4,1,292,0,0,0 +4542,5582,10096,10095,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,3,8.064647097067112,7.851349405667964,0,2,0,-9,6,0,-1,120.544892678413,0,0,0,36,2,3,1,2,2,2019,1,2,5,1,44,45,15,1,1,1,0,9.681737272710247,9.681737272710247,0,0,0,0,0,0,0,1,1,0,3.76709618236468,0,0,0,52.31,43.98,6,1,0,0,5,4,1,292,0,0,0 +4542,5582,10097,-9,10095,10096,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.070077336965,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,292,0,0,0 +4543,5583,10098,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,7.464310738809166,7.11437752415812,3,0,0,0,-9,0,-996.2647322195558,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.813629647311239,6.837569538805272,0,0,57.16,56.15,6,1,0,0,2,3,1,76,0,0,0 +4544,5584,10099,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1033.358719153277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.01,53.18,6,1,0,1,13,1,1,507,0,0,0 +4545,5585,10100,10103,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,3,7.585960906204918,7.880189341292427,0,2,0,-9,6,0,5,-58.18866512824087,0,0,0,33,1,4,1,2,2,2019,1,2,7,0,39,43,15,1,0,1,0,6.272023419052343,6.272023419052343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,7,3,1,945.75,0,0,0 +4545,5585,10101,-9,10103,10100,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.6101837849415,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,3,1,945.75,0,0,0 +4545,5585,10102,-9,10103,10100,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.8276126447462,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,1,945.75,0,0,0 +4545,5585,10103,10100,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,4,8.154389418885629,8.133999192974763,0,2,0,-9,6,0,-5,65.78548122331649,0,0,1,38,2,3,1,-9,-9,2019,1,1,5,0,21,24,15,1,0,1,0,23.29860121579447,23.29860121579447,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,3,1,945.75,0,0,0 +4546,5586,10104,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,6.454808944850293,6.249656391839933,3,0,0,0,-9,0,-1093.003970448949,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.106285687170498,0,0,57.43,38.96,6,1,0,0,13,2,1,248,0,0,0 +4547,5587,10105,-9,10107,-9,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-765.7432051776759,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,8,4,1,306.3333333333333,0,0,0 +4547,5587,10106,-9,10107,-9,6,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.376661444554,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,4,1,306.3333333333333,0,0,0 +4547,5587,10107,-9,-9,-9,1,1,0,45,3,0,3,0,1,-9,2,1,0,3,9.108524399999252,9.014022100382073,0,4,0,0,0,-9,0,-1006.350491977291,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,63,58,15,1,1,-9,0,18.23907207338251,18.23907207338251,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.37,40.83,3,4,0,0,8,4,1,306.3333333333333,0,0,0 +4547,5588,10108,-9,-9,10109,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-967.6149918273568,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,2,1,536,0,0,0 +4547,5588,10109,-9,10107,-9,2,1,1,20,2,0,3,1,2,0,7,2,0,4,7.291810719579289,7.037131943728752,0,3,0,0,0,-9,0,-961.2139104840982,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.29,55.45,3,4,0,0,8,2,1,536,0,0,0 +4548,5589,10110,10111,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,4,8.269918678898563,8.539298491561118,0,2,0,-9,6,0,-5,18.89732999159354,0,0,1,41,1,4,1,-9,-9,2019,1,1,11,0,41,38,15,1,2,1,0,14.84058436312939,14.84058436312939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,9,5,1,322,0,0,0 +4548,5589,10111,10110,-9,-9,1,1,1,41,1,1,1,0,1,-9,2,1,0,4,8.470581225236787,8.860679611287694,5.512715290965596,2,0,-9,6,0,5,-5.874869378149794,0,0,0,36,1,4,1,2,1,2019,1,2,9,0,38,43,15,1,1,1,0,20.0285675496708,20.0285675496708,0,0,0,0,0,0,0,1,1,0,5.305412649090564,0,0,0,51,56,6,1,0,0,9,5,1,322,0,0,0 +4548,5589,10112,-9,10110,10111,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.114312565024,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,322,0,0,0 +4549,5590,10113,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,1,1,0,4,9.582189249187582,9.764004590239795,0,3,0,0,0,-9,0,-937.9596571475843,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,25,12,15,1,0,-9,0,74.99878631793358,74.99878631793358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,4,0,0,8,5,1,511,0,0,0 +4550,5591,10114,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-988.9698498891454,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.941708175817372,0,0,3,21.97,21.3,1,1,0,0,4,1,0,170,0,0,0 +4551,5592,10115,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,2,8.05067619225531,8.13277290896856,0,3,0,0,0,-9,0,-1085.534978824989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,11,21,15,1,0,-9,0,41.29955199053352,41.29955199053352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.08,32.93,5,1,0,0,10,4,1,1438,0,0,0 +4551,5593,10116,-9,10115,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.808262026348378,7.534583972006759,0,3,0,0,0,-9,0,-815.2915360106338,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,32,32,15,1,0,-9,1,7.332557308261205,7.332557308261205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,4,1,0,0,10,3,1,519,0,0,0 +4551,5594,10117,-9,10115,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.037441518773194,7.315118840725466,0,3,0,0,0,-9,0,-953.5709088381193,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,21,20,15,1,0,-9,1,7.49293747774907,7.49293747774907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,10,3,1,211,0,0,0 +4552,5595,10118,-9,10119,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-970.7384657185419,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,735.5,0,0,0 +4552,5595,10119,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,4,8.219411780160556,7.913982575609459,4.699348480203664,4,0,0,0,-9,0,-1118.758745513449,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,36,35,15,1,0,-9,0,8.136958739246621,8.136958739246621,0,0,0,0,0,0,0,1,1,0,5.165034068743847,0,0,0,45.32,61.53,6,1,0,0,10,3,1,735.5,0,0,0 +4553,5596,10120,10121,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,4,8.442494772647322,8.553092882566061,0,1,0,-9,2,0,-4,6.121340716593929,0,0,0,54,3,2,3,-9,-9,2019,2,1,9,0,40,39,15,1,1,3,0,11.67156746483401,11.67156746483401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,7,4,0,1529,0,0,0 +4553,5596,10121,10120,-9,-9,1,1,0,54,1,0,0,0,3,-9,3,3,0,2,4.683613957684654,4.561524911788164,0,1,0,-9,2,0,4,-25.28318939211316,0,0,0,50,3,4,1,3,3,2019,3,2,12,2,0,54,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.92,20.85,7,1,1,0,7,4,0,1529,0,0,0 +4554,5597,10122,-9,10124,10123,5,1,0,17,2,0,2,1,3,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-942.8517436834377,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,26,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.67,54.18,3,1,0,1,5,3,1,683.25,0,0,0 +4554,5597,10123,10124,-9,-9,2,1,1,52,1,0,2,0,2,-9,2,1,0,4,8.343459153315367,8.143721225904237,0,2,0,-9,11,0,8,114.5230083806012,0,0,0,44,2,4,1,2,3,2019,1,1,12,0,47,45,15,1,0,1,0,8.42009456598054,8.42009456598054,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,5,3,1,683.25,0,0,0 +4554,5597,10124,10123,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.962235468247185,7.918430022601706,0,2,0,-9,11,0,-8,-78.4315567966768,0,0,1,52,2,4,1,2,3,2019,1,2,18,6,38,38,15,1,6,1,0,10.59180656192519,10.59180656192519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.62,62.36,3,1,0,0,5,3,1,683.25,0,0,0 +4554,5597,10125,-9,10124,10123,4,1,0,17,2,0,2,1,2,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-988.521666511657,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,31,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.15,55.75,3,1,0,1,5,3,1,683.25,0,0,0 +4554,5598,10126,-9,10124,10123,3,1,1,25,2,0,2,0,2,-9,2,1,0,4,7.685703000374264,8.145042520768962,0,3,0,0,0,-9,0,-755.6640752538631,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,38,15,1,0,-9,1,7.347677798075279,7.347677798075279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,5,1,0,0,5,3,1,166,0,0,0 +4555,5599,10127,10128,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,9,0,5,0,0,0,0,53,2,4,1,2,3,2019,1,1,13,1,30,72,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.87,56.13,6,1,0,0,4,1,1,634.5,0,0,0 +4555,5599,10128,10127,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,9,0,-5,0,0,0,0,58,2,4,1,2,1,2019,1,2,11,0,25,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.34,56.95,6,1,0,0,4,1,1,634.5,0,0,0 +4556,5600,10129,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,5,7.725375316295905,7.618716689914431,0,3,0,0,0,-9,0,-1065.41842700587,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,59,49,15,1,0,-9,0,6.131706361569885,6.131706361569885,0,0,0,0,0,0,0,0,0,0,2.712149250686282,0,0,0,58.05,54.52,5,1,0,0,1,4,0,197,0,0,0 +4557,5601,10130,10131,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.44954246021697,8.019605313024464,0,1,0,-9,30,0,1,-14.61112872418786,0,0,0,60,1,3,1,3,3,2019,1,1,16,5,30,30,15,1,5,1,0,9.992448603033125,9.992448603033125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.85,55.83,5,2,0,0,8,5,1,875,0,0,0 +4557,5601,10131,10130,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,3,9.475425487974139,9.37191466727103,6.238147342968118,1,0,-9,28,0,-1,-29.71703031738294,0,0,0,61,2,3,1,2,2,2019,1,2,12,2,35,35,15,1,2,1,0,38.68601435561757,38.68601435561757,0,0,0,0,0,0,0,0,0,0,3.787586176385706,7.112640330953251,0,0,47.32,52.7,6,4,0,0,8,5,1,875,0,0,0 +4557,5602,10132,-9,10130,10131,3,1,1,26,2,0,0,0,2,-9,2,1,0,5,7.889767345636375,7.918562927107189,0,3,0,0,0,-9,0,-949.6620689200953,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,38,38,15,1,2,-9,1,7.076238643848218,7.076238643848218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,4,4,0,1,8,4,1,285,0,0,0 +4558,5603,10133,10134,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,57,0,-8,-64.66419668422824,0,0,0,87,3,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,.6805397804950144,0,0,1,1,0,3.108953478368085,0,13.05701128847075,1,60.78,44.81,7,3,0,0,8,2,1,675,0,0,0 +4558,5603,10134,10133,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,3,0,6.673794507636488,6.576110938413275,1,0,-9,57,0,8,62.29019254462226,0,0,0,79,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.037334453495454,6.317621254728347,0,0,55.51,37.87,7,3,0,0,8,2,1,675,0,0,0 +4558,5604,10135,-9,10133,10134,3,1,1,55,2,0,0,0,2,-9,2,1,0,3,8.227072183071479,8.273797623932074,0,3,0,0,0,-9,0,-919.2197348523204,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,1,13.18593581912532,13.18593581912532,0,0,0,0,0,0,0,1,1,0,4.741358379834418,0,8.191466334821909,3,60.54,42.61,6,3,0,0,8,4,1,100,0,0,0 +4559,5605,10136,10138,-9,-9,2,1,1,34,1,1,3,0,2,-9,2,1,0,4,8.305181828032644,8.226202046875931,0,2,0,-9,6,0,-2,3.261114054017424,0,0,0,36,2,4,3,2,-9,2019,2,1,7,1,43,38,15,1,1,3,0,13.00877070750854,13.00877070750854,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,5,1,0,0,2,3,1,422.2,0,0,0 +4559,5605,10137,-9,10138,10136,3,1,0,16,2,1,3,1,2,-9,7,2,0,4,6.723852742676053,6.45120668836151,0,2,0,0,0,-9,0,-1046.005892346109,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,2,3,1,422.2,0,0,0 +4559,5605,10138,10136,-9,-9,1,1,0,36,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,2,141.5462407631287,0,0,1,34,2,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,39.58,57.61,4,1,0,0,2,3,1,422.2,0,0,0 +4559,5605,10139,-9,10138,10136,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.971647981199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,422.2,0,0,0 +4559,5605,10140,-9,10138,10136,4,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.579791530887,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,422.2,0,0,0 +4560,5606,10141,10142,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,2,7.643413790783552,7.151886188713786,0,1,0,-9,10,0,-8,47.37191317293936,0,0,0,65,3,2,3,3,2,2019,2,1,12,1,30,30,15,1,1,4,0,8.76220363964786,8.76220363964786,0,0,0,0,0,0,0,1,1,0,2.583227974810808,0,126.4172487664448,3,42.74,44.2,3,1,0,0,12,2,1,220,0,0,0 +4560,5606,10142,10141,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,8,-67.48964259475609,0,0,0,57,2,2,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,5.056685700730313,0,0,0,0,1,1,0,0,0,124.9957482438006,3,41.5,39.55,5,1,0,0,12,2,1,220,0,0,0 +4560,5607,10143,-9,10142,10141,3,1,1,41,2,0,0,0,1,-9,2,1,0,4,8.501617173997928,8.603578112092389,0,3,0,0,0,-9,0,-1028.505624136993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,50,15,1,1,-9,1,17.88534792582374,17.88534792582374,0,0,0,0,0,0,0,1,1,0,2.869621086222853,0,0,0,50,57,5,1,0,0,12,5,1,648,0,0,0 +4560,5608,10144,-9,10142,10141,4,1,1,40,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1049.964872547503,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,12,1,1,1020,0,0,0 +4560,5609,10145,-9,10142,10141,5,1,0,24,2,0,0,0,1,-9,2,1,0,4,6.854126019956766,7.114798567203523,0,3,0,0,0,-9,0,-840.720927649931,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,4,0,16,20,15,1,0,-9,1,7.908052067398827,7.908052067398827,0,0,0,0,0,0,0,1,1,0,0,0,0,3,40.58,60.95,7,1,0,0,12,2,1,283,0,0,0 +4561,5610,10146,10147,-9,-9,1,1,0,34,1,1,1,0,1,-9,6,3,0,3,0,5.858079198006187,5.84597829581363,2,0,-9,9,0,-3,72.17575219714688,0,0,1,37,2,5,1,2,2,2019,3,2,24,11,0,40,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.790270506915831,0,0,0,44.94,45.31,4,1,0,0,8,5,1,934.6666666666666,0,0,0 +4561,5610,10147,10146,-9,-9,2,1,1,37,1,1,1,0,2,-9,2,1,0,5,9.090836840863528,9.030259499773365,0,2,0,-9,9,0,3,120.1728972693637,0,0,0,34,1,3,3,-9,-9,2019,2,1,7,0,35,37,15,1,0,3,0,27.00928196128559,27.00928196128559,0,0,0,0,0,0,0,1,1,0,4.657965574111964,0,0,0,53.38,55.33,6,1,0,0,8,5,1,934.6666666666666,0,0,0 +4561,5610,10148,-9,10146,10147,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.4790522463918,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,8,5,1,934.6666666666666,0,0,0 +4562,5611,10149,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,3,8.3805484512564,8.354444394951569,0,1,0,-9,1,0,9,-34.98692995755118,0,0,1,-9,-9,-9,-9,2,2,2019,-9,2,23,11,39,40,15,1,11,-9,0,10.83882488455111,10.83882488455111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.7,59.45,3,1,0,0,4,3,0,725,0,0,0 +4563,5612,10150,10151,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,2,7.602927794065127,7.747722733433691,0,1,0,-9,28,0,-2,-64.19997799189458,0,0,0,52,2,2,1,-9,2,2019,1,2,13,2,24,19,15,1,2,1,0,10.07989099307924,10.07989099307924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.38,31.31,3,1,0,1,5,4,1,438.5,0,0,0 +4563,5612,10151,10150,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,2,7.917997846154142,7.977361263633727,0,1,0,-9,29,0,2,75.33065384615981,0,0,0,50,3,2,1,2,2,2019,1,1,20,8,50,60,15,1,8,1,0,6.621111960194444,6.621111960194444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,55.66,3,1,0,1,5,4,1,438.5,0,0,0 +4563,5613,10152,-9,10150,10151,3,1,1,22,2,0,0,0,1,1,2,1,0,4,7.422299960943657,7.507428227655592,0,3,0,0,0,-9,0,-925.3828781301461,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,20,9,28,0,15,1,9,-9,1,7.004413518562031,7.004413518562031,0,0,0,0,0,0,0,0,0,0,.867713200385228,0,0,0,23.18,49.08,5,1,0,0,5,3,1,411,0,0,0 +4564,5614,10153,10156,-9,-9,1,1,0,47,1,0,2,0,1,-9,1,1,0,3,6.703488031112812,6.856531076989394,0,2,0,-9,8,0,-5,80.65231266546057,0,0,0,52,3,4,1,2,2,2019,1,2,10,0,12,18,15,1,0,1,0,9.414967954847295,9.414967954847295,0,0,0,0,0,0,0,1,1,0,7.488378279854685,0,0,0,43.71,56.91,5,1,0,0,8,2,1,1168.25,0,0,0 +4564,5614,10154,-9,10153,10156,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-994.1772598554127,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,8,2,1,1168.25,0,0,0 +4564,5614,10155,-9,10153,10156,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.923333457416,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,2,1,1168.25,0,0,0 +4564,5614,10156,10153,-9,-9,2,1,1,52,1,0,2,0,3,-9,1,1,0,4,7.476617090659415,7.762796374963366,0,2,0,-9,8,0,5,36.45162038147792,-9,0,0,47,1,3,1,-9,-9,2019,1,1,9,0,38,0,15,1,1,1,0,4.157651074116536,4.157651074116536,0,0,0,0,0,0,0,1,1,0,2.763950187941757,0,0,0,53,54,6,1,0,0,8,2,1,1168.25,0,0,0 +4565,5615,10157,10158,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,7.755068971482689,7.828279500053688,0,1,0,-9,4,0,2,34.16277688089725,0,0,1,30,2,2,1,-9,-9,2019,1,1,11,0,29,40,15,1,2,1,0,9.134207655390487,9.134207655390487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,6,1,0,0,10,4,1,1809,0,0,0 +4565,5615,10158,10157,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,2,7.699464279901068,7.814786884206772,0,1,0,-9,4,0,-2,31.57696464887048,0,0,0,32,1,4,1,2,2,2019,1,2,12,0,36,40,15,1,0,1,0,7.341402815398014,7.341402815398014,0,0,0,0,0,0,0,0,0,0,2.935283156903571,0,0,0,55.2,49.4,6,1,0,0,10,4,1,1809,0,0,0 +4566,5616,10159,-9,10160,-9,1,1,1,25,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-854.0645951222905,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,20,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,1,1,4,1,0,459,0,0,0 +4566,5617,10160,-9,-9,-9,2,1,0,53,3,0,1,0,3,-9,2,1,0,3,7.429720763305868,7.202479137057426,0,4,0,0,0,-9,0,-969.6350853440741,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,30,32,15,1,3,-9,0,5.723964256808617,5.723964256808617,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.48,57.36,3,1,0,1,4,2,0,2650,0,0,0 +4566,5618,10161,-9,10160,-9,3,1,1,18,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-943.2016638976671,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,1,1,4,2,0,7087,0,0,0 +4567,5619,10162,10163,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,5,8.321831148088323,8.757219101550795,0,1,0,-9,6,0,-2,-13.6952462584867,0,0,0,42,1,4,1,2,2,2019,1,2,7,0,60,60,15,1,0,1,0,10.42239101368556,10.42239101368556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,9,5,1,966.5,0,0,0 +4567,5619,10163,10162,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,4,9.079583815010341,9.288328030677903,0,1,0,-9,6,0,2,160.2007693972018,0,0,1,40,2,5,1,2,2,2019,1,1,8,0,50,42,15,1,0,1,0,19.75126830804033,19.75126830804033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,966.5,0,0,0 +4568,5620,10164,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,5.958636094578971,5.412989417767364,3,0,-9,0,1,0,-1053.667374711829,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.437167400179808,0,0,51,46,5,3,0,0,6,2,1,640,0,0,0 +4568,5621,10165,10166,10164,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.916321034959816,8.301725426398955,0,1,0,-9,4,0,2,-143.6985136756845,0,1,0,27,1,4,3,3,2,2019,2,3,7,0,38,38,15,1,0,3,0,13.74754631602511,13.74754631602511,0,0,0,0,0,0,0,1,1,0,7.333101662022794,0,0,3,49.46,56.91,4,3,0,0,6,4,1,363,0,0,0 +4568,5621,10166,10165,-9,-9,3,1,0,27,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,4,0,-2,-69.41153824205837,0,1,1,29,1,4,1,-9,-9,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,57,5,3,0,0,6,4,1,363,0,0,0 +4568,5622,10167,-9,10164,-9,4,1,1,25,2,0,0,0,1,-9,1,1,0,4,7.298931600397258,7.604151036488793,0,3,0,0,0,-9,0,-921.5572933149236,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,25,0,15,1,1,-9,1,6.911176552969517,6.911176552969517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,6,3,1,390,0,0,0 +4569,5623,10168,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,1,1,0,2,7.323511308114808,7.310984154304608,0,3,0,0,0,-9,0,-1005.814449426101,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,40,30,15,1,5,-9,0,4.301767715613368,4.301767715613368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.47,48.15,2,4,0,1,12,3,0,213,0,0,0 +4570,5624,10169,10170,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,5,8.959571954149872,9.156332966686664,0,1,0,-9,12,0,-13,66.41235191388763,0,0,0,64,1,5,1,1,2,2019,1,2,12,3,45,55,15,1,3,1,0,20.48390389089311,20.48390389089311,0,0,0,0,0,0,0,0,0,0,0,0,2.880975948239343,3,57.06,57.76,6,2,0,0,8,5,1,713.5,0,0,0 +4570,5624,10170,10169,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,5,8.867796241035176,9.300601909871064,7.787555014153116,1,0,-9,12,0,13,103.9996593253765,0,0,0,51,1,5,1,-9,-9,2019,1,1,5,0,36,36,15,1,0,1,0,24.79284434866982,24.79284434866982,0,0,0,0,0,0,0,0,0,0,7.059964994906798,8.047102539304705,0,0,62.39,56.71,7,1,0,0,8,5,1,713.5,0,0,0 +4570,5625,10171,-9,10169,10170,3,1,1,26,2,0,0,0,1,-9,2,1,0,2,8.15876237423366,8.244297283851697,0,3,0,0,0,-9,0,-958.0856576336882,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,1,38,0,15,1,1,-9,1,11.00924495049099,11.00924495049099,0,0,0,0,0,0,0,0,0,0,0,0,11.48293439873974,3,56.9,44.55,4,4,0,0,8,4,1,1305,0,0,0 +4571,5626,10172,10173,-9,-9,1,1,1,23,1,1,1,0,2,-9,2,1,0,4,7.753872461695703,7.635975765897083,0,2,0,-9,3,0,0,-2.274690977432667,0,1,0,23,2,3,3,2,2,2019,2,2,6,0,48,40,15,1,0,3,0,5.355574310046497,5.355574310046497,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,5,1,0,0,4,2,0,1073.333333333333,0,0,0 +4571,5626,10173,10172,-9,-9,2,1,0,23,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,3,0,0,.768939573772669,0,1,1,23,2,4,1,-9,-9,2019,3,1,9,1,0,30,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.56,34.17,6,1,0,0,4,2,0,1073.333333333333,0,0,0 +4571,5626,10174,-9,10173,10172,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1012.033262143893,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,2,0,1073.333333333333,0,0,0 +4572,5627,10175,10176,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.892357340384061,8.459328604226279,0,1,0,-9,3,0,-6,4.129015811248745,0,1,0,35,1,4,1,-9,-9,2019,1,1,10,2,40,41,15,1,2,1,0,18.86604311040756,18.86604311040756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.1,51.82,5,1,0,0,10,5,0,455.5,0,0,0 +4572,5627,10176,10175,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,4,8.007452792195613,8.013540917050593,0,1,0,-9,3,0,6,-112.5534913427911,0,0,1,29,1,4,1,2,2,2019,1,2,14,2,40,40,15,1,2,1,0,9.938003575814879,9.938003575814879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,6,1,0,0,10,5,0,455.5,0,0,0 +4573,5628,10177,-9,-9,-9,1,1,1,34,2,0,0,0,3,-9,2,1,0,2,7.541462381997793,7.372792865777741,0,3,0,0,0,-9,0,-1045.874043541095,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,8,37,57,15,1,8,-9,0,4.913322909237089,4.913322909237089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.84,51.47,3,1,0,0,12,3,0,186,0,0,0 +4574,5629,10178,10179,-9,-9,2,1,0,25,1,2,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,3,0,-4,75.09331800399274,0,1,1,29,2,2,1,-9,-9,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.03,40.88,4,1,0,1,13,2,0,1103.25,0,0,0 +4574,5629,10179,10178,-9,-9,1,1,1,29,1,2,2,0,2,-9,2,1,0,2,7.94764329670488,7.999265148374524,0,2,0,-9,3,0,4,-2.671605598975216,0,1,0,25,2,2,3,-9,-9,2019,2,2,23,10,41,37,15,1,10,3,0,6.606796019060036,6.606796019060036,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.95,36.04,6,1,0,0,13,2,0,1103.25,0,0,0 +4574,5629,10180,-9,10178,10179,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.086108030764,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,2,0,1103.25,0,0,0 +4574,5629,10181,-9,10178,10179,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1065.013784232763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,2,0,1103.25,0,0,0 +4575,5630,10182,10183,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,7.801820328962147,7.232639620969232,1,0,-9,50,0,2,-84.07611474301129,0,0,0,70,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.210997985902819,8.019702940992083,0,0,56.29,52.37,6,1,0,0,9,3,1,1418.5,0,0,0 +4575,5630,10183,10182,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.40319488891374,5.871725518906142,1,0,-9,50,0,-2,28.89145984229362,0,0,0,72,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.218027914848372,0,0,57.9,51.84,7,1,0,0,9,3,1,1418.5,0,0,0 +4576,5631,10184,10185,-9,-9,1,1,1,33,1,1,1,0,1,-9,2,1,0,2,8.430301812395703,8.582246971494886,0,2,0,-9,2,0,-1,-85.3937605013594,0,0,0,34,1,4,1,2,2,2019,1,3,16,4,37,42,15,1,4,1,0,17.99126689345451,17.99126689345451,0,0,0,0,0,0,0,1,1,0,2.987106730849801,0,0,0,42.06,48.42,6,1,0,0,11,5,1,768.3333333333334,0,0,0 +4576,5631,10185,10184,-9,-9,3,1,0,34,1,1,1,0,1,-9,2,1,0,4,8.847510112149804,8.629524936485005,0,2,0,-9,2,0,1,41.08589209265311,0,0,1,33,1,2,1,-9,-9,2019,1,1,16,5,47,40,15,1,5,1,0,15.44239011289082,15.44239011289082,0,0,0,0,0,0,0,1,1,0,7.700270511779311,0,0,0,42.44,57.54,6,1,0,0,11,5,1,768.3333333333334,0,0,0 +4576,5631,10186,-9,10185,10184,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-839.6147698371808,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,5,1,768.3333333333334,0,0,0 +4577,5632,10187,10188,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.192035323041542,4.833287778339844,1,0,-9,7,0,-6,68.42176325094371,0,0,0,74,3,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.791611188507803,5.073575702374134,0,0,57.46,35.71,5,1,0,0,2,2,1,605,0,0,0 +4577,5632,10188,10187,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,6,-58.33951351649078,0,0,0,68,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.636721706726682,0,0,0,53,47,6,1,0,0,2,2,1,605,0,0,0 +4578,5633,10189,10190,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,0,99.18061735443682,0,0,0,77,2,3,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.497194459774684,0,0,0,40.89,54.06,6,1,0,0,9,2,1,401.5,0,0,0 +4578,5633,10190,10189,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,6.602662407351701,6.584673875704183,1,0,-9,49,0,0,-48.09712414541416,0,0,0,77,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.771749920300405,4.06440625704502,3,57.9,51.84,6,1,0,0,9,2,1,401.5,0,0,0 +4579,5634,10191,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,4,8.288128735893165,8.689853041643802,6.01144811230702,3,0,0,0,-9,0,-940.2660699104334,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,39,37,15,1,1,-9,0,10.72915354966384,10.72915354966384,0,0,0,0,0,0,0,1,1,0,5.851015191125293,0,0,0,37.17,55.77,4,1,0,0,9,4,1,456,0,0,0 +4580,5635,10192,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,3,0,7.073831775138061,7.160683148302058,3,0,0,0,-9,0,-1059.518661879179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.183639036659137,6.982963626151872,0,0,61.45,29.78,6,1,0,0,10,2,1,195,0,0,0 +4581,5636,10193,10194,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,7.955637370267366,7.765844265614193,0,1,0,-9,10,0,3,-48.48401701454127,0,0,0,43,2,5,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,8.87705327369466,8.87705327369466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,4,1,0,0,13,4,1,745,0,0,0 +4581,5636,10194,10193,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,5,8.140651523494903,8.535232779166662,0,1,0,-9,10,0,-3,-139.0492873935856,0,0,1,46,2,4,1,1,1,2019,1,2,8,0,41,41,15,1,0,1,0,10.72836541260626,10.72836541260626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,745,0,0,0 +4582,5637,10195,-9,-9,-9,1,1,1,32,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-951.7043894315385,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.99,41.13,2,1,0,1,5,1,0,637,0,0,0 +4583,5638,10196,10197,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,1,-25.25655070058017,0,0,0,67,2,4,1,-9,-9,2019,3,1,6,0,0,30,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.02023377494205,0,0,0,54.85,39.83,6,1,0,0,10,3,1,1142,0,0,0 +4583,5638,10197,10196,-9,-9,1,1,0,67,1,0,0,0,2,-9,2,1,0,4,8.201772644605672,7.621807089320107,0,1,0,-9,49,0,-1,51.65749939052557,0,0,0,68,2,2,3,2,-9,2019,2,2,9,0,37,37,15,1,0,4,0,9.687660921025541,9.687660921025541,0,0,0,0,0,0,0,1,1,0,2.339325118698333,0,0,0,46.5,58.26,1,1,0,0,10,3,1,1142,0,0,0 +4584,5639,10198,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,4,0,5.229082026045512,5.040408720968292,3,0,0,0,-9,0,-969.1973881494791,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.239996103889577,5.066033972489135,0,0,64.05,50.24,6,1,0,0,12,2,1,233,0,0,0 +4585,5640,10199,10200,-9,-9,1,1,1,59,1,0,0,0,3,-9,8,3,1,3,0,5.816883061892381,5.679861281266377,1,0,-9,7,0,-15,70.73885151896411,-9,0,0,74,3,2,3,3,1,2019,4,2,10,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.692816378750851,5.899304521936214,0,0,51,49,5,1,0,0,5,2,1,1692,0,0,0 +4585,5640,10200,10199,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,6.683746264394283,6.583116346765121,1,0,-9,7,0,15,5.70390632961866,0,0,0,59,3,3,3,3,3,2019,4,1,15,3,0,0,15,4,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.488635758389569,6.948085302330713,128.1625609534076,1,33.22,41.62,2,1,0,0,5,2,1,1692,0,0,0 +4586,5641,10201,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1117.90030483742,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62.03,41.71,6,1,0,0,13,1,0,193,0,0,0 +4587,5642,10202,10203,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,4,10.2529556948946,10.30567603091768,5.041984414295388,1,0,-9,43,0,-3,-40.38571373066044,0,0,0,66,3,3,3,-9,3,2019,2,2,8,0,24,16,15,1,0,4,0,123.0033852218248,123.0033852218248,0,0,0,0,0,0,0,1,1,0,10.46874141085979,5.325095010913825,0,0,57.16,56.15,6,1,0,0,10,5,1,226,0,0,0 +4587,5642,10203,10202,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,43,0,3,-1.811327783486147,0,0,0,63,1,4,1,2,2,2019,3,1,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8719175761503,0,0,0,54.3,42.49,6,1,0,0,10,5,1,226,0,0,0 +4588,5643,10204,10205,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,2,6.021039523992,6.229585086900522,0,1,0,-9,6,0,2,12.95101532106577,0,0,0,45,2,3,1,3,2,2019,1,1,11,0,12,12,15,1,0,1,0,5.357039426357129,5.357039426357129,0,0,0,0,0,0,0,0,0,0,0,0,8.046897556775672,3,52.81,49.13,4,1,0,1,10,3,1,357.5,0,0,0 +4588,5643,10205,10204,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,3,7.653582873953767,7.679269941518446,1.643905145280637,1,0,-9,24,0,-2,-59.76415057903538,0,0,0,47,2,2,1,2,2,2019,1,2,23,11,37,38,15,1,11,1,0,10.03282324557176,10.03282324557176,0,0,0,0,0,0,0,0,0,0,0,1.492452402970255,0,0,26.78,58.12,3,1,0,1,10,3,1,357.5,0,0,0 +4588,5644,10206,-9,10205,10204,5,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.018035241702632,8.19914732450613,0,3,0,0,0,-9,0,-1051.581292917757,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,46,39,15,1,1,-9,1,7.950022493577015,7.950022493577015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,10,4,1,582,0,0,0 +4588,5645,10207,-9,10205,10204,3,1,0,22,2,0,0,0,2,0,7,2,0,4,4.767422084993954,5.11412922822822,0,3,0,0,0,-9,0,-1089.812328993209,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,8,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.52,59.26,5,1,0,0,10,1,1,2819,0,0,0 +4588,5646,10208,-9,10205,10204,4,1,1,20,2,0,0,0,2,1,2,1,0,3,6.660723594888004,6.321911807624866,0,3,0,0,0,-9,0,-970.7606879109987,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,16,0,15,1,2,-9,1,4.097619558209974,4.097619558209974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.19,46.12,4,1,0,0,10,2,1,273,0,0,0 +4589,5647,10209,10210,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,4,8.81446524484975,8.522035036090609,0,1,0,-9,11,0,0,134.1693768859363,0,0,0,38,1,4,1,2,2,2019,1,2,7,0,36,37,15,1,0,1,0,26.69769745088112,26.69769745088112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.69,53.18,6,1,0,0,10,5,1,799,0,0,0 +4589,5647,10210,10209,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,4,7.94771533003623,8.069990631806519,0,1,0,-9,11,0,0,62.69612684646005,0,0,1,38,2,4,1,2,2,2019,1,1,20,8,40,38,15,1,8,1,0,8.967155494226247,8.967155494226247,0,0,0,0,0,0,0,0,0,0,.4099873482324344,0,0,0,34.13,61.39,6,1,0,0,10,5,1,799,0,0,0 +4590,5648,10211,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1131.235946866541,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,26.74,4,1,0,0,6,1,1,1079,0,0,0 +4591,5649,10212,10213,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,3,8.820095459392769,8.435381896484264,0,1,0,-9,23,0,-2,72.61831246298627,0,0,0,48,2,2,3,2,1,2019,2,2,8,0,55,55,15,1,0,3,0,11.41268382391358,11.41268382391358,0,0,0,0,0,0,0,0,0,0,0,0,0,2,57.33,53.46,5,1,0,0,2,4,1,764.5,0,0,0 +4591,5649,10213,10212,-9,-9,2,1,0,48,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,23,0,2,-48.43827997979987,0,0,0,46,2,3,1,2,2,2019,3,1,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.22,12.92,6,1,0,0,2,4,1,764.5,0,0,0 +4591,5650,10214,-9,10213,10212,3,1,0,20,2,0,0,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-931.6092981492238,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,37,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,50.82,57.78,6,1,0,0,2,1,1,111,0,0,0 +4592,5651,10215,10216,-9,-9,2,1,0,43,1,0,3,0,1,-9,2,1,0,3,7.919279099419627,7.623119596863258,0,2,0,-9,9,0,0,22.09124537791999,0,0,1,43,1,3,1,2,2,2019,1,1,12,0,30,61,15,1,0,1,0,9.951758396379169,9.951758396379169,0,0,0,0,0,0,0,1,1,0,0,0,7.212566684014052,3,46.61,56.93,5,1,0,0,4,3,1,840.2,0,0,0 +4592,5651,10216,10215,-9,-9,1,1,1,43,1,0,3,0,1,-9,1,1,0,3,7.494939270900093,7.81436626407424,0,2,0,-9,9,0,0,-31.28718299093223,0,0,0,43,1,3,1,1,2,2019,1,2,6,0,40,40,15,1,0,1,0,6.173019046379976,6.173019046379976,0,0,0,0,0,0,0,1,1,0,6.437695742688396,0,0,0,54.37,54.8,6,1,0,0,4,3,1,840.2,0,0,0 +4592,5651,10217,-9,10215,10216,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.046973382116,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,4,3,1,840.2,0,0,0 +4592,5651,10218,-9,10215,10216,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.625085731332,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,1,840.2,0,0,0 +4592,5651,10219,-9,10215,10216,5,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-942.1481828761007,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,4,3,1,840.2,0,0,0 +4593,5652,10220,10223,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,2,8.55047637103419,8.45849293322224,0,2,0,-9,8,0,12,-49.7724164962348,0,0,0,30,2,4,1,2,2,2019,1,2,6,0,60,60,15,1,0,1,0,9.341419838196245,9.341419838196245,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,38.98,6,1,0,0,13,4,1,440.75,0,0,0 +4593,5652,10221,-9,10223,10220,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.220067436166,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,440.75,0,0,0 +4593,5652,10222,-9,10223,10220,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.128787459361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,4,1,440.75,0,0,0 +4593,5652,10223,10220,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,4,7.955252391576835,8.236347838317375,0,2,0,-9,8,0,-12,27.35803398582886,0,0,1,42,2,2,1,2,2,2019,1,1,11,0,25,30,15,1,0,1,0,15.20670133411559,15.20670133411559,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,440.75,0,0,0 +4594,5653,10224,10225,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,5,4.93891643934211,4.629120789540507,0,1,0,-9,10,0,-2,-66.57665284919909,0,0,0,61,1,3,1,2,2,2019,1,2,10,0,3,6,15,1,0,1,0,4.642218930364136,4.642218930364136,0,0,0,0,0,0,0,0,0,0,6.729052286904139,0,0,0,54.69,57.47,7,1,0,0,13,5,1,250,0,0,0 +4594,5653,10225,10224,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,3,8.355101561655994,9.04805473670616,7.945251363983606,1,0,-9,10,0,2,7.812760927406829,0,0,0,59,2,5,1,2,2,2019,1,1,15,3,33,24,15,1,3,1,0,11.97167421407359,11.97167421407359,0,0,0,0,0,0,0,0,0,0,0,8.371498471749746,0,0,38.9,45.4,5,1,0,0,13,5,1,250,0,0,0 +4595,5654,10226,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,4,9.722561902394713,9.661675831805592,0,3,0,0,0,-9,0,-1001.905112536549,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,34,40,15,1,0,-9,0,46.92485176770982,46.92485176770982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,2240,0,0,0 +4596,5655,10227,-9,10230,10229,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.734131230403,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,431.25,0,0,0 +4596,5655,10228,-9,10230,10229,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.416611154839,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,4,3,1,431.25,0,0,0 +4596,5655,10229,10230,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,1,7.582103104829401,8.004966602601606,0,2,0,-9,6,0,5,.9534210219324328,0,0,0,38,1,5,2,3,3,2019,2,2,21,7,39,39,15,1,7,2,0,5.535059989593853,5.535059989593853,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.71,18.35,3,2,0,0,4,3,1,431.25,0,0,0 +4596,5655,10230,10229,-9,-9,2,1,0,38,1,0,2,0,1,-9,7,2,0,5,6.652881099255934,6.842884789397342,0,2,0,-9,6,0,-5,-31.58993482386263,1,0,1,43,2,1,1,-9,-9,2019,3,1,6,0,12,32,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.0547729483861414,1,59.43,58.05,6,1,0,0,4,3,1,431.25,0,0,0 +4597,5656,10231,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,3,0,7.389594600025494,7.35322825046848,3,0,0,0,-9,0,-985.3725416057248,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.840162356107743,6.899260883247361,2.189901158246869,3,57.25,30.1,7,1,0,0,1,3,1,1251,0,0,0 +4598,5657,10232,10233,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.92087805550581,6.155585115822751,1,0,-9,9,0,-4,19.39103197130238,0,0,0,76,3,4,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.941368520356697,0,0,48.74,51.67,5,1,0,0,12,2,1,500.5,0,0,0 +4598,5657,10233,10232,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,6.514674708863019,6.673296098145459,1,0,-9,9,0,4,-42.00847678093348,0,0,0,72,3,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.68180795971757,6.244665957539203,0,0,63.8,46.31,6,1,0,0,12,2,1,500.5,0,0,0 +4599,5658,10234,10235,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,8.018958365151217,8.157265908013215,1,0,-9,49,0,0,111.3223779840516,0,0,0,76,1,2,3,1,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.452377550230451,7.67632381327566,0,0,60.3,46.58,6,1,0,0,8,4,1,948,0,0,0 +4599,5658,10235,10234,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,7.886752660239917,8.000897811018771,1,0,-9,47,0,0,-141.0416345721218,0,0,0,76,1,3,3,2,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.514305166336394,7.723518923430583,0,0,52.4,31.65,5,1,0,0,8,4,1,948,0,0,0 +4600,5659,10236,10237,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,6.974705577230915,6.72590082269894,1,0,-9,58,0,2,-21.35077932038638,0,0,0,77,2,1,3,-9,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,43.81622322544761,16.36267092298658,0,15.86720462704979,0,1,1,0,0,7.133611138714888,55.19333130155564,1,37.39,22.42,5,1,0,0,12,2,1,1052.5,0,0,0 +4600,5659,10237,10236,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,1,0,5.986148057358789,6.066618945031695,1,0,-9,58,0,-2,-55.57772559848041,0,0,0,79,2,2,3,3,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,30.11262367263264,7.187944590408944,0,0,0,1,1,0,4.441480705639376,5.831747076820134,13.74208905748359,2,47.27,15.44,5,1,0,0,12,2,1,1052.5,0,0,0 +4601,5660,10238,10239,-9,-9,2,1,0,60,1,0,0,0,2,-9,1,1,0,1,5.910367409929076,7.271156059254669,7.398452537010705,1,0,-9,6,0,5,-75.49871375024229,0,0,0,55,2,1,3,-9,-9,2019,2,1,11,1,36,0,15,1,1,3,0,1.050407307991277,1.050407307991277,0,0,0,0,0,0,0,1,1,0,0,7.344685029321444,0,0,57.89,12.77,6,1,0,0,1,3,1,970,0,0,0 +4601,5660,10239,10238,-9,-9,1,1,1,55,1,0,0,0,2,-9,8,3,1,1,0,6.563916280627756,6.181509460483361,1,0,-9,6,0,-5,55.23100758791556,0,0,0,60,2,1,1,-9,-9,2019,3,2,13,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.280715082455286,0,0,54.1,24.46,6,1,0,0,1,3,1,970,0,0,0 +4602,5661,10240,10241,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-11,0,0,0,0,75,2,2,3,3,3,2019,4,1,19,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.82151887530413,1,50.24,24.25,5,1,0,0,12,1,0,567,0,0,0 +4602,5661,10241,10240,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,10,0,11,0,0,0,0,64,2,2,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.4,28.06,5,1,0,0,12,1,0,567,0,0,0 +4603,5662,10242,-9,10245,10244,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-998.1680844349672,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,1535.75,0,0,0 +4603,5662,10243,-9,10245,10244,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.941481102314,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,5,1,1535.75,0,0,0 +4603,5662,10244,10245,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,4,8.973707634898942,9.142684301324653,0,2,0,-9,13,0,3,126.0303016905937,0,0,0,36,1,4,1,2,2,2019,1,2,10,0,60,70,15,1,0,1,0,13.79846820404859,13.79846820404859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,5,1,0,0,7,5,1,1535.75,0,0,0 +4603,5662,10245,10244,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.247301266299168,8.661904730927553,0,2,0,-9,14,0,-3,-47.37904413296588,0,0,1,39,1,4,1,2,3,2019,1,1,10,0,28,28,15,1,0,1,0,17.34432667029953,17.34432667029953,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,56.66,6,1,0,0,7,5,1,1535.75,0,0,0 +4604,5663,10246,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,1,1,0,4,9.499688384532151,9.399296800913302,7.744573141821224,3,0,0,0,-9,0,-1222.312978833038,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,10,10,15,1,0,-9,0,181.2331114186984,181.2331114186984,0,0,0,0,0,0,0,0,0,0,0,7.550884118322715,0,3,57.16,56.15,6,1,0,0,6,5,1,953,0,0,0 +4605,5664,10247,10248,-9,-9,2,1,1,59,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,9,0,7,0,0,0,0,52,2,2,3,2,2,2019,4,1,27,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.57,24.42,4,1,0,0,9,1,0,382.5,0,0,0 +4605,5664,10248,10247,-9,-9,1,1,0,52,1,0,0,0,2,-9,97,3,0,2,0,0,0,1,0,-9,9,0,-7,0,0,0,0,59,1,1,3,2,2,2019,4,2,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,129.7848918795873,2,35.56,33.98,2,1,0,0,9,1,0,382.5,0,0,0 +4606,5665,10249,-9,10250,10251,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.061172165126,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,4,5,1,435.6666666666667,0,0,0 +4606,5665,10250,10251,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,3,8.926915855006502,8.929698448770647,0,2,0,-9,21,0,-3,58.85342057229598,0,0,0,58,1,4,1,2,3,2019,1,2,7,0,33,30,15,1,0,1,0,31.97479536075152,31.97479536075152,0,0,0,0,0,0,0,1,1,0,4.771846112663124,0,0,0,50.63,50.99,6,1,0,0,4,5,1,435.6666666666667,0,0,0 +4606,5665,10251,10250,-9,-9,2,1,1,58,1,0,1,0,1,-9,2,1,0,4,8.734286443527347,8.659056994078748,0,2,0,-9,20,0,3,238.4809668836499,0,0,0,55,1,3,1,2,3,2019,1,1,11,1,39,37,15,1,1,1,0,15.19408109617856,15.19408109617856,0,0,0,0,0,0,0,1,1,0,4.483251527738353,0,0,0,43.48,60.97,5,1,0,0,4,5,1,435.6666666666667,0,0,0 +4607,5666,10252,10253,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,7.893357511093384,8.202147022520336,0,1,0,-9,22,0,7,-36.79612469100613,0,0,0,52,1,3,3,1,3,2019,2,1,9,0,60,60,15,1,0,3,0,4.544073877164736,4.544073877164736,0,0,0,0,0,0,0,0,0,0,6.866472036265836,0,0,0,54.77,55.87,5,1,0,0,11,3,1,563,0,0,0 +4607,5666,10253,10252,-9,-9,1,1,0,52,1,0,0,0,1,-9,8,3,1,3,0,0,0,1,0,-9,22,0,-7,-122.8735846284371,0,0,0,59,2,4,1,3,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.726981672300225,0,4.880165107798568,3,53.22,41.99,6,1,0,0,11,3,1,563,0,0,0 +4608,5667,10254,10255,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,2,0,5.876534563680274,6.371769914997328,1,0,-9,10,0,10,-128.1016087952684,0,0,0,71,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,5.551308204730491,0,0,0,0,1,1,0,4.888395174174796,5.786549910688642,0,0,60.09,29.51,6,1,0,0,4,2,1,931,0,0,0 +4608,5667,10255,10254,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,6.727283581209144,7.154721587967205,1,0,-9,10,0,-10,-64.03131645169012,0,0,0,81,3,2,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.041577655487535,7.01626808451732,6.514834521714368,1,57.16,56.15,6,1,0,0,4,2,1,931,0,0,0 +4609,5668,10256,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,3,0,7.523512723518318,7.724861240741156,3,0,0,0,-9,0,-1070.525111693268,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.564350348966759,7.258052962966259,0,0,61.85,47.26,7,1,0,0,11,3,1,294,0,0,0 +4610,5669,10257,10258,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,3,7.744309027977494,7.652882555328467,0,1,0,-9,19,0,-1,-67.03029928299371,0,0,1,44,1,4,1,2,2,2019,1,1,7,0,19,18,15,1,0,1,0,10.57921835944544,10.57921835944544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.53,51.55,6,1,0,0,12,5,1,1590.5,0,0,0 +4610,5669,10258,10257,-9,-9,1,1,1,44,1,0,0,0,1,-9,2,1,0,4,9.394156985678487,9.077783346905049,0,1,0,-9,18,0,1,-26.27833330005762,0,0,0,43,1,3,1,2,-9,2019,1,2,6,0,51,56,15,1,0,1,0,30.58068180010327,30.58068180010327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,12,5,1,1590.5,0,0,0 +4610,5670,10259,-9,10257,10258,3,1,1,19,2,0,0,0,2,-9,2,1,0,4,8.091743161464723,7.810457917192714,0,3,0,0,0,-9,0,-1016.549432920494,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,1,48,20,15,1,1,-9,1,6.035481834400092,6.035481834400092,0,0,0,0,0,0,0,0,0,0,3.302396491323029,0,0,0,54.2,57.49,6,1,0,0,12,4,1,944,0,0,0 +4610,5671,10260,-9,10257,10258,4,1,0,23,2,0,0,1,1,0,7,2,0,3,7.765314324548701,7.435587489829646,0,3,0,0,0,-9,0,-1029.399406298945,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,3,35,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,5,1,0,0,12,3,1,295,0,0,0 +4611,5672,10261,10262,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,4,7.522344557395161,7.71804500250462,2.627114816762586,1,0,-9,28,0,-4,55.90367463087612,0,0,0,66,2,1,3,2,2,2019,2,2,10,0,30,30,15,1,0,4,0,6.087660344972062,6.087660344972062,0,0,0,0,0,0,0,1,1,0,0,2.65868983488273,0,0,55.9,52.64,6,1,0,0,4,3,0,1619,0,0,0 +4611,5672,10262,10261,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,2,0,4,-172.1109542581215,0,0,0,62,2,4,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,44.58,19.11,6,1,0,0,4,3,0,1619,0,0,0 +4612,5673,10263,10264,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,5,8.525582111601876,8.773382205416164,0,2,0,-9,10,0,1,9.005494774654718,-9,0,0,44,2,4,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,14.17699613294198,14.17699613294198,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,5,1,0,0,4,4,1,1483,0,0,0 +4612,5673,10264,10263,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.986722398596072,8.097611664071456,0,2,0,-9,10,0,-1,-91.22691511420561,0,0,1,45,2,5,1,3,3,2019,1,2,7,0,30,26,15,1,0,1,0,9.302660178334976,9.302660178334976,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,4,4,1,1483,0,0,0 +4612,5673,10265,-9,10264,10263,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.4423583389754,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,1483,0,0,0 +4613,5674,10266,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1044.298956715256,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,6,1,0,0,6,1,1,1616,0,0,0 +4614,5675,10267,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,0,3.94688685992941,4.071833377111535,3,0,0,0,-9,0,-1090.306021790015,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.321183593668684,0,0,50.26,16.7,6,1,0,0,2,2,0,702,0,0,0 +4615,5676,10268,10269,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,4,8.232004632515077,8.071041436690942,0,2,0,-9,10,0,8,-12.31871084287488,0,0,0,47,2,4,1,-9,-9,2019,1,2,14,3,50,60,15,1,3,1,0,11.39132636573302,11.39132636573302,0,0,0,0,0,0,0,1,1,0,1.830728602080099,0,0,0,44.68,48.34,5,1,0,0,2,4,1,517.6666666666666,0,0,0 +4615,5676,10269,10268,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,4,7.709289277204578,7.563151543639739,0,2,0,-9,10,0,-8,-17.09087318629902,0,0,0,55,2,4,1,-9,-9,2019,1,1,11,2,20,20,15,1,2,1,0,8.927980778587969,8.927980778587969,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,47.07,5,1,0,0,2,4,1,517.6666666666666,0,0,0 +4615,5676,10270,-9,10269,10268,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.073529126268,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,517.6666666666666,0,0,0 +4616,5677,10271,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,4,0,7.090060905129784,7.13748545032565,3,0,0,0,-9,0,-1061.695717248643,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.99707127033671,6.87486545845667,2.185238372149259,3,56.64,29.75,6,1,0,0,8,2,1,1363,0,0,0 +4617,5678,10272,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,4,6.844712386149819,7.414399659126975,6.043558546664828,3,0,-9,0,1,0,-1028.31075513788,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,15,15,15,1,1,-9,0,8.460071483909738,8.460071483909738,0,0,0,0,0,0,0,1,1,0,5.812296172236957,6.381816496929734,0,0,50.1,46.94,6,1,0,0,5,3,1,358,0,0,0 +4618,5679,10273,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,4,0,7.026400848571726,6.639255460025849,3,0,0,0,-9,0,-974.9978413071519,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.934639428171754,7.173068652144853,0,0,60.12,54.8,7,1,0,0,6,2,1,1553,0,0,0 +4619,5680,10274,10275,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,7.949490251280741,8.431638965622064,0,1,0,-9,29,0,2,51.05966009945882,0,0,0,51,1,3,1,2,2,2019,1,1,9,0,60,60,15,1,0,1,0,6.069925161316044,6.069925161316044,0,0,0,0,0,0,0,0,0,0,7.19203605043066,0,.9863706635921177,3,59.29,49.68,6,1,0,0,4,5,1,250.5,0,0,0 +4619,5680,10275,10274,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,3,8.708781484795853,8.315208395410924,0,1,0,-9,29,0,-2,153.8558203257966,0,0,0,53,2,4,1,2,2,2019,1,2,9,0,24,24,15,1,0,1,0,28.29482968163365,28.29482968163365,0,0,0,0,0,0,0,0,0,0,3.709709968832116,0,0,3,58.89,48.6,6,1,0,0,4,5,1,250.5,0,0,0 +4619,5681,10276,-9,10275,10274,3,1,1,21,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1132.865615742752,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,20,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.946050176007937,0,0,0,35.77,59.52,6,1,0,0,4,1,1,417,0,0,0 +4620,5682,10277,-9,10280,10279,2,1,0,26,2,0,1,0,1,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-993.0448351298152,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,40,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.46246754029105,3,47.59,33.49,6,3,0,0,8,1,0,253,0,0,0 +4620,5683,10278,-9,10280,10279,5,1,0,18,2,0,1,0,2,1,11,3,0,4,7.59726346209682,7.730619248767534,0,3,0,0,0,-9,0,-1168.940572216368,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,8,2,0,694,0,0,0 +4620,5684,10279,10280,-9,-9,6,1,1,58,1,0,1,0,3,-9,3,3,0,1,0,0,0,2,0,-9,5,0,14,82.85439125089411,0,0,0,44,2,2,1,-9,-9,2019,3,1,22,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.01,20.17,3,3,1,1,8,2,0,364,0,0,0 +4620,5684,10280,10279,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,2,7.345078561844395,7.137568496116683,0,2,0,-9,5,0,-14,-119.0117127707873,0,0,1,58,3,1,3,-9,3,2019,2,6,20,7,40,21,15,1,7,3,0,4.037518343056114,4.037518343056114,0,0,0,0,0,0,0,1,1,0,0,0,16.95853389451241,1,42,40,5,3,0,1,8,2,0,364,0,0,0 +4621,5685,10281,-9,10288,10282,6,1,0,15,2,0,7,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-995.9123603859897,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,54,5,1,0,0,12,2,0,885.875,0,0,0 +4621,5685,10282,10288,-9,-9,2,1,1,35,1,0,7,0,2,-9,2,1,0,3,8.008056820353261,8.023949623262309,0,2,0,-9,10,0,-8,-54.66849496465492,0,0,0,43,2,3,3,3,2,2019,2,1,8,0,50,50,15,1,0,3,0,10.58760479291725,10.58760479291725,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.64,50.48,6,1,0,1,12,2,0,885.875,0,0,0 +4621,5685,10283,-9,10288,10282,8,1,0,9,2,0,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-808.1461753403256,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,12,2,0,885.875,0,0,0 +4621,5685,10284,-9,10288,10282,9,1,1,7,2,0,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.260492150725,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,12,2,0,885.875,0,0,0 +4621,5685,10285,-9,10288,10282,5,1,0,15,2,0,7,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1096.013345583358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,54,5,1,0,0,12,2,0,885.875,0,0,0 +4621,5685,10286,-9,10288,10282,7,1,0,10,2,0,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.453999034843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,12,2,0,885.875,0,0,0 +4621,5685,10287,-9,10288,10282,10,1,0,5,2,0,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.985491558645,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,12,2,0,885.875,0,0,0 +4621,5685,10288,10282,-9,-9,1,1,0,43,1,0,7,0,2,-9,6,3,0,3,0,0,0,2,0,-9,10,0,8,71.79552465293462,0,0,1,35,2,3,1,3,3,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,4.847032633645612,3,38.27,52.67,3,1,0,0,12,2,0,885.875,0,0,0 +4621,5686,10289,-9,10288,10282,3,1,1,25,2,0,7,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1009.47476321816,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,35,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.19,60.95,3,1,1,1,12,1,0,787,0,0,0 +4622,5687,10290,10291,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,4,8.02539981637327,8.185491838356826,0,1,0,-9,3,0,2,35.68791534203261,0,0,0,54,3,2,3,3,2,2019,2,1,9,0,40,38,15,1,0,3,0,7.97413979783839,7.97413979783839,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,4,1,0,0,11,3,0,3861,0,0,0 +4622,5687,10291,10290,-9,-9,1,1,0,54,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,3,0,-2,-19.28307257456797,0,0,0,56,3,4,1,3,2,2019,3,2,19,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.31307562883398,3,19.4,34.45,4,1,0,0,11,3,0,3861,0,0,0 +4622,5688,10292,-9,10291,10290,3,1,0,29,2,0,0,0,1,-9,2,1,0,2,6.857804342212883,6.761443222856821,0,3,0,0,0,-9,0,-977.4511661508704,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,36,0,15,1,4,-9,1,3.129814124329921,3.129814124329921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.98,51.86,3,1,0,0,11,2,0,1037,0,0,0 +4622,5689,10293,-9,10291,10290,4,1,0,24,2,0,0,0,2,-9,2,1,0,3,7.905967284926218,7.779389210556856,0,3,0,0,0,-9,0,-1016.276520915114,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,50,40,15,1,0,-9,1,7.009582756070893,7.009582756070893,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,5,1,0,0,11,4,0,2189,0,0,0 +4623,5690,10294,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,6.207450800706969,5.88576376001377,3,0,0,0,-9,0,-955.4631415046932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.108285274310062,0,0,35.2,48.71,4,1,0,0,9,2,1,203,0,0,0 +4624,5691,10295,10296,-9,-9,2,1,1,37,1,0,1,0,2,-9,2,1,0,4,8.879338443434003,8.729521419856736,0,2,0,-9,6,0,7,45.43420779276199,-9,0,0,30,2,4,1,-9,-9,2019,1,1,10,0,48,0,15,1,1,1,0,16.07500625426087,16.07500625426087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,4,0,533,0,0,0 +4624,5691,10296,10295,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,4,6.851714065746365,6.904440063047333,0,2,0,-9,6,0,-7,-207.0775680744241,0,0,1,37,2,4,1,2,2,2019,1,2,11,0,24,20,15,1,2,1,0,3.724227201817771,3.724227201817771,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,1,7,4,0,533,0,0,0 +4624,5691,10297,-9,10296,10295,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.875206438892,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,0,533,0,0,0 +4625,5692,10298,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,4,9.189351140558209,9.36915383026331,0,3,0,0,0,-9,0,-1015.359069741586,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,45,50,15,1,2,-9,0,25.45503798580542,25.45503798580542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,9,5,1,370,0,0,0 +4625,5693,10299,-9,10298,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.713494055181817,7.457123836950928,0,3,0,0,0,-9,0,-987.8910255314871,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,37,0,15,1,1,-9,1,6.80999058921555,6.80999058921555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.49,61.79,6,1,0,0,9,3,1,1576,0,0,0 +4626,5694,10300,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,3,9.63696143455468,9.773324349076173,0,3,0,0,0,-9,0,-1040.036423869858,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,40,15,1,1,-9,0,44.16278997915162,44.16278997915162,0,0,0,0,0,0,0,0,0,0,7.292712906427996,0,0,0,41.23,59.35,3,1,0,0,13,5,1,450,0,0,0 +4627,5695,10301,10302,-9,-9,2,1,0,63,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,34,0,2,-39.59122047694976,0,0,0,61,1,4,3,3,2,2019,4,1,23,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.118016789264426,0,0,0,37.5,54.65,5,3,0,0,9,5,1,462.5,0,0,0 +4627,5695,10302,10301,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,4,7.748763349480173,9.372925834022261,8.954422954251905,1,0,-9,35,0,-2,-108.4427565300641,0,0,0,63,1,3,3,2,2,2019,4,2,8,1,22,18,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,9.765269858453589,8.932145973637954,0,0,46.98,59.35,6,1,0,0,9,5,1,462.5,0,0,0 +4628,5696,10303,10304,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,4,9.298172824850193,9.046369930236315,0,1,0,-9,15,0,-6,-94.34620129355609,0,0,1,44,1,4,1,2,1,2019,1,1,9,1,55,55,15,1,1,1,0,23.67749746276424,23.67749746276424,0,0,0,0,0,0,0,0,0,0,2.021272434705445,0,0,0,41.62,60.42,6,1,0,0,10,5,1,657,0,0,0 +4628,5696,10304,10303,-9,-9,1,1,1,44,1,0,0,0,1,-9,2,1,0,4,8.400754167158107,8.230495896928328,0,1,0,-9,15,0,6,-9.85674820633494,0,0,0,38,1,4,1,2,1,2019,1,2,9,0,55,60,15,1,0,1,0,12.80135541418305,12.80135541418305,0,0,0,0,0,0,0,0,0,0,.5622991857820234,0,0,0,57.16,56.15,6,1,0,0,10,5,1,657,0,0,0 +4629,5697,10305,10306,-9,-9,2,1,1,41,1,0,0,0,1,-9,2,1,0,3,8.856935455125383,8.679608817467971,0,1,0,-9,18,0,-7,114.6852763970801,0,0,0,48,1,3,1,1,1,2019,1,1,8,0,57,57,15,1,0,1,0,16.77376715895812,16.77376715895812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,10,5,1,1036.5,0,0,0 +4629,5697,10306,10305,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,3,8.580141065993868,8.405891293779471,0,1,0,-9,18,0,7,-120.2798208310375,0,0,0,41,1,3,1,2,1,2019,1,2,15,4,43,30,15,1,4,1,0,14.7686084878124,14.7686084878124,0,0,0,0,0,0,0,0,0,0,4.301440080667956,0,0,0,49.69,52.99,5,3,0,0,10,5,1,1036.5,0,0,0 +4630,5698,10307,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,2,7.960806831281677,7.939237896802762,0,3,0,-9,0,0,0,-961.0163639667441,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,59,42,15,1,11,-9,0,5.667817928882192,5.667817928882192,0,0,0,0,0,0,0,0,0,0,0,0,11.1929241610795,3,21.01,51.73,1,1,0,0,7,4,0,1495,0,0,0 +4631,5699,10308,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,4.952768504991654,5.184837632065803,3,0,0,0,-9,0,-1021.701750733669,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.622501737562694,0,0,50.52,42.05,7,1,0,0,11,2,0,858,0,0,0 +4632,5700,10309,10310,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.197113439280926,7.216347658249362,1,0,-9,57,0,0,-88.76848106317222,0,0,0,76,2,4,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.942224235318385,7.067015286528894,0,0,63.66,38.43,7,1,0,0,7,3,1,809.5,0,0,0 +4632,5700,10310,10309,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,7.204097642346532,7.447775114709257,1,0,-9,57,0,0,56.97563477993153,0,0,0,76,2,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.67419301750344,7.655453026748387,0,0,51.83,57.2,7,1,0,0,7,3,1,809.5,0,0,0 +4633,5701,10311,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,4,7.892852765372883,7.754093092846409,0,3,0,0,0,-9,0,-1032.313279709243,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,40,15,1,0,-9,0,7.074606068293934,7.074606068293934,0,0,0,0,0,0,0,0,0,0,.3332130542193278,0,0,0,45.01,57.46,2,4,0,0,6,3,1,35,0,0,0 +4634,5702,10312,10313,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,3,8.733872807614599,8.603144036563771,0,1,0,-9,26,0,4,12.5587483781237,0,0,0,43,3,4,3,3,3,2019,2,1,16,4,48,45,15,1,4,3,0,15.23797975823222,15.23797975823222,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.31,46.76,3,1,0,1,6,4,1,2372,0,0,0 +4634,5702,10313,10312,-9,-9,1,1,0,43,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,26,0,-4,-30.09821532079209,0,0,1,47,3,3,1,3,2,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,3,0,1,6,4,1,2372,0,0,0 +4634,5703,10314,-9,10313,10312,4,1,1,22,2,0,0,1,2,0,7,2,0,4,6.565250662188226,6.585228305494356,0,3,0,0,0,-9,0,-888.7204759749909,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,6,2,1,928,0,0,0 +4635,5704,10315,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,2,1,0,4,7.962942375719974,8.33795029047509,0,3,0,0,0,-9,0,-915.4180925636293,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,59,74,15,1,0,-9,0,6.327565611287834,6.327565611287834,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,4,0,2159,0,0,0 +4636,5705,10316,10317,-9,-9,2,1,1,54,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-3,20.40617776233087,0,0,0,57,2,3,3,-9,-9,2019,4,1,12,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.459613029425691,0,106.659314639554,1,30.75,36.7,4,1,0,0,1,2,1,1145.5,0,0,0 +4636,5705,10317,10316,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,3,0,6.366081813775343,6.78632700744144,1,0,-9,7,0,3,-15.87832250736919,0,0,0,54,3,1,3,3,3,2019,4,2,10,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.551930074678633,113.4545520958634,1,40.6,53.06,7,1,0,0,1,2,1,1145.5,0,0,0 +4637,5706,10318,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,2,7.450271502707404,7.819134106472533,5.368498768832125,3,0,0,0,-9,0,-1117.173610044066,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,15,20,15,4,0,-9,0,0,0,1,0,0,0,0,6.062616089007545,0,1,1,0,5.537897556075519,5.173336981713166,0,0,50.53,31.32,5,1,0,0,7,3,1,846,0,0,0 +4638,5707,10319,10320,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.531932028779028,7.674168721362703,1,0,-9,7,0,-1,-12.72564816993098,0,0,0,69,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.816593977872293,7.609503388126423,0,0,64.55,36.47,6,1,0,0,11,2,1,221,0,0,0 +4638,5707,10320,10319,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,1,-35.61554431548191,0,0,0,68,2,3,3,3,3,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.857137947451662,0,0,0,36.78,41.13,4,1,0,0,11,2,1,221,0,0,0 +4639,5708,10321,10322,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.644876517825931,7.839795789410951,0,1,0,-9,33,0,-4,-42.1429858360929,0,0,0,59,3,3,1,2,2,2019,1,1,8,1,28,37,15,1,1,1,0,8.889072089738162,8.889072089738162,0,0,0,0,0,0,0,0,0,0,0,0,2.266044168910916,3,50.65,60.47,6,1,0,0,10,4,0,650,0,0,0 +4639,5708,10322,10321,-9,-9,1,1,1,59,1,0,0,0,3,-9,1,1,0,3,7.745328843037686,7.63020868340452,0,1,0,-9,9,0,4,54.27634238778161,0,0,0,55,2,4,1,2,2,2019,1,2,6,0,45,0,15,1,0,1,0,4.964644653033188,4.964644653033188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,6,1,0,0,10,4,0,650,0,0,0 +4640,5709,10323,-9,10327,10324,4,1,0,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.867444560899,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,4,5,1,1019.666666666667,0,0,0 +4640,5709,10324,10327,-9,-9,2,1,1,39,1,1,4,0,2,-9,2,1,0,5,8.377215092355206,8.590793248369927,0,2,0,-9,8,0,-1,-65.09077262943863,0,0,0,40,1,5,1,-9,-9,2019,1,1,11,0,36,24,15,1,0,1,0,16.87923341850296,16.87923341850296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,5,1,0,0,4,5,1,1019.666666666667,0,0,0 +4640,5709,10325,-9,10327,10324,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.49594078745,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,4,5,1,1019.666666666667,0,0,0 +4640,5709,10326,-9,10327,10324,5,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.193341397961,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,4,5,1,1019.666666666667,0,0,0 +4640,5709,10327,10324,-9,-9,1,1,0,40,1,1,4,0,1,-9,2,1,0,5,8.861701196982846,9.05374998874357,0,2,0,-9,17,0,1,-50.54169158774179,0,0,1,39,2,5,1,3,3,2019,1,2,8,0,82,50,15,1,0,1,0,14.03645474747176,14.03645474747176,0,0,0,0,0,0,0,0,0,0,.5474618036135241,0,0,0,57.06,57.76,5,1,0,0,4,5,1,1019.666666666667,0,0,0 +4640,5709,10328,-9,10327,10324,3,1,0,10,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.1029798400908,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,4,5,1,1019.666666666667,0,0,0 +4641,5710,10329,10330,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,7.225662093329452,7.166675571868955,1,0,-9,7,0,1,53.23245812148638,0,0,0,63,1,4,3,2,1,2019,4,2,4,0,0,26,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.229036196810823,7.318727359455813,0,0,55.59,48.73,6,1,0,0,12,2,1,653,0,0,0 +4641,5710,10330,10329,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-1,-96.95227115844543,0,0,0,64,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,51.1,6,1,0,0,12,2,1,653,0,0,0 +4642,5711,10331,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1030.359100077708,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,61.57,4,1,0,1,11,1,0,532,0,0,0 +4643,5712,10332,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1086.417250179822,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.9,47.64,4,1,0,0,5,1,0,189,0,0,0 +4644,5713,10333,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,4,0,8.146792921171484,7.872790053389553,3,0,0,0,-9,0,-921.3551139396536,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.26680259793018,7.861958170410923,0,0,47.05,56.66,5,1,0,0,5,4,1,198,0,0,0 +4645,5714,10334,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,1,1,0,3,0,6.077246680641723,6.061128922308327,3,0,0,0,-9,0,-1046.911050845771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,50,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.05279131579382,0,0,45.34,35.67,6,1,0,0,11,2,0,1593,0,0,0 +4646,5715,10335,10336,-9,-9,2,1,0,31,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,5,-11.08089780000587,0,0,1,26,2,5,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,60.05,5,1,0,0,10,3,0,425.6,0,0,0 +4646,5715,10336,10335,-9,-9,1,1,1,26,1,0,3,0,2,-9,2,1,0,5,8.240253048716562,8.098745601458335,0,2,0,-9,6,0,-5,-110.114330578871,0,1,0,31,3,3,3,-9,-9,2019,2,2,6,0,48,44,15,1,0,3,0,10.60788495534782,10.60788495534782,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,10,3,0,425.6,0,0,0 +4646,5715,10337,-9,10335,10336,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.310327884888,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,0,425.6,0,0,0 +4646,5715,10338,-9,10335,10336,3,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.2612855917115,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,3,0,425.6,0,0,0 +4646,5715,10339,-9,10335,10336,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.573597702143,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,0,425.6,0,0,0 +4647,5716,10340,10341,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,2,8.956312438201607,8.651417729882304,6.629973846089106,1,0,-9,19,0,8,-76.69457747050082,0,0,0,45,2,4,1,2,2,2019,1,1,18,6,37,10,15,1,6,1,0,20.56785163133314,20.56785163133314,0,0,0,0,0,0,0,1,1,0,0,7.084979955381232,0,3,43.73,46.5,6,1,0,0,9,5,1,1019,0,0,0 +4647,5716,10341,10340,-9,-9,1,1,1,45,1,0,0,0,2,-9,1,1,0,4,8.018297816899729,8.42555066446076,0,1,0,-9,19,0,-8,-25.46475600727593,0,0,0,53,1,2,1,2,2,2019,1,2,6,0,35,38,15,1,0,1,0,14.94467274096817,14.94467274096817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,1,0,0,9,5,1,1019,0,0,0 +4648,5717,10342,-9,10343,10345,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.315948231559,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,5,1,374.5,0,0,0 +4648,5717,10343,10345,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,4,8.508206463021811,8.406289071046569,0,2,0,-9,3,0,-4,-118.4995806679201,0,0,1,34,2,4,1,3,3,2019,1,2,10,1,42,30,15,1,1,1,0,15.35353649214004,15.35353649214004,0,0,0,0,0,0,0,1,1,0,3.156183530289025,0,0,0,38.69,61.75,7,1,0,0,6,5,1,374.5,0,0,0 +4648,5717,10344,-9,10343,10345,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.9314797763044,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,374.5,0,0,0 +4648,5717,10345,10343,-9,-9,2,1,1,34,1,1,2,0,2,-9,2,1,0,4,8.540693506664589,8.39979985448602,0,2,0,-9,3,0,4,-29.26561164959814,0,0,0,30,2,4,1,-9,-9,2019,1,1,11,0,50,50,15,1,0,1,0,13.2470395230463,13.2470395230463,0,0,0,0,0,0,0,1,1,0,4.337948265666246,0,8.479325305418705,3,49.66,55.68,7,1,0,0,6,5,1,374.5,0,0,0 +4649,5718,10346,10347,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,2,0,7.923511033297499,7.869406454215111,1,0,-9,10,0,-1,43.37993677678708,0,0,0,89,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.737157572008964,8.113478284966787,0,0,49.87,28.33,6,1,0,0,12,3,1,534.5,0,0,0 +4649,5718,10347,10346,-9,-9,2,1,0,89,1,0,0,0,1,-9,4,3,0,3,0,7.229276428841809,7.523946693377103,1,0,-9,10,0,1,18.52607291131324,0,0,0,88,2,2,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.517777603626758,0,0,57.78,40.89,6,1,0,0,12,3,1,534.5,0,0,0 +4650,5719,10348,10349,-9,-9,1,1,0,29,1,1,2,0,1,-9,2,1,0,4,7.707863870020979,7.783850972905105,0,2,0,-9,7,0,-14,-6.782726351728021,-9,1,1,43,2,3,1,3,2,2019,1,2,20,9,40,0,15,1,9,1,0,7.088477268549381,7.088477268549381,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,65.69,5,1,0,0,12,4,1,504.25,0,0,0 +4650,5719,10349,10348,-9,-9,2,1,1,43,1,1,2,0,2,-9,2,1,0,3,8.354047011074336,8.41279519314916,0,2,0,-9,7,0,14,-149.0180752490217,-9,0,0,29,1,4,1,3,3,2019,1,1,8,0,41,0,15,1,0,1,0,11.77634171558248,11.77634171558248,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,5,1,0,0,12,4,1,504.25,0,0,0 +4650,5719,10350,-9,10348,10349,4,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.6125606140099,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,504.25,0,0,0 +4650,5719,10351,-9,10348,10349,5,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.1987589493494,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,504.25,0,0,0 +4650,5720,10352,-9,10348,10349,3,1,1,22,2,1,2,0,2,-9,2,1,0,4,7.816853265773786,7.579508392029293,0,4,0,0,0,-9,0,-987.7972775853142,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,48,0,15,1,0,-9,0,5.497210910585258,5.497210910585258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,12,3,1,178,0,0,0 +4651,5721,10353,10354,-9,-9,2,1,0,56,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,6,0,-17,127.8594624685649,0,0,0,73,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,13,3,1,3691,0,0,0 +4651,5721,10354,10353,-9,-9,1,1,1,73,1,0,0,0,2,-9,1,1,0,4,7.17863528036102,7.822960603724921,7.616221338642133,1,0,-9,6,0,17,-21.10453770111536,0,0,0,56,2,3,3,3,3,2019,2,2,7,0,40,40,15,1,0,3,0,4.246304232030589,4.246304232030589,0,0,0,0,0,0,0,1,1,0,9.101429322058692,7.259272187916483,50.80096803245798,1,47.3,53.21,7,1,0,0,13,3,1,3691,0,0,0 +4652,5722,10355,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,4,3,0,4,0,6.873168979781297,6.856435679970169,3,0,0,0,-9,0,-1075.261496916562,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.400145353061816,6.915222373707695,0,3,64.48,48.62,6,1,0,0,12,2,0,513,0,0,0 +4653,5723,10356,-9,-9,-9,1,1,1,73,2,0,0,0,3,-9,4,3,0,3,0,3.130245907809535,3.822122497014545,3,0,0,0,-9,0,-1118.697746109467,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.512571122794394,0,3,60.29,52.11,7,1,0,0,1,1,1,355,0,0,0 +4654,5724,10357,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.503224274436255,8.695328122601916,0,3,0,0,0,-9,0,-902.139522575902,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,43,48,15,1,0,-9,0,12.83031455873434,12.83031455873434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,8,5,0,717,0,0,0 +4655,5725,10358,-9,10360,10359,3,1,1,17,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,-9,0,-9,0,-881.7911703014597,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.5,57.5,7,1,0,0,13,4,1,2404,0,0,0 +4655,5725,10359,10360,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.330450537472743,8.307864095538973,0,2,0,-9,1,-9,-2,50.9076576857232,-9,0,0,49,2,4,1,2,2,2019,1,2,9,0,30,0,15,1,1,1,0,10.94958834473177,10.94958834473177,0,0,0,0,0,0,0,1,1,0,2.513338782622429,0,0,0,52,55,6,1,0,0,13,4,1,2404,0,0,0 +4655,5725,10360,10359,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,4,7.925512289494645,8.284245880075838,0,2,0,-9,1,-9,2,-8.023853777855255,-9,0,0,47,2,4,1,2,1,2019,1,1,8,0,20,0,15,1,0,1,0,17.27201772679367,17.27201772679367,0,0,0,0,0,0,0,1,1,0,7.115230434186747,0,0,0,57.16,56.15,6,1,0,0,13,4,1,2404,0,0,0 +4656,5726,10361,10362,-9,-9,1,1,0,66,1,0,0,0,1,0,7,2,0,2,0,0,0,1,0,-9,3,0,-10,138.3768867381555,-9,0,0,76,3,2,3,3,3,2019,4,2,13,1,0,0,15,2,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.63938582562746,0,0,0,44.36,31.32,5,1,0,0,8,2,1,648,0,0,0 +4656,5726,10362,10361,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,7.147146256573635,7.107703237774555,1,0,-9,3,0,10,51.96813233169645,0,0,0,66,1,2,2,2,2,2019,4,1,10,0,0,0,15,4,0,2,0,0,0,1,0,0,0,0,0,0,1,1,0,3.472183080742882,7.220576298874455,0,0,50.67,42.05,7,1,0,0,8,2,1,648,0,0,0 +4657,5727,10363,10364,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,4.825763352514286,5.027620075292663,1,0,-9,48,0,3,35.35188220088841,0,0,0,67,2,4,3,2,3,2019,4,1,13,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.141755204016354,5.065358895396968,0,0,56,52,6,1,0,0,12,2,1,1103.5,0,0,0 +4657,5727,10364,10363,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,4.082052805681107,3.445299475074527,1,0,-9,48,0,-3,29.60101078949947,0,0,0,70,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.125174855239369,3.713529668443014,0,0,51.19,52.17,6,1,0,0,12,2,1,1103.5,0,0,0 +4658,5728,10365,-9,-9,-9,1,1,0,74,2,0,0,0,3,-9,4,3,0,4,0,5.457854946747045,5.678897975427039,3,0,0,0,-9,0,-1046.748778896083,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.4165726167529855,5.642128791545737,0,0,62.99,41.16,6,4,0,0,8,2,1,1196,0,0,0 +4659,5729,10366,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,3,0,6.114325047206946,6.143902473710418,3,0,0,0,-9,0,-918.1520592094749,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.851900648086682,6.014094606206098,7.393785324577847,3,53,47,5,1,0,0,11,2,1,185,0,0,0 +4660,5730,10367,10368,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,7.960629893029897,8.158865238101047,1,0,-9,7,0,-4,105.462134657833,0,0,0,65,1,1,3,3,2,2019,4,1,15,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.704075179135347,7.928029920108072,111.6406340496499,1,40.88,59.72,4,1,0,0,13,4,1,241.5,0,0,0 +4660,5730,10368,10367,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,1,0,8.043068785604731,7.600302745946221,1,0,-9,7,0,4,18.8312743406161,0,0,0,61,1,3,3,2,2,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.686859878439615,7.70746584337321,0,0,55.14,10.58,6,1,0,0,13,4,1,241.5,0,0,0 +4661,5731,10369,10370,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,2,6.87326611558283,7.445345851653753,6.753091723763546,1,0,-9,35,0,-3,-109.3070864583245,0,0,0,60,2,4,1,-9,2,2019,1,1,11,0,15,15,15,1,0,1,0,6.870928153635896,6.870928153635896,0,0,0,0,0,0,0,1,1,0,2.986195253604461,6.426217787813107,23.20122702676459,3,40.88,39.7,5,1,0,0,12,4,1,433,0,0,0 +4661,5731,10370,10369,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.197573419102353,7.943961593189859,0,1,0,-9,35,0,3,-15.18252996551349,0,0,0,57,2,2,1,-9,-9,2019,1,2,12,0,23,38,15,1,0,1,0,15.84075871421956,15.84075871421956,0,0,0,0,0,0,0,1,1,0,3.867436140773287,0,26.11486275988871,3,39.16,62.84,5,1,0,0,12,4,1,433,0,0,0 +4661,5732,10371,-9,10370,10369,3,1,1,24,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-928.1555160251255,1,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.757811891661389,0,0,0,57.16,56.15,6,1,0,0,12,1,1,675,0,0,0 +4662,5733,10372,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,4,7.366946952338701,7.605427063208953,0,3,0,0,0,-9,0,-1073.848962970978,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,28,30,15,1,0,-9,0,7.837067510598635,7.837067510598635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,6,1,0,0,6,3,0,308,0,0,0 +4663,5734,10373,-9,-9,-9,1,1,0,51,3,0,2,0,1,-9,2,1,0,3,7.80403313092545,7.818786977138099,0,4,0,0,0,-9,0,-1035.725149263019,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,34,30,15,1,5,-9,0,7.274154977663644,7.274154977663644,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,4,1,0,0,9,2,1,211,0,0,0 +4663,5734,10374,-9,10373,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1139.81041908939,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,2,0,0,9,2,1,211,0,0,0 +4664,5735,10375,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,3,8.427590912018916,8.040419726189398,0,4,0,0,0,-9,0,-897.189008341461,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,38,15,1,0,-9,0,8.688547992514373,8.688547992514373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,50.87,6,1,0,0,9,3,0,569,0,0,0 +4664,5735,10376,-9,10375,-9,3,1,1,16,2,0,1,0,-9,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-992.4038821085709,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,0,569,0,0,0 +4664,5736,10377,-9,10375,-9,2,1,0,19,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1127.769588916814,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,0,18,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.5,59.88,5,1,1,0,9,1,0,661,0,0,0 +4665,5737,10378,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,4,3,0,3,8.468742733610421,9.082950608568664,8.695566083907652,3,0,0,0,-9,0,-816.0029370439877,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.15224724658451,8.937826413575998,0,0,46.27,57.3,6,1,0,0,1,5,1,584,0,0,0 +4666,5738,10379,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,3,8.348754222106626,8.437435940508523,0,1,0,-9,8,0,5,-3.518773213859268,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,13,1,42,40,15,1,1,-9,0,10.34117263964267,10.34117263964267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,6,1,0,0,7,5,1,907,0,0,0 +4666,5739,10380,-9,-9,-9,2,1,1,41,2,0,0,0,1,-9,2,1,0,5,9.372204948911394,9.759333313603417,0,1,0,-9,8,0,-5,-225.0767777177536,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,13,1,78,60,15,1,1,-9,0,20.6407439367187,20.6407439367187,0,0,0,0,0,0,0,1,1,0,1.296322084965153,0,0,0,51.14,60.45,6,1,0,0,7,5,1,2827,0,0,0 +4667,5740,10381,-9,-9,-9,1,1,0,101,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1022.136693240708,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,14.62237640821686,0,0,1,1,0,.705808307269419,0,0,0,63.41,34.5,2,1,0,0,2,1,0,84,0,0,0 +4668,5741,10382,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,3,7.533241618069095,7.983693703297457,6.451174431399332,4,0,-9,0,-9,0,-865.4272540865628,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,23,0,15,1,0,-9,0,9.050890909587579,9.050890909587579,0,0,0,0,0,0,0,1,1,0,0,6.601830249519932,0,0,46.08,57.2,6,1,0,0,13,3,1,226,0,0,0 +4669,5742,10383,10386,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,3,7.636958787908315,7.622108601010171,0,2,0,-9,15,0,-1,-77.20145479799832,0,0,0,37,2,3,1,2,2,2019,1,1,14,4,46,50,15,1,4,1,0,5.014021690994406,5.014021690994406,0,0,0,0,0,0,0,0,0,0,10.11233523776662,0,0,0,44.7,53.68,6,1,0,0,9,3,1,620,0,0,0 +4669,5742,10384,-9,10386,10383,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.2367249744231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,3,1,620,0,0,0 +4669,5742,10385,-9,10386,10383,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.654181585149,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,3,1,620,0,0,0 +4669,5742,10386,10383,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,3,7.120784075288251,7.107537538103265,0,2,0,-9,15,0,1,-7.403935593805571,0,0,1,36,2,3,1,2,3,2019,1,2,16,6,10,11,15,1,6,1,0,13.28669180615704,13.28669180615704,0,0,0,0,0,0,0,0,0,0,9.722503554545638,0,0,0,42.04,56.46,6,1,0,0,9,3,1,620,0,0,0 +4670,5743,10387,10388,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.278225273736305,7.567412705341061,1,0,-9,52,0,1,-68.61080618260958,0,0,0,75,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.208312006625953,7.60684941836297,123.69919896319,1,50.79,53.77,7,1,0,0,2,3,1,655.5,0,0,0 +4670,5743,10388,10387,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,6.909285737701489,7.102747691075058,1,0,-9,52,0,-1,91.49874521677985,0,0,0,76,2,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.931840732013244,0,0,56.34,36.03,6,1,0,0,2,3,1,655.5,0,0,0 +4671,5744,10389,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1099.677377078842,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,11,0,0,15,4,11,-9,0,0,0,1,2.565236224782273,0,0,0,0,42.58658374041515,1,1,0,0,0,0,0,36.97,30.4,3,1,0,0,2,1,0,647,0,0,0 +4672,5745,10390,10391,-9,-9,2,1,1,36,1,1,3,0,2,-9,2,1,0,4,7.569412365251149,7.574881163539851,0,2,0,-9,13,0,5,71.24680174980551,0,0,0,31,2,4,1,3,3,2019,1,4,11,1,15,35,15,1,1,1,0,17.4534876589404,17.4534876589404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.38,53.36,6,3,0,0,8,3,1,407.6,0,0,0 +4672,5745,10391,10390,-9,-9,4,1,0,31,1,1,3,0,2,-9,2,1,0,4,7.020252102707554,7.043352151874779,0,2,0,-9,13,0,-5,18.36548854466414,0,0,1,36,2,4,1,3,3,2019,1,2,11,1,16,16,15,1,1,1,0,5.995523440772002,5.995523440772002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,38.16,3,3,0,0,8,3,1,407.6,0,0,0 +4672,5745,10392,-9,10391,10390,6,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.1862343305311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,1,407.6,0,0,0 +4672,5745,10393,-9,10391,10390,5,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.6189420242298,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,407.6,0,0,0 +4672,5745,10394,-9,10391,10390,7,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-974.502207783238,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,3,1,407.6,0,0,0 +4672,5746,10395,-9,-9,-9,3,1,0,33,2,1,3,0,1,-9,2,1,0,4,8.679188697588616,8.707817094518436,0,3,0,0,0,-9,0,-915.450388018405,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,0,15,1,2,-9,1,14.15051080865648,14.15051080865648,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,8,5,1,1453,0,0,0 +4673,5747,10396,10398,-9,-9,1,1,1,28,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,0,0,0,1,0,28,2,3,3,2,-9,2019,4,2,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,57.52,4,1,0,0,1,1,0,1933.4,0,0,0 +4673,5747,10397,-9,10398,10396,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.5074819878159,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,1,0,1933.4,0,0,0 +4673,5747,10398,10396,-9,-9,2,1,0,28,1,1,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,3,0,0,0,0,1,1,28,2,4,3,-9,-9,2019,4,1,22,10,0,26,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.97,59.76,4,1,1,0,1,1,0,1933.4,0,0,0 +4673,5747,10399,-9,10398,10396,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.1426763575353,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,1,0,1933.4,0,0,0 +4673,5747,10400,-9,10398,10396,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.493565887154,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,1,0,1933.4,0,0,0 +4674,5748,10401,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,6.727477730698728,6.825215860034802,3,0,-9,0,1,0,-1100.238001165131,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.71226026648551,7.089649803494344,0,0,32.41,55.55,6,1,0,0,7,2,1,668,0,0,0 +4675,5749,10402,-9,10403,10404,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.3359923797992,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,9,5,1,899.25,0,0,0 +4675,5749,10403,10404,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,3,8.040059279062854,7.870390126560034,0,2,0,-9,11,0,-8,81.88332655781106,0,0,1,40,2,1,1,2,2,2019,1,2,16,4,20,0,15,1,4,1,0,18.40021609513887,18.40021609513887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.71,58.13,5,1,0,0,9,5,1,899.25,0,0,0 +4675,5749,10404,10403,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,1,8.904941780990201,9.302891582189032,0,2,0,-9,10,0,8,87.91049258888557,0,0,0,32,2,3,1,2,2,2019,1,1,15,4,25,35,15,1,4,1,0,43.64429466584095,43.64429466584095,0,0,0,0,0,0,0,1,1,0,2.939140886712968,0,0,0,41.8,25.77,6,1,0,0,9,5,1,899.25,0,0,0 +4675,5749,10405,-9,10403,10404,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.586499235942,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,899.25,0,0,0 +4676,5750,10406,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,7.283223558726312,7.230252562312309,3,0,0,0,-9,0,-1103.535953275863,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,2.078124282757183,0,0,0,0,26.16135859342671,1,1,0,0,7.062025207539264,0,0,40.38,23.69,3,1,0,0,4,3,0,605,0,0,0 +4677,5751,10407,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,5.662420581403388,5.865445256529839,3,0,0,0,-9,0,-941.3852845861202,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.221253558665154,5.568285564869785,0,0,57.16,56.15,7,1,0,0,13,2,1,1353,0,0,0 +4678,5752,10408,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,3,9.334655181847117,9.244444964479776,0,1,0,1,1,-9,8,-11.24553844629638,0,0,1,-9,-9,-9,-9,2,3,2019,1,2,24,9,39,36,15,1,9,-9,0,29.20587348340551,29.20587348340551,0,0,0,0,0,0,0,0,0,0,4.412373192443893,0,0,0,35.06,43.17,3,1,0,0,8,5,1,603,0,0,0 +4678,5753,10409,-9,-9,-9,2,1,0,35,2,0,0,0,1,-9,2,1,0,4,8.546916086813191,8.617542876857724,0,1,0,-9,1,-9,-8,-109.1970491004401,-9,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,11,0,0,0,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.573491737786477,0,0,0,49,56,5,5,0,0,8,5,1,382,0,0,0 +4679,5754,10410,10411,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,5,9.178260787836749,9.549085920848448,0,1,0,-9,33,0,-2,73.28339336677914,0,0,0,57,1,3,1,1,2,2019,1,1,10,0,55,60,15,1,0,1,0,25.25187083697389,25.25187083697389,0,0,0,0,0,0,0,0,0,0,6.598196567329317,0,10.71334886969206,3,55.2,57.22,1,1,0,0,12,5,1,283,0,0,0 +4679,5754,10411,10410,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.797571918928082,9.092774075168485,0,1,0,-9,33,0,2,-23.26760429643092,0,0,0,55,1,5,1,2,2,2019,1,2,12,0,28,28,15,1,0,1,0,27.75124177347661,27.75124177347661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.62,48.28,5,1,0,0,12,5,1,283,0,0,0 +4679,5755,10412,-9,10410,10411,3,1,0,22,2,0,0,0,1,-9,2,1,0,5,8.437887513631305,8.399907704659478,0,3,0,0,0,-9,0,-1039.966338796514,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,45,80,15,1,0,-9,1,9.971980050821546,9.971980050821546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,4,1,671,0,0,0 +4679,5756,10413,-9,10410,10411,4,1,1,21,2,0,0,0,2,1,2,1,0,3,6.555023813216016,6.398080918249048,0,3,0,0,0,-9,0,-946.2250993400889,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,10,0,15,1,0,-9,1,8.11665569409049,8.11665569409049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,50.5,5,1,0,0,12,2,1,254,0,0,0 +4680,5757,10414,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-927.5582795334781,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62.28,26.88,6,1,0,1,2,1,0,1710,0,0,0 +4681,5758,10415,10416,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,3,8.124050466178486,7.82614983789149,0,1,0,-9,25,0,-1,49.06012496493722,0,0,0,47,3,2,1,3,3,2019,1,2,12,1,38,37,15,1,1,1,0,10.63360990180946,10.63360990180946,0,0,0,0,0,0,0,0,0,0,0,0,5.846842524330917,3,58.32,50.22,4,1,0,0,6,4,1,669.5,0,0,0 +4681,5758,10416,10415,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,2,8.195490429225307,7.986521484459318,0,1,0,-9,25,0,1,-45.26666132118284,0,0,0,46,3,3,1,3,3,2019,1,1,12,0,47,44,15,1,0,1,0,8.504533395816264,8.504533395816264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,49.91,5,1,0,1,6,4,1,669.5,0,0,0 +4681,5759,10417,-9,10415,10416,3,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.758660100439339,7.926507353936313,0,3,0,0,0,-9,0,-878.5772433976476,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,37,36,15,1,4,-9,1,8.129227363652094,8.129227363652094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,5,1,0,0,6,3,1,376,0,0,0 +4681,5760,10418,-9,10415,10416,4,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.477742178686627,7.844118103635889,0,3,0,0,0,-9,0,-971.3854504699019,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,42,43,15,1,0,-9,1,5.129608797800026,5.129608797800026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,6,1,0,0,6,3,1,727,0,0,0 +4682,5761,10419,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,8.631429254418906,8.499755042470838,0,3,0,0,0,-9,0,-1207.162796419586,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,43,15,1,0,-9,0,11.00167283034235,11.00167283034235,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,1,5,1,1523,0,0,0 +4683,5762,10420,-9,10422,10421,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.3943002326677,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,6,5,1,1017,0,0,0 +4683,5762,10421,10422,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,4,9.619427431890117,9.587269363718486,0,2,0,-9,16,0,1,13.12716437305981,0,0,0,36,1,4,1,2,2,2019,1,1,7,0,46,47,15,1,0,1,0,31.46215955288292,31.46215955288292,0,0,0,0,0,0,0,0,0,0,5.202814442580253,0,0,0,51.24,58.84,5,1,0,0,6,5,1,1017,0,0,0 +4683,5762,10422,10421,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.319363562625496,8.71375337673979,0,2,0,-9,16,0,-1,-67.74580773649419,0,0,1,37,1,4,1,2,3,2019,1,2,8,0,25,17,15,1,0,1,0,22.69062183543072,22.69062183543072,0,0,0,0,0,0,0,0,0,0,2.618246342389226,0,0,0,51.24,58.84,6,1,0,0,6,5,1,1017,0,0,0 +4683,5762,10423,-9,10422,10421,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.76016854304,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1017,0,0,0 +4684,5763,10424,10425,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,7.738531714629926,7.559935524309397,1,0,-9,8,0,5,-155.6489387573928,0,0,0,76,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.155230205749127,7.395092958432112,0,0,54.2,57.49,6,1,0,0,7,3,1,236.5,0,0,0 +4684,5763,10425,10424,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-5,109.7202135738506,0,0,0,81,2,4,3,3,2,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.61,39.56,6,1,0,0,7,3,1,236.5,0,0,0 +4685,5764,10426,-9,-9,-9,1,1,0,40,3,0,1,0,1,-9,2,1,0,5,8.155203993355041,8.016606395914229,0,4,0,0,0,-9,0,-983.8679447487467,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,1,44,28,15,1,1,-9,0,9.288182767455444,9.288182767455444,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,7,3,0,1,8,3,0,962.5,0,0,0 +4685,5764,10427,-9,10426,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-985.9429214023106,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,2,0,0,8,3,0,962.5,0,0,0 +4686,5765,10428,-9,10429,10430,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.470714981469,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,10,3,1,1317.25,0,0,0 +4686,5765,10429,10430,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,3,6.108023346298896,6.658549062742522,0,2,0,-9,12,0,-8,-103.0198559978109,0,0,1,43,1,4,1,3,2,2019,1,1,11,3,12,0,15,1,3,1,0,5.627929446883545,5.627929446883545,0,0,0,0,0,0,0,1,1,0,1.265574339347103,0,0,0,47.13,48.65,5,3,0,0,10,3,1,1317.25,0,0,0 +4686,5765,10430,10429,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.447674852727967,8.39977867229782,0,2,0,-9,12,0,8,-54.40182671919735,0,0,0,35,1,3,1,2,2,2019,1,2,9,0,40,45,15,1,0,1,0,11.20445962862479,11.20445962862479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,10,3,1,1317.25,0,0,0 +4686,5765,10431,-9,10429,10430,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.3406308296277,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,10,3,1,1317.25,0,0,0 +4687,5766,10432,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1058.462087378819,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.54,41.83,4,1,1,0,12,1,0,349,0,0,0 +4688,5767,10433,10435,-9,-9,1,1,1,40,1,0,1,0,2,-9,2,1,0,4,8.065927291598609,8.038315308260097,0,2,0,-9,11,0,-1,-110.899822138893,0,0,0,41,2,2,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,10.73844371225131,10.73844371225131,0,0,0,0,0,0,0,1,1,0,0,0,3.798016518235065,3,54.75,47.86,6,1,0,0,11,5,1,240,0,0,0 +4688,5767,10434,-9,10435,10433,4,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.199812206988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,240,0,0,0 +4688,5767,10435,10433,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,2,8.659371638579648,8.398144771806118,0,2,0,-9,11,0,1,9.783066002596701,0,0,1,40,2,4,1,2,-9,2019,1,1,29,11,42,43,15,1,11,1,0,14.14483847007987,14.14483847007987,0,0,0,0,0,0,0,1,1,0,0,0,3.251274197641536,3,30.97,19.96,3,1,0,0,11,5,1,240,0,0,0 +4688,5768,10436,-9,10435,10433,3,1,0,19,2,0,1,1,2,0,7,2,0,3,0,4.691354931052912,4.204009132288114,3,0,0,0,-9,0,-971.6965682362847,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.842688721181638,0,0,0,29.71,60.62,7,1,0,0,11,2,1,697,0,0,0 +4689,5769,10437,10438,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,4,7.443392152121925,7.284187600471991,0,1,0,-9,39,0,-2,-42.27505362619305,0,0,0,59,2,5,1,2,2,2019,1,2,15,3,30,32,15,1,3,1,0,6.767371317075523,6.767371317075523,0,0,0,0,0,0,0,0,0,0,2.599594980768638,0,0,0,43.42,62.33,5,1,0,0,2,4,1,547.5,0,0,0 +4689,5769,10438,10437,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,5,8.242498464028042,8.117004438348436,0,1,0,-9,39,0,2,-106.1601872897071,0,0,0,57,3,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,10.13823074812592,10.13823074812592,0,0,0,0,0,0,0,0,0,0,4.999770764404986,0,0,0,49.28,59.91,6,1,0,0,2,4,1,547.5,0,0,0 +4690,5770,10439,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.504211625856518,8.881176973599041,0,3,0,-9,0,-9,0,-1016.596266546328,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,41,0,15,1,5,-9,0,14.5542567266956,14.5542567266956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.34,6,1,0,0,12,5,0,775,0,0,0 +4691,5771,10440,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,2,0,6.430421154450922,6.15335898697055,3,0,0,0,-9,0,-1053.500130433208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,34.66466312787858,1,1,0,.3359135976570586,5.941741967445835,0,0,31.57,41.15,3,1,0,0,2,2,1,224,0,0,0 +4692,5772,10441,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,3,0,6.753948264628826,6.878120101452314,3,0,0,0,-9,0,-1081.017343314641,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,6.855881028809741,0,1,1,0,0,7.130536475290649,0,0,67.26000000000001,25.66,6,1,0,0,9,2,0,559,0,0,0 +4693,5773,10442,10443,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,3,8.611283847906707,8.566445723661451,7.03839690633224,1,0,-9,36,0,0,54.40819575996365,0,0,0,64,2,4,3,-9,2,2019,2,2,8,0,37,37,15,1,0,4,0,15.07998298192299,15.07998298192299,0,0,0,0,0,0,0,0,0,0,6.57415206573382,6.712388692512622,0,0,55.86,43.17,6,1,0,0,5,4,1,928.5,0,0,0 +4693,5773,10443,10442,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,4.909592464321744,4.686823715653182,1,0,-9,46,0,0,11.72681447825427,0,0,0,64,1,3,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.548217955400904,4.728658032497456,0,0,57.16,56.15,6,1,0,0,5,4,1,928.5,0,0,0 +4694,5774,10444,-9,10446,10445,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.7921145877475,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,2,0,0,7,5,1,539.6666666666666,0,0,0 +4694,5774,10445,10446,-9,-9,1,1,1,35,1,1,1,0,2,-9,2,1,0,5,9.005814030619616,9.377813890117961,0,2,0,-9,9,0,3,-2.526185413184952,0,0,0,32,1,4,1,-9,-9,2019,1,2,7,0,45,40,15,1,0,1,0,22.70092124374577,22.70092124374577,0,0,0,0,0,0,0,0,0,0,.9433647732989668,0,0,0,59.43,58.05,7,1,0,0,7,5,1,539.6666666666666,0,0,0 +4694,5774,10446,10445,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,4,8.958582204918658,9.138569463582284,0,2,0,-9,9,0,-3,-71.89065234388954,0,0,1,35,2,5,1,1,1,2019,1,1,5,0,35,47,15,1,0,1,0,30.03173083251619,30.03173083251619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,3,0,0,7,5,1,539.6666666666666,0,0,0 +4695,5775,10447,10448,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,4,8.038491720017122,8.288749708716887,0,1,0,1,1,-9,2,-10.16485293479361,0,1,0,23,2,3,1,-9,-9,2019,1,2,6,0,38,40,15,1,0,1,0,10.85899706605957,10.85899706605957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,4,0,1023.5,0,0,0 +4695,5775,10448,10447,-9,-9,2,1,0,23,1,0,0,0,2,-9,2,1,0,3,7.36786791747884,7.521546662390002,0,1,0,-9,1,-9,-2,60.44874002568333,-9,1,1,25,1,4,1,-9,-9,2019,1,1,14,3,30,0,15,1,3,1,0,5.999259101475104,5.999259101475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.25,60.6,5,1,0,0,9,4,0,1023.5,0,0,0 +4696,5776,10449,10450,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,5,8.343060411151164,8.427831624016186,0,2,0,-9,1,-9,1,35.89166072730288,-9,1,0,25,2,4,3,-9,-9,2019,2,1,9,2,48,0,15,1,2,3,0,12.70677597300912,12.70677597300912,0,0,0,0,0,0,0,1,1,0,8.456895483105713,0,9.441900407572522,3,57.99,55.89,7,1,0,0,10,4,1,1210.666666666667,0,0,0 +4696,5776,10450,10449,-9,-9,1,1,0,25,1,1,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,-1,16.27722054814671,-9,1,1,26,2,5,1,1,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.325270690077401,0,0,0,54.2,57.49,6,1,0,0,10,4,1,1210.666666666667,0,0,0 +4696,5776,10451,-9,10450,10449,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1079.924008779592,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,1210.666666666667,0,0,0 +4697,5777,10452,-9,10454,10453,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.8616889567272,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,891.6666666666666,0,0,0 +4697,5777,10453,10454,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,3,8.295769509601765,8.497620503743347,0,2,0,-9,7,0,3,169.2515229976499,0,0,0,29,1,4,1,-9,-9,2019,1,1,11,3,48,64,15,1,3,1,0,10.13126449374983,10.13126449374983,0,0,0,0,0,0,0,1,1,0,2.395705738089775,0,0,0,37.26,57.36,5,1,0,0,5,4,1,891.6666666666666,0,0,0 +4697,5777,10454,10453,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,4,7.791972779104086,8.466943827475596,0,2,0,-9,7,0,-3,21.27554278963833,0,1,1,32,1,3,1,3,3,2019,1,2,8,1,32,32,15,1,1,1,0,12.33628084968483,12.33628084968483,0,0,0,0,0,0,0,1,1,0,2.940738709618764,0,0,0,49.35,59.64,6,1,0,0,5,4,1,891.6666666666666,0,0,0 +4698,5778,10455,10456,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,46,0,-5,0,0,0,0,69,3,5,3,3,3,2019,4,2,14,0,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.2953618740796605,0,4.596499805465947,3,63.41,29.17,5,3,0,0,8,1,1,1048,0,0,0 +4698,5778,10456,10455,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,46,0,5,0,0,0,0,64,2,2,3,2,2,2019,4,1,1,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.805861382306419,0,0,3,62.39,56.71,7,3,0,0,8,1,1,1048,0,0,0 +4699,5779,10457,-9,-9,-9,1,1,0,41,3,0,0,0,1,-9,2,1,0,2,9.387472159613683,9.345951145408854,0,3,0,-9,0,1,0,-918.257121041137,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,43,43,15,1,2,-9,0,27.13036584104713,27.13036584104713,0,0,0,0,0,0,0,0,0,0,8.20380701542414,0,0,0,40.83,54.95,6,1,0,0,8,5,1,993,0,0,0 +4700,5780,10458,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,3,8.421898935169075,8.655640291952915,0,3,0,0,0,-9,0,-947.3963666928471,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,40,40,15,1,0,-9,0,11.11073961253796,11.11073961253796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,6,1,0,0,7,5,1,185,0,0,0 +4700,5781,10459,-9,10458,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,5,8.209612030207568,8.628848275775161,0,3,0,0,0,-9,0,-1045.734512331616,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,45,45,15,1,0,-9,1,10.11412825316259,10.11412825316259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,7,4,1,194,0,0,0 +4700,5782,10460,-9,10458,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,3,8.031627893936214,8.31215313804014,0,3,0,0,0,-9,0,-1000.489671489199,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,45,40,15,1,0,-9,1,9.407956483350949,9.407956483350949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,6,1,0,0,7,4,1,211,0,0,0 +4700,5783,10461,-9,10458,-9,4,1,0,20,2,0,0,0,2,-9,2,1,0,5,8.215686878260696,8.667915528827995,0,3,0,0,0,-9,0,-1031.077380773511,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,3,0,45,38,15,1,0,-9,1,9.515282975704768,9.515282975704768,0,0,0,0,0,0,0,0,0,0,3.071368070361387,0,0,0,57.06,57.76,7,1,0,0,7,4,1,767,0,0,0 +4701,5784,10462,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,3,8.339247109480606,8.479989110214508,0,3,0,0,0,-9,0,-1113.095837568771,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,72,75,15,1,0,-9,0,7.796020129547744,7.796020129547744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.5,39.14,5,1,0,0,11,4,1,122,0,0,0 +4702,5785,10463,10464,-9,-9,1,1,1,70,1,0,0,0,1,-9,1,1,0,5,6.741812434521148,8.529165361205241,7.948788481350845,1,0,-9,8,0,13,51.73315736152603,0,0,0,57,1,4,1,2,3,2019,1,2,8,0,20,24,15,1,0,1,0,4.664684357568504,4.664684357568504,0,0,0,0,0,0,0,1,1,0,.7863034072624789,7.808168260066211,0,0,58.05,54.52,6,1,0,0,5,4,1,433,0,0,0 +4702,5785,10464,10463,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,4,7.279914451157593,7.491738901159956,0,1,0,-9,8,0,-13,185.4162520319908,0,0,0,70,1,5,1,-9,-9,2019,1,1,6,0,21,20,15,1,0,1,0,7.152785028599683,7.152785028599683,0,0,0,0,0,0,0,1,1,0,1.39928814019291,0,0,0,57.16,56.15,6,1,0,0,5,4,1,433,0,0,0 +4702,5786,10465,-9,10464,10463,4,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.21387845210383,7.247844331272081,0,3,0,-9,0,-9,0,-946.2601222095548,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,13,2,24,0,15,1,2,-9,1,6.390166751222199,6.390166751222199,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,5,3,1,160,0,0,0 +4702,5787,10466,-9,10464,10463,3,1,1,20,2,0,0,1,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-914.6526515015944,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,5,1,0,0,5,1,1,509,0,0,0 +4703,5788,10467,10468,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,-3,-15.40952871099247,0,0,0,68,2,3,3,-9,-9,2019,4,1,31,11,0,0,15,4,11,4,0,0,0,1,0,2.292557955626999,0,0,0,0,1,1,0,0,0,0,0,30.77,22.6,2,1,0,0,2,2,0,200.5,0,0,0 +4703,5788,10468,10467,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.831165219787191,6.842931906285991,1,0,-9,17,0,3,48.84851078135272,0,0,0,65,3,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.093917349857207,25.65802709078788,1,54.96,53.17,6,1,0,0,2,2,0,200.5,0,0,0 +4704,5789,10469,10470,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.978528489006498,9.057606969279716,0,1,0,-9,30,0,-1,-71.0341046036247,0,0,0,57,2,3,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,31.92421547074456,31.92421547074456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,3,1,0,0,7,5,1,1057,0,0,0 +4704,5789,10470,10469,-9,-9,2,1,0,57,1,0,0,0,2,-9,1,1,0,3,9.277983211705608,8.880219664322301,0,1,0,-9,6,0,1,49.39661053821265,0,0,0,56,2,4,1,2,-9,2019,1,1,13,4,35,50,15,1,4,1,0,29.09117130418365,29.09117130418365,0,0,0,0,0,0,0,0,0,0,6.023739874269579,0,0,0,43.9,57.01,5,1,0,0,7,5,1,1057,0,0,0 +4705,5790,10471,10472,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,5,0,8.309224115957141,8.520619255840673,1,0,-9,43,0,1,-3.76345331395259,0,0,0,68,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.950290172902426,8.179415328935635,0,0,57.06,57.76,7,1,0,0,13,3,1,830,0,0,0 +4705,5790,10472,10471,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,43,0,-1,23.277870492714,0,0,0,69,1,5,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.442805694817404,0,0,0,48.87,58.55,6,1,0,0,13,3,1,830,0,0,0 +4706,5791,10473,10474,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,3,0,7.881915988867013,7.78839310481298,1,0,-9,50,0,9,-65.2850396514267,0,0,0,72,2,4,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.614739085618056,8.155079757977244,0,0,52.47,40.47,6,1,0,0,9,3,1,1296.5,0,0,0 +4706,5791,10474,10473,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,5.505687959572845,5.663834229500432,1,0,-9,50,0,0,-106.9963984781024,0,0,0,81,1,3,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.555163551677741,5.569955311969744,0,0,60.27,49.27,6,1,0,0,9,3,1,1296.5,0,0,0 +4707,5792,10475,-9,-9,10476,2,1,0,17,2,0,1,1,2,0,7,2,0,3,5.697217444412839,5.670756316076099,0,4,0,0,0,-9,0,-1086.172803120898,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,25,11,7,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.6,55.32,4,3,0,0,4,2,1,310,0,0,0 +4707,5792,10476,-9,-9,-9,1,1,1,53,3,0,1,0,2,-9,1,1,0,3,4.99337474415711,4.883227444658802,0,4,0,0,0,-9,0,-980.4108812564257,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,50,15,1,0,-9,0,.5641283415698948,.5641283415698948,0,0,0,0,0,0,0,1,1,0,9.50333617335067,0,0,0,50.63,50.99,4,1,0,0,4,2,1,310,0,0,0 +4708,5793,10477,10478,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-4,11.80831021550784,0,0,0,78,2,4,3,3,2,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.995199631720775,0,0,0,44.32,40.26,6,1,0,0,2,4,1,207,0,0,0 +4708,5793,10478,10477,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,8.179244503963485,8.2590554735662,1,0,-9,8,0,4,-57.3177235917684,0,0,0,74,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.710394539692889,7.916203963900335,0,0,43.54,59.6,7,1,0,0,2,4,1,207,0,0,0 +4709,5794,10479,-9,-9,-9,1,1,0,66,2,0,0,0,3,-9,4,3,0,1,0,6.914186231398816,6.366088036194817,3,0,0,0,-9,0,-922.5966717931713,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,48.61388850106472,0,0,0,0,404.2078531098728,1,1,0,0,6.759529134645132,0,0,31.31,40.51,1,1,0,0,1,2,1,236,0,0,0 +4710,5795,10480,10481,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,2,7.303760021859986,7.465659287256055,0,1,0,-9,3,0,-1,-27.51906816198699,0,0,0,50,2,3,1,2,2,2019,1,2,13,1,26,26,15,1,1,1,0,5.546688813169297,5.546688813169297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.67,41.68,2,1,0,1,4,3,0,662,0,0,0 +4710,5795,10481,10480,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,6.56825698707709,6.403769552690348,0,1,0,-9,3,0,1,-19.14563016657463,0,0,0,49,2,2,1,-9,3,2019,1,1,12,0,10,6,15,1,0,1,0,7.059771338813771,7.059771338813771,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.92,51.86,4,1,0,1,4,3,0,662,0,0,0 +4710,5796,10482,-9,10481,10480,3,1,0,23,2,0,0,0,2,-9,2,1,0,3,7.957001564452098,7.773917621024698,0,3,0,0,0,-9,0,-1094.353090195843,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,52,33,15,1,0,-9,1,5.738966661992617,5.738966661992617,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.16,56.84,4,1,0,0,4,3,0,297,0,0,0 +4711,5797,10483,10486,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,4,8.27551252860129,8.34355135640301,0,2,0,-9,7,0,-4,60.76556643765644,0,0,0,50,1,3,1,2,2,2019,1,2,17,6,41,33,15,1,6,1,0,11.80183208968181,11.80183208968181,0,0,0,0,0,0,0,1,1,0,3.351308580334508,0,0,0,35.67,64.46000000000001,5,1,0,0,5,5,1,373.5,0,0,0 +4711,5797,10484,-9,10483,10486,3,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1021.778470806815,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,5,1,373.5,0,0,0 +4711,5797,10485,-9,10483,10486,4,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1005.554926774123,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,5,5,1,373.5,0,0,0 +4711,5797,10486,10483,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,3,9.016738288015116,9.167634313289106,0,2,0,-9,7,0,4,-49.42157867556136,0,0,0,46,1,4,1,3,2,2019,1,1,7,0,40,43,15,1,0,1,0,21.75424061286824,21.75424061286824,0,0,0,0,0,0,0,1,1,0,1.474967933120921,0,0,0,52,54.51,5,1,0,0,5,5,1,373.5,0,0,0 +4712,5798,10487,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,1,0,6.664077716182236,6.429724488614262,3,0,0,0,-9,0,-851.9943186025125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.26116483635582,0,0,60.87,7.8,3,1,0,0,2,2,1,1535,0,0,0 +4713,5799,10488,10490,-9,-9,3,1,1,46,1,0,1,0,3,-9,2,1,0,3,7.409098474320308,7.675122533682825,0,2,0,-9,7,0,-3,1.212649561157476,0,0,0,49,2,4,1,-9,-9,2019,1,1,12,0,37,24,15,1,0,1,0,6.184690714810047,6.184690714810047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.65,58.88,4,1,0,0,4,3,0,1496,0,0,0 +4713,5799,10489,-9,10490,10488,4,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.2075194817778,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,0,1496,0,0,0 +4713,5799,10490,10488,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,4,6.295383117266336,5.886292054330823,0,2,0,-9,7,0,3,-9.849320859438388,0,0,0,46,3,3,1,3,3,2019,1,3,12,0,9,0,15,1,0,1,0,5.78119919364724,5.78119919364724,0,0,0,0,0,0,0,1,1,0,0,0,10.75680011330397,3,60.12,54.8,5,1,0,0,4,3,0,1496,0,0,0 +4713,5800,10491,-9,10490,10488,2,1,0,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1124.054745677718,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,7,1,0,0,4,1,0,102,0,0,0 +4714,5801,10492,10496,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,5,6.572530243098309,6.641100885991398,0,2,0,-9,14,0,6,-.891482692470319,0,0,1,33,2,4,1,3,2,2019,1,2,9,0,12,12,15,1,0,1,0,7.10730470369955,7.10730470369955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.4,55.31,6,3,0,1,8,3,0,390.8,0,0,0 +4714,5801,10493,-9,10492,10496,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.716302255046,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,0,390.8,0,0,0 +4714,5801,10494,-9,10492,10496,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.9559658052142,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,3,0,390.8,0,0,0 +4714,5801,10495,-9,10492,10496,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.206195800614,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,390.8,0,0,0 +4714,5801,10496,10492,-9,-9,2,1,1,33,1,0,3,0,2,-9,2,1,0,4,8.820206253852374,8.624795845918785,0,2,0,-9,14,0,-6,126.8989720567897,0,0,0,39,2,5,1,3,2,2019,1,1,10,0,16,16,15,1,1,1,0,39.40343218746955,39.40343218746955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,8,3,0,390.8,0,0,0 +4715,5802,10497,10500,-9,-9,2,1,1,43,1,1,2,0,1,-9,2,1,0,3,7.64374525919136,7.89792332049423,0,2,0,-9,14,0,5,-65.06115071282032,0,0,0,38,1,5,1,2,2,2019,1,1,13,3,37,43,15,1,3,1,0,9.030218013077445,9.030218013077445,0,0,0,0,0,0,0,1,1,0,1.524012737985052,0,0,0,46.33,55.93,3,1,0,0,4,4,1,678.5,0,0,0 +4715,5802,10498,-9,10500,10497,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.6868577327702,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,678.5,0,0,0 +4715,5802,10499,-9,10500,10497,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.015237397855,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,678.5,0,0,0 +4715,5802,10500,10497,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,5,8.669235577526925,8.671390646362171,0,2,0,-9,10,0,-5,37.3949275517402,0,0,1,43,1,3,1,2,2,2019,1,2,11,0,55,57,15,1,0,1,0,11.61577493580532,11.61577493580532,0,0,0,0,0,0,0,1,1,0,.8200825414253941,0,0,0,48.77,60.16,6,1,0,0,4,4,1,678.5,0,0,0 +4716,5803,10501,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,3,9.193531292244323,9.19669713285448,0,3,0,0,0,-9,0,-866.8209969957834,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,38,45,15,1,0,-9,0,26.20918053127122,26.20918053127122,0,0,0,0,0,0,0,0,0,0,4.333905850269568,0,0,0,54.37,54.8,6,1,0,0,8,5,1,375,0,0,0 +4717,5804,10502,-9,10505,10504,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.117212898506,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,3,1,772.2,0,0,0 +4717,5804,10503,-9,10505,10504,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.0995068382995,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,3,1,772.2,0,0,0 +4717,5804,10504,10505,-9,-9,2,1,1,49,1,0,3,0,3,-9,2,1,0,4,8.296967035447185,8.456917814067722,0,2,0,-9,6,0,2,59.82671195970513,0,0,0,47,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,14.22780943694881,14.22780943694881,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,5,0,0,8,3,1,772.2,0,0,0 +4717,5804,10505,10504,-9,-9,1,1,0,47,1,0,3,0,2,-9,2,1,0,4,7.467928556388693,7.614976288598975,0,2,0,-9,6,0,-2,51.03183094632151,0,0,0,49,3,4,1,-9,-9,2019,1,2,6,0,21,18,15,1,0,1,0,8.336652148022313,8.336652148022313,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,8,3,1,772.2,0,0,0 +4717,5804,10506,-9,10505,10504,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-849.6404719737939,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,3,1,772.2,0,0,0 +4718,5805,10507,-9,10508,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1024.164327090818,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,1,0,1042.75,0,0,0 +4718,5805,10508,-9,-9,-9,1,1,0,30,2,0,3,0,3,-9,6,3,0,3,0,0,0,4,0,-9,0,-9,0,-803.3395687687405,-9,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.05,53.56,3,1,0,1,7,1,0,1042.75,0,0,0 +4718,5805,10509,-9,10508,-9,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1060.979645957072,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,1,0,1042.75,0,0,0 +4718,5805,10510,-9,10508,-9,2,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-975.1104812193727,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,1,0,1042.75,0,0,0 +4719,5806,10511,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,4,0,6.018171432536026,6.164646949899549,3,0,0,0,-9,0,-992.4318566112198,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.541417616474529,6.177048981013639,5.028441986523832,3,57.16,56.15,6,1,0,0,7,2,1,785,0,0,0 +4720,5807,10512,10514,-9,-9,1,1,1,69,1,0,1,0,3,-9,4,3,0,2,0,7.368100382291582,7.732422678059387,2,0,-9,27,0,15,-17.48565347799514,0,0,0,54,3,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,3,0,0,0,1,0,6.343836279938689,0,0,0,0,1,1,0,0,7.511967999187468,0,0,33.78,26.64,4,1,0,0,7,2,1,2299.666666666667,0,0,0 +4720,5807,10513,-9,10514,10512,3,1,1,17,2,0,1,1,2,0,7,2,0,5,7.585044944862014,7.386170603435716,0,2,0,0,0,-9,0,-1019.184742920438,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,27,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.11,36.37,3,2,0,0,7,2,1,2299.666666666667,0,0,0 +4720,5807,10514,10512,-9,-9,2,1,0,54,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,25,0,-15,-167.0221524720204,0,0,0,69,3,2,3,3,3,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.20761271882899,1,50.03,52.62,7,3,0,0,7,2,1,2299.666666666667,0,0,0 +4720,5808,10515,-9,10514,10512,4,1,1,21,2,0,1,1,2,0,7,2,0,3,0,3.82612884587705,4.21862512565759,3,0,0,0,-9,0,-995.524214424394,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.111338293941378,0,12.70472671823888,3,34.55,59.61,6,2,0,0,7,1,1,222,0,0,0 +4721,5809,10516,10517,-9,-9,1,1,1,58,1,1,2,0,3,-9,2,1,0,2,8.301158754005934,8.19462864730149,0,2,0,-9,37,0,1,74.51942606966159,0,0,0,57,1,3,1,3,2,2019,1,2,13,2,38,40,15,1,2,1,0,8.846399480947191,8.846399480947191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,38,3,3,0,0,5,4,1,595,0,0,0 +4721,5809,10517,10516,-9,-9,2,1,0,57,1,1,2,0,1,-9,2,1,0,3,8.145641573125889,8.16828142151113,0,2,0,-9,37,0,-1,-87.30077689764599,0,0,0,58,3,2,1,3,2,2019,1,1,6,0,45,0,15,1,0,1,0,9.820479348394855,9.820479348394855,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,3,0,0,5,4,1,595,0,0,0 +4721,5810,10518,-9,10517,10516,3,1,1,31,2,1,2,0,2,-9,2,1,0,4,8.53553285660076,8.355740441119687,0,3,0,0,0,-9,0,-1051.06820616817,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,53,48,15,1,1,-9,1,13.67960293487708,13.67960293487708,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,5,3,0,0,5,5,1,841,0,0,0 +4721,5811,10519,-9,10521,-9,6,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1149.990390776864,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,5,3,1,707,0,0,0 +4721,5811,10520,-9,10521,-9,5,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-909.9084326845482,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,5,3,1,707,0,0,0 +4721,5811,10521,-9,10517,10516,4,1,0,33,3,1,2,0,1,-9,2,1,0,3,7.773803456295705,7.822236441554567,0,3,0,-9,0,-9,0,-991.3131250119873,-9,0,1,-9,-9,-9,-9,1,3,2019,-9,0,29,11,28,0,15,1,11,-9,1,8.918089635626059,8.918089635626059,0,0,0,0,0,0,0,1,1,0,1.30730165563158,0,0,0,37.47,51.92,4,3,0,0,5,3,1,707,0,0,0 +4722,5812,10522,10523,-9,-9,1,1,1,52,1,0,1,0,1,-9,1,1,0,4,9.709914746076729,9.855805197507438,0,2,0,-9,24,0,3,52.89505812900045,0,0,0,49,2,4,3,3,3,2019,2,2,8,0,50,50,15,1,0,3,0,32.74402691441484,32.74402691441484,0,0,0,0,0,0,0,0,0,0,3.80929551871272,0,0,0,51.83,57.2,6,1,0,0,8,5,1,1320,0,0,0 +4722,5812,10523,10522,-9,-9,2,1,0,49,1,0,1,0,2,-9,6,3,0,4,0,8.153290866601639,7.839270340597686,2,0,-9,24,0,-3,-21.30276290217031,0,0,0,52,1,4,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.585413342425262,0,6.504626590647121,3,57.16,56.15,1,1,0,0,8,5,1,1320,0,0,0 +4722,5813,10524,-9,10523,10522,3,1,1,20,2,0,1,1,2,0,7,2,0,5,8.410444916292002,7.839017500088107,0,3,0,0,0,-9,0,-1006.076245552396,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,38,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7869579231437203,0,0,0,48.77,60.16,6,1,0,0,8,4,1,583,0,0,0 +4722,5814,10525,-9,10523,10522,4,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1040.698227200706,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.56658271382475,0,0,0,54.69,57.47,6,1,0,0,8,5,1,963,0,0,0 +4723,5815,10526,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,4,9.443195990694962,9.430705305993216,0,3,0,-9,0,-9,0,-1016.418954218515,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,38,0,15,1,0,-9,0,29.46905852876952,29.46905852876952,0,0,0,0,0,0,0,1,1,0,4.270388516124793,0,0,0,54.2,57.49,6,1,0,0,9,5,1,403,0,0,0 +4724,5816,10527,-9,-9,-9,1,1,0,82,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-931.8899573347567,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,1.5008083074359,0,0,0,0,26.56337218059084,1,1,0,0,0,0,0,40.38,23.69,2,3,0,0,8,1,0,1365,0,0,0 +4725,5817,10528,-9,10530,10529,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1155.588338400453,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,730.75,0,0,0 +4725,5817,10529,10530,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,4,8.516232283450018,8.447187104914899,0,2,0,-9,17,0,-1,36.77293310018372,0,0,0,37,1,4,1,2,1,2019,1,1,10,0,40,36,15,1,0,1,0,15.7959596033672,15.7959596033672,0,0,0,0,0,0,0,1,1,0,2.878179028088659,0,0,0,54.77,55.87,6,1,0,0,4,4,1,730.75,0,0,0 +4725,5817,10530,10529,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,7.152251882285401,7.641447660177668,0,2,0,-9,17,0,1,-7.690348806511293,0,0,1,36,1,4,1,1,1,2019,1,2,5,0,17,15,15,1,0,1,0,8.910805083227203,8.910805083227203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.4,55.04,6,1,0,0,4,4,1,730.75,0,0,0 +4725,5817,10531,-9,10530,10529,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.754777894965,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,730.75,0,0,0 +4726,5818,10532,10533,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,4,0,8.125234595337883,8.401170548201797,1,0,-9,33,0,-3,-37.51241477736876,0,0,0,63,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.527396092756037,8.25506115745539,0,0,57.16,56.15,6,1,0,0,5,4,1,322,0,0,0 +4726,5818,10533,10532,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.338480898503639,7.337888102283806,1,0,-9,33,0,3,150.1096020489088,0,0,0,60,2,4,3,3,2,2019,4,1,19,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.59267349928075,0,0,43.21,47.68,5,1,0,0,5,4,1,322,0,0,0 +4727,5819,10534,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,3,7.563276483670313,7.549190582874854,0,3,0,0,0,-9,0,-941.3745445812935,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,10,2,40,39,15,1,2,-9,0,5.271291968362323,5.271291968362323,0,0,0,0,0,0,0,1,1,0,.1743520642756257,0,0,0,47.48,33.6,4,1,0,0,5,3,0,3833,0,0,0 +4728,5820,10535,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,2,1,0,3,8.6444135423753,8.621621109095173,0,3,0,0,0,-9,0,-1068.54160531117,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,49,50,15,1,0,-9,0,9.850565442364337,9.850565442364337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.57,52.89,3,1,0,0,12,5,1,497,0,0,0 +4729,5821,10536,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,1,0,-982.3284678876344,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,6,3,0,0,8,1,0,1011,0,0,0 +4730,5822,10537,-9,-9,-9,1,1,0,89,3,0,0,0,1,-9,4,3,0,5,0,7.835003206105768,7.923353545447481,3,0,0,0,-9,0,-929.6143490854508,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.685521555438202,7.914565906732019,0,0,62.39,56.71,7,1,0,0,6,4,1,283,0,0,0 +4731,5823,10538,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,1,0,7.922071881372984,7.977543170943689,3,0,0,0,-9,0,-1065.052839946237,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.063580668483961,8.050590540306203,0,0,45.82,31.91,5,1,0,0,2,4,1,1714,0,0,0 +4732,5824,10539,10540,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,6.633193872817768,6.146088279898023,1,0,-9,7,0,1,9.117607370474746,0,0,0,79,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.198596648325335,0,0,48.78,35.42,2,1,0,0,13,2,1,297,0,0,0 +4732,5824,10540,10539,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-1,58.21855246885507,0,0,0,80,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,35.05,6,1,0,0,13,2,1,297,0,0,0 +4733,5825,10541,10542,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.922410973216131,7.72276488957008,0,1,0,-9,35,0,-12,-72.95803412795496,0,0,0,71,2,2,3,3,2,2019,2,1,6,0,20,20,15,1,0,4,0,13.85796651049449,13.85796651049449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,3,1,224,0,0,0 +4733,5825,10542,10541,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,6.371871567372871,6.745926031681099,1,0,-9,34,0,12,.2094787408497032,0,0,0,59,2,4,1,2,3,2019,3,2,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.288923395940139,6.306344338517287,0,0,53.05,18.05,4,1,0,0,9,3,1,224,0,0,0 +4733,5826,10543,-9,10541,10542,3,1,0,27,2,0,0,0,1,-9,2,1,0,3,8.627634305825531,8.333701162933744,0,3,0,0,0,-9,0,-1099.886517360715,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,0,15,1,0,-9,1,15.24705852176551,15.24705852176551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.9,57.01,2,1,0,0,9,4,1,762,0,0,0 +4733,5827,10544,-9,10541,10542,5,1,0,27,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1035.926485298842,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,40,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.34,3,1,1,0,9,1,1,903,0,0,0 +4733,5828,10545,-9,10541,10542,4,1,0,20,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-887.2446120360232,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,25,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,9,1,1,379,0,0,0 +4734,5829,10546,-9,-9,-9,1,1,1,78,2,0,0,0,1,-9,2,1,0,3,6.146345340261312,7.856341667812061,7.811515197265004,1,0,-9,7,0,18,92.86380463935444,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,12,1,4,0,15,1,1,-9,0,18.33175608291398,18.33175608291398,0,0,0,0,0,0,0,1,1,0,5.156075785035657,7.672691585931631,1.605365870319478,3,39.33,60.15,6,1,0,0,10,4,1,872,0,0,0 +4734,5830,10547,-9,-9,-9,2,1,1,60,2,0,0,0,2,-9,2,1,0,3,7.50381900816443,7.186828232055047,0,1,0,-9,7,0,-18,-62.84658167595946,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,5,0,40,28,15,1,0,-9,0,5.058671240537866,5.058671240537866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,49.68,6,1,0,0,10,4,1,1401,0,0,0 +4735,5831,10548,10549,-9,-9,2,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,5.222210675917694,5.062418602200628,1,0,-9,54,0,0,-35.94112217629704,0,0,0,78,1,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,7.628131569546447,0,6.463310810271604,0,0,80.73414011370849,1,1,0,.7650199282769626,5.409234366955602,2.425111931956164,2,51,46,6,1,0,0,7,3,1,551,0,0,0 +4735,5831,10549,10548,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,3,0,7.547814117851103,7.661018306177451,1,0,-9,54,0,0,35.61704784066798,0,0,0,78,1,3,3,2,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.173550223534978,7.963070936983653,0,0,53,46,5,1,0,0,7,3,1,551,0,0,0 +4736,5832,10550,10551,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,7.761578390369026,7.697567660022407,1,0,-9,55,0,0,13.87440080858422,0,0,0,77,3,4,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5206352343935952,7.735634349698712,0,0,40.84,43.4,7,1,0,0,11,2,1,1141.5,0,0,0 +4736,5832,10551,10550,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,56,0,0,29.08449268974007,0,0,0,77,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.621012628754407,0,0,0,58.15,52.91,6,1,0,0,11,2,1,1141.5,0,0,0 +4737,5833,10552,10553,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,3,8.286855055759844,8.316978556602326,0,1,0,-9,3,0,0,112.8183327461998,0,1,1,28,2,3,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,12.63428524435628,12.63428524435628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,9,3,1,724.5,0,0,0 +4737,5833,10553,10552,-9,-9,1,1,1,28,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,3,0,0,-11.98431606301851,0,1,0,28,1,3,1,2,2,2019,1,2,12,0,50,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.28,55.9,5,1,0,0,9,3,1,724.5,0,0,0 +4738,5834,10554,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.594233809764877,7.380611599621963,0,3,0,0,0,-9,0,-1004.983465781052,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,20,45,15,1,0,-9,0,11.2206635396554,11.2206635396554,0,0,0,0,0,0,0,0,0,0,0,0,6.845466855030535,3,43.2,59.97,6,1,0,0,13,3,0,910,0,0,0 +4739,5835,10555,10556,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,3,8.517592401887933,8.524096069255171,0,1,0,-9,6,0,-5,-87.5285807993574,0,0,1,39,2,4,1,2,1,2019,1,2,5,0,40,41,15,1,0,1,0,16.18382542361936,16.18382542361936,0,0,0,0,0,0,0,0,0,0,8.822001430183402,0,0,0,58.32,50.22,6,1,0,0,8,5,1,801.5,0,0,0 +4739,5835,10556,10555,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,4,9.066136744169849,8.876017867466059,0,1,0,-9,6,0,5,-100.1139792870506,0,0,0,34,1,3,1,-9,-9,2019,1,1,2,0,53,50,15,1,0,1,0,19.49050407390038,19.49050407390038,0,0,0,0,0,0,0,0,0,0,4.403501106743964,0,0,0,53.96,50.73,5,1,0,0,8,5,1,801.5,0,0,0 +4740,5836,10557,-9,-9,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-946.9092555022779,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,9,1,1,283,0,0,0 +4741,5837,10558,-9,-9,-9,1,1,0,18,2,0,0,0,2,1,2,1,0,5,7.811200070739874,7.650780831935208,0,3,0,0,0,-9,0,-1045.718110110775,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,70,0,15,1,0,-9,0,3.84849006362513,3.84849006362513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,3,0,478,0,0,0 +4742,5838,10559,10560,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,52,0,1,-103.9823476517417,0,0,0,72,3,3,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,5.797396295146228,0,0,0,0,1,1,0,.2011241673275468,0,0,0,35.9,26.98,5,1,0,0,6,2,0,768.5,0,0,0 +4742,5838,10560,10559,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,7.40200550464491,7.461518252672954,1,0,-9,11,0,-1,-62.91948556042959,0,0,0,73,3,1,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.222632775861111,0,0,48.48,37.25,5,1,0,0,6,2,0,768.5,0,0,0 +4742,5839,10561,-9,-9,-9,3,1,0,26,2,0,0,0,2,-9,2,1,0,4,7.47821296261734,7.264244670737355,0,3,0,-9,0,-9,0,-1079.170550318182,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,0,15,1,2,-9,0,4.096392489819464,4.096392489819464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,5,0,0,6,3,0,159,0,0,0 +4743,5840,10562,-9,10564,10563,4,1,1,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-963.5714839766166,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,3,0,0,5,2,1,793.3333333333334,0,0,0 +4743,5840,10563,10564,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,4,7.208473882368343,7.213297423046863,0,2,0,-9,31,0,0,-134.8084044811987,0,0,0,47,3,4,1,3,3,2019,1,2,11,2,20,20,15,1,2,1,0,8.024007230035073,8.024007230035073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,51.55,5,3,0,0,5,2,1,793.3333333333334,0,0,0 +4743,5840,10564,10563,-9,-9,2,1,0,47,1,0,1,0,3,-9,2,1,0,4,6.734510153334367,6.862856806312051,0,2,0,-9,31,0,0,26.69306751131938,0,0,0,47,1,4,1,3,3,2019,1,1,10,0,20,20,15,1,1,1,0,5.395435955525848,5.395435955525848,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,5,2,1,793.3333333333334,0,0,0 +4743,5841,10565,-9,10564,10563,3,1,1,21,2,0,1,0,3,-9,2,1,0,4,6.576827760028612,6.723186539042936,0,3,0,0,0,-9,0,-1016.684729244453,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,10,0,15,1,1,-9,1,8.816895962104688,8.816895962104688,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,5,2,1,950,0,0,0 +4744,5842,10566,10568,-9,-9,2,1,0,32,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,16,0,-12,-20.17283277427751,0,0,1,44,1,5,1,3,1,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,4,1,1,412.3333333333333,0,0,0 +4744,5842,10567,-9,10566,10568,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.6996785298045,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,4,1,1,412.3333333333333,0,0,0 +4744,5842,10568,10566,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,5,3.300414011062634,3.184126484837605,0,2,0,-9,16,0,12,24.80595454980211,0,0,0,32,2,4,3,3,2,2019,2,2,12,2,35,35,15,1,2,3,0,.0851369776453924,.0851369776453924,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.6,56.75,4,3,0,0,4,1,1,412.3333333333333,0,0,0 +4745,5843,10569,10570,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,5,0,7.922203471775704,8.025093371237444,1,0,-9,53,0,0,169.2190056908491,0,0,0,72,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.490976648388568,7.979262337555165,0,0,59.43,58.05,7,2,0,0,7,5,1,550.5,0,0,0 +4745,5843,10570,10569,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,4,0,8.285985897178008,8.530606931155384,1,0,-9,50,0,0,-30.16612078180902,0,0,0,72,1,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.623066443128198,8.853432479332412,0,0,57.16,56.15,6,1,0,0,7,5,1,550.5,0,0,0 +4746,5844,10571,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,3,7.45797752366282,7.760654430633969,6.665225359798617,3,0,0,0,-9,0,-885.3551810616376,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,40,32,15,1,1,-9,0,5.475285947005921,5.475285947005921,0,0,0,0,0,0,0,1,1,0,0,7.109349198079372,0,3,59.52,35.88,6,1,0,0,12,4,0,824,0,0,0 +4747,5845,10572,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,2,0,6.69878237895843,6.719002671687925,3,0,0,0,-9,0,-986.7358708272345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,9.363769222356851,0,0,0,1.208168161764113,8.126258567055057,1,1,0,3.6567851875318,6.795480666031416,0,0,42.93,27.57,4,1,0,0,11,2,0,97,0,0,0 +4748,5846,10573,10574,-9,-9,1,1,0,51,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,25,0,0,-4.135296596960781,0,0,0,60,1,4,1,1,1,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,10,5,1,464,0,0,0 +4748,5846,10574,10573,-9,-9,2,1,1,60,1,0,1,0,1,-9,2,1,0,4,9.704227818077149,9.677566875008031,0,2,0,-9,23,0,9,37.92897011176813,0,0,0,51,1,4,3,2,2,2019,2,1,6,0,60,45,15,1,0,3,0,27.21459852026777,27.21459852026777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,10,5,1,464,0,0,0 +4749,5847,10575,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,5,8.616583081653195,8.262445618951707,0,3,0,0,0,-9,0,-1086.731186422294,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,18.06728269931019,18.06728269931019,0,0,0,0,0,0,0,0,0,0,5.039272351387767,0,0,0,46.88,60.96,6,1,0,0,4,5,1,548,0,0,0 +4750,5848,10576,10577,-9,-9,2,1,1,64,1,0,1,0,3,-9,1,1,0,4,8.248068695567694,7.976026873467738,0,2,0,-9,7,0,22,-181.8638838963207,0,0,0,42,3,4,1,-9,-9,2019,1,1,8,0,50,56,15,1,0,1,0,7.300690860739238,7.300690860739238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,3,0,384.3333333333333,0,0,0 +4750,5848,10577,10576,-9,-9,1,1,0,42,1,0,1,0,3,-9,2,1,0,4,7.367063362154107,7.218869215899068,0,2,0,-9,11,0,-22,-25.70367287075846,0,0,1,64,3,4,1,3,3,2019,1,2,6,0,26,15,15,1,0,1,0,6.821018031969594,6.821018031969594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,6,3,0,384.3333333333333,0,0,0 +4750,5848,10578,-9,10577,10576,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.77971130052,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,3,0,0,6,3,0,384.3333333333333,0,0,0 +4751,5849,10579,10582,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,2,0,6.733255331506061,6.094686026012197,2,0,1,1,-9,7,60.61215029901644,0,0,0,41,2,3,1,-9,3,2019,3,4,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.102930912191694,0,0,0,38.33,33.78,5,1,0,1,7,3,0,918,0,0,0 +4751,5849,10580,-9,10579,10582,2,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1037.238990928179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,7,3,0,918,0,0,0 +4751,5849,10581,-9,10579,10582,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.8803901356191,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,0,918,0,0,0 +4751,5849,10582,10579,-9,-9,4,1,1,41,1,0,2,0,2,-9,2,1,0,3,8.167328011034678,8.276465376688124,0,2,0,-9,1,-9,-7,-104.3772880089838,-9,0,0,48,2,2,3,-9,-9,2019,2,1,21,9,36,0,15,1,9,3,0,11.3933915018589,11.3933915018589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.98,46.55,3,1,0,1,7,3,0,918,0,0,0 +4752,5850,10583,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,1,7.07144373426669,7.085549965013005,5.140717151521935,3,0,0,0,-9,0,-1004.616828331902,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,6,6,15,1,5,-9,0,22.55909638540925,22.55909638540925,0,0,0,0,0,0,0,1,0,1,0,5.097944966243022,0,0,47.89,24.44,2,4,0,0,8,2,0,80,0,0,0 +4753,5851,10584,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,6.183816124589648,6.569792618538146,3,0,0,0,-9,0,-912.6735845394934,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,10.96444280707075,7.90131103644263,0,0,1,1,0,0,6.539297767203866,0,0,28.09,56.66,6,1,0,0,13,2,1,169,0,0,0 +4754,5852,10585,-9,10587,10588,4,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1017.501286958295,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,4,1,1263.5,0,0,0 +4754,5852,10586,-9,10587,10588,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.386934842981,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,4,1,1263.5,0,0,0 +4754,5852,10587,10588,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,8.165835095426786,7.783814112927799,0,2,0,-9,14,0,-19,-35.25000108298145,0,0,1,56,2,3,1,3,3,2019,1,2,11,0,46,36,15,1,0,1,0,9.526631709316149,9.526631709316149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,5,4,1,1263.5,0,0,0 +4754,5852,10588,10587,-9,-9,2,1,1,56,1,0,2,0,2,-9,2,1,0,3,8.261624587135097,8.16628091729838,0,2,0,-9,8,0,19,16.88149279988221,0,0,0,37,2,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,12.25840042335641,12.25840042335641,0,0,0,0,0,0,0,1,1,0,2.088148354232101,0,0,0,50,49,5,1,0,0,5,4,1,1263.5,0,0,0 +4755,5853,10589,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1139.508159246612,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,48.3,4,1,0,0,8,1,0,337,0,0,0 +4756,5854,10590,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,2,8.363544858488376,8.163546402173415,0,3,0,0,0,-9,0,-1014.254624497677,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,38,40,15,1,12,-9,0,11.90115672565074,11.90115672565074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.5,53.92,2,1,0,0,4,4,1,719,0,0,0 +4757,5855,10591,-9,-9,-9,1,1,0,36,3,1,1,0,1,-9,2,1,0,3,8.300169710040148,8.733756318336093,0,4,0,0,0,-9,0,-1067.299257127196,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,1,30,40,15,1,1,-9,0,22.55831888754044,22.55831888754044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.28,50.37,2,1,0,0,13,4,1,608,0,0,0 +4757,5855,10592,-9,10591,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1008.046118848554,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,13,4,1,608,0,0,0 +4758,5856,10593,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,4,7.683749628067045,7.300070718916765,0,3,0,0,0,-9,0,-1039.979667747402,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,30,30,15,1,1,-9,0,8.268272247443672,8.268272247443672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,1,0,0,11,3,1,1488,0,0,0 +4759,5857,10594,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1043.812074593398,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.850591513327329,0,7.774821131743206,3,50.73,37.64,6,1,0,0,4,1,1,310,0,0,0 +4760,5858,10595,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1061.762306456633,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.599586992380885,0,0,0,42.2,14.42,3,1,0,0,2,1,1,237,0,0,0 +4761,5859,10596,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,1,1,0,3,7.419924188961441,6.998188109790714,0,3,0,0,0,-9,0,-1016.525050152575,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,39,40,15,1,0,-9,0,4.345131555259037,4.345131555259037,0,0,0,0,0,0,0,0,0,0,1.026575391576172,0,0,0,32.08,47.68,5,1,0,0,4,3,1,223,0,0,0 +4762,5860,10597,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,3,7.943444025027646,7.665743516522043,0,3,0,0,0,-9,0,-799.0118465500723,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,39,38,15,1,12,-9,0,7.470137354057217,7.470137354057217,0,0,0,0,0,0,0,0,0,0,1.422395206773463,0,2.998211918675899,3,29.54,58.14,2,4,0,0,6,4,1,805,0,0,0 +4763,5861,10598,10600,-9,10602,1,1,0,46,1,0,1,0,1,-9,2,1,0,5,8.528169925339579,8.550450479644857,0,2,0,-9,23,0,-2,-92.83180034959734,0,0,0,48,1,4,1,2,2,2019,1,2,17,6,57,50,15,1,6,1,0,10.22868829414401,10.22868829414401,0,0,0,0,0,0,0,1,1,0,0,0,18.27038513271425,3,38.77,63.46,4,1,0,0,5,5,1,434,0,0,0 +4763,5861,10599,-9,10598,10600,4,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.070090008291,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.535641821520589,3,47.62,56.48,6,1,0,0,5,5,1,434,0,0,0 +4763,5861,10600,10598,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.732401403823916,9.637707200790915,0,2,0,-9,9,0,2,57.24426371086563,0,0,0,46,1,5,1,2,1,2019,1,1,10,3,24,36,15,1,3,1,0,55.182851643154,55.182851643154,0,0,0,0,0,0,0,1,1,0,0,0,12.62620734466566,3,46.63,59.72,6,1,0,0,5,5,1,434,0,0,0 +4763,5862,10601,-9,10598,10600,3,1,0,18,2,0,1,0,2,-9,2,1,0,2,7.604017807844421,7.574065005339691,0,3,0,0,0,-9,0,-986.1306827910398,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,2,43,0,15,1,2,-9,1,5.050008107871488,5.050008107871488,0,0,0,0,0,0,0,1,1,0,0,0,7.492965945353251,3,32.81,50.34,3,1,0,0,5,3,1,230,0,0,0 +4763,5863,10602,-9,-9,-9,5,1,1,90,3,0,1,0,3,-9,4,3,0,3,0,6.262434044562609,6.267122018955282,4,0,0,0,-9,0,-842.4741118562472,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,1.017172747454367,0,25.36575261092383,24.04593438757965,32.48253822411547,78.16240430292753,1,1,0,7.006896649155699,5.868168266851544,0,0,55,45,6,1,0,0,5,2,1,3128,0,0,0 +4764,5864,10603,10604,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,6.101789139978567,6.420683824286128,1,0,-9,8,0,7,132.3345084853656,0,0,0,66,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.876387275566469,6.328961516316351,0,0,50.03,52.62,7,1,0,0,6,2,1,363,0,0,0 +4764,5864,10604,10603,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,6.906461809070287,7.031041292764441,1,0,-9,39,0,-7,9.515444856153506,0,0,0,73,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.888874391540651,0,0,58.61,40.49,6,1,0,0,6,2,1,363,0,0,0 +4765,5865,10605,-9,10609,10607,4,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1030.34553777482,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,5,1,0,0,7,2,1,762,0,0,0 +4765,5865,10606,-9,10609,10607,5,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.276778690862,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,7,2,1,762,0,0,0 +4765,5865,10607,10609,-9,-9,2,1,1,57,1,0,3,0,2,-9,1,1,0,3,6.384151588142969,6.868784830678933,0,2,0,-9,16,0,10,-55.17978607378524,0,0,0,47,1,3,1,2,2,2019,1,1,14,4,52,50,15,1,4,1,0,1.398402513009818,1.398402513009818,0,0,0,0,0,0,0,1,0,1,2.948755087798333,0,0,0,41.35,47.13,4,1,0,0,7,2,1,762,0,0,0 +4765,5865,10608,-9,10609,10607,3,1,1,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-955.8382907872893,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,5,1,0,0,7,2,1,762,0,0,0 +4765,5865,10609,10607,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,3,5.954720726975156,6.336858499909375,0,2,0,-9,16,0,-10,92.34047106066087,0,0,0,57,2,3,1,3,3,2019,1,2,11,0,5,8,15,1,0,1,0,10.75975570825717,10.75975570825717,0,0,0,0,0,0,0,1,0,1,1.907113157646277,0,0,0,44.47,55.39,6,1,0,0,7,2,1,762,0,0,0 +4766,5866,10610,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1035.531469475926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.1455508780236898,3,23.12,26.08,5,1,0,0,10,1,0,435,0,0,0 +4767,5867,10611,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,2,7.129138872449595,7.069923270345461,0,4,0,0,0,-9,0,-1068.450277782869,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,8,20,0,15,1,8,-9,0,6.693745007274317,6.693745007274317,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.73,48.25,2,1,0,1,5,2,0,745.5,0,0,0 +4767,5867,10612,-9,10611,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.1874742020838,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,2,0,745.5,0,0,0 +4768,5868,10613,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.322545394274517,7.89752721902877,7.10829939014137,3,0,0,0,-9,0,-1078.326220984902,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,35,33,15,1,0,-9,0,6.921475499100604,6.921475499100604,0,0,0,0,0,0,0,1,1,0,6.405477141445696,6.418056756137346,0,0,49.1,47.5,6,1,0,0,9,4,1,596,0,0,0 +4769,5869,10614,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-973.99108197058,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,9,1,1,581,0,0,0 +4769,5870,10615,-9,-9,-9,2,1,1,62,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-871.3427764226129,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.14375538425932,3,49.66,18.67,2,1,0,1,9,1,1,315,0,0,0 +4770,5871,10616,10617,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,1,8.898774908463416,8.630204984411455,0,1,0,-9,10,0,-2,29.25310630156942,0,0,0,53,2,3,1,2,2,2019,1,2,31,11,38,37,15,1,11,1,0,16.96878346819755,16.96878346819755,0,0,0,0,0,0,0,0,0,0,0,0,0,3,21.43,21.57,1,1,0,1,10,5,1,444.5,0,0,0 +4770,5871,10617,10616,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.703146755962247,7.795416083157096,0,1,0,-9,10,0,2,139.0865502578452,0,0,0,51,1,1,1,-9,-9,2019,1,1,14,2,46,37,15,1,2,1,0,6.814045317871592,6.814045317871592,0,0,0,0,0,0,0,0,0,0,3.183564805622639,0,5.660292406377999,2,33.83,57.61,4,1,0,0,10,5,1,444.5,0,0,0 +4771,5872,10618,10619,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,4,7.877000996146475,7.760180770574733,0,1,0,-9,6,0,-2,115.8170562435954,0,0,0,58,2,4,1,3,3,2019,1,1,6,0,28,28,15,1,0,1,0,8.176422990060503,8.176422990060503,0,0,0,0,0,0,0,0,0,0,3.86784921288333,0,0,0,62.49,55.09,7,1,0,0,13,4,1,842.5,0,0,0 +4771,5872,10619,10618,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,8.011239006802157,8.116269844289139,7.161155347525877,1,0,-9,6,0,2,62.44138026647293,0,0,0,56,3,4,1,3,3,2019,1,2,10,0,41,41,15,1,0,1,0,12.50303576751248,12.50303576751248,0,0,0,0,0,0,0,0,0,0,0,6.842304240199621,0,0,63.24,42.39,6,1,0,0,13,4,1,842.5,0,0,0 +4771,5873,10620,-9,10618,10619,3,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.978716007300096,7.470427997459064,0,3,0,0,0,-9,0,-977.7658100941825,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,42,15,1,0,-9,1,7.170248258633195,7.170248258633195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.58,52.99,6,1,0,0,13,3,1,249,0,0,0 +4772,5874,10621,10622,-9,-9,2,1,1,24,1,0,0,0,1,-9,2,1,0,4,8.238052893592327,8.515354679533552,0,1,0,-9,1,-9,-1,85.23453313419573,-9,1,0,25,1,4,1,-9,-9,2019,1,1,14,2,47,0,15,1,2,1,0,12.63132517604614,12.63132517604614,0,0,0,0,0,0,0,0,0,0,2.519104459368409,0,0,0,44.95,58.82,4,1,0,0,4,5,1,949,0,0,0 +4772,5874,10622,10621,-9,-9,1,1,0,25,1,0,0,0,1,1,2,1,0,4,8.040599852840579,8.241149191218041,0,1,0,1,1,-9,1,1.441803932464949,-9,1,1,24,1,4,1,-9,-9,2019,1,2,12,0,46,0,15,1,0,1,0,8.568748886012937,8.568748886012937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,47.38,6,1,0,0,4,5,1,949,0,0,0 +4773,5875,10623,-9,10624,10625,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.5419122768765,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,5,0,567.3333333333334,0,0,0 +4773,5875,10624,10625,-9,-9,1,1,0,52,1,0,1,0,1,-9,2,1,0,3,8.043715239939628,7.970379220587165,0,2,0,-9,7,0,12,-56.88479862529793,0,0,0,40,3,4,1,3,3,2019,1,2,27,12,24,21,15,1,12,1,0,14.45148896664526,14.45148896664526,0,0,0,0,0,0,0,1,1,0,1.011451105968918,0,0,0,30.16,63.19,2,1,0,0,8,5,0,567.3333333333334,0,0,0 +4773,5875,10625,10624,-9,-9,2,1,1,40,1,0,1,0,3,-9,1,1,0,4,8.787014921085698,8.746333695705143,0,2,0,-9,7,0,-12,-27.31320768923661,-9,0,0,52,1,3,1,-9,-9,2019,1,1,9,0,85,0,15,1,1,1,0,7.446107742331655,7.446107742331655,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,8,5,0,567.3333333333334,0,0,0 +4774,5876,10626,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,0,3.855668644785069,4.162089712092807,3,0,0,0,-9,0,-1036.592514798309,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,3.144230297099148,0,6.418305246763452,0,1,1,0,0,3.727827989042324,0,0,59.68,19.97,7,1,0,0,2,2,1,2051,0,0,0 +4775,5877,10627,10628,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,3,0,8.639755640971647,8.850095623160462,1,0,-9,57,0,4,72.55898718516012,0,0,0,76,2,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.866291536759259,8.848792149853615,0,0,49.05,47.83,6,1,0,0,10,4,1,813.5,0,0,0 +4775,5877,10628,10627,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,4.609417115250397,4.371989506447373,1,0,-9,57,0,-4,-20.52117739680653,-9,0,0,80,1,3,3,2,2,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.311507382970216,4.555787787566855,0,0,45.65,43.69,2,1,0,1,10,4,1,813.5,0,0,0 +4776,5878,10629,10630,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.420450345385829,7.362332359209697,0,1,0,-9,38,0,1,3.544450125567891,0,0,0,58,1,3,1,2,3,2019,1,2,25,11,18,30,15,1,11,1,0,11.7194550749853,11.7194550749853,0,0,0,0,0,0,0,0,0,0,2.970049353594442,0,6.756408488207252,3,22.56,57.29,4,1,0,0,6,5,1,422.5,0,0,0 +4776,5878,10630,10629,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,3,9.005501268058611,8.960806078556814,0,1,0,-9,38,0,-1,-12.15912286117552,0,0,0,59,2,3,1,3,3,2019,1,1,11,1,35,35,15,1,1,1,0,22.76317944638966,22.76317944638966,0,0,0,0,0,0,0,0,0,0,4.34933175909651,0,0,0,60.18,39.83,6,1,0,0,6,5,1,422.5,0,0,0 +4777,5879,10631,10633,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.461974350678817,8.066175521081192,0,2,0,-9,14,0,-5,12.12182449302207,0,0,1,46,1,5,1,2,2,2019,1,1,9,0,31,28,15,1,0,1,0,17.08482648734274,17.08482648734274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,1312.75,0,0,0 +4777,5879,10632,-9,10631,10633,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1088.499599423609,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,9,5,1,1312.75,0,0,0 +4777,5879,10633,10631,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,5,8.932127752663693,8.536391366470109,0,2,0,-9,14,0,5,52.26208414533104,0,0,0,41,1,4,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,17.2724242439342,17.2724242439342,0,0,0,0,0,0,0,1,1,0,.545693354399337,0,0,0,57.06,57.76,6,1,0,0,9,5,1,1312.75,0,0,0 +4777,5879,10634,-9,10631,10633,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.738254325152,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,1312.75,0,0,0 +4778,5880,10635,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,1,1,0,2,8.393709242599424,8.294074379944142,0,3,0,-9,0,-9,0,-918.9824497683497,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,60,0,15,1,0,-9,0,8.112687029954101,8.112687029954101,0,0,0,0,0,0,0,0,0,0,0,0,8.605808262455175,3,40.07,48.32,5,1,0,0,2,4,1,592,0,0,0 +4779,5881,10636,10637,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,3,8.071440563328807,8.091464182896395,0,1,0,-9,8,0,2,65.98213570672893,0,0,1,32,1,3,1,1,1,2019,1,1,17,6,37,38,15,1,6,1,0,10.55713844477889,10.55713844477889,0,0,0,0,0,0,0,0,0,0,4.583440968086391,0,0,0,42.22,56.11,6,1,0,0,10,5,1,226,0,0,0 +4779,5881,10637,10636,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,3,8.056242085311863,8.45900080411325,0,1,0,-9,8,0,-2,27.24038807351217,0,0,0,34,1,3,1,1,1,2019,1,2,10,0,47,45,15,1,0,1,0,8.335467115626919,8.335467115626919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.79,58.34,5,1,0,0,10,5,1,226,0,0,0 +4780,5882,10638,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-974.4309815078548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.52,50.23,6,3,1,0,8,1,0,287,0,0,0 +4781,5883,10639,-9,10642,10641,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-812.6270179580266,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,1,0,271,0,0,0 +4781,5883,10640,-9,10642,10641,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.129260989201,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,1,0,271,0,0,0 +4781,5883,10641,10642,-9,-9,2,1,1,40,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,8,0,4,0,0,0,0,36,3,1,3,2,2,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.6,53.51,3,1,0,0,4,1,0,271,0,0,0 +4781,5883,10642,10641,-9,-9,1,1,0,36,1,0,3,0,3,-9,3,3,0,1,0,0,0,2,0,-9,8,0,-4,0,0,0,1,40,2,2,3,2,2,2019,4,2,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.78,23.34,1,1,1,1,4,1,0,271,0,0,0 +4781,5883,10643,-9,10642,10641,4,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.501847750442,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,1,0,271,0,0,0 +4782,5884,10644,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,2,7.778035735305548,8.399036499262881,4.802660637401439,3,0,0,0,-9,0,-843.984194554535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,37,37,15,1,1,-9,0,9.8646800561084,9.8646800561084,0,0,0,0,0,0,0,0,0,0,0,4.640384482195033,0,0,38.45,39.53,4,1,0,0,9,4,1,204,0,0,0 +4782,5885,10645,-9,10644,-9,2,1,0,33,2,0,0,0,1,-9,2,1,0,4,8.40908334964274,8.073318218317485,0,3,0,0,0,-9,0,-1029.877488544862,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,8,39,38,15,1,8,-9,1,9.278966478410675,9.278966478410675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.09,62.53,2,1,0,0,9,4,1,233,0,0,0 +4783,5886,10646,10647,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,3,9.406619324767499,9.684436123874555,0,1,0,-9,8,0,6,21.24028740048188,0,0,0,48,1,4,1,2,2,2019,1,2,10,0,50,60,15,1,1,1,0,37.22754166841116,37.22754166841116,0,0,0,0,0,0,0,0,0,0,7.006085177178402,0,0,0,50,49,5,1,0,0,2,5,1,681,0,0,0 +4783,5886,10647,10646,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,4,9.482409319206953,9.219421003645969,0,1,0,-9,8,0,-6,88.23994518131657,0,0,0,54,1,3,1,2,2,2019,1,1,8,0,90,45,15,1,0,1,0,23.92757721346067,23.92757721346067,0,0,0,0,0,0,0,0,0,0,6.450607340238267,0,0,0,51.24,58.84,6,1,0,0,2,5,1,681,0,0,0 +4784,5887,10648,-9,10649,-9,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.289478163362,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,1,0,647.6666666666666,0,0,0 +4784,5887,10649,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-992.2008872935354,-9,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.7136869010463,3,41.71,54.32,3,1,1,1,1,1,0,647.6666666666666,0,0,0 +4784,5887,10650,-9,10649,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-960.9577594649667,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,1,0,0,1,1,0,647.6666666666666,0,0,0 +4784,5888,10651,-9,10649,-9,3,1,0,19,2,0,2,1,2,0,7,2,0,2,0,7.26895366902962,7.367973933359245,3,0,0,0,-9,0,-947.2420263169861,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,29,11,0,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.036874572306526,0,0,0,23.52,47.81,2,1,0,0,1,2,0,1256,0,0,0 +4785,5889,10652,10653,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,1,0,7.502261254335284,7.029280973530399,1,0,-9,49,0,-4,-133.9568905341115,0,0,0,72,3,4,3,-9,-9,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,120.2175735861819,0,0,0,0,1,1,0,7.274660762581243,7.36805499341675,0,0,47.36,16.34,6,1,0,0,10,2,0,5505.5,0,0,0 +4785,5889,10653,10652,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,49,0,4,75.3422131130053,0,0,0,68,2,1,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,118.7307683840418,1,48.53,58.91,6,1,0,0,10,2,0,5505.5,0,0,0 +4786,5890,10654,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-944.4891068313747,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.37,60.64,3,1,0,0,12,1,0,285,0,0,0 +4787,5891,10655,-9,10658,10656,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.48083909103,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,3,0,0,6,2,1,698.4,0,0,0 +4787,5891,10656,10658,-9,-9,2,1,1,45,1,0,3,0,1,-9,1,1,0,3,6.896297627911026,6.913066466610005,0,2,0,-9,15,0,6,14.26396338172788,0,0,0,39,1,3,3,3,2,2019,2,1,20,8,25,30,15,1,8,3,0,4.023878807186882,4.023878807186882,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.49,44.17,3,3,0,0,6,2,1,698.4,0,0,0 +4787,5891,10657,-9,10658,10656,3,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-933.8516282777667,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,5,3,0,0,6,2,1,698.4,0,0,0 +4787,5891,10658,10656,-9,-9,1,1,0,39,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,15,0,-6,-73.14884239549833,0,0,1,45,1,3,1,3,2,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.51,59.43,5,3,0,1,6,2,1,698.4,0,0,0 +4787,5891,10659,-9,10658,10656,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.0609195879363,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,3,0,0,6,2,1,698.4,0,0,0 +4788,5892,10660,-9,10664,10663,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.2878190963131,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,2,0,625.8,0,0,0 +4788,5892,10661,-9,10664,10663,2,1,0,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-951.1754153294867,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,10,2,0,625.8,0,0,0 +4788,5892,10662,-9,10664,10663,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.354365490748,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,10,2,0,625.8,0,0,0 +4788,5892,10663,10664,-9,-9,3,1,1,36,1,1,3,0,2,-9,2,1,0,4,8.016526409268112,8.033433206829313,0,2,0,-9,7,0,2,6.990296337444062,-9,0,0,34,3,3,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,8.475091479385394,8.475091479385394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,1,10,2,0,625.8,0,0,0 +4788,5892,10664,10663,-9,-9,1,1,0,34,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-2,124.5996826758811,0,0,1,36,2,4,1,-9,-9,2019,3,3,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.537507700777608,3,43.12,58.55,4,1,0,0,10,2,0,625.8,0,0,0 +4789,5893,10665,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,3,8.790090097785107,8.789950793649053,0,3,0,0,0,-9,0,-950.0824838654665,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,19,8,45,40,15,1,8,-9,0,17.03329629184913,17.03329629184913,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.75,58.93,2,1,0,0,10,5,1,329,0,0,0 +4790,5894,10666,10667,-9,-9,1,1,1,54,1,1,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,35,0,6,0,0,0,0,48,3,4,3,3,2,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.80968177136942,3,53,54,6,3,0,0,8,1,0,920.6666666666666,0,0,0 +4790,5894,10667,10666,-9,-9,2,1,0,48,1,1,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,8,0,-6,0,0,0,0,54,3,4,3,3,3,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89804809962012,3,50,54,6,3,0,0,8,1,0,920.6666666666666,0,0,0 +4790,5894,10668,-9,10667,10666,8,1,1,2,2,1,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-958.3188091937368,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,5,0,0,8,1,0,920.6666666666666,0,0,0 +4791,5895,10669,10670,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,5,9.605646500129408,9.371723927483449,0,1,0,-9,15,0,6,-3.956276554585786,0,0,0,34,1,4,3,2,1,2019,2,2,6,0,37,40,15,1,0,3,0,35.55116335816588,35.55116335816588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.2,54.53,2,3,0,0,8,5,1,3389.5,0,0,0 +4791,5895,10670,10669,-9,-9,2,1,0,34,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,15,0,-6,-44.74740734698821,0,0,1,40,1,5,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.62,54.33,6,3,1,0,8,5,1,3389.5,0,0,0 +4792,5896,10671,-9,-9,-9,1,1,0,45,2,0,0,0,3,-9,2,1,0,3,7.643723883309089,7.625974283579129,0,3,0,0,0,-9,0,-916.1015639299552,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,54,36,15,1,0,-9,0,5.525474513632703,5.525474513632703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.97,39.4,4,1,0,1,11,3,0,560,0,0,0 +4792,5897,10672,-9,10671,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.730442134777835,8.137371645708916,0,3,0,0,0,-9,0,-1155.044858684799,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,40,0,15,1,0,-9,1,6.364491005263434,6.364491005263434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,7,1,0,0,11,3,0,661,0,0,0 +4792,5898,10673,-9,10671,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,5,7.660553925570883,7.755111372513222,0,3,0,0,0,-9,0,-970.0376769322241,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,50,36,15,1,0,-9,1,5.310942562870714,5.310942562870714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,11,3,0,293,0,0,0 +4793,5899,10674,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,2,0,7.362662240566754,7.700297331317639,3,0,0,0,-9,0,-946.6567560081236,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.484122289338871,7.861838831597667,0,0,44.41,46.23,6,1,0,0,11,3,1,1386,0,0,0 +4794,5900,10675,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.889598984185166,8.244549634625869,3.928249620023146,3,0,0,0,-9,0,-1028.740713633912,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,31,37,15,1,0,-9,0,10.00341605311211,10.00341605311211,0,0,0,0,0,0,0,1,1,0,3.545781417009895,4.223849224452813,0,0,54.37,54.8,6,1,0,0,4,3,1,438,0,0,0 +4795,5901,10676,10678,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,5,8.313447179394974,7.786989226803422,0,2,0,-9,9,0,-5,-11.17993383501333,0,0,1,47,2,3,1,3,2,2019,1,2,9,0,25,25,15,1,0,1,0,11.74445473150104,11.74445473150104,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.92,62.31,6,1,0,0,10,5,1,720.5,0,0,0 +4795,5901,10677,-9,10676,10678,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.483137159762,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,720.5,0,0,0 +4795,5901,10678,10676,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.964315766137089,8.602818587867086,0,2,0,-9,9,0,5,-72.58008826089034,0,0,0,42,2,5,1,2,3,2019,1,1,10,0,37,37,15,1,0,1,0,21.14396073420937,21.14396073420937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,1,0,0,10,5,1,720.5,0,0,0 +4795,5901,10679,-9,10676,10678,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.767007757601,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,5,1,720.5,0,0,0 +4796,5902,10680,10681,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.972668397100929,7.829303721089438,4.745505608131691,1,0,-9,4,0,-5,-33.59147327570865,0,0,0,61,2,2,1,2,-9,2019,1,2,12,0,40,32,15,1,0,1,0,7.233447624309024,7.233447624309024,0,0,0,0,0,0,0,0,0,0,0,5.459491082900958,0,0,47.75,53.7,5,1,0,0,11,5,1,437,0,0,0 +4796,5902,10681,10680,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,2,8.362693597549089,8.985708354390974,6.874269741699742,1,0,-9,4,0,5,13.79414499441743,0,0,0,56,2,3,1,-9,-9,2019,1,1,11,1,46,47,15,1,1,1,0,12.09827804491946,12.09827804491946,0,0,0,0,0,0,0,0,0,0,.5592615006152395,7.479299060431593,0,0,49.81,51.82,5,1,0,0,11,5,1,437,0,0,0 +4797,5903,10682,10683,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.744649761080755,8.648868191075726,0,1,0,-9,4,0,-1,90.61037051660577,0,0,0,53,2,3,1,-9,-9,2019,1,1,8,0,53,44,15,1,0,1,0,17.65651431114359,17.65651431114359,0,0,0,0,0,0,0,0,0,0,0,0,27.69544003575281,3,52.54,54.24,5,1,0,0,12,5,1,1620,0,0,0 +4797,5903,10683,10682,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.414495535952396,8.402849020551463,4.680958348087429,1,0,-9,4,0,1,-113.9440376809446,0,0,0,52,2,3,1,2,3,2019,1,2,11,0,43,41,15,1,0,1,0,13.92870850301183,13.92870850301183,0,0,0,0,0,0,0,0,0,0,6.781332436548144,5.089273491841912,39.7913628702957,3,47.6,50.99,6,1,0,0,12,5,1,1620,0,0,0 +4798,5904,10684,10685,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,1,0,0,0,0,71,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,6,1,0,0,13,1,1,605,0,0,0 +4798,5904,10685,10684,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,-1,0,0,0,0,72,2,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,7,1,0,0,13,1,1,605,0,0,0 +4799,5905,10686,-9,-9,-9,1,1,0,50,3,0,0,0,2,1,2,1,0,3,7.65372513565635,7.426540619424951,0,3,0,0,0,-9,0,-1017.407015534426,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,20,0,15,1,1,-9,0,10.17241028464072,10.17241028464072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.15,48.98,6,1,0,0,6,3,1,1029,0,0,0 +4799,5906,10687,-9,10686,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-936.4591989031819,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,6,1,1,280,0,0,0 +4800,5907,10688,10691,-9,-9,1,1,0,26,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,-4,-46.60441779663985,0,1,1,30,3,4,1,3,3,2019,3,4,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.6,54.09,4,3,1,0,9,2,0,1063,0,0,0 +4800,5907,10689,-9,10688,10691,2,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.8948389666684,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,2,0,1063,0,0,0 +4800,5907,10690,-9,10688,10691,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.813252569136,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,9,2,0,1063,0,0,0 +4800,5907,10691,10688,-9,-9,4,1,1,30,1,0,2,0,3,-9,2,1,0,4,7.427886862892629,7.133659825956227,0,2,0,-9,2,0,4,-68.58703716027404,-9,0,0,26,2,3,3,-9,-9,2019,2,1,11,0,20,0,15,1,0,3,0,7.359701506436689,7.359701506436689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,56.08,5,3,0,0,9,2,0,1063,0,0,0 +4801,5908,10692,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,2,0,7.093431772435494,7.117389745253346,3,0,0,0,-9,0,-1055.899114991758,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,44,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.787714606266898,6.802991434959541,0,0,46.84,28.89,5,1,0,0,9,2,1,700,0,0,0 +4802,5909,10693,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,2,0,7.351214635826109,6.965675988806153,3,0,0,0,-9,0,-1016.023698815183,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2204064647285512,7.373160716444005,25.00847797516963,3,45.84,18.58,5,1,0,0,9,3,1,818,0,0,0 +4803,5910,10694,10695,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,5,0,7.484903226111173,7.502622677875416,1,0,-9,7,0,-6,-73.41613279871123,0,0,0,75,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.454643418944856,2.393000234881869,3,57.06,57.76,7,1,0,0,11,3,1,379.5,0,0,0 +4803,5910,10695,10694,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,6.259349021574068,6.107172043013662,1,0,-9,7,0,6,-89.523390239137,0,0,0,69,2,5,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.911038495057892,6.165383644691201,1.106716614295307,3,56.5,51,6,1,0,0,11,3,1,379.5,0,0,0 +4804,5911,10696,10698,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,2,9.459238497118152,9.384419891317751,0,2,0,-9,28,0,1,-106.3693506982574,0,0,0,46,1,4,1,1,2,2019,1,1,5,0,30,35,15,1,0,1,0,37.52896873638362,37.52896873638362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.03,31.71,6,1,0,0,2,5,1,514.25,0,0,0 +4804,5911,10697,-9,10696,10698,6,1,0,14,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1029.315050449784,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,4,1,0,0,2,5,1,514.25,0,0,0 +4804,5911,10698,10696,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.824803660282102,9.649262381028411,0,2,0,-9,28,0,-1,-40.60837239469184,0,0,0,47,1,2,1,2,1,2019,1,2,11,3,45,45,15,1,3,1,0,45.95503652190778,45.95503652190778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,64.97,6,1,0,0,2,5,1,514.25,0,0,0 +4804,5911,10699,-9,10696,10698,5,1,1,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-965.9995731519821,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,56.19,6,1,0,0,2,5,1,514.25,0,0,0 +4804,5912,10700,-9,10696,10698,3,1,0,22,2,0,2,0,1,-9,2,1,0,4,7.625953064871286,7.74914775832737,0,3,0,0,0,-9,0,-1102.548258112996,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,35,40,15,1,0,-9,1,6.252911038917706,6.252911038917706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,5,1,0,0,2,3,1,773,0,0,0 +4804,5913,10701,-9,10696,10698,4,1,0,19,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1040.405243448672,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.0352782243083485,0,0,0,43.37,57.28,6,1,0,0,2,1,1,435,0,0,0 +4805,5914,10702,10704,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,5,8.641181050087994,8.216424964155575,0,2,0,-9,1,-9,-1,94.44118498741808,-9,1,0,29,1,5,1,-9,-9,2019,1,1,7,0,50,0,15,1,0,1,0,10.45399119141454,10.45399119141454,0,0,0,0,0,0,0,1,1,0,1.828663287380776,0,0,0,55.09,55.87,6,1,0,0,11,5,1,336,0,0,0 +4805,5914,10703,-9,10704,10702,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-921.8935926386397,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,5,1,336,0,0,0 +4805,5914,10704,10702,-9,-9,1,1,0,29,1,1,1,0,1,-9,5,1,0,5,9.127706275632125,8.948760211790832,0,2,0,-9,1,-9,1,-78.7066683666053,-9,1,1,28,2,5,1,-9,-9,2019,1,2,8,0,50,0,15,1,0,1,0,18.66003085637803,18.66003085637803,0,0,0,0,0,0,0,1,1,0,2.273381870677998,0,0,0,48.77,60.16,6,1,0,0,11,5,1,336,0,0,0 +4806,5915,10705,10706,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,7.782242544777096,7.565216431584664,1,0,-9,35,0,0,-8.240183374870487,0,0,0,72,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.847610899212166,7.911477169398345,0,0,57.06,57.76,6,1,0,0,4,3,1,466.5,0,0,0 +4806,5915,10706,10705,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,6.785952750550088,6.796888235062807,1,0,-9,35,0,0,-61.66436363044862,0,0,0,72,2,5,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.012105989932928,6.872662913814911,0,0,55.36,51.57,6,1,0,0,4,3,1,466.5,0,0,0 +4806,5916,10707,-9,10706,10705,3,1,0,44,2,0,0,0,2,-9,2,1,0,4,7.66994666232167,7.618981249667538,0,3,0,0,0,-9,0,-974.0236867060032,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,48,15,1,0,-9,1,5.834797777178198,5.834797777178198,0,0,0,0,0,0,0,1,1,0,5.731605206171333,0,0,0,56.14,41.52,6,1,0,0,4,3,1,2198,0,0,0 +4807,5917,10708,10709,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,1,0,6.826692370480492,7.159360096027194,1,0,-9,51,0,0,-86.4763540386225,0,0,0,76,1,3,3,3,2,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,1.863341482093178,9.447892363279159,0,0,0,15.41296897222398,1,1,0,3.644433578551733,7.157204964530927,0,0,46.23,19.58,6,1,0,0,5,4,1,1048.5,0,0,0 +4807,5917,10709,10708,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,3,4.769722406751652,8.017777904951586,8.190972772768296,1,0,-9,51,0,0,-14.28079486166487,0,0,0,76,2,1,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0832800212176,1.43545659750854,3,57.33,53.46,6,1,0,0,5,4,1,1048.5,0,0,0 +4808,5918,10710,10712,-9,-9,1,1,1,51,1,0,1,0,2,-9,1,1,0,3,8.626401896968266,8.508046073306369,0,2,0,-9,15,0,3,-107.5168129443842,0,0,0,48,2,4,1,-9,2,2019,1,2,7,0,40,45,15,1,0,1,0,17.63827533126001,17.63827533126001,0,0,0,0,0,0,0,1,1,0,7.626693458492719,0,0,0,58.32,50.22,2,1,0,0,10,4,1,467.6666666666667,0,0,0 +4808,5918,10711,-9,10712,10710,4,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.983444931441,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,467.6666666666667,0,0,0 +4808,5918,10712,10710,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,4,6.648025581830376,6.757841121999546,0,2,0,-9,15,0,-3,12.01676873025297,0,0,0,51,2,3,1,2,-9,2019,1,1,6,0,10,10,15,1,0,1,0,9.311353241114469,9.311353241114469,0,0,0,0,0,0,0,1,1,0,.6548719375626892,0,0,0,65.07000000000001,44.28,6,1,0,0,10,4,1,467.6666666666667,0,0,0 +4808,5919,10713,-9,10712,10710,3,1,0,18,2,0,1,0,2,1,2,1,0,5,7.320085170913256,6.938007188166194,0,3,0,0,0,-9,0,-1002.681194496547,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,19,0,15,1,3,-9,1,7.285327565875149,7.285327565875149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.35,57.84,6,1,0,0,10,2,1,378,0,0,0 +4809,5920,10714,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,4,8.063518986155824,8.110481376312293,0,3,0,0,0,-9,0,-1075.376677230887,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,3,37,45,15,1,3,-9,0,10.029127205463,10.029127205463,0,0,0,0,0,0,0,1,1,0,0,0,3.010422469990996,3,53.47,34.63,7,1,0,0,10,4,0,346,0,0,0 +4810,5921,10715,10716,-9,-9,2,1,1,70,1,0,0,0,3,-9,1,1,0,2,7.02613488177106,7.241200294129865,5.342728657050871,1,0,-9,46,0,3,-14.49864935541883,0,0,0,67,2,5,3,3,3,2019,2,1,6,0,8,10,15,1,0,4,0,14.41690834443514,14.41690834443514,1,0,14.18045900800038,0,0,0,0,1,1,0,5.741550539667521,5.349767311268323,0,0,61.7,39.56,5,1,0,1,8,2,1,837.5,0,0,0 +4810,5921,10716,10715,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,5,0,6.530232207015578,6.746793737540647,1,0,-9,46,0,-3,-9.6199160291859,0,0,0,70,3,2,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.090886399406826,6.287426668513159,0,0,57.8,50.59,7,1,0,0,8,2,1,837.5,0,0,0 +4811,5922,10717,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,6.899822024910788,6.459089313775038,3,0,0,0,-9,0,-945.950286069663,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.684321905056743,6.566302397551349,1.121676509914101,3,36.31,41.6,6,1,0,0,4,2,0,259,0,0,0 +4812,5923,10718,10719,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,4.664890530144987,4.607887139810021,1,0,-9,7,0,2,-71.50951685955215,0,0,0,66,3,2,3,3,3,2019,4,2,8,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.882715200068358,4.613664187986285,119.9282809467135,1,51.24,58.84,6,1,0,0,10,1,1,336.5,0,0,0 +4812,5923,10719,10718,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-2,39.45553186463238,0,0,0,68,2,4,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,14.69511662257606,20.06540607074514,0,0,4.884458442038731,126.6274851613516,1,1,0,0,0,0,0,30.68,19.95,4,1,0,0,10,1,1,336.5,0,0,0 +4812,5924,10720,-9,10719,10718,3,1,1,27,2,0,0,0,2,-9,2,1,0,3,8.068686817597046,8.070619134254416,0,3,0,0,0,-9,0,-958.3864926545074,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,42,45,15,1,0,-9,1,7.438474004685571,7.438474004685571,0,0,0,0,0,0,0,1,1,0,0,0,13.91030215379839,3,46.97,53.06,5,1,0,0,10,4,1,1774,0,0,0 +4813,5925,10721,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-1005.276525274929,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,41.56,5,3,0,0,2,1,0,130,0,0,0 +4813,5926,10722,-9,-9,-9,2,1,0,26,2,0,0,0,1,-9,2,1,0,4,7.295392457889102,7.078799058306107,0,3,0,0,0,-9,0,-967.6249779967443,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,30,27,15,1,0,-9,0,7.13556105197644,7.13556105197644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.46,40.22,7,3,0,0,2,3,0,5441,0,0,0 +4813,5927,10723,-9,-9,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.080101676508027,7.665366988596062,0,3,0,0,0,-9,0,-1062.281891482945,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,35,0,15,1,2,-9,0,8.727713177013671,8.727713177013671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,41.56,7,3,0,0,2,4,0,769,0,0,0 +4813,5928,10724,-9,-9,-9,4,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.060574433490194,8.351520636353085,0,3,0,0,0,-9,0,-1024.123425310308,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,32,0,15,1,0,-9,0,13.75338540912679,13.75338540912679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.57,42.17,6,3,0,0,2,4,0,240,0,0,0 +4813,5929,10725,-9,-9,-9,5,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1138.750771603287,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.76,43.53,7,3,0,0,2,1,0,2040,0,0,0 +4814,5930,10726,10727,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.23016706991065,7.231225943892093,1,0,-9,45,0,6,71.21036119233123,0,0,0,65,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.824467447707352,6.528136928420804,0,0,63.81,32.9,5,1,0,0,7,2,1,389,0,0,0 +4814,5930,10727,10726,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,6.603965434766488,6.683291529672091,1,0,-9,45,0,-6,-87.01550896802593,0,0,0,71,2,3,3,3,-9,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.298666309155533,6.602599134973134,0,0,46.67,34.44,4,1,0,0,7,2,1,389,0,0,0 +4815,5931,10728,10729,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,5,8.03649777197556,8.274249598379859,0,1,0,-9,1,-9,2,-1.742982425339211,-9,0,1,28,1,5,1,-9,-9,2019,1,1,7,0,41,0,15,1,0,1,0,8.766330129923988,8.766330129923988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,3,0,0,8,5,1,1855,0,0,0 +4815,5931,10729,10728,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,5,8.673440801875426,8.103236933708889,0,1,0,1,1,-9,-2,-84.97198931740228,0,1,0,30,1,5,1,-9,-9,2019,1,2,7,0,48,51,15,1,0,1,0,13.4202303352037,13.4202303352037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,5,1,1855,0,0,0 +4816,5932,10730,-9,10732,10731,3,1,1,18,2,0,2,0,2,1,97,3,0,1,0,0,0,3,0,0,0,-9,0,-997.2425010052735,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,22,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,23.74,51.79,3,1,0,1,2,2,0,304,0,0,0 +4816,5933,10731,10732,-9,-9,4,1,1,49,1,0,2,0,2,-9,1,1,0,4,5.940582629261686,6.172028595891496,0,2,0,-9,3,0,4,20.84291359566545,0,0,0,45,2,3,1,-9,-9,2019,1,1,9,0,0,50,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,5,0,0,2,2,0,539.5,0,0,0 +4816,5933,10732,10731,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,3,7.230626198184784,7.195083487875172,0,2,0,-9,3,0,-4,120.4438726151726,0,0,0,49,2,4,1,-9,-9,2019,1,4,13,2,24,24,15,1,2,1,0,6.385148202494437,6.385148202494437,0,0,0,0,0,0,0,1,1,0,0,0,68.97754506472211,3,45.48,52.14,3,1,0,0,2,2,0,539.5,0,0,0 +4817,5934,10733,10734,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,6.831200209951575,6.977153266078878,1,0,-9,54,0,4,-42.84959914429154,0,0,0,75,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.059687505889625,0,0,54,46,7,1,0,0,4,2,1,779.5,0,0,0 +4817,5934,10734,10733,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,54,0,-4,-79.51178724850732,0,0,0,79,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.44,34.65,7,1,0,0,4,2,1,779.5,0,0,0 +4818,5935,10735,-9,10736,10737,5,1,0,16,2,0,3,1,2,-9,7,2,0,4,3.874243542447222,3.983184878182068,0,2,0,0,0,-9,0,-956.7802048105566,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,54.86,7,1,0,0,10,3,0,598.75,0,0,0 +4818,5935,10736,10737,-9,-9,1,1,0,42,1,0,3,0,2,-9,10,3,0,2,0,.0727654895537098,0,2,0,-9,21,0,1,10.46837569533705,0,0,1,41,2,4,1,3,2,2019,3,2,11,0,50,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.12,39.5,6,1,0,1,10,3,0,598.75,0,0,0 +4818,5935,10737,10736,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,4,8.358996803506686,8.820953262404052,0,2,0,-9,21,0,-1,141.2545645262181,0,0,0,42,2,2,3,2,3,2019,2,1,15,5,55,50,15,1,5,3,0,8.967588450147671,8.967588450147671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.46,63.68,3,1,0,0,10,3,0,598.75,0,0,0 +4818,5935,10738,-9,10736,10737,6,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-913.3849447390699,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,10,3,0,598.75,0,0,0 +4818,5936,10739,-9,10740,-9,7,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1034.585408939964,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,5,0,0,10,1,0,250,0,0,0 +4818,5936,10740,-9,10736,10737,3,1,0,20,2,0,3,0,2,1,3,3,0,1,0,0,0,3,0,0,0,-9,0,-973.9379319050349,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,29,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.94,53.61,4,1,1,0,10,1,0,250,0,0,0 +4818,5937,10741,-9,10736,10737,4,1,0,18,2,0,3,1,2,0,7,2,0,4,4.18700511475249,3.975647627394379,0,3,0,0,0,-9,0,-1032.631891944179,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.47,58.15,6,1,0,0,10,3,0,1899,0,0,0 +4819,5938,10742,10743,-9,-9,1,1,1,43,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,2,-97.09519562016192,0,0,0,41,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,1,1,4,3,1,438,0,0,0 +4819,5938,10743,10742,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,4,8.621849971656196,8.460885559418573,0,2,0,-9,2,0,-2,21.67836938578089,0,0,1,43,2,3,3,2,3,2019,2,1,21,8,41,45,15,1,8,3,0,13.07899964267249,13.07899964267249,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,63.9,3,1,0,1,4,3,1,438,0,0,0 +4819,5938,10744,-9,10743,10742,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.318542950678,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,3,1,438,0,0,0 +4820,5939,10745,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,3,8.81064803112004,8.964321182114471,0,3,0,0,0,-9,0,-1022.707052565733,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,46,46,15,1,2,-9,0,13.72202881658881,13.72202881658881,0,0,0,0,0,0,0,1,1,0,3.88554725371914,0,0,0,50.03,52.62,6,1,0,0,4,5,1,269,0,0,0 +4821,5940,10746,10747,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,2,8.381055989941638,8.448079437495974,0,1,0,-9,6,0,-2,38.20229175990974,0,0,0,59,1,4,1,3,3,2019,1,1,18,5,45,44,15,1,5,1,0,10.06977441468546,10.06977441468546,0,0,0,0,0,0,0,0,0,0,3.40844614801372,0,0,0,33.99,55.1,3,1,0,0,5,5,1,1299,0,0,0 +4821,5940,10747,10746,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,4,9.635877242196038,9.513011664071165,0,1,0,-9,6,0,2,79.46349306051866,0,0,0,57,1,2,1,1,1,2019,1,2,12,0,42,46,15,1,0,1,0,39.99168786073842,39.99168786073842,0,0,0,0,0,0,0,0,0,0,1.143567540207176,0,0,3,45.91,59.89,5,1,0,0,5,5,1,1299,0,0,0 +4821,5941,10748,-9,10746,10747,3,1,0,26,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-978.5922430423608,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,6,1,0,0,5,1,1,347,0,0,0 +4821,5942,10749,-9,10746,10747,4,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-957.0619669144438,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,6,1,0,0,5,1,1,542,0,0,0 +4822,5943,10750,10751,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,3,0,7.215030694940188,7.693324176532586,1,0,-9,31,0,11,15.31032237617016,0,0,0,51,3,4,3,3,3,2019,4,2,16,4,0,0,15,4,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2.864214713409887,7.492840480052882,25.6253585161767,3,37.53,54.3,3,1,0,0,4,3,1,616,0,0,0 +4822,5943,10751,10750,-9,-9,2,1,0,51,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,31,0,-11,-114.0347829224299,0,0,0,62,3,3,3,2,2,2019,4,1,10,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,6,1,0,0,4,3,1,616,0,0,0 +4823,5944,10752,-9,10753,-9,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-910.8164973115282,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,1106.666666666667,0,0,0 +4823,5944,10753,-9,-9,-9,1,1,0,48,3,0,2,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-911.7913872708768,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.8549654208468,3,41.69,25.64,5,1,0,0,9,1,0,1106.666666666667,0,0,0 +4823,5944,10754,-9,10753,-9,5,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.732257511021,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,1,0,1106.666666666667,0,0,0 +4823,5945,10755,-9,10753,-9,2,1,1,26,2,0,2,0,2,-9,2,1,0,4,8.216122752550245,8.354944454154724,0,3,0,0,0,-9,0,-1019.252415099486,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,9.705657486296214,9.705657486296214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,9,4,0,3658,0,0,0 +4823,5946,10756,-9,10753,-9,3,1,1,19,2,0,2,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-908.6261284754174,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.457931825963832,0,0,0,48,59,5,1,1,0,9,1,0,261,0,0,0 +4824,5947,10757,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,8.369106495126189,8.279297374958748,0,3,0,-9,0,-9,0,-1013.632862542917,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,45,0,15,1,0,-9,0,8.272159334004879,8.272159334004879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,7,1,0,0,11,4,0,1539,0,0,0 +4824,5948,10758,-9,-9,-9,2,1,0,55,2,0,0,0,3,-9,2,1,0,4,7.868859667589707,8.075916898390933,0,3,0,-9,0,-9,0,-955.933980350815,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,0,15,1,0,-9,0,6.589863479594317,6.589863479594317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,11,3,0,422,0,0,0 +4825,5949,10759,10760,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,5,8.7611320961181,8.763289618890552,0,1,0,-9,10,0,-4,-162.1164308788331,0,0,0,52,2,4,1,2,2,2019,1,1,12,0,40,35,15,1,0,1,0,22.55832085861583,22.55832085861583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.08,57.18,5,1,0,0,11,5,1,654,0,0,0 +4825,5949,10760,10759,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.451464960082193,8.20542124493541,0,1,0,-9,10,0,4,163.2001732664908,0,0,0,48,1,5,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,12.32918335271946,12.32918335271946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,11,5,1,654,0,0,0 +4825,5950,10761,-9,10759,10760,3,1,1,19,2,0,0,1,2,0,7,2,0,4,5.129707270434927,5.120921079904113,0,3,0,0,0,-9,0,-905.4173850599567,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,15,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.91,55.33,6,1,0,0,11,2,1,829,0,0,0 +4826,5951,10762,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,7.267742459328701,7.473916751664845,3,0,0,0,-9,0,-1026.29130134964,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.231464469526813,0,0,47.79,53.79,6,1,0,0,2,2,1,2527,0,0,0 +4827,5952,10763,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,2,8.021255201283576,8.268921746243151,0,3,0,0,0,-9,0,-1055.887443000362,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,40,0,15,1,1,-9,0,10.80692690529569,10.80692690529569,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.15,32.92,4,4,0,0,8,4,1,1557,0,0,0 +4828,5953,10764,10765,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,4,7.78957695696476,7.981917885020319,5.566220565837251,1,0,-9,9,0,2,-.6681978974094641,0,0,0,54,1,3,1,-9,-9,2019,1,1,9,0,38,41,15,1,0,1,0,7.52440169905859,7.52440169905859,0,0,0,0,0,0,0,0,0,0,6.335577280778184,5.88173454723833,0,0,52.23,55.6,6,1,0,0,11,5,1,367,0,0,0 +4828,5953,10765,10764,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,3,8.52064199534237,8.336043854229866,0,1,0,-9,9,0,-2,-42.83070658433875,0,0,0,56,3,4,1,3,2,2019,1,2,13,3,43,37,15,1,3,1,0,13.2301501626258,13.2301501626258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.71,49.66,6,1,0,0,11,5,1,367,0,0,0 +4829,5954,10766,10767,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.153482011356417,8.474254076278863,0,1,0,-9,5,0,10,65.07498501222223,0,0,0,36,1,4,1,-9,-9,2019,1,1,10,0,38,38,15,1,0,1,0,12.83704527177191,12.83704527177191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.09,56.75,6,2,0,0,10,5,1,2021,0,0,0 +4829,5954,10767,10766,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,4,8.32327833470706,8.682743689843242,0,1,0,-9,5,0,-10,25.73071870281295,0,0,1,46,2,4,1,1,1,2019,1,2,13,1,35,37,15,1,1,1,0,22.42804810066546,22.42804810066546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,57.61,5,1,0,0,10,5,1,2021,0,0,0 +4830,5955,10768,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,3,7.507582782379044,7.973025502270881,0,3,0,0,0,-9,0,-1023.465449198854,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,44,30,15,1,5,-9,0,5.896065361505149,5.896065361505149,0,0,0,0,0,0,0,1,1,0,0,0,.0333147963371128,3,46,51,5,1,0,0,1,3,0,758,0,0,0 +4831,5956,10769,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,5.813955103310508,5.771799334408535,3,0,0,0,-9,0,-956.3115444356673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.789491717296372,0,0,66.54000000000001,11.23,6,2,0,0,2,2,0,1499,0,0,0 +4832,5957,10770,10771,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.806819819532063,7.880756740074421,0,1,0,-9,33,0,0,-25.64121735515829,0,0,0,49,2,2,1,3,2,2019,1,2,12,0,27,27,15,1,0,1,0,9.361649137542249,9.361649137542249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.8,36.73,6,1,0,0,12,5,1,508.5,0,0,0 +4832,5957,10771,10770,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,2,8.82936047503755,8.454650478027567,0,1,0,-9,8,0,0,36.158281207893,0,0,0,49,2,3,1,-9,-9,2019,1,1,11,0,42,50,15,1,0,1,0,12.32255504391676,12.32255504391676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.88,33.91,4,1,0,0,12,5,1,508.5,0,0,0 +4833,5958,10772,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-972.4382373131594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.806851565566871,0,0,0,42.04,47.49,1,1,0,0,4,1,0,408,0,0,0 +4834,5959,10773,-9,-9,-9,1,1,1,84,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-859.6579002144357,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,37.6,14.31,3,1,0,0,13,1,1,693,0,0,0 +4835,5960,10774,10775,-9,-9,2,1,1,37,1,0,1,0,3,-9,2,1,0,3,8.174632589979147,8.376596415766192,0,2,0,-9,8,0,4,-20.48398247954886,0,0,0,33,2,3,1,3,3,2019,1,1,9,0,43,46,15,1,0,1,0,12.00195313666906,12.00195313666906,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,42.38,5,1,0,0,9,4,1,426.3333333333333,0,0,0 +4835,5960,10775,10774,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,3,7.470615551126164,7.447987045886656,0,2,0,-9,8,0,-4,89.43669131470516,0,0,1,37,3,3,1,2,-9,2019,1,2,12,0,28,28,15,1,0,1,0,6.394211256146252,6.394211256146252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,56.19,5,1,0,0,9,4,1,426.3333333333333,0,0,0 +4835,5960,10776,-9,10775,10774,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.802869807987,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,426.3333333333333,0,0,0 +4836,5961,10777,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,2,0,7.946013042021381,8.158447298356881,3,0,-9,0,1,0,-1002.141831860922,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.236107290819496,7.932503987331194,0,0,36.01,35.09,3,1,0,0,2,4,1,1227,0,0,0 +4837,5962,10778,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-788.0506339948861,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,39,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.845198952164864,0,45.99893734016062,3,46.09,55.59,6,1,0,0,10,1,1,537,0,0,0 +4838,5963,10779,-9,-9,-9,1,1,1,50,2,0,0,0,3,-9,2,1,0,3,8.168599418930466,8.177298682675811,0,3,0,0,0,-9,0,-1058.662342518469,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,42,43,15,1,0,-9,0,8.051235320225476,8.051235320225476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,4,3,0,0,2,4,1,762,0,0,0 +4839,5964,10780,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-823.162499206798,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,33.87,5,1,0,0,13,1,0,1632,0,0,0 +4840,5965,10781,10783,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,3,8.46616814456406,8.139980874372492,0,2,0,-9,10,0,2,58.90362254024527,0,0,0,44,3,3,3,3,3,2019,2,1,11,0,38,37,15,1,0,3,0,11.09332269222983,11.09332269222983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,53.42,5,3,0,0,4,3,1,1100.25,0,0,0 +4840,5965,10782,-9,10783,10781,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-848.2895991309454,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,3,1,1100.25,0,0,0 +4840,5965,10783,10781,-9,-9,1,1,0,44,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,25,0,-2,14.07531229284591,0,0,1,46,2,3,1,2,2,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,55.33,5,3,0,0,4,3,1,1100.25,0,0,0 +4840,5965,10784,-9,10783,10781,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-963.5109378300415,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,3,0,0,4,3,1,1100.25,0,0,0 +4841,5966,10785,10786,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,6.311692456477378,6.458260326597968,1,0,-9,8,0,3,19.65051864287,0,0,0,80,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,6.560440074928645,9.538432368949554,0,2.667662261862045,0,1,1,0,2.944259115324934,6.084613600404105,0,0,58.72,16.96,6,1,0,0,7,2,1,858.5,0,0,0 +4841,5966,10786,10785,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-3,-32.25860232484909,0,0,0,83,3,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.558573318746283,0,7.306904466451544,1,55.07,43.31,6,1,0,0,7,2,1,858.5,0,0,0 +4842,5967,10787,10788,-9,-9,1,1,0,48,1,0,0,0,2,-9,6,3,0,1,0,0,0,1,0,-9,19,-9,-7,18.25060937815677,-9,0,0,55,2,4,1,2,2,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21875626045277,3,33.25,20.16,6,1,0,0,1,4,0,1636.5,0,0,0 +4842,5967,10788,10787,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.283786168075762,8.554836404339154,0,1,0,-9,19,-9,7,-127.54248466931,-9,0,0,48,2,1,3,3,3,2019,2,1,3,0,65,0,15,1,0,3,0,7.066114250253656,7.066114250253656,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.02,45.76,7,1,0,0,1,4,0,1636.5,0,0,0 +4842,5968,10789,-9,10787,10788,3,1,0,23,2,0,0,0,2,-9,2,1,0,3,7.62584613700824,7.712575181439251,0,3,0,-9,0,-9,0,-1078.98611257018,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,45,0,15,1,0,-9,1,7.002385226065743,7.002385226065743,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.55,50.97,4,1,0,0,1,3,0,882,0,0,0 +4842,5969,10790,-9,10787,10788,4,1,1,21,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-1060.165285105809,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.383110760370393,3,46.26,34.26,4,1,0,0,1,1,0,2743,0,0,0 +4843,5970,10791,-9,10792,10793,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1043.130902548832,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,8,5,1,453.6666666666667,0,0,0 +4843,5970,10792,10793,-9,-9,1,1,0,31,1,1,1,0,1,-9,2,1,0,5,9.062554234733527,8.60064505880001,0,2,0,-9,4,0,-1,27.66702904911556,0,0,1,32,1,4,1,2,1,2019,1,2,7,1,45,45,15,1,1,1,0,18.35680392423519,18.35680392423519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,8,5,1,453.6666666666667,0,0,0 +4843,5970,10793,10792,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.232357884088946,8.310012024363134,0,2,0,-9,4,0,1,-67.65742818879957,0,0,0,31,1,5,1,-9,-9,2019,1,1,22,9,42,43,15,1,9,1,0,12.54435603205485,12.54435603205485,0,0,0,0,0,0,0,1,1,0,0,0,4.169848357773134,3,41.06,62.04,5,1,0,0,8,5,1,453.6666666666667,0,0,0 +4844,5971,10794,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,3,0,2.741864173505153,2.697262251778056,3,0,0,0,-9,0,-1078.465206588387,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.477292035646579,2.372032151934596,0,0,54,46,6,1,0,0,11,1,1,797,0,0,0 +4845,5972,10795,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,7.703588948529666,7.75327762199509,3,0,0,0,-9,0,-998.8332235912148,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.685587652447176,7.970434750690187,0,0,31.91,55.81,3,1,0,0,10,3,0,583,0,0,0 +4846,5973,10796,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,3,0,6.785228857848055,6.784849821787635,3,0,-9,0,1,0,-986.7289764131817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.775264592990202,7.070577958333917,0,0,51.41,56.15,6,1,0,0,9,2,1,1107,0,0,0 +4847,5974,10797,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,4,3,0,2,0,7.083285083533612,7.354492771875282,3,0,0,0,-9,0,-1129.826806147383,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.028687556336818,7.293983933320376,0,0,40.14,24.96,3,1,0,0,2,3,1,319,0,0,0 +4848,5975,10798,10799,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,59,0,5,0,0,0,0,76,3,2,3,3,3,2019,4,2,19,6,0,0,15,4,6,4,0,0,0,1,0,12.28971983118288,0,0,0,0,1,1,0,0,0,121.6258315169246,1,31.45,34.16,6,1,0,0,5,1,1,1463.5,0,0,0 +4848,5975,10799,10798,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,59,0,-5,0,0,0,0,81,3,2,3,3,2,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.3119556764217,1,48.5,24.94,4,1,0,0,5,1,1,1463.5,0,0,0 +4849,5976,10800,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,6.377488300334865,6.301487745287991,3,0,0,0,-9,0,-995.8878865768169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,1.990056454062108,5.549542221386895,0,1,1,0,2.159641255423951,6.170834043383098,0,0,53.21,20.54,6,1,0,0,7,2,1,560,0,0,0 +4850,5977,10801,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,2,0,7.671204577629535,7.168826902450591,3,0,0,0,-9,0,-961.1671108281248,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,4.657325772959181,0,3.069118960773207,24.10154718749881,0,0,1,1,0,0,7.220112136205705,0,0,38.8,20.53,5,1,0,0,12,3,0,1011,0,0,0 +4850,5978,10802,-9,10801,-9,2,1,1,62,2,0,0,0,3,-9,2,1,0,3,6.474767751917013,7.985816886242461,7.387046710234473,3,0,0,0,-9,0,-844.8324124379508,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,12,20,15,1,0,-9,1,9.156582560804427,9.156582560804427,0,0,0,0,0,0,0,1,1,0,0,7.389254635826229,22.80405860915941,3,49.04,55.86,2,1,0,0,12,3,0,240,0,0,0 +4851,5979,10803,10804,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,2,8.517372482048394,8.328175480829175,0,1,0,-9,1,-9,2,101.8469073705324,-9,1,0,23,2,1,2,-9,-9,2019,2,1,14,2,46,0,15,1,2,2,0,10.85987797102347,10.85987797102347,0,0,0,0,0,0,0,0,0,0,0,0,.0125113442989293,1,33.51,51.05,3,1,0,1,4,4,0,206,0,0,0 +4851,5979,10804,10803,-9,-9,1,1,0,23,1,0,0,1,2,-9,7,2,0,1,0,0,0,1,0,-9,1,-9,-2,-8.235650006305852,-9,1,1,25,1,2,1,1,2,2019,3,2,21,9,0,0,15,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.19,42.46,3,2,0,1,4,4,0,206,0,0,0 +4852,5980,10805,10806,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,4,8.332356181742981,8.212544177705215,0,1,0,-9,4,0,-7,80.73958935694409,0,1,1,35,1,4,1,2,2,2019,1,2,11,2,43,49,15,1,2,1,0,11.82998883329341,11.82998883329341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,6,1,0,0,7,5,1,468.5,0,0,0 +4852,5980,10806,10805,-9,-9,2,1,1,35,1,0,0,0,1,-9,2,1,0,4,8.633639126700222,8.316180945173004,0,1,0,-9,4,0,7,-24.10388207167962,0,0,0,28,2,4,1,-9,-9,2019,1,1,10,1,42,50,15,1,1,1,0,13.11244205210004,13.11244205210004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,7,5,1,468.5,0,0,0 +4853,5981,10807,10808,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,3,7.917197819814894,8.06272807406736,0,1,0,-9,2,0,-1,-39.82806420533053,-9,1,1,26,1,4,1,-9,-9,2019,1,1,6,0,50,0,15,1,0,1,0,5.898747179486409,5.898747179486409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,6,1,0,0,11,4,1,894.5,0,0,0 +4853,5981,10808,10807,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,4,8.264783172226426,8.037373117909906,0,1,0,-9,2,0,1,105.4371945098105,0,1,0,25,2,3,1,-9,-9,2019,1,2,13,1,37,38,15,1,1,1,0,12.59714615417345,12.59714615417345,0,0,0,0,0,0,0,0,0,0,.4240492852906104,0,0,0,34.46,61.83,5,1,0,0,11,4,1,894.5,0,0,0 +4854,5982,10809,10810,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.372378523341398,8.18848920834534,0,1,0,-9,20,0,-11,-10.42776113130816,0,0,0,57,1,4,3,2,2,2019,2,1,6,0,48,47,15,1,0,3,0,8.881101996433607,8.881101996433607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,7,3,1,414.5,0,0,0 +4854,5982,10810,10809,-9,-9,1,1,0,57,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,20,0,11,12.50397111472877,0,0,0,46,2,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.677833488861243,0,0,0,56.92,49.39,6,1,0,0,7,3,1,414.5,0,0,0 +4855,5983,10811,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1002.325941639398,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,1,22.43722018753537,0,0,0,0,120.5855622540511,1,1,0,0,0,0,0,62.13,12.78,6,1,0,0,2,1,0,257,0,0,0 +4856,5984,10812,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,2,0,7.850514516833741,7.797752134442284,3,0,0,0,-9,0,-970.0081828596961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.6479860221789,7.639563784642157,0,0,63.25,37.54,6,1,0,0,4,3,1,449,0,0,0 +4857,5985,10813,10814,-9,-9,2,1,1,88,1,0,0,0,3,-9,4,3,0,3,0,7.152138384071518,7.67178187391777,1,0,-9,65,0,6,-35.83740465351359,0,0,0,82,3,3,3,3,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.931504353924932,7.485192550458584,0,0,56.8,38.79,6,1,0,0,7,2,1,295,0,0,0 +4857,5985,10814,10813,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,65,0,-6,14.62793859366159,0,0,0,88,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.312393948451992,0,0,0,50.78,45.45,6,1,0,0,7,2,1,295,0,0,0 +4858,5986,10815,-9,10816,10817,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.8518990748104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,505.75,0,0,0 +4858,5986,10816,10817,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,5,7.446793009993068,7.532551097568822,0,2,0,-9,23,0,-4,-61.89790357472886,0,0,1,45,2,5,1,2,2,2019,1,2,10,0,28,24,15,1,0,1,0,7.975351991882385,7.975351991882385,0,0,0,0,0,0,0,1,1,0,1.097237614864139,0,0,0,54.1,59.11,6,1,0,0,4,4,1,505.75,0,0,0 +4858,5986,10817,10816,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,5,8.578651769839915,8.990110825122873,0,2,0,-9,23,0,4,-3.760858158532995,0,0,0,41,2,5,1,2,2,2019,1,1,7,0,44,47,15,1,0,1,0,13.56419779817304,13.56419779817304,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,4,4,1,505.75,0,0,0 +4858,5986,10818,-9,10816,10817,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.031631061811,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,505.75,0,0,0 +4859,5987,10819,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,4,0,4.688339142789357,5.108173108756009,3,0,0,0,-9,0,-1049.524163712573,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,10.62471073522512,0,2.870936754423127,0,0,137.4515263924459,1,1,0,2.825500290540339,5.119246142636732,0,0,58.26,37.88,2,1,0,0,1,2,1,980,0,0,0 +4860,5988,10820,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,3,7.951052397655399,8.147673934542963,0,3,0,0,0,-9,0,-1100.91356650572,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,24,25,15,1,0,-9,0,13.15193872994325,13.15193872994325,0,0,0,0,0,0,0,0,0,0,3.652859557752522,0,0,0,52.48,55.6,6,1,0,0,9,3,1,391,0,0,0 +4861,5989,10821,10822,-9,-9,1,1,1,71,1,0,0,0,3,-9,1,1,0,3,7.446110329809749,7.751515818391697,0,1,0,-9,6,0,0,58.09133811900833,0,0,0,71,2,5,3,3,3,2019,2,2,9,0,50,55,15,1,1,4,0,4.997296752246849,4.997296752246849,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,6,1,0,0,11,3,1,914,0,0,0 +4861,5989,10822,10821,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,5,0,6.163587340876215,6.2300642644819,1,0,-9,6,0,0,90.15650278071608,0,0,0,71,3,3,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.101309780716901,6.37692720237399,0,0,59.43,58.05,6,1,0,0,11,3,1,914,0,0,0 +4862,5990,10823,-9,-9,-9,1,1,0,42,2,0,2,0,3,-9,2,1,0,3,7.865882646962745,8.148696522823025,5.722291449941714,4,0,0,0,-9,0,-1073.613441076784,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,35,29,15,1,2,-9,0,7.864005530831041,7.864005530831041,0,0,0,0,0,0,0,1,1,0,5.213570560666731,0,0,0,44.28,55.3,6,1,0,0,6,3,0,824,0,0,0 +4862,5990,10824,-9,10823,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-969.2459408607874,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,3,0,824,0,0,0 +4862,5991,10825,-9,10826,-9,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-706.257011825026,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,0,462,0,0,0 +4862,5991,10826,-9,10823,-9,2,1,0,23,2,0,2,0,2,-9,2,1,0,3,7.867777527778875,7.653920246757751,0,3,0,0,0,-9,0,-1086.844019045398,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,25,0,15,1,0,-9,1,11.32091280080969,11.32091280080969,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.22,36.97,5,1,0,0,6,3,0,462,0,0,0 +4863,5992,10827,10828,-9,-9,2,1,1,59,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,25,0,9,32.39682905161111,0,0,0,50,2,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,9,5,1,295.5,0,0,0 +4863,5992,10828,10827,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,4,9.314953257999335,9.00059076556772,0,2,0,-9,27,0,0,6.694403414394641,0,0,0,59,3,3,3,3,3,2019,2,2,11,1,40,37,15,1,1,3,0,28.53163880226097,28.53163880226097,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.65,46.66,5,1,0,0,9,5,1,295.5,0,0,0 +4863,5993,10829,-9,10828,10827,3,1,0,19,2,0,1,0,2,-9,1,1,0,2,4.12024538372262,4.370689217584263,0,3,0,0,0,-9,0,-904.2366234096987,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,34,11,0,0,15,1,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.53,41.3,5,1,0,1,9,2,1,361,0,0,0 +4864,5994,10830,-9,-9,-9,4,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.51263794631537,7.568215779679242,0,3,0,0,0,-9,0,-979.2906675787442,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,37,15,1,0,-9,1,5.877284720849118,5.877284720849118,0,0,0,0,0,0,0,1,1,0,2.64806065905288,0,0,0,44.61,46.92,6,3,0,0,2,3,0,594,0,0,0 +4865,5995,10831,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,5.899001748063837,5.55853387776561,3,0,0,0,-9,0,-1093.673995280771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.736562316671695,5.578729438610888,0,0,58.07,46.29,1,1,0,0,11,2,1,1098,0,0,0 +4866,5996,10832,-9,10835,10833,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.722801715885,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,671.25,0,0,0 +4866,5996,10833,10835,-9,-9,2,1,1,52,1,0,2,0,3,-9,2,1,0,4,7.278672741707164,7.176683425901038,0,2,0,-9,7,0,8,-89.68266479955049,0,0,0,44,3,5,3,-9,-9,2019,2,1,9,0,16,20,15,1,1,3,0,9.315601791105596,9.315601791105596,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,8,2,0,671.25,0,0,0 +4866,5996,10834,-9,10835,10833,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.6234980116753,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,671.25,0,0,0 +4866,5996,10835,10833,-9,-9,1,1,0,44,1,0,2,0,3,-9,6,3,0,5,0,0,0,2,0,-9,24,0,-8,69.82370828454965,0,0,1,52,3,4,1,2,2,2019,3,2,2,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.873607728236706,3,51.85,45.14,7,3,0,0,8,2,0,671.25,0,0,0 +4867,5997,10836,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,8,3,1,3,0,7.447324046481643,7.032837092168467,1,0,-9,19,0,10,20.66133907196668,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,25,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.98363798693538,1.274862216184597,3,35.15,33.8,1,1,0,0,8,2,0,629,0,0,0 +4867,5998,10837,-9,-9,-9,2,1,1,51,2,0,0,0,1,-9,3,3,0,3,0,0,0,1,0,-9,17,0,-10,40.9843331782196,0,0,0,-9,-9,-9,-9,2,2,2019,4,1,21,7,0,43,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.325686644146107,0,5.099714628550074,1,36.26,54.95,3,1,1,1,8,2,0,922,0,0,0 +4868,5999,10838,10839,-9,-9,2,1,0,73,1,0,0,0,1,-9,8,3,1,3,0,6.61043659661182,6.594282403668262,1,0,-9,7,0,-1,115.6293721942577,0,0,0,74,1,3,3,-9,-9,2019,4,1,12,1,0,0,15,3,1,4,0,0,0,1,0,7.886576841216187,0,0,0,0,1,1,0,4.979496095134404,6.648059544540805,0,0,50.56,38.92,5,1,0,0,6,5,1,724,0,0,0 +4868,5999,10839,10838,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,10.20851840569597,9.917725325592963,1,0,-9,51,0,1,32.5542818614307,0,0,0,73,1,3,3,2,1,2019,4,2,12,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,9.408894131026477,8.90504899959026,2.169521808263019,1,52.3,47.48,6,1,0,0,6,5,1,724,0,0,0 +4869,6000,10840,-9,10841,-9,2,1,1,17,2,0,1,1,2,-9,7,2,0,4,7.028139952388906,6.948151492106082,0,4,0,0,0,-9,0,-978.0126730359725,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,6,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.824196100293008,0,0,0,48,59,5,1,0,0,7,3,1,860,0,0,0 +4869,6000,10841,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,4,8.06142377789816,7.92312157088933,5.501271817504748,4,0,0,0,-9,0,-1032.392908446822,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,50,60,15,1,0,-9,0,6.725389270830065,6.725389270830065,0,0,0,0,0,0,0,1,1,0,0,6.034426434430228,0,0,51.47,53.17,4,1,0,0,7,3,1,860,0,0,0 +4870,6001,10842,10843,-9,-9,1,1,0,31,1,0,1,0,2,-9,3,3,0,2,0,0,0,2,0,-9,13,0,-3,52.84718538785262,0,0,1,34,1,3,1,3,3,2019,3,2,13,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.66,44.58,3,3,1,0,8,2,0,1065,0,0,0 +4870,6001,10843,10842,-9,-9,2,1,1,34,1,0,1,0,1,-9,1,1,0,3,5.942548330262508,6.185670277560894,0,2,0,-9,13,0,3,-14.31173975797609,0,0,0,31,2,2,3,3,2,2019,2,1,6,1,20,0,15,1,1,3,0,2.363837761979446,2.363837761979446,0,0,0,0,0,0,0,1,1,0,0,0,37.93656684228463,1,47,52,6,3,0,0,8,2,0,1065,0,0,0 +4870,6001,10844,-9,10842,10843,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.533478878464,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,1065,0,0,0 +4871,6002,10845,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,2,8.051846341544623,8.131011224279339,0,3,0,0,0,-9,0,-1016.802224850208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,38,40,15,1,5,-9,0,11.47132507163457,11.47132507163457,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,41.82,4,1,0,0,4,4,1,941,0,0,0 +4872,6003,10846,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,4,7.89523642781242,8.12664556946668,0,3,0,0,0,-9,0,-944.9984614546332,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,25,25,15,1,0,-9,0,14.30101870621361,14.30101870621361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,13,3,1,416,0,0,0 +4873,6004,10847,-9,10848,10849,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.723926720864,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,5,0,0,7,5,1,916,0,0,0 +4873,6004,10848,10849,-9,-9,2,1,0,51,1,0,1,0,1,-9,6,3,0,5,0,0,0,2,0,-9,25,0,-6,-51.70314839556666,0,0,0,57,1,4,1,2,1,2019,3,1,18,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.1,65.8,4,5,0,0,7,5,1,916,0,0,0 +4873,6004,10849,10848,-9,-9,1,1,1,57,1,0,1,0,1,-9,2,1,0,4,10.07614959238742,9.701484163111635,0,2,0,-9,25,0,6,-68.4812366861813,0,0,0,51,1,5,3,1,1,2019,2,2,9,0,60,48,15,1,0,3,0,29.38669316246685,29.38669316246685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,5,0,0,7,5,1,916,0,0,0 +4873,6005,10850,-9,10848,10849,3,1,1,23,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1091.189491628393,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,5,0,0,7,1,1,666,0,0,0 +4874,6006,10851,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,1,1,0,4,8.047887527571859,8.56995571425916,5.498846903912915,3,0,0,0,-9,0,-1002.021310069316,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,50,60,15,1,0,-9,0,7.412683118652622,7.412683118652622,0,0,0,0,0,0,0,1,1,0,5.151564786672615,5.789961816921421,0,0,59.71,50.89,6,1,0,0,10,4,1,538,0,0,0 +4875,6007,10852,10853,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.17346588965489,7.319410525382883,1,0,-9,47,0,2,80.79294761090495,0,0,0,72,3,3,3,3,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,.9441817930534833,0,0,0,0,1,1,0,3.005482334079193,7.216525769044908,0,0,59.7,43.01,6,1,0,0,2,2,1,517,0,0,0 +4875,6007,10853,10852,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-2,140.2468576590268,0,0,0,74,3,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,6,1,0,0,2,2,1,517,0,0,0 +4876,6008,10854,10855,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,9.370206723265674,8.737671743666199,0,1,0,-9,7,0,1,-8.186085152288276,0,0,0,58,2,4,1,2,2,2019,1,2,9,0,38,38,15,1,0,1,0,25.83539306711412,25.83539306711412,0,0,0,0,0,0,0,1,1,0,4.680318879673615,0,0,0,54.37,54.8,6,1,0,0,7,5,1,445.5,0,0,0 +4876,6008,10855,10854,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.945013410296638,7.656393207907639,6.052149999680863,1,0,-9,7,0,-1,40.68195347588252,0,0,0,59,2,3,1,-9,-9,2019,1,1,10,0,26,22,15,1,0,1,0,9.711743119164044,9.711743119164044,0,0,0,0,0,0,0,1,1,0,5.868611662450083,0,0,0,45.91,59.89,3,2,0,0,7,5,1,445.5,0,0,0 +4876,6009,10856,-9,10855,10854,3,1,0,18,2,0,0,1,2,0,7,2,0,3,6.645937817710514,6.488522765140154,0,3,0,0,0,-9,0,-968.7276068478034,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,8,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.66,53.96,5,1,0,0,7,2,1,458,0,0,0 +4877,6010,10857,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,3,8.499931428584494,8.586847614134861,0,3,0,0,0,-9,0,-1049.459287425898,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,39,42,15,1,0,-9,0,14.65635271162539,14.65635271162539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,8,5,0,3369,0,0,0 +4878,6011,10858,10859,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.456629072942755,8.393901264333721,0,1,0,-9,5,0,0,-50.49165018209525,0,1,1,28,1,3,1,2,2,2019,1,2,16,5,38,38,15,1,5,1,0,11.39737467068276,11.39737467068276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.48,57.46,6,1,0,0,13,5,1,1548,0,0,0 +4878,6011,10859,10858,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,3,8.45233564309923,8.685910138046038,0,1,0,-9,5,0,0,37.08408958429903,0,1,0,28,1,5,1,-9,-9,2019,1,1,7,0,37,37,15,1,0,1,0,13.64836174034944,13.64836174034944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.6,47.06,6,1,0,0,13,5,1,1548,0,0,0 +4879,6012,10860,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,3,5.317837287508492,6.710703990639283,5.902098998163781,3,0,0,0,-9,0,-972.9795514474974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.885088159121469,6.231011256825935,6.380722187544376,3,42.93,40.8,5,1,0,0,10,2,1,1000,0,0,0 +4880,6013,10861,10862,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.280453696134895,8.782331258149622,5.750279634571839,1,0,-9,41,0,-4,158.9787918356255,0,0,0,62,2,1,1,-9,-9,2019,1,2,11,0,42,42,15,1,0,1,0,13.91079432980021,13.91079432980021,0,0,0,0,0,0,0,0,0,0,0,6.161472406768158,3.889733891775303,2,54.37,54.8,7,1,0,0,10,5,1,1509.5,0,0,0 +4880,6013,10862,10861,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,1,8.432970129219228,8.66721432228092,4.281598486515211,1,0,-9,41,0,4,69.51613921834976,0,0,0,58,2,3,1,3,-9,2019,1,1,9,0,42,42,15,1,0,1,0,12.18719081879052,12.18719081879052,0,0,0,0,0,0,0,0,0,0,0,4.682316859234447,0,0,51.08,43.29,6,1,0,0,10,5,1,1509.5,0,0,0 +4881,6014,10863,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,1,1,0,3,7.934218297174537,7.880240674684379,0,3,0,0,0,-9,0,-986.6937223384156,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,15,25,15,1,0,-9,0,18.65440294363587,18.65440294363587,0,0,0,0,0,0,0,1,1,0,3.928155118743443,0,0,0,49.61,54.24,2,1,0,0,9,4,1,998,0,0,0 +4882,6015,10864,10866,-9,-9,1,1,0,45,1,0,1,0,2,-9,3,3,0,5,0,0,0,2,0,-9,27,0,-1,59.38929766890329,0,0,0,46,2,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,1,0,7,4,0,1539.333333333333,0,0,0 +4882,6015,10865,-9,10864,10866,3,1,0,17,2,0,1,0,2,1,11,3,0,4,6.553162614382355,6.365107056976697,0,2,0,0,0,-9,0,-1027.958825582969,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,29,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,7,4,0,1539.333333333333,0,0,0 +4882,6015,10866,10864,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.865547122318546,9.300160880562647,0,2,0,-9,27,0,1,85.3563582250691,0,0,0,45,2,5,3,2,2,2019,2,1,6,0,45,40,15,1,0,3,0,23.13030049338196,23.13030049338196,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,0,1539.333333333333,0,0,0 +4883,6016,10867,10868,-9,-9,1,1,1,63,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,33,0,15,0,-9,0,0,48,2,4,3,3,2,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.67830066031554,2,51,48,5,3,1,1,8,1,0,148,0,0,0 +4883,6016,10868,10867,-9,-9,2,1,0,48,1,0,0,0,2,-9,8,3,1,4,0,0,0,1,0,-9,33,0,-15,0,-9,0,0,63,2,3,3,3,3,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.99065533036566,3,49,55,6,3,0,1,8,1,0,148,0,0,0 +4883,6017,10869,-9,10868,10867,4,1,0,24,2,0,0,0,1,-9,1,1,0,2,8.743804227662119,8.650638374654369,0,3,0,0,0,-9,0,-966.1764737895496,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,43,45,15,1,0,-9,1,18.4819653633404,18.4819653633404,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.88,51.26,4,3,0,0,8,5,0,611,0,0,0 +4884,6018,10870,10871,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,5,0,6.053154584638191,5.950264481355099,1,0,-9,32,0,-10,-12.37762267382663,0,0,0,71,1,5,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.823869665759349,0,3.676503242368119,3,59.04,54.12,6,1,0,0,13,3,1,1187,0,0,0 +4884,6018,10871,10870,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,5,0,8.139249829909405,8.287012250469532,1,0,-9,32,0,10,-11.11483883851938,0,0,0,61,1,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.879992281127608,8.056267724761859,1.036872231071042,3,57.06,57.76,6,1,0,0,13,3,1,1187,0,0,0 +4885,6019,10872,-9,10873,10875,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.065911967618,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,0,1114.4,0,0,0 +4885,6019,10873,10875,-9,-9,2,1,0,25,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-11,-11.6335336339422,0,1,1,36,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,6,1,0,0,7,2,0,1114.4,0,0,0 +4885,6019,10874,-9,10873,10875,4,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.156204173866,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,0,1114.4,0,0,0 +4885,6019,10875,10873,-9,-9,1,1,1,36,1,1,3,0,2,-9,2,1,0,3,7.409194729260075,7.904744002300212,0,2,0,-9,5,0,11,116.0693692514345,0,0,0,25,2,4,3,3,3,2019,2,2,12,0,38,38,15,1,0,3,0,5.70366786766159,5.70366786766159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,52.43,5,1,0,0,7,2,0,1114.4,0,0,0 +4885,6019,10876,-9,10873,10875,3,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.349482065402,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,0,1114.4,0,0,0 +4886,6020,10877,10878,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,4,7.184775231187084,7.583777508613156,0,1,0,-9,11,0,0,-69.58929617545895,0,0,0,52,2,4,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,5.704733974573673,5.704733974573673,0,0,0,0,0,0,0,0,0,0,.4874860988767727,0,0,0,55.3,55.6,6,1,0,0,6,4,1,1021.5,0,0,0 +4886,6020,10878,10877,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.973080180452356,8.232402461719172,0,1,0,-9,11,0,0,-71.5122018501969,0,0,0,52,2,4,1,3,2,2019,1,2,9,0,34,27,15,1,0,1,0,9.374602032908967,9.374602032908967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,6,1,0,0,6,4,1,1021.5,0,0,0 +4886,6021,10879,-9,10878,10877,3,1,1,18,2,0,0,0,2,1,11,3,0,4,7.143631532777603,7.081010284197773,0,3,0,0,0,-9,0,-959.5212210302616,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,6,1,0,0,6,2,1,349,0,0,0 +4887,6022,10880,10881,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,4,8.907171307837503,8.684442450466422,0,1,0,-9,17,0,-3,52.84848692824206,0,0,0,43,1,2,3,3,3,2019,2,2,9,0,38,38,15,1,0,3,0,20.00207753160451,20.00207753160451,0,0,0,0,0,0,0,1,1,0,1.73284898089909,0,6.871892688106513,1,35.97,61.83,6,3,0,0,2,5,1,320,0,0,0 +4887,6022,10881,10880,-9,-9,2,1,0,43,1,0,0,0,1,-9,8,3,1,2,0,0,0,1,0,-9,17,0,3,42.09276758415417,0,0,1,40,1,4,1,2,2,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.13,19.57,6,1,0,0,2,5,1,320,0,0,0 +4888,6023,10882,10883,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,4,0,-4,103.0012181693327,0,0,0,72,3,3,3,1,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,4,1,1,370.5,0,0,0 +4888,6023,10883,10882,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,4.816276951061452,4.707894599419857,1,0,-9,4,0,4,24.26838108969839,0,0,0,68,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.248907889082175,4.61135256499452,0,0,57.09,46.7,6,1,0,0,4,1,1,370.5,0,0,0 +4889,6024,10884,10885,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,5.214819507503861,5.067490813352245,1,0,-9,7,0,4,20.89088128856602,0,0,0,69,2,1,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,7.431524302557599,0,0,0,0,1,1,0,5.926629271649755,5.371399091444958,0,0,54.77,42.47,6,1,0,0,9,2,1,1801.5,0,0,0 +4889,6024,10885,10884,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,1,0,5.879817814163295,5.755924811599538,1,0,-9,49,0,-4,19.59343707323252,0,0,0,73,3,3,3,3,3,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,1,0,10.06466001431282,0,0,0,0,1,1,0,0,6.076067234980568,0,0,65.48999999999999,10.53,3,1,0,0,9,2,1,1801.5,0,0,0 +4890,6025,10886,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,4,3,0,4,0,8.544105438193311,8.98120180681912,3,0,0,0,-9,0,-948.6210942207518,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.510538600261236,8.576435673776952,0,0,52.91,55.33,6,1,0,0,1,5,1,593,0,0,0 +4891,6026,10887,-9,10890,10889,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.1457453652812,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,5,0,1100.5,0,0,0 +4891,6026,10888,-9,10890,10889,5,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.413761566572,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,6,5,0,1100.5,0,0,0 +4891,6026,10889,10890,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,3,9.120034259911453,9.278832778372252,0,2,0,-9,7,0,5,37.9829070162931,0,0,0,33,1,4,1,1,1,2019,1,1,6,0,49,45,15,1,0,1,0,23.47832975585168,23.47832975585168,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,50.75,5,3,0,0,6,5,0,1100.5,0,0,0 +4891,6026,10890,10889,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,4,7.694602185267027,7.525040266243814,0,2,0,-9,7,0,-5,3.820247844129746,0,0,1,38,1,3,1,2,3,2019,1,2,11,0,28,0,15,1,0,1,0,8.42992481621142,8.42992481621142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.05,52.71,6,3,0,0,6,5,0,1100.5,0,0,0 +4892,6027,10891,-9,10893,10892,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1073.166873539986,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,5,1,871.6666666666666,0,0,0 +4892,6027,10892,10893,-9,-9,2,1,1,27,1,1,1,0,2,-9,2,1,0,4,8.909723062047542,9.074010901761373,0,2,0,-9,3,0,-1,-44.19738150897624,0,1,0,28,2,5,1,-9,-9,2019,1,1,14,3,45,43,15,1,3,1,0,20.87396769722101,20.87396769722101,0,0,0,0,0,0,0,1,1,0,5.327171751668557,0,0,0,35.57,63.56,6,1,0,0,9,5,1,871.6666666666666,0,0,0 +4892,6027,10893,10892,-9,-9,1,1,0,28,1,1,1,0,2,-9,5,1,0,5,8.75502571112958,8.774456969432588,0,2,0,-9,3,0,1,132.7646243558914,0,1,1,27,2,4,1,-9,-9,2019,1,2,7,0,34,38,15,1,0,1,0,14.8961120046043,14.8961120046043,0,0,0,0,0,0,0,1,1,0,4.372827371948492,0,0,0,54.1,59.11,7,1,0,0,9,5,1,871.6666666666666,0,0,0 +4893,6028,10894,-9,10896,-9,4,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.724817479706,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,2,0,560,0,0,0 +4893,6028,10895,-9,10896,-9,2,1,0,16,2,0,3,1,-9,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-885.7650286582879,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.54,54.81,2,4,0,0,8,2,0,560,0,0,0 +4893,6028,10896,-9,-9,-9,1,1,0,38,2,0,3,0,2,-9,2,1,0,3,7.698124756565692,7.356401445877054,0,4,0,0,0,-9,0,-1023.285747235619,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,56,35,15,1,0,-9,0,3.044966043073901,3.044966043073901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,53.53,6,4,0,0,8,2,0,560,0,0,0 +4893,6028,10897,-9,10896,-9,3,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-992.0664368584947,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,4,0,0,8,2,0,560,0,0,0 +4894,6029,10898,10899,-9,-9,1,1,0,68,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,18,0,0,0,0,50,3,4,3,3,3,2019,4,2,19,8,0,0,15,3,8,3,0,0,0,1,0,41.03283521138948,0,0,0,0,1,1,0,0,0,0,0,38.16,24.34,2,1,0,1,13,1,0,1176.5,0,0,0 +4894,6029,10899,10898,-9,-9,2,1,1,50,1,0,0,0,3,-9,97,3,0,4,0,0,0,1,0,-9,7,0,-18,0,0,0,0,68,3,1,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.42200331989231,1,61.12,51.57,5,1,0,1,13,1,0,1176.5,0,0,0 +4895,6030,10900,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,8.114164796536141,7.945022217585378,3,0,0,0,-9,0,-873.4669956967506,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8533199257232,7.564091322247344,0,0,45.8,54.59,6,1,0,0,8,3,1,625,0,0,0 +4896,6031,10901,10902,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,60,0,-2,-123.6083267795272,0,0,0,76,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.78,23.3,3,1,0,0,7,2,0,762,0,0,0 +4896,6031,10902,10901,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,6.413183763033037,6.094575604580408,1,0,-9,60,0,2,10.46526336758105,0,0,0,74,2,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.174060277040042,6.219330669338996,0,0,40.15,32.06,6,1,0,0,7,2,0,762,0,0,0 +4897,6032,10903,-9,10904,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1023.317007135092,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,8,5,1,579.5,0,0,0 +4897,6032,10904,-9,-9,-9,1,1,0,39,2,0,1,0,1,-9,2,1,0,4,8.520804161838667,9.075864911651296,6.574436360442965,4,0,0,0,-9,0,-899.4760310498924,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,48,45,15,1,0,-9,0,14.38613982678467,14.38613982678467,0,0,0,0,0,0,0,1,1,0,6.831617839573016,0,0,0,57.16,56.15,6,2,0,0,8,5,1,579.5,0,0,0 +4898,6033,10905,10906,-9,-9,1,1,0,36,1,0,0,0,1,1,2,1,0,5,8.303798674410999,8.132951060839154,0,1,0,-9,4,0,6,-76.92486044485189,-9,0,1,30,1,5,1,1,2,2019,1,2,5,0,20,0,15,1,0,1,0,20.45117949689909,20.45117949689909,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,7,1,0,0,8,5,1,634,0,0,0 +4898,6033,10906,10905,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,5,8.995319026844358,8.891718070927936,0,1,0,-9,4,0,-6,-70.06583553774786,0,0,0,36,1,5,1,-9,-9,2019,1,1,10,0,42,40,15,1,0,1,0,22.71830716769938,22.71830716769938,0,0,0,0,0,0,0,1,1,0,2.110918495921379,0,0,0,51.73,58.82,6,1,0,0,8,5,1,634,0,0,0 +4899,6034,10907,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,1,1,0,2,6.829362871485811,6.837608110625699,0,3,0,0,0,-9,0,-906.8841788126415,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,1,5,4,15,1,1,-9,0,23.68241538963405,23.68241538963405,0,0,0,0,0,0,0,1,1,0,1.396245158310609,0,29.46369800149285,3,45.89,48.48,6,1,0,0,9,2,1,525,0,0,0 +4900,6035,10908,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,3,7.790267209220868,7.729083285598726,0,3,0,0,0,-9,0,-974.8530411943628,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,4,38,15,1,0,-9,0,78.72395692995963,78.72395692995963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,6,1,0,0,7,3,0,510,0,0,0 +4901,6036,10909,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,2,0,8.384522848451983,8.280365235238337,3,0,0,0,-9,0,-924.1651941857364,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,45.66031057202915,1,1,0,0,8.23960978440045,0,0,52.05,37.55,6,1,0,0,8,4,1,171,0,0,0 +4902,6037,10910,10911,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.600663677345855,8.913829261699673,0,1,0,-9,28,0,1,51.06970265593824,0,0,0,53,1,3,1,2,3,2019,1,1,11,0,42,38,15,1,0,1,0,12.37548798144,12.37548798144,0,0,0,0,0,0,0,0,0,0,1.854929803404533,0,24.44678580264175,3,50.28,51.35,6,1,0,0,10,5,1,503.5,0,0,0 +4902,6037,10911,10910,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.072002249561095,8.249182783887248,0,1,0,-9,28,0,-1,54.5133567531159,0,0,0,54,2,3,1,2,3,2019,1,2,12,0,30,40,15,1,0,1,0,11.64888968539718,11.64888968539718,0,0,0,0,0,0,0,0,0,0,0,0,20.11202954642676,3,36.58,50.4,3,1,0,0,10,5,1,503.5,0,0,0 +4902,6038,10912,-9,10911,10910,3,1,0,22,2,0,0,0,1,-9,2,1,0,5,7.799930476431808,7.668014478957543,0,3,0,0,0,-9,0,-1069.681783423317,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,40,40,15,1,0,-9,1,7.164830744707255,7.164830744707255,0,0,0,0,0,0,0,0,0,0,1.078724994374571,0,9.187251033191453,3,57.06,57.76,6,1,0,0,10,3,1,650,0,0,0 +4902,6039,10913,-9,10911,10910,4,1,0,18,2,0,0,0,2,1,11,3,0,3,7.677829038482783,7.707449526093525,0,3,0,0,0,-9,0,-1005.050694827976,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,6,39,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.45,63.27,4,1,0,0,10,3,1,447,0,0,0 +4903,6040,10914,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,4,8.792869685548199,8.705593819257778,0,3,0,0,0,-9,0,-968.108519499306,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,41,15,1,0,-9,0,16.01253983085708,16.01253983085708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,5,1,0,0,9,5,1,674,0,0,0 +4904,6041,10915,10916,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,4.027379461578819,4.404051793241952,1,0,-9,8,0,0,74.87423504240134,0,0,0,79,3,2,1,-9,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.811015902839138,3.956293010911277,0,0,54.37,54.8,6,1,0,0,7,2,0,714,0,0,0 +4904,6041,10916,10915,-9,-9,2,1,1,79,1,0,0,0,3,-9,2,1,0,2,6.028110979913404,6.415383356547455,6.142936159461327,1,0,-9,8,0,0,-86.42442757391117,0,0,0,79,3,3,3,3,3,2019,2,1,6,0,8,8,15,1,0,4,0,6.987945858862171,6.987945858862171,0,0,0,0,0,0,0,1,1,0,0,5.836002190664066,0,0,60.53,48.35,7,1,0,0,7,2,0,714,0,0,0 +4905,6042,10917,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,4,0,6.850167615262412,6.594499693969669,3,0,0,0,-9,0,-1010.5449951385,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.995733648651597,6.978657863787643,0,0,62.49,55.09,7,1,0,0,12,2,1,772,0,0,0 +4906,6043,10918,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,3,8.302813350174599,8.492292956877225,0,3,0,0,0,-9,0,-976.1564662283774,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,20,0,15,1,0,-9,0,22.37101352551258,22.37101352551258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.21,55.18,6,3,0,0,6,4,1,498,0,0,0 +4907,6044,10919,10920,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,3,0,6.531255027409553,6.770685308849539,1,0,-9,9,0,6,21.82647496195118,0,0,0,77,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.058117268443103,6.583117164939827,0,0,47.52,36.18,6,1,0,0,4,2,1,688,0,0,0 +4907,6044,10920,10919,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,4.74396295589473,4.777970912555394,1,0,-9,9,0,-6,-82.96715224077251,0,0,0,83,2,3,3,3,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,1,0,18.1125765081873,0,0,0,0,1,1,0,2.982730251665641,4.825152503317992,0,0,53.84,32.31,5,1,0,0,4,2,1,688,0,0,0 +4908,6045,10921,10922,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-2,33.35725569242834,0,0,0,74,2,4,3,2,1,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.2418318459540617,0,0,0,54.02,40.03,5,3,0,0,7,2,1,1813.5,0,0,0 +4908,6045,10922,10921,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.031087220420345,6.928630917722183,1,0,-9,49,0,2,1.350488321728742,0,0,0,72,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.341298418382443,6.933600908218077,0,0,62.9,48.08,6,3,0,0,7,2,1,1813.5,0,0,0 +4909,6046,10923,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,3,8.931866220188596,8.755671335307055,0,4,0,0,0,-9,0,-1054.650518589461,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,11,37,37,15,1,11,-9,0,22.61270417667045,22.61270417667045,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.08,62.98,3,1,0,0,12,4,0,555.5,0,0,0 +4909,6046,10924,-9,10923,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.13255555083,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,4,0,555.5,0,0,0 +4910,6047,10925,10926,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,3,6.845840467866141,6.609200547428292,0,1,0,-9,27,0,0,61.90500688782203,0,0,0,62,1,4,1,3,2,2019,1,2,11,0,12,12,15,1,0,1,0,8.08153808443697,8.08153808443697,0,0,0,0,0,0,0,0,0,0,2.390104955844003,0,0,0,39.63,51.79,5,1,0,0,10,4,1,539.5,0,0,0 +4910,6047,10926,10925,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,4,8.678886861718365,9.063212073679109,7.146325807942258,1,0,-9,27,0,0,-48.47452842117162,0,0,0,62,1,3,1,2,2,2019,1,1,11,2,22,22,15,1,2,1,0,17.37573884603708,17.37573884603708,0,0,0,0,0,0,0,0,0,0,7.33748461640513,7.409619031977448,0,0,58.14,44.9,6,1,0,0,10,4,1,539.5,0,0,0 +4911,6048,10927,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,6.53640097147056,6.516500923025958,3,0,0,0,-9,0,-1077.675832177602,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.713916569884187,6.624060749069396,0,0,52,54.51,6,1,0,0,2,2,1,240,0,0,0 +4912,6049,10928,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,7.763402461502068,7.996055461977093,0,3,0,-9,0,-9,0,-939.4094816536533,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,44,0,15,1,7,-9,0,7.278056165586143,7.278056165586143,0,0,0,0,0,0,0,1,1,0,0,0,6.703386102233051,3,34.79,57.07,5,1,0,0,11,4,0,148,0,0,0 +4913,6050,10929,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,2,0,7.588803735058838,7.607927356525944,3,0,0,0,-9,0,-1088.820965468424,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.993616813270052,7.32645248581685,0,0,48.92,37.32,6,1,0,0,11,3,1,104,0,0,0 +4914,6051,10930,10931,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,3,7.445389861767398,7.44372498239098,0,1,0,-9,2,0,-5,24.59343332114972,0,1,1,32,2,4,1,-9,-9,2019,1,2,14,4,28,28,15,1,4,1,0,8.909715727478305,8.909715727478305,0,0,0,0,0,0,0,0,0,0,.2914678130259843,0,0,0,29.75,47.29,5,1,0,0,5,4,1,253,0,0,0 +4914,6051,10931,10930,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,4,8.392526449039734,8.308815684947255,0,1,0,-9,2,0,5,-106.2835286233529,-9,0,0,27,1,3,1,-9,-9,2019,1,1,13,1,62,0,15,1,1,1,0,10.87281549499679,10.87281549499679,0,0,0,0,0,0,0,0,0,0,4.113469478298614,0,0,0,48.28,60.18,6,1,0,0,5,4,1,253,0,0,0 +4915,6052,10932,-9,-9,-9,1,1,0,42,2,0,3,0,2,-9,2,1,0,1,6.381113436364048,6.453584518864389,0,4,0,-9,0,-9,0,-810.4762954491389,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,18,0,15,1,8,-9,0,5.045877179429691,5.045877179429691,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,30.1,4,1,0,0,2,2,0,532.5,0,0,0 +4915,6052,10933,-9,10932,-9,2,1,1,17,2,0,3,1,2,-9,7,2,0,4,6.318229832601055,6.352013994577509,0,4,0,-9,0,-9,0,-1037.657802942337,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,16,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,2,2,0,532.5,0,0,0 +4915,6052,10934,-9,10932,-9,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-922.7569200516708,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,532.5,0,0,0 +4915,6052,10935,-9,10932,-9,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1166.556310107087,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,532.5,0,0,0 +4916,6053,10936,10938,-9,-9,1,1,0,44,1,0,3,0,2,-9,2,1,0,5,7.222688865416102,7.280485982245553,0,2,0,-9,20,0,2,-15.14534603266936,0,0,1,42,2,4,1,2,2,2019,1,2,8,0,18,17,15,1,0,1,0,9.919844132956415,9.919844132956415,0,0,0,0,0,0,0,1,1,0,0,0,16.04738970875755,3,57.06,57.76,6,1,0,0,5,4,1,472.8,0,0,0 +4916,6053,10937,-9,10936,10938,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.215028063413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,4,1,472.8,0,0,0 +4916,6053,10938,10936,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,4,8.981311065139231,8.789366382216997,0,2,0,-9,7,0,-2,-116.9034409527431,0,0,0,44,2,5,1,-9,-9,2019,1,1,9,0,44,56,15,1,1,1,0,16.10853959716387,16.10853959716387,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,5,4,1,472.8,0,0,0 +4916,6053,10939,-9,10936,10938,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.8254096711627,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,472.8,0,0,0 +4916,6053,10940,-9,10936,10938,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.0616012567806,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,4,1,472.8,0,0,0 +4917,6054,10941,10944,-9,-9,1,1,0,44,1,1,2,0,2,-9,2,1,0,2,7.69745847971063,7.936256230854061,0,2,0,-9,6,0,-1,-47.33421880915022,0,0,1,45,3,4,1,2,3,2019,1,2,18,6,32,32,15,1,6,1,0,10.34581932142195,10.34581932142195,0,0,0,0,0,0,0,1,1,0,0,0,20.29849053292747,3,34.88,34.24,6,1,0,0,2,4,1,685.5,0,0,0 +4917,6054,10942,-9,10941,10944,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.4497883414913,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,4,1,685.5,0,0,0 +4917,6054,10943,-9,10941,10944,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.847223415824,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,4,1,685.5,0,0,0 +4917,6054,10944,10941,-9,-9,2,1,1,45,1,1,2,0,3,-9,2,1,0,4,7.999942580011694,7.878986625625889,0,2,0,-9,6,0,1,-185.0259990306311,0,0,0,44,2,2,1,-9,-9,2019,1,1,6,0,46,46,15,1,0,1,0,8.442639741249204,8.442639741249204,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.57,55.02,6,1,0,0,2,4,1,685.5,0,0,0 +4918,6055,10945,10946,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,2,6.92595787120991,6.955125808601252,0,1,0,-9,9,0,3,-66.40505611536409,0,0,0,54,2,2,1,2,2,2019,1,2,8,0,17,18,15,1,0,1,0,9.240889034323946,9.240889034323946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,41.05,7,1,0,0,10,2,0,366,0,0,0 +4918,6055,10946,10945,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,2,6.638578475578463,6.891063264091456,0,1,0,-9,9,0,-3,-62.37027114746498,0,0,0,57,3,2,1,2,2,2019,1,1,7,1,13,14,15,1,1,1,0,8.244900004309503,8.244900004309503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.79,28.32,5,1,0,0,10,2,0,366,0,0,0 +4919,6056,10947,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1049.110942790081,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.200772796833144,3.471774635639098,0,0,1,1,0,0,0,0,0,68.48999999999999,18.65,7,1,0,0,12,1,1,771,0,0,0 +4920,6057,10948,10949,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,2,0,7.005530989665886,6.960268933960903,1,0,-9,43,0,1,-148.9197652848966,0,0,0,61,1,3,3,2,3,2019,4,1,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.139265655333646,6.869798944503501,0,0,31.54,38.42,3,1,0,0,9,3,1,843,0,0,0 +4920,6057,10949,10948,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,3,0,7.593702060831337,7.763849544760154,1,0,-9,43,0,-1,110.9992031766098,0,0,0,62,1,2,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.957227532787067,7.766973076209635,0,0,35.8,59.5,4,1,0,0,9,3,1,843,0,0,0 +4921,6058,10950,10951,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.680503968442645,9.069779062712664,0,1,0,-9,18,0,-1,-29.7071616357805,-9,0,0,56,2,4,1,-9,-9,2019,1,2,12,0,38,0,15,1,0,1,0,22.76692652067237,22.76692652067237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,4,1,0,0,6,5,1,308,0,0,0 +4921,6058,10951,10950,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.732727393565941,9.144844296675236,0,1,0,-9,18,0,1,-99.67827399109584,0,0,0,55,2,4,1,2,1,2019,1,1,12,0,37,37,15,1,0,1,0,16.76047053279831,16.76047053279831,0,0,0,0,0,0,0,0,0,0,7.452802868009417,0,0,0,49.11,52.88,5,1,0,0,6,5,1,308,0,0,0 +4922,6059,10952,-9,10953,10954,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.576977067737,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,3,0,523,0,0,0 +4922,6059,10953,10954,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,3,7.67819899260579,8.135389476805406,0,2,0,-9,5,0,-7,72.81929677618595,0,0,1,41,3,4,3,-9,-9,2019,2,2,12,0,38,38,15,1,0,3,0,9.149003868625321,9.149003868625321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.85,56.37,6,1,0,1,11,3,0,523,0,0,0 +4922,6059,10954,10953,-9,-9,2,1,1,41,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,5,0,7,30.88551776030496,-9,0,0,34,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,4,1,1,1,11,3,0,523,0,0,0 +4923,6060,10955,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-893.0222572263779,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,2,1,1,6,1,0,315,0,0,0 +4923,6061,10956,-9,10955,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,4,6.85354067123203,7.046091008988885,0,3,0,0,0,-9,0,-987.0266366878718,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,20,0,15,1,7,-9,1,5.481543102905122,5.481543102905122,0,0,0,0,0,0,0,1,1,0,0,0,7.436490854539352,3,44.65,48.22,2,2,0,0,6,2,0,1538,0,0,0 +4924,6062,10957,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,6.877714955574988,7.497488790152414,3,0,0,0,-9,0,-1007.53615411916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,1,3.936999647012895,0,0,0,3.875269693679978,56.63810692835079,1,1,0,0,6.753695247571778,0,0,30.21,31.29,6,1,0,0,4,2,1,338,0,0,0 +4925,6063,10958,10959,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,5,8.124686733560097,7.989971452143153,0,1,0,-9,4,0,-5,-20.9450063206698,0,0,0,35,1,3,1,1,1,2019,1,2,11,1,55,76,15,1,1,1,0,7.755446961821004,7.755446961821004,0,0,0,0,0,0,0,0,0,0,.2174781570318049,0,0,0,57.06,57.76,5,1,0,0,10,5,1,1021.5,0,0,0 +4925,6063,10959,10958,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,3,9.101137745335956,9.063221254108919,0,1,0,-9,4,0,5,-22.5397912084328,0,0,1,30,1,5,1,-9,-9,2019,1,1,14,2,30,19,15,1,2,1,0,41.04894374464637,41.04894374464637,0,0,0,0,0,0,0,0,0,0,.8209334352852897,0,0,0,49.45,35.49,6,1,0,0,10,5,1,1021.5,0,0,0 +4926,6064,10960,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-988.6362221290046,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.33,36.87,4,1,0,0,9,1,1,1297,0,0,0 +4927,6065,10961,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-952.9506874445445,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,42.22,6,1,0,0,7,1,0,258,0,0,0 +4927,6066,10962,-9,10961,-9,2,1,0,39,2,0,0,0,2,-9,1,1,0,4,6.483371791641855,6.438748484914959,0,3,0,0,0,-9,0,-962.965099125175,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,25,12,15,1,0,-9,1,2.405314618260651,2.405314618260651,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,5,1,0,0,7,2,0,584,0,0,0 +4928,6067,10963,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,1,1,0,4,7.755183473722665,7.871183374640663,0,3,0,0,0,-9,0,-862.6175283556684,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,38,37,15,1,3,-9,0,8.666671844234575,8.666671844234575,0,0,0,0,0,0,0,0,0,0,3.302165342651621,0,0,0,57.16,56.15,6,1,0,0,9,4,1,3135,0,0,0 +4929,6068,10964,10965,-9,-9,3,1,1,48,1,0,0,0,1,-9,2,1,0,5,0,0,0,1,0,-9,1,-9,-10,0,-9,0,0,58,1,2,3,-9,-9,2019,2,1,19,7,0,0,15,1,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7.901935724058341,0,0,2,42.31,56.55,5,1,0,0,8,1,1,428,0,0,0 +4929,6068,10965,10964,-9,-9,1,1,0,58,1,0,0,0,1,-9,3,3,0,2,0,0,0,1,0,1,1,-9,10,0,0,0,0,48,1,5,1,3,3,2019,3,3,28,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.308643297780375,0,0,3,22.07,40.14,2,3,1,0,8,1,1,428,0,0,0 +4929,6069,10966,-9,10965,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,4,7.783702236140365,7.852093137564347,0,3,0,-9,0,-9,0,-845.6447348070819,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,50,0,15,1,2,-9,1,5.448288170626325,5.448288170626325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,5,3,0,0,8,3,1,590,0,0,0 +4929,6070,10967,-9,-9,-9,4,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.6016049287911,7.727508339710973,0,3,0,-9,0,-9,0,-1004.206535826278,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,50,0,15,1,2,-9,0,5.093890916340384,5.093890916340384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,5,0,0,8,3,1,612,0,0,0 +4930,6071,10968,10969,-9,-9,1,1,0,56,1,0,0,0,2,-9,4,3,0,4,0,8.264623016612434,8.339466721590341,1,0,-9,33,0,-5,-106.7813575291196,0,0,0,61,1,4,3,3,3,2019,4,2,10,2,0,40,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.800519374728258,8.173254518851603,7.869022230183636,3,51.83,57.2,6,1,0,0,1,4,1,1234,0,0,0 +4930,6071,10969,10968,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.315731050143995,7.943982096460863,1,0,-9,32,0,5,-63.67138929191509,0,0,0,56,2,4,3,3,3,2019,4,1,6,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.263036019759696,19.29338132698942,3,61.68,49.95,7,1,0,0,1,4,1,1234,0,0,0 +4931,6072,10970,10971,-9,-9,1,1,1,86,1,0,0,0,1,-9,4,3,0,3,0,7.010138380348645,7.317702223946005,1,0,-9,9,0,1,-159.1013746194488,0,0,0,85,2,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.298962613346005,0,1,54,45,6,5,0,0,4,2,1,645.5,0,0,0 +4931,6072,10971,10970,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,2,0,6.005216435550966,6.110628719232031,1,0,-9,9,0,-1,63.34217061829744,0,0,0,86,1,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.804880855035203,0,0,64.63,17.57,7,1,0,0,4,2,1,645.5,0,0,0 +4932,6073,10972,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,3,0,5.387823816640704,5.390625621810411,3,0,0,0,-9,0,-1062.246638812216,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.850461950879418,5.864127267006443,4.121997592736626,3,63.83,43.62,6,1,0,0,8,2,1,223,0,0,0 +4933,6074,10973,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,3,7.38622838953033,7.519658691126041,0,3,0,0,0,-9,0,-987.942467026547,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,27,28,15,1,2,-9,0,8.445813107158745,8.445813107158745,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,28.69,4,3,0,0,4,3,1,409,0,0,0 +4934,6075,10974,10975,-9,-9,2,1,0,48,1,0,2,0,1,-9,1,1,0,3,8.185258865303483,7.538736069636686,0,2,0,-9,13,0,-19,-13.12725523612373,0,0,0,67,2,1,3,-9,-9,2019,2,1,11,0,20,0,15,1,0,4,0,16.75349403160896,16.75349403160896,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.6,49.46,3,3,0,0,6,3,1,1129.5,0,0,0 +4934,6075,10975,10974,-9,-9,1,1,1,67,1,0,2,0,2,-9,4,3,0,1,0,7.340421907134496,7.20550170213261,2,0,-9,13,0,19,-106.9831868114385,0,0,0,48,1,3,1,-9,-9,2019,3,2,20,9,0,0,15,4,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.371198457816311,0,0,41.06,30.23,4,1,0,0,6,3,1,1129.5,0,0,0 +4935,6076,10976,-9,10977,10979,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1155.81408167498,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,731.5,0,0,0 +4935,6076,10977,10979,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,4,7.428486651552924,7.24200980834565,0,2,0,-9,14,0,-4,44.02216938117296,0,0,1,43,3,4,1,2,3,2019,1,1,6,0,25,18,15,1,0,1,0,7.738776137978379,7.738776137978379,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,10,3,1,731.5,0,0,0 +4935,6076,10978,-9,10977,10979,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1001.515169885953,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,3,1,731.5,0,0,0 +4935,6076,10979,10977,-9,-9,1,1,1,43,1,0,2,0,3,-9,1,1,0,4,7.288419958015688,7.565606519727899,0,2,0,-9,14,0,4,-87.34212537505383,0,0,0,39,2,4,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,5.754443964017258,5.754443964017258,0,0,0,0,0,0,0,1,1,0,1.564676550626963,0,0,0,56.57,57.78,5,1,0,0,10,3,1,731.5,0,0,0 +4936,6077,10980,10981,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,5,9.052125423079213,8.852467074907656,0,2,0,-9,6,0,1,-118.2353240970915,0,0,0,46,1,5,1,2,3,2019,1,2,18,6,37,37,15,1,6,1,0,25.66238223591808,25.66238223591808,0,0,0,0,0,0,0,0,0,0,1.307618062071654,0,0,0,41.47,59.33,6,1,0,0,1,5,1,308.3333333333333,0,0,0 +4936,6077,10981,10980,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,5,9.202962343939761,9.239714428959029,0,2,0,-9,6,0,-1,111.57084983653,0,0,0,47,2,5,1,3,3,2019,1,1,7,0,43,48,15,1,0,1,0,31.8346001467826,31.8346001467826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,1,5,1,308.3333333333333,0,0,0 +4936,6077,10982,-9,10981,10980,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.065298291747,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,1,5,1,308.3333333333333,0,0,0 +4937,6078,10983,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,6.326847040781017,6.560236873060541,3,0,0,0,-9,0,-1078.181170654308,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.030867702639405,6.487818543854156,0,0,54.37,54.8,6,1,0,0,9,2,1,158,0,0,0 +4938,6079,10984,10985,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.22809394705863,7.524394450229261,1,0,-9,43,0,4,16.60930961563221,0,0,0,61,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.280717896051051,7.467098428540153,4.653810108331205,3,57.16,56.15,6,1,0,0,12,2,1,599,0,0,0 +4938,6079,10985,10984,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,4.875747965305848,4.949104913274163,0,1,0,-9,43,0,-4,-43.31520361794441,0,0,0,65,2,4,3,2,2,2019,4,1,12,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.586061905155458,0,0,3,47.15,55.39,5,1,0,0,12,2,1,599,0,0,0 +4939,6080,10986,10987,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,3,7.130379377985086,7.652575914495491,6.91042513646021,1,0,-9,34,0,-5,-27.82556386015154,0,0,0,73,3,3,3,3,2,2019,2,1,6,0,24,24,15,1,0,4,0,6.636941157118805,6.636941157118805,0,0,0,0,0,0,0,1,1,0,0,7.073970057108135,0,0,54.37,54.8,7,1,0,0,9,3,1,1584,0,0,0 +4939,6080,10987,10986,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,34,0,5,11.30536215042124,0,0,0,68,3,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.2994153993358046,3,57.33,53.46,6,1,0,0,9,3,1,1584,0,0,0 +4940,6081,10988,10990,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,5,8.068166191350739,8.023014922019049,0,2,0,-9,18,0,-1,-68.73608303940765,-9,0,0,46,1,3,1,2,-9,2019,1,2,11,0,26,0,15,1,0,1,0,12.77799490692173,12.77799490692173,0,0,0,0,0,0,0,1,1,0,2.900753911771361,0,0,0,57.06,57.76,1,1,0,0,4,5,1,870.75,0,0,0 +4940,6081,10989,-9,10988,10990,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-977.5853410858906,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,4,5,1,870.75,0,0,0 +4940,6081,10990,10988,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,8.892015167750142,9.251935345706086,0,2,0,-9,9,0,1,-32.16783951278691,0,0,0,45,1,5,1,-9,-9,2019,1,1,6,0,55,50,15,1,0,1,0,20.59624083684244,20.59624083684244,0,0,0,0,0,0,0,1,1,0,3.332942149475039,0,0,0,57.33,53.46,1,1,0,0,4,5,1,870.75,0,0,0 +4940,6081,10991,-9,10988,10990,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.534125941726,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,870.75,0,0,0 +4941,6082,10992,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,4,6.804635995121518,7.03092259548299,0,3,0,-9,0,-9,0,-1007.149620200508,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,8,0,15,1,1,-9,0,12.49370925203814,12.49370925203814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,4,0,0,8,2,0,664,0,0,0 +4941,6083,10993,-9,-9,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,7.661668107467547,7.822908502241553,0,3,0,-9,0,-9,0,-951.7197212194088,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.471196428137109,0,0,0,46,58,5,4,0,0,8,3,0,1227,0,0,0 +4941,6084,10994,-9,-9,-9,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.069942713787849,6.863437295086377,0,3,0,-9,0,-9,0,-972.8099281618071,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,21,0,15,1,1,-9,0,5.153621302405282,5.153621302405282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,4,0,0,8,2,0,381,0,0,0 +4942,6085,10995,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,4,5.565901940369984,7.864927052644772,7.993099646084769,3,0,0,0,-9,0,-1072.528584314024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,11,14,15,1,0,-9,0,4.014662978111194,4.014662978111194,0,0,0,0,0,0,0,1,1,0,3.445504632319146,7.458137013459254,0,0,48.87,58.55,2,1,0,0,2,3,1,221,0,0,0 +4943,6086,10996,10997,-9,-9,2,1,0,35,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,9,0,-1,16.51978967360831,0,0,1,36,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,6,1,0,0,6,5,1,698.5,0,0,0 +4943,6086,10997,10996,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,4,9.420791677418586,9.166530778938153,0,2,0,-9,9,0,1,75.0720177676769,0,0,0,35,2,4,3,3,2,2019,2,2,6,0,46,39,15,1,0,3,0,21.11478472628391,21.11478472628391,0,0,0,0,0,0,0,0,0,0,1.514137081711532,0,0,0,54.79,55.86,6,1,0,0,6,5,1,698.5,0,0,0 +4943,6086,10998,-9,10996,10997,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.522570833904,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,6,5,1,698.5,0,0,0 +4943,6086,10999,-9,10996,10997,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.105423063433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,6,5,1,698.5,0,0,0 +4944,6087,11000,11002,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,4,8.230838357216907,8.358589064059849,0,2,0,-9,6,0,-5,29.06587607616666,0,0,0,48,2,3,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,12.89083187185158,12.89083187185158,0,0,0,0,0,0,0,1,1,0,1.606348264305752,0,2.982713234089439,3,54.2,57.49,6,1,0,0,2,4,1,554.6666666666666,0,0,0 +4944,6087,11001,-9,11002,11000,4,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.8916425486593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,2,4,1,554.6666666666666,0,0,0 +4944,6087,11002,11000,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.056560166273067,8.171161049997519,0,2,0,-9,6,0,5,63.54630376536981,0,0,0,43,2,4,1,3,3,2019,1,1,14,3,30,35,15,1,3,1,0,14.13838625862937,14.13838625862937,0,0,0,0,0,0,0,1,1,0,0,0,7.472906653175583,3,21.73,61.64,6,4,0,0,2,4,1,554.6666666666666,0,0,0 +4944,6088,11003,-9,11002,11000,3,1,0,22,2,0,1,0,2,-9,1,1,0,4,6.948300590206841,7.19239025923843,0,3,0,0,0,-9,0,-1104.916806928701,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,7,8,15,1,1,-9,1,19.98354450921033,19.98354450921033,0,0,0,0,0,0,0,1,1,0,2.170732200964277,0,6.309838307055223,3,54.2,57.49,5,2,0,0,2,2,1,320,0,0,0 +4945,6089,11004,11005,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,10,0,1,0,0,0,0,70,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,6,1,0,0,6,1,1,1416,0,0,0 +4945,6089,11005,11004,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-1,0,0,0,0,71,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.14,50.45,6,1,0,0,6,1,1,1416,0,0,0 +4946,6090,11006,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,2,7.846744665236598,8.019715500608905,0,3,0,0,0,-9,0,-1009.604812069374,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,35,40,15,1,1,-9,0,10.74445435362445,10.74445435362445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.02,27.63,5,1,0,0,4,3,0,1109,0,0,0 +4947,6091,11007,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,4.672146698717834,5.006973932175241,3,0,0,0,-9,0,-955.9675490207969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,1.607320978001223,0,0,1,1,0,0,4.989861651446494,9.767823701284108,3,39.57,24.67,5,1,0,0,2,2,1,180,0,0,0 +4948,6092,11008,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-988.7974332857456,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.17,30.05,5,1,0,0,12,1,0,2405,0,0,0 +4949,6093,11009,-9,-9,-9,1,1,1,80,2,0,0,0,1,-9,4,3,0,3,0,7.293312982207853,7.205469170790567,3,0,0,0,-9,0,-1003.108402266343,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,6.743497893767059,0,0,0,0,44.21988584250293,1,1,0,0,7.126250462049176,0,0,53,46,5,1,0,0,9,3,1,828,0,0,0 +4950,6094,11010,11012,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,3,0,0,0,2,0,-9,10,0,4,37.96778034972466,0,0,0,47,2,3,1,2,2,2019,1,1,12,2,0,42,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,54.86,5,1,0,0,2,2,1,866.6666666666666,0,0,0 +4950,6094,11011,-9,11012,11010,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.2161612101496,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,1,866.6666666666666,0,0,0 +4950,6094,11012,11010,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,3,7.544760171358089,7.790691183717517,0,2,0,-9,22,0,-4,6.058200446691989,0,0,0,51,2,3,1,3,2,2019,1,2,11,0,25,20,15,1,0,1,0,7.853857589553181,7.853857589553181,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.64,52.35,6,1,0,0,2,2,1,866.6666666666666,0,0,0 +4950,6095,11013,-9,11012,11010,3,1,1,18,2,0,2,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-987.0568888649491,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.3,57.16,3,1,1,0,2,2,1,1618,0,0,0 +4951,6096,11014,11015,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,9.209578271209445,9.001790257947107,0,1,0,-9,32,0,-4,-40.4884796521739,0,0,0,59,3,4,1,2,3,2019,1,2,12,1,53,48,15,1,1,1,0,22.13061358808072,22.13061358808072,0,0,0,0,0,0,0,0,0,0,3.374066781130419,0,0,0,49.04,55.86,6,1,0,0,10,5,1,3266,0,0,0 +4951,6096,11015,11014,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,4,8.498262866147957,8.457765010290496,0,1,0,-9,32,0,4,7.652114788420565,0,0,0,55,2,3,1,3,3,2019,1,1,12,0,40,43,15,1,0,1,0,12.7042662410227,12.7042662410227,0,0,0,0,0,0,0,0,0,0,4.174112296503254,0,0,0,46.9,56.66,5,1,0,0,10,5,1,3266,0,0,0 +4952,6097,11016,11017,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.054743397822671,8.425614680155135,0,2,0,-9,8,0,-1,9.160436416434344,0,0,0,50,2,3,3,3,3,2019,2,1,7,0,41,40,15,1,0,3,0,9.408805867574877,9.408805867574877,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,3,1,295.5,0,0,0 +4952,6097,11017,11016,-9,-9,1,1,0,50,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,24,0,1,-23.81037607093808,0,0,0,49,2,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3069436521265442,0,0,0,43.71,56.91,6,1,0,0,6,3,1,295.5,0,0,0 +4953,6098,11018,11019,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.118646420320188,8.064906495056606,0,1,0,-9,9,0,-10,-9.231746963755521,0,0,0,68,3,3,1,3,3,2019,1,1,7,0,38,38,15,1,0,1,0,9.759338586260244,9.759338586260244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,13,3,1,350.5,0,0,0 +4953,6098,11019,11018,-9,-9,1,1,1,68,1,0,0,0,3,-9,1,1,0,3,0,6.617001072077477,6.441960228110275,1,0,-9,9,0,10,75.8404153443321,0,0,0,58,2,4,1,3,3,2019,1,2,6,0,0,40,15,1,0,1,0,0,0,1,0,23.76287929885034,0,0,0,0,1,1,0,6.127326120571118,6.59580305465689,0,0,57.33,53.46,5,1,0,0,13,3,1,350.5,0,0,0 +4954,6099,11020,11021,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,4,7.742439665853175,7.946472262000179,0,1,0,-9,8,0,3,0,0,0,0,43,1,5,1,2,1,2019,1,2,12,0,38,38,15,1,0,1,0,7.95997363721218,7.95997363721218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,10,4,1,313.5,0,0,0 +4954,6099,11021,11020,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,5,7.691384486940033,8.030766188302104,0,1,0,-9,8,0,-3,0,0,0,0,46,1,4,1,2,1,2019,1,1,9,0,38,37,15,1,0,1,0,9.361293952078457,9.361293952078457,0,0,0,0,0,0,0,0,0,0,4.359460582340602,0,0,0,54.1,59.11,7,1,0,0,10,4,1,313.5,0,0,0 +4955,6100,11022,11024,-9,-9,2,1,0,34,1,0,2,0,1,-9,2,1,0,5,8.644229575108323,8.972018592739238,0,2,0,-9,4,0,-2,-35.12652584843653,0,0,1,36,2,4,1,-9,-9,2019,1,1,19,8,54,53,15,1,8,1,0,12.37471295998927,12.37471295998927,0,0,0,0,0,0,0,1,1,0,2.516122321996328,0,0,0,48.18,61.8,5,1,0,0,10,4,1,622.25,0,0,0 +4955,6100,11023,-9,11022,11024,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.34444752505,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,1,622.25,0,0,0 +4955,6100,11024,11022,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,4,8.077646984893185,8.497475681793619,0,2,0,-9,4,0,2,-75.76062145418574,0,0,0,34,1,5,1,-9,-9,2019,1,2,11,0,37,37,15,1,0,1,0,8.536754946572744,8.536754946572744,0,0,0,0,0,0,0,1,1,0,1.421069520682823,0,0,0,52.82,53.97,6,1,0,0,10,4,1,622.25,0,0,0 +4955,6100,11025,-9,11022,11024,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.3823132163201,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,622.25,0,0,0 +4956,6101,11026,11028,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,3,8.637415768715714,8.72080972918943,0,2,0,-9,7,0,-1,58.25510860791459,0,0,1,39,1,4,1,2,-9,2019,1,2,10,0,46,39,15,1,0,1,0,15.3160006202101,15.3160006202101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,5,2,0,0,7,5,1,844.75,0,0,0 +4956,6101,11027,-9,11026,11028,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-863.657802149924,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,7,5,1,844.75,0,0,0 +4956,6101,11028,11026,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,4,8.781262419045676,8.832167536796939,0,2,0,-9,7,0,1,-48.49111733973553,0,0,0,38,1,3,1,-9,-9,2019,1,1,6,0,60,45,15,1,0,1,0,13.51207213024693,13.51207213024693,0,0,0,0,0,0,0,1,1,0,1.795333038836036,0,0,0,48.53,58.91,6,1,0,0,7,5,1,844.75,0,0,0 +4956,6101,11029,-9,11026,11028,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.490905443412,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,5,1,844.75,0,0,0 +4957,6102,11030,11031,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.620160124061377,8.106613859422161,0,1,0,-9,35,0,-2,20.22172552890161,0,0,0,61,2,1,1,2,2,2019,1,1,11,0,40,40,15,1,2,1,0,6.545542361958234,6.545542361958234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,3,0,0,8,3,1,135.5,0,0,0 +4957,6102,11031,11030,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,1,6.742488410476493,6.5046118776367,0,1,0,-9,35,0,2,147.6888187239961,0,0,0,59,2,3,1,3,3,2019,1,2,18,0,12,10,15,1,5,1,0,7.010254551995568,7.010254551995568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.4,25.29,7,3,0,1,8,3,1,135.5,0,0,0 +4957,6103,11032,-9,11030,11031,3,1,0,29,2,0,0,0,1,-9,2,1,0,3,8.587219989800136,8.83582963477766,0,3,0,0,0,-9,0,-1051.508766698811,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,40,40,15,1,1,-9,1,16.9564855763662,16.9564855763662,0,0,0,0,0,0,0,0,0,0,1.548970977363971,0,0,0,39.1,57.79,6,3,0,0,8,5,1,501,0,0,0 +4957,6104,11033,-9,11030,11031,4,1,1,23,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1055.457760900085,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.63,43.63,5,3,0,0,8,1,1,1265,0,0,0 +4958,6105,11034,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,3,0,6.036904105955202,5.653986816372572,3,0,0,0,-9,0,-1077.336651700371,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.218207008549913,4.761467212496114,0,0,55.64,25.79,6,1,0,0,7,2,1,428,0,0,0 +4959,6106,11035,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-964.82956141162,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.043112269182017,0,5.554260516276377,3,48.93,50.55,5,1,0,1,4,1,1,2124,0,0,0 +4960,6107,11036,11037,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,2,7.568556824347771,7.5078529392487,0,1,0,-9,23,0,1,141.5732654916975,0,0,0,52,3,1,3,-9,-9,2019,2,1,11,0,34,34,15,1,0,3,0,6.523925948698477,6.523925948698477,0,0,0,0,0,0,0,1,1,0,0,0,25.23360957630435,2,45.63,48.31,3,1,0,0,10,2,1,744.5,0,0,0 +4960,6107,11037,11036,-9,-9,1,1,0,52,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,23,0,-1,93.18352382565988,0,0,0,53,2,2,1,2,3,2019,3,2,30,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.01,25.88,2,1,0,0,10,2,1,744.5,0,0,0 +4960,6108,11038,-9,11037,11036,3,1,0,23,2,0,0,0,2,-9,2,1,0,2,6.84799047078968,6.725273118595164,0,3,0,0,0,-9,0,-937.0746787547656,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,21,16,15,1,3,-9,1,5.444464343268011,5.444464343268011,0,0,0,0,0,0,0,1,1,0,0,0,32.82866942041152,3,38.72,37.71,4,1,0,0,10,2,1,1214,0,0,0 +4960,6109,11039,-9,11037,11036,4,1,1,28,3,0,0,0,2,-9,2,1,0,4,8.082355498970047,7.909685392990336,0,3,0,0,0,-9,0,-974.5210025821176,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,47,41,15,1,1,-9,1,8.577175653287572,8.577175653287572,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.48,60.97,6,1,0,0,10,4,1,1040,0,0,0 +4961,6110,11040,-9,-9,-9,1,1,0,40,2,0,1,0,3,-9,2,1,0,5,7.231268134983706,7.384114161591895,0,4,0,0,0,-9,0,-1030.114864264641,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,3,1,24,0,15,1,1,-9,0,5.199209030141183,5.199209030141183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,7,1,0,0,2,2,0,779,0,0,0 +4961,6110,11041,-9,11040,-9,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1030.127290299209,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,2,0,779,0,0,0 +4961,6111,11042,-9,11040,-9,2,1,1,21,2,0,1,0,2,-9,2,1,0,4,7.297277815328687,7.272439431518924,0,3,0,0,0,-9,0,-939.3637703776168,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,97,0,15,1,2,-9,1,1.623735063036778,1.623735063036778,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,0,0,2,2,0,142,0,0,0 +4962,6112,11043,11044,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,4,7.719187248840779,7.518834294217161,0,1,0,-9,7,0,-7,-21.16761166060194,0,0,0,65,1,3,3,3,3,2019,2,2,7,0,30,30,15,1,0,4,0,8.851570913901492,8.851570913901492,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,12,3,1,1092,0,0,0 +4962,6112,11044,11043,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,6.668107569112783,6.623254207062919,1,0,-9,7,0,7,-24.78490323188797,0,0,0,58,2,4,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.568173505321842,6.434706651678007,0,0,61.28,48.88,6,1,0,0,12,3,1,1092,0,0,0 +4962,6113,11045,-9,11043,11044,3,1,1,24,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1008.743238841505,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.052511089483696,0,0,0,36.38,50.77,3,1,0,0,12,1,1,1085,0,0,0 +4963,6114,11046,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,7,2,0,2,0,0,0,3,0,0,0,-9,0,-947.2007114106159,1,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,36,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,47.63,5,3,0,0,9,1,0,323,0,0,0 +4964,6115,11047,11048,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.12884207139053,7.177038735599147,1,0,-9,42,0,-4,72.25378857564536,0,0,0,67,1,4,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.035864388455509,0,0,46.1,59.99,6,1,0,0,8,3,1,597,0,0,0 +4964,6115,11048,11047,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,7.408366816564964,7.213125448944075,1,0,-9,42,0,4,-24.42010487442065,0,0,0,63,1,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.61592081211152,7.449266639651135,0,0,54.2,57.49,6,1,0,0,8,3,1,597,0,0,0 +4965,6116,11049,-9,11050,-9,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-978.8880751739401,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,845.5,0,0,0 +4965,6116,11050,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,4,7.739117586830086,8.111962499224779,7.466762944562703,4,0,0,0,-9,0,-1113.213859405652,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,8.425065833943277,8.425065833943277,0,0,0,0,0,0,0,1,1,0,7.572297335201368,0,5.828917865839587,3,51.77,58.57,5,1,0,0,5,3,1,845.5,0,0,0 +4965,6116,11051,-9,11050,-9,2,1,1,17,2,0,2,1,3,0,7,2,0,4,5.921931314277599,6.228417804589479,0,4,0,0,0,-9,0,-1130.508544683966,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5575049825803358,0,0,0,57.16,56.15,7,1,0,0,5,3,1,845.5,0,0,0 +4965,6116,11052,-9,11050,-9,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.10120339876,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,1,845.5,0,0,0 +4966,6117,11053,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1069.895551390216,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.622279528012948,0,0,0,51,34,5,1,0,0,2,1,0,1350,0,0,0 +4967,6118,11054,-9,11055,11056,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.2557175247779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,869.6666666666666,0,0,0 +4967,6118,11055,11056,-9,-9,1,1,0,22,1,1,1,0,2,-9,2,1,0,2,7.714213576159378,7.58808269536925,0,2,0,-9,2,0,-3,-13.19824372866075,0,1,1,25,2,4,1,-9,-9,2019,1,2,14,4,30,16,15,1,4,1,0,8.623750951385759,8.623750951385759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,50.58,3,1,0,0,4,4,1,869.6666666666666,0,0,0 +4967,6118,11056,11055,-9,-9,2,1,1,25,1,1,1,0,2,-9,2,1,0,4,8.170579391170133,8.006581123237414,0,2,0,-9,2,0,3,25.74708481434482,-9,1,0,22,2,2,1,-9,-9,2019,1,1,15,2,46,0,15,1,2,1,0,8.163776759738161,8.163776759738161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,6,1,0,0,4,4,1,869.6666666666666,0,0,0 +4968,6119,11057,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,2,7.779275651347724,7.34274191283985,0,3,0,0,0,-9,0,-1049.530043478047,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,8,60,50,15,1,8,-9,0,4.242233797989078,4.242233797989078,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.29,41.01,4,1,0,0,5,3,1,150,0,0,0 +4969,6120,11058,-9,11060,11059,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.056002203107,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,5,0,629.6666666666666,0,0,0 +4969,6120,11059,11060,-9,-9,1,1,1,30,1,0,1,0,2,-9,3,3,0,3,9.851753631313677,10.08938889226619,0,2,0,-9,6,0,-5,-22.52626779791828,0,0,0,35,2,5,1,3,3,2019,3,2,18,6,43,43,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.333613998470241,0,5.78445206390511,3,31.16,51.92,5,4,1,0,8,5,0,629.6666666666666,0,0,0 +4969,6120,11060,11059,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,5,8.611556242938807,8.721942829635513,0,2,0,-9,6,0,5,-70.06784170842711,0,0,1,30,2,3,3,-9,-9,2019,2,1,11,0,51,39,15,1,0,3,0,12.24507115324667,12.24507115324667,0,0,0,0,0,0,0,1,1,0,3.163515006093536,0,0,0,50.01,55.66,6,1,0,0,8,5,0,629.6666666666666,0,0,0 +4970,6121,11061,-9,-9,-9,1,1,0,46,3,0,2,0,1,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-958.5909617541095,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.41,37.34,1,3,0,0,5,1,0,1141.666666666667,0,0,0 +4970,6121,11062,-9,11061,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-919.0536731794213,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,1,0,1141.666666666667,0,0,0 +4970,6121,11063,-9,11061,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.479974794551,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,5,1,0,1141.666666666667,0,0,0 +4971,6122,11064,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,4,8.195364177979434,8.063532068569684,0,3,0,0,0,-9,0,-1033.170458466037,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,0,15,1,0,-9,0,9.725272729143907,9.725272729143907,0,0,0,0,0,0,0,0,0,0,.8950820016979718,0,0,0,43.6,56.78,5,1,0,0,9,4,1,237,0,0,0 +4972,6123,11065,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,7.964886787887731,7.81843832018261,3,0,0,0,-9,0,-872.5327347564221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.902700863931686,8.046565107937806,0,0,59.15,49.67,7,1,0,0,1,4,1,346,0,0,0 +4973,6124,11066,11067,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,5.794667664651672,5.798516558692711,1,0,-9,51,0,-3,-87.40198951058635,0,0,0,79,3,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,31.71351400112317,35.48259475173627,8.949226164782672,0,0,1,1,0,2.843641637876126,6.216128742239171,0,0,51.46,18.52,5,1,0,0,13,2,1,333,0,0,0 +4973,6124,11067,11066,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,3,0,3,-72.00349036096055,0,0,0,76,3,2,3,-9,-9,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.40644256752605,1,36.03,40.6,4,1,0,0,13,2,1,333,0,0,0 +4974,6125,11068,11069,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.258257546610468,6.377262508196876,1,0,-9,25,0,1,-31.05058486914298,0,0,0,72,3,2,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,.2513622035719285,0,0,0,0,1,1,0,5.476291944875558,6.533917405552764,5.443231946085715,1,42.11,40.08,5,1,0,0,6,2,0,823.5,0,0,0 +4974,6125,11069,11068,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,6.228037922039694,6.438933017756803,1,0,-9,25,0,-1,-65.30234067288058,0,0,0,73,3,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,21.92166148315773,1.547022719895095,0,0,0,1,1,0,0,6.075893667979896,0,0,42.69,26.8,3,1,0,0,6,2,0,823.5,0,0,0 +4975,6126,11070,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,2,8.76665022200015,8.76317391908988,1.264005691183056,3,0,0,0,-9,0,-873.8452476884023,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,47,47,15,1,0,-9,0,18.33782476777457,18.33782476777457,0,0,0,0,0,0,0,0,0,0,0,1.31117216788266,9.600243883968822,3,38.94,31.01,4,1,0,0,7,5,1,650,0,0,0 +4975,6127,11071,-9,11070,-9,2,1,1,32,2,0,0,0,2,-9,2,1,0,4,9.387579532062885,9.357808402500874,0,3,0,0,0,-9,0,-991.9976264625045,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,50,45,15,1,0,-9,1,30.57838469363628,30.57838469363628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,5,1,0,0,7,5,1,204,0,0,0 +4976,6128,11072,11073,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,5,0,-1,-171.0229041344636,0,0,0,52,2,3,1,2,2,2019,1,2,14,2,0,25,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,36.93,2,1,0,0,4,2,0,330.5,0,0,0 +4976,6128,11073,11072,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,5.705965666862042,5.54826602869151,0,1,0,-9,5,0,1,64.67841167284767,0,0,0,51,2,2,1,-9,3,2019,1,1,12,0,10,10,15,1,0,1,0,2.801157737549619,2.801157737549619,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.74,54.46,2,1,0,0,4,2,0,330.5,0,0,0 +4976,6129,11074,-9,11073,11072,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,7.960277934901709,7.847235193266483,0,3,0,0,0,-9,0,-1074.510720047561,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,38,36,15,1,0,-9,1,8.399862740789207,8.399862740789207,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.4,55.59,2,1,0,0,4,3,0,1137,0,0,0 +4977,6130,11075,11076,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,6.840376088417822,6.677010265919696,1,0,-9,8,0,-6,33.93213645112761,0,0,0,71,2,2,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.892253162020948,6.814523954781031,0,0,56.11,44.4,5,1,0,0,9,3,1,285,0,0,0 +4977,6130,11076,11075,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,7.263754442485093,7.522322699637416,1,0,-9,8,0,6,105.4222035564363,0,0,0,65,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.349641351006007,7.657532144984393,0,0,56.1,31.17,6,1,0,0,9,3,1,285,0,0,0 +4978,6131,11077,-9,-9,-9,2,1,0,44,2,0,0,0,1,-9,2,1,0,3,8.653340619681515,8.553923498558419,6.582752985382707,1,0,-9,15,0,0,-83.16270069211802,0,0,1,-9,-9,-9,-9,2,2,2019,-9,1,21,10,50,43,15,1,10,-9,0,11.0253235742754,11.0253235742754,0,0,0,0,0,0,0,1,1,0,0,7.051659495545152,12.87528850603091,1,39.96,41.03,6,1,0,0,6,4,1,757,0,0,0 +4979,6132,11078,-9,11080,11079,4,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.42029671842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,5,1,464.6666666666667,0,0,0 +4979,6132,11079,11080,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,5,8.013239086201299,8.161858454003674,0,2,0,-9,16,0,10,-25.2087857448125,0,0,0,43,2,3,1,2,1,2019,1,2,7,0,48,54,15,1,0,1,0,9.868106732525906,9.868106732525906,0,0,0,0,0,0,0,1,1,0,2.631338951013633,0,0,0,62.39,56.71,6,4,0,0,8,5,1,464.6666666666667,0,0,0 +4979,6132,11080,11079,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,3,9.113499665760115,9.068830561946644,0,2,0,-9,16,0,-10,-103.7437201332185,0,0,1,53,2,5,1,2,2,2019,1,1,11,0,52,46,15,1,0,1,0,21.33611831019869,21.33611831019869,0,0,0,0,0,0,0,1,1,0,1.980173656452485,0,2.125164881646602,3,54.96,53.17,6,4,0,0,8,5,1,464.6666666666667,0,0,0 +4979,6133,11081,-9,11080,11079,3,1,0,21,2,0,1,0,2,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-848.8133439443411,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,30,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,4,0,0,8,1,1,704,0,0,0 +4980,6134,11082,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1048.074894345237,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,47.36,15.07,2,1,0,0,2,1,0,751,0,0,0 +4981,6135,11083,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1075.483358503971,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,1,1,8,1,0,213,0,0,0 +4982,6136,11084,11085,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,6.656176776924545,6.533570713320913,1,0,-9,6,0,-5,3.15881812943461,0,0,0,73,1,5,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.336238779480051,0,0,47.62,56.48,6,1,0,0,10,4,1,443.5,0,0,0 +4982,6136,11085,11084,-9,-9,2,1,1,73,1,0,0,0,1,-9,2,1,0,5,8.03518446893656,8.209119598234672,7.411671271406195,1,0,-9,6,0,5,14.00717480950893,0,0,0,68,2,4,3,2,2,2019,2,1,7,0,30,30,15,1,0,4,0,11.40019333560462,11.40019333560462,0,0,0,0,0,0,0,1,1,0,5.251773126242594,7.795703313801925,0,0,61.58,48.86,6,1,0,0,10,4,1,443.5,0,0,0 +4983,6137,11086,-9,11087,11089,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.072213073145,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,864.5,0,0,0 +4983,6137,11087,11089,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,5,6.60543158421061,6.721527729888717,0,2,0,-9,12,0,0,50.18982333827487,0,0,1,34,1,4,1,2,3,2019,1,2,11,1,7,7,15,1,1,1,0,17.68585192664987,17.68585192664987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,6,1,0,0,9,5,1,864.5,0,0,0 +4983,6137,11088,-9,11087,11089,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.693550660004,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,9,5,1,864.5,0,0,0 +4983,6137,11089,11087,-9,-9,2,1,1,34,1,0,2,0,1,-9,2,1,0,4,9.293320269550717,9.297028895254048,0,2,0,-9,7,0,0,30.18983208840138,0,0,0,34,1,5,1,2,2,2019,1,1,13,2,45,45,15,1,2,1,0,40.68455691165679,40.68455691165679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.14,61.33,6,1,0,0,9,5,1,864.5,0,0,0 +4984,6138,11090,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-996.3570098879791,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.71,37.94,1,1,0,0,10,1,0,406,0,0,0 +4985,6139,11091,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,2,1,0,3,7.416667358522385,7.204523559514572,0,3,0,0,0,-9,0,-1082.419404657514,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,10,27,25,15,1,10,-9,0,7.813515400466262,7.813515400466262,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.76,55.09,3,1,0,0,4,3,1,976,0,0,0 +4986,6140,11092,11093,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,3,8.218368489072663,8.074096509104132,0,1,0,-9,7,0,3,10.21533413240343,0,0,0,29,2,3,1,2,3,2019,1,2,11,0,59,47,15,1,0,1,0,6.212619682449069,6.212619682449069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,3,1,0,0,11,4,0,383,0,0,0 +4986,6140,11093,11092,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,3,7.733908237849993,7.743515116889066,0,1,0,-9,7,0,-3,60.6709267882335,0,1,1,32,2,3,1,-9,-9,2019,1,1,25,12,50,55,15,1,12,1,0,5.830550982172761,5.830550982172761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.43,44.84,2,1,0,0,11,4,0,383,0,0,0 +4987,6141,11094,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,3,8.870846278667202,9.00838476319832,0,3,0,0,0,-9,0,-1066.959917657354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,37,15,1,0,-9,0,16.05581969294271,16.05581969294271,0,0,0,0,0,0,0,0,0,0,2.221166219736094,0,0,0,57.33,53.46,6,1,0,0,13,5,1,436,0,0,0 +4988,6142,11095,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,4,0,8.697215041158911,9.121853567274446,3,0,0,0,-9,0,-980.75097109486,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4672480796678,8.679183342128406,0,3,57.16,56.15,7,1,0,0,11,5,1,159,0,0,0 +4989,6143,11096,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,0,6.956241088709659,6.636506610326451,3,0,0,0,-9,0,-890.771927950855,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.42639396585016,0,0,38.31,29.74,3,1,0,0,6,2,1,1750,0,0,0 +4990,6144,11097,11098,-9,-9,2,1,0,58,1,0,0,0,1,-9,8,3,1,2,0,7.667124714453894,7.941395528923783,1,0,-9,36,0,-4,76.32186275236219,0,0,0,62,2,3,1,2,2,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.645401483934811,8.197981793552712,0,3,48.76,29.31,5,1,0,0,1,5,1,875.5,0,0,0 +4990,6144,11098,11097,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.629584616005435,9.011515686191222,0,1,0,-9,6,0,4,-70.16138194911339,0,0,0,58,1,2,3,3,3,2019,2,2,10,0,0,39,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,5,1,0,0,1,5,1,875.5,0,0,0 +4991,6145,11099,-9,11100,11101,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-847.497616995593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,1565.75,0,0,0 +4991,6145,11100,11101,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,1,8.42536705821192,8.038860795768588,0,2,0,-9,8,0,-2,4.010254526302908,0,0,1,45,2,3,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,11.56302538999127,11.56302538999127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.18,31.79,4,1,0,0,12,4,1,1565.75,0,0,0 +4991,6145,11101,11100,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.550089857431789,8.516769586743623,0,2,0,-9,8,0,2,-24.00987161946965,0,0,0,43,2,1,1,2,2,2019,1,1,11,0,48,48,15,1,0,1,0,11.40205157413593,11.40205157413593,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,53.42,6,1,0,0,12,4,1,1565.75,0,0,0 +4991,6145,11102,-9,11100,11101,3,1,0,16,2,0,2,1,3,-9,7,2,0,3,5.810961374351768,5.784473573043762,0,2,0,0,0,-9,0,-1067.404047875594,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,5,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,47.15,5,1,0,0,12,4,1,1565.75,0,0,0 +4992,6146,11103,11104,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,4,8.436229281089926,8.55960085598004,0,1,0,-9,8,0,-3,69.3970645121922,0,0,1,38,2,4,1,2,3,2019,1,2,15,4,75,40,15,1,4,1,0,6.094854253829907,6.094854253829907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,6,1,0,0,2,4,1,2228,0,0,0 +4992,6146,11104,11103,-9,-9,2,1,1,38,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,8,0,3,14.32983783863218,0,0,0,35,1,4,1,1,2,2019,1,1,11,1,0,16,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,5,1,0,0,2,4,1,2228,0,0,0 +4993,6147,11105,-9,11106,11107,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.3083749452971,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,0,1649.333333333333,0,0,0 +4993,6147,11106,11107,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,2,8.275553535917378,7.931093929216674,0,2,0,-9,2,0,11,-20.66546487007975,0,0,0,36,1,5,1,-9,2,2019,1,3,15,3,34,34,15,1,3,1,0,13.94285423191119,13.94285423191119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.55,54.09,4,1,0,0,2,4,0,1649.333333333333,0,0,0 +4993,6147,11107,11106,-9,-9,3,1,1,36,1,0,1,0,1,-9,2,1,0,5,8.124756098645998,8.440535618099046,0,2,0,-9,2,0,-11,-43.23018397753511,-9,0,0,47,2,2,1,-9,-9,2019,1,1,11,0,38,0,15,1,0,1,0,12.81239675380202,12.81239675380202,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,2,4,0,1649.333333333333,0,0,0 +4994,6148,11108,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,5,8.801784387854413,8.936647162101583,0,3,0,0,0,-9,0,-1032.510764863214,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,35,15,1,0,-9,0,19.89155858885594,19.89155858885594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.61,64.02,3,1,0,0,12,5,1,125,0,0,0 +4995,6149,11109,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,5,8.041769625586593,8.354737149356239,0,1,0,1,1,-9,-3,13.91288066091722,0,1,1,-9,-9,-9,-9,1,1,2019,-9,2,6,0,38,38,15,1,0,-9,0,10.76327466150408,10.76327466150408,0,0,0,0,0,0,0,0,0,0,3.0574785328694,0,0,0,57.06,57.76,6,1,0,0,9,3,0,150,0,0,0 +4996,6150,11110,-9,11112,11113,3,1,0,17,2,0,2,1,2,0,7,2,0,4,5.713289122254047,5.874744208984827,0,2,0,0,0,-9,0,-1043.822388900279,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,7,8,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.456289067748293,0,0,0,9.470000000000001,72.75,3,1,0,0,11,4,1,1788,0,0,0 +4996,6150,11111,-9,11112,11113,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1014.648215848273,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,11,4,1,1788,0,0,0 +4996,6150,11112,11113,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,3,8.48592683275038,8.373505988427185,0,2,0,-9,10,0,-1,-10.91882491130198,0,0,0,52,1,4,1,2,2,2019,1,1,12,0,25,25,15,1,0,1,0,21.99223180419436,21.99223180419436,0,0,0,0,0,0,0,1,1,0,1.909007365706676,0,0,0,53.24,47.3,5,1,0,0,11,4,1,1788,0,0,0 +4996,6150,11113,11112,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,4,8.536436284341487,8.594478123567281,0,2,0,-9,10,0,1,-59.89930795418135,0,0,0,51,1,3,1,1,2,2019,1,2,8,0,37,37,15,1,0,1,0,20.8005486898762,20.8005486898762,0,0,0,0,0,0,0,1,1,0,5.75355952996619,0,0,0,57.16,56.15,6,1,0,0,11,4,1,1788,0,0,0 +4997,6151,11114,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,7.338668478629851,6.962473285028545,3,0,0,0,-9,0,-1097.211741817519,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.474431085540005,6.979851191026579,11.44442234327596,3,57.16,56.15,3,1,0,0,4,2,0,785,0,0,0 +4998,6152,11115,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-932.5997329643823,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,1,0,0,12.61038390435933,0,1.524908749919665,0,1,1,0,0,0,0,0,47.29,18.38,6,1,0,0,2,1,0,414,0,0,0 +4999,6153,11116,11117,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,58,0,-1,-102.6435218220058,0,0,0,80,2,2,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.7000325098606662,0,0,0,52.4,55.58,6,1,0,0,9,4,1,519.5,0,0,0 +4999,6153,11117,11116,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,2,0,8.364576923148473,8.752967484172295,1,0,-9,58,0,1,-39.48578117028444,0,0,0,79,2,4,3,2,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.779073465552194,0,0,59.7,32.49,5,1,0,0,9,4,1,519.5,0,0,0 +5000,6154,11118,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,4,3,0,2,0,5.427734408130772,6.118183541591162,3,0,0,0,-9,0,-969.8168892035037,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,39,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.303363507814097,6.112774114178451,0,0,45.31,34.97,6,1,0,0,4,2,1,1312,0,0,0 +5001,6155,11119,11120,-9,-9,1,1,1,50,1,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,9,0,-4,0,1,0,0,54,1,2,3,3,3,2019,4,2,10,2,0,50,15,2,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.412761669934101,0,0,0,54.46,47.86,6,1,0,0,12,1,1,1005.5,0,0,0 +5001,6155,11120,11119,-9,-9,2,1,0,54,1,0,0,0,1,-9,6,3,0,2,0,0,0,1,0,-9,9,0,4,0,0,0,0,50,1,4,2,2,1,2019,4,1,6,0,0,0,15,3,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,1.901616234249018,0,0,0,58.57,35.72,6,1,0,0,12,1,1,1005.5,0,0,0 +5002,6156,11121,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,3,0,6.113943370750659,6.64208036496703,3,0,0,0,-9,0,-837.9555243907463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.09056281368018,6.666664104141068,0,0,62.42,42.94,6,1,0,0,9,2,1,889,0,0,0 +5003,6157,11122,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,4,7.915965903432387,7.975708460612938,0,3,0,0,0,-9,0,-967.9314506669219,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,27,15,1,0,-9,0,6.133828806030825,6.133828806030825,0,0,0,0,0,0,0,0,0,0,2.416574272379088,0,0,0,45.15,57.46,5,1,0,0,1,3,0,772,0,0,0 +5004,6158,11123,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,4,3,0,3,0,8.270202542274358,8.867484161744629,3,0,0,0,-9,0,-1148.158846254785,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.584274636578662,8.432186540465944,.670204779163758,3,46.81,43.46,5,1,0,0,1,5,1,129,0,0,0 +5005,6159,11124,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-905.4858390296683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.85148717474728,0,0,0,52,54.51,5,1,0,0,8,1,0,2149,0,0,0 +5006,6160,11125,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,3,6.839083146189861,7.256816018025197,5.524332721989973,3,0,0,0,-9,0,-991.0230882784069,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,15,0,15,1,0,-9,0,7.555335265966574,7.555335265966574,0,0,0,0,0,0,0,1,1,0,3.543454826020482,5.923584708720931,0,0,59.31,49.81,6,1,0,0,12,3,1,543,0,0,0 +5007,6161,11126,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,2,7.312173339145994,7.041441880839757,0,3,0,0,0,-9,0,-968.580464622914,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,20,20,15,1,8,-9,0,6.891641921393068,6.891641921393068,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.26,20.96,1,3,0,0,5,2,0,632,0,0,0 +5008,6162,11127,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-897.7197469484511,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.68,15.76,4,1,0,0,2,1,0,222,0,0,0 +5009,6163,11128,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1081.9215241813,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,57.99,2,1,0,0,6,1,1,2076,0,0,0 +5010,6164,11129,11130,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,3,8.139701451057467,8.447138472127937,0,2,0,-9,4,0,8,60.85779296036586,0,0,0,47,2,4,1,2,3,2019,1,2,6,0,37,36,15,1,0,1,0,13.77171532449892,13.77171532449892,0,0,0,0,0,0,0,0,0,0,1.255735284249162,0,10.37352772058744,3,54.62,53.53,6,1,0,0,7,4,1,1441.5,0,0,0 +5010,6164,11130,11129,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,4,8.149507098287838,7.992933365454896,0,2,0,-9,4,0,-8,96.04541745425207,0,0,0,55,2,3,1,-9,-9,2019,1,1,11,3,30,25,15,1,3,1,0,11.38503412658967,11.38503412658967,0,0,0,0,0,0,0,0,0,0,4.324153521707251,0,10.50698554868022,3,54.79,55.86,7,1,0,0,7,4,1,1441.5,0,0,0 +5010,6165,11131,-9,11130,11129,3,1,1,20,2,0,1,0,2,-9,2,1,0,3,8.048324970818651,8.11189736803696,0,3,0,0,0,-9,0,-1142.101346096457,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,52,44,15,1,0,-9,1,7.819620493701859,7.819620493701859,0,0,0,0,0,0,0,0,0,0,1.236804577868645,0,0,0,51.88,57.24,6,1,0,0,7,4,1,1848,0,0,0 +5011,6166,11132,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,1,1,0,3,7.482217579732059,7.326346323940424,0,3,0,0,0,-9,0,-921.605509608518,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,50,50,15,1,1,-9,0,4.119378037177491,4.119378037177491,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,53.83,5,1,0,1,10,3,1,152,0,0,0 +5012,6167,11133,11134,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,3,7.327212829359905,8.270253081831676,7.344563303961318,1,0,-9,41,0,0,3.900187936624862,0,0,0,65,3,4,1,3,-9,2019,1,2,7,0,27,40,15,1,0,1,0,7.549177179620176,7.549177179620176,1,0,0,0,0,0,0,1,1,0,4.532404359866617,7.428059483106363,0,0,60.45,43.75,6,1,0,0,6,4,1,1415,0,0,0 +5012,6167,11134,11133,-9,-9,2,1,0,65,1,0,0,0,3,-9,2,1,0,4,7.444105855170463,7.322016394147511,0,1,0,-9,41,0,0,41.37360312620048,0,0,0,65,2,3,1,3,3,2019,1,1,9,0,25,25,15,1,0,1,0,8.246610081592491,8.246610081592491,1,0,11.04458476572737,0,0,0,0,1,1,0,0,0,0,0,52,53,7,1,0,0,6,4,1,1415,0,0,0 +5013,6168,11135,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.264986185750297,8.221817689248011,0,3,0,0,0,-9,0,-912.1681189957761,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,43,43,15,1,0,-9,0,8.205987786981158,8.205987786981158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,4,0,457,0,0,0 +5014,6169,11136,11138,-9,-9,2,1,1,32,1,1,1,0,1,-9,1,1,0,4,8.75562077990622,8.868415545155599,0,2,0,-9,3,0,-2,-90.4613623164549,0,0,0,34,1,4,1,-9,-9,2019,1,1,10,0,70,55,15,1,1,1,0,13.14338553167696,13.14338553167696,0,0,0,0,0,0,0,1,1,0,9.43792995838121,0,0,0,50,57,5,1,0,0,4,5,0,177.6666666666667,0,0,0 +5014,6169,11137,-9,11138,11136,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1087.122675514222,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,5,0,177.6666666666667,0,0,0 +5014,6169,11138,11136,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,4,8.523498268382994,8.556663756861987,0,2,0,-9,3,0,2,-28.50645037793488,0,0,1,32,1,4,1,2,1,2019,1,2,1,0,22,0,15,1,0,1,0,28.06864231139908,28.06864231139908,0,0,0,0,0,0,0,1,1,0,7.545791242227477,0,0,0,49.12,57.28,7,1,0,0,4,5,0,177.6666666666667,0,0,0 +5015,6170,11139,-9,-9,-9,1,1,1,39,3,0,0,0,1,-9,2,1,0,3,9.160378435080228,9.659482587611043,0,3,0,0,0,-9,0,-1053.148528512428,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,41,76,15,1,1,-9,0,31.66129067885469,31.66129067885469,0,0,0,0,0,0,0,0,0,0,3.789857444094587,0,0,0,53.61,52.37,4,3,0,0,7,5,1,2202,0,0,0 +5016,6171,11140,-9,-9,-9,1,1,0,63,3,0,1,0,3,-9,4,3,0,1,0,0,0,4,0,0,0,-9,0,-1052.364484366682,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.78,34.25,5,1,0,1,6,1,0,89,0,0,0 +5016,6172,11141,-9,11140,-9,2,1,1,38,2,0,1,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1083.442294338377,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.7,25.29,4,1,0,0,6,1,0,118,0,0,0 +5017,6173,11142,11143,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,4,7.04304156231558,8.661446397397587,8.137864827947229,1,0,-9,28,0,-6,66.77348555276208,0,0,0,68,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.147617475240156,8.192804267434676,0,0,57.16,56.15,6,1,0,0,4,5,1,646.5,0,0,0 +5017,6173,11143,11142,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,8.061146607164524,8.264978716902595,1,0,-9,27,0,6,-12.10060761229123,0,0,0,62,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.36735608731141,8.28054119674567,0,0,54.2,57.49,6,2,0,0,4,5,1,646.5,0,0,0 +5018,6174,11144,11145,-9,-9,1,1,0,66,1,0,0,0,2,-9,1,1,0,5,6.168131592624492,5.942923770947424,0,1,0,-9,45,0,-3,-27.38921546192356,0,0,0,69,1,5,1,2,-9,2019,1,2,14,2,20,18,15,1,2,1,0,3.053047162053323,3.053047162053323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,4,1,0,0,10,2,1,332.5,0,0,0 +5018,6174,11145,11144,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,5,6.987397704467978,7.104182112394304,0,1,0,-9,45,0,3,-20.23750058299187,0,0,0,66,2,5,1,3,2,2019,1,1,7,0,60,60,15,1,0,1,0,2.101951911382923,2.101951911382923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,3,1,0,0,10,2,1,332.5,0,0,0 +5019,6175,11146,11147,-9,-9,2,1,1,62,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,3,0,2,0,0,0,0,60,3,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.364419045674508,1,44.15,43.88,4,1,0,0,11,1,1,631.5,0,0,0 +5019,6175,11147,11146,-9,-9,1,1,0,60,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,3,0,-2,0,0,0,0,62,3,2,3,-9,2,2019,4,2,24,10,0,0,15,3,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.21,29.17,1,1,0,0,11,1,1,631.5,0,0,0 +5020,6176,11148,-9,11149,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-922.8980230233943,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,1,0,658,0,0,0 +5020,6176,11149,-9,-9,-9,1,1,0,35,3,1,2,0,3,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1051.566375365333,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,4,1,1,0,10,1,0,658,0,0,0 +5020,6176,11150,-9,11149,-9,2,1,0,17,2,1,2,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1026.602222937,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.041143612953777,0,0,0,45.52,49.33,4,1,0,0,10,1,0,658,0,0,0 +5021,6177,11151,11152,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,3,8.668407398829098,8.928809481055314,0,2,0,-9,21,0,6,-53.83829865206003,0,0,0,44,1,4,1,2,2,2019,1,1,11,1,50,48,15,1,1,1,0,13.81626462611451,13.81626462611451,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.49,62.14,5,1,0,0,2,5,1,458,0,0,0 +5021,6177,11152,11151,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,4,8.426569968039511,8.607041310462522,0,2,0,-9,21,0,-6,-103.9566979663612,0,0,1,50,2,3,1,-9,-9,2019,1,2,7,0,38,38,15,1,0,1,0,19.30344588968716,19.30344588968716,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.21,49.46,6,1,0,0,2,5,1,458,0,0,0 +5021,6178,11153,-9,11152,11151,3,1,1,18,2,0,1,0,2,-9,7,2,0,5,6.260791746376274,6.062461102844983,0,3,0,0,0,-9,0,-1024.849665870527,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.99,46.83,7,1,0,0,2,2,1,1464,0,0,0 +5022,6179,11154,-9,11155,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-972.7005224627262,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,3,4,0,0,9,3,1,969,0,0,0 +5022,6179,11155,-9,-9,-9,1,1,0,53,3,0,1,0,1,-9,2,1,0,4,8.178947589947008,8.566065934687623,0,4,0,0,0,-9,0,-994.9475086067779,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,4,0,35,40,15,1,0,-9,0,11.83423042116028,11.83423042116028,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.26,51.57,6,4,0,0,9,3,1,969,0,0,0 +5023,6180,11156,11157,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-1,119.4175130050875,0,0,0,78,2,2,3,2,2,2019,4,1,25,9,0,0,15,4,9,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.0600050692922683,0,13.40533426761356,1,31.52,33.24,3,1,0,0,2,3,0,368.5,0,0,0 +5023,6180,11157,11156,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,2,4.92521313757234,7.651932864478846,7.974993934221136,1,0,-9,7,0,1,-80.84692253463923,0,0,0,77,2,2,3,3,3,2019,4,2,19,5,0,0,15,4,5,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.021946251923283,7.667558318887197,0,0,40.26,33.41,7,1,0,0,2,3,0,368.5,0,0,0 +5024,6181,11158,11159,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,2,8.354264145856703,8.395389693733048,0,2,0,-9,10,0,3,25.93701965188673,-9,0,0,44,2,3,1,2,2,2019,1,1,12,0,60,0,15,1,0,1,0,7.613217893570464,7.613217893570464,0,0,0,0,0,0,0,1,1,0,0,0,1.175250923110351,3,54.21,47.1,4,1,0,0,11,4,0,633.5,0,0,0 +5024,6181,11159,11158,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,3,7.507411536049736,7.606598385603907,0,2,0,-9,10,0,-3,-64.0346180516195,0,0,1,47,2,2,1,-9,-9,2019,1,2,29,10,16,0,15,1,10,1,0,11.2286415790035,11.2286415790035,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.08,51.72,6,1,0,0,11,4,0,633.5,0,0,0 +5024,6182,11160,-9,11159,11158,3,1,1,20,2,0,1,0,2,0,7,2,0,3,6.718485906364083,6.892242431790258,0,3,0,0,0,-9,0,-1115.187683522017,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,0,0,11,2,0,3166,0,0,0 +5025,6183,11161,-9,11164,11162,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.693847338739,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,441.6,0,0,0 +5025,6183,11162,11164,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,4,8.493866552673701,8.551056407373986,0,2,0,-9,9,0,3,-9.570423374173693,0,0,0,41,2,4,1,-9,-9,2019,1,2,10,0,78,44,15,1,0,1,0,10.04643990299326,10.04643990299326,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,4,1,441.6,0,0,0 +5025,6183,11163,-9,11164,11162,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.566841898726,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,441.6,0,0,0 +5025,6183,11164,11162,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,4,7.74380430008914,7.932102271655721,0,2,0,-9,21,0,-3,54.47127374018513,0,0,1,44,2,4,1,2,2,2019,1,1,12,1,33,33,15,1,1,1,0,10.11905393678171,10.11905393678171,0,0,0,0,0,0,0,1,1,0,4.083240723443065,0,0,0,48.87,58.55,6,1,0,0,2,4,1,441.6,0,0,0 +5025,6183,11165,-9,11164,11162,3,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1027.267286690789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,4,1,441.6,0,0,0 +5026,6184,11166,-9,11167,11168,4,1,1,17,2,0,1,1,3,-9,7,2,0,5,0,0,0,2,0,-9,0,-9,0,-974.4372226017275,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,60.74,6,1,0,0,10,3,1,964.6666666666666,0,0,0 +5026,6184,11167,11168,-9,-9,1,1,0,51,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,-5,-43.23611507065065,-9,0,0,56,2,2,1,2,3,2019,3,2,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.74840698596032,2,51.24,58.84,4,1,0,0,10,3,1,964.6666666666666,0,0,0 +5026,6184,11168,11167,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,2,8.138504321850423,8.31316558851322,0,2,0,-9,1,-9,5,80.41086546095897,-9,0,0,51,3,4,3,2,3,2019,2,1,11,1,40,0,15,1,1,3,0,11.16151628346011,11.16151628346011,0,0,0,0,0,0,0,1,1,0,4.973529153219642,0,19.00511818421907,3,43.15,32.98,5,1,0,0,10,3,1,964.6666666666666,0,0,0 +5026,6185,11169,-9,11167,11168,3,1,0,19,2,0,1,0,2,-9,2,1,0,3,5.876417977009807,6.267147650278766,0,3,0,-9,0,-9,0,-1004.69188973438,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,41,0,15,1,0,-9,1,1.256972732539893,1.256972732539893,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.63,45.17,6,1,0,0,10,2,1,2205,0,0,0 +5027,6186,11170,-9,11173,11171,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.086836180171,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,6,3,0,1167.8,0,0,0 +5027,6186,11171,11173,-9,-9,4,1,1,27,1,1,3,0,2,-9,2,1,0,2,7.816344843127069,8.312498490995354,0,2,0,-9,3,0,-1,48.07372409784654,0,1,0,28,1,3,3,-9,-9,2019,2,1,16,6,40,0,15,1,6,3,0,10.26065091465107,10.26065091465107,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.26,44.13,6,1,0,0,6,3,0,1167.8,0,0,0 +5027,6186,11172,-9,11173,11171,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1114.930412279533,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,6,3,0,1167.8,0,0,0 +5027,6186,11173,11171,-9,-9,1,1,0,28,1,1,3,0,1,1,6,3,0,3,0,5.751910233670323,5.870923464070333,2,0,-9,3,0,1,-10.39712482606172,-9,1,1,27,2,2,1,2,1,2019,3,4,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.620418206686113,0,0,0,53.38,52.51,6,2,0,0,6,3,0,1167.8,0,0,0 +5027,6186,11174,-9,11173,11171,2,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.330466085603,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,6,3,0,1167.8,0,0,0 +5028,6187,11175,-9,11178,11177,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.0082511657898,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,3,1,730.6,0,0,0 +5028,6187,11176,-9,11178,11177,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.769985551558,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,3,1,730.6,0,0,0 +5028,6187,11177,11178,-9,-9,2,1,1,48,1,0,3,0,2,-9,2,1,0,5,8.333137344322601,8.404163100646668,0,2,0,-9,7,0,9,-47.33283457562285,0,0,0,39,1,3,1,-9,-9,2019,1,1,0,0,38,12,15,1,0,1,0,12.40057188626697,12.40057188626697,0,0,0,0,0,0,0,1,1,0,.6661069852243843,0,0,0,57.06,57.76,7,4,0,0,8,3,1,730.6,0,0,0 +5028,6187,11178,11177,-9,-9,1,1,0,39,1,0,3,0,1,-9,2,1,0,3,8.113433092088467,8.094388275392214,0,2,0,-9,18,0,0,-94.71263746307088,0,0,1,48,2,5,1,1,2,2019,1,2,8,0,26,28,15,1,0,1,0,15.87990710132189,15.87990710132189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.40000000000001,42,6,4,0,0,8,3,1,730.6,0,0,0 +5028,6187,11179,-9,11178,11177,3,1,1,16,2,0,3,1,2,-9,7,2,0,5,7.340064971998562,6.828078209056684,0,2,0,0,0,-9,0,-927.5579900017739,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,16,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6226077418026177,0,0,0,63.38,53.47,6,4,0,0,8,3,1,730.6,0,0,0 +5029,6188,11180,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1054.075169946945,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6654768612055599,0,0,0,48,56,5,1,1,0,5,1,0,314,0,0,0 +5030,6189,11181,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.623413561726084,8.479314087181553,0,3,0,0,0,-9,0,-1023.412637606211,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,41,42,15,1,1,-9,0,14.90798245044042,14.90798245044042,0,0,0,0,0,0,0,0,0,0,1.712759388949928,0,10.70427881256714,3,54.21,46.79,6,1,0,0,7,5,1,105,0,0,0 +5030,6190,11182,-9,11181,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,3,7.913872150397542,7.968912522899958,0,3,0,0,0,-9,0,-987.3866152367432,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,45,36,15,1,1,-9,1,7.633928747866029,7.633928747866029,0,0,0,0,0,0,0,0,0,0,0,0,2.021506982544993,3,40.24,54.56,4,1,0,0,7,4,1,199,0,0,0 +5031,6191,11183,-9,-9,-9,1,1,0,81,3,0,0,0,1,-9,4,3,0,4,0,7.353593705971265,7.460338836887286,3,0,0,0,-9,0,-1066.361818034739,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.707020581170079,7.323878193035383,0,0,61.3,40.48,6,1,0,0,6,3,1,509,0,0,0 +5032,6192,11184,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,5.454170597194477,5.520760107540815,3,0,0,0,-9,0,-997.9843520034976,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.342197009588753,0,0,1.942003761766914,0,0,1,1,0,4.593508455077437,5.589730799865057,123.7737300027465,3,44.18,33.44,7,1,0,0,10,2,1,2841,0,0,0 +5032,6193,11185,-9,11184,-9,2,1,1,55,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-958.5435751389483,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,10,1,1,4673,0,0,0 +5033,6194,11186,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,3,8.854627382202496,8.90007897560084,0,3,0,0,0,-9,0,-949.548305696154,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,43,48,15,1,0,-9,0,17.59041384251638,17.59041384251638,0,0,0,0,0,0,0,1,1,0,1.242294138761591,0,0,0,54.37,54.8,6,3,0,0,7,5,1,465,0,0,0 +5034,6195,11187,11188,-9,-9,2,1,0,64,1,0,0,0,1,-9,1,1,0,3,0,7.051369597217241,7.444059345482611,1,0,-9,45,0,-1,-39.39011963271079,0,0,0,65,2,3,1,3,2,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.890418569626227,7.41108591800723,10.2323119042671,3,54.9,54.53,4,1,0,0,9,5,1,896,0,0,0 +5034,6195,11188,11187,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,3,8.341347585789251,8.23671285715105,7.505950269445195,1,0,-9,45,0,1,37.89994816591228,0,0,0,64,1,3,1,3,3,2019,1,2,7,0,0,65,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.392330971164091,7.549381439957889,0,3,54.96,53.17,6,1,0,0,9,5,1,896,0,0,0 +5035,6196,11189,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,2,1,0,4,7.95440726870624,8.295427783164744,0,4,0,0,0,-9,0,-847.9097384508835,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,43,45,15,1,0,-9,0,9.85039305120457,9.85039305120457,0,0,0,0,0,0,0,1,1,0,.3102217800292335,0,0,0,58.15,52.91,6,1,0,0,5,3,0,415.5,0,0,0 +5035,6196,11190,-9,11189,-9,2,1,1,17,2,0,1,0,2,1,3,3,0,3,0,0,0,4,0,0,0,-9,0,-959.6906018231234,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.104272151860865,0,0,0,55.53,51.55,7,1,1,0,5,3,0,415.5,0,0,0 +5036,6197,11191,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,8.320221161080894,8.120603643221745,0,3,0,0,0,-9,0,-1100.154248662185,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,44,40,15,1,0,-9,0,10.2993376564522,10.2993376564522,0,0,0,0,0,0,0,0,0,0,2.882566211729015,0,0,0,46.06,49.19,6,1,0,0,10,4,1,270,0,0,0 +5037,6198,11192,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,2,8.009718519642309,8.006349291475816,0,3,0,0,0,-9,0,-1068.380303851795,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,41,15,1,2,-9,0,8.919872795155426,8.919872795155426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.82,52.64,4,1,0,1,8,4,0,185,0,0,0 +5038,6199,11193,11194,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.135076355146502,8.081275843121274,0,1,0,-9,40,0,3,85.4009865425928,0,0,0,58,2,5,1,3,3,2019,1,2,8,0,30,21,15,1,0,1,0,12.36565679469144,12.36565679469144,0,0,0,0,0,0,0,0,0,0,2.090750244039392,0,0,0,57.16,56.15,5,1,0,0,7,5,1,1408.5,0,0,0 +5038,6199,11194,11193,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,5,8.789868693136073,8.869039257440301,0,1,0,-9,40,0,-3,-95.30621417411021,0,0,0,61,2,4,1,2,3,2019,1,1,6,0,46,44,15,1,0,1,0,21.03562471660635,21.03562471660635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,7,5,1,1408.5,0,0,0 +5038,6200,11195,-9,11193,11194,3,1,1,31,2,0,0,0,2,-9,1,1,0,3,5.120942085545011,5.561627051345491,0,3,0,0,0,-9,0,-969.9094635236224,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,10,30,30,15,1,10,-9,1,.6001962127927117,.6001962127927117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.94,64.13,2,1,0,1,7,2,1,1865,0,0,0 +5039,6201,11196,-9,-9,-9,1,1,1,93,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-964.5900813103173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,8.790062511827117,0,0,0,0,91.36842409262594,1,1,0,0,0,0,0,56,44,6,1,0,0,6,1,0,406,0,0,0 +5040,6202,11197,11198,-9,-9,3,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,1,-9,0,-14.5998211811782,-9,0,0,79,3,3,3,-9,-9,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,23.67023684224439,0,0,0,0,1,1,0,7.452504470581187,0,0,0,62.25,45.63,6,1,0,0,12,1,1,528,0,0,0 +5040,6202,11198,11197,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,4.563374353470407,4.905409081400452,1,0,-9,1,-9,9,39.69540545279386,-9,0,0,70,3,4,3,-9,-9,2019,4,3,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.201220943922626,4.236321513026856,122.0404172781133,1,57.33,53.46,7,1,0,0,12,1,1,528,0,0,0 +5040,6203,11199,-9,11197,11198,1,1,1,45,2,0,0,0,2,-9,2,1,0,4,8.176521230517695,7.998479240316752,0,3,0,0,0,-9,0,-1006.86652272811,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,37,35,15,1,0,-9,1,12.56467292946598,12.56467292946598,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,146,0,0,0 +5041,6204,11200,11201,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,4,6.583792262518058,8.152800670203106,7.742947201041491,1,0,-9,30,0,1,-51.7730554721534,0,0,0,60,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.913801559882178,7.444099482105107,0,0,62.49,55.09,7,1,0,0,6,3,1,1116,0,0,0 +5041,6204,11201,11200,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,30,0,-1,18.62240684997978,0,0,0,61,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.166914374720786,0,0,0,60.29,52.11,7,1,0,0,6,3,1,1116,0,0,0 +5042,6205,11202,11203,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,5,6.617736664226177,7.739106080089512,7.264767439554268,1,0,-9,9,0,3,48.20885649216007,0,0,0,59,2,4,1,3,-9,2019,1,1,14,2,10,0,15,1,2,1,0,11.57428466492064,11.57428466492064,0,0,0,0,0,0,0,0,0,0,1.666141676641066,7.123897810173697,0,0,45.66,46.37,6,1,0,0,11,4,1,1079.5,0,0,0 +5042,6205,11203,11202,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,7.448688734767454,8.167069765616894,7.666174083707292,1,0,-9,9,0,-3,41.05431771960485,0,0,0,62,2,5,1,2,-9,2019,1,2,12,0,45,0,15,1,0,1,0,3.934273898813977,3.934273898813977,0,0,0,0,0,0,0,0,0,0,8.225553708631232,7.542132929886893,0,0,53.2,45.6,6,1,0,0,11,4,1,1079.5,0,0,0 +5042,6206,11204,-9,11202,11203,3,1,0,24,2,0,0,0,2,-9,2,1,0,2,7.838990456028934,7.816877204339121,0,3,0,0,0,-9,0,-1037.644610947677,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,40,39,15,1,3,-9,1,6.171380684583065,6.171380684583065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.74,42.66,5,1,0,0,11,3,1,2280,0,0,0 +5043,6207,11205,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,1,1,0,2,7.170290956815192,7.471200964394908,4.267039976054869,3,0,0,0,-9,0,-1015.977330559881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,24,20,15,1,0,-9,0,8.309466617813957,8.309466617813957,0,0,0,0,0,0,0,1,1,0,4.655283227660744,4.403664106750355,0,0,50.74,37.52,6,1,0,0,12,3,1,454,0,0,0 +5044,6208,11206,11207,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,7.34028316185889,7.114524732299135,1,0,-9,45,0,-2,27.07025289157668,0,0,0,65,2,3,3,3,3,2019,4,2,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.103014846122559,7.214410688135192,0,0,43.88,31.94,6,1,0,0,1,3,1,729,0,0,0 +5044,6208,11207,11206,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,7.346241073498937,7.283745158244911,1,0,-9,45,0,2,-9.827029261177639,0,0,0,63,3,3,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.85977452511134,7.717452321634361,0,0,50.71,52.35,6,1,0,0,1,3,1,729,0,0,0 +5045,6209,11208,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,4,9.019492789006792,8.57581902000647,0,3,0,0,0,-9,0,-991.9242785685606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,42,15,1,0,-9,0,16.79181202428608,16.79181202428608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,6,3,0,0,7,5,1,717,0,0,0 +5046,6210,11209,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1088.355343185156,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.8,47.71,3,1,0,0,13,1,1,321,0,0,0 +5047,6211,11210,11211,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,8.70096493423927,8.936738109005539,0,1,0,-9,11,0,5,-138.0529169629347,0,0,0,58,2,3,3,-9,-9,2019,2,2,6,0,51,50,15,1,0,3,0,17.57811588819367,17.57811588819367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,5,1,0,0,9,5,0,1416,0,0,0 +5047,6211,11211,11210,-9,-9,2,1,0,58,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,17,0,-5,34.26375960619183,0,0,0,63,2,4,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.78,36.33,6,2,0,0,9,5,0,1416,0,0,0 +5048,6212,11212,11213,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,2,7.758979696265987,7.522273571324951,0,1,0,-9,2,0,-3,10.1676101680125,0,1,1,29,2,4,1,-9,-9,2019,1,1,15,2,32,30,15,1,2,1,0,7.418617436052195,7.418617436052195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.16,31.9,4,1,0,0,9,4,0,373,0,0,0 +5048,6212,11213,11212,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,4,8.601161277325481,8.087024507443282,0,1,0,-9,2,0,3,32.29197819370063,0,1,0,26,2,2,1,2,3,2019,1,2,10,1,55,55,15,1,1,1,0,7.510998120733283,7.510998120733283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,9,4,0,373,0,0,0 +5049,6213,11214,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,3,4.339305943574344,6.962558878730419,6.645126024853974,3,0,0,0,-9,0,-935.8243306031588,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.443388897190525,0,0,50.87,41.29,6,1,0,0,9,2,1,355,0,0,0 +5050,6214,11215,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,8,3,1,2,0,6.243303766372006,6.140022050966935,3,0,0,0,-9,0,-1047.393578392225,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.390587379893349,6.396050354558711,3,15.86,45.78,2,1,0,0,4,2,1,208,0,0,0 +5051,6215,11216,11217,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,5.860875361799104,5.919179286217765,1,0,-9,60,0,-8,8.095148179151746,0,0,0,87,3,2,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9284290365663708,5.832973198708962,5.759697011607601,1,58.89,51.28,6,1,0,0,10,2,0,460.5,0,0,0 +5051,6215,11217,11216,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,60,0,8,42.52790506957876,0,0,0,79,2,4,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64,27.54,6,1,0,0,10,2,0,460.5,0,0,0 +5052,6216,11218,11221,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,2,8.634803017204701,9.129225465837951,0,2,0,-9,20,0,3,88.78794456628027,0,0,0,40,2,2,1,2,3,2019,1,1,15,2,48,37,15,1,2,1,0,18.69251077557007,18.69251077557007,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,51.08,4,3,0,0,9,5,1,1184.5,0,0,0 +5052,6216,11219,-9,11221,11218,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.2615143306613,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,9,5,1,1184.5,0,0,0 +5052,6216,11220,-9,11221,11218,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1134.424562515736,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,5,1,1184.5,0,0,0 +5052,6216,11221,11218,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,2,8.424742874388301,8.309558859393082,0,2,0,-9,20,0,-3,142.250559953842,0,0,1,43,1,2,1,3,3,2019,1,2,36,12,33,36,15,1,12,1,0,18.63191817198685,18.63191817198685,0,0,0,0,0,0,0,1,1,0,7.71885628710522,0,0,0,10.8,49.75,2,3,0,0,9,5,1,1184.5,0,0,0 +5053,6217,11222,11224,-9,-9,2,1,0,41,1,1,2,0,2,-9,2,1,0,4,6.974892272979897,6.829424789145829,0,2,0,-9,7,0,-1,10.58566014480897,0,0,1,42,2,3,1,-9,-9,2019,1,1,10,0,10,15,15,1,1,1,0,10.89103819804571,10.89103819804571,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,751.3333333333334,0,0,0 +5053,6217,11223,-9,11222,11224,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-872.3814432518933,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,1,751.3333333333334,0,0,0 +5053,6217,11224,11222,-9,-9,1,1,1,42,1,1,2,0,2,-9,2,1,0,3,8.446388567212283,8.440243238987215,0,2,0,-9,7,0,1,41.27743497272726,0,0,0,41,2,4,1,2,3,2019,1,2,13,1,40,36,15,1,1,1,0,10.25072439693109,10.25072439693109,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.81,60.19,5,1,0,0,2,3,1,751.3333333333334,0,0,0 +5054,6218,11225,-9,-9,-9,1,1,0,25,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-946.0493004396153,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.61,62.71,3,1,1,0,7,1,0,856,0,0,0 +5055,6219,11226,11227,-9,-9,2,1,0,57,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,2,0,-6,-80.42450013382971,0,0,0,63,3,4,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,13,2,1,339,0,0,0 +5055,6219,11227,11226,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,4,7.065436577352989,6.876056844597215,0,1,0,-9,2,0,6,-29.92045549445652,0,0,0,57,2,3,3,3,3,2019,2,2,10,0,50,60,15,1,0,3,0,3.374795622927104,3.374795622927104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,5,1,0,0,13,2,1,339,0,0,0 +5055,6220,11228,-9,11226,11227,3,1,0,29,2,0,0,0,1,-9,2,1,0,4,7.680217261649741,8.069949505220777,0,3,0,0,0,-9,0,-842.5554662649795,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,37,60,15,1,2,-9,1,8.309957515878574,8.309957515878574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,1,0,0,13,4,1,713,0,0,0 +5055,6221,11229,-9,11226,11227,4,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.397369951734976,7.827772474231065,0,3,0,0,0,-9,0,-993.5539800002574,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,50,70,15,1,1,-9,1,4.353895331234096,4.353895331234096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,13,3,1,402,0,0,0 +5055,6222,11230,-9,11226,11227,5,1,1,25,2,0,0,0,3,-9,2,1,0,4,6.609053633642294,6.916952959196544,0,3,0,0,0,-9,0,-951.1990648188662,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,16,16,15,1,1,-9,1,5.135893908158831,5.135893908158831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,13,2,1,385,0,0,0 +5056,6223,11231,11232,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,2,7.55853546314924,7.765997507273569,2.828250686433009,1,0,-9,28,0,0,-256.9259938841492,0,0,0,56,1,3,1,1,1,2019,1,2,22,9,25,0,15,1,9,1,0,9.508685758730881,9.508685758730881,0,0,0,0,0,0,0,1,1,0,2.785435665616983,0,0,0,32.78,35.42,2,1,0,1,2,4,0,441,0,0,0 +5056,6223,11232,11231,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,3,8.344571205688496,8.469932918611537,0,1,0,-9,29,0,0,-157.7736494820305,0,0,0,56,2,2,1,2,2,2019,1,1,10,2,27,0,15,1,2,1,0,20.24233407313914,20.24233407313914,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,46.56,4,1,0,1,2,4,0,441,0,0,0 +5056,6223,11233,-9,11231,11232,3,1,0,16,2,0,0,1,2,-9,7,2,0,3,6.003216191365794,6.170158461521397,2.853225363023324,1,0,0,0,-9,0,-991.8791778277583,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,18,6,16,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.11054952831251,0,0,0,44.95,52.41,5,1,0,0,2,4,0,441,0,0,0 +5057,6224,11234,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,4,8.490850569558177,8.56018568658288,0,1,0,-9,12,0,-2,-72.30911395110654,0,0,1,-9,-9,-9,-9,2,2,2019,1,2,11,0,48,45,15,1,0,-9,0,12.71939795992244,12.71939795992244,0,0,0,0,0,0,0,0,0,0,4.281101407907496,0,0,0,58.15,52.91,7,1,0,0,2,5,1,431,0,0,0 +5057,6225,11235,-9,-9,-9,2,1,0,43,2,0,0,0,1,-9,1,1,0,5,9.086878147823839,9.371239460704095,0,1,0,-9,12,0,2,-39.99992241860626,0,0,1,-9,-9,-9,-9,3,3,2019,1,1,6,0,40,40,15,1,0,-9,0,27.5721409699744,27.5721409699744,0,0,0,0,0,0,0,0,0,0,6.81539875418123,0,0,0,58.05,54.52,2,1,0,0,2,5,1,655,0,0,0 +5058,6226,11236,11237,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,5,0,7.393028981103763,7.387468557115942,1,0,-9,24,0,12,-86.00648451223059,0,0,0,55,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.135685293231464,0,0,59.43,58.05,7,1,0,0,4,4,1,1142.5,0,0,0 +5058,6226,11237,11236,-9,-9,2,1,1,55,1,0,0,0,2,-9,4,3,0,3,0,8.522185421397754,8.479608451922591,1,0,-9,24,0,-12,85.81103903234629,0,0,0,67,2,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.686704836335844,0,3,62.43,40.11,6,1,0,0,4,4,1,1142.5,0,0,0 +5059,6227,11238,11239,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,8.128865315644608,7.866817974128496,1,0,-9,41,0,-2,-48.52835879114465,0,0,0,66,1,5,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.784145354994335,8.05033935028008,0,0,57.16,56.15,6,1,0,0,8,4,1,996.5,0,0,0 +5059,6227,11239,11238,-9,-9,2,1,1,66,1,0,0,0,1,-9,1,1,0,5,0,8.049356333330067,8.356395815336729,1,0,-9,6,0,2,47.91813388438603,0,0,0,64,1,4,3,3,2,2019,2,1,5,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.297036489700401,14.5203555096514,3,57.06,57.76,7,1,0,0,8,4,1,996.5,0,0,0 +5060,6228,11240,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,2,8.003825849613133,7.87562873261315,0,3,0,0,0,-9,0,-1004.710314280597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,40,0,15,1,3,-9,0,7.957407481143885,7.957407481143885,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,53.85,5,1,0,0,5,4,0,2427,0,0,0 +5061,6229,11241,-9,-9,-9,1,1,0,93,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-994.0973521714046,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.04206438065211,0,0,0,54,43,6,1,0,0,13,1,1,112,0,0,0 +5061,6230,11242,-9,11241,-9,2,1,0,56,2,0,0,0,3,-9,6,3,0,5,0,0,0,3,0,0,0,-9,0,-1121.772775227524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.479909518945138,0,74.18912855465189,3,57.07,49.4,6,1,0,0,13,1,1,472,0,0,0 +5062,6231,11243,11246,-9,-9,2,1,1,50,1,0,3,0,3,-9,1,1,0,3,7.22797520373509,6.871464403138219,0,2,0,-9,18,0,11,-70.76772974204815,0,0,0,39,2,3,3,3,2,2019,2,1,6,0,30,30,15,1,0,3,0,4.106721893496463,4.106721893496463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,3,0,0,8,2,0,663,0,0,0 +5062,6231,11244,-9,11246,11243,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.072555204301,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,663,0,0,0 +5062,6231,11245,-9,11246,11243,3,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-987.0245959183983,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5942722961898783,0,0,0,53.86,57.86,6,3,0,0,8,2,0,663,0,0,0 +5062,6231,11246,11243,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,19,0,-11,47.55813296834433,0,0,1,50,3,3,1,3,-9,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.15,55.39,4,3,0,0,8,2,0,663,0,0,0 +5062,6231,11247,-9,11246,11243,4,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-951.4038446618795,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,8,2,0,663,0,0,0 +5063,6232,11248,11249,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,6.52874386974964,6.715431198878203,1,0,-9,6,0,-1,-72.7557656669732,0,0,0,77,2,4,3,3,3,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.503785424620841,7.072562604041487,0,0,50.06,44.62,7,1,0,0,6,3,1,354,0,0,0 +5063,6232,11249,11248,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,7.320405864128029,7.42103294970916,1,0,-9,54,0,1,-10.28388435334947,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.783134467004533,7.649696181860521,0,0,66.2,41.05,6,1,0,0,6,3,1,354,0,0,0 +5064,6233,11250,11251,-9,-9,1,1,0,34,1,0,0,0,2,-9,2,1,0,3,8.471952519572161,8.404056664614904,0,1,0,-9,3,0,2,1.449883400317802,0,0,1,32,2,5,1,2,2,2019,1,2,19,6,45,42,15,1,6,1,0,14.32407039127523,14.32407039127523,0,0,0,0,0,0,0,0,0,0,.6676549057215135,0,0,0,43.6,51.61,6,2,0,0,9,5,0,423,0,0,0 +5064,6233,11251,11250,-9,-9,2,1,1,32,1,0,0,0,2,-9,1,1,0,5,7.959694652254444,8.316770164705192,0,1,0,-9,3,0,-2,6.662306727533559,0,0,0,34,2,3,1,-9,-9,2019,1,1,8,2,35,35,15,1,2,1,0,10.3607558034083,10.3607558034083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.35,52.05,6,1,0,0,9,5,0,423,0,0,0 +5065,6234,11252,11253,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,4.646853750011939,4.406607736969982,1,0,-9,6,0,1,20.07050929765031,0,0,0,75,2,5,3,3,3,2019,4,2,18,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.485235701620137,4.586639842364919,0,0,36.17,57.92,4,1,0,0,11,4,1,467.5,0,0,0 +5065,6234,11253,11252,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,5,0,8.617585519714336,8.988276115901531,1,0,-9,6,0,-1,-242.5900704196124,0,0,0,76,3,3,3,-9,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.272402922833748,9.055856833992646,0,0,54.69,57.47,6,1,0,0,11,4,1,467.5,0,0,0 +5066,6235,11254,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,10.53244279043377,10.71923646111577,3,0,-9,0,-9,0,-960.6152538688287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.091761648723293,10.55515032402919,0,0,58.72,43.42,6,1,0,0,8,5,1,316,0,0,0 +5067,6236,11255,-9,11256,-9,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1058.387533350921,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,0,274.5,0,0,0 +5067,6236,11256,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,3,8.041151171433562,7.701120604333161,0,4,0,0,0,-9,0,-953.7820255985347,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,32,32,15,1,1,-9,0,11.08783209722179,11.08783209722179,0,0,0,0,0,0,0,1,1,0,0,0,40.77515373573394,3,38.76,34.66,4,1,0,1,5,3,0,274.5,0,0,0 +5068,6237,11257,11258,-9,-9,2,1,0,53,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,37,0,-3,0,0,0,0,56,2,2,3,3,2,2019,4,1,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.93841114013085,1,39.24,14.78,3,1,0,0,4,1,1,365,0,0,0 +5068,6237,11258,11257,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,37,0,3,0,0,0,0,53,2,1,3,-9,-9,2019,4,2,21,9,0,45,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.40713498121883,1,45.52,22.54,4,1,0,0,4,1,1,365,0,0,0 +5069,6238,11259,11260,-9,-9,1,1,0,42,1,0,0,0,1,-9,8,3,1,2,0,0,0,1,0,-9,16,0,-4,-53.31178720718081,0,0,1,46,2,4,1,2,-9,2019,3,2,20,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.87,30.46,2,1,0,0,7,3,0,1423,0,0,0 +5069,6238,11260,11259,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.101584917300331,8.343803574011659,0,1,0,-9,16,0,4,159.4679243012233,0,0,0,42,1,2,3,-9,-9,2019,2,1,9,0,40,37,15,1,1,3,0,9.40551305030831,9.40551305030831,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,6,1,0,0,7,3,0,1423,0,0,0 +5070,6239,11261,-9,-9,-9,1,1,0,62,2,0,0,0,3,-9,2,1,0,3,7.304057985627997,7.593376884330705,5.65986390191409,3,0,0,0,-9,0,-1021.66427541915,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,23,22,15,1,4,-9,0,7.677703081345212,7.677703081345212,0,0,0,0,0,0,0,1,1,0,3.596060269836055,5.755397492132133,0,0,45.07,38.73,3,1,0,0,4,3,0,325,0,0,0 +5071,6240,11262,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,4,8.559016026036243,8.738456392062748,0,3,0,0,0,-9,0,-1063.044377671956,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,37,36,15,1,0,-9,0,18.30178901490939,18.30178901490939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,6,1,0,0,6,5,0,321,0,0,0 +5072,6241,11263,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-844.6920761239553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8456783146188881,0,2.114401844901476,3,46.69,39.95,6,1,0,0,6,1,1,912,0,0,0 +5073,6242,11264,11267,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,4,8.380302484384737,8.646092920159946,0,2,0,-9,20,0,0,2.685998066940355,0,0,1,44,1,4,1,2,3,2019,1,2,11,3,40,43,15,1,3,1,0,12.96820594530872,12.96820594530872,0,0,0,0,0,0,0,1,1,0,2.313057160393595,0,0,0,38.94,60.48,5,1,0,0,4,5,1,971.5,0,0,0 +5073,6242,11265,-9,11264,11267,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.3944964489579,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,971.5,0,0,0 +5073,6242,11266,-9,11264,11267,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1152.910353273957,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,5,1,971.5,0,0,0 +5073,6242,11267,11264,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.511414167964473,8.67867762245549,0,2,0,-9,20,0,0,71.58681380218903,0,0,0,44,1,4,1,2,2,2019,1,1,6,0,37,37,15,1,0,1,0,17.31175888679149,17.31175888679149,0,0,0,0,0,0,0,1,1,0,2.484155374249129,0,0,0,57.16,56.15,6,1,0,0,4,5,1,971.5,0,0,0 +5074,6243,11268,-9,-9,-9,1,1,0,30,3,0,0,0,3,-9,2,1,0,4,7.953641573098115,7.896591737515542,0,3,0,0,0,-9,0,-1088.256802783988,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,42,42,15,1,0,-9,0,7.960799517443,7.960799517443,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.27,49.27,7,1,0,0,4,4,0,754,0,0,0 +5075,6244,11269,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1034.401441859484,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.83,21.84,1,1,0,1,10,1,0,363,0,0,0 +5075,6245,11270,-9,-9,11269,2,1,1,21,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-983.9534541819393,0,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.35714688368432,3,24.66,60.31,4,1,1,0,10,2,0,192,0,0,0 +5075,6246,11271,-9,-9,11269,3,1,1,19,2,0,0,1,2,-9,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1011.910722532087,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,15,0,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,4,1,0,0,10,1,0,620,0,0,0 +5076,6247,11272,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,4,7.500569095309523,7.488609042111331,4.31884531718674,4,0,-9,0,-9,0,-1003.672844715095,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,0,15,1,1,-9,0,8.182203879736603,8.182203879736603,0,0,0,0,0,0,0,1,1,0,4.733878133253942,0,0,0,50,54,6,1,0,0,10,2,1,1571,0,0,0 +5076,6247,11273,-9,11272,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1035.149767524316,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,1,1571,0,0,0 +5077,6248,11274,11275,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.60631520354061,6.469650592185911,1,0,-9,45,0,4,33.54957541046726,0,0,0,66,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.588797370082801,0,0,57.63,45.09,6,1,0,1,9,2,1,886.5,0,0,0 +5077,6248,11275,11274,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-4,1.826965842917328,0,0,0,70,3,3,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,25.92,54.34,3,1,0,1,9,2,1,886.5,0,0,0 +5078,6249,11276,11277,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.286186219843094,5.248354025176999,1,0,-9,53,0,-3,93.2084874378215,0,0,0,75,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.277793623052223,0,0,48.28,60.18,2,1,0,0,9,3,1,390,0,0,0 +5078,6249,11277,11276,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,8.115275834257018,8.017892869114965,1,0,-9,53,0,3,46.93354939350362,0,0,0,72,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.941084795415597,0,0,61.12,51.57,7,1,0,0,9,3,1,390,0,0,0 +5079,6250,11278,11280,-9,-9,2,1,1,62,1,0,1,0,3,-9,1,1,0,2,8.598885436944183,8.509211276846855,0,2,0,-9,19,0,17,-74.14989779739021,0,0,0,45,3,4,3,2,2,2019,2,1,17,6,60,70,15,1,6,3,0,11.45609616381827,11.45609616381827,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.77,34.09,3,1,0,0,4,3,1,2383.666666666667,0,0,0 +5079,6250,11279,-9,11280,11278,4,1,1,17,2,0,1,1,2,0,7,2,0,4,6.981883124565321,6.927144404016724,0,2,0,0,0,-9,0,-1047.737651295728,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,14,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.06,41.58,7,1,0,0,4,3,1,2383.666666666667,0,0,0 +5079,6250,11280,11278,-9,-9,1,1,0,45,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,20,0,-17,-79.11655308790199,0,0,0,62,3,2,1,1,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,58.88,5,1,0,0,4,3,1,2383.666666666667,0,0,0 +5079,6251,11281,-9,11280,11278,3,1,1,22,2,0,1,0,2,1,2,1,0,1,6.875426164264431,7.246758694285544,0,3,0,0,0,-9,0,-1011.404502939571,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,48,0,15,1,0,-9,1,2.700458299203744,2.700458299203744,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.6,38.89,2,1,0,0,4,2,1,598,0,0,0 +5080,6252,11282,-9,11284,11285,7,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.576845135864,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,353,0,0,0 +5080,6252,11283,-9,11284,11285,5,1,0,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.232017100823,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,2,1,353,0,0,0 +5080,6252,11284,11285,-9,-9,2,1,0,42,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,26,0,2,10.23326904029189,0,0,1,40,2,5,1,3,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,4,2,1,353,0,0,0 +5080,6252,11285,11284,-9,-9,1,1,1,40,1,0,4,0,2,-9,2,1,0,5,7.655440780078006,7.637803394869372,0,2,0,-9,26,0,-2,16.02377393979076,0,0,0,42,3,4,3,3,3,2019,2,2,14,1,37,37,15,1,1,3,0,7.974465269156251,7.974465269156251,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,58,6,3,0,0,4,2,1,353,0,0,0 +5080,6252,11286,-9,11284,11285,6,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.378299142407,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,4,2,1,353,0,0,0 +5080,6253,11287,-9,11284,11285,3,1,0,20,2,0,4,0,2,-9,2,1,0,5,6.850775444590199,7.170053830071257,0,3,0,0,0,-9,0,-959.206744194334,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,15,5,25,0,15,1,5,-9,1,6.28140963923095,6.28140963923095,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.78,59.14,7,3,0,0,4,2,1,1474,0,0,0 +5080,6254,11288,-9,11284,11285,4,1,0,18,2,0,4,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-939.4166651221711,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.63,42.82,7,3,1,0,4,2,1,628,0,0,0 +5081,6255,11289,11290,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.854621516853276,8.96775042772914,0,1,0,-9,7,0,-4,-56.59311831370242,0,0,0,56,2,1,3,3,3,2019,2,1,9,0,55,50,15,1,0,3,0,16.56409890189888,16.56409890189888,0,0,0,0,0,0,0,1,1,0,0,0,29.83207449785117,1,57.16,56.15,6,1,0,0,2,5,1,777.5,0,0,0 +5081,6255,11290,11289,-9,-9,1,1,0,56,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,4,-10.27874268581109,0,0,0,52,2,4,1,3,3,2019,3,2,21,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.56,13.89,6,1,0,0,2,5,1,777.5,0,0,0 +5082,6256,11291,11292,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,4,8.877087882810448,8.931407134294075,0,1,0,-9,40,-9,3,-64.09101043438916,-9,0,0,60,3,3,1,3,3,2019,1,1,6,0,56,0,15,1,0,1,0,14.30207361895496,14.30207361895496,0,0,0,0,0,0,0,1,1,0,5.180712885170887,0,0,0,60.12,54.8,6,1,0,0,12,5,1,1476,0,0,0 +5082,6256,11292,11291,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,3,8.166694591590497,7.469222324769096,0,1,0,-9,40,-9,-3,-26.06608033237438,-9,0,0,63,2,4,1,3,3,2019,1,2,6,0,38,0,15,1,0,1,0,8.236563530905967,8.236563530905967,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.43,40.11,6,1,0,0,12,5,1,1476,0,0,0 +5082,6257,11293,-9,-9,-9,3,1,0,22,3,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-913.1561534413296,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,56.59,6,1,1,0,12,1,1,650,0,0,0 +5082,6258,11294,-9,-9,-9,4,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.184707630116364,7.056495058255082,0,3,0,-9,0,-9,0,-988.0792484819813,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,46,0,15,1,0,-9,0,4.401393612014018,4.401393612014018,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,3,1,341,0,0,0 +5082,6259,11295,-9,-9,-9,5,1,0,18,2,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,-9,0,-9,0,-1012.927335303271,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,7,1,0,0,12,1,1,3661,0,0,0 +5083,6260,11296,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,2,0,7.465210563075892,7.526552810390175,3,0,0,0,-9,0,-1053.036345736016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,18.83525933506825,0,0,0,0,0,1,1,0,4.70011522001399,7.837252040824342,0,0,36.6,36.16,6,1,0,0,12,3,0,3107,0,0,0 +5084,6261,11297,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,2,7.952021460435983,7.863037500447635,0,3,0,0,0,-9,0,-933.5466782316715,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,38,0,15,1,1,-9,0,8.259857172607601,8.259857172607601,0,0,0,0,0,0,0,1,1,0,4.508441685077251,0,0,0,45.71,41.27,3,1,0,0,10,4,1,1104,0,0,0 +5085,6262,11298,11299,-9,-9,2,1,1,64,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,7,0,1,41.85714864590671,0,0,0,63,3,4,3,-9,-9,2019,4,1,10,0,0,40,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4150580659413022,0,0,0,52,48,5,1,0,0,2,2,1,680,0,0,0 +5085,6262,11299,11298,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,4,0,6.06744262680487,6.104497061965661,1,0,-9,37,0,-1,48.64565319035298,0,0,0,64,2,3,3,-9,3,2019,4,2,13,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.907998051996294,6.131489900026036,0,0,37.37,48.96,6,1,0,0,2,2,1,680,0,0,0 +5085,6263,11300,-9,11299,11298,3,1,1,28,2,0,0,0,2,-9,2,1,0,4,7.87528246850816,7.754225002348983,0,3,0,0,0,-9,0,-923.734836547589,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,38,40,15,1,1,-9,1,6.963996359766019,6.963996359766019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,2,3,1,276,0,0,0 +5086,6264,11301,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,4,0,5.664644796936005,5.561573260286714,3,0,0,0,-9,0,-933.2733195079561,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.602181985016037,0,0,52.34,56.95,7,1,0,0,4,2,0,3397,0,0,0 +5087,6265,11302,11303,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,-2,-119.8982196082663,0,0,0,71,2,1,3,3,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.222848046764867,0,120.6713954169793,1,53.29,41.54,6,1,0,0,10,3,1,1414.5,0,0,0 +5087,6265,11303,11302,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,7.859311197879893,7.896342647805601,1,0,-9,51,0,2,-55.52847885646122,0,0,0,69,2,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,3.174905275027847,0,0,0,0,1,1,0,7.239595727776333,7.747069669138201,0,0,53.62,16.79,7,1,0,0,10,3,1,1414.5,0,0,0 +5088,6266,11304,-9,11307,11306,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.5939867628007,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,1,1,803.75,0,0,0 +5088,6266,11305,-9,11307,11306,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.332017895583,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,1,803.75,0,0,0 +5088,6266,11306,11307,-9,-9,2,1,1,42,1,0,2,0,1,-9,3,3,0,2,0,0,0,2,0,-9,15,0,3,0,0,0,0,39,1,3,3,2,1,2019,4,1,23,8,0,37,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.42,60.01,2,1,1,1,12,1,1,803.75,0,0,0 +5088,6266,11307,11306,-9,-9,1,1,0,39,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,15,0,-3,0,0,0,1,42,1,2,3,2,2,2019,4,2,14,2,0,23,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,3,1,0,0,12,1,1,803.75,0,0,0 +5089,6267,11308,11309,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.96404656632384,6.947722716278214,1,0,-9,7,0,0,84.70815795480981,0,0,0,67,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.84414268125423,6.914314259127768,0,0,57.16,56.15,7,1,0,0,9,2,1,427,0,0,0 +5089,6267,11309,11308,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,3,0,6.139919581912388,6.583069375385323,1,0,-9,7,0,0,-93.22635436912125,0,0,0,67,2,4,3,3,3,2019,2,1,8,0,0,30,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.369375773463947,6.430011012724181,0,0,60.3,46.58,7,1,0,0,9,2,1,427,0,0,0 +5089,6268,11310,-9,-9,-9,3,1,1,42,2,0,0,0,2,-9,2,1,0,4,8.489553086117217,8.473790427036585,0,3,0,0,0,-9,0,-938.2475297438044,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,35,30,15,1,1,-9,0,16.77901117319193,16.77901117319193,0,0,0,0,0,0,0,1,1,0,4.678558564997287,0,0,0,51,56,6,1,0,0,9,4,1,826,0,0,0 +5090,6269,11311,11313,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,4,7.362067240347222,8.578702105977911,8.085996960109719,2,0,-9,25,0,6,93.74956713932409,0,0,0,49,2,1,3,2,2,2019,2,2,7,1,31,0,15,1,1,4,0,5.543063415598715,5.543063415598715,0,0,0,0,0,0,0,1,1,0,0,7.864288764438749,13.92452768413968,1,57.57,35.78,2,1,0,0,2,4,1,475,0,0,0 +5090,6269,11312,-9,11313,11311,4,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-972.1411767200152,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,2,4,1,475,0,0,0 +5090,6269,11313,11311,-9,-9,2,1,0,49,1,0,1,0,2,-9,4,3,0,1,0,7.710457544627135,7.820752535981288,2,0,-9,25,0,-6,76.26179998243299,0,0,0,55,2,4,1,3,2,2019,3,1,2,0,0,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.435089774610144,0,0,48.6,11.84,6,1,0,0,2,4,1,475,0,0,0 +5091,6270,11314,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,3,9.012637990492255,9.079743125006882,0,3,0,0,0,-9,0,-1100.513743338941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,60,48,15,1,0,-9,0,13.68780727565211,13.68780727565211,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.29,52.11,5,1,0,0,1,5,1,154,0,0,0 +5092,6271,11315,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,5,8.601414598228356,8.675217381745474,0,3,0,0,0,-9,0,-1051.737121582085,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,48,15,1,0,-9,0,15.57755733835796,15.57755733835796,0,0,0,0,0,0,0,1,1,0,.0462696839368712,0,0,0,57.06,57.76,6,1,0,0,5,4,0,1562,0,0,0 +5093,6272,11316,-9,11317,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.7142909305844,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,0,1048.5,0,0,0 +5093,6272,11317,-9,-9,-9,1,1,0,27,3,0,1,0,2,-9,2,1,0,3,7.662630443847159,7.42729881527339,0,4,0,0,0,-9,0,-848.3613750664655,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,32,40,15,1,0,-9,0,6.048354811910153,6.048354811910153,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,4,1,0,0,13,3,0,1048.5,0,0,0 +5094,6273,11318,-9,11319,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-993.8492116102891,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,2,0,350.5,0,0,0 +5094,6273,11319,-9,-9,-9,1,1,0,54,2,0,1,0,1,-9,7,2,0,3,7.456408332178722,7.371102299897205,0,4,0,0,0,-9,0,-987.5251833998279,1,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,16,40,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.73,46.9,4,4,0,0,8,2,0,350.5,0,0,0 +5095,6274,11320,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,6.293140161837612,6.382311274568091,3,0,0,0,-9,0,-1114.517781440829,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.296803766625572,0,0,53,45,6,1,0,0,11,2,1,725,0,0,0 +5096,6275,11321,-9,-9,-9,1,1,1,36,3,0,0,0,1,-9,2,1,0,4,8.38676157914742,8.277839244863777,0,3,0,0,0,-9,0,-1021.41047880055,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,37,15,1,0,-9,0,12.13395481743561,12.13395481743561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,6,1,0,0,2,4,1,600,0,0,0 +5097,6276,11322,11323,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,44,0,2,-13.7808390460521,0,0,0,70,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.34,33.08,5,1,0,0,9,2,1,1070,0,0,0 +5097,6276,11323,11322,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,7.120029514161706,6.605980980451345,1,0,-9,44,0,-2,101.2736643579789,0,0,0,72,3,2,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.327896661532472,6.688891022163298,0,0,52.38,47.57,2,1,0,0,9,2,1,1070,0,0,0 +5098,6277,11324,11325,-9,-9,1,1,0,48,1,0,0,0,1,-9,1,1,0,3,5.945856647384263,6.268942862348113,0,1,0,-9,7,0,-12,-62.15478386667655,0,0,0,60,3,4,1,2,3,2019,1,2,16,5,40,40,15,1,5,1,0,1.531230262709053,1.531230262709053,0,0,0,0,0,0,0,0,0,0,3.268546945477144,0,0,0,41.7,60.44,6,1,0,0,7,4,1,680,0,0,0 +5098,6277,11325,11324,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,4,8.746594773917238,8.604491626118929,0,1,0,-9,7,0,12,8.814806579861465,0,0,0,48,1,3,1,3,3,2019,1,1,7,0,40,45,15,1,0,1,0,15.05254946772127,15.05254946772127,0,0,0,0,0,0,0,0,0,0,2.396081038003104,0,0,0,51.24,58.84,2,1,0,0,7,4,1,680,0,0,0 +5099,6278,11326,11327,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.04389752692132,8.393244078967914,0,2,0,-9,2,0,-2,-100.4408982964624,0,0,0,50,2,5,1,2,2,2019,1,2,19,7,32,30,15,1,7,1,0,10.75390937526,10.75390937526,0,0,0,0,0,0,0,1,1,0,4.939162743179756,0,0,0,34.68,56.99,5,1,0,0,13,4,1,835.5,0,0,0 +5099,6278,11327,11326,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,5,7.920989753240828,8.193012234862625,0,2,0,-9,2,0,2,30.36890866327127,0,0,0,48,2,3,1,2,1,2019,1,1,8,0,20,20,15,1,0,1,0,19.57093894510678,19.57093894510678,0,0,0,0,0,0,0,1,1,0,7.395641250866999,0,0,0,57.06,57.76,6,1,0,0,13,4,1,835.5,0,0,0 +5099,6279,11328,-9,11327,11326,3,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1023.224582127476,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.09,52.2,7,1,0,0,13,4,1,503,0,0,0 +5100,6280,11329,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,2,1,0,2,8.080938150517142,7.916612696940251,0,4,0,0,0,-9,0,-936.1976320397366,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,46,48,15,1,1,-9,0,6.924657219172895,6.924657219172895,0,0,0,0,0,0,0,1,1,0,0,0,25.60138875390507,3,50.34,36.42,4,1,0,0,4,3,0,411,0,0,0 +5100,6281,11330,-9,11329,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,4,7.267771040231319,7.180083129101616,0,3,0,0,0,-9,0,-1004.639463771776,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,24,24,15,1,0,-9,1,5.213116406509667,5.213116406509667,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,49.67,5,1,0,0,4,2,0,436,0,0,0 +5101,6282,11331,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1059.340660050624,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,40,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.845970809543928,0,0,0,6.15,47.86,1,1,0,0,1,1,1,1221,0,0,0 +5102,6283,11332,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,4,8.570793442868974,8.728170794654245,0,3,0,0,0,-9,0,-1148.822061385009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,41,39,15,1,0,-9,0,18.27035498796264,18.27035498796264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,4,0,0,8,5,0,2413,0,0,0 +5103,6284,11333,-9,11337,11335,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.9302087110943,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,7,4,1,453.2,0,0,0 +5103,6284,11334,-9,11337,11335,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.1049704261117,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,453.2,0,0,0 +5103,6284,11335,11337,-9,-9,2,1,1,47,1,0,3,0,1,-9,1,1,0,4,8.697806750025077,8.547187480332031,0,2,0,-9,6,0,2,-25.72287091845286,0,0,0,45,1,5,1,-9,-9,2019,1,1,9,0,45,45,15,1,1,1,0,17.68478954102507,17.68478954102507,0,0,0,0,0,0,0,1,1,0,2.692112780050058,0,0,0,53,55,6,1,0,0,7,4,1,453.2,0,0,0 +5103,6284,11336,-9,11337,11335,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.124114171338,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,4,1,453.2,0,0,0 +5103,6284,11337,11335,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,5,7.210328022382847,7.082600319300778,0,2,0,-9,18,0,-2,56.77247104931789,0,0,0,47,1,4,1,2,2,2019,1,2,6,0,6,20,15,1,0,1,0,30.06895760465633,30.06895760465633,0,0,0,0,0,0,0,1,1,0,7.155137488230021,0,0,0,57.06,57.76,7,1,0,0,7,4,1,453.2,0,0,0 +5104,6285,11338,11339,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,2,8.341491969961805,8.554996746509755,0,1,0,-9,6,0,-5,91.20167491581601,0,0,0,56,2,4,1,-9,-9,2019,1,2,22,9,49,55,15,1,9,1,0,8.962221949052548,8.962221949052548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.18,57.88,4,1,0,0,5,5,1,484,0,0,0 +5104,6285,11339,11338,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,8.679753560326411,8.54579997395204,5.951139062135731,1,0,-9,6,0,5,-22.3038121778884,0,0,0,51,1,2,1,-9,-9,2019,1,1,7,0,55,55,15,1,0,1,0,13.03370165533489,13.03370165533489,0,0,0,0,0,0,0,0,0,0,6.21341971889141,5.946412034532194,0,0,57.16,56.15,6,1,0,0,5,5,1,484,0,0,0 +5105,6286,11340,-9,-9,-9,1,1,1,40,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1129.449651913588,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,33,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,42,1,1,0,1,10,1,0,666,0,0,0 +5106,6287,11341,11342,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.33803968709903,8.606724313932423,0,1,0,-9,7,0,-1,50.33906653906997,-9,0,0,61,3,4,1,-9,-9,2019,1,1,11,0,23,0,15,1,2,1,0,20.94224158074192,20.94224158074192,0,0,0,0,0,0,0,0,0,0,4.84529808076322,0,0,0,49,48,5,1,0,0,4,5,1,702,0,0,0 +5106,6287,11342,11341,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,4,7.105077113185773,8.062092952140461,7.495199638103787,1,0,-9,16,0,1,-39.49034790743289,0,0,0,60,1,3,1,2,2,2019,1,2,6,0,28,24,15,1,0,1,0,4.83009980036624,4.83009980036624,0,0,0,0,0,0,0,0,0,0,6.735711153064362,8.096047482205,0,0,65.07000000000001,44.28,7,1,0,0,4,5,1,702,0,0,0 +5106,6288,11343,-9,11341,11342,3,1,1,30,2,0,0,0,2,-9,1,1,0,4,8.236628303122135,8.112819125204448,0,3,0,0,0,-9,0,-939.3495815552604,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,12.21898782612165,12.21898782612165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,4,4,1,1278,0,0,0 +5107,6289,11344,11346,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,4,7.925353236967314,8.065838487224182,0,2,0,-9,25,0,2,150.1030948440423,0,0,0,50,2,4,1,-9,-9,2019,1,1,6,0,42,47,15,1,0,1,0,8.774548413011376,8.774548413011376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,2,3,1,393.6666666666667,0,0,0 +5107,6289,11345,-9,11346,11344,3,1,1,17,2,0,1,1,2,0,7,2,0,5,5.806740652153604,5.382219621569594,0,2,0,0,0,-9,0,-897.2998512737649,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,2,3,1,393.6666666666667,0,0,0 +5107,6289,11346,11344,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,4,7.047552688730669,6.887480319763537,0,2,0,-9,26,0,-2,-31.05437528301808,0,0,0,52,2,4,1,3,3,2019,1,2,6,0,17,17,15,1,0,1,0,9.265211018244818,9.265211018244818,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,2,3,1,393.6666666666667,0,0,0 +5108,6290,11347,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-985.2210616397169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,42,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.65,52.38,4,1,1,0,5,1,0,425,0,0,0 +5109,6291,11348,11350,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,7.966827809919057,8.408128648150774,0,2,0,-9,8,0,4,31.08012483261287,0,0,0,33,2,4,1,-9,-9,2019,1,1,10,0,50,40,15,1,1,1,0,8.607032014749649,8.607032014749649,0,0,0,0,0,0,0,0,0,0,3.39497248869038,0,0,0,51,57,5,1,0,0,2,3,1,1156.666666666667,0,0,0 +5109,6291,11349,-9,11350,11348,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-895.6420426059624,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,3,1,1156.666666666667,0,0,0 +5109,6291,11350,11348,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,7.305861121498817,7.45335428301359,0,2,0,-9,17,0,-4,23.50677297958516,0,0,1,37,2,4,1,2,2,2019,1,2,12,0,25,25,15,1,0,1,0,7.214922565514468,7.214922565514468,0,0,0,0,0,0,0,0,0,0,6.510225911162451,0,0,0,54.2,57.49,6,1,0,0,2,3,1,1156.666666666667,0,0,0 +5110,6292,11351,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,5,8.445457927611946,8.680403787539134,0,3,0,0,0,-9,0,-1061.147683856057,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,38,38,15,1,0,-9,0,18.80326639356859,18.80326639356859,0,0,0,0,0,0,0,0,0,0,2.32428343901217,0,0,0,48.77,60.16,6,1,0,0,9,5,0,148,0,0,0 +5111,6293,11352,11353,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.483902513057206,8.310238463322849,0,2,0,-9,12,0,-6,-36.40202841715297,0,0,1,43,1,4,1,2,2,2019,1,2,2,0,32,34,15,1,0,1,0,17.69278908636759,17.69278908636759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,9,5,1,529.75,0,0,0 +5111,6293,11353,11352,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,9.579401197342516,9.369521571740028,0,2,0,-9,15,0,6,63.47673483690217,0,0,0,37,1,4,1,-9,-9,2019,1,1,10,2,48,51,15,1,2,1,0,25.96997447749379,25.96997447749379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,6,1,0,0,9,5,1,529.75,0,0,0 +5111,6293,11354,-9,11352,11353,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.282376007041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,9,5,1,529.75,0,0,0 +5111,6293,11355,-9,11352,11353,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.2007537443606,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,529.75,0,0,0 +5112,6294,11356,11357,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,5,9.254868394294309,9.530621735073689,0,1,0,-9,26,0,-11,48.11262827511342,0,0,0,56,2,4,1,2,1,2019,1,2,8,0,60,60,15,1,0,1,0,16.86798808099366,16.86798808099366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,7,5,1,581.5,0,0,0 +5112,6294,11357,11356,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.177430869909262,8.117261557865517,0,1,0,-9,25,0,11,27.15837197809214,0,0,0,45,1,5,1,2,3,2019,1,1,12,1,10,8,15,1,1,1,0,36.22079552805893,36.22079552805893,0,0,0,0,0,0,0,0,0,0,6.970422877930194,0,0,0,46.16,58.62,6,1,0,0,7,5,1,581.5,0,0,0 +5113,6295,11358,-9,-9,-9,2,1,1,24,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-953.8426410419065,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.14,41.34,3,1,0,0,12,1,1,1350,0,0,0 +5114,6296,11359,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,5,8.017094676106421,8.456523610937561,0,4,0,0,0,-9,0,-969.1985029085673,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,2,43,34,15,1,2,-9,0,12.94538797207973,12.94538797207973,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.36,30.48,2,1,0,0,4,4,1,571,0,0,0 +5114,6296,11360,-9,11359,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-956.828482548413,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,571,0,0,0 +5114,6297,11361,-9,11359,-9,2,1,0,18,2,0,1,0,2,-9,2,1,0,4,7.735035733327638,7.569613570237772,0,3,0,0,0,-9,0,-1053.535570722988,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,4,20,0,15,1,4,-9,1,10.17529672235479,10.17529672235479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.4,56.84,7,1,0,0,4,3,1,871,0,0,0 +5115,6298,11362,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,7.08247753789633,6.883394881503147,3,0,0,0,-9,0,-883.3344323323497,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.326981424331235,6.76625620701997,16.01587842862878,3,60.98,40.77,7,4,0,0,8,2,1,578,0,0,0 +5116,6299,11363,-9,-9,-9,1,1,0,22,2,0,0,0,2,1,2,1,0,2,6.744073024130365,6.991315839313993,5.795637529258448,3,0,0,0,-9,0,-980.0418236741415,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,23,0,15,1,9,-9,0,4.848424592073703,4.848424592073703,0,0,0,0,0,0,0,0,0,0,5.685024701391776,0,0,0,26.12,51.92,5,1,0,1,5,2,0,1109,0,0,0 +5117,6300,11364,-9,11366,11367,3,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.820134160748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,2,0,510.8,0,0,0 +5117,6300,11365,-9,11366,11367,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.554818621539,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,2,0,0,6,2,0,510.8,0,0,0 +5117,6300,11366,11367,-9,-9,1,1,0,33,1,1,3,0,2,-9,7,2,0,4,0,0,0,2,0,-9,3,0,5,145.5845813706022,1,0,1,28,2,4,1,2,-9,2019,3,4,5,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,6,2,0,510.8,0,0,0 +5117,6300,11367,11366,-9,-9,4,1,1,28,1,1,3,0,2,-9,2,1,0,4,7.765210570416728,7.628996090295106,0,2,0,-9,3,0,-5,-14.65338817489291,0,1,0,33,2,4,2,-9,-9,2019,2,1,11,0,42,52,15,1,0,2,0,6.573121485264097,6.573121485264097,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.46,63.68,6,2,0,0,6,2,0,510.8,0,0,0 +5117,6300,11368,-9,11366,11367,2,1,0,11,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-907.1979136899445,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,2,0,0,6,2,0,510.8,0,0,0 +5118,6301,11369,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,3,8.014683707987967,7.911536213638257,0,3,0,-9,0,-9,0,-1109.847260034988,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,41,0,15,1,0,-9,0,9.097275285147099,9.097275285147099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,6,1,0,0,5,4,0,480,0,0,0 +5118,6302,11370,-9,11369,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.904109772201783,7.712776019361734,0,3,0,-9,0,-9,0,-1136.536561299896,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,0,15,1,0,-9,1,5.798313596616706,5.798313596616706,0,0,0,0,0,0,0,0,0,0,0,0,8.094804840031813,3,42.36,56.12,3,1,0,0,5,3,0,190,0,0,0 +5119,6303,11371,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,4,7.37728999489211,7.52778988375358,5.525285411417516,3,0,0,0,-9,0,-1158.020926227622,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,30,43,15,1,0,-9,0,5.851597278377086,5.851597278377086,0,0,0,0,0,0,0,1,1,0,0,5.651966773756218,0,0,50.48,56.4,6,4,0,0,9,3,1,691,0,0,0 +5120,6304,11372,-9,-9,11373,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1065.838692079914,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,1,728.3333333333334,0,0,0 +5120,6304,11373,-9,-9,-9,1,1,1,44,2,0,2,0,2,-9,1,1,0,2,7.265588370334838,7.058060940464385,0,4,0,0,0,-9,0,-890.2293276277032,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,45,15,1,0,-9,0,3.797940045936429,3.797940045936429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.56,46.45,5,1,0,0,11,2,1,728.3333333333334,0,0,0 +5120,6304,11374,-9,-9,11373,2,1,0,16,2,0,2,1,2,-9,7,2,0,3,4.239521909880718,4.469624854882548,0,4,0,0,0,-9,0,-1092.860963205646,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.86,55.66,6,1,0,0,11,2,1,728.3333333333334,0,0,0 +5121,6305,11375,11376,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,3,8.194090145675231,7.867850945390946,0,1,0,-9,6,0,-1,93.69797191272977,0,0,0,49,2,4,1,2,2,2019,1,2,20,8,25,0,15,1,8,1,0,14.34851081616555,14.34851081616555,0,0,0,0,0,0,0,0,0,0,7.844675534014931,0,0,0,48.45,57.49,5,1,0,0,9,5,1,379,0,0,0 +5121,6305,11376,11375,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,8.36526114453941,8.706659794481419,0,1,0,-9,6,0,1,53.12295421579901,0,0,0,48,1,3,1,2,3,2019,1,1,7,0,30,0,15,1,0,1,0,19.70169316031002,19.70169316031002,0,0,0,0,0,0,0,0,0,0,3.850681930543767,0,0,0,54.77,55.87,6,1,0,0,9,5,1,379,0,0,0 +5122,6306,11377,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,4.758532573176763,4.659979540765802,3,0,0,0,-9,0,-993.2238312246426,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.642936675826769,4.592670065867697,0,3,50.89,41.27,6,1,0,0,9,1,1,273,0,0,0 +5123,6307,11378,11379,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,5,8.76318763914594,8.471852045132886,0,1,0,-9,7,0,5,-181.7361305994831,0,0,0,49,2,3,1,-9,-9,2019,1,1,11,0,92,42,15,1,0,1,0,6.410907610318447,6.410907610318447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,3,1,0,0,4,5,1,291,0,0,0 +5123,6307,11379,11378,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.692542838401407,8.691325541156768,0,1,0,-9,7,0,-5,-10.91567263500922,0,0,0,54,2,5,1,3,3,2019,1,2,10,0,36,32,15,1,0,1,0,19.68114011643863,19.68114011643863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,5,1,0,0,4,5,1,291,0,0,0 +5124,6308,11380,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,2,1,0,5,6.850751541830921,6.249392018277345,0,4,0,-9,0,0,0,-1075.534904072663,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,16,0,15,1,1,-9,0,7.642758551428551,7.642758551428551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,60.26,6,1,0,0,4,2,0,182,0,0,0 +5124,6308,11381,-9,11380,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-875.2823455594545,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,182,0,0,0 +5125,6309,11382,-9,-9,-9,1,1,1,51,3,0,0,0,1,-9,2,1,0,3,8.613797720885515,9.04249138387091,0,3,0,0,0,-9,0,-1061.961887600287,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,0,42,15,1,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.59,51.94,4,1,0,0,11,5,1,114,0,0,0 +5126,6310,11383,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,3,7.815063651559676,7.770045852730833,0,3,0,-9,0,0,0,-979.4011273065358,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,38,38,15,1,1,-9,0,8.190417113321036,8.190417113321036,0,0,0,0,0,0,0,0,0,0,3.306096937809014,0,0,0,47.46,52.7,5,3,0,0,11,3,0,702,0,0,0 +5127,6311,11384,-9,11387,11388,4,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1069.459021408859,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,4,3,1,1408.6,0,0,0 +5127,6311,11385,-9,11387,11388,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.659877182703,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,1,1408.6,0,0,0 +5127,6311,11386,-9,11387,11388,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1013.329812854302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,4,3,1,1408.6,0,0,0 +5127,6311,11387,11388,-9,-9,2,1,0,41,1,0,3,0,1,-9,2,1,0,4,7.6996226035164,7.575747948121352,0,2,0,-9,7,0,0,-27.6568353714031,0,0,1,41,1,3,1,2,2,2019,1,1,10,0,28,18,15,1,0,1,0,9.622023378773449,9.622023378773449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,51.46,6,1,0,0,4,3,1,1408.6,0,0,0 +5127,6311,11388,11387,-9,-9,1,1,1,41,1,0,3,0,1,-9,1,1,0,3,7.133751217358539,7.084984589007997,0,2,0,-9,7,0,0,86.25759475492781,0,0,0,41,1,4,1,1,2,2019,1,2,7,0,40,42,15,1,0,1,0,4.07787031939174,4.07787031939174,0,0,0,0,0,0,0,1,1,0,4.270205941325541,0,0,0,52,54.51,6,1,0,0,4,3,1,1408.6,0,0,0 +5128,6312,11389,-9,-9,-9,1,1,0,58,3,0,3,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1008.335618889973,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,3,0,0,8,1,1,796,0,0,0 +5128,6313,11390,-9,11392,11394,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.136139315769,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,3,1,941.6,0,0,0 +5128,6313,11391,-9,11392,11394,7,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.459606687636,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,3,1,941.6,0,0,0 +5128,6313,11392,11394,-9,-9,4,1,0,35,1,0,3,0,2,-9,2,1,0,4,7.343790970350347,7.062893995524285,0,2,0,-9,16,0,-4,6.47390335777787,-9,0,1,39,2,3,1,3,3,2019,1,2,11,0,20,0,15,1,2,1,0,8.45165823111217,8.45165823111217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,8,3,1,941.6,0,0,0 +5128,6313,11393,-9,11392,11394,6,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.9964454617101,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,8,3,1,941.6,0,0,0 +5128,6313,11394,11392,11389,-9,2,1,1,39,1,0,3,0,2,-9,2,1,0,3,7.608649861453355,7.900641675550141,0,2,0,-9,16,0,4,-33.57757334788128,0,0,0,35,2,4,1,3,3,2019,1,4,16,4,39,30,15,1,4,1,0,5.368856610716221,5.368856610716221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,45.07,4,3,0,0,8,3,1,941.6,0,0,0 +5128,6314,11395,-9,11389,-9,3,1,0,36,2,0,3,0,1,-9,2,1,0,4,8.254274179744103,8.388112169971162,0,3,0,0,0,-9,0,-1022.920655408681,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,0,15,1,2,-9,1,10.58711333042186,10.58711333042186,0,0,0,0,0,0,0,1,1,0,6.226019835381178,0,0,0,48,56,5,3,0,0,8,4,1,1421,0,0,0 +5129,6315,11396,-9,-9,-9,1,1,0,78,2,0,0,0,3,-9,4,3,0,2,0,5.66839210293801,5.578211511402426,3,0,0,0,-9,0,-1015.797016666034,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.684024748660402,5.817884329435816,0,0,57.48,37.4,6,4,0,0,8,2,1,337,0,0,0 +5130,6316,11397,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1228.856892497537,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.94,56.68,6,1,0,0,1,1,0,545,0,0,0 +5131,6317,11398,11399,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,4,7.253625995763021,7.290974302352283,0,1,0,-9,6,0,-13,11.36931312291455,0,0,0,76,2,3,3,-9,-9,2019,2,1,8,0,25,30,15,1,0,4,0,7.341141904204386,7.341141904204386,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,52,6,1,0,0,9,3,1,738.5,0,0,0 +5131,6317,11399,11398,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,6.832092383131877,7.170816242245729,1,0,-9,31,0,13,20.53741024706284,0,0,0,63,3,4,1,3,2,2019,3,2,9,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.555080997617009,7.447826733669308,0,0,59.21,43.05,6,1,0,0,9,3,1,738.5,0,0,0 +5132,6318,11400,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,2,8.328145452144213,8.320494918536708,7.115499126287796,3,0,0,0,-9,0,-904.5450481323267,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,38,38,15,1,6,-9,0,11.42305938283189,11.42305938283189,0,0,0,0,0,0,0,0,0,0,0,6.907121794229722,0,0,50.51,28.51,3,1,0,0,1,5,1,964,0,0,0 +5133,6319,11401,11402,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,6.211446246306328,6.131468705954942,1,0,-9,8,0,-8,134.3222086050308,0,0,0,88,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,2.657505205832283,0,0,1,1,0,2.298718551474138,6.190569147493192,118.3307700478878,1,42.12,34.54,5,1,0,0,11,2,1,725.5,0,0,0 +5133,6319,11402,11401,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,8,-18.71557995966088,0,0,0,80,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,122.6294325422492,0,0,0,0,1,1,0,0,0,0,0,55,45,6,1,0,0,11,2,1,725.5,0,0,0 +5134,6320,11403,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1100.351311340111,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.31,27.71,7,1,0,1,11,1,0,1022,0,0,0 +5135,6321,11404,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,2,1,0,4,8.606588170382409,8.433261127579444,0,3,0,-9,0,-9,0,-926.3095812808896,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,0,15,1,0,-9,0,12.85502594741825,12.85502594741825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,13,5,1,541,0,0,0 +5136,6322,11405,-9,11406,11407,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,3.118627177618745,3.845474608934364,2,0,0,0,-9,0,-903.373123115267,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.747680522379727,0,0,0,42.84,55.93,6,1,0,0,5,4,1,1906.5,0,0,0 +5136,6322,11406,11407,-9,-9,2,1,0,43,1,0,2,0,3,-9,2,1,0,4,7.599701732750857,7.82452925082702,0,2,0,-9,6,0,-2,11.30246738688536,0,0,1,45,2,3,1,3,3,2019,1,1,10,0,24,24,15,1,0,1,0,15.62475964013861,15.62475964013861,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,6,1,0,0,5,4,1,1906.5,0,0,0 +5136,6322,11407,11406,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.645061273061849,8.636746068161681,0,2,0,-9,6,0,2,-16.82921187951175,0,0,0,43,3,4,1,3,3,2019,1,2,11,0,40,38,15,1,0,1,0,15.72124621327935,15.72124621327935,0,0,0,0,0,0,0,1,1,0,4.332189061937784,0,0,0,47.16,55.33,6,1,0,0,5,4,1,1906.5,0,0,0 +5136,6322,11408,-9,11406,11407,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.1667274850581,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,1,1906.5,0,0,0 +5137,6323,11409,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,4,8.372167240213541,8.517345982330642,0,3,0,0,0,-9,0,-942.172544915476,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,37,15,1,0,-9,0,12.54364757234476,12.54364757234476,0,0,0,0,0,0,0,1,1,0,0,0,11.48599340225234,3,57.16,56.15,6,2,0,0,2,4,0,132,0,0,0 +5138,6324,11410,-9,11411,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-926.0056380033307,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,6,1,0,1249,0,0,0 +5138,6324,11411,-9,-9,-9,1,1,0,30,2,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,-9,0,-9,0,-1100.068554097313,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.07,29.51,7,1,0,0,6,1,0,1249,0,0,0 +5139,6325,11412,-9,11413,11414,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.908505214711,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,0,342.6666666666667,0,0,0 +5139,6325,11413,11414,-9,-9,2,1,0,33,1,1,1,0,2,-9,2,1,0,4,7.825202214990277,7.739927403578077,0,2,0,-9,3,0,0,-11.36833854169392,0,0,1,33,1,2,1,-9,-9,2019,1,1,7,0,24,22,15,1,0,1,0,9.782812336238333,9.782812336238333,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.05,55.39,6,1,0,0,10,4,0,342.6666666666667,0,0,0 +5139,6325,11414,11413,-9,-9,1,1,1,33,1,1,1,0,1,-9,2,1,0,2,8.315222298722439,8.315680237008941,0,2,0,-9,3,0,0,105.3609651965432,0,0,0,33,2,4,1,1,2,2019,1,2,21,9,47,45,15,1,9,1,0,8.418413520261472,8.418413520261472,0,0,0,0,0,0,0,1,1,0,4.389014187418688,0,0,0,12.59,66.22,2,1,0,0,10,4,0,342.6666666666667,0,0,0 +5140,6326,11415,11416,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,5,8.253423813146036,8.647519958411433,0,1,0,-9,3,0,2,-55.07827474073365,0,1,0,24,1,3,1,2,2,2019,1,2,10,0,38,38,15,1,0,1,0,12.5623003480192,12.5623003480192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,6,1,0,0,11,5,1,1470.5,0,0,0 +5140,6326,11416,11415,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,3,8.418972962903963,8.213375486084621,0,1,0,-9,3,0,-2,26.20584680247184,0,1,1,26,1,5,1,-9,-9,2019,1,1,10,0,42,41,15,1,0,1,0,10.43271915839155,10.43271915839155,0,0,0,0,0,0,0,0,0,0,.7670406451736903,0,0,0,30.94,61.65,5,1,0,0,11,5,1,1470.5,0,0,0 +5141,6327,11417,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1004.623971087872,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.516344425065798,0,1,1,0,0,0,0,3,54.79,55.86,7,1,0,0,11,1,1,711,0,0,0 +5142,6328,11418,11419,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,2,8.367305673682919,8.75778157753277,0,1,0,-9,3,0,1,-71.78670974013448,0,0,1,33,1,4,1,2,2,2019,1,2,8,0,41,38,15,1,0,1,0,12.07084031031388,12.07084031031388,0,0,0,0,0,0,0,1,1,0,.6227501468948287,0,0,0,53.07,28.76,6,1,0,0,2,5,1,1515,0,0,0 +5142,6328,11419,11418,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,4,9.04510287928667,9.066524886432479,0,1,0,-9,3,0,-1,-8.735586235938449,0,0,0,34,1,2,1,-9,-9,2019,1,1,12,0,50,37,15,1,0,1,0,22.49774133445919,22.49774133445919,0,0,0,0,0,0,0,1,1,0,6.945726750038418,0,0,0,46.14,50.61,4,1,0,0,2,5,1,1515,0,0,0 +5143,6329,11420,-9,-9,-9,1,1,0,86,2,0,0,0,2,-9,4,3,0,2,0,5.673530977439722,6.046982356527268,3,0,0,0,-9,0,-1038.500930865817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,11.10464996291018,0,1,1,0,4.598741056399838,5.962139529536385,0,0,42.5,24.08,7,1,0,0,4,2,1,1121,0,0,0 +5144,6330,11421,-9,-9,-9,2,1,1,32,2,0,0,0,1,-9,2,1,0,3,9.150852552374587,8.976131389997695,0,1,0,-9,4,0,-7,150.6668773554446,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,29,11,53,0,15,1,11,-9,0,14.82153420443567,14.82153420443567,0,0,0,0,0,0,0,0,0,0,3.506946185971159,0,0,0,19.98,58.36,2,1,0,0,12,5,1,93,0,0,0 +5144,6331,11422,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,4,8.894100437694885,9.042301226829526,0,1,0,-9,4,0,7,5.542687181390666,-9,0,0,-9,-9,-9,-9,1,1,2019,1,2,9,2,55,0,15,1,2,-9,0,19.34128147437563,19.34128147437563,0,0,0,0,0,0,0,0,0,0,2.646155227847373,0,0,0,46.42,59.64,6,1,0,0,12,5,1,567,0,0,0 +5145,6332,11423,-9,-9,-9,1,1,1,82,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-894.8876566456978,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,38.04,7,1,0,0,8,1,0,411,0,0,0 +5146,6333,11424,11428,-9,-9,2,1,0,47,1,0,3,0,2,-9,2,1,0,4,8.238244335792929,8.279112855658747,0,2,0,-9,9,0,1,4.023418531725028,0,0,0,46,1,3,1,2,2,2019,1,1,7,0,27,29,15,1,0,1,0,14.82698115054295,14.82698115054295,0,0,0,0,0,0,0,0,0,0,4.306041670771115,0,0,0,54.2,57.49,5,1,0,0,7,5,1,1563.4,0,0,0 +5146,6333,11425,-9,11424,11428,5,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.8642838774597,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,1563.4,0,0,0 +5146,6333,11426,-9,11424,11428,3,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.064132514455,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,1563.4,0,0,0 +5146,6333,11427,-9,11424,11428,4,1,1,17,2,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,0,0,-9,0,-1044.896310375416,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.17,41.43,4,1,1,0,7,5,1,1563.4,0,0,0 +5146,6333,11428,11424,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,3,9.380165344216108,9.557172943542025,0,2,0,-9,29,0,-1,38.45619563075583,0,0,0,47,2,4,1,2,1,2019,1,2,11,2,40,42,15,1,2,1,0,35.07413295553918,35.07413295553918,0,0,0,0,0,0,0,0,0,0,2.12779541585825,0,0,0,35.3,62.04,4,1,0,0,7,5,1,1563.4,0,0,0 +5147,6334,11429,11431,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,5,9.089103461885138,9.066518113553311,0,2,0,-9,6,0,1,76.34462917751385,0,0,0,30,1,5,1,1,1,2019,1,2,7,0,48,54,15,1,0,1,0,20.10885354787652,20.10885354787652,0,0,0,0,0,0,0,1,1,0,2.172329037837082,0,0,0,51.14,60.45,6,1,0,0,4,5,1,489.3333333333333,0,0,0 +5147,6334,11430,-9,11431,11429,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-914.9911624489941,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,489.3333333333333,0,0,0 +5147,6334,11431,11429,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,5,0,0,0,2,0,-9,6,0,-1,-51.05288297182305,0,0,1,31,1,5,1,-9,-9,2019,1,1,8,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.427693592295395,0,0,0,51.73,58.82,2,1,0,0,4,5,1,489.3333333333333,0,0,0 +5148,6335,11432,11433,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,3,8.330875380693488,7.889172525175566,0,1,0,-9,17,0,-16,51.96641279615912,0,0,0,61,1,1,3,1,3,2019,2,1,10,2,39,44,15,1,2,3,0,11.12428444222934,11.12428444222934,0,0,0,0,0,0,0,1,1,0,9.971043114096233,0,0,0,38.64,55.03,3,1,0,1,4,3,1,440.5,0,0,0 +5148,6335,11433,11432,-9,-9,1,1,1,61,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,17,0,16,-41.7398611740845,0,0,0,45,1,3,1,2,1,2019,3,2,22,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.53,22.13,1,1,0,1,4,3,1,440.5,0,0,0 +5149,6336,11434,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-997.5380416065634,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.68,20.24,6,3,0,0,8,1,0,1210,0,0,0 +5150,6337,11435,11438,-9,-9,4,1,1,34,1,0,3,0,3,-9,1,1,0,4,8.699980690167607,8.877501156930574,0,2,0,-9,5,0,-1,61.90106410352799,0,0,0,35,2,3,3,-9,-9,2019,2,1,9,0,50,40,15,1,0,3,0,15.71609493605581,15.71609493605581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,1,1,0,0,11,3,0,808.8,0,0,0 +5150,6337,11436,-9,11438,11435,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.062377278336,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,3,0,808.8,0,0,0 +5150,6337,11437,-9,11438,11435,2,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1024.760004540454,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,11,3,0,808.8,0,0,0 +5150,6337,11438,11435,-9,-9,1,1,0,35,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,5,0,1,32.45469481863053,0,0,1,34,3,4,1,2,2,2019,3,4,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,47.29,5,1,1,0,11,3,0,808.8,0,0,0 +5150,6337,11439,-9,11438,11435,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-938.8146503711307,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,11,3,0,808.8,0,0,0 +5151,6338,11440,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,1,1,0,4,7.710920388227045,7.738906766879747,6.851936353843735,3,0,0,0,-9,0,-894.5123090029869,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,25,15,1,0,-9,0,9.45001890237598,9.45001890237598,0,0,0,0,0,0,0,1,1,0,6.397426020318833,6.716530604911002,0,0,58.15,52.91,1,1,0,0,2,4,1,300,0,0,0 +5152,6339,11441,-9,-9,-9,1,1,0,20,2,0,0,1,2,0,7,2,0,1,0,0,0,3,0,0,0,-9,0,-933.0738387731737,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.02,45.91,4,3,0,1,4,1,0,1255,0,0,0 +5153,6340,11442,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,2,0,7.581648996912109,7.601019557631702,3,0,0,0,-9,0,-951.991742953093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.730964545452469,7.64113241827391,0,0,14.53,45.3,3,1,0,0,9,3,1,1226,0,0,0 +5154,6341,11443,11444,-9,-9,1,1,0,50,1,0,0,0,3,-9,1,1,0,1,5.822350600222953,6.133664755497778,0,1,0,-9,12,0,-1,17.91954574072929,0,0,0,51,3,4,1,2,2,2019,1,2,22,10,15,13,15,1,10,1,0,3.250840918904332,3.250840918904332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.46,25.58,5,1,0,0,7,3,1,1391,0,0,0 +5154,6341,11444,11443,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,4,8.214894612527928,8.689041391001536,0,1,0,-9,14,0,1,64.74850241876277,0,0,0,50,3,1,1,-9,-9,2019,1,1,10,1,49,59,15,1,1,1,0,9.505248870027602,9.505248870027602,0,0,0,0,0,0,0,0,0,0,0,0,28.65159105319518,1,55.71,43.27,6,1,0,0,7,3,1,1391,0,0,0 +5155,6342,11445,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,3,7.621062150785525,7.883825670251773,6.111212791746101,3,0,0,0,-9,0,-974.2014241571682,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,0,15,1,1,-9,0,12.371887669596,12.371887669596,0,0,0,0,0,0,0,1,1,0,1.274109799144614,5.770686379118229,0,0,51,49,5,1,0,0,1,3,0,392,0,0,0 +5155,6343,11446,-9,-9,11445,2,1,1,33,2,0,0,0,1,-9,1,1,0,2,7.614805188911379,7.559412063106823,0,3,0,0,0,-9,0,-880.5832668935459,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,50,0,15,1,0,-9,1,5.426600323527115,5.426600323527115,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,5,1,0,0,1,3,0,484,0,0,0 +5156,6344,11447,-9,-9,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,3,7.624657394714943,7.616655532327301,0,3,0,0,0,-9,0,-933.1301108749274,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,1,8.722266615297738,8.722266615297738,0,0,0,0,0,0,0,0,0,0,.1317164501482844,0,0,0,47.79,53.79,6,2,0,0,12,3,1,245,0,0,0 +5157,6345,11448,11449,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,4,9.002079724320687,9.366540649291977,0,2,0,-9,3,0,-1,60.43948256522023,0,0,0,46,2,3,1,3,3,2019,1,1,9,0,60,65,15,1,0,1,0,17.81215932774979,17.81215932774979,0,0,0,0,0,0,0,0,0,0,1.240286648473609,0,0,0,50.48,56.4,6,1,0,0,11,5,1,575.5,0,0,0 +5157,6345,11449,11448,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,3,8.103919579432976,8.086451104055383,0,2,0,-9,3,0,1,40.69350419954869,0,0,0,45,1,4,1,2,2,2019,1,2,8,0,36,45,15,1,0,1,0,11.59770517850529,11.59770517850529,0,0,0,0,0,0,0,0,0,0,0,0,0,3,44.19,58.01,6,1,0,0,11,5,1,575.5,0,0,0 +5157,6346,11450,-9,11449,11448,3,1,1,19,2,0,1,0,2,-9,2,1,0,4,7.154609428361955,6.99705018329796,0,3,0,0,0,-9,0,-884.0263338521437,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,38,0,15,1,2,-9,1,3.553061480731875,3.553061480731875,0,0,0,0,0,0,0,0,0,0,1.294704384685577,0,0,0,48,59,5,1,0,0,11,2,1,1670,0,0,0 +5158,6347,11451,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,3,0,2.924611550063632,2.97534527813596,3,0,0,0,-9,0,-948.015664747185,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.275414732650599,0,0,55.19,14.07,6,1,0,1,5,1,0,735,0,0,0 +5159,6348,11452,11453,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.645963234748024,7.686722198528869,1,0,-9,6,0,2,-64.44266333052633,0,0,0,69,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.916619686457834,7.371232808328465,0,0,57.16,56.15,6,1,0,0,10,3,1,180.5,0,0,0 +5159,6348,11453,11452,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.19632918603631,7.331037964988579,1,0,-9,6,0,-2,91.49759784345142,0,0,0,71,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.388967561799697,7.381205845266416,0,0,57.16,56.15,7,1,0,0,10,3,1,180.5,0,0,0 +5160,6349,11454,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-902.5278736301277,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.1056119326209,3,50.92,51.31,4,2,1,0,5,1,0,88,0,0,0 +5161,6350,11455,11456,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,45,0,-1,-55.69446332353011,0,0,0,84,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.511358323248957,0,0,0,51.3,30.49,7,1,0,0,6,2,1,703,0,0,0 +5161,6350,11456,11455,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,2,0,7.378033616619412,7.265915189646546,1,0,-9,44,0,1,-10.77508559917089,0,0,0,83,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.053210740908654,6.92975428444695,0,0,63.5,33.23,6,1,0,0,6,2,1,703,0,0,0 +5162,6351,11457,-9,11458,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1104.101918606677,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.32,53.91,4,1,0,0,7,5,1,750,0,0,0 +5162,6351,11458,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,4,9.0782605649865,9.08585944415557,0,3,0,0,0,-9,0,-980.6653715311336,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,50,45,15,1,0,-9,1,16.45982392387029,16.45982392387029,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,48.98,6,1,0,0,7,5,1,750,0,0,0 +5163,6352,11459,-9,-9,11460,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-928.0397738353624,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,1,0,296,0,0,0 +5163,6352,11460,-9,-9,-9,1,1,1,39,3,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,-9,0,-9,0,-893.9986005881284,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,128.5245181240531,3,50.05,28.97,5,1,0,0,10,1,0,296,0,0,0 +5164,6353,11461,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1122.659407057467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.68,32.5,3,1,0,1,9,1,0,611.5,0,0,0 +5164,6353,11462,-9,11461,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1028.702099243524,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,1,0,611.5,0,0,0 +5165,6354,11463,11464,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,4.789991712761482,4.86639740229837,1,0,-9,49,0,-1,168.0023137139532,0,0,0,72,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.339902134301245,4.850864338459222,0,0,61.11,48.86,6,1,0,0,4,2,1,1402.5,0,0,0 +5165,6354,11464,11463,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,1,-2.821118054747524,0,0,0,71,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,6.236344764709417,0,0,0,0,1,1,0,7.155554915455873,0,0,0,54.88,35.34,5,1,0,0,4,2,1,1402.5,0,0,0 +5166,6355,11465,-9,11467,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-904.8264252131128,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,0,552.3333333333334,0,0,0 +5166,6355,11466,-9,11467,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,3,6.036177703770961,5.896577070502696,0,4,0,0,0,-9,0,-970.1732850488877,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,16,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.24,50.01,6,1,0,1,4,3,0,552.3333333333334,0,0,0 +5166,6355,11467,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,4,7.986299781647308,7.942178375848983,0,4,0,0,0,-9,0,-1025.282321866325,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,43,39,15,1,3,-9,0,7.468908076442585,7.468908076442585,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.96,61.14,5,1,0,0,4,3,0,552.3333333333334,0,0,0 +5167,6356,11468,-9,11470,11469,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1102.32470472142,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,2,1,1025.6,0,0,0 +5167,6356,11469,11470,-9,-9,1,1,1,41,1,0,3,0,3,-9,1,1,0,5,7.502482643644006,7.421540268551095,0,2,0,-9,15,0,5,-14.19102107561271,0,0,0,36,2,5,3,-9,-9,2019,2,2,9,0,20,35,15,1,0,3,0,13.02959407483083,13.02959407483083,0,0,0,0,0,0,0,1,1,0,6.910581524819063,0,0,0,65.56,41.56,3,1,0,0,8,2,1,1025.6,0,0,0 +5167,6356,11470,11469,-9,-9,2,1,0,36,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,15,0,-5,-121.6739446168251,0,0,1,41,3,5,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,47.39,6,3,0,0,8,2,1,1025.6,0,0,0 +5167,6356,11471,-9,11470,11469,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.6689986929374,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,2,1,1025.6,0,0,0 +5167,6356,11472,-9,11470,11469,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.9142196254578,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,2,1,1025.6,0,0,0 +5168,6357,11473,11474,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,4,9.576741060541197,10.0365772964427,0,2,0,-9,22,0,-4,-56.63556795563723,0,0,0,49,1,4,1,2,1,2019,1,1,21,9,60,50,15,1,9,1,0,33.31753918652142,33.31753918652142,0,0,0,0,0,0,0,0,0,0,2.81382380960947,0,0,0,38,62.48,4,2,0,0,8,5,1,1213.333333333333,0,0,0 +5168,6357,11474,11473,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,4,9.068145337308437,9.117712968180934,0,2,0,-9,20,0,4,-65.5690337114042,0,0,0,45,1,4,1,2,2,2019,1,2,9,0,31,60,15,1,0,1,0,32.78675613484427,32.78675613484427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,8,5,1,1213.333333333333,0,0,0 +5168,6357,11475,-9,11474,11473,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1001.238420385676,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,2,0,0,8,5,1,1213.333333333333,0,0,0 +5169,6358,11476,-9,11479,11477,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.018412221609,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,2,1,470.75,0,0,0 +5169,6358,11477,11479,-9,-9,1,1,1,44,1,0,3,0,2,-9,2,1,0,3,7.874860544723369,7.970672327380621,0,2,0,-9,11,0,7,-112.0985920892258,0,0,0,37,2,3,3,3,3,2019,2,2,10,1,38,38,15,1,1,3,0,10.01976544934852,10.01976544934852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.09,53.39,4,1,0,0,11,2,1,470.75,0,0,0 +5169,6358,11478,-9,11479,11477,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.1708441538276,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,470.75,0,0,0 +5169,6358,11479,11477,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,3,0,4.822232585255971,4.341920229824485,2,0,-9,11,0,-7,-31.81920039696234,0,0,1,44,2,3,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.038041614093846,0,0,0,58.32,50.22,7,1,0,0,11,2,1,470.75,0,0,0 +5170,6359,11480,11482,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,3,5.329297234830357,5.505099122929826,0,2,0,-9,10,0,1,7.593437748030373,0,0,0,48,2,2,1,2,2,2019,1,2,8,0,16,16,15,1,0,1,0,1.73635726624445,1.73635726624445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,48.33,5,1,0,0,5,3,1,518.3333333333334,0,0,0 +5170,6359,11481,-9,11480,11482,4,1,0,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-999.7122606845551,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,23,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,52.88,6,1,0,0,5,3,1,518.3333333333334,0,0,0 +5170,6359,11482,11480,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,2,8.060260022396308,7.798595517857251,0,2,0,-9,10,0,-1,-69.66955883396734,0,0,0,49,2,3,1,2,2,2019,1,1,18,6,40,42,15,1,6,1,0,8.130440864187824,8.130440864187824,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,40.6,4,1,0,0,5,3,1,518.3333333333334,0,0,0 +5171,6360,11483,11484,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,3.763832693966366,3.469658782907644,1,0,-9,47,0,11,-127.4553168665139,0,0,0,69,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.784404085872565,3.738332586430599,0,0,53.01,25.64,5,1,0,0,5,2,1,576.5,0,0,0 +5171,6360,11484,11483,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,6.495922166002884,6.345920870448023,1,0,-9,46,0,-11,-104.9293568634252,0,0,0,80,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.600874285667787,0,0,50,47,5,1,0,0,5,2,1,576.5,0,0,0 +5172,6361,11485,-9,-9,-9,1,1,0,32,3,0,1,0,2,-9,2,1,0,4,6.829604847305173,6.863522950371583,0,4,0,0,0,-9,0,-865.956007660165,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,16,16,15,1,1,-9,0,6.977893973539038,6.977893973539038,0,0,0,0,0,0,0,1,0,1,0,0,70.74493282733987,3,52.08,55.93,5,1,0,1,13,2,0,697,0,0,0 +5173,6362,11486,11488,-9,-9,1,1,0,49,1,0,1,0,1,-9,6,3,0,5,0,0,0,2,0,-9,7,0,4,-94.11530378360202,0,0,0,45,2,2,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,9,2,0,736.6666666666666,0,0,0 +5173,6362,11487,-9,11486,11488,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.5498705128061,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,2,0,736.6666666666666,0,0,0 +5173,6362,11488,11486,-9,-9,2,1,1,45,1,0,1,0,2,-9,1,1,0,2,6.254473074272997,5.976260154550178,0,2,0,-9,7,0,-4,76.22400118595945,0,0,0,49,1,5,3,-9,-9,2019,2,1,8,0,50,50,15,1,0,3,0,1.11972364920439,1.11972364920439,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.94,49.91,5,3,0,0,9,2,0,736.6666666666666,0,0,0 +5174,6363,11489,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-923.9901979802009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.87,28.94,2,1,1,1,1,1,0,653,0,0,0 +5175,6364,11490,-9,11492,11494,5,1,1,19,2,0,2,1,-9,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-992.7755948845702,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.36,54.64,5,3,0,0,8,1,0,835,0,0,0 +5175,6365,11491,-9,11492,11494,2,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1018.829592733975,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,3,0,1866,0,0,0 +5175,6366,11492,11494,-9,-9,1,1,0,44,1,0,2,0,2,-9,1,1,0,4,7.439720319370352,7.464688157728169,0,2,0,-9,3,0,-15,-17.02723633728534,0,0,1,59,3,3,1,2,1,2019,1,3,10,2,40,40,15,1,2,1,0,4.419563900297571,4.419563900297571,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.82,49.44,3,3,0,0,8,3,0,268,0,0,0 +5175,6366,11493,-9,11492,11494,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.618516397165,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,3,0,268,0,0,0 +5175,6366,11494,11492,-9,-9,3,1,1,59,1,0,2,0,3,-9,2,1,0,3,7.369647419711087,7.443925575380402,0,2,0,-9,3,0,15,-95.95835048966431,0,0,0,44,2,4,1,-9,-9,2019,1,1,10,0,24,24,15,1,1,1,0,9.085216036873382,9.085216036873382,0,0,0,0,0,0,0,1,1,0,2.207593682644276,0,0,0,50,49,5,3,0,0,8,3,0,268,0,0,0 +5176,6367,11495,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.876218746875134,8.573540546899419,0,3,0,0,0,-9,0,-1061.759342580909,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,57,57,15,1,11,-9,0,12.63599679573147,12.63599679573147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.63,68.89,6,1,0,0,11,5,1,1268,0,0,0 +5177,6368,11496,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,4,3,0,3,0,6.10332922307421,5.831496982988171,3,0,0,0,-9,0,-1107.80031382544,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.80374769298565,0,0,52,48,5,1,0,0,13,2,0,462,0,0,0 +5178,6369,11497,11498,-9,-9,2,1,0,21,1,0,0,0,2,-9,2,1,0,3,7.318339446973114,7.373202533206131,0,1,0,-9,3,0,1,-138.9836897226036,0,1,1,20,2,4,3,-9,-9,2019,2,1,14,3,33,44,15,1,3,3,0,6.124671006286193,6.124671006286193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,6,1,0,0,5,4,0,441,0,0,0 +5178,6369,11498,11497,-9,-9,1,1,1,20,1,0,0,0,2,-9,11,3,0,4,8.607087275234589,8.627177973339689,0,1,0,-9,3,0,-1,-57.87367014432814,0,1,0,21,2,3,1,-9,-9,2019,3,2,6,1,39,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,5,4,0,441,0,0,0 +5179,6370,11499,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,7,2,0,4,0,6.99928042766413,7.205219358883178,3,0,0,0,-9,0,-990.4664110372397,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,39,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.866620395311259,0,0,0,21.34,64.90000000000001,5,1,0,0,4,2,0,837,0,0,0 +5180,6371,11500,11501,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,5,8.496010273903746,7.811324728412559,0,2,0,-9,7,0,0,73.78175762329064,0,0,0,39,2,4,3,-9,-9,2019,2,1,12,1,40,24,15,1,1,3,0,8.6953713567578,8.6953713567578,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.83,46.59,3,3,0,1,8,3,1,1065.5,0,0,0 +5180,6371,11501,11500,-9,-9,1,1,0,39,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,16,0,0,125.556345573897,0,0,1,39,2,5,1,2,2,2019,3,2,16,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.45,53.53,4,3,0,0,8,3,1,1065.5,0,0,0 +5181,6372,11502,-9,-9,-9,1,1,0,70,2,0,0,0,3,-9,4,3,0,3,0,6.812112378589652,6.678611470414286,3,0,0,0,-9,0,-988.8980192730329,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.742235861408666,6.682955407406199,0,0,49.22,40.82,5,3,0,0,7,2,0,1911,0,0,0 +5182,6373,11503,11504,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,2,6.931759941672007,6.727064913417555,0,1,0,-9,40,0,0,46.81825019660357,0,0,0,68,3,2,3,3,3,2019,2,2,12,0,20,15,15,1,0,4,0,5.233222401888088,5.233222401888088,0,0,0,0,0,0,0,1,1,0,0,0,6.66322511808572,3,45.07,30.7,5,1,0,0,1,2,1,1059,0,0,0 +5182,6373,11504,11503,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,6.596615075720968,6.270448751487818,1,0,-9,40,0,9,-12.47334822098829,0,0,0,59,2,2,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.481118450206234,0,0,44.66,37.84,3,1,0,0,1,2,1,1059,0,0,0 +5182,6374,11505,-9,11503,11504,3,1,1,38,2,0,0,0,2,-9,2,1,0,1,7.907179488598213,7.693169227100632,0,3,0,0,0,-9,0,-928.7550061196538,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,7,37,38,15,1,7,-9,1,10.84428181166593,10.84428181166593,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,34.95,3,1,0,0,1,3,1,2326,0,0,0 +5182,6375,11506,-9,11503,11504,4,1,1,26,2,0,0,0,1,-9,2,1,0,2,8.120664598358369,7.920510411315416,0,3,0,0,0,-9,0,-1072.095578456175,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,36,40,15,1,0,-9,1,9.428441439377442,9.428441439377442,0,0,0,0,0,0,0,1,1,0,2.169212879796056,0,0,0,24.7,57.78,3,1,0,0,1,4,1,150,0,0,0 +5183,6376,11507,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,3,7.761844859060469,8.308933209279981,0,3,0,0,0,-9,0,-884.0207803864514,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,39,39,15,1,0,-9,0,6.888734870340409,6.888734870340409,0,0,0,0,0,0,0,1,1,0,.6852453684531107,0,0,0,52,54.51,5,1,0,0,2,3,1,108,0,0,0 +5184,6377,11508,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,4,0,7.386193530160249,7.273690337671609,3,0,0,0,-9,0,-1037.31994978173,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.820623521634374,7.025479345741814,0,0,54,51,6,1,0,0,2,2,1,297,0,0,0 +5185,6378,11509,11511,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,3,7.69033966668214,7.881268226262969,0,2,0,-9,14,0,-7,0,0,0,1,48,1,5,1,3,3,2019,1,2,9,1,30,30,15,1,1,1,0,10.96873363042068,10.96873363042068,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,54.77,4,3,0,0,6,4,1,537,0,0,0 +5185,6378,11510,-9,11509,11511,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.711389707524,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,6,4,1,537,0,0,0 +5185,6378,11511,11509,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,5,7.723214940206718,8.068527208752743,0,2,0,-9,14,0,7,0,0,0,0,41,2,3,1,3,3,2019,1,1,1,0,36,48,15,1,0,1,0,8.891141619196073,8.891141619196073,0,0,0,0,0,0,0,1,1,0,0,0,0,3,62.39,56.71,6,3,0,0,6,4,1,537,0,0,0 +5186,6379,11512,11513,-9,-9,2,1,1,51,1,0,0,0,1,-9,1,1,0,3,9.698360142044047,9.477557634202151,0,1,0,-9,32,0,-1,-103.9010972353502,0,0,0,52,1,3,1,2,2,2019,1,1,12,1,42,45,15,1,1,1,0,45.16048933217363,45.16048933217363,0,0,0,0,0,0,0,0,0,0,.5611355459825508,0,0,0,54.13,48.04,5,1,0,0,7,5,1,473,0,0,0 +5186,6379,11513,11512,-9,-9,1,1,0,52,1,0,0,0,1,-9,1,1,0,3,0,0,0,1,0,-9,31,0,1,46.23662316682905,0,0,0,51,1,3,1,3,3,2019,1,2,15,4,70,12,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.09,39.08,5,1,0,0,7,5,1,473,0,0,0 +5187,6380,11514,-9,11518,11515,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.1343611323427,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,7,4,0,998.4,0,0,0 +5187,6380,11515,11518,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,4,7.74975838715218,7.571096293051585,0,2,0,-9,12,0,4,-6.995669977000205,0,0,0,42,1,3,1,-9,2,2019,1,1,4,0,40,0,15,1,0,1,0,4.825467476442299,4.825467476442299,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,5,4,0,0,7,4,0,998.4,0,0,0 +5187,6380,11516,-9,11518,11515,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.376049543276,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,7,4,0,998.4,0,0,0 +5187,6380,11517,-9,11518,11515,3,1,1,10,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1023.935518589868,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,4,0,0,7,4,0,998.4,0,0,0 +5187,6380,11518,11515,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,3,8.311383279277671,8.295558186262941,0,2,0,-9,12,0,-4,-7.738257001348088,0,0,1,46,1,4,1,3,1,2019,1,2,9,0,40,41,15,1,0,1,0,15.39017088482467,15.39017088482467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,4,4,0,0,7,4,0,998.4,0,0,0 +5188,6381,11519,11520,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.949613712854569,8.024320411553623,1,0,-9,20,0,-4,-64.94688601589733,0,0,0,68,1,2,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.107819488485135,7.809198936950886,0,0,57.16,56.15,6,1,0,0,10,4,1,865,0,0,0 +5188,6381,11520,11519,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,2,0,7.933027466615458,8.134476749252213,1,0,-9,20,0,4,50.05921869967155,0,0,0,64,2,4,3,2,2,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.349633300010892,8.225134922943685,0,0,43.59,38.38,3,1,0,0,10,4,1,865,0,0,0 +5189,6382,11521,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,3,7.856370658551644,7.729477950789075,0,3,0,0,0,-9,0,-947.6361914391599,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,39,40,15,1,0,-9,0,7.20556186691679,7.20556186691679,0,0,0,0,0,0,0,1,1,0,0,0,16.51323490003075,3,53.98,50.87,1,1,0,0,11,3,0,707,0,0,0 +5190,6383,11522,11523,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,7.580784700718207,7.587267193058612,1,0,-9,21,0,15,38.14329805084962,0,0,0,53,2,4,1,3,3,2019,3,2,10,1,0,10,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.528601202656818,7.142247901396904,30.3670121505411,3,64.97,24.32,5,1,0,0,7,3,1,575,0,0,0 +5190,6383,11523,11522,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.279184153205036,7.262597413921327,0,1,0,-9,21,0,-15,-32.63383382359531,0,0,0,68,3,2,3,3,3,2019,2,1,9,0,27,20,15,1,0,4,0,5.999058225617575,5.999058225617575,0,0,0,0,0,0,0,1,1,0,2.352766916596835,0,8.040824527330585,3,57.16,56.15,6,1,0,0,7,3,1,575,0,0,0 +5191,6384,11524,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,2,1,0,2,8.458043762334901,8.368400954768575,0,3,0,0,0,-9,0,-920.5878152890084,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,2,25,20,15,1,2,-9,0,20.70531312268056,20.70531312268056,0,0,0,0,0,0,0,1,1,0,6.285804349226701,0,123.8951936002381,3,40.63,35.52,6,2,0,0,8,4,0,73,0,0,0 +5191,6385,11525,-9,-9,-9,2,1,0,57,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-988.1770645907005,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,8,1,0,1748,0,0,0 +5192,6386,11526,11527,-9,-9,2,1,1,34,1,0,0,0,1,-9,1,1,0,2,8.856002339855953,8.792011410285083,0,1,0,-9,7,0,2,201.9738247715599,0,0,0,32,2,2,1,-9,-9,2019,1,1,8,0,50,45,15,1,0,1,0,18.31718024128865,18.31718024128865,0,0,0,0,0,0,0,0,0,0,0,0,17.08889493297629,1,52.16,24.89,6,1,0,0,2,5,1,560,0,0,0 +5192,6386,11527,11526,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,2,8.098114778349967,8.249882438911325,0,1,0,-9,7,0,-2,-86.15203087160208,0,0,1,34,1,2,1,2,3,2019,1,2,14,4,32,66,15,1,4,1,0,13.77790926100173,13.77790926100173,0,0,0,0,0,0,0,0,0,0,7.852448627308088,0,0,0,32.25,38.72,5,1,0,0,2,5,1,560,0,0,0 +5193,6387,11528,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,4,8.420001537110702,8.607996137267536,0,3,0,0,0,-9,0,-1088.713717114988,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,47,87,15,1,0,-9,0,16.18026159221456,16.18026159221456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,8,5,1,219,0,0,0 +5194,6388,11529,-9,11531,11530,3,1,1,16,2,0,4,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1021.858755833384,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,7,1,1,1007.166666666667,0,0,0 +5194,6388,11530,11531,-9,-9,2,1,1,35,1,0,4,0,2,-9,1,1,0,4,0,0,0,2,0,-9,9,0,-3,0,0,0,0,38,2,2,3,-9,-9,2019,2,1,2,0,25,25,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,3,0,0,7,1,1,1007.166666666667,0,0,0 +5194,6388,11531,11530,-9,-9,1,1,0,38,1,0,4,0,2,-9,6,3,0,2,0,0,0,2,0,-9,20,0,3,0,0,0,1,35,2,4,1,3,2,2019,3,2,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,7,3,0,0,7,1,1,1007.166666666667,0,0,0 +5194,6388,11532,-9,11531,11530,6,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.970589557667,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,1,1,1007.166666666667,0,0,0 +5194,6388,11533,-9,11531,11530,4,1,0,15,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1008.604450572674,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,3,0,0,7,1,1,1007.166666666667,0,0,0 +5194,6388,11534,-9,11531,11530,5,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.2854445293527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,1,1,1007.166666666667,0,0,0 +5195,6389,11535,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-997.5233468981143,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.09,32.8,4,1,1,0,4,1,0,593,0,0,0 +5196,6390,11536,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,2,1,0,5,6.511688469377687,6.408441203481654,0,3,0,0,0,-9,0,-982.840293770336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,6,0,15,1,0,-9,0,14.20217416182971,14.20217416182971,0,0,0,0,0,0,0,1,1,0,2.956832192623345,0,0,0,50.54,62.09,6,1,0,0,5,2,1,542,0,0,0 +5197,6391,11537,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,5,8.791308301038145,8.57532145245003,0,3,0,0,0,-9,0,-1047.123617282466,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,42,15,1,0,-9,0,15.80901598545959,15.80901598545959,0,0,0,0,0,0,0,1,1,0,3.344645036553767,0,0,0,57.06,57.76,5,1,0,0,7,5,1,563,0,0,0 +5198,6392,11538,11539,-9,-9,2,1,0,49,1,0,0,0,3,-9,2,1,0,4,6.657538962120458,6.79099297435774,0,1,0,-9,1,-9,3,-90.79562485489004,-9,0,0,46,1,2,1,-9,-9,2019,1,1,10,0,16,0,15,1,1,1,0,5.608358533861413,5.608358533861413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,5,0,0,4,3,1,1405.5,0,0,0 +5198,6392,11539,11538,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,2,7.541350322063098,7.509525216754908,0,1,0,-9,1,-9,-3,-61.11419782789793,-9,0,0,49,3,4,1,2,2,2019,1,2,30,12,40,0,15,1,12,1,0,4.618143015591757,4.618143015591757,0,0,0,0,0,0,0,0,0,0,.2026284340681373,0,0,0,27.1,53.11,1,1,0,1,4,3,1,1405.5,0,0,0 +5199,6393,11540,11541,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,4,8.166847683837585,8.027549557897276,0,1,0,-9,3,0,3,1.895519636193982,0,0,0,48,1,2,1,3,3,2019,1,2,26,12,38,43,15,1,12,1,0,11.78325632928977,11.78325632928977,0,0,0,0,0,0,0,0,0,0,0,0,4.05186319628204,1,26.23,62.53,3,1,0,0,2,5,1,702.5,0,0,0 +5199,6393,11541,11540,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,2,8.907956558961384,9.179621392644547,0,1,0,-9,3,0,-3,124.4628032333759,-9,0,0,51,1,4,1,-9,-9,2019,1,1,12,1,37,0,15,1,1,1,0,22.59927889351487,22.59927889351487,0,0,0,0,0,0,0,0,0,0,7.17081507553907,0,0,0,57.67,12.75,6,1,0,0,2,5,1,702.5,0,0,0 +5200,6394,11542,-9,11543,11544,7,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1161.314876253002,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,3,1,265,0,0,0 +5200,6394,11543,11544,-9,-9,6,1,0,33,1,0,1,0,1,-9,2,1,0,3,7.604640097535582,7.738777274675794,0,2,0,-9,7,0,-3,142.5352259166488,0,0,1,36,2,2,1,-9,-9,2019,1,3,31,10,32,35,15,1,10,1,0,8.580222122940048,8.580222122940048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52,2,3,0,1,8,3,1,265,0,0,0 +5200,6394,11544,11543,-9,-9,3,1,1,36,1,0,1,0,2,-9,1,1,0,2,7.631789142889036,7.357693972204245,0,2,0,-9,7,0,3,-152.3887753075594,0,0,0,33,1,3,1,1,1,2019,1,6,7,0,50,40,15,1,0,1,0,4.802606397361833,4.802606397361833,0,0,0,0,0,0,0,1,1,0,0,0,16.87429583945934,3,41.05,49.17,4,3,0,0,8,3,1,265,0,0,0 +5200,6395,11545,-9,-9,-9,5,1,0,31,2,0,1,0,1,-9,2,1,0,4,8.068928384917752,8.055884601567145,0,3,0,0,0,-9,0,-1043.4052584503,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,23,10,30,30,15,1,10,-9,1,18.48991362419176,18.48991362419176,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.34,64.59,5,3,0,0,8,5,1,2969,0,0,0 +5201,6396,11546,-9,11548,11549,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.7451130631706,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,4,5,1,812.5,0,0,0 +5201,6396,11547,-9,11548,11549,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.6537479807254,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,4,5,1,812.5,0,0,0 +5201,6396,11548,11549,-9,-9,2,1,0,32,1,1,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,11,0,-3,9.934119783674081,0,0,1,35,1,2,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,56.43,4,1,0,1,4,5,1,812.5,0,0,0 +5201,6396,11549,11548,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,2,9.181521217860597,9.095643832663153,0,2,0,-9,11,0,3,-31.5638994320947,0,0,0,32,1,5,3,2,2,2019,2,2,11,0,45,78,15,1,0,3,0,30.06729692870984,30.06729692870984,0,0,0,0,0,0,0,0,0,0,1.470867067827983,0,0,0,53.06,42.33,5,1,0,0,4,5,1,812.5,0,0,0 +5202,6397,11550,11551,-9,-9,2,1,0,51,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,5,0,-1,0,0,0,0,52,3,1,3,-9,-9,2019,4,1,12,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.99149655717882,2,48,49,5,1,1,1,6,1,0,356.5,0,0,0 +5202,6397,11551,11550,-9,-9,1,1,1,52,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,5,0,1,0,0,0,0,51,3,3,3,3,2,2019,4,2,29,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.9880786282361629,3,42.22,21.45,3,2,0,0,6,1,0,356.5,0,0,0 +5203,6398,11552,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,0,4.394685449102559,4.577996346280389,3,0,0,0,-9,0,-1083.740540151664,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,76.60850400855507,0,0,0,77.89157174534309,734.5457303181814,1,1,0,3.798257889881669,4.461105404632819,0,0,20.9,21.84,3,1,0,1,6,2,1,434,0,0,0 +5204,6399,11553,11554,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,3,0,6.948790491763995,7.009858044273547,1,0,-9,35,0,-5,61.689321765691,0,0,0,62,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.166885008509985,6.965558519252504,15.35701505535859,2,58.32,50.22,6,1,0,0,1,2,1,220,0,0,0 +5204,6399,11554,11553,-9,-9,1,1,0,62,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,35,0,5,147.999016170294,0,0,0,57,2,3,3,3,3,2019,4,2,13,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.665407965724275,0,26.02188410256501,3,38.01,34.13,4,1,0,0,1,2,1,220,0,0,0 +5205,6400,11555,11557,-9,-9,2,1,1,82,1,0,2,0,2,-9,4,3,0,3,0,7.60398640825628,7.260967941161908,2,0,-9,9,0,25,36.63060574635639,0,0,0,57,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.446674839892908,0,0,54,46,6,1,0,0,13,3,1,294.75,0,0,0 +5205,6400,11556,-9,11557,11555,4,1,1,17,2,0,2,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-893.1199225391351,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,52.13,6,1,0,0,13,3,1,294.75,0,0,0 +5205,6400,11557,11555,-9,-9,1,1,0,57,1,0,2,0,2,-9,6,3,0,3,7.815175680582682,7.90913090860636,0,2,0,-9,19,0,-25,-27.5498016390281,0,0,0,82,2,3,3,3,2,2019,4,2,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.047907577279222,0,0,3,52.22,53.26,6,1,0,0,13,3,1,294.75,0,0,0 +5205,6400,11558,-9,11557,11555,5,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1011.074809363091,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,13,3,1,294.75,0,0,0 +5205,6401,11559,-9,11557,11555,3,1,1,23,2,0,2,0,2,-9,2,1,0,3,7.848296912989395,7.883139611180634,0,3,0,0,0,-9,0,-963.5266419315661,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,57,15,1,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.011340426003257,0,0,0,48.45,57.49,1,1,0,0,13,3,1,975,0,0,0 +5206,6402,11560,11561,-9,-9,1,1,1,43,1,0,2,0,1,-9,1,1,0,5,9.389677325595851,8.761877192349115,0,2,0,-9,21,0,0,28.28361466920575,0,0,0,43,1,2,1,2,2,2019,1,2,18,6,45,0,15,1,6,1,0,26.89106317422333,26.89106317422333,0,0,0,0,0,0,0,0,0,0,2.99499661495652,0,0,0,53.41,53.98,3,1,0,0,9,5,1,1461.75,0,0,0 +5206,6402,11561,11560,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,2,9.527254118894314,9.343364336487703,0,2,0,-9,21,0,0,-79.25248460542731,0,0,1,43,1,5,1,2,1,2019,1,1,18,6,45,42,15,1,6,1,0,29.24944269879324,29.24944269879324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.3,59.44,3,1,0,0,9,5,1,1461.75,0,0,0 +5206,6402,11562,-9,11561,11560,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.2870275560198,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,9,5,1,1461.75,0,0,0 +5206,6402,11563,-9,11561,11560,3,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1057.559291872264,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,9,5,1,1461.75,0,0,0 +5207,6403,11564,11565,-9,-9,1,1,1,56,1,0,1,0,1,-9,2,1,0,5,9.041815139851378,8.932197372092581,0,2,0,-9,8,0,-1,17.00432502516603,0,0,0,57,2,2,3,2,1,2019,2,2,6,0,60,60,15,1,0,3,0,18.63069768948642,18.63069768948642,0,0,0,0,0,0,0,1,1,0,3.872149012907852,0,0,3,57.06,57.76,6,1,0,0,9,4,1,502.3333333333333,0,0,0 +5207,6403,11565,11564,-9,-9,2,1,0,57,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,32,0,1,-38.98657852609814,0,0,0,56,1,5,1,2,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.91566692561863,3,64.57000000000001,15.32,6,1,0,0,9,4,1,502.3333333333333,0,0,0 +5207,6403,11566,-9,11565,11564,6,1,1,17,2,0,1,1,2,0,7,2,0,5,6.920100767780915,6.652680599322204,0,2,0,0,0,-9,0,-1011.944841704711,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,20,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.51,59.41,3,1,0,0,9,4,1,502.3333333333333,0,0,0 +5207,6404,11567,-9,11565,11564,3,1,0,26,2,0,1,0,2,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-1103.743448468794,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,1,0,0,9,1,1,404,0,0,0 +5207,6405,11568,-9,11565,11564,4,1,0,23,2,0,1,0,2,-9,2,1,0,4,6.462336659810824,6.457083896842033,0,3,0,0,0,-9,0,-1111.85194326793,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,40,38,15,1,2,-9,1,2.486670377877856,2.486670377877856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,2,1,451,0,0,0 +5207,6406,11569,-9,11565,11564,5,1,0,20,2,0,1,1,2,0,7,2,0,2,6.658153289365413,6.462373870525234,0,3,0,0,0,-9,0,-1046.498654495354,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,17,5,10,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.84,20.72,3,1,0,1,9,2,1,922,0,0,0 +5208,6407,11570,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,2,8.147827077912785,8.405314691916882,0,3,0,0,0,-9,0,-1044.392776094905,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,40,40,15,1,1,-9,0,11.36199322482853,11.36199322482853,0,0,0,0,0,0,0,1,1,0,.6976539442210099,0,3.720919044325138,3,42.58,40.13,5,1,0,0,10,4,0,178,0,0,0 +5209,6408,11571,11574,-9,-9,4,1,1,51,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,5,0,3,17.63712416037851,0,0,0,48,2,3,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.15,40.86,6,4,1,1,8,3,0,562.75,0,0,0 +5209,6408,11572,-9,11574,11571,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.087707781076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,3,0,562.75,0,0,0 +5209,6408,11573,-9,11574,11571,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1114.42577299719,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,3,0,562.75,0,0,0 +5209,6408,11574,11571,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,8.452789141281269,8.176171825635075,0,2,0,-9,5,0,-3,32.45679200446291,0,0,0,51,2,4,3,3,2,2019,2,4,14,2,35,35,15,1,2,3,0,12.45758995853969,12.45758995853969,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,57.56,3,4,0,1,8,3,0,562.75,0,0,0 +5210,6409,11575,11576,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,10,0,0,-36.92586912219021,0,0,0,70,1,2,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.863642513870366,0,0,0,57.06,57.76,6,1,0,0,12,3,1,567.5,0,0,0 +5210,6409,11576,11575,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,8.101221010920534,8.456970691316309,1,0,-9,10,0,0,9.293958198809374,0,0,0,70,1,5,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.78685910930101,8.14870715647864,0,0,55.2,49.4,6,1,0,0,12,3,1,567.5,0,0,0 +5211,6410,11577,11579,-9,-9,1,1,1,56,1,0,1,0,3,-9,2,1,0,4,6.599983119782436,6.06587440907817,0,2,0,-9,31,0,2,51.08875935100681,0,0,0,54,2,4,1,3,3,2019,1,2,7,0,38,38,15,1,0,1,0,1.659022959025282,1.659022959025282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,56.45,6,1,0,0,13,3,1,572,0,0,0 +5211,6410,11578,-9,11579,11577,6,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-896.4621741356602,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,3,1,572,0,0,0 +5211,6410,11579,11577,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,4,8.308147169367079,7.93924706846551,0,2,0,-9,31,0,-2,84.42339623533825,0,0,0,56,3,4,1,3,3,2019,1,1,6,0,42,42,15,1,0,1,0,7.424746152014148,7.424746152014148,0,0,0,0,0,0,0,1,1,0,0,0,123.7332386675046,3,50.48,56.4,2,1,0,0,13,3,1,572,0,0,0 +5211,6411,11580,-9,11579,11577,3,1,1,27,2,0,1,0,2,-9,2,1,0,3,7.914908716565727,7.732069722678068,0,3,0,0,0,-9,0,-1065.475830391345,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,38,37,15,1,1,-9,1,8.150502534371618,8.150502534371618,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.78,39.96,5,1,0,0,13,3,1,311,0,0,0 +5211,6412,11581,-9,11579,11577,4,1,1,25,2,0,1,0,2,-9,2,1,0,5,8.369084749391437,7.952242799449817,0,3,0,0,0,-9,0,-995.9839999867788,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,42,45,15,1,0,-9,1,10.21981522678539,10.21981522678539,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,968,0,0,0 +5211,6413,11582,-9,11579,11577,5,1,0,21,2,0,1,0,1,-9,2,1,0,3,7.162783647659109,7.266748104362878,0,3,0,0,0,-9,0,-988.9706778862418,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,25,9,20,12,15,1,9,-9,1,8.639927251490123,8.639927251490123,0,0,0,0,0,0,0,1,1,0,0,0,7.744340225454057,3,24.7,55.22,5,1,0,0,13,2,1,1007,0,0,0 +5212,6414,11583,-9,11584,11587,2,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.475048712759,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,0,503.8,0,0,0 +5212,6414,11584,11587,-9,-9,1,1,0,46,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,4,0,-2,-125.7695031105763,0,0,0,48,2,4,1,2,2,2019,3,5,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,5,0,0,12,4,0,503.8,0,0,0 +5212,6414,11585,-9,11584,11587,3,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1095.009474920132,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,12,4,0,503.8,0,0,0 +5212,6414,11586,-9,11584,11587,4,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.1167110385635,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,12,4,0,503.8,0,0,0 +5212,6414,11587,11584,-9,-9,5,1,1,48,1,0,3,0,2,-9,2,1,0,4,9.140164750439759,8.855866523545943,0,2,0,-9,4,0,2,4.981235027229673,0,0,0,46,1,5,3,-9,-9,2019,2,1,9,0,45,45,15,1,1,3,0,26.1608527986048,26.1608527986048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,12,4,0,503.8,0,0,0 +5213,6415,11588,11589,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,3,0,0,0,1,0,-9,5,0,6,0,0,0,0,56,2,1,1,3,3,2019,1,2,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,3,0,0,7,1,1,1328,0,0,0 +5213,6415,11589,11588,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,1,0,0,0,1,0,-9,5,0,-6,0,0,0,0,62,1,3,1,-9,-9,2019,1,1,18,6,0,0,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.190389206154204,0,0,0,37.59,22.34,4,3,0,0,7,1,1,1328,0,0,0 +5214,6416,11590,11591,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.291325510056261,8.402711354926998,0,1,0,-9,8,0,3,2.009879168950388,0,0,0,47,2,4,1,2,2,2019,1,2,12,0,48,46,15,1,0,1,0,9.534668215061105,9.534668215061105,0,0,0,0,0,0,0,0,0,0,7.555321795836262,0,0,0,46.93,51.35,5,1,0,0,9,5,1,264.5,0,0,0 +5214,6416,11591,11590,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.688605681105468,8.843050941721051,0,1,0,-9,8,0,-3,-18.85259316264723,0,0,0,50,2,4,1,2,2,2019,1,1,16,6,37,36,15,1,6,1,0,19.77316464781678,19.77316464781678,0,0,0,0,0,0,0,0,0,0,4.057027443676581,0,0,0,50.77,46.67,5,1,0,0,9,5,1,264.5,0,0,0 +5215,6417,11592,11593,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,5,8.141135461603632,8.220453686410238,0,1,0,1,1,-9,-4,-5.39347858943332,0,1,0,28,1,5,1,1,1,2019,1,2,6,0,47,45,15,1,0,1,0,12.08808164528634,12.08808164528634,0,0,0,0,0,0,0,0,0,0,.9719395232943417,0,0,0,57.06,57.76,6,1,0,0,10,5,0,500,0,0,0 +5215,6417,11593,11592,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.454475504466924,8.60776538562193,0,1,0,-9,1,-9,4,81.80810111167295,-9,1,1,24,1,5,1,-9,-9,2019,1,1,6,0,57,0,15,1,0,1,0,8.880086089056535,8.880086089056535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,10,5,0,500,0,0,0 +5216,6418,11594,11595,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,6.848327200485818,6.666567788050966,1,0,-9,10,0,5,32.58541029362522,0,0,0,68,3,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.287480581341182,6.733449184631078,4.30738282917633,1,41.42,40.89,6,1,0,0,2,2,1,498,0,0,0 +5216,6418,11595,11594,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,10,0,-5,38.06514673250847,0,0,0,73,3,2,3,-9,-9,2019,4,1,30,12,0,0,15,4,12,4,0,0,0,1,0,8.082460088878966,3.569619080226301,0,0,0,1,1,0,0,0,0,0,21.43,21.57,3,1,0,0,2,2,1,498,0,0,0 +5217,6419,11596,-9,11597,11598,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1025.608188045247,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,2,1,671.25,0,0,0 +5217,6419,11597,11598,-9,-9,1,1,0,34,1,1,4,0,2,-9,1,1,0,5,5.686480889900032,5.698452740245474,0,2,0,-9,9,0,-3,115.3823341966745,0,0,1,37,3,5,1,2,3,2019,1,2,5,0,10,35,15,1,0,1,0,3.65934747900854,3.65934747900854,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,2,1,671.25,0,0,0 +5217,6419,11598,11597,-9,-9,2,1,1,37,1,1,4,0,3,-9,2,1,0,5,7.847098669930508,7.784579195090508,0,2,0,-9,9,0,3,-29.74681654328131,0,0,0,34,2,5,1,-9,-9,2019,1,1,10,1,56,30,15,1,1,1,0,6.120358486232893,6.120358486232893,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,7,1,0,0,13,2,1,671.25,0,0,0 +5217,6419,11599,-9,11597,11598,5,1,1,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.9137468676859,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,2,1,671.25,0,0,0 +5218,6420,11600,-9,-9,-9,1,1,1,31,3,0,0,0,2,-9,2,1,0,3,8.185332986786428,8.2870281478877,0,3,0,-9,0,-9,0,-933.9396096645795,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.23,31.53,3,1,0,0,2,4,1,755,0,0,0 +5219,6421,11601,11602,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.696936757824741,9.773207417796812,0,2,0,-9,14,0,-1,45.49957771910901,0,0,0,47,1,4,1,-9,-9,2019,1,1,9,0,45,60,15,1,1,1,0,39.67647232211393,39.67647232211393,0,0,0,0,0,0,0,0,0,0,5.71736381443171,0,0,0,53,55,6,1,0,0,8,5,1,530.5,0,0,0 +5219,6421,11602,11601,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,8.926502084731968,9.303084796040148,0,2,0,-9,14,0,1,45.55293629648246,0,0,0,46,1,4,1,2,2,2019,1,2,10,0,30,50,15,1,1,1,0,44.4986264703581,44.4986264703581,0,0,0,0,0,0,0,0,0,0,8.167831482188562,0,0,0,51,54,6,1,0,0,8,5,1,530.5,0,0,0 +5219,6421,11603,-9,11602,11601,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1133.082662584011,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,5,1,0,0,8,5,1,530.5,0,0,0 +5219,6421,11604,-9,11602,11601,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.702599308689,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,530.5,0,0,0 +5220,6422,11605,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,5,8.738862963108065,8.766171704829244,0,3,0,-9,0,-9,0,-954.9993043618504,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,43,0,15,1,0,-9,0,21.45990656462987,21.45990656462987,0,0,0,0,0,0,0,1,1,0,7.891158641514703,0,0,0,59.43,58.05,7,1,0,0,9,5,1,206,0,0,0 +5221,6423,11606,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,5,7.124472669103911,7.195861092971398,0,3,0,0,0,-9,0,-945.6393091578137,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,8,12,15,1,0,-9,0,18.11188740012343,18.11188740012343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,1,2,1,1829,0,0,0 +5222,6424,11607,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,1,1,0,2,6.831854361002099,6.695706806510501,0,3,0,0,0,-9,0,-1045.162376810121,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,35,40,15,1,0,-9,0,3.253488437279491,3.253488437279491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,46.59,6,1,0,1,10,2,0,2016,0,0,0 +5223,6425,11608,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-998.3371872903037,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.26,16.16,2,4,0,1,8,1,0,1716.5,0,0,0 +5223,6425,11609,-9,11608,-9,4,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1038.667374383638,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,1,0,1716.5,0,0,0 +5223,6426,11610,-9,11608,-9,2,1,0,27,2,0,1,0,1,-9,1,1,0,1,7.257585580149199,7.588908897527181,0,3,0,0,0,-9,0,-972.2801326116817,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,2,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.37,23.61,4,4,0,1,8,3,0,1039,0,0,0 +5223,6427,11611,-9,11608,-9,3,1,0,20,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1017.545603419648,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.825577228225377,3,32.07,43.28,5,4,0,1,8,1,0,814,0,0,0 +5224,6428,11612,11613,-9,-9,1,1,0,21,1,0,0,1,2,0,7,2,0,5,0,0,0,1,0,1,1,-9,-1,0,-9,1,1,22,1,5,3,2,2,2019,4,2,11,0,0,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.76,56.93,6,1,0,0,2,1,0,467,0,0,0 +5224,6428,11613,11612,-9,-9,2,1,1,22,1,0,0,0,1,-9,3,3,0,5,0,0,0,1,0,-9,1,-9,1,0,-9,1,0,21,2,5,2,-9,-9,2019,4,1,19,8,0,0,15,3,8,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,63.22,5,2,1,0,2,1,0,467,0,0,0 +5225,6429,11614,11615,-9,-9,2,1,0,30,1,0,0,0,2,-9,1,1,0,4,7.832652681901512,7.793544118375632,0,1,0,-9,7,0,3,13.74362008890006,0,0,1,27,1,3,1,2,2,2019,1,1,11,0,16,13,15,1,0,1,0,17.41309647954745,17.41309647954745,0,0,0,0,0,0,0,1,1,0,2.721261320364503,0,4.934851557472816,1,43.67,61.06,5,1,0,0,8,3,0,610,0,0,0 +5225,6429,11615,11614,-9,-9,1,1,1,27,1,0,0,0,1,-9,1,1,0,3,6.700949809931463,6.590470534009217,0,1,0,-9,7,0,-3,17.16349735973649,-9,1,0,30,2,4,1,2,2,2019,1,2,12,1,21,0,15,1,1,1,0,4.289087940188533,4.289087940188533,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.54,34.08,3,1,0,1,8,3,0,610,0,0,0 +5226,6430,11616,-9,11617,11618,3,1,0,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-924.6036566454721,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.28,65.08,4,1,0,0,8,5,1,229.75,0,0,0 +5226,6430,11617,11618,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,8.816204160925674,9.117818671775522,0,2,0,-9,26,0,-3,124.4768165321855,0,0,0,50,1,5,1,2,1,2019,1,2,13,4,27,24,15,1,4,1,0,24.09046754097312,24.09046754097312,0,0,0,0,0,0,0,0,0,0,0,0,6.392022965077173,3,51.47,53.17,6,1,0,0,8,5,1,229.75,0,0,0 +5226,6430,11618,11617,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,5,9.553701366164614,9.734390533284015,0,2,0,-9,26,0,3,56.49690290490563,0,0,0,47,1,4,1,2,2,2019,1,1,2,0,50,55,15,1,0,1,0,37.01916281563474,37.01916281563474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,8,5,1,229.75,0,0,0 +5226,6430,11619,-9,11617,11618,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.757589639235,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,229.75,0,0,0 +5227,6431,11620,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,3,0,5.72751803232695,6.059146970088851,3,0,0,0,-9,0,-919.4489987006125,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.009744932594862,0,0,62.66,52.4,7,4,0,0,8,2,1,373,0,0,0 +5228,6432,11621,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,2,0,5.921118824832843,6.183547135013509,3,0,0,0,-9,0,-893.1715556732757,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.427210344154449,6.298082727011098,0,0,59.15,44.82,7,1,0,0,2,2,1,2176,0,0,0 +5229,6433,11622,-9,-9,-9,1,1,1,76,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1051.302868150562,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,28.73,26.44,3,1,0,1,6,1,0,193,0,0,0 +5230,6434,11623,11624,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,40,0,-3,-77.11242540330352,0,0,0,72,2,2,3,-9,2,2019,4,1,11,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,44.23,55.04,6,1,0,0,6,2,1,469.5,0,0,0 +5230,6434,11624,11623,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,7.097910672676331,7.215243609780631,1,0,-9,40,0,3,-35.69654603380627,0,0,0,69,2,4,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,2.988287791055327,3.615320857559797,0,0,4.917734123678162,35.04253590916223,1,1,0,0,7.08549631540721,0,0,56.22,16.34,6,1,0,0,6,2,1,469.5,0,0,0 +5231,6435,11625,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-982.3677099759833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,39.49,3,3,0,0,2,1,0,624,0,0,0 +5232,6436,11626,-9,11628,11627,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.0109166817595,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,551.6666666666666,0,0,0 +5232,6436,11627,11628,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,4,8.431663310359752,8.70428428330664,6.941231392050232,2,0,-9,12,0,1,-50.8829297060468,0,0,0,39,1,4,1,2,1,2019,1,1,9,1,37,37,15,1,1,1,0,13.29667336732086,13.29667336732086,0,0,0,0,0,0,0,1,1,0,7.380530727780813,0,1.580712099854863,3,47.49,55.02,6,1,0,0,6,5,1,551.6666666666666,0,0,0 +5232,6436,11628,11627,-9,-9,1,1,0,39,1,0,1,0,1,-9,2,1,0,4,8.674729214082506,8.668564929885919,0,2,0,-9,14,0,-1,-60.9025350910994,0,0,1,40,1,4,1,2,2,2019,1,2,10,0,37,53,15,1,0,1,0,21.98146656021659,21.98146656021659,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,5,1,0,0,6,5,1,551.6666666666666,0,0,0 +5233,6437,11629,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,3,8.102474361233194,8.256498696035182,0,3,0,0,0,-9,0,-1129.590180932274,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,37,15,1,0,-9,0,12.73843506669255,12.73843506669255,0,0,0,0,0,0,0,0,0,0,0,0,1.754612383875017,3,63.26,42.53,6,4,0,0,4,4,0,1080,0,0,0 +5234,6438,11630,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1001.851892803415,1,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.531584591240193,3,62.03,36.18,6,4,0,0,4,1,0,551,0,0,0 +5234,6438,11631,-9,11630,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-846.6401879474762,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,2,0,0,4,1,0,551,0,0,0 +5234,6439,11632,-9,11630,-9,3,1,0,20,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-893.6438940157042,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,4,1,0,618,0,0,0 +5235,6440,11633,-9,11635,11637,6,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.329918843588,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,813,0,0,0 +5235,6440,11634,-9,11635,11637,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.166389539903,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,3,1,813,0,0,0 +5235,6440,11635,11637,-9,-9,2,1,0,40,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-6,-57.59888732691041,0,0,1,46,3,3,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,6,3,0,0,8,3,1,813,0,0,0 +5235,6440,11636,-9,11635,11637,5,1,1,17,2,0,3,1,3,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-998.50263696064,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.65,65.37,3,3,0,0,8,3,1,813,0,0,0 +5235,6440,11637,11635,-9,-9,1,1,1,46,1,0,3,0,3,-9,2,1,0,3,8.479683381887897,9.0469802815064,0,2,0,-9,24,0,6,-45.37344031065972,0,0,0,40,2,4,3,3,3,2019,2,2,12,0,48,43,15,1,0,3,0,17.38660193585244,17.38660193585244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.28,57.07,6,3,0,0,8,3,1,813,0,0,0 +5235,6441,11638,-9,11635,11637,3,1,0,20,2,0,3,0,1,1,2,1,0,4,7.43883735077513,7.52080504431645,0,3,0,0,0,-9,0,-1005.919148333178,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,53,0,15,1,2,-9,1,4.356322422353482,4.356322422353482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,3,1,473,0,0,0 +5236,6442,11639,11640,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,2,7.341291674412583,7.521139478862968,0,1,0,-9,10,0,2,117.978326820248,0,0,0,48,2,3,1,-9,-9,2019,1,2,16,3,40,0,15,1,3,1,0,4.887592598301531,4.887592598301531,0,0,0,0,0,0,0,0,0,0,2.567194281854042,0,0,0,44,40,3,1,0,1,6,3,0,1605,0,0,0 +5236,6442,11640,11639,-9,-9,2,1,0,48,1,0,0,0,2,-9,1,1,0,3,6.752807036788212,7.091658894532906,0,1,0,-9,10,0,-2,14.4078573924772,0,0,0,50,2,2,1,2,2,2019,1,1,18,6,35,25,15,1,6,1,0,4.376554681792532,4.376554681792532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.15,49.04,3,1,0,1,6,3,0,1605,0,0,0 +5236,6443,11641,-9,11640,11639,3,1,0,19,2,0,0,0,2,-9,2,1,0,4,6.337602460482449,6.024010019687223,0,3,0,0,0,-9,0,-1001.509494931264,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,15,25,15,1,0,-9,1,4.444295860431217,4.444295860431217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,3,1,0,1,6,2,0,662,0,0,0 +5237,6444,11642,11645,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,4,8.883820525656626,8.517946622692744,0,2,0,-9,7,0,2,-71.68097066150669,0,0,0,34,2,4,3,2,2,2019,2,1,13,1,45,45,15,1,1,3,0,15.17149488077825,15.17149488077825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,1,0,0,7,3,1,1050,0,0,0 +5237,6444,11643,-9,11645,11642,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.9011768753169,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,3,1,1050,0,0,0 +5237,6444,11644,-9,11645,11642,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.5056427839352,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,1,1050,0,0,0 +5237,6444,11645,11642,-9,-9,1,1,0,34,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-2,42.14655840142647,0,0,1,36,2,4,1,2,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.3,57.54,6,1,0,0,7,3,1,1050,0,0,0 +5238,6445,11646,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,4.515206237037511,4.514698609577199,3,0,-9,0,1,0,-1007.284641668793,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.765875266951806,0,0,54.39,25.18,4,1,0,0,4,2,1,1155,0,0,0 +5239,6446,11647,11648,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.14227617878583,8.098188034132381,0,1,0,-9,5,0,4,38.06713784541285,0,0,0,27,1,3,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,8.75276732582536,8.75276732582536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,2,4,1,512,0,0,0 +5239,6446,11648,11647,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,3,7.204944588873478,7.249985504144068,0,1,0,-9,5,0,-4,-26.39408033930305,0,1,1,31,1,4,1,-9,-9,2019,1,1,11,1,29,37,15,1,1,1,0,5.846595805904531,5.846595805904531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,6,1,0,0,2,4,1,512,0,0,0 +5240,6447,11649,-9,11650,11651,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.5972717109987,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,4,0,305,0,0,0 +5240,6447,11650,11651,-9,-9,2,1,0,27,1,0,1,0,1,-9,2,1,0,4,7.538330389465814,7.126588653209749,0,2,0,-9,7,0,0,25.87514514000872,0,1,1,27,2,3,1,1,2,2019,1,1,9,1,30,40,15,1,1,1,0,7.684845113611777,7.684845113611777,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,1,0,0,10,4,0,305,0,0,0 +5240,6447,11651,11650,-9,-9,1,1,1,27,1,0,1,0,2,-9,2,1,0,3,7.95991894652493,8.219274084833117,0,2,0,-9,7,0,0,-99.3289793523173,0,1,0,27,1,4,1,1,-9,2019,1,2,4,0,50,45,15,1,0,1,0,7.250173049496649,7.250173049496649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.57,34.27,6,1,0,0,10,4,0,305,0,0,0 +5241,6448,11652,11653,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.118795551251283,8.120041276037234,0,1,0,-9,6,0,-1,88.32479471998822,0,0,0,62,2,2,1,3,3,2019,1,1,8,0,40,40,15,1,0,1,0,10.01647421914781,10.01647421914781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,13,4,1,429,0,0,0 +5241,6448,11653,11652,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.182528103174462,8.091365425271414,0,1,0,-9,6,0,1,-20.3923762312746,0,0,0,61,2,4,1,2,3,2019,1,2,11,0,20,21,15,1,0,1,0,16.6026754992206,16.6026754992206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.09,30.13,5,1,0,0,13,4,1,429,0,0,0 +5242,6449,11654,11655,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,20,0,10,84.8298815534835,0,0,0,57,2,1,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.062896960390241,0,0,0,57.16,56.15,6,1,0,0,7,5,1,1195,0,0,0 +5242,6449,11655,11654,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,1,8.844599202983508,8.609135339553958,5.168464259487902,1,0,-9,20,0,-10,116.9708452497501,0,0,0,67,2,4,3,2,2,2019,2,2,10,0,41,41,15,1,0,4,0,21.94598840556911,21.94598840556911,0,0,0,0,0,0,0,1,1,0,0,5.407875650426551,0,0,48.65,18.5,3,1,0,1,7,5,1,1195,0,0,0 +5243,6450,11656,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,5,8.637446479892722,8.579613166063087,0,3,0,0,0,-9,0,-1063.029147021643,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,24,23,15,1,0,-9,0,29.28982448267751,29.28982448267751,0,0,0,0,0,0,0,1,1,0,2.241172773107314,0,0,0,49.02,58.89,6,1,0,0,5,5,0,236,0,0,0 +5243,6451,11657,-9,11656,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,4,8.070551352557263,8.145437139823699,0,3,0,0,0,-9,0,-865.2941135372571,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,40,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,2,0,0,5,4,0,755,0,0,0 +5244,6452,11658,11659,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,7.630095971296856,7.922793401300358,0,1,0,-9,6,0,14,102.4019858456908,0,0,0,36,1,4,1,2,2,2019,1,2,20,8,32,32,15,1,8,1,0,8.757184644484681,8.757184644484681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.14,48.22,3,1,0,0,10,5,0,356,0,0,0 +5244,6452,11659,11658,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,4,9.631150763386769,9.77760292527242,0,1,0,-9,6,0,-14,-113.4921027222675,0,0,1,50,2,3,1,-9,-9,2019,1,1,7,2,45,32,15,1,2,1,0,40.39969212347316,40.39969212347316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.5,28.51,6,1,0,0,10,5,0,356,0,0,0 +5245,6453,11660,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,4,7.543588202583613,7.64293546590438,0,3,0,0,0,-9,0,-1109.448117691803,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,33,32,15,1,0,-9,0,7.025056772888286,7.025056772888286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,6,1,0,0,2,3,1,176,0,0,0 +5246,6454,11661,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,5,8.427387390364549,8.855898374706035,0,3,0,0,0,-9,0,-944.2063353648255,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,35,43,15,1,1,-9,0,18.45821504201613,18.45821504201613,0,0,0,0,0,0,0,1,1,0,6.941220295031114,0,0,0,43.38,62.58,7,1,0,0,2,5,1,258,0,0,0 +5247,6455,11662,11663,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.493567067582156,7.237887165680153,0,1,0,-9,37,0,-1,64.92764566799495,0,0,0,64,3,3,3,-9,-9,2019,2,2,9,1,55,8,15,1,1,4,0,3.940512373871143,3.940512373871143,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.13,48.04,5,1,0,0,12,2,1,171.5,0,0,0 +5247,6455,11663,11662,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,37,0,1,-41.03458133724619,0,0,0,63,2,3,1,2,2,2019,3,1,9,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.486694050639339,0,0,0,45,51.17,6,1,0,0,12,2,1,171.5,0,0,0 +5248,6456,11664,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,2,0,6.881496524308456,7.169823175181953,3,0,0,0,-9,0,-999.4200175886873,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.963032729465596,0,0,59.71,26.95,6,1,0,0,4,2,0,210,0,0,0 +5249,6457,11665,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,4,8.677965339259368,8.639968341088631,0,3,0,-9,0,0,0,-1055.200763139391,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,42,15,1,0,-9,0,16.97273215757255,16.97273215757255,0,0,0,0,0,0,0,1,1,0,3.42272398606908,0,0,0,57.16,56.15,6,1,0,0,9,5,1,558,0,0,0 +5250,6458,11666,-9,-9,-9,1,1,0,20,2,0,0,1,1,0,7,2,0,3,6.185668121472287,8.112808007723642,7.674878103176265,3,0,0,0,-9,0,-1050.15775541839,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,11,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.795178705359042,0,0,0,40.73,47.29,4,1,0,0,8,3,0,1330,0,0,0 +5251,6459,11667,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,1,0,6.428472286794686,6.382930751630894,3,0,-9,0,-9,0,-957.8840468756805,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,23.4248394443998,0,8.316760375507524,0,0,265.3818822085357,1,1,0,0,6.04332029775343,0,0,44.51,16.42,3,4,0,0,6,2,0,445,0,0,0 +5252,6460,11668,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,2,0,7.032148836114891,6.666243063848923,3,0,0,0,-9,0,-858.8336736158142,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.316185330259387,6.99801446596487,0,0,49.83,21.79,5,1,0,0,10,2,1,244,0,0,0 +5253,6461,11669,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-942.4381706196885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,7,-9,0,0,0,1,8.500512051212224,0,0,0,0,47.51795174704461,1,1,0,.3920921866712141,0,0,0,43.43,18.29,1,1,0,1,10,1,0,215,0,0,0 +5254,6462,11670,-9,-9,-9,1,1,0,62,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-984.760898701487,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,6,1,1,0,8,1,0,769,0,0,0 +5254,6463,11671,-9,11670,-9,2,1,1,21,3,0,0,0,2,-9,2,1,0,5,8.181496075790374,8.247079056777185,0,3,0,0,0,-9,0,-1067.238328919744,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,41,24,15,1,0,-9,1,11.4174019255539,11.4174019255539,0,0,0,0,0,0,0,1,1,0,0,0,19.32771757392275,3,62.39,56.71,6,1,0,0,8,4,0,135,0,0,0 +5255,6464,11672,11673,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,2,7.708974629481351,7.645634069875529,0,2,0,-9,31,0,0,71.8675978220281,0,0,0,55,3,4,1,3,3,2019,1,1,15,3,36,30,15,1,3,1,0,5.877142099697285,5.877142099697285,0,0,0,0,0,0,0,1,1,0,2.184379705591705,0,13.8738545450429,3,37.02,31.83,3,1,0,1,9,4,1,313.5,0,0,0 +5255,6464,11673,11672,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,4,8.387064344348527,8.44954294083923,0,2,0,-9,29,0,0,19.01862108932347,0,0,0,55,2,2,1,2,2,2019,1,2,12,0,44,42,15,1,0,1,0,12.63785755087697,12.63785755087697,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.98,51.13,5,1,0,0,9,4,1,313.5,0,0,0 +5255,6465,11674,-9,11672,11673,3,1,1,18,2,0,1,0,2,1,3,3,0,3,5.396388173015962,4.746916545889308,0,3,0,0,0,-9,0,-1122.050081121633,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.05,55.75,3,1,1,0,9,4,1,383,0,0,0 +5256,6466,11675,-9,-9,-9,1,1,1,26,3,0,0,0,1,-9,2,1,0,2,7.793237428579709,7.836817853340565,0,3,0,-9,0,1,0,-887.0781770566667,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,13.12475125380486,13.12475125380486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.39,52.89,5,1,0,0,12,4,0,826,0,0,0 +5256,6467,11676,-9,-9,-9,2,1,0,21,3,0,0,1,2,-9,7,2,0,2,0,3.759205684880369,3.931407968468814,3,0,-9,0,1,0,-996.1524573934745,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.030263901770852,0,0,0,27.39,43.37,5,1,0,0,12,2,0,2496,0,0,0 +5257,6468,11677,11678,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,6.778885636606525,6.999650178289852,1,0,-9,9,0,0,120.0117958140822,0,0,0,65,3,4,3,3,3,2019,4,2,5,0,0,39,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.542224071731981,6.974273504623804,0,0,58.15,52.91,7,1,0,0,5,2,1,393.5,0,0,0 +5257,6468,11678,11677,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,9,0,0,-26.48626091539434,0,0,0,65,2,4,3,2,3,2019,4,1,11,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.790321421934236,0,0,0,51.83,57.2,6,1,0,0,5,2,1,393.5,0,0,0 +5258,6469,11679,11681,-9,-9,3,1,0,33,1,1,2,0,2,-9,2,1,0,4,6.874012382049931,6.846769457896055,0,2,0,-9,2,0,-13,-35.98365755789072,-9,0,1,46,2,3,1,-9,-9,2019,1,1,9,0,16,0,15,1,0,1,0,9.411072792294199,9.411072792294199,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.66,43.6,5,1,0,0,13,3,1,1404.333333333333,0,0,0 +5258,6469,11680,-9,11679,11681,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.025202221986,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,13,3,1,1404.333333333333,0,0,0 +5258,6469,11681,11679,-9,-9,1,1,1,46,1,1,2,0,2,-9,2,1,0,3,7.599003044724698,7.584343814255652,0,2,0,-9,2,0,13,-129.5695572065543,0,0,0,33,2,4,1,-9,-9,2019,1,3,10,0,20,20,15,1,0,1,0,10.94796430824658,10.94796430824658,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.97,53.97,6,1,0,0,13,3,1,1404.333333333333,0,0,0 +5259,6470,11682,-9,11684,11685,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.3976968383098,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,2,0,0,6,2,0,2380.2,0,0,0 +5259,6470,11683,-9,11684,11685,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.095499630133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,6,2,0,2380.2,0,0,0 +5259,6470,11684,11685,-9,-9,1,1,0,30,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-7,89.5695356328626,0,0,1,37,2,3,1,-9,-9,2019,3,4,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.89656477333545,3,50.48,52.79,2,2,0,0,6,2,0,2380.2,0,0,0 +5259,6470,11685,11684,-9,-9,4,1,1,37,1,1,3,0,2,-9,2,1,0,3,7.31834666876079,7.434469725687445,0,2,0,-9,3,0,7,-113.7442617981692,-9,0,0,30,2,4,3,-9,-9,2019,2,1,6,0,40,0,15,1,0,3,0,3.829090208152941,3.829090208152941,0,0,0,0,0,0,0,1,1,0,0,0,20.48607620449841,3,66.34999999999999,41.08,6,1,0,0,6,2,0,2380.2,0,0,0 +5259,6470,11686,-9,11684,11685,2,1,1,11,2,1,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1005.826318164005,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,2,0,0,6,2,0,2380.2,0,0,0 +5260,6471,11687,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,5,8.417327898418328,8.563862685713145,0,3,0,0,0,-9,0,-957.9169937659915,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,55,37,15,1,1,-9,0,11.05408265739109,11.05408265739109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,6,1,0,0,13,5,1,1489,0,0,0 +5261,6472,11688,11689,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,2,7.706260289784482,8.007067833784015,5.817387910748055,1,0,-9,29,0,5,116.2749572739575,0,0,0,50,2,4,1,2,2,2019,1,2,9,2,30,29,15,1,2,1,0,10.62825350459512,10.62825350459512,0,0,0,0,0,0,0,1,1,0,0,5.868660098185265,0,0,57.26,33.77,6,1,0,0,1,5,0,879.5,0,0,0 +5261,6472,11689,11688,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.458744101172469,8.380155403150095,0,1,0,-9,29,0,-5,-87.18057948908628,0,0,0,55,1,2,1,2,-9,2019,1,1,11,0,38,40,15,1,0,1,0,16.69965557083923,16.69965557083923,0,0,0,0,0,0,0,1,1,0,.4240820771641042,0,0,3,49.56,47.21,6,1,0,0,1,5,0,879.5,0,0,0 +5262,6473,11690,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,5.87511066125102,6.217547919288478,3,0,0,0,-9,0,-945.4392212217964,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,13.80187823643272,0,0,0,0,152.5667280327127,1,1,0,0,6.279211638957766,0,0,70.79000000000001,9.49,6,1,0,0,6,2,0,1062,0,0,0 +5263,6474,11691,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,3,0,6.868425386297036,6.633967995260114,3,0,0,0,-9,0,-1003.585290454464,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.088029836310427,7.049366372638215,0,0,57.09,46.7,6,1,0,0,10,2,1,266,0,0,0 +5264,6475,11692,11693,-9,-9,2,1,0,70,1,0,0,0,3,-9,1,1,0,5,0,0,0,1,0,-9,7,0,3,-118.3348722324196,0,0,0,67,3,4,1,-9,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3.381558961927917,0,0,0,62.39,56.71,7,1,0,0,12,3,1,111.5,0,0,0 +5264,6475,11693,11692,-9,-9,1,1,1,67,1,0,0,0,3,-9,2,1,0,4,8.416344648603776,8.013596727225204,0,1,0,-9,7,0,-3,-37.39012844478183,-9,0,0,70,3,5,1,-9,-9,2019,1,2,9,1,10,0,15,1,1,1,0,43.55405123105339,43.55405123105339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.7,43.28,2,1,0,0,12,3,1,111.5,0,0,0 +5265,6476,11694,11696,-9,-9,2,1,0,29,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,2,0,0,37.42687858005727,0,1,1,29,1,4,1,-9,-9,2019,3,1,11,0,0,42,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,3,0,0,8,4,0,1119,0,0,0 +5265,6476,11695,-9,11694,11696,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-985.2208044548215,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,3,0,0,8,4,0,1119,0,0,0 +5265,6476,11696,11694,-9,-9,1,1,1,29,1,1,1,0,1,-9,2,1,0,4,8.622858130203062,9.13232872308614,0,2,0,-9,2,0,0,25.78589547716,0,1,0,29,1,4,3,-9,-9,2019,2,2,12,4,50,40,15,1,4,3,0,14.23465385823449,14.23465385823449,0,0,0,0,0,0,0,0,0,0,.9130362121718848,0,0,0,38.86,53.83,6,3,0,0,8,4,0,1119,0,0,0 +5266,6477,11697,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,3,8.513555683271784,8.57318043614714,0,3,0,0,0,-9,0,-1134.248352228253,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,42,42,15,1,3,-9,0,15.93638427296708,15.93638427296708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.26,57.46,3,3,0,0,7,5,1,1207,0,0,0 +5267,6478,11698,11699,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,7.947629320844474,7.750011238624721,1,0,-9,7,0,0,60.71760701032713,0,0,0,64,2,3,3,2,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.567262422079892,7.93427006715951,0,0,50.03,52.62,5,1,0,0,11,4,1,716,0,0,0 +5267,6478,11699,11698,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.115824027437995,8.018634887136328,1,0,-9,7,0,0,1.476510974208197,0,0,0,64,2,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.197464174380964,8.012372964645181,0,0,52,54.51,5,1,0,0,11,4,1,716,0,0,0 +5268,6479,11700,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,7.22508965928729,7.272120798879278,3,0,0,0,-9,0,-1014.686911442488,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.842915212548924,7.18324628990714,0,0,51.19,22.7,6,1,0,0,13,2,0,637,0,0,0 +5269,6480,11701,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,5.852342973340432,5.847810055173274,3,0,0,0,-9,0,-992.4021633414318,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.458608611840505,0,0,24.05,52.43,2,1,0,1,10,2,0,853,0,0,0 +5269,6481,11702,-9,-9,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.961875868104882,8.169276433782304,0,3,0,0,0,-9,0,-782.8851048275732,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,58,15,1,1,-9,0,7.087740930369216,7.087740930369216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,10,4,0,617,0,0,0 +5270,6482,11703,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,1,1,0,4,8.14887144442328,8.668203281131092,6.794847404038105,3,0,0,0,-9,0,-908.2749348703906,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,12,10,15,1,0,-9,0,34.03759998056864,34.03759998056864,0,0,0,0,0,0,0,1,1,0,6.241533261171014,6.600480437868358,0,0,54.44,51.82,6,1,0,0,13,5,1,1107,0,0,0 +5271,6483,11704,11705,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,5,8.709216969283192,8.611262591057583,0,2,0,-9,30,0,1,20.09983517358087,0,0,0,49,1,5,1,2,2,2019,1,1,8,1,33,35,15,1,1,1,0,18.5293353059144,18.5293353059144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,12,5,1,847.3333333333334,0,0,0 +5271,6483,11705,11704,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,5,9.495043495086305,9.679651351162736,0,2,0,-9,30,0,-1,-7.662133959951406,0,0,0,50,1,5,1,2,1,2019,1,2,20,8,40,35,15,1,8,1,0,40.41837733229008,40.41837733229008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,6,1,0,0,12,5,1,847.3333333333334,0,0,0 +5271,6483,11706,-9,11704,11705,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.769241180366,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,5,1,847.3333333333334,0,0,0 +5271,6484,11707,-9,11704,11705,4,1,0,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-996.2277871597895,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,12,1,1,498,0,0,0 +5272,6485,11708,-9,11709,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-944.3335010124898,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,4,1,562.5,0,0,0 +5272,6485,11709,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,2,1,0,3,8.595653762158905,8.211306217847634,0,4,0,0,0,-9,0,-1056.764380980503,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,46,50,15,1,0,-9,0,13.55012213889784,13.55012213889784,0,0,0,0,0,0,0,1,1,0,2.520693748472588,0,0,0,54.27,48.04,6,4,0,0,8,4,1,562.5,0,0,0 +5273,6486,11710,-9,11712,11715,4,1,1,5,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.466863171333,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,2,1,630,0,0,0 +5273,6486,11711,-9,11712,11715,5,1,1,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1132.707784524708,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,9,2,1,630,0,0,0 +5273,6486,11712,11715,-9,-9,2,1,0,37,1,1,4,0,1,-9,5,1,0,5,0,0,0,2,0,-9,15,0,-5,83.48298961419374,0,0,1,42,1,3,1,2,1,2019,1,1,6,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,3,0,0,9,2,1,630,0,0,0 +5273,6486,11713,-9,11712,11715,3,1,1,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.4326973593214,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,2,1,630,0,0,0 +5273,6486,11714,-9,11712,11715,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1007.988854012259,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,9,2,1,630,0,0,0 +5273,6486,11715,11712,-9,-9,1,1,1,42,1,1,4,0,1,-9,1,1,0,3,7.993952269169187,7.757176849559478,0,2,0,-9,15,0,5,48.56522584995589,0,0,0,37,1,5,1,3,2,2019,1,2,8,0,40,0,15,1,0,1,0,9.127930200976394,9.127930200976394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,3,0,0,9,2,1,630,0,0,0 +5274,6487,11716,11717,-9,-9,1,1,0,51,1,0,2,0,2,-9,2,1,0,4,7.575950922363067,7.762975661617572,0,2,0,-9,18,0,4,5.139587132988208,0,0,0,47,2,5,1,2,2,2019,1,2,7,0,28,25,15,1,0,1,0,11.0875302818644,11.0875302818644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,1,835.5,0,0,0 +5274,6487,11717,11716,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,5,9.513642480820753,9.698025767232279,0,2,0,-9,5,0,-4,-71.75444974511578,0,0,0,51,2,4,1,-9,-9,2019,1,1,7,0,50,51,15,1,0,1,0,38.1137562941859,38.1137562941859,0,0,0,0,0,0,0,0,0,0,4.869835906937686,0,0,0,57.06,57.76,6,1,0,0,5,5,1,835.5,0,0,0 +5275,6488,11718,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,2,8.348006690575726,8.596846552757489,0,3,0,0,0,-9,0,-897.8761730735741,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,3,36,36,15,1,3,-9,0,11.72970274957988,11.72970274957988,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,47.04,6,4,0,1,8,4,1,349,0,0,0 +5275,6489,11719,-9,-9,-9,3,1,0,32,3,0,0,0,1,-9,6,3,0,5,0,0,0,3,0,0,0,-9,0,-991.5393122343422,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,6,4,0,1,8,1,1,66,0,0,0 +5276,6490,11720,11721,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,7.481238461977127,7.662507631230739,1,0,-9,50,0,-2,-65.19831723284706,0,0,0,72,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,8.908270193806288,0,1,1,0,0,8.183218290277937,8.158404492592812,1,55.76,23.5,5,1,0,0,9,3,1,449,0,0,0 +5276,6490,11721,11720,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,4.30555175217123,4.218805501279465,1,0,-9,50,0,2,-155.700693780627,0,0,0,70,2,2,3,-9,-9,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,1,0,7.574705993646115,0,0,4.374734276362352,0,1,1,0,0,4.298014956469792,0,1,41.34,56.62,7,1,0,0,9,3,1,449,0,0,0 +5276,6491,11722,-9,-9,-9,3,1,0,60,2,0,0,0,2,-9,4,3,0,2,0,7.487188612307047,7.745012146167014,3,0,0,0,-9,0,-983.0430608964706,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.955485292245219,7.71153864783571,7.907318892988158,3,57.84,12.86,4,1,0,0,9,3,1,105,0,0,0 +5276,6492,11723,-9,-9,-9,4,1,0,57,3,0,0,0,2,-9,2,1,0,3,7.673887480534784,7.299008949517624,5.534984735123921,3,0,0,0,-9,0,-1011.750932484422,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,30,21,15,1,0,-9,0,6.342473104131771,6.342473104131771,0,0,0,0,0,0,0,1,1,0,0,5.920017955899304,0,3,61.22,33.86,6,1,0,0,9,3,1,1052,0,0,0 +5277,6493,11724,-9,-9,-9,1,1,0,90,2,0,0,0,3,-9,4,3,0,1,0,3.823346328686529,4.398951061889226,3,0,0,0,-9,0,-977.4241168214535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,8.220538418189493,0,0,0,5.221199823506057,75.9799178964426,1,1,0,4.471883604945024,4.008330929625252,0,0,45.45,13.09,3,1,0,0,2,2,0,475,0,0,0 +5278,6494,11725,-9,11727,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.281001744096,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,2,0,0,8,2,0,542,0,0,0 +5278,6494,11726,-9,11727,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-903.4044365587279,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,2,0,542,0,0,0 +5278,6494,11727,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,2,1,0,3,7.745286752455518,7.659997082126996,0,4,0,0,0,-9,0,-951.816136770625,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,16,18,15,1,1,-9,0,13.68614925368749,13.68614925368749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,4,0,0,8,2,0,542,0,0,0 +5279,6495,11728,11731,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,2,7.890577283653652,7.522223108250412,0,2,0,-9,24,0,4,-21.35947214000667,0,0,1,39,1,3,1,1,1,2019,1,1,13,1,17,17,15,1,1,1,0,16.52157880426479,16.52157880426479,0,0,0,0,0,0,0,1,1,0,3.173938518547387,0,30.36703409547509,3,47.56,48.93,6,1,0,0,4,4,1,1330,0,0,0 +5279,6495,11729,-9,11728,11731,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.6507617373054,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,1330,0,0,0 +5279,6495,11730,-9,11728,11731,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.885937899717,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,4,1,1330,0,0,0 +5279,6495,11731,11728,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,3,8.765284331618565,8.72380141433762,0,2,0,-9,24,0,-4,-68.50295204997894,0,0,0,43,2,2,1,2,2,2019,1,2,8,0,55,56,15,1,0,1,0,12.02511905340005,12.02511905340005,0,0,0,0,0,0,0,1,1,0,0,0,16.79561979499258,3,48.71,51.81,6,1,0,0,4,4,1,1330,0,0,0 +5280,6496,11732,11733,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.353292147448927,8.009516784445948,0,1,0,-9,36,0,1,32.41644833605718,0,0,0,53,2,3,1,3,2,2019,1,2,13,1,45,45,15,1,1,1,0,8.927833136401347,8.927833136401347,0,0,0,0,0,0,0,0,0,0,0,0,22.53486882525793,3,42.46,41.62,4,1,0,0,5,4,1,794,0,0,0 +5280,6496,11733,11732,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.19161810234961,7.456425803548121,0,1,0,-9,36,0,-1,-18.1304175165482,0,0,0,54,2,2,1,3,-9,2019,1,1,11,0,20,20,15,1,0,1,0,7.686465384598818,7.686465384598818,0,0,0,0,0,0,0,0,0,0,0,0,75.12097182482781,3,52.88,43.27,5,1,0,0,5,4,1,794,0,0,0 +5281,6497,11734,-9,11737,11736,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1036.19120698008,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,5,1,0,0,2,5,1,497.5,0,0,0 +5281,6497,11735,-9,11737,11736,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-972.4982828399727,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,1,0,0,2,5,1,497.5,0,0,0 +5281,6497,11736,11737,-9,-9,2,1,1,54,1,0,2,0,1,-9,2,1,0,4,9.308431211799627,8.888913835426676,0,2,0,-9,19,0,13,-98.62215223673297,0,0,0,41,1,4,1,3,2,2019,1,1,11,0,40,55,15,1,0,1,0,27.20815325534775,27.20815325534775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.94,53.98,6,1,0,0,2,5,1,497.5,0,0,0 +5281,6497,11737,11736,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.037121925555342,8.24099273907707,0,2,0,-9,19,0,-13,32.67666200683151,0,0,1,54,1,4,1,1,1,2019,1,2,10,2,35,39,15,1,2,1,0,11.71136463752449,11.71136463752449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,2,5,1,497.5,0,0,0 +5282,6498,11738,11739,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,4,8.490482035071702,8.610792310894334,0,1,0,-9,30,0,7,48.47756225816449,0,0,0,53,1,4,1,2,3,2019,1,1,12,0,45,48,15,1,0,1,0,15.4198804080037,15.4198804080037,0,0,0,0,0,0,0,0,0,0,6.134275035225597,0,0,0,50.34,56.4,6,1,0,0,12,5,1,447,0,0,0 +5282,6498,11739,11738,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,4,9.137601611051549,9.038030873163803,0,1,0,-9,30,0,-7,-7.622924279128956,0,0,0,60,1,4,1,2,1,2019,1,2,11,0,42,46,15,1,0,1,0,25.93389752579307,25.93389752579307,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.15,52.91,6,1,0,0,12,5,1,447,0,0,0 +5282,6499,11740,-9,11738,11739,3,1,0,22,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-979.0684979832462,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,6,1,1,0,12,1,1,2406,0,0,0 +5283,6500,11741,-9,11742,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-992.1557595679013,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,0,628.5,0,0,0 +5283,6500,11742,-9,-9,-9,1,1,0,41,2,0,1,0,1,-9,1,1,0,4,8.056277174145722,7.836986161237382,5.82968147729791,4,0,-9,0,-9,0,-1020.380711712922,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,13,2,40,0,15,1,2,-9,0,8.456305668863155,8.456305668863155,0,0,0,0,0,0,0,1,1,0,5.662121336155499,0,0,0,43.43,54.3,6,1,0,1,9,4,0,628.5,0,0,0 +5284,6501,11743,11746,-9,-9,1,1,1,50,1,0,3,0,2,-9,2,1,0,4,8.50081773847192,8.798739589771552,0,2,0,-9,10,0,1,117.0938232555008,0,0,0,49,1,3,1,2,3,2019,1,2,6,0,41,40,15,1,0,1,0,14.9971846578965,14.9971846578965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,735.4,0,0,0 +5284,6501,11744,-9,11746,11743,4,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.79794376049,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,735.4,0,0,0 +5284,6501,11745,-9,11746,11743,5,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.288747130451,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,735.4,0,0,0 +5284,6501,11746,11743,-9,-9,2,1,0,49,1,0,3,0,1,-9,2,1,0,3,7.96895677362413,8.524681265439892,0,2,0,-9,10,0,-1,-84.56223072270237,0,0,0,50,2,4,1,2,2,2019,1,1,11,0,36,36,15,1,0,1,0,13.75396180434588,13.75396180434588,0,0,0,0,0,0,0,1,1,0,6.882409729165072,0,0,0,57.09,46.7,5,1,0,0,13,4,1,735.4,0,0,0 +5284,6501,11747,-9,11746,11743,3,1,1,16,2,0,3,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-981.5505501859037,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.77,67.46000000000001,5,1,0,0,13,4,1,735.4,0,0,0 +5285,6502,11748,-9,11751,11749,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1088.609028430879,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,1,1603.75,0,0,0 +5285,6502,11749,11751,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,4,8.214494949570621,8.162101781286886,0,2,0,-9,1,-9,1,-128.4910654095939,-9,0,0,33,2,4,1,2,2,2019,1,1,18,6,45,0,15,1,6,1,0,12.80464095086775,12.80464095086775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.87,43.99,4,1,0,0,11,4,1,1603.75,0,0,0 +5285,6502,11750,-9,11751,11749,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-973.2708977938504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,11,4,1,1603.75,0,0,0 +5285,6502,11751,11749,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,6.95958544359224,7.12400224539861,0,2,0,-9,1,-9,-1,-24.19651290083199,-9,0,1,34,2,4,1,2,-9,2019,1,2,10,0,15,0,15,1,0,1,0,7.752484348981303,7.752484348981303,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.87,58.55,5,1,0,0,11,4,1,1603.75,0,0,0 +5286,6503,11752,11753,-9,-9,1,1,1,58,1,0,1,0,1,-9,2,1,0,3,9.745954339595558,9.675364618066835,0,2,0,-9,10,0,0,0,0,0,0,58,1,3,1,2,3,2019,1,2,10,0,42,42,15,1,0,1,0,62.22507834245089,62.22507834245089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.99,37.31,5,1,0,0,8,5,1,674.5,0,0,0 +5286,6503,11753,11752,-9,-9,2,1,0,58,1,0,1,0,1,-9,2,1,0,3,9.684777971637097,9.410805006014369,0,2,0,-9,10,0,0,0,0,0,0,58,1,3,1,2,2,2019,1,1,1,0,54,95,15,1,0,1,0,31.40168157727764,31.40168157727764,0,0,0,0,0,0,0,0,0,0,0,0,5.59828277814645,3,60.44,46.58,6,1,0,0,8,5,1,674.5,0,0,0 +5286,6504,11754,-9,11753,11752,4,1,1,18,2,0,1,1,2,0,7,2,0,4,0,4.579055868196392,4.72589373409484,3,0,0,0,-9,0,-997.0878803090674,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.62014911737641,0,0,0,33.49,64.26000000000001,6,1,0,0,8,5,1,523,0,0,0 +5287,6505,11755,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,10,3,0,4,4.611251604832614,4.967800881572329,0,3,0,-9,0,-9,0,-1013.047388293062,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,11,2,1,356,0,0,0 +5288,6506,11756,11757,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,2,0,7.117992097788066,7.413208829165501,1,0,-9,63,0,6,-34.83859770146857,0,0,0,80,1,3,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.304822526040146,6.947202367447768,0,0,41.41,47.33,5,1,0,0,9,2,1,327.5,0,0,0 +5288,6506,11757,11756,-9,-9,1,1,0,80,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,63,0,-6,9.302355038587205,0,0,0,86,2,2,3,3,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,2.415110073791872,0,0,0,1,1,0,4.969464552880121,0,0,0,54.88,35.34,6,1,0,0,9,2,1,327.5,0,0,0 +5289,6507,11758,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,2,1,0,3,7.518514257832873,8.164605383207064,6.911540831876426,3,0,0,0,-9,0,-994.357747259498,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,18,15,1,0,-9,0,9.284727769621995,9.284727769621995,0,0,0,0,0,0,0,1,1,0,2.10547233979006,6.887832377803783,0,0,57.33,53.46,6,1,0,0,2,3,1,511,0,0,0 +5290,6508,11759,-9,11761,11762,5,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.872454029201,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,0,362.75,0,0,0 +5290,6508,11760,-9,11761,11762,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.8814552473581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,362.75,0,0,0 +5290,6508,11761,11762,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,12,0,-5,106.7571124086786,0,0,1,48,2,3,1,2,3,2019,3,2,14,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,5,1,0,0,9,3,0,362.75,0,0,0 +5290,6508,11762,11761,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,3,8.587533806200369,8.627306418716534,0,2,0,-9,13,0,5,135.3949825175525,0,0,0,43,2,2,3,2,-9,2019,2,1,11,0,50,37,15,1,0,3,0,11.75969134992536,11.75969134992536,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,4,1,0,1,9,3,0,362.75,0,0,0 +5290,6509,11763,-9,11761,11762,3,1,0,21,2,0,2,0,2,-9,2,1,0,4,7.480457261359043,7.682790352795405,0,3,0,0,0,-9,0,-1093.258868492012,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,14,0,15,1,2,-9,1,18.31599236518811,18.31599236518811,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,3,0,321,0,0,0 +5291,6510,11764,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,5,8.414144233182606,8.257570678639688,0,1,0,-9,1,0,-4,-133.1166287609325,0,1,1,-9,-9,-9,-9,2,2,2019,-9,2,17,6,40,40,15,1,6,-9,0,14.42888423998956,14.42888423998956,0,0,0,0,0,0,0,0,0,0,.9824373081934972,0,0,0,35.81,64.81,5,1,0,0,9,4,0,76,0,0,0 +5292,6511,11765,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,3,8.554503542256519,8.809128023471708,0,3,0,0,0,-9,0,-985.6560305545274,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,36,36,15,1,0,-9,0,22.66589412557171,22.66589412557171,0,0,0,0,0,0,0,0,0,0,4.083060753140508,0,0,0,54.37,54.8,5,4,0,0,8,5,1,459,0,0,0 +5293,6512,11766,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,2,0,4.849959089403699,4.659223055107151,3,0,0,0,-9,0,-988.2241267303974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,3.508577613003495,0,0,1.194503015126685,0,32.04918260899441,1,1,0,4.835844672041558,4.598288228688784,0,0,56.01,27.43,6,1,0,0,2,2,1,858,0,0,0 +5294,6513,11767,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,2,1,0,2,6.193164786012359,6.140078330311005,0,3,0,0,0,-9,0,-975.9381688302055,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,25,32,15,1,2,-9,0,2.397891396515158,2.397891396515158,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.52,34.42,5,1,0,0,4,2,0,433,0,0,0 +5295,6514,11768,-9,-9,-9,1,1,0,24,2,0,1,0,2,-9,2,1,0,4,7.171236644938185,7.47744451173762,0,4,0,0,0,-9,0,-1047.793392607924,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,35,30,15,1,0,-9,0,4.819269926098944,4.819269926098944,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.46,48.14,6,1,0,0,4,2,0,1596.5,0,0,0 +5295,6514,11769,-9,11768,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-971.0684295356415,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,1596.5,0,0,0 +5296,6515,11770,11771,-9,-9,3,1,1,61,1,0,0,0,2,-9,1,1,0,3,7.867128111203819,7.6995361244587,0,1,0,-9,8,0,-7,-121.7777378618318,0,0,0,68,3,3,1,-9,-9,2019,1,1,9,0,35,35,15,1,0,1,0,9.06646533327843,9.06646533327843,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,10,3,1,1451.5,0,0,0 +5296,6515,11771,11770,-9,-9,1,1,0,68,1,0,0,0,3,-9,1,1,0,3,6.517316352742437,6.574072110404984,1.968480482372021,1,0,-9,8,0,7,-59.92172540228064,0,0,0,61,2,3,1,3,3,2019,1,3,10,0,12,15,15,1,0,1,0,8.243459797669967,8.243459797669967,0,0,0,0,0,0,0,1,1,0,0,1.562041130514522,0,3,57.63,45.09,6,1,0,0,10,3,1,1451.5,0,0,0 +5296,6516,11772,-9,11771,11770,2,1,0,40,2,0,0,0,2,-9,2,1,0,4,7.949911170406555,7.995206192106055,0,3,0,0,0,-9,0,-902.0702043435035,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,40,15,1,1,-9,1,8.07071394994448,8.07071394994448,0,0,0,0,0,0,0,1,1,0,.549639866210343,0,0,0,41.23,58.08,4,1,0,0,10,3,1,442,0,0,0 +5297,6517,11773,-9,11775,11774,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.9798019328546,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,3390.333333333333,0,0,0 +5297,6517,11774,11775,-9,-9,2,1,1,35,1,0,1,0,2,-9,3,3,0,1,0,0,0,2,0,-9,7,0,3,1.279125221712652,0,0,0,32,1,4,1,-9,-9,2019,3,1,14,2,0,32,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,24.38,4,1,1,1,13,2,1,3390.333333333333,0,0,0 +5297,6517,11775,11774,-9,-9,1,1,0,32,1,0,1,0,1,-9,2,1,0,4,7.516710694237197,7.266136506777913,0,2,0,-9,7,0,-3,141.3151068579096,0,0,1,35,2,1,3,3,3,2019,2,2,10,0,30,30,15,1,0,3,0,7.879216828310403,7.879216828310403,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,13,2,1,3390.333333333333,0,0,0 +5298,6518,11776,-9,11778,11779,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1013.325314889817,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,5,1,1117.75,0,0,0 +5298,6518,11777,-9,11778,11779,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-939.4974524388593,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,5,5,1,1117.75,0,0,0 +5298,6518,11778,11779,-9,-9,1,1,0,51,1,0,2,0,1,-9,2,1,0,3,8.888319029204213,8.686640411537013,0,2,0,-9,6,0,-3,-37.7905597010908,0,0,0,54,1,3,1,-9,-9,2019,1,4,13,1,30,30,15,1,1,1,0,25.94330389623168,25.94330389623168,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55.93,49.95,5,1,0,0,5,5,1,1117.75,0,0,0 +5298,6518,11779,11778,-9,-9,4,1,1,54,1,0,2,0,1,-9,2,1,0,3,8.801598341056652,8.976488076995137,0,2,0,-9,6,0,3,45.87578625762904,0,0,0,51,1,3,1,-9,-9,2019,1,1,14,3,43,40,15,1,3,1,0,22.08841807475379,22.08841807475379,0,0,0,0,0,0,0,1,1,0,1.676645540262034,0,5.220726827821161,3,36.79,56.27,4,3,0,0,5,5,1,1117.75,0,0,0 +5299,6519,11780,11781,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,4,9.184069940604791,9.402529784255707,0,1,0,-9,26,0,-2,-75.41455024872128,0,0,0,51,1,4,3,-9,-9,2019,2,2,8,0,38,0,15,1,0,3,0,35.04828583136501,35.04828583136501,0,0,0,0,0,0,0,0,0,0,4.408152705777556,0,0,0,57.16,56.15,7,1,0,0,2,5,1,1283,0,0,0 +5299,6519,11781,11780,-9,-9,2,1,1,51,1,0,0,0,1,-9,97,3,0,4,0,0,0,1,0,-9,26,0,2,37.28425623089162,0,0,0,49,1,4,1,-9,-9,2019,3,1,9,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.658474047423566,0,0,0,49.67,47.65,6,1,0,0,2,5,1,1283,0,0,0 +5300,6520,11782,-9,11784,11785,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.062768020206,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,7,5,1,298.2,0,0,0 +5300,6520,11783,-9,11784,11785,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.623033810941,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,298.2,0,0,0 +5300,6520,11784,11785,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,3,8.536617076065532,8.500365106938233,0,2,0,-9,9,0,-2,-19.68925730503841,0,0,1,38,2,4,1,2,2,2019,1,2,21,9,35,33,15,1,9,1,0,13.43535150052656,13.43535150052656,0,0,0,0,0,0,0,1,1,0,0,0,68.77061309645795,3,28.93,55.46,3,1,0,0,7,5,1,298.2,0,0,0 +5300,6520,11785,11784,-9,-9,2,1,1,38,1,1,3,0,2,-9,2,1,0,4,8.820148102906769,9.29091003722286,0,2,0,-9,9,0,2,7.349620687678867,0,0,0,36,1,3,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,20.29891030781306,20.29891030781306,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,5,1,0,0,7,5,1,298.2,0,0,0 +5300,6520,11786,-9,11784,11785,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.4766018886995,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,298.2,0,0,0 +5301,6521,11787,-9,11788,11790,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.2397709546542,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,4,1,426,0,0,0 +5301,6521,11788,11790,-9,-9,2,1,0,29,1,1,2,0,2,-9,2,1,0,4,7.556588476049747,7.139227620999631,0,2,0,-9,4,0,-2,83.7683944409028,0,1,1,31,2,3,1,-9,-9,2019,1,1,7,0,36,32,15,1,0,1,0,5.720781969550894,5.720781969550894,0,0,0,0,0,0,0,1,1,0,0,0,6.447356366921621,3,58.15,52.91,6,1,0,0,13,4,1,426,0,0,0 +5301,6521,11789,-9,11788,11790,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.1725027575878,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,426,0,0,0 +5301,6521,11790,11788,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,3,8.628544746066371,8.867465261576626,0,2,0,-9,4,0,2,-61.88756216224319,0,0,0,29,2,4,1,2,2,2019,1,2,9,0,47,52,15,1,0,1,0,16.44872797871943,16.44872797871943,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.12,55.12,5,1,0,0,13,4,1,426,0,0,0 +5302,6522,11791,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,3,5.954511949952498,6.053773725016791,0,3,0,-9,0,-9,0,-785.0530292547838,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,13,0,15,1,1,-9,0,3.570555311396496,3.570555311396496,0,0,0,0,0,0,0,0,0,0,0,0,16.02819417354755,3,49,49,5,1,0,1,8,2,0,45,0,0,0 +5303,6523,11792,-9,11793,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1069.236589022498,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,1,607.6666666666666,0,0,0 +5303,6523,11793,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,1,1,0,4,6.491532435283769,6.457435193502779,0,4,0,-9,0,1,0,-1144.835637089873,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,3,30,40,15,1,3,-9,0,2.630682289761076,2.630682289761076,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,6,1,0,0,10,2,1,607.6666666666666,0,0,0 +5303,6523,11794,-9,11793,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-958.9624638915,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,10,2,1,607.6666666666666,0,0,0 +5304,6524,11795,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,5.669066891857611,5.662943866802411,3,0,0,0,-9,0,-1120.468870158951,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.544792708057376,5.626380818733203,0,0,54.79,55.86,6,1,0,0,1,2,1,748,0,0,0 +5305,6525,11796,11797,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,3,7.960963202102713,8.088317745249338,0,1,0,-9,1,-9,-6,-54.34734836835354,-9,1,1,30,2,2,1,-9,-9,2019,1,1,20,7,40,0,15,1,7,1,0,9.802360061952999,9.802360061952999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.45,54.07,5,1,0,0,9,5,1,107.5,0,0,0 +5305,6525,11797,11796,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,2,9.061668290518666,8.868714935628898,0,1,0,1,1,-9,6,-30.92550921626854,0,0,0,24,2,3,1,2,2,2019,1,2,29,10,40,43,15,1,10,1,0,20.37036480468838,20.37036480468838,0,0,0,0,0,0,0,0,0,0,7.10857394144386,0,0,3,15.13,62.42,2,1,0,0,9,5,1,107.5,0,0,0 +5306,6526,11798,11799,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,5,0,6.6607843615238,6.514941432101577,1,0,-9,9,0,-2,22.77126495597915,0,0,0,79,3,4,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.179792672904383,6.423113908966595,0,0,48.41,56.13,7,1,0,0,12,2,1,688,0,0,0 +5306,6526,11799,11798,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,5.0908405104852,5.168440602747746,1,0,-9,9,0,2,24.45305143652256,0,0,0,77,2,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.076929392594351,5.390508361726327,0,0,50.97,53.42,7,1,0,0,12,2,1,688,0,0,0 +5307,6527,11800,11801,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,5.065710849931031,5.156453537111134,1,0,-9,2,0,4,133.3025134165373,0,0,0,70,2,3,3,-9,-9,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.141305375683603,5.226988594115478,0,0,42.73,45.13,4,2,0,0,9,3,1,2418.5,0,0,0 +5307,6527,11801,11800,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.652477384971705,7.857704427434836,1,0,-9,2,0,-4,-101.4906460456808,0,0,0,74,2,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.134270555154386,7.868377333713033,0,0,51.41,56.15,6,1,0,0,9,3,1,2418.5,0,0,0 +5308,6528,11802,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,5.655142276984512,5.208054371107895,3,0,0,0,-9,0,-1052.761148683654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,7.346062671860063,0,.8328100395193552,0,0,11.69300125682624,1,1,0,0,5.420109906248532,0,0,53,44,6,1,0,0,4,2,0,184,0,0,0 +5309,6529,11803,11804,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,64,0,-1,110.7526290740789,0,0,0,85,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,44.69235898212064,2.702936337553234,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,4,2,1,391,0,0,0 +5309,6529,11804,11803,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,3,0,6.057450907084117,5.614579236371004,1,0,-9,64,0,1,-15.28170576676464,0,0,0,84,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.893459618545283,0,0,54,45,6,1,0,0,4,2,1,391,0,0,0 +5310,6530,11805,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,3,7.457612921215721,7.383798539968051,0,3,0,0,0,-9,0,-1098.70661024562,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,6.544170673919895,6.544170673919895,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,4,1,0,0,11,3,0,443,0,0,0 +5311,6531,11806,-9,11808,11807,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.8747691964884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,322.6666666666667,0,0,0 +5311,6531,11807,11808,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,3,8.237290846498398,8.404566152660925,0,2,0,-9,9,0,3,30.92655528189932,0,0,0,35,2,4,1,2,2,2019,1,2,19,7,45,50,15,1,7,1,0,12.53465587939028,12.53465587939028,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,56.99,6,1,0,0,2,4,0,322.6666666666667,0,0,0 +5311,6531,11808,11807,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,4,7.821518480210357,7.579827242281262,0,2,0,-9,9,0,-3,-37.20096145948207,0,0,1,38,2,3,1,2,2,2019,1,1,9,0,37,46,15,1,0,1,0,10.681783145048,10.681783145048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.88,61.85,6,1,0,0,2,4,0,322.6666666666667,0,0,0 +5312,6532,11809,11810,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,63,0,-1,84.41316804436504,0,0,0,82,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.990713409373952,0,0,0,57.16,56.15,7,1,0,0,7,3,1,325,0,0,0 +5312,6532,11810,11809,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,4,0,7.969668935061783,7.674404502838355,1,0,-9,63,0,1,52.35392264951137,0,0,0,81,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.03463638005131,7.857051499081935,0,0,53.46,51.43,7,1,0,0,7,3,1,325,0,0,0 +5313,6533,11811,-9,11812,11813,2,1,1,17,2,0,1,1,2,-9,7,2,0,5,7.829110761782614,7.636221108104866,0,2,0,0,0,-9,0,-857.3878547220068,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.53,55.6,7,1,0,0,6,5,0,1125.25,0,0,0 +5313,6533,11812,11813,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,3,8.028815856804785,7.927104970385797,5.351847753588678,2,0,1,1,-9,5,-12.17503547097145,0,0,1,33,2,3,1,1,1,2019,1,4,11,0,40,40,15,1,0,1,0,8.330792998020367,8.330792998020367,0,0,0,0,0,0,0,1,1,0,6.47968565857892,0,0,0,53.72,31.93,6,1,0,0,6,5,0,1125.25,0,0,0 +5313,6533,11813,11812,-9,-9,4,1,1,33,1,0,1,0,2,-9,2,1,0,3,8.516428929668004,8.84589674158808,0,2,0,-9,1,-9,-5,-41.43908027578362,-9,0,0,38,1,3,1,-9,-9,2019,1,1,17,5,50,0,15,1,5,1,0,13.40153712295454,13.40153712295454,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.45,54.01,3,1,0,0,6,5,0,1125.25,0,0,0 +5313,6533,11814,-9,11812,11813,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.9708732936664,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,0,1125.25,0,0,0 +5314,6534,11815,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,2,1,0,1,6.992532254719203,7.029478265623622,0,4,0,-9,0,1,0,-1021.142310923152,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,30,0,15,1,2,-9,0,3.76333553186469,3.76333553186469,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.58,50.17,5,1,0,0,11,2,0,6811,0,0,0 +5315,6535,11816,-9,-9,-9,1,1,0,68,2,0,0,0,1,-9,4,3,0,3,0,7.114920260586313,7.817551519490279,3,0,0,0,-9,0,-884.0889855933922,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.488674903173274,7.527169937483363,5.326653972605184,3,56.94,41.3,6,1,0,0,9,3,1,1627,0,0,0 +5316,6536,11817,11818,-9,-9,2,1,0,31,1,0,3,0,2,-9,2,1,0,4,6.625337944078655,6.709191187724015,0,2,0,-9,15,0,-6,-88.3297749067456,0,0,1,37,2,3,1,3,3,2019,1,1,7,0,16,0,15,1,0,1,0,5.15124094868421,5.15124094868421,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.58,54.3,5,3,0,0,8,2,0,493.3333333333333,0,0,0 +5316,6536,11818,11817,-9,-9,1,1,1,37,1,0,3,0,2,-9,1,1,0,3,6.503326042183689,6.308353516865578,0,2,0,-9,15,0,6,76.93256980207849,0,0,0,31,2,4,1,3,3,2019,1,2,8,0,40,40,15,1,0,1,0,2.014803886068543,2.014803886068543,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.37,54.8,6,3,0,0,8,2,0,493.3333333333333,0,0,0 +5316,6536,11819,-9,11817,11818,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.6103121921053,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,493.3333333333333,0,0,0 +5317,6537,11820,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,4,8.596684246499633,8.79481859431888,0,3,0,0,0,-9,0,-1043.704032497007,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,20,6,49,45,15,1,6,-9,0,10.77702832128346,10.77702832128346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,59.58,5,1,0,0,12,5,1,318,0,0,0 +5318,6538,11821,11822,-9,-9,2,1,0,21,1,0,0,0,2,-9,2,1,0,4,7.790074839621085,7.89527120235095,0,1,0,-9,2,0,-2,78.98933297985435,0,1,1,23,2,4,1,-9,-9,2019,1,1,22,9,40,40,15,1,9,1,0,6.458343460824058,6.458343460824058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,4,1,0,0,5,4,0,376.5,0,0,0 +5318,6538,11822,11821,-9,-9,1,1,1,23,1,0,0,0,2,-9,2,1,0,4,7.988347793390906,8.0571264124934,0,1,0,-9,2,0,2,-115.4611124226294,0,1,0,21,2,4,1,-9,-9,2019,1,2,4,0,37,33,15,1,0,1,0,9.990299704107985,9.990299704107985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,6,1,0,0,5,4,0,376.5,0,0,0 +5319,6539,11823,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1079.667722977021,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,44,6,1,0,0,2,1,0,487,0,0,0 +5319,6540,11824,-9,11823,-9,2,1,0,59,3,0,0,0,3,-9,2,1,0,3,7.343816745562529,7.71951520146122,0,3,0,0,0,-9,0,-971.1081490467495,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,23,23,15,1,2,-9,1,6.226406173142379,6.226406173142379,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,1,0,0,2,3,0,1116,0,0,0 +5320,6541,11825,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,3,0,6.957120091846417,6.901951359684498,3,0,-9,0,1,0,-837.6179729494222,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.681782616971289,6.79130579610699,7.238178083634253,3,36.08,60.5,6,1,0,0,9,2,1,4092,0,0,0 +5321,6542,11826,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-967.8253567493573,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,3,0,0,15,3,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.535769018845965,0,0,0,57.7,47.64,6,1,0,0,11,1,0,528,0,0,0 +5322,6543,11827,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,4,3,0,2,0,7.722141785495947,7.923594188735833,3,0,0,0,-9,0,-1034.396630672011,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.09921978195784,7.788519153605655,0,0,44.41,29.05,6,1,0,0,2,3,1,328,0,0,0 +5323,6544,11828,11831,-9,-9,1,1,1,47,1,1,2,0,1,-9,2,1,0,3,8.944501205725155,9.165536223950113,0,2,0,-9,11,0,7,-29.1352317784851,0,0,0,40,1,5,1,2,1,2019,1,2,3,0,55,45,15,1,0,1,0,19.64975027346225,19.64975027346225,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,46.71,6,1,0,0,7,4,1,600,0,0,0 +5323,6544,11829,-9,11831,11828,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1040.067172501321,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,4,1,600,0,0,0 +5323,6544,11830,-9,11831,11828,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.665384621345,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,600,0,0,0 +5323,6544,11831,11828,-9,-9,2,1,0,40,1,1,2,0,1,-9,5,1,0,5,0,0,0,2,0,-9,11,0,-7,-39.35383586532525,0,0,1,47,1,3,1,1,1,2019,1,1,4,0,0,16,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.252213886766965,0,0,0,58.2,54.53,6,1,0,0,7,4,1,600,0,0,0 +5324,6545,11832,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,2,1,0,3,8.482030913959511,8.199649920917981,0,3,0,0,0,-9,0,-1047.454968858503,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,43,15,1,0,-9,0,14.14151382261361,14.14151382261361,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.25,43.49,3,1,0,0,10,4,1,1616,0,0,0 +5325,6546,11833,11834,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,4,7.774440210831919,7.766191196825456,5.716948132162919,1,0,-9,45,0,1,58.65720925884461,0,0,0,63,3,3,1,3,-9,2019,1,2,10,0,37,42,15,1,0,1,0,9.522885428677107,9.522885428677107,0,0,0,0,0,0,0,1,1,0,2.848170885040751,5.740252530250944,0,0,46.39,60.99,6,1,0,0,5,5,1,536,0,0,0 +5325,6546,11834,11833,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,3,7.83696167406542,8.125044193739818,7.403657208757124,1,0,-9,45,0,-1,66.81292181689419,0,0,0,64,2,4,1,3,3,2019,1,1,11,2,30,30,15,1,2,1,0,9.892805567405839,9.892805567405839,0,0,0,0,0,0,0,1,1,0,2.628231625882744,7.838460932488124,0,0,58.82,39.12,6,1,0,0,5,5,1,536,0,0,0 +5326,6547,11835,-9,-9,-9,1,1,0,79,3,0,0,0,1,-9,4,3,0,2,0,7.03758707393453,6.979175362641917,3,0,0,0,-9,0,-1085.377141721243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.270325214365637,7.274013659302991,0,0,46.97,20.28,4,1,0,0,5,2,1,293,0,0,0 +5327,6548,11836,11837,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,4,0,6.280825400582145,6.388844487911327,1,0,-9,45,0,0,-103.2247751033498,0,0,0,65,3,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.304800274826465,5.985730296444496,0,0,56.33,51.02,7,1,0,0,12,2,1,1275.5,0,0,0 +5327,6548,11837,11836,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,45,0,0,-17.81739779991952,0,0,0,65,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,7,1,0,0,12,2,1,1275.5,0,0,0 +5328,6549,11838,11839,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,3,8.301879848184074,8.559694788701579,0,1,0,-9,6,0,-1,55.44845459905656,0,0,0,60,2,3,3,-9,3,2019,2,2,9,0,44,47,15,1,0,3,0,10.0475866327757,10.0475866327757,0,0,0,0,0,0,0,0,0,0,4.157584547955055,0,21.83930086729001,1,62,47.26,6,1,0,0,12,4,1,723,0,0,0 +5328,6549,11839,11838,-9,-9,2,1,0,60,1,0,0,0,2,-9,8,3,1,3,0,6.641226632798379,6.475503617604528,1,0,-9,6,0,1,-60.11169880959979,0,0,0,59,3,3,1,3,3,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.645527269873143,6.018519557758442,0,0,47.66,26.59,6,1,0,0,12,4,1,723,0,0,0 +5329,6550,11840,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-969.8404521274153,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.952198553624285,0,0,0,49.54,53.32,5,1,0,0,5,1,1,394,0,0,0 +5330,6551,11841,11842,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,3,0,7.357401073126474,7.053615449654856,1,0,-9,6,0,1,81.76227600834171,0,0,0,82,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.06391101959533,7.329356585222172,0,0,55,45,6,5,0,0,4,3,1,713,0,0,0 +5330,6551,11842,11841,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,3,0,6.203462555665276,5.946540949918681,1,0,-9,6,0,-1,-109.6127908590912,0,0,0,83,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.070978657173843,0,0,64.55,36.47,7,1,0,0,4,3,1,713,0,0,0 +5331,6552,11843,11844,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,5,0,0,0,0,66,3,1,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,57.19,34.69,5,1,0,0,2,1,1,1151.5,0,0,0 +5331,6552,11844,11843,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,-5,0,0,0,0,71,3,2,3,-9,-9,2019,4,1,27,12,0,0,15,4,12,4,0,0,0,1,0,6.243936621014909,0,0,0,0,1,1,0,0,0,0,0,31.61,19.7,3,1,0,0,2,1,1,1151.5,0,0,0 +5332,6553,11845,11846,-9,-9,1,1,1,28,1,0,0,0,2,-9,2,1,0,4,8.050558280319697,7.730213629616025,0,1,0,1,1,-9,5,70.34773253617774,0,1,0,23,2,5,1,2,3,2019,1,3,5,0,50,39,15,1,0,1,0,5.485469362207262,5.485469362207262,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,5,4,1,555,0,0,0 +5332,6553,11846,11845,11847,-9,3,1,0,23,1,0,0,0,2,-9,2,1,0,5,7.76195446530004,7.812783978110018,0,1,0,-9,1,-9,-5,-25.03385521506394,-9,1,1,28,2,4,1,2,-9,2019,1,1,8,0,40,0,15,1,0,1,0,7.444222062457559,7.444222062457559,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,5,4,1,555,0,0,0 +5332,6554,11847,-9,-9,-9,2,1,0,50,3,0,0,0,2,-9,2,1,0,4,7.357297713574011,7.704917922042252,5.834859389199488,3,0,-9,0,-9,0,-1034.653209634121,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,28,0,15,1,0,-9,0,7.407914554471048,7.407914554471048,0,0,0,0,0,0,0,1,1,0,0,6.307488132204169,0,0,51.49,57.57,6,1,0,0,5,3,1,278,0,0,0 +5333,6555,11848,11849,-9,-9,2,1,1,45,1,0,1,0,2,-9,1,1,0,4,0,0,0,2,0,-9,3,0,-4,69.67192039055712,-9,0,0,49,1,4,1,-9,-9,2019,1,1,7,0,50,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.174788827375544,0,0,3,63.1,45.09,2,1,0,0,11,3,1,1008.5,0,0,0 +5333,6555,11849,11848,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,4,8.398007095208779,8.328328484203288,0,2,0,-9,3,0,4,-4.729755881171839,0,0,0,45,2,4,1,2,3,2019,1,2,7,0,38,37,15,1,0,1,0,13.26206810110651,13.26206810110651,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.15,52.91,6,1,0,0,11,3,1,1008.5,0,0,0 +5333,6556,11850,-9,11849,11848,3,1,0,18,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1027.277897117115,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7964732189120921,0,0,0,54.2,57.49,6,1,1,1,11,3,1,447,0,0,0 +5334,6557,11851,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,5,8.609692510602326,8.55050062383515,0,3,0,0,0,-9,0,-865.8366030061284,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,37,37,15,1,0,-9,0,12.75975936840704,12.75975936840704,0,0,0,0,0,0,0,0,0,0,3.589692561875632,0,33.50291116299156,3,50.24,58.02,7,1,0,0,4,4,1,1565,0,0,0 +5335,6558,11852,11853,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,7.153551716911259,7.267524036252798,1,0,-9,5,0,-7,-22.49836897736608,0,0,0,79,2,1,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.533282402039245,6.49902189737604,2,54.21,21.27,3,1,0,0,1,2,1,757.5,0,0,0 +5335,6558,11853,11852,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,5,0,7,38.15317807028075,0,0,0,72,2,1,3,3,3,2019,4,2,27,10,0,0,15,4,10,4,0,0,0,1,5.05187676953688,4.999983939589809,0,1.342302504675528,0,85.02042198210307,1,1,0,1.454609257245815,0,0,0,31.61,19.7,3,1,0,0,1,2,1,757.5,0,0,0 +5336,6559,11854,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,3,7.430839651121564,7.695439035185064,5.270117656283086,3,0,0,0,-9,0,-808.7818321812158,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,43,15,1,0,-9,0,5.929294093488386,5.929294093488386,0,0,0,0,0,0,0,1,1,0,0,5.460235105110735,0,0,58.89,48.6,6,1,0,0,11,3,1,1323,0,0,0 +5337,6560,11855,11856,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,4,8.245574331163525,8.062297770244911,0,1,0,-9,2,0,1,-34.15271176661725,-9,1,0,27,1,4,1,-9,-9,2019,1,1,10,0,39,0,15,1,1,1,0,9.218914699008065,9.218914699008065,0,0,0,0,0,0,0,0,0,0,2.558355660355646,0,0,0,50,57,5,1,0,0,9,5,1,413,0,0,0 +5337,6560,11856,11855,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.564052911682142,8.694459687492742,0,1,0,-9,2,0,-1,-17.53017609021826,0,1,1,28,2,4,1,3,3,2019,1,2,6,0,41,40,15,1,0,1,0,12.74883430626181,12.74883430626181,0,0,0,0,0,0,0,0,0,0,2.003195044083382,0,0,0,54.2,57.49,5,1,0,0,9,5,1,413,0,0,0 +5338,6561,11857,11858,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,7.121467274357018,7.254104300922084,1,0,-9,50,0,-3,-99.20328366224378,0,0,0,73,2,4,3,3,2,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.965184766662815,7.179837720963031,0,1,45.15,54.79,4,1,0,0,5,4,1,778,0,0,0 +5338,6561,11858,11857,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,7.780915322983317,7.952061733728674,6.700074249305523,1,0,-9,50,0,3,24.89609237564252,0,0,0,70,2,3,3,2,2,2019,4,2,6,0,40,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.467173263812627,6.75382987616045,0,0,64.07000000000001,47.52,6,1,0,0,5,4,1,778,0,0,0 +5339,6562,11859,-9,-9,-9,1,1,0,43,3,0,1,0,1,-9,1,1,0,4,7.151622433075,7.800869874994389,7.427282749110889,4,0,0,0,-9,0,-993.2355942645324,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,30,42,15,1,1,-9,0,6.087838001567222,6.087838001567222,0,0,0,0,0,0,0,0,0,0,7.330085489277564,0,0,0,54.6,50.69,5,1,0,0,12,3,1,868,0,0,0 +5340,6563,11860,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-902.3353319850636,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.62,52.86,6,1,1,0,12,1,0,351,0,0,0 +5340,6563,11861,-9,11860,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.7680691800949,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,0,351,0,0,0 +5341,6564,11862,11863,-9,-9,1,1,1,36,1,1,2,0,2,-9,1,1,0,4,8.847822161856385,8.887417675441316,0,2,0,-9,6,0,3,-50.79852296709207,0,0,0,33,3,3,3,2,3,2019,2,2,7,0,40,60,15,1,0,3,0,19.01530100518885,19.01530100518885,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,6,4,0,927.3333333333334,0,0,0 +5341,6564,11863,11862,-9,-9,2,1,0,33,1,1,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-3,-45.08050707326973,0,0,1,36,2,4,1,-9,-9,2019,3,1,31,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.881375794180223,3,19.76,54.54,5,1,0,0,6,4,0,927.3333333333334,0,0,0 +5341,6564,11864,-9,11863,11862,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.773372931489,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,0,927.3333333333334,0,0,0 +5342,6565,11865,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,4,3,0,4,0,7.975059557537941,8.176322987127014,3,0,0,0,-9,0,-1214.648387192031,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,37,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.126431609826161,8.143717331026643,0,0,62.49,55.09,7,1,0,0,4,4,1,546,0,0,0 +5343,6566,11866,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,4.865845193002538,4.481149782979534,3,0,0,0,-9,0,-979.6402475202472,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.438884197460028,4.57337871227858,0,0,57.49,34.36,2,1,0,0,12,2,1,1206,0,0,0 +5344,6567,11867,11868,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,6.994739595947753,7.362412542662724,1,0,-9,48,0,-2,-98.52142815235804,0,0,0,70,2,3,3,3,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.865862284454064,7.427122884021808,0,0,61.67,39.58,6,1,0,0,12,3,1,469,0,0,0 +5344,6567,11868,11867,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,6.037312809503776,6.045513052587339,1,0,-9,7,0,2,80.04534558114128,0,0,0,68,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.869497346603747,6.029635838426391,0,0,60.29,52.11,6,1,0,0,12,3,1,469,0,0,0 +5345,6568,11869,-9,11871,11870,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.486975358253,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,4,4,1,367.3333333333333,0,0,0 +5345,6568,11870,11871,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,4,7.569127474882777,8.124819820814883,7.073238719870874,2,0,-9,9,0,-1,71.20380522200759,0,0,0,53,1,5,2,2,2,2019,2,2,6,0,21,21,15,1,0,2,0,11.83253543657807,11.83253543657807,0,0,0,0,0,0,0,1,1,0,7.618154533804981,0,0,0,54.2,57.49,6,1,0,0,4,4,1,367.3333333333333,0,0,0 +5345,6568,11871,11870,-9,-9,2,1,0,53,1,0,1,0,1,-9,7,2,0,5,7.94358933747117,7.977055898204656,0,2,0,-9,9,0,1,-26.58303714719748,1,0,0,52,1,4,1,1,1,2019,3,1,10,0,23,26,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.856729683543473,0,6.361315429142158,3,48.77,60.16,7,1,0,0,4,4,1,367.3333333333333,0,0,0 +5346,6569,11872,11873,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,2,8.06779292742114,8.076781526522465,0,1,0,-9,6,0,-2,84.15713310543453,0,0,0,51,3,5,1,2,3,2019,1,2,5,1,50,55,15,1,1,1,0,6.196205042389635,6.196205042389635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,47.78,5,1,0,0,5,3,1,580.5,0,0,0 +5346,6569,11873,11872,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,5,6.669528406100169,6.74387783312952,0,1,0,-9,6,0,2,67.86370261026279,-9,0,0,49,2,2,1,-9,-9,2019,1,1,6,0,20,0,15,1,0,1,0,4.43356831031929,4.43356831031929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,5,3,1,580.5,0,0,0 +5347,6570,11874,11875,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,5,9.58470676296837,9.528976675894882,0,1,0,-9,38,0,3,-19.27798013886011,0,0,0,55,1,2,3,1,2,2019,2,1,3,0,45,44,15,1,0,3,0,37.09677428264549,37.09677428264549,0,0,0,0,0,0,0,1,1,0,0,0,10.5090121008039,3,57.06,57.76,6,1,0,0,9,5,1,596,0,0,0 +5347,6570,11875,11874,-9,-9,1,1,0,55,1,0,0,0,1,-9,97,3,0,2,0,0,0,1,0,-9,38,0,-3,-15.68768519578753,0,0,0,58,1,5,1,2,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.23085247222782,3,53.62,48.74,6,1,0,0,9,5,1,596,0,0,0 +5348,6571,11876,11877,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,6.845999218783578,6.801749095639922,1,0,-9,6,0,-1,25.8874971744544,0,0,0,79,3,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.076359283103437,0,0,56.78,49.38,6,1,0,0,12,2,0,726.5,0,0,0 +5348,6571,11877,11876,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,1,55.89833096718525,0,0,0,78,2,4,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,0,1.813260184866234,0,0,0,0,1,1,0,0,0,0,0,32.82,32.48,2,1,0,0,12,2,0,726.5,0,0,0 +5349,6572,11878,-9,11880,11879,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-987.790595483619,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,11,5,1,747.25,0,0,0 +5349,6572,11879,11880,-9,-9,2,1,1,40,1,1,2,0,1,-9,2,1,0,4,9.586404886482812,9.455798396285237,0,2,0,-9,1,-9,3,-16.02694956571549,-9,0,0,37,1,4,1,3,3,2019,1,1,10,0,44,0,15,1,0,1,0,39.519517558959,39.519517558959,0,0,0,0,0,0,0,0,0,0,.5326230765703164,0,0,0,57.16,56.15,6,1,0,0,11,5,1,747.25,0,0,0 +5349,6572,11880,11879,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,4,8.642150848726248,8.744501899740282,0,2,0,-9,1,-9,-3,-172.535472694251,-9,0,1,40,1,4,1,2,2,2019,1,2,8,0,38,0,15,1,0,1,0,17.05267426916464,17.05267426916464,0,0,0,0,0,0,0,0,0,0,2.137688047732462,0,0,0,51.83,57.2,6,1,0,0,11,5,1,747.25,0,0,0 +5349,6572,11881,-9,11880,11879,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1042.438033860622,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,11,5,1,747.25,0,0,0 +5350,6573,11882,-9,11883,11884,4,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.4933308595913,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,1162.333333333333,0,0,0 +5350,6573,11883,11884,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,4,7.976078451658056,7.868905821092941,0,2,0,-9,7,0,3,-54.62904814637079,0,0,0,47,1,4,1,1,1,2019,1,1,12,0,38,38,15,1,0,1,0,8.242827038195156,8.242827038195156,0,0,0,0,0,0,0,1,1,0,0,0,.1875035177794717,3,46.98,59.35,5,1,0,0,2,4,1,1162.333333333333,0,0,0 +5350,6573,11884,11883,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,4,8.48633928590338,8.339997958262407,0,2,0,-9,7,0,-3,-51.42283294661099,0,0,0,50,2,4,1,1,1,2019,1,2,5,0,36,40,15,1,0,1,0,14.31782506398558,14.31782506398558,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,6,1,0,0,2,4,1,1162.333333333333,0,0,0 +5350,6574,11885,-9,11883,11884,3,1,1,20,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1017.231288687595,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.3,59.89,6,1,0,0,2,1,1,320,0,0,0 +5351,6575,11886,11888,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,4,7.521850595456225,7.302872172102394,0,2,0,-9,1,-9,-1,-7.378851381932043,-9,0,1,31,2,3,1,-9,-9,2019,1,1,11,0,40,0,15,1,0,1,0,4.290743110880312,4.290743110880312,0,0,0,0,0,0,0,1,1,0,0,0,.8797629507682991,3,54.2,57.49,6,1,0,0,13,3,0,686.75,0,0,0 +5351,6575,11887,-9,11886,11888,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-877.7825678120839,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,3,0,686.75,0,0,0 +5351,6575,11888,11886,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,3,7.809633780288579,7.899784873334123,0,2,0,-9,1,-9,1,12.0012513950482,-9,0,0,30,2,4,1,1,1,2019,1,2,12,0,50,0,15,1,0,1,0,6.044123626691257,6.044123626691257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,45,5,1,0,0,13,3,0,686.75,0,0,0 +5351,6575,11889,-9,11886,11888,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-967.6213680249633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,0,686.75,0,0,0 +5352,6576,11890,11891,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.867951356083825,9.00638830769255,0,1,0,-9,32,0,-5,13.63270148170491,0,0,0,60,1,3,1,3,3,2019,1,2,4,0,40,39,15,1,0,1,0,18.45558436667192,18.45558436667192,0,0,0,0,0,0,0,0,0,0,1.381555279215812,0,0,0,52,54.51,5,1,0,0,9,5,1,574,0,0,0 +5352,6576,11891,11890,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,3,9.301200263970955,8.821582911420409,0,1,0,-9,31,0,5,88.14182688207056,0,0,0,55,2,3,1,3,3,2019,1,1,7,0,38,45,15,1,0,1,0,24.96876553235554,24.96876553235554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,5,1,574,0,0,0 +5353,6577,11892,-9,11894,11893,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.2646933222396,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,4,1,551.6666666666666,0,0,0 +5353,6577,11893,11894,-9,-9,1,1,1,48,1,0,2,0,1,-9,1,1,0,4,7.985885598431552,8.235785814631676,0,2,0,-9,15,0,15,44.36211135356482,0,0,0,33,2,4,1,2,2,2019,1,2,3,0,14,30,15,1,0,1,0,27.85162781867627,27.85162781867627,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,6,3,0,0,8,4,1,551.6666666666666,0,0,0 +5353,6577,11894,11893,-9,-9,2,1,0,33,1,0,2,0,2,-9,1,1,0,4,8.275720972284933,8.271413200828631,0,2,0,-9,15,0,-15,42.35796973455361,0,0,1,48,1,4,1,2,2,2019,1,1,12,0,35,25,15,1,0,1,0,12.64414151528154,12.64414151528154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,57.35,6,3,0,0,8,4,1,551.6666666666666,0,0,0 +5354,6578,11895,11896,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,6.29144622347092,6.740976480673621,1,0,-9,55,0,3,77.45279697554143,0,0,0,75,3,2,3,3,3,2019,4,2,10,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.403187933526628,0,0,43.71,43.43,6,3,0,0,5,2,1,353.5,0,0,0 +5354,6578,11896,11895,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,4.874160839080826,4.892296047378746,1,0,-9,55,0,-3,55.14721579472347,0,0,0,78,3,2,3,3,3,2019,4,1,15,6,0,0,15,4,6,4,0,0,0,1,0,.8110413773617167,0,0,0,0,1,1,0,0,4.567209688306615,0,0,44.02,28.6,6,3,0,0,5,2,1,353.5,0,0,0 +5355,6579,11897,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,4,0,5.070507693842382,4.934578803643611,3,0,0,0,-9,0,-919.8769056496974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,4.621298182890337,0,0,4.062521917887846,0,20.92736190014771,1,1,0,6.075919357343502,5.090081967133091,0,0,53.81,48.03,4,1,0,0,11,2,1,1676,0,0,0 +5356,6580,11898,11899,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,4,8.514327438647038,8.810288669265931,0,1,0,-9,7,0,-2,-65.92257973097185,0,0,1,36,2,4,1,2,2,2019,1,2,14,2,60,80,15,1,2,1,0,11.13591088875376,11.13591088875376,0,0,0,0,0,0,0,0,0,0,1.594285700982818,0,0,0,38.47,57.72,5,2,0,0,9,5,1,1687.5,0,0,0 +5356,6580,11899,11898,-9,-9,2,1,1,36,1,0,0,0,2,-9,1,1,0,4,8.818662272923358,8.509586172888939,0,1,0,-9,7,0,2,110.4724913723323,-9,0,0,34,1,4,1,-9,-9,2019,1,1,12,0,60,0,15,1,0,1,0,9.972119834524761,9.972119834524761,0,0,0,0,0,0,0,0,0,0,1.290718952637255,0,0,0,43.03,51.96,6,1,0,0,9,5,1,1687.5,0,0,0 +5357,6581,11900,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,97,3,0,2,0,0,0,3,0,0,0,-9,0,-987.3369490816358,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,26,9,0,16,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,3.263144621562077,0,0,0,37.64,49.08,1,1,0,1,6,1,0,1151,0,0,0 +5358,6582,11901,11902,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,6.958222729509388,6.559069107575088,1,0,-9,9,0,7,67.24291615957348,0,0,0,70,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.727076035120583,7.008480802977961,0,0,44.42,59.09,6,1,0,0,10,3,1,246,0,0,0 +5358,6582,11902,11901,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,6.870228458173043,7.036552862013423,1,0,-9,9,0,-7,-39.62201535685777,0,0,0,77,2,4,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.331106831945402,7.076371317624874,0,0,52.99,51.28,5,1,0,0,10,3,1,246,0,0,0 +5359,6583,11903,11904,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,2,7.533796454303174,7.395323599149422,0,1,0,-9,44,0,0,-41.17922828994848,0,0,0,64,1,3,1,2,2,2019,1,1,19,7,21,21,15,1,7,1,0,8.934489876616071,8.934489876616071,1,0,0,0,0,0,0,0,0,0,0,0,3.687391668890392,1,46.96,40.63,6,1,0,0,10,3,1,820.5,0,0,0 +5359,6583,11904,11903,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,3,7.350253215533477,7.325979738559288,0,1,0,-9,44,0,0,65.86534093532488,0,0,0,64,1,2,1,2,2,2019,1,2,8,0,32,35,15,1,0,1,0,5.380065233488343,5.380065233488343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,6,1,0,0,10,3,1,820.5,0,0,0 +5360,6584,11905,-9,11906,-9,4,1,1,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.1919513684334,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,3,1,1670,0,0,0 +5360,6584,11906,-9,-9,-9,1,1,0,39,3,0,4,0,1,-9,2,1,0,5,8.188121061974146,8.8340306972657,7.232605213721966,4,0,0,0,-9,0,-1160.035990148176,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,45,45,15,1,0,-9,0,10.16150296459586,10.16150296459586,0,0,0,0,0,0,0,1,1,0,7.336925424669239,0,0,0,54.1,59.11,6,1,0,0,12,3,1,1670,0,0,0 +5360,6584,11907,-9,11906,-9,3,1,1,13,2,0,4,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1053.786682489278,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,3,1,1670,0,0,0 +5360,6584,11908,-9,11906,-9,2,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1037.50946138773,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,1670,0,0,0 +5360,6584,11909,-9,11906,-9,5,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-849.1256977135172,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,3,1,1670,0,0,0 +5361,6585,11910,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,3,0,7.581325719852141,8.219123332984882,3,0,0,0,-9,0,-1140.48390110208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.633496127191462,0,0,0,1,1,0,.9556195891959882,7.845870624618387,0,0,58.63,41.86,6,1,0,0,11,4,1,917,0,0,0 +5361,6586,11911,-9,11910,-9,2,1,0,48,2,0,0,0,2,-9,4,3,0,2,0,7.95251877977495,7.964664446101827,3,0,0,0,-9,0,-1020.956582167576,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,7.865644649230258,5.0792996395807,3,51.98,30.31,6,1,0,0,11,3,1,105,0,0,0 +5362,6587,11912,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,6.49864346905832,6.523945812444145,3,0,0,0,-9,0,-1056.987657615603,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,1.248649403261533,0,0,0,1,1,0,0,6.407235658336704,1.623217824682506,3,43.21,31.62,4,1,0,0,10,2,1,491,0,0,0 +5362,6588,11913,-9,11912,-9,2,1,0,46,2,0,0,0,2,-9,2,1,0,4,8.756995981665163,8.55207242589327,0,3,0,0,0,-9,0,-910.9476463841235,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,38,41,15,1,0,-9,1,20.41276202208963,20.41276202208963,0,0,0,0,0,0,0,1,1,0,4.052328982004116,0,2.371973227728106,3,53.76,51.1,6,1,0,0,10,5,1,572,0,0,0 +5363,6589,11914,-9,-9,-9,1,1,0,23,2,0,0,0,2,1,2,1,0,4,6.988903103048755,7.34906149636134,0,3,0,0,0,-9,0,-1023.847641840312,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,20,0,15,1,0,-9,0,6.263117789126927,6.263117789126927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,4,2,0,939,0,0,0 +5364,6590,11915,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,7.608578966629537,7.283814395827953,3,0,0,0,-9,0,-1056.187205605159,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.586410030008438,7.980272813975011,0,0,67.51000000000001,35.12,6,1,0,0,12,3,1,637,0,0,0 +5365,6591,11916,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,2,0,6.390671891508187,6.294455788474674,3,0,0,0,-9,0,-1060.808317819837,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,4.518192586846528,0,0,0,0,36.3584978747335,1,1,0,0,6.28319332954608,0,0,47.91,28.34,6,1,0,0,1,2,1,39,0,0,0 +5366,6592,11917,11918,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,7.507134420618772,7.512580749999508,1,0,-9,47,0,2,-9.578944150372743,0,0,0,71,2,3,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.085558722041561,7.304106011810473,0,0,55.37,48.71,7,1,0,0,4,2,1,1717.5,0,0,0 +5366,6592,11918,11917,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,5.021463808808344,5.921248435572705,1,0,-9,47,0,-2,80.96494422548832,0,0,0,73,2,4,3,-9,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.706735601019168,5.267786312818128,0,0,50.63,45.45,7,1,0,0,4,2,1,1717.5,0,0,0 +5367,6593,11919,-9,11922,11920,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.3659197787189,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,0,499.75,0,0,0 +5367,6593,11920,11922,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,4,8.495361562824002,8.660128568355903,0,2,0,-9,17,0,2,-91.70448247716598,0,0,0,38,1,4,1,2,2,2019,1,1,11,2,55,48,15,1,2,1,0,12.03523083471462,12.03523083471462,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,6,1,0,0,7,4,0,499.75,0,0,0 +5367,6593,11921,-9,11922,11920,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.918287728922,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,0,499.75,0,0,0 +5367,6593,11922,11920,-9,-9,1,1,0,38,1,0,2,0,1,1,2,1,0,4,6.867917134942433,6.503700111092667,0,2,0,-9,17,0,-2,9.768790708812009,-9,0,1,40,1,4,1,-9,-9,2019,1,2,11,0,4,0,15,1,2,1,0,26.400338113487,26.400338113487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,1,0,0,7,4,0,499.75,0,0,0 +5368,6594,11923,-9,11925,11926,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.364758090876,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,437.5,0,0,0 +5368,6594,11924,-9,11925,11926,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.91602875324,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,437.5,0,0,0 +5368,6594,11925,11926,-9,-9,1,1,0,38,1,0,2,0,1,-9,1,1,0,5,7.933496028770749,7.619389064534,0,2,0,-9,10,0,2,41.08798615767994,0,0,1,36,1,4,1,2,2,2019,1,2,10,0,24,0,15,1,0,1,0,8.733980805770765,8.733980805770765,0,0,0,0,0,0,0,0,0,0,1.484477927572128,0,0,0,54.1,59.11,7,1,0,0,8,5,1,437.5,0,0,0 +5368,6594,11926,11925,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,4,9.003312035956402,8.881013047978746,0,2,0,-9,10,0,-2,72.23283136458086,0,0,0,38,1,5,1,-9,-9,2019,1,1,10,0,40,38,15,1,1,1,0,25.16787668350322,25.16787668350322,0,0,0,0,0,0,0,0,0,0,5.985947531350248,0,0,0,51,56,5,1,0,0,8,5,1,437.5,0,0,0 +5369,6595,11927,11928,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,4.379799308424206,4.568713302790968,1,0,-9,47,0,-1,117.3973043443039,0,0,0,68,2,3,3,3,3,2019,4,2,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.605174225834745,4.4743455638889,0,0,36.93,56.27,3,1,0,0,5,3,1,175,0,0,0 +5369,6595,11928,11927,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.840680437457463,7.856535999623062,1,0,-9,47,0,1,-46.18715219826479,0,0,0,67,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.680538402580646,7.808045305359967,0,0,52,47,5,1,0,0,5,3,1,175,0,0,0 +5370,6596,11929,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,7.520823410707416,7.636002535703743,3,0,0,0,-9,0,-1004.349969341586,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.860591527059225,7.553717329999469,0,0,48.84,35.96,4,1,0,0,7,3,1,1099,0,0,0 +5371,6597,11930,11931,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,6.796030552678427,7.170492060905609,1,0,-9,9,0,1,57.57446673107221,-9,0,0,71,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.235954429467223,6.930644666036944,0,0,53,47,5,1,0,0,2,3,1,634.5,0,0,0 +5371,6597,11931,11930,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,7.157574936247343,7.095927362533929,1,0,-9,48,0,-1,60.16192146336311,0,0,0,72,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.365931710844066,7.029775492184083,13.18128253507947,3,57.5,37.38,5,1,0,0,2,3,1,634.5,0,0,0 +5372,6598,11932,11933,-9,-9,1,1,0,37,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,3,0,-12,0,0,0,1,49,3,4,3,2,2,2019,4,3,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.01,22.64,2,1,0,0,12,1,0,746.6666666666666,0,0,0 +5372,6598,11933,11932,-9,-9,3,1,1,49,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,3,0,12,0,-9,0,0,37,2,1,3,-9,-9,2019,4,1,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,.7067976444702173,1,48.88,53.01,6,1,0,0,12,1,0,746.6666666666666,0,0,0 +5372,6598,11934,-9,11932,11933,2,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1138.570249435614,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,5,1,0,0,12,1,0,746.6666666666666,0,0,0 +5373,6599,11935,11936,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,5,7.466201740464916,7.875418476411532,0,1,0,-9,34,0,0,141.3278359862113,0,0,0,55,2,3,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,4.879825335161284,4.879825335161284,0,0,0,0,0,0,0,0,0,0,7.185040524781417,0,0,0,54.1,59.11,6,1,0,0,10,3,1,630.5,0,0,0 +5373,6599,11936,11935,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,6.908915421629784,6.710460321274232,0,1,0,-9,34,0,0,-16.32957801903806,0,0,0,55,1,5,1,2,2,2019,1,1,9,0,10,10,15,1,0,1,0,10.84325451161046,10.84325451161046,0,0,0,0,0,0,0,0,0,0,6.870747899034194,0,0,0,57.33,53.46,6,1,0,0,10,3,1,630.5,0,0,0 +5374,6600,11937,11938,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,4,7.876178711561765,7.953196212653574,0,1,0,-9,34,0,2,0,0,0,0,51,2,3,1,2,1,2019,1,1,13,3,60,60,15,1,3,1,0,4.767063728936654,4.767063728936654,0,0,0,0,0,0,0,0,0,0,0,0,9.604718204424142,3,49.35,59.64,5,1,0,0,4,4,1,495.5,0,0,0 +5374,6600,11938,11937,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,3,7.576327111328045,7.762177701156335,0,1,0,-9,34,0,-2,0,0,0,0,53,2,4,1,-9,-9,2019,1,2,9,0,60,70,15,1,0,1,0,3.658126935288387,3.658126935288387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,5,1,0,0,4,4,1,495.5,0,0,0 +5374,6601,11939,-9,11937,11938,3,1,0,18,2,0,0,0,2,1,2,1,0,4,7.572876455232035,7.940128129322649,0,3,0,0,0,-9,0,-952.0673406824816,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,34,0,15,1,1,-9,1,11.80855095910026,11.80855095910026,0,0,0,0,0,0,0,0,0,0,4.207798567080319,0,0,0,41.17,59.44,6,1,0,0,4,3,1,1456,0,0,0 +5375,6602,11940,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,4,6.964571399637101,8.088245453340415,7.267307692949698,3,0,0,0,-9,0,-1016.630927038741,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,16,15,15,1,1,-9,0,11.25891051431286,11.25891051431286,0,0,0,0,0,0,0,1,1,0,6.853595260849119,7.323978959811825,0,0,57.16,56.15,6,1,0,0,9,4,1,405,0,0,0 +5376,6603,11941,11942,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,7.215329310812175,7.599136115004637,1,0,-9,57,0,1,37.87196812837419,0,0,0,75,3,1,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,.4300567979081622,0,0,0,0,1,1,0,0,7.407991190105021,0,0,53,47,5,1,0,0,11,2,1,372.5,0,0,0 +5376,6603,11942,11941,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,57,0,-1,31.2680664511462,0,0,0,76,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,1.480452999907866,0,0,0,0,1,1,0,0,0,0,0,57,14.74,6,1,0,0,11,2,1,372.5,0,0,0 +5377,6604,11943,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,4,0,5.64742834732334,5.704840604006483,3,0,0,0,-9,0,-851.2691745339454,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.686442261295744,5.456213137982648,0,3,57.16,56.15,6,1,0,0,5,2,1,1278,0,0,0 +5378,6605,11944,11947,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.277784556374767,7.934161224832208,0,2,0,-9,11,0,-5,55.44809614136589,0,0,1,42,1,4,1,2,2,2019,1,2,9,0,31,64,15,1,0,1,0,14.50540689798351,14.50540689798351,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,2,5,1,253.25,0,0,0 +5378,6605,11945,-9,11944,11947,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.680533378122,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,253.25,0,0,0 +5378,6605,11946,-9,11944,11947,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.843054237533,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,253.25,0,0,0 +5378,6605,11947,11944,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,8.938670977617715,8.804816855596407,0,2,0,-9,11,0,5,7.308402560119954,0,0,0,37,1,4,1,2,2,2019,1,1,9,0,37,37,15,1,0,1,0,26.02920973152063,26.02920973152063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.01,53.44,6,1,0,0,2,5,1,253.25,0,0,0 +5379,6606,11948,11949,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,6.900827577835365,7.440283523205866,1,0,-9,60,0,2,-102.4249756118817,0,0,0,79,2,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4405289933334416,7.180736650179987,0,0,44.98,57.48,6,1,0,0,5,2,1,1183,0,0,0 +5379,6606,11949,11948,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,2,0,6.539725680737142,6.842165547108189,1,0,-9,60,0,-2,6.407984494512981,0,0,0,81,2,4,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.994311843660112,6.147016293269507,0,0,50.5,40.48,6,1,0,0,5,2,1,1183,0,0,0 +5380,6607,11950,11951,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,5.324138548319945,5.804574916285984,1,0,-9,45,0,-1,-25.54526422590463,0,0,0,71,2,4,1,3,3,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,1,0,11.75961089519095,0,0,0,0,1,1,0,0,5.324992343175079,0,0,59.48,22.69,5,1,0,0,5,2,1,482.5,0,0,0 +5380,6607,11951,11950,-9,-9,2,1,1,71,1,0,0,0,2,-9,1,1,0,4,6.561797949581842,7.120010303870595,5.735518577261669,1,0,-9,46,0,1,184.2780470632754,0,0,0,70,2,3,3,3,3,2019,2,1,9,0,25,0,15,1,0,4,0,3.348024400953199,3.348024400953199,0,0,0,0,0,0,0,1,1,0,5.93376387588892,5.438333895739598,46.49062042001056,1,62.49,55.09,5,1,0,0,5,2,1,482.5,0,0,0 +5381,6608,11952,11953,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,2.969187292068017,2.954513463614536,1,0,-9,50,0,-3,30.13697147667772,0,0,0,73,3,3,1,2,2,2019,3,2,16,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.216675083212132,0,0,50.35,48.32,5,1,0,0,2,3,1,373.5,0,0,0 +5381,6608,11953,11952,-9,-9,2,1,1,73,1,0,0,0,3,-9,1,1,0,3,8.0846045522828,8.335495684292372,0,1,0,-9,50,0,3,40.84475614517636,0,0,0,70,2,3,3,3,3,2019,2,1,11,1,60,80,15,1,1,4,0,6.211440349280125,6.211440349280125,0,0,0,0,0,0,0,1,1,0,4.538322706640439,0,0,0,40.31,57.72,5,1,0,0,2,3,1,373.5,0,0,0 +5382,6609,11954,11955,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,3,0,8.480871977015973,8.328426509676474,1,0,-9,7,0,2,-5.136834918004385,0,0,0,74,1,3,1,2,-9,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.285307625192781,8.694295232730363,0,0,56.16,47.11,6,1,0,0,4,4,1,288.5,0,0,0 +5382,6609,11955,11954,-9,-9,2,1,0,74,1,0,0,0,1,-9,1,1,0,3,7.261313631610709,7.412294085265126,7.2566585777952,1,0,-9,7,0,-2,-42.90891844093006,0,0,0,76,1,3,3,3,3,2019,2,1,9,0,30,15,15,1,0,4,0,6.121580207063804,6.121580207063804,1,0,0,0,0,0,0,1,1,0,4.115900215427515,7.075951342321038,0,0,61.04,39.41,6,1,0,0,4,4,1,288.5,0,0,0 +5383,6610,11956,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,6.672683674578634,6.878073272044755,3,0,0,0,-9,0,-879.6890496176968,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,1,0,0,2.726890465008415,0,0,0,1,1,0,7.57654263257387,6.85515226752545,0,0,43.87,29.1,5,4,0,0,8,2,1,1737,0,0,0 +5384,6611,11957,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,-9,0,-1092.987126982156,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,41.75,4,2,0,0,9,1,0,231,0,0,0 +5385,6612,11958,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,13,-9,-2,-204.8837028866562,-9,0,0,-9,-9,-9,-9,2,1,2019,1,2,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.197135187283477,0,0,0,50.95,46.41,6,1,0,0,8,5,1,1185,0,0,0 +5385,6613,11959,-9,-9,-9,2,1,1,48,2,0,0,0,1,-9,1,1,0,4,9.786880567187142,9.898875646654604,0,1,0,-9,1,-9,2,46.48973856951661,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,8,0,55,0,15,1,0,-9,0,37.28451532083785,37.28451532083785,0,0,0,0,0,0,0,0,0,0,5.236932922369355,0,0,0,49.41,58.28,6,1,0,0,8,5,1,883,0,0,0 +5386,6614,11960,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,2,1,0,4,8.176731571076649,7.951959196375411,0,3,0,0,0,-9,0,-1139.583305433947,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,37,45,15,1,4,-9,0,10.21645685089656,10.21645685089656,0,0,0,0,0,0,0,0,0,0,1.034902187870991,0,0,0,28.9,59.74,5,1,0,0,5,4,1,507,0,0,0 +5387,6615,11961,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,4,0,7.654349643738835,7.467930494900782,3,0,0,0,-9,0,-1011.216313042882,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.294319602874692,7.894089503655242,0,0,56.35,48.3,7,1,0,0,1,3,1,669,0,0,0 +5388,6616,11962,11963,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,7.56445808175203,7.414538282196663,1,0,-9,49,0,0,-103.2403484948126,0,0,0,69,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.882722158304546,7.608797029031045,0,0,62.49,55.09,6,1,0,0,7,3,1,365.5,0,0,0 +5388,6616,11963,11962,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,6.986495692091506,7.201967914418358,1,0,-9,49,0,0,20.7695654080345,0,0,0,69,3,4,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.083589552686809,0,0,41.42,32.65,3,1,0,0,7,3,1,365.5,0,0,0 +5389,6617,11964,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,2,1,0,4,7.846318305204476,7.750429976464747,0,3,0,0,0,-9,0,-1043.086440750589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,36,36,15,1,1,-9,0,7.211902578986339,7.211902578986339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,6,1,0,0,13,3,0,931,0,0,0 +5390,6618,11965,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-974.6173710493171,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,12,0,0,15,4,12,-9,0,0,0,1,0,0,0,0,7.321226504408838,0,1,1,0,0,0,0,0,19.91,25.08,2,3,0,1,6,1,1,212,0,0,0 +5390,6619,11966,-9,-9,-9,2,1,0,30,3,0,0,0,2,-9,2,1,0,4,7.514601471269678,7.412669866936896,0,3,0,0,0,-9,0,-979.8338390664588,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,38,36,15,1,10,-9,0,6.083680894023476,6.083680894023476,0,0,0,0,0,0,0,1,1,0,0,0,32.28963915899364,3,24.38,61.98,3,3,0,0,6,3,1,365,0,0,0 +5391,6620,11967,11968,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.764851003104708,8.837662962226561,0,1,0,-9,6,0,0,10.40590630957065,0,0,0,55,2,3,1,-9,-9,2019,1,2,7,0,60,50,15,1,0,1,0,14.0653886850212,14.0653886850212,0,0,0,0,0,0,0,0,0,0,3.535945906556749,0,0,0,50.06,55.28,7,1,0,0,7,5,1,314,0,0,0 +5391,6620,11968,11967,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.500305945398466,8.855924684354584,0,1,0,-9,6,0,0,-12.94624640521003,0,0,0,55,2,4,1,-9,-9,2019,1,1,8,0,42,37,15,1,0,1,0,19.4546014570972,19.4546014570972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,7,1,0,0,7,5,1,314,0,0,0 +5391,6621,11969,-9,11968,11967,3,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-925.3073577151358,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.267597407244991,0,0,0,48,59,5,1,0,0,7,1,1,2437,0,0,0 +5392,6622,11970,11972,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,4,8.042954463256756,7.72570453013079,0,2,0,-9,7,0,-10,6.061905465902862,0,0,1,40,2,2,1,-9,-9,2019,1,1,7,0,40,42,15,1,0,1,0,8.96976282725254,8.96976282725254,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.13,49.27,6,1,0,0,2,5,1,1028,0,0,0 +5392,6622,11971,-9,11970,11972,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.324081405664,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,1028,0,0,0 +5392,6622,11972,11970,-9,-9,1,1,1,40,1,1,1,0,2,-9,2,1,0,2,8.910055722651828,8.978556900984181,0,2,0,-9,7,0,10,-128.0360663547273,0,0,0,30,2,4,1,2,2,2019,1,2,10,0,45,40,15,1,0,1,0,19.08465524543274,19.08465524543274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,43.66,6,1,0,0,2,5,1,1028,0,0,0 +5393,6623,11973,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,6.77450387366965,6.897712867186273,3,0,0,0,-9,0,-930.9456284981029,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.733032077027389,0,0,50,47,5,1,0,0,2,2,1,1870,0,0,0 +5394,6624,11974,-9,11975,11976,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.611801849483,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,525.6666666666666,0,0,0 +5394,6624,11975,11976,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,4,8.597034335649557,8.561661592919377,0,2,0,-9,7,0,2,-11.84835874946043,0,0,1,30,1,3,1,2,-9,2019,1,2,11,0,24,45,15,1,0,1,0,19.82621354324797,19.82621354324797,0,0,0,0,0,0,0,1,1,0,1.300830356712007,0,0,0,54.2,57.49,6,1,0,0,5,5,1,525.6666666666666,0,0,0 +5394,6624,11976,11975,-9,-9,2,1,1,30,1,1,1,0,1,-9,2,1,0,3,8.401559966918915,8.594991504846293,0,2,0,-9,7,0,-2,-6.796487944761318,0,0,0,32,1,4,1,3,2,2019,1,1,11,3,42,45,15,1,3,1,0,14.27859347603247,14.27859347603247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,5,5,1,525.6666666666666,0,0,0 +5395,6625,11977,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,3,0,7.337155313388354,7.313565318415801,3,0,0,0,-9,0,-1065.748112103714,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.719787536502139,7.41432684629762,0,0,62.18,36.18,6,1,0,0,8,3,1,1342,0,0,0 +5396,6626,11978,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1114.556433800543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,11.30918247888298,0,0,0,4.981440483878695,24.71593044323014,1,1,0,0,0,0,0,38.99,33.73,4,1,0,0,13,1,0,1659,0,0,0 +5397,6627,11979,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,4,0,5.855881475998119,5.753155608005764,3,0,0,0,-9,0,-1047.978631280938,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.74975355522144,0,0,56.18,53.85,5,1,0,0,7,2,0,1011,0,0,0 +5398,6628,11980,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,5.662671772865952,5.603780188521268,3,0,0,0,-9,0,-1113.574779089613,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.338521941964285,5.798048511381323,0,0,59.42,35.1,6,1,0,0,4,2,1,1381,0,0,0 +5399,6629,11981,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,2,8.227977338163873,8.084403454659265,0,3,0,0,0,-9,0,-1083.925687762841,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,29,12,37,50,15,1,12,-9,0,10.00159923297515,10.00159923297515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,55.89,2,1,0,0,10,4,0,195,0,0,0 +5400,6630,11982,11983,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,2,8.362057232990768,7.940072500686868,0,1,0,-9,8,0,-12,-54.53054027305322,0,0,1,42,2,3,1,2,2,2019,1,2,10,0,40,37,15,1,0,1,0,13.15563217684827,13.15563217684827,0,0,0,0,0,0,0,0,0,0,4.107388901111369,0,0,0,51.25,48.45,6,1,0,0,2,5,1,201,0,0,0 +5400,6630,11983,11982,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,3,9.105645178651303,9.046601112745408,0,1,0,-9,8,0,12,129.2164593225873,0,0,0,30,1,2,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,18.96664958442842,18.96664958442842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,5,1,0,0,2,5,1,201,0,0,0 +5401,6631,11984,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,2,1,0,3,8.066425616824016,8.013793721281438,0,3,0,0,0,-9,0,-934.6563174298788,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,46,40,15,1,0,-9,0,7.094015634067633,7.094015634067633,0,0,0,0,0,0,0,0,0,0,3.102275244539028,0,0,0,61.83,42.07,6,1,0,0,11,4,1,186,0,0,0 +5402,6632,11985,-9,-9,-9,1,1,1,69,3,1,2,0,1,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-910.02811003647,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.400118886085072,0,0,0,61.63,24.55,6,1,0,0,8,1,1,1410,0,0,0 +5402,6633,11986,-9,-9,11985,2,1,1,32,2,1,2,0,1,-9,2,1,0,2,8.52512210371232,8.70084110561333,0,3,0,0,0,-9,0,-948.6873271475413,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,42,30,15,1,1,-9,1,15.78280284406794,15.78280284406794,0,0,0,0,0,0,0,1,1,0,.5524272902391493,0,0,0,58.14,48.07,5,1,0,0,8,5,1,301,0,0,0 +5402,6634,11987,-9,11989,11988,5,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-896.942742883258,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,4,1,932.25,0,0,0 +5402,6634,11988,11989,-9,-9,3,1,1,32,1,1,2,0,3,-9,2,1,0,3,8.63125641403513,8.581195415027221,0,2,0,-9,1,-9,2,41.24973561434025,-9,0,0,30,1,3,1,-9,-9,2019,1,4,8,0,42,0,15,1,0,1,0,17.54634491919525,17.54634491919525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,2,5,0,0,8,4,1,932.25,0,0,0 +5402,6634,11989,11988,-9,11985,4,1,0,30,1,1,2,0,1,-9,5,1,0,3,7.780252231827919,7.36709980215495,0,2,0,-9,1,-9,-2,-39.04892076469322,-9,0,1,32,3,3,1,-9,1,2019,1,3,12,1,25,0,15,1,1,1,0,9.226978237952526,9.226978237952526,0,0,0,0,0,0,0,1,1,0,4.527897389747962,0,0,0,47.15,56.66,6,1,0,0,8,4,1,932.25,0,0,0 +5402,6634,11990,-9,11989,11988,6,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1064.973856970105,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,4,1,932.25,0,0,0 +5403,6635,11991,11992,-9,-9,1,1,0,28,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,5,0,1,0,0,1,1,27,2,4,3,3,-9,2019,4,2,15,2,0,39,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.33,43.58,3,1,1,1,5,1,0,421.5,0,0,0 +5403,6635,11992,11991,-9,-9,2,1,1,27,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,5,0,-1,0,0,1,0,28,2,2,3,-9,-9,2019,4,1,24,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,65.69,2,1,1,1,5,1,0,421.5,0,0,0 +5404,6636,11993,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-953.7369720469769,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.56,12.91,2,1,0,0,13,1,0,754,0,0,0 +5405,6637,11994,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,4.890711459633303,4.550647710153648,3,0,0,0,-9,0,-987.9177942583129,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.457106157997313,0,0,54.96,53.17,6,1,0,0,6,2,1,227,0,0,0 +5406,6638,11995,11996,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,3.742113420890895,3.578494179884223,1,0,-9,6,0,-13,-124.7444915405689,0,0,0,80,2,3,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.253728631652648,3.51361794036876,118.1482973475097,2,53.23,47.51,3,1,0,0,13,1,1,960.5,0,0,0 +5406,6638,11996,11995,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,13,-56.18931756736202,0,0,0,67,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.909579335638008,0,0,0,54,46,6,5,0,0,13,1,1,960.5,0,0,0 +5407,6639,11997,11999,-9,-9,1,1,1,38,1,1,3,0,3,-9,2,1,0,3,7.782718270720147,7.829988149047118,0,2,0,-9,13,0,-7,-16.47558035863071,0,0,0,45,3,2,3,3,3,2019,2,2,9,0,32,32,15,1,0,3,0,7.526552737537659,7.526552737537659,0,0,0,0,0,0,0,1,1,0,0,0,4.13161234729746,3,47.53,46.05,4,3,0,0,6,2,1,947.8,0,0,0 +5407,6639,11998,-9,11999,11997,3,1,1,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.329894103164,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,2,1,947.8,0,0,0 +5407,6639,11999,11997,-9,-9,2,1,0,45,1,1,3,0,3,-9,6,3,0,2,0,0,0,2,0,-9,12,0,7,-87.2053525881864,0,0,0,38,3,3,1,3,3,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.72,39.84,5,3,0,0,6,2,1,947.8,0,0,0 +5407,6639,12000,-9,11999,11997,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.2558750152219,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,2,1,947.8,0,0,0 +5407,6639,12001,-9,11999,11997,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.068740025151,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,947.8,0,0,0 +5408,6640,12002,-9,12003,12005,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.5346608297436,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,2,5,1,1828.25,0,0,0 +5408,6640,12003,12005,-9,-9,2,1,0,34,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-2,-1.200264742291532,0,0,1,36,2,3,1,-9,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.177374867008392,0,0,0,58.15,52.91,6,3,0,0,2,5,1,1828.25,0,0,0 +5408,6640,12004,-9,12003,12005,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.0120803339175,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,3,0,0,2,5,1,1828.25,0,0,0 +5408,6640,12005,12003,-9,-9,1,1,1,36,1,1,2,0,2,-9,1,1,0,3,9.386562563992644,9.100266867215947,0,2,0,-9,7,0,2,-19.20752225683664,0,0,0,34,1,4,3,1,1,2019,2,2,11,1,34,33,15,1,1,3,0,39.24290479364454,39.24290479364454,0,0,0,0,0,0,0,0,0,0,7.212359628431459,0,0,0,55.51,51.57,5,3,0,0,2,5,1,1828.25,0,0,0 +5409,6641,12006,12007,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,4,8.566246880541176,8.519047108566447,0,1,0,-9,1,-9,-2,60.60483763563956,-9,1,1,25,1,5,1,-9,-9,2019,1,1,6,1,47,0,15,1,1,1,0,14.36574021450308,14.36574021450308,0,0,0,0,0,0,0,0,0,0,.4874475642547146,0,0,0,57.16,56.15,6,1,0,0,10,5,0,1582,0,0,0 +5409,6641,12007,12006,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.910708478231712,8.69222749231081,0,1,0,1,1,-9,2,21.35064793561603,0,1,0,23,1,4,1,-9,-9,2019,1,2,11,1,40,39,15,1,1,1,0,15.85056413922092,15.85056413922092,0,0,0,0,0,0,0,0,0,0,2.59412424100231,0,0,0,55.09,55.87,2,1,0,0,10,5,0,1582,0,0,0 +5410,6642,12008,12009,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,3,9.430170913943497,9.394481023475004,0,2,0,-9,21,0,0,-83.11873751346117,0,0,0,43,2,4,1,2,2,2019,1,1,8,0,90,93,15,1,0,1,0,11.04668448059243,11.04668448059243,0,0,0,0,0,0,0,0,0,0,5.308254024290969,0,0,0,44.43,56.74,5,1,0,0,12,5,1,676,0,0,0 +5410,6642,12009,12008,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,4,7.876644029651366,7.893616148689754,0,2,0,-9,21,0,0,81.13754890708651,0,0,1,43,2,3,1,2,2,2019,1,2,16,5,33,0,15,1,5,1,0,10.84956094247564,10.84956094247564,0,0,0,0,0,0,0,0,0,0,0,0,0,3,36.97,58.59,3,1,0,0,12,5,1,676,0,0,0 +5410,6642,12010,-9,12009,12008,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.1380774251905,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,12,5,1,676,0,0,0 +5411,6643,12011,12013,-9,-9,1,1,0,29,1,1,1,0,1,-9,2,1,0,3,8.881485449526503,8.592973126225617,0,2,0,-9,1,-9,-1,-52.19895316105617,-9,1,1,30,2,4,3,1,1,2019,2,2,11,1,44,0,15,1,1,3,0,20.59612805747243,20.59612805747243,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.93,52.64,6,4,0,0,7,4,0,460,0,0,0 +5411,6643,12012,-9,12011,12013,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-900.6844466130451,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,7,4,0,460,0,0,0 +5411,6643,12013,12011,-9,-9,2,1,1,30,1,1,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,1,-9,1,-38.05238285042144,-9,0,0,29,1,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.29,48.49,6,1,1,0,7,4,0,460,0,0,0 +5412,6644,12014,-9,12015,12016,7,1,1,17,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,-9,0,-9,0,-951.4782946628729,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,5,1,2109.333333333333,0,0,0 +5412,6644,12015,12016,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,4,8.43280284608079,8.613223427006766,0,2,0,-9,1,-9,-4,-7.027997407860727,-9,0,1,48,1,3,1,-9,-9,2019,1,1,10,0,35,0,15,1,1,1,0,12.19709006904893,12.19709006904893,0,0,0,0,0,0,0,1,1,0,2.740788853841539,0,0,0,50,54,5,3,0,0,8,5,1,2109.333333333333,0,0,0 +5412,6644,12016,12015,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,3,8.839462008035879,8.430858865296534,0,2,0,-9,25,-9,4,29.31649482523429,-9,0,0,44,2,4,1,3,3,2019,1,2,6,0,50,0,15,1,0,1,0,18.66553785900112,18.66553785900112,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.94,6,3,0,0,8,5,1,2109.333333333333,0,0,0 +5413,6645,12017,12018,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,4,0,-4,-17.96339105620247,0,0,0,68,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.519933732760595,3,49.36,58.53,6,1,0,0,11,2,1,242,0,0,0 +5413,6645,12018,12017,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,5.015228435906587,4.92540018445678,1,0,-9,4,0,4,5.569555407171829,0,0,0,64,2,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.670610842964449,4.972362005566645,0,0,57.33,53.46,6,1,0,0,11,2,1,242,0,0,0 +5414,6646,12019,12020,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,4,5.673994992790434,8.572722077328933,8.264578009975843,1,0,-9,10,0,0,-76.11278141168175,0,0,0,67,2,4,3,2,2,2019,4,1,5,0,0,54,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.512843893291487,8.372119647241554,0,0,57.16,56.15,6,1,0,0,6,5,1,220,0,0,0 +5414,6646,12020,12019,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,8.103950775759861,8.341800094088038,1,0,-9,10,0,9,5.58736402912757,0,0,0,58,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.298176452617704,7.760016386547454,0,0,57.16,56.15,6,1,0,0,6,5,1,220,0,0,0 +5415,6647,12021,12022,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.46942818383233,8.687529222099178,0,1,0,-9,29,0,-6,-28.24121995462571,0,0,0,60,1,3,1,3,3,2019,1,1,10,0,0,20,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8413369024900977,0,0,0,52,53,6,4,0,0,8,5,1,1695.5,0,0,0 +5415,6647,12022,12021,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,3,7.87105407711416,8.133254104413206,0,1,0,-9,35,0,6,100.4494825165767,0,0,0,54,1,4,1,2,2,2019,1,2,10,0,15,15,15,1,0,1,0,18.80888376803686,18.80888376803686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.18,42.9,5,1,0,0,8,5,1,1695.5,0,0,0 +5416,6648,12023,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,1,1,0,5,0,0,0,3,0,0,0,-9,0,-938.6091451806474,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,5,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,4,0,0,8,1,0,440,0,0,0 +5417,6649,12024,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.556136795050719,8.265792439862983,0,1,0,-9,3,0,-3,-18.93594672022515,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,2,9,1,42,43,15,1,1,-9,0,15.1147653234357,15.1147653234357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,9,5,0,1594,0,0,0 +5417,6650,12025,-9,-9,-9,2,1,1,30,2,0,0,0,2,-9,2,1,0,3,8.194893137535326,8.235172820135395,0,1,0,-9,3,0,3,-129.3252310388567,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,9,1,45,37,15,1,1,-9,0,11.65868324643691,11.65868324643691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.38,52.93,5,1,0,0,9,5,0,636,0,0,0 +5418,6651,12026,12028,-9,-9,2,1,0,37,1,1,2,0,2,-9,2,1,0,3,7.955259464156853,8.229087519025464,0,2,0,-9,18,0,-4,-78.61629127611954,0,0,1,41,2,4,1,3,3,2019,1,1,9,0,30,30,15,1,0,1,0,11.5856265093936,11.5856265093936,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,4,0,0,2,3,0,635,0,0,0 +5418,6651,12027,-9,12026,12028,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.468943396927,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,2,3,0,635,0,0,0 +5418,6651,12028,12026,-9,-9,1,1,1,41,1,1,2,0,2,-9,2,1,0,4,7.866162240224174,7.711860517279693,0,2,0,-9,18,0,4,-2.237406539918285,0,0,0,37,2,3,1,2,2,2019,1,2,9,0,38,38,15,1,0,1,0,7.601135574818353,7.601135574818353,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,4,0,0,2,3,0,635,0,0,0 +5418,6651,12029,-9,12026,12028,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.566730465726,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,2,3,0,635,0,0,0 +5419,6652,12030,12031,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,5,0,8.98353102622378,8.949226467459534,1,0,-9,52,0,5,-157.4734422990742,0,0,0,70,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.338841254695524,9.198028347110855,2.264468332855131,3,61.01,53.18,7,1,0,0,7,5,1,541.5,0,0,0 +5419,6652,12031,12030,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,8.218156082010262,7.854589034317669,1,0,-9,51,0,-5,-20.61494532373016,0,0,0,75,1,5,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.124540444188381,7.767679904552018,0,0,52.23,55.6,7,1,0,0,7,5,1,541.5,0,0,0 +5420,6653,12032,12033,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,4,8.127093662929591,8.353016669566752,0,2,0,-9,7,0,-16,70.63404509955977,0,0,0,49,2,3,1,2,2,2019,1,1,7,0,40,40,15,1,0,1,0,9.410435774579355,9.410435774579355,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,398.6666666666667,0,0,0 +5420,6653,12033,12032,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,3,7.731540591430324,7.506200359639287,0,2,0,-9,7,0,16,-75.90167427289042,0,0,0,33,2,4,1,3,3,2019,1,2,9,0,30,30,15,1,0,1,0,7.01063614738552,7.01063614738552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.54,54.24,6,1,0,0,9,4,1,398.6666666666667,0,0,0 +5420,6653,12034,-9,12033,12032,4,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.1729585446745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,398.6666666666667,0,0,0 +5420,6654,12035,-9,12033,12032,3,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-896.4611844231182,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,9,1,1,513,0,0,0 +5421,6655,12036,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.692943595110494,8.624759107181244,0,3,0,-9,0,-9,0,-1008.660746465424,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,42,0,15,1,0,-9,0,16.26271808240709,16.26271808240709,0,0,0,0,0,0,0,0,0,0,2.721996228623584,0,0,0,57.16,56.15,6,1,0,0,4,5,0,992,0,0,0 +5422,6656,12037,12038,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,3,9.183421604609466,9.128742776057237,0,2,0,-9,8,0,1,-11.24769937004515,0,0,0,48,2,3,1,2,2,2019,1,1,2,0,50,43,15,1,0,1,0,23.62532354430469,23.62532354430469,0,0,0,0,0,0,0,1,1,0,2.703631453530157,0,6.304351763575657,3,57.33,53.46,6,1,0,0,5,5,1,286.6666666666667,0,0,0 +5422,6656,12038,12037,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,3,8.66040018423397,8.396320366666258,0,2,0,-9,8,0,-1,121.0490086332415,0,0,0,49,1,3,1,2,-9,2019,1,2,8,0,40,40,15,1,0,1,0,14.08035083300598,14.08035083300598,0,0,0,0,0,0,0,1,1,0,2.298822760116764,0,1.906566276543951,3,57.78,45.1,6,1,0,0,5,5,1,286.6666666666667,0,0,0 +5422,6656,12039,-9,12037,12038,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.2711128981465,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,5,1,286.6666666666667,0,0,0 +5423,6657,12040,12041,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,6.270132862144116,6.54719114262728,1,0,-9,49,0,-6,-108.8485148953628,0,0,0,79,2,3,3,2,2,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.308986684929726,6.612983425464997,64.04985555465383,1,60.52,30.51,6,1,0,0,9,2,1,4404.5,0,0,0 +5423,6657,12041,12040,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,5.883192255459021,5.770694614010361,1,0,-9,49,0,6,-113.1644138294175,0,0,0,73,2,2,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.600709862188427,6.070660399715421,0,0,45.45,27.87,6,1,0,0,9,2,1,4404.5,0,0,0 +5424,6658,12042,-9,12046,12044,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.1587857977864,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,1,662.4,0,0,0 +5424,6658,12043,-9,12046,12044,6,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.948792210426,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,1,662.4,0,0,0 +5424,6658,12044,12046,-9,-9,1,1,1,35,1,0,3,0,2,-9,2,1,0,4,7.592048111397918,7.309116577685502,0,2,0,-9,7,0,2,52.71021345042828,0,0,0,33,2,4,1,2,2,2019,1,2,11,0,32,32,15,1,0,1,0,6.293332552795219,6.293332552795219,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.31,58.29,6,1,0,0,11,2,1,662.4,0,0,0 +5424,6658,12045,-9,12046,12044,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.435797614103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,2,1,662.4,0,0,0 +5424,6658,12046,12044,-9,-9,2,1,0,33,1,0,3,0,2,-9,1,1,0,4,6.974798133954631,6.845581062477359,0,2,0,-9,7,0,-2,51.61432189126746,0,0,1,35,2,4,1,2,2,2019,1,1,6,0,24,18,15,1,0,1,0,5.177784406288072,5.177784406288072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,2,1,662.4,0,0,0 +5424,6659,12047,12048,-9,-9,5,1,1,29,1,0,3,0,2,-9,2,1,0,4,7.404424288020436,7.364665963771233,0,2,0,1,1,-9,6,-81.00410176015126,0,1,0,23,2,4,1,-9,-9,2019,1,7,10,0,40,40,15,1,1,1,0,4.952946749290541,4.952946749290541,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,1,0,0,11,2,1,1334,0,0,0 +5424,6659,12048,12047,-9,-9,7,1,0,23,1,0,3,0,2,-9,2,1,0,4,7.561451202559078,7.503425444715317,0,2,0,-9,1,-9,-6,-155.5647583773566,-9,1,1,29,2,4,1,-9,-9,2019,1,5,11,0,39,0,15,1,2,1,0,4.917001726979411,4.917001726979411,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,5,0,0,11,2,1,1334,0,0,0 +5425,6660,12049,-9,12051,12050,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.7492445801098,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,4,1,841.6666666666666,0,0,0 +5425,6660,12050,12051,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.008572754018598,8.080138950300972,0,2,0,-9,10,0,19,40.43403449873133,0,0,0,30,2,1,1,2,1,2019,1,2,15,3,48,48,15,1,3,1,0,6.858374852697406,6.858374852697406,0,0,0,0,0,0,0,1,1,0,6.705633028089697,0,0,0,40.36,39.61,4,3,0,0,6,4,1,841.6666666666666,0,0,0 +5425,6660,12051,12050,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,1,7.844101770861066,7.713786290496663,0,2,0,-9,10,0,-19,-.0110892057141821,0,0,1,49,2,4,1,2,-9,2019,1,1,31,12,37,0,15,1,12,1,0,7.244527729264578,7.244527729264578,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.76,21.44,2,3,0,1,6,4,1,841.6666666666666,0,0,0 +5426,6661,12052,12053,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,3,8.338486379885232,7.934870894719365,0,1,0,-9,8,0,4,-129.6088097796159,0,0,0,59,1,3,1,-9,-9,2019,1,1,6,0,37,35,15,1,0,1,0,11.61655246498808,11.61655246498808,0,0,0,0,0,0,0,0,0,0,0,0,19.56168296317937,3,57.33,53.46,6,1,0,0,4,3,1,331.5,0,0,0 +5426,6661,12053,12052,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,3,6.323502665737099,6.293737252579541,0,1,0,-9,8,0,-4,118.0773081938627,0,0,0,63,1,3,1,2,2,2019,1,2,11,0,25,35,15,1,0,1,0,2.349109575128832,2.349109575128832,0,0,0,0,0,0,0,0,0,0,8.360782498893306,0,72.85368444485034,3,57.33,53.46,6,2,0,0,4,3,1,331.5,0,0,0 +5427,6662,12054,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,2,8.890934407779387,8.91153903029301,0,3,0,0,0,-9,0,-1044.494179227173,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,24,58,15,1,0,-9,0,33.26457209026577,33.26457209026577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.95,36.04,3,4,0,1,8,5,1,344,0,0,0 +5428,6663,12055,12056,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,6.500026517292302,6.317846619601386,1,0,-9,45,0,3,-51.04620822707197,0,0,0,63,3,1,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.079719218722295,6.406856977823003,4.352597360013884,3,57.33,53.46,6,1,0,0,6,2,1,763.5,0,0,0 +5428,6663,12056,12055,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,1,0,4.169317733128848,4.112609168425075,1,0,-9,45,0,-3,43.48056525910186,0,0,0,66,2,3,3,3,3,2019,4,1,23,10,0,22,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.482379215584518,4.331255815056313,0,0,31.63,37.11,2,1,0,0,6,2,1,763.5,0,0,0 +5429,6664,12057,-9,12061,12058,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.4340173460378,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,1,0,654.8,0,0,0 +5429,6664,12058,12061,-9,-9,2,1,1,31,1,0,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,-1,0,0,0,0,32,2,3,3,2,3,2019,4,1,20,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.53,38.15,6,1,1,0,8,1,0,654.8,0,0,0 +5429,6664,12059,-9,12061,12058,4,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.4182601916953,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,1,0,654.8,0,0,0 +5429,6664,12060,-9,12061,12058,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.9758119851997,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,1,0,654.8,0,0,0 +5429,6664,12061,12058,-9,-9,1,1,0,32,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,7,0,1,0,0,0,1,31,2,4,3,2,-9,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.15039454375994,3,38.01,29.53,4,1,1,0,8,1,0,654.8,0,0,0 +5430,6665,12062,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-931.9350378079467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.510689955688728,0,0,0,51,46,6,1,0,0,5,1,1,107,0,0,0 +5430,6666,12063,-9,12062,-9,2,1,0,41,2,0,0,0,3,-9,2,1,0,4,7.76825580713558,7.831514106513304,0,3,0,0,0,-9,0,-1022.43120987589,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,39,40,15,1,8,-9,1,7.252518710309205,7.252518710309205,0,0,0,0,0,0,0,1,1,0,0,0,18.0366022994395,3,36.72,59.86,6,1,0,0,5,3,1,276,0,0,0 +5431,6667,12064,12065,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.483559690290685,8.383996678862097,1,0,-9,24,0,1,-85.37596176408491,0,0,0,70,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.041044886111645,8.672097761558662,0,0,57.16,56.15,6,1,0,0,7,4,1,2077,0,0,0 +5431,6667,12065,12064,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.716768511672267,5.410867923565141,1,0,-9,24,0,-1,50.34705616422833,0,0,0,71,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.083600521215454,5.584239829582057,0,0,57.16,56.15,6,1,0,0,7,4,1,2077,0,0,0 +5432,6668,12066,12067,-9,-9,2,1,0,72,1,0,0,0,1,-9,1,1,0,3,8.92102913556222,9.322829390188701,8.279457127766024,1,0,-9,44,0,-5,2.436927849738404,0,0,0,77,1,2,1,3,2,2019,1,1,13,1,60,84,15,1,1,1,0,12.57830459347295,12.57830459347295,0,0,0,0,0,0,0,1,1,0,5.401005825782901,8.424421129904015,0,0,43.53,47.33,3,1,0,0,2,5,1,782.5,0,0,0 +5432,6668,12067,12066,-9,-9,1,1,1,77,1,0,0,0,1,-9,1,1,0,2,7.882513406557091,8.150433548715801,0,1,0,-9,44,0,5,-44.38456158857988,0,0,0,72,1,3,1,2,1,2019,1,2,10,0,0,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.081267351152454,0,0,0,46.56,35.45,6,1,0,0,2,5,1,782.5,0,0,0 +5433,6669,12068,12069,-9,-9,2,1,1,52,1,0,0,0,1,-9,1,1,0,3,8.269985577060904,8.180455588859282,0,1,0,-9,33,0,-1,96.11534283673828,0,0,0,53,1,2,1,2,2,2019,1,1,13,3,66,42,15,1,3,1,0,8.179996945943497,8.179996945943497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.29,47.89,6,1,0,0,7,4,1,1114.5,0,0,0 +5433,6669,12069,12068,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,2,6.47275359599819,6.575859364398593,0,1,0,-9,32,0,1,60.17197580018104,0,0,0,52,1,3,1,3,3,2019,1,2,16,4,60,70,15,1,4,1,0,1.172485476731651,1.172485476731651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.6,24.99,5,1,0,0,7,4,1,1114.5,0,0,0 +5434,6670,12070,12071,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,3,8.33817611516854,8.236282677653827,0,1,0,-9,20,0,2,25.93492310031331,0,0,0,44,1,4,1,2,2,2019,1,2,12,0,40,39,15,1,0,1,0,9.408234043557309,9.408234043557309,0,0,0,0,0,0,0,0,0,0,7.630571411748208,0,0,0,50.51,42.98,6,3,0,0,12,5,1,810.5,0,0,0 +5434,6670,12071,12070,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,4,9.065745286237727,8.882893715987349,0,1,0,-9,20,0,-2,-31.34135924409127,0,0,0,46,1,3,1,3,3,2019,1,1,6,0,39,38,15,1,0,1,0,21.70223047531643,21.70223047531643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,3,0,0,12,5,1,810.5,0,0,0 +5435,6671,12072,-9,-9,-9,1,1,0,29,2,0,2,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-945.3815898099866,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.09,26.09,3,1,1,0,10,1,0,696.3333333333334,0,0,0 +5435,6671,12073,-9,12072,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-999.5604049807624,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,1,0,696.3333333333334,0,0,0 +5435,6671,12074,-9,12072,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-892.2010475812067,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,1,0,696.3333333333334,0,0,0 +5436,6672,12075,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,1,1,0,3,7.579608654448647,7.316214773466174,0,3,0,0,0,-9,0,-948.4905150663053,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,21,15,1,0,-9,0,4.753127734053201,4.753127734053201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,2,1,803,0,0,0 +5436,6673,12076,-9,12075,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.182475396182438,8.104130152833633,0,3,0,0,0,-9,0,-831.6684742706539,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,39,0,15,1,0,-9,1,8.966166252147779,8.966166252147779,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,12,4,1,198,0,0,0 +5437,6674,12077,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-896.5976965820956,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,38,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.366125378262399,0,0,0,51.79,48.18,3,1,1,0,5,1,0,266,0,0,0 +5438,6675,12078,12079,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,8,84.91606950150343,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52.35,46.12,6,1,0,0,2,1,1,1452.5,0,0,0 +5438,6675,12079,12078,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,4.964582221708523,4.48722416973701,1,0,-9,7,0,-8,-9.618162838428493,0,0,0,77,3,3,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.940429274747495,4.505637391171414,0,0,52.84,42.9,5,1,0,0,2,1,1,1452.5,0,0,0 +5439,6676,12080,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,3,3,0,3,0,7.971711610687392,7.847201867494919,3,0,0,0,-9,0,-1072.623215682159,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.000940879308004,0,0,54,46,6,4,1,0,8,3,0,306,0,0,0 +5440,6677,12081,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,4.499238999642539,4.837016075746122,3,0,0,0,-9,0,-950.0425962338963,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.412014876234762,4.737572728289627,0,0,49.05,50.32,3,1,0,0,12,1,0,1014,0,0,0 +5441,6678,12082,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,5,0,6.057351015852835,5.852934620302467,3,0,0,0,-9,0,-985.2011196992023,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.10057109196882,13.33560517585766,3,48.77,60.16,5,1,0,0,5,2,1,98,0,0,0 +5442,6679,12083,-9,-9,-9,1,1,0,96,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-833.2594369819279,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,43,6,1,0,0,13,1,1,229,0,0,0 +5443,6680,12084,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,5.70708028117676,5.739369146198048,3,0,0,0,-9,0,-1053.666326471016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.572480213533241,6.146183496656312,0,0,58.61,40.49,5,1,0,0,5,2,1,1211,0,0,0 +5444,6681,12085,-9,12087,12086,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.8052805395121,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,8,5,1,289.8,0,0,0 +5444,6681,12086,12087,-9,-9,4,1,1,43,1,1,3,0,1,-9,2,1,0,5,9.169392411762747,9.085541229723622,0,2,0,-9,5,0,4,-28.48852298264401,0,0,0,39,1,4,1,-9,-9,2019,1,1,10,0,80,60,15,1,0,1,0,16.03607757826081,16.03607757826081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.67,62.66,5,1,0,0,8,5,1,289.8,0,0,0 +5444,6681,12087,12086,-9,-9,1,1,0,39,1,1,3,0,1,-9,2,1,0,4,10.09975345661766,9.871694341809556,0,2,0,-9,5,0,-4,-22.18484330519185,0,0,1,43,1,5,1,1,1,2019,1,4,11,1,32,40,15,1,1,1,0,74.06412218176615,74.06412218176615,0,0,0,0,0,0,0,0,0,0,9.604120321234589,0,0,0,51.24,58.84,4,1,0,0,8,5,1,289.8,0,0,0 +5444,6681,12088,-9,12087,12086,2,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.280738103333,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,289.8,0,0,0 +5444,6681,12089,-9,12087,12086,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.063640986245,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,289.8,0,0,0 +5445,6682,12090,12091,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,4,8.682838595798152,8.713202164173566,0,1,0,-9,3,0,3,33.65533051039985,0,0,0,30,1,3,1,-9,-9,2019,1,1,7,1,60,55,15,1,1,1,0,10.31523123140021,10.31523123140021,0,0,0,0,0,0,0,0,0,0,4.205420524156495,0,0,0,57.16,56.15,6,1,0,0,8,5,0,601,0,0,0 +5445,6682,12091,12090,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,3,8.955481952621748,9.405222786437436,0,1,0,-9,3,0,-3,-190.7138937115419,0,0,1,33,1,4,1,-9,-9,2019,1,2,14,2,45,50,15,1,2,1,0,22.94514940842407,22.94514940842407,0,0,0,0,0,0,0,0,0,0,3.972411526797341,0,0,0,46.02,58.57,6,1,0,0,8,5,0,601,0,0,0 +5446,6683,12092,12096,-9,-9,1,1,1,38,1,1,3,0,2,-9,2,1,0,4,8.575608053128819,8.422620285823378,0,2,0,-9,15,0,-3,99.55407365420224,0,0,0,41,1,5,3,2,2,2019,2,2,1,0,40,40,15,1,0,3,0,11.57203079853873,11.57203079853873,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,5,4,0,0,7,3,0,433.4,0,0,0 +5446,6683,12093,-9,12096,12092,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.402093054188,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,4,0,0,7,3,0,433.4,0,0,0 +5446,6683,12094,-9,12096,12092,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.67645928923,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,4,0,0,7,3,0,433.4,0,0,0 +5446,6683,12095,-9,12096,12092,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.771691008971,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,4,0,0,7,3,0,433.4,0,0,0 +5446,6683,12096,12092,-9,-9,2,1,0,41,1,1,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,15,0,3,-69.82557702232744,0,0,1,38,2,4,1,2,2,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.71,60.6,3,4,0,0,7,3,0,433.4,0,0,0 +5447,6684,12097,12098,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,3,8.310326881507244,8.562410693514416,0,2,0,-9,18,0,-1,-45.19673179410547,0,0,0,49,1,4,1,3,3,2019,1,1,12,0,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.820937900364258,0,0,0,43.38,52.86,4,1,0,0,1,5,1,364.5,0,0,0 +5447,6684,12098,12097,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,4,8.995911765764408,8.785266119746218,0,2,0,-9,18,0,1,-22.76650745416121,0,0,0,48,1,3,1,3,2,2019,1,2,17,5,45,47,15,1,5,1,0,20.16572126341182,20.16572126341182,0,0,0,0,0,0,0,1,1,0,2.771564525877868,0,0,0,42.19,58.81,5,1,0,0,1,5,1,364.5,0,0,0 +5448,6685,12099,-9,12100,12102,4,1,0,17,2,0,3,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.248822441499,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.25,53.31,7,3,0,0,6,2,1,584.75,0,0,0 +5448,6685,12100,12102,-9,-9,2,1,0,54,1,0,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,29,0,-3,89.36728035450525,0,0,0,57,3,4,3,3,3,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.29,45.7,7,3,1,0,6,2,1,584.75,0,0,0 +5448,6685,12101,-9,12100,12102,5,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.4935759168079,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,6,2,1,584.75,0,0,0 +5448,6685,12102,12100,-9,-9,1,1,1,57,1,0,3,0,3,-9,3,3,0,4,7.1713025459036,7.440125708877355,0,2,0,-9,29,0,3,-25.43848308592545,0,0,0,54,2,4,3,3,3,2019,4,2,6,0,24,24,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.06,56.15,6,3,1,0,6,2,1,584.75,0,0,0 +5448,6686,12103,-9,12100,12102,3,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-914.6749941182918,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.06,41.58,6,3,0,0,6,2,1,995,0,0,0 +5449,6687,12104,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,2,7.587194334658628,7.633446824466471,0,3,0,0,0,-9,0,-927.137107694798,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,30,40,15,1,9,-9,0,6.967865538176539,6.967865538176539,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.76,20.17,2,1,0,1,9,3,1,337,0,0,0 +5450,6688,12105,-9,-9,-9,1,1,0,84,2,0,0,0,3,-9,4,3,0,2,0,6.982604151345391,6.874456648081352,3,0,0,0,-9,0,-1011.905308725462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.750201975234664,7.01052901663142,0,0,60.14,44.41,6,1,0,0,13,2,1,792,0,0,0 +5451,6689,12106,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,0,7.118448490366821,6.973295784104232,3,0,0,0,-9,0,-986.4047944118221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.539634649335435,0,0,51.6,13.1,4,1,0,1,7,2,0,321,0,0,0 +5452,6690,12107,12109,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.834977543815592,8.457866738835783,0,2,0,-9,6,0,2,125.3411613434842,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,0,40,38,15,1,1,1,0,17.63620724935669,17.63620724935669,0,0,0,0,0,0,0,0,0,0,8.284622086860319,0,0,0,51,56,5,1,0,0,9,5,1,855.3333333333334,0,0,0 +5452,6690,12108,-9,12109,12107,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-870.5454554181442,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,2,0,0,9,5,1,855.3333333333334,0,0,0 +5452,6690,12109,12107,-9,-9,1,1,0,36,1,0,2,0,1,1,2,1,0,4,8.426137274584862,8.694454987765869,0,2,0,-9,12,0,-2,-49.58577236710323,-9,0,1,38,2,4,1,3,3,2019,1,2,16,5,30,0,15,1,5,1,0,16.11169809827135,16.11169809827135,0,0,0,0,0,0,0,0,0,0,3.088276324500383,0,0,0,46.09,47.56,5,4,0,0,9,5,1,855.3333333333334,0,0,0 +5453,6691,12110,12113,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.771703630509712,8.91012122495262,0,2,0,-9,16,0,-1,-36.61393634162946,0,0,1,43,1,4,1,1,1,2019,1,1,10,0,36,35,15,1,0,1,0,24.43918323447933,24.43918323447933,0,0,0,0,0,0,0,0,0,0,6.734847577244721,0,0,0,49.63,57.02,6,1,0,0,12,5,1,868.5,0,0,0 +5453,6691,12111,-9,12110,12113,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.653194264379,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,868.5,0,0,0 +5453,6691,12112,-9,12110,12113,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.985023646069,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,5,1,868.5,0,0,0 +5453,6691,12113,12110,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,9.114302808161396,9.03762345971256,0,2,0,-9,16,0,1,-90.79941330358194,0,0,0,42,1,4,1,2,1,2019,1,2,10,0,43,43,15,1,0,1,0,20.53587426243251,20.53587426243251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,2,1,0,0,12,5,1,868.5,0,0,0 +5454,6692,12114,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,2,7.520250768661981,7.646674635769254,0,4,0,0,0,-9,0,-1113.974263138649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,20,55,15,1,2,-9,0,13.33452147612546,13.33452147612546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.64,41.4,6,1,0,0,5,3,1,292.5,0,0,0 +5454,6692,12115,-9,12114,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1030.735526889088,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,292.5,0,0,0 +5454,6693,12116,-9,12114,-9,2,1,1,22,2,0,1,0,1,1,2,1,0,4,8.017877011026251,7.651017247242548,0,3,0,0,0,-9,0,-1041.617823000504,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,4,40,0,15,1,4,-9,1,6.693250619789926,6.693250619789926,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,5,1,0,0,5,3,1,191,0,0,0 +5455,6694,12117,12118,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,3,0,7.402915817553206,7.883055665642947,1,0,-9,55,0,2,104.2560725555468,0,0,0,74,3,4,3,-9,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,19.88588969726997,0,0,0,0,1,1,0,3.465335236905446,7.132513557453431,0,0,55.11,47.63,5,1,0,0,9,3,1,1141.5,0,0,0 +5455,6694,12118,12117,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,5.967105407261537,6.090720927032883,1,0,-9,55,0,-2,32.51999612441408,0,0,0,76,1,3,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.417903336611209,5.685873189982591,0,0,57.16,56.15,7,1,0,0,9,3,1,1141.5,0,0,0 +5456,6695,12119,12120,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,4.46181336049037,4.008991624174504,1,0,-9,42,0,0,-7.491858555002762,0,0,0,71,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.183163227952493,4.192160844594472,0,0,39.43,51.91,5,1,0,0,4,3,1,662,0,0,0 +5456,6695,12120,12119,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.161826069179419,8.13272186958919,1,0,-9,42,0,0,2.922215839159167,0,0,0,71,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.508979708878529,0,3,52.93,47.44,6,1,0,0,4,3,1,662,0,0,0 +5457,6696,12121,12122,-9,-9,1,1,0,34,1,1,3,0,1,-9,6,3,0,2,0,0,0,2,0,-9,10,0,-5,-103.8668732548889,0,0,1,39,3,4,1,3,3,2019,3,2,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.81,34.49,5,3,0,0,12,2,1,1330.6,0,0,0 +5457,6696,12122,12121,-9,-9,2,1,1,39,1,1,3,0,3,-9,1,1,0,4,7.17234170514657,7.050584847728329,0,2,0,-9,6,0,5,59.81507043368694,0,0,0,34,1,2,3,-9,-9,2019,2,1,9,0,25,0,15,1,1,3,0,6.473792900793381,6.473792900793381,0,0,0,0,0,0,0,1,1,0,.4866847601722038,0,0,0,52,56,5,3,0,0,12,2,1,1330.6,0,0,0 +5457,6696,12123,-9,12121,12122,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.770809512381,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,12,2,1,1330.6,0,0,0 +5457,6696,12124,-9,12121,12122,3,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.83321061304,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,12,2,1,1330.6,0,0,0 +5457,6696,12125,-9,12121,12122,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.527716960027,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,12,2,1,1330.6,0,0,0 +5458,6697,12126,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,4,3,0,3,0,6.13199401770522,5.570286885642808,3,0,0,0,-9,0,-1041.573965838048,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.055274041188991,5.775588747609998,5.247030445909928,3,54.13,48.04,5,1,0,0,11,2,1,120,0,0,0 +5459,6698,12127,12128,-9,-9,2,1,0,48,1,0,0,0,2,-9,4,3,0,4,8.605875596697311,8.402320068119641,0,1,0,-9,28,0,-1,-47.16364267338661,0,0,0,49,1,4,1,1,1,2019,3,1,3,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.331921372326688,0,12.05908665017192,3,55.27,56.95,6,1,0,0,7,5,1,1022,0,0,0 +5459,6698,12128,12127,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,4,8.958168079671115,8.962709143960396,0,1,0,-9,28,0,1,83.8050871987446,0,0,0,48,2,4,3,2,1,2019,2,2,7,0,53,50,15,1,0,4,0,14.51489481932752,14.51489481932752,0,0,0,0,0,0,0,0,0,0,1.188046629674948,0,0,0,57.16,56.15,6,1,0,0,7,5,1,1022,0,0,0 +5459,6699,12129,-9,12127,12128,3,1,1,21,2,0,0,0,2,0,7,2,0,4,7.681236290864114,7.92148486456242,0,3,0,0,0,-9,0,-949.2943200131094,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,6,1,0,0,7,3,1,241,0,0,0 +5460,6700,12130,12131,-9,-9,4,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.474702610319611,8.538316429763221,0,2,0,-9,9,0,1,118.6195472326138,0,0,0,36,1,1,1,2,2,2019,1,1,7,0,38,40,15,1,0,1,0,14.76428637996638,14.76428637996638,0,0,0,0,0,0,0,1,1,0,0,0,43.23028798479638,1,54.79,55.86,5,1,0,0,12,3,0,571.75,0,0,0 +5460,6700,12131,12130,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,1,4.61051740275771,4.71375701081153,0,2,0,-9,9,0,-1,41.27975503883513,0,0,1,37,2,4,1,2,2,2019,1,4,32,12,2,0,15,1,12,1,0,5.072093975221386,5.072093975221386,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.4,22.92,2,1,0,1,12,3,0,571.75,0,0,0 +5460,6700,12132,-9,12131,12130,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-920.1405621639115,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,12,3,0,571.75,0,0,0 +5460,6700,12133,-9,12131,12130,2,1,1,11,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1124.329851202748,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,12,3,0,571.75,0,0,0 +5461,6701,12134,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,4,3,0,4,0,7.278925329338636,7.447577230237979,3,0,0,0,-9,0,-1051.488725617766,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.046456139353865,7.644606392876001,19.98900769682167,3,57.16,56.15,6,1,0,0,4,3,1,460,0,0,0 +5462,6702,12135,-9,12137,12136,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.928275682698,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,0,401.3333333333333,0,0,0 +5462,6702,12136,12137,-9,-9,2,1,1,37,1,1,1,0,2,-9,2,1,0,3,8.260480013930373,8.109286583690306,0,2,0,-9,7,0,-2,5.531001981415876,0,0,0,39,2,5,1,-9,-9,2019,1,1,11,0,38,40,15,1,0,1,0,13.41694399727794,13.41694399727794,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,52.06,4,1,0,0,10,4,0,401.3333333333333,0,0,0 +5462,6702,12137,12136,-9,-9,1,1,0,39,1,1,1,0,2,-9,2,1,0,5,7.527181798902188,7.5469329627564,0,2,0,-9,14,0,2,-89.07658332303988,0,0,1,37,2,3,1,2,3,2019,1,2,9,0,15,15,15,1,0,1,0,11.72602945317168,11.72602945317168,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,6,1,0,0,10,4,0,401.3333333333333,0,0,0 +5463,6703,12138,12141,-9,-9,3,1,1,45,1,1,2,0,2,-9,2,1,0,1,8.199441948452611,8.050167717128531,0,2,0,-9,4,0,8,25.86311223341899,0,0,0,37,2,3,1,-9,-9,2019,1,1,22,9,48,48,15,1,9,1,0,8.121785316896739,8.121785316896739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.83,21.24,3,1,0,0,13,4,1,725,0,0,0 +5463,6703,12139,-9,12141,12138,2,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.8818313169909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,725,0,0,0 +5463,6703,12140,-9,12141,12138,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-838.4709392639218,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,725,0,0,0 +5463,6703,12141,12138,-9,-9,1,1,0,37,1,1,2,0,2,-9,2,1,0,3,8.072185303510899,8.462745515447962,0,2,0,-9,4,0,-8,-62.83230666135531,0,0,1,45,2,1,1,2,2,2019,1,3,15,4,41,0,15,1,4,1,0,12.5952383508283,12.5952383508283,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.86,43.28,4,1,0,0,13,4,1,725,0,0,0 +5464,6704,12142,-9,12144,12143,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.1383166541762,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,1688.333333333333,0,0,0 +5464,6704,12143,12144,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,3,9.300813713609767,9.061546845214286,0,2,0,-9,8,0,7,46.39559655515541,0,0,0,40,1,3,1,-9,-9,2019,1,1,9,0,35,37,15,1,0,1,0,31.95317605477897,31.95317605477897,0,0,0,0,0,0,0,0,0,0,2.691742656411202,0,0,0,57.33,53.46,6,1,0,0,8,5,1,1688.333333333333,0,0,0 +5464,6704,12144,12143,-9,-9,1,1,0,40,1,0,1,0,1,-9,2,1,0,3,8.449211680068045,8.551902648707301,0,2,0,-9,8,0,-7,-85.62306320295632,0,0,1,47,1,3,1,2,1,2019,1,2,11,2,30,25,15,1,2,1,0,24.5056585210713,24.5056585210713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,6,1,0,0,8,5,1,1688.333333333333,0,0,0 +5465,6705,12145,-9,-9,-9,1,1,0,84,2,0,0,0,2,-9,4,3,0,4,0,7.455959021930879,7.16015127376817,3,0,0,0,-9,0,-1095.522119243489,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.57673451536315,7.722782267072129,0,0,49.11,42.15,7,1,0,0,4,3,1,151,0,0,0 +5466,6706,12146,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-918.6178763101019,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,8,0,45,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.95,62.45,3,1,1,1,5,2,1,351,0,0,0 +5467,6707,12147,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,8,3,1,1,0,8.806237264656794,8.679250707651601,3,0,0,0,-9,0,-895.6305631206001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.616211030171742,8.847641784844861,0,0,9.540000000000001,39.36,1,1,0,0,11,5,1,244,0,0,0 +5467,6708,12148,-9,-9,12147,2,1,0,25,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-948.5081439389626,0,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,21,9,0,36,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.71,56.85,3,1,1,1,11,1,1,1456,0,0,0 +5468,6709,12149,12150,-9,-9,1,1,0,34,1,0,0,0,2,-9,2,1,0,3,7.456596137839553,7.573682953490038,0,1,0,-9,4,0,-3,44.42409607595589,0,0,1,37,2,3,1,2,2,2019,1,2,7,0,26,26,15,1,0,1,0,8.667683425924919,8.667683425924919,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,6,1,0,0,12,4,0,1777.5,0,0,0 +5468,6709,12150,12149,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,3,7.839024394028502,7.664111111574458,0,1,0,-9,4,0,3,-87.17699329559839,0,0,0,34,2,3,1,-9,-9,2019,1,1,13,1,44,35,15,1,1,1,0,7.441406640915553,7.441406640915553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.05,47.83,6,1,0,0,12,4,0,1777.5,0,0,0 +5469,6710,12151,12153,-9,-9,2,1,1,45,1,0,1,0,1,-9,1,1,0,4,6.683405477969997,6.752161697967884,0,2,0,-9,7,0,0,19.54651452521894,0,0,0,45,1,5,1,-9,-9,2019,1,1,11,0,20,15,15,1,0,1,0,5.119466415300957,5.119466415300957,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,57.46,5,2,0,0,9,4,1,1884.666666666667,0,0,0 +5469,6710,12152,-9,12153,12151,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.5067842658043,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,9,4,1,1884.666666666667,0,0,0 +5469,6710,12153,12151,-9,-9,1,1,0,45,1,0,1,0,1,-9,2,1,0,5,8.725966124322655,8.570271353824726,0,2,0,-9,7,0,0,-21.27396159834539,0,0,0,45,1,4,1,-9,-9,2019,1,2,8,0,70,35,15,1,0,1,0,12.24728922506739,12.24728922506739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,9,4,1,1884.666666666667,0,0,0 +5470,6711,12154,-9,12156,12155,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.1382225283357,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,0,681.3333333333334,0,0,0 +5470,6711,12155,12156,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.427545029185145,8.459459090857404,0,2,0,-9,15,0,4,-67.03686076414091,0,0,0,32,2,4,1,-9,2,2019,1,2,10,1,37,7,15,1,1,1,0,12.97193007572316,12.97193007572316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,7,4,0,681.3333333333334,0,0,0 +5470,6711,12156,12155,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,4,7.779377238110245,7.772178591302376,0,2,0,-9,15,0,-4,67.18193717302348,0,0,1,36,2,4,1,2,3,2019,1,1,6,0,30,27,15,1,0,1,0,8.033457249836736,8.033457249836736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,6,1,0,0,7,4,0,681.3333333333334,0,0,0 +5471,6712,12157,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,2,1,0,3,7.294073203369459,7.188163443529764,0,3,0,0,0,-9,0,-937.8022904528831,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,20,16,15,1,0,-9,0,6.887628485560186,6.887628485560186,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.29,49.34,4,1,0,0,12,2,0,663.3333333333334,0,0,0 +5471,6712,12158,-9,12157,-9,5,1,0,11,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-987.5622348301908,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,663.3333333333334,0,0,0 +5471,6712,12159,-9,12157,-9,4,1,1,13,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-982.2564495138151,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,2,0,663.3333333333334,0,0,0 +5472,6713,12160,12162,-9,-9,2,1,0,35,1,0,1,0,2,-9,1,1,0,1,6.132499275777424,6.035981544796705,0,2,0,-9,5,0,-22,59.73933355453022,0,0,1,57,2,4,1,-9,-9,2019,1,1,22,7,12,7,15,1,7,1,0,5.086551540947751,5.086551540947751,0,0,0,0,0,0,0,1,1,0,0,0,5.618374357683042,3,44.69,21.73,3,1,0,1,6,4,1,449.6666666666667,0,0,0 +5472,6713,12161,-9,12160,12162,3,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-876.0222827597405,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,6,4,1,449.6666666666667,0,0,0 +5472,6713,12162,12160,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,4,8.712817433530979,8.651680511280883,0,2,0,-9,5,0,22,7.655522986476466,0,0,0,35,2,1,1,3,3,2019,1,2,7,0,41,46,15,1,0,1,0,18.41532490716049,18.41532490716049,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,6,1,0,0,6,4,1,449.6666666666667,0,0,0 +5473,6714,12163,12164,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,5,0,8.107086275179096,8.154854655249522,1,0,-9,9,0,0,118.0516772729064,0,0,0,59,1,3,3,1,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.627033500087312,7.941363634661548,0,0,53.11,54.31,6,1,0,0,2,3,1,629.5,0,0,0 +5473,6714,12164,12163,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,3,0,5.156443414856361,5.407296516897637,1,0,-9,9,0,0,-62.37077117396924,0,0,0,59,1,5,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.705510623188124,5.084144261523846,0,0,47.71,53.93,7,1,0,0,2,3,1,629.5,0,0,0 +5474,6715,12165,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,2,0,6.79287240708632,6.8417635051171,3,0,0,0,-9,0,-1021.605209134045,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.175155535131537,6.333904467705967,0,0,54.85,29.1,5,1,0,0,9,2,1,569,0,0,0 +5475,6716,12166,12168,-9,-9,2,1,0,35,1,0,5,0,3,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-6,16.81069733911754,0,0,1,41,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,4,1,607.75,0,0,0 +5475,6716,12167,-9,12166,12168,3,1,0,15,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1122.277420321027,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,5,3,0,0,8,4,1,607.75,0,0,0 +5475,6716,12168,12166,-9,-9,1,1,1,41,1,0,5,0,1,-9,2,1,0,4,9.436977306191475,9.336862567263752,0,2,0,-9,2,0,6,17.2192802039458,0,0,0,35,3,4,3,2,2,2019,2,2,10,1,43,36,15,1,1,3,0,30.60617139066922,30.60617139066922,0,0,0,0,0,0,0,1,1,0,0,0,11.63534689494366,3,38.94,60.48,7,3,0,0,8,4,1,607.75,0,0,0 +5475,6716,12169,-9,12166,12168,7,1,1,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.070557343975,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,4,1,607.75,0,0,0 +5476,6717,12170,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-942.9343096084125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9790479773004178,0,0,0,39.06,49.8,6,1,0,0,5,1,0,249,0,0,0 +5477,6718,12171,12172,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,6.429181245203716,6.5029914245127,1,0,-9,55,0,-3,35.19000005430848,0,0,0,72,2,4,3,-9,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.675310835632295,0,0,51.99,39.38,5,1,0,0,4,2,1,788,0,0,0 +5477,6718,12172,12171,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.736871622500262,6.456314119630832,1,0,-9,55,0,3,-65.80799266691558,0,0,0,69,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.547726906478863,6.527858351745026,0,0,55.03,44.66,6,1,0,0,4,2,1,788,0,0,0 +5478,6719,12173,12175,-9,-9,2,1,0,45,1,0,3,0,2,-9,1,1,0,2,8.161596468265705,7.941831388707718,0,2,0,-9,17,0,-5,-16.30262049759362,0,0,0,50,1,3,1,2,2,2019,1,1,7,0,60,75,15,1,0,1,0,6.707845209644695,6.707845209644695,0,0,0,0,0,0,0,0,0,0,6.440862070166975,0,0,0,65.04000000000001,20.36,5,1,0,0,2,5,1,909.6666666666666,0,0,0 +5478,6719,12174,-9,12173,12175,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.896582923928,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,2,5,1,909.6666666666666,0,0,0 +5478,6719,12175,12173,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,3,9.121603961085949,9.426499695202684,0,2,0,-9,17,0,5,36.18051747379876,0,0,0,45,2,2,1,2,2,2019,1,2,11,0,50,57,15,1,0,1,0,24.74664835539386,24.74664835539386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76,53.46,3,1,0,0,2,5,1,909.6666666666666,0,0,0 +5479,6720,12176,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,6.33283186716521,6.326652955872505,3,0,0,0,-9,0,-904.8199435391832,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.965502034093565,6.547496736028457,7.517677974498801,3,35.03,63.83,4,1,0,0,1,2,1,432,0,0,0 +5480,6721,12177,12178,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,53,0,-2,-169.4268130035921,0,0,0,73,2,3,3,3,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.594942896691264,0,0,0,43.74,31.35,4,1,0,0,12,2,1,1162,0,0,0 +5480,6721,12178,12177,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.383506906414257,6.61004345416523,1,0,-9,53,0,2,-50.6662052575687,0,0,0,71,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.350861777887616,6.272373487741087,0,0,64.40000000000001,42,7,1,0,0,12,2,1,1162,0,0,0 +5481,6722,12179,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,1,1,0,3,6.935803266518594,7.080867166736459,0,3,0,0,0,-9,0,-1117.41658591775,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,45,40,15,1,7,-9,0,3.067517961796263,3.067517961796263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.41,61.92,4,5,0,0,8,2,0,1227,0,0,0 +5482,6723,12180,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,7.24070765026511,7.509629077355246,3,0,0,0,-9,0,-886.700691744707,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.087511060097577,7.51209801022645,0,0,54.2,57.49,6,1,0,0,6,3,1,754,0,0,0 +5483,6724,12181,-9,12184,12182,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.1971213130709,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,772.25,0,0,0 +5483,6724,12182,12184,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,5,9.375198127718123,9.612974076218974,0,2,0,-9,8,0,3,106.9527656353245,0,0,0,52,2,4,1,-9,-9,2019,1,1,10,1,51,48,15,1,1,1,0,31.97555138013058,31.97555138013058,0,0,0,0,0,0,0,0,0,0,4.998177821424594,0,0,0,55.24,55.87,7,1,0,0,7,5,1,772.25,0,0,0 +5483,6724,12183,-9,12184,12182,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-847.3597796214588,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,772.25,0,0,0 +5483,6724,12184,12182,-9,-9,1,1,0,52,1,0,2,0,2,-9,2,1,0,4,7.973760612069943,7.705170915253767,0,2,0,-9,19,0,-3,-74.33325621840733,0,0,0,55,1,5,1,3,2,2019,1,2,9,0,17,17,15,1,0,1,0,17.67153327723319,17.67153327723319,0,0,0,0,0,0,0,0,0,0,5.987718576782886,0,2.941351206859064,3,54.2,57.49,6,1,0,0,7,5,1,772.25,0,0,0 +5484,6725,12185,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,2,0,6.091135683898262,5.934611056268437,3,0,0,0,-9,0,-1019.184978066033,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.029954887140834,6.059514064367558,0,0,48.95,34.26,3,1,0,0,7,2,0,938,0,0,0 +5485,6726,12186,12187,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,2,0,7.530837829415309,7.385451140929437,1,0,-9,50,0,2,-55.41471149835121,0,0,0,69,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.107737257574002,6.999474215101387,0,0,54.37,33.54,6,1,0,0,6,2,1,983,0,0,0 +5485,6726,12187,12186,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-2,64.06180378381455,0,0,0,71,1,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.477793659998026,0,3.3560629143628,1,51.11,41.35,6,1,0,0,6,2,1,983,0,0,0 +5486,6727,12188,12189,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,1,6.4814450419989,6.726448097705966,0,1,0,-9,43,0,-5,-27.31483738981122,0,0,0,72,2,4,3,2,3,2019,2,1,13,3,14,0,15,1,3,4,0,5.816184689593119,5.816184689593119,1,0,5.575705052626068,0,0,0,0,1,1,0,0,0,0,0,48.37,21.12,6,1,0,0,2,3,1,517.5,0,0,0 +5486,6727,12189,12188,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,7.320002021911846,6.798481873225334,1,0,-9,42,0,5,103.5534345729338,0,0,0,67,2,1,1,3,3,2019,3,2,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.062975117298195,6.998878156570149,0,0,49.91,58.02,6,1,0,0,2,3,1,517.5,0,0,0 +5487,6728,12190,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,1,1,0,4,2.512281537282836,2.640877957652859,0,3,0,0,0,-9,0,-955.4314974856075,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,23,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.821947062337577,0,0,0,44.24,59.44,5,1,0,0,13,2,1,1189,0,0,0 +5488,6729,12191,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,4,7.404846819261468,7.009718423602743,0,1,0,-9,6,0,4,144.2435668475204,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,9,0,22,23,15,1,1,-9,0,6.358155793055605,6.358155793055605,0,0,0,0,0,0,0,0,0,0,4.726160433677854,0,0,0,53,55,6,1,0,0,8,5,1,779,0,0,0 +5488,6730,12192,-9,-9,-9,2,1,1,47,2,0,0,0,1,-9,2,1,0,4,9.161027337602729,8.891998654857485,0,1,0,-9,6,0,-4,75.22472924324374,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,9,0,36,40,15,1,1,-9,0,25.8481500473091,25.8481500473091,0,0,0,0,0,0,0,0,0,0,8.228942774350369,0,0,0,52,55,6,1,0,0,8,5,1,100,0,0,0 +5489,6731,12193,-9,-9,12194,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1014.863630005662,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,1,0,0,2,2,0,812.3333333333334,0,0,0 +5489,6731,12194,-9,-9,-9,1,1,1,49,3,0,2,0,2,-9,8,3,1,1,0,5.72399040716236,5.588396112226376,4,0,0,0,-9,0,-1035.013213733856,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.36784977738615,0,0,0,35.62,25.98,2,1,0,1,2,2,0,812.3333333333334,0,0,0 +5489,6731,12195,-9,-9,12194,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-883.1403774035728,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,5,1,0,0,2,2,0,812.3333333333334,0,0,0 +5490,6732,12196,12197,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,5,8.306336400102349,7.930073485432554,5.989782828120067,1,0,-9,3,0,3,43.45014241704295,0,0,0,48,1,2,1,2,2,2019,1,2,10,0,41,39,15,1,0,1,0,10.59550050230219,10.59550050230219,0,0,0,0,0,0,0,0,0,0,6.186991183046577,0,0,3,48.95,55.86,3,1,0,0,12,4,1,838,0,0,0 +5490,6732,12197,12196,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,2,8.166444381122314,8.077589153013946,0,1,0,-9,3,0,-3,-113.5512778198318,0,0,0,51,2,5,1,-9,-9,2019,1,1,15,4,37,37,15,1,4,1,0,7.588870500124465,7.588870500124465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.1,49.34,5,1,0,1,12,4,1,838,0,0,0 +5491,6733,12198,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1059.686238555072,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,9,0,0,15,3,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,21.57,28.1,1,1,0,0,13,1,0,1738,0,0,0 +5492,6734,12199,12201,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,5,8.070092056511079,8.43263982402485,0,2,0,-9,3,0,-10,-4.255513862257157,0,0,1,47,2,4,1,2,2,2019,1,3,8,0,32,28,15,1,0,1,0,12.66676706887703,12.66676706887703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,6,1,0,0,12,5,1,867.6666666666666,0,0,0 +5492,6734,12200,-9,12199,12201,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.4921456041492,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,5,1,867.6666666666666,0,0,0 +5492,6734,12201,12199,-9,-9,3,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.820193315796139,8.978889333574628,0,2,0,-9,3,0,10,-76.5455568158946,0,0,0,37,1,5,1,-9,-9,2019,1,1,10,1,38,40,15,1,1,1,0,21.46415374547675,21.46415374547675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,5,1,0,0,12,5,1,867.6666666666666,0,0,0 +5493,6735,12202,12203,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.388847432771382,7.342492494677989,1,0,-9,10,0,-6,86.58754583773666,0,0,0,75,1,2,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.462821464113117,7.58774138516496,0,0,56.79,38.59,6,1,0,0,2,4,1,1065.5,0,0,0 +5493,6735,12203,12202,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,7.805457396921175,7.570489116363039,1,0,-9,10,0,6,20.15210138672756,0,0,0,69,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.395440092320949,8.009816653477877,0,0,61.44,22.08,6,1,0,0,2,4,1,1065.5,0,0,0 +5494,6736,12204,12205,-9,-9,3,1,1,58,1,0,1,0,3,-9,2,1,0,3,8.667447526788841,8.43479244936017,0,2,0,-9,4,0,13,65.32203286931208,0,0,0,45,2,2,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,10.70310419716957,10.70310419716957,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.04,39.41,4,1,0,0,6,5,1,601.5,0,0,0 +5494,6736,12205,12204,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,2,7.838355678203154,8.235116549988055,6.633237191402556,2,0,-9,4,0,-13,-7.038489672932676,0,0,0,58,3,3,1,3,3,2019,1,3,12,0,41,38,15,1,0,1,0,7.71799049606654,7.71799049606654,0,0,0,0,0,0,0,1,1,0,6.795848610833655,0,0,0,34.63,52.23,5,1,0,0,6,5,1,601.5,0,0,0 +5495,6737,12206,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,6.730617309851469,6.745337629460905,3,0,0,0,-9,0,-951.2435395129198,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.714548362844797,6.988317288399534,0,0,59.14,52.5,6,1,0,0,7,2,1,1196,0,0,0 +5496,6738,12207,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,1,0,6.881111989810378,6.58726254774186,3,0,0,0,-9,0,-1028.692289308737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.730817241548537,0,0,61.43,24.94,4,1,0,0,5,2,1,295,0,0,0 +5497,6739,12208,12209,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,7.884950859274641,8.106664540423992,1,0,-9,14,0,4,19.50877493294365,0,0,0,63,1,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,6.555797752355336,7.807668982541274,0,0,60.12,54.8,6,1,0,0,9,5,1,885,0,0,0 +5497,6739,12209,12208,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,3,8.66128999391184,8.549733601675962,7.412858863730981,1,0,-9,14,0,-4,25.55105051818895,0,0,0,67,1,4,3,2,2,2019,2,2,12,0,20,24,15,1,0,4,0,25.19945837893142,25.19945837893142,0,0,0,0,0,0,0,1,1,0,0,7.509979714668388,0,0,56.35,48.33,6,1,0,0,9,5,1,885,0,0,0 +5498,6740,12210,12212,-9,-9,1,1,0,39,1,1,1,0,2,-9,5,1,0,5,9.687206127576662,9.505225788562578,0,2,0,-9,4,0,-5,107.9376184606882,0,0,1,44,2,3,1,2,2,2019,1,2,11,0,48,46,15,1,0,1,0,38.31546921884624,38.31546921884624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.71,55.17,6,1,0,0,9,5,1,305,0,0,0 +5498,6740,12211,-9,12210,12212,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1099.075277700434,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,9,5,1,305,0,0,0 +5498,6740,12212,12210,-9,-9,2,1,1,44,1,1,1,0,2,-9,2,1,0,3,8.57720963356976,8.989285245070265,0,2,0,-9,4,0,5,-102.5797381853524,0,0,0,39,2,5,1,-9,-9,2019,1,1,17,5,35,37,15,1,5,1,0,18.13674142175113,18.13674142175113,0,0,0,0,0,0,0,0,0,0,7.527066703648904,0,0,0,34.65,58.34,5,1,0,0,9,5,1,305,0,0,0 +5499,6741,12213,12214,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,3,8.014005652534076,8.191080163367342,0,2,0,-9,8,0,-8,58.39392975931074,0,0,0,51,1,2,1,2,2,2019,1,1,20,8,40,44,15,1,8,1,0,9.373065817050243,9.373065817050243,0,0,0,0,0,0,0,1,1,0,1.660539206113139,0,0,0,33.47,51.99,5,1,0,0,10,3,0,513.3333333333334,0,0,0 +5499,6741,12214,12213,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,2,7.413485168213369,7.311358283610588,0,2,0,-9,8,0,8,64.33779057332073,0,0,0,43,2,3,1,2,2,2019,1,2,5,1,32,36,15,1,1,1,0,6.512289974228717,6.512289974228717,0,0,0,0,0,0,0,1,1,0,1.793466389710898,0,0,0,63.83,27.55,6,1,0,0,10,3,0,513.3333333333334,0,0,0 +5499,6741,12215,-9,12214,12213,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.731219729015,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,0,513.3333333333334,0,0,0 +5499,6742,12216,-9,12214,12213,3,1,1,19,2,0,1,0,2,1,2,1,0,4,7.077504173647806,7.139243072567063,0,3,0,0,0,-9,0,-972.7825218792831,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,48,0,15,1,1,-9,1,3.408014170060981,3.408014170060981,0,0,0,0,0,0,0,1,1,0,.1777885504031286,0,0,0,51.49,57.57,4,1,0,0,10,3,0,966,0,0,0 +5500,6743,12217,12218,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,3,8.419214212301492,8.275695799242364,0,1,0,1,1,-9,0,22.29213128853855,0,1,0,27,1,4,1,-9,-9,2019,1,2,7,1,39,38,15,1,1,1,0,13.40520946307375,13.40520946307375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,5,0,1258.5,0,0,0 +5500,6743,12218,12217,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,9.313601004369579,9.582271481035791,0,1,0,-9,1,-9,0,-73.72422998922993,-9,1,1,27,2,3,1,-9,-9,2019,1,1,10,3,38,0,15,1,3,1,0,35.93841361421655,35.93841361421655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.36,59.82,6,1,0,0,9,5,0,1258.5,0,0,0 +5501,6744,12219,-9,12221,-9,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1048.595268964944,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,3,1,905.3333333333334,0,0,0 +5501,6744,12220,-9,12221,-9,2,1,0,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-907.6417495486623,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,1,905.3333333333334,0,0,0 +5501,6744,12221,-9,-9,-9,1,1,0,34,2,1,2,0,2,-9,5,1,0,2,7.716007775399765,7.725301174177695,0,3,0,0,0,-9,0,-1052.141362138557,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,1,7.633998267098513,7.633998267098513,0,0,0,0,0,0,0,1,1,0,0,0,7.746456100306419,3,44.16,47.5,5,1,0,0,2,3,1,905.3333333333334,0,0,0 +5502,6745,12222,12223,-9,-9,2,1,0,43,1,1,1,0,2,-9,5,1,0,4,0,0,0,2,0,-9,3,0,5,-97.2817920335813,0,0,1,38,1,3,1,-9,2,2019,1,1,11,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.771049178760051,3,60.18,36.98,6,1,0,0,7,4,1,317.3333333333333,0,0,0 +5502,6745,12223,12222,-9,-9,1,1,1,38,1,1,1,0,1,-9,2,1,0,3,8.805414343080482,8.621768243949189,0,2,0,-9,3,0,-5,30.81283352217039,0,0,0,43,2,4,1,2,2,2019,1,2,15,4,45,45,15,1,4,1,0,19.25752409504897,19.25752409504897,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,5,1,0,0,7,4,1,317.3333333333333,0,0,0 +5502,6745,12224,-9,12222,12223,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.3248976101617,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,317.3333333333333,0,0,0 +5503,6746,12225,-9,12226,-9,3,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1055.384298004645,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,3,0,537.5,0,0,0 +5503,6746,12226,-9,-9,-9,1,1,0,43,2,0,1,0,3,-9,2,1,0,5,7.588828012869524,7.333345841794033,0,4,0,0,0,-9,0,-1023.901651856613,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,30,15,1,0,-9,0,6.934794841864798,6.934794841864798,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,6,1,0,0,2,3,0,537.5,0,0,0 +5503,6747,12227,-9,12226,-9,2,1,1,24,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-866.5816208793173,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,1,0,2,1,0,574,0,0,0 +5504,6748,12228,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,2,0,4.269533917939217,4.197965420520551,3,0,0,0,-9,0,-981.6457041251787,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.945367000578671,3.872336631441856,0,0,43.24,34.35,4,1,0,1,7,2,0,261,0,0,0 +5505,6749,12229,12230,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-4,47.60501040321358,0,0,0,82,2,4,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.867192885350018,0,0,0,43.1,44.28,6,1,0,0,9,2,1,476.5,0,0,0 +5505,6749,12230,12229,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,4,0,5.356411083095116,5.320996988571146,1,0,-9,10,0,4,116.3383135430047,0,0,0,78,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.873074601891727,5.030843595139151,0,0,55.87,53.99,6,1,0,0,9,2,1,476.5,0,0,0 +5506,6750,12231,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,4,0,6.086340917049843,5.721600032654067,3,0,-9,0,1,0,-1041.548578400397,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.226901968148909,5.731559818634239,0,0,61.12,51.57,6,1,0,0,13,2,1,175,0,0,0 +5507,6751,12232,-9,12235,12233,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.7926823300556,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,8,5,1,740.25,0,0,0 +5507,6751,12233,12235,-9,-9,2,1,1,37,1,2,2,0,2,-9,2,1,0,3,8.96223434674855,9.043689691089835,0,2,0,-9,4,0,6,77.94888261018383,0,0,0,31,1,4,1,-9,-9,2019,1,1,14,4,42,42,15,1,4,1,0,22.34585369611927,22.34585369611927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,8,5,1,740.25,0,0,0 +5507,6751,12234,-9,12235,12233,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1019.774330322176,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,5,1,740.25,0,0,0 +5507,6751,12235,12233,-9,-9,1,1,0,31,1,2,2,0,1,-9,5,1,0,4,8.069363222509923,8.083719961623478,0,2,0,-9,4,0,-6,-46.30990087438829,0,0,1,37,2,3,1,-9,-9,2019,1,2,9,1,26,26,15,1,1,1,0,11.6299203987389,11.6299203987389,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.44,33.67,6,1,0,0,8,5,1,740.25,0,0,0 +5508,6752,12236,12237,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,3,8.649237563763302,8.685767964250275,0,2,0,-9,5,0,2,-105.6044916813291,0,0,0,35,1,4,1,1,1,2019,1,2,6,0,39,40,15,1,0,1,0,17.51003227515361,17.51003227515361,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,1,0,0,11,5,1,597,0,0,0 +5508,6752,12237,12236,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,4,8.642105837998667,8.682334371869095,0,2,0,-9,5,0,-2,48.11328137620738,0,0,1,37,2,3,1,-9,-9,2019,1,1,12,0,42,43,15,1,0,1,0,18.88567592799208,18.88567592799208,0,0,0,0,0,0,0,1,1,0,7.754006401800368,0,0,0,38.62,59.5,6,1,0,0,11,5,1,597,0,0,0 +5508,6752,12238,-9,12237,12236,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.083951276295,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,5,1,597,0,0,0 +5509,6753,12239,-9,12241,12240,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.7694843088561,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,5,0,813.3333333333334,0,0,0 +5509,6753,12240,12241,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,3,9.141734755620904,9.306360060618495,0,2,0,-9,3,0,0,10.52882435376273,0,0,0,36,1,5,3,2,2,2019,2,2,10,0,40,39,15,1,0,3,0,23.97786334097582,23.97786334097582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.97,37.32,5,1,0,0,12,5,0,813.3333333333334,0,0,0 +5509,6753,12241,12240,-9,-9,2,1,0,36,1,1,1,0,1,-9,6,3,0,5,0,0,0,2,0,-9,3,0,0,19.64268087502951,0,0,1,36,1,3,1,-9,-9,2019,3,1,8,0,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,0,12,5,0,813.3333333333334,0,0,0 +5510,6754,12242,-9,-9,-9,1,1,0,45,3,0,1,0,1,-9,2,1,0,4,8.142965747989866,8.192760886711937,5.871435042508427,4,0,0,0,-9,0,-948.6722416888038,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,33,31,15,1,0,-9,0,15.17816874745562,15.17816874745562,0,0,0,0,0,0,0,1,1,0,6.253685195455177,0,11.18661472566588,3,58.15,52.91,6,1,0,0,10,4,1,340.5,0,0,0 +5510,6754,12243,-9,12242,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1077.400860211661,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,10,4,1,340.5,0,0,0 +5511,6755,12244,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,3,8.049884690768943,7.987959397488387,0,3,0,0,0,-9,0,-953.9064450375922,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,9.804714030918053,9.804714030918053,0,0,0,0,0,0,0,0,0,0,3.392679423098656,0,0,3,57.33,53.46,6,1,0,0,6,4,1,567,0,0,0 +5512,6756,12245,12246,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,2,8.808865949103005,8.366143313255922,0,1,0,-9,22,0,0,30.68813755740408,-9,0,0,50,2,4,1,3,3,2019,1,2,12,0,60,0,15,1,0,1,0,9.980682420312327,9.980682420312327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.13,38.11,3,1,0,0,13,5,1,243,0,0,0 +5512,6756,12246,12245,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.738070482225513,7.520236040114983,0,1,0,-9,22,0,0,133.8998465879669,0,0,0,50,2,2,1,2,2,2019,1,1,10,1,37,34,15,1,1,1,0,7.430170359757082,7.430170359757082,0,0,0,0,0,0,0,1,1,0,0,0,6.316004729173193,3,40.77,55.51,6,1,0,0,13,5,1,243,0,0,0 +5512,6757,12247,-9,12246,12245,3,1,1,18,2,0,0,0,2,1,2,1,0,4,7.407943427516184,7.887180025819777,0,3,0,0,0,-9,0,-1145.901553888032,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,42,0,15,1,3,-9,1,5.816702001993344,5.816702001993344,0,0,0,0,0,0,0,1,1,0,5.903417588242437,0,0,0,43.71,59.71,5,1,0,0,13,3,1,346,0,0,0 +5512,6758,12248,-9,12246,12245,4,1,1,18,2,0,0,0,2,-9,2,1,0,4,7.145709728958557,7.208024133431861,0,3,0,0,0,-9,0,-1030.341704721625,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,0,15,1,0,-9,1,4.195442753894137,4.195442753894137,0,0,0,0,0,0,0,1,1,0,2.323329851704234,0,0,0,43.84,57.1,6,1,0,0,13,3,1,342,0,0,0 +5513,6759,12249,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,3,0,6.772417637653267,6.707612626916645,3,0,0,0,-9,0,-1016.057967967409,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.650780484962904,0,0,53,47,5,1,0,0,13,2,1,223,0,0,0 +5514,6760,12250,12251,-9,-9,1,1,0,59,1,0,3,0,2,-9,2,1,0,3,7.607806541176442,7.823799405299984,0,2,0,-9,41,0,-1,124.2019139881007,0,0,0,60,2,3,1,2,2,2019,1,2,32,12,30,32,15,1,12,1,0,10.83654241977535,10.83654241977535,0,0,0,0,0,0,0,1,1,0,0,0,28.58284312442184,3,22.13,44.1,3,1,0,0,10,4,1,204,0,0,0 +5514,6760,12251,12250,-9,-9,2,1,1,60,1,0,3,0,2,-9,2,1,0,3,8.810967737212826,8.691568090866076,0,2,0,-9,41,0,1,42.66696505150296,0,0,0,59,2,3,1,2,2,2019,1,1,8,0,45,44,15,1,0,1,0,15.76500828618048,15.76500828618048,0,0,0,0,0,0,0,1,1,0,0,0,6.759267952195191,3,48.45,57.49,6,1,0,0,10,4,1,204,0,0,0 +5514,6761,12252,-9,12250,12251,3,1,1,36,2,0,3,0,2,-9,2,1,0,5,8.248541355537299,8.314771186852388,0,3,0,0,0,-9,0,-877.8638344128383,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,43,15,1,0,-9,1,10.90788596667339,10.90788596667339,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,61.33,7,1,0,0,10,4,1,419,0,0,0 +5514,6762,12253,-9,12256,-9,6,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-970.4027377155119,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,1,1541,0,0,0 +5514,6762,12254,-9,12256,-9,5,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-973.6589352059153,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,2,1,1541,0,0,0 +5514,6762,12255,-9,12256,-9,7,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-984.3935226430566,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,10,2,1,1541,0,0,0 +5514,6762,12256,-9,12250,12251,4,1,0,34,2,0,3,0,2,-9,2,1,0,4,6.911552074628402,6.724562570124501,0,3,0,0,0,-9,0,-1082.365592159512,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,20,20,15,1,1,-9,1,7.513373259863731,7.513373259863731,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,1,10,2,1,1541,0,0,0 +5515,6763,12257,12258,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,2,0,7.276625388063278,7.445310882790561,1,0,-9,8,0,3,12.05906594970716,0,0,0,78,1,3,3,3,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,5.280262093977642,0,0,0,0,1,1,0,8.298962683577248,7.15416423930787,0,0,49.45,28.58,5,1,0,0,12,2,1,205.5,0,0,0 +5515,6763,12258,12257,-9,-9,1,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-3,-82.34140525483056,0,0,0,81,1,2,3,3,2,2019,4,2,16,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.852738320062136,0,25.43461023523068,1,43.34,39.33,4,1,0,0,12,2,1,205.5,0,0,0 +5516,6764,12259,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,5,8.230589412789318,8.119270309231462,0,3,0,0,0,-9,0,-988.3636711493618,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,39,37,15,1,2,-9,0,11.60430711911694,11.60430711911694,0,0,0,0,0,0,0,0,0,0,3.389274917740031,0,0,0,48.85,50.88,6,1,0,0,2,4,1,1258,0,0,0 +5517,6765,12260,12261,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,1,0,0,0,0,77,3,3,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.864498755935227,0,0,0,48.36,33.74,6,1,0,0,12,1,1,495,0,0,0 +5517,6765,12261,12260,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-1,0,0,0,0,78,2,2,3,1,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,16.6271883075062,1,45.61,29.31,4,1,0,0,12,1,1,495,0,0,0 +5518,6766,12262,-9,12263,12265,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.1977049041025,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,773.5,0,0,0 +5518,6766,12263,12265,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.036972779260713,8.176827636582779,0,2,0,-9,16,0,-1,100.148707197819,0,0,1,39,2,3,1,2,1,2019,1,2,12,0,29,46,15,1,0,1,0,14.42188806154821,14.42188806154821,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.97,61.83,5,1,0,1,7,5,1,773.5,0,0,0 +5518,6766,12264,-9,12263,12265,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.578894121948,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,5,1,773.5,0,0,0 +5518,6766,12265,12263,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,3,8.726576541136279,8.721593241076576,0,2,0,-9,16,0,1,-39.05478736702779,0,0,0,38,1,4,1,2,3,2019,1,1,15,3,40,45,15,1,3,1,0,13.9223254836815,13.9223254836815,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.61,62.71,5,1,0,0,7,5,1,773.5,0,0,0 +5519,6767,12266,12269,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.752390058935314,8.933767818682895,0,2,0,-9,20,0,0,45.05311471218143,0,0,0,46,1,5,1,2,1,2019,1,1,12,0,12,44,15,1,0,1,0,75.5715971793115,75.5715971793115,0,0,0,0,0,0,0,0,0,0,4.767867831536951,0,0,0,51.24,58.84,6,1,0,0,9,5,1,582,0,0,0 +5519,6767,12267,-9,12269,12266,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.190177025641,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,9,5,1,582,0,0,0 +5519,6767,12268,-9,12269,12266,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.436929601226,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,9,5,1,582,0,0,0 +5519,6767,12269,12266,-9,-9,1,1,0,46,1,0,2,0,1,-9,1,1,0,5,9.548023011708338,9.565134547119115,0,2,0,-9,20,0,0,41.15293957604752,0,0,0,46,1,4,1,1,1,2019,1,2,10,0,45,45,15,1,0,1,0,40.48499269474226,40.48499269474226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,6,1,0,0,9,5,1,582,0,0,0 +5520,6768,12270,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,4,0,9.389174598432392,9.245638976582804,3,0,0,0,-9,0,-1037.986395744234,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.65436938371394,9.688004175504441,0,0,57.16,56.15,6,1,0,0,7,5,1,1442,0,0,0 +5521,6769,12271,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,3,8.491102292045893,8.780157491440994,0,3,0,0,0,-9,0,-1013.078518254188,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,41,41,15,1,0,-9,0,16.15994702785966,16.15994702785966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.22,40.83,6,1,0,0,4,5,1,2027,0,0,0 +5522,6770,12272,12273,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,4,8.708333112495389,8.764199127876395,0,1,0,-9,10,0,-5,-1.050276931820941,0,0,0,58,2,3,1,1,2,2019,1,1,5,1,45,60,15,1,1,1,0,16.63807038257471,16.63807038257471,0,0,0,0,0,0,0,0,0,0,6.458885128975941,0,0,0,54.29,48.21,7,1,0,0,10,5,1,865.5,0,0,0 +5522,6770,12273,12272,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.318340618715821,8.070044241094498,6.831120735887018,1,0,-9,10,0,5,133.3990964224242,0,0,0,53,2,4,1,3,2,2019,1,2,12,0,24,26,15,1,0,1,0,9.448180901132801,9.448180901132801,0,0,0,0,0,0,0,0,0,0,5.480622688024116,6.442479443457979,4.616313181973025,3,46.58,49.13,5,1,0,0,10,5,1,865.5,0,0,0 +5523,6771,12274,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.981321924532684,8.096168830703006,0,3,0,0,0,-9,0,-1103.065617915033,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,15,38,15,1,0,-9,0,33.64364861467465,33.64364861467465,0,0,0,0,0,0,0,0,0,0,.9445109744568176,0,0,0,48.87,58.55,6,1,0,0,9,4,0,581,0,0,0 +5524,6772,12275,12276,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.554383385213875,9.582570241955569,8.033956511159692,1,0,-9,38,0,0,45.35442070965773,0,0,0,58,2,4,1,3,3,2019,1,1,7,0,44,42,15,1,0,1,0,22.4508078158112,22.4508078158112,0,0,0,0,0,0,0,1,1,0,0,8.241993155289844,1.087865821468729,3,55.96,49.93,6,1,0,0,8,5,1,463,0,0,0 +5524,6772,12276,12275,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.525597533925831,8.219759815486285,0,1,0,-9,38,0,0,79.80529188150122,0,0,0,58,2,3,1,3,3,2019,1,2,15,5,40,34,15,1,5,1,0,16.49907994652959,16.49907994652959,0,0,0,0,0,0,0,1,1,0,.5980323756173975,0,2.716231833434831,3,31.65,55.27,6,1,0,0,8,5,1,463,0,0,0 +5524,6773,12277,-9,12276,12275,3,1,1,30,2,0,0,0,2,-9,2,1,0,4,8.735720486032966,8.49006959791971,0,3,0,0,0,-9,0,-1105.033207043885,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,49,49,15,1,1,-9,1,12.45972331088193,12.45972331088193,0,0,0,0,0,0,0,1,1,0,3.366771041143543,0,0,0,49.86,55.31,6,1,0,0,8,5,1,1302,0,0,0 +5524,6774,12278,-9,12276,12275,4,1,0,27,2,0,0,0,1,-9,2,1,0,4,9.154922189807722,8.796446255590702,0,3,0,0,0,-9,0,-1004.754288493313,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,43,39,15,1,4,-9,1,15.30284682088281,15.30284682088281,0,0,0,0,0,0,0,1,1,0,.168728581078285,0,0,3,35.28,57.7,6,1,0,0,8,5,1,694,0,0,0 +5525,6775,12279,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,2,1,0,2,7.996410583434493,8.226605162458512,0,3,0,0,0,-9,0,-1056.143170231682,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,38,40,15,1,0,-9,0,8.018165113240894,8.018165113240894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.14,45.02,4,1,0,0,2,4,0,3110,0,0,0 +5526,6776,12280,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,97,3,0,2,0,0,0,3,0,0,0,-9,0,-950.8189802612661,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,35,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.99,44.45,5,1,0,0,9,1,0,391,0,0,0 +5527,6777,12281,-9,-9,-9,1,1,0,77,3,1,3,0,1,-9,4,3,0,4,3.742349840922276,7.68440458431718,7.977922106207554,4,0,0,0,-9,0,-999.6293178271609,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.806284504797464,7.723295774013326,0,0,50.1,46.94,5,1,0,1,10,2,1,1564,0,0,0 +5527,6778,12282,12285,-9,-9,2,1,0,31,1,1,3,0,2,-9,6,3,0,4,3.394658659977488,3.58594464312292,0,2,0,-9,3,0,1,151.7699281601171,0,0,1,30,2,4,1,-9,-9,2019,3,3,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.38,55.6,6,1,0,0,10,3,1,437.2,0,0,0 +5527,6778,12283,-9,12282,12285,5,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-909.426987685209,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,437.2,0,0,0 +5527,6778,12284,-9,12282,12285,6,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-903.2150579973836,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,1,437.2,0,0,0 +5527,6778,12285,12282,-9,-9,3,1,1,30,1,1,3,0,2,-9,2,1,0,4,8.155422989353452,8.58448578660995,0,2,0,-9,3,0,-1,3.99976288479597,-9,0,0,31,2,4,3,-9,-9,2019,2,2,4,0,45,0,15,1,0,3,0,9.296646535429272,9.296646535429272,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,10,3,1,437.2,0,0,0 +5527,6778,12286,-9,12282,12285,4,1,1,15,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.8252290372448,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,437.2,0,0,0 +5528,6779,12287,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,1,1,0,4,8.898652367566225,8.957571764942557,0,3,0,0,0,-9,0,-1104.805664301415,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,50,42,15,1,0,-9,0,16.23959895098126,16.23959895098126,0,0,0,0,0,0,0,0,0,0,3.493602708591445,0,0,0,51.24,58.84,5,1,0,0,9,5,0,85,0,0,0 +5529,6780,12288,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,5,9.012278700767958,8.768653023710472,0,3,0,0,0,-9,0,-1026.426685468185,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,45,15,1,0,-9,0,16.53247266937744,16.53247266937744,0,0,0,0,0,0,0,0,0,0,0,0,4.63093453821417,3,62.39,56.71,6,1,0,0,13,5,1,2487,0,0,0 +5530,6781,12289,-9,12290,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-916.4361130167993,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,822,0,0,0 +5530,6781,12290,-9,-9,-9,1,1,0,40,3,0,2,0,1,-9,2,1,0,3,7.942508689434312,7.93463282796472,6.425166439316819,4,0,0,0,-9,0,-1000.875726948464,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,32,30,15,1,0,-9,0,9.918573114365438,9.918573114365438,0,0,0,0,0,0,0,1,1,0,7.162975986938902,0,0,3,32.82,56.45,5,1,0,0,4,3,1,822,0,0,0 +5531,6782,12291,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,5,7.802937568387863,8.266060710228258,0,3,0,-9,0,0,0,-972.0391556262191,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,52,35,15,1,4,-9,0,8.066836797573025,8.066836797573025,0,0,0,0,0,0,0,0,0,0,.8208353135143559,0,0,0,28.91,62.7,6,1,0,0,7,4,0,122,0,0,0 +5532,6783,12292,-9,-9,-9,4,1,0,23,2,0,0,0,2,-9,2,1,0,2,8.272715549741239,8.440465766539033,0,3,0,-9,0,-9,0,-1156.584462532841,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,9,0,15,1,7,-9,1,51.11471360947125,51.11471360947125,0,0,0,0,0,0,0,0,0,0,2.100826489202797,0,0,0,37.61,42.43,4,1,0,0,12,4,1,484,0,0,0 +5533,6784,12293,12294,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,2,0,4.361771787411841,4.519127900139879,1,0,-9,10,0,16,44.6300715870582,0,0,0,70,2,2,3,-9,-9,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,9.791935782206586,5.300157182870084,0,0,0,57.41285879477086,1,1,0,5.211705794574255,4.833594390612938,0,0,35.2,24.74,4,1,0,0,13,2,1,858.5,0,0,0 +5533,6784,12294,12293,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,46,0,-16,193.3548595735234,0,0,0,86,3,2,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,7.860336939891567,0,0,.6860636551799371,2.779813336899844,28.54310306316545,1,1,0,4.418091915598342,0,0,1,53.98,29.61,4,1,0,0,13,2,1,858.5,0,0,0 +5534,6785,12295,-9,-9,-9,1,1,0,79,2,0,0,0,3,-9,4,3,0,3,0,5.169266422629881,4.878996605248087,3,0,0,0,-9,0,-1078.34557187925,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.600689279519878,5.122114985338232,0,0,57.33,53.46,6,1,0,0,8,2,0,787,0,0,0 +5535,6786,12296,12297,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,4,9.258003978801341,8.683216548684891,0,1,0,-9,32,0,0,25.48083166207427,0,0,0,59,3,4,1,-9,-9,2019,1,1,8,0,60,40,15,1,0,1,0,14.32724150122538,14.32724150122538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,6,2,0,0,8,5,1,492,0,0,0 +5535,6786,12297,12296,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,4,3.193160700668786,3.335851132177991,0,1,0,-9,32,0,0,-150.9204906801545,0,0,0,59,3,4,1,-9,-9,2019,1,2,9,0,40,40,15,1,0,1,0,.0779776298812272,.0779776298812272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,6,1,0,0,8,5,1,492,0,0,0 +5535,6787,12298,-9,12297,12296,3,1,0,19,2,0,0,0,2,1,3,3,0,4,7.208793445346008,7.436928611224672,0,3,0,0,0,-9,0,-877.66210082807,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,25,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,2,1,0,8,3,1,2140,0,0,0 +5536,6788,12299,12300,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,4,8.458769975675082,8.299471884858558,0,2,0,-9,7,0,16,16.304844127916,0,0,0,36,2,4,1,-9,-9,2019,1,1,8,0,47,50,15,1,0,1,0,10.22741355741985,10.22741355741985,0,0,0,0,0,0,0,1,1,0,4.153594712507046,0,0,0,57.16,56.15,7,1,0,0,2,4,1,556.3333333333334,0,0,0 +5536,6788,12300,12299,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,4,8.150046105888006,8.191065628145916,0,2,0,-9,11,0,-16,76.5113798604945,0,0,1,52,2,4,1,3,3,2019,1,2,8,0,36,30,15,1,0,1,0,9.270281878998942,9.270281878998942,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,2,4,1,556.3333333333334,0,0,0 +5536,6788,12301,-9,12300,12299,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1103.604665669141,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,556.3333333333334,0,0,0 +5537,6789,12302,12303,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.497722255787549,8.639904444397393,1,0,-9,47,0,5,-38.25890259683895,0,0,0,66,2,4,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.547616069698706,8.94881160756341,0,0,62.18,36.18,6,1,0,0,7,4,1,556,0,0,0 +5537,6789,12303,12302,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,4.688368375153559,5.063287176641103,1,0,-9,47,0,-5,-69.89643175038012,0,0,0,71,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.443487107327973,4.818158631032199,0,0,57.16,56.15,6,1,0,0,7,4,1,556,0,0,0 +5538,6790,12304,12305,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,6.614784564608737,7.011600597532508,1,0,-9,6,0,4,45.24639880556903,0,0,0,73,3,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.171613742749891,7.037869019652486,0,0,52,54.51,6,1,0,0,12,2,1,1202,0,0,0 +5538,6790,12305,12304,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,5,0,4.242169571747793,4.086175981137161,1,0,-9,6,0,-4,-63.63996652136753,0,0,0,77,3,3,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.256100275723818,12.25794198397179,3,49.25,61.25,6,1,0,0,12,2,1,1202,0,0,0 +5539,6791,12306,12307,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,7.643125613092948,7.749655681586049,1,0,-9,33,0,16,-186.5376159859779,0,0,0,60,2,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.365165896332813,7.768467589883808,0,0,58.33,47.36,6,1,0,0,2,4,1,665,0,0,0 +5539,6791,12307,12306,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.295680377677497,8.323164714635075,7.520234864413416,1,0,-9,36,0,-16,-23.62252325584639,0,0,0,76,3,4,3,3,2,2019,2,1,6,0,21,21,15,1,0,4,0,10.17697378439302,10.17697378439302,0,0,0,0,0,0,0,1,1,0,4.711006193112246,7.677677683772502,0,3,60.12,54.8,6,1,0,0,2,4,1,665,0,0,0 +5539,6792,12308,-9,12307,12306,3,1,1,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-961.8942984056443,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,7,1,0,0,2,1,1,299,0,0,0 +5540,6793,12309,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,8.379635349573864,8.637145482306215,7.31689515271695,3,0,0,0,-9,0,-1013.349319280119,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,27,24,15,1,11,-9,0,17.11352942332354,17.11352942332354,0,0,0,0,0,0,0,1,1,0,3.388348467115673,7.230770877931378,12.04668124377226,3,26.38,64.8,6,1,0,0,12,5,0,314,0,0,0 +5541,6794,12310,-9,12314,12313,3,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.8785127927673,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,3,0,493.4,0,0,0 +5541,6794,12311,-9,12314,12313,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.133505466061,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,3,0,493.4,0,0,0 +5541,6794,12312,-9,12314,12313,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.938400983956,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,3,0,493.4,0,0,0 +5541,6794,12313,12314,-9,-9,2,1,1,33,1,1,3,0,2,-9,2,1,0,3,8.136019433422621,8.505169284351497,0,2,0,-9,3,0,0,-22.13979665898707,0,0,0,33,2,3,1,-9,-9,2019,1,1,11,0,36,0,15,1,0,1,0,14.10098763037061,14.10098763037061,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,7,3,0,0,8,3,0,493.4,0,0,0 +5541,6794,12314,12313,-9,-9,1,1,0,33,1,1,3,0,2,-9,2,1,0,3,6.906130619325686,6.960189834803725,0,2,0,-9,3,0,0,35.72216997151343,0,0,1,33,2,3,1,-9,-9,2019,1,2,6,0,12,12,15,1,0,1,0,10.3649968523584,10.3649968523584,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.64,48.76,6,4,0,0,8,3,0,493.4,0,0,0 +5542,6795,12315,-9,12317,12316,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.3769926235839,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,879.6666666666666,0,0,0 +5542,6795,12316,12317,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,3,8.05718858473908,7.898718660036703,0,2,0,-9,2,0,0,.104616126530724,0,0,0,34,2,5,1,-9,3,2019,1,1,12,0,39,40,15,1,0,1,0,8.927082059146027,8.927082059146027,0,0,0,0,0,0,0,1,1,0,0,0,.7130830603244063,3,49.04,55.86,4,1,0,0,4,4,1,879.6666666666666,0,0,0 +5542,6795,12317,12316,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,5,8.498842637563319,8.55173809164585,0,2,0,-9,6,0,0,45.08256309307966,0,0,1,34,2,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,14.07348247622279,14.07348247622279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,6,1,0,0,4,4,1,879.6666666666666,0,0,0 +5543,6796,12318,12319,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,4,9.537303713051726,9.555677778655596,0,1,0,-9,12,0,9,63.25639271217604,0,0,0,47,2,3,1,3,3,2019,1,2,7,0,54,60,15,1,0,1,0,28.5060508689722,28.5060508689722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,9,5,1,617,0,0,0 +5543,6796,12319,12318,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,3,8.065989858931708,8.297145705813008,0,1,0,-9,12,0,0,-35.21937698722647,0,0,0,56,1,4,1,3,3,2019,1,1,15,4,40,30,15,1,4,1,0,10.62761173677647,10.62761173677647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,53.76,6,1,0,0,9,5,1,617,0,0,0 +5544,6797,12320,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,4,0,7.352006710874851,7.161353276034173,3,0,0,0,-9,0,-1155.514593713742,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.110332041009555,7.036576709213025,0,0,60.12,54.8,6,1,0,0,9,2,1,753,0,0,0 +5545,6798,12321,12324,-9,-9,1,1,0,29,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,8,0,-27,0,0,1,1,56,3,1,3,-9,-9,2019,4,2,33,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.07343983344612,2,22.92,33.1,3,1,0,0,2,1,0,549,0,0,0 +5545,6798,12322,-9,12321,12324,3,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-954.2153033391401,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,2,1,0,549,0,0,0 +5545,6798,12323,-9,12321,12324,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.042954575069,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,549,0,0,0 +5545,6798,12324,12321,-9,-9,2,1,1,56,1,0,2,0,3,-9,3,3,0,1,0,0,0,2,0,-9,8,0,27,0,0,0,0,29,2,1,3,-9,-9,2019,4,1,17,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.65,26.17,5,1,1,0,2,1,0,549,0,0,0 +5546,6799,12325,-9,12326,12327,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.026136319145,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,494.6666666666667,0,0,0 +5546,6799,12326,12327,-9,-9,2,1,0,36,1,1,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,4,0,0,-1.714408579937489,0,0,1,36,2,4,1,-9,-9,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.11039051438989,0,0,0,39.99,55.83,6,1,0,0,6,4,1,494.6666666666667,0,0,0 +5546,6799,12327,12326,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,4,8.673392592372196,8.691491274726971,0,2,0,-9,4,0,0,72.1304902302474,0,0,0,36,1,3,3,2,2,2019,2,2,10,0,37,38,15,1,1,3,0,19.14732100350975,19.14732100350975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,6,4,1,494.6666666666667,0,0,0 +5547,6800,12328,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,2,7.735095247863999,8.212183277933239,0,3,0,0,0,-9,0,-942.0172109913336,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,38,30,15,1,1,-9,0,8.996656082095196,8.996656082095196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.82,36.19,3,4,0,1,8,4,0,212,0,0,0 +5548,6801,12329,-9,-9,-9,1,1,0,22,3,0,0,0,1,-9,7,2,0,4,6.565886358620466,6.56620279278238,0,3,0,0,0,-9,0,-1045.755803821742,1,1,1,-9,-9,-9,-9,3,3,2019,-9,0,13,1,13,13,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,37.64,4,3,0,0,8,2,0,363,0,0,0 +5549,6802,12330,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,3,0,7.26776219820931,7.251053263104336,3,0,0,0,-9,0,-966.2942268949647,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.644584830935417,7.156388335311797,0,0,63.4,45.23,7,1,0,0,9,3,1,1416,0,0,0 +5550,6803,12331,12332,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,1,6.434076918390561,5.838452572045993,0,1,0,-9,43,0,-3,-62.40843419536815,0,0,0,68,3,3,1,2,2,2019,1,2,23,10,5,10,15,1,10,1,0,11.45306582770946,11.45306582770946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.89,41.72,5,1,0,0,4,4,1,174.5,0,0,0 +5550,6803,12332,12331,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,3,8.034925128044092,8.676499980165065,7.147593116018967,1,0,-9,10,0,3,2.810209667303483,-9,0,0,65,2,1,1,-9,-9,2019,1,1,10,0,32,0,15,1,1,1,0,10.03479867455616,10.03479867455616,0,0,0,0,0,0,0,1,1,0,1.265616601151436,6.853865804831367,0,0,51,48,5,1,0,0,4,4,1,174.5,0,0,0 +5550,6804,12333,-9,12331,12332,3,1,1,38,2,0,0,0,2,-9,2,1,0,4,7.805453660543477,7.799297627965712,0,3,0,0,0,-9,0,-930.4201226691082,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,50,0,15,1,1,-9,1,6.96754671288133,6.96754671288133,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,4,4,1,3444,0,0,0 +5551,6805,12334,-9,12335,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.0604967991749,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,0,405,0,0,0 +5551,6805,12335,12336,-9,-9,1,1,0,22,1,0,1,0,3,-9,2,1,0,4,6.945493712806361,7.082972502166179,5.365807586516811,2,0,1,1,-9,1,29.90433197202672,0,1,1,21,2,4,1,2,3,2019,1,3,16,5,16,18,15,1,5,1,0,8.078793691035548,8.078793691035548,0,0,0,0,0,0,0,1,1,0,5.70709567579383,0,0,0,20.11,66.45,6,1,0,0,4,4,0,405,0,0,0 +5551,6805,12336,12335,-9,-9,3,1,1,21,1,0,1,0,2,-9,2,1,0,4,8.428446506826594,8.143649591222722,0,2,0,-9,1,-9,-1,-55.97664488765584,-9,1,0,22,3,4,1,-9,-9,2019,1,1,8,0,49,0,15,1,0,1,0,8.916683581974526,8.916683581974526,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,5,1,0,0,4,4,0,405,0,0,0 +5552,6806,12337,12338,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,3,8.980499353089144,9.068835683290736,0,1,0,-9,4,0,4,-135.6197265630581,0,0,0,42,1,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,20.25337072086582,20.25337072086582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,7,5,0,1494.5,0,0,0 +5552,6806,12338,12337,-9,-9,2,1,0,42,1,0,0,0,1,-9,1,1,0,3,8.836490508347859,8.584975356976633,0,1,0,-9,4,0,-4,-82.09812598908903,0,0,1,46,1,3,1,-9,-9,2019,1,1,8,1,50,50,15,1,1,1,0,13.32286150809586,13.32286150809586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,1,0,0,7,5,0,1494.5,0,0,0 +5553,6807,12339,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,2,1,0,5,6.267657945048562,5.840650227448968,0,3,0,0,0,-9,0,-1115.715644978369,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,6,0,15,1,0,-9,0,9.028648753528566,9.028648753528566,0,0,0,0,0,0,0,1,1,0,.4744287973188273,0,.8709612699150246,3,59.43,58.05,6,1,0,0,10,2,1,181,0,0,0 +5554,6808,12340,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-901.0063912973299,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,10,0,0,15,4,10,-9,0,0,0,1,0,0,9.525295013330364,2.171528319782432,40.35675108589863,0,1,1,0,0,0,0,0,38,25,1,1,0,0,9,1,0,370,0,0,0 +5555,6809,12341,12342,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.362715335714647,7.93050094888365,0,1,0,-9,1,-9,2,-41.33273857286989,-9,0,1,30,1,4,1,-9,-9,2019,1,2,17,5,38,0,15,1,5,1,0,11.8663547160793,11.8663547160793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.14,68.03,6,1,0,0,7,5,0,744,0,0,0 +5555,6809,12342,12341,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,4,9.1154935331049,9.085213909616726,0,1,0,-9,1,-9,-2,-17.19148873070213,-9,0,0,32,1,4,1,-9,-9,2019,1,1,10,0,38,0,15,1,1,1,0,20.12152047302829,20.12152047302829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,7,5,0,744,0,0,0 +5556,6810,12343,12344,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,4,0,8.268795040500542,7.895733523967143,1,0,-9,34,0,-1,4.927585355467558,0,0,0,61,1,1,3,-9,-9,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.464936713218123,8.094706141381634,.8644222578260614,1,51.64,53.15,6,1,0,0,9,3,1,722,0,0,0 +5556,6810,12344,12343,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,1,0,0,0,1,0,-9,38,0,1,-55.3929135539058,0,0,0,60,1,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.75045819068159,0,0,0,53.34,46.18,4,1,0,0,9,3,1,722,0,0,0 +5556,6811,12345,-9,12343,12344,3,1,1,21,2,0,0,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1042.872327508063,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,9,1,1,2427,0,0,0 +5557,6812,12346,12347,-9,-9,1,1,0,37,1,0,3,0,1,-9,2,1,0,3,8.782796076065285,8.514282122973203,0,2,0,-9,14,0,-7,-26.69814761989654,0,0,1,44,3,4,1,2,1,2019,1,2,7,0,45,43,15,1,0,1,0,17.76010700731354,17.76010700731354,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,13,5,1,749.4,0,0,0 +5557,6812,12347,12346,-9,-9,2,1,1,44,1,0,3,0,3,-9,2,1,0,4,8.676601860697581,8.735986525365442,0,2,0,-9,7,0,7,-14.33791389676491,0,0,0,37,1,3,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,15.47315902265736,15.47315902265736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,749.4,0,0,0 +5557,6812,12348,-9,12346,12347,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.865426046424,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,749.4,0,0,0 +5557,6812,12349,-9,12346,12347,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.1034086640519,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,1,749.4,0,0,0 +5557,6812,12350,-9,12346,12347,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.8614651911947,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,749.4,0,0,0 +5558,6813,12351,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,2,0,6.349504114766177,6.356166440452902,3,0,0,0,-9,0,-892.8985804787764,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,2.484172213222471,3.069131697542154,0,1,1,0,6.450446188854342,6.428500584837894,0,0,47.94,21.8,3,1,0,0,9,2,0,436,0,0,0 +5559,6814,12352,-9,12353,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,3,8.277337895967538,8.493214133741702,0,3,0,-9,0,-9,0,-872.5769553547143,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,37,0,15,1,7,-9,1,14.44570061614248,14.44570061614248,0,0,0,0,0,0,0,1,1,0,0,0,22.27947230327204,3,29.22,52.63,3,1,0,1,8,4,1,422,0,0,0 +5559,6815,12353,-9,-9,-9,2,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,5.565538867291464,5.259314701284403,3,0,-9,0,-9,0,-1014.225117140646,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,1,6.887143093032802,0,0,16.42511661685183,0,87.14753695346322,1,1,0,0,5.396704138650586,0,0,40.91,24.75,4,1,0,0,8,2,1,366,0,0,0 +5560,6816,12354,12355,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,2,8.560001687089038,8.512301592416977,0,1,0,-9,20,0,6,12.84182478991312,0,0,0,51,2,2,3,2,2,2019,2,1,7,0,36,37,15,1,0,3,0,21.13254682488953,21.13254682488953,0,0,0,0,0,0,0,1,1,0,.1536321912530369,0,0,0,49.28,52.09,5,5,0,0,2,5,1,905,0,0,0 +5560,6816,12355,12354,-9,-9,1,1,0,51,1,0,0,0,2,-9,3,3,0,2,8.161225990145944,8.328094696678075,0,1,0,-9,20,0,-6,-29.63553674320791,0,0,0,57,1,2,1,3,3,2019,3,2,13,3,35,37,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.562937380250361,0,0,0,45.54,29.3,5,1,1,0,2,5,1,905,0,0,0 +5561,6817,12356,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,4,7.534729264451494,7.691931140227791,0,4,0,-9,0,-9,0,-1015.918798670024,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,34,0,15,1,0,-9,0,7.433260403182754,7.433260403182754,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,2,3,0,466,0,0,0 +5561,6817,12357,-9,12356,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-956.5199494284976,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,2,3,0,466,0,0,0 +5562,6818,12358,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,4,0,8.484395076480311,8.260114341398022,3,0,0,0,-9,0,-1082.080255852708,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.703721200015993,0,0,38.86,57.79,6,1,0,0,1,4,1,536,0,0,0 +5562,6819,12359,-9,-9,12358,2,1,1,30,2,0,0,0,1,-9,7,2,0,4,6.42705868650966,6.405801945534974,0,3,0,0,0,-9,0,-1060.957466800212,1,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,8,30,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,1,1,2,1,900,0,0,0 +5562,6820,12360,-9,-9,12358,3,1,0,28,2,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1089.927298392079,0,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,8,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,1,1,1,534,0,0,0 +5563,6821,12361,12362,-9,-9,1,1,1,55,1,0,0,0,1,-9,4,3,0,5,0,7.745209108218302,7.802236551971752,1,0,-9,9,0,1,33.20275429752569,0,0,0,54,1,2,3,1,2,2019,4,2,22,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.449201277215212,7.582198114380319,0,0,43.63,61.31,7,1,0,0,9,3,1,1938,0,0,0 +5563,6821,12362,12361,-9,-9,2,1,0,54,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,63.0581231568359,0,0,0,55,1,5,3,3,2,2019,4,1,20,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.392715988393875,0,0,3,35.36,31.51,5,1,0,0,9,3,1,1938,0,0,0 +5564,6822,12363,12364,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.248668632114951,8.056431894498527,0,1,0,-9,33,0,2,147.4503136747703,0,0,0,55,1,4,1,2,2,2019,1,1,11,0,70,65,15,1,0,1,0,5.420927726103258,5.420927726103258,0,0,0,0,0,0,0,0,0,0,7.560083248505174,0,2.259813885146218,3,45.85,61.26,6,1,0,0,4,5,1,536,0,0,0 +5564,6822,12364,12363,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.920972868480341,8.922336280711797,0,1,0,-9,33,0,-2,9.629365911762875,0,0,0,57,2,4,1,2,2,2019,1,2,19,7,36,24,15,1,7,1,0,21.78362026686105,21.78362026686105,0,0,0,0,0,0,0,0,0,0,7.840060032575927,0,0,0,36.66,61.22,5,1,0,0,4,5,1,536,0,0,0 +5565,6823,12365,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,6.625023231081412,6.95770628711679,3,0,0,0,-9,0,-1094.746120447305,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,2.440484282763723,0,0,0,0,0,1,1,0,2.501322878055098,6.918695971249823,0,0,54.04,20.34,2,1,0,0,5,2,1,129,0,0,0 +5566,6824,12366,12367,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,2,7.874275059711461,8.100551113503538,0,2,0,-9,4,0,8,-26.36224994391801,0,0,0,37,1,2,1,-9,-9,2019,1,2,11,1,39,40,15,1,1,1,0,8.376718801098452,8.376718801098452,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.26,45.62,3,1,0,0,12,3,0,380,0,0,0 +5566,6824,12367,12366,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,2,6.342970184380182,6.131375996968797,0,2,0,-9,4,0,-8,-88.68193285842369,0,0,1,45,2,2,1,-9,-9,2019,1,1,17,5,8,0,15,1,5,1,0,8.278308916320803,8.278308916320803,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.58,43.15,3,1,0,0,12,3,0,380,0,0,0 +5566,6824,12368,-9,12367,12366,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.750518620953,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,0,380,0,0,0 +5566,6824,12369,-9,12367,12366,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.943211910507,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,380,0,0,0 +5567,6825,12370,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,2,0,5.760298271066762,5.728998220870244,3,0,0,0,-9,0,-924.1282669557055,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.34162106166363,6.013607622433279,0,0,57.57,49.69,5,1,0,0,10,2,1,508,0,0,0 +5568,6826,12371,12372,-9,-9,1,1,1,89,1,0,0,0,1,-9,4,3,0,4,0,8.250065159482654,7.909957060131139,1,0,-9,31,0,11,-40.72022417462011,0,0,0,78,2,4,3,3,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.102395642846154,8.076493851271989,0,0,54.5,43.93,6,1,0,0,2,3,1,312,0,0,0 +5568,6826,12372,12371,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,4,0,6.655623911369056,6.391346658847234,1,0,-9,31,0,-11,-82.47762738783042,0,0,0,89,1,4,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.287759365449163,6.630465248010819,0,0,57.16,56.15,7,1,0,0,2,3,1,312,0,0,0 +5569,6827,12373,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,7.849704047057073,7.969279624803465,3,0,0,0,-9,0,-1010.074902478135,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.55914879802701,8.182169145415223,0,3,55.44,52.99,7,1,0,0,1,4,1,685,0,0,0 +5570,6828,12374,12376,-9,-9,2,1,1,45,1,0,2,0,1,-9,1,1,0,3,8.238260737426645,8.153093608262989,0,2,0,-9,7,-9,2,39.2277585991428,-9,0,0,43,1,2,3,3,2,2019,2,1,7,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.37,54.8,5,3,0,0,8,3,0,534.3333333333334,0,0,0 +5570,6828,12375,-9,12376,12374,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1010.195193818628,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,3,0,0,8,3,0,534.3333333333334,0,0,0 +5570,6828,12376,12374,-9,-9,1,1,0,43,1,0,2,0,1,-9,6,3,0,2,0,0,0,2,0,-9,7,-9,-2,57.40595886427794,-9,0,1,45,1,3,1,1,1,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.73,45.88,6,3,0,1,8,3,0,534.3333333333334,0,0,0 +5571,6829,12377,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-890.8459665887659,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.42,42.13,3,3,1,1,8,1,0,171,0,0,0 +5572,6830,12378,12379,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,60,0,-3,28.26229011460891,0,0,0,82,1,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.359381156628826,0,0,0,54.2,57.49,7,1,0,0,10,3,1,788.5,0,0,0 +5572,6830,12379,12378,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,4,0,8.18881800363974,7.820174709354369,1,0,-9,60,0,3,176.4663242298109,0,0,0,79,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.259978080780055,7.879563020958076,0,0,55.58,52.99,6,1,0,0,10,3,1,788.5,0,0,0 +5573,6831,12380,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-966.6768310288493,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,53.92090056057656,1,1,0,0,0,0,0,29.61,21.77,4,1,0,0,13,1,0,545,0,0,0 +5574,6832,12381,12382,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.604123198847883,7.941823558110493,7.267548901360124,1,0,-9,7,0,-6,-178.4293974772917,0,0,0,67,2,3,3,3,3,2019,2,1,7,0,14,0,15,1,0,4,0,17.30666549476285,17.30666549476285,0,0,0,0,0,0,0,1,1,0,0,7.299779255129544,0,0,63,32.96,6,1,0,0,2,3,1,874,0,0,0 +5574,6832,12382,12381,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,6,70.62882744797166,0,0,0,61,2,3,1,3,2,2019,3,2,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.603846366835087,0,0,0,52,47,5,1,0,0,2,3,1,874,0,0,0 +5575,6833,12383,-9,12386,12385,6,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.7810780181209,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,343.4,0,0,0 +5575,6833,12384,-9,12386,12385,5,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.1577959486842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,343.4,0,0,0 +5575,6833,12385,12386,-9,-9,3,1,1,30,1,0,4,0,2,-9,2,1,0,2,8.279293037955412,8.021073414934017,0,2,0,-9,7,0,1,-4.920333167263895,0,0,0,29,2,4,3,-9,-9,2019,2,1,18,6,47,50,15,1,6,3,0,7.503024457275092,7.503024457275092,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,3,1,0,0,9,2,0,343.4,0,0,0 +5575,6833,12386,12385,-9,-9,1,1,0,29,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-1,-117.7858996955555,0,1,1,30,2,2,1,2,2,2019,3,3,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.63,53,4,1,0,0,9,2,0,343.4,0,0,0 +5575,6833,12387,-9,12386,12385,4,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.02298556262,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,343.4,0,0,0 +5576,6834,12388,12389,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,6.768099084604779,6.93644857337918,1,0,-9,51,0,0,-1.724402811883578,0,0,0,74,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.279655930764964,6.522535542193904,0,0,57.33,53.46,6,1,0,0,8,4,1,899.5,0,0,0 +5576,6834,12389,12388,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,8.853454724997796,8.793031231850723,1,0,-9,51,0,0,-61.32640662208754,0,0,0,74,3,3,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.852746518110511,8.74847263985489,0,0,50.93,39.92,6,1,0,0,8,4,1,899.5,0,0,0 +5577,6835,12390,12391,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,4,8.255940261742676,8.279927950738349,0,1,0,-9,1,-9,2,-29.46170565859008,-9,0,0,50,2,3,1,2,2,2019,1,2,6,0,40,0,15,1,0,1,0,10.37773694662434,10.37773694662434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.29,51.8,6,1,0,0,2,5,1,816.5,0,0,0 +5577,6835,12391,12390,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,8.042980859489484,8.343228493374497,0,1,0,-9,1,-9,-2,-151.0460701580329,-9,0,0,52,3,4,1,3,3,2019,1,1,11,0,60,0,15,1,0,1,0,6.552879002785834,6.552879002785834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,42.94,6,1,0,0,2,5,1,816.5,0,0,0 +5578,6836,12392,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,-9,0,1,0,-1175.69753770847,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,59.06,6,1,0,0,6,2,0,793,0,0,0 +5579,6837,12393,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1098.358228598535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.06,53.76,6,1,0,0,13,1,0,296,0,0,0 +5580,6838,12394,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,4,0,8.316878190789135,7.928776002846297,3,0,0,0,-9,0,-1113.307834910347,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.247972485892179,8.177723708399741,0,0,57.16,56.15,7,1,0,0,2,4,1,213,0,0,0 +5581,6839,12395,12396,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,6.203161424360857,6.115944448696798,1,0,-9,40,0,-1,-8.778641666764425,0,0,0,62,1,3,1,3,2,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.10342594689704,11.93836119542093,3,55.96,49.93,7,1,0,0,10,5,1,1079.5,0,0,0 +5581,6839,12396,12395,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,3,9.611081685625313,10.04880983572437,0,1,0,-9,41,0,1,65.31300000354548,0,0,0,61,1,3,3,2,2,2019,2,2,9,0,45,47,15,1,0,4,0,47.69743629493283,47.69743629493283,0,0,0,0,0,0,0,0,0,0,4.838263506054648,0,0,0,54.97,47.63,6,1,0,0,10,5,1,1079.5,0,0,0 +5582,6840,12397,12398,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,61,0,-3,24.50311652504515,0,0,0,84,2,5,3,-9,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.64,55.02,6,1,0,0,9,2,1,189,0,0,0 +5582,6840,12398,12397,-9,-9,2,1,1,84,1,0,0,0,2,-9,4,3,0,5,0,7.128060861920401,7.142091903612848,1,0,-9,61,0,3,61.31781286623166,0,0,0,81,3,4,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.141548037784462,6.892684392377944,0,0,48.83,45.04,6,1,0,0,9,2,1,189,0,0,0 +5583,6841,12399,-9,12400,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.8308029090117,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,2,0,314,0,0,0 +5583,6841,12400,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,2,7.053282107131897,7.02961927017513,0,4,0,0,0,-9,0,-1009.766874643094,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,30,12,20,20,15,1,12,-9,0,8.211688803275457,8.211688803275457,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.3,52.8,3,1,0,0,9,2,0,314,0,0,0 +5584,6842,12401,12402,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,3.861145529338637,3.795838473974857,0,1,0,-9,10,0,6,85.9715184128093,0,0,0,48,2,2,1,3,-9,2019,1,2,15,4,32,32,15,1,4,1,0,.1795639216600931,.1795639216600931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.32,33.21,6,1,0,0,11,5,1,342,0,0,0 +5584,6842,12402,12401,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,2,9.100953813388205,9.168912334897017,0,1,0,-9,10,0,-6,-18.14281911104831,0,0,0,54,2,3,1,-9,-9,2019,1,1,14,2,48,46,15,1,2,1,0,16.61583100952019,16.61583100952019,0,0,0,0,0,0,0,0,0,0,1.316728175376853,0,0,0,53.23,47.51,5,1,0,0,11,5,1,342,0,0,0 +5585,6843,12403,12404,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,1,0,4.703228236376519,4.652170264666095,1,0,-9,6,0,3,83.3786277196962,0,0,0,82,3,4,3,3,3,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.02594212994691,0,0,36.53,14.85,6,1,0,0,2,1,1,1068,0,0,0 +5585,6843,12404,12403,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,-3,1.429671039645725,0,0,0,85,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,59.13,6,1,0,0,2,1,1,1068,0,0,0 +5586,6844,12405,12406,-9,-9,2,1,0,26,1,0,0,0,3,-9,2,1,0,2,7.919784547603218,8.071549741356318,0,1,0,-9,3,0,-2,49.46415532190776,-9,1,1,28,3,2,1,-9,-9,2019,1,1,12,0,37,0,15,1,0,1,0,9.074447269418361,9.074447269418361,0,0,0,0,0,0,0,0,0,0,.1477237836647968,0,0,0,33.17,45.88,4,1,0,0,10,4,0,429,0,0,0 +5586,6844,12406,12405,-9,-9,1,1,1,28,1,0,0,0,3,-9,2,1,0,2,7.895981679119187,8.130424804396053,0,1,0,-9,3,0,2,19.12723885635465,0,1,0,26,3,2,1,-9,-9,2019,1,2,13,1,53,38,15,1,1,1,0,7.745777180504632,7.745777180504632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.81,61.06,5,1,0,0,10,4,0,429,0,0,0 +5587,6845,12407,12408,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,44,0,-2,64.98275437679217,0,0,0,64,2,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.9656195144721,3,38.99,39.26,6,1,0,0,11,4,1,1112.5,0,0,0 +5587,6845,12408,12407,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.79862771775811,8.430018766198321,1,0,-9,7,0,2,-12.61466007423031,0,0,0,62,3,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.57838549819321,8.803680385237111,0,3,52,48,5,1,0,0,11,4,1,1112.5,0,0,0 +5587,6846,12409,-9,12407,12408,3,1,0,39,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1032.354699277746,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,6,1,0,0,11,1,1,2085,0,0,0 +5588,6847,12410,-9,-9,-9,3,1,0,67,3,0,0,0,2,-9,2,1,0,3,7.143373947070019,7.174030004191795,6.461907803670718,3,0,0,0,-9,0,-1057.148136636221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,0,15,1,0,-9,0,3.19245596657296,3.19245596657296,0,0,0,0,0,0,0,1,1,0,0,6.149979241019278,0,0,52,54.51,6,1,0,0,9,3,0,764,0,0,0 +5589,6848,12411,-9,-9,-9,1,1,1,22,2,0,0,0,1,-9,2,1,0,3,8.099036834239168,8.042019766044339,0,3,0,0,0,-9,0,-1006.266604108164,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,41,15,1,0,-9,0,7.251402619832385,7.251402619832385,0,0,0,0,0,0,0,0,0,0,.8410000370014444,0,0,0,47.91,51.06,5,1,0,0,4,4,1,279,0,0,0 +5590,6849,12412,12413,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,3,8.199470985592408,8.257759286948549,5.621316253275057,1,0,-9,39,0,5,90.47900887726499,0,0,0,58,3,3,1,3,3,2019,1,2,9,0,43,45,15,1,0,1,0,8.768594970886308,8.768594970886308,0,0,0,0,0,0,0,0,0,0,5.626436006341804,5.492171739048253,0,0,58.47,50.22,6,1,0,0,5,5,1,324,0,0,0 +5590,6849,12413,12412,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,3,7.755136241685417,8.213766533847927,0,1,0,-9,7,0,-5,-20.29485443281505,0,0,0,63,3,3,1,-9,-9,2019,1,1,11,0,38,38,15,1,2,1,0,13.21859523432406,13.21859523432406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,1,0,0,5,5,1,324,0,0,0 +5591,6850,12414,12415,-9,-9,1,1,0,32,1,0,2,0,1,-9,2,1,0,4,7.056253858597245,6.987505823359597,0,2,0,-9,5,0,-14,-32.65357334541049,0,0,1,46,1,4,1,2,1,2019,1,5,10,0,18,40,15,1,0,1,0,7.07189501669778,7.07189501669778,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,4,0,0,2,3,0,1172.333333333333,0,0,0 +5591,6850,12415,12414,-9,-9,5,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.240197546900575,8.586875918199272,0,2,0,-9,5,0,14,23.82718079576827,0,0,0,32,1,4,1,-9,-9,2019,1,1,4,0,43,41,15,1,0,1,0,12.13924307211146,12.13924307211146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.1,57.51,6,4,0,0,2,3,0,1172.333333333333,0,0,0 +5591,6850,12416,-9,12414,12415,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.7228664647336,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,2,3,0,1172.333333333333,0,0,0 +5592,6851,12417,-9,12419,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-914.7676498423394,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.308177703940565,0,0,0,45,59,5,1,0,0,8,1,0,2168.666666666667,0,0,0 +5592,6851,12418,-9,12419,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.3190329838777,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,1,0,2168.666666666667,0,0,0 +5592,6851,12419,-9,-9,-9,1,1,0,43,2,0,2,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-969.9921989147904,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,1,0,8,1,0,2168.666666666667,0,0,0 +5593,6852,12420,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,6.161583835087908,6.417142927646484,3,0,0,0,-9,0,-1029.60522683858,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.299620244725283,0,0,62.49,55.09,6,1,0,0,10,2,1,411,0,0,0 +5594,6853,12421,-9,-9,-9,1,1,0,77,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-971.6406942062783,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.74,37.25,7,1,0,0,11,1,0,614,0,0,0 +5595,6854,12422,-9,-9,-9,1,1,0,45,3,0,1,0,1,-9,2,1,0,3,8.898867438952109,9.199547031068713,5.885083678834343,4,0,0,0,-9,0,-931.3024416747714,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,85,0,15,1,11,-9,0,9.985362839643559,9.985362839643559,0,0,0,0,0,0,0,1,1,0,6.377176413058373,0,0,0,16.08,63.04,3,1,0,0,6,5,1,1060,0,0,0 +5596,6855,12423,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,1,1,0,3,0,9.114249534876276,8.84806996112866,3,0,0,0,-9,0,-1064.598736356366,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.990208416940733,8.715197460116443,0,0,49.13,50.19,2,1,0,0,6,5,0,280,0,0,0 +5597,6856,12424,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,1,1,0,4,7.110542221777939,7.181024981548041,0,3,0,0,0,-9,0,-1008.472836221355,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,50,40,15,1,0,-9,0,2.250981076150328,2.250981076150328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.49,61.79,5,1,0,0,2,2,1,135,0,0,0 +5598,6857,12425,12426,-9,-9,2,1,1,51,1,0,2,0,2,-9,1,1,0,4,6.983733823988752,7.387002625269696,0,2,0,-9,26,0,3,82.31582587086706,0,0,0,48,1,4,1,-9,3,2019,1,1,6,0,20,0,15,1,0,1,0,7.984186132809463,7.984186132809463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.38,48.28,7,4,0,0,8,3,0,612.5,0,0,0 +5598,6857,12426,12425,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,4,7.939820912795658,7.691046824973393,0,2,0,-9,26,0,-3,-65.86985964001492,0,0,0,51,2,4,1,3,3,2019,1,2,6,0,37,0,15,1,0,1,0,7.851314191652079,7.851314191652079,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.09,60.15,6,4,0,0,8,3,0,612.5,0,0,0 +5598,6858,12427,-9,12426,12425,3,1,1,23,2,0,2,0,2,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-933.8760162420118,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.53,57.01,6,4,0,0,8,1,0,409,0,0,0 +5598,6859,12428,-9,12426,12425,4,1,1,18,2,0,2,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-964.8025437527035,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,2,0,0,8,3,0,277,0,0,0 +5599,6860,12429,12430,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,7.664096621909705,7.437762634069903,1,0,-9,57,0,-1,8.9826033448369,0,0,0,77,3,3,3,3,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.521973335513067,7.521774005182576,7.210277156543628,2,57.16,56.15,1,1,0,0,5,2,1,619.5,0,0,0 +5599,6860,12430,12429,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,1,87.30345514501374,0,0,0,76,3,4,3,3,2,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,14.86428998140073,0,0,0,0,1,1,0,2.658870217236996,0,0,0,49.14,22.99,6,1,0,0,5,2,1,619.5,0,0,0 +5600,6861,12431,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,4,0,7.305589104989245,7.18621134643083,3,0,0,0,-9,0,-897.5774997570409,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.666039939018798,7.272420496358452,0,0,48.68,58.58,7,1,0,0,11,3,0,701,0,0,0 +5601,6862,12432,12435,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,3,7.439303456920884,7.595362364922817,0,2,0,-9,11,0,-2,-133.3395377463548,0,0,1,37,1,4,1,3,3,2019,1,1,8,1,20,0,15,1,1,1,0,13.13477953642295,13.13477953642295,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.03,44.43,6,3,0,0,8,4,1,514,0,0,0 +5601,6862,12433,-9,12432,12435,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.2612668799129,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,4,1,514,0,0,0 +5601,6862,12434,-9,12432,12435,3,1,0,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.141044263656,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,514,0,0,0 +5601,6862,12435,12432,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,9.046472838491527,9.359925279496174,0,2,0,-9,11,0,2,-2.281122095657002,0,0,0,35,1,3,1,1,1,2019,1,2,7,0,40,37,15,1,0,1,0,26.46904810568976,26.46904810568976,0,0,0,0,0,0,0,1,1,0,3.334370210772846,0,0,0,57.86,40.98,6,3,0,0,8,4,1,514,0,0,0 +5602,6863,12436,12437,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.198564736296106,8.061413009995499,0,1,0,-9,37,0,-5,9.817949462561863,0,0,0,64,2,4,1,-9,-9,2019,1,1,11,1,45,40,15,1,1,1,0,9.800970361428131,9.800970361428131,0,0,0,0,0,0,0,0,0,0,2.978251724349018,0,0,0,41.28,57.99,5,1,0,0,2,5,1,1439.5,0,0,0 +5602,6863,12437,12436,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.23588280286261,8.826432427044287,7.433123126614376,1,0,-9,38,0,5,-141.0938179573455,0,0,0,59,2,3,1,3,2,2019,1,2,6,0,39,39,15,1,0,1,0,13.25507490836214,13.25507490836214,0,0,0,0,0,0,0,0,0,0,0,7.517658270812699,0,0,60.12,54.8,6,1,0,0,2,5,1,1439.5,0,0,0 +5602,6864,12438,-9,12436,12437,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.74124522698648,8.472297040095389,0,3,0,0,0,-9,0,-891.9832323567008,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,50,15,1,0,-9,1,14.8086870001604,14.8086870001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,94,0,0,0 +5603,6865,12439,-9,12440,12441,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1135.198121591137,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,1163.666666666667,0,0,0 +5603,6865,12440,12441,-9,-9,2,1,0,35,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,1,-9,0,-113.6155883770271,-9,0,1,35,1,4,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,47,6,1,1,0,11,3,1,1163.666666666667,0,0,0 +5603,6865,12441,12440,-9,-9,1,1,1,35,1,0,1,0,1,-9,2,1,0,4,8.090707236645228,8.26913505908654,0,2,0,-9,1,-9,0,43.65533497293161,-9,0,0,35,3,3,3,2,2,2019,2,2,0,0,37,0,15,1,0,3,0,9.734890879425436,9.734890879425436,0,0,0,0,0,0,0,1,1,0,0,0,26.02476354642431,3,54.2,57.49,6,1,0,0,11,3,1,1163.666666666667,0,0,0 +5604,6866,12442,12443,-9,-9,1,1,0,56,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,9,0,0,-118.7464233563605,0,0,0,56,2,4,1,3,3,2019,3,2,18,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.347084664649353,0,1.392905182856359,3,48.7,56.22,6,1,1,0,9,4,1,628,0,0,0 +5604,6866,12443,12442,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,7.575166996134082,8.671536874874933,8.013114532026613,1,0,-9,9,0,0,15.22660547978528,0,0,0,56,3,3,3,3,3,2019,2,1,13,3,19,19,15,1,3,3,0,13.6077761420134,13.6077761420134,0,0,0,0,0,0,0,0,0,0,3.645392100464198,8.130625941476668,0,0,42.12,61.5,6,1,0,0,9,4,1,628,0,0,0 +5605,6867,12444,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-778.5146773378639,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,59.99,26.49,6,1,0,0,2,1,0,889,0,0,0 +5606,6868,12445,12446,-9,-9,2,1,1,56,1,0,0,0,1,-9,4,3,0,3,0,8.506837737511306,8.108205325732321,1,0,-9,8,0,-1,-62.14931799063433,0,0,0,57,1,4,3,2,3,2019,4,1,7,0,0,37,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4.113350611119031,8.366799263083278,0,0,48.45,57.49,5,1,0,0,1,5,1,330,0,0,0 +5606,6868,12446,12445,-9,-9,1,1,0,57,1,0,0,0,1,-9,3,3,0,4,8.905355819605505,8.864166693747411,0,1,0,-9,8,0,1,128.864075074231,0,0,0,56,1,3,3,2,2,2019,4,2,18,7,38,40,15,3,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.48,51.26,5,1,1,0,1,5,1,330,0,0,0 +5607,6869,12447,12448,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,54,0,-4,53.6138863554642,0,0,0,79,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.762161052591619,0,0,0,59.71,50.89,7,1,0,0,10,2,1,591,0,0,0 +5607,6869,12448,12447,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.268154556455104,7.570714464650145,1,0,-9,54,0,4,-2.809937188136122,0,0,0,75,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.100852323166591,7.627989269197845,0,0,57.33,53.46,6,1,0,0,10,2,1,591,0,0,0 +5608,6870,12449,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.661030619438915,8.248940514770448,0,3,0,0,0,-9,0,-1024.36543959043,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,18,6,50,51,15,1,6,-9,0,13.27755772303077,13.27755772303077,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,4,1,0,0,8,5,1,647,0,0,0 +5609,6871,12450,12451,-9,-9,1,1,0,59,1,0,0,0,3,-9,4,3,0,3,0,4.704131101689864,4.694122789618829,1,0,-9,44,0,-3,-96.67320035286646,0,0,0,62,2,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.002199253239704,4.730867584432048,0,0,46.08,57.2,6,1,0,0,7,2,1,322,0,0,0 +5609,6871,12451,12450,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,7.002832391835167,6.965439512616721,1,0,-9,44,0,3,18.38485789728433,0,0,0,59,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.18107138220114,7.102332301513898,0,0,57.33,53.46,5,1,0,0,7,2,1,322,0,0,0 +5610,6872,12452,12453,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.639927359385897,9.036697108118066,4.859452000287408,1,0,-9,7,0,2,17.8845937032833,0,0,0,60,2,3,1,3,3,2019,1,2,7,0,43,44,15,1,0,1,0,15.43934255634788,15.43934255634788,0,0,0,0,0,0,0,0,0,0,5.727293021027918,5.255437662173099,1.050474432684056,3,56.11,44.4,6,1,0,0,5,5,1,421,0,0,0 +5610,6872,12453,12452,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.477164259984664,7.124343017182578,4.760588180526728,1,0,-9,7,0,-2,99.67394316034444,0,0,0,62,2,3,1,3,3,2019,1,1,12,0,26,26,15,1,0,1,0,6.707783786032506,6.707783786032506,0,0,0,0,0,0,0,0,0,0,2.902011806112927,4.596143124736355,6.234117883257703,3,55.71,40.47,6,1,0,0,5,5,1,421,0,0,0 +5611,6873,12454,-9,12457,12456,4,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1127.899502867317,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,57.22,4,1,0,0,12,4,1,519.5,0,0,0 +5611,6873,12455,-9,12457,12456,5,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.244660929291,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,519.5,0,0,0 +5611,6873,12456,12457,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,3,8.512966674879202,8.097704411152485,0,2,0,-9,9,0,6,84.16729716812117,0,0,0,45,2,3,1,3,2,2019,1,2,8,0,50,52,15,1,0,1,0,14.72470710140236,14.72470710140236,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,4,1,519.5,0,0,0 +5611,6873,12457,12456,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,3,8.129265422055303,8.459066696242767,0,2,0,-9,9,0,-6,28.59398588557007,0,0,0,51,2,3,1,-9,2,2019,1,1,8,0,40,40,15,1,0,1,0,12.54040866719665,12.54040866719665,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.44,61.5,3,1,0,0,12,4,1,519.5,0,0,0 +5611,6874,12458,-9,12457,12456,3,1,0,21,2,0,2,0,2,0,7,2,0,4,5.582942634129514,5.342387109042977,0,3,0,0,0,-9,0,-967.620073726934,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,12,2,1,268,0,0,0 +5612,6875,12459,-9,-9,-9,1,1,1,80,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1021.993864658463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,5,1,0,0,2,1,1,234,0,0,0 +5613,6876,12460,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1089.468994355983,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,7.898540606469438,0,0,0,1,1,0,0,0,0,0,49.29,49.06,6,1,0,0,10,1,1,407,0,0,0 +5614,6877,12461,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-968.4186585634992,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.093741171775306,0,0,0,57.66,42.38,6,1,0,0,10,1,1,273,0,0,0 +5615,6878,12462,-9,-9,-9,1,1,1,96,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-942.3797556127462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.128235980090365,8.52699415618622,0,0,1,1,0,2.09224973040122,0,0,0,56.34,35.43,5,1,0,0,13,1,1,2250,0,0,0 +5615,6879,12463,-9,-9,12462,2,1,1,73,2,0,0,0,2,-9,4,3,0,2,0,8.00757279278481,7.626768290939768,3,0,0,0,-9,0,-1056.942140122683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.156090889805546,7.590930791526463,0,0,53.05,47.86,6,1,0,0,13,3,1,734,0,0,0 +5616,6880,12464,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-867.6748333014967,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,74.39349886259647,0,0,1,1,0,0,0,0,0,35.76,21.78,7,1,0,0,12,1,0,519,0,0,0 +5616,6881,12465,-9,12464,-9,2,1,1,37,2,0,0,0,2,-9,2,1,0,3,7.965365680019877,7.826405303503183,0,3,0,0,0,-9,0,-994.0023973752834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,40,40,15,1,0,-9,1,6.47854533886798,6.47854533886798,0,0,0,0,0,0,0,1,1,0,0,0,2.643872518895475,3,57.09,46.7,5,1,0,0,12,3,0,339,0,0,0 +5617,6882,12466,12467,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,3,8.489058388041839,8.660024739331286,0,1,0,-9,4,0,1,-99.82511529300095,0,0,1,31,1,1,1,-9,-9,2019,1,1,10,0,38,39,15,1,0,1,0,16.25096567744858,16.25096567744858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,56.78,5,3,0,0,7,5,1,3038.5,0,0,0 +5617,6882,12467,12466,12468,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,1,8.851843664959549,8.693604198699921,0,1,0,-9,4,0,-1,52.75053403555419,0,0,0,32,1,3,1,3,2,2019,1,2,3,0,50,37,15,1,0,1,0,16.81280402598644,16.81280402598644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.55,19.83,5,3,0,0,7,5,1,3038.5,0,0,0 +5617,6883,12468,-9,-9,-9,3,1,0,64,3,0,0,0,2,-9,2,1,0,2,6.945169061599143,7.375501110510007,6.390897982743681,3,0,0,0,-9,0,-932.2212626337334,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,20,20,15,1,7,-9,0,7.979468061085252,7.979468061085252,0,0,0,0,0,0,0,0,0,0,0,6.57019575985691,0,0,47.55,28.27,6,3,0,0,7,3,1,2537,0,0,0 +5618,6884,12469,12470,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,4,8.129201897687903,8.449938418682107,7.599769851536041,1,0,-9,31,0,8,129.0959478246802,0,0,0,57,2,2,3,3,2,2019,2,2,10,0,42,45,15,1,0,4,0,10.67149184366389,10.67149184366389,0,0,0,0,0,0,0,1,1,0,7.619579726271435,7.566782899083193,0,0,61.12,51.57,5,1,0,0,13,5,1,649,0,0,0 +5618,6884,12470,12469,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,2,0,6.884563822651455,7.505060476820155,1,0,-9,31,0,-8,87.88821064652723,0,0,0,65,3,4,1,3,3,2019,3,1,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.568574297997315,7.148691777449916,0,0,58.11,11.58,6,1,0,0,13,5,1,649,0,0,0 +5618,6885,12471,-9,12470,12469,3,1,1,26,2,0,0,0,1,-9,2,1,0,3,8.583717263288813,8.772649454607457,0,3,0,0,0,-9,0,-1124.612125356811,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,50,0,15,1,0,-9,1,12.33809234831824,12.33809234831824,0,0,0,0,0,0,0,1,1,0,3.879105339406063,0,0,0,49.04,55.86,5,1,0,0,13,5,1,245,0,0,0 +5618,6886,12472,-9,12470,12469,4,1,0,21,2,0,0,1,2,0,7,2,0,4,6.462078563822759,6.611376948034641,0,3,0,0,0,-9,0,-1193.068136984254,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,13,2,1,214,0,0,0 +5619,6887,12473,12474,-9,-9,1,1,1,42,1,1,2,0,1,-9,2,1,0,3,0,0,0,2,0,-9,21,0,0,-35.89019877094946,0,0,0,42,1,5,1,3,-9,2019,1,2,20,7,0,70,15,1,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.25,55.37,5,1,0,1,6,3,1,759.75,0,0,0 +5619,6887,12474,12473,-9,-9,2,1,0,42,1,1,2,0,1,-9,2,1,0,5,8.432933030863563,8.365194666314197,0,2,0,-9,21,0,0,-1.318360681619385,0,0,1,42,1,3,1,3,2,2019,1,1,7,0,47,48,15,1,0,1,0,8.084828155770968,8.084828155770968,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,6,3,1,759.75,0,0,0 +5619,6887,12475,-9,12474,12473,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.0076804317306,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,759.75,0,0,0 +5619,6887,12476,-9,12474,12473,3,1,0,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1165.489289125495,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,1,759.75,0,0,0 +5620,6888,12477,-9,12479,12478,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-843.8922500180731,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,5,4,1,581.3333333333334,0,0,0 +5620,6888,12478,12479,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,3,8.953820396733052,9.458687935423811,0,2,0,-9,21,0,7,-43.04536828103429,0,0,0,37,2,3,3,3,3,2019,2,1,17,5,51,49,15,1,5,3,0,20.75588961826691,20.75588961826691,0,0,0,0,0,0,0,1,1,0,4.435144912311612,0,0,0,40.48,43.35,2,1,0,0,5,4,1,581.3333333333334,0,0,0 +5620,6888,12479,12478,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,21,0,-7,51.59731620222475,-9,0,1,44,1,3,1,2,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.04,40.08,5,1,0,0,5,4,1,581.3333333333334,0,0,0 +5621,6889,12480,12481,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.039505757917876,7.902160104331611,0,1,0,-9,6,0,-10,98.95259506753533,0,0,0,65,3,4,1,3,3,2019,1,1,8,1,38,37,15,1,1,1,0,9.110058989953917,9.110058989953917,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,13,3,1,807.5,0,0,0 +5621,6889,12481,12480,-9,-9,1,1,1,65,1,0,0,0,3,-9,1,1,0,4,0,0,0,1,0,-9,6,0,10,4.050390485667263,0,0,0,55,2,4,1,3,3,2019,1,2,5,0,0,26,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.85,5,1,0,0,13,3,1,807.5,0,0,0 +5621,6890,12482,-9,12480,12481,3,1,1,22,2,0,0,0,2,-9,2,1,0,5,7.676843217528374,7.557923899453917,0,3,0,0,0,-9,0,-1077.022218981383,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,8,16,15,1,0,-9,1,32.40655611126495,32.40655611126495,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,13,3,1,1112,0,0,0 +5621,6891,12483,-9,12480,12481,4,1,1,28,2,0,0,0,2,-9,2,1,0,4,8.183693926441236,8.326260564994847,0,3,0,0,0,-9,0,-1080.415479511187,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,30,15,1,1,-9,1,8.742161783216432,8.742161783216432,0,0,0,0,0,0,0,1,1,0,7.110348110365506,0,0,0,49,58,5,1,0,0,13,4,1,274,0,0,0 +5622,6892,12484,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,3,8.531576906960082,8.171317886459445,0,4,0,0,0,-9,0,-1081.6791833724,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,11.73383137192602,11.73383137192602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,4,0,0,7,4,0,754,0,0,0 +5622,6892,12485,-9,12484,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-824.5972354615844,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,7,4,0,754,0,0,0 +5622,6893,12486,-9,12484,-9,2,1,1,21,2,0,1,0,2,-9,2,1,0,4,8.115307789109632,7.900241705162732,0,3,0,0,0,-9,0,-1138.105388434675,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,0,0,49,32,15,1,0,-9,1,8.894830614974635,8.894830614974635,0,0,0,0,0,0,0,1,1,0,5.561615487260809,0,0,0,48,59,4,4,0,0,7,4,0,114,0,0,0 +5623,6894,12487,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,4,8.327348732370767,8.677480471318216,0,3,0,0,0,-9,0,-992.4973228411093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,35,35,15,1,3,-9,0,19.38272567103531,19.38272567103531,0,0,0,0,0,0,0,1,1,0,.7041371932071885,0,17.40922623223248,3,28.56,63.72,5,2,0,0,8,5,0,510,0,0,0 +5624,6895,12488,12489,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.618421564891509,8.868661855468522,0,1,0,-9,25,0,-1,2.587600064874373,0,0,0,49,1,4,1,2,2,2019,1,1,9,0,48,0,15,1,0,1,0,15.06077068901134,15.06077068901134,0,0,0,0,0,0,0,0,0,0,.7471547419738171,0,0,0,57.16,56.15,7,1,0,0,5,5,1,387,0,0,0 +5624,6895,12489,12488,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.837598327769053,9.158327649566301,0,1,0,-9,25,0,1,-103.4708796624785,0,0,0,48,2,4,1,2,3,2019,1,2,10,0,50,0,15,1,0,1,0,19.28750867640409,19.28750867640409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,4,1,0,0,5,5,1,387,0,0,0 +5625,6896,12490,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,2,1,0,3,8.133754997348175,8.164372271676038,0,3,0,0,0,-9,0,-860.13953737699,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,42,38,15,1,0,-9,0,9.391733695516988,9.391733695516988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,5,1,0,0,2,4,0,1074,0,0,0 +5626,6897,12491,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,0,3.996137754787561,4.226738791263809,3,0,0,0,-9,0,-1016.508465416914,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,4.991216419811348,0,4.750504451152228,1,1,0,0,4.287892507361073,0,0,39.06,27.1,4,1,0,0,4,1,1,598,0,0,0 +5627,6898,12492,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,3,0,5.972471739120454,5.613502094065219,3,0,0,0,-9,0,-1057.34685266902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.736449925420382,5.424126925110365,0,0,52.58,37.87,6,1,0,0,13,2,1,854,0,0,0 +5628,6899,12493,-9,12495,12496,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.881355301856,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,1,1456.5,0,0,0 +5628,6899,12494,-9,12495,12496,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.1865472834224,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,1456.5,0,0,0 +5628,6899,12495,12496,-9,-9,2,1,0,29,1,1,2,0,1,-9,2,1,0,4,7.999453925926064,8.477534821627792,0,2,0,-9,8,0,0,4.497616047395109,0,1,1,38,2,4,1,2,2,2019,1,1,12,1,30,28,15,1,1,1,0,11.92178894382602,11.92178894382602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,4,3,1,1456.5,0,0,0 +5628,6899,12496,12495,-9,-9,1,1,1,38,1,1,2,0,2,-9,2,1,0,4,7.626069871318876,7.851965755061141,0,2,0,-9,8,0,9,19.73956585787493,0,0,0,29,1,4,1,2,2,2019,1,2,10,2,37,60,15,1,2,1,0,8.219123566434666,8.219123566434666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,4,3,1,1456.5,0,0,0 +5629,6900,12497,12498,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,3,7.41709770456348,7.362688945257204,0,1,0,-9,26,0,4,-19.46846489738216,0,0,0,47,1,2,3,3,2,2019,2,1,17,6,30,26,15,1,6,3,0,6.305145098061047,6.305145098061047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,6,3,0,0,2,2,0,488,0,0,0 +5629,6900,12498,12497,-9,-9,1,1,0,47,1,0,0,0,1,-9,6,3,0,2,0,0,0,1,0,-9,26,0,-4,27.15824997697315,0,0,0,51,1,3,1,2,2,2019,3,2,13,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,24.79,3,3,0,0,2,2,0,488,0,0,0 +5629,6901,12499,-9,12498,12497,3,1,1,22,2,0,0,0,2,-9,2,1,0,5,6.300824129132699,6.291476658712807,0,3,0,0,0,-9,0,-920.0587215394078,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,7,10,10,15,1,7,-9,1,5.364234865532057,5.364234865532057,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.06,49.62,6,3,0,0,2,2,0,1207,0,0,0 +5629,6902,12500,-9,12498,12497,4,1,1,19,2,0,0,0,2,1,2,1,0,5,7.293971480822522,7.136838753832163,0,3,0,0,0,-9,0,-901.5335539379221,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,31,0,15,1,0,-9,1,4.681922193042214,4.681922193042214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,3,0,0,2,2,0,358,0,0,0 +5630,6903,12501,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.865618552455526,8.253467845219909,0,3,0,-9,0,0,0,-1022.082791183191,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,38,40,15,1,4,-9,0,8.098099339573926,8.098099339573926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.8,54.59,4,1,0,0,4,3,0,461,0,0,0 +5631,6904,12502,12504,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,3,8.527047910736075,8.773730955514162,0,2,0,-9,4,0,9,-10.29881923248437,0,0,0,30,1,4,1,1,1,2019,1,2,25,10,37,40,15,1,10,1,0,14.28572979221348,14.28572979221348,0,0,0,0,0,0,0,1,1,0,6.059222551958335,0,0,0,28.84,58.3,3,1,0,0,1,4,1,232.3333333333333,0,0,0 +5631,6904,12503,-9,12504,12502,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-997.6668827696345,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,4,1,232.3333333333333,0,0,0 +5631,6904,12504,12502,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,4,8.114816233006492,7.673933677235308,0,2,0,-9,4,0,0,-111.2300605746796,0,0,1,39,2,3,1,-9,-9,2019,1,1,12,1,38,38,15,1,1,1,0,8.126855035337126,8.126855035337126,0,0,0,0,0,0,0,1,1,0,1.456912685254709,0,0,0,46.5,58.26,6,1,0,0,1,4,1,232.3333333333333,0,0,0 +5632,6905,12505,12506,-9,-9,2,1,1,70,1,0,0,0,1,-9,1,1,0,4,9.993932702883578,10.13783200154223,8.251147994409786,1,0,-9,39,0,0,-53.69549795431308,0,0,0,70,2,4,3,3,2,2019,2,1,6,0,45,45,15,1,0,4,0,49.68990454401455,49.68990454401455,0,0,0,0,0,0,0,1,1,0,7.148564848612964,7.399258668251983,0,0,60.12,54.8,7,1,0,0,12,5,1,723,0,0,0 +5632,6905,12506,12505,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.333435145407898,7.525817663833976,1,0,-9,39,0,0,-69.95649083375319,0,0,0,70,1,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.352315504511074,7.652676212512351,0,0,43.2,59.97,7,1,0,0,12,5,1,723,0,0,0 +5633,6906,12507,12508,-9,-9,1,1,1,52,1,0,0,0,2,-9,8,3,1,4,0,0,0,1,0,-9,30,0,-7,-194.8389214535781,0,0,0,59,2,2,1,3,3,2019,3,2,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,13,2,1,609,0,0,0 +5633,6906,12508,12507,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,7.730385264026017,7.500486903799501,0,1,0,-9,30,0,7,-172.9392065077311,0,0,0,52,2,4,3,3,3,2019,2,1,6,0,30,30,15,1,0,3,0,7.249398790789719,7.249398790789719,0,0,0,0,0,0,0,1,1,0,0,0,128.1711225434854,1,47.51,39.22,6,1,0,0,13,2,1,609,0,0,0 +5633,6907,12509,-9,12508,12507,3,1,0,19,2,0,0,0,2,-9,7,2,0,5,7.320654696379251,7.533120215081959,0,3,0,0,0,-9,0,-1066.464347663384,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,3,1,663,0,0,0 +5634,6908,12510,12512,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,4,9.05359716024358,9.053196571413531,0,2,0,-9,9,0,4,-124.9664227003825,0,0,0,48,1,4,1,3,2,2019,1,1,8,0,42,41,15,1,0,1,0,23.20806852753442,23.20806852753442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,5,5,1,1113.333333333333,0,0,0 +5634,6908,12511,-9,12512,12510,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.9158199945745,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,1,1113.333333333333,0,0,0 +5634,6908,12512,12510,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.500909416232611,8.195020757702803,0,2,0,-9,9,0,-4,-82.88668000260643,0,0,0,52,1,4,1,2,2,2019,1,2,9,1,33,32,15,1,1,1,0,18.13522371619931,18.13522371619931,0,0,0,0,0,0,0,1,1,0,3.729669627755785,0,0,0,40.01,58.61,6,1,0,0,5,5,1,1113.333333333333,0,0,0 +5635,6909,12513,-9,12514,12517,6,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.8509996830581,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,0,831.3333333333334,0,0,0 +5635,6909,12514,12517,-9,-9,2,1,0,44,1,0,4,0,1,-9,2,1,0,4,7.391678518865024,7.76413879540811,0,2,0,-9,7,0,-8,73.19806897326798,0,0,1,52,3,2,3,2,3,2019,2,1,11,0,33,32,15,1,0,3,0,7.572786650581785,7.572786650581785,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,1,2,2,0,831.3333333333334,0,0,0 +5635,6909,12515,-9,12514,12517,3,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.906090080114,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,831.3333333333334,0,0,0 +5635,6909,12516,-9,12514,12517,5,1,0,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1124.731093975884,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,2,0,831.3333333333334,0,0,0 +5635,6909,12517,12514,-9,-9,1,1,1,52,1,0,4,0,3,-9,6,3,0,2,0,0,0,2,0,-9,7,0,8,61.99666681354244,0,0,0,44,1,4,1,3,2,2019,3,2,14,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.7,53.56,4,1,0,1,2,2,0,831.3333333333334,0,0,0 +5635,6909,12518,-9,12514,12517,4,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.591761918471,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,831.3333333333334,0,0,0 +5636,6910,12519,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,5,8.548907866631927,8.096360918589221,0,1,0,-9,6,0,-7,26.31813182669092,0,0,0,-9,-9,-9,-9,2,2,2019,2,2,11,0,40,40,15,1,0,-9,0,13.38416683243142,13.38416683243142,0,0,0,0,0,0,0,1,1,0,3.2524224655766,0,0,0,51.14,60.45,6,1,0,0,10,4,1,658,0,0,0 +5636,6911,12520,-9,-9,-9,2,1,0,63,2,0,0,0,2,-9,4,3,0,3,0,7.834598192207157,7.622771863148024,1,0,-9,6,0,7,31.01795098585189,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6289885251622,7.88283836350149,0,0,61.43,48.88,6,1,0,0,10,4,1,555,0,0,0 +5637,6912,12521,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,0,6.667310747601404,7.006377542040361,3,0,0,0,-9,0,-929.987667984632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.677070536665854,7.2621954802363,0,0,40.35,21.36,5,1,0,0,10,2,0,818,0,0,0 +5638,6913,12522,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,3,0,4.968274155174845,4.982882434246126,4,0,0,0,-9,0,-1052.048810574623,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.990549385258531,0,0,0,47.79,53.79,6,1,0,0,5,2,0,369,0,0,0 +5638,6913,12523,-9,12522,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-956.4074257061635,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,2,0,369,0,0,0 +5639,6914,12524,-9,12526,12527,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.1076608584802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,5,1,1116,0,0,0 +5639,6914,12525,-9,12526,12527,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.907523067921,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,1116,0,0,0 +5639,6914,12526,12527,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,5,8.460571878564448,8.362638892174896,0,2,0,-9,8,0,0,-53.0312765028977,0,0,1,39,1,5,1,-9,-9,2019,1,1,8,0,31,28,15,1,0,1,0,19.3577615536702,19.3577615536702,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,12,5,1,1116,0,0,0 +5639,6914,12527,12526,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,5,9.148602859357343,9.820941006276275,6.251312450807606,2,0,-9,8,0,0,-122.1262811081232,0,0,0,39,1,5,1,1,1,2019,1,2,6,0,45,44,15,1,0,1,0,32.34633187002365,32.34633187002365,0,0,0,0,0,0,0,1,1,0,6.475610327579927,0,0,0,57.06,57.76,7,1,0,0,12,5,1,1116,0,0,0 +5640,6915,12528,12529,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,8.353969799295538,8.16285361546684,1,0,-9,52,0,4,107.1413299529455,0,0,0,70,3,4,3,3,3,2019,4,2,7,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.152128658275562,8.337186210815661,0,0,60.87,44.96,6,1,0,0,2,4,1,339.5,0,0,0 +5640,6915,12529,12528,-9,-9,2,1,0,70,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,52,0,-4,16.56378979515925,0,0,0,74,2,3,3,3,3,2019,4,1,12,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.030216996995859,0,0,0,52.73,53.06,7,1,0,0,2,4,1,339.5,0,0,0 +5641,6916,12530,-9,12533,12531,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.1607898306549,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,7,5,1,550.2,0,0,0 +5641,6916,12531,12533,-9,-9,2,1,1,39,1,0,3,0,2,-9,2,1,0,4,9.356370401518243,8.945088786298854,0,2,0,-9,10,0,2,1.532773156349003,0,0,0,37,1,3,1,-9,-9,2019,1,1,13,1,40,40,15,1,1,1,0,31.76568061824003,31.76568061824003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.6,46.65,5,1,0,0,7,5,1,550.2,0,0,0 +5641,6916,12532,-9,12533,12531,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1103.478706257514,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,7,5,1,550.2,0,0,0 +5641,6916,12533,12531,-9,-9,1,1,0,37,1,0,3,0,1,-9,2,1,0,3,9.07276337597402,8.664834425080894,0,2,0,-9,10,0,-2,26.37686151771436,0,0,1,39,2,4,1,2,2,2019,1,2,16,5,35,35,15,1,5,1,0,17.42728629800394,17.42728629800394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.75,58.32,2,1,0,0,7,5,1,550.2,0,0,0 +5641,6916,12534,-9,12533,12531,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-844.9070184764402,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,7,5,1,550.2,0,0,0 +5642,6917,12535,12536,-9,-9,2,1,0,50,1,0,1,0,2,-9,8,3,1,1,0,6.178158251007301,5.819167691490859,2,0,-9,12,0,-1,4.215218286057151,0,0,0,51,2,2,1,2,2,2019,3,1,25,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.926547799536044,0,0,0,38.65,17.4,1,1,0,1,12,4,0,1329.5,0,0,0 +5642,6917,12536,12535,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,2,8.643088479976507,8.283983268526663,0,2,0,-9,12,0,1,-50.69750191270225,0,0,0,50,2,1,3,2,2,2019,2,2,8,0,40,43,15,1,0,3,0,16.03897678417268,16.03897678417268,0,0,0,0,0,0,0,1,1,0,0,0,32.15358319539457,1,56.83,38.89,4,1,0,1,12,4,0,1329.5,0,0,0 +5643,6918,12537,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,6.796800978060793,6.813759194831266,3,0,0,0,-9,0,-950.8343408332314,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.846669886926716,0,0,52,45,6,1,0,0,2,2,1,842,0,0,0 +5644,6919,12538,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,3,7.638421915838618,7.631190898641419,0,3,0,0,0,-9,0,-929.1180141907839,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,35,43,15,1,2,-9,0,6.083317779388014,6.083317779388014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,5,1,0,1,13,3,0,324,0,0,0 +5644,6920,12539,-9,12538,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,3,7.853813339307318,7.594199237186363,0,3,0,0,0,-9,0,-1064.977819622852,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,3,37,40,15,1,3,-9,1,7.052086585940017,7.052086585940017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,5,1,0,0,13,3,0,294,0,0,0 +5645,6921,12540,12541,-9,-9,1,1,1,26,1,1,1,0,2,-9,2,1,0,2,8.177989720467266,7.695184220414955,0,2,0,-9,2,0,2,-108.1818986404727,0,1,0,24,1,4,1,1,3,2019,1,2,14,4,38,38,15,1,4,1,0,9.549749663121691,9.549749663121691,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.06,54.56,6,1,0,0,13,4,1,320.3333333333333,0,0,0 +5645,6921,12541,12540,-9,-9,2,1,0,24,1,1,1,0,1,-9,2,1,0,4,8.519727976334146,8.462586105261357,0,2,0,-9,2,0,-2,-34.49542539014283,0,1,1,26,2,2,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,15.77201691698492,15.77201691698492,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,320.3333333333333,0,0,0 +5645,6921,12542,-9,12541,12540,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-927.90082921095,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,320.3333333333333,0,0,0 +5646,6922,12543,-9,-9,-9,1,1,1,46,2,0,1,0,2,-9,2,1,0,3,6.818116185061848,6.883074226529251,0,4,0,0,0,-9,0,-1055.33719579263,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,40,15,1,0,-9,0,4.657641029601108,4.657641029601108,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.40000000000001,42,5,1,0,0,11,2,1,276,0,0,0 +5646,6922,12544,-9,-9,12543,3,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1026.441397675442,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,11,2,1,276,0,0,0 +5646,6923,12545,-9,-9,12543,2,1,0,18,2,0,1,0,2,-9,7,2,0,4,7.209295560400773,7.248085266173459,0,3,0,0,0,-9,0,-1011.859379600598,1,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,7,1,0,0,11,3,1,334,0,0,0 +5647,6924,12546,-9,-9,-9,2,1,0,50,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1046.735674365199,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.8067558141006,3,21.87,43.23,6,3,0,1,5,1,1,1966,0,0,0 +5647,6924,12547,-9,12546,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,3,0,4.309738050694544,4.406782832122843,4,0,0,0,-9,0,-835.6646415580456,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,4.731791019295946,0,0,0,54.13,48.04,5,3,0,0,5,1,1,1966,0,0,0 +5648,6925,12548,12549,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,3,7.00816320251685,7.121622852925269,0,1,0,-9,9,0,1,38.63791955597563,0,0,0,59,2,4,1,-9,-9,2019,1,1,6,0,16,20,15,1,0,1,0,8.730247926946483,8.730247926946483,0,0,0,0,0,0,0,0,0,0,1.400494614708588,0,0,0,58.73,40.59,7,1,0,0,10,3,1,1099,0,0,0 +5648,6925,12549,12548,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.71863317195207,7.881076217550332,5.258541933101324,1,0,-9,9,0,-1,-47.57357711203085,0,0,0,60,2,3,1,2,2,2019,1,2,8,0,27,0,15,1,0,1,0,9.565054791664712,9.565054791664712,0,0,0,0,0,0,0,0,0,0,5.371777085512059,5.938303865198906,0,0,54.2,57.49,6,1,0,0,10,3,1,1099,0,0,0 +5649,6926,12550,12552,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.795086566452007,8.473230771045573,0,2,0,-9,9,0,-3,-202.73688587337,0,0,0,50,3,3,1,2,2,2019,1,2,10,1,41,41,15,1,1,1,0,17.25868434947402,17.25868434947402,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,11,4,1,494.25,0,0,0 +5649,6926,12551,-9,12552,12550,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.4401013732745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,494.25,0,0,0 +5649,6926,12552,12550,-9,-9,2,1,0,50,1,0,2,0,3,-9,2,1,0,3,6.955051920941471,7.142253127271779,0,2,0,-9,9,0,3,-13.31806784025694,0,0,0,47,2,4,1,2,2,2019,1,1,9,1,24,0,15,1,1,1,0,7.818907188112586,7.818907188112586,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,54.52,6,1,0,0,11,4,1,494.25,0,0,0 +5649,6926,12553,-9,12552,12550,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1005.980709152501,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,4,1,494.25,0,0,0 +5650,6927,12554,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1064.333697884124,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,6,1,0,0,13,1,1,432,0,0,0 +5651,6928,12555,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,4,0,7.89605497129785,7.908064393173306,3,0,0,0,-9,0,-1026.288910136563,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.378276138750456,7.798597220233622,8.048964836503163,3,48.28,60.18,6,1,0,0,6,3,1,1987,0,0,0 +5652,6929,12556,12557,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.776921188678793,9.270074292719059,0,2,0,-9,10,0,8,85.85596971398856,0,0,0,36,2,5,3,2,2,2019,2,2,9,0,40,40,15,1,1,3,0,26.31256191602769,26.31256191602769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,7,5,1,513.4,0,0,0 +5652,6929,12557,12556,-9,-9,2,1,0,36,1,0,2,0,2,-9,6,3,0,5,7.573687592981411,7.58255343482109,0,2,0,-9,10,0,-8,74.39219098743656,0,0,1,44,2,4,1,2,2,2019,3,1,12,0,15,13,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.899027520357007,3,51.39,59.18,6,1,0,0,7,5,1,513.4,0,0,0 +5652,6929,12558,-9,12557,12556,5,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.134600254218,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,513.4,0,0,0 +5652,6929,12559,-9,12557,12556,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.190619131947,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,7,5,1,513.4,0,0,0 +5652,6929,12560,-9,12557,12556,3,1,0,16,2,0,2,0,2,-9,2,2,0,4,6.415362415988703,6.736001826782179,0,2,0,0,0,-9,0,-1004.754640348431,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,14,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,6,1,0,0,7,5,1,513.4,0,0,0 +5653,6930,12561,12562,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,5.143321123812394,5.020622820914879,1,0,-9,52,0,0,-10.91145705595924,0,0,0,71,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.237284844203951,26.35740706045867,1,49.44,54.26,4,1,0,0,8,2,1,749.5,0,0,0 +5653,6930,12562,12561,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,6.072394571827706,6.010803084503963,1,0,-9,52,0,0,93.11789234010922,0,0,0,71,3,3,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,1,0,26.34054568464592,0,0,0,0,1,1,0,6.308381454150997,6.18822168274491,0,0,29.48,31.59,4,1,0,0,8,2,1,749.5,0,0,0 +5654,6931,12563,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,4,7.510479254101948,7.506576921663465,0,3,0,0,0,-9,0,-1018.068322866424,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,40,35,15,1,7,-9,1,5.917831533386151,5.917831533386151,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.19,45.44,3,1,0,0,2,3,1,1838,0,0,0 +5655,6932,12564,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,4,0,7.406263524596032,7.280961829567328,3,0,0,0,-9,0,-973.0102070917227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,18,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.630357571957637,7.257651678798399,0,0,62.49,55.09,6,1,0,0,11,3,1,496,0,0,0 +5656,6933,12565,-9,12566,-9,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-869.2332437444563,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,0,143.3333333333333,0,0,0 +5656,6933,12566,12567,-9,-9,2,1,0,34,1,0,1,0,2,-9,2,1,0,4,6.969806263183212,7.492590406027436,5.001875024699145,2,0,-9,2,0,-2,-2.512324730146234,-9,0,1,36,2,4,1,-9,-9,2019,1,1,7,0,20,0,15,1,0,1,0,7.086946426394054,7.086946426394054,0,0,0,0,0,0,0,1,1,0,5.157336541952848,0,0,0,44.93,52.93,7,1,0,0,7,4,0,143.3333333333333,0,0,0 +5656,6933,12567,12566,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.60355035790715,8.43857454320265,0,2,0,-9,2,0,2,68.9006992166946,0,0,0,34,2,4,1,2,2,2019,1,2,6,0,48,48,15,1,0,1,0,12.55201333331368,12.55201333331368,0,0,0,0,0,0,0,1,1,0,3.545534742195593,0,0,0,48.87,58.55,5,1,0,0,7,4,0,143.3333333333333,0,0,0 +5657,6934,12568,-9,12571,12570,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.368368499202,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,10,5,1,732.75,0,0,0 +5657,6934,12569,-9,12571,12570,4,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.651829998642,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,732.75,0,0,0 +5657,6934,12570,12571,-9,-9,3,1,1,37,1,1,3,0,1,-9,2,1,0,3,8.301912563526098,8.429986322745199,0,2,0,-9,6,0,1,21.17068212480775,0,0,0,36,1,4,1,-9,-9,2019,1,1,14,2,37,37,15,1,2,1,0,10.99572875341412,10.99572875341412,0,0,0,0,0,0,0,1,1,0,1.529909358217866,0,0,0,42.95,54.48,4,5,0,0,10,5,1,732.75,0,0,0 +5657,6934,12571,12570,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,4,8.912007183713053,9.231821628276768,0,2,0,-9,6,0,-1,-90.42671176560759,0,0,1,37,1,3,1,1,1,2019,1,3,11,1,40,40,15,1,1,1,0,29.55349383816979,29.55349383816979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,5,1,0,0,10,5,1,732.75,0,0,0 +5658,6935,12572,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,1,1,0,3,8.08213934918161,8.168289850862962,0,3,0,0,0,-9,0,-1183.159516206829,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,0,10,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.37,39.56,5,4,0,1,6,4,1,762,0,0,0 +5659,6936,12573,12574,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,3,7.125089793278955,7.245077714522686,0,2,0,-9,7,0,2,-133.6113277987984,0,0,1,32,1,4,1,1,2,2019,1,2,17,5,22,40,15,1,5,1,0,5.747121549706302,5.747121549706302,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.21,47.07,6,1,0,0,4,4,1,635.6666666666666,0,0,0 +5659,6936,12574,12573,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.59217511040343,8.710747536233775,0,2,0,-9,7,0,-2,-68.84441958768271,0,0,0,34,2,3,1,2,2,2019,1,1,9,1,41,45,15,1,1,1,0,17.56849265534259,17.56849265534259,0,0,0,0,0,0,0,1,1,0,3.107518071662637,0,0,0,52.97,53.97,6,1,0,0,4,4,1,635.6666666666666,0,0,0 +5659,6936,12575,-9,12573,12574,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.5177146983049,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,635.6666666666666,0,0,0 +5660,6937,12576,12577,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,4,8.472249210188341,8.728324525155383,0,2,0,-9,10,0,-3,0,0,0,1,37,1,3,1,1,1,2019,1,1,10,3,40,35,15,1,3,1,0,13.39948567793448,13.39948567793448,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.58,52.99,6,3,0,0,2,5,1,647.3333333333334,0,0,0 +5660,6937,12577,12576,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,3,8.618453181960113,8.476724830492021,0,2,0,-9,10,0,3,0,0,0,0,34,1,4,1,2,1,2019,1,2,9,1,45,45,15,1,1,1,0,15.36244779819322,15.36244779819322,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,5,3,0,0,2,5,1,647.3333333333334,0,0,0 +5660,6937,12578,-9,12576,12577,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.9612011021417,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,5,1,647.3333333333334,0,0,0 +5661,6938,12579,12582,-9,-9,1,1,1,31,1,2,2,0,2,-9,2,1,0,3,9.920614959445535,9.507351263570936,0,2,0,-9,5,0,1,17.37655431880263,-9,0,0,30,1,4,1,2,2,2019,1,2,6,0,70,0,15,1,0,1,0,28.06494316082267,28.06494316082267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,45.85,5,1,0,0,13,5,1,459.25,0,0,0 +5661,6938,12580,-9,12582,12579,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.375231776561,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,459.25,0,0,0 +5661,6938,12581,-9,12582,12579,4,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.120140082515,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,459.25,0,0,0 +5661,6938,12582,12579,-9,-9,2,1,0,30,1,2,2,0,1,-9,2,1,0,4,8.544768307237231,8.719824477472256,0,2,0,-9,5,0,-1,2.442339077583337,0,0,1,31,2,3,1,-9,-9,2019,1,1,7,0,41,37,15,1,0,1,0,17.65643575562559,17.65643575562559,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,13,5,1,459.25,0,0,0 +5662,6939,12583,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,5.481640601744753,5.668150069024305,3,0,0,0,-9,0,-922.2526519242724,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.745754459069645,5.721563819166579,0,0,54.2,57.49,6,1,0,0,4,2,0,227,0,0,0 +5663,6940,12584,-9,12585,12586,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-965.2609326283356,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,3,0,371.25,0,0,0 +5663,6940,12585,12586,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,3,7.685651511014125,7.580795308131411,0,2,0,-9,5,0,-5,74.42384579299171,0,0,1,39,2,4,1,-9,-9,2019,1,2,12,0,16,27,15,1,0,1,0,16.40045823555464,16.40045823555464,0,0,0,0,0,0,0,1,1,0,0,0,5.537607114703106,3,45.73,57.57,5,1,0,0,9,3,0,371.25,0,0,0 +5663,6940,12586,12585,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.226023830976132,8.13538450941487,0,2,0,-9,5,0,5,69.07996609880978,0,0,0,34,2,3,1,-9,-9,2019,1,1,6,0,20,20,15,1,0,1,0,17.26994958526545,17.26994958526545,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,57.72,6,1,0,0,9,3,0,371.25,0,0,0 +5663,6940,12587,-9,12585,12586,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.234075514369,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,371.25,0,0,0 +5664,6941,12588,12589,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,0,-30.92403986523943,0,0,0,63,2,3,1,-9,-9,2019,3,1,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,6,1,0,0,12,3,1,603.5,0,0,0 +5664,6941,12589,12588,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,3,7.468553113341405,7.890218808496209,6.922815362577788,1,0,-9,38,0,0,-67.38720112902756,0,0,0,63,3,3,3,2,2,2019,2,2,7,0,23,23,15,1,0,4,0,7.790291761290584,7.790291761290584,0,0,0,0,0,0,0,0,0,0,0,7.14171821556899,0,0,65.98,34.42,6,1,0,1,12,3,1,603.5,0,0,0 +5665,6942,12590,12591,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,7.989108327750915,7.627670871881335,0,1,0,-9,7,0,-3,44.26919106208139,0,0,0,60,2,4,3,2,-9,2019,2,2,10,1,20,48,15,1,1,4,0,11.48693455998603,11.48693455998603,0,0,0,0,0,0,0,0,0,0,6.630732911793002,0,0,0,41.11,52.8,6,1,0,0,11,4,1,663.5,0,0,0 +5665,6942,12591,12590,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,4,6.727501316211962,7.680146331299154,7.141054868600452,1,0,-9,7,0,3,-152.0132997204839,0,0,0,57,2,3,1,3,-9,2019,3,1,23,9,5,25,15,4,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.299354752914302,6.635878054809378,0,0,32.99,63.19,3,1,0,0,11,4,1,663.5,0,0,0 +5666,6943,12592,12593,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,5,7.972843844926824,7.73945425454439,0,1,0,-9,38,0,3,-98.4541895616419,0,0,0,57,1,3,1,3,2,2019,1,1,9,0,29,33,15,1,0,1,0,10.09371430984723,10.09371430984723,0,0,0,0,0,0,0,1,1,0,1.550697726621993,0,0,0,57.06,57.76,5,1,0,0,2,4,1,629.5,0,0,0 +5666,6943,12593,12592,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,3,7.224173536520063,7.414085158409883,0,1,0,-9,38,0,-3,84.9869672122211,0,0,0,60,1,5,1,2,2,2019,1,2,12,0,32,32,15,1,0,1,0,7.201542242979198,7.201542242979198,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,46.99,6,1,0,0,2,4,1,629.5,0,0,0 +5667,6944,12594,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-1005.132030346998,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.94,22.78,6,1,0,0,10,1,0,359,0,0,0 +5667,6945,12595,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1036.201685051813,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,1,0,10,1,0,376,0,0,0 +5668,6946,12596,12597,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,3,8.519067490008862,8.807083695211226,0,1,0,-9,3,0,0,9.692073857766186,0,1,0,29,1,4,1,-9,-9,2019,1,2,7,1,38,40,15,1,1,1,0,12.1455769279421,12.1455769279421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,6,1,0,0,9,5,1,535.5,0,0,0 +5668,6946,12597,12596,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.772953557766513,9.019527738387554,0,1,0,-9,3,0,0,57.71105078217472,0,1,1,29,2,3,1,-9,-9,2019,1,1,15,5,41,41,15,1,5,1,0,21.03301954990641,21.03301954990641,0,0,0,0,0,0,0,0,0,0,0,0,1.462963167754263,3,36.62,58.96,6,1,0,0,9,5,1,535.5,0,0,0 +5669,6947,12598,12599,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,3,8.760574208900369,8.642054835249985,0,2,0,-9,10,0,6,-55.80468455330903,0,0,0,36,2,5,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,15.98848752784365,15.98848752784365,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,50.48,6,1,0,0,12,4,1,559.3333333333334,0,0,0 +5669,6947,12599,12598,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,5,7.567993772984413,7.872267455690637,0,2,0,-9,10,0,-6,3.508185170047359,0,0,1,42,1,3,1,2,2,2019,1,2,5,0,24,38,15,1,0,1,0,12.57020634427296,12.57020634427296,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,5,1,0,0,12,4,1,559.3333333333334,0,0,0 +5669,6947,12600,-9,12599,12598,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.4461264149647,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,4,1,559.3333333333334,0,0,0 +5670,6948,12601,-9,12603,12602,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-997.6081309837227,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,11,4,1,546.25,0,0,0 +5670,6948,12602,12603,-9,-9,2,1,1,31,1,1,2,0,1,-9,2,1,0,3,8.581837275536095,8.790911958762869,0,2,0,-9,6,0,2,-56.37023241252648,0,0,0,29,2,4,3,-9,-9,2019,2,1,6,0,55,60,15,1,0,3,0,11.80955449205975,11.80955449205975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,11,4,1,546.25,0,0,0 +5670,6948,12603,12602,-9,-9,1,1,0,29,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-2,-2.091034540888923,0,1,1,31,1,3,1,2,-9,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.49,55.44,6,1,0,0,11,4,1,546.25,0,0,0 +5670,6948,12604,-9,12603,12602,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.9405143904241,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,546.25,0,0,0 +5671,6949,12605,12606,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,8.135397122207031,8.232033367385736,1,0,-9,7,0,7,17.62950984224543,0,0,0,63,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.663125701867753,7.950564461847923,0,0,42.46,41.62,6,1,0,0,1,5,1,1079.5,0,0,0 +5671,6949,12606,12605,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,8.546871179978604,8.321840088160446,1,0,-9,43,0,-7,-34.8206654548302,0,0,0,70,1,2,3,2,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.44600955175658,8.420237353865517,0,0,53.05,52.71,6,1,0,0,1,5,1,1079.5,0,0,0 +5672,6950,12607,-9,12610,12611,4,1,0,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.517880868919,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,0,944,0,0,0 +5672,6950,12608,-9,12610,12611,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.862183800615,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,0,944,0,0,0 +5672,6950,12609,-9,12610,12611,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.754789363956,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,5,0,944,0,0,0 +5672,6950,12610,12611,-9,-9,2,1,0,36,1,1,3,0,2,-9,1,1,0,4,7.339498602026904,7.052582187915339,0,2,0,-9,15,0,-3,-39.18250619979459,0,0,1,39,1,4,1,3,2,2019,1,1,11,0,16,20,15,1,2,1,0,12.0147253142188,12.0147253142188,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,4,5,0,944,0,0,0 +5672,6950,12611,12610,-9,-9,1,1,1,39,1,1,3,0,1,-9,1,1,0,4,9.671205446452754,9.546648154820272,0,2,0,-9,15,0,3,144.1832833135016,0,0,0,36,2,4,1,1,2,2019,1,2,5,0,50,50,15,1,0,1,0,37.69712651675761,37.69712651675761,0,0,0,0,0,0,0,1,1,0,6.16772108429154,0,0,0,54.45,56.22,6,1,0,0,4,5,0,944,0,0,0 +5673,6951,12612,12613,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-3,94.23996179863258,0,0,0,70,3,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.020485169088762,0,0,0,35.79,48.98,5,1,0,0,11,3,1,253.5,0,0,0 +5673,6951,12613,12612,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,8.236614110050553,8.482342712810022,1,0,-9,6,0,3,-4.14022395162803,0,0,0,67,3,2,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.589950870065877,8.321457997455138,0,0,56.7,37.23,4,3,0,0,11,3,1,253.5,0,0,0 +5674,6952,12614,-9,12618,12617,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.7083328677452,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,3,1,545.8,0,0,0 +5674,6952,12615,-9,12618,12617,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.9538921589324,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,3,1,545.8,0,0,0 +5674,6952,12616,-9,12618,12617,3,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.235939543917,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,3,1,545.8,0,0,0 +5674,6952,12617,12618,-9,-9,2,1,1,51,1,0,3,0,3,-9,1,1,0,3,7.705747652395488,8.495877813057447,8.3233136269257,2,0,-9,20,0,14,-25.54209439138877,0,0,0,37,2,4,1,3,3,2019,1,1,11,0,35,35,15,1,2,1,0,5.789251633189909,5.789251633189909,0,0,0,0,0,0,0,1,1,0,0,8.075328885923701,0,0,49,50,5,3,0,0,4,3,1,545.8,0,0,0 +5674,6952,12618,12617,-9,-9,1,1,0,37,1,0,3,0,2,-9,1,1,0,4,6.578684280306076,7.462339318722915,0,2,0,-9,20,0,-14,-56.17244216789845,0,0,1,51,3,3,1,3,3,2019,1,2,7,0,10,10,15,1,0,1,0,13.18528551361626,13.18528551361626,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.9,57.87,6,3,0,0,4,3,1,545.8,0,0,0 +5675,6953,12619,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1025.018298481419,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.94,29.56,7,1,0,1,11,1,0,605,0,0,0 +5676,6954,12620,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,1,8.20472199581209,8.468995492758586,0,3,0,-9,0,-9,0,-1028.681125490826,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,11,37,0,15,1,11,-9,0,15.89673179742144,15.89673179742144,0,0,0,0,0,0,0,1,1,0,1.785166691545837,0,0,0,24.68,39.19,3,1,0,1,9,4,0,249,0,0,0 +5677,6955,12621,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,3,0,6.913520671233556,6.886632651406019,3,0,0,0,-9,0,-964.9316447284,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,1,2.708914807197307,0,0,0,0,0,1,1,0,3.119856877431004,6.756741197630485,0,0,33.89,52.29,3,1,0,0,6,2,1,2188,0,0,0 +5678,6956,12622,12623,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,4,8.737688411100924,8.900881570117972,0,2,0,-9,20,0,4,-5.316970473335086,0,0,0,39,2,3,3,2,2,2019,2,1,7,1,37,37,15,1,1,3,0,23.34779298520637,23.34779298520637,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,6,1,0,0,9,4,0,746,0,0,0 +5678,6956,12623,12622,-9,-9,1,1,0,39,1,0,1,0,2,-9,8,3,1,3,0,0,0,2,0,-9,20,0,-4,49.11315315070158,0,0,1,43,1,4,1,2,2,2019,3,2,23,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.02,47.89,3,2,0,0,9,4,0,746,0,0,0 +5678,6956,12624,-9,12623,12622,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.1371208656288,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,0,746,0,0,0 +5679,6957,12625,12626,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,8.04517494899293,8.676943757960073,7.858775519676962,1,0,-9,5,0,1,34.29700044824908,0,0,0,72,2,2,3,3,3,2019,4,2,7,0,0,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.842016204090886,7.8226041245697,17.40616090703934,1,55.87,53.99,6,1,0,0,2,4,1,968.5,0,0,0 +5679,6957,12626,12625,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,5,0,-1,-68.84822682824907,0,0,0,73,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.140194651367957,0,0,0,49.75,23.37,6,1,0,0,2,4,1,968.5,0,0,0 +5680,6958,12627,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,1,1,0,4,6.952052654428341,7.046973791229719,0,3,0,-9,0,1,0,-981.5203252998551,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,50,60,15,1,4,-9,0,2.922575326627265,2.922575326627265,0,0,0,0,0,0,0,0,0,0,8.151946028029776,0,0,0,51.24,58.84,5,2,0,0,9,2,0,271,0,0,0 +5681,6959,12628,12631,-9,-9,2,1,1,49,1,0,2,0,3,-9,2,1,0,4,9.331603105955008,9.504062571425308,0,2,0,-9,10,0,2,86.41980811376635,0,0,0,47,1,4,1,-9,-9,2019,1,1,18,6,53,48,15,1,6,1,0,21.42587196728553,21.42587196728553,0,0,0,0,0,0,0,0,0,0,7.135267234277511,0,0,0,33.14,64.63,5,1,0,0,8,5,1,296.5,0,0,0 +5681,6959,12629,-9,12631,12628,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1000.109886993337,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,5,1,0,0,8,5,1,296.5,0,0,0 +5681,6959,12630,-9,12631,12628,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1133.321568015642,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,296.5,0,0,0 +5681,6959,12631,12628,-9,-9,1,1,0,47,1,0,2,0,1,-9,1,1,0,4,9.294653869611235,9.41044580165576,0,2,0,-9,10,0,-2,-82.95648970146868,0,0,0,49,3,4,1,1,1,2019,1,2,12,1,30,29,15,1,1,1,0,52.17691917991711,52.17691917991711,0,0,0,0,0,0,0,0,0,0,7.620253274345668,0,0,0,49.06,58.64,6,1,0,0,8,5,1,296.5,0,0,0 +5682,6960,12632,12633,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,51,0,0,-1.494038356842344,0,0,0,69,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.22691989434583,1,51,46,5,1,0,0,10,2,1,335,0,0,0 +5682,6960,12633,12632,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,6.894175802053691,7.0233208617935,1,0,-9,51,0,0,198.7140642282676,0,0,0,69,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.912513867673256,0,0,53,47,5,1,0,0,10,2,1,335,0,0,0 +5683,6961,12634,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.287261850170909,8.4132432512385,0,3,0,0,0,-9,0,-1220.027805256601,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,41,45,15,1,0,-9,0,17.78345453274696,17.78345453274696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,2,1,0,0,12,5,1,5110,0,0,0 +5684,6962,12635,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,1,0,7.393868106551924,7.115522300316607,3,0,0,0,-9,0,-1021.350500370254,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,9,0,0,15,4,9,-9,0,0,0,1,0,0,12.17765186433633,0,2.740301577325727,0,1,1,0,4.860687420709053,7.257726589599571,0,0,41.28,27.39,3,1,0,0,12,3,1,396,0,0,0 +5685,6963,12636,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,6.583454142722592,6.325350773921573,3,0,0,0,-9,0,-992.5043467353032,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.297741693241028,6.39861892036217,0,0,53.81,53.56,6,1,0,0,9,2,1,183,0,0,0 +5686,6964,12637,12638,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,7.303395548750359,7.501030831681843,1,0,-9,49,0,2,23.11805149436914,0,0,0,66,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.758955146418641,0,0,54.2,57.49,6,1,0,0,4,2,0,738,0,0,0 +5686,6964,12638,12637,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,5,0,-2,39.74627376461569,0,0,0,68,1,4,3,3,-9,2019,4,1,10,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.01,43.56,6,1,0,0,4,2,0,738,0,0,0 +5687,6965,12639,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,3,8.705542905443798,8.662818662833846,0,1,0,-9,10,0,6,74.63721964433607,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,17,6,37,37,15,1,6,-9,0,18.52471374632336,18.52471374632336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.56,49.66,5,1,0,0,12,5,1,93,0,0,0 +5687,6966,12640,-9,-9,-9,2,1,0,47,2,0,0,0,2,-9,2,1,0,5,8.701876238133423,8.725018741419898,0,1,0,-9,10,0,-6,138.7325570729018,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,9,0,43,43,15,1,0,-9,0,21.17754708768694,21.17754708768694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.44,55.19,5,1,0,0,12,5,1,244,0,0,0 +5688,6967,12641,12642,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,9.071508298629682,9.074180030873224,0,1,0,-9,6,0,-1,43.0909837356431,0,0,0,56,1,4,1,2,2,2019,1,1,10,0,40,44,15,1,1,1,0,32.49744353387364,32.49744353387364,0,0,0,0,0,0,0,0,0,0,8.735326011880368,0,0,0,52,53,6,1,0,0,10,5,1,765,0,0,0 +5688,6967,12642,12641,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,6,0,1,19.44660815384889,0,0,0,55,1,4,1,3,2,2019,1,2,10,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.240037287562206,0,0,0,51.77,58.57,6,1,0,0,10,5,1,765,0,0,0 +5689,6968,12643,12644,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,51,0,3,42.17385399599891,0,0,0,70,2,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,6.684687090747642,0,0,0,0,1,1,0,0,0,0,0,62.42,26.88,6,1,0,0,12,2,1,540.5,0,0,0 +5689,6968,12644,12643,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,5,0,5.540261488320485,5.698999145132785,1,0,-9,51,0,-3,51.91975124778479,0,0,0,73,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.963882223659627,5.693300756684279,0,0,41.14,63.75,6,1,0,0,12,2,1,540.5,0,0,0 +5690,6969,12645,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,4,7.95722526049582,8.078813835494602,0,3,0,0,0,-9,0,-959.9468704694718,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,40,45,15,1,1,-9,0,9.393332812098418,9.393332812098418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,3,1,0,0,12,4,1,1637,0,0,0 +5691,6970,12646,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,2,0,6.973238369400289,6.848925577050703,3,0,0,0,-9,0,-1049.520439405816,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.74630943306671,0,0,46.98,46.15,4,1,0,0,4,2,0,511,0,0,0 +5692,6971,12647,12648,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,4,9.448310094723579,9.38361735428588,0,2,0,-9,16,0,1,-27.59982861839604,0,0,0,40,1,4,1,2,2,2019,1,2,18,6,43,44,15,1,6,1,0,30.49880309284501,30.49880309284501,0,0,0,0,0,0,0,0,0,0,6.317648144427795,0,0,0,38.28,63.48,5,1,0,0,8,5,1,634.6666666666666,0,0,0 +5692,6971,12648,12647,-9,-9,2,1,0,40,1,0,1,0,1,-9,2,1,0,4,8.479785399532773,8.436304099273114,0,2,0,-9,16,0,-1,38.99070609204587,0,0,1,41,1,4,1,2,2,2019,1,1,16,5,30,30,15,1,5,1,0,20.43268194825134,20.43268194825134,0,0,0,0,0,0,0,0,0,0,.7492341848790985,0,0,0,41.06,62.04,3,1,0,0,8,5,1,634.6666666666666,0,0,0 +5692,6971,12649,-9,12648,12647,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.6706705548513,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,634.6666666666666,0,0,0 +5693,6972,12650,-9,12653,12651,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.069175578114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,4,1,323,0,0,0 +5693,6972,12651,12653,-9,-9,2,1,1,35,1,0,3,0,1,-9,2,1,0,3,8.831545854811743,9.155268589421484,0,2,0,-9,8,0,1,67.58702508636016,0,0,0,34,1,3,3,1,1,2019,2,1,24,12,48,48,15,1,12,3,0,18.53216011652584,18.53216011652584,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,59.72,6,1,0,0,2,4,1,323,0,0,0 +5693,6972,12652,-9,12653,12651,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-859.0705401042782,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,323,0,0,0 +5693,6972,12653,12651,-9,-9,1,1,0,34,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,15,0,-1,-30.12027258160948,0,0,1,35,1,3,1,3,2,2019,3,2,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.086113810684244,0,68.3987695855143,3,36.04,48.3,5,1,0,0,2,4,1,323,0,0,0 +5693,6972,12654,-9,12653,12651,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.782298564056,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,323,0,0,0 +5694,6973,12655,12656,-9,-9,1,1,0,51,1,0,2,0,1,-9,2,1,0,5,8.610431198491066,8.505264236966774,0,2,0,-9,7,0,2,-110.1968563601653,0,0,0,49,1,4,1,1,1,2019,1,2,7,0,24,30,15,1,0,1,0,21.41664431807989,21.41664431807989,0,0,0,0,0,0,0,1,1,0,8.647552144194563,0,0,0,57.06,57.76,6,1,0,0,11,5,1,684,0,0,0 +5694,6973,12656,12655,-9,-9,2,1,1,49,1,0,2,0,1,-9,1,1,0,4,9.655030244217633,9.495958166505567,0,2,0,-9,7,0,-2,-18.34509828786136,0,0,0,51,1,5,1,-9,-9,2019,1,1,9,0,45,40,15,1,1,1,0,30.52949406484195,30.52949406484195,0,0,0,0,0,0,0,1,1,0,4.456895962981529,0,0,0,52,55,6,5,0,0,11,5,1,684,0,0,0 +5694,6973,12657,-9,12655,12656,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1054.262747748718,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,11,5,1,684,0,0,0 +5694,6974,12658,-9,12655,12656,3,1,0,18,2,0,2,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-973.7321471788925,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.988133133412661,0,0,0,46,59,5,1,0,0,11,5,1,583,0,0,0 +5695,6975,12659,-9,12660,12662,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.07306519357,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,4,4,0,434,0,0,0 +5695,6975,12660,12662,-9,-9,1,1,0,30,1,0,2,0,2,-9,2,1,0,4,8.196722291439448,8.204404852942263,0,2,0,-9,7,0,-13,-29.18286686882594,0,0,1,43,2,5,1,2,2,2019,1,2,15,3,42,50,15,1,3,1,0,10.80629445551719,10.80629445551719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.45,62.92,2,1,0,0,4,4,0,434,0,0,0 +5695,6975,12661,-9,12660,12662,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.7259701852289,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,4,4,0,434,0,0,0 +5695,6975,12662,12660,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,5,8.516571034550603,8.390940632173601,0,2,0,-9,7,0,13,79.55772164949154,0,0,0,30,2,4,1,-9,-9,2019,1,1,8,0,40,46,15,1,0,1,0,13.17353220309769,13.17353220309769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,4,4,0,434,0,0,0 +5696,6976,12663,-9,12666,12665,2,1,1,10,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.952885133698,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,5,1,445.25,0,0,0 +5696,6976,12664,-9,12666,12665,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.691467601373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,4,5,1,445.25,0,0,0 +5696,6976,12665,12666,-9,-9,3,1,1,39,1,1,2,0,2,-9,2,1,0,4,8.796596587430003,8.916678557780649,0,2,0,-9,4,0,0,90.66067892811816,0,0,0,39,2,3,1,-9,-9,2019,1,1,14,2,40,0,15,1,2,1,0,21.72015225698668,21.72015225698668,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,53.24,6,1,0,0,4,5,1,445.25,0,0,0 +5696,6976,12666,12665,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,3,8.239449647355464,8.251096611007446,6.216651085462461,2,0,-9,4,0,0,-22.6449504197241,0,0,1,39,2,4,1,2,3,2019,1,3,19,9,40,37,15,1,9,1,0,12.21592142534221,12.21592142534221,0,0,0,0,0,0,0,1,1,0,6.366149306692119,0,12.29098622309362,3,40.88,59.72,6,1,0,0,4,5,1,445.25,0,0,0 +5697,6977,12667,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,2,8.40095787836972,8.248095866116076,0,3,0,0,0,-9,0,-895.7194870003202,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,60,50,15,1,0,-9,0,8.492576705413612,8.492576705413612,0,0,0,0,0,0,0,0,0,0,2.331089628359095,0,0,0,55.94,42.23,5,1,0,0,4,4,1,331,0,0,0 +5698,6978,12668,12669,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,8.644377449197407,8.738918184834047,1,0,-9,49,0,0,114.6633382291724,0,0,0,70,2,4,3,2,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.301583242347669,8.74603329591071,0,0,56.29,52.37,7,1,0,0,4,5,1,1607,0,0,0 +5698,6978,12669,12668,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.87217048826813,5.990759493571764,1,0,-9,49,0,0,-2.726221608084084,0,0,0,70,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.976618242065706,5.999516440577874,0,0,63.09,47.92,7,1,0,0,4,5,1,1607,0,0,0 +5699,6979,12670,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,4,3,0,2,0,7.373162901034839,7.680967906622178,3,0,0,0,-9,0,-960.2562200019379,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.319374552716203,7.598949660861965,0,0,67.61,20.62,6,1,0,0,9,3,1,742,0,0,0 +5700,6980,12671,12672,-9,-9,2,1,1,65,1,0,0,0,2,-9,8,3,1,1,7.997302149516182,8.12079209074939,6.818524893509117,1,0,-9,10,0,-3,30.34751053095545,0,0,0,68,2,3,3,3,3,2019,4,1,12,1,49,51,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.309928321952652,6.887329577642706,15.89618279690589,3,39,26,4,1,0,0,7,4,1,808,0,0,0 +5700,6980,12672,12671,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,5.45801642126729,6.860302318917286,6.98061630584087,1,0,-9,10,0,3,-74.02995713740422,0,0,0,65,2,1,3,2,1,2019,4,2,26,12,3,0,15,4,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.833186649052128,6.811336653795367,8.543747638670045,3,21.4,64.16,3,1,0,0,7,4,1,808,0,0,0 +5701,6981,12673,12674,-9,-9,4,1,1,61,1,0,0,0,1,-9,2,1,0,3,8.967659813455207,9.030977849598848,0,1,0,-9,34,-9,0,87.79395121252101,-9,0,0,61,1,5,3,2,2,2019,2,3,9,0,24,0,15,1,0,4,0,46.87866474918043,46.87866474918043,0,0,0,0,0,0,0,0,0,0,4.320069760633171,0,0,3,55.36,51.57,7,1,0,0,10,5,1,802,0,0,0 +5701,6981,12674,12673,-9,-9,3,1,0,61,1,0,0,0,1,-9,4,3,0,5,5.688542573779253,7.514629443020771,7.544904036975482,1,0,-9,34,-9,0,-77.79835413986211,-9,0,0,61,1,3,1,2,2,2019,3,4,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.421584015722387,0,3,59.43,58.05,7,1,0,0,10,5,1,802,0,0,0 +5701,6982,12675,-9,12674,12673,5,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.89868105695195,7.937923075254083,0,3,0,-9,0,-9,0,-987.1360267520123,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,1,29,0,15,1,1,-9,1,12.48339092282455,12.48339092282455,0,0,0,0,0,0,0,0,0,0,.7542417547968917,0,0,0,54.2,57.49,6,1,0,0,10,4,1,502,0,0,0 +5702,6983,12676,-9,12678,12679,1,1,1,29,2,0,0,0,1,-9,1,1,0,5,8.494010399010655,8.511887547487749,0,3,0,0,0,-9,0,-965.3058231403311,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,45,15,1,0,-9,1,13.24054737756955,13.24054737756955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,3,0,0,6,4,1,1483,0,0,0 +5702,6984,12677,-9,12678,12679,2,1,1,25,2,0,0,0,2,1,2,1,0,3,8.272013713151587,8.385851479173658,0,3,0,0,0,-9,0,-932.9783112506522,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,3,0,0,6,4,1,3563,0,0,0 +5702,6985,12678,12679,-9,-9,4,1,0,55,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,41,0,-4,-.4192244612985032,0,0,0,59,3,4,1,3,3,2019,3,3,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.738480049900945,0,0,0,52.24,43.31,6,3,0,0,6,3,1,1011.5,0,0,0 +5702,6985,12679,12678,-9,-9,3,1,1,59,1,0,0,0,3,-9,2,1,0,4,7.893641240995145,7.914526248445289,0,1,0,-9,41,0,4,-81.51439287609439,0,0,0,55,3,3,3,3,3,2019,2,4,11,0,30,0,15,1,0,3,0,11.0965210000185,11.0965210000185,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.38,39.16,6,3,0,0,6,3,1,1011.5,0,0,0 +5703,6986,12680,12681,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,7.518348873531542,7.697920766676872,1,0,-9,10,0,-2,153.0594179153847,0,0,0,73,2,4,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.45857769678336,0,0,59.31,49.81,7,1,0,0,12,4,1,401,0,0,0 +5703,6986,12681,12680,-9,-9,1,1,1,73,1,0,0,0,2,-9,2,1,0,4,6.260254161703698,7.686635520025248,7.56485526981226,1,0,-9,51,0,2,-58.93486767977998,0,0,0,71,2,3,3,3,3,2019,2,2,7,1,4,0,15,1,1,4,0,18.19558248541696,18.19558248541696,0,0,0,0,0,0,0,1,1,0,6.338814672332451,7.468430677546991,0,0,62.95,38.7,7,1,0,0,12,4,1,401,0,0,0 +5704,6987,12682,12683,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,4,0,6.83432408601108,7.294025084001058,1,0,-9,39,0,3,120.3476233222311,0,0,0,77,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.200906085041859,7.085699713117183,0,0,44.66,42.69,5,1,0,0,12,3,1,2040,0,0,0 +5704,6987,12683,12682,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,6.967663248840349,7.109195836990077,1,0,-9,39,0,-3,-127.0320600418424,0,0,0,80,1,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.375909652446424,7.330692687098121,0,3,54.74,57.22,6,1,0,0,12,3,1,2040,0,0,0 +5705,6988,12684,-9,-9,-9,3,1,1,20,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-961.4644242082071,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.061210064903847,3,51.83,57.2,6,5,0,0,8,1,0,252,0,0,0 +5706,6989,12685,12686,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,4,7.628528814859804,7.929090803485721,0,1,0,-9,11,0,3,-95.40388479527196,0,0,0,46,1,4,1,2,1,2019,1,2,12,0,38,36,15,1,0,1,0,8.264694055366453,8.264694055366453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,6,1,0,0,10,4,1,322.5,0,0,0 +5706,6989,12686,12685,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,4,7.925812707822522,7.977158465029221,0,1,0,-9,11,0,-3,13.38475878922787,0,0,0,49,1,4,1,2,1,2019,1,1,8,1,37,38,15,1,1,1,0,9.160142581440988,9.160142581440988,0,0,0,0,0,0,0,0,0,0,2.440266919722753,0,0,0,57.85,47.51,6,1,0,0,10,4,1,322.5,0,0,0 +5707,6990,12687,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-980.3616318777034,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.165188773916577,3,61.11,48.86,7,1,0,0,4,1,0,572,0,0,0 +5708,6991,12688,12689,-9,-9,3,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,7.137229288783353,6.677952015964927,1,0,-9,7,0,3,85.10393502418532,-9,0,0,77,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.786492330619109,6.921120393021232,0,0,54,46,6,1,0,0,5,3,1,1028,0,0,0 +5708,6991,12689,12688,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,7.231595251050667,7.017626292746792,1,0,-9,7,0,-3,92.01655472943609,0,0,0,80,3,3,3,3,3,2019,4,3,12,3,0,0,15,4,3,4,0,0,0,1,0,0,0,1.180757378212416,0,0,1,1,0,6.776733560073831,0,11.6294134687706,1,49.21,38.32,6,1,0,0,5,3,1,1028,0,0,0 +5709,6992,12690,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,2,0,6.88688872127248,6.91308247998282,3,0,0,0,-9,0,-1008.986141868344,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.383555420437926,6.695294934324925,6.395355095189307,3,35.4,49.25,5,1,0,0,5,2,1,469,0,0,0 +5710,6993,12691,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,5.293438611688019,5.944976801952454,3,0,0,0,-9,0,-894.5049802541604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,4.862829447471443,0,0,22.06963010781821,0,0,1,1,0,8.478664309483928,5.912503885475303,0,0,47.79,28.96,5,4,0,0,12,2,1,208,0,0,0 +5711,6994,12692,12693,-9,-9,1,1,1,87,1,0,0,0,2,-9,4,3,0,1,0,6.446258713262226,6.107808196687173,1,0,-9,32,0,11,-29.812303581553,0,0,0,76,3,2,3,3,3,2019,4,2,24,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.343342633407331,0,0,35.06,23.19,2,1,0,0,5,2,1,430.5,0,0,0 +5711,6994,12693,12692,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,32,0,-11,-30.88990012424155,0,0,0,87,2,1,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.10068414436888,1,45.54,33.25,5,1,0,0,5,2,1,430.5,0,0,0 +5712,6995,12694,12695,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.132088058646312,8.13365338565794,0,1,0,-9,8,0,-4,114.773558969837,0,0,0,57,2,2,3,1,3,2019,2,2,9,0,40,41,15,1,0,3,0,9.703050861739433,9.703050861739433,0,0,0,0,0,0,0,0,0,0,4.18453101117521,0,0,0,53.97,45.2,5,1,0,0,6,3,1,695.5,0,0,0 +5712,6995,12695,12694,-9,-9,2,1,1,57,1,0,0,0,2,-9,97,3,0,2,0,0,0,1,0,-9,8,0,4,-33.89620437101128,0,0,0,53,2,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.577095570235403,0,0,0,47.93,40.56,4,1,0,0,6,3,1,695.5,0,0,0 +5713,6996,12696,-9,12699,12698,4,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1081.151887111176,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,3,1,1082,0,0,0 +5713,6996,12697,-9,12699,12698,3,1,1,17,2,0,2,0,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1002.615080211973,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,1,12,3,1,1082,0,0,0 +5713,6996,12698,12699,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,2,7.881381996712009,8.027059493897005,0,2,0,-9,10,0,3,-16.07579864454816,0,0,0,50,2,3,1,3,3,2019,1,2,10,0,55,42,15,1,0,1,0,6.369457811323485,6.369457811323485,0,0,0,0,0,0,0,1,1,0,0,0,8.926312530860228,3,54.61,51.04,5,1,0,0,12,3,1,1082,0,0,0 +5713,6996,12699,12698,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,3,7.417610665720199,7.648603679163301,0,2,0,-9,10,0,-3,-57.32149221481395,0,0,0,53,1,2,1,3,2,2019,1,1,8,0,30,37,15,1,0,1,0,6.262442470668828,6.262442470668828,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,50.48,5,1,0,0,12,3,1,1082,0,0,0 +5714,6997,12700,12701,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,2,0,8.012912237789854,8.566500739336993,1,0,-9,29,0,7,-74.50714243303941,0,0,0,57,1,4,3,2,2,2019,4,2,10,2,0,10,15,4,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.337758589910338,0,0,66.36,30.66,6,1,0,0,10,5,1,173.5,0,0,0 +5714,6997,12701,12700,-9,-9,2,1,0,57,1,0,0,0,1,-9,3,3,0,4,0,8.309085663878658,8.872575901076779,1,0,-9,9,0,-7,-86.36670883851914,0,0,0,64,2,2,3,2,2,2019,4,1,5,0,0,21,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.114244227042859,0,0,57.16,56.15,6,1,1,0,10,5,1,173.5,0,0,0 +5715,6998,12702,12703,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,6.759737170499907,6.733963478876558,1,0,-9,7,0,3,-25.35070023178366,0,0,0,67,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.572104307267671,6.206043656473576,0,0,55.19,54.26,7,1,0,0,10,3,1,288,0,0,0 +5715,6998,12703,12702,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.812521632668207,7.195694783489726,1,0,-9,43,0,-3,-64.29680765593123,0,0,0,70,2,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.08204129263444,7.577412620109114,0,0,49.35,59.64,6,1,0,0,10,3,1,288,0,0,0 +5716,6999,12704,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,2,7.465729667517715,7.445596832801463,0,3,0,-9,0,-9,0,-954.3751263970728,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,28,0,15,1,0,-9,0,7.374967624091714,7.374967624091714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.55,34.77,1,1,0,0,12,3,1,867,0,0,0 +5717,7000,12705,12706,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,7.630653228069704,8.056592642133825,6.111179071625946,1,0,-9,9,0,3,115.9850096240168,-9,0,0,59,3,3,1,-9,-9,2019,1,1,10,1,40,0,15,1,1,1,0,6.969269953241346,6.969269953241346,0,0,0,0,0,0,0,0,0,0,8.638232825655844,5.989805215909304,0,0,57.93,46.29,6,1,0,1,10,4,1,264.5,0,0,0 +5717,7000,12706,12705,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.793945737907181,7.602085099611648,0,1,0,-9,38,0,-3,46.611231441846,0,0,0,62,2,3,1,3,3,2019,1,2,12,0,30,30,15,1,0,1,0,7.566641385130235,7.566641385130235,0,0,0,0,0,0,0,0,0,0,7.257563998902816,0,0,0,53.39,49.67,4,1,0,0,10,4,1,264.5,0,0,0 +5718,7001,12707,12708,-9,-9,1,1,0,75,1,0,0,0,1,-9,4,3,0,4,0,7.332601051332201,7.088613479112487,1,0,-9,57,0,-1,86.47659975908165,0,0,0,76,1,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.195617171930014,6.817378728334854,0,0,51.47,53.17,6,1,0,0,5,2,1,299.5,0,0,0 +5718,7001,12708,12707,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,3,0,6.525186705695873,6.93095878907836,1,0,-9,57,0,1,2.567630410462468,0,0,0,75,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.063664366802582,6.939629669299964,0,0,39.28,47.76,6,1,0,0,5,2,1,299.5,0,0,0 +5719,7002,12709,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,3,7.275990606633199,7.500828075931108,4.175259809357673,3,0,0,0,-9,0,-1018.380125280564,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,31,15,1,0,-9,0,6.343043078949691,6.343043078949691,0,0,0,0,0,0,0,1,1,0,3.752992629099707,4.125968416140505,0,0,41.28,57.99,6,1,0,0,4,3,1,219,0,0,0 +5720,7003,12710,12713,-9,-9,2,1,0,37,1,0,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,10,0,-3,-53.23205411523574,0,0,1,40,2,2,1,-9,-9,2019,3,1,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.93853136508821,3,26.15,50.58,4,1,0,0,6,3,0,478.25,0,0,0 +5720,7003,12711,-9,12710,12713,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.70269366371,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,0,478.25,0,0,0 +5720,7003,12712,-9,12710,12713,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-945.9630172895843,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,1,0,0,6,3,0,478.25,0,0,0 +5720,7003,12713,12710,-9,-9,1,1,1,40,1,0,2,0,2,-9,1,1,0,2,8.737013058952041,8.589603785737186,0,2,0,-9,10,0,3,170.1251056943869,0,0,0,37,3,2,3,2,3,2019,2,2,13,1,72,0,15,1,1,3,0,9.214746551274324,9.214746551274324,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,49.19,4,1,0,0,6,3,0,478.25,0,0,0 +5721,7004,12714,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,4,6.498062259098733,6.500214906592369,0,3,0,0,0,-9,0,-903.1432186934205,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,45,50,15,1,0,-9,0,1.34450529927685,1.34450529927685,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,56.46,5,1,0,0,10,2,1,226,0,0,0 +5722,7005,12715,-9,-9,-9,1,1,0,36,2,1,1,0,1,-9,5,1,0,2,0,6.228769174862481,6.760908751724632,4,0,0,0,-9,0,-932.1478610821159,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.052242305146713,0,0,0,31.09,45.59,3,1,0,0,8,2,0,278,0,0,0 +5722,7005,12716,-9,12715,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-997.8091903816589,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,8,2,0,278,0,0,0 +5723,7006,12717,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,5,0,6.841256865390884,7.27577592167721,3,0,0,0,-9,0,-958.5498424043785,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.804279648882724,7.237218708060077,0,0,30.14,66.23,5,1,0,0,7,2,1,570,0,0,0 +5724,7007,12718,12721,-9,-9,1,1,1,33,1,1,2,0,3,-9,2,1,0,3,8.48881465147697,8.800557826439997,0,2,0,-9,6,0,-2,19.70643232714388,0,0,0,35,1,2,1,2,2,2019,1,2,9,0,40,43,15,1,0,1,0,17.03795664679154,17.03795664679154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.35,6,1,0,0,6,5,1,297.75,0,0,0 +5724,7007,12719,-9,12721,12718,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.7998547650762,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,297.75,0,0,0 +5724,7007,12720,-9,12721,12718,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.603696497178,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,297.75,0,0,0 +5724,7007,12721,12718,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,2,8.516638382532083,8.3048238903636,0,2,0,-9,6,0,2,80.92406039163008,0,0,1,33,3,3,1,-9,-9,2019,1,1,8,0,48,47,15,1,0,1,0,14.00667920651674,14.00667920651674,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,5,1,0,0,6,5,1,297.75,0,0,0 +5725,7008,12722,12723,-9,-9,2,1,1,38,1,0,1,0,2,-9,1,1,0,3,6.566897652018312,6.523778528410598,0,2,0,-9,10,0,0,-21.20970670356243,0,0,0,38,2,3,1,2,1,2019,1,1,11,0,25,40,15,1,0,1,0,2.760543427020399,2.760543427020399,0,0,0,0,0,0,0,1,1,0,0,0,30.4036081983549,3,46.22,39.9,5,3,0,0,8,2,0,880.6666666666666,0,0,0 +5725,7008,12723,12722,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,3,6.898366066069552,7.144886719777501,0,2,0,-9,10,0,0,59.38330018544433,0,0,1,38,2,3,1,3,2,2019,1,2,13,4,16,21,15,1,4,1,0,7.392005911620275,7.392005911620275,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,37.49,6,3,0,0,8,2,0,880.6666666666666,0,0,0 +5725,7008,12724,-9,12723,12722,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.0563468949787,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,880.6666666666666,0,0,0 +5726,7009,12725,12726,-9,-9,2,1,0,47,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,29,0,-3,171.3098754120483,0,0,0,50,3,5,1,3,2,2019,3,1,27,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.37,33.24,2,1,0,1,2,3,1,1003,0,0,0 +5726,7009,12726,12725,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,5,7.983800786564109,7.922975011481727,0,1,0,-9,29,0,3,27.68827703924232,0,0,0,47,2,2,3,-9,2,2019,2,2,6,0,39,54,15,1,0,3,0,9.790450881699801,9.790450881699801,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,2,3,1,1003,0,0,0 +5726,7010,12727,-9,-9,12728,4,1,0,4,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1044.457928470346,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,422,0,0,0 +5726,7010,12728,-9,12725,12726,3,1,1,24,2,0,0,0,2,-9,3,3,0,4,7.686487348098812,7.419622939088296,0,3,0,0,0,-9,0,-1088.665408252467,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,42,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,4,1,1,1,2,3,1,422,0,0,0 +5727,7011,12729,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,4.932592916746255,5.056617318647254,3,0,0,0,-9,0,-1066.52689806479,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.085892965349006,0,0,58.07,46.29,6,1,0,0,9,2,0,2050,0,0,0 +5728,7012,12730,12731,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-4,59.19532782919743,0,0,0,73,3,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,54.91,7,1,0,0,5,2,0,806.5,0,0,0 +5728,7012,12731,12730,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,2.8547349955741,2.856439910413193,1,0,-9,8,0,4,-78.12686184326776,0,0,0,69,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,18.09990293716234,0,0,0,0,1,1,0,0,3.109969901090311,0,0,57.72,42.26,7,1,0,0,5,2,0,806.5,0,0,0 +5729,7013,12732,-9,12735,12733,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.594091484075,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,4,1,600.75,0,0,0 +5729,7013,12733,12735,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.438766705683713,8.179901709339882,0,2,0,-9,14,0,5,-94.08578715173718,0,0,0,38,1,4,1,2,2,2019,1,2,21,10,40,38,15,1,10,1,0,11.75283654915056,11.75283654915056,0,0,0,0,0,0,0,1,1,0,.7729589877268982,0,0,3,31.77,57.43,3,3,0,0,8,4,1,600.75,0,0,0 +5729,7013,12734,-9,12735,12733,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.109109572855,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,4,1,600.75,0,0,0 +5729,7013,12735,12733,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.594571923676259,8.612747569340137,0,2,0,-9,14,0,-5,-34.54714941847273,0,0,1,43,2,3,1,2,3,2019,1,1,7,0,48,42,15,1,0,1,0,13.19964147801842,13.19964147801842,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,56.93,7,3,0,0,8,4,1,600.75,0,0,0 +5730,7014,12736,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,2,1,0,2,8.531761708700605,8.298771398014145,0,3,0,0,0,-9,0,-880.5314201184731,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,1,40,40,15,1,1,-9,0,11.33793794119793,11.33793794119793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.6,33.83,6,1,0,0,5,4,1,438,0,0,0 +5731,7015,12737,-9,12738,12739,4,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-986.3914461147734,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,1,6,2,1,442.6666666666667,0,0,0 +5731,7015,12738,12739,-9,-9,2,1,0,50,1,0,3,0,3,-9,2,1,0,3,7.45470959676335,7.472898885231568,0,2,0,-9,33,0,-6,0,0,0,0,56,2,4,1,3,2,2019,1,1,7,0,16,16,15,1,0,1,0,10.79979344268839,10.79979344268839,0,0,0,0,0,0,0,1,1,0,.7476183612664853,0,0,0,55.56,46,6,1,0,0,6,2,1,442.6666666666667,0,0,0 +5731,7015,12739,12738,-9,-9,1,1,1,56,1,0,3,0,2,-9,2,1,0,4,7.417129252878152,7.141403771861199,0,2,0,-9,22,0,6,0,0,0,0,50,3,3,1,-9,3,2019,1,2,11,2,43,60,15,1,2,1,0,4.29926047799242,4.29926047799242,0,0,0,0,0,0,0,1,1,0,9.211171077340392,0,0,0,47.64,55.02,6,1,0,0,6,2,1,442.6666666666667,0,0,0 +5731,7016,12740,-9,12738,12739,3,1,1,18,2,0,3,1,2,0,7,2,0,5,0,6.229589643255243,6.033409875888673,3,0,0,0,-9,0,-1121.444587805073,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.710587382676704,0,0,0,48.96,60.26,6,1,0,0,6,2,1,366,0,0,0 +5732,7017,12741,12742,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,62,0,-3,-36.14241775875357,0,0,0,85,2,2,3,-9,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.104781669171637,0,0,0,48.28,60.18,6,1,0,0,9,4,1,519,0,0,0 +5732,7017,12742,12741,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,2,0,8.576161490440946,8.520856875215447,1,0,-9,62,0,3,89.65297088711073,0,0,0,82,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.185737797754804,5.939369727279086,0,0,50,35,4,1,0,0,9,4,1,519,0,0,0 +5733,7018,12743,12744,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,8.554865385201532,8.729484300039523,0,1,0,-9,39,0,2,-146.8776751815655,0,0,0,59,2,3,1,2,2,2019,1,2,11,0,67,45,15,1,0,1,0,9.289067901232782,9.289067901232782,0,0,0,0,0,0,0,0,0,0,5.211725291476732,0,0,0,47.61,52.37,6,1,0,0,5,4,1,403,0,0,0 +5733,7018,12744,12743,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.315346193561216,7.411341042955784,0,1,0,-9,32,0,-2,32.86774830712945,0,0,0,61,1,3,1,2,2,2019,1,1,8,0,18,18,15,1,0,1,0,8.913781482902197,8.913781482902197,0,0,0,0,0,0,0,0,0,0,1.550913584194856,0,0,3,52.99,51.28,6,1,0,0,5,4,1,403,0,0,0 +5734,7019,12745,-9,12746,12747,3,1,0,17,2,0,1,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-988.2847966191293,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,27,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.15,61.1,1,1,1,1,1,3,1,374,0,0,0 +5734,7019,12746,12747,-9,-9,1,1,0,50,1,0,1,0,3,-9,1,1,0,4,7.331131333203741,7.338949602409583,0,2,0,-9,16,0,7,10.33224851133155,0,0,0,43,2,5,1,2,3,2019,1,2,10,1,25,22,15,1,1,1,0,8.005068956715176,8.005068956715176,0,0,0,0,0,0,0,0,0,0,6.026162708775618,0,0,0,46.63,59.72,6,1,0,0,1,3,1,374,0,0,0 +5734,7019,12747,12746,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,5,7.960369127668987,8.223600576779097,0,2,0,-9,6,0,-7,10.18665237710647,0,0,0,50,3,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,11.06368716943008,11.06368716943008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.32,57.18,7,1,0,0,1,3,1,374,0,0,0 +5735,7020,12748,12749,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,3,7.080175797479653,7.991418828659591,7.508813078539928,1,0,-9,34,0,14,-95.08502627843478,0,0,0,53,3,2,1,3,-9,2019,1,1,9,0,16,0,15,1,0,1,0,6.38510007915559,6.38510007915559,0,0,0,0,0,0,0,1,1,0,0,7.854672303878031,0,3,55.96,49.93,6,1,0,0,9,3,1,159,0,0,0 +5735,7020,12749,12748,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,2,7.200448761525238,6.987790037413934,4.912034535663581,1,0,-9,34,0,-14,-7.637471253255496,0,0,0,67,2,3,1,2,2,2019,1,2,13,2,35,6,15,1,2,1,0,2.74815968135257,2.74815968135257,0,0,0,0,0,0,0,1,1,0,4.679460403288082,4.756343987213895,0,0,46.57,46.63,5,1,0,0,9,3,1,159,0,0,0 +5736,7021,12750,12751,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,51,0,1,-89.95509643531814,0,0,0,73,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.676959692695144,0,0,0,51,46,5,1,0,0,13,2,1,740.5,0,0,0 +5736,7021,12751,12750,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.388043035587766,6.413957692361011,1,0,-9,51,0,-1,43.98428932069196,0,0,0,74,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.313013452142078,0,0,53,47,6,1,0,0,13,2,1,740.5,0,0,0 +5737,7022,12752,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-938.2035022948662,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,31,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.57,55.52,1,1,1,1,13,1,0,550,0,0,0 +5738,7023,12753,-9,12754,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1053.987948447219,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,5,0,476.5,0,0,0 +5738,7023,12754,-9,-9,-9,1,1,0,35,2,0,1,0,1,-9,2,1,0,3,8.774664741170948,8.812246853681152,0,4,0,0,0,-9,0,-1074.964420534001,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,24,12,46,50,15,1,12,-9,0,14.10625007908689,14.10625007908689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.93,60.89,2,4,0,0,8,5,0,476.5,0,0,0 +5739,7024,12755,12756,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,6.573339175702215,6.166243761383093,1,0,-9,47,0,7,27.68739985059289,0,0,0,63,3,3,1,3,-9,2019,3,1,11,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.036087650147601,6.330819081072738,0,0,51.33,33.18,3,1,0,0,7,3,1,337.5,0,0,0 +5739,7024,12756,12755,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,3,7.786337624257629,7.689899418335366,0,1,0,-9,47,0,-7,98.18785892457628,0,0,0,70,3,2,3,3,3,2019,2,2,10,0,38,37,15,1,0,4,0,7.414747820578864,7.414747820578864,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.35,57.44,6,1,0,0,7,3,1,337.5,0,0,0 +5740,7025,12757,12758,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.959803273164352,8.54239038831731,1,0,-9,51,0,0,19.44414390737799,0,0,0,71,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.241857826177943,8.648124647120396,0,0,58.3,52.91,6,1,0,0,10,5,1,437.5,0,0,0 +5740,7025,12758,12757,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,7.374836762837698,7.18181930817119,1,0,-9,51,0,0,-66.04925391768271,0,0,0,71,1,4,3,1,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.053085561819503,0,0,52.4,52.91,6,1,0,0,10,5,1,437.5,0,0,0 +5741,7026,12759,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.946295645685557,8.180119572908922,0,3,0,0,0,-9,0,-1025.57947204945,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,45,50,15,1,0,-9,0,8.112947176742308,8.112947176742308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,6,4,1,248,0,0,0 +5742,7027,12760,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,5.668230878725915,5.468581514406679,3,0,0,0,-9,0,-896.9050145127351,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.002277522319801,5.723642002621368,0,0,58.3,52.91,6,1,0,0,9,2,1,187,0,0,0 +5743,7028,12761,12762,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,1,-131.3623345341813,0,0,0,69,2,4,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.456196556970184,0,0,0,62.84,41.32,6,1,0,0,10,2,1,576.5,0,0,0 +5743,7028,12762,12761,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,4,7.412896303075051,7.599602644865352,0,1,0,-9,51,0,-1,149.7875146049961,0,0,0,70,2,3,3,2,-9,2019,2,2,7,0,24,24,15,1,0,4,0,8.764600250005023,8.764600250005023,0,0,0,0,0,0,0,1,1,0,4.300249359860491,0,0,0,49.27,55.11,1,1,0,0,10,2,1,576.5,0,0,0 +5744,7029,12763,12764,-9,-9,1,1,0,49,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,22,0,0,-38.72144012106831,0,0,0,49,3,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,2,3,0,0,4,3,1,357,0,0,0 +5744,7029,12764,12763,-9,-9,2,1,1,49,1,0,0,0,3,-9,1,1,0,4,8.516991179928027,8.591401444190677,0,1,0,-9,7,0,0,45.24220685891122,0,0,0,49,2,3,3,-9,-9,2019,2,1,9,0,40,70,15,1,1,3,0,12.00168153863034,12.00168153863034,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,0,0,4,3,1,357,0,0,0 +5744,7030,12765,-9,12763,12764,3,1,1,30,2,0,0,0,1,-9,2,1,0,3,7.902421930754575,8.062992477380126,0,3,0,0,0,-9,0,-970.9759713885906,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,41,35,15,1,0,-9,1,8.557254080450189,8.557254080450189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,5,3,0,0,4,4,1,448,0,0,0 +5744,7031,12766,-9,12763,12764,4,1,1,24,2,0,0,0,1,-9,2,1,0,3,8.261342833401843,8.298071069811508,0,3,0,0,0,-9,0,-1038.255706536145,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,40,44,15,1,0,-9,1,10.07898909477434,10.07898909477434,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,5,3,0,0,4,4,1,997,0,0,0 +5745,7032,12767,-9,-9,-9,1,1,1,94,3,0,0,0,2,-9,4,3,0,1,0,5.464781469741822,4.820416145618557,3,0,0,0,-9,0,-1053.299177940073,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,28.69182612497353,0,0,0,1,1,0,0,4.756595727572211,0,0,51.43,17.06,5,1,0,1,11,2,1,414,0,0,0 +5746,7033,12768,12769,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.269202785225156,7.727833241988954,1,0,-9,46,0,2,16.19398921923173,0,0,0,65,3,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.396312702853029,0,0,57.33,53.46,6,1,0,0,13,2,1,2088,0,0,0 +5746,7033,12769,12768,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-2,42.61968050032254,-9,0,0,67,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,1,0,0,13,2,1,2088,0,0,0 +5747,7034,12770,-9,12772,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-927.8978261215302,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,6,2,0,752,0,0,0 +5747,7034,12771,-9,12772,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1037.27279693591,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,6,2,0,752,0,0,0 +5747,7034,12772,-9,-9,-9,1,1,0,37,2,0,3,0,3,-9,2,1,0,3,7.387568560704551,7.645827755277107,0,4,0,0,0,-9,0,-1049.770364328467,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,28,0,15,1,3,-9,0,8.894839526882716,8.894839526882716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,3,4,0,0,6,2,0,752,0,0,0 +5748,7035,12773,12774,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,38,-9,4,-115.991992977913,-9,0,0,63,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,5,0,0,7,2,0,725.5,0,0,0 +5748,7035,12774,12773,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,4,7.644691090281579,7.658668749468023,0,1,0,-9,1,-9,-4,-103.4412943723503,-9,0,0,67,1,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,7,2,0,725.5,0,0,0 +5749,7036,12775,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,3,8.144666810807188,8.120951344961327,0,3,0,-9,0,-9,0,-1031.598202055136,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,30,35,15,1,2,-9,0,14.74250643087473,14.74250643087473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.9,57.01,6,1,0,0,11,4,1,266,0,0,0 +5749,7037,12776,-9,12775,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.720988379978695,7.739593216254189,0,3,0,-9,0,-9,0,-1114.151262196348,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,25,25,15,1,0,-9,1,10.75656851140305,10.75656851140305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,3,1,0,0,11,3,1,237,0,0,0 +5749,7038,12777,-9,12775,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.084560065756473,7.314329726801657,0,3,0,-9,0,-9,0,-975.221401685917,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,25,20,15,1,3,-9,1,5.160229409190707,5.160229409190707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.46,52.7,5,1,0,0,11,2,1,86,0,0,0 +5749,7039,12778,-9,12775,-9,4,1,0,20,2,0,0,0,2,0,7,2,0,3,4.532672950563488,5.658996087354257,5.11322858535941,3,0,-9,0,-9,0,-1065.019521932321,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.953283814682147,0,0,0,54.06,48.03,6,1,0,0,11,2,1,451,0,0,0 +5750,7040,12779,-9,12780,12781,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1007.133509643609,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,1,0,0,9,5,1,1152.75,0,0,0 +5750,7040,12780,12781,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.415681667539827,8.734988218765093,0,2,0,-9,18,0,0,-33.07821746694659,0,0,1,43,2,4,1,2,3,2019,1,2,8,0,30,26,15,1,0,1,0,19.47630113616851,19.47630113616851,0,0,0,0,0,0,0,0,0,0,.7694319652005692,0,0,0,57.16,56.15,7,1,0,0,9,5,1,1152.75,0,0,0 +5750,7040,12781,12780,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.578120499042091,8.741956695085712,0,2,0,-9,18,0,0,-39.02333057942523,0,0,0,43,1,4,1,2,2,2019,1,1,14,4,42,44,15,1,4,1,0,17.66938015952027,17.66938015952027,0,0,0,0,0,0,0,0,0,0,1.405196861024666,0,0,3,43.03,55.9,6,1,0,0,9,5,1,1152.75,0,0,0 +5750,7040,12782,-9,12780,12781,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.4660488960203,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,9,5,1,1152.75,0,0,0 +5751,7041,12783,12784,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,3,8.430788839900899,7.969791771669157,0,1,0,-9,7,0,-6,-11.76623582793587,0,0,0,64,2,3,1,2,2,2019,1,2,12,0,10,22,15,1,0,1,0,37.63272150383421,37.63272150383421,0,0,0,0,0,0,0,0,0,0,3.308985297781226,0,0,0,57.49,45.09,6,1,0,0,7,5,1,462.5,0,0,0 +5751,7041,12784,12783,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,3,8.625986121299414,8.403906042029259,0,1,0,-9,7,0,6,2.273968585506051,0,0,0,58,1,3,1,-9,-9,2019,1,1,10,0,38,45,15,1,1,1,0,22.58594343278059,22.58594343278059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,5,1,0,0,7,5,1,462.5,0,0,0 +5751,7042,12785,-9,12783,12784,3,1,0,22,2,0,0,0,1,-9,3,3,0,5,7.569040921624708,7.677934457774741,0,3,0,0,0,-9,0,-1054.853950367438,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,1,30,37,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,1,1,0,7,3,1,1939,0,0,0 +5752,7043,12786,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,4,8.420639225129912,8.639106080610265,6.832075324951497,3,0,0,0,-9,0,-1054.367253585156,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,36,36,15,1,0,-9,0,14.75854798180551,14.75854798180551,0,0,0,0,0,0,0,1,0,1,0,7.258963081196907,0,0,57.16,56.15,7,4,0,0,8,5,0,1402,0,0,0 +5752,7044,12787,-9,12786,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.83849721578672,8.658034867084396,0,3,0,0,0,-9,0,-1031.829597011244,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,4,38,40,15,1,4,-9,1,23.42287771663383,23.42287771663383,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.49,57.57,3,4,0,0,8,5,0,379,0,0,0 +5753,7045,12788,-9,-9,-9,1,1,0,37,3,0,3,0,2,-9,2,1,0,3,7.678078153743663,7.091716039586337,0,4,0,0,0,-9,0,-1044.846414465406,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,33,0,15,1,1,-9,0,8.184242383058256,8.184242383058256,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.96,34.69,5,4,0,0,8,2,0,827,0,0,0 +5753,7045,12789,-9,12788,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1003.885747928911,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,4,0,0,8,2,0,827,0,0,0 +5753,7045,12790,-9,12788,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-991.1418510422445,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,5,4,0,0,8,2,0,827,0,0,0 +5754,7046,12791,12792,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,4,8.629143531602034,9.098458691471111,0,1,0,-9,26,0,-1,-49.97118356178818,0,0,0,48,2,3,1,-9,-9,2019,1,1,6,0,38,40,15,1,0,1,0,17.99144660237755,17.99144660237755,0,0,0,0,0,0,0,0,0,0,6.387227260153807,0,0,0,54.79,55.86,6,1,0,0,5,5,1,1388,0,0,0 +5754,7046,12792,12791,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.819891804020359,7.76763758608275,0,1,0,-9,26,0,1,95.73480704256707,0,0,0,47,3,4,1,2,2,2019,1,2,17,5,27,30,15,1,5,1,0,10.35394909571682,10.35394909571682,0,0,0,0,0,0,0,0,0,0,1.382028657665578,0,0,0,43.37,57.28,6,2,0,0,5,5,1,1388,0,0,0 +5754,7047,12793,-9,12792,12791,3,1,0,18,2,0,0,0,2,1,2,1,0,4,6.988550247243642,7.22285476430396,0,3,0,0,0,-9,0,-1020.325579613712,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,44,0,15,1,2,-9,1,2.795185494894016,2.795185494894016,0,0,0,0,0,0,0,0,0,0,1.327069164413297,0,0,0,44.02,60.7,6,2,0,0,5,2,1,208,0,0,0 +5755,7048,12794,12795,-9,-9,1,1,1,76,1,0,0,0,2,-9,2,1,0,4,8.505521405068336,8.526443288092187,6.741747569662174,1,0,-9,6,0,1,69.26993060657665,0,0,0,75,3,5,3,2,2,2019,2,2,6,0,33,36,15,1,0,3,0,16.51529321488755,16.51529321488755,0,0,0,0,0,0,0,1,1,0,5.195742350754561,7.238504073320694,0,0,62.49,55.09,7,1,0,0,7,4,1,473.5,0,0,0 +5755,7048,12795,12794,-9,-9,2,1,0,75,1,0,0,0,3,-9,6,3,0,5,0,0,0,1,0,-9,6,0,-1,1.089465133590689,0,0,0,76,2,4,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.476374042691877,0,0,0,60.02,56.42,7,1,0,0,7,4,1,473.5,0,0,0 +5756,7049,12796,-9,-9,-9,1,1,0,76,3,0,3,0,3,-9,4,3,0,1,0,6.260690003563967,6.399103723465944,4,0,0,0,-9,0,-1044.228550680065,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.37062820440365,0,0,41.46,15.4,6,1,0,0,2,2,1,348,0,0,0 +5756,7050,12797,-9,12796,-9,2,1,0,48,3,0,3,0,2,-9,2,1,0,3,7.904425009659659,7.373075424074253,0,3,0,0,0,-9,0,-1089.680563004226,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,44,42,15,1,0,-9,1,6.502911724259882,6.502911724259882,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,2,3,1,602,0,0,0 +5756,7050,12798,-9,12797,-9,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1182.466798204404,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,2,3,1,602,0,0,0 +5756,7051,12799,-9,12797,-9,3,1,0,28,2,0,3,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1069.150496630834,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.87,42.84,4,1,0,0,2,1,1,621,0,0,0 +5756,7051,12800,-9,12799,-9,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-889.1690680158886,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,1,1,621,0,0,0 +5756,7051,12801,-9,12799,-9,6,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1116.632111708043,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,1,621,0,0,0 +5757,7052,12802,12803,-9,-9,1,1,1,43,1,0,0,0,2,-9,1,1,0,5,8.646871335181919,8.355734573048689,0,1,0,-9,6,0,-4,-19.4877355582203,0,0,0,47,1,3,1,-9,-9,2019,1,2,5,0,35,35,15,1,0,1,0,12.00413433599518,12.00413433599518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,10,5,1,430.5,0,0,0 +5757,7052,12803,12802,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,3,8.794175755988512,9.239567751049009,0,1,0,-9,6,0,4,-28.55865623065277,0,0,0,43,2,5,1,-9,-9,2019,1,1,13,1,45,28,15,1,1,1,0,21.60518337723139,21.60518337723139,0,0,0,0,0,0,0,0,0,0,8.146301039639489,0,0,0,45.13,41.57,5,1,0,0,10,5,1,430.5,0,0,0 +5758,7053,12804,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,2,0,5.552670430075393,5.481381506593332,3,0,0,0,-9,0,-1112.017833663053,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.05798750488271,5.666277764782724,0,0,43.56,49.22,7,1,0,0,7,2,1,223,0,0,0 +5759,7054,12805,12806,-9,-9,2,1,0,52,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,35,0,-5,119.0964258073054,0,0,0,57,3,4,1,2,2,2019,3,1,18,7,0,20,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,20.1,2,1,0,0,2,3,1,540,0,0,0 +5759,7054,12806,12805,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,4,7.861155615759756,8.039301948456799,0,1,0,-9,35,0,5,45.05700993930799,0,0,0,52,2,1,3,2,2,2019,2,2,13,1,40,40,15,1,1,3,0,7.360607171763277,7.360607171763277,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54,54,4,1,0,0,2,3,1,540,0,0,0 +5760,7055,12807,-9,12808,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-951.6524955012039,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,452,0,0,0 +5760,7055,12808,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,2,1,0,4,7.522123841170094,7.463429223723518,0,4,0,0,0,-9,0,-898.4854300947642,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,30,25,15,1,6,-9,0,7.188650420313172,7.188650420313172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,44.54,4,1,0,0,4,2,0,452,0,0,0 +5761,7056,12809,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-950.94360057826,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.8,37.96,1,1,1,1,4,1,0,1155,0,0,0 +5762,7057,12810,-9,-9,-9,2,1,0,76,3,0,2,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-882.2180744767822,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,2.683147967299512,0,0,0,1,1,0,0,0,0,0,59.24,25.52,4,1,0,0,8,1,1,476,0,0,0 +5763,7058,12811,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,3,8.684747887905433,8.615497334844905,6.573518542484821,3,0,0,0,-9,0,-898.7195693565345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,38,15,1,0,-9,0,18.79870537997302,18.79870537997302,0,0,0,0,0,0,0,1,1,0,3.906159690919083,6.983529458072484,0,0,56.35,51.16,6,1,0,0,10,5,1,531,0,0,0 +5764,7059,12812,12814,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,8.462748645051523,8.880443991295458,0,2,0,-9,15,0,-4,-82.86198372777289,0,0,1,46,1,5,1,2,2,2019,1,2,11,0,36,33,15,1,0,1,0,17.52479270263838,17.52479270263838,0,0,0,0,0,0,0,0,0,0,6.619343200620554,0,0,0,40.98,52.59,2,1,0,0,6,5,1,2103,0,0,0 +5764,7059,12813,-9,12812,12814,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.5178071121559,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,6,5,1,2103,0,0,0 +5764,7059,12814,12812,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,5,9.765554300698005,9.543326107242951,0,2,0,-9,13,0,4,-1.869332076685866,0,0,0,42,2,3,1,3,3,2019,1,1,6,0,25,25,15,1,0,1,0,73.01423086059374,73.01423086059374,0,0,0,0,0,0,0,0,0,0,2.984440031411648,0,0,0,57.06,57.76,6,1,0,0,6,5,1,2103,0,0,0 +5764,7059,12815,-9,12812,12814,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.087777626859,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,6,5,1,2103,0,0,0 +5765,7060,12816,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,1,1,0,4,7.730553792232763,7.300115393401186,0,3,0,-9,0,-9,0,-1006.910459288115,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,0,15,1,0,-9,0,3.012698909526148,3.012698909526148,0,0,0,0,0,0,0,0,0,0,.5901980789621114,0,0,0,48.76,53.24,6,1,0,0,5,3,1,355,0,0,0 +5765,7061,12817,-9,-9,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.542392110134195,8.368211949668215,0,3,0,-9,0,-9,0,-987.5863640987665,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,50,0,15,1,0,-9,0,13.13683441254272,13.13683441254272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,5,5,1,864,0,0,0 +5766,7062,12818,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,4.276124469343757,4.364707970077443,3,0,0,0,-9,0,-900.6123944092692,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.02362670181926,4.593387963355918,0,0,49.43,33.92,6,1,0,0,9,2,1,914,0,0,0 +5767,7063,12819,-9,-9,-9,1,1,0,102,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-900.2664705253552,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,7.035428808787929,0,0,0,0,120.4241146754425,1,1,0,1.059283299896498,0,0,0,55,42,6,1,0,0,4,1,1,431,0,0,0 +5768,7064,12820,12821,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.207029998901422,8.107963984095441,5.452241497119084,1,0,-9,27,0,-1,-52.85544259340369,0,0,0,53,2,4,1,2,-9,2019,1,1,6,0,40,41,15,1,0,1,0,6.997584632170037,6.997584632170037,0,0,0,0,0,0,0,0,0,0,4.997105618771132,0,0,3,54.79,55.86,2,1,0,0,11,5,1,2207,0,0,0 +5768,7064,12821,12820,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.198939422851304,8.378916323118194,6.996078353221812,1,0,-9,27,0,1,-73.40428012571932,0,0,0,52,2,4,1,-9,3,2019,1,2,9,1,39,38,15,1,1,1,0,9.970975921513549,9.970975921513549,0,0,0,0,0,0,0,0,0,0,0,7.244460211982741,0,0,57.16,56.15,6,1,0,0,11,5,1,2207,0,0,0 +5768,7065,12822,-9,12820,12821,3,1,0,24,2,0,0,0,1,-9,2,1,0,5,8.619885951324513,8.276614684741212,0,3,0,0,0,-9,0,-917.9848210570512,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,48,50,15,1,1,-9,1,14.03879468745446,14.03879468745446,0,0,0,0,0,0,0,0,0,0,.2020689921788316,0,0,0,38.64,62,6,1,0,0,11,5,1,149,0,0,0 +5768,7066,12823,-9,12820,12821,4,1,1,18,2,0,0,0,2,-9,2,1,0,4,5.223355102499945,5.051503912556058,0,3,0,0,0,-9,0,-1011.879956227357,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,45,0,15,1,1,-9,1,.3956877836688725,.3956877836688725,0,0,0,0,0,0,0,0,0,0,.2629147653049057,0,0,0,45.19,51.82,6,1,0,0,11,2,1,264,0,0,0 +5769,7067,12824,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,4,3,0,4,0,8.175451495416455,8.47564724384468,3,0,0,0,-9,0,-1059.624957438079,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.937223805808856,8.249843833148608,5.530880649269466,3,55.87,53.99,6,1,0,0,13,4,1,143,0,0,0 +5770,7068,12825,12826,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,4,6.925843098994618,7.552498888966729,5.858898312295387,1,0,-9,49,0,-2,4.407886535873459,0,0,0,71,1,4,1,2,2,2019,1,2,6,0,10,8,15,1,0,1,0,11.48061808759458,11.48061808759458,0,0,0,0,0,0,0,1,1,0,7.486930291052499,6.329619720193685,0,0,57.16,56.15,7,1,0,0,10,5,1,440.5,0,0,0 +5770,7068,12826,12825,-9,-9,2,1,1,71,1,0,0,0,1,-9,1,1,0,4,8.625279809929342,8.848771416284166,7.473144999591567,1,0,-9,49,0,2,-25.06032581987331,0,0,0,69,2,4,1,3,2,2019,1,1,6,0,20,20,15,1,0,1,0,37.4131502937107,37.4131502937107,1,0,0,0,0,0,0,1,1,0,7.916179471575027,7.461378596071122,0,0,57.16,56.15,6,1,0,0,10,5,1,440.5,0,0,0 +5771,7069,12827,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,-9,0,0,0,-1026.32784866418,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,36,12,0,55,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.545420418500496,0,13.54474270316997,3,19.84,39.88,1,2,1,1,8,1,1,170,0,0,0 +5772,7070,12828,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.233948683060206,7.658933739659897,0,3,0,0,0,-9,0,-958.4974521087776,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,40,15,1,1,-9,0,7.001137658951979,7.001137658951979,0,0,0,0,0,0,0,0,0,0,.3807266135666996,0,0,0,48,59,5,1,0,0,5,3,0,161,0,0,0 +5773,7071,12829,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,5,8.428075645091118,8.582639825678521,0,3,0,0,0,-9,0,-960.0050122983369,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,40,39,15,1,5,-9,0,17.37627911626903,17.37627911626903,0,0,0,0,0,0,0,0,0,0,2.313822597664877,0,0,0,43.97,60.95,5,1,0,0,4,5,1,670,0,0,0 +5774,7072,12830,12831,-9,-9,2,1,0,57,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,9,0,-20,0,0,0,0,77,3,4,3,-9,-9,2019,4,1,13,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.943542289222211,0,0,0,41.69,17.76,1,1,0,0,7,1,0,301,0,0,0 +5774,7072,12831,12830,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,11,0,20,0,0,0,0,57,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,84.42823444739126,1,57.16,56.15,7,1,0,0,7,1,0,301,0,0,0 +5775,7073,12832,12833,-9,-9,1,1,0,50,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,28,0,-3,54.91623492476477,0,0,0,53,1,4,1,2,2,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.06,28.05,6,1,0,0,10,2,1,377.3333333333333,0,0,0 +5775,7073,12833,12832,-9,-9,2,1,1,53,1,0,1,0,1,-9,1,1,0,4,7.759655520963616,7.957925161547893,0,2,0,-9,28,0,3,161.4767915881815,0,0,0,50,2,1,3,2,2,2019,2,1,11,0,48,50,15,1,0,3,0,7.077000762527747,7.077000762527747,0,0,0,0,0,0,0,1,1,0,7.286760735455149,0,.203936827794867,1,54.2,57.49,5,1,0,0,10,2,1,377.3333333333333,0,0,0 +5775,7073,12834,-9,12832,12833,3,1,0,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1049.833769311217,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,1,0,0,10,2,1,377.3333333333333,0,0,0 +5776,7074,12835,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,4,7.47743005853313,7.755639480044461,0,3,0,0,0,-9,0,-906.6869847421314,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,22,34,15,1,0,-9,0,6.947936276994114,6.947936276994114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.95,58.82,6,1,0,0,10,3,0,417,0,0,0 +5777,7075,12836,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1048.09970396643,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.57,24.17,7,1,0,0,5,1,0,1217,0,0,0 +5778,7076,12837,-9,12838,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,5,3.313240373195415,3.337395757034582,0,4,0,0,0,-9,0,-1002.905496204315,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.05,64.3,4,1,0,0,4,3,1,761.5,0,0,0 +5778,7076,12838,-9,-9,-9,1,1,0,56,3,0,1,0,3,-9,2,1,0,4,8.16087794511823,8.040751717932517,0,4,0,0,0,-9,0,-964.0528145156528,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,34,32,15,1,1,-9,0,11.02731154075793,11.02731154075793,0,0,0,0,0,0,0,1,1,0,0,0,9.848102047304412,3,34.13,61.39,6,1,0,1,4,3,1,761.5,0,0,0 +5779,7077,12839,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,3,8.498971498737793,8.196403569057168,0,3,0,-9,0,-9,0,-986.4869475229466,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,58,0,15,1,5,-9,0,10.06458494854206,10.06458494854206,0,0,0,0,0,0,0,0,0,0,.6237514146650561,0,6.158098680790749,3,30.41,61.92,3,1,0,0,1,5,0,280,0,0,0 +5780,7078,12840,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,8,3,1,1,0,6.352415374970207,6.318542428581303,3,0,0,0,-9,0,-1101.278096377537,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.442515211667174,0,0,0,36.51,28.29,4,1,0,0,4,2,0,171,0,0,0 +5781,7079,12841,-9,12843,12842,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.7075266800771,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,6,4,1,436.3333333333333,0,0,0 +5781,7079,12842,12843,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,3,8.14442973695353,7.979183509442015,0,2,0,-9,13,0,6,-115.9701473690296,0,0,0,42,2,5,3,3,3,2019,2,2,20,9,0,40,15,1,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.180947168558336,0,6.83243117101308,3,29.96,59.35,3,3,0,0,6,4,1,436.3333333333333,0,0,0 +5781,7079,12843,12842,-9,-9,2,1,0,42,1,0,1,0,2,-9,6,3,0,5,8.064715563102844,8.02678404605963,0,2,0,-9,13,0,-6,144.1362927899864,0,0,1,48,2,3,1,3,3,2019,3,1,9,1,43,36,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,3,3,0,0,6,4,1,436.3333333333333,0,0,0 +5782,7080,12844,-9,12845,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-933.0808664195351,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,2,0,229.5,0,0,0 +5782,7080,12845,-9,-9,-9,1,1,0,22,2,1,1,0,2,0,7,2,0,2,0,5.067855056317431,5.372105946713386,4,0,0,0,-9,0,-926.2670783005054,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.690095262781774,0,0,0,55.75,36.73,6,1,0,0,13,2,0,229.5,0,0,0 +5783,7081,12846,12847,-9,-9,2,1,0,37,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,4,0,1,-5.69045012268548,0,0,1,36,1,2,1,-9,-9,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.905654663538897,3,53.48,53.71,6,1,0,0,12,5,0,1192.333333333333,0,0,0 +5783,7081,12847,12846,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,2,9.207293560608923,9.543017983311524,0,2,0,-9,4,0,-1,96.29730719693065,0,0,0,37,1,4,3,2,2,2019,2,2,20,7,38,40,15,1,7,3,0,25.81864234373953,25.81864234373953,0,0,0,0,0,0,0,0,0,0,3.181128524363765,0,0,0,31.77,31.97,6,1,0,0,12,5,0,1192.333333333333,0,0,0 +5783,7081,12848,-9,12846,12847,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.1770796545561,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,12,5,0,1192.333333333333,0,0,0 +5784,7082,12849,-9,-9,-9,1,1,0,35,3,0,4,0,3,-9,8,3,1,1,0,5.161674634151255,4.690434032778092,4,0,0,0,-9,0,-972.1125210028589,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.606962161035582,0,13.96967823275469,3,46.38,16.75,7,1,0,0,5,1,0,816.2,0,0,0 +5784,7082,12850,-9,12849,-9,5,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-962.2838749827906,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,0,816.2,0,0,0 +5784,7082,12851,-9,12849,-9,3,1,1,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1063.355406259481,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,1,0,816.2,0,0,0 +5784,7082,12852,-9,12849,-9,4,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.757215710528,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,1,0,816.2,0,0,0 +5784,7082,12853,-9,12849,-9,2,1,1,16,2,0,4,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1051.748121277835,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.597952771468676,3,21.38,64.67,3,1,0,0,5,1,0,816.2,0,0,0 +5785,7083,12854,-9,12855,12856,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.2951127511716,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,3,1,1055,0,0,0 +5785,7083,12855,12856,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.614392417903648,7.815484647234915,0,2,0,-9,17,0,-7,79.02138789966509,0,0,1,41,2,4,1,2,2,2019,1,2,12,0,26,24,15,1,0,1,0,9.272348532223795,9.272348532223795,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,4,1,0,1,13,3,1,1055,0,0,0 +5785,7083,12856,12855,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,7.800770359181707,8.052838397126147,0,2,0,-9,17,0,7,-5.374383701362154,0,0,0,34,2,4,1,3,2,2019,1,1,12,0,40,40,15,1,0,1,0,4.76452678483552,4.76452678483552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,5,1,0,1,13,3,1,1055,0,0,0 +5785,7083,12857,-9,12855,12856,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.609972972514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,3,1,1055,0,0,0 +5786,7084,12858,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-974.6256063194694,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,1,1,13,1,0,808,0,0,0 +5786,7085,12859,-9,-9,-9,2,1,1,68,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-907.3536466967425,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,0,0,13,1,0,2537,0,0,0 +5787,7086,12860,12861,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,6.816473921189858,7.290585138453815,1,0,-9,7,0,-5,-2.814410918521811,0,0,0,70,3,5,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.006770960959274,0,0,57.16,56.15,6,1,0,0,11,4,1,511,0,0,0 +5787,7086,12861,12860,-9,-9,2,1,1,70,1,0,0,0,3,-9,2,1,0,5,8.237028298433628,8.156026497316365,6.806850683908658,1,0,-9,7,0,5,40.55146575886363,0,0,0,65,2,4,3,3,3,2019,2,1,7,0,40,0,15,1,0,4,0,8.807539950704658,8.807539950704658,0,0,0,0,0,0,0,1,1,0,0,6.691218427069821,0,0,62.96,55.09,2,1,0,0,11,4,1,511,0,0,0 +5788,7087,12862,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,8.158700783192833,8.287499862815194,0,3,0,0,0,-9,0,-945.4143282339051,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,37,38,15,1,10,-9,0,12.96030216002908,12.96030216002908,0,0,0,0,0,0,0,0,0,0,3.928731570377658,0,0,0,36.62,58.96,3,1,0,0,9,4,1,1442,0,0,0 +5788,7088,12863,-9,12862,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,2,8.393265091242064,8.329776348995759,0,3,0,0,0,-9,0,-1011.922131242905,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,50,53,15,1,1,-9,1,10.55652607189558,10.55652607189558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.48,35.01,4,1,0,0,9,4,1,200,0,0,0 +5789,7089,12864,12865,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.322615488937251,8.436218564187163,0,1,0,-9,10,0,12,-57.66212393181639,0,0,0,49,2,3,1,3,3,2019,1,1,7,0,70,25,15,1,0,1,0,8.022663498913051,8.022663498913051,0,0,0,0,0,0,0,0,0,0,1.539511509151815,0,0,0,61.28,48.88,7,1,0,0,6,4,1,1339,0,0,0 +5789,7089,12865,12864,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.452317179792726,7.742007207471978,0,1,0,-9,10,0,-12,-13.73454897642539,0,0,0,61,2,3,1,3,3,2019,1,2,11,0,32,38,15,1,0,1,0,6.673022185921353,6.673022185921353,0,0,0,0,0,0,0,0,0,0,2.132222136882167,0,0,0,51.08,41.36,6,1,0,0,6,4,1,1339,0,0,0 +5789,7090,12866,-9,12865,12864,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.75377139420524,7.77426668511779,0,3,0,0,0,-9,0,-927.3136563969299,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,38,15,1,0,-9,1,8.152337085168755,8.152337085168755,0,0,0,0,0,0,0,0,0,0,.8302636707457323,0,0,0,54.2,57.49,6,1,0,0,6,3,1,324,0,0,0 +5789,7091,12867,-9,12865,12864,4,1,0,21,2,0,0,1,2,0,7,2,0,3,6.908926944678208,7.207824007440903,0,3,0,0,0,-9,0,-1107.907790529429,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,9,15,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.73,47.21,3,1,0,0,6,2,1,1680,0,0,0 +5790,7092,12868,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,8,3,1,1,0,5.405451326869986,5.446043578457141,3,0,-9,0,-9,0,-1015.791812808075,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.630645665178855,0,0,40.39,29.5,1,1,0,1,8,2,0,475,0,0,0 +5791,7093,12869,-9,-9,-9,1,1,0,29,3,0,0,0,2,-9,2,1,0,2,8.512844250801603,8.494342547904498,0,3,0,0,0,-9,0,-934.7193380725163,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,39,15,1,1,-9,0,14.5803295749025,14.5803295749025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.67,52.05,4,3,0,0,2,5,1,855,0,0,0 +5792,7094,12870,12871,-9,-9,2,1,1,38,1,0,0,0,2,-9,1,1,0,4,8.842911858914379,8.629454599069483,0,1,0,-9,6,0,2,-4.855777468916295,0,0,0,36,1,5,1,2,3,2019,1,1,10,0,45,46,15,1,0,1,0,12.25034156263057,12.25034156263057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.8,56.12,6,1,0,0,11,5,1,802,0,0,0 +5792,7094,12871,12870,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,5,8.257834693396003,8.388640497928282,0,1,0,-9,6,0,-2,-2.462242035516307,0,0,1,38,2,4,1,2,3,2019,1,2,9,2,32,36,15,1,2,1,0,15.92044833199404,15.92044833199404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.03,50.53,5,1,0,0,11,5,1,802,0,0,0 +5793,7095,12872,-9,12874,-9,2,1,0,11,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.017463432381,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,2,0,1379.666666666667,0,0,0 +5793,7095,12873,-9,12874,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1045.827505326267,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,7,2,0,1379.666666666667,0,0,0 +5793,7095,12874,-9,-9,-9,1,1,0,31,2,1,2,0,1,-9,2,1,0,2,7.405981729809075,7.309080375789032,0,4,0,0,0,-9,0,-1017.928756545748,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,23,0,15,1,0,-9,0,7.866011069979384,7.866011069979384,0,0,0,0,0,0,0,1,1,0,0,0,9.36926387979717,3,48.29,47.3,6,4,0,0,7,2,0,1379.666666666667,0,0,0 +5794,7096,12875,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-936.3512503163964,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4267362849887917,0,0,0,54.2,44.29,6,1,0,0,4,1,1,144,0,0,0 +5795,7097,12876,12877,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,2,7.436063358972294,7.462232029661356,0,2,0,-9,29,0,-1,-30.11751553091126,0,0,0,47,1,4,1,2,1,2019,1,2,8,0,10,18,15,1,0,1,0,20.82022669389354,20.82022669389354,0,0,0,0,0,0,0,1,1,0,3.283358009014001,0,0,0,49.44,43.73,5,1,0,0,7,4,1,817.25,0,0,0 +5795,7097,12877,12876,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,9.169557922906861,9.004230631291762,0,2,0,-9,23,0,1,-2.01777026199804,0,0,0,46,1,2,1,3,2,2019,1,1,15,5,37,37,15,1,5,1,0,22.16968235036873,22.16968235036873,0,0,0,0,0,0,0,1,1,0,3.243295567513701,0,0,0,51.77,58.57,5,1,0,0,7,4,1,817.25,0,0,0 +5795,7097,12878,-9,12876,12877,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.0207501082383,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,817.25,0,0,0 +5795,7097,12879,-9,12876,12877,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.2880036249619,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,4,1,817.25,0,0,0 +5796,7098,12880,-9,12881,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1056.014424124518,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,3,0,722,0,0,0 +5796,7098,12881,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,3,6.992186450552914,7.471859061171612,6.50609822108802,4,0,0,0,-9,0,-1029.705310440501,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,20,25,15,1,0,-9,0,6.938950663442714,6.938950663442714,0,0,0,0,0,0,0,1,1,0,6.479107757434776,0,0,0,46.61,56.93,5,1,0,0,12,3,0,722,0,0,0 +5797,7099,12882,-9,12885,12884,2,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1031.029519074756,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,9,3,1,939.5,0,0,0 +5797,7099,12883,-9,12885,12884,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1130.191844140599,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,1,939.5,0,0,0 +5797,7099,12884,12885,-9,-9,4,1,1,27,1,0,2,0,2,-9,1,1,0,4,7.851461924291292,7.831488594536562,0,2,0,-9,2,0,-5,14.37639382904384,-9,1,0,32,2,5,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,6.077183281208952,6.077183281208952,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,3,1,939.5,0,0,0 +5797,7099,12885,12884,-9,-9,1,1,0,32,1,0,2,0,2,-9,1,1,0,5,8.145258816854476,7.870552933823536,5.733011489022951,2,0,-9,2,0,5,19.28796848195104,0,0,1,27,2,4,1,2,3,2019,1,4,12,1,16,18,15,1,1,1,0,22.82463165065847,22.82463165065847,0,0,0,0,0,0,0,1,1,0,5.486604493595937,0,0,0,36.02,51,6,1,0,0,9,3,1,939.5,0,0,0 +5798,7100,12886,12887,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,9.214511977151123,9.362981393859295,8.068405546019061,1,0,-9,9,0,2,24.95049898476754,0,0,0,57,3,5,3,-9,2,2019,2,2,9,0,30,48,15,1,0,4,0,38.0811428304317,38.0811428304317,0,0,0,0,0,0,0,1,1,0,0,8.414570782106825,0,0,52.23,55.6,6,1,0,0,2,5,1,1173,0,0,0 +5798,7100,12887,12886,-9,-9,2,1,0,57,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,9,0,-2,-11.45452860376288,0,0,0,59,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,2,5,1,1173,0,0,0 +5799,7101,12888,12889,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,4,9.802846994652569,9.550373007316969,0,1,0,-9,8,0,1,14.01389539704071,0,0,0,58,2,4,1,2,-9,2019,1,1,13,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.062783644057022,0,0,0,51.24,58.84,6,1,0,0,7,5,1,539.5,0,0,0 +5799,7101,12889,12888,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,9.074475468694462,9.330712568244582,0,1,0,-9,32,0,-1,20.9023907123029,0,0,0,59,2,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,30.39804404916867,30.39804404916867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,539.5,0,0,0 +5800,7102,12890,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,6.169608808915469,6.120639266055786,3,0,0,0,-9,0,-1072.210738985243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.743961410554675,5.929138767093587,0,0,54.45,45.49,2,1,0,0,6,2,1,111,0,0,0 +5801,7103,12891,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,2,8.249567403415215,8.327892557758314,0,1,0,-9,3,0,1,-28.05890776917402,0,0,0,-9,-9,-9,-9,2,1,2019,-9,2,14,2,23,20,15,1,2,-9,0,16.72543640390116,16.72543640390116,0,0,0,0,0,0,0,0,0,0,1.583945212640821,0,0,0,20.71,60.09,2,2,0,0,12,3,1,233,0,0,0 +5802,7104,12892,12893,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.458212640216136,8.502364443805664,0,1,0,-9,6,0,0,45.12103427596342,0,0,0,52,1,4,1,1,2,2019,1,2,7,1,42,0,15,1,1,1,0,14.45948566127531,14.45948566127531,0,0,0,0,0,0,0,0,0,0,8.249514450325687,0,0,0,55.19,54.26,6,1,0,0,7,5,1,1221.5,0,0,0 +5802,7104,12893,12892,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,9.790510966963272,9.857839177989684,0,1,0,-9,6,0,0,-74.61887439315829,0,0,0,52,2,4,1,2,1,2019,1,1,9,0,37,40,15,1,1,1,0,55.06359754271094,55.06359754271094,0,0,0,0,0,0,0,0,0,0,.8055429193090363,0,0,0,53,54,6,1,0,0,7,5,1,1221.5,0,0,0 +5802,7105,12894,-9,12892,12893,3,1,0,19,2,0,0,1,2,0,7,2,0,4,7.65769220397413,7.625342290648656,0,3,0,0,0,-9,0,-900.5771586874436,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,7,3,1,287,0,0,0 +5803,7106,12895,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,3,7.648042632955097,7.529944148948418,0,3,0,0,0,-9,0,-993.2502796218553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,35,35,15,1,12,-9,0,7.726617927159395,7.726617927159395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.19,54.22,2,1,0,0,12,3,0,703,0,0,0 +5804,7107,12896,12897,-9,-9,1,1,0,33,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,5,0,6,98.66154150602233,0,0,1,27,2,4,1,1,2,2019,3,3,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1328497467409701,0,11.62895614752236,3,57.33,53.46,6,1,0,0,12,5,0,1156.666666666667,0,0,0 +5804,7107,12897,12896,-9,-9,3,1,1,27,1,1,2,0,2,-9,1,1,0,4,9.666199004244096,9.589696288458553,0,2,0,-9,5,0,-6,-78.01849538188623,0,1,0,33,1,3,3,-9,-9,2019,2,1,10,0,60,84,15,1,1,3,0,31.20272141994064,31.20272141994064,0,0,0,0,0,0,0,1,1,0,6.700388305688751,0,0,0,50,57,5,1,0,0,12,5,0,1156.666666666667,0,0,0 +5804,7107,12898,-9,12896,12897,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.3150463301079,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,0,1156.666666666667,0,0,0 +5805,7108,12899,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,3,8.240480348978259,8.679138540882773,0,3,0,0,0,-9,0,-960.5649401655899,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,45,45,15,1,7,-9,0,14.36532105562041,14.36532105562041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.79,47.5,3,1,0,0,6,5,1,500,0,0,0 +5806,7109,12900,-9,12902,12901,3,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.705082121989,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,936.5,0,0,0 +5806,7109,12901,12902,-9,-9,1,1,1,32,1,2,2,0,2,-9,1,1,0,4,8.53677725445672,8.570479648916303,0,2,0,-9,4,0,7,-111.1284241823578,0,0,0,25,2,5,1,2,2,2019,1,2,7,0,60,80,15,1,0,1,0,11.75550832651074,11.75550832651074,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,0,10,4,1,936.5,0,0,0 +5806,7109,12902,12901,-9,-9,2,1,0,25,1,2,2,0,2,-9,2,1,0,5,7.255736999850217,7.101416321776793,3.039524721344052,2,0,-9,4,0,-7,93.38593653602125,0,1,1,32,2,4,1,-9,-9,2019,1,1,17,6,16,12,15,1,6,1,0,7.159124856067563,7.159124856067563,0,0,0,0,0,0,0,1,1,0,2.192256308908456,0,0,0,46.06,60.24,5,1,0,0,10,4,1,936.5,0,0,0 +5806,7109,12903,-9,12902,12901,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1013.11917982149,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,1,936.5,0,0,0 +5807,7110,12904,-9,12907,12905,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.859185115911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,2,1,584.5,0,0,0 +5807,7110,12905,12907,-9,-9,1,1,1,32,1,0,2,0,2,-9,2,1,0,1,7.231313620722471,7.365067487828648,0,2,0,-9,14,0,-1,-131.2064151286964,0,0,0,33,2,3,1,3,2,2019,1,2,9,0,30,45,15,1,0,1,0,5.964184503214567,5.964184503214567,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.2,47.33,5,3,0,0,2,2,1,584.5,0,0,0 +5807,7110,12906,-9,12907,12905,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.8194982077461,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,1,584.5,0,0,0 +5807,7110,12907,12905,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,3,6.430742069650055,6.275003935932031,0,2,0,-9,14,0,1,-45.13202200287139,0,0,1,32,2,1,1,3,2,2019,1,1,14,2,15,14,15,1,2,1,0,5.142039399607011,5.142039399607011,0,0,0,0,0,0,0,1,1,0,0,0,3.700654636045132,3,36.66,50.85,5,3,0,0,2,2,1,584.5,0,0,0 +5808,7111,12908,12909,-9,-9,2,1,0,66,1,0,0,0,1,-9,2,1,0,3,8.914981251865656,8.838522222003878,5.841789212536083,1,0,-9,4,0,2,-3.545930416546334,0,0,0,64,2,1,3,2,2,2019,2,1,8,0,60,50,15,1,0,3,0,12.29217454336478,12.29217454336478,0,0,0,0,0,0,0,1,1,0,0,6.570499642617812,0,0,51.41,56.15,5,1,0,0,12,5,1,510,0,0,0 +5808,7111,12909,12908,-9,-9,1,1,1,64,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,4,0,-2,32.03851662751124,0,0,0,66,1,3,1,-9,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.66,7.17,4,1,1,1,12,5,1,510,0,0,0 +5809,7112,12910,12911,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,5,8.824747539669918,9.091813986443798,0,1,0,-9,5,0,7,-53.16921135181503,0,0,0,26,2,5,1,2,2,2019,1,2,10,1,67,67,15,1,1,1,0,9.620367914659392,9.620367914659392,0,0,0,0,0,0,0,0,0,0,4.710000152312681,0,0,0,49.17,58.56,6,1,0,0,4,5,1,2217,0,0,0 +5809,7112,12911,12910,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,5,8.063612851389047,7.461773871808335,0,1,0,-9,5,0,-7,-140.484745771938,0,1,1,33,2,5,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,8.396092408541826,8.396092408541826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,4,5,1,2217,0,0,0 +5810,7113,12912,12913,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,3,6.740929771996767,6.35279544667987,0,1,0,-9,23,0,0,42.62285967461213,0,0,0,54,3,2,1,3,3,2019,1,2,9,0,15,12,15,1,0,1,0,5.735627927923697,5.735627927923697,0,0,0,0,0,0,0,0,0,0,2.891028127669762,0,0,0,51.88,57.24,7,1,0,0,2,4,1,674,0,0,0 +5810,7113,12913,12912,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,2,8.497548148423952,8.580572479662104,0,1,0,-9,26,0,0,-53.73591289808196,0,0,0,54,3,3,1,2,2,2019,1,1,13,1,45,47,15,1,1,1,0,14.12845137583276,14.12845137583276,0,0,0,0,0,0,0,0,0,0,2.624505126382265,0,0,0,44.83,41.9,5,1,0,0,2,4,1,674,0,0,0 +5811,7114,12914,12915,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,61,0,-3,-45.34634582371805,0,0,0,82,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,81.65373026481853,1,61.27,46.03,6,1,0,0,5,2,1,486.5,0,0,0 +5811,7114,12915,12914,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,6.63184167851537,6.284400108129011,1,0,-9,61,0,3,-21.49838190011661,0,0,0,79,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.219979247694666,6.727615794940839,0,0,54,46,6,1,0,0,5,2,1,486.5,0,0,0 +5812,7115,12916,-9,-9,-9,1,1,0,74,2,0,0,0,1,-9,4,3,0,4,0,7.545534934734451,7.759429477204352,3,0,0,0,-9,0,-819.2942126898713,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,4.809626319420623,0,0,0,5.585339242428185,0,1,1,0,0,7.523188977675463,0,0,58.85,29.84,5,1,0,0,13,3,1,681,0,0,0 +5813,7116,12917,12918,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,3,9.157161508937728,9.258017926305781,0,1,0,-9,7,0,-24,-82.36041538080555,0,0,1,66,2,3,3,2,1,2019,2,2,32,12,35,43,15,1,12,4,0,29.26569971825155,29.26569971825155,0,0,0,0,0,0,0,1,1,0,6.038720826549704,0,0,0,14.29,47.61,2,1,0,0,8,5,1,329,0,0,0 +5813,7116,12918,12917,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,4.051656962237834,4.162701582651827,1,0,-9,7,0,24,-47.89324664547762,0,0,0,42,2,3,1,2,2,2019,3,1,11,1,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.903284156239289,4.212222996048276,0,0,46.37,39.56,6,1,0,0,8,5,1,329,0,0,0 +5814,7117,12919,12920,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,6.595046354960425,6.379231018644527,1,0,-9,11,0,5,65.61409936049058,0,0,0,78,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.727824558057951,5.002356207737874,0,0,53.46,37.24,5,1,0,0,5,2,1,273.5,0,0,0 +5814,7117,12920,12919,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,60,0,-5,51.87102361027756,0,0,0,83,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52.92,41.8,6,1,0,0,5,2,1,273.5,0,0,0 +5814,7118,12921,-9,-9,-9,3,1,1,71,3,0,0,0,3,-9,4,3,0,3,0,7.088932777293721,7.512020764540005,3,0,0,0,-9,0,-1121.924389623646,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.737062753575744,7.255707188248384,0,0,52,48,5,5,0,0,5,3,1,935,0,0,0 +5815,7119,12922,12923,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,1,8.343346891972038,8.270912552496211,0,1,0,-9,10,0,-1,1.286205145513362,0,0,0,54,3,2,1,-9,-9,2019,1,2,14,3,41,35,15,1,3,1,0,12.59656788192939,12.59656788192939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.17,22.4,5,1,0,0,4,4,0,191.5,0,0,0 +5815,7119,12923,12922,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,2,6.221366743195894,6.348380082672377,0,1,0,-9,10,0,1,142.3853536147244,0,0,0,53,2,1,1,2,3,2019,1,1,16,4,10,10,15,1,4,1,0,6.338397466464728,6.338397466464728,0,0,0,0,0,0,0,1,1,0,0,0,22.17254789105463,2,28.55,50.85,5,1,0,0,4,4,0,191.5,0,0,0 +5815,7120,12924,-9,12922,12923,3,1,1,28,2,0,0,0,2,-9,2,1,0,3,7.642705396452856,8.00577545600064,0,3,0,0,0,-9,0,-957.3252829111319,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,33,15,1,0,-9,1,7.241403167537719,7.241403167537719,0,0,0,0,0,0,0,1,1,0,0,0,6.550943419358799,3,48.21,40,5,1,0,0,4,3,0,649,0,0,0 +5816,7121,12925,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,5.778543193693942,6.04342393744471,3,0,0,0,-9,0,-1132.582562016486,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.797730652918981,5.963464656718696,0,3,52,45,6,1,0,0,13,2,1,421,0,0,0 +5817,7122,12926,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,1,1,0,3,4.771256929270475,4.779055862868839,0,3,0,0,0,-9,0,-1014.766527991936,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,3,14,15,1,0,-9,0,4.889110315961075,4.889110315961075,0,0,0,0,0,0,0,1,1,0,6.724713041559509,0,0,0,49.52,56.95,6,1,0,0,12,2,1,372,0,0,0 +5818,7123,12927,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,7.225475777093313,7.09573707518011,0,3,0,0,0,-9,0,-919.8067117657231,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,20,15,1,0,-9,0,8.092871941776259,8.092871941776259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,2,3,0,788,0,0,0 +5818,7124,12928,-9,12927,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.010823506402099,8.218495688110377,0,3,0,0,0,-9,0,-865.9720784042337,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,25,0,15,1,0,-9,1,11.74759720754337,11.74759720754337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,0,1456,0,0,0 +5819,7125,12929,12930,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,3,8.783790076025991,9.182681584444239,0,1,0,-9,3,0,5,-168.8486813106848,0,0,0,26,2,4,1,2,2,2019,1,2,13,3,40,45,15,1,3,1,0,18.29252172992591,18.29252172992591,0,0,0,0,0,0,0,0,0,0,3.860062441087478,0,0,0,45.16,38.85,5,1,0,0,9,5,1,2833,0,0,0 +5819,7125,12930,12929,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,4,8.267183926551704,8.276532489041792,0,1,0,-9,3,0,-5,24.56532509215062,0,1,1,31,2,3,1,-9,-9,2019,1,1,7,0,43,45,15,1,0,1,0,11.75468694658989,11.75468694658989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,7,1,0,0,9,5,1,2833,0,0,0 +5820,7126,12931,-9,12934,12933,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.2881379493396,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,639.25,0,0,0 +5820,7126,12932,-9,12934,12933,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.7871004061068,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,5,1,639.25,0,0,0 +5820,7126,12933,12934,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,3,8.412834370759452,8.598802108558329,0,2,0,-9,8,0,-1,-120.9474090727606,0,0,0,42,2,5,1,2,3,2019,1,2,7,0,38,38,15,1,0,1,0,15.60307381617285,15.60307381617285,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,5,1,639.25,0,0,0 +5820,7126,12934,12933,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,5,8.711857097766764,8.56590640849323,0,2,0,-9,8,0,1,-5.23689766215429,0,0,1,41,1,3,1,-9,-9,2019,1,1,4,0,38,37,15,1,0,1,0,19.5150861813655,19.5150861813655,0,0,0,0,0,0,0,1,1,0,8.353131911685773,0,0,0,57.06,57.76,7,1,0,0,9,5,1,639.25,0,0,0 +5821,7127,12935,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,6.10536585362569,5.68796334183327,3,0,0,0,-9,0,-890.1252512565004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,1,4.883077961662419,0,0,2.332127212121565,0,26.16675207528005,1,1,0,5.016982375209762,5.390607979876567,0,0,37.16,40.23,5,1,0,0,5,2,1,97,0,0,0 +5822,7128,12936,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.337779827381167,8.277089894134663,0,3,0,0,0,-9,0,-977.7041662114476,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,40,16,15,1,3,-9,0,13.02916997743998,13.02916997743998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.49,64.26000000000001,6,1,0,0,12,4,0,1385,0,0,0 +5823,7129,12937,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-903.0173554813024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,14.19,6,1,0,1,1,1,0,417,0,0,0 +5824,7130,12938,12939,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,8.757022205556972,9.028049205093399,1,0,-9,10,0,1,-.2490768226925018,0,0,0,73,2,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.260966091829566,9.098547021782753,0,0,60.12,54.8,6,1,0,0,9,5,1,1762,0,0,0 +5824,7130,12939,12938,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,7.110905638915161,7.009905835234377,1,0,-9,10,0,-1,158.9893512660296,0,0,0,74,1,4,3,2,2,2019,4,1,21,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.862380962412107,7.248763773421036,0,0,49.29,54.59,3,1,0,0,9,5,1,1762,0,0,0 +5825,7131,12940,12941,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,2,9.820116078940851,9.391773775161813,0,1,0,-9,37,0,-1,-46.92866799722042,0,0,0,60,1,5,3,2,2,2019,2,2,13,2,35,35,15,1,2,4,0,58.49146766827513,58.49146766827513,0,0,0,0,0,0,0,0,0,0,8.709660985112714,0,0,0,49.28,52.09,6,1,0,0,10,5,1,417,0,0,0 +5825,7131,12941,12940,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,5,0,8.325682924223688,8.065007286107583,1,0,-9,37,0,1,-119.0135157663859,0,0,0,59,2,2,1,-9,-9,2019,3,1,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.549006353888656,8.514960848767172,0,0,56.47,51.37,7,1,0,0,10,5,1,417,0,0,0 +5826,7132,12942,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-1037.968175248348,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.847096637302212,0,0,0,47.84,26.77,4,1,0,0,5,1,1,670,0,0,0 +5827,7133,12943,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,3,0,7.226930465117221,7.28962544527136,3,0,0,0,-9,0,-1040.331588757883,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.24552974437659,7.36182605864273,0,0,37.92,53.03,5,1,0,0,9,2,1,510,0,0,0 +5828,7134,12944,-9,12946,12950,3,1,1,12,2,1,7,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1051.241104435366,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,4,2,1,521,0,0,0 +5828,7134,12945,-9,12946,12950,5,1,0,6,2,1,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1169.227531103116,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,521,0,0,0 +5828,7134,12946,12950,-9,-9,2,1,0,31,1,1,7,0,2,-9,6,3,0,5,0,0,0,2,0,-9,8,0,-12,-168.824107358413,0,0,1,43,1,3,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,3,0,0,4,2,1,521,0,0,0 +5828,7134,12947,-9,12946,12950,4,1,1,7,2,1,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.0459489183794,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,2,1,521,0,0,0 +5828,7134,12948,-9,12946,12950,6,1,0,4,2,1,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.6026484446425,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,4,2,1,521,0,0,0 +5828,7134,12949,-9,12946,12950,9,1,0,1,2,1,7,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.705275545896,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,2,1,521,0,0,0 +5828,7134,12950,12946,-9,-9,1,1,1,43,1,1,7,0,1,-9,2,1,0,3,8.326083744570161,8.121429128575089,0,2,0,-9,11,0,12,-56.07168501865374,0,0,0,31,2,5,3,2,3,2019,2,2,10,0,23,37,15,1,0,3,0,20.12202950127735,20.12202950127735,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.69,58.7,5,3,0,0,4,2,1,521,0,0,0 +5828,7135,12951,-9,12946,12950,7,1,0,18,2,1,7,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1003.401174027863,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,1,0,4,2,1,295,0,0,0 +5829,7136,12952,12953,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,4,8.793481079771935,8.922317425808179,0,1,0,-9,24,0,1,3.179482126749201,0,0,0,57,1,3,3,2,1,2019,2,2,10,3,76,42,15,1,3,3,0,11.22269163226223,11.22269163226223,0,0,0,0,0,0,0,0,0,0,4.884731598890916,0,0,0,56.77,52.22,6,1,0,0,7,5,1,583.5,0,0,0 +5829,7136,12953,12952,-9,-9,2,1,0,57,1,0,0,0,1,-9,6,3,0,3,0,6.091314259595105,6.27553075220511,1,0,-9,24,0,-1,94.18057233910697,0,0,0,58,1,4,1,2,2,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.281211813039053,0,0,0,51.81,46.52,6,1,0,0,7,5,1,583.5,0,0,0 +5830,7137,12954,12955,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,3,8.143703915123169,8.109611358939384,0,2,0,-9,26,0,-1,-76.26790838177612,0,0,0,49,1,5,1,2,1,2019,1,2,11,0,40,20,15,1,0,1,0,9.66354226156307,9.66354226156307,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.63,51.79,5,2,0,0,9,5,1,1376,0,0,0 +5830,7137,12955,12954,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,5,8.527538355326554,8.628348679961729,0,2,0,-9,26,0,1,105.7830035448628,0,0,0,48,1,3,1,2,1,2019,1,1,4,1,30,32,15,1,1,1,0,25.63440764920791,25.63440764920791,0,0,0,0,0,0,0,1,1,0,8.618959415851334,0,0,0,54.63,58.83,6,1,0,0,9,5,1,1376,0,0,0 +5831,7138,12956,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,4,6.722062096085815,6.594720274470898,0,4,0,0,0,-9,0,-947.3857886869985,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,12,12,15,1,0,-9,0,7.330298005964534,7.330298005964534,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,2,0,228,0,0,0 +5832,7139,12957,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,5.733071688921302,5.857210026966256,3,0,0,0,-9,0,-1003.057509880663,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.069570609768635,5.475968802355497,0,0,59.64,35.9,6,1,0,0,9,2,1,168,0,0,0 +5833,7140,12958,12959,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,3,6.854638420889446,6.800132880745191,0,1,0,-9,9,0,-1,64.65210049180881,0,0,0,69,2,2,3,3,3,2019,2,2,10,0,35,37,15,1,0,4,0,2.909110920118255,2.909110920118255,0,0,0,0,0,0,0,1,1,0,5.550128564171573,0,0,0,57.33,53.46,6,1,0,0,13,2,1,405.5,0,0,0 +5833,7140,12959,12958,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,1,-58.69285141886437,0,0,0,68,3,3,1,3,3,2019,3,1,13,2,0,24,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.59,25.39,3,1,0,0,13,2,1,405.5,0,0,0 +5834,7141,12960,12961,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,5,8.253811492856403,8.162857610225302,0,1,0,-9,4,0,-1,59.36128245794659,0,0,0,46,2,3,1,-9,-9,2019,1,1,22,10,38,38,15,1,10,1,0,9.641899538901619,9.641899538901619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.99,64.14,2,1,0,0,5,4,1,376,0,0,0 +5834,7141,12961,12960,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,3,8.191978474263092,8.051338771745989,0,1,0,-9,4,0,1,-37.05120981438583,0,0,0,45,1,5,1,2,2,2019,1,2,24,11,42,40,15,1,11,1,0,8.934373346123902,8.934373346123902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.38,40.32,3,1,0,0,5,4,1,376,0,0,0 +5835,7142,12962,12963,-9,-9,1,1,0,50,1,0,2,0,1,-9,6,3,0,4,6.898845988775117,6.872124211155255,0,2,0,-9,9,0,-3,-53.41704194400387,0,0,0,53,1,5,1,1,1,2019,3,2,12,0,5,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,64.19,6,1,0,0,11,4,1,594.25,0,0,0 +5835,7142,12963,12962,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,5,9.171943404822187,9.406805623656084,0,2,0,-9,9,0,3,-71.40007454140746,0,0,0,50,1,4,3,2,3,2019,2,1,6,0,33,34,15,1,0,3,0,25.87633112553722,25.87633112553722,0,0,0,0,0,0,0,1,1,0,5.053972107189936,0,0,0,57.06,57.76,6,1,0,0,11,4,1,594.25,0,0,0 +5835,7142,12964,-9,12962,12963,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.868997707851,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,594.25,0,0,0 +5835,7142,12965,-9,12962,12963,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.164510601513,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,11,4,1,594.25,0,0,0 +5836,7143,12966,-9,12967,12968,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-804.9788548925219,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,469,0,0,0 +5836,7143,12967,12968,-9,-9,1,1,0,42,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,14,0,-1,-40.1258681052438,0,0,1,43,1,4,1,2,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,7,1,0,0,2,4,1,469,0,0,0 +5836,7143,12968,12967,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,4,9.229135305618756,8.915813507570819,0,2,0,-9,14,0,1,-1.661920781960649,0,0,0,42,2,5,3,-9,-9,2019,2,1,10,0,50,70,15,1,0,3,0,16.19986927347194,16.19986927347194,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,2,4,1,469,0,0,0 +5836,7143,12969,-9,12967,12968,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.416437660266,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,469,0,0,0 +5836,7143,12970,-9,12967,12968,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-781.1972929893483,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,469,0,0,0 +5837,7144,12971,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.263380764863059,5.10928323402078,3,0,0,0,-9,0,-996.6246973508623,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.958975084739127,5.48485176240244,0,0,37.92,42.5,4,1,0,0,9,2,1,323,0,0,0 +5838,7145,12972,-9,12975,12974,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.5522342613565,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,8,5,1,1180.5,0,0,0 +5838,7145,12973,-9,12975,12974,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.08901263072,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,8,5,1,1180.5,0,0,0 +5838,7145,12974,12975,-9,-9,1,1,1,34,1,1,2,0,1,-9,2,1,0,5,9.682699230487218,9.556514577882846,0,2,0,-9,14,0,-1,53.35909700785883,0,0,0,35,1,4,1,2,2,2019,1,2,9,0,50,45,15,1,0,1,0,34.23812917383862,34.23812917383862,0,0,0,0,0,0,0,0,0,0,1.679121170958027,0,0,0,54.69,57.47,6,1,0,0,8,5,1,1180.5,0,0,0 +5838,7145,12975,12974,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,4,9.195885676740394,9.354127009810371,0,2,0,-9,14,0,1,64.37055254974379,0,0,1,34,1,5,1,3,1,2019,1,1,12,0,32,25,15,1,0,1,0,34.15758458130701,34.15758458130701,0,0,0,0,0,0,0,0,0,0,1.329478611424834,0,0,0,42.82,51.87,6,1,0,0,8,5,1,1180.5,0,0,0 +5839,7146,12976,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,2,0,6.706620452964441,6.678352003495497,3,0,0,0,-9,0,-1060.082025994362,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.516716269598257,0,0,45.47,23.9,5,2,0,0,8,2,1,1731,0,0,0 +5839,7147,12977,-9,12976,-9,2,1,0,21,2,0,0,0,2,1,2,1,0,3,7.117587153716208,7.320098397265363,4.014466602412528,3,0,0,0,-9,0,-1086.096023168489,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,16,0,15,1,1,-9,1,10.25792234374575,10.25792234374575,0,0,0,0,0,0,0,1,1,0,3.825346937202921,4.021215745172175,0,0,54.37,54.8,5,2,0,0,8,3,1,107,0,0,0 +5840,7148,12978,-9,-9,-9,1,1,0,64,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-926.277842169198,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.52,30.57,3,1,0,1,9,1,1,159,0,0,0 +5841,7149,12979,12982,-9,-9,1,1,0,41,1,1,2,0,1,-9,2,1,0,3,8.252273807904215,8.33173103168628,0,2,0,-9,6,0,7,179.5678830918982,0,0,1,34,2,4,1,2,3,2019,1,2,21,8,25,49,15,1,8,1,0,15.4306306510934,15.4306306510934,0,0,0,0,0,0,0,1,1,0,3.07934609130933,0,0,0,37.11,55.92,5,1,0,0,7,4,1,750.25,0,0,0 +5841,7149,12980,-9,12979,12982,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.044898287604,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,750.25,0,0,0 +5841,7149,12981,-9,12979,12982,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.129720600042,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,750.25,0,0,0 +5841,7149,12982,12979,-9,-9,2,1,1,34,1,1,2,0,2,-9,1,1,0,4,8.09429688988839,8.38101773879022,0,2,0,-9,6,0,-7,-9.673127345286668,0,0,0,41,1,3,1,-9,-9,2019,1,1,7,0,55,60,15,1,0,1,0,7.783827852122188,7.783827852122188,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,7,4,1,750.25,0,0,0 +5842,7150,12983,-9,12985,12984,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-918.5529944057677,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,2,0,0,5,5,1,549,0,0,0 +5842,7150,12984,12985,-9,-9,1,1,1,41,1,1,1,0,2,-9,2,1,0,4,9.144538015425599,9.110397379113373,0,2,0,-9,2,0,10,-1.408837398507933,0,0,0,31,1,5,1,1,1,2019,1,2,13,1,40,46,15,1,1,1,0,29.40914049260842,29.40914049260842,0,0,0,0,0,0,0,0,0,0,5.04362116963158,0,0,0,48.87,58.55,7,5,0,0,5,5,1,549,0,0,0 +5842,7150,12985,12984,-9,-9,2,1,0,31,1,1,1,0,1,-9,5,1,0,5,7.966512367872524,8.169292077472141,0,2,0,-9,2,0,-10,7.610982730888455,-9,0,1,41,2,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,9.253436119175396,9.253436119175396,0,0,0,0,0,0,0,0,0,0,4.836396271669577,0,0,0,57.06,57.76,7,2,0,0,5,5,1,549,0,0,0 +5843,7151,12986,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,2,0,6.717572903837937,6.953035518358702,3,0,-9,0,1,0,-908.4163626637111,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.577881948734142,7.158650194640789,10.19682062332596,3,38.39,40.89,4,1,0,0,7,2,1,626,0,0,0 +5844,7152,12987,12988,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,1,8.502104699654753,8.544278100028356,0,1,0,-9,10,0,3,-70.89258974685021,0,0,0,53,2,2,1,3,3,2019,1,2,13,1,53,13,15,1,1,1,0,13.3816963692762,13.3816963692762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,26.53,4,1,0,0,13,4,0,989,0,0,0 +5844,7152,12988,12987,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.065153747402281,7.079787661947311,0,1,0,-9,10,0,-3,109.6246556321914,0,0,0,56,2,1,1,3,3,2019,1,1,12,0,4,5,15,1,0,1,0,42.45168654349413,42.45168654349413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.58,41.3,4,1,0,0,13,4,0,989,0,0,0 +5844,7153,12989,-9,12988,12987,3,1,0,34,2,0,0,0,1,-9,2,1,0,3,8.201649802490444,8.439401025843091,0,3,0,0,0,-9,0,-1156.548759143872,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,36,15,1,0,-9,1,15.46341043529502,15.46341043529502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,13,4,0,852,0,0,0 +5844,7154,12990,-9,12988,12987,4,1,1,29,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-955.5502872584339,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,6,1,1,0,13,1,0,133,0,0,0 +5845,7155,12991,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.308107926708914,6.922161881760032,0,3,0,0,0,-9,0,-1034.372229823967,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,20,22,15,1,2,-9,0,9.078307652086835,9.078307652086835,0,0,0,0,0,0,0,1,1,0,.8611527245605546,0,0,0,40.32,56.92,5,1,0,0,10,3,0,815,0,0,0 +5846,7156,12992,12995,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,9.572424764105532,9.389670337765915,0,2,0,-9,8,0,-2,98.50215509676939,0,0,1,43,1,5,1,1,1,2019,1,2,11,0,35,30,15,1,0,1,0,39.01441480559062,39.01441480559062,0,0,0,0,0,0,0,1,1,0,6.943870641559322,0,0,0,57.06,57.76,7,1,0,0,4,5,1,329,0,0,0 +5846,7156,12993,-9,12992,12995,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.846336154887,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,329,0,0,0 +5846,7156,12994,-9,12992,12995,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.129455661836,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,329,0,0,0 +5846,7156,12995,12992,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,5,7.200807540314962,7.198220459760928,0,2,0,-9,8,0,2,-12.67213045524835,0,0,0,41,1,5,1,1,1,2019,1,1,10,1,15,40,15,1,1,1,0,8.112197306454958,8.112197306454958,0,0,0,0,0,0,0,1,1,0,5.775962054761705,0,0,0,51.14,60.45,6,1,0,0,4,5,1,329,0,0,0 +5847,7157,12996,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,3,3.32009155653491,3.492010590491812,0,3,0,0,0,-9,0,-1102.158026423241,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.666756267322433,0,0,0,54.37,54.8,5,1,0,0,5,2,0,1466,0,0,0 +5848,7158,12997,12998,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,11,0,-1,0,0,0,0,69,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,5,1,0,0,10,1,1,402.5,0,0,0 +5848,7158,12998,12997,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,40,0,1,0,0,0,0,68,2,2,3,3,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.03,47.48,3,1,0,0,10,1,1,402.5,0,0,0 +5849,7159,12999,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,3,8.486895597477664,8.495785870214529,0,3,0,0,0,-9,0,-916.1797611308971,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,40,15,1,0,-9,0,17.8452780661925,17.8452780661925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,48.71,4,1,0,0,10,5,1,591,0,0,0 +5850,7160,13000,13001,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,5,0,6.605472528227838,6.615192299779285,1,0,-9,6,0,-4,-22.24777551340558,0,0,0,66,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.200077665964485,6.495769083312248,0,0,59.04,48.59,1,1,0,0,12,4,1,186,0,0,0 +5850,7160,13001,13000,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,8.192989792581788,8.343779087411543,1,0,-9,6,0,4,-5.457129777434393,0,0,0,62,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.712414976233787,7.783577130099514,0,0,54.2,57.49,7,1,0,0,12,4,1,186,0,0,0 +5851,7161,13002,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,7.153606584438804,6.967145089146595,3,0,0,0,-9,0,-916.1377780275205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,9.180909395809405,0,0,0,3.788389114506284,54.97482554311964,1,1,0,3.860284301958028,7.056947464443006,0,0,52,45,6,1,0,0,11,2,1,537,0,0,0 +5852,7162,13003,13005,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,4,7.676428131004961,8.302080438816246,0,2,0,-9,16,0,-1,-113.6596514542881,0,0,1,44,2,4,1,2,2,2019,1,1,1,0,23,23,15,1,0,1,0,14.65598047331032,14.65598047331032,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,974.3333333333334,0,0,0 +5852,7162,13004,-9,13003,13005,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.1626970471856,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,974.3333333333334,0,0,0 +5852,7162,13005,13003,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.014064152410636,8.082061070095547,0,2,0,-9,17,0,1,45.96159855980733,0,0,0,43,1,4,1,2,2,2019,1,2,10,0,38,40,15,1,0,1,0,9.277015444275607,9.277015444275607,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,44.22,6,1,0,0,9,4,1,974.3333333333334,0,0,0 +5852,7163,13006,-9,-9,-9,4,1,1,49,2,0,1,0,2,-9,2,1,0,4,8.53850222875222,8.731650987135705,0,4,0,0,0,-9,0,-965.1885194244103,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,42,15,1,1,-9,0,14.43914785188207,14.43914785188207,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,5,0,0,9,4,1,2651,0,0,0 +5853,7164,13007,13008,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,11,0,9,-9.392692139502348,0,0,0,70,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.141411876682771,0,0,0,51,46,5,1,0,0,10,2,1,1394.5,0,0,0 +5853,7164,13008,13007,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,7.289832095682356,7.480240461587129,1,0,-9,11,0,0,-38.27326466930823,0,0,0,79,3,3,3,1,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.205651735720658,7.573172435971265,0,0,57.27,54.82,7,1,0,0,10,2,1,1394.5,0,0,0 +5854,7165,13009,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,1,0,7.531873346404846,7.47734168825543,3,0,0,0,-9,0,-1070.362640367955,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,7.534387337259517,0,1,1,0,0,7.305863420073297,0,0,35.53,19.08,6,1,0,0,9,3,1,1043,0,0,0 +5855,7166,13010,13011,-9,-9,1,1,1,53,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,10,0,-7,0,0,0,0,60,2,2,3,2,2,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.68531515758745,3,32.93,24.58,4,1,0,0,11,1,0,1152,0,0,0 +5855,7166,13011,13010,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,10,0,7,0,0,0,0,53,2,1,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.7,34.03,5,1,0,0,11,1,0,1152,0,0,0 +5856,7167,13012,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,8.021350249029867,8.191159112229247,3,0,0,0,-9,0,-1013.81815039995,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.344283845854231,7.913471112747449,0,0,57.33,53.46,6,4,0,0,8,4,1,648,0,0,0 +5857,7168,13013,13014,-9,-9,2,1,0,53,1,0,0,0,2,-9,1,1,0,4,7.588736045174979,7.621419258347088,0,1,0,-9,7,0,0,82.66011843878562,0,0,0,53,2,4,1,-9,-9,2019,1,1,17,5,37,21,15,1,5,1,0,7.85770982460398,7.85770982460398,0,0,0,0,0,0,0,0,0,0,3.206151917653825,0,0,0,30.32,59.62,4,1,0,0,11,5,1,687.5,0,0,0 +5857,7168,13014,13013,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.93188192627637,9.67804259464072,0,1,0,-9,7,0,0,-47.01184471519488,0,0,0,53,2,4,1,3,2,2019,1,2,9,0,40,45,15,1,0,1,0,49.00608670675404,49.00608670675404,0,0,0,0,0,0,0,0,0,0,4.283832926837412,0,0,0,57.16,56.15,6,1,0,0,11,5,1,687.5,0,0,0 +5857,7169,13015,-9,13013,13014,3,1,1,25,2,0,0,0,1,-9,1,1,0,4,8.906959353857394,9.225014735008452,0,3,0,0,0,-9,0,-841.7395740003785,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,60,15,1,0,-9,1,16.07244719444631,16.07244719444631,0,0,0,0,0,0,0,0,0,0,7.687113999360565,0,0,0,60.12,54.8,6,1,0,0,11,5,1,458,0,0,0 +5858,7170,13016,-9,13018,13017,6,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.243652039299,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,2,0,0,4,1,1,547.6666666666666,0,0,0 +5858,7170,13017,13018,-9,-9,2,1,1,47,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,31,0,0,0,0,0,0,47,3,3,3,3,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,3,1,0,4,1,1,547.6666666666666,0,0,0 +5858,7170,13018,13017,-9,-9,1,1,0,47,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,31,0,0,0,0,0,0,47,3,4,3,3,3,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,3,0,0,4,1,1,547.6666666666666,0,0,0 +5858,7171,13019,-9,13018,13017,3,1,1,24,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-934.6965118847914,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.78,54.5,4,3,1,1,4,1,1,864,0,0,0 +5858,7172,13020,-9,13018,13017,4,1,1,23,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1021.56993420241,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,33,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.45,37.37,2,3,1,0,4,1,1,1310,0,0,0 +5858,7173,13021,-9,13018,13017,5,1,0,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1058.961913249028,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.78,55.1,5,3,0,0,4,1,1,559,0,0,0 +5859,7174,13022,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,3,0,8.06292842813537,8.21225153956768,3,0,-9,0,1,0,-901.3487495631332,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.109277790774502,8.055557778919219,0,0,54.03,34.37,6,1,0,0,2,4,1,736,0,0,0 +5860,7175,13023,13024,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,10.26311121780617,9.988090622464664,0,1,0,-9,32,0,5,-26.90987021955442,0,0,0,52,1,5,1,2,2,2019,1,1,7,0,44,40,15,1,0,1,0,63.07884958874663,63.07884958874663,0,0,0,0,0,0,0,1,0,1,9.66470927778118,0,0,0,53.78,56.44,3,1,0,0,6,5,1,430.5,0,0,0 +5860,7175,13024,13023,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,5,7.621189523293837,7.192865397906334,0,1,0,-9,32,0,-5,31.04017732346776,0,0,0,57,1,3,1,2,2,2019,1,2,7,0,24,24,15,1,0,1,0,9.161351561840036,9.161351561840036,0,0,0,0,0,0,0,1,0,1,7.393466309425649,0,22.51585019600554,3,57.06,57.76,7,1,0,0,6,5,1,430.5,0,0,0 +5860,7176,13025,-9,13024,13023,3,1,1,23,2,0,0,0,2,-9,97,3,0,5,0,0,0,3,0,0,0,-9,0,-1004.941666396485,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.67,60.18,6,1,0,0,6,1,1,909,0,0,0 +5860,7177,13026,-9,13024,13023,4,1,0,21,2,0,0,0,2,-9,7,2,0,4,7.640481680590107,7.679723935336963,0,3,0,0,0,-9,0,-945.0012629559893,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,28,25,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.37,56.93,6,1,0,0,6,3,1,1210,0,0,0 +5860,7178,13027,-9,13024,13023,5,1,0,18,2,0,0,1,2,0,7,2,0,5,6.551287492397467,6.336122242843551,0,3,0,0,0,-9,0,-1084.779406764819,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,6,1,0,0,6,2,1,932,0,0,0 +5861,7179,13028,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,2,1,0,3,8.226494017690731,8.037834185068066,0,3,0,0,0,-9,0,-864.8005890479242,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,38,38,15,1,0,-9,0,8.344173551911794,8.344173551911794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.26,42.16,4,2,0,0,1,4,1,1197,0,0,0 +5862,7180,13029,-9,13030,13032,3,1,1,16,2,0,2,0,2,-9,11,2,0,5,5.603161264969389,5.232860103608503,0,2,0,0,0,-9,0,-973.7784143461835,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,6,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.45,58.64,5,1,0,0,9,2,1,377.75,0,0,0 +5862,7180,13030,13032,-9,-9,2,1,0,42,1,0,2,0,2,-9,1,1,0,4,7.690037555218153,7.884693160719003,0,2,0,-9,19,0,-7,-94.25435227897685,0,0,1,49,3,2,1,2,2,2019,1,1,7,0,40,46,15,1,0,1,0,6.483246022459255,6.483246022459255,0,0,0,0,0,0,0,1,1,0,1.26782949288199,0,0,0,54.79,55.86,6,1,0,0,9,2,1,377.75,0,0,0 +5862,7180,13031,-9,13030,13032,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1009.171889756375,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,9,2,1,377.75,0,0,0 +5862,7180,13032,13030,-9,-9,1,1,1,49,1,0,2,0,3,-9,1,1,0,2,6.882930799055252,6.799307302424088,0,2,0,-9,19,0,7,-26.51326612683764,0,0,0,42,2,4,1,3,2,2019,1,2,9,0,40,38,15,1,0,1,0,2.364393239094127,2.364393239094127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,2,1,0,0,9,2,1,377.75,0,0,0 +5863,7181,13033,13034,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,5.296096528780466,5.24985476165692,1,0,-9,7,0,-2,-70.09142569979012,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.207576157539215,0,0,54.19,14.81,7,1,0,0,12,2,0,1609.5,0,0,0 +5863,7181,13034,13033,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,2,-8.101621432977767,0,0,0,67,2,2,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.11572710566139,1,42.94,48.37,5,1,0,0,12,2,0,1609.5,0,0,0 +5864,7182,13035,13036,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,8.961692783400965,8.69749822093241,0,2,0,-9,14,0,8,-22.7380587386714,0,0,0,32,2,4,1,1,2,2019,1,2,10,0,45,62,15,1,1,1,0,20.2826654114739,20.2826654114739,0,0,0,0,0,0,0,1,1,0,6.955464329182937,0,0,0,51,56,5,1,0,0,2,4,1,922.5,0,0,0 +5864,7182,13036,13035,-9,-9,2,1,0,32,1,0,2,0,2,-9,2,1,0,4,5.926885045263991,5.951198859792378,0,2,0,-9,16,0,-8,40.06972306929573,0,0,1,40,1,4,1,2,2,2019,1,1,6,0,8,0,15,1,0,1,0,6.663916227320525,6.663916227320525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,2,4,1,922.5,0,0,0 +5864,7182,13037,-9,13036,13035,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.911757501212,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,922.5,0,0,0 +5864,7182,13038,-9,13036,13035,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.263734626719,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,922.5,0,0,0 +5865,7183,13039,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-999.7108187908979,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.3,44.41,7,1,0,0,8,1,0,1187,0,0,0 +5866,7184,13040,-9,-9,-9,1,1,1,82,2,0,0,0,2,-9,4,3,0,3,0,8.565884325462795,8.691509261964059,3,0,0,0,-9,0,-1031.564101464162,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,9.060330802254342,8.505269951428394,0,0,53.67,51.01,6,1,0,0,6,5,1,660,0,0,0 +5867,7185,13041,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,6.865949360333193,6.520639171380294,3,0,0,0,-9,0,-924.8228468920058,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.814508842438057,6.830808098978349,2.758619021166527,3,54.22,39.67,5,1,0,0,7,2,0,1132,0,0,0 +5868,7186,13042,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,7.269533617445286,7.654088106220521,3,0,0,0,-9,0,-996.0444330101049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.548393315790697,7.701788377507906,0,3,55.46,31.87,6,1,0,0,2,3,1,962,0,0,0 +5869,7187,13043,-9,13046,13044,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.521916226385,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,3,0,422.5,0,0,0 +5869,7187,13044,13046,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,3,7.761587115570257,8.228846362230577,0,2,0,-9,5,0,0,-67.53631641115152,0,0,0,34,2,3,3,2,2,2019,2,2,15,3,42,37,15,1,3,3,0,6.528741322897558,6.528741322897558,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,40.8,3,1,0,1,2,3,0,422.5,0,0,0 +5869,7187,13045,-9,13046,13044,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.249092501439,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,0,422.5,0,0,0 +5869,7187,13046,13044,-9,-9,2,1,0,34,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,5,0,0,-40.01307871600395,0,0,1,34,2,3,1,-9,-9,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.91,51.65,2,1,0,0,2,3,0,422.5,0,0,0 +5870,7188,13047,-9,13049,13048,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-992.7499568933277,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,3,0,319.4,0,0,0 +5870,7188,13048,13049,-9,-9,3,1,1,31,1,1,4,0,2,-9,2,1,0,5,8.230889224924423,8.520250994471153,0,2,0,-9,9,0,2,-41.56943152004492,0,0,0,29,2,4,3,-9,-9,2019,2,1,11,0,45,47,15,1,0,3,0,13.48199525476413,13.48199525476413,0,0,0,0,0,0,0,1,1,0,.6641997137041737,0,0,0,57.06,57.76,4,1,0,1,11,3,0,319.4,0,0,0 +5870,7188,13049,13048,-9,-9,1,1,0,29,1,1,4,0,2,-9,3,3,0,4,0,0,0,2,0,-9,9,0,-2,13.16833048475191,0,1,1,31,2,5,1,-9,-9,2019,3,3,14,3,0,29,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.74,63,4,1,1,1,11,3,0,319.4,0,0,0 +5870,7188,13050,-9,13049,13048,5,1,1,5,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.0057525503444,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,0,319.4,0,0,0 +5870,7188,13051,-9,13049,13048,4,1,1,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.4487690400231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,0,319.4,0,0,0 +5871,7189,13052,13053,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,59,0,2,-104.5942390235748,0,0,0,77,3,3,3,3,3,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,1,0,20.74243257935972,0,0,0,0,1,1,0,0,0,0,0,38.39,40.89,5,1,0,0,2,2,1,184,0,0,0 +5871,7189,13053,13052,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,6.917205299563999,6.622509410243683,1,0,-9,59,0,-2,163.5350039099008,0,0,0,79,3,2,3,-9,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.663483494084671,12.58671595585924,1,63.83,43.62,7,1,0,0,2,2,1,184,0,0,0 +5872,7190,13054,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,4,8.235291559629458,7.909107956512544,0,3,0,0,0,-9,0,-988.2348775288696,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,40,40,15,1,0,-9,0,8.470286170091407,8.470286170091407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.18,34.96,7,4,0,0,4,4,0,340,0,0,0 +5872,7191,13055,-9,13054,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1092.02899905353,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.12,57.34,5,2,0,0,4,1,0,482,0,0,0 +5873,7192,13056,13057,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,2,0,6.842399642203935,7.211963584379648,1,0,1,1,-9,3,-124.9135515589397,0,0,0,81,2,3,3,3,3,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,1,0,6.278039611324764,0,0,0,0,1,1,0,0,7.140034319126165,0,0,48,35,6,1,0,0,4,3,1,1155,0,0,0 +5873,7192,13057,13056,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,6.715686707821314,6.838770587412101,1,0,1,1,-9,-3,76.54916665159963,0,0,0,84,2,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.423917257330065,0,0,58.08,43.46,6,1,0,0,4,3,1,1155,0,0,0 +5874,7193,13058,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,3,8.236650499313455,7.82122344453753,0,3,0,0,0,-9,0,-879.9715260112548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,39,15,1,0,-9,0,10.12530736568839,10.12530736568839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,6,1,0,0,12,4,1,2721,0,0,0 +5874,7194,13059,-9,13058,-9,2,1,1,19,2,0,0,0,2,1,2,1,0,3,7.589533577245331,7.74617254414875,0,3,0,0,0,-9,0,-854.1718015468289,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,35,0,15,1,0,-9,1,6.805012232923628,6.805012232923628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,58.63,4,1,0,0,12,3,1,394,0,0,0 +5875,7195,13060,13061,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.747702588752981,8.759426756384173,0,1,0,-9,6,0,1,-113.0983282317045,0,0,0,56,2,2,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,19.51890798604407,19.51890798604407,0,0,0,0,0,0,0,0,0,0,1.25614183522507,0,0,0,54,53,6,1,0,0,9,5,1,642.5,0,0,0 +5875,7195,13061,13060,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,2,8.093476316372092,8.219920804910389,0,1,0,-9,38,0,-1,-61.09181584149454,0,0,0,57,2,4,1,2,2,2019,1,2,12,0,38,42,15,1,0,1,0,11.06882701352654,11.06882701352654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.62,36.49,5,1,0,0,9,5,1,642.5,0,0,0 +5876,7196,13062,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,8.909987733950659,9.039794135382795,0,3,0,0,0,-9,0,-1064.733528305051,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,38,39,15,1,10,-9,0,21.08651269036071,21.08651269036071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.18,60.74,1,1,0,0,7,5,1,408,0,0,0 +5877,7197,13063,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,3,8.046526246852356,8.184442165421233,5.617860060844063,3,0,0,0,-9,0,-1003.955633412306,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,39,39,15,1,6,-9,0,7.505921561885825,7.505921561885825,0,0,0,0,0,0,0,1,1,0,.5775492617400961,6.070513310036826,0,0,50.61,37.44,6,1,0,0,6,4,1,575,0,0,0 +5878,7198,13064,13065,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,26,0,9,-118.9119597719108,0,0,0,50,3,3,1,-9,-9,2019,3,2,26,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.4,28.99,2,1,0,1,11,3,1,322.5,0,0,0 +5878,7198,13065,13064,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,3,7.651765699004071,8.00131912394998,0,1,0,-9,26,0,0,-56.38026122279356,-9,0,0,59,2,2,3,3,-9,2019,2,1,10,1,70,0,15,1,1,3,0,3.648919463335123,3.648919463335123,0,0,0,0,0,0,0,1,1,0,0,0,0,1,44.79,55.04,3,1,0,0,11,3,1,322.5,0,0,0 +5879,7199,13066,13068,-9,-9,2,1,1,40,1,0,1,0,2,-9,2,1,0,3,7.846566139600359,7.962307779892698,0,2,0,-9,7,0,-2,39.25316921474887,0,0,0,42,2,4,1,-9,-9,2019,1,1,6,0,37,38,15,1,0,1,0,7.592082700139228,7.592082700139228,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.99,48.04,4,2,0,0,6,3,1,927.3333333333334,0,0,0 +5879,7199,13067,-9,13068,13066,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.5842509431084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,927.3333333333334,0,0,0 +5879,7199,13068,13066,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,4,7.305945006425436,7.579455021657552,0,2,0,-9,7,0,2,-1.04741400154205,0,0,1,40,2,3,1,2,2,2019,1,2,9,0,12,14,15,1,0,1,0,16.97604255631585,16.97604255631585,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,6,1,0,0,6,3,1,927.3333333333334,0,0,0 +5880,7200,13069,-9,-9,-9,1,1,0,24,2,0,0,0,1,1,2,1,0,5,7.750820556857432,7.853800964602835,0,3,0,0,0,-9,0,-1098.526474150157,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,35,0,15,1,0,-9,0,7.956835160029713,7.956835160029713,0,0,0,0,0,0,0,1,1,0,6.547405239115242,0,0,0,54.1,59.11,6,1,0,0,10,3,0,4424,0,0,0 +5881,7201,13070,-9,-9,-9,1,1,1,76,2,0,0,0,1,-9,4,3,0,4,0,6.729248351464831,6.753667700408798,3,0,0,0,-9,0,-994.5055209922441,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.378897364041291,6.302478360318952,0,0,51.83,57.2,4,1,0,0,1,2,1,1118,0,0,0 +5882,7202,13071,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,4,3,0,2,0,7.69441544103163,7.726573210283795,3,0,0,0,-9,0,-833.6725614434276,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.74175619609186,7.221455223847993,0,0,47.37,43.29,6,1,0,0,10,3,1,1214,0,0,0 +5883,7203,13072,13073,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,39,0,-2,23.28599446271755,0,0,0,61,1,3,1,-9,-9,2019,3,1,22,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.88128291898571,0,8.390359422531375,3,31.49,60.05,3,1,0,0,2,5,1,770,0,0,0 +5883,7203,13073,13072,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,8.79766802245118,9.113270644476724,8.290431436146092,1,0,-9,39,0,2,-12.60527216336789,0,0,0,59,2,3,3,2,3,2019,2,2,21,10,30,1,15,1,10,4,0,29.3871463303782,29.3871463303782,0,0,0,0,0,0,0,0,0,0,6.67089268309953,8.579889922999172,0,0,47.14,37.58,6,1,0,0,2,5,1,770,0,0,0 +5884,7204,13074,-9,-9,-9,3,1,1,31,2,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-975.9560374735772,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.14,59.14,3,1,0,1,7,1,1,582,0,0,0 +5885,7205,13075,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.490757962936726,8.531990592882707,7.35979987641864,3,0,0,0,-9,0,-950.4987073148567,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,0,13.76039009783904,13.76039009783904,0,0,0,0,0,0,0,1,1,0,0,7.67643761633465,0,0,48.87,58.55,6,1,0,0,10,5,1,207,0,0,0 +5886,7206,13076,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,8,3,1,3,0,3.977629656701266,3.943565454598324,3,0,0,0,-9,0,-1126.222515663784,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.078589826166731,0,0,59.73,15.89,6,1,0,0,12,1,0,552,0,0,0 +5887,7207,13077,13078,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,7.635577208298487,8.483062495202105,1,0,-9,47,0,0,12.81188296946946,0,0,0,66,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.845556989341876,7.945246992467511,2.133858901205081,3,57.4,50.48,7,1,0,0,9,3,1,688,0,0,0 +5887,7207,13078,13077,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,5.928397138135553,6.253943767822997,1,0,-9,47,0,0,64.29343025799116,0,0,0,66,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.845007449685223,5.925302181990826,0,0,62.1,51.16,7,1,0,0,9,3,1,688,0,0,0 +5888,7208,13079,13080,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,4,8.239584642905614,8.213545851336743,0,1,0,-9,3,0,8,24.51994237352868,-9,0,0,26,2,4,1,-9,-9,2019,1,1,10,2,50,0,15,1,2,1,0,11.2529036167098,11.2529036167098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,7,5,1,653,0,0,0 +5888,7208,13080,13079,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,4,8.051931362095935,8.462309171760268,0,1,0,-9,3,0,-8,145.0104828284716,0,1,1,34,1,4,1,2,2,2019,1,2,18,7,49,50,15,1,7,1,0,8.257980439048714,8.257980439048714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,6,1,0,0,7,5,1,653,0,0,0 +5889,7209,13081,-9,13082,13083,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.586921935184,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,9,5,1,564,0,0,0 +5889,7209,13082,13083,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,4,9.513908680527578,9.384934203203608,0,2,0,-9,16,0,3,3.005724508198818,0,0,1,38,2,3,1,-9,-9,2019,1,2,7,0,35,37,15,1,0,1,0,44.68295032677212,44.68295032677212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,2,0,0,9,5,1,564,0,0,0 +5889,7209,13083,13082,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,3,8.731944020830426,8.869861192777545,4.459253995903769,2,0,-9,7,0,-3,-132.5688491354703,0,0,0,41,2,4,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,15.59013009377623,15.59013009377623,0,0,0,0,0,0,0,0,0,0,4.544817199098474,0,0,0,54.96,53.17,6,1,0,0,9,5,1,564,0,0,0 +5890,7210,13084,-9,13086,13087,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.1931573849404,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,1049.25,0,0,0 +5890,7210,13085,-9,13086,13087,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.9434982880172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,4,4,1,1049.25,0,0,0 +5890,7210,13086,13087,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.964653870130459,8.1154746965999,0,2,0,-9,6,0,0,62.60619325430845,0,0,1,44,2,4,1,3,2,2019,1,1,7,0,35,30,15,1,0,1,0,9.486085588115545,9.486085588115545,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,6,1,0,0,4,4,1,1049.25,0,0,0 +5890,7210,13087,13086,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.465901856348786,8.366554337315202,0,2,0,-9,6,0,0,27.67454303304187,0,0,0,44,2,4,1,2,2,2019,1,2,7,0,35,35,15,1,0,1,0,18.38690359347634,18.38690359347634,0,0,0,0,0,0,0,1,1,0,1.530327895454523,0,0,0,58.15,52.91,6,1,0,0,4,4,1,1049.25,0,0,0 +5891,7211,13088,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1108.499138324001,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,47.78,3,1,1,0,12,1,0,268,0,0,0 +5892,7212,13089,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,8,3,1,1,0,5.438601539602128,5.678818517039142,3,0,0,0,-9,0,-993.5371543296349,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,1,15.4728082756685,0,0,0,0,101.5319012277807,1,1,0,0,5.689543326171327,0,0,40.41,21,6,1,0,0,13,2,0,660,0,0,0 +5893,7213,13090,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-945.5706639167727,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.3,55.06,6,1,0,0,10,1,0,194,0,0,0 +5894,7214,13091,13092,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,5,8.842961348979683,8.975844390323109,0,1,0,-9,10,0,4,-16.1057278648739,0,0,0,31,2,4,1,2,2,2019,1,1,8,0,48,54,15,1,0,1,0,14.14074687622964,14.14074687622964,0,0,0,0,0,0,0,0,0,0,4.955330476729456,0,0,0,57.06,57.76,6,1,0,0,1,5,1,492.5,0,0,0 +5894,7214,13092,13091,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,4,8.495601406569023,8.328091126463381,0,1,0,-9,10,0,-4,-66.65188381196518,0,0,1,35,2,5,1,1,2,2019,1,2,11,0,74,38,15,1,0,1,0,9.404057538226262,9.404057538226262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,43.57,6,1,0,0,1,5,1,492.5,0,0,0 +5895,7215,13093,13094,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,10,0,5,0,0,0,0,56,2,1,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.926818935460596,0,0,1,57.06,57.76,6,1,0,0,12,1,1,961,0,0,0 +5895,7215,13094,13093,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,10,0,-5,0,0,0,0,61,1,5,3,3,3,2019,4,1,15,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.9,15.65,3,1,0,0,12,1,1,961,0,0,0 +5896,7216,13095,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,4,6.892049798700491,7.034942971650942,0,3,0,0,0,-9,0,-912.1876386016788,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,20,20,15,1,0,-9,0,6.81210865968155,6.81210865968155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.93,48.71,3,1,0,1,6,2,1,698,0,0,0 +5897,7217,13096,13097,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,5,0,5.438233806990184,5.389721175173971,1,0,-9,8,0,-1,-88.55427246730468,0,0,0,64,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.157308369578812,6.030123748664244,0,0,57.06,57.76,7,1,0,0,12,3,1,816,0,0,0 +5897,7217,13097,13096,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.09424350436672,8.046091292829772,1,0,-9,8,0,1,67.34533721588524,0,0,0,63,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.294584058722659,7.653934741857912,0,0,60.3,46.58,1,1,0,0,12,3,1,816,0,0,0 +5898,7218,13098,13099,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,6.02660926236105,5.91505653754931,1,0,-9,55,0,-7,-30.4163209926791,0,0,0,83,3,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.845214851626642,0,0,66.37,22.3,6,1,0,0,10,2,1,227,0,0,0 +5898,7218,13099,13098,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,6.879958201594078,7.116470473117548,1,0,-9,55,0,7,144.3860950041125,0,0,0,76,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.849480889309135,0,0,63.1,42.39,7,1,0,0,10,2,1,227,0,0,0 +5899,7219,13100,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-942.0453527882503,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,3.505213163792981,3,55.51,32.8,6,1,0,0,9,1,0,290,0,0,0 +5900,7220,13101,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,4,7.779094600315192,7.588097745913672,0,3,0,0,0,-9,0,-818.4909566059398,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,42,45,15,1,0,-9,0,5.985247307400189,5.985247307400189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,5,1,0,1,6,3,0,792,0,0,0 +5901,7221,13102,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,1,1,0,2,5.976487708064787,6.931157946494411,7.458437898618323,3,0,0,0,-9,0,-1005.579745506602,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,18,0,15,1,0,-9,0,1.681842649449245,1.681842649449245,0,0,0,0,0,0,0,1,1,0,0,6.880160376030709,0,0,49.28,52.09,6,1,0,0,8,3,1,134,0,0,0 +5902,7222,13103,13104,-9,-9,1,1,0,52,1,0,1,0,1,-9,1,1,0,4,8.50785580137325,8.255348726966456,0,2,0,-9,30,0,-7,44.42764385012008,0,0,0,59,1,5,3,2,2,2019,2,2,9,0,30,30,15,1,0,4,0,18.82591729337307,18.82591729337307,0,0,0,0,0,0,0,0,0,0,8.647843243719278,0,0,0,57.16,56.15,6,1,0,0,5,4,1,938.5,0,0,0 +5902,7222,13104,13103,-9,-9,2,1,1,59,1,0,1,0,1,-9,4,3,0,5,0,8.293760025064243,8.267010027735065,2,0,-9,8,0,7,66.32835850294832,0,0,0,52,1,4,1,-9,-9,2019,3,1,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.494709385369875,8.062057089649509,0,0,57.06,57.76,7,1,0,0,5,4,1,938.5,0,0,0 +5903,7223,13105,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,2,8.693782547398609,8.677087403420888,0,3,0,0,0,-9,0,-1053.03484349772,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,39,40,15,1,1,-9,0,15.73238008876444,15.73238008876444,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.11,30.71,6,1,0,0,12,5,1,937,0,0,0 +5904,7224,13106,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,3,0,7.167748901349864,7.093204953451096,3,0,0,0,-9,0,-1060.567218158849,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.778623911354745,6.836513165704228,2.185429793565128,3,56.5,48.33,6,1,0,0,10,2,1,207,0,0,0 +5905,7225,13107,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,2,7.317683700531212,7.612560571744067,0,3,0,0,0,-9,0,-1006.202893291759,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,31,31,15,1,0,-9,0,7.964239951628682,7.964239951628682,0,0,0,0,0,0,0,1,0,1,4.373114537141331,0,0,0,52.4,31.65,5,1,0,0,4,3,1,245,0,0,0 +5906,7226,13108,13109,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,46,0,-2,97.83767494415635,0,0,0,74,2,3,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,0,7.188614478194133,8.454666693648372,0,0,0,1,1,0,.9610102244157438,0,0,0,53.19,24.58,6,1,0,0,13,3,0,1287,0,0,0 +5906,7226,13109,13108,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,8.081300877446248,8.147447745403651,1,0,-9,46,0,2,-56.11942270144195,0,0,0,72,2,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.407595917758199,7.896205131593295,5.776521914108105,3,53.23,42.9,6,1,0,0,13,3,0,1287,0,0,0 +5907,7227,13110,-9,13111,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-745.3563917401784,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,3,0,687.5,0,0,0 +5907,7227,13111,-9,-9,-9,1,1,0,45,2,0,1,0,2,-9,2,1,0,4,7.928174993617306,7.913652718662347,5.432931099630095,4,0,0,0,-9,0,-963.8421133195068,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,37,25,15,1,0,-9,0,9.594888098878215,9.594888098878215,0,0,0,0,0,0,0,1,1,0,5.46512791585751,0,0,0,60.12,54.8,6,1,0,0,7,3,0,687.5,0,0,0 +5908,7228,13112,13113,-9,-9,2,1,0,52,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,28,0,0,-139.3700327439677,0,0,0,52,1,4,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.52505411157821,3,48.93,29.29,4,1,0,1,1,3,0,1062,0,0,0 +5908,7228,13113,13112,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,4,7.690435276253026,7.446490502806239,0,1,0,-9,28,0,0,245.8900289134631,0,0,0,52,3,2,3,3,2,2019,2,2,9,0,30,36,15,1,0,3,0,9.005602377500768,9.005602377500768,0,0,0,0,0,0,0,1,1,0,0,0,0,1,44.28,52.44,5,1,0,1,1,3,0,1062,0,0,0 +5908,7229,13114,-9,13112,13113,3,1,0,24,2,0,0,0,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1118.544077534213,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,30,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,1,0,0,1,1,0,170,0,0,0 +5909,7230,13115,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-884.182459572939,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,37.22,4,1,1,0,13,1,1,88,0,0,0 +5910,7231,13116,13118,-9,-9,2,1,0,32,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,-9,-8,-35.77641931415697,-9,0,1,40,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,49.95,6,3,0,0,11,5,1,1335.666666666667,0,0,0 +5910,7231,13117,-9,13116,13118,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-927.0242461426694,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,11,5,1,1335.666666666667,0,0,0 +5910,7231,13118,13116,-9,-9,1,1,1,40,1,1,1,0,1,-9,2,1,0,4,9.146262744066759,9.149935030454364,0,2,0,-9,11,-9,8,103.243298986926,-9,0,0,32,2,3,3,-9,-9,2019,2,2,14,5,38,0,15,1,5,3,0,34.68184152504639,34.68184152504639,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,59.32,6,3,0,0,11,5,1,1335.666666666667,0,0,0 +5911,7232,13119,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,2,6.816691450491848,7.089816707103621,0,3,0,0,0,-9,0,-1083.598647629257,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,11,20,20,15,1,11,-9,0,6.386552509674503,6.386552509674503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.24,23.67,2,3,0,1,5,2,1,863,0,0,0 +5912,7233,13120,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,3,0,7.079085880896212,7.347005825522923,3,0,0,0,-9,0,-1011.358186440222,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.196565256592205,7.338248033580956,0,0,57.34,42.72,6,1,0,0,2,3,1,279,0,0,0 +5913,7234,13121,13122,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,4,9.239928278131513,9.344394089269006,0,1,0,-9,26,0,-1,-1.533044694659687,0,0,0,54,1,4,1,2,2,2019,1,1,24,10,50,50,15,1,10,1,0,20.44233153178086,20.44233153178086,0,0,0,0,0,0,0,0,0,0,6.332360431739086,0,0,0,38.91,60.5,3,1,0,1,2,5,1,139.5,0,0,0 +5913,7234,13122,13121,-9,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,4,8.001313166075224,7.740521129525322,0,1,0,-9,27,0,1,4.255856107000274,0,0,0,53,1,4,1,3,2,2019,1,2,10,2,45,40,15,1,2,1,0,9.133456972041762,9.133456972041762,0,0,0,0,0,0,0,0,0,0,6.097132280043264,0,0,0,54.2,57.49,7,1,0,0,2,5,1,139.5,0,0,0 +5914,7235,13123,13124,-9,-9,1,1,0,64,1,0,0,0,3,-9,6,3,0,1,0,0,0,1,0,-9,9,0,8,-58.4952414357883,0,0,0,56,2,2,1,3,3,2019,3,2,14,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.5388465597587,3,27.41,25.55,5,1,0,0,12,2,1,526.5,0,0,0 +5914,7235,13124,13123,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,2,6.377155503462307,6.698602179116858,0,1,0,-9,9,0,-8,-102.8355250625594,0,0,0,64,3,1,3,3,2,2019,2,1,12,0,30,30,15,1,0,3,0,2.90298877239555,2.90298877239555,0,0,0,0,0,0,0,1,1,0,0,0,41.40885975954529,3,42.35,33.61,5,1,0,0,12,2,1,526.5,0,0,0 +5914,7236,13125,-9,13123,13124,3,1,1,40,2,0,0,0,1,-9,2,1,0,2,8.113029055833188,8.12726718563308,0,3,0,0,0,-9,0,-935.4804644549874,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,33,12,50,50,15,1,12,-9,1,8.66495479432279,8.66495479432279,0,0,0,0,0,0,0,1,1,0,0,0,0,3,27.8,37.35,3,1,0,0,12,4,1,111,0,0,0 +5914,7237,13126,-9,13123,13124,4,1,1,39,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-919.0857260622062,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,12,1,1,414,0,0,0 +5914,7238,13127,-9,13123,13124,5,1,0,23,2,0,0,0,1,1,2,1,0,3,6.125155632690367,6.328984824746226,0,3,0,0,0,-9,0,-918.2293783460362,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,20,0,15,1,0,-9,1,3.340060729959805,3.340060729959805,0,0,0,0,0,0,0,1,1,0,0,0,2.110739736689931,3,40.9,56.09,6,1,0,0,12,2,1,219,0,0,0 +5915,7239,13128,13129,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.052152616584706,8.121136081210571,0,1,0,-9,19,0,4,58.78441258681045,0,0,0,48,2,3,1,3,3,2019,1,2,8,0,39,39,15,1,0,1,0,8.396668473122624,8.396668473122624,0,0,0,0,0,0,0,0,0,0,1.688787283334582,0,0,0,50.86,47.22,4,1,0,0,2,4,1,368,0,0,0 +5915,7239,13129,13128,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.55924669601852,7.74514719470982,0,1,0,-9,19,0,-4,-9.268029869658109,0,0,0,52,2,2,1,3,2,2019,1,1,11,0,25,25,15,1,0,1,0,9.617786680334891,9.617786680334891,0,0,0,0,0,0,0,0,0,0,4.027404413813786,0,0,0,50.03,52.62,2,1,0,0,2,4,1,368,0,0,0 +5916,7240,13130,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,1,1,0,3,7.187846740922307,7.248826538818284,4.780291919884693,3,0,0,0,-9,0,-1069.924503339768,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,50,35,15,1,8,-9,0,3.364471380597478,3.364471380597478,0,0,0,0,0,0,0,0,0,0,4.61273759156914,0,12.79406469298792,3,25.28,58.66,2,1,0,0,9,3,1,527,0,0,0 +5917,7241,13131,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,1,1,0,4,7.095360209520206,7.679475938448289,6.71115106674932,3,0,0,0,-9,0,-1001.152690716248,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,25,25,15,1,0,-9,0,4.254057086000335,4.254057086000335,0,0,0,0,0,0,0,1,1,0,6.171220452349297,6.742278353473029,0,0,58.72,51.29,1,1,0,0,2,3,1,590,0,0,0 +5918,7242,13132,13133,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.63153696151492,8.237044036437657,5.363072952038075,1,0,-9,34,0,3,-27.11646610776556,0,0,0,57,1,3,1,2,2,2019,1,1,21,9,35,30,15,1,9,1,0,9.262632961759975,9.262632961759975,0,0,0,0,0,0,0,0,0,0,3.375093731280513,5.473288088192804,0,0,37.62,50.46,4,1,0,0,11,5,1,1034.5,0,0,0 +5918,7242,13133,13132,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.40923436390054,8.615124494028622,0,1,0,-9,34,0,-3,-82.75914684002359,0,0,0,60,2,3,1,3,3,2019,1,2,14,2,36,36,15,1,2,1,0,14.8812622739679,14.8812622739679,0,0,0,0,0,0,0,0,0,0,5.123342514842648,0,0,0,36.6,56.17,3,1,0,0,11,5,1,1034.5,0,0,0 +5918,7243,13134,-9,13132,13133,3,1,0,25,2,0,0,0,1,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-984.901702251552,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,5,1,1,0,11,1,1,724,0,0,0 +5919,7244,13135,13136,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,6.210621742499199,6.228265240733573,1,0,-9,50,0,3,-38.49162164484768,0,0,0,70,2,2,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.362987794252493,6.381052741829133,0,0,61.12,51.57,7,1,0,0,6,2,1,1052,0,0,0 +5919,7244,13136,13135,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,7.404719448430805,7.041838807554879,1,0,-9,50,0,-3,47.59577782131974,0,0,0,73,3,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,1.552128503672769,0,0,0,0,1,1,0,7.167802090136465,7.441206037890329,0,0,57.8,41.32,4,1,0,0,6,2,1,1052,0,0,0 +5920,7245,13137,13138,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,8.246325711917178,8.221793406803883,0,1,0,-9,11,0,3,-37.68096718827439,0,0,0,51,2,3,1,-9,-9,2019,1,2,9,1,46,0,15,1,1,1,0,11.97724220799163,11.97724220799163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,4,0,0,5,4,1,492,0,0,0 +5920,7245,13138,13137,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.142879228019977,8.110374993688337,0,1,0,-9,11,0,-3,-90.12623303287066,0,0,0,54,2,4,1,3,2,2019,1,1,6,0,58,48,15,1,0,1,0,6.003512203881533,6.003512203881533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,4,0,0,5,4,1,492,0,0,0 +5920,7246,13139,-9,13138,13137,3,1,0,20,3,0,0,0,2,-9,2,1,0,3,7.895985476439777,7.72182636243833,0,3,0,0,0,-9,0,-1027.359901440808,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,66,48,15,1,0,-9,1,3.943108606940625,3.943108606940625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,4,4,0,0,5,3,1,677,0,0,0 +5921,7247,13140,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,2,1,0,3,7.902335726796795,7.97036980186333,0,3,0,0,0,-9,0,-1006.227836586156,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,45,39,15,1,4,-9,0,8.246854761675312,8.246854761675312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.57,55.98,3,1,0,0,7,4,0,519,0,0,0 +5922,7248,13141,13142,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,8.998007557713205,9.741140559398739,1,0,-9,49,0,-2,-10.19263073110884,0,0,0,72,2,3,3,1,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.998133074420009,9.223523904113598,0,0,62.49,55.09,7,1,0,0,9,5,1,1119,0,0,0 +5922,7248,13142,13141,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,7.110127171055047,7.297346628800651,1,0,-9,7,0,2,27.81556576130245,-9,0,0,70,2,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.60290404005488,7.129665687319637,0,0,51,46,6,1,0,0,9,5,1,1119,0,0,0 +5922,7249,13143,-9,13142,13141,3,1,1,40,2,0,0,0,2,-9,2,1,0,4,8.653052330260994,8.702950574070677,0,3,0,0,0,-9,0,-993.3096681455239,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,0,15,1,1,-9,1,9.778789816603593,9.778789816603593,0,0,0,0,0,0,0,1,1,0,7.381831510796464,0,0,0,51,56,6,1,0,0,9,5,1,176,0,0,0 +5923,7250,13144,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,5.061370674961518,5.241426080309606,3,0,0,0,-9,0,-939.6775698079482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.219389229588829,4.754079533294671,6.788866502313331,3,56.8,33.46,5,1,0,0,13,2,1,1365,0,0,0 +5923,7251,13145,-9,13144,-9,2,1,1,47,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1038.297058310698,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,28,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.56,22.72,2,1,0,1,13,1,1,741,0,0,0 +5923,7252,13146,-9,13144,-9,3,1,0,46,2,0,0,0,2,-9,2,1,0,1,6.922623937424117,7.613397260999734,0,3,0,0,0,-9,0,-912.8736122654791,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,9,27,27,15,1,9,-9,1,6.383459586486953,6.383459586486953,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.28,34.11,2,1,0,1,13,3,1,1795,0,0,0 +5924,7253,13147,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,1,1,0,3,9.628433577613379,9.701217257182211,0,3,0,0,0,-9,0,-971.5146554728251,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,9,50,0,15,1,9,-9,0,43.896771253253,43.896771253253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.92,47.25,2,5,0,0,8,5,0,593,0,0,0 +5925,7254,13148,13153,-9,-9,1,1,1,37,1,1,4,0,1,-9,2,1,0,5,8.787125473802737,9.133540575215905,0,2,0,-9,13,0,1,102.4382274945954,0,0,0,36,2,4,1,2,1,2019,1,2,13,2,55,55,15,1,2,1,0,17.25701949167201,17.25701949167201,0,0,0,0,0,0,0,1,1,0,.2622338457057208,0,0,0,49.25,61.25,5,3,0,0,7,4,0,391.1666666666667,0,0,0 +5925,7254,13149,-9,13153,13148,5,1,0,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.8231406150551,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,4,0,391.1666666666667,0,0,0 +5925,7254,13150,-9,13153,13148,4,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.0678325854243,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,0,391.1666666666667,0,0,0 +5925,7254,13151,-9,13153,13148,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-996.5459019921752,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,0,391.1666666666667,0,0,0 +5925,7254,13152,-9,13153,13148,3,1,1,5,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.4490008294337,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,7,4,0,391.1666666666667,0,0,0 +5925,7254,13153,13148,-9,-9,2,1,0,36,1,1,4,0,2,-9,5,1,0,4,6.729266438469948,6.856416736092679,0,2,0,-9,13,0,-1,-25.80978528170519,0,0,1,37,1,5,1,-9,-9,2019,1,1,10,0,15,0,15,1,0,1,0,8.759543402708879,8.759543402708879,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,53.24,1,1,0,0,7,4,0,391.1666666666667,0,0,0 +5926,7255,13154,13155,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,4.876409243200749,4.963615623625382,1,0,-9,54,0,-5,-101.878360847375,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.562967319326512,5.108213601942423,0,0,57.16,56.15,5,1,0,0,11,2,1,2469,0,0,0 +5926,7255,13155,13154,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,5.637920894806311,5.246465411824098,1,0,-9,54,0,5,-22.7691892282294,0,0,0,72,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.637941882096302,5.27184691689878,0,0,67.79000000000001,30.8,1,1,0,0,11,2,1,2469,0,0,0 +5927,7256,13156,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,3,7.929842902101191,8.309216362523022,0,3,0,0,0,-9,0,-1136.799291433249,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,10,44,42,15,1,10,-9,0,9.779233417036503,9.779233417036503,0,0,0,0,0,0,0,0,0,0,0,0,13.8560014291074,3,37.6,40.74,3,4,0,1,8,4,0,424,0,0,0 +5928,7257,13157,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,4,8.706980949033184,8.985454820933214,0,4,0,0,0,-9,0,-925.0892110065186,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,5,1,46,38,15,1,1,-9,0,14.66286819288664,14.66286819288664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,4,4,0,411,0,0,0 +5928,7258,13158,-9,13157,-9,2,1,0,18,2,0,1,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1061.520996035666,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.8857532771585939,0,0,0,46,58,5,1,1,0,4,4,0,199,0,0,0 +5929,7259,13159,13160,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,5,10.08101943499654,9.861472635950594,0,1,0,-9,35,0,1,8.381567014001909,0,0,0,56,1,5,1,2,3,2019,1,2,8,0,57,58,15,1,0,1,0,30.71516267583302,30.71516267583302,0,0,0,0,0,0,0,0,0,0,6.198873694316058,0,0,0,58.05,54.52,6,1,0,0,6,5,1,121,0,0,0 +5929,7259,13160,13159,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,5,9.426862207888391,9.647017580074804,0,1,0,-9,7,0,-1,66.03184994018424,0,0,0,57,1,5,1,1,1,2019,1,1,8,0,36,35,15,1,0,1,0,42.03312758589982,42.03312758589982,0,0,0,0,0,0,0,0,0,0,4.699677441283352,0,0,0,46.88,60.96,6,1,0,0,6,5,1,121,0,0,0 +5930,7260,13161,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,3,8.376806094863474,8.647779087656167,0,3,0,0,0,-9,0,-921.8135598885301,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,44,46,15,1,2,-9,0,15.48295387080214,15.48295387080214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,4,1,0,0,4,5,1,189,0,0,0 +5931,7261,13162,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-987.3018517306981,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,18.5556918242348,0,0,0,0,130.6325466509264,1,1,0,0,0,0,0,29.69,23.19,2,1,0,0,13,1,1,757,0,0,0 +5932,7262,13163,13164,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.271478338428294,7.162113913892153,1,0,-9,6,0,-5,-160.4787800188033,0,0,0,74,1,4,3,3,3,2019,4,1,21,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.416937666115329,7.15657234559091,125.2041580603048,3,54,51,3,1,0,0,11,3,1,1171.5,0,0,0 +5932,7262,13164,13163,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,6.174061314944903,7.71338514834867,6.842518717181189,1,0,-9,6,0,5,-40.52269946229844,0,0,0,69,2,4,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.811196429564299,7.268856815107449,123.1015715546306,3,51.83,57.2,6,1,0,0,11,3,1,1171.5,0,0,0 +5933,7263,13165,-9,-9,-9,1,1,0,51,2,0,1,0,1,-9,2,1,0,4,8.814208619198229,8.851724596982379,6.372661596115289,4,0,0,0,-9,0,-896.9856946319893,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,43,42,15,1,1,-9,0,18.67129273852313,18.67129273852313,0,0,0,0,0,0,0,1,1,0,7.03252362074651,0,0,0,45.91,59.89,5,1,0,0,4,5,1,1368,0,0,0 +5933,7263,13166,-9,13165,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1066.343538414744,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.24,57.44,4,1,0,0,4,5,1,1368,0,0,0 +5934,7264,13167,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,3,8.781156391266723,8.699361262400021,0,1,0,-9,2,0,1,29.34418779585077,0,0,0,-9,-9,-9,-9,1,1,2019,2,2,12,0,35,35,15,1,0,-9,0,21.41931575644815,21.41931575644815,0,0,0,0,0,0,0,1,1,0,3.777614278789134,0,9.111669551351499,1,35.78,55.1,6,1,0,0,1,4,1,1559,0,0,0 +5934,7265,13168,-9,-9,-9,2,1,1,36,2,0,0,0,2,-9,8,3,1,1,0,3.206267126225086,3.614798878073221,1,0,-9,2,0,-1,21.53015321491712,0,0,0,-9,-9,-9,-9,2,2,2019,3,1,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.349044260156263,0,7.223339649035987,3,36.44,26.71,3,1,0,0,1,4,1,345,0,0,0 +5935,7266,13169,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-863.4955361394101,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.19,37.62,3,1,0,0,1,1,0,2966,0,0,0 +5935,7267,13170,-9,-9,-9,2,1,0,29,2,0,0,0,2,-9,2,1,0,3,8.327830352633162,8.533873237226331,0,3,0,0,0,-9,0,-949.3615726463538,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,45,57,15,1,0,-9,0,13.19945725043296,13.19945725043296,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,49.92,5,1,0,0,1,4,0,621,0,0,0 +5936,7268,13171,13172,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.867541525297861,7.669921289763603,1,0,-9,57,0,3,-117.4039294127437,0,0,0,76,2,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,3.71106892240666,0,6.005844701458368,0,0,1,1,0,2.783051329793954,7.667927797707742,0,0,47.97,37.51,5,1,0,0,2,3,1,281,0,0,0 +5936,7268,13172,13171,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,6.967860187850225,6.8222191367403,1,0,-9,57,0,-3,-22.6604065553569,0,0,0,79,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.458322969004027,7.005679319479478,0,0,57.16,56.15,5,1,0,0,2,3,1,281,0,0,0 +5936,7269,13173,-9,-9,-9,3,1,1,21,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-981.6257113319349,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,5,1,0,2,1,1,213,0,0,0 +5937,7270,13174,13176,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,3,8.94994833978704,9.157064532852607,0,2,0,-9,15,0,-2,2.658721813221667,0,0,1,42,2,3,1,2,2,2019,1,1,25,11,42,47,15,1,11,1,0,19.28793218827285,19.28793218827285,0,0,0,0,0,0,0,0,0,0,6.6509671018184,0,0,0,25.85,57.04,5,1,0,0,6,5,1,1102,0,0,0 +5937,7270,13175,-9,13174,13176,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.111894720836,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1102,0,0,0 +5937,7270,13176,13174,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,3,9.335245785311997,9.252533391945837,0,2,0,-9,15,0,2,76.59897283829741,0,0,0,40,1,3,1,2,2,2019,1,2,9,0,52,45,15,1,0,1,0,18.38184956805241,18.38184956805241,0,0,0,0,0,0,0,0,0,0,6.295952343029649,0,0,0,54.37,54.8,5,1,0,0,6,5,1,1102,0,0,0 +5937,7270,13177,-9,13174,13176,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.3319998811755,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1102,0,0,0 +5938,7271,13178,-9,-9,-9,1,1,0,23,2,2,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-896.9390821181196,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.97,62.24,6,1,0,0,13,1,0,1235.666666666667,0,0,0 +5938,7271,13179,-9,13178,-9,2,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-979.9337016998883,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,1235.666666666667,0,0,0 +5938,7271,13180,-9,13178,-9,3,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-994.9747185971843,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,1235.666666666667,0,0,0 +5939,7272,13181,13182,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,4,7.790761299610753,7.72272814962993,0,1,0,-9,8,0,2,-104.6630432715643,0,0,0,55,2,3,1,3,3,2019,1,1,12,0,22,22,15,1,0,1,0,17.77002777166739,17.77002777166739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,5,1,0,0,13,3,1,1501,0,0,0 +5939,7272,13182,13181,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,8,0,-2,-127.5712987020242,0,0,0,57,3,4,1,3,2,2019,1,2,9,0,20,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,6,1,0,0,13,3,1,1501,0,0,0 +5939,7273,13183,-9,13181,13182,3,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.046178247626351,7.958422228472466,0,3,0,0,0,-9,0,-979.9784685232992,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,30,0,15,1,2,-9,1,13.31868014408973,13.31868014408973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,13,4,1,2162,0,0,0 +5940,7274,13184,13185,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,6.317448128491369,6.576578514053296,1,0,-9,6,0,-1,-9.792570944662987,0,0,0,69,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.446567136336849,6.341282402633925,0,0,57.16,56.15,6,1,0,0,2,2,1,3109.5,0,0,0 +5940,7274,13185,13184,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,5.083253208443661,5.611946525170066,1,0,-9,6,0,1,67.6830757010261,0,0,0,68,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.176870103929567,5.211183312931298,0,0,52.15,48.98,6,1,0,0,2,2,1,3109.5,0,0,0 +5941,7275,13186,13187,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.553427170211712,8.603483012099687,0,1,0,-9,4,0,-2,14.58900661288518,0,0,0,32,1,4,1,1,1,2019,1,2,8,0,48,43,15,1,0,1,0,10.96212905144468,10.96212905144468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,6,1,0,0,2,5,1,374.5,0,0,0 +5941,7275,13187,13186,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.82891743875704,8.685094807794226,6.318942849384514,1,0,-9,4,0,2,29.25656640091758,0,0,1,30,1,4,1,-9,-9,2019,1,1,9,0,45,50,15,1,0,1,0,16.65777935840281,16.65777935840281,0,0,0,0,0,0,0,0,0,0,6.746592055117987,0,0,0,48.87,58.55,6,1,0,0,2,5,1,374.5,0,0,0 +5942,7276,13188,13189,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.362939438774623,8.614684027736475,0,1,0,-9,11,0,1,73.61009463263709,-9,0,0,56,1,4,1,-9,-9,2019,1,1,7,0,42,0,15,1,0,1,0,10.89462742725042,10.89462742725042,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58.32,50.22,6,1,0,0,8,4,1,336,0,0,0 +5942,7276,13189,13188,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,7.591606976865841,7.917157802812314,0,1,0,-9,35,0,-1,-.7331872352135052,0,0,0,57,1,3,1,2,1,2019,1,2,7,0,35,0,15,1,0,1,0,7.562717502556584,7.562717502556584,0,0,0,0,0,0,0,1,1,0,0,0,7.485046928035676,3,51.49,57.57,5,1,0,0,8,4,1,336,0,0,0 +5943,7277,13190,13191,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,3,0,0,0,1,0,-9,42,0,-4,39.12491291015914,0,0,0,67,3,4,3,3,3,2019,2,1,10,1,0,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.978476343639402,0,0,0,46.35,54.46,6,3,0,0,8,2,1,333.5,0,0,0 +5943,7277,13191,13190,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,5.80630809491576,5.855226679242149,1,0,-9,42,0,4,-82.53292716747063,0,0,0,63,1,3,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.115218232003625,0,0,52.48,54.33,6,3,0,0,8,2,1,333.5,0,0,0 +5943,7278,13192,-9,13190,13191,3,1,0,37,2,0,0,0,1,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1043.844949361574,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,36,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,8,1,1,355,0,0,0 +5943,7279,13193,-9,13190,13191,4,1,1,35,2,0,0,0,1,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-1146.575912035624,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,80,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.077093560857443,0,0,0,57.06,57.76,6,3,0,0,8,1,1,112,0,0,0 +5943,7280,13194,-9,13190,13191,5,1,1,30,2,0,0,0,1,-9,2,1,0,3,9.016228437251883,8.864750310164988,0,3,0,0,0,-9,0,-900.5301690355315,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,19,6,50,45,15,1,6,-9,1,14.07261776532277,14.07261776532277,0,0,0,0,0,0,0,1,1,0,3.848626956687084,0,0,0,35.32,58.41,3,3,0,0,8,5,1,410,0,0,0 +5944,7281,13195,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,1,1,0,4,8.847312725610342,9.30098843949955,6.951253834719665,3,0,0,0,-9,0,-952.0214820703731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,70,60,15,1,0,-9,0,11.50833847392728,11.50833847392728,0,0,0,0,0,0,0,1,1,0,0,6.94842086018657,0,0,52.93,55.31,6,1,0,0,6,5,1,316,0,0,0 +5945,7282,13196,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-996.5958351186163,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,1,0,8,1,0,1236,0,0,0 +5945,7283,13197,-9,13196,-9,2,1,0,21,2,0,0,0,1,1,2,1,0,4,7.690096056586232,7.349925129486119,0,3,0,0,0,-9,0,-1006.829378065063,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,25,0,15,1,3,-9,1,8.689103912217854,8.689103912217854,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.16,58.62,4,3,0,0,8,3,0,1172,0,0,0 +5946,7284,13198,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-986.5819537277489,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.0127210542896,3,35.03,48.69,6,1,0,0,11,1,0,264,0,0,0 +5946,7285,13199,-9,13198,-9,2,1,0,22,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-923.7632233599736,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.26620538937088,3,37.96,24.76,4,1,0,0,11,1,0,1840,0,0,0 +5946,7286,13200,-9,13198,-9,3,1,0,19,2,0,0,0,3,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-962.8263758350162,1,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,11,1,0,1121,0,0,0 +5947,7287,13201,13202,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,4,8.398551022634438,8.392278168274702,0,2,0,-9,16,0,-15,-97.73402539030644,0,0,0,66,2,3,1,-9,-9,2019,1,1,7,0,47,35,15,1,0,1,0,12.30948773188321,12.30948773188321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,10,4,1,527,0,0,0 +5947,7287,13202,13201,-9,-9,1,1,1,66,1,0,1,0,2,-9,1,1,0,3,7.145790090675828,7.040519424772908,0,2,0,-9,16,0,15,37.03692794956727,0,0,0,51,1,4,1,2,2,2019,1,2,7,0,25,25,15,1,0,1,0,6.369992642106873,6.369992642106873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,6,4,0,0,10,4,1,527,0,0,0 +5947,7287,13203,-9,13201,13202,3,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1032.288292318335,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,2,0,0,10,4,1,527,0,0,0 +5948,7288,13204,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1125.848355379326,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.95,7,1,0,0,11,1,1,349,0,0,0 +5949,7289,13205,13206,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.526034191052704,7.726290109485149,1,0,-9,10,0,3,-17.22073581311271,0,0,0,60,1,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.648419005177586,7.548885715550531,0,0,57.16,56.15,7,1,0,0,9,5,1,310,0,0,0 +5949,7289,13206,13205,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,3,8.930667159902061,8.731205689334971,0,1,0,-9,10,0,-3,11.03435422913407,0,0,0,63,1,4,3,2,2,2019,2,2,11,0,35,35,15,1,0,4,0,25.28419290184355,25.28419290184355,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.5,51.02,6,1,0,0,9,5,1,310,0,0,0 +5950,7290,13207,13209,-9,-9,1,1,0,36,1,0,3,0,1,-9,2,1,0,5,8.462958745722919,8.454996892510977,0,2,0,-9,16,0,-1,84.04095729562383,0,0,1,37,2,4,1,2,2,2019,1,2,9,1,38,22,15,1,1,1,0,14.80430214151182,14.80430214151182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,7,1,0,0,12,5,1,1072.8,0,0,0 +5950,7290,13208,-9,13207,13209,3,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.564348096216,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,12,5,1,1072.8,0,0,0 +5950,7290,13209,13207,-9,-9,2,1,1,37,1,0,3,0,2,-9,2,1,0,4,9.239284643493898,9.267765192135546,0,2,0,-9,15,0,1,-143.9528344237667,0,0,0,36,1,5,1,2,3,2019,1,1,10,0,35,42,15,1,0,1,0,31.35143494024808,31.35143494024808,0,0,0,0,0,0,0,0,0,0,4.094017155537496,0,0,0,53.61,51.1,6,1,0,0,12,5,1,1072.8,0,0,0 +5950,7290,13210,-9,13207,13209,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.832228679806,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,5,1,1072.8,0,0,0 +5950,7290,13211,-9,13207,13209,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.634376230611,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,1072.8,0,0,0 +5951,7291,13212,13213,-9,-9,1,1,0,58,1,0,0,0,3,-9,97,3,0,3,0,5.302167657497295,5.315502962610426,1,0,-9,9,0,0,48.0923444620319,0,0,0,58,3,1,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.499515946927956,42.2227720980704,1,47.79,38.66,4,1,0,0,2,2,0,701,0,0,0 +5951,7291,13213,13212,-9,-9,2,1,1,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,9,0,0,87.31229923221285,0,0,0,58,3,3,3,2,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,17.69,3,1,0,0,2,2,0,701,0,0,0 +5952,7292,13214,13215,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,0,5.984673741978452,5.778505333819576,1,0,-9,53,0,3,51.01279117495065,0,0,0,70,3,2,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,1,0,46.46308705991722,0,0,0,0,1,1,0,0,5.887112902208666,0,0,42.62,15.89,4,1,0,0,5,2,1,743.5,0,0,0 +5952,7292,13215,13214,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,53,0,-3,31.86963599631975,0,0,0,73,2,1,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,28.71483758483738,1,60.84,23.72,6,1,0,0,5,2,1,743.5,0,0,0 +5953,7293,13216,13217,-9,-9,1,1,1,90,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,70,0,-2,0,0,0,0,92,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.09,47.92,7,1,0,0,9,1,1,1552.5,0,0,0 +5953,7293,13217,13216,-9,-9,2,1,0,92,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,70,0,2,0,0,0,0,90,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,13.65206321990082,0,0,0,0,1,1,0,0,0,0,0,60.61,33.36,6,1,0,0,9,1,1,1552.5,0,0,0 +5954,7294,13218,-9,13220,13219,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.991876784912,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,0,463,0,0,0 +5954,7294,13219,13220,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,4,8.327281495771249,8.192149157437621,0,2,0,-9,8,0,-5,-14.19639291233616,0,0,0,40,2,5,1,-9,-9,2019,1,1,10,0,37,40,15,1,1,1,0,14.83890038341547,14.83890038341547,0,0,0,0,0,0,0,1,1,0,.5855602923857817,0,0,0,50,57,5,1,0,0,4,4,0,463,0,0,0 +5954,7294,13220,13219,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,5,7.793681844363002,8.016628488163668,0,2,0,-9,8,0,5,-26.56871220256948,0,0,1,35,2,4,1,2,3,2019,1,2,12,0,37,37,15,1,0,1,0,9.895490204100206,9.895490204100206,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,4,4,0,463,0,0,0 +5954,7294,13221,-9,13220,13219,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1030.575322561165,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,4,4,0,463,0,0,0 +5954,7294,13222,-9,13220,13219,3,1,0,16,2,0,2,0,2,-9,2,2,0,4,6.28933485349391,6.297360985013329,0,2,0,0,0,-9,0,-980.2052294747297,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,4,4,0,463,0,0,0 +5955,7295,13223,13226,-9,-9,1,1,0,44,1,0,3,0,2,-9,2,1,0,3,6.756845897341218,6.596487047093485,0,2,0,-9,10,0,-4,74.90369201379536,0,0,1,48,2,5,1,2,2,2019,1,2,6,0,13,11,15,1,0,1,0,7.83103560855722,7.83103560855722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.67,51.01,6,1,0,0,7,4,1,964.8,0,0,0 +5955,7295,13224,-9,13223,13226,4,1,1,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1069.890840742582,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,7,4,1,964.8,0,0,0 +5955,7295,13225,-9,13223,13226,5,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.337556370743,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,964.8,0,0,0 +5955,7295,13226,13223,-9,-9,2,1,1,48,1,0,3,0,2,-9,2,1,0,5,8.9604878296386,8.678019386351147,0,2,0,-9,10,0,4,7.912783269451319,0,0,0,44,2,3,1,3,3,2019,1,1,12,0,61,60,15,1,0,1,0,15.85245781412494,15.85245781412494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,58,6,1,0,0,7,4,1,964.8,0,0,0 +5955,7295,13227,-9,13223,13226,3,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-990.8140031477387,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7893738627313325,0,0,0,57.63,56.14,6,1,0,0,7,4,1,964.8,0,0,0 +5956,7296,13228,13229,-9,-9,2,1,0,62,1,0,0,0,2,-9,1,1,0,3,6.033638269574398,6.362849045733901,0,1,0,-9,7,0,-8,128.4950127708863,0,0,0,70,1,4,3,-9,-9,2019,2,1,13,3,10,25,15,1,3,4,0,6.406158234245398,6.406158234245398,0,0,0,0,0,0,0,1,1,0,5.122963735809202,0,.7322170785652005,3,50.96,45.55,6,1,0,0,6,3,1,459.5,0,0,0 +5956,7296,13229,13228,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,7.898445198083792,8.149162282415194,1,0,-9,7,0,8,-114.9015158232406,0,0,0,62,2,3,1,2,1,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.096165382128543,7.908151494341825,5.880757470503627,3,61.42,43.2,7,1,0,0,6,3,1,459.5,0,0,0 +5957,7297,13230,-9,13231,13232,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.9691487879352,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,371.6666666666667,0,0,0 +5957,7297,13231,13232,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,4,8.52251928152655,8.435630836736033,0,2,0,-9,15,0,-14,38.94493955155384,0,0,0,60,2,1,3,2,2,2019,2,1,18,6,42,37,15,1,6,3,0,10.02082480026969,10.02082480026969,0,0,0,0,0,0,0,1,1,0,0,0,7.733793347538484,1,43.43,51.6,5,1,0,0,2,3,1,371.6666666666667,0,0,0 +5957,7297,13232,13231,-9,-9,1,1,1,60,1,0,1,0,2,-9,8,3,1,1,0,3.302026260838298,3.040777775411517,2,0,-9,14,0,14,90.9860506472853,0,0,0,46,1,4,1,-9,-9,2019,3,2,31,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.385943790517777,0,0,32.97,18.82,2,1,0,0,2,3,1,371.6666666666667,0,0,0 +5958,7298,13233,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,0,7.144792487804925,7.626443802011958,3,0,0,0,-9,0,-927.8957096712343,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,2.880617462388925,0,0,0,3.341341849650284,52.94348144443822,1,1,0,3.361347145458486,7.231723005169001,0,0,54.7,11.76,6,1,0,0,8,3,1,618,0,0,0 +5959,7299,13234,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,3,8.775157484677983,8.66223896275589,0,3,0,0,0,-9,0,-1094.618562852101,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,58,60,15,1,1,-9,0,13.68746577520117,13.68746577520117,0,0,0,0,0,0,0,0,0,0,6.6602598876163,0,9.143502810435152,3,55.39,40.94,6,1,0,0,7,5,1,401,0,0,0 +5960,7300,13235,13236,-9,-9,2,1,1,52,1,0,1,0,3,-9,2,1,0,2,8.154365065684166,8.18567486531505,0,2,0,-9,7,0,6,133.538816688145,0,0,0,46,3,2,1,3,3,2019,1,1,12,0,47,37,15,1,0,1,0,7.579915008794025,7.579915008794025,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.26,45.62,4,1,0,0,12,4,1,355.5,0,0,0 +5960,7300,13236,13235,-9,-9,1,1,0,46,1,0,1,0,3,-9,2,1,0,2,7.615573039121282,8.010927325067659,0,2,0,-9,7,0,-6,-66.25483408039061,0,0,0,52,3,2,1,2,2,2019,1,2,11,0,39,30,15,1,0,1,0,9.166496795129531,9.166496795129531,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.02,30.67,4,1,0,1,12,4,1,355.5,0,0,0 +5960,7301,13237,-9,13236,13235,3,1,1,18,2,0,1,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-995.7209470263964,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.9,53.32,5,1,1,0,12,4,1,763,0,0,0 +5961,7302,13238,13239,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,3,8.801172884773933,8.815527673490971,0,2,0,-9,5,0,-6,-110.688818042687,0,0,1,41,1,4,1,2,1,2019,1,2,16,3,40,40,15,1,3,1,0,17.39452078373197,17.39452078373197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.63,50.87,3,1,0,0,11,5,1,1265,0,0,0 +5961,7302,13239,13238,-9,-9,2,1,1,41,1,0,1,0,1,-9,2,1,0,4,8.977132139926043,8.457352425908292,0,2,0,-9,5,0,6,167.0300461629618,0,0,0,35,1,3,1,-9,-9,2019,1,1,16,4,49,49,15,1,4,1,0,15.75870622849589,15.75870622849589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.15,62.02,5,1,0,0,11,5,1,1265,0,0,0 +5961,7302,13240,-9,13238,13239,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.204084923046,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,5,1,1265,0,0,0 +5962,7303,13241,13243,-9,-9,2,1,0,33,1,0,3,0,3,-9,3,3,0,3,0,0,0,2,0,-9,10,0,-4,23.40842167051721,0,0,1,37,2,4,1,2,2,2019,3,1,0,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.56,49.7,7,3,1,0,2,2,1,971.4,0,0,0 +5962,7303,13242,-9,13241,13243,7,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-850.0304242566907,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,2,2,1,971.4,0,0,0 +5962,7303,13243,13241,-9,-9,1,1,1,37,1,0,3,0,2,-9,2,1,0,4,8.187621093162496,7.98615055746328,0,2,0,-9,3,0,4,20.75029156028296,0,0,0,33,3,3,3,-9,-9,2019,2,2,17,7,24,30,15,1,7,3,0,13.87875608303741,13.87875608303741,0,0,0,0,0,0,0,1,1,0,0,0,14.52257132713095,3,50.56,51.54,6,3,0,1,2,2,1,971.4,0,0,0 +5962,7303,13244,-9,13241,13243,5,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-928.4023401643792,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,2,2,1,971.4,0,0,0 +5962,7303,13245,-9,13241,13243,6,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-979.2286970867807,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,2,2,1,971.4,0,0,0 +5963,7304,13246,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-881.1527328976193,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,11.61685602974777,0,0,0,5.43713921422715,90.5974420908238,1,1,0,0,0,0,0,24.76,22.64,3,1,0,0,13,1,0,758,0,0,0 +5964,7305,13247,-9,13248,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,5,5.725987060885146,5.871250103603871,0,4,0,0,0,-9,0,-1027.053591948095,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,7,13,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.76,62.64,5,1,0,0,9,2,0,241.25,0,0,0 +5964,7305,13248,-9,-9,-9,1,1,0,43,2,0,3,0,2,-9,2,1,0,5,8.203990001277957,8.078698943086055,5.524022560483031,4,0,0,0,-9,0,-1090.38129965217,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,39,0,15,1,0,-9,0,9.655910702382045,9.655910702382045,0,0,0,0,0,0,0,1,1,0,4.582307130753763,0,0,0,57.06,57.76,6,1,0,0,9,2,0,241.25,0,0,0 +5964,7305,13249,-9,13248,-9,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.110151563,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,0,241.25,0,0,0 +5964,7305,13250,-9,13248,-9,4,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1081.363323103736,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,0,241.25,0,0,0 +5965,7306,13251,13252,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.288476559966137,8.171355830234232,0,1,0,-9,15,0,0,38.84215761898824,0,0,0,53,2,5,1,3,3,2019,1,2,8,0,38,38,15,1,0,1,0,10.60255763099434,10.60255763099434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,10,5,1,416,0,0,0 +5965,7306,13252,13251,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,5,8.907329747415737,8.544856505813405,0,1,0,-9,14,0,0,-5.342301924369981,0,0,0,53,2,3,1,2,2,2019,1,1,9,1,40,39,15,1,1,1,0,19.84056655230118,19.84056655230118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,10,5,1,416,0,0,0 +5966,7307,13253,-9,-9,-9,1,1,0,22,2,0,0,0,2,0,7,2,0,3,6.008749129090032,5.989181693749893,0,3,0,0,0,-9,0,-1046.532475423925,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,12,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.6,56.23,3,1,0,0,5,2,0,342,0,0,0 +5967,7308,13254,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-876.7909184132363,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.8,38.88,4,1,0,0,10,1,0,563,0,0,0 +5968,7309,13255,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-909.7437882715917,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6516099103166428,0,0,0,42.5,20.07,3,1,0,0,9,1,1,3600,0,0,0 +5969,7310,13256,-9,-9,-9,1,1,0,47,3,0,2,0,3,-9,1,1,0,3,7.356872753911673,7.343209959197165,0,4,0,-9,0,1,0,-886.4441928110468,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,16,16,15,1,6,-9,0,10.94468403344991,10.94468403344991,0,0,0,0,0,0,0,1,0,1,0,0,7.033506797732352,3,39.31,52.14,5,3,0,0,8,2,0,886,0,0,0 +5969,7311,13257,-9,-9,-9,2,1,1,57,3,0,2,0,1,-9,8,3,1,1,0,0,0,4,0,-9,0,1,0,-941.7553587225239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,8.906367323544954,3,19.91,25.08,1,1,0,1,8,1,0,379.3333333333333,0,0,0 +5969,7311,13258,-9,13256,13257,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.8502711000975,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,2,0,0,8,1,0,379.3333333333333,0,0,0 +5969,7311,13259,-9,13256,13257,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1062.33539483297,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,2,0,0,8,1,0,379.3333333333333,0,0,0 +5970,7312,13260,13261,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,5,0,8.352640498297246,8.286287982622543,1,0,-9,39,0,1,-23.33083599834989,0,0,0,61,2,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.524047196630888,8.256348790307264,0,0,57.06,57.76,6,1,0,0,10,5,1,984,0,0,0 +5970,7312,13261,13260,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,2,0,9.062016462183861,8.967548357573984,1,0,-9,39,0,-1,-109.6859811853571,0,0,0,62,1,5,3,2,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.991376954461249,8.735575999636374,0,0,57.98,35.77,5,1,0,0,10,5,1,984,0,0,0 +5971,7313,13262,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,3,7.920086593397516,8.057779586465365,0,3,0,0,0,-9,0,-910.1952540321457,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,37,15,1,0,-9,0,10.44703969474934,10.44703969474934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.92,51.87,5,1,0,0,8,4,1,3300,0,0,0 +5972,7314,13263,13264,-9,-9,2,1,0,65,1,0,0,0,1,-9,2,1,0,4,8.037761669834749,8.210687219531907,5.286259370149462,1,0,-9,41,0,0,81.84662356503928,0,0,0,74,2,4,3,2,3,2019,2,1,9,0,28,25,15,1,0,4,0,11.99497835443809,11.99497835443809,0,0,0,0,0,0,0,1,1,0,0,5.58192668050233,0,0,58.15,52.91,6,1,0,0,13,3,0,444.5,0,0,0 +5972,7314,13264,13263,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,4.895106980650557,5.26490139786997,1,0,-9,41,0,9,-27.15447268546775,0,0,0,65,1,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.862624076969665,0,3,50.88,45.4,5,1,0,0,13,3,0,444.5,0,0,0 +5972,7315,13265,-9,13263,13264,3,1,0,35,2,0,0,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1104.947891650576,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,27,10,0,44,15,1,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.1995542898034581,0,0,0,35.2,46,5,1,0,0,13,1,0,191,0,0,0 +5973,7316,13266,-9,13267,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,4,3.094570586518706,3.038356946563194,0,4,0,0,0,-9,0,-1126.523750528601,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.33,60.09,2,1,0,1,6,2,1,615,0,0,0 +5973,7316,13267,-9,-9,-9,1,1,0,57,3,0,1,0,2,1,1,1,0,5,7.234130941480832,7.006748924289399,5.676573069039299,4,0,0,0,-9,0,-941.3438108465735,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,0,15,1,0,-9,0,3.059098524666267,3.059098524666267,0,0,0,0,0,0,0,1,0,1,5.609356194510534,0,3.019748600370581,3,54.1,59.11,6,1,0,0,6,2,1,615,0,0,0 +5974,7317,13268,13269,-9,-9,1,1,1,45,1,0,2,0,1,-9,1,1,0,3,9.03051889288216,8.973971330460758,0,2,0,-9,22,0,0,12.3358393646948,0,0,0,45,1,4,1,1,3,2019,1,2,12,0,40,40,15,1,0,1,0,21.33047653333577,21.33047653333577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.64,55.03,5,1,0,0,12,5,1,334.75,0,0,0 +5974,7317,13269,13268,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.199789026609343,8.157361429438785,0,2,0,-9,22,0,0,92.5059632920662,0,0,0,45,1,3,1,2,1,2019,1,1,11,0,45,21,15,1,0,1,0,8.07937537773722,8.07937537773722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,4,1,0,0,12,5,1,334.75,0,0,0 +5974,7317,13270,-9,13269,13268,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.3243868595209,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,334.75,0,0,0 +5974,7317,13271,-9,13269,13268,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.5714167415881,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,5,1,334.75,0,0,0 +5975,7318,13272,-9,13273,13274,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.63285874658,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,775.3333333333334,0,0,0 +5975,7318,13273,13274,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,5,8.485886042148667,8.56601208153902,0,2,0,-9,7,0,-3,145.2519802337582,0,0,0,48,1,4,1,2,2,2019,1,1,6,0,30,26,15,1,0,1,0,18.70899292366021,18.70899292366021,0,0,0,0,0,0,0,0,0,0,.6316053439716606,0,0,0,62.39,56.71,7,1,0,0,8,5,1,775.3333333333334,0,0,0 +5975,7318,13274,13273,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.398304398868515,10.02208878266397,0,2,0,-9,7,0,3,-66.22666401603622,0,0,0,45,2,5,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,35.47361178778603,35.47361178778603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,8,5,1,775.3333333333334,0,0,0 +5976,7319,13275,13276,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.574153036295602,8.52321682292737,0,1,0,-9,7,0,-4,-173.487099644817,0,0,0,56,2,3,1,-9,-9,2019,1,2,21,8,82,49,15,1,8,1,0,6.523932516657224,6.523932516657224,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.42,62.33,3,1,0,1,5,4,1,1084.5,0,0,0 +5976,7319,13276,13275,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,3,0,5.91135571767281,5.757244326725264,1,0,-9,7,0,4,-39.76112431720767,0,0,0,52,1,4,1,-9,-9,2019,1,1,11,0,50,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.649903104450035,6.008013133516982,0,0,52,54.51,6,1,0,0,5,4,1,1084.5,0,0,0 +5977,7320,13277,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1004.383356876766,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,4,0,0,8,1,0,1494,0,0,0 +5978,7321,13278,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,4,8.374789818531987,8.262433290124262,0,3,0,0,0,-9,0,-961.178256059702,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,38,37,15,1,4,-9,0,12.81163659440816,12.81163659440816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.85,61.26,6,1,0,0,12,4,0,152,0,0,0 +5979,7322,13279,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,3,0,7.390447105212107,7.08987308900874,3,0,0,0,-9,0,-1136.976646290467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,12.45053693878122,0,1,1,0,0,7.034665950761259,0,0,53,46,6,1,0,0,2,2,1,285,0,0,0 +5980,7323,13280,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,1,0,8.153723532318566,7.94932394221408,3,0,0,0,-9,0,-1060.175992461439,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.174564417236341,8.357595540915142,0,3,43.12,26.45,6,1,0,0,1,4,1,450,0,0,0 +5981,7324,13281,13282,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,6.398704270937779,6.621825799511357,1,0,-9,8,0,1,-80.61968078526526,0,0,0,70,3,3,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.05713534061903,6.197079342747763,6.250106586607593,1,53.13,25.94,5,1,0,0,13,2,1,629.5,0,0,0 +5981,7324,13282,13281,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.129379139112742,5.744007276321345,1,0,-9,8,0,-1,-54.80383290631965,0,0,0,71,2,2,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,5.794049930298118,0,0,0,0,1,1,0,0,5.638466257328502,0,0,47.94,48.26,6,1,0,0,13,2,1,629.5,0,0,0 +5982,7325,13283,-9,13284,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1168.869381218665,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,1035,0,0,0 +5982,7325,13284,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,2,1,0,4,7.920480369777017,7.832253452164765,0,4,0,0,0,-9,0,-950.0552231209839,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,42,46,15,1,0,-9,0,10.28147734658345,10.28147734658345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,5,1,0,0,2,3,1,1035,0,0,0 +5982,7325,13285,-9,13284,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-912.8566623527439,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,1035,0,0,0 +5983,7326,13286,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,5,7.846906352150556,8.014937753227949,0,3,0,0,0,-9,0,-916.0130047625983,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,37,15,1,0,-9,0,9.391586069713499,9.391586069713499,0,0,0,0,0,0,0,1,1,0,6.45064843706225,0,11.03207996167829,3,60.02,56.42,6,1,0,0,6,4,1,627,0,0,0 +5984,7327,13287,13288,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-2,0,0,0,0,63,3,1,3,3,3,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,12,1,0,791.5,0,0,0 +5984,7327,13288,13287,-9,-9,1,1,1,63,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,45,0,2,0,0,0,0,61,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.15,33.33,5,1,0,0,12,1,0,791.5,0,0,0 +5985,7328,13289,13290,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,5,6.754463997712076,7.03536981223405,0,1,0,-9,8,0,4,-42.08194768689694,0,0,0,60,2,4,1,2,2,2019,1,2,5,0,39,38,15,1,0,1,0,3.3363747628293,3.3363747628293,0,0,0,0,0,0,0,0,0,0,4.989965454136763,0,0,0,57.06,57.76,6,1,0,0,2,4,1,2225,0,0,0 +5985,7328,13290,13289,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.516033683883057,8.378219412844903,0,1,0,-9,8,0,-4,49.90359052690485,0,0,0,64,1,5,1,2,2,2019,1,1,15,5,42,39,15,1,5,1,0,17.17435322546812,17.17435322546812,0,0,0,0,0,0,0,0,0,0,5.758570871167073,0,7.482013407140586,3,35.57,63.56,6,1,0,0,2,4,1,2225,0,0,0 +5986,7329,13291,-9,-9,-9,1,1,0,26,2,0,1,0,1,-9,2,1,0,4,7.761196524294975,7.821577791886174,0,4,0,0,0,-9,0,-979.3503204207764,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,37,15,1,0,-9,0,8.524493724765561,8.524493724765561,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,4,1,0,0,7,3,0,1058.5,0,0,0 +5986,7329,13292,-9,13291,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1117.403053073263,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,0,1058.5,0,0,0 +5987,7330,13293,13296,-9,-9,3,1,1,39,1,0,2,0,2,-9,8,3,1,3,0,6.496144887457063,6.828033227834744,2,0,-9,7,0,3,44.59798376164302,0,0,0,36,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.859258482624459,0,13.73506689518481,3,41.23,51.32,5,1,0,0,7,2,0,470,0,0,0 +5987,7330,13294,-9,13296,13293,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.335196639151,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,470,0,0,0 +5987,7330,13295,-9,13296,13293,2,1,0,17,2,0,2,0,2,-9,11,3,0,3,5.560403829637464,5.348886963753394,0,2,0,0,0,-9,0,-1148.12702751253,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,5,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.35,51.77,6,1,0,0,7,2,0,470,0,0,0 +5987,7330,13296,13293,-9,-9,1,1,0,36,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-3,30.07832183656904,0,0,1,39,2,3,3,2,-9,2019,4,3,11,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.8763537717316674,3,45.88,50.54,6,1,0,0,7,2,0,470,0,0,0 +5988,7331,13297,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,7.294065321711231,7.305220996202048,3,0,0,0,-9,0,-1005.742695432743,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.36779085043661,7.245732871927088,0,0,57.16,56.15,7,1,0,0,4,3,1,2243,0,0,0 +5989,7332,13298,-9,13301,13300,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.610623498603,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,9,4,1,335.75,0,0,0 +5989,7332,13299,-9,13301,13300,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.161510806707,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,4,1,335.75,0,0,0 +5989,7332,13300,13301,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.823729826073125,8.453645957631963,0,2,0,-9,16,0,0,-29.87724694047103,0,0,0,37,1,4,3,2,2,2019,2,2,6,0,45,48,15,1,0,3,0,15.72688855252964,15.72688855252964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.85,43.28,6,3,0,0,9,4,1,335.75,0,0,0 +5989,7332,13301,13300,-9,-9,2,1,0,37,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,16,0,0,-2.922293584798124,0,0,1,37,2,4,1,2,2,2019,3,1,7,0,0,30,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.787910478016133,0,0,3,57.16,56.15,6,3,0,0,9,4,1,335.75,0,0,0 +5990,7333,13302,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,4,7.47772730708108,8.058555002087049,7.70319629408786,3,0,0,0,-9,0,-992.6378946391286,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,20,20,15,1,0,-9,0,9.615157073770865,9.615157073770865,0,0,0,0,0,0,0,1,1,0,7.577739693618557,7.699576710504514,0,0,47.49,52.32,6,1,0,0,4,4,0,343,0,0,0 +5991,7334,13303,-9,-9,-9,1,1,0,23,2,0,0,1,1,0,7,2,0,5,6.598469008501823,6.543240596861543,0,3,0,0,0,-9,0,-1131.498786600759,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.94,58.68,6,2,0,0,9,2,0,723,0,0,0 +5992,7335,13304,13305,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-2,38.29593789859692,0,0,0,71,2,4,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.087796900898337,0,0,3,61.92,48.83,7,3,0,0,7,2,1,595.5,0,0,0 +5992,7335,13305,13304,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,6.974653912942435,6.994557908801617,1,0,-9,46,0,2,78.06927883984567,0,0,0,69,1,3,3,3,3,2019,4,2,2,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.477168938451274,7.022963307017216,3.725394767909869,3,50.77,53.45,6,3,0,0,7,2,1,595.5,0,0,0 +5993,7336,13306,-9,-9,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.642685226818505,8.401476933345846,0,3,0,0,0,-9,0,-1075.29933165493,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,45,45,15,1,0,-9,1,13.35823549922594,13.35823549922594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,5,1,0,0,9,5,0,379,0,0,0 +5994,7337,13307,-9,13308,13309,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.814865441526,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,0,342.3333333333333,0,0,0 +5994,7337,13308,13309,-9,-9,2,1,0,37,1,0,1,0,1,-9,1,1,0,4,2.537861763266545,2.757634228263329,0,2,0,-9,9,0,-6,-60.80325837109825,0,0,1,43,2,4,1,2,3,2019,1,1,11,0,5,0,15,1,0,1,0,.3076401671008468,.3076401671008468,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,52.88,4,1,0,0,9,2,0,342.3333333333333,0,0,0 +5994,7337,13309,13308,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,4,7.157094917836198,6.915544281877225,0,2,0,-9,9,0,6,-88.65843333078385,0,0,0,37,1,4,1,3,2,2019,1,2,11,0,21,18,15,1,0,1,0,11.133128709652,11.133128709652,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,42.1,2,1,0,0,9,2,0,342.3333333333333,0,0,0 +5995,7338,13310,13311,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,5.948773401115751,6.391671181570567,1,0,-9,56,0,-1,-12.91484243895268,0,0,0,74,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.589191161858871,6.513181960495256,69.93009660569048,2,56.18,53.85,6,1,0,0,8,2,1,780.5,0,0,0 +5995,7338,13311,13310,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,6.052890516313902,5.520614454587182,1,0,-9,10,0,1,68.34580673437364,0,0,0,73,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.455244544648261,5.672141082757612,0,0,42.51,25.12,3,1,0,0,8,2,1,780.5,0,0,0 +5996,7339,13312,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,2,1,0,4,8.80310119625125,8.735789195346184,0,3,0,0,0,-9,0,-942.4269462761569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,55,50,15,1,0,-9,0,11.09268020540571,11.09268020540571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,44.24,5,1,0,0,2,5,1,596,0,0,0 +5997,7340,13313,13314,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,5,0,6.653681037859931,6.893619078582571,1,0,-9,38,0,10,140.1301134392978,0,0,0,63,2,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.1555476106444448,6.95522929161393,22.41400342203145,1,62.39,56.71,6,1,0,0,9,2,0,537,0,0,0 +5997,7340,13314,13313,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,38,0,-10,-59.25463395403912,-9,0,0,73,3,5,3,-9,-9,2019,4,1,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,9,2,0,537,0,0,0 +5997,7341,13315,-9,13314,13313,3,1,1,43,2,0,0,0,2,-9,1,1,0,4,8.341139873137953,8.783914323022097,0,3,0,0,0,-9,0,-970.824118379683,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,12.92643061440728,12.92643061440728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,9,5,0,563,0,0,0 +5998,7342,13316,13317,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,6,0,-1,-29.88184808471363,0,0,0,63,2,5,1,3,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,13,3,1,988.5,0,0,0 +5998,7342,13317,13316,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,5,8.436336394204151,8.376640696717478,0,1,0,-9,6,0,1,9.657188619716912,0,0,0,62,2,4,3,3,3,2019,2,2,12,0,37,37,15,1,0,3,0,11.08854768632772,11.08854768632772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,50.77,6,1,0,0,13,3,1,988.5,0,0,0 +5999,7343,13318,13319,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.867233254358629,7.887311857006724,0,1,0,-9,37,0,-16,-62.10372071472304,0,0,0,75,3,5,3,2,2,2019,2,2,10,1,37,36,15,1,1,4,0,8.229114643035944,8.229114643035944,0,0,0,0,0,0,0,1,1,0,1.492892928532574,0,0,3,60.12,54.8,6,1,0,0,2,3,1,401.5,0,0,0 +5999,7343,13319,13318,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,5,0,4.76679453456085,4.946946595827398,1,0,-9,28,0,16,17.37433304447724,0,0,0,59,2,4,1,3,3,2019,3,1,6,0,0,24,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.082451883073372,4.891729077498571,0,0,60.02,56.42,7,1,0,0,2,3,1,401.5,0,0,0 +6000,7344,13320,-9,13321,13322,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.5461727919364,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,0,278.5,0,0,0 +6000,7344,13321,13322,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,4,7.471838170282105,7.755815178152611,0,2,0,-9,7,0,-1,38.11534480569022,0,0,1,37,2,4,1,2,2,2019,1,2,12,0,18,21,15,1,0,1,0,13.67642211135629,13.67642211135629,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,53.24,6,1,0,0,7,4,0,278.5,0,0,0 +6000,7344,13322,13321,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.657581382030978,8.588746474673531,0,2,0,-9,7,0,1,17.30422995324973,0,0,0,36,2,4,1,-9,-9,2019,1,1,10,0,40,45,15,1,1,1,0,16.01406125150308,16.01406125150308,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,4,0,278.5,0,0,0 +6000,7344,13323,-9,13321,13322,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.363872711626,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,0,278.5,0,0,0 +6001,7345,13324,-9,-9,-9,1,1,1,72,2,0,0,0,2,-9,4,3,0,3,0,7.186110792357675,7.484131670648075,3,0,0,0,-9,0,-933.7456525240735,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.092982823420374,7.515527386560794,0,0,50.37,52.72,6,1,0,0,2,3,0,991,0,0,0 +6002,7346,13325,-9,-9,-9,2,1,0,20,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1103.446735253638,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,1,1,1422,0,0,0 +6003,7347,13326,13328,-9,-9,1,1,1,54,1,0,3,0,1,-9,2,1,0,4,9.790596843010945,9.467003935124378,0,2,0,-9,30,0,1,-17.99474563709405,0,0,0,53,1,4,1,1,1,2019,1,2,8,0,42,44,15,1,0,1,0,48.99045770317123,48.99045770317123,0,0,0,0,0,0,0,0,0,0,6.473606949394655,0,0,0,55.19,54.26,6,2,0,0,8,5,1,1443,0,0,0 +6003,7347,13327,-9,13328,13326,4,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.8369104763009,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,1443,0,0,0 +6003,7347,13328,13326,-9,-9,2,1,0,53,1,0,3,0,1,-9,2,1,0,4,8.808468354147038,8.592703468110935,0,2,0,-9,30,0,-1,95.53663011411115,0,0,0,54,1,4,1,3,3,2019,1,1,9,0,40,42,15,1,0,1,0,19.45242269154533,19.45242269154533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,8,5,1,1443,0,0,0 +6003,7347,13329,-9,13328,13326,5,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-894.4998005686797,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,1443,0,0,0 +6003,7348,13330,-9,13328,13326,3,1,1,18,2,0,3,1,2,0,7,2,0,4,3.963006970152505,3.94170336929392,0,3,0,0,0,-9,0,-916.8428294347832,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,1,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.980787595986826,0,0,0,35.91,63.19,5,1,0,0,8,5,1,2281,0,0,0 +6004,7349,13331,13332,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,3,9.064543095503174,8.863049461182138,0,2,0,-9,19,0,2,-1.725976058486608,0,0,0,41,2,4,1,2,2,2019,1,2,6,0,70,70,15,1,0,1,0,14.6216167934956,14.6216167934956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,4,1,0,0,9,5,1,837,0,0,0 +6004,7349,13332,13331,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,4,8.003653180525221,7.770259040732325,0,2,0,-9,19,0,-2,-55.78865144486236,0,0,1,43,1,3,1,2,2,2019,1,1,8,0,30,30,15,1,0,1,0,9.383711001651935,9.383711001651935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,9,5,1,837,0,0,0 +6005,7350,13333,13334,-9,-9,1,1,1,62,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,7,0,7,0,0,0,0,55,3,1,3,-9,3,2019,4,2,19,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.3224332609101,1,36.03,40.6,3,1,1,1,12,1,0,530.5,0,0,0 +6005,7350,13334,13333,-9,-9,2,1,0,55,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-7,0,0,0,0,62,3,2,3,3,3,2019,4,1,30,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.5,20.97,1,1,0,1,12,1,0,530.5,0,0,0 +6006,7351,13335,13336,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.574786735043274,6.728542069446442,1,0,-9,51,0,3,-18.89429241181693,0,0,0,70,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,91.11576128128992,0,0,0,0,1,1,0,5.264065866840099,6.242676491547178,0,0,57.33,53.46,6,1,0,0,12,2,1,479.5,0,0,0 +6006,7351,13336,13335,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.769959769124895,5.642295982169398,1,0,-9,51,0,-3,90.72293806364536,0,0,0,73,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.332920626995944,5.879456983801297,5.48672928478857,3,40.07,54.57,6,1,0,0,12,2,1,479.5,0,0,0 +6007,7352,13337,13339,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,4,7.415594160159702,7.371735698259874,0,2,0,-9,3,0,-1,141.9108586858396,0,1,1,30,2,5,1,2,1,2019,1,2,9,0,22,23,15,1,0,1,0,9.67218051513799,9.67218051513799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,9,5,0,887.3333333333334,0,0,0 +6007,7352,13338,-9,13337,13339,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.1848412827501,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,0,887.3333333333334,0,0,0 +6007,7352,13339,13337,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,5,9.241909831121747,8.908066119339006,0,2,0,-9,3,0,1,23.64171144199541,0,0,0,29,2,4,1,-9,-9,2019,1,1,11,0,42,45,15,1,0,1,0,17.17999414949813,17.17999414949813,0,0,0,0,0,0,0,1,1,0,5.27428824239472,0,0,0,48.18,61.8,5,1,0,0,9,5,0,887.3333333333334,0,0,0 +6008,7353,13340,13341,-9,-9,2,1,1,85,1,0,0,0,1,-9,4,3,0,1,0,7.768648604889923,7.844613499549732,1,0,-9,10,0,11,59.6656898771295,0,0,0,74,2,3,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,1,0,7.415549320707632,0,0,0,0,1,1,0,7.091424195508726,7.758369686584089,0,0,49.07,37.11,4,1,0,0,7,3,1,401,0,0,0 +6008,7353,13341,13340,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,6.3981824375664,6.564949893921419,1,0,-9,10,0,-11,3.760700887522832,0,0,0,85,1,1,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.969048241853919,6.875179730646886,117.5753714991995,1,59.88,48.2,6,1,0,0,7,3,1,401,0,0,0 +6009,7354,13342,-9,-9,-9,1,1,1,19,2,0,0,1,2,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-953.8034059914631,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02793928544983,0,0,0,54.1,59.11,7,1,0,0,4,1,1,341,0,0,0 +6010,7355,13343,13344,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,2,7.694264349145921,7.914435568039935,2.4396124439406,1,0,-9,25,0,-2,84.63663667697087,0,0,0,48,2,3,1,2,2,2019,1,2,23,11,37,37,15,1,11,1,0,7.638231494932056,7.638231494932056,0,0,0,0,0,0,0,1,1,0,0,2.479278093787094,0,0,19.93,53.6,3,1,0,1,10,3,1,749.5,0,0,0 +6010,7355,13344,13343,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,3,6.715470616439307,6.769220976678113,0,1,0,-9,7,0,2,-120.3824427175757,0,0,0,46,2,2,1,3,2,2019,1,1,14,2,12,12,15,1,2,1,0,7.040812429050764,7.040812429050764,0,0,0,0,0,0,0,1,1,0,0,0,10.1701105077657,3,40.36,54.33,3,1,0,1,10,3,1,749.5,0,0,0 +6010,7356,13345,-9,13343,13344,3,1,1,26,2,0,0,0,2,-9,2,1,0,5,7.900718968257715,7.875651075695217,0,3,0,0,0,-9,0,-1069.02315668091,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,64,46,15,1,0,-9,1,4.850176985579718,4.850176985579718,0,0,0,0,0,0,0,1,1,0,0,0,23.82100660695814,3,51.73,58.82,7,1,0,0,10,3,1,575,0,0,0 +6010,7357,13346,-9,13343,13344,4,1,0,23,2,0,0,0,2,1,2,1,0,4,7.550900989866677,7.631135915527453,0,3,0,0,0,-9,0,-941.1043568430958,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,30,0,15,1,1,-9,1,6.996031411907786,6.996031411907786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,4,1,0,0,10,3,1,629,0,0,0 +6010,7358,13347,-9,13343,13344,5,1,1,21,2,0,0,0,2,-9,2,1,0,2,6.621616844996349,6.611887651668606,0,3,0,0,0,-9,0,-972.3211539400065,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,18,16,15,1,6,-9,1,4.680735454553822,4.680735454553822,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,54.22,2,1,0,0,10,2,1,1801,0,0,0 +6011,7359,13348,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,4,0,3.634608760215748,3.603743382060584,3,0,0,0,-9,0,-1042.730148278189,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,4.271206129010464,0,0,4.606659907007578,0,54.61234788884269,1,1,0,2.795059211397652,3.235586323129287,120.684497589246,3,55.01,24.79,1,1,0,0,10,1,1,529,0,0,0 +6011,7360,13349,-9,13348,-9,2,1,1,56,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-917.6337570003678,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.7708468063912999,0,0,0,53,54,6,1,0,0,10,1,1,1835,0,0,0 +6012,7361,13350,13351,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,9.762615791233172,9.583691094594702,0,1,0,-9,27,0,2,79.39863192084516,0,0,0,52,2,3,1,2,2,2019,1,2,11,0,41,37,15,1,1,1,0,40.18297421016191,40.18297421016191,0,0,0,0,0,0,0,1,1,0,6.246948089784943,0,0,0,50,50,5,1,0,0,1,5,1,1241.5,0,0,0 +6012,7361,13351,13350,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.216330582545259,7.406834960993719,6.858299295312724,1,0,-9,4,0,-2,-10.98369446752383,0,0,0,54,2,3,1,-9,-9,2019,1,1,12,0,22,37,15,1,2,1,0,10.24615806467777,10.24615806467777,0,0,0,0,0,0,0,1,1,0,0,6.397968296738983,0,0,48,49,5,1,0,0,1,5,1,1241.5,0,0,0 +6013,7362,13352,13354,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,4,9.344812929639652,9.218592061283493,0,2,0,-9,12,0,-8,0,0,0,1,47,2,3,1,2,2,2019,1,1,10,0,45,0,15,1,0,1,0,27.23389281148307,27.23389281148307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,2,5,1,477,0,0,0 +6013,7362,13353,-9,13352,13354,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.2770155013421,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,2,5,1,477,0,0,0 +6013,7362,13354,13352,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,3,9.257281454772773,9.153030607976561,0,2,0,-9,14,0,8,0,0,0,0,39,1,4,1,2,2,2019,1,2,6,0,42,0,15,1,0,1,0,21.57072708545594,21.57072708545594,0,0,0,0,0,0,0,0,0,0,.6048857596760866,0,0,0,55.36,51.57,6,1,0,0,2,5,1,477,0,0,0 +6014,7363,13355,-9,-9,-9,1,1,0,22,3,1,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-945.7501062764615,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.172964353014899,0,0,0,51.11,29.49,4,1,0,1,5,1,0,343.5,0,0,0 +6014,7363,13356,-9,13355,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-989.2013165802617,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,1,0,343.5,0,0,0 +6015,7364,13357,13358,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.695758792417815,6.540314575846971,1,0,-9,45,0,6,-120.6848785191752,0,0,0,67,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.50557468817221,6.415783139212592,0,0,60.3,46.58,6,1,0,0,10,3,1,436.5,0,0,0 +6015,7364,13358,13357,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,5,0,7.329259128512817,7.479468505010137,1,0,-9,45,0,-6,-7.808714730993395,0,0,0,73,2,3,3,3,3,2019,4,2,7,1,0,17,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.283574574948901,7.508363981823187,0,0,61.76,40.48,7,1,0,0,10,3,1,436.5,0,0,0 +6016,7365,13359,-9,13360,13363,4,1,1,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1081.199209482772,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.120243833034774,0,0,0,62.39,56.71,7,1,0,0,10,4,1,974.4,0,0,0 +6016,7365,13360,13363,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,5,7.967351723409793,7.966303005746323,0,2,0,-9,6,0,0,-164.1589090598691,0,0,0,47,1,4,1,3,2,2019,1,2,0,0,42,35,15,1,0,1,0,6.46037056750525,6.46037056750525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,56,7,1,0,0,10,4,1,974.4,0,0,0 +6016,7365,13361,-9,13360,13363,3,1,0,17,2,0,2,0,2,1,2,3,0,5,6.550014273590588,6.660606572748693,0,2,0,0,0,-9,0,-1104.070606002077,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,7,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,10,4,1,974.4,0,0,0 +6016,7365,13362,-9,13360,13363,5,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.0313182552034,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,1,974.4,0,0,0 +6016,7365,13363,13360,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.630511395272112,8.385527583612014,0,2,0,-9,6,0,0,38.64075326444652,0,0,0,47,2,5,1,3,2,2019,1,1,7,0,42,39,15,1,0,1,0,16.77982185877429,16.77982185877429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,10,4,1,974.4,0,0,0 +6017,7366,13364,13365,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,4,0,7.210239727374788,7.761338865702228,1,0,-9,52,0,1,71.79514735466923,0,0,0,71,1,4,3,3,-9,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.461835453725707,7.496896854244884,0,0,62.85,38.46,6,1,0,0,4,4,1,899,0,0,0 +6017,7366,13365,13364,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.363949502943465,8.213597249600832,1,0,-9,52,0,-1,81.39443742796701,0,0,0,72,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.978740738058864,8.069722099700726,0,0,60.12,54.8,7,1,0,0,4,4,1,899,0,0,0 +6018,7367,13366,13367,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,3,9.395253997338216,9.419227712976229,0,1,0,-9,19,0,1,-19.35912791129627,-9,0,0,61,1,3,3,3,3,2019,2,1,10,0,30,0,15,1,1,4,0,53.17249140881174,53.17249140881174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,5,1,0,0,2,5,1,282,0,0,0 +6018,7367,13367,13366,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,7.514355907123857,7.454686455729768,1,0,-9,19,0,-1,107.0850370849316,0,0,0,62,2,3,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.997856997313973,7.687337270174706,6.771564259980501,3,49.44,54.26,7,1,0,0,2,5,1,282,0,0,0 +6019,7368,13368,-9,13369,13370,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1079.616878540902,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,5,1,877,0,0,0 +6019,7368,13369,13370,-9,-9,2,1,0,27,1,1,1,0,1,-9,2,1,0,3,8.010283499958867,8.211286902786776,0,2,0,-9,3,0,2,1.951877769575369,0,1,1,25,1,4,1,-9,-9,2019,1,1,7,1,34,45,15,1,1,1,0,13.95096379569655,13.95096379569655,0,0,0,0,0,0,0,1,1,0,1.460450636304945,0,0,0,44.19,58.01,6,1,0,0,5,5,1,877,0,0,0 +6019,7368,13370,13369,-9,-9,1,1,1,25,1,1,1,0,1,-9,2,1,0,4,8.505326257017737,8.508962690738906,0,2,0,-9,3,0,-2,105.2527209490372,0,1,0,27,1,3,1,2,2,2019,1,2,24,10,42,60,15,1,10,1,0,12.77683117685005,12.77683117685005,0,0,0,0,0,0,0,1,1,0,.6787925703115917,0,0,0,27.09,61.91,6,1,0,0,5,5,1,877,0,0,0 +6020,7369,13371,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,5,0,8.933649296973853,8.573557224192577,3,0,0,0,-9,0,-979.7941344800818,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.582934817894827,8.586225685791318,0,0,54.69,57.47,6,1,0,0,2,5,1,811,0,0,0 +6021,7370,13372,13373,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,3,7.355548347172241,7.472103832024977,0,2,0,-9,20,0,0,138.7428671841064,0,0,1,43,2,3,1,2,2,2019,1,2,6,0,27,26,15,1,0,1,0,7.973617761094923,7.973617761094923,0,0,0,0,0,0,0,1,1,0,0,0,12.25393872052949,3,49.44,50.17,6,4,0,0,7,4,1,907.5,0,0,0 +6021,7370,13373,13372,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.318787728870637,8.704472565648578,0,2,0,-9,20,0,0,26.40237003970034,0,0,0,43,1,3,1,2,3,2019,1,1,7,0,35,35,15,1,0,1,0,18.00008716845551,18.00008716845551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,4,1,907.5,0,0,0 +6021,7370,13374,-9,13372,13373,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1033.555044019872,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,2,0,0,7,4,1,907.5,0,0,0 +6021,7370,13375,-9,13372,13373,4,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1048.420512199914,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,2,0,0,7,4,1,907.5,0,0,0 +6022,7371,13376,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,5.245066953478058,5.096570540632899,3,0,-9,0,1,0,-1093.740129861778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,9.383433752767308,0,0,0,1.804911705606466,0,1,1,0,5.918794350635899,5.165382209220882,0,0,15.64,30.45,4,1,0,0,7,2,0,461,0,0,0 +6023,7372,13377,13379,-9,-9,2,1,0,38,1,1,1,0,2,-9,2,1,0,4,8.424319720880298,8.293774993120083,0,2,0,-9,2,0,2,-6.491162785554828,-9,0,1,36,2,3,1,-9,-9,2019,1,1,11,0,24,0,15,1,0,1,0,24.18165365098911,24.18165365098911,0,0,0,0,0,0,0,1,1,0,3.960453178189278,0,0,0,41.3,60.77,5,1,0,0,7,5,1,2515,0,0,0 +6023,7372,13378,-9,13377,13379,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.086011654843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,1,2515,0,0,0 +6023,7372,13379,13377,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,3,9.083891594090705,9.020022140951536,0,2,0,-9,2,0,-2,-87.74378481986021,0,0,0,38,2,4,1,1,1,2019,1,2,11,0,60,65,15,1,0,1,0,17.18135153742595,17.18135153742595,0,0,0,0,0,0,0,1,1,0,5.900267160047117,0,0,0,52,54.51,6,1,0,0,7,5,1,2515,0,0,0 +6024,7373,13380,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-967.1693929117289,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.891583987648511,0,0,0,51.96,36.78,5,1,0,0,11,1,0,540,0,0,0 +6025,7374,13381,-9,-9,-9,1,1,1,95,3,0,0,0,1,-9,4,3,0,3,0,8.135550519996599,8.021087739750318,3,0,0,0,-9,0,-1134.976373651197,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,8.230668167532411,0,0,0,0,70.86739666490907,1,1,0,1.089568184349641,7.761107395254202,0,0,47.27,53.93,6,1,0,0,10,4,1,574,0,0,0 +6026,7375,13382,-9,13383,13385,6,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1129.641696621171,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,2,1,1,1230.4,0,0,0 +6026,7375,13383,13385,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,4,0,0,0,2,0,-9,19,0,1,0,0,0,1,37,1,5,1,2,2,2019,1,2,7,0,0,20,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,4,1,0,0,2,1,1,1230.4,0,0,0 +6026,7375,13384,-9,13383,13385,5,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.4889518227635,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,1,1,1230.4,0,0,0 +6026,7375,13385,13383,-9,-9,2,1,1,37,1,0,3,0,1,-9,2,1,0,5,0,0,0,2,0,-9,9,0,-1,0,0,0,0,38,2,4,1,-9,-9,2019,1,1,8,0,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,4,1,0,0,2,1,1,1230.4,0,0,0 +6026,7375,13386,-9,13383,13385,3,1,0,17,2,0,3,0,2,-9,7,2,0,3,6.158796482007116,6.311090868365132,0,2,0,0,0,-9,0,-834.4706838758566,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,13,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.1516398155643826,0,0,0,42.61,49.31,5,1,0,0,2,1,1,1230.4,0,0,0 +6027,7376,13387,13388,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,10,0,-1,17.81112950387703,0,0,0,67,2,5,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.80131473900235,0,17.53988095811668,3,54.2,57.49,1,1,0,0,13,3,1,1178.5,0,0,0 +6027,7376,13388,13387,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,5,8.033095016867136,7.978833803424918,6.235167364291952,1,0,-9,10,0,1,-55.4406603214331,0,0,0,66,2,4,3,3,3,2019,2,2,10,0,37,38,15,1,0,4,0,10.40506380414086,10.40506380414086,0,0,0,0,0,0,0,1,1,0,4.77713978866816,6.727848898996212,.8989322042557228,3,54.1,59.11,6,1,0,0,13,3,1,1178.5,0,0,0 +6028,7377,13389,13390,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-2,-67.87639074327038,0,0,0,79,1,2,1,3,2,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,11,3,1,1394,0,0,0 +6028,7377,13390,13389,-9,-9,1,1,1,79,1,0,0,0,1,-9,2,1,0,2,8.020171294004456,7.99567666329438,6.626154001178953,1,0,-9,59,0,2,-10.65856217682682,0,0,0,77,3,3,3,3,3,2019,2,2,8,1,18,18,15,1,1,4,0,15.61477670332524,15.61477670332524,1,0,0,0,0,0,0,1,1,0,3.864228819243969,7.356610167257881,0,0,55.36,27.6,6,1,0,0,11,3,1,1394,0,0,0 +6029,7378,13391,13392,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,3,9.073085357091571,9.087957769678468,0,2,0,-9,7,0,0,-117.2883126079325,0,0,0,59,2,4,3,2,2,2019,2,1,17,5,40,40,15,1,5,4,0,24.87407036587474,24.87407036587474,0,0,0,0,0,0,0,1,1,0,3.877876543208474,0,0,0,39.5,56.19,6,1,0,0,9,5,1,929.6666666666666,0,0,0 +6029,7378,13392,13391,-9,-9,1,1,0,59,1,0,1,0,2,-9,4,3,0,4,0,7.689726942687683,7.369497383829222,2,0,-9,7,0,0,6.523253968491684,0,0,0,59,1,3,1,2,1,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.086442765374962,7.885407986270584,0,0,45.91,59.89,6,1,0,0,9,5,1,929.6666666666666,0,0,0 +6029,7378,13393,-9,13392,13391,3,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1060.900431784635,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,5,1,929.6666666666666,0,0,0 +6030,7379,13394,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,2,8.211638630276084,8.303146896830595,0,3,0,0,0,-9,0,-1020.090476835744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,40,37,15,1,3,-9,0,11.82989435400993,11.82989435400993,0,0,0,0,0,0,0,0,0,0,3.538039390237409,0,0,0,28.07,54.03,2,1,0,0,2,4,0,315,0,0,0 +6031,7380,13395,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,8.249569740473502,8.644389857962418,3,0,0,0,-9,0,-996.2807280648718,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.564205229116159,8.270616760921696,0,0,57.9,51.84,6,1,0,0,9,5,1,173,0,0,0 +6032,7381,13396,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,8.005395055069572,8.031160609017801,0,3,0,0,0,-9,0,-1123.975148559808,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,44,15,1,0,-9,0,8.235994794059513,8.235994794059513,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,51,6,1,0,0,6,4,0,660,0,0,0 +6033,7382,13397,13398,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-4,133.6704282847407,0,0,0,71,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,9,3,1,543.5,0,0,0 +6033,7382,13398,13397,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,7.894257101235216,7.622280114791103,1,0,-9,45,0,4,10.18748955194275,0,0,0,67,3,3,3,3,2,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.312038395693788,7.92926491171972,0,0,41.69,25.64,3,1,0,0,9,3,1,543.5,0,0,0 +6034,7383,13399,13401,-9,-9,1,1,1,51,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,12,0,-4,125.8347707988109,0,0,0,55,2,2,1,2,3,2019,1,2,1,0,96,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.82244469977738,3,61.19,42.11,6,1,0,0,1,3,0,404,0,0,0 +6034,7383,13400,-9,13401,13399,3,1,0,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1022.677020649276,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,1,3,0,404,0,0,0 +6034,7383,13401,13399,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,2,8.045879787295295,7.626390652822758,0,2,0,-9,12,0,4,62.88202626854781,0,0,0,51,2,3,1,3,-9,2019,1,1,26,12,36,48,15,1,12,1,0,8.981002134142111,8.981002134142111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.68,35.19,3,1,0,0,1,3,0,404,0,0,0 +6035,7384,13402,-9,13403,13404,3,1,1,17,2,0,1,0,2,1,2,3,0,5,6.660412740840798,6.601122648918397,0,2,0,0,0,-9,0,-1076.586665338024,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,10,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,6,1,0,0,10,5,1,322.25,0,0,0 +6035,7384,13403,13404,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,5,7.82244217459762,7.760784031420138,0,2,0,-9,22,0,-7,-43.739086094682,0,0,1,51,1,3,1,2,2,2019,1,1,7,0,20,15,15,1,0,1,0,14.1728183868012,14.1728183868012,0,0,0,0,0,0,0,0,0,0,.5182022352501108,0,9.918263669467443,3,57.06,57.76,6,1,0,0,10,5,1,322.25,0,0,0 +6035,7384,13404,13403,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,3,9.719626271603278,9.663296638709637,0,2,0,-9,23,0,7,-75.4212626005399,0,0,0,44,2,5,1,2,2,2019,1,2,11,0,50,37,15,1,0,1,0,32.95127453652292,32.95127453652292,0,0,0,0,0,0,0,0,0,0,1.748806777455896,0,0,3,42.61,49.31,5,1,0,0,10,5,1,322.25,0,0,0 +6035,7384,13405,-9,13403,13404,5,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.8871733006962,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,10,5,1,322.25,0,0,0 +6035,7385,13406,-9,13403,13404,4,1,0,19,2,0,1,0,2,1,2,1,0,5,7.957365538718878,7.890630763866525,0,3,0,0,0,-9,0,-1001.285703597967,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,57,0,15,1,0,-9,1,5.230240283384399,5.230240283384399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,6,1,0,0,10,3,1,140,0,0,0 +6036,7386,13407,13408,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,5.962279047841459,5.742584940102185,1,0,-9,48,0,3,3.590670167991524,0,0,0,69,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.239100921573368,5.515618865081074,0,0,57.9,51.84,6,1,0,0,4,4,1,315,0,0,0 +6036,7386,13408,13407,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.297095259351265,8.254702704356239,1,0,-9,48,0,-3,27.39460902668147,0,0,0,72,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.247454010702961,8.560940622875645,0,0,57.16,56.15,2,1,0,0,4,4,1,315,0,0,0 +6037,7387,13409,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,4,6.732601658077528,7.233693270047307,0,3,0,0,0,-9,0,-827.9606949972725,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,21,16,15,1,0,-9,0,5.136619959539207,5.136619959539207,0,0,0,0,0,0,0,1,1,0,0,0,.7313691726958151,3,48.18,53.42,5,2,0,1,9,2,0,2449,0,0,0 +6038,7388,13410,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,4.868214969548102,4.566323451261753,3,0,0,0,-9,0,-1007.601085926091,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.05759058773745,4.632806101828286,0,3,44.01,32.36,3,1,0,0,5,1,1,337,0,0,0 +6039,7389,13411,13412,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,7.764893722656711,8.139844667986702,0,1,0,-9,40,0,-1,9.281518200201461,0,0,0,60,2,2,1,2,2,2019,1,1,11,0,43,42,15,1,0,1,0,6.940126489869981,6.940126489869981,0,0,0,0,0,0,0,0,0,0,2.14227508627618,0,14.18496556150846,3,52.87,40.77,7,1,0,0,2,5,1,3269,0,0,0 +6039,7389,13412,13411,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,2,8.577494087795854,8.805245686167906,0,1,0,-9,40,0,1,29.26020061906101,0,0,0,59,2,2,1,2,3,2019,1,2,9,0,50,50,15,1,0,1,0,16.46151685183144,16.46151685183144,0,0,0,0,0,0,0,0,0,0,4.317558899418731,0,0,3,54.37,44.27,6,1,0,0,2,5,1,3269,0,0,0 +6040,7390,13413,13415,-9,-9,2,1,0,34,1,0,2,0,3,-9,2,1,0,4,8.181077447741565,7.708170587399276,0,2,0,-9,12,0,-8,43.49410829340728,0,0,1,42,3,4,1,3,3,2019,1,1,10,0,32,20,15,1,0,1,0,12.79837420460713,12.79837420460713,0,0,0,0,0,0,0,1,1,0,8.094923400886676,0,0,0,54.1,56.59,6,3,0,0,6,4,1,1507,0,0,0 +6040,7390,13414,-9,13413,13415,6,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-904.1737501421902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,3,0,0,6,4,1,1507,0,0,0 +6040,7390,13415,13413,13417,13418,1,1,1,42,1,0,2,0,3,-9,2,1,0,4,8.003983981592478,8.082844903399071,0,2,0,-9,12,0,8,-42.85186280795346,0,0,0,34,3,4,1,3,3,2019,1,2,9,0,56,40,15,1,0,1,0,8.847040838599776,8.847040838599776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,51.29,6,3,0,0,6,4,1,1507,0,0,0 +6040,7390,13416,-9,13413,13415,5,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.745986961398,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,4,1,1507,0,0,0 +6040,7391,13417,13418,-9,-9,3,1,0,61,1,0,2,0,3,-9,2,1,0,3,7.368182519671694,8.014803398113095,7.473946010661898,2,0,-9,6,0,-4,-34.92974843903909,-9,0,0,65,3,3,3,3,3,2019,2,4,11,0,36,0,15,1,2,4,0,5.34563930159341,5.34563930159341,0,0,0,0,0,0,0,1,1,0,4.026713119196184,7.000130315110472,0,0,50,47,5,3,0,0,6,2,1,1120,0,0,0 +6040,7391,13418,13417,-9,-9,4,1,1,65,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,6,0,4,-99.61901278670703,-9,0,0,61,3,3,1,3,3,2019,3,3,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,3,0,0,6,2,1,1120,0,0,0 +6041,7392,13419,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-937.622886859299,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,5,1,0,0,5,1,0,1862,0,0,0 +6042,7393,13420,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,2,0,4.557845633517509,4.31666771411479,3,0,0,0,-9,0,-977.8876858622583,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.302890866527961,0,0,46.1,36.05,2,1,0,0,12,2,0,886,0,0,0 +6043,7394,13421,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,2,1,0,4,8.439582203605104,8.860262155392402,0,3,0,0,0,-9,0,-1026.928010303409,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,36,38,15,1,0,-9,0,18.49626192869454,18.49626192869454,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.01,58,6,4,0,0,8,5,0,940,0,0,0 +6044,7395,13422,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,2,1,0,1,6.826000155360295,6.753991527489755,0,3,0,0,0,-9,0,-1125.302467124739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,40,40,15,1,12,-9,0,2.683221393396404,2.683221393396404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,28,1,1,0,1,6,2,0,819,0,0,0 +6045,7396,13423,13424,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,4.274838020255728,4.505217546482184,1,0,-9,54,0,-4,79.30137973422447,0,0,0,75,3,2,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.670597039185071,4.209077876440086,0,0,50.94,53.44,7,1,0,0,9,3,1,220.5,0,0,0 +6045,7396,13424,13423,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,7.911263288099659,7.633800181508214,1,0,-9,54,0,4,-36.67607120582,0,0,0,71,3,4,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.06085069071356,0,0,48.46,22.67,6,1,0,0,9,3,1,220.5,0,0,0 +6046,7397,13425,13426,-9,-9,2,1,0,56,1,0,0,0,1,-9,1,1,0,3,8.316232206440613,8.281696565152812,0,1,0,-9,29,0,-6,12.4643807706327,-9,0,0,62,1,4,1,2,2,2019,1,1,12,0,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,9,5,1,628.5,0,0,0 +6046,7397,13426,13425,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,4,9.925321775250712,9.815117511614039,0,1,0,-9,29,0,6,-20.08662012508855,0,0,0,56,1,3,1,2,1,2019,1,2,10,0,51,53,15,1,0,1,0,34.5818583524909,34.5818583524909,0,0,0,0,0,0,0,1,1,0,4.099423759613625,0,0,0,52.48,54.33,6,1,0,0,9,5,1,628.5,0,0,0 +6046,7398,13427,-9,13425,13426,4,1,1,22,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1054.454293965646,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.14,57.85,5,1,1,0,9,1,1,1054,0,0,0 +6047,7399,13428,13429,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,4,7.830587261126816,7.830914245382053,0,1,0,-9,10,0,-20,-16.0583958797705,0,0,0,60,2,4,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,6.592464731287514,6.592464731287514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.64,44.93,5,1,0,0,10,4,1,845,0,0,0 +6047,7399,13429,13428,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.633781134758998,8.063243664924192,6.830855932391974,1,0,-9,10,0,20,-70.49207957536501,0,0,0,40,2,4,1,2,2,2019,1,2,5,0,30,33,15,1,0,1,0,8.052901533893236,8.052901533893236,0,0,0,0,0,0,0,0,0,0,6.943472121908096,6.761337317141802,0,0,54.2,57.49,6,1,0,0,10,4,1,845,0,0,0 +6048,7400,13430,13433,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,3,8.874539723083544,8.707887660794414,0,2,0,-9,5,0,2,-64.70780717504489,0,0,0,34,2,3,1,2,2,2019,1,1,12,2,35,35,15,1,2,1,0,19.9016759551326,19.9016759551326,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,4,1,706.75,0,0,0 +6048,7400,13431,-9,13433,13430,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.666285256772,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,706.75,0,0,0 +6048,7400,13432,-9,13433,13430,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.0489704327219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,706.75,0,0,0 +6048,7400,13433,13430,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,3,7.259545929469818,7.211542526226525,0,2,0,-9,5,0,-2,142.198793326552,0,0,1,36,2,3,1,2,2,2019,1,2,12,0,17,27,15,1,0,1,0,10.53880645942918,10.53880645942918,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,52.67,6,1,0,0,9,4,1,706.75,0,0,0 +6049,7401,13434,13435,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.891985906076816,8.094789296205439,1,0,-9,6,0,0,153.7292623277797,0,0,0,82,3,2,3,3,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.545667545965238,0,0,50.92,45.46,6,1,0,0,9,2,0,1101.5,0,0,0 +6049,7401,13435,13434,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,0,150.4787605697703,0,0,0,82,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,29.94782625767591,0,0,0,0,1,1,0,0,0,0,0,56.78,23.86,6,1,0,0,9,2,0,1101.5,0,0,0 +6050,7402,13436,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,2,0,6.703961785264717,6.636501216766853,3,0,0,0,-9,0,-1013.800799491018,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.88422830114933,0,0,56.59,34.16,6,1,0,0,11,2,1,341,0,0,0 +6051,7403,13437,13438,-9,-9,3,1,0,47,1,0,0,0,2,-9,1,1,0,4,7.86992716211723,8.215537840647297,0,1,0,-9,14,0,-2,-96.51387314404441,0,0,0,49,2,3,1,3,3,2019,1,1,13,2,16,10,15,1,2,1,0,26.12721765985147,26.12721765985147,0,0,0,0,0,0,0,0,0,0,4.780465932381554,0,0,0,43.2,59.97,2,1,0,0,5,4,1,624,0,0,0 +6051,7403,13438,13437,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,3,7.658536842012094,7.487769087156165,0,1,0,-9,14,0,2,-22.69281189930246,0,0,0,47,2,4,1,3,3,2019,1,3,6,0,60,40,15,1,0,1,0,3.293248941112537,3.293248941112537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,6,1,0,0,5,4,1,624,0,0,0 +6051,7404,13439,-9,13437,13438,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.002166748119699,7.940082550737971,0,3,0,0,0,-9,0,-1077.8447652655,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,5,42,0,15,1,5,-9,1,6.526581778836541,6.526581778836541,0,0,0,0,0,0,0,0,0,0,.3140477259011007,0,0,0,48.28,60.18,4,1,0,0,5,3,1,405,0,0,0 +6052,7405,13440,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1006.534052700955,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,40.56,6,1,1,0,13,1,0,509,0,0,0 +6053,7406,13441,13442,-9,-9,1,1,0,34,1,1,3,0,3,-9,8,3,1,1,0,0,0,2,0,-9,6,0,-4,0,0,0,1,38,2,4,3,2,2,2019,4,2,29,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.72,37.48,1,1,0,1,4,1,0,742.8,0,0,0 +6053,7406,13442,13441,-9,-9,2,1,1,38,1,1,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,6,0,4,0,0,0,0,34,3,1,3,2,2,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,119.6021927541334,1,43.2,59.97,3,1,1,1,4,1,0,742.8,0,0,0 +6053,7406,13443,-9,13441,13442,4,1,0,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-917.4588470885708,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,61,5,1,0,0,4,1,0,742.8,0,0,0 +6053,7406,13444,-9,13441,13442,3,1,1,12,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1007.635125739474,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,61,5,1,0,0,4,1,0,742.8,0,0,0 +6053,7406,13445,-9,13441,13442,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.8779670648298,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,4,1,0,742.8,0,0,0 +6054,7407,13446,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,3,8.567034517840764,8.48932854215035,0,3,0,0,0,-9,0,-927.1118269557664,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,18,6,50,49,15,1,6,-9,0,13.57349763657716,13.57349763657716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.22,58.43,3,1,0,0,2,5,1,492.5,0,0,0 +6054,7407,13447,-9,13446,-9,3,1,0,17,2,0,0,1,2,0,7,2,0,3,6.62925064964451,7.004937605825562,0,3,0,0,0,-9,0,-996.1268998761068,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,49.75,6,1,0,0,2,5,1,492.5,0,0,0 +6054,7408,13448,-9,13446,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,4,7.235810927070978,7.295808386820289,0,3,0,0,0,-9,0,-940.4589736175759,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,42,0,15,1,1,-9,1,4.412473761935425,4.412473761935425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.16,61.92,5,1,0,0,2,3,1,494,0,0,0 +6055,7409,13449,-9,13453,13451,2,1,1,20,2,0,2,0,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-958.1266645594922,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,24,9,0,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,.4445326852674335,0,0,0,23.4,60.03,2,2,0,0,8,1,0,708,0,0,0 +6055,7410,13450,-9,13453,13451,3,1,1,18,2,0,2,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1159.568326308077,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.76,55.68,5,2,1,0,8,2,0,3161,0,0,0 +6055,7411,13451,13453,-9,-9,5,1,1,52,1,0,2,0,2,-9,1,1,0,3,7.806733010627355,8.210640787017271,0,2,0,-9,8,0,1,55.27211535250628,0,0,0,51,2,4,3,-9,-9,2019,2,1,20,8,18,24,15,1,8,3,0,20.12740573811793,20.12740573811793,0,0,0,0,0,0,0,1,0,1,0,0,3.434470883187466,3,24.15,60.56,4,1,0,1,8,2,0,931,0,0,0 +6055,7411,13452,-9,13453,13451,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.8819773690245,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,2,0,0,8,2,0,931,0,0,0 +6055,7411,13453,13451,-9,-9,1,1,0,51,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-1,45.70652594419723,0,0,0,52,2,3,1,2,3,2019,3,5,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,39.27,60.24,3,4,0,1,8,2,0,931,0,0,0 +6056,7412,13454,13455,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,3,9.881883513428706,9.340127568611649,7.194233325762843,1,0,-9,7,0,10,-11.76373786734563,0,0,0,54,2,2,1,-9,-9,2019,1,2,15,4,70,80,15,1,4,1,0,27.32709528265515,27.32709528265515,0,0,0,0,0,0,0,1,1,0,6.467030047629419,7.493547956767999,78.24966849847935,2,50.58,40.29,3,1,0,1,9,5,1,364.5,0,0,0 +6056,7412,13455,13454,-9,-9,2,1,0,54,1,0,0,0,2,-9,1,1,0,2,0,5.870311592362833,6.078900482751929,1,0,-9,7,0,-10,68.32985329877275,-9,0,0,64,1,3,1,-9,-9,2019,1,1,17,6,0,0,15,1,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.230914034355728,0,0,0,28.86,40.23,5,1,0,1,9,5,1,364.5,0,0,0 +6057,7413,13456,13457,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,3,8.729710227022197,8.63060008860432,0,1,0,-9,3,0,1,-79.36194992813431,0,1,0,28,1,3,1,-9,-9,2019,1,1,8,0,47,49,15,1,0,1,0,12.7819337871644,12.7819337871644,0,0,0,0,0,0,0,0,0,0,2.844351528436516,0,0,0,54.96,53.17,5,1,0,0,12,5,1,794,0,0,0 +6057,7413,13457,13456,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,3,8.471978765822437,8.437849695414245,0,1,0,-9,3,0,-1,-24.98249881148818,0,1,1,29,2,3,1,-9,-9,2019,1,2,11,0,38,40,15,1,0,1,0,11.58859952027311,11.58859952027311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,12,5,1,794,0,0,0 +6058,7414,13458,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,2,1,0,2,9.16598683857781,8.876325812425288,0,3,0,-9,0,-9,0,-1016.753558006561,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,55,0,15,1,3,-9,0,14.93897323145224,14.93897323145224,0,0,0,0,0,0,0,0,0,0,4.796618809796714,0,0,0,49.51,45.31,6,1,0,0,11,5,0,764,0,0,0 +6059,7415,13459,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.203233629706941,7.434658920234798,0,3,0,0,0,-9,0,-1001.073691886991,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,30,0,15,1,0,-9,0,6.031076664173793,6.031076664173793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,6,1,0,0,9,3,0,216,0,0,0 +6060,7416,13460,13461,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,3,8.438159032164281,8.860813469007331,6.950464082650718,1,0,-9,43,0,0,-79.11721472991667,0,0,0,63,1,4,1,3,3,2019,1,2,5,0,60,50,15,1,0,1,0,13.01092437942694,13.01092437942694,0,0,0,0,0,0,0,0,0,0,6.230277330024871,6.929040805289588,9.181488330342336,3,64.26000000000001,39.17,6,1,0,0,4,5,1,891.5,0,0,0 +6060,7416,13461,13460,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,4,8.655306020148215,8.992273222330406,0,1,0,-9,43,0,0,-28.54117989497769,0,0,0,63,2,3,1,3,2,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.477618301547892,0,8.3024800916691,3,57.16,56.15,6,1,0,0,4,5,1,891.5,0,0,0 +6061,7417,13462,-9,13464,13463,6,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-989.7020005975535,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.38,50.07,2,2,0,0,4,1,1,312.6666666666667,0,0,0 +6061,7417,13463,13464,-9,-9,2,1,1,51,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,35,0,0,0,0,0,0,51,3,3,3,3,-9,2019,4,1,26,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.1,58.4,4,3,1,1,4,1,1,312.6666666666667,0,0,0 +6061,7417,13464,13463,-9,-9,1,1,0,51,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,35,0,0,0,0,0,0,51,3,3,3,3,3,2019,4,2,4,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.55,34.57,1,3,0,1,4,1,1,312.6666666666667,0,0,0 +6062,7418,13465,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,1,1,0,2,5.28947002824473,5.576449589842779,0,3,0,-9,0,-9,0,-900.9045246370669,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,7,50,0,15,1,7,-9,0,.545434794006646,.545434794006646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,40.3,4,1,0,1,7,2,1,207,0,0,0 +6062,7419,13466,-9,-9,13465,2,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.903763422114536,7.906546626445548,0,3,0,-9,0,-9,0,-812.3374266363093,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,30,0,15,1,2,-9,1,11.01917452516406,11.01917452516406,0,0,0,0,0,0,0,1,1,0,1.654338310471791,0,0,0,48,59,5,1,0,0,7,3,1,462,0,0,0 +6063,7420,13467,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,1,7.795794891588177,8.251957706658933,6.628074671351558,3,0,0,0,-9,0,-1052.412344230953,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,45,60,15,1,0,-9,0,8.126228172452384,8.126228172452384,0,0,0,0,0,0,0,1,1,0,5.95631039267067,6.902364299562662,0,0,64.57000000000001,23.25,5,1,0,0,5,4,1,645,0,0,0 +6064,7421,13468,13471,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,5,0,0,0,2,0,-9,12,0,-1,-86.99219879538103,0,0,1,35,2,2,1,2,2,2019,1,2,7,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.69,41.98,2,3,0,0,8,3,0,769,0,0,0 +6064,7421,13469,-9,13468,13471,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.4999386207663,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,769,0,0,0 +6064,7421,13470,-9,13468,13471,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.295754152264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,3,0,769,0,0,0 +6064,7421,13471,13468,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,2,8.065560564814126,8.362150092601274,0,2,0,-9,12,0,1,-50.08657627023179,0,0,0,34,2,5,1,3,3,2019,1,1,11,1,38,35,15,1,1,1,0,12.84102265662112,12.84102265662112,0,0,0,0,0,0,0,1,1,0,3.955523718263598,0,0,0,45.98,49.39,6,3,0,0,8,3,0,769,0,0,0 +6065,7422,13472,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,4,8.486812659552427,8.309610107363298,0,3,0,0,0,-9,0,-898.6205237987139,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,56,52,15,1,1,-9,0,10.37265982097059,10.37265982097059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,57.83,5,1,0,0,7,4,0,196,0,0,0 +6066,7423,13473,13474,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,5,9.637845810173152,8.905098380161396,0,1,0,-9,26,0,4,.2500140159564279,-9,0,0,50,2,4,1,-9,-9,2019,1,1,2,0,40,0,15,1,0,1,0,32.03752035273652,32.03752035273652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,3,0,0,8,5,1,3462,0,0,0 +6066,7423,13474,13473,-9,-9,1,1,0,50,1,0,0,0,2,-9,1,1,0,4,6.86928661773929,6.497642340560161,0,1,0,-9,26,0,-4,-82.73961687210112,-9,0,0,54,2,5,1,2,2,2019,1,2,8,0,50,0,15,1,0,1,0,1.423949330268669,1.423949330268669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,8,5,1,3462,0,0,0 +6066,7424,13475,-9,13474,13473,5,1,0,22,2,0,0,0,1,-9,2,1,0,3,7.967272322844361,7.944525818365372,0,3,0,-9,0,-9,0,-1018.425311026107,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,0,15,1,0,-9,1,6.886656055538778,6.886656055538778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,3,0,0,8,3,1,245,0,0,0 +6066,7425,13476,-9,13474,13473,4,1,0,25,2,0,0,0,1,-9,2,1,0,3,8.832303578512693,8.480679329123348,0,3,0,0,0,-9,0,-1094.651680544692,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,53,0,15,1,0,-9,1,12.41428643948065,12.41428643948065,0,0,0,0,0,0,0,0,0,0,2.348268923570346,0,0,0,54.96,53.17,6,4,0,0,8,5,1,478,0,0,0 +6067,7426,13477,-9,13479,13478,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.665468598687,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,1,0,1116.25,0,0,0 +6067,7426,13478,13479,-9,-9,4,1,1,24,1,1,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,1,-9,0,0,-9,1,0,24,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,1,0,10,1,0,1116.25,0,0,0 +6067,7426,13479,13478,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,1,1,-9,0,0,0,1,1,24,2,4,3,3,3,2019,4,4,24,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.06,47.51,5,1,0,0,10,1,0,1116.25,0,0,0 +6067,7426,13480,-9,13479,13478,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.3137832272906,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,1,0,1116.25,0,0,0 +6068,7427,13481,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,1,1,0,3,6.127436758135654,6.416274954801223,0,3,0,0,0,-9,0,-926.0551868518091,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,1,40,42,15,1,1,-9,0,1.421156863167414,1.421156863167414,0,0,0,0,0,0,0,1,1,0,.3968890874825142,0,0,0,45.43,46.97,3,1,0,0,12,2,1,852,0,0,0 +6069,7428,13482,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,4.702984650608738,4.946166931254769,3,0,0,0,-9,0,-1005.677451357698,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.331940242348758,5.052715691479158,0,0,44.9,26.98,3,1,0,0,12,2,0,1755,0,0,0 +6070,7429,13483,13484,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,1,8.77891793172288,8.448111181595616,0,1,0,-9,33,0,-6,-.6968410846583636,0,0,0,63,1,2,3,3,3,2019,2,1,18,6,45,15,15,1,6,4,0,9.220353390988649,9.220353390988649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,23.88,3,4,0,1,8,5,1,659,0,0,0 +6070,7429,13484,13483,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,2,0,8.272814512357265,8.406694833944648,1,0,-9,39,0,6,-170.3095401061536,0,0,0,57,1,1,1,2,2,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.388627125279077,8.462030800413958,0,0,39.02,48.65,5,1,0,0,8,5,1,659,0,0,0 +6071,7430,13485,-9,13488,13486,5,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.979124700128,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,4,1,845.75,0,0,0 +6071,7430,13486,13488,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.329937817886057,8.115162737073469,0,2,0,-9,19,0,6,-46.50850074727388,0,0,0,41,2,5,1,-9,2,2019,1,2,10,0,45,46,15,1,0,1,0,9.344306222140867,9.344306222140867,0,0,0,0,0,0,0,1,1,0,.83427136534269,0,0,3,48.87,58.55,6,1,0,0,8,4,1,845.75,0,0,0 +6071,7430,13487,-9,13488,13486,4,1,0,17,2,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,0,0,-9,0,-1047.647939757025,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4924109018887298,0,0,0,30.65,58.59,5,1,1,1,8,4,1,845.75,0,0,0 +6071,7430,13488,13486,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,5,8.154915328827608,8.23546579571048,0,2,0,-9,7,0,-6,22.48899924620778,0,0,1,47,1,4,1,-9,-9,2019,1,1,6,0,20,16,15,1,0,1,0,16.77274721325641,16.77274721325641,0,0,0,0,0,0,0,1,1,0,7.754191621558331,0,0,0,57.06,57.76,7,1,0,0,8,4,1,845.75,0,0,0 +6072,7431,13489,13490,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,3,9.186829069539538,8.637975575539707,0,1,0,-9,1,-9,0,12.33662990009012,-9,0,0,60,2,4,1,-9,-9,2019,1,1,17,5,50,0,15,1,5,1,0,21.28196689012069,21.28196689012069,0,0,0,0,0,0,0,0,0,0,3.456352745659716,0,0,0,49.22,47.48,6,1,0,0,12,5,1,359,0,0,0 +6072,7431,13490,13489,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.416771593816653,7.772716655384455,7.196668262025069,1,0,-9,35,-9,0,-20.8773840417585,-9,0,0,60,3,3,1,2,2,2019,1,2,12,1,24,0,15,1,1,1,0,7.211966619799953,7.211966619799953,0,0,0,0,0,0,0,0,0,0,3.306019885712598,7.078027049117187,0,0,55.37,48.71,5,1,0,1,12,5,1,359,0,0,0 +6073,7432,13491,13492,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,4.796860635976604,4.877886353521081,1,0,-9,47,0,0,-83.24848283703899,0,0,0,71,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.269264514814948,5.170047255700982,0,0,57.73,54.53,7,1,0,0,10,4,1,486,0,0,0 +6073,7432,13492,13491,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,8.338140254918754,8.419580503850787,1,0,-9,47,0,0,84.09033956116328,0,0,0,71,2,4,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.957424385165874,8.615731417792018,0,0,47.07,53.97,6,1,0,0,10,4,1,486,0,0,0 +6074,7433,13493,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,3,8.359070188450252,8.317902493717686,0,4,0,-9,0,-9,0,-997.0763265541199,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,40,0,15,1,3,-9,0,13.63529325816172,13.63529325816172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.26,52.47,2,1,0,1,7,4,0,190,0,0,0 +6075,7434,13494,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-968.0995324355233,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.78,32.48,3,1,0,0,1,1,1,450,0,0,0 +6075,7435,13495,13496,-9,-9,3,1,1,32,1,0,0,0,2,-9,1,1,0,2,6.365312859469523,7.0158987650086,0,1,0,-9,3,0,-10,-15.57446049617618,0,0,0,42,1,4,1,-9,-9,2019,1,2,20,8,50,35,15,1,8,1,0,1.923047705159164,1.923047705159164,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,57.08,2,1,0,1,1,2,1,1057.5,0,0,0 +6075,7435,13496,13495,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,4,6.816219378696945,6.648449177570223,0,1,0,-9,3,0,10,-56.37441731363381,0,0,1,32,2,2,1,-9,-9,2019,1,3,11,1,20,35,15,1,1,1,0,4.705712392544562,4.705712392544562,0,0,0,0,0,0,0,1,1,0,6.863326985439705,0,0,0,32.26,60.74,5,1,0,1,1,2,1,1057.5,0,0,0 +6076,7436,13497,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,1,1,0,3,7.772695387107622,7.626272639168842,0,3,0,0,0,-9,0,-946.5454813335341,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,20,18,15,1,0,-9,0,10.37769942182975,10.37769942182975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,5,0,0,8,3,1,970,0,0,0 +6077,7437,13498,13499,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.426933980822723,8.291354321121702,0,1,0,-9,33,0,-1,-1.815722448690399,0,0,0,51,2,3,1,2,2,2019,1,1,11,0,42,41,15,1,0,1,0,11.61194870168611,11.61194870168611,0,0,0,0,0,0,0,0,0,0,.5679082457182982,0,0,0,48.87,58.55,4,1,0,0,9,4,1,373,0,0,0 +6077,7437,13499,13498,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,6.524775407176334,6.656779282312446,0,1,0,-9,33,0,1,-52.11236830513164,0,0,0,50,2,4,1,2,3,2019,1,2,11,0,10,0,15,1,0,1,0,7.270326280348116,7.270326280348116,0,0,0,0,0,0,0,0,0,0,2.024588063226289,0,0,0,55.96,49.93,6,1,0,0,9,4,1,373,0,0,0 +6077,7438,13500,-9,13499,13498,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,6.90266995976289,6.806368415987671,0,3,0,0,0,-9,0,-966.3830573972712,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,26,0,15,1,1,-9,1,4.169562478088549,4.169562478088549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,4,1,0,0,9,2,1,1154,0,0,0 +6078,7439,13501,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,4,3,0,3,0,6.353802138498012,6.828102890912818,3,0,0,0,-9,0,-950.5114401427289,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.731916985591285,0,0,57.87,53.19,6,1,0,0,13,2,1,1178,0,0,0 +6079,7440,13502,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,3,7.507329029508525,8.061653734565944,0,3,0,0,0,-9,0,-1002.054244812523,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,28,37,15,1,1,-9,0,7.894127290750006,7.894127290750006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.27,25.3,5,1,0,0,11,3,1,446,0,0,0 +6080,7441,13503,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,2,1,0,3,6.903161395851023,7.134652185024306,5.047548902508193,3,0,-9,0,-9,0,-954.1002824737986,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,0,15,1,2,-9,0,9.262163187212346,9.262163187212346,0,0,0,0,0,0,0,1,1,0,0,4.900986049983352,0,0,50,47,5,3,0,0,5,2,1,1786,0,0,0 +6081,7442,13504,13506,-9,-9,3,1,1,52,1,0,1,0,1,-9,2,1,0,4,8.027952813951289,8.087114780840302,0,2,0,-9,5,0,1,-126.3715105917165,0,0,0,51,1,5,1,-9,-9,2019,1,1,10,0,45,42,15,1,0,1,0,9.221219815212763,9.221219815212763,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,0,2,3,1,1326.333333333333,0,0,0 +6081,7442,13505,-9,13506,13504,2,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1119.765585436659,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,2,0,0,2,3,1,1326.333333333333,0,0,0 +6081,7442,13506,13504,-9,-9,1,1,0,51,1,0,1,0,1,-9,1,1,0,5,0,0,0,2,0,-9,5,0,-1,43.86883939512303,0,0,0,52,1,4,1,3,1,2019,1,3,10,3,0,0,15,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.191306539306584,0,6.936506819567572,3,34.43,55.88,6,1,0,0,2,3,1,1326.333333333333,0,0,0 +6082,7443,13507,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,2,1,0,3,9.122282293688674,9.34906581010064,0,3,0,0,0,-9,0,-1004.870258257302,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,42,15,1,0,-9,0,26.13863386687822,26.13863386687822,0,0,0,0,0,0,0,1,1,0,7.783970532127729,0,0,0,55.61,50.3,6,1,0,0,6,5,0,1670,0,0,0 +6083,7444,13508,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,6.797999841516083,5.958254423829634,3,0,0,0,-9,0,-1002.537559102369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6632068427104669,6.485074078816782,0,0,43.42,62.33,5,1,0,0,2,2,1,1751,0,0,0 +6084,7445,13509,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,3,8.124859877119103,8.21980797290589,0,4,0,-9,0,-9,0,-1002.233806219051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,30,0,15,1,2,-9,0,11.80317326287504,11.80317326287504,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,4,1,0,0,10,3,1,386,0,0,0 +6084,7446,13510,-9,13509,-9,3,1,1,22,2,0,1,0,2,-9,2,1,0,3,8.381571257796582,7.996865533219085,0,3,0,-9,0,-9,0,-898.1393119896106,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,37,0,15,1,4,-9,1,13.37192964450142,13.37192964450142,0,0,0,0,0,0,0,1,1,0,1.29313805861657,0,0,0,32.5,56.8,4,1,0,0,10,4,1,1723,0,0,0 +6084,7447,13511,-9,13509,-9,2,1,1,18,2,0,1,1,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-935.7021557550597,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.23,68.42,2,1,0,0,10,4,1,441,0,0,0 +6085,7448,13512,13513,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,7.356851272047413,7.834263885115724,1,0,-9,7,0,2,23.83647636466722,0,0,0,74,1,3,3,3,3,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.021295166684208,7.319842242060989,0,0,45.36,29.2,7,1,0,0,9,4,1,1171.5,0,0,0 +6085,7448,13513,13512,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,3,0,7.251916754269655,7.92874700165039,1,0,-9,56,0,-2,-27.76672920392885,0,0,0,76,3,2,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.544647854299006,0,0,65.3,26.47,6,1,0,0,9,4,1,1171.5,0,0,0 +6086,7449,13514,-9,-9,-9,1,1,0,59,3,0,1,0,2,-9,2,1,0,2,7.517679675402945,7.760749802377335,6.072755190950629,4,0,0,0,-9,0,-1000.12353883655,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,5,24,21,15,1,5,-9,0,8.88328795107936,8.88328795107936,0,0,0,0,0,0,0,1,1,0,6.04349737315757,0,29.8090667488839,3,43.46,30.35,2,1,0,0,6,3,1,621,0,0,0 +6087,7450,13515,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,6.098358562514536,6.060253153551066,3,0,0,0,-9,0,-1001.782112145577,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,6.427996036463805,0,80.94834515328228,0,0,81.15851837583152,1,1,0,0,6.225168884921835,0,0,52,45,6,3,0,0,6,2,1,248,0,0,0 +6087,7451,13516,-9,13515,-9,2,1,0,61,3,0,0,0,1,-9,2,1,0,3,3.283633797695884,7.750333569729536,7.834233967011592,3,0,-9,0,-9,0,-859.751287938951,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,5,6,0,15,1,5,-9,1,.5089284434560308,.5089284434560308,0,0,0,0,0,0,0,1,1,0,0,7.675377041272244,36.78976482141168,3,33.37,60.58,3,3,0,0,6,3,1,250,0,0,0 +6088,7452,13517,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,4,7.129557659644392,7.058852381259298,0,2,0,-9,8,0,-7,55.92035434387215,0,0,1,-9,-9,-9,-9,2,3,2019,1,2,12,0,35,40,15,1,0,-9,0,4.428135319104965,4.428135319104965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,36.69,5,1,0,0,2,2,0,691.5,0,0,0 +6088,7452,13518,-9,13517,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.731309208387,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,691.5,0,0,0 +6088,7453,13519,-9,-9,-9,2,1,0,40,2,0,1,0,2,-9,2,1,0,4,6.571723931971827,6.746747776032703,0,2,0,-9,8,0,7,97.97330559546853,0,0,1,-9,-9,-9,-9,2,1,2019,1,1,13,1,16,0,15,1,1,-9,0,6.227403139080463,6.227403139080463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,41.17,5,1,0,0,2,2,0,607,0,0,0 +6089,7454,13520,13522,-9,-9,1,1,1,61,1,0,2,0,3,-9,2,1,0,4,8.655173437531086,8.940719970580343,0,2,0,-9,17,0,18,0,0,0,0,43,1,4,1,3,3,2019,1,2,10,0,40,40,15,1,0,1,0,22.87088221079979,22.87088221079979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,4,0,0,8,5,1,1128.75,0,0,0 +6089,7454,13521,-9,13522,13520,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.3422401922468,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,5,1,1128.75,0,0,0 +6089,7454,13522,13520,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.838620585303312,8.677166736915972,0,2,0,-9,17,0,-18,0,0,0,1,61,3,4,1,3,3,2019,1,1,7,1,35,37,15,1,1,1,0,23.08077436926624,23.08077436926624,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,4,0,0,8,5,1,1128.75,0,0,0 +6089,7454,13523,-9,13522,13520,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.7102627975281,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,5,1,1128.75,0,0,0 +6090,7455,13524,13525,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,7.463231541086034,7.813317122552219,1,0,-9,43,0,-6,-43.13053478407149,0,0,0,76,3,1,3,-9,-9,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,1,9.164625171722104,0,7.129784939432717,0,0,0,1,1,0,7.092095883524554,7.457922403903516,130.7600023630015,1,24.56,56.78,3,1,0,0,6,2,1,193.5,0,0,0 +6090,7455,13525,13524,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,43,0,6,-148.9861359219574,0,0,0,70,3,2,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,2.657568673808338,0,0,0,6.249425056066697,0,1,1,0,0,0,69.01207055841729,1,51.4,13.47,5,1,0,0,6,2,1,193.5,0,0,0 +6091,7456,13526,13527,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,4,7.903577388810753,7.807061826256759,0,2,0,-9,8,0,0,-16.28224848894993,0,0,1,33,1,4,1,-9,-9,2019,1,1,13,2,38,1,15,1,2,1,0,6.662381653102618,6.662381653102618,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,1,5,1,851.5,0,0,0 +6091,7456,13527,13526,-9,-9,1,1,1,33,1,2,2,0,1,-9,2,1,0,4,8.98347649114544,8.768514448605309,0,2,0,-9,8,0,0,16.50552067127341,0,0,0,33,1,4,1,-9,-9,2019,1,2,6,0,38,38,15,1,0,1,0,26.07729569053408,26.07729569053408,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,1,5,1,851.5,0,0,0 +6091,7456,13528,-9,13526,13527,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.99911290892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,1,5,1,851.5,0,0,0 +6091,7456,13529,-9,13526,13527,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-969.8613327487852,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,1,5,1,851.5,0,0,0 +6092,7457,13530,13532,-9,-9,3,1,1,38,1,0,0,0,2,-9,2,1,0,3,8.00174670170259,8.446561600281148,0,1,0,-9,2,0,2,-131.2655601711665,-9,0,0,36,2,3,1,-9,-9,2019,1,1,8,0,55,0,15,1,0,1,0,7.121014389959329,7.121014389959329,0,0,0,0,0,0,0,1,1,0,2.319549712086165,0,0,0,54.37,54.8,5,1,0,0,5,4,1,1001.333333333333,0,0,0 +6092,7457,13531,-9,13532,13530,2,1,0,17,2,0,0,0,2,1,2,3,0,4,7.625606432568143,7.507038985003446,0,1,0,0,0,-9,0,-1082.198257376378,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.71,62.41,6,1,0,0,5,4,1,1001.333333333333,0,0,0 +6092,7457,13532,13530,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,3,8.085119128866664,8.469148586313235,0,1,0,-9,2,0,-2,95.5395008306636,0,0,1,38,2,3,1,2,-9,2019,1,3,9,0,38,38,15,1,0,1,0,9.261248405592937,9.261248405592937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,1,0,0,5,4,1,1001.333333333333,0,0,0 +6093,7458,13533,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-961.9305263310296,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,16,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,5,1,0,0,12,1,0,272,0,0,0 +6094,7459,13534,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,1,1,0,4,9.527264755121845,9.464236152102822,0,3,0,0,0,-9,0,-894.1477488016753,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,3,60,60,15,1,3,-9,0,30.19344823276887,30.19344823276887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,43.48,5,1,0,0,8,5,1,409,0,0,0 +6095,7460,13535,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,4,0,5.688666705707285,6.206916001141104,3,0,0,0,-9,0,-911.0462555140633,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,9.5233775737927,0,0,0,3.037305888648445,49.10646031302046,1,1,0,6.927743091917766,5.733028629649379,0,0,54,51,6,1,0,0,7,2,0,1269,0,0,0 +6096,7461,13536,13537,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,4,7.65853519440008,7.553786863585274,0,1,0,-9,8,0,1,-118.2942850874859,0,0,0,48,1,1,1,-9,-9,2019,1,2,6,0,25,25,15,1,0,1,0,10.45780653851301,10.45780653851301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,2,4,1,505.5,0,0,0 +6096,7461,13537,13536,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,1,8.300466279291943,8.572680609092844,0,1,0,-9,8,0,-1,36.34219045907842,0,0,0,49,2,4,1,-9,-9,2019,1,1,24,11,36,36,15,1,11,1,0,17.40309151726528,17.40309151726528,0,0,0,0,0,0,0,0,0,0,2.573120838734197,0,0,0,30.6,18.53,2,1,0,0,2,4,1,505.5,0,0,0 +6097,7462,13538,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1013.26139595775,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.23990685486499,0,0,0,38.27,50.61,5,1,0,0,9,1,0,532,0,0,0 +6098,7463,13539,13540,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.513908087811833,7.423335422433479,0,1,0,-9,6,0,-6,111.4706555087464,0,0,0,62,2,1,3,3,3,2019,2,1,13,1,25,21,15,1,1,3,0,8.321571379169205,8.321571379169205,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,53.27,4,1,0,0,11,3,1,634,0,0,0 +6098,7463,13540,13539,-9,-9,1,1,1,62,1,0,0,0,2,-9,8,3,1,1,0,6.840621183204269,6.538919183718138,1,0,-9,6,0,6,-69.72972526394499,0,0,0,56,2,3,1,3,3,2019,3,2,17,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.909400822069346,0,0,36.83,19.91,3,1,0,0,11,3,1,634,0,0,0 +6099,7464,13541,-9,13542,13543,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.456154933265,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,630,0,0,0 +6099,7464,13542,13543,-9,-9,2,1,0,38,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,11,0,3,104.3538050939208,0,0,1,35,1,3,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,4,1,0,0,2,5,1,630,0,0,0 +6099,7464,13543,13542,-9,-9,1,1,1,35,1,1,3,0,1,-9,1,1,0,3,9.231273616171283,9.305423915210914,0,2,0,-9,13,0,-3,-59.06635270803777,0,0,0,38,3,3,3,2,3,2019,2,2,11,0,40,37,15,1,0,3,0,34.5151004047886,34.5151004047886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,1,0,0,2,5,1,630,0,0,0 +6099,7464,13544,-9,13542,13543,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.18384797093,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,630,0,0,0 +6100,7465,13545,13546,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,5,8.074226403543696,8.206154485076008,0,1,0,-9,16,0,1,-32.68039245303735,0,0,0,47,3,3,1,2,-9,2019,1,2,6,0,50,45,15,1,0,1,0,7.860472690267884,7.860472690267884,0,0,0,0,0,0,0,0,0,0,2.595715709425272,0,0,0,51.39,59.18,2,1,0,0,6,4,0,651.5,0,0,0 +6100,7465,13546,13545,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,3,8.147249927465783,7.930369657268772,0,1,0,-9,14,0,-1,5.144797660039072,0,0,0,48,2,5,1,3,3,2019,1,1,11,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.5323813928796836,0,0,0,52,54.51,5,1,0,0,6,4,0,651.5,0,0,0 +6101,7466,13547,-9,-9,-9,1,1,1,34,2,0,0,0,3,-9,1,1,0,3,7.175203007029765,7.499282206076845,0,3,0,0,0,-9,0,-920.82972143534,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,10,15,15,1,0,-9,0,15.52939815271476,15.52939815271476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.72,56.81,5,4,0,0,5,3,1,303,0,0,0 +6102,7467,13548,-9,-9,-9,1,1,1,35,3,0,0,0,1,-9,2,1,0,3,8.92334296141955,8.85959043372957,0,3,0,0,0,-9,0,-1020.940017796843,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,70,80,15,1,0,-9,0,13.87071672238874,13.87071672238874,0,0,0,0,0,0,0,0,0,0,9.771946459775496,0,0,0,56.95,46.69,6,1,0,0,10,5,1,878,0,0,0 +6103,7468,13549,13550,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,3,8.724959838012543,8.488078982287893,0,2,0,-9,6,0,4,-6.044362001371304,0,0,0,28,2,3,1,-9,-9,2019,1,1,9,0,42,52,15,1,0,1,0,12.41403182766564,12.41403182766564,0,0,0,0,0,0,0,1,1,0,0,0,4.333603499153044,3,55.36,51.57,6,1,0,0,7,4,1,530.3333333333334,0,0,0 +6103,7468,13550,13549,-9,-9,1,1,0,28,1,1,1,0,2,-9,2,1,0,3,7.394070225486659,8.090846381323553,0,2,0,-9,6,0,-4,50.01206912540354,0,1,1,32,2,3,1,2,-9,2019,1,2,6,0,28,28,15,1,0,1,0,8.753444468168921,8.753444468168921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,7,4,1,530.3333333333334,0,0,0 +6103,7468,13551,-9,13550,13549,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.7501799253863,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,530.3333333333334,0,0,0 +6104,7469,13552,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,3,0,6.679833994238926,6.359953079247901,3,0,0,0,-9,0,-1080.82271938849,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.580317699655381,0,0,40.87,47.29,5,1,0,0,13,2,1,406,0,0,0 +6104,7470,13553,-9,13552,-9,2,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.312190638919374,7.551636664567629,0,3,0,0,0,-9,0,-1200.41049064372,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,40,32,15,1,0,-9,1,4.63900157583876,4.63900157583876,0,0,0,0,0,0,0,1,1,0,2.288716825742504,0,0,0,53.37,52.37,5,1,0,0,13,3,1,1003,0,0,0 +6105,7471,13554,13555,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,4,7.184184974270275,7.541309875108246,0,2,0,-9,23,0,2,19.36115865474089,0,0,0,50,3,4,1,3,3,2019,1,1,12,1,22,22,15,1,1,1,0,8.527003617336756,8.527003617336756,0,0,0,0,0,0,0,1,1,0,.7889315036646773,0,0,0,43.48,60.97,6,1,0,0,12,4,1,460.3333333333333,0,0,0 +6105,7471,13555,13554,-9,-9,1,1,1,50,1,0,1,0,3,-9,2,1,0,4,8.510252489057805,8.404535291862732,0,2,0,-9,24,0,-2,-5.225026962460734,0,0,0,52,2,4,1,3,3,2019,1,2,11,0,60,59,15,1,0,1,0,8.792492938818285,8.792492938818285,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.43,45.88,6,1,0,0,12,4,1,460.3333333333333,0,0,0 +6105,7471,13556,-9,13554,13555,3,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1144.402046098411,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.361936140030934,0,0,0,51.98,55.03,6,1,0,0,12,4,1,460.3333333333333,0,0,0 +6106,7472,13557,13558,-9,-9,1,1,1,65,1,0,0,0,1,-9,2,1,0,4,7.933553342032132,7.828242814061178,6.667509204271531,1,0,-9,5,0,4,4.501741042727703,0,0,0,61,2,4,1,3,3,2019,1,2,13,2,19,18,15,1,2,1,0,14.60380772233997,14.60380772233997,0,0,0,0,0,0,0,0,0,0,0,6.312027129584636,0,0,48.87,58.55,6,1,0,0,5,5,1,1553.5,0,0,0 +6106,7472,13558,13557,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.979932980396617,9.115390095184285,0,1,0,-9,5,0,-4,-37.35791312828495,0,0,0,65,1,4,1,-9,-9,2019,1,1,23,9,90,40,15,1,9,1,0,10.28138307241313,10.28138307241313,0,0,0,0,0,0,0,0,0,0,2.565605847035635,0,7.954353108685754,3,39.48,58.88,6,1,0,0,5,5,1,1553.5,0,0,0 +6107,7473,13559,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,0,6.330748363966131,6.664543156810128,3,0,0,0,-9,0,-1041.191563492564,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.425177271697575,0,0,66.72,14.06,6,1,0,0,12,2,0,73,0,0,0 +6108,7474,13560,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,6.7082301107386,6.565772188339249,3,0,0,0,-9,0,-934.9726907184254,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,5.342921107664606,0,0,37.10789207703959,1,1,0,4.769849665026557,6.220486385084514,0,0,57,19,4,1,0,0,5,2,1,1403,0,0,0 +6109,7475,13561,-9,13562,13563,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.0441922587576,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,464,0,0,0 +6109,7475,13562,13563,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,4,8.083390480029523,7.91825291189927,0,2,0,-9,7,0,-2,-31.11420274693933,0,1,1,31,2,3,1,2,2,2019,1,2,11,0,30,32,15,1,2,1,0,11.73940425162578,11.73940425162578,0,0,0,0,0,0,0,1,1,0,.5908522919934456,0,0,0,47,57,5,1,0,0,13,4,1,464,0,0,0 +6109,7475,13563,13562,-9,-9,2,1,1,31,1,1,1,0,2,-9,2,1,0,3,8.112445153545606,7.841112815882656,0,2,0,-9,7,0,2,33.87212287545538,0,0,0,29,2,4,1,-9,-9,2019,1,1,12,2,37,40,15,1,2,1,0,7.586436022802166,7.586436022802166,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,50.15,5,1,0,0,13,4,1,464,0,0,0 +6110,7476,13564,13565,-9,-9,1,1,1,43,1,0,0,0,3,-9,3,3,0,1,7.421907775485756,7.209381990594358,0,1,0,-9,3,0,13,44.09133109080586,0,0,0,30,2,5,2,-9,-9,2019,4,2,21,9,20,0,15,3,9,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.16,47.74,2,1,1,1,2,3,0,611,0,0,0 +6110,7476,13565,13564,-9,-9,2,1,0,30,1,0,0,0,2,-9,7,2,0,5,6.76477881761183,6.871326419164201,0,1,0,-9,3,0,-13,-20.51077271152849,1,0,1,43,3,1,3,-9,-9,2019,4,1,13,1,15,25,15,2,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,5,1,0,1,2,3,0,611,0,0,0 +6111,7477,13566,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,6.889323362707604,6.660819052299868,3,0,0,0,-9,0,-1103.856175328811,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.112301823649035,6.937065410601601,5.106103156210001,3,45.43,38.94,6,1,0,0,11,2,1,155,0,0,0 +6112,7478,13567,-9,-9,-9,1,1,0,23,2,0,0,1,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1008.716042087348,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.59,43.84,7,1,0,0,11,2,0,121,0,0,0 +6113,7479,13568,-9,13571,13570,3,1,0,10,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.860231437825,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,661,0,0,0 +6113,7479,13569,-9,13571,13570,6,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-869.9465415188643,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,12,4,1,661,0,0,0 +6113,7479,13570,13571,-9,-9,1,1,1,38,1,1,4,0,1,-9,2,1,0,4,8.308049090193872,8.517665081004461,0,2,0,-9,9,0,-2,-72.4880937518473,0,0,0,40,1,2,1,1,-9,2019,1,2,11,0,39,39,15,1,0,1,0,14.73879218071101,14.73879218071101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,6,1,0,0,12,4,1,661,0,0,0 +6113,7479,13571,13570,-9,-9,2,1,0,40,1,1,4,0,1,-9,2,1,0,2,8.69344392378019,8.538752401329123,0,2,0,-9,9,0,2,-16.48036648160633,0,0,1,38,1,4,1,2,1,2019,1,1,25,12,46,35,15,1,12,1,0,13.71116738199833,13.71116738199833,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.6,46.24,2,1,0,1,12,4,1,661,0,0,0 +6113,7479,13572,-9,13571,13570,4,1,0,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.415573169538,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,12,4,1,661,0,0,0 +6113,7479,13573,-9,13571,13570,5,1,0,5,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.1209272242288,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,661,0,0,0 +6114,7480,13574,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,7.632795001096666,7.40075918386083,3,0,0,0,-9,0,-1067.028031943792,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.497587405972611,0,0,0,1,1,0,.2905573452943228,7.560998525245322,0,0,64.07000000000001,29.55,7,1,0,0,9,3,1,322,0,0,0 +6115,7481,13575,-9,-9,-9,1,1,1,44,3,0,1,0,2,-9,2,1,0,4,8.696952228106079,8.706295605420806,0,4,0,0,0,-9,0,-945.1740658555252,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,17.45485973193137,17.45485973193137,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,1,7,4,1,271,0,0,0 +6116,7482,13576,-9,13579,13577,4,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-855.5504217581346,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,11,5,1,286.25,0,0,0 +6116,7482,13577,13579,-9,-9,2,1,1,52,1,0,3,0,1,-9,2,1,0,5,9.555757748279971,9.286910029883161,0,2,0,-9,7,0,4,43.31662938667292,0,0,0,48,1,4,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,33.58250353467835,33.58250353467835,0,0,0,0,0,0,0,1,1,0,3.734049095262617,0,0,0,57.06,57.76,6,1,0,0,11,5,1,286.25,0,0,0 +6116,7482,13578,-9,13579,13577,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.168876143109,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,5,1,286.25,0,0,0 +6116,7482,13579,13577,-9,-9,1,1,0,48,1,0,3,0,1,-9,1,1,0,4,9.26146741555257,9.00372962447287,0,2,0,-9,27,0,-4,-70.31533521839624,0,0,0,52,1,5,1,1,1,2019,1,2,10,0,50,46,15,1,1,1,0,21.43628798796861,21.43628798796861,0,0,0,0,0,0,0,1,1,0,8.527327508771162,0,0,0,50,54,6,1,0,0,11,5,1,286.25,0,0,0 +6116,7483,13580,-9,13579,13577,3,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1033.587934767766,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,11,5,1,2298,0,0,0 +6117,7484,13581,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,6.909396487636761,6.748638908657168,3,0,0,0,-9,0,-786.1674610098995,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.989927369787647,6.881448198522485,0,0,61.11,48.86,7,1,0,0,6,2,1,902,0,0,0 +6118,7485,13582,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,4,0,6.945971081946409,6.874432742307595,3,0,-9,0,1,0,-996.3145803582191,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.068148764186805,0,0,40.7,47.27,5,1,0,0,12,2,0,335,0,0,0 +6119,7486,13583,-9,13585,13586,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.386521433708,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,517.5,0,0,0 +6119,7486,13584,-9,13585,13586,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.061116469846,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,4,1,517.5,0,0,0 +6119,7486,13585,13586,-9,-9,1,1,0,37,1,0,2,0,1,-9,1,1,0,3,7.183914337651865,7.437368014505823,0,2,0,-9,20,0,0,31.69514220556947,0,0,1,37,1,5,1,2,2,2019,1,2,21,9,15,0,15,1,9,1,0,13.17382218186882,13.17382218186882,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.13,56.51,4,1,0,0,11,4,1,517.5,0,0,0 +6119,7486,13586,13585,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,5,8.342177659889561,8.387637271701781,0,2,0,-9,20,0,0,-25.64076623194879,0,0,0,37,1,3,1,1,1,2019,1,1,8,1,60,70,15,1,1,1,0,6.6636387131809,6.6636387131809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,11,4,1,517.5,0,0,0 +6120,7487,13587,13588,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,3,8.54376856473168,7.952531490129317,0,1,0,-9,6,0,-7,-122.8043572736761,0,0,0,63,3,3,3,2,2,2019,2,1,10,0,40,40,15,1,0,4,0,10.88529735532561,10.88529735532561,0,0,0,0,0,0,0,1,1,0,1.55244874593542,0,0,0,58.32,50.22,5,1,0,0,7,4,0,1332,0,0,0 +6120,7487,13588,13587,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,6.590709337599813,6.62541361969183,1,0,-9,6,0,7,172.6283965649107,0,0,0,56,2,3,1,3,-9,2019,3,2,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.511634560926109,12.73207509042889,3,43.26,54.35,6,1,0,0,7,4,0,1332,0,0,0 +6121,7488,13589,13590,-9,-9,1,1,0,38,1,1,1,0,1,-9,2,1,0,3,8.594924921564447,8.29088696507541,0,2,0,-9,15,0,0,2.971717524798919,0,0,1,38,1,3,1,2,2,2019,1,2,17,7,40,45,15,1,7,1,0,13.91300930606923,13.91300930606923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.75,49.49,4,1,0,0,8,5,1,990,0,0,0 +6121,7488,13590,13589,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,3,9.037973081673645,8.809509846111336,0,2,0,-9,9,0,0,-51.77636106383154,0,0,0,38,1,3,1,2,2,2019,1,1,10,0,40,39,15,1,0,1,0,15.30524912554656,15.30524912554656,0,0,0,0,0,0,0,1,1,0,3.093660359303611,0,0,0,38.09,53.01,4,1,0,0,8,5,1,990,0,0,0 +6121,7488,13591,-9,13589,13590,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.729361813262,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,5,1,990,0,0,0 +6122,7489,13592,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,4,8.373352912864775,7.984972824512234,0,3,0,0,0,-9,0,-860.3021909795133,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,43,38,15,1,0,-9,0,9.90630631481298,9.90630631481298,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,4,1,0,0,5,4,1,1557,0,0,0 +6123,7490,13593,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,3,7.861159819238671,7.87841735710508,0,3,0,0,0,-9,0,-962.3036466004278,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,38,0,15,1,0,-9,0,7.789873434323615,7.789873434323615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,6,1,0,0,1,3,1,729,0,0,0 +6123,7491,13594,-9,13593,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,6.757622177240938,6.744381262631236,0,3,0,0,0,-9,0,-914.1324633471006,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,50,0,15,1,0,-9,1,2.385379168657713,2.385379168657713,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,1,2,1,624,0,0,0 +6124,7492,13595,13596,-9,-9,1,1,0,58,1,0,0,0,3,-9,2,1,0,4,8.384538015085351,8.398032905376875,0,1,0,-9,6,0,11,-8.061486737147185,0,0,0,47,2,4,1,3,2,2019,1,2,13,2,38,37,15,1,2,1,0,14.558116722332,14.558116722332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.72,55.3,6,1,0,0,5,5,1,363,0,0,0 +6124,7492,13596,13595,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.544706283531211,8.666685537916212,0,1,0,-9,6,0,-11,-49.32527091989902,0,0,0,58,3,4,1,2,2,2019,1,1,8,0,50,40,15,1,0,1,0,15.17461497569675,15.17461497569675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,5,5,1,363,0,0,0 +6125,7493,13597,13598,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,3,7.359199370122872,7.761463508622619,6.038346489013059,1,0,-9,39,0,0,-31.72484816346098,0,0,0,61,1,5,1,3,3,2019,1,2,8,0,20,15,15,1,0,1,0,11.22668974313335,11.22668974313335,0,0,0,0,0,0,0,0,0,0,6.979046372233984,0,9.150779911006349,3,54.9,54.53,6,1,0,0,9,5,1,276,0,0,0 +6125,7493,13598,13597,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,5,8.784220418608935,8.79241191561125,0,1,0,-9,6,0,0,79.31343088949262,0,0,0,61,1,3,1,1,2,2019,1,1,6,0,42,43,15,1,0,1,0,18.10437387789238,18.10437387789238,0,0,0,0,0,0,0,0,0,0,.5789881493597389,0,0,0,57.06,57.76,7,1,0,0,9,5,1,276,0,0,0 +6125,7494,13599,-9,13597,13598,3,1,0,32,2,0,0,0,1,-9,2,1,0,4,7.563985418626194,7.596595714168855,0,3,0,0,0,-9,0,-1089.195630668292,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,33,26,15,1,0,-9,1,8.412026523490514,8.412026523490514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.07,52.7,6,1,0,0,9,3,1,390,0,0,0 +6126,7495,13600,13601,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,3,9.004128258454719,8.988757460986482,0,1,0,-9,9,0,3,18.05023023549958,0,0,0,64,3,4,1,3,2,2019,1,2,7,0,55,50,15,1,0,1,0,14.01034082508422,14.01034082508422,1,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,41.99,6,1,0,0,6,5,1,735.5,0,0,0 +6126,7495,13601,13600,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,4,8.115399209926219,7.962672561116109,0,1,0,-9,9,0,-3,144.257179121762,0,0,0,67,2,3,1,3,3,2019,1,1,6,0,28,40,15,1,0,1,0,13.5219882789829,13.5219882789829,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.03,40.23,2,1,0,0,6,5,1,735.5,0,0,0 +6127,7496,13602,-9,-9,-9,3,1,0,52,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1074.230722300265,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.04,55.86,6,1,1,0,9,1,1,876,0,0,0 +6128,7497,13603,-9,-9,-9,1,1,0,102,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-894.4715113089877,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.403554887600016,0,0,0,51.97,27.61,5,1,0,0,2,1,0,494,0,0,0 +6129,7498,13604,13605,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.682395852976226,8.97966910931949,0,1,0,-9,4,0,0,74.35701033248904,0,0,0,57,1,4,1,-9,-9,2019,1,1,16,5,52,20,15,1,5,1,0,15.99538087173744,15.99538087173744,0,0,0,0,0,0,0,0,0,0,.771591766068459,0,0,3,48.3,52.29,6,1,0,0,10,5,1,604,0,0,0 +6129,7498,13605,13604,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.821052858999025,8.748695713667249,5.474321675239137,1,0,-9,4,0,0,-30.85588458131286,0,0,0,57,2,3,1,2,2,2019,1,2,10,0,37,37,15,1,0,1,0,21.55076664699091,21.55076664699091,0,0,0,0,0,0,0,0,0,0,3.289347186482059,5.576963256421378,0,0,48.87,58.55,6,1,0,0,10,5,1,604,0,0,0 +6130,7499,13606,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,2,7.476600743059824,7.302820074141289,0,3,0,0,0,-9,0,-930.4820945634408,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,20,20,15,1,0,-9,0,10.42620099778883,10.42620099778883,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.96,39.65,6,1,0,0,12,3,0,514,0,0,0 +6131,7500,13607,13608,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.826448663673609,8.083277601564651,1,0,-9,48,0,-2,64.49208848695275,0,0,0,69,2,4,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.384952826154299,8.078764529707545,0,0,57.16,56.15,6,1,0,0,6,5,1,490.5,0,0,0 +6131,7500,13608,13607,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,8.446531301525059,8.043501513591913,1,0,-9,48,0,2,-26.75963358202742,0,0,0,67,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.321131300916045,8.57956594886377,0,0,48.28,60.18,7,1,0,0,6,5,1,490.5,0,0,0 +6132,7501,13609,13610,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,3,9.285096253796061,9.372517350921138,0,1,0,-9,38,0,-15,100.1394056709465,0,0,0,73,2,3,3,3,3,2019,2,2,8,1,50,48,15,1,1,4,0,23.47041897401415,23.47041897401415,0,0,0,0,0,0,0,1,1,0,2.542419587528149,0,0,0,57.33,53.46,6,1,0,0,2,5,1,454,0,0,0 +6132,7501,13610,13609,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,15,-60.44837953433806,0,0,0,58,1,3,1,-9,-9,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,6,1,0,0,2,5,1,454,0,0,0 +6133,7502,13611,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1047.791832445228,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,12,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.215964041966481,0,0,0,58.19,26.04,6,1,0,0,2,1,1,784,0,0,0 +6134,7503,13612,13613,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.42152550892027,8.192488973561158,1,0,-9,46,0,5,-87.56690713776619,0,0,0,68,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.123951724539187,8.196678227992916,0,0,57.33,53.46,6,1,0,0,7,4,1,484.5,0,0,0 +6134,7503,13613,13612,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,7.396954581262712,7.398792437159692,1,0,-9,46,0,-5,78.0054757692379,0,0,0,73,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.073160091775867,7.383173788517808,.5850370185725502,3,53.59,49.64,6,1,0,0,7,4,1,484.5,0,0,0 +6135,7504,13614,-9,13615,13616,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.2880896030946,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,10,3,1,958.6666666666666,0,0,0 +6135,7504,13615,13616,-9,-9,2,1,0,24,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,3,0,0,53.32065019944238,0,1,1,33,1,3,1,-9,-9,2019,3,1,22,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.76397391637227,0,1.343320386326831,3,11.52,51.63,6,3,0,0,10,3,1,958.6666666666666,0,0,0 +6135,7504,13616,13615,-9,-9,1,1,1,33,1,1,1,0,1,-9,1,1,0,3,8.074408753549857,8.070595720944247,0,2,0,-9,3,0,9,72.16179722423905,0,0,0,24,2,3,3,2,1,2019,2,2,13,3,40,35,15,1,3,3,0,7.140031777046127,7.140031777046127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,52.72,6,2,0,0,10,3,1,958.6666666666666,0,0,0 +6136,7505,13617,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,2,1,0,4,6.957762425537389,6.836342715533537,0,3,0,0,0,-9,0,-1011.845552158129,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,20,20,15,1,0,-9,0,5.614126776489748,5.614126776489748,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,7,1,0,0,13,2,1,658,0,0,0 +6137,7506,13618,13619,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,4.48432027169625,4.837062854163695,1,0,-9,6,0,-3,22.12808772988173,0,0,0,79,2,3,3,3,-9,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.612452990525687,4.580211172168799,117.6325907487561,1,36.54,57.54,3,1,0,0,11,2,1,2958.5,0,0,0 +6137,7506,13619,13618,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,4.386150093077794,4.268883799408973,1,0,-9,6,0,3,-58.43727994951405,0,0,0,76,3,3,3,3,1,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.302708150953256,4.353632862533968,0,0,54,46,6,1,0,0,11,2,1,2958.5,0,0,0 +6138,7507,13620,13621,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,4,8.684337750643548,8.576497854488991,0,1,0,-9,3,0,-2,77.70399878913895,0,1,0,30,1,4,1,1,1,2019,1,2,7,0,50,50,15,1,0,1,0,13.96100407701149,13.96100407701149,0,0,0,0,0,0,0,0,0,0,5.298367197675078,0,0,0,58.72,51.29,6,1,0,0,8,5,0,1170,0,0,0 +6138,7507,13621,13620,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.39327155351447,8.726380940801111,0,1,0,-9,3,0,2,-39.7454750310302,0,0,1,28,1,4,1,-9,-9,2019,1,1,15,3,50,44,15,1,3,1,0,13.67719090076483,13.67719090076483,0,0,0,0,0,0,0,0,0,0,2.673276357007354,0,0,0,48.81,59.91,5,1,0,0,8,5,0,1170,0,0,0 +6139,7508,13622,13623,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.881178409316519,8.510647049256844,1,0,-9,47,0,-2,-109.9691785728068,0,0,0,70,1,4,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.590567156681333,8.083090225726256,0,0,57.76,54.51,7,1,0,0,12,5,1,238,0,0,0 +6139,7508,13623,13622,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,8.712462995887487,8.441426136386223,1,0,-9,47,0,2,26.50331289814137,0,0,0,68,1,4,3,2,2,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.326896909956314,8.217483309097684,0,0,57.16,56.15,7,1,0,0,12,5,1,238,0,0,0 +6140,7509,13624,13625,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,5,0,7.400152674292165,7.486031151529712,1,0,-9,44,0,0,-14.59060653079108,0,0,0,67,1,4,3,1,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.720706543575639,7.233176524198821,0,0,54.1,59.11,6,1,0,0,9,2,1,628,0,0,0 +6140,7509,13625,13624,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,45,0,0,-38.4206682682002,0,0,0,67,1,5,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.852256172825077,0,0,0,54.79,55.86,6,1,0,0,9,2,1,628,0,0,0 +6141,7510,13626,13628,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.290862108060071,7.328893485226473,0,2,0,-9,28,0,-3,6.105146920746989,0,0,0,51,2,4,1,2,3,2019,1,2,17,6,27,22,15,1,6,1,0,9.676330435354744,9.676330435354744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.29,53.32,6,1,0,0,4,5,1,2739.333333333333,0,0,0 +6141,7510,13627,-9,13626,13628,4,1,1,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-987.6636483880433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,4,5,1,2739.333333333333,0,0,0 +6141,7510,13628,13626,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,9.040805804505622,9.347408833265845,0,2,0,-9,9,0,3,12.85639480010138,0,0,0,48,2,3,1,-9,-9,2019,1,1,11,0,65,70,15,1,0,1,0,17.426812919641,17.426812919641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,4,5,1,2739.333333333333,0,0,0 +6141,7511,13629,-9,13626,13628,3,1,0,18,2,0,1,1,2,0,7,2,0,3,5.911748541148048,5.727732052520797,0,3,0,0,0,-9,0,-1089.589424756531,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,15,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.36877108313212,0,0,0,54.96,53.17,7,1,0,0,4,2,1,371,0,0,0 +6142,7512,13630,-9,-9,-9,1,1,0,56,3,0,1,0,2,-9,2,1,0,2,8.515171104164613,8.290543087955305,6.56674847773782,4,0,-9,0,1,0,-1067.115425764447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,37,15,1,0,-9,0,11.65168701357598,11.65168701357598,0,0,0,0,0,0,0,1,1,0,0,6.977652084680295,0,0,48.4,29.56,4,1,0,1,4,4,1,302,0,0,0 +6142,7513,13631,-9,13630,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1096.023732324881,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.6160143512963066,0,0,0,47.38,49.72,6,1,0,0,4,4,1,77,0,0,0 +6143,7514,13632,13633,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.352140908131666,8.517435086632531,0,1,0,-9,3,0,0,85.76663191822476,0,1,1,29,2,3,1,-9,-9,2019,1,1,6,0,40,37,15,1,0,1,0,9.80781013265393,9.80781013265393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,1,247,0,0,0 +6143,7514,13633,13632,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,3,7.995802146297661,7.989422528003178,0,1,0,-9,3,0,0,-69.49669444958813,0,1,0,29,1,4,1,2,2,2019,1,2,8,0,39,37,15,1,0,1,0,9.806606236761496,9.806606236761496,0,0,0,0,0,0,0,0,0,0,2.860521899520909,0,0,0,57.33,53.46,6,2,0,0,4,4,1,247,0,0,0 +6144,7515,13634,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,5.966841857292711,5.676851370671619,3,0,0,0,-9,0,-905.6071429025891,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.955975471228801,0,0,43.49,35.45,5,1,0,0,5,2,1,268,0,0,0 +6145,7516,13635,-9,-9,-9,1,1,1,53,3,0,1,0,1,-9,1,1,0,5,6.534230411951109,6.515791575419383,0,4,0,0,0,-9,0,-1113.21525853024,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,37,37,15,1,0,-9,0,2.089616991795785,2.089616991795785,0,0,0,0,0,0,0,0,0,0,4.541429787959045,0,0,0,62.39,56.71,7,1,0,0,9,2,1,1118,0,0,0 +6145,7516,13636,-9,-9,13635,2,1,1,16,2,0,1,0,2,-9,97,2,0,3,0,0,0,4,0,0,0,-9,0,-963.787285327606,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,18,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.28,64.75,2,1,0,0,9,2,1,1118,0,0,0 +6146,7517,13637,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,5,7.977060086423585,8.247046507666077,7.51077931380862,3,0,0,0,-9,0,-1134.386123000517,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,43,0,15,1,0,-9,0,8.33997849553238,8.33997849553238,0,0,0,0,0,0,0,0,0,0,7.878690991189162,0,0,0,54.1,59.11,6,1,0,0,8,4,0,118,0,0,0 +6146,7518,13638,-9,-9,-9,2,1,1,22,2,0,0,0,2,1,2,1,0,3,6.839171656302767,7.709100017267838,6.775360453328851,3,0,0,0,-9,0,-870.7635991074118,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,20,0,15,1,0,-9,0,7.112544560838382,7.112544560838382,0,0,0,0,0,0,0,0,0,0,7.077194045746207,0,0,0,54.94,53.18,6,1,0,0,8,3,0,439,0,0,0 +6147,7519,13639,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,5,0,6.18791279909635,5.981500337397733,3,0,0,0,-9,0,-1039.049283946164,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.47423292797331,0,0,62.66,30.48,6,1,0,0,4,2,0,243,0,0,0 +6148,7520,13640,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,1,1,0,3,7.752215704150281,7.352085884194572,0,3,0,0,0,-9,0,-1051.679280506244,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,20,15,15,1,1,-9,0,13.4325175255869,13.4325175255869,0,0,0,0,0,0,0,1,1,0,0,0,6.64137255475956,3,52,45,6,1,0,0,8,3,1,156,0,0,0 +6149,7521,13641,-9,13645,13644,6,1,0,2,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.621964104316,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,1,0,898.1428571428571,0,0,0 +6149,7521,13642,-9,13645,13644,3,1,1,11,2,2,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1023.343756301585,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,2,1,0,898.1428571428571,0,0,0 +6149,7521,13643,-9,13645,13644,7,1,0,0,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1070.317092539287,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,1,0,898.1428571428571,0,0,0 +6149,7521,13644,13645,-9,-9,1,1,1,36,1,2,5,0,2,-9,3,3,0,3,0,0,0,2,0,-9,8,0,-2,0,0,0,0,38,3,5,3,2,3,2019,4,2,24,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.52,42.88,3,1,1,0,2,1,0,898.1428571428571,0,0,0 +6149,7521,13645,13644,-9,-9,2,1,0,38,1,2,5,0,3,-9,6,3,0,5,0,0,0,2,0,-9,8,0,2,0,0,0,1,36,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,2,1,0,898.1428571428571,0,0,0 +6149,7521,13646,-9,13645,13644,5,1,0,6,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1168.791307266829,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,1,0,898.1428571428571,0,0,0 +6149,7521,13647,-9,13645,13644,4,1,1,9,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.0491854308857,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,898.1428571428571,0,0,0 +6150,7522,13648,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,2,8.089038003013714,7.904318089098528,0,3,0,0,0,-9,0,-926.1753430158354,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,35,70,15,1,0,-9,0,12.43275328881121,12.43275328881121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.05,32.12,6,1,0,0,12,4,1,258,0,0,0 +6151,7523,13649,-9,-9,-9,1,1,0,52,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1050.832750953417,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.35,26.56,5,4,1,1,8,1,0,296,0,0,0 +6151,7524,13650,-9,13649,-9,3,1,1,24,2,0,1,0,2,-9,2,1,0,4,5.751321597484767,5.801561790577547,0,3,0,-9,0,-9,0,-1139.48427267955,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,7,0,15,1,3,-9,1,5.585511399278574,5.585511399278574,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.52,63.52,5,4,0,0,8,2,0,130,0,0,0 +6152,7525,13651,13655,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,4,7.383504350568036,7.194739599422127,0,2,0,-9,25,0,0,187.7859075627027,0,0,0,48,1,2,1,3,3,2019,1,1,5,0,17,11,15,1,0,1,0,9.539704532667077,9.539704532667077,0,0,0,0,0,0,0,0,0,0,2.856710871336567,0,0,0,60.13,49.27,6,1,0,0,10,5,1,514.2,0,0,0 +6152,7525,13652,-9,13651,13655,3,1,1,17,2,0,3,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.908897935448,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,6,1,0,0,10,5,1,514.2,0,0,0 +6152,7525,13653,-9,13651,13655,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.862830320987,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,5,1,0,0,10,5,1,514.2,0,0,0 +6152,7525,13654,-9,13651,13655,5,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-971.9622299006281,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,1,0,0,10,5,1,514.2,0,0,0 +6152,7525,13655,13651,-9,-9,1,1,1,48,1,0,3,0,1,-9,2,1,0,2,9.550236368650227,9.48269441429365,0,2,0,-9,27,0,0,-75.59658718082393,0,0,0,48,1,4,1,2,1,2019,1,2,11,0,48,47,15,1,0,1,0,35.68772014966451,35.68772014966451,0,0,0,0,0,0,0,0,0,0,3.707342427137239,0,0,0,44.67,52.97,3,1,0,0,10,5,1,514.2,0,0,0 +6153,7526,13656,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,3,7.694238737094917,8.100063956607675,0,3,0,0,0,-9,0,-909.4235668048188,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,45,41,15,1,2,-9,0,7.559556154293821,7.559556154293821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,2,0,0,6,4,0,163,0,0,0 +6153,7527,13657,-9,13656,-9,2,1,0,20,2,0,0,0,1,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-943.3705986567971,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,4,1,0,6,1,0,317,0,0,0 +6154,7528,13658,13659,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.584064601926289,7.823760844067077,1,0,-9,10,0,7,-65.57450447214147,0,0,0,60,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.571113448486408,7.656254614045007,0,0,49.04,55.86,5,1,0,0,11,3,1,879,0,0,0 +6154,7528,13659,13658,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,3,0,5.459979373460997,5.588868359552142,1,0,-9,10,0,-7,-2.965569525907482,0,0,0,67,1,3,3,2,-9,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.150392800429817,5.587362989086565,0,0,42.84,48.06,4,1,0,0,11,3,1,879,0,0,0 +6155,7529,13660,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,5.974076161513207,6.392514356554495,3,0,0,0,-9,0,-887.2698480869695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.218396948792492,0,0,57.33,53.46,7,1,0,0,6,2,1,2541,0,0,0 +6156,7530,13661,-9,13663,13662,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.6301033362672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,3,0,556,0,0,0 +6156,7530,13662,13663,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,3,8.289263183177768,7.988591177852887,0,2,0,-9,10,0,0,40.24827776390605,0,0,0,43,2,3,3,3,-9,2019,2,1,9,0,48,46,15,1,0,3,0,7.823573272719961,7.823573272719961,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.85,47.26,6,1,0,0,5,3,0,556,0,0,0 +6156,7530,13663,13662,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,11,0,9,-81.07853697112627,0,0,1,34,2,3,1,3,3,2019,3,2,23,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,51.94,3,1,0,1,5,3,0,556,0,0,0 +6157,7531,13664,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,4,8.668214850071086,8.527516270167284,0,3,0,0,0,-9,0,-985.9626011982101,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,35,15,1,0,-9,0,18.01874952936814,18.01874952936814,0,0,0,0,0,0,0,0,0,0,1.523173702609827,0,0,0,57.16,56.15,6,1,0,0,13,5,1,280,0,0,0 +6158,7532,13665,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,1,1,0,4,4.787404400237092,4.537467614114967,0,3,0,0,0,-9,0,-857.5651084634899,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,35,40,15,1,0,-9,0,.3908242463977004,.3908242463977004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,13,2,0,807,0,0,0 +6159,7533,13666,13667,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,5.679934806899913,5.879213038346379,1,0,-9,50,0,2,-27.18963981375267,0,0,0,68,3,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.553802707695419,5.634918414481524,73.00294784036791,3,62.6,34.56,6,3,0,0,5,2,1,1635,0,0,0 +6159,7533,13667,13666,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,-19.34138249982523,0,0,0,70,2,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.635613451653389,0,77.82074911753497,3,55.8,40.33,7,3,0,0,5,2,1,1635,0,0,0 +6160,7534,13668,13669,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,4.246191810918275,4.387284683741739,1,0,-9,7,0,0,6.543568854455733,0,0,0,83,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.189549694557837,116.5510039676308,1,59.43,37.6,7,1,0,0,9,2,1,1551.5,0,0,0 +6160,7534,13669,13668,-9,-9,1,1,0,83,1,0,0,0,2,-9,4,3,0,2,0,6.725591873040393,6.578336793754663,1,0,-9,62,0,0,51.51242974126187,0,0,0,83,3,3,3,-9,-9,2019,4,2,15,5,0,0,15,4,5,4,0,0,0,1,0,15.18606214871437,0,0,0,0,1,1,0,0,6.853177794665932,0,0,53.37,17.7,4,1,0,0,9,2,1,1551.5,0,0,0 +6161,7535,13670,13671,-9,-9,1,1,1,31,1,0,0,0,1,-9,1,1,0,5,8.285168724220954,8.110697980758461,0,1,0,-9,2,0,5,-9.740650198742959,0,0,0,26,1,4,1,-9,-9,2019,1,3,10,0,40,40,15,1,0,1,0,10.08276627458245,10.08276627458245,0,0,0,0,0,0,0,0,0,0,5.863663616960071,0,0,0,51.14,60.45,5,1,0,0,10,5,1,651,0,0,0 +6161,7535,13671,13670,-9,-9,3,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.676729820641308,8.515779041785345,0,1,0,-9,2,0,-5,-32.49004465080843,0,1,1,31,1,5,1,-9,-9,2019,1,1,12,1,42,0,15,1,1,1,0,13.79780681818366,13.79780681818366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.58,62.16,5,1,0,0,10,5,1,651,0,0,0 +6161,7536,13672,-9,-9,-9,2,1,1,31,3,0,0,0,1,-9,2,1,0,4,7.818848004605777,8.309864669605368,0,3,0,0,0,-9,0,-1012.154092615381,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,40,40,15,1,7,-9,0,10.71936623395812,10.71936623395812,0,0,0,0,0,0,0,0,0,0,1.923372381081005,0,0,0,29.44,52.35,3,1,0,0,10,4,1,283,0,0,0 +6162,7537,13673,-9,13675,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-898.2531031432965,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,4,1,440.3333333333333,0,0,0 +6162,7537,13674,-9,13675,-9,2,1,0,17,2,0,2,1,3,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-897.2926760512765,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5178836067374597,0,0,0,35.38,63.46,5,1,0,0,10,4,1,440.3333333333333,0,0,0 +6162,7537,13675,-9,-9,-9,1,1,0,52,3,0,2,0,1,-9,2,1,0,3,8.267522474264956,8.324474888352665,7.788467808080924,4,0,0,0,-9,0,-1133.991075509855,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,40,37,15,1,5,-9,0,9.136290369692547,9.136290369692547,0,0,0,0,0,0,0,1,1,0,7.607072913298174,0,0,0,25.12,65.25,3,1,0,0,10,4,1,440.3333333333333,0,0,0 +6163,7538,13676,13677,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,5,0,6.437291329425748,6.439955665087529,1,0,-9,26,0,-2,-60.87141517292835,0,0,0,78,1,5,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.785241192983491,6.538328036543009,2.043949092189553,3,51.67,60.18,7,1,0,0,2,5,1,894.5,0,0,0 +6163,7538,13677,13676,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,5,0,9.089334422364333,9.330128564708982,1,0,-9,26,0,2,-106.0901028332138,0,0,0,76,1,5,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.253608367710864,9.002202269091557,9.165684830933962,3,54.1,59.11,6,1,0,0,2,5,1,894.5,0,0,0 +6164,7539,13678,-9,13681,13679,5,1,0,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.4670600783068,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,5,1,1179.75,0,0,0 +6164,7539,13679,13681,-9,-9,2,1,1,42,1,1,2,0,1,-9,2,1,0,4,9.429245384222982,9.19660021284292,0,2,0,-9,4,0,5,-4.32883359526468,0,0,0,37,1,3,3,-9,-9,2019,2,1,12,0,45,50,15,1,0,3,0,31.77352872318028,31.77352872318028,0,0,0,0,0,0,0,1,1,0,8.08549025030981,0,0,0,51.24,58.84,5,3,0,0,8,5,1,1179.75,0,0,0 +6164,7539,13680,-9,13681,13679,6,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.186261005462,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,3,0,0,8,5,1,1179.75,0,0,0 +6164,7539,13681,13679,-9,-9,1,1,0,37,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-5,-37.77924646725815,0,0,1,42,1,4,1,1,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,53.71,6,3,0,0,8,5,1,1179.75,0,0,0 +6165,7540,13682,13683,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,4,7.900956556783314,7.933239685958377,6.667173041023734,1,0,-9,10,0,7,-9.420079080478054,0,0,0,58,3,1,3,3,-9,2019,2,2,12,0,37,37,15,1,0,3,0,7.560876871138213,7.560876871138213,0,0,0,0,0,0,0,1,1,0,0,6.530974947989305,0,0,57.16,56.15,6,1,0,0,2,3,1,1159.5,0,0,0 +6165,7540,13683,13682,-9,-9,2,1,0,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,10,0,-7,-57.65717439379444,0,0,0,65,3,4,1,3,3,2019,3,1,36,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,1,1,0,0,2,3,1,1159.5,0,0,0 +6166,7541,13684,13685,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.799499242101655,8.850336761364934,0,1,0,-9,3,0,-1,51.73317210057979,0,0,0,33,1,5,1,2,2,2019,1,2,14,2,38,38,15,1,2,1,0,18.20250698914262,18.20250698914262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.15,62.63,5,1,0,0,9,4,0,241.5,0,0,0 +6166,7541,13685,13684,-9,-9,2,1,0,33,1,0,0,0,1,1,2,1,0,5,6.486163800821322,6.611844664915709,0,1,0,-9,3,0,1,-186.0561925694339,-9,0,1,32,1,4,1,-9,-9,2019,1,1,9,0,28,0,15,1,0,1,0,2.241263957350804,2.241263957350804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,6,3,0,0,9,4,0,241.5,0,0,0 +6167,7542,13686,13687,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,2,8.903759278230289,8.976471241420205,0,1,0,-9,6,0,-1,60.69301527903845,0,0,0,48,3,2,3,2,3,2019,2,2,13,2,47,45,15,1,2,3,0,17.26627028115146,17.26627028115146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.33,35.31,5,1,0,0,13,5,1,1013,0,0,0 +6167,7542,13687,13686,-9,-9,2,1,0,48,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,6,0,1,-52.13982484052617,0,0,0,47,2,2,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.91845829201849,3,51.73,20.84,5,1,0,0,13,5,1,1013,0,0,0 +6167,7543,13688,-9,13687,13686,3,1,1,22,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1026.27369063082,1,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,37,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,13,1,1,3729,0,0,0 +6167,7544,13689,-9,13687,13686,4,1,1,19,2,0,0,0,2,-9,2,1,0,5,6.97535637819141,7.030685030139592,0,3,0,0,0,-9,0,-997.5270532740616,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,3,0,25,30,15,1,0,-9,1,4.653235391007673,4.653235391007673,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.07,60.93,7,1,0,0,13,2,1,1536,0,0,0 +6168,7545,13690,13691,-9,-9,1,1,0,39,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,8,0,-7,65.66452336541211,0,0,1,46,1,2,1,2,2,2019,3,2,21,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.847806111362378,0,0,0,32.32,49.12,6,1,0,0,11,4,1,1077,0,0,0 +6168,7545,13691,13690,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,2,8.818864685649213,8.76451963835374,0,2,0,-9,8,0,7,47.33732655076506,0,0,0,39,2,2,3,2,3,2019,2,1,12,0,53,93,15,1,0,3,0,17.412089192809,17.412089192809,0,0,0,0,0,0,0,1,1,0,4.444931574969228,0,0,0,42.82,48.35,6,1,0,0,11,4,1,1077,0,0,0 +6168,7545,13692,-9,13690,13691,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.917057370761,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,1077,0,0,0 +6168,7545,13693,-9,13690,13691,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-992.8607189244386,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,4,1,1077,0,0,0 +6169,7546,13694,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,8.012368454239324,8.15825506232412,3,0,0,0,-9,0,-948.3087387376244,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,2.558819344356411,0,0,0,11.45393638744896,60.82814712294665,1,1,0,7.146793353972939,8.421825263864163,0,0,47,35,5,1,0,0,5,4,0,994,0,0,0 +6170,7547,13695,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,4,7.147298806036965,8.401637189646946,7.857444036206878,3,0,0,0,-9,0,-946.1905486482136,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,23,20,15,1,0,-9,0,7.249728841564069,7.249728841564069,0,0,0,0,0,0,0,1,1,0,8.232597956012581,7.949434133521089,0,0,58.72,51.29,6,1,0,0,10,4,1,709,0,0,0 +6171,7548,13696,13698,-9,-9,2,1,0,38,1,0,1,0,3,-9,2,1,0,3,7.811600748606752,8.175089537077442,0,2,0,-9,8,0,2,-45.13646217126081,0,0,1,36,2,3,1,-9,-9,2019,1,1,12,0,32,35,15,1,0,1,0,12.21677523200371,12.21677523200371,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.48,52.55,4,1,0,0,12,5,1,796.3333333333334,0,0,0 +6171,7548,13697,-9,13696,13698,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-848.3048046626629,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,796.3333333333334,0,0,0 +6171,7548,13698,13696,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,3,8.744272282465905,8.813784672270819,0,2,0,-9,8,0,-2,5.591878889041658,0,0,0,38,3,3,1,2,2,2019,1,2,6,0,43,62,15,1,0,1,0,20.70983088744025,20.70983088744025,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.01,48.98,5,1,0,0,12,5,1,796.3333333333334,0,0,0 +6172,7549,13699,13700,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,4,8.229931040824017,8.078417642755687,0,1,0,-9,4,0,1,88.96019919528966,0,0,1,30,1,3,1,-9,2,2019,1,2,7,0,37,37,15,1,0,1,0,12.74700367141892,12.74700367141892,0,0,0,0,0,0,0,0,0,0,3.898351284798185,0,0,0,49.12,57.28,6,1,0,0,6,5,1,1384.5,0,0,0 +6172,7549,13700,13699,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,3,8.503486394884687,8.405238123780396,0,1,0,-9,4,0,-1,-.8140240512173318,0,0,0,31,1,4,1,-9,-9,2019,1,1,19,7,42,40,15,1,7,1,0,13.79944845542988,13.79944845542988,0,0,0,0,0,0,0,0,0,0,3.885696992488338,0,0,0,28.97,59.76,6,1,0,0,6,5,1,1384.5,0,0,0 +6173,7550,13701,13702,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.617354177142417,8.46921418811988,0,2,0,-9,20,0,-2,57.76263620566296,0,0,1,45,1,4,1,2,2,2019,1,2,10,0,55,58,15,1,0,1,0,9.784197911734481,9.784197911734481,0,0,0,0,0,0,0,1,1,0,2.913293198246665,0,0,0,46.69,58.35,5,1,0,0,5,5,1,918,0,0,0 +6173,7550,13702,13701,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,4,9.347727176889345,9.232636729776532,0,2,0,-9,6,0,2,10.55008521168232,0,0,0,43,1,4,1,2,1,2019,1,1,6,0,30,35,15,1,0,1,0,37.18854371523217,37.18854371523217,0,0,0,0,0,0,0,1,1,0,5.093698855733246,0,12.39299385835515,3,51.83,57.2,6,1,0,0,5,5,1,918,0,0,0 +6173,7550,13703,-9,13701,13702,3,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1127.162431799872,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,43,4,1,0,0,5,5,1,918,0,0,0 +6173,7550,13704,-9,13701,13702,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1103.498590896668,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,5,5,1,918,0,0,0 +6174,7551,13705,13706,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,5,0,6.429995613388216,6.460446530621915,1,0,-9,50,0,-3,-78.39365767565928,0,0,0,74,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.457109682684475,6.450089837084763,0,0,58.2,54.53,6,1,0,0,8,3,1,393,0,0,0 +6174,7551,13706,13705,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.789186160132663,7.768593125512314,1,0,-9,50,0,3,-94.96420982345735,0,0,0,71,2,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.787062167101642,7.829928081260692,0,0,55.26,43.43,4,1,0,0,8,3,1,393,0,0,0 +6175,7552,13707,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,5,6.982707531717317,7.083067240947186,0,3,0,0,0,-9,0,-962.4371506674115,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,8,0,15,1,1,-9,0,14.97167892403551,14.97167892403551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,6,1,0,0,8,2,0,2658,0,0,0 +6176,7553,13708,13710,-9,-9,2,1,1,48,1,0,2,0,1,-9,1,1,0,4,8.706627449153157,8.594117476798605,0,2,0,-9,10,0,-2,32.40168100809757,0,0,0,50,1,4,1,-9,-9,2019,1,1,11,1,70,70,15,1,1,1,0,9.80503855879712,9.80503855879712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,56.93,4,1,0,0,12,4,1,1098.666666666667,0,0,0 +6176,7553,13709,-9,13710,13708,4,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-940.9700255457568,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,12,4,1,1098.666666666667,0,0,0 +6176,7553,13710,13708,-9,-9,1,1,0,50,1,0,2,0,1,-9,2,1,0,4,7.470501748218782,7.042618758027836,0,2,0,-9,27,0,2,-25.35229877751644,0,0,0,48,1,4,1,3,2,2019,1,2,10,0,14,22,15,1,0,1,0,14.78080976651753,14.78080976651753,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,4,1,1098.666666666667,0,0,0 +6177,7554,13711,-9,-9,-9,1,1,0,41,3,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1064.74169351198,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,38,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.98,51.77,6,4,1,1,5,1,0,224,0,0,0 +6177,7555,13712,-9,13711,-9,2,1,1,19,2,0,0,1,2,-9,7,2,0,5,6.273043484444706,6.157940458256128,0,3,0,0,0,-9,0,-994.0029735111023,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,5,4,0,0,5,2,0,705,0,0,0 +6178,7556,13713,13714,-9,-9,1,1,0,82,1,0,0,0,2,-9,4,3,0,3,0,5.505513919652974,6.09412611915958,1,0,-9,4,0,15,43.63873406133335,0,0,0,67,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,1.727133343750156,0,0,0,0,1,1,0,3.490744237960629,5.366002241733065,0,0,56.52,45.61,6,1,0,0,9,2,1,256,0,0,0 +6178,7556,13714,13713,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,7.440573656871218,7.544907365757588,1,0,-9,4,0,-15,-74.43514342100546,0,0,0,82,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.234660606876314,7.471155728920151,0,0,62.27,48.47,7,1,0,0,9,2,1,256,0,0,0 +6179,7557,13715,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,3,9.311059707732603,9.183485570818075,0,3,0,0,0,-9,0,-1014.40974286764,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,41,40,15,1,0,-9,0,26.15357539924534,26.15357539924534,0,0,0,0,0,0,0,0,0,0,3.38331015376447,0,0,0,49.04,55.86,5,1,0,0,9,5,0,533,0,0,0 +6180,7558,13716,13717,-9,-9,2,1,0,29,1,1,2,0,2,-9,2,1,0,4,6.815912203380056,6.964125705460139,0,2,0,-9,13,0,-8,-96.01650130238349,0,1,1,37,1,4,1,2,2,2019,1,1,8,0,19,20,15,1,0,1,0,7.063681218844554,7.063681218844554,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,2,4,1,294.75,0,0,0 +6180,7558,13717,13716,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,8.751197088210297,8.538803481922395,0,2,0,-9,11,0,8,-76.94972215976357,0,0,0,29,2,4,1,1,2,2019,1,2,10,0,55,65,15,1,0,1,0,12.76331783738258,12.76331783738258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,1,294.75,0,0,0 +6180,7558,13718,-9,13716,13717,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.8425305922379,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,294.75,0,0,0 +6180,7558,13719,-9,13716,13717,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-989.6609016793203,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,294.75,0,0,0 +6181,7559,13720,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,1,1,0,2,8.312708826681963,8.177359923438889,0,3,0,0,0,-9,0,-967.2467823615987,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,5,0,15,1,2,-9,0,65.63011592615733,65.63011592615733,0,0,0,0,0,0,0,0,0,0,6.979523527303023,0,0,0,47.15,40.6,3,1,0,0,9,4,1,293,0,0,0 +6182,7560,13721,13722,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,3,9.29548531981777,8.786607618951564,0,1,0,-9,2,0,-3,-29.65039563933017,0,1,1,32,1,4,1,-9,-9,2019,1,2,13,3,48,59,15,1,3,1,0,20.53957109325746,20.53957109325746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,5,1,0,0,13,5,1,440,0,0,0 +6182,7560,13722,13721,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.918535993890721,8.488964023807785,0,1,0,-9,2,0,3,16.31934088888105,-9,0,0,29,1,3,1,-9,-9,2019,1,1,7,0,48,0,15,1,0,1,0,18.02415014188345,18.02415014188345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,13,5,1,440,0,0,0 +6183,7561,13723,13724,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,7.598835558980253,8.192805514132672,1,0,1,1,-9,-4,-35.39576457635975,0,0,0,76,2,2,3,2,-9,2019,4,2,19,7,0,25,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.920419817275221,7.618692930133137,0,0,44.6,39.54,6,1,0,0,11,3,0,1343.5,0,0,0 +6183,7561,13724,13723,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,6.596334832311085,6.989759362862099,1,0,-9,1,-9,4,-42.41294400434191,-9,0,0,72,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.151186134038671,0,0,66.75,34.59,7,1,0,0,11,3,0,1343.5,0,0,0 +6184,7562,13725,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-900.0917412858059,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.539671755603957,0,0,0,55.93,52.62,6,1,0,0,12,1,1,262,0,0,0 +6185,7563,13726,13727,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,5,8.717878521974601,8.68457587111487,0,2,0,-9,5,0,-1,-10.4104314642444,0,0,0,42,2,3,1,2,2,2019,1,2,9,0,60,55,15,1,0,1,0,11.96439776225746,11.96439776225746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,6,4,1,1028.75,0,0,0 +6185,7563,13727,13726,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.269751735991574,7.44366012673613,0,2,0,-9,5,0,1,-40.68146621625441,0,0,1,41,2,5,1,3,3,2019,1,1,10,0,16,16,15,1,0,1,0,10.62018061998919,10.62018061998919,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,5,1,0,0,6,4,1,1028.75,0,0,0 +6185,7563,13728,-9,13727,13726,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.764307757784,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1028.75,0,0,0 +6185,7563,13729,-9,13727,13726,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1130.546027328659,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1028.75,0,0,0 +6186,7564,13730,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,2,1,0,5,6.99625618194051,7.808204000355674,7.013297619222149,3,0,0,0,-9,0,-1002.585983653158,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,13,13,15,1,0,-9,0,9.366036994720101,9.366036994720101,0,0,0,0,0,0,0,1,1,0,1.367702484351341,7.076772588573318,0,0,59.43,58.05,6,1,0,0,11,3,1,2215,0,0,0 +6187,7565,13731,13733,-9,-9,2,1,1,34,1,0,3,0,2,-9,2,1,0,3,8.013719030540599,8.236928597033149,0,2,0,-9,9,0,1,-164.4450684853395,0,0,0,33,2,3,3,-9,-9,2019,2,1,7,0,39,42,15,1,0,3,0,10.93350212020004,10.93350212020004,0,0,0,0,0,0,0,1,1,0,0,0,74.01670680031141,3,54.37,54.8,5,1,0,0,5,3,1,532.2,0,0,0 +6187,7565,13732,-9,13733,13731,4,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1069.052998376235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,5,3,1,532.2,0,0,0 +6187,7565,13733,13731,-9,-9,1,1,0,33,1,0,3,0,2,-9,97,3,0,3,0,0,0,2,0,-9,16,0,-1,108.3839410904612,0,0,1,34,2,3,1,3,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.7266819972057,3,38.63,56.7,4,1,0,0,5,3,1,532.2,0,0,0 +6187,7565,13734,-9,13733,13731,3,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-859.5647920516191,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,3,1,532.2,0,0,0 +6187,7565,13735,-9,13733,13731,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.9300057479721,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,532.2,0,0,0 +6188,7566,13736,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,5,7.97110636558217,8.12302842493172,0,4,0,0,0,-9,0,-972.3048727056101,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,42,39,15,1,0,-9,0,9.373559505193366,9.373559505193366,0,0,0,0,0,0,0,1,1,0,2.226350480406,0,.6623423674724875,3,57.06,57.76,6,1,0,0,2,3,1,754.5,0,0,0 +6188,7566,13737,-9,13736,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.54562816104,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,754.5,0,0,0 +6189,7567,13738,13739,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.96458943380142,9.265966309675639,1,0,-9,47,0,3,11.34114604573422,0,0,0,68,1,3,3,3,3,2019,4,1,0,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.081162077453611,9.257189360918945,0,0,65.06,41.58,6,1,0,0,9,5,1,485,0,0,0 +6189,7567,13739,13738,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-3,-27.12711747683545,0,0,0,71,1,4,3,2,2,2019,4,2,8,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.172800456400982,0,0,0,57.33,53.46,6,1,0,0,9,5,1,485,0,0,0 +6190,7568,13740,13741,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.403289771645245,7.450025444197724,1,0,1,1,-9,16,-74.55885701059492,0,0,0,54,1,4,1,2,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.415065729926731,7.280609381664147,0,0,57.33,53.46,6,1,0,0,9,5,1,803.5,0,0,0 +6190,7568,13741,13740,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.672850728613872,8.856778649384202,0,1,0,-9,1,-9,-16,73.81022284755475,-9,0,0,70,2,3,3,-9,-9,2019,2,1,9,0,37,0,15,1,0,4,0,21.53156954095844,21.53156954095844,0,0,0,0,0,0,0,1,1,0,7.433305942915605,0,0,0,50,56.64,5,1,0,0,9,5,1,803.5,0,0,0 +6191,7569,13742,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-990.0587850611629,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,2.699527766258228,0,0,0,0,51.13092229808598,1,1,0,0,0,0,0,53.77,40.71,4,1,0,1,12,1,0,876,0,0,0 +6192,7570,13743,-9,13744,13746,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.1266426505592,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,510,0,0,0 +6192,7570,13744,13746,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,3,9.245351803914357,9.548353893019629,0,2,0,-9,8,0,-2,-40.04270021252,0,0,1,44,2,4,1,3,2,2019,1,2,7,0,21,21,15,1,0,1,0,57.94574302650504,57.94574302650504,0,0,0,0,0,0,0,1,1,0,7.102929776832086,0,0,0,56.35,51.16,6,1,0,0,2,5,1,510,0,0,0 +6192,7570,13745,-9,13744,13746,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.0359509457968,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,510,0,0,0 +6192,7570,13746,13744,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,4,9.081585276910696,9.078474791928839,0,2,0,-9,8,0,2,49.31462970938122,-9,0,0,42,1,3,1,2,2,2019,1,1,10,0,44,0,15,1,0,1,0,21.59056690926707,21.59056690926707,0,0,0,0,0,0,0,1,1,0,8.046516684927846,0,0,0,61.71,43.2,7,1,0,0,2,5,1,510,0,0,0 +6193,7571,13747,13748,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.603264722877149,8.47722395749625,0,1,0,-9,7,0,0,26.55809820329268,0,0,0,57,2,3,1,-9,-9,2019,1,1,10,0,47,37,15,1,0,1,0,12.91604520428545,12.91604520428545,0,0,0,0,0,0,0,0,0,0,0,0,16.62538437799006,3,56.35,51.16,2,1,0,0,11,5,1,902.5,0,0,0 +6193,7571,13748,13747,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.868896027728345,8.622107364072065,0,1,0,-9,7,0,0,59.01052349234535,0,0,0,57,2,3,1,2,2,2019,1,2,8,0,41,42,15,1,0,1,0,18.38485482472495,18.38485482472495,0,0,0,0,0,0,0,0,0,0,3.823892933145656,0,6.740258247911555,3,52.93,52.64,6,1,0,0,11,5,1,902.5,0,0,0 +6194,7572,13749,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,2,1,0,4,7.58700696991788,7.713573270407185,6.343176624331671,3,0,0,0,-9,0,-1116.674871599616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,30,8,15,1,0,-9,0,7.215018101894565,7.215018101894565,0,0,0,0,0,0,0,1,1,0,0,6.452497694306468,35.95456184580311,3,41.56,61.79,6,1,0,0,2,3,1,2152,0,0,0 +6195,7573,13750,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,1,1,0,4,7.980145862443091,7.97866725930251,6.638486509813222,3,0,0,0,-9,0,-1013.705692041388,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,8,20,15,1,0,-9,0,44.76726326854043,44.76726326854043,0,0,0,0,0,0,0,1,1,0,7.472149858920822,3.100693338949868,0,0,60.13,49.27,6,1,0,0,7,4,1,401,0,0,0 +6196,7574,13751,13752,-9,-9,2,1,0,90,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,70,0,-3,-69.46284520915952,0,0,0,93,3,3,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,6.569683369675558,0,0,0,0,1,1,0,3.404003828914004,0,9.473604884261492,1,53,44,6,1,0,0,2,2,1,3020.5,0,0,0 +6196,7574,13752,13751,-9,-9,1,1,1,93,1,0,0,0,3,-9,4,3,0,3,0,7.328965831869487,7.68493526467149,1,0,-9,70,0,3,28.03111803235127,0,0,0,90,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.914696675899345,7.636516732353263,46.06532668359178,1,55,44,6,1,0,0,2,2,1,3020.5,0,0,0 +6197,7575,13753,13754,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,7.454543791877869,7.210427645012894,1,0,-9,8,0,2,-52.56029051152941,0,0,0,65,2,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.150545214298814,7.010392767261682,0,0,51.17,42.57,7,1,0,0,6,2,1,469.5,0,0,0 +6197,7575,13754,13753,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,5.09301586164588,5.532007468973746,1,0,-9,14,0,-2,32.35960176371729,0,0,0,67,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.668016225519902,0,0,57.16,56.15,5,1,0,0,6,2,1,469.5,0,0,0 +6198,7576,13755,13756,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,4,8.898741520889866,8.865476418071546,0,1,0,-9,9,0,-1,-51.62083191846918,0,0,0,49,3,3,1,-9,-9,2019,1,1,7,0,50,50,15,1,0,1,0,13.18739457219101,13.18739457219101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,11,4,0,3321,0,0,0 +6198,7576,13756,13755,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,9,0,1,81.65692468315957,0,0,0,48,3,4,1,-9,-9,2019,1,2,8,0,0,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,4,1,0,0,11,4,0,3321,0,0,0 +6198,7577,13757,-9,13756,13755,3,1,0,19,2,0,0,0,2,1,2,1,0,4,6.588193852695087,6.91205564249988,0,3,0,0,0,-9,0,-1093.582698085357,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,0,-9,1,5.686091966051124,5.686091966051124,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,11,2,0,139,0,0,0 +6199,7578,13758,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,3,0,5.909397053207858,6.007403239463814,3,0,0,0,-9,0,-1083.717934605588,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.872233817669512,6.059335897129745,0,0,52.6,47.34,7,1,0,0,12,2,0,359,0,0,0 +6200,7579,13759,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,4,6.882367044371795,7.143776804789009,5.454198873305066,4,0,0,0,-9,0,-1078.109484738908,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,20,20,15,1,0,-9,0,5.513499959530698,5.513499959530698,0,0,0,0,0,0,0,1,1,0,4.966245897637821,0,0,0,54.79,55.86,6,1,0,0,12,2,0,1654,0,0,0 +6200,7579,13760,-9,13759,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-882.4777658981376,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,1654,0,0,0 +6201,7580,13761,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,1,1,0,4,7.994099380494947,8.123126412460246,0,3,0,0,0,-9,0,-1093.041807034281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,40,40,15,1,8,-9,0,12.33535438106706,12.33535438106706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,3,1,0,0,11,4,1,1103,0,0,0 +6202,7581,13762,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,7.174499765772835,7.091141506778516,0,3,0,0,0,-9,0,-953.537030865305,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,38,26,15,1,0,-9,0,4.444496102039682,4.444496102039682,0,0,0,0,0,0,0,1,1,0,0,0,9.371533662725163,3,47.09,56.75,6,4,0,1,8,3,0,595,0,0,0 +6202,7582,13763,-9,13762,-9,2,1,1,20,2,0,0,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1000.964202660492,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,2,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.23318679554371,3,41.17,59.31,7,4,0,0,8,1,0,1392,0,0,0 +6203,7583,13764,-9,13765,13767,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-869.7689348236561,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,1,0,838.6,0,0,0 +6203,7583,13765,13767,-9,-9,2,1,0,34,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,16,0,-8,-103.2277762876179,0,0,1,42,3,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.98,52.59,7,3,0,0,8,1,0,838.6,0,0,0 +6203,7583,13766,-9,13765,13767,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1119.710157216546,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,838.6,0,0,0 +6203,7583,13767,13765,-9,-9,1,1,1,42,1,0,3,0,3,-9,2,1,0,4,2.701904596566839,2.803417477163081,0,2,0,-9,16,0,8,46.05481708918407,0,0,0,34,3,3,3,3,3,2019,2,2,9,0,35,8,15,1,1,3,0,.0527208744149205,.0527208744149205,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,8,1,0,838.6,0,0,0 +6203,7583,13768,-9,13765,13767,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.343903140382,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,838.6,0,0,0 +6204,7584,13769,-9,13772,13770,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.0750192835346,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,544.5,0,0,0 +6204,7584,13770,13772,-9,-9,1,1,1,29,1,0,2,0,2,-9,2,1,0,3,8.446985608789451,8.459659047603147,0,2,0,-9,8,0,-13,-26.18288709932793,0,1,0,42,2,4,1,2,2,2019,1,2,12,1,37,40,15,1,1,1,0,18.05923422345244,18.05923422345244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,6,1,0,0,5,4,1,544.5,0,0,0 +6204,7584,13771,-9,13772,13770,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.680817237827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,544.5,0,0,0 +6204,7584,13772,13770,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,4,7.775053916011441,7.740846992951863,0,2,0,-9,8,0,13,50.03099898631636,0,0,1,29,2,3,1,2,2,2019,1,1,11,0,19,22,15,1,0,1,0,18.83118370584851,18.83118370584851,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,5,4,1,544.5,0,0,0 +6205,7585,13773,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,3,0,8.014060916321901,8.104054621342398,3,0,0,0,-9,0,-1020.238866112323,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.405731769500856,8.014530942728365,0,0,66.37,38.36,7,1,0,0,12,3,1,569,0,0,0 +6206,7586,13774,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,4,8.089326898984709,8.29020316655599,0,3,0,0,0,-9,0,-953.788454458052,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,37,38,15,1,0,-9,0,11.52073057323523,11.52073057323523,0,0,0,0,0,0,0,0,0,0,4.201587984866014,0,5.164786564969461,3,57.16,56.15,5,1,0,0,9,4,1,752,0,0,0 +6207,7587,13775,-9,-9,-9,1,1,0,47,3,0,2,0,1,-9,2,1,0,3,9.251724428231276,9.163539432825264,0,4,0,0,0,-9,0,-987.4185980980131,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,60,59,15,1,0,-9,0,14.2928935771494,14.2928935771494,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.69,51.4,4,4,0,0,8,5,1,541,0,0,0 +6207,7587,13776,-9,13775,-9,5,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-923.4105952084388,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,4,0,0,8,5,1,541,0,0,0 +6207,7587,13777,-9,13775,-9,6,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-930.6928215324035,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,5,1,541,0,0,0 +6207,7588,13778,-9,-9,13779,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-936.8781553738646,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,1,390.5,0,0,0 +6207,7588,13779,-9,13775,-9,2,1,1,22,2,0,2,0,1,1,2,1,0,3,8.253579074109394,8.543933183247709,0,3,0,0,0,-9,0,-986.8426645602833,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,45,0,15,1,1,-9,1,9.3261813879052,9.3261813879052,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.93,55.72,3,4,0,0,8,4,1,390.5,0,0,0 +6207,7589,13780,-9,13775,-9,3,1,0,20,2,0,2,0,2,-9,2,1,0,3,7.45469749011898,7.633844460374889,0,3,0,0,0,-9,0,-967.1527441876251,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,18,4,36,0,15,1,4,-9,1,5.49162395792858,5.49162395792858,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,58.34,3,4,0,1,8,3,1,526,0,0,0 +6208,7590,13781,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,3,0,5.455667252674409,5.709483863099998,3,0,0,0,-9,0,-963.4639584806581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.856947460502242,5.644230211132881,0,0,57.33,53.46,6,1,0,0,1,2,0,1109,0,0,0 +6209,7591,13782,-9,13784,-9,3,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1047.683612843593,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,2,4,1,199,0,0,0 +6209,7591,13783,13784,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,4,8.805173590884429,8.433263663382776,0,2,0,-9,6,0,-5,49.50799671819406,0,0,0,37,2,4,1,-9,-9,2019,1,1,10,0,48,40,15,1,1,1,0,11.33258111122091,11.33258111122091,0,0,0,0,0,0,0,1,1,0,5.513717678532618,0,0,0,51,57,5,1,0,0,2,4,1,199,0,0,0 +6209,7591,13784,13783,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,4,7.574895415594494,7.475346247042633,4.395291691786952,2,0,-9,6,0,5,82.55338806509454,0,0,1,32,2,4,1,2,2,2019,1,2,7,0,25,28,15,1,0,1,0,8.682725666620772,8.682725666620772,0,0,0,0,0,0,0,1,1,0,4.817042585813096,0,5.304751156685793,3,57.16,56.15,6,1,0,0,2,4,1,199,0,0,0 +6210,7592,13785,13786,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,5,0,8.556995361181917,8.569488743244907,1,0,-9,30,0,3,-39.6015148105869,0,0,0,60,1,1,1,3,3,2019,3,2,10,0,0,52,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.663413363545493,8.397460859524738,11.24675918474357,1,57.06,57.76,6,1,0,0,9,5,1,1644.5,0,0,0 +6210,7592,13786,13785,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,1,8.047136205939315,8.179713022012882,0,1,0,-9,32,0,-3,70.65175711620914,0,0,0,63,1,5,3,2,2,2019,2,1,20,7,19,20,15,1,7,4,0,15.00861204835612,15.00861204835612,0,0,0,0,0,0,0,0,0,0,5.417208113542562,0,0,0,45.75,14.87,3,1,0,0,9,5,1,1644.5,0,0,0 +6211,7593,13787,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,6.523593062942701,6.500619211938552,3,0,0,0,-9,0,-1025.93316861581,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.678517489382761,0,0,54.07,36.17,6,1,0,0,5,2,0,222,0,0,0 +6212,7594,13788,13789,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,5,7.890457151233891,8.210783345596543,7.726795539403372,1,0,-9,29,0,1,-23.80133105258791,0,0,0,54,2,5,1,-9,3,2019,1,2,8,1,35,45,15,1,1,1,0,8.1815826758067,8.1815826758067,0,0,0,0,0,0,0,0,0,0,5.287979138997535,7.576307814837211,0,0,51.14,60.45,6,1,0,0,11,5,1,922,0,0,0 +6212,7594,13789,13788,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,5,7.902662519771745,7.852385047185132,0,1,0,-9,29,0,-1,-118.0272933657755,0,0,0,55,2,5,1,2,-9,2019,1,1,6,0,38,39,15,1,0,1,0,9.820010301765826,9.820010301765826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.01,53.18,2,1,0,0,11,5,1,922,0,0,0 +6213,7595,13790,13791,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,4,7.839418400792809,8.163372663149804,0,2,0,-9,27,0,-8,-35.1482028379713,0,0,0,58,2,3,3,2,2,2019,2,1,9,0,30,30,15,1,0,4,0,11.0229185323791,11.0229185323791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,5,4,1,355.5,0,0,0 +6213,7595,13791,13790,-9,-9,1,1,1,58,1,0,1,0,2,-9,4,3,0,3,0,8.429361936633695,8.443991522382403,2,0,-9,27,0,8,6.226632836448028,0,0,0,50,3,4,1,-9,3,2019,3,2,6,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.292484515964826,8.389550968197819,0,0,57.33,53.46,6,1,0,0,5,4,1,355.5,0,0,0 +6214,7596,13792,-9,13794,13793,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.4325333706037,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,1,414,0,0,0 +6214,7596,13793,13794,-9,-9,2,1,1,33,1,0,1,0,3,-9,1,1,0,4,9.225003014918691,8.792583336469622,0,2,0,-9,5,0,2,-55.35409270132608,0,0,0,31,2,4,1,-9,-9,2019,1,1,9,0,50,56,15,1,0,1,0,17.43103883749507,17.43103883749507,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,414,0,0,0 +6214,7596,13794,13793,-9,-9,1,1,0,31,1,0,1,0,2,-9,1,1,0,4,7.476192908752583,8.050736713639076,0,2,0,-9,5,0,-2,-39.8441821866856,0,0,1,33,3,4,1,2,2,2019,1,2,6,0,16,20,15,1,0,1,0,12.35990770440306,12.35990770440306,0,0,0,0,0,0,0,1,1,0,2.590368702668368,0,0,0,45.63,58.55,6,1,0,0,9,5,1,414,0,0,0 +6215,7597,13795,13796,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.272182046049707,7.210701979602719,5.37164726362245,1,0,-9,36,0,0,54.74329536079217,0,0,0,58,1,3,1,3,3,2019,1,2,6,0,22,22,15,1,0,1,0,6.7214104489021,6.7214104489021,0,0,0,0,0,0,0,0,0,0,0,5.200282657633272,0,0,57.16,56.15,6,1,0,0,12,5,1,1380,0,0,0 +6215,7597,13796,13795,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,3,9.061185134624367,8.758953195264631,6.155204565356613,1,0,-9,6,0,0,-90.436964934469,0,0,0,58,2,4,1,-9,-9,2019,1,1,5,2,45,32,15,1,2,1,0,16.36201292195719,16.36201292195719,0,0,0,0,0,0,0,0,0,0,0,6.870308571847092,0,0,52.25,42.51,7,1,0,0,12,5,1,1380,0,0,0 +6216,7598,13797,13798,-9,-9,1,1,1,40,1,0,2,0,2,-9,3,3,0,1,0,0,0,2,0,-9,20,0,1,-.8356531537046887,0,0,0,39,2,3,1,2,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.56,6.27,5,1,1,1,2,2,0,839,0,0,0 +6216,7598,13798,13797,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,3,7.039576042065579,7.301567928863611,0,2,0,-9,21,0,-1,-136.3623943023827,0,0,1,40,2,1,3,3,2,2019,2,1,20,7,26,24,15,1,7,3,0,6.513372097466316,6.513372097466316,0,0,0,0,0,0,0,1,1,0,0,0,123.7572655096201,1,23.2,54.42,4,1,0,1,2,2,0,839,0,0,0 +6216,7599,13799,-9,13798,13797,3,1,0,19,2,0,2,0,2,-9,2,1,0,2,6.516328184120492,6.680634159778518,0,3,0,0,0,-9,0,-1054.449050771872,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,0,11,0,15,1,4,-9,1,6.577116243742363,6.577116243742363,0,0,0,0,0,0,0,1,1,0,3.882288949398096,0,8.523934915252601,3,38,44,4,1,0,0,2,2,0,721,0,0,0 +6217,7600,13800,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,4,9.739075179433177,9.634648881710934,0,1,0,-9,9,0,6,-9.315767076652618,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,13,1,43,46,15,1,1,-9,0,43.27943562220999,43.27943562220999,0,0,0,0,0,0,0,0,0,0,3.771668495581235,0,8.86253598650049,3,54.2,57.49,6,1,0,0,9,5,1,1378,0,0,0 +6217,7601,13801,-9,-9,-9,2,1,0,46,2,0,0,0,1,-9,2,1,0,4,9.028395795348287,9.143472220467915,0,1,0,-9,9,0,-6,-73.43772155681354,0,0,0,-9,-9,-9,-9,1,3,2019,1,1,9,0,82,57,15,1,0,-9,0,11.12842280864827,11.12842280864827,0,0,0,0,0,0,0,0,0,0,4.013296017617976,0,0,0,51.77,58.57,6,1,0,0,9,5,1,432,0,0,0 +6217,7602,13802,-9,13800,-9,3,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-959.5164749426008,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,6,1,0,0,9,1,1,4481,0,0,0 +6218,7603,13803,13804,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,3,7.40915746761532,7.328992680371338,0,1,0,-9,33,0,4,-87.92678652966588,0,0,0,56,2,3,1,3,3,2019,1,2,12,0,6,0,15,1,0,1,0,38.23505760359147,38.23505760359147,0,0,0,0,0,0,0,0,0,0,7.36627688739364,0,0,0,45.82,46.7,5,3,0,0,2,3,1,698,0,0,0 +6218,7603,13804,13803,-9,-9,2,1,0,56,1,0,0,0,2,-9,1,1,0,3,6.212420125830842,5.883094286430794,0,1,0,-9,33,0,-4,-20.26291011918557,-9,0,0,60,1,3,1,3,3,2019,1,1,12,0,6,0,15,1,2,1,0,8.970712581599301,8.970712581599301,0,0,0,0,0,0,0,0,0,0,2.383551598077783,0,0,0,48,49,5,3,0,0,2,3,1,698,0,0,0 +6218,7604,13805,-9,13804,13803,3,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.08587894080477,8.232101279582627,0,3,0,0,0,-9,0,-992.4157452582608,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,15,3,38,38,15,1,3,-9,1,8.32997532126041,8.32997532126041,0,0,0,0,0,0,0,0,0,0,.1779164637170184,0,0,0,41.12,59.69,6,3,0,0,2,4,1,2102,0,0,0 +6219,7605,13806,13807,-9,-9,2,1,1,36,1,0,0,0,1,-9,2,1,0,5,8.620050099008431,8.44392391610784,0,1,0,-9,1,-9,4,15.32553954655716,-9,0,0,32,1,5,1,-9,-9,2019,1,1,9,0,43,0,15,1,0,1,0,13.94550840410329,13.94550840410329,0,0,0,0,0,0,0,0,0,0,3.735524651837665,0,0,0,51.73,58.82,6,1,0,0,13,5,1,264,0,0,0 +6219,7605,13807,13806,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,5,8.669110591699537,9.012812658701799,0,1,0,-9,1,-9,-4,-42.4155381651943,-9,0,1,36,1,5,1,2,3,2019,1,2,12,0,43,0,15,1,0,1,0,15.14554804571344,15.14554804571344,0,0,0,0,0,0,0,0,0,0,3.93429220176347,0,0,0,54.1,59.11,6,1,0,0,13,5,1,264,0,0,0 +6220,7606,13808,-9,-9,-9,1,1,1,84,3,0,0,0,1,-9,4,3,0,1,0,7.011159819550313,7.008350820951152,3,0,0,0,-9,0,-1020.19176549935,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.144202072784703,6.874410000582311,0,0,54.39,31.18,6,1,0,0,9,2,1,92,0,0,0 +6221,7607,13809,13810,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,2,0,5.540225453000938,5.848340611581521,1,0,-9,65,0,2,14.71037482612352,0,0,0,84,3,3,3,2,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,1,0,0,0,0,0,12.17416162929852,1,1,0,1.016148375028775,5.551060894758353,0,0,40.94,19.44,7,1,0,0,8,2,1,736,0,0,0 +6221,7607,13810,13809,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,65,0,-2,118.8496487055653,0,0,0,86,3,2,3,2,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.749385709664873,0,46.44797237395318,1,53,44,6,1,0,0,8,2,1,736,0,0,0 +6222,7608,13811,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,4,9.061142528597163,8.756660061215312,0,3,0,0,0,-9,0,-979.9268981015147,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,50,52,15,1,1,-9,0,13.97421079134484,13.97421079134484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,55.13,6,1,0,0,10,5,1,1135,0,0,0 +6223,7609,13812,-9,13813,13814,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.324330211211,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,3,0,1132.666666666667,0,0,0 +6223,7609,13813,13814,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,2,7.379723441944193,7.274682948122035,0,2,0,-9,5,0,-4,16.03133620215652,0,0,1,34,2,3,1,2,-9,2019,1,2,24,11,21,21,15,1,11,1,0,9.360360893550276,9.360360893550276,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,31.22,4,1,0,0,13,3,0,1132.666666666667,0,0,0 +6223,7609,13814,13813,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,3,7.926029557922801,7.9763007555318,0,2,0,-9,5,0,4,159.959579857849,0,0,0,30,2,2,1,-9,-9,2019,1,1,12,0,40,45,15,1,0,1,0,9.571722563038666,9.571722563038666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,3,1,0,1,13,3,0,1132.666666666667,0,0,0 +6224,7610,13815,-9,13817,-9,2,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1106.300027294041,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,2,0,998,0,0,0 +6224,7610,13816,-9,13817,-9,3,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1049.477971805691,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,2,0,998,0,0,0 +6224,7610,13817,-9,-9,-9,1,1,0,25,2,1,2,0,2,-9,6,3,0,1,0,5.92489307638418,5.867162021877433,4,0,0,0,-9,0,-956.0586848038795,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,33,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.86539419745925,0,0,0,4.86,56.63,3,1,0,1,1,2,0,998,0,0,0 +6225,7611,13818,13819,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,3,0,8.283361749529869,8.397186886771269,1,0,-9,42,0,-1,124.5330352580426,0,0,0,62,1,3,1,3,3,2019,3,2,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.982983014768331,8.431977503536507,0,0,29.28,63.83,6,1,0,0,9,5,1,552.5,0,0,0 +6225,7611,13819,13818,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,3,8.450378357042123,8.713279488834045,0,1,0,-9,42,0,1,19.50121038130669,0,0,0,61,1,3,3,2,1,2019,2,1,13,2,25,25,15,1,2,4,0,16.09527992466854,16.09527992466854,0,0,0,0,0,0,0,0,0,0,1.625720317589482,0,0,0,35.8,59.5,2,1,0,0,9,5,1,552.5,0,0,0 +6226,7612,13820,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,8,3,1,1,0,7.137576580289674,7.213924855124239,3,0,0,0,-9,0,-1126.188944951857,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.541012327720161,6.655922605044625,0,0,24.43,37.96,2,1,0,0,12,2,1,320,0,0,0 +6227,7613,13821,-9,-9,-9,1,1,1,35,3,0,0,0,1,-9,2,1,0,5,9.015214331356784,9.006344026108826,0,3,0,0,0,-9,0,-894.3899309318722,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,47,48,15,1,0,-9,0,19.54604625355994,19.54604625355994,0,0,0,0,0,0,0,1,1,0,.5975687608959671,0,0,0,60.02,56.42,1,1,0,0,12,5,1,2578,0,0,0 +6228,7614,13822,-9,13823,13825,4,1,0,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.9299004743323,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,1,898,0,0,0 +6228,7614,13823,13825,-9,-9,1,1,0,38,1,1,4,0,1,-9,6,3,0,3,0,5.336734544880589,5.228221385599906,2,0,-9,7,0,-3,44.66651561669077,0,0,1,41,1,1,3,2,1,2019,4,3,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.422534331758762,0,79.55354291185493,2,44.13,51.34,5,1,0,0,2,2,1,898,0,0,0 +6228,7614,13824,-9,13823,13825,5,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.991685257735,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,1,898,0,0,0 +6228,7614,13825,13823,-9,-9,3,1,1,41,1,1,4,0,1,-9,8,3,1,1,0,0,0,2,0,-9,7,0,3,-1.508564325415089,0,0,0,38,1,3,3,-9,-9,2019,4,1,19,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.971921214891966,3,48.96,15.87,3,1,0,0,2,2,1,898,0,0,0 +6228,7614,13826,-9,13823,13825,2,1,1,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.5461600337029,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,1,898,0,0,0 +6228,7614,13827,-9,13823,13825,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.4207370749209,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,2,1,898,0,0,0 +6229,7615,13828,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,4,7.995253947223008,7.883454782811534,0,3,0,0,0,-9,0,-921.5515720123606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,48,40,15,1,0,-9,0,7.532311457328532,7.532311457328532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,4,0,0,4,4,0,623,0,0,0 +6230,7616,13829,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,2,1,0,3,8.669625464879424,8.209528691773063,0,3,0,0,0,-9,0,-1025.788901446445,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,50,60,15,1,1,-9,0,11.42218502946636,11.42218502946636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,49.04,4,1,0,0,2,5,1,497,0,0,0 +6231,7617,13830,13832,-9,-9,1,1,0,48,1,0,2,0,2,-9,1,1,0,3,6.879446879073775,6.492655363151016,0,2,0,-9,22,0,0,-87.76042598425374,0,0,0,57,3,2,1,1,1,2019,1,2,10,0,19,16,15,1,0,1,0,4.315328682242714,4.315328682242714,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.34,53.64,6,2,0,0,9,3,1,1400,0,0,0 +6231,7617,13831,-9,13830,13832,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.2306023471061,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,1,1400,0,0,0 +6231,7617,13832,13830,-9,-9,2,1,1,57,1,0,2,0,3,-9,2,1,0,2,8.286203721847196,8.373311794621799,0,2,0,-9,22,0,9,2.005887551873543,0,0,0,48,2,3,1,3,3,2019,1,1,22,9,49,55,15,1,9,1,0,12.66815675551689,12.66815675551689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.19,39.5,3,1,0,0,9,3,1,1400,0,0,0 +6231,7617,13833,-9,13830,13832,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.2295236709049,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,9,3,1,1400,0,0,0 +6232,7618,13834,13835,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,5.650354837125106,5.551519636639135,1,0,-9,6,0,0,-88.82669333656403,0,0,0,73,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4571613176088926,5.472643230029305,9.918410846660205,3,57.33,53.46,6,1,0,0,12,2,1,648.5,0,0,0 +6232,7618,13835,13834,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,0,43.40655665250512,0,0,0,73,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.070819255243368,0,0,0,63.66,46.31,7,1,0,0,12,2,1,648.5,0,0,0 +6233,7619,13836,13837,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,9.000477501507586,9.000181376580777,0,1,0,-9,7,0,1,-57.60956491154427,0,0,0,33,1,3,1,2,2,2019,1,2,10,0,40,37,15,1,0,1,0,26.48373047656461,26.48373047656461,0,0,0,0,0,0,0,0,0,0,2.410386639541237,0,0,0,51.83,57.2,6,1,0,0,2,5,1,633,0,0,0 +6233,7619,13837,13836,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,3,8.749236393205722,8.508131951096454,0,1,0,-9,7,0,-1,68.32808898050799,0,0,1,34,1,4,1,-9,-9,2019,1,1,7,0,37,37,15,1,0,1,0,16.75816497147539,16.75816497147539,0,0,0,0,0,0,0,0,0,0,4.048849548746078,0,0,0,55.96,49.93,6,1,0,0,2,5,1,633,0,0,0 +6234,7620,13838,13839,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,2,8.271357198421494,7.754009819185283,0,1,0,-9,37,0,-5,161.7250344480537,0,0,0,62,2,2,1,-9,-9,2019,1,1,20,8,38,38,15,1,8,1,0,8.267331268673027,8.267331268673027,0,0,0,0,0,0,0,0,0,0,6.136615820674254,0,0,0,48.29,49.79,2,1,0,0,12,5,1,458.5,0,0,0 +6234,7620,13839,13838,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.229832819943468,8.351269462612841,0,1,0,-9,37,0,5,22.33452335183245,0,0,0,57,2,2,1,3,2,2019,1,2,8,0,62,54,15,1,0,1,0,9.613202529668783,9.613202529668783,0,0,0,0,0,0,0,0,0,0,6.141821958308554,0,0,0,45.13,50.01,6,1,0,0,12,5,1,458.5,0,0,0 +6235,7621,13840,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,6.811145730029433,7.321661775260806,3,0,0,0,-9,0,-1001.282080281171,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.314633067157709,7.145728518243962,0,0,33.33,30.73,3,1,0,0,11,3,1,977,0,0,0 +6236,7622,13841,13843,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.446931015207761,8.482776142016252,0,2,0,-9,23,0,2,-50.54289151665554,0,0,0,45,2,4,1,2,2,2019,1,2,5,0,39,39,15,1,0,1,0,10.76249206018034,10.76249206018034,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,791.75,0,0,0 +6236,7622,13842,-9,13843,13841,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.05186167071,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,791.75,0,0,0 +6236,7622,13843,13841,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.579715410620537,8.722081562994626,0,2,0,-9,23,0,-2,2.500592401195685,0,0,0,47,2,4,1,2,3,2019,1,1,9,0,41,42,15,1,0,1,0,12.35383354514799,12.35383354514799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,6,1,0,0,9,4,1,791.75,0,0,0 +6236,7622,13844,-9,13843,13841,3,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-840.9094241714512,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,9,4,1,791.75,0,0,0 +6237,7623,13845,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,7.470212050930019,7.410802055021725,3,0,0,0,-9,0,-1020.664644446407,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.06740948489543,7.394912689725126,0,3,48.24,46.4,6,1,0,0,9,3,1,128,0,0,0 +6238,7624,13846,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,5,0,9.368113659212002,9.208730939371602,3,0,0,0,-9,0,-1088.826985852741,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.264608694888453,0,0,62.39,56.71,7,1,0,0,12,5,1,116,0,0,0 +6239,7625,13847,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,2,0,8.1915988636077,8.083278942490576,3,0,-9,0,1,0,-946.2040012285928,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,3.918355027899667,0,1,1,0,4.254046152856091,8.052426919245775,0,0,48.23,36.03,6,1,0,0,13,4,1,1416,0,0,0 +6240,7626,13848,13849,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,4,8.366201963885713,8.008096971373451,0,1,0,-9,20,0,4,6.882690871998144,0,0,0,46,2,3,1,2,2,2019,1,2,15,4,53,46,15,1,4,1,0,7.374756819303175,7.374756819303175,0,0,0,0,0,0,0,0,0,0,3.92625369834374,0,0,0,46.63,59.72,6,1,0,0,5,5,1,669,0,0,0 +6240,7626,13849,13848,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,3,8.259715394630074,8.442655767366201,5.888013476205016,1,0,-9,20,0,-4,-95.56606858280917,0,0,0,50,3,4,1,3,2,2019,1,1,9,2,55,45,15,1,2,1,0,9.021003847668331,9.021003847668331,0,0,0,0,0,0,0,0,0,0,6.289304027057416,0,0,0,43.89,41.87,6,1,0,0,5,5,1,669,0,0,0 +6241,7627,13850,-9,-9,-9,1,1,1,42,3,0,0,0,3,-9,2,1,0,3,7.976570010508666,7.829203304151279,0,3,0,-9,0,1,0,-985.696333993606,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,35,37,15,1,0,-9,0,6.25269841689757,6.25269841689757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,56.93,7,1,0,0,2,3,0,541,0,0,0 +6242,7628,13851,13853,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,4,9.206744118088825,8.853855145971693,0,2,0,-9,8,0,3,-58.32017481664296,0,0,0,33,1,4,1,2,2,2019,1,2,8,0,39,40,15,1,0,1,0,23.42929419464879,23.42929419464879,0,0,0,0,0,0,0,1,1,0,.7372787111094384,0,0,0,58.3,47.38,6,1,0,0,11,4,1,721.5,0,0,0 +6242,7628,13852,-9,13853,13851,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.178026887787,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,721.5,0,0,0 +6242,7628,13853,13851,-9,-9,2,1,0,33,1,1,2,0,1,-9,5,1,0,4,7.803258805504249,7.696517790518385,0,2,0,-9,8,0,-3,-63.8372163786042,0,0,1,36,1,4,1,1,2,2019,1,1,6,0,18,30,15,1,0,1,0,14.42556755772306,14.42556755772306,0,0,0,0,0,0,0,1,1,0,1.534866770379495,0,0,0,52.23,55.6,7,1,0,0,11,4,1,721.5,0,0,0 +6242,7628,13854,-9,13853,13851,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-897.6666312592517,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,721.5,0,0,0 +6243,7629,13855,13856,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.260768375134557,8.741268347666434,0,1,0,-9,35,0,-2,46.1469628445389,0,0,0,58,1,4,3,2,2,2019,2,1,8,0,30,33,15,1,0,4,0,12.75383248186673,12.75383248186673,0,0,0,0,0,0,0,0,0,0,2.159833650645986,0,0,0,50.43,53.69,3,1,0,0,6,5,1,755.5,0,0,0 +6243,7629,13856,13855,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,4,8.275799002375356,9.179324052249942,7.984693445113904,1,0,-9,35,0,2,-28.16463500456995,0,0,0,56,1,4,1,2,3,2019,3,2,3,0,4,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7963230863806,7.964388516028182,0,0,56.92,49.39,6,1,0,0,6,5,1,755.5,0,0,0 +6243,7630,13857,-9,13855,13856,3,1,1,23,2,0,0,0,1,-9,2,1,0,5,6.996376433440323,6.894527759681922,0,3,0,0,0,-9,0,-967.3653647405666,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,20,0,15,1,0,-9,1,7.402936462422692,7.402936462422692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,5,1,0,0,6,2,1,1574,0,0,0 +6243,7631,13858,-9,13855,13856,4,1,1,23,2,0,0,0,1,-9,2,1,0,5,6.904340655661723,6.558772293116456,0,3,0,0,0,-9,0,-984.2605952574655,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,17,4,15,1,0,-9,1,8.396592627163155,8.396592627163155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,4,1,0,0,6,2,1,590,0,0,0 +6244,7632,13859,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,7.100817464045805,6.890524099153932,3,0,0,0,-9,0,-887.903989255956,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.223081023528335,0,0,59.32,41.42,7,1,0,0,12,2,1,255,0,0,0 +6245,7633,13860,-9,13862,13861,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1007.167842010062,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,533.75,0,0,0 +6245,7633,13861,13862,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,9.023273205485673,8.973853416613141,0,2,0,-9,1,-9,-2,42.22894025070954,-9,0,0,44,1,2,1,2,3,2019,1,1,12,3,43,0,15,1,3,1,0,24.84798422673594,24.84798422673594,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,5,1,0,0,10,5,1,533.75,0,0,0 +6245,7633,13862,13861,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,2,8.235469006785934,8.385518607300677,0,2,0,-9,15,-9,2,-19.81940790616337,-9,0,1,42,1,4,1,3,3,2019,1,2,15,3,31,0,15,1,3,1,0,16.03343217145915,16.03343217145915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.34,43.11,2,1,0,0,10,5,1,533.75,0,0,0 +6245,7633,13863,-9,13862,13861,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-957.7537575382826,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,10,5,1,533.75,0,0,0 +6246,7634,13864,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,7.036417565761171,6.787916316704059,3,0,0,0,-9,0,-993.424405964601,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.658998979555213,0,0,53,44,6,1,0,0,6,2,0,1213,0,0,0 +6247,7635,13865,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,2,7.146264403580044,7.429585528213388,6.400475882447069,4,0,0,0,-9,0,-942.8582367936514,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,20,20,15,1,5,-9,0,8.373421844073654,8.373421844073654,0,0,0,0,0,0,0,1,1,0,5.957042509786367,0,0,3,27.97,60.5,4,1,0,0,6,2,1,971.5,0,0,0 +6247,7635,13866,-9,13865,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-872.3968356157039,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,2,1,971.5,0,0,0 +6248,7636,13867,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,3,0,5.428495826481288,5.597726154517875,3,0,0,0,-9,0,-953.3839011038397,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.728710586443838,5.152080841169966,0,0,53.96,41.27,6,1,0,0,6,2,1,250,0,0,0 +6248,7637,13868,-9,13867,-9,2,1,1,48,2,0,0,0,1,-9,2,1,0,4,8.321436170316545,8.370194843665523,0,3,0,0,0,-9,0,-920.8111353036238,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,4,50,66,15,1,4,-9,1,10.32604365073981,10.32604365073981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,5,1,0,0,6,4,1,944,0,0,0 +6249,7638,13869,-9,13870,13872,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.405520207375,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,813.75,0,0,0 +6249,7638,13870,13872,-9,-9,1,1,0,42,1,0,2,0,3,-9,3,3,0,3,0,0,0,2,0,1,1,-9,-5,0,0,0,1,47,3,2,3,-9,-9,2019,4,3,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.78,34.44,5,1,1,1,9,1,0,813.75,0,0,0 +6249,7638,13871,-9,13870,13872,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.5846423376793,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,1,0,813.75,0,0,0 +6249,7638,13872,13870,-9,-9,3,1,1,47,1,0,2,0,3,-9,3,3,0,2,0,0,0,2,0,1,1,-9,5,0,0,0,0,42,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.94,45.89,4,1,1,1,9,1,0,813.75,0,0,0 +6250,7639,13873,13876,-9,-9,4,1,1,42,1,0,3,0,2,-9,1,1,0,3,4.168584386428835,4.121039312117898,0,2,0,-9,4,0,-12,-243.9268802510967,0,0,0,54,1,4,1,-9,-9,2019,1,1,9,3,65,35,15,1,3,1,0,.1142234381091638,.1142234381091638,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,41.93,5,1,0,0,12,2,1,450.2,0,0,0 +6250,7639,13874,-9,13876,-9,2,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-959.8697441572158,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,2,1,450.2,0,0,0 +6250,7639,13875,-9,-9,13873,5,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.660152978754,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,450.2,0,0,0 +6250,7639,13876,13873,-9,-9,1,1,0,54,1,0,3,0,1,-9,1,1,0,4,8.030468935866965,7.907565157005423,0,2,0,-9,4,0,12,13.95227717662393,0,0,0,42,2,3,1,1,1,2019,1,4,14,4,65,38,15,1,4,1,0,4.844198785460859,4.844198785460859,0,0,0,0,0,0,0,1,1,0,3.039353134071593,0,0,0,47.97,56.11,5,1,0,0,12,2,1,450.2,0,0,0 +6250,7639,13877,-9,13876,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-996.7406937798831,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,2,1,450.2,0,0,0 +6251,7640,13878,13882,-9,-9,2,1,1,39,1,0,5,0,3,-9,2,1,0,2,6.60981774304997,6.737639126176379,0,2,0,-9,2,0,-3,20.78681760826604,0,0,0,42,2,3,1,3,3,2019,1,1,9,0,30,0,15,1,0,1,0,3.126703508439471,3.126703508439471,0,0,0,0,0,0,0,1,0,1,1.655338226367147,0,0,0,54.77,31.94,6,3,0,0,7,2,1,634.4285714285714,0,0,0 +6251,7640,13879,-9,13882,13878,6,1,1,5,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.5707766831465,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,3,0,0,7,2,1,634.4285714285714,0,0,0 +6251,7640,13880,-9,13882,13878,3,1,0,13,2,0,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-989.9983681221838,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,5,3,0,0,7,2,1,634.4285714285714,0,0,0 +6251,7640,13881,-9,13882,13878,7,1,0,4,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.3092052426256,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,7,2,1,634.4285714285714,0,0,0 +6251,7640,13882,13878,-9,-9,1,1,0,42,1,0,5,0,2,-9,2,1,0,3,6.729422038987486,7.449549484374753,0,2,0,-9,9,0,3,152.6469535018587,0,0,1,39,3,2,1,2,2,2019,1,2,10,2,16,16,15,1,2,1,0,7.638457872042226,7.638457872042226,0,0,0,0,0,0,0,1,0,1,1.281310834470716,0,7.447469935866778,1,34.74,51.67,5,3,0,0,7,2,1,634.4285714285714,0,0,0 +6251,7640,13883,-9,13882,13878,4,1,0,11,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1140.822163098547,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,5,3,0,0,7,2,1,634.4285714285714,0,0,0 +6251,7640,13884,-9,13882,13878,5,1,0,9,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.853622922275,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,3,0,0,7,2,1,634.4285714285714,0,0,0 +6252,7641,13885,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,3,0,6.521208206235812,6.73209088733741,3,0,0,0,-9,0,-1067.532796586735,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.398455162168456,6.928286877223102,0,0,63.26,37,2,1,0,0,10,2,0,592,0,0,0 +6253,7642,13886,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,4,0,8.150196005893415,7.747645466109661,3,0,0,0,-9,0,-1029.617571148229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.141887906881114,8.033633745918952,0,0,58.5,41.81,6,1,0,0,4,4,1,800,0,0,0 +6254,7643,13887,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,0,6.632728850877768,6.896453296023261,3,0,0,0,-9,0,-1033.78276153726,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.079127212026455,0,0,61.19,15.48,5,1,0,0,10,2,0,713,0,0,0 +6255,7644,13888,-9,-9,-9,1,1,0,35,2,1,1,0,2,-9,2,1,0,3,7.063776008581484,7.400429251888609,6.356223732051509,4,0,0,0,-9,0,-1044.952175530018,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,16,16,15,1,12,-9,0,9.405659208774299,9.405659208774299,0,0,0,0,0,0,0,1,1,0,6.197782075146669,0,0,0,32.08,58.42,5,1,0,0,1,3,1,559,0,0,0 +6255,7644,13889,-9,13888,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1016.587052073715,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,3,1,559,0,0,0 +6256,7645,13890,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-976.6088454613023,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,.9130639170506847,0,0,0,1,1,0,0,0,0,0,55.22,30.22,6,1,0,0,10,1,1,617,0,0,0 +6257,7646,13891,13892,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,2,9.040579538290981,9.073109617891134,0,1,0,-9,8,0,1,7.894061316960941,0,0,0,44,1,2,1,2,3,2019,1,2,12,0,44,12,15,1,0,1,0,22.37690894678273,22.37690894678273,0,0,0,0,0,0,0,0,0,0,1.476984997957999,0,0,0,45.97,53.8,3,1,0,0,9,5,1,991,0,0,0 +6257,7646,13892,13891,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,2,8.402689427660922,8.37822739490495,0,1,0,-9,8,0,-1,42.57712480740461,0,0,1,45,2,2,1,3,3,2019,1,1,24,10,20,12,15,1,10,1,0,24.32811480867186,24.32811480867186,0,0,0,0,0,0,0,0,0,0,2.109910528031265,0,0,0,25.43,37.06,2,1,0,1,9,5,1,991,0,0,0 +6258,7647,13893,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,-9,0,1,0,-977.4698118032401,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,4,1,1,1194,0,0,0 +6259,7648,13894,13895,-9,-9,1,1,0,44,1,0,0,0,2,-9,1,1,0,3,7.339684200516739,7.385354889705328,0,1,0,-9,18,0,0,-144.4722583691023,0,0,1,44,2,4,1,2,2,2019,1,2,3,0,10,10,15,1,0,1,0,20.01877300955698,20.01877300955698,0,0,0,0,0,0,0,0,0,0,2.196490533562823,0,7.333190381400354,3,53.05,26.88,6,1,0,0,4,5,1,1181,0,0,0 +6259,7648,13895,13894,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,4,9.133292011791823,8.995538534479053,0,1,0,-9,20,0,0,-102.2757680575229,0,0,0,44,2,3,1,2,2,2019,1,1,11,0,52,40,15,1,0,1,0,15.17568013416678,15.17568013416678,0,0,0,0,0,0,0,0,0,0,6.657108723357091,0,0,0,57.16,56.15,6,1,0,0,4,5,1,1181,0,0,0 +6260,7649,13896,13898,-9,-9,1,1,0,33,1,1,3,0,2,-9,1,1,0,4,6.191838340025955,5.995256717406714,0,2,0,-9,12,0,-3,15.24178214344421,0,0,1,36,1,1,1,2,1,2019,1,2,10,1,6,0,15,1,1,1,0,8.065871149009666,8.065871149009666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,5,2,1,1653.4,0,0,0 +6260,7649,13897,-9,13896,13898,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.5999592041006,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,2,1,1653.4,0,0,0 +6260,7649,13898,13896,-9,-9,2,1,1,36,1,1,3,0,1,-9,2,1,0,1,7.968536652170625,7.901719172691313,0,2,0,-9,12,0,3,15.23087164038984,0,0,0,33,2,4,1,2,2,2019,1,1,12,4,10,40,15,1,4,1,0,34.19909069243813,34.19909069243813,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,15.69,6,1,0,0,5,2,1,1653.4,0,0,0 +6260,7649,13899,-9,13896,13898,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.3909464888404,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,1,1653.4,0,0,0 +6260,7649,13900,-9,13896,13898,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.8909157737372,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,5,2,1,1653.4,0,0,0 +6261,7650,13901,13902,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,4,9.611323711567682,9.667733185010457,7.744540732630517,1,0,-9,32,0,-1,115.5875391467017,0,0,0,62,1,5,1,1,2,2019,1,2,8,0,4,2,15,1,0,1,0,437.8187947728841,437.8187947728841,0,0,0,0,0,0,0,0,0,0,4.15533191195631,7.361749832473115,0,0,55.76,52.64,6,1,0,0,9,5,0,374,0,0,0 +6261,7650,13902,13901,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,5,4.709775278190378,4.771359625781439,0,1,0,-9,31,0,1,51.81435045932678,0,0,0,61,1,4,1,3,3,2019,1,1,6,0,40,0,15,1,0,1,0,.2714190966026891,.2714190966026891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,0,374,0,0,0 +6262,7651,13903,13904,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,5,7.694833873439116,7.915636233790914,6.672836721779796,1,0,-9,41,0,0,-66.94305562140183,0,0,0,69,2,4,3,2,2,2019,2,2,10,0,25,30,15,1,0,4,0,10.17197232309705,10.17197232309705,0,0,0,0,0,0,0,0,0,0,1.381412285905173,6.512504679570849,0,0,43.32,63.94,6,1,0,0,11,4,1,2286,0,0,0 +6262,7651,13904,13903,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,7.611157460208687,7.750907264757788,6.868594954173846,1,0,-9,41,0,9,6.59221714369752,0,0,0,60,1,5,1,3,-9,2019,3,1,6,0,20,0,15,4,0,1,0,0,0,1,0,4.721610575262686,0,0,0,0,0,0,0,1.746484124655507,6.821900704428302,0,0,61.27,46.03,7,1,0,0,11,4,1,2286,0,0,0 +6263,7652,13905,13906,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,7.804895528524169,8.003155941442603,0,1,0,-9,12,0,7,80.63784080938103,0,0,0,45,2,4,1,2,2,2019,1,2,9,0,45,0,15,1,0,1,0,6.793534175817839,6.793534175817839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,1,407.5,0,0,0 +6263,7652,13906,13905,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,4,8.463763393161607,8.286125332883714,0,1,0,-9,13,0,-7,74.94003060407367,0,0,0,52,2,4,1,2,2,2019,1,1,7,0,45,0,15,1,0,1,0,12.13846267642352,12.13846267642352,0,0,0,0,0,0,0,0,0,0,5.43864524429195,0,0,0,57.16,56.15,6,1,0,0,7,4,1,407.5,0,0,0 +6264,7653,13907,13908,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.054230366614885,7.90944637021687,0,1,0,-9,7,0,-12,-55.5054319000342,0,0,0,58,2,3,1,2,2,2019,1,1,7,0,40,48,15,1,0,1,0,8.863117338390735,8.863117338390735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,6,1,0,0,9,4,1,1360,0,0,0 +6264,7653,13908,13907,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.081504807661458,8.011760810771047,0,1,0,-9,7,0,12,68.70907646737926,0,0,0,46,2,4,1,3,2,2019,1,2,7,0,26,30,15,1,0,1,0,11.98991587714169,11.98991587714169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,2,1,0,0,9,4,1,1360,0,0,0 +6265,7654,13909,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,4,7.605304988492077,8.872162585242576,8.395712786529478,3,0,0,0,-9,0,-1048.481182207458,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,18,18,15,1,0,-9,0,10.97422386297838,10.97422386297838,0,0,0,0,0,0,0,0,0,0,8.624120048044762,0,0,0,58.15,52.91,6,1,0,0,9,5,1,444,0,0,0 +6266,7655,13910,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,6.588769176774885,6.731293102705336,3,0,0,0,-9,0,-841.1286836243205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.650188572092955,0,0,49.09,46.92,6,1,0,0,2,2,1,609,0,0,0 +6267,7656,13911,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-905.0554938437151,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.032096770175467,0,0,0,44,53.95,6,1,0,0,10,1,1,362,0,0,0 +6268,7657,13912,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,5.319639943293931,5.397643952246155,3,0,0,0,-9,0,-973.9889713312773,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.630909323983209,0,0,47.65,25.56,1,1,0,1,11,2,1,1129,0,0,0 +6269,7658,13913,13914,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.755809823880647,8.578266421912025,0,1,0,-9,6,0,-4,132.3351509131685,0,0,0,58,2,2,1,3,2,2019,1,2,9,0,35,35,15,1,0,1,0,16.58267373489394,16.58267373489394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,2,5,0,943,0,0,0 +6269,7658,13914,13913,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,2,8.840853974352703,8.959350587197033,0,1,0,-9,6,0,4,88.99642003860241,0,0,0,54,1,4,1,-9,-9,2019,1,1,6,0,47,44,15,1,0,1,0,15.81451056589088,15.81451056589088,0,0,0,0,0,0,0,0,0,0,1.61804976629998,0,0,0,57.57,49.69,5,1,0,0,2,5,0,943,0,0,0 +6270,7659,13915,13917,-9,-9,3,1,1,50,1,0,1,0,3,-9,2,1,0,4,8.701677866848017,8.62594510220398,0,2,0,-9,8,0,2,-66.69381526788892,0,0,0,48,2,3,1,-9,-9,2019,1,1,12,0,43,43,15,1,0,1,0,16.84879858525252,16.84879858525252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,9,4,1,1306,0,0,0 +6270,7659,13916,-9,13917,13915,2,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.687059940762,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,9,4,1,1306,0,0,0 +6270,7659,13917,13915,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.809160182115346,8.076016186015329,0,2,0,-9,8,0,-2,87.85108667174457,0,0,0,50,3,4,1,-9,2,2019,1,3,12,0,24,23,15,1,0,1,0,10.29844337105057,10.29844337105057,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.5,40.07,6,1,0,0,9,4,1,1306,0,0,0 +6271,7660,13918,13919,-9,-9,2,1,1,48,1,0,0,0,1,-9,1,1,0,4,9.100517159417214,9.155977382611399,7.297266481746758,1,0,-9,15,0,-5,66.10333757350844,0,0,0,53,3,3,1,2,2,2019,1,1,6,0,38,38,15,1,0,1,0,30.11280080420432,30.11280080420432,0,0,0,0,0,0,0,0,0,0,1.136510036774105,7.490561569052463,0,0,57.16,56.15,6,1,0,0,5,5,1,493,0,0,0 +6271,7660,13919,13918,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,3,7.35747862426211,7.022117236360579,0,1,0,-9,15,0,5,57.47423483731147,0,0,0,48,1,4,1,-9,3,2019,1,2,7,0,16,16,15,1,0,1,0,8.259671742937766,8.259671742937766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,7,1,0,0,5,5,1,493,0,0,0 +6272,7661,13920,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-887.1690040300808,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1191522576040886,0,0,0,51.27,20.98,5,1,0,0,2,1,0,810,0,0,0 +6273,7662,13921,13923,-9,-9,2,1,1,62,1,0,2,0,2,-9,1,1,0,3,8.098049197912125,7.925158858278271,0,2,0,-9,7,0,14,98.54285836097307,0,0,0,48,2,5,3,-9,-9,2019,2,1,20,7,50,25,15,1,7,3,0,5.766104709227008,5.766104709227008,0,0,0,0,0,0,0,1,1,0,6.974844542473624,0,0,0,42.39,54.77,4,1,0,0,7,2,1,899.75,0,0,0 +6273,7662,13922,-9,13923,13921,4,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-928.453291950382,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,7,2,1,899.75,0,0,0 +6273,7662,13923,13921,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,7,0,-14,21.44351199726214,0,0,0,62,2,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.753513857560324,0,0,0,46.4,59.87,5,1,0,0,7,2,1,899.75,0,0,0 +6273,7662,13924,-9,13923,13921,3,1,0,17,2,0,2,1,2,0,7,2,0,5,5.479861970789978,5.466581906151267,0,2,0,0,0,-9,0,-1210.936631712576,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,3,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.314151369141291,0,0,0,54.1,59.11,6,1,0,0,7,2,1,899.75,0,0,0 +6274,7663,13925,13926,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,4,8.937075859283988,8.563612764077188,0,2,0,-9,9,0,1,117.4077017766588,0,0,0,52,1,4,1,3,2,2019,1,2,6,0,50,35,15,1,0,1,0,13.20163482255655,13.20163482255655,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.7,47.65,7,1,0,0,12,5,1,1208.333333333333,0,0,0 +6274,7663,13926,13925,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,4,8.865071782789075,8.915692939939539,0,2,0,-9,9,0,-1,-16.91305452506991,0,0,0,53,1,4,1,3,2,2019,1,1,12,0,50,50,15,1,0,1,0,15.36314161473286,15.36314161473286,0,0,0,0,0,0,0,1,1,0,4.166760105528581,0,0,0,52.77,55.33,5,1,0,0,12,5,1,1208.333333333333,0,0,0 +6274,7663,13927,-9,13925,13926,3,1,0,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-997.0807884922414,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,3,1,0,0,12,5,1,1208.333333333333,0,0,0 +6275,7664,13928,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,-9,0,1,0,-902.3172422364233,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.1864174851253169,3,39.8,26.44,3,1,0,0,11,1,0,137,0,0,0 +6276,7665,13929,13932,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,8.799226666781898,8.946976329677323,0,2,0,-9,16,0,2,1.108382442976863,0,0,0,39,1,4,1,3,3,2019,1,1,7,0,60,55,15,1,0,1,0,13.11034620227124,13.11034620227124,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,7,1,0,0,4,5,1,594.75,0,0,0 +6276,7665,13930,-9,13932,13929,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.167783901153,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,594.75,0,0,0 +6276,7665,13931,-9,13932,13929,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.848702714515,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,594.75,0,0,0 +6276,7665,13932,13929,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,4,7.68727697875114,7.498852259437803,0,2,0,-9,16,0,-2,-117.5792761991199,0,0,1,41,2,4,1,1,1,2019,1,2,12,2,57,38,15,1,2,1,0,5.63065304768756,5.63065304768756,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,7,1,0,0,4,5,1,594.75,0,0,0 +6277,7666,13933,13934,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,7.323345543923216,7.105371763938879,1,0,-9,51,0,-4,-47.61654836614402,0,0,0,81,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,1.132333034053561,0,0,0,1,1,0,3.670504455908536,7.680346670833986,77.28655785333171,2,46.91,31.14,6,1,0,0,10,2,1,808.5,0,0,0 +6277,7666,13934,13933,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,51,0,4,-124.6754288630084,0,0,0,77,2,2,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,1,0,115.6615672690702,10.05823683127779,0,0,0,1,1,0,0,0,73.11315531120542,1,38.72,18.82,2,1,0,0,10,2,1,808.5,0,0,0 +6278,7667,13935,13937,-9,-9,2,1,1,42,1,0,3,0,1,-9,1,1,0,5,9.069524280183472,9.028191956893261,0,2,0,-9,7,0,5,67.11655228290999,0,0,0,37,2,4,1,-9,-9,2019,1,1,7,0,40,35,15,1,0,1,0,19.92867168241834,19.92867168241834,0,0,0,0,0,0,0,1,1,0,7.225045057106655,0,0,0,57.06,57.76,6,1,0,0,6,5,1,545.2,0,0,0 +6278,7667,13936,-9,13937,13935,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.505343941304,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,5,1,545.2,0,0,0 +6278,7667,13937,13935,-9,-9,1,1,0,37,1,0,3,0,2,-9,1,1,0,4,8.224321467083078,8.111406667065379,0,2,0,-9,7,0,-5,-25.19431133136431,0,0,1,42,1,5,1,2,-9,2019,1,2,7,0,35,35,15,1,0,1,0,15.90977617237373,15.90977617237373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,50.73,7,1,0,0,6,5,1,545.2,0,0,0 +6278,7667,13938,-9,13937,13935,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.801618718033,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,545.2,0,0,0 +6278,7667,13939,-9,13937,13935,4,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.01832718987,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,5,1,545.2,0,0,0 +6279,7668,13940,13941,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,3,8.55792474600892,8.471550874877092,0,2,0,-9,6,0,-2,14.95054658694015,0,0,0,48,2,2,1,2,2,2019,1,1,7,0,36,37,15,1,0,1,0,12.68004355774418,12.68004355774418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,13,4,1,826,0,0,0 +6279,7668,13941,13940,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,2,8.054136208505957,7.865355619552561,0,2,0,-9,6,0,2,179.2836379100389,0,0,0,46,2,3,1,3,3,2019,1,2,6,0,44,44,15,1,0,1,0,10.86170011449911,10.86170011449911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,5,1,0,0,13,4,1,826,0,0,0 +6279,7669,13942,-9,13940,13941,3,1,1,21,2,0,1,1,2,0,7,2,0,4,7.322016568965021,7.602294516791603,0,3,0,0,0,-9,0,-1019.933911738014,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,3,1,382,0,0,0 +6279,7670,13943,-9,13940,13941,4,1,0,18,2,0,1,1,2,0,7,2,0,4,5.4255071628305,5.329794240055928,0,3,0,0,0,-9,0,-924.0968998453523,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,1699,0,0,0 +6280,7671,13944,13945,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,5,9.441735495002195,9.354772837889458,0,1,0,-9,37,0,2,-26.23498661197773,0,0,0,55,2,3,1,2,2,2019,1,1,7,1,41,35,15,1,1,1,0,27.38186266423422,27.38186266423422,0,0,0,0,0,0,0,0,0,0,6.211815949399691,0,0,0,54.5,49.47,6,1,0,0,9,5,1,359.5,0,0,0 +6280,7671,13945,13944,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.418404455146163,7.057382424417174,0,1,0,-9,34,0,-2,78.1035612051067,0,0,0,57,2,5,1,2,2,2019,1,2,12,3,18,18,15,1,3,1,0,12.18188704924339,12.18188704924339,0,0,0,0,0,0,0,0,0,0,8.083803796591466,0,0,0,44.03,38.35,6,1,0,0,9,5,1,359.5,0,0,0 +6281,7672,13946,13947,-9,-9,2,1,0,59,1,0,0,0,1,-9,1,1,0,5,8.42322685540425,8.59316338933197,0,1,0,-9,8,0,0,-58.11379997061652,0,0,0,59,2,4,1,3,2,2019,1,1,12,0,50,28,15,1,0,1,0,15.92984304580332,15.92984304580332,0,0,0,0,0,0,0,0,0,0,3.507328612363017,0,0,0,48.18,61.8,5,1,0,0,8,5,1,304.5,0,0,0 +6281,7672,13947,13946,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.936025870949329,8.787757192469478,0,1,0,-9,8,0,0,-31.68613663852209,-9,0,0,59,1,5,1,3,2,2019,1,2,8,0,35,0,15,1,0,1,0,22.2765413187757,22.2765413187757,0,0,0,0,0,0,0,0,0,0,4.745328889792288,0,0,0,51.77,58.57,6,1,0,0,8,5,1,304.5,0,0,0 +6281,7673,13948,-9,13946,13947,3,1,0,21,2,0,0,1,2,-9,7,2,0,3,5.818708185688451,6.000520986748461,0,3,0,0,0,-9,0,-989.7750745060994,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.96,55.64,6,1,0,0,8,2,1,604,0,0,0 +6282,7674,13949,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,2,6.980892480650281,6.85931251135454,0,3,0,0,0,-9,0,-1039.305326558913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,35,30,15,1,2,-9,0,3.584674939553988,3.584674939553988,0,0,0,0,0,0,0,1,0,1,0,0,10.79138937555398,3,51.27,34.89,4,1,0,0,13,2,1,571,0,0,0 +6282,7675,13950,-9,13949,-9,2,1,0,21,2,0,0,0,2,1,2,1,0,3,7.46073028143907,7.604093637949678,0,3,0,0,0,-9,0,-1051.625069681385,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,37,0,15,1,6,-9,1,6.507474985826089,6.507474985826089,0,0,0,0,0,0,0,1,0,1,0,0,21.98850361870258,3,52.93,52.64,6,1,0,1,13,3,1,196,0,0,0 +6283,7676,13951,13952,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,8.670210492822898,8.803665481405426,0,2,0,-9,8,0,10,-116.2108527340337,0,0,0,30,2,3,1,3,2,2019,1,2,18,6,38,72,15,1,6,1,0,16.69781322084974,16.69781322084974,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.71,50.51,5,1,0,0,12,4,1,1391,0,0,0 +6283,7676,13952,13951,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,3,7.095848711114001,6.896713358410595,0,2,0,-9,8,0,-10,114.5944195919813,0,0,1,40,1,4,1,-9,-9,2019,1,1,13,1,33,17,15,1,1,1,0,3.400639815270114,3.400639815270114,0,0,0,0,0,0,0,1,1,0,5.632852111204334,0,0,0,47.75,53.7,6,1,0,0,12,4,1,1391,0,0,0 +6283,7676,13953,-9,13952,13951,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.873234106767,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1391,0,0,0 +6283,7676,13954,-9,13952,13951,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.21684641908,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,1391,0,0,0 +6284,7677,13955,13956,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,5,9.628818929845254,9.531844538149951,0,2,0,-9,6,0,-2,-85.06017894978304,0,0,0,39,1,4,2,2,3,2019,2,2,5,0,33,35,15,1,0,2,0,54.81654355787749,54.81654355787749,0,0,0,0,0,0,0,1,1,0,5.3120653429252,0,0,0,47.39,56.64,6,1,0,0,12,5,1,568.6666666666666,0,0,0 +6284,7677,13956,13955,-9,-9,2,1,0,39,1,1,1,0,1,0,7,2,0,4,0,0,0,2,0,-9,6,0,2,-30.48236319004867,-9,0,1,37,1,5,1,-9,-9,2019,3,1,7,1,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,12,5,1,568.6666666666666,0,0,0 +6284,7677,13957,-9,13956,13955,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.475163070908,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,5,1,568.6666666666666,0,0,0 +6285,7678,13958,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,4,7.831112336315918,7.115905354090652,0,3,0,0,0,-9,0,-947.4070151596666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,30,30,15,1,0,-9,0,7.771107747353948,7.771107747353948,0,0,0,0,0,0,0,0,0,0,.0447723953965502,0,0,0,56.77,52.22,7,1,0,0,9,3,0,901,0,0,0 +6286,7679,13959,13960,-9,-9,1,1,1,55,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,2,0,5,-141.6582656079525,0,0,0,50,2,4,1,2,1,2019,3,2,22,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.64,15.66,1,1,0,1,7,2,1,695,0,0,0 +6286,7679,13960,13959,-9,-9,2,1,0,50,1,0,0,0,2,-9,1,1,0,4,7.150214695079249,6.780776966465029,0,1,0,-9,2,0,-5,-36.26342225088918,-9,0,0,55,2,1,3,-9,-9,2019,2,1,10,0,50,0,15,1,1,3,0,2.051148364259376,2.051148364259376,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,54,6,5,0,0,7,2,1,695,0,0,0 +6287,7680,13961,13962,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,3,8.437919335968987,8.208354847559132,0,1,0,-9,9,0,-3,-112.0271501986787,0,0,0,54,3,4,1,-9,2,2019,1,1,11,0,45,45,15,1,0,1,0,10.82194224110444,10.82194224110444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,5,1,0,0,10,5,1,962,0,0,0 +6287,7680,13962,13961,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,4,8.444276442452868,8.320976251784311,0,1,0,-9,9,0,3,-6.23701301983601,0,0,0,51,3,3,1,3,2,2019,1,2,9,0,35,40,15,1,0,1,0,16.41167646617335,16.41167646617335,0,0,0,0,0,0,0,0,0,0,4.341737504437868,0,0,0,58.33,47.36,6,1,0,0,10,5,1,962,0,0,0 +6288,7681,13963,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,6,3,0,3,0,7.42880349446307,7.581557518917863,4,0,-9,0,-9,0,-1150.95610922581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.743166073890079,0,28.6208687166238,3,27.85,57.58,3,1,0,0,6,2,1,401,0,0,0 +6288,7682,13964,-9,13963,-9,2,1,1,18,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1113.859896346991,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,5,1,1,0,6,2,1,1848,0,0,0 +6289,7683,13965,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,2,1,0,3,7.591962764175983,8.152051956925686,7.535366609321318,3,0,0,0,-9,0,-936.083857364276,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,6,10,15,1,0,-9,0,35.37822015672693,35.37822015672693,0,0,0,0,0,0,0,1,1,0,0,7.685143069052929,0,0,58.32,50.22,6,1,0,0,9,4,1,211,0,0,0 +6290,7684,13966,13968,-9,-9,2,1,0,44,1,0,2,0,3,-9,2,1,0,4,7.24366695132918,7.372236799557847,0,2,0,-9,7,0,-3,-85.84844301433947,0,0,1,47,2,2,3,3,3,2019,2,1,10,0,23,23,15,1,0,3,0,7.886794909419612,7.886794909419612,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,5,1,0,0,12,2,1,799,0,0,0 +6290,7684,13967,-9,13966,13968,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1024.069831722028,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,12,2,1,799,0,0,0 +6290,7684,13968,13966,-9,-9,1,1,1,47,1,0,2,0,2,-9,3,3,0,2,0,0,0,2,0,-9,7,0,3,-50.47226685294673,-9,0,0,44,3,4,1,2,2,2019,3,2,23,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.22,53.7,2,1,1,1,12,2,1,799,0,0,0 +6290,7684,13969,-9,13966,13968,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.7244267162295,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,2,1,799,0,0,0 +6291,7685,13970,13971,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,4.106999151936519,4.123612704615197,1,0,-9,52,0,1,16.93446014381027,0,0,0,71,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.997785538857617,3.879052724332375,0,0,59.45,33.75,6,1,0,0,1,2,0,181.5,0,0,0 +6291,7685,13971,13970,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,52,0,-1,-55.5588749943518,0,0,0,72,3,2,3,3,2,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,34.29,33.04,5,1,0,0,1,2,0,181.5,0,0,0 +6292,7686,13972,13973,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,6.517994536716928,6.59095699771861,1,0,-9,46,0,-3,-5.663344702753091,0,0,0,66,3,3,3,3,3,2019,4,2,21,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.8008089044623998,6.725949805391359,0,0,33.97,57.61,5,1,0,0,6,2,1,1545.5,0,0,0 +6292,7686,13973,13972,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,3,-23.14727573814648,0,0,0,63,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,0,0,0,6.039912997883678,0,0,0,51,48,5,1,0,0,6,2,1,1545.5,0,0,0 +6293,7687,13974,13975,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,18,0,-3,79.28177479011825,0,0,0,72,1,4,1,2,1,2019,3,2,18,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.871978784663709,0,0,0,39.92,51.08,3,1,0,0,9,5,1,829,0,0,0 +6293,7687,13975,13974,-9,-9,2,1,0,72,1,0,0,0,1,-9,1,1,0,4,7.914582410542431,8.963424738834592,8.530541430464103,1,0,-9,21,0,3,2.330630289730527,0,0,0,69,1,2,3,3,3,2019,2,1,7,0,8,17,15,1,0,4,0,43.72513775937131,43.72513775937131,0,0,0,0,0,0,0,1,1,0,2.811858214924726,8.741408543539107,0,0,51.83,57.2,6,1,0,0,9,5,1,829,0,0,0 +6294,7688,13976,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,4,8.544922530943282,8.788947357680296,0,3,0,0,0,-9,0,-903.9788563281311,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,62,65,15,1,0,-9,0,13.18524489255392,13.18524489255392,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,2,5,1,1500,0,0,0 +6295,7689,13977,13978,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,3,6.382292487586217,7.116953391277129,6.346300074086352,1,0,-9,39,0,1,-22.84357930660762,0,0,0,60,2,4,1,2,3,2019,1,2,10,0,14,13,15,1,0,1,0,4.986034366452033,4.986034366452033,0,0,0,0,0,0,0,1,1,0,6.516016833819156,4.901934827239475,0,0,62.03,33.47,6,1,0,0,6,4,1,160,0,0,0 +6295,7689,13978,13977,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.67050073791521,8.687801057185492,0,1,0,-9,6,0,-1,-26.5067251422705,0,0,0,61,3,3,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,17.52506433383394,17.52506433383394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,6,1,0,0,6,4,1,160,0,0,0 +6295,7690,13979,-9,13977,13978,3,1,1,34,2,0,0,0,2,-9,2,1,0,4,8.441177087187469,8.606377141937779,0,3,0,0,0,-9,0,-893.4368400910523,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,13.29087307653745,13.29087307653745,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,6,4,1,242,0,0,0 +6296,7691,13980,13981,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,11,0,-5,0,0,0,0,62,3,3,3,-9,-9,2019,4,2,12,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,5,1,0,357.5,0,0,0 +6296,7691,13981,13980,-9,-9,2,1,1,62,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,11,0,5,0,0,0,0,57,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,1,0,5,1,0,357.5,0,0,0 +6297,7692,13982,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1071.219595523881,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,67.36,32.42,7,1,0,0,5,1,1,278,0,0,0 +6298,7693,13983,-9,13988,-9,6,1,1,4,2,1,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1049.707680557357,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,586,0,0,0 +6298,7693,13984,-9,13988,-9,5,1,1,6,2,1,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1032.471617454706,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,586,0,0,0 +6298,7693,13985,-9,13988,-9,4,1,1,8,2,1,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-949.6297287227636,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,586,0,0,0 +6298,7693,13986,-9,13988,-9,7,1,1,0,2,1,6,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-871.7945198091974,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,586,0,0,0 +6298,7693,13987,-9,13988,-9,2,1,0,13,2,1,6,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-967.7678639239017,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,2,2,0,586,0,0,0 +6298,7693,13988,-9,-9,-9,1,1,0,28,3,1,6,0,1,-9,1,1,0,3,6.750181953320379,6.67597011763825,0,4,0,0,0,-9,0,-975.2093862596619,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,16,16,15,1,0,-9,0,6.713797267374185,6.713797267374185,0,0,0,0,0,0,0,1,1,0,0,0,81.09228004749106,3,56.5,48.33,6,1,0,0,2,2,0,586,0,0,0 +6299,7694,13989,13990,-9,-9,1,1,0,43,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,28,0,-4,-201.5335925009234,0,0,1,47,2,3,1,3,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.018341235682616,0,0,0,39.15,41.42,4,3,1,0,8,2,1,2156,0,0,0 +6299,7694,13990,13989,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,3,6.86641856705776,6.946977277042815,0,1,0,-9,28,0,4,2.28176668196425,0,0,0,43,2,3,3,3,2,2019,2,1,14,1,45,80,15,1,1,3,0,2.309200252370588,2.309200252370588,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,5,3,0,0,8,2,1,2156,0,0,0 +6299,7695,13991,-9,13989,13990,3,1,0,24,2,0,0,0,1,-9,1,1,0,5,7.557070833726074,7.666613854487974,0,3,0,0,0,-9,0,-930.8689378935122,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,38,15,1,0,-9,1,4.908973956573202,4.908973956573202,0,0,0,0,0,0,0,1,1,0,4.292702427542934,0,0,0,52.21,59.91,7,3,0,0,8,3,1,548,0,0,0 +6299,7696,13992,-9,13989,13990,4,1,1,20,2,0,0,0,2,1,2,1,0,3,7.893857695164972,8.069820525622902,0,3,0,0,0,-9,0,-1034.092868795108,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,9.742817553511649,9.742817553511649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,3,0,0,8,4,1,811,0,0,0 +6300,7697,13993,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,1,1,0,3,7.608830173153921,7.32241639870111,0,3,0,0,0,-9,0,-1001.397490550464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,35,15,1,0,-9,0,4.283413341525611,4.283413341525611,0,0,0,0,0,0,0,0,0,0,5.978510104240947,0,0,0,56.95,46.69,5,1,0,0,2,3,1,260,0,0,0 +6301,7698,13994,13995,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,3,7.648847815436296,7.92277263338888,0,2,0,-9,33,0,-12,43.06148072299196,0,0,0,69,2,3,3,3,2,2019,2,1,8,0,20,22,15,1,0,4,0,15.67196641416603,15.67196641416603,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,4,1,499.5,0,0,0 +6301,7698,13995,13994,-9,-9,1,1,1,69,1,0,1,0,2,-9,4,3,0,3,0,8.731113460685627,8.295828638396019,2,0,-9,32,0,12,-132.8610529586777,0,0,0,57,2,3,1,2,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.397133216716683,8.674336706468752,0,0,53.57,38.93,5,1,0,0,9,4,1,499.5,0,0,0 +6301,7699,13996,-9,13994,13995,3,1,0,18,2,0,1,0,2,-9,7,2,0,5,6.343381310539594,6.153374536457845,0,3,0,0,0,-9,0,-966.0406371234471,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,10,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.95,63.66,5,1,0,0,9,4,1,77,0,0,0 +6302,7700,13997,13999,-9,-9,2,1,1,52,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,27,0,3,33.10637008115891,0,0,0,49,1,3,1,-9,3,2019,1,1,28,11,70,20,15,1,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.302927723267931,3,60.94,49.24,4,4,0,0,8,2,0,808.3333333333334,0,0,0 +6302,7700,13998,-9,13999,13997,5,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1002.648844728308,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,4,0,0,8,2,0,808.3333333333334,0,0,0 +6302,7700,13999,13997,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,3,8.023832823054494,7.384295233780739,0,2,0,-9,27,0,-3,26.91392151821873,0,0,0,52,2,3,1,3,3,2019,1,2,4,0,40,37,15,1,0,1,0,5.838877885287228,5.838877885287228,0,0,0,0,0,0,0,1,1,0,0,0,123.2830573893965,3,57.33,53.46,5,4,0,0,8,2,0,808.3333333333334,0,0,0 +6302,7701,14000,-9,13999,13997,3,1,1,24,2,0,1,0,2,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1027.757144867861,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.163923165384873,0,6.898132109935664,3,57.33,53.46,3,4,0,0,8,1,0,639,0,0,0 +6302,7702,14001,-9,13999,13997,4,1,1,19,2,0,1,0,3,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1066.688709898879,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,2,0,0,8,1,0,372,0,0,0 +6303,7703,14002,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,6.744282040453828,6.626056696351473,3,0,0,0,-9,0,-990.669515185319,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.089532998134273,5.94202972305119,0,0,49.91,36.92,6,1,0,0,7,2,1,1276,0,0,0 +6304,7704,14003,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.796846637139046,7.921209499286382,0,3,0,0,0,-9,0,-969.0459448069422,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,39,45,15,1,2,-9,0,7.944907264013003,7.944907264013003,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,4,1,0,0,6,3,0,2223,0,0,0 +6305,7705,14004,-9,14005,14006,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.0674495078574,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,5,1,1097.333333333333,0,0,0 +6305,7705,14005,14006,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.272798850545417,7.930386294682876,0,2,0,-9,6,0,-6,-102.0058247022169,0,0,0,56,2,4,1,2,-9,2019,1,2,6,0,21,22,15,1,0,1,0,16.95043328421599,16.95043328421599,0,0,0,0,0,0,0,1,1,0,1.954609750872984,0,0,0,51.83,57.2,2,1,0,0,12,5,1,1097.333333333333,0,0,0 +6305,7705,14006,14005,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,4,8.856018523207768,9.080364823311902,0,2,0,-9,6,0,6,-60.81590685897714,0,0,0,50,1,4,1,3,3,2019,1,1,7,0,48,40,15,1,0,1,0,14.42109130957386,14.42109130957386,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,12,5,1,1097.333333333333,0,0,0 +6306,7706,14007,-9,-9,-9,1,1,0,83,2,0,0,0,2,-9,4,3,0,3,0,7.085590112946318,6.993529329805096,3,0,0,0,-9,0,-927.8457854704485,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,41.85601440917657,0,0,0,0,0,1,1,0,1.318750922887117,6.739042813453753,0,0,60.85,26.21,7,1,0,0,5,2,1,405,0,0,0 +6307,7707,14008,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,8,3,1,1,0,7.634081950832113,7.493113101800343,3,0,0,0,-9,0,-1083.541521561712,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.839548378196,7.648202552726389,0,0,45.45,25.85,3,1,0,0,9,3,0,1685,0,0,0 +6308,7708,14009,14011,-9,-9,1,1,1,52,1,0,1,0,3,-9,1,1,0,4,8.879258063065475,8.854886684880523,0,2,0,-9,22,0,6,-56.24918650159671,0,0,0,46,2,5,1,-9,-9,2019,1,2,18,6,60,50,15,1,6,1,0,15.51662093716925,15.51662093716925,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,63.93,2,1,0,0,8,5,1,1169.666666666667,0,0,0 +6308,7708,14010,-9,14011,14009,3,1,0,17,2,0,1,0,2,-9,2,3,0,4,6.344661403246686,6.444848133041381,0,2,0,0,0,-9,0,-1035.658586689569,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,5,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4511051558408546,0,0,0,42.95,61.24,4,1,0,0,8,5,1,1169.666666666667,0,0,0 +6308,7708,14011,14009,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,5,8.674829861902355,8.714549826790021,0,2,0,-9,22,0,-6,-3.267897497986838,0,0,0,52,3,4,1,3,3,2019,1,1,7,0,40,40,15,1,0,1,0,18.64344017111059,18.64344017111059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,8,5,1,1169.666666666667,0,0,0 +6309,7709,14012,14013,-9,-9,1,1,1,32,1,1,1,0,1,-9,2,1,0,3,8.519081365274845,8.675131640317492,0,2,0,1,1,-9,-1,-16.33934623588222,0,0,0,33,1,4,1,2,2,2019,1,3,19,6,42,42,15,1,6,1,0,14.89788036393812,14.89788036393812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.09,51.85,6,1,0,0,11,5,1,581.6666666666666,0,0,0 +6309,7709,14013,14012,-9,-9,3,1,0,33,1,1,1,0,1,-9,5,1,0,4,8.611067305774219,8.326552516970724,0,2,0,-9,1,-9,1,-34.98020213406391,-9,0,1,32,1,3,1,-9,-9,2019,1,1,24,10,40,0,15,1,10,1,0,14.6178439243951,14.6178439243951,0,0,0,0,0,0,0,1,1,0,7.070502911542283,0,0,0,37.87,61.03,6,1,0,0,11,5,1,581.6666666666666,0,0,0 +6309,7709,14014,-9,14013,14012,2,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1104.677635532554,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,5,1,581.6666666666666,0,0,0 +6310,7710,14015,14016,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,5,5.954408465836843,5.84332067780491,0,1,0,-9,44,0,-10,37.27444021505567,0,0,0,73,2,4,3,2,2,2019,4,1,6,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.077463997399613,0,0,0,57.06,57.76,7,1,0,0,10,2,1,766,0,0,0 +6310,7710,14016,14015,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,6.089098005208252,7.161042930397282,6.694374467995321,1,0,-9,44,0,10,71.43340393121652,0,0,0,63,2,5,3,2,2,2019,4,2,9,0,4,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.013693266868374,0,0,41.17,59.31,6,1,0,0,10,2,1,766,0,0,0 +6311,7711,14017,14018,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,5.262534715467565,5.370803344851131,1,0,-9,59,0,-6,-41.86011201846181,0,0,0,82,2,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.15133418037615,5.22665299274307,5.533725361954104,3,62.25,45.63,6,1,0,0,12,2,0,581,0,0,0 +6311,7711,14018,14017,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,2,0,6.101867564205472,6.44889355812836,1,0,-9,59,0,6,31.22290424504118,0,0,0,76,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.487259028120179,0,0,48.36,40.06,6,1,0,0,12,2,0,581,0,0,0 +6312,7712,14019,-9,14021,-9,2,1,1,17,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-907.1322682428729,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.826308090419331,0,0,0,40.83,59.68,3,1,0,0,4,5,0,287,0,0,0 +6312,7712,14020,-9,14021,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.9399931931115,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,4,5,0,287,0,0,0 +6312,7712,14021,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,5,9.626866990262378,9.351746002376021,5.860865145337958,4,0,0,0,-9,0,-963.3935201432059,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,1,40,40,15,1,1,-9,0,40.94933169172573,40.94933169172573,0,0,0,0,0,0,0,0,0,0,8.720075400144983,0,0,0,37.24,62.57,4,1,0,0,4,5,0,287,0,0,0 +6313,7713,14022,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,5,7.669416934040123,7.868414724968309,0,3,0,0,0,-9,0,-1164.53250245489,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,40,20,15,1,0,-9,0,7.36163545025107,7.36163545025107,0,0,0,0,0,0,0,1,1,0,3.911209726313562,0,0,0,45.81,61.51,6,1,0,0,11,3,0,678,0,0,0 +6314,7714,14023,14024,-9,-9,1,1,0,55,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,26,0,-1,0,-9,0,0,56,2,2,3,2,3,2019,4,2,21,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.01,24,2,1,0,0,10,1,1,989,0,0,0 +6314,7714,14024,14023,-9,-9,2,1,1,56,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,26,0,1,0,0,0,0,55,3,2,3,-9,-9,2019,4,1,12,0,0,34,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.1884663437972,1,50.02,44.92,5,1,1,0,10,1,1,989,0,0,0 +6315,7715,14025,14026,-9,-9,2,1,0,67,1,0,0,0,1,-9,2,1,0,4,6.931422086980553,6.821657668882141,0,1,0,-9,11,0,17,7.4672559813479,0,0,0,50,1,3,1,1,3,2019,1,1,10,0,50,5,15,1,0,1,0,2.356700482856745,2.356700482856745,0,0,0,0,0,0,0,1,1,0,7.531993481510828,0,0,0,57.16,56.15,6,1,0,0,10,2,1,1617,0,0,0 +6315,7715,14026,14025,-9,-9,1,1,1,50,1,0,0,0,1,-9,1,1,0,3,0,0,0,1,0,-9,11,0,-17,29.14388729977697,0,0,0,67,1,4,1,2,2,2019,1,2,7,0,30,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,10,2,1,1617,0,0,0 +6316,7716,14027,14028,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-2,6.354008806245095,0,0,0,77,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.271403180542407,0,0,0,50.91,54.79,6,1,0,0,8,2,1,886.5,0,0,0 +6316,7716,14028,14027,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,5,0,7.088852534345403,7.382901284778711,1,0,-9,7,0,2,-96.27698600812727,0,0,0,75,2,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.438737872146338,7.393337477637384,0,0,58.05,54.52,6,1,0,0,8,2,1,886.5,0,0,0 +6317,7717,14029,14030,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,4,8.697960118110911,8.496158016788023,0,1,0,-9,5,0,0,-80.94497407301914,0,1,0,26,1,3,1,-9,-9,2019,1,1,13,4,42,43,15,1,4,1,0,11.735444253062,11.735444253062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,6,4,0,1165.5,0,0,0 +6317,7717,14030,14029,-9,-9,1,1,0,26,1,0,0,0,1,-9,1,1,0,3,6.685378111676199,6.992982056623996,0,1,0,-9,5,0,0,34.1743987108341,0,1,1,26,1,4,1,2,1,2019,1,2,12,0,22,25,15,1,0,1,0,4.629891638849071,4.629891638849071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.56,54.83,5,1,0,0,6,4,0,1165.5,0,0,0 +6318,7718,14031,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1008.779362699568,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,44.85,6,1,0,0,13,1,1,172,0,0,0 +6319,7719,14032,14033,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,4,0,0,0,1,0,-9,8,0,2,-43.8291876960415,0,0,1,30,2,2,1,-9,-9,2019,1,1,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.278594667226861,0,0,0,41.06,62.04,6,1,0,0,4,4,1,882,0,0,0 +6319,7719,14033,14032,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,2,8.397039506656812,8.550686745746711,0,1,0,-9,8,0,-2,190.5036354833018,0,0,0,32,2,4,1,2,2,2019,1,2,20,8,37,37,15,1,8,1,0,13.01992699043661,13.01992699043661,0,0,0,0,0,0,0,0,0,0,1.876498173320228,0,0,0,27.31,47.33,3,1,0,0,4,4,1,882,0,0,0 +6320,7720,14034,14035,14036,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,5,8.810633885124913,8.636790965078088,0,1,0,-9,7,0,12,24.73298155819291,0,0,0,39,1,2,1,2,3,2019,1,2,8,0,35,30,15,1,0,1,0,23.59892589122801,23.59892589122801,0,0,0,0,0,0,0,1,1,0,5.333002340778583,0,14.18982845924581,3,39.93,59.09,6,1,0,0,8,5,1,1032,0,0,0 +6320,7720,14035,14034,-9,-9,2,1,1,39,1,0,0,0,1,-9,2,1,0,2,8.428492171792541,8.297410102326928,0,1,0,-9,7,0,-12,-.2867250480514109,0,0,0,51,1,5,1,1,2,2019,1,1,16,4,37,38,15,1,4,1,0,13.14537337907151,13.14537337907151,0,0,0,0,0,0,0,1,1,0,2.070433706715605,0,5.708805081011281,3,41.16,50.19,3,1,0,0,8,5,1,1032,0,0,0 +6320,7721,14036,-9,-9,-9,3,1,0,93,3,0,0,0,2,-9,4,3,0,4,0,7.117655752918478,6.997396141892834,3,0,0,0,-9,0,-973.0432401598757,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,18.43704959141794,0,9.925969149836245,0,0,0,1,1,0,4.00463334210977,7.365501317932381,0,0,63.21,24.53,5,1,0,0,8,2,1,207,0,0,0 +6321,7722,14037,14038,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,-7,0,0,0,0,84,2,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,10.58415552540926,0,0,0,0,1,1,0,0,0,0,0,50.91,36.18,6,1,0,0,11,1,0,364.5,0,0,0 +6321,7722,14038,14037,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,4,0,7,0,0,0,0,77,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,0,18.36469181969716,0,0,0,0,1,1,0,0,0,0,0,56.76,25.26,6,1,0,0,11,1,0,364.5,0,0,0 +6322,7723,14039,14040,-9,-9,1,1,1,58,1,0,2,0,1,-9,8,3,1,1,0,0,0,2,0,-9,20,0,3,0,0,0,0,55,2,3,3,3,3,2019,4,2,23,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.446323808238428,0,0,0,30.77,22.6,1,3,0,1,6,1,1,1078.333333333333,0,0,0 +6322,7723,14040,14039,-9,-9,2,1,0,55,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,21,0,-3,0,0,0,0,58,1,1,3,3,3,2019,4,1,21,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.82961032282043,1,36.19,45.47,4,3,0,1,6,1,1,1078.333333333333,0,0,0 +6322,7723,14041,-9,14040,14039,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.6171441657451,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,1,1,1078.333333333333,0,0,0 +6322,7724,14042,-9,14040,14039,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-920.4888170520812,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,6,3,0,0,6,1,1,78,0,0,0 +6323,7725,14043,-9,-9,-9,1,1,1,45,3,0,0,0,1,-9,2,1,0,4,8.669007977297721,8.731293526521219,0,3,0,0,0,-9,0,-940.3120871698252,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,6,50,47,15,1,6,-9,0,14.25787545760806,14.25787545760806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.11,59.76,3,4,0,0,8,5,1,708,0,0,0 +6324,7726,14044,14045,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,11,0,-1,-45.17406743097028,0,0,0,63,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,1780.5,0,0,0 +6324,7726,14045,14044,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.977323410398322,8.12342979255598,1,0,-9,20,0,1,-28.87196119654132,0,0,0,62,1,4,3,2,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.886756882649628,0,0,54.72,46.41,6,1,0,0,13,3,1,1780.5,0,0,0 +6325,7727,14046,-9,14047,14048,4,1,1,17,2,0,1,1,2,0,7,2,0,3,5.114359963555811,4.888351927884848,0,2,0,0,0,-9,0,-914.1576996152636,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.55,56.21,5,1,0,0,9,5,1,1055,0,0,0 +6325,7727,14047,14048,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,4,7.25727602850054,7.029090542931596,0,2,0,-9,28,0,-10,-112.5497691839517,0,0,0,63,2,3,1,-9,2,2019,1,1,12,1,32,35,15,1,1,1,0,5.655625641994629,5.655625641994629,0,0,0,0,0,0,0,1,1,0,6.803388158219001,0,0,0,54.2,57.49,5,1,0,0,9,5,1,1055,0,0,0 +6325,7727,14048,14047,-9,-9,1,1,1,63,1,0,1,0,2,-9,1,1,0,3,8.255796371479486,8.830143470968681,8.456461466778521,2,0,-9,28,0,10,-26.77482495354121,0,0,0,53,2,4,1,3,3,2019,1,2,14,2,28,40,15,1,2,1,0,18.93956956609738,18.93956956609738,0,0,0,0,0,0,0,1,1,0,2.636733945075932,8.311740047948796,0,0,49.11,45,3,1,0,0,9,5,1,1055,0,0,0 +6325,7728,14049,-9,14047,14048,3,1,1,19,2,0,1,1,2,0,7,2,0,3,4.436890644436104,4.702079400584338,0,3,0,0,0,-9,0,-1053.119354061414,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,27,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.02,64.34,3,1,0,0,9,2,1,47,0,0,0 +6326,7729,14050,14053,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.610722952403906,8.413949612222778,0,2,0,-9,28,0,-3,35.17157592131684,0,0,0,48,2,3,1,2,2,2019,1,1,12,0,30,40,15,1,0,1,0,26.71928989865236,26.71928989865236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,7,1,0,0,9,4,1,836.25,0,0,0 +6326,7729,14051,-9,14050,14053,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.9474583025254,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,4,1,836.25,0,0,0 +6326,7729,14052,-9,14050,14053,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.238902206186,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,4,1,836.25,0,0,0 +6326,7729,14053,14050,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,3,7.708774290977733,7.311880121713036,0,2,0,-9,28,0,3,72.4004671897063,0,0,0,45,2,4,1,1,1,2019,1,2,11,0,40,40,15,1,0,1,0,4.76240550578822,4.76240550578822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,4,1,836.25,0,0,0 +6327,7730,14054,-9,14056,14057,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.5930895041271,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,4,1,710.25,0,0,0 +6327,7730,14055,-9,14056,14057,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.1494602652119,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,710.25,0,0,0 +6327,7730,14056,14057,-9,-9,1,1,0,40,1,1,2,0,1,-9,2,1,0,3,9.093110255222507,9.311921620026007,0,2,0,-9,8,0,5,1.968742591378091,0,0,1,35,2,2,3,1,2,2019,2,2,7,0,46,43,15,1,0,3,0,22.13664177522626,22.13664177522626,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,8,4,1,710.25,0,0,0 +6327,7730,14057,14056,-9,-9,2,1,1,35,1,1,2,0,2,1,6,3,0,2,6.360635420671694,6.377038090364171,0,2,0,-9,8,0,-5,54.41114902426182,-9,0,0,40,1,3,1,2,-9,2019,3,1,15,5,7,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.18,20.12,6,1,0,0,8,4,1,710.25,0,0,0 +6328,7731,14058,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,5,8.289662172194664,8.489320475839619,6.63254302849404,3,0,0,0,-9,0,-924.2076120295544,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,36,36,15,1,0,-9,0,13.09774609422468,13.09774609422468,0,0,0,0,0,0,0,0,0,0,2.477172981165203,7.001116005990209,0,0,62.39,56.71,7,4,0,0,8,5,0,1643,0,0,0 +6328,7732,14059,-9,14058,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,4,9.127539105904495,8.858627918420909,0,3,0,0,0,-9,0,-974.6444926654096,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,40,37,15,1,2,-9,1,21.61872902292368,21.61872902292368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,52.08,4,4,0,0,8,5,0,84,0,0,0 +6329,7733,14060,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,4,3,0,4,0,7.852710532573703,7.510790970377021,3,0,0,0,-9,0,-887.2019298217645,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0926523127384958,7.772749495940501,0,0,61.68,47.24,6,1,0,0,10,3,1,547,0,0,0 +6330,7734,14061,14062,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,1,.9564078978006154,.8822430979378496,0,1,0,-9,7,0,-8,-24.81713043469143,0,0,0,63,2,2,3,3,3,2019,2,1,20,6,70,0,15,1,6,3,0,.0035866763408409,.0035866763408409,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.02,32.61,4,1,0,0,11,2,1,1171.5,0,0,0 +6330,7734,14062,14061,-9,-9,1,1,0,63,1,0,0,0,2,-9,3,3,0,2,0,7.19199805275147,7.414385036453319,1,0,-9,7,0,8,-217.297587156507,0,0,0,55,2,1,1,3,-9,2019,3,2,35,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.244233480393933,0,0,17.5,62.7,1,1,1,1,11,2,1,1171.5,0,0,0 +6331,7735,14063,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,2,8.585577711398015,8.773240795914163,0,3,0,0,0,-9,0,-1130.749460705826,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,48,48,15,1,7,-9,0,15.17967410441494,15.17967410441494,0,0,0,0,0,0,0,0,0,0,0,0,0,3,46.14,38.32,5,1,0,1,8,5,1,292,0,0,0 +6332,7736,14064,-9,-9,-9,1,1,1,59,3,1,1,0,1,-9,2,1,0,4,8.355214861948722,8.499894837429824,0,4,0,0,0,-9,0,-946.7124987085562,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,55,15,1,0,-9,0,10.14858555378521,10.14858555378521,0,0,0,0,0,0,0,1,1,0,2.12518960332161,0,0,0,45.91,59.89,3,1,0,0,12,4,1,982,0,0,0 +6332,7737,14065,-9,14066,-9,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-947.3454621798861,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,1,1,161,0,0,0 +6332,7737,14066,-9,-9,14064,2,1,0,28,2,1,1,0,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-931.74168639897,1,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,19,6,0,40,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.66,62.37,5,1,0,0,12,1,1,161,0,0,0 +6333,7738,14067,14069,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,5,9.78971858799799,9.723183640279577,0,2,0,-9,6,0,-1,-47.70394576307434,0,0,0,43,2,5,3,-9,-9,2019,2,1,10,0,47,45,15,1,0,3,0,43.36608881670825,43.36608881670825,0,0,0,0,0,0,0,0,0,0,7.003986695305258,0,0,0,46.06,60.24,6,1,0,0,9,5,1,396,0,0,0 +6333,7738,14068,-9,14069,14067,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.0929750937923,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,396,0,0,0 +6333,7738,14069,14067,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,19,0,1,-8.491256873251013,0,0,1,42,2,5,1,2,1,2019,3,2,10,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,6,1,0,0,9,5,1,396,0,0,0 +6334,7739,14070,-9,14072,14071,4,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.1283877659139,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,1,935.1666666666666,0,0,0 +6334,7739,14071,14072,-9,-9,2,1,1,49,1,0,4,0,1,-9,2,1,0,3,8.806722879082049,9.078659609810384,0,2,0,-9,23,0,5,-42.18953356652045,0,0,0,44,2,5,1,2,-9,2019,1,1,10,0,37,37,15,1,0,1,0,27.83780291966732,27.83780291966732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,3,1,0,0,5,4,1,935.1666666666666,0,0,0 +6334,7739,14072,14071,-9,-9,1,1,0,44,1,0,4,0,2,-9,2,1,0,5,6.976578747755877,7.172396552144412,0,2,0,-9,23,0,-5,40.58919660373489,0,0,1,49,1,3,1,3,2,2019,1,2,9,2,25,15,15,1,2,1,0,5.141734616703187,5.141734616703187,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.53,63.81,6,1,0,0,5,4,1,935.1666666666666,0,0,0 +6334,7739,14073,-9,14072,14071,6,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.3202238111451,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,935.1666666666666,0,0,0 +6334,7739,14074,-9,14072,14071,5,1,1,10,2,0,4,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-975.9944195290876,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,5,4,1,935.1666666666666,0,0,0 +6334,7739,14075,-9,14072,14071,3,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.5146339259006,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,1,935.1666666666666,0,0,0 +6335,7740,14076,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,2,0,6.121901117334652,6.24341787540167,3,0,0,0,-9,0,-1046.30983281159,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.095798376630606,0,0,40.74,38.46,4,1,0,0,6,2,0,874,0,0,0 +6336,7741,14077,14079,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,2,8.065806146489948,8.093797020209893,0,2,0,-9,10,0,-3,-46.87432892139984,0,0,1,43,1,2,1,2,2,2019,1,2,20,9,53,22,15,1,9,1,0,7.095868801534579,7.095868801534579,0,0,0,0,0,0,0,0,0,0,1.559918583989011,0,0,0,26.04,59.03,4,1,0,0,6,5,1,490.5,0,0,0 +6336,7741,14078,-9,14077,14079,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.7933739259746,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,6,5,1,490.5,0,0,0 +6336,7741,14079,14077,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,2,9.215214067387549,9.507175000486543,0,2,0,-9,10,0,3,-95.42993376550247,0,0,0,40,1,2,1,-9,-9,2019,1,1,10,0,62,65,15,1,0,1,0,21.1017866740249,21.1017866740249,0,0,0,0,0,0,0,0,0,0,3.580618047988521,0,0,0,51.65,52.38,5,1,0,0,6,5,1,490.5,0,0,0 +6336,7741,14080,-9,14077,14079,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.387254828352,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,6,5,1,490.5,0,0,0 +6337,7742,14081,-9,14082,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-939.2708355552575,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,0,709,0,0,0 +6337,7742,14082,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,3,6.687791602500797,7.007489732757224,0,4,0,0,0,-9,0,-1045.825820120748,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,1,16,20,15,1,1,-9,0,7.047984380342846,7.047984380342846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.19,54.52,3,1,0,1,9,2,0,709,0,0,0 +6338,7743,14083,14084,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,4,6.821090427393761,6.530515646808086,0,1,0,-9,10,0,0,-34.26785140874266,0,0,0,62,2,4,3,2,1,2019,2,2,12,0,12,8,15,1,0,4,0,8.382916029163411,8.382916029163411,0,0,0,0,0,0,0,0,0,0,4.810297793912232,0,0,0,54.2,57.49,6,1,0,0,13,2,1,487,0,0,0 +6338,7743,14084,14083,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,5.27623077669468,5.150412870961303,1,0,-9,10,0,0,93.0487664852884,0,0,0,62,1,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.951269813668251,5.619964878442392,0,0,57.16,56.15,6,1,0,0,13,2,1,487,0,0,0 +6339,7744,14085,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,4.679220877929648,5.306061341214908,3,0,-9,0,1,0,-1003.939777370964,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.306643823542464,4.925065849766349,0,0,50.27,44.25,5,1,0,0,2,2,1,347,0,0,0 +6340,7745,14086,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,3,0,6.990276576832682,7.01760885625341,3,0,0,0,-9,0,-1060.185364131704,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.87683535722649,6.868557557602195,0,3,54.97,47.63,5,1,0,0,8,2,0,132,0,0,0 +6341,7746,14087,14088,-9,-9,1,1,0,54,1,0,0,0,2,-9,4,3,0,4,0,8.098498899195359,8.481010033087804,1,0,-9,31,0,1,25.42501320900868,0,0,0,53,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.755366788496295,7.769300873177808,0,0,57.16,56.15,7,1,0,0,4,4,1,1995.5,0,0,0 +6341,7746,14088,14087,-9,-9,2,1,1,53,1,0,0,0,2,-9,4,3,0,4,0,8.246486330004547,8.078054137237766,1,0,-9,31,0,-1,40.21680430467909,0,0,0,54,2,4,3,2,2,2019,4,1,10,0,0,16,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.518367286788077,0,0,47.58,56.39,6,1,0,0,4,4,1,1995.5,0,0,0 +6342,7747,14089,14090,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,9.113663449810293,9.021535955599827,0,1,0,-9,32,0,-1,-3.870067784092918,0,0,0,53,2,1,1,3,2,2019,1,1,11,0,60,50,15,1,0,1,0,12.11231766899958,12.11231766899958,0,0,0,0,0,0,0,1,1,0,3.135135278082668,0,0,0,43.48,60.97,3,1,0,0,7,5,1,481.5,0,0,0 +6342,7747,14090,14089,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,1,8.193658121428181,8.09910801729025,0,1,0,-9,32,0,1,88.74765479883006,0,0,0,52,2,4,1,-9,-9,2019,1,2,18,6,51,40,15,1,6,1,0,7.385075107387651,7.385075107387651,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.42,36.06,3,1,0,1,7,5,1,481.5,0,0,0 +6342,7748,14091,-9,14090,14089,4,1,0,19,2,0,0,0,2,1,2,1,0,3,7.334382048476447,6.985229796336106,0,3,0,0,0,-9,0,-1124.311195615231,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,26,0,15,1,9,-9,1,4.645536838858784,4.645536838858784,0,0,0,0,0,0,0,1,1,0,.4222059196229594,0,0,0,38.78,52.41,6,1,0,0,7,2,1,452,0,0,0 +6343,7749,14092,14093,-9,-9,1,1,0,53,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,8,0,-2,-148.0824634417751,0,0,0,55,2,4,1,2,2,2019,3,2,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.84,51.14,5,1,0,0,12,4,1,374.5,0,0,0 +6343,7749,14093,14092,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.390776729206085,8.551267442716521,0,1,0,-9,8,0,2,.0443495722722851,0,0,0,53,2,2,3,3,3,2019,2,1,12,0,38,38,15,1,0,3,0,14.38725774498067,14.38725774498067,0,0,0,0,0,0,0,0,0,0,3.858070470827847,0,0,0,52.48,54.33,5,1,0,0,12,4,1,374.5,0,0,0 +6344,7750,14094,14095,-9,-9,1,1,0,49,1,0,0,0,2,-9,4,3,0,2,0,8.124099524332538,7.616220743635146,1,0,-9,8,0,2,69.52535678326737,0,0,0,47,1,4,1,2,2,2019,3,2,13,1,0,24,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.864836191168098,7.664469603954011,0,0,37.91,45.33,6,1,0,0,12,5,1,441.5,0,0,0 +6344,7750,14095,14094,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,4,9.398750472859092,9.33740992903785,0,1,0,-9,8,0,-2,-1.064818977494189,0,0,0,49,2,2,3,-9,-9,2019,2,1,9,0,38,48,15,1,0,4,0,50.01143036977255,50.01143036977255,0,0,0,0,0,0,0,0,0,0,5.807806061370413,0,0,0,53.61,51.1,6,1,0,0,12,5,1,441.5,0,0,0 +6345,7751,14096,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-980.4371666471615,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.338132723605817,0,0,0,64.25,42,7,1,0,0,12,1,1,336,0,0,0 +6346,7752,14097,14098,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,2,0,8.547417773066167,8.569021637623829,1,0,-9,50,0,1,103.7061435788516,0,0,0,71,1,4,3,3,2,2019,4,2,18,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.587135004714368,8.448996109240728,0,0,44.24,41.95,5,1,0,0,13,5,1,3093.5,0,0,0 +6346,7752,14098,14097,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,4,0,7.449573519342566,7.315713393930245,1,0,-9,50,0,-1,31.62295763453508,0,0,0,72,1,2,3,3,1,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.792935749016046,7.603240770884979,5.423617203096717,2,40.96,61.14,7,1,0,0,13,5,1,3093.5,0,0,0 +6347,7753,14099,-9,14100,-9,4,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1027.281881299588,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,3,1,722.5,0,0,0 +6347,7753,14100,-9,-9,-9,1,1,0,34,3,0,3,0,2,-9,2,1,0,3,8.334672396267553,8.412389975250294,6.32248240615646,4,0,-9,0,1,0,-1010.116834084348,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,25,0,15,1,10,-9,0,14.24793976466614,14.24793976466614,0,0,0,0,0,0,0,1,1,0,6.718559381449241,0,0,0,38.9,45.4,3,1,0,1,11,3,1,722.5,0,0,0 +6347,7753,14101,-9,14100,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,4,0,0,0,-9,0,-914.2758142606821,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.79,66.53,2,1,0,0,11,3,1,722.5,0,0,0 +6347,7753,14102,-9,14100,-9,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1011.883985788122,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,3,1,722.5,0,0,0 +6348,7754,14103,-9,14105,14104,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.247224843649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,4,1,286,0,0,0 +6348,7754,14104,14105,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.663992095379927,8.741638638794214,0,2,0,-9,7,0,2,-17.36100116819562,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,0,40,41,15,1,1,1,0,14.61410434504336,14.61410434504336,0,0,0,0,0,0,0,1,1,0,3.222169025655958,0,0,0,52,55,6,1,0,0,12,4,1,286,0,0,0 +6348,7754,14105,14104,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,7.291920977823841,7.332851796544003,0,2,0,-9,14,0,-2,67.9678500629314,0,0,1,45,2,4,1,3,2,2019,1,2,13,3,17,18,15,1,3,1,0,6.51150743888154,6.51150743888154,0,0,0,0,0,0,0,1,1,0,2.842562212746396,0,3.239388164935615,3,48.87,58.55,6,1,0,0,12,4,1,286,0,0,0 +6348,7754,14106,-9,14105,14104,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-840.7320004620308,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,286,0,0,0 +6349,7755,14107,-9,14111,14108,4,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.6844481142633,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,947.2,0,0,0 +6349,7755,14108,14111,-9,-9,2,1,1,42,1,1,3,0,2,-9,1,1,0,3,8.950677988602072,9.050109050484798,0,2,0,-9,7,0,2,16.89920572209346,0,0,0,40,1,3,3,2,1,2019,2,1,11,0,40,55,15,1,0,3,0,34.43091975529979,34.43091975529979,0,0,0,0,0,0,0,1,1,0,8.30055991768219,0,8.688902358060584,3,42.36,56.12,5,1,0,0,9,4,1,947.2,0,0,0 +6349,7755,14109,-9,14111,14108,3,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.8856665782455,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,947.2,0,0,0 +6349,7755,14110,-9,14111,14108,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.500641627543,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,947.2,0,0,0 +6349,7755,14111,14108,-9,-9,1,1,0,40,1,1,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-2,33.79949873332748,0,0,1,42,2,3,1,1,2,2019,3,2,10,0,0,48,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.3874774600981,3,51.15,41.37,6,1,0,0,9,4,1,947.2,0,0,0 +6350,7756,14112,14113,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,1,0,6.335619665837972,6.21974907183633,1,0,-9,35,0,6,3.634413090251297,0,0,0,60,3,2,3,-9,-9,2019,4,1,15,3,0,0,15,4,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.988247095006999,6.217524284003901,0,0,27.58,41.58,4,1,0,0,9,2,0,641,0,0,0 +6350,7756,14113,14112,-9,-9,1,1,0,60,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,35,0,-6,13.3535161185303,0,0,0,66,3,1,3,-9,-9,2019,4,2,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.06556547351724,1,50.12,43.65,4,1,1,0,9,2,0,641,0,0,0 +6351,7757,14114,-9,14117,14116,6,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.564089519703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,758.8333333333334,0,0,0 +6351,7757,14115,-9,14117,14116,5,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1010.740062284721,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,63.75,6,1,0,0,7,5,1,758.8333333333334,0,0,0 +6351,7757,14116,14117,-9,-9,1,1,1,50,1,0,3,0,2,-9,2,1,0,4,9.180663773321749,8.787999578770991,0,2,0,-9,22,0,9,-35.35776658582567,0,0,0,41,2,3,1,3,3,2019,1,2,7,0,35,36,15,1,0,1,0,28.55559035349046,28.55559035349046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.02,44.8,6,1,0,0,7,5,1,758.8333333333334,0,0,0 +6351,7757,14117,14116,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,3,8.945174737728443,8.916615712831488,0,2,0,-9,22,0,0,-30.46132847928763,0,0,1,50,2,4,1,3,3,2019,1,1,17,5,40,35,15,1,5,1,0,27.63740462885703,27.63740462885703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.27,51.2,6,1,0,0,7,5,1,758.8333333333334,0,0,0 +6351,7757,14118,-9,14117,14116,4,1,1,17,2,0,3,0,2,1,2,3,0,5,8.064233398025948,7.999459474204873,0,2,0,0,0,-9,0,-1109.414233200002,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,62.79,3,1,0,0,7,5,1,758.8333333333334,0,0,0 +6351,7757,14119,-9,14117,14116,7,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.458862611563,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,758.8333333333334,0,0,0 +6351,7758,14120,-9,14117,14116,3,1,0,19,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1067.300626974086,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,1,0,0,7,1,1,612,0,0,0 +6351,7759,14121,-9,-9,-9,8,1,1,48,3,0,3,0,2,-9,2,1,0,4,9.257350829203663,9.080984286492704,0,4,0,-9,0,-9,0,-995.9332260632619,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,35,0,15,1,10,-9,0,23.87351298113054,23.87351298113054,0,0,0,0,0,0,0,0,0,0,0,0,13.2434191632481,3,18.42,66.02,5,1,0,0,7,4,1,5428,0,0,0 +6352,7760,14122,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,4,8.789063554063281,8.730021830853863,0,3,0,0,0,-9,0,-1001.890803461345,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,43,44,15,1,0,-9,0,17.31304971453739,17.31304971453739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,1,232,0,0,0 +6353,7761,14123,-9,-9,-9,1,1,0,32,2,0,3,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1078.929928612477,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,13,1,0,1076,0,0,0 +6353,7761,14124,-9,14123,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-986.5175723994699,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,1076,0,0,0 +6353,7761,14125,-9,14123,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-918.3318349860239,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,13,1,0,1076,0,0,0 +6354,7762,14126,-9,14127,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,1,6.27991321989056,5.929827794480944,0,3,0,0,0,-9,0,-1071.740574085616,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,8,6,18,15,1,8,-9,1,7.054781747603102,7.054781747603102,0,0,0,0,0,0,0,1,1,0,2.062173798121596,0,46.95389099444088,3,26.07,29.15,1,1,0,1,10,2,1,292,0,0,0 +6354,7763,14127,-9,-9,-9,2,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,7.230585810092837,7.643008958143103,3,0,0,0,-9,0,-855.5792444491385,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,4,10,-9,0,0,0,1,0,0,13.85815537180254,0,0,0,1,1,0,7.588615157958926,7.295095467346741,0,0,52.71,45.96,2,1,0,0,10,3,1,424,0,0,0 +6355,7764,14128,14129,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,4,8.037554925613374,8.297947498461008,0,1,0,-9,4,0,-14,69.87006715959831,0,0,1,48,2,3,1,-9,-9,2019,1,1,2,1,32,52,15,1,1,1,0,12.93982954179121,12.93982954179121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,50.59,7,1,0,0,10,4,0,480,0,0,0 +6355,7764,14129,14128,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,3,8.132758277299464,8.285840939514655,0,1,0,-9,4,0,14,-5.619683072403544,0,0,0,34,1,4,1,2,2,2019,1,2,12,0,32,37,15,1,0,1,0,11.02505373400951,11.02505373400951,0,0,0,0,0,0,0,0,0,0,6.873189159300545,0,0,0,46.33,50.4,6,1,0,0,10,4,0,480,0,0,0 +6356,7765,14130,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,2,0,7.450021937221356,7.205769920659613,3,0,0,0,-9,0,-1025.408139636211,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,36.33925750045861,0,0,0,1,1,0,3.687113530205337,7.204227282840567,0,0,61.09,17.25,6,1,0,0,2,2,1,776,0,0,0 +6357,7766,14131,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,3,8.234385649829507,7.853151998393434,0,3,0,0,0,-9,0,-1006.97327762794,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,40,40,15,1,0,-9,0,8.674827201282623,8.674827201282623,0,0,0,0,0,0,0,0,0,0,5.962709369653496,0,0,0,48.29,47.89,4,1,0,0,9,4,1,1108,0,0,0 +6358,7767,14132,-9,-9,-9,1,1,0,52,3,0,1,0,3,-9,2,1,0,2,7.685368991396622,7.701618419854782,0,4,0,0,0,-9,0,-1032.045423308321,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,28,22,15,1,0,-9,0,8.81574136019027,8.81574136019027,0,0,0,0,0,0,0,1,1,0,2.487845848363529,0,0,0,47.26,43.53,5,1,0,0,13,3,1,1780,0,0,0 +6358,7767,14133,-9,14132,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-905.1425378007804,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,3,1,1780,0,0,0 +6359,7768,14134,14135,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,4,8.759619810727543,8.645409368651913,0,2,0,-9,9,0,3,-5.428423781658527,0,0,0,33,1,5,1,-9,-9,2019,1,1,7,0,40,38,15,1,0,1,0,22.06418966314186,22.06418966314186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,4,5,1,510.75,0,0,0 +6359,7768,14135,14134,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,5,8.398942442541998,8.54327170548731,5.644640871553383,2,0,-9,9,0,-3,-7.215120752090908,0,0,1,36,1,4,1,3,2,2019,1,2,11,0,42,0,15,1,0,1,0,13.72847571085454,13.72847571085454,0,0,0,0,0,0,0,0,0,0,1.803520439600665,6.005353017471461,0,0,32.72,43.47,2,1,0,0,4,5,1,510.75,0,0,0 +6359,7768,14136,-9,14135,14134,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.970248914435,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,4,5,1,510.75,0,0,0 +6359,7768,14137,-9,14135,14134,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1159.029379293959,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,4,5,1,510.75,0,0,0 +6360,7769,14138,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1004.242649422138,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,1,0,0,13.06688922163312,0,0,0,1,1,0,0,0,0,0,40.96,25.68,2,1,0,0,10,1,0,810,0,0,0 +6361,7770,14139,14140,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,8.037182489430299,8.091745794318983,1,0,-9,49,0,-2,-115.7702578997189,0,0,0,72,2,2,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.835956334297423,8.203153473957347,0,0,57.16,56.15,6,1,0,0,6,3,1,203,0,0,0 +6361,7770,14140,14139,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,49,0,2,44.92472745215193,0,0,0,70,1,4,3,2,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.171852278471977,0,0,0,51.06,35.25,4,1,0,0,6,3,1,203,0,0,0 +6361,7771,14141,-9,14140,14139,3,1,1,36,2,0,0,0,1,-9,2,1,0,2,8.01535630425778,7.858561511826679,0,3,0,0,0,-9,0,-921.9714245379041,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,50,50,15,1,3,-9,1,7.85404357857021,7.85404357857021,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,39.8,5,1,0,0,6,4,1,1829,0,0,0 +6362,7772,14142,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,8.159749092835916,7.831180887728142,3,0,0,0,-9,0,-1106.58389932108,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,8.054934440261253,8.461189883122399,0,0,41.49,39.11,6,1,0,0,12,4,1,1051,0,0,0 +6363,7773,14143,14144,-9,-9,1,1,1,37,1,0,1,0,1,-9,2,1,0,4,9.114880652975122,9.192045462447682,0,2,0,-9,14,0,0,8.472113746718009,0,0,0,37,1,5,1,2,1,2019,1,2,12,2,50,50,15,1,2,1,0,14.79188591254873,14.79188591254873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,3,0,0,8,5,1,1103.666666666667,0,0,0 +6363,7773,14144,14143,-9,-9,2,1,0,37,1,0,1,0,1,-9,2,1,0,5,9.20031263104825,9.237378194249759,0,2,0,-9,14,0,0,-31.91263412106397,0,0,1,37,1,4,1,-9,-9,2019,1,1,6,0,36,40,15,1,0,1,0,32.43778020461821,32.43778020461821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,5,1,1103.666666666667,0,0,0 +6363,7773,14145,-9,14144,14143,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.026370848043,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,3,0,0,8,5,1,1103.666666666667,0,0,0 +6364,7774,14146,-9,-9,-9,1,1,0,22,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-933.0688746716264,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7,41.19,6,1,0,0,5,1,1,2067,0,0,0 +6365,7775,14147,14148,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,7.338436525983289,7.393591631396813,0,1,0,-9,29,0,-1,-11.54798671214081,0,0,0,55,1,3,1,2,3,2019,1,2,8,1,18,18,15,1,1,1,0,12.12418198569194,12.12418198569194,0,0,0,0,0,0,0,1,1,0,1.406871986256444,0,14.85108682759193,3,60.28,43.74,6,1,0,0,2,5,1,707.5,0,0,0 +6365,7775,14148,14147,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,3,9.116874251467804,9.561745073766613,7.739617137402605,1,0,-9,29,0,1,6.064427336427195,0,0,0,54,1,4,1,2,3,2019,1,1,6,0,40,45,15,1,0,1,0,28.89183013675604,28.89183013675604,0,0,0,0,0,0,0,1,1,0,5.801911130318302,7.985083323606124,6.182905900184232,3,57.33,53.46,7,1,0,0,2,5,1,707.5,0,0,0 +6365,7776,14149,-9,14147,14148,3,1,1,22,2,0,0,0,2,1,97,3,0,4,0,0,0,3,0,0,0,-9,0,-1071.294341399867,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.658009304613524,0,0,0,34.87,59.76,6,1,0,0,2,1,1,366,0,0,0 +6365,7777,14150,-9,14147,14148,4,1,0,18,2,0,0,0,2,1,2,1,0,3,5.927973281973584,6.166203968888293,0,3,0,0,0,-9,0,-921.9058937352311,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,8,0,15,1,1,-9,1,6.354483600933418,6.354483600933418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,49.1,6,1,0,0,2,2,1,899,0,0,0 +6366,7778,14151,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-971.4666731108005,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.71,50.32,4,1,0,1,7,1,0,300,0,0,0 +6367,7779,14152,14154,-9,-9,2,1,0,42,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,9,0,-3,22.87690188690038,0,0,1,45,1,4,1,3,2,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.36,54.65,6,3,0,0,8,5,1,560.3333333333334,0,0,0 +6367,7779,14153,-9,14152,14154,3,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-956.3097183755261,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,3,0,0,8,5,1,560.3333333333334,0,0,0 +6367,7779,14154,14152,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,4,9.873014313962729,9.748977454961352,0,2,0,-9,22,0,3,32.18260726285735,0,0,0,42,1,3,3,2,2,2019,2,2,9,0,48,50,15,1,0,3,0,41.71293815867072,41.71293815867072,0,0,0,0,0,0,0,0,0,0,4.448704849673436,0,0,0,54.74,57.22,6,3,0,0,8,5,1,560.3333333333334,0,0,0 +6368,7780,14155,-9,-9,-9,1,1,1,80,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1165.769281497914,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,14.22980502947185,0,0,0,1,0,1,5.796397165773801,0,0,0,36.89,24.96,4,1,0,0,7,1,1,165,0,0,0 +6368,7781,14156,-9,14158,14155,4,1,0,27,2,0,0,0,2,-9,2,1,0,3,6.802936549278396,6.729786144812821,0,3,0,0,0,-9,0,-1056.094305556873,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,24,0,15,1,2,-9,1,4.760147420564065,4.760147420564065,0,0,0,0,0,0,0,1,0,1,0,0,13.82307916546904,3,36.96,50.72,4,1,0,1,7,2,1,358,0,0,0 +6368,7782,14157,-9,14158,14155,2,1,1,24,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1004.726409340693,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,21,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,38.54,58.08,5,1,1,1,7,1,1,617,0,0,0 +6368,7783,14158,-9,-9,-9,3,1,0,53,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-965.2003020077403,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,23.85,26.03,2,1,0,0,7,1,1,283,0,0,0 +6369,7784,14159,14160,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,4.187143485926189,7.636814019988764,7.468729844539808,1,0,-9,35,0,4,108.4559002583793,0,0,0,59,2,4,1,3,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.763812874726594,7.430417757048319,0,0,54.2,57.49,6,1,0,0,11,5,1,624,0,0,0 +6369,7784,14160,14159,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.482856382353072,8.952463404799266,7.938954718339136,1,0,-9,35,0,-4,79.41898427119845,0,0,0,63,2,4,3,2,-9,2019,2,2,11,0,40,48,15,1,0,4,0,12.47640247602455,12.47640247602455,0,0,0,0,0,0,0,1,1,0,4.592235211948969,7.731442788881606,0,3,54.79,55.86,6,1,0,0,11,5,1,624,0,0,0 +6369,7785,14161,-9,14159,14160,3,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.206758832064985,8.27860803108395,0,3,0,0,0,-9,0,-928.8599943265484,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,37,40,15,1,1,-9,1,12.1571932083814,12.1571932083814,0,0,0,0,0,0,0,1,1,0,5.168202684362412,0,0,0,35.84,61.77,4,1,0,0,11,4,1,2094,0,0,0 +6370,7786,14162,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,3,8.526525352835669,9.113434083310075,0,3,0,0,0,-9,0,-912.9424110801999,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,17.59309151180631,17.59309151180631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,6,1,0,0,7,5,0,314,0,0,0 +6371,7787,14163,14164,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.465349595325664,8.443657523657238,0,1,0,-9,24,0,-1,83.20445615300861,0,0,0,48,2,4,1,3,3,2019,1,1,13,2,37,7,15,1,2,1,0,15.55815869762545,15.55815869762545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,51.08,7,4,0,1,8,5,0,868,0,0,0 +6371,7787,14164,14163,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,4,7.633038346485789,8.007493078773628,0,1,0,-9,26,0,1,13.00388657480337,0,0,0,47,2,4,1,2,2,2019,1,2,12,1,15,20,15,1,1,1,0,15.33849961374686,15.33849961374686,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.79,55.86,4,4,0,1,8,5,0,868,0,0,0 +6372,7788,14165,14166,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,5,0,5.887864409480805,5.960836667082564,1,0,-9,7,0,-5,-14.0454396556598,0,0,0,68,2,4,3,2,1,2019,4,2,7,0,0,32,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.272292670925938,6.069671580262697,0,0,51.73,58.82,7,1,0,0,2,3,1,874.5,0,0,0 +6372,7788,14166,14165,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,4,6.235998662002828,8.072410787043902,7.794346241322974,1,0,-9,7,0,5,60.93160056719601,0,0,0,63,2,5,3,3,3,2019,4,1,11,0,16,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.734651648565221,8.009108478736152,0,0,57.16,56.15,6,1,0,0,2,3,1,874.5,0,0,0 +6373,7789,14167,14168,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,33,0,-11,0,0,0,0,64,3,3,3,1,1,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.006013934577,1,52,53,6,3,0,1,6,1,1,1575,0,0,0 +6373,7789,14168,14167,-9,-9,1,1,1,64,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,33,0,11,0,0,0,0,53,2,4,3,-9,-9,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,3,0,0,6,1,1,1575,0,0,0 +6374,7790,14169,14170,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,7.9388832681836,8.281674835718665,0,1,0,-9,10,0,-5,35.41447066523958,0,0,0,65,2,4,3,3,3,2019,4,1,21,9,40,37,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.678556370740437,0,0,3,40.5,55.57,6,1,0,0,12,4,1,532,0,0,0 +6374,7790,14170,14169,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.636149003557072,7.958642275595716,1,0,-9,10,0,5,159.3696651682237,0,0,0,60,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.954176488559023,0,3,55.19,54.26,6,1,0,0,12,4,1,532,0,0,0 +6375,7791,14171,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,4,8.313307594165233,8.351014488135625,0,3,0,0,0,-9,0,-953.2321273013492,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,21,88,15,1,0,-9,0,18.49026866038595,18.49026866038595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,11,4,0,881,0,0,0 +6376,7792,14172,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,6.887884090880198,6.866134115749827,3,0,0,0,-9,0,-1086.643334210158,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.689445150792496,6.640875980643102,0,0,58.33,39.49,5,1,0,0,1,2,1,1069,0,0,0 +6377,7793,14173,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,3,7.628564472023022,7.765627351432169,0,3,0,-9,0,-9,0,-964.2641571712369,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,39,0,15,1,11,-9,0,6.593974142401462,6.593974142401462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.33,53.12,3,1,0,0,9,3,1,422,0,0,0 +6378,7794,14174,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,6.683607173040501,6.572236545362353,3,0,0,0,-9,0,-1064.675052643452,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.248762497348838,6.260356127421517,0,0,51.17,49.39,3,1,0,0,5,2,1,2079,0,0,0 +6379,7795,14175,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,4,0,6.203790011967172,6.304056372940566,3,0,0,0,-9,0,-994.0539123786868,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.557194472047786,0,0,60.12,54.8,6,1,0,0,12,2,0,1122,0,0,0 +6379,7796,14176,-9,-9,-9,2,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1135.296137087112,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.071119652267189,0,1,1,0,0,0,0,0,58.3,52.91,7,1,0,0,12,1,0,615,0,0,0 +6380,7797,14177,14178,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.445931202596729,8.849303729402918,0,2,0,-9,10,0,0,.3701402437171588,0,0,0,43,1,5,1,-9,-9,2019,1,1,9,1,43,38,15,1,1,1,0,13.78581662877522,13.78581662877522,0,0,0,0,0,0,0,0,0,0,0,0,7.967024183148867,3,52.23,55.6,6,1,0,0,13,4,1,968.25,0,0,0 +6380,7797,14178,14177,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,5,7.885353646179018,7.865774832883765,0,2,0,-9,10,0,0,-7.273462924809423,0,0,1,43,1,4,1,2,2,2019,1,2,9,0,32,32,15,1,0,1,0,10.2770573136849,10.2770573136849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,7,1,0,0,13,4,1,968.25,0,0,0 +6380,7797,14179,-9,14178,14177,3,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1065.047952191185,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,1,0,0,13,4,1,968.25,0,0,0 +6380,7797,14180,-9,14178,14177,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-806.340061125193,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,13,4,1,968.25,0,0,0 +6381,7798,14181,14182,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,34,0,-4,37.04552276692587,0,0,0,70,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.869516645596522,3,57.16,56.15,6,1,0,0,7,1,1,414,0,0,0 +6381,7798,14182,14181,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,5,0,3.940534815789827,4.086296328421395,1,0,-9,34,0,4,106.0734485849046,0,0,0,66,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3672121848617,0,0,57.06,57.76,2,1,0,0,7,1,1,414,0,0,0 +6382,7799,14183,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-818.6325754836764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.58,34.51,5,1,0,0,12,1,1,568,0,0,0 +6383,7800,14184,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,1,1,0,3,0,5.445286241656491,6.074184529430211,3,0,0,0,-9,0,-966.701120444153,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,35,35,15,1,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.683217607911804,5.454862812205499,0,0,50.27,46.95,6,1,0,0,10,2,1,762,0,0,0 +6384,7801,14185,14186,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,3,8.04003389845731,8.191196531970347,0,1,0,-9,8,0,0,-1.39472033208517,0,0,0,52,2,2,1,3,3,2019,1,2,13,1,51,38,15,1,1,1,0,6.793336898703934,6.793336898703934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.08,43.86,5,1,0,0,12,4,0,987,0,0,0 +6384,7801,14186,14185,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.928571130974072,8.028890160185608,0,1,0,-9,8,0,0,162.5962822635168,0,0,0,52,3,3,1,-9,-9,2019,1,1,10,0,40,35,15,1,0,1,0,8.446556773545513,8.446556773545513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.84,47.24,6,1,0,0,12,4,0,987,0,0,0 +6384,7802,14187,-9,14186,14185,3,1,1,25,2,0,0,0,2,-9,2,1,0,3,7.424778157159775,7.472349425902001,0,3,0,0,0,-9,0,-1164.155291945948,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,30,35,15,1,0,-9,1,7.835357284422874,7.835357284422874,0,0,0,0,0,0,0,0,0,0,0,0,6.864053312696851,3,44.38,58.1,5,1,0,0,12,3,0,504,0,0,0 +6385,7803,14188,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,1,1,0,4,7.55941711001385,7.795795588845086,0,3,0,0,0,-9,0,-1005.726863324639,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,48,15,1,0,-9,0,6.963251804687701,6.963251804687701,0,0,0,0,0,0,0,0,0,0,8.073835640997951,0,12.76443682455814,3,57.16,56.15,6,1,0,0,10,3,1,104,0,0,0 +6386,7804,14189,14190,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,3,8.054939002970526,7.751442228502883,0,1,0,-9,8,0,-2,-96.51933128348331,0,0,0,56,2,2,1,3,3,2019,1,1,8,0,25,20,15,1,0,1,0,12.4538716722873,12.4538716722873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,6,4,1,1018.5,0,0,0 +6386,7804,14190,14189,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,2,7.944243741241404,8.158534791639019,0,1,0,-9,8,0,2,-112.353574853053,0,0,0,54,3,3,1,3,3,2019,1,2,15,3,38,38,15,1,3,1,0,10.68438660905025,10.68438660905025,0,0,0,0,0,0,0,0,0,0,3.767010451309868,0,0,0,47.93,45.76,3,1,0,0,6,4,1,1018.5,0,0,0 +6387,7805,14191,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-906.8889174067662,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.526908221350527,0,0,0,53.94,55.04,7,1,0,0,13,1,1,1001,0,0,0 +6387,7806,14192,-9,-9,14191,2,1,1,67,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1008.496473371369,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,4,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,8.25599158582151,0,0,0,52,47,5,1,0,0,13,1,1,265,0,0,0 +6387,7807,14193,-9,-9,14191,3,1,1,51,2,0,0,0,2,-9,2,1,0,4,8.049675550327443,7.729159821697659,0,3,0,0,0,-9,0,-961.8429851686611,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.749059293130454,0,0,0,53,54,6,1,0,0,13,3,1,1115,0,0,0 +6388,7808,14194,14195,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,7.382479683617358,7.665935756132902,1,0,-9,5,0,1,-21.91494128278504,0,0,0,75,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.359475597579695,8.024233614457483,0,0,60.44,36.05,5,1,0,0,11,3,1,214.5,0,0,0 +6388,7808,14195,14194,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,5,0,-1,25.70496165209547,0,0,0,76,2,2,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.031354143083097,0,0,0,52.65,30.98,4,1,0,0,11,3,1,214.5,0,0,0 +6389,7809,14196,14197,-9,-9,2,1,0,47,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,31,0,-2,0,0,0,0,49,2,1,3,3,3,2019,4,1,12,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,5,3,0,0,4,1,1,761.5,0,0,0 +6389,7809,14197,14196,-9,-9,1,1,1,49,1,0,1,0,2,-9,3,3,0,1,0,0,0,2,0,-9,9,0,2,0,0,0,0,47,3,3,3,-9,-9,2019,4,2,11,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,13.47,4,3,1,0,4,1,1,761.5,0,0,0 +6389,7810,14198,-9,14196,14197,3,1,1,20,2,0,1,0,2,-9,2,1,0,3,8.61098850647722,8.702158634288825,0,3,0,0,0,-9,0,-1102.930038277005,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,1,40,48,15,1,1,-9,1,14.87169711529965,14.87169711529965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.02,58.57,4,3,0,0,4,5,1,297,0,0,0 +6389,7811,14199,-9,14196,14197,4,1,1,19,2,0,1,0,2,-9,2,1,0,5,6.905783738080921,6.630296798355746,0,3,0,0,0,-9,0,-922.7889991351884,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,3,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,4,2,1,104,0,0,0 +6390,7812,14200,14201,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.496284908140346,8.264719651535625,0,2,0,-9,21,0,9,70.38356222780412,0,0,0,40,2,2,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,12.57178973630781,12.57178973630781,0,0,0,0,0,0,0,1,1,0,2.848431331301518,0,0,0,60.29,52.11,5,1,0,0,6,4,1,1044.333333333333,0,0,0 +6390,7812,14201,14200,-9,-9,2,1,0,40,1,0,1,0,2,-9,2,1,0,2,7.735717815658679,7.163546766843167,0,2,0,-9,21,0,0,-83.51058842770568,0,0,1,49,2,3,1,2,-9,2019,1,1,7,0,27,21,15,1,0,1,0,5.891748026313842,5.891748026313842,0,0,0,0,0,0,0,1,1,0,1.927695583285601,0,0,0,57.57,49.69,6,1,0,0,6,4,1,1044.333333333333,0,0,0 +6390,7812,14202,-9,14201,14200,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,5.59598077251514,5.548562144792163,0,2,0,0,0,-9,0,-979.4817513097346,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1044.333333333333,0,0,0 +6391,7813,14203,14204,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,6.474484829962688,6.870024979370012,1,0,-9,42,0,12,115.549313350947,0,0,0,67,3,3,3,-9,-9,2019,4,2,9,0,0,3,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.610021249162246,6.595877504752102,0,3,50.89,49.95,6,1,0,0,2,2,1,1280,0,0,0 +6391,7813,14204,14203,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,42,0,-12,116.6242613897459,0,0,0,79,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.33,53.46,7,1,0,0,2,2,1,1280,0,0,0 +6392,7814,14205,-9,14207,14206,4,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1034.159946165863,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,6,4,1,563,0,0,0 +6392,7814,14206,14207,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,4,8.184707953483974,8.257705580637046,0,2,0,-9,17,0,3,33.94596894372177,0,0,0,47,2,4,1,2,2,2019,1,1,7,0,37,39,15,1,0,1,0,13.64268037609203,13.64268037609203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,7,1,0,0,6,4,1,563,0,0,0 +6392,7814,14207,14206,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,4,7.372327631975494,7.747711108982255,0,2,0,-9,17,0,-3,27.99075820429317,0,0,0,50,2,4,1,2,2,2019,1,2,11,0,29,18,15,1,0,1,0,7.325501165479321,7.325501165479321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.45,49.53,7,1,0,0,6,4,1,563,0,0,0 +6392,7815,14208,-9,14207,14206,3,1,0,19,2,0,1,0,2,-9,7,2,0,2,6.110570001158651,6.070537002231676,0,3,0,0,0,-9,0,-984.1923675943935,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,27,12,18,20,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.46,58.06,3,1,0,1,6,2,1,516,0,0,0 +6393,7816,14209,14210,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.537725984362077,5.029078031215136,1,0,-9,7,0,9,-7.500668620253904,0,0,0,59,3,5,1,3,3,2019,3,2,9,1,0,0,15,4,1,1,0,0,0,1,0,8.193840108605503,0,0,0,0,1,1,0,4.159008197762886,5.482111439289504,0,0,70.38,15.95,5,1,0,0,5,4,1,792.5,0,0,0 +6393,7816,14210,14209,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,5,8.565379645701709,8.890883055630361,0,1,0,-9,7,0,0,-37.1043882294538,0,0,0,68,2,3,3,3,3,2019,2,1,7,0,30,25,15,1,0,4,0,22.81015725402409,22.81015725402409,0,0,0,0,0,0,0,1,1,0,0,0,0,1,57,55,7,1,0,0,5,4,1,792.5,0,0,0 +6394,7817,14211,14212,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,3.239838779602677,3.605710432553102,1,0,-9,46,0,1,-130.2981804781254,0,0,0,77,1,1,3,2,2,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,6.274915678542316,0,0,0,0,51.03973905400144,1,1,0,3.260904726297507,3.754288821342621,.9893360013593495,1,38.36,48.5,3,1,0,0,10,3,1,921,0,0,0 +6394,7817,14212,14211,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,1,0,7.714966827516738,7.914303032289977,1,0,-9,45,0,-1,-20.52230088932029,0,0,0,78,2,3,3,3,-9,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,1,0,10.93742151894746,0,0,0,0,1,1,0,0,7.945112182030648,.2364730435785947,1,53.93,20.27,6,1,0,0,10,3,1,921,0,0,0 +6395,7818,14213,-9,-9,-9,8,1,0,18,2,0,0,1,2,0,7,2,0,2,7.161096312288979,7.373273706556991,0,3,0,0,0,-9,0,-1009.665579273988,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.18,52.11,7,1,0,0,11,3,1,821,0,0,0 +6395,7819,14214,14215,14220,14219,2,1,0,54,1,0,0,0,2,-9,2,1,0,4,7.983761152041888,7.760483075288094,0,1,0,-9,10,0,0,-12.66371591216226,0,0,0,54,3,5,1,2,1,2019,1,1,16,6,35,17,15,1,6,1,0,9.88549239994521,9.88549239994521,0,0,0,0,0,0,0,1,1,0,0,0,115.7277079085495,3,41.51,59.08,6,1,0,0,11,4,1,536,0,0,0 +6395,7819,14215,14214,-9,-9,1,1,1,54,1,0,0,0,3,-9,1,1,0,5,7.092753134696129,6.970892732972575,0,1,0,-9,10,0,0,71.23842533272236,0,0,0,54,2,4,1,2,3,2019,1,2,8,1,30,40,15,1,1,1,0,4.287608812512762,4.287608812512762,0,0,0,0,0,0,0,1,1,0,0,0,6.919083964454921,3,62.39,56.71,6,1,0,0,11,4,1,536,0,0,0 +6395,7820,14216,-9,-9,14217,6,1,1,15,2,0,0,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-1043.712119787346,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,3,1,224.3333333333333,0,0,0 +6395,7820,14217,-9,14214,14215,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.718562219488316,7.998914762268192,0,3,0,-9,0,0,0,-901.6047112039163,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,38,40,15,1,2,-9,1,8.845456592618783,8.845456592618783,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,11,3,1,224.3333333333333,0,0,0 +6395,7820,14218,-9,-9,14217,7,1,1,14,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-946.1005515516385,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,11,3,1,224.3333333333333,0,0,0 +6395,7821,14219,14220,-9,-9,4,1,1,86,1,0,0,0,1,-9,4,3,0,3,0,8.135786150313068,7.965647522375876,1,0,-9,10,0,3,-216.0218584451061,0,0,0,83,2,1,3,-9,-9,2019,4,5,9,0,0,0,15,4,1,4,0,0,0,1,8.954279342174742,0,119.4235455369787,0,0,3.527197790099965,1,1,0,0,7.866119581291687,3.211796609695033,1,54,46,6,1,0,0,11,3,1,866.5,0,0,0 +6395,7821,14220,14219,-9,-9,5,1,0,83,1,0,0,0,2,-9,4,3,0,1,0,5.969929103215436,5.987750280025178,1,0,-9,10,0,-3,16.10493212522972,0,0,0,86,1,3,3,-9,-9,2019,4,4,18,6,0,0,15,4,6,4,0,0,0,1,26.10524327663026,0,126.4743671075138,4.775396001610197,0,289.9127315054233,1,1,0,0,5.877642209774768,0,0,35.92,24.85,2,1,0,0,11,3,1,866.5,0,0,0 +6396,7822,14221,14222,-9,-9,1,1,0,60,1,0,0,0,3,-9,4,3,0,4,0,8.985504629386565,9.112787576859656,1,0,-9,23,0,4,-102.9350261146699,0,0,0,56,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,9.174414974202334,9.114116035109252,8.395610643254628,3,48.28,54.65,6,1,0,0,12,5,1,315.5,0,0,0 +6396,7822,14222,14221,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,4,0,9.157752362728434,9.05153902492237,1,0,-9,9,0,-4,-1.406374066746002,0,0,0,60,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.087772749401276,9.047554366495985,0,0,53,54,6,1,0,0,12,5,1,315.5,0,0,0 +6397,7823,14223,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-999.4035243356915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,0,6,1,0,412,0,0,0 +6398,7824,14224,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,1,0,5.060440444717523,5.297918300332678,3,0,0,0,-9,0,-1014.628359666569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,6.320877586742229,0,0,0,0,0,1,1,0,7.319763195952652,5.318644983478687,74.26450919911038,3,50.02,19.09,5,1,0,1,12,2,1,205,0,0,0 +6399,7825,14225,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.122943146823385,7.862158052118152,0,3,0,-9,0,-9,0,-1051.286359723286,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,12,38,0,15,1,12,-9,0,8.336942450970852,8.336942450970852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.28,55.84,3,1,0,0,1,4,1,1793,0,0,0 +6400,7826,14226,14227,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,5,8.648659636618044,8.966779686722361,0,2,0,-9,28,0,-10,-39.06642150929554,-9,0,0,58,2,4,1,2,2,2019,1,2,8,0,55,0,15,1,0,1,0,15.01097529974863,15.01097529974863,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,12,5,1,352.5,0,0,0 +6400,7826,14227,14226,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,4,9.585910837235685,9.744994669841381,0,2,0,-9,7,0,10,-.9754305320439018,0,0,0,48,1,5,1,-9,-9,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.281229210474349,0,0,0,54,54,6,1,0,0,12,5,1,352.5,0,0,0 +6400,7827,14228,-9,14226,14227,3,1,1,18,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-914.7891128224585,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,5,1,426,0,0,0 +6401,7828,14229,14230,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,11,0,2,0,0,0,0,54,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.942185355999027,0,5.665158968606605,3,59.46,46.99,6,1,0,0,7,1,1,814,0,0,0 +6401,7828,14230,14229,-9,-9,1,1,0,54,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,11,0,-2,0,0,0,0,56,2,3,3,2,2,2019,4,2,6,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.655814028300139,0,16.76637835428799,3,54.28,54.65,7,1,0,0,7,1,1,814,0,0,0 +6402,7829,14231,14232,-9,-9,2,1,0,66,1,0,0,0,3,-9,2,1,0,4,6.608696365709847,6.353544643334415,0,1,0,-9,6,0,-1,-45.65624616316888,0,0,0,67,3,4,1,3,3,2019,1,1,9,0,10,10,15,1,0,1,0,6.126946029052535,6.126946029052535,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,60.33,7,1,0,0,11,3,0,1896,0,0,0 +6402,7829,14232,14231,-9,-9,1,1,1,67,1,0,0,0,3,-9,1,1,0,4,7.514269116755951,7.346930321413192,4.018883492834489,1,0,-9,6,0,1,-91.40294089785223,0,0,0,66,3,4,1,3,2,2019,1,2,7,0,15,20,15,1,0,1,0,12.50874846967106,12.50874846967106,0,0,0,0,0,0,0,1,1,0,4.843166560254176,4.389005833802962,0,0,53.2,46.85,7,1,0,0,11,3,0,1896,0,0,0 +6402,7830,14233,-9,14231,14232,3,1,1,38,2,0,0,0,3,-9,2,1,0,4,6.849389307999806,6.880194557694246,0,3,0,0,0,-9,0,-876.9447212068553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,21,24,15,1,1,-9,1,4.401660397323192,4.401660397323192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,11,2,0,370,0,0,0 +6403,7831,14234,14235,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,2,7.923516120815597,7.952532267727208,0,2,0,-9,11,0,4,-17.72165031820448,0,0,0,39,1,3,1,2,2,2019,1,2,13,1,40,40,15,1,1,1,0,6.468748949148403,6.468748949148403,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.44,47.57,4,1,0,0,11,3,0,277,0,0,0 +6403,7831,14235,14234,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,3,7.495519467449189,7.437854695148266,0,2,0,-9,11,0,-4,-154.4616025247,0,0,1,43,2,2,1,3,-9,2019,1,1,3,0,27,29,15,1,0,1,0,8.085683033908001,8.085683033908001,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.98,40.23,5,2,0,0,11,3,0,277,0,0,0 +6404,7832,14236,14237,-9,-9,1,1,1,45,1,0,0,0,3,-9,2,1,0,4,7.840631772377443,7.877732986720817,0,1,0,-9,10,0,2,-30.23252436402164,0,0,0,43,3,4,3,3,2,2019,2,2,8,0,36,36,15,1,0,3,0,8.748675074225636,8.748675074225636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.06,52.01,7,3,0,0,9,3,1,625,0,0,0 +6404,7832,14237,14236,-9,-9,2,1,0,43,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,10,0,-2,114.4427439068261,0,0,1,45,3,4,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.29,55.45,6,3,0,0,9,3,1,625,0,0,0 +6404,7833,14238,-9,14237,14236,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.924841736384785,8.239055766472378,0,3,0,0,0,-9,0,-1056.736499574082,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,36,42,15,1,0,-9,1,10.76313535388952,10.76313535388952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,3,0,0,9,4,1,690,0,0,0 +6404,7834,14239,-9,14237,14236,4,1,0,19,2,0,0,0,2,1,2,1,0,4,7.137102169212733,7.318653358270185,0,3,0,0,0,-9,0,-1001.775982856615,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,25,0,15,1,0,-9,1,7.303210311894044,7.303210311894044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.84,53.46,6,3,0,0,9,3,1,1876,0,0,0 +6405,7835,14240,14241,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,5.621684876490451,5.852846752162963,1,0,-9,31,0,-12,-50.16727537697558,0,0,0,84,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.394966065264815,5.447578830157518,0,0,56.58,49.75,7,1,0,0,9,4,1,404,0,0,0 +6405,7835,14241,14240,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,8.466679750186284,8.472295370527153,1,0,-9,31,0,12,21.7649049579087,0,0,0,72,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.39652918177517,8.389561628908968,0,0,58.07,46.29,6,1,0,0,9,4,1,404,0,0,0 +6406,7836,14242,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,4,3,0,4,8.109699423715259,8.411183606828436,7.264046431977064,3,0,0,0,-9,0,-1037.547384535731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,10,12,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.155639231886826,0,0,56.41,48.18,2,1,0,0,13,4,1,685,0,0,0 +6407,7837,14243,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,4,0,4.669136307703094,4.715946250434119,3,0,0,0,-9,0,-1048.812043741009,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.690530956984721,4.827892191317447,0,0,55,50.21,6,1,0,0,9,2,1,248,0,0,0 +6407,7838,14244,-9,14243,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.446118250081483,8.281299912043826,0,3,0,0,0,-9,0,-947.7794416442798,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,16,6,38,38,15,1,6,-9,1,16.95835800519282,16.95835800519282,0,0,0,0,0,0,0,0,0,0,4.058679030377328,0,0,0,36.01,56.19,5,1,0,0,9,5,1,890,0,0,0 +6408,7839,14245,-9,14246,14247,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-827.8595324660231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,1219,0,0,0 +6408,7839,14246,14247,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,3,7.110524594178868,7.11597627209599,0,2,0,-9,10,0,-10,54.56626843230327,0,0,1,45,2,3,1,-9,-9,2019,1,1,13,2,21,23,15,1,2,1,0,6.900394560125081,6.900394560125081,0,0,0,0,0,0,0,1,1,0,1.172661333603388,0,0,0,43.87,57.02,6,1,0,0,9,4,1,1219,0,0,0 +6408,7839,14247,14246,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.804911403753124,8.916737350206089,0,2,0,-9,10,0,10,-109.5375768328487,0,0,0,35,2,3,1,2,2,2019,1,2,6,0,54,56,15,1,0,1,0,13.27794405094741,13.27794405094741,0,0,0,0,0,0,0,1,1,0,3.029513600031337,0,0,0,50.14,53.97,4,1,0,0,9,4,1,1219,0,0,0 +6408,7839,14248,-9,14246,14247,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.9868509412978,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,4,1,1219,0,0,0 +6409,7840,14249,14250,-9,-9,1,1,0,83,1,0,0,0,1,-9,4,3,0,3,0,6.921339507803435,6.338512858840264,1,0,-9,58,0,-1,-38.78177571811825,0,0,0,84,3,4,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.697149737825927,0,0,56.79,38.59,6,1,0,0,9,4,1,546.5,0,0,0 +6409,7840,14250,14249,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,4,0,7.865782123353593,7.998491465000447,1,0,-9,58,0,1,135.1657346466355,0,0,0,83,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.684725327878501,8.137707359346603,0,0,62.25,48.33,6,1,0,0,9,4,1,546.5,0,0,0 +6410,7841,14251,14252,-9,-9,2,1,0,41,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,20,0,-13,.1040918223544161,0,0,1,54,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.502960989922654,0,0,0,35.61,59.41,7,1,0,0,10,5,1,437,0,0,0 +6410,7841,14252,14251,-9,-9,1,1,1,54,1,0,2,0,2,-9,1,1,0,3,9.38147491056078,9.158779408507998,0,2,0,-9,20,0,13,123.3914395180572,0,0,0,41,2,3,3,2,2,2019,2,2,8,0,55,40,15,1,0,3,0,22.50828938921302,22.50828938921302,0,0,0,0,0,0,0,1,1,0,8.615817386364199,0,0,0,57.33,53.46,6,1,0,0,10,5,1,437,0,0,0 +6410,7841,14253,-9,14251,14252,3,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1042.308609564217,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,10,5,1,437,0,0,0 +6410,7841,14254,-9,14251,14252,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1129.921409731292,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,10,5,1,437,0,0,0 +6411,7842,14255,-9,14256,14258,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.290907353933,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,5,1,1869,0,0,0 +6411,7842,14256,14258,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,5,8.172244432161353,7.990673200507883,0,2,0,-9,6,0,-4,-108.157205880903,0,0,1,39,2,4,1,3,3,2019,1,2,19,8,21,22,15,1,8,1,0,16.83528330332357,16.83528330332357,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,6,1,0,0,13,5,1,1869,0,0,0 +6411,7842,14257,-9,14256,14258,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1129.65672159236,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,5,1,1869,0,0,0 +6411,7842,14258,14256,-9,-9,2,1,1,39,1,1,2,0,2,-9,1,1,0,4,9.443835033475379,9.440838699880167,0,2,0,-9,6,0,4,36.87007513794113,0,0,0,35,1,5,1,-9,-9,2019,1,1,5,0,60,50,15,1,0,1,0,22.33331220573619,22.33331220573619,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.82,46.15,7,1,0,0,13,5,1,1869,0,0,0 +6412,7843,14259,14260,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,5,8.578701377520066,8.615561734870674,0,1,0,-9,5,0,0,-122.5179202501165,0,1,0,29,2,4,1,1,1,2019,1,2,12,0,52,48,15,1,0,1,0,10.96667466932865,10.96667466932865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.13,62.93,5,1,0,0,5,5,0,608,0,0,0 +6412,7843,14260,14259,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,4,8.525147818451931,8.307324656885637,0,1,0,-9,5,0,0,-54.49619693041024,-9,1,1,29,1,5,1,-9,-9,2019,1,1,11,0,35,0,15,1,2,1,0,13.91777208336087,13.91777208336087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,5,0,0,5,5,0,608,0,0,0 +6413,7844,14261,14262,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,4,7.963549265659502,7.581003325104177,0,1,0,-9,9,0,-3,162.2112041309336,0,0,0,63,2,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,6.633115633530177,6.633115633530177,0,0,0,0,0,0,0,0,0,0,.2118881491616945,0,12.74164202306972,3,55.79,52.62,5,1,0,0,9,4,1,1456.5,0,0,0 +6413,7844,14262,14261,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,3,8.204735014241249,8.269043352022649,6.818111075666929,1,0,-9,9,0,3,120.7351774341998,0,0,0,60,1,4,1,-9,-9,2019,1,1,10,1,38,40,15,1,1,1,0,8.458621472824619,8.458621472824619,0,0,0,0,0,0,0,0,0,0,0,7.044267441907741,18.49388676714115,3,57.33,53.46,7,1,0,0,9,4,1,1456.5,0,0,0 +6414,7845,14263,14264,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,8.918979415707069,8.630705714078363,1,0,-9,8,0,-1,-12.3591333268556,0,0,0,70,2,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.934833510866541,8.106209253558461,0,0,48.99,49.19,6,1,0,0,4,5,1,487.5,0,0,0 +6414,7845,14264,14263,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.992909428491547,7.826999774225654,1,0,-9,8,0,1,79.06201345445004,0,0,0,69,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.072006931804542,7.445841093193846,0,0,59.46,46.99,6,1,0,0,4,5,1,487.5,0,0,0 +6415,7846,14265,-9,14266,14269,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.242216721989,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,438.8,0,0,0 +6415,7846,14266,14269,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,3,7.629598660461109,7.590777998053094,0,2,0,-9,9,0,-2,-106.4357952179091,0,0,1,44,2,3,1,1,2,2019,1,2,12,0,20,0,15,1,0,1,0,11.2384396075719,11.2384396075719,0,0,0,0,0,0,0,1,1,0,9.712289769328684,0,122.2862450586875,3,44.98,55.14,6,1,0,0,9,5,1,438.8,0,0,0 +6415,7846,14267,-9,14266,14269,3,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.8064308156786,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,438.8,0,0,0 +6415,7846,14268,-9,14266,14269,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.4713294708571,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,438.8,0,0,0 +6415,7846,14269,14266,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,3,9.884528782955226,9.473979627216675,0,2,0,-9,9,0,2,-.9683316962632995,0,0,0,42,1,3,1,2,1,2019,1,1,11,0,60,60,15,1,0,1,0,41.66673760111386,41.66673760111386,0,0,0,0,0,0,0,1,1,0,0,0,113.7098044248866,3,28.87,61.03,6,1,0,0,9,5,1,438.8,0,0,0 +6416,7847,14270,14271,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,7.625768051504116,7.591905620765707,1,0,-9,43,0,-2,-37.20696269453919,0,0,0,63,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.740161514236035,7.491084038136878,18.36189283187917,3,55.19,54.26,6,1,0,0,13,2,1,915.5,0,0,0 +6416,7847,14271,14270,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,43,0,2,19.32527460739378,0,0,0,61,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.834387353072854,0,0,0,70.47,31.07,6,1,0,0,13,2,1,915.5,0,0,0 +6417,7848,14272,14273,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,2,0,8.117519725024156,7.892625502564464,1,0,-9,41,0,5,-64.66817813862079,0,0,0,61,3,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.3896917508449067,7.875461088839735,0,0,59.15,20.54,5,1,0,0,2,3,1,335,0,0,0 +6417,7848,14273,14272,-9,-9,2,1,0,61,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,3,0,-5,32.22388357734299,0,0,0,66,1,2,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,45.74,6,1,0,0,2,3,1,335,0,0,0 +6418,7849,14274,14275,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,2,7.675322633726029,7.898057655242529,0,1,0,-9,1,-9,0,0,-9,1,1,27,1,3,1,-9,-9,2019,1,1,26,10,40,0,15,1,10,1,0,6.774306016477874,6.774306016477874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,42.03,3,2,0,0,13,4,0,1926.5,0,0,0 +6418,7849,14275,14274,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,3,7.822349304430956,7.892780521096797,0,1,0,-9,1,-9,0,0,-9,1,0,27,1,2,1,2,2,2019,1,2,14,2,38,0,15,1,2,1,0,7.836457483892815,7.836457483892815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.69,60.83,6,1,0,0,13,4,0,1926.5,0,0,0 +6419,7850,14276,14277,-9,-9,1,1,0,55,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,22,0,9,8.140311354454715,0,0,0,46,3,2,1,-9,-9,2019,3,2,27,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.75979386190736,3,33.22,33.59,3,1,1,1,11,3,1,791.5,0,0,0 +6419,7850,14277,14276,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,2,8.203832093159093,8.152026406464472,0,1,0,-9,22,0,0,-7.456679012631524,0,0,0,55,2,2,3,3,-9,2019,2,1,22,8,56,42,15,1,8,3,0,7.657649057437467,7.657649057437467,0,0,0,0,0,0,0,1,1,0,0,0,16.31618220575315,1,47.43,23.11,3,1,0,1,11,3,1,791.5,0,0,0 +6420,7851,14278,14279,-9,-9,1,1,0,43,1,0,0,0,1,-9,2,1,0,4,8.375867415566022,8.437051170613776,0,1,0,-9,6,0,-2,-81.58378520420469,0,0,1,45,2,5,1,2,2,2019,1,2,22,10,53,51,15,1,10,1,0,9.1346420533902,9.1346420533902,0,0,0,0,0,0,0,1,1,0,1.671461934687346,0,0,0,35.91,63.19,3,1,0,0,6,5,1,149,0,0,0 +6420,7851,14279,14278,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,5,9.002339435345203,8.833885097926851,0,1,0,-9,6,0,2,-53.53086522124926,0,0,0,43,1,4,1,-9,-9,2019,1,1,9,1,40,40,15,1,1,1,0,21.05872328414369,21.05872328414369,0,0,0,0,0,0,0,1,1,0,3.915486335869987,0,0,0,55.34,54.6,6,1,0,0,6,5,1,149,0,0,0 +6420,7852,14280,-9,14278,14279,3,1,1,18,2,0,0,0,2,1,2,1,0,5,5.831883642124558,5.678316387169794,0,3,0,0,0,-9,0,-935.9319530150341,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,6,0,15,1,0,-9,1,5.092628095388977,5.092628095388977,0,0,0,0,0,0,0,1,1,0,1.018136600710237,0,0,0,57.06,57.76,7,1,0,0,6,2,1,1421,0,0,0 +6421,7853,14281,-9,14282,14283,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.908443092035,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,821.3333333333334,0,0,0 +6421,7853,14282,14283,-9,-9,1,1,0,44,1,0,1,0,2,-9,1,1,0,4,8.580597133068473,8.291101195671954,0,2,0,-9,8,0,-4,44.44430480975078,0,0,1,48,2,4,1,2,1,2019,1,2,1,0,5,8,15,1,0,1,0,87.05559414479926,87.05559414479926,0,0,0,0,0,0,0,1,1,0,4.213765332596876,0,0,0,45.01,57.46,7,1,0,0,9,4,1,821.3333333333334,0,0,0 +6421,7853,14283,14282,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,4,7.843744620442926,7.947027669414569,0,2,0,-9,8,0,4,78.67670940871038,0,0,0,44,2,4,1,-9,-9,2019,1,1,6,0,30,25,15,1,0,1,0,12.77079312744028,12.77079312744028,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.48,48.62,4,1,0,0,9,4,1,821.3333333333334,0,0,0 +6421,7854,14284,-9,14282,14283,3,1,0,19,2,0,1,0,2,-9,1,1,0,4,7.254464561203513,7.21561375860875,0,3,0,0,0,-9,0,-1059.060343518414,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,10,10,15,1,3,-9,1,17.68368521074386,17.68368521074386,0,0,0,0,0,0,0,1,1,0,.8579003760193116,0,0,0,40.71,62.41,7,1,0,0,9,3,1,268,0,0,0 +6422,7855,14285,14286,-9,-9,1,1,0,54,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,2,0,-6,4.895790239998316,0,0,0,60,3,4,1,3,3,2019,3,2,15,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.641959862291039,0,0,0,27.89,18.61,4,1,0,0,11,3,1,349,0,0,0 +6422,7855,14286,14285,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,4,8.205703704690725,8.239005546511956,0,1,0,-9,2,0,6,-12.71066771709938,0,0,0,54,3,1,3,-9,-9,2019,2,1,10,0,20,0,15,1,0,3,0,28.65809834957329,28.65809834957329,0,0,0,0,0,0,0,1,1,0,0,0,45.25844418182606,1,47.38,57.75,7,1,0,0,11,3,1,349,0,0,0 +6423,7856,14287,-9,-9,-9,1,1,0,52,3,0,1,0,1,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-998.3885418731294,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2811563831074576,0,13.81670382623876,3,53.88,33.91,3,3,0,1,2,1,1,1159.5,0,0,0 +6423,7856,14288,-9,14287,-9,5,1,1,16,2,0,1,1,3,-9,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1078.241409220811,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,3,0,0,2,1,1,1159.5,0,0,0 +6423,7857,14289,-9,14287,-9,2,1,0,23,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-998.0113350501648,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,19,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.87,58.55,5,3,0,0,2,1,1,500,0,0,0 +6423,7858,14290,-9,14287,-9,3,1,0,21,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1017.765286480813,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,3,0,0,2,1,1,687,0,0,0 +6423,7859,14291,-9,14287,-9,4,1,0,20,2,0,1,0,2,-9,1,1,0,3,6.455343943203621,6.266397037116245,0,3,0,0,0,-9,0,-966.8626708888359,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,3,0,0,15,1,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,59.72,5,3,0,0,2,2,1,305,0,0,0 +6424,7860,14292,-9,14293,14297,5,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-889.3634879190239,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,2,0,511.1666666666667,0,0,0 +6424,7860,14293,14297,-9,-9,2,1,0,38,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,15,0,1,122.0929730299555,0,0,1,37,2,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,4,2,0,511.1666666666667,0,0,0 +6424,7860,14294,-9,14293,14297,3,1,1,17,2,0,4,1,3,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.498727327038,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,7,3,0,0,4,2,0,511.1666666666667,0,0,0 +6424,7860,14295,-9,14293,14297,4,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.3568012096395,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,4,2,0,511.1666666666667,0,0,0 +6424,7860,14296,-9,14293,14297,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-862.9378407420418,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,4,2,0,511.1666666666667,0,0,0 +6424,7860,14297,14293,-9,-9,1,1,1,37,1,0,4,0,2,-9,2,1,0,3,8.162567836957138,8.273940585423176,0,2,0,-9,15,0,-1,21.24121353106151,0,0,0,38,3,4,3,2,2,2019,2,2,11,0,36,40,15,1,2,3,0,12.44641964374999,12.44641964374999,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.26,45.28,4,3,0,0,4,2,0,511.1666666666667,0,0,0 +6425,7861,14298,14299,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.824844377967201,9.003478818338696,0,1,0,-9,33,0,-5,15.09457583959906,0,0,0,62,1,4,1,2,-9,2019,1,1,10,1,45,43,15,1,1,1,0,14.48045020765301,14.48045020765301,0,0,0,0,0,0,0,0,0,0,4.741494765615008,0,0,0,46.44,59.62,3,1,0,0,10,5,1,760.5,0,0,0 +6425,7861,14299,14298,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,4,8.532543074487702,8.464146718064976,7.094710530514432,1,0,-9,34,0,5,-88.36362801394435,0,0,0,57,1,4,1,3,3,2019,1,2,5,0,37,45,15,1,0,1,0,16.59156260702217,16.59156260702217,0,0,0,0,0,0,0,0,0,0,4.451336534442993,7.46123492956547,0,0,48.87,58.55,7,1,0,0,10,5,1,760.5,0,0,0 +6426,7862,14300,-9,-9,-9,1,1,0,40,2,0,1,0,1,-9,2,1,0,2,8.641311108054369,8.552631975750469,4.836887193004757,4,0,0,0,-9,0,-998.0806097980924,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,35,44,15,1,7,-9,0,18.73405375675907,18.73405375675907,0,0,0,0,0,0,0,1,1,0,5.214053027477289,0,0,0,26.45,55.98,3,1,0,0,12,4,0,485,0,0,0 +6426,7862,14301,-9,14300,-9,2,1,1,17,2,0,1,1,2,0,7,2,0,4,0,4.886823227144293,4.962730634824021,4,0,0,0,-9,0,-914.5939657263865,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.241286800540863,0,0,0,41.45,60.44,6,1,0,0,12,4,0,485,0,0,0 +6427,7863,14302,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,2,8.027359602014821,8.217701277469034,0,3,0,0,0,-9,0,-899.3835606003404,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,5,52,46,15,1,5,-9,0,8.424237573610641,8.424237573610641,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.82,34.58,2,2,0,0,8,4,0,222,0,0,0 +6427,7864,14303,-9,14302,-9,2,1,0,22,2,0,0,0,2,1,2,1,0,2,6.407345341031302,6.527995355693501,0,3,0,0,0,-9,0,-1179.112937092494,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,40,0,15,1,1,-9,1,2.1399475402623,2.1399475402623,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.36,41.89,3,2,0,0,8,2,0,207,0,0,0 +6428,7865,14304,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,6,0,2,0,0,0,0,-9,-9,-9,-9,-9,2,2019,4,2,12,0,0,21,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.760031764434211,0,0,0,50.08,55.33,5,1,0,0,8,1,1,655,0,0,0 +6428,7866,14305,-9,-9,-9,2,1,1,63,2,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-2,0,-9,0,0,-9,-9,-9,-9,-9,-9,2019,4,1,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,5,0,0,8,1,1,191,0,0,0 +6429,7867,14306,-9,14307,14309,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.0362962306926,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1004.5,0,0,0 +6429,7867,14307,14309,-9,-9,2,1,0,53,1,0,2,0,3,-9,2,1,0,4,8.669491015949422,8.740294095999579,0,2,0,-9,15,0,-10,69.10305010308521,0,0,0,63,1,4,3,2,2,2019,2,1,10,0,28,30,15,1,0,3,0,25.0069730629911,25.0069730629911,0,0,0,0,0,0,0,1,1,0,7.091523955147995,0,0,0,49.41,58.28,6,1,0,0,7,4,1,1004.5,0,0,0 +6429,7867,14308,-9,14307,14309,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.427478418401,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1004.5,0,0,0 +6429,7867,14309,14307,-9,-9,1,1,1,63,1,0,2,0,1,-9,6,3,0,4,4.937340599786226,7.820876201147034,7.522524116128841,2,0,-9,15,0,10,-60.09250609069196,0,0,0,53,3,4,1,3,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.752698501301287,7.148550321069751,0,0,35.97,61.83,5,1,0,0,7,4,1,1004.5,0,0,0 +6430,7868,14310,14311,-9,-9,1,1,1,45,1,0,3,0,2,-9,2,1,0,3,8.34674029281434,8.039986951398358,0,2,0,-9,5,0,4,-23.81585440481158,0,0,0,41,2,5,1,-9,-9,2019,1,2,17,5,41,35,15,1,5,1,0,13.97869655191867,13.97869655191867,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.99,48.84,5,1,0,0,11,3,1,644.4,0,0,0 +6430,7868,14311,14310,-9,-9,2,1,0,41,1,0,3,0,2,-9,2,1,0,5,7.84675315344485,7.852081253737341,0,2,0,-9,5,0,-4,111.0847906906139,0,0,1,45,2,3,1,-9,-9,2019,1,1,7,0,37,50,15,1,0,1,0,9.168200574985253,9.168200574985253,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,11,3,1,644.4,0,0,0 +6430,7868,14312,-9,14311,14310,3,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.2499698210248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,644.4,0,0,0 +6430,7868,14313,-9,14311,14310,5,1,0,17,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1089.761039537671,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,51,7,1,0,0,11,3,1,644.4,0,0,0 +6430,7868,14314,-9,-9,14310,4,1,0,17,2,0,3,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.620251246272,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,11,3,1,644.4,0,0,0 +6430,7869,14315,-9,14311,14310,6,1,0,22,2,0,3,0,2,-9,2,1,0,5,7.528774047076894,7.530311916173968,0,3,0,0,0,-9,0,-828.4206565857639,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,32,37,15,1,0,-9,1,5.028973929837523,5.028973929837523,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.83,46,6,1,0,1,11,3,1,486,0,0,0 +6431,7870,14316,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-872.4227943929307,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,5,0,0,8,1,0,372,0,0,0 +6432,7871,14317,-9,14318,14320,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-745.6385635260744,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,646.25,0,0,0 +6432,7871,14318,14320,-9,-9,2,1,0,32,1,1,2,0,1,-9,2,1,0,4,7.720182142275332,7.66104217025585,0,2,0,-9,10,0,-1,-84.2724142279163,0,0,1,33,1,3,1,2,2,2019,1,1,9,0,29,29,15,1,0,1,0,8.550075980437478,8.550075980437478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,56.46,6,1,0,0,13,4,1,646.25,0,0,0 +6432,7871,14319,-9,14318,14320,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.151193023212,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,646.25,0,0,0 +6432,7871,14320,14318,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,3,8.892612209191235,8.624464252220696,0,2,0,-9,10,0,1,-65.89568711216137,0,0,0,32,1,4,1,2,2,2019,1,2,19,7,37,37,15,1,7,1,0,18.04512267599074,18.04512267599074,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.7,54.28,4,1,0,0,13,4,1,646.25,0,0,0 +6433,7872,14321,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,1,1,0,3,7.490017615477301,7.400008840685059,0,3,0,0,0,-9,0,-1101.463652560308,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,72,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.456925716412375,0,6.248801659707748,3,58.32,50.22,6,1,0,0,5,3,1,2200,0,0,0 +6434,7873,14322,14323,-9,-9,2,1,0,33,1,1,3,0,3,-9,1,1,0,3,0,0,0,2,0,-9,2,0,-1,49.62377605587363,0,0,1,34,3,1,1,3,3,2019,1,1,16,4,16,0,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,4,1,0,0,13,3,1,909,0,0,0 +6434,7873,14323,14322,-9,-9,1,1,1,34,1,1,3,0,3,-9,2,1,0,1,8.431560321268345,8.429688701283538,0,2,0,-9,2,0,1,24.18192886556509,0,0,0,33,3,3,1,-9,-9,2019,1,2,19,0,0,60,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.81,43.97,1,1,0,1,13,3,1,909,0,0,0 +6434,7873,14324,-9,14322,14323,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.143900871105,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,13,3,1,909,0,0,0 +6434,7873,14325,-9,14322,14323,4,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.5023478560134,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,13,3,1,909,0,0,0 +6435,7874,14326,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,3,9.687600289334213,9.871731727188653,0,3,0,0,0,-9,0,-973.0510676394813,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,44,41,15,1,9,-9,0,45.59875461811183,45.59875461811183,0,0,0,0,0,0,0,1,1,0,3.78325668044835,0,0,3,31.96,55.29,3,1,0,0,12,5,1,2399,0,0,0 +6436,7875,14327,14328,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,4,7.322877667986538,7.624901390330756,6.699569055555632,1,0,-9,38,0,5,55.89788540256159,0,0,0,63,1,4,3,3,3,2019,2,1,11,0,20,30,15,1,0,3,0,10.35392693750405,10.35392693750405,0,0,0,0,0,0,0,1,1,0,6.045721967024269,0,0,0,47.77,56.48,5,1,0,0,10,3,1,525,0,0,0 +6436,7875,14328,14327,-9,-9,1,1,0,63,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,38,0,-5,17.120485515227,0,0,0,68,2,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,53.68,5,1,0,0,10,3,1,525,0,0,0 +6436,7875,14329,-9,14328,14327,3,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-913.7036897563406,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,10,3,1,525,0,0,0 +6437,7876,14330,14331,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.857517025968622,8.92044613472612,0,1,0,-9,10,0,1,121.4673700660188,0,0,0,52,2,4,1,3,3,2019,1,1,28,12,40,42,15,1,12,1,0,17.93524411222707,17.93524411222707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.11,44.65,4,1,0,0,11,5,1,412,0,0,0 +6437,7876,14331,14330,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.419789159084138,8.402442423611113,0,1,0,-9,10,0,-1,-71.93577215277756,0,0,0,53,2,3,1,3,-9,2019,1,2,7,0,40,40,15,1,0,1,0,14.62010613266836,14.62010613266836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,11,5,1,412,0,0,0 +6438,7877,14332,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,2,9.259780047704215,8.80118208229244,4.030193887048209,3,0,0,0,-9,0,-987.3617947889512,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,40,40,15,1,4,-9,0,25.40001987092642,25.40001987092642,0,0,0,0,0,0,0,0,0,0,4.48638512529312,0,1.01322605297719,3,44.48,52.88,4,1,0,0,4,5,1,149,0,0,0 +6439,7878,14333,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,7.318251903953851,7.732533738024402,6.392139039457331,3,0,0,0,-9,0,-1016.413462743738,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,30,15,1,0,-9,0,7.004193328103809,7.004193328103809,0,0,0,0,0,0,0,0,0,0,5.388810171703904,6.913272696240732,0,0,54.79,55.86,6,1,0,0,13,3,1,385,0,0,0 +6440,7879,14334,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,7.328002013117095,7.077973712036346,3,0,0,0,-9,0,-970.4205649811878,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,3.072307162554856,0,0,1,1,0,0,7.212009011070094,0,0,47.27,53.93,6,1,0,0,4,2,0,380,0,0,0 +6441,7880,14335,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,3,7.900818627377203,7.755066710284566,0,3,0,0,0,-9,0,-1040.328203843507,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,1,0,42,30,15,1,0,-9,0,7.505520802804475,7.505520802804475,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.56,50.26,5,1,0,0,10,3,1,2499,0,0,0 +6442,7881,14336,-9,-9,-9,1,1,1,43,2,0,1,0,2,-9,2,1,0,3,8.408908538260073,8.385981716532378,3.721410054798578,4,0,0,0,-9,0,-1034.807416910288,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,45,15,1,0,-9,0,10.71661076520275,10.71661076520275,0,0,0,0,0,0,0,1,1,0,4.026449591637534,0,0,0,57.33,53.46,6,1,0,0,11,3,1,411,0,0,0 +6442,7881,14337,-9,-9,14336,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.176818296614,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,3,1,411,0,0,0 +6443,7882,14338,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,6.244105296540322,6.440510253387236,3,0,0,0,-9,0,-1028.262910037561,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.931970982946313,6.4807312817309,0,0,53.63,51.24,7,1,0,0,9,2,1,1387,0,0,0 +6444,7883,14339,14341,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,3,7.54523038361519,7.247303002674558,0,2,0,-9,7,0,-6,-64.98530995948772,0,0,0,51,2,3,1,2,1,2019,1,1,18,6,25,37,15,1,6,1,0,7.891124033353895,7.891124033353895,0,0,0,0,0,0,0,1,1,0,.7283126535886661,0,0,0,34.5,53.14,4,1,0,0,10,5,1,291,0,0,0 +6444,7883,14340,-9,14339,14341,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.759795812127,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,291,0,0,0 +6444,7883,14341,14339,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,9.261657211975173,9.301732067371928,0,2,0,-9,7,0,6,-100.7814835114381,0,0,0,45,2,3,1,2,2,2019,1,2,14,3,60,63,15,1,3,1,0,15.00636701560487,15.00636701560487,0,0,0,0,0,0,0,1,1,0,1.776498224726304,0,0,0,34.17,57.25,3,1,0,0,10,5,1,291,0,0,0 +6444,7884,14342,-9,14339,14341,3,1,0,19,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1040.698646059855,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,12,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.179867114969888,0,0,0,54.2,57.49,6,1,0,0,10,1,1,369,0,0,0 +6445,7885,14343,14344,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,0,0,0,0,0,72,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.144898606350953,0,0,0,52,47,5,1,0,0,2,1,1,1753,0,0,0 +6445,7885,14344,14343,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,54,0,0,0,0,0,0,72,2,3,3,3,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.133919769490016,0,0,0,51,49.37,5,1,0,0,2,1,1,1753,0,0,0 +6446,7886,14345,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-937.8027681907423,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,13.43057451637078,0,0,0,0,142.820284333387,1,1,0,0,0,0,0,48.68,25.96,6,1,0,0,4,1,0,150,0,0,0 +6447,7887,14346,14347,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-7,0,0,0,0,70,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.64695950556375,1,57.33,53.46,6,1,0,0,12,1,1,295,0,0,0 +6447,7887,14347,14346,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,7,0,0,0,0,63,3,3,3,2,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,1,0,15.87213560896149,0,0,0,0,1,1,0,0,0,0,0,53.59,22.98,5,1,0,0,12,1,1,295,0,0,0 +6448,7888,14348,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,3,3,0,4,8.478596788753151,8.493801574909794,0,3,0,0,0,-9,0,-1007.600767596282,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,54,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.936921663267683,0,0,0,55.58,52.99,6,1,1,0,12,4,0,232,0,0,0 +6449,7889,14349,14350,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,6,0,4,54.99430883177283,0,0,0,68,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.129286336928701,0,0,0,59.47,44.13,7,1,0,0,8,1,1,890,0,0,0 +6449,7889,14350,14349,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,4.195875188735092,4.080513059556133,1,0,-9,6,0,-4,-40.90149602342271,0,0,0,72,1,4,3,1,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.645325566012654,3.635061034847158,0,0,57.16,56.15,7,1,0,0,8,1,1,890,0,0,0 +6450,7890,14351,-9,-9,-9,1,1,1,79,2,0,0,0,2,-9,1,1,0,3,7.264270283205922,7.369857129595671,0,1,0,-9,8,0,32,82.80437602779926,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,6,0,10,8,15,1,0,-9,0,25.4584200857571,25.4584200857571,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,7,1,0,0,5,5,1,1526,0,0,0 +6450,7891,14352,-9,-9,-9,2,1,1,47,2,0,0,0,3,-9,1,1,0,4,9.504188404162653,9.630757233906028,0,1,0,-9,8,0,-32,-17.4314303705317,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,9,0,30,40,15,1,0,-9,0,62.49173110755337,62.49173110755337,0,0,0,0,0,0,0,1,1,0,1.636766375386196,0,0,0,53.81,53.56,6,1,0,0,5,5,1,2178,0,0,0 +6451,7892,14353,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,2,1,0,5,7.484364369994397,7.201864803440672,0,3,0,0,0,-9,0,-1216.021351739045,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,50,0,15,1,0,-9,0,4.057376824620575,4.057376824620575,0,0,0,0,0,0,0,1,1,0,1.766980391345359,0,112.7651985706923,3,57.06,57.76,6,1,0,0,5,3,0,641,0,0,0 +6451,7893,14354,-9,14353,-9,2,1,0,27,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-928.9262095543759,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,5,1,0,1691,0,0,0 +6452,7894,14355,-9,-9,-9,2,1,1,49,3,0,1,0,2,-9,1,1,0,5,6.728231640005119,6.1613407999912,0,4,0,-9,0,-9,0,-1030.962538751427,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,60,0,15,1,0,-9,0,.9780344955985063,.9780344955985063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,6,1,0,0,4,2,1,519,0,0,0 +6452,7894,14356,-9,-9,14355,1,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1054.273029152469,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,0,0,4,2,1,519,0,0,0 +6453,7895,14357,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,1,1,0,3,8.675766009002665,8.138352575875448,0,3,0,0,0,-9,0,-1044.070818780482,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,48,50,15,1,2,-9,0,15.82785603478753,15.82785603478753,0,0,0,0,0,0,0,0,0,0,7.974152167609149,0,0,0,48.34,52.06,5,1,0,0,8,5,0,614,0,0,0 +6454,7896,14358,14359,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,4,7.808023662894367,7.981530963246293,5.992898869247488,1,0,-9,43,0,7,119.2756276115446,0,0,0,58,2,3,1,3,3,2019,1,2,6,0,37,42,15,1,0,1,0,7.71803487598961,7.71803487598961,0,0,0,0,0,0,0,0,0,0,4.162861891753765,6.053895610279141,12.08777636636711,3,57.16,56.15,7,1,0,0,6,4,1,1764,0,0,0 +6454,7896,14359,14358,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.332253766158671,8.117927069274426,6.244010504153507,1,0,-9,43,0,-7,-4.129655821105824,0,0,0,65,3,4,1,3,2,2019,1,1,15,3,22,31,15,1,3,1,0,7.657705654078352,7.657705654078352,0,0,0,0,0,0,0,0,0,0,6.526518995887722,6.607158138824336,1.515820046859377,3,41.45,58.1,5,1,0,0,6,4,1,1764,0,0,0 +6455,7897,14360,14361,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,5,7.349536567169789,7.461407545739229,0,1,0,-9,34,-9,-1,-10.29881365710648,-9,0,0,61,2,3,1,2,2,2019,1,2,9,0,30,0,15,1,0,1,0,8.355944800708095,8.355944800708095,0,0,0,0,0,0,0,0,0,0,7.556113420663641,0,0,3,57.06,57.76,6,1,0,0,7,4,1,909,0,0,0 +6455,7897,14361,14360,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.090748559556818,7.809972594945595,5.119917628154706,1,0,-9,1,-9,1,24.58935095785443,-9,0,0,60,1,5,1,2,2,2019,1,1,8,0,50,0,15,1,0,1,0,6.780684974251499,6.780684974251499,0,0,0,0,0,0,0,0,0,0,5.575714748435388,5.77330409389387,3.449742905879075,3,54.37,54.8,6,1,0,0,7,4,1,909,0,0,0 +6456,7898,14362,14363,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,53,0,1,-96.87464611070439,0,0,0,72,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.255406718745418,0,0,0,57.33,53.46,7,1,0,0,4,4,1,727.5,0,0,0 +6456,7898,14363,14362,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,8.492661307612108,8.429070779083775,1,0,-9,53,0,-1,75.78354004880686,0,0,0,73,2,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.70254786380866,8.896032264924077,0,0,52,54.51,6,1,0,0,4,4,1,727.5,0,0,0 +6457,7899,14364,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,2,8.563723222901853,8.933461408028172,0,1,0,-9,2,0,-6,127.9526208212841,0,0,1,-9,-9,-9,-9,2,2,2019,1,2,7,0,48,40,15,1,0,-9,0,16.04539038238647,16.04539038238647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.25,32,6,1,0,0,9,5,1,574,0,0,0 +6457,7900,14365,-9,-9,-9,2,1,0,45,2,0,0,0,1,-9,2,1,0,2,8.580051428389154,8.403691759709975,0,1,0,-9,2,0,6,77.06483480372619,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,6,0,45,45,15,1,0,-9,0,13.89491650083308,13.89491650083308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.35,46.02,5,1,0,0,9,5,1,732,0,0,0 +6458,7901,14366,14367,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,6.909121958174058,7.048046683576811,1,0,-9,53,0,6,49.67087790255366,0,0,0,71,2,4,3,3,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.967978442605566,6.908711807031207,0,0,54,46,6,1,0,0,11,2,1,813.5,0,0,0 +6458,7901,14367,14366,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,6.304601284330374,6.376543733293248,1,0,-9,53,0,-6,17.54934847238906,0,0,0,77,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,1.560457718807649,0,0,0,0,1,1,0,3.707601378617027,6.289926616256714,0,0,57.16,56.15,7,1,0,0,11,2,1,813.5,0,0,0 +6459,7902,14368,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,7.622404636873281,7.643152995464278,0,3,0,0,0,-9,0,-929.3371217031313,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,20,19,15,1,0,-9,0,16.6764658786728,16.6764658786728,0,0,0,0,0,0,0,1,1,0,7.361371236388046,0,0,0,49.95,56.68,6,1,0,0,12,3,0,488,0,0,0 +6460,7903,14369,-9,14371,-9,3,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1006.761995639059,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,1,414,0,0,0 +6460,7903,14370,-9,14371,-9,4,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1138.797489437515,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,2,1,414,0,0,0 +6460,7903,14371,-9,-9,-9,1,1,0,35,3,1,3,0,2,-9,2,1,0,4,7.673077657038559,7.889630324248013,6.193873046851025,4,0,-9,0,1,0,-991.3971589144616,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,2,21,21,15,1,2,-9,0,9.324386538752336,9.324386538752336,0,0,0,0,0,0,0,1,1,0,6.155979080220671,0,0,0,48.87,58.55,6,1,0,0,2,2,1,414,0,0,0 +6460,7903,14372,-9,14371,-9,2,1,1,11,2,1,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1015.806460091817,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,2,1,414,0,0,0 +6461,7904,14373,-9,14375,14376,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.9299446247998,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,5,1,584.75,0,0,0 +6461,7904,14374,-9,14375,14376,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.3035747812418,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,5,1,584.75,0,0,0 +6461,7904,14375,14376,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,5,8.474447406632329,8.66465695756586,0,2,0,-9,6,0,0,15.25144998017903,0,0,1,42,1,4,1,1,1,2019,1,2,7,0,35,35,15,1,0,1,0,19.3843810948564,19.3843810948564,0,0,0,0,0,0,0,0,0,0,2.469362627745128,0,0,0,57.06,57.76,6,1,0,0,12,5,1,584.75,0,0,0 +6461,7904,14376,14375,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,9.202072822946196,9.077431586395374,0,2,0,-9,6,0,0,108.1527750368236,0,0,0,42,1,5,1,2,2,2019,1,1,6,0,50,52,15,1,0,1,0,19.42695716745008,19.42695716745008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,584.75,0,0,0 +6462,7905,14377,14378,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,4,0,6.577146112003718,6.961706227281886,1,0,-9,9,0,-3,-89.0496305929567,0,0,0,59,1,5,1,2,2,2019,3,1,15,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.652189947679135,6.607892018417547,0,0,44.19,56.73,6,1,0,0,12,5,1,1005.5,0,0,0 +6462,7905,14378,14377,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,5,9.463026754897701,9.471000890451972,0,1,0,-9,9,0,3,66.91157617441986,0,0,0,56,2,4,3,3,3,2019,2,2,6,0,48,38,15,1,0,4,0,30.40757479302575,30.40757479302575,0,0,0,0,0,0,0,0,0,0,5.530654644062513,0,0,0,59.43,58.05,7,1,0,0,12,5,1,1005.5,0,0,0 +6463,7906,14379,-9,-9,-9,1,1,1,22,2,0,0,0,1,-9,2,1,0,4,7.203559339066798,7.179447445787845,0,3,0,-9,0,-9,0,-1024.724624726154,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,35,0,15,1,0,-9,0,4.17021791178241,4.17021791178241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,4,0,0,8,2,0,280,0,0,0 +6464,7907,14380,-9,14382,14383,5,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.501415392747,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,1,0,540.2,0,0,0 +6464,7907,14381,-9,14382,14383,6,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.6620054712977,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,0,540.2,0,0,0 +6464,7907,14382,14383,-9,-9,2,1,0,38,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-8,0,0,0,1,46,3,4,3,3,3,2019,4,1,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,1,0,540.2,0,0,0 +6464,7907,14383,14382,-9,-9,1,1,1,46,1,0,4,0,3,-9,8,3,1,4,0,0,0,2,0,-9,21,0,8,0,0,0,0,38,3,4,3,3,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,1,0,540.2,0,0,0 +6464,7907,14384,-9,14382,14383,4,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.448766958273,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,0,540.2,0,0,0 +6464,7908,14385,-9,14382,14383,3,1,0,18,2,0,4,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-887.0343243406353,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,8,1,0,529,0,0,0 +6465,7909,14386,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,2,8.615375717441783,8.743287065513417,0,3,0,0,0,-9,0,-1050.14180021278,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,37,45,15,1,7,-9,0,21.02076243368307,21.02076243368307,0,0,0,0,0,0,0,0,0,0,0,0,7.156683407523468,3,32.17,33.98,5,1,0,1,6,5,1,215,0,0,0 +6465,7910,14387,-9,14386,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,4,8.626373528316902,8.5309186682919,0,3,0,0,0,-9,0,-911.6781266231856,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,49,43,15,1,0,-9,1,13.53943202984288,13.53943202984288,0,0,0,0,0,0,0,0,0,0,4.680598949126171,0,2.838742490160055,3,51.83,57.2,5,1,0,0,6,5,1,1071,0,0,0 +6465,7911,14388,-9,14386,-9,3,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.044516980376104,8.19997693607392,0,3,0,0,0,-9,0,-869.6215987130147,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,51,51,15,1,0,-9,1,10.11925807603526,10.11925807603526,0,0,0,0,0,0,0,0,0,0,.3174285460924918,0,0,3,59.43,58.05,6,1,0,0,6,4,1,457,0,0,0 +6466,7912,14389,14390,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.581495761389276,9.397955477152408,7.905144871843962,1,0,-9,6,0,2,17.23953291874462,-9,0,0,53,2,4,1,-9,-9,2019,1,1,9,0,37,0,15,1,1,1,0,27.98161182822966,27.98161182822966,0,0,0,0,0,0,0,0,0,0,3.147183197624976,8.167757192059327,0,0,54,53,6,1,0,0,9,5,1,1002,0,0,0 +6466,7912,14390,14389,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.52578749899298,8.574579752731537,0,1,0,-9,33,0,-2,-65.62276544059429,0,0,0,55,2,4,1,2,2,2019,1,2,15,3,30,30,15,1,3,1,0,17.43614114710537,17.43614114710537,0,0,0,0,0,0,0,0,0,0,.5261507914343106,0,0,0,34.48,61.03,5,1,0,0,9,5,1,1002,0,0,0 +6467,7913,14391,14393,-9,-9,1,1,1,28,1,0,2,0,2,-9,1,1,0,5,7.570452193530696,7.848983192674309,0,2,0,-9,6,0,-2,-50.35321705595824,0,1,0,30,2,4,1,-9,-9,2019,1,2,8,0,50,45,15,1,0,1,0,3.935359810538408,3.935359810538408,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,1,409,0,0,0 +6467,7913,14392,-9,14393,14391,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.181714397052,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,1,409,0,0,0 +6467,7913,14393,14391,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,4,8.12840900247773,7.727608834880906,0,2,0,-9,6,0,2,-47.56080150087,0,0,1,28,2,5,1,-9,-9,2019,1,1,7,0,30,32,15,1,0,1,0,9.58861066974484,9.58861066974484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,5,0,0,13,3,1,409,0,0,0 +6468,7914,14394,14395,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,2,8.812872890580728,9.266022334616181,7.63541502973905,1,0,-9,6,0,0,-9.09643342339826,0,0,0,62,1,3,3,2,2,2019,4,2,26,12,8,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.5084850964199278,7.938959397216991,0,0,30.46,50.03,3,1,0,0,7,5,1,641,0,0,0 +6468,7914,14395,14394,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,8.074268827082333,8.306146738002445,1,0,-9,6,0,0,-177.0684974739868,0,0,0,62,1,2,3,2,2,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.402528835942768,0,0,49.72,50.05,6,1,0,0,7,5,1,641,0,0,0 +6469,7915,14396,14397,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,8.32546988275757,8.272426712761856,1,0,-9,45,0,0,-93.18198775692755,0,0,0,66,1,2,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.918711458501998,8.183952706208661,0,0,54.2,57.49,6,1,0,0,10,4,1,1301,0,0,0 +6469,7915,14397,14396,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,2,0,7.219924156139254,7.087291312361383,1,0,-9,43,0,0,117.6241075510558,0,0,0,66,1,4,3,3,3,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.483526907400719,7.037360448367827,0,3,53.34,31.48,7,1,0,0,10,4,1,1301,0,0,0 +6470,7916,14398,14399,-9,-9,2,1,1,37,1,0,0,0,2,-9,1,1,0,3,8.840844274709781,8.441144824076991,0,1,0,-9,7,0,-11,52.14149068999833,0,0,0,48,2,5,1,-9,-9,2019,1,1,11,1,60,60,15,1,1,1,0,12.96274204146602,12.96274204146602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,5,1,0,0,5,5,0,516,0,0,0 +6470,7916,14399,14398,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,5,8.214071875552657,7.932623032284019,0,1,0,-9,7,0,11,66.69924932294029,0,0,0,37,2,3,1,2,3,2019,1,2,10,1,43,43,15,1,1,1,0,11.07709832076347,11.07709832076347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.26,55.85,6,1,0,0,5,5,0,516,0,0,0 +6471,7917,14400,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,2,7.165368733689888,7.502817437423218,7.193615462035414,3,0,0,0,-9,0,-1042.394279903273,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,32,24,15,1,0,-9,0,5.873489049837853,5.873489049837853,0,0,0,0,0,0,0,0,0,0,1.306637013025592,6.91698832539991,0,0,46.05,33,6,1,0,0,5,3,0,111,0,0,0 +6472,7918,14401,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1004.913851067561,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.703204561175394,0,0,0,48,52,5,3,0,0,6,1,0,1025,0,0,0 +6473,7919,14402,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,5,8.591892327267805,8.890821699519471,0,1,0,1,1,-9,3,-47.87282942434388,0,0,0,-9,-9,-9,-9,1,2,2019,-9,2,16,5,39,35,15,1,5,-9,0,19.29447553978185,19.29447553978185,0,0,0,0,0,0,0,1,1,0,6.687801372972323,0,0,0,43.04,62.95,6,1,0,0,10,4,0,1549,0,0,0 +6474,7920,14403,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,5.202787667071532,5.205405776055562,3,0,0,0,-9,0,-860.1489128179368,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.304882790339263,0,0,33.95,22.68,5,1,0,0,13,2,0,260,0,0,0 +6475,7921,14404,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,5,0,6.556450989595826,6.587944122416909,3,0,0,0,-9,0,-1095.739196424621,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.762194891176157,6.509275464137938,0,0,57.06,57.76,6,1,0,0,5,2,1,1354,0,0,0 +6476,7922,14405,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,3,0,8.025831713935556,7.722002707329362,3,0,0,0,-9,0,-1024.02096082319,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.455193886167362,8.036485997405592,0,0,57.92,51.82,7,1,0,0,2,3,1,1860,0,0,0 +6477,7923,14406,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1012.816822199824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,3.084281796990407,0,1.855224825823199,8.470653936248874,11.40660943419682,98.43867725367178,1,1,0,0,0,0,0,38.16,44.66,6,1,0,0,13,1,1,195,0,0,0 +6478,7924,14407,14408,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,6.989912920531061,6.989451445865004,1,0,-9,51,0,6,22.90540299826915,0,0,0,69,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,4.672320817430467,0,0,0,0,1,1,0,5.28714945790747,6.791062509261054,0,0,60.12,54.8,7,1,0,0,7,3,1,1227,0,0,0 +6478,7924,14408,14407,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,7.24421001712993,6.633654327542367,1,0,-9,51,0,-6,121.7080454016602,0,0,0,75,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.269106721382563,7.035654595721271,0,0,60.12,54.8,6,1,0,0,7,3,1,1227,0,0,0 +6479,7925,14409,-9,-9,-9,1,1,0,66,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1015.316356461281,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,8,2,0,1091,0,0,0 +6480,7926,14410,14411,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,6.113071277043535,6.161335608797883,1,0,-9,58,0,-2,-109.7052771931892,0,0,0,79,1,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.865170313094251,6.259996109096535,0,0,54.94,53.18,6,1,0,0,9,3,1,608,0,0,0 +6480,7926,14411,14410,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,1,0,7.781706387151657,7.475583999337873,1,0,-9,58,0,2,17.10551853791727,0,0,0,77,3,3,3,-9,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.761928910601951,7.663856029402509,0,0,45.06,28.82,2,1,0,0,9,3,1,608,0,0,0 +6481,7927,14412,-9,14415,14414,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.9625569310941,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,5,1,312.25,0,0,0 +6481,7927,14413,-9,14415,14414,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.589322005447,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,5,1,312.25,0,0,0 +6481,7927,14414,14415,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.096357236937692,8.709271767298658,0,2,0,-9,6,0,0,63.74129138985245,0,0,0,46,1,4,1,1,1,2019,1,1,9,0,40,37,15,1,1,1,0,25.49163279714663,25.49163279714663,0,0,0,0,0,0,0,1,1,0,5.994643875198892,0,0,0,52,55,6,1,0,0,8,5,1,312.25,0,0,0 +6481,7927,14415,14414,-9,-9,1,1,0,46,1,0,2,0,1,-9,1,1,0,4,9.745374867243944,9.601300525661694,0,2,0,-9,6,0,0,18.38917309698618,0,0,0,46,1,4,1,2,2,2019,1,2,14,4,20,25,15,1,4,1,0,98.26013664244479,98.26013664244479,0,0,0,0,0,0,0,1,1,0,6.825850565977788,0,0,0,48.87,58.55,5,1,0,0,8,5,1,312.25,0,0,0 +6482,7928,14416,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,3,8.666943556723735,8.843114453554962,5.468942909634386,4,0,0,0,-9,0,-993.1951405320718,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,50,55,15,1,1,-9,0,14.87285148150242,14.87285148150242,0,0,0,0,0,0,0,1,1,0,5.724510383083046,0,0,0,48.05,53.56,3,1,0,0,13,5,1,1526,0,0,0 +6483,7929,14417,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,7.034381728166677,7.145015031342072,3,0,0,0,-9,0,-864.8784676470755,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.812146339665027,7.049301931313964,0,0,38.74,61.79,6,1,0,0,13,2,1,754,0,0,0 +6484,7930,14418,14419,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,5.547819168898123,5.926327190517786,1,0,-9,6,0,6,31.95609406427594,0,0,0,70,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.582113215215123,5.833364557929271,0,0,54,46,6,1,0,0,13,2,1,257,0,0,0 +6484,7930,14419,14418,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.29220058723025,7.228816981111795,1,0,-9,6,0,-6,104.8926272169978,0,0,0,76,2,3,3,3,3,2019,4,1,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.304955017797599,0,0,37.73,54.15,7,1,0,0,13,2,1,257,0,0,0 +6485,7931,14420,14421,-9,-9,1,1,1,63,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,42,0,2,77.7678345168889,0,0,0,61,2,4,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.68,55.46,3,3,0,0,6,2,1,441.5,0,0,0 +6485,7931,14421,14420,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,6.970750860344643,7.211525585782586,0,1,0,-9,42,0,-2,59.02783137127578,0,0,0,63,2,3,3,-9,-9,2019,2,1,6,0,20,23,15,1,0,3,0,5.917404891951601,5.917404891951601,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,3,0,0,6,2,1,441.5,0,0,0 +6486,7932,14422,14423,-9,-9,1,1,1,61,1,0,2,0,2,-9,4,3,0,2,0,7.444697402980123,7.413208356214863,2,0,-9,9,0,19,86.76426279257731,0,0,0,42,2,3,3,2,2,2019,4,2,22,10,0,0,15,4,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.640811988952304,34.31752924228189,3,29.34,39.16,5,1,0,0,13,2,0,966.5,0,0,0 +6486,7932,14423,14422,-9,-9,2,1,0,42,1,0,2,0,2,-9,8,3,1,3,0,0,0,2,0,-9,9,0,-19,-64.8038398805371,0,0,1,61,2,2,3,-9,-9,2019,4,1,19,7,0,0,15,3,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.82711297787348,3,35.2,48.71,6,1,0,0,13,2,0,966.5,0,0,0 +6486,7932,14424,-9,14423,14422,6,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-994.8547803920704,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,13,2,0,966.5,0,0,0 +6486,7932,14425,-9,14423,-9,7,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1016.568168278656,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,13,2,0,966.5,0,0,0 +6486,7933,14426,-9,14423,-9,3,1,1,23,2,0,2,0,2,-9,2,1,0,4,7.181307344629515,6.955041840705188,0,3,0,0,0,-9,0,-1144.606132667594,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,40,37,15,1,1,-9,1,3.779647965162612,3.779647965162612,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,2,0,1891,0,0,0 +6486,7934,14427,-9,14423,-9,4,1,1,21,2,0,2,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-930.9183408287305,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.45,51.41,3,1,0,0,13,1,0,231,0,0,0 +6486,7935,14428,-9,14423,14422,5,1,1,19,2,0,2,0,2,-9,2,1,0,3,7.892090477070933,7.917632378659722,0,3,0,0,0,-9,0,-1066.473693593567,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,37,15,1,0,-9,1,7.13278751721717,7.13278751721717,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.37,46.02,4,1,0,0,13,4,0,482,0,0,0 +6487,7936,14429,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,5.673953290524374,5.951459908425655,3,0,0,0,-9,0,-864.1869053315307,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.434167893903859,0,0,48.15,47.3,6,1,0,0,7,2,1,191,0,0,0 +6488,7937,14430,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,1,7.447307828419405,7.252115450663641,0,3,0,0,0,-9,0,-1116.981324040879,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,30,10,0,37,15,1,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.07,31.66,3,3,0,1,6,3,1,388,0,0,0 +6489,7938,14431,14433,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,5,8.314512104022016,8.276792351822451,0,2,0,-9,12,0,-7,-142.3704314758703,0,0,1,38,2,5,1,2,2,2019,1,2,8,0,37,35,15,1,0,1,0,13.4589674543883,13.4589674543883,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,656.25,0,0,0 +6489,7938,14432,-9,14431,14433,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.836487848219,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,5,1,656.25,0,0,0 +6489,7938,14433,14431,-9,-9,2,1,1,38,1,1,2,0,2,-9,2,1,0,5,8.594836342279832,8.692651056073224,0,2,0,-9,7,0,7,70.55521310648423,0,0,0,31,1,5,1,1,2,2019,1,1,6,0,40,36,15,1,0,1,0,16.05140509136207,16.05140509136207,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.58,48.86,6,1,0,0,12,5,1,656.25,0,0,0 +6489,7938,14434,-9,14431,14433,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.112744957647,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,656.25,0,0,0 +6490,7939,14435,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,3,7.957489755142796,8.160927207341365,6.373831991899086,3,0,0,0,-9,0,-1058.695621912443,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,37,40,15,1,2,-9,0,8.075869444465825,8.075869444465825,0,0,0,0,0,0,0,1,0,1,4.711508350186383,6.253751719069936,0,3,51.02,52.22,5,1,0,1,12,4,1,465,0,0,0 +6490,7940,14436,-9,14435,-9,2,1,1,23,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1061.520597007922,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.83,57.2,5,1,1,0,12,1,1,848,0,0,0 +6491,7941,14437,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,7.227584127628902,7.206598504614525,3,0,0,0,-9,0,-1090.016616023299,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.712848159729242,0,0,0,46.48,53.76,6,1,0,0,9,3,1,997,0,0,0 +6492,7942,14438,-9,14440,-9,2,1,1,18,2,0,1,0,3,1,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1060.150358266818,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,30,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,22.34,38.85,1,1,1,1,1,1,0,749,0,0,0 +6492,7943,14439,14440,-9,-9,3,1,1,48,1,0,1,0,1,-9,6,3,0,1,0,0,0,2,0,-9,2,0,5,0,0,0,0,43,3,1,3,-9,-9,2019,4,1,34,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.31485590426381,2,23.86,20.5,1,1,0,1,1,1,0,1906,0,0,0 +6492,7943,14440,14439,-9,-9,1,1,0,43,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,2,0,-5,0,0,0,1,48,1,1,3,3,-9,2019,4,3,19,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.9399086581058,3,31.9,19.36,4,1,0,1,1,1,0,1906,0,0,0 +6493,7944,14441,-9,14444,14442,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.597707780294,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,4,1,579.75,0,0,0 +6493,7944,14442,14444,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,5,8.052268127870796,8.002148500143006,5.459522465400488,2,0,-9,9,0,1,81.61185838152122,0,0,0,38,1,4,1,-9,-9,2019,1,2,7,0,37,0,15,1,0,1,0,8.777228728460219,8.777228728460219,0,0,0,0,0,0,0,1,1,0,5.981952526867106,0,0,0,43.97,60.95,6,1,0,0,1,4,1,579.75,0,0,0 +6493,7944,14443,-9,14444,14442,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.681880106488,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,579.75,0,0,0 +6493,7944,14444,14442,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.405603336696528,8.430516639088513,0,2,0,-9,9,0,-1,85.14906758623471,0,0,1,39,2,5,1,-9,-9,2019,1,1,11,2,30,30,15,1,2,1,0,17.669298044911,17.669298044911,0,0,0,0,0,0,0,1,1,0,5.798017803704606,0,0,0,48.87,58.55,6,1,0,0,1,4,1,579.75,0,0,0 +6494,7945,14445,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,4,8.442763637374584,8.407960899951258,0,3,0,0,0,-9,0,-895.9345350168649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,49,40,15,1,0,-9,0,11.344814156254,11.344814156254,0,0,0,0,0,0,0,0,0,0,7.972360329653187,0,5.745035867885152,3,47.52,57.75,7,1,0,0,5,5,1,307,0,0,0 +6494,7946,14446,-9,14445,-9,2,1,1,22,2,0,0,0,1,1,2,1,0,5,8.20848754374305,8.059309572395552,0,3,0,0,0,-9,0,-942.2601029856611,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,0,15,1,0,-9,1,8.041920585034703,8.041920585034703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,5,4,1,1063,0,0,0 +6495,7947,14447,14448,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,4,8.865186180660727,8.826688786396,0,2,0,-9,7,0,-4,115.3696820267682,0,0,1,40,1,4,1,2,2,2019,1,2,17,6,55,58,15,1,6,1,0,13.93396231649167,13.93396231649167,0,0,0,0,0,0,0,1,1,0,1.582865126690237,0,0,0,45.55,50.66,6,1,0,0,4,5,1,1474.333333333333,0,0,0 +6495,7947,14448,14447,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,4,8.542406051815473,8.339115797334115,0,2,0,-9,11,0,4,75.89466532631809,0,0,0,36,1,4,1,2,2,2019,1,1,6,1,38,39,15,1,1,1,0,12.1094233899352,12.1094233899352,0,0,0,0,0,0,0,1,1,0,2.577371268640232,0,0,0,57.32,47.78,6,1,0,0,4,5,1,1474.333333333333,0,0,0 +6495,7947,14449,-9,14447,14448,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.236008030863,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,1474.333333333333,0,0,0 +6496,7948,14450,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,1,0,-1160.916440921814,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,0,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.12,37.53,6,1,1,0,5,1,0,1641,0,0,0 +6496,7949,14451,-9,-9,-9,2,1,1,63,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-909.0481981108246,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.077015489312008,0,0,0,59.52,30.16,2,1,0,0,5,1,0,575,0,0,0 +6497,7950,14452,14453,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.327351082261902,8.16358958575473,0,1,0,-9,33,0,-1,19.61615353552423,0,0,0,58,1,5,3,2,2,2019,2,1,17,6,25,25,15,1,6,4,0,24.39555292859882,24.39555292859882,0,0,0,0,0,0,0,0,0,0,1.921143983838737,0,0,0,43.67,61.06,5,1,0,0,9,4,1,719,0,0,0 +6497,7950,14453,14452,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,33,0,1,-67.84345045009911,0,0,0,57,2,4,1,3,2,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.015260993607554,0,0,0,57.06,57.76,6,1,0,0,9,4,1,719,0,0,0 +6497,7951,14454,-9,14452,14453,3,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.749322587212149,7.528738619644882,0,3,0,0,0,-9,0,-1045.968155198589,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,1,38,0,15,1,1,-9,1,5.669397366803562,5.669397366803562,0,0,0,0,0,0,0,0,0,0,3.986892976388089,0,0,0,47.63,43.04,6,1,0,1,9,3,1,415,0,0,0 +6498,7952,14455,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,3,8.022890030896253,8.008128034331561,0,3,0,0,0,-9,0,-932.7477506839787,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,45,80,15,1,0,-9,0,7.841288763876895,7.841288763876895,0,0,0,0,0,0,0,0,0,0,7.183507835686743,0,0,0,54.37,54.8,2,1,0,0,11,4,1,336,0,0,0 +6499,7953,14456,14457,-9,-9,1,1,0,53,1,1,0,0,2,-9,97,3,0,4,7.399361306538108,7.184635501877191,0,1,0,-9,10,0,2,-125.7160263125269,0,0,0,51,2,3,1,2,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.1652244471585,3,57.16,56.15,5,1,0,0,9,5,1,1003,0,0,0 +6499,7953,14457,14456,-9,-9,2,1,1,51,1,1,0,0,2,-9,2,1,0,3,9.017276236156093,8.908395246519396,0,1,0,-9,10,0,-2,-64.1231715919285,0,0,0,53,2,4,3,2,3,2019,2,1,15,3,57,57,15,1,3,3,0,13.89533226894686,13.89533226894686,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.26,58.61,3,1,0,0,9,5,1,1003,0,0,0 +6499,7953,14458,-9,-9,14457,4,1,0,1,2,1,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-954.5979760878498,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,5,0,0,9,5,1,1003,0,0,0 +6500,7954,14459,-9,14461,14460,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.4173931819686,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,3,1,1036.2,0,0,0 +6500,7954,14460,14461,-9,-9,1,1,1,50,1,0,3,0,2,-9,1,1,0,2,6.500331161590265,6.328348590349941,0,2,0,-9,8,0,5,-39.37228504636293,0,0,0,45,1,3,1,-9,-9,2019,1,2,13,2,40,40,15,1,2,1,0,1.834931618550188,1.834931618550188,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.86,50.93,5,1,0,0,9,3,1,1036.2,0,0,0 +6500,7954,14461,14460,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,3,8.346465585392478,8.149703659509697,0,2,0,-9,8,0,-5,-154.3050024061087,0,0,0,50,2,2,1,-9,-9,2019,1,1,12,0,50,48,15,1,0,1,0,7.655396802996806,7.655396802996806,0,0,0,0,0,0,0,1,1,0,0,0,1.455944248904595,3,47.46,52.7,6,1,0,0,9,3,1,1036.2,0,0,0 +6500,7954,14462,-9,14461,14460,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.6597009480495,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,1,1036.2,0,0,0 +6500,7954,14463,-9,14461,14460,5,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-952.8662209459154,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,3,1,1036.2,0,0,0 +6500,7955,14464,-9,-9,-9,6,1,0,81,3,0,3,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-960.6969819911142,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,9,1,1,791,0,0,0 +6501,7956,14465,14466,-9,-9,2,1,0,36,1,2,2,0,2,-9,5,1,0,4,0,0,0,2,0,-9,6,0,4,-14.73003729862007,0,0,1,32,1,5,1,-9,-9,2019,1,1,13,3,0,18,15,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,58.81,5,1,0,1,8,2,0,809.5,0,0,0 +6501,7956,14466,14465,-9,-9,1,1,1,32,1,2,2,0,1,-9,1,1,0,5,7.656830570640774,7.684449443816891,0,2,0,-9,6,0,-4,-2.209124067242644,0,0,0,36,2,4,1,-9,-9,2019,1,2,9,1,60,65,15,1,1,1,0,4.256440181348307,4.256440181348307,0,0,0,0,0,0,0,1,1,0,0,0,11.53429855076627,3,48.18,61.8,5,2,0,0,8,2,0,809.5,0,0,0 +6501,7956,14467,-9,14465,14466,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.3055858754619,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,2,0,809.5,0,0,0 +6501,7956,14468,-9,14465,14466,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-866.8462540990082,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,2,0,809.5,0,0,0 +6502,7957,14469,14470,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.051607675381862,7.23528455112983,1,0,-9,52,0,1,17.40620352815544,0,0,0,71,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.718397037386242,6.988590432397368,48.22636148137897,3,56.57,51.02,6,3,0,0,5,2,1,518.5,0,0,0 +6502,7957,14470,14469,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,-28.59996748178991,0,0,0,72,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,45.30231558347278,3,51,47,5,3,0,0,5,2,1,518.5,0,0,0 +6503,7958,14471,14472,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,6.714152238817862,7.048126221950518,1,0,-9,10,0,-7,25.73265288269368,0,0,0,70,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.769863876406574,6.652191726691057,9.881225046004552,3,54.79,55.86,6,1,0,0,13,3,1,573,0,0,0 +6503,7958,14472,14471,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.81954034173195,7.831141378100436,1,0,-9,10,0,7,-63.37315417249791,0,0,0,63,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.53320364140112,7.753845764911238,0,0,51.77,58.57,6,1,0,0,13,3,1,573,0,0,0 +6504,7959,14473,14474,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.626611678133763,8.570813994271655,0,1,0,-9,5,0,-6,47.51546980973391,0,0,0,66,3,4,1,3,3,2019,1,2,7,0,36,0,15,1,0,1,0,20.03891355107474,20.03891355107474,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,13,5,0,1016.5,0,0,0 +6504,7959,14474,14473,-9,-9,2,1,1,66,1,0,0,0,3,-9,2,1,0,4,7.65702440088682,7.607616588347478,6.46907492137681,1,0,-9,5,0,6,17.89556118877804,-9,0,0,60,1,3,1,-9,-9,2019,1,1,10,0,18,0,15,1,0,1,0,10.57195197102965,10.57195197102965,1,0,0,0,0,0,0,1,1,0,2.486070465954683,6.398313153479253,0,0,60.12,54.8,6,1,0,0,13,5,0,1016.5,0,0,0 +6505,7960,14475,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,4,8.874459224120635,9.173208645558693,0,3,0,0,0,-9,0,-976.121795498377,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,54,15,1,0,-9,0,14.12294401309217,14.12294401309217,0,0,0,0,0,0,0,0,0,0,1.157250159598322,0,0,0,61.68,49.95,6,1,0,0,12,5,0,305,0,0,0 +6506,7961,14476,-9,-9,-9,1,1,0,69,2,0,2,0,2,-9,4,3,0,2,0,0,0,4,0,-9,0,-9,0,-1066.042975946314,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,.2486252935817062,0,1.002070637822793,0,1,1,0,0,0,0,0,59.97,12.12,4,4,0,0,8,1,0,4133,0,0,0 +6507,7962,14477,-9,-9,-9,2,1,0,69,3,0,1,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-1138.076733518974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.091145963236352,0,44.37242645302621,0,0,49.96536716405824,1,1,0,0,0,0,0,42.99,34.68,6,1,0,0,1,1,1,177,0,0,0 +6507,7963,14478,14480,14477,-9,1,1,0,45,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-13,109.4515851175164,0,0,0,58,2,2,3,2,3,2019,4,4,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,47.38,37.08,6,1,0,0,1,2,1,1071,0,0,0 +6507,7963,14479,-9,14478,14480,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.881369881983,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,2,1,1071,0,0,0 +6507,7963,14480,14478,-9,-9,4,1,1,58,1,0,1,0,2,-9,4,3,0,2,0,7.475383534266089,7.661473060787903,2,0,-9,3,0,13,-45.71468201023755,0,0,0,45,1,4,3,-9,-9,2019,4,1,14,2,0,0,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.594431943741637,2.756910600598651,3,32.33,35.55,5,1,0,0,1,2,1,1071,0,0,0 +6508,7964,14481,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,4,9.145609742625018,9.350139305540429,0,3,0,-9,0,-9,0,-986.0439011477233,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,12,45,0,15,1,12,-9,0,28.87090861768299,28.87090861768299,0,0,0,0,0,0,0,0,0,0,3.575502326002379,0,0,0,29.79,57.77,5,5,0,0,8,5,1,278,0,0,0 +6509,7965,14482,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,2,1,0,4,7.2100767226371,7.172068413648401,0,3,0,-9,0,-9,0,-990.7630714499504,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,28,0,15,1,0,-9,0,7.192728144796394,7.192728144796394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.77,60.12,5,1,0,0,13,3,0,1983,0,0,0 +6509,7966,14483,-9,14482,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,4,7.703330184094236,7.778285696583911,0,3,0,-9,0,-9,0,-1153.141888289681,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,0,15,1,0,-9,1,7.7999201184593,7.7999201184593,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.96,61.14,5,1,0,0,13,3,0,477,0,0,0 +6509,7967,14484,-9,14482,-9,3,1,0,31,2,0,0,0,1,-9,2,1,0,4,7.790500808439298,7.992027556118951,0,3,0,-9,0,-9,0,-1107.234066651252,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,2,37,0,15,1,2,-9,1,8.343487298914871,8.343487298914871,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,6,1,0,0,13,3,0,120,0,0,0 +6510,7968,14485,-9,14487,14486,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1163.990119415713,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,5,1,648.3333333333334,0,0,0 +6510,7968,14486,14487,-9,-9,2,1,1,57,1,0,2,0,1,-9,2,1,0,4,9.288235346805221,9.686321626989484,0,2,0,-9,7,0,2,64.04413129678592,-9,0,0,55,1,5,3,1,1,2019,2,1,9,0,32,0,15,1,0,3,0,42.39732577365398,42.39732577365398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,0,0,12,5,1,648.3333333333334,0,0,0 +6510,7968,14487,14486,-9,-9,1,1,0,55,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,7,0,-2,-79.75572871070808,0,0,0,57,1,4,1,1,1,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,12,5,1,648.3333333333334,0,0,0 +6510,7969,14488,-9,14487,14486,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1015.573022988728,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.741936701271675,0,0,0,57.73,54.53,6,1,0,0,12,5,1,38,0,0,0 +6511,7970,14489,-9,14491,14490,5,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.871254483232,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,4,4,0,768.3333333333334,0,0,0 +6511,7970,14490,14491,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,4,8.483331100231114,8.442178933413526,0,2,0,-9,23,0,-10,-42.88595382503046,0,0,0,49,2,4,1,3,3,2019,1,1,14,3,48,60,15,1,3,1,0,10.9732438914193,10.9732438914193,0,0,0,0,0,0,0,1,1,0,0,0,65.7299947990121,3,51.08,49.24,5,1,0,0,4,4,0,768.3333333333334,0,0,0 +6511,7970,14491,14490,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,4,7.597541166531759,7.653945233749565,0,2,0,-9,23,0,10,-13.74985092985969,0,0,0,39,2,4,1,3,3,2019,1,2,11,0,26,24,15,1,0,1,0,7.999780276028374,7.999780276028374,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,42.53,7,1,0,0,4,4,0,768.3333333333334,0,0,0 +6511,7971,14492,-9,14491,14490,3,1,0,22,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1064.137368668169,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,57,5,1,0,0,4,1,0,1212,0,0,0 +6511,7972,14493,-9,14491,14490,4,1,0,19,2,0,1,0,2,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-990.3622970949606,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,4,1,0,280,0,0,0 +6512,7973,14494,14495,-9,-9,1,1,0,42,1,0,1,0,1,-9,2,1,0,4,8.632118405030903,9.111840002320237,0,2,0,-9,5,0,1,-55.86838438717244,0,0,1,41,1,4,1,1,2,2019,1,2,12,0,38,37,15,1,0,1,0,21.40850832773312,21.40850832773312,0,0,0,0,0,0,0,0,0,0,2.190452565849827,0,0,0,53.81,53.56,6,1,0,0,6,5,1,1166,0,0,0 +6512,7973,14495,14494,-9,-9,2,1,1,41,1,0,1,0,1,-9,2,1,0,4,9.521199534136803,9.418441621780698,0,2,0,-9,5,0,-1,-1.566520828988347,0,0,0,42,1,4,1,-9,-9,2019,1,1,9,2,52,52,15,1,2,1,0,31.22148868956078,31.22148868956078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,6,5,1,1166,0,0,0 +6512,7973,14496,-9,-9,14495,3,1,0,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1108.032243500102,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,1,0,0,6,5,1,1166,0,0,0 +6513,7974,14497,14498,-9,-9,4,1,1,46,1,0,2,0,2,-9,1,1,0,5,8.00182605692417,8.114409584356403,0,2,0,-9,3,0,-1,-58.26235799665896,-9,0,0,47,2,4,3,-9,-9,2019,2,1,5,0,40,0,15,1,0,4,0,9.179124174288182,9.179124174288182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,2,3,1,888.3333333333334,0,0,0 +6513,7974,14498,14497,-9,-9,1,1,0,47,1,0,2,0,2,-9,4,3,0,4,0,0,0,2,0,-9,3,0,1,4.434923318513755,0,0,0,46,2,5,1,-9,-9,2019,3,4,6,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.565451936319194,3,63.09,47.92,7,1,0,0,2,3,1,888.3333333333334,0,0,0 +6513,7974,14499,-9,14498,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1084.585970111831,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,2,3,1,888.3333333333334,0,0,0 +6513,7975,14500,-9,14498,-9,2,1,1,18,2,0,2,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-979.4382467724156,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,2,3,1,617,0,0,0 +6514,7976,14501,14502,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,8,-93.43460043506758,0,0,0,66,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,2,1,776.5,0,0,0 +6514,7976,14502,14501,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,6.118824539055773,5.890236307231799,1,0,-9,47,0,-8,55.11444195630116,0,0,0,74,3,3,3,3,3,2019,4,2,6,0,0,26,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.908390915317363,0,0,58.15,52.91,6,1,0,0,7,2,1,776.5,0,0,0 +6515,7977,14503,-9,14506,-9,4,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1023.682818884397,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,2,1,0,1228.25,0,0,0 +6515,7977,14504,-9,14506,-9,3,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-900.3167567783405,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,1,0,0,2,1,0,1228.25,0,0,0 +6515,7977,14505,-9,14506,-9,2,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1104.479067277683,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.856675550503605,3,42.1,50.78,3,1,0,0,2,1,0,1228.25,0,0,0 +6515,7977,14506,-9,-9,-9,1,1,0,45,2,0,3,0,2,-9,6,3,0,4,0,0,0,4,0,-9,0,0,0,-1021.02339355229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,6,1,0,0,2,1,0,1228.25,0,0,0 +6516,7978,14507,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,3,8.147340749314811,8.316669343390844,0,3,0,0,0,-9,0,-972.2889137479875,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,7,32,15,1,1,-9,0,58.44950896569915,58.44950896569915,0,0,0,0,0,0,0,0,0,0,7.587138634688988,0,8.99952074836783,3,50.24,37.82,4,1,0,0,12,4,1,856,0,0,0 +6517,7979,14508,-9,14509,-9,1,1,1,63,3,0,0,0,1,-9,4,3,0,4,0,7.219101179611654,7.274168513551718,3,0,0,0,-9,0,-1088.373028980139,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.146114532573823,7.249928685704149,25.74104134020205,3,57.07,49.39,6,1,0,0,2,3,1,224,0,0,0 +6517,7980,14509,-9,-9,-9,2,1,0,93,3,0,0,0,3,-9,4,3,0,4,0,7.075226718991574,6.634048105676078,3,0,0,0,-9,0,-1117.167081174175,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.852784056183613,0,0,1,1,0,0,6.692988709408314,0,0,39.31,35.73,6,1,0,0,2,2,1,415,0,0,0 +6518,7981,14510,-9,-9,-9,1,1,0,56,3,0,1,0,1,1,2,1,0,2,6.294700770983043,6.290122049588227,0,4,0,0,0,-9,0,-1087.345266788228,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,21,9,10,0,15,1,9,-9,0,6.779523887528115,6.779523887528115,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.7,41.38,3,4,0,0,8,2,0,392,0,0,0 +6519,7982,14511,14512,-9,-9,2,1,1,62,1,0,0,0,2,-9,1,1,0,4,8.6869289668828,9.486136929513721,8.011011834791118,1,0,-9,35,0,4,12.83852089973854,0,0,0,58,1,3,1,3,3,2019,1,1,6,0,35,40,15,1,0,1,0,19.5276487145002,19.5276487145002,0,0,0,0,0,0,0,0,0,0,6.999625384082741,8.674864079388771,0,0,57.16,56.15,6,1,0,0,8,5,1,765,0,0,0 +6519,7982,14512,14511,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,3,9.288207880659005,9.546716160361733,0,1,0,-9,28,0,-4,-105.5891218496795,0,0,0,62,2,4,1,1,1,2019,1,2,12,0,45,45,15,1,0,1,0,38.40414788922273,38.40414788922273,0,0,0,0,0,0,0,0,0,0,6.93990659717815,0,0,0,41.23,59.35,5,1,0,0,8,5,1,765,0,0,0 +6519,7983,14513,-9,14512,14511,3,1,0,22,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1049.862060350019,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,38,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.115875084035856,0,0,0,41.47,58.08,6,1,0,0,8,1,1,416,0,0,0 +6520,7984,14514,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.614696074284987,7.890550577072267,0,3,0,0,0,-9,0,-1122.179243716453,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,43,15,1,1,-9,0,6.462744955467153,6.462744955467153,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,2,3,0,695,0,0,0 +6521,7985,14515,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,3,5.020759285465991,5.487460365517013,0,3,0,-9,0,0,0,-972.9158290813224,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,19,7,6,0,15,1,7,-9,0,3.580388888543657,3.580388888543657,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.86,45.36,2,1,0,0,7,2,1,451,0,0,0 +6522,7986,14516,14517,-9,-9,1,1,1,49,1,0,1,0,2,-9,1,1,0,2,7.70307373147195,8.069082504997585,6.342738744359229,2,0,-9,15,0,8,-7.415853703685266,-9,0,0,41,2,1,3,3,2,2019,2,2,11,0,45,0,15,1,0,3,0,6.261471592294087,6.261471592294087,0,0,0,0,0,0,0,1,1,0,6.865592631616463,0,0,0,41.47,47.55,5,3,0,0,5,3,1,2627,0,0,0 +6522,7986,14517,14516,-9,-9,2,1,0,41,1,0,1,0,2,-9,6,3,0,1,0,0,0,2,0,-9,2,0,-8,-92.21406082253158,0,0,1,49,2,2,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.22,22.05,5,3,0,0,5,3,1,2627,0,0,0 +6522,7987,14518,-9,14517,14516,3,1,0,21,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-926.4705415474957,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.44,59.97,3,3,0,0,5,1,1,844,0,0,0 +6523,7988,14519,14520,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,54,-9,-2,0,-9,0,0,84,3,1,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,133.172135140265,1,56.19,41.56,5,5,0,0,8,1,0,351,0,0,0 +6523,7988,14520,14519,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,54,-9,2,0,-9,0,0,82,3,3,3,-9,-9,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,27.38,34.91,5,5,0,0,8,1,0,351,0,0,0 +6524,7989,14521,-9,14522,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.977667730479,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.73,39.4,6,1,0,0,13,4,1,817,0,0,0 +6524,7989,14522,-9,-9,-9,1,1,0,39,3,0,2,0,1,-9,2,1,0,1,8.582674537194281,8.67531595548104,7.036541471303475,4,0,0,0,-9,0,-945.0078850139521,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,23,11,38,37,15,1,11,-9,0,14.9085673497093,14.9085673497093,0,0,0,0,0,0,0,1,1,0,6.638015716405823,0,0,0,32.09,30.06,2,1,0,0,13,4,1,817,0,0,0 +6524,7989,14523,-9,14522,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-863.4796439464674,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,817,0,0,0 +6525,7990,14524,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,1,1,0,3,8.441846964716946,9.376219240637447,9.162486298524925,3,0,0,0,-9,0,-979.3796121341435,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,16,20,15,1,1,-9,0,32.14132517840352,32.14132517840352,0,0,0,0,0,0,0,0,0,0,8.926662591726377,0,0,0,52.58,47.36,3,1,0,0,8,5,1,2833,0,0,0 +6526,7991,14525,14526,-9,-9,1,1,1,60,1,1,2,0,2,-9,2,1,0,3,7.684247650801516,7.269082246923643,0,2,0,-9,7,0,22,47.84805190943968,0,0,0,38,3,4,3,2,2,2019,2,2,19,7,37,0,15,1,7,3,0,5.383828475373525,5.383828475373525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.64,55.1,5,4,0,1,6,2,0,524.75,0,0,0 +6526,7991,14526,14525,-9,-9,2,1,0,38,1,1,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-22,-49.52600628257337,0,0,1,60,2,3,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,52.44,7,4,0,1,6,2,0,524.75,0,0,0 +6526,7991,14527,-9,14526,14525,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.283147386729,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,6,2,0,524.75,0,0,0 +6526,7991,14528,-9,14526,14525,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1047.378081614882,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,6,2,0,524.75,0,0,0 +6527,7992,14529,-9,-9,-9,1,1,0,38,2,0,3,0,2,-9,6,3,0,5,6.820662161665964,6.95910729889859,0,4,0,0,0,-9,0,-917.1695261567022,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,16,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,53.16,6,1,0,0,4,2,0,1241.5,0,0,0 +6527,7992,14530,-9,14529,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-914.5597828696052,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,1241.5,0,0,0 +6528,7993,14531,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,3,0,8.327847679098815,8.386134939589022,3,0,0,0,-9,0,-1051.015170715489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.266515463887513,8.284623832325615,0,0,62.09,29.74,6,1,0,0,1,4,1,551,0,0,0 +6529,7994,14532,14533,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,5,7.433463198847286,7.49960539480089,0,1,0,-9,4,0,-8,-37.55144551812734,0,0,0,67,2,3,3,2,-9,2019,2,2,10,0,20,20,15,1,0,4,0,15.20437489308439,15.20437489308439,0,0,0,0,0,0,0,1,1,0,1.990511317638554,0,0,0,51.61,61.54,7,1,0,0,10,3,1,706.5,0,0,0 +6529,7994,14533,14532,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,6.901109545000748,6.740748958016303,1,0,-9,4,0,8,49.48769027764706,0,0,0,59,1,5,1,-9,-9,2019,3,1,13,4,0,0,15,4,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.658182227894991,7.106204020400426,0,0,44.94,42.48,7,1,0,0,10,3,1,706.5,0,0,0 +6530,7995,14534,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,1,1,0,2,3.450616653515175,3.640508733939191,0,3,0,0,0,-9,0,-988.3689527647963,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,50,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.357239112098903,0,0,0,64.12,27.56,6,1,0,0,9,2,1,1107,0,0,0 +6531,7996,14535,14536,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,7.111992476131193,7.152373806432344,1,0,-9,46,0,1,-24.90836640998773,0,0,0,72,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.579858613716428,0,0,54.79,55.86,7,1,0,0,6,2,1,496.5,0,0,0 +6531,7996,14536,14535,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,46,0,-1,-56.31908090196017,0,0,0,73,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.44509249325903,0,0,0,54.37,44.27,6,1,0,0,6,2,1,496.5,0,0,0 +6532,7997,14537,14538,-9,-9,2,1,0,63,1,0,0,0,2,-9,3,3,0,4,7.359753596002098,7.372558708873063,0,1,0,-9,2,0,-2,-210.5397266670103,0,0,0,65,2,5,1,3,3,2019,3,1,7,0,8,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,6,1,1,0,4,4,1,850.5,0,0,0 +6532,7997,14538,14537,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,5,7.731277710686714,7.825728313274741,0,1,0,-9,40,0,2,80.12632722125899,0,0,0,63,2,4,3,2,2,2019,2,2,6,0,46,48,15,1,0,3,0,6.616701079915272,6.616701079915272,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.24,6,1,0,0,4,4,1,850.5,0,0,0 +6532,7998,14539,-9,14537,14538,3,1,0,35,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1035.134873401357,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,5,1,1,1,4,1,1,271,0,0,0 +6533,7999,14540,14541,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,3,7.842989535011561,7.762273107055711,0,2,0,-9,17,0,5,-115.0983925321957,0,0,0,42,1,4,1,2,2,2019,1,1,13,2,26,0,15,1,2,1,0,8.387545213291308,8.387545213291308,0,0,0,0,0,0,0,1,1,0,4.593356862147248,0,0,0,43.96,55.64,5,1,0,0,4,4,1,840.2,0,0,0 +6533,7999,14541,14540,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,4,9.003303826376898,8.987577653113542,0,2,0,-9,16,0,-5,-82.05327618248366,0,0,1,47,1,3,1,2,2,2019,1,2,14,4,37,41,15,1,4,1,0,29.93146395105456,29.93146395105456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,4,4,1,840.2,0,0,0 +6533,7999,14542,-9,14541,14540,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.096437837969,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,4,1,840.2,0,0,0 +6533,7999,14543,-9,14541,14540,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.9809722107012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,840.2,0,0,0 +6533,7999,14544,-9,14541,14540,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-843.7636633013528,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,840.2,0,0,0 +6534,8000,14545,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1019.262232374254,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.54,48.69,6,1,0,0,2,1,0,486,0,0,0 +6535,8001,14546,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,1,1,0,5,9.035252668234763,8.813763100344868,0,3,0,-9,0,0,0,-883.8580071796874,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,86,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.44,59.35,6,1,0,0,4,5,1,310,0,0,0 +6536,8002,14547,14549,-9,-9,2,1,1,23,1,1,1,0,2,-9,2,1,0,5,8.904620281170637,8.818785682545373,0,2,0,-9,5,0,0,37.58783959403056,0,1,0,23,2,5,1,-9,-9,2019,1,1,6,0,60,55,15,1,0,1,0,16.77151070338244,16.77151070338244,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.14,60.45,7,1,0,0,4,5,1,560.3333333333334,0,0,0 +6536,8002,14548,-9,14549,14547,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.8897285709734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,560.3333333333334,0,0,0 +6536,8002,14549,14547,-9,-9,1,1,0,23,1,1,1,0,2,-9,2,1,0,5,7.262312308495795,7.243229074085198,0,2,0,-9,5,0,0,68.56065554205856,0,1,1,23,2,5,1,2,-9,2019,1,2,16,5,20,18,15,1,5,1,0,10.67616025879203,10.67616025879203,0,0,0,0,0,0,0,1,1,0,0,0,5.518237120319593,3,33.39,65.88,6,1,0,0,4,5,1,560.3333333333334,0,0,0 +6537,8003,14550,14551,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,3,8.720594202880871,8.480478407939385,0,2,0,-9,10,0,-4,-23.78442035239879,0,0,0,52,1,3,1,2,2,2019,1,2,10,2,45,45,15,1,2,1,0,12.0323126580326,12.0323126580326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.29,55.57,6,1,0,0,12,5,1,895,0,0,0 +6537,8003,14551,14550,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,3,9.07139090496684,8.794523653440081,0,2,0,-9,10,0,4,-125.4905290110095,0,0,0,48,1,3,1,2,1,2019,1,1,7,0,38,38,15,1,0,1,0,23.26498053438994,23.26498053438994,0,0,0,0,0,0,0,0,0,0,7.82194709250635,0,0,0,52,54.51,6,1,0,0,12,5,1,895,0,0,0 +6537,8003,14552,-9,14550,14551,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1200.745069547315,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,1,0,0,12,5,1,895,0,0,0 +6537,8003,14553,-9,14550,14551,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.493363755436,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,5,1,895,0,0,0 +6538,8004,14554,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,2,1,0,4,7.937187323298928,7.891264628533738,4.786831985947237,3,0,0,0,-9,0,-914.8830069776725,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,54,48,15,1,0,-9,0,6.000870975078458,6.000870975078458,0,0,0,0,0,0,0,0,0,0,5.281272474661108,5.0286515249336,0,0,40.27,54.18,6,1,0,0,11,4,1,454,0,0,0 +6539,8005,14555,14556,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,2,8.204365388604868,8.472488504055574,0,1,0,-9,28,0,11,-85.42351689200078,0,0,0,49,3,4,3,3,3,2019,2,1,14,2,36,38,15,1,2,3,0,14.21647630176544,14.21647630176544,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,5,1,0,1,6,4,1,1311,0,0,0 +6539,8005,14556,14555,-9,-9,1,1,0,49,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,28,0,-11,109.3333414371288,0,0,0,60,2,2,1,-9,3,2019,3,2,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.41,64.05,6,1,0,0,6,4,1,1311,0,0,0 +6540,8006,14557,-9,-9,-9,1,1,0,49,2,0,1,0,1,-9,1,1,0,3,8.471318791416957,8.310896927362609,0,4,0,0,0,-9,0,-977.2977680522083,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,10,65,15,1,0,-9,0,48.54451662259586,48.54451662259586,0,0,0,0,0,0,0,0,0,0,6.744426017990619,0,10.05217450269187,3,40.02,55.81,5,2,0,0,6,4,1,1137,0,0,0 +6541,8007,14558,14559,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,2,8.515588607084196,8.402840288803253,0,2,0,-9,6,0,-5,-116.4104195208224,0,0,1,39,2,5,1,2,3,2019,1,2,17,5,32,40,15,1,5,1,0,17.50592920187379,17.50592920187379,0,0,0,0,0,0,0,1,1,0,3.752425062032968,0,0,3,38.74,40.53,6,1,0,0,4,4,1,1894,0,0,0 +6541,8007,14559,14558,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,5,8.316599907005429,8.230898729118641,0,2,0,-9,6,0,5,-79.55816874434625,0,0,0,34,1,2,1,2,2,2019,1,1,11,0,42,40,15,1,0,1,0,10.77540583144581,10.77540583144581,0,0,0,0,0,0,0,1,1,0,3.285790651651094,0,0,0,57.06,57.76,6,1,0,0,4,4,1,1894,0,0,0 +6541,8007,14560,-9,14558,14559,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.3962713930175,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,4,1,1894,0,0,0 +6541,8007,14561,-9,14558,14559,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1117.939442633455,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,2,0,0,4,4,1,1894,0,0,0 +6542,8008,14562,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1016.942183966732,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,69.8,25.93,7,1,0,0,10,1,0,785,0,0,0 +6543,8009,14563,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-958.2426979332902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,11.56888293268164,0,33.41927345937498,0,1,1,0,0,0,0,0,35.82,28.89,5,1,0,0,6,1,0,155,0,0,0 +6544,8010,14564,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,3,8.092252390859896,8.356581450580485,0,3,0,0,0,-9,0,-991.8564671172683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,60,54,15,1,0,-9,0,7.679162260908259,7.679162260908259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,5,1,0,0,13,4,1,193,0,0,0 +6545,8011,14565,14566,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,7.434634553964617,6.994069830731055,0,1,0,-9,3,0,-7,-72.33586632797044,0,1,1,32,1,3,1,-9,-9,2019,1,1,11,0,30,37,15,1,2,1,0,6.646763139208021,6.646763139208021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,3,0,0,8,3,0,671.5,0,0,0 +6545,8011,14566,14565,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,3,7.072731452135796,7.155977815226727,0,1,0,-9,3,0,7,21.48499847729335,0,0,0,25,1,4,1,3,1,2019,1,2,11,1,20,47,15,1,1,1,0,8.946630534926205,8.946630534926205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,54.33,2,3,0,0,8,3,0,671.5,0,0,0 +6546,8012,14567,14568,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,4,8.788304448862991,8.541563994467062,0,1,0,-9,8,0,2,1.711844038644634,0,0,0,47,2,3,1,3,2,2019,1,2,7,0,45,40,15,1,0,1,0,16.5786682604842,16.5786682604842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,5,1,0,0,4,5,1,480.6666666666667,0,0,0 +6546,8012,14568,14567,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,3,7.857929758979854,7.851544331813233,0,1,0,-9,8,0,-2,-56.66871990447206,0,0,0,49,2,4,1,3,2,2019,1,1,1,0,42,36,15,1,0,1,0,5.985807894898479,5.985807894898479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,1,0,1,4,5,1,480.6666666666667,0,0,0 +6546,8012,14569,-9,14568,14567,3,1,1,17,2,0,0,0,2,-9,2,3,0,5,7.321853913874982,7.549874396313198,0,1,0,0,0,-9,0,-1075.219321442094,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,4,5,1,480.6666666666667,0,0,0 +6546,8013,14570,-9,14568,14567,4,1,0,20,2,0,0,0,2,-9,11,3,0,3,7.619561668933689,7.688550089001132,0,3,0,0,0,-9,0,-901.3308159978255,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,43,42,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,6,1,0,0,4,3,1,594,0,0,0 +6547,8014,14571,14572,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,4,7.843735663042887,7.941225691110761,0,1,0,-9,3,0,-3,-120.101567915354,-9,0,1,36,1,4,1,-9,-9,2019,1,1,11,0,38,0,15,1,0,1,0,7.326559710849222,7.326559710849222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,6,1,0,0,10,5,1,1216,0,0,0 +6547,8014,14572,14571,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.510888724054103,8.421700519031285,0,1,0,-9,3,0,3,20.92575026059924,0,0,0,33,2,4,1,-9,-9,2019,1,2,6,0,43,42,15,1,0,1,0,12.21973263907446,12.21973263907446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1216,0,0,0 +6548,8015,14573,14574,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,3,8.603307010337737,8.975885463759655,6.925456732435964,1,0,-9,10,0,2,147.4149578220294,0,0,0,58,2,3,1,3,3,2019,1,2,6,0,40,45,15,1,0,1,0,19.90673479700597,19.90673479700597,0,0,0,0,0,0,0,0,0,0,0,6.773715174237834,0,0,56.64,44.13,6,1,0,0,5,5,1,425,0,0,0 +6548,8015,14574,14573,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.107047256786828,6.937875442215217,0,1,0,-9,10,0,-2,3.115329287157345,0,0,0,60,3,3,1,3,3,2019,1,1,19,7,8,21,15,1,7,1,0,22.66480733796635,22.66480733796635,0,0,0,0,0,0,0,0,0,0,1.93360039170828,0,0,0,39.51,48.16,5,1,0,0,5,5,1,425,0,0,0 +6549,8016,14575,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,2,8.159273951760261,8.128749926409631,0,3,0,0,0,-9,0,-1106.307254089354,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,40,14,15,1,6,-9,0,12.2046730398389,12.2046730398389,0,0,0,0,0,0,0,1,1,0,6.994274973636371,0,0,0,36.19,47.37,4,3,0,0,8,4,1,383,0,0,0 +6550,8017,14576,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,6.758075159220189,6.643098897566494,3,0,0,0,-9,0,-1050.910431168937,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.302164487966947,6.849759827764409,0,3,48.38,38.92,5,1,0,0,10,2,1,235,0,0,0 +6550,8018,14577,-9,14576,-9,2,1,0,45,2,0,0,0,2,-9,2,1,0,3,8.443640338898193,8.332141814938009,0,3,0,0,0,-9,0,-911.6963513949447,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,41,38,15,1,0,-9,1,12.78874300393087,12.78874300393087,0,0,0,0,0,0,0,1,1,0,4.582672132615694,0,0,0,61.85,47.26,6,1,0,0,10,5,1,1217,0,0,0 +6551,8019,14578,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,4,9.619242626965748,9.570721174988106,0,3,0,0,0,-9,0,-951.0309515632596,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,48,50,15,1,9,-9,0,24.9953967697452,24.9953967697452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.53,65.61,5,2,0,0,8,5,1,569,0,0,0 +6552,8020,14579,14580,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,8.077462627082388,8.046653625299795,1,0,-9,27,0,3,57.94862968763742,0,0,0,60,1,4,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.940721557215347,7.572529719390203,0,0,54.2,57.49,6,1,0,0,10,3,1,388.5,0,0,0 +6552,8020,14580,14579,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,4,0,6.56055853565487,6.836995598333592,1,0,-9,27,0,-3,-20.76665357078382,0,0,0,63,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.687462852342209,7.894641507487058,3,52.82,53.97,6,1,0,0,10,3,1,388.5,0,0,0 +6553,8021,14581,14583,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,3,8.768446296880677,8.757448679883877,0,2,0,-9,1,-9,4,70.84669171273609,-9,0,0,33,1,4,1,2,2,2019,1,2,9,0,52,0,15,1,0,1,0,18.83088770552631,18.83088770552631,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,1,0,0,12,5,1,528.3333333333334,0,0,0 +6553,8021,14582,-9,14583,14581,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-948.6970212680501,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,5,1,528.3333333333334,0,0,0 +6553,8021,14583,14581,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,4,8.10975741167268,8.199679908881807,0,2,0,-9,1,-9,-4,-53.80586170805752,-9,0,1,37,2,3,1,-9,-9,2019,1,1,7,0,25,0,15,1,0,1,0,19.99830264593801,19.99830264593801,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,528.3333333333334,0,0,0 +6554,8022,14584,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,3,0,6.915418760919459,7.215297174436103,3,0,0,0,-9,0,-833.9239068912004,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.754218045017342,7.014829051885958,0,0,42.85,38.11,2,1,0,0,1,2,1,366,0,0,0 +6555,8023,14585,14586,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,7.372352749896743,7.506845220766676,1,0,-9,48,0,5,86.64943725436518,0,0,0,64,3,3,1,3,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.454361838379603,0,0,63.41,39.7,5,1,0,0,9,3,1,1169,0,0,0 +6555,8023,14586,14585,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,3,6.627925741484606,6.629458357943334,0,1,0,-9,48,0,-5,-112.094993642708,0,0,0,69,3,3,3,3,3,2019,2,1,17,5,15,15,15,1,5,4,0,8.451729743544561,8.451729743544561,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,42.8,5,1,0,0,9,3,1,1169,0,0,0 +6556,8024,14587,-9,14588,14589,3,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-995.5729772976221,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,6,1,0,0,7,5,1,426.6666666666667,0,0,0 +6556,8024,14588,14589,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,4,9.021240494663763,8.620928078705518,0,2,0,-9,6,0,-2,14.86250316820939,0,0,0,54,2,3,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,15.92889450866775,15.92889450866775,0,0,0,0,0,0,0,0,0,0,3.029120881685433,0,0,0,57.73,54.53,6,1,0,0,7,5,1,426.6666666666667,0,0,0 +6556,8024,14589,14588,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,3,9.398695277676678,9.332167853152102,0,2,0,-9,6,0,2,-81.02373019977341,0,0,0,52,1,4,1,2,2,2019,1,2,12,1,41,40,15,1,1,1,0,27.08365594980114,27.08365594980114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,5,1,0,0,7,5,1,426.6666666666667,0,0,0 +6557,8025,14590,-9,14592,14593,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.334309792196,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,4,1,669.6,0,0,0 +6557,8025,14591,-9,14592,14593,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.828967700078,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,8,4,1,669.6,0,0,0 +6557,8025,14592,14593,-9,-9,1,1,0,36,1,1,3,0,1,-9,2,1,0,4,8.351511290944222,8.15568756288947,0,2,0,-9,9,0,-3,-76.39420583241365,0,0,1,39,1,5,1,2,2,2019,1,2,7,0,37,38,15,1,0,1,0,13.25730895578445,13.25730895578445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,6,4,0,0,8,4,1,669.6,0,0,0 +6557,8025,14593,14592,-9,-9,2,1,1,39,1,1,3,0,1,-9,2,1,0,5,8.466959820701298,8.683456132366233,0,2,0,-9,13,0,3,64.35398610810914,0,0,0,36,1,4,1,2,2,2019,1,1,3,0,32,32,15,1,0,1,0,18.20689027263904,18.20689027263904,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,4,0,0,8,4,1,669.6,0,0,0 +6557,8025,14594,-9,14592,14593,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.237562985341,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,4,0,0,8,4,1,669.6,0,0,0 +6558,8026,14595,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,3,8.509160537227451,8.813606430640633,0,3,0,0,0,-9,0,-1061.357613306144,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,42,0,15,1,2,-9,0,18.53235774126623,18.53235774126623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,5,1,0,0,12,5,1,949,0,0,0 +6559,8027,14596,14597,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.785253876290732,8.703360576877833,0,1,0,-9,27,0,9,53.11052784300475,0,0,0,48,3,4,1,2,2,2019,1,2,9,0,50,55,15,1,0,1,0,11.54365759843219,11.54365759843219,0,0,0,0,0,0,0,0,0,0,5.41771694238397,0,0,0,54,54,6,1,0,0,7,5,1,274,0,0,0 +6559,8027,14597,14596,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,4,8.335484546311138,8.547024200060623,0,1,0,-9,26,0,0,182.9015614918434,0,0,0,57,2,4,1,2,2,2019,1,1,9,0,22,16,15,1,0,1,0,24.31473565130548,24.31473565130548,0,0,0,0,0,0,0,0,0,0,7.801038946478024,0,0,0,53.96,50.73,6,1,0,0,7,5,1,274,0,0,0 +6559,8028,14598,-9,14597,14596,3,1,1,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1103.516146124863,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,0,0,7,1,1,349,0,0,0 +6560,8029,14599,14601,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,4,9.08114675618647,9.082188375226302,0,2,0,-9,14,0,-1,-28.40429246673146,0,0,1,39,1,1,1,2,2,2019,1,1,9,0,42,50,15,1,0,1,0,20.6987792478752,20.6987792478752,0,0,0,0,0,0,0,1,1,0,2.81758551064665,0,6.220909399171097,1,60.12,54.8,6,3,0,0,5,5,1,481.75,0,0,0 +6560,8029,14600,-9,14599,14601,6,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.06141531935,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,5,5,1,481.75,0,0,0 +6560,8029,14601,14599,14603,14604,1,1,1,39,1,0,2,0,1,-9,2,1,0,1,8.649040197402705,8.636458547782448,0,2,0,-9,14,0,1,-45.93722607362177,0,0,0,38,1,4,1,3,3,2019,1,2,12,0,37,37,15,1,0,1,0,15.4708196238868,15.4708196238868,0,0,0,0,0,0,0,1,1,0,4.685005331229138,0,0,0,39.73,20.27,5,3,0,0,5,5,1,481.75,0,0,0 +6560,8029,14602,-9,14599,14601,5,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.9073738453897,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,5,5,1,481.75,0,0,0 +6560,8030,14603,14604,-9,-9,4,1,0,60,1,0,2,0,2,-9,2,1,0,4,7.943813452074482,7.647677339824824,0,2,0,-9,44,0,-5,51.29016026367417,0,0,0,65,3,4,3,3,3,2019,2,3,7,0,60,20,15,1,0,4,0,3.741766024142031,3.741766024142031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,3,0,0,5,2,1,1329,0,0,0 +6560,8030,14604,14603,-9,-9,3,1,1,65,1,0,2,0,3,-9,4,3,0,4,0,0,0,2,0,-9,44,0,5,-36.52263258577583,0,0,0,60,2,4,1,3,2,2019,3,4,9,0,0,45,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.319063211918134,0,0,0,52.23,55.6,6,3,0,0,5,2,1,1329,0,0,0 +6561,8031,14605,-9,-9,-9,1,1,0,65,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1109.594559639601,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,5.29841465615159,0,0,0,1,1,0,.5072359184688306,0,12.6754060315157,3,49.26,30.38,7,1,0,0,2,1,1,660,0,0,0 +6562,8032,14606,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,7.014830849854913,6.873677090120835,3,0,0,0,-9,0,-1016.256661236408,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.521282703264498,6.806589158375962,0,0,57.34,50.6,7,1,0,0,9,2,1,504,0,0,0 +6563,8033,14607,14608,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,5,0,0,0,1,0,-9,5,0,3,-45.69426135985444,0,0,0,31,2,4,1,-9,-9,2019,1,2,3,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.0670284644906386,0,0,0,42.94,57.18,4,1,0,0,1,3,1,588.5,0,0,0 +6563,8033,14608,14607,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,4,7.999283859334745,7.9420108417107,0,1,0,-9,5,0,-3,-32.25722780048308,0,0,1,34,1,5,1,-9,-9,2019,1,1,11,0,0,38,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,6,1,0,0,1,3,1,588.5,0,0,0 +6564,8034,14609,14610,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,1,0,5.83627152125136,6.122874190045055,1,0,-9,62,0,1,77.0381669492141,0,0,0,81,3,2,3,3,3,2019,4,1,31,12,0,0,15,4,12,4,0,0,0,1,0,2.310928929901697,0,0,0,0,1,1,0,0,6.185422732719276,0,0,27.55,25.55,6,1,0,0,2,2,1,1106.5,0,0,0 +6564,8034,14610,14609,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,62,0,-1,-133.2449950907242,0,0,0,82,3,1,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,11.79956254728831,1,47.62,26.56,5,1,0,0,2,2,1,1106.5,0,0,0 +6565,8035,14611,14612,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,8.808581523057123,8.72417973296424,1,0,-9,41,0,9,31.33013111751176,0,0,0,67,1,3,3,2,2,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.694415880858486,0,0,38.19,52.86,5,1,0,0,8,5,1,701,0,0,0 +6565,8035,14612,14611,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,3,0,7.538585014059287,7.704420508539632,1,0,-9,42,0,0,55.06567279895739,0,0,0,76,1,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.582043643545406,7.453851248027702,0,0,57.33,53.46,6,1,0,0,8,5,1,701,0,0,0 +6566,8036,14613,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,4,8.281618076516095,8.60790939324049,0,3,0,0,0,-9,0,-986.867851364485,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,60,58,15,1,0,-9,0,10.73414351466129,10.73414351466129,0,0,0,0,0,0,0,0,0,0,7.164752918700079,0,0,0,57.16,56.15,6,1,0,0,4,5,1,848,0,0,0 +6567,8037,14614,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,7.384761919597045,7.152854160587609,3,0,0,0,-9,0,-991.7484924924473,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.17121072617581,7.381254284029132,0,0,43.42,62.33,6,1,0,0,8,3,1,104,0,0,0 +6568,8038,14615,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,-9,0,1,0,-933.3420215587419,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.482668701937075,0,46.02686996196192,3,16.25,54.43,5,1,0,0,12,1,0,194,0,0,0 +6569,8039,14616,-9,-9,-9,1,1,0,56,2,0,1,0,2,-9,4,3,0,3,0,8.142166638662188,7.919008789614869,4,0,0,0,-9,0,-1056.817029995636,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.192097408886952,7.84580145683015,0,0,57.27,30.41,6,1,0,0,11,3,1,466,0,0,0 +6570,8040,14617,-9,14618,14619,5,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.1022877838695,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,181.3333333333333,0,0,0 +6570,8040,14618,14619,-9,-9,2,1,0,46,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,30,0,-10,-8.319112765920524,0,0,0,56,2,5,1,3,2,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,1,0,8,3,1,181.3333333333333,0,0,0 +6570,8040,14619,14618,-9,-9,1,1,1,56,1,0,1,0,2,-9,2,1,0,5,8.634488802906455,8.175232297728851,0,2,0,-9,30,0,10,78.72733487345427,0,0,0,46,2,4,3,3,2,2019,2,2,14,3,54,50,15,1,3,3,0,12.93873860166241,12.93873860166241,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.26,54.03,4,3,0,0,8,3,1,181.3333333333333,0,0,0 +6570,8041,14620,-9,14618,14619,3,1,0,26,2,0,1,0,1,-9,2,1,0,4,7.70877390052845,7.778431505344773,0,3,0,0,0,-9,0,-1053.777666184864,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,40,15,1,2,-9,1,8.19907149252446,8.19907149252446,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,3,0,0,8,3,1,941,0,0,0 +6570,8042,14621,-9,14618,14619,4,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-953.0305792437646,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,8,1,1,983,0,0,0 +6571,8043,14622,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,5,8.92837127867433,8.920910359297491,4.846413073258113,3,0,-9,0,1,0,-930.1438419675178,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,38,38,15,1,0,-9,0,23.02086400643589,23.02086400643589,0,0,0,0,0,0,0,0,0,0,1.908017161223851,5.252074064253611,0,0,51.14,60.45,6,1,0,0,9,5,1,5808,0,0,0 +6571,8044,14623,-9,-9,14622,2,1,1,21,2,0,0,0,2,-9,2,1,0,3,8.42247739717388,8.324301807984503,0,3,0,0,0,-9,0,-1025.149325667256,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,36,45,15,1,2,-9,1,9.249586536287284,9.249586536287284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.68,58.87,5,1,0,0,9,4,1,350,0,0,0 +6571,8045,14624,-9,-9,14622,3,1,0,19,2,0,0,0,2,-9,2,1,0,4,7.524012535206411,7.308535947651014,0,3,0,0,0,-9,0,-973.6282245478657,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,26,0,15,1,3,-9,1,6.041869336449644,6.041869336449644,0,0,0,0,0,0,0,0,0,0,.5511761561087284,0,0,0,35.38,63.46,2,1,0,0,9,3,1,1506,0,0,0 +6572,8046,14625,14626,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,4,8.513219300298951,8.607935302822199,0,1,0,-9,2,0,-2,188.0365385194267,0,1,1,29,1,5,1,-9,-9,2019,1,2,11,0,42,38,15,1,0,1,0,12.5914612659914,12.5914612659914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,3,0,0,5,4,1,598,0,0,0 +6572,8046,14626,14625,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,5,7.514999275423535,7.560208258824791,0,1,0,-9,2,0,2,73.08776221363142,0,1,0,27,2,4,1,-9,-9,2019,1,1,6,0,32,45,15,1,0,1,0,8.711465517626301,8.711465517626301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,3,0,0,5,4,1,598,0,0,0 +6573,8047,14627,-9,-9,-9,1,1,0,76,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-966.4877433669645,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.99,23.75,6,1,0,0,11,1,0,1248,0,0,0 +6574,8048,14628,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-981.9724083181871,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.36,24.02,7,1,0,0,9,1,0,208,0,0,0 +6575,8049,14629,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,6.865241850489651,6.57794262115751,3,0,0,0,-9,0,-925.7975799035137,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.710072595409995,0,0,54.51,44.28,6,1,0,0,11,2,1,31,0,0,0 +6576,8050,14630,14631,-9,-9,1,1,0,54,1,0,0,0,2,-9,8,3,1,2,0,7.984997748658159,8.018319023582034,1,0,-9,28,0,0,-66.44382287489722,0,0,0,63,2,3,1,-9,-9,2019,3,2,8,0,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.149890837377644,0,0,36.62,44.17,7,1,0,0,10,4,0,786.5,0,0,0 +6576,8050,14631,14630,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,3,7.731153026221657,7.834016640511903,6.122627328297377,1,0,-9,22,0,9,-102.6374782797274,0,0,0,54,2,2,3,3,3,2019,2,1,9,0,46,45,15,1,0,3,0,5.568320245929521,5.568320245929521,0,0,0,0,0,0,0,0,0,0,0,6.646207412331251,0,0,46.96,45.96,5,1,0,1,10,4,0,786.5,0,0,0 +6577,8051,14632,14634,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,5,7.888359977790496,7.990789523042907,0,2,0,-9,1,-9,1,-65.41687963556826,-9,0,0,36,1,4,1,1,1,2019,1,2,6,0,42,0,15,1,0,1,0,8.49828950225028,8.49828950225028,0,0,0,0,0,0,0,1,1,0,.169467664031008,0,0,0,52.13,57.22,6,1,0,0,9,4,1,1075,0,0,0 +6577,8051,14633,-9,14634,14632,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1069.171096372784,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,1075,0,0,0 +6577,8051,14634,14632,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.157229859873414,8.219586216824116,0,2,0,-9,1,-9,-1,46.07437129625679,-9,0,1,37,2,5,1,-9,-9,2019,1,1,11,0,30,0,15,1,0,1,0,13.0122967059383,13.0122967059383,0,0,0,0,0,0,0,1,1,0,.5076035418981231,0,0,0,54.2,57.49,6,1,0,0,9,4,1,1075,0,0,0 +6577,8051,14635,-9,14634,14632,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1029.258283832484,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,1075,0,0,0 +6578,8052,14636,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,2,0,7.938133180208145,8.188520415879767,3,0,0,0,-9,0,-1006.230659832225,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.577694089535259,8.140834102568022,0,0,44.53,36.51,3,1,0,0,2,4,1,730,0,0,0 +6579,8053,14637,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,1,0,7.384331375583473,7.09057753338154,3,0,0,0,-9,0,-948.8289561227599,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.28939690372663,0,0,39.12,25.41,3,1,0,0,7,3,1,471,0,0,0 +6580,8054,14638,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,7.246946128389225,7.137948562390549,3,0,0,0,-9,0,-985.9810250322374,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,.8564704091045992,0,0,0,0,1.817791474535866,1,1,0,4.215313649191915,7.094617394727768,0,0,48.43,30.46,5,1,0,0,9,3,0,1237,0,0,0 +6581,8055,14639,14640,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,2,8.65947545641202,8.630595807207568,0,1,0,-9,5,0,-2,-36.69350919533282,0,0,0,51,3,4,1,2,3,2019,1,2,20,8,50,64,15,1,8,1,0,9.364624078188548,9.364624078188548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.93,46.68,2,1,0,1,12,5,0,3393.5,0,0,0 +6581,8055,14640,14639,-9,-9,2,1,1,51,1,0,0,0,3,-9,2,1,0,4,7.859527190952483,8.025394021846637,0,1,0,-9,5,0,2,13.99205924921948,0,0,0,49,2,2,1,-9,-9,2019,1,1,20,6,38,0,15,1,6,1,0,8.238851137265302,8.238851137265302,0,0,0,0,0,0,0,0,0,0,0,0,0,3,38.46,59.39,7,1,0,1,12,5,0,3393.5,0,0,0 +6582,8056,14641,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,5,8.786000124803758,8.564299497795668,0,3,0,0,0,-9,0,-985.3634933488852,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,97,80,15,1,0,-9,0,8.208249019205811,8.208249019205811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,10,5,0,236,0,0,0 +6583,8057,14642,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,4,7.574888464712751,7.728611720730798,0,3,0,0,0,-9,0,-988.8671432824211,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,24,20,15,1,0,-9,0,9.927959240783172,9.927959240783172,0,0,0,0,0,0,0,0,0,0,6.259020821150736,0,7.200748034871984,3,46.39,52.95,7,1,0,0,9,3,1,785,0,0,0 +6584,8058,14643,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,4,9.016330104683746,8.688703007376061,0,3,0,0,0,-9,0,-1017.761038716268,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,104,55,15,1,0,-9,0,7.348777118185682,7.348777118185682,0,0,0,0,0,0,0,0,0,0,3.488047888156975,0,0,3,51.98,51.67,5,1,0,0,9,5,1,479,0,0,0 +6585,8059,14644,14645,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,5,9.752495259240749,10.15610264289663,0,2,0,-9,18,0,-2,8.259083014078506,0,0,0,50,1,4,1,2,2,2019,1,2,8,1,40,40,15,1,1,1,0,48.16793767926926,48.16793767926926,0,0,0,0,0,0,0,0,0,0,1.051731503953425,0,0,0,51.73,58.82,5,1,0,0,8,5,1,722,0,0,0 +6585,8059,14645,14644,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,9.120871249973973,8.885773038178209,0,2,0,-9,18,0,2,24.25111267333562,0,0,0,48,2,5,1,3,2,2019,1,1,17,5,29,39,15,1,5,1,0,34.84151352141169,34.84151352141169,0,0,0,0,0,0,0,0,0,0,.4977421636842403,0,0,0,45.91,59.89,6,1,0,0,8,5,1,722,0,0,0 +6585,8059,14646,-9,14645,14644,4,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-887.2859121857157,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,1,0,0,8,5,1,722,0,0,0 +6586,8060,14647,14648,-9,-9,2,1,1,25,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,2,0,1,96.98181388722257,0,1,0,24,1,5,1,-9,-9,2019,3,1,10,0,0,42,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,1,0,4,4,1,212,0,0,0 +6586,8060,14648,14647,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,5,8.859276512890041,8.542341338747811,0,1,0,-9,2,0,-1,-71.47349330552824,0,1,1,25,2,4,3,2,2,2019,2,2,12,1,46,48,15,1,1,3,0,14.70599598357759,14.70599598357759,0,0,0,0,0,0,0,0,0,0,3.956355987065539,0,0,0,43.66,59.97,5,1,0,0,4,4,1,212,0,0,0 +6587,8061,14649,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-938.7820319492599,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,43,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.853257029588633,0,0,0,52.66,56.94,1,1,1,0,8,1,0,693,0,0,0 +6588,8062,14650,14651,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,7.71392452030332,7.701546776872674,0,2,0,-9,15,0,3,50.64240531694033,0,0,0,46,2,4,1,3,3,2019,1,2,14,2,42,38,15,1,2,1,0,5.356997466581425,5.356997466581425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.38,48.9,3,3,0,1,5,4,1,1941,0,0,0 +6588,8062,14651,14650,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,4,8.194684966064703,8.45771927508018,0,2,0,-9,24,0,-3,33.65302817116174,0,0,0,49,2,3,1,3,3,2019,1,1,10,0,23,23,15,1,1,1,0,26.39581165926919,26.39581165926919,0,0,0,0,0,0,0,1,1,0,1.402602639624448,0,0,0,39.58,57.61,5,3,0,0,5,4,1,1941,0,0,0 +6588,8063,14652,-9,14651,14650,4,1,0,18,2,0,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-988.9853212386339,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,32,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.024668689652403,0,0,0,5.45,59.85,1,3,1,1,5,4,1,281,0,0,0 +6589,8064,14653,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,2,1,0,4,8.972407863308126,9.120871863544888,0,3,0,0,0,-9,0,-1017.139194024395,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,40,48,15,1,5,-9,0,28.98709565387905,28.98709565387905,0,0,0,0,0,0,0,0,0,0,7.010572968693426,0,0,0,46.63,59.72,3,1,0,0,12,5,1,383,0,0,0 +6589,8065,14654,-9,-9,14653,2,1,0,18,2,0,0,1,2,0,7,2,0,4,5.596164008955054,5.562766929844564,0,3,0,0,0,-9,0,-996.9015096533709,-9,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,8,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,12,2,1,342,0,0,0 +6589,8066,14655,-9,-9,-9,3,1,0,31,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1164.744291866543,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573473430024167,0,0,0,54.2,57.49,6,3,1,0,12,1,1,362,0,0,0 +6589,8067,14656,-9,-9,-9,4,1,0,30,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-892.0395965893384,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.1827032104615281,0,0,0,41.47,58.08,5,3,1,0,12,1,1,752,0,0,0 +6590,8068,14657,14658,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.792374895959663,8.830050749882206,7.723884367119211,1,0,-9,8,0,5,-160.0496097405652,0,0,0,52,3,3,1,2,2,2019,1,2,8,0,42,42,15,1,0,1,0,14.68836685827038,14.68836685827038,0,0,0,0,0,0,0,0,0,0,7.170727034046931,7.688193888759796,0,0,55.19,54.26,6,1,0,0,5,5,1,647,0,0,0 +6590,8068,14658,14657,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,3,7.097158191611097,6.823006170204434,0,1,0,-9,8,0,-5,21.24526086137047,0,0,0,57,2,4,1,-9,-9,2019,1,1,34,12,16,0,15,1,12,1,0,7.566620059418026,7.566620059418026,0,0,0,0,0,0,0,0,0,0,3.444830214646675,0,0,0,28.37,42.65,2,1,0,1,5,5,1,647,0,0,0 +6591,8069,14659,14661,-9,-9,2,1,0,39,1,0,2,0,1,-9,7,2,0,4,0,0,0,2,0,-9,11,0,-10,19.15281175047728,1,0,1,49,1,4,1,3,3,2019,3,1,16,4,0,6,15,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,6,3,0,0,9,5,1,598,0,0,0 +6591,8069,14660,-9,14659,14661,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1114.609452214994,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,9,5,1,598,0,0,0 +6591,8069,14661,14659,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,4,9.607396973059862,9.459191497168487,0,2,0,-9,11,0,10,1.098010897515406,0,0,0,39,1,4,2,3,3,2019,2,2,10,1,52,50,15,1,1,2,0,32.75995309583521,32.75995309583521,0,0,0,0,0,0,0,0,0,0,1.620817045576179,0,0,0,51.24,58.84,6,1,0,0,9,5,1,598,0,0,0 +6591,8069,14662,-9,14659,14661,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-811.9517783342134,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,2,0,0,9,5,1,598,0,0,0 +6592,8070,14663,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,6.30725835699145,6.201902051794052,3,0,0,0,-9,0,-955.7045107943446,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,1,0,0,5.66125572198341,3.483098061875284,0,0,1,1,0,1.315374307770145,6.345557759967343,0,0,40.39,15.66,3,1,0,0,4,2,1,564,0,0,0 +6593,8071,14664,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,8.111686036196492,8.326112237093215,0,3,0,0,0,-9,0,-1100.301851816572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,12.14551722134926,12.14551722134926,0,0,0,0,0,0,0,1,1,0,2.349154213790706,0,0,0,54.2,57.49,6,1,0,0,4,4,1,769,0,0,0 +6594,8072,14665,14666,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,3,8.325390456065476,8.387284569257902,0,2,0,-9,8,0,3,82.65683642118857,0,0,0,31,2,4,1,2,2,2019,1,2,6,0,41,37,15,1,0,1,0,10.16889403978112,10.16889403978112,0,0,0,0,0,0,0,0,0,0,.8943424939613261,0,0,0,57.33,53.46,6,1,0,0,9,4,1,675.6666666666666,0,0,0 +6594,8072,14666,14665,-9,-9,2,1,0,31,1,1,1,0,2,-9,2,1,0,4,7.704675354633198,8.044900673703694,0,2,0,-9,8,0,-3,132.5266772315193,0,0,1,34,2,3,1,-9,-9,2019,1,1,10,0,30,38,15,1,0,1,0,8.434580022737897,8.434580022737897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,9,4,1,675.6666666666666,0,0,0 +6594,8072,14667,-9,14666,14665,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-989.2508538912009,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,9,4,1,675.6666666666666,0,0,0 +6595,8073,14668,14669,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,5,7.487873451506368,7.326732676943427,0,1,0,-9,24,0,2,-92.76830409725254,-9,0,0,45,1,4,1,2,2,2019,1,1,5,0,40,0,15,1,0,1,0,4.674315475172734,4.674315475172734,0,0,0,0,0,0,0,0,0,0,4.827933145825266,0,0,0,62.39,56.71,6,1,0,0,12,5,1,942,0,0,0 +6595,8073,14669,14668,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,4,8.928895581851748,9.390958850986888,6.413034788670889,1,0,-9,24,0,-2,-59.90311311369024,0,0,0,47,1,5,1,2,2,2019,1,2,7,0,50,37,15,1,0,1,0,20.89848868736602,20.89848868736602,0,0,0,0,0,0,0,0,0,0,0,7.174082417360404,4.012637995876302,3,57.16,56.15,6,1,0,0,12,5,1,942,0,0,0 +6596,8074,14670,14671,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.152590693678263,7.865222480294662,5.568515822702942,1,0,-9,25,0,-5,-85.74045509238437,0,0,0,62,2,2,1,3,2,2019,1,1,22,9,42,27,15,1,9,1,0,6.428226325198244,6.428226325198244,0,0,0,0,0,0,0,0,0,0,2.809802269515288,6.042641827123335,0,3,38.34,62.12,6,1,0,0,8,5,1,345,0,0,0 +6596,8074,14671,14670,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.168613995693711,8.439163736131876,6.664537264488819,1,0,-9,24,0,5,27.49865292712609,0,0,0,57,2,4,1,2,2,2019,1,2,19,8,40,40,15,1,8,1,0,9.170891039997022,9.170891039997022,0,0,0,0,0,0,0,0,0,0,7.0507052835646,0,0,0,44.24,35.51,3,1,0,0,8,5,1,345,0,0,0 +6596,8075,14672,-9,14670,14671,3,1,0,20,2,0,0,0,2,1,2,1,0,3,7.555196225723556,7.253168153397969,0,3,0,0,0,-9,0,-926.9204712617511,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,38,0,15,1,3,-9,1,4.785488535103012,4.785488535103012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.61,68.48,4,1,0,0,8,3,1,2178,0,0,0 +6597,8076,14673,14674,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,4,8.212574455009774,8.116730507606693,0,2,0,-9,2,0,-2,-24.08941847665659,0,0,1,33,1,4,1,2,2,2019,1,3,12,0,30,20,15,1,0,1,0,9.473659237795918,9.473659237795918,0,0,0,0,0,0,0,1,1,0,0,0,18.99930514850127,3,28.1,66.68000000000001,7,1,0,0,6,4,1,921.25,0,0,0 +6597,8076,14674,14673,-9,-9,3,1,1,33,1,0,2,0,1,-9,2,1,0,4,8.221922511474379,8.483086573335482,0,2,0,-9,2,0,2,65.45483942360248,0,0,0,31,2,4,1,-9,-9,2019,1,1,8,0,44,50,15,1,0,1,0,9.026468570104141,9.026468570104141,0,0,0,0,0,0,0,1,1,0,0,0,17.4644802717682,3,54.79,55.86,6,2,0,0,6,4,1,921.25,0,0,0 +6597,8076,14675,-9,14673,14674,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.3670644657301,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,6,4,1,921.25,0,0,0 +6597,8076,14676,-9,14673,14674,2,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.072768208515,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,4,1,921.25,0,0,0 +6598,8077,14677,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,5.640243729128874,5.450638464642577,3,0,0,0,-9,0,-968.3842112487334,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.5578762411662762,5.696069378298168,0,0,61.61,37.79,6,1,0,0,9,2,1,546,0,0,0 +6599,8078,14678,-9,14680,14679,1,1,0,46,2,0,0,0,2,-9,2,1,0,2,9.0812751834371,9.143728164379793,0,3,0,-9,0,-9,0,-1009.712819547936,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,43,0,15,1,0,-9,1,23.07092539340821,23.07092539340821,0,0,0,0,0,0,0,1,1,0,8.893565654208359,0,0,0,48.83,27.86,4,1,0,0,8,5,1,646,0,0,0 +6599,8079,14679,14680,-9,-9,3,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,1,-9,7,0,-9,0,0,68,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,55.2,4,1,0,0,8,1,1,2190,0,0,0 +6599,8079,14680,14679,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,-7,0,-9,0,0,75,3,4,3,-9,-9,2019,4,3,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.67,39.17,4,1,0,0,8,1,1,2190,0,0,0 +6600,8080,14681,14682,-9,-9,1,1,1,69,1,0,0,0,3,-9,1,1,0,3,0,7.015388805068233,7.383540099957495,1,0,-9,22,0,14,-150.7817084334375,0,0,0,55,2,4,1,3,3,2019,1,2,9,0,5,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.945918541433207,7.036791692868947,0,0,45.84,50.44,6,1,0,0,7,3,1,1124.5,0,0,0 +6600,8080,14682,14681,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.146914205222505,7.22581036302739,0,1,0,-9,22,0,-14,36.83079887585608,0,0,0,69,3,3,1,3,3,2019,1,1,8,0,24,27,15,1,0,1,0,6.686421196494387,6.686421196494387,0,0,0,0,0,0,0,1,1,0,6.013559099253628,0,0,0,57.16,56.15,6,1,0,0,7,3,1,1124.5,0,0,0 +6601,8081,14683,14684,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,6.586700439244933,6.569217846671865,1,0,-9,11,0,2,-67.10277627337933,0,0,0,65,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.77061038113286,0,0,54.37,54.8,7,1,0,0,4,3,1,760,0,0,0 +6601,8081,14684,14683,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,7.577406367181855,7.386522119877765,1,0,-9,11,0,-2,-19.43305989066079,0,0,0,67,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.115259007671897,0,0,57.63,45.09,4,1,0,0,4,3,1,760,0,0,0 +6602,8082,14685,14686,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,8.13704933553171,7.66626612332085,1,0,-9,9,0,1,-211.2885425524958,0,0,0,81,1,4,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.567899906199047,7.831552857856918,0,0,41.6,53.68,6,1,0,0,13,4,1,714,0,0,0 +6602,8082,14686,14685,-9,-9,2,1,0,81,1,0,0,0,1,-9,4,3,0,4,0,7.364345268420591,7.546928369535385,1,0,-9,9,0,-1,-51.08864391687125,0,0,0,82,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.929772157989162,7.396448571455258,0,0,61.41,46.03,6,1,0,0,13,4,1,714,0,0,0 +6603,8083,14687,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,2,0,7.136280121139777,7.549238464552483,3,0,0,0,-9,0,-947.1022448813652,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.315025300864626,0,0,50.99,36.51,4,1,0,0,2,3,1,75,0,0,0 +6604,8084,14688,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,2,7.113879453591097,7.236304461525106,0,3,0,0,0,-9,0,-963.3373121192656,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,20,27,15,1,2,-9,0,8.384231277063719,8.384231277063719,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.7,31.56,4,1,0,0,12,3,1,228,0,0,0 +6605,8085,14689,14690,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,2,0,8.366306424560484,8.509044110181897,1,0,-9,59,0,2,-4.066886124448104,0,0,0,79,2,3,3,3,2,2019,4,1,7,0,0,25,15,4,0,4,0,0,0,1,3.236756007640016,0,0,0,0,47.77297999547,1,1,0,8.051401756687721,8.243975813784228,0,0,60.19,22.38,6,1,0,0,10,4,1,424,0,0,0 +6605,8085,14690,14689,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,7.306042905317116,7.168473765131144,1,0,-9,59,0,-2,40.08722691839223,0,0,0,81,1,2,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.726817998955934,7.316262957181559,0,0,53.74,38.58,4,1,0,0,10,4,1,424,0,0,0 +6606,8086,14691,14692,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.108998496076529,7.30412105842028,1,0,-9,25,0,23,141.7055400151147,0,0,0,52,2,3,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.160543090480264,7.087053754055238,0,0,48.56,53.31,7,1,0,0,9,2,1,657,0,0,0 +6606,8086,14692,14691,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,6.557453352173526,6.508432557388179,0,1,0,-9,25,0,-23,174.5088161766831,0,0,0,75,2,3,3,3,1,2019,2,2,13,1,11,9,15,1,1,4,0,7.861174094115388,7.861174094115388,0,0,0,0,0,0,0,1,1,0,1.063092684854618,0,15.31797198097962,1,32.93,61.75,3,1,0,0,9,2,1,657,0,0,0 +6607,8087,14693,14694,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,5.768781370994017,5.974603689073474,1,0,-9,9,0,2,-127.9027627863573,0,0,0,67,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.762048687282379,6.071081953870975,0,0,58.32,50.22,6,1,0,0,5,2,1,660.5,0,0,0 +6607,8087,14694,14693,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,4.254564968077441,4.311718046663652,1,0,-9,9,0,-2,73.4962504706786,0,0,0,69,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.0157772140201669,4.265224257213454,0,0,55.96,49.93,5,1,0,0,5,2,1,660.5,0,0,0 +6608,8088,14695,14696,-9,-9,2,1,0,52,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,31,0,1,-24.45210713489578,0,0,0,51,2,2,1,-9,-9,2019,3,1,12,1,0,42,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.753891552254402,3,50.91,28.35,6,3,0,0,6,2,1,672,0,0,0 +6608,8088,14696,14695,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,6.996496411928669,6.959581654996173,0,1,0,-9,31,0,-1,92.5966081522411,-9,0,0,52,2,2,3,3,3,2019,2,2,6,0,20,0,15,1,0,3,0,6.317203497974566,6.317203497974566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.94,49.98,4,3,0,0,6,2,1,672,0,0,0 +6608,8089,14697,-9,14695,14696,3,1,0,20,2,0,0,0,2,-9,11,3,0,4,6.962040419035393,6.68841537250762,0,3,0,0,0,-9,0,-1051.649807622461,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,38,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.79,6,3,0,1,6,2,1,337,0,0,0 +6609,8090,14698,-9,-9,-9,1,1,0,40,2,0,2,0,1,-9,1,1,0,4,6.597593556579636,7.20923058857664,6.483236631961398,2,0,-9,2,0,6,-107.812658061901,0,0,1,-9,-9,-9,-9,2,2,2019,1,4,7,0,29,27,15,1,0,-9,0,3.16828875756143,3.16828875756143,0,0,0,0,0,0,0,1,1,0,6.325661507301819,0,42.25425134521432,3,59.14,52.5,6,1,0,0,4,3,1,396.3333333333333,0,0,0 +6609,8090,14699,-9,14698,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.815483612752,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,396.3333333333333,0,0,0 +6609,8090,14700,-9,14698,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.835067291072,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,3,1,396.3333333333333,0,0,0 +6609,8091,14701,-9,-9,-9,4,1,0,34,2,0,2,0,2,-9,2,1,0,3,7.581471854266418,8.104115442153807,0,2,0,-9,2,0,-6,-11.95389882592199,-9,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,22,9,30,0,15,1,9,-9,0,7.678992451179832,7.678992451179832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.28,57.07,3,1,0,1,4,3,1,1549,0,0,0 +6610,8092,14702,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,1,0,7.154899333010025,7.060701579856248,3,0,0,0,-9,0,-840.0847611364709,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.169308888810698,11.21938094054108,3,43.83,19.3,3,1,0,0,6,3,1,494,0,0,0 +6611,8093,14703,14704,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,7.668128342562166,7.568079231170257,1,0,-9,44,0,1,-55.45959718218565,0,0,0,62,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.876262946194104,7.60809539103275,0,0,57.33,53.46,6,1,0,0,12,3,1,871,0,0,0 +6611,8093,14704,14703,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,7.411898233430147,7.522097877099909,1,0,-9,44,0,-1,-26.27771522160437,0,0,0,63,1,3,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.857482332634122,0,0,42.37,45.38,5,1,0,0,12,3,1,871,0,0,0 +6612,8094,14705,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,2,0,7.201754641368526,6.920679925945997,3,0,0,0,-9,0,-995.2763691120508,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.146190384404942,7.092340579183468,0,0,33.49,29.6,3,1,0,0,10,2,0,833,0,0,0 +6613,8095,14706,-9,14707,14708,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.007132684322,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,8,5,1,916.5,0,0,0 +6613,8095,14707,14708,-9,-9,2,1,0,33,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,10,0,-4,-117.3977023740724,0,0,1,37,1,4,1,1,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,7,3,0,0,8,5,1,916.5,0,0,0 +6613,8095,14708,14707,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,4,9.429907513408386,9.712211813490125,0,2,0,-9,10,0,4,94.16065044955656,0,0,0,33,1,4,3,1,1,2019,2,2,6,0,40,50,15,1,0,3,0,50.66213872229995,50.66213872229995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,3,0,0,8,5,1,916.5,0,0,0 +6613,8095,14709,-9,14707,14708,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.370311724895,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,3,0,0,8,5,1,916.5,0,0,0 +6614,8096,14710,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,4,0,6.609002523789452,6.312143224948835,3,0,0,0,-9,0,-1169.582122610208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.72566855516199,6.346653912614248,0,0,58.15,52.91,7,1,0,0,8,2,1,2996,0,0,0 +6615,8097,14711,-9,-9,-9,1,1,1,63,3,0,1,0,2,-9,4,3,0,4,0,8.258323737951663,8.428100622183488,4,0,-9,0,1,0,-929.1767985336356,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.082904138702125,8.498537052445327,0,0,46.39,60.99,6,1,0,0,13,4,1,1222,0,0,0 +6616,8098,14712,14713,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,4,8.95222743447955,9.140991794367658,0,2,0,-9,11,0,3,-49.37779664690129,0,0,0,36,2,4,1,2,1,2019,1,2,8,0,39,40,15,1,0,1,0,23.33417905350915,23.33417905350915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,1074.25,0,0,0 +6616,8098,14713,14712,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,4,8.476443396854739,8.846136624314248,0,2,0,-9,13,0,-3,71.10438505236604,0,0,1,39,1,4,1,2,1,2019,1,1,14,2,39,41,15,1,2,1,0,17.88809850117825,17.88809850117825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.42,62.39,6,1,0,0,12,5,1,1074.25,0,0,0 +6616,8098,14714,-9,14713,14712,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1157.919682134702,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,1074.25,0,0,0 +6616,8098,14715,-9,14713,14712,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.1855292694331,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,1074.25,0,0,0 +6617,8099,14716,-9,14717,14718,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.420644836882,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,6,5,1,635.25,0,0,0 +6617,8099,14717,14718,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.957133651151853,9.042855021841321,0,2,0,-9,19,0,-6,82.48759931176772,0,0,1,46,1,5,1,2,2,2019,1,2,10,1,47,48,15,1,1,1,0,17.24988033848493,17.24988033848493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,6,5,1,635.25,0,0,0 +6617,8099,14718,14717,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,5,9.475944578981657,9.533671295963721,0,2,0,-9,19,0,6,-1.102372506456063,0,0,0,40,1,4,1,3,3,2019,1,1,8,0,42,40,15,1,0,1,0,30.297969099323,30.297969099323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,6,5,1,635.25,0,0,0 +6617,8099,14719,-9,14717,14718,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.034411298353,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,635.25,0,0,0 +6618,8100,14720,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,4,0,10.00494222466723,10.14571973439892,3,0,0,0,-9,0,-946.0257177022664,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,9.067472019666724,8.976128416401675,2.434429718969426,3,47.9,45.39,6,1,0,0,4,5,1,513,0,0,0 +6619,8101,14721,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,2,1,0,2,7.856437284901873,7.828543361033939,0,3,0,0,0,-9,0,-1104.852984659045,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,48,0,15,1,1,-9,0,6.680673815100072,6.680673815100072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.2,46.98,5,1,0,0,1,3,0,1075,0,0,0 +6620,8102,14722,14723,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,1,34,-9,10,82.90485929851521,0,0,0,58,2,1,3,3,2,2019,4,2,25,10,0,0,15,4,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,113.8343800471411,1,49.33,16.96,1,1,0,1,10,2,0,673.5,0,0,0 +6620,8102,14723,14722,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,1,0,5.344059323648628,5.101899265129274,1,0,1,1,-9,-10,-47.92569771236435,0,0,0,68,2,2,3,-9,-9,2019,4,1,34,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.591803500442066,5.125616839103496,14.04660737675524,1,21.97,21.3,1,1,0,1,10,2,0,673.5,0,0,0 +6621,8103,14724,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,2,1,0,2,6.27045007092893,6.128483441768675,0,3,0,0,0,-9,0,-960.0769059582907,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,12,8,15,1,0,-9,0,6.030135535978964,6.030135535978964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,51,5,1,0,0,8,2,1,1726,0,0,0 +6622,8104,14725,14726,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,5,7.766899039402519,8.06378882491129,0,1,0,-9,14,0,-16,36.09014458295925,0,0,1,51,2,2,1,3,2,2019,1,1,13,3,40,40,15,1,3,1,0,10.71644518521436,10.71644518521436,0,0,0,0,0,0,0,0,0,0,0,0,0,1,51.73,58.82,5,1,0,0,10,5,0,832.5,0,0,0 +6622,8104,14726,14725,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,8.517924622612689,8.26439574422602,0,1,0,-9,14,0,16,100.3217558747216,0,0,0,35,2,5,1,2,3,2019,1,2,15,3,37,40,15,1,3,1,0,11.78617611874243,11.78617611874243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.68,41.29,4,1,0,0,10,5,0,832.5,0,0,0 +6623,8105,14727,-9,-9,-9,1,1,0,76,2,0,0,0,1,-9,4,3,0,2,0,7.577396141780893,7.595535065344367,3,0,0,0,-9,0,-1027.814774831814,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,5.945647919430911,0,0,0,1.911116840828975,23.2368447619137,1,1,0,2.808776342549981,7.525066602771973,0,0,53.89,22.83,6,1,0,0,13,3,1,216,0,0,0 +6624,8106,14728,14729,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.929162429989528,8.544110561196344,7.699099008140281,1,0,-9,6,0,3,2.200949752230857,0,0,0,54,2,2,1,2,3,2019,1,2,10,1,24,0,15,1,1,1,0,17.78944037128941,17.78944037128941,0,0,0,0,0,0,0,0,0,0,0,7.73695034407669,7.105567661214391,3,48.71,51.81,6,1,0,0,12,5,1,770,0,0,0 +6624,8106,14729,14728,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.643980671671436,8.834750362620383,0,1,0,-9,6,0,-3,38.73941677314747,0,0,0,57,2,3,1,3,3,2019,1,1,9,0,70,0,15,1,0,1,0,10.11111844518076,10.11111844518076,0,0,0,0,0,0,0,0,0,0,0,0,3.324303568209193,3,64.78,32.7,6,3,0,0,12,5,1,770,0,0,0 +6625,8107,14730,14732,-9,-9,1,1,0,41,1,0,1,0,3,-9,2,1,0,4,7.273054511145101,7.237213049500673,0,2,0,-9,24,0,-3,138.6342908539749,0,0,1,44,3,3,3,3,3,2019,2,2,10,0,20,20,15,1,1,3,0,7.491812062323318,7.491812062323318,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,45.76,2,1,0,0,5,2,0,936,0,0,0 +6625,8107,14731,-9,14730,14732,5,1,1,17,2,0,1,1,2,0,7,2,0,4,5.712833058948061,5.851683959678505,0,2,0,0,0,-9,0,-903.9325425770771,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,7,1,0,0,5,2,0,936,0,0,0 +6625,8107,14732,14730,-9,-9,2,1,1,44,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,24,0,3,157.7139204020694,0,0,0,41,3,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.08,40.76,4,1,1,0,5,2,0,936,0,0,0 +6625,8108,14733,-9,14730,14732,3,1,1,20,2,0,1,0,3,-9,2,1,0,4,7.962120197968438,7.974849097657004,0,3,0,0,0,-9,0,-1118.032303021839,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,40,15,1,0,-9,1,8.540725912681816,8.540725912681816,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,5,4,0,507,0,0,0 +6625,8109,14734,-9,14730,14732,4,1,1,19,2,0,1,0,2,1,2,1,0,4,7.800134513842393,7.154163737905972,0,3,0,0,0,-9,0,-1062.88815204736,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,97,0,15,1,2,-9,1,2.034599480832086,2.034599480832086,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,5,3,0,992,0,0,0 +6626,8110,14735,14736,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,3,8.141414797449483,8.154356858388795,0,2,0,-9,6,0,3,4.376962813987881,0,0,0,44,2,2,1,2,2,2019,1,1,15,4,37,37,15,1,4,1,0,12.13086440627928,12.13086440627928,0,0,0,0,0,0,0,0,0,0,0,0,14.61584440068454,3,36.08,60.5,5,1,0,0,1,5,1,462.3333333333333,0,0,0 +6626,8110,14736,14735,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,2,8.886967004837272,9.019130453925477,0,2,0,-9,6,0,-3,-25.14745348351904,0,0,0,47,2,3,1,2,2,2019,1,2,27,9,37,37,15,1,9,1,0,19.43624783373482,19.43624783373482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.52,49.7,5,1,0,0,1,5,1,462.3333333333333,0,0,0 +6626,8110,14737,-9,14735,14736,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1002.480452115179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,5,1,0,0,1,5,1,462.3333333333333,0,0,0 +6627,8111,14738,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,3,0,6.321774888575296,6.620282378503587,3,0,0,0,-9,0,-864.9313734278558,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.405599855764753,6.046419600587219,0,0,45.57,53.5,7,1,0,1,5,2,1,771,0,0,0 +6628,8112,14739,14740,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,3,8.265899532306744,8.068444319574215,0,1,0,-9,8,0,-7,-24.82279223279756,0,0,0,67,2,3,3,3,2,2019,2,2,9,0,70,36,15,1,0,4,0,4.593655238834709,4.593655238834709,0,0,0,0,0,0,0,1,1,0,0,0,120.6113485545577,3,56.05,45.76,6,1,0,0,6,3,1,744,0,0,0 +6628,8112,14740,14739,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,5.43778372133181,5.55181121238695,1,0,-9,8,0,7,-37.7348353156311,0,0,0,60,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.360993551990189,5.651735840085345,0,0,55.96,49.93,6,1,0,0,6,3,1,744,0,0,0 +6629,8113,14741,14743,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,4,8.454401166593874,8.72593068300287,0,2,0,-9,25,0,-1,-135.0639774406794,0,0,0,43,2,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,18.51899327767145,18.51899327767145,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,4,1,0,0,12,4,1,1249.333333333333,0,0,0 +6629,8113,14742,-9,14743,14741,4,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-923.9913124811641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,12,4,1,1249.333333333333,0,0,0 +6629,8113,14743,14741,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,3,8.116475890238622,7.873892370081406,0,2,0,-9,6,0,1,-121.4668292959218,0,0,1,42,2,4,1,-9,-9,2019,1,1,13,1,35,45,15,1,1,1,0,9.132252919257464,9.132252919257464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,56.07,6,1,0,0,12,4,1,1249.333333333333,0,0,0 +6630,8114,14744,14745,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,2,0,7.654971991087644,7.688817538581683,1,0,-9,10,0,-2,101.0744900151033,0,0,0,66,1,4,3,2,2,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.180489928629586,7.722738161099936,6.444581123909848,3,42.99,52.08,6,3,0,0,8,4,1,412.5,0,0,0 +6630,8114,14745,14744,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,8.059667594686832,8.001148143606185,1,0,-9,10,0,2,-89.2914625690473,0,0,0,64,1,2,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.831528326972574,8.193661049804792,0,0,51.77,58.57,6,1,0,0,8,4,1,412.5,0,0,0 +6631,8115,14746,14747,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,3,7.879440145288064,8.248740198600013,0,2,0,-9,19,0,-5,-66.11721456516057,0,0,1,46,1,3,1,2,2,2019,1,2,10,1,40,40,15,1,1,1,0,11.09836212493856,11.09836212493856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,3,0,0,8,4,1,977.5,0,0,0 +6631,8115,14747,14746,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,8.301880822506414,8.40985039002571,0,2,0,-9,19,0,5,-98.13991825251749,0,0,0,41,1,3,1,2,2,2019,1,1,10,0,35,40,15,1,0,1,0,15.46820951493708,15.46820951493708,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.14,52.5,6,3,0,0,8,4,1,977.5,0,0,0 +6632,8116,14748,14749,-9,-9,1,1,0,66,1,0,0,0,2,-9,1,1,0,3,5.139728832705948,7.64697920448369,7.538343239465177,1,0,-9,6,0,2,-5.304342441857935,0,0,0,64,2,3,1,2,2,2019,1,2,11,0,3,3,15,1,1,1,0,5.465823155031687,5.465823155031687,0,0,0,0,0,0,0,1,1,0,7.243103429722945,6.981460838520183,27.8318457683987,3,50,47,5,1,0,0,9,2,1,255.5,0,0,0 +6632,8116,14749,14748,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,3,4.878478634146037,4.801044674779073,0,1,0,-9,6,0,-2,82.80470509057056,0,0,0,66,2,3,1,2,1,2019,1,1,10,0,55,60,15,1,1,1,0,.2973746180512781,.2973746180512781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,1,9,2,1,255.5,0,0,0 +6633,8117,14750,14751,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,5.421776262977754,6.020749169681129,1,0,-9,47,0,0,60.19993185387314,0,0,0,68,1,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.89980188139439,5.871850236264645,0,0,57.16,56.15,7,1,0,0,11,2,1,1232.5,0,0,0 +6633,8117,14751,14750,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,5,0,7.098535412404856,7.091416940441365,1,0,-9,47,0,0,-90.46142823361129,0,0,0,68,1,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.854473041377109,7.0251203495463,0,0,57.06,57.76,7,1,0,0,11,2,1,1232.5,0,0,0 +6634,8118,14752,14753,-9,-9,1,1,0,62,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,8,0,3,63.33929156901401,0,0,0,59,2,4,1,2,2,2019,3,2,24,10,0,20,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.764459705585713,0,0,0,35.26,32.19,4,1,0,0,9,5,1,1592,0,0,0 +6634,8118,14753,14752,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,9.161729224088111,9.31055303894874,0,1,0,-9,8,0,-3,-205.7312748780903,0,0,0,62,2,2,3,2,2,2019,2,1,8,0,37,37,15,1,0,3,0,31.20247363208802,31.20247363208802,0,0,0,0,0,0,0,0,0,0,4.224740465396986,0,0,0,58.15,52.91,5,1,0,0,9,5,1,1592,0,0,0 +6634,8119,14754,-9,14752,14753,3,1,1,35,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1108.798672111043,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,38,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.214411072757378,0,0,0,37.39,53.3,5,1,1,0,9,1,1,67,0,0,0 +6635,8120,14755,14756,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,5,0,7.67053374959506,7.618057793797374,1,0,-9,14,0,-8,-30.34502533322906,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.393731719444888,7.492923157307878,0,0,60.02,56.42,7,1,0,0,2,3,1,376,0,0,0 +6635,8120,14756,14755,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,7.466407758166622,7.227270843741451,1,0,-9,14,0,8,21.88925891676645,0,0,0,61,2,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,5.857611062052946,0,0,0,0,1,1,0,6.107857863109611,7.326224515733944,0,0,63.52,21.84,6,1,0,0,2,3,1,376,0,0,0 +6636,8121,14757,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,7.644051053206579,7.549193927919731,3,0,0,0,-9,0,-1077.341691832085,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7300901703406,7.24539826419516,3.884828633690426,3,56.33,51.02,6,1,0,0,8,3,1,328,0,0,0 +6637,8122,14758,14759,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,2,9.04743914213331,8.824959466420204,0,1,0,-9,32,0,8,-71.38465617669658,0,0,0,51,2,4,1,2,2,2019,1,2,23,7,65,50,15,1,7,1,0,14.91370548707442,14.91370548707442,0,0,0,0,0,0,0,1,1,0,0,0,75.91773810020889,3,32.82,45.92,2,1,0,0,6,5,1,1644.5,0,0,0 +6637,8122,14759,14758,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,8.287802861884611,8.736783711123241,0,1,0,-9,10,0,-8,101.2271551579259,0,0,0,59,1,2,1,-9,-9,2019,1,1,5,0,28,20,15,1,0,1,0,17.55440085029111,17.55440085029111,0,0,0,0,0,0,0,1,1,0,0,0,21.27350709710693,3,62.49,55.09,6,1,0,0,6,5,1,1644.5,0,0,0 +6638,8123,14760,14761,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,39,0,-5,-60.07968964875491,0,0,0,64,1,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.337212290472016,0,0,0,43.9,57.01,6,1,0,0,4,3,1,2866,0,0,0 +6638,8123,14761,14760,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,8.034202964893392,8.322019916450701,1,0,-9,39,0,5,45.66069273876922,0,0,0,59,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.651652381988417,8.363543787758134,0,0,59.53,56.44,6,1,0,0,4,3,1,2866,0,0,0 +6639,8124,14762,14764,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,2,8.33787339291691,8.49437303311106,0,2,0,-9,4,0,3,-126.051100154132,0,1,0,24,1,3,1,-9,-9,2019,1,1,9,0,50,55,15,1,0,1,0,11.13385470773667,11.13385470773667,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.34,46.17,5,1,0,0,1,4,1,1017.666666666667,0,0,0 +6639,8124,14763,-9,14764,14762,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.9587519233762,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,4,1,1017.666666666667,0,0,0 +6639,8124,14764,14762,-9,-9,1,1,0,24,1,0,1,0,1,-9,2,1,0,3,8.045660988218941,8.053542372203014,0,2,0,-9,4,0,-3,26.34424307960985,0,1,1,27,2,2,1,1,2,2019,1,2,14,2,38,38,15,1,2,1,0,8.006740209230275,8.006740209230275,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,58.26,6,1,0,0,1,4,1,1017.666666666667,0,0,0 +6640,8125,14765,-9,-9,-9,1,1,1,39,3,0,0,0,1,-9,2,1,0,2,8.404711563862984,8.677975436486006,0,3,0,0,0,-9,0,-1083.996288267522,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,45,39,15,1,1,-9,0,14.36054654652967,14.36054654652967,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,41.9,6,1,0,0,12,5,1,244,0,0,0 +6641,8126,14766,14767,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,7.722478444614648,7.737090674033055,1,0,-9,59,0,3,33.33500681190571,0,0,0,80,3,4,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.190968376309415,7.942307582959164,6.908620570777715,3,53.87,42.71,6,1,0,0,11,3,1,219,0,0,0 +6641,8126,14767,14766,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,59,0,-3,-9.780364445965519,0,0,0,83,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.67,42.47,6,1,0,0,11,3,1,219,0,0,0 +6642,8127,14768,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1028.642700082447,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.567174883005155,0,12.76527420435334,3,62.39,56.71,6,1,0,0,13,1,1,849,0,0,0 +6643,8128,14769,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,2,8.285035830412289,8.364968094773349,0,3,0,-9,0,-9,0,-1020.530367054939,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,56,0,15,1,3,-9,0,11.95130622632356,11.95130622632356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.04,20.11,4,1,0,1,2,4,0,2687,0,0,0 +6644,8129,14770,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-996.2530160031724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,2.457326751787816,0,0,1,1,0,0,0,0,0,40.55,21,4,1,0,0,2,1,1,1516,0,0,0 +6644,8130,14771,-9,-9,14770,2,1,1,28,3,0,0,0,3,-9,8,3,1,5,0,0,0,3,0,0,0,-9,0,-990.4373070348028,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.96,58.98,6,1,0,0,2,1,1,756,0,0,0 +6644,8131,14772,-9,-9,14770,3,1,1,29,3,0,0,0,2,-9,2,1,0,4,7.698789044204649,7.908560044093344,0,3,0,0,0,-9,0,-1161.696968163867,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,30,24,15,1,1,-9,1,8.20777760447085,8.20777760447085,0,0,0,0,0,0,0,1,1,0,0,0,7.003693706567332,3,41.24,62.14,3,1,0,0,2,3,1,505,0,0,0 +6645,8132,14773,14774,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,2,7.727093457352025,7.70909473257592,0,2,0,-9,9,0,-29,-21.09091165311101,0,0,1,66,2,3,1,2,2,2019,1,1,26,12,30,24,15,1,12,1,0,10.0363325672291,10.0363325672291,0,0,0,0,0,0,0,1,1,0,3.156917217223846,0,0,0,23.73,41.92,3,1,0,0,5,3,1,1356,0,0,0 +6645,8132,14774,14773,-9,-9,1,1,1,66,1,0,2,0,2,-9,2,1,0,3,7.584509169193951,8.115421520488203,7.064689699151749,2,0,-9,9,0,29,-117.8169792802587,0,0,0,37,2,2,1,3,-9,2019,1,2,10,0,30,1,15,1,0,1,0,9.640359535382839,9.640359535382839,0,0,0,0,0,0,0,1,1,0,0,7.059129099897453,0,0,56.94,49.53,6,1,0,0,5,3,1,1356,0,0,0 +6645,8132,14775,-9,14773,14774,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.9855995463207,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,1356,0,0,0 +6645,8132,14776,-9,14773,14774,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.1982479754748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,1356,0,0,0 +6646,8133,14777,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1108.364362895207,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.39379089173485,3,24.79,24.16,3,1,0,0,7,1,0,651,0,0,0 +6647,8134,14778,14779,-9,-9,1,1,1,48,1,0,1,0,1,-9,8,3,1,3,9.186475428151383,9.201398731784828,0,2,0,-9,21,0,-1,1.800711151325546,0,0,0,49,1,4,1,2,-9,2019,3,2,5,0,38,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.124170394484077,0,0,0,56.27,42.92,6,1,0,0,6,5,1,895,0,0,0 +6647,8134,14779,14778,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,4,8.193060658974803,7.978055667760904,0,2,0,-9,21,0,1,-94.96581108846657,0,0,0,48,1,3,3,3,3,2019,2,1,12,1,24,23,15,1,1,3,0,15.77922167347659,15.77922167347659,0,0,0,0,0,0,0,1,1,0,1.583631957667321,0,4.080872964031029,1,48.89,34.25,5,1,0,0,6,5,1,895,0,0,0 +6648,8135,14780,14781,-9,-9,2,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.219185188408458,8.711419739328109,0,1,0,-9,4,0,8,274.871082713422,0,0,0,28,2,4,1,-9,-9,2019,1,1,10,0,46,48,15,1,1,1,0,13.66006866743503,13.66006866743503,0,0,0,0,0,0,0,0,0,0,.5681092880810429,0,0,0,50,57,5,3,0,0,8,5,1,3170,0,0,0 +6648,8135,14781,14780,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,4,8.319302648508105,8.505958887780146,0,1,0,-9,4,0,-8,-8.105792514994619,0,1,1,36,1,4,1,1,1,2019,1,2,11,0,38,41,15,1,2,1,0,12.78855037735077,12.78855037735077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,57,5,3,0,0,8,5,1,3170,0,0,0 +6649,8136,14782,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,3,8.584870695294885,8.726425941234295,0,3,0,0,0,-9,0,-942.4466943781853,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,38,39,15,1,11,-9,0,16.92551671412129,16.92551671412129,0,0,0,0,0,0,0,0,0,0,0,0,0,3,36.27,54.74,3,1,0,0,11,5,0,530,0,0,0 +6650,8137,14783,14784,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,2,8.743451482003207,8.793201115727001,0,1,0,-9,6,0,-5,38.82915335103477,0,0,0,63,2,1,1,2,2,2019,1,1,20,8,37,37,15,1,8,1,0,18.91627349277127,18.91627349277127,0,0,0,0,0,0,0,0,0,0,0,0,.5137910846004274,2,42.46,41.62,5,1,0,0,13,5,1,862.5,0,0,0 +6650,8137,14784,14783,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,1,8.719369027133769,8.903738187524844,0,1,0,-9,6,0,5,-92.75180027691408,0,0,0,58,2,2,1,2,2,2019,1,2,16,4,37,40,15,1,4,1,0,19.83119670731852,19.83119670731852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.77,14.27,4,1,0,0,13,5,1,862.5,0,0,0 +6650,8138,14785,-9,14783,14784,3,1,1,24,2,0,0,0,1,-9,2,1,0,2,7.564650006269806,7.708694454635474,0,3,0,0,0,-9,0,-1010.966395238234,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,28,16,15,1,0,-9,1,8.809336955783927,8.809336955783927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,43.22,6,1,0,0,13,3,1,1170,0,0,0 +6651,8139,14786,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,2,1,0,4,7.592647747038749,7.512479093306464,0,3,0,0,0,-9,0,-959.7146881679156,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,18,18,15,1,0,-9,0,11.80656884897246,11.80656884897246,0,0,0,0,0,0,0,0,0,0,3.233742708588576,0,0,0,41.3,60.77,6,1,0,0,2,3,1,243,0,0,0 +6652,8140,14787,14789,-9,-9,1,1,1,24,1,0,1,0,1,-9,2,1,0,4,8.029645381190937,8.143517228582837,0,2,0,-9,4,0,-1,6.735302326011871,0,1,0,25,1,4,1,2,2,2019,1,2,11,1,40,35,15,1,1,1,0,10.31490877884846,10.31490877884846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,1,4,1,414.3333333333333,0,0,0 +6652,8140,14788,-9,14789,14787,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1119.737583564242,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,414.3333333333333,0,0,0 +6652,8140,14789,14787,-9,-9,2,1,0,25,1,0,1,0,1,-9,2,1,0,4,7.854480453926683,8.168153689091357,0,2,0,-9,4,0,1,102.109691468924,0,1,1,24,1,4,1,-9,-9,2019,1,1,19,6,35,35,15,1,6,1,0,9.147328481904182,9.147328481904182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.43,62.49,6,1,0,0,1,4,1,414.3333333333333,0,0,0 +6653,8141,14790,14791,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,5,8.175605689982033,7.94552116836709,0,1,0,-9,6,0,-3,9.46810416449725,0,0,0,50,2,5,1,-9,-9,2019,1,2,8,1,40,43,15,1,1,1,0,9.165237320906478,9.165237320906478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,1,0,0,12,5,1,828,0,0,0 +6653,8141,14791,14790,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,5,9.246026882669545,9.26113034159274,0,1,0,-9,6,0,3,15.9748668441807,0,0,0,47,1,5,1,-9,-9,2019,1,1,12,2,43,40,15,1,2,1,0,21.93052107355449,21.93052107355449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,6,1,0,0,12,5,1,828,0,0,0 +6654,8142,14792,14793,-9,-9,1,1,1,51,1,0,2,0,1,-9,3,3,0,2,0,0,0,2,0,-9,8,0,3,-32.45078184677875,0,0,0,48,2,3,1,3,3,2019,3,2,17,5,0,37,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.278408970892287,3,32.17,54.65,3,1,1,1,12,3,1,1501.5,0,0,0 +6654,8142,14793,14792,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,3,8.221024325729974,8.298158457405302,0,2,0,-9,8,0,-3,.9323228385639091,0,0,0,51,1,2,3,3,2,2019,2,1,13,2,38,45,15,1,2,3,0,10.72996455221904,10.72996455221904,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,4,1,0,1,12,3,1,1501.5,0,0,0 +6654,8142,14794,-9,14793,14792,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-916.273392812727,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,3,1,1501.5,0,0,0 +6654,8142,14795,-9,14793,14792,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.100892401699,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,3,1,1501.5,0,0,0 +6655,8143,14796,14797,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,3,8.624307426774356,8.688034953543896,0,1,0,1,1,-9,-2,-19.65790711537759,0,0,0,42,2,3,1,2,2,2019,1,2,7,0,36,36,15,1,0,1,0,15.25687610956361,15.25687610956361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,2,5,1,593.5,0,0,0 +6655,8143,14797,14796,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,3,8.577417498971158,8.266572119982227,0,1,0,1,1,-9,2,17.69509570985542,-9,0,1,40,1,3,1,-9,-9,2019,1,1,9,0,36,0,15,1,0,1,0,14.37673285529792,14.37673285529792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,51,6,1,0,0,2,5,1,593.5,0,0,0 +6656,8144,14798,-9,14799,-9,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1000.874896614533,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,5,0,0,8,2,0,1652.666666666667,0,0,0 +6656,8144,14799,-9,-9,-9,1,1,0,48,3,0,2,0,3,-9,1,1,0,5,6.76928632969726,6.874325735778093,0,4,0,0,0,-9,0,-994.2836684324576,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,16,16,15,1,0,-9,0,5.397708280031988,5.397708280031988,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.66,50.23,4,5,0,0,8,2,0,1652.666666666667,0,0,0 +6656,8144,14800,-9,14799,-9,5,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.006597962433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,5,0,0,8,2,0,1652.666666666667,0,0,0 +6656,8145,14801,-9,14799,-9,2,1,1,21,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1072.938847552324,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,9,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.05,52.09,5,5,0,0,8,1,0,1317,0,0,0 +6656,8146,14802,-9,14799,-9,3,1,1,19,2,0,2,0,2,-9,2,1,0,5,6.668238781515171,6.532282143874104,0,3,0,0,0,-9,0,-1006.338278821152,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,21,8,15,1,0,-9,1,4.184219027166677,4.184219027166677,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.68,61,6,5,0,0,8,2,0,564,0,0,0 +6657,8147,14803,14804,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,4,7.715781260305146,8.401100657811817,7.966206626839201,1,0,-9,6,0,7,-19.21342548127771,0,0,0,53,2,3,1,3,2,2019,1,3,10,3,38,37,15,1,3,1,0,8.430602239074357,8.430602239074357,0,0,0,0,0,0,0,1,1,0,0,7.854186232142074,5.805401059016077,3,50.82,36.05,2,1,0,0,9,5,1,636.5,0,0,0 +6657,8147,14804,14803,-9,-9,3,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.528883260611776,8.470650437882323,0,1,0,-9,6,0,-7,-39.14530443791747,0,0,0,60,3,4,1,-9,-9,2019,1,1,10,0,47,37,15,1,0,1,0,9.646816129306561,9.646816129306561,0,0,0,0,0,0,0,1,1,0,2.175659051056862,0,22.02471237734617,3,49.04,55.86,4,1,0,0,9,5,1,636.5,0,0,0 +6658,8148,14805,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,6.743486968882507,7.074578876498191,3,0,-9,0,1,0,-935.3391827584549,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.949126946592208,0,0,57.33,53.46,7,1,0,0,11,2,0,649,0,0,0 +6659,8149,14806,-9,14808,14809,1,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.329941271011135,8.498950012486951,0,3,0,0,0,-9,0,-1101.340066399154,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,38,15,1,0,-9,1,8.908831914704376,8.908831914704376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.37,54.78,6,3,0,0,6,4,1,727,0,0,0 +6659,8150,14807,-9,14808,14809,2,1,1,23,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1076.75231071839,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,52.08,5,3,0,0,6,1,1,346,0,0,0 +6659,8151,14808,14809,-9,-9,4,1,0,53,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,39,0,-4,0,0,0,0,57,3,3,3,3,3,2019,4,3,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.1,36.84,6,3,1,0,6,1,1,1093,0,0,0 +6659,8151,14809,14808,-9,-9,3,1,1,57,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,39,0,4,0,0,0,0,53,3,3,3,3,3,2019,4,4,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.38,30.98,4,3,1,0,6,1,1,1093,0,0,0 +6660,8152,14810,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-920.943801316527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,3,1,0,5,1,0,203,0,0,0 +6661,8153,14811,14812,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.074954505320022,8.534533207986291,0,1,0,-9,8,0,-4,146.0311425834192,0,0,0,52,2,3,1,-9,3,2019,1,1,16,4,37,37,15,1,4,1,0,13.51068994290864,13.51068994290864,0,0,0,0,0,0,0,0,0,0,0,0,14.86255780249504,3,35.86,64.55,6,1,0,0,12,5,1,859,0,0,0 +6661,8153,14812,14811,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.423132444278281,8.416198490551206,0,1,0,-9,8,0,4,-88.33090294221228,0,0,0,48,2,4,1,3,2,2019,1,2,30,12,38,41,15,1,12,1,0,14.7945387708289,14.7945387708289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.34,34.39,2,1,0,0,12,5,1,859,0,0,0 +6662,8154,14813,-9,-9,-9,1,1,0,44,2,0,4,0,2,-9,2,1,0,4,7.098199770691106,7.057971550428743,0,4,0,0,0,-9,0,-973.543440592206,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,16,16,15,1,1,-9,0,7.590257367324694,7.590257367324694,0,0,0,0,0,0,0,1,1,0,0,0,9.019058509920185,3,50,55,6,4,0,1,8,2,0,813.6666666666666,0,0,0 +6662,8154,14814,-9,14813,-9,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-922.2074196956471,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,2,0,813.6666666666666,0,0,0 +6662,8154,14815,-9,14813,-9,3,1,0,16,2,0,4,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-893.9995858395196,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,2,0,813.6666666666666,0,0,0 +6662,8155,14816,-9,14813,-9,2,1,0,18,2,0,4,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1044.48753787252,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,4,0,0,8,2,0,247,0,0,0 +6663,8156,14817,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,3,7.046561753112913,6.821483569124029,0,3,0,0,0,-9,0,-1106.725840716246,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,24,0,15,1,0,-9,0,6.553451064114346,6.553451064114346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,5,3,0,0,4,2,1,446,0,0,0 +6663,8157,14818,-9,14817,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,4,7.940496743292835,8.154336068265673,0,3,0,0,0,-9,0,-1008.776143108855,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,39,28,15,1,0,-9,1,8.371078363824537,8.371078363824537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,4,4,1,421,0,0,0 +6664,8158,14819,14822,-9,-9,2,1,0,49,1,0,3,0,1,-9,2,1,0,5,7.771178833370999,8.016133065127116,0,2,0,-9,23,0,-5,5.607398114168453,0,0,0,54,1,4,1,2,2,2019,1,1,9,0,38,38,15,1,0,1,0,7.640199062048687,7.640199062048687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,7,5,1,973.8,0,0,0 +6664,8158,14820,-9,14819,14822,5,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1089.919030350249,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,7,5,1,973.8,0,0,0 +6664,8158,14821,-9,14819,14822,4,1,0,16,2,0,3,1,3,-9,7,2,0,5,3.516438849970775,3.56918163043408,0,2,0,0,0,-9,0,-943.5753351003814,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.39,56.64,6,1,0,0,7,5,1,973.8,0,0,0 +6664,8158,14822,14819,-9,-9,1,1,1,54,1,0,3,0,1,-9,2,1,0,4,9.554200964673759,8.998423810898537,0,2,0,-9,22,0,5,36.72284024157443,0,0,0,49,1,5,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,27.15097005013988,27.15097005013988,0,0,0,0,0,0,0,0,0,0,3.970861980989586,0,0,0,57.16,56.15,6,1,0,0,7,5,1,973.8,0,0,0 +6664,8158,14823,-9,14819,14822,3,1,0,17,2,0,3,1,2,-9,7,2,0,3,7.656490078622165,7.793109409699257,3.946485951265607,2,0,0,0,-9,0,-944.0457961071137,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,25,9,8,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.906621474593458,0,0,0,23.79,60.82,4,1,0,0,7,5,1,973.8,0,0,0 +6665,8159,14824,14825,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,3,9.619334124042863,9.230265180591275,0,1,0,-9,2,0,14,-40.10590731403465,0,0,0,45,1,5,1,-9,-9,2019,1,1,11,0,43,50,15,1,0,1,0,29.57378862433359,29.57378862433359,0,0,0,0,0,0,0,0,0,0,7.277922753611659,0,0,0,41.53,55.26,6,1,0,0,8,5,1,2287,0,0,0 +6665,8159,14825,14824,-9,-9,1,1,1,45,1,0,0,0,1,-9,1,1,0,5,7.367142828146906,7.471027661570873,0,1,0,-9,2,0,-14,37.33835362486649,0,0,0,59,1,3,1,3,2,2019,1,2,6,0,20,10,15,1,0,1,0,8.796293374244438,8.796293374244438,0,0,0,0,0,0,0,0,0,0,2.871917676326408,0,0,0,51.67,60.18,6,1,0,0,8,5,1,2287,0,0,0 +6666,8160,14826,14827,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.301550862293635,7.220748405900227,0,1,0,-9,6,0,-2,70.54318898163358,0,0,0,53,2,4,1,3,3,2019,1,1,12,0,23,23,15,1,0,1,0,7.1880089725629,7.1880089725629,0,0,0,0,0,0,0,0,0,0,0,0,3.324628538834986,3,57.16,56.15,6,1,0,0,13,4,1,596,0,0,0 +6666,8160,14827,14826,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.516479221220141,8.558986941052451,0,1,0,-9,6,0,2,14.43987549267116,-9,0,0,51,2,4,1,3,3,2019,1,2,9,0,25,0,15,1,1,1,0,19.56376431162687,19.56376431162687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,13,4,1,596,0,0,0 +6667,8161,14828,14829,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.372275435025049,7.518245189218498,1,0,-9,3,0,-1,35.1634018750838,0,0,0,69,2,3,3,-9,-9,2019,4,1,3,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.553015626875755,7.191447564947607,111.2336284442037,3,57.16,56.15,6,1,0,0,12,5,1,1453,0,0,0 +6667,8161,14829,14828,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,9.017038653514826,8.471149774385058,1,0,-9,3,0,1,32.45859596010813,0,0,0,68,2,4,3,-9,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.791090803731461,126.0358450170417,3,57.33,53.46,6,1,0,0,12,5,1,1453,0,0,0 +6668,8162,14830,-9,14831,-9,1,1,0,60,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-999.5284552689308,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.979821213225651,0,119.3395701586784,3,49.94,58.01,6,1,1,0,13,1,1,75,0,0,0 +6668,8163,14831,-9,-9,-9,2,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,4.828178044786219,4.764956697826981,3,0,-9,0,-9,0,-1073.413063245136,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,125.1165752639924,0,0,7.125148438570843,1,1,0,0,4.695597932453147,0,0,53,44,6,1,0,0,13,2,1,579,0,0,0 +6668,8164,14832,-9,14830,-9,3,1,1,28,2,0,0,0,2,-9,1,1,0,4,7.554280592393019,7.397922524085207,0,3,0,-9,0,-9,0,-981.2385335271551,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,30,0,15,1,0,-9,1,6.766158408235317,6.766158408235317,0,0,0,0,0,0,0,1,1,0,0,0,13.54672955723166,3,62.49,55.09,1,1,0,0,13,3,1,398,0,0,0 +6669,8165,14833,14835,-9,-9,1,1,0,27,1,1,2,0,2,-9,2,1,0,3,7.739733182637933,7.62424530173925,0,2,0,-9,2,0,-3,141.1031283966492,0,1,1,30,2,5,1,2,2,2019,1,3,12,0,47,32,15,1,0,1,0,5.866572176481259,5.866572176481259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.52,51.4,2,1,0,0,7,4,0,536.75,0,0,0 +6669,8165,14834,-9,14833,14835,2,1,0,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.120990474051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,4,0,536.75,0,0,0 +6669,8165,14835,14833,-9,-9,3,1,1,30,1,1,2,0,2,-9,2,1,0,5,8.406994142445047,8.70505646067592,0,2,0,-9,2,0,3,50.83129192091494,-9,0,0,27,2,3,1,-9,-9,2019,1,1,12,0,40,0,15,1,0,1,0,14.85785161492475,14.85785161492475,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.99,53.2,6,1,0,0,7,4,0,536.75,0,0,0 +6669,8165,14836,-9,14833,14835,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.728856844813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,7,4,0,536.75,0,0,0 +6670,8166,14837,14838,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.797588902160584,7.346175613614188,1,0,-9,55,0,0,-15.94714677267855,0,0,0,74,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.744531296117262,7.52937007894054,0,3,58.64,44.67,7,1,0,0,4,3,1,668.5,0,0,0 +6670,8166,14838,14837,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,0,-28.7644366634372,0,0,0,74,2,3,3,3,3,2019,4,1,22,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.169272737277972,0,3.127625028879176,3,22.57,46.87,3,1,0,0,4,3,1,668.5,0,0,0 +6671,8167,14839,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,3,8.25451343012038,8.629934652983405,0,3,0,-9,0,-9,0,-927.9141105611328,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,1,40,0,15,1,1,-9,0,12.74358097988878,12.74358097988878,0,0,0,0,0,0,0,0,0,0,1.91198316200651,0,0,0,58.47,50.22,6,1,0,0,2,5,1,507,0,0,0 +6672,8168,14840,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,4,0,5.692443170291185,5.5239348701141,3,0,0,0,-9,0,-1109.661770809009,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.896758742547773,5.993255256092851,0,0,52.8,53.98,6,1,0,0,2,2,1,430,0,0,0 +6672,8169,14841,-9,14840,-9,2,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.655818275823787,7.362411246373036,0,3,0,0,0,-9,0,-1008.906548473691,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,50,15,1,1,-9,1,5.482599908252446,5.482599908252446,0,0,0,0,0,0,0,1,1,0,2.706460582096615,0,0,0,49,58,5,1,0,0,2,3,1,579,0,0,0 +6672,8170,14842,-9,14840,-9,3,1,1,23,2,0,0,0,1,-9,7,2,0,4,0,5.323810274313971,5.068310462933193,3,0,0,0,-9,0,-1101.043103495417,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,7,0,5,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.871044258100694,0,0,0,26.24,66.14,6,1,0,0,2,2,1,73,0,0,0 +6673,8171,14843,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,5.480641804737985,5.206994654863443,3,0,0,0,-9,0,-1080.623457538285,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,9,0,0,15,4,9,-9,0,0,0,1,0,0,2.668053584603428,0,0,0,1,1,0,5.545147407162766,5.188879232381333,0,0,19.45,55.93,4,1,0,0,9,2,0,227,0,0,0 +6674,8172,14844,14845,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.989003114857812,9.053323566969242,0,2,0,-9,7,0,1,-147.1582411662048,0,0,0,41,2,5,1,-9,-9,2019,1,1,9,0,35,35,15,1,1,1,0,24.21018397828739,24.21018397828739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,7,5,1,581.25,0,0,0 +6674,8172,14845,14844,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,5,8.860419648660157,8.848995344796812,0,2,0,-9,13,0,-1,-143.7898865897261,0,0,1,42,2,4,1,-9,-9,2019,1,2,6,0,35,30,15,1,0,1,0,22.1683464436363,22.1683464436363,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,7,5,1,581.25,0,0,0 +6674,8172,14846,-9,14845,14844,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.039243474815,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,581.25,0,0,0 +6674,8172,14847,-9,14845,14844,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.350287311874,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,5,1,581.25,0,0,0 +6675,8173,14848,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,1,0,7.58253063517704,7.690528044088206,3,0,0,0,-9,0,-1162.496709199623,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,6.321561648123547,0,0,0,0,99.08865523647748,1,1,0,4.473571345948343,7.52441766376913,0,0,46.31,13.25,3,1,0,0,2,3,1,296,0,0,0 +6676,8174,14849,14852,-9,-9,2,1,1,58,1,0,2,0,1,-9,2,1,0,4,9.468787460212546,9.164866200903209,0,2,0,-9,8,0,5,52.84976106872887,0,0,0,53,1,3,1,-9,-9,2019,1,1,12,0,50,40,15,1,0,1,0,38.82111192484174,38.82111192484174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,9,5,1,564.5,0,0,0 +6676,8174,14850,-9,14852,14849,4,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-986.3551631166085,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.7,55.6,7,1,0,0,9,5,1,564.5,0,0,0 +6676,8174,14851,-9,14852,14849,5,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.224276672371,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,564.5,0,0,0 +6676,8174,14852,14849,-9,-9,1,1,0,53,1,0,2,0,1,-9,2,1,0,3,8.014692904371728,7.963458801410255,0,2,0,-9,27,0,-5,67.04543901327759,0,0,0,58,1,4,1,2,2,2019,1,2,3,0,24,30,15,1,0,1,0,16.01703893069738,16.01703893069738,0,0,0,0,0,0,0,0,0,0,2.446799328198717,0,0,0,54.37,36.84,6,1,0,0,9,5,1,564.5,0,0,0 +6676,8175,14853,-9,14852,14849,3,1,0,20,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-910.6177038073291,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,9,1,1,433,0,0,0 +6677,8176,14854,14855,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,3,7.252464904266965,7.341878194885319,0,1,0,-9,10,0,5,68.86480386330447,0,0,0,56,1,3,1,3,2,2019,1,2,9,0,45,40,15,1,0,1,0,3.623821276809392,3.623821276809392,0,0,0,0,0,0,0,0,0,0,0,0,2.619272021482431,3,59.46,46.99,6,1,0,0,2,4,1,803.5,0,0,0 +6677,8176,14855,14854,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.274255746940797,8.256644584816264,0,1,0,-9,10,0,-5,73.865307448313,0,0,0,61,3,3,1,-9,-9,2019,1,1,8,1,40,45,15,1,1,1,0,10.54861693134332,10.54861693134332,0,0,0,0,0,0,0,0,0,0,7.917012459887376,0,0,3,54.48,42.8,6,1,0,0,2,4,1,803.5,0,0,0 +6677,8177,14856,-9,14855,14854,3,1,1,30,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-957.2787293499233,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,3,0,0,15,1,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.24,52.48,4,1,0,1,2,1,1,763,0,0,0 +6678,8178,14857,-9,14859,14858,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.541231960096,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,733.6666666666666,0,0,0 +6678,8178,14858,14859,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,2,8.475970183355697,8.28479257577391,0,2,0,-9,2,0,-1,-63.47349248453816,0,0,0,33,2,2,1,3,-9,2019,1,1,22,10,44,42,15,1,10,1,0,18.36361290017461,18.36361290017461,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.11,38.32,3,1,0,0,5,4,1,733.6666666666666,0,0,0 +6678,8178,14859,14858,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,2,6.767226018620693,7.03680173580926,0,2,0,-9,2,0,1,45.36176624972053,0,0,1,32,2,2,1,2,2,2019,1,2,11,0,14,20,15,1,0,1,0,7.369853981330332,7.369853981330332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.89,48.16,5,1,0,0,5,4,1,733.6666666666666,0,0,0 +6679,8179,14860,14861,-9,-9,2,1,0,38,1,0,2,0,1,1,2,1,0,5,8.615382131150472,8.275110139729364,0,2,0,-9,8,0,-2,1.424598210509303,-9,0,1,40,1,5,1,3,2,2019,1,1,11,2,40,0,15,1,2,1,0,14.84413956893897,14.84413956893897,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.78,46.4,6,2,0,0,2,3,1,620.75,0,0,0 +6679,8179,14861,14860,-9,-9,1,1,1,40,1,0,2,0,1,-9,1,1,0,5,0,0,0,2,0,-9,8,0,2,-47.05662012803842,0,0,0,38,1,5,1,2,1,2019,1,2,1,0,35,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,3,1,620.75,0,0,0 +6679,8179,14862,-9,14860,14861,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.711867556731,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,2,3,1,620.75,0,0,0 +6679,8179,14863,-9,14860,14861,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.708713530352,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,2,3,1,620.75,0,0,0 +6680,8180,14864,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-983.0784364537496,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.705753357954888,0,0,0,54.37,54.8,6,1,0,0,12,1,1,430,0,0,0 +6681,8181,14865,14866,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,4,7.367061595274466,7.816637662854656,5.198367197319608,1,0,-9,4,0,1,41.51826627837448,0,1,1,23,1,3,1,-9,-9,2019,1,1,19,6,39,39,15,1,6,1,0,7.804448186513738,7.804448186513738,0,0,0,0,0,0,0,0,0,0,5.780862877160525,0,0,0,12.95,67.07000000000001,6,1,0,0,2,4,0,590.5,0,0,0 +6681,8181,14866,14865,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,3,7.41863427651484,7.913828789355363,0,1,0,-9,4,0,-1,108.840638761056,0,1,0,24,1,4,1,2,2,2019,1,2,11,0,33,30,15,1,0,1,0,6.949750764548859,6.949750764548859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.88,35.06,6,1,0,0,2,4,0,590.5,0,0,0 +6682,8182,14867,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,7.588098509913551,7.237962605874833,3,0,0,0,-9,0,-879.4806892592782,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,1,.5807129138789096,0,7.523411659214983,0,.1246281697722593,0,1,1,0,.1208435733501355,7.164240470679841,0,0,40.87,23.32,5,1,0,0,11,3,1,1693,0,0,0 +6683,8183,14868,-9,14869,14870,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.3984863200805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,9,5,1,737,0,0,0 +6683,8183,14869,14870,-9,-9,1,1,0,39,1,0,3,0,1,-9,2,1,0,5,8.688484867979438,8.753143972379162,0,2,0,-9,6,0,-3,-48.19386512410841,0,0,1,42,1,5,1,1,2,2019,1,2,4,0,48,33,15,1,0,1,0,15.60098142354433,15.60098142354433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,737,0,0,0 +6683,8183,14870,14869,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,5,9.428296224740011,9.602424858414746,0,2,0,-9,6,0,3,-121.9140377991744,0,0,0,39,1,5,1,3,3,2019,1,1,9,0,60,70,15,1,0,1,0,26.66961264419972,26.66961264419972,0,0,0,0,0,0,0,0,0,0,7.838786768012532,0,0,0,57.06,57.76,6,1,0,0,9,5,1,737,0,0,0 +6683,8183,14871,-9,14869,14870,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-775.3046723622524,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,737,0,0,0 +6683,8183,14872,-9,14869,14870,3,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1110.318238290152,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,9,5,1,737,0,0,0 +6684,8184,14873,-9,14874,14875,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.9102701430323,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,6,4,1,673.25,0,0,0 +6684,8184,14874,14875,-9,-9,1,1,0,35,1,2,2,0,2,-9,2,1,0,4,8.388693419668744,8.152635395625232,0,2,0,-9,6,0,4,-70.13936250337726,0,0,1,31,1,3,1,1,2,2019,1,2,12,1,40,0,15,1,1,1,0,10.59212605290787,10.59212605290787,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,6,1,0,0,6,4,1,673.25,0,0,0 +6684,8184,14875,14874,-9,-9,2,1,1,31,1,2,2,0,1,-9,2,1,0,3,8.259223792296657,8.307419963272546,0,2,0,-9,6,0,-4,12.64397507902673,0,0,0,35,2,4,1,-9,-9,2019,1,1,11,1,37,37,15,1,1,1,0,15.94952875660226,15.94952875660226,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.16,48.83,4,1,0,0,6,4,1,673.25,0,0,0 +6684,8184,14876,-9,14874,14875,4,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.5554049279845,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,6,4,1,673.25,0,0,0 +6685,8185,14877,14879,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,6.484093937437539,6.415471452042569,0,2,0,-9,9,0,-1,-14.76896177051928,0,0,0,50,2,4,1,-9,-9,2019,1,2,12,1,7,9,15,1,1,1,0,10.57991855277937,10.57991855277937,0,0,0,0,0,0,0,0,0,0,.6606032515649249,0,0,0,38.94,60.48,5,1,0,0,1,4,1,517,0,0,0 +6685,8185,14878,-9,14877,14879,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.865353700271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,1,4,1,517,0,0,0 +6685,8185,14879,14877,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.57460187752727,8.592598552872481,0,2,0,-9,9,0,1,-93.00540840623344,0,0,0,49,2,4,1,-9,-9,2019,1,1,9,0,62,58,15,1,0,1,0,10.70487310897261,10.70487310897261,0,0,0,0,0,0,0,0,0,0,.8489236772341295,0,0,0,52.82,53.97,4,1,0,0,1,4,1,517,0,0,0 +6685,8185,14880,-9,14877,14879,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-982.0563036825114,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,1,0,0,1,4,1,517,0,0,0 +6686,8186,14881,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,8.41987159104697,8.470726092177557,6.983862162870078,3,0,0,0,-9,0,-883.4638819423701,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,1,36,70,15,1,1,-9,0,14.37112845107001,14.37112845107001,0,0,0,0,0,0,0,1,1,0,5.909770747236673,7.470272436069105,0,0,60.29,52.11,5,1,0,0,13,5,1,1137,0,0,0 +6686,8187,14882,-9,14881,-9,2,1,1,24,2,0,0,0,2,1,2,1,0,4,8.55416111919104,8.572743675700861,0,3,0,0,0,-9,0,-1005.248350431609,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,40,0,15,1,0,-9,1,11.2937747863087,11.2937747863087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,5,1,0,0,13,4,1,201,0,0,0 +6687,8188,14883,-9,14885,14886,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.1144301298307,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,3,0,672.25,0,0,0 +6687,8188,14884,-9,14885,14886,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-843.7013867858295,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,0,672.25,0,0,0 +6687,8188,14885,14886,-9,-9,1,1,0,27,1,0,2,0,2,1,6,3,0,3,0,0,0,2,0,-9,2,0,1,24.58544435600789,-9,1,1,26,2,4,1,-9,-9,2019,3,4,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.29,58.81,6,1,0,0,12,3,0,672.25,0,0,0 +6687,8188,14886,14885,-9,-9,4,1,1,26,1,0,2,0,2,-9,2,1,0,4,8.278968379970017,8.368851429398521,0,2,0,-9,2,0,-1,62.47610531407981,-9,1,0,27,2,3,3,-9,-9,2019,2,1,10,0,39,0,15,1,1,3,0,8.173555160913818,8.173555160913818,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,12,3,0,672.25,0,0,0 +6688,8189,14887,14888,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.050580445260838,8.479315357434331,0,1,0,-9,5,0,-7,13.68271191070897,0,0,0,66,2,2,1,-9,-9,2019,1,1,14,2,40,41,15,1,2,1,0,12.25936949830808,12.25936949830808,0,0,0,0,0,0,0,1,1,0,4.570652404307253,0,0,0,38.19,49.25,5,1,0,0,6,4,1,422,0,0,0 +6688,8189,14888,14887,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,2,7.112491384665015,6.833438313571398,0,1,0,-9,5,0,7,-83.40458234937475,0,0,0,59,2,2,1,3,3,2019,1,2,11,0,23,0,15,1,0,1,0,5.386738586163967,5.386738586163967,0,0,0,0,0,0,0,1,1,0,4.859741431858296,0,0,0,55.85,38.29,5,1,0,0,6,4,1,422,0,0,0 +6689,8190,14889,14890,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,32,0,12,119.2884880672925,0,0,0,63,1,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.753101712729672,0,0,0,55.76,52.64,6,1,0,0,9,3,1,379,0,0,0 +6689,8190,14890,14889,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,3,8.334352664951139,8.117363993142884,0,1,0,-9,9,0,-12,8.997383177980225,0,0,0,75,2,4,3,-9,-9,2019,2,1,11,0,16,16,15,1,2,4,0,22.79537269822099,22.79537269822099,0,0,0,0,0,0,0,1,1,0,1.152846925605803,0,0,0,49,48,5,1,0,0,9,3,1,379,0,0,0 +6690,8191,14891,14892,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,7.966779743008453,7.813795109361394,1,0,-9,8,0,1,67.40343753493049,0,0,0,69,1,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.855949577877936,7.752631532728281,0,0,44.26,41.03,4,1,0,0,9,4,1,458.5,0,0,0 +6690,8191,14892,14891,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,6.945896060948576,7.134817543594917,1,0,-9,8,0,-1,-20.36414097905449,0,0,0,70,3,2,3,2,3,2019,4,1,18,7,0,0,15,4,7,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.059668685052519,7.267864643566495,0,0,34.99,54.36,4,1,0,0,9,4,1,458.5,0,0,0 +6691,8192,14893,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,7.489322844271226,7.445673731275232,3,0,-9,0,1,0,-915.5160235834713,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.218774070084844,0,0,53.75,54.92,6,1,0,0,9,3,1,622,0,0,0 +6692,8193,14894,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-942.2056988425064,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.42,54.81,6,1,0,1,4,1,1,547,0,0,0 +6693,8194,14895,-9,14897,14898,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-856.5365059945675,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,0,1015.25,0,0,0 +6693,8194,14896,-9,14897,14898,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.6205092796465,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,0,1015.25,0,0,0 +6693,8194,14897,14898,-9,-9,1,1,0,36,1,1,2,0,2,-9,2,1,0,4,7.123223015056618,7.062524123811862,0,2,0,-9,7,0,-2,42.13528820485755,0,0,1,38,1,3,1,2,1,2019,1,2,15,5,18,28,15,1,5,1,0,7.098915493005651,7.098915493005651,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.1,6,1,0,0,10,4,0,1015.25,0,0,0 +6693,8194,14898,14897,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,3,8.618371268551403,8.235539515842335,0,2,0,-9,7,0,2,13.51384321226129,0,0,0,36,2,4,1,-9,-9,2019,1,1,11,0,46,49,15,1,0,1,0,13.56173586330823,13.56173586330823,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,10,4,0,1015.25,0,0,0 +6694,8195,14899,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,4,9.057494462892215,8.25429650460344,0,3,0,0,0,-9,0,-972.8014019029339,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,35,15,1,2,-9,0,19.75722242928686,19.75722242928686,0,0,0,0,0,0,0,0,0,0,3.036421902228098,0,0,0,48,57,5,1,0,0,4,5,0,2872,0,0,0 +6695,8196,14900,14901,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,9.228097056247467,9.118642742659148,0,1,0,-9,8,0,2,.5090243083700983,0,0,0,55,2,4,1,3,3,2019,1,1,6,0,38,37,15,1,0,1,0,26.31237457805238,26.31237457805238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,640,0,0,0 +6695,8196,14901,14900,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,9.050785862921336,8.712130465785682,0,1,0,-9,8,0,-2,79.0508121799303,0,0,0,57,2,4,1,2,2,2019,1,2,9,0,38,37,15,1,0,1,0,19.04173377014775,19.04173377014775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,13,5,1,640,0,0,0 +6695,8197,14902,-9,14900,14901,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,6.694347610900376,7.10212560733612,0,3,0,0,0,-9,0,-1082.809882551022,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,37,15,1,1,-9,1,3.115044019026441,3.115044019026441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,13,2,1,387,0,0,0 +6695,8198,14903,-9,14900,14901,4,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-987.6769594416123,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,5,1,0,0,13,1,1,1863,0,0,0 +6696,8199,14904,-9,14905,14906,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.7930459161853,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,4,1,1542.5,0,0,0 +6696,8199,14905,14906,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,3,7.917870639695597,7.382856187762534,0,2,0,-9,11,0,0,-220.4546848881029,0,0,1,38,1,3,1,2,2,2019,1,2,19,7,18,0,15,1,7,1,0,11.31934262763754,11.31934262763754,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,58.42,4,1,0,0,9,4,1,1542.5,0,0,0 +6696,8199,14906,14905,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,3,8.26245361136378,8.298364055454682,0,2,0,-9,11,0,0,54.35696389229243,0,0,0,38,1,3,1,1,2,2019,1,1,9,2,37,39,15,1,2,1,0,16.46077574948141,16.46077574948141,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,6,1,0,0,9,4,1,1542.5,0,0,0 +6696,8199,14907,-9,14905,14906,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.598545760249,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,4,1,1542.5,0,0,0 +6697,8200,14908,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1035.47740758753,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.58027249622548,3,22.55,55.89,3,4,1,1,8,1,0,1757,0,0,0 +6698,8201,14909,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1173.649928080273,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.8908654512485,3,51,48,5,1,1,0,13,1,0,240,0,0,0 +6698,8202,14910,-9,-9,-9,2,1,1,66,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1092.683770917904,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,13,1,0,1033,0,0,0 +6699,8203,14911,14912,-9,-9,1,1,1,52,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,1,-9,9,-136.5561735858436,-9,0,0,43,1,4,1,1,1,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.081470935304828,0,0,0,52.15,38.45,4,1,1,0,2,5,0,1205,0,0,0 +6699,8203,14912,14911,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,4,8.880282095655879,9.41876900806815,0,1,0,-9,1,-9,0,1.867522225845551,-9,0,1,52,2,2,3,2,2,2019,2,1,11,0,40,0,15,1,0,3,0,28.43240542839137,28.43240542839137,0,0,0,0,0,0,0,0,0,0,2.434256715815798,0,0,0,58.15,52.91,6,1,0,0,2,5,0,1205,0,0,0 +6700,8204,14913,-9,-9,-9,1,1,0,35,2,0,1,0,2,-9,2,1,0,5,6.878729735291545,7.298646298452895,6.463279537619738,4,0,0,0,-9,0,-896.9503802130703,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,16,0,15,1,0,-9,0,6.508510330791021,6.508510330791021,0,0,0,0,0,0,0,1,1,0,5.612994636321332,0,0,0,46.59,59.97,6,1,0,0,5,2,0,380,0,0,0 +6701,8205,14914,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,5,0,7.586764309497116,7.807805003578456,3,0,0,0,-9,0,-1016.589024362077,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.807809029949855,7.711885443515697,0,0,59.04,51.29,6,1,0,0,4,3,0,2666,0,0,0 +6702,8206,14915,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,3,0,8.449284911412963,8.217390590942573,3,0,0,0,-9,0,-997.0422986497997,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.407503464998623,8.146620860206935,0,0,57.33,53.46,6,1,0,0,9,4,1,160,0,0,0 +6703,8207,14916,14917,-9,-9,1,1,1,54,1,0,1,0,1,-9,2,1,0,4,8.235504883497782,8.24682363061263,0,2,0,-9,28,0,-1,49.46941543158703,0,0,0,55,2,4,1,2,2,2019,1,2,6,0,38,39,15,1,0,1,0,13.75245790948471,13.75245790948471,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,12,4,1,361,0,0,0 +6703,8207,14917,14916,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,4,7.306676442158245,7.897482757483153,6.355253857830426,2,0,-9,28,0,1,-43.0424996692814,0,0,0,54,1,4,1,2,2,2019,1,1,9,0,25,27,15,1,0,1,0,10.29744495563294,10.29744495563294,0,0,0,0,0,0,0,1,1,0,0,5.853379938050081,0,0,43.48,60.97,5,1,0,0,12,4,1,361,0,0,0 +6703,8207,14918,-9,14917,14916,5,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-960.2618819173788,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,4,1,361,0,0,0 +6703,8208,14919,-9,14917,14916,3,1,1,19,2,0,1,0,2,-9,7,2,0,4,7.253355764358808,7.23790978176551,0,3,0,0,0,-9,0,-964.8872637475903,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,17,38,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,6,1,0,0,12,3,1,540,0,0,0 +6703,8209,14920,-9,14917,14916,4,1,1,18,2,0,1,0,3,-9,2,1,0,2,7.388875069801727,6.941142263388842,0,3,0,0,0,-9,0,-966.0731606494423,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,32,0,15,1,0,-9,1,5.957280992765148,5.957280992765148,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.32,56.73,2,1,0,0,12,3,1,654,0,0,0 +6704,8210,14921,14922,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,3,8.553821895615455,8.77987177115668,0,2,0,-9,16,0,-1,-75.54642380599481,0,0,0,42,2,3,3,1,1,2019,2,2,7,0,48,50,15,1,0,3,0,12.87461588936092,12.87461588936092,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.48,47.92,6,3,0,0,7,3,1,710,0,0,0 +6704,8210,14922,14921,-9,-9,2,1,0,42,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,16,0,1,-50.45872906845574,0,0,1,41,1,3,1,3,1,2019,3,1,7,0,0,8,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.14,32.41,7,3,0,0,7,3,1,710,0,0,0 +6704,8210,14923,-9,14922,14921,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.117448814496,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,7,3,1,710,0,0,0 +6705,8211,14924,14925,-9,-9,2,1,0,48,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,8,0,3,0,0,0,0,45,3,3,3,3,3,2019,4,1,23,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.98,41.56,1,1,0,1,4,1,0,992,0,0,0 +6705,8211,14925,14924,-9,-9,1,1,1,45,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,8,0,-3,0,0,0,0,48,3,1,3,3,3,2019,4,2,15,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,73.81227693549174,2,35.68,43.02,4,1,0,1,4,1,0,992,0,0,0 +6706,8212,14926,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,3,0,5.195216886189272,5.525929223225323,3,0,0,0,-9,0,-1076.621310466502,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.033436954293657,5.406212772578802,0,0,44.88,49.37,6,1,0,0,13,2,1,1434,0,0,0 +6707,8213,14927,14928,-9,-9,1,1,1,61,1,0,2,0,2,-9,2,1,0,4,6.956888631492479,7.648906089069778,6.727531303925774,2,0,-9,15,0,21,77.40633536214655,0,0,0,40,2,3,3,1,1,2019,2,2,12,1,14,25,15,1,1,3,0,9.906095177412309,9.906095177412309,0,0,0,0,0,0,0,1,1,0,0,6.453781624116812,26.0257262660183,3,40.71,62.41,1,3,0,0,8,2,0,379,0,0,0 +6707,8213,14928,14927,-9,-9,2,1,0,40,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,14,0,-21,42.32946006267893,0,0,1,61,2,4,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.78790641808533,3,49.04,55.86,6,2,0,0,8,2,0,379,0,0,0 +6707,8213,14929,-9,14928,14927,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.294436898542,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,2,0,379,0,0,0 +6707,8213,14930,-9,14928,14927,5,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.068682970934,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,2,0,379,0,0,0 +6707,8214,14931,-9,14928,14927,3,1,1,21,2,0,2,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1011.171885525798,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.56,50.87,3,2,1,0,8,1,0,571,0,0,0 +6708,8215,14932,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.595848797244648,7.61697448061863,0,3,0,0,0,-9,0,-900.4499219604918,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,32,35,15,1,0,-9,0,8.234423392328001,8.234423392328001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,3,0,1125,0,0,0 +6708,8216,14933,-9,-9,-9,2,1,1,22,2,0,0,0,1,-9,2,1,0,5,8.072352800870258,7.932258496890541,0,3,0,-9,0,-9,0,-1040.366963556633,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,43,0,15,1,0,-9,0,7.849815023601514,7.849815023601514,0,0,0,0,0,0,0,0,0,0,2.459158332674261,0,0,0,55.09,55.87,6,1,0,0,6,4,0,664,0,0,0 +6709,8217,14934,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,4,0,4.507419834700714,4.564861097835665,3,0,0,0,-9,0,-1011.255121023047,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.166137734070849,4.508254390479019,0,0,57.16,56.15,6,1,0,0,6,2,1,2457,0,0,0 +6710,8218,14935,-9,-9,-9,1,1,0,76,3,0,1,0,3,-9,4,3,0,2,0,7.724401298809433,7.570012549481093,4,0,0,0,-9,0,-832.7251836647697,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.191040063562625,7.61159363202683,0,0,43.44,31.81,6,1,0,0,7,3,1,1292,0,0,0 +6710,8219,14936,14937,14935,-9,2,1,0,52,1,0,1,0,1,-9,1,1,0,3,8.704917504719623,8.476888242130332,0,2,0,-9,16,0,-3,48.78508563113618,0,0,0,55,1,4,1,2,2,2019,1,3,12,2,0,10,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.58,47.97,5,1,0,1,7,5,1,2645.333333333333,0,0,0 +6710,8219,14937,14936,-9,-9,3,1,1,55,1,0,1,0,1,-9,1,1,0,4,8.159582329157482,8.103725891819263,0,2,0,-9,14,0,3,-78.84177595604126,0,0,0,52,1,3,1,2,2,2019,1,2,9,0,35,35,15,1,1,1,0,14.2113885128797,14.2113885128797,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,7,5,1,2645.333333333333,0,0,0 +6710,8219,14938,-9,14936,14937,4,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.874154317142,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,5,1,2645.333333333333,0,0,0 +6711,8220,14939,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,3,7.745754156553912,7.96709494214663,0,3,0,0,0,-9,0,-1169.029548800759,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,31,32,15,1,0,-9,0,8.911336334152992,8.911336334152992,0,0,0,0,0,0,0,1,1,0,3.335196578210815,0,5.492205794147405,3,61.43,43.34,6,1,0,0,12,3,1,766,0,0,0 +6711,8221,14940,-9,14939,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,5,8.127388407898183,8.304027274698633,0,3,0,0,0,-9,0,-837.5042593385469,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,36,38,15,1,0,-9,1,10.17493299755155,10.17493299755155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,1,1,0,0,12,4,1,269,0,0,0 +6712,8222,14941,-9,14942,14943,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.3105874298351,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,407.6666666666667,0,0,0 +6712,8222,14942,14943,-9,-9,2,1,0,23,1,0,1,0,2,-9,6,3,0,1,0,5.279354121175458,4.827290856746837,2,0,-9,6,0,-3,-95.71689309318786,0,1,1,26,2,4,1,-9,-9,2019,3,1,20,8,0,22,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.379156841390323,0,0,0,28.87,23.4,4,1,0,1,10,3,1,407.6666666666667,0,0,0 +6712,8222,14943,14942,-9,-9,1,1,1,26,1,0,1,0,2,-9,2,1,0,4,8.26784075566475,7.982473048526296,0,2,0,-9,6,0,3,70.4764742615578,0,1,0,23,2,1,3,-9,-9,2019,2,2,7,0,40,40,15,1,0,3,0,9.564990089204887,9.564990089204887,0,0,0,0,0,0,0,1,1,0,.2262246154508255,0,0,0,57.16,56.15,6,1,0,0,10,3,1,407.6666666666667,0,0,0 +6713,8223,14944,14945,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,6.966795439468869,7.21027383905191,0,2,0,-9,23,0,-4,188.3542657580472,0,0,0,52,2,3,1,-9,-9,2019,1,1,9,0,13,13,15,1,0,1,0,12.52345277721883,12.52345277721883,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.47,52.91,6,1,0,0,7,4,1,690.5,0,0,0 +6713,8223,14945,14944,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.567422457195846,8.96547356411571,0,2,0,-9,23,0,4,70.59282490303902,0,0,0,48,2,3,1,3,3,2019,1,2,14,2,47,48,15,1,2,1,0,13.09473864463762,13.09473864463762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.88,55.08,4,1,0,0,7,4,1,690.5,0,0,0 +6713,8224,14946,-9,14944,14945,3,1,1,18,2,0,1,0,2,1,2,1,0,5,5.95182836003891,5.837573762592491,0,3,0,0,0,-9,0,-903.0253967723044,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,12,0,15,1,0,-9,1,2.769533742306814,2.769533742306814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.14,58.58,7,1,0,0,7,2,1,610,0,0,0 +6714,8225,14947,14948,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,7.748582447658602,7.490516245888282,1,0,-9,6,0,0,31.56501347066457,0,0,0,66,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.664540115196363,7.680980048668255,0,0,52,48,5,1,0,0,13,4,1,916.5,0,0,0 +6714,8225,14948,14947,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,7.65433240084778,7.799349794309585,1,0,-9,6,0,0,7.374868873105327,0,0,0,66,1,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.029832784257164,7.803101081968343,0,0,53.81,53.56,6,1,0,0,13,4,1,916.5,0,0,0 +6715,8226,14949,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,2,0,7.196599671393585,7.194890408854452,3,0,0,0,-9,0,-1006.720135851278,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.839118760335138,7.49661498113113,0,0,68.15000000000001,32.46,7,1,0,0,12,3,1,2437,0,0,0 +6716,8227,14950,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,4,9.369735766563288,8.861003879002642,0,1,0,-9,7,0,-26,110.5264429377432,0,0,0,-9,-9,-9,-9,3,2,2019,2,2,7,0,70,50,15,1,0,-9,0,15.25079367889859,15.25079367889859,0,0,0,0,0,0,0,1,1,0,2.192015624506443,0,70.18362164911932,2,57.16,56.15,5,3,0,0,8,5,0,576,0,0,0 +6716,8228,14951,-9,-9,-9,2,1,1,60,2,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,26,-81.43756303410666,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,27,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.77,28.31,1,1,0,0,8,5,0,1655,0,0,0 +6717,8229,14952,-9,-9,-9,1,1,0,39,2,0,0,0,2,-9,2,1,0,4,8.796470897270813,8.815418231890115,0,3,0,0,0,-9,0,-916.8392959861309,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,43,43,15,1,1,-9,0,15.64314942869762,15.64314942869762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.79,62.55,5,1,0,0,2,5,0,2678,0,0,0 +6718,8230,14953,14954,-9,-9,2,1,0,28,1,0,0,0,1,1,2,1,0,5,8.206729599807815,8.22750437065786,0,1,0,-9,3,0,-3,128.0263165253407,-9,1,1,31,1,4,1,-9,-9,2019,1,1,12,0,37,0,15,1,0,1,0,8.563035098233136,8.563035098233136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,10,4,0,1309.5,0,0,0 +6718,8230,14954,14953,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.041716050841192,8.288990398008169,0,1,0,-9,3,0,3,-51.3927718971378,0,0,0,28,1,5,1,1,1,2019,1,2,15,4,39,29,15,1,4,1,0,11.5618273904966,11.5618273904966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.43,37.85,5,1,0,0,10,4,0,1309.5,0,0,0 +6719,8231,14955,14956,-9,-9,2,1,0,36,1,1,3,0,1,-9,3,3,0,2,0,0,0,2,0,-9,3,0,-11,82.6004275878409,0,0,1,47,3,3,1,-9,-9,2019,3,1,19,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,33.95,4,5,1,0,10,2,0,917.8,0,0,0 +6719,8231,14956,14955,-9,-9,1,1,1,47,1,1,3,0,3,-9,1,1,0,3,6.869902037858752,6.98411800078145,0,2,0,-9,5,0,11,129.7724485154908,0,0,0,36,1,2,3,2,1,2019,2,2,14,4,30,32,15,1,4,3,0,5.363963256880563,5.363963256880563,0,0,0,0,0,0,0,1,1,0,0,0,3.842811944918421,3,46.88,46.3,4,4,0,1,10,2,0,917.8,0,0,0 +6719,8231,14957,-9,14955,14956,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.3582077591834,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,10,2,0,917.8,0,0,0 +6719,8231,14958,-9,14955,14956,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.272308775497,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,10,2,0,917.8,0,0,0 +6719,8231,14959,-9,14955,14956,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.5213949662802,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,10,2,0,917.8,0,0,0 +6720,8232,14960,14961,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.005046880037468,6.571798366337681,1,0,-9,8,0,-11,63.30374564556945,0,0,0,80,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.63658365156782,6.687338032782755,.0654576112270018,3,55.48,44.52,6,1,0,0,12,3,1,348.5,0,0,0 +6720,8232,14961,14960,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,7.112730985320524,6.852529660934664,1,0,-9,8,0,11,-116.3562975062489,0,0,0,69,2,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.351965226451492,3.032619803781186,3,61.85,47.26,6,1,0,0,12,3,1,348.5,0,0,0 +6721,8233,14962,14963,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,-3,44.85357562779627,0,0,0,72,2,1,3,3,2,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,1,0,8.489756408864245,0,2.813649772043483,3.68755411270855,0,1,1,0,0,0,0,0,38.74,23.22,4,1,0,0,12,2,1,433,0,0,0 +6721,8233,14963,14962,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,6.231933130014689,6.309622321089453,1,0,-9,8,0,3,11.10320626675614,0,0,0,69,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,13.17248311724363,0,0,0,0,1,1,0,2.643504967411153,5.735580063770647,0,0,45.97,26.38,6,1,0,1,12,2,1,433,0,0,0 +6722,8234,14964,14965,-9,-9,1,1,0,62,1,0,0,0,3,-9,2,1,0,4,8.113304323854841,8.094601492848586,0,1,0,-9,35,0,1,68.09215318307714,0,0,0,61,3,1,3,3,-9,2019,2,2,7,0,38,39,15,1,0,3,0,10.96710339634643,10.96710339634643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,4,1,0,0,6,3,0,342.5,0,0,0 +6722,8234,14965,14964,-9,-9,2,1,1,61,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,9,0,-1,12.1822284129253,0,0,0,62,3,4,1,-9,-9,2019,3,1,26,11,0,48,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.53,26.07,4,1,0,0,6,3,0,342.5,0,0,0 +6723,8235,14966,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.160241432933942,8.347207467505326,0,3,0,0,0,-9,0,-930.98224152301,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,38,37,15,1,11,-9,0,11.99539090354029,11.99539090354029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,2,1,0,0,9,4,0,2117,0,0,0 +6724,8236,14967,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,3,8.589614653916804,8.384463655448473,0,3,0,-9,0,-9,0,-1007.992685399755,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,38,0,15,1,0,-9,0,15.86538507217334,15.86538507217334,0,0,0,0,0,0,0,1,1,0,7.65249440019652,0,0,0,53.88,39.91,6,1,0,0,7,4,0,710,0,0,0 +6725,8237,14968,14969,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,5.89589666600793,6.051871220579807,1,0,-9,6,0,4,15.35465030869751,0,0,0,64,2,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.520485703187264,5.791744178770538,0,0,42.34,53.27,6,1,0,0,11,2,1,249,0,0,0 +6725,8237,14969,14968,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,7.249961838136111,6.871976997096706,1,0,-9,6,0,-4,12.21936692641471,0,0,0,68,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.139201565161717,7.106701277475899,0,0,56.1,49.93,5,1,0,0,11,2,1,249,0,0,0 +6726,8238,14970,14971,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,5,0,7.922687031513669,7.768499046408542,1,0,-9,49,0,1,-60.41344344389635,0,0,0,68,1,3,3,2,2,2019,4,2,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.825304412109687,7.913931930124161,0,0,57.06,57.76,7,1,0,0,11,4,1,1631,0,0,0 +6726,8238,14971,14970,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,8.184877600661572,8.168987384073588,1,0,-9,49,0,-1,-15.61811770916252,0,0,0,69,1,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.658349318626677,8.045720479331891,0,0,54.17,50.96,6,1,0,0,11,4,1,1631,0,0,0 +6727,8239,14972,14973,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,5,9.144866289162872,9.024645446809135,0,2,0,-9,1,-9,10,39.61166391091115,-9,0,0,35,2,4,1,-9,-9,2019,1,1,8,0,55,0,15,1,0,1,0,13.52553331711989,13.52553331711989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,58,6,1,0,0,7,5,1,236,0,0,0 +6727,8239,14973,14972,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,4,7.687332827206022,7.40529298819375,0,2,0,-9,6,-9,-10,-155.5709681525667,-9,0,1,45,2,5,1,2,3,2019,1,2,12,0,19,0,15,1,0,1,0,12.49711570989057,12.49711570989057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.12,63.98,4,1,0,0,7,5,1,236,0,0,0 +6727,8239,14974,-9,14973,14972,3,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-943.1706957313606,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,5,1,0,0,7,5,1,236,0,0,0 +6728,8240,14975,14976,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,5.498889949368644,6.12808880956548,1,0,-9,9,0,-1,-123.0487753272711,0,0,0,69,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,10.87942883105902,0,0,0,0,1,1,0,3.36565939272522,5.803727862336661,0,0,42.71,40.35,5,1,0,0,12,2,0,545,0,0,0 +6728,8240,14976,14975,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,1,4.571227526848051,0,0,0,68,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.689420832202416,3,55.61,35.48,6,1,0,0,12,2,0,545,0,0,0 +6729,8241,14977,14978,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,5.978267068457056,5.66782086424023,1,0,-9,53,0,-3,-99.46832457843465,0,0,0,75,3,4,3,-9,2,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.717336289712415,5.940917436943978,0,0,32.4,36.81,4,1,0,0,5,2,1,194.5,0,0,0 +6729,8241,14978,14977,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,7.227581163475479,6.951720605171877,1,0,-9,53,0,3,-53.97265072634836,0,0,0,72,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.051217747638833,7.454188519438032,0,0,58.61,28.94,6,1,0,0,5,2,1,194.5,0,0,0 +6730,8242,14979,14980,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.988900349387142,8.506333965720568,0,2,0,-9,9,0,1,-42.73055913119968,0,0,0,44,2,4,1,2,1,2019,1,1,8,0,48,50,15,1,0,1,0,14.54944822787142,14.54944822787142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.19,49.37,5,1,0,0,12,4,1,495.5,0,0,0 +6730,8242,14980,14979,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.181818194255984,7.638012127772743,0,2,0,-9,9,0,-1,-43.76685033881927,0,0,1,45,2,3,1,2,2,2019,1,2,6,0,25,27,15,1,0,1,0,7.711280581727628,7.711280581727628,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,5,1,0,0,12,4,1,495.5,0,0,0 +6730,8242,14981,-9,14980,14979,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1144.01604009381,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,4,1,495.5,0,0,0 +6730,8242,14982,-9,14980,14979,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-887.4567002997843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,4,1,495.5,0,0,0 +6731,8243,14983,14984,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,7.518161559031334,7.077408817074792,1,0,-9,8,0,0,96.47353506834814,0,0,0,86,3,5,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.938972096216225,7.463834574916723,0,0,57.16,56.15,7,1,0,0,4,3,1,1933.5,0,0,0 +6731,8243,14984,14983,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,5,0,7.355922943774472,7.861661952434122,1,0,-9,8,0,9,76.09662200608668,0,0,0,77,2,4,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.798050521430604,8.086505589289377,0,0,56.25,52.62,7,1,0,0,4,3,1,1933.5,0,0,0 +6732,8244,14985,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-944.6213429602919,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76090895496699,3,43.24,34.35,6,1,0,0,12,1,1,2076,0,0,0 +6733,8245,14986,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,6.830809618340137,7.011256840922999,0,3,0,0,0,-9,0,-980.2699879757505,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,20,15,1,0,-9,0,7.16005743743577,7.16005743743577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.45,43.18,5,1,0,0,13,2,0,2227,0,0,0 +6733,8246,14987,-9,14986,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.504926344354311,8.364343203858434,0,3,0,0,0,-9,0,-969.0055108339718,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,13,4,0,132,0,0,0 +6734,8247,14988,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,1,1,0,3,8.047621855105636,7.913326864061422,0,1,0,-9,14,0,-6,0,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,9,0,60,50,15,1,0,-9,0,5.384058940347306,5.384058940347306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.89,40.35,5,1,0,0,9,4,1,1173,0,0,0 +6734,8248,14989,-9,-9,-9,2,1,0,54,2,0,0,0,3,-9,1,1,0,3,7.793679770839297,8.318702906773378,0,1,0,-9,14,0,6,0,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,9,0,60,50,15,1,0,-9,0,5.500153750945181,5.500153750945181,0,0,0,0,0,0,0,0,0,0,0,0,2.34255670869604,3,57.33,53.46,2,1,0,0,9,4,1,232,0,0,0 +6735,8249,14990,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,2,8.31183189605026,8.0691030658247,0,3,0,0,0,-9,0,-1065.066348253074,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,39,38,15,1,1,-9,0,10.60884528072826,10.60884528072826,0,0,0,0,0,0,0,0,0,0,0,0,0,3,47.56,48.93,4,1,0,0,9,4,1,179,0,0,0 +6736,8250,14991,-9,14994,14992,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1148.773051246673,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,4,1,1493.75,0,0,0 +6736,8250,14992,14994,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.64407492448831,8.497487685669032,0,2,0,-9,14,0,-2,36.37813397731234,0,0,0,47,2,3,1,2,3,2019,1,2,12,0,53,52,15,1,0,1,0,10.35956091177371,10.35956091177371,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,3,1,0,1,5,4,1,1493.75,0,0,0 +6736,8250,14993,-9,14994,14992,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1193.623133055164,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,4,1,1493.75,0,0,0 +6736,8250,14994,14992,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,3,7.911698124244681,7.781138695750478,0,2,0,-9,14,0,2,27.81934011342612,0,0,0,45,2,4,1,3,3,2019,1,1,18,7,26,26,15,1,7,1,0,6.979216886311183,6.979216886311183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.46,55.55,3,1,0,1,5,4,1,1493.75,0,0,0 +6737,8251,14995,14996,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,7,0,2,80.05615381162197,0,0,0,62,3,3,1,3,3,2019,3,2,30,12,0,0,15,4,12,1,0,0,0,1,0,4.70879090842243,0,0,0,0,1,1,0,0,0,0,0,35.85,20.32,1,1,0,0,6,2,1,1204,0,0,0 +6737,8251,14996,14995,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,3,6.18398197880675,6.250366531114571,0,1,0,-9,7,0,-2,21.19343400963547,0,0,0,64,2,1,3,3,3,2019,2,1,6,0,10,10,15,1,0,4,0,5.738929278409295,5.738929278409295,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,7,1,0,0,6,2,1,1204,0,0,0 +6738,8252,14997,15000,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,4,9.073628450284193,8.866210564855541,0,2,0,-9,29,0,0,-20.38986136595965,0,0,0,56,3,3,3,2,2,2019,2,1,5,0,43,40,15,1,0,3,0,17.61594111266874,17.61594111266874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,5,1,0,0,1,4,1,1021,0,0,0 +6738,8252,14998,-9,14997,15000,3,1,1,17,2,0,1,0,2,1,2,3,0,4,7.106310778780935,7.263091769296882,0,2,0,0,0,-9,0,-854.0472435048158,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,20,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,5,1,0,0,1,4,1,1021,0,0,0 +6738,8252,14999,-9,14997,15000,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.576015711947,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,4,1,1021,0,0,0 +6738,8252,15000,14997,-9,-9,1,1,1,56,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,39,0,9,-61.03115337251338,0,0,0,47,1,4,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,5,1,0,0,1,4,1,1021,0,0,0 +6739,8253,15001,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,4,3,0,3,0,5.070640267373638,5.101118422868381,3,0,0,0,-9,0,-936.2682739647748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.619349954578942,0,0,51,49,5,1,0,1,13,2,1,219,0,0,0 +6739,8254,15002,-9,-9,-9,2,1,1,53,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-894.3110593706482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,1,13,1,1,919,0,0,0 +6740,8255,15003,15004,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,4,0,8.042236250011953,8.475175634398704,1,0,-9,34,0,-2,-17.94537869545899,0,0,0,62,2,2,3,-9,-9,2019,4,2,10,2,0,43,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.277701564499955,8.579905762374761,0,0,53.81,53.56,6,1,0,0,6,4,1,610.5,0,0,0 +6740,8255,15004,15003,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,2,0,7.479517220085502,7.426831635798254,1,0,-9,34,0,2,-27.98248277454388,0,0,0,60,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.459277897468025,0,0,52.93,39.41,5,1,0,0,6,4,1,610.5,0,0,0 +6741,8256,15005,15008,-9,-9,1,1,0,27,1,0,2,0,2,-9,2,1,0,5,7.733373039212281,7.197338434334468,0,2,0,-9,2,0,-3,113.3114123543632,0,1,1,30,2,4,1,-9,-9,2019,1,4,7,0,25,30,15,1,0,1,0,10.56271884366099,10.56271884366099,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.16,53.18,6,1,0,0,11,4,0,417,0,0,0 +6741,8256,15006,-9,15005,-9,2,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-896.0528599117757,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,0,417,0,0,0 +6741,8256,15007,-9,15005,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.953946949602,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,0,417,0,0,0 +6741,8256,15008,15005,-9,-9,4,1,1,30,1,0,2,0,2,-9,2,1,0,4,8.512375667427422,8.292537884747603,0,2,0,-9,2,0,3,-136.0450841632718,-9,0,0,27,2,5,1,-9,-9,2019,1,1,13,1,52,0,15,1,1,1,0,11.90162290604592,11.90162290604592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.48,61.03,7,1,0,0,11,4,0,417,0,0,0 +6742,8257,15009,-9,15011,15012,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.270892528406,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,4,1,756.5,0,0,0 +6742,8257,15010,-9,15011,15012,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.046927433164,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,756.5,0,0,0 +6742,8257,15011,15012,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,5,8.665150555152549,8.51796594119215,0,2,0,-9,13,0,-1,59.52562822953725,0,0,1,37,2,4,1,-9,-9,2019,1,1,6,0,30,30,15,1,0,1,0,20.17069527947437,20.17069527947437,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,1,4,1,756.5,0,0,0 +6742,8257,15012,15011,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,4,8.308276355057625,8.705128072751723,0,2,0,-9,15,0,1,-50.59900988988723,0,0,0,36,1,5,1,-9,-9,2019,1,2,6,0,48,48,15,1,0,1,0,12.3361537000788,12.3361537000788,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,6,1,0,0,1,4,1,756.5,0,0,0 +6743,8258,15013,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-916.2654315701546,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.689905802219638,0,0,0,0,23.77586945478886,1,1,0,5.642354997959877,0,0,0,59.43,58.05,7,1,0,0,9,1,0,1716,0,0,0 +6744,8259,15014,15015,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,2,6.776265498806885,6.907490980938721,0,1,0,-9,2,0,11,-16.19663657186219,0,0,0,39,2,4,1,3,3,2019,1,2,8,0,20,20,15,1,0,1,0,7.250288334639983,7.250288334639983,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.19,46.16,6,1,0,0,13,3,0,517,0,0,0 +6744,8259,15015,15014,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,4,7.358446168519876,7.63750823496778,0,1,0,-9,2,0,-11,-62.12219564426674,0,0,1,50,3,2,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,5.739176913227881,5.739176913227881,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.94,37.61,6,1,0,0,13,3,0,517,0,0,0 +6745,8260,15016,15017,-9,-9,1,1,1,64,1,0,1,0,1,-9,4,3,0,5,0,7.454514447322135,7.64771329015806,2,0,-9,8,0,20,34.91016059360295,0,0,0,44,1,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7.561369262454106,7.707223347946419,10.17463042036691,3,54.69,57.47,6,1,0,0,8,5,1,203.3333333333333,0,0,0 +6745,8260,15017,15016,-9,-9,2,1,0,44,1,0,1,0,1,-9,6,3,0,5,0,9.616151909457509,9.443425960488938,2,0,-9,8,0,-20,111.5607612580182,0,0,1,64,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.496357979200145,9.158954594312457,0,3,54.1,59.11,7,1,0,0,8,5,1,203.3333333333333,0,0,0 +6745,8260,15018,-9,15017,15016,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.0220606080419,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,203.3333333333333,0,0,0 +6746,8261,15019,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,8.536811855322576,8.691843895134687,0,3,0,-9,0,-9,0,-1044.198336864337,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,44,0,15,1,0,-9,0,14.26412079612676,14.26412079612676,0,0,0,0,0,0,0,0,0,0,0,0,67.60863059890734,3,61.19,39.41,4,1,0,0,12,5,0,1338,0,0,0 +6746,8262,15020,-9,15019,-9,2,1,0,24,2,0,0,0,2,-9,1,1,0,4,7.709100041999462,7.875661329944341,0,3,0,-9,0,-9,0,-876.7944981744622,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,45,0,15,1,0,-9,1,9.172137001903117,9.172137001903117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,12,4,0,212,0,0,0 +6747,8263,15021,15022,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.890518406392674,8.921582781422442,0,1,0,-9,7,0,4,84.80022452252881,0,0,0,56,1,3,1,2,3,2019,1,1,7,0,40,35,15,1,0,1,0,29.54944827915376,29.54944827915376,0,0,0,0,0,0,0,0,0,0,4.977411591465407,0,0,0,54.96,53.17,6,1,0,0,12,5,1,190.5,0,0,0 +6747,8263,15022,15021,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.886740170824481,8.923190629218366,0,1,0,-9,35,0,-4,-90.21616570547926,0,0,0,60,2,3,1,3,3,2019,1,2,6,0,39,38,15,1,0,1,0,18.03153652207676,18.03153652207676,0,0,0,0,0,0,0,0,0,0,3.484659067261878,0,0,0,60.62,43.73,6,1,0,0,12,5,1,190.5,0,0,0 +6747,8264,15023,-9,15022,15021,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.735958613510252,8.654180391987758,0,3,0,0,0,-9,0,-1039.295840368455,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,39,0,15,1,2,-9,1,17.04008331959938,17.04008331959938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.2,37.38,6,1,0,0,12,5,1,1229,0,0,0 +6748,8265,15024,15025,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,5.297208225510424,5.359887115863084,1,0,-9,41,0,1,41.05684903937322,-9,0,0,70,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.05446841076559,5.43423153870127,0,0,58.15,52.91,7,1,0,0,6,3,1,821.5,0,0,0 +6748,8265,15025,15024,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,7.975522419454693,7.882631313314018,1,0,-9,10,0,-1,-156.5795501128746,0,0,0,71,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.117558434037633,7.876663566749723,11.26312108636646,3,57.16,56.15,7,1,0,0,6,3,1,821.5,0,0,0 +6749,8266,15026,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,3,0,7.503692909421034,7.407621537622158,3,0,0,0,-9,0,-936.7697137140946,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.051512406765209,7.459685089997458,0,0,60.29,52.11,6,1,0,0,4,3,1,562,0,0,0 +6750,8267,15027,-9,15028,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-921.9366231391174,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31,32,3,1,0,0,10,2,0,1560,0,0,0 +6750,8267,15028,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,2,7.083465275427452,7.069807490333765,5.730197963177932,4,0,0,0,-9,0,-1044.057164303068,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,18,20,15,1,11,-9,0,8.912103902729658,8.912103902729658,0,0,0,0,0,0,0,1,0,1,5.830968358538609,0,1.084562868533379,3,22.53,30.38,1,1,0,0,10,2,0,1560,0,0,0 +6751,8268,15029,15030,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,4,8.944263324101527,8.779132377896369,0,1,0,-9,8,0,2,66.40814821819502,0,0,1,42,2,5,1,2,2,2019,1,1,7,0,52,53,15,1,0,1,0,17.79145853612295,17.79145853612295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,9,5,1,265,0,0,0 +6751,8268,15030,15029,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,5,8.752471800765294,8.804903479820222,0,1,0,-9,8,0,-2,-126.2657235437438,0,0,0,44,1,4,1,2,2,2019,1,2,8,0,55,60,15,1,0,1,0,13.02875357265344,13.02875357265344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,265,0,0,0 +6752,8269,15031,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-940.0415804098861,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.04,36.74,4,1,0,0,13,1,0,1328,0,0,0 +6753,8270,15032,15033,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,5.126784265358856,5.074156157502342,1,0,-9,48,0,-2,103.3116762845493,0,0,0,68,1,3,3,2,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.345485686682728,5.562917810043916,0,0,57.09,46.7,6,1,0,0,4,2,1,703,0,0,0 +6753,8270,15033,15032,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,5.375341236294844,5.135126682446926,1,0,-9,8,0,2,-23.85296809762506,0,0,0,66,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.377691519707328,4.845972063119172,6.613875914992867,3,60.3,46.58,7,1,0,0,4,2,1,703,0,0,0 +6754,8271,15034,15036,-9,-9,2,1,1,55,1,0,2,0,2,-9,4,3,0,3,0,7.197082477332613,7.278482085654256,2,0,-9,10,0,2,-29.61544522502395,0,0,0,53,1,5,1,-9,-9,2019,3,1,7,0,0,55,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.114296955604056,0,0,51.1,52.08,3,1,0,0,1,4,1,780,0,0,0 +6754,8271,15035,-9,15036,15034,4,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.302654664012,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.44,51.82,6,1,0,1,1,4,1,780,0,0,0 +6754,8271,15036,15034,-9,-9,1,1,0,53,1,0,2,0,1,-9,2,1,0,5,8.723791678002668,8.667662868152414,0,2,0,-9,10,0,-2,-10.17218690055491,0,0,0,55,2,3,3,2,2,2019,2,2,22,9,43,45,15,1,9,4,0,23.23827692905587,23.23827692905587,0,0,0,0,0,0,0,0,0,0,0,0,22.38809619454343,3,22.63,67.09,3,1,0,0,1,4,1,780,0,0,0 +6755,8272,15037,15038,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,54,0,-3,-14.84333045458703,0,0,0,74,3,3,3,-9,-9,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,1.551170657828913,41.07267394276655,0,0,0,2.74500882887218,1,1,0,0,0,0,0,56.48,13.68,4,1,0,0,12,2,1,362,0,0,0 +6755,8272,15038,15037,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.507851825918888,7.2202875922157,1,0,-9,8,0,3,168.4456029743168,0,0,0,71,3,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.353804326427586,113.0902393579801,1,57.33,53.46,6,1,0,0,12,2,1,362,0,0,0 +6756,8273,15039,15040,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,4,8.166147229493745,8.580638210231548,0,1,0,-9,2,0,0,-74.35905775485983,0,1,0,26,1,4,1,2,1,2019,1,2,5,0,37,37,15,1,0,1,0,14.07794486775882,14.07794486775882,0,0,0,0,0,0,0,0,0,0,1.820282526536187,0,0,3,57.16,56.15,6,1,0,0,10,5,1,454,0,0,0 +6756,8273,15040,15039,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.413429487529042,8.666180186518154,0,1,0,-9,2,0,0,-11.76609598756104,-9,1,1,26,1,4,1,-9,-9,2019,1,1,14,2,43,0,15,1,2,1,0,15.38614286078569,15.38614286078569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.22,64.84,5,1,0,0,10,5,1,454,0,0,0 +6757,8274,15041,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-941.2947791478479,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.7,34.63,6,1,0,0,11,1,1,405,0,0,0 +6758,8275,15042,-9,15045,15043,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.227788387013,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,12,4,1,875,0,0,0 +6758,8275,15043,15045,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,3,7.348899557493835,7.274447252174789,0,2,0,-9,10,0,1,43.65431110190636,0,0,0,36,2,3,1,2,2,2019,1,2,10,1,26,23,15,1,1,1,0,7.035381692549384,7.035381692549384,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,46.43,6,3,0,0,12,4,1,875,0,0,0 +6758,8275,15044,-9,15045,15043,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.718354059426,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,12,4,1,875,0,0,0 +6758,8275,15045,15043,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,3,8.711811677825477,8.751687905428719,0,2,0,-9,10,0,-1,23.00862325718625,0,0,1,37,1,3,1,2,2,2019,1,1,11,0,34,34,15,1,0,1,0,21.64469116385732,21.64469116385732,0,0,0,0,0,0,0,1,1,0,3.898736636140072,0,0,0,46.8,57.03,6,3,0,0,12,4,1,875,0,0,0 +6759,8276,15046,15048,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,4,8.160778650075247,8.716209721548838,0,2,0,-9,9,-9,1,153.0966133859706,-9,0,1,35,2,4,1,-9,-9,2019,1,2,11,0,40,0,15,1,2,1,0,11.82300671087509,11.82300671087509,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,4,0,0,8,4,1,785,0,0,0 +6759,8276,15047,-9,15046,15048,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-993.052635210313,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,1,785,0,0,0 +6759,8276,15048,15046,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,4,8.583838925286722,8.272131287285394,0,2,0,-9,9,-9,-1,-58.25789453060205,-9,0,0,36,2,4,1,2,2,2019,1,1,6,0,50,0,15,1,0,1,0,8.502273720627889,8.502273720627889,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,4,0,0,8,4,1,785,0,0,0 +6759,8276,15049,-9,15046,15048,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-952.0811294771623,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,4,1,785,0,0,0 +6760,8277,15050,15051,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.191654490530766,7.309250345612614,1,0,-9,42,0,-1,-103.1857644290051,0,0,0,70,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.969936959274577,7.253090869940761,0,0,60.12,54.8,6,1,0,0,13,3,1,458.5,0,0,0 +6760,8277,15051,15050,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,7.938654913077077,7.829004283030865,1,0,-9,42,0,1,-46.74543787204991,0,0,0,69,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.06521722812748,7.75823743992091,0,0,50,47,5,1,0,0,13,3,1,458.5,0,0,0 +6761,8278,15052,15053,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,48,0,0,-7.576706947266841,0,0,0,71,3,4,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,7,1,0,0,9,2,1,222.5,0,0,0 +6761,8278,15053,15052,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,7.327528031699694,7.171879105334988,1,0,-9,48,0,0,-208.2660167251966,0,0,0,71,3,4,3,3,3,2019,4,1,23,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.729039022050883,7.337715303782995,0,3,42.98,43.5,2,1,0,0,9,2,1,222.5,0,0,0 +6762,8279,15054,-9,15055,15056,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.928865448114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,8,4,0,864.6666666666666,0,0,0 +6762,8279,15055,15056,-9,-9,1,1,0,35,1,1,1,0,1,-9,7,2,0,3,0,0,0,2,0,-9,2,0,-3,-63.1249738841887,1,0,1,38,1,4,1,2,2,2019,3,2,16,4,0,45,15,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.47,52.37,6,1,0,0,8,4,0,864.6666666666666,0,0,0 +6762,8279,15056,15055,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,4,8.810901929674612,8.992836001277565,0,2,0,-9,2,0,3,11.7536584853955,0,0,0,35,1,3,2,3,1,2019,2,1,6,0,41,40,15,1,0,2,0,16.79795653685445,16.79795653685445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,8,4,0,864.6666666666666,0,0,0 +6763,8280,15057,15058,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.087977460577524,7.756590378514288,1,0,-9,55,0,1,-125.2713022382029,0,0,0,75,3,4,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.433130508103154,7.25284631707396,0,0,55.36,51.57,5,1,0,0,7,2,1,399.5,0,0,0 +6763,8280,15058,15057,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,10,0,-1,212.7649151114291,0,0,0,76,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.07200355130353,0,0,0,68.15000000000001,42.95,7,1,0,0,7,2,1,399.5,0,0,0 +6764,8281,15059,15060,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,3,8.406986697927609,8.094454051153273,0,1,0,-9,3,0,1,97.96918823031164,0,1,0,24,1,4,1,-9,-9,2019,1,1,13,1,46,44,15,1,1,1,0,6.747821510210635,6.747821510210635,0,0,0,0,0,0,0,0,0,0,.4030025806531267,0,0,0,40.89,51.69,5,1,0,0,9,5,0,1126,0,0,0 +6764,8281,15060,15059,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,4,8.5090898932641,8.385449058451021,0,1,0,-9,3,0,-1,34.04299246809432,0,1,1,25,2,3,1,2,-9,2019,1,2,12,0,55,46,15,1,0,1,0,8.0657304762994,8.0657304762994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,57.83,6,1,0,0,9,5,0,1126,0,0,0 +6765,8282,15061,15062,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.531874628242843,7.525783458322928,0,1,0,-9,36,0,-3,-85.93971111749555,0,0,0,62,3,2,1,3,3,2019,1,2,22,9,33,33,15,1,9,1,0,5.831930323200836,5.831930323200836,0,0,0,0,0,0,0,0,0,0,2.462704093061496,0,6.986717995188475,3,44.15,55.74,5,1,0,0,10,4,1,905.5,0,0,0 +6765,8282,15062,15061,-9,-9,2,1,1,62,1,0,0,0,3,-9,1,1,0,2,8.554650540761878,8.519433042191926,0,1,0,-9,36,0,3,-51.04297012732955,0,0,0,59,3,3,1,3,3,2019,1,1,26,10,85,75,15,1,10,1,0,6.532693887540625,6.532693887540625,0,0,0,0,0,0,0,0,0,0,7.509204680485838,0,0,0,21.58,40.37,6,1,0,0,10,4,1,905.5,0,0,0 +6766,8283,15063,-9,-9,-9,1,1,0,55,2,0,1,0,2,-9,2,1,0,3,7.336921805461759,7.422431685910142,0,4,0,0,0,-9,0,-1007.272672865991,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,16,21,15,1,0,-9,0,13.26017036674151,13.26017036674151,0,0,0,0,0,0,0,1,0,1,0,0,19.24067789279044,3,38.27,52.67,4,1,0,0,12,2,0,670,0,0,0 +6767,8284,15064,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,2,0,3.199345075900747,3.139625888982321,3,0,0,0,-9,0,-1017.634625029589,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.13986433721227,0,0,61.42,35.65,6,1,0,0,12,1,1,1894,0,0,0 +6768,8285,15065,-9,15066,15067,5,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1206.64433980436,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,5,3,0,0,1,1,1,1532,0,0,0 +6768,8285,15066,15067,-9,-9,2,1,0,50,1,0,1,0,3,-9,3,3,0,1,0,0,0,2,0,-9,1,-9,-12,0,-9,0,0,62,3,3,3,3,2,2019,4,1,12,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.17,33.74,6,3,1,0,1,1,1,1532,0,0,0 +6768,8285,15067,15066,-9,-9,1,1,1,62,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,26,-9,12,0,-9,0,0,50,3,1,3,3,2,2019,4,2,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.11,45.26,6,3,1,1,1,1,1,1532,0,0,0 +6768,8286,15068,-9,15066,15067,3,1,0,23,2,0,1,0,1,-9,2,1,0,4,8.132474375113572,8.196899064968132,0,3,0,-9,0,-9,0,-923.2926174382554,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,31,0,15,1,1,-9,1,12.88636048175713,12.88636048175713,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.81,59.91,5,3,0,0,1,4,1,528,0,0,0 +6768,8287,15069,-9,15066,15067,4,1,0,22,2,0,1,0,1,-9,2,1,0,4,7.946220996450295,7.899994679710905,0,3,0,-9,0,-9,0,-1059.167089113333,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,1,8.476265110043467,8.476265110043467,0,0,0,0,0,0,0,1,0,1,1.944117126848698,0,0,0,49.35,59.64,7,3,0,0,1,4,1,256,0,0,0 +6769,8288,15070,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,9,3,0,2,0,0,0,3,0,0,0,-9,0,-986.1447874995807,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,24.08,4,5,0,1,8,1,1,296,0,0,0 +6770,8289,15071,15072,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,3,8.34292927835002,8.328025108550712,5.007822215079892,1,0,-9,33,0,7,-90.1502764551432,0,0,0,58,2,3,1,3,3,2019,1,2,9,0,45,0,15,1,0,1,0,7.963319029332114,7.963319029332114,1,0,.4286946092830988,0,0,0,0,0,0,0,3.607023931802389,5.126817408684616,0,0,52.4,50.21,2,3,0,0,6,4,1,1228,0,0,0 +6770,8289,15072,15071,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.679176512459098,7.742121979577202,0,1,0,-9,33,0,-7,-62.29921787233491,0,0,0,65,2,3,1,3,3,2019,1,1,12,0,38,38,15,1,0,1,0,5.755222403982373,5.755222403982373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,4,3,0,0,6,4,1,1228,0,0,0 +6770,8290,15073,-9,15072,15071,3,1,0,30,2,0,0,0,1,-9,2,1,0,4,8.629569277249018,8.714387580101732,0,3,0,0,0,-9,0,-1094.706423306076,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,1,19.48361957594476,19.48361957594476,0,0,0,0,0,0,0,0,0,0,2.091708309064655,0,0,3,45.26,56.19,6,3,0,0,6,5,1,557,0,0,0 +6771,8291,15074,15075,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,53,0,0,80.72050059612259,0,0,0,73,1,5,3,3,3,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.519802762845919,0,0,0,40.86,62.75,3,1,0,0,9,4,1,274.5,0,0,0 +6771,8291,15075,15074,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,5,0,8.262222657110492,8.525407393913964,1,0,-9,53,0,0,-54.35473871767489,0,0,0,73,2,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.621546723695423,8.471367813427683,0,0,58.05,54.52,6,1,0,0,9,4,1,274.5,0,0,0 +6772,8292,15076,15077,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.42790733039368,8.343294742340799,0,1,0,-9,29,0,5,102.0635990974073,0,0,0,59,3,3,3,3,3,2019,2,2,6,0,44,37,15,1,0,3,0,10.46907031392207,10.46907031392207,0,0,0,0,0,0,0,1,1,0,0,0,7.512201459953208,1,47.95,56.13,7,1,0,0,1,4,0,1027,0,0,0 +6772,8292,15077,15076,-9,-9,2,1,0,59,1,0,0,0,3,-9,8,3,1,3,7.102262518877891,7.224077040977747,0,1,0,-9,7,0,-5,43.92461794710253,-9,0,0,64,2,4,1,-9,-9,2019,3,1,11,0,5,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,1,4,0,1027,0,0,0 +6773,8293,15078,15082,-9,-9,2,1,1,45,1,0,3,0,3,-9,2,1,0,3,8.148249368496575,8.119642967218647,0,2,0,-9,16,0,-5,-28.21769701890767,0,0,0,50,2,1,1,3,3,2019,1,1,11,0,48,0,15,1,0,1,0,7.11566489573695,7.11566489573695,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.49,45.09,4,4,0,0,8,3,1,1152.2,0,0,0 +6773,8293,15079,-9,15082,15078,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.388246680626,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,2,0,0,8,3,1,1152.2,0,0,0 +6773,8293,15080,-9,15082,15078,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.134654170908,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,2,0,0,8,3,1,1152.2,0,0,0 +6773,8293,15081,-9,15082,15078,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.6732461244937,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,2,0,0,8,3,1,1152.2,0,0,0 +6773,8293,15082,15078,-9,-9,1,1,0,50,1,0,3,0,2,-9,2,1,0,1,6.978264142317981,7.098297212342686,0,2,0,-9,16,0,5,-2.118083702744868,0,0,0,45,3,3,1,3,2,2019,1,2,30,12,22,0,15,1,12,1,0,6.010757727145277,6.010757727145277,0,0,0,0,0,0,0,1,0,1,0,0,6.118514478672444,1,26.94,39.59,1,1,0,1,8,3,1,1152.2,0,0,0 +6774,8294,15083,15084,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,4,6.364183268637362,8.044930211490842,7.903136853351717,1,0,-9,43,0,-1,-26.73152237747101,0,0,0,64,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.748339957020969,8.214260264682556,0,0,54.2,57.49,6,1,0,0,4,4,1,276.5,0,0,0 +6774,8294,15084,15083,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,7.643473600878401,7.726063370055569,1,0,-9,43,0,1,45.81443980359242,0,0,0,63,1,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.224354414087648,7.45293171701862,0,0,51.83,57.2,6,1,0,0,4,4,1,276.5,0,0,0 +6775,8295,15085,15086,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,0,0,0,0,67,2,2,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,11,1,1,925.5,0,0,0 +6775,8295,15086,15085,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,1,0,0,0,0,66,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.37,39.95,5,1,0,0,11,1,1,925.5,0,0,0 +6776,8296,15087,15089,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.888732384532691,9.294437614448446,0,2,0,-9,19,0,2,-97.68704983200622,0,0,0,45,1,4,1,2,2,2019,1,1,7,1,60,0,15,1,1,1,0,17.90635490273585,17.90635490273585,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.44,51.82,5,2,0,0,6,5,1,1415,0,0,0 +6776,8296,15088,-9,15089,15087,3,1,1,16,2,0,2,1,2,-9,7,2,0,5,5.27300580537495,5.469537957617862,0,2,0,0,0,-9,0,-908.0686281129331,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,1,0,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.75,59.47,7,2,0,0,6,5,1,1415,0,0,0 +6776,8296,15089,15087,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.922670785204073,8.569442744321485,0,2,0,-9,26,0,-2,217.449855729126,0,0,0,47,1,4,1,2,-9,2019,1,2,9,0,37,0,15,1,0,1,0,24.54490607451477,24.54490607451477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,6,2,0,0,6,5,1,1415,0,0,0 +6776,8296,15090,-9,15089,15087,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.989777220956,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,6,5,1,1415,0,0,0 +6777,8297,15091,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1135.593051895976,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8860850917868804,0,0,0,57.16,56.15,6,1,0,0,5,1,1,291,0,0,0 +6777,8298,15092,-9,-9,-9,2,1,1,51,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1115.478939788824,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.315147714401285,0,0,0,34.77,26.26,5,1,0,1,5,1,1,647,0,0,0 +6778,8299,15093,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,5.568038878619022,5.492313327156699,3,0,0,0,-9,0,-968.9197456532123,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.397732170439933,0,0,51,46,6,1,0,0,10,2,0,89,0,0,0 +6779,8300,15094,-9,-9,-9,1,1,1,41,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-989.3590479521334,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,5,5,0,0,8,1,0,541,0,0,0 +6780,8301,15095,15098,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,5,8.168148905486762,8.526759842144946,0,2,0,-9,22,0,0,-10.47264598880363,0,0,1,43,1,3,1,3,2,2019,1,1,9,0,20,47,15,1,0,1,0,22.5208488824297,22.5208488824297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.05,52.98,6,1,0,0,6,4,1,491,0,0,0 +6780,8301,15096,-9,15095,15098,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.5822478512866,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,491,0,0,0 +6780,8301,15097,-9,15095,15098,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.9016357870129,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,491,0,0,0 +6780,8301,15098,15095,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,3,8.175416730165098,7.931909352515534,0,2,0,-9,22,0,0,-95.74826599681143,0,0,0,43,1,5,1,3,-9,2019,1,2,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.066757964588398,0,0,0,41.82,52.18,4,1,0,0,6,4,1,491,0,0,0 +6781,8302,15099,-9,-9,-9,1,1,0,54,3,0,2,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-973.8938899265248,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,2,1,1,314,0,0,0 +6781,8303,15100,15102,15099,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,4,8.3075228200767,8.257783713171326,0,2,0,-9,4,0,1,9.175284559325434,-9,0,0,32,3,3,3,3,-9,2019,2,3,10,0,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,2,3,1,307,0,0,0 +6781,8303,15101,-9,15102,15100,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.223156637649,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,3,1,307,0,0,0 +6781,8303,15102,15100,-9,-9,3,1,0,32,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-1,-6.226994194344561,0,0,1,33,2,4,1,-9,-9,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,3,0,0,2,3,1,307,0,0,0 +6781,8303,15103,-9,15102,15100,5,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.3203280142083,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,2,3,1,307,0,0,0 +6782,8304,15104,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,1,1,0,4,7.206566637838392,7.766164464714515,6.790291665351126,3,0,0,0,-9,0,-1013.845949105147,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,15,15,15,1,0,-9,0,10.79307307639828,10.79307307639828,0,0,0,0,0,0,0,0,0,0,5.837229916166051,0,0,0,57.16,56.15,7,1,0,0,9,3,0,718,0,0,0 +6783,8305,15105,15106,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,3,8.203860699522895,8.064542695389857,0,2,0,-9,10,0,0,-94.3384475104578,0,0,0,45,1,3,1,2,2,2019,1,2,14,4,37,35,15,1,4,1,0,9.69504482148038,9.69504482148038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.37,6,1,0,0,9,5,1,1150.333333333333,0,0,0 +6783,8305,15106,15105,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,3,9.251510115416396,9.068820864953175,0,2,0,-9,10,0,0,22.39567011208814,0,0,0,45,1,3,1,-9,-9,2019,1,1,7,0,55,55,15,1,0,1,0,20.01005689936992,20.01005689936992,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,5,1,1150.333333333333,0,0,0 +6783,8305,15107,-9,15105,15106,4,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-946.4398212105534,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,9,5,1,1150.333333333333,0,0,0 +6784,8306,15108,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1046.67478238174,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.2558437481201,3,31.22,51.78,5,1,0,0,4,1,0,155,0,0,0 +6785,8307,15109,15110,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,58,0,-3,-18.86578764513805,0,0,0,81,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.527740403186644,0,0,0,57.76,54.51,7,1,0,0,5,2,1,776,0,0,0 +6785,8307,15110,15109,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,6.912895327490154,6.714388985578377,1,0,-9,58,0,3,-17.5409801966788,0,0,0,78,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.513441559553861,6.81131812933975,0,0,63.23,50.78,7,1,0,0,5,2,1,776,0,0,0 +6786,8308,15111,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-953.127139421191,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.848435370601067,0,0,0,63.25,34.36,6,1,0,0,7,1,1,709,0,0,0 +6787,8309,15112,-9,15113,15115,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.037443485445,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,5,1,755.25,0,0,0 +6787,8309,15113,15115,-9,-9,1,1,0,32,1,1,2,0,1,-9,2,1,0,5,8.46774930454896,8.372503488241216,0,2,0,-9,13,0,-7,61.11109492975325,0,0,1,39,2,5,1,2,2,2019,1,2,7,0,29,37,15,1,0,1,0,16.79140973498241,16.79140973498241,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,755.25,0,0,0 +6787,8309,15114,-9,15113,15115,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.543191152092,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,755.25,0,0,0 +6787,8309,15115,15113,-9,-9,2,1,1,39,1,1,2,0,2,-9,2,1,0,5,8.828648448256196,8.763299504253256,0,2,0,-9,8,0,7,192.1189535001023,0,0,0,32,1,5,1,1,2,2019,1,1,6,0,40,40,15,1,0,1,0,19.04355013213376,19.04355013213376,0,0,0,0,0,0,0,1,1,0,7.452033765362271,0,0,0,56.4,52.62,5,1,0,0,12,5,1,755.25,0,0,0 +6788,8310,15116,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,1,1,0,1,7.039656310732489,6.9973126840225,0,3,0,0,0,-9,0,-990.8510678913134,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,40,40,15,1,6,-9,0,2.923134758357801,2.923134758357801,0,0,0,0,0,0,0,1,1,0,0,0,73.87032828176949,3,40.93,38.49,3,1,0,0,10,2,0,819,0,0,0 +6788,8311,15117,-9,-9,-9,2,1,0,79,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1031.277230366278,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.75,12.65,4,1,0,0,10,1,0,626,0,0,0 +6789,8312,15118,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,6.560268202677747,6.279104289315995,3,0,0,0,-9,0,-1024.603091559839,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.376157847686993,0,0,50.73,33.25,6,1,0,0,9,2,1,1143,0,0,0 +6790,8313,15119,-9,15122,-9,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-941.8073791341783,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,3,0,972.75,0,0,0 +6790,8313,15120,-9,15122,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-907.8525651849598,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,0,972.75,0,0,0 +6790,8313,15121,-9,15122,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-1033.150589359141,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,3,0,972.75,0,0,0 +6790,8313,15122,-9,15123,-9,1,1,0,31,2,0,3,0,3,-9,2,1,0,4,7.354480815236283,7.629672792464666,0,3,0,0,0,-9,0,-970.9532706068138,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,23,0,15,1,6,-9,1,8.656203874762184,8.656203874762184,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.31,41.27,5,1,0,0,2,3,0,972.75,0,0,0 +6790,8314,15123,-9,-9,-9,2,1,0,66,3,0,3,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-911.2305688444716,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,22.6,4,1,0,0,2,1,0,230,0,0,0 +6791,8315,15124,15125,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.267053288664541,7.142552910029839,1,0,-9,8,0,-8,79.79426515572609,0,0,0,77,3,1,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.754476196158094,7.563682515809931,124.5993280477124,1,51.41,56.15,5,1,0,0,2,2,1,990.5,0,0,0 +6791,8315,15125,15124,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,8,63.61350386753881,0,0,0,69,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,129.0343495792777,0,0,0,0,1,1,0,0,0,0,0,53.82,13.72,6,1,0,0,2,2,1,990.5,0,0,0 +6792,8316,15126,15127,-9,-9,2,1,1,79,1,0,0,0,3,-9,2,1,0,5,5.858507702413263,5.642031278787846,0,1,0,-9,10,0,7,-60.82869137963007,0,0,0,72,1,4,1,-9,-9,2019,1,1,8,0,5,9,15,1,0,1,0,6.57400240389645,6.57400240389645,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,6,2,0,0,7,3,1,395,0,0,0 +6792,8316,15127,15126,-9,-9,1,1,0,72,1,0,0,0,1,-9,2,1,0,4,7.852091952110907,8.010563254543159,6.578290739556309,1,0,-9,10,0,-7,7.071793052955812,0,0,0,79,3,5,1,2,2,2019,1,2,7,0,14,20,15,1,0,1,0,19.4771599200156,19.4771599200156,0,0,0,0,0,0,0,1,1,0,6.983016790919745,6.748569476883984,0,0,49.41,58.28,6,1,0,0,7,3,1,395,0,0,0 +6793,8317,15128,15129,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,7.134986574181545,7.001974170161491,1,0,-9,27,0,3,153.3343676203571,0,0,0,72,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.745959815246194,6.867146352253647,0,0,61.46,43.33,7,1,0,0,10,3,1,1299.5,0,0,0 +6793,8317,15129,15128,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.939717362078565,7.427509358477089,1,0,-9,27,0,-3,-23.9900659702292,0,0,0,75,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.828255343994756,7.686212926028139,0,0,61.12,51.57,6,1,0,0,10,3,1,1299.5,0,0,0 +6794,8318,15130,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,3,0,6.845140209825169,6.234180045242817,3,0,0,0,-9,0,-1015.165123097051,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.052804943262904,6.616306837883147,0,0,45.49,50.81,6,1,0,0,10,2,1,195,0,0,0 +6795,8319,15131,-9,15135,15132,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.9782633472179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,2,0,916.2,0,0,0 +6795,8319,15132,15135,-9,-9,4,1,1,27,1,1,3,0,2,-9,2,1,0,4,7.862765879239446,7.858154278314171,0,2,0,-9,2,0,-5,-45.20128176137022,0,1,0,32,2,4,3,-9,-9,2019,2,1,11,0,52,37,15,1,0,3,0,6.786096582474163,6.786096582474163,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.38,63.46,6,2,0,0,6,2,0,916.2,0,0,0 +6795,8319,15133,-9,15135,15132,3,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.355740340601,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,6,2,0,916.2,0,0,0 +6795,8319,15134,-9,15135,15132,2,1,0,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-879.2189710572163,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,2,0,0,6,2,0,916.2,0,0,0 +6795,8319,15135,15132,-9,-9,1,1,0,32,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,5,51.10963724311523,0,0,1,27,2,4,1,2,-9,2019,3,4,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.504407756207168,0,0,0,54.77,55.87,6,1,0,0,6,2,0,916.2,0,0,0 +6796,8320,15136,15137,-9,-9,2,1,1,45,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,9,0,2,0,0,0,0,43,2,1,3,2,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.6894424466841,1,57.16,56.15,6,1,0,0,12,1,0,392.5,0,0,0 +6796,8320,15137,15136,-9,-9,1,1,0,43,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,9,0,-2,0,0,0,1,45,2,4,3,2,2,2019,4,2,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.41,10.82,2,1,0,0,12,1,0,392.5,0,0,0 +6797,8321,15138,-9,15139,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,4,7.732972585860609,7.528441311578648,0,3,0,0,0,-9,0,-1034.030109511211,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,48,20,15,1,1,-9,1,6.630243873373639,6.630243873373639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,2,0,0,8,3,0,378,0,0,0 +6797,8322,15139,-9,-9,-9,2,1,0,60,2,0,0,0,2,-9,2,1,0,3,8.173557858738706,8.268612747434689,0,3,0,0,0,-9,0,-1036.237841738933,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,43,40,15,1,1,-9,0,7.836488013720724,7.836488013720724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.7,26.92,5,2,0,0,8,4,0,388,0,0,0 +6797,8323,15140,-9,15139,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.990807724540456,8.135632153884453,0,3,0,0,0,-9,0,-958.2162332913952,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,41,65,15,1,3,-9,1,11.37568522441751,11.37568522441751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.33,47.96,5,2,0,0,8,4,0,1731,0,0,0 +6798,8324,15141,15142,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,6.816260889996377,6.658075116609533,1,0,-9,60,0,4,15.96079490983625,0,0,0,79,3,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.038095514144223,6.91238823019301,0,0,43.41,51.52,6,1,0,0,7,2,1,285,0,0,0 +6798,8324,15142,15141,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,60,0,-4,-20.07587879179336,0,0,0,83,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.857679223133359,0,0,0,60.12,54.8,7,1,0,0,7,2,1,285,0,0,0 +6799,8325,15143,-9,15144,15145,6,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.996665299387,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,591.3333333333334,0,0,0 +6799,8325,15144,15145,-9,-9,2,1,0,36,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,17,0,-7,-75.1844851610641,0,0,1,43,1,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,3,0,0,8,2,0,591.3333333333334,0,0,0 +6799,8325,15145,15144,-9,-9,1,1,1,43,1,0,4,0,1,-9,2,1,0,4,7.064769689063565,6.916439651760475,0,2,0,-9,6,0,7,74.22786959367137,0,0,0,36,2,4,3,-9,-9,2019,2,2,9,0,30,25,15,1,1,3,0,4.596638269788332,4.596638269788332,0,0,0,0,0,0,0,1,1,0,1.283510230962407,0,0,0,52,55,5,3,0,0,8,2,0,591.3333333333334,0,0,0 +6799,8325,15146,-9,15144,15145,4,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.5185589597223,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,591.3333333333334,0,0,0 +6799,8325,15147,-9,15144,15145,3,1,0,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1074.850427667886,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,8,2,0,591.3333333333334,0,0,0 +6799,8325,15148,-9,15144,15145,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.4666685987431,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,591.3333333333334,0,0,0 +6800,8326,15149,-9,15152,15150,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.400826494126,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,1,1,684.75,0,0,0 +6800,8326,15150,15152,-9,-9,1,1,1,38,1,1,2,0,2,-9,2,1,0,4,0,0,0,2,0,-9,8,0,3,0,0,0,0,35,2,4,3,-9,-9,2019,2,2,8,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.658922111297808,0,0,0,60.12,54.8,2,1,0,0,9,1,1,684.75,0,0,0 +6800,8326,15151,-9,15152,15150,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.4723395571523,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,1,684.75,0,0,0 +6800,8326,15152,15150,-9,-9,2,1,0,35,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-3,0,0,0,1,38,2,4,1,-9,-9,2019,3,1,7,0,0,15,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,9,1,1,684.75,0,0,0 +6801,8327,15153,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,8,3,1,2,3.21907669140395,6.455215472729456,6.594107659532431,3,0,0,0,-9,0,-1007.633969124454,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.010382356354679,0,0,40.81,26.02,5,1,0,0,9,2,1,302,0,0,0 +6802,8328,15154,-9,15155,15156,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.207292415241,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,842,0,0,0 +6802,8328,15155,15156,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,3,8.418369744920124,8.458693388083194,0,2,0,-9,6,0,-3,14.94558141914553,0,0,1,42,2,4,1,3,2,2019,1,2,7,0,48,36,15,1,0,1,0,10.48108483335036,10.48108483335036,0,0,0,0,0,0,0,1,1,0,0,0,24.62766570163627,3,56.61,49.68,4,1,0,0,10,4,1,842,0,0,0 +6802,8328,15156,15155,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,4,7.985832920473715,8.287306306447805,0,2,0,-9,6,0,3,.1990763760395801,0,0,0,39,2,3,1,-9,-9,2019,1,1,9,0,43,36,15,1,0,1,0,8.824837291832527,8.824837291832527,0,0,0,0,0,0,0,1,1,0,0,0,43.5479941465308,3,51.39,56.66,7,1,0,0,10,4,1,842,0,0,0 +6803,8329,15157,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,2,1,0,2,7.06885008418834,7.353755974167966,3.55709822076927,4,0,0,0,-9,0,-960.7506556603331,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,9,20,0,15,1,9,-9,0,7.624937278133043,7.624937278133043,0,0,0,0,0,0,0,1,1,0,3.782051633328625,0,0,0,24.13,35.11,4,1,0,0,2,2,0,593.6666666666666,0,0,0 +6803,8329,15158,-9,15157,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1074.079434165178,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,2,0,593.6666666666666,0,0,0 +6803,8329,15159,-9,15157,-9,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-956.8412558600437,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,593.6666666666666,0,0,0 +6803,8330,15160,-9,15157,-9,2,1,0,19,2,0,2,1,2,0,7,2,0,4,6.607479119979231,6.195830766578152,0,3,0,0,0,-9,0,-989.1724126405776,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,14,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.97,61.83,6,1,0,0,2,2,0,384,0,0,0 +6804,8331,15161,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-919.648818574147,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,6,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.272508686876357,0,0,0,57.06,57.76,6,1,0,0,10,1,1,182,0,0,0 +6805,8332,15162,-9,15163,15164,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.540600881348,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,1,702.75,0,0,0 +6805,8332,15163,15164,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,5,6.963961876517888,6.773376248331896,0,2,0,-9,6,0,-2,171.4292200628983,0,0,1,41,2,3,1,2,2,2019,1,2,8,0,17,20,15,1,0,1,0,7.756938531361977,7.756938531361977,0,0,0,0,0,0,0,1,1,0,0,0,7.214904950145926,3,54.1,59.11,6,1,0,0,10,3,1,702.75,0,0,0 +6805,8332,15164,15163,-9,-9,2,1,1,41,1,1,2,0,2,-9,1,1,0,3,7.898408081734286,7.794516592139589,0,2,0,-9,6,0,2,69.31057650650978,0,0,0,39,2,5,1,-9,-9,2019,1,1,10,0,40,50,15,1,0,1,0,9.727887809777588,9.727887809777588,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,6,1,0,0,10,3,1,702.75,0,0,0 +6805,8332,15165,-9,15163,15164,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.031473655825,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,702.75,0,0,0 +6806,8333,15166,15167,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,5,7.922748656823996,8.002387700349914,0,2,0,-9,15,-9,0,-55.61370154445331,-9,0,0,50,2,3,1,2,3,2019,1,1,7,0,38,0,15,1,0,1,0,10.51793536705839,10.51793536705839,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,7,4,1,1006.75,0,0,0 +6806,8333,15167,15166,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,3,8.356276415394147,8.426389873281211,6.510391155751958,2,0,-9,12,-9,0,-72.10959284861349,-9,0,0,50,2,5,1,2,2,2019,1,2,9,0,38,0,15,1,0,1,0,11.44503290118568,11.44503290118568,0,0,0,0,0,0,0,1,1,0,.3636968538105171,6.66892617118089,0,0,51.19,49.37,4,1,0,0,7,4,1,1006.75,0,0,0 +6806,8333,15168,-9,15166,15167,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-925.9011494254933,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1006.75,0,0,0 +6806,8333,15169,-9,15166,15167,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-857.482788366033,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1006.75,0,0,0 +6807,8334,15170,15171,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,3,7.538399273124736,7.513535777093597,0,1,0,-9,6,0,7,36.89676781785849,0,0,0,32,1,4,1,3,2,2019,1,2,7,1,45,48,15,1,1,1,0,4.121154613950671,4.121154613950671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.5,52.9,7,1,0,0,5,4,1,296.5,0,0,0 +6807,8334,15171,15170,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.283201048971726,8.214293476125984,0,1,0,-9,6,0,-7,-142.4269210638105,0,0,1,39,2,3,1,2,2,2019,1,1,11,0,40,46,15,1,2,1,0,10.20197399668642,10.20197399668642,0,0,0,0,0,0,0,0,0,0,8.306522999039162,0,0,0,49,56,5,1,0,0,5,4,1,296.5,0,0,0 +6808,8335,15172,-9,15173,15175,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.857370187007,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,2,0,869.75,0,0,0 +6808,8335,15173,15175,-9,-9,2,1,0,33,1,1,3,0,2,-9,2,1,0,4,6.927442332310896,7.182767500437214,0,2,0,-9,7,0,-2,9.517666903303704,0,0,1,35,2,4,1,-9,-9,2019,1,1,9,0,20,25,15,1,0,1,0,5.760778423530895,5.760778423530895,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,6,2,0,869.75,0,0,0 +6808,8335,15174,-9,15173,15175,4,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.775224942009,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,0,869.75,0,0,0 +6808,8335,15175,15173,-9,-9,1,1,1,35,1,1,3,0,2,-9,2,1,0,4,7.51590058561421,7.502378740655454,0,2,0,-9,7,0,2,-28.58764037573692,0,0,0,33,2,4,1,3,2,2019,1,2,19,8,20,43,15,1,8,1,0,8.968243851098613,8.968243851098613,0,0,0,0,0,0,0,1,1,0,0,0,0,3,37.87,61.03,5,1,0,1,6,2,0,869.75,0,0,0 +6809,8336,15176,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,2,1,0,5,9.000490220110112,8.708855985869931,6.066848778998746,4,0,0,0,-9,0,-948.5887626099029,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,60,40,15,1,0,-9,0,12.76229887885435,12.76229887885435,0,0,0,0,0,0,0,1,1,0,6.460954227056509,0,0,0,57.06,57.76,6,1,0,0,6,4,1,1080,0,0,0 +6809,8337,15177,-9,15176,-9,2,1,1,20,2,0,2,0,2,0,7,2,0,5,7.587725880054046,7.270817610746819,0,3,0,0,0,-9,0,-1059.781377910901,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,2,0,0,6,3,1,306,0,0,0 +6809,8338,15178,-9,15176,-9,3,1,1,18,2,0,2,1,2,0,7,2,0,4,7.509168992152686,7.361803527165268,0,3,0,0,0,-9,0,-1030.400947807702,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,2,0,0,6,4,1,280,0,0,0 +6809,8339,15179,-9,15176,-9,4,1,1,18,2,0,2,1,2,0,7,2,0,5,6.817035615184076,6.896667747694987,0,3,0,0,0,-9,0,-1056.652731143637,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,15,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,62.31,2,2,0,0,6,4,1,891,0,0,0 +6810,8340,15180,-9,15183,15184,6,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1143.951446922411,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,4,1,999.2,0,0,0 +6810,8340,15181,-9,15183,15184,4,1,1,16,2,0,3,0,-9,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.2342786539515,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,2,4,1,999.2,0,0,0 +6810,8340,15182,-9,15183,15184,5,1,1,14,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-922.5239025211251,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,3,0,0,2,4,1,999.2,0,0,0 +6810,8340,15183,15184,-9,-9,2,1,0,35,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,9,0,0,3.116187851918712,0,0,1,44,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,2,4,1,999.2,0,0,0 +6810,8340,15184,15183,-9,-9,1,1,1,44,1,0,3,0,2,-9,1,1,0,4,9.372897557772497,9.555979409895064,0,2,0,-9,18,0,9,-123.2055824048847,0,0,0,35,3,4,3,3,3,2019,2,2,12,0,24,30,15,1,0,3,0,56.08615062878887,56.08615062878887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.34,38.05,5,3,0,0,2,4,1,999.2,0,0,0 +6811,8341,15185,15186,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,7.875544575793879,7.903856975676546,0,1,0,-9,9,0,-4,33.36994995374572,0,0,0,58,2,3,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,7.306694863886914,7.306694863886914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.52,41.36,6,1,0,0,10,4,0,980.5,0,0,0 +6811,8341,15186,15185,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.916010150163337,7.879043658431718,0,1,0,-9,9,0,4,114.9057209634188,0,0,0,54,2,4,1,2,3,2019,1,1,9,0,35,35,15,1,0,1,0,7.285735895570348,7.285735895570348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.3,40.51,6,1,0,0,10,4,0,980.5,0,0,0 +6812,8342,15187,15188,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,3,8.533892239890152,8.447008485538349,0,2,0,-9,33,0,-13,-48.40936715400436,0,0,0,63,2,3,3,2,2,2019,2,2,11,0,47,89,15,1,0,4,0,11.94608918941875,11.94608918941875,0,0,0,0,0,0,0,0,0,0,3.750048396081906,0,0,0,49.42,50.19,5,1,0,0,7,4,1,303.5,0,0,0 +6812,8342,15188,15187,-9,-9,2,1,1,63,1,0,1,0,2,-9,4,3,0,3,6.816605285659045,7.967737908548454,7.568715518546685,2,0,-9,31,0,13,-32.70713053628184,0,0,0,50,2,3,1,3,3,2019,3,1,12,3,15,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.779882681755292,7.431327684866243,0,0,54.37,54.8,5,1,0,0,7,4,1,303.5,0,0,0 +6812,8343,15189,-9,15187,15188,3,1,1,18,2,0,1,1,2,0,7,2,0,4,6.903737954540214,6.340308936709,0,3,0,0,0,-9,0,-1004.112536613341,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.1369168609885841,0,0,0,51.49,57.57,6,1,0,0,7,4,1,852,0,0,0 +6813,8344,15190,15191,-9,-9,2,1,0,44,1,0,1,0,1,-9,2,1,0,4,8.074170729565285,8.100219098742617,0,2,0,-9,19,0,-1,0,0,0,1,45,2,4,1,2,2,2019,1,1,15,5,34,34,15,1,5,1,0,12.79521186914154,12.79521186914154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,6,1,0,0,2,4,1,317.5,0,0,0 +6813,8344,15191,15190,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.483812032338761,8.230259721449748,0,2,0,-9,19,0,1,0,0,0,0,44,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,12.17712548706267,12.17712548706267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,2,4,1,317.5,0,0,0 +6814,8345,15192,15193,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.904013125892796,7.755514517111756,0,1,0,-9,37,0,-1,104.8826484785912,0,0,0,56,3,3,1,2,2,2019,1,2,13,1,30,33,15,1,1,1,0,7.469428766242723,7.469428766242723,0,0,0,0,0,0,0,0,0,0,0,0,0,3,45.01,41.56,4,1,0,0,10,5,1,179,0,0,0 +6814,8345,15193,15192,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,3,8.42819180859501,8.723184912747673,0,1,0,-9,37,0,1,-62.54075988961598,0,0,0,55,2,3,1,2,2,2019,1,1,10,0,45,40,15,1,0,1,0,13.75854493303526,13.75854493303526,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.32,50.22,6,1,0,0,10,5,1,179,0,0,0 +6814,8346,15194,-9,15192,15193,3,1,1,32,2,0,0,0,2,-9,2,1,0,5,7.930366751469547,7.91393535732065,0,3,0,0,0,-9,0,-998.7080966994816,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,42,15,1,0,-9,1,10.65059628784746,10.65059628784746,0,0,0,0,0,0,0,0,0,0,4.346915730124087,0,0,0,58.2,54.53,6,1,0,0,10,4,1,237,0,0,0 +6814,8347,15195,-9,15192,15193,4,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.927896845721547,8.166010949350964,0,3,0,0,0,-9,0,-1084.306364192068,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,45,45,15,1,0,-9,1,8.464210149652718,8.464210149652718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,5,1,0,0,10,4,1,893,0,0,0 +6815,8348,15196,15197,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,2,0,7.112168810976012,7.520940878825709,1,0,-9,59,0,-6,44.41795150778371,0,0,0,86,3,3,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.897511706043297,6.986182589570747,0,0,51.42,29.35,3,1,0,0,4,3,1,209.5,0,0,0 +6815,8348,15197,15196,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,3,0,7.322252461274644,6.895014258915092,1,0,-9,59,0,6,64.63772705667907,0,0,0,80,2,2,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.989745817179498,7.35946341601903,0,0,57.92,51.82,6,1,0,0,4,3,1,209.5,0,0,0 +6816,8349,15198,15199,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,4.906683277419202,4.81375839612712,1,0,-9,51,0,-6,-56.65028604892206,0,0,0,77,2,4,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.554174535491306,5.070208011933337,0,0,47.89,56.25,6,1,0,0,5,2,1,5350,0,0,0 +6816,8349,15199,15198,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,5.870620640817014,6.029573816559995,1,0,-9,51,0,6,-78.18929747479464,0,0,0,71,2,4,3,2,2,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.87778820914192,5.860802714851856,0,0,49.35,59.64,3,1,0,0,5,2,1,5350,0,0,0 +6817,8350,15200,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,6.425728568781635,6.427316146511298,3,0,0,0,-9,0,-943.824370715108,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,0,0,15,4,12,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.804463982483747,0,0,20.97,35.24,2,1,0,0,10,2,0,376,0,0,0 +6818,8351,15201,-9,15205,15203,3,1,0,18,2,1,3,1,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-995.0194682522263,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,15,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,3,1,0,0,2,3,1,142,0,0,0 +6818,8352,15202,-9,15205,15203,2,1,1,14,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-980.5054776737328,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,475,0,0,0 +6818,8352,15203,15205,-9,-9,4,1,1,51,1,1,3,0,2,-9,2,1,0,3,8.206016014696713,8.068868049422791,0,2,0,-9,1,-9,8,-38.95128511590498,-9,0,0,43,1,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,0,1,0,8.976665202893431,8.976665202893431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,2,3,1,475,0,0,0 +6818,8352,15204,-9,15205,15203,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1061.933944962175,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,475,0,0,0 +6818,8352,15205,15203,-9,-9,1,1,0,43,1,1,3,0,1,-9,2,1,0,4,7.875539149591885,8.071544651785404,0,2,0,-9,1,-9,-8,13.90498810893784,-9,0,1,51,2,3,1,2,2,2019,1,4,12,0,38,0,15,1,0,1,0,10.95352835167312,10.95352835167312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,3,1,0,0,2,3,1,475,0,0,0 +6819,8353,15206,15208,-9,-9,1,1,0,45,1,0,2,0,1,-9,1,1,0,5,8.822894523049914,8.672232672249692,0,2,0,-9,20,0,-1,42.89940935004469,0,0,0,46,1,3,1,1,1,2019,1,2,11,3,80,30,15,1,3,1,0,11.92551795856365,11.92551795856365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,7,1,0,0,5,5,1,689.75,0,0,0 +6819,8353,15207,-9,15206,15208,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.0767719177164,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,5,5,1,689.75,0,0,0 +6819,8353,15208,15206,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,9.045677054745848,9.024335199893294,0,2,0,-9,10,0,1,6.313033947617861,0,0,0,45,1,5,1,-9,-9,2019,1,1,7,0,60,50,15,1,0,1,0,15.75315005512742,15.75315005512742,0,0,0,0,0,0,0,0,0,0,3.775495406771002,0,0,0,55.61,50.3,6,1,0,0,5,5,1,689.75,0,0,0 +6819,8353,15209,-9,15206,15208,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.638360740023,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,5,5,1,689.75,0,0,0 +6820,8354,15210,15211,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,3,9.273077844009567,9.367645988934713,0,1,0,-9,9,0,-5,-18.88496106604049,0,0,0,71,1,3,1,3,3,2019,1,2,14,2,41,50,15,1,2,1,0,32.15755160373023,32.15755160373023,0,0,0,0,0,0,0,1,1,0,4.846561635833744,0,0,0,54.24,41.24,3,1,0,0,8,5,1,1197.5,0,0,0 +6820,8354,15211,15210,-9,-9,2,1,0,71,1,0,0,0,1,-9,1,1,0,3,4.666088894368011,8.729920866980098,8.395813155680054,1,0,-9,9,0,5,55.95110325547687,0,0,0,66,1,3,1,1,1,2019,1,1,6,0,8,5,15,1,0,1,0,1.771339159362058,1.771339159362058,0,0,0,0,0,0,0,1,1,0,7.504099474402074,8.367135117030799,0,0,58.07,46.29,6,1,0,0,8,5,1,1197.5,0,0,0 +6821,8355,15212,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,5.148142131134774,5.413738946233912,3,0,0,0,-9,0,-1048.758227896623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.886677979796472,5.120858574396753,0,0,56.99,32.56,6,1,0,0,2,2,1,899,0,0,0 +6822,8356,15213,-9,-9,-9,1,1,1,51,3,0,0,0,3,-9,1,1,0,3,5.020995247974864,4.956324125199134,0,3,0,0,0,-9,0,-997.1293470458558,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,40,15,1,0,-9,0,.381101386436734,.381101386436734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,49.39,6,1,0,0,13,2,1,1198,0,0,0 +6823,8357,15214,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,3,8.30882586195659,8.113821935013771,0,3,0,0,0,-9,0,-1115.335066018053,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,45,15,1,1,-9,0,13.43561851160522,13.43561851160522,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,49,5,1,0,0,6,4,0,151,0,0,0 +6824,8358,15215,-9,15217,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-858.7571607830299,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,1,0,1059,0,0,0 +6824,8358,15216,-9,15217,-9,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1011.575284324866,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,1,0,1059,0,0,0 +6824,8358,15217,-9,-9,-9,1,1,0,39,3,0,3,0,1,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1033.25720401017,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.73182023582716,3,40.19,42.36,4,1,0,0,8,1,0,1059,0,0,0 +6825,8359,15218,15219,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.122044381568507,8.238282919710684,0,2,0,-9,10,0,-1,-63.63838691299007,0,0,1,44,1,5,1,1,2,2019,1,2,8,0,35,0,15,1,0,1,0,12.60772163525485,12.60772163525485,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,6,1,0,0,12,4,1,760,0,0,0 +6825,8359,15219,15218,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,5,8.577483028391207,8.778155386854353,0,2,0,-9,2,0,1,-139.1145270944384,0,0,0,43,2,4,1,-9,-9,2019,1,1,6,0,35,0,15,1,0,1,0,16.23944366831777,16.23944366831777,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,12,4,1,760,0,0,0 +6825,8359,15220,-9,15218,15219,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-819.7402723199676,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,760,0,0,0 +6825,8359,15221,-9,15218,15219,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.126709712313,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,760,0,0,0 +6826,8360,15222,15223,-9,-9,1,1,1,66,1,0,0,0,3,-9,2,1,0,3,7.877248850488922,8.054808289384853,6.167904562899755,1,0,-9,10,0,4,-120.9964709316073,0,0,0,62,2,3,1,3,3,2019,1,2,12,0,43,43,15,1,0,1,0,7.101138814932072,7.101138814932072,1,0,0,0,0,4.568420612470723,0,1,1,0,0,6.460961928968915,0,0,50.6,51,4,1,0,0,11,4,1,393.5,0,0,0 +6826,8360,15223,15222,-9,-9,2,1,0,62,1,0,0,0,2,-9,1,1,0,3,6.982765236705156,7.460970121755832,0,1,0,-9,10,0,-4,4.430247825961393,0,0,0,66,3,3,1,2,2,2019,1,1,10,0,40,40,15,1,0,1,0,3.990093421537281,3.990093421537281,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,53.99,6,1,0,0,11,4,1,393.5,0,0,0 +6827,8361,15224,15226,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.779761216872085,8.721746709329944,0,2,0,-9,20,0,2,113.4376991519279,0,0,0,46,2,3,1,3,3,2019,1,2,11,0,40,44,15,1,0,1,0,14.08703606526916,14.08703606526916,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,4,4,1,1891.333333333333,0,0,0 +6827,8361,15225,-9,15226,15224,4,1,0,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1042.990914173593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,1,0,0,4,4,1,1891.333333333333,0,0,0 +6827,8361,15226,15224,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.950902967338577,7.918470032627765,0,2,0,-9,25,0,-2,21.42312949895128,0,0,0,48,2,3,1,3,3,2019,1,1,10,0,39,37,15,1,0,1,0,8.081364770255661,8.081364770255661,0,0,0,0,0,0,0,1,1,0,2.083760915822615,0,0,0,52,54.51,4,1,0,0,4,4,1,1891.333333333333,0,0,0 +6827,8362,15227,-9,15226,15224,3,1,0,20,2,0,1,0,2,-9,1,1,0,3,8.244011261970524,8.193797892547263,0,3,0,0,0,-9,0,-962.4277828375389,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,50,35,15,1,0,-9,1,8.191146593481553,8.191146593481553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,56.27,6,1,0,0,4,4,1,2342,0,0,0 +6828,8363,15228,15229,-9,-9,2,1,0,63,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,6,0,-16,0,0,0,0,79,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,3,0,0,8,1,0,942.5,0,0,0 +6828,8363,15229,15228,-9,-9,1,1,1,79,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,6,0,16,0,0,0,0,63,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,6,3,0,0,8,1,0,942.5,0,0,0 +6828,8364,15230,-9,15233,15232,8,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.6226641471936,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,1,0,601.75,0,0,0 +6828,8364,15231,-9,15233,15232,5,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.062378958407,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,601.75,0,0,0 +6828,8364,15232,15233,15228,15229,3,1,1,40,1,0,2,0,2,-9,8,3,1,4,0,0,0,2,0,-9,6,0,13,0,0,0,0,27,3,3,3,3,3,2019,4,4,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,5,3,0,0,8,1,0,601.75,0,0,0 +6828,8364,15233,15232,-9,-9,4,1,0,27,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-13,0,0,1,1,40,2,4,3,3,3,2019,4,3,8,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.62,36.51,1,3,0,0,8,1,0,601.75,0,0,0 +6828,8365,15234,-9,15228,15229,6,1,1,25,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-974.9536182016618,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,1,0,8,1,0,157,0,0,0 +6828,8366,15235,-9,15228,15229,7,1,0,22,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-996.3756414975375,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,3,0,0,8,1,0,434,0,0,0 +6829,8367,15236,15237,-9,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,5,5.950201787040347,5.880354739149416,0,1,0,-9,10,0,5,0,0,0,0,49,2,4,1,2,2,2019,1,2,5,2,14,12,15,1,2,1,0,2.492596875627813,2.492596875627813,0,0,0,0,0,0,0,0,0,0,0,0,13.05783160996246,3,49.96,56.89,6,1,0,0,5,2,1,227.5,0,0,0 +6829,8367,15237,15236,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,4,5.590792568285044,5.67972407687877,0,1,0,-9,10,0,-5,0,0,0,0,54,1,5,1,2,2,2019,1,1,4,0,6,8,15,1,0,1,0,5.264865631716138,5.264865631716138,0,0,0,0,0,0,0,0,0,0,5.026660667731636,0,0,0,55.19,54.26,7,1,0,0,5,2,1,227.5,0,0,0 +6830,8368,15238,-9,-9,-9,1,1,0,88,3,0,2,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1046.729663148914,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,8,1,1,129,0,0,0 +6830,8369,15239,15241,-9,-9,5,1,1,33,1,0,2,0,3,-9,2,1,0,4,7.966748764627495,8.115361386613765,0,2,0,-9,3,0,3,-48.31391722421392,0,0,0,30,3,4,3,-9,-9,2019,2,2,10,0,35,35,15,1,1,3,0,8.129214799345576,8.129214799345576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,8,2,1,468.75,0,0,0 +6830,8369,15240,-9,15241,15239,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1047.925705306617,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,8,2,1,468.75,0,0,0 +6830,8369,15241,15239,-9,-9,2,1,0,30,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-3,-39.35871569000214,0,0,1,33,3,4,1,3,3,2019,3,5,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93656423910648,3,48,57,5,1,0,0,8,2,1,468.75,0,0,0 +6830,8369,15242,-9,15241,15239,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.5385527883268,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,2,1,468.75,0,0,0 +6831,8370,15243,15244,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,4,9.639704283443956,9.960608439514029,0,1,0,-9,3,0,8,102.1237940068452,0,0,0,27,2,4,1,2,1,2019,1,2,9,2,45,50,15,1,2,1,0,43.66136617330661,43.66136617330661,0,0,0,0,0,0,0,0,0,0,7.95483277761396,0,0,0,55.19,54.26,6,1,0,0,9,5,1,250,0,0,0 +6831,8370,15244,15243,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,4,8.647889944153054,8.7812634904744,0,1,0,-9,3,0,-8,-56.72048381102373,-9,1,1,35,2,4,1,-9,-9,2019,1,1,6,0,38,0,15,1,0,1,0,15.86995676071603,15.86995676071603,0,0,0,0,0,0,0,0,0,0,1.216228168178699,0,0,0,52.82,53.97,6,1,0,0,9,5,1,250,0,0,0 +6832,8371,15245,-9,-9,-9,1,1,0,31,2,0,0,0,2,0,7,2,0,3,7.53488472543021,7.864002733194797,0,3,0,0,0,-9,0,-944.1255384634335,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,21,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,4,2,0,0,8,3,0,437,0,0,0 +6833,8372,15246,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,0,5.879968107138825,6.052397253918101,3,0,0,0,-9,0,-950.435146560215,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.519305455959589,0,0,25.95,37.28,4,1,0,1,10,2,0,800,0,0,0 +6834,8373,15247,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,3,8.502099588892234,8.761943500944643,0,3,0,0,0,-9,0,-1004.376696198659,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,35,35,15,1,8,-9,0,16.04357974440813,16.04357974440813,0,0,0,0,0,0,0,1,1,0,3.340831514989699,0,0,0,35.45,54.01,4,3,0,0,7,5,1,482,0,0,0 +6835,8374,15248,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-927.3446274638854,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,41.95,5,1,0,0,13,1,0,579,0,0,0 +6836,8375,15249,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,-2,151.2551164072707,0,0,0,-9,-9,-9,-9,2,2,2019,4,2,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.38952846925079,1,46.95,40.97,4,1,0,0,4,2,0,411.5,0,0,0 +6836,8375,15250,-9,15249,-9,3,1,1,11,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-984.1013627184061,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,411.5,0,0,0 +6836,8376,15251,-9,-9,-9,2,1,0,57,2,0,0,0,2,-9,8,3,1,1,0,5.596019453090245,5.892100171634983,1,0,-9,4,0,2,40.87654514782217,0,0,0,-9,-9,-9,-9,-9,-9,2019,4,1,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.280857116961308,0,0,0,39.15,17.49,5,1,0,0,4,2,0,114,0,0,0 +6837,8377,15252,15253,-9,-9,1,1,1,62,1,0,1,0,1,-9,1,1,0,2,7.883571374361074,8.022577835989527,5.535591201781701,2,0,-9,18,0,18,169.274596172145,0,0,0,44,2,2,1,3,1,2019,1,2,8,0,60,60,15,1,0,1,0,5.216570523242777,5.216570523242777,0,0,0,0,0,0,0,1,1,0,6.283355769118417,6.092474962550872,0,0,52.84,43.58,4,1,0,1,10,4,1,733,0,0,0 +6837,8377,15253,15252,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,2,8.435922200290095,8.210021830171671,0,2,0,-9,18,0,-18,91.18491302112388,0,0,1,62,1,2,1,1,1,2019,1,1,6,0,39,38,15,1,0,1,0,11.71476891267517,11.71476891267517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,5,1,0,0,10,4,1,733,0,0,0 +6838,8378,15254,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,6.90348152886694,6.567033553578104,3,0,0,0,-9,0,-1074.574015108611,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.014750586056365,0,0,52,45,6,1,0,0,13,2,1,308,0,0,0 +6839,8379,15255,15256,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,2,8.319560293524678,8.774498480878446,0,1,0,-9,28,0,-1,8.952252122259004,-9,0,0,51,1,4,1,3,2,2019,1,1,7,1,51,0,15,1,1,1,0,11.50719885762789,11.50719885762789,0,0,0,0,0,0,0,0,0,0,1.31280117229535,0,4.68513018101509,3,59.53,35.2,6,1,0,0,5,5,1,566.5,0,0,0 +6839,8379,15256,15255,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,4,9.040581920001168,8.915397630347154,0,1,0,-9,29,0,1,-7.188670909572867,0,0,0,50,2,2,1,3,3,2019,1,2,6,0,35,35,15,1,0,1,0,27.64043572629762,27.64043572629762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,4,1,0,0,5,5,1,566.5,0,0,0 +6840,8380,15257,15258,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,3,8.514944342087803,8.07821268502247,0,1,0,-9,4,0,4,-48.07487803225035,0,0,0,59,1,3,1,3,3,2019,1,1,19,7,48,47,15,1,7,1,0,11.27750408912677,11.27750408912677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.94,52.81,3,3,0,0,10,5,1,1694,0,0,0 +6840,8380,15258,15257,-9,-9,1,1,0,59,1,0,0,0,1,-9,1,1,0,3,8.250113019829156,8.676723970072834,0,1,0,-9,4,0,-4,-82.19824077877729,0,0,0,63,1,3,1,3,2,2019,1,2,13,3,50,55,15,1,3,1,0,9.836439690557885,9.836439690557885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.94,48.26,4,3,0,0,10,5,1,1694,0,0,0 +6841,8381,15259,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,4,3,0,3,0,8.132047607118992,7.753559256578725,3,0,0,0,-9,0,-982.7757918856704,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.34099287649645,7.939196802546814,0,0,53.98,45.34,6,1,0,0,12,3,1,284,0,0,0 +6842,8382,15260,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,2,1,0,4,8.003323931874151,8.032660763835299,0,3,0,0,0,-9,0,-919.5067286710625,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,36,15,1,0,-9,0,10.81959100463597,10.81959100463597,0,0,0,0,0,0,0,1,1,0,7.168179299324172,0,10.17227725968105,3,54.2,57.49,6,1,0,0,6,4,1,534,0,0,0 +6843,8383,15261,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,1,1,0,2,0,0,0,3,0,-9,0,-9,0,-1100.079890990998,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.72,53.16,7,3,0,0,8,1,0,45,0,0,0 +6844,8384,15262,-9,15264,-9,4,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-943.1193218054883,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,4,1,0,683.75,0,0,0 +6844,8384,15263,-9,15264,-9,2,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1050.148018225721,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,4,1,0,683.75,0,0,0 +6844,8384,15264,-9,-9,-9,1,1,0,41,2,0,3,0,1,-9,6,3,0,4,0,0,0,4,0,-9,0,-9,0,-944.6245978807881,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,4,0,0,4,1,0,683.75,0,0,0 +6844,8384,15265,-9,15264,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-990.1181441866736,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,4,1,0,683.75,0,0,0 +6845,8385,15266,-9,15267,15268,4,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.02972297603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,3,1,388.8,0,0,0 +6845,8385,15267,15268,-9,-9,1,1,0,44,1,0,3,0,2,-9,2,1,0,4,7.26525573555653,7.266370073643477,0,2,0,-9,20,0,-5,-35.18030202514583,0,0,1,49,2,4,1,2,2,2019,1,2,12,0,26,26,15,1,0,1,0,4.328184505229201,4.328184505229201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,9,3,1,388.8,0,0,0 +6845,8385,15268,15267,-9,-9,2,1,1,49,1,0,3,0,2,-9,2,1,0,4,8.597178594378418,8.809231747494163,0,2,0,-9,20,0,5,-137.2283981483589,0,0,0,44,2,4,1,-9,-9,2019,1,1,9,0,38,40,15,1,1,1,0,13.58397715207625,13.58397715207625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,3,1,388.8,0,0,0 +6845,8385,15269,-9,15267,15268,5,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-913.7107911610926,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,9,3,1,388.8,0,0,0 +6845,8385,15270,-9,15267,15268,3,1,0,16,2,0,3,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1078.810922827501,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,9,3,1,388.8,0,0,0 +6846,8386,15271,-9,-9,-9,1,1,1,97,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1114.945431180254,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.241905632914821,0,0,0,60.87,42.1,6,1,0,0,7,1,0,350,0,0,0 +6847,8387,15272,15273,-9,-9,2,1,1,41,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,2,0,7,73.66937826807279,0,0,0,34,2,1,3,-9,-9,2019,4,1,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.25658140704584,3,45,39.21,4,1,1,1,10,1,0,402.5,0,0,0 +6847,8387,15273,15272,-9,-9,1,1,0,34,1,0,0,0,2,-9,3,3,0,1,0,3.89123034051787,4.01107256352712,1,0,-9,2,0,-7,-79.1964850428274,0,0,1,41,3,1,3,-9,2,2019,4,2,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.640828829273568,0,0,0,36.35,29.55,3,1,1,1,10,1,0,402.5,0,0,0 +6848,8388,15274,15275,-9,-9,2,1,0,72,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,44,0,1,-115.3130112881403,0,0,0,71,3,2,3,3,3,2019,4,1,11,0,0,0,15,3,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,5,0,1,4,2,1,580.5,0,0,0 +6848,8388,15275,15274,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,6.581484952814979,6.454346858194808,1,0,-9,44,0,-1,165.1522379610267,0,0,0,72,2,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.107940950998389,0,0,46.41,37.03,6,5,0,1,4,2,1,580.5,0,0,0 +6849,8389,15276,-9,-9,-9,1,1,0,45,2,0,1,0,1,-9,1,1,0,4,8.72093734702414,9.144241611803844,6.874668259199347,4,0,0,0,-9,0,-1006.184264608582,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,40,38,15,1,0,-9,0,22.45484768322062,22.45484768322062,0,0,0,0,0,0,0,1,1,0,6.966273961035558,0,0,0,46.5,58.26,5,1,0,0,8,5,1,466.5,0,0,0 +6849,8389,15277,-9,15276,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.911409757678,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,5,1,466.5,0,0,0 +6850,8390,15278,-9,15280,15282,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.5549261477729,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,1,526.8,0,0,0 +6850,8390,15279,-9,15280,15282,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.909979464908,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,526.8,0,0,0 +6850,8390,15280,15282,-9,-9,1,1,0,44,1,0,3,0,1,-9,1,1,0,3,7.259757789497258,7.473337953412377,0,2,0,-9,8,0,-3,-61.14503742549555,0,0,1,47,1,3,1,1,1,2019,1,2,16,4,24,20,15,1,4,1,0,5.782684217658857,5.782684217658857,0,0,0,0,0,0,0,1,1,0,1.297179369087133,0,0,0,28.52,62.72,4,1,0,0,6,4,1,526.8,0,0,0 +6850,8390,15281,-9,15280,15282,3,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-906.8727813663559,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,6,4,1,526.8,0,0,0 +6850,8390,15282,15280,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,3,8.550106225526157,8.500609575154238,0,2,0,-9,8,0,3,-59.71464939847989,0,0,0,44,1,3,1,2,3,2019,1,1,15,6,40,38,15,1,6,1,0,13.48606453602896,13.48606453602896,0,0,0,0,0,0,0,1,1,0,1.608114665238963,0,0,0,49.58,55.59,3,1,0,0,6,4,1,526.8,0,0,0 +6851,8391,15283,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,3,7.827431800318833,7.687834830426219,0,3,0,0,0,-9,0,-981.3336777315251,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,7,33,15,1,0,-9,0,50.00903012031812,50.00903012031812,0,0,0,0,0,0,0,0,0,0,0,0,11.32559795517597,3,41.71,52.41,3,3,0,0,8,4,1,1538,0,0,0 +6852,8392,15284,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1069.865460988849,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55.71,25.06,5,1,0,0,11,1,1,176,0,0,0 +6853,8393,15285,15286,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,2,8.059785807089391,7.952318621490081,3.698900118986086,1,0,-9,6,0,3,-45.59423719279785,0,0,0,57,2,4,1,-9,-9,2019,1,1,9,0,50,45,15,1,0,1,0,10.95178195388713,10.95178195388713,0,0,0,0,0,0,0,0,0,0,0,3.610401360999797,0,0,56.37,40.62,6,1,0,0,5,4,1,589.5,0,0,0 +6853,8393,15286,15285,-9,-9,1,1,0,57,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,6,0,-3,78.20038785068989,0,0,0,60,2,2,1,3,3,2019,1,2,11,0,35,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.596933976337412,0,0,0,43.42,62.33,6,1,0,0,5,4,1,589.5,0,0,0 +6854,8394,15287,15288,-9,-9,1,1,1,59,1,0,0,0,2,-9,6,3,0,4,5.088564299869677,5.25060390141143,0,1,0,-9,8,0,1,-95.80186084538465,0,0,0,58,3,3,3,2,2,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.212244932942615,0,0,0,43.67,61.06,5,1,0,1,9,2,1,1045,0,0,0 +6854,8394,15288,15287,-9,-9,2,1,0,58,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,8,0,-1,-99.92514025259572,0,0,0,59,2,4,3,3,2,2019,4,1,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.48728827416282,0,0,0,37.17,45.07,4,1,0,1,9,2,1,1045,0,0,0 +6854,8395,15289,-9,15288,15287,3,1,1,27,2,0,0,0,2,-9,2,1,0,2,7.796948630683882,7.93956616386973,0,3,0,0,0,-9,0,-961.4147539359078,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,34,15,1,0,-9,1,7.515698480798646,7.515698480798646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.45,54.89,5,1,0,0,9,3,1,3244,0,0,0 +6854,8396,15290,-9,15288,15287,4,1,1,22,2,0,0,0,2,1,2,1,0,4,7.493661034188983,7.398163553784354,0,3,0,0,0,-9,0,-1023.137987216268,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,28,0,15,1,2,-9,1,5.762208177401274,5.762208177401274,0,0,0,0,0,0,0,1,1,0,0,0,2.338854859163806,3,35.47,57.79,5,1,0,0,9,3,1,485,0,0,0 +6855,8397,15291,-9,15292,15293,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.094543794102,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,1,625.5,0,0,0 +6855,8397,15292,15293,-9,-9,1,1,0,55,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,7,0,5,-24.83705906428055,0,0,0,50,2,4,1,3,3,2019,3,2,14,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.86958655302015,3,36.04,27.04,4,1,0,1,5,4,1,625.5,0,0,0 +6855,8397,15293,15292,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,4,8.825967343990927,8.431161620329123,0,2,0,-9,7,0,-5,-54.95534348112295,0,0,0,55,2,2,3,-9,-9,2019,2,1,9,0,37,40,15,1,1,3,0,21.11235942577858,21.11235942577858,0,0,0,0,0,0,0,1,1,0,2.102440992575383,0,0,0,53,55,6,1,0,0,5,4,1,625.5,0,0,0 +6855,8397,15294,-9,15292,15293,3,1,1,16,2,0,1,0,2,-9,2,2,0,3,6.134510604846641,6.099969639053308,0,2,0,0,0,-9,0,-982.3588886698668,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,10,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.51,53.71,6,1,0,0,5,4,1,625.5,0,0,0 +6856,8398,15295,-9,15296,15298,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.4000335621377,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,5,1,681.5,0,0,0 +6856,8398,15296,15298,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,6.480644774150171,6.590763126056428,0,2,0,-9,2,0,-2,54.43302591246361,0,0,1,42,1,4,1,-9,-9,2019,1,1,8,0,7,0,15,1,0,1,0,8.554376912434616,8.554376912434616,0,0,0,0,0,0,0,1,1,0,7.673074765423523,0,0,0,54.79,55.86,6,1,0,0,9,5,1,681.5,0,0,0 +6856,8398,15297,-9,15296,15298,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.566567076455,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,1,681.5,0,0,0 +6856,8398,15298,15296,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,4,9.408202123630449,9.360426753943328,0,2,0,-9,8,0,2,-80.42999908072809,0,0,0,40,1,4,1,2,3,2019,1,2,9,0,40,42,15,1,1,1,0,35.13468960428654,35.13468960428654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,9,5,1,681.5,0,0,0 +6857,8399,15299,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,2,1,0,1,0,5.05854626487276,4.874205423801292,3,0,-9,0,-9,0,-907.2953026252832,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.668291757997222,0,0,56.43,14.92,4,1,0,0,7,2,0,1051,0,0,0 +6858,8400,15300,15301,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,1,0,6.612775444214216,6.49852035290699,1,0,-9,7,0,2,-4.426501178735558,0,0,0,68,2,4,3,2,2,2019,4,1,9,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.814797772177488,0,0,61.11,14.56,6,1,0,0,13,3,1,398,0,0,0 +6858,8400,15301,15300,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.828481014895007,7.59659606135821,1,0,-9,7,0,-2,98.67927202575783,0,0,0,70,3,1,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.354554778781796,7.86639376275064,4.821195681331007,1,61.12,46.03,6,1,0,0,13,3,1,398,0,0,0 +6859,8401,15302,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-926.5769988158817,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,1,0,0,6.728750519946183,13.0129092181317,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,11,1,0,579,0,0,0 +6860,8402,15303,-9,15306,15304,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1137.525726795895,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,1,680,0,0,0 +6860,8402,15304,15306,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.792506873376892,8.282364647556273,0,2,0,-9,18,0,4,110.3169751042767,0,0,0,36,2,2,1,-9,-9,2019,1,2,12,0,40,40,15,1,0,1,0,18.13483901125786,18.13483901125786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.16,51.93,4,1,0,0,8,4,1,680,0,0,0 +6860,8402,15305,-9,15306,15304,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.975539578631,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,680,0,0,0 +6860,8402,15306,15304,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,2,7.164334067758514,7.450199390924906,0,2,0,-9,18,0,-4,-31.73541170365384,0,0,1,40,2,4,1,2,2,2019,1,1,13,1,16,16,15,1,1,1,0,11.15817934911835,11.15817934911835,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.46,55.58,6,1,0,0,8,4,1,680,0,0,0 +6861,8403,15307,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,1,1,0,4,6.402849739976142,6.261265625291093,0,3,0,0,0,-9,0,-949.3385047365143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,60,51,15,1,0,-9,0,1.235769018342379,1.235769018342379,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,10,2,1,1289,0,0,0 +6862,8404,15308,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1017.544332494769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.79,30.49,3,1,0,0,12,1,0,491,0,0,0 +6862,8405,15309,-9,-9,15308,2,1,0,22,2,0,0,0,2,0,7,2,0,3,7.285662679367588,7.268291084547588,0,3,0,0,0,-9,0,-1025.926155758101,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,20,8,20,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.71156665556838,3,28.27,56.31,4,1,0,0,12,2,0,299,0,0,0 +6863,8406,15310,-9,-9,-9,1,1,1,24,2,1,1,0,2,-9,3,3,0,2,0,5.629166875983479,5.332643230371938,4,0,-9,0,0,0,-932.7659305789233,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.62809976816481,0,0,0,50.5,40.48,5,1,1,1,9,2,1,376,0,0,0 +6863,8407,15311,15312,-9,-9,2,1,1,22,1,1,1,0,2,-9,2,1,0,4,8.031787725258024,8.030073117510968,0,2,0,-9,1,0,1,-66.74058818661666,0,1,0,21,2,3,1,2,2,2019,1,3,10,0,30,0,15,1,1,1,0,12.25918730463655,12.25918730463655,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,9,3,1,205.3333333333333,0,0,0 +6863,8407,15312,15311,-9,-9,3,1,0,21,1,1,1,0,2,-9,5,1,0,3,0,0,0,2,0,-9,1,-9,-1,134.4688547639442,-9,1,1,22,2,4,1,-9,-9,2019,1,2,18,4,0,0,15,1,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.91,27.97,6,1,0,0,9,3,1,205.3333333333333,0,0,0 +6863,8407,15313,-9,15312,15311,4,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1040.785258375738,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,205.3333333333333,0,0,0 +6864,8408,15314,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-966.7385135726405,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.59,32.09,3,1,0,0,2,1,0,249,0,0,0 +6864,8409,15315,-9,15314,-9,2,1,1,48,2,0,0,0,1,-9,2,1,0,4,7.545673948067515,7.957022355965493,0,3,0,0,0,-9,0,-986.2995068727605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,1,7.051698090220952,7.051698090220952,0,0,0,0,0,0,0,1,1,0,0,0,9.833050289955212,3,48.79,47.69,4,1,0,0,2,3,0,184,0,0,0 +6865,8410,15316,15317,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,3,7.582563528796632,7.61220414048031,0,1,0,-9,7,0,-8,-126.8876968704835,0,0,1,47,1,3,1,2,2,2019,1,1,24,12,45,44,15,1,12,1,0,7.782194380517646,7.782194380517646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.32,52.93,4,1,0,0,5,5,1,358.5,0,0,0 +6865,8410,15317,15316,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,3,8.783662799278204,8.838373870161179,0,1,0,-9,7,0,8,34.48720276267021,0,0,0,39,2,3,1,2,1,2019,1,2,13,1,37,37,15,1,1,1,0,15.1611379179116,15.1611379179116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.89,57.17,4,1,0,0,5,5,1,358.5,0,0,0 +6866,8411,15318,-9,15320,-9,2,1,1,16,2,0,3,1,3,-9,7,2,0,4,4.574817638141075,4.307539441406485,0,4,0,0,0,-9,0,-1006.168612147741,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,1,2,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.85939898017674,0,0,0,55.19,54.26,6,1,0,0,9,2,0,481.5,0,0,0 +6866,8411,15319,-9,15320,-9,3,1,0,14,2,0,3,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-985.4181532408619,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,33,3,1,0,0,9,2,0,481.5,0,0,0 +6866,8411,15320,-9,-9,-9,1,1,0,48,3,0,3,0,1,-9,1,1,0,1,6.713470396165889,7.500622907393518,7.563882024324196,4,0,0,0,-9,0,-948.2569802774814,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,20,25,15,1,5,-9,0,5.756031010511339,5.756031010511339,0,0,0,0,0,0,0,1,1,0,6.939103275645222,0,2.314767103094101,3,21.67,40.52,2,1,0,0,9,2,0,481.5,0,0,0 +6866,8411,15321,-9,15320,-9,4,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-949.0183013768374,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,9,2,0,481.5,0,0,0 +6867,8412,15322,15323,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,5,7.109445135085015,6.798715758652166,0,1,0,-9,9,0,0,-27.57973575577977,0,0,0,53,2,3,1,2,2,2019,1,1,7,0,6,6,15,1,0,1,0,27.62416268040203,27.62416268040203,0,0,0,0,0,0,0,0,0,0,2.307543104633817,0,0,0,57.06,57.76,7,1,0,0,13,4,1,1475,0,0,0 +6867,8412,15323,15322,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,7.955808201949006,8.453440032964643,8.228290122270403,1,0,-9,9,0,0,72.22658248256955,0,0,0,53,1,5,1,2,3,2019,1,2,8,0,29,22,15,1,0,1,0,9.047439692465543,9.047439692465543,0,0,0,0,0,0,0,0,0,0,3.967007067933886,7.758985341555825,0,0,54.37,54.8,6,1,0,0,13,4,1,1475,0,0,0 +6867,8413,15324,-9,15322,15323,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.064147206844369,8.519077259856763,0,3,0,0,0,-9,0,-935.9429558866354,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,39,40,15,1,0,-9,1,10.72467159690821,10.72467159690821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,5,1,0,0,13,4,1,625,0,0,0 +6867,8414,15325,-9,15322,15323,4,1,1,22,2,0,0,0,1,1,2,1,0,5,8.415138006674319,8.3262544866251,0,3,0,0,0,-9,0,-1019.630769430804,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,40,0,15,1,0,-9,1,11.06898899828726,11.06898899828726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,13,4,1,1372,0,0,0 +6867,8415,15326,-9,15322,15323,5,1,1,19,2,0,0,1,2,0,7,2,0,4,6.585591584823074,6.969350862544283,0,3,0,0,0,-9,0,-975.1526095717351,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,13,2,1,282,0,0,0 +6868,8416,15327,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,5,8.630825243642926,8.317901830339808,0,3,0,0,0,-9,0,-1050.998941585553,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,37,35,15,1,0,-9,0,12.68056650956387,12.68056650956387,0,0,0,0,0,0,0,1,1,0,3.041913416876463,0,0,0,57.06,57.76,7,1,0,0,5,4,0,665,0,0,0 +6869,8417,15328,15329,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-4,81.54589949579017,0,0,0,69,3,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,15.57596165389933,0,0,0,0,1,1,0,0,0,0,0,53.59,33.58,6,1,0,0,12,1,1,549,0,0,0 +6869,8417,15329,15328,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,5,0,3.542554038871353,3.562416928108445,1,0,-9,6,0,4,-9.021493259710303,0,0,0,65,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.884048040295274,.7036608149813606,3,60.02,56.42,6,1,0,0,12,1,1,549,0,0,0 +6870,8418,15330,15331,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,8.156465754478088,8.496731476093547,1,0,-9,36,0,6,-75.6731735710834,0,0,0,62,1,4,1,2,1,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.052669848539532,8.28262074807806,0,0,53.38,52.51,6,1,0,0,10,5,1,808.5,0,0,0 +6870,8418,15331,15330,-9,-9,2,1,0,62,1,0,0,0,1,-9,1,1,0,4,8.574923165301652,8.943806546174756,7.977284771008246,1,0,-9,34,0,-6,87.67673383160559,0,0,0,68,2,3,3,3,2,2019,2,1,6,0,45,20,15,1,0,4,0,16.43254746102524,16.43254746102524,0,0,0,0,0,0,0,1,1,0,4.230144109093632,8.260142915527853,0,0,50.05,55.41,7,1,0,0,10,5,1,808.5,0,0,0 +6871,8419,15332,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,3,7.872501735882361,8.197939071666493,0,3,0,0,0,-9,0,-1128.243151837832,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,1,38,38,15,1,1,-9,0,9.099673718608878,9.099673718608878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.88,50.52,6,1,0,0,12,4,0,419,0,0,0 +6872,8420,15333,-9,15334,15335,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.418922575742,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,0,726.6666666666666,0,0,0 +6872,8420,15334,15335,-9,-9,1,1,0,35,1,0,2,0,3,-9,2,1,0,3,6.970642747336497,6.822663868918108,0,2,0,-9,16,0,-6,-137.7420576879541,0,0,1,41,3,3,1,2,2,2019,1,2,6,0,16,16,15,1,0,1,0,6.270788077179992,6.270788077179992,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,0,2,3,0,726.6666666666666,0,0,0 +6872,8420,15335,15334,-9,-9,2,1,1,41,1,0,2,0,3,-9,2,1,0,3,7.986611215051536,8.143839372366669,0,2,0,-9,9,0,6,-24.61056170677908,0,0,0,35,3,3,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,8.178606739985867,8.178606739985867,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,1,0,0,2,3,0,726.6666666666666,0,0,0 +6873,8421,15336,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,5,0,7.502020844656282,7.270049217717979,3,0,0,0,-9,0,-867.8556536325515,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.025456473752729,7.397146725892849,.9534209593766019,3,64.03,39.54,7,1,0,0,9,3,1,306,0,0,0 +6874,8422,15337,-9,-9,-9,2,1,1,32,2,0,0,0,1,-9,2,1,0,5,8.358231690821489,8.627148395377979,0,1,0,1,1,-9,-6,-38.21743368609239,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,11,0,45,45,15,1,0,-9,0,18.42226570103625,18.42226570103625,0,0,0,0,0,0,0,0,0,0,3.720706564042769,0,0,0,51.73,58.82,2,1,0,0,11,5,1,978,0,0,0 +6875,8423,15338,15339,-9,-9,1,1,1,47,1,1,1,0,3,-9,1,1,0,4,7.267315501681126,7.538259638591063,0,2,0,-9,10,0,2,-9.149409847180412,0,0,0,45,2,4,1,3,3,2019,1,2,10,0,40,45,15,1,1,1,0,5.058836203791111,5.058836203791111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,13,4,1,442.5,0,0,0 +6875,8423,15339,15338,-9,-9,2,1,0,45,1,1,1,0,2,-9,2,1,0,4,8.191172601621973,8.228826230674983,0,2,0,-9,10,0,-2,84.90992502564406,0,0,0,47,3,4,1,3,3,2019,1,1,11,0,50,30,15,1,1,1,0,9.742316733519619,9.742316733519619,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,13,4,1,442.5,0,0,0 +6875,8424,15340,-9,15341,-9,6,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1113.003005986549,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,1,1,660.5,0,0,0 +6875,8424,15341,-9,15339,15338,3,1,0,27,2,1,1,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1000.403358219052,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,45.46,5,1,0,0,13,1,1,660.5,0,0,0 +6875,8425,15342,-9,15339,15338,4,1,1,24,2,1,1,0,2,-9,2,1,0,5,7.796516138966711,7.930438261667796,0,3,0,0,0,-9,0,-1157.267737227597,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,40,38,15,1,0,-9,1,7.277222793906778,7.277222793906778,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,13,4,1,644,0,0,0 +6875,8426,15343,-9,15339,15338,5,1,1,20,2,1,1,0,3,-9,2,1,0,5,7.977658205941273,7.818689492997573,0,3,0,0,0,-9,0,-1077.113058365384,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,40,15,1,0,-9,1,6.360099372047846,6.360099372047846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,13,3,1,1343,0,0,0 +6876,8427,15344,15345,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,9.240243716230129,9.377070077673263,0,1,0,-9,7,0,2,-8.9855638125829,0,0,0,48,2,3,1,2,2,2019,1,2,8,0,39,39,15,1,0,1,0,25.16868599661312,25.16868599661312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,1,5,1,693,0,0,0 +6876,8427,15345,15344,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.251510361966861,7.260972721320503,0,1,0,-9,7,0,-2,-98.34211300303241,0,0,0,50,2,3,1,-9,-9,2019,1,1,14,2,26,26,15,1,2,1,0,7.295588306142564,7.295588306142564,0,0,0,0,0,0,0,0,0,0,5.538089542402775,0,0,0,40.65,57.36,5,1,0,0,1,5,1,693,0,0,0 +6876,8428,15346,-9,15345,15344,3,1,1,18,2,0,0,0,2,1,11,3,0,2,7.746981465069017,7.668810877375926,0,3,0,0,0,-9,0,-1174.308853796161,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,38,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.3015732962378616,0,0,0,45.53,29.2,4,1,0,0,1,3,1,251,0,0,0 +6877,8429,15347,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,5,0,7.498989139959392,7.487263292889109,3,0,0,0,-9,0,-1066.232066571353,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.128968228978308,7.698037881257531,0,0,43.32,63.94,6,1,0,0,13,3,1,1503,0,0,0 +6878,8430,15348,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,8.117685598430551,8.525479438130748,7.593534115347921,3,0,0,0,-9,0,-1070.638213572595,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,38,26,15,1,0,-9,0,9.166460441307676,9.166460441307676,0,0,0,0,0,0,0,1,1,0,6.682466539025337,7.652963023158037,0,0,57.16,56.15,5,1,0,0,12,5,1,259,0,0,0 +6879,8431,15349,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,4,0,7.583884648189263,7.670035899392816,3,0,0,0,-9,0,-1061.684903297251,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.696899685793218,7.735471825925393,0,3,57.16,56.15,1,1,0,0,10,3,1,323,0,0,0 +6880,8432,15350,15351,-9,-9,2,1,1,42,1,0,0,0,1,-9,2,1,0,5,9.297104813396647,9.533147609074815,0,1,0,-9,10,0,4,-97.59998658588634,0,0,0,38,1,5,1,3,1,2019,1,1,10,0,40,50,15,1,0,1,0,33.3892516050197,33.3892516050197,0,0,0,0,0,0,0,0,0,0,9.056248568867444,0,0,0,46.28,62.6,7,3,0,0,6,5,0,582.5,0,0,0 +6880,8432,15351,15350,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,5,8.969965242734411,9.02036730710182,0,1,0,-9,10,0,-4,-71.43642441159552,0,0,1,42,1,5,1,3,3,2019,1,2,13,1,50,50,15,1,1,1,0,25.58647615745675,25.58647615745675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.33,58,6,3,0,0,6,5,0,582.5,0,0,0 +6881,8433,15352,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,4,8.713636967728526,8.642304999237076,0,3,0,0,0,-9,0,-846.0104128481082,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,35,35,15,1,0,-9,0,17.19576282989265,17.19576282989265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,500,0,0,0 +6882,8434,15353,15354,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.664382635100418,8.381792554878009,0,1,0,-9,2,0,-1,-41.7603307878377,-9,0,1,31,2,4,1,-9,-9,2019,1,1,11,0,42,0,15,1,2,1,0,9.681012330747089,9.681012330747089,0,0,0,0,0,0,0,0,0,0,2.516231747320598,0,0,0,48,57,5,5,0,0,4,5,0,729.5,0,0,0 +6882,8434,15354,15353,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,8.981126136064507,8.913771569429576,0,1,0,-9,2,0,1,-49.54050580454498,0,0,0,30,1,4,1,2,2,2019,1,2,22,10,37,43,15,1,10,1,0,19.35246244179658,19.35246244179658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,5,1,0,0,4,5,0,729.5,0,0,0 +6883,8435,15355,15356,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,1,0,0,0,1,0,-9,5,0,0,-16.50687300603357,-9,0,0,59,1,5,1,3,3,2019,1,2,25,12,0,0,15,1,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.731812366137794,0,0,0,32.74,16.46,3,1,0,0,2,4,1,816.5,0,0,0 +6883,8435,15356,15355,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,5,7.929707285200808,8.415475438384595,7.393667789972398,1,0,-9,5,0,0,-104.9623158772292,0,0,0,59,2,1,1,3,3,2019,1,1,12,0,24,27,15,1,0,1,0,15.01029033732611,15.01029033732611,0,0,0,0,0,0,0,1,1,0,7.915759326580184,7.55327967948102,0,0,57.06,57.76,7,1,0,0,2,4,1,816.5,0,0,0 +6884,8436,15357,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1000.877802115022,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.34,49.98,4,1,0,0,2,1,0,423,0,0,0 +6885,8437,15358,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,2,8.375300010365129,8.321561251509491,0,3,0,0,0,-9,0,-968.820705092919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,39,37,15,1,1,-9,0,13.78523669345488,13.78523669345488,0,0,0,0,0,0,0,0,0,0,1.161646074903186,0,0,0,46.86,45.14,3,4,0,0,8,5,1,262,0,0,0 +6886,8438,15359,15361,-9,-9,2,1,0,52,1,0,1,0,1,-9,1,1,0,2,7.77128600816591,7.728727086972718,0,2,0,-9,14,0,-23,-8.669730699319885,0,0,0,75,1,4,1,3,2,2019,1,1,13,3,40,15,15,1,3,1,0,7.358037359631764,7.358037359631764,0,0,0,0,0,0,0,1,1,0,7.523540382650339,0,0,0,50.46,29.74,4,1,0,0,10,3,1,346.6666666666667,0,0,0 +6886,8438,15360,-9,15359,15361,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.0251965227707,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,346.6666666666667,0,0,0 +6886,8438,15361,15359,-9,-9,1,1,1,75,1,0,1,0,1,-9,1,1,0,4,7.325847659285306,7.921839017703803,6.747919955929607,2,0,-9,14,0,23,-61.72799722082421,0,0,0,52,1,2,1,3,3,2019,1,2,11,0,36,35,15,1,0,1,0,5.427949135087696,5.427949135087696,0,0,0,0,0,0,0,1,1,0,8.043672372452779,6.715610569724066,0,0,44.53,52.41,6,1,0,0,10,3,1,346.6666666666667,0,0,0 +6887,8439,15362,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,3,0,7.0595902704399,6.79516616443126,3,0,0,0,-9,0,-1026.937677453151,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.770392962053878,0,0,35.4,55.04,6,1,0,0,1,2,0,2043,0,0,0 +6888,8440,15363,-9,15364,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.6580915268896,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,2,0,0,2,1,0,934,0,0,0 +6888,8440,15364,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1064.742782680798,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,18,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.85,58.94,1,2,1,1,2,1,0,934,0,0,0 +6889,8441,15365,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-919.401329125253,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,18,6,0,45,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.23,58.41,3,3,0,0,5,1,1,963,0,0,0 +6890,8442,15366,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1061.558646891098,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.102230859988321,0,0,0,52,45,6,1,0,0,12,1,1,580,0,0,0 +6891,8443,15367,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-996.0683485277647,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.45,30.52,4,3,0,0,4,1,0,337,0,0,0 +6892,8444,15368,15370,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,2,8.436958808664128,8.249389876008328,0,2,0,-9,7,0,-2,-23.25778676131358,0,0,1,36,1,2,3,2,1,2019,2,3,15,3,39,15,15,1,3,3,0,11.90922632097222,11.90922632097222,0,0,0,0,0,0,0,1,1,0,0,0,.4287384656575743,3,26.09,44.12,4,1,0,0,7,3,0,1173.25,0,0,0 +6892,8444,15369,-9,15368,15370,2,1,1,10,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1081.935388850602,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,45,4,1,0,0,7,3,0,1173.25,0,0,0 +6892,8444,15370,15368,-9,-9,3,1,1,36,1,0,2,0,1,-9,3,3,0,2,0,0,0,2,0,-9,7,0,2,-78.92384352618123,0,0,0,34,1,2,1,-9,-9,2019,3,1,28,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.41,51.05,3,1,1,0,7,3,0,1173.25,0,0,0 +6892,8444,15371,-9,15368,15370,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.608837085134,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,3,0,1173.25,0,0,0 +6893,8445,15372,-9,-9,-9,1,1,0,27,3,0,0,0,2,-9,2,1,0,3,9.353900232151812,9.325121488357233,0,3,0,-9,0,-9,0,-837.5218239443006,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,43,0,15,1,9,-9,0,29.54318772370055,29.54318772370055,0,0,0,0,0,0,0,0,0,0,.2121220865504975,0,0,0,42.08,37.35,6,3,0,0,8,5,0,715,0,0,0 +6894,8446,15373,15376,-9,-9,2,1,1,37,1,0,4,0,2,-9,2,1,0,3,8.108557780004087,8.476702952574437,0,2,0,-9,10,0,0,-6.28189702996406,0,0,0,37,3,4,1,2,2,2019,1,1,25,11,50,40,15,1,11,1,0,9.188709430493093,9.188709430493093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.13,49.3,4,1,0,0,11,3,0,533.4285714285714,0,0,0 +6894,8446,15374,-9,15376,15373,7,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.9457113045833,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,3,0,533.4285714285714,0,0,0 +6894,8446,15375,-9,15376,15373,3,1,0,17,2,0,4,1,2,0,7,2,0,4,6.266305116522125,6.455235145607155,0,2,0,0,0,-9,0,-1069.408147935797,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,5,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.36164672176245,0,44.45,47.1,6,1,0,0,11,3,0,533.4285714285714,0,0,0 +6894,8446,15376,15373,-9,-9,1,1,0,37,1,0,4,0,3,-9,2,1,0,4,6.896120877439335,7.212753339611672,0,2,0,-9,10,0,0,-79.64639353990698,0,0,1,37,2,3,1,3,2,2019,1,2,12,0,18,19,15,1,0,1,0,8.988334064550809,8.988334064550809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,58.88,6,1,0,0,11,3,0,533.4285714285714,0,0,0 +6894,8446,15377,-9,15376,15373,4,1,0,16,2,0,4,0,-9,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.2552407094158,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,533.4285714285714,0,0,0 +6894,8446,15378,-9,15376,15373,5,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.3470005150833,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,533.4285714285714,0,0,0 +6894,8446,15379,-9,15376,15373,6,1,0,10,2,0,4,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-990.5521823646855,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29,33,3,1,0,0,11,3,0,533.4285714285714,0,0,0 +6895,8447,15380,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-842.0772167760906,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.15,27.84,2,3,0,1,6,1,1,870,0,0,0 +6896,8448,15381,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,4,7.535576465153436,7.249683880319484,0,3,0,0,0,-9,0,-1057.076389478835,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,50,0,15,1,0,-9,0,3.466061868781596,3.466061868781596,0,0,0,0,0,0,0,0,0,0,1.334498030441554,0,0,0,41.11,60.68,6,1,0,0,9,3,1,1023,0,0,0 +6897,8449,15382,15383,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,8.708185651056599,8.955762895020781,0,1,0,-9,23,0,-3,24.44181648383136,0,0,0,59,2,3,1,2,1,2019,1,1,8,0,37,40,15,1,0,1,0,13.51840574637709,13.51840574637709,0,0,0,0,0,0,0,0,0,0,2.786679740234809,0,0,0,62.25,48.33,6,1,0,0,6,5,1,1495,0,0,0 +6897,8449,15383,15382,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.484118757272554,7.654333318192884,0,1,0,-9,23,0,3,-19.73233247118189,0,0,0,56,2,4,1,2,2,2019,1,2,7,0,37,37,15,1,0,1,0,11.23142830732037,11.23142830732037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,48.57,7,1,0,0,6,5,1,1495,0,0,0 +6898,8450,15384,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,4,3,0,3,0,8.220608507163758,7.956548480150956,3,0,0,0,-9,0,-949.5644171182684,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.614708491673845,7.97839745656109,0,0,59.07,43.05,6,1,0,0,2,3,1,1720,0,0,0 +6899,8451,15385,15386,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,7.173781191079596,7.004219374121939,1,0,-9,7,0,2,-18.05437984137981,0,0,0,62,2,3,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.045647692116117,7.148839936053751,0,0,54.64,47.79,1,1,0,0,1,2,1,275,0,0,0 +6899,8451,15386,15385,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,5.777138114772736,6.223213116043087,1,0,-9,21,0,-2,-35.38591433850087,0,0,0,64,2,3,3,3,3,2019,4,2,24,12,0,28,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.695399497652799,0,0,26.23,44.72,6,1,0,0,1,2,1,275,0,0,0 +6900,8452,15387,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1159.403446022244,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.15,27.8,5,5,1,0,8,1,0,465,0,0,0 +6901,8453,15388,15389,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.902161299288451,9.153355794494292,0,1,0,-9,3,0,0,61.10144654765959,0,0,0,60,3,1,1,3,3,2019,1,2,9,1,37,76,15,1,1,1,0,22.3174375318924,22.3174375318924,0,0,0,0,0,0,0,0,0,0,8.1679690722427,0,0,0,43.97,49.77,4,1,0,0,12,5,1,890.5,0,0,0 +6901,8453,15389,15388,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,1,7.602594302952073,7.321795722885114,0,1,0,-9,3,0,0,6.477704750605064,0,0,0,60,1,3,1,-9,-9,2019,1,1,17,5,30,40,15,1,5,1,0,6.876385307234772,6.876385307234772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.84,22.06,3,1,0,0,12,5,1,890.5,0,0,0 +6902,8454,15390,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,1,0,6.79687688434361,7.236697886772126,3,0,0,0,-9,0,-1038.021798409442,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.342204728305235,0,0,0,23.94,23.19,3,1,0,0,4,2,0,658,0,0,0 +6903,8455,15391,15392,-9,-9,1,1,1,91,1,0,0,0,3,-9,4,3,0,2,0,5.434589888241216,5.58739469180762,1,0,-9,6,0,7,59.86818170090834,0,0,0,84,2,5,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.614693137592478,0,0,49.98,21.65,6,1,0,0,6,2,1,673.5,0,0,0 +6903,8455,15392,15391,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,5,0,6.849192549223055,6.540780896168852,1,0,-9,6,0,-7,92.44061716080384,0,0,0,91,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.847156564713539,67.59546136716526,1,55.09,55.87,6,1,0,0,6,2,1,673.5,0,0,0 +6904,8456,15393,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,3,8.433593525002998,8.090415450903402,0,3,0,0,0,-9,0,-1148.241380535355,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,39,40,15,1,0,-9,0,11.62947451901006,11.62947451901006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,5,1,0,0,1,4,1,325,0,0,0 +6904,8457,15394,-9,15393,-9,2,1,0,21,2,0,0,0,1,1,2,1,0,3,7.829344541753152,7.718686078414301,0,3,0,0,0,-9,0,-950.0743242045404,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,45,0,15,1,0,-9,1,6.357492440417553,6.357492440417553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.93,52,6,1,0,0,1,3,1,411,0,0,0 +6905,8458,15395,15396,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,2,0,6.614370421073232,6.456908112008881,1,0,-9,65,0,-1,-120.9383045252844,0,0,0,85,3,3,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.838864297404395,6.475097243038731,0,0,49.58,33,5,1,0,0,2,2,1,897.5,0,0,0 +6905,8458,15396,15395,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,6.23046355236622,6.167897505335523,1,0,-9,65,0,1,-128.3031141986976,0,0,0,84,2,2,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.028138484255109,5.991804541233771,0,0,52.07,26.48,7,1,0,0,2,2,1,897.5,0,0,0 +6905,8459,15397,-9,15396,15395,3,1,1,53,2,0,0,0,1,-9,1,1,0,4,7.967207759448308,8.19448945597205,0,3,0,0,0,-9,0,-958.5185393217955,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,35,15,1,1,-9,1,7.232425334461398,7.232425334461398,0,0,0,0,0,0,0,1,1,0,3.669081890365829,0,0,3,53,54,6,1,0,0,2,4,1,500,0,0,0 +6906,8460,15398,15399,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,4,6.845888614347323,7.681939120806628,7.243131218344762,1,0,-9,6,0,10,81.79276100856441,0,0,0,56,1,1,3,-9,-9,2019,2,1,12,1,16,10,15,1,1,3,0,6.603502764095117,6.603502764095117,0,0,0,0,0,0,0,1,1,0,4.618307204979716,7.34298846668812,122.7239500562821,1,49.12,51.75,5,1,0,1,10,4,1,525.5,0,0,0 +6906,8460,15399,15398,-9,-9,1,1,1,56,1,0,0,0,1,-9,8,3,1,1,0,8.038442721152519,7.854199000112726,1,0,-9,26,0,-10,27.4704527792453,0,0,0,66,2,4,1,2,2,2019,3,2,21,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.310675744287134,8.017721837601108,0,0,36.3,28.42,2,1,0,1,10,4,1,525.5,0,0,0 +6907,8461,15400,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,2,1,0,3,7.276998957109774,7.356199532378358,0,3,0,0,0,-9,0,-1089.424485057818,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,27,0,15,1,0,-9,0,6.291984530170772,6.291984530170772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,6,4,0,0,8,3,0,944,0,0,0 +6907,8462,15401,-9,15400,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,4,8.087360523034588,7.79023312083984,0,3,0,0,0,-9,0,-936.0224763593316,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,55,45,15,1,0,-9,1,7.405204878879258,7.405204878879258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.1,48.73,6,2,0,0,8,4,0,1568,0,0,0 +6908,8463,15402,15404,-9,-9,2,1,1,39,1,1,1,0,1,-9,2,1,0,4,8.525834366666148,8.479204751301923,0,2,0,-9,5,0,2,-7.76481029089954,0,0,0,37,1,4,1,-9,-9,2019,1,1,8,0,37,7,15,1,0,1,0,18.3848211152625,18.3848211152625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.33,45.47,5,1,0,0,9,5,0,619.3333333333334,0,0,0 +6908,8463,15403,-9,15404,15402,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1124.152441824368,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,0,619.3333333333334,0,0,0 +6908,8463,15404,15402,-9,-9,1,1,0,37,1,1,1,0,1,-9,2,1,0,4,8.336546742509711,8.724509102538899,0,2,0,-9,5,0,-2,43.8903314204821,0,0,1,39,1,4,1,2,2,2019,1,2,4,0,22,37,15,1,0,1,0,19.69772512496133,19.69772512496133,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,9,5,0,619.3333333333334,0,0,0 +6909,8464,15405,15406,-9,-9,2,1,0,54,1,0,0,0,3,-9,6,3,0,5,0,0,0,1,0,-9,7,0,-3,134.540019475856,0,0,0,57,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,58.27,6,1,0,0,8,3,0,953,0,0,0 +6909,8464,15406,15405,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.397295935326344,8.256182768128483,6.067437024352961,1,0,-9,7,0,3,151.8090272917409,0,0,0,54,3,5,3,3,2,2019,2,2,8,0,50,52,15,1,0,3,0,6.819643069279682,6.819643069279682,0,0,0,0,0,0,0,0,0,0,0,6.142675771357057,0,0,60.73,39.4,6,1,0,0,8,3,0,953,0,0,0 +6910,8465,15407,15408,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,40,0,-3,-56.51988865822435,0,0,0,72,2,1,3,3,3,2019,4,2,24,12,0,0,15,4,12,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,82.88702049730537,1,34.54,29.07,3,1,0,0,5,2,0,174.5,0,0,0 +6910,8465,15408,15407,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,2.26890065801071,2.116816702408018,1,0,-9,40,0,3,31.24050948856154,0,0,0,69,3,2,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,22.36518638895333,0,0,0,0,1,1,0,0,2.068590579185338,0,0,60.61,18.55,7,1,0,0,5,2,0,174.5,0,0,0 +6911,8466,15409,15410,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,5,8.312203152234146,8.153020739120208,0,1,0,-9,4,0,-2,-36.00432366430967,0,1,1,32,1,4,1,-9,-9,2019,1,1,11,1,38,37,15,1,1,1,0,13.22265652314064,13.22265652314064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.3,56.65,6,1,0,0,5,5,0,807,0,0,0 +6911,8466,15410,15409,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.21526195307108,7.55123028346745,0,1,0,-9,4,0,2,104.1628799109264,0,0,0,30,1,5,1,1,1,2019,1,2,6,1,44,39,15,1,1,1,0,9.107977083773594,9.107977083773594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,49.75,6,1,0,0,5,5,0,807,0,0,0 +6912,8467,15411,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,3,0,5.453644063637292,5.496182001220974,3,0,0,0,-9,0,-1044.164141764276,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.923487337192975,5.26010473153569,.8610389821599516,3,54.13,48.04,6,1,0,0,2,2,1,704,0,0,0 +6913,8468,15412,15413,-9,-9,1,1,1,80,1,0,0,0,3,-9,1,1,0,4,6.805899685170899,7.576501769907914,7.760546175246642,1,0,-9,49,0,9,2.926821948479261,0,0,0,71,2,3,1,2,2,2019,1,2,7,0,8,5,15,1,0,1,0,10.40774645131741,10.40774645131741,1,0,0,0,0,0,0,1,1,0,8.530581861955184,7.708370649639583,17.02061813414638,3,66.59999999999999,34.24,7,1,0,0,7,4,1,555,0,0,0 +6913,8468,15413,15412,-9,-9,2,1,0,71,1,0,0,0,2,-9,2,1,0,3,7.051116342222214,7.200829476496923,0,1,0,-9,7,0,0,-176.4996445683581,0,0,0,80,3,4,1,-9,-9,2019,1,1,11,0,36,54,15,1,1,1,0,3.979111863865366,3.979111863865366,0,0,0,0,0,0,0,1,1,0,1.40661035772911,0,0,1,51,46,5,1,0,0,7,4,1,555,0,0,0 +6914,8469,15414,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,5,8.570453813245214,8.693304971084665,0,3,0,0,0,-9,0,-1042.84983720131,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,42,37,15,1,1,-9,0,16.94501120551674,16.94501120551674,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,5,1,602,0,0,0 +6915,8470,15415,-9,15417,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-998.9706565546968,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,702.3333333333334,0,0,0 +6915,8470,15416,-9,15417,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1005.034054581588,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,702.3333333333334,0,0,0 +6915,8470,15417,-9,-9,-9,1,1,0,38,3,0,2,0,1,-9,2,1,0,2,7.560494393756222,8.22009276775391,6.27945754317144,4,0,-9,0,1,0,-1112.504598651513,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,8,30,30,15,1,8,-9,0,7.863501368303911,7.863501368303911,0,0,0,0,0,0,0,1,1,0,6.214116613150495,0,0,0,27.59,52.74,5,1,0,0,4,3,1,702.3333333333334,0,0,0 +6916,8471,15418,15420,-9,-9,2,1,1,48,1,0,1,0,3,-9,1,1,0,4,7.423095657333921,7.315082106085118,0,2,0,-9,25,0,2,30.37749465542769,0,0,0,46,3,3,3,3,2,2019,2,1,6,0,35,0,15,1,0,3,0,4.648341649570277,4.648341649570277,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,4,2,1,292,0,0,0 +6916,8471,15419,-9,15420,15418,5,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1095.711761096484,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,6,3,0,1,4,2,1,292,0,0,0 +6916,8471,15420,15418,-9,-9,1,1,0,46,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,25,0,-2,6.359618834014925,0,0,0,48,3,4,1,3,3,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.4,44.66,4,3,0,0,4,2,1,292,0,0,0 +6916,8472,15421,-9,15420,15418,3,1,1,24,2,0,1,0,2,1,2,1,0,4,7.500727160935252,7.638301848205022,0,3,0,0,0,-9,0,-990.4453729459276,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,48,0,15,1,0,-9,1,5.142472082533843,5.142472082533843,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,5,3,0,0,4,3,1,441,0,0,0 +6916,8473,15422,-9,15420,15418,4,1,1,20,2,0,1,0,2,1,2,1,0,5,6.560191334183056,6.508710337237616,0,3,0,0,0,-9,0,-917.1527977661079,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,19,0,15,1,1,-9,1,4.674990281142159,4.674990281142159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,4,3,0,0,4,2,1,3755,0,0,0 +6917,8474,15423,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,2,0,5.911613913365834,5.537313368734641,3,0,0,0,-9,0,-1070.625865906994,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.514387002433444,5.670821504984119,0,0,30.19,37.62,5,1,0,0,2,2,0,636,0,0,0 +6917,8475,15424,-9,-9,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,6.66067068229798,6.520878031214238,3,0,0,0,-9,0,-1031.912855519228,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.232748081330071,0,0,48.87,34.3,5,1,0,0,2,2,0,224,0,0,0 +6918,8476,15425,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-851.0667148717446,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.82,33.12,4,1,0,0,4,1,0,123,0,0,0 +6919,8477,15426,15427,-9,-9,1,1,0,35,1,0,1,0,1,-9,2,1,0,4,8.823962222915535,8.76773949533403,0,2,0,-9,8,0,0,64.4926847517636,0,0,1,35,2,4,1,2,1,2019,1,2,8,0,37,38,15,1,0,1,0,22.43566715032133,22.43566715032133,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,6,1,0,0,2,5,1,1036.333333333333,0,0,0 +6919,8477,15427,15426,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,4,8.682840354625784,8.472254969979804,0,2,0,-9,8,0,0,9.557099321374011,0,0,0,35,1,4,1,-9,-9,2019,1,1,12,0,39,39,15,1,0,1,0,16.16479385230542,16.16479385230542,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,57.02,7,1,0,0,2,5,1,1036.333333333333,0,0,0 +6919,8477,15428,-9,15426,15427,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.903997891158,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,1036.333333333333,0,0,0 +6920,8478,15429,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,5.277482519415222,5.530028436877953,3,0,0,0,-9,0,-1046.774841544145,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.631951693564563,0,3,55.19,54.26,6,1,0,1,2,2,1,385,0,0,0 +6921,8479,15430,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,3,0,7.749360638935006,7.572548124878997,3,0,0,0,-9,0,-1020.73316030683,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.086764182930149,7.913628869867501,0,0,52.93,52.64,6,1,0,0,9,3,1,290,0,0,0 +6922,8480,15431,-9,15432,-9,2,1,0,17,2,0,0,1,2,0,7,2,0,4,6.013559350925761,5.910963497346331,0,3,0,0,0,-9,0,-871.4459307510675,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,7,14,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.46,62.69,4,1,0,0,9,3,0,674.5,0,0,0 +6922,8480,15432,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,2,7.886868951632048,8.095380074386878,0,3,0,0,0,-9,0,-941.8446532838772,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,11,32,30,15,1,11,-9,0,8.818271468085211,8.818271468085211,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.97,41.96,1,1,0,1,9,3,0,674.5,0,0,0 +6923,8481,15433,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,4,7.642044889476383,7.714955390530012,0,1,0,-9,3,0,-6,-16.44686610800337,0,0,0,-9,-9,-9,-9,2,2,2019,2,2,6,0,30,8,15,1,0,-9,0,11.71287554280441,11.71287554280441,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,2,4,0,4028,0,0,0 +6923,8482,15434,-9,-9,-9,2,1,1,60,2,0,0,0,2,-9,4,3,0,3,0,7.788260114343736,7.607994672650991,1,0,-9,3,0,6,-43.95064348591498,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.676379433082892,0,0,42.7,46.47,7,1,0,0,2,4,0,180,0,0,0 +6924,8483,15435,-9,15438,15436,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.9892027388144,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,2,4,1,805.75,0,0,0 +6924,8483,15436,15438,-9,-9,1,1,1,37,1,1,2,0,2,-9,1,1,0,4,9.168348826131689,9.254134389383134,0,2,0,-9,8,0,2,38.77957450137961,0,0,0,35,1,4,3,1,1,2019,2,2,7,0,34,34,15,1,0,3,0,34.51763037850149,34.51763037850149,0,0,0,0,0,0,0,1,1,0,7.307911262359413,0,0,0,57.16,56.15,6,3,0,0,2,4,1,805.75,0,0,0 +6924,8483,15437,-9,15438,15436,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.9539655475835,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,2,4,1,805.75,0,0,0 +6924,8483,15438,15436,-9,-9,2,1,0,35,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-2,30.48625938979447,0,0,1,37,2,4,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.038020375543901,0,0,0,54.2,57.49,6,3,0,0,2,4,1,805.75,0,0,0 +6925,8484,15439,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,3,0,5.653031121450269,5.311799603359157,3,0,0,0,-9,0,-947.2731541447017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.683782826623706,5.359554095153992,0,0,57.33,53.46,6,1,0,0,2,2,1,1535,0,0,0 +6926,8485,15440,15441,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,6.652497620832987,6.423724926518418,1,0,-9,10,0,0,-40.70506542203866,0,0,0,81,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.283836416871283,84.37884975501481,1,51,46,5,1,0,0,10,2,0,844,0,0,0 +6926,8485,15441,15440,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,5.539278104064787,5.66867095081583,1,0,-9,10,0,0,-18.63756876514867,0,0,0,81,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,127.3570732435501,90.22497257131636,0,0,0,1164.815042767612,1,1,0,0,5.428074929544057,0,0,53,46,6,1,0,0,10,2,0,844,0,0,0 +6927,8486,15442,15443,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.530334000208374,8.19909588865645,0,1,0,-9,1,-9,-5,18.59852660924125,-9,0,0,55,2,4,1,3,3,2019,1,1,11,0,40,0,15,1,0,1,0,13.1020467919506,13.1020467919506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,6,5,0,1672.5,0,0,0 +6927,8486,15443,15442,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.191742574487911,8.14855833813826,0,1,0,-9,1,-9,5,-25.05560605354058,-9,0,0,50,2,4,1,3,2,2019,1,2,10,0,56,0,15,1,0,1,0,7.228500456564327,7.228500456564327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,0,1672.5,0,0,0 +6927,8487,15444,-9,15442,15443,3,1,1,24,2,0,0,0,2,-9,2,1,0,5,6.413673934710183,6.820126103729448,0,3,0,-9,0,-9,0,-1004.562245841828,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,15,0,15,1,0,-9,1,5.344073585979414,5.344073585979414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,5,1,0,1,6,2,0,569,0,0,0 +6928,8488,15445,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,2,0,7.300880600981197,7.301099371093181,3,0,0,0,-9,0,-1104.921790679584,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.980757053497268,7.067271057847303,0,0,55.21,43.87,6,1,0,0,13,3,0,660,0,0,0 +6929,8489,15446,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,5,9.389963544316858,9.714478301158829,0,3,0,0,0,-9,0,-1039.899370790541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,50,40,15,1,0,-9,0,36.37425417458956,36.37425417458956,0,0,0,0,0,0,0,0,0,0,6.843928526771055,0,0,0,60.02,56.42,6,1,0,0,9,5,1,151,0,0,0 +6930,8490,15447,15449,-9,-9,2,1,0,45,1,0,1,0,2,1,2,1,0,5,8.260486547197633,7.95738577336316,0,2,0,-9,10,0,-2,132.3979227236497,-9,0,0,47,2,4,1,2,3,2019,1,1,8,0,36,0,15,1,0,1,0,8.994043556936628,8.994043556936628,0,0,0,0,0,0,0,0,0,0,1.40177246309747,0,0,0,48.77,60.16,5,1,0,0,12,5,1,614,0,0,0 +6930,8490,15448,-9,15447,15449,4,1,1,17,2,0,1,1,2,0,7,2,0,5,0,5.131061790561458,5.2381909967103,2,0,0,0,-9,0,-884.2587740787211,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.892062658755529,0,0,0,48.77,60.16,5,1,0,0,12,5,1,614,0,0,0 +6930,8490,15449,15447,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.733433281291854,9.118732833838925,0,2,0,-9,10,0,2,-22.32168233697391,0,0,0,45,2,5,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,21.02477528537749,21.02477528537749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.39,40.52,7,1,0,0,12,5,1,614,0,0,0 +6930,8491,15450,-9,15447,15449,3,1,0,22,2,0,1,0,1,1,2,1,0,5,8.379277836488235,8.526223029472245,0,3,0,0,0,-9,0,-986.8842575178389,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,50,0,15,1,0,-9,1,9.352629528868176,9.352629528868176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,12,4,1,397,0,0,0 +6931,8492,15451,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,3,3,0,4,0,.4058953516935284,.4129551996068499,3,0,0,0,-9,0,-1025.8499791356,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.4199887212349798,0,0,62.49,55.09,6,5,1,0,10,2,1,457,0,0,0 +6932,8493,15452,15453,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.564635318843679,6.487403593370778,1,0,-9,35,0,0,7.585463402262945,0,0,0,70,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.957335582886905,6.140095200717838,0,0,53,47,5,1,0,0,9,3,1,532,0,0,0 +6932,8493,15453,15452,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.68805330089976,7.25293025853444,1,0,-9,35,0,0,63.18568941612649,0,0,0,70,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.471375093184312,7.649511225691742,0,0,53.28,44.34,6,1,0,0,9,3,1,532,0,0,0 +6933,8494,15454,15455,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,2,7.789590157712207,7.916173672039942,0,1,0,-9,6,0,-3,-93.16783669227642,0,0,0,48,2,4,1,2,2,2019,1,2,35,12,32,36,15,1,12,1,0,8.523938172475605,8.523938172475605,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.29,35.52,2,1,0,0,1,3,0,753,0,0,0 +6933,8494,15455,15454,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,7.215377959500096,6.980168186053414,0,1,0,-9,6,0,3,-7.597644806229643,0,0,0,45,2,2,1,-9,-9,2019,1,1,9,0,32,32,15,1,1,1,0,3.605189334402135,3.605189334402135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,1,3,0,753,0,0,0 +6934,8495,15456,15457,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,53,0,0,18.76085977899036,0,0,0,76,2,4,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,10,3,1,1356,0,0,0 +6934,8495,15457,15456,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.566913046328972,7.535443976889528,1,0,-9,53,0,0,12.72192520993443,0,0,0,76,3,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.292395160299391,7.340959969384037,0,0,58.72,51.29,6,1,0,0,10,3,1,1356,0,0,0 +6935,8496,15458,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-989.2953000491502,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.44,27.88,2,1,0,0,13,1,0,204,0,0,0 +6936,8497,15459,15463,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,5,7.902063335161553,7.858744804654899,0,2,0,-9,14,0,-8,-42.42698622538957,0,0,1,46,2,5,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,7.961550707707072,7.961550707707072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,4,3,1,581.8,0,0,0 +6936,8497,15460,-9,15459,15463,5,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1102.450860605803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,3,1,581.8,0,0,0 +6936,8497,15461,-9,15459,15463,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.8546312956365,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,581.8,0,0,0 +6936,8497,15462,-9,15459,15463,4,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-868.2217980709964,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,3,1,581.8,0,0,0 +6936,8497,15463,15459,-9,-9,2,1,1,46,1,0,3,0,2,-9,2,1,0,5,7.941237708600509,7.45860498760883,0,2,0,-9,14,0,8,-88.63470370236577,-9,0,0,38,2,5,1,2,2,2019,1,1,7,0,40,0,15,1,0,1,0,9.000074712914962,9.000074712914962,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,4,3,1,581.8,0,0,0 +6937,8498,15464,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1104.205085221252,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.08,35.66,4,1,0,0,12,1,0,716,0,0,0 +6938,8499,15465,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,1,1,0,2,7.365635596642746,7.5548262968643,0,3,0,0,0,-9,0,-1080.225511433496,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,38,35,15,1,0,-9,0,6.123262871717936,6.123262871717936,0,0,0,0,0,0,0,1,1,0,.7120707376254752,0,0,0,42.45,52.35,6,1,0,0,12,3,0,1028,0,0,0 +6939,8500,15466,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-962.8171687328219,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,44.4,6,1,0,0,4,1,0,2209,0,0,0 +6940,8501,15467,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,4,8.154032803230608,8.231086937764964,0,3,0,0,0,-9,0,-997.14946724961,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,45,46,15,1,4,-9,0,11.20224321640591,11.20224321640591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.45,51.59,3,1,0,0,9,4,0,460,0,0,0 +6941,8502,15468,15469,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,6.393658212140135,6.076332146515242,1,0,-9,6,0,2,109.2640682193752,0,0,0,70,2,2,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.76535030608444,0,0,47.8,32.53,5,1,0,0,12,2,1,291,0,0,0 +6941,8502,15469,15468,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-2,-17.58676686045814,0,0,0,72,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.490503232155358,0,129.0885884796832,1,55.75,36.73,5,1,0,0,12,2,1,291,0,0,0 +6942,8503,15470,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,5,9.098046435906726,8.948456055475798,0,3,0,0,0,-9,0,-958.4883558089842,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,43,40,15,1,0,-9,0,19.08904920220775,19.08904920220775,0,0,0,0,0,0,0,1,1,0,4.080913560206956,0,0,0,55.2,57.22,6,1,0,0,9,5,0,562,0,0,0 +6943,8504,15471,15472,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,7.100230288511069,6.819848927912618,1,0,-9,47,0,0,-146.9670218155132,0,0,0,71,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.408243930016756,7.137282007692169,0,0,56.18,51.02,6,1,0,0,9,2,1,568,0,0,0 +6943,8504,15472,15471,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,4,0,6.485766585657573,6.338060376858609,1,0,-9,47,0,0,111.9806912512301,0,0,0,71,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.321017416338688,6.439050012483073,0,0,55.76,52.64,6,1,0,0,9,2,1,568,0,0,0 +6944,8505,15473,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1008.155207414067,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,1.132758684461779,0,0,0,0,0,1,1,0,2.615356871759147,0,0,0,52.08,26.8,4,1,0,0,10,1,0,209,0,0,0 +6945,8506,15474,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,7.377197031328935,7.47494914469471,0,3,0,0,0,-9,0,-1056.506194500225,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,24,25,15,1,1,-9,0,8.730532086130127,8.730532086130127,0,0,0,0,0,0,0,0,0,0,2.074437945888386,0,11.37652351520426,3,44.3,58.08,6,1,0,0,12,3,1,185,0,0,0 +6946,8507,15475,15476,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.714192574940549,9.201207578372006,0,2,0,-9,10,0,0,6.524843310963254,0,0,1,40,1,4,1,2,2,2019,1,2,23,10,55,45,15,1,10,1,0,15.57786125476755,15.57786125476755,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,56.26,3,2,0,0,6,5,1,380.25,0,0,0 +6946,8507,15476,15475,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,4,8.252080369237989,8.29310715172295,0,2,0,-9,10,0,0,-57.76772702580374,0,0,0,40,1,4,1,2,3,2019,1,1,11,0,38,38,15,1,0,1,0,11.34514268008816,11.34514268008816,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,4,4,0,0,6,5,1,380.25,0,0,0 +6946,8507,15477,-9,15475,15476,3,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1063.06408867268,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,2,0,0,6,5,1,380.25,0,0,0 +6946,8507,15478,-9,15475,15476,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.3453307857872,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,2,0,0,6,5,1,380.25,0,0,0 +6947,8508,15479,15480,-9,-9,1,1,1,42,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,7,0,-4,0,0,0,0,46,2,1,3,2,2,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.581904283344179,0,26.864298393005,1,31.62,45.32,4,2,0,0,11,1,0,683,0,0,0 +6947,8508,15480,15479,-9,-9,2,1,0,46,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,4,0,0,0,0,42,2,2,3,-9,-9,2019,4,1,19,0,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,27,4,1,0,1,11,1,0,683,0,0,0 +6947,8509,15481,-9,15480,15479,3,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.124238233073846,7.798640656668078,0,3,0,0,0,-9,0,-759.1980178204591,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,30,30,15,1,6,-9,1,6.809718023176413,6.809718023176413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.28,53.83,4,1,0,1,11,3,0,386,0,0,0 +6948,8510,15482,15483,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,3,7.67614427099149,7.699734428469348,0,1,0,-9,9,0,1,-51.28377624981042,0,0,0,59,1,4,1,-9,3,2019,1,2,13,1,29,23,15,1,1,1,0,8.417927041928717,8.417927041928717,0,0,0,0,0,0,0,0,0,0,2.21690228997703,0,0,0,49.64,48.69,4,1,0,0,9,5,1,634,0,0,0 +6948,8510,15483,15482,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,8.923478182892291,9.180989637887683,0,1,0,-9,9,0,-1,85.97357579676741,0,0,0,60,1,3,1,2,1,2019,1,1,9,0,37,38,15,1,0,1,0,23.82585153325461,23.82585153325461,0,0,0,0,0,0,0,0,0,0,7.964306674759656,0,0,3,46.42,59.64,6,1,0,0,9,5,1,634,0,0,0 +6949,8511,15484,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,3,7.991870488226899,7.552939679748,5.421468284534299,4,0,0,0,-9,0,-959.9396040820415,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,21,21,15,1,0,-9,0,14.1787375961711,14.1787375961711,0,0,0,0,0,0,0,1,1,0,5.425683416565728,0,5.482028480998092,3,62.15,38.9,5,1,0,0,4,3,1,2708,0,0,0 +6950,8512,15485,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,1,1,0,4,7.699858141728944,7.800365229215257,0,3,0,-9,0,0,0,-1023.109212902686,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,0,15,1,0,-9,0,6.970379613113738,6.970379613113738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,6,1,0,0,13,3,0,149,0,0,0 +6951,8513,15486,-9,-9,-9,1,1,0,42,3,0,5,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1057.512982661907,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06912236359984,3,61.83,26.01,5,4,0,1,8,1,0,741,0,0,0 +6951,8513,15487,-9,15486,-9,6,1,1,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-925.2436745099856,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,4,0,0,8,1,0,741,0,0,0 +6951,8513,15488,-9,15486,-9,5,1,0,11,2,0,5,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1032.981200841285,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,4,0,0,8,1,0,741,0,0,0 +6951,8513,15489,-9,15486,-9,7,1,1,5,2,0,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.292245349026,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,4,0,0,8,1,0,741,0,0,0 +6951,8513,15490,-9,15486,-9,3,1,1,17,2,0,5,1,3,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-990.6373313510757,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,6,1,0,0,8,1,0,741,0,0,0 +6951,8513,15491,-9,15486,-9,4,1,1,14,2,0,5,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-860.6835122664887,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,8,1,0,741,0,0,0 +6951,8514,15492,-9,15486,-9,2,1,0,19,2,0,5,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1000.247087293835,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,33,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.22,44.29,1,4,1,1,8,1,0,763,0,0,0 +6952,8515,15493,15494,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,38,0,0,-93.85068705599922,0,0,0,57,3,4,1,-9,-9,2019,3,2,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01250284700401,3,34.71,56.98,2,1,0,0,9,4,1,1202,0,0,0 +6952,8515,15494,15493,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,4,8.595577347980543,8.500498057225458,0,1,0,-9,38,0,0,42.31084840996409,0,0,0,57,2,3,3,-9,3,2019,2,1,6,0,50,50,15,1,0,3,0,10.88549373581279,10.88549373581279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,6,1,0,0,9,4,1,1202,0,0,0 +6953,8516,15495,-9,15498,15497,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.8751640833165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,1,659.4,0,0,0 +6953,8516,15496,-9,15498,15497,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.526946515382,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,1,1,659.4,0,0,0 +6953,8516,15497,15498,-9,-9,2,1,1,44,1,0,3,0,1,-9,3,3,0,2,0,0,0,2,0,-9,16,0,4,0,0,0,0,40,1,4,3,-9,-9,2019,4,1,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.86,32.4,4,3,1,1,8,1,1,659.4,0,0,0 +6953,8516,15498,15497,-9,-9,1,1,0,40,1,0,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,15,0,-4,0,0,0,1,44,1,2,3,3,2,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,54.32,6,3,0,0,8,1,1,659.4,0,0,0 +6953,8516,15499,-9,15498,15497,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.178974470067,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,1,659.4,0,0,0 +6954,8517,15500,15501,-9,-9,2,1,1,24,1,1,2,0,2,-9,2,1,0,4,8.279999185741255,8.453571266612776,0,2,0,-9,3,0,0,93.56061231982645,0,1,0,24,2,4,3,-9,-9,2019,2,1,9,0,45,41,15,1,0,3,0,9.650867810737639,9.650867810737639,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,3,0,456.5,0,0,0 +6954,8517,15501,15500,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,0,32.91366731544822,0,1,1,24,2,4,1,2,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,4,1,0,0,5,3,0,456.5,0,0,0 +6954,8517,15502,-9,15501,15500,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.372067179891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,0,456.5,0,0,0 +6954,8517,15503,-9,15501,15500,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.203500384574,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,0,456.5,0,0,0 +6955,8518,15504,15505,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,44,0,6,-17.80079325927582,0,0,0,76,3,2,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,37.34,31.49,3,1,0,0,4,1,0,324.5,0,0,0 +6955,8518,15505,15504,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,4.323694211780726,4.680952484581336,1,0,-9,44,0,-6,-48.88754200608748,0,0,0,82,3,2,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.817373540008968,117.1886464393449,1,36.87,37.37,6,1,0,0,4,1,0,324.5,0,0,0 +6956,8519,15506,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,5,9.399365747993521,9.43821143814054,0,1,0,-9,2,0,4,-32.16359826136669,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,10,0,70,70,15,1,0,-9,0,16.29766234572239,16.29766234572239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,1117,0,0,0 +6956,8520,15507,-9,-9,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,5,8.438237986916009,8.484949390112909,0,1,0,-9,2,0,-4,-27.3666773464901,0,1,0,-9,-9,-9,-9,-9,-9,2019,1,1,5,0,40,0,15,1,0,-9,0,14.21950571752055,14.21950571752055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,343,0,0,0 +6957,8521,15508,-9,15511,15509,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.204960656658,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,1,0,1039.25,0,0,0 +6957,8521,15509,15511,-9,-9,1,1,1,49,1,0,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,9,0,11,0,0,0,0,38,3,1,3,3,3,2019,4,2,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.116758103121256,0,35.15853532242583,2,30.58,45.85,3,1,0,0,11,1,0,1039.25,0,0,0 +6957,8521,15510,-9,15511,15509,5,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.1095918404991,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,1,0,1039.25,0,0,0 +6957,8521,15511,15509,-9,-9,2,1,0,38,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,9,0,-11,0,0,0,1,49,3,2,3,-9,-9,2019,4,1,34,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.44,24.26,1,1,0,1,11,1,0,1039.25,0,0,0 +6958,8522,15512,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-940.9268359652611,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,3.594430505769822,0,0,0,0,82.67513523610842,1,1,0,9.973534333994076,0,0,0,45.44,33.28,4,1,0,0,9,1,0,1157,0,0,0 +6959,8523,15513,-9,15514,15515,3,1,1,26,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-950.1548683002952,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.75,58.32,4,1,0,0,2,1,0,496,0,0,0 +6959,8524,15514,15515,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,1,0,0,0,1,0,-9,5,0,-5,0,0,0,0,64,3,2,3,-9,-9,2019,4,1,24,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.74627791698252,2,39.72,15.87,6,1,0,0,2,1,0,372,0,0,0 +6959,8524,15515,15514,-9,-9,1,1,1,64,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,5,0,5,0,0,0,0,59,2,1,3,3,3,2019,4,2,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.35332553530155,1,41.71,54.32,4,1,0,0,2,1,0,372,0,0,0 +6960,8525,15516,-9,-9,-9,1,1,1,25,2,0,0,0,1,1,3,3,0,5,0,7.219048656316806,7.072244960441266,3,0,0,0,-9,0,-1074.007004697045,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.558418487644792,0,0,0,55.09,55.87,5,1,1,0,8,2,0,579,0,0,0 +6961,8526,15517,-9,15518,15519,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.5943673849666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,2,1,665.25,0,0,0 +6961,8526,15518,15519,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,3,0,0,0,2,0,-9,17,0,-2,-63.12723906086124,-9,0,1,42,2,3,1,3,2,2019,1,1,14,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.427682897095231,0,0,0,38.69,47.09,3,3,0,1,2,2,1,665.25,0,0,0 +6961,8526,15519,15518,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,3,7.389132659816573,7.827549577597476,0,2,0,-9,17,0,2,108.9269808834693,0,0,0,40,2,3,1,-9,2,2019,1,2,11,1,40,40,15,1,1,1,0,7.425587887115093,7.425587887115093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,3,3,0,0,2,2,1,665.25,0,0,0 +6961,8526,15520,-9,15518,15519,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.4956683309039,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,2,2,1,665.25,0,0,0 +6962,8527,15521,15522,-9,-9,3,1,0,43,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-7,-29.50627707546821,0,0,1,50,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.497139871686013,0,.3477480993343407,3,52.77,55.33,7,1,0,0,5,5,1,765.6666666666666,0,0,0 +6962,8527,15522,15521,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,3,9.391728696241648,9.262825012661565,0,2,0,-9,5,0,7,-66.64376129547307,0,0,0,43,2,4,3,3,2,2019,2,3,6,0,80,70,15,1,0,3,0,13.66813938056271,13.66813938056271,0,0,0,0,0,0,0,1,1,0,3.783363676863098,0,0,3,68.88,38.65,6,1,0,0,5,5,1,765.6666666666666,0,0,0 +6962,8527,15523,-9,15521,15522,5,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.1367087850616,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,5,1,765.6666666666666,0,0,0 +6962,8528,15524,-9,15521,15522,2,1,1,20,2,0,1,0,2,-9,2,1,0,5,7.604835775002126,7.066624829030244,0,3,0,0,0,-9,0,-1038.856979812582,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,40,15,1,0,-9,1,5.456940149049852,5.456940149049852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.56,54.81,7,1,0,0,5,3,1,349,0,0,0 +6962,8529,15525,-9,15521,15522,4,1,1,18,2,0,1,0,2,-9,2,1,0,5,6.583470855879659,6.266126422836198,0,3,0,0,0,-9,0,-1036.565073911694,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,8,0,15,1,0,-9,1,9.87719880101964,9.87719880101964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,5,2,1,122,0,0,0 +6963,8530,15526,-9,-9,-9,1,1,1,66,3,1,2,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-964.8838084085362,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,1,0,0,28.86039557521101,16.55002232044832,0,0,1,1,0,0,0,0,0,39.8,23.76,5,4,0,1,8,1,0,534,0,0,0 +6963,8531,15527,-9,-9,15526,2,1,1,26,2,1,2,0,2,-9,1,1,0,4,7.23169807935516,7.276948482215915,0,3,0,0,0,-9,0,-911.2109801076914,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,16,48,15,1,1,-9,1,10.13963748826256,10.13963748826256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,4,0,0,8,2,0,1116,0,0,0 +6963,8532,15528,15531,-9,-9,5,1,1,30,1,1,2,0,2,-9,2,1,0,5,7.501907020235632,7.286963581668374,0,2,0,-9,2,0,1,-34.35825555877783,0,0,0,29,2,4,3,-9,-9,2019,2,3,3,1,32,24,15,1,1,3,0,5.333019573484124,5.333019573484124,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,49.15,7,4,0,0,8,2,0,1774,0,0,0 +6963,8532,15529,-9,15531,15528,6,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.37748222377,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,2,0,1774,0,0,0 +6963,8532,15530,-9,15531,15528,4,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.7867635112153,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,8,2,0,1774,0,0,0 +6963,8532,15531,15528,-9,15526,3,1,0,29,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-1,-66.77379071628555,0,1,1,30,2,5,1,-9,2,2019,3,5,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.89625780744532,3,51.99,48.84,5,4,0,0,8,2,0,1774,0,0,0 +6964,8533,15532,15534,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.260626077400927,7.316330565907469,0,2,0,-9,17,0,2,35.55246138463102,0,0,0,45,2,3,1,2,2,2019,1,2,5,0,40,0,15,1,0,1,0,5.676629710989718,5.676629710989718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,5,1,0,0,4,5,1,741,0,0,0 +6964,8533,15533,-9,15532,15534,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.800263391493,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,4,5,1,741,0,0,0 +6964,8533,15534,15532,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,3,9.616097380016198,9.549147020056511,0,2,0,-9,17,0,-2,144.429683930689,0,0,0,47,2,3,1,2,2,2019,1,1,6,0,60,70,15,1,0,1,0,27.92958146860864,27.92958146860864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,5,1,0,0,4,5,1,741,0,0,0 +6965,8534,15535,15536,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,3,3.622585005528125,3.362777413959866,0,1,0,-9,6,0,0,81.16511779695082,0,0,0,55,2,2,3,3,3,2019,2,2,8,0,45,55,15,1,0,3,0,.0696779177570894,.0696779177570894,0,0,0,0,0,0,0,1,1,0,0,0,22.22455921449329,2,62.03,36.18,2,1,0,0,2,1,0,492.5,0,0,0 +6965,8534,15536,15535,-9,-9,2,1,0,55,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,0,13.30562658757633,0,0,0,55,3,3,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.99654995999884,3,50.55,16.08,6,1,0,0,2,1,0,492.5,0,0,0 +6966,8535,15537,15538,-9,-9,2,1,0,51,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,4,0,-4,-25.29705667387382,0,0,0,55,1,4,1,-9,-9,2019,3,1,10,0,0,43,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,1,1,0,12,5,1,737,0,0,0 +6966,8535,15538,15537,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,9.115074420763948,9.306178915630911,0,1,0,-9,4,0,4,-25.7364789616416,0,0,0,51,2,4,3,2,1,2019,2,2,10,0,43,43,15,1,0,3,0,30.25330589959166,30.25330589959166,0,0,0,0,0,0,0,0,0,0,7.521912608389349,0,0,3,54.2,57.49,6,1,0,0,12,5,1,737,0,0,0 +6967,8536,15539,-9,-9,-9,1,1,0,42,2,1,2,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-912.8210557266649,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.11822527170219,3,54.13,48.04,4,1,0,0,7,1,0,439,0,0,0 +6967,8536,15540,-9,15539,-9,3,1,1,15,2,1,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1043.544630808537,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,1,0,439,0,0,0 +6967,8536,15541,-9,15539,-9,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1100.308057797398,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,7,1,0,439,0,0,0 +6967,8537,15542,-9,15539,-9,2,1,1,18,2,1,2,0,2,-9,2,1,0,4,7.652713205319644,7.796383134480067,0,3,0,0,0,-9,0,-1029.12521150835,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,72,0,15,1,2,-9,1,3.602102265626613,3.602102265626613,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,3,0,1090,0,0,0 +6968,8538,15543,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-935.0961078892171,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.45,13.09,3,1,0,0,2,1,1,855,0,0,0 +6969,8539,15544,15545,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,4,8.046638436637236,7.810777743157986,0,2,0,-9,13,0,-16,85.74367658488673,0,0,1,54,2,4,1,3,3,2019,1,2,12,1,30,36,15,1,1,1,0,11.10853436216342,11.10853436216342,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.31,50.61,6,1,0,0,2,5,1,621.3333333333334,0,0,0 +6969,8539,15545,15544,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,4,8.737108256338958,8.829670298683366,0,2,0,-9,9,0,16,-74.26596558700626,0,0,0,38,2,4,1,-9,-9,2019,1,1,9,0,50,50,15,1,0,1,0,13.71494829049164,13.71494829049164,0,0,0,0,0,0,0,1,1,0,0,0,.3040159507951048,3,60.13,49.27,6,1,0,0,2,5,1,621.3333333333334,0,0,0 +6969,8539,15546,-9,15544,15545,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1217.43588656987,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,621.3333333333334,0,0,0 +6970,8540,15547,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,8,3,1,1,0,6.128235042831055,5.727006569483843,3,0,0,0,-9,0,-982.1655405222696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.038774068287924,0,0,41.96,21.68,3,1,0,0,5,2,0,227,0,0,0 +6971,8541,15548,-9,-9,-9,1,1,0,68,2,0,0,0,1,-9,4,3,0,4,0,7.508926361373818,7.390102398549795,3,0,0,0,-9,0,-1007.467257381003,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.266386895622868,7.612407540424866,0,0,54.2,57.49,6,1,0,0,4,3,1,601,0,0,0 +6972,8542,15549,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-917.8923905042017,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,38,37,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.570410788452546,0,0,0,55.58,52.99,6,1,0,0,9,1,1,688,0,0,0 +6973,8543,15550,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,4.76787777407255,4.644864929655143,3,0,0,0,-9,0,-928.4301205827326,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,3.243421913668013,0,0,0,9.170847697857958,42.45875989706351,1,1,0,0,4.512398135897673,0,0,50.13,38.12,5,1,0,0,13,2,1,619,0,0,0 +6974,8544,15551,-9,-9,-9,5,1,1,20,2,0,2,1,2,0,7,2,0,4,6.741211587899114,7.364558283610122,6.394173110192313,3,0,0,0,-9,0,-1052.892443336939,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.22162590643559,0,0,0,33.55,62.9,5,1,0,0,7,3,1,423,0,0,0 +6974,8545,15552,-9,-9,-9,8,1,1,52,3,0,2,0,2,-9,2,1,0,4,9.053376016701051,8.947922512478227,0,4,0,0,0,-9,0,-951.4413838604305,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,36,35,15,1,0,-9,0,22.33036382017934,22.33036382017934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,1,1346,0,0,0 +6975,8546,15553,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,4,8.936986393821865,8.833386942065504,0,3,0,-9,0,1,0,-1068.619743336292,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,44,41,15,1,3,-9,0,17.19682990746878,17.19682990746878,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,3,1,0,0,7,5,0,266,0,0,0 +6976,8547,15554,15555,-9,-9,2,1,0,33,1,0,3,0,2,-9,2,1,0,5,0,0,0,2,0,-9,10,0,0,-32.72406470232802,0,0,1,33,2,5,1,3,2,2019,1,1,7,0,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.75666546633731,3,50.1,56.68,7,1,0,0,2,4,1,917.4,0,0,0 +6976,8547,15555,15554,-9,-9,1,1,1,33,1,0,3,0,2,-9,2,1,0,5,9.106598433459437,8.815885212619397,0,2,0,-9,10,0,0,57.02682769136641,0,0,0,33,2,5,1,3,-9,2019,1,2,8,0,60,60,15,1,0,1,0,13.88346449820509,13.88346449820509,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,4,1,917.4,0,0,0 +6976,8547,15556,-9,15554,15555,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.441700747746,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,917.4,0,0,0 +6976,8547,15557,-9,15554,15555,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.0327542504076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,917.4,0,0,0 +6976,8547,15558,-9,15554,15555,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-839.5866717017436,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,917.4,0,0,0 +6977,8548,15559,15560,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,5.425631331171465,5.588205965810033,1,0,-9,42,0,8,-193.5877927135834,0,0,0,63,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.266123866752263,5.401867167782864,0,0,62.49,55.09,7,1,0,0,4,2,1,585.5,0,0,0 +6977,8548,15560,15559,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,4,0,4.990424315271063,5.258577680041805,1,0,-9,42,0,-8,-16.20018303815592,0,0,0,71,3,4,3,3,3,2019,4,2,6,0,0,23,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.929792232130044,4.876275779483574,0,0,57.16,56.15,6,1,0,0,4,2,1,585.5,0,0,0 +6978,8549,15561,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,5.78307205862283,5.810047340074252,3,0,0,0,-9,0,-888.1051657746485,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.171885253758265,0,0,52,45,6,1,0,0,11,2,0,3647,0,0,0 +6979,8550,15562,-9,-9,-9,1,1,0,68,2,0,0,0,1,-9,4,3,0,4,0,8.123947094189717,8.119646833019196,3,0,0,0,-9,0,-983.9433221105151,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.302892023385755,7.706590595162253,0,0,49.41,58.28,6,1,0,0,12,3,1,709,0,0,0 +6980,8551,15563,15564,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,9.441399935074843,9.080050438726037,1,0,-9,4,0,-7,-28.93674230398203,0,0,0,73,2,2,3,-9,-9,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.214303407967714,9.366374843215365,0,0,57.16,56.15,6,1,0,0,5,5,1,536,0,0,0 +6980,8551,15564,15563,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,7,-63.50174963623564,0,0,0,66,1,4,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.715385627040721,0,0,0,51.97,41.3,6,1,0,0,5,5,1,536,0,0,0 +6981,8552,15565,15566,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,2,8.253193221136504,7.888534563392144,0,1,0,-9,7,0,-1,19.644595509636,0,0,0,50,2,1,3,-9,-9,2019,2,1,13,2,47,45,15,1,2,3,0,7.547593185859687,7.547593185859687,0,0,0,0,0,0,0,1,1,0,0,0,9.242389316549861,1,52.64,49.14,6,1,0,0,11,3,1,334,0,0,0 +6981,8552,15566,15565,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,1,-11.82389667134713,0,0,0,49,2,2,1,3,3,2019,3,2,24,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.6,14.31,2,1,0,0,11,3,1,334,0,0,0 +6982,8553,15567,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,3,0,3.401203699872449,3.377549751722229,3,0,0,0,-9,0,-927.0736648311756,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.476051741646686,3.667690258451424,0,0,43.46,39.88,6,1,0,0,10,1,1,2044,0,0,0 +6983,8554,15568,-9,-9,-9,1,1,1,99,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1106.074327309299,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,6.167266408557611,0,3.652087392513169,0,0,0,1,1,0,0,0,0,0,48.57,34.41,6,1,0,0,12,1,1,229,0,0,0 +6984,8555,15569,-9,-9,-9,1,1,1,94,3,0,0,0,3,-9,4,3,0,4,0,5.814343100968092,6.438771311402681,3,0,0,0,-9,0,-972.2860734539352,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.974535623005372,6.30086140437008,0,0,55.34,43.52,6,1,0,0,11,2,1,664,0,0,0 +6985,8556,15570,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,6.796754514582099,7.001323039851462,3,0,-9,0,1,0,-926.1115113122281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.962504734596583,7.193988575080061,0,0,45.73,50.31,5,1,0,0,5,2,1,989,0,0,0 +6986,8557,15571,15572,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,57,0,3,0,0,0,0,76,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.38,31.06,6,1,0,0,10,1,1,1275.5,0,0,0 +6986,8557,15572,15571,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-3,0,0,0,0,79,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,6,1,0,0,10,1,1,1275.5,0,0,0 +6987,8558,15573,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,7.809168376492155,7.67245236150892,3,0,0,0,-9,0,-1036.533899940898,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.931037715515863,0,0,42.29,39.13,5,1,0,0,11,3,1,262,0,0,0 +6988,8559,15574,15575,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,2,8.454233985001606,8.108236149537513,0,1,0,-9,6,0,1,25.91851367817206,0,0,0,58,2,4,1,3,3,2019,1,2,18,6,37,37,15,1,6,1,0,11.31586021013184,11.31586021013184,0,0,0,0,0,0,0,0,0,0,4.530350925704598,0,0,0,34.5,46.81,3,1,0,0,11,4,1,1425,0,0,0 +6988,8559,15575,15574,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.987077055184471,7.979040058890114,0,1,0,-9,6,0,-1,-25.55797366103415,0,0,0,59,3,2,1,3,3,2019,1,1,21,8,35,35,15,1,8,1,0,8.327311263518212,8.327311263518212,0,0,0,0,0,0,0,0,0,0,4.939028586099976,0,0,0,35.63,62.19,6,1,0,0,11,4,1,1425,0,0,0 +6989,8560,15576,15577,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,8.498652128653212,8.090175704682439,1,0,-9,3,0,-7,42.62769688454522,0,0,0,72,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.888060520815396,8.213495796875421,4.253005908130097,3,54.62,53.53,6,1,0,0,5,4,1,298,0,0,0 +6989,8560,15577,15576,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,3,0,7,.0812641373646326,0,0,0,65,1,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.7,46.46,6,1,0,0,5,4,1,298,0,0,0 +6990,8561,15578,15579,-9,-9,1,1,0,58,1,0,0,0,3,-9,1,1,0,4,4.68641271500596,4.663501527576444,0,1,0,-9,6,0,-1,-61.77122106020045,0,0,0,59,3,3,1,3,2,2019,1,2,7,0,20,18,15,1,0,1,0,.6613878202938105,.6613878202938105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.68,49.95,6,1,0,0,13,3,1,1255,0,0,0 +6990,8561,15579,15578,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,3,8.01766596440568,8.084183119099547,0,1,0,-9,6,0,1,25.08590598234455,0,0,0,58,3,4,1,3,3,2019,1,1,6,0,40,37,15,1,0,1,0,9.542658860559888,9.542658860559888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,5,1,0,0,13,3,1,1255,0,0,0 +6990,8562,15580,-9,15578,15579,3,1,1,23,2,0,0,0,3,-9,2,1,0,3,8.398741791189941,8.280755981281622,0,3,0,0,0,-9,0,-1045.144082563292,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,55,60,15,1,0,-9,1,8.109459978594616,8.109459978594616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,6,1,0,0,13,4,1,128,0,0,0 +6991,8563,15581,15582,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,5.828004529741465,7.559176458313001,7.597808814923191,1,0,-9,7,0,8,100.6240878914742,0,0,0,63,1,1,3,2,2,2019,4,2,6,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.343855546764656,7.562925433140312,0,0,62.49,55.09,7,1,0,0,2,4,1,219,0,0,0 +6991,8563,15582,15581,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,1,0,7.422631089925236,7.974341324803079,1,0,-9,7,0,-8,26.53946295745342,0,0,0,71,1,4,3,3,2,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.607294965519388,0,0,40.39,18.65,3,1,0,0,2,4,1,219,0,0,0 +6992,8564,15583,-9,15584,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1034.02894811506,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,3,1,612.6666666666666,0,0,0 +6992,8564,15584,-9,-9,-9,1,1,0,40,2,0,2,0,2,-9,2,1,0,3,7.874108830047128,7.966780647444716,0,4,0,-9,0,-9,0,-879.1567745350412,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,31,0,15,1,1,-9,0,8.424246814239224,8.424246814239224,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.13,51.34,3,1,0,0,6,3,1,612.6666666666666,0,0,0 +6992,8564,15585,-9,15584,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1212.013022721644,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,3,1,612.6666666666666,0,0,0 +6993,8565,15586,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,3,7.30901343467005,6.877196870441267,0,3,0,0,0,-9,0,-1037.623104333614,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,19,4,15,1,0,-9,0,8.94640278988695,8.94640278988695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.57,34,5,1,0,0,10,2,1,1095,0,0,0 +6994,8566,15587,15588,-9,-9,1,1,0,62,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,5,0,9,0,0,0,0,53,2,1,3,-9,-9,2019,4,3,16,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.153504251721,1,34.69,49.08,3,1,0,1,5,1,0,517,0,0,0 +6994,8566,15588,15587,-9,-9,3,1,1,53,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,5,0,0,0,0,0,0,62,2,2,3,-9,-9,2019,4,1,22,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.98,27.77,1,1,0,0,5,1,0,517,0,0,0 +6994,8567,15589,-9,15587,15588,2,1,0,31,2,0,0,0,3,-9,2,1,0,4,7.540100118148787,7.445830439728212,0,3,0,0,0,-9,0,-1057.922655576014,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,27,15,1,0,-9,1,6.734901827100392,6.734901827100392,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,7,1,0,0,5,3,0,173,0,0,0 +6995,8568,15590,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,5,9.43539032079709,9.670916464240662,0,3,0,0,0,-9,0,-917.4586738121485,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,1,55,60,15,1,1,-9,0,18.37171207788341,18.37171207788341,0,0,0,0,0,0,0,0,0,0,1.535656562493944,0,0,0,54.1,59.11,6,1,0,0,1,5,1,732,0,0,0 +6996,8569,15591,15592,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,4,9.075206737813039,9.214851767811398,0,2,0,-9,15,0,0,74.55820949580708,0,0,0,36,1,3,1,2,1,2019,1,1,11,1,50,60,15,1,1,1,0,28.53707281794845,28.53707281794845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,6,1,0,0,7,5,1,689.25,0,0,0 +6996,8569,15592,15591,-9,-9,1,1,0,36,1,1,2,0,1,-9,1,1,0,3,7.284688017038364,7.209759596726929,0,2,0,-9,15,0,0,49.17532278829137,0,0,1,36,1,4,1,2,3,2019,1,2,22,10,15,15,15,1,10,1,0,10.6129248662938,10.6129248662938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,5,1,0,0,7,5,1,689.25,0,0,0 +6996,8569,15593,-9,15592,15591,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.47554525606,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,7,5,1,689.25,0,0,0 +6996,8569,15594,-9,15592,15591,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.971677218008,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,7,5,1,689.25,0,0,0 +6997,8570,15595,-9,15597,15598,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.496682746619,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,2,1,579.75,0,0,0 +6997,8570,15596,-9,15597,15598,3,1,1,17,2,0,1,0,2,1,2,3,0,4,5.943244554202474,6.399737417251521,0,2,0,0,0,-9,0,-991.7606212280801,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,2,1,579.75,0,0,0 +6997,8570,15597,15598,-9,-9,1,1,0,37,1,0,1,0,2,-9,2,1,0,3,7.754392796861215,7.65723906323648,0,2,0,-9,6,0,-2,35.90873238745417,0,0,1,39,2,4,3,3,3,2019,2,2,14,2,24,24,15,1,2,3,0,12.55927497542192,12.55927497542192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.44,42.97,4,1,0,0,7,2,1,579.75,0,0,0 +6997,8570,15598,15597,-9,-9,2,1,1,39,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,2,25.80660375296445,0,0,0,37,2,3,1,2,-9,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,47.38,5,1,0,0,7,2,1,579.75,0,0,0 +6998,8571,15599,15600,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,7.268896844052544,7.447193467235755,1,0,-9,10,0,-3,59.29701767308985,0,0,0,73,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,13.89947693113407,0,0,0,0,1,1,0,1.442292150161615,7.192237917939996,0,0,60.71,37.26,6,1,0,0,11,2,1,290.5,0,0,0 +6998,8571,15600,15599,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,4.837370723529855,4.894561568360688,1,0,-9,10,0,3,-39.78471661172325,0,0,0,70,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,2.609859897647368,0,0,0,0,1,1,0,1.305742652608282,4.882159749583945,0,0,52.83,49.11,6,1,0,0,11,2,1,290.5,0,0,0 +6999,8572,15601,15602,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,3,-88.03896433129994,0,0,0,67,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,6,1,1,877,0,0,0 +6999,8572,15602,15601,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,4.970020278639267,5.022358468406477,1,0,-9,39,0,-3,30.33259011999996,0,0,0,70,3,3,3,3,2,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.110488425871311,4.96270935895116,6.409728689188275,3,59.89,39.8,6,1,0,0,6,1,1,877,0,0,0 +7000,8573,15603,-9,15604,15606,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.2302051155659,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,5,1,1270.75,0,0,0 +7000,8573,15604,15606,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.286198228908008,8.235456490744633,0,2,0,-9,20,0,-1,116.1671890943866,0,0,0,46,1,4,1,3,2,2019,1,2,10,0,27,28,15,1,0,1,0,19.00299452649761,19.00299452649761,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.8,50.32,6,1,0,0,2,5,1,1270.75,0,0,0 +7000,8573,15605,-9,15604,15606,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.6303094735769,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,1270.75,0,0,0 +7000,8573,15606,15604,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.677337479521968,9.060941730355891,0,2,0,-9,20,0,1,101.8758195557055,0,0,0,45,1,4,1,1,2,2019,1,1,7,0,38,39,15,1,0,1,0,27.03088016282211,27.03088016282211,0,0,0,0,0,0,0,1,1,0,2.821520683858821,0,0,0,57.16,56.15,6,1,0,0,2,5,1,1270.75,0,0,0 +7001,8574,15607,15608,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,7.948549928055368,8.264122954320886,0,1,0,-9,34,0,-2,4.415276346875334,0,0,0,57,1,5,1,2,2,2019,1,2,7,0,20,20,15,1,0,1,0,22.19927240575413,22.19927240575413,0,0,0,0,0,0,0,0,0,0,4.563977857554146,0,0,0,55.44,52.99,2,1,0,0,10,5,1,408,0,0,0 +7001,8574,15608,15607,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,5,8.789060410800809,8.97611109707737,0,1,0,-9,34,0,2,-56.24010467554971,0,0,0,55,1,4,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,22.5740713496962,22.5740713496962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,10,5,1,408,0,0,0 +7002,8575,15609,15610,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,4,8.235075488343124,8.13781230637754,0,2,0,-9,4,0,3,-56.15332776903256,0,1,0,24,2,2,1,-9,-9,2019,1,1,18,4,46,42,15,1,4,1,0,9.486779160735486,9.486779160735486,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.78,61.86,5,1,0,0,4,4,1,800,0,0,0 +7002,8575,15610,15609,-9,-9,1,1,0,24,1,0,1,0,2,-9,2,1,0,2,7.808017009875758,8.08585280857838,0,2,0,-9,4,0,-3,51.82184487151368,0,1,1,27,2,4,1,-9,-9,2019,1,2,11,1,35,35,15,1,1,1,0,10.54711689062672,10.54711689062672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.29,53.99,3,1,0,0,4,4,1,800,0,0,0 +7002,8575,15611,-9,15610,15609,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.815322655549,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,4,4,1,800,0,0,0 +7003,8576,15612,15613,-9,-9,2,1,0,66,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,10,0,-3,-83.56428590385194,0,0,0,69,2,2,3,3,3,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,6,1,0,0,11,2,1,696.5,0,0,0 +7003,8576,15613,15612,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,6.384094344381353,6.614844750705347,1,0,-9,10,0,3,-20.92823989258854,0,0,0,66,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.150977746926798,6.893226741558844,0,0,49.25,52.11,7,1,0,0,11,2,1,696.5,0,0,0 +7004,8577,15614,15615,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,7.582814909793292,7.762291179101176,0,1,0,1,1,-9,2,110.4251310027437,0,0,0,41,2,3,1,2,2,2019,1,2,9,0,47,35,15,1,0,1,0,5.463388909609426,5.463388909609426,0,0,0,0,0,0,0,0,0,0,2.442096523705979,0,4.6663971283043,3,58.3,47.38,5,1,0,0,5,4,0,330,0,0,0 +7004,8577,15615,15614,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,3,8.50684618822973,8.507896842807506,0,1,0,-9,1,-9,-2,-80.66051115935893,-9,0,1,43,2,4,1,-9,-9,2019,1,1,24,12,49,0,15,1,12,1,0,8.659077347177332,8.659077347177332,0,0,0,0,0,0,0,0,0,0,0,0,2.559740028144329,3,28.52,62.72,6,1,0,0,5,4,0,330,0,0,0 +7005,8578,15616,15617,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.143723137120849,6.062738525201247,1,0,-9,45,0,-4,-45.18208835650044,0,0,0,71,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.78715809628572,6.116496237015944,0,0,57.16,56.15,7,1,0,0,12,2,1,1101,0,0,0 +7005,8578,15617,15616,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.502429441601745,6.299182487999917,1,0,-9,45,0,4,13.65299576565938,0,0,0,67,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.322565746251602,6.65169454513135,0,0,55.96,49.93,7,1,0,0,12,2,1,1101,0,0,0 +7006,8579,15618,15619,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,8.696883350989944,8.219205907149052,1,0,-9,21,0,-1,.7509442696605061,0,0,0,64,1,3,3,2,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.528431387107045,8.677015818567281,0,0,51.41,56.15,5,1,0,0,10,5,1,768,0,0,0 +7006,8579,15619,15618,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,3,7.772566069203305,8.475925684234213,8.093424043823703,1,0,-9,21,0,1,95.40817295790877,0,0,0,63,2,3,3,3,2,2019,4,1,10,0,25,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.498694933989106,8.216055986133943,0,0,49.84,48.57,6,1,0,0,10,5,1,768,0,0,0 +7007,8580,15620,15623,-9,-9,1,1,1,34,1,0,2,0,2,-9,2,1,0,2,7.566197176656428,7.948879153472534,0,2,0,-9,14,0,-3,-35.96958916325437,0,0,0,37,2,3,3,3,2,2019,2,2,9,0,27,21,15,1,0,3,0,12.46046690176299,12.46046690176299,0,0,0,0,0,0,0,1,0,1,0,0,11.87401875919345,3,65.78,29.46,7,3,0,0,8,2,0,741.5,0,0,0 +7007,8580,15621,-9,15623,15620,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.4329908573372,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,3,0,0,8,2,0,741.5,0,0,0 +7007,8580,15622,-9,15623,15620,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.9947571143132,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,3,0,0,8,2,0,741.5,0,0,0 +7007,8580,15623,15620,-9,-9,2,1,0,37,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,15,0,3,-43.90886528400193,0,0,1,34,2,2,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,68.2146481204168,3,52.19,54.61,7,3,0,0,8,2,0,741.5,0,0,0 +7008,8581,15624,15625,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,8.578168359132297,8.432181549599756,1,0,-9,47,0,1,28.27385998112447,0,0,0,68,1,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.683701715108262,8.636008570896074,0,0,57.48,47.92,6,1,0,0,13,4,1,569,0,0,0 +7008,8581,15625,15624,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.439837587471232,7.624216962121451,1,0,-9,47,0,-1,76.96896078748746,0,0,0,69,1,3,3,3,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.263091245665885,6.606695560713926,2,57.16,56.15,7,1,0,0,13,4,1,569,0,0,0 +7009,8582,15626,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,2,1,0,4,8.791855591001765,8.867450643145524,7.24856371419291,3,0,0,0,-9,0,-941.9336822160549,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,38,15,1,0,-9,0,19.09306039184924,19.09306039184924,0,0,0,0,0,0,0,1,1,0,7.12784278151359,7.526499533333317,0,0,64.47,51.45,6,1,0,0,8,5,1,338,0,0,0 +7010,8583,15627,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,5,8.501624663163129,8.470193229619058,0,3,0,0,0,-9,0,-845.4940563226265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,20.54266281665101,20.54266281665101,0,0,0,0,0,0,0,1,1,0,2.972643117810135,0,0,0,62.39,56.71,6,1,0,0,9,5,1,627,0,0,0 +7011,8584,15628,15629,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,7.864033513027302,8.022011561367403,1,0,-9,9,0,5,8.874567680506285,0,0,0,67,1,3,3,2,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,12.65392725356552,0,0,0,0,1,1,0,0,8.150691731819917,0,0,52,47,5,1,0,0,13,4,1,1130.5,0,0,0 +7011,8584,15629,15628,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,3,0,7.957707968129608,7.943686651661415,1,0,-9,9,0,-5,-82.66856100285985,0,0,0,72,1,3,3,1,1,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.388989805019278,114.2910574906435,1,37.52,33.97,5,1,0,0,13,4,1,1130.5,0,0,0 +7012,8585,15630,15632,-9,-9,2,1,1,47,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,8,0,1,-60.0890498581782,-9,0,0,46,2,2,1,2,1,2019,3,1,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.994414402681866,0,0,0,52,55,6,1,1,0,4,4,1,821.3333333333334,0,0,0 +7012,8585,15631,-9,15632,15630,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.0511622000079,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,821.3333333333334,0,0,0 +7012,8585,15632,15630,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,2,8.975301155074387,9.179072703271085,0,2,0,-9,8,0,-1,-14.72040454399887,-9,0,0,47,2,4,3,2,2,2019,2,2,13,1,56,0,15,1,1,3,0,12.0496252962013,12.0496252962013,0,0,0,0,0,0,0,1,1,0,0,0,1.309944607463613,3,48.66,26.38,5,1,0,0,4,4,1,821.3333333333334,0,0,0 +7012,8586,15633,-9,15632,15630,4,1,1,20,2,0,1,0,2,-9,2,1,0,3,7.53210362695409,7.348360189247663,0,3,0,0,0,-9,0,-1174.850333912883,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,48,0,15,1,0,-9,1,3.948605247792155,3.948605247792155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,54.41,3,1,0,0,4,3,1,3150,0,0,0 +7013,8587,15634,15635,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.585480772702514,9.000383801768601,0,1,0,-9,30,0,-2,4.441606406890021,0,0,0,54,1,4,1,2,1,2019,1,1,6,0,50,50,15,1,0,1,0,13.76521157593874,13.76521157593874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,6,1,0,0,1,5,1,587,0,0,0 +7013,8587,15635,15634,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,8.816559699811936,8.966978023175628,0,1,0,-9,30,0,2,77.66369183808068,0,0,0,52,1,4,1,2,2,2019,1,2,9,0,42,44,15,1,1,1,0,19.19868771733849,19.19868771733849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,0,0,1,5,1,587,0,0,0 +7013,8588,15636,-9,15634,15635,3,1,1,22,2,0,0,1,1,0,7,2,0,5,7.317249626232556,7.363214950954768,0,3,0,0,0,-9,0,-1063.342875178212,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,1,0,0,1,3,1,240,0,0,0 +7013,8589,15637,-9,15634,15635,4,1,0,20,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1135.949844249631,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,7,1,0,0,1,1,1,2641,0,0,0 +7014,8590,15638,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,5,6.923497178256063,7.875920934310589,7.212299085182758,3,0,0,0,-9,0,-1066.786753151956,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,9,0,15,1,1,-9,0,10.72624957113643,10.72624957113643,0,0,0,0,0,0,0,1,1,0,4.134938381049301,6.922998522966251,0,0,54.1,59.11,5,1,0,0,6,3,1,616,0,0,0 +7015,8591,15639,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,6.439563381783172,6.373616741531307,3,0,0,0,-9,0,-904.1951985826323,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.221234651965072,6.689815037920242,0,0,52,45,6,1,0,0,4,2,1,383,0,0,0 +7016,8592,15640,15641,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,43,0,-14,0,0,0,0,75,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.461556815593265,0,2.762403393510305,1,51.24,58.84,7,1,0,0,11,1,1,1372.5,0,0,0 +7016,8592,15641,15640,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,43,0,14,0,0,0,0,61,2,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.881700604484658,0,0,0,53.09,40.29,2,1,0,0,11,1,1,1372.5,0,0,0 +7017,8593,15642,15643,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,3,8.220895409852371,8.211726547235831,0,2,0,-9,7,0,-10,-40.70915959499001,0,0,1,51,2,3,1,2,3,2019,1,1,14,2,35,37,15,1,2,1,0,10.43811382273647,10.43811382273647,0,0,0,0,0,0,0,1,1,0,1.431004888490236,0,0,0,38.32,55.38,5,1,0,0,5,4,1,675.5,0,0,0 +7017,8593,15643,15642,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,3,8.305343373164346,8.648168080001337,0,2,0,-9,7,0,10,141.5519882652413,0,0,0,41,2,3,1,2,2,2019,1,2,12,1,40,0,15,1,1,1,0,18.66955101335694,18.66955101335694,0,0,0,0,0,0,0,1,1,0,5.418766701128122,0,0,0,32.78,62.21,5,1,0,0,5,4,1,675.5,0,0,0 +7018,8594,15644,15645,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,5.414913122071922,5.251212597444402,1,0,-9,53,0,3,-61.66971415599177,0,0,0,74,3,3,3,-9,-9,2019,4,1,34,12,0,0,15,4,12,4,0,0,0,1,24.73170785340114,0,6.476052040455023,0,7.130523587223522,305.5064323157663,1,1,0,4.97876380433849,5.022700825567012,0,0,53,46,1,1,0,0,10,2,1,1146,0,0,0 +7018,8594,15645,15644,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,5.547948515894668,5.584745851889289,1,0,-9,53,0,-3,90.77081888632995,0,0,0,77,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,1,20.82809854769656,0,10.58087997558494,0,0,124.6956970051225,1,1,0,5.783405317693667,5.800918050248406,0,0,51,46,5,1,0,0,10,2,1,1146,0,0,0 +7019,8595,15646,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,3,0,6.980631554996216,7.182173783071402,3,0,0,0,-9,0,-949.9948793844416,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.916224366561726,0,0,57.33,53.46,7,1,0,0,12,2,1,495,0,0,0 +7020,8596,15647,15648,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.886213445866278,7.693778672790136,1,0,-9,32,0,2,46.58815393896158,0,0,0,70,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.7455587631133637,7.861833679908411,0,0,61.28,48.88,6,1,0,0,10,3,1,297,0,0,0 +7020,8596,15648,15647,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.797197513350371,5.873729065263914,1,0,-9,50,0,-2,-92.80640718805006,0,0,0,72,2,3,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3309308987757689,5.75186849216196,0,0,57.16,56.15,6,1,0,0,10,3,1,297,0,0,0 +7021,8597,15649,-9,-9,-9,1,1,0,74,2,0,0,0,3,-9,4,3,0,2,0,4.890260871046333,5.249316384578738,3,0,0,0,-9,0,-1012.596203397748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,8.048369309897236,0,0,0,1,0,1,4.940113720968691,4.889940858908859,6.501273110778055,3,45.83,30.64,3,1,0,1,13,2,1,402,0,0,0 +7021,8598,15650,-9,15649,-9,2,1,1,51,2,0,0,0,2,-9,8,3,1,2,7.493103534361362,7.472596250430978,0,3,0,0,0,-9,0,-934.157778783942,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,6,15,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.84,22.86,2,1,0,0,13,3,1,113,0,0,0 +7021,8599,15651,-9,15649,-9,3,1,0,49,2,0,0,0,2,-9,2,1,0,1,8.055790335591158,7.9949370634193,0,3,0,0,0,-9,0,-1068.331347755663,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,27,27,15,1,12,-9,1,11.31531906948759,11.31531906948759,0,0,0,0,0,0,0,1,0,1,0,0,12.27780338908834,3,18.91,41.75,2,1,0,1,13,4,1,196,0,0,0 +7022,8600,15652,-9,15653,15654,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1168.841010933518,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,1,0,543.5,0,0,0 +7022,8600,15653,15654,-9,-9,1,1,0,32,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,5,0,1,0,0,0,1,31,2,3,1,2,2,2019,3,2,17,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.33,30.19,3,1,0,0,11,1,0,543.5,0,0,0 +7022,8600,15654,15653,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,3,0,0,0,2,0,-9,5,0,-1,0,0,0,0,32,2,1,3,-9,-9,2019,2,1,10,1,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,11,1,0,543.5,0,0,0 +7022,8600,15655,-9,15653,15654,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.3683549211803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,1,0,543.5,0,0,0 +7023,8601,15656,15657,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,6.076032694784396,5.928919314824708,1,0,-9,62,0,3,-121.0700030252181,0,0,0,80,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,9.627981487122426,0,0,0,11.28397713238638,0,1,1,0,0,6.162812932537674,0,0,63.17,22.41,5,1,0,0,9,2,0,1137,0,0,0 +7023,8601,15657,15656,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,59,0,-3,-108.7608898094236,0,0,0,83,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,6.852106122193038,0,1,1,0,0,0,0,0,63.33,25.23,5,1,0,0,9,2,0,1137,0,0,0 +7024,8602,15658,15659,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,5,6.767453528289787,7.80962802159093,7.604506510445166,1,0,-9,49,0,1,41.89739529162967,0,0,0,67,1,4,3,1,1,2019,2,1,6,0,40,45,15,1,0,4,0,2.824441458364017,2.824441458364017,0,0,0,0,0,0,0,1,1,0,0,7.625610351719854,0,0,57.06,57.76,6,1,0,0,4,4,1,953.5,0,0,0 +7024,8602,15659,15658,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,8.50287629455522,8.148097480934444,1,0,-9,49,0,-1,34.77823657568007,0,0,0,68,1,5,1,3,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.448666565529917,15.96906176765438,3,54.2,57.49,6,1,0,0,4,4,1,953.5,0,0,0 +7025,8603,15660,-9,15663,15662,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.383775610754,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,749.5,0,0,0 +7025,8603,15661,-9,15663,15662,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.643070498596,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,5,4,1,749.5,0,0,0 +7025,8603,15662,15663,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.551143617420845,8.422945919065022,0,2,0,-9,18,0,4,4.415864335289842,0,0,0,46,2,4,1,2,2,2019,1,1,6,0,60,54,15,1,0,1,0,10.31398172145437,10.31398172145437,0,0,0,0,0,0,0,1,1,0,0,0,20.48561796632651,3,38.94,60.48,5,1,0,0,5,4,1,749.5,0,0,0 +7025,8603,15663,15662,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,8.395832568532326,8.221297134108404,0,2,0,-9,18,0,-4,109.8443989686898,0,0,0,50,2,4,1,2,2,2019,1,2,10,1,30,32,15,1,1,1,0,16.26563310331366,16.26563310331366,0,0,0,0,0,0,0,1,1,0,0,0,2.544821817250771,3,57.16,56.15,6,1,0,0,5,4,1,749.5,0,0,0 +7026,8604,15664,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,3,0,7.964973571243664,7.779760417894536,3,0,0,0,-9,0,-998.747154372256,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.010319769928581,7.89655854626376,0,0,57.93,46.29,7,1,0,0,9,4,1,312,0,0,0 +7027,8605,15665,15666,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,5,8.829450234495795,8.809947768904095,0,1,0,-9,30,0,2,12.49861920164918,0,0,0,50,2,4,1,3,3,2019,1,2,9,0,40,40,15,1,0,1,0,24.83414792161343,24.83414792161343,0,0,0,0,0,0,0,0,0,0,3.596107839674005,0,0,0,46.21,58.07,7,1,0,0,13,5,1,430.5,0,0,0 +7027,8605,15666,15665,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.582860307499291,7.586435014500799,0,1,0,-9,30,0,-2,41.18699223846507,0,0,0,52,2,5,1,3,2,2019,1,1,7,0,40,40,15,1,0,1,0,5.754658427907312,5.754658427907312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,2,1,0,0,13,5,1,430.5,0,0,0 +7028,8606,15667,-9,15669,15668,2,1,0,23,2,0,0,0,1,1,2,1,0,5,8.115112098055242,8.26979314734392,0,3,0,0,0,-9,0,-849.7774658058942,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,4,0,38,0,15,1,0,-9,1,12.37560950161508,12.37560950161508,0,0,0,0,0,0,0,1,0,1,.2669658995684193,0,0,0,57,59.12,7,4,0,0,5,4,1,652,0,0,0 +7028,8607,15668,15669,-9,-9,3,1,1,62,1,0,0,0,1,-9,1,1,0,5,8.666294685763077,8.851697905164849,0,1,0,-9,4,0,9,129.1525686176975,0,0,0,53,1,4,1,-9,-9,2019,1,1,9,2,50,40,15,1,2,1,0,12.12941509498137,12.12941509498137,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.77,60.16,6,1,0,0,5,4,1,822,0,0,0 +7028,8607,15669,15668,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,4,5.074893558026724,5.743611342071414,0,1,0,-9,4,0,0,51.68636768445254,0,0,0,62,1,5,1,-9,-9,2019,1,3,3,0,18,20,15,1,0,1,0,1.078027192948091,1.078027192948091,0,0,0,0,0,0,0,1,0,1,0,0,6.166644024261198,3,59.3,44.14,6,4,0,0,5,4,1,822,0,0,0 +7029,8608,15670,15671,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,5,9.007764281887239,9.177652630191709,0,2,0,-9,7,0,9,176.868297253182,0,0,0,30,1,4,1,2,2,2019,1,2,7,0,40,37,15,1,0,1,0,26.52996580056138,26.52996580056138,0,0,0,0,0,0,0,0,0,0,4.246753815569354,0,0,0,57.06,57.76,6,1,0,0,10,5,1,678.3333333333334,0,0,0 +7029,8608,15671,15670,-9,-9,2,1,0,30,1,1,1,0,1,-9,2,1,0,4,7.538019152088028,7.639193371415151,0,2,0,-9,7,0,0,-45.67445652261818,0,0,1,39,2,5,1,2,2,2019,1,1,8,1,20,20,15,1,1,1,0,12.63548336669276,12.63548336669276,0,0,0,0,0,0,0,0,0,0,7.280285334088076,0,12.64411950710617,3,54.79,55.86,7,1,0,0,10,5,1,678.3333333333334,0,0,0 +7029,8608,15672,-9,15671,15670,4,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.5980058541109,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,10,5,1,678.3333333333334,0,0,0 +7029,8609,15673,-9,15671,15670,3,1,0,19,2,1,1,0,2,-9,11,3,0,3,7.246556858573928,7.293257966184639,0,4,0,0,0,-9,0,-925.1912568563214,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,21,6,38,27,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.5760294488175577,0,0,0,29.09,64.72,4,1,0,0,10,2,1,1671,0,0,0 +7030,8610,15674,15676,-9,-9,1,1,1,21,1,1,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,1,-9,-1,0,-9,1,0,22,2,4,3,-9,-9,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.81,59.91,5,1,1,1,2,1,0,1795.25,0,0,0 +7030,8610,15675,-9,15676,15674,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1059.062294859075,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,2,1,0,1795.25,0,0,0 +7030,8610,15676,15674,-9,-9,2,1,0,22,1,1,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,1,-9,1,0,-9,1,1,21,2,4,3,-9,-9,2019,4,1,11,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.82,63.21,4,1,1,1,2,1,0,1795.25,0,0,0 +7030,8610,15677,-9,15676,15674,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1012.50950940136,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,2,1,0,1795.25,0,0,0 +7031,8611,15678,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,4,8.140746554507535,8.061897932831613,0,3,0,0,0,-9,0,-1001.482833537124,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,9,37,37,15,1,9,-9,0,9.513708123990577,9.513708123990577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.85,67.95,2,1,0,0,7,4,0,270,0,0,0 +7032,8612,15679,-9,-9,-9,2,1,0,20,2,0,0,0,2,-9,7,2,0,4,7.017915588860862,7.060349327474771,0,3,0,0,0,-9,0,-1006.284609971253,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,20,15,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.58,64.38,7,1,0,0,12,2,0,2044,0,0,0 +7033,8613,15680,15685,-9,-9,1,1,1,56,1,1,4,0,2,-9,1,1,0,3,7.967576516514266,8.16955762984025,0,2,0,-9,3,0,5,-37.31450836950798,0,0,0,51,2,5,3,1,2,2019,2,2,10,0,48,40,15,1,1,3,0,9.270004323734886,9.270004323734886,0,0,0,0,0,0,0,1,1,0,4.026090552376033,0,0,0,50,49,5,1,0,0,13,3,0,649.5,0,0,0 +7033,8613,15681,-9,15685,15680,9,1,1,13,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.609302300178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,0,649.5,0,0,0 +7033,8613,15682,-9,15685,15680,10,1,0,10,2,1,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-919.3148835902332,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,13,3,0,649.5,0,0,0 +7033,8613,15683,-9,15685,15680,8,1,1,16,2,1,4,0,2,-9,2,2,0,5,6.381770986154057,6.56670925128467,0,2,0,0,0,-9,0,-1043.034438901107,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,6,1,0,0,13,3,0,649.5,0,0,0 +7033,8613,15684,-9,15685,15680,11,1,1,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.7386816931054,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,0,649.5,0,0,0 +7033,8613,15685,15680,-9,-9,2,1,0,51,1,1,4,0,2,-9,6,3,0,5,0,0,0,2,0,-9,3,0,-5,-67.28215707314305,0,0,0,56,2,3,1,3,2,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.685888052264298,0,0,0,49.53,58.64,6,1,0,0,13,3,0,649.5,0,0,0 +7033,8614,15686,-9,15685,15680,3,1,0,26,2,1,4,0,2,-9,2,1,0,4,7.273656453817519,7.427054985504382,0,3,0,0,0,-9,0,-1156.787805189483,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,30,30,15,1,2,-9,1,7.099654447569833,7.099654447569833,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.97,53.41,6,1,0,0,13,3,0,463,0,0,0 +7033,8614,15687,-9,15686,-9,12,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1119.42476392987,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,3,0,463,0,0,0 +7033,8615,15688,-9,15685,15680,4,1,1,24,2,1,4,0,1,-9,2,1,0,4,8.020750734913713,8.266286604318143,0,3,0,0,0,-9,0,-1039.209662384291,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,40,40,15,1,4,-9,1,7.332484608807777,7.332484608807777,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,59.76,4,1,0,0,13,4,0,347,0,0,0 +7033,8616,15689,-9,15685,15680,5,1,1,22,2,1,4,0,2,-9,2,1,0,4,7.917497831077558,7.865983121115971,0,3,0,0,0,-9,0,-1030.348780798326,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,40,15,1,1,-9,1,8.10897008655715,8.10897008655715,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,4,0,842,0,0,0 +7033,8617,15690,-9,15685,15680,6,1,1,21,2,1,4,0,2,-9,2,1,0,4,8.505355109328704,8.487566820239717,0,3,0,0,0,-9,0,-1080.324634634203,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,40,58,15,1,1,-9,1,13.16261575003345,13.16261575003345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,13,5,0,1230,0,0,0 +7033,8618,15691,-9,15685,15680,7,1,0,19,2,1,4,0,2,-9,2,1,0,5,8.045366278758312,7.748412282510662,0,3,0,0,0,-9,0,-996.1849095485992,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,36,0,15,1,1,-9,1,7.598696243063664,7.598696243063664,0,0,0,0,0,0,0,1,1,0,.8259763258573892,0,0,0,49.02,58.89,1,1,0,0,13,3,0,610,0,0,0 +7034,8619,15692,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,7.0347492115942,6.969910769701571,3,0,0,0,-9,0,-1054.488906802438,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.974619608347211,6.681236759947721,0,0,48.45,49.46,5,1,0,0,11,2,1,1064,0,0,0 +7035,8620,15693,15694,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,6.91224880197063,6.891935561503439,0,1,0,-9,22,0,5,44.82893421553062,0,0,0,50,1,4,1,3,3,2019,1,2,8,0,12,5,15,1,0,1,0,11.7320854728282,11.7320854728282,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.79,55.86,6,1,0,0,10,5,1,1028.5,0,0,0 +7035,8620,15694,15693,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,4,8.875884068572484,8.835253291462994,0,1,0,-9,22,0,-5,-27.46816631503373,0,0,0,55,2,4,1,3,3,2019,1,1,5,0,40,37,15,1,0,1,0,22.11915018895975,22.11915018895975,0,0,0,0,0,0,0,0,0,0,3.998363118160823,0,0,0,60.12,54.8,7,1,0,0,10,5,1,1028.5,0,0,0 +7035,8621,15695,-9,15693,15694,3,1,1,20,2,0,0,0,2,1,2,1,0,3,8.018110039849974,7.961748296613545,0,3,0,0,0,-9,0,-939.9455840563894,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,30,0,15,1,1,-9,1,12.10248131631839,12.10248131631839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,10,4,1,741,0,0,0 +7036,8622,15696,15697,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,6.659835324201513,6.937456234748019,1,0,-9,8,0,-4,-7.99368698668552,0,0,0,78,2,3,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.136861991718026,6.564707677273991,76.69211654177579,1,38.84,39.26,5,1,0,0,6,2,1,1344,0,0,0 +7036,8622,15697,15696,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,6.001494614496143,6.165973488912539,1,0,-9,8,0,4,-8.532786940605583,0,0,0,74,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.088402989146307,6.138258884541457,0,0,52,46,6,1,0,0,6,2,1,1344,0,0,0 +7037,8623,15698,15699,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,44,0,-5,0,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,3,1,0,1,12,1,1,1010,0,0,0 +7037,8623,15699,15698,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,44,0,5,0,0,0,0,64,3,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,12,1,1,1010,0,0,0 +7038,8624,15700,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-970.9190480169221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,13,1,1,567,0,0,0 +7038,8625,15701,-9,15700,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,4,7.820961996699151,7.772248198563744,0,3,0,0,0,-9,0,-1077.336758093903,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,0,15,1,0,-9,1,7.212453581973317,7.212453581973317,0,0,0,0,0,0,0,1,1,0,0,0,8.409304969008002,3,57.16,56.15,6,1,0,0,13,3,1,696,0,0,0 +7039,8626,15702,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,3,7.881077838746101,7.584680430853594,0,3,0,0,0,-9,0,-1050.353591391458,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,34,34,15,1,4,-9,0,7.669474807148712,7.669474807148712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.49,47.75,4,1,0,1,12,3,0,1304,0,0,0 +7039,8627,15703,-9,15702,-9,2,1,0,22,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-972.4022092994663,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.69,49.51,5,1,0,0,12,1,0,659,0,0,0 +7040,8628,15704,-9,15705,15706,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.7432565023795,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,0,508,0,0,0 +7040,8628,15705,15706,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.254687126652026,6.598965038494499,0,2,0,-9,7,0,-5,105.1810958758814,0,0,1,47,3,2,1,3,3,2019,1,2,12,2,20,16,15,1,2,1,0,9.093095546869666,9.093095546869666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,52.72,6,1,0,0,9,4,0,508,0,0,0 +7040,8628,15706,15705,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,2,8.697940831098247,8.439796098368145,0,2,0,-9,7,0,5,79.07699715193507,0,0,0,42,2,3,1,2,-9,2019,1,1,3,0,46,48,15,1,0,1,0,14.38280947377556,14.38280947377556,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,7,1,0,1,9,4,0,508,0,0,0 +7040,8628,15707,-9,15705,15706,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.124296506505,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,508,0,0,0 +7041,8629,15708,15709,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,3,7.41978720326032,7.601054926020585,0,1,0,-9,5,0,-6,31.84428484627066,0,1,1,32,1,4,1,-9,-9,2019,1,2,4,0,40,41,15,1,0,1,0,6.671032085577232,6.671032085577232,0,0,0,0,0,0,0,0,0,0,4.922041149889821,0,0,0,54.96,53.17,6,1,0,0,9,4,1,974.5,0,0,0 +7041,8629,15709,15708,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.447555964569434,8.292238594467847,0,1,0,-9,5,0,6,94.59589680179832,0,0,0,26,2,3,1,-9,-9,2019,1,1,11,0,38,38,15,1,0,1,0,12.63508815004247,12.63508815004247,0,0,0,0,0,0,0,0,0,0,3.041558110993865,0,0,0,44.55,60.42,5,1,0,0,9,4,1,974.5,0,0,0 +7042,8630,15710,15711,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,4,9.001055434630169,9.034022741243611,0,1,0,-9,5,0,-8,123.7671804058412,0,0,0,54,1,3,1,3,2,2019,1,2,12,1,44,47,15,1,1,1,0,20.17741318208268,20.17741318208268,0,0,0,0,0,0,0,0,0,0,7.464112294222687,0,0,0,38.34,62.12,6,1,0,0,2,5,1,2712,0,0,0 +7042,8630,15711,15710,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,8.71930515048205,8.822028849192824,0,1,0,-9,5,0,8,-254.7047134856379,0,0,0,46,1,4,1,-9,-9,2019,1,1,15,4,41,42,15,1,4,1,0,18.53477804800392,18.53477804800392,0,0,0,0,0,0,0,0,0,0,5.858916486601345,0,0,3,53.23,40.07,6,1,0,0,2,5,1,2712,0,0,0 +7043,8631,15712,15713,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,3,0,9.568196633399101,9.8748869145308,1,0,-9,9,0,-2,65.88993960564193,0,0,0,83,2,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.97461161177487,9.392332480235666,10.78676689694325,1,57.86,38.05,6,1,0,0,13,5,1,650.5,0,0,0 +7043,8631,15713,15712,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,2,-111.4528286762129,0,0,0,81,1,3,3,2,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,4.422192215677843,7.318876090429053,0,0,0,0,1,1,0,0,0,8.380410734433852,1,52,45,6,1,0,0,13,5,1,650.5,0,0,0 +7044,8632,15714,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,4,0,8.160683263090785,7.980803042616882,3,0,0,0,-9,0,-1008.542421766642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.34621851607652,7.974032417400578,70.23208324094276,3,57.16,56.15,2,1,0,0,8,4,1,821,0,0,0 +7045,8633,15715,15716,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,5,9.843711636777581,9.765662564885902,0,1,0,-9,22,0,2,103.0458165985067,0,0,0,47,1,4,1,2,2,2019,1,2,11,0,45,45,15,1,0,1,0,44.51039221764925,44.51039221764925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,6,3,0,0,10,5,1,660,0,0,0 +7045,8633,15716,15715,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,4,9.30695901433222,9.384360381398828,0,1,0,-9,6,0,-2,-95.92105382390692,0,0,0,49,1,5,1,3,1,2019,1,1,9,0,45,44,15,1,0,1,0,34.5371637161716,34.5371637161716,0,0,0,0,0,0,0,0,0,0,3.664375318046418,0,0,0,57.16,56.15,7,3,0,0,10,5,1,660,0,0,0 +7046,8634,15717,15718,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,5.63342554834211,5.545315111293371,1,0,-9,48,0,-4,-21.51027174461696,0,0,0,69,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.592338169518168,5.382454564498164,0,0,62.03,36.18,6,1,0,0,10,4,1,905.5,0,0,0 +7046,8634,15718,15717,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,1.901777846640603,8.170613267525228,8.39100922954567,1,0,-9,48,0,4,-16.94725062066794,0,0,0,65,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.23244483494419,8.443525188480363,0,0,58.72,51.29,6,1,0,0,10,4,1,905.5,0,0,0 +7047,8635,15719,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1085.839464387188,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,18.4686129636497,0,0,0,1,1,0,0,0,0,0,24.33,42.08,7,1,0,0,11,1,0,879,0,0,0 +7048,8636,15720,15721,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,2,9.058505687391056,8.948409711080091,0,2,0,-9,7,0,2,-21.6178435240579,0,0,0,51,2,2,3,2,2,2019,2,2,16,4,39,42,15,1,4,3,0,26.54459310680608,26.54459310680608,0,0,0,0,0,0,0,1,1,0,0,0,28.24782836089493,3,38.94,36.55,3,1,0,1,11,4,1,291.5,0,0,0 +7048,8636,15721,15720,-9,-9,2,1,0,51,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-2,-145.5109052386005,0,0,0,53,1,2,1,2,2,2019,3,1,27,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.84065777992877,3,9.83,55.55,3,1,0,1,11,4,1,291.5,0,0,0 +7048,8637,15722,-9,15721,15720,3,1,0,19,2,0,1,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1024.023104994743,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,27,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.977587398547457,0,0,0,34.1,15.93,1,1,0,0,11,1,1,1037,0,0,0 +7048,8638,15723,-9,15721,15720,4,1,1,18,2,0,1,1,2,0,7,2,0,2,5.00885808095222,4.889150180525416,0,3,0,0,0,-9,0,-1140.209902468089,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,27,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2223267626570215,0,115.194276870826,3,29.74,47.29,4,1,0,0,11,4,1,653,0,0,0 +7049,8639,15724,15725,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,7.560774890775074,7.809873926778488,1,0,-9,47,0,-23,43.51533355364928,0,0,0,91,3,2,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.929800133545671,7.840933815817115,37.31219551285744,1,49.55,55.6,6,1,0,0,10,3,1,377.5,0,0,0 +7049,8639,15725,15724,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,2,0,5.53919041751688,5.306052105857901,1,0,-9,47,0,23,-7.664775474641756,0,0,0,68,1,3,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.896962641043357,5.335288336575942,0,0,50.08,29.8,7,1,0,0,10,3,1,377.5,0,0,0 +7050,8640,15726,15727,-9,-9,2,1,0,66,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,6,0,-5,97.69106425783058,0,0,0,71,3,3,3,2,3,2019,4,1,18,6,0,0,15,3,6,4,0,0,0,1,0,130.393280553553,0,27.59869739729889,14.94764669295535,0,1,1,0,0,0,0,0,19.01,22.64,1,1,0,0,10,2,0,597,0,0,0 +7050,8640,15727,15726,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,5.799165185557129,5.83373812832462,1,0,-9,6,0,5,80.62580538675343,0,0,0,66,3,1,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.816886566447669,0,1,53,47,6,1,0,0,10,2,0,597,0,0,0 +7050,8641,15728,-9,15726,15727,3,1,1,45,2,0,0,0,3,-9,2,1,0,4,7.866665330295646,7.498720272988908,0,3,0,0,0,-9,0,-1076.045533739589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,52,47,15,1,0,-9,1,6.060510469225163,6.060510469225163,0,0,0,0,0,0,0,1,1,0,0,0,25.54282120550273,3,48.81,59.91,6,1,0,0,10,3,0,247,0,0,0 +7051,8642,15729,15730,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,3,9.21228507920452,9.304976385644132,0,2,0,-9,10,0,3,-.9157150757485719,0,0,0,44,1,3,1,-9,-9,2019,1,1,9,0,40,50,15,1,0,1,0,31.51349059584435,31.51349059584435,0,0,0,0,0,0,0,0,0,0,7.479618535106456,0,0,0,58.47,50.22,5,3,0,0,9,5,1,513,0,0,0 +7051,8642,15730,15729,-9,-9,1,1,0,44,1,0,1,0,1,-9,1,1,0,3,7.261927235517139,7.304426372750414,0,2,0,-9,24,0,-3,-1.149834893413774,0,0,1,47,1,3,1,1,1,2019,1,2,9,0,40,50,15,1,0,1,0,4.613933441361423,4.613933441361423,0,0,0,0,0,0,0,0,0,0,6.73630570515397,0,0,0,58.47,50.22,5,3,0,0,9,5,1,513,0,0,0 +7051,8642,15731,-9,15730,15729,4,1,1,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1036.457111226956,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,3,0,0,9,5,1,513,0,0,0 +7051,8643,15732,-9,15730,15729,3,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-998.4660051785662,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.91,55.33,5,3,0,0,9,1,1,590,0,0,0 +7052,8644,15733,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-969.5488779002333,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.76,34.83,2,1,0,1,10,1,1,699,0,0,0 +7053,8645,15734,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,3,3,0,3,0,5.829814506413745,5.86709960833272,3,0,0,0,-9,0,-921.4574316308377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.943396306700246,0,0,51,48,5,1,1,1,11,2,0,1315,0,0,0 +7054,8646,15735,-9,15737,15736,1,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.432689992795289,8.629869298027689,0,3,0,0,0,-9,0,-982.4292453362259,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,1,15.31734207007175,15.31734207007175,0,0,0,0,0,0,0,0,0,0,3.824087179024719,0,0,0,45.26,56.19,6,1,0,0,4,5,1,1510,0,0,0 +7054,8647,15736,15737,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.859138581139664,8.865504754443435,0,1,0,-9,33,0,-1,22.2421227628515,0,0,0,55,2,4,1,3,3,2019,1,3,7,0,37,37,15,1,0,1,0,18.45335238394275,18.45335238394275,0,0,0,0,0,0,0,0,0,0,4.293564626487409,0,0,0,57.91,46.31,7,1,0,0,4,5,1,651.5,0,0,0 +7054,8647,15737,15736,-9,-9,3,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.669762247299471,7.636480842813456,0,1,0,-9,33,0,1,113.5321536039335,0,0,0,54,2,3,1,3,3,2019,1,2,11,2,17,17,15,1,2,1,0,14.29928183223694,14.29928183223694,0,0,0,0,0,0,0,0,0,0,5.301447238165012,0,0,0,51.06,32.08,6,1,0,0,4,5,1,651.5,0,0,0 +7055,8648,15738,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,3,8.522736818773922,8.956443406832703,3.58614101549516,3,0,0,0,-9,0,-984.2069338139779,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,35,39,15,1,0,-9,0,17.29578042551733,17.29578042551733,0,0,0,0,0,0,0,0,0,0,4.539212015698556,0,0,0,57.33,53.46,6,1,0,0,4,5,1,1090,0,0,0 +7056,8649,15739,15740,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,5.080566523143709,5.484623013477655,1,0,-9,7,0,-2,-30.04662210228167,0,0,0,72,3,3,3,3,3,2019,4,1,18,7,0,0,15,4,7,4,0,0,0,1,0,2.345172200435924,0,4.78995443928215,0,0,1,1,0,.6100709011947916,4.939150939166653,0,0,37.65,27.39,3,1,0,0,13,2,1,847,0,0,0 +7056,8649,15740,15739,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,2,-56.30815799406488,0,0,0,70,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,17.33315648114115,1,47.44,39.02,5,1,0,0,13,2,1,847,0,0,0 +7056,8650,15741,-9,15739,15740,3,1,1,38,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1094.830221255259,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,37.8,42.53,4,1,1,0,13,1,1,435,0,0,0 +7056,8651,15742,-9,15739,15740,4,1,1,38,3,0,0,0,2,-9,2,1,0,3,7.1430014305736,7.226806675583344,0,3,0,0,0,-9,0,-994.5236983211345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,20,20,15,1,4,-9,1,7.654400504435007,7.654400504435007,0,0,0,0,0,0,0,1,1,0,0,0,9.033710135314944,3,54.37,54.8,5,1,0,0,13,2,1,132,0,0,0 +7056,8652,15743,-9,15739,15740,5,1,1,34,2,0,0,0,2,-9,1,1,0,4,8.915952493654098,8.700557364246098,0,3,0,0,0,-9,0,-1035.160834256345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,23.12543986108817,23.12543986108817,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,5,1,0,0,13,5,1,766,0,0,0 +7057,8653,15744,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,2,1,0,2,7.882592894396351,7.839832546641727,0,3,0,-9,0,-9,0,-1000.788212121307,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,30,0,15,1,0,-9,0,9.161570512121086,9.161570512121086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.08,39.32,6,1,0,0,13,3,0,702,0,0,0 +7058,8654,15745,15746,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,2,8.681632688376379,8.420233048378838,0,1,0,-9,8,0,-1,-41.58106172355528,0,0,0,50,2,1,1,-9,-9,2019,1,1,11,0,43,49,15,1,0,1,0,14.29371116654104,14.29371116654104,0,0,0,0,0,0,0,1,1,0,0,0,4.875662841933281,1,50.61,44.53,6,1,0,0,1,5,1,504,0,0,0 +7058,8654,15746,15745,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,1,8.016655050904841,8.554398754710745,0,1,0,-9,8,0,1,-19.77468508938437,0,0,0,49,2,2,1,2,2,2019,1,2,36,12,39,38,15,1,12,1,0,10.25680784946034,10.25680784946034,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.68,33.66,5,1,0,0,1,5,1,504,0,0,0 +7059,8655,15747,-9,15748,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1007.266656923979,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,4,1,868.3333333333334,0,0,0 +7059,8655,15748,-9,-9,-9,1,1,0,46,3,0,2,0,1,-9,2,1,0,4,8.339825312789859,9.001535119648677,7.553558076531555,4,0,0,0,-9,0,-816.0697770962277,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,30,35,15,1,1,-9,0,19.48250772415186,19.48250772415186,0,0,0,0,0,0,0,1,1,0,8.313117026097219,0,0,0,44.36,56.72,6,1,0,0,10,4,1,868.3333333333334,0,0,0 +7059,8655,15749,-9,15748,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.234229793035,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,868.3333333333334,0,0,0 +7060,8656,15750,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-868.7457142338496,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,38,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.52733010423979,0,0,0,62.39,56.71,6,1,1,0,4,1,0,551,0,0,0 +7061,8657,15751,-9,15752,15754,3,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-961.2854376282701,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,8,3,1,595.5,0,0,0 +7061,8657,15752,15754,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,3,7.172583325926857,7.231280343996698,0,2,0,-9,26,0,-2,15.0314318328411,0,0,0,51,2,2,1,2,2,2019,1,2,9,0,18,0,15,1,0,1,0,10.10207535374718,10.10207535374718,0,0,0,0,0,0,0,1,1,0,.1415832915731867,0,0,0,47.93,43.86,6,1,0,0,8,3,1,595.5,0,0,0 +7061,8657,15753,-9,15752,15754,4,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1038.921400218567,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,8,3,1,595.5,0,0,0 +7061,8657,15754,15752,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,2,8.250752324760084,8.228638322846127,0,2,0,-9,27,0,2,104.8138194500933,0,0,0,49,2,3,1,2,1,2019,1,1,12,2,40,38,15,1,2,1,0,11.26522684194394,11.26522684194394,0,0,0,0,0,0,0,1,1,0,0,0,5.389211875662568,3,47.53,47.36,5,1,0,0,8,3,1,595.5,0,0,0 +7062,8658,15755,15756,-9,-9,2,1,1,90,1,0,0,0,3,-9,4,3,0,3,0,4.900284236595832,4.809779548808288,1,0,-9,67,0,5,-45.22485543150661,0,0,0,85,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.224860308858966,0,0,56,44,6,1,0,0,1,1,0,370,0,0,0 +7062,8658,15756,15755,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,67,0,-5,64.10495929984205,0,0,0,90,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,1,1,0,370,0,0,0 +7063,8659,15757,-9,-9,-9,1,1,1,50,2,0,1,0,2,-9,2,1,0,4,8.127845735295052,7.899006805608978,0,4,0,0,0,-9,0,-1065.00749640085,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,0,15,1,1,-9,0,10.0379771064546,10.0379771064546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,4,0,0,9,3,0,282,0,0,0 +7063,8660,15758,-9,-9,-9,2,1,0,50,2,0,1,0,3,-9,2,1,0,4,6.860615838022097,7.013003344611625,0,4,0,0,0,-9,0,-999.5632979776386,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,4,15,20,15,1,4,-9,0,8.145735527160074,8.145735527160074,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.41,38.49,5,4,0,0,9,2,0,426.5,0,0,0 +7063,8660,15759,-9,15758,-9,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1087.640943635888,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,9,2,0,426.5,0,0,0 +7063,8661,15760,-9,15758,-9,4,1,1,25,2,0,1,0,2,-9,2,1,0,4,8.171212725138215,7.935812710923798,0,3,0,0,0,-9,0,-1113.25858843742,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,40,37,15,1,0,-9,1,10.12705773597312,10.12705773597312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,56.08,6,4,0,1,9,4,0,402,0,0,0 +7063,8662,15761,-9,15758,-9,5,1,1,22,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1082.072712493575,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.98,49.42,6,4,0,0,9,1,0,443,0,0,0 +7064,8663,15762,15763,-9,-9,2,1,0,45,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,6,0,-5,3.736716419921081,0,0,0,50,3,3,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,1,0,0,1,4,0,1694.5,0,0,0 +7064,8663,15763,15762,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,3,8.503759007918646,8.403052806097246,0,1,0,-9,6,0,5,-10.26458374878789,0,0,0,45,2,4,3,3,3,2019,2,2,8,0,38,38,15,1,0,3,0,11.91136680190706,11.91136680190706,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.55,44.68,6,1,0,0,1,4,0,1694.5,0,0,0 +7065,8664,15764,15765,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,6.173271287416461,6.404820935932418,1,0,-9,10,0,2,36.83104652863992,0,0,0,68,2,3,3,-9,-9,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.440825539258534,6.044720544518893,0,0,60.67,18.22,6,1,0,0,4,2,1,1897.5,0,0,0 +7065,8664,15765,15764,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,4.866302860127487,5.289485185003336,1,0,-9,50,0,-2,-30.17736153567867,0,0,0,70,1,3,3,2,-9,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.903416275767708,5.114357887769173,6.615478021094442,1,46.14,46.35,5,1,0,0,4,2,1,1897.5,0,0,0 +7066,8665,15766,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,3,7.645965136660077,8.108684471377043,0,3,0,0,0,-9,0,-898.2442441875932,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,42,49,15,1,0,-9,0,7.954276610971677,7.954276610971677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,5,1,0,0,7,4,1,374,0,0,0 +7067,8666,15767,15768,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,4.632292089632907,4.867382959853349,1,0,-9,9,0,6,-57.18838543370278,0,0,0,64,2,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.134910113031538,4.767119910217184,0,0,57.16,56.15,6,1,0,0,5,3,1,2061.5,0,0,0 +7067,8666,15768,15767,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,3,7.824668511724364,7.626731267132438,0,1,0,-9,9,0,-6,-40.96409942402754,0,0,0,70,3,4,3,3,2,2019,2,1,12,0,28,28,15,1,0,4,0,8.727723726488337,8.727723726488337,0,0,0,0,0,0,0,1,1,0,1.232405788110345,0,0,0,46.61,56.93,6,1,0,0,5,3,1,2061.5,0,0,0 +7068,8667,15769,15770,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,7.619205791366954,7.679244870543731,1,0,-9,50,0,-3,-62.87195020681114,0,0,0,73,1,4,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.579095698525883,7.801014556177796,0,0,56.5,40.09,7,1,0,0,12,4,1,518.5,0,0,0 +7068,8667,15770,15769,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,4,0,8.093446106211227,8.576688913677287,1,0,-9,50,0,3,-3.999853008237612,0,0,0,70,1,3,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.872804374816107,8.011338864171378,0,0,58.72,51.29,6,1,0,0,12,4,1,518.5,0,0,0 +7069,8668,15771,15772,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,5,0,7.593034265753433,7.471077590977924,1,0,-9,30,0,10,-64.47302406394738,0,0,0,62,3,2,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,7.646184220583782,7.500442622019404,0,0,54.1,59.11,6,1,0,0,5,3,1,552,0,0,0 +7069,8668,15772,15771,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,2,6.705597637008656,6.291255002308527,0,1,0,-9,30,0,-10,-9.266920447187621,0,0,0,72,3,5,3,3,3,2019,2,1,10,0,20,4,15,1,0,4,0,3.735518661805965,3.735518661805965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,6,1,0,0,5,3,1,552,0,0,0 +7070,8669,15773,-9,15774,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-905.7172664369166,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,10,2,0,566,0,0,0 +7070,8669,15774,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,1,1,0,3,5.684261495596501,5.718752587218203,0,4,0,-9,0,-9,0,-1070.117054146801,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,9,10,0,15,1,9,-9,0,3.990812034015158,3.990812034015158,0,0,0,0,0,0,0,1,0,1,0,0,84.59871051759546,3,15.43,65.91,5,1,0,1,10,2,0,566,0,0,0 +7071,8670,15775,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-956.9532812985719,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.253325328080685,0,0,0,51.83,57.2,5,1,0,0,11,1,1,1393,0,0,0 +7072,8671,15776,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,6.13659938292982,6.524596933755267,3,0,0,0,-9,0,-998.2856674707663,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.723802623658282,6.223180011394599,2.732629111575764,3,52.24,50.75,7,1,0,0,4,2,1,518,0,0,0 +7073,8672,15777,-9,-9,-9,2,1,1,50,2,0,0,0,1,-9,2,1,0,3,8.043848807140586,7.801070693205229,0,3,0,0,0,-9,0,-938.4275340738532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,37,38,15,1,4,-9,0,9.058369764393694,9.058369764393694,0,0,0,0,0,0,0,0,0,0,0,0,6.647519376590315,0,39.73,54.94,3,1,0,0,2,3,0,787,0,0,0 +7074,8673,15778,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,4,6.331645911198535,6.366303414609347,0,3,0,0,0,-9,0,-978.460920362294,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,10,14,15,1,0,-9,0,8.511862385464882,8.511862385464882,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,1,2,2,0,335,0,0,0 +7075,8674,15779,-9,-9,-9,1,1,1,28,2,0,0,0,3,-9,2,1,0,5,8.595766757043723,8.800646706081908,0,3,0,0,0,-9,0,-952.144425816538,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,47,48,15,1,0,-9,0,13.2624935402987,13.2624935402987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,4,4,0,0,8,5,0,184,0,0,0 +7076,8675,15780,15781,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,5,7.467620183287437,7.574592282577346,0,2,0,1,1,-9,-11,10.59689749095829,0,0,1,48,1,5,1,2,3,2019,1,4,9,0,29,30,15,1,0,1,0,7.6628624987638,7.6628624987638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,619.5,0,0,0 +7076,8675,15781,15780,-9,-9,4,1,1,48,1,0,2,0,1,-9,2,1,0,5,9.727262278245073,9.620457040931006,0,2,0,1,1,-9,11,105.5408661040306,0,0,0,37,2,5,1,3,1,2019,1,1,11,0,42,47,15,1,0,1,0,46.89033607628486,46.89033607628486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,61.22,3,1,0,0,9,5,1,619.5,0,0,0 +7076,8675,15782,-9,15780,15781,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.6572172514979,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,619.5,0,0,0 +7076,8675,15783,-9,15780,15781,2,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.127156206624,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,619.5,0,0,0 +7077,8676,15784,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-848.4164791759187,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.601625700012082,0,0,0,41.5,21.91,4,1,0,0,9,1,1,305,0,0,0 +7078,8677,15785,15789,-9,-9,1,1,1,37,1,1,3,0,3,-9,2,1,0,2,8.363960126012334,8.370515774381426,0,2,0,-9,10,0,-2,93.89326277954179,0,0,0,39,1,3,1,2,2,2019,1,2,17,5,41,43,15,1,5,1,0,11.73069786129334,11.73069786129334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,50.24,3,1,0,1,6,4,1,537.8,0,0,0 +7078,8677,15786,-9,15789,15785,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.6798269032455,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,537.8,0,0,0 +7078,8677,15787,-9,15789,15785,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.1357240246607,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,6,4,1,537.8,0,0,0 +7078,8677,15788,-9,15789,15785,4,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.5884513924565,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,4,1,537.8,0,0,0 +7078,8677,15789,15785,-9,-9,2,1,0,39,1,1,3,0,1,-9,2,1,0,3,8.234258678564569,7.812204464218993,0,2,0,-9,10,0,2,-50.01403416585769,0,0,1,37,3,2,1,-9,-9,2019,1,1,8,0,31,30,15,1,0,1,0,13.07733943831319,13.07733943831319,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,6,4,1,537.8,0,0,0 +7079,8678,15790,15791,-9,-9,2,1,0,54,1,1,1,0,3,-9,8,3,1,3,0,0,0,2,0,-9,11,0,-3,0,0,0,0,57,3,4,3,3,2,2019,4,1,12,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,1,0,0,6,1,0,783,0,0,0 +7079,8678,15791,15790,-9,-9,1,1,1,57,1,1,1,0,3,-9,4,3,0,4,0,0,0,2,0,-9,11,0,3,0,0,0,0,54,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,5,1,0,0,6,1,0,783,0,0,0 +7079,8679,15792,-9,15790,15791,3,1,1,28,2,1,1,0,3,-9,2,1,0,4,7.638502517602409,7.631892133873937,0,3,0,0,0,-9,0,-831.1966834357756,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,50,15,1,1,-9,1,6.841125170062209,6.841125170062209,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,6,3,0,237,0,0,0 +7079,8680,15793,-9,15790,15791,4,1,0,27,2,1,1,0,2,-9,6,3,0,3,0,5.470378568839462,5.725289361452711,3,0,0,0,-9,0,-1129.280940118004,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.503224686502803,0,0,0,36.05,45.47,4,1,0,1,6,2,0,735,0,0,0 +7079,8680,15794,-9,15793,-9,5,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1024.797500344726,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,0,735,0,0,0 +7080,8681,15795,15796,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.163077934178331,6.250736978134779,1,0,-9,41,0,3,78.93221235831408,0,0,0,70,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.031529973751518,6.114185324983304,0,3,59.07,43.05,6,1,0,0,10,2,1,1287.5,0,0,0 +7080,8681,15796,15795,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.195894548904561,7.186721281303487,1,0,-9,41,0,-3,97.75004668523735,0,0,0,73,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.207479809354083,7.02407872466562,0,0,48.87,58.55,6,1,0,0,10,2,1,1287.5,0,0,0 +7081,8682,15797,15798,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.164601614312575,7.817842511594214,0,1,0,-9,45,0,-1,3.247269777313819,0,0,0,60,2,2,1,-9,-9,2019,1,1,11,0,25,16,15,1,0,1,0,10.73830757659998,10.73830757659998,0,0,0,0,0,0,0,1,1,0,2.267781683098716,0,3.990061557605875,1,54.37,54.8,6,1,0,0,5,4,1,277,0,0,0 +7081,8682,15798,15797,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,2,7.871144123221419,7.575042970808433,0,1,0,-9,45,0,1,9.151826909092195,0,0,0,59,2,3,1,2,-9,2019,1,2,10,1,32,32,15,1,1,1,0,8.919688258192755,8.919688258192755,0,0,0,0,0,0,0,1,1,0,1.328584422688379,0,0,0,63.06,29.54,6,1,0,0,5,4,1,277,0,0,0 +7082,8683,15799,-9,15801,15800,4,1,0,17,2,0,1,0,2,-9,97,3,0,4,6.920360606414611,6.722602654436982,0,2,0,0,0,-9,0,-947.7365408032578,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.3771806948430452,0,0,0,33.83,63.9,3,1,0,0,9,3,1,899,0,0,0 +7082,8683,15800,15801,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,4,6.523758498684534,6.554414446552765,0,2,0,-9,10,0,4,58.74933815057997,0,0,0,46,2,3,1,-9,-9,2019,1,1,8,0,15,25,15,1,0,1,0,4.094403270535557,4.094403270535557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,4,1,0,0,9,3,1,899,0,0,0 +7082,8683,15801,15800,-9,-9,1,1,0,46,1,0,1,0,2,-9,1,1,0,3,8.131028883457155,8.056578670051437,0,2,0,-9,10,0,-4,57.55810024658305,0,0,0,50,2,4,1,2,1,2019,1,2,8,0,4,8,15,1,0,1,0,100.3235457752854,100.3235457752854,0,0,0,0,0,0,0,0,0,0,1.717765816966891,0,0,0,45.77,53.13,5,1,0,0,9,3,1,899,0,0,0 +7082,8684,15802,-9,15801,15800,3,1,0,21,2,0,1,0,2,-9,1,1,0,3,5.789304777899574,5.651311242554629,0,3,0,0,0,-9,0,-1075.948591957766,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,0,12,10,15,1,3,-9,1,3.596142447262573,3.596142447262573,0,0,0,0,0,0,0,0,0,0,2.570616090674753,0,0,3,38.17,59.79,4,1,0,0,9,2,1,463,0,0,0 +7083,8685,15803,-9,15804,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-787.3543588884006,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,1,0,276.5,0,0,0 +7083,8685,15804,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1033.336657314489,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.982748420504654,3,33.85,34.88,2,1,0,0,12,1,0,276.5,0,0,0 +7084,8686,15805,-9,-9,-9,1,1,0,70,2,0,0,0,1,-9,4,3,0,4,0,8.528141913696473,8.153501068950359,3,0,0,0,-9,0,-1061.55445858691,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.912846437279466,8.29572106967356,0,0,57.16,56.15,2,1,0,0,12,4,1,743,0,0,0 +7085,8687,15806,15807,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,6.941165340898302,6.967904228308345,1,0,-9,7,0,-4,-102.2594869863984,0,0,0,69,3,2,3,-9,-9,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.74853608262618,7.273694041426812,8.098839987880805,3,58.83,30.76,7,1,0,0,4,2,1,637,0,0,0 +7085,8687,15807,15806,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,4.963072906171718,4.966459511095887,1,0,-9,52,0,4,-18.37005376685691,0,0,0,65,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.650955499058903,4.707123358855006,12.00698457610229,3,51.89,51.11,7,1,0,0,4,2,1,637,0,0,0 +7085,8688,15808,-9,-9,-9,3,1,0,51,2,0,0,0,2,-9,2,1,0,3,8.437866744917333,8.421323008933813,0,3,0,0,0,-9,0,-1073.509170070111,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,37,15,1,0,-9,0,11.02612959140571,11.02612959140571,0,0,0,0,0,0,0,1,1,0,4.279701801012322,0,0,0,54.37,54.8,6,1,0,0,4,4,1,129,0,0,0 +7086,8689,15809,15810,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,7.175538333453036,7.514080151721624,0,1,0,-9,32,0,1,116.8748489020677,0,0,0,51,2,4,3,2,2,2019,2,1,14,1,40,42,15,1,1,3,0,4.805857795541752,4.805857795541752,0,0,0,0,0,0,0,0,0,0,8.848619400443727,0,0,0,47.15,53.8,6,1,0,0,10,2,1,543.5,0,0,0 +7086,8689,15810,15809,-9,-9,1,1,0,51,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,33,0,-1,-60.05595732936438,0,0,0,52,2,4,1,3,3,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,1,1,0,10,2,1,543.5,0,0,0 +7086,8690,15811,-9,15810,15809,3,1,1,23,2,0,0,0,1,-9,1,1,0,4,5.944276671554995,5.907138471867903,0,3,0,0,0,-9,0,-816.2734030400079,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,0,15,1,0,-9,1,1.092813505609274,1.092813505609274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,5,1,0,1,10,2,1,1092,0,0,0 +7086,8691,15812,-9,15810,15809,4,1,1,22,2,0,0,0,1,1,3,3,0,4,0,6.22601254718668,5.879024991294563,3,0,0,0,-9,0,-1108.364176874013,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.49645720797154,0,0,0,25.78,65.16,7,1,1,0,10,2,1,1144,0,0,0 +7086,8692,15813,-9,15810,15809,5,1,0,19,2,0,0,0,2,-9,2,1,0,4,6.943591538348685,6.903466255437372,0,3,0,0,0,-9,0,-972.8980624767811,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,28,40,15,1,4,-9,1,3.912299517516228,3.912299517516228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.43,58.86,6,1,0,0,10,2,1,395,0,0,0 +7087,8693,15814,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-915.3911978967752,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,23.98,39.32,3,1,0,0,12,1,0,386,0,0,0 +7087,8694,15815,-9,15814,-9,2,1,1,54,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1047.502151505952,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.063716484844116,0,0,0,60.2,29.61,5,1,0,0,12,1,0,385,0,0,0 +7088,8695,15816,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,7.231759395388226,7.278531906456071,3,0,0,0,-9,0,-1062.235968441486,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,4.672972880415534,0,3.571548130391751,0,0,39.27408030160203,1,1,0,0,7.354988264480349,0,0,63.19,27.85,6,1,0,0,4,3,0,336,0,0,0 +7089,8696,15817,15818,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,5.647765972556047,5.451500125775802,1,0,-9,11,0,-8,-16.33314744224085,0,0,0,71,2,3,3,2,2,2019,4,1,16,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.176035546682484,5.815849360210113,0,0,41.93,56.33,6,1,0,0,10,3,1,321,0,0,0 +7089,8696,15818,15817,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.627508202954711,7.83662108386889,1,0,-9,11,0,8,37.48310201676515,0,0,0,63,2,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0680988274076,7.825303262887211,0,0,53.23,42.9,6,1,0,0,10,3,1,321,0,0,0 +7090,8697,15819,15820,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,7.341101651995931,8.368053899412526,8.003664305512167,1,0,-9,8,0,-1,-80.95582026915903,0,0,0,58,2,3,1,2,2,2019,1,1,13,1,26,23,15,1,1,1,0,7.38464754124632,7.38464754124632,0,0,0,0,0,0,0,0,0,0,3.38903059378221,7.947113089313537,1.664211451503582,3,34.17,57.25,5,1,0,0,6,5,1,516,0,0,0 +7090,8697,15820,15819,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.835771777244419,7.892351087557752,0,1,0,-9,8,0,1,-18.23006513699728,0,0,0,57,2,3,1,2,2,2019,1,2,10,0,37,35,15,1,0,1,0,8.725040245814888,8.725040245814888,0,0,0,0,0,0,0,0,0,0,4.113528415348449,0,0,0,50.23,52.59,6,1,0,0,6,5,1,516,0,0,0 +7091,8698,15821,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,3,8.030703118390907,7.778165701041477,0,3,0,0,0,-9,0,-916.2608370924847,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,39,40,15,1,2,-9,0,9.156392088536883,9.156392088536883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.16,46.76,6,1,0,0,6,4,1,1072,0,0,0 +7092,8699,15822,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,5.1727832912261,4.433436387734113,3,0,0,0,-9,0,-951.7425853142598,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.122725571314405,0,0,50,46,5,1,0,0,13,2,1,636,0,0,0 +7093,8700,15823,15824,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.146276989550714,9.217473570553903,7.733023841344726,1,0,-9,27,0,6,127.6202988061118,0,0,0,49,2,4,1,2,2,2019,1,2,8,0,43,9,15,1,0,1,0,9.699168736683806,9.699168736683806,0,0,0,0,0,0,0,0,0,0,6.238751076937064,8.484939111537813,0,0,50.97,52.09,7,1,0,0,6,5,1,395,0,0,0 +7093,8700,15824,15823,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,8.58264614145056,8.752367026110898,0,1,0,-9,11,0,-6,-55.72990011389095,0,0,0,55,2,4,1,-9,-9,2019,1,1,10,0,37,35,15,1,0,1,0,13.75967983976192,13.75967983976192,0,0,0,0,0,0,0,0,0,0,4.140684728428139,0,15.53482209400986,3,58.87,51.29,6,1,0,0,6,5,1,395,0,0,0 +7093,8701,15825,-9,15824,15823,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.777263522959976,7.764620084769772,0,3,0,0,0,-9,0,-887.8817852693106,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,40,15,1,3,-9,1,8.283569132456076,8.283569132456076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,60.68,5,1,0,0,6,4,1,1220,0,0,0 +7094,8702,15826,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-878.0063188933682,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.43,26.15,5,1,0,0,12,1,1,947,0,0,0 +7095,8703,15827,15828,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,2,8.702319579876717,8.7548156815299,0,1,0,-9,2,0,0,38.21869512299001,0,0,1,34,3,5,1,-9,-9,2019,1,2,20,9,42,40,15,1,9,1,0,18.71160766600961,18.71160766600961,0,0,0,0,0,0,0,0,0,0,3.777166754921635,0,0,0,34.65,37.08,5,1,0,0,8,4,1,2523,0,0,0 +7095,8703,15828,15827,-9,-9,2,1,1,34,1,0,0,0,3,-9,2,1,0,5,0,0,0,1,0,-9,2,0,0,52.32886202445139,0,0,0,34,1,2,1,-9,-9,2019,1,1,5,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.660946187113073,0,0,0,54.1,59.11,6,3,0,0,8,4,1,2523,0,0,0 +7096,8704,15829,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,3,6.943781098421079,6.971978812709336,0,3,0,0,0,-9,0,-966.6288202656802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,16,16,15,1,0,-9,0,8.265163350453292,8.265163350453292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,54.77,6,1,0,0,7,2,1,1339,0,0,0 +7097,8705,15830,15831,-9,-9,1,1,0,74,1,0,0,0,1,-9,1,1,0,3,5.859029029067684,6.904510072676277,6.606406889515259,1,0,-9,35,0,3,58.89440335570205,0,0,0,71,3,4,3,3,3,2019,2,2,13,1,7,8,15,1,1,4,0,5.030269618387647,5.030269618387647,0,0,0,0,0,0,0,1,1,0,1.650106707438244,6.59104455720578,0,1,42.61,49.31,5,1,0,0,4,3,1,1359,0,0,0 +7097,8705,15831,15830,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,6.889448959673072,6.672398713218904,1,0,-9,35,0,-3,-107.2205298215444,0,0,0,74,1,3,1,2,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,7.913238332437361,6.628316814521455,0,0,54.32,35.34,6,1,0,0,4,3,1,1359,0,0,0 +7098,8706,15832,15833,-9,-9,2,1,0,61,1,0,0,0,2,-9,8,3,1,1,0,6.496821677982902,5.831189013267762,1,0,-9,3,0,-8,-106.0813446485499,0,0,0,69,2,4,3,3,3,2019,4,1,26,8,0,0,15,3,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.19901238562908,0,0,24.45,26.89,1,1,0,0,2,2,1,474.5,0,0,0 +7098,8706,15833,15832,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,3,0,8,80.45246510483696,0,0,0,61,2,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.67888885086241,1,62.49,55.09,5,1,0,0,2,2,1,474.5,0,0,0 +7099,8707,15834,15835,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,8.258441246574129,8.208765439096162,0,1,0,-9,8,0,-5,69.59449725710316,0,0,0,58,2,3,1,2,2,2019,1,1,9,0,43,38,15,1,0,1,0,12.9925438140271,12.9925438140271,0,0,0,0,0,0,0,0,0,0,0,0,14.36979457351846,3,46.8,46.5,6,1,0,0,5,5,1,914,0,0,0 +7099,8707,15835,15834,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.830303980923759,8.313179055627549,0,1,0,-9,30,0,5,-82.43563090976109,0,0,0,53,2,2,1,1,3,2019,1,2,11,0,33,33,15,1,0,1,0,21.31773021929156,21.31773021929156,0,0,0,0,0,0,0,0,0,0,.3382222954111869,0,0,0,52.41,39.35,6,1,0,0,5,5,1,914,0,0,0 +7099,8708,15836,-9,15834,15835,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,8.180156122311514,7.776617805035002,0,3,0,-9,0,0,0,-1016.57310941846,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,36,15,1,0,-9,1,7.950207390723329,7.950207390723329,0,0,0,0,0,0,0,0,0,0,1.723683781414126,0,0,0,52.8,53.98,6,1,0,0,5,4,1,270,0,0,0 +7100,8709,15837,-9,15838,15839,1,1,1,37,2,0,0,0,2,-9,2,1,0,5,8.271186747402165,8.075190939668497,0,3,0,-9,0,0,0,-981.820209480272,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,60,15,1,0,-9,1,11.32262572192632,11.32262572192632,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,5,1,0,0,7,4,0,636,0,0,0 +7100,8710,15838,15839,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,0,-31.77501206110591,-9,0,0,64,3,3,1,-9,-9,2019,3,3,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,7,3,0,448.5,0,0,0 +7100,8710,15839,15838,-9,-9,3,1,1,64,1,0,0,0,3,-9,2,1,0,3,7.755216116828113,7.86778717944807,0,1,0,-9,1,-9,0,-120.2248380454836,-9,0,0,64,3,3,3,-9,-9,2019,2,2,10,0,30,0,15,1,1,4,0,11.79618215935167,11.79618215935167,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,7,3,0,448.5,0,0,0 +7101,8711,15840,15842,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.620530467721911,8.740080866361055,0,2,0,-9,7,0,4,-105.7594406943934,0,0,0,36,2,3,1,2,2,2019,1,1,9,0,40,37,15,1,1,1,0,16.88279633782109,16.88279633782109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,6,1,0,0,4,4,1,772.5,0,0,0 +7101,8711,15841,-9,15842,15840,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.1512882562064,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,4,4,1,772.5,0,0,0 +7101,8711,15842,15840,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,3,7.485452789861895,7.474822141811371,0,2,0,-9,7,0,-4,5.114331437164838,0,0,1,40,2,4,1,-9,-9,2019,1,2,12,0,35,26,15,1,0,1,0,5.899278489771228,5.899278489771228,0,0,0,0,0,0,0,0,0,0,6.473503823345799,0,0,0,35.74,60.87,2,1,0,0,4,4,1,772.5,0,0,0 +7101,8711,15843,-9,15842,15840,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.838002637668,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,4,4,1,772.5,0,0,0 +7102,8712,15844,-9,15847,15846,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-967.7157545879597,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,5,1,0,0,12,5,1,1168.75,0,0,0 +7102,8712,15845,-9,15847,15846,4,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-974.2051176345202,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,12,5,1,1168.75,0,0,0 +7102,8712,15846,15847,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,9.523794758704923,9.244491452329768,0,2,0,-9,7,0,-1,-.8415509249899444,0,0,0,45,1,4,1,2,2,2019,1,1,7,0,45,45,15,1,0,1,0,22.79473177823802,22.79473177823802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,1168.75,0,0,0 +7102,8712,15847,15846,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,7.875802147941212,8.20284164878165,0,2,0,-9,7,0,1,39.87884470598909,0,0,0,44,1,4,1,1,2,2019,1,2,6,0,32,35,15,1,0,1,0,11.04441527472129,11.04441527472129,0,0,0,0,0,0,0,0,0,0,2.046567505045026,0,0,0,57.16,56.15,6,1,0,0,12,5,1,1168.75,0,0,0 +7103,8713,15848,15849,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,4,8.699091045803383,8.777678476556517,0,1,0,-9,20,0,-13,26.45376644782182,0,0,0,56,1,4,1,2,2,2019,1,1,12,0,40,40,15,1,0,1,0,16.60033144705005,16.60033144705005,0,0,0,0,0,0,0,1,1,0,3.424749864155344,0,8.276223239768507,3,51.24,58.84,4,1,0,0,1,5,1,354.5,0,0,0 +7103,8713,15849,15848,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.897512722723127,8.709455548229746,0,1,0,-9,20,0,13,-92.7114734400044,0,0,0,43,1,4,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,19.75590962382319,19.75590962382319,0,0,0,0,0,0,0,1,1,0,4.538990432073042,0,1.787751676335745,3,54.2,57.49,6,1,0,0,1,5,1,354.5,0,0,0 +7103,8714,15850,-9,15849,15848,3,1,0,18,2,0,0,0,2,1,2,1,0,4,6.676954621645161,6.258327490370955,0,3,0,0,0,-9,0,-1027.589710631509,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,5,10,0,15,1,5,-9,1,7.455130486202904,7.455130486202904,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,1,2,1,138,0,0,0 +7104,8715,15851,15852,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,1,0,6.147680559804114,6.10363509789526,1,0,-9,39,0,-3,13.70523855104363,0,0,0,64,1,5,1,2,2,2019,3,1,18,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.445597289112939,6.100268386645594,0,0,35.47,38.09,2,1,0,0,9,4,1,523,0,0,0 +7104,8715,15852,15851,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,5,7.094937443531169,8.526138896806632,8.232155401816037,1,0,-9,38,0,3,-3.737145971633797,0,0,0,61,1,1,3,2,2,2019,2,2,8,2,8,0,15,1,2,4,0,16.51639781078661,16.51639781078661,0,0,0,0,0,0,0,0,0,0,5.144975892656696,8.528218513851437,0,3,47,41.31,6,1,0,0,9,4,1,523,0,0,0 +7105,8716,15853,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.275842615278071,8.271951391501666,0,3,0,0,0,-9,0,-989.5241202947821,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,41,0,15,1,2,-9,0,12.9640903429081,12.9640903429081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,1,0,0,8,4,0,228,0,0,0 +7106,8717,15854,15855,-9,-9,2,1,1,47,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,6,0,4,0,0,0,0,43,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.39,50.88,6,1,1,0,11,1,0,946,0,0,0 +7106,8717,15855,15854,-9,-9,1,1,0,43,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,6,0,-4,0,0,0,1,47,3,4,3,3,2,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.404907270625147,3,50,55,6,1,1,0,11,1,0,946,0,0,0 +7107,8718,15856,15857,-9,-9,2,1,1,74,1,0,0,0,1,-9,2,1,0,2,6.67856307111935,8.354566627166154,8.345021846415083,1,0,-9,51,0,4,36.63050707460329,0,0,0,70,3,3,3,3,2,2019,2,1,12,2,10,2,15,1,2,3,0,10.04468998283301,10.04468998283301,1,0,0,0,0,0,0,1,1,0,7.71937282411787,8.29873513286257,0,0,51.8,44.35,6,1,0,0,12,3,1,1180.5,0,0,0 +7107,8718,15857,15856,-9,-9,1,1,0,70,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,51,0,-4,.6518417124848739,0,0,0,74,1,2,1,2,3,2019,3,2,11,0,0,2,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,12,3,1,1180.5,0,0,0 +7108,8719,15858,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.954623821439344,7.859511942816323,0,3,0,-9,0,-9,0,-1096.808621383079,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,38,0,15,1,1,-9,0,8.663668962010592,8.663668962010592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,5,4,1,317,0,0,0 +7109,8720,15859,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,6.628984391441824,6.787479257376195,3,0,0,0,-9,0,-909.7670118768312,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.870161692108775,6.63386297901419,0,0,57.34,50.6,5,1,0,0,11,2,1,1942,0,0,0 +7110,8721,15860,-9,15861,15863,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.4418167324202,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,566,0,0,0 +7110,8721,15861,15863,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,4,8.240567100075694,7.499055298110883,0,2,0,-9,7,0,-3,-41.51565543090108,0,0,1,36,2,5,1,-9,-9,2019,1,1,7,0,19,19,15,1,0,1,0,14.16351174179194,14.16351174179194,0,0,0,0,0,0,0,1,1,0,1.034492568440109,0,0,0,65.06,41.58,2,1,0,0,9,4,1,566,0,0,0 +7110,8721,15862,-9,15861,15863,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.374881386264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,566,0,0,0 +7110,8721,15863,15861,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,5,8.690036800433209,8.530638242987539,0,2,0,-9,7,0,3,104.8663112636366,0,0,0,33,2,4,1,3,2,2019,1,2,5,0,45,40,15,1,0,1,0,17.16849832987549,17.16849832987549,0,0,0,0,0,0,0,1,1,0,1.162281454310364,0,0,0,57.06,57.76,6,1,0,0,9,4,1,566,0,0,0 +7111,8722,15864,15865,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,4,6.881591142749407,8.156482315067938,7.963097467009923,1,0,-9,41,0,1,93.73309585411445,0,0,0,59,2,3,1,2,2,2019,3,2,6,0,15,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.512455863704047,8.22273981932614,0,3,57.16,56.15,6,1,0,0,11,5,1,764,0,0,0 +7111,8722,15865,15864,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.477816937824975,8.133065000797112,7.653292950135736,1,0,-9,41,0,-1,44.2779946108801,0,0,0,60,2,4,3,3,3,2019,2,1,9,2,24,24,15,1,2,4,0,10.35223797563405,10.35223797563405,0,0,0,0,0,0,0,0,0,0,5.460163998324843,8.095798340184084,1.621689915813755,3,56.94,49.53,6,1,0,0,11,5,1,764,0,0,0 +7112,8723,15866,-9,15867,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,4,7.58439619301766,8.019336990055006,0,3,0,0,0,-9,0,-992.7876171560423,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,28,0,15,1,0,-9,1,8.987296997508187,8.987296997508187,0,0,0,0,0,0,0,1,1,0,4.319166406613553,0,0,0,49.06,58.64,5,4,0,0,8,3,0,419,0,0,0 +7112,8724,15867,-9,-9,-9,3,1,0,58,2,0,0,0,2,-9,2,1,0,3,8.224120093692596,8.399915767501785,0,3,0,0,0,-9,0,-1054.067622233284,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,3,60,49,15,1,3,-9,0,8.955312978948193,8.955312978948193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.64,54.12,2,4,0,0,8,4,0,151,0,0,0 +7113,8725,15868,15869,-9,-9,2,1,0,43,1,0,0,0,3,-9,2,1,0,4,8.086607138811852,8.117840389301557,0,1,0,-9,5,0,-12,-86.80335692327297,0,0,1,55,3,3,1,-9,-9,2019,1,1,10,1,37,40,15,1,1,1,0,10.35704368152996,10.35704368152996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,6,4,0,0,6,4,0,394,0,0,0 +7113,8725,15869,15868,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,3,6.942864493099917,6.893715550606101,0,1,0,-9,5,0,12,5.360285286663943,0,0,0,43,3,4,1,3,3,2019,1,2,7,0,30,40,15,1,0,1,0,4.797675793837036,4.797675793837036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.78,46.93,6,4,0,0,6,4,0,394,0,0,0 +7114,8726,15870,15871,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,3,8.638167490875505,8.295937989099846,0,2,0,-9,6,0,0,-99.25475410058901,0,0,1,43,2,4,1,-9,-9,2019,1,1,8,0,42,43,15,1,0,1,0,15.58178128533521,15.58178128533521,0,0,0,0,0,0,0,1,1,0,7.380992353729916,0,0,0,53.79,37.67,7,1,0,0,9,5,1,526,0,0,0 +7114,8726,15871,15870,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,4,8.270537525842728,8.296828915935757,0,2,0,-9,6,0,0,-27.56127420382157,0,0,0,43,1,3,1,3,-9,2019,1,2,9,1,40,32,15,1,1,1,0,12.65834938421077,12.65834938421077,0,0,0,0,0,0,0,1,1,0,7.367629864079329,0,0,0,52.34,56.95,6,1,0,0,9,5,1,526,0,0,0 +7114,8726,15872,-9,15870,15871,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.3222924292954,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,526,0,0,0 +7115,8727,15873,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,3,0,6.104679387647717,6.014034277603472,3,0,0,0,-9,0,-973.067054610396,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,7.380359040491896,0,1,1,0,0,6.046215363555339,0,0,54.13,37.31,5,1,0,0,1,2,1,186,0,0,0 +7116,8728,15874,15875,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,3,8.118688567040779,8.460706428866414,0,2,0,-9,19,0,1,55.17429797197509,0,0,0,35,2,3,1,1,2,2019,1,2,11,0,37,38,15,1,0,1,0,12.42169923246946,12.42169923246946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,46.55,6,1,0,0,6,5,0,726.75,0,0,0 +7116,8728,15875,15874,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,3,9.141842518358205,9.107666648685756,0,2,0,-9,18,0,-1,-2.486394350788184,0,0,1,36,2,3,1,1,2,2019,1,1,21,10,55,50,15,1,10,1,0,15.86399261766407,15.86399261766407,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.54,58.69,3,1,0,0,6,5,0,726.75,0,0,0 +7116,8728,15876,-9,15875,15874,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.5110326846187,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,0,726.75,0,0,0 +7116,8728,15877,-9,15875,15874,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.602712549207,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,6,5,0,726.75,0,0,0 +7117,8729,15878,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,5,8.161627398544175,8.121374860093578,0,3,0,0,0,-9,0,-834.9913436479915,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,35,40,15,1,0,-9,0,10.81397426390059,10.81397426390059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,2,1,0,0,12,4,0,4658,0,0,0 +7118,8730,15879,15880,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,2,7.32415819351253,7.077916180282072,0,1,0,-9,32,0,0,-39.27768681546922,0,0,0,51,2,4,1,2,2,2019,1,1,6,0,50,0,15,1,0,1,0,4.109918590689168,4.109918590689168,0,0,0,0,0,0,0,0,0,0,4.410784823357105,0,0,0,47.61,51.64,6,1,0,0,7,3,1,241,0,0,0 +7118,8730,15880,15879,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.743873645046379,7.879031307996,0,1,0,-9,32,0,0,8.231149679200421,0,0,0,51,1,2,1,2,3,2019,1,2,9,0,33,32,15,1,0,1,0,8.861430299688781,8.861430299688781,0,0,0,0,0,0,0,0,0,0,2.423840570341457,0,0,0,57.16,56.15,6,1,0,0,7,3,1,241,0,0,0 +7118,8731,15881,-9,15880,15879,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.082993485347707,8.304215765844079,0,3,0,0,0,-9,0,-1000.601311214364,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,39,38,15,1,0,-9,1,9.786380772243934,9.786380772243934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,6,1,0,0,7,4,1,393,0,0,0 +7118,8732,15882,-9,15880,15879,4,1,0,22,2,0,0,0,2,-9,2,1,0,3,7.661948153779776,7.434174092100075,0,3,0,0,0,-9,0,-1004.68800107006,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,27,11,38,38,15,1,11,-9,1,5.943443604966508,5.943443604966508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.58,61.96,3,1,0,0,7,3,1,2001,0,0,0 +7119,8733,15883,15884,-9,-9,2,1,1,56,1,0,0,0,3,-9,1,1,0,4,5.910790442709906,5.792573736313934,0,1,0,-9,41,0,-1,22.75230881345318,0,0,0,57,2,3,1,3,3,2019,1,1,14,3,0,50,15,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.722838501137854,0,0,0,37.58,59.68,3,1,0,0,9,3,1,776,0,0,0 +7119,8733,15884,15883,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.974216907682182,7.5750520047598,0,1,0,-9,41,0,1,35.35461814016293,0,0,0,56,3,4,1,3,3,2019,1,2,13,1,24,24,15,1,1,1,0,11.34627617541119,11.34627617541119,0,0,0,0,0,0,0,0,0,0,3.43122499093651,0,0,0,40.49,52.95,3,3,0,1,9,3,1,776,0,0,0 +7119,8734,15885,-9,15884,15883,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.394778702467031,8.533728155700505,0,3,0,0,0,-9,0,-959.4755448345913,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,37,42,15,1,1,-9,1,15.56670322492396,15.56670322492396,0,0,0,0,0,0,0,0,0,0,2.22981197630976,0,0,0,47.52,57.75,6,1,0,0,9,4,1,229,0,0,0 +7119,8735,15886,-9,15884,15883,4,1,0,29,2,0,0,0,1,-9,2,1,0,4,9.466251298310738,9.526981213134111,0,3,0,0,0,-9,0,-1116.325657428565,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,0,0,45,47,15,1,0,-9,1,29.29601261780701,29.29601261780701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,2,0,0,9,5,1,704,0,0,0 +7120,8736,15887,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,3,0,7.098855943911332,7.126225341114518,3,0,0,0,-9,0,-837.1308903951366,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.280353500289665,7.069595960405054,2.64259423941258,3,62.27,48.47,6,1,0,0,7,2,1,635,0,0,0 +7121,8737,15888,15890,-9,-9,2,1,0,47,1,0,1,0,3,-9,2,1,0,2,7.916180618639433,8.132535905660299,6.502905119519127,2,0,-9,9,0,-13,55.6112802781585,0,0,0,60,3,4,1,3,3,2019,1,1,12,0,25,30,15,1,0,1,0,14.03470692144943,14.03470692144943,0,0,0,0,0,0,0,1,1,0,5.816175558408283,6.655795394502968,0,0,43,26.32,6,1,0,0,13,4,1,324,0,0,0 +7121,8737,15889,-9,15888,15890,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.375097485517,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,13,4,1,324,0,0,0 +7121,8737,15890,15888,-9,-9,1,1,1,60,1,0,1,0,3,-9,2,1,0,4,8.180699026168895,8.235437426600489,6.035276542767044,2,0,-9,9,0,13,80.94840075444053,0,0,0,47,3,2,1,2,2,2019,1,2,12,1,40,39,15,1,1,1,0,12.02223374488347,12.02223374488347,0,0,0,0,0,0,0,1,1,0,7.230171905512246,7.271192627603037,0,0,42.81,53.21,3,1,0,0,13,4,1,324,0,0,0 +7121,8738,15891,-9,15888,15890,3,1,1,18,2,0,1,0,3,-9,2,1,0,4,7.747378810246396,7.731854786947396,0,3,0,0,0,-9,0,-1078.621866084459,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,35,15,1,0,-9,1,6.405457111427519,6.405457111427519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,13,3,1,430,0,0,0 +7122,8739,15892,15893,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,1,0,6.381950480466757,6.375603405263996,1,0,-9,65,0,1,76.09297296960074,0,0,0,84,3,4,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,1.02217679637824,21.2182301078843,0,0,0,0,1,1,0,0,6.607659899890921,0,0,40.62,29.22,5,1,0,0,1,2,1,413.5,0,0,0 +7122,8739,15893,15892,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,65,0,-1,21.51317744504402,0,0,0,85,3,1,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,6,1,0,0,1,2,1,413.5,0,0,0 +7123,8740,15894,-9,15897,15896,3,1,0,17,2,0,2,0,2,1,3,3,0,3,0,0,0,2,0,0,0,-9,0,-985.0078989242714,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.348015814730178,0,0,0,42,54,4,1,1,0,9,2,1,824,0,0,0 +7123,8740,15895,-9,15897,15896,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.5613454605262,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,9,2,1,824,0,0,0 +7123,8740,15896,15897,-9,-9,2,1,1,60,1,0,2,0,3,-9,2,1,0,5,8.089412250231259,8.046468163646903,0,2,0,-9,20,0,10,-35.81813705234028,0,0,0,50,3,3,3,-9,-9,2019,2,1,6,0,36,0,15,1,0,3,0,10.44935470205824,10.44935470205824,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,2,1,824,0,0,0 +7123,8740,15897,15896,-9,-9,1,1,0,50,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,20,0,-10,-116.0664524884674,0,0,0,60,3,5,1,3,3,2019,3,2,19,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.35,55.96,5,1,0,0,9,2,1,824,0,0,0 +7124,8741,15898,15899,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,1,0,6.270435214541216,6.354778686174186,1,0,-9,8,0,-2,4.909378245088931,0,0,0,65,1,3,3,2,2,2019,4,2,35,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.210800738842084,6.56676397249441,0,0,24.93,19.95,3,1,0,0,10,2,1,131.5,0,0,0 +7124,8741,15899,15898,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,6.93883282145958,7.307716195679826,1,0,-9,8,0,2,-129.68121925092,0,0,0,63,2,1,3,3,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.893919988594878,6.982099842935614,0,0,35.78,55.1,5,1,0,0,10,2,1,131.5,0,0,0 +7125,8742,15900,-9,-9,-9,1,1,0,48,3,0,1,0,1,-9,2,1,0,4,6.059936849627754,6.16578804576412,0,4,0,0,0,-9,0,-871.3938117490246,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,16,16,15,1,10,-9,0,3.000700058294111,3.000700058294111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.34,67.89,4,3,0,1,8,2,0,281,0,0,0 +7125,8742,15901,-9,15900,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.461286674575,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,281,0,0,0 +7126,8743,15902,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,2,1,0,3,7.064235046787159,7.56651774042338,7.045645878417276,3,0,0,0,-9,0,-1100.212844449173,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,19,35,15,1,3,-9,0,7.93340613001588,7.93340613001588,0,0,0,0,0,0,0,1,1,0,3.171018830561166,7.116672786342203,0,0,42.9,50.31,5,1,0,0,2,3,1,698,0,0,0 +7127,8744,15903,-9,15905,15904,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.7239318433599,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,509.75,0,0,0 +7127,8744,15904,15905,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.080767020931788,9.019014200325632,0,2,0,-9,3,0,1,-44.85936895803009,0,0,0,45,3,3,1,2,2,2019,1,2,9,0,55,65,15,1,0,1,0,16.21782073063006,16.21782073063006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.69,49.57,5,1,0,0,13,5,1,509.75,0,0,0 +7127,8744,15905,15904,-9,-9,2,1,0,45,1,0,2,0,3,-9,2,1,0,3,7.598364156846981,7.773941335927007,0,2,0,-9,3,0,-1,30.7836022968129,0,0,0,46,1,4,1,3,2,2019,1,1,13,1,38,8,15,1,1,1,0,9.241204625816286,9.241204625816286,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.99,52.82,5,1,0,0,13,5,1,509.75,0,0,0 +7127,8744,15906,-9,15905,15904,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1013.026144781517,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,5,1,509.75,0,0,0 +7128,8745,15907,15909,-9,-9,1,1,0,39,1,1,2,0,2,-9,2,1,0,3,7.556780143430198,7.694455211666095,0,2,0,-9,6,0,8,53.2966889746673,0,0,1,31,2,3,1,2,3,2019,1,2,10,0,17,16,15,1,0,1,0,11.37586204775873,11.37586204775873,0,0,0,0,0,0,0,1,1,0,0,0,113.1894256230638,3,56.11,44.4,6,1,0,0,5,4,1,1052,0,0,0 +7128,8745,15908,-9,15907,15909,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-855.6040958147321,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,4,1,1052,0,0,0 +7128,8745,15909,15907,-9,-9,2,1,1,31,1,1,2,0,2,-9,2,1,0,3,8.549426443233768,8.357674652415596,0,2,0,-9,6,0,-8,144.0835352982903,0,0,0,39,2,3,1,-9,-9,2019,1,1,10,0,50,40,15,1,0,1,0,10.77019278164798,10.77019278164798,0,0,0,0,0,0,0,1,1,0,0,0,4.30771869314159,3,49.29,54.59,6,1,0,0,5,4,1,1052,0,0,0 +7128,8745,15910,-9,15907,15909,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.875268752906,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,1052,0,0,0 +7129,8746,15911,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,5.355224195075398,5.517389901255418,3,0,0,0,-9,0,-1051.843391795639,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,28.65800964338332,0,0,0,1,1,0,0,5.502669168430663,0,0,53.63,20.04,4,1,0,0,5,2,1,1007,0,0,0 +7129,8747,15912,-9,15911,-9,2,1,0,43,2,0,0,0,3,-9,2,1,0,4,7.302961740063723,7.243154838896791,0,3,0,0,0,-9,0,-1058.779921891561,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,20,39,15,1,2,-9,1,7.568901179178119,7.568901179178119,0,0,0,0,0,0,0,1,1,0,0,0,21.46155574568843,3,39.23,60.15,5,1,0,0,5,2,1,190,0,0,0 +7130,8748,15913,15914,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.158303737432556,8.30584067091127,0,1,0,-9,30,0,-3,-43.61976449599684,0,0,0,59,3,5,1,3,3,2019,1,1,14,3,22,23,15,1,3,1,0,16.76651040590076,16.76651040590076,0,0,0,0,0,0,0,0,0,0,4.499489849855918,0,0,0,46.16,54.36,5,1,0,0,9,5,1,1883,0,0,0 +7130,8748,15914,15913,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,5,8.433086941383728,9.230141780601818,8.000558889048692,1,0,-9,30,0,3,-2.182334083947129,0,0,0,56,2,3,1,3,3,2019,1,2,8,0,45,45,15,1,0,1,0,11.82214583965427,11.82214583965427,0,0,0,0,0,0,0,0,0,0,4.239699853606615,8.461139023648343,0,0,49.3,59.89,6,2,0,0,9,5,1,1883,0,0,0 +7130,8749,15915,-9,15913,15914,3,1,1,23,2,0,0,0,1,-9,2,1,0,4,8.413814068151007,8.14547537659567,0,3,0,0,0,-9,0,-920.3811782597654,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,44,35,15,1,0,-9,1,10.46943185072701,10.46943185072701,0,0,0,0,0,0,0,0,0,0,3.836869223487031,0,0,0,57.74,49,6,1,0,0,9,4,1,754,0,0,0 +7130,8750,15916,-9,15913,15914,4,1,0,19,2,0,0,1,2,0,7,2,0,5,6.885632417064173,7.345346148868907,0,3,0,0,0,-9,0,-967.2546833852178,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,1,0,0,9,2,1,542,0,0,0 +7131,8751,15917,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,4,7.782640757077249,9.054218584363678,8.691493779826773,3,0,0,0,-9,0,-1049.941695623995,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,20,20,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.90961822197896,8.720938392215324,0,0,56.74,52.23,6,1,0,0,8,5,1,469,0,0,0 +7132,8752,15918,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1118.522990456039,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,6,1,0,1,1,1,1,201,0,0,0 +7133,8753,15919,15920,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.202915224903514,6.78158647895742,1,0,-9,9,0,2,-72.19772155798969,0,0,0,66,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.968714339449792,7.334697012598897,0,0,54.2,57.49,7,1,0,0,9,2,1,561.5,0,0,0 +7133,8753,15920,15919,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,4.418994898602546,4.3805188070173,1,0,-9,9,0,-2,15.70070034829041,0,0,0,68,2,4,3,2,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.486021034763603,0,0,57.16,56.15,6,1,0,0,9,2,1,561.5,0,0,0 +7134,8754,15921,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,3,0,6.789283045210314,6.606252973015537,3,0,0,0,-9,0,-1087.761563965904,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.135739699133778,6.325656486868947,0,0,54.67,37.04,6,1,0,0,2,2,1,3907,0,0,0 +7135,8755,15922,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,4,8.488974675527947,8.466194142108577,0,1,0,1,1,-9,-6,-7.303310313896001,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,9,0,61,41,15,1,0,-9,0,10.24417080887564,10.24417080887564,0,0,0,0,0,0,0,0,0,0,1.968420765958935,0,0,0,43.42,62.33,6,1,0,0,5,5,1,218,0,0,0 +7135,8756,15923,-9,-9,-9,2,1,0,56,2,0,0,0,2,-9,2,1,0,4,8.980365335442247,9.322078839783256,0,1,0,1,1,-9,6,120.1326627529955,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,12,2,48,54,15,1,2,-9,0,22.07736685709708,22.07736685709708,0,0,0,0,0,0,0,0,0,0,2.053393357917837,0,0,0,47.77,56.48,7,1,0,0,5,5,1,2678,0,0,0 +7136,8757,15924,-9,15926,15928,4,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1155.788386307696,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,5,0,0,8,2,0,607.4,0,0,0 +7136,8757,15925,-9,15926,15928,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-899.0607981968526,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.69,53.18,7,5,0,0,8,2,0,607.4,0,0,0 +7136,8757,15926,15928,-9,-9,2,1,0,49,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,18,0,1,112.7047618130755,0,0,0,48,3,4,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.98,49.58,7,5,0,0,8,2,0,607.4,0,0,0 +7136,8757,15927,-9,15926,15928,5,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.32751278154,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,5,0,0,8,2,0,607.4,0,0,0 +7136,8757,15928,15926,-9,-9,1,1,1,48,1,0,3,0,3,-9,1,1,0,4,5.391700741455117,6.078036040325171,0,2,0,-9,18,0,-1,123.8108540944619,0,0,0,49,3,3,3,3,3,2019,2,2,9,0,40,40,15,1,1,3,0,.6561435377252638,.6561435377252638,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,5,0,0,8,2,0,607.4,0,0,0 +7137,8758,15929,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,7.608359059678254,7.163707461391488,0,3,0,0,0,-9,0,-922.5950877447272,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,0,15,1,0,-9,0,4.706037489805409,4.706037489805409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,4,1,0,0,12,3,1,731,0,0,0 +7138,8759,15930,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1064.341572268652,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.86,42.33,6,1,0,0,12,1,1,144,0,0,0 +7139,8760,15931,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,4,8.237743270759063,8.112265151680862,0,3,0,0,0,-9,0,-1087.082937403364,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,42,38,15,1,11,-9,0,9.161802073516066,9.161802073516066,0,0,0,0,0,0,0,0,0,0,2.633127831484714,0,0,0,42.3,57.54,5,1,0,0,7,4,0,1894,0,0,0 +7140,8761,15932,15933,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,5,8.677470507973128,8.95351062010927,0,1,0,-9,40,0,1,-30.80459339226564,0,0,0,59,3,4,1,3,3,2019,1,1,5,0,38,46,15,1,0,1,0,17.22892898213737,17.22892898213737,0,0,0,0,0,0,0,0,0,0,7.675195582015854,0,7.979537124816244,3,57.06,57.76,6,1,0,0,9,5,1,869.5,0,0,0 +7140,8761,15933,15932,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,4,6.625371344885846,6.742816689217439,0,1,0,-9,40,0,-1,6.683210103029631,0,0,0,60,1,5,1,3,2,2019,1,2,10,0,20,21,15,1,0,1,0,4.857459068734331,4.857459068734331,0,0,0,0,0,0,0,0,0,0,3.472033339781536,0,12.9442739731838,3,52.82,53.97,2,1,0,0,9,5,1,869.5,0,0,0 +7141,8762,15934,15935,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,4,8.358124176528232,8.045114879013541,0,1,0,-9,3,0,-5,2.402241913247201,-9,1,1,27,2,4,1,-9,-9,2019,1,2,21,8,35,0,15,1,8,1,0,13.24500669705757,13.24500669705757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,4,1,0,0,10,5,1,1168.5,0,0,0 +7141,8762,15935,15934,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.856655609716807,8.74192842898071,0,1,0,-9,3,0,5,1.542758715255865,-9,1,0,22,2,4,1,-9,-9,2019,1,1,13,2,42,0,15,1,2,1,0,14.07330165790329,14.07330165790329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,10,5,1,1168.5,0,0,0 +7142,8763,15936,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.612535329941574,8.594834473152876,0,3,0,0,0,-9,0,-1011.409050414372,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,38,37,15,1,0,-9,0,16.82059425774134,16.82059425774134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,850,0,0,0 +7143,8764,15937,-9,15938,15939,5,1,1,16,2,0,1,1,2,-9,7,2,0,3,4.383355221268648,4.563444070449722,0,2,0,0,0,-9,0,-951.7023287980445,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.328594934511148,0,0,0,36.94,49.15,5,1,0,0,12,5,1,1052,0,0,0 +7143,8764,15938,15939,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,4,8.075170799962132,8.039385380858686,0,2,0,-9,33,0,1,66.08815991957592,0,0,0,50,1,4,1,3,2,2019,1,2,6,0,26,28,15,1,0,1,0,13.27911590946295,13.27911590946295,0,0,0,0,0,0,0,0,0,0,2.70895235860791,0,0,3,58.15,52.91,6,1,0,0,12,5,1,1052,0,0,0 +7143,8764,15939,15938,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,4,9.2596766196024,9.584757675103065,0,2,0,-9,33,0,-1,.8647110118968172,0,0,0,51,1,4,1,2,1,2019,1,1,12,2,41,43,15,1,2,1,0,31.06005905973445,31.06005905973445,0,0,0,0,0,0,0,0,0,0,2.612912644938224,0,0,0,49.91,58.02,5,1,0,0,12,5,1,1052,0,0,0 +7143,8765,15940,-9,15938,15939,3,1,1,22,2,0,1,0,1,1,2,1,0,3,7.000702533798298,7.390373962300913,0,3,0,0,0,-9,0,-1009.661029576137,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,5,36,0,15,1,5,-9,1,2.907609266761233,2.907609266761233,0,0,0,0,0,0,0,0,0,0,.2554247357413078,0,0,0,33.43,59.21,6,1,0,0,12,2,1,373,0,0,0 +7143,8766,15941,-9,15938,15939,4,1,0,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1024.069076572235,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,55.68,6,1,0,0,12,1,1,519,0,0,0 +7144,8767,15942,15943,-9,-9,1,1,0,44,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,28,0,-3,0,0,0,1,47,3,3,3,3,3,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.8,40.72,3,1,0,0,4,1,0,539,0,0,0 +7144,8767,15943,15942,-9,-9,2,1,1,47,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,28,0,3,0,0,0,0,44,3,1,3,3,3,2019,4,1,22,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.23288394826633,1,29.16,52.88,2,1,1,0,4,1,0,539,0,0,0 +7144,8768,15944,-9,15942,15943,3,1,0,22,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1045.298659479666,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.90951905166201,3,28.99,45.42,2,1,0,0,4,1,0,647,0,0,0 +7145,8769,15945,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,5.224014879968171,5.577047519069827,3,0,-9,0,-9,0,-1029.802003229165,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.646560640684843,0,3,39.73,37.29,4,1,0,0,9,2,0,1718,0,0,0 +7145,8770,15946,-9,-9,-9,2,1,1,69,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1050.922999253314,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,50.45,7,1,0,0,9,1,0,471,0,0,0 +7146,8771,15947,15948,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,2,7.019685576577667,7.324941526899844,0,2,0,-9,6,0,12,-80.02199576053584,0,0,0,41,3,3,3,2,3,2019,2,2,22,11,24,44,15,1,11,3,0,5.939440331739219,5.939440331739219,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,39.98,3,1,0,0,2,2,0,240,0,0,0 +7146,8771,15948,15947,-9,-9,2,1,0,41,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-12,31.03114870621054,0,0,1,53,2,2,1,-9,-9,2019,3,1,23,9,0,2,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,26.42,35.08,1,1,0,0,2,2,0,240,0,0,0 +7146,8771,15949,-9,15948,15947,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.8075754119599,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,240,0,0,0 +7146,8772,15950,-9,15948,15947,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-947.4802548656601,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,7,1,0,0,2,2,0,2879,0,0,0 +7147,8773,15951,15952,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,4,9.044786809635641,8.519653910993066,0,1,0,-9,1,-9,-7,25.19590235889259,-9,0,0,39,1,5,1,2,2,2019,1,2,6,2,38,0,15,1,2,1,0,23.19946346613319,23.19946346613319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,4,5,1,942,0,0,0 +7147,8773,15952,15951,-9,-9,2,1,0,39,1,0,0,0,1,-9,5,1,0,5,9.150183800631016,9.464663173998895,0,1,0,-9,1,-9,7,-148.6155603181853,-9,0,1,32,1,4,1,-9,-9,2019,1,1,7,2,35,0,15,1,2,1,0,26.67309117983674,26.67309117983674,0,0,0,0,0,0,0,0,0,0,4.790067740754719,0,0,0,48.77,60.16,6,1,0,0,4,5,1,942,0,0,0 +7148,8774,15953,-9,15954,15955,3,1,1,17,2,0,0,1,2,0,7,2,0,4,6.132276820328086,6.173426261636036,0,1,0,0,0,-9,0,-849.4664464729939,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4182466458068851,0,0,0,52.37,56.93,2,1,0,0,4,5,1,430.6666666666667,0,0,0 +7148,8774,15954,15955,-9,-9,1,1,0,48,1,0,0,0,1,-9,1,1,0,4,9.565653316690568,8.985671401999205,0,1,0,-9,25,0,-20,41.87589090127492,0,0,0,68,2,3,1,3,2,2019,1,2,9,1,35,30,15,1,1,1,0,44.53524258471076,44.53524258471076,0,0,0,0,0,0,0,1,1,0,6.784550683545741,0,0,0,53.96,50.73,2,1,0,0,4,5,1,430.6666666666667,0,0,0 +7148,8774,15955,15954,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,3,9.039300469756569,9.000114933400384,0,1,0,-9,8,0,20,34.01416815807349,0,0,0,48,1,4,1,-9,-9,2019,1,1,10,0,50,50,15,1,1,1,0,21.10767513072905,21.10767513072905,0,0,0,0,0,0,0,1,1,0,8.958464145269225,0,0,0,52,47,5,1,0,0,4,5,1,430.6666666666667,0,0,0 +7148,8775,15956,-9,15954,15955,4,1,1,20,2,0,0,0,2,-9,2,1,0,3,7.838890690154869,8.064328614096492,0,3,0,0,0,-9,0,-939.1324846464429,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,45,50,15,1,0,-9,1,6.523222782142427,6.523222782142427,0,0,0,0,0,0,0,1,1,0,1.191319280583755,0,0,0,42.25,50.81,4,1,0,0,4,3,1,3426,0,0,0 +7149,8776,15957,15958,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,4,8.58359621470208,8.666975758729485,0,1,0,-9,29,0,0,22.27849601936317,0,0,0,51,1,4,1,2,2,2019,1,1,12,0,44,50,15,1,0,1,0,17.89153694242419,17.89153694242419,0,0,0,0,0,0,0,0,0,0,2.441509474989834,0,0,0,51.92,47.92,6,1,0,0,2,5,1,673,0,0,0 +7149,8776,15958,15957,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,4,8.146880878523246,8.732898723413269,0,1,0,-9,29,0,0,-93.74845132376936,0,0,0,51,1,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,15.30436164494091,15.30436164494091,0,0,0,0,0,0,0,0,0,0,5.416358628898613,0,0,0,57.16,56.15,6,1,0,0,2,5,1,673,0,0,0 +7149,8777,15959,-9,15957,15958,3,1,0,21,2,0,0,1,1,0,7,2,0,5,7.816174814097651,7.813103836849691,0,3,0,0,0,-9,0,-970.9683509173263,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.005458649602916,0,0,0,53.75,59.47,7,1,0,0,2,3,1,267,0,0,0 +7149,8778,15960,-9,15957,15958,4,1,0,19,2,0,0,1,2,0,7,2,0,4,7.977447184528369,8.030248020661595,0,3,0,0,0,-9,0,-981.0063865570536,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,40,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.9720434070646078,0,0,0,41.3,60.77,7,1,0,0,2,4,1,1799,0,0,0 +7150,8779,15961,-9,-9,-9,1,1,0,40,2,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-949.2866918534321,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,32.86,4,1,1,0,13,1,0,1257,0,0,0 +7151,8780,15962,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1007.340580687623,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.17,23.63,4,1,0,0,1,1,0,1393,0,0,0 +7151,8781,15963,-9,15962,-9,2,1,0,37,2,0,0,0,1,-9,2,1,0,3,8.439361572723815,8.317651664391272,0,3,0,0,0,-9,0,-959.8046315929167,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,11,0,60,60,15,1,0,-9,1,7.327185996926031,7.327185996926031,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,1,4,0,324,0,0,0 +7152,8782,15964,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,4.301463045892753,4.519143635091298,3,0,0,0,-9,0,-1052.533738687132,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.257246246336535,4.53572176896829,0,0,50.07,41.79,6,1,0,0,2,2,1,1319,0,0,0 +7153,8783,15965,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1061.661218523811,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.649331938351269,0,0,1,1,0,2.855886899261998,0,0,0,57.53,47.89,7,1,0,0,10,1,0,1503,0,0,0 +7154,8784,15966,15967,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,3,7.737927079311526,7.805677507607097,0,1,0,-9,5,0,0,-77.57610834272602,0,1,1,28,1,4,1,-9,-9,2019,1,2,12,0,37,41,15,1,0,1,0,7.370550486763144,7.370550486763144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,6,1,0,0,13,5,1,1542.5,0,0,0 +7154,8784,15967,15966,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,4,8.382556286892298,8.447645199634252,0,1,0,-9,5,0,0,50.72113696618285,0,1,0,28,1,3,1,-9,-9,2019,1,1,6,0,40,43,15,1,0,1,0,12.07255530871666,12.07255530871666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,13,5,1,1542.5,0,0,0 +7155,8785,15968,-9,15970,15969,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.9795026221062,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,703.3333333333334,0,0,0 +7155,8785,15969,15970,-9,-9,2,1,1,61,1,0,1,0,1,-9,2,1,0,5,8.798447984685492,9.125024523836071,0,2,0,-9,9,0,12,47.07081205055969,0,0,0,49,1,4,1,-9,-9,2019,1,1,7,0,10,40,15,1,0,1,0,91.29913789031608,91.29913789031608,0,0,0,0,0,0,0,1,1,0,3.01118464563014,0,0,0,58.05,54.52,1,1,0,0,9,5,1,703.3333333333334,0,0,0 +7155,8785,15970,15969,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,4,8.030368036854089,8.866455955202312,8.224358462098404,2,0,-9,25,0,-12,-5.209202083915367,0,0,0,61,1,5,1,2,1,2019,1,2,11,0,20,19,15,1,0,1,0,16.34544591958437,16.34544591958437,0,0,0,0,0,0,0,1,1,0,6.986664329765088,8.214843498144418,0,0,51.83,57.2,5,1,0,0,9,5,1,703.3333333333334,0,0,0 +7156,8786,15971,15973,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,3,8.729143444715127,8.71558889492532,0,2,0,-9,13,0,-1,45.66842722539555,0,0,1,37,1,4,1,3,2,2019,1,2,12,1,25,25,15,1,1,1,0,24.03107676042618,24.03107676042618,0,0,0,0,0,0,0,1,1,0,3.731062318645845,0,0,0,41.28,57.99,3,1,0,0,7,4,1,916.6666666666666,0,0,0 +7156,8786,15972,-9,15971,15973,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-883.4853911340361,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,916.6666666666666,0,0,0 +7156,8786,15973,15971,-9,-9,2,1,1,37,1,0,1,0,1,-9,2,1,0,4,7.749651706900563,7.796091754982189,0,2,0,-9,13,0,1,-56.69339244960676,0,0,0,36,1,3,1,2,2,2019,1,1,10,0,60,70,15,1,1,1,0,4.554218547092557,4.554218547092557,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,1,0,0,7,4,1,916.6666666666666,0,0,0 +7157,8787,15974,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,1,1,0,3,7.967221421345432,7.9407423739685,0,3,0,0,0,-9,0,-1006.541081747009,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,35,35,15,1,0,-9,0,7.957151512042703,7.957151512042703,0,0,0,0,0,0,0,0,0,0,0,0,3.265575597541629,3,57.33,53.46,5,1,0,0,2,3,1,350,0,0,0 +7157,8788,15975,-9,15974,-9,2,1,1,21,2,0,0,0,3,-9,3,3,0,2,5.040736381764808,4.884768989560079,0,3,0,0,0,-9,0,-1097.622608948302,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.93,54.93,3,1,1,1,2,2,1,236,0,0,0 +7158,8789,15976,-9,15979,15978,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.243351945134,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,2,0,0,8,5,1,483.5,0,0,0 +7158,8789,15977,-9,15979,15978,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.713875670301,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,5,1,483.5,0,0,0 +7158,8789,15978,15979,-9,-9,2,1,1,46,1,1,2,0,1,-9,2,1,0,4,9.03506835479949,9.159410721963356,0,2,0,-9,5,0,5,107.8925008601909,0,0,0,41,1,5,1,-9,-9,2019,1,1,6,0,35,35,15,1,0,1,0,23.17040174765298,23.17040174765298,0,0,0,0,0,0,0,1,1,0,3.322307164941944,0,0,0,62.49,55.09,6,2,0,0,8,5,1,483.5,0,0,0 +7158,8789,15979,15978,-9,-9,1,1,0,41,1,1,2,0,1,-9,2,1,0,5,8.193940481252092,8.387981206841788,0,2,0,-9,5,0,-5,-115.3792321091456,0,0,1,46,1,4,1,2,2,2019,1,2,7,1,24,22,15,1,1,1,0,22.18971338513913,22.18971338513913,0,0,0,0,0,0,0,1,1,0,7.784054541057931,0,0,0,54.1,59.11,7,2,0,0,8,5,1,483.5,0,0,0 +7159,8790,15980,15981,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,3,7.900079588267108,7.90987552850347,0,1,0,-9,4,0,0,5.675528183431151,0,0,0,46,2,4,1,2,2,2019,1,2,7,0,35,35,15,1,0,1,0,10.40368693480703,10.40368693480703,0,0,0,0,0,0,0,0,0,0,3.6993709958171,0,0,0,56.35,51.16,6,1,0,0,9,4,1,589.5,0,0,0 +7159,8790,15981,15980,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,4,8.215712494318177,7.916083094287347,0,1,0,-9,4,0,0,63.02403094848127,0,0,0,46,2,3,1,-9,-9,2019,1,1,9,0,37,38,15,1,1,1,0,12.01501833527107,12.01501833527107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,9,4,1,589.5,0,0,0 +7160,8791,15982,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,4.958790204680062,4.981529707433982,3,0,0,0,-9,0,-1047.755926091864,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.056634365151504,4.961497639688535,0,0,52.99,51.28,6,1,0,0,2,2,1,211,0,0,0 +7161,8792,15983,-9,-9,-9,1,1,0,23,2,0,0,0,1,1,2,1,0,5,8.504629233262106,7.703281336415555,0,3,0,0,0,-9,0,-899.0196717870168,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,30,0,15,1,1,-9,1,11.49459080957238,11.49459080957238,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,7,4,1,132,0,0,0 +7162,8793,15984,15985,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,7.902093458110317,8.043283553640093,1,0,-9,6,0,4,8.527183411439728,0,0,0,65,2,4,1,2,-9,2019,3,2,9,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.53634446822111,0,0,52.16,48.82,6,1,0,0,4,4,1,991.5,0,0,0 +7162,8793,15985,15984,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,4,6.971403516237691,7.643488376677739,6.734602452173097,1,0,-9,6,0,-4,-149.4048729652157,0,0,0,69,1,4,3,-9,-9,2019,2,1,10,0,5,15,15,1,0,4,0,25.89437950026945,25.89437950026945,0,0,0,0,0,0,0,1,1,0,0,6.34759697421134,0,0,46.84,58.02,6,1,0,0,4,4,1,991.5,0,0,0 +7163,8794,15986,-9,-9,-9,1,1,0,81,2,0,0,0,3,-9,4,3,0,3,0,5.70801655515696,5.940651703198682,3,0,0,0,-9,0,-946.8593794044045,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,12.43847136811211,0,0,0,0,27.57674330583738,1,1,0,0,5.548461991560182,0,0,37.1,39.87,6,1,0,0,10,2,0,1010,0,0,0 +7164,8795,15987,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,3,7.89014244653063,8.20184542456526,0,3,0,0,0,-9,0,-877.8069424738746,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,9.686784697675474,9.686784697675474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,6,1,0,0,5,4,1,622,0,0,0 +7165,8796,15988,15990,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,5,7.952419332457202,8.274299441507022,0,2,0,-9,24,0,-6,-29.03126076373187,0,0,0,56,1,4,1,2,2,2019,1,1,10,0,38,38,15,1,0,1,0,9.202330444628517,9.202330444628517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,51.37,6,1,0,0,7,5,1,750,0,0,0 +7165,8796,15989,-9,15988,15990,4,1,0,17,2,0,2,1,2,0,7,2,0,5,6.054846989835149,6.450000778782322,0,2,0,0,0,-9,0,-936.1321509630832,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,9,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.82988835461309,0,0,0,39.23,60.49,6,1,0,0,7,5,1,750,0,0,0 +7165,8796,15990,15988,-9,-9,1,1,1,56,1,0,2,0,1,-9,2,1,0,4,9.227679323395069,9.377752828672412,0,2,0,-9,23,0,6,-111.9097644004682,0,0,0,50,1,5,1,2,2,2019,1,2,9,0,50,45,15,1,0,1,0,21.95560185119952,21.95560185119952,0,0,0,0,0,0,0,0,0,0,1.139277515885753,0,0,0,51.77,58.57,6,1,0,0,7,5,1,750,0,0,0 +7165,8796,15991,-9,15988,15990,5,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1128.485515052157,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,750,0,0,0 +7165,8797,15992,-9,15988,15990,3,1,0,18,2,0,2,0,2,1,2,1,0,3,7.542524642074906,7.551439589451398,0,3,0,0,0,-9,0,-1004.450578144016,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,26,10,35,0,15,1,10,-9,1,5.955540455803966,5.955540455803966,0,0,0,0,0,0,0,0,0,0,.0711975881260258,0,0,0,25.67,61.34,3,1,0,0,7,3,1,559,0,0,0 +7166,8798,15993,15995,-9,-9,2,1,1,48,1,0,3,0,3,-9,2,1,0,3,8.198807362077504,8.190689684186561,0,2,0,-9,3,0,5,-187.3135494342516,0,0,0,43,2,3,3,-9,-9,2019,2,1,6,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.58,51.2,5,3,0,0,8,2,0,1005.2,0,0,0 +7166,8798,15994,-9,15995,15993,4,1,0,17,2,0,3,0,2,1,3,3,0,3,0,3.295340692310282,3.517084055264001,2,0,0,0,-9,0,-1044.564528072029,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.068631278527842,0,0,0,54.37,54.8,6,3,1,0,8,2,0,1005.2,0,0,0 +7166,8798,15995,15993,-9,-9,1,1,0,43,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,18,0,-5,55.9147551200685,0,0,1,48,3,3,1,3,3,2019,3,2,12,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,51.16,5,3,1,0,8,2,0,1005.2,0,0,0 +7166,8798,15996,-9,15995,15993,6,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.7344998349261,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,1005.2,0,0,0 +7166,8798,15997,-9,15995,15993,5,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-894.0514299977417,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,8,2,0,1005.2,0,0,0 +7166,8799,15998,-9,15995,15993,3,1,0,19,2,0,3,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-961.2981456500457,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,5,3,0,0,8,1,0,1538,0,0,0 +7167,8800,15999,16000,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,8.531011077422363,8.542968190247256,1,0,-9,56,0,4,-53.89886884135214,0,0,0,76,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.933165636426805,8.407117210197086,0,0,57.34,47.92,7,1,0,0,8,4,1,280.5,0,0,0 +7167,8800,16000,15999,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-4,-98.23662259082832,0,0,0,80,3,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.041007729389463,0,0,0,43.59,44.51,6,1,0,0,8,4,1,280.5,0,0,0 +7168,8801,16001,16002,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,3,8.382517896723325,8.535071579833524,0,1,0,-9,15,0,3,100.0353236799126,0,0,0,58,1,4,1,-9,-9,2019,1,2,8,0,38,36,15,1,0,1,0,18.7291369177073,18.7291369177073,0,0,0,0,0,0,0,1,1,0,3.352511379002653,0,0,0,63.17,30.24,6,1,0,0,5,5,1,393.5,0,0,0 +7168,8801,16002,16001,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,7.703477763351604,8.009617016278849,0,1,0,-9,15,0,-3,122.2109280559414,0,0,0,61,2,3,1,2,3,2019,1,1,18,7,25,30,15,1,7,1,0,11.80794874999687,11.80794874999687,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,5,1,0,0,5,5,1,393.5,0,0,0 +7169,8802,16003,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1012.795851462914,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.6,32.91,4,1,0,0,2,1,0,851,0,0,0 +7170,8803,16004,16005,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,8,0,0,0,0,68,3,3,3,3,3,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.46,44.23,1,3,0,1,5,1,0,593,0,0,0 +7170,8803,16005,16004,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-8,0,0,0,0,76,3,3,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.9,43.05,1,3,0,1,5,1,0,593,0,0,0 +7171,8804,16006,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1054.471440399986,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.472577797432105,0,1,1,0,0,0,0,0,61.66,15.3,2,4,0,1,8,1,0,632.5,0,0,0 +7171,8804,16007,-9,16006,-9,2,1,0,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-785.4184043519352,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,1,0,632.5,0,0,0 +7172,8805,16008,16009,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,3,7.586663391067377,7.455753787776304,0,2,0,-9,17,0,-3,-49.30151208146191,0,0,1,37,2,3,1,2,2,2019,1,2,9,1,25,22,15,1,1,1,0,9.905425809689325,9.905425809689325,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,1,5,1,1075,0,0,0 +7172,8805,16009,16008,-9,-9,2,1,1,37,1,1,1,0,2,-9,2,1,0,3,8.809960438719145,8.647847811438742,0,2,0,-9,15,0,3,-35.93882779293479,0,0,0,34,2,3,1,2,2,2019,1,1,10,2,46,48,15,1,2,1,0,19.54303781313997,19.54303781313997,0,0,0,0,0,0,0,1,1,0,.0587471792342163,0,0,0,52.6,52.88,4,1,0,0,1,5,1,1075,0,0,0 +7172,8805,16010,-9,16008,16009,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.8102572132473,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,5,1,1075,0,0,0 +7173,8806,16011,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,4.635687258142881,4.822098270811141,3,0,0,0,-9,0,-1013.092471780885,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.108063471595425,4.600093021150016,40.62009841440995,3,54.96,38.03,2,1,0,0,2,2,1,357,0,0,0 +7174,8807,16012,16013,-9,-9,2,1,1,40,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,1,-9,7,-66.05158316863852,-9,0,0,33,2,1,3,-9,-9,2019,4,1,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.63,28.87,2,1,1,0,10,1,0,483,0,0,0 +7174,8807,16013,16012,-9,-9,1,1,0,33,1,0,0,0,2,-9,3,3,0,1,0,3.957255140966693,3.791387855682273,1,0,-9,1,0,-7,-160.2833430523285,0,0,1,40,3,1,3,-9,2,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.445945287193958,0,0,0,30.13,40.6,4,1,1,0,10,1,0,483,0,0,0 +7175,8808,16014,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,4,8.446479605624214,8.42360006589298,0,3,0,-9,0,-9,0,-968.2984169575629,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,0,15,1,0,-9,0,12.68924181091467,12.68924181091467,0,0,0,0,0,0,0,0,0,0,3.435058742180796,0,0,0,51.83,57.2,6,1,0,0,9,4,0,625,0,0,0 +7176,8809,16015,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-966.6305695925979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.19,40.04,5,1,0,0,13,1,0,257,0,0,0 +7177,8810,16016,-9,-9,-9,1,1,1,40,2,0,1,0,2,-9,2,1,0,4,6.448406105068276,6.338633404866145,0,4,0,0,0,-9,0,-1055.752675600371,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,16,20,15,1,1,-9,0,7.718700045501542,7.718700045501542,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,47.99,4,1,0,1,9,2,0,2281,0,0,0 +7178,8811,16017,-9,16018,-9,2,1,1,58,3,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-998.856933509852,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,129.4313376660794,3,57.92,51.82,5,1,0,0,11,1,1,646,0,0,0 +7178,8812,16018,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,5.924532735164065,6.016896202139811,3,0,0,0,-9,0,-1080.889964384557,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.226452830982439,0,0,54,44,6,1,0,0,11,2,1,166,0,0,0 +7179,8813,16019,16020,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,7.742046848323171,7.963659384749061,1,0,-9,2,0,-2,35.69996459726353,-9,0,0,66,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.217405076346935,7.752534486329879,0,0,62.49,55.09,7,1,0,0,13,4,1,490.5,0,0,0 +7179,8813,16020,16019,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,7.491015262028265,7.291572152602538,1,0,-9,38,0,2,-36.65156150849089,0,0,0,64,1,4,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.277883364510239,0,0,52,48,5,1,0,0,13,4,1,490.5,0,0,0 +7180,8814,16021,16022,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,4,7.91804167114485,8.217778145866681,0,2,0,-9,28,0,2,83.20730029492873,0,0,0,45,3,4,3,2,3,2019,2,2,6,0,37,37,15,1,0,3,0,10.9862970761179,10.9862970761179,0,0,0,0,0,0,0,1,1,0,6.754068857225588,0,0,0,57.16,56.15,6,3,0,0,4,3,1,774,0,0,0 +7180,8814,16022,16021,-9,-9,2,1,0,45,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,28,0,-2,-199.992831055979,0,0,0,47,1,4,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,3,3,0,0,4,3,1,774,0,0,0 +7180,8814,16023,-9,16022,16021,6,1,1,17,2,0,2,1,3,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1028.062568932036,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,9,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.29,43.94,7,3,0,0,4,3,1,774,0,0,0 +7180,8815,16024,-9,16022,16021,3,1,0,21,2,0,2,1,2,0,7,2,0,4,6.081819175729028,5.694054204875725,0,3,0,0,0,-9,0,-944.7247117718708,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,8,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,6,3,0,0,4,2,1,488,0,0,0 +7180,8816,16025,-9,16022,16021,4,1,1,19,2,0,2,0,2,-9,11,3,0,5,7.482907025260602,7.580698509363839,0,3,0,0,0,-9,0,-968.5459948078105,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,17,6,24,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.95,52.38,7,3,0,1,4,3,1,194,0,0,0 +7180,8817,16026,-9,16022,16021,5,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-997.9669991082042,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,4,3,1,278,0,0,0 +7181,8818,16027,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,1,1,0,4,7.020640148281052,6.892840469805755,0,3,0,0,0,-9,0,-981.5961807689721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,16,15,1,0,-9,0,8.375365343739418,8.375365343739418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,7,1,0,0,9,2,1,280,0,0,0 +7182,8819,16028,16031,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,5,8.389232157245269,8.106678252769997,0,2,0,-9,5,0,-6,152.0425683465065,0,0,0,42,1,5,1,-9,-9,2019,1,1,5,0,37,37,15,1,0,1,0,11.95448845950432,11.95448845950432,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,12,4,1,841.25,0,0,0 +7182,8819,16029,-9,16031,16028,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.3646829132871,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,841.25,0,0,0 +7182,8819,16030,-9,16031,16028,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.2972438992003,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,4,1,841.25,0,0,0 +7182,8819,16031,16028,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,5,8.211228718545843,7.851568458089597,0,2,0,-9,5,0,6,39.30074698132316,0,0,1,36,2,5,1,1,2,2019,1,2,1,0,30,0,15,1,0,1,0,12.8167544397607,12.8167544397607,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.29,49.94,7,1,0,0,12,4,1,841.25,0,0,0 +7183,8820,16032,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,2,8.428424830998619,8.319822265937303,0,3,0,0,0,-9,0,-1028.177486821689,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,38,38,15,1,1,-9,0,11.80845027433782,11.80845027433782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.22,41.55,3,1,0,0,12,4,0,1188,0,0,0 +7184,8821,16033,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,5.550816905538096,5.922044315998246,3,0,0,0,-9,0,-832.60790406967,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.929818065855706,0,0,68.60000000000001,38.64,6,2,0,0,2,2,0,659,0,0,0 +7185,8822,16034,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,5,9.369658354808243,9.040912924979533,0,3,0,0,0,-9,0,-923.4066905618351,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,47,55,15,1,0,-9,0,28.44761524832186,28.44761524832186,0,0,0,0,0,0,0,0,0,0,3.298834173589478,0,0,0,59.43,58.05,7,1,0,0,7,5,1,113,0,0,0 +7186,8823,16035,16037,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,4,9.000294896304606,8.646444348675191,0,2,0,-9,7,0,-2,-3.276460733256463,0,0,0,38,2,3,1,-9,-9,2019,1,2,10,0,50,49,15,1,0,1,0,17.28786245544325,17.28786245544325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,12,4,1,853,0,0,0 +7186,8823,16036,-9,16037,16035,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1173.971878977716,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,4,1,853,0,0,0 +7186,8823,16037,16035,-9,-9,2,1,0,38,1,1,2,0,2,-9,2,1,0,3,7.365811984423412,7.039736285920899,0,2,0,-9,7,0,2,-5.580085228884374,0,0,1,36,1,4,1,-9,-9,2019,1,1,15,3,13,23,15,1,3,1,0,10.80576910202262,10.80576910202262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.43,45.82,4,1,0,0,12,4,1,853,0,0,0 +7186,8823,16038,-9,16037,16035,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.978208536696,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,12,4,1,853,0,0,0 +7187,8824,16039,16040,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,3,7.348530040331736,7.445283815358281,0,1,0,-9,8,0,-5,40.35304289213627,0,0,1,49,2,3,1,2,2,2019,1,1,16,4,18,19,15,1,4,1,0,11.97519538203427,11.97519538203427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,6,1,0,0,5,4,1,468.5,0,0,0 +7187,8824,16040,16039,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,3,8.318680052666366,8.38534716716935,0,1,0,-9,8,0,5,-103.3518983803972,0,0,0,44,2,3,1,3,2,2019,1,2,18,6,46,45,15,1,6,1,0,9.013992042026999,9.013992042026999,0,0,0,0,0,0,0,0,0,0,3.48467685838235,0,0,3,38.17,59.79,3,1,0,0,5,4,1,468.5,0,0,0 +7188,8825,16041,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,2,1,0,4,8.864508114962193,9.421400876829255,7.419881924747284,3,0,0,0,-9,0,-1055.713450574061,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,45,39,15,1,0,-9,0,19.37321061621818,19.37321061621818,0,0,0,0,0,0,0,1,1,0,4.633108070715744,7.583456468003709,0,0,60.13,49.27,5,1,0,0,8,5,0,447,0,0,0 +7189,8826,16042,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-991.7918536505575,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,4,1,0,4,1,0,837,0,0,0 +7190,8827,16043,16046,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,3,8.286592095604503,8.162974684502814,0,2,0,-9,24,0,0,52.59415425851608,0,0,0,47,1,4,1,2,1,2019,1,1,14,2,28,28,15,1,2,1,0,11.08961596894161,11.08961596894161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,45.74,4,1,0,0,12,3,1,1238.75,0,0,0 +7190,8827,16044,-9,16043,16046,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.9009535384802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,1238.75,0,0,0 +7190,8827,16045,-9,16043,16046,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-929.5971717530349,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,12,3,1,1238.75,0,0,0 +7190,8827,16046,16043,-9,-9,1,1,1,47,1,0,2,0,1,-9,1,1,0,4,7.735565633391823,7.748037135473382,0,2,0,-9,24,0,0,9.064058393319304,0,0,0,47,1,3,1,1,3,2019,1,2,11,0,40,40,15,1,0,1,0,6.603828460575662,6.603828460575662,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.48,54.62,3,1,0,0,12,3,1,1238.75,0,0,0 +7191,8828,16047,16048,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,5,8.936677465830458,8.934301664429226,0,1,0,-9,8,0,4,28.5059222190518,0,0,0,29,2,4,1,2,2,2019,1,1,1,0,63,44,15,1,0,1,0,9.193785095722836,9.193785095722836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,7,1,0,0,1,5,1,423.5,0,0,0 +7191,8828,16048,16047,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,4,8.587972231226564,8.537102325794649,0,1,0,-9,8,0,-4,-128.3192140512708,0,1,1,33,2,5,1,1,2,2019,1,2,12,1,37,38,15,1,1,1,0,16.30506373310308,16.30506373310308,0,0,0,0,0,0,0,0,0,0,1.286333000735142,0,0,0,37.1,60.05,6,1,0,0,1,5,1,423.5,0,0,0 +7192,8829,16049,-9,16050,16051,3,1,1,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1032.117597181527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,4,0,731.6666666666666,0,0,0 +7192,8829,16050,16051,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,2,7.276045561603213,7.429123167271254,0,2,0,-9,16,0,-3,138.8090224977718,0,0,0,56,2,3,1,2,2,2019,1,1,13,1,22,20,15,1,1,1,0,7.109010253733669,7.109010253733669,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.66,49.73,6,1,0,0,7,4,0,731.6666666666666,0,0,0 +7192,8829,16051,16050,-9,-9,1,1,1,56,1,0,1,0,2,-9,2,1,0,3,8.806057434684893,8.706356797999423,0,2,0,-9,16,0,3,20.10967254603602,-9,0,0,53,2,2,1,-9,-9,2019,1,2,11,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.851835880205329,0,0,0,50,49,5,1,0,0,7,4,0,731.6666666666666,0,0,0 +7193,8830,16052,16054,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,4,8.225560346823055,8.099596869752048,0,2,0,-9,7,0,2,-79.69810862159657,0,0,0,48,2,5,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,12.91898343810328,12.91898343810328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,4,4,1,381.6666666666667,0,0,0 +7193,8830,16053,-9,16054,16052,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.8405093210192,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,381.6666666666667,0,0,0 +7193,8830,16054,16052,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,5,7.005376451515495,6.805463553311133,0,2,0,-9,7,0,-2,93.92112177056633,0,0,0,50,2,4,1,2,2,2019,1,2,6,0,17,16,15,1,0,1,0,6.945633658457067,6.945633658457067,0,0,0,0,0,0,0,1,1,0,1.923563450224713,0,0,0,60.02,56.42,7,1,0,0,4,4,1,381.6666666666667,0,0,0 +7193,8831,16055,-9,16054,16052,3,1,1,23,2,0,1,0,2,-9,2,1,0,4,7.639800926454839,7.616921445644365,0,3,0,0,0,-9,0,-903.8819117880862,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,39,39,15,1,1,-9,1,7.072515751795199,7.072515751795199,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,4,3,1,198,0,0,0 +7194,8832,16056,16057,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.63471517020198,7.292651108633791,0,1,0,-9,13,0,-1,114.6127867742054,0,0,0,54,2,3,1,2,2,2019,1,1,11,0,33,33,15,1,0,1,0,7.864004366185253,7.864004366185253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.17,50.61,6,1,0,0,2,5,1,283.5,0,0,0 +7194,8832,16057,16056,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.743870345808059,8.856200935612661,0,1,0,-9,10,0,1,-35.94282690273015,0,0,0,53,2,4,1,2,2,2019,1,2,13,1,48,42,15,1,1,1,0,14.02556372327944,14.02556372327944,0,0,0,0,0,0,0,0,0,0,0,0,7.128949806821034,3,45.49,50.81,6,1,0,0,2,5,1,283.5,0,0,0 +7195,8833,16058,-9,-9,-9,1,1,0,50,2,0,3,0,3,-9,2,1,0,4,7.564092714367472,7.464514531884132,0,4,0,0,0,-9,0,-1013.934676098878,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,35,35,15,1,0,-9,0,5.446584595737494,5.446584595737494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,11,2,1,2211,0,0,0 +7195,8833,16059,-9,16058,-9,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.008201236219,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,2,1,2211,0,0,0 +7196,8834,16060,16061,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,2,8.604946503403175,8.290130131988345,0,1,0,-9,8,0,1,-109.2995355236501,0,0,0,56,2,3,1,3,3,2019,1,2,28,11,35,36,15,1,11,1,0,22.67356749253489,22.67356749253489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.31,55.96,5,1,0,0,2,5,1,934,0,0,0 +7196,8834,16061,16060,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.747492960867559,8.957472759091024,0,1,0,-9,8,0,-1,78.46026725726158,0,0,0,57,1,2,1,3,2,2019,1,1,7,0,50,50,15,1,0,1,0,16.05346733833667,16.05346733833667,0,0,0,0,0,0,0,0,0,0,4.298691310739523,0,0,0,56.05,45.76,6,1,0,0,2,5,1,934,0,0,0 +7197,8835,16062,16063,-9,-9,2,1,1,57,1,0,0,0,3,-9,1,1,0,5,8.368967757926091,8.499266221089808,5.018963251842949,1,0,-9,28,0,-4,156.4778759015366,0,0,0,61,3,4,1,3,3,2019,1,1,12,0,70,100,15,1,0,1,0,7.337372808666291,7.337372808666291,0,0,0,0,0,0,0,0,0,0,5.600697901586075,4.94484541428533,0,0,62.39,56.71,4,1,0,0,5,4,1,1079,0,0,0 +7197,8835,16063,16062,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,4,7.014485259157455,7.006561036042084,0,1,0,-9,27,0,4,-57.24861796202377,0,0,0,57,3,5,1,3,3,2019,1,2,12,0,32,30,15,1,0,1,0,4.320100374218743,4.320100374218743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.78,53.03,2,1,0,0,5,4,1,1079,0,0,0 +7198,8836,16064,-9,-9,-9,1,1,0,28,2,0,1,0,1,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1039.747711898291,1,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,24,10,0,37,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.59,62.12,2,2,0,1,7,1,0,894,0,0,0 +7198,8836,16065,-9,16064,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-953.8814307171556,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,7,1,0,894,0,0,0 +7199,8837,16066,-9,16068,16067,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.363473128287,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,5,3,1,525.6,0,0,0 +7199,8837,16067,16068,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,5,9.006660511548153,8.368607757186119,0,2,0,-9,8,0,1,45.90264525277394,0,0,0,39,1,5,1,2,2,2019,1,2,10,0,100,65,15,1,0,1,0,5.757682753157597,5.757682753157597,0,0,0,0,0,0,0,0,0,0,5.441117507407593,0,0,0,48.18,61.8,6,1,0,0,5,3,1,525.6,0,0,0 +7199,8837,16068,16067,-9,-9,2,1,0,39,1,0,3,0,1,-9,2,1,0,5,7.519879796918837,7.16719700748984,0,2,0,-9,8,0,-1,-85.95088800557413,0,0,1,40,1,5,1,-9,-9,2019,1,1,8,0,10,10,15,1,0,1,0,19.21201797006415,19.21201797006415,0,0,0,0,0,0,0,0,0,0,6.302692156775925,0,0,0,54.1,59.11,6,1,0,0,5,3,1,525.6,0,0,0 +7199,8837,16069,-9,16068,16067,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.322468474872,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,5,3,1,525.6,0,0,0 +7199,8837,16070,-9,16068,16067,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.317717423748,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,5,3,1,525.6,0,0,0 +7200,8838,16071,-9,-9,-9,1,1,1,81,2,0,0,0,3,-9,4,3,0,1,0,5.227321079923918,5.389186102956242,3,0,0,0,-9,0,-951.6618794214214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.298208657485561,0,0,42.52,33.62,5,1,0,0,4,2,0,374,0,0,0 +7201,8839,16072,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,5,0,7.667226421549337,7.429057377788197,3,0,0,0,-9,0,-1033.467818608963,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.330168241040102,0,0,59.43,58.05,7,1,0,0,12,3,1,233,0,0,0 +7202,8840,16073,16074,-9,-9,1,1,1,61,1,0,0,0,1,-9,8,3,1,3,0,0,0,1,0,-9,40,0,3,16.49350689271647,0,0,0,58,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.38,24.79,6,4,0,0,8,5,1,816,0,0,0 +7202,8840,16074,16073,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,8.877390358088087,9.175952079298559,0,1,0,-9,10,0,-3,-43.83827894368312,0,0,0,61,1,3,3,-9,-9,2019,2,1,5,0,50,50,15,1,0,3,0,24.28216661551772,24.28216661551772,0,0,0,0,0,0,0,1,1,0,0,0,16.59321610318926,1,60.12,54.8,6,4,0,0,8,5,1,816,0,0,0 +7203,8841,16075,-9,16079,16077,2,1,1,14,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.9818388242342,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,2,2,1,383.2,0,0,0 +7203,8841,16076,-9,16079,16077,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.4018972444786,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,5,1,0,0,2,2,1,383.2,0,0,0 +7203,8841,16077,16079,-9,-9,3,1,1,34,1,1,3,0,2,-9,2,1,0,3,7.63352387556935,7.624968957979057,0,2,0,-9,7,0,-4,1.68493801813052,0,0,0,38,2,4,1,-9,-9,2019,1,1,7,1,35,38,15,1,1,1,0,6.771257535804578,6.771257535804578,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,54.51,7,1,0,0,2,2,1,383.2,0,0,0 +7203,8841,16078,-9,16079,16077,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1063.380278206886,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,2,2,1,383.2,0,0,0 +7203,8841,16079,16077,-9,-9,1,1,0,38,1,1,3,0,2,-9,2,1,0,4,6.57688734123682,6.769737722234417,0,2,0,-9,7,0,4,17.3002605460237,0,0,1,34,2,3,1,2,2,2019,1,3,12,0,12,12,15,1,0,1,0,8.392367189576888,8.392367189576888,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.53,58.91,6,1,0,0,2,2,1,383.2,0,0,0 +7204,8842,16080,16081,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,6.549851152332231,6.304328322347127,1,0,-9,39,0,0,-89.5581505086987,0,0,0,69,1,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.335603266375615,6.762543862498029,0,0,59.14,52.5,6,1,0,0,9,4,1,687.5,0,0,0 +7204,8842,16081,16080,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,8.109372669792673,8.1751186700843,1,0,-9,39,0,0,-35.16474938636417,0,0,0,69,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.691379274861729,7.965671444879703,0,0,51.17,49.39,6,1,0,0,9,4,1,687.5,0,0,0 +7205,8843,16082,-9,16083,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-917.5910937872657,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,836.3333333333334,0,0,0 +7205,8843,16083,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,2,1,0,4,8.188816054890124,7.948541748568536,6.885381686349652,4,0,0,0,-9,0,-988.9711788471185,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,18,20,15,1,0,-9,0,16.81881688947349,16.81881688947349,0,0,0,0,0,0,0,1,1,0,8.519955557036145,0,0,0,49.06,58.64,6,1,0,0,12,3,1,836.3333333333334,0,0,0 +7205,8843,16084,-9,16083,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-921.8805193064231,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,3,1,836.3333333333334,0,0,0 +7206,8844,16085,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1043.818321626919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,36,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.95,47.23,5,3,0,0,8,1,1,235,0,0,0 +7207,8845,16086,16087,-9,-9,2,1,0,49,1,0,2,0,1,-9,1,1,0,5,8.133248363494033,8.426252153884697,0,2,0,-9,8,0,-8,129.2484107857603,0,0,0,57,1,5,1,2,2,2019,1,1,9,0,35,36,15,1,0,1,0,12.86387756099376,12.86387756099376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,5,1,0,0,12,3,1,712,0,0,0 +7207,8845,16087,16086,-9,-9,1,1,1,57,1,0,2,0,1,-9,2,1,0,5,7.907683330033676,7.962989883321446,0,2,0,-9,8,0,8,-21.30657410911617,0,0,0,49,1,5,1,2,2,2019,1,2,6,0,47,40,15,1,0,1,0,5.864253925445849,5.864253925445849,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,12,3,1,712,0,0,0 +7208,8846,16088,-9,16089,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,4,8.020774336526364,8.027961828044305,0,3,0,0,0,-9,0,-998.6568616218661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,45,15,1,1,-9,1,10.91020597655364,10.91020597655364,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,55,6,1,0,0,8,4,0,2591,0,0,0 +7208,8847,16089,-9,-9,-9,2,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1037.04916013939,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,1.130184143356662,0,5.717668796536953,0,0,45.32409474685142,1,1,0,0,0,0,0,58.64,20.39,6,1,0,0,8,1,0,200,0,0,0 +7209,8848,16090,16093,-9,-9,2,1,0,32,1,1,3,0,2,-9,2,1,0,4,6.202007083445335,5.936650318219908,0,2,0,-9,5,-9,-7,-60.84731277470317,-9,0,1,39,2,3,1,2,2,2019,1,1,11,0,16,0,15,1,0,1,0,3.827484414767439,3.827484414767439,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,6,1,0,0,12,3,0,677,0,0,0 +7209,8848,16091,-9,16090,16093,4,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-984.1381521260492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,0,677,0,0,0 +7209,8848,16092,-9,16090,16093,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-920.7944265716849,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,677,0,0,0 +7209,8848,16093,16090,-9,-9,1,1,1,39,1,1,3,0,2,-9,2,1,0,3,8.015443306818028,7.805427134463681,0,2,0,-9,5,-9,7,61.12820082292431,-9,0,0,32,2,4,1,2,2,2019,1,2,19,7,45,0,15,1,7,1,0,8.125335978911949,8.125335978911949,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.72,47.42,4,1,0,0,12,3,0,677,0,0,0 +7210,8849,16094,16095,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.703945238886944,8.291867861919064,7.618542465695628,1,0,-9,23,0,1,-17.14303586717222,0,0,0,52,2,2,1,2,2,2019,1,1,17,6,35,36,15,1,6,1,0,4.813533171605092,4.813533171605092,0,0,0,0,0,0,0,0,0,0,6.175934944174313,8.092728188914277,0,0,36.2,60.58,4,1,0,0,11,5,1,190,0,0,0 +7210,8849,16095,16094,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,7.985250743298174,8.147661241198774,0,1,0,-9,23,0,-1,42.00553225295037,0,0,0,53,2,4,1,2,2,2019,1,2,10,1,37,38,15,1,1,1,0,11.05085678767539,11.05085678767539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.47,46.95,5,1,0,0,11,5,1,190,0,0,0 +7211,8850,16096,-9,16097,16098,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-959.8758305572588,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,4,1,304.5,0,0,0 +7211,8850,16097,16098,-9,-9,2,1,0,44,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,4,0,5,-103.289066326316,0,0,1,39,1,4,1,-9,2,2019,3,1,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.928301177775882,3,44.08,59.33,5,1,0,0,7,4,1,304.5,0,0,0 +7211,8850,16098,16097,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,4,8.73186832808528,8.717004852274068,0,2,0,-9,4,0,-5,-71.19847568260356,0,0,0,44,2,4,3,2,2,2019,2,2,18,6,43,45,15,1,6,3,0,20.13147586530354,20.13147586530354,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.87,61.03,5,1,0,0,7,4,1,304.5,0,0,0 +7211,8850,16099,-9,16097,16098,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-850.7770808924022,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,304.5,0,0,0 +7212,8851,16100,16101,-9,-9,2,1,1,31,1,1,2,0,1,-9,2,1,0,4,8.837569744052921,9.185178373615738,0,2,0,-9,5,0,0,-89.08918024981291,-9,0,0,31,1,4,1,-9,-9,2019,1,1,7,0,41,0,15,1,0,1,0,17.46209394661497,17.46209394661497,0,0,0,0,0,0,0,1,1,0,9.338768235571543,0,0,0,57.16,56.15,7,1,0,0,13,4,0,690.5,0,0,0 +7212,8851,16101,16100,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,4,7.8946881916628,7.926855111034028,0,2,0,-9,5,0,0,-36.60688594993313,0,0,1,31,1,4,1,2,2,2019,1,2,11,0,21,0,15,1,0,1,0,13.35688020128071,13.35688020128071,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.22,59.39,6,1,0,0,13,4,0,690.5,0,0,0 +7212,8851,16102,-9,16101,16100,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.809423159703,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,13,4,0,690.5,0,0,0 +7212,8851,16103,-9,16101,16100,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.9243844534532,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,4,0,690.5,0,0,0 +7213,8852,16104,-9,-9,-9,1,1,1,26,2,1,2,0,2,-9,2,1,0,2,7.409837741440393,6.777803708848999,0,4,0,-9,0,0,0,-952.3678326351235,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,20,24,15,1,9,-9,0,6.863912638920912,6.863912638920912,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.86,44.23,4,1,0,0,6,2,0,482,0,0,0 +7213,8853,16105,-9,-9,-9,2,1,0,29,3,1,2,0,2,-9,2,1,0,2,7.935909019621933,8.083111489133918,0,4,0,-9,0,1,0,-852.8641630960706,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,58,20,15,1,12,-9,0,7.111667065071002,7.111667065071002,0,0,0,0,0,0,0,1,1,0,1.258905191739739,0,0,0,19.2,30.74,1,1,0,0,6,3,0,1817,0,0,0 +7213,8853,16106,-9,16105,-9,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-892.4495896888775,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,0,1817,0,0,0 +7213,8853,16107,-9,16105,16104,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1012.206544788374,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,0,1817,0,0,0 +7214,8854,16108,16110,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,5,7.875805316319787,7.744612462509997,0,2,0,-9,8,0,9,-6.644025646245348,0,0,0,40,1,4,1,-9,-9,2019,1,1,11,4,38,38,15,1,4,1,0,8.612434689374997,8.612434689374997,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.72,58.13,7,4,0,0,8,4,1,559.25,0,0,0 +7214,8854,16109,-9,16110,16108,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.534170071782,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,4,1,559.25,0,0,0 +7214,8854,16110,16108,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.321342284750015,8.796021482813368,0,2,0,-9,19,0,0,99.13363152987407,0,0,1,49,2,5,1,1,2,2019,1,2,10,1,25,26,15,1,1,1,0,24.58932633661108,24.58932633661108,0,0,0,0,0,0,0,1,1,0,.5574961115087776,0,0,0,49.43,56.8,6,4,0,0,8,4,1,559.25,0,0,0 +7214,8854,16111,-9,16110,16108,5,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.5437995820963,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,1,559.25,0,0,0 +7215,8855,16112,16113,-9,-9,2,1,0,27,1,1,1,0,2,-9,6,3,0,5,0,0,0,2,0,-9,5,0,-12,49.21410518395867,0,1,1,39,2,5,1,-9,-9,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,58.83,7,3,0,0,5,2,1,288,0,0,0 +7215,8855,16113,16112,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,5,5.098150009612911,5.344860266870786,0,2,0,-9,5,0,12,55.33712128929265,0,0,0,27,2,5,3,3,2,2019,2,2,4,1,2,51,15,1,1,3,0,10.8096111929657,10.8096111929657,0,0,0,0,0,0,0,1,1,0,6.423914381437439,0,0,0,43.57,43.17,1,3,0,0,5,2,1,288,0,0,0 +7215,8855,16114,-9,16112,16113,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.0974747584579,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,3,0,0,5,2,1,288,0,0,0 +7216,8856,16115,16116,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,3,8.34418189028027,8.563423606243742,5.612037626321531,1,0,-9,11,0,1,-29.34662904799483,0,0,0,63,2,3,1,3,3,2019,1,2,12,2,41,41,15,1,2,1,0,14.69041798705459,14.69041798705459,0,0,0,0,0,0,0,1,1,0,0,5.273742913899379,1.605989767790309,3,49.84,39.42,5,1,0,0,9,4,1,606,0,0,0 +7216,8856,16116,16115,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,.8610078253925944,.6905639530160275,0,1,0,-9,11,0,-1,-88.81098994459077,0,0,0,64,2,3,1,3,3,2019,1,1,6,0,30,30,15,1,0,1,0,.0053992056913063,.0053992056913063,0,0,0,0,0,0,0,1,1,0,0,0,4.47210326697166,3,61.19,33.88,6,1,0,0,9,4,1,606,0,0,0 +7217,8857,16117,16118,-9,-9,1,1,0,63,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,38,0,-6,0,0,0,0,69,3,1,3,-9,-9,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,114.3639869913371,1,42.46,41.62,6,1,1,0,9,1,0,1598,0,0,0 +7217,8857,16118,16117,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,38,0,6,0,0,0,0,63,3,2,3,-9,-9,2019,4,1,16,3,0,0,15,4,3,3,0,0,0,1,0,132.2011233713085,0,0,0,0,1,1,0,0,0,0,0,32.33,21.69,5,1,0,0,9,1,0,1598,0,0,0 +7218,8858,16119,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,6.831499182532168,6.522031984107459,3,0,0,0,-9,0,-1077.42389772626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.840101019608404,0,0,36.21,50.78,5,1,0,0,13,2,1,87,0,0,0 +7219,8859,16120,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-897.5012347898859,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,30.1,3,1,0,0,12,1,0,614,0,0,0 +7220,8860,16121,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,5,0,7.580099580275298,7.429197161378474,3,0,0,0,-9,0,-976.9541986927643,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,0,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.995593206015906,7.665988204618002,0,0,59.43,58.05,7,1,0,0,5,3,1,775,0,0,0 +7221,8861,16122,-9,16125,16124,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.988884210492,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,5,0,961.75,0,0,0 +7221,8861,16123,-9,16125,16124,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.023618648898,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,6,5,0,961.75,0,0,0 +7221,8861,16124,16125,-9,-9,2,1,1,47,1,1,2,0,1,-9,2,1,0,5,9.683038207068245,9.240524517857867,0,2,0,-9,8,0,6,27.99417912230214,0,0,0,41,1,4,1,-9,-9,2019,1,1,8,0,40,30,15,1,0,1,0,38.76317488518785,38.76317488518785,0,0,0,0,0,0,0,1,1,0,3.282521523619881,0,0,0,57.06,57.76,3,1,0,0,6,5,0,961.75,0,0,0 +7221,8861,16125,16124,-9,-9,1,1,0,41,1,1,2,0,1,-9,2,1,0,4,8.76551169908225,8.553546172372922,0,2,0,-9,8,0,-6,6.699770179032607,0,0,1,47,1,5,1,-9,-9,2019,1,2,11,0,21,21,15,1,0,1,0,21.14601386384701,21.14601386384701,0,0,0,0,0,0,0,1,1,0,4.11634622151762,0,0,0,49.46,56.91,6,2,0,0,6,5,0,961.75,0,0,0 +7222,8862,16126,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,5,9.696210407270708,9.797597547021294,0,3,0,0,0,-9,0,-999.0475995763088,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,57,80,15,1,0,-9,0,31.54619103018351,31.54619103018351,0,0,0,0,0,0,0,0,0,0,5.952667696711118,0,15.04410443024482,3,62.39,56.71,7,1,0,0,12,5,1,5051,0,0,0 +7223,8863,16127,16128,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,6.899543620416725,6.705320866650236,1,0,-9,48,0,-3,-33.56235261070613,0,0,0,67,2,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.214138953675905,6.55984559878444,0,0,50.72,46.82,5,1,0,0,5,2,1,319,0,0,0 +7223,8863,16128,16127,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,6.841190455602333,6.586253766486253,1,0,-9,48,0,3,.1074322180453542,0,0,0,64,1,3,3,3,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.808585538396394,7.179785842126713,0,0,59.29,49.68,6,1,0,0,5,2,1,319,0,0,0 +7224,8864,16129,16130,-9,-9,1,1,1,63,1,0,1,0,2,-9,1,1,0,4,0,5.696579080724437,5.236515510482073,2,0,-9,6,0,11,71.75173073740439,0,0,0,52,1,5,1,3,3,2019,1,2,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.387569486160382,5.577705116169242,0,0,55.1,47.5,6,1,0,0,10,4,1,544.5,0,0,0 +7224,8864,16130,16129,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,5,8.372661296673819,8.526386306179207,0,2,0,-9,6,0,-11,-24.27305264556265,0,0,0,63,2,4,1,3,3,2019,1,1,7,0,30,30,15,1,0,1,0,19.13462538576655,19.13462538576655,0,0,0,0,0,0,0,1,1,0,2.905864318291154,0,0,0,62.39,56.71,7,1,0,0,10,4,1,544.5,0,0,0 +7225,8865,16131,16132,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,50,0,0,0,0,0,0,72,2,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.880808846723509,0,0,0,50.6,53.68,6,1,0,0,13,1,1,316,0,0,0 +7225,8865,16132,16131,-9,-9,2,1,1,72,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,7,0,0,0,-9,0,0,72,3,4,3,-9,-9,2019,2,1,9,0,30,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,6,1,0,0,13,1,1,316,0,0,0 +7226,8866,16133,-9,16134,16136,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1172.02551320595,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,1358.25,0,0,0 +7226,8866,16134,16136,-9,-9,2,1,0,41,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,13,0,-1,-89.83575947966118,0,0,1,42,1,4,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.509003201554945,0,0,0,54.1,59.11,6,1,0,0,9,4,1,1358.25,0,0,0 +7226,8866,16135,-9,16134,16136,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.9355320962676,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,1358.25,0,0,0 +7226,8866,16136,16134,-9,-9,1,1,1,42,1,0,2,0,1,-9,1,1,0,4,9.052636490803168,9.052058416374789,0,2,0,-9,13,0,1,89.29879083621978,0,0,0,41,1,5,3,1,1,2019,2,2,20,8,50,50,15,1,8,3,0,22.32482236467936,22.32482236467936,0,0,0,0,0,0,0,1,1,0,8.478045638032585,0,0,0,27.23,62.9,5,1,0,0,9,4,1,1358.25,0,0,0 +7227,8867,16137,16138,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,7.043184739149012,7.113203898531042,1,0,-9,63,0,2,163.6935636663306,0,0,0,79,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.698984679555844,7.117760944105822,0,0,34.47,18.35,6,1,0,0,7,2,1,875.5,0,0,0 +7227,8867,16138,16137,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,63,0,-2,42.8897733961396,0,0,0,81,3,2,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.94,21.61,4,1,0,0,7,2,1,875.5,0,0,0 +7228,8868,16139,-9,-9,-9,1,1,1,80,2,0,0,0,2,-9,4,3,0,2,0,6.752236239773862,6.815132032858688,3,0,0,0,-9,0,-1058.127075862774,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.529353426823764,0,3,63.82,30.39,6,1,0,0,12,2,1,820,0,0,0 +7228,8869,16140,-9,-9,-9,2,1,1,87,2,0,0,0,2,-9,4,3,0,2,0,6.62134950754553,6.331148396831815,3,0,0,0,-9,0,-1088.210626254598,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.456628628950953,0,1,1,0,0,6.41367964559051,0,0,46.81,39.38,5,1,0,0,12,2,1,218,0,0,0 +7228,8870,16141,-9,-9,-9,3,1,0,82,2,0,0,0,3,-9,4,3,0,3,0,3.635199206210018,3.273203809840939,3,0,0,0,-9,0,-935.3676663579672,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.328619616115418,0,0,40.13,41.02,3,1,0,0,12,1,1,533,0,0,0 +7229,8871,16142,16143,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,4.996797343565268,7.637352398344921,6.908195311645649,1,0,-9,8,0,4,-43.03515553346809,0,0,0,64,1,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.550538600094228,6.214122963057495,0,3,57.16,56.15,6,1,0,0,13,4,1,513,0,0,0 +7229,8871,16143,16142,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,7.869010382515041,8.083598119122453,1,0,-9,8,0,-4,36.97928945521494,0,0,0,68,2,4,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.354232977317753,8.871494557717906,3,57.16,56.15,6,1,0,0,13,4,1,513,0,0,0 +7230,8872,16144,16145,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,7.264681218017571,7.517923663666648,1,0,-9,9,0,0,-39.33861194552122,0,0,0,62,2,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.429001356747889,0,0,49.04,55.86,6,1,0,0,12,4,1,728.5,0,0,0 +7230,8872,16145,16144,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,7.918565377692706,7.83643292510942,1,0,-9,9,0,0,17.93922546728466,0,0,0,62,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.267184907034699,8.129536979737027,0,0,54.37,54.8,5,1,0,0,12,4,1,728.5,0,0,0 +7231,8873,16146,-9,16149,16147,4,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.387705524093,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,481.25,0,0,0 +7231,8873,16147,16149,-9,-9,1,1,1,37,1,2,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,7,0,9,64.81877088304192,0,0,0,28,1,4,1,2,2,2019,1,2,7,0,60,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,3,1,481.25,0,0,0 +7231,8873,16148,-9,16149,16147,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.500676752694,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,1,481.25,0,0,0 +7231,8873,16149,16147,-9,-9,2,1,0,28,1,2,2,0,1,-9,2,1,0,4,8.454062036116643,8.067392544270355,0,2,0,-9,7,0,0,18.95402416828009,0,1,1,37,2,4,1,2,2,2019,1,1,8,0,28,30,15,1,0,1,0,17.68908810446928,17.68908810446928,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,7,1,0,0,4,3,1,481.25,0,0,0 +7232,8874,16150,16151,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,5,7.992713075142594,8.307253419378124,0,2,0,-9,17,0,-12,33.33627190509733,0,0,1,51,1,4,1,1,1,2019,1,2,7,0,36,26,15,1,0,1,0,9.687064114806876,9.687064114806876,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,6,1,0,0,2,2,1,504.25,0,0,0 +7232,8874,16151,16150,-9,-9,2,1,1,51,1,0,2,0,1,-9,1,1,0,4,0,0,0,2,0,-9,17,0,12,45.27746276041965,0,0,0,39,1,5,1,3,2,2019,1,1,10,0,48,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.616416816964537,3,46.98,59.35,5,1,0,0,2,2,1,504.25,0,0,0 +7232,8874,16152,-9,16150,16151,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.376887376606,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,1,504.25,0,0,0 +7232,8874,16153,-9,16150,16151,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.8521358382893,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,1,504.25,0,0,0 +7233,8875,16154,-9,16156,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-883.3472598270591,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,1,0,389.6666666666667,0,0,0 +7233,8875,16155,-9,16156,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1013.604244637221,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,1,0,389.6666666666667,0,0,0 +7233,8875,16156,-9,-9,-9,1,1,0,38,2,0,2,0,2,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1125.624855263408,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.51980148152701,3,35.79,57.01,5,1,0,1,6,1,0,389.6666666666667,0,0,0 +7234,8876,16157,16158,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,7.700649490530971,7.463548683393157,1,0,-9,47,0,1,27.29416219188452,0,0,0,69,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.2982972454563899,7.366320962380835,0,0,60.12,54.8,6,1,0,0,9,3,1,2028.5,0,0,0 +7234,8876,16158,16157,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,7.253865528633469,7.347690712730553,1,0,-9,47,0,-1,68.52016189317084,0,0,0,70,3,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,7.686168394543611,4.389043658315524,0,0,0,13.50463711626117,1,1,0,1.974465283016568,7.114180281188991,0,0,58.32,50.22,7,1,0,0,9,3,1,2028.5,0,0,0 +7235,8877,16159,-9,-9,-9,1,1,0,52,3,1,1,0,2,-9,2,1,0,4,7.394146305111347,7.719149382638416,0,4,0,0,0,-9,0,-1062.919440053306,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,16,16,15,1,0,-9,0,13.72609897858414,13.72609897858414,0,0,0,0,0,0,0,1,1,0,3.316345242291541,0,0,0,42.95,61.24,2,1,0,0,9,2,1,757,0,0,0 +7235,8878,16160,16162,-9,-9,3,1,1,21,1,1,1,0,2,-9,1,1,0,3,8.283050475278111,8.343174492528297,0,2,0,-9,1,-9,0,-128.0866503389295,-9,1,0,21,2,3,1,-9,-9,2019,1,2,10,0,50,0,15,1,0,1,0,7.845143569462093,7.845143569462093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.48,46.97,5,1,0,0,9,3,1,833.3333333333334,0,0,0 +7235,8878,16161,-9,16162,16160,4,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1151.050400848313,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,1,833.3333333333334,0,0,0 +7235,8878,16162,16160,16159,-9,2,1,0,21,1,1,1,0,2,-9,2,1,0,3,7.248097158162121,7.043247620504044,0,2,0,1,1,-9,0,-99.46293879940225,0,1,1,21,2,3,1,2,-9,2019,1,3,7,0,16,39,15,1,0,1,0,8.2537397066222,8.2537397066222,0,0,0,0,0,0,0,1,1,0,0,0,124.0022556170884,3,54.9,54.53,6,1,0,0,9,3,1,833.3333333333334,0,0,0 +7236,8879,16163,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,2,1,0,4,8.404621458634812,8.320468261380769,0,3,0,-9,0,-9,0,-1023.924460683321,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,39,0,15,1,0,-9,0,14.19090005007757,14.19090005007757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.38,56.81,4,1,0,0,5,4,1,643,0,0,0 +7237,8880,16164,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,3,0,8.444029650952546,8.583556527402193,3,0,0,0,-9,0,-868.739088741887,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.456029606018583,8.502513145327089,1.909635513330773,3,49.26,54.61,6,1,0,0,8,4,1,858,0,0,0 +7237,8881,16165,-9,-9,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,3,8.371798469312401,8.337344131920112,0,3,0,-9,0,-9,0,-999.467626311449,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,45,0,15,1,1,-9,0,10.36593038535057,10.36593038535057,0,0,0,0,0,0,0,1,1,0,1.195511448716323,0,0,0,53.14,45.74,3,1,0,0,8,4,1,709,0,0,0 +7238,8882,16166,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,2,1,0,4,8.862073051040024,8.887417267962824,7.313078581755548,3,0,0,0,-9,0,-923.8300489611236,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,45,15,1,0,-9,0,17.06012723259287,17.06012723259287,0,0,0,0,0,0,0,1,1,0,7.953532495901591,7.285896067148915,0,0,50.09,54.06,6,1,0,0,12,5,1,954,0,0,0 +7239,8883,16167,-9,16168,-9,4,1,1,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1057.506887243984,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,6,3,1,358,0,0,0 +7239,8883,16168,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,4,7.565970252414651,8.172711653497815,7.086451469156762,4,0,0,0,-9,0,-1080.433839201135,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,22,22,15,1,1,-9,0,12.26604968605786,12.26604968605786,0,0,0,0,0,0,0,1,1,0,7.085449180978039,0,0,0,52.97,53.97,6,1,0,1,6,3,1,358,0,0,0 +7239,8884,16169,-9,16168,-9,2,1,1,22,2,0,2,0,2,-9,1,1,0,4,7.921317366017464,7.895921804313076,0,3,0,0,0,-9,0,-986.7093975383266,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,30,26,15,1,1,-9,1,10.32555242217329,10.32555242217329,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,6,3,1,887,0,0,0 +7239,8885,16170,-9,16168,-9,3,1,0,18,2,0,2,1,2,0,7,2,0,3,0,5.922416463669598,6.005952431919889,3,0,0,0,-9,0,-1054.745934011504,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.05251083529305,0,0,0,53.1,52.62,6,1,0,0,6,3,1,801,0,0,0 +7240,8886,16171,16173,-9,-9,1,1,1,28,1,1,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,6,0,2,0,0,1,0,26,2,2,3,-9,-9,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.30613317636,2,49.04,55.86,4,1,1,0,7,1,0,334.3333333333333,0,0,0 +7240,8886,16172,-9,16173,16171,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.1328607513508,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,1,0,334.3333333333333,0,0,0 +7240,8886,16173,16171,-9,-9,2,1,0,26,1,1,1,0,2,-9,3,3,0,2,0,0,0,2,0,-9,6,0,-2,0,0,1,1,28,3,3,3,-9,-9,2019,4,1,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,112.6760649931777,3,33.61,36.14,2,1,1,0,7,1,0,334.3333333333333,0,0,0 +7241,8887,16174,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,3,8.025135343479278,7.988809507549526,0,3,0,0,0,-9,0,-1081.478136775642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,36,36,15,1,0,-9,0,7.343471482878452,7.343471482878452,0,0,0,0,0,0,0,0,0,0,4.164828529945738,0,0,0,57.33,53.46,6,1,0,0,8,3,0,256,0,0,0 +7242,8888,16175,16176,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,6.354985361604596,7.646592534340115,7.458614765071455,1,0,-9,8,0,8,4.132644219704358,0,0,0,53,1,4,1,3,3,2019,1,2,22,10,10,0,15,1,10,1,0,6.392418076125208,6.392418076125208,0,0,0,0,0,0,0,1,1,0,1.960747208727991,7.843799549096268,0,0,32.6,54.09,5,1,0,0,9,4,1,1803.5,0,0,0 +7242,8888,16176,16175,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,4,8.319160960094223,8.243347474179252,0,1,0,-9,8,0,-8,93.04904963277045,0,0,0,61,2,3,1,3,3,2019,1,1,21,10,29,29,15,1,10,1,0,14.11151939903008,14.11151939903008,0,0,0,0,0,0,0,1,1,0,4.306663321255247,0,0,0,35.38,63.46,6,1,0,0,9,4,1,1803.5,0,0,0 +7242,8889,16177,-9,16176,16175,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.263779002952292,8.381169203139144,0,3,0,0,0,-9,0,-1017.9800541538,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,50,60,15,1,0,-9,1,9.348223086318779,9.348223086318779,0,0,0,0,0,0,0,1,1,0,3.653726077825316,0,0,0,51.24,58.84,5,1,0,0,9,4,1,199,0,0,0 +7242,8890,16178,-9,16176,16175,4,1,1,23,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1060.348677876442,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,36,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.33,38.03,1,1,1,1,9,1,1,1539,0,0,0 +7243,8891,16179,16180,-9,-9,1,1,0,64,1,0,0,0,3,-9,3,3,0,4,7.684191692538574,7.821837772922018,0,1,0,-9,8,0,-10,15.03220461074942,0,0,0,74,3,1,3,3,3,2019,4,2,11,0,34,2,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.158926835181072,0,72.7452542243351,2,45.81,58.99,2,1,1,0,6,3,1,626.5,0,0,0 +7243,8891,16180,16179,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,10,-36.92453866677833,0,0,0,64,3,4,3,-9,-9,2019,4,1,19,6,0,0,15,4,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.615932861013533,0,0,0,26.63,42.21,6,1,0,0,6,3,1,626.5,0,0,0 +7244,8892,16181,16182,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.28644579754214,8.324668146304646,0,1,0,-9,32,0,0,41.65899606665,0,0,0,52,2,3,1,2,2,2019,1,2,2,0,40,38,15,1,0,1,0,8.329130973977721,8.329130973977721,0,0,0,0,0,0,0,0,0,0,1.97038117108785,0,22.9914825938819,3,53.59,49.64,6,1,0,0,5,4,1,732.5,0,0,0 +7244,8892,16182,16181,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.536465494088027,7.228778992751979,0,1,0,-9,32,0,0,-159.0465665032086,0,0,0,52,2,3,1,2,3,2019,1,1,11,1,22,22,15,1,1,1,0,8.334394792641291,8.334394792641291,0,0,0,0,0,0,0,0,0,0,3.750729912191844,0,1.021422236596665,3,54.51,50.6,6,1,0,0,5,4,1,732.5,0,0,0 +7245,8893,16183,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,0,6.641932203976281,6.576222166291876,3,0,0,0,-9,0,-1016.907775999749,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,26.5217492114802,0,0,0,1,1,0,.0748435569043109,6.283908898130319,0,0,39.37,24.14,5,1,0,0,7,2,1,1552,0,0,0 +7246,8894,16184,16185,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,4,7.951266364130517,7.602949361103447,0,1,0,-9,27,0,2,43.67056076601047,0,0,0,52,2,5,1,-9,-9,2019,1,1,6,0,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,2,3,1,463,0,0,0 +7246,8894,16185,16184,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,5,6.843269168738137,6.883943018539727,0,1,0,-9,28,0,-2,-6.100157296759318,0,0,0,54,2,4,1,3,3,2019,1,2,6,0,17,0,15,1,0,1,0,5.419686032085727,5.419686032085727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,2,3,1,463,0,0,0 +7246,8895,16186,-9,16185,16184,3,1,1,19,2,0,0,1,2,0,7,2,0,5,7.237943883819561,7.045719686331415,0,3,0,0,0,-9,0,-919.7863721148707,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,0,0,2,2,1,317,0,0,0 +7247,8896,16187,-9,-9,-9,1,1,0,50,2,0,1,0,2,-9,7,2,0,4,8.031925879299459,8.142555828431568,0,4,0,0,0,-9,0,-1052.880233211074,1,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,44,39,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.68,54.5,2,1,0,0,11,3,0,770,0,0,0 +7248,8897,16188,16189,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,4,8.814122504879505,8.356020155611267,0,1,0,-9,5,0,7,-28.46030045554287,0,0,1,28,2,3,3,2,3,2019,2,2,12,2,44,41,15,1,2,3,0,12.17755735278936,12.17755735278936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,6,1,0,0,10,5,0,890,0,0,0 +7248,8897,16189,16188,-9,-9,2,1,1,28,1,0,0,0,2,-9,11,3,0,3,7.982272970390662,8.271351259456173,0,1,0,-9,5,0,-7,3.811174063204618,0,1,0,35,2,4,1,-9,-9,2019,3,1,5,0,41,42,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,6,1,0,0,10,5,0,890,0,0,0 +7249,8898,16190,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,17,0,7,0,1,0,0,-9,-9,-9,-9,1,1,2019,-9,2,11,4,0,30,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.34,48.7,6,1,0,0,11,1,1,231,0,0,0 +7250,8899,16191,-9,16192,16193,4,1,1,17,2,0,2,0,2,-9,3,3,0,4,5.298939559886951,5.365308507444924,0,2,0,0,0,-9,0,-1061.31589098276,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.74,50.77,6,1,1,0,10,4,1,550.75,0,0,0 +7250,8899,16192,16193,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,5,7.657089102908702,7.983453834076935,0,2,0,-9,10,0,-2,-86.84086282185122,0,0,0,50,2,3,1,3,2,2019,1,2,9,0,20,20,15,1,0,1,0,14.88818392370267,14.88818392370267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,1,0,0,10,4,1,550.75,0,0,0 +7250,8899,16193,16192,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,3,8.823125218526632,8.851818238917559,0,2,0,-9,10,0,2,142.9712532697365,0,0,0,48,2,5,1,2,2,2019,1,1,4,0,62,50,15,1,0,1,0,13.63476907655218,13.63476907655218,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.51,41.82,2,1,0,0,10,4,1,550.75,0,0,0 +7250,8899,16194,-9,16192,16193,5,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.439924200062,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,550.75,0,0,0 +7250,8900,16195,-9,16192,16193,3,1,0,19,2,0,2,0,1,-9,2,1,0,5,6.968625159084628,7.105183838556823,0,3,0,0,0,-9,0,-1085.133486013656,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,43,37,15,1,0,-9,1,3.071919047889592,3.071919047889592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,10,2,1,2220,0,0,0 +7251,8901,16196,16199,-9,-9,1,1,0,42,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,13,0,-2,20.35730968795398,0,0,1,44,1,4,1,-9,-9,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.96,36.39,7,1,0,0,12,5,1,1142,0,0,0 +7251,8901,16197,-9,16196,16199,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.7824987667384,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,1142,0,0,0 +7251,8901,16198,-9,16196,16199,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.363955175273,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,1142,0,0,0 +7251,8901,16199,16196,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,4,9.563613261863209,9.537418907610412,0,2,0,-9,7,0,2,52.97999363862108,0,0,0,42,2,5,3,-9,-9,2019,2,1,9,0,35,40,15,1,1,3,0,49.05360539534311,49.05360539534311,0,0,0,0,0,0,0,0,0,0,6.203648034185917,0,0,0,51,56,5,1,0,0,12,5,1,1142,0,0,0 +7251,8901,16200,-9,16196,16199,3,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-935.1888481089621,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,1,0,0,12,5,1,1142,0,0,0 +7252,8902,16201,16202,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,3,8.349447926063204,7.877149979887811,0,2,0,-9,10,0,0,-68.52196638004392,0,0,0,49,2,4,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,11.2042436292966,11.2042436292966,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,5,1,0,0,13,4,1,2871.5,0,0,0 +7252,8902,16202,16201,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.639926321731076,8.747917360751085,0,2,0,-9,10,0,0,-191.1152657695702,0,0,0,49,2,3,1,3,2,2019,1,2,7,0,40,40,15,1,0,1,0,15.63099617121334,15.63099617121334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,5,1,0,0,13,4,1,2871.5,0,0,0 +7252,8903,16203,-9,16201,16202,3,1,1,18,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1049.047341189987,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,13,4,1,596,0,0,0 +7253,8904,16204,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,5,0,5.635256108093332,5.753383776230282,3,0,0,0,-9,0,-957.9401711315951,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,38,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.614168725467511,0,0,62.57,51.16,7,1,0,0,10,2,0,228,0,0,0 +7254,8905,16205,16206,-9,-9,1,1,0,33,1,0,1,0,2,-9,2,1,0,2,7.832943217249525,7.849386543921097,0,2,0,-9,8,0,-7,-31.79039972970722,0,0,1,40,2,4,1,2,2,2019,1,3,19,7,60,55,15,1,7,1,0,6.453962246282532,6.453962246282532,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.48,38.97,5,1,0,1,4,4,0,796,0,0,0 +7254,8905,16206,16205,-9,-9,3,1,1,40,1,0,1,0,2,-9,2,1,0,4,8.073366100547188,8.115000455780081,0,2,0,-9,8,0,7,115.3841892271712,0,0,0,33,2,2,1,-9,-9,2019,1,1,7,1,45,12,15,1,1,1,0,8.609414506217698,8.609414506217698,0,0,0,0,0,0,0,1,1,0,.8612283854838646,0,0,0,54.5,36.68,6,1,0,0,4,4,0,796,0,0,0 +7255,8906,16207,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,6,0,-8,0,0,0,1,-9,-9,-9,-9,2,3,2019,4,2,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.23172558430453,1,35.89,53.83,7,1,0,0,13,1,0,222,0,0,0 +7255,8907,16208,-9,-9,-9,2,1,0,45,2,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,6,0,8,0,0,0,0,-9,-9,-9,-9,-9,-9,2019,4,1,31,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.28,22.89,4,1,0,0,13,1,0,845,0,0,0 +7255,8908,16209,-9,16208,-9,3,1,1,20,2,0,0,0,2,-9,2,1,0,3,7.535047071329067,7.712716921365944,0,3,0,0,0,-9,0,-931.4820788867003,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,36,0,15,1,0,-9,1,5.722840115700761,5.722840115700761,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,43.81,6,1,0,0,13,3,0,626,0,0,0 +7256,8909,16210,16211,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,3,7.864491962920463,7.775544037446424,0,2,0,-9,20,0,-1,145.8899379590102,0,0,0,46,2,1,2,2,-9,2019,2,1,14,2,42,42,15,1,2,2,0,6.860899215968124,6.860899215968124,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,51,6,1,0,1,2,3,1,687.3333333333334,0,0,0 +7256,8909,16211,16210,-9,-9,1,1,0,46,1,0,1,0,2,-9,7,2,0,1,0,0,0,2,0,-9,13,0,1,93.09966513216848,1,0,0,45,2,3,1,2,-9,2019,3,2,13,1,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,26.45,4,1,0,1,2,3,1,687.3333333333334,0,0,0 +7256,8909,16212,-9,16211,16210,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.4500318589203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,3,1,687.3333333333334,0,0,0 +7256,8910,16213,-9,16211,16210,3,1,0,21,2,0,1,0,2,1,2,1,0,2,6.999176217245894,6.879516812223355,0,3,0,0,0,-9,0,-1045.821481462238,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,28,10,20,0,15,1,10,-9,1,6.422132956320742,6.422132956320742,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.48,49.04,4,1,0,1,2,2,1,278,0,0,0 +7257,8911,16214,16216,-9,-9,2,1,1,45,1,0,4,0,2,-9,2,1,0,4,7.809156352291308,7.983104392802564,0,2,0,-9,19,0,-2,-24.81552639283273,0,0,0,47,2,3,3,-9,-9,2019,2,1,9,0,30,30,15,1,1,3,0,10.09122995507225,10.09122995507225,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,4,2,0,893.3333333333334,0,0,0 +7257,8911,16215,-9,16216,16214,6,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.6482923603169,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,893.3333333333334,0,0,0 +7257,8911,16216,16214,-9,-9,1,1,0,47,1,0,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,19,0,2,-3.081023891137177,0,0,0,45,2,4,1,-9,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,7,1,0,0,4,2,0,893.3333333333334,0,0,0 +7258,8912,16217,16218,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,28,0,28,0,0,0,0,49,3,2,3,2,3,2019,4,2,19,8,0,0,15,4,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.22,19.97,3,1,0,0,2,1,0,622,0,0,0 +7258,8912,16218,16217,-9,-9,2,1,1,49,1,0,0,0,3,-9,97,3,0,2,0,0,0,1,0,-9,26,0,-28,0,0,0,0,77,3,1,3,2,2,2019,4,1,12,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.0309170171885,1,50.73,36.73,6,1,0,1,2,1,0,622,0,0,0 +7259,8913,16219,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,1,0,7.07862577453507,7.43837701285766,3,0,0,0,-9,0,-1016.921838216902,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.068599673483653,0,0,31.25,27.77,2,1,0,0,10,3,1,202,0,0,0 +7260,8914,16220,16221,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.55300123231309,8.466994141439885,0,1,0,1,1,-9,8,169.2146212717527,0,0,0,39,2,1,1,2,-9,2019,1,2,10,1,50,40,15,1,1,1,0,9.57116103638047,9.57116103638047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,3,1,0,1,2,4,1,1045.5,0,0,0 +7260,8914,16221,16220,-9,-9,2,1,0,39,1,0,0,0,2,-9,2,1,0,1,6.919778386749745,7.121524792846237,0,1,0,-9,1,-9,-8,-149.110264279549,-9,0,1,47,2,4,1,-9,-9,2019,1,1,24,10,18,0,15,1,10,1,0,7.870850841189832,7.870850841189832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.19,54.42,2,1,0,0,2,4,1,1045.5,0,0,0 +7261,8915,16222,-9,-9,-9,1,1,0,33,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1015.363737261231,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.2406481867053,3,24.13,27.24,3,1,0,0,12,1,0,400,0,0,0 +7261,8915,16223,-9,16222,-9,2,1,0,16,2,0,0,0,2,-9,2,2,0,3,7.566148278150267,7.637298537675465,0,3,0,0,0,-9,0,-1084.237320725301,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,38,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.27085172589059,3,44.83,55.13,7,1,0,0,12,1,0,400,0,0,0 +7262,8916,16224,-9,16225,16226,4,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1018.71336802179,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,9,2,1,589.3333333333334,0,0,0 +7262,8916,16225,16226,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,4,6.742377929758937,7.116763734279119,0,2,0,-9,7,0,-4,-61.14161493594251,0,0,1,46,3,5,3,3,2,2019,2,1,11,0,12,8,15,1,0,3,0,8.777818669639455,8.777818669639455,0,0,0,0,0,0,0,1,1,0,7.313853469228366,0,0,0,44.26,59.43,5,1,0,0,9,2,1,589.3333333333334,0,0,0 +7262,8916,16226,16225,-9,-9,1,1,1,46,1,0,2,0,3,-9,3,3,0,5,0,7.436296885484156,7.81235247071721,2,0,-9,7,0,4,-55.49171688662783,0,0,0,42,2,4,1,3,3,2019,3,2,9,0,0,84,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.767746726105571,0,0,58.74,52.92,7,1,1,0,9,2,1,589.3333333333334,0,0,0 +7262,8917,16227,-9,16225,16226,3,1,1,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1029.405262261759,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,9,2,1,523,0,0,0 +7263,8918,16228,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,2,8.26662785036493,8.006703383277086,0,3,0,0,0,-9,0,-985.1510581457403,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,35,0,15,1,1,-9,0,11.30959388350247,11.30959388350247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.54,30.56,5,1,0,0,2,4,0,434,0,0,0 +7263,8919,16229,-9,16228,-9,2,1,0,18,2,0,0,1,2,0,7,2,0,3,7.039138562446643,6.829707940072422,0,3,0,0,0,-9,0,-1060.040007492228,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,16,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,2,0,727,0,0,0 +7264,8920,16230,-9,-9,-9,1,1,0,81,2,0,0,0,1,-9,4,3,0,2,0,7.821244695046848,7.927924870332179,3,0,0,0,-9,0,-970.5384932374795,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.794117849255445,7.479402870709215,0,0,59.65,35.56,6,1,0,0,8,3,1,1266,0,0,0 +7265,8921,16231,-9,16234,-9,5,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-848.0719182984526,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,751.75,0,0,0 +7265,8921,16232,-9,16234,-9,3,1,1,17,2,0,2,0,3,-9,2,3,0,3,7.650492243717021,7.628534896666597,0,4,0,0,0,-9,0,-967.0528402055207,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,45,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1507632204100852,0,0,3,34.99,52.9,3,1,0,0,9,1,0,751.75,0,0,0 +7265,8921,16233,-9,16234,-9,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-937.7416299689794,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,751.75,0,0,0 +7265,8921,16234,-9,-9,-9,1,1,0,46,3,0,2,0,3,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-1012.848489263595,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4379343605475774,0,6.8782295992995,3,39.78,18.12,3,1,0,0,9,1,0,751.75,0,0,0 +7265,8922,16235,-9,16234,-9,2,1,1,24,2,0,2,0,2,-9,2,1,0,3,8.397382047561157,8.241611872562194,0,3,0,0,0,-9,0,-928.9535986242319,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,60,36,15,1,0,-9,1,7.997410086069503,7.997410086069503,0,0,0,0,0,0,0,1,1,0,.4213805861683433,0,2.392601273864241,3,46.41,53.09,4,1,0,0,9,4,0,480,0,0,0 +7266,8923,16236,16238,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,4,6.983096743706398,7.311147747998245,6.050708816894466,2,0,-9,5,0,-3,97.23239478134823,0,0,1,47,2,4,1,2,2,2019,1,2,10,1,20,20,15,1,1,1,0,7.29963451375725,7.29963451375725,0,0,0,0,0,0,0,1,1,0,5.721753812886127,0,0,0,46.16,58.62,5,1,0,0,2,4,0,1178.666666666667,0,0,0 +7266,8923,16237,-9,16236,16238,4,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.426741187488,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,1178.666666666667,0,0,0 +7266,8923,16238,16236,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.378626758829391,8.138726371578768,0,2,0,-9,5,0,3,-66.6615353364754,0,0,0,44,2,4,1,3,2,2019,1,1,7,0,37,37,15,1,0,1,0,11.54441504105384,11.54441504105384,0,0,0,0,0,0,0,1,1,0,.8623412473842326,0,0,0,57.16,56.15,5,1,0,0,2,4,0,1178.666666666667,0,0,0 +7267,8924,16239,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,1,0,6.496541403448829,6.306593760947309,3,0,0,0,-9,0,-1045.510087917274,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,16.24059317077417,0,0,7.00223879144927,0,137.4731846206555,1,1,0,.2507732453730638,6.637508751172324,0,0,42.7,30.9,5,1,0,0,12,2,1,862,0,0,0 +7268,8925,16240,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,6.871852719294131,6.718936764597634,3,0,0,0,-9,0,-1023.642646944697,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.743119953276108,0,0,58.47,44.69,6,1,0,0,10,2,1,321,0,0,0 +7269,8926,16241,-9,16242,16243,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.1636981628255,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,805.6666666666666,0,0,0 +7269,8926,16242,16243,-9,-9,1,1,0,48,1,0,2,0,2,-9,1,1,0,4,7.158431940267073,7.260860517648445,0,2,0,-9,11,0,2,144.1241266925575,0,0,0,46,2,4,1,3,3,2019,1,2,10,0,40,38,15,1,0,1,0,3.789709597313705,3.789709597313705,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,9,4,1,805.6666666666666,0,0,0 +7269,8926,16243,16242,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.812766447914939,8.949525727458939,0,2,0,-9,11,0,-2,-95.11914605907982,0,0,0,48,2,4,1,3,3,2019,1,1,8,0,44,38,15,1,0,1,0,18.17359038860496,18.17359038860496,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,805.6666666666666,0,0,0 +7269,8927,16244,-9,16242,16243,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,6.427419384308101,6.401233596486114,3,0,0,0,-9,0,-917.4670152442152,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.263777727806229,0,0,0,57.16,56.15,6,1,0,0,9,4,1,398,0,0,0 +7270,8928,16245,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1099.187243185747,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,47.5,50.17,6,1,0,0,1,1,0,534,0,0,0 +7271,8929,16246,-9,-9,-9,1,1,0,29,2,0,2,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-981.1810053544262,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.13732310127268,3,38.61,44.93,4,1,0,0,2,1,0,1258.333333333333,0,0,0 +7271,8929,16247,-9,16246,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-993.0538391869025,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,1258.333333333333,0,0,0 +7271,8929,16248,-9,16246,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-909.8548056030706,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,1,0,1258.333333333333,0,0,0 +7272,8930,16249,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-821.9519090531142,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.30602592256075,0,0,1,1,0,0,0,0,0,43.85,36.9,5,1,0,0,7,1,0,336,0,0,0 +7273,8931,16250,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,2,8.783726063832601,8.792113057142743,0,4,0,0,0,-9,0,-1001.725419783311,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,27,11,50,40,15,1,11,-9,0,14.25862648757764,14.25862648757764,0,0,0,0,0,0,0,1,1,0,0,0,13.40522343560896,3,22.39,45.52,2,2,0,1,8,5,0,335,0,0,0 +7274,8932,16251,-9,16252,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1113.017629104643,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,2,0,1218.5,0,0,0 +7274,8932,16252,-9,-9,-9,1,1,0,33,3,1,2,0,2,-9,2,1,0,4,7.196819836930191,7.563410299888973,6.169520492650419,4,0,0,0,-9,0,-937.6954237508838,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,20,13,15,1,0,-9,0,8.127839926730845,8.127839926730845,0,0,0,0,0,0,0,1,1,0,6.159169653237885,0,0,0,49.27,56.95,6,1,0,0,6,2,0,1218.5,0,0,0 +7275,8933,16253,16254,-9,-9,2,1,0,89,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,0,-29.57425914250003,0,0,0,89,3,5,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.7028322216785398,0,0,0,52,45,6,1,0,0,11,2,1,923,0,0,0 +7275,8933,16254,16253,-9,-9,1,1,1,89,1,0,0,0,3,-9,4,3,0,5,0,5.563384456726519,5.013367046581227,1,0,-9,10,0,0,-22.68821613027921,0,0,0,89,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.043963551933871,5.098982769216661,0,0,58.05,54.52,7,1,0,0,11,2,1,923,0,0,0 +7276,8934,16255,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,4,0,6.069615794351126,6.278433862513353,3,0,0,0,-9,0,-1036.342303871822,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.262602218932928,0,0,57.16,56.15,7,1,0,0,2,2,0,360,0,0,0 +7277,8935,16256,16257,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.404122421962409,6.300901270845711,1,0,-9,11,0,-5,-11.23397097235799,0,0,0,72,2,3,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.479518211447155,6.132570868475883,7.257461479088771,3,49.92,44.62,5,1,0,0,5,3,1,477,0,0,0 +7277,8935,16257,16256,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.570090485164545,7.402323884411142,1,0,-9,42,0,5,48.95726657142641,0,0,0,67,2,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.141399025436491,7.128832360291557,3.296202156837276,3,50.77,50.99,5,1,0,0,5,3,1,477,0,0,0 +7278,8936,16258,16262,-9,-9,2,1,0,43,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,16,0,-5,-8.370805191605458,0,0,1,48,3,3,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.48,43.7,5,5,0,1,8,2,0,1444.8,0,0,0 +7278,8936,16259,-9,16258,16262,4,1,1,12,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1054.135532024055,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,3,0,0,8,2,0,1444.8,0,0,0 +7278,8936,16260,-9,16258,16262,3,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-949.7253610304919,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,8,2,0,1444.8,0,0,0 +7278,8936,16261,-9,16258,16262,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.59841016522,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,2,0,1444.8,0,0,0 +7278,8936,16262,16258,-9,-9,1,1,1,48,1,0,3,0,3,-9,2,1,0,3,8.208224042777408,8.249105180084992,0,2,0,-9,16,0,5,-30.6939352196675,0,0,0,43,2,3,3,-9,-9,2019,2,2,19,7,36,40,15,1,7,3,0,10.48742818883225,10.48742818883225,0,0,0,0,0,0,0,1,1,0,0,0,10.74971013505762,3,38.01,50.19,3,1,0,0,8,2,0,1444.8,0,0,0 +7279,8937,16263,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,2,8.962783096419493,9.14512231420245,0,3,0,0,0,-9,0,-1059.156774155771,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,1,44,21,15,1,1,-9,0,26.97997183472582,26.97997183472582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.21,47.1,6,2,0,0,8,5,0,334,0,0,0 +7280,8938,16264,16265,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.737754267598708,7.771680452076285,0,1,0,-9,20,0,-4,-92.34277507765358,0,0,0,59,3,4,3,-9,-9,2019,2,2,8,0,37,42,15,1,0,4,0,9.151494833678743,9.151494833678743,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.09,55.83,7,1,0,0,1,3,0,326.5,0,0,0 +7280,8938,16265,16264,-9,-9,2,1,1,59,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,4,0,4,-107.3457984583043,0,0,0,55,2,4,1,-9,-9,2019,3,1,20,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,30.52,4,1,0,0,1,3,0,326.5,0,0,0 +7281,8939,16266,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1045.950723337812,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,.1235534674588523,0,0,3.775029722761467,2.549664229655983,21.56016630857243,1,1,0,0,0,0,0,54,45,6,2,0,1,5,1,1,617,0,0,0 +7282,8940,16267,-9,-9,-9,1,1,1,96,3,0,0,0,2,-9,4,3,0,1,0,7.784520623266507,7.908066531344111,3,0,-9,0,-9,0,-951.6950626884133,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.69173617614506,7.49296746142918,0,0,49.17,28.85,3,1,0,0,8,3,1,810,0,0,0 +7283,8941,16268,-9,16270,16269,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.9776089559718,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,2,4,1,939.6666666666666,0,0,0 +7283,8941,16269,16270,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,3,7.827339049125715,8.024511718236948,0,2,0,-9,10,0,0,-22.45724283074337,0,0,0,42,2,3,1,2,2,2019,1,2,5,0,38,42,15,1,0,1,0,9.563598403561571,9.563598403561571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.11,51.97,6,1,0,0,2,4,1,939.6666666666666,0,0,0 +7283,8941,16270,16269,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,3,8.191980294234146,8.265846806844264,0,2,0,-9,10,0,0,58.39118341669899,0,0,1,42,2,3,1,-9,-9,2019,1,1,12,0,30,30,15,1,0,1,0,15.87429730572365,15.87429730572365,0,0,0,0,0,0,0,0,0,0,2.960142347761268,0,0,0,38.51,59.43,4,1,0,1,2,4,1,939.6666666666666,0,0,0 +7284,8942,16271,16272,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,6.547797233119129,6.797317177030274,1,0,-9,7,0,-4,20.19591761157615,0,0,0,63,2,4,1,3,3,2019,3,2,8,0,0,36,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.803963353002933,6.455081006968018,0,0,57.16,56.15,1,1,0,0,11,4,1,540.5,0,0,0 +7284,8942,16272,16271,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,4,8.167294842904541,8.453489463393655,6.914549170745983,1,0,-9,7,0,4,8.332997086461225,0,0,0,59,2,4,3,3,3,2019,2,1,6,0,25,30,15,1,0,4,0,16.85149358836791,16.85149358836791,0,0,0,0,0,0,0,0,0,0,7.56604161161671,6.957325864053688,0,0,60.12,54.8,6,1,0,0,11,4,1,540.5,0,0,0 +7285,8943,16273,16276,-9,-9,1,1,0,64,1,0,0,0,2,-9,6,3,0,3,0,6.012515820151976,6.465820559552004,1,0,-9,9,0,1,52.02103967515413,0,0,0,63,2,2,3,3,3,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.094680823363136,6.139655048893012,14.04968816582525,3,58.47,50.22,6,1,0,0,10,2,1,929.6,0,0,0 +7285,8943,16274,-9,-9,16276,4,1,0,9,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-984.3878171314418,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,929.6,0,0,0 +7285,8943,16275,-9,-9,16276,5,1,1,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-965.7945163123323,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,2,1,929.6,0,0,0 +7285,8943,16276,16273,-9,-9,2,1,1,63,1,0,0,0,2,-9,6,3,0,2,0,5.652017983171719,5.492950874535078,1,0,-9,9,0,-1,-37.45735707479193,0,0,0,64,2,3,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.918238505804494,5.586482020474693,3.268562815803401,3,39.39,37.66,4,1,0,0,10,2,1,929.6,0,0,0 +7285,8943,16277,-9,-9,16276,3,1,0,11,2,0,0,1,3,-9,-9,2,0,5,0,0,0,1,0,0,0,-9,0,-938.7392557758375,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,10,2,1,929.6,0,0,0 +7286,8944,16278,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,2,0,6.918861196750303,6.801291170538738,3,0,0,0,-9,0,-1121.165429373556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,6.601021757366018,0,0,0,0,38.67550017151262,1,1,0,3.314807104592568,6.637752892581016,0,0,44.52,25.33,5,1,0,0,6,2,1,183,0,0,0 +7287,8945,16279,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1020.628839522916,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.76,51.4,7,1,0,0,5,1,0,326,0,0,0 +7288,8946,16280,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,5.250180343055444,4.594105598109376,3,0,0,0,-9,0,-982.728187789648,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.185470922853138,0,0,41.56,26.68,1,1,0,0,12,2,0,2133,0,0,0 +7289,8947,16281,-9,16284,16286,2,1,0,21,2,0,2,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-895.7484771613905,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,12,1,1,127,0,0,0 +7289,8948,16282,-9,16284,16286,5,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-963.1940342034181,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,12,3,1,589.4,0,0,0 +7289,8948,16283,-9,16284,16286,6,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1052.392308870716,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,12,3,1,589.4,0,0,0 +7289,8948,16284,16286,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,4,7.466145843671656,7.380598388856058,0,2,0,-9,7,0,-4,76.72019604099465,0,0,1,43,2,4,1,3,2,2019,1,3,9,1,21,28,15,1,1,1,0,10.13439699651314,10.13439699651314,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,12,3,1,589.4,0,0,0 +7289,8948,16285,-9,16284,16286,4,1,1,17,2,0,2,0,2,-9,11,3,0,4,6.356488240284947,6.61109052847759,0,2,0,0,0,-9,0,-997.8804099054804,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,3,1,589.4,0,0,0 +7289,8948,16286,16284,-9,-9,3,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.290062674844249,8.528516987867471,0,2,0,-9,7,0,4,50.67479553543335,0,0,0,39,2,4,1,-9,-9,2019,1,1,9,0,38,37,15,1,1,1,0,12.95358059965442,12.95358059965442,0,0,0,0,0,0,0,1,1,0,3.386504825458011,0,0,0,51,56,6,1,0,0,12,3,1,589.4,0,0,0 +7290,8949,16287,-9,16290,16289,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.5857518830031,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,1,0,1021.6,0,0,0 +7290,8949,16288,-9,16290,16289,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.837513357959,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,1,0,1021.6,0,0,0 +7290,8949,16289,16290,-9,-9,1,1,1,42,1,0,3,0,3,-9,1,1,0,3,0,0,0,2,0,-9,7,0,10,0,0,0,0,32,2,4,3,2,2,2019,2,2,13,1,25,25,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.82,54.92,5,1,0,0,12,1,0,1021.6,0,0,0 +7290,8949,16290,16289,-9,-9,2,1,0,32,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-10,0,0,0,1,42,3,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,12,1,0,1021.6,0,0,0 +7290,8949,16291,-9,16290,16289,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.5040775598796,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,1,0,1021.6,0,0,0 +7291,8950,16292,16293,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,0,-47.43471810785459,0,0,0,80,2,3,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46.43,47.35,5,1,0,0,9,2,1,824,0,0,0 +7291,8950,16293,16292,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,6.666314840185154,6.691573844499366,1,0,-9,52,0,0,87.8862947651361,0,0,0,80,3,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.732189197820772,0,0,41.34,56.62,6,1,0,0,9,2,1,824,0,0,0 +7292,8951,16294,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,3,7.049001833988703,7.072157950514621,0,3,0,-9,0,-9,0,-958.4269251914545,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,4,42,0,15,1,4,-9,0,2.638725183124936,2.638725183124936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.35,56.52,4,1,0,1,6,2,0,484,0,0,0 +7293,8952,16295,16296,-9,-9,1,1,1,67,1,0,0,0,1,-9,1,1,0,4,8.27903707749018,9.261879734371405,8.790472798457973,1,0,-9,46,0,4,19.40031673398383,0,0,0,63,1,2,3,2,2,2019,2,2,11,2,15,20,15,1,2,4,0,29.52778988240049,29.52778988240049,0,0,0,0,0,0,0,1,1,0,0,8.934469346845628,6.152871789839143,1,55.34,54.26,7,1,0,0,5,5,1,611.5,0,0,0 +7293,8952,16296,16295,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,2,0,6.807909953501625,6.843038608866423,1,0,-9,46,0,-4,-20.85811372892779,0,0,0,67,1,4,1,2,2,2019,3,1,15,4,0,35,15,4,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.205171015676361,6.83091506427951,0,0,50.16,17.69,6,1,0,0,5,5,1,611.5,0,0,0 +7294,8953,16297,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1008.882127240822,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,56.99,35.86,6,1,0,0,7,1,0,1843,0,0,0 +7295,8954,16298,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,4,0,8.113456149292178,8.451484106511183,3,0,0,0,-9,0,-984.6937567897362,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.114261872614414,7.835116838156774,0,0,44.88,37.37,5,1,0,0,9,4,1,374,0,0,0 +7296,8955,16299,16300,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,9.119834880407733,9.024723730211685,0,1,0,-9,10,0,-4,-23.20412032073898,0,0,0,53,1,4,1,2,2,2019,1,1,11,2,35,35,15,1,2,1,0,18.88638976329089,18.88638976329089,0,0,0,0,0,0,0,0,0,0,5.898971101826035,0,0,0,46.73,57.01,6,1,0,0,8,5,1,1235,0,0,0 +7296,8955,16300,16299,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,4,8.404973367264084,8.284436680959118,0,1,0,-9,10,0,4,-91.05166494335839,0,0,0,49,1,4,1,2,2,2019,1,2,22,10,72,37,15,1,10,1,0,7.878665799011182,7.878665799011182,0,0,0,0,0,0,0,0,0,0,5.641206301774993,0,0,0,28.1,66.68000000000001,4,1,0,0,8,5,1,1235,0,0,0 +7297,8956,16301,16302,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,4,7.432596608006563,7.309487924718383,0,1,0,-9,22,0,1,70.07861579774411,-9,0,0,52,2,3,1,3,2,2019,1,1,9,0,50,0,15,1,0,1,0,3.736752459893831,3.736752459893831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,1,613,0,0,0 +7297,8956,16302,16301,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.529606777315625,8.511816974161635,0,1,0,-9,21,0,-1,-48.13047924835652,0,0,0,53,2,4,1,1,1,2019,1,2,11,0,37,37,15,1,0,1,0,14.98514671647491,14.98514671647491,0,0,0,0,0,0,0,0,0,0,7.869670723643463,0,0,0,61.28,46.17,4,1,0,0,4,4,1,613,0,0,0 +7298,8957,16303,-9,-9,-9,1,1,0,26,3,0,0,0,2,-9,2,1,0,4,8.447369822570524,8.282138419082361,0,3,0,0,0,-9,0,-1039.144672987864,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,37,15,1,0,-9,0,13.24962532287605,13.24962532287605,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,0,1080,0,0,0 +7299,8958,16304,-9,-9,-9,1,1,0,23,2,0,1,0,1,1,2,1,0,4,8.491518949087629,8.320936608709012,6.153121217289411,4,0,0,0,-9,0,-1079.76473926593,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,26,0,15,1,2,-9,0,29.89222501020847,29.89222501020847,0,0,0,0,0,0,0,1,1,0,6.084048050034236,0,0,0,47.38,57.75,6,1,0,0,13,5,0,422,0,0,0 +7299,8958,16305,-9,16304,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1029.237007760732,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,0,422,0,0,0 +7300,8959,16306,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,4,8.993196410365609,8.823441550635042,6.202954217681811,3,0,0,0,-9,0,-1056.002215287642,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,40,40,15,1,0,-9,0,19.13389242580627,19.13389242580627,0,0,0,0,0,0,0,0,0,0,.9209807320144487,6.768787583934744,0,0,57.16,56.15,6,1,0,0,8,5,1,1229,0,0,0 +7301,8960,16307,-9,16308,16309,3,1,1,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1045.058851975795,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,10,5,1,2178,0,0,0 +7301,8960,16308,16309,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,4,8.150683208205834,7.922037418756436,0,2,0,-9,20,0,-2,45.3314591220231,0,0,0,49,1,4,1,2,2,2019,1,1,7,0,29,28,15,1,0,1,0,13.87079950691721,13.87079950691721,0,0,0,0,0,0,0,1,1,0,1.526801478102215,0,0,0,57.16,56.15,6,1,0,0,10,5,1,2178,0,0,0 +7301,8960,16309,16308,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,4,9.082474759166391,9.265906792639335,0,2,0,-9,20,0,2,-46.05847550044917,0,0,0,47,1,4,1,2,2,2019,1,2,16,5,36,38,15,1,5,1,0,24.85502225832008,24.85502225832008,0,0,0,0,0,0,0,1,1,0,.4990324765426253,0,0,0,54.2,57.49,6,1,0,0,10,5,1,2178,0,0,0 +7302,8961,16310,16311,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,9.326089018110823,9.14485649679003,0,1,0,-9,39,0,1,22.43320789993029,0,0,0,57,1,4,1,3,3,2019,1,2,7,0,72,48,15,1,0,1,0,14.88264840284291,14.88264840284291,0,0,0,0,0,0,0,0,0,0,5.27689618434973,0,0,0,55.79,52.62,7,1,0,0,6,5,1,766.5,0,0,0 +7302,8961,16311,16310,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,4,8.368658676894896,8.797802077330392,7.719159060950744,1,0,-9,38,0,-1,104.386619099461,0,0,0,58,2,4,1,2,2,2019,1,1,7,0,4,1,15,1,0,1,0,129.7241254675402,129.7241254675402,0,0,0,0,0,0,0,0,0,0,4.377109598131328,7.595185800005106,23.97210857548074,3,46.31,56.45,7,1,0,0,6,5,1,766.5,0,0,0 +7303,8962,16312,16314,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,5,8.0972391162476,8.229868924924734,0,2,0,-9,5,0,5,186.1869859156946,0,0,0,43,2,4,1,-9,-9,2019,1,2,7,0,45,55,15,1,0,1,0,7.084970002043572,7.084970002043572,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,7,3,1,1374.333333333333,0,0,0 +7303,8962,16313,-9,16314,16312,4,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1056.169338021788,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,7,1,0,0,7,3,1,1374.333333333333,0,0,0 +7303,8962,16314,16312,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,4,7.713507026340798,7.954353680164365,0,2,0,-9,5,0,-5,49.19318823807789,0,0,1,48,2,5,1,2,2,2019,1,1,9,0,39,44,15,1,0,1,0,6.556548341778809,6.556548341778809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.46,47.86,7,1,0,0,7,3,1,1374.333333333333,0,0,0 +7303,8963,16315,-9,16314,16312,3,1,0,18,2,0,1,0,2,1,2,1,0,4,7.551323277735436,7.774539690486277,0,3,0,0,0,-9,0,-1069.646832898666,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,0,15,1,0,-9,1,5.481510487410315,5.481510487410315,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.3,57.54,5,1,0,0,7,3,1,572,0,0,0 +7304,8964,16316,16317,-9,-9,2,1,0,47,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,8,0,-23,72.54550345020797,0,0,0,70,2,1,3,-9,-9,2019,4,1,18,6,0,0,15,3,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.89,21.66,2,1,0,0,11,2,1,1219.5,0,0,0 +7304,8964,16317,16316,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,0,6.211678395302592,6.31488690619734,1,0,-9,8,0,23,113.8210855290484,0,0,0,47,1,1,3,2,2,2019,4,2,13,1,0,0,15,4,1,3,0,0,0,1,0,.759748311418192,0,0,0,0,1,1,0,4.687500679324455,6.001012222667518,47.19439739429858,1,43.84,22.92,4,1,0,0,11,2,1,1219.5,0,0,0 +7305,8965,16318,16319,-9,-9,1,1,1,34,1,0,2,0,2,-9,1,1,0,5,6.668624609846442,6.636605143496318,0,2,0,-9,10,0,1,128.4899673720018,0,0,0,33,2,4,1,2,2,2019,1,2,11,0,60,60,15,1,0,1,0,1.226412427530569,1.226412427530569,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,2,1,766,0,0,0 +7305,8965,16319,16318,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,4,6.545361920631449,6.625222756961276,0,2,0,-9,10,0,-1,-44.75771841390331,0,0,1,34,2,5,1,-9,-9,2019,1,1,11,1,16,8,15,1,1,1,0,6.257401099073436,6.257401099073436,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,7,1,0,0,5,2,1,766,0,0,0 +7305,8965,16320,-9,16319,16318,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.9698168625946,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,2,1,766,0,0,0 +7305,8965,16321,-9,16319,16318,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.960325698284,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,1,766,0,0,0 +7306,8966,16322,16323,-9,-9,2,1,1,33,1,0,0,0,1,-9,1,1,0,2,7.412024949175001,7.686594539250949,0,1,0,-9,6,0,2,79.45264757046539,0,0,0,31,2,2,1,-9,-9,2019,1,1,14,2,45,0,15,1,2,1,0,3.66794521720009,3.66794521720009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,29.27,5,1,0,0,2,4,1,1026,0,0,0 +7306,8966,16323,16322,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,2,8.183822369725601,8.383711109355527,0,1,0,-9,6,0,-2,-30.18591753015866,0,0,1,33,1,2,1,2,3,2019,1,2,12,1,66,32,15,1,1,1,0,7.158972794518655,7.158972794518655,0,0,0,0,0,0,0,0,0,0,.8024150326394239,0,0,0,37.01,42.9,6,1,0,0,2,4,1,1026,0,0,0 +7307,8967,16324,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,0,8.265968936159176,8.514660522981755,3,0,0,0,-9,0,-1067.768522503277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,6.46099603702128,0,0,0,1,1,0,7.159586897888232,7.981375614312752,0,0,51.82,20.99,4,1,0,0,9,4,1,797,0,0,0 +7308,8968,16325,-9,-9,-9,1,1,1,22,2,0,0,0,2,0,7,2,0,5,0,5.418563942905756,5.228244541232624,3,0,0,0,-9,0,-950.2171498068279,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.365361152674741,0,0,0,54.69,57.47,7,1,0,0,12,2,0,924,0,0,0 +7309,8969,16326,-9,-9,-9,1,1,0,84,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-995.7307338126624,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.05,16.88,2,1,0,0,10,1,0,118,0,0,0 +7310,8970,16327,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,4.277941892359636,4.425540617345236,3,0,-9,0,1,0,-960.1979723179377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.793401804821264,4.142859453671291,0,0,48.28,60.18,6,1,0,0,5,1,1,327,0,0,0 +7311,8971,16328,-9,-9,-9,1,1,0,38,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-916.5308648727059,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7.16,66.37,4,1,0,0,1,1,0,232,0,0,0 +7312,8972,16329,16330,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,3,6.802158221311661,7.04315744443836,0,1,0,-9,9,0,-7,-52.01382485003077,0,0,0,66,3,3,1,3,3,2019,1,1,11,0,12,12,15,1,2,1,0,9.068654691229572,9.068654691229572,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,1,0,0,11,3,1,348.5,0,0,0 +7312,8972,16330,16329,-9,-9,1,1,1,66,1,0,0,0,3,-9,2,1,0,3,7.372289609837345,7.779323626627895,0,1,0,-9,9,0,7,-163.0823521446734,0,0,0,59,3,3,1,3,3,2019,1,2,10,0,12,12,15,1,1,1,0,16.52098070084415,16.52098070084415,1,0,0,0,0,0,0,1,1,0,0,0,10.52347162593508,3,51,48,5,1,0,0,11,3,1,348.5,0,0,0 +7312,8973,16331,-9,16329,16330,3,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.097840175252552,7.830099253974081,0,3,0,0,0,-9,0,-1102.063283543597,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,40,15,1,2,-9,1,9.862813253667282,9.862813253667282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.44,44.8,1,1,0,0,11,3,1,303,0,0,0 +7313,8974,16332,16333,-9,-9,1,1,1,54,1,1,1,0,2,-9,2,1,0,3,8.705398923580496,8.721419115961234,0,2,0,-9,7,0,17,-58.08685573895092,0,0,0,37,1,5,1,2,3,2019,1,2,10,0,50,50,15,1,0,1,0,17.26505684400345,17.26505684400345,0,0,0,0,0,0,0,1,1,0,4.635122102788678,0,0,0,50.57,52.35,6,1,0,0,10,5,1,488,0,0,0 +7313,8974,16333,16332,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,5,9.036935602822917,9.402827524741376,0,2,0,-9,7,0,-17,136.2469972718309,0,0,1,54,2,3,1,2,1,2019,1,1,8,1,32,45,15,1,1,1,0,35.22032240548481,35.22032240548481,0,0,0,0,0,0,0,1,1,0,5.676227078923748,0,0,0,44.51,60.68,5,1,0,0,10,5,1,488,0,0,0 +7313,8974,16334,-9,16333,16332,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.9745531844114,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,488,0,0,0 +7314,8975,16335,16336,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,8,0,4,120.3561646417391,0,0,0,56,2,4,1,-9,-9,2019,3,2,11,0,0,2,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.430901620589692,0,18.0594000464904,3,41.17,59.31,7,1,0,0,10,4,1,596.5,0,0,0 +7314,8975,16336,16335,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,0,8.643485409297162,8.627522481764762,1,0,-9,8,0,-4,-2.661105153226478,0,0,0,60,2,4,3,2,2,2019,2,1,12,3,0,0,15,1,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.865911705513705,0,0,54.2,57.49,2,1,0,0,10,4,1,596.5,0,0,0 +7315,8976,16337,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,1,1,0,4,8.886290558189266,8.624501079274426,0,3,0,0,0,-9,0,-1074.578926379327,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,15.8510821969774,15.8510821969774,0,0,0,0,0,0,0,1,1,0,.6440077970597794,0,0,0,48.82,49.18,5,1,0,0,10,5,1,362,0,0,0 +7316,8977,16338,-9,16339,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-851.0986887155041,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,1,0,491,0,0,0 +7316,8977,16339,-9,-9,-9,1,1,0,29,2,0,2,0,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1050.581556368286,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,13,1,0,491,0,0,0 +7316,8977,16340,-9,16339,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1077.654581187374,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,1,0,491,0,0,0 +7317,8978,16341,-9,16343,16342,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.0320110932736,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,2,0,550,0,0,0 +7317,8978,16342,16343,-9,-9,2,1,1,47,1,0,3,0,3,-9,1,1,0,4,6.888116021433818,6.874900501143797,0,2,0,-9,15,0,11,-50.0539150917196,0,0,0,36,2,5,3,3,2,2019,2,1,7,0,35,40,15,1,0,3,0,3.353334167183981,3.353334167183981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,3,0,0,8,2,0,550,0,0,0 +7317,8978,16343,16342,-9,-9,1,1,0,36,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,16,0,-11,-130.9832937349309,0,0,1,47,3,4,1,3,-9,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.09,56.48,4,3,0,0,8,2,0,550,0,0,0 +7317,8978,16344,-9,16343,16342,3,1,0,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1091.867468956466,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,8,2,0,550,0,0,0 +7318,8979,16345,16346,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,3,8.761690202390705,9.058303714803435,0,1,0,-9,4,0,1,-104.1386239930562,0,0,0,33,1,2,1,2,2,2019,1,2,24,10,35,38,15,1,10,1,0,21.1332817627398,21.1332817627398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.47,60.56,5,1,0,0,1,5,1,707,0,0,0 +7318,8979,16346,16345,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,2,8.40317444857706,8.471632046611232,0,1,0,-9,4,0,-1,47.02213244433234,0,0,1,34,2,3,1,-9,-9,2019,1,1,20,8,20,21,15,1,8,1,0,23.88106967619288,23.88106967619288,0,0,0,0,0,0,0,0,0,0,1.855398853664589,0,0,0,31.81,31.41,5,1,0,0,1,5,1,707,0,0,0 +7319,8980,16347,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-980.0161650103585,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,6,1,1,110,0,0,0 +7320,8981,16348,16349,-9,-9,3,1,1,54,1,0,0,0,2,-9,1,1,0,3,7.287863860777488,7.255680881336829,0,1,0,-9,5,0,6,-74.59481285313632,0,0,0,48,1,4,1,-9,-9,2019,1,1,8,1,20,0,15,1,1,1,0,6.291882291800697,6.291882291800697,0,0,0,0,0,0,0,0,0,0,7.463384939678219,0,0,0,55.91,41.93,6,1,0,0,6,5,1,455,0,0,0 +7320,8981,16349,16348,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,4,8.85308524500965,9.163842049636724,0,1,0,-9,5,0,-6,-9.807075973608129,0,0,0,54,2,3,1,2,2,2019,1,3,13,3,62,52,15,1,3,1,0,14.69625854442902,14.69625854442902,0,0,0,0,0,0,0,0,0,0,3.589938383567391,0,0,0,48.87,58.55,6,1,0,0,6,5,1,455,0,0,0 +7321,8982,16350,-9,16351,-9,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1044.564654806986,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,0,1699.666666666667,0,0,0 +7321,8982,16351,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,2,1,0,4,7.323322382591161,7.128086666326976,5.337202034879593,4,0,0,0,-9,0,-1002.6859596114,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,16,15,1,0,-9,0,8.746505505847214,8.746505505847214,0,0,0,0,0,0,0,1,1,0,4.676247108060656,0,0,0,54.2,57.49,5,1,0,0,1,2,0,1699.666666666667,0,0,0 +7321,8982,16352,-9,16351,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-925.1149965317367,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,2,0,1699.666666666667,0,0,0 +7322,8983,16353,16356,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,4,8.168718660420664,8.083774753011063,0,2,0,-9,4,0,-2,63.52255853212117,0,0,0,38,1,4,1,1,2,2019,1,2,9,0,35,40,15,1,0,1,0,9.5591130373785,9.5591130373785,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,12,4,1,898,0,0,0 +7322,8983,16354,-9,16356,16353,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.210563354025,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,898,0,0,0 +7322,8983,16355,-9,16356,16353,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.561752820462,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,898,0,0,0 +7322,8983,16356,16353,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,4,8.432808875078184,8.834737988423679,0,2,0,-9,4,0,2,36.0414832579803,0,0,1,36,1,4,1,-9,-9,2019,1,1,10,0,42,45,15,1,0,1,0,12.78463100168781,12.78463100168781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,7,1,0,0,12,4,1,898,0,0,0 +7323,8984,16357,16358,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.033504451363745,8.022950958793713,0,1,0,-9,1,-9,-3,-79.8201005727675,-9,0,0,60,2,3,1,3,3,2019,1,1,7,0,43,0,15,1,0,1,0,8.010513096145202,8.010513096145202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,1,4,1,219.5,0,0,0 +7323,8984,16358,16357,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.672779748424803,7.549818598386506,0,1,0,-9,1,-9,3,11.49591714970606,-9,0,0,57,2,4,1,3,3,2019,1,2,12,1,38,0,15,1,1,1,0,7.397463382831998,7.397463382831998,0,0,0,0,0,0,0,0,0,0,2.759035395666004,0,0,0,50.68,49.75,5,1,0,0,1,4,1,219.5,0,0,0 +7324,8985,16359,16360,-9,-9,2,1,1,24,1,0,0,0,2,-9,2,1,0,4,7.707841972355109,7.624913179014022,0,1,0,-9,3,0,0,119.8361925871419,0,1,0,24,2,3,1,-9,-9,2019,1,1,6,0,44,43,15,1,0,1,0,7.080884956912568,7.080884956912568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,6,4,0,1418,0,0,0 +7324,8985,16360,16359,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,3,7.624721046141513,7.699405519773695,0,1,0,-9,3,0,0,-98.97709681234002,0,1,1,24,2,4,1,2,2,2019,1,2,13,2,43,42,15,1,2,1,0,6.981958653310673,6.981958653310673,0,0,0,0,0,0,0,0,0,0,2.300290512800224,0,0,0,46.35,42.16,5,1,0,0,6,4,0,1418,0,0,0 +7325,8986,16361,16362,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,2,0,7.366083592130101,7.588619507696037,1,0,-9,22,0,-3,35.73495998331585,0,0,0,67,1,2,3,1,1,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.727359946011297,6.87011338160629,5.093115903163387,1,46.41,42.57,6,1,0,0,10,3,1,468.5,0,0,0 +7325,8986,16362,16361,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,2,0,7.393338388558171,7.691891531165081,1,0,-9,15,0,3,3.167514108771217,0,0,0,64,1,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.364302158212095,7.520242080100254,0,0,49.81,51.82,6,1,0,0,10,3,1,468.5,0,0,0 +7326,8987,16363,16364,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,2,7.160344992550629,7.237029826761542,0,1,0,-9,3,0,0,-116.4735374643162,0,1,1,23,1,3,1,-9,-9,2019,1,1,16,5,16,0,15,1,5,1,0,8.44308507282997,8.44308507282997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.55,54.48,5,1,0,0,6,4,0,685.5,0,0,0 +7326,8987,16364,16363,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,3,8.190692155710044,8.134145521977148,0,1,0,-9,3,0,0,-154.0409437420377,0,1,0,23,1,2,1,3,3,2019,1,2,19,8,38,45,15,1,8,1,0,10.43042258361718,10.43042258361718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.32,59.39,5,1,0,0,6,4,0,685.5,0,0,0 +7327,8988,16365,16366,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,5,8.762128298238698,9.033275514000541,0,1,0,-9,8,0,-11,-1.738110850911061,0,0,0,47,2,4,1,1,2,2019,1,2,6,0,37,47,15,1,0,1,0,19.17601385964217,19.17601385964217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,4,5,1,959,0,0,0 +7327,8988,16366,16365,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,7.258047255193056,6.889168355297515,0,1,0,-9,8,0,11,-125.3288245756657,0,0,0,36,2,5,1,3,3,2019,1,1,12,0,27,22,15,1,0,1,0,6.731357324801242,6.731357324801242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.87,59.76,7,1,0,0,4,5,1,959,0,0,0 +7328,8989,16367,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,7.972232759098535,8.106271685565076,0,3,0,0,0,-9,0,-1018.327196493083,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,37,15,1,0,-9,0,11.40082957733739,11.40082957733739,0,0,0,0,0,0,0,0,0,0,6.012694160468845,0,3.192539397186689,3,63.42,36.87,6,1,0,0,9,4,1,377,0,0,0 +7329,8990,16368,16369,-9,-9,4,1,1,31,1,1,3,0,2,-9,2,1,0,4,8.244992866265406,8.2928686686818,0,2,0,-9,5,0,0,-26.73838250167986,0,0,0,40,3,4,1,-9,-9,2019,1,1,6,0,42,50,15,1,0,1,0,10.88096568125543,10.88096568125543,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,2,1,0,0,1,4,0,668.6,0,0,0 +7329,8990,16369,16368,-9,-9,1,1,0,40,1,1,3,0,3,-9,2,1,0,4,8.116565063121831,8.052764505410522,0,2,0,-9,5,0,9,-160.8979051014988,0,0,1,31,2,4,1,-9,-9,2019,1,4,4,0,46,13,15,1,0,1,0,9.63314074489403,9.63314074489403,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.45,47.74,6,1,0,0,1,4,0,668.6,0,0,0 +7329,8990,16370,-9,16369,16368,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.5580270582922,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,0,668.6,0,0,0 +7329,8990,16371,-9,16369,16368,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.6371549591402,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,4,0,668.6,0,0,0 +7329,8990,16372,-9,16369,16368,2,1,0,17,2,1,3,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-905.6185685401974,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.99,48.21,5,1,0,1,1,4,0,668.6,0,0,0 +7330,8991,16373,16374,-9,-9,2,1,0,74,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,46,0,0,0,0,0,0,83,1,1,3,2,3,2019,4,1,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.833983340994714,0,115.1028642059318,1,57.27,38.41,4,3,0,0,8,1,1,327.5,0,0,0 +7330,8991,16374,16373,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,1,0,0,0,1,0,-9,46,0,9,0,0,0,0,74,1,4,3,2,1,2019,4,2,17,4,0,0,15,4,4,3,0,0,0,1,4.810808166151242,9.522400080350668,0,0,0,0,1,1,0,6.16482920606407,0,0,0,49.8,19.67,5,3,0,0,8,1,1,327.5,0,0,0 +7331,8992,16375,16376,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,4,8.699363112944189,8.475225144900078,0,1,0,-9,5,0,-2,6.201417515909713,0,0,0,44,2,4,1,-9,-9,2019,1,1,6,0,38,42,15,1,0,1,0,14.34007554707791,14.34007554707791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,7,5,0,421.5,0,0,0 +7331,8992,16376,16375,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,4,8.100188941858628,7.992442567456905,0,1,0,-9,5,0,2,81.80369635009697,0,0,1,42,2,4,1,2,2,2019,1,2,19,6,40,40,15,1,6,1,0,9.083241126693572,9.083241126693572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.8,60.3,6,1,0,0,7,5,0,421.5,0,0,0 +7332,8993,16377,16378,-9,-9,1,1,0,60,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,32,0,-1,-46.08841348304367,0,0,0,61,3,3,1,-9,-9,2019,3,2,15,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.78,17.81,2,1,0,0,6,4,0,510.5,0,0,0 +7332,8993,16378,16377,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,3,8.053909550470696,8.323585977452469,0,1,0,-9,33,0,1,-91.29894308102942,0,0,0,60,3,1,3,3,2,2019,2,1,10,1,40,0,15,1,1,3,0,10.7921203650756,10.7921203650756,0,0,0,0,0,0,0,1,1,0,0,0,0,2,43.61,56.01,2,1,0,0,6,4,0,510.5,0,0,0 +7333,8994,16379,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,5,0,7.184243609429887,7.010391027760491,3,0,0,0,-9,0,-965.2649356921337,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9313497018512413,7.292514758746071,0,0,62.39,56.71,7,1,0,0,11,2,1,100,0,0,0 +7334,8995,16380,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1078.910874863265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6677637351655996,0,0,0,45.18,33.51,6,1,0,0,2,1,0,336,0,0,0 +7335,8996,16381,16382,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.207046729891994,8.331055928068247,0,1,0,-9,2,0,1,-37.56672109358163,0,1,1,26,2,4,1,-9,-9,2019,1,1,11,0,38,43,15,1,0,1,0,12.5265485478444,12.5265485478444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,4,5,1,833.5,0,0,0 +7335,8996,16382,16381,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,4,8.227002824253701,7.914643794396339,0,1,0,-9,2,0,-1,55.31464770174462,-9,1,0,27,1,4,1,-9,-9,2019,1,2,12,0,38,0,15,1,0,1,0,11.18512112339749,11.18512112339749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,833.5,0,0,0 +7336,8997,16383,16384,-9,-9,2,1,0,54,1,0,2,0,1,-9,2,1,0,3,7.311360546545069,7.612211153128722,0,2,0,-9,1,-9,-6,15.16118572382262,-9,0,0,60,1,3,1,2,2,2019,1,1,9,0,50,0,15,1,0,1,0,6.380457733983797,6.380457733983797,0,0,0,0,0,0,0,1,1,0,7.832722360341939,0,0,0,59.32,36.25,5,1,0,0,13,4,1,554.3333333333334,0,0,0 +7336,8997,16384,16383,-9,-9,1,1,1,60,1,0,2,0,1,-9,1,1,0,3,8.775033463337529,8.495379685833601,0,2,0,-9,1,-9,6,38.70541905177233,-9,0,0,54,1,3,1,2,2,2019,1,2,12,1,20,0,15,1,1,1,0,32.77428925413286,32.77428925413286,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,3,1,0,0,13,4,1,554.3333333333334,0,0,0 +7336,8997,16385,-9,16383,16384,5,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1043.129373436759,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,554.3333333333334,0,0,0 +7337,8998,16386,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,1,1,0,4,8.356749925693062,8.610794756657945,0,3,0,0,0,-9,0,-958.8094557397649,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.340415364492676,0,0,0,42.73,54.46,5,1,0,0,8,5,1,105,0,0,0 +7338,8999,16387,16388,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,1,7.049008623715622,7.129845770793607,0,1,0,-9,37,0,2,98.4650096609882,0,0,0,61,2,3,1,3,3,2019,1,2,12,1,22,27,15,1,1,1,0,8.563561259690889,8.563561259690889,0,0,0,0,0,0,0,0,0,0,.38522066354808,0,0,0,58.88,17.57,6,1,0,0,4,4,1,1326.5,0,0,0 +7338,8999,16388,16387,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.229364853750884,8.167296236361674,0,1,0,-9,10,0,-2,-24.94486408079908,0,0,0,63,2,1,1,-9,-9,2019,1,1,10,0,37,40,15,1,1,1,0,11.86637646821495,11.86637646821495,0,0,0,0,0,0,0,0,0,0,5.428308029351411,0,0,1,50,49,5,1,0,0,4,4,1,1326.5,0,0,0 +7339,9000,16389,16390,-9,-9,3,1,1,56,1,0,1,0,3,-9,1,1,0,3,9.319496915896128,9.178632264918228,0,2,0,-9,8,0,7,6.213263156739917,0,0,0,49,1,2,1,-9,-9,2019,1,1,11,1,45,50,15,1,1,1,0,27.7033489478136,27.7033489478136,0,0,0,0,0,0,0,0,0,0,6.534409188254957,0,0,0,56.11,44.4,6,1,0,1,9,5,1,551,0,0,0 +7339,9000,16390,16389,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,2,8.799566498017649,8.821336496467373,0,2,0,-9,8,0,-7,-86.5764847310041,0,0,0,56,3,3,1,2,2,2019,1,3,24,12,37,38,15,1,12,1,0,23.48622618056744,23.48622618056744,0,0,0,0,0,0,0,0,0,0,3.774548401906578,0,15.99361533414151,3,32.47,49.12,4,1,0,1,9,5,1,551,0,0,0 +7340,9001,16391,16392,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,7.829583484117768,7.649860459265795,0,2,0,-9,8,0,2,41.16765939640799,0,0,0,47,2,3,1,2,2,2019,1,2,2,0,38,0,15,1,0,1,0,5.939748910758074,5.939748910758074,0,0,0,0,0,0,0,1,1,0,5.218397404796248,0,0,0,43.71,56.91,5,1,0,0,13,4,1,530.3333333333334,0,0,0 +7340,9001,16392,16391,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,3,8.586393374730555,8.499114629248377,0,2,0,-9,8,0,-2,132.6746134386772,0,0,0,49,2,3,1,2,2,2019,1,1,24,11,38,37,15,1,11,1,0,18.16293159601385,18.16293159601385,0,0,0,0,0,0,0,1,1,0,4.914252214980862,0,0,0,29.03,58.4,6,1,0,0,13,4,1,530.3333333333334,0,0,0 +7340,9001,16393,-9,16392,16391,4,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.78138507328,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.94,45.55,7,1,0,1,13,4,1,530.3333333333334,0,0,0 +7340,9002,16394,-9,16392,16391,3,1,0,21,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1035.20229287521,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,1,13,1,1,479,0,0,0 +7341,9003,16395,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-983.0808392874088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.42,46.51,6,1,0,0,13,1,0,1432,0,0,0 +7342,9004,16396,-9,16397,16400,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.849925274983,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,642.8,0,0,0 +7342,9004,16397,16400,-9,-9,2,1,0,37,1,1,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,13,0,-10,7.291916367056123,0,0,1,47,3,3,1,3,2,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.83997422316305,3,39.39,57.52,5,3,0,1,8,2,0,642.8,0,0,0 +7342,9004,16398,-9,16397,16400,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-902.1554058644765,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,642.8,0,0,0 +7342,9004,16399,-9,16397,16400,3,1,0,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.986602950577,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,642.8,0,0,0 +7342,9004,16400,16397,-9,-9,1,1,1,47,1,1,3,0,3,-9,2,1,0,3,6.972430661009122,7.015093519804728,0,2,0,-9,13,0,10,73.2689867244454,0,0,0,37,1,4,3,3,-9,2019,2,2,11,1,30,30,15,1,1,3,0,4.096419517137997,4.096419517137997,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,3,0,0,8,2,0,642.8,0,0,0 +7343,9005,16401,-9,-9,-9,1,1,0,37,3,1,1,0,2,-9,2,1,0,2,8.22964163987028,8.463036451127566,0,4,0,0,0,-9,0,-950.2206561004045,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,39,40,15,1,0,-9,0,13.80168443030484,13.80168443030484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.87,45.95,6,1,0,0,8,4,0,624.5,0,0,0 +7343,9005,16402,-9,16401,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1070.088703641719,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,8,4,0,624.5,0,0,0 +7344,9006,16403,16404,-9,-9,3,1,0,62,1,0,0,0,1,-9,8,3,1,1,8.707317373514599,8.307297171450221,0,1,0,-9,28,0,-3,45.55744384395233,0,0,0,65,1,5,3,2,1,2019,4,1,20,9,0,30,15,3,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.336720703692456,0,0,0,38.07,27.51,3,1,0,0,8,5,1,344.5,0,0,0 +7344,9006,16404,16403,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,5,0,8.260614327359965,8.138791432423687,1,0,-9,28,0,3,-186.9392196157372,0,0,0,62,1,1,3,3,2,2019,4,3,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,8.115161580907388,8.096493871422426,.3660259828404966,1,39.31,63.19,6,1,0,0,8,5,1,344.5,0,0,0 +7345,9007,16405,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,3.456246516729245,3.207011759690435,3,0,0,0,-9,0,-1080.015507585858,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.480209921526821,3.417025932819823,0,0,51.43,26.65,5,1,0,0,5,1,1,102,0,0,0 +7345,9008,16406,-9,-9,-9,2,1,1,64,3,0,0,0,2,-9,4,3,0,3,0,7.837200237210791,8.194799352067831,3,0,0,0,-9,0,-1006.487028776834,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.708927058743873,8.060619119528734,0,0,59.01,44.42,6,1,0,0,5,4,1,913,0,0,0 +7346,9009,16407,16408,-9,-9,2,1,0,72,1,0,0,0,1,-9,2,1,0,4,8.052063083223851,8.543100967548265,7.629183635630798,1,0,-9,9,0,-2,102.1170190097264,0,0,0,74,1,3,3,2,2,2019,2,1,5,0,31,34,15,1,0,4,0,10.29664046302589,10.29664046302589,0,0,0,0,0,0,0,1,1,0,1.17323254493682,7.568249511110006,0,0,57.16,56.15,6,1,0,0,2,5,1,438.5,0,0,0 +7346,9009,16408,16407,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,5.014209462115002,7.676607285181125,7.710531232182007,1,0,-9,9,0,2,108.1945792128846,0,0,0,72,1,4,1,2,1,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.595343341995152,8.046073211794724,0,0,58.73,27.15,6,1,0,0,2,5,1,438.5,0,0,0 +7347,9010,16409,-9,16413,16411,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.188826192342,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,2,0,888.4,0,0,0 +7347,9010,16410,-9,16413,16411,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.6008756473224,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,2,0,888.4,0,0,0 +7347,9010,16411,16413,-9,-9,5,1,1,50,1,0,3,0,2,-9,2,1,0,4,8.0149368875562,8.0942562343735,0,2,0,-9,7,0,3,74.99743427668476,0,0,0,47,3,2,1,-9,-9,2019,1,1,12,1,41,0,15,1,1,1,0,7.189430511496395,7.189430511496395,0,0,0,0,0,0,0,1,1,0,0,0,2.169083301656356,3,51.49,57.57,4,1,0,0,8,2,0,888.4,0,0,0 +7347,9010,16412,-9,16413,16411,2,1,1,16,2,0,3,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-947.9671291016814,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.06,43.51,6,1,0,0,8,2,0,888.4,0,0,0 +7347,9010,16413,16411,-9,-9,1,1,0,47,1,0,3,0,3,-9,1,1,0,2,6.3112873558551,6.527907436900534,0,2,0,-9,7,0,-3,-74.70779111489368,0,0,0,50,2,4,1,-9,-9,2019,1,5,26,9,7,0,15,1,9,1,0,11.94523305429193,11.94523305429193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,41.43,7,1,0,1,8,2,0,888.4,0,0,0 +7348,9011,16414,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1005.102316479559,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.128764920374602,0,1.820877212370892,3,47.72,55.04,5,2,1,0,8,1,1,657,0,0,0 +7348,9012,16415,-9,-9,-9,4,1,1,49,2,0,0,0,2,-9,2,1,0,4,8.364973444879475,8.459513770384644,0,3,0,0,0,-9,0,-973.4070117093797,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,35,15,1,0,-9,0,13.71199663544183,13.71199663544183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,3,4,0,0,8,5,1,528,0,0,0 +7349,9013,16416,-9,-9,-9,1,1,1,32,3,0,0,0,1,-9,2,1,0,5,8.821506927239962,9.058444545700425,0,3,0,-9,0,1,0,-1092.965491150651,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,44,45,15,1,0,-9,0,20.37563835864557,20.37563835864557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,6,1,0,0,12,5,1,696,0,0,0 +7350,9014,16417,16418,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.337815528660503,8.773091971859317,7.669256708296304,1,0,-9,33,0,1,103.8329648943661,0,0,0,58,1,4,3,2,3,2019,2,1,7,0,40,50,15,1,0,4,0,15.31026553591456,15.31026553591456,0,0,0,0,0,0,0,1,1,0,7.078054094141413,7.959497616733999,0,0,54.58,51.82,6,1,0,0,2,5,1,1160,0,0,0 +7350,9014,16418,16417,-9,-9,1,1,0,58,1,0,0,0,1,-9,4,3,0,4,0,6.996097742123514,6.713434028063243,1,0,-9,33,0,-1,-110.7196612126373,0,0,0,59,1,4,1,2,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.889861706510774,6.622912013198259,53.08406384549372,3,52.46,47.23,6,1,0,0,2,5,1,1160,0,0,0 +7350,9015,16419,-9,16418,16417,3,1,1,26,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-893.3711782206252,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.98,52.88,4,1,1,0,2,1,1,1577,0,0,0 +7350,9016,16420,-9,16418,16417,4,1,0,22,2,0,0,0,1,1,3,3,0,3,7.16533436519843,7.150427024454856,0,3,0,0,0,-9,0,-861.2016843800136,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.57,55.98,5,1,1,0,2,2,1,214,0,0,0 +7351,9017,16421,-9,16424,16423,5,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.525476365709,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,6,3,0,800.75,0,0,0 +7351,9017,16422,-9,16424,16423,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.5873412681507,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,6,3,0,800.75,0,0,0 +7351,9017,16423,16424,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.451006657703939,8.624794130139882,0,2,0,-9,19,0,-5,-26.43031124845579,0,0,0,42,2,4,3,-9,3,2019,2,1,6,0,45,0,15,1,0,3,0,11.96301173228498,11.96301173228498,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,1,1,0,0,6,3,0,800.75,0,0,0 +7351,9017,16424,16423,-9,-9,1,1,0,42,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,17,0,5,20.33275335055396,0,0,1,37,2,4,1,3,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,7,1,1,0,6,3,0,800.75,0,0,0 +7352,9018,16425,16426,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,6.982086203678763,7.053187837693121,1,0,-9,6,0,0,7.103055351420704,0,0,0,72,1,2,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.467199654871243,6.630125296007375,0,0,42.16,60.15,6,1,0,0,11,3,1,381,0,0,0 +7352,9018,16426,16425,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,2,0,7.742813542479102,7.983547768944844,1,0,-9,6,0,9,128.356681513082,0,0,0,63,2,4,3,3,3,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,1,0,7.917119489274655,0,0,0,0,1,1,0,4.437850098976945,8.370772635250301,0,0,51.16,29.58,6,1,0,0,11,3,1,381,0,0,0 +7353,9019,16427,16428,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,7.98427806798071,8.45598640375756,1,0,-9,48,0,-1,118.6167072669401,0,0,0,65,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.65691569285398,8.402387851786964,11.57751905065214,3,63.41,42.4,4,1,0,0,5,4,1,130,0,0,0 +7353,9019,16428,16427,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,5.466534323747274,5.379209911194502,1,0,-9,48,0,1,-10.85331655967299,0,0,0,64,2,3,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.323870543930966,5.384057088141068,21.99080049274745,3,54.96,53.17,7,1,0,0,5,4,1,130,0,0,0 +7354,9020,16429,-9,16430,16431,3,1,1,11,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.652474092032,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,0,1138.75,0,0,0 +7354,9020,16430,16431,-9,-9,2,1,0,36,1,1,2,0,2,-9,6,3,0,3,0,4.496485266924076,4.794255424215105,2,0,-9,2,0,0,57.42227229820833,0,0,1,36,2,3,1,-9,-9,2019,3,1,13,1,0,20,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.757069362136663,0,83.7804059481268,3,18.56,60.6,3,1,0,0,10,2,0,1138.75,0,0,0 +7354,9020,16431,16430,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,3,7.339524811049189,7.543660107514606,0,2,0,-9,2,0,0,18.11591093050608,0,0,0,36,2,3,3,1,1,2019,2,2,15,4,20,21,15,1,4,3,0,11.95813381403354,11.95813381403354,0,0,0,0,0,0,0,1,1,0,0,0,131.4745841742015,3,31.52,52,4,1,0,0,10,2,0,1138.75,0,0,0 +7354,9020,16432,-9,16430,16431,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1141.124944748664,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,0,1138.75,0,0,0 +7355,9021,16433,-9,-9,-9,1,1,0,39,2,0,1,0,1,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-977.7857419996812,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.6,41.68,5,1,0,0,4,1,0,456,0,0,0 +7356,9022,16434,16435,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.179862671898633,7.21903542955296,1,0,-9,25,0,9,-17.60482169341915,0,0,0,54,2,3,1,2,2,2019,3,2,10,1,0,27,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.64140875524041,7.209437627566956,10.06545147040755,3,57.74,33.09,6,1,0,0,11,5,1,320,0,0,0 +7356,9022,16435,16434,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.87258288483577,8.878573639349227,0,1,0,-9,24,0,0,-8.019648820327854,0,0,0,63,2,3,3,2,2,2019,2,1,9,0,80,70,15,1,0,4,0,10.34427239725524,10.34427239725524,0,0,0,0,0,0,0,0,0,0,0,0,2.432395149460607,3,57.33,53.46,6,1,0,0,11,5,1,320,0,0,0 +7357,9023,16436,16437,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.668274285956334,8.449314438355266,0,2,0,-9,19,0,5,37.42472436500738,0,0,0,42,1,4,1,3,2,2019,1,2,10,0,40,40,15,1,0,1,0,13.60157655902194,13.60157655902194,0,0,0,0,0,0,0,1,1,0,3.396993094728645,0,0,3,54.2,57.49,6,1,0,0,10,4,1,543.25,0,0,0 +7357,9023,16437,16436,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.552217821680545,9.010167021748668,0,2,0,-9,19,0,-5,63.46455999108448,0,0,1,47,1,4,1,2,2,2019,1,1,10,0,33,34,15,1,0,1,0,18.15912776416544,18.15912776416544,0,0,0,0,0,0,0,1,1,0,0,0,.765513803321995,3,48.87,58.55,6,1,0,0,10,4,1,543.25,0,0,0 +7357,9023,16438,-9,16437,16436,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1022.956358227044,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,10,4,1,543.25,0,0,0 +7357,9023,16439,-9,16437,16436,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-999.5372903873532,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,10,4,1,543.25,0,0,0 +7358,9024,16440,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,2,1,0,4,7.828147783099706,8.017572492803755,7.125568263416441,3,0,0,0,-9,0,-1046.149299329005,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,20,0,15,1,0,-9,0,14.09057542713112,14.09057542713112,0,0,0,0,0,0,0,1,1,0,0,7.081659598789622,0,0,53.16,54.06,6,1,0,0,2,4,1,403,0,0,0 +7359,9025,16441,16443,-9,-9,2,1,1,38,1,1,2,0,1,-9,1,1,0,3,8.868952247971759,9.01137683095631,3.160482965358086,2,0,-9,14,0,0,-9.297271191666475,0,0,0,38,1,3,1,2,2,2019,1,1,4,1,26,40,15,1,1,1,0,33.85013879025276,33.85013879025276,0,0,0,0,0,0,0,1,1,0,3.050247306888901,0,0,0,51.41,56.15,6,1,0,0,2,4,1,1503.333333333333,0,0,0 +7359,9025,16442,-9,16443,16441,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.0719794030327,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,1503.333333333333,0,0,0 +7359,9025,16443,16441,-9,-9,1,1,0,38,1,1,2,0,1,-9,1,1,0,3,6.193255821616882,6.158006004760902,0,2,0,-9,18,0,0,53.63627116162687,0,0,1,38,1,3,1,2,2,2019,1,2,11,0,18,20,15,1,0,1,0,3.436735610262577,3.436735610262577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,2,1,0,0,2,4,1,1503.333333333333,0,0,0 +7360,9026,16444,-9,16446,16445,5,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.798296799484,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,5,5,1,1041,0,0,0 +7360,9026,16445,16446,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,4,9.068456128759298,9.379045072178032,0,2,0,-9,23,0,-1,36.37439357928195,0,0,0,44,1,5,1,2,2,2019,1,1,9,0,45,45,15,1,1,1,0,26.36299154565447,26.36299154565447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,6,1,0,0,5,5,1,1041,0,0,0 +7360,9026,16446,16445,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,5,8.235853830020989,8.323494804828574,0,2,0,-9,23,0,1,82.54198955597587,0,0,1,43,1,4,1,1,2,2019,1,2,7,0,34,41,15,1,0,1,0,14.06628154342263,14.06628154342263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,7,1,0,0,5,5,1,1041,0,0,0 +7360,9026,16447,-9,16446,16445,3,1,0,17,2,0,3,1,2,0,7,2,0,3,5.650593750515402,5.702083283146099,0,2,0,0,0,-9,0,-1112.501179434369,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,49.75,7,1,0,0,5,5,1,1041,0,0,0 +7360,9026,16448,-9,16446,16445,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.143555307554,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,5,5,1,1041,0,0,0 +7361,9027,16449,-9,16451,16450,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.358437483692,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,1065,0,0,0 +7361,9027,16450,16451,-9,-9,2,1,1,36,1,0,1,0,3,-9,2,1,0,4,8.602506931811307,8.310932978374664,0,2,0,-9,5,0,-2,9.190814512341239,0,0,0,38,2,4,1,-9,-9,2019,1,1,10,3,48,95,15,1,3,1,0,9.933114929678174,9.933114929678174,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.11,45.63,6,1,0,0,9,4,0,1065,0,0,0 +7361,9027,16451,16450,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,4,7.769768909558122,7.55744037007465,0,2,0,-9,5,0,2,108.8217824644196,0,0,1,36,3,4,1,3,2,2019,1,2,10,0,25,30,15,1,0,1,0,7.445228172344316,7.445228172344316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.44,41.09,5,1,0,0,9,4,0,1065,0,0,0 +7362,9028,16452,16453,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,37,0,3,0,0,0,0,59,3,1,3,3,3,2019,4,2,30,10,0,0,15,4,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.7564057129441,2,27.41,25.55,1,1,0,1,13,1,0,3660.5,0,0,0 +7362,9028,16453,16452,-9,-9,2,1,0,59,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,37,0,-3,0,0,0,0,62,3,1,3,3,3,2019,4,1,34,12,0,0,15,3,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.64,19.88,1,1,0,1,13,1,0,3660.5,0,0,0 +7363,9029,16454,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,7.310943280260523,7.401311979518302,3,0,0,0,-9,0,-962.4527830825754,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.307180704016457,7.320381934948158,0,0,58.33,39.49,6,1,0,0,7,3,1,314,0,0,0 +7364,9030,16455,-9,-9,-9,1,1,1,56,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1011.076299027569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,28.81,4,1,0,1,13,1,0,781,0,0,0 +7364,9030,16456,-9,-9,16455,2,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-859.6636306660814,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,1,13,1,0,781,0,0,0 +7365,9031,16457,16458,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.219552856638543,8.271706421880097,0,1,0,-9,5,0,4,-70.79493466348671,0,0,0,46,3,2,1,3,2,2019,1,2,6,0,34,37,15,1,0,1,0,11.51134731378513,11.51134731378513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,10,4,1,676.5,0,0,0 +7365,9031,16458,16457,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,2,8.306596467134824,8.283800250880294,0,1,0,-9,5,0,-4,5.086467148508615,0,0,0,50,1,4,1,-9,-9,2019,1,1,9,0,50,47,15,1,0,1,0,6.659993222793731,6.659993222793731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.65,52.38,6,1,0,0,10,4,1,676.5,0,0,0 +7366,9032,16459,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,0,6.749491766220855,7.203150148423937,3,0,0,0,-9,0,-909.4067874345477,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,7.974681751769294,0,0,0,0,29.97724582189167,1,1,0,0,7.019711050172052,0,0,52.72,18.23,5,1,0,0,9,2,1,220,0,0,0 +7367,9033,16460,-9,16464,16462,4,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-873.0446300483968,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,6,4,1,1640,0,0,0 +7367,9033,16461,-9,16464,16462,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1124.577135525894,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,6,4,1,1640,0,0,0 +7367,9033,16462,16464,-9,-9,1,1,1,43,1,0,3,0,2,-9,2,1,0,3,8.562406409920046,8.632945653305946,0,2,0,-9,7,0,3,2.737721677791065,0,0,0,40,2,4,1,3,3,2019,1,2,12,0,38,39,15,1,0,1,0,15.37841947314575,15.37841947314575,0,0,0,0,0,0,0,1,1,0,0,0,1.829305750521386,3,50.26,49.78,6,3,0,0,6,4,1,1640,0,0,0 +7367,9033,16463,-9,16464,16462,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.809433201733,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,4,1,1640,0,0,0 +7367,9033,16464,16462,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,4,7.153938622373329,7.457321193029874,0,2,0,-9,7,0,-3,-25.98350360616903,0,0,1,43,2,3,1,3,3,2019,1,1,8,0,23,23,15,1,0,1,0,8.19302332379274,8.19302332379274,0,0,0,0,0,0,0,1,1,0,0,0,0,3,36.69,58.04,6,3,0,0,6,4,1,1640,0,0,0 +7368,9034,16465,16466,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,2,8.453379271630807,8.302904725690551,0,1,0,-9,4,0,-4,-48.05979616946261,0,0,1,36,2,2,1,2,-9,2019,1,2,29,12,40,43,15,1,12,1,0,13.42608166409813,13.42608166409813,0,0,0,0,0,0,0,0,0,0,1.237123810018686,0,2.019901610455219,3,23.38,42.28,2,1,0,0,9,4,1,819.5,0,0,0 +7368,9034,16466,16465,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,2,7.865964928289548,7.67944373499443,0,1,0,-9,4,0,4,120.3745109945014,0,0,0,32,2,2,1,-9,-9,2019,1,1,25,11,40,42,15,1,11,1,0,5.233626399825313,5.233626399825313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.76,38.13,3,1,0,1,9,4,1,819.5,0,0,0 +7369,9035,16467,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,3,0,7.675798287941752,7.866385354252952,3,0,0,0,-9,0,-1168.966082873817,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.287889256733706,7.7121417435162,0,0,62.68,33.3,6,1,0,0,1,3,1,453,0,0,0 +7370,9036,16468,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,4,8.574148641730986,8.652787539609379,0,3,0,0,0,-9,0,-894.7713901666871,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,30,20,15,1,3,-9,0,20.46724611287623,20.46724611287623,0,0,0,0,0,0,0,0,0,0,9.789049103353337,0,0,0,31.77,61.1,6,1,0,0,8,5,1,578,0,0,0 +7371,9037,16469,-9,16470,16472,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.5931947212232,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,740,0,0,0 +7371,9037,16470,16472,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,3,6.781854550574047,7.202994901599196,6.400646181146732,2,0,-9,10,0,11,-70.28944934771998,0,0,1,29,2,3,1,-9,-9,2019,1,1,9,0,16,20,15,1,0,1,0,7.001920475870866,7.001920475870866,0,0,0,0,0,0,0,1,1,0,6.403291141747395,0,0,0,49.04,55.86,6,1,0,0,2,4,1,740,0,0,0 +7371,9037,16471,-9,16470,16472,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.534626359474,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,740,0,0,0 +7371,9037,16472,16470,-9,-9,1,1,1,29,1,0,3,0,2,-9,2,1,0,3,8.522659244150967,8.565193188604789,0,2,0,-9,10,0,-11,12.33391068140519,0,1,0,40,2,3,1,2,3,2019,1,2,12,0,42,45,15,1,0,1,0,20.99071409314297,20.99071409314297,0,0,0,0,0,0,0,1,1,0,4.588698579611659,0,0,0,38.63,56.7,6,1,0,0,2,4,1,740,0,0,0 +7371,9037,16473,-9,16470,-9,3,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1010.870608123037,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,2,4,1,740,0,0,0 +7372,9038,16474,16475,-9,-9,2,1,1,50,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,6,0,1,-94.8829436554757,0,0,0,49,2,4,1,3,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,1,0,11,3,1,527.6666666666666,0,0,0 +7372,9038,16475,16474,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,4,7.933705787572261,7.819597765377378,0,2,0,-9,6,0,-1,-127.9097342180657,0,0,0,50,3,4,3,2,2,2019,2,2,7,0,32,32,15,1,0,3,0,14.01294692558456,14.01294692558456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.42,51.42,6,1,0,0,11,3,1,527.6666666666666,0,0,0 +7372,9038,16476,-9,16475,16474,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1144.442526690359,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,3,1,527.6666666666666,0,0,0 +7373,9039,16477,-9,-9,-9,1,1,1,28,3,0,0,0,1,-9,2,1,0,5,8.429928041206612,8.358708927970497,0,3,0,0,0,-9,0,-1078.630415449342,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,50,60,15,1,0,-9,0,9.930733607695764,9.930733607695764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,31.46,6,1,0,0,2,4,1,809,0,0,0 +7374,9040,16478,16480,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,2,8.159880308986114,8.259408658054978,0,2,0,-9,21,0,-7,-71.73196066777803,0,0,1,46,2,4,1,3,3,2019,1,1,24,8,55,55,15,1,8,1,0,6.027633588200141,6.027633588200141,0,0,0,0,0,0,0,1,1,0,0,0,118.5545530730309,3,11.01,53.59,2,1,0,0,2,4,1,200.6666666666667,0,0,0 +7374,9040,16479,-9,16478,16480,3,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-958.8070579244271,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,2,4,1,200.6666666666667,0,0,0 +7374,9040,16480,16478,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.340403382025642,8.094382392800144,0,2,0,-9,21,0,7,103.8333131104141,0,0,0,39,1,2,1,3,3,2019,1,2,11,0,61,40,15,1,0,1,0,8.296784854492191,8.296784854492191,0,0,0,0,0,0,0,1,1,0,0,0,2.091568572638752,3,48.28,60.18,6,1,0,0,2,4,1,200.6666666666667,0,0,0 +7375,9041,16481,16482,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,7.516778546327489,7.676017890459674,1,0,-9,39,0,1,-77.2435947768716,0,0,0,66,1,5,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.065399561668394,7.638173339908112,0,0,57.16,56.15,7,1,0,0,4,3,1,939.5,0,0,0 +7375,9041,16482,16481,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,5,0,7.711634349572155,7.807033361878798,1,0,-9,39,0,-1,-76.4598882020037,0,0,0,67,1,4,3,2,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.361906280506168,7.597245081296093,0,0,51.79,55.99,6,1,0,0,4,3,1,939.5,0,0,0 +7376,9042,16483,16484,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-3,6.762914757767133,0,0,0,69,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.89,44.94,6,1,0,1,12,2,0,266,0,0,0 +7376,9042,16484,16483,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,6.494743151025497,6.763637188290597,1,0,-9,51,0,3,57.39799477934951,0,0,0,66,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.720590654784194,0,0,41.17,59.31,7,1,0,0,12,2,0,266,0,0,0 +7377,9043,16485,-9,16487,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-990.4006759025217,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,1,1,0,595.6666666666666,0,0,0 +7377,9043,16486,-9,16487,-9,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.495917662712,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,1,0,595.6666666666666,0,0,0 +7377,9043,16487,-9,-9,-9,1,1,0,25,3,1,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-953.7502905896968,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,6,1,0,0,1,1,0,595.6666666666666,0,0,0 +7378,9044,16488,16489,-9,-9,1,1,0,41,1,0,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,4,0,4,12.10960804013837,0,0,1,37,2,3,1,2,-9,2019,3,6,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.08,57.81,3,2,0,0,9,3,0,708.25,0,0,0 +7378,9044,16489,16488,-9,-9,6,1,1,37,1,0,4,0,2,-9,2,1,0,3,8.573625638198344,8.164114503480326,0,2,0,-9,4,0,-4,-14.3304469116313,-9,0,0,41,2,3,3,-9,-9,2019,2,1,10,0,46,0,15,1,0,3,0,12.38924116148868,12.38924116148868,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.61,54.24,6,1,0,0,9,3,0,708.25,0,0,0 +7378,9044,16490,-9,16488,16489,7,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.293084549402,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,9,3,0,708.25,0,0,0 +7378,9044,16491,-9,16488,16489,5,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.7576904216022,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,9,3,0,708.25,0,0,0 +7378,9045,16492,-9,16488,16489,2,1,1,18,2,0,4,0,2,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-876.8110187154068,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.76,50.87,4,2,0,0,9,1,0,325,0,0,0 +7379,9046,16493,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,3,0,6.486334819746128,6.569669462568067,3,0,0,0,-9,0,-864.6368305256817,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.395383351579025,0,0,30.97,45.17,3,1,0,0,10,2,0,665,0,0,0 +7380,9047,16494,16495,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,6.433364035606721,6.679686122413914,1,0,-9,49,0,2,47.70513507345326,0,0,0,68,1,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.546342877260177,6.678411013993418,0,0,57.16,56.15,5,1,0,0,2,2,1,578.5,0,0,0 +7380,9047,16495,16494,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,2,0,6.417693312608751,6.504722946445836,1,0,-9,49,0,-2,37.32700480736986,0,0,0,70,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.279822398529284,6.635607039059535,0,0,59,31.19,6,1,0,0,2,2,1,578.5,0,0,0 +7381,9048,16496,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,6.83822890931653,6.870999875628772,3,0,0,0,-9,0,-983.467788250684,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.356464255520698,6.770162706892709,0,0,61.44,37.81,5,1,0,0,9,2,1,841,0,0,0 +7382,9049,16497,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,4,7.413842880162196,6.975365357076645,0,3,0,0,0,-9,0,-956.5312007270076,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,4,16,22,15,1,4,-9,0,10.88344971597742,10.88344971597742,0,0,0,0,0,0,0,0,0,0,0,0,34.92185734362485,3,49.51,40.54,2,3,0,0,8,3,0,312,0,0,0 +7383,9050,16498,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-928.1965302910475,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.12,27.25,6,1,0,0,5,1,0,1857,0,0,0 +7384,9051,16499,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1036.536374406873,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,8.545378343875493,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,13,1,0,582,0,0,0 +7385,9052,16500,16503,-9,-9,1,1,0,49,1,0,3,0,1,-9,2,1,0,4,8.563971402048605,9.071452429423029,0,2,0,-9,6,0,2,75.19873325392433,0,0,0,47,1,4,1,2,2,2019,1,2,10,0,52,0,15,1,0,1,0,14.16392969950868,14.16392969950868,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,5,1,0,0,4,5,1,816.5,0,0,0 +7385,9052,16501,-9,16500,16503,5,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.6479936394616,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,5,1,816.5,0,0,0 +7385,9052,16502,-9,16500,16503,4,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.582504474287,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,5,1,816.5,0,0,0 +7385,9052,16503,16500,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,4,9.010990058870618,9.038880660186576,0,2,0,-9,6,0,-2,-112.297723356351,0,0,0,49,1,4,1,2,2,2019,1,1,6,0,50,0,15,1,0,1,0,22.98495455098413,22.98495455098413,0,0,0,0,0,0,0,1,1,0,.1185358611872553,0,0,0,57.16,56.15,6,1,0,0,4,5,1,816.5,0,0,0 +7385,9053,16504,-9,16500,16503,3,1,0,18,2,0,3,0,2,0,7,2,0,3,0,3.653510643678028,3.581079735686815,3,0,0,0,-9,0,-1139.628471511976,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.66662323768106,0,0,0,29.94,48.64,2,1,0,0,4,5,1,245,0,0,0 +7386,9054,16505,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,5,0,7.152861502681113,7.551849317327736,3,0,0,0,-9,0,-1123.826881029682,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.742310169255436,0,0,50.8,56.4,6,1,0,0,9,3,1,274,0,0,0 +7387,9055,16506,-9,-9,-9,1,1,1,24,2,0,0,0,3,-9,2,1,0,4,7.226633603579177,7.059774759620152,0,3,0,0,0,-9,0,-934.9776618100226,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,35,28,15,1,0,-9,0,4.509206287804818,4.509206287804818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.17,50.6,2,1,0,1,1,2,0,321,0,0,0 +7388,9056,16507,16508,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.588705141321988,8.505060998124716,0,1,0,-9,26,0,3,37.94019366232033,0,0,0,57,2,2,1,3,3,2019,1,2,13,3,36,36,15,1,3,1,0,17.2549941826816,17.2549941826816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.15,42.59,6,1,0,0,11,5,1,1299.5,0,0,0 +7388,9056,16508,16507,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,2,7.83383929033253,7.928610481735648,0,1,0,-9,8,0,-3,-121.2479530209246,0,0,0,60,2,4,1,2,2,2019,1,1,11,0,32,32,15,1,0,1,0,9.824903095916451,9.824903095916451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.76,32.12,5,1,0,0,11,5,1,1299.5,0,0,0 +7389,9057,16509,-9,16510,16514,6,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.7436923043407,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,2,1,839.1666666666666,0,0,0 +7389,9057,16510,16514,-9,-9,1,1,0,44,1,0,4,0,1,-9,2,1,0,4,6.049069129937974,6.083780822901023,0,2,0,-9,19,0,1,53.16595447960011,0,0,1,43,2,3,1,2,2,2019,1,2,7,0,10,15,15,1,0,1,0,4.592833767288221,4.592833767288221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,2,1,839.1666666666666,0,0,0 +7389,9057,16511,-9,16510,16514,5,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-884.7566738463684,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,2,1,839.1666666666666,0,0,0 +7389,9057,16512,-9,16510,16514,3,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.4993074281351,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,1,839.1666666666666,0,0,0 +7389,9057,16513,-9,16510,16514,4,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.283723324949,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,1,839.1666666666666,0,0,0 +7389,9057,16514,16510,-9,-9,2,1,1,43,1,0,4,0,2,-9,2,1,0,3,7.930018488754008,7.590458759704819,0,2,0,-9,21,0,-1,-39.29284455118066,0,0,0,44,1,4,1,2,2,2019,1,1,7,0,37,55,15,1,0,1,0,6.616346611459293,6.616346611459293,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,9,2,1,839.1666666666666,0,0,0 +7390,9058,16515,16516,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.917486092052616,9.278667897127201,0,1,0,-9,30,0,2,-9.565153233022158,0,0,0,49,3,3,1,3,3,2019,1,2,12,0,78,75,15,1,0,1,0,12.18850150677206,12.18850150677206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,5,1,0,0,6,5,1,249.5,0,0,0 +7390,9058,16516,16515,-9,-9,2,1,0,49,1,0,0,0,3,-9,2,1,0,3,6.834535237862331,6.826041057895609,0,1,0,-9,30,0,-2,-30.76469252564316,0,0,0,51,2,3,1,2,2,2019,1,1,14,2,15,0,15,1,2,1,0,8.916503747580888,8.916503747580888,0,0,0,0,0,0,0,0,0,0,0,0,123.3958527788714,3,45.49,50.81,5,1,0,0,6,5,1,249.5,0,0,0 +7390,9059,16517,-9,16516,16515,3,1,0,24,2,0,0,0,2,-9,2,1,0,3,7.58267606765556,7.676807348569263,0,3,0,0,0,-9,0,-990.0888491469817,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,22,10,40,60,15,1,10,-9,1,5.878331154684456,5.878331154684456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.06,32.81,5,1,0,1,6,3,1,726,0,0,0 +7391,9060,16518,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,2,6.757293775332531,7.137372739995367,4.225477447980195,3,0,0,0,-9,0,-942.3489332543321,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,16,15,1,0,-9,0,7.971588782394799,7.971588782394799,1,0,0,0,0,0,0,1,1,0,0,4.03176707385561,0,0,61.05,26.05,3,1,0,0,9,2,0,483,0,0,0 +7392,9061,16519,16520,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.227572627466071,8.510761609756283,0,2,0,-9,19,0,1,44.93815298329913,0,0,0,48,1,4,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,8.44836827176964,8.44836827176964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.18,49.29,7,1,0,0,8,3,0,331,0,0,0 +7392,9061,16520,16519,-9,-9,2,1,0,48,1,0,1,0,1,-9,1,1,0,4,6.999152005252358,7.151781046311273,0,2,0,-9,6,0,-1,-6.171391391342664,0,0,0,49,2,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,2.662150908972959,2.662150908972959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,6,1,0,0,8,3,0,331,0,0,0 +7393,9062,16521,16522,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,2,6.900056762320762,7.030612795339418,5.903958105693781,1,0,-9,5,0,-10,63.13455232292112,0,0,0,62,1,3,1,-9,-9,2019,1,1,36,12,70,70,15,1,12,1,0,1.163781252395182,1.163781252395182,0,0,0,0,0,0,0,0,0,0,5.817712011786377,0,0,0,23.35,45.38,3,1,0,0,9,5,1,505,0,0,0 +7393,9062,16522,16521,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,3,9.772184882018372,9.845160672726196,6.432872548797039,1,0,-9,5,0,10,-20.37192215084676,0,0,0,52,2,2,1,-9,-9,2019,1,2,9,0,80,80,15,1,0,1,0,25.7744690168007,25.7744690168007,0,0,0,0,0,0,0,0,0,0,0,6.812731215959955,0,0,58.65,39.14,5,1,0,0,9,5,1,505,0,0,0 +7394,9063,16523,-9,-9,-9,1,1,0,42,2,0,2,0,1,-9,1,1,0,3,7.538764330788349,7.405610641140972,5.861094557424367,4,0,0,0,-9,0,-1116.620457779123,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,30,25,15,1,8,-9,0,4.762544832650661,4.762544832650661,0,0,0,0,0,0,0,1,1,0,6.191892390766571,0,0,0,30.11,56.52,2,1,0,0,12,2,0,523.3333333333334,0,0,0 +7394,9063,16524,-9,16523,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-884.4601708105801,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,2,0,523.3333333333334,0,0,0 +7394,9063,16525,-9,16523,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.3173229296292,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,2,0,523.3333333333334,0,0,0 +7395,9064,16526,-9,-9,-9,1,1,1,18,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1048.010592836644,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.89,18.61,2,1,0,1,2,1,0,512,0,0,0 +7396,9065,16527,16528,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,8.3778988929625,8.267547065741429,1,0,-9,25,0,4,126.2133410207079,0,0,0,79,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.150818249345841,7.97803652905562,0,0,58.07,46.29,7,1,0,0,9,5,1,1221.5,0,0,0 +7396,9065,16528,16527,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,8.138287637251629,8.255173415308411,1,0,-9,25,0,-4,-34.4931935606775,0,0,0,83,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.647420952337545,7.946016232426908,0,0,62.85,41.16,1,1,0,0,9,5,1,1221.5,0,0,0 +7397,9066,16529,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,3,8.866854125016506,8.905116591705466,0,3,0,0,0,-9,0,-1058.379543716545,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,52,47,15,1,0,-9,0,14.87904201668046,14.87904201668046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.4,55.39,4,1,0,1,8,5,1,858,0,0,0 +7398,9067,16530,-9,-9,-9,1,1,1,63,2,0,0,0,2,-9,4,3,0,1,0,5.961132528979756,5.883480188859922,3,0,0,0,-9,0,-962.341979981889,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.913235714001255,0,0,0,31.01,38.97,3,1,0,0,9,2,0,280,0,0,0 +7399,9068,16531,16532,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,5,0,7.607359052443316,7.291208848082547,1,0,-9,51,0,-1,71.07214232281362,0,0,0,71,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.119142970033269,7.033847933318908,0,0,60.67,53.55,7,1,0,0,5,2,1,263.5,0,0,0 +7399,9068,16532,16531,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,5.721086722304535,5.816446588653301,1,0,-9,51,0,1,89.54589398725346,0,0,0,70,2,5,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.571191665621709,0,0,56.58,45.49,6,1,0,0,5,2,1,263.5,0,0,0 +7400,9069,16533,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,5,0,7.036310654752026,6.754705462490652,3,0,0,0,-9,0,-1138.209400484288,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.061457719461395,6.704944537027034,3.827537596056607,3,62.46,25.32,6,1,0,0,6,2,1,386,0,0,0 +7401,9070,16534,16535,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,9.076461938698825,9.145744026449536,0,2,0,-9,18,0,8,-47.25634471056729,0,0,0,43,1,4,1,2,2,2019,1,2,7,0,47,47,15,1,0,1,0,25.2510597610044,25.2510597610044,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,1,0,0,2,5,1,118.5,0,0,0 +7401,9070,16535,16534,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,4,9.297320716084929,9.589693280081939,0,2,0,-9,16,0,-8,97.61702365329494,0,0,1,51,2,3,1,2,2,2019,1,1,8,0,80,40,15,1,0,1,0,17.11675921042884,17.11675921042884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,2,5,1,118.5,0,0,0 +7402,9071,16536,-9,16538,16537,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1084.577291269603,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,328,0,0,0 +7402,9071,16537,16538,-9,-9,2,1,1,25,1,1,2,0,2,-9,2,1,0,3,7.542463547230626,7.841462181725507,0,2,0,-9,1,-9,1,-12.05677861573814,-9,1,0,24,2,2,3,-9,-9,2019,2,1,6,0,46,0,15,1,0,3,0,5.75306536941777,5.75306536941777,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.33,53.46,6,1,0,0,7,2,0,328,0,0,0 +7402,9071,16538,16537,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,1,-9,-1,51.08507733092718,-9,1,1,25,2,3,1,2,2,2019,3,2,22,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.333761163904835,3,29.3,47.3,4,1,0,0,7,2,0,328,0,0,0 +7402,9071,16539,-9,16538,16537,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1001.736145662734,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,328,0,0,0 +7403,9072,16540,-9,16544,16541,4,1,0,17,2,0,3,0,3,-9,8,3,1,4,3.884790435143088,4.028380045693249,0,2,0,0,0,-9,0,-1000.663430392754,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,8,1,0,844.6,0,0,0 +7403,9072,16541,16544,-9,-9,2,1,1,47,1,0,3,0,2,-9,3,3,0,4,0,0,0,2,0,-9,27,0,0,0,0,0,0,47,3,4,3,2,2,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,1,0,8,1,0,844.6,0,0,0 +7403,9072,16542,-9,16544,16541,6,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.861819861647,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,844.6,0,0,0 +7403,9072,16543,-9,16544,16541,5,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.1842429358743,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,8,1,0,844.6,0,0,0 +7403,9072,16544,16541,-9,-9,1,1,0,47,1,0,3,0,3,-9,3,3,0,4,0,0,0,2,0,-9,27,0,0,0,0,0,0,47,2,4,3,-9,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.45368179198258,3,51,54,6,3,1,0,8,1,0,844.6,0,0,0 +7403,9073,16545,-9,16544,16541,3,1,1,22,2,0,3,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-926.8772094977812,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,1,0,8,1,0,389,0,0,0 +7404,9074,16546,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,1,1,0,2,0,5.142716706567598,5.623398662861169,3,0,0,0,-9,0,-1038.933821349299,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,30,0,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,4.753763829596911,5.413492482777597,0,0,47.46,15.97,4,1,0,0,10,2,1,118,0,0,0 +7405,9075,16547,16549,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,3,8.305307123783464,8.587570494225361,0,2,0,-9,6,0,-8,-149.8774585109899,0,0,1,52,2,4,1,2,2,2019,1,1,7,0,46,44,15,1,0,1,0,10.19987090805104,10.19987090805104,0,0,0,0,0,0,0,1,1,0,4.267041280942618,0,0,0,55.8,31.18,5,1,0,0,11,4,1,449.5,0,0,0 +7405,9075,16548,-9,16547,16549,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.4772361790074,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,449.5,0,0,0 +7405,9075,16549,16547,-9,-9,1,1,1,52,1,0,2,0,2,-9,2,1,0,4,8.015003927963315,7.966764983200679,0,2,0,-9,6,0,8,45.54360754912256,0,0,0,44,1,3,1,-9,-9,2019,1,2,9,0,50,50,15,1,1,1,0,7.624105365725441,7.624105365725441,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,11,4,1,449.5,0,0,0 +7405,9075,16550,-9,16547,16549,3,1,0,17,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-963.9326152571668,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,6,1,0,0,11,4,1,449.5,0,0,0 +7406,9076,16551,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,3,8.467020466786089,8.507674242846281,0,3,0,0,0,-9,0,-969.2244639433045,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,55,45,15,1,8,-9,0,9.608158791305595,9.608158791305595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,46.15,4,4,0,1,8,4,0,827,0,0,0 +7407,9077,16552,16553,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,5,7.850435819399999,7.798865170621364,0,1,0,-9,32,0,0,-37.81841651115723,0,0,0,50,2,5,1,3,2,2019,1,2,6,0,39,39,15,1,0,1,0,7.708484210926647,7.708484210926647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,1,5,1,324,0,0,0 +7407,9077,16553,16552,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,5,8.464647555813364,8.763629046716318,7.084728985039315,1,0,-9,32,0,0,-50.99496209728601,0,0,0,50,2,5,1,2,2,2019,1,1,10,0,50,45,15,1,0,1,0,10.06731335905558,10.06731335905558,0,0,0,0,0,0,0,0,0,0,0,7.32098242420932,0,0,56.47,59.4,6,1,0,0,1,5,1,324,0,0,0 +7407,9078,16554,-9,16552,16553,3,1,0,27,2,0,0,0,2,-9,2,1,0,3,7.83104348332165,7.82398470450313,0,3,0,0,0,-9,0,-999.9406864749629,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,39,39,15,1,3,-9,1,7.590031708656401,7.590031708656401,0,0,0,0,0,0,0,0,0,0,3.235464930581308,0,0,0,49.58,55.59,5,1,0,0,1,3,1,489,0,0,0 +7408,9079,16555,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,7,2,0,2,7.232282214950795,7.249155028124936,0,3,0,0,0,-9,0,-938.4222536963066,1,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,50,38,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.17,46.18,5,4,0,0,8,3,0,1795,0,0,0 +7409,9080,16556,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,4,8.366716585884117,8.446039409151684,0,3,0,0,0,-9,0,-1018.998192814164,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,5,42,39,15,1,5,-9,0,11.49785357159512,11.49785357159512,0,0,0,0,0,0,0,0,0,0,4.4265108421583,0,0,0,51.83,57.2,5,1,0,0,13,5,1,534,0,0,0 +7410,9081,16557,-9,16558,16561,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.61918979253,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,826.8,0,0,0 +7410,9081,16558,16561,16562,-9,1,1,0,42,1,0,3,0,1,-9,7,2,0,4,0,0,0,2,0,-9,19,0,0,77.36752794259155,1,0,1,42,1,2,1,1,1,2019,3,2,9,2,0,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.12392288620678,3,53.96,50.73,5,1,0,0,4,4,1,826.8,0,0,0 +7410,9081,16559,-9,16558,16561,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.6470308704003,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,826.8,0,0,0 +7410,9081,16560,-9,16558,16561,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.46533590965,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,4,4,1,826.8,0,0,0 +7410,9081,16561,16558,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,2,9.030668145999599,9.384804313727964,0,2,0,-9,19,0,0,4.763073572003944,0,0,0,42,1,4,2,2,1,2019,2,1,9,1,40,43,15,1,1,2,0,26.31694505634913,26.31694505634913,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.03,46.69,5,1,0,0,4,4,1,826.8,0,0,0 +7410,9082,16562,-9,-9,-9,6,1,0,71,3,0,3,0,1,-9,4,3,0,3,0,6.742755968880096,6.805149623869382,4,0,0,0,-9,0,-985.4146787749229,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.117487692254998,6.688660322667014,0,0,61.19,36.58,6,1,0,0,4,2,1,1277,0,0,0 +7411,9083,16563,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-940.4086937939446,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,1,1,270,0,0,0 +7412,9084,16564,-9,-9,-9,1,1,0,54,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-957.4507936565842,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.46,45.88,4,1,0,0,12,1,0,923,0,0,0 +7413,9085,16565,-9,16566,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1156.791861396248,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,1,1,838,0,0,0 +7413,9085,16566,-9,-9,-9,1,1,0,31,2,0,2,0,2,-9,2,1,0,3,0,0,0,4,0,0,0,-9,0,-910.4202048962264,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,46,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,0,2,1,1,838,0,0,0 +7414,9086,16567,16568,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,6.213568815954188,6.201186998523184,1,0,-9,7,0,-2,-94.90722090262894,0,0,0,63,2,4,3,-9,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.254989082094509,6.186116060541167,6.657669712388572,3,54.2,57.49,6,1,0,0,7,3,1,745.5,0,0,0 +7414,9086,16568,16567,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,8.423363416966428,8.389836661185416,1,0,-9,35,0,2,4.657421409531641,0,0,0,61,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.578192722412985,8.034512700083786,0,3,61.12,51.57,6,1,0,0,7,3,1,745.5,0,0,0 +7415,9087,16569,16570,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,3,7.182573356440211,6.922263768435489,0,1,0,-9,33,0,8,-93.71672118822336,0,0,0,53,2,4,1,3,3,2019,1,1,11,0,20,20,15,1,2,1,0,6.947272378827809,6.947272378827809,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49,48,5,1,0,0,13,5,1,474,0,0,0 +7415,9087,16570,16569,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.732265355927797,8.661465046123013,0,1,0,-9,32,0,-8,17.81339866577201,0,0,0,61,3,3,1,3,3,2019,1,2,7,0,52,51,15,1,0,1,0,10.6864230378898,10.6864230378898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.92,49.39,6,1,0,0,13,5,1,474,0,0,0 +7415,9088,16571,-9,16569,16570,3,1,1,30,2,0,0,0,1,-9,2,1,0,5,8.350250898959526,8.146684188591356,0,3,0,0,0,-9,0,-955.3003856141358,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,47,52,15,1,0,-9,1,9.56783476415092,9.56783476415092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,1134,0,0,0 +7416,9089,16572,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,0,4.703554945337481,4.561828652989254,3,0,0,0,-9,0,-1027.66620618967,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.670384692094621,5.140625598720234,0,0,40.35,18.28,4,1,0,0,4,2,0,179,0,0,0 +7417,9090,16573,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,9.0730151889744,8.822929132835277,0,3,0,0,0,-9,0,-929.9332191570804,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,41,43,15,1,0,-9,0,22.03993371748893,22.03993371748893,0,0,0,0,0,0,0,1,1,0,4.161722844538406,0,0,0,46.98,59.35,6,1,0,0,9,5,1,241,0,0,0 +7418,9091,16574,16575,-9,-9,1,1,1,56,1,0,0,0,1,-9,4,3,0,5,0,8.005359305530918,7.813231649843473,1,0,-9,10,0,1,112.4027106226684,0,0,0,55,1,3,3,1,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.421253225137106,7.736511483505254,0,3,51.67,60.18,7,1,0,0,9,3,1,2013.5,0,0,0 +7418,9091,16575,16574,-9,-9,2,1,0,55,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-1,-31.76121256464652,0,0,0,56,1,5,3,3,2,2019,4,1,13,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.367288123609431,0,9.819926237341118,3,52.65,51.64,6,1,0,0,9,3,1,2013.5,0,0,0 +7419,9092,16576,-9,-9,-9,1,1,0,20,2,0,0,1,2,0,7,2,0,4,6.803684618506161,6.98824034473817,6.590641154980949,3,0,0,0,-9,0,-1247.742838578313,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,11,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.873278935811572,0,0,0,41.59,61.77,6,1,0,0,10,2,0,357,0,0,0 +7420,9093,16577,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,1,0,6.38509565643933,6.320959341373866,3,0,0,0,-9,0,-1084.674767868865,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,9,0,0,15,4,9,-9,0,0,0,1,22.97989011848999,0,6.35805674088199,0,0,253.2607671205991,1,1,0,0,6.525230320136989,0,0,28.79,21.04,6,4,0,0,6,2,0,183,0,0,0 +7421,9094,16578,-9,-9,-9,1,1,0,71,2,0,0,0,3,-9,4,3,0,4,0,5.883628666824199,5.505081730532306,3,0,0,0,-9,0,-1098.356727868626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.971803661748655,5.788000712452469,0,0,49.98,55.33,5,3,0,0,7,2,0,79,0,0,0 +7422,9095,16579,16580,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.793332163876921,7.768216150302496,1,0,-9,51,0,3,-40.14969135565671,0,0,0,71,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.901348786690417,7.764680714694522,0,0,58.65,39.14,7,1,0,0,10,3,1,388.5,0,0,0 +7422,9095,16580,16579,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,5.692077858710471,5.764856776699324,1,0,-9,51,0,-3,86.425930923518,0,0,0,74,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.799206233831883,6.22811538658471,0,0,53.64,46.82,6,1,0,0,10,3,1,388.5,0,0,0 +7423,9096,16581,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.970073042394066,8.163666287768375,0,3,0,0,0,-9,0,-849.6755613770183,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,43,0,15,1,1,-9,0,7.413631284803112,7.413631284803112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,6,1,0,0,7,4,0,437,0,0,0 +7424,9097,16582,-9,16585,16583,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1093.369809238234,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,2,4,1,1314,0,0,0 +7424,9097,16583,16585,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.33215695745033,8.152729803057705,0,2,0,-9,10,0,1,-28.99921405971735,0,0,0,37,2,4,1,3,3,2019,1,1,8,0,48,40,15,1,0,1,0,9.274415871293403,9.274415871293403,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,2,4,1,1314,0,0,0 +7424,9097,16584,-9,16585,16583,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.6161499065398,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,1314,0,0,0 +7424,9097,16585,16583,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,8.449198316364294,8.290052257957138,0,2,0,-9,10,0,-1,20.80225247937405,0,0,1,38,2,4,1,2,3,2019,1,2,9,0,37,37,15,1,0,1,0,13.34783407485139,13.34783407485139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,2,4,1,1314,0,0,0 +7425,9098,16586,16587,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,1,8.24476314407447,8.429382103826249,0,1,0,-9,2,0,-4,115.1173660528299,0,0,1,35,2,4,1,2,1,2019,1,2,13,4,37,40,15,1,4,1,0,12.90569443287886,12.90569443287886,0,0,0,0,0,0,0,0,0,0,3.201612771966273,0,0,0,51.36,47.12,5,1,0,0,8,5,0,1229,0,0,0 +7425,9098,16587,16586,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,4,9.258541975509605,9.126802319083895,0,1,0,-9,2,0,4,-161.274012310312,0,0,0,31,1,1,1,-9,-9,2019,1,1,10,1,50,50,15,1,1,1,0,24.97850753753667,24.97850753753667,0,0,0,0,0,0,0,0,0,0,4.261982118773702,0,0,0,49.52,55.68,6,1,0,0,8,5,0,1229,0,0,0 +7426,9099,16588,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,4,0,7.512007188791618,7.411641233635683,3,0,0,0,-9,0,-1003.141132464711,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.421081365882784,7.768305469491653,0,0,53.03,51.14,6,1,0,0,12,3,1,306,0,0,0 +7427,9100,16589,16590,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,9.193860251033316,8.787980945032434,0,1,0,-9,7,0,-8,37.1185147781301,0,0,0,64,2,5,1,3,3,2019,1,1,7,0,42,42,15,1,0,1,0,19.80252982667989,19.80252982667989,0,0,0,0,0,0,0,1,1,0,5.591370570363003,0,0,0,56.57,57.78,6,1,0,0,5,5,1,493,0,0,0 +7427,9100,16590,16589,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,5,7.353202965123262,8.087130471498705,7.089350517919799,1,0,-9,7,0,8,-45.10965210593477,0,0,0,56,2,4,1,3,2,2019,1,2,6,0,12,12,15,1,0,1,0,17.61936598966778,17.61936598966778,0,0,0,0,0,0,0,1,1,0,3.455757110291836,7.281971853444488,0,0,59.43,58.05,6,1,0,0,5,5,1,493,0,0,0 +7428,9101,16591,16592,-9,-9,1,1,0,82,1,0,0,0,2,-9,4,3,0,4,0,9.034637606668106,8.932509166606851,1,0,-9,57,0,0,9.208141414449203,0,0,0,82,1,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.209669535008334,7.013997937999441,0,0,52.31,58.29,6,1,0,0,9,5,1,1132,0,0,0 +7428,9101,16592,16591,-9,-9,2,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,8.530631501001833,8.757564814327493,1,0,-9,57,0,0,70.02819147498865,0,0,0,82,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.574874547048939,8.755608314793616,0,3,60.86,50.49,7,1,0,0,9,5,1,1132,0,0,0 +7429,9102,16593,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,6,3,0,1,0,8.668706925256693,8.567766174923673,3,0,0,0,-9,0,-1111.161973025694,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.496295556249336,4.958029192733497,0,0,56.52,35.11,3,1,0,0,9,5,1,323,0,0,0 +7430,9103,16594,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,5.231622199137496,5.403722350155777,3,0,0,0,-9,0,-765.7228536054764,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.461662129954526,20.02872563659655,3,36.92,51.87,6,1,0,0,11,2,0,200,0,0,0 +7431,9104,16595,16596,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,3,6.780790975788086,8.68818672115574,8.795605947105823,1,0,-9,6,0,1,7.479475333796259,0,0,0,72,1,4,1,2,2,2019,3,1,11,0,2,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.729013526938195,8.466755504985741,0,0,52.97,48.59,6,1,0,0,2,5,1,698,0,0,0 +7431,9104,16596,16595,-9,-9,1,1,0,72,1,0,0,0,1,-9,1,1,0,4,6.942518430406386,7.745188398083859,7.72864648936796,1,0,-9,48,0,-1,144.2121569401043,0,0,0,73,1,3,3,2,2,2019,2,2,8,0,10,8,15,1,0,4,0,11.26474565767561,11.26474565767561,0,0,0,0,0,0,0,1,1,0,9.424662736366832,7.514243111526764,8.353928118488305,1,55.19,54.26,6,1,0,0,2,5,1,698,0,0,0 +7432,9105,16597,16598,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,7.140151473820507,7.496502705845471,1,0,-9,11,0,-5,93.27313430793095,0,0,0,67,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.986864977852728,7.521513561537083,0,0,46.63,59.72,6,3,0,0,8,5,1,464.5,0,0,0 +7432,9105,16598,16597,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,9.21975618307556,9.000808572791318,1,0,-9,44,0,5,19.97554596058509,0,0,0,62,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.286106532647158,8.731866086354708,0,0,57.33,53.46,6,3,0,0,8,5,1,464.5,0,0,0 +7433,9106,16599,16601,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,3,9.183348233962281,9.179259175662938,0,2,0,-9,15,0,0,51.77181058412516,0,0,0,42,1,4,1,2,1,2019,1,1,2,0,50,40,15,1,0,1,0,17.74538809954983,17.74538809954983,0,0,0,0,0,0,0,1,1,0,7.828970059699373,0,0,0,62.66,52.4,7,1,0,0,8,5,1,1316,0,0,0 +7433,9106,16600,-9,16601,16599,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.528949214951,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,5,1,1316,0,0,0 +7433,9106,16601,16599,-9,-9,1,1,0,42,1,0,2,0,1,-9,1,1,0,4,7.936363206149861,7.795595932400846,0,2,0,-9,15,0,0,-33.34268922825893,0,0,1,42,1,3,1,2,2,2019,1,2,6,0,8,8,15,1,0,1,0,37.8592907244341,37.8592907244341,0,0,0,0,0,0,0,1,1,0,7.891325252627314,0,0,0,57.16,56.15,6,4,0,0,8,5,1,1316,0,0,0 +7433,9106,16602,-9,16601,16599,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.6780000457059,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,5,1,1316,0,0,0 +7434,9107,16603,16604,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,8.262747795448963,8.703990454347041,1,0,-9,55,0,-4,122.8694551637263,0,0,0,78,1,1,3,3,2,2019,4,2,19,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.466363955163658,0,0,0,50.65,23.9,7,1,0,0,4,4,1,2072,0,0,0 +7434,9107,16604,16603,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,1,0,7.440403028361524,7.607202943914358,1,0,-9,55,0,4,52.12558212084579,0,0,0,74,2,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.140257793524701,0,0,60.97,16.73,2,1,0,0,4,4,1,2072,0,0,0 +7435,9108,16605,-9,-9,-9,1,1,0,27,2,0,1,0,2,-9,2,1,0,3,7.182658394694434,7.270652182472229,0,4,0,-9,0,0,0,-847.2845535829138,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,26,44,15,1,0,-9,0,7.481434499605631,7.481434499605631,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.45,49.51,4,1,0,0,5,2,0,1376.5,0,0,0 +7435,9108,16606,-9,16605,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.290388466679,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,2,0,1376.5,0,0,0 +7436,9109,16607,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,5,7.843891572351171,7.949755200774747,0,1,0,-9,2,0,-3,16.18492014561631,0,1,1,-9,-9,-9,-9,3,3,2019,2,2,6,0,42,37,15,1,0,-9,0,6.76512720355839,6.76512720355839,0,0,0,0,0,0,0,1,1,0,1.176778611790643,0,0,0,54.63,58.83,6,1,0,0,2,3,0,1015,0,0,0 +7436,9110,16608,-9,-9,-9,2,1,0,30,2,0,0,0,1,0,7,2,0,3,6.322394185997508,6.345100017296935,0,1,0,-9,2,0,3,11.89541844284911,-9,0,1,-9,-9,-9,-9,-9,-9,2019,3,1,24,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.11,64.38,3,1,0,0,2,3,0,212,0,0,0 +7437,9111,16609,16611,-9,-9,1,1,1,41,1,1,4,0,2,-9,2,1,0,3,8.940900313560039,8.694867023873631,0,2,0,-9,3,0,12,85.2795547866305,0,0,0,29,3,2,3,2,2,2019,2,2,16,6,37,48,15,1,6,3,0,21.83876992492804,21.83876992492804,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.38,52.86,3,1,0,1,2,3,0,1304.333333333333,0,0,0 +7437,9111,16610,-9,16611,16609,3,1,1,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.728419704016,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,3,0,1304.333333333333,0,0,0 +7437,9111,16611,16609,-9,-9,2,1,0,29,1,1,4,0,3,-9,6,3,0,2,0,0,0,2,0,-9,3,0,-12,-77.29223807100276,0,1,1,41,2,3,1,-9,-9,2019,3,1,34,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2.73,57.43,5,1,0,0,2,3,0,1304.333333333333,0,0,0 +7437,9111,16612,-9,16611,16609,5,1,0,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.7941349268517,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,0,1304.333333333333,0,0,0 +7437,9111,16613,-9,16611,16609,4,1,0,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.4323197421245,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,0,1304.333333333333,0,0,0 +7437,9111,16614,-9,16611,16609,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1055.593173635715,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,3,0,1304.333333333333,0,0,0 +7438,9112,16615,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-859.2288671187728,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.978414569379789,0,0,0,38.65,40.06,6,1,0,0,6,1,1,336,0,0,0 +7439,9113,16616,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,4,0,7.117166642732461,6.977226660287522,3,0,0,0,-9,0,-1023.769105031476,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.081632770465143,0,0,61.11,48.86,4,1,0,0,2,2,1,163,0,0,0 +7440,9114,16617,16618,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,8.036221506926372,7.55186378391917,1,0,-9,56,0,3,99.423315034815,0,0,0,75,2,4,3,2,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.788528872611777,7.633405097985976,7.179138218041452,3,54.19,42.36,6,1,0,0,2,3,1,462,0,0,0 +7440,9114,16618,16617,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,7.215919733133819,7.105854005537545,1,0,-9,56,0,-3,-81.38997895681931,0,0,0,78,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.40428524187941,6.900522061066339,10.76249329264857,3,49.35,59.64,6,1,0,0,2,3,1,462,0,0,0 +7441,9115,16619,16620,-9,-9,2,1,0,60,1,0,0,0,2,-9,1,1,0,5,0,0,0,1,0,-9,43,0,-2,-69.698617188364,0,0,0,62,1,4,1,3,3,2019,1,1,8,0,0,5,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.37452623486127,0,0,3,54.1,59.11,6,1,0,0,5,5,1,623,0,0,0 +7441,9115,16620,16619,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,4,8.81627996593128,8.94754029093618,7.254042176754903,1,0,-9,43,0,2,-8.350517337852013,0,0,0,60,2,5,1,3,1,2019,1,2,7,0,100,60,15,1,0,1,0,8.160257738963713,8.160257738963713,0,0,0,0,0,0,0,1,1,0,8.290031028370381,7.480046880894736,0,0,62.11,45.63,6,1,0,0,5,5,1,623,0,0,0 +7441,9116,16621,-9,16619,16620,3,1,0,35,2,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1081.625361566175,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,27,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.1485312606623207,0,0,0,20.67,55.71,2,1,0,0,5,1,1,758,0,0,0 +7442,9117,16622,16623,-9,-9,1,1,0,53,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,4,0,0,0,0,0,0,53,3,1,3,3,2,2019,4,2,8,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.88,25.7,3,1,0,0,13,1,1,822,0,0,0 +7442,9117,16623,16622,-9,-9,2,1,1,53,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,4,0,0,0,0,0,0,53,2,2,3,2,2,2019,4,1,9,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,6.19,5,1,0,1,13,1,1,822,0,0,0 +7443,9118,16624,16625,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,4,7.254644522221467,7.65076228180525,0,2,0,-9,3,0,5,147.789397382106,0,0,0,42,2,4,3,-9,-9,2019,2,1,9,0,30,0,15,1,1,3,0,6.794070635984303,6.794070635984303,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,3,0,0,8,2,1,346.5,0,0,0 +7443,9118,16625,16624,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,21,0,-5,-51.11262574446083,0,0,1,47,3,4,1,-9,-9,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,5,3,0,0,8,2,1,346.5,0,0,0 +7443,9119,16626,-9,16625,16624,3,1,0,19,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-898.2129658992386,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,54.61,6,3,0,0,8,1,1,1275,0,0,0 +7443,9120,16627,-9,16625,16624,4,1,0,18,2,0,2,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1078.424746761279,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,2,1,368,0,0,0 +7444,9121,16628,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,8.586531057507035,8.593320238069799,6.100170080047662,3,0,0,0,-9,0,-1146.528770925117,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,48,36,15,1,0,-9,0,13.16651683459789,13.16651683459789,0,0,0,0,0,0,0,1,1,0,0,6.2083894377717,0,0,51.52,46.85,4,4,0,0,8,5,1,1002,0,0,0 +7445,9122,16629,16631,-9,-9,2,1,0,32,1,2,2,0,1,-9,5,1,0,4,7.542610924054356,7.260973903633939,0,2,0,-9,6,0,-3,-142.5768367546596,0,0,1,35,1,5,1,-9,-9,2019,1,1,15,5,22,0,15,1,5,1,0,10.62251311568068,10.62251311568068,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.19,63.43,6,1,0,0,5,4,1,293.5,0,0,0 +7445,9122,16630,-9,16629,16631,3,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.125666645269,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,293.5,0,0,0 +7445,9122,16631,16629,-9,-9,1,1,1,35,1,2,2,0,1,-9,2,1,0,5,8.571839280229108,8.553384264042968,0,2,0,-9,6,0,3,-94.86204537137925,0,0,0,32,1,4,1,2,1,2019,1,2,9,0,44,38,15,1,0,1,0,17.17870998810282,17.17870998810282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,57.22,6,1,0,0,5,4,1,293.5,0,0,0 +7445,9122,16632,-9,16629,16631,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-950.8182757993782,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,293.5,0,0,0 +7446,9123,16633,16634,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,7.372752175180785,7.222568460073028,1,0,-9,28,0,4,-45.8656307817168,0,0,0,74,3,2,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,14.43763215783883,0,0,0,0,1,1,0,0,7.204559973238426,0,0,46.37,51.39,6,1,0,0,9,2,1,1111.5,0,0,0 +7446,9123,16634,16633,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,5.199301000630847,5.323741274289711,1,0,-9,28,0,-4,-24.52781770725691,0,0,0,78,2,4,3,2,2,2019,4,1,19,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.967164941823361,9.457963059957619,1,50.34,32.47,4,1,0,0,9,2,1,1111.5,0,0,0 +7447,9124,16635,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,4,7.869359764870635,7.765971523547072,0,3,0,0,0,-9,0,-1058.68491116451,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,43,30,15,1,6,-9,0,6.636419966227338,6.636419966227338,0,0,0,0,0,0,0,0,0,0,.7867905148729291,0,0,0,38.38,56.81,4,1,0,0,9,3,1,1339,0,0,0 +7448,9125,16636,16638,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,3,0,0,0,2,0,-9,6,0,10,3.670146044762481,0,0,0,31,2,3,1,3,3,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.532926872663711,0,0,0,62.66,52.4,7,1,0,0,12,3,0,664.3333333333334,0,0,0 +7448,9125,16637,-9,16638,16636,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.390427675925,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,0,664.3333333333334,0,0,0 +7448,9125,16638,16636,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,3,8.140788542290391,8.183042947378651,0,2,0,-9,6,0,-10,-75.22302233267374,0,0,1,41,2,3,1,3,2,2019,1,1,10,0,45,44,15,1,0,1,0,7.373714669086249,7.373714669086249,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.5,49.22,6,1,0,0,12,3,0,664.3333333333334,0,0,0 +7449,9126,16639,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-962.8121567296257,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.726475875416757,0,0,1,1,0,0,0,0,0,47.38,50.99,5,1,0,0,13,1,1,8241,0,0,0 +7449,9127,16640,-9,-9,16639,2,1,1,46,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-960.3186995615609,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.57,37.49,6,1,0,0,13,1,1,3533,0,0,0 +7450,9128,16641,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,3,8.419767046304647,8.460061069799096,0,3,0,0,0,-9,0,-957.6912641281781,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,44,110,15,1,1,-9,0,13.54330312495298,13.54330312495298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.94,41.91,5,1,0,0,5,5,1,557,0,0,0 +7451,9129,16642,16643,-9,-9,2,1,0,61,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,39,0,-8,-150.7716715731576,-9,0,0,69,2,4,3,3,2,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.024978641045706,0,122.663933184316,2,55.93,49.95,6,1,0,0,2,2,1,867,0,0,0 +7451,9129,16643,16642,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.340288875610889,7.219784588558094,1,0,-9,40,0,8,-119.1837665780258,0,0,0,61,3,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.069845476020978,7.089709030300145,0,0,60.12,54.8,6,1,0,0,2,2,1,867,0,0,0 +7452,9130,16644,-9,-9,16645,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-974.3821850277395,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,3,0,0,5,5,1,674,0,0,0 +7452,9130,16645,-9,16647,16646,1,1,1,46,3,0,2,0,2,-9,2,1,0,3,8.568758159598103,8.630094101467376,0,3,0,0,0,-9,0,-887.7200234367415,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,37,38,15,1,6,-9,1,18.00061962828548,18.00061962828548,0,0,0,0,0,0,0,1,1,0,0,0,1.624551766524895,3,33.66,61.57,3,3,0,0,5,5,1,674,0,0,0 +7452,9131,16646,16647,-9,-9,2,1,1,72,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,6,0,6,0,0,0,0,66,3,3,3,3,3,2019,4,3,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.734830919915214,0,0,0,54,46,5,3,0,0,5,1,1,1028.5,0,0,0 +7452,9131,16647,16646,16648,-9,3,1,0,66,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-6,0,0,0,0,72,3,3,3,3,-9,2019,4,2,11,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,46,5,3,0,0,5,1,1,1028.5,0,0,0 +7452,9132,16648,-9,-9,-9,6,1,0,94,3,0,2,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-988.7291513368598,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.710602074449986,0,0,0,55,43,6,5,0,0,5,1,1,674,0,0,0 +7453,9133,16649,16650,-9,-9,2,1,0,46,1,0,1,0,2,-9,1,1,0,4,7.292568875437302,7.071943612103932,0,2,0,-9,7,0,-2,-130.2159536841378,0,0,0,48,1,4,1,-9,-9,2019,1,1,10,0,24,15,15,1,1,1,0,7.082909348769284,7.082909348769284,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,5,0,0,10,5,1,432.3333333333333,0,0,0 +7453,9133,16650,16649,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.381906982731245,9.282076420950018,0,2,0,-9,7,0,2,-88.35326031166507,0,0,0,46,2,4,1,3,2,2019,1,2,7,0,47,49,15,1,0,1,0,31.83568313894577,31.83568313894577,0,0,0,0,0,0,0,1,1,0,6.909099915155509,0,5.943759531578742,3,54.65,45.12,6,1,0,0,10,5,1,432.3333333333333,0,0,0 +7453,9133,16651,-9,16649,16650,3,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1066.352112702673,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,10,5,1,432.3333333333333,0,0,0 +7454,9134,16652,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,5,8.134745552953492,8.357987780816453,0,3,0,0,0,-9,0,-994.1464654204008,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,47,15,1,0,-9,0,7.135367884940726,7.135367884940726,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,10,4,1,682,0,0,0 +7454,9135,16653,-9,-9,16652,2,1,1,20,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-916.7924911845598,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.31,7,1,1,1,10,1,1,248,0,0,0 +7455,9136,16654,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,3,0,5.718836593247795,6.238502709007784,3,0,0,0,-9,0,-1018.580697637728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.002761618977725,6.383445076835172,0,0,67.96000000000001,27.95,6,1,0,0,13,2,0,624,0,0,0 +7456,9137,16655,-9,16656,16657,5,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.602985485915,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,4,2,1,948,0,0,0 +7456,9137,16656,16657,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,2,7.392414235213321,7.614044095359112,0,2,0,-9,20,0,0,42.80474816283732,0,0,1,44,3,4,3,3,2,2019,2,1,23,11,17,17,15,1,11,3,0,11.07901386209657,11.07901386209657,0,0,0,0,0,0,0,1,1,0,0,0,18.92932591637863,3,34.88,31.41,3,3,0,1,4,2,1,948,0,0,0 +7456,9137,16657,16656,-9,-9,1,1,1,44,1,0,2,0,3,-9,3,3,0,4,0,0,0,2,0,-9,20,0,0,110.1310381048808,0,0,0,44,2,2,1,3,3,2019,3,2,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,3,1,0,4,2,1,948,0,0,0 +7456,9138,16658,-9,16656,16657,3,1,0,23,2,0,2,0,2,-9,2,1,0,4,6.799022709858566,6.863237285569989,0,3,0,0,0,-9,0,-1104.220391287024,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,4,2,1,561,0,0,0 +7456,9139,16659,-9,16656,16657,4,1,0,20,2,0,2,0,2,-9,2,1,0,4,7.344535813304008,7.174928751535469,0,3,0,0,0,-9,0,-1014.963699989865,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,4,3,1,647,0,0,0 +7457,9140,16660,-9,-9,16661,3,1,1,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1020.243181729731,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,0,429,0,0,0 +7457,9140,16661,-9,-9,-9,1,1,1,27,3,0,0,0,2,-9,2,1,0,3,8.13846890242819,7.567824640020369,0,3,0,-9,0,1,0,-861.3151613431212,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,4,42,46,15,1,4,-9,0,9.784108637738687,9.784108637738687,0,0,0,0,0,0,0,1,1,0,0,0,34.40325082388021,0,35.89,56.79,3,1,0,1,5,4,0,429,0,0,0 +7458,9141,16662,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,1,8.118399974198196,8.050485113463949,5.865775298901562,3,0,0,0,-9,0,-1002.26111435824,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,180,92,15,1,7,-9,0,2.217473474774952,2.217473474774952,0,0,0,0,0,0,0,1,1,0,3.786014387601128,5.588791058375915,2.580399635056768,3,32.47,34.21,5,1,0,0,9,4,1,473,0,0,0 +7459,9142,16663,-9,16664,16665,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.0999779291878,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,472,0,0,0 +7459,9142,16664,16665,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,3,6.934714339831671,6.830219197427668,0,2,0,-9,9,0,-7,-102.864411759724,0,0,1,46,2,3,1,-9,-9,2019,1,1,12,0,13,7,15,1,0,1,0,10.85920078520751,10.85920078520751,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,48.41,6,1,0,0,7,4,1,472,0,0,0 +7459,9142,16665,16664,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,3,8.819218328460865,9.023812765397386,0,2,0,-9,9,0,7,-26.42658760211959,0,0,0,39,2,3,1,-9,-9,2019,1,2,6,0,45,50,15,1,0,1,0,13.60420226641846,13.60420226641846,0,0,0,0,0,0,0,1,1,0,4.33278084887052,0,0,0,55.51,46.03,6,1,0,0,7,4,1,472,0,0,0 +7460,9143,16666,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,4,8.994292455988763,9.059982546974817,0,3,0,0,0,-9,0,-975.8914975244526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,37,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,1,0,0,2,5,1,1653,0,0,0 +7460,9144,16667,-9,16666,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.015085696128104,8.112412517550052,0,3,0,0,0,-9,0,-933.023048852541,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,38,32,15,1,1,-9,1,9.369023480868893,9.369023480868893,0,0,0,0,0,0,0,0,0,0,7.145791126009602,0,0,0,51.77,58.57,5,1,0,0,2,4,1,1681,0,0,0 +7461,9145,16668,16669,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,1,0,6.428139966060667,6.772771991782885,1,0,-9,31,0,-3,-26.70718487264365,0,0,0,67,2,3,3,-9,-9,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.579559076789876,0,0,56.7,17.37,6,1,0,0,6,2,1,1001.5,0,0,0 +7461,9145,16669,16668,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,5.402359083817946,5.484771205099451,1,0,-9,32,0,3,-89.04211141063196,0,0,0,64,2,1,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.410656861509647,5.364659642207957,0,0,50.76,52.44,6,1,0,0,6,2,1,1001.5,0,0,0 +7462,9146,16670,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,1,1,0,2,8.434412850070855,8.020361357870671,0,3,0,0,0,-9,0,-1036.924234084799,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,20,50,15,1,0,-9,0,27.75997803431396,27.75997803431396,0,0,0,0,0,0,0,0,0,0,2.148215685057128,0,0,0,58.17,31.79,5,1,0,0,7,4,1,668,0,0,0 +7463,9147,16671,16672,-9,-9,1,1,1,58,1,0,0,0,3,-9,4,3,0,1,0,6.563278885483751,7.175514541512707,1,0,-9,35,0,1,-50.87821823935748,0,0,0,57,2,3,1,3,3,2019,3,2,27,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.596322809157346,0,0,26.01,22.04,2,1,0,1,12,4,1,487.5,0,0,0 +7463,9147,16672,16671,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.065104137486122,8.472253186424693,0,1,0,-9,35,0,-1,-77.20729242141276,0,0,0,58,3,1,3,2,2,2019,2,1,11,0,37,37,15,1,0,4,0,11.90371743641254,11.90371743641254,0,0,0,0,0,0,0,1,1,0,0,0,0,1,35.5,54.11,6,1,0,0,12,4,1,487.5,0,0,0 +7464,9148,16673,16674,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,9,0,3,102.9358174882596,0,0,0,68,1,3,3,2,1,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,0,6.430389026104836,0,0,0,0,1,1,0,0,0,2.071681171513488,3,32.18,25.89,3,1,0,1,12,2,0,796,0,0,0 +7464,9148,16674,16673,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,7.270646252475648,7.727218719147253,1,0,-9,9,0,-3,33.16372833082454,0,0,0,71,2,1,3,2,2,2019,4,1,18,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.573588106983955,7.084297810552848,20.77468284114131,2,47.69,40.71,3,1,0,0,12,2,0,796,0,0,0 +7465,9149,16675,16676,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,5,7.595201555762372,7.367614640276973,0,1,0,-9,28,0,2,74.485050533407,0,0,0,52,2,4,1,2,2,2019,1,2,7,0,20,17,15,1,0,1,0,11.44062359892222,11.44062359892222,0,0,0,0,0,0,0,0,0,0,1.241127252128142,0,0,0,54.1,59.11,6,1,0,0,8,5,1,1410,0,0,0 +7465,9149,16676,16675,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,9.514863956890068,9.3570419915606,0,1,0,-9,7,0,-2,87.36070624145088,0,0,0,54,1,5,1,2,3,2019,1,1,6,0,43,43,15,1,0,1,0,29.32804601667806,29.32804601667806,0,0,0,0,0,0,0,0,0,0,4.513650693138068,0,0,0,60.12,54.8,7,1,0,0,8,5,1,1410,0,0,0 +7465,9150,16677,-9,16675,16676,3,1,1,21,2,0,0,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1010.558453623097,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.404790870045858,0,0,0,48.96,60.26,6,1,0,0,8,1,1,571,0,0,0 +7466,9151,16678,16679,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,5,8.843212972640554,8.63476781034826,7.235514930821043,1,0,-9,45,0,7,-47.00333665647076,0,0,0,55,2,4,1,3,3,2019,1,2,0,0,25,20,15,1,0,1,0,26.05604940943297,26.05604940943297,0,0,0,0,0,0,0,0,0,0,.7088036560475047,7.552569043960481,0,0,57.06,57.76,6,1,0,0,12,5,1,469,0,0,0 +7466,9151,16679,16678,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.243187920328674,8.177899159963793,0,1,0,-9,3,0,-7,-41.02754209889799,0,0,0,62,3,5,1,3,3,2019,1,1,10,0,40,37,15,1,1,1,0,11.98540614859283,11.98540614859283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,6,1,0,0,12,5,1,469,0,0,0 +7467,9152,16680,16681,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.714270243224712,8.856487003013726,0,1,0,-9,2,0,10,54.13596852799495,0,0,0,37,1,4,1,2,3,2019,1,2,10,0,41,36,15,1,0,1,0,17.85836291527499,17.85836291527499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,7,3,0,0,8,5,1,601,0,0,0 +7467,9152,16681,16680,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,4,9.121388403024376,8.908990150533119,0,1,0,-9,2,0,-10,-29.98700067524622,0,0,1,47,2,4,1,1,1,2019,1,1,11,0,35,30,15,1,0,1,0,25.79847874617366,25.79847874617366,0,0,0,0,0,0,0,0,0,0,3.407194870180994,0,0,0,44.61,59.06,6,1,0,0,8,5,1,601,0,0,0 +7468,9153,16682,16683,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,4,8.7647925212085,8.665874630367489,0,1,0,-9,5,0,7,-52.99081190802874,0,0,0,48,1,4,1,3,3,2019,1,2,9,0,35,35,15,1,1,1,0,24.45356178732305,24.45356178732305,0,0,0,0,0,0,0,1,1,0,2.589405892047723,0,0,0,54,53,6,1,0,0,9,5,1,2345,0,0,0 +7468,9153,16683,16682,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,4,9.359971003892587,9.473236244540271,0,1,0,-9,5,0,-7,36.45828405324585,0,0,0,55,3,4,1,-9,-9,2019,1,1,10,1,68,58,15,1,1,1,0,25.1231430147286,25.1231430147286,0,0,0,0,0,0,0,1,1,0,6.638051645121291,0,10.5559118323746,3,50.11,54.04,6,1,0,0,9,5,1,2345,0,0,0 +7469,9154,16684,16685,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,4,9.71788644146975,9.618908481676936,0,1,0,-9,4,0,24,1.533898170911954,0,0,0,36,2,4,3,2,2,2019,2,2,10,0,55,52,15,1,0,3,0,36.01944493012727,36.01944493012727,0,0,0,0,0,0,0,0,0,0,3.322445811236657,0,0,0,57.16,56.15,2,3,0,0,4,5,1,595,0,0,0 +7469,9154,16685,16684,-9,-9,2,1,0,36,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,4,0,-24,-18.71749787906247,0,0,1,60,1,4,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,1,0,4,5,1,595,0,0,0 +7470,9155,16686,-9,-9,-9,1,1,0,43,3,0,1,0,3,-9,2,1,0,3,0,0,0,4,0,0,0,-9,0,-945.451012431809,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,18,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.93,57.19,5,1,0,0,4,1,1,491.5,0,0,0 +7470,9155,16687,-9,16686,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-961.4374929991407,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,1,1,491.5,0,0,0 +7471,9156,16688,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-936.6061916212926,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.11,36.8,3,1,0,0,9,1,0,443,0,0,0 +7471,9157,16689,-9,16688,-9,2,1,1,24,2,0,0,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-975.5570253016991,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.03,53.42,4,1,0,0,9,1,0,291,0,0,0 +7472,9158,16690,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,3,0,7.839578562789556,7.517916900059093,3,0,0,0,-9,0,-928.9875133073875,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.205197833213442,0,0,54.58,43.7,6,1,0,0,9,3,1,155,0,0,0 +7473,9159,16691,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,2,1,0,2,8.59311204710102,8.650756799276108,0,3,0,0,0,-9,0,-882.1490848599409,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,40,38,15,1,12,-9,0,13.73949488575276,13.73949488575276,0,0,0,0,0,0,0,0,0,0,4.060831827825221,0,0,0,31.09,45.59,4,1,0,0,8,5,0,371,0,0,0 +7474,9160,16692,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,6.389422357479412,6.385455799610932,3,0,0,0,-9,0,-1071.820180008335,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.839430307408691,6.450939547262449,0,0,49.44,54.26,6,1,0,0,10,2,1,204,0,0,0 +7475,9161,16693,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,4,8.068984988705898,8.310913908906189,0,3,0,-9,0,-9,0,-1074.445455495717,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,50,0,15,1,0,-9,0,8.855946773847819,8.855946773847819,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,4,4,0,1565,0,0,0 +7476,9162,16694,16695,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,44,0,-6,3.937393286231254,0,0,0,70,2,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,26.39,6,1,0,0,11,2,1,332.5,0,0,0 +7476,9162,16695,16694,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,6.122289801658797,6.382242356915071,1,0,-9,44,0,6,82.38623415445001,0,0,0,64,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.322271680192783,0,0,57.33,53.46,6,1,0,0,11,2,1,332.5,0,0,0 +7477,9163,16696,16699,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,4,8.579864710457718,8.531068657911502,0,2,0,-9,6,0,8,-79.40706858379606,0,0,0,35,2,5,1,2,2,2019,1,1,9,0,38,52,15,1,1,1,0,14.75625877925616,14.75625877925616,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,1,0,0,12,4,1,419,0,0,0 +7477,9163,16697,-9,16699,16696,4,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.9936948433142,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,419,0,0,0 +7477,9163,16698,-9,16699,16696,3,1,1,17,2,0,1,0,2,1,2,3,0,5,7.857347837321487,7.727534350359889,0,2,0,0,0,-9,0,-918.1997643122422,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,50,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,48.84,7,1,0,0,12,4,1,419,0,0,0 +7477,9163,16699,16696,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,5,7.816055254932449,7.83958596489326,0,2,0,-9,6,0,-8,97.49450503060039,0,0,1,43,2,4,1,2,2,2019,1,2,7,0,30,28,15,1,0,1,0,8.615887234585655,8.615887234585655,0,0,0,0,0,0,0,1,1,0,3.074712847160476,0,0,0,51.14,60.45,6,1,0,0,12,4,1,419,0,0,0 +7478,9164,16700,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,-9,0,0,0,-1081.274406469143,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.08,57.81,3,1,1,0,9,1,0,849,0,0,0 +7479,9165,16701,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,5,0,7.7181442106677,7.626730338598208,3,0,0,0,-9,0,-993.5715975947971,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.100858039389117,0,0,0,46.88,60.96,6,1,0,0,7,3,0,356,0,0,0 +7480,9166,16702,-9,16705,16704,3,1,1,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-958.625613383932,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,7,4,0,0,2,4,0,1313,0,0,0 +7480,9166,16703,-9,16705,16704,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-842.2405885486932,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,4,0,0,2,4,0,1313,0,0,0 +7480,9166,16704,16705,-9,-9,1,1,1,48,1,0,3,0,2,-9,1,1,0,5,8.447255313463124,8.437701785459673,0,2,0,-9,25,0,1,57.35946704492802,0,0,0,47,2,4,1,3,2,2019,1,2,7,0,25,50,15,1,0,1,0,20.0798202681375,20.0798202681375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.1,64.88,3,4,0,0,2,4,0,1313,0,0,0 +7480,9166,16705,16704,-9,-9,2,1,0,47,1,0,3,0,2,-9,2,1,0,4,8.002296612314568,7.616913889225945,0,2,0,-9,23,0,-1,-75.92242203449833,0,0,0,48,2,5,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,8.764760939050632,8.764760939050632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,4,0,0,2,4,0,1313,0,0,0 +7480,9166,16706,-9,16705,16704,4,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1042.699570653261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,4,0,0,2,4,0,1313,0,0,0 +7481,9167,16707,-9,16708,16710,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.0442117714363,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,4,1,509,0,0,0 +7481,9167,16708,16710,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,7.591282285899775,7.660120569071969,0,2,0,-9,7,0,3,-47.61463509448976,0,0,0,46,2,4,1,2,2,2019,1,2,9,0,35,37,15,1,0,1,0,8.342773242112532,8.342773242112532,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,2,4,1,509,0,0,0 +7481,9167,16709,-9,16708,16710,3,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.724911823419,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,60.58,2,1,0,0,2,4,1,509,0,0,0 +7481,9167,16710,16708,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.632252480449731,8.923138195789667,0,2,0,-9,7,0,-3,-16.84451956474739,0,0,0,49,2,4,1,3,3,2019,1,1,6,0,37,37,15,1,0,1,0,18.99181646221583,18.99181646221583,0,0,0,0,0,0,0,1,1,0,.9818826144157961,0,9.370941552800897,3,60.12,54.8,6,1,0,0,2,4,1,509,0,0,0 +7482,9168,16711,16712,-9,-9,1,1,0,62,1,0,0,0,3,-9,8,3,1,3,0,4.581467990008895,4.477379209283961,1,0,-9,45,0,-3,106.7426782853652,0,0,0,65,3,3,3,3,3,2019,4,2,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.622733574674822,0,0,49,48,5,1,0,0,7,2,0,1145,0,0,0 +7482,9168,16712,16711,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,3,-88.13640485305346,0,0,0,62,3,3,3,-9,3,2019,4,1,10,0,0,0,15,4,1,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,119.12164227381,1,52,48,5,1,0,0,7,2,0,1145,0,0,0 +7483,9169,16713,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,1,1,0,3,8.441164045275441,8.449665481223494,0,3,0,0,0,-9,0,-948.212756693758,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,50,40,15,1,2,-9,0,13.94580567769414,13.94580567769414,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.85,41.57,4,1,0,0,2,5,0,165,0,0,0 +7484,9170,16714,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,3,8.406481963622383,8.172723451910347,0,3,0,0,0,-9,0,-957.5450172364706,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,41,43,15,1,0,-9,0,12.58092223226206,12.58092223226206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,5,1,0,0,10,4,0,709,0,0,0 +7485,9171,16715,-9,16716,16717,5,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.7407862885791,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,6,2,0,1224.75,0,0,0 +7485,9171,16716,16717,-9,-9,2,1,0,46,1,0,3,0,2,-9,2,1,0,2,8.441178042816086,8.350122341415778,0,2,0,-9,28,0,1,-46.81036819195491,0,0,0,45,2,2,3,3,3,2019,2,1,15,4,38,37,15,1,4,3,0,11.96220367357887,11.96220367357887,0,0,0,0,0,0,0,1,1,0,0,0,36.86605427773006,3,33.62,52.39,2,3,0,0,6,2,0,1224.75,0,0,0 +7485,9171,16717,16716,-9,-9,1,1,1,45,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,28,0,-1,12.6781634143596,0,0,0,46,2,2,1,-9,-9,2019,3,2,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19533826260207,3,35.84,32.61,3,3,1,0,6,2,0,1224.75,0,0,0 +7485,9171,16718,-9,16716,16717,6,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1131.970593244031,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,6,2,0,1224.75,0,0,0 +7485,9172,16719,-9,16716,16717,3,1,1,22,2,0,3,0,2,-9,2,1,0,3,7.723708748415755,7.447287607041824,0,3,0,0,0,-9,0,-970.8095266552741,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,40,0,15,1,2,-9,1,6.828880921122736,6.828880921122736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.22,60.91,2,3,0,0,6,3,0,220,0,0,0 +7485,9173,16720,-9,16716,16717,4,1,1,18,2,0,3,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-961.7130769344816,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,6,3,0,359,0,0,0 +7486,9174,16721,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.472032156885907,8.532297239089232,6.24656560214525,3,0,0,0,-9,0,-1102.730667082239,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,50,49,15,1,8,-9,0,11.23498555439595,11.23498555439595,0,0,0,0,0,0,0,1,1,0,5.10980817541981,6.693875968752044,8.7789893321915,3,38.9,48.23,3,1,0,0,2,5,1,421,0,0,0 +7487,9175,16722,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,3,8.992033988104158,8.959227410835281,0,3,0,0,0,-9,0,-898.3915994107723,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,40,42,15,1,0,-9,0,25.01349787510941,25.01349787510941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,48,3,1,0,1,5,5,1,412,0,0,0 +7488,9176,16723,16724,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.645885142970352,8.336003788814672,0,2,0,-9,8,0,8,-19.83197323629296,0,0,0,45,2,4,1,-9,-9,2019,1,2,8,0,55,60,15,1,0,1,0,10.67151005192028,10.67151005192028,0,0,0,0,0,0,0,1,1,0,2.355538558318601,0,0,0,43.55,51.57,5,1,0,0,2,4,1,1105,0,0,0 +7488,9176,16724,16723,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.511822506652959,7.74991170225594,0,2,0,-9,8,0,-8,74.3924658259571,0,0,0,53,2,4,1,-9,-9,2019,1,1,8,0,20,20,15,1,0,1,0,10.66059446913559,10.66059446913559,0,0,0,0,0,0,0,1,1,0,2.798540629490508,0,0,0,48.96,51.88,5,1,0,0,2,4,1,1105,0,0,0 +7488,9176,16725,-9,16724,16723,3,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-970.4793377023969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,4,1,1105,0,0,0 +7489,9177,16726,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,4,9.085364257146219,8.741823555309779,0,3,0,0,0,-9,0,-1027.027941044176,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,41,41,15,1,0,-9,0,16.02139844692765,16.02139844692765,0,0,0,0,0,0,0,0,0,0,2.928282094876594,0,0,0,54.2,57.49,5,1,0,0,12,5,1,456,0,0,0 +7490,9178,16727,16728,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,2,9.048290574228323,9.197082298896849,0,1,0,-9,40,0,-2,-53.25001856565768,0,0,0,58,2,3,1,2,2,2019,1,2,27,10,60,47,15,1,10,1,0,16.69053282738025,16.69053282738025,0,0,0,0,0,0,0,1,1,0,0,0,9.129103892268377,3,18.34,43.34,3,1,0,0,10,5,1,888.5,0,0,0 +7490,9178,16728,16727,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.82059951097405,9.214971805731759,7.005625046658594,1,0,-9,7,0,2,-78.6570565227326,0,0,0,56,1,2,1,-9,-9,2019,1,1,9,0,44,50,15,1,0,1,0,21.31669191449653,21.31669191449653,0,0,0,0,0,0,0,1,1,0,4.131527901323738,7.136639060314347,0,0,58.47,44.69,5,1,0,0,10,5,1,888.5,0,0,0 +7491,9179,16729,16730,-9,-9,1,1,0,54,1,0,0,0,1,-9,7,2,0,3,0,0,0,1,0,-9,32,0,-2,-142.9278607034011,1,0,0,56,1,4,1,2,1,2019,3,2,17,6,0,0,15,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1533504095407695,0,0,0,49.23,55.95,4,1,0,0,10,5,1,568,0,0,0 +7491,9179,16730,16729,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,8.689583760178857,9.020601032375623,0,1,0,-9,32,0,2,-75.14156713109732,0,0,0,54,1,3,2,2,2,2019,2,1,9,0,30,30,15,1,0,2,0,26.977791936413,26.977791936413,0,0,0,0,0,0,0,0,0,0,3.596358361111851,0,0,0,54.2,57.49,6,1,0,0,10,5,1,568,0,0,0 +7491,9180,16731,-9,16729,16730,3,1,1,24,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-913.6146451825049,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,1,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,1,0,10,1,1,201,0,0,0 +7492,9181,16732,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,5.957456342611717,5.50774042042057,3,0,0,0,-9,0,-975.9186318297895,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,4.292378450678028,0,1,1,0,0,5.716633536763863,0,0,52,44,6,1,0,0,11,2,1,827,0,0,0 +7493,9182,16733,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,3,0,8.314188095833233,8.105983735253739,3,0,0,0,-9,0,-900.1510916996593,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.431427484846533,7.713233971750793,0,0,53.5,51.02,6,1,0,0,5,4,1,612,0,0,0 +7494,9183,16734,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,4,6.977383615495256,7.391104138669307,0,3,0,0,0,-9,0,-1117.880064738474,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,2,18,18,15,1,2,-9,0,8.531825429254804,8.531825429254804,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,55.31,6,1,0,0,10,2,1,316,0,0,0 +7494,9184,16735,-9,16734,-9,2,1,0,20,2,0,0,1,2,0,7,2,0,3,5.87449770248553,6.167858760898771,0,3,0,0,0,-9,0,-875.1724785209124,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,4,16,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.32,59.33,5,1,0,0,10,2,1,790,0,0,0 +7494,9185,16736,-9,16734,-9,3,1,0,18,2,0,0,1,2,0,7,2,0,3,6.749096469297267,6.69078765614307,0,3,0,0,0,-9,0,-965.9955417481369,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,24,8,16,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.22,53.61,4,1,0,0,10,2,1,181,0,0,0 +7495,9186,16737,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,2,1,0,3,8.370174242437152,8.828837208276488,5.971694350556258,3,0,0,0,-9,0,-921.8859684727828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,37,37,15,1,1,-9,0,18.93054722274476,18.93054722274476,0,0,0,0,0,0,0,0,0,0,2.807561807961485,6.008172622063325,0,0,52.69,43.18,5,1,0,0,4,5,0,275,0,0,0 +7496,9187,16738,16739,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,8.247787335792188,7.822354836078127,1,0,-9,10,0,-6,-83.96949629597994,0,0,0,71,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.838091346825716,0,0,57.33,53.46,6,1,0,0,13,4,1,245,0,0,0 +7496,9187,16739,16738,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,7.76787720772673,7.884531766648608,1,0,-9,10,0,6,146.6633494532686,0,0,0,65,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.026858185784846,0,0,57.33,53.46,6,1,0,0,13,4,1,245,0,0,0 +7496,9187,16740,-9,16738,16739,3,1,0,17,2,0,0,1,2,0,7,2,0,5,0,0,0,1,0,0,0,-9,0,-1005.339995643341,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.35,62.06,6,2,0,0,13,4,1,245,0,0,0 +7497,9188,16741,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,5,8.564323633875935,8.33785267504399,0,3,0,-9,0,0,0,-970.8297307281225,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,8,38,39,15,1,8,-9,0,15.39185433677831,15.39185433677831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,7,1,0,0,12,5,0,854,0,0,0 +7498,9189,16742,16744,-9,-9,2,1,1,47,1,1,3,0,3,-9,1,1,0,4,7.899895439198677,7.827134696918121,0,2,0,-9,16,0,14,-35.1256669190075,0,0,0,33,2,3,1,3,3,2019,1,1,9,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,4,3,1,1361.6,0,0,0 +7498,9189,16743,-9,16744,16742,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1104.960240108398,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,3,1,1361.6,0,0,0 +7498,9189,16744,16742,-9,-9,1,1,0,33,1,1,3,0,2,-9,2,1,0,3,8.021227541780632,8.046943350318957,0,2,0,-9,16,0,-14,45.29990408872342,0,0,1,47,3,4,1,3,3,2019,1,2,13,4,0,15,15,1,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,57.89,6,3,0,0,4,3,1,1361.6,0,0,0 +7498,9189,16745,-9,16744,16742,3,1,0,12,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.9786828324875,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,3,1,1361.6,0,0,0 +7498,9189,16746,-9,16744,16742,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.909910801159,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,3,1,1361.6,0,0,0 +7499,9190,16747,-9,16749,16751,3,1,1,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.930966644816,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,642.3333333333334,0,0,0 +7499,9190,16748,-9,16749,16751,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-979.6789582554262,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,3,1,642.3333333333334,0,0,0 +7499,9190,16749,16751,-9,-9,1,1,0,30,1,1,4,0,1,-9,5,1,0,5,8.415735076654894,8.781171614813532,0,2,0,-9,3,0,-2,-91.28872731563175,0,0,1,32,2,4,1,2,3,2019,1,4,8,0,50,42,15,1,0,1,0,10.88285485130927,10.88285485130927,0,0,0,0,0,0,0,1,1,0,2.037902453915525,0,0,0,42.74,57.55,6,3,0,0,6,3,1,642.3333333333334,0,0,0 +7499,9190,16750,-9,16749,16751,2,1,0,10,2,1,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-992.6737596469289,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,6,3,1,642.3333333333334,0,0,0 +7499,9190,16751,16749,-9,-9,4,1,1,32,1,1,4,0,2,-9,2,1,0,4,7.33757039293345,7.609181398939866,0,2,0,-9,3,0,2,50.9766979384932,0,0,0,30,1,5,1,-9,-9,2019,1,1,11,0,40,25,15,1,0,1,0,6.545561134774484,6.545561134774484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,6,3,1,642.3333333333334,0,0,0 +7499,9190,16752,-9,16749,16751,5,1,0,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.7543304632302,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,6,3,1,642.3333333333334,0,0,0 +7500,9191,16753,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,4,8.448675097519162,8.307316633371721,0,3,0,0,0,-9,0,-1107.869544940133,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,13.91162398670649,13.91162398670649,0,0,0,0,0,0,0,0,0,0,0,0,1.959495954049069,3,60.12,54.8,6,1,0,0,11,4,0,958,0,0,0 +7501,9192,16754,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,3,8.532865003929995,8.320451525771807,0,3,0,0,0,-9,0,-1061.048408313458,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,45,15,1,0,-9,0,18.32070064297017,18.32070064297017,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.23,55.95,5,2,0,0,7,5,1,435,0,0,0 +7502,9193,16755,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,4,8.592323861621498,8.228095073195746,0,3,0,0,0,-9,0,-1023.515714057929,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,52,73,15,1,0,-9,0,8.386438836839908,8.386438836839908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.97,56.11,6,1,0,0,7,4,0,554,0,0,0 +7502,9194,16756,-9,16755,-9,2,1,1,20,2,0,0,1,2,0,7,2,0,4,5.585301966257595,7.851652556827895,7.44475794096259,3,0,0,0,-9,0,-1024.741641982284,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,2,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,7.948375848064504,0,0,0,54.2,57.49,6,1,0,0,7,3,0,246,0,0,0 +7503,9195,16757,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1122.768042161001,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.19,43.1,5,1,1,1,10,1,0,288,0,0,0 +7504,9196,16758,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,5,0,9.638443138213335,9.65392812385423,3,0,0,0,-9,0,-1048.453827367385,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.969573992849925,9.534330801112654,0,0,51.39,59.18,6,3,0,0,8,5,1,1117,0,0,0 +7505,9197,16759,-9,16761,16762,5,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.7044144348147,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,1596.75,0,0,0 +7505,9197,16760,-9,16761,16762,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.6075231107533,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,1596.75,0,0,0 +7505,9197,16761,16762,-9,-9,2,1,0,50,1,0,2,0,3,-9,2,1,0,3,7.841413541354089,7.629598668652635,0,2,0,-9,30,0,-2,-32.4715618077136,0,0,0,52,3,2,1,2,2,2019,1,1,8,1,38,38,15,1,1,1,0,6.17717238789008,6.17717238789008,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.29,6,1,0,0,7,4,1,1596.75,0,0,0 +7505,9197,16762,16761,-9,-9,1,1,1,52,1,0,2,0,3,-9,2,1,0,2,8.662686514506831,8.708486560210073,0,2,0,-9,30,0,2,41.73874091944909,0,0,0,50,3,3,1,3,3,2019,1,2,10,1,35,40,15,1,1,1,0,12.25755730694376,12.25755730694376,0,0,0,0,0,0,0,1,1,0,3.823655055953691,0,0,0,53.63,40.71,5,1,0,0,7,4,1,1596.75,0,0,0 +7505,9198,16763,-9,16761,16762,3,1,1,23,2,0,2,0,2,-9,2,1,0,4,7.979099235145114,8.025176309420049,0,3,0,0,0,-9,0,-870.3701504692057,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,55,50,15,1,2,-9,1,6.68500224803747,6.68500224803747,0,0,0,0,0,0,0,1,1,0,2.976299061879895,0,0,0,41.3,60.77,5,1,0,0,7,4,1,888,0,0,0 +7506,9199,16764,16766,-9,-9,2,1,1,40,1,0,1,0,2,-9,2,1,0,3,9.268371730587193,9.311881983095731,0,2,0,-9,14,0,1,-36.70517600892221,0,0,0,39,2,4,1,2,3,2019,1,1,7,0,35,35,15,1,0,1,0,32.66541885559902,32.66541885559902,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.2,52.61,6,1,0,0,1,5,1,2202.333333333333,0,0,0 +7506,9199,16765,-9,16766,16764,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.6350964082249,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,1,5,1,2202.333333333333,0,0,0 +7506,9199,16766,16764,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,4,8.271425189846854,8.119987142445005,0,2,0,-9,14,0,-1,-11.84783117307805,0,0,1,40,2,3,1,-9,-9,2019,1,2,19,8,32,23,15,1,8,1,0,13.420119927371,13.420119927371,0,0,0,0,0,0,0,1,1,0,0,0,71.91636808030951,3,18.22,67.25,5,1,0,0,1,5,1,2202.333333333333,0,0,0 +7507,9200,16767,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,8,3,1,2,0,5.172206969782863,5.349466260316434,3,0,0,0,-9,0,-942.0808276702161,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.709826601158806,0,0,0,60.41,31.87,4,1,0,0,2,2,1,99,0,0,0 +7508,9201,16768,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,2,0,7.540568895775041,7.241533035157014,3,0,0,0,-9,0,-992.4918248363064,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.524961382633363,7.309109685037599,0,0,53.53,36.45,5,1,0,0,12,3,1,240,0,0,0 +7509,9202,16769,16770,-9,-9,2,1,0,60,1,0,0,0,3,-9,1,1,0,3,0,0,0,1,0,-9,39,0,-2,-137.6608340457236,0,0,0,62,3,5,1,3,3,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.27,52.67,6,1,0,0,13,2,1,1040,0,0,0 +7509,9202,16770,16769,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,5,6.882324665771391,7.214494495706312,0,1,0,-9,39,0,2,62.53048463292366,0,0,0,60,3,3,1,3,3,2019,1,2,6,0,70,60,15,1,0,1,0,1.521367097923154,1.521367097923154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,55,7,1,0,0,13,2,1,1040,0,0,0 +7510,9203,16771,-9,16772,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.987988003061,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,4,1,1308.333333333333,0,0,0 +7510,9203,16772,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,4,8.425218049202318,8.673915179908811,7.145766948188855,4,0,0,0,-9,0,-1009.548839193143,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,45,50,15,1,0,-9,0,10.85617583380545,10.85617583380545,0,0,0,0,0,0,0,1,1,0,6.880309920395082,0,0,0,55.76,52.64,6,1,0,0,8,4,1,1308.333333333333,0,0,0 +7510,9203,16773,-9,16772,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.336991891874,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.197178615437566,0,0,0,46,59,5,1,0,0,8,4,1,1308.333333333333,0,0,0 +7510,9204,16774,-9,16772,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,4,7.291655104851949,7.191985155036829,0,3,0,0,0,-9,0,-930.22097570062,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,12,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.645221579382554,0,0,0,48,59,5,1,0,0,8,2,1,3172,0,0,0 +7511,9205,16775,16776,-9,-9,1,1,0,58,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,16,0,-5,-135.1350048763031,0,0,0,63,2,3,1,3,3,2019,3,2,12,1,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,1,0,7,2,1,1237.5,0,0,0 +7511,9205,16776,16775,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,6.177285285305663,6.131643053944829,0,1,0,-9,25,0,5,7.869717701026511,0,0,0,58,3,4,3,3,3,2019,2,1,10,0,30,30,15,1,0,3,0,1.657232587693611,1.657232587693611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,5,1,0,0,7,2,1,1237.5,0,0,0 +7512,9206,16777,16778,-9,-9,2,1,0,63,1,0,0,0,3,-9,2,1,0,3,7.274759183010963,7.38108323719864,0,1,0,-9,41,0,-2,-36.69065474623344,0,0,0,65,2,3,3,3,3,2019,2,1,13,2,22,21,15,1,2,4,0,7.398626085533741,7.398626085533741,0,0,0,0,0,0,0,1,1,0,3.037453868434983,0,0,0,57.64,39.56,6,1,0,0,8,3,1,598.5,0,0,0 +7512,9206,16778,16777,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,3,6.36517817170157,6.773898853473402,0,1,0,-9,41,0,2,58.29895674005444,0,0,0,63,3,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.83,36.54,6,1,0,0,8,3,1,598.5,0,0,0 +7512,9207,16779,-9,16777,16778,3,1,0,36,2,0,0,0,2,-9,2,1,0,1,7.237157563180747,7.201257722265151,0,3,0,0,0,-9,0,-965.5431871037216,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,27,9,33,0,15,1,9,-9,1,4.383252858261615,4.383252858261615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.86,33.3,1,1,0,1,8,3,1,448,0,0,0 +7513,9208,16780,16782,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,4,9.410931446932773,9.209146374751182,0,2,0,-9,21,0,2,-81.6163913128283,0,0,0,49,1,5,1,1,1,2019,1,2,11,0,35,85,15,1,0,1,0,34.48032241937794,34.48032241937794,0,0,0,0,0,0,0,1,1,0,6.820096575500673,0,0,0,54.79,55.86,6,1,0,0,8,5,1,494.75,0,0,0 +7513,9208,16781,-9,16782,16780,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.037339172874,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,8,5,1,494.75,0,0,0 +7513,9208,16782,16780,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,5,9.08061923086181,8.877212262368323,6.05413191173047,2,0,-9,21,0,-2,-95.62041877458826,0,0,0,51,1,4,1,1,1,2019,1,1,12,3,33,30,15,1,3,1,0,24.06169460899693,24.06169460899693,0,0,0,0,0,0,0,1,1,0,6.517007957647023,0,0,0,40.67,62.66,4,1,0,0,8,5,1,494.75,0,0,0 +7513,9208,16783,-9,16782,16780,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.465083013801,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,5,1,494.75,0,0,0 +7514,9209,16784,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,5.965960569697298,5.613746760673468,3,0,0,0,-9,0,-957.6813819777341,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.877975716741889,6.590845552593,3,55.51,40.83,6,1,0,0,2,2,1,700,0,0,0 +7515,9210,16785,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,4,8.371502792295423,8.404739708989538,0,3,0,0,0,-9,0,-975.4291665733235,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,49,89,15,1,1,-9,0,10.38807767505027,10.38807767505027,0,0,0,0,0,0,0,1,1,0,0,0,11.76220747150658,3,49.27,56.95,6,1,0,0,10,4,0,515,0,0,0 +7516,9211,16786,16787,-9,-9,1,1,1,44,1,1,1,0,3,-9,2,1,0,3,8.089473310731091,8.218648916720346,0,2,0,-9,2,0,11,36.80735123316485,0,0,0,33,1,4,3,3,2,2019,2,2,11,0,55,41,15,1,2,3,0,6.562355052605526,6.562355052605526,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.5,45.52,3,3,0,1,6,3,1,523.3333333333334,0,0,0 +7516,9211,16787,16786,-9,-9,2,1,0,33,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-11,19.13367584119749,0,0,1,44,3,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,6,3,1,523.3333333333334,0,0,0 +7516,9211,16788,-9,16787,16786,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-836.3074322622356,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,3,1,523.3333333333334,0,0,0 +7517,9212,16789,16790,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,7.604017213334663,7.534561156436014,1,0,-9,57,0,-1,28.58390140078628,0,0,0,75,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.808108621791512,7.695246876540919,0,0,55.61,50.3,6,1,0,0,10,5,1,334,0,0,0 +7517,9212,16790,16789,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,8.737515281328312,8.839259426072649,1,0,-9,57,0,1,-1.481827080240798,0,0,0,74,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.046067247087066,8.929167437909811,0,0,58.15,52.91,7,1,0,0,10,5,1,334,0,0,0 +7518,9213,16791,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,1,6.700692250540213,6.546563916023584,0,3,0,0,0,-9,0,-1025.729319502524,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,6,15,11,15,1,6,-9,0,5.897468844499265,5.897468844499265,0,0,0,0,0,0,0,1,1,0,0,0,11.58558907519033,3,43.18,21.26,2,1,0,0,1,2,1,392,0,0,0 +7519,9214,16792,16793,-9,-9,2,1,0,56,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,36,0,-1,33.02017589582823,0,0,0,57,2,4,1,3,2,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.81661285665955,0,0,0,39.44,18.49,3,1,0,0,11,4,1,457.5,0,0,0 +7519,9214,16793,16792,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.654981017459683,8.985454827035852,0,1,0,-9,36,0,1,57.90374599188384,0,0,0,56,2,1,3,3,2,2019,2,2,9,0,44,44,15,1,0,3,0,16.71180847931758,16.71180847931758,0,0,0,0,0,0,0,1,1,0,0,0,.2842228817486259,1,51.83,57.2,6,1,0,0,11,4,1,457.5,0,0,0 +7519,9215,16794,-9,16792,16793,4,1,0,30,2,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-960.8738767958948,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.742798861518507,0,0,3,11.07,61.69,4,1,1,0,11,1,1,1011,0,0,0 +7520,9216,16795,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,1,1,0,3,8.497504369640289,8.638394871529364,6.68319073097688,3,0,0,0,-9,0,-813.1900101098159,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,31,11,25,30,15,1,11,-9,0,26.30516977380928,26.30516977380928,0,0,0,0,0,0,0,0,0,0,7.079354292298174,0,0,0,8.18,64.17,1,1,0,0,10,5,1,451,0,0,0 +7521,9217,16796,16797,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,48,0,4,-70.56841620020607,0,0,0,74,2,4,3,3,3,2019,4,1,6,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,58.73,16.63,7,1,0,0,10,2,1,683,0,0,0 +7521,9217,16797,16796,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.138405869996215,7.092926855808776,1,0,-9,48,0,-4,-166.7608577090581,0,0,0,78,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.390590129843395,7.29921750546159,0,0,53.42,52.33,6,1,0,0,10,2,1,683,0,0,0 +7522,9218,16798,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1043.941774926985,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.35,13.17,1,1,0,0,8,1,0,927,0,0,0 +7523,9219,16799,16800,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,18,0,0,-97.51818376302012,0,0,0,71,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.041678375936361,0,0,0,64.23999999999999,34.3,6,1,0,0,1,2,1,1517,0,0,0 +7523,9219,16800,16799,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.820265903918654,6.761605854778759,1,0,-9,18,0,0,-10.16351173873662,0,0,0,71,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.605600154629649,7.047819864372746,0,0,48.88,46.26,6,1,0,0,1,2,1,1517,0,0,0 +7524,9220,16801,16802,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,7.999552623790988,7.900186084127744,0,1,0,-9,34,0,4,-36.55380212636462,0,0,0,57,1,4,1,2,3,2019,1,1,7,0,44,48,15,1,0,1,0,8.058487000350302,8.058487000350302,0,0,0,0,0,0,0,0,0,0,3.217608662426126,0,0,0,58.72,43.42,6,1,0,0,6,4,1,411.5,0,0,0 +7524,9220,16802,16801,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,4,7.969086404735721,8.00226730305377,0,1,0,-9,34,0,-4,-42.41153707700393,0,0,0,61,2,3,1,2,2,2019,1,2,6,0,39,25,15,1,0,1,0,8.361643283361143,8.361643283361143,0,0,0,0,0,0,0,0,0,0,4.204957156453716,0,6.176371027271835,3,57.16,56.15,5,1,0,0,6,4,1,411.5,0,0,0 +7524,9221,16803,-9,16802,16801,3,1,0,23,2,0,0,0,1,-9,2,1,0,5,8.644796492181555,8.685138697490476,0,3,0,0,0,-9,0,-1010.034776592383,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,22,8,20,60,15,1,8,-9,1,34.03387490240566,34.03387490240566,0,0,0,0,0,0,0,0,0,0,2.254226684347284,0,0,3,30.04,60.46,6,1,0,0,6,5,1,3396,0,0,0 +7524,9222,16804,-9,16802,16801,4,1,0,21,2,0,0,0,2,-9,7,2,0,4,7.477402881731494,7.693404642050546,0,3,0,0,0,-9,0,-1121.424158521328,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,1,25,20,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,6,3,1,890,0,0,0 +7525,9223,16805,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,4,8.69642643077769,8.856315552089185,0,3,0,0,0,-9,0,-1146.907958979501,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,50,45,15,1,2,-9,0,18.10295456169487,18.10295456169487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,5,3,0,1,8,5,0,656,0,0,0 +7526,9224,16806,-9,16809,16807,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.2945549022204,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,6,5,1,947.25,0,0,0 +7526,9224,16807,16809,-9,-9,2,1,1,40,1,0,2,0,1,-9,1,1,0,2,9.511428792040981,9.23921696278242,0,2,0,-9,5,0,4,40.07757533832003,0,0,0,36,1,5,1,-9,-9,2019,1,1,10,0,60,70,15,1,0,1,0,27.04534507538869,27.04534507538869,0,0,0,0,0,0,0,0,0,0,6.191784374417351,0,0,0,36.18,42.97,3,3,0,0,6,5,1,947.25,0,0,0 +7526,9224,16808,-9,16809,16807,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1165.190425005381,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,3,0,0,6,5,1,947.25,0,0,0 +7526,9224,16809,16807,-9,-9,1,1,0,36,1,0,2,0,1,-9,1,1,0,5,8.833742978882954,8.49798600992367,0,2,0,-9,10,0,-4,112.1063100536149,0,0,1,40,1,2,1,1,3,2019,1,2,15,3,25,60,15,1,3,1,0,29.00386578030781,29.00386578030781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,62.56,4,3,0,0,6,5,1,947.25,0,0,0 +7527,9225,16810,16811,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,6.56124539560365,6.168164025650112,1,0,-9,6,0,9,-56.78370475050383,0,0,0,59,2,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,2.338650145696992,0,2.938322374691837,0,0,1,1,0,0,6.188120075741613,0,0,54.69,15.89,5,1,0,0,11,2,0,1495.5,0,0,0 +7527,9225,16811,16810,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,6,0,0,41.90858120671296,0,0,0,68,3,2,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.73756189988899,1,35.16,23.42,5,1,0,0,11,2,0,1495.5,0,0,0 +7527,9226,16812,-9,16811,16810,3,1,1,32,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-931.7915247330757,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.464327762460334,3,10.03,57.93,2,1,1,1,11,1,0,224,0,0,0 +7527,9227,16813,-9,16811,16810,4,1,1,27,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1043.224636625432,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.22,46.92,5,1,0,0,11,1,0,373,0,0,0 +7528,9228,16814,-9,16816,16818,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.760057945202,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,1096.2,0,0,0 +7528,9228,16815,-9,16816,16818,3,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-997.5204797876335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,3,1,1096.2,0,0,0 +7528,9228,16816,16818,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,4,7.090103144995264,7.112996738272849,0,2,0,-9,20,0,-3,35.67771575839789,0,0,1,43,2,4,1,2,2,2019,1,1,15,4,33,30,15,1,4,1,0,3.772024998619399,3.772024998619399,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,2,3,1,1096.2,0,0,0 +7528,9228,16817,-9,16816,16818,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.6749809629247,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,1096.2,0,0,0 +7528,9228,16818,16816,-9,-9,1,1,1,43,1,0,3,0,2,-9,2,1,0,4,8.742231506238159,8.534416438310899,0,2,0,-9,8,0,3,38.31024014195738,0,0,0,40,2,4,1,-9,-9,2019,1,2,11,0,44,45,15,1,0,1,0,16.10963328904766,16.10963328904766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,2,3,1,1096.2,0,0,0 +7529,9229,16819,16820,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,4,9.790980540241572,9.639931935173792,0,1,0,-9,6,0,3,-87.63082928345273,0,0,0,51,2,4,1,3,3,2019,1,1,14,3,55,0,15,1,3,1,0,30.61905796483401,30.61905796483401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.42,59.64,7,1,0,0,11,5,1,1009.5,0,0,0 +7529,9229,16820,16819,-9,-9,1,1,0,51,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,6,0,-3,-93.94325230024003,0,0,0,54,2,4,1,3,3,2019,1,2,9,0,50,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,11,5,1,1009.5,0,0,0 +7529,9230,16821,-9,16820,16819,3,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.054440166411462,7.867744832314203,0,3,0,0,0,-9,0,-1230.301389795276,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,55,0,15,1,1,-9,1,4.279167113831662,4.279167113831662,0,0,0,0,0,0,0,0,0,0,2.651182933990097,0,0,0,39.15,58.79,5,1,0,0,11,3,1,1548,0,0,0 +7529,9231,16822,-9,16820,16819,4,1,0,18,2,0,0,0,2,1,2,1,0,5,7.765335342331722,7.793878772728148,0,3,0,0,0,-9,0,-936.7558589949415,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,0,15,1,3,-9,1,7.232494859999653,7.232494859999653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,11,3,1,259,0,0,0 +7529,9232,16823,-9,16820,16819,5,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.515116584033029,8.344827299457748,0,3,0,0,0,-9,0,-919.5624335959269,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,7,48,43,15,1,7,-9,1,9.228798673649514,9.228798673649514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,58.7,6,1,0,0,11,4,1,598,0,0,0 +7530,9233,16824,16826,-9,-9,2,1,0,46,1,0,3,0,2,-9,6,3,0,4,0,6.117304176836278,6.041154191412115,2,0,-9,2,0,3,20.88627361287742,0,0,0,43,2,4,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.791361396595912,0,0,0,54.79,55.86,6,1,0,0,4,3,1,947.2,0,0,0 +7530,9233,16825,-9,16824,16826,4,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1023.277130468436,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,4,3,1,947.2,0,0,0 +7530,9233,16826,16824,-9,-9,1,1,1,43,1,0,3,0,2,-9,2,1,0,4,8.284334426217811,8.445843383001019,0,2,0,-9,2,0,-3,-52.46224895522092,0,0,0,46,2,4,3,2,2,2019,2,2,9,0,46,50,15,1,0,3,0,9.003835932028554,9.003835932028554,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,5,1,0,0,4,3,1,947.2,0,0,0 +7530,9233,16827,-9,16824,16826,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.0561189382364,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,947.2,0,0,0 +7530,9233,16828,-9,16824,16826,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.8269998356437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,947.2,0,0,0 +7531,9234,16829,-9,16831,16830,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-836.2054965052846,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,7,2,1,970.3333333333334,0,0,0 +7531,9234,16830,16831,-9,-9,1,1,1,41,1,0,1,0,1,-9,1,1,0,4,6.746016476833218,6.753769498549892,0,2,0,-9,13,0,7,39.75325445211476,0,0,0,34,3,4,3,3,3,2019,2,2,6,0,30,30,15,1,0,3,0,3.282874334341037,3.282874334341037,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,3,0,1,7,2,1,970.3333333333334,0,0,0 +7531,9234,16831,16830,-9,-9,2,1,0,34,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-7,-66.64476211316313,-9,0,1,41,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,7,2,1,970.3333333333334,0,0,0 +7532,9235,16832,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,2,6.927694175141297,6.998528754992472,0,3,0,-9,0,-9,0,-1033.248318204708,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,20,0,15,1,9,-9,0,7.067981264248865,7.067981264248865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.43,37.06,2,1,0,1,11,2,0,728,0,0,0 +7532,9236,16833,-9,16832,-9,2,1,1,25,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1090.927615925288,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,1,0,11,1,0,590,0,0,0 +7533,9237,16834,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,6.693358087687873,6.586411942866395,3,0,0,0,-9,0,-1110.08061822075,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.225786392671505,0,0,64.40000000000001,42,6,1,0,0,12,2,1,342,0,0,0 +7534,9238,16835,16836,-9,-9,2,1,0,52,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,9,0,-16,0,0,0,0,68,2,2,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.55,31.73,5,1,0,1,7,1,0,1006.5,0,0,0 +7534,9238,16836,16835,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,16,0,0,0,0,52,3,1,3,-9,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,4,1,0,0,7,1,0,1006.5,0,0,0 +7535,9239,16837,16838,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,3,0,7.567281934105018,7.786775150511849,1,0,-9,64,0,3,105.2063542960969,0,0,0,81,2,3,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.841307896180705,7.250125944869826,0,0,57.04,31.79,6,1,0,0,7,3,1,576,0,0,0 +7535,9239,16838,16837,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,5.857817389499286,5.924551775833756,1,0,-9,64,0,-3,-8.942175963888547,0,0,0,84,1,3,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.488355961974077,6.05217842499817,0,0,51,45,6,1,0,0,7,3,1,576,0,0,0 +7536,9240,16839,16840,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,8.553085383461925,8.126070113912048,1,0,-9,54,0,1,128.892700123532,0,0,0,70,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.242509800418302,8.101676734175292,0,0,59.69,38.61,7,1,0,0,13,3,1,613,0,0,0 +7536,9240,16840,16839,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,4.828080876486938,4.642765741025038,1,0,-9,54,0,-1,-247.5411111974598,0,0,0,71,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.595228381967578,4.739512603002346,0,0,50.27,44.25,6,1,0,0,13,3,1,613,0,0,0 +7537,9241,16841,-9,-9,-9,1,1,0,79,2,0,0,0,3,-9,4,3,0,3,0,6.784507390684465,7.012567366545396,3,0,0,0,-9,0,-1083.341505550721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.8617902352690154,6.908277948360366,0,0,55.65,41.83,6,1,0,0,10,2,1,341,0,0,0 +7537,9242,16842,-9,16841,-9,2,1,1,53,2,0,0,0,2,-9,2,1,0,2,8.037669980858364,8.48034619630287,0,3,0,0,0,-9,0,-959.4020591932129,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,35,35,15,1,0,-9,1,10.36989458025335,10.36989458025335,0,0,0,0,0,0,0,1,1,0,0,0,24.05170950025447,3,45,40,5,1,0,0,10,4,1,939,0,0,0 +7538,9243,16843,-9,16844,16846,4,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.524935874943,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,4,4,1,1104.5,0,0,0 +7538,9243,16844,16846,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,5,8.064578735691475,8.133032801286154,0,2,0,-9,6,0,-14,9.805630879774998,0,0,1,50,1,5,1,1,2,2019,1,2,9,1,21,45,15,1,1,1,0,12.77487747424592,12.77487747424592,0,0,0,0,0,0,0,1,1,0,.4915170946799483,0,0,0,54.69,57.47,7,1,0,0,4,4,1,1104.5,0,0,0 +7538,9243,16845,-9,16844,16846,5,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.8043277390294,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,4,4,1,1104.5,0,0,0 +7538,9243,16846,16844,-9,-9,2,1,1,50,1,1,2,0,1,-9,2,1,0,5,8.901090312834791,8.404497827795749,0,2,0,-9,6,0,14,80.47685077581805,0,0,0,36,1,5,1,-9,-9,2019,1,1,22,8,37,37,15,1,8,1,0,20.04897466267356,20.04897466267356,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61.6,6,1,0,0,4,4,1,1104.5,0,0,0 +7538,9244,16847,-9,16844,16846,3,1,0,18,2,1,2,0,2,1,2,1,0,4,6.956387187675555,6.594913744888996,0,3,0,0,0,-9,0,-952.8117295615118,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,18,0,15,1,2,-9,1,7.145572219361375,7.145572219361375,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,4,2,1,506,0,0,0 +7539,9245,16848,-9,16849,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-909.4311898899999,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,2,0,590,0,0,0 +7539,9245,16849,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,4,7.271852918264516,7.736497536678979,6.785166702355646,4,0,0,0,-9,0,-1075.900563899743,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,18,18,15,1,0,-9,0,11.69269172305595,11.69269172305595,0,0,0,0,0,0,0,1,1,0,6.856847511184563,0,0,0,49.28,48.92,6,1,0,0,12,2,0,590,0,0,0 +7539,9245,16850,-9,16849,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,5.810723552721176,5.209867743029646,4,0,0,0,-9,0,-1033.556034549157,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.880483003333357,0,0,0,50.61,40.24,7,1,0,0,12,2,0,590,0,0,0 +7540,9246,16851,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,2,8.880747601030224,8.958680144108779,0,3,0,0,0,-9,0,-928.2412235460229,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,40,15,1,0,-9,0,21.90307917033028,21.90307917033028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.69,6,2,0,0,8,5,1,428,0,0,0 +7541,9247,16852,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-1077.102111742502,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.74,25.29,4,1,0,0,8,1,0,252,0,0,0 +7542,9248,16853,16854,-9,-9,2,1,0,62,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,8,0,-3,-40.59251374130289,0,0,0,65,2,4,1,2,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.72,32.34,6,1,1,0,12,4,1,461,0,0,0 +7542,9248,16854,16853,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,4,8.264658500497664,8.601512466032569,6.927877952545116,1,0,-9,8,0,3,71.27213590563952,0,0,0,62,2,2,3,3,3,2019,2,2,8,0,21,38,15,1,0,3,0,15.0610591538393,15.0610591538393,0,0,0,0,0,0,0,1,1,0,7.922655124721001,7.151370607707228,0,0,54.79,55.86,6,1,0,0,12,4,1,461,0,0,0 +7543,9249,16855,16856,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,2,0,8.709320710598751,8.236814787855096,1,0,-9,39,0,9,-224.4474937096603,0,0,0,65,1,3,3,2,2,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.083264439948608,8.782094641606115,0,0,47.39,52.89,6,1,0,0,8,4,1,632,0,0,0 +7543,9249,16856,16855,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,7.499243310308905,7.568024339704643,1,0,-9,40,0,0,89.78390139229217,0,0,0,74,1,2,3,-9,-9,2019,4,1,15,3,0,1,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.06036301306412,7.324591952026956,0,0,44.25,56.64,5,1,0,0,8,4,1,632,0,0,0 +7544,9250,16857,-9,16860,16862,6,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.9100211395503,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,588.1666666666666,0,0,0 +7544,9250,16858,-9,16860,16862,3,1,0,17,2,1,3,1,2,0,7,2,0,3,6.500931184612348,6.199958716692315,0,2,0,0,0,-9,0,-883.7544519820937,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,26,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,6,1,0,0,11,2,1,588.1666666666666,0,0,0 +7544,9250,16859,-9,16860,16862,5,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.666460518656,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,1,588.1666666666666,0,0,0 +7544,9250,16860,16862,-9,-9,1,1,0,36,1,1,3,0,2,-9,7,2,0,2,0,0,0,2,0,-9,7,0,2,-14.67175852994742,1,0,1,34,1,3,1,3,-9,2019,3,2,12,1,0,42,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.73,57.38,3,1,0,0,11,2,1,588.1666666666666,0,0,0 +7544,9250,16861,-9,16860,16862,4,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.5293288095016,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,1,588.1666666666666,0,0,0 +7544,9250,16862,16860,-9,-9,2,1,1,34,1,1,3,0,1,-9,2,1,0,3,7.908094136677022,7.900355912714116,0,2,0,-9,7,0,-2,64.99152214818223,0,0,0,36,2,2,2,3,3,2019,2,1,33,12,40,0,15,1,12,2,0,8.406592685272711,8.406592685272711,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.86,52.24,1,1,0,0,11,2,1,588.1666666666666,0,0,0 +7545,9251,16863,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,3,8.425445875883494,8.435286298461396,0,3,0,0,0,-9,0,-898.796608269992,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,60,0,15,1,1,-9,0,6.770076222543011,6.770076222543011,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,5,1,0,0,12,4,1,215,0,0,0 +7546,9252,16864,-9,16866,16865,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.6472255416094,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,1,328.75,0,0,0 +7546,9252,16865,16866,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,4,7.784516372804483,7.573143810766601,0,2,0,-9,7,0,6,139.5112641454751,0,0,0,36,2,2,3,-9,-9,2019,2,1,12,0,45,40,15,1,0,3,0,4.922655019056426,4.922655019056426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,6,1,0,0,4,2,1,328.75,0,0,0 +7546,9252,16866,16865,-9,-9,1,1,0,36,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-6,-131.3320043888351,0,0,1,42,2,4,1,2,-9,2019,3,2,28,12,0,24,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.960000000000001,51.15,5,1,0,0,4,2,1,328.75,0,0,0 +7546,9252,16867,-9,16866,16865,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.2708927020266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,1,328.75,0,0,0 +7547,9253,16868,-9,16870,16869,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.340336695195,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,4,1,334,0,0,0 +7547,9253,16869,16870,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.800190941524018,8.662068950338986,0,2,0,-9,15,0,0,-112.0095538044655,0,0,0,40,1,5,1,2,2,2019,1,1,6,0,45,60,15,1,0,1,0,15.89074766615164,15.89074766615164,0,0,0,0,0,0,0,1,1,0,4.130141784994757,0,0,0,57.16,56.15,6,1,0,0,12,4,1,334,0,0,0 +7547,9253,16870,16869,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,5,8.036367871596035,7.803769391788609,0,2,0,-9,15,0,0,-51.04873361203351,0,0,1,40,2,4,1,3,3,2019,1,2,9,0,23,19,15,1,0,1,0,15.9993080699124,15.9993080699124,0,0,0,0,0,0,0,1,1,0,3.694131477147281,0,0,0,51.14,60.45,6,1,0,0,12,4,1,334,0,0,0 +7547,9253,16871,-9,16870,16869,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.1361274829765,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,334,0,0,0 +7548,9254,16872,16873,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,5,0,6.594511470912166,6.412336154340182,1,0,-9,8,0,0,47.51694873458379,0,0,0,71,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.772738490329165,6.468879625016955,0,0,57.06,57.76,7,1,0,0,11,3,1,1467.5,0,0,0 +7548,9254,16873,16872,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.729860367735255,7.193431128313184,1,0,-9,8,0,0,26.82657874923952,0,0,0,71,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.155514284612737,7.45528162088909,0,0,58.79,41.84,6,1,0,0,11,3,1,1467.5,0,0,0 +7549,9255,16874,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,4.460865360811991,4.783660311601252,3,0,0,0,-9,0,-1047.188800475267,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,5,0,0,15,4,5,-9,0,0,0,1,4.745902123528454,0,0,0,0,42.70360179231282,1,1,0,0,4.886328796496114,0,0,39.32,17.19,6,1,0,0,12,2,0,1468,0,0,0 +7550,9256,16875,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,5,8.529744044597475,8.661523356338995,0,3,0,0,0,-9,0,-1139.731686091674,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,39,37,15,1,4,-9,0,16.22490068973209,16.22490068973209,0,0,0,0,0,0,0,0,0,0,1.776468997318972,0,0,0,34.87,54.25,3,1,0,0,4,5,0,300,0,0,0 +7551,9257,16876,16877,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,7.953144754694923,7.879965338812677,1,0,-9,6,0,5,-64.34222458653684,0,0,0,74,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.591895545987501,7.886904232461148,0,3,49.35,59.64,6,1,0,0,7,3,1,737,0,0,0 +7551,9257,16877,16876,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-5,-12.17927101344747,0,0,0,79,2,4,3,3,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.54,46.62,6,1,0,0,7,3,1,737,0,0,0 +7552,9258,16878,16881,-9,-9,1,1,0,51,1,0,2,0,2,-9,2,1,0,4,7.386989673140731,7.435052025320028,0,2,0,-9,31,0,-6,88.59112601620569,0,0,0,57,1,4,3,-9,-9,2019,2,2,8,0,20,2,15,1,0,4,0,9.910996401177693,9.910996401177693,0,0,0,0,0,0,0,0,0,0,2.461739335647311,0,0,0,54.2,57.49,6,1,0,0,8,3,1,479,0,0,0 +7552,9258,16879,-9,16878,16881,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.9366242633051,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,3,1,479,0,0,0 +7552,9258,16880,-9,16878,16881,5,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.2593234780628,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,3,1,479,0,0,0 +7552,9258,16881,16878,-9,-9,2,1,1,57,1,0,2,0,1,-9,4,3,0,4,0,8.406878533190072,8.393217235685405,2,0,-9,31,0,6,53.20413143984733,0,0,0,51,2,4,1,3,3,2019,3,1,9,2,0,42,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.115783843144994,8.474994684125418,0,0,53.07,52.7,6,1,0,0,8,3,1,479,0,0,0 +7552,9259,16882,-9,16878,16881,3,1,0,22,2,0,2,0,1,1,2,1,0,5,7.816364809336522,7.888575927565056,0,3,0,0,0,-9,0,-944.1357707444473,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,35,0,15,1,0,-9,1,9.617276856506356,9.617276856506356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,4,1,444,0,0,0 +7553,9260,16883,16885,-9,-9,1,1,1,51,1,2,2,0,2,-9,2,1,0,3,8.908848455486462,9.07703577948579,6.700913240540638,2,0,-9,10,0,14,17.67920194153229,0,0,0,37,1,4,3,2,2,2019,2,2,15,5,40,39,15,1,5,3,0,19.84934479748964,19.84934479748964,0,0,0,0,0,0,0,1,1,0,0,7.131100548758781,0,0,46.08,57.2,6,1,0,0,9,4,1,774.75,0,0,0 +7553,9260,16884,-9,16885,16883,4,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.7176925354623,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,4,1,774.75,0,0,0 +7553,9260,16885,16883,-9,-9,2,1,0,37,1,2,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,10,0,-14,94.85114771183072,0,0,1,51,2,3,1,-9,-9,2019,3,1,16,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.75,59.12,2,1,0,0,9,4,1,774.75,0,0,0 +7553,9260,16886,-9,16885,16883,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.1711411479596,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,4,1,774.75,0,0,0 +7554,9261,16887,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,5.591890287189468,5.728782367750516,3,0,0,0,-9,0,-977.9995648028357,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.803416121587618,6.012669267279398,0,0,42.22,20.54,4,1,0,0,10,2,1,526,0,0,0 +7555,9262,16888,16889,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,1,0,4.783283795629784,4.469285379696831,1,0,-9,15,0,-1,85.33123720283572,0,0,0,70,2,1,3,3,3,2019,4,1,19,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.847651653980818,121.9123403504921,2,40.15,19.92,2,1,0,1,7,2,1,1131.5,0,0,0 +7555,9262,16889,16888,16890,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,14,0,1,90.76163992170336,0,0,0,69,2,1,3,3,3,2019,4,2,21,7,0,0,15,4,7,4,0,0,0,1,0,2.768763258668142,0,0,0,0,1,1,0,0,0,15.74392228530862,3,25.29,22.66,5,1,0,1,7,2,1,1131.5,0,0,0 +7555,9263,16890,-9,-9,-9,3,1,0,91,3,0,0,0,3,-9,4,3,0,1,0,5.6275145014202,5.7137939376066,3,0,0,0,-9,0,-1054.074203951647,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,4,12,-9,0,0,0,1,3.705882740542976,0,18.37627119439427,15.5860202288227,0,0,1,1,0,.2312669834041263,6.181706422898731,0,0,41,22,1,1,0,1,7,2,1,340,0,0,0 +7556,9264,16891,16892,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.214931600488599,8.482173528497801,0,1,0,-9,6,0,6,-80.52603369229161,0,0,0,52,2,4,1,-9,-9,2019,1,1,7,0,54,54,15,1,0,1,0,7.816099171899683,7.816099171899683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,7,1,0,0,4,4,1,615.5,0,0,0 +7556,9264,16892,16891,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.683118623839421,7.991001383439595,0,1,0,-9,6,0,-6,44.82662259355708,0,0,0,58,2,3,1,3,3,2019,1,2,6,0,38,44,15,1,0,1,0,8.842368886871832,8.842368886871832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.33,48.81,3,1,0,0,4,4,1,615.5,0,0,0 +7556,9265,16893,-9,16892,16891,3,1,0,29,2,0,0,0,3,-9,2,1,0,4,7.774581997449852,7.989595925302253,0,3,0,0,0,-9,0,-1011.019270288244,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,19,7,33,43,15,1,7,-9,1,8.345902216886978,8.345902216886978,0,0,0,0,0,0,0,0,0,0,0,0,7.483784245633792,3,34,53.28,5,1,0,0,4,3,1,1564,0,0,0 +7556,9266,16894,-9,16892,16891,4,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.688401874208007,8.060467371829789,0,3,0,0,0,-9,0,-1062.904336396682,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,45,45,15,1,0,-9,1,6.489491361589829,6.489491361589829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,4,3,1,850,0,0,0 +7557,9267,16895,16896,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,6.98539684553795,7.101877408482679,1,0,-9,45,0,7,-92.31013877107252,0,0,0,63,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.205538711580618,0,0,64.23999999999999,34.3,6,1,0,0,6,2,1,379,0,0,0 +7557,9267,16896,16895,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-7,-152.0936905702359,0,0,0,70,3,2,3,-9,-9,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.17,21.86,5,1,0,0,6,2,1,379,0,0,0 +7558,9268,16897,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1098.128727369108,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.421604620137073,0,0,0,50.14,53.97,6,1,0,0,2,1,1,1131,0,0,0 +7559,9269,16898,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,97,3,0,1,0,6.225708265202401,6.318348102994661,3,0,0,0,-9,0,-894.6297168431676,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,0,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.519410220538849,0,3,31.97,33.12,6,1,0,1,7,2,1,272,0,0,0 +7560,9270,16899,-9,-9,-9,1,1,0,44,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-919.097175435429,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,32.27,3,1,0,0,13,1,0,729,0,0,0 +7560,9271,16900,-9,16899,-9,2,1,1,25,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1097.194311998673,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.19,55.21,6,1,1,0,13,1,0,1470,0,0,0 +7560,9272,16901,-9,16899,-9,3,1,1,21,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1080.292689409719,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,4,1,1,0,13,1,0,1182,0,0,0 +7561,9273,16902,16904,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,4,8.384550943624438,8.581978750648608,0,2,0,-9,7,0,3,-3.664887537870936,0,0,0,31,2,3,1,-9,-9,2019,1,1,14,3,45,45,15,1,3,1,0,14.11392068235648,14.11392068235648,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.61,61.54,5,1,0,0,5,5,1,804.3333333333334,0,0,0 +7561,9273,16903,-9,16904,16902,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-949.9063906537117,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,5,1,804.3333333333334,0,0,0 +7561,9273,16904,16902,-9,-9,1,1,0,31,1,1,1,0,2,-9,5,1,0,3,8.171536950371467,8.271377086751736,0,2,0,-9,7,0,-3,-172.3456294275665,0,0,1,34,1,4,1,2,2,2019,1,2,9,1,35,36,15,1,1,1,0,11.33484522202483,11.33484522202483,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,41.27,7,1,0,0,5,5,1,804.3333333333334,0,0,0 +7562,9274,16905,16906,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.39149450906236,8.584397959659279,0,1,0,-9,7,0,-4,-16.96760652003336,0,0,0,59,2,2,1,3,2,2019,1,2,20,8,40,35,15,1,8,1,0,14.77593553332785,14.77593553332785,0,0,0,0,0,0,0,0,0,0,2.463113225794157,0,0,0,34.55,58.34,2,1,0,0,2,5,0,912.5,0,0,0 +7562,9274,16906,16905,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.680390300182118,8.467019014300302,0,1,0,-9,7,0,4,66.26295397639815,0,0,0,55,1,4,1,-9,-9,2019,1,1,12,2,50,47,15,1,2,1,0,11.13547100598396,11.13547100598396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,4,1,0,0,2,5,0,912.5,0,0,0 +7563,9275,16907,-9,16910,16912,6,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.474633567833,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,2,1,556.1666666666666,0,0,0 +7563,9275,16908,-9,16910,16912,5,1,0,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.2531229421418,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,2,1,556.1666666666666,0,0,0 +7563,9275,16909,-9,16910,16912,3,1,1,17,2,1,4,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-920.4121373386363,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,3,0,0,8,2,1,556.1666666666666,0,0,0 +7563,9275,16910,16912,-9,-9,1,1,0,41,1,1,4,0,2,-9,6,3,0,2,0,0,0,2,0,-9,21,0,-5,-96.47662602850502,0,0,1,46,1,2,1,3,3,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.54,43.04,4,3,0,0,8,2,1,556.1666666666666,0,0,0 +7563,9275,16911,-9,16910,16912,4,1,0,14,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.8899351273508,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,1,556.1666666666666,0,0,0 +7563,9275,16912,16910,-9,-9,2,1,1,46,1,1,4,0,1,-9,2,1,0,2,7.83694859133066,7.376407279878506,0,2,0,-9,7,0,5,79.5776543158324,0,0,0,41,2,2,3,-9,-9,2019,2,1,12,0,40,40,15,1,0,3,0,6.352835558139844,6.352835558139844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.98,51.26,3,3,0,0,8,2,1,556.1666666666666,0,0,0 +7564,9276,16913,16914,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.395100625449613,7.804871776648279,0,1,0,-9,7,0,-3,-61.59775745371218,0,0,0,60,3,2,1,2,2,2019,1,1,13,2,34,25,15,1,2,1,0,6.842184829772633,6.842184829772633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.84,50.73,7,1,0,0,11,4,1,1556.5,0,0,0 +7564,9276,16914,16913,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,2,8.145448072922839,8.116358923490269,6.503003332719082,1,0,-9,7,0,3,-9.585009867859029,0,0,0,57,2,4,1,3,3,2019,1,2,9,0,60,60,15,1,0,1,0,4.507905317936487,4.507905317936487,0,0,0,0,0,0,0,0,0,0,0,6.352693828547916,0,3,57.57,49.69,4,1,0,0,11,4,1,1556.5,0,0,0 +7565,9277,16915,-9,16916,16917,2,1,0,19,2,0,0,1,2,0,7,2,0,3,7.018827090359827,6.845240231809049,0,3,0,0,0,-9,0,-994.6957379931126,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,28,12,23,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.55,56.75,5,1,0,0,10,2,1,133,0,0,0 +7565,9278,16916,16917,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,3,8.811687519069613,8.841597375552967,0,1,0,-9,8,0,-1,-99.28565791588909,0,0,0,47,1,4,1,2,2,2019,1,3,11,1,80,65,15,1,1,1,0,7.931938288515823,7.931938288515823,0,0,0,0,0,0,0,0,0,0,2.798135320155243,0,0,0,57.74,43.82,5,1,0,0,10,5,1,997,0,0,0 +7565,9278,16917,16916,-9,-9,3,1,1,47,1,0,0,0,1,-9,2,1,0,4,9.377501794055929,9.228013168063868,0,1,0,-9,8,0,1,-116.6533931998619,0,0,0,46,1,3,1,-9,-9,2019,1,1,7,0,48,48,15,1,0,1,0,33.9008135521773,33.9008135521773,0,0,0,0,0,0,0,0,0,0,1.592167300301227,0,0,0,54.18,49.48,6,1,0,0,10,5,1,997,0,0,0 +7566,9279,16918,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.285542035386296,8.285748632206731,0,3,0,0,0,-9,0,-1010.672364127524,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,40,40,15,1,8,-9,0,10.20477244215858,10.20477244215858,0,0,0,0,0,0,0,0,0,0,.2218979297783353,0,0,0,27.81,65.69,3,1,0,0,6,4,0,358,0,0,0 +7567,9280,16919,16920,-9,-9,1,1,0,57,1,1,3,0,2,-9,2,1,0,2,7.396155684105564,7.450609462411686,0,2,0,-9,39,0,-1,88.26949565522362,0,0,0,58,2,3,1,2,2,2019,1,2,25,9,29,27,15,1,9,1,0,8.864798366130721,8.864798366130721,0,0,0,0,0,0,0,1,1,0,0,0,12.30844987042551,3,35.3,34.21,2,1,0,0,10,4,1,1008.5,0,0,0 +7567,9280,16920,16919,-9,-9,2,1,1,58,1,1,3,0,2,-9,2,1,0,3,8.738017596138548,8.958934101986529,0,2,0,-9,39,0,1,38.1926789431211,0,0,0,57,2,2,1,2,2,2019,1,1,13,3,45,41,15,1,3,1,0,14.74147575063371,14.74147575063371,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,1,10,4,1,1008.5,0,0,0 +7567,9281,16921,-9,16919,16920,3,1,1,34,2,1,3,0,2,-9,2,1,0,5,8.300964990416476,7.880413464638004,0,3,0,0,0,-9,0,-1141.600588104618,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,42,37,15,1,2,-9,1,10.61828817630641,10.61828817630641,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,6,1,0,0,10,4,1,223,0,0,0 +7567,9282,16922,-9,16919,16920,4,1,1,24,2,1,3,0,2,-9,2,1,0,3,8.330975251650166,8.401626476914098,0,3,0,0,0,-9,0,-1047.263168570314,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,50,45,15,1,4,-9,1,10.49987133669046,10.49987133669046,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.81,56.92,2,1,0,0,10,4,1,239,0,0,0 +7567,9283,16923,-9,16924,-9,7,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-860.7421578468135,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,385,0,0,0 +7567,9283,16924,-9,16919,16920,5,1,0,32,2,1,3,0,2,-9,2,1,0,5,6.423793949862088,6.66770181297685,0,3,0,-9,0,-9,0,-1075.318870066625,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,24,0,15,1,4,-9,1,3.788311418889853,3.788311418889853,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.3,65.67,4,1,0,1,10,2,1,385,0,0,0 +7567,9283,16925,-9,16924,-9,8,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1084.380877718039,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,1,385,0,0,0 +7567,9283,16926,-9,16924,-9,6,1,1,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1001.827503682135,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,2,1,385,0,0,0 +7568,9284,16927,16928,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,3,0,7.795553879116873,8.264339100395116,1,0,-9,44,-9,4,59.78403628899811,-9,0,0,82,2,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.632324976028911,8.018482178522291,117.9257766171998,1,55.67,28.27,5,1,0,0,2,3,1,235.5,0,0,0 +7568,9284,16928,16927,-9,-9,1,1,0,82,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,44,-9,-4,-72.01930370488516,-9,0,0,86,2,3,3,3,3,2019,4,2,15,2,0,0,15,4,2,4,0,0,0,1,4.931371929154372,65.65220893272331,0,0,0,34.43746253085476,1,1,0,2.867349150071129,0,0,0,40.52,18.39,2,1,0,0,2,3,1,235.5,0,0,0 +7569,9285,16929,-9,16930,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.202592066976,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,0,685.5,0,0,0 +7569,9285,16930,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,4,7.218404452663475,7.334791644101834,0,4,0,0,0,-9,0,-1000.533928787803,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,16,15,1,0,-9,0,9.363977464167316,9.363977464167316,0,0,0,0,0,0,0,1,1,0,0,0,8.237307207140427,3,44.83,57.81,6,1,0,0,2,2,0,685.5,0,0,0 +7570,9286,16931,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,3,0,8.11895197858272,7.840390276433602,3,0,0,0,-9,0,-892.3786943863116,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,9.162491095905247,6.407115410943207,0,0,41.35,47.13,6,1,0,0,7,4,1,312,0,0,0 +7570,9287,16932,-9,16931,-9,2,1,0,27,2,0,0,0,1,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-978.5870915820021,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,40,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.186646449928942,0,0,0,45.23,46.75,6,1,0,0,7,1,1,1027,0,0,0 +7571,9288,16933,16936,-9,-9,2,1,0,30,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-2,-5.291517862586065,0,0,1,32,2,4,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.308155083432538,0,0,0,54.2,57.49,6,1,0,0,9,4,1,916.75,0,0,0 +7571,9288,16934,-9,16933,16936,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.521185829895,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,916.75,0,0,0 +7571,9288,16935,-9,16933,16936,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.190087581955,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,916.75,0,0,0 +7571,9288,16936,16933,-9,-9,1,1,1,32,1,0,2,0,2,-9,2,1,0,4,8.996870600021591,9.10043578914771,0,2,0,-9,11,0,2,-8.987563393056337,0,0,0,30,2,4,3,2,2,2019,2,2,7,0,45,49,15,1,0,3,0,19.91522138441595,19.91522138441595,0,0,0,0,0,0,0,1,1,0,3.37137228989569,0,0,0,57.16,56.15,7,1,0,0,9,4,1,916.75,0,0,0 +7572,9289,16937,16938,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,7.400814377424194,7.28457925975158,1,0,-9,40,0,2,-134.516752707362,0,0,0,75,3,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.647083926214718,7.308599220366788,0,0,56,32.97,3,1,0,0,12,2,1,412.5,0,0,0 +7572,9289,16938,16937,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,4.266896729992077,4.514762217867443,1,0,-9,40,0,-2,11.25238101408532,0,0,0,77,2,2,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.801957058432268,4.152345472151561,0,0,60.3,46.58,6,1,0,0,12,2,1,412.5,0,0,0 +7573,9290,16939,16940,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,2,8.434596305897635,8.451926082848294,0,1,0,-9,9,0,-3,55.15129918491903,0,0,0,58,2,3,1,-9,-9,2019,1,1,18,6,0,30,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.01,42.9,3,1,0,0,5,4,1,325.5,0,0,0 +7573,9290,16940,16939,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.427585482532807,7.583888239767436,0,1,0,-9,9,0,3,117.186812606155,0,0,0,55,1,2,1,3,3,2019,1,2,22,9,16,16,15,1,9,1,0,14.31855755575275,14.31855755575275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.48,49.07,6,1,0,0,5,4,1,325.5,0,0,0 +7574,9291,16941,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1046.743455156942,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,55.32,5,1,0,0,4,1,1,174,0,0,0 +7575,9292,16942,16943,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,3,7.72598112579555,7.80924306417683,0,2,0,-9,1,-9,-3,0,-9,0,1,46,2,3,1,3,3,2019,1,2,10,0,36,0,15,1,0,1,0,8.553978361079803,8.553978361079803,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,5,1,0,1,11,3,0,821.6666666666666,0,0,0 +7575,9292,16943,16942,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,3,7.930046232132597,7.601296542168185,0,2,0,-9,1,-9,3,0,-9,0,0,43,2,3,1,2,2,2019,1,1,24,12,42,0,15,1,12,1,0,6.388833591868114,6.388833591868114,0,0,0,0,0,0,0,1,1,0,0,0,0,3,28.9,61.01,4,1,0,0,11,3,0,821.6666666666666,0,0,0 +7575,9292,16944,-9,16942,16943,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-878.6931570620629,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,0,821.6666666666666,0,0,0 +7576,9293,16945,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,2,7.724351888895021,7.616663890320548,4.920450323325752,3,0,0,0,-9,0,-1065.967380380632,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,30,15,1,0,-9,0,7.994015558022606,7.994015558022606,0,0,0,0,0,0,0,0,0,0,0,5.061211486671213,0,0,39.99,30.49,4,1,0,0,2,3,0,1233,0,0,0 +7577,9294,16946,16949,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,5,8.573446533820338,8.562744494275231,0,2,0,-9,11,-9,-5,87.63438720513423,-9,0,1,36,2,2,1,3,-9,2019,1,2,32,12,45,0,15,1,12,1,0,16.64080901714101,16.64080901714101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.67,42.63,1,3,0,0,4,3,1,1093.8,0,0,0 +7577,9294,16947,-9,16946,16949,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-987.6739677119012,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,3,1,1093.8,0,0,0 +7577,9294,16948,-9,16946,16949,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-846.2645370281846,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,3,1,1093.8,0,0,0 +7577,9294,16949,16946,-9,-9,2,1,1,36,1,0,3,0,2,-9,1,1,0,2,6.764371572610103,7.354478084219154,0,2,0,-9,1,-9,5,71.64511380305905,-9,0,0,31,2,5,1,-9,-9,2019,1,1,36,12,20,0,15,1,12,1,0,4.91575509831832,4.91575509831832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.06,25.39,3,3,0,1,4,3,1,1093.8,0,0,0 +7577,9294,16950,-9,16946,16949,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1063.102746513056,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,4,3,1,1093.8,0,0,0 +7578,9295,16951,16952,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,5,8.993768804197698,9.197031261601682,0,1,0,-9,6,0,-1,30.68581198829538,0,0,0,60,1,3,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,26.57164935834493,26.57164935834493,0,0,0,0,0,0,0,0,0,0,.8574628426317126,0,3.584993351888074,3,55.34,54.6,6,1,0,0,11,5,0,728,0,0,0 +7578,9295,16952,16951,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,3,9.115739941126789,9.021515177419113,0,1,0,-9,6,0,1,-89.48631225682256,0,0,0,59,1,5,1,2,2,2019,1,1,9,1,44,48,15,1,1,1,0,18.24956340443796,18.24956340443796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,6,1,0,0,11,5,0,728,0,0,0 +7579,9296,16953,16954,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,9.098095438521472,8.924592496773203,0,1,0,-9,10,0,11,21.09458247880894,0,0,0,32,2,5,1,3,2,2019,1,2,8,0,40,42,15,1,0,1,0,17.95480297293758,17.95480297293758,0,0,0,0,0,0,0,0,0,0,4.13987343863255,0,0,0,56.58,49.75,6,1,0,0,6,5,1,419,0,0,0 +7579,9296,16954,16953,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,5,0,0,0,1,0,-9,10,0,-11,-96.66884419782589,0,0,1,43,2,4,1,-9,-9,2019,1,1,9,0,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.892337610419414,0,0,3,46.34,61.24,6,1,0,0,6,5,1,419,0,0,0 +7580,9297,16955,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,2,8.356469261563459,8.270473632280058,0,3,0,0,0,-9,0,-932.2770371696662,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,35,45,15,1,1,-9,0,12.15165095598794,12.15165095598794,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.21,40.39,4,1,0,0,7,4,0,696,0,0,0 +7581,9298,16956,16957,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,30,0,8,8.863904297393278,0,0,0,59,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,4,3,1,235,0,0,0 +7581,9298,16957,16956,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,7.856439200790467,7.762060265049275,0,1,0,-9,30,0,-8,-60.16455898844067,0,0,0,67,2,4,3,3,3,2019,2,2,9,0,40,40,15,1,0,4,0,6.318011744268597,6.318011744268597,0,0,0,0,0,0,0,1,1,0,.8771078725279392,0,0,0,57.16,56.15,5,1,0,0,4,3,1,235,0,0,0 +7582,9299,16958,-9,-9,-9,1,1,0,45,2,0,2,0,1,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-900.1460556640067,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,42,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,6,1,1,0,8,1,1,605.6666666666666,0,0,0 +7582,9299,16959,-9,16958,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-934.2676291659805,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,1,1,605.6666666666666,0,0,0 +7582,9299,16960,-9,16958,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1078.931325425154,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,2,0,0,8,1,1,605.6666666666666,0,0,0 +7583,9300,16961,-9,-9,-9,1,1,0,45,2,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1074.717321153626,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.9807170728385,3,23.57,25.91,2,3,0,1,4,1,1,551,0,0,0 +7583,9300,16962,-9,16961,-9,5,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1022.008597381947,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,4,1,1,551,0,0,0 +7583,9301,16963,-9,16964,-9,6,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-978.8713406538826,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,2,1,413,0,0,0 +7583,9301,16964,-9,16961,-9,2,1,0,22,2,0,1,0,2,-9,2,1,0,4,6.29326745438191,6.324965341274524,0,3,0,0,0,-9,0,-980.2961146040366,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,32,12,0,14,15,1,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.62,59,1,3,0,0,4,2,1,413,0,0,0 +7583,9302,16965,-9,16961,-9,3,1,0,20,2,0,1,0,2,1,2,1,0,4,7.59608133875571,7.180558594194855,0,3,0,0,0,-9,0,-1151.421030154714,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,7,36,0,15,1,7,-9,1,5.598310004362988,5.598310004362988,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.91,62.27,4,3,0,0,4,3,1,1149,0,0,0 +7583,9303,16966,-9,16961,-9,4,1,0,20,2,0,1,0,2,1,2,1,0,3,7.857352555032188,7.653913879703972,0,3,0,0,0,-9,0,-1094.261737163599,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,25,11,40,0,15,1,11,-9,1,7.362857389338028,7.362857389338028,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,57.61,3,3,0,0,4,4,1,782,0,0,0 +7584,9304,16967,16968,-9,-9,2,1,0,61,1,0,0,0,2,-9,6,3,0,4,0,7.935057687627205,8.052276900980274,1,0,-9,6,0,-6,-20.02550739282772,0,0,0,67,2,2,1,2,3,2019,3,1,35,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.086078780541883,7.94144210097107,119.9672655650599,1,19.66,61.51,1,1,0,0,13,5,1,820.5,0,0,0 +7584,9304,16968,16967,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,2,8.707126372559721,8.330527353532631,5.618749736025208,1,0,-9,6,0,6,-41.68807250263344,0,0,0,61,2,4,3,2,2,2019,2,2,14,4,47,43,15,1,4,3,0,11.31897395244784,11.31897395244784,0,0,0,0,0,0,0,1,1,0,6.294947809460654,5.840551215231216,0,0,58.21,20.95,6,1,0,0,13,5,1,820.5,0,0,0 +7585,9305,16969,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,7.107956082313574,7.12494319496972,3,0,0,0,-9,0,-1019.743396349765,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.649179267839041,0,0,0,1,1,0,0,7.419151492672037,0,0,57.02,37.22,6,1,0,0,2,2,1,690,0,0,0 +7585,9306,16970,-9,16969,-9,2,1,0,46,3,0,0,0,2,-9,2,1,0,3,8.153622464152154,8.223644451164299,0,3,0,-9,0,-9,0,-953.1881323588989,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,40,0,15,1,1,-9,1,8.889607408370894,8.889607408370894,0,0,0,0,0,0,0,1,1,0,0,0,15.52705785477471,3,39.44,57.55,4,1,0,0,2,4,1,326,0,0,0 +7586,9307,16971,16972,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,5,9.644652584407385,9.475355445518506,0,1,0,-9,29,0,-7,0,0,0,0,56,3,4,1,2,2,2019,1,1,8,0,50,38,15,1,0,1,0,37.3347922966137,37.3347922966137,0,0,0,0,0,0,0,0,0,0,2.497559216732418,0,0,0,57.06,57.76,6,1,0,0,8,5,1,1557,0,0,0 +7586,9307,16972,16971,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,4,9.505888861718486,9.852556712043588,0,1,0,-9,29,0,7,0,0,0,0,49,2,5,1,2,2,2019,1,2,3,0,70,10,15,1,0,1,0,29.89419142201718,29.89419142201718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.15,49.67,7,1,0,0,8,5,1,1557,0,0,0 +7587,9308,16973,16974,-9,-9,1,1,1,45,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,-1,52.7025277244261,0,0,0,46,1,1,3,2,2,2019,4,2,17,5,0,48,15,3,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.814612611454172,0,0,0,39.08,57.81,3,1,1,0,12,2,1,1132.666666666667,0,0,0 +7587,9308,16974,16973,-9,-9,2,1,0,46,1,0,2,0,1,-9,4,3,0,1,0,8.168307469077703,8.09391914332882,2,0,-9,2,0,1,73.9535943947898,0,0,0,45,2,3,3,3,3,2019,4,1,18,6,0,28,15,4,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.210947070535422,7.934891003996652,0,0,42.53,20.06,6,1,0,0,12,2,1,1132.666666666667,0,0,0 +7587,9308,16975,-9,16974,16973,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.5692314216361,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,1,1132.666666666667,0,0,0 +7587,9309,16976,-9,16974,16973,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1092.569009279672,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.046678532725436,0,0,0,48,59,5,1,0,0,12,2,1,621,0,0,0 +7588,9310,16977,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,3,0,6.885677998009337,6.926723450753697,3,0,0,0,-9,0,-946.2985745164661,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.06361851103694,0,0,0,27.17,57.85,5,1,0,0,4,2,0,696,0,0,0 +7589,9311,16978,16979,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.902851547224785,8.742166250488298,1,0,-9,27,0,-6,-20.21216552933987,0,0,0,67,1,4,3,2,2,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.049741473867295,8.423061257767971,0,0,60.12,54.8,1,1,0,0,4,5,1,557.5,0,0,0 +7589,9311,16979,16978,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,8.327011083394293,8.234738297555779,1,0,-9,26,0,6,21.03362070116303,0,0,0,61,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.892432558975995,8.261023615663049,0,0,57.16,56.15,7,2,0,0,4,5,1,557.5,0,0,0 +7589,9312,16980,-9,16979,16978,3,1,1,23,2,0,0,0,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1036.956621379684,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.241981797122665,0,0,0,48.81,59.91,6,1,0,0,4,1,1,650,0,0,0 +7590,9313,16981,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,1,1,0,3,7.349909252451863,7.419063212709802,0,3,0,0,0,-9,0,-910.7218724600804,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,5,35,35,15,1,5,-9,0,5.509276984056167,5.509276984056167,0,0,0,0,0,0,0,0,0,0,2.637368678966371,0,0,0,45,55.12,5,1,0,0,9,3,1,1762,0,0,0 +7591,9314,16982,16983,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,5,7.739456841409971,8.120462018012912,0,1,0,-9,15,0,0,-2.080006359352065,0,0,0,62,2,4,1,3,3,2019,1,2,7,0,36,37,15,1,0,1,0,8.565937804207998,8.565937804207998,0,0,0,0,0,0,0,0,0,0,.0628751505152528,0,10.94862419217646,3,61.01,53.18,5,1,0,0,10,4,1,294.5,0,0,0 +7591,9314,16983,16982,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,4,8.448374692371551,8.309605531065076,0,1,0,-9,15,0,0,62.5241805515114,0,0,0,62,2,5,1,3,3,2019,1,1,6,0,38,38,15,1,0,1,0,10.48021583253731,10.48021583253731,0,0,0,0,0,0,0,0,0,0,7.137817011292375,0,0,0,55.79,52.62,4,1,0,1,10,4,1,294.5,0,0,0 +7592,9315,16984,16985,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,5,8.251754171476939,8.257021713989827,0,2,0,-9,12,0,2,-82.98435153167787,-9,0,0,33,2,3,1,2,2,2019,1,2,8,0,37,0,15,1,0,1,0,8.563165702245014,8.563165702245014,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,3,1,497.25,0,0,0 +7592,9315,16985,16984,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,3,7.390483779552389,7.237960031280261,5.248503516333429,2,0,-9,12,0,-2,46.06105891618362,-9,0,1,35,2,5,1,3,2,2019,1,1,10,0,30,0,15,1,0,1,0,6.331044372006285,6.331044372006285,0,0,0,0,0,0,0,1,1,0,5.15116454448732,0,0,0,48.45,57.49,6,1,0,0,5,3,1,497.25,0,0,0 +7592,9315,16986,-9,16985,16984,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.6235732830373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,1,497.25,0,0,0 +7592,9315,16987,-9,16985,16984,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.623212271385,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,1,497.25,0,0,0 +7593,9316,16988,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,1,1,0,5,8.604242943616732,9.104986713510311,0,3,0,0,0,-9,0,-1075.041488945628,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,50,0,15,1,3,-9,0,16.34304036353632,16.34304036353632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.51,59.41,3,1,0,0,8,5,0,867,0,0,0 +7593,9317,16989,-9,16988,-9,2,1,0,21,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1036.853858736966,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.49,55.08,1,2,0,0,8,1,0,216,0,0,0 +7594,9318,16990,16991,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,1,0,5.854599078716997,5.378848844022721,1,0,-9,53,0,6,-64.26532158427361,0,0,0,72,3,4,3,3,3,2019,4,2,29,9,0,0,15,4,9,4,0,0,0,1,0,123.9118902676581,.9234874488109952,2.793082305766178,0,0,1,1,0,5.176877127386289,4.96462123583851,0,0,25.75,19.69,1,1,0,0,6,2,1,1078,0,0,0 +7594,9318,16991,16990,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,53,0,-6,-56.57686494306633,0,0,0,78,3,1,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.107904827083968,0,76.87881077461584,1,32.82,55.51,5,1,0,0,6,2,1,1078,0,0,0 +7595,9319,16992,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,4,8.58256988694913,8.755562886840512,0,3,0,0,0,-9,0,-993.9591119453507,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,43,45,15,1,0,-9,0,20.45467227399825,20.45467227399825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.41,54.88,5,1,0,0,10,5,1,387,0,0,0 +7596,9320,16993,16994,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,4,7.626967595813947,7.54780662541045,0,1,0,-9,2,0,0,-139.9442872571172,-9,0,0,32,1,3,1,-9,-9,2019,1,1,10,0,38,0,15,1,1,1,0,4.753835931078309,4.753835931078309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,4,4,0,934.5,0,0,0 +7596,9320,16994,16993,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,3,8.678536305824522,8.305384715922306,0,1,0,-9,2,0,0,-107.693947638421,0,0,1,32,2,4,1,2,2,2019,1,2,8,0,45,45,15,1,0,1,0,10.02830854180635,10.02830854180635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,5,1,0,0,4,4,0,934.5,0,0,0 +7597,9321,16995,16996,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,4,7.576930742678091,7.231850364663431,0,2,0,-9,8,0,-1,-12.95365139919463,0,0,0,50,2,4,1,2,2,2019,1,2,8,0,36,32,15,1,0,1,0,5.558197501528682,5.558197501528682,0,0,0,0,0,0,0,1,1,0,1.751868224993624,0,0,0,51.83,57.2,6,1,0,0,10,5,1,1101.5,0,0,0 +7597,9321,16996,16995,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,4,9.512749721438908,9.46663348193486,0,2,0,-9,8,0,1,-43.48549853643669,0,0,0,49,1,4,1,-9,-9,2019,1,1,9,0,37,37,15,1,1,1,0,46.43166870368108,46.43166870368108,0,0,0,0,0,0,0,1,1,0,3.19174359829568,0,0,0,52,55,6,1,0,0,10,5,1,1101.5,0,0,0 +7597,9321,16997,-9,16995,16996,3,1,0,17,2,0,2,1,2,0,7,2,0,4,5.83142956556498,5.66173274958819,0,2,0,0,0,-9,0,-1029.642387138033,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,1,1,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.175046671977626,0,6.813571834365612,3,51.24,58.84,6,1,0,0,10,5,1,1101.5,0,0,0 +7597,9321,16998,-9,16995,16996,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-863.2508572847879,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,10,5,1,1101.5,0,0,0 +7598,9322,16999,-9,-9,-9,1,1,0,39,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,-9,0,-9,0,-1088.176946007505,-9,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.37,49.6,6,2,1,1,7,1,0,433,0,0,0 +7598,9322,17000,-9,16999,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-997.024650051564,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,1,0,433,0,0,0 +7599,9323,17001,17003,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,3,8.862111921552172,8.469046170947337,0,2,0,-9,5,0,6,-87.5418787606516,0,0,0,44,2,3,1,3,3,2019,1,2,11,0,38,37,15,1,0,1,0,15.87601293477158,15.87601293477158,0,0,0,0,0,0,0,1,1,0,2.934037875996138,0,0,0,49.04,55.86,6,1,0,0,1,5,1,725.6666666666666,0,0,0 +7599,9323,17002,-9,17001,17003,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.9104913138078,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,5,1,725.6666666666666,0,0,0 +7599,9323,17003,17001,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,3,8.561995575095231,8.53384080851599,0,2,0,-9,5,0,-6,-76.87000130914183,0,0,0,50,2,3,1,3,2,2019,1,1,9,1,42,37,15,1,1,1,0,16.43291568898672,16.43291568898672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,5,1,0,0,1,5,1,725.6666666666666,0,0,0 +7599,9324,17004,-9,17001,17003,3,1,1,18,2,0,1,0,2,1,2,1,0,4,6.822449842950761,6.767728092079252,0,3,0,0,0,-9,0,-873.2216938225693,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,25,0,15,1,0,-9,1,4.461182640101133,4.461182640101133,0,0,0,0,0,0,0,1,1,0,.6174522498864647,0,0,0,58.15,52.91,6,1,0,0,1,2,1,915,0,0,0 +7600,9325,17005,17006,-9,-9,2,1,0,22,1,0,0,0,2,-9,2,1,0,4,7.220583863869574,7.586022715712467,0,1,0,-9,1,-9,-2,30.3263997380065,-9,1,1,24,2,5,1,-9,-9,2019,1,1,12,0,35,0,15,1,2,1,0,5.489855823138743,5.489855823138743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,10,4,0,877.5,0,0,0 +7600,9325,17006,17005,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,5,7.881063327508065,7.635604621007145,0,1,0,1,1,-9,2,43.1615379947215,0,1,0,22,2,4,1,-9,-9,2019,1,2,11,0,35,35,15,1,0,1,0,9.184036333821609,9.184036333821609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.24,5,1,0,0,10,4,0,877.5,0,0,0 +7601,9326,17007,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,2,0,5.653462451193489,5.302836723474455,3,0,0,0,-9,0,-1071.030552679846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.440627065814923,3.284530123718938,0,0,1,1,0,2.111845462781022,5.99874261537475,0,0,62.81,21.4,7,1,0,0,2,2,0,214,0,0,0 +7602,9327,17008,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,2,0,7.195902520408712,7.085336388573381,3,0,0,0,-9,0,-1001.08681083994,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.104357302266895,0,0,43.12,44.26,5,1,0,0,2,3,0,1628,0,0,0 +7603,9328,17009,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1013.256262908841,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,4,0,0,8,1,0,232,0,0,0 +7604,9329,17010,-9,17012,-9,1,1,1,44,3,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-939.956659973979,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.939415072148718,3,36.42,44.54,5,3,1,0,2,1,1,186,0,0,0 +7604,9330,17011,-9,17012,-9,2,1,1,40,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-950.70203329068,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,2,1,1,242,0,0,0 +7604,9331,17012,-9,-9,-9,3,1,0,69,3,0,0,0,1,-9,4,3,0,3,0,7.571073561595066,7.163838382128905,3,0,0,0,-9,0,-1201.641428889307,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.885464015976345,7.155781430810546,0,0,50,47,5,3,0,0,2,3,1,953,0,0,0 +7605,9332,17013,17014,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,3.99353126740022,4.100211844421864,1,0,-9,42,0,0,-18.87339079856725,0,0,0,62,3,3,1,3,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.70333450346894,4.152882113845868,22.43158783161894,3,52,54.51,2,1,0,0,5,5,1,2012.5,0,0,0 +7605,9332,17014,17013,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,3,9.539224099870223,9.794440310604667,6.12192379421704,1,0,-9,42,0,0,12.60411214477703,-9,0,0,62,2,3,3,3,3,2019,2,1,9,0,43,0,15,1,0,4,0,38.32058873305885,38.32058873305885,0,0,0,0,0,0,0,0,0,0,1.257960997150773,5.883443196225706,0,0,53.56,49.66,6,1,0,0,5,5,1,2012.5,0,0,0 +7606,9333,17015,-9,-9,-9,1,1,1,23,2,0,0,0,1,-9,2,1,0,5,7.644375881704661,7.801750017055979,6.200116536916364,3,0,0,0,-9,0,-890.3007306674007,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,1,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.625502164878322,0,0,0,57.06,57.76,6,1,0,0,5,3,0,1017,0,0,0 +7607,9334,17016,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-958.8132842084764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,16.01002299924875,0,0,1,1,0,0,0,0,0,54,45,6,1,0,0,2,1,0,587,0,0,0 +7608,9335,17017,17018,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,4,8.557692874719525,8.203523520231387,0,1,0,-9,39,0,1,-67.19631503655597,0,0,0,57,3,3,1,3,3,2019,1,1,8,0,55,0,15,1,0,1,0,11.15785429395461,11.15785429395461,0,0,0,0,0,0,0,0,0,0,0,0,4.093079002545789,3,57.16,56.15,2,1,0,0,9,5,1,2473.5,0,0,0 +7608,9335,17018,17017,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,3,7.692274600499753,7.511810459222594,0,1,0,-9,39,0,-1,-34.97919444845166,0,0,0,58,2,4,1,2,2,2019,1,2,8,0,35,38,15,1,0,1,0,10.34075045860534,10.34075045860534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.79,40.38,2,1,0,0,9,5,1,2473.5,0,0,0 +7609,9336,17019,17020,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,3,9.001004469745048,9.007766917991226,0,1,0,-9,7,0,1,-54.32771314132982,0,0,0,57,2,4,1,2,-9,2019,1,1,10,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.901819768057678,0,0,0,46.89,54.32,6,1,0,0,7,5,1,899.5,0,0,0 +7609,9336,17020,17019,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,9.092848650697201,9.262692240001883,0,1,0,-9,31,0,-1,1.47028611200689,0,0,0,58,2,3,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,31.89495648010296,31.89495648010296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,899.5,0,0,0 +7610,9337,17021,-9,17024,17023,4,1,0,1,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.7152965918599,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,540,0,0,0 +7610,9337,17022,-9,17024,17023,3,1,1,6,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.352479502568,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,540,0,0,0 +7610,9337,17023,17024,-9,-9,1,1,1,36,1,2,3,0,1,-9,2,1,0,5,8.979835973980146,9.074498176119631,0,2,0,-9,7,0,-2,49.56541395812068,0,0,0,38,1,4,1,-9,-9,2019,1,2,9,1,38,37,15,1,1,1,0,23.79458044163458,23.79458044163458,0,0,0,0,0,0,0,1,1,0,3.555702565933956,0,0,0,43.38,62.58,5,1,0,0,13,4,1,540,0,0,0 +7610,9337,17024,17023,-9,-9,2,1,0,38,1,2,3,0,1,-9,2,1,0,4,7.793646057552435,7.834962855845292,0,2,0,-9,7,0,2,157.3784036496086,0,0,1,36,1,5,1,-9,-9,2019,1,1,11,0,20,35,15,1,0,1,0,11.31370523416112,11.31370523416112,0,0,0,0,0,0,0,1,1,0,3.450775996832839,0,0,0,50.55,49.51,6,1,0,0,13,4,1,540,0,0,0 +7610,9337,17025,-9,17024,17023,5,1,0,1,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.2127317687501,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,540,0,0,0 +7611,9338,17026,-9,17027,17029,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1204.99105619529,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,565.8,0,0,0 +7611,9338,17027,17029,-9,-9,2,1,0,43,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-3,-2.997485049038065,0,0,1,46,2,4,1,2,2,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.479160365880364,0,111.0958106767055,3,42.61,49.31,5,1,0,0,11,3,1,565.8,0,0,0 +7611,9338,17028,-9,17027,17029,3,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-922.9292267281093,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,3,1,565.8,0,0,0 +7611,9338,17029,17027,-9,-9,1,1,1,46,1,0,3,0,2,-9,2,1,0,4,8.584893599531464,8.584936964542807,0,2,0,-9,8,0,3,-.8780805857139704,0,0,0,43,2,3,3,2,2,2019,2,2,8,0,49,49,15,1,0,3,0,14.09522630097141,14.09522630097141,0,0,0,0,0,0,0,1,1,0,0,0,37.38446322521106,3,54.2,57.49,6,1,0,0,11,3,1,565.8,0,0,0 +7611,9338,17030,-9,17027,17029,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.669930463014,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,565.8,0,0,0 +7612,9339,17031,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,0,5.62124065729278,5.413034554554227,3,0,0,0,-9,0,-1016.84741917942,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.451377200469216,0,0,47.04,15.9,7,1,0,0,9,2,1,1197,0,0,0 +7613,9340,17032,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,9.319068140089529,8.89472811073256,0,3,0,0,0,-9,0,-1036.745619261582,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,41,42,15,1,0,-9,0,24.37589291360004,24.37589291360004,0,0,0,0,0,0,0,0,0,0,3.781284802833583,0,0,0,54.2,57.49,6,4,0,0,8,5,1,974,0,0,0 +7613,9341,17033,-9,17032,-9,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,8.052867837263994,8.007786425534771,0,3,0,0,0,-9,0,-1023.200459598617,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,22,15,1,2,-9,1,7.858792664471495,7.858792664471495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,4,0,0,8,3,1,443,0,0,0 +7613,9342,17034,-9,17032,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.987301110452013,8.368244120521716,0,3,0,0,0,-9,0,-1110.973050057923,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,37,37,15,1,2,-9,1,8.641004480097305,8.641004480097305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,4,0,0,8,4,1,1541,0,0,0 +7614,9343,17035,17036,-9,-9,1,1,1,63,1,0,0,0,3,-9,4,3,0,3,0,7.652331793673286,7.950593686642279,1,0,-9,41,0,-1,65.03283750486521,0,0,0,64,2,3,3,-9,-9,2019,4,2,6,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.079435631662843,0,0,60.29,52.11,6,1,0,0,8,3,1,391.5,0,0,0 +7614,9343,17036,17035,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,6.253602769566036,6.129421448138502,1,0,-9,41,0,1,-79.78185940290643,0,0,0,63,3,3,3,3,3,2019,4,1,10,0,0,16,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.030350773205283,0,0,60.83,46.31,6,1,0,0,8,3,1,391.5,0,0,0 +7615,9344,17037,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,5,8.093358356628443,8.240690797410794,5.103337760267518,3,0,-9,0,1,0,-1018.570941670885,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,0,15,1,0,-9,0,10.89019122492337,10.89019122492337,0,0,0,0,0,0,0,1,1,0,5.492553921004276,0,0,0,57.06,57.76,6,1,0,0,2,4,1,650,0,0,0 +7615,9345,17038,-9,17037,-9,2,1,0,19,2,0,0,1,2,-9,7,2,0,4,6.73765489463177,7.060426026019353,5.005173533943283,3,0,0,0,-9,0,-1058.77724874113,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,2,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.359241938966552,0,0,0,52.04,48.93,5,1,0,0,2,2,1,702,0,0,0 +7616,9346,17039,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,5,9.168527537018155,9.694694743356351,0,3,0,0,0,-9,0,-979.4212238072776,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,45,50,15,1,0,-9,0,27.36391678784,27.36391678784,0,0,0,0,0,0,0,1,1,0,0,0,14.85815129714122,3,57.06,57.76,6,1,0,0,2,5,1,238,0,0,0 +7616,9347,17040,-9,17039,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,5,7.522652915226873,7.521184250533875,0,3,0,-9,0,-9,0,-1141.355712691337,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,50,0,15,1,0,-9,1,4.800679062597052,4.800679062597052,0,0,0,0,0,0,0,1,1,0,0,0,3.678477201977031,3,57.06,57.76,7,1,0,0,2,3,1,521,0,0,0 +7617,9348,17041,-9,-9,-9,1,1,1,83,2,0,0,0,2,-9,4,3,0,2,0,6.900680698020259,6.990871294932092,3,0,0,0,-9,0,-1043.525183323766,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.097400645414469,3.616679163560652,3,49.77,39.62,5,1,0,0,12,2,1,323,0,0,0 +7617,9349,17042,-9,-9,-9,2,1,1,90,2,0,0,0,2,-9,4,3,0,3,0,6.454914570738179,6.352103957342352,3,0,0,0,-9,0,-1034.345176750093,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,14.74312364622948,0,1,1,0,0,6.526646611032903,0,0,36.57,42.83,4,1,0,0,12,2,1,241,0,0,0 +7617,9350,17043,-9,-9,-9,3,1,0,85,2,0,0,0,3,-9,4,3,0,1,0,7.16884589027038,7.31958531711986,3,0,0,0,-9,0,-1095.331707523721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.025975680294118,3.32467392430867,3,39.56,34.97,3,1,0,0,12,2,1,2041,0,0,0 +7618,9351,17044,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,4,3,0,4,0,8.185506819627035,8.347506345671871,3,0,0,0,-9,0,-967.8375647667242,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,38,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.345884828574672,8.527374528092004,0,0,54.2,57.49,6,1,0,0,9,4,1,326,0,0,0 +7619,9352,17045,17046,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,3,7.951867699672053,8.329798240173423,6.387171965071289,1,0,-9,6,0,-1,47.00829395411968,0,0,0,56,2,4,1,3,3,2019,1,2,11,1,50,40,15,1,1,1,0,7.540144622185012,7.540144622185012,0,0,0,0,0,0,0,0,0,0,6.884475506936741,6.963428809347892,0,0,57.33,53.46,6,1,0,0,12,4,1,332.5,0,0,0 +7619,9352,17046,17045,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.597058211018348,7.625102962992266,0,1,0,-9,6,0,1,-62.105403404842,0,0,0,55,2,3,1,3,2,2019,1,1,9,0,20,20,15,1,0,1,0,10.20614441445248,10.20614441445248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,5,1,0,0,12,4,1,332.5,0,0,0 +7619,9353,17047,-9,17046,17045,3,1,0,18,2,0,0,0,2,1,2,1,0,5,7.18896974822128,7.087256628339742,0,3,0,0,0,-9,0,-1116.81975363351,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,26,0,15,1,2,-9,1,7.018256644662206,7.018256644662206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,6,1,0,0,12,2,1,418,0,0,0 +7619,9354,17048,-9,17046,17045,4,1,0,18,2,0,0,0,2,1,2,1,0,4,6.825331220730688,6.913152545604598,0,3,0,0,0,-9,0,-760.2983495198964,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,0,15,1,0,-9,1,4.438007023740762,4.438007023740762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,6,1,0,0,12,2,1,168,0,0,0 +7620,9355,17049,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,2,1,0,3,7.069494201236155,6.814563040505833,0,4,0,0,0,-9,0,-1044.31628777317,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,16,4,16,16,15,1,4,-9,0,7.046307109658889,7.046307109658889,0,0,0,0,0,0,0,1,0,1,0,0,11.73034876466647,3,36.19,45.47,5,1,0,1,10,2,1,208,0,0,0 +7620,9356,17050,-9,17049,-9,3,1,1,19,2,0,1,0,2,-9,2,1,0,3,4.961788375910507,4.868636241745665,0,3,0,0,0,-9,0,-948.3162008689579,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,0,0,15,1,9,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.93,60.83,2,1,0,1,10,2,1,556,0,0,0 +7621,9357,17051,17052,-9,-9,2,1,1,89,1,0,0,0,3,-9,4,3,0,3,0,7.576177952987539,7.206897772289608,1,0,-9,65,0,2,7.652000374016956,0,0,0,87,3,2,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,10.75931760799217,0,0,0,0,1,1,0,4.92685181948848,7.227492855397688,0,0,43.36,58.27,7,1,0,0,11,2,1,3158.5,0,0,0 +7621,9357,17052,17051,-9,-9,1,1,0,87,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,65,0,-2,106.3523320835976,0,0,0,89,3,3,3,3,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,1,0,17.37569852410681,0,0,0,0,1,1,0,0,0,0,0,38.57,19.15,6,1,0,0,11,2,1,3158.5,0,0,0 +7622,9358,17053,17056,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,5,7.858611736203689,7.638279461119575,0,2,0,-9,6,0,-4,96.79666304140827,0,0,1,40,2,2,1,3,3,2019,1,1,10,0,40,37,15,1,0,1,0,8.018828844521446,8.018828844521446,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,6,4,0,491.5,0,0,0 +7622,9358,17054,-9,17053,17056,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.450806077425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,0,491.5,0,0,0 +7622,9358,17055,-9,17053,17056,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-977.8965727076677,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,6,4,0,491.5,0,0,0 +7622,9358,17056,17053,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,2,8.652038596202619,8.539712232316555,0,2,0,-9,22,0,4,-73.17745147380172,0,0,0,36,2,5,1,3,3,2019,1,2,8,2,52,60,15,1,2,1,0,10.69376603343878,10.69376603343878,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.55,39.91,7,1,0,0,6,4,0,491.5,0,0,0 +7623,9359,17057,17058,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.296408689016289,8.583113013525089,0,1,0,-9,2,0,0,-2.253839083891432,0,0,1,30,1,4,1,-9,-9,2019,1,1,14,4,38,42,15,1,4,1,0,16.58404403755254,16.58404403755254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,2,5,0,982.5,0,0,0 +7623,9359,17058,17057,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.040875851788739,8.393802306637324,0,1,0,-9,2,0,0,-100.6427707977,0,0,0,30,1,4,1,-9,-9,2019,1,2,6,0,0,32,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,6,1,0,0,2,5,0,982.5,0,0,0 +7624,9360,17059,17062,-9,-9,3,1,1,29,1,1,2,0,1,-9,2,1,0,5,8.64373350273328,8.820620952037766,0,2,0,-9,3,0,-1,-23.40556882671376,0,1,0,30,1,3,1,-9,-9,2019,1,1,7,0,38,37,15,1,0,1,0,13.15028109444716,13.15028109444716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,2,0,0,2,4,0,632,0,0,0 +7624,9360,17060,-9,17062,17059,2,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.0148650209426,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,2,4,0,632,0,0,0 +7624,9360,17061,-9,17062,17059,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-863.3356759223268,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,2,4,0,632,0,0,0 +7624,9360,17062,17059,-9,-9,1,1,0,30,1,1,2,0,1,-9,2,1,0,3,7.89498338425624,7.535258811223957,0,2,0,-9,3,0,1,-2.772708579900529,0,0,1,29,1,5,1,2,3,2019,1,3,8,1,26,26,15,1,1,1,0,9.345652441828316,9.345652441828316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,1,0,0,2,4,0,632,0,0,0 +7625,9361,17063,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,2,1,0,4,7.580853721618411,8.147158714669999,6.969889755048839,3,0,0,0,-9,0,-929.3131427049069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,18,18,15,1,0,-9,0,13.76698695285945,13.76698695285945,0,0,0,0,0,0,0,1,1,0,0,7.534594429108875,0,0,60.12,54.8,7,1,0,0,12,4,1,425,0,0,0 +7626,9362,17064,17066,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,5,6.519676896560251,5.974759031278441,0,2,0,-9,23,0,1,-35.91092275826016,0,0,1,42,2,3,1,3,-9,2019,1,1,11,2,6,12,15,1,2,1,0,12.4450252675134,12.4450252675134,0,0,0,0,0,0,0,1,1,0,1.112153447856627,0,0,3,60.6,46.43,6,1,0,0,10,3,1,1015.333333333333,0,0,0 +7626,9362,17065,-9,17064,17066,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.6431741110129,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,1015.333333333333,0,0,0 +7626,9362,17066,17064,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,3,7.945939572597587,8.496082802600395,0,2,0,-9,23,0,-1,5.918258126802794,0,0,0,43,2,5,1,2,2,2019,1,2,5,0,47,47,15,1,0,1,0,10.73181353413606,10.73181353413606,0,0,0,0,0,0,0,1,1,0,1.403837779967055,0,1.493751269397273,3,53.56,49.66,6,1,0,0,10,3,1,1015.333333333333,0,0,0 +7627,9363,17067,17068,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,4,8.674928242573303,8.345691248898623,0,1,0,-9,1,-9,-8,34.5903324270508,-9,1,1,30,2,4,1,-9,-9,2019,1,1,12,3,57,0,15,1,3,1,0,12.13355121044514,12.13355121044514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.69,56.82,5,1,0,0,4,5,1,225,0,0,0 +7627,9363,17068,17067,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,4,8.0324980934267,8.400406307889224,0,1,0,1,1,-9,8,-30.81042837037875,0,0,0,22,1,4,1,2,2,2019,1,2,7,0,39,40,15,1,0,1,0,9.275766993455083,9.275766993455083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,4,5,1,225,0,0,0 +7628,9364,17069,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,2,0,7.578802560377893,7.861668299107663,3,0,0,0,-9,0,-1024.510676367008,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,3.818244124153572,0,0,0,0,1,1,0,0,7.898061691136031,0,0,36.92,30.61,6,1,0,0,13,3,1,468,0,0,0 +7629,9365,17070,17071,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,1,0,5.91633674526472,6.389444990355201,1,0,-9,9,0,7,-136.9176664927556,0,0,0,69,2,4,3,2,2,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,1,0,.5070717411243555,0,0,0,0,1,1,0,6.613586866136638,6.235086128865738,0,0,49.07,22.42,6,1,0,0,2,3,1,509,0,0,0 +7629,9365,17071,17070,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.897458190112103,7.555691313417553,1,0,-9,9,0,-7,39.87154256758176,0,0,0,76,2,1,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.521432326534285,0,0,57.16,56.15,6,1,0,0,2,3,1,509,0,0,0 +7630,9366,17072,17073,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,7.692766363407856,7.214383970838996,1,0,-9,17,0,7,-152.4049066350347,0,0,0,62,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,0,1,7.047847399790821,7.401935757120055,0,0,62.25,45.63,6,1,0,0,2,3,1,1250,0,0,0 +7630,9366,17073,17072,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,6.620415940499289,6.739158921543242,1,0,-9,17,0,-7,-16.27160525949071,0,0,0,69,1,4,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,4.864653424307869,6.546046673968106,0,0,46.39,60.99,6,1,0,0,2,3,1,1250,0,0,0 +7630,9367,17074,-9,17073,17072,3,1,1,35,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1054.100771636667,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.04,54.12,3,2,1,1,2,1,1,492,0,0,0 +7631,9368,17075,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,4,0,6.649556667275309,6.820902648506906,3,0,0,0,-9,0,-914.9217278678228,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,3.360273273548285,0,0,1,1,0,0,6.562901604350898,0,0,41.91,47.07,3,1,0,0,10,2,1,1006,0,0,0 +7632,9369,17076,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,2,1,0,4,7.365420273086436,7.578306017158179,5.131865707958822,3,0,0,0,-9,0,-1081.075756193819,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,20,15,1,1,-9,0,8.267524642863233,8.267524642863233,0,0,0,0,0,0,0,1,1,0,.4037535743548144,5.130029716224842,0,0,50.34,56.4,6,1,0,0,12,3,1,1735,0,0,0 +7633,9370,17077,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,5,7.793928064731201,8.625004119742615,7.725232997902245,3,0,0,0,-9,0,-1060.56137595981,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,30,30,15,1,0,-9,0,10.04550951088619,10.04550951088619,0,0,0,0,0,0,0,0,0,0,4.79105302800886,8.007751953208922,45.62196675497835,3,60.6,49.26,6,1,0,0,13,5,1,319,0,0,0 +7634,9371,17078,17079,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,55,0,-1,-97.75644171895757,0,0,0,77,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.86069151660391,0,0,0,55.48,54.6,7,1,0,0,10,4,1,1404,0,0,0 +7634,9371,17079,17078,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,8.565968456774272,8.391872672228137,1,0,-9,55,0,1,-34.43673591772854,0,0,0,76,2,5,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.621151993599541,8.697118467081026,0,0,57.16,56.15,6,1,0,0,10,4,1,1404,0,0,0 +7635,9372,17080,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,5.319576825233282,5.4126551370516,3,0,0,0,-9,0,-1203.425474006764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,16.48424650957945,0,0,0,1,1,0,0,4.946462337059994,0,0,27.75,27.98,3,1,0,0,5,2,0,549,0,0,0 +7636,9373,17081,17082,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,4,8.61261830038009,8.266580048282075,0,1,0,-9,24,0,7,131.4482025833023,0,0,0,53,2,3,3,3,3,2019,2,1,8,1,40,48,15,1,1,4,0,15.31442825079857,15.31442825079857,0,0,0,0,0,0,0,0,0,0,8.247218841278947,0,0,0,58.26,40.58,6,1,0,0,2,4,1,354,0,0,0 +7636,9373,17082,17081,-9,-9,1,1,0,53,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,25,0,-7,43.82198141492511,0,0,0,60,3,4,1,3,3,2019,3,2,9,0,0,16,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.085471352717406,0,0,0,49.58,50.05,6,1,0,0,2,4,1,354,0,0,0 +7636,9374,17083,-9,17082,17081,3,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.728005209547073,8.008892617159496,0,3,0,0,0,-9,0,-1051.971791361203,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,43,41,15,1,1,-9,1,5.754531005476893,5.754531005476893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.17,59.79,6,1,0,0,2,3,1,1928,0,0,0 +7636,9375,17084,-9,17082,17081,4,1,1,18,2,0,0,1,2,0,7,2,0,5,6.685580753668791,6.515337829717693,0,3,0,0,0,-9,0,-930.9832494456293,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,7,1,0,0,2,2,1,543,0,0,0 +7637,9376,17085,-9,17086,17088,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1095.83193106449,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,6,5,1,603,0,0,0 +7637,9376,17086,17088,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,5,7.774647070238372,7.542323652997817,0,2,0,-9,12,-9,0,74.91326715379752,-9,0,1,42,2,4,1,1,1,2019,1,2,7,0,14,0,15,1,0,1,0,16.25713622435486,16.25713622435486,0,0,0,0,0,0,0,0,0,0,6.498566150246575,0,0,0,56.94,51.02,7,1,0,0,6,5,1,603,0,0,0 +7637,9376,17087,-9,17086,17088,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1048.217264256054,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,603,0,0,0 +7637,9376,17088,17086,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,9.372574331274329,9.57433764640691,0,2,0,-9,11,-9,0,-60.15903295385559,-9,0,0,42,1,5,1,2,2,2019,1,1,14,3,40,0,15,1,3,1,0,33.99194663393713,33.99194663393713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.45,50.44,3,1,0,0,6,5,1,603,0,0,0 +7638,9377,17089,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,3,8.796505254405904,8.3448793711578,0,3,0,0,0,-9,0,-1092.590431905936,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,47,37,15,1,0,-9,0,15.35194788086177,15.35194788086177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.91,42.65,6,1,0,0,1,5,1,1152,0,0,0 +7639,9378,17090,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1008.894871418409,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1953385553742727,0,0,0,53,44,6,1,0,0,11,1,1,619,0,0,0 +7640,9379,17091,17092,-9,-9,1,1,1,58,1,0,1,0,1,-9,2,1,0,4,8.68006519610574,9.023902110551655,0,2,0,-9,24,0,2,-66.23424772992527,0,0,0,56,1,4,1,2,3,2019,1,2,8,0,37,37,15,1,0,1,0,18.90258953178495,18.90258953178495,0,0,0,0,0,0,0,0,0,0,8.327674698443323,0,.1258712094992445,3,57.16,56.15,6,1,0,0,8,4,1,466.5,0,0,0 +7640,9379,17092,17091,-9,-9,2,1,0,56,1,0,1,0,1,-9,2,1,0,4,7.655328595394559,7.897015275538395,0,2,0,-9,24,0,-2,7.889409149097682,0,0,0,58,1,4,1,1,1,2019,1,1,6,0,27,26,15,1,0,1,0,8.852313822148972,8.852313822148972,0,0,0,0,0,0,0,0,0,0,3.080884246134029,0,0,0,54.79,55.86,6,1,0,0,8,4,1,466.5,0,0,0 +7641,9380,17093,17094,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,4,7.876428568076532,8.027388966856611,5.394841695491834,1,0,-9,2,0,5,-69.81722081901047,0,0,0,55,2,4,1,3,3,2019,1,2,7,0,39,39,15,1,0,1,0,7.222082543604609,7.222082543604609,0,0,0,0,0,0,0,0,0,0,0,5.534988995609234,0,0,57.76,54.51,7,1,0,0,8,4,1,565.5,0,0,0 +7641,9380,17094,17093,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.135327362458332,8.229791949441465,0,1,0,-9,2,0,-5,1.944610304787839,0,0,0,60,3,4,1,3,3,2019,1,1,11,0,37,42,15,1,0,1,0,11.64585062412856,11.64585062412856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,2,1,0,0,8,4,1,565.5,0,0,0 +7641,9381,17095,-9,17094,17093,3,1,0,21,2,0,0,0,2,1,2,1,0,4,7.381712353101655,7.097632190159115,0,3,0,0,0,-9,0,-960.481343485691,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,0,20,0,15,1,2,-9,1,7.828333882328348,7.828333882328348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,8,2,1,257,0,0,0 +7642,9382,17096,17097,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,1,23.20103050681244,0,0,0,71,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.58688008295048,1,57.09,46.7,6,1,0,0,12,2,0,399.5,0,0,0 +7642,9382,17097,17096,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,5.903208315002915,5.748501326977238,1,0,-9,8,0,-1,2.780093872108262,0,0,0,72,3,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,1.37538222701519,0,0,1,1,0,0,5.83745919556567,0,0,57.59,25.39,6,1,0,0,12,2,0,399.5,0,0,0 +7643,9383,17098,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,4,0,6.263047745555292,6.504923938527286,3,0,0,0,-9,0,-866.4857603311182,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.341406975627941,6.537044684669666,0,0,51.24,58.84,6,1,0,0,6,2,1,429,0,0,0 +7644,9384,17099,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,1,1,0,3,6.138420951506666,6.574853281384414,0,3,0,0,0,-9,0,-929.3566590973454,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,26,10,30,50,15,1,10,-9,0,2.319872306477524,2.319872306477524,0,0,0,0,0,0,0,0,0,0,0,0,5.185067358994425,3,25.5,65.43000000000001,3,1,0,1,10,2,1,727,0,0,0 +7645,9385,17100,-9,-9,-9,1,1,1,50,2,0,0,0,3,-9,1,1,0,2,5.985598347775414,5.732622611540181,0,3,0,0,0,-9,0,-869.8966485259878,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,20,30,15,1,0,-9,0,1.717816836028002,1.717816836028002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.08,49.91,5,1,0,1,9,2,0,1462,0,0,0 +7646,9386,17101,17102,-9,-9,1,1,0,30,1,0,2,0,1,-9,2,1,0,2,8.160851176473427,8.393945282529952,0,2,0,-9,13,0,-1,-2.008082104343091,0,0,1,31,2,4,1,3,2,2019,1,2,14,2,30,37,15,1,2,1,0,15.46483781627093,15.46483781627093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.55,32.31,5,1,0,0,9,4,0,533,0,0,0 +7646,9386,17102,17101,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,4,8.606165207606084,8.430264829141882,0,2,0,-9,15,0,1,44.58599935657641,0,0,0,30,1,2,1,1,3,2019,1,1,6,0,45,40,15,1,0,1,0,14.25416878865262,14.25416878865262,0,0,0,0,0,0,0,1,1,0,0,0,9.455147099120259,3,57.91,43.45,6,1,0,0,9,4,0,533,0,0,0 +7646,9386,17103,-9,17101,17102,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.50992822735,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,0,533,0,0,0 +7646,9386,17104,-9,17101,17102,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-879.4206491931865,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,0,533,0,0,0 +7647,9387,17105,17106,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,2,8.246217951339059,8.061732050035166,0,1,0,-9,42,0,1,-27.23406950980286,0,0,0,60,2,3,1,3,3,2019,1,2,8,0,40,37,15,1,0,1,0,10.36446415148089,10.36446415148089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.92,31.61,7,1,0,0,1,4,0,401.5,0,0,0 +7647,9387,17106,17105,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.162910119270477,7.393727392852661,4.879286836280654,1,0,-9,42,0,-1,96.80953883198957,0,0,0,61,2,2,1,2,2,2019,1,1,8,0,17,18,15,1,0,1,0,7.267337162037672,7.267337162037672,0,0,0,0,0,0,0,0,0,0,0,4.72932116132101,10.57183908940047,3,55.96,49.93,7,1,0,0,1,4,0,401.5,0,0,0 +7648,9388,17107,-9,17109,17113,2,1,0,18,2,0,5,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-944.3159461339453,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,25,9,0,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.34950425565661,3,20.17,52.73,5,1,0,0,2,2,0,534,0,0,0 +7648,9389,17108,-9,17109,17113,4,1,0,10,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.05197415906,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,2,0,971,0,0,0 +7648,9389,17109,17113,-9,-9,1,1,0,39,1,0,5,0,1,-9,6,3,0,2,0,0,0,2,0,-9,5,0,-3,8.325841108515721,0,0,1,42,2,2,1,1,2,2019,3,6,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.0359739625287,3,50.09,30.13,5,1,0,0,2,2,0,971,0,0,0 +7648,9389,17110,-9,17109,17113,5,1,0,7,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.661230256186,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,0,971,0,0,0 +7648,9389,17111,-9,17109,17113,7,1,1,4,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.1395937872726,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,971,0,0,0 +7648,9389,17112,-9,17109,17113,3,1,0,10,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1048.42345510548,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,2,0,971,0,0,0 +7648,9389,17113,17109,-9,-9,6,1,1,42,1,0,5,0,2,-9,2,1,0,2,8.120950005331004,7.77777039006794,0,2,0,-9,5,0,3,-108.1725947598774,0,0,0,39,1,2,3,-9,-9,2019,2,1,19,7,38,38,15,1,7,3,0,6.675014630042556,6.675014630042556,0,0,0,0,0,0,0,1,1,0,0,0,114.6971854951992,3,42.08,40.3,3,1,0,0,2,2,0,971,0,0,0 +7649,9390,17114,-9,17116,17115,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.678502929531,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.83514050547389,0,.9257569515002078,3,54.2,57.49,6,1,0,0,12,4,1,483.3333333333333,0,0,0 +7649,9390,17115,17116,-9,-9,2,1,1,50,1,0,1,0,1,-9,1,1,0,5,7.561925701225109,7.540181845293114,0,2,0,-9,8,0,-7,97.67524719323858,0,0,0,57,2,3,1,2,2,2019,1,1,7,0,37,40,15,1,0,1,0,6.810222346760262,6.810222346760262,0,0,0,0,0,0,0,0,0,0,2.354575538668881,0,0,0,62.39,56.71,4,1,0,0,12,4,1,483.3333333333333,0,0,0 +7649,9390,17116,17115,-9,-9,1,1,0,57,1,0,1,0,2,-9,2,1,0,3,8.057433869814194,8.319131603289311,5.452353552964383,2,0,-9,8,0,7,-2.658764512690781,0,0,0,50,1,5,1,2,2,2019,1,2,5,0,38,45,15,1,0,1,0,9.468579604010069,9.468579604010069,0,0,0,0,0,0,0,0,0,0,6.005324432518418,0,41.87543659743393,3,57.18,48.06,5,1,0,0,12,4,1,483.3333333333333,0,0,0 +7649,9391,17117,-9,17116,17115,3,1,1,19,2,0,1,0,2,-9,2,1,0,5,8.13957940061713,7.822956250414275,0,3,0,0,0,-9,0,-1009.240544905212,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,40,45,15,1,0,-9,1,8.100242284820588,8.100242284820588,0,0,0,0,0,0,0,0,0,0,2.324581103191128,0,0,0,54.69,57.47,6,1,0,0,12,3,1,717,0,0,0 +7650,9392,17118,17119,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,2,8.649793940974186,8.692732906821595,0,1,0,-9,30,0,3,-107.750162788052,0,0,0,50,3,3,1,2,3,2019,1,2,13,3,9,40,15,1,3,1,0,82.11018685329175,82.11018685329175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.27,54.01,5,1,0,0,10,5,1,171,0,0,0 +7650,9392,17119,17118,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,3,7.982327463598471,7.954271709830848,0,1,0,-9,10,0,-3,63.2272946916115,0,0,0,53,2,2,1,-9,-9,2019,1,1,11,0,40,38,15,1,0,1,0,9.103270073527863,9.103270073527863,0,0,0,0,0,0,0,0,0,0,.1368564302702155,0,0,0,55.62,43.18,2,1,0,0,10,5,1,171,0,0,0 +7651,9393,17120,-9,17123,17122,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-995.7914762563845,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,4,1,682.25,0,0,0 +7651,9393,17121,-9,17123,17122,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.6785107318192,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,682.25,0,0,0 +7651,9393,17122,17123,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.981783465954406,8.900723776116504,0,2,0,-9,8,0,5,42.6732789284796,0,0,0,39,1,5,1,1,1,2019,1,1,8,0,50,56,15,1,0,1,0,17.52152436633483,17.52152436633483,0,0,0,0,0,0,0,1,1,0,1.133903913554606,0,0,0,48.51,54.51,6,1,0,0,5,4,1,682.25,0,0,0 +7651,9393,17123,17122,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,5,7.184735414318937,7.388303477002649,0,2,0,-9,8,0,-5,38.08664015800809,0,0,1,44,1,4,1,2,2,2019,1,2,15,4,11,9,15,1,4,1,0,17.7646292861211,17.7646292861211,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,5,1,0,0,5,4,1,682.25,0,0,0 +7652,9394,17124,17125,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,3,7.153952854259654,8.664921268789861,7.647934224799169,1,0,-9,10,0,1,72.90475618306101,0,0,0,59,2,2,1,3,2,2019,1,2,10,0,35,56,15,1,0,1,0,3.696219487879464,3.696219487879464,0,0,0,0,0,0,0,0,0,0,6.892242881663635,8.245159169579075,0,0,50.67,52.58,6,1,0,0,5,5,1,234,0,0,0 +7652,9394,17125,17124,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,2,8.59915853775799,8.210690063339682,0,1,0,-9,10,0,-1,78.40957775546771,0,0,0,60,2,3,1,-9,-9,2019,1,1,12,0,3,56,15,1,0,1,0,180.9475881564403,180.9475881564403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,48.86,5,1,0,0,5,5,1,234,0,0,0 +7652,9395,17126,-9,17125,17124,3,1,0,35,2,0,0,0,2,-9,2,1,0,2,7.281083081759272,7.343943938689591,0,3,0,0,0,-9,0,-940.6240004932874,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,16,4,30,35,15,1,4,-9,1,6.055764050339742,6.055764050339742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.18,41.44,4,1,0,0,5,3,1,2009,0,0,0 +7653,9396,17127,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,2,1,0,4,8.160694366680579,8.39566462833489,0,3,0,0,0,-9,0,-1037.752109701513,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,43,40,15,1,0,-9,0,10.02575088268722,10.02575088268722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,51.28,5,4,0,0,6,4,1,485,0,0,0 +7654,9397,17128,-9,17130,17131,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.8777905664625,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,10,5,1,1078.75,0,0,0 +7654,9397,17129,-9,17130,17131,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.3563166849817,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,5,1,1078.75,0,0,0 +7654,9397,17130,17131,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.298814215641174,8.513753108603021,0,2,0,-9,15,0,0,66.29097172853052,0,0,1,37,2,4,1,1,1,2019,1,2,7,0,30,30,15,1,0,1,0,14.83730988303939,14.83730988303939,0,0,0,0,0,0,0,1,1,0,4.665502725273721,0,0,0,44.47,57.73,6,1,0,0,10,5,1,1078.75,0,0,0 +7654,9397,17131,17130,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,9.044264681329198,8.812455415733327,0,2,0,-9,15,0,0,-30.01325847885737,0,0,0,37,1,4,1,2,2,2019,1,1,17,6,55,47,15,1,6,1,0,13.57953603253722,13.57953603253722,0,0,0,0,0,0,0,1,1,0,2.275342823874808,0,0,0,54.79,55.86,6,1,0,0,10,5,1,1078.75,0,0,0 +7655,9398,17132,17134,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.875806313503322,8.829277135886223,0,2,0,-9,8,0,2,13.28674282742706,0,0,1,36,1,3,1,-9,-9,2019,1,1,12,0,10,8,15,1,0,1,0,67.20374302885701,67.20374302885701,0,0,0,0,0,0,0,1,1,0,3.492879958285809,0,0,0,46.9,56.66,6,1,0,0,11,5,1,550.5,0,0,0 +7655,9398,17133,-9,17132,17134,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.4553702163057,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,550.5,0,0,0 +7655,9398,17134,17132,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,3,8.90569209809339,8.846198927733608,0,2,0,-9,14,0,-2,58.4583286008877,0,0,0,38,1,4,1,1,2,2019,1,2,6,0,37,37,15,1,0,1,0,18.46934080424316,18.46934080424316,0,0,0,0,0,0,0,1,1,0,3.251979517915562,0,0,0,54.96,53.17,6,1,0,0,11,5,1,550.5,0,0,0 +7655,9398,17135,-9,17132,17134,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.497210537901,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,5,1,550.5,0,0,0 +7656,9399,17136,17137,-9,-9,2,1,0,54,1,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,5,0,-8,-86.61057837720784,1,0,0,62,2,4,1,-9,-9,2019,3,1,8,1,0,37,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.465266186159772,0,0,0,51.83,57.2,7,1,0,0,10,2,1,347,0,0,0 +7656,9399,17137,17136,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,4,6.950479462016463,7.518297139016415,6.398205526411533,1,0,-9,5,0,8,142.758456753688,0,0,0,54,1,4,2,2,2,2019,2,2,6,0,20,20,15,1,0,2,0,6.29812267027935,6.29812267027935,0,0,0,0,0,0,0,0,0,0,0,6.222505303163008,0,0,51.83,57.2,6,1,0,0,10,2,1,347,0,0,0 +7657,9400,17138,17139,-9,-9,1,1,1,37,1,0,0,0,2,-9,2,1,0,5,9.058056316412785,9.231769137946303,0,1,0,-9,7,0,5,166.1085425976155,0,0,0,32,1,4,1,2,1,2019,1,2,16,4,47,43,15,1,4,1,0,26.24011943059722,26.24011943059722,0,0,0,0,0,0,0,0,0,0,3.387516640750771,0,0,0,48.08,55.04,6,1,0,0,5,5,1,365.5,0,0,0 +7657,9400,17139,17138,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.450189059885982,8.389704305021622,0,1,0,-9,7,0,-5,76.42734139859787,0,0,1,37,2,5,1,-9,-9,2019,1,1,19,7,37,40,15,1,7,1,0,12.48982808042609,12.48982808042609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.97,58.59,5,1,0,0,5,5,1,365.5,0,0,0 +7658,9401,17140,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,3,8.274302773689168,8.474768920537606,0,3,0,0,0,-9,0,-1016.08316460912,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,70,50,15,1,0,-9,0,6.558431282044268,6.558431282044268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,52.35,6,1,0,0,4,4,0,1472,0,0,0 +7659,9402,17141,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,4,8.527291919933678,8.55412692445384,0,3,0,0,0,-9,0,-876.5058321822736,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,0,0,38,38,15,1,0,-9,0,14.70868841359534,14.70868841359534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.66,48.98,6,4,0,0,8,5,1,4296,0,0,0 +7660,9403,17142,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,7.530773521267435,7.174573711756484,3,0,0,0,-9,0,-1030.178380037526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,12,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.71529593636336,7.410717640594826,0,0,57.16,56.15,5,1,0,0,4,3,0,1499,0,0,0 +7661,9404,17143,-9,-9,-9,1,1,1,54,3,0,0,0,1,-9,2,1,0,3,8.83539423537162,8.793008443855317,0,3,0,0,0,-9,0,-1075.73556463618,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,37,37,15,1,8,-9,0,19.70319907921069,19.70319907921069,0,0,0,0,0,0,0,1,1,0,3.709859405841211,0,0,0,45.37,54.86,6,1,0,0,4,5,1,303,0,0,0 +7662,9405,17144,17145,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,5.760494563117953,5.679620812570373,1,0,-9,34,0,13,-49.14109828505705,0,0,0,69,3,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.479870605886221,5.654753002195898,0,0,61.43,43.34,6,1,0,0,6,2,1,821.5,0,0,0 +7662,9405,17145,17144,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,34,0,-13,63.17751273967409,0,0,0,82,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.940688291401017,0,0,0,51.14,60.45,6,1,0,0,6,2,1,821.5,0,0,0 +7663,9406,17146,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,2,0,7.146919881122883,6.975204336591695,3,0,0,0,-9,0,-1057.079635013538,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.095970723382194,3.453114980024983,3,38.65,29.82,3,1,0,1,9,3,0,312,0,0,0 +7664,9407,17147,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,5,0,7.712755923730263,8.030036792432162,3,0,0,0,-9,0,-1020.238038916721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.811196908634524,7.675142713876959,0,0,57.63,56.14,7,1,0,0,10,3,1,657,0,0,0 +7665,9408,17148,17149,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.389877447110869,8.221890398086108,0,2,0,-9,16,0,0,-57.98244031489316,0,0,0,44,2,5,1,2,2,2019,1,2,10,0,48,48,15,1,0,1,0,6.93475992743214,6.93475992743214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,53.42,6,1,0,0,7,3,1,385.25,0,0,0 +7665,9408,17149,17148,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,5,6.984919528637943,7.581319771362965,0,2,0,-9,17,0,0,4.064839599835668,0,0,1,44,2,3,1,2,1,2019,1,1,6,0,22,22,15,1,0,1,0,5.878486050791478,5.878486050791478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,7,3,1,385.25,0,0,0 +7665,9408,17150,-9,17149,17148,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.4441001224258,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,1,385.25,0,0,0 +7665,9408,17151,-9,17149,17148,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.2029051322413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,3,1,385.25,0,0,0 +7666,9409,17152,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,5,0,5.044646950556348,5.035305956258767,3,0,0,0,-9,0,-864.8712768696893,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.43541436400433,0,0,0,53.39,40.18,7,1,0,0,7,2,0,465,0,0,0 +7667,9410,17153,17154,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,19,0,-5,42.16865867379437,0,0,0,77,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.22,37.52,7,1,0,0,13,2,0,1830.5,0,0,0 +7667,9410,17154,17153,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,5.741637953835871,5.907345009045045,1,0,-9,24,0,5,-66.00035074948612,0,0,0,72,3,3,3,3,3,2019,4,1,15,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.811118834955655,0,0,52.64,36.51,6,1,0,0,13,2,0,1830.5,0,0,0 +7668,9411,17155,17156,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,5,8.251937576545936,8.204245868050155,0,1,0,-9,4,0,-6,154.2013976454019,0,1,1,32,1,4,1,2,1,2019,1,2,12,0,37,36,15,1,0,1,0,13.72740725007881,13.72740725007881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,6,1,0,0,8,5,0,485,0,0,0 +7668,9411,17156,17155,-9,-9,2,1,1,32,1,0,0,0,1,-9,1,1,0,4,9.803043703050198,9.796774388852352,0,1,0,-9,4,0,6,-104.5847333375635,0,0,0,26,1,5,1,-9,-9,2019,1,1,7,0,60,58,15,1,0,1,0,33.28614384323846,33.28614384323846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,6,1,0,0,8,5,0,485,0,0,0 +7669,9412,17157,17158,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,2,7.347694039923535,7.309319682648209,0,1,0,-9,43,0,0,-88.48011860818214,0,0,0,63,1,3,1,2,2,2019,1,1,11,1,21,21,15,1,1,1,0,7.104980755266275,7.104980755266275,0,0,0,0,0,0,0,1,1,0,0,0,1.320143271105498,1,62.69,30.79,6,1,0,0,10,3,1,797.5,0,0,0 +7669,9412,17158,17157,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,3,7.408291662669723,7.66087938639141,0,1,0,-9,43,0,0,53.51323014942756,0,0,0,63,1,2,1,2,2,2019,1,2,8,0,35,51,15,1,0,1,0,4.431126291860591,4.431126291860591,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,46.31,5,1,0,1,10,3,1,797.5,0,0,0 +7670,9413,17159,17160,-9,-9,1,1,0,35,1,1,1,0,1,-9,1,1,0,3,7.571057967573078,7.769712694971409,0,2,0,-9,9,0,-3,-216.0098297071853,0,0,1,38,2,3,1,2,2,2019,1,2,10,2,22,13,15,1,2,1,0,11.54966952688193,11.54966952688193,0,0,0,0,0,0,0,1,1,0,0,0,40.9206422327475,3,45,55.12,6,1,0,0,9,4,0,579,0,0,0 +7670,9413,17160,17159,-9,-9,2,1,1,38,1,1,1,0,2,-9,2,1,0,3,8.75995521314772,8.693197066076156,0,2,0,-9,9,0,3,44.37239242627698,0,0,0,35,1,3,1,-9,-9,2019,1,1,10,0,70,50,15,1,0,1,0,9.428209733804842,9.428209733804842,0,0,0,0,0,0,0,1,1,0,5.028656939912555,0,0,0,59.46,46.99,6,1,0,0,9,4,0,579,0,0,0 +7670,9413,17161,-9,17159,17160,4,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.256656478442,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,0,579,0,0,0 +7671,9414,17162,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,3,0,6.962820975818853,6.976444012680435,3,0,0,0,-9,0,-913.7514908741372,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.568734523735319,0,3.467479989233223,0,1,1,0,5.128280019952769,6.924090071552357,0,0,55,45,6,1,0,0,2,2,1,861,0,0,0 +7672,9415,17163,17164,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.256765565055128,7.362851398297776,1,0,-9,37,0,7,105.5623704963985,0,0,0,64,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.059258039565627,7.125316370245818,0,0,61.27,46.03,7,1,0,0,2,3,1,331,0,0,0 +7672,9415,17164,17163,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.441636208379913,7.663853457785958,1,0,-9,37,0,-7,96.87462389820499,0,0,0,71,2,4,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.195818103700821,7.444895772342288,15.98428400510048,3,46.79,51.35,6,1,0,0,2,3,1,331,0,0,0 +7673,9416,17165,17166,-9,-9,2,1,1,44,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,5,0,-3,0,0,0,0,47,2,1,3,-9,-9,2019,4,1,21,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.14342339035857,1,35.3,38.41,2,1,1,1,2,1,0,409.5,0,0,0 +7673,9416,17166,17165,-9,-9,1,1,0,47,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,5,0,3,0,0,0,0,44,2,2,3,2,3,2019,4,2,26,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.56,26.36,2,1,1,0,2,1,0,409.5,0,0,0 +7674,9417,17167,17168,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,2,8.141373598480357,7.98039418823694,0,1,0,-9,1,-9,-5,-115.0458938906147,-9,1,1,28,1,4,1,2,2,2019,1,2,15,3,41,0,15,1,3,1,0,7.839345825526165,7.839345825526165,0,0,0,0,0,0,0,0,0,0,5.485732662823226,0,0,0,35.77,47.41,5,1,0,0,11,4,1,968,0,0,0 +7674,9417,17168,17167,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,4,7.938903609921292,8.386715783248066,0,1,0,-9,1,-9,5,-42.0053182337272,-9,1,0,23,2,2,1,-9,-9,2019,1,1,10,0,37,0,15,1,1,1,0,10.82291798834228,10.82291798834228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,11,4,1,968,0,0,0 +7675,9418,17169,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,5.855872485510779,5.616967191833465,3,0,0,0,-9,0,-1032.881214571446,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.150957714705,5.926561531693639,0,0,57.16,56.15,7,1,0,0,1,2,1,415,0,0,0 +7676,9419,17170,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,2,8.10521846185021,7.75566067311335,0,3,0,0,0,-9,0,-1120.921892589243,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,35,35,15,1,1,-9,0,8.157194421892667,8.157194421892667,0,0,0,0,0,0,0,0,0,0,6.759108569885606,0,0,0,47.69,50.26,6,1,0,0,12,3,1,1634,0,0,0 +7677,9420,17171,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,8,3,1,2,0,6.675823552415217,6.874685197739228,3,0,0,0,-9,0,-1091.33648249244,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,39,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.551235633684972,6.431877018643371,2.334302569260365,3,46.13,36.04,4,1,0,0,9,2,0,604,0,0,0 +7678,9421,17172,17173,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,5.817647865171609,6.137163711458242,4.562319824750409,1,0,-9,27,0,4,16.39945783379063,0,0,0,56,1,5,3,3,2,2019,2,1,6,0,10,0,15,1,0,4,0,2.549077469594237,2.549077469594237,0,0,0,0,0,0,0,1,1,0,4.509768373699458,4.444770866351941,0,0,53.81,53.56,7,1,0,0,2,4,1,5931,0,0,0 +7678,9421,17173,17172,-9,-9,1,1,0,56,1,0,0,0,1,-9,4,3,0,5,0,8.626979046425186,8.649276778021443,1,0,-9,27,0,-4,39.24812754536151,0,0,0,60,2,4,1,2,2,2019,3,2,4,0,0,41,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.632207223424915,8.696838968838588,8.429312776325499,1,60.02,56.42,7,1,0,0,2,4,1,5931,0,0,0 +7679,9422,17174,17175,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,2,7.940452085773983,7.966809270825726,0,1,0,-9,5,0,-5,33.20629489451928,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,2,40,24,15,1,2,1,0,7.244913875207588,7.244913875207588,0,0,0,0,0,0,0,1,1,0,0,0,1.965545138535716,3,52.24,20.93,6,1,0,0,5,5,1,615.5,0,0,0 +7679,9422,17175,17174,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,4,8.935693619351266,8.883075468672459,5.391147577641386,1,0,-9,5,0,5,57.27372270016851,0,0,0,45,2,2,1,2,2,2019,1,2,7,0,60,48,15,1,0,1,0,14.66252379325103,14.66252379325103,0,0,0,0,0,0,0,1,1,0,6.850822093008351,5.35322712202782,0,3,59.26,45.49,6,1,0,0,5,5,1,615.5,0,0,0 +7679,9423,17176,-9,17174,17175,3,1,1,18,3,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1126.249922613374,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.76,50.55,6,1,0,0,5,1,1,537,0,0,0 +7680,9424,17177,-9,17181,17179,3,1,1,12,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.256588008066,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,2,1,581.8,0,0,0 +7680,9424,17178,-9,17181,17179,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.713524570175,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,2,1,581.8,0,0,0 +7680,9424,17179,17181,-9,-9,1,1,1,39,1,1,3,0,3,-9,2,1,0,3,7.727709699479913,7.653467255108202,0,2,0,-9,14,0,-7,23.15039895630567,0,0,0,46,3,2,3,3,3,2019,2,2,12,0,32,32,15,1,0,3,0,7.164732587451579,7.164732587451579,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.41,35.13,5,3,0,0,6,2,1,581.8,0,0,0 +7680,9424,17180,-9,17181,17179,4,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.41103606021,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,581.8,0,0,0 +7680,9424,17181,17179,-9,-9,2,1,0,46,1,1,3,0,3,-9,6,3,0,2,0,0,0,2,0,-9,13,0,7,-115.4051889310912,0,0,0,39,3,3,1,3,3,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.28,34.98,4,3,0,0,6,2,1,581.8,0,0,0 +7681,9425,17182,17183,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,7.355958597164329,7.225829963510576,1,0,-9,47,0,-3,8.353335810978797,0,0,0,74,3,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.297503015196212,0,0,62.66,52.4,6,1,0,0,4,2,0,5261.5,0,0,0 +7681,9425,17183,17182,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,47,0,3,56.34771872889259,0,0,0,71,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.304704526349997,0,0,0,40.12,46.76,2,1,0,0,4,2,0,5261.5,0,0,0 +7682,9426,17184,-9,17186,17185,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.0595597423496,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,528.4,0,0,0 +7682,9426,17185,17186,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,5,9.572179676064362,9.753828082619801,0,2,0,-9,7,0,0,82.28404641703376,0,0,0,44,1,4,1,1,1,2019,1,1,11,0,52,46,15,1,0,1,0,37.07537597227459,37.07537597227459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,6,1,0,0,8,5,1,528.4,0,0,0 +7682,9426,17186,17185,-9,-9,1,1,0,44,1,0,3,0,1,-9,2,1,0,4,8.71865512536267,8.534433856370521,0,2,0,-9,17,0,0,-69.18784420795916,0,0,1,44,1,5,1,2,1,2019,1,2,10,0,21,20,15,1,0,1,0,31.8581113475545,31.8581113475545,0,0,0,0,0,0,0,0,0,0,.5698228817956345,0,0,0,46.44,59.62,6,1,0,0,8,5,1,528.4,0,0,0 +7682,9426,17187,-9,17186,17185,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.3682776569178,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,528.4,0,0,0 +7682,9426,17188,-9,17186,17185,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.9383077842549,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,528.4,0,0,0 +7683,9427,17189,17190,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,4,9.317555201651272,8.960824730502534,0,1,0,-9,7,0,2,202.3312145038862,0,0,0,36,1,4,1,-9,-9,2019,1,1,19,5,60,0,15,1,5,1,0,16.4577718770156,16.4577718770156,0,0,0,0,0,0,0,0,0,0,7.182706973318833,0,0,0,30.59,64.25,2,1,0,1,9,5,1,4616,0,0,0 +7683,9427,17190,17189,-9,-9,1,1,0,36,1,0,0,0,1,-9,1,1,0,4,7.692278231118165,7.27246072709239,0,1,0,-9,7,0,-2,-87.8618547156057,0,0,1,38,1,4,1,-9,-9,2019,1,2,10,1,20,12,15,1,1,1,0,9.889445239499427,9.889445239499427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,5,1,0,0,9,5,1,4616,0,0,0 +7684,9428,17191,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1114.436737388645,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.538330627362871,0,0,0,35.35,41.99,5,1,0,0,10,1,1,1000,0,0,0 +7684,9429,17192,-9,-9,17191,2,1,0,22,2,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-865.8593877519369,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,24,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.41,55.55,3,1,1,0,10,1,1,1041,0,0,0 +7685,9430,17193,17194,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.219439291621166,8.285782862979293,0,1,0,-9,5,0,1,18.97747307342101,0,0,1,31,1,5,1,-9,-9,2019,1,1,13,1,40,40,15,1,1,1,0,9.547342915311653,9.547342915311653,0,0,0,0,0,0,0,0,0,0,5.996430858999018,0,0,0,44.02,60.7,6,1,0,0,12,5,1,895,0,0,0 +7685,9430,17194,17193,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,5,8.584464278141233,8.5537439614987,0,1,0,-9,5,0,-1,-45.37199038224669,0,0,0,32,1,4,1,1,2,2019,1,2,7,0,41,44,15,1,0,1,0,11.95769557551665,11.95769557551665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,1,0,0,12,5,1,895,0,0,0 +7686,9431,17195,17196,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,7.777183565056061,7.799457607629441,1,0,-9,50,0,0,-36.07788589038753,0,0,0,73,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.497707275173893,7.834024101194564,117.4921635602529,1,59.53,56.44,7,1,0,0,6,3,1,743.5,0,0,0 +7686,9431,17196,17195,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,0,-81.01177651566037,0,0,0,73,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.733390710130154,0,0,0,50,46,5,1,0,0,6,3,1,743.5,0,0,0 +7687,9432,17197,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1005.585366412999,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.86,56.3,1,1,0,1,2,1,0,1771,0,0,0 +7688,9433,17198,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,2,0,8.624640028531843,8.429984604601612,3,0,0,0,-9,0,-977.9771271177186,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.61454964305246,8.440993515836592,0,0,61.03,31.71,7,1,0,0,2,5,1,1244,0,0,0 +7689,9434,17199,17200,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.284444811944093,8.578647944124583,0,1,0,-9,38,0,-2,0,0,0,0,59,1,4,1,3,3,2019,1,2,10,0,20,20,15,1,0,1,0,21.02543973632381,21.02543973632381,0,0,0,0,0,0,0,0,0,0,5.173189148422053,0,2.94137634056209,3,58.39,44.54,6,1,0,0,10,5,1,394,0,0,0 +7689,9434,17200,17199,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.402463978194758,8.468940946970136,0,1,0,-9,38,0,2,0,0,0,0,57,2,4,1,3,3,2019,1,1,11,0,36,45,15,1,0,1,0,13.18853045966052,13.18853045966052,0,0,0,0,0,0,0,0,0,0,7.018232131010524,0,3.654367911700743,3,57.73,54.53,6,1,0,0,10,5,1,394,0,0,0 +7690,9435,17201,-9,17203,17202,3,1,1,17,2,0,2,1,2,0,7,2,0,4,5.74534867928061,5.80539437306979,0,2,0,0,0,-9,0,-1000.038355266829,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,2,1,0,0,5,4,1,500.25,0,0,0 +7690,9435,17202,17203,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,4,8.999734636248961,9.247601196343911,0,2,0,-9,8,0,7,-59.37271762709981,0,0,0,44,2,4,1,-9,-9,2019,1,1,9,0,44,43,15,1,0,1,0,24.78265409151147,24.78265409151147,0,0,0,0,0,0,0,1,1,0,1.047326951003374,0,0,0,54.2,57.49,6,1,0,0,5,4,1,500.25,0,0,0 +7690,9435,17203,17202,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.015047384365381,7.912782082261345,0,2,0,-9,26,0,-7,-77.96291539689607,0,0,1,51,2,4,1,2,2,2019,1,2,9,0,35,35,15,1,0,1,0,9.062405326980564,9.062405326980564,0,0,0,0,0,0,0,1,1,0,2.441854784752012,0,0,0,51.24,58.84,6,1,0,0,5,4,1,500.25,0,0,0 +7690,9435,17204,-9,17203,17202,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.8955535243123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,4,1,500.25,0,0,0 +7691,9436,17205,17206,-9,-9,2,1,1,50,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,24,0,1,-34.03745480071817,0,0,0,49,2,5,1,-9,-9,2019,3,1,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.01,34.13,3,1,1,0,2,2,0,470,0,0,0 +7691,9436,17206,17205,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,5,7.167633892411574,7.19568440098787,0,1,0,-9,24,0,-1,112.3953177740533,0,0,0,50,3,2,3,3,2,2019,2,2,10,0,29,27,15,1,0,3,0,5.203417794599983,5.203417794599983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.97,61.07,4,1,0,0,2,2,0,470,0,0,0 +7691,9437,17207,-9,17206,17205,3,1,0,27,2,0,0,0,2,-9,2,1,0,3,7.46789761421203,7.049970097116737,0,3,0,0,0,-9,0,-1126.561557472058,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,2,0,26,27,15,1,0,-9,1,6.529208106960956,6.529208106960956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.12,40.84,6,1,0,0,2,3,0,178,0,0,0 +7691,9438,17208,-9,17206,17205,4,1,1,20,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1058.916300454722,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,60,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,1,0,2,1,0,314,0,0,0 +7692,9439,17209,17211,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,4,7.264300905984693,7.693743439813971,0,2,0,-9,17,0,-1,56.76539214552636,0,0,1,36,1,3,1,2,2,2019,1,2,7,0,45,20,15,1,0,1,0,3.637476332924305,3.637476332924305,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,8,3,1,619.3333333333334,0,0,0 +7692,9439,17210,-9,17209,17211,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.267845508248,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,3,1,619.3333333333334,0,0,0 +7692,9439,17211,17209,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,3,8.355897454858743,8.393677061439165,0,2,0,-9,17,0,1,-17.38011565674969,0,0,0,35,1,4,1,2,2,2019,1,1,9,1,60,45,15,1,1,1,0,7.945119550371099,7.945119550371099,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,50.61,5,1,0,0,8,3,1,619.3333333333334,0,0,0 +7693,9440,17212,17213,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,3,7.643068413640497,7.669670815468891,0,2,0,-9,9,0,-7,49.88987416040389,0,0,0,52,2,3,1,-9,-9,2019,1,2,26,12,35,31,15,1,12,1,0,6.061649652708048,6.061649652708048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.1,64.55,6,1,0,0,4,2,1,312.6666666666667,0,0,0 +7693,9440,17213,17212,-9,-9,2,1,1,52,1,0,2,0,2,-9,1,1,0,3,0,0,0,2,0,-9,9,0,7,-135.4972728590915,0,0,0,45,2,3,1,2,-9,2019,1,1,11,0,30,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,53.42,5,1,0,0,4,2,1,312.6666666666667,0,0,0 +7693,9440,17214,-9,17212,17213,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-983.3121001493241,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,2,1,312.6666666666667,0,0,0 +7693,9441,17215,-9,17212,17213,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1119.306420343025,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,4,2,1,2497,0,0,0 +7694,9442,17216,17217,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,59,0,3,-66.34188024511873,0,0,0,79,1,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.390374791206528,3,50.93,54.77,6,1,0,0,10,3,1,131,0,0,0 +7694,9442,17217,17216,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,7.761114007359769,7.572223759383226,1,0,-9,59,0,-3,67.04588811087119,0,0,0,82,3,4,3,2,2,2019,4,2,15,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.635854665125822,0,0,55.47,52.91,6,1,0,0,10,3,1,131,0,0,0 +7695,9443,17218,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,6.08787857443713,6.037700685170733,3,0,0,0,-9,0,-982.0063754233707,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.963266648091112,5.674998624309038,0,0,59.43,49.68,7,4,0,0,11,2,1,514,0,0,0 +7696,9444,17219,-9,17223,17222,3,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.5538828469714,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,600.8,0,0,0 +7696,9444,17220,-9,17223,17222,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.5481606906054,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,600.8,0,0,0 +7696,9444,17221,-9,17223,17222,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-934.9955899622971,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,600.8,0,0,0 +7696,9444,17222,17223,-9,-9,2,1,1,30,1,1,3,0,2,-9,2,1,0,3,8.389041048232885,8.955186189140058,0,2,0,-9,8,0,1,-29.07117997028755,0,0,0,29,2,4,1,3,3,2019,1,1,8,0,42,42,15,1,0,1,0,16.90240117202525,16.90240117202525,0,0,0,0,0,0,0,1,1,0,6.564843094150432,0,0,0,57.33,53.46,6,1,0,0,11,4,1,600.8,0,0,0 +7696,9444,17223,17222,-9,-9,1,1,0,29,1,1,3,0,2,-9,2,1,0,4,7.725342888142951,7.720478904417884,0,2,0,-9,8,0,-1,-60.49209923364364,0,1,1,30,2,3,1,3,2,2019,1,2,6,0,37,37,15,1,0,1,0,8.652674421602232,8.652674421602232,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,6,1,0,0,11,4,1,600.8,0,0,0 +7697,9445,17224,17225,-9,-9,2,1,0,52,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,1,-9,-6,-87.73862314420411,-9,0,0,58,1,3,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.72,50.72,7,1,0,0,8,4,1,468.5,0,0,0 +7697,9445,17225,17224,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,3,8.496715265327701,8.649713398270301,0,1,0,-9,19,-9,6,-64.02923013653333,-9,0,0,52,1,3,3,3,3,2019,2,2,6,0,38,0,15,1,0,3,0,15.44974647233819,15.44974647233819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.26,51.57,7,3,0,0,8,4,1,468.5,0,0,0 +7697,9446,17226,-9,17224,17225,3,1,1,22,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-825.0588150984069,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,4,3,0,0,8,1,1,1650,0,0,0 +7698,9447,17227,17228,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,5,8.991637027826501,9.170582487672236,0,1,0,-9,9,0,2,116.492888798911,0,0,0,57,2,4,1,1,2,2019,1,2,6,0,50,50,15,1,0,1,0,23.638361101592,23.638361101592,0,0,0,0,0,0,0,0,0,0,8.532490396087766,0,0,0,62.39,56.71,7,1,0,0,5,5,1,430,0,0,0 +7698,9447,17228,17227,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.286092177180803,8.30029639192437,0,1,0,-9,9,0,-2,-1.856252591869618,0,0,0,59,1,5,1,2,1,2019,1,1,29,12,40,44,15,1,12,1,0,12.77785937529114,12.77785937529114,0,0,0,0,0,0,0,0,0,0,5.037671077385192,0,0,0,32.26,56.79,3,1,0,0,5,5,1,430,0,0,0 +7698,9448,17229,-9,17228,17227,4,1,1,22,2,0,0,0,2,1,2,1,0,5,8.093817585848718,8.205263938438042,0,3,0,0,0,-9,0,-1073.329926037869,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,70,0,15,1,0,-9,1,5.733459267665526,5.733459267665526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,6,1,0,0,5,4,1,910,0,0,0 +7699,9449,17230,-9,-9,-9,1,1,0,54,3,0,1,0,2,-9,2,1,0,4,8.719057920251521,8.714060248168488,5.538729885329663,4,0,0,0,-9,0,-1129.701657470704,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,35,15,1,0,-9,0,12.49416211046447,12.49416211046447,0,0,0,0,0,0,0,1,1,0,6.220453080476837,0,0,0,44.11,54.03,6,1,0,0,9,4,0,156,0,0,0 +7699,9449,17231,-9,17230,-9,3,1,1,16,2,0,1,1,2,-9,7,2,0,5,6.505262721505378,6.485101965551814,0,4,0,0,0,-9,0,-920.974809213967,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,12,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,9,4,0,156,0,0,0 +7699,9450,17232,-9,17230,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,2,0,7.434808300705713,7.45562860269755,3,0,0,0,-9,0,-908.4938228363786,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.104752443598527,0,0,0,36.92,53.77,6,1,0,0,9,4,0,581,0,0,0 +7700,9451,17233,-9,-9,-9,1,1,0,41,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1044.752142687794,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,26,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.78,17.81,1,1,0,0,5,1,0,381,0,0,0 +7701,9452,17234,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,4,9.344951874417045,9.36253623305956,0,1,0,-9,6,0,-26,-72.28660934866413,0,0,0,-9,-9,-9,-9,3,2,2019,2,2,0,0,50,35,15,1,0,-9,0,35.50783272976172,35.50783272976172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,3,0,0,8,5,0,268,0,0,0 +7701,9453,17235,-9,-9,-9,2,1,1,59,2,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,6,0,26,-38.92753298942844,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,32,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.01,20.17,5,1,0,0,8,5,0,270,0,0,0 +7702,9454,17236,-9,17238,17237,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1124.297066989061,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,9,4,1,562.25,0,0,0 +7702,9454,17237,17238,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,5,8.625554663040802,8.313482862012487,0,2,0,-9,9,0,12,82.77380499055404,0,0,0,36,2,5,1,-9,-9,2019,1,2,7,0,40,40,15,1,0,1,0,16.42055198220209,16.42055198220209,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,4,0,0,9,4,1,562.25,0,0,0 +7702,9454,17238,17237,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,5,8.076449023917762,7.662428719248189,0,2,0,-9,5,0,-12,114.882762733833,-9,0,1,48,1,5,1,-9,-9,2019,1,1,6,0,36,0,15,1,0,1,0,7.949526736330238,7.949526736330238,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,6,4,0,0,9,4,1,562.25,0,0,0 +7702,9454,17239,-9,17238,17237,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.1913072949197,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,9,4,1,562.25,0,0,0 +7703,9455,17240,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,2,0,7.473318767056652,7.161373298058141,3,0,0,0,-9,0,-989.6193419506719,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,1,1.999068894258291,0,0,0,0,40.06368764485959,1,1,0,3.337594086669111,7.604850808100934,0,0,42.86,34.81,6,1,0,0,12,3,1,156,0,0,0 +7704,9456,17241,17242,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.47179813027641,7.333572811586591,0,1,0,-9,34,0,0,-53.6451792199906,0,0,0,58,3,2,3,3,3,2019,2,1,19,6,28,29,15,1,6,3,0,8.981643783057546,8.981643783057546,0,0,0,0,0,0,0,1,1,0,0,0,.9347933339622658,3,46.56,31.5,3,1,0,1,9,3,1,540,0,0,0 +7704,9456,17242,17241,-9,-9,1,1,1,58,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,32,0,0,-2.598964404760601,0,0,0,58,2,2,1,2,2,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.6,41.68,2,1,0,1,9,3,1,540,0,0,0 +7704,9457,17243,-9,17241,17242,3,1,1,25,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1006.709634989049,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,1,0,9,1,1,193,0,0,0 +7704,9458,17244,-9,17241,17242,4,1,1,22,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1009.545892741957,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,29,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.46,42.89,1,1,1,0,9,1,1,309,0,0,0 +7704,9459,17245,-9,-9,-9,5,1,0,21,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-977.3195760491915,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.51,53.71,6,1,1,1,9,1,1,288,0,0,0 +7705,9460,17246,17247,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,7.145492767472524,7.153466283459426,1,0,-9,52,0,3,3.932170613216469,0,0,0,72,3,5,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.955020606184454,6.902514896446069,6.280522711431973,3,61.27,46.03,6,1,0,0,10,2,1,441.5,0,0,0 +7705,9460,17247,17246,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,50,0,-3,101.2675658326438,0,0,0,75,2,4,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.14,52.83,7,1,0,0,10,2,1,441.5,0,0,0 +7706,9461,17248,17249,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.443646327527222,7.381379625345755,0,1,0,-9,9,0,-1,-12.0702603217133,0,0,0,59,2,4,1,-9,-9,2019,1,1,13,2,26,27,15,1,2,1,0,9.092282179014267,9.092282179014267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,4,1,0,0,10,5,1,1404,0,0,0 +7706,9461,17249,17248,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,9.254264214622834,9.099617297348493,0,1,0,-9,9,0,1,-14.79764961469079,0,0,0,58,2,3,1,2,2,2019,1,2,10,0,38,37,15,1,0,1,0,39.45400050580532,39.45400050580532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1404,0,0,0 +7707,9462,17250,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,4,7.275302852549762,7.293083408946092,0,3,0,0,0,-9,0,-797.1554262965667,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,20,0,15,1,0,-9,0,6.44442116990469,6.44442116990469,0,0,0,0,0,0,0,1,0,1,.3025628797496541,0,0,0,51.24,58.84,6,1,0,0,5,2,0,494,0,0,0 +7708,9463,17251,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,4.76699786824366,5.123221370488309,3,0,0,0,-9,0,-1114.975922354455,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.903757488907166,0,0,61.19,33.88,6,1,0,0,10,2,1,1265,0,0,0 +7709,9464,17252,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-940.7772334428209,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.44,35.72,6,1,0,0,5,1,1,583,0,0,0 +7710,9465,17253,17254,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,0,7.764841582621917,7.6109302454895,1,0,-9,16,0,6,104.7759849106148,0,0,0,73,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.943620137382835,7.785725600673625,0,0,47.48,39.81,5,1,0,0,2,3,0,3126,0,0,0 +7710,9465,17254,17253,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,5.22601576627895,5.266319208947118,1,0,-9,16,0,-6,-37.97097821757763,0,0,0,79,2,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.99166265475737,5.665051687864125,121.0127362059511,1,52,54.51,6,1,0,0,2,3,0,3126,0,0,0 +7711,9466,17255,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,4,0,7.329676428205846,7.072404749531393,3,0,0,0,-9,0,-1079.163880318903,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.912481286183999,7.617737869410901,0,0,51.15,50.81,6,1,0,0,12,3,1,81,0,0,0 +7712,9467,17256,-9,17257,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-889.6071461854398,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,7,3,0,708,0,0,0 +7712,9467,17257,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,3,7.811947113265266,7.865328006173361,5.520501684086865,4,0,0,0,-9,0,-903.0657948997576,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,39,39,15,1,0,-9,0,9.714804252599215,9.714804252599215,0,0,0,0,0,0,0,1,1,0,5.571652737532063,0,0,0,46.86,55.66,5,4,0,1,7,3,0,708,0,0,0 +7713,9468,17258,17259,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,3,4.676189560782405,4.548320443993731,0,1,0,-9,10,0,-3,79.12022338627359,0,0,0,61,2,2,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6767113646699653,0,0,3,37.12,51.5,4,1,0,0,11,3,1,663.5,0,0,0 +7713,9468,17259,17258,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,2,7.675131224021692,8.16703885771526,0,1,0,-9,10,0,3,76.30356035866659,0,0,0,58,2,3,3,3,2,2019,2,1,24,12,40,40,15,1,12,3,0,6.51105554910465,6.51105554910465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.11,41.98,2,1,0,0,11,3,1,663.5,0,0,0 +7714,9469,17260,17261,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,4.808078730568497,4.187397861800251,1,0,-9,10,0,0,41.07729562747603,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.620058413314426,4.555032247078247,0,0,57.9,51.84,6,1,0,0,1,3,1,1309.5,0,0,0 +7714,9469,17261,17260,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,8.02035833110758,7.667951371573959,1,0,-9,10,0,0,183.5834407871994,0,0,0,69,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.142474078399246,7.713951124346251,0,0,61.61,37.79,6,1,0,0,1,3,1,1309.5,0,0,0 +7715,9470,17262,17263,-9,-9,2,1,0,65,1,0,0,0,2,-9,1,1,0,3,6.122388133717499,7.900181361066982,7.128256043848929,1,0,-9,30,0,7,91.82888691274552,-9,0,0,58,3,4,1,3,3,2019,1,1,13,1,35,0,15,1,1,1,0,1.680926502260525,1.680926502260525,0,0,0,0,0,0,0,0,0,0,.3380011509139768,7.523169810791485,0,0,36.87,49.16,3,1,0,0,9,3,0,973,0,0,0 +7715,9470,17263,17262,-9,-9,1,1,1,58,1,0,0,0,3,-9,1,1,0,4,5.338942646196779,5.383338967527191,0,1,0,-9,30,0,-7,1.126444523844856,-9,0,0,65,2,3,1,2,3,2019,1,2,13,2,30,0,15,1,2,1,0,.6396050055407597,.6396050055407597,0,0,0,0,0,0,0,0,0,0,2.055143565461637,0,0,0,48.28,60.18,3,1,0,0,9,3,0,973,0,0,0 +7716,9471,17264,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,7.263047155633274,7.686435273379137,3,0,0,0,-9,0,-1198.22389320136,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.434768365713835,7.807936278687628,0,0,57.27,35.61,7,1,0,0,10,3,1,519,0,0,0 +7717,9472,17265,-9,17268,17267,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-871.5088219376395,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,1,1,1992.5,0,0,0 +7717,9472,17266,-9,17268,17267,3,1,1,17,2,0,2,0,2,1,3,3,0,4,3.782636623169839,3.509159513405959,0,2,0,0,0,-9,0,-899.0878369295737,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.546453738522154,0,0,0,52.05,55.95,6,3,1,0,4,1,1,1992.5,0,0,0 +7717,9472,17267,17268,-9,-9,2,1,1,45,1,0,2,0,2,-9,3,3,0,1,0,0,0,2,0,-9,10,0,6,0,0,0,0,39,1,3,1,2,2,2019,3,1,28,11,0,39,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.992200585607153,0,0,0,34.16,38.97,2,3,1,0,4,1,1,1992.5,0,0,0 +7717,9472,17268,17267,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,3,0,0,0,2,0,-9,20,0,-6,0,0,0,1,45,2,1,3,2,1,2019,2,2,19,8,0,0,15,1,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,4,3,0,0,4,1,1,1992.5,0,0,0 +7718,9473,17269,17270,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,2,6.873774745033336,7.431910266537609,6.083971254746828,1,0,-9,26,0,9,124.7415846819132,0,0,0,57,3,4,1,3,3,2019,1,2,8,0,27,27,15,1,0,1,0,4.885566784767268,4.885566784767268,0,0,0,0,0,0,0,1,1,0,0,5.763724693398176,0,0,55.6,42.6,5,4,0,0,8,4,0,329,0,0,0 +7718,9473,17270,17269,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,4,8.411809295442382,8.307459079856704,5.013367611707382,1,0,-9,7,0,0,-12.32578613758432,0,0,0,66,3,2,1,-9,-9,2019,1,1,9,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.79312950833563,0,0,54,54,6,4,0,0,8,4,0,329,0,0,0 +7719,9474,17271,17272,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,3,7.800775231243319,7.788464638819588,0,1,0,-9,2,0,-2,36.64830948889102,0,0,0,43,1,4,1,3,2,2019,1,2,12,1,40,40,15,1,1,1,0,9.25863349599785,9.25863349599785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,5,1,0,0,7,5,1,1152,0,0,0 +7719,9474,17272,17271,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,4,9.024581950990852,8.865111553546196,0,1,0,-9,2,0,2,15.10761309162844,0,0,1,41,2,3,1,-9,-9,2019,1,1,8,0,43,41,15,1,0,1,0,29.07125201547222,29.07125201547222,0,0,0,0,0,0,0,0,0,0,7.300092197178509,0,0,0,55.79,52.62,6,1,0,0,7,5,1,1152,0,0,0 +7720,9475,17273,17274,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,4,7.751452551583512,7.70971354225006,0,2,0,-9,17,0,5,89.09389539324995,0,0,0,48,2,4,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,7.811460813490002,7.811460813490002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,0,0,8,3,0,265,0,0,0 +7720,9475,17274,17273,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.837651285274869,7.807556873958228,0,2,0,-9,17,0,-5,-21.26067691115064,-9,0,0,53,2,4,1,2,2,2019,1,1,8,0,40,0,15,1,0,1,0,7.162924126443687,7.162924126443687,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,8,3,0,265,0,0,0 +7720,9476,17275,-9,17274,17273,3,1,0,22,2,0,1,0,1,-9,2,1,0,4,8.139891753557011,7.973505483989292,0,3,0,0,0,-9,0,-988.4613059232809,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,38,15,1,0,-9,1,8.931639925787948,8.931639925787948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,60.33,6,3,0,0,8,4,0,710,0,0,0 +7721,9477,17276,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,6.682113778392765,6.674790299637927,3,0,0,0,-9,0,-906.2653266521751,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.489638347268913,6.800398402628698,0,0,49.97,53.99,2,1,0,0,2,2,0,354,0,0,0 +7722,9478,17277,-9,17278,17281,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1116.617689197443,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,2,1,1882.4,0,0,0 +7722,9478,17278,17281,-9,-9,1,1,0,35,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,15,0,1,-72.59023297989117,0,0,1,34,3,5,1,3,2,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.27,39.15,3,3,0,0,4,2,1,1882.4,0,0,0 +7722,9478,17279,-9,17278,17281,3,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1003.131609470356,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,4,2,1,1882.4,0,0,0 +7722,9478,17280,-9,17278,17281,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.2197447914389,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,2,1,1882.4,0,0,0 +7722,9478,17281,17278,-9,-9,2,1,1,34,1,0,3,0,3,-9,2,1,0,5,8.059349732292169,7.755315493303987,0,2,0,-9,15,0,-1,-41.77444225496477,0,0,0,35,2,2,3,3,2,2019,2,1,6,0,43,0,15,1,0,3,0,8.099088597750614,8.099088597750614,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,3,0,0,4,2,1,1882.4,0,0,0 +7723,9479,17282,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1075.329927512438,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,11.83,40.91,1,1,0,1,9,1,0,232,0,0,0 +7723,9480,17283,-9,17282,-9,2,1,0,20,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-982.8670350211041,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,39,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17.45429899844559,3,32.32,54.65,3,2,1,1,9,1,0,343,0,0,0 +7723,9481,17284,-9,-9,-9,3,1,1,48,3,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-936.3119257549051,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,2.331798301629322,3,41.26,52.78,4,4,1,1,9,1,0,3978,0,0,0 +7724,9482,17285,17286,-9,-9,2,1,1,84,1,0,0,0,2,-9,4,3,0,2,0,8.041730447706868,7.698282566404567,1,0,-9,10,0,3,3.804867745455259,0,0,0,81,3,3,3,2,3,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,1,0,18.03029379724338,0,0,0,47.17747778003071,1,1,0,5.722888476075883,7.397667637152798,116.4686691430471,1,48.79,30.2,4,1,0,0,7,3,1,453.5,0,0,0 +7724,9482,17286,17285,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-3,-24.93047087892673,0,0,0,84,2,2,3,3,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,8.346415663467017,103.0465520505362,0,1.897259368655183,.1502114278518318,60.29113099560224,1,1,0,.1854972644804669,0,0,0,51,45,6,1,0,0,7,3,1,453.5,0,0,0 +7725,9483,17287,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,5.616485564514614,5.352921031068124,3,0,0,0,-9,0,-883.4721238247322,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,11.19553356610059,1,1,0,3.973489294111873,5.717202214263273,0,0,45.8,37.1,6,1,0,0,9,2,1,1100,0,0,0 +7726,9484,17288,17293,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,3,8.125535250717052,8.230463143500105,0,2,0,-9,16,0,12,-108.0487842078065,0,0,0,35,2,2,1,1,1,2019,1,2,10,0,37,37,15,1,0,1,0,9.212338766682221,9.212338766682221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.37,5,1,0,0,1,3,0,586.6666666666666,0,0,0 +7726,9484,17289,-9,17293,17288,3,1,0,16,2,0,3,1,2,-9,7,2,0,2,5.442720166531661,5.354515330843372,0,2,0,0,0,-9,0,-944.2259063565942,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.67,29.51,4,1,0,0,1,3,0,586.6666666666666,0,0,0 +7726,9484,17290,-9,17293,17288,6,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.372595123298,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,0,586.6666666666666,0,0,0 +7726,9484,17291,-9,17293,17288,4,1,0,15,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1042.755536768517,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,1,3,0,586.6666666666666,0,0,0 +7726,9484,17292,-9,17293,17288,5,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.7846932694705,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,3,0,586.6666666666666,0,0,0 +7726,9484,17293,17288,-9,-9,2,1,0,35,1,0,3,0,2,-9,2,1,0,2,7.807190258428764,7.68329779088525,0,2,0,-9,17,0,-12,-9.666743660347613,0,0,1,47,1,3,1,2,2,2019,1,1,12,0,25,0,15,1,0,1,0,9.744606360399779,9.744606360399779,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.9,32.73,5,1,0,0,1,3,0,586.6666666666666,0,0,0 +7727,9485,17294,17295,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,4,8.866272518957778,9.265150016318708,0,2,0,-9,9,0,0,15.12150541669161,0,0,0,49,2,4,1,-9,-9,2019,1,1,7,0,47,43,15,1,0,1,0,21.67966096140378,21.67966096140378,0,0,0,0,0,0,0,1,1,0,.1119351132350291,0,5.547745708918863,3,36.1,63.29,6,1,0,0,10,5,1,842,0,0,0 +7727,9485,17295,17294,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,4,7.151455003287486,7.383781083542839,0,2,0,-9,9,0,0,5.761955605667709,0,0,0,49,2,4,1,2,2,2019,1,2,15,4,16,16,15,1,4,1,0,13.63254871650116,13.63254871650116,0,0,0,0,0,0,0,1,1,0,.399858394107484,0,0,3,41.06,62.04,6,1,0,0,10,5,1,842,0,0,0 +7728,9486,17296,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,4,8.305920107124658,8.316388814878165,0,1,0,-9,9,0,2,13.61696860615244,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,7,0,25,21,15,1,0,-9,0,15.69473695395568,15.69473695395568,0,0,0,0,0,0,0,0,0,0,8.067414912824454,0,0,0,49.27,56.95,2,1,0,0,8,5,1,391,0,0,0 +7728,9487,17297,-9,-9,-9,2,1,1,56,2,0,0,0,3,-9,1,1,0,5,8.645274079122105,8.56500740817086,0,1,0,-9,9,0,-2,45.08402809938022,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,7,0,12,6,15,1,0,-9,0,49.0482660716165,49.0482660716165,0,0,0,0,0,0,0,0,0,0,2.102571509247804,0,0,0,58.05,54.52,6,1,0,0,8,5,1,430,0,0,0 +7729,9488,17298,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,5,8.74020958725183,8.765140555197204,0,3,0,0,0,-9,0,-1039.59369962907,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,38,38,15,1,9,-9,0,16.14812237228776,16.14812237228776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.04,56.44,4,1,0,0,13,5,1,841,0,0,0 +7730,9489,17299,17300,-9,-9,2,1,0,53,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,10,0,-1,-26.50911760969905,0,0,0,54,1,5,1,-9,-9,2019,3,1,6,0,0,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.548524894470086,0,0,0,57.16,56.15,7,1,0,0,10,5,1,2026.5,0,0,0 +7730,9489,17300,17299,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,5,9.677015345113018,9.663605983300696,0,1,0,-9,30,0,1,129.9186986162222,0,0,0,53,1,4,3,2,2,2019,2,2,8,0,27,54,15,1,0,4,0,74.56337391279763,74.56337391279763,0,0,0,0,0,0,0,0,0,0,5.021289521558547,0,0,3,52.77,58.29,6,1,0,0,10,5,1,2026.5,0,0,0 +7731,9490,17301,17302,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,4,8.919487129465084,8.678555335208813,0,1,0,-9,32,0,5,184.1765647743385,0,0,0,50,2,3,1,2,2,2019,1,2,11,1,45,45,15,1,1,1,0,14.14061503886226,14.14061503886226,0,0,0,0,0,0,0,1,1,0,6.600104368435819,0,0,0,51.24,58.84,6,1,0,0,4,5,1,706,0,0,0 +7731,9490,17302,17301,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.398716055620982,7.344256184248587,0,1,0,-9,8,0,-5,10.47160698368381,0,0,0,55,2,4,1,3,3,2019,1,1,12,0,30,24,15,1,2,1,0,6.422614207692523,6.422614207692523,0,0,0,0,0,0,0,1,1,0,1.8990284016879,0,0,0,47,49,5,1,0,0,4,5,1,706,0,0,0 +7731,9491,17303,-9,17302,17301,3,1,1,19,2,0,0,0,2,-9,7,2,0,5,7.043832779247184,7.593523231229463,0,3,0,0,0,-9,0,-1001.408827452553,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,12,37,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.77,60.16,6,1,0,0,4,2,1,757,0,0,0 +7732,9492,17304,17305,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.782845202761743,7.540897450917124,5.198122861321068,1,0,-9,43,0,-3,84.86865634205586,0,0,0,63,3,1,3,3,3,2019,2,2,15,6,35,35,15,1,6,4,0,8.03027979388515,8.03027979388515,0,0,0,0,0,0,0,0,0,0,6.701728868079698,5.448239575854345,2.088794596500297,2,31.02,45.11,6,1,0,0,6,4,0,674.5,0,0,0 +7732,9492,17305,17304,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,1,0,7.670673694180328,7.97574106084393,1,0,-9,43,0,3,147.4719453383766,0,0,0,60,2,4,1,3,3,2019,3,1,25,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.540678921196403,0,0,30.87,31.07,5,1,0,0,6,4,0,674.5,0,0,0 +7733,9493,17306,-9,-9,-9,1,1,0,45,2,0,1,0,1,-9,1,1,0,5,8.500093696628294,8.991357274746594,7.137982452929134,4,0,0,0,-9,0,-981.3197616438579,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,24,0,15,1,0,-9,0,22.21665223725076,22.21665223725076,0,0,0,0,0,0,0,1,1,0,9.839971133289719,0,0,0,54.1,59.11,6,1,0,0,9,4,0,374,0,0,0 +7733,9493,17307,-9,17306,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-928.4056330550208,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,0,374,0,0,0 +7734,9494,17308,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,4,0,7.061384900642448,7.424695151648966,3,0,0,0,-9,0,-997.93908487231,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.35958486682633,7.102294072043304,0,0,45.81,38.32,6,1,0,0,12,3,1,808,0,0,0 +7735,9495,17309,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,5,8.469137430447541,8.376507326357391,0,3,0,0,0,-9,0,-1004.26170008385,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,42,35,15,1,5,-9,0,11.07186168531994,11.07186168531994,0,0,0,0,0,0,0,0,0,0,7.106611157772238,0,0,0,35.53,63.81,5,1,0,0,11,4,0,667,0,0,0 +7736,9496,17310,17313,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,3,8.803896929871195,8.890169009663385,0,2,0,-9,1,-9,-13,-57.10354890017484,-9,0,0,58,2,3,1,-9,2,2019,1,3,9,0,40,0,15,1,0,1,0,19.85836716471173,19.85836716471173,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.6,44.36,5,1,0,0,12,4,1,735.25,0,0,0 +7736,9496,17311,-9,17310,17313,4,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-976.9228653760948,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,12,4,1,735.25,0,0,0 +7736,9496,17312,-9,17310,17313,1,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1137.987134066465,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,735.25,0,0,0 +7736,9496,17313,17310,-9,-9,3,1,1,58,1,0,2,0,2,-9,1,1,0,3,5.074396108126339,5.274812079343696,0,2,0,-9,1,-9,13,-86.74349495531513,-9,0,0,45,2,3,1,2,2,2019,1,2,15,3,60,0,15,1,3,1,0,.3455679839095158,.3455679839095158,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,12,4,1,735.25,0,0,0 +7737,9497,17314,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,4,0,7.263755839221943,7.170503645336146,3,0,0,0,-9,0,-933.1622502396442,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.919638155903035,7.393044763175754,0,0,54.2,57.49,6,1,0,0,6,3,1,1757,0,0,0 +7738,9498,17315,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,2,1,0,2,6.930804479170871,7.318922827719441,6.24759273989387,3,0,0,0,-9,0,-1067.501405325476,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,16,0,15,1,0,-9,0,8.72506554059575,8.72506554059575,0,0,0,0,0,0,0,1,1,0,6.707542796790598,6.461688762126297,0,0,65.62,37.83,6,1,0,1,7,3,1,1949,0,0,0 +7739,9499,17316,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.791754964020353,9.039117450080935,0,3,0,0,0,-9,0,-881.7475714961865,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,40,40,15,1,0,-9,0,24.17884248881587,24.17884248881587,0,0,0,0,0,0,0,0,0,0,3.018353160379106,0,0,0,45.2,57.55,5,1,0,0,12,5,1,1762,0,0,0 +7740,9500,17317,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,4,5.820836222571609,6.02649266730612,4.478577692041203,3,0,0,0,-9,0,-1033.085796742451,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.922419231665414,4.336120009621173,0,0,52.21,51.53,7,1,0,0,10,2,0,199,0,0,0 +7741,9501,17318,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,2,0,6.001635258507758,6.32556190854641,3,0,0,0,-9,0,-1003.314827104302,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.685949168283212,6.226228185897972,0,0,52.6,34.11,5,1,0,0,2,2,1,263,0,0,0 +7742,9502,17319,17320,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,4,6.638601625857299,7.138205376049132,0,2,0,-9,12,0,2,63.85822736175393,0,0,1,35,1,5,1,3,2,2019,1,1,11,0,20,19,15,1,0,1,0,5.877811756978216,5.877811756978216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,51.55,4,1,0,0,8,4,0,608.5,0,0,0 +7742,9502,17320,17319,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,5,8.584790632391872,8.640622117412873,0,2,0,-9,12,0,-2,-168.8379545539616,0,0,0,37,1,4,1,1,1,2019,1,2,9,0,48,60,15,1,0,1,0,14.58699817760844,14.58699817760844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,8,4,0,608.5,0,0,0 +7742,9502,17321,-9,17319,17320,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.7574232463979,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,4,0,608.5,0,0,0 +7742,9502,17322,-9,17319,17320,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.1820326139919,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,4,0,608.5,0,0,0 +7743,9503,17323,17324,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,4,9.628386910862854,9.349918437182449,0,1,0,-9,27,0,12,-11.06573618739101,0,0,0,49,1,4,1,3,2,2019,1,2,10,0,38,44,15,1,0,1,0,40.46196030878739,40.46196030878739,0,0,0,0,0,0,0,0,0,0,5.673367723907149,0,0,0,48.87,58.55,6,1,0,0,12,5,1,482,0,0,0 +7743,9503,17324,17323,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.96674527376533,9.149040270621642,0,1,0,-9,27,0,-12,-31.67431975326945,0,0,0,61,1,4,1,2,2,2019,1,1,12,0,43,39,15,1,0,1,0,26.30287911805332,26.30287911805332,0,0,0,0,0,0,0,0,0,0,4.02041917851029,0,0,0,31.04,61.28,5,1,0,0,12,5,1,482,0,0,0 +7744,9504,17325,17326,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,5,8.5049787996133,8.364856068633488,0,1,0,-9,32,0,-5,65.53397592227398,0,0,0,59,1,3,1,2,2,2019,1,1,7,0,38,37,15,1,0,1,0,19.30823428565471,19.30823428565471,0,0,0,0,0,0,0,0,0,0,2.035088384581975,0,0,0,58.05,54.52,7,1,0,0,7,5,1,466.5,0,0,0 +7744,9504,17326,17325,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,3,9.178436359711499,9.140780016844975,0,1,0,-9,8,0,5,16.9278353494889,0,0,0,54,2,5,1,-9,-9,2019,1,2,6,0,47,38,15,1,0,1,0,22.30665419363245,22.30665419363245,0,0,0,0,0,0,0,0,0,0,.6916983979385374,0,0,0,53.98,50.87,6,1,0,0,7,5,1,466.5,0,0,0 +7744,9505,17327,17328,17325,17326,3,1,0,25,1,0,0,0,1,-9,2,1,0,5,8.361905245522427,8.243906898116037,0,1,0,-9,2,0,-6,75.41280159404648,-9,1,1,31,2,3,1,2,1,2019,1,5,12,0,37,0,15,1,0,1,0,10.34401779049345,10.34401779049345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,7,5,1,1875,0,0,0 +7744,9505,17328,17327,-9,-9,5,1,1,31,1,0,0,0,2,-9,2,1,0,3,8.355966564902692,8.320988414189882,0,1,0,-9,2,0,6,53.58943905314259,0,0,0,25,1,5,1,-9,-9,2019,1,3,4,0,40,40,15,1,0,1,0,10.08043124820267,10.08043124820267,0,0,0,0,0,0,0,0,0,0,2.469423423805468,0,0,0,57.33,53.46,6,1,0,0,7,5,1,1875,0,0,0 +7745,9506,17329,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,2,0,5.758042199259937,5.829286214426769,3,0,0,0,-9,0,-982.102844306442,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.147422563865467,0,0,0,0,37.27378020992992,1,1,0,7.50887750917761,5.764132964026457,0,0,43.61,42.78,6,1,0,0,7,2,1,1222,0,0,0 +7746,9507,17330,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,3,7.342963882669741,7.218524292401549,0,3,0,0,0,-9,0,-1019.64065090873,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,15,15,15,1,0,-9,0,10.7469580233381,10.7469580233381,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,7,1,0,0,12,3,0,193,0,0,0 +7747,9508,17331,-9,17333,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.524854773797,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,1,0,570,0,0,0 +7747,9508,17332,-9,17333,-9,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-993.2636608561362,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,1,0,570,0,0,0 +7747,9508,17333,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,6,3,0,3,0,4.848607702143775,5.121096985124974,4,0,0,0,-9,0,-1048.431334013346,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.582859811408481,0,23.99238677840851,3,36.91,59.9,4,1,0,0,4,1,0,570,0,0,0 +7748,9509,17334,17335,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,2,7.259832913881452,7.225053663250263,0,1,0,-9,25,0,-2,-34.19137334621281,0,0,0,49,1,4,1,3,3,2019,1,1,14,2,16,0,15,1,2,1,0,9.904291695632615,9.904291695632615,0,0,0,0,0,0,0,0,0,0,0,0,72.74245746862773,3,51.38,20.77,3,1,0,0,10,5,1,507.5,0,0,0 +7748,9509,17335,17334,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,4,9.367864058215918,9.37709629072193,0,1,0,-9,25,0,2,-3.685729636753339,0,0,0,47,1,2,1,2,2,2019,1,2,10,0,50,44,15,1,0,1,0,37.33914916406012,37.33914916406012,0,0,0,0,0,0,0,0,0,0,3.471047430093656,0,0,3,59.29,49.68,6,1,0,0,10,5,1,507.5,0,0,0 +7749,9510,17336,17337,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,7.324009794660739,7.320991131254644,1,0,-9,51,0,0,-22.62792028189662,0,0,0,69,2,3,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.510095433395887,7.446861194101638,0,0,38.24,31.29,4,1,0,0,5,2,1,603.5,0,0,0 +7749,9510,17337,17336,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,0,-69.67662560785598,0,0,0,69,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.447822396203832,0,17.36318096798336,1,55.99,39.1,6,1,0,0,5,2,1,603.5,0,0,0 +7750,9511,17338,17339,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.692949795114775,8.582409281519991,0,1,0,-9,9,0,-8,-121.5787514273578,0,0,0,62,2,3,3,3,3,2019,2,1,12,1,29,29,15,1,1,4,0,18.77085072810065,18.77085072810065,0,0,0,0,0,0,0,1,1,0,4.526817504244612,0,0,0,43.2,59.97,6,1,0,0,9,5,1,478,0,0,0 +7750,9511,17339,17338,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,7.649389616719533,7.483135651275035,1,0,-9,9,0,8,-148.1080433985118,0,0,0,54,1,4,1,3,3,2019,3,2,16,4,0,10,15,4,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9018054166168247,7.448807631579619,0,0,47.02,44.6,5,1,0,0,9,5,1,478,0,0,0 +7750,9512,17340,-9,17338,17339,4,1,1,24,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-994.0773572515639,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,33,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.870000000000001,48.95,3,1,1,1,9,1,1,723,0,0,0 +7751,9513,17341,17342,-9,-9,1,1,1,43,1,0,1,0,2,-9,1,1,0,3,5.716775221725528,5.918052460243604,0,2,0,-9,25,0,1,-54.84874924496754,0,0,0,42,2,4,3,3,3,2019,2,2,11,0,35,30,15,1,0,3,0,1.237649197218049,1.237649197218049,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,3,0,1,2,2,1,2386.5,0,0,0 +7751,9513,17342,17341,-9,-9,2,1,0,42,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,9,0,-1,-127.6264943468396,-9,0,1,43,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,45.75,6,3,0,0,2,2,1,2386.5,0,0,0 +7751,9514,17343,-9,17342,17341,3,1,1,21,2,0,1,1,2,0,7,2,0,4,7.411360207267813,7.34726568438724,0,3,0,0,0,-9,0,-995.3051413828073,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,16,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,60.5,5,3,0,0,2,3,1,1008,0,0,0 +7751,9515,17344,-9,17342,17341,4,1,0,20,2,0,1,0,2,1,2,1,0,4,7.303552286317451,7.244219889675021,0,3,0,0,0,-9,0,-1006.824477431762,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,20,0,15,1,0,-9,1,6.518426421100995,6.518426421100995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,0,0,2,3,1,306,0,0,0 +7751,9516,17345,-9,17342,17341,5,1,0,18,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-878.0078076938545,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.99,53.44,5,3,0,0,2,3,1,881,0,0,0 +7752,9517,17346,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,6.320143456223279,6.192990617885852,3,0,0,0,-9,0,-996.7946261205868,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.021726181327486,5.831358470267188,0,0,52,54.51,6,1,0,0,2,2,1,444,0,0,0 +7752,9518,17347,-9,17346,-9,2,1,1,49,2,0,0,0,2,-9,1,1,0,3,5.843571969287289,5.621349975033729,0,3,0,0,0,-9,0,-1075.084698650755,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,22,25,15,1,0,-9,1,1.814718107529395,1.814718107529395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.2,48.95,6,1,0,0,2,2,1,1956,0,0,0 +7753,9519,17348,17349,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,6.820824120474977,7.097025399442225,1,0,-9,10,0,3,50.26327774178561,0,0,0,62,3,3,3,3,3,2019,4,2,9,0,0,38,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.823608882704753,7.235489711977337,2.753897383274441,3,56.04,51.3,5,1,0,0,11,2,1,639,0,0,0 +7753,9519,17349,17348,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,3,0,6.092076963205278,5.870492379025809,1,0,-9,10,0,-3,11.2978019184359,0,0,0,65,1,3,3,3,-9,2019,4,1,13,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.293664947737505,14.44894760177161,3,48.14,42.69,5,1,0,0,11,2,1,639,0,0,0 +7753,9520,17350,-9,17349,17348,3,1,0,27,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1043.202359127563,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,23,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.6413881476432073,0,0,0,39.98,22.62,3,1,0,0,11,1,1,229,0,0,0 +7754,9521,17351,-9,17354,17355,4,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.2404189716558,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,681.4,0,0,0 +7754,9521,17352,-9,17354,17355,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.7736319004623,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,681.4,0,0,0 +7754,9521,17353,-9,17354,17355,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1048.521340630424,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,5,1,0,0,12,5,1,681.4,0,0,0 +7754,9521,17354,17355,-9,-9,2,1,0,40,1,1,3,0,2,-9,2,1,0,2,7.256990593138633,6.809450853721024,0,2,0,-9,9,0,2,25.57330479488087,0,0,1,38,1,4,1,-9,-9,2019,1,1,13,3,13,14,15,1,3,1,0,11.02975420824469,11.02975420824469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.64,35.91,4,1,0,0,12,5,1,681.4,0,0,0 +7754,9521,17355,17354,-9,-9,1,1,1,38,1,1,3,0,1,-9,2,1,0,4,9.434279867253007,9.504853521783971,0,2,0,-9,9,0,-2,9.205447760871101,0,0,0,40,2,2,1,-9,-9,2019,1,2,8,0,49,49,15,1,0,1,0,29.16241030764128,29.16241030764128,0,0,0,0,0,0,0,0,0,0,4.742771567274898,0,0,0,46.44,59.62,5,1,0,0,12,5,1,681.4,0,0,0 +7755,9522,17356,-9,-9,-9,1,1,1,35,2,1,1,0,1,-9,2,1,0,4,8.717846888106003,8.63808641777025,0,2,0,-9,6,0,-1,-171.6225799303025,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,8,0,36,36,15,1,0,-9,0,13.93173114928206,13.93173114928206,0,0,0,0,0,0,0,1,1,0,9.129109383798806,0,0,0,52.37,56.93,6,1,0,0,12,5,1,679,0,0,0 +7755,9522,17357,-9,-9,17356,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.17250272371,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,5,1,679,0,0,0 +7755,9523,17358,-9,-9,-9,2,1,1,36,2,1,1,0,1,-9,2,1,0,4,7.726035691439542,7.938052419620138,0,2,0,-9,6,0,1,-170.0744415011311,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,7,0,40,37,15,1,0,-9,0,8.732379588202853,8.732379588202853,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,6,1,0,0,12,5,1,346,0,0,0 +7756,9524,17359,17360,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,45,0,-6,17.73615906206897,0,0,0,78,2,4,3,3,3,2019,4,2,16,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.3527133174626889,0,0,0,42.2,25.93,3,1,0,0,6,2,1,1621.5,0,0,0 +7756,9524,17360,17359,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,7.320820702516985,7.799486455768443,1,0,-9,45,0,6,72.04500732275977,0,0,0,72,2,2,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.319606799376461,7.486023859391616,0,0,57.16,56.15,6,1,0,0,6,2,1,1621.5,0,0,0 +7757,9525,17361,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,3,8.159999858399091,7.968520010882446,0,3,0,0,0,-9,0,-1137.469324831412,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,40,40,15,1,0,-9,0,7.095034409824495,7.095034409824495,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.73,57.57,3,5,0,0,8,4,0,785,0,0,0 +7757,9526,17362,-9,17361,-9,2,1,1,27,2,0,0,0,1,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-934.218319404183,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.1,41.97,1,2,0,0,8,1,0,246,0,0,0 +7758,9527,17363,17364,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,4,8.870285707043852,8.878859520338521,0,2,0,-9,22,0,4,47.4550621911984,-9,0,0,41,2,2,3,2,2,2019,2,1,8,0,37,0,15,1,0,3,0,22.59885631196587,22.59885631196587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,57.46,5,1,0,0,9,4,0,770.3333333333334,0,0,0 +7758,9527,17364,17363,-9,-9,1,1,0,41,1,0,1,0,2,-9,8,3,1,2,5.861269837546082,5.648705215232251,0,2,0,-9,22,0,-4,24.016735524756,0,0,1,45,1,4,1,2,2,2019,3,2,27,11,15,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.49,53.12,2,2,0,1,9,4,0,770.3333333333334,0,0,0 +7758,9527,17365,-9,17364,17363,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1110.899574094967,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,9,4,0,770.3333333333334,0,0,0 +7759,9528,17366,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,4,7.964909575332521,8.05817818543137,0,3,0,0,0,-9,0,-969.041827081414,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,22,22,15,1,0,-9,0,13.08701581779916,13.08701581779916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,11,3,0,565,0,0,0 +7759,9529,17367,-9,17366,-9,2,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.489310183423067,7.528485313907504,0,3,0,0,0,-9,0,-925.0942234129698,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,40,37,15,1,0,-9,1,4.543557962122967,4.543557962122967,0,0,0,0,0,0,0,0,0,0,1.686683716543272,0,0,0,56.77,52.22,6,1,0,0,11,3,0,1113,0,0,0 +7760,9530,17368,17370,-9,-9,3,1,1,32,1,0,1,0,2,-9,2,1,0,3,8.903003727239676,8.923942317189216,0,2,0,-9,2,0,3,-4.998891423135703,-9,0,0,29,2,3,1,-9,-9,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.19,51.54,5,1,0,0,5,5,0,522.3333333333334,0,0,0 +7760,9530,17369,-9,17370,17368,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.681869336852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,0,522.3333333333334,0,0,0 +7760,9530,17370,17368,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,3,7.676809986044423,7.441084463696233,5.58098517801428,2,0,-9,2,0,-3,-24.9138663247445,0,1,1,32,2,3,1,-9,-9,2019,1,3,12,0,30,30,15,1,0,1,0,5.522992376591938,5.522992376591938,0,0,0,0,0,0,0,1,1,0,6.012370378881153,0,0,0,29.35,54.09,6,1,0,0,5,5,0,522.3333333333334,0,0,0 +7761,9531,17371,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,4,7.874469933515319,8.038893936876576,0,3,0,0,0,-9,0,-1085.922679028148,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,53,15,1,0,-9,0,10.94745861137378,10.94745861137378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.33,52.23,4,1,0,0,1,4,1,2989,0,0,0 +7762,9532,17372,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,6.410892711923379,6.303517988192676,3,0,0,0,-9,0,-905.3712592969168,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.685053472950407,0,0,47.47,47.17,6,1,0,0,9,2,1,384,0,0,0 +7763,9533,17373,17374,17375,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,9.087805887849177,9.359341141220549,1,0,-9,26,0,-10,-46.18118249199782,0,0,0,69,1,4,3,3,2,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.75497507943251,9.364581697026757,41.54950766435719,3,32.42,64.81,5,1,0,0,6,5,1,482,0,0,0 +7763,9533,17374,17373,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,27,0,10,-20.97397123236331,0,0,0,59,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.712563741418884,0,27.02517946216793,3,57.16,56.15,6,1,0,0,6,5,1,482,0,0,0 +7763,9534,17375,-9,-9,-9,3,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,5.235169052086627,5.273306523035973,3,0,0,0,-9,0,-979.9395272822142,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,8.047769324165145,0,0,0,1,1,0,1.654934203924145,5.110399634964722,0,0,22.29,36.05,5,1,0,0,6,2,1,898,0,0,0 +7764,9535,17376,17377,-9,-9,1,1,0,48,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,14,0,-2,0,0,0,0,50,2,4,3,2,2,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.82,18.54,3,1,0,0,12,1,0,371.5,0,0,0 +7764,9535,17377,17376,-9,-9,2,1,1,50,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,14,0,2,0,0,0,0,48,2,1,3,2,2,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.8303436024731,2,57.16,56.15,6,1,0,0,12,1,0,371.5,0,0,0 +7765,9536,17378,17379,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,7,0,1,-37.44888155081919,0,0,0,67,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,6,2,1,1069,0,0,0 +7765,9536,17379,17378,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,2,6.294069288355102,6.533275629745575,0,1,0,-9,7,0,-1,24.46609019180386,0,0,0,68,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,42.07,5,1,0,0,6,2,1,1069,0,0,0 +7766,9537,17380,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-920.8618822994579,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7694841481823236,0,0,0,41.86,20.09,6,1,1,0,11,1,1,1295,0,0,0 +7766,9538,17381,-9,17380,-9,2,1,1,31,2,0,0,0,1,-9,2,1,0,3,8.651661186920197,8.440634893664638,0,3,0,0,0,-9,0,-1102.347093832193,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,47,42,15,1,9,-9,1,10.9488835191588,10.9488835191588,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.96,48.01,5,1,0,0,11,5,1,71,0,0,0 +7767,9539,17382,17383,-9,-9,2,1,1,40,1,0,3,0,1,-9,2,1,0,4,9.58025292243012,9.581614244286422,0,2,0,-9,18,0,0,-147.5141301690727,0,0,0,40,1,3,1,2,2,2019,1,1,14,4,70,55,15,1,4,1,0,25.06277016690379,25.06277016690379,0,0,0,0,0,0,0,1,1,0,3.891402326342024,0,0,0,36.75,54.56,3,3,0,0,8,5,1,932.3333333333334,0,0,0 +7767,9539,17383,17382,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,3,8.090154191402906,7.927027915818908,0,2,0,-9,18,0,0,-31.87060958248933,0,0,1,40,1,4,1,2,2,2019,1,2,10,0,26,13,15,1,0,1,0,12.2467625842563,12.2467625842563,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,3,0,0,8,5,1,932.3333333333334,0,0,0 +7767,9539,17384,-9,17383,17382,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.3808370936179,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,5,1,932.3333333333334,0,0,0 +7768,9540,17385,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,4,8.203898362271945,8.167859318010414,4.971531591895009,3,0,0,0,-9,0,-923.3662069666867,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,40,42,15,1,5,-9,0,11.31200812962933,11.31200812962933,0,0,0,0,0,0,0,0,0,0,7.963654497907749,4.812940672123898,0,0,25.44,65.40000000000001,6,1,0,0,8,4,1,220,0,0,0 +7769,9541,17386,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,10,3,0,4,0,7.566487767573882,7.433533682865759,3,0,0,0,-9,0,-1058.369493105239,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.384026349230634,7.612446070076111,0,0,55.76,52.64,6,1,0,0,7,3,1,894,0,0,0 +7770,9542,17387,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,6.019703934135657,6.185767775408575,3,0,0,0,-9,0,-1012.510597926619,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.961260855742339,6.442180940032116,0,0,50.48,42.09,6,1,0,0,2,2,0,2111,0,0,0 +7771,9543,17388,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1079.082055290619,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.9,27.62,4,1,0,0,4,1,0,1234,0,0,0 +7772,9544,17389,17390,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,6.583730099052855,6.628783275155918,1,0,-9,8,0,-1,190.7392320983385,0,0,0,75,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.667549711762129,0,0,57.16,56.15,6,1,0,0,13,2,1,494.5,0,0,0 +7772,9544,17390,17389,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,1,93.29837378110138,0,0,0,74,3,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.69,43.79,6,1,0,0,13,2,1,494.5,0,0,0 +7773,9545,17391,-9,17394,17392,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.36093125672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,369.5,0,0,0 +7773,9545,17392,17394,-9,-9,2,1,1,30,1,1,2,0,2,-9,2,1,0,3,8.46845777917232,8.191241521606662,0,2,0,-9,8,0,-1,-18.71158367461474,0,0,0,31,2,4,1,1,2,2019,1,1,11,0,12,0,15,1,0,1,0,39.59842960574672,39.59842960574672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,1,0,0,12,4,1,369.5,0,0,0 +7773,9545,17393,-9,17394,17392,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.802549392009,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,369.5,0,0,0 +7773,9545,17394,17392,-9,-9,1,1,0,31,1,1,2,0,2,-9,2,1,0,4,7.18369523446621,6.995274811059604,4.748590207651772,2,0,-9,8,0,1,-28.62863008610336,0,0,1,30,2,3,1,2,2,2019,1,2,13,2,14,15,15,1,2,1,0,10.74382881171771,10.74382881171771,0,0,0,0,0,0,0,1,1,0,3.851362356432584,0,0,0,44.42,51.06,3,1,0,0,12,4,1,369.5,0,0,0 +7774,9546,17395,-9,-9,-9,1,1,0,35,2,0,3,0,2,-9,6,3,0,3,0,7.498237393568737,7.732444255107096,4,0,-9,0,-9,0,-1077.928397174665,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.699590702804205,0,3.40704056209675,3,39.05,59.16,6,1,0,0,12,2,0,765,0,0,0 +7774,9546,17396,-9,17395,-9,4,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-871.1925190643444,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,765,0,0,0 +7774,9546,17397,-9,17395,-9,2,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-957.6813317151112,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,765,0,0,0 +7774,9546,17398,-9,17395,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-946.8539832379206,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,2,0,765,0,0,0 +7775,9547,17399,-9,17400,17401,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.03237094967,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,1,1,754.6666666666666,0,0,0 +7775,9547,17400,17401,-9,-9,2,1,0,36,1,1,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-7,0,0,0,1,43,2,4,3,-9,-9,2019,4,1,8,1,0,35,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.3811829851144615,0,0,0,54.2,57.49,6,1,0,0,7,1,1,754.6666666666666,0,0,0 +7775,9547,17401,17400,-9,-9,1,1,1,43,1,1,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,6,0,7,0,0,0,0,36,2,4,3,-9,-9,2019,4,2,5,1,0,50,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.053934729530599,0,0,0,57.16,56.15,6,1,1,0,7,1,1,754.6666666666666,0,0,0 +7776,9548,17402,17403,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,1,0,7.370236858008328,7.578060845655362,1,0,-9,34,0,2,-66.6900697673544,0,0,0,67,2,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.189194492961561,7.218652699311491,0,0,38.53,46.54,4,1,0,0,10,3,1,2002,0,0,0 +7776,9548,17403,17402,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,4,6.336642293149152,6.635116320861097,4.891408189678907,1,0,-9,35,0,-2,101.9232730889097,0,0,0,69,1,1,3,3,3,2019,2,1,17,7,9,16,15,1,7,4,0,8.476683195291846,8.476683195291846,0,0,0,0,0,0,0,1,1,0,1.328044629304428,4.915008625717786,11.4119890165733,1,32.13,63.81,3,1,0,0,10,3,1,2002,0,0,0 +7776,9549,17404,-9,17403,17402,3,1,1,29,2,0,0,0,1,-9,2,1,0,4,8.348016573424983,8.398956589378443,0,3,0,-9,0,-9,0,-1041.010327635666,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,60,0,15,1,1,-9,1,9.03329954551673,9.03329954551673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,10,4,1,375,0,0,0 +7777,9550,17405,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-961.6214426882603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,109.3543537592258,3,39.03,33.62,5,1,0,1,13,1,0,2014,0,0,0 +7777,9551,17406,-9,-9,17405,2,1,1,21,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1016.847101892995,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,1,0,13,1,0,463,0,0,0 +7778,9552,17407,-9,-9,-9,1,1,0,59,2,0,0,0,3,-9,2,1,0,5,7.678389037239246,7.766886568801698,0,3,0,0,0,-9,0,-1006.967928912713,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,10,40,37,15,1,10,-9,0,7.721391715604662,7.721391715604662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.67,65.95,6,1,0,0,13,3,0,1107,0,0,0 +7779,9553,17408,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,2,8.118888437551687,7.976435685889091,0,3,0,0,0,-9,0,-1033.228007086939,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,50,15,1,0,-9,0,8.82768502863682,8.82768502863682,0,0,0,0,0,0,0,1,1,0,5.58697760172774,0,0,0,45.3,44.46,3,1,0,0,7,4,1,770,0,0,0 +7780,9554,17409,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-1053.298010117915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,5,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.13,40.19,5,1,0,0,10,1,0,1329,0,0,0 +7781,9555,17410,-9,17413,17411,3,1,0,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.583649186936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,0,1207,0,0,0 +7781,9555,17411,17413,-9,-9,1,1,1,29,1,1,3,0,2,-9,2,1,0,2,7.82336000462087,7.946862206394454,0,2,0,-9,6,0,1,-172.662514440827,0,1,0,28,2,3,1,2,2,2019,1,2,9,0,48,48,15,1,0,1,0,8.158251108811736,8.158251108811736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.71,46.15,4,1,0,0,2,3,0,1207,0,0,0 +7781,9555,17412,-9,17413,17411,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1067.786222679948,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,3,0,1207,0,0,0 +7781,9555,17413,17411,-9,-9,2,1,0,28,1,1,3,0,2,-9,2,1,0,3,7.053625673655527,7.43106390722323,6.54852411145824,2,0,-9,6,0,-1,50.76243845563302,0,1,1,29,2,2,1,-9,-9,2019,1,1,12,0,35,50,15,1,0,1,0,4.0859589441045,4.0859589441045,0,0,0,0,0,0,0,1,1,0,6.047002022521124,0,7.164596994466526,3,42.72,52.25,6,1,0,0,2,3,0,1207,0,0,0 +7781,9555,17414,-9,17413,17411,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.6412741468278,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,0,1207,0,0,0 +7782,9556,17415,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,3,0,7.251032502482821,7.335564476604512,3,0,0,0,-9,0,-1007.713360973817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,13.3871222612707,0,0,1,1,0,1.022464710571315,7.420240722999979,0,0,47.42,41.03,6,1,0,0,13,3,1,1724,0,0,0 +7783,9557,17416,17417,-9,-9,3,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.414655718444131,8.629261763697839,0,1,0,-9,4,0,-1,-124.4309508201107,0,1,0,28,2,4,1,-9,-9,2019,1,1,11,0,40,43,15,1,0,1,0,15.49748132348966,15.49748132348966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.2,38.34,6,1,0,0,2,5,1,1211,0,0,0 +7783,9557,17417,17416,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,4,8.606222942323932,8.633614412806459,0,1,0,-9,4,0,1,-24.80349388711688,0,1,1,27,2,4,1,2,1,2019,1,3,6,0,43,47,15,1,0,1,0,14.31198735833163,14.31198735833163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,2,5,1,1211,0,0,0 +7783,9558,17418,-9,-9,-9,2,1,0,26,2,0,0,0,2,-9,7,2,0,3,7.982747338400812,7.897981799220196,0,3,0,0,0,-9,0,-873.8565475534195,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,57,44,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,6,1,0,0,2,3,1,1215,0,0,0 +7784,9559,17419,-9,17420,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-877.045043305189,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,0,481,0,0,0 +7784,9559,17420,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,5,6.839156875723793,6.786187466126977,0,4,0,0,0,-9,0,-973.2140346527748,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,16,15,1,0,-9,0,7.583794984999823,7.583794984999823,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,6,1,0,0,4,2,0,481,0,0,0 +7785,9560,17421,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,2,1,0,3,8.190173582662569,7.685692938907447,0,4,0,0,0,-9,0,-952.8275936059935,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,40,15,1,1,-9,0,8.64900367006768,8.64900367006768,0,0,0,0,0,0,0,1,1,0,0,0,4.036135329251943,3,54.37,54.8,4,1,0,0,1,3,0,246.5,0,0,0 +7785,9560,17422,-9,17421,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1052.84334861145,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,1,3,0,246.5,0,0,0 +7786,9561,17423,17424,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,7.651689403572346,7.51151921250849,1,0,-9,9,0,0,-23.18423245447616,0,0,0,79,3,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.462654669409949,7.614624414585749,0,0,65.77,35,7,1,0,0,7,3,1,446.5,0,0,0 +7786,9561,17424,17423,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,0,-102.7700845432896,0,0,0,79,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,6.310538388109734,2.036415157821009,1.034516863983683,0,0,1,1,0,0,0,0,0,58.64,44.67,5,1,0,0,7,3,1,446.5,0,0,0 +7786,9562,17425,-9,17424,17423,3,1,1,52,2,0,0,0,2,-9,2,1,0,4,8.437435017726779,8.54495411940697,0,3,0,0,0,-9,0,-965.1356224088582,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,60,60,15,1,0,-9,1,9.336796851340505,9.336796851340505,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,7,5,1,566,0,0,0 +7787,9563,17426,17427,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,5,7.944022142061922,7.793807570137142,0,2,0,-9,27,0,-2,-55.91346670446146,0,0,0,49,1,3,1,2,2,2019,1,1,8,0,32,69,15,1,0,1,0,11.64728873794209,11.64728873794209,0,0,0,0,0,0,0,1,1,0,0,0,3.898399419618747,3,47.88,48.37,6,1,0,0,2,4,1,323,0,0,0 +7787,9563,17427,17426,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,3,8.805429518144072,9.098383331585689,0,2,0,-9,27,0,2,40.77705185191002,0,0,0,47,2,5,1,3,3,2019,1,2,11,0,42,47,15,1,0,1,0,20.0580787128145,20.0580787128145,0,0,0,0,0,0,0,1,1,0,0,0,3.063082067937819,3,31.78,53.02,6,1,0,0,2,4,1,323,0,0,0 +7787,9563,17428,-9,17426,17427,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1160.232285727031,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,2,4,1,323,0,0,0 +7787,9563,17429,-9,17426,17427,3,1,0,17,2,0,2,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1004.005864982695,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,21,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.760275235336016,3,35.52,46.77,3,1,0,0,2,4,1,323,0,0,0 +7788,9564,17430,-9,-9,-9,3,1,1,31,2,0,0,0,1,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-1062.776110887671,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,45.14,5,3,0,0,8,1,1,1583,0,0,0 +7789,9565,17431,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,4,7.869324443153345,7.825171068798969,0,3,0,0,0,-9,0,-1134.920554433922,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,15,4,30,35,15,1,4,-9,0,10.19547311235695,10.19547311235695,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,10,3,0,99,0,0,0 +7790,9566,17432,-9,17433,17434,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.3700953146612,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,4,1,936.6666666666666,0,0,0 +7790,9566,17433,17434,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,3,7.595674200387645,7.629022896216314,0,2,0,-9,9,0,-4,-93.86815702467004,0,0,1,36,3,3,1,2,2,2019,1,1,7,0,23,23,15,1,0,1,0,10.78513349518285,10.78513349518285,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,9,4,1,936.6666666666666,0,0,0 +7790,9566,17434,17433,-9,-9,1,1,1,36,1,0,1,0,3,-9,2,1,0,3,8.040161011718887,8.336523189652533,0,2,0,-9,9,0,4,-92.49358460439746,0,0,0,32,2,3,1,2,3,2019,1,2,7,0,37,40,15,1,0,1,0,13.19760693398946,13.19760693398946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,9,4,1,936.6666666666666,0,0,0 +7791,9567,17435,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,3,9.339429637452154,9.061185595120213,0,3,0,0,0,-9,0,-944.0104168624949,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,55,15,1,0,-9,0,27.01402185325744,27.01402185325744,0,0,0,0,0,0,0,1,1,0,4.403754445780965,0,0,0,47.7,47.03,5,4,0,0,8,5,1,731,0,0,0 +7792,9568,17436,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,2,1,0,4,8.010454800419613,8.378364923202044,0,3,0,0,0,-9,0,-1083.625997727378,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,40,15,1,1,-9,0,15.09490575596741,15.09490575596741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,1,0,0,1,4,0,3671,0,0,0 +7792,9569,17437,-9,17436,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.53203831087265,7.167452315207428,0,3,0,0,0,-9,0,-1096.386675321126,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,30,34,15,1,2,-9,1,6.024685888089402,6.024685888089402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,1,0,0,1,3,0,499,0,0,0 +7793,9570,17438,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,5,8.592091380533249,8.668708527045037,0,3,0,-9,0,-9,0,-1043.284062524934,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,37,0,15,1,0,-9,0,21.29192005078109,21.29192005078109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,12,5,0,119,0,0,0 +7794,9571,17439,-9,-9,-9,1,1,0,44,3,0,1,0,3,-9,2,1,0,4,8.151757963338934,8.110473405225568,0,4,0,-9,0,1,0,-958.0912782117905,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,4,35,35,15,1,4,-9,0,14.57437392063702,14.57437392063702,0,0,0,0,0,0,0,1,1,0,.5982660915385597,0,0,0,45.85,61.26,5,1,0,0,10,4,0,2235,0,0,0 +7794,9571,17440,-9,17439,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-974.2255741730061,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,10,4,0,2235,0,0,0 +7795,9572,17441,-9,-9,-9,4,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.767195494336123,7.889381611700252,0,3,0,0,0,-9,0,-889.7677257470104,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,8,40,15,1,0,-9,1,38.62676378211179,38.62676378211179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,3,0,0,7,3,1,270,0,0,0 +7795,9573,17442,-9,-9,-9,6,1,0,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1043.841285290939,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.585892455486326,0,0,0,60.02,56.42,7,3,0,0,7,1,1,747,0,0,0 +7795,9574,17443,-9,-9,-9,7,1,1,22,2,0,0,0,1,1,2,1,0,5,8.396621187310735,8.690291091929012,0,3,0,0,0,-9,0,-1081.787569820765,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,0,15,1,0,-9,1,11.73300749634608,11.73300749634608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,3,0,0,7,4,1,797,0,0,0 +7796,9575,17444,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,2,1,0,4,7.480913729628997,8.620417173860137,7.904840590384588,3,0,0,0,-9,0,-999.096336473626,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.770197616150093,0,0,61.68,49.95,6,1,0,0,12,4,1,452,0,0,0 +7797,9576,17445,-9,17447,17446,2,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1059.436505785873,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,5,1,1295.25,0,0,0 +7797,9576,17446,17447,-9,-9,4,1,1,34,1,0,2,0,1,-9,2,1,0,5,9.295099823080401,8.951501239040788,0,2,0,1,4,-9,-3,-173.3351973389484,0,0,0,37,1,4,1,3,3,2019,1,1,10,1,46,70,15,1,1,1,0,31.69716672197819,31.69716672197819,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,3,0,0,6,5,1,1295.25,0,0,0 +7797,9576,17447,17446,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,7.733458058847146,7.726888309304483,0,2,0,-9,4,-9,3,-101.4873784086642,-9,0,1,34,1,5,1,3,2,2019,1,4,21,9,47,0,15,1,9,1,0,6.188685172456593,6.188685172456593,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.69,62.96,5,3,0,0,6,5,1,1295.25,0,0,0 +7797,9576,17448,-9,17447,17446,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1214.551526312743,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,5,1,1295.25,0,0,0 +7798,9577,17449,17450,-9,-9,1,1,0,47,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,3,0,-10,0,0,0,0,57,2,2,3,2,2,2019,4,2,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.80541685473941,3,19.99,27.44,2,1,0,1,2,1,0,551,0,0,0 +7798,9577,17450,17449,-9,-9,2,1,1,57,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,3,0,10,0,0,0,0,47,2,1,3,-9,-9,2019,4,1,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.88112347996464,2,52.99,27.31,5,1,0,1,2,1,0,551,0,0,0 +7799,9578,17451,17453,-9,-9,1,1,1,50,1,0,1,0,3,-9,3,3,0,1,0,0,0,2,0,-9,6,0,0,0,0,0,0,50,3,1,3,3,2,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.51,18.49,3,1,1,0,13,1,1,811.3333333333334,0,0,0 +7799,9578,17452,-9,17453,17451,5,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.926235816739,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.17,50.61,6,1,0,0,13,1,1,811.3333333333334,0,0,0 +7799,9578,17453,17451,-9,-9,2,1,0,50,1,0,1,0,3,-9,3,3,0,1,0,0,0,2,0,-9,6,0,0,0,0,0,0,50,3,1,3,3,3,2019,4,1,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.2,20.2,3,1,1,1,13,1,1,811.3333333333334,0,0,0 +7799,9579,17454,-9,17453,17451,3,1,1,26,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1012.391914938549,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,5,1,1,0,13,1,1,520,0,0,0 +7799,9580,17455,-9,17453,17451,4,1,1,24,2,0,1,0,3,-9,2,1,0,4,7.957023062193021,7.66018915656692,0,3,0,0,0,-9,0,-980.5292062260908,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,50,40,15,1,0,-9,1,6.384362754920592,6.384362754920592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,13,3,1,540,0,0,0 +7800,9581,17456,17457,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,2,6.535364959540399,6.934729071518001,5.065216595166087,1,0,-9,8,0,3,61.9217108212194,0,0,0,58,2,4,3,3,3,2019,2,2,16,5,15,0,15,1,5,4,0,4.392243956304678,4.392243956304678,0,0,0,0,0,0,0,0,0,0,5.958909521798409,5.155923761450604,0,0,45.13,29.34,4,1,0,0,12,3,1,1399.5,0,0,0 +7800,9581,17457,17456,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,4,0,7.70399064558325,7.899099930377544,1,0,-9,8,0,-3,-115.5315960341072,0,0,0,61,2,2,1,3,3,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.326702273431557,8.246525406135195,.546052520887008,3,54.2,57.49,6,1,0,0,12,3,1,1399.5,0,0,0 +7801,9582,17458,-9,-9,-9,1,1,1,73,2,0,0,0,1,-9,4,3,0,2,0,7.979305112084568,8.313300664125739,3,0,0,0,-9,0,-929.4127318832246,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.679757954365677,8.067160148418957,0,0,48.98,22.86,6,1,0,0,5,4,1,1520,0,0,0 +7802,9583,17459,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,6.5877614946933,6.387603135479638,3,0,0,0,-9,0,-1004.106398285734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,0,0,15,4,11,-9,0,0,0,1,16.29300423050902,0,0,14.18306317782887,0,175.5881970248251,1,1,0,0,6.525808257418554,0,0,32.33,20.42,4,1,0,0,2,2,0,895,0,0,0 +7803,9584,17460,17461,-9,-9,1,1,1,55,1,0,1,0,1,-9,4,3,0,3,0,7.223495158730823,7.226226809183235,2,0,-9,25,0,3,44.52616067062247,0,0,0,52,1,2,3,1,1,2019,4,2,13,1,0,60,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1.671233894546244,7.507335092741446,0,0,43.76,55.68,4,1,0,0,12,2,1,960.3333333333334,0,0,0 +7803,9584,17461,17460,-9,-9,2,1,0,52,1,0,1,0,1,-9,3,3,0,2,0,0,0,2,0,-9,25,0,-3,31.54253524431192,0,0,0,55,1,3,3,1,1,2019,4,1,14,2,0,38,15,3,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.58,37.62,1,1,1,0,12,2,1,960.3333333333334,0,0,0 +7803,9584,17462,-9,17461,17460,4,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-886.2007466374423,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.59703312059706,0,0,0,49.91,58.02,6,1,0,0,12,2,1,960.3333333333334,0,0,0 +7803,9585,17463,-9,17461,17460,3,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1041.36426010802,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.790838035438723,0,0,0,57.16,56.15,6,1,0,0,12,1,1,197,0,0,0 +7804,9586,17464,17465,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,7.055385108789411,6.799993067818411,1,0,-9,33,0,-12,49.50327344646355,0,0,0,80,2,5,3,2,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.812934857612772,6.642289448922911,0,0,67.36,35.12,7,1,0,0,2,2,1,1852,0,0,0 +7804,9586,17465,17464,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,5,0,6.924769902451552,6.97473291539176,1,0,-9,33,0,12,-8.897284678608507,0,0,0,68,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.32924866452681,6.884418743012173,4.717305541533878,3,51.98,57.55,7,1,0,0,2,2,1,1852,0,0,0 +7805,9587,17466,17467,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,7.032157085545901,6.997445822769242,1,0,-9,7,0,0,-27.40859013576108,0,0,0,62,1,4,3,3,3,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.514991376786374,6.629290829848237,0,0,36.7,61.65,6,1,0,0,2,4,1,352,0,0,0 +7805,9587,17467,17466,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,4,0,8.022306947668552,7.950573023259572,1,0,-9,7,0,0,40.53454125804954,0,0,0,62,2,4,3,3,3,2019,4,2,13,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.802087348490842,8.012737032895872,0,0,45.13,49.45,6,1,0,0,2,4,1,352,0,0,0 +7806,9588,17468,-9,17471,17470,2,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1061.31111064854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,2,0,0,8,5,0,1351.5,0,0,0 +7806,9588,17469,-9,17471,17470,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.3280164077145,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,8,5,0,1351.5,0,0,0 +7806,9588,17470,17471,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,5,9.446273798668777,9.178399329046272,0,2,0,-9,17,0,0,-29.70423275152111,0,0,0,48,2,5,1,2,2,2019,1,4,14,2,50,50,15,1,2,1,0,35.70684115420507,35.70684115420507,0,0,0,0,0,0,0,0,0,0,.6795009937933427,0,0,0,48.18,61.8,4,1,0,1,8,5,0,1351.5,0,0,0 +7806,9588,17471,17470,-9,-9,4,1,0,48,1,0,2,0,2,-9,2,1,0,5,8.56157066985236,8.473472785133332,0,2,0,-9,17,0,0,-1.478529028212624,0,0,0,48,2,5,1,2,2,2019,1,1,16,5,38,37,15,1,5,1,0,12.88719798541644,12.88719798541644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,61.22,5,3,0,0,8,5,0,1351.5,0,0,0 +7807,9589,17472,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,3,7.144337664835947,7.127183048098606,0,4,0,0,0,-9,0,-861.1033032621621,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,22,18,15,1,1,-9,0,8.298014612897591,8.298014612897591,0,0,0,0,0,0,0,1,0,1,0,0,9.816190369646613,3,51.82,42.23,6,1,0,0,12,2,0,1460.666666666667,0,0,0 +7807,9589,17473,-9,17472,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1103.732416976165,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.07,56.65,4,1,0,0,12,2,0,1460.666666666667,0,0,0 +7807,9589,17474,-9,17472,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-904.94639781668,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,12,2,0,1460.666666666667,0,0,0 +7808,9590,17475,17476,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.500614135000177,8.873733186967041,0,2,0,-9,11,0,6,-51.07794677307612,0,0,0,43,1,5,1,2,1,2019,1,2,22,8,45,47,15,1,8,1,0,14.60600372578157,14.60600372578157,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.16,49.78,3,1,0,0,7,4,1,413.3333333333333,0,0,0 +7808,9590,17476,17475,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,5,7.451391772154703,7.144013296269492,0,2,0,-9,11,0,-6,39.07655388788406,0,0,1,49,2,3,1,2,1,2019,1,1,15,5,25,20,15,1,5,1,0,5.565453634803304,5.565453634803304,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.25,53.64,3,1,0,1,7,4,1,413.3333333333333,0,0,0 +7808,9590,17477,-9,17476,17475,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.394718439177,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,413.3333333333333,0,0,0 +7809,9591,17478,-9,-9,-9,1,1,1,70,2,0,0,0,1,-9,4,3,0,3,8.90443080709416,8.993701174244944,6.899276214629647,3,0,0,0,-9,0,-1059.165001226332,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,8,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.463732127757007,6.731946921780485,0,0,40.64,52.96,5,1,0,0,13,5,1,428,0,0,0 +7810,9592,17479,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,3,8.93814447900926,8.360742906953057,0,3,0,0,0,-9,0,-1069.902340132776,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,44,45,15,1,0,-9,0,15.83539407173257,15.83539407173257,0,0,0,0,0,0,0,0,0,0,7.004343708398907,0,0,0,46.94,48.55,3,2,0,0,9,5,0,675,0,0,0 +7811,9593,17480,-9,-9,-9,3,1,1,19,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-970.6895849063462,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.71,57.24,7,1,0,0,1,1,0,392,0,0,0 +7811,9594,17481,-9,-9,-9,5,1,1,19,2,0,0,1,2,-9,7,2,0,3,8.083909852704206,8.10029570768479,0,3,0,-9,0,-9,0,-1103.436174569078,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,6,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.54500583811595,0,0,0,46.82,47.67,1,1,0,0,1,4,0,1025,0,0,0 +7812,9595,17482,17485,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,4,8.59772660048923,8.500802370836084,0,2,0,-9,7,0,2,38.09233484375867,0,0,0,44,1,4,1,2,3,2019,1,2,11,0,36,40,15,1,0,1,0,16.81021986140473,16.81021986140473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,4,1,0,0,13,4,1,588,0,0,0 +7812,9595,17483,-9,17485,17482,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.2220745048775,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,588,0,0,0 +7812,9595,17484,-9,17485,17482,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.707807258554,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,13,4,1,588,0,0,0 +7812,9595,17485,17482,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,4,8.426698951517313,9.007764808996857,0,2,0,-9,7,0,-2,-57.54117575283883,0,0,1,46,1,4,1,2,3,2019,1,1,13,3,46,45,15,1,3,1,0,16.05344970617396,16.05344970617396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.74,63,6,1,0,0,13,4,1,588,0,0,0 +7812,9595,17486,-9,17485,17482,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.4412132480736,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,588,0,0,0 +7813,9596,17487,-9,17490,17488,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.991665396431,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,220.75,0,0,0 +7813,9596,17488,17490,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.709128708752347,8.536463280096495,0,2,0,-9,18,0,-5,47.5350546616034,0,0,0,48,1,4,1,3,2,2019,1,2,7,0,77,39,15,1,0,1,0,6.635042153062791,6.635042153062791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,55.32,6,1,0,1,12,4,1,220.75,0,0,0 +7813,9596,17489,-9,17490,17488,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.787801165178,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,4,1,220.75,0,0,0 +7813,9596,17490,17488,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.029021813101261,8.141787845491251,0,2,0,-9,18,0,5,25.14982962611332,0,0,0,43,2,3,1,2,1,2019,1,1,6,0,27,29,15,1,0,1,0,14.99556927675244,14.99556927675244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,220.75,0,0,0 +7814,9597,17491,17492,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,4,9.284023888309873,8.988004738262246,0,1,0,1,1,-9,1,93.82200578526603,0,0,0,49,1,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,30.79782860844014,30.79782860844014,0,0,0,0,0,0,0,0,0,0,7.157667925227631,0,0,0,57.16,56.15,6,1,0,0,9,5,0,464,0,0,0 +7814,9597,17492,17491,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.655094081952617,8.748512675793455,0,1,0,-9,1,-9,-1,41.84570433089212,-9,0,0,50,1,4,1,-9,-9,2019,1,1,10,0,35,0,15,1,1,1,0,17.82192353759051,17.82192353759051,0,0,0,0,0,0,0,0,0,0,4.07484788440073,0,0,0,50,55,6,5,0,0,9,5,0,464,0,0,0 +7815,9598,17493,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.096567940015881,8.029446752746468,0,3,0,0,0,-9,0,-1061.183235416353,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,35,15,1,0,-9,0,8.535733131669621,8.535733131669621,0,0,0,0,0,0,0,0,0,0,2.771384500230303,0,0,0,54.2,57.49,2,1,0,0,2,4,1,664,0,0,0 +7816,9599,17494,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,2,1,0,4,7.385031661425155,6.901533996205808,0,4,0,0,0,-9,0,-921.6223134965841,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,1,0,24,24,15,1,0,-9,0,5.86396250937645,5.86396250937645,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.12,54.8,6,1,0,0,1,2,0,639,0,0,0 +7816,9599,17495,-9,17494,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-989.2224082042775,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,0,639,0,0,0 +7817,9600,17496,17497,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,6.690705821666747,6.669576339442288,1,0,-9,44,0,-6,-71.25603615008336,0,0,0,65,3,4,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.140379006859884,6.6289739065319,0,3,64.23,44.69,6,1,0,0,10,2,1,384,0,0,0 +7817,9600,17497,17496,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,4,0,7.070981568589414,7.243344787669444,1,0,-9,6,0,6,-97.93280435022261,0,0,0,59,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.042238348338332,0,0,56,52,6,1,0,0,10,2,1,384,0,0,0 +7818,9601,17498,17501,-9,-9,1,1,1,53,1,0,2,0,3,-9,8,3,1,3,0,0,0,2,0,-9,7,0,5,0,0,0,0,48,3,2,3,3,3,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.19,42.77,6,1,0,0,13,1,0,1508,0,0,0 +7818,9601,17499,-9,17501,17498,6,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-922.0080587877023,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,1,0,1508,0,0,0 +7818,9601,17500,-9,17501,17498,5,1,1,17,2,0,2,1,3,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1051.683009355085,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,7,1,0,0,13,1,0,1508,0,0,0 +7818,9601,17501,17498,-9,-9,2,1,0,48,1,0,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-5,0,0,0,0,53,3,3,3,3,3,2019,4,1,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.59,18.7,6,1,0,0,13,1,0,1508,0,0,0 +7818,9602,17502,-9,17501,17498,3,1,0,23,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-887.1479638427149,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,55.6,6,1,1,0,13,1,0,686,0,0,0 +7818,9603,17503,-9,17501,17498,4,1,0,21,2,0,2,0,3,-9,2,1,0,5,7.383294048198939,7.790047325058971,0,3,0,0,0,-9,0,-940.6760771642903,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,36,40,15,1,0,-9,1,5.115961830117778,5.115961830117778,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,0,173,0,0,0 +7819,9604,17504,17506,-9,-9,1,1,1,40,1,0,2,0,2,-9,3,3,0,2,0,0,0,2,0,-9,9,0,5,-49.82095882151204,0,0,0,35,2,3,1,2,2,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,21.96,38.79,4,1,1,0,12,2,0,1279.25,0,0,0 +7819,9604,17505,-9,17506,17504,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-977.7798131318951,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,12,2,0,1279.25,0,0,0 +7819,9604,17506,17504,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,3,6.370450434655966,6.227565299903205,0,2,0,-9,9,0,-5,22.71618731967859,0,0,1,40,2,2,3,2,3,2019,2,1,12,0,16,16,15,1,0,3,0,3.625466873619686,3.625466873619686,0,0,0,0,0,0,0,1,1,0,0,0,5.751433339310226,3,39.92,49.18,5,1,0,0,12,2,0,1279.25,0,0,0 +7819,9604,17507,-9,17506,17504,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-902.3159926076689,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,2,0,1279.25,0,0,0 +7820,9605,17508,17509,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,4,9.203653944326801,9.152546553545475,0,2,0,-9,9,0,5,43.68545379288103,0,0,0,35,1,4,1,2,2,2019,1,2,11,2,42,37,15,1,2,1,0,26.53692385670577,26.53692385670577,0,0,0,0,0,0,0,0,0,0,.347790451099845,0,0,0,45.66,57.21,6,1,0,0,8,5,1,313.25,0,0,0 +7820,9605,17509,17508,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,4,9.373550053275453,9.190663401198822,0,2,0,-9,9,0,-5,.6075666453510769,0,0,1,40,1,4,1,1,1,2019,1,1,7,0,32,32,15,1,0,1,0,38.59278767524137,38.59278767524137,0,0,0,0,0,0,0,0,0,0,1.634443985497382,0,0,0,54.74,57.22,6,5,0,0,8,5,1,313.25,0,0,0 +7820,9605,17510,-9,17509,17508,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.327260666368,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,2,0,0,8,5,1,313.25,0,0,0 +7820,9605,17511,-9,17509,17508,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.129092499136,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,2,0,0,8,5,1,313.25,0,0,0 +7821,9606,17512,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,4.663940603346323,4.628601165224808,3,0,0,0,-9,0,-1056.671593246614,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.762705896728243,0,0,44.04,40.37,7,1,0,0,6,1,1,601,0,0,0 +7822,9607,17513,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,2,1,0,2,8.144523244567463,7.996220490846194,0,3,0,0,0,-9,0,-1031.992865634618,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,45,39,15,1,1,-9,0,8.295024932391859,8.295024932391859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.83,30.23,2,1,0,1,5,4,1,270,0,0,0 +7823,9608,17514,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,3,0,6.724720357650692,7.025798809032771,3,0,0,0,-9,0,-1097.139470643523,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.563398886538707,7.081473990345351,0,0,64.40000000000001,42,2,1,0,0,9,2,1,454,0,0,0 +7824,9609,17515,17516,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,4,6.803508310226048,7.155089251271498,0,2,0,-9,28,0,-1,32.50276205600107,0,0,0,47,2,4,1,3,3,2019,1,1,10,0,25,26,15,1,0,1,0,3.720886014068676,3.720886014068676,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,9,3,1,489.5,0,0,0 +7824,9609,17516,17515,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.151306084662044,8.484143106523902,0,2,0,-9,28,0,1,2.772383218275386,0,0,0,46,2,4,1,-9,-9,2019,1,2,9,0,0,45,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.51863891781356,0,0,0,52,55,6,3,0,0,9,3,1,489.5,0,0,0 +7824,9610,17517,-9,17515,17516,3,1,0,23,2,0,2,0,1,1,2,1,0,4,7.99165265337075,8.177592637953058,0,3,0,0,0,-9,0,-959.7231395477647,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,41,0,15,1,9,-9,1,10.4945118836303,10.4945118836303,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,58.77,4,3,0,0,9,4,1,1718,0,0,0 +7825,9611,17518,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1027.531772921883,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.99600174583844,3,39.2,37.56,4,1,0,0,12,1,0,265,0,0,0 +7826,9612,17519,-9,17520,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-879.3146430815437,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,1,0,711.5,0,0,0 +7826,9612,17520,-9,-9,-9,1,1,0,20,2,1,1,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1101.28278211605,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.21,60.66,2,1,0,1,11,1,0,711.5,0,0,0 +7827,9613,17521,17523,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.469277479247779,7.8523390807414,0,1,0,-9,9,0,2,42.42815480000421,0,0,0,49,1,3,1,1,1,2019,1,1,13,2,38,38,15,1,2,1,0,6.173101414579073,6.173101414579073,0,0,0,0,0,0,0,1,1,0,0,0,0,3,40.42,54.21,5,1,0,0,2,5,1,525,0,0,0 +7827,9613,17522,-9,17521,17523,4,1,1,17,2,0,0,0,2,-9,2,3,0,5,7.202950601677511,7.211109607512731,0,1,0,0,0,-9,0,-990.4626702462228,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,4,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.95,57.56,7,1,0,0,2,5,1,525,0,0,0 +7827,9613,17523,17521,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,3,8.3811755859504,8.187386370226811,0,1,0,-9,9,0,-2,-119.4764495385959,0,0,0,51,2,3,1,1,1,2019,1,2,16,4,41,42,15,1,4,1,0,13.41316898301717,13.41316898301717,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.77,49.18,5,1,0,0,2,5,1,525,0,0,0 +7827,9614,17524,-9,17521,17523,3,1,1,22,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1113.25081787795,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,56.21,6,1,0,0,2,1,1,1361,0,0,0 +7828,9615,17525,-9,17528,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-951.7396217745804,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,1,0,1756.75,0,0,0 +7828,9615,17526,-9,17528,-9,2,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-956.8354487098831,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,1,0,1756.75,0,0,0 +7828,9615,17527,-9,17528,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-856.0716302701223,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,1,0,1756.75,0,0,0 +7828,9615,17528,-9,-9,-9,1,1,0,37,2,0,3,0,1,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1013.565285236633,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,10,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.18,53.47,5,1,1,1,5,1,0,1756.75,0,0,0 +7829,9616,17529,17530,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,4,0,7.664815893510602,7.833120919314035,1,0,-9,53,0,-1,-114.0784620946543,0,0,0,75,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,8.913858478070463,0,0,0,0,56.53572630735775,1,1,0,6.223972338400543,7.588457724872828,0,0,58.75,51.28,7,1,0,0,2,5,1,1203.5,0,0,0 +7829,9616,17530,17529,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,4,0,8.561176744800676,8.551875473187835,1,0,-9,53,0,1,-5.130560588868649,0,0,0,74,1,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.871349238795635,8.673494951203478,0,0,58.32,52.89,6,1,0,0,2,5,1,1203.5,0,0,0 +7830,9617,17531,17532,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,39,0,6,-20.06331233154591,0,0,0,74,3,2,3,3,2,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,29.24891851183837,1,54.79,55.86,5,1,0,0,7,2,0,315.5,0,0,0 +7830,9617,17532,17531,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,5.823928200503295,5.999037006489176,1,0,-9,37,0,-6,-102.6213423080961,0,0,0,80,3,4,3,3,3,2019,4,2,28,12,0,0,15,4,12,4,0,0,0,1,0,4.32594882181507,0,0,0,0,1,1,0,0,5.773247644847459,0,0,48.54,19.83,1,1,0,0,7,2,0,315.5,0,0,0 +7831,9618,17533,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,3,8.491422340860105,8.836624888985995,0,3,0,0,0,-9,0,-927.2377056317964,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,38,15,1,0,-9,0,20.70256233336257,20.70256233336257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.06,57.76,6,1,0,0,13,5,1,1012,0,0,0 +7832,9619,17534,-9,17536,17537,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.0575214585782,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,10,4,1,687.25,0,0,0 +7832,9619,17535,-9,17536,17537,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.351626481225,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,10,4,1,687.25,0,0,0 +7832,9619,17536,17537,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,4,8.186296081906637,7.969417397067944,0,2,0,-9,6,0,-1,163.7704493697688,0,0,1,35,2,3,1,2,3,2019,1,1,13,2,38,22,15,1,2,1,0,11.25056306002556,11.25056306002556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.95,52.59,5,1,0,0,10,4,1,687.25,0,0,0 +7832,9619,17537,17536,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,3,8.514137110329038,8.296079933688974,0,2,0,-9,6,0,1,-132.3356628625261,0,0,0,34,2,4,1,1,2,2019,1,2,9,0,40,40,15,1,0,1,0,12.78027261303598,12.78027261303598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,10,4,1,687.25,0,0,0 +7833,9620,17538,-9,17539,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-957.7920440773075,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,1,0,411.3333333333333,0,0,0 +7833,9620,17539,-9,-9,-9,1,1,0,29,2,0,2,0,3,-9,3,3,0,2,0,0,0,4,0,-9,0,0,0,-877.7153512650601,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.35,49.64,4,1,1,0,13,1,0,411.3333333333333,0,0,0 +7833,9620,17540,-9,17539,-9,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-983.2436992350157,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,1,0,411.3333333333333,0,0,0 +7833,9621,17541,-9,-9,-9,2,1,1,20,2,0,2,0,3,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-957.1905825336655,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,4,1,1,0,13,1,0,1116,0,0,0 +7834,9622,17542,-9,17545,17544,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.569379545686,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,903.75,0,0,0 +7834,9622,17543,-9,17545,17544,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1145.596679873654,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,903.75,0,0,0 +7834,9622,17544,17545,-9,-9,2,1,1,44,1,0,2,0,3,-9,1,1,0,4,8.710938046091506,8.60415640191132,0,2,0,-9,9,0,5,-28.27249987700067,0,0,0,39,2,5,1,-9,-9,2019,1,1,9,0,48,50,15,1,1,1,0,14.43129981854792,14.43129981854792,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,4,1,903.75,0,0,0 +7834,9622,17545,17544,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,5,7.499801866309101,7.219125917859526,0,2,0,-9,19,0,-5,17.6144789352017,0,0,1,44,3,4,1,-9,3,2019,1,2,10,1,23,22,15,1,1,1,0,8.725098542183654,8.725098542183654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,58.09,6,1,0,0,7,4,1,903.75,0,0,0 +7835,9623,17546,-9,-9,-9,1,1,1,22,2,0,0,0,2,1,2,1,0,5,8.108737474641298,7.873272378277085,0,3,0,0,0,-9,0,-1073.212910684208,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,39,0,15,1,0,-9,0,6.512785387228417,6.512785387228417,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,3,0,1543,0,0,0 +7836,9624,17547,17549,-9,-9,2,1,1,27,1,1,2,0,2,-9,2,1,0,3,8.019302576416868,8.308936653017929,0,2,0,-9,6,0,2,2.710609457772352,0,1,0,25,2,2,3,-9,-9,2019,2,1,13,3,39,42,15,1,3,3,0,7.838042490242248,7.838042490242248,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.97,48.85,3,1,0,0,5,3,1,994.75,0,0,0 +7836,9624,17548,-9,17549,17547,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.8276923661493,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,3,1,994.75,0,0,0 +7836,9624,17549,17547,-9,-9,1,1,0,25,1,1,2,0,2,-9,97,3,0,2,0,0,0,2,0,-9,6,0,-2,-61.49377866246124,0,1,1,27,2,3,1,2,1,2019,3,2,15,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.02,47.07,6,1,0,0,5,3,1,994.75,0,0,0 +7836,9624,17550,-9,17549,17547,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.5703411381,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,994.75,0,0,0 +7837,9625,17551,17552,-9,-9,1,1,1,44,1,0,0,0,1,-9,1,1,0,4,7.111401366089495,6.699952053553549,0,1,0,-9,2,0,11,69.10460808179276,0,0,0,33,1,3,1,1,1,2019,1,2,13,3,30,40,15,1,3,1,0,3.400023382550727,3.400023382550727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.32,64.83,5,1,0,0,8,5,1,1331.5,0,0,0 +7837,9625,17552,17551,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,3,8.990594371493948,9.158919720099554,0,1,0,-9,2,0,-11,-104.9911571536866,0,0,1,44,1,4,1,-9,-9,2019,1,1,19,8,30,40,15,1,8,1,0,38.81141014656166,38.81141014656166,0,0,0,0,0,0,0,0,0,0,6.429792198310383,0,0,0,12.2,60.51,5,1,0,0,8,5,1,1331.5,0,0,0 +7838,9626,17553,17554,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,3,8.886757957677544,8.943381018109731,0,2,0,-9,8,0,6,-58.92814448487248,0,0,0,37,1,4,1,2,2,2019,1,2,9,0,37,41,15,1,0,1,0,22.84801347424577,22.84801347424577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,50.45,6,1,0,0,2,5,1,544.3333333333334,0,0,0 +7838,9626,17554,17553,-9,-9,2,1,0,37,1,0,1,0,1,-9,2,1,0,4,7.458068993653478,7.373317993866787,0,2,0,-9,8,0,-6,30.76774242123006,0,0,1,43,2,3,1,-9,-9,2019,1,1,19,7,28,28,15,1,7,1,0,9.7535576262528,9.7535576262528,0,0,0,0,0,0,0,1,1,0,1.621468102684766,0,0,0,39.07,56.08,3,1,0,0,2,5,1,544.3333333333334,0,0,0 +7838,9626,17555,-9,17554,17553,3,1,1,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1018.254298802909,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,5,1,544.3333333333334,0,0,0 +7839,9627,17556,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,3,0,6.729354446829701,6.976567690508651,3,0,0,0,-9,0,-1044.708604796834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.937656691934495,7.231470987365732,0,0,55.53,51.55,7,1,0,0,4,2,1,967,0,0,0 +7840,9628,17557,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,5.568510782800335,5.440543926866478,3,0,0,0,-9,0,-1155.669878549224,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.276725268840607,5.40049333813501,0,0,60.87,44.96,7,1,0,0,4,2,1,278,0,0,0 +7841,9629,17558,-9,17561,17560,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.4592211241015,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,2,4,1,662.75,0,0,0 +7841,9629,17559,-9,17561,17560,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.7631439596751,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,2,4,1,662.75,0,0,0 +7841,9629,17560,17561,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,3,9.245170313139685,9.448733251574552,0,2,0,-9,21,0,6,113.2596317358764,0,0,0,44,2,3,1,2,2,2019,1,2,11,0,43,45,15,1,0,1,0,22.06924401356983,22.06924401356983,0,0,0,0,0,0,0,0,0,0,3.762256797322562,0,0,0,44.75,56.39,5,1,0,0,2,4,1,662.75,0,0,0 +7841,9629,17561,17560,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,3,0,0,0,2,0,-9,21,0,-6,90.7506537072708,0,0,1,50,2,3,1,-9,2,2019,1,1,20,8,0,30,15,1,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.64,53.56,6,1,0,0,2,4,1,662.75,0,0,0 +7842,9630,17562,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,4,8.34086063402775,8.291459810817644,0,3,0,0,0,-9,0,-1055.799842232399,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,65,46,15,1,0,-9,0,7.917186194995973,7.917186194995973,0,0,0,0,0,0,0,1,1,0,.6823243820965007,0,0,0,49.37,50.15,6,4,0,0,9,4,0,1147,0,0,0 +7843,9631,17563,17564,-9,-9,2,1,0,66,1,0,0,0,3,-9,2,1,0,4,5.642546742732891,6.685694064739651,5.982819570890221,1,0,-9,31,0,-4,45.58330181683944,0,0,0,70,2,3,3,3,3,2019,2,1,10,0,6,0,15,1,0,4,0,7.413763078041358,7.413763078041358,0,0,0,0,0,0,0,1,1,0,4.829788410749008,6.148765326130398,0,3,56.93,41.15,6,1,0,0,5,4,1,814.5,0,0,0 +7843,9631,17564,17563,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.266212301373992,8.101607888538952,1,0,-9,31,0,4,55.56827060911625,0,0,0,66,3,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.283309852830742,7.863909706032142,.4169711192863028,3,54.02,40.03,5,1,0,0,5,4,1,814.5,0,0,0 +7844,9632,17565,-9,17566,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-988.0199959122634,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.41,60.03,4,1,0,0,7,2,1,543,0,0,0 +7844,9632,17566,-9,-9,-9,1,1,0,48,2,0,1,0,3,-9,1,1,0,4,6.829176508464363,6.582546643710041,0,4,0,0,0,-9,0,-1104.129209365585,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,15,15,1,0,-9,0,6.473937781755978,6.473937781755978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,57.48,6,1,0,0,7,2,1,543,0,0,0 +7844,9633,17567,-9,17566,-9,2,1,1,22,2,0,1,0,2,-9,1,1,0,4,5.397902057524292,5.668231995073585,0,3,0,0,0,-9,0,-909.4391114454156,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,60,58,15,1,5,-9,1,.373182612454347,.373182612454347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.89,64.98,5,1,0,1,7,2,1,558,0,0,0 +7845,9634,17568,-9,17569,-9,2,1,0,16,2,0,1,0,3,-9,3,2,0,4,4.572824332003666,4.321645979631183,0,4,0,0,0,-9,0,-947.0201407195149,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0757155038851778,0,0,0,57.73,54.53,6,1,1,0,7,3,0,765.5,0,0,0 +7845,9634,17569,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,2,1,0,3,7.775668063360302,7.475920094584804,5.761091194339371,4,0,0,0,-9,0,-989.980996458051,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,18,20,15,1,1,-9,0,13.41650627786484,13.41650627786484,0,0,0,0,0,0,0,1,1,0,6.19455884944959,0,0,0,48.45,57.49,6,1,0,0,7,3,0,765.5,0,0,0 +7846,9635,17570,-9,-9,-9,1,1,0,88,2,0,0,0,3,-9,4,3,0,2,0,5.160201559737097,5.050314100468156,3,0,0,0,-9,0,-984.8787924123885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,16.88917123729116,0,0,0,0,0,1,1,0,0,4.579227040973299,0,0,51.83,29.31,6,1,0,0,13,1,0,1244,0,0,0 +7847,9636,17571,17572,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,7.101828685687599,7.205142474403788,0,1,0,-9,46,0,-1,80.49029264651662,0,0,0,70,2,4,3,3,3,2019,4,1,6,0,16,17,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.04790418689381,0,1.171626862748508,3,60.12,54.8,6,1,0,0,5,2,1,1180.5,0,0,0 +7847,9636,17572,17571,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,6.183494728712107,6.130065107447656,1,0,-9,46,0,1,-36.1611423536904,0,0,0,69,3,4,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.129398848915712,6.459993037737505,6.595505730301274,3,60.12,54.8,7,1,0,0,5,2,1,1180.5,0,0,0 +7848,9637,17573,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,2,6.908546265008018,7.058668436542225,0,4,0,0,0,-9,0,-1018.587945674407,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,24,16,15,1,4,-9,0,6.387897795457686,6.387897795457686,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,29.75,5,1,0,0,9,2,0,879,0,0,0 +7849,9638,17574,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1095.037630673187,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.92,16.66,2,1,0,0,8,1,0,569,0,0,0 +7850,9639,17575,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,3,0,6.700749832309023,6.657205851535551,3,0,0,0,-9,0,-1068.499374923582,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.412865817731663,0,0,61.26,38.16,6,1,0,0,9,2,0,858,0,0,0 +7851,9640,17576,17577,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,7.747759900285517,7.479678385308892,1,0,-9,10,0,11,-89.27768844991718,0,0,0,70,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.550174190236507,0,0,57.33,53.46,7,1,0,0,13,3,1,331,0,0,0 +7851,9640,17577,17576,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,4.644866898194262,3.933363786818605,1,0,-9,10,0,-11,32.1255959873611,0,0,0,81,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.178508410080288,0,0,57.16,56.15,6,1,0,0,13,3,1,331,0,0,0 +7852,9641,17578,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,5,8.034191615468742,7.960707898670186,0,3,0,0,0,-9,0,-1090.778877494722,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,39,40,15,1,1,-9,0,9.71878809450541,9.71878809450541,0,0,0,0,0,0,0,0,0,0,.4036420062436512,0,4.030481952861239,3,44.03,59.58,6,1,0,0,2,4,1,636,0,0,0 +7852,9642,17579,-9,17578,-9,2,1,0,20,2,0,0,0,2,0,7,2,0,4,6.13608740800118,6.100864151487114,0,3,0,0,0,-9,0,-1134.407751747172,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,5,1,0,0,2,2,1,230,0,0,0 +7853,9643,17580,17581,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,3.394531511089019,3.494611078805577,1,0,-9,27,0,-2,-114.1963658666294,0,0,0,70,2,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.150237800393916,3.458047672394668,0,0,55.95,36.7,7,1,0,0,7,2,1,548.5,0,0,0 +7853,9643,17581,17580,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.04791422987539,7.094242113507435,1,0,-9,28,0,2,-23.28176434969909,0,0,0,68,3,2,3,3,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.50165634794254,6.785282107295887,0,0,52.99,51.28,6,1,0,0,7,2,1,548.5,0,0,0 +7854,9644,17582,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,4,0,7.408921436553984,7.653849629319481,3,0,0,0,-9,0,-1019.878233776198,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.477320338932454,7.95442758247746,0,0,63.24,47.92,7,1,0,0,1,3,1,2180,0,0,0 +7855,9645,17583,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,2,1,0,4,7.206081058003594,7.279894247549874,0,4,0,-9,0,1,0,-967.1359970709179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,10,6,15,1,1,-9,0,14.20112627851809,14.20112627851809,0,0,0,0,0,0,0,1,1,0,0,0,14.96784240898188,3,41.47,56.81,4,3,0,0,8,2,0,456,0,0,0 +7855,9646,17584,-9,17583,17586,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1034.089066887896,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,1,0,529,0,0,0 +7855,9646,17585,-9,17583,17586,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-990.8554010015987,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,8,1,0,529,0,0,0 +7855,9646,17586,-9,-9,-9,2,1,1,55,3,0,2,0,1,-9,8,3,1,1,0,0,0,4,0,-9,0,1,0,-1061.598227964662,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,28,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.49350588396084,3,18.76,23.91,2,1,0,1,8,1,0,529,0,0,0 +7856,9647,17587,17588,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,2,7.727938543628436,7.769578317557428,0,1,0,-9,7,0,5,117.5012752332543,0,0,0,57,2,4,1,3,3,2019,1,2,10,1,32,36,15,1,1,1,0,6.473846834743788,6.473846834743788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.6,37.07,5,5,0,0,6,4,0,1405.5,0,0,0 +7856,9647,17588,17587,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.483026387575423,8.242661177140723,4.40081886572989,1,0,-9,7,0,-5,106.8487330511508,0,0,0,62,2,2,1,3,3,2019,1,1,8,0,69,60,15,1,0,1,0,6.71572245676913,6.71572245676913,0,0,0,0,0,0,0,0,0,0,0,4.820416605243961,0,0,51.19,42.43,7,1,0,0,6,4,0,1405.5,0,0,0 +7857,9648,17589,17590,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.601591833972858,8.464732735658352,0,1,0,-9,2,0,-1,-33.20798300179953,0,1,0,26,2,5,1,-9,-9,2019,1,1,7,0,40,30,15,1,0,1,0,13.63284084467729,13.63284084467729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,3,0,0,5,4,0,859,0,0,0 +7857,9648,17590,17589,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,5,7.274954778778866,7.711596372886679,0,1,0,-9,2,0,1,-142.4252120523979,0,1,1,25,1,5,1,-9,-9,2019,1,2,1,0,30,25,15,1,0,1,0,7.431517467725852,7.431517467725852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,7,3,0,0,5,4,0,859,0,0,0 +7858,9649,17591,17592,-9,-9,2,1,1,87,1,0,0,0,2,-9,4,3,0,3,0,10.20363086150923,10.05808199428788,1,0,-9,37,0,17,-22.02668261990772,0,0,0,70,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.35639108830552,10.45228086926496,0,0,55,45,6,1,0,0,7,5,1,2148.5,0,0,0 +7858,9649,17592,17591,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.56863134288216,6.036980245274249,1,0,-9,38,0,-17,-74.00063122243574,0,0,0,87,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.060467133969281,5.899223116097098,0,0,51,46,5,1,0,0,7,5,1,2148.5,0,0,0 +7859,9650,17593,17594,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-2,23.24907150915727,0,0,0,66,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.556295847665097,0,0,0,50,47,5,1,0,0,4,2,1,2047.5,0,0,0 +7859,9650,17594,17593,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,6.715541860755724,6.738281613140391,1,0,-9,43,0,2,161.4295789898351,0,0,0,64,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.987882362607659,7.026325678964342,0,0,57.1,57.51,6,5,0,0,4,2,1,2047.5,0,0,0 +7860,9651,17595,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,3,8.118779252473313,8.019712985166459,0,1,0,-9,4,0,5,23.70906225735555,0,0,1,-9,-9,-9,-9,2,2,2019,2,2,19,9,42,43,15,1,9,-9,0,6.533954043267278,6.533954043267278,0,0,0,0,0,0,0,1,1,0,3.095595442314904,0,0,0,28.25,59.94,5,1,0,0,4,3,0,479,0,0,0 +7860,9652,17596,-9,-9,-9,2,1,0,27,2,0,0,0,1,-9,7,2,0,4,0,6.924453321402304,6.77008571111733,1,0,-9,4,0,-5,48.27787265673835,1,1,1,-9,-9,-9,-9,-9,-9,2019,3,1,11,0,0,37,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.943978703797551,0,0,0,47.46,39,5,1,0,0,4,3,0,404,0,0,0 +7861,9653,17597,17598,-9,-9,2,1,0,44,1,0,0,0,2,-9,1,1,0,3,7.875190611534516,8.089647268847086,0,1,0,-9,4,0,1,100.1571243873692,0,0,1,43,2,4,1,-9,-9,2019,1,1,9,0,20,17,15,1,0,1,0,16.23342317694642,16.23342317694642,0,0,0,0,0,0,0,0,0,0,1.667537003525903,0,0,0,47,50,6,1,0,0,5,4,1,332,0,0,0 +7861,9653,17598,17597,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,7.711574205556578,7.583955503807005,0,1,0,-9,4,0,-1,-96.33802530751623,0,0,0,44,2,3,1,3,3,2019,1,2,13,1,20,20,15,1,1,1,0,11.25189241162264,11.25189241162264,0,0,0,0,0,0,0,0,0,0,0,0,2.12067424075579,3,55.76,52.64,6,1,0,0,5,4,1,332,0,0,0 +7862,9654,17599,17600,-9,-9,1,1,0,35,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,12,0,-5,11.9496692588752,0,0,1,40,1,4,1,2,1,2019,1,2,11,1,20,28,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,51.16,5,1,0,0,12,5,1,296.3333333333333,0,0,0 +7862,9654,17600,17599,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,4,9.875684451202195,9.694703488819892,0,2,0,-9,12,0,5,100.3409346465354,0,0,0,35,2,3,1,2,1,2019,1,1,12,0,50,48,15,1,0,1,0,31.37858974616007,31.37858974616007,0,0,0,0,0,0,0,0,0,0,5.928813540753326,0,0,0,49.06,58.64,6,1,0,0,12,5,1,296.3333333333333,0,0,0 +7862,9654,17601,-9,17599,17600,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.4156108107779,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,296.3333333333333,0,0,0 +7863,9655,17602,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,3,0,8.289522722392597,8.324394612942836,3,0,0,0,-9,0,-932.1889921249613,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.608957803132829,8.212651898761001,0,0,60.29,52.11,7,1,0,0,12,4,1,225,0,0,0 +7864,9656,17603,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,4,8.431946900843684,8.087589893301233,0,3,0,0,0,-9,0,-1002.935150786952,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,40,15,1,0,-9,0,13.00901327823441,13.00901327823441,0,0,0,0,0,0,0,1,1,0,0,0,17.63363081425849,3,57.16,56.15,6,1,0,0,2,4,1,190,0,0,0 +7865,9657,17604,-9,17606,17607,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.1463235663483,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,1141.5,0,0,0 +7865,9657,17605,-9,17606,17607,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.362517089193,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,1141.5,0,0,0 +7865,9657,17606,17607,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,4,6.583847938760778,6.866429670601048,0,2,0,-9,12,0,2,128.4348742752273,0,0,1,38,1,5,1,2,2,2019,1,2,10,0,35,40,15,1,0,1,0,2.815076671274501,2.815076671274501,0,0,0,0,0,0,0,0,0,0,4.239816977626299,0,0,0,56.33,51.02,6,1,0,0,8,5,1,1141.5,0,0,0 +7865,9657,17607,17606,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,5,9.65410786889149,9.221534793859261,0,2,0,-9,12,0,-2,-145.2178475739856,0,0,0,40,1,4,1,-9,-9,2019,1,1,7,0,50,60,15,1,0,1,0,32.58611011256001,32.58611011256001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,5,1,1141.5,0,0,0 +7866,9658,17608,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,3,7.403521388232072,7.988729511738997,6.921113539892143,4,0,0,0,-9,0,-923.5363607561188,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,38,27,15,1,0,-9,0,4.263617088970121,4.263617088970121,0,0,0,0,0,0,0,1,1,0,7.157708042324659,0,0,0,55.09,46.15,6,1,0,0,10,3,1,1056.666666666667,0,0,0 +7866,9658,17609,-9,17608,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1007.9668296327,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,10,3,1,1056.666666666667,0,0,0 +7866,9658,17610,-9,17608,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1067.938245943551,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,10,3,1,1056.666666666667,0,0,0 +7867,9659,17611,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,3,7.216609993774893,7.219361458407925,0,3,0,0,0,-9,0,-1067.839433114703,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,10,10,15,1,2,-9,0,13.80805447912141,13.80805447912141,0,0,0,0,0,0,0,1,1,0,0,0,8.290363937910003,3,36.21,43.67,2,1,0,0,2,2,0,461,0,0,0 +7868,9660,17612,17613,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.397567261011041,8.296151681781801,0,1,0,-9,2,0,0,24.92439501736462,0,1,0,25,1,4,1,-9,-9,2019,1,2,8,3,55,55,15,1,3,1,0,8.072016616948767,8.072016616948767,0,0,0,0,0,0,0,0,0,0,4.5180099698697,0,0,0,50.54,62.09,5,1,0,1,8,5,0,809,0,0,0 +7868,9660,17613,17612,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.547543904852599,8.736995937122151,0,1,0,-9,2,0,0,-56.92560549174776,0,1,1,25,1,5,1,-9,-9,2019,1,1,6,0,40,35,15,1,0,1,0,14.3464660147473,14.3464660147473,0,0,0,0,0,0,0,0,0,0,1.901278325405781,0,0,0,48.81,59.91,6,1,0,0,8,5,0,809,0,0,0 +7869,9661,17614,17615,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,7.247468964712843,7.427546365775631,1,0,-9,51,0,2,-29.56870132423098,0,0,0,69,3,2,3,3,3,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.207655604799688,74.03341334421924,1,28.31,41.42,2,1,0,0,4,2,1,236.5,0,0,0 +7869,9661,17615,17614,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,51,0,-2,-84.59641460023293,0,0,0,71,2,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,15.08632470227218,118.1493324978192,0,0,0,158.3933190749983,1,1,0,0,0,0,0,45.73,36.31,7,1,0,0,4,2,1,236.5,0,0,0 +7870,9662,17616,-9,17618,17617,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.3376948083262,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,3,0,0,8,5,1,888.6666666666666,0,0,0 +7870,9662,17617,17618,-9,-9,1,1,1,37,1,0,1,0,1,-9,2,1,0,4,8.806789672142088,8.675413214325101,0,2,0,-9,13,0,1,120.1488299171727,0,0,0,36,1,5,1,2,1,2019,1,2,9,0,50,56,15,1,0,1,0,16.61013122290815,16.61013122290815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,3,0,0,8,5,1,888.6666666666666,0,0,0 +7870,9662,17618,17617,-9,-9,2,1,0,36,1,0,1,0,1,-9,2,1,0,5,8.884508624678624,8.926626769470493,0,2,0,-9,13,0,-1,71.1518890996966,0,0,1,37,1,4,1,-9,-9,2019,1,1,6,0,40,50,15,1,0,1,0,19.18909786156041,19.18909786156041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,5,1,888.6666666666666,0,0,0 +7871,9663,17619,17620,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,7.621632467034317,7.719426752235532,6.223778493099443,1,0,-9,7,0,-8,-92.68114557580714,0,0,0,55,2,5,1,3,-9,2019,1,2,8,0,25,23,15,1,0,1,0,7.34004551155774,7.34004551155774,0,0,0,0,0,0,0,0,0,0,0,5.839162698780455,0,0,57.33,53.46,6,1,0,0,12,5,1,772.5,0,0,0 +7871,9663,17620,17619,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,5,7.699474534558393,8.656484168145408,7.894074291184166,1,0,-9,7,0,8,26.04851298314399,0,0,0,47,2,3,1,-9,-9,2019,1,1,11,0,37,37,15,1,0,1,0,9.470979167437044,9.470979167437044,0,0,0,0,0,0,0,0,0,0,2.308771754267075,7.97931377141111,0,0,57.06,57.76,7,1,0,0,12,5,1,772.5,0,0,0 +7872,9664,17621,17622,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,1,0,5.940360712944176,6.141398970317396,1,0,-9,8,0,7,10.1408860385721,0,0,0,52,2,2,3,2,1,2019,4,2,29,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.38307469665318,5.79961986387329,0,0,24.93,19.95,1,1,0,0,11,2,0,948.5,0,0,0 +7872,9664,17622,17621,-9,-9,2,1,1,52,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,8,0,-7,-38.23135929666498,0,0,0,59,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.6622041177575,2,46.04,48.02,4,1,0,0,11,2,0,948.5,0,0,0 +7873,9665,17623,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,0,2.751443835652132,2.835356103999861,3,0,0,0,-9,0,-1122.066896022348,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,1,0,0,29.31642123868044,0,0,0,1,1,0,0,2.834147061701403,0,0,32.57,20.42,1,1,0,0,2,1,0,684,0,0,0 +7874,9666,17624,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,2,0,5.878766271481751,6.069949726594887,3,0,-9,0,1,0,-1043.38080634026,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.478563770883368,5.758546027186269,0,0,50.53,21.83,6,1,0,0,6,2,1,483,0,0,0 +7875,9667,17625,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,6,3,0,5,0,0,0,4,0,0,0,-9,0,-1023.170802063996,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,0,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.53,57.01,6,1,0,0,9,1,0,1548,0,0,0 +7875,9667,17626,-9,17625,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1058.64858963419,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,1548,0,0,0 +7876,9668,17627,17628,-9,-9,1,1,1,37,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,3,0,8,-15.8278041257229,0,0,0,29,2,3,1,3,-9,2019,3,2,21,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.37,28.12,3,1,1,1,8,4,0,431,0,0,0 +7876,9668,17628,17627,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,3,8.541230667106742,8.710809941416704,0,1,0,-9,3,0,-8,38.89095205482376,0,1,1,37,2,2,3,-9,-9,2019,2,1,8,1,45,42,15,1,1,3,0,16.21655457229599,16.21655457229599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,2,0,0,8,4,0,431,0,0,0 +7877,9669,17629,17630,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.641660477945628,8.599054273807958,0,1,0,-9,5,0,-1,-134.7020654511243,0,0,0,58,2,3,1,3,3,2019,1,1,6,0,57,55,15,1,0,1,0,18.05921421021971,18.05921421021971,0,0,0,0,0,0,0,0,0,0,3.59530598288423,0,0,0,62.49,55.09,7,1,0,0,9,5,1,810.5,0,0,0 +7877,9669,17630,17629,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.051292923762793,8.131428497897481,0,1,0,-9,35,0,1,30.4394715855796,0,0,0,57,2,4,1,3,3,2019,1,2,10,0,36,36,15,1,0,1,0,11.53223984017142,11.53223984017142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,6,1,0,1,9,5,1,810.5,0,0,0 +7878,9670,17631,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,4,0,8.294951318508424,7.988827662998361,3,0,0,0,-9,0,-1054.10028562201,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,8.113785421193359,8.136101260638743,0,0,54.2,57.49,6,1,0,0,6,4,1,1805,0,0,0 +7879,9671,17632,-9,17634,17633,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1179.962037620125,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,9,5,1,982.3333333333334,0,0,0 +7879,9671,17633,17634,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,2,9.319830766882401,9.238845477622702,0,2,0,-9,7,0,-2,24.02296479838449,0,0,0,38,1,4,1,-9,-9,2019,1,1,18,7,40,37,15,1,7,1,0,39.41291657782205,39.41291657782205,0,0,0,0,0,0,0,0,0,0,4.602915301380433,0,0,0,41.87,35.22,5,1,0,0,9,5,1,982.3333333333334,0,0,0 +7879,9671,17634,17633,-9,-9,1,1,0,38,1,1,1,0,1,-9,2,1,0,4,7.845732730095603,8.005129889517566,0,2,0,-9,7,0,2,-132.5415299938105,0,0,1,36,1,2,1,2,2,2019,1,2,23,10,22,24,15,1,10,1,0,12.26168923149413,12.26168923149413,0,0,0,0,0,0,0,0,0,0,3.874188836873766,0,0,0,29.19,53.62,6,1,0,0,9,5,1,982.3333333333334,0,0,0 +7880,9672,17635,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.764575308927503,8.582042271886596,3.957897770414991,3,0,-9,0,-9,0,-1133.628236308986,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,0,15,1,0,-9,0,13.608443560535,13.608443560535,0,0,0,0,0,0,0,1,1,0,7.640267651563263,0,0,0,50.86,55.04,6,1,0,0,2,5,0,444,0,0,0 +7881,9673,17636,-9,17637,17638,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.363727705123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,6,4,1,928.6666666666666,0,0,0 +7881,9673,17637,17638,-9,-9,2,1,0,27,1,1,1,0,2,-9,2,1,0,3,7.62098692905457,7.364047489708208,0,2,0,-9,6,0,0,-51.88885024824245,0,1,1,27,2,2,1,-9,-9,2019,1,1,9,0,22,22,15,1,0,1,0,7.834760610251323,7.834760610251323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.42,53.49,6,1,0,0,6,4,1,928.6666666666666,0,0,0 +7881,9673,17638,17637,-9,-9,1,1,1,27,1,1,1,0,2,-9,2,1,0,2,8.608950247483993,8.302542076652122,0,2,0,-9,6,0,0,45.4511618965077,0,1,0,27,2,3,1,2,2,2019,1,2,26,8,38,38,15,1,8,1,0,13.18748151024695,13.18748151024695,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.14,54.44,2,1,0,0,6,4,1,928.6666666666666,0,0,0 +7882,9674,17639,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,5.23124628032351,5.050412464062568,3,0,0,0,-9,0,-1150.604441171125,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.417699708448096,5.082286164193758,.2349921495707172,3,55.61,39.56,2,1,0,0,10,2,1,194,0,0,0 +7883,9675,17640,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,1,0,6.59441116438621,6.448579907732196,3,0,0,0,-9,0,-955.1043644908785,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.674749670981185,6.223581235272965,0,0,49.49,25.33,3,1,0,1,5,2,1,1132,0,0,0 +7884,9676,17641,17642,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.594783688056388,8.860946672194689,0,1,0,-9,5,0,-1,70.84312163475374,0,1,1,29,1,4,1,2,1,2019,1,2,7,1,46,45,15,1,1,1,0,14.97131574383336,14.97131574383336,0,0,0,0,0,0,0,0,0,0,.6569839815773717,0,0,0,51.67,60.18,6,1,0,0,6,5,1,521.5,0,0,0 +7884,9676,17642,17641,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,7.917904660649114,7.80492657867295,0,1,0,-9,5,0,1,-146.49122538478,0,1,0,28,1,5,1,-9,-9,2019,1,1,10,0,43,42,15,1,0,1,0,10.06193157856688,10.06193157856688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,6,5,1,521.5,0,0,0 +7885,9677,17643,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,2,8.073854729817596,7.658823154175384,0,3,0,0,0,-9,0,-1057.219793803851,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,39,39,15,1,1,-9,0,7.297397434733547,7.297397434733547,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.6,36.53,6,1,0,0,12,3,1,486,0,0,0 +7886,9678,17644,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,4,9.114611305085424,8.607782394205582,6.766463672635963,3,0,0,0,-9,0,-933.5189905267916,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,28,30,15,1,0,-9,0,33.31729641698578,33.31729641698578,0,0,0,0,0,0,0,1,1,0,6.00491312977316,7.398518251638636,0,0,48.28,60.18,5,1,0,0,7,5,1,201,0,0,0 +7887,9679,17645,17646,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,5,8.876013867232841,8.861777659856045,0,2,0,-9,25,0,2,95.18324384762164,0,0,0,46,1,3,1,2,3,2019,1,2,6,0,40,35,15,1,0,1,0,20.92820188021961,20.92820188021961,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.15,49.39,6,3,0,0,4,5,1,516.5,0,0,0 +7887,9679,17646,17645,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,3,9.228197500262759,9.028493131430077,0,2,0,-9,25,0,-2,64.03336627544546,0,0,0,48,2,5,1,3,3,2019,1,1,12,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,51.53,6,3,0,0,4,5,1,516.5,0,0,0 +7888,9680,17647,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,2,8.290117159490698,8.299233568822494,0,3,0,0,0,-9,0,-1003.345417372519,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,40,37,15,1,4,-9,0,15.9198244111846,15.9198244111846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.94,43.44,3,1,0,0,10,4,1,1533,0,0,0 +7889,9681,17648,-9,17650,17651,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.268586066554,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,502.75,0,0,0 +7889,9681,17649,-9,17650,17651,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-994.060097082886,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,9,4,1,502.75,0,0,0 +7889,9681,17650,17651,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,4,8.557217578831169,8.597677242755763,0,2,0,-9,13,0,-1,-44.91568417526791,0,0,1,36,1,4,1,2,2,2019,1,2,5,0,37,38,15,1,0,1,0,11.56243363783547,11.56243363783547,0,0,0,0,0,0,0,1,1,0,6.226201117403753,0,0,0,57.16,56.15,7,1,0,0,9,4,1,502.75,0,0,0 +7889,9681,17651,17650,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,4,8.618140847490643,9.125741931173895,0,2,0,-9,9,0,1,-67.73906094878922,0,0,0,35,1,4,1,2,2,2019,1,1,18,5,37,40,15,1,5,1,0,18.59044158904662,18.59044158904662,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,56.08,5,1,0,0,9,4,1,502.75,0,0,0 +7890,9682,17652,17653,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,7.212930779664047,7.018604265492572,1,0,-9,52,0,3,63.67903313727975,0,0,0,70,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.450848183330142,7.539209147537714,0,0,54.79,55.86,6,1,0,0,8,2,1,708,0,0,0 +7890,9682,17653,17652,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-3,-10.40960356593456,0,0,0,73,3,4,3,3,-9,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,1,8,2,1,708,0,0,0 +7891,9683,17654,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,4,8.506652900276423,8.927346876795873,0,3,0,-9,0,0,0,-967.098842239869,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,21,9,57,37,15,1,9,-9,0,10.67616784158536,10.67616784158536,0,0,0,0,0,0,0,0,0,0,4.566948387729803,0,0,0,27.81,65.69,3,1,0,0,11,5,0,147,0,0,0 +7892,9684,17655,-9,17656,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1003.247813668619,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,9,3,0,806.3333333333334,0,0,0 +7892,9684,17656,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,4,8.421401435674966,8.377943909293885,0,4,0,0,0,-9,0,-890.8221235461291,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,25,12,37,40,15,1,12,-9,0,16.23929987206612,16.23929987206612,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.77,66.82000000000001,2,2,0,0,9,3,0,806.3333333333334,0,0,0 +7892,9684,17657,-9,17656,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1040.420750340084,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,2,0,0,9,3,0,806.3333333333334,0,0,0 +7893,9685,17658,17659,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.509905228707636,8.512257769900888,0,1,0,-9,8,0,-7,43.36513374083241,0,1,1,35,2,2,1,2,2,2019,1,1,10,1,36,36,15,1,1,1,0,17.15840350249502,17.15840350249502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.73,61.29,6,1,0,0,7,5,1,585,0,0,0 +7893,9685,17659,17658,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,2,8.53399591918525,8.359447314137872,0,1,0,-9,8,0,7,126.6441345511192,0,0,0,28,1,5,1,2,1,2019,1,2,12,1,44,52,15,1,1,1,0,13.7752426698095,13.7752426698095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.56,52.17,6,1,0,0,7,5,1,585,0,0,0 +7894,9686,17660,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,2,1,0,2,0,0,0,3,0,0,0,-9,0,-1023.767115640205,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,0,15,1,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.64,30.85,4,4,0,1,4,1,0,445,0,0,0 +7894,9687,17661,-9,17660,-9,2,1,0,30,2,0,0,0,1,-9,7,2,0,3,7.36045403333172,7.02889707940647,0,3,0,0,0,-9,0,-1178.221489943078,1,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,18,23,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,5,0,0,4,3,0,797,0,0,0 +7895,9688,17662,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,3,8.01366131291172,7.995882503739259,0,3,0,0,0,-9,0,-1014.133813816186,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,6.812402798005118,6.812402798005118,0,0,0,0,0,0,0,1,1,0,3.576025789627638,0,0,0,61.28,48.88,6,1,0,0,9,3,0,1330,0,0,0 +7896,9689,17663,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,2,1,0,3,8.885771691267687,8.556482298967659,0,3,0,-9,0,1,0,-1039.370379272684,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,37,37,15,1,0,-9,0,17.84334132324869,17.84334132324869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,1,5,1,626,0,0,0 +7897,9690,17664,17665,-9,-9,2,1,1,50,1,0,0,0,2,-9,1,1,0,3,8.303611025630351,8.578789822967758,0,1,0,-9,3,0,2,19.78608382446933,0,0,0,48,3,3,1,3,3,2019,1,1,11,0,40,0,15,1,2,1,0,13.26071731150971,13.26071731150971,0,0,0,0,0,0,0,0,0,0,5.830178662231205,0,0,0,48,51,5,1,0,0,2,5,1,1239,0,0,0 +7897,9690,17665,17664,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,3,8.018490227891212,8.104376035587176,0,1,0,-9,3,0,-2,-56.10206647359916,0,0,0,50,2,3,1,2,2,2019,1,2,12,0,0,30,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,50,5,1,0,0,2,5,1,1239,0,0,0 +7897,9691,17666,-9,17665,17664,3,1,0,24,3,0,0,0,2,-9,2,1,0,4,8.229366468004343,7.850907040329186,0,3,0,0,0,-9,0,-973.2394839372657,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,45,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.5308162113158373,0,0,0,62.49,55.09,6,1,0,0,2,4,1,884,0,0,0 +7898,9692,17667,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,4,0,4.782248074067635,4.918045237847024,3,0,0,0,-9,0,-992.6278692422337,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.28275612103794,5.196121345494102,0,0,51.24,58.84,7,1,0,0,8,2,0,666,0,0,0 +7899,9693,17668,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,7.274423448541406,7.328063848765988,3,0,0,0,-9,0,-887.6373968047008,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.836444685506867,7.182932908734617,0,0,58.07,46.29,7,1,0,0,4,3,1,312,0,0,0 +7900,9694,17669,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,8,3,1,1,0,2.934968267975343,3.326501282574069,3,0,0,0,-9,0,-981.867725606632,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.768395203134637,0,0,0,25.37,30.55,2,1,0,0,9,1,0,236,0,0,0 +7901,9695,17670,17671,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,2,6.697013148995864,6.400766580806818,0,1,0,-9,31,0,-2,-170.3072185692377,0,0,0,56,2,3,1,3,2,2019,1,1,13,1,14,12,15,1,1,1,0,6.626700905966592,6.626700905966592,0,0,0,0,0,0,0,0,0,0,2.415469465939582,0,0,3,41.58,52.86,3,1,0,0,5,4,1,401.5,0,0,0 +7901,9695,17671,17670,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.542671827260971,8.549582569490866,0,1,0,-9,31,0,2,-9.909218029226212,0,0,0,54,2,2,1,3,3,2019,1,2,9,0,50,45,15,1,0,1,0,11.84513456148893,11.84513456148893,0,0,0,0,0,0,0,0,0,0,1.943187939317572,0,0,3,53.14,51.28,4,1,0,0,5,4,1,401.5,0,0,0 +7901,9696,17672,-9,17670,17671,3,1,1,25,2,0,0,0,2,-9,2,1,0,3,8.865631810925583,8.443773001945212,0,3,0,0,0,-9,0,-984.0418916164623,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,25,7,39,0,15,1,7,-9,1,16.50345598623295,16.50345598623295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.68,61,2,1,0,0,5,5,1,1139,0,0,0 +7902,9697,17673,-9,17676,17675,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.9063839660467,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,4,1,572.6,0,0,0 +7902,9697,17674,-9,17676,17675,3,1,1,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1063.815141315718,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,5,4,0,0,8,4,1,572.6,0,0,0 +7902,9697,17675,17676,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,3,8.324964542984953,8.489491584601014,0,2,0,-9,11,0,9,-70.55781739271238,0,0,0,36,1,4,1,-9,-9,2019,1,1,18,5,70,0,15,1,5,1,0,6.250351569447896,6.250351569447896,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.71,25.23,6,4,0,0,8,4,1,572.6,0,0,0 +7902,9697,17676,17675,-9,-9,1,1,0,36,1,0,3,0,1,-9,2,1,0,4,8.594206375801271,8.815888731587608,0,2,0,-9,10,0,0,25.83850899288205,0,0,1,45,2,3,1,-9,-9,2019,1,2,19,6,35,0,15,1,6,1,0,13.856429767051,13.856429767051,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.33,62.51,3,4,0,0,8,4,1,572.6,0,0,0 +7902,9697,17677,-9,17676,17675,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.1272893480103,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,4,1,572.6,0,0,0 +7903,9698,17678,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1061.459341023359,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.79,41.71,6,1,0,0,12,1,0,101,0,0,0 +7904,9699,17679,17680,-9,-9,2,1,1,49,1,0,1,0,3,-9,2,1,0,4,8.105196378484248,8.056184982600495,0,2,0,-9,27,0,5,-36.25929639174561,0,0,0,44,2,3,3,3,3,2019,2,1,11,0,45,45,15,1,0,3,0,9.725040858608711,9.725040858608711,0,0,0,0,0,0,0,1,1,0,0,0,0,3,61.07,38.16,5,1,0,0,5,3,1,3257,0,0,0 +7904,9699,17680,17679,-9,-9,1,1,0,44,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,27,0,-5,53.48424129506522,-9,0,1,49,3,4,1,2,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.0271180811749,3,48.88,27.18,4,1,0,0,5,3,1,3257,0,0,0 +7905,9700,17681,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,2,0,7.849576469047187,7.633425626908081,3,0,0,0,-9,0,-884.2109993099568,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,13.0367599644147,0,0,0,0,45.74518617043404,1,1,0,6.914134744569771,7.565503769459639,0,0,56.5,24.37,6,1,0,0,5,3,1,748,0,0,0 +7906,9701,17682,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1060.463286197784,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.83,57.26,4,5,0,0,8,1,0,487,0,0,0 +7907,9702,17683,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,3,8.086203738394818,7.95708188044589,0,3,0,0,0,-9,0,-978.0631029053206,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,38,35,15,1,0,-9,0,11.79692824594887,11.79692824594887,0,0,0,0,0,0,0,0,0,0,.4770876307831894,0,0,0,43,53,5,1,0,0,2,4,0,622,0,0,0 +7907,9703,17684,-9,-9,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,3,8.368078368178288,7.986522119792701,0,3,0,0,0,-9,0,-962.1669067874872,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,48,47,15,1,0,-9,0,7.948960672361202,7.948960672361202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.92,47.86,6,1,0,0,2,4,0,4960,0,0,0 +7908,9704,17685,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,3,0,7.345645496678014,7.283386338040181,3,0,0,0,-9,0,-1066.800732585588,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,2.63427245046673,0,0,0,0,0,1,1,0,1.292953614036419,7.082823083220226,0,0,52.59,36.29,2,1,0,0,1,3,1,872,0,0,0 +7909,9705,17686,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,1,1,0,4,7.111134821507375,6.876534696034543,0,3,0,0,0,-9,0,-919.8884810906013,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,35,15,1,0,-9,0,2.887859778321754,2.887859778321754,0,0,0,0,0,0,0,1,1,0,.3067306905909398,0,0,3,54.2,57.49,5,1,0,0,10,2,0,233,0,0,0 +7910,9706,17687,-9,-9,-9,1,1,0,80,2,0,0,0,3,-9,4,3,0,3,0,5.468901904793717,5.12404965507431,3,0,0,0,-9,0,-938.5066167134344,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.427547111145451,0,0,52,45,6,1,0,0,13,2,1,1466,0,0,0 +7910,9707,17688,-9,-9,-9,2,1,1,76,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1038.565054971983,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.532554675442806,0,1,1,0,0,0,0,0,49.77,49.55,6,1,0,0,13,1,1,692,0,0,0 +7911,9708,17689,-9,17691,17690,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-831.8476846041819,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,0,230,0,0,0 +7911,9708,17690,17691,-9,-9,1,1,1,24,1,1,1,0,2,-9,2,1,0,3,7.911283271710277,7.850971440722655,0,2,0,-9,3,0,-2,92.16877522149679,0,1,0,26,2,4,1,-9,-9,2019,1,2,14,5,39,39,15,1,5,1,0,8.735832617606441,8.735832617606441,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,49.68,5,1,0,0,4,3,0,230,0,0,0 +7911,9708,17691,17690,-9,-9,2,1,0,26,1,1,1,0,2,-9,2,1,0,4,7.337540729839204,7.171911691939979,0,2,0,-9,3,0,2,30.90490566791084,0,1,1,24,2,3,1,-9,-9,2019,1,1,9,0,14,18,15,1,0,1,0,8.793046776101756,8.793046776101756,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.15,41.01,6,1,0,0,4,3,0,230,0,0,0 +7912,9709,17692,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1027.237457044499,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,39,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.58,28.51,6,1,1,1,5,1,0,320,0,0,0 +7913,9710,17693,17694,-9,-9,1,1,1,46,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,9,0,4,-77.59713812461138,0,0,0,42,2,4,1,3,3,2019,3,2,19,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.27,26.53,1,1,1,1,4,3,0,2208,0,0,0 +7913,9710,17694,17693,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,4,8.206894192272967,8.024251851545898,0,1,0,-9,9,0,-4,17.50997414787945,0,0,1,46,2,3,3,-9,-9,2019,2,1,13,2,52,0,15,1,2,3,0,5.914197735843794,5.914197735843794,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,4,1,0,0,4,3,0,2208,0,0,0 +7914,9711,17695,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,3,8.306420015211659,7.924887272311813,0,3,0,0,0,-9,0,-1011.720648405546,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,35,35,15,1,8,-9,0,11.0580874998962,11.0580874998962,0,0,0,0,0,0,0,0,0,0,3.608625975892012,0,0,0,29.27,49.94,4,1,0,0,8,4,0,708,0,0,0 +7915,9712,17696,-9,17697,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1009.891050030288,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,0,807.5,0,0,0 +7915,9712,17697,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,3,7.713085757629187,7.735960683601975,0,4,0,0,0,-9,0,-942.6207443595929,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,38,15,1,0,-9,0,6.293222955588722,6.293222955588722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,13,3,0,807.5,0,0,0 +7916,9713,17698,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,3,3,0,2,0,5.018300649859989,5.129724167689032,3,0,0,0,-9,0,-898.6157819127847,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.036734293946971,6.886351907956397,3,30.44,36.36,1,1,1,1,2,2,1,741,0,0,0 +7917,9714,17699,17700,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,5,6.016149890226171,6.022774064015669,0,1,0,-9,7,0,-2,23.79269996951983,0,0,0,69,2,4,3,2,2,2019,2,1,4,0,12,7,15,1,0,4,0,3.866280243390311,3.866280243390311,0,0,0,0,0,0,0,1,1,0,2.110537515621951,0,0,0,57.06,57.76,7,1,0,0,11,3,1,814,0,0,0 +7917,9714,17700,17699,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.606443595670333,7.496530945848881,1,0,-9,7,0,2,28.868028182501,0,0,0,67,2,5,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.286392357259365,7.380009838644743,2.478854989945406,3,58.15,52.91,6,1,0,0,11,3,1,814,0,0,0 +7918,9715,17701,17703,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,5,7.222749315623758,7.438916549830044,0,2,0,-9,9,0,0,-15.66658036595673,0,0,0,51,2,3,1,3,2,2019,1,1,15,4,39,45,15,1,4,1,0,5.404663946740182,5.404663946740182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,3,1,0,1,7,3,1,338,0,0,0 +7918,9715,17702,-9,17701,17703,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,3.689297697114955,3.676585652531753,2,0,0,0,-9,0,-979.5984723926175,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.897883778786639,0,0,0,53.39,52.35,6,1,0,0,7,3,1,338,0,0,0 +7918,9715,17703,17701,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,8.405184078354518,8.441344132561055,0,2,0,-9,9,0,0,38.54741542354264,0,0,0,51,2,5,1,2,3,2019,1,2,16,5,70,60,15,1,5,1,0,4.628257138547849,4.628257138547849,0,0,0,0,0,0,0,1,1,0,6.948207043899727,0,0,0,38.07,54.03,3,1,0,0,7,3,1,338,0,0,0 +7918,9716,17704,-9,17701,17703,3,1,0,22,2,0,1,0,1,-9,2,1,0,2,8.037028424842415,8.275844621352366,0,3,0,0,0,-9,0,-1142.614569017313,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,39,40,15,1,8,-9,1,8.329616934486323,8.329616934486323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.79,37.08,5,1,0,0,7,4,1,2018,0,0,0 +7919,9717,17705,17707,-9,-9,1,1,0,28,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,-8,0,0,1,1,36,2,5,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.1248155778944461,0,119.7023825732726,3,38.92,49.8,3,1,0,0,1,1,0,1619.5,0,0,0 +7919,9717,17706,-9,17705,17707,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.935805018303,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,1,0,1619.5,0,0,0 +7919,9717,17707,17705,-9,-9,2,1,1,36,1,0,3,0,2,-9,3,3,0,5,0,0,0,2,0,-9,2,0,8,0,0,0,0,28,2,3,3,-9,-9,2019,4,1,6,0,0,70,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,1,0,1,1,0,1619.5,0,0,0 +7919,9717,17708,-9,17705,17707,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-862.9721930125069,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,1,0,1619.5,0,0,0 +7920,9718,17709,-9,17711,17710,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.640505288701,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,5,5,1,431.75,0,0,0 +7920,9718,17710,17711,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,3,9.574486648916764,9.700893884486973,0,2,0,-9,18,0,0,-133.513068116944,0,0,0,41,1,2,1,2,2,2019,1,2,17,7,57,52,15,1,7,1,0,29.11858791655208,29.11858791655208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.84,46.5,5,1,0,0,5,5,1,431.75,0,0,0 +7920,9718,17711,17710,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,2,8.239777978660854,7.870334139357249,0,2,0,-9,18,0,0,-59.53327729002394,0,0,1,41,1,3,1,1,1,2019,1,1,6,0,24,21,15,1,0,1,0,19.76125900977478,19.76125900977478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.67,39.58,7,1,0,0,5,5,1,431.75,0,0,0 +7920,9718,17712,-9,17711,17710,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.0365290890433,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,5,5,1,431.75,0,0,0 +7921,9719,17713,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,7.020837592609364,7.172764449306566,3,0,0,0,-9,0,-1042.335576260095,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.235017673062186,0,0,0,0,0,1,1,0,3.235969829749328,6.888920553689872,0,0,61.97,27.01,6,1,0,0,9,2,1,393,0,0,0 +7922,9720,17714,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,3,8.482861583540037,8.515287682805432,0,3,0,0,0,-9,0,-1069.890212442062,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,38,15,1,0,-9,0,8.985609537725161,8.985609537725161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,4,1,0,0,1,4,0,2381,0,0,0 +7923,9721,17715,-9,-9,-9,1,1,0,49,3,0,2,0,3,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-1008.414900457235,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.3166918374129,3,58.9,13.94,5,1,0,0,9,1,0,1563.666666666667,0,0,0 +7923,9721,17716,-9,17715,-9,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-865.8539764826789,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,1563.666666666667,0,0,0 +7923,9721,17717,-9,17715,-9,5,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1183.383983737858,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,9,1,0,1563.666666666667,0,0,0 +7923,9722,17718,-9,17715,-9,2,1,1,26,2,0,2,0,2,-9,2,1,0,4,8.218832960054844,8.320378211323748,0,3,0,0,0,-9,0,-930.0498691458719,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,38,40,15,1,1,-9,1,12.20143324722923,12.20143324722923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,0,0,9,4,0,115,0,0,0 +7923,9723,17719,-9,17715,-9,3,1,1,20,2,0,2,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1062.389102732253,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,1,0,9,1,0,2369,0,0,0 +7924,9724,17720,17721,-9,-9,1,1,1,47,1,0,0,0,3,-9,1,1,0,4,8.073355894104971,8.119352738022897,0,1,0,-9,26,0,-1,-114.9254382429719,0,0,0,48,2,4,1,3,3,2019,1,2,12,0,40,45,15,1,0,1,0,10.55671840101794,10.55671840101794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.7,59.17,3,1,0,0,12,4,1,805.5,0,0,0 +7924,9724,17721,17720,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,4,7.89529168163536,7.81277398401769,0,1,0,-9,26,0,1,-42.18308503325797,0,0,0,47,3,4,1,2,3,2019,1,1,8,0,32,16,15,1,0,1,0,6.991828712294744,6.991828712294744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,12,4,1,805.5,0,0,0 +7924,9725,17722,-9,17721,17720,3,1,0,21,2,0,0,0,2,-9,2,1,0,5,7.872364873937275,8.098918477774845,0,3,0,0,0,-9,0,-1007.736952750871,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,2,0,37,35,15,1,0,-9,1,7.708872623500022,7.708872623500022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,12,3,1,579,0,0,0 +7924,9726,17723,-9,17721,17720,4,1,0,18,2,0,0,1,2,0,7,2,0,4,7.659296445538458,7.544410215693144,0,3,0,0,0,-9,0,-1009.134884242479,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,1,45,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.95,58.82,6,1,0,0,12,3,1,1078,0,0,0 +7925,9727,17724,17725,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,6.148487421134672,6.138024089190199,0,1,0,-9,46,0,-10,91.24578076645798,0,0,0,75,2,4,3,2,2,2019,4,1,6,0,14,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.45551236673248,0,0,0,57.16,56.15,6,1,0,0,10,3,1,1854,0,0,0 +7925,9727,17725,17724,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,7.040352712108823,8.116130903115975,7.541882900911558,1,0,-9,46,0,10,-64.48642617512192,0,0,0,65,2,4,3,2,2,2019,4,2,7,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.738234577129113,7.262560788223147,0,0,57.16,56.15,6,1,0,0,10,3,1,1854,0,0,0 +7926,9728,17726,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1014.314121983481,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.43,42.24,3,1,0,0,12,1,0,655,0,0,0 +7927,9729,17727,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-964.6254272340656,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,40.6,5,1,0,0,12,1,1,168,0,0,0 +7928,9730,17728,-9,17731,17730,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.94276929398,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,10,5,1,469.5,0,0,0 +7928,9730,17729,-9,17731,17730,3,1,0,17,2,0,2,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-963.994867749743,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,59.64,5,1,0,0,10,5,1,469.5,0,0,0 +7928,9730,17730,17731,-9,-9,2,1,1,61,1,0,2,0,1,-9,1,1,0,4,9.738322562655021,9.889491168487247,0,2,0,-9,7,0,7,-50.29547588015449,0,0,0,54,2,3,1,2,1,2019,1,1,8,0,97,97,15,1,0,1,0,18.04079736595036,18.04079736595036,0,0,0,0,0,0,0,1,1,0,6.280692090539263,0,0,0,54,53,6,1,0,0,10,5,1,469.5,0,0,0 +7928,9730,17731,17730,-9,-9,1,1,0,54,1,0,2,0,2,-9,1,1,0,3,8.962104368590069,8.991343462523185,0,2,0,-9,32,0,-7,-54.39509466388914,0,0,0,61,1,4,1,1,2,2019,1,2,6,0,50,20,15,1,0,1,0,19.0087204908578,19.0087204908578,0,0,0,0,0,0,0,1,1,0,9.610219422992886,0,0,0,58.89,48.6,6,1,0,0,10,5,1,469.5,0,0,0 +7929,9731,17732,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,5.750640934950289,5.725117838180382,3,0,0,0,-9,0,-986.7728394226501,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.727234293143489,0,0,43.64,27.74,5,1,0,0,10,2,0,312,0,0,0 +7930,9732,17733,17734,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,2,7.971778607999179,7.846866322721466,0,1,0,-9,31,0,-4,-18.17106765030844,0,0,0,59,2,3,1,-9,-9,2019,1,1,12,3,40,40,15,1,3,1,0,8.514705709827677,8.514705709827677,0,0,0,0,0,0,0,1,1,0,3.115183597656801,0,2.866450037169921,3,55.62,17.97,3,1,0,0,6,3,1,1009.5,0,0,0 +7930,9732,17734,17733,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,6.111716054839217,6.071459114451982,0,1,0,-9,31,0,4,146.3401034179,0,0,0,55,2,2,1,-9,-9,2019,1,2,16,4,9,10,15,1,4,1,0,4.439046876032564,4.439046876032564,0,0,0,0,0,0,0,1,1,0,0,0,0,2,46.44,36.61,4,1,0,0,6,3,1,1009.5,0,0,0 +7931,9733,17735,17736,-9,-9,1,1,1,66,1,0,0,0,2,-9,1,1,0,4,7.26730145312661,7.128748918105141,0,1,0,-9,4,0,-3,-94.2881195554944,0,0,0,69,2,3,3,3,3,2019,2,2,6,0,30,30,15,1,0,4,0,6.48102471851626,6.48102471851626,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,7,2,0,912.5,0,0,0 +7931,9733,17736,17735,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,4.226951214774453,4.710974476389598,1,0,-9,4,0,3,-43.77421413221991,0,0,0,66,2,4,1,-9,-9,2019,3,1,6,0,0,18,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.662748346944117,0,0,52.48,55.6,6,1,0,0,7,2,0,912.5,0,0,0 +7932,9734,17737,17738,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.268218133606235,8.20849832256628,0,1,0,-9,9,0,6,-57.9752790490888,0,0,0,40,2,4,1,-9,-9,2019,1,1,9,1,52,42,15,1,1,1,0,6.657571721825658,6.657571721825658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,7,1,0,0,2,4,0,130.5,0,0,0 +7932,9734,17738,17737,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,4,7.516823103862751,7.313004398980802,0,1,0,-9,9,0,-6,-48.1242053283493,0,0,1,46,2,4,1,1,2,2019,1,2,9,0,25,24,15,1,0,1,0,6.255282012984822,6.255282012984822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,5,1,0,0,2,4,0,130.5,0,0,0 +7933,9735,17739,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1008.291558532117,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,5,1,0,0,1,1,1,383,0,0,0 +7933,9736,17740,-9,17739,-9,2,1,1,55,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1134.570725094496,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,1,1,1,280,0,0,0 +7933,9737,17741,-9,17739,-9,3,1,1,53,2,0,0,0,2,-9,2,1,0,3,8.06053331171095,8.268174034177735,0,3,0,0,0,-9,0,-1106.678906333286,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,40,15,1,1,-9,1,8.461495651404793,8.461495651404793,0,0,0,0,0,0,0,1,1,0,6.203587088629709,0,0,0,50,49,5,1,0,0,1,4,1,1151,0,0,0 +7934,9738,17742,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.472548051743946,7.58964767929475,0,3,0,0,0,-9,0,-979.4788106649104,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,18,18,15,1,0,-9,0,12.93845708633725,12.93845708633725,0,0,0,0,0,0,0,0,0,0,5.46911649337755,0,0,0,37.83,60.91,3,1,0,0,2,3,1,467,0,0,0 +7935,9739,17743,17744,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,3,0,8.221076312954914,8.074953187427207,1,0,-9,7,0,1,-54.26230374954615,0,0,0,80,2,2,3,-9,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.065741738118009,8.194224692042976,0,0,39.14,46.96,7,1,0,0,9,3,1,448,0,0,0 +7935,9739,17744,17743,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-1,-147.1881182632056,0,0,0,81,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,.5914484514641916,0,0,0,0,27.01488803341416,1,1,0,1.373891574595419,0,0,0,60.12,33.7,6,1,0,0,9,3,1,448,0,0,0 +7936,9740,17745,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,2,0,6.31927908643729,6.537662267795405,3,0,0,0,-9,0,-971.0238575785984,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,4.482045140221523,0,0,9.241950846017854,6.797561451717256,105.9046206619843,1,1,0,6.468220176303917,6.220028485844678,0,0,56.93,23.19,5,1,0,0,9,2,0,2510,0,0,0 +7936,9741,17746,-9,-9,17745,2,1,1,53,3,0,0,0,2,-9,1,1,0,3,8.479647280324691,9.023600162145669,0,3,0,0,0,-9,0,-999.0809861036336,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,15,4,40,40,15,1,4,-9,1,15.62685633691514,15.62685633691514,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,45.74,3,1,0,0,9,5,0,300,0,0,0 +7937,9742,17747,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,4,8.116141083912325,8.199780211606305,0,3,0,0,0,-9,0,-1021.813229359973,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,44,46,15,1,6,-9,0,13.6924125594856,13.6924125594856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.11,56.11,6,4,0,0,8,4,1,546,0,0,0 +7938,9743,17748,17749,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,4,8.136609683403229,8.377419523082837,0,1,0,-9,1,-9,-2,34.47537570396031,-9,0,1,44,2,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,10.29192128237767,10.29192128237767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,6,1,0,0,11,5,1,672,0,0,0 +7938,9743,17749,17748,-9,-9,1,1,1,44,1,0,0,0,2,-9,1,1,0,4,9.021272138117487,8.999368753718821,0,1,0,1,1,-9,2,-13.81052191291147,0,0,0,42,1,4,1,2,3,2019,1,2,7,1,40,40,15,1,1,1,0,25.0756921756549,25.0756921756549,0,0,0,0,0,0,0,0,0,0,6.107851531285316,0,1.115790943062197,3,52.77,55.33,5,1,0,0,11,5,1,672,0,0,0 +7939,9744,17750,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,2,0,4.017814493726794,4.066862562393559,3,0,0,0,-9,0,-1010.77748130805,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,.5545708753296981,3.856541605014655,0,0,1,0,1,3.683342904807869,4.238826748651744,0,0,41.21,34.35,5,1,0,0,10,2,1,1002,0,0,0 +7940,9745,17751,17754,-9,-9,1,1,1,38,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,18,0,1,-32.87344542747125,0,0,0,37,2,3,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.11,22.85,6,1,1,0,2,2,0,796,0,0,0 +7940,9745,17752,-9,17754,17751,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.777504744915,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,2,2,0,796,0,0,0 +7940,9745,17753,-9,17754,17751,3,1,0,17,2,0,3,0,2,1,3,3,0,2,0,0,0,2,0,0,0,-9,0,-993.5775982222204,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.62,52.33,3,1,1,0,2,2,0,796,0,0,0 +7940,9745,17754,17751,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,3,7.185813484033297,7.287099917633038,5.351046865674561,2,0,-9,19,0,-1,-36.04968007532176,0,0,1,38,2,2,3,3,2,2019,2,1,23,10,24,24,15,1,10,3,0,6.241322612331776,6.241322612331776,0,0,0,0,0,0,0,1,0,1,5.188323886869803,0,2.750149997853657,3,33.88,60.32,2,1,0,0,2,2,0,796,0,0,0 +7941,9746,17755,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,7.087057230199067,7.55943586278042,3,0,0,0,-9,0,-956.5194167649404,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,2.224263702802105,0,14.08449267012309,5.165656594253235,0,0,1,1,0,3.653429350137525,7.149614230131496,0,0,36.89,39.78,7,1,0,0,12,3,1,1364,0,0,0 +7942,9747,17756,17757,-9,-9,1,1,1,63,1,0,0,0,1,-9,1,1,0,3,5.208842783969756,8.262604934160587,8.171548502339977,1,0,-9,22,0,4,-64.61475550119101,0,0,0,59,2,4,3,2,2,2019,2,2,9,0,24,0,15,1,0,4,0,.6512521235875484,.6512521235875484,0,0,0,0,0,0,0,0,0,0,7.657781148894226,8.165446983510902,0,0,56.52,48.31,6,1,0,0,2,4,1,450.5,0,0,0 +7942,9747,17757,17756,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,7.179825770799302,7.284152913127664,1,0,-9,8,0,-4,-107.222040944955,0,0,0,63,1,3,1,2,2,2019,3,1,4,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.878904532350743,7.153089811243364,0,0,57.16,56.15,7,1,0,0,2,4,1,450.5,0,0,0 +7943,9748,17758,-9,-9,-9,1,1,1,43,2,0,2,0,2,-9,1,1,0,2,7.23320205270791,7.29607200514372,0,4,0,0,0,-9,0,-898.0496656988211,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,30,15,1,0,-9,0,3.122974974762627,3.122974974762627,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.56,46.45,6,1,0,0,11,2,1,790.3333333333334,0,0,0 +7943,9748,17759,-9,-9,17758,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1007.137360944598,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,11,2,1,790.3333333333334,0,0,0 +7943,9748,17760,-9,-9,17758,2,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1080.061165155254,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,1,0,0,11,2,1,790.3333333333334,0,0,0 +7944,9749,17761,17762,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,2,0,8.135514058203603,7.622885112564849,1,0,-9,61,0,1,48.56924736113172,0,0,0,80,2,3,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.629156022373425,8.420373744391528,0,0,54.51,34.54,6,1,0,0,2,3,1,384,0,0,0 +7944,9749,17762,17761,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,-11.05992440102464,0,0,0,81,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.743617179621431,0,0,0,52,45,6,1,0,0,2,3,1,384,0,0,0 +7945,9750,17763,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,1,1,0,3,0,6.62738996360129,6.998875816449969,3,0,-9,0,0,0,-1017.753427101515,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.864441075364496,0,3,47.13,48.65,6,1,0,0,8,2,1,775,0,0,0 +7946,9751,17764,-9,17766,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-986.7979806785634,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,11,1,0,2293,0,0,0 +7946,9751,17765,-9,17766,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1045.483683057807,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,5,0,0,11,1,0,2293,0,0,0 +7946,9751,17766,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1136.438779508836,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.7,45.94,3,1,1,0,11,1,0,2293,0,0,0 +7947,9752,17767,-9,17768,17769,4,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1025.535508922795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,54,5,1,0,0,5,5,1,714.3333333333334,0,0,0 +7947,9752,17768,17769,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.595300068995599,7.966382270037654,0,2,0,-9,9,0,-1,-18.14618648471261,0,0,0,49,2,4,1,2,2,2019,1,1,8,0,37,37,15,1,0,1,0,8.070962021775756,8.070962021775756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,2,1,0,0,5,5,1,714.3333333333334,0,0,0 +7947,9752,17769,17768,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,9.407144845304238,9.355985740786393,0,2,0,-9,9,0,1,-66.10085742593097,0,0,0,48,2,3,1,2,2,2019,1,2,10,0,53,55,15,1,0,1,0,20.33847749856929,20.33847749856929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,5,5,1,714.3333333333334,0,0,0 +7947,9753,17770,-9,17768,17769,3,1,0,20,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-883.2720923954803,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,38,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,1,5,1,1,404,0,0,0 +7948,9754,17771,17772,-9,-9,1,1,0,47,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-3,-69.85032690185636,0,0,0,50,3,3,1,3,3,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.82,53.15,2,1,0,0,9,2,0,1074,0,0,0 +7948,9754,17772,17771,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,3,7.415601577925582,7.430997143937105,0,2,0,-9,8,0,3,-64.6927849910507,0,0,0,47,2,3,3,-9,-9,2019,2,1,17,5,24,24,15,1,5,3,0,6.580171435613692,6.580171435613692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.81,52.57,6,1,0,0,9,2,0,1074,0,0,0 +7948,9754,17773,-9,17771,17772,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.799311547374,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,1074,0,0,0 +7949,9755,17774,17775,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.245883937499705,8.589069517839997,0,1,0,-9,4,0,-1,24.10084528885834,0,0,1,31,1,4,1,-9,-9,2019,1,1,12,0,37,38,15,1,0,1,0,13.73050608858307,13.73050608858307,0,0,0,0,0,0,0,0,0,0,.7353908486835687,0,0,0,51.83,57.2,6,1,0,0,9,5,1,595.5,0,0,0 +7949,9755,17775,17774,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,4,9.613496761905079,9.428862855527479,0,1,0,-9,4,0,1,85.08074809381502,0,0,0,30,1,4,1,-9,-9,2019,1,2,10,0,43,44,15,1,0,1,0,38.06420627883889,38.06420627883889,0,0,0,0,0,0,0,0,0,0,4.392185256329939,0,0,0,52.82,53.97,6,1,0,0,9,5,1,595.5,0,0,0 +7950,9756,17776,-9,17777,17779,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.4707182140247,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,1366.25,0,0,0 +7950,9756,17777,17779,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,11,0,-5,-29.0826388654247,0,0,1,47,2,3,1,2,3,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.27,50.59,4,1,0,0,9,3,0,1366.25,0,0,0 +7950,9756,17778,-9,17777,17779,5,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.699234376593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,0,1366.25,0,0,0 +7950,9756,17779,17777,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.485796406107339,8.274021374776735,0,2,0,-9,12,0,5,-46.46334897977751,0,0,0,42,2,3,3,2,-9,2019,2,1,13,1,37,37,15,1,1,3,0,13.93665153317533,13.93665153317533,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,3,1,0,0,9,3,0,1366.25,0,0,0 +7951,9757,17780,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,5,0,5.572483853400152,5.538771808919743,3,0,0,0,-9,0,-1008.059208766583,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.080863181026672,5.529481557012994,0,0,47.58,63.43,6,5,0,0,8,2,1,532,0,0,0 +7952,9758,17781,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,4,3,0,2,0,6.606108897243477,6.3601055855445,3,0,0,0,-9,0,-931.9326802663627,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.456280098258862,6.325265371013434,0,0,55.51,35.51,3,1,0,0,9,2,1,1167,0,0,0 +7953,9759,17782,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,3,8.261620687430272,8.284148743124737,0,3,0,-9,0,-9,0,-890.2334480412184,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,37,0,15,1,2,-9,0,17.65416422188859,17.65416422188859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,1,0,0,1,5,1,293,0,0,0 +7954,9760,17783,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,4,0,6.699721473633792,6.653264944519469,3,0,0,0,-9,0,-968.3416429998717,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.494095139535852,7.036510034632604,0,0,52.82,53.97,2,1,0,0,11,2,0,290,0,0,0 +7955,9761,17784,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,5,7.69705967137187,7.649926655777398,0,3,0,0,0,-9,0,-1044.824678442904,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,21,21,15,1,0,-9,0,12.33506332609396,12.33506332609396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,11,3,1,820,0,0,0 +7956,9762,17785,17787,-9,-9,1,1,1,25,1,1,1,0,2,-9,2,1,0,3,8.290610142134543,8.179153595342195,0,2,0,-9,2,0,3,82.60683573280866,0,1,0,22,2,3,1,-9,-9,2019,1,2,13,3,44,44,15,1,3,1,0,10.47454920512861,10.47454920512861,0,0,0,0,0,0,0,1,1,0,.4151624690064017,0,0,0,48.7,56.22,6,1,0,1,10,3,0,956.3333333333334,0,0,0 +7956,9762,17786,-9,17787,17785,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-930.8809834337504,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,0,956.3333333333334,0,0,0 +7956,9762,17787,17785,-9,-9,2,1,0,22,1,1,1,0,2,-9,2,1,0,3,6.661014776515545,6.536611130748613,0,2,0,-9,2,0,-3,20.46997273231807,0,1,1,25,2,3,1,-9,-9,2019,1,1,6,0,15,14,15,1,0,1,0,6.319118692875037,6.319118692875037,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,10,3,0,956.3333333333334,0,0,0 +7957,9763,17788,17789,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,7.587355417571002,7.53111453045782,1,0,-9,51,0,0,-32.45238340856044,0,0,0,75,1,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.07197311104881,7.334544350682235,0,0,56.88,34.83,6,1,0,0,7,3,1,913,0,0,0 +7957,9763,17789,17788,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,2,0,5.305944250014281,5.428434861147195,1,0,-9,51,0,0,-74.30069308280412,0,0,0,75,1,2,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.99921536810217,5.025291697271564,0,0,41.68,44.86,3,1,0,0,7,3,1,913,0,0,0 +7958,9764,17790,17792,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,3,7.893742638813124,7.396752656708044,0,2,0,-9,16,0,0,-13.26408525348351,0,0,1,40,2,2,1,3,3,2019,1,1,11,0,20,24,15,1,0,1,0,10.96367385167082,10.96367385167082,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.9,54.53,6,1,0,0,5,4,1,600.75,0,0,0 +7958,9764,17791,-9,17790,17792,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.943024269506,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,600.75,0,0,0 +7958,9764,17792,17790,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,2,8.903715338420131,8.505662637457046,0,2,0,-9,18,0,0,45.0546503243728,0,0,0,40,2,3,1,3,2,2019,1,2,12,1,40,39,15,1,1,1,0,20.20944455558085,20.20944455558085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,50.24,4,1,0,0,5,4,1,600.75,0,0,0 +7958,9764,17793,-9,17790,17792,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.22839517121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,600.75,0,0,0 +7959,9765,17794,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,6.745711825550208,6.677576606404557,3,0,0,0,-9,0,-977.1719996208141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.672292638021435,7.074464161358,0,0,47.28,50.99,5,1,0,0,13,2,1,1321,0,0,0 +7960,9766,17795,17796,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,6.625342982845075,6.730158355790766,1,0,-9,51,0,1,-42.50087400032512,0,0,0,68,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.028025877032232,6.684396388251201,0,0,60.12,54.8,6,1,0,0,5,2,1,404,0,0,0 +7960,9766,17796,17795,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,4.964236678279311,4.714929400022478,1,0,-9,51,0,-1,-3.982382964821604,0,0,0,69,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.687801480968078,0,0,60.29,52.11,6,1,0,0,5,2,1,404,0,0,0 +7961,9767,17797,17798,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,8.318029308276298,8.420247122018978,0,1,0,-9,10,0,5,18.20730474297904,0,0,0,58,2,4,1,3,3,2019,1,2,6,0,50,55,15,1,0,1,0,10.5572497044606,10.5572497044606,0,0,0,0,0,0,0,0,0,0,6.889028333549891,0,0,0,57.16,56.15,6,1,0,0,5,4,1,219,0,0,0 +7961,9767,17798,17797,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.484299482953708,7.572176167178537,0,1,0,-9,10,0,-5,83.44488742465103,0,0,0,63,2,4,1,3,3,2019,1,1,7,0,20,20,15,1,0,1,0,11.10593299434269,11.10593299434269,0,0,0,0,0,0,0,0,0,0,.1640032835686399,0,0,0,57.16,56.15,6,1,0,0,5,4,1,219,0,0,0 +7961,9768,17799,-9,17798,17797,3,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.819625665672757,7.6329550583425,0,3,0,0,0,-9,0,-792.0681640568062,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,45,15,1,3,-9,1,8.535361229139639,8.535361229139639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.65,50.05,4,1,0,0,5,4,1,554,0,0,0 +7962,9769,17800,17801,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,3,0,7.067803113111421,6.943215686837154,1,0,-9,59,0,4,35.47860463825559,0,0,0,80,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.806215518953624,7.057800292377051,0,0,65.63,45.52,7,1,0,0,1,2,1,1065.5,0,0,0 +7962,9769,17801,17800,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,3,0,4.187198951759932,4.371665457012149,1,0,-9,59,0,-4,-14.03576771914557,0,0,0,84,3,3,3,3,3,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,1,0,.9002623684905613,0,0,0,0,1,1,0,7.367363138046415,4.435698697606274,0,0,41.18,41.95,6,1,0,0,1,2,1,1065.5,0,0,0 +7963,9770,17802,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-901.6487600558467,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.92456339950051,3,40.5,31.69,5,1,0,0,13,1,0,142,0,0,0 +7963,9771,17803,-9,17802,-9,2,1,1,26,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-992.9157356012909,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.14,38.66,5,1,1,0,13,1,0,165,0,0,0 +7964,9772,17804,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,6.088950772852225,6.080700098875973,3,0,0,0,-9,0,-981.6384058224875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,4.681019290254122,0,1,1,0,0,6.167187875164031,0,0,20.56,41.72,2,1,0,0,9,2,1,403,0,0,0 +7965,9773,17805,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-976.1949896424601,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,52,6,1,1,0,4,1,0,274,0,0,0 +7966,9774,17806,17807,-9,-9,1,1,0,52,1,0,1,0,1,-9,3,3,0,1,8.173493935659431,7.999974037752437,0,2,0,-9,24,0,3,-92.94036910481805,0,0,0,49,1,5,3,3,3,2019,4,2,32,12,45,17,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.15167489694353,0,15.50673754822945,3,9.33,55.75,2,1,1,0,6,5,1,217.3333333333333,0,0,0 +7966,9774,17807,17806,-9,-9,2,1,1,49,1,0,1,0,1,-9,3,3,0,5,9.124057631996401,8.968714978292379,0,2,0,-9,24,0,-3,-23.4169659494862,0,0,0,52,1,1,3,3,3,2019,4,1,6,0,37,41,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.122281021485272,0,0,0,49.96,56.89,6,1,1,0,6,5,1,217.3333333333333,0,0,0 +7966,9774,17808,-9,17806,17807,4,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1057.089065554616,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,6,5,1,217.3333333333333,0,0,0 +7966,9775,17809,-9,17806,17807,3,1,0,20,2,0,1,1,2,0,7,2,0,5,7.132272460759567,7.378089994766332,0,3,0,0,0,-9,0,-924.2422439292625,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.5123118561705421,0,0,0,54.1,59.11,5,1,0,1,6,3,1,389,0,0,0 +7967,9776,17810,17811,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,2,7.250694782042533,7.57348075191097,0,1,0,-9,36,0,0,-38.71599056769314,0,0,0,53,3,3,1,3,3,2019,1,2,12,1,10,8,15,1,1,1,0,19.56142635710416,19.56142635710416,0,0,0,0,0,0,0,0,0,0,6.246841644876962,0,0,0,43.54,54.88,5,1,0,0,11,4,1,282,0,0,0 +7967,9776,17811,17810,-9,-9,2,1,1,53,1,0,0,0,3,-9,1,1,0,3,8.455622237562384,8.16503239854821,0,1,0,-9,36,0,0,89.41551718814762,0,0,0,53,1,2,1,2,2,2019,1,1,20,8,25,60,15,1,8,1,0,18.54867700416876,18.54867700416876,0,0,0,0,0,0,0,0,0,0,4.550541654312203,0,0,0,44.59,45.67,4,1,0,0,11,4,1,282,0,0,0 +7968,9777,17812,-9,-9,-9,1,1,0,39,2,0,1,0,1,-9,2,1,0,3,8.396547890808115,8.745692438528931,0,4,0,0,0,-9,0,-1046.069817024021,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,25,40,15,1,0,-9,0,20.70607104912052,20.70607104912052,0,0,0,0,0,0,0,1,1,0,5.033083721004584,0,0,0,49.04,55.86,6,1,0,0,12,4,1,402.5,0,0,0 +7968,9777,17813,-9,17812,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-904.0220189803363,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,402.5,0,0,0 +7969,9778,17814,17815,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,4,8.528593848261091,8.218649178733859,0,2,0,-9,12,0,1,-88.28399901002142,0,0,0,52,2,3,1,2,3,2019,1,2,9,0,50,50,15,1,0,1,0,8.211876779266458,8.211876779266458,0,0,0,0,0,0,0,0,0,0,7.838781441725557,0,0,0,62.26,37.26,6,3,0,0,8,4,1,944,0,0,0 +7969,9778,17815,17814,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.154782776067931,8.23225760904436,0,2,0,-9,8,0,-1,23.25988355902438,0,0,0,53,2,4,1,-9,-9,2019,1,1,12,2,40,60,15,1,2,1,0,12.80325611760042,12.80325611760042,0,0,0,0,0,0,0,0,0,0,2.798646934372207,0,0,0,51.41,56.15,5,3,0,0,8,4,1,944,0,0,0 +7969,9778,17816,-9,17814,17815,3,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-934.0851330673304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,3,0,0,8,4,1,944,0,0,0 +7969,9779,17817,-9,17814,17815,4,1,1,22,2,0,1,0,1,-9,3,3,0,4,0,6.130572414457935,6.105374574242715,3,0,-9,0,-9,0,-1027.397491175865,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.493591765369581,0,0,0,49.26,41.81,5,3,1,0,8,2,1,1806,0,0,0 +7970,9780,17818,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.767887795311374,8.580132914498668,0,1,0,-9,1,-9,0,42.11836402810577,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,2,12,1,38,0,15,1,1,-9,0,14.11889729353764,14.11889729353764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,51.43,6,1,0,0,13,4,0,1300,0,0,0 +7971,9781,17819,17820,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,3,9.16468593339984,9.30863582389288,0,1,0,-9,34,0,2,40.18075913898731,0,0,0,58,2,5,1,2,3,2019,1,1,7,0,40,37,15,1,0,1,0,32.28671368019749,32.28671368019749,0,0,0,0,0,0,0,0,0,0,6.522512298772234,0,13.18475214888097,3,54.55,49.25,6,1,0,0,10,5,1,372.5,0,0,0 +7971,9781,17820,17819,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,5,8.161108871021026,8.372666503118284,0,1,0,-9,34,0,-2,-7.27687327005844,0,0,0,60,1,3,1,2,3,2019,1,2,6,0,37,31,15,1,0,1,0,11.99957608409917,11.99957608409917,0,0,0,0,0,0,0,0,0,0,5.009920954567677,0,4.413021336037104,3,61.73,46.03,6,1,0,0,10,5,1,372.5,0,0,0 +7972,9782,17821,17822,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,4,8.542824725444087,8.03506461460306,0,2,0,-9,6,0,-5,18.34347499352223,0,0,1,41,2,2,1,2,1,2019,1,2,6,0,37,40,15,1,0,1,0,14.03669026627936,14.03669026627936,0,0,0,0,0,0,0,1,1,0,0,0,118.4308203166188,3,54.2,57.49,5,1,0,0,12,4,1,449.2,0,0,0 +7972,9782,17822,17821,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,2,8.349899838242983,8.071247041144302,0,2,0,-9,6,0,5,76.64848653534393,0,0,0,36,2,4,1,2,2,2019,1,1,16,5,37,53,15,1,5,1,0,10.03572303012932,10.03572303012932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.18,49.96,5,1,0,0,12,4,1,449.2,0,0,0 +7972,9782,17823,-9,17821,17822,3,1,0,17,2,0,2,0,2,1,2,3,0,4,7.699463646755577,7.65061966961693,0,2,0,0,0,-9,0,-1099.704166232099,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,60,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.78,52.11,2,1,0,0,12,4,1,449.2,0,0,0 +7972,9782,17824,-9,17821,17822,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.5441232516148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,449.2,0,0,0 +7972,9782,17825,-9,17821,17822,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.0599408293937,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,449.2,0,0,0 +7973,9783,17826,17827,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,3,9.172055569068803,9.054793099191041,0,1,0,-9,6,0,1,82.43939120146307,0,0,0,62,1,5,1,-9,-9,2019,1,1,10,0,32,33,15,1,1,1,0,35.75415456018178,35.75415456018178,0,0,0,0,0,0,0,0,0,0,3.932324483170249,0,0,0,52,47,5,1,0,0,6,5,1,1283.5,0,0,0 +7973,9783,17827,17826,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,5,8.007324540069069,7.806771023398115,0,1,0,-9,41,0,-1,-140.0956768162735,0,0,0,63,1,3,1,3,3,2019,1,2,8,0,29,30,15,1,0,1,0,11.82957292405824,11.82957292405824,0,0,0,0,0,0,0,0,0,0,7.04750428461359,0,0,0,55.26,55.85,6,1,0,0,6,5,1,1283.5,0,0,0 +7974,9784,17828,-9,-9,-9,1,1,0,50,3,0,0,0,3,-9,2,1,0,3,7.851035315656957,7.756587902214796,4.309463084640034,3,0,-9,0,1,0,-926.4541527159603,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,5,36,30,15,1,5,-9,0,8.245589017271865,8.245589017271865,0,0,0,0,0,0,0,0,0,0,0,4.611112909060004,0,0,35.41,52.74,4,3,0,0,9,4,1,743,0,0,0 +7974,9785,17829,-9,17828,-9,2,1,1,28,2,0,0,0,1,-9,2,1,0,4,7.898906142794941,7.827382357315424,0,3,0,0,0,-9,0,-998.6286845067997,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,45,40,15,1,1,-9,1,7.974861306562005,7.974861306562005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,5,3,0,0,9,4,1,559,0,0,0 +7975,9786,17830,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,2,0,8.22247047018721,8.542478442073685,3,0,0,0,-9,0,-1026.045541615215,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.560844098790625,8.53340266847445,0,0,59.13,34.1,6,1,0,0,8,4,1,620,0,0,0 +7976,9787,17831,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,1,7.931829098650254,8.092200109416758,0,3,0,0,0,-9,0,-1098.522792016229,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,57,38,15,1,11,-9,0,8.499001462087431,8.499001462087431,0,0,0,0,0,0,0,1,1,0,3.423553528189061,0,5.941727523509002,3,41.13,22.99,6,1,0,1,6,4,0,511,0,0,0 +7977,9788,17832,17833,-9,-9,1,1,1,61,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,17,0,5,-46.1095290063375,0,0,0,56,3,2,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.37,28.07,3,1,0,0,2,3,0,1224,0,0,0 +7977,9788,17833,17832,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,2,7.807683441445576,8.303054556783549,0,1,0,-9,17,0,-5,-58.44442050629262,0,0,0,61,2,2,3,3,3,2019,2,1,14,2,41,39,15,1,2,3,0,6.151383124791431,6.151383124791431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,24.81,5,1,0,0,2,3,0,1224,0,0,0 +7978,9789,17834,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.824567791950304,8.726421269669835,0,3,0,0,0,-9,0,-1060.241801674078,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,65,0,15,1,2,-9,0,11.80546867355814,11.80546867355814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.68,55.12,6,1,0,0,10,5,0,660,0,0,0 +7979,9790,17835,17836,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.208905246137819,7.396961498593989,6.514128094764196,1,0,-9,10,0,-1,-62.3040156615243,0,0,0,61,2,3,3,2,3,2019,2,1,10,0,20,44,15,1,0,4,0,10.09406588360914,10.09406588360914,0,0,0,0,0,0,0,0,0,0,3.971595258522886,6.448238698539277,0,3,46.1,59.99,6,1,0,0,2,3,1,752,0,0,0 +7979,9790,17836,17835,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,3,0,7.486127987201274,7.641381812457197,1,0,-9,10,0,1,48.19603273097663,0,0,0,60,2,4,1,2,3,2019,3,2,22,9,0,37,15,4,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.18368265366899,7.406456291968547,0,0,44.34,49.64,5,1,0,0,2,3,1,752,0,0,0 +7980,9791,17837,-9,-9,-9,1,1,0,56,2,0,2,0,2,-9,2,1,0,4,7.036467971506266,7.042123162113001,0,4,0,0,0,-9,0,-1043.338718770374,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,20,16,15,1,0,-9,0,6.096056062091965,6.096056062091965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.21,51.96,6,4,0,0,8,2,0,308,0,0,0 +7980,9792,17838,-9,17837,-9,2,1,0,25,2,0,2,0,1,1,2,1,0,4,7.627276179571694,8.121735024169864,0,3,0,0,0,-9,0,-1124.775452889232,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,1,0,40,0,15,1,0,-9,1,8.089592122710751,8.089592122710751,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,6,4,0,0,8,4,0,1895,0,0,0 +7980,9793,17839,-9,17837,-9,3,1,1,24,2,0,2,0,2,-9,2,1,0,5,7.859407711430391,8.109063716602936,0,3,0,0,0,-9,0,-960.407424655875,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,48,20,15,1,0,-9,1,6.885209481232399,6.885209481232399,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,5,4,0,0,8,4,0,307,0,0,0 +7980,9794,17840,-9,17837,-9,4,1,1,22,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1094.629333024255,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,4,0,1,8,1,0,544,0,0,0 +7980,9795,17841,-9,17837,-9,5,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1130.348342196851,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,4,0,0,8,4,0,461,0,0,0 +7981,9796,17842,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,4,0,5.945956354340521,5.934832236633033,3,0,0,0,-9,0,-957.8530010918131,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.656622593369146,6.242846761787818,0,0,62.41,29.23,6,1,0,0,10,2,1,3223,0,0,0 +7982,9797,17843,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,3,0,8.56710891404496,8.014868113962171,3,0,0,0,-9,0,-1017.029953235229,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.463424173607609,8.385940170559513,7.462806351966922,3,54.77,42.47,5,1,0,0,6,4,1,394,0,0,0 +7983,9798,17844,17845,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,7.958468475051063,7.90640340481198,1,0,-9,8,0,2,-71.13850397415072,0,0,0,68,1,4,3,1,1,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.830462377901866,8.196399108183472,0,0,53.77,47.24,5,1,0,0,1,3,1,667,0,0,0 +7983,9798,17845,17844,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,5.782201112992399,5.76524706950563,1,0,-9,8,0,-2,36.34877870342213,0,0,0,70,1,2,3,1,1,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.350390033869949,6.26883333097273,0,0,53.39,52.35,6,1,0,0,1,3,1,667,0,0,0 +7984,9799,17846,17847,-9,-9,1,1,1,31,1,0,1,0,2,-9,2,1,0,3,8.308398426068448,8.373608943096352,0,2,0,-9,7,0,2,-1.995656935126618,0,0,0,29,2,4,1,2,2,2019,1,2,10,0,40,40,15,1,0,1,0,14.24562296707852,14.24562296707852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,6,4,1,622,0,0,0 +7984,9799,17847,17846,-9,-9,2,1,0,29,1,0,1,0,2,-9,2,1,0,4,6.656025452162313,6.84699320959866,0,2,0,-9,7,0,-2,-17.14778740484577,0,1,1,31,2,3,1,2,2,2019,1,1,7,0,16,16,15,1,0,1,0,6.324054507622513,6.324054507622513,0,0,0,0,0,0,0,1,1,0,0,0,2.655448703629508,3,57.16,56.15,6,1,0,0,6,4,1,622,0,0,0 +7984,9799,17848,-9,17847,17846,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.066823847348,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,622,0,0,0 +7985,9800,17849,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,4,0,7.4375991656527,7.288607841725858,3,0,0,0,-9,0,-1108.609472175149,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,1,8.931104810602479,0,1.853503095611817,0,0,0,1,1,0,0,7.553954990409775,0,0,62.46,25.63,6,1,0,0,5,3,1,483,0,0,0 +7986,9801,17850,17851,-9,-9,2,1,1,58,1,0,0,0,3,-9,1,1,0,4,9.286829406802855,9.092466515079767,0,1,0,-9,39,0,2,113.4943441407951,0,0,0,56,3,4,1,3,3,2019,1,1,5,0,35,0,15,1,0,1,0,26.62745622977161,26.62745622977161,0,0,0,0,0,0,0,0,0,0,2.656463668980628,0,0,0,60.12,54.8,7,1,0,0,7,5,1,510.5,0,0,0 +7986,9801,17851,17850,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,4,7.939117203862057,7.962281922502473,0,1,0,-9,39,0,-2,-190.592708284826,0,0,0,58,3,4,1,2,2,2019,1,2,8,1,32,0,15,1,1,1,0,10.71780235268867,10.71780235268867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.89,48.86,6,1,0,0,7,5,1,510.5,0,0,0 +7987,9802,17852,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1015.832146086933,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.26,53.88,4,1,1,0,5,1,0,718,0,0,0 +7988,9803,17853,17854,-9,-9,2,1,1,23,1,0,0,0,1,-9,2,1,0,4,7.758808782639846,7.907280462944846,0,1,0,-9,1,-9,1,75.31042343783761,-9,0,0,22,1,3,1,-9,-9,2019,1,1,3,0,37,0,15,1,0,1,0,6.893349465768059,6.893349465768059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.38,48,6,1,0,0,9,4,0,1024,0,0,0 +7988,9803,17854,17853,-9,-9,1,1,0,22,1,0,0,0,1,-9,2,1,0,3,7.956202490479945,7.576663782611635,0,1,0,1,1,-9,-1,-51.92724900348495,0,1,1,23,1,4,1,-9,-9,2019,1,2,12,1,37,38,15,1,1,1,0,8.813617049839724,8.813617049839724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,6,1,0,0,9,4,0,1024,0,0,0 +7989,9804,17855,-9,-9,-9,1,1,0,38,3,0,1,0,1,-9,2,1,0,3,8.382730595152617,8.379853059512914,0,4,0,0,0,-9,0,-932.346017780199,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,4,37,37,15,1,4,-9,0,17.06321848740108,17.06321848740108,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.78,54.5,4,1,0,0,11,4,1,504,0,0,0 +7989,9804,17856,-9,17855,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-977.3384611943769,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,504,0,0,0 +7990,9805,17857,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,6.357067583708477,6.200279517396007,3,0,0,0,-9,0,-1132.874238413347,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.094043717568648,0,0,50,47,6,1,0,0,6,2,0,1020,0,0,0 +7991,9806,17858,17859,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.252303725207865,8.405265676393935,0,1,0,-9,10,0,0,22.79515165142019,0,0,0,58,1,4,1,-9,-9,2019,1,1,6,0,32,30,15,1,0,1,0,12.44065109433718,12.44065109433718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,48.84,5,1,0,0,9,5,1,1111.5,0,0,0 +7991,9806,17859,17858,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,4,9.0054871733346,8.819123838481657,0,1,0,-9,10,0,0,18.18844810004599,0,0,0,58,2,3,1,3,3,2019,1,2,12,1,40,50,15,1,1,1,0,23.34895154036214,23.34895154036214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.38,55.6,5,1,0,0,9,5,1,1111.5,0,0,0 +7992,9807,17860,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,3,8.654659004892276,9.032381479374841,8.386475075699071,3,0,-9,0,-9,0,-1049.827767985912,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,52,0,15,1,2,-9,0,10.79590350609493,10.79590350609493,0,0,0,0,0,0,0,1,1,0,8.311904976133112,8.280325075486914,0,0,48,48,5,1,0,0,9,5,0,994,0,0,0 +7993,9808,17861,17862,-9,-9,2,1,1,39,1,0,0,0,1,-9,2,1,0,3,8.481730250964333,8.542946988724887,0,1,0,-9,8,0,-19,-104.0357677934509,0,0,0,58,2,4,1,2,2,2019,1,1,22,10,37,38,15,1,10,1,0,16.56240370543794,16.56240370543794,0,0,0,0,0,0,0,0,0,0,0,0,.4492537831074845,3,29.12,59.76,4,1,0,0,1,5,1,1603.5,0,0,0 +7993,9808,17862,17861,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,9.510256477814304,9.352350912113282,0,1,0,-9,8,0,19,91.28435417037622,0,0,0,39,1,3,1,2,2,2019,1,2,7,0,40,38,15,1,0,1,0,39.00554547106546,39.00554547106546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,1,5,1,1603.5,0,0,0 +7994,9809,17863,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,4,9.858787206737018,9.74890859750221,0,1,0,-9,17,0,-7,-34.34860898690815,0,0,0,-9,-9,-9,-9,-9,-9,2019,2,2,14,3,60,37,15,1,3,-9,0,30.36802209677557,30.36802209677557,0,0,0,0,0,0,0,1,1,0,5.780802749744525,0,6.540284969766261,3,52.47,49.93,6,1,0,0,6,5,1,480,0,0,0 +7994,9810,17864,-9,-9,-9,2,1,0,63,2,0,0,0,1,-9,97,3,0,4,7.07197158689504,8.087897012135475,7.412933477320038,1,0,-9,16,0,7,-14.79066447864548,0,0,0,-9,-9,-9,-9,1,1,2019,3,1,11,2,5,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.794638419935056,7.316391412921108,0,0,60.87,42.1,6,1,0,0,6,5,1,829,0,0,0 +7995,9811,17865,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-988.6461480088296,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.9,48.18,7,1,0,1,6,1,1,205,0,0,0 +7996,9812,17866,-9,17867,17869,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.674935063383,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,11,5,1,916.25,0,0,0 +7996,9812,17867,17869,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,3,9.106805640259989,8.835855530167997,0,2,0,-9,2,0,-3,-19.88538956907988,0,0,1,41,1,4,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,24.25186159185218,24.25186159185218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,11,5,1,916.25,0,0,0 +7996,9812,17868,-9,17867,17869,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.4999537181075,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,11,5,1,916.25,0,0,0 +7996,9812,17869,17867,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,9.396580531918808,9.368074111450078,0,2,0,-9,2,0,3,-8.075961132371841,0,0,0,38,1,3,1,3,3,2019,1,1,10,0,43,44,15,1,1,1,0,38.88478866398652,38.88478866398652,0,0,0,0,0,0,0,0,0,0,5.280138668513046,0,0,0,50.11,47.32,6,1,0,0,11,5,1,916.25,0,0,0 +7997,9813,17870,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,6.383473562613642,6.423787696232406,3,0,0,0,-9,0,-1043.827517992154,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.522273092786593,0,0,46.37,32.98,4,1,0,0,6,2,1,1522,0,0,0 +7998,9814,17871,17872,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,4,6.286185128672104,7.125836877371803,6.890943531003571,1,0,-9,42,0,1,.2205213062365811,0,0,0,59,2,3,1,-9,-9,2019,1,1,7,0,10,0,15,1,0,1,0,7.821855677292201,7.821855677292201,0,0,0,0,0,0,0,0,0,0,.2374264982883424,6.598597705813377,0,0,51.24,58.84,2,1,0,0,7,3,1,983,0,0,0 +7998,9814,17872,17871,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,6.999479079600565,7.248667107603198,0,1,0,-9,42,0,-1,186.6315944839987,0,0,0,60,3,4,1,-9,-9,2019,1,2,7,0,18,30,15,1,0,1,0,7.67837961281661,7.67837961281661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,6,1,0,0,7,3,1,983,0,0,0 +7999,9815,17873,17874,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-8,-63.10136946054386,0,0,0,77,1,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.971614687713719,0,0,0,55.9,51.29,6,1,0,0,2,4,1,647,0,0,0 +7999,9815,17874,17873,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,4,0,8.949143520111516,8.448083219182051,1,0,-9,45,0,8,1.817189673438572,0,0,0,69,1,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.34258188522358,8.712468238365743,0,0,63.48,51.85,2,1,0,0,2,4,1,647,0,0,0 +8000,9816,17875,17876,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.9802441073558,8.898260808989242,0,1,0,-9,18,0,9,-92.74461093058865,0,0,0,48,2,2,1,2,2,2019,1,2,9,1,37,41,15,1,1,1,0,23.8433717429113,23.8433717429113,0,0,0,0,0,0,0,0,0,0,5.805727814658981,0,0,0,49.97,56.66,6,1,0,0,2,5,1,354,0,0,0 +8000,9816,17876,17875,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,2,7.147782464155131,7.483572357393456,0,1,0,-9,18,0,0,-82.48981899090955,0,0,0,57,1,4,1,2,2,2019,1,1,5,0,8,0,15,1,0,1,0,20.61307658037692,20.61307658037692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.58,22.16,6,1,0,0,2,5,1,354,0,0,0 +8001,9817,17877,17878,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,6.702969328191023,6.38442841822473,1,0,-9,54,0,5,-79.93533941916434,0,0,0,73,3,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.598086181436166,6.624651668368791,0,0,51.25,46.55,6,1,0,0,9,5,1,2516,0,0,0 +8001,9817,17878,17877,-9,-9,2,1,1,73,1,0,0,0,3,-9,1,1,0,3,9.292596049328884,9.741867405052453,8.234718084696569,1,0,-9,6,0,-5,136.1993790261635,0,0,0,78,3,3,3,-9,-9,2019,2,1,10,0,50,46,15,1,1,4,0,17.8937243099259,17.8937243099259,0,0,0,0,0,0,0,1,1,0,0,8.553633332522265,0,0,53,47,5,1,0,0,9,5,1,2516,0,0,0 +8002,9818,17879,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,6.683652866923571,6.758706761395291,3,0,0,0,-9,0,-894.6959292887836,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.748789663608183,0,0,36.78,46.67,5,4,0,0,8,2,0,492,0,0,0 +8003,9819,17880,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,4,5.868130935070774,8.260176926417428,8.225785765577491,3,0,0,0,-9,0,-1062.576443550026,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,1,3,0,15,1,1,-9,0,9.944179333434395,9.944179333434395,0,0,0,0,0,0,0,1,1,0,4.534957817678514,8.248588563667273,17.35532165264376,3,52.77,55.33,5,1,0,0,10,4,1,543,0,0,0 +8004,9820,17881,-9,-9,-9,1,1,0,36,2,0,1,0,1,-9,2,1,0,2,7.67159774520715,8.145784745049767,0,4,0,0,0,-9,0,-1030.405543180362,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,37,36,15,1,2,-9,0,9.530698593165836,9.530698593165836,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.64,33.24,6,1,0,1,1,3,0,415,0,0,0 +8005,9821,17882,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,1,0,-1031.194654070785,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,32.51,42.8,3,1,0,0,2,1,1,272,0,0,0 +8006,9822,17883,-9,17884,17885,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-878.8501301951064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,5,1,1223,0,0,0 +8006,9822,17884,17885,-9,-9,1,1,0,35,1,1,1,0,1,-9,2,1,0,3,8.11841005849698,7.863462209810027,0,2,0,-9,4,0,-5,-9.68164023594511,0,0,1,40,1,4,1,2,2,2019,1,2,4,0,48,50,15,1,0,1,0,7.327307022019795,7.327307022019795,0,0,0,0,0,0,0,1,1,0,0,0,13.80389457576411,3,50.43,51.02,6,3,0,0,2,5,1,1223,0,0,0 +8006,9822,17885,17884,-9,-9,2,1,1,40,1,1,1,0,1,-9,2,1,0,4,8.769832876365195,8.951797254685701,0,2,0,-9,4,0,5,43.89274598926488,-9,0,0,35,1,3,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,17.62395978419872,17.62395978419872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,5,0,0,2,5,1,1223,0,0,0 +8007,9823,17886,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,4,0,4.981894987917597,5.149943543240505,3,0,0,0,-9,0,-977.736632467543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.612916435359883,4.591976993009757,0,0,55.73,43.25,6,1,0,0,11,2,1,335,0,0,0 +8008,9824,17887,-9,17889,17890,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.228497072163,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,715.8,0,0,0 +8008,9824,17888,-9,17889,17890,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.4012617735721,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,715.8,0,0,0 +8008,9824,17889,17890,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,7,0,-5,-130.6337628479509,0,0,1,42,1,5,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1429761851440313,0,0,0,62.39,56.71,7,1,0,0,10,4,1,715.8,0,0,0 +8008,9824,17890,17889,-9,-9,1,1,1,42,1,0,3,0,1,-9,2,1,0,5,8.935951080871897,8.766631126765727,0,2,0,-9,7,0,5,31.50787135085229,0,0,0,37,2,5,3,2,2,2019,2,2,8,0,43,45,15,1,0,3,0,17.89424442759049,17.89424442759049,0,0,0,0,0,0,0,1,1,0,4.413900149065156,0,0,0,45.81,61.51,6,1,0,0,10,4,1,715.8,0,0,0 +8008,9824,17891,-9,17889,17890,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.6168825887578,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,715.8,0,0,0 +8009,9825,17892,17893,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,4,8.251439980414419,8.580771667429325,0,1,0,-9,6,0,-5,-13.16215759235622,-9,1,1,30,2,3,1,-9,-9,2019,1,1,11,0,30,0,15,1,2,1,0,16.34278117023061,16.34278117023061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,1,0,0,4,5,0,982,0,0,0 +8009,9825,17893,17892,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,3,7.842301041153293,7.958558606473806,0,1,0,-9,6,0,5,-8.232344623375909,0,0,0,25,2,4,1,2,2,2019,1,2,11,1,40,48,15,1,1,1,0,8.051038983551363,8.051038983551363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.03,41.98,6,1,0,0,4,5,0,982,0,0,0 +8010,9826,17894,17895,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,5,7.458876159974891,7.27650352130905,0,1,0,-9,2,0,8,-58.06060505670693,0,0,0,27,2,4,1,3,2,2019,1,2,5,1,55,55,15,1,1,1,0,2.179626838579045,2.179626838579045,0,0,0,0,0,0,0,0,0,0,7.599164125593058,0,0,0,51.14,60.45,5,1,0,0,10,4,1,596.5,0,0,0 +8010,9826,17895,17894,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,4,8.688309523752919,8.635028632181255,0,1,0,-9,2,0,-8,-79.53561788490376,0,1,1,35,2,5,1,-9,-9,2019,1,1,7,0,37,40,15,1,0,1,0,16.9834383524168,16.9834383524168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,5,1,0,0,10,4,1,596.5,0,0,0 +8011,9827,17896,-9,17900,17899,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.514843710013,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,0,808.1666666666666,0,0,0 +8011,9827,17897,-9,17900,17899,2,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.230051408889,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,0,808.1666666666666,0,0,0 +8011,9827,17898,-9,17900,17899,4,1,1,12,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1020.337304145482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,3,0,808.1666666666666,0,0,0 +8011,9827,17899,17900,-9,-9,3,1,1,42,1,0,4,0,2,-9,2,1,0,4,7.685685699200723,7.63311344077043,0,2,0,-9,7,0,7,48.22149166268897,0,0,0,35,2,3,1,3,3,2019,1,1,11,0,40,40,15,1,0,1,0,5.254777608918389,5.254777608918389,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,52.14,5,1,0,0,12,3,0,808.1666666666666,0,0,0 +8011,9827,17900,17899,-9,-9,1,1,0,35,1,0,4,0,2,-9,2,1,0,3,7.461247348063584,7.822256295555245,0,2,0,-9,7,0,-7,-70.53849142926705,0,0,1,42,2,4,1,3,3,2019,1,3,9,2,36,27,15,1,2,1,0,6.076456039176422,6.076456039176422,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.13,48.65,7,1,0,0,12,3,0,808.1666666666666,0,0,0 +8011,9827,17901,-9,17900,17899,5,1,1,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-834.3009928529741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,3,0,808.1666666666666,0,0,0 +8012,9828,17902,-9,17904,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-996.6178821141663,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,2,1,1404,0,0,0 +8012,9828,17903,-9,17904,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-953.3823879782947,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,1,1404,0,0,0 +8012,9828,17904,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,2,1,0,3,7.573687595735461,7.508603564137129,0,4,0,-9,0,-9,0,-1149.172091459943,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,31,0,15,1,1,-9,0,7.424469412705944,7.424469412705944,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.75,54.92,3,1,0,1,6,2,1,1404,0,0,0 +8013,9829,17905,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,3,8.170791901726117,8.070126248489331,0,3,0,0,0,-9,0,-989.4883503266437,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,44,15,1,2,-9,0,12.2817609237341,12.2817609237341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,5,1,0,0,12,4,0,339,0,0,0 +8014,9830,17906,-9,-9,-9,1,1,0,51,2,0,1,0,2,-9,2,1,0,4,8.685940254619931,8.564813715042099,0,4,0,0,0,-9,0,-1108.80077210407,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,51,15,1,0,-9,0,12.94328178036541,12.94328178036541,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.37,46.88,2,4,0,0,8,4,1,595,0,0,0 +8014,9830,17907,-9,17906,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1026.840219984755,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,4,0,0,8,4,1,595,0,0,0 +8015,9831,17908,17910,-9,-9,2,1,1,22,1,0,1,0,2,-9,2,1,0,5,8.200854382518388,7.914470888421062,0,2,0,-9,4,0,-2,60.81041987919434,0,1,0,24,1,4,1,-9,-9,2019,1,1,7,0,56,40,15,1,0,1,0,8.984508208548458,8.984508208548458,0,0,0,0,0,0,0,1,1,0,0,0,12.47148929830374,3,54.1,59.11,6,1,0,0,2,3,0,360.6666666666667,0,0,0 +8015,9831,17909,-9,17910,17908,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.908470933894,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,0,360.6666666666667,0,0,0 +8015,9831,17910,17908,-9,-9,1,1,0,24,1,0,1,0,1,1,2,1,0,4,5.948266493525567,5.829877000869059,0,2,0,-9,4,0,2,67.81862133788255,-9,1,1,22,2,5,1,2,2,2019,1,2,13,1,35,0,15,1,1,1,0,1.598344795318003,1.598344795318003,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.69,58.35,6,1,0,0,2,3,0,360.6666666666667,0,0,0 +8016,9832,17911,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1084.980690448331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,36.25,5,1,0,0,5,1,1,394,0,0,0 +8017,9833,17912,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,2,7.718674522539397,7.89101953110884,0,3,0,0,0,-9,0,-1028.26079542524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,37,0,15,1,3,-9,0,9.131169641237522,9.131169641237522,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.66,26.38,3,1,0,1,2,3,0,261,0,0,0 +8018,9834,17913,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1063.123861663974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,8,1,0,979,0,0,0 +8019,9835,17914,17915,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,4,7.181119544233028,6.907561189805925,0,1,0,-9,11,0,6,42.68523782887104,0,0,0,54,2,3,1,3,3,2019,1,1,10,0,20,20,15,1,0,1,0,6.57902687970984,6.57902687970984,0,0,0,0,0,0,0,0,0,0,.8390261762042912,0,0,0,45.91,59.89,4,1,0,0,9,4,1,212.5,0,0,0 +8019,9835,17915,17914,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.464468088583434,8.642466085001253,0,1,0,-9,11,0,-6,-83.5525322975739,0,0,0,60,3,4,1,3,3,2019,1,2,15,4,13,60,15,1,4,1,0,45.16788364865889,45.16788364865889,0,0,0,0,0,0,0,0,0,0,3.740887551107488,0,8.200682069643628,3,50.43,45.82,5,1,0,0,9,4,1,212.5,0,0,0 +8020,9836,17916,17917,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,43,0,4,0,0,0,0,64,2,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,129.7221150169989,0,0,0,0,1,1,0,1.40234847916153,0,0,0,40.86,47.62,5,1,0,0,13,1,0,431,0,0,0 +8020,9836,17917,17916,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,10,0,-4,0,0,0,0,68,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,28.62290867758395,0,0,1,1,0,0,0,3.171857705284663,1,49.2,27.29,4,1,0,0,13,1,0,431,0,0,0 +8021,9837,17918,17921,-9,-9,2,1,1,39,1,0,3,0,2,-9,2,1,0,5,6.746605214268594,6.504898820373502,0,2,0,-9,5,0,8,74.64475943810241,0,0,0,31,2,4,1,-9,-9,2019,1,1,12,0,12,0,15,1,0,1,0,7.176120828900256,7.176120828900256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,1,3,0,724.4,0,0,0 +8021,9837,17919,-9,17921,17918,4,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-999.9876377336341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,1,3,0,724.4,0,0,0 +8021,9837,17920,-9,17921,17918,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.248374207531,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,3,0,724.4,0,0,0 +8021,9837,17921,17918,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,4,8.093344170998741,8.143685058437498,0,2,0,-9,5,0,-8,-30.70562341891798,0,0,1,39,2,5,1,-9,-9,2019,1,2,7,0,37,37,15,1,0,1,0,8.173146697597911,8.173146697597911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,1,3,0,724.4,0,0,0 +8021,9837,17922,-9,17921,17918,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.441845624407,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,3,0,724.4,0,0,0 +8022,9838,17923,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,3,0,6.815536552788105,7.135088208920751,3,0,0,0,-9,0,-906.0291852830965,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,48.78438219788601,0,0,0,0,501.9939475763721,1,1,0,7.582702588592903,7.25547154882655,0,0,53,44,6,1,0,0,8,3,0,455,0,0,0 +8023,9839,17924,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,2,7.804667772121145,7.909186762059526,0,3,0,0,0,-9,0,-968.5568737317725,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,37,30,15,1,1,-9,0,8.815354063346545,8.815354063346545,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.24,31.17,5,1,0,0,9,3,0,172,0,0,0 +8024,9840,17925,17927,-9,-9,1,1,0,46,1,0,1,0,1,-9,2,1,0,3,6.863932172069994,7.173216502800378,0,2,0,-9,8,0,6,11.54071018501259,0,0,0,40,1,3,1,3,1,2019,1,2,11,0,15,16,15,1,0,1,0,10.13740310297451,10.13740310297451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,52.22,6,1,0,0,9,5,1,1269,0,0,0 +8024,9840,17926,-9,17925,17927,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.008690458802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1269,0,0,0 +8024,9840,17927,17925,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,3,9.443781625845068,9.387516230707924,0,2,0,-9,8,0,-6,-2.173305857691289,0,0,0,46,1,3,1,-9,-9,2019,1,1,23,8,50,50,15,1,8,1,0,23.05186057021965,23.05186057021965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,3,1,0,0,9,5,1,1269,0,0,0 +8025,9841,17928,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,3,8.951125707895592,8.2970275810773,0,3,0,0,0,-9,0,-1006.715772397733,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,41,0,15,1,1,-9,0,16.30054669979079,16.30054669979079,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,44.61,5,4,0,0,8,5,1,683,0,0,0 +8026,9842,17929,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,3,3,0,3,0,4.781021379779062,4.65970933739437,3,0,0,0,-9,0,-875.8499982620716,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.715049155186434,0,0,37.83,55.74,2,1,1,1,12,1,0,867,0,0,0 +8027,9843,17930,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,3,7.82923086683974,7.73278879048698,0,3,0,0,0,-9,0,-1074.644740312063,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,60,40,15,1,1,-9,0,3.886096238437638,3.886096238437638,0,0,0,0,0,0,0,0,0,0,0,0,13.48260348452422,3,55.77,31.2,2,1,0,0,1,3,1,178,0,0,0 +8028,9844,17931,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,4,9.172688243759731,9.371130995009324,0,4,0,0,0,-9,0,-952.6060094107742,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,41,61,15,1,0,-9,0,30.02717870457161,30.02717870457161,0,0,0,0,0,0,0,1,1,0,.2646810593620673,0,0,0,51.83,57.2,3,2,0,0,8,5,1,198.5,0,0,0 +8028,9844,17932,-9,17931,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1031.292612086324,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,6,2,0,0,8,5,1,198.5,0,0,0 +8029,9845,17933,-9,17934,17935,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.218802171307,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,4,1,862,0,0,0 +8029,9845,17934,17935,-9,-9,2,1,0,27,1,0,2,0,2,-9,2,1,0,4,8.197037380089249,8.337049587127405,0,2,0,-9,10,0,-10,56.21965108293858,0,1,1,37,2,5,1,-9,-9,2019,1,1,4,0,37,39,15,1,0,1,0,13.08066862156507,13.08066862156507,0,0,0,0,0,0,0,1,1,0,7.055571505646587,0,0,0,59.53,56.44,7,4,0,0,6,4,1,862,0,0,0 +8029,9845,17935,17934,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,5,8.887892485954746,8.548317521862051,0,2,0,-9,10,0,10,226.8296342308537,0,0,0,27,2,4,1,2,1,2019,1,2,6,0,35,35,15,1,0,1,0,19.7693119152442,19.7693119152442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,6,4,1,862,0,0,0 +8029,9845,17936,-9,17934,17935,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-894.922731552912,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,2,0,0,6,4,1,862,0,0,0 +8030,9846,17937,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,4,3,0,2,0,5.752680482422859,6.069150558411621,3,0,0,0,-9,0,-1108.570428817374,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,10,0,37,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.642067208912411,6.008131447213362,0,0,36.43,28.27,4,1,0,0,6,2,1,389,0,0,0 +8031,9847,17938,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-865.3552762322942,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,1,4.454012850131339,0,0,0,0,32.33930483146781,1,1,0,0,0,0,0,35.46,15.4,1,1,0,0,13,1,0,974,0,0,0 +8032,9848,17939,17940,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,4,9.338940169206422,9.445057686745372,0,2,0,-9,19,0,1,-97.02573253100405,0,0,0,43,1,5,1,2,2,2019,1,2,19,8,40,78,15,1,8,1,0,27.32505022099429,27.32505022099429,0,0,0,0,0,0,0,0,0,0,3.850573372596094,0,0,0,33.49,64.26000000000001,3,1,0,0,8,5,1,489,0,0,0 +8032,9848,17940,17939,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,5,8.153037176860813,7.777619639973689,0,2,0,-9,19,0,-1,6.54966608732825,0,0,1,44,1,4,1,2,2,2019,1,1,8,0,23,21,15,1,0,1,0,17.93618783177529,17.93618783177529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,8,5,1,489,0,0,0 +8033,9849,17941,17942,-9,-9,2,1,0,74,1,0,1,0,2,-9,4,3,0,4,0,6.75180296145852,6.984443388640381,2,0,-9,56,0,-2,214.2705846159288,0,0,0,76,2,5,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.934697316624095,5.381666239888538,0,0,48.54,54.5,5,1,0,0,5,2,1,509,0,0,0 +8033,9849,17942,17941,-9,-9,1,1,1,76,1,0,1,0,2,-9,4,3,0,5,0,7.18656619760517,7.01398488781247,2,0,-9,56,0,2,-9.125721402443947,0,0,0,74,2,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.87579995843224,7.083076189186356,8.555604213010943,3,55.26,55.85,5,1,0,0,5,2,1,509,0,0,0 +8034,9850,17943,17944,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,3,8.135189900003882,8.191454134771385,0,1,0,-9,9,0,3,-47.85426081610503,0,0,0,52,1,3,1,-9,-9,2019,1,2,19,7,28,28,15,1,7,1,0,11.57471089148646,11.57471089148646,0,0,0,0,0,0,0,0,0,0,0,0,12.06704467779421,3,46.61,56.93,5,1,0,0,8,3,0,1837.5,0,0,0 +8034,9850,17944,17943,-9,-9,2,1,1,52,1,0,0,0,1,-9,1,1,0,3,0,0,0,1,0,-9,9,0,-3,60.62934001772663,0,0,0,55,1,3,1,3,3,2019,1,1,10,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,46.67,55.57,5,1,0,0,8,3,0,1837.5,0,0,0 +8035,9851,17945,-9,17947,17948,2,1,0,28,2,1,1,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1146.526510167389,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.922831171386413,3,27.39,46.07,1,3,1,0,8,1,1,381,0,0,0 +8035,9851,17946,-9,17945,-9,4,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1076.594487453445,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,1,1,381,0,0,0 +8035,9852,17947,17948,-9,-9,1,1,0,67,1,1,1,0,3,-9,4,3,0,1,0,0,0,2,0,-9,42,0,-8,0,0,0,0,75,3,1,3,3,3,2019,4,3,29,10,0,0,15,4,10,4,0,0,0,1,0,0,26.2484556016719,0,0,0,1,1,0,0,0,0,0,21.72,22.57,1,3,0,1,8,1,1,635.5,0,0,0 +8035,9852,17948,17947,-9,-9,3,1,1,75,1,1,1,0,3,-9,4,3,0,1,0,0,0,2,0,-9,8,0,8,0,0,0,0,67,3,1,3,-9,-9,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,1,0,29.20573640301333,10.31733998405882,0,0,0,1,1,0,0,0,0,0,20.9,21.84,2,3,0,1,8,1,1,635.5,0,0,0 +8036,9853,17949,17950,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,19,0,-6,-5.375949052445845,0,0,0,73,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.965572650930146,0,0,0,64.23,41.86,7,1,0,0,5,2,1,232.5,0,0,0 +8036,9853,17950,17949,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,5.020309543853103,6.76513639493203,6.854556756337228,1,0,-9,20,0,6,-50.75542937064447,0,0,0,67,3,4,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.431646871009781,6.804421334195619,0,0,57.33,53.46,6,1,0,0,5,2,1,232.5,0,0,0 +8037,9854,17951,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,4,0,7.152226476487199,7.232377566158634,3,0,0,0,-9,0,-963.9978254612505,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.79027320424926,7.430465048643166,0,0,57.16,56.15,6,1,0,0,9,3,1,404,0,0,0 +8038,9855,17952,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,5.449358193802305,5.968708608072251,3,0,0,0,-9,0,-1017.231996381844,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.20529807557013,0,0,23.05,39.29,3,1,0,0,10,2,0,2372,0,0,0 +8039,9856,17953,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,5,8.552279477126563,8.36859075194009,0,3,0,0,0,-9,0,-956.3675446210327,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,38,37,15,1,0,-9,1,9.078505896095376,9.078505896095376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,2,4,1,421,0,0,0 +8040,9857,17954,17955,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,7.519888052639504,7.526976713263873,1,0,-9,44,0,2,40.6018275957166,0,0,0,62,2,3,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.004750189795153,7.843844482623672,0,0,51.83,57.2,6,1,0,0,9,3,1,591.5,0,0,0 +8040,9857,17955,17954,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,44,0,-2,98.03929808744678,0,0,0,64,1,4,3,2,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.608414392691683,0,0,0,54.96,53.17,6,1,0,0,9,3,1,591.5,0,0,0 +8041,9858,17956,17957,17958,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,2,7.150422127377517,7.506520732380649,6.12208190898424,1,0,-9,38,0,-4,-98.49667461019105,0,0,0,64,2,3,1,3,3,2019,1,2,16,5,18,18,15,1,5,1,0,7.320730304045653,7.320730304045653,0,0,0,0,0,0,0,1,1,0,0,6.526710238922673,9.120251383752866,3,48.83,22.41,5,1,0,0,1,2,1,653,0,0,0 +8041,9858,17957,17956,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,3,5.10717487176659,4.823501194579501,0,1,0,-9,7,0,4,109.390446982341,0,0,0,60,2,2,1,-9,-9,2019,1,1,10,0,10,8,15,1,1,1,0,1.670416199063076,1.670416199063076,0,0,0,0,0,0,0,1,1,0,7.176092007630426,0,0,2,52,48,5,1,0,0,1,2,1,653,0,0,0 +8041,9859,17958,-9,-9,-9,3,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,6.65494372142383,6.303233369875079,3,0,0,0,-9,0,-1199.628595236,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.35025311452718,0,0,53,44,6,5,0,0,1,2,1,708,0,0,0 +8042,9860,17959,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-947.8873099385183,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.922940527278377,0,1,1,0,3.659098576262461,0,0,0,60.71,42.8,6,1,0,0,2,1,0,489,0,0,0 +8043,9861,17960,-9,17961,17965,4,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.164948469147,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,2,2,1,554.6666666666666,0,0,0 +8043,9861,17961,17965,-9,-9,1,1,0,39,1,0,4,0,1,-9,6,3,0,3,0,5.221852188298861,5.1030446435587,2,0,-9,8,0,-3,-28.6807135002665,0,0,1,42,1,1,3,2,1,2019,4,3,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.159647090289091,0,115.1179909124064,2,34.81,39.24,5,1,0,0,2,2,1,554.6666666666666,0,0,0 +8043,9861,17962,-9,17961,17965,5,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.952117117405,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,1,554.6666666666666,0,0,0 +8043,9861,17963,-9,17961,17965,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.448831968511,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,2,1,554.6666666666666,0,0,0 +8043,9861,17964,-9,17961,17965,2,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.8199844758752,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,1,554.6666666666666,0,0,0 +8043,9861,17965,17961,-9,-9,3,1,1,42,1,0,4,0,1,-9,8,3,1,1,0,0,0,2,0,-9,8,0,3,80.95968508946071,0,0,0,39,1,3,3,-9,-9,2019,4,1,20,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.9075545210151,3,51.42,13.45,3,1,0,0,2,2,1,554.6666666666666,0,0,0 +8044,9862,17966,17967,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.775562509404252,7.030995448613358,1,0,-9,50,0,3,6.64322138831273,0,0,0,69,2,3,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.463926687984489,7.161638422168152,0,0,59.43,49.68,6,1,0,0,11,2,1,596,0,0,0 +8044,9862,17967,17966,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-3,49.38202845675036,0,0,0,72,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,7,1,0,0,11,2,1,596,0,0,0 +8045,9863,17968,17969,-9,-9,2,1,1,60,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,8,0,4,0,0,0,0,56,2,3,3,-9,-9,2019,4,1,12,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.53,27.91,5,1,0,0,2,1,0,560.5,0,0,0 +8045,9863,17969,17968,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,8,0,-4,0,0,0,0,60,3,2,3,2,2,2019,4,2,19,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.610658174294,1,43.44,40.89,1,1,0,0,2,1,0,560.5,0,0,0 +8045,9864,17970,-9,17969,17968,3,1,1,32,2,0,0,0,3,-9,2,1,0,4,7.953237075871637,8.09550923129313,0,3,0,0,0,-9,0,-1002.864355874961,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,7.94880535860699,7.94880535860699,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,1,0,0,2,4,0,605,0,0,0 +8045,9865,17971,-9,17969,17968,4,1,1,26,2,0,0,0,2,-9,2,1,0,4,8.08485005228501,8.286320020370574,0,3,0,0,0,-9,0,-899.3173007259335,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,8.889926993711565,8.889926993711565,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,2,4,0,709,0,0,0 +8046,9866,17972,17973,-9,-9,2,1,1,67,1,0,0,0,1,-9,2,1,0,3,6.586286040339373,6.851875221483883,6.740181810275608,1,0,-9,9,0,7,17.81131215951371,0,0,0,60,2,2,3,3,3,2019,2,1,11,0,42,0,15,1,0,4,0,2.240184999796773,2.240184999796773,0,0,0,0,0,0,0,1,1,0,0,6.672890042480977,0,0,55.9,51.29,6,1,0,0,12,2,1,1411.5,0,0,0 +8046,9866,17973,17972,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-7,-30.86872107961719,0,0,0,67,1,3,1,3,3,2019,3,2,23,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.317831234348721,0,0,0,44.38,46.24,3,1,0,0,12,2,1,1411.5,0,0,0 +8046,9867,17974,-9,17973,17972,3,1,1,26,2,0,0,1,2,0,7,2,0,3,0,7.477536626364061,7.966413102420872,3,0,0,0,-9,0,-951.1524299333781,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.592185327401761,0,0,0,47.55,49.86,6,1,0,0,12,3,1,1392,0,0,0 +8047,9868,17975,17976,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,4,6.095584491648478,7.599219842096624,7.186496671838846,1,0,-9,46,0,0,-78.07990724294871,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.43506927832548,7.338102317347647,0,0,59.14,52.5,1,1,0,0,1,3,1,566.5,0,0,0 +8047,9868,17976,17975,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,5.773773271494103,6.15888819011228,1,0,-9,46,0,0,-175.2332285118416,0,0,0,67,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.714288817122168,5.574254177452631,0,0,57.33,53.46,6,1,0,0,1,3,1,566.5,0,0,0 +8048,9869,17977,17978,-9,-9,2,1,1,47,1,1,2,0,3,-9,2,1,0,4,7.962538738673318,7.795857101078306,0,2,0,-9,15,0,6,31.54669038860447,0,0,0,41,2,4,1,2,2,2019,1,1,10,0,44,39,15,1,0,1,0,6.5798907810334,6.5798907810334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.09,56.74,5,1,0,0,5,3,1,350,0,0,0 +8048,9869,17978,17977,-9,-9,1,1,0,41,1,1,2,0,2,-9,5,1,0,4,7.298521987771132,7.062529712911135,0,2,0,-9,15,0,-6,84.33888745081295,0,0,1,47,3,4,1,-9,-9,2019,1,2,15,4,22,22,15,1,4,1,0,7.67396878663248,7.67396878663248,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.05,57.88,3,1,0,0,5,3,1,350,0,0,0 +8048,9869,17979,-9,17978,17977,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1032.374156946229,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,350,0,0,0 +8048,9869,17980,-9,17978,17977,3,1,1,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.3893564571471,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,1,350,0,0,0 +8049,9870,17981,17982,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,2,0,8.042569041378194,8.411875320369264,1,0,-9,6,0,7,-23.72713013417315,0,0,0,62,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.915500979403556,8.15361349410971,0,0,45.96,38.67,6,1,0,0,1,5,1,1439,0,0,0 +8049,9870,17982,17981,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,8.512717617191687,8.865704302883719,1,0,-9,42,0,-7,82.57795623122539,0,0,0,69,1,2,3,2,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.530107293472962,8.63651045216846,0,0,58.47,44.69,6,1,0,0,1,5,1,1439,0,0,0 +8050,9871,17983,17984,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,6.588547787708714,8.197526511490915,8.120233705565647,1,0,-9,36,0,6,-53.11229750227252,0,0,0,58,1,4,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.870060131792074,0,0,51.42,48.12,6,1,0,0,11,4,1,510.5,0,0,0 +8050,9871,17984,17983,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,7.750446701151814,7.825257215143886,0,1,0,-9,34,0,-6,-176.1902344518619,0,0,0,64,1,3,3,1,1,2019,2,1,12,0,26,17,15,1,0,4,0,9.985185385217617,9.985185385217617,0,0,0,0,0,0,0,0,0,0,.8011373814444057,0,0,0,47.92,45.42,3,1,0,0,11,4,1,510.5,0,0,0 +8051,9872,17985,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,5,8.43913169887745,8.284473140446689,0,3,0,0,0,-9,0,-992.0375995739901,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,23,50,15,1,0,-9,0,19.08743347050044,19.08743347050044,0,0,0,0,0,0,0,0,0,0,6.008487393239474,0,0,0,57.06,57.76,7,1,0,0,7,4,0,3020,0,0,0 +8052,9873,17986,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,6.644569236514285,6.760541475325894,3,0,0,0,-9,0,-1119.350898867709,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.111038155641355,6.685213575690177,0,0,59.36,37.52,4,1,0,0,1,2,1,401,0,0,0 +8053,9874,17987,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,6.40079207558246,6.988764420250871,3,0,0,0,-9,0,-1026.94968813207,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.452651195918895,0,0,55.53,51.55,6,1,0,0,10,2,0,870,0,0,0 +8054,9875,17988,-9,17991,17990,3,1,0,17,2,1,4,1,2,0,7,2,0,4,4.839895070359165,5.055518383430669,0,2,0,0,0,-9,0,-1042.713141114553,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,3,1,982.1666666666666,0,0,0 +8054,9875,17989,-9,17991,17990,5,1,1,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.340361414868,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,1,982.1666666666666,0,0,0 +8054,9875,17990,17991,-9,-9,2,1,1,40,1,1,4,0,2,-9,2,1,0,2,8.198742999206196,8.39705555068663,0,2,0,-9,20,0,5,-233.414161325845,0,0,0,35,2,5,1,2,1,2019,1,1,13,1,39,38,15,1,1,1,0,12.23844226134197,12.23844226134197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,3,1,0,0,7,3,1,982.1666666666666,0,0,0 +8054,9875,17991,17990,-9,-9,1,1,0,35,1,1,4,0,2,-9,2,1,0,5,7.281794263724013,7.436229241342447,0,2,0,-9,20,0,-5,1.951991941343473,0,0,1,40,2,2,1,2,2,2019,1,2,7,0,24,24,15,1,0,1,0,7.604293951605894,7.604293951605894,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.68,51,7,1,0,0,7,3,1,982.1666666666666,0,0,0 +8054,9875,17992,-9,17991,17990,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.7596415467423,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,1,982.1666666666666,0,0,0 +8054,9875,17993,-9,17991,17990,4,1,1,14,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.6351629143659,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,3,1,982.1666666666666,0,0,0 +8055,9876,17994,17995,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,6.429140285427538,6.155625697963944,1,0,-9,46,0,6,91.86476388284049,0,0,0,63,3,5,1,2,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.817522373318665,6.560317357396192,0,0,55.79,52.62,6,1,0,0,10,2,1,1379.5,0,0,0 +8055,9876,17995,17994,-9,-9,2,1,0,63,1,0,0,0,3,-9,2,1,0,5,6.345470017437143,6.209837674567556,0,1,0,-9,46,0,-6,-78.51147347267593,0,0,0,69,3,4,3,3,3,2019,2,1,5,0,4,18,15,1,0,4,0,15.44406352528167,15.44406352528167,0,0,0,0,0,0,0,1,1,0,0,0,22.91157432450981,3,62.39,56.71,1,1,0,0,10,2,1,1379.5,0,0,0 +8056,9877,17996,17998,-9,-9,1,1,0,36,1,1,1,0,1,-9,1,1,0,4,0,0,0,2,0,-9,2,0,6,-34.6708006093023,0,0,1,30,2,4,1,-9,-9,2019,1,2,12,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.87,59.15,6,3,0,0,8,3,0,463.6666666666667,0,0,0 +8056,9877,17997,-9,17996,17998,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-961.3274318041186,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,3,0,463.6666666666667,0,0,0 +8056,9877,17998,17996,-9,-9,2,1,1,30,1,1,1,0,2,-9,1,1,0,4,8.395130267775938,8.32489484693337,0,2,0,-9,2,0,-6,22.25764097097902,0,0,0,36,1,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,14.39392907380117,14.39392907380117,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.43,49.75,6,3,0,0,8,3,0,463.6666666666667,0,0,0 +8057,9878,17999,-9,18000,18001,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.2299813345207,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,7,5,1,453.6666666666667,0,0,0 +8057,9878,18000,18001,-9,-9,2,1,0,26,1,1,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,4,0,-3,1.498998518576453,0,1,1,29,2,4,1,-9,-9,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,61.01,6,1,0,0,7,5,1,453.6666666666667,0,0,0 +8057,9878,18001,18000,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,4,9.429125896675867,9.642426085291127,0,2,0,-9,4,0,3,98.88305370729822,0,1,0,26,2,4,3,-9,-9,2019,2,2,7,0,37,49,15,1,0,3,0,46.39896659328777,46.39896659328777,0,0,0,0,0,0,0,0,0,0,5.192642634262002,0,0,0,48.06,57.48,6,1,0,0,7,5,1,453.6666666666667,0,0,0 +8058,9879,18002,18003,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.505130771680106,7.994003296941673,1,0,-9,10,0,3,5.950481560238177,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.727574670822715,7.756817788912648,0,0,57.33,53.46,6,1,0,0,9,3,1,977.5,0,0,0 +8058,9879,18003,18002,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.704920140162777,6.331727489836309,1,0,-9,10,0,-3,66.6404748027259,0,0,0,71,2,3,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.942461720280557,0,0,49.6,40.69,6,1,0,0,9,3,1,977.5,0,0,0 +8059,9880,18004,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,6.648176138959982,6.742205248261838,3,0,0,0,-9,0,-1038.924016392799,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,0,0,5.478380712331285,0,0,7.900698954769613,1,1,0,5.545524997430691,6.348370161352433,0,0,54.78,13.18,7,1,0,0,6,2,1,1291,0,0,0 +8060,9881,18005,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,6.918861118642722,7.227015402932436,3,0,0,0,-9,0,-973.5740031799,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.971336287409593,7.206434428373099,0,0,47.09,58.02,7,1,0,0,9,2,1,369,0,0,0 +8061,9882,18006,18007,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.555791724517138,7.277742579687843,0,1,0,-9,17,0,-3,-76.61924406797294,0,0,0,55,3,3,1,3,3,2019,1,2,13,2,28,32,15,1,2,1,0,7.45388063373499,7.45388063373499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.45,52.35,6,1,0,0,2,4,1,533,0,0,0 +8061,9882,18007,18006,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,3,8.216032951128874,8.217470811139794,0,1,0,-9,17,0,3,9.154451696537485,0,0,0,52,2,2,1,3,3,2019,1,1,6,0,40,40,15,1,0,1,0,8.978162886576934,8.978162886576934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,7,1,0,0,2,4,1,533,0,0,0 +8062,9883,18008,-9,-9,-9,1,1,0,37,2,0,2,0,1,-9,6,3,0,3,0,4.21427703052599,4.999647930684446,4,0,0,0,-9,0,-1109.155091288341,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,5,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.755429371880568,0,0,0,54.37,54.8,5,4,0,1,8,1,0,481.3333333333333,0,0,0 +8062,9883,18009,-9,18008,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-974.1871992750974,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,4,0,0,8,1,0,481.3333333333333,0,0,0 +8062,9883,18010,-9,18008,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-903.4199403631966,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,1,0,481.3333333333333,0,0,0 +8063,9884,18011,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-866.8359934275497,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,10.18209215175661,0,0,0,46.39,50.25,7,1,0,0,1,1,1,659,0,0,0 +8064,9885,18012,18013,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,3,8.606995870558581,8.561058588192855,0,1,0,-9,8,0,-1,69.40891044683164,0,0,0,48,2,2,1,2,2,2019,1,1,9,0,48,40,15,1,0,1,0,13.50796806759101,13.50796806759101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,11,5,1,1727.5,0,0,0 +8064,9885,18013,18012,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,2,8.5560488024521,8.418573166054236,0,1,0,-9,8,0,1,82.88055193071622,0,0,0,47,2,3,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,17.59920617192552,17.59920617192552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.25,18.29,3,1,0,0,11,5,1,1727.5,0,0,0 +8065,9886,18014,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1039.902389669471,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.6,43.75,6,1,0,0,13,1,1,288,0,0,0 +8066,9887,18015,-9,-9,-9,3,1,0,19,2,0,3,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1087.783673416983,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,11,1,1,580,0,0,0 +8067,9888,18016,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,1,7.185212598582447,7.269272398645352,4.985190139385426,3,0,0,0,-9,0,-953.310718765021,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,6,6,15,1,5,-9,0,26.67671044191856,26.67671044191856,0,0,0,0,0,0,0,1,0,1,0,5.294445231347127,0,0,45.69,25.38,3,4,0,1,8,3,0,651,0,0,0 +8068,9889,18017,18018,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,5,0,7.85187524923928,7.742171404162753,1,0,-9,45,0,5,9.118052611677211,0,0,0,62,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.620114157679774,7.984307073664433,0,0,57.06,57.76,6,1,0,0,9,3,1,257,0,0,0 +8068,9889,18018,18017,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-5,-74.88009504289185,0,0,0,67,2,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3832765450185629,0,0,0,54.37,54.8,6,1,0,0,9,3,1,257,0,0,0 +8068,9890,18019,-9,18018,18017,3,1,1,29,2,0,0,0,2,-9,1,1,0,4,8.647956544413701,8.156457422518793,0,3,0,0,0,-9,0,-1038.176185117451,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,48,15,1,1,-9,1,14.46676636122547,14.46676636122547,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,9,5,1,509,0,0,0 +8069,9891,18020,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,3,0,6.480318268101073,6.649627459911374,3,0,0,0,-9,0,-1044.704066461087,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.979990710055791,6.973956805681223,0,0,52.41,43.29,6,1,0,0,12,2,1,3285,0,0,0 +8070,9892,18021,18022,-9,-9,2,1,1,49,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,8,0,12,0,0,0,0,37,3,1,3,-9,2,2019,4,1,8,1,0,39,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.33,31.03,6,1,0,1,10,1,0,611.5,0,0,0 +8070,9892,18022,18021,-9,-9,1,1,0,37,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,8,0,-12,0,0,0,1,49,3,2,3,-9,-9,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.26,49.37,3,1,0,1,10,1,0,611.5,0,0,0 +8071,9893,18023,18024,18025,-9,3,1,0,66,1,0,0,0,2,-9,2,1,0,3,7.537357454623188,7.590705742746563,2.70200760804249,1,0,-9,1,-9,-7,-17.81943357127868,-9,0,0,73,2,3,3,3,-9,2019,2,2,11,0,15,0,15,1,1,4,0,16.06085047721531,16.06085047721531,0,0,0,0,0,0,0,1,1,0,6.315759551126321,2.496103027206841,0,3,51,46,5,1,0,0,10,3,1,349,0,0,0 +8071,9893,18024,18023,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,5.499853985130756,5.661406267359474,1,0,-9,1,-9,7,-41.65094167287076,-9,0,0,66,2,3,1,-9,-9,2019,3,3,9,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.216309847151495,5.311281271520798,0,3,54,46,5,1,0,0,10,3,1,349,0,0,0 +8071,9894,18025,-9,-9,-9,4,1,0,94,3,0,0,0,3,-9,4,3,0,3,0,5.730377573188588,5.916325078549694,3,0,-9,0,-9,0,-992.288252651829,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.673991118058617,0,0,55,43,6,1,0,0,10,2,1,1455,0,0,0 +8072,9895,18026,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,4,7.511120735626639,7.808365550682441,0,4,0,-9,0,-9,0,-914.5296767232053,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,29,11,39,0,15,1,11,-9,0,7.690795585021533,7.690795585021533,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.29,63.31,3,1,0,1,4,3,0,367.6666666666667,0,0,0 +8072,9895,18027,-9,18026,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1048.117692449095,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,0,367.6666666666667,0,0,0 +8072,9895,18028,-9,18026,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,5,6.061884712269427,6.032430218032181,4.485870854600653,4,0,-9,0,-9,0,-959.8955024976068,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.921530838776318,0,0,0,52.13,57.22,7,1,0,0,4,3,0,367.6666666666667,0,0,0 +8073,9896,18029,-9,18032,18030,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.1289295786265,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,9,5,1,602,0,0,0 +8073,9896,18030,18032,-9,-9,2,1,1,45,1,1,2,0,2,-9,2,1,0,3,9.245141423476204,9.129711028875109,0,2,0,-9,9,0,8,75.98175263661514,0,0,0,37,1,4,1,-9,-9,2019,1,1,18,6,49,49,15,1,6,1,0,22.7641857544737,22.7641857544737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,51.63,5,1,0,0,9,5,1,602,0,0,0 +8073,9896,18031,-9,18032,18030,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.679939175604,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,9,5,1,602,0,0,0 +8073,9896,18032,18030,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,4,8.120490402853463,8.175631380672652,0,2,0,-9,9,0,-8,12.06675301010378,0,0,1,45,2,3,1,1,1,2019,1,2,7,0,24,15,15,1,0,1,0,21.38549865296249,21.38549865296249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,602,0,0,0 +8074,9897,18033,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,1,0,6.439485871123894,6.304648050174229,3,0,0,0,-9,0,-914.9587642110629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.47191533476806,0,0,25.83,22.39,2,1,0,0,7,2,0,452,0,0,0 +8075,9898,18034,-9,-9,-9,1,1,1,45,3,0,1,0,3,-9,2,1,0,3,8.379359755790285,8.76519922152846,0,4,0,0,0,-9,0,-965.0120378479553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,53,48,15,1,0,-9,0,10.86380553564706,10.86380553564706,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,1,10,4,1,723.5,0,0,0 +8075,9898,18035,-9,-9,18034,3,1,1,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-1175.008121034215,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,3,1,0,0,10,4,1,723.5,0,0,0 +8075,9899,18036,-9,-9,18034,2,1,1,19,2,0,1,0,2,-9,2,1,0,3,6.327811644930809,6.752093543133586,0,3,0,0,0,-9,0,-1037.166708584673,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,13,0,45,53,15,1,2,-9,1,1.853299475551971,1.853299475551971,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,4,1,0,0,10,2,1,662,0,0,0 +8076,9900,18037,-9,18038,18039,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.378908069014,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,4,1,547.5,0,0,0 +8076,9900,18038,18039,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,7.702701868069536,7.689831359367494,0,2,0,-9,21,0,8,-56.46651502017101,0,0,0,40,2,4,1,2,-9,2019,1,2,11,0,28,28,15,1,0,1,0,9.688840652176138,9.688840652176138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.24,5,1,0,0,6,4,1,547.5,0,0,0 +8076,9900,18039,18038,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.960077603409292,9.124111396644524,0,2,0,-9,8,0,-8,-128.1032023026564,0,0,0,48,2,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,29.24703103226878,29.24703103226878,0,0,0,0,0,0,0,1,1,0,5.002579984833078,0,0,0,51,56,6,1,0,0,6,4,1,547.5,0,0,0 +8076,9900,18040,-9,18038,18039,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-958.750610521166,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,6,4,1,547.5,0,0,0 +8077,9901,18041,18042,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,5.657947425169729,5.458311031099866,1,0,-9,46,0,4,35.54619308282518,0,0,0,64,2,3,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,8.097699252522196,0,0,0,0,1,1,0,5.600229503983395,5.588204114737807,0,0,46.89,36.35,3,1,0,1,7,5,1,492,0,0,0 +8077,9901,18042,18041,-9,-9,1,1,0,64,1,0,0,0,2,-9,1,1,0,3,9.655456077351907,9.315900643201084,0,1,0,-9,46,0,-4,-18.53761622929812,0,0,0,68,2,3,3,3,3,2019,2,2,9,0,12,16,15,1,0,4,0,132.8010034609089,132.8010034609089,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,6,1,0,0,7,5,1,492,0,0,0 +8078,9902,18043,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,3,3,0,3,0,5.200701353825755,5.220334648401702,3,0,0,0,-9,0,-872.6403663063269,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.247273356475885,0,0,27.97,47.86,2,1,1,1,12,2,0,2328,0,0,0 +8079,9903,18044,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,7.354987176052818,7.497602293933658,3,0,0,0,-9,0,-767.6429913112771,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.680671666811294,7.380644963690648,4.515086030086636,3,46.22,34.57,6,1,0,0,1,3,1,832,0,0,0 +8080,9904,18045,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,3,9.439038141182728,8.990035180891727,0,1,0,-9,5,0,6,56.82123348929268,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,6,0,37,42,15,1,0,-9,0,27.42196642412505,27.42196642412505,0,0,0,0,0,0,0,0,0,0,7.26536640934366,0,0,0,54.96,53.17,6,1,0,0,9,5,0,1198,0,0,0 +8080,9905,18046,-9,-9,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,3,8.424211694524363,8.706915123443087,0,1,0,-9,5,0,-6,80.89322334354384,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,5,0,45,52,15,1,0,-9,0,9.964991935007307,9.964991935007307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,6,1,0,0,9,5,0,283,0,0,0 +8081,9906,18047,18050,-9,-9,1,1,0,35,1,2,2,0,2,-9,5,1,0,3,7.299908250178635,7.590160091670859,0,2,0,-9,8,0,2,21.0070603790154,0,0,1,33,1,4,1,1,2,2019,1,2,14,2,24,22,15,1,2,1,0,7.817097084110737,7.817097084110737,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,6,1,0,0,4,4,1,875.5,0,0,0 +8081,9906,18048,-9,18047,18050,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.734994881319,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,875.5,0,0,0 +8081,9906,18049,-9,18047,18050,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1011.560510834981,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,875.5,0,0,0 +8081,9906,18050,18047,-9,-9,2,1,1,33,1,2,2,0,1,-9,2,1,0,4,8.339884945568905,8.612045436867675,0,2,0,-9,8,0,-2,-52.48791745229276,0,0,0,35,2,3,1,2,2,2019,1,1,11,1,35,41,15,1,1,1,0,16.51622192095942,16.51622192095942,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,6,1,0,0,4,4,1,875.5,0,0,0 +8082,9907,18051,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,2,1,0,3,7.363265583598419,7.296869751925058,0,3,0,0,0,-9,0,-1058.511592795564,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,18,6,6,8,15,1,6,-9,0,30.91118910660462,30.91118910660462,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.53,53.36,6,1,0,0,11,3,0,848,0,0,0 +8083,9908,18052,-9,-9,-9,1,1,0,24,2,0,0,0,1,1,2,1,0,3,7.981919965926216,8.073811429334626,0,3,0,0,0,-9,0,-965.6095859217014,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,38,0,15,1,3,-9,0,8.753712611043374,8.753712611043374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,53.76,5,4,0,0,9,4,0,553,0,0,0 +8084,9909,18053,-9,18054,18055,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.254230783189,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,361.5,0,0,0 +8084,9909,18054,18055,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,4,8.239429394766381,8.151029393564338,0,2,0,-9,21,0,5,-53.84289000535448,0,0,0,46,2,3,1,2,1,2019,1,1,7,0,37,27,15,1,0,1,0,11.61918297600741,11.61918297600741,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,12,4,1,361.5,0,0,0 +8084,9909,18055,18054,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,3,8.348598481302343,8.783313370841553,0,2,0,-9,21,0,-5,-30.18919187666769,0,0,0,51,1,4,1,3,2,2019,1,2,6,0,35,35,15,1,0,1,0,15.52582564364871,15.52582564364871,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.5,50.46,6,1,0,1,12,4,1,361.5,0,0,0 +8084,9909,18056,-9,18054,18055,3,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1083.901298748181,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,12,4,1,361.5,0,0,0 +8085,9910,18057,18058,-9,-9,1,1,1,56,1,0,1,0,2,-9,1,1,0,5,8.129922457885352,8.238766572311464,0,2,0,-9,1,-9,2,157.24588011786,-9,0,0,54,1,3,1,2,2,2019,1,2,10,0,38,0,15,1,0,1,0,11.29538562713407,11.29538562713407,0,0,0,0,0,0,0,1,1,0,0,0,.9033013505213665,3,40.03,62.02,6,1,0,0,9,5,1,657,0,0,0 +8085,9910,18058,18057,-9,-9,2,1,0,54,1,0,1,0,1,-9,2,1,0,3,9.124700658565422,9.253012277052461,0,2,0,-9,1,-9,-2,-77.46236356414958,-9,0,0,56,2,5,1,2,1,2019,1,1,16,5,40,0,15,1,5,1,0,25.54608032710499,25.54608032710499,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.05,59.16,3,1,0,0,9,5,1,657,0,0,0 +8086,9911,18059,18061,-9,-9,2,1,1,34,1,0,2,0,1,-9,2,1,0,4,8.51281205375947,8.318053809083995,0,2,0,-9,6,0,-4,126.1830939892816,0,0,0,38,1,4,1,2,2,2019,1,1,11,1,35,38,15,1,1,1,0,16.13985862790281,16.13985862790281,0,0,0,0,0,0,0,1,1,0,.9902329963622509,0,0,0,36.83,61.21,5,4,0,0,8,5,1,705.25,0,0,0 +8086,9911,18060,-9,18061,18059,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.712960781765,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,5,1,705.25,0,0,0 +8086,9911,18061,18059,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.748493061339673,8.660979162967495,0,2,0,-9,6,0,4,-11.07697956678191,0,0,1,34,1,4,1,1,1,2019,1,2,24,11,31,41,15,1,11,1,0,20.12124021781232,20.12124021781232,0,0,0,0,0,0,0,1,1,0,.9052109109781643,0,0,0,32.76,64.44,5,5,0,0,8,5,1,705.25,0,0,0 +8086,9911,18062,-9,18061,18059,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.713410416797,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,5,1,705.25,0,0,0 +8087,9912,18063,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1057.842843112804,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,5.363280571058343,0,0,0,0,0,1,1,0,0,0,0,0,61.7,7.25,7,1,0,0,13,1,1,1043,0,0,0 +8088,9913,18064,18065,-9,-9,1,1,1,51,1,0,0,0,3,-9,2,1,0,2,8.727423204517381,8.539782280548431,0,1,0,-9,6,0,1,-78.35061168953034,0,0,0,50,1,4,1,2,-9,2019,1,2,12,0,50,0,15,1,0,1,0,13.98571323804824,13.98571323804824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.35,36.31,5,1,0,0,11,5,1,307.5,0,0,0 +8088,9913,18065,18064,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.466684505677941,8.355838336627729,0,1,0,-9,6,0,-1,48.89620910744721,0,0,0,51,3,2,1,3,3,2019,1,1,6,0,48,36,15,1,0,1,0,16.04111459399474,16.04111459399474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.71,56.06,6,1,0,0,11,5,1,307.5,0,0,0 +8089,9914,18066,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1004.331317412503,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.77454817228686,3,33.02,24.58,4,1,0,0,10,1,0,109,0,0,0 +8090,9915,18067,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1039.353588633207,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.092135600974249,0,0,0,1,1,0,1.397753762559998,0,0,0,50.23,47.06,6,1,0,0,5,1,0,223,0,0,0 +8091,9916,18068,18069,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,4,8.737201457031739,8.875266532967437,0,1,0,-9,27,0,-1,-76.72130007089213,0,0,0,52,1,4,1,3,3,2019,1,1,12,1,42,40,15,1,1,1,0,19.12133931369809,19.12133931369809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.33,59.49,5,1,0,0,13,5,1,885.5,0,0,0 +8091,9916,18069,18068,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.959459417463689,9.383061592211583,0,1,0,-9,27,0,1,9.745301807050492,0,0,0,51,1,4,1,3,3,2019,1,2,9,0,40,40,15,1,1,1,0,24.13772538888318,24.13772538888318,0,0,0,0,0,0,0,0,0,0,3.80452886886909,0,0,0,53,55,6,1,0,0,13,5,1,885.5,0,0,0 +8091,9917,18070,-9,18068,18069,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,8.041748721149149,7.905153899411252,0,3,0,0,0,-9,0,-989.5032721310947,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,40,35,15,1,2,-9,1,8.77681333333563,8.77681333333563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,13,4,1,150,0,0,0 +8092,9918,18071,18072,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,1,0,7.89886966230398,7.716850011047771,1,0,-9,42,0,4,29.76824099796138,0,0,0,63,3,3,3,2,-9,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.0092384003437803,7.737740618526585,.0994518395971009,3,47.36,16.34,5,1,0,0,9,3,1,359,0,0,0 +8092,9918,18072,18071,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,42,0,-4,-112.7233861602716,0,0,0,67,2,1,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.510311084099392,0,.9304127790855306,3,60.59,36.84,7,1,0,0,9,3,1,359,0,0,0 +8093,9919,18073,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1021.212400082134,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.054213371562372,0,0,0,20.55,36.73,2,1,0,0,1,1,0,1691,0,0,0 +8094,9920,18074,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,6.015518319470285,6.307049351242334,3,0,0,0,-9,0,-1017.978313867629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.860586487024545,0,0,67.51000000000001,35.12,5,1,0,0,2,2,1,383,0,0,0 +8095,9921,18075,18076,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,8.41309701145147,8.276351094583374,1,0,-9,52,0,0,98.94320336631345,0,0,0,76,1,3,3,2,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,1.101727302663597,0,0,0,0,0,1,1,0,8.677844457240115,6.471931283266088,0,0,57.12,38.44,6,1,0,0,11,5,1,534,0,0,0 +8095,9921,18076,18075,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,3,0,8.550392720449352,8.706691683766467,1,0,-9,5,0,0,57.03895590188461,-9,0,0,76,1,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.532904491584981,8.324006238380424,0,0,54,46,6,1,0,0,11,5,1,534,0,0,0 +8096,9922,18077,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,2,0,5.740031300185119,5.898063130512618,3,0,0,0,-9,0,-1058.816456070392,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,3,0,0,15,4,3,-9,0,0,0,1,3.301339765888454,0,6.736599275378285,0,0,0,1,1,0,2.156942704916874,6.111612273233946,0,0,50.75,39.21,5,1,0,0,2,2,1,314,0,0,0 +8097,9923,18078,18081,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,2,9.430309893439249,9.5212135393905,0,2,0,-9,8,0,0,1.080678175500277,0,0,0,39,1,3,3,2,2,2019,2,2,23,11,60,60,15,1,11,3,0,27.92267971207062,27.92267971207062,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.13,46.94,5,1,0,0,6,5,1,609.75,0,0,0 +8097,9923,18079,-9,18081,18078,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.1297312257661,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,609.75,0,0,0 +8097,9923,18080,-9,18081,18078,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-810.162801490651,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,609.75,0,0,0 +8097,9923,18081,18078,-9,-9,2,1,0,39,1,0,2,0,1,-9,6,3,0,3,7.421638429409963,7.680979961208124,0,2,0,-9,8,0,0,72.94672173626901,0,0,1,39,2,2,1,-9,-9,2019,3,1,18,8,5,30,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9341126582212075,0,0,0,43.06,59.91,6,1,0,0,6,5,1,609.75,0,0,0 +8098,9924,18082,18084,-9,-9,2,1,1,58,1,0,2,0,1,-9,2,1,0,3,9.06901347636453,8.869036582406375,0,2,0,-9,21,0,11,-29.1929576198519,0,0,0,47,2,4,1,2,2,2019,1,1,21,9,38,38,15,1,9,1,0,20.39146502739889,20.39146502739889,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,49.98,3,1,0,0,2,4,1,303,0,0,0 +8098,9924,18083,-9,18084,18082,4,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1031.206106572922,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,4,1,303,0,0,0 +8098,9924,18084,18082,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,4,6.737795676830915,6.619944088971228,0,2,0,-9,21,0,-11,-116.0863651676753,0,0,0,58,1,3,1,3,-9,2019,1,2,2,0,4,18,15,1,0,1,0,19.7970258250283,19.7970258250283,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.78,61.86,7,1,0,0,2,4,1,303,0,0,0 +8099,9925,18085,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,4,8.225015709936716,8.305684174783146,0,3,0,0,0,-9,0,-981.9617338293557,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,30,32,15,1,2,-9,0,16.8238057213628,16.8238057213628,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.01,55.92,5,1,0,0,10,4,0,738,0,0,0 +8100,9926,18086,18087,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,2,0,8.295927489153291,7.754865366306731,1,0,-9,35,0,-16,155.2446603811057,0,0,0,75,3,3,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.473212819944083,8.097962255697093,0,0,38.7,48.99,4,1,0,0,10,4,1,628,0,0,0 +8100,9926,18087,18086,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,7.295734761675103,7.74643356892116,1,0,-9,35,0,16,-102.4053092172912,0,0,0,59,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.661658946418288,0,0,52.4,50.21,7,1,0,0,10,4,1,628,0,0,0 +8101,9927,18088,18091,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.339322213847449,8.51254096693971,0,2,0,-9,9,0,0,-23.06009638117124,0,0,0,38,1,5,1,3,3,2019,1,2,9,1,40,40,15,1,1,1,0,11.18947073045023,11.18947073045023,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,6,1,0,0,2,4,1,651.25,0,0,0 +8101,9927,18089,-9,18091,18088,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.120689208758,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,651.25,0,0,0 +8101,9927,18090,-9,18091,18088,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.1929570334769,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,651.25,0,0,0 +8101,9927,18091,18088,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,5,8.09795939190615,7.916089063376124,0,2,0,-9,9,0,0,45.97707479854623,0,0,1,38,2,4,1,-9,-9,2019,1,1,12,0,30,30,15,1,0,1,0,13.70569376779475,13.70569376779475,0,0,0,0,0,0,0,1,1,0,3.685552308596327,0,0,0,51.14,60.45,5,1,0,0,2,4,1,651.25,0,0,0 +8102,9928,18092,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,3,7.9949848081237,7.794755835437514,0,3,0,0,0,-9,0,-1104.301669299418,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,10,0,25,25,15,1,0,-9,0,13.41149970080678,13.41149970080678,0,0,0,0,0,0,0,0,0,0,3.174069693776996,0,0,0,46.33,55.93,5,1,0,0,8,3,1,801,0,0,0 +8103,9929,18093,18094,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,8.291748977577104,8.14354561855041,1,0,-9,34,0,7,45.50196809998495,0,0,0,66,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.025838575335391,7.934849288935546,0,0,57.16,56.15,7,1,0,0,12,4,1,669,0,0,0 +8103,9929,18094,18093,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,4,7.78201359729895,8.320305574549707,7.717270626595203,1,0,-9,9,0,-7,-64.71072559826978,0,0,0,73,2,4,3,3,3,2019,2,1,6,0,18,18,15,1,0,4,0,13.47708602241359,13.47708602241359,0,0,0,0,0,0,0,1,1,0,4.164418556591871,7.603555758013032,0,0,57.16,56.15,7,1,0,0,12,4,1,669,0,0,0 +8104,9930,18095,-9,-9,-9,1,1,1,45,3,0,0,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1096.524021409373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.1596762070449,3,54.38,44.07,4,1,0,0,12,1,0,1667,0,0,0 +8105,9931,18096,18097,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.291345569124933,7.580318273562243,0,1,0,-9,29,0,5,32.67279483642317,0,0,0,51,2,4,1,-9,-9,2019,1,1,12,0,43,0,15,1,0,1,0,5.569209789997698,5.569209789997698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.35,56.58,6,1,0,0,8,4,1,492.5,0,0,0 +8105,9931,18097,18096,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.083076414396976,8.111541196394125,0,1,0,-9,29,0,-5,-85.73941191712893,0,0,0,56,2,4,1,2,2,2019,1,2,7,0,48,0,15,1,0,1,0,7.387573711397273,7.387573711397273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.39,52.35,7,1,0,0,8,4,1,492.5,0,0,0 +8106,9932,18098,18099,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,3,8.121503041251461,8.142670061502331,0,1,0,-9,6,0,-1,34.13570993160118,0,0,0,49,2,4,1,-9,-9,2019,1,2,24,11,39,0,15,1,11,1,0,12.09012981416088,12.09012981416088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.7,53.8,2,1,0,1,4,4,1,430.5,0,0,0 +8106,9932,18099,18098,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.86765938763535,8.009843874217133,0,1,0,-9,6,0,1,20.63871795924384,0,0,0,48,3,3,1,-9,-9,2019,1,1,14,6,30,0,15,1,6,1,0,9.9655850372004,9.9655850372004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,7,1,0,1,4,4,1,430.5,0,0,0 +8106,9933,18100,-9,18099,18098,4,1,0,22,2,0,0,0,2,-9,2,1,0,3,6.565000002386234,7.086151376371157,0,3,0,0,0,-9,0,-1023.965801975607,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,19,7,12,0,15,1,7,-9,1,9.594270176309182,9.594270176309182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,3,1,0,0,4,2,1,1062,0,0,0 +8107,9934,18101,18102,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,3,8.723311397316094,8.84429290265888,0,1,0,-9,38,0,1,96.97695574277344,0,0,0,56,2,3,1,2,2,2019,1,1,10,0,41,45,15,1,0,1,0,13.85398129565829,13.85398129565829,0,0,0,0,0,0,0,0,0,0,4.632535514696793,0,14.86187986221346,3,48.59,53.29,6,1,0,0,10,5,1,421,0,0,0 +8107,9934,18102,18101,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.826678832336454,7.591854547916513,0,1,0,-9,38,0,-1,120.370819057164,0,0,0,57,3,3,1,2,2,2019,1,2,14,4,27,30,15,1,4,1,0,12.29746123535179,12.29746123535179,0,0,0,0,0,0,0,0,0,0,0,0,18.32549112623471,3,38.01,44.66,4,1,0,0,10,5,1,421,0,0,0 +8107,9935,18103,-9,18102,18101,3,1,1,33,2,0,0,0,2,-9,2,1,0,5,8.302879529945537,7.862221388826924,0,3,0,0,0,-9,0,-1122.805651297028,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,1,12.8515768477506,12.8515768477506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,6,1,0,0,10,4,1,227,0,0,0 +8107,9936,18104,-9,18102,18101,4,1,1,23,2,0,0,0,2,-9,2,1,0,2,7.911155054312128,8.07888755692502,0,3,0,0,0,-9,0,-974.499853230586,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,45,45,15,1,0,-9,1,7.401012326162889,7.401012326162889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.13,46.61,5,1,0,0,10,4,1,1241,0,0,0 +8108,9937,18105,-9,-9,-9,1,1,0,50,2,0,0,0,3,-9,2,1,0,5,8.101331806971656,7.976790062586182,0,3,0,0,0,-9,0,-993.041858054473,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,30,30,15,1,2,-9,0,11.16298213166458,11.16298213166458,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.6,44.34,6,1,0,0,2,4,0,130,0,0,0 +8109,9938,18106,18107,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,3,8.217820573911487,8.624232106527442,6.559490303773025,1,0,-9,6,0,0,114.8185375771196,0,0,0,63,2,3,1,3,3,2019,1,2,6,0,38,36,15,1,0,1,0,9.723146937333031,9.723146937333031,0,0,0,0,0,0,0,0,0,0,0,6.981071561918235,0,0,61.04,44.94,5,1,0,0,13,4,1,473.5,0,0,0 +8109,9938,18107,18106,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,3,6.864799472436758,7.074730110786769,5.034184630539237,1,0,-9,6,0,0,-39.84113499320578,0,0,0,63,3,3,1,3,3,2019,1,1,9,0,20,17,15,1,0,1,0,5.271477623014471,5.271477623014471,0,0,0,0,0,0,0,0,0,0,5.264039454847694,4.86090018989182,0,0,49.04,55.86,2,1,0,0,13,4,1,473.5,0,0,0 +8110,9939,18108,18109,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,3,0,5.585155046034002,5.632354243532947,1,0,-9,69,0,-1,42.55116160698715,0,0,0,83,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.590860358610044,0,0,52,45,6,3,0,0,8,2,0,343.5,0,0,0 +8110,9939,18109,18108,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,69,0,1,49.51017751170872,0,0,0,82,3,3,3,3,-9,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,1,19.04322881362263,0,0,0,0,193.8770353398309,1,1,0,0,0,5.074276851141597,1,29.9,21.49,6,3,0,0,8,2,0,343.5,0,0,0 +8111,9940,18110,18111,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,1,0,4.384099142220186,4.416524130303245,1,0,-9,9,0,3,44.24568993827569,0,0,0,74,2,2,3,3,3,2019,4,2,17,0,0,0,15,4,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.538075631955397,4.419386545069212,0,0,41,24,4,1,0,0,13,2,1,571,0,0,0 +8111,9940,18111,18110,-9,-9,2,1,0,74,1,0,0,0,2,-9,6,3,0,2,0,5.191328833583518,4.939489259472515,1,0,-9,9,0,-3,-53.70085600763565,0,0,0,77,3,1,3,3,3,2019,4,1,15,4,0,0,15,3,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.264991672658152,0,70.46286875918678,1,39.39,40.36,5,1,0,0,13,2,1,571,0,0,0 +8112,9941,18112,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-945.8046158542572,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.47,21.77,1,1,0,1,12,1,0,530,0,0,0 +8113,9942,18113,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-966.4517267175047,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.78,17.81,1,1,0,0,5,1,0,831,0,0,0 +8114,9943,18114,18115,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,2,7.349756408449387,7.332845957413947,0,1,0,-9,24,0,-4,36.38979640729176,0,0,0,61,2,4,1,3,3,2019,1,2,13,2,10,10,15,1,2,1,0,20.13353986493854,20.13353986493854,0,0,0,0,0,0,0,0,0,0,2.819267986991618,0,8.237268838161377,3,48.82,41.3,6,1,0,0,1,5,1,266,0,0,0 +8114,9943,18115,18114,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,4,9.630658875506942,9.717940861964371,0,1,0,-9,24,0,4,-96.09221787766131,0,0,0,57,3,2,1,2,3,2019,1,1,6,0,70,75,15,1,0,1,0,24.72852860162739,24.72852860162739,0,0,0,0,0,0,0,0,0,0,5.036284601080956,0,1.783902636158625,3,59.53,56.44,6,1,0,0,1,5,1,266,0,0,0 +8115,9944,18116,18118,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,5,9.281620947057014,8.907390952126217,0,2,0,-9,24,0,-5,-.3366370382722715,0,0,0,51,1,5,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,28.00795542603147,28.00795542603147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,1,423,0,0,0 +8115,9944,18117,-9,18118,18116,4,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.148170198394,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,423,0,0,0 +8115,9944,18118,18116,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,5,8.795517241588341,9.05691953389401,0,2,0,-9,25,0,5,42.97081214003023,0,0,0,46,1,5,1,3,3,2019,1,1,1,0,35,38,15,1,0,1,0,26.8131396126264,26.8131396126264,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,1,423,0,0,0 +8115,9944,18119,-9,18118,18116,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,7.835486864099942,7.452574720127626,0,2,0,0,0,-9,0,-890.7035930779458,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,5,1,423,0,0,0 +8116,9945,18120,18121,-9,-9,2,1,1,45,1,0,2,0,3,-9,1,1,0,3,7.498119879616543,7.530029389201346,0,2,0,-9,10,0,-5,-32.76095001877613,-9,0,0,50,2,3,3,3,-9,2019,2,1,10,0,48,0,15,1,0,3,0,5.160977019648321,5.160977019648321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.35,50.81,5,3,0,0,9,2,1,722.5,0,0,0 +8116,9945,18121,18120,-9,-9,1,1,0,50,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,18,0,5,-9.665337804971301,0,0,0,45,3,3,1,3,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,44.2,6,3,0,0,9,2,1,722.5,0,0,0 +8117,9946,18122,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,4,8.627006052576748,8.933428423517467,0,3,0,0,0,-9,0,-1020.694029498841,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,48,50,15,1,0,-9,0,16.23738522599066,16.23738522599066,0,0,0,0,0,0,0,1,1,0,6.839897761619531,0,0,0,47.29,55.39,6,5,0,0,5,5,1,964,0,0,0 +8118,9947,18123,-9,18126,18125,6,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.330921390614,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,1,854.75,0,0,0 +8118,9947,18124,-9,18126,18125,4,1,0,16,2,0,3,0,-9,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-920.9829735355203,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,3,0,0,8,2,1,854.75,0,0,0 +8118,9947,18125,18126,-9,-9,5,1,1,43,1,0,3,0,3,-9,1,1,0,4,7.436285761563022,7.214836908528355,0,2,0,-9,9,0,-1,106.4400146898609,0,0,0,44,3,4,3,-9,-9,2019,2,1,10,0,25,40,15,1,1,3,0,6.389915898441942,6.389915898441942,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,8,2,1,854.75,0,0,0 +8118,9947,18126,18125,-9,-9,1,1,0,44,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,9,0,1,21.97483154240133,0,0,1,43,3,4,1,3,3,2019,3,5,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,3,0,0,8,2,1,854.75,0,0,0 +8118,9948,18127,-9,18126,18125,2,1,1,20,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1054.48646426356,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,44.75,5,3,0,0,8,1,1,86,0,0,0 +8118,9949,18128,-9,18126,18125,3,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1021.571805950836,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,2,1,486,0,0,0 +8119,9950,18129,18130,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-3,13.95055479578293,0,0,0,75,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.386742381523745,0,0,0,56.14,33.56,4,1,0,0,11,3,1,209,0,0,0 +8119,9950,18130,18129,-9,-9,2,1,1,75,1,0,0,0,2,-9,2,1,0,3,6.555461065270384,7.549228748597378,7.083932194881169,1,0,-9,10,0,3,-37.67809080989031,0,0,0,72,3,3,3,3,3,2019,2,1,12,0,16,18,15,1,0,4,0,5.508158929160017,5.508158929160017,0,0,0,0,0,0,0,1,1,0,5.939717109581601,7.321719537992992,0,0,34.09,43.94,2,1,0,0,11,3,1,209,0,0,0 +8120,9951,18131,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,2,1,0,3,8.463391892272522,8.563848030911512,0,3,0,0,0,-9,0,-963.3854260642958,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,47,50,15,1,0,-9,0,11.51084164693424,11.51084164693424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,54.24,4,1,0,0,9,5,1,675,0,0,0 +8121,9952,18132,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,1,1,0,2,8.099761845099597,7.743763517583647,0,3,0,0,0,-9,0,-931.8337046336947,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,40,15,1,0,-9,0,8.197665686372297,8.197665686372297,0,0,0,0,0,0,0,0,0,0,3.775962300495747,0,0,0,60.53,48.35,6,1,0,0,5,4,0,342,0,0,0 +8122,9953,18133,18136,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,4,8.46115258911051,8.563735493935718,0,2,0,-9,16,0,-3,23.51365002302703,0,0,1,41,1,3,1,2,3,2019,1,1,7,0,30,26,15,1,0,1,0,19.20561146985216,19.20561146985216,0,0,0,0,0,0,0,1,1,0,.6509031130446026,0,0,0,42.05,58.8,6,1,0,0,7,5,1,1279,0,0,0 +8122,9953,18134,-9,18133,18136,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.729513002725,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,7,5,1,1279,0,0,0 +8122,9953,18135,-9,18133,18136,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.197663984925,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,1279,0,0,0 +8122,9953,18136,18133,-9,-9,1,1,1,41,1,1,2,0,1,-9,2,1,0,3,9.310597956410529,9.270636195703922,0,2,0,-9,15,0,3,38.00234933383421,0,0,0,38,1,4,1,2,2,2019,1,2,18,7,50,50,15,1,7,1,0,21.29775577868557,21.29775577868557,0,0,0,0,0,0,0,1,1,0,.9007578624151404,0,0,0,47.32,52.7,5,1,0,0,7,5,1,1279,0,0,0 +8123,9954,18137,18138,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,2,8.034196442647719,8.577860452828931,0,1,0,-9,5,0,1,89.49522302999569,0,1,0,27,2,4,1,-9,-9,2019,1,2,5,0,43,43,15,1,0,1,0,9.729969967159484,9.729969967159484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.65,52.38,6,1,0,0,6,4,1,656.5,0,0,0 +8123,9954,18138,18137,18139,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,4,7.271600724405809,7.82616336514303,0,1,0,-9,5,0,-1,-41.28900977166821,0,1,1,28,1,2,1,2,-9,2019,1,1,8,2,45,38,15,1,2,1,0,4.702483430545795,4.702483430545795,0,0,0,0,0,0,0,1,1,0,0,0,10.73982348697298,3,51.83,57.2,6,1,0,1,6,4,1,656.5,0,0,0 +8123,9955,18139,-9,-9,-9,3,1,0,63,3,0,0,0,2,-9,2,1,0,3,6.57217602372598,7.52431583418269,6.589067586279909,3,0,0,0,-9,0,-977.5590990369656,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,15,15,15,1,6,-9,0,5.193251761532422,5.193251761532422,0,0,0,0,0,0,0,1,1,0,0,6.851832955673068,0,0,45.89,44.01,6,1,0,0,6,3,1,198,0,0,0 +8124,9956,18140,18141,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,5,0,7.278727814290956,7.216952472510214,1,0,-9,17,0,7,-27.61669705016571,0,0,0,61,1,4,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.046353246705128,7.40141444926193,0,0,54.1,59.11,7,1,0,0,4,5,1,613,0,0,0 +8124,9956,18141,18140,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,4,8.828283184393111,9.739758056434841,8.92604236920608,1,0,-9,17,0,-7,135.1173430326835,0,0,0,68,1,5,3,-9,-9,2019,2,1,6,0,20,37,15,1,0,4,0,38.42025630413784,38.42025630413784,0,0,0,0,0,0,0,1,1,0,0,9.10969972590628,0,3,59.12,44.49,7,1,0,0,4,5,1,613,0,0,0 +8125,9957,18142,18144,-9,-9,2,1,0,28,1,0,2,0,3,-9,2,1,0,2,7.8384711074599,7.971098285647058,0,2,0,-9,6,0,-6,-70.99680592434568,0,1,1,34,3,4,1,3,-9,2019,1,1,16,5,32,41,15,1,5,1,0,8.67352009861877,8.67352009861877,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.46,27.94,5,1,0,1,6,4,0,946.75,0,0,0 +8125,9957,18143,-9,18142,18144,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.2639862314186,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,0,946.75,0,0,0 +8125,9957,18144,18142,-9,-9,1,1,1,34,1,0,2,0,3,-9,2,1,0,4,8.676034049439362,8.55627038617895,0,2,0,-9,6,0,6,-49.33693289023153,0,0,0,28,3,2,1,3,3,2019,1,2,9,2,52,46,15,1,2,1,0,10.90052384050876,10.90052384050876,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.26,52.17,5,1,0,1,6,4,0,946.75,0,0,0 +8125,9957,18145,-9,18142,18144,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.797924808544,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,0,946.75,0,0,0 +8126,9958,18146,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1041.522556175472,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,35,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.427140552438755,0,0,0,25.61,62.71,3,1,1,0,12,1,1,951,0,0,0 +8127,9959,18147,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1055.080531368641,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.208181421461266,0,0,0,51,46,5,3,1,0,8,1,0,294,0,0,0 +8127,9960,18148,-9,-9,-9,2,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.292264730925613,8.207598407505841,0,3,0,-9,0,-9,0,-1119.232772825385,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,0,15,1,0,-9,0,12.20881357912175,12.20881357912175,0,0,0,0,0,0,0,1,1,0,0,0,5.559904826795467,3,58.15,52.91,7,3,0,0,8,4,0,309,0,0,0 +8128,9961,18149,18151,-9,-9,3,1,1,34,1,0,1,0,2,-9,2,1,0,4,8.697374946479549,8.738541315104031,0,2,0,-9,2,0,0,151.7938548446136,0,0,0,34,2,4,1,1,1,2019,1,1,6,0,35,35,15,1,0,1,0,17.27622927192505,17.27622927192505,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,0,0,9,4,1,359.6666666666667,0,0,0 +8128,9961,18150,-9,18151,18149,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.219327790545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,4,1,359.6666666666667,0,0,0 +8128,9961,18151,18149,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,4,7.554132933243163,7.564603860884971,0,2,0,-9,2,0,0,7.940854337682151,0,0,1,34,2,4,1,1,2,2019,1,3,2,0,37,0,15,1,0,1,0,6.399207930142192,6.399207930142192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,9,4,1,359.6666666666667,0,0,0 +8129,9962,18152,18153,-9,-9,1,1,1,47,1,0,2,0,3,-9,1,1,0,3,9.650727832013521,9.840214493341508,0,2,0,-9,24,0,4,-33.77419331602944,0,0,0,43,2,5,1,3,2,2019,1,2,23,11,60,60,15,1,11,1,0,27.04079691368573,27.04079691368573,0,0,0,0,0,0,0,1,1,0,7.046868787229635,0,0,0,42.11,37.38,6,3,0,0,4,5,1,312,0,0,0 +8129,9962,18153,18152,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,5,8.119196052754113,8.316044638381586,0,2,0,-9,24,0,-4,-73.34480850810277,0,0,1,47,3,3,1,3,2,2019,1,1,10,0,40,48,15,1,0,1,0,10.51563279188599,10.51563279188599,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.86,63.67,4,3,0,0,4,5,1,312,0,0,0 +8129,9962,18154,-9,18153,18152,4,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-958.2095490093441,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,3,0,0,4,5,1,312,0,0,0 +8129,9963,18155,-9,18153,18152,3,1,1,18,2,0,2,1,2,0,7,2,0,5,7.190430652135564,7.465284146298035,0,3,0,0,0,-9,0,-974.5981690404979,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,27,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,7,3,0,0,4,5,1,423,0,0,0 +8130,9964,18156,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,3,0,7.298803912576903,6.975672552541272,3,0,0,0,-9,0,-969.9317103380417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.282248881648308,7.143824870347,0,0,57.73,51.86,7,1,0,0,7,3,0,493,0,0,0 +8131,9965,18157,18158,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,43,0,-6,-47.46073409775939,0,0,0,69,1,4,3,2,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.779941789485528,0,0,0,52.83,45.94,6,1,0,0,13,4,1,571,0,0,0 +8131,9965,18158,18157,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.425988499571119,8.021675753130497,1,0,-9,43,0,6,-85.00361743513433,0,0,0,63,2,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.95700161717928,8.243907875064181,0,0,48.76,53.24,6,1,0,0,13,4,1,571,0,0,0 +8132,9966,18159,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,3,8.152474816776611,8.504345477443879,7.668502976964472,3,0,-9,0,1,0,-940.3366449796381,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,23,23,15,1,2,-9,0,17.84124105266394,17.84124105266394,0,0,0,0,0,0,0,1,1,0,5.58426449020345,7.180303385655088,0,0,44.5,54.04,5,1,0,0,4,5,1,551,0,0,0 +8132,9967,18160,-9,18159,-9,2,1,1,21,2,0,0,1,2,0,7,2,0,4,0,4.662962848741356,4.750451879441051,3,0,0,0,-9,0,-972.3570694600376,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,8,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.092159960709306,0,0,0,51.83,57.2,6,1,0,0,4,2,1,461,0,0,0 +8132,9968,18161,-9,18159,-9,3,1,1,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1008.183751327634,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.633701594630026,0,0,0,33.41,62.84,4,1,0,0,4,1,1,795,0,0,0 +8133,9969,18162,18163,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,5.136517792755725,4.923203225558964,1,0,-9,42,0,10,68.56540037232607,0,0,0,59,2,3,1,-9,-9,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,1,0,2.592890995630518,0,0,0,0,1,1,0,4.485408141678303,4.930816406862195,0,0,37.06,26.56,3,1,0,0,5,3,1,427.5,0,0,0 +8133,9969,18163,18162,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.387599041623661,7.828877733747582,6.792342696872598,1,0,-9,42,0,-10,.7969160196293918,0,0,0,69,3,1,3,2,3,2019,2,1,15,3,20,19,15,1,3,4,0,7.478327756021739,7.478327756021739,0,0,0,0,0,0,0,1,1,0,5.049183189602032,6.822119060979781,0,0,32.71,55.43,5,1,0,0,5,3,1,427.5,0,0,0 +8134,9970,18164,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-915.1127229545212,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,1.937258507669461,0,0,1,1,0,3.783630722550642,0,0,0,50.21,44.21,7,1,0,0,6,2,1,177,0,0,0 +8134,9971,18165,-9,18164,-9,2,1,1,51,3,0,0,0,2,-9,2,1,0,4,8.332556910884234,7.781548272465775,0,3,0,0,0,-9,0,-1030.583289298987,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,40,15,1,0,-9,1,11.57464126447326,11.57464126447326,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,6,4,1,595,0,0,0 +8135,9972,18166,18167,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.347155288637976,7.126824556446508,0,1,0,-9,33,0,-3,54.38188336969264,0,0,0,58,2,5,1,3,3,2019,1,1,10,0,10,16,15,1,1,1,0,23.15790523332753,23.15790523332753,0,0,0,0,0,0,0,0,0,0,2.961579887881517,0,0,0,52,53,6,1,0,0,12,5,1,321.5,0,0,0 +8135,9972,18167,18166,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,5,8.829758304073675,9.194467421114297,0,1,0,-9,33,0,3,-134.9182320307912,0,0,0,55,2,4,1,2,3,2019,1,2,7,0,50,55,15,1,0,1,0,21.40930457022318,21.40930457022318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,12,5,1,321.5,0,0,0 +8136,9973,18168,18169,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,7.976127080501305,7.802869223782738,1,0,-9,42,0,0,-3.449415491567589,0,0,0,64,1,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.960642026404113,7.830867767804833,0,0,51.08,49.24,6,1,0,0,5,3,1,538,0,0,0 +8136,9973,18169,18168,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,6.747607656018046,6.628856033187408,1,0,-9,42,0,0,-37.846544157503,0,0,0,64,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.384334214976106,6.789038484123462,0,0,57.16,56.15,6,1,0,0,5,3,1,538,0,0,0 +8137,9974,18170,18171,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.179401719330377,6.858755774892525,1,0,-9,6,0,4,4.077518342996822,-9,0,0,63,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.036354794334484,0,0,53,47,5,1,0,0,4,2,1,1121,0,0,0 +8137,9974,18171,18170,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,4.328555331243127,4.681709409924426,1,0,-9,41,0,-4,67.38304370013296,0,0,0,67,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.09506320444507,4.691701861803637,0,0,58.47,50.22,6,1,0,0,4,2,1,1121,0,0,0 +8138,9975,18172,18173,-9,-9,1,1,0,20,1,0,0,0,2,1,2,1,0,4,4.932704662893589,4.74312497785501,0,1,0,-9,3,0,0,14.84562192645239,-9,1,1,20,2,2,3,-9,-9,2019,2,2,29,12,3,0,15,1,12,3,0,6.026378036147928,6.026378036147928,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.73,69.18000000000001,5,1,0,1,1,1,0,449.5,0,0,0 +8138,9975,18173,18172,18174,-9,2,1,1,20,1,0,0,0,2,1,3,3,0,2,0,0,0,1,0,-9,3,0,0,61.42072289565779,-9,1,0,20,2,4,1,2,-9,2019,3,1,21,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.53,56.8,4,1,1,1,1,1,0,449.5,0,0,0 +8138,9976,18174,-9,-9,-9,3,1,0,51,3,0,0,0,2,-9,2,1,0,3,7.588895742794324,7.469089297897015,0,3,0,0,0,-9,0,-1021.347061514259,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,9,37,28,15,1,9,-9,0,6.016375750707023,6.016375750707023,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.87,61.03,2,1,0,1,1,3,0,999,0,0,0 +8138,9977,18175,-9,18174,-9,4,1,0,19,2,0,0,0,2,1,2,1,0,3,6.359120157224087,6.558577034901354,0,3,0,0,0,-9,0,-1014.356806394859,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,12,0,15,1,1,-9,1,5.085058621644611,5.085058621644611,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,52.23,6,1,0,0,1,2,0,465,0,0,0 +8139,9978,18176,-9,-9,-9,1,1,1,32,2,0,0,0,3,-9,2,1,0,5,8.090786113793435,8.185283572416409,0,3,0,0,0,-9,0,-961.8759326519096,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,42,40,15,1,0,-9,0,7.844538164473851,7.844538164473851,0,0,0,0,0,0,0,0,0,0,3.444916943989228,0,0,0,48.18,61.8,1,1,0,0,12,4,1,1222,0,0,0 +8140,9979,18177,-9,18178,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,4,7.176522022544768,7.362931934987873,0,4,0,0,0,-9,0,-961.1327179829354,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,2,35,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,4.450043417556298,0,0,0,43.9,51.78,7,1,0,0,2,2,1,274.5,0,0,0 +8140,9979,18178,-9,-9,-9,1,1,0,44,2,0,2,0,2,-9,1,1,0,3,5.215216374470327,4.805543635467017,0,4,0,0,0,-9,0,-947.2602838967248,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,16,16,15,1,0,-9,0,1.123671793230951,1.123671793230951,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.61,54.85,5,1,0,0,2,2,1,274.5,0,0,0 +8141,9980,18179,18180,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,6.467126901582607,6.423739719985965,0,1,0,-9,6,0,-4,48.11453274660962,0,0,0,73,1,3,1,2,2,2019,3,2,10,3,0,0,15,4,3,1,0,0,0,1,0,0,0,0,2.048985077106709,0,1,1,0,0,0,0,0,47.56,36.3,5,4,0,0,8,3,1,266,0,0,0 +8141,9980,18180,18179,-9,-9,2,1,1,73,1,0,0,0,1,-9,2,1,0,3,7.934331628379732,8.030867554332872,0,1,0,-9,6,0,4,153.3701460637507,0,0,0,69,2,3,3,-9,-9,2019,2,1,6,0,38,37,15,1,0,4,0,8.591713866493325,8.591713866493325,0,0,0,0,0,0,0,1,1,0,1.206539804178494,0,0,0,59.31,49.81,7,4,0,0,8,3,1,266,0,0,0 +8142,9981,18181,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,2,1,0,2,7.643027559141205,7.885472165113758,0,3,0,0,0,-9,0,-951.3482194567141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,37,38,15,1,4,-9,0,5.938689640688456,5.938689640688456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.52,33.27,5,3,0,1,8,3,0,441,0,0,0 +8143,9982,18182,-9,-9,-9,1,1,0,39,3,0,0,0,2,-9,2,1,0,1,8.025052374747748,8.14631356581417,0,3,0,-9,0,-9,0,-980.6519806073783,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,8,30,0,15,1,8,-9,0,11.43752155259277,11.43752155259277,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,28.21,5,1,0,0,2,4,1,2069,0,0,0 +8144,9983,18183,-9,18185,18184,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.8557744735633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,0,718.75,0,0,0 +8144,9983,18184,18185,-9,-9,2,1,1,28,1,2,2,0,2,-9,2,1,0,4,8.330099027364247,8.220333906271271,0,2,0,-9,6,0,1,105.5645264826362,0,1,0,27,2,1,3,-9,-9,2019,2,1,12,1,39,0,15,1,1,3,0,10.86966836248788,10.86966836248788,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,56.3,6,1,0,0,5,3,0,718.75,0,0,0 +8144,9983,18185,18184,-9,-9,1,1,0,27,1,2,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,6,0,-1,-103.897824043019,0,1,1,28,2,4,1,2,3,2019,3,2,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.028081004902764,3,27.32,33.92,4,1,0,0,5,3,0,718.75,0,0,0 +8144,9983,18186,-9,18185,18184,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1022.20406033227,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,0,718.75,0,0,0 +8145,9984,18187,18188,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.278112924365685,9.284834834225236,0,1,0,-9,33,0,-2,129.6681698967024,0,0,0,55,2,5,1,3,3,2019,1,2,9,1,45,39,15,1,1,1,0,26.65558449575774,26.65558449575774,0,0,0,0,0,0,0,0,0,0,6.40657945853685,0,0,0,52.34,56.95,6,1,0,0,9,5,1,271.5,0,0,0 +8145,9984,18188,18187,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,5,8.379401842367027,8.258562885885862,0,1,0,-9,7,0,2,-109.1596034701206,0,0,0,53,2,4,1,2,-9,2019,1,1,12,3,28,25,15,1,3,1,0,16.98342158790174,16.98342158790174,0,0,0,0,0,0,0,0,0,0,7.099271172032326,0,0,0,40.35,58.72,7,1,0,0,9,5,1,271.5,0,0,0 +8146,9985,18189,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,4,8.433038554011397,8.080068714889487,0,3,0,-9,0,-9,0,-908.6239456579301,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,55,0,15,1,0,-9,0,7.672616171899066,7.672616171899066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.85,42.12,4,4,0,1,8,4,0,286,0,0,0 +8147,9986,18190,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1113.175286853485,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,5,1,1,1326,0,0,0 +8148,9987,18191,18192,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,4,7.743374249234123,7.662713544144532,0,1,0,-9,7,0,0,.9277824274567634,0,0,0,48,3,3,1,3,-9,2019,1,2,17,4,39,48,15,1,4,1,0,7.51782983173658,7.51782983173658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.35,44.4,3,1,0,0,11,4,0,251,0,0,0 +8148,9987,18192,18191,-9,-9,2,1,1,48,1,0,0,0,3,-9,2,1,0,3,7.922777496949461,7.810096341824694,0,1,0,-9,7,0,0,-29.28963812358376,0,0,0,48,2,4,1,3,-9,2019,1,1,13,1,40,40,15,1,1,1,0,8.254162884370112,8.254162884370112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.47,43.21,5,1,0,0,11,4,0,251,0,0,0 +8149,9988,18193,-9,18195,18194,5,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-879.8893442334474,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.87,53.44,6,1,0,0,7,2,1,787.6666666666666,0,0,0 +8149,9988,18194,18195,-9,-9,2,1,1,48,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,26,0,1,9.568358118547106,0,0,0,47,3,4,1,3,3,2019,3,1,9,0,0,18,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.265369526081345,0,0,0,53,54,6,1,1,0,7,2,1,787.6666666666666,0,0,0 +8149,9988,18195,18194,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,4,7.675351617237764,7.379576086060885,0,2,0,-9,26,0,-1,-14.740858784421,0,0,0,48,2,4,3,2,3,2019,2,2,16,5,24,24,15,1,5,3,0,7.308240717205051,7.308240717205051,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.67,63.54,4,1,0,1,7,2,1,787.6666666666666,0,0,0 +8149,9989,18196,-9,18195,18194,3,1,1,22,2,0,1,0,2,-9,2,1,0,3,7.659022128269054,7.918992078166736,0,3,0,0,0,-9,0,-969.8693410972581,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,8,15,1,0,-9,1,5.547875484698944,5.547875484698944,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,7,3,1,57,0,0,0 +8149,9990,18197,-9,18195,18194,4,1,1,21,2,0,1,0,3,-9,2,1,0,4,7.561435433868883,7.898687326071504,0,3,0,0,0,-9,0,-885.8808298682969,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,46,15,1,1,-9,1,6.16019636067608,6.16019636067608,0,0,0,0,0,0,0,1,1,0,3.453632904400222,0,0,0,49,58,5,1,0,0,7,3,1,907,0,0,0 +8150,9991,18198,18199,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,5,8.930452922111186,9.345875001517991,0,2,0,-9,16,0,1,-72.06555197179819,0,0,0,49,1,4,1,2,1,2019,1,1,0,0,7,0,15,1,0,1,0,151.8337377332662,151.8337377332662,0,0,0,0,0,0,0,1,1,0,9.640346658220995,0,0,0,62.96,55.09,7,4,0,0,8,5,1,1417,0,0,0 +8150,9991,18199,18198,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,4,8.761733371617792,8.702350672186913,0,2,0,-9,18,0,-1,4.757295182227474,0,0,0,50,2,5,1,2,2,2019,1,2,6,0,36,37,15,1,0,1,0,22.2442135513892,22.2442135513892,0,0,0,0,0,0,0,1,1,0,1.127346644424979,0,0,0,63.09,47.92,1,4,0,0,8,5,1,1417,0,0,0 +8150,9991,18200,-9,18198,18199,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-815.7741570348979,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,4,0,0,8,5,1,1417,0,0,0 +8150,9992,18201,-9,18198,18199,3,1,1,19,2,0,1,0,2,-9,7,2,0,4,7.601578789143744,7.529977628970032,0,3,0,0,0,-9,0,-891.5440318420367,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,15,12,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,4,0,0,8,3,1,699,0,0,0 +8151,9993,18202,18203,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,3,8.001337946078641,7.5143075650101,0,2,0,-9,18,0,4,152.5800474589766,0,0,0,44,1,2,1,3,3,2019,1,2,10,0,41,37,15,1,0,1,0,7.108652801702615,7.108652801702615,0,0,0,0,0,0,0,1,0,1,7.918081628125043,0,0,0,50.28,51.35,3,1,0,0,10,3,1,1048.75,0,0,0 +8151,9993,18203,18202,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,2,7.256686200102094,7.70543687978271,7.312573701980166,2,0,-9,18,0,-4,-4.066963790621707,0,0,1,48,1,3,1,2,2,2019,1,1,12,0,21,21,15,1,0,1,0,6.388943795976677,6.388943795976677,0,0,0,0,0,0,0,1,0,1,7.031743592036666,0,0,0,55.2,49.4,5,3,0,0,10,3,1,1048.75,0,0,0 +8151,9993,18204,-9,18203,18202,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.7126733096754,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,2,0,0,10,3,1,1048.75,0,0,0 +8151,9993,18205,-9,18203,18202,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-950.2441351619412,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,2,0,0,10,3,1,1048.75,0,0,0 +8152,9994,18206,18207,-9,-9,1,1,0,56,1,0,0,0,2,-9,4,3,0,4,4.596940994041526,7.187553416562824,7.322233885792617,1,0,-9,8,0,0,-128.977042533883,0,0,0,56,2,4,1,2,-9,2019,3,2,6,0,10,24,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.21260786060114,7.381129464286172,0,0,60.12,54.8,6,1,0,0,13,4,1,494,0,0,0 +8152,9994,18207,18206,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.104420644540973,8.419098847149812,0,1,0,-9,8,0,0,-94.10222156222549,0,0,0,56,2,4,3,-9,-9,2019,2,1,7,0,37,37,15,1,0,4,0,11.80669487475292,11.80669487475292,0,0,0,0,0,0,0,0,0,0,6.518729789486002,0,0,0,60.12,54.8,6,1,0,0,13,4,1,494,0,0,0 +8153,9995,18208,18209,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.944930308052987,8.625711750835622,6.40905377681262,1,0,-9,31,0,8,-12.82150190256989,0,0,0,54,2,3,1,3,3,2019,1,2,10,0,62,46,15,1,1,1,0,11.31580952961735,11.31580952961735,0,0,0,0,0,0,0,1,1,0,2.918147958290669,6.355547628688996,0,0,51,48,5,1,0,1,7,5,1,767,0,0,0 +8153,9995,18209,18208,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.001444515749619,6.989224710183944,0,1,0,-9,8,0,-8,-70.48389059009247,0,0,0,62,2,3,1,-9,-9,2019,1,1,11,0,8,20,15,1,2,1,0,13.19987027827282,13.19987027827282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,1,7,5,1,767,0,0,0 +8153,9996,18210,-9,18209,18208,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,6.393678429232869,6.661089725797505,0,3,0,0,0,-9,0,-995.1291284898033,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,18,35,15,1,2,-9,1,3.757205822045424,3.757205822045424,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,7,2,1,1274,0,0,0 +8153,9997,18211,-9,18209,18208,4,1,1,23,2,0,0,0,2,-9,2,1,0,4,8.757705815033905,8.760255703235773,0,3,0,0,0,-9,0,-1045.299400013949,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,19.25893306590871,19.25893306590871,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,0,0,7,5,1,224,0,0,0 +8153,9998,18212,-9,18209,18208,5,1,0,19,2,0,0,1,2,0,7,2,0,4,0,4.918364265899603,5.063253947297716,3,0,0,0,-9,0,-1062.716308081827,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.441195788474737,0,0,0,46,58,5,1,0,0,7,2,1,445,0,0,0 +8154,9999,18213,18214,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,4,7.014819849632072,7.380976276070298,0,2,0,-9,7,0,-8,16.15928437260746,0,0,0,61,2,3,1,-9,-9,2019,1,1,10,0,20,0,15,1,1,1,0,7.897804164156753,7.897804164156753,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,1,0,1,7,4,1,196,0,0,0 +8154,9999,18214,18213,-9,-9,1,1,1,61,1,0,1,0,2,-9,2,1,0,3,8.56052164160986,8.553361420672413,5.637752931533052,2,0,-9,30,0,8,52.91583380996473,0,0,0,53,2,4,1,3,3,2019,1,2,10,0,46,37,15,1,1,1,0,13.54732477465108,13.54732477465108,0,0,0,0,0,0,0,1,1,0,2.087152075652349,6.172756673281563,0,0,51,48,5,1,0,1,7,4,1,196,0,0,0 +8154,10000,18215,-9,18213,18214,3,1,0,24,3,0,1,0,1,-9,1,1,0,4,6.48839160435542,6.425771712290116,0,3,0,0,0,-9,0,-1094.971420371334,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,10,15,1,2,-9,1,2.173115029935319,2.173115029935319,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,7,2,1,327,0,0,0 +8154,10001,18216,-9,18213,18214,5,1,1,22,2,0,1,0,2,-9,2,1,0,4,8.338062810403539,8.450192089025419,0,3,0,-9,0,0,0,-1018.812041179329,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,39,15,1,1,-9,1,15.6606379690674,15.6606379690674,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,7,5,1,654,0,0,0 +8154,10002,18217,-9,18213,18214,4,1,0,18,2,0,1,1,2,0,7,2,0,4,4.06696974602358,4.13173926584164,0,3,0,0,0,-9,0,-1082.430826180949,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,6,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,7,5,1,874,0,0,0 +8155,10003,18218,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-965.294700503275,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,4,0,0,8,1,0,147,0,0,0 +8156,10004,18219,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,3,7.099936313151945,7.254025022551671,0,3,0,0,0,-9,0,-1137.461856419815,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,39,38,15,1,11,-9,0,3.900936357219376,3.900936357219376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.07,53.09,3,1,0,0,10,2,0,1082,0,0,0 +8157,10005,18220,18221,-9,-9,2,1,1,75,1,0,0,0,2,-9,2,1,0,3,7.184262987755522,9.125138376515473,8.270453797015614,1,0,-9,52,0,-10,-70.74515826448206,0,0,0,85,1,4,3,2,1,2019,2,1,16,5,25,24,15,1,5,4,0,7.439118006148926,7.439118006148926,0,0,0,0,0,0,0,1,1,0,7.802024743403766,8.414251904180789,0,0,50.78,35.96,6,1,0,0,7,5,1,901.5,0,0,0 +8157,10005,18221,18220,-9,-9,1,1,0,85,1,0,0,0,1,-9,4,3,0,4,0,6.607614548147509,6.795845456177926,1,0,-9,52,0,10,135.49843391436,0,0,0,75,2,3,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.066394026076206,6.354148930717009,0,0,67.94,30.64,6,1,0,0,7,5,1,901.5,0,0,0 +8158,10006,18222,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,2,0,6.709546882367925,6.923182223221806,3,0,0,0,-9,0,-941.6829508087719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.563216892909396,0,0,43.68,38.24,2,1,0,0,10,2,1,383,0,0,0 +8159,10007,18223,18224,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.184533397151128,8.605192650359168,0,2,0,-9,10,0,1,19.62073149168005,0,0,0,42,2,4,1,2,2,2019,1,1,10,0,50,40,15,1,1,1,0,12.02817859437378,12.02817859437378,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,2,4,0,504.75,0,0,0 +8159,10007,18224,18223,-9,-9,1,1,0,42,1,0,2,0,2,-9,1,1,0,4,7.301627403159779,7.094270121810934,0,2,0,-9,10,0,-1,5.738041126985186,0,0,1,43,1,4,1,3,2,2019,1,2,7,0,12,9,15,1,0,1,0,15.9349324766825,15.9349324766825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.95,56.68,6,1,0,1,2,4,0,504.75,0,0,0 +8159,10007,18225,-9,18224,18223,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-869.7821524469982,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,2,4,0,504.75,0,0,0 +8159,10007,18226,-9,18224,18223,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-834.033418681306,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,1,0,0,2,4,0,504.75,0,0,0 +8160,10008,18227,-9,18228,18229,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-922.2995364744571,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,5,1,921.5,0,0,0 +8160,10008,18228,18229,-9,-9,1,1,0,41,1,1,2,0,1,-9,5,1,0,4,8.155530111349146,8.068597798875082,0,2,0,-9,11,0,0,23.45762018919357,0,0,1,41,1,4,1,2,1,2019,1,2,6,0,38,38,15,1,0,1,0,12.49424406646645,12.49424406646645,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,3,0,0,8,5,1,921.5,0,0,0 +8160,10008,18229,18228,-9,-9,2,1,1,41,1,1,2,0,1,-9,2,1,0,4,9.070384139019026,9.110924440721361,0,2,0,-9,10,0,0,-36.67502835292191,0,0,0,41,1,4,1,-9,-9,2019,1,1,9,0,38,38,15,1,1,1,0,24.80964092545032,24.80964092545032,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,8,5,1,921.5,0,0,0 +8160,10008,18230,-9,18228,18229,3,1,0,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.3131032624821,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,5,1,921.5,0,0,0 +8161,10009,18231,-9,18232,-9,2,1,0,16,2,0,0,1,2,-9,7,2,0,3,5.138742431961614,5.455805952296658,0,3,0,0,0,-9,0,-1081.488458243797,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,19,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.47,53.58,4,1,0,0,5,4,0,924.5,0,0,0 +8161,10009,18232,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,2,8.581508814759049,8.234864049844116,0,3,0,0,0,-9,0,-931.0785284664906,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,8,48,53,15,1,8,-9,0,12.22648403484391,12.22648403484391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.45,47.27,1,1,0,0,5,4,0,924.5,0,0,0 +8162,10010,18233,18234,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,7.344158374120738,7.152257853253411,0,1,0,-9,4,0,-5,34.12805423914356,0,1,1,30,2,3,1,-9,-9,2019,1,1,11,1,45,40,15,1,1,1,0,3.240741290650421,3.240741290650421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,57.61,6,1,0,0,12,5,1,863.5,0,0,0 +8162,10010,18234,18233,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,3,8.527044893373692,8.614369732750818,0,1,0,-9,4,0,5,-16.19294450706825,0,0,0,25,1,4,1,2,2,2019,1,2,9,0,50,42,15,1,0,1,0,11.93798273336488,11.93798273336488,0,0,0,0,0,0,0,0,0,0,6.381510916213822,0,0,0,60.45,43.75,6,1,0,0,12,5,1,863.5,0,0,0 +8163,10011,18235,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,4,8.490778877795226,8.503796780163642,0,3,0,0,0,-9,0,-968.8113132281539,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,44,40,15,1,0,-9,0,14.45090836912465,14.45090836912465,0,0,0,0,0,0,0,0,0,0,1.647505368226938,0,3.997881021084775,3,47.91,57.48,6,1,0,0,7,5,1,832,0,0,0 +8164,10012,18236,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,1,0,5.521166570696311,5.849682277687167,3,0,0,0,-9,0,-999.0217435057627,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.288711483806779,5.614328093059791,0,0,47.44,33.84,6,1,0,0,4,2,1,594,0,0,0 +8165,10013,18237,-9,18238,18239,3,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-999.0793086226591,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,1,0,0,7,5,1,793.3333333333334,0,0,0 +8165,10013,18238,18239,-9,-9,1,1,0,57,1,0,1,0,1,-9,1,1,0,4,9.57568139786655,9.90518114539603,0,2,0,-9,21,0,0,129.237416505534,0,0,0,57,2,5,1,-9,-9,2019,1,2,12,0,14,12,15,1,0,1,0,144.4019299975856,144.4019299975856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,56.11,5,1,0,0,7,5,1,793.3333333333334,0,0,0 +8165,10013,18239,18238,-9,-9,2,1,1,57,1,0,1,0,2,-9,1,1,0,5,8.441128168145125,8.532613118912456,0,2,0,-9,21,0,0,-21.67151037326853,0,0,0,57,1,4,1,1,3,2019,1,1,5,0,50,40,15,1,0,1,0,11.41878512618032,11.41878512618032,0,0,0,0,0,0,0,1,1,0,0,0,5.212756464630026,3,55.09,55.87,6,1,0,0,7,5,1,793.3333333333334,0,0,0 +8166,10014,18240,18241,-9,-9,2,1,0,59,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,30,0,2,-114.9976556996335,0,0,0,57,1,5,1,2,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.348018872358032,0,0,0,60.29,52.11,6,1,0,0,10,2,1,861.5,0,0,0 +8166,10014,18241,18240,-9,-9,1,1,1,57,1,0,1,0,1,-9,1,1,0,5,7.602000317711028,7.750187554623887,0,2,0,-9,30,0,-2,11.98047526042465,0,0,0,59,1,3,3,3,2,2019,2,2,6,0,50,50,15,1,0,3,0,4.574137584994171,4.574137584994171,0,0,0,0,0,0,0,1,1,0,3.559055206108601,0,0,0,57.06,57.76,6,1,0,0,10,2,1,861.5,0,0,0 +8166,10015,18242,-9,18240,18241,3,1,1,21,2,0,1,0,1,1,2,1,0,5,7.7702532739425,7.856375233285992,0,3,0,0,0,-9,0,-950.0715523326551,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,41,0,15,1,3,-9,1,6.774473886361473,6.774473886361473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,4,1,0,0,10,3,1,321,0,0,0 +8166,10016,18243,-9,18240,18241,4,1,1,18,2,0,1,1,2,0,7,2,0,5,0,.8786140704712373,.8154744348044777,3,0,0,0,-9,0,-917.9759306025549,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.242297571817035,0,0,0,54.1,59.11,3,1,0,0,10,3,1,482,0,0,0 +8167,10017,18244,18245,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,4,7.203021398868667,7.522123762724936,0,1,0,-9,29,-9,8,-79.86225761449367,-9,0,0,52,2,4,1,2,2,2019,1,2,6,0,80,0,15,1,0,1,0,2.371143695696829,2.371143695696829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,12,4,1,699.5,0,0,0 +8167,10017,18245,18244,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,4,8.218999031620951,8.322928125500535,0,1,0,-9,29,-9,-8,3.200967185526219,-9,0,0,60,2,4,1,2,3,2019,1,1,6,0,25,0,15,1,0,1,0,17.31156263152464,17.31156263152464,0,0,0,0,0,0,0,0,0,0,1.101940657344716,0,0,0,57.16,56.15,5,1,0,0,12,4,1,699.5,0,0,0 +8167,10018,18246,-9,18245,18244,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.003096286481409,8.144102752219968,0,3,0,-9,0,-9,0,-1081.753976308909,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,44,0,15,1,0,-9,1,10.87758275165858,10.87758275165858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,6,1,0,0,12,4,1,427,0,0,0 +8168,10019,18247,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,6.105811262504638,6.598803493124531,3,0,0,0,-9,0,-1073.468601952939,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.599876410684565,6.729686884775431,0,0,62.67,49.54,7,1,0,0,10,2,1,583,0,0,0 +8169,10020,18248,18249,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,8.256982708836855,8.29760970362422,1,0,-9,45,0,5,35.33661480787437,0,0,0,65,3,4,3,2,3,2019,4,2,11,1,0,0,15,4,1,3,0,0,0,1,3.793515424165837,0,0,0,0,47.35765523005888,1,1,0,0,8.262581103025644,3.970446449038962,1,47.92,22.81,5,1,0,0,2,3,1,890.5,0,0,0 +8169,10020,18249,18248,-9,-9,2,1,0,65,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,7,0,-5,-20.70288192373285,0,0,0,70,1,2,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.149827549481672,1,49.86,55.31,6,1,0,0,2,3,1,890.5,0,0,0 +8170,10021,18250,-9,18251,18253,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.3949337178278,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,2432.25,0,0,0 +8170,10021,18251,18253,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,2,9.552274103097986,9.600530201007031,0,2,0,-9,10,0,-2,-1.864385783364883,0,0,1,46,2,4,1,3,2,2019,1,2,11,0,35,30,15,1,0,1,0,47.15633226546344,47.15633226546344,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,47.51,6,1,0,0,2,5,1,2432.25,0,0,0 +8170,10021,18252,-9,18251,18253,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.092398592751,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,2432.25,0,0,0 +8170,10021,18253,18251,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,7.926295734676742,8.4345652032858,0,2,0,-9,10,0,2,-14.81668515639705,0,0,0,44,1,2,1,2,2,2019,1,1,12,0,45,43,15,1,0,1,0,14.62309029791553,14.62309029791553,0,0,0,0,0,0,0,1,1,0,8.452194814046903,0,0,0,59.29,49.68,6,1,0,0,2,5,1,2432.25,0,0,0 +8171,10022,18254,-9,18258,18257,5,1,1,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.355450259002,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,4,2,1,584.8333333333334,0,0,0 +8171,10022,18255,-9,18258,18257,6,1,0,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.6380378276444,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,2,1,584.8333333333334,0,0,0 +8171,10022,18256,-9,18258,18257,4,1,0,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.315609812811,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,584.8333333333334,0,0,0 +8171,10022,18257,18258,-9,-9,1,1,1,37,1,1,4,0,1,-9,1,1,0,4,8.087971138352927,8.084923086955762,0,2,0,-9,11,0,10,38.35457652237466,0,0,0,27,2,4,3,3,2,2019,2,2,7,0,40,35,15,1,0,3,0,11.52097181433409,11.52097181433409,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,3,0,0,4,2,1,584.8333333333334,0,0,0 +8171,10022,18258,18257,-9,-9,2,1,0,27,1,1,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,9,0,-10,30.14541794556848,0,1,1,37,1,4,1,-9,-9,2019,3,1,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,6,3,0,0,4,2,1,584.8333333333334,0,0,0 +8171,10022,18259,-9,18258,18257,3,1,0,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.589630138633,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,584.8333333333334,0,0,0 +8172,10023,18260,18261,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,7.927059206375541,7.803188060465853,0,1,0,-9,10,0,1,-98.95486407048607,0,0,0,58,2,3,1,3,2,2019,1,1,8,0,32,32,15,1,0,1,0,8.611639226931267,8.611639226931267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.08,41.15,6,1,0,0,2,5,1,347.5,0,0,0 +8172,10023,18261,18260,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,3,7.515587447751346,8.462010830309872,7.611963948890298,1,0,-9,10,0,-1,-73.51511819876981,0,0,0,59,2,2,1,3,3,2019,1,2,7,0,10,0,15,1,0,1,0,21.35370105642924,21.35370105642924,0,0,0,0,0,0,0,0,0,0,1.392578225956768,8.090529398333373,0,0,57.66,45.08,5,1,0,0,2,5,1,347.5,0,0,0 +8173,10024,18262,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,1,0,6.360836242836745,6.484770401667242,3,0,0,0,-9,0,-1080.56321143961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.521091023927577,0,3,52.91,19.32,4,1,0,0,7,2,0,470,0,0,0 +8174,10025,18263,-9,18265,18264,5,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1075.067652093214,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,4,1,524,0,0,0 +8174,10025,18264,18265,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,5,8.413034137431225,8.156812846431031,0,2,0,-9,10,0,0,-125.8409921826634,0,0,0,50,2,3,1,1,2,2019,1,2,10,0,55,60,15,1,0,1,0,10.36456927400354,10.36456927400354,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,524,0,0,0 +8174,10025,18265,18264,-9,-9,2,1,0,50,1,0,1,0,2,-9,1,1,0,3,6.664308642481943,6.639517167873827,0,2,0,-9,10,0,0,-98.05894102709912,0,0,0,50,2,5,1,2,2,2019,1,1,12,0,55,45,15,1,2,1,0,1.523109356065441,1.523109356065441,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,5,1,0,0,13,4,1,524,0,0,0 +8174,10026,18266,-9,18265,18264,3,1,0,24,2,0,1,0,1,-9,2,1,0,3,7.642405984368581,8.108902136815129,0,3,0,0,0,-9,0,-937.559004624389,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,33,32,15,1,0,-9,1,8.393776727978935,8.393776727978935,0,0,0,0,0,0,0,1,1,0,5.435603766551767,0,0,0,56.35,51.16,6,1,0,0,13,3,1,625,0,0,0 +8174,10027,18267,-9,18265,18264,4,1,0,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-920.4162256583163,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,6,1,0,0,13,1,1,1071,0,0,0 +8175,10028,18268,-9,18270,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.7127177012177,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,1,0,1226.333333333333,0,0,0 +8175,10028,18269,-9,18270,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.865122897912,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,1,0,1226.333333333333,0,0,0 +8175,10028,18270,-9,-9,-9,1,1,0,35,2,0,3,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1027.040582129347,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,16,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,4,1,1,0,7,1,0,1226.333333333333,0,0,0 +8176,10029,18271,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-952.9342377721638,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,2.382549307348325,0,0,0,0,0,1,1,0,0,0,0,0,62.7,14.33,6,1,0,0,13,1,0,985,0,0,0 +8177,10030,18272,-9,-9,-9,1,1,1,24,2,0,0,0,3,-9,3,3,0,2,0,3.427673092276638,3.605363286986753,3,0,0,0,-9,0,-901.5080161454985,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.534774851487819,0,0,0,32.58,55.66,5,1,1,1,7,1,0,482,0,0,0 +8177,10031,18273,-9,-9,-9,2,1,1,20,2,0,0,0,2,-9,3,3,0,2,0,4.878812581477844,5.173508861699852,3,0,-9,0,-9,0,-1007.70156122012,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.154863584529954,0,0,0,46.67,32.98,6,4,1,0,7,2,0,702,0,0,0 +8177,10032,18274,-9,-9,-9,3,1,1,23,2,0,0,1,2,-9,7,2,0,4,0,4.71350275027739,4.190003531077196,3,0,-9,0,-9,0,-987.2072039905288,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.905490428337892,0,0,0,33.71,42.35,5,1,0,0,7,1,0,235,0,0,0 +8178,10033,18275,18276,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,62,0,-4,75.30767927802961,0,0,0,84,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.55,38.61,7,1,0,0,13,2,0,368.5,0,0,0 +8178,10033,18276,18275,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,7.157659842977474,7.536827834841779,1,0,-9,62,0,4,37.61927878529126,0,0,0,80,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.091670146117285,0,0,55.37,40.83,6,1,0,0,13,2,0,368.5,0,0,0 +8179,10034,18277,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,1,1,0,5,7.698532970745335,7.927453834012002,0,3,0,-9,0,-9,0,-983.6264710232272,-9,0,1,-9,-9,-9,-9,1,3,2019,-9,0,5,0,50,0,15,1,0,-9,0,5.763189639549663,5.763189639549663,0,0,0,0,0,0,0,0,0,0,1.215119974279027,0,0,0,54.1,59.11,6,1,0,0,12,3,0,1096,0,0,0 +8180,10035,18278,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,5,8.003502287086693,7.798830525788993,0,3,0,0,0,-9,0,-851.4945974907555,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,4,40,40,15,1,4,-9,0,8.651637198658912,8.651637198658912,0,0,0,0,0,0,0,0,0,0,5.807352144136441,0,0,0,50.44,56.66,6,1,0,0,4,4,1,366,0,0,0 +8180,10036,18279,-9,-9,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.298863651963746,8.571980587795808,0,3,0,0,0,-9,0,-1007.829312500769,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,1,45,48,15,1,1,-9,0,13.17988897134902,13.17988897134902,0,0,0,0,0,0,0,0,0,0,1.236537494038553,0,0,0,45.06,60.17,6,1,0,0,4,4,1,104,0,0,0 +8181,10037,18280,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,6.652643490432589,6.923952111290463,3,0,0,0,-9,0,-1154.179501479412,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.30087924103719,7.127424417603342,0,0,54.85,34.63,5,1,0,1,11,2,1,578,0,0,0 +8182,10038,18281,18282,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,2.609045253672512,2.816128144861463,1,0,-9,16,0,14,57.15339336164412,0,0,0,57,3,1,3,3,2,2019,4,2,30,11,0,0,15,4,11,4,0,0,0,1,0,38.97613400211498,0,0,0,0,1,1,0,2.741146487251495,2.806172802124623,0,0,23.86,20.5,5,1,0,0,5,2,1,591.5,0,0,0 +8182,10038,18282,18281,-9,-9,2,1,0,57,1,0,0,0,3,-9,4,3,0,1,0,7.024281140053366,6.62878246696164,1,0,-9,16,0,-14,30.36101442320386,0,0,0,71,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.828941871010228,26.05159169257576,2,40.15,27.8,5,1,0,0,5,2,1,591.5,0,0,0 +8183,10039,18283,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1047.888132867819,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.41,10.82,4,1,0,0,9,1,0,652,0,0,0 +8184,10040,18284,-9,18285,18287,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.0081103783656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,655.2,0,0,0 +8184,10040,18285,18287,-9,-9,2,1,0,42,1,0,3,0,2,-9,2,1,0,3,7.599878772267555,7.729481473033899,0,2,0,-9,3,0,-5,44.40458329302378,0,0,1,47,2,4,1,2,2,2019,1,1,11,0,28,40,15,1,0,1,0,7.730857224539342,7.730857224539342,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.94,53.79,6,1,0,0,9,4,1,655.2,0,0,0 +8184,10040,18286,-9,18285,18287,4,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-968.1016795416425,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,4,1,655.2,0,0,0 +8184,10040,18287,18285,-9,-9,1,1,1,47,1,0,3,0,2,-9,1,1,0,4,9.159093368353798,8.454188943168495,0,2,0,-9,3,0,5,44.57962994437823,0,0,0,42,2,3,1,-9,-9,2019,1,2,9,0,45,50,15,1,1,1,0,18.22774891467802,18.22774891467802,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,4,1,655.2,0,0,0 +8184,10040,18288,-9,18285,18287,3,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.175177200755,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,655.2,0,0,0 +8185,10041,18289,18290,-9,-9,1,1,0,56,1,0,1,0,2,-9,2,1,0,3,6.422611906254915,6.458566814169988,0,2,0,-9,25,0,7,-24.41339304638079,0,0,0,49,1,3,1,2,2,2019,1,2,6,0,10,10,15,1,0,1,0,7.505299760140825,7.505299760140825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,55.09,6,1,0,0,4,4,1,3137,0,0,0 +8185,10041,18290,18289,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,3,8.87566806148369,8.872815945754956,0,2,0,-9,25,0,-7,-3.406973249058052,0,0,0,56,2,3,1,2,3,2019,1,1,8,0,36,37,15,1,0,1,0,23.14116497478829,23.14116497478829,0,0,0,0,0,0,0,1,1,0,3.38515919371173,0,0,0,55.54,46.02,6,1,0,0,4,4,1,3137,0,0,0 +8186,10042,18291,18292,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,5,9.346621838399699,9.515356077318286,0,1,0,-9,24,0,2,-98.38773433812905,0,0,0,50,1,4,1,3,2,2019,1,2,18,6,47,53,15,1,6,1,0,36.66542132444442,36.66542132444442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,59.91,7,1,0,0,2,5,1,218,0,0,0 +8186,10042,18292,18291,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,4,9.345632296258112,9.573012999237362,0,1,0,-9,23,0,-2,-138.3971198936444,0,0,0,52,1,5,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,23.75806338744698,23.75806338744698,0,0,0,0,0,0,0,0,0,0,5.73236770280138,0,0,0,56.35,51,6,1,0,0,2,5,1,218,0,0,0 +8186,10043,18293,-9,18291,18292,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,8.653162028117222,8.766329548691155,0,3,0,0,0,-9,0,-902.248386282981,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,58,55,15,1,0,-9,1,13.43578886419449,13.43578886419449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,966,0,0,0 +8187,10044,18294,18296,-9,-9,1,1,0,46,1,0,1,0,2,-9,97,3,0,4,0,0,0,2,0,-9,21,0,1,6.320701156666267,0,0,0,45,2,5,1,3,2,2019,3,2,14,2,0,18,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.368353792599766,3,44.02,60.7,6,1,0,0,9,3,1,256.3333333333333,0,0,0 +8187,10044,18295,-9,18294,18296,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-976.9982810494083,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,3,1,256.3333333333333,0,0,0 +8187,10044,18296,18294,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,5,8.654918943078696,8.384213972609514,0,2,0,-9,3,0,-1,75.10041723553302,0,0,0,46,2,4,3,-9,2,2019,2,1,8,0,37,38,15,1,0,3,0,16.32123045857976,16.32123045857976,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.96,56.89,6,1,0,0,9,3,1,256.3333333333333,0,0,0 +8187,10045,18297,-9,18294,18296,3,1,1,18,2,0,1,0,2,-9,2,1,0,4,5.444812800330095,5.098970866763865,0,3,0,0,0,-9,0,-1061.791449403324,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,0,15,1,2,-9,1,.4786974035797049,.4786974035797049,0,0,0,0,0,0,0,1,1,0,3.221446519847312,0,0,0,48,59,5,1,0,0,9,2,1,243,0,0,0 +8188,10046,18298,18299,-9,-9,3,1,1,47,1,0,1,0,1,-9,97,3,0,1,0,0,0,2,0,-9,1,-9,5,0,-9,0,0,42,3,1,3,-9,-9,2019,4,1,33,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,113.3555227981838,2,19.4,26.58,1,1,0,1,1,1,0,451,0,0,0 +8188,10046,18299,18298,-9,-9,1,1,0,42,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,1,-9,-5,0,-9,0,1,47,1,1,3,3,-9,2019,4,3,26,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.05929021065245,3,38.42,15.04,2,1,0,0,1,1,0,451,0,0,0 +8188,10046,18300,-9,18299,-9,2,1,1,17,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-972.9008917817857,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,30.28,50.97,4,1,0,0,1,1,0,451,0,0,0 +8189,10047,18301,-9,18302,18303,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-938.7730186542781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,10,4,1,609.3333333333334,0,0,0 +8189,10047,18302,18303,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,7.811273448448032,8.187019971476621,0,2,0,-9,17,0,1,204.143388638173,0,0,1,39,2,4,1,2,2,2019,1,2,11,0,27,28,15,1,0,1,0,12.93612668293372,12.93612668293372,0,0,0,0,0,0,0,1,1,0,1.577923239982274,0,0,0,48.31,50.68,6,1,0,0,10,4,1,609.3333333333334,0,0,0 +8189,10047,18303,18302,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.310534182426144,8.516291701316183,0,2,0,-9,17,0,-1,-5.651308510024706,0,0,0,40,2,4,1,2,2,2019,1,1,11,0,53,49,15,1,0,1,0,7.826649567255847,7.826649567255847,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,10,4,1,609.3333333333334,0,0,0 +8190,10048,18304,18305,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.22680279987675,6.943323881178666,1,0,-9,27,0,23,88.13416286118425,0,0,0,54,2,4,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1.636252504789304,7.011866066881697,0,0,59.8,41.42,6,1,0,0,9,3,1,1069.5,0,0,0 +8190,10048,18305,18304,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,7.370621473840052,7.535233156585218,0,1,0,-9,27,0,-23,43.30966405838819,0,0,0,77,2,3,3,3,1,2019,2,2,15,3,15,11,15,1,3,4,0,12.59128930311575,12.59128930311575,0,0,0,0,0,0,0,1,1,0,.7556541845403276,0,0,0,45.91,59.89,4,1,0,0,9,3,1,1069.5,0,0,0 +8191,10049,18306,18307,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,7.628747474920519,7.474185138574608,1,0,-9,8,0,4,-13.23347793768676,0,0,0,74,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.070895641175861,7.399707613765478,0,0,54.2,57.49,6,1,0,0,10,3,1,505,0,0,0 +8191,10049,18307,18306,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-4,-21.39684316122517,0,0,0,78,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.097460247602587,0,0,0,59.71,50.89,6,1,0,0,10,3,1,505,0,0,0 +8192,10050,18308,18309,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,2,0,8.013936575444287,8.304524846370912,1,0,-9,46,0,2,30.02161032671602,0,0,0,70,2,3,3,2,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.888430297159236,8.262785019606131,0,0,44.64,37.85,5,3,0,0,9,3,1,1609.5,0,0,0 +8192,10050,18309,18308,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-2,51.03968750532237,0,0,0,72,1,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.863155429211731,0,0,0,53.18,51.37,6,3,0,0,9,3,1,1609.5,0,0,0 +8193,10051,18310,-9,18312,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-964.3254744666746,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,0,697.3333333333334,0,0,0 +8193,10051,18311,-9,18312,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-872.8354022155046,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,0,697.3333333333334,0,0,0 +8193,10051,18312,-9,-9,-9,1,1,0,41,2,0,2,0,1,-9,1,1,0,3,8.918606935726233,8.944021727845904,0,4,0,-9,0,0,0,-1127.249438127835,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,1,40,45,15,1,1,-9,0,20.63873678043841,20.63873678043841,0,0,0,0,0,0,0,1,1,0,.7729961785176924,0,11.12927296172366,3,41.21,51.34,3,1,0,0,8,4,0,697.3333333333334,0,0,0 +8194,10052,18313,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1073.935047260422,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,1,1.174051940663715,0,0,0,0,0,1,1,0,0,0,0,0,26.01,39.84,2,1,0,0,10,1,0,345,0,0,0 +8195,10053,18314,18317,-9,-9,1,1,0,42,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,26,0,-4,44.86125626084863,0,0,1,46,3,4,1,3,3,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,2,0,327.75,0,0,0 +8195,10053,18315,-9,18314,18317,6,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-984.1546451997026,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,327.75,0,0,0 +8195,10053,18316,-9,18314,18317,7,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.048639764511,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,327.75,0,0,0 +8195,10053,18317,18314,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,4,7.461367471765711,7.664976729277662,0,2,0,-9,9,0,4,91.76621616527314,-9,0,0,42,3,4,3,-9,-9,2019,2,1,9,0,15,0,15,1,1,3,0,18.81871807605018,18.81871807605018,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,3,0,0,8,2,0,327.75,0,0,0 +8195,10054,18318,-9,18314,18317,3,1,1,23,2,0,2,0,1,1,3,3,0,4,7.077055200414056,6.918915094183043,0,3,0,0,0,-9,0,-957.3413275200053,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,3,1,0,8,2,0,342,0,0,0 +8195,10055,18319,-9,18314,18317,4,1,1,21,2,0,2,0,1,-9,2,1,0,4,7.356125930190162,7.265481336608079,0,3,0,0,0,-9,0,-1139.112143171213,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,20,0,15,1,1,-9,1,7.581665207091981,7.581665207091981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,2,0,1242,0,0,0 +8195,10056,18320,-9,18314,18317,5,1,0,19,2,0,2,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-948.8721901448766,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.4,40.43,7,3,1,0,8,1,0,441,0,0,0 +8196,10057,18321,18322,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.635283649923771,8.580786803383157,0,1,0,-9,1,-9,-1,-31.81303100246776,-9,1,0,28,2,4,1,-9,-9,2019,1,1,6,0,50,0,15,1,0,1,0,18.8516443491636,18.8516443491636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,321,0,0,0 +8196,10057,18322,18321,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,4,7.775966119312054,7.831061437307822,0,1,0,1,1,-9,1,-215.3642801173436,0,1,1,27,1,4,1,-9,1,2019,1,2,6,0,40,38,15,1,0,1,0,7.914569970234671,7.914569970234671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,3,0,0,2,5,1,321,0,0,0 +8197,10058,18323,18324,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,7.80464149892523,7.678839727770153,1,0,-9,8,0,-1,116.4651493856507,0,0,0,75,3,2,3,3,2,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.719312185428064,0,0,49.52,35.69,6,1,0,0,13,3,1,931.5,0,0,0 +8197,10058,18324,18323,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,1,72.43787010524697,0,0,0,74,2,2,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,21.99,6,1,0,0,13,3,1,931.5,0,0,0 +8198,10059,18325,18326,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.516041743906264,8.4904514742394,0,2,0,-9,14,0,1,42.98143213565471,0,0,0,48,2,4,1,3,3,2019,1,2,19,7,40,40,15,1,7,1,0,15.49583404537052,15.49583404537052,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.94,36.38,3,1,0,0,7,4,1,1806.333333333333,0,0,0 +8198,10059,18326,18325,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.57266541776302,7.704392975828329,0,2,0,-9,14,0,-1,14.58370536788494,0,0,0,49,2,3,1,2,2,2019,1,1,17,5,25,25,15,1,5,1,0,8.154817473574642,8.154817473574642,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.67,55.82,5,1,0,0,7,4,1,1806.333333333333,0,0,0 +8198,10059,18327,-9,18326,18325,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.0733568799534,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1806.333333333333,0,0,0 +8199,10060,18328,-9,18331,18330,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1044.031961349012,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,642,0,0,0 +8199,10060,18329,-9,18331,18330,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-928.29533903393,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,642,0,0,0 +8199,10060,18330,18331,-9,-9,1,1,1,36,1,0,2,0,1,-9,2,1,0,4,8.772226904365812,9.125931832689174,0,2,0,-9,1,-9,7,41.1074081122474,-9,0,0,29,2,4,1,2,1,2019,1,2,11,0,60,0,15,1,0,1,0,11.1917565179213,11.1917565179213,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,4,1,642,0,0,0 +8199,10060,18331,18330,-9,-9,2,1,0,29,1,0,2,0,2,-9,2,1,0,4,6.939548505034144,7.132700452870534,0,2,0,-9,1,-9,-7,-88.21913768483185,-9,1,1,36,1,4,1,-9,-9,2019,1,1,10,0,11,0,15,1,0,1,0,11.96588063810091,11.96588063810091,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,7,4,1,642,0,0,0 +8200,10061,18332,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,4,8.628324969238632,8.658451877644596,0,3,0,0,0,-9,0,-951.4539071900967,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,41,15,1,0,-9,0,14.91702698492189,14.91702698492189,0,0,0,0,0,0,0,1,1,0,3.995188627799371,0,0,0,54.79,55.86,6,1,0,0,12,5,1,593,0,0,0 +8201,10062,18333,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,5.684518447904877,5.896625245373655,3,0,0,0,-9,0,-1030.131005616738,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.585529586439363,5.697139047871326,0,0,43.25,51.98,6,3,0,0,8,2,1,139,0,0,0 +8202,10063,18334,18335,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,6,0,-8,-62.26365342353234,0,0,0,64,1,2,3,3,3,2019,4,1,11,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.19,21.53,6,1,0,1,2,2,0,270,0,0,0 +8202,10063,18335,18334,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,2,0,7.176219023925009,7.305467159172303,1,0,-9,6,0,8,57.87320123691789,0,0,0,56,3,1,3,1,1,2019,4,2,12,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.668344734322422,114.9205956661416,1,48,37,5,1,0,1,2,2,0,270,0,0,0 +8203,10064,18336,18337,-9,-9,1,1,1,68,1,0,1,0,1,-9,1,1,0,5,6.949931336596358,8.082021102770149,7.714607223699876,2,0,-9,6,0,13,-40.18590313067125,0,0,0,55,1,3,1,2,3,2019,1,2,9,0,20,24,15,1,0,1,0,7.482789246377282,7.482789246377282,0,0,0,0,0,0,0,1,1,0,2.525095152121627,7.870919466649042,0,0,53.75,59.47,6,1,0,0,5,3,1,425.5,0,0,0 +8203,10064,18337,18336,-9,-9,2,1,0,55,1,0,1,0,1,-9,2,1,0,3,7.29165223812966,7.529092759314925,0,2,0,-9,6,0,-13,38.71367105527533,0,0,0,68,1,5,1,-9,-9,2019,1,1,8,0,20,22,15,1,0,1,0,9.172546310138561,9.172546310138561,0,0,0,0,0,0,0,1,1,0,3.750216410824023,0,0,0,57.33,53.46,6,1,0,0,5,3,1,425.5,0,0,0 +8203,10065,18338,-9,18337,18336,3,1,0,18,2,0,1,0,2,1,11,3,0,3,7.174132608339299,7.406319308593136,0,3,0,0,0,-9,0,-947.4922942837165,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,37,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.293542473564142,0,0,0,42.12,55.21,6,1,0,0,5,3,1,789,0,0,0 +8204,10066,18339,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-908.5713478426555,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,15,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.958312816111829,0,0,0,35.86,64.55,6,1,0,0,7,1,1,333,0,0,0 +8205,10067,18340,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,4.897582890648154,4.712599165579292,3,0,-9,0,-9,0,-1091.728376464648,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,1,0,0,14.83332710252564,0,0,0,1,1,0,4.703538728438386,4.732759016676347,0,0,50,47,7,1,0,0,6,2,0,193,0,0,0 +8206,10068,18341,-9,-9,-9,1,1,0,23,2,1,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1038.408504303639,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.24,50.03,4,1,1,0,5,1,0,1688,0,0,0 +8206,10068,18342,-9,18341,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1077.626711043926,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,1,0,1688,0,0,0 +8207,10069,18343,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,1,1,0,4,7.698744061674281,7.961521433590679,7.392758991795575,3,0,0,0,-9,0,-860.0755399477619,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,30,15,1,0,-9,0,11.6564909007455,11.6564909007455,0,0,0,0,0,0,0,1,1,0,6.728806843837176,7.161062457611707,0,0,61.68,49.95,7,1,0,0,9,4,0,295,0,0,0 +8208,10070,18344,-9,18345,18346,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.3734010987819,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,1556.666666666667,0,0,0 +8208,10070,18345,18346,-9,-9,2,1,0,32,1,0,1,0,1,-9,2,1,0,3,8.306975040708553,8.360932257800492,0,2,0,-9,7,0,-15,4.892741290659253,0,0,1,47,2,4,1,3,2,2019,1,1,12,0,40,37,15,1,0,1,0,11.4180217362845,11.4180217362845,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.13,32.8,6,1,0,0,11,4,1,1556.666666666667,0,0,0 +8208,10070,18346,18345,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.359068992414832,8.446528806796149,0,2,0,-9,7,0,15,28.85046270752733,0,0,0,32,1,3,1,2,2,2019,1,2,11,0,39,48,15,1,0,1,0,13.56157794278229,13.56157794278229,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,1556.666666666667,0,0,0 +8209,10071,18347,18348,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,4.724470710244669,4.473437316974721,1,0,-9,11,0,21,28.87896376154536,0,0,0,45,1,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.78683158772709,5.10791575783291,0,0,66.37,38.36,4,3,0,0,7,4,1,328,0,0,0 +8209,10071,18348,18347,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,4,8.594358280543871,8.4931635682329,0,1,0,-9,11,0,-21,-17.61310810724898,0,0,0,66,1,3,3,3,3,2019,2,1,9,0,40,0,15,1,1,4,0,17.87066577218123,17.87066577218123,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,7,4,1,328,0,0,0 +8210,10072,18349,18350,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,7.182428941654096,7.164131865900903,1,0,-9,59,0,2,55.10813946139887,0,0,0,76,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.923378283303553,7.131550931093043,0,0,54.2,57.49,7,1,0,0,13,2,1,1218,0,0,0 +8210,10072,18350,18349,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,59,0,-2,-107.202304446942,0,0,0,78,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,44.18577806722897,0,0,0,0,1,1,0,0,0,0,0,46.3,21.62,6,1,0,0,13,2,1,1218,0,0,0 +8211,10073,18351,18352,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,5,8.453804955943426,8.504170249606991,0,1,0,-9,8,0,-15,-61.3836232583466,0,0,0,55,3,3,1,3,3,2019,1,1,12,0,50,38,15,1,0,1,0,10.44792296117058,10.44792296117058,0,0,0,0,0,0,0,0,0,0,8.019346858071797,0,0,0,54.1,59.11,6,1,0,0,5,4,1,2061.5,0,0,0 +8211,10073,18352,18351,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,3,7.404147950952964,7.498315222820119,0,1,0,-9,8,0,15,-198.4036624439323,0,0,0,40,2,5,1,2,2,2019,1,2,16,5,31,20,15,1,5,1,0,4.58634965069957,4.58634965069957,0,0,0,0,0,0,0,0,0,0,.4469184725732283,0,0,0,29.14,59.74,6,1,0,0,5,4,1,2061.5,0,0,0 +8212,10074,18353,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1000.910341568733,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.43147820694062,3,40.13,41.02,6,1,0,0,12,1,0,394,0,0,0 +8213,10075,18354,18355,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,5,8.122043287476393,8.401734592326907,0,1,0,-9,2,0,-2,21.69203004284811,-9,1,1,28,1,5,1,-9,-9,2019,1,1,22,8,37,0,15,1,8,1,0,14.69320560173101,14.69320560173101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.92,62.31,5,1,0,0,9,5,1,494,0,0,0 +8213,10075,18355,18354,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,5,8.445955814504257,8.075671831271956,0,1,0,-9,2,0,2,-138.4110429879161,0,1,0,26,1,5,1,1,1,2019,1,2,5,0,42,15,15,1,0,1,0,12.25656997231549,12.25656997231549,0,0,0,0,0,0,0,0,0,0,7.377226638081027,0,0,0,51.73,58.82,6,1,0,0,9,5,1,494,0,0,0 +8214,10076,18356,18357,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.142198471294778,7.423161090368843,0,1,0,-9,7,0,3,-18.85694579936666,0,0,0,53,1,3,1,3,3,2019,1,2,18,6,15,16,15,1,6,1,0,10.34245448019031,10.34245448019031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.16,51.86,5,1,0,0,5,3,1,952,0,0,0 +8214,10076,18357,18356,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,3,7.638657701549063,7.85373079962956,0,1,0,-9,7,0,-3,16.19446736024737,0,0,0,56,2,3,1,-9,-9,2019,1,1,12,0,40,60,15,1,0,1,0,7.316233619127369,7.316233619127369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.79,56.27,6,1,0,0,5,3,1,952,0,0,0 +8215,10077,18358,18359,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,2,6.477259165252987,6.522737765293475,0,2,0,-9,10,0,-4,-83.91243000743255,0,0,0,53,1,2,1,3,3,2019,1,1,11,0,8,8,15,1,0,1,0,8.579089274517859,8.579089274517859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,5,3,0,1,6,2,1,1599.666666666667,0,0,0 +8215,10077,18359,18358,-9,-9,1,1,1,53,1,0,1,0,1,-9,1,1,0,2,7.344306467419728,7.412368326139267,0,2,0,-9,10,0,4,78.87733319116029,0,0,0,49,2,2,1,3,2,2019,1,2,10,0,40,45,15,1,0,1,0,5.714454317161218,5.714454317161218,0,0,0,0,0,0,0,1,1,0,6.472967535471204,0,0,0,53.77,45.91,5,3,0,1,6,2,1,1599.666666666667,0,0,0 +8215,10077,18360,-9,18358,18359,6,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1204.411414284669,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,3,0,0,6,2,1,1599.666666666667,0,0,0 +8215,10078,18361,18362,-9,-9,7,1,0,28,1,0,1,0,2,-9,2,1,0,5,7.996502549310783,8.156220988209281,0,2,0,-9,2,0,0,-115.5367397329216,0,1,1,28,2,5,1,-9,-9,2019,1,3,4,0,38,42,15,1,0,1,0,10.57672168530881,10.57672168530881,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,6,3,0,0,6,4,1,1677.5,0,0,0 +8215,10078,18362,18361,18358,18359,3,1,1,28,1,0,1,0,2,-9,2,1,0,5,8.064186210544715,8.176166735055615,0,2,0,-9,2,0,0,-13.89618605020219,0,1,0,28,2,5,1,2,1,2019,1,7,6,2,60,55,15,1,2,1,0,6.022607918514397,6.022607918514397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,6,4,1,1677.5,0,0,0 +8215,10079,18363,-9,18358,18359,4,1,0,26,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-970.3652854288126,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,6,0,0,37,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.01448704676506,0,0,0,49.52,56.95,6,3,1,0,6,1,1,815,0,0,0 +8215,10080,18364,-9,18358,18359,5,1,0,20,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-962.2290123319482,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,19,8,0,37,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.09,69.16,3,3,0,0,6,1,1,537,0,0,0 +8216,10081,18365,18366,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,43,0,-8,110.011793056325,0,0,0,72,2,2,3,2,2,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.36,39.55,4,1,0,0,2,2,0,120,0,0,0 +8216,10081,18366,18365,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,2,5.587847061878199,5.002969734153019,0,1,0,-9,43,0,8,-105.3045830254214,0,0,0,64,2,2,3,3,3,2019,4,1,13,1,16,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,4,1,0,0,2,2,0,120,0,0,0 +8217,10082,18367,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,2,1,0,3,7.418992145889707,7.537538156842198,5.454847449569536,3,0,0,0,-9,0,-1045.697901338109,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,17,25,15,1,0,-9,0,9.9504328215525,9.9504328215525,1,0,0,0,0,0,0,1,1,0,4.634528694162825,5.509531325347644,0,0,58.47,50.22,6,1,0,0,7,3,1,1801,0,0,0 +8218,10083,18368,18369,-9,-9,1,1,0,55,1,0,1,0,2,-9,2,1,0,3,8.050080492269345,8.335486933477501,0,2,0,-9,18,0,-7,-72.74614997768094,0,0,0,62,2,3,1,1,3,2019,1,2,13,2,40,34,15,1,2,1,0,9.990330817672344,9.990330817672344,0,0,0,0,0,0,0,1,1,0,4.347430076920535,0,0,0,49.65,44.4,6,1,0,0,5,5,1,868.5,0,0,0 +8218,10083,18369,18368,-9,-9,2,1,1,62,1,0,1,0,2,-9,2,1,0,3,8.818286870830551,8.717106076804289,0,2,0,-9,18,0,7,35.48009558562369,0,0,0,55,2,3,1,2,2,2019,1,1,13,1,50,20,15,1,1,1,0,14.61024236436878,14.61024236436878,0,0,0,0,0,0,0,1,1,0,4.015846901134522,0,0,0,51.95,50.34,6,1,0,0,5,5,1,868.5,0,0,0 +8219,10084,18370,18371,-9,-9,1,1,0,50,1,0,0,0,1,-9,1,1,0,5,9.192788211816906,9.368207606382171,0,1,0,-9,6,0,5,-140.2272446854789,0,0,0,45,2,4,1,2,2,2019,1,2,11,0,55,40,15,1,0,1,0,18.56461255641885,18.56461255641885,0,0,0,0,0,0,0,0,0,0,4.881365001989542,0,0,3,51.14,60.45,6,1,0,0,5,5,1,169,0,0,0 +8219,10084,18371,18370,-9,-9,2,1,1,45,1,0,0,0,2,-9,1,1,0,4,9.348302064972728,8.986986320546789,0,1,0,-9,6,0,-5,-96.09251649238558,0,0,0,50,1,5,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,25.96042639118398,25.96042639118398,0,0,0,0,0,0,0,0,0,0,4.61454154431627,0,0,0,55.19,54.26,6,1,0,0,5,5,1,169,0,0,0 +8220,10085,18372,-9,18373,18375,4,1,1,14,2,0,4,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-945.037524796649,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,12,3,1,705.1666666666666,0,0,0 +8220,10085,18373,18375,-9,-9,1,1,0,37,1,0,4,0,2,-9,2,1,0,4,7.667627659309197,7.627309542819342,0,2,0,-9,9,0,-7,-152.1424847158155,0,0,1,44,2,3,1,3,3,2019,1,3,10,2,27,27,15,1,2,1,0,8.365245457593037,8.365245457593037,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,56.73,6,1,0,0,12,3,1,705.1666666666666,0,0,0 +8220,10085,18374,-9,18373,18375,6,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.87592276219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,1,705.1666666666666,0,0,0 +8220,10085,18375,18373,-9,-9,3,1,1,44,1,0,4,0,2,-9,2,1,0,3,8.482190064559351,8.30273190072614,0,2,0,-9,9,0,7,-141.2527341637726,0,0,0,37,2,4,1,3,3,2019,1,1,12,1,36,20,15,1,1,1,0,14.4034779703082,14.4034779703082,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.04,52.45,6,1,0,0,12,3,1,705.1666666666666,0,0,0 +8220,10085,18376,-9,18373,18375,2,1,0,17,2,0,4,1,2,0,7,2,0,5,3.771209413894296,3.62134257722434,0,2,0,0,0,-9,0,-1020.407804911858,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,55.72,7,1,0,0,12,3,1,705.1666666666666,0,0,0 +8220,10085,18377,-9,18373,18375,5,1,1,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-948.940423180704,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,12,3,1,705.1666666666666,0,0,0 +8221,10086,18378,-9,18379,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-915.589780476056,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,1,0,672.3333333333334,0,0,0 +8221,10086,18379,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1017.943357952308,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,52.94,3,1,0,0,7,1,0,672.3333333333334,0,0,0 +8221,10086,18380,-9,18379,-9,2,1,0,17,2,0,2,1,2,-9,7,2,0,4,7.264230652736625,7.628694843334319,0,4,0,0,0,-9,0,-953.1912242639928,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,20,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,7,1,0,672.3333333333334,0,0,0 +8222,10087,18381,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,6.793411103157867,6.690575401075485,3,0,0,0,-9,0,-877.2079103751603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.064802964326213,0,0,63.55,39.7,6,1,0,0,9,2,1,4762,0,0,0 +8223,10088,18382,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,4,7.910246013790072,7.618167841052367,6.090761154249554,3,0,0,0,-9,0,-1134.657086826746,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,30,15,1,0,-9,0,8.165622889112779,8.165622889112779,0,0,0,0,0,0,0,1,0,1,5.857999593876834,0,0,0,54.78,47.51,7,1,0,0,1,4,1,419,0,0,0 +8224,10089,18383,-9,18385,18384,5,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-992.8098306407941,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,2,2,0,749.75,0,0,0 +8224,10089,18384,18385,-9,-9,2,1,1,42,1,0,3,0,2,-9,1,1,0,3,6.131462308412033,6.35182794245421,0,2,0,-9,8,0,3,4.92480238944778,0,0,0,39,2,1,3,1,2,2019,2,1,12,1,25,30,15,1,1,3,0,1.917931977684494,1.917931977684494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,49.33,6,1,0,0,2,2,0,749.75,0,0,0 +8224,10089,18385,18384,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,1,0,0,0,2,0,-9,8,0,-3,27.07604460589362,0,0,1,42,2,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5369382015929,3,38.67,13.77,5,1,0,0,2,2,0,749.75,0,0,0 +8224,10089,18386,-9,18385,18384,4,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.240787219667,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.351009227164715,3,28.16,65.32000000000001,6,1,0,0,2,2,0,749.75,0,0,0 +8224,10090,18387,-9,18385,18384,3,1,1,18,2,0,3,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1046.934466767145,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,2,2,0,511,0,0,0 +8225,10091,18388,-9,18390,18389,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-934.9626813274535,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,7,4,1,1039,0,0,0 +8225,10091,18389,18390,-9,-9,1,1,1,45,1,1,3,0,2,-9,1,1,0,4,8.956412846356502,9.380284328284516,0,2,0,-9,17,0,7,56.07665446700098,0,0,0,38,1,3,1,2,2,2019,1,2,7,0,22,0,15,1,0,1,0,46.25262327714679,46.25262327714679,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,2,1,0,0,7,4,1,1039,0,0,0 +8225,10091,18390,18389,-9,-9,2,1,0,38,1,1,3,0,1,-9,2,1,0,3,0,0,0,2,0,-9,18,0,-7,46.86576001374826,0,0,1,45,2,4,1,2,2,2019,1,1,10,0,0,29,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,7,4,1,1039,0,0,0 +8225,10091,18391,-9,18390,18389,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.9953274954802,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,1039,0,0,0 +8225,10091,18392,-9,18390,18389,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.734800078687,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,1039,0,0,0 +8226,10092,18393,18395,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,4,9.213620815758208,9.268206844372786,0,2,0,-9,5,0,6,84.88587902549082,0,0,0,24,2,5,1,-9,-9,2019,1,1,7,0,50,43,15,1,0,1,0,18.67393656168962,18.67393656168962,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,6,1,0,0,2,5,0,775.6666666666666,0,0,0 +8226,10092,18394,-9,18395,18393,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1063.015508054714,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,5,0,775.6666666666666,0,0,0 +8226,10092,18395,18393,-9,-9,1,1,0,24,1,1,1,0,2,-9,2,1,0,5,8.593854824466638,8.529192164904185,0,2,0,-9,5,0,-6,-16.4171964485169,0,1,1,30,2,4,1,1,2,2019,1,2,9,1,38,37,15,1,1,1,0,13.36739635950442,13.36739635950442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,0,775.6666666666666,0,0,0 +8227,10093,18396,18397,-9,-9,2,1,0,47,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,29,0,-6,0,0,0,0,53,3,4,3,3,2,2019,4,1,19,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.54078494271064,1,41,42.17,4,3,0,1,6,1,1,589.5,0,0,0 +8227,10093,18397,18396,-9,-9,1,1,1,53,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,6,0,6,0,-9,0,0,47,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,3,0,1,6,1,1,589.5,0,0,0 +8227,10094,18398,-9,18396,18397,3,1,0,26,3,0,0,0,1,-9,2,1,0,4,6.903125553453396,7.00729266372513,0,3,0,0,0,-9,0,-985.2487467381535,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,30,0,15,1,0,-9,1,5.144244613307231,5.144244613307231,0,0,0,0,0,0,0,1,1,0,0,0,2.651170852244776,3,51.43,58.93,4,3,0,1,6,2,1,416,0,0,0 +8227,10095,18399,-9,18396,18397,4,1,1,22,3,0,0,0,2,-9,2,1,0,4,7.248639175611374,7.165665127313336,0,3,0,0,0,-9,0,-998.0234057862662,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,25,0,15,1,0,-9,1,6.251483405053024,6.251483405053024,0,0,0,0,0,0,0,1,1,0,0,0,13.47470282773575,3,47.68,55.12,5,3,0,0,6,2,1,696,0,0,0 +8228,10096,18400,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,3,8.603033806063669,8.665456500476765,0,3,0,0,0,-9,0,-1068.542395236701,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,37,15,1,0,-9,0,16.67315515854728,16.67315515854728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,1,5,1,781,0,0,0 +8229,10097,18401,18402,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.492561873179822,8.390121439267368,0,1,0,-9,7,0,-5,-49.18585660210496,0,0,0,55,1,4,1,2,2,2019,1,2,10,0,30,27,15,1,0,1,0,17.18798278959319,17.18798278959319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,2,1,0,0,11,5,1,565.5,0,0,0 +8229,10097,18402,18401,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.833293779718206,9.152184670114412,0,1,0,-9,7,0,5,-46.91108426656093,0,0,0,50,2,4,1,2,2,2019,1,1,9,0,53,37,15,1,0,1,0,16.45204322052381,16.45204322052381,0,0,0,0,0,0,0,0,0,0,2.410794134070207,0,12.21670474347427,3,57.07,49.39,6,1,0,0,11,5,1,565.5,0,0,0 +8229,10098,18403,-9,18402,18401,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.803434671134133,7.406177682975045,0,3,0,0,0,-9,0,-949.7804356640041,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,42,44,15,1,0,-9,1,5.751738593092345,5.751738593092345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,6,1,0,0,11,3,1,145,0,0,0 +8229,10099,18404,-9,18402,18401,4,1,1,21,2,0,0,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1044.855994989112,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.25,48.33,2,1,1,0,11,1,1,154,0,0,0 +8230,10100,18405,18406,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,5,9.265762556433119,9.137348284287585,0,1,0,-9,6,0,6,-3.328020780676184,0,0,0,35,1,2,1,2,2,2019,1,2,5,0,48,45,15,1,0,1,0,17.20390437966363,17.20390437966363,0,0,0,0,0,0,0,0,0,0,6.83579342721828,0,0,0,60.02,56.42,6,3,0,0,2,5,1,495,0,0,0 +8230,10100,18406,18405,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,2,8.554689141874022,8.475766738097459,0,1,0,-9,6,0,-6,-46.91549479741973,0,0,1,41,1,5,1,-9,-9,2019,1,1,4,0,40,35,15,1,0,1,0,15.37138356810674,15.37138356810674,0,0,0,0,0,0,0,0,0,0,4.46435867754103,0,0,0,52.45,45.09,6,1,0,0,2,5,1,495,0,0,0 +8231,10101,18407,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,6.0715337983172,5.531462926634888,3,0,0,0,-9,0,-1119.567794839861,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.750029135781068,0,0,69.63,25.95,6,1,0,0,12,2,0,708,0,0,0 +8232,10102,18408,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,3,0,7.317756142987562,7.286720035188216,3,0,0,0,-9,0,-1000.114983347544,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.778872334611854,7.438644431343071,0,0,55.56,46,6,1,0,0,9,3,1,804,0,0,0 +8233,10103,18409,18410,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,4.264073359485156,4.478631269137871,1,0,-9,40,0,8,-48.32951729455908,0,0,0,61,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.092506342695647,0,0,45.97,41.17,5,1,0,0,12,1,0,516,0,0,0 +8233,10103,18410,18409,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,40,0,-8,59.67100646586176,0,0,0,69,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.96,42.57,4,1,0,0,12,1,0,516,0,0,0 +8234,10104,18411,18414,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,3,6.161159376835009,5.888772482252923,0,2,0,-9,27,0,0,64.06465728413347,0,0,0,54,2,4,1,-9,3,2019,1,1,7,0,9,4,15,1,0,1,0,5.894704405846007,5.894704405846007,0,0,0,0,0,0,0,1,1,0,1.525974881789232,0,0,0,52,54.51,6,1,0,0,5,3,1,706.5,0,0,0 +8234,10104,18412,-9,18411,18414,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.11839701039,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,706.5,0,0,0 +8234,10104,18413,-9,18411,18414,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.671319543339,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,1,706.5,0,0,0 +8234,10104,18414,18411,-9,-9,1,1,1,54,1,0,2,0,2,-9,2,1,0,4,8.346517228073321,8.065918022935348,0,2,0,-9,27,0,9,50.74187330419218,0,0,0,45,2,3,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,10.77829656960033,10.77829656960033,0,0,0,0,0,0,0,1,1,0,1.236779847403499,0,0,3,54.79,55.86,6,1,0,0,5,3,1,706.5,0,0,0 +8235,10105,18415,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-789.3931946510983,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.95,52.29,1,1,0,1,12,1,0,1180,0,0,0 +8236,10106,18416,-9,18417,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1077.28187316699,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,2,1,547.5,0,0,0 +8236,10106,18417,-9,-9,-9,1,1,0,40,2,0,1,0,1,1,8,3,1,1,0,7.509529337047639,7.326019132594337,4,0,0,0,-9,0,-1039.429194244095,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,0,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.667697489771495,0,0,0,34,29,3,1,0,0,7,2,1,547.5,0,0,0 +8237,10107,18418,18419,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,7.454949747617076,7.547975561418342,1,0,-9,7,0,15,-91.72193741293837,0,0,0,55,2,3,1,2,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.946969661747427,7.408024891138972,0,0,55.36,51.57,6,1,0,0,12,3,1,1750,0,0,0 +8237,10107,18419,18418,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,3,0,7.265794313571251,6.888989598000073,1,0,-9,7,0,-15,-4.967400232620774,0,0,0,70,1,3,3,-9,-9,2019,2,1,9,2,0,0,15,1,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.488216420872577,6.813166910571718,0,0,48.38,46.43,6,1,0,0,12,3,1,1750,0,0,0 +8238,10108,18420,18421,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,5,0,7.006802634247079,6.894656964339169,1,0,-9,8,0,6,13.33613342959079,0,0,0,72,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.055118793667013,6.600180750735939,0,0,57.06,57.76,6,1,0,0,7,2,1,574.5,0,0,0 +8238,10108,18421,18420,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,3.88958756299104,4.037706625854932,1,0,-9,8,0,-6,-63.17516899057711,0,0,0,78,3,5,3,3,2,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,1,126.1172142317729,0,0,0,0,1150.839952478591,1,1,0,4.081255937978131,3.809854047727547,0,0,43.14,37.06,5,1,0,0,7,2,1,574.5,0,0,0 +8239,10109,18422,18423,-9,-9,2,1,1,62,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,4,0,-3,-46.02477572491738,0,0,0,65,3,2,3,3,3,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.113285411884131,3,57.33,53.46,6,1,1,0,6,2,1,2670,0,0,0 +8239,10109,18423,18422,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,6.514924157930945,6.561481081104221,1,0,-9,4,0,3,106.4441320973745,0,0,0,62,2,3,3,3,2,2019,4,2,11,1,0,0,15,4,1,3,0,0,0,1,0,1.747892224605069,0,0,0,0,1,1,0,3.037157243882134,6.359865843629718,15.74764895553611,3,35.04,46.54,3,1,0,0,6,2,1,2670,0,0,0 +8240,10110,18424,18425,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.976279783149693,6.730085085129334,1,0,-9,44,0,-2,0,0,0,0,70,1,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.452626647812177,0,0,58.92,48.59,4,1,0,0,4,2,1,613,0,0,0 +8240,10110,18425,18424,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,6.202202846011265,6.453464539132486,1,0,-9,44,0,2,0,0,0,0,68,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.47868131259223,6.307204136207121,0,0,46.2,50.52,6,1,0,0,4,2,1,613,0,0,0 +8241,10111,18426,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-943.5232757251908,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.97,26.09,5,1,0,0,10,1,1,273,0,0,0 +8242,10112,18427,18428,-9,-9,2,1,1,37,1,0,3,0,2,-9,1,1,0,4,8.57040725931466,8.741574202453041,0,2,0,-9,6,0,2,-10.32273922600163,0,0,0,35,3,4,3,-9,-9,2019,2,1,10,0,40,25,15,1,1,3,0,12.64936794694058,12.64936794694058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,1,3,1,618.4,0,0,0 +8242,10112,18428,18427,-9,-9,1,1,0,35,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,16,0,-2,-16.41336026147447,0,0,1,37,2,4,1,3,3,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,1,3,1,618.4,0,0,0 +8242,10112,18429,-9,18428,18427,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.3743044806421,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,1,3,1,618.4,0,0,0 +8242,10112,18430,-9,18428,18427,4,1,0,12,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1125.715339493198,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,3,0,0,1,3,1,618.4,0,0,0 +8242,10112,18431,-9,18428,18427,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.1993218040978,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,1,3,1,618.4,0,0,0 +8243,10113,18432,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1010.579278624544,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,.3032010369131255,0,0,0,1,1,0,0,0,0,0,56.85,37.23,6,1,0,1,7,1,1,777,0,0,0 +8244,10114,18433,18434,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,2,8.707360380776556,8.656765093025426,0,1,0,-9,7,0,-2,-188.053300838557,0,0,0,63,1,3,1,3,3,2019,1,1,12,0,43,43,15,1,0,1,0,18.39323971732996,18.39323971732996,0,0,0,0,0,0,0,0,0,0,0,0,13.44969031037729,3,35.78,41.87,3,1,0,0,12,5,1,510,0,0,0 +8244,10114,18434,18433,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,3,9.057781278803319,8.796864543771767,0,1,0,-9,7,0,2,-16.77671088661452,0,0,0,61,2,2,1,3,3,2019,1,2,9,0,45,50,15,1,0,1,0,16.80142235794182,16.80142235794182,0,0,0,0,0,0,0,0,0,0,3.046765452297615,0,0,3,54.37,54.8,5,1,0,0,12,5,1,510,0,0,0 +8244,10115,18435,-9,18434,18433,3,1,1,22,2,0,0,0,1,-9,2,1,0,5,7.982371352840388,7.997040393156198,0,3,0,0,0,-9,0,-978.6721495216821,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,38,32,15,1,1,-9,1,9.331244165741703,9.331244165741703,0,0,0,0,0,0,0,0,0,0,4.303206528794635,0,0,0,60.42,54.81,7,1,0,0,12,4,1,372,0,0,0 +8245,10116,18436,18438,-9,-9,1,1,0,50,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,10,0,-2,108.2128870023435,0,0,0,52,2,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.003674963680515,0,0,3,57.16,56.15,6,1,0,0,13,5,1,763.6666666666666,0,0,0 +8245,10116,18437,-9,18436,18438,5,1,1,16,2,0,1,0,3,-9,97,2,0,4,4.504152036095624,4.429311860723899,0,2,0,0,0,-9,0,-1036.528734902811,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,6,1,0,0,13,5,1,763.6666666666666,0,0,0 +8245,10116,18438,18436,-9,-9,2,1,1,52,1,0,1,0,2,-9,1,1,0,4,9.505982272249161,9.551082765251895,0,2,0,-9,10,0,2,-63.29740964193576,0,0,0,50,1,4,3,2,3,2019,2,1,9,0,60,50,15,1,0,3,0,28.61333819614457,28.61333819614457,0,0,0,0,0,0,0,1,1,0,4.743591021304882,0,.3192633010960078,3,57.46,47.78,2,1,0,0,13,5,1,763.6666666666666,0,0,0 +8245,10117,18439,-9,18436,18438,3,1,1,20,2,0,1,1,2,0,7,2,0,5,8.126227891796502,8.093198145700907,0,3,0,0,0,-9,0,-1047.664810493938,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,39,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.613120580939726,0,0,0,62.39,56.71,6,1,0,0,13,4,1,1984,0,0,0 +8245,10118,18440,-9,18436,18438,4,1,1,19,2,0,1,1,2,0,7,2,0,4,6.974704170696084,6.515300383885245,0,3,0,0,0,-9,0,-1026.785786077213,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,1,6,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.735844404922186,0,0,0,51.83,57.2,6,1,0,0,13,2,1,671,0,0,0 +8246,10119,18441,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,5,0,8.864973197738562,9.17160663536443,3,0,0,0,-9,0,-967.8624992612023,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.034095096549579,9.253826353734489,0,0,62.39,56.71,7,1,0,0,9,5,1,3419,0,0,0 +8247,10120,18442,18446,-9,-9,2,1,1,32,1,0,4,0,2,-9,2,1,0,4,7.180656489789639,6.922989041243149,0,2,0,-9,6,0,-3,54.46621121467955,0,0,0,35,2,4,3,-9,-9,2019,2,1,10,0,10,35,15,1,1,3,0,14.32259435563935,14.32259435563935,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,3,0,0,7,2,1,1483,0,0,0 +8247,10120,18443,-9,18446,18442,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.4660010320963,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,7,2,1,1483,0,0,0 +8247,10120,18444,-9,18446,18442,3,1,1,13,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-936.753978128677,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,3,0,0,7,2,1,1483,0,0,0 +8247,10120,18445,-9,18446,18442,6,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.8066229719655,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,2,1,1483,0,0,0 +8247,10120,18446,18442,-9,-9,1,1,0,35,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,17,0,3,-108.2155920195231,0,0,1,32,2,4,1,3,2,2019,3,2,2,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,6,3,0,0,7,2,1,1483,0,0,0 +8247,10120,18447,-9,18446,18442,4,1,0,12,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1104.977853960703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,3,0,0,7,2,1,1483,0,0,0 +8248,10121,18448,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-899.7449782892475,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.31,56.58,2,1,0,1,9,1,0,266,0,0,0 +8249,10122,18449,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,4.350150166857451,4.415928302121133,3,0,0,0,-9,0,-984.9089642069682,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.229697566872683,4.219454613449916,0,0,57.16,56.15,7,1,0,0,12,2,1,718,0,0,0 +8250,10123,18450,-9,18452,18451,4,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-883.7898631130245,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,5,1,1664.333333333333,0,0,0 +8250,10123,18451,18452,-9,-9,2,1,1,51,1,1,1,0,1,-9,2,1,0,4,8.642797403588945,8.79734260357694,0,2,0,-9,17,0,9,-115.5149911696089,0,0,0,42,1,3,3,-9,-9,2019,2,1,8,0,38,50,15,1,0,3,0,14.31429029795131,14.31429029795131,0,0,0,0,0,0,0,1,1,0,6.891706933147354,0,0,0,57.16,56.15,7,3,0,0,8,5,1,1664.333333333333,0,0,0 +8250,10123,18452,18451,-9,-9,1,1,0,42,1,1,1,0,1,-9,6,3,0,3,9.332847666751631,9.220753267781397,0,2,0,-9,17,0,0,-25.36476928943806,0,0,1,51,1,4,1,3,3,2019,3,2,9,0,16,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.53,51.25,6,3,0,0,8,5,1,1664.333333333333,0,0,0 +8250,10124,18453,-9,18452,18451,3,1,1,20,2,1,1,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-980.1227191922218,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.78,55.17,6,3,0,1,8,1,1,640,0,0,0 +8251,10125,18454,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,5,0,8.087256591119322,8.18649984746561,3,0,0,0,-9,0,-1014.065116712269,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.150149308483751,7.846534795845881,0,0,60.02,56.42,6,1,0,0,2,4,1,302,0,0,0 +8252,10126,18455,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,8.425472296537119,8.267920204784255,0,3,0,0,0,-9,0,-990.243264919533,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,1,43,42,15,1,1,-9,0,10.59087623752134,10.59087623752134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,6,1,0,0,7,4,1,778,0,0,0 +8253,10127,18456,18458,-9,-9,2,1,1,35,1,1,3,0,1,-9,2,1,0,4,8.891253837650972,8.840895320038644,0,2,0,-9,10,0,0,-8.810166833341343,0,0,0,35,2,5,1,-9,-9,2019,1,1,11,0,48,47,15,1,0,1,0,19.75439029780148,19.75439029780148,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,735.2,0,0,0 +8253,10127,18457,-9,18458,18456,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.0439191347843,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,735.2,0,0,0 +8253,10127,18458,18456,-9,-9,1,1,0,35,1,1,3,0,2,-9,2,1,0,5,8.510573072649047,8.535503422386201,0,2,0,-9,10,0,0,163.5932154618918,0,0,1,35,1,4,1,2,2,2019,1,2,17,5,24,30,15,1,5,1,0,23.44704472507116,23.44704472507116,0,0,0,0,0,0,0,1,1,0,6.783589204263702,0,0,0,38.05,63.64,5,1,0,0,13,5,1,735.2,0,0,0 +8253,10127,18459,-9,18458,18456,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.434599630767,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,5,1,735.2,0,0,0 +8253,10127,18460,-9,18458,18456,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.4569140296906,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,5,1,735.2,0,0,0 +8254,10128,18461,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1024.650135361416,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,0,0,12.45528186333671,0,0,0,1,1,0,0,0,0,0,29.82,42.3,3,1,0,0,13,1,0,350,0,0,0 +8255,10129,18462,-9,18464,18465,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.7097728686838,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,447.75,0,0,0 +8255,10129,18463,-9,18464,18465,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1079.208625046106,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,447.75,0,0,0 +8255,10129,18464,18465,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,4,8.36496240335854,8.463201897094478,0,2,0,-9,8,0,-4,75.87039542603766,0,0,1,41,1,4,1,2,2,2019,1,2,9,0,54,55,15,1,0,1,0,9.230009758841986,9.230009758841986,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.97,6,1,0,0,4,4,1,447.75,0,0,0 +8255,10129,18465,18464,-9,-9,2,1,1,41,1,1,2,0,1,-9,2,1,0,4,8.146042980663474,8.048347749120129,0,2,0,-9,12,0,4,116.0047888312224,0,0,0,37,1,4,1,2,2,2019,1,1,9,1,38,38,15,1,1,1,0,10.82626607378198,10.82626607378198,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,5,1,0,0,4,4,1,447.75,0,0,0 +8256,10130,18466,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,1,1,0,4,7.315605127912195,7.551038943414708,0,4,0,0,0,-9,0,-1047.13671120792,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,40,40,15,1,1,-9,0,5.057293245280852,5.057293245280852,0,0,0,0,0,0,0,1,1,0,2.255709933444081,0,0,0,53.39,52.35,6,4,0,0,5,3,0,959,0,0,0 +8256,10130,18467,-9,18466,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1013.786353114906,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,5,3,0,959,0,0,0 +8257,10131,18468,18469,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,3,0,4.912592199500772,4.699049838589284,1,0,-9,67,0,3,-17.8250533910149,0,0,0,83,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.575331067667024,5.150253740546344,125.3451086427352,1,54.53,43.74,6,1,0,0,2,2,1,602.5,0,0,0 +8257,10131,18469,18468,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,67,0,-3,5.873656957872889,0,0,0,86,3,3,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,0,7.060097808420686,2.032541393099803,10.81721694262206,0,0,1,1,0,2.378378193870442,0,0,0,66.01000000000001,31.02,1,1,0,0,2,2,1,602.5,0,0,0 +8258,10132,18470,18472,-9,-9,2,1,0,34,1,1,2,0,1,-9,5,1,0,3,8.632988093076541,8.411940697558434,0,2,0,-9,9,0,-3,-10.76537241743578,0,0,1,37,1,5,1,2,2,2019,1,1,6,1,34,34,15,1,1,1,0,16.0822360325825,16.0822360325825,0,0,0,0,0,0,0,1,1,0,2.152918318695498,0,0,0,49.61,54.24,7,1,0,0,10,5,1,720.75,0,0,0 +8258,10132,18471,-9,18470,18472,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.2463302078813,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,720.75,0,0,0 +8258,10132,18472,18470,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,5,8.963219982231802,8.709114427779731,0,2,0,-9,9,0,3,-59.43666907887435,0,0,0,34,1,3,1,2,3,2019,1,2,6,0,50,43,15,1,0,1,0,19.95314720874223,19.95314720874223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.76,52.91,7,1,0,0,10,5,1,720.75,0,0,0 +8258,10132,18473,-9,18470,18472,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1100.154448488649,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,5,1,720.75,0,0,0 +8259,10133,18474,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,2,0,6.44010306578908,6.47547553856472,3,0,0,0,-9,0,-1206.631544171833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,11.85042616792731,0,1,1,0,6.542472090352696,6.254400605027672,0,0,38.38,19.19,6,1,0,0,13,2,1,596,0,0,0 +8260,10134,18475,18476,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,1,7.399153965182392,7.644262465192639,0,1,0,-9,10,0,-1,-23.92559396454638,0,0,0,56,3,4,1,3,3,2019,1,1,13,2,28,26,15,1,2,1,0,8.529070669106817,8.529070669106817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.73,41.31,2,1,0,0,6,5,1,1765.5,0,0,0 +8260,10134,18476,18475,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,4,8.271712268047306,8.885449079485616,6.537107790525775,1,0,-9,10,0,1,12.45763960485298,0,0,0,55,3,1,1,3,3,2019,1,2,6,0,44,44,15,1,0,1,0,12.33693320581392,12.33693320581392,0,0,0,0,0,0,0,0,0,0,0,6.527958173105572,0,0,57.16,56.15,6,1,0,0,6,5,1,1765.5,0,0,0 +8260,10135,18477,-9,18475,18476,3,1,0,19,2,0,0,0,2,-9,2,1,0,2,7.148377634850272,7.636004935460479,0,3,0,0,0,-9,0,-1111.708076755128,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,33,12,45,0,15,1,12,-9,1,4.790345449631219,4.790345449631219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.31,56.57,2,1,0,0,6,3,1,1127,0,0,0 +8261,10136,18478,18479,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,7.814634058948629,8.075568173100365,0,1,0,-9,26,0,-1,101.605867684854,0,0,0,47,2,2,3,3,2,2019,2,1,9,0,37,38,15,1,0,3,0,11.08517407927658,11.08517407927658,0,0,0,0,0,0,0,1,1,0,0,0,18.87890002406334,2,54.79,55.86,6,3,0,0,5,3,1,277.5,0,0,0 +8261,10136,18479,18478,-9,-9,1,1,0,47,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,27,0,1,-30.03947465761163,0,0,0,46,2,4,1,3,1,2019,3,2,7,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.02,38.91,5,2,0,0,5,3,1,277.5,0,0,0 +8261,10137,18480,-9,18479,18478,3,1,1,21,2,0,0,0,2,-9,1,1,0,5,0,0,0,3,0,0,0,-9,0,-951.5802391521321,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.220130890096105,0,41.07,60.93,5,2,0,0,5,1,1,707,0,0,0 +8262,10138,18481,18483,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,3,8.913417280226112,8.759246297583402,0,2,0,-9,9,0,4,-10.37897203393566,0,0,1,35,1,5,1,2,2,2019,1,2,12,2,29,34,15,1,2,1,0,20.3935091391939,20.3935091391939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,5,5,1,532,0,0,0 +8262,10138,18482,-9,18481,18483,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.011925587192,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,532,0,0,0 +8262,10138,18483,18481,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,5,8.355061009422894,8.379575062851854,0,2,0,-9,9,0,-4,-36.89666262677117,0,0,0,39,1,3,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,14.23197165837502,14.23197165837502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,7,1,0,0,5,5,1,532,0,0,0 +8262,10138,18484,-9,18481,18483,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.0496587861892,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,5,1,532,0,0,0 +8263,10139,18485,-9,18486,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,-9,0,-9,0,-1130.235771156604,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,12,1,0,608.5,0,0,0 +8263,10139,18486,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,6,3,0,3,0,0,0,4,0,-9,0,-9,0,-1043.258669893502,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.54,47.5,3,1,0,0,12,1,0,608.5,0,0,0 +8264,10140,18487,18489,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.387462770976303,9.362854241824047,0,2,0,-9,6,0,3,46.54046481748257,0,0,0,43,1,4,1,2,2,2019,1,1,11,1,37,39,15,1,1,1,0,27.42034409808787,27.42034409808787,0,0,0,0,0,0,0,1,1,0,3.51555498729042,0,0,0,44.02,60.7,6,1,0,0,2,5,1,1480.25,0,0,0 +8264,10140,18488,-9,18489,18487,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.5753051964301,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,1480.25,0,0,0 +8264,10140,18489,18487,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.5982891678791,8.921445592203497,0,2,0,-9,6,0,-3,-108.5821478708462,0,0,1,46,1,4,1,2,2,2019,1,2,19,6,50,32,15,1,6,1,0,17.62310213711877,17.62310213711877,0,0,0,0,0,0,0,1,1,0,.9228531383319742,0,0,0,42.95,61.24,5,1,0,0,2,5,1,1480.25,0,0,0 +8264,10140,18490,-9,18489,18487,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.6866945505936,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,5,1,1480.25,0,0,0 +8265,10141,18491,18492,-9,-9,2,1,1,32,1,0,2,0,2,-9,1,1,0,4,7.671281092005654,8.040735079321204,0,2,0,-9,11,0,-8,155.8510302340596,0,0,0,40,1,4,1,1,1,2019,1,1,10,1,50,40,15,1,1,1,0,5.970314164523406,5.970314164523406,0,0,0,0,0,0,0,1,1,0,2.936291067738848,0,0,0,41.06,62.04,6,1,0,0,9,3,1,557.25,0,0,0 +8265,10141,18492,18491,-9,-9,1,1,0,40,1,0,2,0,1,-9,1,1,0,4,7.936045318384703,7.930625657559026,5.775595841573079,2,0,-9,11,0,8,74.67057749197272,0,0,1,32,2,4,1,1,1,2019,1,2,11,1,20,20,15,1,1,1,0,17.00124003120855,17.00124003120855,0,0,0,0,0,0,0,1,1,0,9.473163097230184,0,0,0,28.35,65.41,6,1,0,0,9,3,1,557.25,0,0,0 +8265,10141,18493,-9,18492,18491,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.3218612651256,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,557.25,0,0,0 +8265,10141,18494,-9,18492,18491,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.7101839256907,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,3,1,557.25,0,0,0 +8266,10142,18495,18496,-9,-9,1,1,0,54,1,0,1,0,3,-9,2,1,0,4,7.060038255792227,7.460210005119164,0,2,0,-9,30,0,-5,138.8705607107984,0,0,0,59,2,5,1,2,3,2019,1,2,9,1,16,16,15,1,1,1,0,10.37467935728831,10.37467935728831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,5,1,0,0,8,2,1,1181.5,0,0,0 +8266,10142,18496,18495,-9,-9,2,1,1,59,1,0,1,0,2,-9,1,1,0,5,0,0,0,2,0,-9,30,0,5,-50.89319328280853,0,0,0,54,3,4,1,1,1,2019,1,1,8,0,36,42,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.452234615017866,0,0,0,57.06,57.76,6,2,0,0,8,2,1,1181.5,0,0,0 +8266,10143,18497,-9,18495,18496,3,1,0,21,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-894.3838133324924,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,16,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.33,55.57,5,1,1,1,8,1,1,243,0,0,0 +8266,10144,18498,-9,18495,18496,4,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-962.0664120389644,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.830401413205098,0,0,0,46.16,58.62,6,1,0,0,8,2,1,511,0,0,0 +8267,10145,18499,-9,-9,-9,2,1,0,31,2,0,1,0,1,-9,2,1,0,3,8.243222578733825,8.170036824048008,0,2,0,-9,6,0,2,17.03736021498728,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,20,9,40,40,15,1,9,-9,0,10.66224631491104,10.66224631491104,0,0,0,0,0,0,0,1,1,0,3.165873738296667,0,0,0,29.46,59.39,6,1,0,0,6,5,1,530.5,0,0,0 +8267,10145,18500,-9,18499,-9,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.573796878688,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,530.5,0,0,0 +8267,10146,18501,-9,-9,-9,1,1,0,29,2,0,1,0,1,-9,2,1,0,5,8.556318355116696,8.785888028120709,0,2,0,-9,6,0,-2,-70.37342519239886,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,2,16,5,58,55,15,1,5,-9,0,11.40763841271556,11.40763841271556,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.44,64.52,5,1,0,0,6,5,1,1674,0,0,0 +8268,10147,18502,18503,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,4,8.365649641416688,8.354011460536478,0,1,0,-9,5,0,2,-37.26158446817917,0,0,0,37,1,4,1,2,2,2019,1,2,9,0,38,38,15,1,0,1,0,12.33501662189518,12.33501662189518,0,0,0,0,0,0,0,0,0,0,6.158401088991882,0,0,0,54.45,56.22,6,1,0,0,1,5,0,713.5,0,0,0 +8268,10147,18503,18502,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,4,8.220490272028487,8.263907158866761,0,1,0,-9,5,0,-2,19.30594565452335,0,0,1,39,1,4,1,-9,-9,2019,1,1,3,0,38,38,15,1,0,1,0,10.60500714077203,10.60500714077203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,1,5,0,713.5,0,0,0 +8269,10148,18504,-9,18505,18506,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.656155256187,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,6,5,1,606.6666666666666,0,0,0 +8269,10148,18505,18506,-9,-9,2,1,0,39,1,0,1,0,1,-9,8,3,1,2,0,0,0,2,0,-9,7,0,-7,-18.66670345197339,0,0,1,46,3,4,1,-9,-9,2019,3,1,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,41,5,5,0,0,6,5,1,606.6666666666666,0,0,0 +8269,10148,18506,18505,-9,-9,1,1,1,46,1,0,1,0,3,-9,2,1,0,4,9.06315108577626,9.388372025561472,0,2,0,-9,7,0,7,-66.88832551522179,0,0,0,39,1,2,3,-9,-9,2019,2,2,9,0,50,42,15,1,1,3,0,20.96788309348419,20.96788309348419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,2,0,0,6,5,1,606.6666666666666,0,0,0 +8270,10149,18507,18508,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-5,10.12840926426931,0,0,0,68,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,6,2,1,106.5,0,0,0 +8270,10149,18508,18507,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,6.320061372701503,7.233637222388084,6.421940531996627,1,0,-9,48,0,5,-96.92832525151927,0,0,0,63,2,3,3,3,3,2019,4,2,7,0,10,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.428174050276559,0,0,42.9,51.77,6,1,0,0,6,2,1,106.5,0,0,0 +8271,10150,18509,-9,18512,18510,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-804.2935331525666,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,6,4,1,440,0,0,0 +8271,10150,18510,18512,-9,-9,1,1,1,32,1,1,2,0,1,-9,2,1,0,3,8.844134483729121,8.824412679486439,0,2,0,-9,2,0,0,10.34165541894926,0,0,0,32,1,3,2,1,1,2019,2,2,23,11,35,37,15,1,11,2,0,25.47252247101176,25.47252247101176,0,0,0,0,0,0,0,1,1,0,8.066066025111429,0,0,0,45.8,46.72,3,4,0,1,6,4,1,440,0,0,0 +8271,10150,18511,-9,18512,18510,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.111227090048,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,6,4,1,440,0,0,0 +8271,10150,18512,18510,-9,-9,2,1,0,32,1,1,2,0,1,-9,7,2,0,3,0,0,0,2,0,-9,2,0,0,-162.5141104085489,1,0,1,32,1,3,1,-9,-9,2019,3,1,8,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.91,46.91,4,4,0,0,6,4,1,440,0,0,0 +8272,10151,18513,-9,-9,-9,1,1,0,102,3,0,0,0,3,-9,4,3,0,2,0,3.694551949604266,3.888582245500261,3,0,0,0,-9,0,-1075.268104587075,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,23.6755565171512,0,1,1,0,0,3.987355593466402,0,0,48.82,28.85,7,1,0,0,10,1,0,1494,0,0,0 +8273,10152,18514,18515,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,5,8.700278384411417,8.912528425297822,0,1,0,-9,33,0,-7,16.81225591422605,0,0,0,58,1,3,1,3,3,2019,1,1,12,1,39,52,15,1,1,1,0,19.41523601984767,19.41523601984767,0,0,0,0,0,0,0,0,0,0,4.560100740888341,0,6.715638023508742,3,52.52,55.95,4,3,0,0,5,5,1,2654.5,0,0,0 +8273,10152,18515,18514,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,3,8.746685357105612,8.618121019454502,0,1,0,-9,33,0,7,64.39439720914248,0,0,0,51,1,5,1,-9,-9,2019,1,2,21,9,43,57,15,1,9,1,0,10.35078071273326,10.35078071273326,0,0,0,0,0,0,0,0,0,0,1.005528238598047,0,5.594056316704581,3,43.84,58.37,4,3,0,0,5,5,1,2654.5,0,0,0 +8274,10153,18516,-9,-9,-9,1,1,1,73,2,0,0,0,1,-9,4,3,0,3,5.208507407472923,8.100142338460515,7.997616228525474,3,0,0,0,-9,0,-920.1557125180714,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,14,17,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.876354408126439,0,0,52,47,6,1,0,0,6,4,1,603,0,0,0 +8275,10154,18517,18518,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,4,8.55310817732982,8.455716727484477,0,2,0,-9,7,0,1,-69.76508921062121,0,0,0,48,1,4,1,1,2,2019,1,2,10,0,37,37,15,1,0,1,0,19.38348142136514,19.38348142136514,0,0,0,0,0,0,0,1,1,0,4.484017756316421,0,0,0,54.2,57.49,6,1,0,0,11,4,1,1024.75,0,0,0 +8275,10154,18518,18517,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.1065369374172,7.947642054313179,0,2,0,-9,7,0,-1,128.9224185860496,0,0,0,49,1,4,1,2,2,2019,1,1,11,0,23,25,15,1,0,1,0,17.36827751111383,17.36827751111383,0,0,0,0,0,0,0,1,1,0,3.966110913909873,0,0,0,54.2,57.49,2,1,0,0,11,4,1,1024.75,0,0,0 +8275,10154,18519,-9,18518,18517,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-904.6074039324972,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,11,4,1,1024.75,0,0,0 +8275,10154,18520,-9,18518,18517,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.062554742901,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,1024.75,0,0,0 +8276,10155,18521,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,8,3,1,2,0,5.349026479457592,5.120950273458256,3,0,0,0,-9,0,-946.9822673633894,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.579595051868628,0,0,58.26,19.15,5,1,0,0,2,2,0,849,0,0,0 +8277,10156,18522,18523,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.283280285347246,8.050804301795059,0,1,0,-9,30,0,-5,127.8546930786238,0,0,0,62,1,3,1,2,2,2019,1,2,4,0,40,43,15,1,0,1,0,10.12485743245877,10.12485743245877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,6,5,1,194.5,0,0,0 +8277,10156,18523,18522,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,3,9.37715886332513,9.618632390527395,0,1,0,-9,30,0,5,21.4276926786746,0,0,0,57,2,4,1,2,2,2019,1,1,7,0,52,48,15,1,0,1,0,29.25872538175739,29.25872538175739,0,0,0,0,0,0,0,0,0,0,1.648412979848572,0,0,0,60.3,35.85,5,1,0,0,6,5,1,194.5,0,0,0 +8278,10157,18524,18525,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,6,0,1,43.83522280119719,0,0,0,55,3,4,1,2,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,3,1,428.5,0,0,0 +8278,10157,18525,18524,-9,-9,2,1,1,55,1,0,0,0,3,-9,1,1,0,4,8.27706300060742,8.214915309821945,0,1,0,-9,6,0,-1,75.16738213625224,0,0,0,56,2,4,3,-9,-9,2019,2,1,9,0,50,48,15,1,1,3,0,10.08519824683199,10.08519824683199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,5,0,0,12,3,1,428.5,0,0,0 +8278,10158,18526,-9,18524,18525,3,1,1,27,2,0,0,0,2,-9,1,1,0,4,8.242403141714577,7.824319478411411,0,3,0,0,0,-9,0,-1002.02321868899,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,45,0,15,1,1,-9,1,7.528797762358844,7.528797762358844,0,0,0,0,0,0,0,0,0,0,6.927441984322373,0,0,0,49,58,5,1,0,0,12,4,1,988,0,0,0 +8279,10159,18527,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,4.637803475938967,4.41630979649405,3,0,0,0,-9,0,-1020.802524485377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.404732989286175,4.466877886262047,.1601984437701298,3,62.49,55.09,7,1,0,0,10,1,0,693,0,0,0 +8280,10160,18528,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-971.2830629444014,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,52,4,1,1,0,6,1,0,1584,0,0,0 +8281,10161,18529,-9,-9,-9,1,1,0,34,3,0,0,0,1,-9,2,1,0,4,8.78830526209677,8.950983024243509,0,3,0,0,0,-9,0,-992.0351088773959,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,40,40,15,1,0,-9,0,21.20978470503714,21.20978470503714,0,0,0,0,0,0,0,0,0,0,1.546552849978444,0,0,0,54.21,49.46,6,1,0,0,9,5,0,659,0,0,0 +8282,10162,18530,-9,18533,18531,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.9641116021031,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,1,1363.5,0,0,0 +8282,10162,18531,18533,-9,-9,1,1,1,56,1,0,2,0,2,-9,2,1,0,4,8.464021839670348,8.079932903668713,0,2,0,-9,29,0,9,38.12162595558298,0,0,0,47,2,3,1,2,2,2019,1,2,11,1,37,37,15,1,1,1,0,11.14478542824014,11.14478542824014,0,0,0,0,0,0,0,1,1,0,1.338932551718771,0,0,3,54.2,57.49,5,1,0,0,5,3,1,1363.5,0,0,0 +8282,10162,18532,-9,18533,18531,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.940794572965,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,1363.5,0,0,0 +8282,10162,18533,18531,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,3,6.285716888983984,5.908490101872713,0,2,0,-9,29,0,0,34.44463347273029,0,0,0,56,2,4,1,-9,3,2019,1,1,7,0,9,9,15,1,0,1,0,7.382055861014927,7.382055861014927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,5,3,1,1363.5,0,0,0 +8283,10163,18534,-9,18536,18537,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.8653120411678,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,2,1,888.75,0,0,0 +8283,10163,18535,-9,18536,18537,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.108434526769,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,6,2,1,888.75,0,0,0 +8283,10163,18536,18537,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.826208532047189,7.64669749496634,0,2,0,-9,15,0,-5,40.93832590501233,0,0,1,47,3,3,3,2,2,2019,2,1,7,0,32,34,15,1,0,3,0,9.1815387480083,9.1815387480083,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,3,0,0,6,2,1,888.75,0,0,0 +8283,10163,18537,18536,-9,-9,1,1,1,47,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,15,0,5,90.03377872975321,0,0,0,42,2,3,1,3,2,2019,3,2,6,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,6,3,0,0,6,2,1,888.75,0,0,0 +8284,10164,18538,18539,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,4,8.918988636453472,9.063344078428139,0,1,0,-9,8,0,-10,45.35584662216391,0,0,0,53,2,2,1,-9,-9,2019,1,1,9,0,60,60,15,1,1,1,0,17.01198624417336,17.01198624417336,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,1,5,1,1727,0,0,0 +8284,10164,18539,18538,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,2,8.165929339706043,7.80805861640176,0,1,0,-9,23,0,10,-21.0474035480093,0,0,0,43,2,4,1,3,3,2019,1,2,8,0,45,45,15,1,0,1,0,7.803353502703008,7.803353502703008,0,0,0,0,0,0,0,1,1,0,6.068925432682596,0,0,0,56.58,25.82,6,1,0,0,1,5,1,1727,0,0,0 +8284,10165,18540,-9,18539,18538,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,8.531681842417278,8.708681968451939,0,3,0,0,0,-9,0,-1035.154848866353,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,60,15,1,0,-9,1,11.45235961454139,11.45235961454139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.01,50.99,6,1,0,0,1,5,1,128,0,0,0 +8285,10166,18541,-9,18542,18543,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.337196008361,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,513.75,0,0,0 +8285,10166,18542,18543,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,5,9.130282927219145,8.796665628645499,0,2,0,-9,9,0,-8,-107.8037182757238,0,0,1,51,2,3,1,1,2,2019,1,2,11,0,40,37,15,1,0,1,0,27.98041023080114,27.98041023080114,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,59.87,6,1,0,0,2,5,1,513.75,0,0,0 +8285,10166,18543,18542,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,3,9.061025875868529,8.83133923155134,0,2,0,-9,9,0,8,18.75193562604747,0,0,0,43,1,5,1,2,3,2019,1,1,8,0,1,40,15,1,0,1,0,970.7564210997433,970.7564210997433,0,0,0,0,0,0,0,1,1,0,6.514484273475601,0,0,0,57.33,53.46,6,1,0,0,2,5,1,513.75,0,0,0 +8285,10166,18544,-9,18542,18543,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.0370621890454,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,513.75,0,0,0 +8286,10167,18545,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,1,1,0,5,5.362128515127406,5.406884213372722,0,3,0,0,0,-9,0,-1020.014643288295,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,44,15,1,0,-9,0,.5641792121528101,.5641792121528101,0,0,0,0,0,0,0,0,0,0,3.017523095553103,0,0,0,60.02,56.42,7,1,0,0,5,2,0,345,0,0,0 +8287,10168,18546,-9,18547,18548,2,1,1,20,2,0,0,0,2,-9,2,1,0,4,8.48110552035266,8.528293561904112,0,3,0,0,0,-9,0,-1011.155672286305,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,104,84,15,1,1,-9,1,5.646021548519411,5.646021548519411,0,0,0,0,0,0,0,0,0,0,3.032119067782395,0,18.12287642213445,3,54.79,55.86,6,1,0,0,4,5,1,660,0,0,0 +8287,10169,18547,18548,-9,-9,1,1,0,49,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,3,0,-3,81.67061830756376,0,0,0,52,2,4,1,-9,-9,2019,3,3,11,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.68,32.05,6,1,0,0,4,5,1,667,0,0,0 +8287,10169,18548,18547,-9,-9,3,1,1,52,1,0,0,0,2,-9,2,1,0,4,9.035601924723503,9.067636184709224,0,1,0,-9,3,0,3,108.2463350687814,0,0,0,49,2,3,3,-9,-9,2019,2,1,8,0,47,60,15,1,0,3,0,18.41188554690497,18.41188554690497,0,0,0,0,0,0,0,0,0,0,0,0,29.30370058592323,1,54.2,57.49,7,1,0,0,4,5,1,667,0,0,0 +8288,10170,18549,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,2,0,5.768166889902961,5.76964062179704,3,0,-9,0,-9,0,-1006.236641458572,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.781288639262529,5.685006876315557,0,0,56.19,25.5,6,1,0,0,10,2,0,359,0,0,0 +8289,10171,18550,18551,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,7.386142383640219,7.567762757176849,1,0,-9,6,0,4,84.0622494744501,0,0,0,71,3,3,1,3,3,2019,3,2,24,10,0,0,15,4,10,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1.587810114189851,7.227575481118764,0,0,42.19,32.17,4,1,0,0,12,4,1,707,0,0,0 +8289,10171,18551,18550,-9,-9,2,1,0,71,1,0,0,0,3,-9,2,1,0,3,8.477906881578736,8.024793752812258,5.319878938726078,1,0,-9,6,0,-4,-44.68153251108783,0,0,0,75,1,2,3,3,3,2019,2,1,8,1,35,35,15,1,1,4,0,13.97839536522291,13.97839536522291,0,0,0,0,0,0,0,1,1,0,0,5.747314662580273,0,0,48.98,57.22,6,1,0,0,12,4,1,707,0,0,0 +8290,10172,18552,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,6.727520200457412,7.511306920703396,3,0,-9,0,1,0,-1078.662072368668,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.123722971059189,7.126197422719939,0,0,40.87,44.58,6,1,0,0,12,2,1,178,0,0,0 +8291,10173,18553,-9,18554,18556,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-906.6840139365253,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,6,2,1,1029.25,0,0,0 +8291,10173,18554,18556,-9,-9,2,1,0,31,1,1,2,0,1,-9,2,1,0,4,7.26659498978025,7.157337428969452,0,2,0,-9,2,0,0,24.98180112844798,0,1,1,31,2,4,1,2,2,2019,1,1,6,1,24,25,15,1,1,1,0,7.356120180686317,7.356120180686317,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,7,3,0,0,6,2,1,1029.25,0,0,0 +8291,10173,18555,-9,18554,18556,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.210286178479,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,2,1,1029.25,0,0,0 +8291,10173,18556,18554,-9,-9,1,1,1,31,1,1,2,0,2,-9,2,1,0,4,6.79454895803853,7.102232083847619,5.228230937006646,2,0,-9,2,0,0,3.834581348828264,0,0,0,31,1,4,1,2,2,2019,1,2,17,6,16,30,15,1,6,1,0,6.423387770791057,6.423387770791057,0,0,0,0,0,0,0,1,1,0,5.102968328000001,0,0,0,51.83,57.2,5,3,0,0,6,2,1,1029.25,0,0,0 +8292,10174,18557,18559,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,4,7.28289310779101,7.11099621505093,0,2,0,-9,2,0,-7,-68.48451386316881,0,0,1,37,1,5,1,-9,-9,2019,1,1,12,0,12,11,15,1,0,1,0,9.7812858402486,9.7812858402486,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,4,1,0,0,7,5,1,626.5,0,0,0 +8292,10174,18558,-9,18557,18559,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.1517686559931,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,626.5,0,0,0 +8292,10174,18559,18557,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,5,9.316011472190782,9.099437780366893,0,2,0,-9,2,0,7,-127.9104387126001,0,0,0,30,2,4,1,2,1,2019,1,2,17,5,72,60,15,1,5,1,0,21.35476164580864,21.35476164580864,0,0,0,0,0,0,0,1,1,0,3.20050000528824,0,0,0,24.81,67.28,3,1,0,0,7,5,1,626.5,0,0,0 +8292,10174,18560,-9,18557,18559,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.6641112865603,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,1,626.5,0,0,0 +8293,10175,18561,18562,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,8.085843933404112,7.8732807264542,1,0,-9,57,0,0,67.21427082260915,0,0,0,75,2,5,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,3.768035531900977,0,0,0,0,1,1,0,8.139938660397544,7.891676256700451,0,0,52.82,21.81,6,1,0,0,10,4,1,356,0,0,0 +8293,10175,18562,18561,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,5,0,8.159496284061898,7.824331967307184,1,0,-9,57,0,0,-60.32500077461339,0,0,0,75,3,3,3,-9,3,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.933736058209963,8.018231922488201,0,2,61.01,53.18,7,1,0,0,10,4,1,356,0,0,0 +8294,10176,18563,18564,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,4,8.478357271951159,8.602930997852278,0,1,0,-9,2,0,0,-72.42012931195814,0,1,0,25,1,4,1,-9,-9,2019,1,2,8,0,37,42,15,1,0,1,0,10.86761261621812,10.86761261621812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.3,58.08,6,1,0,0,5,5,0,155.5,0,0,0 +8294,10176,18564,18563,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,7.856775786366967,7.700357285232042,0,1,0,-9,2,0,0,46.50282812237852,-9,1,1,25,1,4,1,-9,-9,2019,1,1,12,2,41,0,15,1,2,1,0,6.563399620247374,6.563399620247374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.1,63.29,6,1,0,0,5,5,0,155.5,0,0,0 +8295,10177,18565,-9,-9,-9,1,1,0,91,3,0,0,0,2,-9,4,3,0,2,0,6.23688722769077,6.096022977760306,3,0,0,0,-9,0,-1156.610103951443,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,5.024435605848248,0,0,0,0,0,1,1,0,0,5.494829178950094,0,0,50,33,5,1,0,0,9,2,1,194,0,0,0 +8296,10178,18566,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,2,0,4.966870785966523,5.027802074268524,3,0,0,0,-9,0,-1168.297091159239,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.713618251156654,0,0,40.14,16.93,3,1,0,0,7,2,1,435,0,0,0 +8297,10179,18567,18568,-9,-9,1,1,1,54,1,0,0,0,2,-9,8,3,1,1,0,6.169979134865351,6.305782560241718,1,0,-9,8,0,-3,58.03520970458587,0,0,0,57,1,3,3,3,3,2019,4,2,14,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.426459440539051,6.431241420402469,0,0,51.08,22.96,3,1,0,0,1,3,0,687.5,0,0,0 +8297,10179,18568,18567,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,3,2.996922209873644,7.340655586027983,7.461190939271813,1,0,-9,8,0,3,-181.9331973601099,0,0,0,54,2,1,3,-9,-9,2019,4,1,6,0,0,37,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.300654762885058,7.797596400309859,0,0,53.74,44.11,6,1,0,0,1,3,0,687.5,0,0,0 +8298,10180,18569,18570,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,4,9.333752359910296,9.691068018564573,0,2,0,-9,24,0,5,-62.40889167642994,0,0,0,49,2,4,1,2,2,2019,1,1,33,11,40,40,15,1,11,1,0,41.37799021119498,41.37799021119498,0,0,0,0,0,0,0,0,0,0,2.942445406272296,0,0,0,17.19,61.17,2,3,0,1,9,5,1,698,0,0,0 +8298,10180,18570,18569,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,4,0,0,0,2,0,-9,24,0,-5,7.44144638040799,0,0,0,54,1,4,1,2,1,2019,1,2,13,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.647336623954446,0,0,0,50.62,53.79,6,3,0,0,9,5,1,698,0,0,0 +8298,10180,18571,-9,18570,18569,4,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-928.6213669015642,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.699877514320616,0,0,0,33.89,54.63,2,3,0,0,9,5,1,698,0,0,0 +8298,10181,18572,-9,18570,18569,3,1,0,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1037.760932941278,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.164006504007435,0,0,0,28.19,68.39,5,3,0,0,9,1,1,838,0,0,0 +8299,10182,18573,18574,-9,-9,1,1,1,47,1,0,1,0,3,-9,2,1,0,4,9.02196440751341,9.398261360196397,0,2,0,-9,8,0,7,13.92481134325413,0,0,0,40,1,3,3,-9,-9,2019,2,2,9,0,40,50,15,1,1,3,0,29.0686172411522,29.0686172411522,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,55,6,2,0,0,6,5,1,254,0,0,0 +8299,10182,18574,18573,-9,-9,2,1,0,40,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-7,-10.84272950661541,0,0,1,47,3,4,1,-9,-9,2019,3,1,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.134468277989196,0,0,0,48.55,43.79,6,5,0,0,6,5,1,254,0,0,0 +8300,10183,18575,-9,18576,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1085.799627409224,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,3,0,0,2,1,1,373.5,0,0,0 +8300,10183,18576,-9,-9,-9,1,1,0,43,3,0,1,0,3,-9,8,3,1,4,0,0,0,4,0,0,0,-9,0,-867.3167818290763,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,2,1,1,373.5,0,0,0 +8300,10184,18577,-9,18576,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,2,6.398625475439994,6.605506885030651,0,3,0,0,0,-9,0,-963.5795297379378,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,15,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.85074982726668,3,45.27,50.01,5,3,0,0,2,2,1,2061,0,0,0 +8301,10185,18578,18579,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,4.699831029746201,4.438182196521767,1,0,-9,40,0,1,-72.77862036346741,0,0,0,68,1,3,3,-9,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.037896899292015,5.039952155992502,0,0,64.23,44.69,7,1,0,0,4,3,1,1104.5,0,0,0 +8301,10185,18579,18578,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,8.044263407416192,7.952096769982107,1,0,-9,39,0,-1,31.0556527903149,0,0,0,69,3,4,3,-9,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.278073616070087,8.048993939159878,0,0,59.58,42.8,6,1,0,0,4,3,1,1104.5,0,0,0 +8302,10186,18580,18581,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.454432414032166,8.226861559136665,3.432304122095393,1,0,-9,8,0,-3,58.10894935008291,0,0,0,62,3,3,3,3,3,2019,2,2,16,5,37,37,15,1,5,4,0,14.76535109809199,14.76535109809199,0,0,0,0,0,0,0,0,0,0,3.999803733733844,3.559961678479459,0,0,35.05,60.2,3,1,0,0,12,4,1,860,0,0,0 +8302,10186,18581,18580,-9,-9,2,1,1,62,1,0,0,0,3,-9,4,3,0,3,0,7.288472861684594,7.397838408494217,1,0,-9,8,0,3,47.12924315336281,0,0,0,59,2,4,1,-9,-9,2019,3,1,16,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.615487540917949,7.364086381190508,0,0,37.69,58.7,3,1,0,0,12,4,1,860,0,0,0 +8303,10187,18582,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,5,9.588998941296781,9.890865509277832,0,3,0,0,0,-9,0,-995.3229148163391,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,53,50,15,1,1,-9,0,38.74410638299349,38.74410638299349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,5,1,513,0,0,0 +8304,10188,18583,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,2,1,0,4,8.603198807113168,8.753883011699205,0,3,0,0,0,-9,0,-1124.848182963727,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,35,40,15,1,0,-9,0,19.77477311899375,19.77477311899375,0,0,0,0,0,0,0,0,0,0,1.77497219703436,0,0,0,51.24,58.84,6,1,0,0,8,5,0,799,0,0,0 +8305,10189,18584,-9,-9,-9,1,1,1,33,3,0,0,0,1,-9,1,1,0,4,8.345784237350051,8.397471058560237,0,3,0,-9,0,1,0,-1000.467212729513,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,30,40,15,1,7,-9,0,13.06912610722092,13.06912610722092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,3,1,0,1,7,4,0,164,0,0,0 +8305,10190,18585,-9,-9,-9,2,1,0,37,3,0,0,0,1,-9,2,1,0,5,8.282180772532923,7.887558192639946,0,3,0,-9,0,1,0,-1143.750230860155,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,32,23,15,1,0,-9,0,12.6987657092039,12.6987657092039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,5,0,0,7,4,0,476,0,0,0 +8306,10191,18586,18587,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,4.434956931455541,4.396497808184492,1,0,-9,31,0,7,-45.20034329202586,0,0,0,62,3,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,1,44.16089343805717,46.41802046372236,0,0,0,431.7456344779666,1,1,0,0,4.169843124567586,0,0,42.08,17.49,5,1,0,0,2,1,0,924,0,0,0 +8306,10191,18587,18586,-9,-9,1,1,0,62,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,31,0,-7,-209.9692203568127,0,0,0,69,3,1,3,3,3,2019,4,2,18,6,0,0,15,3,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,84.83213533930069,1,40.97,32.79,4,1,0,0,2,1,0,924,0,0,0 +8307,10192,18588,18589,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.1370833929825,8.2834603683929,0,1,0,-9,29,0,3,94.93795909400642,0,0,0,54,1,4,1,2,2,2019,1,2,9,0,35,35,15,1,0,1,0,15.1842897910556,15.1842897910556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.05,52.04,5,4,0,1,8,5,0,1421.5,0,0,0 +8307,10192,18589,18588,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.452489393986832,8.452426748127264,5.491637995367624,1,0,-9,28,0,-3,78.78537772658812,0,0,0,57,1,4,1,3,2,2019,1,1,10,0,35,30,15,1,1,1,0,16.25059561244031,16.25059561244031,0,0,0,0,0,0,0,0,0,0,0,5.557734170231543,0,0,52,53,5,4,0,0,8,5,0,1421.5,0,0,0 +8307,10193,18590,-9,18589,18588,3,1,1,27,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1012.250917526355,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,20,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,57,5,4,1,0,8,1,0,173,0,0,0 +8307,10194,18591,-9,18589,18588,4,1,0,28,2,0,0,0,1,-9,2,1,0,4,6.564331014802197,6.835643584363323,0,3,0,0,0,-9,0,-1116.912089880121,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,24,5,15,1,2,-9,1,3.76798621657752,3.76798621657752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,4,0,0,8,2,0,109,0,0,0 +8308,10195,18592,18593,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.789843953707257,5.497069487943714,1,0,-9,53,0,-1,-18.5192508161816,0,0,0,73,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.549905099127933,0,0,57.16,56.15,7,1,0,0,7,3,1,657,0,0,0 +8308,10195,18593,18592,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,5,6.136180388976263,7.995155980000046,7.809863797656049,1,0,-9,53,0,1,29.61190405788135,0,0,0,72,3,4,3,3,3,2019,4,1,6,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.836568821176671,8.070706720022734,0,0,63.38,53.47,7,1,0,0,7,3,1,657,0,0,0 +8309,10196,18594,-9,-9,-9,1,1,0,28,2,0,1,0,1,-9,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1081.709280210704,1,1,1,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,31.2,48.52,4,3,0,1,4,1,1,575,0,0,0 +8309,10197,18595,-9,-9,-9,4,1,1,32,3,0,1,0,2,-9,2,1,0,3,6.481725894470794,6.811411666490151,0,3,0,-9,0,-9,0,-982.4671345276695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,15,0,15,1,1,-9,1,7.245711552452619,7.245711552452619,0,0,0,0,0,0,0,1,1,0,0,0,39.67680030819005,3,34.77,55.61,4,3,0,0,4,2,1,781,0,0,0 +8310,10198,18596,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,2,7.203482129257005,7.201032483200153,0,3,0,0,0,-9,0,-849.2446911009329,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,23,10,20,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.21,55.01,3,1,0,0,9,2,0,297,0,0,0 +8310,10199,18597,-9,-9,-9,4,1,0,21,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1068.704308224055,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.5,50.45,5,1,0,0,9,1,0,1513,0,0,0 +8311,10200,18598,-9,18600,18601,3,1,0,17,2,0,2,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1070.986759102802,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.47,60.56,5,1,0,0,12,5,1,767.25,0,0,0 +8311,10200,18599,-9,18600,18601,4,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1004.81135299455,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,12,5,1,767.25,0,0,0 +8311,10200,18600,18601,-9,-9,1,1,0,56,1,0,2,0,1,-9,2,1,0,5,8.661800990435486,8.576098643495582,0,2,0,-9,8,0,3,-68.87499509340911,0,0,0,53,1,5,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,19.17420888812589,19.17420888812589,0,0,0,0,0,0,0,1,1,0,.869828927367672,0,0,0,57.06,57.76,6,1,0,0,12,5,1,767.25,0,0,0 +8311,10200,18601,18600,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,5,8.947070825639598,9.200186646103058,0,2,0,-9,8,0,-3,-34.66475161065994,0,0,0,56,1,5,1,3,1,2019,1,1,12,0,45,50,15,1,0,1,0,27.41656236108293,27.41656236108293,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,60.24,6,1,0,0,12,5,1,767.25,0,0,0 +8312,10201,18602,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,6.971055720222065,7.089067474902557,3,0,0,0,-9,0,-931.1406163412179,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8438616400351713,6.944676263278929,0,0,52.8,43.25,5,1,0,0,7,2,1,389,0,0,0 +8313,10202,18603,18604,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.619275455366191,8.658043841301467,0,1,0,-9,6,0,-1,31.91857874898808,0,0,0,33,1,3,1,2,1,2019,1,2,6,0,47,42,15,1,0,1,0,12.5947486900364,12.5947486900364,0,0,0,0,0,0,0,0,0,0,6.780940558856934,0,0,0,54.79,55.86,6,1,0,0,9,5,1,948.5,0,0,0 +8313,10202,18604,18603,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,3,8.440171849423823,8.217096301147098,0,1,0,-9,6,0,1,18.78862489408463,0,0,1,32,1,4,1,-9,-9,2019,1,1,13,1,27,24,15,1,1,1,0,17.49692699107725,17.49692699107725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,9,5,1,948.5,0,0,0 +8314,10203,18605,18606,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,6.037904222981722,6.026230923499676,1,0,-9,45,0,-4,8.458706153218296,0,0,0,71,2,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.135900918101067,6.079542583927203,0,0,49.86,39.28,5,3,0,0,8,3,1,817,0,0,0 +8314,10203,18606,18605,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.465068215029797,7.536571978824746,1,0,-9,45,0,4,-36.89806486438398,0,0,0,67,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.228754803892461,8.040016130481353,0,0,60.12,54.8,1,3,0,0,8,3,1,817,0,0,0 +8315,10204,18607,-9,-9,-9,1,1,1,87,2,0,0,0,3,-9,4,3,0,3,0,6.379259730541366,6.277373920655108,3,0,0,0,-9,0,-976.7633782432765,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,33.17754394681388,0,1,1,0,7.404929671968393,6.509121628085705,0,0,54,45,6,1,0,0,11,2,1,1887,0,0,0 +8316,10205,18608,18609,-9,-9,1,1,0,31,1,1,1,0,2,-9,2,1,0,5,7.580061755581927,8.260596675620825,0,2,0,-9,1,-9,-14,-70.97696390346226,-9,0,1,45,2,4,1,2,2,2019,1,2,6,0,35,0,15,1,0,1,0,9.253683637015451,9.253683637015451,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,4,4,1,1103.333333333333,0,0,0 +8316,10205,18609,18608,-9,-9,2,1,1,45,1,1,1,0,2,-9,2,1,0,4,8.610010932297897,8.603986619439556,0,2,0,-9,1,-9,14,8.316282077042054,-9,0,0,31,2,5,1,-9,-9,2019,1,1,9,0,55,0,15,1,0,1,0,10.32558579462058,10.32558579462058,0,0,0,0,0,0,0,1,1,0,1.577902280643681,0,0,0,49.86,55.31,6,1,0,0,4,4,1,1103.333333333333,0,0,0 +8316,10205,18610,-9,18608,18609,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1024.320797419966,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,1103.333333333333,0,0,0 +8317,10206,18611,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,1,1,0,3,9.683927602252316,9.922181907892647,7.03022186407288,3,0,0,0,-9,0,-1004.093136197414,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,60,72,15,1,1,-9,0,29.01879617666046,29.01879617666046,0,0,0,0,0,0,0,1,1,0,3.895673511712967,7.236962983983335,0,0,44.23,41.64,7,1,0,0,5,5,1,89,0,0,0 +8317,10207,18612,-9,-9,18611,2,1,1,42,2,0,0,0,3,-9,1,1,0,4,8.168413810035723,8.030937956130941,0,3,0,0,0,-9,0,-1026.559733200095,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,35,24,15,1,5,-9,1,10.05488970912539,10.05488970912539,0,0,0,0,0,0,0,1,1,0,2.01921575514665,0,0,0,40.34,43.58,5,1,0,1,5,4,1,239,0,0,0 +8318,10208,18613,18614,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,2,6.855498075659922,7.3556172950989,0,1,0,-9,5,0,0,-16.92045149721826,0,1,1,25,1,3,1,-9,-9,2019,1,1,19,7,16,16,15,1,7,1,0,9.471956399319508,9.471956399319508,0,0,0,0,0,0,0,0,0,0,2.020257364595914,0,0,0,24.88,45.7,5,1,0,0,6,4,1,856,0,0,0 +8318,10208,18614,18613,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,3,8.398272632005627,8.141620081074329,0,1,0,-9,5,0,0,51.22876766485048,0,1,0,25,1,2,1,3,3,2019,1,2,17,5,38,38,15,1,5,1,0,15.26906017666252,15.26906017666252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.5,42.22,5,1,0,0,6,4,1,856,0,0,0 +8319,10209,18615,18616,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,5,7.265692238032737,7.269920689448565,5.298978576997953,1,0,-9,9,0,0,44.95774047490826,0,0,0,61,1,5,1,3,3,2019,1,2,8,0,20,22,15,1,0,1,0,8.679034265064169,8.679034265064169,0,0,0,0,0,0,0,0,0,0,4.25430436755587,5.425731712116997,0,0,54.1,59.11,7,1,0,0,9,3,1,1181,0,0,0 +8319,10209,18616,18615,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,5,7.499671787745623,7.288952808393109,0,1,0,-9,9,0,0,-1.968496369098641,0,0,0,61,1,5,1,3,3,2019,1,1,6,0,40,9,15,1,0,1,0,5.397453750853014,5.397453750853014,0,0,0,0,0,0,0,0,0,0,9.133913991559304,0,0,0,59.43,58.05,6,1,0,0,9,3,1,1181,0,0,0 +8320,10210,18617,-9,18620,-9,2,1,0,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-990.2806094146121,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,1,0,715.8,0,0,0 +8320,10210,18618,-9,18620,-9,3,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-987.927484827478,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,1,0,715.8,0,0,0 +8320,10210,18619,-9,18620,-9,5,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1098.15340699791,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,1,0,715.8,0,0,0 +8320,10210,18620,-9,-9,-9,1,1,0,32,2,0,4,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-955.5608284541238,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.8654340170458,3,21.06,56.49,6,1,0,0,7,1,0,715.8,0,0,0 +8320,10210,18621,-9,18620,-9,4,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1115.419465769084,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,1,0,715.8,0,0,0 +8321,10211,18622,18623,-9,-9,2,1,0,33,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,4,0,-6,144.1219552734528,0,0,1,39,1,5,1,-9,-9,2019,3,1,21,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.801668509955154,0,0,0,38.38,38.11,3,1,0,0,2,5,1,516,0,0,0 +8321,10211,18623,18622,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,5,9.551717270872938,9.531344722560103,0,1,0,-9,4,0,6,-.49595237937951,0,0,0,33,1,1,3,2,2,2019,2,2,7,0,58,68,15,1,0,3,0,18.82391061049758,18.82391061049758,0,0,0,0,0,0,0,1,1,0,7.21460066850138,0,.1292214615749669,1,48.96,60.26,6,3,0,0,2,5,1,516,0,0,0 +8322,10212,18624,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,-9,0,-9,0,-993.6584814538874,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.87,21.25,2,1,1,0,1,1,0,281,0,0,0 +8323,10213,18625,18628,-9,-9,2,1,1,46,1,0,3,0,3,-9,2,1,0,4,7.189932570704786,7.182823638093152,0,2,0,-9,24,0,5,99.34531578187442,0,0,0,41,2,3,1,3,3,2019,1,1,11,0,30,30,15,1,0,1,0,4.554250127019289,4.554250127019289,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,47.61,6,3,0,0,6,2,0,579.8,0,0,0 +8323,10213,18626,-9,18628,18625,5,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.07883489298,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,2,0,579.8,0,0,0 +8323,10213,18627,-9,18628,18625,6,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.7722861601218,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,6,2,0,579.8,0,0,0 +8323,10213,18628,18625,-9,-9,1,1,0,41,1,0,3,0,2,-9,2,1,0,3,6.4676437211154,6.316696671377289,0,2,0,-9,24,0,-5,-55.3611359374955,0,0,1,46,3,4,1,2,2,2019,1,2,11,0,5,5,15,1,0,1,0,16.43770083903292,16.43770083903292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.69,52.99,6,3,0,0,6,2,0,579.8,0,0,0 +8323,10213,18629,-9,18628,18625,4,1,0,16,2,0,3,1,2,-9,7,2,0,4,3.765670765301522,3.673839616195959,0,2,0,0,0,-9,0,-986.3169513555887,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,2,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.51,41.15,4,3,0,0,6,2,0,579.8,0,0,0 +8323,10214,18630,-9,18628,18625,3,1,1,21,2,0,3,0,2,1,2,1,0,4,7.670233112091695,7.841169734137534,0,3,0,0,0,-9,0,-925.5251524202811,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,24,0,15,1,0,-9,1,8.95285345074487,8.95285345074487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,51.88,3,3,0,0,6,3,0,542,0,0,0 +8324,10215,18631,18632,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,3,8.064072032811771,7.848771535911433,0,1,0,-9,3,0,-7,13.00983233022002,0,1,1,36,1,5,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,9.385516603363968,9.385516603363968,0,0,0,0,0,0,0,0,0,0,3.756658822681188,0,0,0,46.57,54.66,6,1,0,0,4,5,0,388.5,0,0,0 +8324,10215,18632,18631,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,5,8.148416918139691,8.573318075274427,0,1,0,-9,3,0,7,-39.84639883365323,0,0,0,29,2,3,1,-9,-9,2019,1,2,15,3,37,40,15,1,3,1,0,13.94408334744446,13.94408334744446,0,0,0,0,0,0,0,0,0,0,7.747287375106705,0,0,0,46.28,62.6,6,1,0,0,4,5,0,388.5,0,0,0 +8325,10216,18633,-9,18634,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-922.8546783797481,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,0,644.6666666666666,0,0,0 +8325,10216,18634,-9,-9,-9,1,1,0,35,3,0,2,0,1,-9,2,1,0,3,6.673619939738615,7.289589073264721,0,4,0,0,0,-9,0,-1005.533464483737,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,14,15,1,2,-9,0,5.005710611563859,5.005710611563859,0,0,0,0,0,0,0,1,1,0,0,0,20.03812295448999,3,38.11,41.95,3,1,0,0,6,2,0,644.6666666666666,0,0,0 +8325,10216,18635,-9,18634,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1031.677910400548,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,0,644.6666666666666,0,0,0 +8326,10217,18636,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,3,7.647535703999374,8.459145617786351,7.629475344559878,3,0,0,0,-9,0,-828.7700313829645,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,8,21,21,15,1,8,-9,0,15.07839728040228,15.07839728040228,0,0,0,0,0,0,0,0,0,0,8.426360324335674,7.455251715544436,0,0,37.62,40.73,3,1,0,0,11,4,1,473,0,0,0 +8327,10218,18637,-9,18639,18638,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-883.0858317645983,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,0,215.6666666666667,0,0,0 +8327,10218,18638,18639,-9,-9,2,1,1,30,1,0,1,0,2,-9,2,1,0,5,7.919257952569512,7.98771639899018,0,2,0,-9,6,0,3,158.441559024386,0,0,0,27,2,4,1,-9,-9,2019,1,1,5,0,39,42,15,1,0,1,0,8.940607563069841,8.940607563069841,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.2,54.53,7,1,0,0,4,3,0,215.6666666666667,0,0,0 +8327,10218,18639,18638,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,4,7.652015297201597,7.659368769587757,0,2,0,-9,6,0,-3,-56.79759663467197,0,1,1,30,2,5,1,2,2,2019,1,2,5,0,30,24,15,1,0,1,0,6.157647531044266,6.157647531044266,0,0,0,0,0,0,0,1,1,0,.6839505576580882,0,0,0,46,58,7,1,0,0,4,3,0,215.6666666666667,0,0,0 +8328,10219,18640,-9,-9,-9,1,1,1,27,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1070.626557604245,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,20,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.127527303681972,3,31.95,50.96,3,1,1,1,11,1,0,315,0,0,0 +8329,10220,18641,18642,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,5,0,6.570374932379766,6.727265321814945,1,0,-9,42,0,-5,114.5219880601826,0,0,0,62,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.336898327507726,6.887055198813068,0,0,60.02,56.42,7,1,0,0,2,3,1,188.5,0,0,0 +8329,10220,18642,18641,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,6.994250661229065,6.656274169345945,1,0,-9,42,0,5,-90.21902682940795,0,0,0,57,2,5,3,-9,2,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.146250514951516,7.157701050692912,0,0,45.73,57.57,6,1,0,0,2,3,1,188.5,0,0,0 +8330,10221,18643,18644,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.15018089424972,8.09672916667782,1,0,-9,17,0,8,8.159786253354371,0,0,0,53,2,3,3,-9,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.55732458505025,8.645948736261015,0,3,57.16,56.15,7,1,0,0,9,4,1,974,0,0,0 +8330,10221,18644,18643,-9,-9,1,1,0,53,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,18,0,-8,-.154208118153834,0,0,0,61,1,4,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.369023242138232,3,55.96,49.93,7,3,0,0,9,4,1,974,0,0,0 +8331,10222,18645,18646,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,4,8.524984360519143,8.599914578730717,0,1,0,-9,2,0,0,-50.99895695205533,0,1,0,26,1,5,1,-9,-9,2019,1,1,6,2,48,49,15,1,2,1,0,11.82165460994079,11.82165460994079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,11,5,1,392,0,0,0 +8331,10222,18646,18645,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,5,8.693580500220991,8.916800066086488,0,1,0,-9,2,0,0,53.95368814853591,0,1,1,26,2,4,1,-9,-9,2019,1,2,8,0,45,50,15,1,0,1,0,13.97339439298779,13.97339439298779,0,0,0,0,0,0,0,0,0,0,.5315732981675996,0,0,0,51.73,58.82,6,1,0,0,11,5,1,392,0,0,0 +8332,10223,18647,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,3,8.231452488095666,8.157691981430464,0,3,0,0,0,-9,0,-1056.262489137906,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,1,40,15,1,0,-9,0,398.075220301665,398.075220301665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,3,1,0,0,11,4,1,1160,0,0,0 +8332,10224,18648,-9,18647,-9,2,1,1,28,3,0,0,0,2,-9,2,1,0,3,8.45428817066847,8.802145108555996,0,3,0,0,0,-9,0,-971.2189855156553,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,39,32,15,1,0,-9,1,18.76801322394892,18.76801322394892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,4,1,0,0,11,5,1,426,0,0,0 +8333,10225,18649,18650,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,6.89651503345492,6.965304545442493,1,0,-9,39,0,0,-79.46953330733946,0,0,0,76,2,4,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,17.85966685637657,0,0,0,0,1,1,0,.4375421291365005,7.026123337384371,0,0,59.47,20.19,4,1,0,0,2,2,1,911.5,0,0,0 +8333,10225,18650,18649,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,6.407302621873954,6.09282169625849,1,0,-9,39,0,0,-43.78317806513384,0,0,0,76,3,2,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.2057854138957633,6.061640946769479,17.38931223742235,2,54.2,57.49,6,1,0,0,2,2,1,911.5,0,0,0 +8334,10226,18651,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-955.7431209309069,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.53,46.79,3,3,0,0,9,2,0,851,0,0,0 +8334,10227,18652,-9,18651,-9,2,1,0,19,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-884.3566197258957,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,3,1,0,9,1,0,262,0,0,0 +8335,10228,18653,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,2,0,6.508859272623064,6.703070461827045,3,0,0,0,-9,0,-1122.907162968925,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7940946883339953,6.935774561767907,76.3701104559666,3,52.15,15.61,4,1,0,0,10,2,1,309,0,0,0 +8335,10229,18654,-9,18653,-9,2,1,1,34,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1047.526225522734,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.965737825670196,0,43.6236814325226,3,25.03,56.31,3,1,1,0,10,1,1,267,0,0,0 +8335,10230,18655,-9,18653,-9,3,1,1,40,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-855.9185427124448,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4020566546206629,0,2.805684915800567,3,32.19,34.56,2,1,0,0,10,1,1,199,0,0,0 +8335,10231,18656,18657,-9,-9,5,1,0,36,1,0,0,0,2,-9,2,1,0,4,8.069950509412914,8.147062288856734,0,1,0,-9,2,0,-1,-49.44208088971359,0,0,1,37,3,3,1,2,2,2019,1,4,11,0,39,37,15,1,0,1,0,8.893985906320481,8.893985906320481,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,2,1,0,0,10,4,1,1199,0,0,0 +8335,10231,18657,18656,18653,-9,4,1,1,37,1,0,0,0,3,-9,2,1,0,3,7.731231516490278,8.119154452753509,0,1,0,-9,2,0,1,-86.88695565540289,0,0,0,36,2,4,1,3,-9,2019,1,5,15,2,42,41,15,1,2,1,0,8.270702436942248,8.270702436942248,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,2,1,0,0,10,4,1,1199,0,0,0 +8336,10232,18658,18660,-9,-9,2,1,1,36,1,1,1,0,3,-9,2,1,0,4,7.926342166570693,7.605244973868999,0,2,0,-9,4,0,2,31.25006804228585,0,0,0,34,2,3,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,3,0,8.970719268633594,8.970719268633594,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,5,0,0,2,3,1,569.6666666666666,0,0,0 +8336,10232,18659,-9,18660,18658,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1047.013364235691,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,569.6666666666666,0,0,0 +8336,10232,18660,18658,-9,-9,1,1,0,34,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-2,-13.67159410715423,0,0,1,36,3,4,1,2,2,2019,3,2,10,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.501707533742112,0,0,0,52.99,51.28,5,1,0,0,2,3,1,569.6666666666666,0,0,0 +8337,10233,18661,18662,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,3,7.984233595497964,8.147925693211189,0,1,0,-9,19,0,4,38.37181356860037,0,0,0,37,2,1,1,2,-9,2019,1,2,14,3,38,39,15,1,3,1,0,13.93639127937904,13.93639127937904,0,0,0,0,0,0,0,0,0,0,4.10577942731991,0,0,0,38.03,45.9,5,1,0,0,11,4,1,612,0,0,0 +8337,10233,18662,18661,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,1,8.03296045446163,7.587829123809697,0,1,0,-9,19,0,-4,81.37736664956329,0,0,1,41,2,3,1,2,1,2019,1,1,20,8,30,0,15,1,8,1,0,8.629328029054722,8.629328029054722,0,0,0,0,0,0,0,0,0,0,4.173223623111272,0,0,0,36.26,33.72,6,1,0,0,11,4,1,612,0,0,0 +8338,10234,18663,18664,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,5,0,7.782942371516907,7.614519299370997,1,0,-9,51,0,1,32.16384922301393,0,0,0,69,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.795164188691687,8.063376933889645,0,0,58.05,54.52,7,1,0,0,11,3,1,622,0,0,0 +8338,10234,18664,18663,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,5,0,7.224595457572129,7.399627256135252,1,0,-9,51,0,-1,-63.51481933944372,0,0,0,70,3,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.822210397877697,7.368449860998802,0,0,54.1,59.11,7,1,0,0,11,3,1,622,0,0,0 +8339,10235,18665,18666,-9,-9,1,1,0,26,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-10,26.11983472176672,0,1,1,36,2,4,1,2,3,2019,3,2,26,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,65.69,3,1,0,0,10,3,1,1119.75,0,0,0 +8339,10235,18666,18665,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,4,8.630083852167656,8.716156671742528,0,2,0,-9,7,0,10,-11.6828367680875,0,0,0,26,2,4,3,-9,-9,2019,2,1,11,0,45,55,15,1,0,3,0,11.8969972453579,11.8969972453579,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,5,1,0,0,10,3,1,1119.75,0,0,0 +8339,10235,18667,-9,18665,18666,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.4162354717505,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,1119.75,0,0,0 +8339,10235,18668,-9,18665,18666,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.6059762755688,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,1,1119.75,0,0,0 +8340,10236,18669,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,3,0,6.529655154131177,6.492565821416911,3,0,0,0,-9,0,-1042.908273034866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9626442914859858,6.555901399342231,0,0,53,44,6,1,0,0,8,2,1,1677,0,0,0 +8341,10237,18670,-9,18672,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-900.8977334714048,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,2,0,571,0,0,0 +8341,10237,18671,-9,18672,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1080.53042421897,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,6,2,0,571,0,0,0 +8341,10237,18672,-9,-9,-9,1,1,0,35,2,0,2,0,2,0,7,2,0,3,0,6.047359264271941,6.236940515507308,4,0,0,0,-9,0,-1041.430891913806,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.899679326040851,0,0,0,43.61,56.01,5,1,0,1,6,2,0,571,0,0,0 +8342,10238,18673,18674,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,2,0,3.960953655753536,4.132298698443148,1,0,-9,45,0,-4,-151.6501631119945,0,0,0,66,3,3,3,-9,-9,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.94379232598097,4.292552731059946,0,0,35.61,36.69,4,1,0,0,5,2,1,463,0,0,0 +8342,10238,18674,18673,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,6.856139213798835,6.676459864827779,1,0,-9,45,0,4,-47.20998778545709,0,0,0,62,2,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.825890008722722,6.766951656068116,0,0,59.31,49.81,6,1,0,0,5,2,1,463,0,0,0 +8343,10239,18675,18676,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,48,0,-1,0,0,0,0,67,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,11.56164615870103,0,0,0,0,1,1,0,0,0,0,0,41.9,21.8,6,1,0,0,11,1,1,1414,0,0,0 +8343,10239,18676,18675,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,48,0,1,0,0,0,0,66,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.14,46.44,6,1,0,0,11,1,1,1414,0,0,0 +8344,10240,18677,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,1,0,7.02615543552776,7.1973466103575,3,0,0,0,-9,0,-1054.794331889111,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.255690073269782,6.778529375267423,6.605602004188336,3,40.22,30.64,4,1,0,0,1,3,1,307,0,0,0 +8344,10241,18678,-9,18677,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,3,8.165829062268212,8.210341391124746,0,3,0,0,0,-9,0,-1005.346706700997,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,77,37,15,1,0,-9,1,5.34486345294139,5.34486345294139,0,0,0,0,0,0,0,1,1,0,3.62263124888549,0,0,0,47.72,45.9,5,1,0,0,1,4,1,2503,0,0,0 +8345,10242,18679,-9,18681,18682,3,1,1,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.91671011177,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,11,5,1,337,0,0,0 +8345,10242,18680,-9,18681,18682,4,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1037.579670884188,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,11,5,1,337,0,0,0 +8345,10242,18681,18682,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,4,8.582400553563375,8.79629297963012,0,2,0,-9,7,0,0,-41.09984403322554,0,0,0,49,1,5,1,2,1,2019,1,1,11,1,40,41,15,1,1,1,0,15.39116587777492,15.39116587777492,0,0,0,0,0,0,0,0,0,0,1.881200038007243,0,0,0,51.49,57.57,6,1,0,0,11,5,1,337,0,0,0 +8345,10242,18682,18681,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,5,9.33703415182554,9.083922651436362,0,2,0,-9,7,0,0,98.53641421017795,0,0,0,49,1,4,1,2,1,2019,1,2,9,1,45,42,15,1,1,1,0,32.34367332074009,32.34367332074009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,11,5,1,337,0,0,0 +8346,10243,18683,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-945.899572972334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,47,5,3,0,0,8,1,0,1342,0,0,0 +8346,10244,18684,-9,18683,-9,2,1,1,19,2,0,0,0,2,1,3,3,0,2,0,0,0,3,0,0,0,-9,0,-962.1267256787851,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,2.931690103382524,3,55.8,25.77,4,3,1,0,8,1,0,300,0,0,0 +8347,10245,18685,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,5,0,7.009922818036088,6.958770142001352,3,0,0,0,-9,0,-956.1942732265538,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.818819921404458,35.88360640534272,3,40.61,64.02,3,1,0,0,7,2,1,210,0,0,0 +8348,10246,18686,18687,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,3,8.466657371304924,8.303535711523411,0,2,0,-9,19,0,6,53.1315298095811,0,0,0,41,1,3,1,2,2,2019,1,2,17,5,50,38,15,1,5,1,0,8.71432944048602,8.71432944048602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.09,51.57,5,1,0,0,4,5,1,506.5,0,0,0 +8348,10246,18687,18686,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,3,8.688566666884581,8.943589402080944,0,2,0,-9,19,0,-6,-108.5531357422252,0,0,0,47,1,3,1,2,3,2019,1,1,13,1,50,0,15,1,1,1,0,14.81131582996106,14.81131582996106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.3,46.15,5,1,0,0,4,5,1,506.5,0,0,0 +8349,10247,18688,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,4,8.614519531569897,8.474378965055507,0,3,0,0,0,-9,0,-1033.860597648837,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,43,0,15,1,1,-9,0,13.69244927059803,13.69244927059803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,9,5,1,546,0,0,0 +8350,10248,18689,18690,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,47,0,2,-84.66748491524307,0,0,0,66,2,4,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.024246716251282,3,52,36.11,6,1,0,0,7,2,1,592.5,0,0,0 +8350,10248,18690,18689,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,4,2.266758791384105,2.160101570077375,0,1,0,-9,47,0,-2,77.12111193431842,0,0,0,68,2,1,3,3,3,2019,2,1,6,0,16,16,15,1,0,4,0,.0679946708325075,.0679946708325075,0,0,0,0,0,0,0,1,1,0,0,0,3.237281033246163,1,59.53,56.44,7,1,0,0,7,2,1,592.5,0,0,0 +8351,10249,18691,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,2,6.950621437253322,6.730986922807482,0,3,0,0,0,-9,0,-882.1004998965118,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,22,0,15,1,8,-9,0,6.39089395797556,6.39089395797556,0,0,0,0,0,0,0,0,0,0,0,0,0,3,38.43,35.34,3,1,0,0,6,2,1,204,0,0,0 +8352,10250,18692,-9,18694,18696,1,1,1,27,3,0,2,0,1,-9,2,1,0,5,8.061686418745122,7.841166435038002,0,3,0,0,0,-9,0,-981.4401749011502,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,37,15,1,1,-9,1,7.751987086388589,7.751987086388589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,60,6,3,0,1,1,4,0,297,0,0,0 +8352,10251,18693,-9,18694,18696,5,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-930.5318225815847,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,3,0,0,1,2,0,926,0,0,0 +8352,10251,18694,18696,-9,-9,2,1,0,45,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,29,0,-10,0,0,0,0,55,3,3,3,2,3,2019,4,3,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.65,56.13,6,3,0,0,1,2,0,926,0,0,0 +8352,10251,18695,-9,18694,18696,6,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-975.6940921834459,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,5,3,0,0,1,2,0,926,0,0,0 +8352,10251,18696,18694,-9,-9,3,1,1,55,1,0,2,0,3,-9,3,3,0,3,0,0,0,2,0,-9,29,0,10,0,0,0,0,45,2,5,3,-9,-9,2019,4,2,11,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,5,3,1,0,1,2,0,926,0,0,0 +8352,10252,18697,-9,18694,18696,4,1,1,23,2,0,2,0,1,1,2,1,0,4,7.078266193262678,7.114688025418899,0,3,0,0,0,-9,0,-1074.88460042339,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,20,0,15,1,1,-9,1,6.068683651484089,6.068683651484089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,3,0,0,1,2,0,612,0,0,0 +8353,10253,18698,-9,-9,-9,1,1,1,38,3,0,0,0,3,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-928.0498373287048,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,38,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,1,1,838,0,0,0 +8354,10254,18699,18700,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,4,0,-3,-121.8363595548188,0,0,0,68,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.7,28.27,5,1,0,0,7,2,1,1656,0,0,0 +8354,10254,18700,18699,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,5.326195447947098,5.213699943267148,1,0,-9,4,0,3,-130.6513113565617,0,0,0,65,3,2,3,-9,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.255714592095788,0,0,53.85,22.4,6,1,0,0,7,2,1,1656,0,0,0 +8355,10255,18701,18702,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,3,9.561804443523723,9.272831543161448,0,2,0,-9,8,0,2,-29.1179508491489,0,0,0,49,1,5,1,1,2,2019,1,1,12,0,48,46,15,1,0,1,0,36.40193149978414,36.40193149978414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,5,1,0,0,9,5,1,1346.333333333333,0,0,0 +8355,10255,18702,18701,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,5,8.678498547884024,8.717849618423903,0,2,0,-9,8,0,-2,93.97850439366628,0,0,0,51,1,3,1,2,1,2019,1,2,7,0,46,43,15,1,0,1,0,19.01220211098611,19.01220211098611,0,0,0,0,0,0,0,0,0,0,5.767691715413658,0,0,0,60.04,48.05,6,1,0,0,9,5,1,1346.333333333333,0,0,0 +8355,10255,18703,-9,18702,18701,4,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.820417983095,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,1346.333333333333,0,0,0 +8355,10256,18704,-9,18702,18701,3,1,1,18,2,0,1,0,2,-9,2,1,0,3,7.660047666999104,7.708012542922387,0,3,0,0,0,-9,0,-995.2786252948574,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,38,0,15,1,5,-9,1,7.355354574505158,7.355354574505158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,5,1,0,0,9,3,1,460,0,0,0 +8356,10257,18705,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,4,7.298653007339039,7.389662049617209,0,4,0,0,0,-9,0,-944.6178240260901,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,28,22,15,1,3,-9,0,5.811435323001485,5.811435323001485,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,12,2,0,183.5,0,0,0 +8356,10257,18706,-9,18705,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.767098342718,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,2,0,183.5,0,0,0 +8357,10258,18707,18708,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,8.943607961243229,8.633247426616576,1,0,-9,50,0,2,65.59404118104329,0,0,0,73,1,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.161890726724227,0,0,59.07,43.05,6,1,0,0,9,5,1,245.5,0,0,0 +8357,10258,18708,18707,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,50,0,-2,-54.31092529651451,0,0,0,75,1,3,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,.9281819095334012,1.696537220465628,0,0,0,0,1,1,0,6.139007584864059,0,0,0,55.12,31.57,6,1,0,0,9,5,1,245.5,0,0,0 +8358,10259,18709,18712,-9,-9,1,1,1,50,1,0,2,0,2,-9,1,1,0,5,9.754911913101953,9.941910629211385,0,2,0,-9,16,0,6,100.3143030206801,0,0,0,44,2,4,1,3,2,2019,1,2,10,0,25,40,15,1,0,1,0,67.02703764817795,67.02703764817795,0,0,0,0,0,0,0,1,1,0,6.676734712218845,0,0,3,54.1,59.11,7,1,0,0,10,5,0,566.5,0,0,0 +8358,10259,18710,-9,18712,18709,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.7767024527657,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,0,566.5,0,0,0 +8358,10259,18711,-9,18712,18709,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.676204452374,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,5,0,566.5,0,0,0 +8358,10259,18712,18709,-9,-9,2,1,0,44,1,0,2,0,2,-9,1,1,0,4,9.598977701185968,9.757700323901435,0,2,0,-9,16,0,-6,-121.8730789301346,0,0,1,50,2,5,1,1,2,2019,1,1,12,1,25,25,15,1,1,1,0,65.04131084091111,65.04131084091111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,7,1,0,0,10,5,0,566.5,0,0,0 +8359,10260,18713,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1011.895776621864,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.61,28.18,4,1,1,0,11,1,0,546,0,0,0 +8359,10261,18714,-9,18713,-9,2,1,1,21,2,0,0,0,2,-9,1,1,0,4,6.204595612767905,6.227761859094273,0,3,0,0,0,-9,0,-978.9121755174178,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,40,0,15,1,0,-9,1,2.233195064277612,2.233195064277612,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,2,0,151,0,0,0 +8360,10262,18715,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,3,7.938054901203155,8.158885341056232,0,3,0,0,0,-9,0,-875.2330041589959,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,22,9,45,45,15,1,9,-9,0,6.604486394313733,6.604486394313733,0,0,0,0,0,0,0,0,0,0,0,0,6.934601798515728,3,36.01,47.07,3,1,0,1,10,4,0,443,0,0,0 +8361,10263,18716,-9,18720,18718,6,1,0,7,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.270909120453,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,780.4285714285714,0,0,0 +8361,10263,18717,-9,18720,18718,5,1,0,11,2,1,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-993.0143583432443,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,3,0,0,8,2,0,780.4285714285714,0,0,0 +8361,10263,18718,18720,-9,-9,1,1,1,45,1,1,5,0,1,-9,2,1,0,4,5.73626241199311,5.658343327584981,0,2,0,-9,8,0,7,15.13237305923941,0,0,0,38,2,3,3,-9,-9,2019,2,2,9,0,30,30,15,1,1,3,0,1.148867659836697,1.148867659836697,0,0,0,0,0,0,0,1,1,0,1.690316339823581,0,0,0,52,55,6,3,0,0,8,2,0,780.4285714285714,0,0,0 +8361,10263,18719,-9,18720,18718,7,1,1,0,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-967.4662616589728,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,2,0,780.4285714285714,0,0,0 +8361,10263,18720,18718,-9,-9,2,1,0,38,1,1,5,0,2,-9,6,3,0,3,0,0,0,2,0,-9,19,0,-7,-39.73070897674221,0,0,1,45,1,4,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,3,0,0,8,2,0,780.4285714285714,0,0,0 +8361,10263,18721,-9,18720,18718,3,1,0,15,2,1,5,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-944.2699264110953,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,3,0,0,8,2,0,780.4285714285714,0,0,0 +8361,10263,18722,-9,18720,18718,4,1,0,13,2,1,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-959.9018398862847,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,8,2,0,780.4285714285714,0,0,0 +8362,10264,18723,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,3,0,7.951245274760184,8.468828456640582,3,0,0,0,-9,0,-884.2981794380026,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.839566880770831,8.02190950101908,0,0,37.46,36.92,3,1,0,0,4,3,1,201,0,0,0 +8363,10265,18724,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,2,6.708114419111339,7.272142490146021,5.565693601372161,3,0,0,0,-9,0,-922.4070790633092,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,16,0,15,1,5,-9,0,4.203678787159236,4.203678787159236,0,0,0,0,0,0,0,1,1,0,5.565466709052787,0,0,0,40.74,31.93,6,1,0,0,7,2,1,150,0,0,0 +8364,10266,18725,18728,-9,-9,2,1,0,43,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,20,0,-2,123.5698010023963,0,0,1,45,2,4,1,2,2,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.169524243801899,3,57.16,56.15,6,1,0,0,1,3,1,1760.25,0,0,0 +8364,10266,18726,-9,18725,18728,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.15117428214,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,1760.25,0,0,0 +8364,10266,18727,-9,18725,18728,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-912.0296576528453,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,1,3,1,1760.25,0,0,0 +8364,10266,18728,18725,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.537746787837785,8.184513348408032,0,2,0,-9,21,0,2,-8.495790452089766,0,0,0,43,2,4,3,2,2,2019,2,2,14,3,44,46,15,1,3,3,0,11.45672711984262,11.45672711984262,0,0,0,0,0,0,0,1,1,0,3.651869094663935,0,0,0,36.85,61.32,3,1,0,0,1,3,1,1760.25,0,0,0 +8365,10267,18729,18730,-9,-9,2,1,0,88,1,0,0,0,2,-9,4,3,0,2,0,5.587679347887025,5.301756011053143,1,0,-9,10,0,-2,-10.22742449351897,0,0,0,90,1,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.675857861746795,0,0,56.89,33.5,6,1,0,0,11,2,1,1348.5,0,0,0 +8365,10267,18730,18729,-9,-9,1,1,1,90,1,0,0,0,1,-9,4,3,0,2,0,6.006924861290994,5.589855051003088,1,0,-9,10,0,2,-40.13635235622026,0,0,0,88,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.758300494109722,0,0,61.27,41.18,6,1,0,0,11,2,1,1348.5,0,0,0 +8366,10268,18731,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,4,8.047067971015567,8.070337424407228,5.869584454818336,3,0,0,0,-9,0,-991.5152230948936,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,38,38,15,1,0,-9,0,10.12796454896555,10.12796454896555,0,0,0,0,0,0,0,0,0,0,4.654141903663604,5.933565099392585,0,0,58.15,52.91,6,1,0,0,6,4,1,318,0,0,0 +8367,10269,18732,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,6.071670551526239,6.624837217120638,3,0,0,0,-9,0,-961.2047180944476,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,2.9388693590711,0,0,0,1,1,0,0,6.439507301463115,0,0,45.95,23.54,6,1,0,0,4,2,0,524,0,0,0 +8368,10270,18733,-9,-9,-9,1,1,1,52,2,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-965.6858207225254,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,56,5,1,1,0,6,1,0,351,0,0,0 +8369,10271,18734,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,6.686977048479696,6.895976679287644,0,3,0,0,0,-9,0,-872.2845511802483,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,16,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.67,33.45,1,1,0,1,11,2,0,241,0,0,0 +8370,10272,18735,18736,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,8.317570866075004,8.242508559152487,0,1,0,-9,32,0,-6,26.89651555075253,0,0,0,55,2,4,1,2,2,2019,1,1,8,0,36,36,15,1,0,1,0,10.04892833488994,10.04892833488994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,0,328,0,0,0 +8370,10272,18736,18735,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.175548096724556,8.262019223785934,4.860567569463199,1,0,-9,32,0,6,15.86980172441642,0,0,0,49,2,4,1,3,3,2019,1,2,6,0,38,37,15,1,0,1,0,11.91719568264884,11.91719568264884,0,0,0,0,0,0,0,0,0,0,4.960637089416904,5.092968221928687,0,0,54.2,57.49,5,1,0,0,5,5,0,328,0,0,0 +8371,10273,18737,18738,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,4,7.416788462651435,7.711157710191291,0,2,0,-9,5,0,-2,-5.070402350760939,0,0,1,36,1,4,1,2,1,2019,1,2,8,1,28,29,15,1,1,1,0,9.54356443879546,9.54356443879546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,7,1,0,0,10,4,0,490,0,0,0 +8371,10273,18738,18737,-9,-9,2,1,1,36,1,0,1,0,1,-9,2,1,0,4,8.524755277509204,8.809045733268283,0,2,0,-9,5,0,2,-105.6217275063922,0,0,0,34,2,4,1,-9,-9,2019,1,1,10,0,48,58,15,1,0,1,0,12.83913564308404,12.83913564308404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,0,490,0,0,0 +8371,10273,18739,-9,18737,18738,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.6609278629639,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,0,490,0,0,0 +8372,10274,18740,-9,18742,-9,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1073.004521019863,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,0,429.6666666666667,0,0,0 +8372,10274,18741,18742,-9,-9,2,1,1,22,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,1,-9,-1,18.85323706370023,-9,1,0,23,2,2,1,-9,-9,2019,3,1,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,5,1,0,13,2,0,429.6666666666667,0,0,0 +8372,10274,18742,18741,-9,-9,1,1,0,23,1,0,1,0,2,-9,2,1,0,2,6.770129446044422,7.155942984492423,0,2,0,1,1,-9,1,-20.19319197988128,0,1,1,22,2,4,3,-9,-9,2019,2,2,14,2,20,0,15,1,2,3,0,6.689435541103456,6.689435541103456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.29,49.79,5,1,0,0,13,2,0,429.6666666666667,0,0,0 +8373,10275,18743,18744,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,9,0,-4,8.51894016536864,0,0,0,66,1,4,1,3,3,2019,3,1,11,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.14905711500041,3,40.23,34.75,6,1,0,0,1,3,1,352.5,0,0,0 +8373,10275,18744,18743,-9,-9,1,1,1,66,1,0,0,0,1,-9,1,1,0,4,7.153621709931379,7.795141550282194,7.383642211536916,1,0,-9,9,0,4,-72.47900799813709,0,0,0,62,2,2,3,2,2,2019,2,2,6,0,45,39,15,1,0,3,0,3.057433679468183,3.057433679468183,0,0,0,0,0,0,0,1,1,0,3.372289624551904,7.662592605677141,.1901919193512494,3,51.83,57.2,6,1,0,0,1,3,1,352.5,0,0,0 +8373,10276,18745,-9,18743,18744,3,1,0,29,2,0,0,0,2,-9,2,1,0,5,7.671934720647659,8.03526106634904,0,3,0,0,0,-9,0,-1122.936723321576,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,30,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.9018268661551,3,44.85,60.44,6,1,0,0,1,3,1,1185,0,0,0 +8374,10277,18746,18747,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.699944546634462,7.122984765582584,0,1,0,-9,32,0,-3,41.73614924013107,0,0,0,56,2,4,1,2,2,2019,1,2,10,2,18,18,15,1,2,1,0,10.68679889749038,10.68679889749038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,7,3,1,508,0,0,0 +8374,10277,18747,18746,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,7.067684540049541,6.897091153296224,0,1,0,-9,32,0,3,50.38823581672752,0,0,0,53,2,4,1,-9,-9,2019,1,1,9,0,60,40,15,1,0,1,0,2.444222091726603,2.444222091726603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,0,0,7,3,1,508,0,0,0 +8374,10278,18748,-9,18746,18747,3,1,0,21,2,0,0,0,1,1,2,1,0,5,0,0,0,3,0,0,0,-9,0,-962.9048994455842,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,7,1,1,491,0,0,0 +8375,10279,18749,18750,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,2,0,7.331261921226014,7.524695149395078,1,0,-9,61,0,-2,-6.658405131405561,0,0,0,85,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,7.452337887202099,0,0,0,0,1,1,0,0,7.420242788839322,0,0,61.43,30.11,6,1,0,0,12,4,1,1288.5,0,0,0 +8375,10279,18750,18749,-9,-9,1,1,1,85,1,0,0,0,1,-9,4,3,0,3,0,8.003668795843785,7.94251881269069,1,0,-9,61,0,2,107.1292559125304,0,0,0,83,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.387256594433032,7.933311820818905,0,0,58.07,46.29,6,1,0,0,12,4,1,1288.5,0,0,0 +8376,10280,18751,-9,-9,-9,1,1,1,94,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1090.516112300784,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,7.090798469337146,0,5.860656758435661,0,0,44.41760335812658,1,1,0,3.009754004100331,0,0,0,56,44,6,1,0,0,13,1,0,1744,0,0,0 +8377,10281,18752,18753,-9,-9,1,1,0,55,1,0,1,0,2,-9,1,1,0,5,8.29035622366964,7.855824792669201,0,2,0,-9,6,0,-8,28.63872034257759,0,0,0,63,1,4,3,2,1,2019,2,2,10,0,38,34,15,1,0,4,0,8.814308485560201,8.814308485560201,0,0,0,0,0,0,0,0,0,0,1.315127524661421,0,0,0,46.53,61.33,6,1,0,0,12,3,1,800.3333333333334,0,0,0 +8377,10281,18753,18752,-9,-9,2,1,1,63,1,0,1,0,1,-9,4,3,0,4,0,7.575494798924829,7.235818369776156,2,0,-9,6,0,8,-59.25695047027006,0,0,0,55,2,5,1,3,3,2019,3,1,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.167507291956952,7.251227509473744,0,0,58.72,51.29,6,1,0,0,12,3,1,800.3333333333334,0,0,0 +8377,10281,18754,-9,18752,18753,3,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-916.0488444260343,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.6338101268127707,0,0,0,57.06,57.76,6,1,0,0,12,3,1,800.3333333333334,0,0,0 +8378,10282,18755,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.803046289192352,7.5798012238546,0,3,0,0,0,-9,0,-975.8927701469199,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,40,20,15,1,2,-9,0,7.863363912966593,7.863363912966593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.08,61.11,4,1,0,0,4,3,0,1254,0,0,0 +8379,10283,18756,18757,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.721400193235694,7.889652644881123,6.047038752184139,1,0,-9,16,0,10,86.58851618061223,0,0,0,53,2,2,1,2,3,2019,1,1,8,0,45,45,15,1,0,1,0,6.099274427591108,6.099274427591108,0,0,0,0,0,0,0,0,0,0,5.882669040119632,5.421109906250604,0,0,57.9,51.84,5,1,0,0,7,5,1,580.5,0,0,0 +8379,10283,18757,18756,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,8.673515021784938,8.689562386284408,0,1,0,-9,16,0,-10,72.89424357852204,0,0,0,63,2,3,1,2,2,2019,1,2,20,9,37,37,15,1,9,1,0,20.50761218322016,20.50761218322016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.47,19.27,3,1,0,0,7,5,1,580.5,0,0,0 +8380,10284,18758,18759,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,-3,56.23627109840345,0,0,0,69,2,3,3,2,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.209500656795796,0,28.71964409816862,3,58.15,52.91,5,1,0,0,9,3,1,10910.5,0,0,0 +8380,10284,18759,18758,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,8.190274837037858,8.228971449975083,1,0,-9,9,0,3,-43.31094261768379,0,0,0,66,2,4,3,-9,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.153907671432959,10.21867365262455,3,59.46,46.99,5,1,0,0,9,3,1,10910.5,0,0,0 +8381,10285,18760,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,4,0,5.761817866821956,6.419871481400986,3,0,0,0,-9,0,-1113.564327930514,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.032893457467348,0,0,60.61,28.57,1,1,0,0,6,2,0,530,0,0,0 +8382,10286,18761,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,1,7.689423302022402,7.928314811061446,0,3,0,0,0,-9,0,-1190.443518241327,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,22,9,30,37,15,1,9,-9,0,8.774887688390908,8.774887688390908,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.7,27.66,3,4,0,0,8,3,0,432,0,0,0 +8383,10287,18762,18763,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,4,8.86389243277341,8.696117654552294,0,1,0,-9,32,0,-2,0,0,0,0,56,2,4,1,1,1,2019,1,2,8,0,24,24,15,1,0,1,0,28.1692370509056,28.1692370509056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,1,325,0,0,0 +8383,10287,18763,18762,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,8.7346644520258,9.180182175308868,0,1,0,-9,33,0,2,0,0,0,0,54,2,4,1,3,1,2019,1,1,7,0,50,50,15,1,0,1,0,13.31569915693118,13.31569915693118,0,0,0,0,0,0,0,0,0,0,5.114399928513968,0,0,0,57.16,56.15,7,1,0,0,9,5,1,325,0,0,0 +8384,10288,18764,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1030.021264019068,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,7,0,20,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,17.74,47.89,1,1,1,0,12,1,0,475,0,0,0 +8385,10289,18765,-9,18766,18767,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1011.132557987525,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,11,2,0,1685.75,0,0,0 +8385,10289,18766,18767,-9,-9,1,1,0,22,1,2,2,0,2,-9,3,3,0,2,0,0,0,2,0,-9,3,0,0,-131.2773236461793,0,1,1,31,2,2,1,-9,-9,2019,3,2,23,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,4.867956545882338,3,7.77,56.37,1,1,1,0,11,2,0,1685.75,0,0,0 +8385,10289,18767,18766,-9,-9,2,1,1,31,1,2,2,0,2,-9,2,1,0,2,7.053898919761215,7.344976121621437,0,2,0,-9,3,0,9,60.72652843544131,0,0,0,22,2,2,3,-9,-9,2019,2,1,17,6,16,38,15,1,6,3,0,7.597468608791045,7.597468608791045,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.77,47.12,2,1,0,1,11,2,0,1685.75,0,0,0 +8385,10289,18768,-9,18766,18767,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.609568497011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,62,5,1,0,0,11,2,0,1685.75,0,0,0 +8386,10290,18769,-9,18771,18770,2,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-987.6692287806421,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,2,0,0,4,5,1,693,0,0,0 +8386,10290,18770,18771,-9,-9,3,1,1,46,1,0,1,0,3,-9,2,1,0,4,8.516837109493919,8.483802310208048,0,2,0,-9,3,0,3,-93.29573751646329,0,0,0,43,1,3,1,-9,-9,2019,1,1,9,0,40,37,15,1,0,1,0,14.86321253714987,14.86321253714987,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.41,61.57,5,1,0,0,4,5,1,693,0,0,0 +8386,10290,18771,18770,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,3,8.566043014922444,8.494271574953837,0,2,0,-9,3,0,-3,58.2120771369825,0,0,1,46,3,4,1,-9,-9,2019,1,3,26,10,48,32,15,1,10,1,0,11.94252011430689,11.94252011430689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.96,66.63,3,2,0,0,4,5,1,693,0,0,0 +8387,10291,18772,18775,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,3,7.063167910500512,7.080218807788204,0,2,0,-9,8,0,-1,62.74479836257918,0,0,0,47,2,4,1,2,3,2019,1,1,10,0,30,30,15,1,0,1,0,4.539703662105163,4.539703662105163,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,5,1,0,0,12,4,1,984.75,0,0,0 +8387,10291,18773,-9,18772,18775,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1131.174235380507,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,984.75,0,0,0 +8387,10291,18774,-9,18772,18775,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.8134860006967,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,4,1,984.75,0,0,0 +8387,10291,18775,18772,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.254919540070956,8.516835408454162,0,2,0,-9,8,0,1,-11.18518454854227,0,0,0,46,2,3,1,2,2,2019,1,2,2,0,42,40,15,1,0,1,0,15.25521719261447,15.25521719261447,0,0,0,0,0,0,0,1,1,0,6.778067571052053,0,0,0,54.79,55.86,6,1,0,0,12,4,1,984.75,0,0,0 +8388,10292,18776,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,2,8.165685822657277,8.621440056798521,7.425178290444427,3,0,0,0,-9,0,-1049.645479260259,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,25,25,15,1,0,-9,0,15.36409226526813,15.36409226526813,0,0,0,0,0,0,0,1,1,0,5.80625238807546,7.596685825241303,0,3,58.57,35.72,6,1,0,0,12,5,1,4336,0,0,0 +8389,10293,18777,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,2,8.373425346037751,8.458757008979662,0,3,0,0,0,-9,0,-988.4270209284024,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,29,12,65,0,15,1,12,-9,0,7.918807851501568,7.918807851501568,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.82,51.09,3,3,0,0,8,5,0,373,0,0,0 +8390,10294,18778,18779,-9,-9,2,1,0,64,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,35,0,2,28.08738329628586,0,0,0,62,1,4,3,3,2,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.682457834041344,0,0,3,35.03,51.4,5,3,0,0,9,5,1,2386,0,0,0 +8390,10294,18779,18778,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,4,0,9.576921486218305,9.124714288515529,1,0,-9,36,0,-2,25.91052853141196,0,0,0,64,1,4,3,2,2,2019,4,2,12,2,0,0,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,10.21711476009002,9.353316345461826,4.93112672640568,3,49.41,58.28,6,1,0,0,9,5,1,2386,0,0,0 +8391,10295,18780,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,5,0,7.911974078829399,8.120591086570158,3,0,0,0,-9,0,-990.0803482878674,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.32405178008902,8.129970190836318,.2749621818945076,3,57.06,57.76,6,1,0,0,10,3,1,1491,0,0,0 +8392,10296,18781,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,7.255089518072895,7.302060887376547,3,0,0,0,-9,0,-944.1015543352213,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.209176082295018,7.334383521039207,0,0,63.66,46.31,7,1,0,0,12,3,1,644,0,0,0 +8393,10297,18782,18783,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,8,0,1,-43.74918979379874,0,0,0,57,2,3,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.5261501516822092,0,13.39733181042373,3,53.54,49.68,5,1,0,0,11,5,1,668,0,0,0 +8393,10297,18783,18782,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.824116284695732,9.354652293117619,0,1,0,-9,8,0,-1,-79.84705066646772,0,0,0,58,2,3,3,2,2,2019,2,2,8,2,48,48,15,1,2,3,0,22.34639649627645,22.34639649627645,0,0,0,0,0,0,0,0,0,0,2.124210393786556,0,5.499737689072093,3,52,54.51,5,1,0,0,11,5,1,668,0,0,0 +8393,10298,18784,-9,18782,18783,3,1,1,32,2,0,0,0,2,-9,2,1,0,4,7.522879959502252,7.214665385174603,0,3,0,0,0,-9,0,-992.5802624989726,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,3,0,15,1,1,-9,1,71.29153879304393,71.29153879304393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.84,58.37,5,1,0,0,11,3,1,285,0,0,0 +8394,10299,18785,18786,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,3,9.150620483599106,9.59162119258788,0,2,0,-9,8,0,-2,20.14651453440992,0,0,0,51,2,2,1,2,-9,2019,1,1,8,0,60,55,15,1,0,1,0,20.90947250179122,20.90947250179122,0,0,0,0,0,0,0,1,1,0,7.038974497575452,0,15.75710105908315,3,46.86,55.66,6,4,0,0,8,5,1,647.5,0,0,0 +8394,10299,18786,18785,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,2,8.61662973503439,8.721735597987042,0,2,0,-9,31,0,2,14.90968916566046,0,0,0,49,1,3,1,3,3,2019,1,2,16,5,36,36,15,1,5,1,0,19.01463570285482,19.01463570285482,0,0,0,0,0,0,0,1,1,0,7.663627515957094,0,.3789098762524625,3,43.85,31.58,5,4,0,0,8,5,1,647.5,0,0,0 +8394,10300,18787,-9,18785,18786,3,1,0,24,2,0,1,0,1,-9,2,1,0,1,7.634490063185998,7.424224676851373,0,3,0,0,0,-9,0,-938.0736956776171,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,33,11,20,32,15,1,11,-9,1,10.85628974786644,10.85628974786644,0,0,0,0,0,0,0,1,1,0,0,0,4.813399318457453,3,13.66,37.26,2,4,0,0,8,3,1,886,0,0,0 +8394,10301,18788,-9,18785,18786,5,1,0,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-911.9445835507221,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.003580076650643,0,4.393241903988597,3,53.24,50.01,2,4,0,0,8,5,1,765,0,0,0 +8395,10302,18789,-9,-9,-9,1,1,0,26,2,0,0,0,1,1,2,1,0,4,8.006433294647694,7.860531275181057,0,3,0,0,0,-9,0,-988.535956581527,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,39,0,15,1,0,-9,0,13.09507455677661,13.09507455677661,0,0,0,0,0,0,0,0,0,0,.5983564313221968,0,0,0,54.2,57.49,6,3,0,0,1,4,0,2661,0,0,0 +8396,10303,18790,18791,-9,-9,2,1,1,61,1,0,0,0,2,-9,1,1,0,4,8.087105812962255,7.929731574792939,0,1,0,-9,40,0,3,-94.48665919602647,0,0,0,58,2,4,1,3,2,2019,1,1,7,0,40,40,15,1,0,1,0,9.846264267080402,9.846264267080402,0,0,0,0,0,0,0,0,0,0,.6484608059761607,0,13.89490958318135,3,57.16,56.15,6,1,0,0,5,4,0,464.5,0,0,0 +8396,10303,18791,18790,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.096794757119755,7.17585374784351,0,1,0,-9,40,0,-3,27.8893972803464,0,0,0,61,2,4,1,3,2,2019,1,2,6,0,10,3,15,1,0,1,0,13.24191921527834,13.24191921527834,0,0,0,0,0,0,0,0,0,0,4.645472332988019,0,1.824180953460884,3,54.2,57.49,6,1,0,0,5,4,0,464.5,0,0,0 +8396,10304,18792,-9,18791,18790,3,1,1,22,2,0,0,0,3,-9,2,1,0,2,7.689837514973433,8.120087436193439,0,3,0,0,0,-9,0,-1077.836480563406,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,40,15,1,1,-9,1,8.633593250116354,8.633593250116354,0,0,0,0,0,0,0,0,0,0,.3944683722859816,0,0,0,41.52,54.22,4,1,0,0,5,3,0,394,0,0,0 +8396,10305,18793,-9,18791,18790,4,1,0,20,2,0,0,0,2,-9,11,3,0,4,6.532553818005352,6.753035481672867,0,3,0,0,0,-9,0,-1021.825826710571,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7657396898678627,0,0,0,54.2,57.49,6,1,0,0,5,2,0,68,0,0,0 +8397,10306,18794,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1131.09314729838,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.93,38.49,5,1,0,0,4,1,0,407,0,0,0 +8398,10307,18795,18796,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,7.447271382992026,7.426740092835059,1,0,-9,45,0,5,86.24341648079073,0,0,0,65,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.790320043250137,7.809479421068978,0,0,54.96,53.17,6,1,0,0,12,3,1,215.5,0,0,0 +8398,10307,18796,18795,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,4,0,6.450887893281029,6.465722282294696,1,0,-9,45,0,-5,126.4671276253356,0,0,0,70,1,3,3,2,1,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.572540937950193,0,0,57.61,43.58,6,1,0,0,12,3,1,215.5,0,0,0 +8399,10308,18797,18798,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,8.088072776836828,8.043534382794835,1,0,-9,7,0,2,19.78528647052685,0,0,0,68,1,5,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.230820421460237,8.544762174239786,0,0,55.09,55.87,6,1,0,0,9,3,1,941.5,0,0,0 +8399,10308,18798,18797,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,7,0,-2,-43.29813336496561,0,0,0,70,1,5,3,2,1,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.343444500711253,0,0,0,53.26,55.31,6,1,0,0,9,3,1,941.5,0,0,0 +8400,10309,18799,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,6.674493544050974,6.687546775747178,3,0,0,0,-9,0,-1054.519427913056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.792740857570751,7.342318335485034,0,0,52,45,6,1,0,0,11,2,1,530,0,0,0 +8401,10310,18800,-9,18802,18801,2,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.189218154257,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,640.8,0,0,0 +8401,10310,18801,18802,-9,-9,4,1,1,24,1,1,3,0,2,-9,2,1,0,4,7.92800439345843,7.821522501025039,0,2,0,-9,2,0,-12,-16.20164098792475,-9,1,0,36,2,1,3,-9,-9,2019,2,1,10,0,24,0,15,1,1,3,0,9.589514150708768,9.589514150708768,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,5,0,0,4,2,0,640.8,0,0,0 +8401,10310,18802,18801,-9,-9,1,1,0,36,1,1,3,0,2,-9,6,3,0,1,0,5.09693100573,5.346847366963537,2,0,-9,2,0,12,-24.93569580182961,0,0,1,24,2,4,1,2,3,2019,3,4,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.18423361776017,0,0,0,29.04,37.08,3,1,0,1,4,2,0,640.8,0,0,0 +8401,10310,18803,-9,18802,18801,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.7899273730123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,2,0,640.8,0,0,0 +8401,10310,18804,-9,18802,18801,3,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-853.5705514965337,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,640.8,0,0,0 +8402,10311,18805,-9,18806,18808,3,1,1,17,2,0,2,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-963.0918539511102,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,4,1,1,1,9,3,1,1245.5,0,0,0 +8402,10311,18806,18808,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,8.503693388305519,8.404135892466321,0,2,0,-9,24,0,-6,-117.6729882240792,0,0,0,52,2,4,1,2,2,2019,1,2,8,0,42,40,15,1,0,1,0,13.67212855676873,13.67212855676873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,4,1,0,0,9,3,1,1245.5,0,0,0 +8402,10311,18807,-9,18806,18808,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-825.8492928237949,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,1,1245.5,0,0,0 +8402,10311,18808,18806,-9,-9,2,1,1,52,1,0,2,0,2,-9,1,1,0,4,5.967725818244131,6.043904532644068,0,2,0,-9,24,0,6,-178.0572744039554,0,0,0,46,2,4,1,-9,-9,2019,1,1,16,4,45,45,15,1,4,1,0,1.0975728564338,1.0975728564338,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,4,1,0,0,9,3,1,1245.5,0,0,0 +8403,10312,18809,18810,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,5,9.633820292750597,9.754544784323246,6.946875152723741,1,0,-9,33,0,0,-14.35382579664141,0,0,0,55,2,3,1,2,2,2019,1,1,9,0,65,50,15,1,0,1,0,36.84215904277717,36.84215904277717,0,0,0,0,0,0,0,0,0,0,7.08708783695836,7.094773419367576,0,0,57.06,57.76,6,1,0,0,7,5,1,898.5,0,0,0 +8403,10312,18810,18809,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.677532991160188,8.773876519654316,0,1,0,-9,34,0,0,-5.953596363482076,0,0,0,55,2,5,1,2,2,2019,1,2,8,0,39,39,15,1,0,1,0,18.04507000845673,18.04507000845673,0,0,0,0,0,0,0,0,0,0,8.39835612662861,0,0,0,54.37,54.8,6,1,0,0,7,5,1,898.5,0,0,0 +8404,10313,18811,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,5.757854546586413,5.544921025929634,3,0,0,0,-9,0,-1114.480282582214,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7016485109618255,5.619723299988162,0,0,58.08,30.23,4,1,0,0,6,2,1,2917,0,0,0 +8405,10314,18812,18813,-9,-9,1,1,0,56,1,0,0,0,1,-9,4,3,0,4,5.491574527925175,7.164945731054906,6.985659501332861,1,0,-9,31,0,-1,50.67749947694596,0,0,0,57,1,4,1,2,3,2019,3,2,12,1,6,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.615277391593734,7.204662786592399,51.24023516068085,3,54.74,51.69,6,1,0,0,2,5,1,424.5,0,0,0 +8405,10314,18813,18812,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,4,9.042125459067043,9.338093857987484,7.795742493930229,1,0,-9,31,0,1,21.40431360087222,0,0,0,56,1,4,3,2,3,2019,2,1,6,0,51,43,15,1,0,4,0,19.51975514502226,19.51975514502226,0,0,0,0,0,0,0,1,1,0,4.995407401905516,7.74953301073573,1.674519305665343,3,57.16,56.15,6,1,0,0,2,5,1,424.5,0,0,0 +8405,10315,18814,-9,18812,18813,3,1,1,24,2,0,0,0,2,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-999.0952212796901,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.78,54.79,6,1,0,0,2,1,1,327,0,0,0 +8405,10316,18815,-9,18812,18813,4,1,0,20,2,0,0,0,2,1,2,1,0,3,7.112111501135324,7.445506598963023,0,3,0,0,0,-9,0,-1025.597839408835,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,20,0,15,1,0,-9,1,7.153583873844324,7.153583873844324,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.8,47.83,6,1,0,0,2,2,1,1290,0,0,0 +8406,10317,18816,18819,-9,-9,2,1,1,45,1,0,3,0,2,-9,1,1,0,4,9.685280605009577,9.561611235424186,0,2,0,-9,25,0,4,85.63797078269204,0,0,0,41,1,3,1,-9,-9,2019,1,1,11,0,50,50,15,1,0,1,0,40.60011188530524,40.60011188530524,0,0,0,0,0,0,0,1,1,0,0,0,4.1978748013649,3,54.2,57.49,6,1,0,0,10,5,1,434.8,0,0,0 +8406,10317,18817,-9,18819,18816,4,1,0,16,2,0,3,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-894.7443686626576,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,10,5,1,434.8,0,0,0 +8406,10317,18818,-9,18819,18816,5,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.939988875478,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,5,1,434.8,0,0,0 +8406,10317,18819,18816,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,3,8.360685071377603,8.098162630397539,0,2,0,-9,25,0,-4,93.77210581670408,0,0,1,45,2,4,1,3,2,2019,1,2,12,1,26,28,15,1,1,1,0,15.34528493977857,15.34528493977857,0,0,0,0,0,0,0,1,1,0,8.576911381637203,0,5.091121216106482,3,44.98,42.7,6,1,0,0,10,5,1,434.8,0,0,0 +8406,10317,18820,-9,18819,18816,3,1,1,17,2,0,3,1,2,0,7,2,0,4,8.042387816600529,7.909484488655978,0,2,0,0,0,-9,0,-984.5767822903063,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,10,5,1,434.8,0,0,0 +8407,10318,18821,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1005.002387936522,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.639114090410436,0,0,0,57.16,56.15,6,1,0,0,12,1,1,79,0,0,0 +8408,10319,18822,18823,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,4,0,5.079444755868638,5.175274099998671,1,0,-9,63,0,-3,20.67109933725189,0,0,0,83,1,3,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.087189238228577,4.966715656603764,0,0,54.79,55.86,6,1,0,0,7,2,1,634.5,0,0,0 +8408,10319,18823,18822,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,3,0,7.506770327833734,7.610886889437987,1,0,-9,63,0,3,-47.40908898011789,0,0,0,80,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.673246228315163,7.240251991032671,0,0,55.96,49.93,6,1,0,0,7,2,1,634.5,0,0,0 +8409,10320,18824,18825,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,4,8.331302579499212,8.895381691635542,7.509252994352146,2,0,-9,9,0,8,-74.17435566023494,0,0,0,51,2,3,1,1,1,2019,1,1,9,0,45,60,15,1,0,1,0,17.75448551608044,17.75448551608044,0,0,0,0,0,0,0,1,1,0,0,7.902448088884817,0,0,55.19,54.26,7,1,0,0,13,5,1,702.5,0,0,0 +8409,10320,18825,18824,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,3,8.188692905385908,8.619184209176955,5.66283234781111,2,0,-9,9,0,-8,-119.6766512044459,0,0,0,59,2,4,1,3,3,2019,1,2,12,0,48,46,15,1,0,1,0,12.02291075547691,12.02291075547691,0,0,0,0,0,0,0,1,1,0,0,5.890427005123228,124.5392241621715,3,44.23,47.17,6,1,0,0,13,5,1,702.5,0,0,0 +8409,10321,18826,-9,18825,18824,3,1,0,24,2,0,1,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-955.348445785217,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,15,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,1,0,13,1,1,431,0,0,0 +8410,10322,18827,18828,-9,-9,2,1,0,67,1,0,0,0,3,-9,1,1,0,4,9.318375827144804,9.510161374181974,5.648142012739981,1,0,-9,49,0,1,143.4584782972133,0,0,0,66,3,3,3,3,2,2019,2,1,9,1,25,20,15,1,1,4,0,44.12873904439196,44.12873904439196,0,0,0,0,0,0,0,1,1,0,6.392635300662254,6.103528699209713,28.81260422963624,3,49.27,56.95,6,1,0,0,2,5,1,867,0,0,0 +8410,10322,18828,18827,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,6.865679201909532,6.987400038153788,1,0,-9,49,0,-1,-34.39200246340665,0,0,0,67,3,4,1,3,-9,2019,3,2,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.924270708636045,6.928378022207339,0,0,52,48,5,1,0,0,2,5,1,867,0,0,0 +8411,10323,18829,-9,18830,18832,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.700864430511,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,4,1,727.75,0,0,0 +8411,10323,18830,18832,-9,-9,2,1,0,39,1,1,2,0,1,-9,97,3,0,5,0,0,0,2,0,-9,9,0,-3,-30.56716416302457,0,0,1,42,1,4,1,1,2,2019,3,1,12,3,0,40,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.323153506874822,0,0,0,54.69,57.47,6,1,0,0,8,4,1,727.75,0,0,0 +8411,10323,18831,-9,18830,18832,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.107459190091,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,4,1,727.75,0,0,0 +8411,10323,18832,18830,-9,-9,1,1,1,42,1,1,2,0,1,-9,2,1,0,4,8.979634853776989,8.726378680962997,0,2,0,-9,9,0,3,151.0353575263182,0,0,0,39,1,5,3,1,1,2019,2,2,9,0,37,45,15,1,1,3,0,25.0440363894299,25.0440363894299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,5,1,0,0,8,4,1,727.75,0,0,0 +8412,10324,18833,18834,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,6.610857570077634,6.749016215694247,1,0,-9,6,0,-1,141.2286594747739,0,0,0,63,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.460235021398437,7.066063995070444,0,0,57.73,54.53,6,1,0,0,13,2,1,2317,0,0,0 +8412,10324,18834,18833,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,6.652787440135158,6.49977108917113,4.5861677389697,1,0,-9,6,0,1,-9.301385872809714,0,0,0,62,2,4,3,2,2,2019,4,2,9,0,7,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.11427156961425,4.965852620819009,0,0,52.23,55.6,6,1,0,0,13,2,1,2317,0,0,0 +8413,10325,18835,-9,18836,18837,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.8155721162353,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,557,0,0,0 +8413,10325,18836,18837,-9,-9,2,1,0,25,1,0,1,0,2,-9,2,1,0,1,5.312361279740797,5.700055406387091,0,2,0,-9,8,0,-3,-76.71798660510115,0,1,1,28,2,4,1,-9,-9,2019,1,1,21,8,8,20,15,1,8,1,0,3.259712681649923,3.259712681649923,0,0,0,0,0,0,0,1,1,0,.9537172439709473,0,0,0,20.49,34.18,1,1,0,0,10,3,1,557,0,0,0 +8413,10325,18837,18836,-9,-9,1,1,1,28,1,0,1,0,2,-9,2,1,0,4,8.337518620548552,8.433030988292883,0,2,0,-9,8,0,3,43.12137646070358,0,1,0,25,2,1,1,-9,-9,2019,1,2,16,5,40,40,15,1,5,1,0,11.52410416654725,11.52410416654725,0,0,0,0,0,0,0,1,1,0,1.360818622184735,0,0,0,46.92,60.71,4,1,0,0,10,3,1,557,0,0,0 +8414,10326,18838,18840,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.00444524287107,8.015394884705884,0,2,0,-9,14,0,-4,68.79549307949303,0,0,1,40,2,3,1,2,2,2019,1,1,11,0,22,38,15,1,0,1,0,25.48674563266921,25.48674563266921,0,0,0,0,0,0,0,1,1,0,3.964917703857149,0,0,0,43.48,60.97,6,1,0,1,4,4,1,482,0,0,0 +8414,10326,18839,-9,18838,18840,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.786578445133,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,482,0,0,0 +8414,10326,18840,18838,-9,-9,1,1,1,40,1,1,2,0,2,-9,2,1,0,3,8.438018886616119,8.658284688304624,0,2,0,-9,14,0,4,17.26759850786722,0,0,0,36,1,4,1,2,2,2019,1,2,12,1,48,44,15,1,1,1,0,14.19431875832982,14.19431875832982,0,0,0,0,0,0,0,1,1,0,3.775220683851511,0,0,0,49.04,55.86,5,1,0,1,4,4,1,482,0,0,0 +8414,10326,18841,-9,18838,18840,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.0861946321406,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,482,0,0,0 +8415,10327,18842,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,8.52268808221911,8.525630045670441,0,3,0,0,0,-9,0,-1118.752178786485,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,22,37,15,1,0,-9,0,28.3510071503424,28.3510071503424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,6,1,0,0,10,5,0,289,0,0,0 +8416,10328,18843,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1025.397518116461,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,.8377186760473527,0,0,1,1,0,0,0,0,0,44.55,54.01,6,1,0,0,7,1,1,926,0,0,0 +8417,10329,18844,18845,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-6,27.93130151872236,0,0,0,68,3,1,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.5513634967693,1,53.05,39.31,6,1,0,0,11,2,0,1118,0,0,0 +8417,10329,18845,18844,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,1,0,6.861700690118236,6.544263249048258,1,0,-9,8,0,6,33.20365128719239,0,0,0,62,3,3,3,3,3,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,1,0,88.00117494131808,15.75622614403535,11.68260104347787,0,0,1,1,0,0,6.156726907269592,0,0,39.8,18.56,7,1,0,0,11,2,0,1118,0,0,0 +8418,10330,18846,18847,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,7.251119968091151,6.957672057876493,1,0,-9,43,0,-4,91.71073447681671,0,0,0,66,1,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.376317565671174,7.426666484318971,0,0,54.2,57.49,6,1,0,0,10,5,1,1057,0,0,0 +8418,10330,18847,18846,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,8.806112122977252,8.83923790472768,1,0,-9,43,0,4,65.67156729279644,0,0,0,62,1,4,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.972840488063539,8.528052859145816,0,0,58.33,47.36,6,1,0,0,10,5,1,1057,0,0,0 +8419,10331,18848,-9,-9,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,-9,0,-9,0,-1132.94680111581,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.74,44.43,6,1,0,0,7,1,1,410,0,0,0 +8420,10332,18849,18850,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,5.261260688043412,5.812630871512812,1,0,-9,50,0,4,-12.26285317945203,0,0,0,68,3,1,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.364490692363116,5.323952093030232,77.22267244825589,1,45.98,56.3,5,1,0,0,4,2,1,670.5,0,0,0 +8420,10332,18850,18849,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,0,5.252531570417019,5.037536922395406,1,0,-9,50,0,-4,47.69485325166478,0,0,0,72,3,3,3,3,2,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,78.59996718018091,0,0,0,0,1,1,0,5.036464093737213,5.335251402790532,0,0,52.26,21.19,6,1,0,0,4,2,1,670.5,0,0,0 +8421,10333,18851,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,4,8.056259099645565,7.812616485577426,0,3,0,0,0,-9,0,-1054.857774706946,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,51,50,15,1,2,-9,0,6.606441797281703,6.606441797281703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,58.99,5,1,0,0,12,4,1,474,0,0,0 +8422,10334,18852,18853,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,3,8.946479696892638,9.043139277872333,0,1,0,-9,32,0,2,59.8121347394011,0,0,0,58,2,4,1,3,2,2019,1,2,12,0,70,80,15,1,0,1,0,13.16939130418941,13.16939130418941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.27,40.5,6,1,0,0,4,5,1,444.5,0,0,0 +8422,10334,18853,18852,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.156363684235938,8.188929026961887,4.134547053970238,1,0,-9,37,0,-2,-217.7182979977902,0,0,0,60,2,3,1,2,1,2019,1,1,11,0,43,83,15,1,0,1,0,8.927208967359739,8.927208967359739,0,0,0,0,0,0,0,0,0,0,3.640255640917538,4.227274915935416,0,0,55.19,54.26,5,1,0,0,4,5,1,444.5,0,0,0 +8423,10335,18854,18855,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.553233731061166,8.364390573211415,0,1,0,-9,5,0,4,-34.06688710380428,0,0,0,47,2,4,1,2,2,2019,1,2,7,0,38,37,15,1,0,1,0,13.43881646424049,13.43881646424049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.19,34.57,6,1,0,0,12,5,1,1141.5,0,0,0 +8423,10335,18855,18854,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.621196621900911,8.814237744877881,0,1,0,-9,5,0,-4,-68.09065996948465,0,0,0,51,2,4,1,2,3,2019,1,1,6,1,44,37,15,1,1,1,0,14.09907502404699,14.09907502404699,0,0,0,0,0,0,0,0,0,0,0,0,2.641015723713206,3,49.78,51.49,6,1,0,0,12,5,1,1141.5,0,0,0 +8423,10336,18856,-9,18855,18854,3,1,0,23,2,0,0,0,1,-9,2,1,0,2,8.110411982805156,8.068078451832415,0,3,0,0,0,-9,0,-994.2498014899302,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,38,51,15,1,1,-9,1,9.808038100519719,9.808038100519719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,42.95,6,1,0,0,12,4,1,1338,0,0,0 +8423,10337,18857,-9,18855,18854,4,1,1,19,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1068.03599144716,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,12,1,1,619,0,0,0 +8424,10338,18858,-9,18860,18861,5,1,1,16,2,0,1,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1019.819281554453,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.68,53.73,6,1,0,0,2,5,0,687.5,0,0,0 +8424,10338,18859,-9,18860,18861,4,1,0,17,2,0,1,1,2,0,7,2,0,3,6.371663593978216,6.439527023802586,0,2,0,0,0,-9,0,-854.7424111664848,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,12,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.13,59.37,6,1,0,0,2,5,0,687.5,0,0,0 +8424,10338,18860,18861,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.992136180872612,7.906082658357692,0,2,0,-9,10,0,-3,-125.9701588134381,0,0,0,48,2,3,1,3,3,2019,1,1,10,0,38,38,15,1,0,1,0,8.205205797843352,8.205205797843352,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.13,53.82,6,1,0,0,2,5,0,687.5,0,0,0 +8424,10338,18861,18860,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,3,9.196106978916648,9.184650296079365,0,2,0,-9,10,0,3,-113.1813857418339,0,0,0,45,2,4,1,2,3,2019,1,2,7,0,37,40,15,1,0,1,0,35.8041957308632,35.8041957308632,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,50.31,5,1,0,0,2,5,0,687.5,0,0,0 +8425,10339,18862,-9,-9,18864,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,8.622155957161116,8.77498681708364,0,3,0,0,0,-9,0,-1102.180275938957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,5,38,38,15,1,5,-9,1,17.11242927407761,17.11242927407761,0,0,0,0,0,0,0,1,1,0,0,0,78.07184774738705,3,51.94,42.17,6,1,0,0,1,5,1,1271,0,0,0 +8425,10340,18863,-9,18862,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.866699031588486,7.70393397954812,0,3,0,0,0,-9,0,-1091.606811317753,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,38,16,15,1,2,-9,1,7.698577762475123,7.698577762475123,0,0,0,0,0,0,0,1,1,0,2.767983124055981,0,0,3,47,57,5,1,0,0,1,3,1,142,0,0,0 +8425,10341,18864,-9,-9,-9,3,1,1,80,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1015.882043999092,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.841987823335091,0,0,0,55,45,6,5,0,0,1,1,1,1628,0,0,0 +8426,10342,18865,-9,-9,-9,1,1,1,73,2,0,0,0,3,-9,4,3,0,3,0,6.651160032242391,6.751109904463208,3,0,0,0,-9,0,-906.9121748939586,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.667415514414832,6.934057499079552,0,0,61.49,37.78,6,1,0,0,13,2,1,1439,0,0,0 +8427,10343,18866,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,2,0,5.955231789982638,6.328975483449166,3,0,0,0,-9,0,-965.7362476065213,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,23.64034009332799,0,0,0,1,1,0,3.883491750122845,6.195339362354618,0,0,56.34,19.97,6,1,0,0,13,2,1,1832,0,0,0 +8428,10344,18867,-9,-9,-9,1,1,0,71,2,0,0,0,1,-9,4,3,0,2,0,3.082273953316276,2.790093885814452,3,0,0,0,-9,0,-983.951015929355,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.794945111824148,2.400065655726349,3,44.34,44.89,6,1,0,0,8,2,0,545,0,0,0 +8429,10345,18868,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,2,1,0,3,7.883780798370363,7.848131693040505,0,3,0,0,0,-9,0,-1058.991601335621,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,29,27,15,1,0,-9,0,9.126715591343634,9.126715591343634,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.48,39.16,6,1,0,0,9,3,1,381,0,0,0 +8430,10346,18869,18870,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.023054576625841,8.469707115373735,0,1,0,-9,6,0,-1,-6.790138665261947,0,1,1,29,1,5,1,-9,-9,2019,1,1,6,0,43,47,15,1,0,1,0,10.46036596114617,10.46036596114617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,7,1,0,0,1,5,1,2996.5,0,0,0 +8430,10346,18870,18869,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,5,8.258296165584849,8.012065982689059,0,1,0,-9,6,0,1,94.15566069579674,0,1,0,28,1,4,1,-9,-9,2019,1,2,7,0,46,45,15,1,0,1,0,10.73327926287742,10.73327926287742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,41.34,6,1,0,0,1,5,1,2996.5,0,0,0 +8431,10347,18871,-9,-9,-9,1,1,0,87,2,0,0,0,2,-9,4,3,0,3,0,7.572484152526785,7.83228413069097,3,0,0,0,-9,0,-1062.603149371127,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.65333960895703,7.881730468389033,0,0,53,44,6,1,0,0,1,3,1,2198,0,0,0 +8432,10348,18872,-9,18875,-9,1,1,1,44,3,0,2,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-991.4725325375279,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,39,40,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.53,47.33,4,1,0,0,9,1,1,858,0,0,0 +8432,10348,18873,-9,-9,18872,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-977.1135141798135,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,9,1,1,858,0,0,0 +8432,10348,18874,-9,-9,18872,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-1020.336012340233,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,1,1,858,0,0,0 +8432,10349,18875,18876,-9,-9,4,1,0,66,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,1,-9,-2,56.80340753441994,-9,0,0,68,3,1,3,-9,-9,2019,4,5,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,44.4,7,1,0,0,9,2,1,805,0,0,0 +8432,10349,18876,18875,-9,-9,5,1,1,68,1,0,2,0,3,-9,4,3,0,1,0,7.051495984351224,7.010191749931862,2,0,-9,1,-9,2,91.42825497734941,-9,0,0,66,3,3,3,-9,-9,2019,4,4,12,0,0,0,15,4,0,4,0,0,0,1,0,.4440071482824806,0,0,0,0,1,1,0,7.20162344098097,7.189135066554313,0,0,32.51,25.74,5,1,0,0,9,2,1,805,0,0,0 +8433,10350,18877,18879,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,5,7.332263529690541,7.357923246274208,0,2,0,-9,16,0,4,-107.1665585770402,0,0,0,37,1,5,1,3,2,2019,1,2,9,2,38,38,15,1,2,1,0,4.556669713981965,4.556669713981965,0,0,0,0,0,0,0,1,1,0,6.178040686420037,0,0,0,41.51,52.76,6,3,0,0,8,4,1,866,0,0,0 +8433,10350,18878,-9,18879,18877,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-874.2560409295758,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,3,0,0,8,4,1,866,0,0,0 +8433,10350,18879,18877,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,5,8.97419599073668,9.189527452130392,0,2,0,-9,16,0,-4,169.3194852187222,0,0,1,41,1,5,1,2,1,2019,1,1,7,2,40,30,15,1,2,1,0,21.19018115150052,21.19018115150052,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,58.09,7,3,0,0,8,4,1,866,0,0,0 +8433,10350,18880,-9,18879,18877,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.4896830567734,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,866,0,0,0 +8434,10351,18881,-9,18883,18882,4,1,0,17,2,0,0,0,2,-9,2,3,0,4,6.580038098609838,6.613007257062859,0,1,0,0,0,-9,0,-1049.656912592068,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,12,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,6,5,1,778.6666666666666,0,0,0 +8434,10351,18882,18883,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.423334378673221,8.836271278176691,7.537591148339314,1,0,-9,25,0,6,136.101153805662,0,0,0,47,2,4,1,2,2,2019,1,2,7,0,43,42,15,1,0,1,0,9.52220521136112,9.52220521136112,0,0,0,0,0,0,0,1,1,0,0,7.892600714858668,0,0,57.33,53.46,6,1,0,0,6,5,1,778.6666666666666,0,0,0 +8434,10351,18883,18882,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.083662639583141,8.148548405261597,0,1,0,-9,9,0,-6,-174.9842887227489,0,0,0,53,2,3,1,-9,-9,2019,1,1,8,0,1,37,15,1,0,1,0,430.4784692040661,430.4784692040661,0,0,0,0,0,0,0,1,1,0,0,0,15.30861794592807,3,60.12,54.8,6,1,0,0,6,5,1,778.6666666666666,0,0,0 +8434,10352,18884,-9,18883,18882,3,1,0,20,2,0,0,1,2,0,7,2,0,4,7.220789854090578,7.37909390916719,4.643367198367713,3,0,0,0,-9,0,-982.1416517871013,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.697942521142009,0,0,0,43.54,59.6,4,1,0,0,6,3,1,434,0,0,0 +8435,10353,18885,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,5,8.890231938542613,8.778528775842233,0,3,0,-9,0,-9,0,-988.4425662815224,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,0,15,1,0,-9,0,19.09755902290375,19.09755902290375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,1,1,0,0,13,5,1,300,0,0,0 +8436,10354,18886,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,4.899051679454151,5.048223591334253,3,0,0,0,-9,0,-1043.103651642863,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.022174089240812,0,0,64.75,30.9,7,1,0,0,11,2,0,250,0,0,0 +8437,10355,18887,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1176.921850726852,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.89,18.68,4,1,0,0,9,1,0,849,0,0,0 +8437,10356,18888,-9,-9,-9,2,1,1,19,2,0,0,0,3,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-890.8865552885655,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,0,0,15,1,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,49.63,7,1,0,1,9,1,0,368,0,0,0 +8438,10357,18889,-9,-9,-9,1,1,0,46,2,0,1,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-898.2901618706545,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.52,47.81,2,1,0,0,12,1,0,1532,0,0,0 +8439,10358,18890,18891,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,4,9.439798939569849,9.704121034886191,0,1,0,-9,7,0,-1,-1.809434687456085,0,0,0,61,1,3,1,3,2,2019,1,1,6,0,37,37,15,1,0,1,0,50.04976870699225,50.04976870699225,0,0,0,0,0,0,0,0,0,0,4.258791564301196,0,0,0,51.83,57.2,2,1,0,0,13,5,1,691.5,0,0,0 +8439,10358,18891,18890,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,8.453638325005377,8.742857499805515,0,1,0,-9,7,0,1,77.46488632729528,0,0,0,60,1,4,1,2,3,2019,1,2,6,0,27,22,15,1,0,1,0,19.10167249717425,19.10167249717425,0,0,0,0,0,0,0,0,0,0,6.567641972089088,0,0,0,63.83,38.08,6,1,0,0,13,5,1,691.5,0,0,0 +8439,10359,18892,-9,18890,18891,3,1,1,22,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-934.8948050985631,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.216662355179787,0,0,0,48,59,5,1,0,0,13,1,1,470,0,0,0 +8440,10360,18893,18894,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,4,8.891132830332163,8.804451344854005,0,1,0,-9,10,0,6,-49.14617266541988,0,0,1,34,2,4,1,3,2,2019,1,2,8,0,38,39,15,1,0,1,0,21.19454903604145,21.19454903604145,0,0,0,0,0,0,0,1,1,0,3.374504300007226,0,.5703092409362489,3,48.87,58.55,6,1,0,0,5,5,1,1490,0,0,0 +8440,10360,18894,18893,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,4,8.645079598214984,8.33020973997044,0,1,0,-9,10,0,-6,1.25404470009379,0,0,0,40,2,4,1,3,3,2019,1,1,7,0,38,37,15,1,0,1,0,16.30652042367509,16.30652042367509,0,0,0,0,0,0,0,1,1,0,.340445074021974,0,0,0,51.83,57.2,6,1,0,0,5,5,1,1490,0,0,0 +8441,10361,18895,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,4,7.400430957709201,6.782712745332742,4.005863926804232,3,0,0,0,-9,0,-1099.853448706163,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,21,35,15,1,0,-9,0,8.076397159805564,8.076397159805564,0,0,0,0,0,0,0,0,0,0,4.531621167864242,4.397188754010783,9.602030073240664,3,51.24,58.84,6,1,0,0,5,3,1,999,0,0,0 +8442,10362,18896,18897,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,3,0,5.867570341189619,5.806238743929671,1,0,-9,28,0,0,79.20418833019158,0,0,0,63,1,5,3,3,2,2019,4,2,13,1,0,12,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.422803381257632,5.806705668562678,0,0,44.19,58.01,6,1,0,0,10,2,1,795,0,0,0 +8442,10362,18897,18896,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,5,0,7.017660133899129,7.009695548476619,1,0,-9,28,0,0,141.9891700368537,0,0,0,63,1,3,3,2,2,2019,4,1,8,1,0,22,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.013860524736625,7.390952862463243,0,0,55.64,46.24,6,1,0,0,10,2,1,795,0,0,0 +8443,10363,18898,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,3,0,8.02579807286007,7.529674762099522,3,0,0,0,-9,0,-933.5100242544772,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.210032196550941,7.519938702857243,0,0,34.31,24.81,4,1,0,0,2,3,1,878,0,0,0 +8444,10364,18899,18902,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,5,9.202659647087501,9.067933749793934,0,2,0,-9,2,0,2,-77.65774652760956,0,0,0,51,1,1,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,24.43275961037639,24.43275961037639,0,0,0,0,0,0,0,0,0,0,5.874353050302291,0,0,0,54.1,59.11,5,1,0,0,8,5,1,1195.25,0,0,0 +8444,10364,18900,-9,18902,18899,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-973.3351977301078,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,5,1,0,0,8,5,1,1195.25,0,0,0 +8444,10364,18901,-9,18902,18899,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.13221657609,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,1195.25,0,0,0 +8444,10364,18902,18899,-9,-9,1,1,0,51,1,0,2,0,1,-9,2,1,0,1,9.209754858711772,9.503869420969961,0,2,0,-9,2,0,-2,-114.8649078849794,0,0,0,53,1,5,1,1,1,2019,1,2,9,0,37,40,15,1,0,1,0,32.72356014552325,32.72356014552325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.91,24.14,6,1,0,0,8,5,1,1195.25,0,0,0 +8445,10365,18903,18904,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,3,8.436039153374308,8.322479563468915,4.113938259399233,1,0,-9,43,0,-1,-35.21636537620325,0,0,0,64,2,3,3,3,3,2019,2,1,10,0,48,50,15,1,0,4,0,9.216417531811203,9.216417531811203,0,0,0,0,0,0,0,0,0,0,4.782269302745743,0,0,0,55.51,51.57,5,3,0,0,5,3,0,201.5,0,0,0 +8445,10365,18904,18903,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,5.131611087294631,4.797182857872716,1,0,-9,44,0,1,-79.86327702963207,0,0,0,63,1,3,1,3,3,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.815456817178175,0,0,49.99,29.69,5,3,0,0,5,3,0,201.5,0,0,0 +8446,10366,18905,18906,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,6.922087632016475,6.577527667489941,0,1,0,-9,9,0,3,86.91460393626738,0,0,0,56,2,3,1,-9,-9,2019,1,2,11,1,16,0,15,1,1,1,0,6.110874575946985,6.110874575946985,0,0,0,0,0,0,0,0,0,0,1.408168170068629,0,0,0,41.54,41.7,5,1,0,0,9,3,1,446.5,0,0,0 +8446,10366,18906,18905,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,7.42056553517178,7.427976205915238,5.734740218889041,1,0,-9,9,0,-3,-70.1159629658007,0,0,0,59,2,3,1,3,3,2019,1,1,10,0,26,22,15,1,0,1,0,6.152335485112467,6.152335485112467,0,0,0,0,0,0,0,0,0,0,5.10345699981931,6.167023208782568,0,0,54.37,54.8,6,1,0,0,9,3,1,446.5,0,0,0 +8447,10367,18907,18909,-9,-9,2,1,1,46,1,0,2,0,2,-9,1,1,0,3,7.244583150603695,7.058329152068048,0,2,0,-9,7,0,8,-139.5828593899869,0,0,0,38,2,3,2,-9,-9,2019,2,1,9,0,30,0,15,1,0,2,0,4.859809705958733,4.859809705958733,0,0,0,0,0,0,0,1,1,0,7.679000751933139,0,5.788358459949052,3,51.5,39.74,6,1,0,0,12,2,1,1022,0,0,0 +8447,10367,18908,-9,18909,18907,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.268387043697,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,2,1,1022,0,0,0 +8447,10367,18909,18907,-9,-9,1,1,0,38,1,0,2,0,2,-9,7,2,0,3,0,0,0,2,0,-9,20,0,-8,125.320701292937,1,0,1,46,2,3,1,2,2,2019,3,2,12,3,0,27,15,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,50.54,6,1,0,0,12,2,1,1022,0,0,0 +8447,10367,18910,-9,18909,18907,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.5725570240536,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,2,1,1022,0,0,0 +8448,10368,18911,18912,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,58,0,2,-21.80912093418985,0,0,0,76,3,4,3,3,3,2019,4,1,19,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.53,40.09,6,1,0,0,2,2,1,4197,0,0,0 +8448,10368,18912,18911,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,6.867782618979719,6.949097008550821,1,0,-9,58,0,-2,-122.419639698804,0,0,0,78,3,1,3,-9,3,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.90874019299992,0,0,55.19,51.55,7,1,0,0,2,2,1,4197,0,0,0 +8449,10369,18913,18914,-9,-9,2,1,1,58,1,0,1,0,1,-9,4,3,0,4,0,0,0,2,0,-9,35,0,0,0,0,0,0,58,2,4,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,10.04030519955374,0,31.68922707761156,3,58.9,45.74,6,1,0,0,9,1,1,947,0,0,0 +8449,10369,18914,18913,-9,-9,1,1,0,58,1,0,1,0,2,-9,4,3,0,4,0,0,0,2,0,-9,35,0,0,0,0,0,0,58,1,4,3,2,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.08330869125629,3,51.77,58.57,6,1,0,0,9,1,1,947,0,0,0 +8449,10370,18915,-9,18914,18913,3,1,1,25,2,0,1,0,1,-9,2,1,0,2,8.507507770476296,8.38207673781916,0,3,0,0,0,-9,0,-1025.076459314137,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,5,43,46,15,1,5,-9,1,12.84893687940497,12.84893687940497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.85,50.17,6,1,0,0,9,4,1,1616,0,0,0 +8449,10371,18916,-9,18914,18913,4,1,1,21,2,0,1,0,2,-9,2,1,0,4,7.925900652762372,7.718936302914165,0,3,0,0,0,-9,0,-1031.039455836069,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,41,42,15,1,0,-9,1,5.902190906452131,5.902190906452131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.11,54.04,7,1,0,0,9,3,1,594,0,0,0 +8449,10372,18917,-9,18914,18913,5,1,0,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-906.1595771528009,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,19,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.77,64.17,3,1,0,0,9,4,1,3640,0,0,0 +8450,10373,18918,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,2,0,7.148195368436556,7.279204817854263,3,0,0,0,-9,0,-1003.608832549369,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.702445472169303,6.999413511606133,0,0,55.43,41.03,6,1,0,0,9,2,1,482,0,0,0 +8451,10374,18919,18920,-9,-9,2,1,1,31,1,0,0,0,1,-9,1,1,0,4,8.873048266500572,8.591444291485571,0,1,0,-9,2,0,-3,-211.0136938894054,0,0,0,34,2,4,1,-9,-9,2019,1,1,10,0,35,40,15,1,1,1,0,17.04595396923504,17.04595396923504,0,0,0,0,0,0,0,0,0,0,4.578794474879651,0,0,0,50,57,5,1,0,0,1,5,1,690.5,0,0,0 +8451,10374,18920,18919,-9,-9,1,1,0,34,1,0,0,0,2,-9,1,1,0,4,7.300978964968924,7.379269516089811,0,1,0,-9,2,0,3,-43.3136054897406,0,0,1,31,1,4,1,-9,-9,2019,1,2,11,0,30,30,15,1,2,1,0,5.058561772861619,5.058561772861619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,5,1,0,0,1,5,1,690.5,0,0,0 +8452,10375,18921,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,3.241141774693792,3.364953763807194,3,0,0,0,-9,0,-900.7823808723532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.017925741526048,3.696872392040956,0,0,50.27,28.19,4,1,0,0,1,1,0,1434,0,0,0 +8453,10376,18922,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-969.9943263242506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.52,26.2,3,1,0,1,2,1,0,742,0,0,0 +8454,10377,18923,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,4,8.509559521288525,9.051622942257373,8.284500027049939,3,0,0,0,-9,0,-992.5788057289973,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,48,44,15,1,0,-9,0,14.17804453940045,14.17804453940045,0,0,0,0,0,0,0,0,0,0,8.289109701238617,0,0,0,60.12,54.8,6,1,0,0,10,5,1,418,0,0,0 +8455,10378,18924,18925,-9,-9,1,1,1,59,1,0,0,0,2,-9,8,3,1,1,0,6.489217769608486,6.41423189587807,1,0,-9,30,0,4,-66.23176331309735,0,0,0,55,2,2,3,2,2,2019,4,2,34,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.177679302643926,0,0,24.39,20.22,2,1,0,0,13,2,1,407.5,0,0,0 +8455,10378,18925,18924,-9,-9,2,1,0,55,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,30,0,-4,63.80713854143394,0,0,0,59,2,1,3,2,2,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.242806902069,1,40.91,38.44,4,1,0,0,13,2,1,407.5,0,0,0 +8456,10379,18926,-9,18927,18928,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.318769454958,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,5,1,791.25,0,0,0 +8456,10379,18927,18928,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,3,8.633353921980451,9.000547943035015,0,2,0,-9,8,0,0,-139.8441412480847,0,0,1,39,2,3,1,1,1,2019,1,2,18,7,35,35,15,1,7,1,0,21.31560370669098,21.31560370669098,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.75,56.39,3,1,0,0,5,5,1,791.25,0,0,0 +8456,10379,18928,18927,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,3,8.43464339351182,8.697755111118022,0,2,0,-9,8,0,0,-77.71978502240592,0,0,0,39,1,3,1,2,2,2019,1,1,12,0,39,39,15,1,0,1,0,11.99715096855203,11.99715096855203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,60.77,3,1,0,0,5,5,1,791.25,0,0,0 +8456,10379,18929,-9,18927,18928,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.1562649994625,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,791.25,0,0,0 +8457,10380,18930,18932,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,4,6.805708639717838,6.899187457461956,0,2,0,-9,8,-9,-1,-69.17768115347133,-9,0,1,38,1,4,1,2,2,2019,1,2,10,0,15,0,15,1,0,1,0,6.945221162788239,6.945221162788239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,6,1,0,0,1,5,1,651.25,0,0,0 +8457,10380,18931,-9,18930,18932,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1040.664657401051,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,1,5,1,651.25,0,0,0 +8457,10380,18932,18930,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,4,9.161957633998037,8.85071742278601,0,2,0,-9,8,-9,1,-46.72883233583728,-9,0,0,37,1,4,1,2,1,2019,1,1,10,0,40,0,15,1,1,1,0,32.88920185977462,32.88920185977462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,5,1,0,0,1,5,1,651.25,0,0,0 +8457,10380,18933,-9,18930,18932,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-969.6584825670893,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,1,5,1,651.25,0,0,0 +8458,10381,18934,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,3,8.870583978080566,8.743785632266967,0,3,0,0,0,-9,0,-955.067249924194,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,45,45,15,1,0,-9,0,18.17575120771901,18.17575120771901,0,0,0,0,0,0,0,0,0,0,3.240415937177024,0,0,0,54.96,53.17,6,3,0,0,9,5,1,278,0,0,0 +8459,10382,18935,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,7.233694446415198,8.385938453279302,8.360878198325915,3,0,0,0,-9,0,-963.7856926012179,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,19,15,1,0,-9,0,4.856337717604104,4.856337717604104,0,0,0,0,0,0,0,1,1,0,3.721987230099054,8.26446979545085,0,0,52.93,55.31,6,1,0,0,13,5,1,819,0,0,0 +8460,10383,18936,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,7,2,0,3,0,6.492584971082356,6.533854725658033,3,0,-9,0,-9,0,-1062.192851012484,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.936435178528421,0,0,0,43.68,48.77,4,3,0,0,6,2,0,980,0,0,0 +8461,10384,18937,-9,18939,18938,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.1048807370212,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,794.3333333333334,0,0,0 +8461,10384,18938,18939,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,2,7.520663230283595,7.506326376901043,0,2,0,-9,8,0,-8,-63.57248488210706,0,0,0,52,2,4,1,3,2,2019,1,2,11,0,37,38,15,1,0,1,0,5.642768793377583,5.642768793377583,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.69,44.53,5,1,0,0,12,4,1,794.3333333333334,0,0,0 +8461,10384,18939,18938,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,4,8.009560881428429,8.331419863883561,0,2,0,-9,8,0,8,157.108661139568,0,0,0,44,1,2,1,-9,-9,2019,1,1,11,0,35,35,15,1,0,1,0,14.11038587670716,14.11038587670716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,4,1,794.3333333333334,0,0,0 +8462,10385,18940,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.238963136252714,8.458118301338631,0,3,0,0,0,-9,0,-899.088855346751,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,37,37,15,1,1,-9,0,10.83233292939276,10.83233292939276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.87,59.15,5,1,0,0,12,4,0,634,0,0,0 +8463,10386,18941,-9,18942,18944,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.082634503266,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,3,1,1093.75,0,0,0 +8463,10386,18942,18944,-9,-9,1,1,0,36,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,8,0,-3,-42.03794866050977,0,0,1,39,1,4,1,2,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.53394776585419,3,62.66,39.17,4,1,0,1,11,3,1,1093.75,0,0,0 +8463,10386,18943,-9,18942,18944,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.741558500973,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,3,1,1093.75,0,0,0 +8463,10386,18944,18942,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,4,8.458881925679044,8.253037601316471,0,2,0,-9,8,0,3,-24.49955844074517,0,0,0,36,2,2,3,2,2,2019,2,1,10,0,35,35,15,1,0,3,0,12.80994924657907,12.80994924657907,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,11,3,1,1093.75,0,0,0 +8464,10387,18945,18947,-9,-9,1,1,0,32,1,0,2,0,3,-9,2,1,0,5,7.629119893375327,7.627942379304043,0,2,0,-9,1,-9,-2,-122.5251346840539,-9,0,1,34,2,5,1,-9,-9,2019,1,2,8,0,26,0,15,1,0,1,0,8.151738039438161,8.151738039438161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,50.77,7,2,0,0,7,3,1,899.6666666666666,0,0,0 +8464,10387,18946,-9,18945,18947,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-994.5534738988897,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,3,1,899.6666666666666,0,0,0 +8464,10387,18947,18945,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,5,8.102294571806027,8.438637957664838,0,2,0,-9,1,-9,2,-42.25213923269739,-9,0,0,32,3,5,1,-9,-9,2019,1,1,4,0,8,0,15,1,0,1,0,48.23967119495644,48.23967119495644,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,7,3,1,899.6666666666666,0,0,0 +8465,10388,18948,18949,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,1,0,6.327441986655279,6.654151994199588,1,0,-9,54,0,-5,70.81979006090936,0,0,0,75,1,2,3,3,2,2019,4,1,31,11,0,0,15,4,11,4,0,0,0,1,0,15.99271659550338,0,0,0,0,1,1,0,3.460736900322858,6.317767953367591,71.25414740252783,1,13.07,33.7,6,3,0,0,4,2,0,793.5,0,0,0 +8465,10388,18949,18948,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,54,0,5,89.22938377905393,0,0,0,70,2,1,3,3,2,2019,4,2,23,8,0,0,15,4,8,4,0,0,0,1,14.43176060486998,121.1463037114731,0,0,34.34838770646565,107.4212581404033,1,1,0,0,0,115.4626559207079,1,20.81,27.22,6,3,0,0,4,2,0,793.5,0,0,0 +8466,10389,18950,18953,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,4,8.890240006514997,8.681030111197057,0,2,0,-9,9,0,4,-87.37606717479539,0,0,0,35,1,4,3,2,2,2019,2,2,8,0,38,38,15,1,0,3,0,23.16010837047923,23.16010837047923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,4,1,575.25,0,0,0 +8466,10389,18951,-9,18953,18950,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1019.252844920618,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,9,4,1,575.25,0,0,0 +8466,10389,18952,-9,18953,18950,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.3330693330902,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,4,1,575.25,0,0,0 +8466,10389,18953,18950,-9,-9,2,1,0,35,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,9,0,-4,4.727593705080375,0,0,1,39,1,4,1,-9,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.193326117460305,0,0,0,52.37,56.93,5,1,0,0,9,4,1,575.25,0,0,0 +8467,10390,18954,18955,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,8.71789692593414,8.802487308890612,0,1,0,-9,9,0,2,-11.21861919382703,0,0,0,52,2,4,1,-9,-9,2019,1,1,11,0,38,40,15,1,1,1,0,22.30134210728394,22.30134210728394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,5,5,0,0,13,5,1,898.5,0,0,0 +8467,10390,18955,18954,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,9.221865190057738,9.124227007082112,0,1,0,-9,9,0,-2,67.79414385980837,0,0,0,54,1,3,1,3,3,2019,1,2,11,0,30,37,15,1,0,1,0,32.10701891708967,32.10701891708967,0,0,0,0,0,0,0,0,0,0,5.332185179780568,0,5.560672258294888,3,41.87,59.15,6,1,0,0,13,5,1,898.5,0,0,0 +8467,10391,18956,-9,18955,18954,3,1,1,22,2,0,0,0,1,1,2,1,0,4,8.516187633963522,8.235952017872814,0,3,0,0,0,-9,0,-1054.25589335481,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,1,37,0,15,1,1,-9,1,10.90587789348601,10.90587789348601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,56.45,6,1,0,0,13,4,1,309,0,0,0 +8468,10392,18957,-9,18958,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.93458863389,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,8,2,0,618.5,0,0,0 +8468,10392,18958,-9,-9,-9,1,1,0,35,3,0,1,0,2,-9,1,1,0,3,5.723410691594601,6.100732261078997,0,4,0,0,0,-9,0,-983.4854268756608,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,24,24,15,1,2,-9,0,1.702577618337222,1.702577618337222,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.6,41.91,3,5,0,1,8,2,0,618.5,0,0,0 +8469,10393,18959,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,3,5.403265321346602,8.142021019508274,7.958223858194256,3,0,0,0,-9,0,-1027.123785357259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,3,3,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.155486065652227,7.780092680392832,0,0,47.61,53.7,6,1,0,0,10,4,1,717,0,0,0 +8470,10394,18960,-9,-9,-9,2,1,1,34,2,0,0,0,1,-9,2,1,0,4,8.858674855392257,9.238837483679903,0,1,0,-9,3,0,-2,-11.42149443620645,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,9,1,48,56,15,1,1,-9,0,18.32050360697189,18.32050360697189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,11,5,0,778,0,0,0 +8470,10395,18961,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,2,1,0,2,8.702858449726824,8.783800082966966,0,1,0,-9,3,0,2,106.1591771856294,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,24,12,45,44,15,1,12,-9,0,19.65178585444871,19.65178585444871,0,0,0,0,0,0,0,0,0,0,3.276351283900149,0,0,0,35.7,44.71,4,1,0,0,11,5,0,877,0,0,0 +8471,10396,18962,18964,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,3,7.853729604397738,7.735265355085269,0,1,0,-9,28,0,-3,49.15918737641635,0,0,0,49,2,4,1,2,2,2019,1,2,10,0,33,30,15,1,0,1,0,8.042862438269054,8.042862438269054,0,0,0,0,0,0,0,0,0,0,2.520742244246357,0,0,0,50.18,47.09,6,1,0,0,10,5,1,1157.666666666667,0,0,0 +8471,10396,18963,-9,18962,18964,4,1,1,17,2,0,0,0,3,1,2,3,0,5,6.941189484997261,6.87173340032462,0,1,0,0,0,-9,0,-983.1420379951941,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,45,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.96,55.09,7,1,0,0,10,5,1,1157.666666666667,0,0,0 +8471,10396,18964,18962,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,4,8.685981677262202,8.80984948190885,0,1,0,-9,6,0,3,-9.061556462663425,0,0,0,46,2,3,1,-9,-9,2019,1,1,9,0,45,40,15,1,1,1,0,16.5877189955601,16.5877189955601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,10,5,1,1157.666666666667,0,0,0 +8471,10397,18965,-9,18962,18964,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,6.347847664795635,6.514113336467984,0,3,0,0,0,-9,0,-1008.324928021855,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,41,15,1,1,-9,1,1.871060054928727,1.871060054928727,0,0,0,0,0,0,0,0,0,0,4.46214484064369,0,0,0,35.34,53.88,4,1,0,0,10,2,1,258,0,0,0 +8472,10398,18966,-9,-9,-9,1,1,1,46,3,0,0,0,2,1,97,3,0,2,0,0,0,3,0,0,0,-9,0,-995.0439980688045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120.9726977892219,3,14.91,35.1,1,1,0,1,12,1,0,366,0,0,0 +8473,10399,18967,-9,-9,-9,1,1,1,59,3,0,0,0,3,-9,2,1,0,3,7.582801486018346,7.740390828568923,0,3,0,0,0,-9,0,-1031.638059171596,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,5,35,15,1,0,-9,0,52.29749056827138,52.29749056827138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,45.67,3,1,0,0,1,3,0,379,0,0,0 +8474,10400,18968,18969,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,4,8.12920369861356,8.399439356294081,0,1,0,-9,2,0,-3,51.34207901402588,0,1,0,31,2,4,1,-9,-9,2019,1,1,10,0,37,40,15,1,1,1,0,15.52626207971085,15.52626207971085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,5,0,0,1,5,1,685,0,0,0 +8474,10400,18969,18968,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,4,8.850911214899455,8.922547068954392,0,1,0,-9,2,0,3,-76.9908879923623,0,0,1,28,2,4,1,1,2,2019,1,2,12,0,37,37,15,1,0,1,0,17.01172266819543,17.01172266819543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,1,5,1,685,0,0,0 +8475,10401,18970,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,3,8.928982084536985,8.622063558502061,0,1,0,-9,6,0,-5,-73.01815644695454,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,11,1,38,53,15,1,1,-9,0,21.08254909550022,21.08254909550022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,5,1,0,0,7,5,1,401,0,0,0 +8475,10402,18971,-9,-9,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,3,7.971648357941705,8.348384811026317,0,1,0,-9,6,0,5,29.85614117022664,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,23,11,38,44,15,1,11,-9,0,10.66715486937931,10.66715486937931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,5,1,0,0,7,5,1,234,0,0,0 +8476,10403,18972,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-955.5643351194614,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,43.45,6,1,0,0,11,1,1,1248,0,0,0 +8477,10404,18973,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,6.588640649898196,6.188904342727041,3,0,0,0,-9,0,-1079.606692840421,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.049800726702409,6.436886054099262,0,0,43.36,42.15,3,1,0,0,8,2,1,150,0,0,0 +8478,10405,18974,18975,-9,-9,1,1,1,27,1,0,2,0,3,-9,2,1,0,5,6.999072233243983,7.127836937490438,0,2,0,-9,1,-9,-8,9.156264234723732,-9,1,0,35,2,5,1,-9,-9,2019,1,2,6,0,16,0,15,1,0,1,0,8.494806787096271,8.494806787096271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,1,0,0,4,2,0,687,0,0,0 +8478,10405,18975,18974,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,5,5.956085528860538,6.230951938626277,0,2,0,-9,1,-9,8,-53.46965386492535,-9,0,1,27,3,5,1,-9,-9,2019,1,1,23,7,8,0,15,1,7,1,0,7.809642114394205,7.809642114394205,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.15,63.62,7,1,0,1,4,2,0,687,0,0,0 +8478,10405,18976,-9,18975,18974,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1100.784917972971,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,2,0,687,0,0,0 +8478,10405,18977,-9,18975,18974,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1050.282278013944,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,0,687,0,0,0 +8479,10406,18978,-9,18980,18981,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.492912476126,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,604.5,0,0,0 +8479,10406,18979,-9,18980,18981,3,1,0,13,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1087.321783691373,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,2,2,0,604.5,0,0,0 +8479,10406,18980,18981,-9,-9,2,1,0,41,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,18,0,3,-77.29084659241535,0,0,1,38,3,2,1,2,2,2019,3,1,16,4,0,40,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.21928700434558,3,43.01,26.45,5,1,0,0,2,2,0,604.5,0,0,0 +8479,10406,18981,18980,-9,-9,1,1,1,38,1,0,2,0,3,-9,1,1,0,2,7.579098811710311,7.62920640294664,0,2,0,-9,18,0,-3,-50.30782576246161,0,0,0,41,2,2,3,-9,-9,2019,2,2,11,0,32,40,15,1,0,3,0,6.439326763234241,6.439326763234241,0,0,0,0,0,0,0,1,1,0,0,0,13.27286725841121,3,45.97,53.8,5,1,0,0,2,2,0,604.5,0,0,0 +8480,10407,18982,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,9.377106404274594,9.62165821177574,0,3,0,0,0,-9,0,-1054.3921410639,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,11,43,45,15,1,11,-9,0,36.5235748418234,36.5235748418234,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.77,66.82000000000001,3,1,0,0,9,5,0,1585,0,0,0 +8481,10408,18983,-9,-9,-9,1,1,1,40,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-991.4241271640703,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,26,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.07,50.04,5,1,0,0,2,1,0,184,0,0,0 +8482,10409,18984,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,4,7.850003631375946,7.896332821910661,0,3,0,-9,0,-9,0,-1081.553738207938,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,6,40,0,15,1,6,-9,0,8.591304015882415,8.591304015882415,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.18,69.37,1,1,0,0,2,4,1,699,0,0,0 +8483,10410,18985,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,6.908880648903883,6.312191415242231,3,0,0,0,-9,0,-943.8893901587874,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.648137327191623,6.662256457016476,8.786365002624059,3,61.11,43.69,1,1,0,0,7,2,1,224,0,0,0 +8484,10411,18986,18987,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.714328212208883,8.909035885425222,5.820239006708054,1,0,-9,6,0,-1,-158.371815098871,0,0,0,58,2,3,1,3,3,2019,1,2,7,0,36,36,15,1,0,1,0,21.85705002462572,21.85705002462572,0,0,0,0,0,0,0,0,0,0,6.11399799434709,0,0,0,55.19,54.26,6,1,0,0,13,5,1,336,0,0,0 +8484,10411,18987,18986,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,6.807542809182317,6.881655743025238,0,1,0,-9,6,0,1,-165.6109293405419,0,0,0,57,1,4,1,2,2,2019,1,1,6,0,10,14,15,1,0,1,0,9.853822433944952,9.853822433944952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,0,0,13,5,1,336,0,0,0 +8485,10412,18988,18989,-9,-9,2,1,0,70,1,0,0,0,1,-9,1,1,0,3,7.593150325197947,8.585864868353248,8.406560049873626,1,0,-9,42,0,-5,-16.55427994680084,0,0,0,75,1,1,1,3,2,2019,1,1,15,4,72,70,15,1,4,1,0,2.834185735178525,2.834185735178525,0,0,0,0,0,0,0,1,1,0,6.967003360331751,8.366247855389735,0,0,47.76,48.16,5,1,0,0,2,5,1,806.5,0,0,0 +8485,10412,18989,18988,-9,-9,1,1,1,75,1,0,0,0,1,-9,1,1,0,1,7.176107100345865,8.276188673432252,8.091828210632324,1,0,-9,42,0,5,-71.25334662330663,0,0,0,70,1,3,1,2,1,2019,1,2,14,4,25,15,15,1,4,1,0,4.863827741841407,4.863827741841407,1,0,0,0,0,0,0,1,1,0,2.936192023640545,8.133633574321577,0,0,63.74,23.76,6,1,0,0,2,5,1,806.5,0,0,0 +8485,10413,18990,-9,-9,-9,3,1,0,23,2,0,0,0,1,-9,1,1,0,3,7.120742888053253,7.29302970437901,0,3,0,0,0,-9,0,-1074.639030896016,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,0,15,1,0,-9,0,5.154169307553497,5.154169307553497,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,7,1,0,0,2,3,1,876,0,0,0 +8486,10414,18991,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,6.775122811430609,6.73630534514124,3,0,0,0,-9,0,-897.843875122968,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.217438180791651,7.100647236574627,0,0,39.33,58.88,6,1,0,0,9,2,1,365,0,0,0 +8487,10415,18992,-9,-9,-9,1,1,0,24,3,0,1,0,2,-9,2,1,0,4,8.115126090098043,7.707075030060914,0,4,0,0,0,-9,0,-965.3083803018744,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,30,30,15,1,5,-9,0,9.037931161119486,9.037931161119486,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,57.54,4,1,0,0,4,3,0,781,0,0,0 +8487,10415,18993,-9,18992,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-956.7962428534323,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,0,781,0,0,0 +8488,10416,18994,18995,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,5,0,7.933005670078767,7.828859189309808,1,0,-9,42,0,-3,56.66089201958068,0,0,0,75,3,5,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.958558935365409,0,0,62.57,51.16,6,1,0,0,8,3,1,477.5,0,0,0 +8488,10416,18995,18994,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,41,0,3,-127.7425759914184,0,0,0,72,3,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9298483628445974,0,0,0,60.02,56.42,7,1,0,0,8,3,1,477.5,0,0,0 +8489,10417,18996,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,4,0,8.549755437041963,8.467696499004195,3,0,0,0,-9,0,-1027.2550005606,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.851124625360475,8.003195008955485,0,0,57.16,56.15,6,1,0,0,9,4,1,414,0,0,0 +8490,10418,18997,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,3,0,7.203864822684713,6.782829544182785,3,0,0,0,-9,0,-991.4353373439396,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.833206894002979,6.957646445038595,0,3,51,48,5,1,0,0,2,2,1,882,0,0,0 +8491,10419,18998,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,4,8.631527226252484,8.8255357773361,0,3,0,0,0,-9,0,-923.3596962555678,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,41,40,15,1,0,-9,0,17.46963830769498,17.46963830769498,0,0,0,0,0,0,0,1,1,0,4.141579417473533,0,0,0,51.83,57.2,5,1,0,0,6,5,1,764,0,0,0 +8492,10420,18999,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,3,0,5.794379151380275,6.057981563430561,3,0,0,0,-9,0,-1146.560998398724,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.57444014626655,0,0,0,1,1,0,0,5.704109086673498,0,0,48.72,36.66,6,4,0,0,8,2,1,377,0,0,0 +8493,10421,19000,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,7.982624257683742,8.211669192734336,3,0,0,0,-9,0,-1117.053872706793,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,3.047804456594292,0,0,0,0,27.34879144596128,1,1,0,4.081512868570273,8.111824862650073,0,0,42.02,25.48,5,1,0,0,5,4,1,212,0,0,0 +8494,10422,19001,19002,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,5,8.18442678363008,7.986968772730179,0,1,0,-9,32,0,1,0,0,0,0,54,1,3,1,2,2,2019,1,1,12,0,18,0,15,1,0,1,0,19.62591960517622,19.62591960517622,0,0,0,0,0,0,0,1,1,0,0,0,10.23138845610129,3,45.81,61.51,7,1,0,0,2,5,1,1216.5,0,0,0 +8494,10422,19002,19001,19004,-9,1,1,1,54,1,0,0,0,1,-9,1,1,0,3,8.187801497267435,8.002806037236214,0,1,0,-9,32,0,-1,0,0,0,0,55,1,5,1,2,2,2019,1,2,6,0,36,0,15,1,0,1,0,12.06779411135437,12.06779411135437,0,0,0,0,0,0,0,1,1,0,7.399685337459672,0,4.542340265166787,3,57.33,53.46,6,1,0,0,2,5,1,1216.5,0,0,0 +8494,10423,19003,-9,19001,19002,3,1,0,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1071.713849372345,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.85,61.32,5,1,0,0,2,1,1,423,0,0,0 +8494,10424,19004,-9,-9,-9,4,1,0,85,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-980.4414137585691,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,3,0,0,15,4,3,-9,0,0,0,1,0,0,6.557306303500754,.9253947209081861,0,0,1,1,0,6.480208559045091,0,0,0,37.6,14.31,5,1,0,0,2,1,1,618,0,0,0 +8495,10425,19005,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,2,8.953852660315652,8.970148551698285,0,3,0,-9,0,-9,0,-1058.514294106092,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,58,0,15,1,3,-9,0,15.8340748346929,15.8340748346929,0,0,0,0,0,0,0,0,0,0,7.486297192445313,0,0,0,50.61,22.75,5,1,0,0,7,5,0,667,0,0,0 +8496,10426,19006,19007,-9,-9,1,1,1,58,1,0,0,0,3,-9,1,1,0,4,8.170685560755739,7.89858841080583,2.929722101294971,1,0,-9,34,0,-4,-38.21753767240682,0,0,0,62,2,5,1,2,3,2019,1,2,7,0,40,50,15,1,0,1,0,9.132567238737822,9.132567238737822,0,0,0,0,0,0,0,0,0,0,3.52065916046331,2.596875920410393,0,0,57.16,56.15,6,1,0,0,2,4,0,990.5,0,0,0 +8496,10426,19007,19006,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,5,7.846381297071697,7.617787191986934,5.553870023698653,1,0,-9,34,0,4,31.33443351301005,0,0,0,58,3,4,1,3,3,2019,1,1,3,0,16,30,15,1,0,1,0,16.81710506588442,16.81710506588442,0,0,0,0,0,0,0,0,0,0,6.807464357587896,5.853073596424492,0,0,57.06,57.76,7,1,0,0,2,4,0,990.5,0,0,0 +8497,10427,19008,19009,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,9.187915278112778,9.282176358043984,4.807447778924127,1,0,-9,7,0,-12,8.566003905634702,0,0,0,75,2,4,3,3,3,2019,4,1,9,0,10,16,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.961503764023768,4.92818500451388,0,0,50.97,53.42,6,1,0,0,12,5,1,1460,0,0,0 +8497,10427,19009,19008,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,7.133217508808499,6.956481851556927,1,0,-9,7,0,12,-61.99006750631521,0,0,0,63,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.999484674613948,6.846785005179976,0,0,56.35,51,7,1,0,0,12,5,1,1460,0,0,0 +8498,10428,19010,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,6.901824986867156,7.017108136131023,3,0,0,0,-9,0,-1004.043967792044,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.853837205553641,7.259065594364988,0,0,44.34,44.44,4,1,0,0,2,2,1,698,0,0,0 +8499,10429,19011,19012,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,3,8.61622218257722,9.071888963900927,0,1,0,-9,10,0,-2,-40.33422750949107,0,0,0,57,2,3,1,2,3,2019,1,1,11,0,55,58,15,1,0,1,0,14.34629570273916,14.34629570273916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,49.46,5,1,0,0,7,5,0,849.5,0,0,0 +8499,10429,19012,19011,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.322967222251599,8.46478277941997,0,1,0,-9,37,0,2,32.02054299351929,0,0,0,55,2,3,1,3,3,2019,1,2,27,12,44,47,15,1,12,1,0,8.084267460489411,8.084267460489411,0,0,0,0,0,0,0,0,0,0,0,0,10.04728532137404,3,26.5,60.74,5,1,0,0,7,5,0,849.5,0,0,0 +8500,10430,19013,19014,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.720559300671036,8.329665928236293,0,1,0,-9,4,0,6,108.1354844005964,0,0,0,25,2,4,1,-9,-9,2019,1,1,13,1,38,37,15,1,1,1,0,13.46213199738734,13.46213199738734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,5,1,0,0,9,5,1,191.5,0,0,0 +8500,10430,19014,19013,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,4,7.848015145317865,7.752889200290142,0,1,0,-9,4,0,-6,28.21020107993075,0,1,1,31,1,4,1,-9,-9,2019,1,2,9,2,41,40,15,1,2,1,0,6.861521457935443,6.861521457935443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,9,5,1,191.5,0,0,0 +8501,10431,19015,19016,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.045812526892215,8.439782328833912,0,1,0,-9,7,0,3,-59.7989930823546,0,0,0,56,2,3,3,3,3,2019,2,2,11,0,38,38,15,1,0,3,0,8.744008994548222,8.744008994548222,0,0,0,0,0,0,0,1,1,0,0,0,16.82774868096954,3,47.44,39.02,4,1,0,0,4,3,1,991.5,0,0,0 +8501,10431,19016,19015,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,7,0,-3,-65.21263639201086,0,0,0,59,2,3,1,2,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.623230052935674,3,47.85,52.43,5,1,0,0,4,3,1,991.5,0,0,0 +8501,10432,19017,-9,19016,19015,3,1,1,21,2,0,0,0,2,-9,2,1,0,5,7.733072995314691,7.839549904252568,0,3,0,0,0,-9,0,-888.5914159456601,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,44,45,15,1,0,-9,1,6.197648104754449,6.197648104754449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,5,1,0,0,4,3,1,241,0,0,0 +8501,10433,19018,-9,19016,19015,4,1,0,18,2,0,0,0,2,1,2,1,0,3,6.839366405452579,6.813846644591698,0,3,0,0,0,-9,0,-895.5644588191867,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,1,0,-9,1,5.374828902025661,5.374828902025661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,44.04,4,1,0,0,4,2,1,256,0,0,0 +8502,10434,19019,19020,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,3,8.779140087322471,8.941392336020556,0,2,0,-9,17,0,2,-34.11376503421111,0,0,0,45,1,4,1,3,2,2019,1,2,19,8,44,0,15,1,8,1,0,19.13514702282457,19.13514702282457,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.99,41.57,3,3,0,0,4,4,1,330,0,0,0 +8502,10434,19020,19019,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,4,8.028371345919764,8.328054113800155,0,2,0,-9,17,0,-2,148.8049296201184,-9,0,0,47,1,3,1,3,3,2019,1,1,8,0,23,0,15,1,0,1,0,19.67671548996205,19.67671548996205,0,0,0,0,0,0,0,1,1,0,6.408035511086448,0,0,0,59.29,49.68,7,3,0,0,4,4,1,330,0,0,0 +8503,10435,19021,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,4,3,0,3,0,7.026303256218963,6.569699665221194,3,0,0,0,-9,0,-976.8226836393804,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.379855638757051,6.728693891530918,0,0,61.45,29.78,5,1,0,0,13,2,1,413,0,0,0 +8504,10436,19022,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,3,7.31087865489184,7.370356205540147,0,3,0,0,0,-9,0,-952.2894371031769,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,29,19,15,1,0,-9,0,8.184578536673992,8.184578536673992,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47.55,49.86,4,1,0,0,7,3,0,506,0,0,0 +8505,10437,19023,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-941.4453803299558,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,1.280038943250599,0,8.264849631948804,0,0,43.24420176966616,1,1,0,0,0,0,0,54.87,8.779999999999999,5,1,0,0,10,1,1,1835,0,0,0 +8506,10438,19024,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,3,7.48071092065649,7.661778593118814,0,3,0,0,0,-9,0,-1011.052771416745,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,34,28,15,1,0,-9,0,7.119677400497186,7.119677400497186,0,0,0,0,0,0,0,0,0,0,1.439708813238069,0,0,0,49.76,35.01,2,1,0,0,13,3,0,456,0,0,0 +8507,10439,19025,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,1,1,0,5,8.344326510498256,8.591388098131496,0,3,0,0,0,-9,0,-878.6569103340515,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,30,27,15,1,0,-9,0,19.46400905440706,19.46400905440706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,58.07,5,1,0,0,13,5,0,836,0,0,0 +8508,10440,19026,19027,-9,-9,1,1,0,61,1,0,0,0,2,-9,1,1,0,4,0,7.51037523212906,7.461914167155633,1,0,-9,10,0,-10,-50.53726777411701,0,0,0,71,3,4,3,-9,-9,2019,2,2,6,0,0,8,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.527628759571397,0,0,60.12,54.8,6,1,0,0,9,3,1,1211,0,0,0 +8508,10440,19027,19026,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,5.668210060434497,5.196657923115907,1,0,-9,10,0,10,-77.5881833292031,0,0,0,61,2,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.123051833165179,5.06713182418012,0,0,57.16,56.15,6,1,0,0,9,3,1,1211,0,0,0 +8509,10441,19028,19030,-9,-9,1,1,0,43,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,20,0,0,-9.987054118419588,0,0,1,43,2,4,1,2,2,2019,3,2,20,0,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,21.22,4,2,0,0,7,2,1,959,0,0,0 +8509,10441,19029,-9,19028,19030,4,1,0,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-873.162365692856,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.6881076020246,3,43.48,60.97,7,2,0,0,7,2,1,959,0,0,0 +8509,10441,19030,19028,-9,-9,2,1,1,43,1,0,1,0,2,-9,1,1,0,4,6.931048869000786,6.597992616401764,0,2,0,-9,20,0,0,-101.4378137812556,0,0,0,43,2,1,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,2.971842662673226,2.971842662673226,0,0,0,0,0,0,0,1,1,0,0,0,6.662569059247478,1,55.36,54.24,6,1,0,0,7,2,1,959,0,0,0 +8509,10442,19031,-9,19028,19030,3,1,0,19,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1046.270336445642,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.23820330200324,3,42.12,38.49,6,2,0,0,7,1,1,685,0,0,0 +8510,10443,19032,19033,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,8.355789138034757,8.484105441562816,1,0,-9,54,0,-1,-19.99014699681006,0,0,0,74,2,3,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.55437297620148,8.680115932812626,0,0,58.47,50.22,6,1,0,0,4,4,1,978,0,0,0 +8510,10443,19033,19032,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,54,0,1,51.67482542311765,0,0,0,73,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.408707932692447,0,0,0,62.42,45.64,7,1,0,0,4,4,1,978,0,0,0 +8511,10444,19034,-9,19036,-9,2,1,0,17,2,0,3,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-957.9713011892687,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,6,1,1,778.5,0,0,0 +8511,10444,19035,-9,19036,-9,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-992.1973439419648,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,1,1,778.5,0,0,0 +8511,10444,19036,-9,-9,-9,1,1,0,36,3,0,3,0,2,-9,6,3,0,5,0,0,0,4,0,0,0,-9,0,-845.9781252928627,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.8339834129316,3,46.23,52.32,6,3,0,0,6,1,1,778.5,0,0,0 +8511,10444,19037,-9,19036,-9,3,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.439401463637,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,1,1,778.5,0,0,0 +8512,10445,19038,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,3,0,7.501365711784391,6.962206305028828,3,0,0,0,-9,0,-924.8643475860184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.10065886016651,7.125153119761898,0,0,39.05,59.16,6,1,0,0,7,2,1,862,0,0,0 +8513,10446,19039,19040,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,3,0,5.40920615767382,5.232317399338956,1,0,-9,6,0,2,79.59461219490419,0,0,0,83,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.437811903715702,5.404630891326734,0,0,59.84,49.54,6,1,0,0,12,2,1,567,0,0,0 +8513,10446,19040,19039,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-2,15.25375079804864,0,0,0,85,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,4.499277808023999,0,0,0,0,1,1,0,1.766062900438856,0,0,0,53,45,6,1,0,0,12,2,1,567,0,0,0 +8514,10447,19041,19042,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,54,0,0,53.84222661327154,0,0,0,74,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.853544459600382,0,0,0,45.99,57.05,5,1,0,0,9,4,1,542.5,0,0,0 +8514,10447,19042,19041,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,8.53645860815115,8.558778886313478,1,0,-9,54,0,0,-64.04966778117603,0,0,0,74,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.657675329022734,0,0,60.7,47.65,6,1,0,0,9,4,1,542.5,0,0,0 +8515,10448,19043,19044,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,3,9.108927452650816,9.165581514578717,0,1,0,-9,8,0,3,-8.09358741322349,0,0,0,44,1,3,1,-9,-9,2019,1,1,17,5,67,59,15,1,5,1,0,14.97129933106017,14.97129933106017,0,0,0,0,0,0,0,0,0,0,7.80076227636149,0,0,0,17.8,66.2,3,1,0,0,5,5,1,492.5,0,0,0 +8515,10448,19044,19043,-9,-9,1,1,0,44,1,0,0,0,1,-9,2,1,0,3,8.72503921606838,8.508333986568564,0,1,0,-9,8,0,-3,9.547900166917147,0,0,1,47,1,3,1,2,3,2019,1,2,7,0,38,37,15,1,0,1,0,19.8173517687807,19.8173517687807,0,0,0,0,0,0,0,0,0,0,7.556694051140389,0,0,0,52,54.51,6,1,0,0,5,5,1,492.5,0,0,0 +8516,10449,19045,19046,-9,19047,1,1,1,61,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,33,0,-7,0,0,0,0,68,3,3,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.571148968537281,0,118.5961263681506,3,44.59,50.28,2,1,0,0,5,1,1,1224,0,0,0 +8516,10449,19046,19045,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,32,0,7,0,0,0,0,61,2,2,3,-9,3,2019,4,1,24,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.787529547790714,0,111.2978817146536,3,30.27,45.46,2,1,0,0,5,1,1,1224,0,0,0 +8516,10450,19047,-9,-9,-9,4,1,1,96,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-946.9920125847547,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.62086957642234,0,0,0,56,43,6,5,0,0,5,1,1,236,0,0,0 +8516,10451,19048,-9,-9,19047,3,1,0,68,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-890.1505857157111,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,0,0,15,4,0,-9,1,0,0,1,0,0,0,0,146.4848708254514,0,1,1,0,0,0,0,0,59.62,33.74,6,1,0,0,5,1,1,491,0,0,0 +8517,10452,19049,19051,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,2,10.03807423846848,9.483112960900074,0,2,0,-9,8,0,0,89.86129663533475,0,0,0,49,1,5,1,2,2,2019,1,1,7,1,50,50,15,1,1,1,0,41.092126476664,41.092126476664,0,0,0,0,0,0,0,0,0,0,7.038208122143978,0,0,0,53.48,46.24,6,1,0,0,8,5,1,1301.8,0,0,0 +8517,10452,19050,-9,19051,19049,5,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.8000129534142,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,1301.8,0,0,0 +8517,10452,19051,19049,-9,-9,1,1,0,49,1,0,2,0,1,-9,1,1,0,5,7.648560028708212,6.933968394891563,0,2,0,-9,8,0,0,-16.48163032277473,0,0,0,49,1,2,1,2,2,2019,1,2,8,0,10,15,15,1,0,1,0,17.39579886645199,17.39579886645199,0,0,0,0,0,0,0,0,0,0,7.475700268903161,0,0,0,52.81,56.94,6,1,0,0,8,5,1,1301.8,0,0,0 +8517,10452,19052,-9,19051,19049,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.05369120938,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,5,1,1301.8,0,0,0 +8517,10452,19053,-9,19051,19049,3,1,0,17,2,0,2,0,2,1,2,3,0,3,5.698301279576254,5.430855546681387,0,2,0,0,0,-9,0,-995.9808324234732,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,7,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,8,5,1,1301.8,0,0,0 +8518,10453,19054,19055,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.222697307720459,8.19126301959278,1,0,-9,45,0,0,60.21826158506831,0,0,0,66,1,4,3,2,2,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.755707181114079,8.379425947540867,1.282100386834954,3,44.89,53.77,6,1,0,0,7,4,1,328.5,0,0,0 +8518,10453,19055,19054,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,6.947665492564398,7.008639574968207,1,0,-9,45,0,0,39.56786220679321,0,0,0,66,1,3,3,2,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.709451344155275,6.872408617769564,7.514117242190596,3,39.33,58.88,5,1,0,0,7,4,1,328.5,0,0,0 +8519,10454,19056,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1129.322595641862,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.71,54.32,5,1,0,0,5,1,1,655,0,0,0 +8520,10455,19057,19058,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,7.201174490937283,7.163099914837886,1,0,-9,58,0,-3,-1.887245470192729,0,0,0,82,2,4,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9240480999741244,7.049755906669303,0,0,53.35,32.27,5,1,0,0,7,3,1,412.5,0,0,0 +8520,10455,19058,19057,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,4,0,7.908658799304223,7.797824636376834,1,0,-9,58,0,3,18.14372487665142,0,0,0,79,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.263317716186649,8.133280289284043,0,0,63,35.63,6,1,0,0,7,3,1,412.5,0,0,0 +8521,10456,19059,19060,-9,-9,2,1,1,34,1,0,0,0,2,-9,1,1,0,4,7.530443812515973,6.974148340963083,0,1,0,-9,2,0,0,130.6035730490863,0,0,0,34,1,4,1,-9,-9,2019,1,1,8,0,15,20,15,1,0,1,0,13.5820682012422,13.5820682012422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,1,446,0,0,0 +8521,10456,19060,19059,-9,-9,1,1,0,34,1,0,0,0,1,-9,2,1,0,4,8.401840181669284,8.235015849040622,0,1,0,-9,2,0,0,7.033734417736476,0,0,1,34,2,4,1,2,2,2019,1,2,6,0,45,40,15,1,0,1,0,12.74109521052926,12.74109521052926,0,0,0,0,0,0,0,0,0,0,2.663728643710278,0,0,0,61.44,40.48,7,1,0,0,2,4,1,446,0,0,0 +8522,10457,19061,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,2,7.618260890619056,7.553431206381044,0,3,0,0,0,-9,0,-787.5971532575212,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,25,30,15,1,0,-9,0,10.23532541706811,10.23532541706811,0,0,0,0,0,0,0,1,1,0,0,0,11.52895215765489,3,58.56,46.45,6,1,0,0,7,3,1,417,0,0,0 +8522,10458,19062,-9,19061,-9,2,1,1,22,2,0,0,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1046.87216647316,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.47,60.56,3,1,0,1,7,1,1,376,0,0,0 +8523,10459,19063,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,3,0,6.473824078721948,6.63721678155983,3,0,0,0,-9,0,-958.9603951091194,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.705876456440127,0,0,62.66,52.4,7,1,0,0,12,2,0,835,0,0,0 +8524,10460,19064,-9,19065,-9,4,1,0,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1045.459618506091,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,2,0,315,0,0,0 +8524,10460,19065,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,4,7.026215844181596,7.580846827240036,6.60438066438314,4,0,0,0,-9,0,-1066.125189375184,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,1,20,22,15,1,1,-9,0,4.684753448457917,4.684753448457917,0,0,0,0,0,0,0,1,1,0,7.410962222213204,0,0,0,48.76,53.24,6,1,0,1,9,2,0,315,0,0,0 +8524,10461,19066,-9,19065,-9,3,1,0,22,2,0,1,0,2,-9,7,2,0,5,7.538438106622562,7.600762374207281,0,3,0,0,0,-9,0,-1035.556708013785,1,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,30,25,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,7,1,0,0,9,3,0,347,0,0,0 +8525,10462,19067,-9,19069,19068,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.672626250406,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,5,1,1246.5,0,0,0 +8525,10462,19068,19069,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.425988198663722,8.289197825504697,0,2,0,-9,14,0,3,-7.40265393068712,0,0,0,41,1,5,1,3,3,2019,1,1,8,0,42,37,15,1,0,1,0,9.80270957722294,9.80270957722294,0,0,0,0,0,0,0,1,1,0,3.338127305966546,0,0,0,57.16,56.15,6,1,0,0,13,5,1,1246.5,0,0,0 +8525,10462,19069,19068,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,8.87185205387874,8.782586263212067,0,2,0,-9,14,0,-3,53.17211608216373,0,0,1,44,2,4,1,2,3,2019,1,2,7,0,40,46,15,1,0,1,0,20.14217458134254,20.14217458134254,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.81,59.64,6,1,0,0,13,5,1,1246.5,0,0,0 +8525,10462,19070,-9,19069,19068,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.71720557778,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,5,1,1246.5,0,0,0 +8526,10463,19071,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,3,0,7.78365022361887,7.662518080341929,3,0,0,0,-9,0,-985.9738652525186,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.330524314141051,7.90618741502608,0,0,53.71,49.66,6,1,0,0,10,3,1,677,0,0,0 +8527,10464,19072,19073,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,2,69.14744744037459,-9,0,0,61,2,4,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.027735937451125,0,3.977202683888794,3,62.28,34.91,7,3,0,0,6,2,1,306,0,0,0 +8527,10464,19073,19072,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,4,7.243665633551588,7.188415674365398,5.603489812403113,1,0,-9,44,0,-2,56.66054854605684,0,0,0,63,3,3,3,3,3,2019,2,2,6,0,30,30,15,1,0,4,0,5.660380897742787,5.660380897742787,0,0,0,0,0,0,0,1,1,0,5.571359652905809,5.97812656933445,8.83296842545332,3,61.12,51.57,7,3,0,0,6,2,1,306,0,0,0 +8527,10465,19074,-9,19072,19073,3,1,0,36,2,0,0,0,1,-9,2,1,0,3,8.317110373335357,8.034971229306546,0,3,0,0,0,-9,0,-1139.94818172019,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,1,50,38,15,1,1,-9,1,8.721130388341775,8.721130388341775,0,0,0,0,0,0,0,1,1,0,1.40123980682696,0,0,3,43.37,57.28,5,3,0,0,6,4,1,981,0,0,0 +8527,10466,19075,-9,19072,19073,4,1,1,30,3,0,0,0,2,-9,2,1,0,3,8.097470027656225,7.911476040622508,0,3,0,0,0,-9,0,-828.3898851871459,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,42,40,15,1,1,-9,1,8.829578291189426,8.829578291189426,0,0,0,0,0,0,0,1,1,0,1.025475024906194,0,0,0,40.91,58.37,5,3,0,0,6,4,1,2050,0,0,0 +8528,10467,19076,19077,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,6.601372755501274,6.385232507536941,1,0,-9,7,0,-4,92.22385312031356,0,0,0,67,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.450992622010143,6.473540401401423,0,0,57.16,56.15,1,1,0,0,12,4,1,448.5,0,0,0 +8528,10467,19077,19076,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.947970693967158,8.095819046048115,1,0,-9,7,0,4,-53.29336299494414,0,0,0,63,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.381758254221554,8.612911371738454,0,0,57.16,56.15,6,1,0,0,12,4,1,448.5,0,0,0 +8529,10468,19078,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-969.4365281072301,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.54,17.76,4,1,0,1,6,1,0,1096,0,0,0 +8529,10469,19079,-9,19078,-9,2,1,1,33,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1038.788539104574,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.58409208702216,3,28.54,65.51000000000001,6,1,1,1,6,1,0,292,0,0,0 +8530,10470,19080,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,3.2733089506662,3.320848903973237,3,0,0,0,-9,0,-1064.182532061983,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.87223341625094,0,0,51.08,49.24,6,1,0,0,12,1,1,173,0,0,0 +8531,10471,19081,19085,-9,-9,2,1,0,38,1,1,3,0,1,-9,2,1,0,3,7.400454318937549,7.434550772895069,0,2,0,-9,10,0,-4,-53.91716482058988,-9,0,1,42,2,5,1,-9,-9,2019,1,1,34,12,36,0,15,1,12,1,0,5.743081510124271,5.743081510124271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.66,60.64,1,1,0,1,5,3,0,569,0,0,0 +8531,10471,19082,-9,19081,19085,4,1,0,11,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1018.545522289396,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,5,3,0,569,0,0,0 +8531,10471,19083,-9,19081,19085,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1069.962538775881,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,3,0,569,0,0,0 +8531,10471,19084,-9,19081,19085,3,1,1,13,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-917.3858677044191,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,5,3,0,569,0,0,0 +8531,10471,19085,19081,-9,-9,1,1,1,42,1,1,3,0,2,-9,2,1,0,5,7.435202023333212,7.585191363610004,0,2,0,-9,10,0,4,10.46136866845992,0,0,0,38,1,3,1,3,2,2019,1,2,10,0,25,25,15,1,0,1,0,7.974767636078189,7.974767636078189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,4,1,0,0,5,3,0,569,0,0,0 +8532,10472,19086,19087,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,6.337200399104658,6.38799934838903,1,0,-9,6,0,12,-133.5464554613798,0,0,0,52,2,4,1,3,3,2019,3,2,12,1,0,22,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.93519141085378,6.532441540361367,0,0,49.11,47.35,6,1,0,0,6,3,1,727,0,0,0 +8532,10472,19087,19086,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.11545424590981,8.375440303501431,0,1,0,-9,6,0,-12,70.07585186226528,0,0,0,64,2,4,3,-9,-9,2019,2,1,17,5,38,37,15,1,5,4,0,9.588823744497741,9.588823744497741,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.6,51.85,4,1,0,0,6,3,1,727,0,0,0 +8533,10473,19088,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,3,0,7.120037665074729,6.87599930979287,3,0,0,0,-9,0,-914.9021555138031,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.555114748115324,7.047886965376715,0,0,52.2,48.95,6,1,0,0,2,3,1,429,0,0,0 +8534,10474,19089,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,2,8.325630986886354,8.93274523940773,6.856580253119136,3,0,0,0,-9,0,-1063.422696087259,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,33,12,40,38,15,1,12,-9,0,15.23021689324999,15.23021689324999,0,0,0,0,0,0,0,1,1,0,7.579278544102636,0,0,0,20.46,61.36,2,1,0,1,8,5,0,792,0,0,0 +8535,10475,19090,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-941.296137060167,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,4,1,1,0,13,1,0,1909,0,0,0 +8535,10476,19091,-9,-9,19090,2,1,1,22,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-972.2037721027032,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,1,0,13,1,0,1312,0,0,0 +8536,10477,19092,-9,19093,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1069.846422829358,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,2,0,0,2,3,0,656.75,0,0,0 +8536,10477,19093,19095,-9,-9,1,1,0,37,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,3,0,-16,-73.31434468578014,0,0,1,53,2,4,1,2,2,2019,3,4,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.43,46.56,2,1,0,0,2,3,0,656.75,0,0,0 +8536,10477,19094,-9,19093,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-998.7626687212387,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,2,0,0,2,3,0,656.75,0,0,0 +8536,10477,19095,19093,-9,-9,4,1,1,53,1,0,2,0,2,-9,1,1,0,4,8.090081168497825,8.048562953409395,0,2,0,-9,3,0,16,108.2428813477314,0,0,0,37,2,2,3,-9,-9,2019,2,1,7,0,60,60,15,1,0,3,0,5.835952624852172,5.835952624852172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,2,3,0,656.75,0,0,0 +8537,10478,19096,19097,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.462816952955749,7.695210425526321,0,1,0,-9,1,0,0,-49.52964339112476,0,0,0,49,2,3,1,2,2,2019,1,2,5,0,30,30,15,1,0,1,0,7.926347076207988,7.926347076207988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,6,1,0,1,10,4,1,283,0,0,0 +8537,10478,19097,19096,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,3,8.04136399987611,7.735636568733645,0,1,0,-9,1,-9,0,-12.50656116909882,-9,0,0,49,2,4,1,-9,-9,2019,1,1,11,1,80,0,15,1,1,1,0,4.910873632529939,4.910873632529939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.85,31.41,5,1,0,1,10,4,1,283,0,0,0 +8538,10479,19098,-9,19099,19100,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.8304932959994,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,9,5,1,376.3333333333333,0,0,0 +8538,10479,19099,19100,-9,-9,1,1,0,35,1,1,1,0,2,-9,2,1,0,4,9.100577742338293,9.072839256599194,0,2,0,-9,9,0,-1,-32.39627307336906,0,0,1,36,1,5,1,-9,-9,2019,1,2,14,3,55,48,15,1,3,1,0,20.16885167056883,20.16885167056883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.64,55.63,5,1,0,0,9,5,1,376.3333333333333,0,0,0 +8538,10479,19100,19099,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,5,9.510132160910109,9.393759949436191,0,2,0,-9,9,0,1,-113.2779701479883,0,0,0,35,2,4,1,-9,-9,2019,1,1,10,1,50,50,15,1,1,1,0,23.26790171428528,23.26790171428528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,6,1,0,0,9,5,1,376.3333333333333,0,0,0 +8539,10480,19101,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,5,8.680418160180645,8.850254931142901,0,3,0,0,0,-9,0,-989.389440254434,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,54,50,15,1,1,-9,0,13.70696999551097,13.70696999551097,0,0,0,0,0,0,0,0,0,0,7.942932173811214,0,6.55355892666209,3,54.69,57.47,6,1,0,0,12,5,1,187,0,0,0 +8540,10481,19102,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,5.791721128933001,5.965546898706708,3,0,0,0,-9,0,-926.2140272635837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.960449897077885,0,0,49.63,54.22,7,1,0,0,6,2,1,409,0,0,0 +8541,10482,19103,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,6.664223190247297,6.755714537261609,3,0,0,0,-9,0,-921.3866933663605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.857529047489447,0,0,36.65,50.95,6,1,0,0,12,2,0,585,0,0,0 +8542,10483,19104,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,7,2,0,4,7.403216084578541,7.222165195203795,0,3,0,0,0,-9,0,-962.0996733352065,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,8,22,33,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.02,61.9,2,2,0,1,12,3,0,2057,0,0,0 +8543,10484,19105,19106,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,4,7.089615458121959,7.753081598310026,7.623020351910093,1,0,-9,31,0,-1,-70.4096732501325,0,0,0,61,1,5,1,1,2,2019,1,2,8,1,2,5,15,1,1,1,0,66.17142850641109,66.17142850641109,0,0,0,0,0,0,0,0,0,0,3.334577912031537,7.467000732239119,0,3,59.29,49.68,6,1,0,0,9,3,1,272,0,0,0 +8543,10484,19106,19105,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,5,0,0,0,1,0,-9,30,0,1,-58.20733780532066,0,0,0,60,1,4,1,3,3,2019,1,1,7,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,1,1,0,0,9,3,1,272,0,0,0 +8544,10485,19107,19108,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,5,8.168465838606229,8.42621905180302,0,1,0,-9,2,0,-1,119.6080930698466,0,1,1,26,1,4,1,2,1,2019,1,2,10,0,50,56,15,1,0,1,0,8.382784598107051,8.382784598107051,0,0,0,0,0,0,0,0,0,0,.6890127026891996,0,0,0,45.46,61.87,6,1,0,0,6,4,1,1091.5,0,0,0 +8544,10485,19108,19107,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,4,8.086349624002024,7.704225792991252,0,1,0,-9,2,0,1,-41.71369198203008,-9,1,0,25,1,5,1,-9,-9,2019,1,1,10,0,40,0,15,1,0,1,0,8.933888510148641,8.933888510148641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,6,4,1,1091.5,0,0,0 +8545,10486,19109,-9,-9,-9,4,1,0,20,2,0,0,0,2,1,2,1,0,5,6.27493462379809,6.414542295803044,0,3,0,0,0,-9,0,-952.5829440200151,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,15,0,15,1,0,-9,1,4.148211784410744,4.148211784410744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,12,2,1,466,0,0,0 +8546,10487,19110,19111,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.744927377312747,8.454080852229595,0,1,0,-9,5,0,-1,-60.61802178374768,0,1,1,29,1,5,1,2,2,2019,1,2,10,0,43,45,15,1,0,1,0,18.40227676477855,18.40227676477855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,8,5,0,572.5,0,0,0 +8546,10487,19111,19110,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,5,9.049080449906677,8.879447888418458,0,1,0,-9,5,0,1,1.169424811720546,0,1,0,28,1,4,1,-9,-9,2019,1,1,7,0,48,52,15,1,0,1,0,19.15085643229956,19.15085643229956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,8,5,0,572.5,0,0,0 +8547,10488,19112,19113,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.407450831051804,8.194334352946809,0,1,0,-9,9,0,-2,-95.07206812859579,0,0,0,59,2,5,1,2,1,2019,1,1,13,3,60,68,15,1,3,1,0,11.39694474404969,11.39694474404969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.39,43.31,6,1,0,0,9,5,1,642.5,0,0,0 +8547,10488,19113,19112,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,5,7.932848709155498,7.561187701333041,0,1,0,-9,9,0,2,-6.934914911234158,0,0,0,57,1,3,1,2,2,2019,1,2,8,0,34,37,15,1,0,1,0,8.481287877489928,8.481287877489928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,1,1,0,0,9,5,1,642.5,0,0,0 +8548,10489,19114,-9,19116,19115,2,1,1,17,2,0,6,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1129.276879177082,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.97897780146137,3,54.37,54.8,5,1,0,0,5,2,0,604.2857142857143,0,0,0 +8548,10489,19115,19116,-9,-9,7,1,1,35,1,0,6,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-2,-22.96413461524749,0,0,0,37,3,2,3,-9,-9,2019,4,1,14,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,112.8169129866339,3,50.96,45.55,5,1,0,0,5,2,0,604.2857142857143,0,0,0 +8548,10489,19116,19115,-9,-9,1,1,0,37,1,0,6,0,3,-9,6,3,0,2,0,5.199413589975183,5.801154891709476,2,0,-9,7,0,2,92.01375331026954,0,0,1,35,2,3,3,3,3,2019,4,7,25,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.033218128557877,0,78.41275802638364,3,13.49,45.49,3,1,0,0,5,2,0,604.2857142857143,0,0,0 +8548,10489,19117,-9,19116,19115,6,1,1,8,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.0913693690658,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,604.2857142857143,0,0,0 +8548,10489,19118,-9,19116,19115,5,1,1,13,2,0,6,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1083.214570044878,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,2,0,604.2857142857143,0,0,0 +8548,10489,19119,-9,19116,19115,8,1,0,5,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.2745280023126,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,2,0,604.2857142857143,0,0,0 +8548,10489,19120,-9,19116,19115,4,1,1,13,2,0,6,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1007.686229485596,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,2,0,604.2857142857143,0,0,0 +8549,10490,19121,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,3,0,5.791577842548362,5.964486539197645,3,0,0,0,-9,0,-904.9993182937463,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,.5942259552299607,0,0,0,6.515569031361243,0,1,1,0,5.010358120032933,6.263874584956993,0,0,54.43,32.77,6,1,0,0,1,2,0,834,0,0,0 +8550,10491,19122,19123,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,5,0,6.576553008374768,6.249339077344509,1,0,-9,5,0,0,-96.46486857575771,0,0,0,71,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.072970582419957,6.447709387627058,0,0,54.69,57.47,6,1,0,0,4,2,1,560,0,0,0 +8550,10491,19123,19122,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,0,-13.45179647960203,0,0,0,71,3,5,3,3,3,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8253599400746137,0,0,0,51,47,5,1,0,0,4,2,1,560,0,0,0 +8551,10492,19124,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,3,7.665911013002686,7.44517755694131,0,3,0,0,0,-9,0,-1139.427021055896,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,35,35,15,1,0,-9,0,5.882377835749868,5.882377835749868,0,0,0,0,0,0,0,0,0,0,2.119293438871075,0,0,0,56.1,49.93,5,1,0,0,10,3,0,788,0,0,0 +8552,10493,19125,-9,19126,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1010.018396279542,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,3,1,2245.5,0,0,0 +8552,10493,19126,-9,-9,-9,1,1,0,51,2,0,1,0,2,-9,2,1,0,3,7.835566905728374,8.057582222926634,0,4,0,0,0,-9,0,-1087.87776542833,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,20,18,15,1,0,-9,0,20.8725989309006,20.8725989309006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.65,55.86,6,4,0,0,8,3,1,2245.5,0,0,0 +8553,10494,19127,19128,-9,-9,1,1,0,42,1,0,0,0,1,-9,2,1,0,4,8.584783817984002,8.857327147205563,0,1,0,-9,10,0,-5,83.83540307600758,0,0,1,47,2,4,1,2,2,2019,1,2,13,2,43,42,15,1,2,1,0,15.7448403275321,15.7448403275321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,6,1,0,0,6,5,1,876,0,0,0 +8553,10494,19128,19127,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.077197737521178,8.37219822149901,0,1,0,-9,10,0,5,.7769105798064337,0,0,0,42,1,4,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,10.98700204336206,10.98700204336206,0,0,0,0,0,0,0,0,0,0,2.730639667623918,0,0,0,60.12,54.8,6,1,0,0,6,5,1,876,0,0,0 +8554,10495,19129,-9,-9,-9,1,1,0,36,3,0,0,0,3,-9,2,1,0,2,7.762114311026852,7.64549506843305,0,3,0,0,0,-9,0,-944.4932430126702,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,30,30,15,1,9,-9,0,8.050766288467699,8.050766288467699,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.16,22.85,2,3,0,1,8,3,0,878,0,0,0 +8554,10496,19130,-9,-9,-9,3,1,0,44,3,0,0,0,2,-9,2,1,0,2,0,0,0,3,0,0,0,-9,0,-985.3750533870449,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,7,0,16,15,1,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.86,31.76,2,3,0,1,8,1,0,158,0,0,0 +8555,10497,19131,19132,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,65,0,-8,-.0822020352791211,0,0,0,91,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.132142968714028,0,118.5165513550664,1,53,44,6,1,0,0,9,1,1,806,0,0,0 +8555,10497,19132,19131,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,3,0,2.627663119035333,2.42582682372097,1,0,-9,65,0,8,-45.72708563086032,0,0,0,83,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.337395312833221,2.742147648957614,0,0,56,44,6,1,0,0,9,1,1,806,0,0,0 +8556,10498,19133,19134,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,36,0,-3,28.0407466212869,0,0,0,68,2,1,3,3,3,2019,4,2,26,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.29660006362689,2,46.02,37.31,2,1,0,0,5,1,0,1847,0,0,0 +8556,10498,19134,19133,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,1,0,1.797265161576866,2.406296276191885,1,0,-9,36,0,3,13.52906918833829,0,0,0,65,3,2,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.983614385384125,28.26842947688754,3,44.32,16.32,3,1,0,0,5,1,0,1847,0,0,0 +8556,10499,19135,-9,19133,19134,3,1,1,30,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1099.50595077333,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,5,1,0,492,0,0,0 +8557,10500,19136,19139,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.590468609334314,8.745651135897218,0,2,0,-9,8,0,3,120.0035417295208,0,0,0,38,2,3,1,-9,-9,2019,1,1,3,1,39,41,15,1,1,1,0,21.04835984904981,21.04835984904981,0,0,0,0,0,0,0,1,1,0,4.942759850843014,0,0,0,64.05,50.24,6,1,0,0,12,4,1,2997,0,0,0 +8557,10500,19137,-9,19139,19136,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.8450435250462,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,2997,0,0,0 +8557,10500,19138,-9,19139,19136,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.739418429332,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,2997,0,0,0 +8557,10500,19139,19136,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,3,7.333234401663888,7.453383735849611,0,2,0,-9,8,0,-3,20.65151930314083,0,0,1,41,1,4,1,2,2,2019,1,2,9,1,23,23,15,1,1,1,0,8.646193916735033,8.646193916735033,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,12,4,1,2997,0,0,0 +8558,10501,19140,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,1,1,0,5,7.19386288854251,7.496680442666753,5.941073199281905,3,0,0,0,-9,0,-1052.179669707723,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,20,20,15,1,0,-9,0,11.6222697731784,11.6222697731784,0,0,0,0,0,0,0,1,1,0,0,6.10888608023739,0,0,42.75,61.95,4,1,0,0,9,3,1,4769,0,0,0 +8559,10502,19141,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-898.0817848943302,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.756181716701687,3,51,60,7,1,1,0,11,1,0,1686,0,0,0 +8560,10503,19142,-9,19143,19144,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.5227687009886,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,5,1,851.6666666666666,0,0,0 +8560,10503,19143,19144,-9,-9,2,1,0,30,1,1,1,0,1,-9,2,1,0,5,8.689612188657062,8.319704212149363,0,2,0,-9,10,0,-7,119.2305344407602,0,0,1,37,2,3,1,2,2,2019,1,1,19,7,30,0,15,1,7,1,0,19.32897769376499,19.32897769376499,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.92,69.01000000000001,5,1,0,0,7,5,1,851.6666666666666,0,0,0 +8560,10503,19144,19143,-9,-9,1,1,1,37,1,1,1,0,2,-9,2,1,0,3,8.006200218777614,8.243460588469429,0,2,0,-9,10,0,7,40.36458640918563,0,0,0,30,1,5,1,2,1,2019,1,2,11,1,49,43,15,1,1,1,0,9.260279332794685,9.260279332794685,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.55,54.01,2,1,0,0,7,5,1,851.6666666666666,0,0,0 +8561,10504,19145,-9,19146,-9,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-944.3156246282693,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,1,1,378.3333333333333,0,0,0 +8561,10504,19146,-9,19148,-9,1,1,0,37,2,1,2,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1001.363819796264,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,32,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.284969181566739,3,16.04,23.99,1,3,0,0,6,1,1,378.3333333333333,0,0,0 +8561,10504,19147,-9,19146,-9,2,1,0,17,2,1,2,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1075.132856208265,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.4118294157708,3,27.77,42.9,3,3,0,0,6,1,1,378.3333333333333,0,0,0 +8561,10505,19148,-9,-9,-9,3,1,0,58,3,1,2,0,3,-9,8,3,1,3,0,0,0,4,0,0,0,-9,0,-1034.641747570476,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.0976100585318,3,49,48,5,3,0,0,6,1,1,988,0,0,0 +8562,10506,19149,19150,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,4,7.711328930356256,7.957536326495573,0,2,0,-9,31,0,0,-31.8506151112989,0,0,0,49,1,3,1,3,3,2019,1,1,6,0,45,30,15,1,0,1,0,6.737233134749145,6.737233134749145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,4,3,1,743.5,0,0,0 +8562,10506,19150,19149,-9,-9,1,1,1,49,1,0,1,0,1,-9,1,1,0,3,6.817717821598182,6.702630751494543,0,2,0,-9,30,0,0,176.2686977894724,0,0,0,49,2,4,1,3,2,2019,1,2,6,0,30,36,15,1,0,1,0,4.040593242138022,4.040593242138022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,3,0,0,4,3,1,743.5,0,0,0 +8562,10507,19151,-9,19149,19150,3,1,0,23,2,0,1,0,2,-9,2,1,0,4,8.073596042701702,7.51041874078865,0,3,0,0,0,-9,0,-1009.135784887376,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,38,37,15,1,0,-9,1,9.159154142834948,9.159154142834948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,3,0,0,4,4,1,110,0,0,0 +8562,10508,19152,-9,19149,19150,4,1,0,18,2,0,1,1,2,0,7,2,0,4,7.006369457459909,6.857222915045797,0,3,0,0,0,-9,0,-1027.083289196212,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,6,3,0,0,4,4,1,1123,0,0,0 +8563,10509,19153,19154,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,7.823237181810494,7.321017828293309,1,0,-9,7,0,-2,5.793374213934789,0,0,0,69,2,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.221332951573461,7.831764545174829,0,0,53.78,48.41,6,1,0,0,7,3,1,431.5,0,0,0 +8563,10509,19154,19153,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,6.427495381638406,6.462843747849402,1,0,-9,7,0,2,-9.493107071752314,0,0,0,67,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.022892899920797,6.834543459433551,0,0,50.82,36.52,4,1,0,0,7,3,1,431.5,0,0,0 +8564,10510,19155,19156,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.675352848089883,8.731756948670151,0,1,0,-9,4,0,1,-50.2425419566442,0,0,0,30,1,3,1,-9,-9,2019,1,1,10,0,35,36,15,1,1,1,0,18.0610004247688,18.0610004247688,0,0,0,0,0,0,0,1,1,0,1.874324713923093,0,0,0,50,57,5,3,0,0,8,5,1,1155.5,0,0,0 +8564,10510,19156,19155,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,3,8.900986797892168,8.824564374620659,0,1,0,-9,4,0,-1,-115.8468320056597,0,0,1,31,1,4,1,3,3,2019,1,2,18,8,36,40,15,1,8,1,0,21.23907493769648,21.23907493769648,0,0,0,0,0,0,0,1,1,0,8.585257132149566,0,0,0,30.92,61.67,5,3,0,0,8,5,1,1155.5,0,0,0 +8564,10511,19157,-9,-9,-9,3,1,0,66,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-987.2309733816518,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,3,1,0,8,1,1,456,0,0,0 +8565,10512,19158,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,1,1,0,3,7.974984420967466,8.03061665145426,0,3,0,0,0,-9,0,-966.1783508445858,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,35,60,15,1,1,-9,0,10.76205509514938,10.76205509514938,0,0,0,0,0,0,0,1,1,0,3.674509186733818,0,1.18067728383777,3,49.58,55.59,5,1,0,0,8,4,1,485,0,0,0 +8566,10513,19159,19160,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,8.150450386341742,8.090232730735087,1,0,-9,59,0,2,36.72021757887704,0,0,0,76,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.384576757767161,7.802709594995253,0,0,57.92,51.82,7,1,0,0,8,3,1,264,0,0,0 +8566,10513,19160,19159,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,5.555532608756732,5.392366370883797,1,0,-9,6,0,-2,124.5530268818333,0,0,0,78,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.536306682147486,0,0,64.23,39.15,6,1,0,0,8,3,1,264,0,0,0 +8567,10514,19161,19163,-9,-9,1,1,1,30,1,0,2,0,2,-9,2,1,0,3,8.27464508238886,8.318348072887806,0,2,0,-9,7,0,3,-55.61392127843169,0,0,0,27,2,3,1,2,2,2019,1,2,17,5,37,37,15,1,5,1,0,11.2011151556549,11.2011151556549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.64,52.35,3,1,0,0,6,4,0,541.5,0,0,0 +8567,10514,19162,-9,19163,19161,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.1206773127866,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,0,541.5,0,0,0 +8567,10514,19163,19161,-9,-9,2,1,0,27,1,0,2,0,2,-9,2,1,0,3,8.016840836842208,7.764429297181778,0,2,0,-9,7,0,-3,-94.73101429332934,0,1,1,30,2,3,1,-9,-9,2019,1,1,26,11,36,36,15,1,11,1,0,9.751482151297045,9.751482151297045,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.5,61.97,6,1,0,0,6,4,0,541.5,0,0,0 +8567,10514,19164,-9,19163,19161,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.25102220206,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,0,541.5,0,0,0 +8568,10515,19165,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,7.760862595362997,7.965594378188439,0,3,0,0,0,-9,0,-979.801718186157,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,56,15,1,3,-9,0,9.000906863070016,9.000906863070016,0,0,0,0,0,0,0,0,0,0,2.742389253346894,0,0,0,36.56,53.91,4,1,0,0,11,3,1,304,0,0,0 +8569,10516,19166,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,2,1,0,5,8.600268821150129,8.306961722480011,0,3,0,0,0,-9,0,-1006.626942117796,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,25,10,52,51,15,1,10,-9,0,7.42647626753,7.42647626753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,59.91,6,1,0,0,9,4,0,2434,0,0,0 +8570,10517,19167,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1125.761053215449,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.46,33.33,6,1,0,0,9,1,0,710,0,0,0 +8571,10518,19168,-9,-9,-9,1,1,0,29,2,2,3,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-900.6484412681141,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,54.04,5,1,0,0,13,1,0,495.25,0,0,0 +8571,10518,19169,-9,19168,-9,4,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-981.9466607866057,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,1,0,495.25,0,0,0 +8571,10518,19170,-9,19168,-9,2,1,0,5,2,2,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-909.4930077488497,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,495.25,0,0,0 +8571,10518,19171,-9,19168,-9,3,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1077.680380493387,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,1,0,495.25,0,0,0 +8572,10519,19172,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,4,8.437813159815873,8.48903895112751,0,3,0,0,0,-9,0,-978.7372842211656,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,30,30,15,1,3,-9,0,13.46636822407871,13.46636822407871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,55.12,6,1,0,0,11,4,1,816,0,0,0 +8572,10520,19173,-9,19172,-9,2,1,0,29,2,0,0,0,2,-9,2,1,0,4,7.331060485064547,7.209332570802258,0,3,0,0,0,-9,0,-891.3750918800193,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,29,39,15,1,0,-9,1,8.14535995808312,8.14535995808312,0,0,0,0,0,0,0,0,0,0,1.612305338941814,0,0,0,48.87,58.55,6,1,0,0,11,3,1,507,0,0,0 +8572,10521,19174,-9,19172,-9,3,1,1,27,2,0,0,0,2,-9,2,1,0,3,7.644253406797786,7.692257011848409,0,3,0,0,0,-9,0,-1032.30920573526,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,35,0,15,1,2,-9,1,7.475550911568095,7.475550911568095,0,0,0,0,0,0,0,0,0,0,7.840495960057058,0,0,0,46.89,54.32,5,1,0,0,11,3,1,237,0,0,0 +8573,10522,19175,19176,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,58,0,-3,-3.614283242554661,0,0,0,77,3,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.022415546044407,0,0,0,67.11,31.19,6,1,0,0,9,2,1,1072,0,0,0 +8573,10522,19176,19175,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,2,0,7.057484878900024,7.280471321903924,1,0,-9,7,0,3,-78.35215696012594,0,0,0,74,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,3.793506869200381,0,0,0,1,1,0,4.895783093771069,7.071778215871531,0,0,61.68,23.64,7,1,0,0,9,2,1,1072,0,0,0 +8574,10523,19177,19178,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,2,6.188270680107633,6.357347332794166,0,1,0,-9,2,0,1,88.27475848146811,0,0,0,50,2,4,1,2,2,2019,1,1,32,12,12,12,15,1,12,1,0,6.014547911439996,6.014547911439996,0,0,0,0,0,0,0,1,1,0,0,0,117.4460429304306,3,45.24,24.24,3,1,0,0,13,4,1,906,0,0,0 +8574,10523,19178,19177,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.642524767781662,8.658054932004339,0,1,0,-9,2,0,-1,-118.7212569872108,0,0,0,51,2,2,1,3,2,2019,1,2,7,0,41,42,15,1,0,1,0,16.11468323401251,16.11468323401251,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,5,1,0,0,13,4,1,906,0,0,0 +8574,10524,19179,-9,19177,19178,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.191814626543104,8.139798519500729,0,3,0,0,0,-9,0,-1047.27830624143,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,37,15,1,0,-9,1,12.16202489477584,12.16202489477584,0,0,0,0,0,0,0,1,1,0,.3097509394976546,0,0,0,55.78,49.92,5,1,0,0,13,4,1,493,0,0,0 +8574,10525,19180,-9,19177,19178,4,1,1,22,2,0,0,0,1,1,2,1,0,4,7.379129095928843,7.807404754715096,0,3,0,0,0,-9,0,-937.8066154656718,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,21,0,15,1,1,-9,1,11.45301547517617,11.45301547517617,0,0,0,0,0,0,0,1,1,0,2.195536835521508,0,0,0,57.16,56.15,6,1,0,0,13,3,1,705,0,0,0 +8575,10526,19181,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,2,1,0,3,8.110495595501828,8.310516749483568,0,3,0,0,0,-9,0,-945.3349265946216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,36,36,15,1,0,-9,0,13.42405986193518,13.42405986193518,0,0,0,0,0,0,0,0,0,0,5.396735630923519,0,0,3,52,54.51,7,1,0,0,11,4,1,606,0,0,0 +8576,10527,19182,-9,19184,19185,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.633507550399,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,4,1,1894,0,0,0 +8576,10527,19183,-9,19184,19185,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.570532178161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,4,1,1894,0,0,0 +8576,10527,19184,19185,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,3,8.051252800111566,7.715105559385607,0,2,0,-9,7,0,0,-60.60545889955991,0,0,1,37,2,4,1,2,2,2019,1,2,21,8,32,24,15,1,8,1,0,10.72279111812757,10.72279111812757,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.92,57.7,5,1,0,0,1,4,1,1894,0,0,0 +8576,10527,19185,19184,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.413491096197129,8.394185528196902,0,2,0,-9,7,0,0,28.13148467425701,0,0,0,37,2,3,1,-9,-9,2019,1,1,8,0,87,37,15,1,0,1,0,6.111462085966204,6.111462085966204,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,1,4,1,1894,0,0,0 +8577,10528,19186,-9,-9,-9,1,1,0,45,3,0,0,0,3,-9,8,3,1,1,0,5.210423049444292,5.331682699169685,3,0,0,0,-9,0,-982.3582835710819,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.910600199398378,5.647112788410906,0,3,53.52,21.75,4,1,0,0,12,2,0,436,0,0,0 +8578,10529,19187,19188,-9,-9,2,1,1,61,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,9,0,4,0,0,0,0,57,2,2,3,-9,-9,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,31.81,4,1,0,0,2,1,0,472.5,0,0,0 +8578,10529,19188,19187,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,9,0,-4,0,0,0,0,61,3,2,3,2,2,2019,4,2,29,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,33.53,2,1,0,0,2,1,0,472.5,0,0,0 +8578,10530,19189,-9,19188,19187,3,1,1,33,2,0,0,0,3,-9,2,1,0,4,8.020753285299058,7.874867534417787,0,3,0,0,0,-9,0,-988.8773635895548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,8.399291658463319,8.399291658463319,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,5,1,0,0,2,4,0,439,0,0,0 +8578,10531,19190,-9,19188,19187,4,1,1,27,2,0,0,0,2,-9,2,1,0,4,8.171961487993354,7.990332290714126,0,3,0,0,0,-9,0,-935.5289791006002,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,8.816601183371692,8.816601183371692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,0,0,2,4,0,747,0,0,0 +8579,10532,19191,-9,-9,-9,1,1,1,44,3,0,2,0,1,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.53158893417,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,76.15923776922145,3,51.49,57.57,6,4,0,0,2,1,0,285,0,0,0 +8580,10533,19192,19193,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,4,8.8590304327825,8.610857640878002,0,2,0,1,1,-9,-4,145.8984086865421,0,0,1,43,1,3,1,3,-9,2019,1,1,12,0,80,40,15,1,0,1,0,9.375472346027113,9.375472346027113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.26,53.71,6,1,0,0,7,5,1,519.75,0,0,0 +8580,10533,19193,19192,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,3,9.550716731315392,9.639259646683342,0,2,0,1,1,-9,4,8.808633056039309,0,0,0,39,2,4,1,2,2,2019,1,2,14,2,60,53,15,1,2,1,0,28.90143713410321,28.90143713410321,0,0,0,0,0,0,0,0,0,0,2.928608767447336,0,0,0,33.67,52.21,5,1,0,0,7,5,1,519.75,0,0,0 +8580,10533,19194,-9,19192,19193,3,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-994.3987973500018,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,5,1,0,0,7,5,1,519.75,0,0,0 +8580,10533,19195,-9,19192,19193,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-930.4530520487314,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,1,0,0,7,5,1,519.75,0,0,0 +8581,10534,19196,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,6.290945351376272,6.643063032281459,3,0,0,0,-9,0,-939.3263071898831,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.973345892118751,5.99353086660635,0,0,53,44,6,1,0,0,11,2,1,127,0,0,0 +8582,10535,19197,19198,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.504081184021876,7.853223716142871,0,1,0,-9,8,0,1,-58.5462347177014,0,0,0,56,2,2,3,3,2,2019,2,1,9,0,32,32,15,1,0,4,0,7.042630167158097,7.042630167158097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,2,4,1,334.5,0,0,0 +8582,10535,19198,19197,-9,-9,1,1,1,56,1,0,0,0,2,-9,4,3,0,2,6.91867138488816,8.378405703262269,7.641390863881585,1,0,-9,8,0,-1,-73.31973567330171,0,0,0,57,2,3,1,3,3,2019,3,2,10,1,25,30,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.035249628342762,7.789581962292708,0,0,54.03,33.91,6,1,0,0,2,4,1,334.5,0,0,0 +8583,10536,19199,19200,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,56,0,-2,64.18500973279858,0,0,0,75,3,4,3,3,3,2019,4,1,25,10,0,0,15,4,10,4,0,0,0,1,0,122.1760600554892,0,0,0,0,1,1,0,0,0,0,0,37.35,15.58,4,1,0,0,13,1,1,869.5,0,0,0 +8583,10536,19200,19199,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,3.509293668372081,3.364882350952089,1,0,-9,56,0,2,-123.4545361714091,0,0,0,73,3,1,3,3,3,2019,4,2,6,0,0,15,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.043365175987071,3.431920696402737,123.5207783756805,1,59.14,52.5,7,1,0,0,13,1,1,869.5,0,0,0 +8584,10537,19201,-9,-9,-9,1,1,1,42,3,0,0,0,1,-9,2,1,0,3,8.532283487746653,8.430202290964463,0,3,0,0,0,-9,0,-950.1194428110388,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,45,15,1,0,-9,0,10.20749466470052,10.20749466470052,0,0,0,0,0,0,0,0,0,0,2.151793419180448,0,0,0,58.32,50.22,6,1,0,0,9,5,1,2716,0,0,0 +8585,10538,19202,19203,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,55,0,3,-74.26075376375978,0,0,0,71,2,2,3,3,3,2019,4,2,13,4,0,0,15,4,4,4,0,0,0,1,0,6.790824014008458,4.672181796449768,0,0,0,1,1,0,0,0,0,0,46.57,19.21,5,1,0,1,4,2,1,549.5,0,0,0 +8585,10538,19203,19202,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,6.841296365644571,6.826761173089816,1,0,-9,55,0,-3,91.94451368839022,0,0,0,74,3,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.067486323241419,0,0,57.28,38.76,5,1,0,0,4,2,1,549.5,0,0,0 +8586,10539,19204,19205,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,8.28138559463606,8.120620270876129,0,1,0,-9,37,0,1,-14.38833124016622,0,0,0,57,2,1,3,3,2,2019,2,2,7,0,46,44,15,1,0,3,0,11.97003790053263,11.97003790053263,0,0,0,0,0,0,0,1,1,0,0,0,4.963849461040111,2,49.46,56.91,6,1,0,0,11,4,1,359,0,0,0 +8586,10539,19205,19204,-9,-9,2,1,0,57,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,37,0,-1,21.21861518050739,0,0,0,58,2,4,1,3,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.83,14.54,5,1,0,0,11,4,1,359,0,0,0 +8586,10540,19206,-9,19205,19204,4,1,0,31,2,0,0,0,1,-9,2,1,0,2,7.276017079623503,7.360820618933871,0,3,0,0,0,-9,0,-937.7205979668665,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,5,25,0,15,1,5,-9,1,8.356312752720763,8.356312752720763,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.72,46.89,4,1,0,0,11,3,1,1352,0,0,0 +8587,10541,19207,19208,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.912322618050995,8.516016324503521,0,1,0,-9,6,0,2,96.48756283326419,0,0,0,52,1,5,1,2,3,2019,1,2,23,10,38,38,15,1,10,1,0,20.92753256051424,20.92753256051424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.99,60.52,5,1,0,0,12,5,1,416,0,0,0 +8587,10541,19208,19207,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,5,8.642491120393352,9.058904225259848,0,1,0,-9,6,0,-2,-19.72418190823947,0,0,0,54,2,3,1,-9,-9,2019,1,1,15,3,48,48,15,1,3,1,0,21.56376905497286,21.56376905497286,0,0,0,0,0,0,0,0,0,0,7.053874196098803,0,0,0,28.99,65.06,5,1,0,0,12,5,1,416,0,0,0 +8588,10542,19209,19210,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,4,8.581710713370928,8.775157252872814,0,1,0,1,1,-9,-1,52.64725844668762,0,1,1,25,2,3,1,1,1,2019,1,2,9,1,38,40,15,1,1,1,0,15.45643681386777,15.45643681386777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,55.92,6,1,0,0,6,5,1,370.5,0,0,0 +8588,10542,19210,19209,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,3,8.374174074625698,8.612884422442717,0,1,0,-9,1,-9,1,7.866240078348854,-9,1,0,24,1,4,1,-9,-9,2019,1,1,10,1,50,0,15,1,1,1,0,12.3370203004147,12.3370203004147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,6,5,1,370.5,0,0,0 +8589,10543,19211,19212,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,31,0,-6,-81.86304052588478,0,0,0,70,3,1,3,3,3,2019,4,1,23,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.5023963201855,1,27.8,37.35,3,1,0,0,6,3,0,752.5,0,0,0 +8589,10543,19212,19211,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,7.787632287503733,7.323258804438668,1,0,-9,32,0,6,-94.95521758663163,0,0,0,64,3,2,3,3,3,2019,4,2,23,8,0,0,15,4,8,4,0,0,0,1,0,45.2927527882344,0,0,0,0,1,1,0,0,7.673848792493026,0,0,27.89,26.84,1,1,0,0,6,3,0,752.5,0,0,0 +8590,10544,19213,19214,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,4.604091511443569,4.682005629310958,1,0,-9,48,0,-3,-52.80065720633257,0,0,0,71,2,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.966138674823705,4.99743357642832,0,0,59.31,33.75,4,1,0,0,4,2,1,1278,0,0,0 +8590,10544,19214,19213,-9,-9,2,1,1,71,1,0,0,0,2,-9,2,1,0,3,5.320405904484678,6.905218323667636,7.117250589434033,1,0,-9,48,0,3,8.752297612867183,0,0,0,68,2,2,3,3,2,2019,2,1,12,0,5,5,15,1,0,4,0,4.362804117630652,4.362804117630652,0,0,0,0,0,0,0,1,1,0,2.528963142066297,7.203406766480309,0,0,45.48,46.41,2,1,0,0,4,2,1,1278,0,0,0 +8591,10545,19215,-9,-9,-9,3,1,0,23,2,0,0,0,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-953.429736098338,1,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,5,0,0,32,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,5,1,1,1216,0,0,0 +8592,10546,19216,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,6.194110398702429,6.074985720306716,3,0,0,0,-9,0,-900.9690232735484,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,19.18953869006788,17.72083001263536,15.67027805665643,0,1,1,0,0,6.064706850460245,0,0,42.31,37.69,6,1,0,0,8,2,0,394,0,0,0 +8593,10547,19217,-9,-9,-9,3,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.808654904549498,7.890005676469286,0,3,0,0,0,-9,0,-1001.630298065129,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,43,15,1,0,-9,1,8.027586135299206,8.027586135299206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,2,1,0,0,13,3,1,2319,0,0,0 +8594,10548,19218,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,0,7.497057136642626,7.876399415375553,3,0,-9,0,1,0,-1038.687938003457,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.386443173001825,0,0,58.65,31.08,5,1,0,0,9,3,1,1262,0,0,0 +8595,10549,19219,19220,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.427413517872125,8.773697851040865,0,2,0,-9,7,0,1,-44.78827243356331,0,0,0,43,3,2,1,-9,3,2019,1,2,13,1,42,40,15,1,1,1,0,12.64606510191235,12.64606510191235,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.25,58.67,6,1,0,0,5,4,0,929.5,0,0,0 +8595,10549,19220,19219,-9,-9,2,1,0,43,1,0,2,0,3,-9,2,1,0,2,8.039762321958902,7.987986463042673,0,2,0,-9,7,0,-1,-36.24918478315735,0,0,1,44,2,4,1,-9,2,2019,1,1,24,12,13,20,15,1,12,1,0,24.38400251800095,24.38400251800095,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.58,33.14,2,1,0,0,5,4,0,929.5,0,0,0 +8595,10549,19221,-9,19220,19219,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.502470214141,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,4,0,929.5,0,0,0 +8595,10549,19222,-9,19220,19219,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.95390906702,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,0,929.5,0,0,0 +8596,10550,19223,-9,19226,19224,3,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.570659464379,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,582,0,0,0 +8596,10550,19224,19226,-9,-9,1,1,1,41,1,1,3,0,2,-9,2,1,0,3,8.724993412814019,8.516929719854405,0,2,0,-9,6,0,-2,40.97436131725128,0,0,0,43,1,3,1,3,3,2019,1,2,8,0,52,43,15,1,0,1,0,10.67541671651733,10.67541671651733,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.81,48.39,6,1,0,1,1,4,1,582,0,0,0 +8596,10550,19225,-9,19226,19224,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-996.6397960123594,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,4,1,582,0,0,0 +8596,10550,19226,19224,-9,-9,2,1,0,43,1,1,3,0,1,-9,5,1,0,3,8.228025883527682,8.20048532556072,0,2,0,-9,6,0,2,-75.73623833825523,0,0,1,41,2,3,1,-9,-9,2019,1,1,13,1,38,35,15,1,1,1,0,8.904508491548505,8.904508491548505,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.58,44.49,5,1,0,1,1,4,1,582,0,0,0 +8596,10550,19227,-9,19226,19224,4,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.9889293267144,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,4,1,582,0,0,0 +8597,10551,19228,-9,-9,19229,1,1,1,50,2,0,0,0,3,-9,2,1,0,5,8.003715307743361,8.421511253203535,0,3,0,0,0,-9,0,-1005.522751578849,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,43,0,15,1,0,-9,1,9.117172618142828,9.117172618142828,0,0,0,0,0,0,0,1,1,0,1.904244973836814,0,0,0,40.03,62.02,7,1,0,0,13,4,1,523,0,0,0 +8597,10552,19229,-9,-9,-9,2,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1012.108548973463,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,5,0,0,13,1,1,217,0,0,0 +8598,10553,19230,19231,-9,-9,1,1,1,62,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,2,0,-2,-157.3930179370201,0,0,0,64,1,4,1,-9,-9,2019,3,2,8,0,0,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,6,1,1,0,12,5,1,1452.5,0,0,0 +8598,10553,19231,19230,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,4,8.920179243148119,9.032227576352305,5.594503699402543,1,0,-9,2,0,2,141.4367825373235,0,0,0,62,2,4,3,2,2,2019,2,1,5,0,45,50,15,1,0,3,0,21.97602660159251,21.97602660159251,0,0,0,0,0,0,0,1,1,0,0,6.354794284060503,0,0,54.79,55.86,6,1,0,0,12,5,1,1452.5,0,0,0 +8599,10554,19232,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,2,7.618618915540553,8.095059291839068,0,3,0,0,0,-9,0,-1086.918893498895,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,10,38,38,15,1,10,-9,0,8.38093900901583,8.38093900901583,0,0,0,0,0,0,0,1,1,0,0,0,4.597668272862396,3,26.25,57.34,3,4,0,0,6,4,1,2329,0,0,0 +8600,10555,19233,19234,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,6.124973592214119,6.444302875234369,1,0,-9,52,0,-3,-50.89187026040427,0,0,0,74,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.83265346311929,6.177661065198359,0,3,43.2,59.97,5,1,0,0,12,2,1,3243,0,0,0 +8600,10555,19234,19233,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,6.631483835056472,6.608089686715023,1,0,-9,52,0,3,-134.1080885216325,0,0,0,71,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,79.53831313553714,0,0,0,0,1,1,0,5.69884341988087,6.687167730233645,0,3,43.84,37.11,6,1,0,0,12,2,1,3243,0,0,0 +8601,10556,19235,19236,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,8.955619898911424,8.832669518124025,1,0,-9,52,0,2,118.5616972805667,0,0,0,77,2,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.49089133939978,8.618455296993572,17.22159480882688,1,58.64,44.67,6,1,0,0,7,4,1,751.5,0,0,0 +8601,10556,19236,19235,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,2,0,6.326538521423194,6.479387482720096,1,0,-9,52,0,-2,-118.2786928125547,0,0,0,79,1,3,3,2,2,2019,4,1,24,8,0,0,15,4,8,4,0,0,0,1,9.169488663461529,0,0,0,0,78.84515456288675,1,1,0,5.570870833162145,6.474494653510052,0,0,57.98,20.77,4,1,0,0,7,4,1,751.5,0,0,0 +8602,10557,19237,19238,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,3,7.452494322468086,7.576970813093737,6.328408150258149,2,0,-9,9,0,-10,38.55729694562245,0,0,0,59,2,4,1,1,1,2019,1,1,9,0,13,9,15,1,0,1,0,11.90952940836128,11.90952940836128,0,0,0,0,0,0,0,1,1,0,7.0783660791005,0,0,0,55.36,51.57,6,1,0,0,10,4,1,896,0,0,0 +8602,10557,19238,19237,-9,-9,1,1,1,59,1,0,1,0,2,-9,2,1,0,4,8.237034393017581,8.354276928101344,0,2,0,-9,9,0,10,6.646273196285822,0,0,0,49,2,3,1,2,2,2019,1,2,22,10,37,40,15,1,10,1,0,10.53441740594092,10.53441740594092,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.57,56.78,3,1,0,0,10,4,1,896,0,0,0 +8602,10557,19239,-9,19237,19238,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.1905208348995,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,896,0,0,0 +8602,10558,19240,-9,19237,19238,4,1,0,19,3,0,1,0,2,1,2,1,0,4,7.73919586206815,7.516165898995502,0,3,0,0,0,-9,0,-1025.158571869314,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,0,15,1,2,-9,1,9.554566704484287,9.554566704484287,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,10,3,1,1319,0,0,0 +8603,10559,19241,19243,-9,-9,1,1,1,40,1,0,1,0,1,-9,2,1,0,3,8.420136880365902,8.477388220797444,0,2,0,-9,12,0,2,101.4221652907805,0,0,0,38,2,5,1,-9,-9,2019,1,2,13,1,40,40,15,1,1,1,0,15.38183267428103,15.38183267428103,0,0,0,0,0,0,0,1,1,0,5.230011387000012,0,3.016730733744237,3,43.63,50.26,5,1,0,0,9,4,1,529.3333333333334,0,0,0 +8603,10559,19242,-9,19243,19241,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.8765606501651,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,1,529.3333333333334,0,0,0 +8603,10559,19243,19241,-9,-9,2,1,0,38,1,0,1,0,2,-9,1,1,0,5,7.592944415800607,7.695742284696355,0,2,0,-9,12,0,-2,20.17992869120787,0,0,1,40,1,3,1,-9,-9,2019,1,1,6,0,34,15,15,1,0,1,0,6.920745782643588,6.920745782643588,0,0,0,0,0,0,0,1,1,0,7.008102574849268,0,0,0,57.06,57.76,6,3,0,0,9,4,1,529.3333333333334,0,0,0 +8604,10560,19244,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,4,0,6.585869090017513,6.417215247502006,3,0,-9,0,1,0,-981.8524206672239,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.366549119250032,0,0,44.86,43.83,3,1,0,0,6,2,1,792,0,0,0 +8605,10561,19245,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,8.045531885236434,8.203749790717042,3,0,0,0,-9,0,-1099.543583574441,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.948905060678058,7.972789986630595,5.020500436859352,3,56.35,51.16,7,1,0,0,2,4,1,1233,0,0,0 +8606,10562,19246,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1068.466770281148,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123.0931488061023,3,20.97,24.53,4,1,0,0,11,1,0,157,0,0,0 +8606,10563,19247,-9,19246,-9,2,1,1,22,2,0,0,0,2,-9,1,1,0,4,7.628957616861788,7.629051482121931,0,3,0,0,0,-9,0,-1003.93274574871,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,40,40,15,1,0,-9,1,6.942918178345868,6.942918178345868,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.1,6,1,0,0,11,3,0,367,0,0,0 +8607,10564,19248,19249,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.234077866580138,8.164114570099382,0,1,0,-9,10,0,-2,90.29477599960597,0,0,0,55,2,2,1,3,3,2019,1,1,13,1,29,35,15,1,1,1,0,18.17864472425563,18.17864472425563,0,0,0,0,0,0,0,0,0,0,4.89763858397662,0,13.60461216906101,2,41.47,58.08,4,1,0,0,6,4,1,1362.5,0,0,0 +8607,10564,19249,19248,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,2,7.186541237934597,7.233471454416151,0,1,0,-9,10,0,2,20.75663150015154,0,0,0,53,2,3,1,2,2,2019,1,2,11,1,20,23,15,1,1,1,0,10.38459937338893,10.38459937338893,0,0,0,0,0,0,0,0,0,0,5.650344804353899,0,0,0,42.09,52.6,5,1,0,0,6,4,1,1362.5,0,0,0 +8607,10565,19250,-9,19248,19249,3,1,1,20,2,0,0,0,2,-9,2,1,0,5,8.63681662037877,8.841447064266841,0,3,0,0,0,-9,0,-1167.939975409378,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,30,15,1,0,-9,1,20.35203398149051,20.35203398149051,0,0,0,0,0,0,0,0,0,0,3.679304890312968,0,0,0,54.1,59.11,6,1,0,0,6,5,1,240,0,0,0 +8608,10566,19251,-9,19253,19252,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.146924244397,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,6,5,1,241,0,0,0 +8608,10566,19252,19253,-9,-9,3,1,1,31,1,0,1,0,2,-9,1,1,0,5,8.800137581515553,8.696525740356286,0,2,0,-9,3,0,8,39.62059741622522,0,0,0,23,2,1,1,-9,-9,2019,1,1,1,0,65,54,15,1,0,1,0,14.93470496020044,14.93470496020044,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,6,5,1,241,0,0,0 +8608,10566,19253,19252,-9,-9,1,1,0,23,1,0,1,0,2,-9,2,1,0,1,7.161033099640164,7.213050236832538,0,2,0,-9,3,0,-8,-78.81444237752763,0,1,1,31,2,5,1,3,2,2019,1,3,12,1,25,0,15,1,1,1,0,6.741575012275597,6.741575012275597,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.43,42.88,4,2,0,0,6,5,1,241,0,0,0 +8609,10567,19254,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,7.042796994023606,7.235651415098975,3,0,0,0,-9,0,-899.6107596066929,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,128.4646332401199,0,0,0,0,0,1,1,0,0,7.286347665282,0,0,56,35.8,6,1,0,0,4,2,1,3374,0,0,0 +8610,10568,19255,19256,-9,-9,1,1,0,37,1,0,3,0,2,1,6,3,0,2,0,0,0,2,0,-9,9,0,1,-44.29773025977426,-9,0,1,36,1,4,1,3,-9,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.38,47.39,3,1,0,0,11,2,1,912.4,0,0,0 +8610,10568,19256,19255,-9,-9,2,1,1,36,1,0,3,0,1,-9,2,1,0,4,8.116965904774624,7.877342357901082,0,2,0,-9,9,0,-1,60.26956315418093,0,0,0,37,2,2,3,3,3,2019,2,1,13,1,47,50,15,1,1,3,0,8.142522055857738,8.142522055857738,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,3,1,0,0,11,2,1,912.4,0,0,0 +8610,10568,19257,-9,19255,19256,6,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.775568876199,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,912.4,0,0,0 +8610,10568,19258,-9,19255,19256,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.227962666647,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,1,912.4,0,0,0 +8610,10568,19259,-9,19255,19256,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.037105928308,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,1,912.4,0,0,0 +8610,10569,19260,-9,19255,19256,3,1,0,19,2,0,3,1,2,0,7,2,0,3,6.342757359283238,6.090756005403104,0,3,0,0,0,-9,0,-1052.326065467368,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,11,2,1,1005,0,0,0 +8611,10570,19261,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1055.747314727263,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.63,34.07,6,1,0,0,12,1,0,1120,0,0,0 +8611,10571,19262,-9,19261,-9,2,1,1,44,2,0,0,0,3,-9,2,1,0,3,7.676765600405365,7.956684438535995,0,3,0,0,0,-9,0,-929.2638221473017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,44,44,15,1,0,-9,1,6.886430237009974,6.886430237009974,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,1,0,0,12,3,0,131,0,0,0 +8612,10572,19263,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,7.070130447053293,6.965457608452343,3,0,0,0,-9,0,-978.0817275457881,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.016636979541846,.1412035128026519,3,61.43,43.34,6,1,0,0,6,2,1,848,0,0,0 +8613,10573,19264,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,2,0,7.755195804874289,7.999937634400268,3,0,0,0,-9,0,-1145.787141447304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.401120521800397,7.758396663097455,0,0,50.07,41.19,5,1,0,0,9,3,0,475,0,0,0 +8614,10574,19265,19266,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.337867859344219,7.33604027702868,0,1,0,-9,27,0,-2,10.87511381069739,0,0,0,52,2,3,1,3,2,2019,1,1,15,3,12,9,15,1,3,1,0,12.13634306365058,12.13634306365058,0,0,0,0,0,0,0,0,0,0,3.283539836747948,0,2.066195386993562,3,34.17,57.25,3,1,0,0,5,5,1,323.5,0,0,0 +8614,10574,19266,19265,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.609833063500981,8.605768804987701,0,1,0,-9,27,0,2,84.59465727818748,0,0,0,50,2,3,1,3,3,2019,1,2,12,1,60,40,15,1,1,1,0,9.915586547430729,9.915586547430729,0,0,0,0,0,0,0,0,0,0,2.61205689104627,0,.8857806760300651,3,47.66,52.33,5,1,0,0,5,5,1,323.5,0,0,0 +8614,10575,19267,-9,19265,19266,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.975262985077411,8.150299711700379,0,3,0,0,0,-9,0,-1126.351461900824,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,44,44,15,1,0,-9,1,8.386817878263907,8.386817878263907,0,0,0,0,0,0,0,0,0,0,3.7289663274978,0,0,0,51.49,57.57,4,1,0,0,5,4,1,583,0,0,0 +8615,10576,19268,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,3,0,7.519568849461897,7.72461285962805,3,0,0,0,-9,0,-997.9597434028724,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.182075615826459,7.833442554751544,0,0,60.05,42.65,7,1,0,0,9,3,1,713,0,0,0 +8616,10577,19269,19270,-9,-9,2,1,0,57,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,6,0,-3,0,0,0,0,60,3,2,3,3,3,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,81.04137548410125,1,62.67,49.54,6,1,0,0,13,1,0,694,0,0,0 +8616,10577,19270,19269,-9,-9,1,1,1,60,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,3,0,0,0,0,57,3,4,3,3,3,2019,4,2,13,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.28,21.39,4,1,0,0,13,1,0,694,0,0,0 +8616,10578,19271,-9,19269,19270,3,1,1,27,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1085.96616257463,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.88,50.78,5,1,1,1,13,1,0,332,0,0,0 +8616,10579,19272,-9,19269,19270,4,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.717789131161013,8.048646641228446,0,3,0,0,0,-9,0,-1022.158781464297,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,40,0,15,1,1,-9,1,7.17430147271439,7.17430147271439,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,56.35,5,1,0,0,13,3,0,751,0,0,0 +8617,10580,19273,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,5.15261528059139,5.021729814955394,3,0,0,0,-9,0,-835.5997007127662,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,.9357083599088127,0,2.839569800161226,0,1,1,0,3.176675671355149,4.714684834938724,0,0,64.2,15.57,5,1,0,0,9,2,1,2061,0,0,0 +8618,10581,19274,19276,-9,-9,1,1,1,27,1,1,1,0,1,-9,2,1,0,2,8.308277893981963,8.232100429990334,0,2,0,1,1,-9,5,27.48754728715244,0,1,0,22,2,3,3,2,2,2019,2,2,5,0,40,40,15,1,0,3,0,10.416733544708,10.416733544708,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,6,1,0,0,12,3,0,1057,0,0,0 +8618,10581,19275,-9,19276,19274,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-889.2294052974744,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,12,3,0,1057,0,0,0 +8618,10581,19276,19274,-9,-9,2,1,0,22,1,1,1,0,2,1,6,3,0,3,0,0,0,2,0,1,1,-9,-5,24.25516604373611,-9,1,1,27,1,2,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.94,48.01,6,1,0,0,12,3,0,1057,0,0,0 +8619,10582,19277,-9,19279,19278,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.8161979542832,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,3,0,673,0,0,0 +8619,10582,19278,19279,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,3,8.524497309779557,8.446373355673224,0,2,0,-9,5,0,3,-18.78874588859733,0,0,0,39,1,3,3,-9,-9,2019,2,1,17,7,47,49,15,1,7,3,0,15.42019363221774,15.42019363221774,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.47,52.37,3,1,0,0,7,3,0,673,0,0,0 +8619,10582,19279,19278,-9,-9,1,1,0,39,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-3,-77.33599755799234,0,0,1,42,2,3,1,2,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.23,51.67,5,1,0,0,7,3,0,673,0,0,0 +8619,10582,19280,-9,19279,19278,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-886.7638005779677,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,0,673,0,0,0 +8620,10583,19281,19282,-9,-9,1,1,1,22,1,0,0,0,2,-9,2,1,0,2,7.759915429103007,7.821582744132527,0,1,0,-9,4,0,3,152.4876181703606,0,1,0,19,2,3,1,-9,-9,2019,1,2,13,2,40,40,15,1,2,1,0,6.21543224905925,6.21543224905925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,34.44,6,1,0,0,9,3,0,531.5,0,0,0 +8620,10583,19282,19281,-9,-9,2,1,0,19,1,0,0,0,2,-9,2,1,0,3,6.800766069899411,6.597373024797799,0,1,0,-9,4,0,-3,-82.33966768490015,0,1,1,22,2,2,1,-9,-9,2019,1,1,11,0,19,45,15,1,0,1,0,5.218760626793533,5.218760626793533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,5,1,0,0,9,3,0,531.5,0,0,0 +8621,10584,19283,19284,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,38,0,-6,-2.169486772477145,0,0,0,71,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,5,2,1,375,0,0,0 +8621,10584,19284,19283,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,7.57011599642494,7.481273185668773,1,0,-9,33,0,6,84.8784498566297,0,0,0,65,2,5,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.532472932805288,0,3,57.16,56.15,5,1,0,0,5,2,1,375,0,0,0 +8622,10585,19285,19286,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,4,8.237288470802827,8.507738624460345,6.199377835399845,1,0,-9,32,0,4,70.38217604481864,0,0,0,57,2,4,1,3,3,2019,1,2,12,1,20,0,15,1,1,1,0,26.81486546805242,26.81486546805242,0,0,0,0,0,0,0,0,0,0,0,6.480435785794811,0,0,43.18,55.57,6,1,0,0,7,5,1,281,0,0,0 +8622,10585,19286,19285,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.117333839537089,7.816021309564676,0,1,0,-9,32,0,-4,45.68972861710246,0,0,0,61,2,4,1,-9,-9,2019,1,1,8,0,22,19,15,1,0,1,0,12.8882488431772,12.8882488431772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.85,53.39,6,1,0,0,7,5,1,281,0,0,0 +8622,10586,19287,-9,19286,19285,3,1,1,26,2,0,0,0,1,-9,2,1,0,5,8.868213272373668,9.118149454719756,0,3,0,0,0,-9,0,-1076.363656620662,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,37,15,1,0,-9,1,24.79586882396074,24.79586882396074,0,0,0,0,0,0,0,0,0,0,1.941028526327517,0,0,0,58.2,54.53,6,1,0,0,7,5,1,1175,0,0,0 +8623,10587,19288,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,6,3,0,4,0,9.679616989528547,9.462725529330699,3,0,0,0,-9,0,-922.7095668101761,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,9.912546514858043,8.248485112319393,21.83608282689833,3,51.24,58.84,6,1,0,0,4,5,1,178,0,0,0 +8624,10588,19289,-9,19290,19291,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-957.8964422758485,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,5,1,496.5,0,0,0 +8624,10588,19290,19291,-9,-9,1,1,0,35,1,2,2,0,1,-9,5,1,0,5,8.198123181613061,8.436495924654546,0,2,0,-9,15,0,-2,30.03814222392602,0,0,1,37,1,5,1,1,1,2019,1,2,7,1,38,38,15,1,1,1,0,13.19429690811454,13.19429690811454,0,0,0,0,0,0,0,1,1,0,3.485241786161247,0,0,0,51.73,58.82,6,1,0,0,9,5,1,496.5,0,0,0 +8624,10588,19291,19290,-9,-9,2,1,1,37,1,2,2,0,1,-9,2,1,0,5,9.499295728966645,9.726640883079995,0,2,0,-9,15,0,2,78.51247647844663,0,0,0,35,1,5,1,2,2,2019,1,1,8,0,48,53,15,1,0,1,0,30.9406853098249,30.9406853098249,0,0,0,0,0,0,0,1,1,0,5.766186119734298,0,0,0,51.73,58.82,7,1,0,0,9,5,1,496.5,0,0,0 +8624,10588,19292,-9,19290,19291,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.0265529967949,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,496.5,0,0,0 +8625,10589,19293,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,2,1,0,4,8.686616892813335,9.701104407902738,8.5082046485674,3,0,0,0,-9,0,-1065.844701160821,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,40,38,15,1,1,-9,0,24.0934459695372,24.0934459695372,0,0,0,0,0,0,0,1,1,0,7.954115693711302,8.719290764753207,1.769246583357339,3,37.11,58.59,3,1,0,0,4,5,0,213,0,0,0 +8626,10590,19294,19295,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,50,0,-2,-44.53466712702379,0,0,0,70,2,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.633160025070801,0,0,0,49.86,55.31,5,1,0,0,12,2,1,635.5,0,0,0 +8626,10590,19295,19294,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,6.341897644422355,6.164869841043549,1,0,-9,50,0,2,-8.183353696548568,0,0,0,68,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.195978443053425,6.388204546177918,0,0,60.2,39.82,7,1,0,0,12,2,1,635.5,0,0,0 +8627,10591,19296,-9,19297,19298,1,1,1,40,3,0,0,0,1,-9,2,1,0,5,9.089025866682748,8.885215320792797,5.420733271892868,3,0,0,0,-9,0,-989.3389307098425,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,50,35,15,1,0,-9,1,23.10850516926631,23.10850516926631,0,0,0,0,0,0,0,1,1,0,5.800017881808691,0,0,0,51.67,60.18,6,1,0,0,2,5,1,131,0,0,0 +8627,10592,19297,19298,-9,-9,3,1,0,64,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,1,-9,0,-125.1456685331139,-9,0,0,64,3,3,1,-9,-9,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.34,56.95,6,1,0,0,2,3,1,977.5,0,0,0 +8627,10592,19298,19297,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,3,7.796691172376767,8.087978571611671,0,1,0,-9,1,-9,0,-76.44010991695211,-9,0,0,64,3,4,3,-9,-9,2019,2,3,6,0,39,0,15,1,0,4,0,8.417697451791204,8.417697451791204,0,0,0,0,0,0,0,1,1,0,3.810008961114401,0,0,0,62.66,52.4,6,1,0,0,2,3,1,977.5,0,0,0 +8628,10593,19299,19300,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,6.422783593962682,5.972300073128391,1,0,-9,8,0,-11,-148.3519383242038,0,0,0,76,3,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.098166108323658,6.202984385942484,0,0,53.62,46.84,6,1,0,0,9,2,1,564,0,0,0 +8628,10593,19300,19299,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,6.487421647799166,6.610652535062207,1,0,-9,8,0,11,-17.20468457768642,0,0,0,65,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,2.510963542890149,0,0,0,0,1,1,0,0,6.800250865962607,0,0,66.52,32.82,7,1,0,0,9,2,1,564,0,0,0 +8629,10594,19301,-9,19304,-9,2,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,-9,0,-9,0,-1158.774989427386,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,2,0,0,7,1,0,1078,0,0,0 +8629,10594,19302,-9,19304,-9,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-921.8387312301267,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,1,0,1078,0,0,0 +8629,10594,19303,-9,19304,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,-9,0,-9,0,-1013.782331055895,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,7,1,0,1078,0,0,0 +8629,10594,19304,-9,-9,-9,1,1,0,31,2,0,3,0,2,-9,3,3,0,4,0,0,0,4,0,-9,0,-9,0,-1170.260173733707,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,1,0,7,1,0,1078,0,0,0 +8630,10595,19305,19306,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,4,0,-6,0,0,0,0,61,1,3,1,-9,-9,2019,1,1,16,4,0,32,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.9601550375879268,0,0,0,35.76,33.86,3,3,0,0,7,1,1,3770,0,0,0 +8630,10595,19306,19305,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,0,0,0,1,0,-9,4,0,6,0,0,0,0,55,2,2,1,3,3,2019,1,2,12,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.3163136667647062,0,0,0,57.88,43.83,5,3,0,0,7,1,1,3770,0,0,0 +8631,10596,19307,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,1,1,0,4,8.520302757805885,8.584530549923189,0,3,0,0,0,-9,0,-1002.768785988588,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,50,40,15,1,0,-9,0,9.675519430058822,9.675519430058822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,6,1,0,0,13,5,1,488,0,0,0 +8632,10597,19308,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,6.081114251036264,6.26690695848464,3,0,0,0,-9,0,-1049.852900425004,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.503384341260137,5.944209235101976,0,0,44,53.95,7,1,0,0,4,2,1,190,0,0,0 +8633,10598,19309,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-950.5838888937753,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.5,38.04,4,1,0,1,13,1,0,297,0,0,0 +8634,10599,19310,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1004.022715906152,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.797521433512924,3,41.2,41.4,6,1,1,0,5,1,0,3024,0,0,0 +8635,10600,19311,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,6.351230550278302,6.181603484497761,3,0,0,0,-9,0,-1026.755833223338,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.061337659551218,6.296119085973043,0,0,58.9,45.74,7,1,0,0,12,2,1,645,0,0,0 +8636,10601,19312,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,5,0,7.485764084136703,7.669808852187919,3,0,0,0,-9,0,-1072.338944415483,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,6.798126081055692,0,0,0,0,124.1639242708656,1,1,0,6.595081750751744,8.102969220359524,3.368167142526596,3,57.63,56.14,7,1,0,0,5,3,1,323,0,0,0 +8637,10602,19313,-9,19314,19315,3,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1035.870850683744,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,3,1,520,0,0,0 +8637,10602,19314,19315,-9,-9,1,1,0,37,1,0,1,0,3,-9,2,1,0,4,7.705332737175321,7.919556388210129,0,2,0,-9,13,0,1,40.4038144914245,0,0,1,36,2,3,1,2,2,2019,1,2,14,2,23,21,15,1,2,1,0,13.42687782880872,13.42687782880872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.7,47.27,6,1,0,0,9,3,1,520,0,0,0 +8637,10602,19315,19314,-9,-9,2,1,1,36,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,13,0,-1,-45.32918410957993,0,0,0,37,3,4,1,2,2,2019,1,1,24,12,0,45,15,1,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,41.5,4,1,0,1,9,3,1,520,0,0,0 +8638,10603,19316,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,2,0,4.459407491793007,4.270989196326402,3,0,0,0,-9,0,-1080.708451674788,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.591586040283577,4.30553681213555,0,0,53.08,28.33,6,1,0,0,8,2,1,1287,0,0,0 +8639,10604,19317,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.268776460174005,7.604900995096408,6.529841036207485,3,0,0,0,-9,0,-966.4017126178218,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,4,15,1,0,-9,0,6.280043178361772,6.280043178361772,0,0,0,0,0,0,0,0,0,0,2.808823168501642,7.136055572816071,0,0,46.86,55.66,5,1,0,0,10,3,1,192,0,0,0 +8640,10605,19318,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-961.2527959549601,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.25,50.26,5,5,0,0,10,1,0,1605,0,0,0 +8641,10606,19319,19320,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.514446835503367,7.73679776341385,6.067520807265355,1,0,-9,6,0,-3,-29.20259605205538,0,0,0,60,2,3,1,3,3,2019,1,2,1,0,7,18,15,1,0,1,0,18.88880579477031,18.88880579477031,0,0,0,0,0,0,0,0,0,0,7.410744812740235,6.315749399537882,0,0,60.12,54.8,6,1,0,0,11,5,1,865,0,0,0 +8641,10606,19320,19319,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,3,9.422288774054321,9.253209772652701,0,1,0,-9,6,0,3,-69.28575731914925,0,0,0,57,2,4,1,-9,-9,2019,1,1,10,0,36,36,15,1,1,1,0,44.92097217880483,44.92097217880483,0,0,0,0,0,0,0,0,0,0,6.764639678094287,0,0,0,51,48,5,1,0,0,11,5,1,865,0,0,0 +8642,10607,19321,19322,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,7.310527718301373,7.336699050224336,1,0,-9,3,0,-1,-104.4083011472653,0,0,0,65,2,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.782642043423885,7.19483207158023,0,0,50,47,5,1,0,0,6,3,1,195,0,0,0 +8642,10607,19322,19321,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.117782276081577,7.188071470956339,1,0,-9,3,0,1,135.5928827556626,0,0,0,64,3,3,3,3,3,2019,4,2,7,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.768647960755796,7.133462417397886,0,3,58.72,51.29,7,1,0,0,6,3,1,195,0,0,0 +8643,10608,19323,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,2,1,0,2,7.883614406081801,8.213467991297117,0,4,0,0,0,-9,0,-985.9116102644392,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,37,37,15,1,2,-9,0,8.570241697484327,8.570241697484327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.7,41.66,4,1,0,1,5,3,1,507,0,0,0 +8643,10609,19324,-9,19323,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,3,0,7.366741047805559,7.101989908002104,3,0,0,0,-9,0,-1055.69971355748,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.327792610227826,0,0,0,36.65,58.88,6,1,0,0,5,3,1,994,0,0,0 +8644,10610,19325,19326,-9,-9,2,1,1,88,1,0,0,0,3,-9,4,3,0,3,0,7.546940641196161,7.59734524377019,1,0,-9,62,0,5,37.32118947170193,0,0,0,83,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.51575295114977,0,0,54,45,6,1,0,0,7,2,1,586.5,0,0,0 +8644,10610,19326,19325,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,62,0,-5,-46.63510160916008,0,0,0,88,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,15.70311222672969,0,0,0,0,1,1,0,.473846918878313,0,0,0,52,45,6,1,0,0,7,2,1,586.5,0,0,0 +8645,10611,19327,19328,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,7.043646742914636,7.525888131782054,1,0,-9,41,0,2,-23.82976589520511,0,0,0,70,3,2,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.649685441363201,7.369151899175201,14.34660674155111,1,55.59,38.2,6,1,0,0,7,2,1,636.5,0,0,0 +8645,10611,19328,19327,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,41,0,-2,42.01750715787841,0,0,0,72,2,2,3,-9,2,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,12.56144419937254,0,0,0,0,1,1,0,0,0,0,0,58.47,18.23,5,1,0,0,7,2,1,636.5,0,0,0 +8646,10612,19329,19331,-9,-9,2,1,0,41,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-1,27.23799558152512,0,0,1,42,1,4,1,2,3,2019,3,1,21,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.052764034012935,0,0,0,38.34,62.12,2,2,0,1,13,4,1,565,0,0,0 +8646,10612,19330,-9,19329,19331,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.549285780338,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,13,4,1,565,0,0,0 +8646,10612,19331,19329,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,4,8.993083769456742,8.725309658897867,0,2,0,-9,12,0,1,106.3105633118623,0,0,0,41,1,4,3,2,2,2019,2,2,6,0,50,50,15,1,0,3,0,12.84448569379658,12.84448569379658,0,0,0,0,0,0,0,1,1,0,2.930282200617693,0,0,0,52.82,53.97,5,1,0,0,13,4,1,565,0,0,0 +8646,10612,19332,-9,19329,19331,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.851717934435,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,13,4,1,565,0,0,0 +8647,10613,19333,19334,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,5,0,7.904991839756079,7.649727304342036,1,0,-9,34,0,-14,27.40093114361529,0,0,0,77,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.591318062990834,7.830507772439926,0,0,62.39,56.71,7,1,0,0,9,4,1,727,0,0,0 +8647,10613,19334,19333,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,7.773793882052382,8.017016687168727,1,0,-9,33,0,14,87.80455983266394,0,0,0,63,1,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.714562137822629,7.81081300614253,0,0,49.47,34.02,6,1,0,0,9,4,1,727,0,0,0 +8648,10614,19335,19336,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.513443408441052,8.210829505503837,0,1,0,-9,3,0,-1,35.8891460465448,0,1,1,30,1,4,1,-9,-9,2019,1,1,12,0,38,37,15,1,0,1,0,12.29905923345052,12.29905923345052,0,0,0,0,0,0,0,0,0,0,3.208057922243301,0,0,0,40.83,59.68,4,1,0,0,9,5,1,613.5,0,0,0 +8648,10614,19336,19335,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,9.193861706184938,9.067395199556767,0,1,0,-9,3,0,1,-113.7686886349424,0,0,0,29,1,4,1,-9,-9,2019,1,2,16,4,44,45,15,1,4,1,0,32.40090434784931,32.40090434784931,0,0,0,0,0,0,0,0,0,0,5.775526869445666,0,0,0,44.02,60.7,5,1,0,0,9,5,1,613.5,0,0,0 +8649,10615,19337,19338,-9,-9,2,1,0,49,1,0,1,0,2,-9,8,3,1,1,0,7.889657704564786,7.92752715910547,2,0,-9,11,0,-1,41.06754246637926,0,0,0,50,2,3,1,2,2,2019,3,1,35,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.978604323994339,0,0,0,37.36,19.77,1,1,0,1,12,5,0,122.5,0,0,0 +8649,10615,19338,19337,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,3,8.738067618169694,8.292395793866165,0,2,0,-9,11,0,1,-153.4635338988334,0,0,0,49,2,1,3,2,2,2019,2,2,7,0,43,38,15,1,0,3,0,14.41369334468967,14.41369334468967,0,0,0,0,0,0,0,1,1,0,0,0,0,1,60.69,50.51,5,1,0,0,12,5,0,122.5,0,0,0 +8649,10616,19339,-9,19337,19338,3,1,0,19,2,0,1,1,2,0,7,2,0,3,6.406063550378502,6.38987909040006,0,3,0,0,0,-9,0,-932.3376067020657,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,9,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,4,1,0,0,12,2,0,1174,0,0,0 +8650,10617,19340,-9,-9,-9,1,1,0,38,2,0,0,0,3,-9,2,1,0,5,8.159494962990017,8.451716718113708,0,3,0,0,0,-9,0,-995.4228000401458,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,1,16,40,15,1,1,-9,0,31.32572626513116,31.32572626513116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.44,42.44,7,1,0,0,1,4,0,884,0,0,0 +8651,10618,19341,-9,19342,-9,2,1,0,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1087.391756670634,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,7,3,1,1703.5,0,0,0 +8651,10618,19342,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,2,8.068574849643831,8.169742020812871,7.003512858341715,4,0,0,0,-9,0,-965.4463186154589,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,37,37,15,1,1,-9,0,10.3777562236421,10.3777562236421,0,0,0,0,0,0,0,1,1,0,7.21644379379762,0,0,0,53.61,39.14,4,3,0,0,7,3,1,1703.5,0,0,0 +8652,10619,19343,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,1,1,0,2,8.082344218237553,7.619209177607697,0,1,0,-9,9,0,0,52.77994923014155,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,14,2,36,30,15,1,2,-9,0,7.472658511269863,7.472658511269863,0,0,0,0,0,0,0,0,0,0,5.126358173161335,0,0,0,43.25,41.45,6,1,0,0,4,5,1,459,0,0,0 +8653,10620,19344,19345,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,2,8.06490223210745,8.215102380392349,0,1,0,-9,7,0,4,24.08524349360626,0,0,0,44,2,4,1,-9,-9,2019,1,1,12,0,21,45,15,1,0,1,0,20.49371453310162,20.49371453310162,0,0,0,0,0,0,0,0,0,0,8.441952741301908,0,0,0,39.56,31.2,6,1,0,0,10,5,1,1367.5,0,0,0 +8653,10620,19345,19344,-9,-9,1,1,1,44,1,0,0,0,2,-9,1,1,0,4,8.412137331938174,8.409158750031047,0,1,0,-9,7,0,-4,-1.535765096435018,0,0,0,48,1,2,1,-9,-9,2019,1,2,8,0,40,35,15,1,0,1,0,13.03387878485785,13.03387878485785,0,0,0,0,0,0,0,0,0,0,6.485129620992476,0,0,0,60.12,54.8,6,1,0,0,10,5,1,1367.5,0,0,0 +8654,10621,19346,-9,-9,-9,1,1,1,22,2,0,0,1,2,-9,7,2,0,2,0,0,0,3,0,-9,0,-9,0,-1017.170299306462,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.8,3,1,0,0,13,1,0,938,0,0,0 +8655,10622,19347,19348,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.01467588821084,7.114717379830862,1,0,-9,9,0,3,-134.5875070842146,0,0,0,64,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.827576459849731,7.011787270442898,0,0,60.86,50.49,6,1,0,0,4,2,1,320.5,0,0,0 +8655,10622,19348,19347,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,5.190682697744646,5.549247513737719,1,0,-9,48,0,-3,28.03432384471897,0,0,0,67,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.584625306719964,0,0,56.85,37.23,6,1,0,0,4,2,1,320.5,0,0,0 +8656,10623,19349,19350,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,4,7.767498665005863,7.695754286537944,0,1,0,-9,26,0,-8,-59.21247255513187,0,0,0,53,2,1,3,2,2,2019,2,2,12,0,35,41,15,1,0,4,0,8.220060787317362,8.220060787317362,0,0,0,0,0,0,0,1,1,0,0,0,119.928842054732,2,46.16,58.62,4,1,0,0,1,4,1,458,0,0,0 +8656,10623,19350,19349,-9,-9,2,1,1,53,1,0,0,0,2,-9,4,3,0,1,0,7.478332353658105,7.792323737115463,1,0,-9,23,0,8,51.6141895668025,0,0,0,45,2,4,1,2,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.001335739584533,7.662257304387429,118.361675595594,3,40.6,15.23,5,1,0,0,1,4,1,458,0,0,0 +8656,10624,19351,-9,19349,19350,4,1,0,19,2,0,0,1,2,0,7,2,0,4,6.786475786130109,7.627305151540831,6.519215997907523,3,0,0,0,-9,0,-1024.24159018348,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,10,24,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.086098169372423,0,0,0,44.55,60.42,5,1,0,0,1,3,1,689,0,0,0 +8657,10625,19352,19354,-9,-9,1,1,0,25,1,0,1,0,2,-9,2,1,0,4,6.954357628307409,7.289331456872238,0,2,0,-9,3,0,1,-135.4469303267724,0,1,1,24,2,3,1,3,2,2019,1,3,10,0,25,20,15,1,0,1,0,5.425130640317118,5.425130640317118,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,6,1,0,0,2,3,1,505.6666666666667,0,0,0 +8657,10625,19353,-9,19352,19354,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.4902593471003,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,3,1,505.6666666666667,0,0,0 +8657,10625,19354,19352,-9,-9,3,1,1,24,1,0,1,0,2,-9,2,1,0,3,7.935231862528173,7.852584306023567,0,2,0,-9,3,0,-1,-13.18108564945748,0,1,0,25,2,4,1,-9,-9,2019,1,1,6,0,40,43,15,1,0,1,0,7.886998636936201,7.886998636936201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,2,3,1,505.6666666666667,0,0,0 +8658,10626,19355,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,0,6.586173223353964,6.990122436969871,3,0,0,0,-9,0,-1051.879018390669,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,10,0,0,15,4,10,-9,0,0,0,1,0,0,7.994760626538429,0,0,0,1,1,0,0,7.148057531753539,0,0,16.04,23.99,1,1,0,1,9,2,1,2601,0,0,0 +8659,10627,19356,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-954.7323117123842,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,1,1,554,0,0,0 +8660,10628,19357,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,6.807698241059579,7.048284872552067,3,0,0,0,-9,0,-938.5718857875527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.321171762087511,6.939904416665327,0,0,48.84,29.3,6,1,0,0,6,2,1,1996,0,0,0 +8661,10629,19358,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,4,9.077225359016925,9.274933660833218,7.49039284911365,4,0,0,0,-9,0,-1027.577278454002,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,60,15,1,1,-9,0,25.85742935600101,25.85742935600101,0,0,0,0,0,0,0,1,1,0,5.854932215532223,7.411510850444015,0,0,56.18,45.61,5,1,0,0,11,5,0,544.5,0,0,0 +8661,10629,19359,-9,19358,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.9761316323045,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,5,0,544.5,0,0,0 +8662,10630,19360,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,3,0,7.411090253886104,7.557433312931831,3,0,0,0,-9,0,-983.8248149069433,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.822542389067101,6.996517894614634,0,0,53.59,27.31,6,1,0,0,5,3,1,1727,0,0,0 +8663,10631,19361,-9,-9,19362,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.5011554777026,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,333.5,0,0,0 +8663,10631,19362,-9,-9,-9,1,1,1,46,3,0,1,0,2,-9,2,1,0,4,8.383103073996027,8.265907673014993,0,4,0,0,0,-9,0,-882.8763232721033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,45,15,1,0,-9,0,10.80543926630607,10.80543926630607,0,0,0,0,0,0,0,1,1,0,3.00394625176815,0,0,0,51.23,49.24,5,1,0,0,4,4,1,333.5,0,0,0 +8663,10632,19363,19364,-9,19362,2,1,0,19,1,0,1,0,2,-9,1,1,0,3,7.756447664745139,7.671120964597868,0,2,0,-9,2,0,1,6.822419785301824,0,1,1,18,2,3,1,-9,2,2019,1,4,12,3,55,5,15,1,3,1,0,3.714991047320975,3.714991047320975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,60.15,6,1,0,0,4,3,1,480.5,0,0,0 +8663,10632,19364,19363,-9,-9,4,1,1,18,1,0,1,0,2,-9,2,1,0,3,7.243330041776308,7.137407269432501,0,2,0,-9,2,0,-1,68.63115018667767,-9,1,0,19,2,3,1,-9,-9,2019,1,2,8,0,44,0,15,1,0,1,0,4.10289776349761,4.10289776349761,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,4,3,1,480.5,0,0,0 +8664,10633,19365,19366,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,6.69990597815683,6.83054927288878,1,0,-9,6,0,5,-72.73838393714796,0,0,0,77,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,0,41.77145998258865,0,0,0,0,1,1,0,0,6.749637471614599,0,0,54,45,6,1,0,0,11,2,1,2178,0,0,0 +8664,10633,19366,19365,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,5.704658045180833,5.653064874845777,1,0,-9,6,0,-5,-41.07306093982513,0,0,0,82,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.877755179307564,27.44394388704281,1,52,45,6,1,0,0,11,2,1,2178,0,0,0 +8665,10634,19367,-9,19368,-9,5,1,0,10,2,0,4,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-963.647196492534,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,3,1,0,0,2,1,0,201,0,0,0 +8665,10634,19368,-9,-9,-9,1,1,0,44,2,0,4,0,2,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-962.7237075505016,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,32,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,73.56629123775346,3,36.75,18.55,4,1,0,1,2,1,0,201,0,0,0 +8666,10635,19369,19370,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,7.339855088419185,7.538587188333618,6.529774009591963,1,0,-9,47,0,-7,14.64655005223707,0,0,0,74,2,2,3,3,-9,2019,4,2,8,0,26,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7575083794351,0,0,54.2,57.49,6,4,0,0,8,3,0,644.5,0,0,0 +8666,10635,19370,19369,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,6.089303523455857,6.500736803474062,1,0,-9,9,0,7,-3.388415164068908,0,0,0,67,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.280725077327403,0,0,55.2,49.4,6,4,0,0,8,3,0,644.5,0,0,0 +8667,10636,19371,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,2,8.611493289260821,8.402012121457762,0,3,0,0,0,-9,0,-1036.422078626343,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,37,37,15,1,5,-9,0,15.10282247491723,15.10282247491723,0,0,0,0,0,0,0,0,0,0,4.765676552370175,0,10.22059787456472,3,39.39,37.66,4,1,0,0,8,5,1,596,0,0,0 +8668,10637,19372,19373,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,56,0,1,14.36184734838409,0,0,0,79,2,2,3,3,-9,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,1,0,27.24749293781161,0,0,0,0,1,1,0,1.249937037175881,0,0,0,35.61,36.69,6,1,0,0,10,2,1,2868.5,0,0,0 +8668,10637,19373,19372,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,7.760662792379732,7.609152608922625,1,0,-9,57,0,-1,-66.57763095806486,0,0,0,80,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.736637382737102,7.106678935503508,12.38602467133893,1,51.77,40.16,6,1,0,0,10,2,1,2868.5,0,0,0 +8669,10638,19374,19375,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,5.244412627669913,5.147012525307455,1,0,-9,10,0,-2,-175.7509871123061,0,0,0,75,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,10.64522747132648,0,0,0,0,1,1,0,0,5.37392830385984,0,0,43.09,29.74,5,1,0,0,13,2,1,1353,0,0,0 +8669,10638,19375,19374,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,2,-20.48530144068468,0,0,0,73,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,2.512432084558874,0,0,12.81735947995726,0,1.821424844598798,1,1,0,0,0,0,0,52,47,5,1,0,0,13,2,1,1353,0,0,0 +8669,10639,19376,-9,19374,19375,3,1,1,41,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-995.7278586132729,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.366968423373575,3,28.34,51.22,4,1,0,0,13,1,1,977,0,0,0 +8669,10640,19377,-9,19374,19375,4,1,1,41,3,0,0,0,2,-9,2,1,0,3,7.681271322777219,7.571484494365303,0,3,0,0,0,-9,0,-978.3791234468246,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,30,30,15,1,1,-9,1,8.284394559231989,8.284394559231989,0,0,0,0,0,0,0,1,1,0,0,0,11.69596039657776,3,45.54,53.52,5,1,0,0,13,3,1,731,0,0,0 +8669,10641,19378,-9,19374,19375,5,1,1,37,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1157.729840265956,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,13,1,1,657,0,0,0 +8670,10642,19379,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1128.014343636132,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.81118009055806,3,52,45,6,1,0,0,13,1,1,692,0,0,0 +8670,10643,19380,-9,19379,-9,2,1,0,53,2,0,0,0,3,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1055.688347951189,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,5,1,0,0,13,1,1,395,0,0,0 +8671,10644,19381,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,4,3,0,4,0,4.164667884428567,4.499522496019021,3,0,0,0,-9,0,-885.6216082609326,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.597542220637154,4.440302085575944,126.1327022488082,3,51.83,57.2,6,1,0,0,11,2,1,836,0,0,0 +8672,10645,19382,19383,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,5.054260888628732,5.412816477336335,1,0,-9,5,0,1,55.18467467508179,0,0,0,84,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5681186353561478,5.113257664531194,0,0,53,44,5,1,0,0,9,2,1,380.5,0,0,0 +8672,10645,19383,19382,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,3,0,5.975665814182546,6.385093943765136,1,0,-9,39,0,-1,-28.4481927527527,0,0,0,85,3,3,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.650112977102007,6.586383462214052,0,0,50.76,34.74,6,1,0,0,9,2,1,380.5,0,0,0 +8673,10646,19384,19385,-9,-9,1,1,0,27,1,1,1,0,1,-9,2,1,0,5,9.081806689675325,9.264144793682901,0,2,0,-9,4,0,-1,-3.738324196367928,0,1,1,28,2,5,1,2,2,2019,1,2,7,0,30,45,15,1,0,1,0,34.82080591110101,34.82080591110101,0,0,0,0,0,0,0,0,0,0,4.815970496899593,0,0,0,57.06,57.76,7,1,0,0,12,5,1,2564,0,0,0 +8673,10646,19385,19384,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,5,8.874203949697868,8.745944889043781,0,2,0,-9,4,0,1,8.641526592702009,0,1,0,27,1,5,1,-9,-9,2019,1,1,5,0,60,62,15,1,0,1,0,16.50102686802203,16.50102686802203,0,0,0,0,0,0,0,0,0,0,3.519413858505804,0,0,0,58.05,54.52,6,1,0,0,12,5,1,2564,0,0,0 +8673,10646,19386,-9,19384,19385,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1008.765192798502,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,12,5,1,2564,0,0,0 +8674,10647,19387,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,6.770065414572618,6.354249468987775,3,0,0,0,-9,0,-1160.930486573709,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.667118260747273,0,0,58.75,48.57,7,1,0,0,7,2,1,1817,0,0,0 +8675,10648,19388,-9,19390,19389,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.5727427868643,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,0,642.5,0,0,0 +8675,10648,19389,19390,-9,-9,2,1,1,34,1,0,2,0,2,-9,1,1,0,3,8.498676941789688,8.315946541827056,0,2,0,-9,7,0,1,10.78553363171705,0,0,0,33,2,2,1,-9,-9,2019,1,1,9,1,40,40,15,1,1,1,0,8.12836342258942,8.12836342258942,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.56,48.19,2,1,0,1,4,3,0,642.5,0,0,0 +8675,10648,19390,19389,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,2,6.740960524933963,7.664873767074387,0,2,0,-9,7,0,-1,-47.23293262162388,0,0,1,34,2,3,1,-9,-9,2019,1,2,12,0,23,23,15,1,0,1,0,6.613478188191746,6.613478188191746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.59,39.01,4,1,0,0,4,3,0,642.5,0,0,0 +8675,10648,19391,-9,19390,19389,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-959.182427151155,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,0,642.5,0,0,0 +8676,10649,19392,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,4,8.091166859154688,7.735772172780139,0,4,0,0,0,-9,0,-1000.318301553558,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,42,15,1,0,-9,0,9.548205975858638,9.548205975858638,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,3,1,0,0,8,3,0,233,0,0,0 +8676,10649,19393,-9,19392,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-922.4350486132549,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,3,0,233,0,0,0 +8677,10650,19394,19396,-9,-9,1,1,1,40,1,1,2,0,2,-9,2,1,0,4,9.293755875269312,9.458956791727704,0,2,0,-9,8,0,1,-72.70725685969167,0,0,0,39,1,4,1,2,2,2019,1,2,7,0,77,77,15,1,0,1,0,18.28886921283131,18.28886921283131,0,0,0,0,0,0,0,1,1,0,2.947268971128448,0,0,0,49.86,55.31,6,1,0,0,9,5,1,737.75,0,0,0 +8677,10650,19395,-9,19396,19394,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.3309947269991,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,5,1,737.75,0,0,0 +8677,10650,19396,19394,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,4,8.596694071539236,9.142732038073602,0,2,0,-9,8,0,-1,-44.19028223258006,0,0,1,40,2,4,1,1,2,2019,1,1,7,0,44,48,15,1,0,1,0,15.84863719227011,15.84863719227011,0,0,0,0,0,0,0,1,1,0,.9793949804871779,0,0,0,49.86,55.31,6,1,0,0,9,5,1,737.75,0,0,0 +8677,10650,19397,-9,19396,19394,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.526619951147,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,5,1,737.75,0,0,0 +8678,10651,19398,19399,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.672200736561051,8.862920374440391,0,1,0,-9,2,0,4,31.0716487052162,0,0,0,49,3,4,1,-9,3,2019,1,2,7,0,47,40,15,1,0,1,0,9.665959020639857,9.665959020639857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,0,1047.5,0,0,0 +8678,10651,19399,19398,-9,-9,2,1,0,49,1,0,0,0,3,-9,2,1,0,4,7.8350429019912,7.76251570982304,0,1,0,-9,2,0,-4,59.37453541619382,0,0,0,53,2,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,8.46493493811168,8.46493493811168,0,0,0,0,0,0,0,0,0,0,0,0,4.117251052072641,3,49.35,59.64,6,5,0,0,4,4,0,1047.5,0,0,0 +8679,10652,19400,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,1,1,0,4,8.394152764232635,8.271712979827143,0,3,0,0,0,-9,0,-1007.815802428232,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,35,35,15,1,0,-9,0,19.82554719115027,19.82554719115027,0,0,0,0,0,0,0,0,0,0,2.942119126608187,0,0,0,57.16,56.15,5,1,0,0,7,5,1,640,0,0,0 +8680,10653,19401,-9,-9,-9,1,1,1,65,3,2,2,0,2,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1051.901807723471,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.479278005109198,0,0,0,52,47,5,4,0,0,8,1,0,535,0,0,0 +8680,10654,19402,-9,-9,19401,2,1,1,25,2,2,2,0,2,-9,2,1,0,4,8.199386499021953,8.253962012207005,0,3,0,0,0,-9,0,-1043.866401436145,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,48,42,15,1,1,-9,1,8.069076834839016,8.069076834839016,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,4,0,0,8,4,0,496,0,0,0 +8680,10655,19403,19406,-9,-9,5,1,1,29,1,2,2,0,2,-9,2,1,0,4,8.094771929133874,8.039075801544456,0,2,0,-9,1,-9,1,-34.78548619211091,-9,1,0,28,2,4,3,-9,-9,2019,2,3,10,0,24,0,15,1,1,3,0,15.42763369176946,15.42763369176946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,4,0,0,8,3,0,1249.5,0,0,0 +8680,10655,19404,-9,19406,19403,4,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.4106488520131,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,3,0,1249.5,0,0,0 +8680,10655,19405,-9,19406,19403,6,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1003.112748483368,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,8,3,0,1249.5,0,0,0 +8680,10655,19406,19403,-9,19401,3,1,0,28,1,2,2,0,2,-9,6,3,0,4,0,0,0,2,0,1,1,-9,-1,33.85643706859095,0,1,1,29,2,4,1,-9,2,2019,3,5,17,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.64569043790227,3,37.19,60.95,5,4,0,0,8,3,0,1249.5,0,0,0 +8681,10656,19407,19408,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,4.487895424429049,4.046300911077305,1,0,-9,57,0,-5,-49.4861777088464,0,0,0,83,3,2,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.103242977593321,31.73310286791902,1,47.07,53.97,4,1,0,0,5,2,0,478,0,0,0 +8681,10656,19408,19407,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,5,-34.70738291212189,0,0,0,78,3,3,3,-9,-9,2019,4,1,24,11,0,0,15,4,11,4,0,0,0,1,0,.0628496414576523,0,0,0,0,1,1,0,0,0,0,0,29.43,32.82,5,1,0,0,5,2,0,478,0,0,0 +8682,10657,19409,19410,-9,-9,2,1,1,61,1,0,0,0,3,-9,1,1,0,2,7.180362625965639,7.242212592743546,0,1,0,-9,42,0,2,-38.41430098031478,0,0,0,59,3,4,1,3,3,2019,1,1,6,0,35,35,15,1,0,1,0,3.50660025518069,3.50660025518069,0,0,0,0,0,0,0,0,0,0,7.733330746652741,0,2.000382325860675,3,46,38,7,1,0,0,7,4,1,700.5,0,0,0 +8682,10657,19410,19409,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,4,8.167208179914013,8.32773364060883,0,1,0,-9,42,0,-2,-39.57010768875189,0,0,0,61,3,2,1,2,2,2019,1,2,7,0,31,31,15,1,0,1,0,11.81252164442797,11.81252164442797,0,0,0,0,0,0,0,0,0,0,2.541367723294245,0,2.708428251296211,3,54.2,57.49,6,1,0,0,7,4,1,700.5,0,0,0 +8683,10658,19411,-9,-9,-9,1,1,0,42,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-943.7558026939718,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4301566862394784,0,0,0,31.68,17,2,3,0,0,4,1,0,808,0,0,0 +8684,10659,19412,-9,-9,-9,1,1,1,74,2,0,0,0,1,-9,97,3,0,4,0,8.069010513451705,7.85636374647699,3,0,0,0,-9,0,-1047.844433454442,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.351726475583024,7.63861366949572,0,0,55.87,53.99,6,1,0,0,9,3,1,323,0,0,0 +8685,10660,19413,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,7.361056504169281,7.300798953187974,3,0,-9,0,-9,0,-987.6746820766056,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.140508827934136,7.334155479004693,0,0,41.52,38.85,6,1,0,0,11,3,0,429,0,0,0 +8686,10661,19414,19415,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,4,8.424958426047198,8.494230025432913,0,1,0,-9,2,0,5,44.52366626944647,0,0,1,31,1,3,1,2,1,2019,1,2,13,2,43,40,15,1,2,1,0,11.74263215620186,11.74263215620186,0,0,0,0,0,0,0,0,0,0,1.370624537700825,0,0,0,47.32,55.37,6,1,0,0,5,5,1,1542,0,0,0 +8686,10661,19415,19414,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,3,8.60085775271067,8.218886647717548,0,1,0,-9,2,0,-5,-14.61888847559803,0,0,0,36,1,4,1,-9,-9,2019,1,1,15,5,40,44,15,1,5,1,0,12.88879217943374,12.88879217943374,0,0,0,0,0,0,0,0,0,0,2.440703531067415,0,0,0,39.02,59.17,5,1,0,0,5,5,1,1542,0,0,0 +8687,10662,19416,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,3,0,4.615081141172089,4.48625775467517,3,0,0,0,-9,0,-985.3286884396293,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.976556665659981,4.99656679114131,0,0,54,46,6,1,0,0,12,2,0,387,0,0,0 +8688,10663,19417,19418,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,39,0,-13,0,0,0,0,78,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.52,41.71,5,1,0,0,4,1,1,1945.5,0,0,0 +8688,10663,19418,19417,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,41,0,13,0,0,0,0,65,1,3,3,-9,-9,2019,4,1,11,0,0,50,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,58.9,45.74,6,1,0,0,4,1,1,1945.5,0,0,0 +8688,10664,19419,-9,19417,19418,3,1,0,25,2,0,0,1,1,0,7,2,0,5,0,6.733506444975601,6.705769185139683,3,0,0,0,-9,0,-895.4827002796521,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,7.034345637363129,0,0,0,57.06,57.76,6,1,0,0,4,2,1,405,0,0,0 +8689,10665,19420,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,3,8.484389312811038,8.651638216642255,0,3,0,0,0,-9,0,-998.4343722741099,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,38,20,15,1,1,-9,0,15.70850692257414,15.70850692257414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.85,41.57,6,4,0,0,8,5,0,828,0,0,0 +8690,10666,19421,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,4,7.476563527766054,7.324766051484926,0,4,0,0,0,-9,0,-1062.331135221684,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,24,22,15,1,0,-9,0,6.863499008358813,6.863499008358813,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,2,0,652.3333333333334,0,0,0 +8690,10666,19422,-9,19421,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.911799782402,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,2,0,652.3333333333334,0,0,0 +8690,10666,19423,-9,19421,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-956.2311872991658,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,2,0,652.3333333333334,0,0,0 +8691,10667,19424,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,4.884486748614231,4.657197641396895,3,0,0,0,-9,0,-1086.892475124251,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.72332011069088,0,0,43.42,28.08,7,1,0,0,11,1,1,616,0,0,0 +8692,10668,19425,-9,-9,-9,1,1,0,36,3,0,2,0,1,-9,2,1,0,5,8.668938254300361,8.192088870974443,0,4,0,0,0,-9,0,-979.0807745292996,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,39,15,1,0,-9,0,14.43951958929192,14.43951958929192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,6,1,0,0,2,4,1,3106.333333333333,0,0,0 +8692,10668,19426,-9,19425,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.292337484902,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,3106.333333333333,0,0,0 +8692,10668,19427,-9,19425,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-973.1794714971695,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,3106.333333333333,0,0,0 +8693,10669,19428,-9,19430,-9,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1016.544864877751,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,2141,0,0,0 +8693,10669,19429,-9,19430,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1133.775273695226,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,2141,0,0,0 +8693,10669,19430,-9,-9,-9,1,1,0,47,3,0,2,0,3,-9,2,1,0,3,7.297566179074852,7.609960382458534,0,4,0,0,0,-9,0,-1045.956753805295,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,26,18,15,1,0,-9,0,7.883174429742288,7.883174429742288,0,0,0,0,0,0,0,1,1,0,0,0,0,3,42.32,44.11,2,1,0,0,12,2,0,2141,0,0,0 +8693,10670,19431,-9,19430,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,3,6.837538224252619,6.389131052999118,0,3,0,0,0,-9,0,-1041.865521480253,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,15,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.5106751623500625,0,0,0,25.61,62.71,3,1,0,0,12,2,0,351,0,0,0 +8694,10671,19432,-9,19433,-9,3,1,0,17,2,0,1,0,2,-9,7,2,0,4,5.976643703457464,6.174346930839905,0,4,0,0,0,-9,0,-1034.596111312037,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,4,0,0,7,4,1,511.5,0,0,0 +8694,10671,19433,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,3,8.507708460501631,8.239124156488986,0,4,0,0,0,-9,0,-1026.853519913688,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,18.37088995744433,18.37088995744433,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,4,0,0,7,4,1,511.5,0,0,0 +8694,10672,19434,-9,19433,-9,2,1,1,24,2,0,1,0,2,-9,2,1,0,3,8.085031613826322,7.878764174941892,0,3,0,0,0,-9,0,-1061.283261204544,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,46,34,15,1,0,-9,1,6.175448123442653,6.175448123442653,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,4,0,0,7,3,1,1218,0,0,0 +8695,10673,19435,19436,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,10,0,-4,160.0030500666778,0,0,0,72,2,3,3,-9,-9,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,1,0,22.15604126019638,0,0,0,0,1,1,0,0,0,0,0,26.06,24.75,5,1,0,0,2,2,0,658.5,0,0,0 +8695,10673,19436,19435,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,5.333809342806249,5.528171442799517,1,0,-9,20,0,4,28.949114385413,0,0,0,68,3,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.483056235396784,4.911787741663768,77.43218337166616,1,49.93,36.58,6,1,0,0,2,2,0,658.5,0,0,0 +8696,10674,19437,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,4,7.42626153391137,7.390776400304582,0,3,0,0,0,-9,0,-1016.053918076885,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,38,30,15,1,0,-9,0,5.642418128217339,5.642418128217339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,0,1366,0,0,0 +8697,10675,19438,-9,19441,19440,4,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-969.8933852714035,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,4,1,1,474.2,0,0,0 +8697,10675,19439,-9,19441,19440,5,1,1,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1095.814850578598,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,4,1,1,474.2,0,0,0 +8697,10675,19440,19441,19443,-9,1,1,1,39,1,0,3,0,1,-9,1,1,0,4,4.335994198549884,4.534703562176966,0,2,0,-9,11,0,7,-25.39166689828128,0,0,0,32,2,4,3,3,-9,2019,2,2,11,0,36,35,15,1,0,3,0,.2213670406726859,.2213670406726859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,5,3,0,0,4,1,1,474.2,0,0,0 +8697,10675,19441,19440,-9,-9,2,1,0,32,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-7,181.034471552835,0,0,1,39,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,4,1,1,474.2,0,0,0 +8697,10675,19442,-9,19441,19440,6,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.1141732504339,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,1,1,474.2,0,0,0 +8697,10676,19443,-9,-9,-9,3,1,0,73,3,0,3,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1160.033704781479,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,3,0,0,4,1,1,261,0,0,0 +8698,10677,19444,19445,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,1,7.895314177336764,7.681131882026378,0,1,0,-9,8,0,-1,112.2578330502649,0,0,0,62,2,3,3,-9,-9,2019,2,2,16,4,75,40,15,1,4,3,0,3.924092571833968,3.924092571833968,0,0,0,0,0,0,0,0,0,0,0,0,8.917494387775253,3,60.03,10.7,6,1,0,0,13,3,1,1053.5,0,0,0 +8698,10677,19445,19444,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,8,0,1,-98.03794523574845,0,0,0,61,3,1,1,3,3,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.03,40.8,3,1,0,0,13,3,1,1053.5,0,0,0 +8699,10678,19446,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,2,1,0,4,8.934584671852598,8.815158774220906,0,3,0,-9,0,-9,0,-789.5731593146983,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,0,15,1,0,-9,0,16.41364966692792,16.41364966692792,0,0,0,0,0,0,0,1,1,0,0,0,13.97385851715828,3,57.16,56.15,6,1,0,0,9,5,1,933,0,0,0 +8700,10679,19447,-9,19449,19451,5,1,1,1,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1165.584258989269,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,1,0,1290.2,0,0,0 +8700,10679,19448,-9,19449,19451,3,1,0,5,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.7454045678496,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,1,0,1290.2,0,0,0 +8700,10679,19449,19451,-9,-9,2,1,0,25,1,2,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,2,0,-2,0,0,1,1,27,2,2,3,-9,-9,2019,4,1,15,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.23,51.2,5,3,0,0,2,1,0,1290.2,0,0,0 +8700,10679,19450,-9,19449,19451,4,1,0,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.6353705386904,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,2,1,0,1290.2,0,0,0 +8700,10679,19451,19449,-9,-9,1,1,1,27,1,2,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,2,0,2,0,0,1,0,25,2,2,3,-9,-9,2019,4,2,24,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.34,47,3,3,1,0,2,1,0,1290.2,0,0,0 +8701,10680,19452,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-967.3137129829012,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,26,6,1,1,1,12,1,0,267,0,0,0 +8702,10681,19453,19454,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,6.662880242776056,6.634629187910272,1,0,-9,9,0,1,-22.66166236687098,0,0,0,69,3,2,3,3,3,2019,4,2,28,12,0,0,15,4,12,4,0,0,0,1,0,22.84337160897478,0,0,0,0,1,1,0,0,6.501358936588577,0,0,35.29,42.24,4,1,0,0,2,2,1,522,0,0,0 +8702,10681,19454,19453,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,-94.94569791177892,0,0,0,70,3,2,3,3,3,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,1,0,5.810899176245045,0,0,0,0,1,1,0,0,0,0,0,50.49,26.94,6,1,0,0,2,2,1,522,0,0,0 +8703,10682,19455,19456,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,6.289075367019157,5.886406335587173,1,0,-9,49,0,7,-113.1372085897849,0,0,0,72,3,5,3,-9,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.32314065123694,6.250887996425764,0,0,61.85,34.03,6,1,0,0,5,2,1,1243,0,0,0 +8703,10682,19456,19455,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,49,0,-7,60.17557702248947,0,0,0,79,3,2,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.474597159377005,0,0,0,60.02,56.42,7,1,0,0,5,2,1,1243,0,0,0 +8704,10683,19457,19458,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,7.429893934669266,7.690527707412348,1,0,-9,47,0,3,65.74892869558508,0,0,0,76,3,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.371170554003196,15.78555881390061,1,49.36,46.08,6,1,0,0,9,3,1,2280,0,0,0 +8704,10683,19458,19457,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,7.637615068183373,7.60217504513516,1,0,-9,47,0,-3,-107.2503366751233,0,0,0,79,2,4,3,3,2,2019,4,2,3,0,0,0,15,4,0,4,0,0,0,1,8.475223454106207,128.7650828455382,121.3639498673721,0,0,26.87414469677625,1,1,0,2.995659900181395,7.799583970841565,0,0,46.79,42.55,5,1,0,0,9,3,1,2280,0,0,0 +8705,10684,19459,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,4,0,4.439123490968797,4.510464859640811,3,0,0,0,-9,0,-1150.060553012963,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,4.799031047458598,0,0,0,0,43.19342805521916,1,1,0,.4460165393035412,4.702840467910346,0,0,56.52,50.99,4,1,0,0,12,2,0,238,0,0,0 +8706,10685,19460,-9,19461,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,3,8.093649072572259,7.631983312176964,0,3,0,-9,0,-9,0,-1112.065822497728,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,40,0,15,1,1,-9,1,8.468044274392872,8.468044274392872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.19,43.28,3,3,0,0,8,3,1,1620,0,0,0 +8706,10686,19461,-9,-9,-9,3,1,0,45,3,0,0,0,2,-9,2,1,0,4,8.791417390968771,8.888441454504335,0,3,0,-9,0,-9,0,-1018.043741791527,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,38,0,15,1,6,-9,0,23.3884730362991,23.3884730362991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,57.1,5,3,0,0,8,5,1,1219,0,0,0 +8706,10687,19462,19463,-9,-9,4,1,1,27,1,0,0,0,2,-9,2,1,0,4,7.873538990893238,7.675642833258658,0,1,0,-9,1,-9,1,72.57823874219922,-9,1,0,26,1,3,1,-9,-9,2019,1,1,10,0,43,0,15,1,0,1,0,6.250092791944022,6.250092791944022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,3,0,0,8,4,1,613.5,0,0,0 +8706,10687,19463,19462,19461,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,3,8.182979725384534,8.063084077093775,0,1,0,-9,1,-9,-1,11.06290440552559,-9,1,1,27,2,4,1,2,1,2019,1,4,19,7,38,0,15,1,7,1,0,9.961598442110557,9.961598442110557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.18,48.3,3,3,0,0,8,4,1,613.5,0,0,0 +8707,10688,19464,19465,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,3,7.066658731721164,6.942486992727687,0,1,0,-9,4,0,-4,-82.259168217198,0,0,0,49,2,4,1,-9,-9,2019,1,1,11,0,18,15,15,1,0,1,0,6.235466889680183,6.235466889680183,0,0,0,0,0,0,0,1,1,0,1.846769958228506,0,0,0,47.88,35.95,6,1,0,0,4,3,1,960.5,0,0,0 +8707,10688,19465,19464,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,4,7.435524023848699,7.504595177737699,0,1,0,-9,4,0,4,13.29504605516671,0,0,0,45,1,3,1,2,2,2019,1,2,12,0,40,35,15,1,0,1,0,4.963629478028072,4.963629478028072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,5,1,0,0,4,3,1,960.5,0,0,0 +8708,10689,19466,19467,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,4,0,5.105070235143926,5.123309978139674,1,0,-9,58,0,-6,85.07097877255646,0,0,0,84,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.82459857694804,5.076334415606266,0,0,52.87,47.21,7,1,0,0,4,2,0,1100,0,0,0 +8708,10689,19467,19466,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,3,0,6.217771466304153,6.338519794031521,1,0,-9,58,0,6,-64.69990424128974,0,0,0,78,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.478486517966275,0,0,55,45,6,1,0,0,4,2,0,1100,0,0,0 +8708,10690,19468,-9,19466,19467,3,1,1,55,2,0,0,0,2,-9,1,1,0,3,9.684982741142417,9.781310558472091,0,3,0,0,0,-9,0,-1000.13195176186,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,70,70,15,1,1,-9,1,20.25888118167391,20.25888118167391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,4,5,0,346,0,0,0 +8709,10691,19469,-9,-9,-9,1,1,1,89,2,0,0,0,3,-9,4,3,0,3,0,6.353254720710356,6.135547158661905,3,0,0,0,-9,0,-853.1907042146465,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.790018498335485,6.203914052001997,0,0,43.35,47.68,5,1,0,0,5,2,1,502,0,0,0 +8710,10692,19470,19471,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,4,8.937247863841344,8.389600916168918,0,1,0,-9,8,0,-3,-71.05292977635696,0,0,0,56,2,5,1,1,2,2019,1,1,8,0,41,42,15,1,0,1,0,19.98960960358916,19.98960960358916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,205,0,0,0 +8710,10692,19471,19470,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,5,8.122853449819262,7.774074777536472,0,1,0,-9,8,0,3,82.27714883110959,0,0,0,53,1,4,1,2,1,2019,1,2,12,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.00222941423666,0,0,0,48.77,60.16,6,1,0,0,7,5,1,205,0,0,0 +8711,10693,19472,19475,-9,-9,1,1,1,52,1,0,3,0,2,-9,2,1,0,5,8.717721220585638,8.511904926647341,6.067975504422851,2,0,-9,5,0,15,56.06930100304321,0,0,0,37,1,5,1,2,3,2019,1,2,5,0,39,38,15,1,0,1,0,17.16628196434837,17.16628196434837,0,0,0,0,0,0,0,1,1,0,5.97315355469842,0,0,0,62.39,56.71,1,1,0,0,6,5,1,985.2,0,0,0 +8711,10693,19473,-9,19475,19472,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.959458483017,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,5,1,985.2,0,0,0 +8711,10693,19474,-9,19475,19472,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.8567723856415,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,5,1,985.2,0,0,0 +8711,10693,19475,19472,-9,-9,2,1,0,37,1,0,3,0,1,-9,2,1,0,5,8.411866863148594,8.582549026656702,0,2,0,-9,5,0,-15,-68.5945888822335,0,0,1,52,2,5,1,-9,-9,2019,1,1,14,2,53,60,15,1,2,1,0,11.82451573474342,11.82451573474342,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.42,57.29,6,1,0,0,6,5,1,985.2,0,0,0 +8711,10693,19476,-9,19475,19472,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.6103382682721,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,985.2,0,0,0 +8712,10694,19477,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,1,1,0,4,5.41189452920164,6.887727629048029,6.591247389205368,3,0,0,0,-9,0,-1045.568164728211,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,1,3,0,15,1,1,-9,0,9.056177761289666,9.056177761289666,0,0,0,0,0,0,0,1,1,0,3.757027088504651,6.513814192626987,0,0,47.64,55.02,6,1,0,0,6,2,0,961,0,0,0 +8713,10695,19478,19482,-9,-9,5,1,1,33,1,1,3,0,1,-9,3,3,0,4,0,0,0,2,0,-9,3,0,-5,31.72048532770595,0,0,0,38,3,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,5,3,1,0,8,2,0,787.4,0,0,0 +8713,10695,19479,-9,19482,-9,6,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.1334020267433,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,8,2,0,787.4,0,0,0 +8713,10695,19480,-9,19482,19478,4,1,0,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.764915408902,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,3,0,0,8,2,0,787.4,0,0,0 +8713,10695,19481,-9,19482,19478,3,1,0,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.0212291417149,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,3,0,0,8,2,0,787.4,0,0,0 +8713,10695,19482,19478,-9,-9,1,1,0,38,1,1,3,0,3,-9,2,1,0,4,7.219300676898825,7.46427399517851,0,2,0,-9,3,0,5,-169.1367015469241,0,0,1,33,1,4,3,3,3,2019,2,5,11,0,24,24,15,1,1,3,0,6.743282065688661,6.743282065688661,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,56,5,3,0,0,8,2,0,787.4,0,0,0 +8713,10696,19483,-9,19482,19478,2,1,1,19,2,1,3,0,2,-9,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1165.047946774834,1,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.64,46.83,6,3,0,0,8,1,0,124,0,0,0 +8714,10697,19484,19485,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.287362303523018,8.713475385370126,0,1,0,-9,4,0,1,59.23494573473885,0,1,1,27,1,4,1,-9,-9,2019,1,1,5,0,41,30,15,1,0,1,0,10.39841842206053,10.39841842206053,0,0,0,0,0,0,0,0,0,0,2.35798824464798,0,0,0,52.43,55.57,6,1,0,0,2,5,1,1196,0,0,0 +8714,10697,19485,19484,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.669506359947604,8.369305502746155,0,1,0,-9,4,0,-1,-13.82198388630702,0,1,0,28,1,4,1,-9,-9,2019,1,2,11,0,41,43,15,1,0,1,0,14.2037514936043,14.2037514936043,0,0,0,0,0,0,0,0,0,0,2.492896238045948,0,0,0,45.75,55.83,6,1,0,0,2,5,1,1196,0,0,0 +8715,10698,19486,19487,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,7.722697016669417,8.041564691909153,1,0,-9,6,0,4,133.9428947296937,0,0,0,62,3,3,3,3,3,2019,4,2,7,1,0,20,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.188976411117914,7.574143584863876,0,0,61.07,21.87,6,1,0,0,13,3,1,1437,0,0,0 +8715,10698,19487,19486,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,6,0,-4,-100.8758687536503,0,0,0,66,2,2,3,3,3,2019,4,1,18,6,0,0,15,3,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.45655859942569,3,33.47,48.38,2,1,0,0,13,3,1,1437,0,0,0 +8716,10699,19488,19489,-9,-9,2,1,1,53,1,0,0,0,3,-9,1,1,0,3,7.685765771253624,7.88227819509701,0,1,0,-9,10,0,0,40.89049849049375,0,0,0,53,3,2,3,-9,-9,2019,2,1,15,3,30,30,15,1,3,3,0,10.35818200111649,10.35818200111649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.78,62.21,5,1,0,0,6,3,1,7814.5,0,0,0 +8716,10699,19489,19488,-9,-9,1,1,0,53,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,38,0,0,94.31780128852373,0,0,0,53,3,3,1,3,2,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,28,5,1,0,0,6,3,1,7814.5,0,0,0 +8716,10700,19490,-9,19489,19488,3,1,0,32,2,0,0,0,2,-9,2,1,0,4,7.515003175807561,7.73720135029999,0,3,0,0,0,-9,0,-1000.070929011281,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,22,0,15,1,3,-9,1,11.65467223441205,11.65467223441205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.07,48.73,6,1,0,0,6,3,1,3498,0,0,0 +8717,10701,19491,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,7.89964792919239,8.007139620290172,3,0,0,0,-9,0,-1049.711111692621,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.847350549714943,7.866701562823834,0,0,54.96,53.17,6,1,0,0,1,4,1,1709,0,0,0 +8718,10702,19492,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-951.7890045608262,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.83,19.9,5,1,0,0,12,1,0,1127,0,0,0 +8719,10703,19493,-9,19494,19495,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.5440268237254,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,2,1,1379.5,0,0,0 +8719,10703,19494,19495,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,4,7.054222558305043,7.422264726978373,0,2,0,-9,6,0,-3,67.05471460536076,0,0,1,38,3,5,1,2,2,2019,1,2,11,1,20,20,15,1,1,1,0,9.167189575650633,9.167189575650633,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.47,39.21,6,1,0,0,11,2,1,1379.5,0,0,0 +8719,10703,19495,19494,-9,-9,2,1,1,38,1,0,2,0,3,-9,1,1,0,5,5.762789994621515,5.844054211593405,0,2,0,-9,6,0,3,-111.1140315411106,0,0,0,35,2,4,1,-9,-9,2019,1,1,4,0,30,0,15,1,0,1,0,1.400152094737532,1.400152094737532,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,11,2,1,1379.5,0,0,0 +8719,10703,19496,-9,19494,19495,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.6579108826176,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,1,1379.5,0,0,0 +8720,10704,19497,19498,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,5,8.343511461673772,8.109208577571801,0,2,0,-9,7,0,5,1.767304379362368,0,0,1,30,1,3,1,-9,-9,2019,1,1,11,0,40,32,15,1,0,1,0,8.60722503668592,8.60722503668592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.64,46.16,7,1,0,0,4,4,1,579,0,0,0 +8720,10704,19498,19497,-9,-9,1,1,1,30,1,0,1,0,1,-9,2,1,0,3,7.50961620147432,7.480738740536705,0,2,0,-9,7,0,-5,82.17613741580283,0,0,0,35,1,5,1,2,1,2019,1,2,11,0,38,38,15,1,0,1,0,10.89916802767337,10.89916802767337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.51,51.57,5,3,0,0,4,4,1,579,0,0,0 +8720,10704,19499,-9,19497,19498,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.94463358139,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,4,4,1,579,0,0,0 +8721,10705,19500,-9,-9,-9,1,1,0,72,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1060.267562833574,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,4.148581050708385,0,0,0,0,60.04860091606922,1,1,0,2.630654040422604,0,0,0,51,47,5,1,0,0,9,1,0,1189,0,0,0 +8722,10706,19501,-9,19504,19503,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.150122581313,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,2,0,0,9,5,1,1307.8,0,0,0 +8722,10706,19502,-9,19504,19503,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.7777279474046,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,2,0,0,9,5,1,1307.8,0,0,0 +8722,10706,19503,19504,-9,-9,2,1,1,43,1,0,3,0,1,-9,2,1,0,3,9.700662381236576,9.572312724867173,0,2,0,-9,10,0,1,145.9565570306127,0,0,0,42,1,5,3,3,3,2019,2,1,11,0,46,53,15,1,0,3,0,39.21991076416158,39.21991076416158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,5,3,0,0,9,5,1,1307.8,0,0,0 +8722,10706,19504,19503,-9,-9,1,1,0,42,1,0,3,0,1,-9,6,3,0,5,6.367608300872224,6.495265711802085,0,2,0,-9,10,0,-1,86.52614900642241,0,0,1,43,1,3,1,2,2,2019,3,2,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1920287260721992,0,0,0,51.14,60.45,5,1,0,0,9,5,1,1307.8,0,0,0 +8722,10706,19505,-9,19504,19503,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-850.8964891218632,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,2,0,0,9,5,1,1307.8,0,0,0 +8723,10707,19506,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,6.981760992387289,6.896001295242708,3,0,0,0,-9,0,-1008.42942262751,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.103327381395541,6.897519710885302,0,0,65.62,29.12,7,1,0,0,6,2,1,769,0,0,0 +8724,10708,19507,19508,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,7.195847218765865,7.227212328244872,1,0,-9,49,0,3,-.5167026113726163,0,0,0,69,2,4,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.962977274478248,7.403247260005969,0,0,57.06,57.76,6,1,0,0,9,3,1,1458,0,0,0 +8724,10708,19508,19507,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.73976863406193,7.834863009948822,1,0,-9,49,0,-3,-11.1267930753703,0,0,0,72,2,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.899437316359466,7.741429398666718,0,0,57.16,56.15,7,1,0,0,9,3,1,1458,0,0,0 +8725,10709,19509,19510,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,3,7.811540088497417,7.521236161431396,5.083107325984542,1,0,-9,32,0,8,24.52931457076722,0,0,0,52,2,2,1,-9,-9,2019,1,1,17,5,40,44,15,1,5,1,0,6.097521936851733,6.097521936851733,0,0,0,0,0,0,0,0,0,0,0,5.1629842903336,0,0,45.99,39.38,4,1,0,0,12,4,1,719.5,0,0,0 +8725,10709,19510,19509,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.895205985612844,7.909505265648747,0,1,0,-9,32,0,-8,-5.43958912775109,0,0,0,60,2,3,1,3,3,2019,1,2,14,3,35,48,15,1,3,1,0,6.662782524860391,6.662782524860391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.4,31.71,5,1,0,0,12,4,1,719.5,0,0,0 +8726,10710,19511,19512,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,48,0,2,27.59953692025119,0,0,0,67,2,3,1,3,2,2019,3,2,11,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,7,2,1,244,0,0,0 +8726,10710,19512,19511,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,3,3.510310550494686,3.551434157640069,0,1,0,-9,48,0,-2,-11.02024429352062,0,0,0,69,2,3,3,3,3,2019,2,1,10,0,15,16,15,1,1,4,0,.2331347554213259,.2331347554213259,0,0,0,0,0,0,0,1,1,0,0,0,5.574342333867317,1,51,48,5,1,0,0,7,2,1,244,0,0,0 +8727,10711,19513,19514,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,3,0,7.325684977901449,7.467371893240957,1,0,-9,58,0,-2,-17.70124885987018,0,0,0,82,1,5,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.158456785397784,7.467765613856811,0,0,53.91,37.1,6,1,0,0,12,4,1,287,0,0,0 +8727,10711,19514,19513,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,5,0,8.215535970716635,8.3476458328915,1,0,-9,58,0,2,-77.54992648747491,0,0,0,80,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.07076553147713,7.967024561527523,0,0,51.39,59.18,7,1,0,0,12,4,1,287,0,0,0 +8728,10712,19515,-9,19516,-9,2,1,1,51,3,0,0,0,1,-9,2,1,0,2,7.712226057424475,7.73144064537304,0,3,0,0,0,-9,0,-976.5530718805865,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,19,0,15,1,0,-9,1,15.63896458712452,15.63896458712452,0,0,0,0,0,0,0,1,1,0,4.026657570683289,0,12.98316267541219,3,34.51,46.47,3,1,0,0,13,3,1,1734,0,0,0 +8728,10713,19516,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-958.7383773545836,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,13.13513029104847,0,0,30.32842371979061,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,13,1,1,701,0,0,0 +8729,10714,19517,19518,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,3,7.993328983337202,7.981194276384348,0,1,0,1,1,-9,0,-131.871533857373,0,0,0,32,2,5,1,2,2,2019,1,2,11,0,33,30,15,1,0,1,0,11.60932368700215,11.60932368700215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.72,46.82,6,1,0,0,10,5,1,496.5,0,0,0 +8729,10714,19518,19517,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,5,8.700258908564548,8.606520607986779,0,1,0,-9,1,-9,0,53.72342863572186,-9,0,1,32,1,3,1,-9,-9,2019,1,1,7,1,38,0,15,1,1,1,0,16.68915392481857,16.68915392481857,0,0,0,0,0,0,0,0,0,0,7.46618223789616,0,0,0,57.06,57.76,6,4,0,0,10,5,1,496.5,0,0,0 +8730,10715,19519,19520,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,2,7.17332792812489,7.241924419841665,0,1,0,-9,5,0,3,-28.44152747081384,0,0,0,48,2,4,1,2,3,2019,1,1,13,2,16,16,15,1,2,1,0,9.562655148047128,9.562655148047128,0,0,0,0,0,0,0,0,0,0,0,0,15.15249216998104,3,51.75,22.41,6,1,0,0,13,4,1,1331,0,0,0 +8730,10715,19520,19519,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.28016116740398,8.252673153155142,0,1,0,-9,5,0,-3,-30.6208366129227,0,0,0,51,2,2,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,12.69620978472167,12.69620978472167,0,0,0,0,0,0,0,0,0,0,8.953729883282742,0,2.975341083685569,1,51.83,57.2,6,1,0,0,13,4,1,1331,0,0,0 +8731,10716,19521,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1087.734480491665,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.32906925917773,3,32.15,18.09,2,1,0,1,9,1,0,254,0,0,0 +8731,10717,19522,-9,-9,-9,2,1,1,62,3,0,0,0,3,-9,8,3,1,1,0,6.406223509643928,6.537795468929774,3,0,0,0,-9,0,-1039.848579085986,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1351267939529516,6.422721452225759,5.166012750729509,3,42.45,17.7,3,1,0,0,9,2,0,264,0,0,0 +8732,10718,19523,19525,-9,-9,1,1,1,41,1,0,4,0,3,-9,6,3,0,2,0,0,0,2,0,-9,10,0,8,11.4224396127435,0,0,0,33,2,5,1,2,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,44.46,2,1,0,1,7,2,0,1123,0,0,0 +8732,10718,19524,-9,19525,19523,3,1,0,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.514493136633,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,1123,0,0,0 +8732,10718,19525,19523,-9,-9,2,1,0,33,1,0,4,0,2,1,2,1,0,5,7.874484300057374,7.954757558560144,0,2,0,-9,10,0,-8,50.76913466314572,-9,0,1,41,3,2,3,2,2,2019,2,1,12,3,50,0,15,1,3,3,0,6.006317998369084,6.006317998369084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.37,59.76,2,1,0,1,7,2,0,1123,0,0,0 +8732,10718,19526,-9,19525,19523,6,1,0,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-883.3588577569541,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,1123,0,0,0 +8732,10718,19527,-9,19525,19523,4,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.197189704311,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,1123,0,0,0 +8732,10718,19528,-9,19525,19523,5,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.617321984203,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,1123,0,0,0 +8733,10719,19529,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,4,3,0,2,0,8.292383105968412,8.255625217343905,3,0,0,0,-9,0,-905.8932831343485,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.296175621298959,7.943702734043371,0,3,58.48,17.89,6,1,0,0,9,4,1,924,0,0,0 +8734,10720,19530,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-978.5455987586726,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,34.32,19.62,5,1,0,0,2,1,0,992,0,0,0 +8735,10721,19531,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-967.8622968099265,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.433292225763765,5.920254102293776,0,0,1,1,0,0,0,0,0,61.56,25.59,7,1,0,0,13,1,0,272,0,0,0 +8736,10722,19532,-9,19534,19535,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1083.154654106494,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,1091.25,0,0,0 +8736,10722,19533,-9,19534,19535,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1019.354484195647,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,1091.25,0,0,0 +8736,10722,19534,19535,-9,-9,1,1,0,24,1,0,2,0,2,-9,2,1,0,3,7.705046465722712,7.953457283907772,0,2,0,-9,1,-9,-1,-91.2943821621774,-9,1,1,25,2,2,1,-9,-9,2019,1,2,16,6,28,0,15,1,6,1,0,9.945393406088535,9.945393406088535,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.82,54.92,6,1,0,0,4,4,1,1091.25,0,0,0 +8736,10722,19535,19534,-9,-9,2,1,1,25,1,0,2,0,2,-9,2,1,0,2,8.354379973956117,8.131168444968752,0,2,0,-9,1,-9,1,-20.76647452113034,-9,1,0,24,2,3,1,-9,-9,2019,1,1,13,3,42,0,15,1,3,1,0,12.9889016075517,12.9889016075517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.55,52.33,6,1,0,0,4,4,1,1091.25,0,0,0 +8737,10723,19536,19538,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,3,8.735360983309963,8.45598910659151,0,2,0,-9,24,0,-5,7.352370937333802,0,0,0,55,2,4,1,2,2,2019,1,2,9,0,42,48,15,1,0,1,0,13.37643860781474,13.37643860781474,0,0,0,0,0,0,0,1,1,0,2.464302921500385,0,0,3,59.07,43.05,6,1,0,0,9,4,1,1051.666666666667,0,0,0 +8737,10723,19537,-9,19538,19536,4,1,1,16,2,0,1,1,2,-9,7,2,0,5,6.546836394676084,6.392760887535345,0,2,0,0,0,-9,0,-977.8841620521612,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,8,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.46863587554789,0,0,0,51.14,60.45,6,1,0,0,9,4,1,1051.666666666667,0,0,0 +8737,10723,19538,19536,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,4,8.473702260358554,8.17376167417094,0,2,0,-9,24,0,5,-14.63443380103525,0,0,0,50,2,3,1,3,3,2019,1,1,32,12,92,45,15,1,12,1,0,3.670378484360547,3.670378484360547,0,0,0,0,0,0,0,1,1,0,0,0,12.87242163224423,3,22.86,61.07,3,1,0,0,9,4,1,1051.666666666667,0,0,0 +8737,10724,19539,-9,19538,19536,3,1,0,19,2,0,1,1,2,0,7,2,0,4,6.485219945496291,6.363386647960114,0,3,0,0,0,-9,0,-951.0342200219022,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,17,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.274072890359868,0,0,0,46.16,58.62,6,1,0,0,9,2,1,166,0,0,0 +8738,10725,19540,19541,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,5,17.4482795466631,0,0,0,64,2,4,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.71862065513742,0,0,3,57.33,53.46,6,1,0,0,10,3,1,607,0,0,0 +8738,10725,19541,19540,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.526753970545308,7.796639089726671,1,0,-9,4,0,-5,10.40892646783907,0,0,0,69,3,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.992633778629398,7.860149565291566,0,0,41.87,59.15,6,1,0,0,10,3,1,607,0,0,0 +8739,10726,19542,19543,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,3,0,7.393279681368027,7.583668434122409,1,0,-9,29,0,5,-161.518208460621,0,0,0,55,1,4,1,3,2,2019,3,2,11,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.747982750435659,7.748825458013222,0,0,50.51,53.71,6,1,0,0,13,4,1,1277,0,0,0 +8739,10726,19543,19542,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.003474694740492,8.248445408215183,0,1,0,-9,29,0,-5,-17.8715826197935,0,0,0,60,1,3,3,2,2,2019,2,1,12,0,37,37,15,1,0,4,0,9.909865258517932,9.909865258517932,0,0,0,0,0,0,0,0,0,0,.1159946073038392,0,0,0,52.82,53.97,6,1,0,0,13,4,1,1277,0,0,0 +8740,10727,19544,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-805.6547059533148,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.56,28.21,1,1,0,1,12,1,0,1593,0,0,0 +8741,10728,19545,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,2,1,0,2,7.450523014384743,7.602566980027413,0,3,0,0,0,-9,0,-980.6314283427538,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,23,0,15,1,0,-9,0,10.35987217563219,10.35987217563219,0,0,0,0,0,0,0,0,0,0,.6756141887250089,0,0,0,59.83,19.94,5,1,0,1,6,3,1,795,0,0,0 +8741,10729,19546,-9,19545,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,4,7.689341761390268,7.577918350973224,0,3,0,0,0,-9,0,-1026.151288162994,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,40,40,15,1,1,-9,1,8.374202311634411,8.374202311634411,0,0,0,0,0,0,0,0,0,0,1.687201437252502,0,0,0,44.26,59.43,6,1,0,0,6,4,1,828,0,0,0 +8741,10730,19547,-9,19545,-9,3,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.830260057161398,7.799657846946462,0,3,0,0,0,-9,0,-948.8850646670705,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,38,0,15,1,0,-9,1,6.746655182377856,6.746655182377856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,5,1,0,0,6,4,1,1436,0,0,0 +8742,10731,19548,19549,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,47,0,0,-83.57147932181643,0,0,0,65,3,3,1,3,3,2019,3,2,11,2,0,41,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.08,51.24,6,1,0,0,1,2,1,380,0,0,0 +8742,10731,19549,19548,-9,-9,2,1,0,65,1,0,0,0,3,-9,2,1,0,3,7.570525675964574,7.360003933586857,4.114169029349007,1,0,-9,47,0,0,.1437163895094056,0,0,0,65,2,2,3,3,-9,2019,2,1,8,0,27,33,15,1,0,4,0,8.610058933132708,8.610058933132708,0,0,0,0,0,0,0,1,1,0,0,3.779101082217174,10.64448328659262,3,61.69,36.54,2,1,0,0,1,2,1,380,0,0,0 +8743,10732,19550,-9,-9,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,4,8.273416159290582,7.947740559900894,0,3,0,0,0,-9,0,-1072.26017725018,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,46,40,15,1,3,-9,0,8.187937274828395,8.187937274828395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.29,60.08,4,1,0,0,2,4,1,985.5,0,0,0 +8743,10732,19551,-9,19550,-9,3,1,1,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-929.6636665365315,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,2,4,1,985.5,0,0,0 +8744,10733,19552,-9,-9,-9,1,1,0,36,3,0,0,0,1,-9,2,1,0,4,9.772449177461542,9.461914824201619,0,3,0,-9,0,1,0,-1002.997039056965,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,55,0,15,1,0,-9,0,33.91501820535166,33.91501820535166,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,0,0,8,5,0,170,0,0,0 +8745,10734,19553,19554,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,3,0,5.267816214624059,5.304146586657123,1,0,-9,10,0,6,26.45402470542641,0,0,0,78,3,3,3,3,2,2019,4,2,19,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3135074181404,5.287769506619656,0,0,37.99,50.34,7,1,0,0,4,2,1,1996,0,0,0 +8745,10734,19554,19553,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-6,38.23502538683692,0,0,0,84,3,3,3,3,2,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,1,0,10.7684462722081,0,0,0,0,1,1,0,0,0,0,0,45.42,45.07,7,1,0,0,4,2,1,1996,0,0,0 +8746,10735,19555,19557,-9,-9,2,1,0,27,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,4,0,-3,50.68481642469411,0,1,1,30,2,4,1,-9,-9,2019,3,1,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.569698047315579,3,36.97,58.59,6,1,0,1,9,2,0,827.75,0,0,0 +8746,10735,19556,-9,19555,19557,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.8550428116413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,2,0,827.75,0,0,0 +8746,10735,19557,19555,-9,-9,1,1,1,30,1,1,2,0,2,-9,2,1,0,4,7.454501969748793,7.649824728819004,0,2,0,-9,4,0,3,-15.73230985655565,0,0,0,27,2,4,3,3,3,2019,2,2,10,0,32,39,15,1,1,3,0,7.299181789145941,7.299181789145941,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,1,9,2,0,827.75,0,0,0 +8746,10735,19558,-9,19555,19557,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.287696824598,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,827.75,0,0,0 +8747,10736,19559,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1063.837710232654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.67,31.37,6,1,0,0,12,1,0,64,0,0,0 +8748,10737,19560,-9,19563,19564,4,1,1,11,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-807.8040045554968,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,3,0,0,8,3,0,812.8,0,0,0 +8748,10737,19561,-9,19563,19564,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-855.3440125127302,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,3,0,812.8,0,0,0 +8748,10737,19562,-9,19563,19564,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1177.230330751014,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,3,0,812.8,0,0,0 +8748,10737,19563,19564,-9,-9,2,1,0,42,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,15,0,-5,-43.63447132119736,0,0,1,47,3,4,1,3,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,6,5,0,0,8,3,0,812.8,0,0,0 +8748,10737,19564,19563,-9,-9,1,1,1,47,1,0,3,0,3,-9,2,1,0,4,8.115631963435643,7.959993347857002,0,2,0,-9,15,0,5,-38.55053744999972,0,0,0,42,2,4,3,-9,-9,2019,2,2,9,0,40,38,15,1,1,3,0,11.46672385107337,11.46672385107337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,8,3,0,812.8,0,0,0 +8749,10738,19565,19566,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,10,0,0,-115.002525238171,0,0,0,53,3,3,1,-9,-9,2019,1,2,9,1,0,107,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.2123967626384811,0,78.59010845338169,3,56.92,41.31,7,1,0,0,5,2,0,564.5,0,0,0 +8749,10738,19566,19565,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,3,7.208721404126266,7.288189916933236,0,1,0,-9,10,0,0,-76.13985962496055,0,0,0,53,3,3,1,-9,-9,2019,1,1,16,4,20,20,15,1,4,1,0,7.201834537818962,7.201834537818962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,39.55,4,1,0,0,5,2,0,564.5,0,0,0 +8750,10739,19567,19568,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,2,6.936750150533924,7.177428941776308,0,2,0,-9,8,0,-4,118.5620989148408,0,0,0,53,1,2,1,2,2,2019,1,2,13,2,5,0,15,1,2,1,0,31.07560278586615,31.07560278586615,0,0,0,0,0,0,0,1,1,0,1.122691840366971,0,0,0,53.22,33.96,6,1,0,0,1,5,1,607,0,0,0 +8750,10739,19568,19567,-9,-9,2,1,1,53,1,0,1,0,1,-9,1,1,0,2,8.966917210308669,9.139561735960424,0,2,0,-9,8,0,4,-2.680132890224705,0,0,0,49,2,2,1,-9,-9,2019,1,1,22,10,12,84,15,1,10,1,0,81.27553580077817,81.27553580077817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.46,54.66,2,1,0,0,1,5,1,607,0,0,0 +8751,10740,19569,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,6.854938057312281,6.60099947250553,3,0,-9,0,-9,0,-957.1331011710466,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,19.97022662365276,0,0,17.11364281277766,0,151.4844655543874,1,1,0,0,7.088114532135126,0,0,52,47,5,1,0,0,13,2,1,258,0,0,0 +8752,10741,19570,19571,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,2,8.736229978548758,8.498987466475864,0,1,0,-9,36,0,-4,-37.83888445801078,0,0,0,59,3,4,1,3,3,2019,1,2,7,0,20,0,15,1,0,1,0,26.09820238108167,26.09820238108167,0,0,0,0,0,0,0,0,0,0,4.046668434913885,0,27.7364706698568,3,60.53,48.35,7,1,0,0,12,5,1,201,0,0,0 +8752,10741,19571,19570,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,4,8.200255825685982,8.256532285103942,0,1,0,-9,6,0,4,89.29854299197852,0,0,0,55,3,2,1,-9,-9,2019,1,1,8,0,40,50,15,1,0,1,0,14.22793845352392,14.22793845352392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,53,6,1,0,0,12,5,1,201,0,0,0 +8753,10742,19572,-9,19573,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-940.6893716042406,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,2345,0,0,0 +8753,10742,19573,-9,-9,-9,1,1,0,42,2,0,2,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-944.9193716069789,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.82,35.87,4,1,0,0,2,1,0,2345,0,0,0 +8753,10743,19574,-9,19573,-9,2,1,0,18,2,0,2,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-909.8350214450209,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,2,1,0,485,0,0,0 +8754,10744,19575,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,1,1,0,4,8.649638225267294,8.536032161779859,0,3,0,0,0,-9,0,-1032.741808797927,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,30,15,1,0,-9,0,18.45935284873248,18.45935284873248,0,0,0,0,0,0,0,1,1,0,2.335957911517755,0,0,0,58.15,52.91,6,1,0,0,4,5,1,428,0,0,0 +8755,10745,19576,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1056.974106844791,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.16,27.02,4,1,0,0,2,1,0,206,0,0,0 +8756,10746,19577,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,5,9.10294313606822,9.148164458626344,0,3,0,0,0,-9,0,-1124.979814705446,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,46,15,1,0,-9,0,22.23336739160245,22.23336739160245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,9,5,0,1158,0,0,0 +8757,10747,19578,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,4,7.865790347045321,8.105964412168753,0,3,0,0,0,-9,0,-1016.475933654763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,44,44,15,1,1,-9,0,6.167920752042063,6.167920752042063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,50.88,6,1,0,0,7,3,1,162,0,0,0 +8758,10748,19579,19580,-9,-9,1,1,1,59,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-6,0,0,0,0,65,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,49,5,5,0,1,8,1,0,873,0,0,0 +8758,10748,19580,19579,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,6,0,0,0,0,59,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,5,0,1,8,1,0,873,0,0,0 +8759,10749,19581,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,3,8.805666604031058,8.986511084195659,0,3,0,0,0,-9,0,-1188.146364725873,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,40,15,1,0,-9,0,13.78916490373729,13.78916490373729,0,0,0,0,0,0,0,0,0,0,2.759053770413733,0,0,0,51.66,54.88,6,1,0,0,10,5,0,822,0,0,0 +8760,10750,19582,19583,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,6.954433080285664,7.016913971850918,1,0,-9,52,0,1,-63.39000616004236,0,0,0,66,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.947477710955787,6.771441787750923,0,0,60.29,52.11,4,1,0,0,10,2,1,742,0,0,0 +8760,10750,19583,19582,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,52,0,-1,25.88832866621382,0,0,0,67,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.69,31.4,5,1,0,0,10,2,1,742,0,0,0 +8761,10751,19584,19586,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.431272158961065,8.50810740437694,0,2,0,-9,15,-9,0,-37.98592762876841,-9,0,0,43,1,1,1,3,3,2019,1,1,7,0,48,0,15,1,0,1,0,16.2120084634348,16.2120084634348,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,11,5,1,510,0,0,0 +8761,10751,19585,-9,19586,19584,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1098.678597240108,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,5,0,0,11,5,1,510,0,0,0 +8761,10751,19586,19584,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,1,8.788593945832739,8.887781675305773,0,2,0,-9,15,-9,0,-119.5263844712705,-9,0,1,43,1,4,1,2,3,2019,1,2,24,10,45,0,15,1,10,1,0,17.74907793732694,17.74907793732694,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.61,33.66,2,1,0,0,11,5,1,510,0,0,0 +8761,10751,19587,-9,19586,19584,3,1,0,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,-9,0,-9,0,-1042.725449603102,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,11,5,1,510,0,0,0 +8762,10752,19588,19590,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,4,7.896545341858562,7.913094484197693,0,2,0,-9,7,0,-1,16.56076547455699,0,0,0,51,3,4,3,2,2,2019,2,2,8,0,34,32,15,1,0,3,0,10.10045507547826,10.10045507547826,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.79,55.86,5,1,0,0,11,3,1,569.6666666666666,0,0,0 +8762,10752,19589,-9,19588,19590,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.9801267111412,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,3,1,569.6666666666666,0,0,0 +8762,10752,19590,19588,-9,-9,2,1,1,51,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,7,0,1,-101.9397534045129,0,0,0,50,2,4,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,1,0,11,3,1,569.6666666666666,0,0,0 +8763,10753,19591,19592,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.226657366911597,8.256935203255617,0,1,0,-9,20,0,12,35.68566208326268,0,0,0,42,2,2,1,-9,2,2019,1,1,11,0,46,42,15,1,0,1,0,9.885205979066198,9.885205979066198,0,0,0,0,0,0,0,0,0,0,2.99648502452535,0,0,0,51.41,56.15,6,1,0,0,7,4,1,836,0,0,0 +8763,10753,19592,19591,-9,-9,1,1,0,42,1,0,0,0,2,-9,2,1,0,2,7.582976700336228,7.553825532244746,0,1,0,-9,20,0,-12,78.26663031835704,0,0,1,54,2,3,1,3,3,2019,1,2,27,11,38,38,15,1,11,1,0,5.587288685674981,5.587288685674981,0,0,0,0,0,0,0,0,0,0,0,0,5.990664823524952,3,34.9,35.81,4,1,0,0,7,4,1,836,0,0,0 +8764,10754,19593,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,2,7.763714498367254,7.626936046422581,0,3,0,0,0,-9,0,-917.2453109792045,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,25,25,15,1,1,-9,0,10.87910805138429,10.87910805138429,0,0,0,0,0,0,0,0,0,0,0,0,5.945216549701616,3,58.55,22.17,4,4,0,1,8,3,0,779,0,0,0 +8765,10755,19594,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-991.7839912876182,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.41,22.46,3,1,0,0,8,1,0,405,0,0,0 +8766,10756,19595,19596,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,4,7.958901025436221,7.792751343506292,0,1,0,-9,2,0,2,-47.64327372728771,0,0,0,47,2,2,3,3,2,2019,2,2,7,0,40,35,15,1,0,3,0,8.903869339773101,8.903869339773101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,5,1,0,0,11,3,0,321.5,0,0,0 +8766,10756,19596,19595,-9,-9,2,1,0,47,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,2,0,-2,87.04130034644029,0,0,0,49,2,4,1,2,2,2019,3,1,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.28,46.55,2,1,1,0,11,3,0,321.5,0,0,0 +8766,10757,19597,-9,19596,19595,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.503772709148676,7.574210209422842,0,3,0,0,0,-9,0,-1007.441515333062,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,35,15,1,0,-9,1,5.270800380420426,5.270800380420426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,59.13,6,1,0,0,11,3,0,262,0,0,0 +8766,10758,19598,-9,19596,19595,4,1,0,20,2,0,0,0,2,-9,2,1,0,5,7.685555643542515,7.720116792769123,0,3,0,0,0,-9,0,-894.1977839443941,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,1,6.965494202797514,6.965494202797514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,11,3,0,642,0,0,0 +8767,10759,19599,19600,-9,-9,1,1,1,50,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,0,0,-9,0,0,50,2,1,3,2,2,2019,4,2,29,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.68,30.97,2,1,0,1,12,1,0,330.5,0,0,0 +8767,10759,19600,19599,-9,-9,2,1,0,50,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,0,0,-9,0,0,50,2,1,3,3,3,2019,4,1,18,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,129.5390028676407,1,29.19,19.44,2,1,0,0,12,1,0,330.5,0,0,0 +8768,10760,19601,19602,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,5,8.889919571705978,8.55893693247838,0,2,0,-9,27,0,0,5.537664195261355,0,0,0,54,3,3,3,2,2,2019,2,1,7,0,41,39,15,1,0,3,0,20.19620526359339,20.19620526359339,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,7,1,0,0,1,3,1,1768,0,0,0 +8768,10760,19602,19601,-9,-9,1,1,1,54,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,37,0,9,-116.052160877818,0,0,0,45,1,5,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,4,1,0,0,1,3,1,1768,0,0,0 +8768,10760,19603,-9,19601,19602,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.9969015462432,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,3,1,1768,0,0,0 +8768,10760,19604,-9,19601,19602,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.805448462074,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,1,3,1,1768,0,0,0 +8769,10761,19605,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,1,1,0,4,8.290803089240955,8.079612747642919,0,3,0,0,0,-9,0,-925.7401354289224,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,10.68811506565544,10.68811506565544,0,0,0,0,0,0,0,0,0,0,3.720894487355338,0,0,0,57.16,56.15,6,1,0,0,2,4,1,269,0,0,0 +8770,10762,19606,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,2,0,5.270357994037091,5.724935649762766,3,0,0,0,-9,0,-1105.128798295222,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,.0537605798907146,.3403397793885188,0,0,1,1,0,.4734527131793448,5.41501438921197,0,0,54.77,31.94,4,1,0,0,7,2,1,433,0,0,0 +8771,10763,19607,19608,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,9.211051854743603,9.073916814387974,0,1,0,-9,8,0,5,105.666969019912,0,0,0,55,1,3,1,3,3,2019,1,2,10,0,60,50,15,1,0,1,0,18.09388039451448,18.09388039451448,0,0,0,0,0,0,0,0,0,0,3.985238267521999,0,0,0,48.81,59.91,5,1,0,0,9,5,1,367,0,0,0 +8771,10763,19608,19607,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,3,8.545013186832639,8.202234479937369,0,1,0,-9,8,0,-5,11.2611727468166,0,0,0,60,2,4,1,-9,-9,2019,1,1,8,0,50,52,15,1,0,1,0,8.874131733984342,8.874131733984342,0,0,0,0,0,0,0,0,0,0,7.916625786875683,0,0,0,45.63,54.63,5,1,0,0,9,5,1,367,0,0,0 +8772,10764,19609,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,1,1,0,4,7.588001249317794,7.433442568189289,0,3,0,0,0,-9,0,-1015.653555527698,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,30,15,1,0,-9,0,8.903054924475009,8.903054924475009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,6,1,0,0,2,3,1,1144,0,0,0 +8773,10765,19610,19611,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,4.367554153138374,4.057026948849942,1,0,-9,52,0,-3,21.00135161658149,0,0,0,74,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.02734673253648,0,0,53.88,33.91,4,1,0,0,6,2,1,761,0,0,0 +8773,10765,19611,19610,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,6.312700904933056,6.549296484161743,1,0,-9,52,0,3,181.6870315996737,0,0,0,71,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.27518706555989,0,0,48.29,47.89,5,1,0,0,6,2,1,761,0,0,0 +8774,10766,19612,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,6.74723413758397,6.27301302197334,3,0,0,0,-9,0,-1055.835685635913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,.6937339004958096,0,0,0,1,1,0,2.579028420772921,6.897848560095877,0,0,46.8,25.83,5,1,0,0,1,2,1,546,0,0,0 +8775,10767,19613,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,1,0,6.567600236319401,6.188838436132851,3,0,0,0,-9,0,-1114.016449888979,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.171395628408239,6.497133395242113,0,0,59.14,12.67,4,1,0,0,12,2,0,1547,0,0,0 +8776,10768,19614,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,2,7.377865295452821,7.067150900911638,0,3,0,0,0,-9,0,-935.6279469864729,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,32,32,15,1,0,-9,0,4.387312113449303,4.387312113449303,0,0,0,0,0,0,0,0,0,0,0,0,3.83601579324876,3,39.36,45.66,6,1,0,0,13,2,1,629,0,0,0 +8777,10769,19615,19617,-9,-9,1,1,1,39,1,0,3,0,1,-9,2,1,0,3,8.367736195214757,8.456601804493408,0,2,0,-9,2,0,6,-5.192590483662805,0,0,0,33,2,2,3,-9,-9,2019,2,2,30,12,46,65,15,1,12,3,0,12.00032205690563,12.00032205690563,0,0,0,0,0,0,0,1,1,0,0,0,3.395668402254326,3,29.27,54.23,2,3,0,1,6,3,1,271.5,0,0,0 +8777,10769,19616,-9,19617,19615,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.088052016264,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,3,1,271.5,0,0,0 +8777,10769,19617,19615,-9,-9,2,1,0,33,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,2,0,-6,50.02886030160457,0,0,1,39,1,3,1,-9,-9,2019,3,1,7,0,0,30,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.33,44.08,6,3,0,0,6,3,1,271.5,0,0,0 +8777,10769,19618,-9,19617,19615,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.3822146178939,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,271.5,0,0,0 +8778,10770,19619,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,2,1,0,5,8.544586666004028,7.9884298885917,0,3,0,0,0,-9,0,-955.5450622026094,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,50,15,1,0,-9,0,11.79654954966303,11.79654954966303,0,0,0,0,0,0,0,1,1,0,6.187452958818611,0,0,0,57.06,57.76,7,1,0,0,4,4,1,202,0,0,0 +8779,10771,19620,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1023.249699601064,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,5.429479450119286,0,0,0,1,1,0,0,0,0,0,54,43,6,1,0,0,5,1,0,381,0,0,0 +8780,10772,19621,-9,19623,19622,2,1,0,20,2,0,0,0,2,-9,1,1,0,4,7.807491783237312,7.652571057086417,0,3,0,0,0,-9,0,-947.8725556026061,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,45,20,15,1,0,-9,1,5.525057736005217,5.525057736005217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,3,1,536,0,0,0 +8780,10773,19622,19623,-9,-9,3,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.880899511704689,9.090581792367953,0,1,0,-9,6,0,5,22.38379630854013,0,0,0,43,2,4,1,-9,-9,2019,1,1,9,0,46,49,15,1,0,1,0,20.01939464638158,20.01939464638158,0,0,0,0,0,0,0,1,1,0,1.825739837207,0,0,0,50.25,54.04,5,1,0,0,4,5,1,561.5,0,0,0 +8780,10773,19623,19622,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,4,8.520649814737709,8.271946297579253,0,1,0,-9,6,0,-5,46.70111697580072,0,0,1,48,2,4,1,2,3,2019,1,3,7,0,38,44,15,1,0,1,0,14.97086343704172,14.97086343704172,0,0,0,0,0,0,0,1,1,0,0,0,2.65860021914404,3,51.49,57.57,7,1,0,0,4,5,1,561.5,0,0,0 +8781,10774,19624,19625,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,3,7.853503437212608,8.382014745938449,6.53046982020617,1,0,-9,9,0,10,-71.6852720682103,0,0,0,58,2,4,1,-9,-9,2019,1,1,10,0,44,40,15,1,1,1,0,7.118002126191118,7.118002126191118,0,0,0,0,0,0,0,0,0,0,0,6.311764200219228,0,0,51,48,5,1,0,0,4,4,1,342,0,0,0 +8781,10774,19625,19624,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,4,6.953862950483275,7.140571035840975,4.978469963438362,1,0,-9,15,0,-10,-14.30978954523264,0,0,0,68,3,3,1,-9,-9,2019,1,2,3,0,48,40,15,1,0,1,0,3.261975985855817,3.261975985855817,0,0,0,0,0,0,0,0,0,0,0,5.143946579406748,6.165368147448894,3,57.16,56.15,6,1,0,0,4,4,1,342,0,0,0 +8782,10775,19626,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,7.434235180833924,7.57029788298523,0,3,0,0,0,-9,0,-830.6279493444122,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,30,15,1,2,-9,0,5.896510038792677,5.896510038792677,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,1,12,3,1,448,0,0,0 +8783,10776,19627,19628,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,0,-118.6402630793936,0,0,0,71,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,1,0,9.387091906925589,0,0,0,0,1,1,0,0,0,0,0,45.39,33.63,4,1,0,0,4,2,1,466,0,0,0 +8783,10776,19628,19627,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,7.020879730379409,6.618796584286254,1,0,-9,10,0,0,-26.29128668109366,0,0,0,71,3,2,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.743694854799662,6.841224708782286,0,0,47.55,44.33,5,1,0,0,4,2,1,466,0,0,0 +8784,10777,19629,19630,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.219103362027202,7.788788890314012,0,1,0,-9,3,0,1,31.58331662584281,0,1,1,26,1,4,1,-9,-9,2019,1,2,9,0,49,0,15,1,0,1,0,5.853463877707158,5.853463877707158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,6,1,0,0,4,5,1,316,0,0,0 +8784,10777,19630,19629,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,4,8.507724205994682,8.77572563884139,0,1,0,-9,3,0,-1,-7.780682256125835,0,1,0,27,1,4,1,-9,-9,2019,1,1,12,1,44,45,15,1,1,1,0,15.53655115096756,15.53655115096756,0,0,0,0,0,0,0,0,0,0,7.196738140944274,0,0,0,51.83,57.2,6,1,0,0,4,5,1,316,0,0,0 +8785,10778,19631,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,3,0,6.12559242832545,5.98518438352636,3,0,0,0,-9,0,-986.7489747798385,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.990812938725328,0,0,49,48,5,3,0,1,2,2,1,1403,0,0,0 +8785,10779,19632,-9,-9,-9,2,1,1,42,2,0,0,0,1,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1061.029860651482,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.17828914615534,3,16.04,23.99,1,3,1,1,2,1,1,132,0,0,0 +8786,10780,19633,-9,19634,19636,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.379962847567,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,8,5,1,411.25,0,0,0 +8786,10780,19634,19636,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,3,8.958367650558804,8.810676925815976,0,2,0,-9,5,0,-12,29.44362338630616,0,0,1,52,1,4,1,-9,-9,2019,1,1,10,1,42,56,15,1,1,1,0,15.43125071224156,15.43125071224156,0,0,0,0,0,0,0,1,1,0,4.778490424829357,0,3.869514297876989,3,55.96,49.93,5,4,0,0,8,5,1,411.25,0,0,0 +8786,10780,19635,-9,19634,19636,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.006176137546,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,5,1,411.25,0,0,0 +8786,10780,19636,19634,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,4,8.799009962861666,8.545935208123641,0,2,0,-9,5,0,12,30.07143598355508,0,0,0,40,1,3,1,3,2,2019,1,2,9,1,62,46,15,1,1,1,0,10.4190917012144,10.4190917012144,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.91,54.79,5,1,0,0,8,5,1,411.25,0,0,0 +8787,10781,19637,-9,-9,-9,1,1,0,31,3,1,1,0,2,-9,5,1,0,3,0,0,0,4,0,0,0,-9,0,-975.3056635479026,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,23,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.11507440960476,3,49.83,40.56,6,1,0,1,11,1,1,302.5,0,0,0 +8787,10781,19638,-9,19637,-9,2,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1031.428124305429,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,1,1,302.5,0,0,0 +8788,10782,19639,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,4,6.390793848285484,6.624206641003346,5.785797774076237,3,0,0,0,-9,0,-957.5270609298127,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.642720207652067,0,0,0,54.2,57.49,6,2,0,0,4,2,0,995,0,0,0 +8789,10783,19640,19641,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,3,7.738411170326334,8.282147810482059,0,1,0,-9,3,0,-1,117.4313124128525,-9,0,0,32,1,4,1,-9,-9,2019,1,1,9,1,36,0,15,1,1,1,0,7.464544018321796,7.464544018321796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.08,48.44,6,1,0,0,9,4,0,1530.5,0,0,0 +8789,10783,19641,19640,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,7.7004035801937,7.708476011528363,0,1,0,-9,3,0,1,-13.51228361194919,0,0,1,31,1,3,1,2,1,2019,1,2,6,0,37,38,15,1,0,1,0,9.577375943245038,9.577375943245038,0,0,0,0,0,0,0,0,0,0,0,0,6.985365636483697,3,57.16,56.15,6,1,0,0,9,4,0,1530.5,0,0,0 +8790,10784,19642,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,3,0,8.465965019065203,8.509277819587384,3,0,0,0,-9,0,-940.242257678602,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.049662061402334,8.2376963916623,14.66981446818983,3,48.88,51.79,7,1,0,0,12,4,1,164,0,0,0 +8791,10785,19643,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,1,1,0,4,8.782515183494048,8.196836830391181,0,3,0,0,0,-9,0,-979.7746267291914,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,50,0,15,1,4,-9,0,9.624075633830531,9.624075633830531,0,0,0,0,0,0,0,0,0,0,0,0,82.11730798161238,3,42.11,57.44,3,1,0,0,5,5,1,373,0,0,0 +8792,10786,19644,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,4,0,6.632718496668851,6.958973136312723,3,0,0,0,-9,0,-973.8442290582673,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.715099131611347,6.820921763450749,0,0,57.16,56.15,6,1,0,0,7,2,0,70,0,0,0 +8793,10787,19645,-9,19646,19647,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1148.496021552451,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,312.3333333333333,0,0,0 +8793,10787,19646,19647,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,5,8.642628314726021,8.68544248900997,0,2,0,-9,10,0,-3,-62.14408309978911,0,0,1,43,1,4,1,2,3,2019,1,1,13,1,51,25,15,1,1,1,0,10.44142448124882,10.44142448124882,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,62.56,4,1,0,1,2,5,1,312.3333333333333,0,0,0 +8793,10787,19647,19646,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,4,8.806894243241782,8.809207566749407,0,2,0,-9,10,0,3,-24.76286968183138,0,0,0,40,1,5,1,2,2,2019,1,2,7,0,57,52,15,1,0,1,0,15.63155692586732,15.63155692586732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,1,2,5,1,312.3333333333333,0,0,0 +8794,10788,19648,19649,-9,-9,4,1,1,60,1,0,1,0,3,-9,2,1,0,3,8.418239758921128,8.047209959429063,0,2,0,-9,5,0,4,-48.78557177666908,0,0,0,56,3,3,1,-9,-9,2019,1,1,10,0,40,50,15,1,1,1,0,14.25017205726467,14.25017205726467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,5,1,0,0,9,4,1,704,0,0,0 +8794,10788,19649,19648,-9,-9,1,1,0,56,1,0,1,0,3,-9,2,1,0,3,7.366665123031924,7.936199124146385,6.966454724244807,2,0,-9,5,0,-4,-66.77215532821373,0,0,0,60,3,3,1,2,2,2019,1,4,10,2,22,23,15,1,2,1,0,9.198459212946789,9.198459212946789,0,0,0,0,0,0,0,1,1,0,0,6.800092382246699,0,0,51.03,41.35,6,1,0,0,9,4,1,704,0,0,0 +8795,10789,19650,19651,-9,-9,1,1,1,68,1,0,0,0,2,-9,1,1,0,4,9.088463683459635,9.03533610412639,7.568255614924891,1,0,-9,6,0,1,94.2292565531427,0,0,0,67,3,3,3,3,2,2019,2,2,9,0,35,30,15,1,0,4,0,30.36041548949635,30.36041548949635,0,0,0,0,0,0,0,1,1,0,0,7.661010730870891,0,0,64.23,44.69,2,1,0,0,12,5,1,769,0,0,0 +8795,10789,19651,19650,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,-10.10623205540223,0,0,0,68,2,4,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47.25,44.46,6,1,0,0,12,5,1,769,0,0,0 +8796,10790,19652,19653,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,6.93869348067784,6.600934350855648,1,0,-9,41,0,10,-8.668781467491405,0,0,0,58,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,1,0,.509507611459934,0,0,0,0,1,1,0,6.397955897409762,7.187385330193175,0,0,62.49,55.09,7,1,0,0,4,2,1,1116.5,0,0,0 +8796,10790,19653,19652,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,41,0,-10,-11.34896437231894,0,0,0,68,1,4,3,-9,-9,2019,4,1,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,4,2,1,1116.5,0,0,0 +8797,10791,19654,-9,19656,19658,3,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.508031790514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,1,0,410.4,0,0,0 +8797,10791,19655,-9,19656,19658,4,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.1341911181706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,12,1,0,410.4,0,0,0 +8797,10791,19656,19658,-9,-9,2,1,0,36,1,0,3,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,-2,0,0,0,1,38,2,1,3,-9,-9,2019,4,1,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.57364383758349,1,22.62,51.2,3,1,0,1,12,1,0,410.4,0,0,0 +8797,10791,19657,-9,19656,19658,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.117065916724,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,12,1,0,410.4,0,0,0 +8797,10791,19658,19656,-9,-9,1,1,1,38,1,0,3,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,2,0,0,0,0,36,2,1,3,-9,-9,2019,4,2,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,1,12,1,0,410.4,0,0,0 +8798,10792,19659,19661,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,4,7.924952490429327,7.689897753408104,0,2,0,-9,10,0,-1,76.61409216253385,0,0,0,49,2,3,1,2,2,2019,1,1,7,0,28,28,15,1,0,1,0,11.942479781181,11.942479781181,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.2,57.49,6,1,0,0,12,5,1,582.6666666666666,0,0,0 +8798,10792,19660,-9,19659,19661,3,1,1,17,2,0,1,0,2,1,97,3,0,4,6.181112885414382,6.3411986913936,0,2,0,0,0,-9,0,-963.3246618584614,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,1,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.873870629194229,3,46.1,59.99,4,1,0,0,12,5,1,582.6666666666666,0,0,0 +8798,10792,19661,19659,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.932805564938775,8.868691638145997,0,2,0,-9,10,0,1,-112.7828574503819,0,0,0,48,1,4,1,2,3,2019,1,2,12,1,40,40,15,1,1,1,0,19.06763923667869,19.06763923667869,0,0,0,0,0,0,0,1,1,0,4.703484502200771,0,.5416500539532512,3,46.52,50.17,5,1,0,0,12,5,1,582.6666666666666,0,0,0 +8799,10793,19662,19663,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-5,17.13483470411043,0,0,0,80,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.06,28.48,5,1,0,0,5,1,0,1806.5,0,0,0 +8799,10793,19663,19662,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,4.020787306809091,4.396167809235493,1,0,-9,8,0,5,87.85545300272925,0,0,0,75,3,3,3,-9,-9,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.478315302699639,0,0,60.8,38.18,5,1,0,0,5,1,0,1806.5,0,0,0 +8800,10794,19664,-9,19666,-9,1,1,0,32,2,0,1,0,2,-9,2,1,0,1,7.060131837380158,7.162154982088156,0,4,0,0,0,-9,0,-1018.972184075848,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,30,12,30,35,15,1,12,-9,0,4.759677188170423,4.759677188170423,0,0,0,0,0,0,0,1,1,0,0,0,0,3,17.98,51.85,1,4,0,0,8,2,0,2873.5,0,0,0 +8800,10794,19665,-9,19664,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-955.4508207652706,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,2,0,2873.5,0,0,0 +8800,10795,19666,-9,-9,-9,3,1,0,40,2,0,1,0,2,-9,4,3,0,4,0,0,0,4,0,-9,0,-9,0,-1054.463489536276,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,5,0,0,8,1,0,356,0,0,0 +8801,10796,19667,-9,19668,19670,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.871217999803,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,758.25,0,0,0 +8801,10796,19668,19670,-9,-9,2,1,0,32,1,2,2,0,1,-9,2,1,0,5,7.115206695280534,6.861260653620508,0,2,0,-9,3,0,1,24.96928314570171,0,0,1,31,2,4,1,-9,-9,2019,1,1,14,3,28,35,15,1,3,1,0,3.813281286321644,3.813281286321644,0,0,0,0,0,0,0,1,1,0,.4771774065269893,0,0,0,40.95,63.66,7,1,0,0,4,3,1,758.25,0,0,0 +8801,10796,19669,-9,19668,19670,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-955.1604094217013,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,3,1,758.25,0,0,0 +8801,10796,19670,19668,-9,-9,1,1,1,31,1,2,2,0,2,-9,2,1,0,4,8.589029759585973,8.166399733870872,0,2,0,-9,3,0,-1,6.604611007373277,0,0,0,32,1,5,1,2,2,2019,1,2,10,0,37,50,15,1,1,1,0,17.50108954213522,17.50108954213522,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,4,3,1,758.25,0,0,0 +8802,10797,19671,-9,19672,19673,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.0005729015706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,590,0,0,0 +8802,10797,19672,19673,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,4,7.69224960707463,7.715107668741016,0,2,0,-9,15,0,-16,34.42914710918416,0,0,1,56,2,4,1,3,3,2019,1,2,7,0,30,30,15,1,0,1,0,7.925135369133864,7.925135369133864,0,0,0,0,0,0,0,1,1,0,0,0,0,3,59.04,45.74,6,1,0,0,2,4,1,590,0,0,0 +8802,10797,19673,19672,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,4,8.740765711937842,8.68901967598312,0,2,0,-9,11,0,16,54.97237355762233,0,0,0,40,2,4,1,-9,-9,2019,1,1,8,0,90,43,15,1,0,1,0,6.946710526983296,6.946710526983296,0,0,0,0,0,0,0,1,1,0,0,0,2.081398099851985,3,60.13,49.27,6,1,0,0,2,4,1,590,0,0,0 +8803,10798,19674,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,7.125434339525718,6.88776969674576,3,0,0,0,-9,0,-981.1821480482764,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.295913792362395,0,0,46.06,35.5,7,2,0,0,10,2,1,234,0,0,0 +8804,10799,19675,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,4,0,7.126733614369888,7.294536484860584,3,0,-9,0,-9,0,-997.3003312072711,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,4.402307822647971,0,0,0,0,0,1,1,0,8.578446618048078,7.675143156525507,0,0,61.86,44.4,5,1,0,0,11,3,1,218,0,0,0 +8805,10800,19676,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,4,8.839813650805969,8.757435930069823,6.394948081399861,4,0,0,0,-9,0,-1100.781450621163,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,5,38,35,15,1,5,-9,0,16.41149847760473,16.41149847760473,0,0,0,0,0,0,0,0,0,0,6.390942819877517,0,0,0,45.98,54.24,4,1,0,0,6,4,1,1678,0,0,0 +8805,10800,19677,-9,19676,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-882.6810714939452,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,6,4,1,1678,0,0,0 +8806,10801,19678,19680,-9,-9,2,1,0,34,1,1,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,3,0,-1,-77.79092197326246,0,0,1,35,1,3,1,-9,-9,2019,3,1,14,3,0,35,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,3,3,1,0,6,3,1,489.3333333333333,0,0,0 +8806,10801,19679,-9,19678,19680,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.9708591612507,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,489.3333333333333,0,0,0 +8806,10801,19680,19678,-9,-9,1,1,1,35,1,1,1,0,1,-9,2,1,0,3,8.187396158237034,8.281516023556751,0,2,0,-9,3,0,1,-36.47910968785502,0,0,0,34,2,4,3,3,3,2019,2,2,11,0,37,37,15,1,2,3,0,14.6244894673314,14.6244894673314,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.5,58.67,4,3,0,0,6,3,1,489.3333333333333,0,0,0 +8807,10802,19681,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,3,0,6.513543925660001,6.956362254908632,3,0,0,0,-9,0,-1064.086925696869,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.741498780702567,0,0,53.19,51.24,7,3,0,0,11,2,0,922,0,0,0 +8808,10803,19682,19683,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,2,6.879452256885887,6.92167255173999,0,1,0,1,1,-9,-2,173.869762175602,0,1,1,26,2,4,1,-9,-9,2019,1,2,14,2,12,32,15,1,2,1,0,7.269723048730414,7.269723048730414,0,0,0,0,0,0,0,0,0,0,1.82395801128854,0,0,3,33.64,43.03,6,1,0,0,11,3,0,958.5,0,0,0 +8808,10803,19683,19682,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,4,7.935070286497051,7.96931838837143,0,1,0,-9,1,-9,2,-130.7496236882587,-9,1,0,24,1,2,1,-9,-9,2019,1,1,6,0,38,0,15,1,0,1,0,9.516859012148011,9.516859012148011,0,0,0,0,0,0,0,0,0,0,.5008682695037099,0,0,0,43.48,60.97,6,1,0,0,11,3,0,958.5,0,0,0 +8809,10804,19684,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1083.631093563486,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.209005066799044,0,0,3,41.43,27.12,3,1,0,0,2,1,0,1362,0,0,0 +8810,10805,19685,-9,19686,-9,2,1,1,1,2,1,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1177.718432841481,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,1,1,0,451,0,0,0 +8810,10805,19686,-9,-9,-9,1,1,0,21,2,1,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1088.428206744564,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,35,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,7,1,1,0,1,1,0,451,0,0,0 +8811,10806,19687,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1106.331740254049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,14.80674898112084,0,1,1,0,0,0,0,0,63.78,15.38,5,1,0,0,11,1,1,253,0,0,0 +8812,10807,19688,-9,19689,19691,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-818.9366341117712,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,4,1,743.25,0,0,0 +8812,10807,19689,19691,-9,-9,1,1,0,31,1,0,2,0,1,1,2,1,0,4,7.36901480581177,7.348922185106645,0,2,0,-9,9,0,-14,56.79714112348377,-9,0,1,45,2,3,1,3,2,2019,1,2,11,0,18,0,15,1,0,1,0,14.4630369157242,14.4630369157242,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,5,1,0,0,12,4,1,743.25,0,0,0 +8812,10807,19690,-9,19689,19691,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.242184746658,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,743.25,0,0,0 +8812,10807,19691,19689,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.324649370115928,8.245900116265476,0,2,0,-9,9,0,14,31.93336711680058,0,0,0,31,1,4,1,3,3,2019,1,1,12,0,42,42,15,1,0,1,0,10.69994216771027,10.69994216771027,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,5,1,0,0,12,4,1,743.25,0,0,0 +8813,10808,19692,19695,-9,-9,3,1,1,26,1,1,2,0,2,-9,2,1,0,5,8.177455419690196,7.826871250041489,0,2,0,-9,2,0,2,24.45754893309275,0,1,0,24,2,4,3,-9,-9,2019,2,1,6,0,48,49,15,1,0,3,0,6.751907261454511,6.751907261454511,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,7,1,0,0,7,3,0,835.5,0,0,0 +8813,10808,19693,-9,19695,-9,2,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.6108677588174,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,0,835.5,0,0,0 +8813,10808,19694,-9,19695,19692,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-818.9923303234092,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,3,0,835.5,0,0,0 +8813,10808,19695,19692,-9,-9,1,1,0,24,1,1,2,0,2,-9,6,3,0,4,0,5.772734995768021,5.621436799844044,2,0,-9,2,0,-2,48.54280408462215,0,1,1,26,2,5,1,-9,-9,2019,3,3,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.421261411624211,0,.9780824172469691,3,54.2,57.49,7,1,0,0,7,3,0,835.5,0,0,0 +8814,10809,19696,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,1,0,7.848133946738866,7.740407477576504,3,0,0,0,-9,0,-1012.909025628013,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.700964596108473,7.773100897978458,0,0,60.71,24.19,7,1,0,0,9,3,0,164,0,0,0 +8815,10810,19697,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,3,0,8.128811798960886,7.787238414444329,3,0,0,0,-9,0,-891.8109368162065,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.972684182565885,7.78880228607573,1.242770108181745,3,63.26,45.23,6,1,0,0,11,3,0,483,0,0,0 +8816,10811,19698,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,4,9.185333462340926,9.212134853193295,0,3,0,0,0,-9,0,-961.268513114576,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,78,49,15,1,0,-9,0,14.41331419651108,14.41331419651108,0,0,0,0,0,0,0,0,0,0,1.956937711775835,0,0,0,56.96,44.07,5,3,0,0,9,5,1,1439,0,0,0 +8817,10812,19699,19700,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,5,8.541868142326411,8.32006145342236,5.819355841472853,2,0,-9,7,0,-8,45.20178401084252,-9,0,1,50,2,4,1,2,2,2019,1,2,13,2,45,0,15,1,2,1,0,19.00586867010697,19.00586867010697,0,0,0,0,0,0,0,1,1,0,5.921003895712452,0,0,0,40.22,57.26,5,1,0,0,5,5,1,373.5,0,0,0 +8817,10812,19700,19699,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,4,8.757502638875748,8.522636776875874,0,2,0,-9,7,0,8,31.00745241379215,0,0,0,42,2,5,1,3,3,2019,1,1,10,0,47,38,15,1,0,1,0,12.34189758932667,12.34189758932667,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,5,1,0,0,5,5,1,373.5,0,0,0 +8818,10813,19701,-9,19703,19702,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.139117905285,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,1041.666666666667,0,0,0 +8818,10813,19702,19703,-9,-9,2,1,1,40,1,0,1,0,2,-9,1,1,0,4,.7231844692330517,.7418370798086623,0,2,0,-9,11,0,0,69.91317660360308,0,0,0,40,1,4,1,3,-9,2019,1,1,10,0,40,50,15,1,0,1,0,.0068392758736019,.0068392758736019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,12,3,1,1041.666666666667,0,0,0 +8818,10813,19703,19702,-9,-9,1,1,0,40,1,0,1,0,1,-9,2,1,0,4,8.363540802106128,8.116785966154035,0,2,0,-9,11,0,0,-23.92726878797109,0,0,1,40,2,4,1,2,2,2019,1,2,10,0,30,34,15,1,0,1,0,15.66782253528424,15.66782253528424,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,12,3,1,1041.666666666667,0,0,0 +8819,10814,19704,19705,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,5,8.058401031267209,7.989128897509436,0,1,0,-9,10,0,-1,19.39286417964269,0,0,0,50,3,4,1,2,3,2019,1,2,6,0,47,44,15,1,0,1,0,9.029302283694491,9.029302283694491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,2,1,0,0,13,3,1,218.5,0,0,0 +8819,10814,19705,19704,-9,-9,2,1,0,50,1,0,0,0,3,-9,2,1,0,4,6.500026980177564,6.14665869806189,0,1,0,-9,10,0,1,-74.21877981308664,0,0,0,49,2,5,1,3,3,2019,1,1,8,0,10,10,15,1,0,1,0,7.484493645159079,7.484493645159079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,218.5,0,0,0 +8820,10815,19706,19707,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.986372965637652,8.082363274862693,1,0,-9,47,0,3,108.0123175924309,0,0,0,66,2,3,3,-9,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.146325438688373,7.884399269633979,0,3,54.37,54.8,4,1,0,0,5,3,1,597.5,0,0,0 +8820,10815,19707,19706,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.800958450396409,7.159156136416789,1,0,-9,47,0,-3,-4.893233559784211,0,0,0,69,2,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.024234722946545,7.051488456002708,1.395105810026199,3,59.46,46.99,7,2,0,0,5,3,1,597.5,0,0,0 +8821,10816,19708,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,1,1,0,4,6.432109608856092,6.061661723608861,0,3,0,0,0,-9,0,-1011.117955259842,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,37,40,15,1,0,-9,0,1.756288313728366,1.756288313728366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,2,1,273,0,0,0 +8822,10817,19709,19711,-9,-9,2,1,1,35,1,0,3,0,3,-9,1,1,0,5,9.654872293884191,9.819707666563325,0,2,0,-9,7,0,4,-15.11158090574314,0,0,0,31,2,5,1,-9,-9,2019,1,1,6,1,48,40,15,1,1,1,0,39.00495172910959,39.00495172910959,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,13,5,0,1052,0,0,0 +8822,10817,19710,-9,19711,19709,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.992805703296,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,0,1052,0,0,0 +8822,10817,19711,19709,-9,-9,1,1,0,31,1,0,3,0,2,-9,1,1,0,5,0,0,0,2,0,-9,7,0,-4,-138.1595530396887,0,0,1,35,3,5,1,2,3,2019,1,2,5,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,5,0,1052,0,0,0 +8822,10817,19712,-9,19711,19709,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.163254966191,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,0,1052,0,0,0 +8822,10817,19713,-9,19711,19709,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.7724714579573,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,0,1052,0,0,0 +8823,10818,19714,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,3,8.08367218545885,8.001303526449206,0,3,0,0,0,-9,0,-963.991673625844,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,18,6,38,44,15,1,6,-9,0,8.73952476472436,8.73952476472436,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44.58,41.27,3,1,0,0,1,4,0,1415,0,0,0 +8824,10819,19715,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-967.1227950977014,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.4,31.65,3,1,0,0,9,1,0,134,0,0,0 +8824,10820,19716,-9,19715,-9,2,1,1,25,2,0,0,0,1,1,2,1,0,2,7.427663265245514,7.333221887059775,0,3,0,0,0,-9,0,-1009.337695596072,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,39,0,15,1,3,-9,1,5.253300643043737,5.253300643043737,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.56,51.61,3,1,0,0,9,3,0,482,0,0,0 +8825,10821,19717,19718,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,4,0,8.007817840749924,7.837971573256468,1,0,-9,6,0,-1,46.4610359373364,0,0,0,69,3,5,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.668634763164756,0,0,51.83,57.2,6,1,0,0,11,3,1,665.5,0,0,0 +8825,10821,19718,19717,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,5,0,5.45655553914242,5.4299949223125,1,0,-9,6,0,1,-52.89856047303452,0,0,0,68,3,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.190008739186081,0,0,60.42,52.11,2,1,0,0,11,3,1,665.5,0,0,0 +8826,10822,19719,19720,-9,-9,2,1,0,37,1,0,5,0,2,-9,1,1,0,4,0,0,0,2,0,-9,5,0,-12,-104.6272028428797,0,0,1,49,1,3,1,-9,-9,2019,1,1,9,0,25,28,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.07,35.08,5,1,0,0,11,3,0,347.8,0,0,0 +8826,10822,19720,19719,-9,-9,1,1,1,49,1,0,5,0,1,-9,2,1,0,3,8.743675173754903,8.361627286667659,0,2,0,-9,5,0,12,-24.06914562699786,0,0,0,37,2,4,1,2,-9,2019,1,2,12,1,55,60,15,1,1,1,0,15.3103466735468,15.3103466735468,0,0,0,0,0,0,0,1,1,0,3.955528026042524,0,0,0,37,58.52,3,1,0,0,11,3,0,347.8,0,0,0 +8826,10822,19721,-9,19719,19720,7,1,1,10,2,0,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1112.662978837171,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,3,0,347.8,0,0,0 +8826,10822,19722,-9,19719,19720,5,1,0,14,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.9402873229963,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,3,0,347.8,0,0,0 +8826,10822,19723,-9,19719,19720,6,1,0,11,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.097794660277,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,3,0,347.8,0,0,0 +8827,10823,19724,19726,-9,-9,1,1,1,58,1,0,2,0,2,-9,2,1,0,3,7.317893536541506,9.201900879192308,8.881271538482938,2,0,-9,23,0,7,-3.125594659618436,0,0,0,51,3,2,1,-9,3,2019,1,2,10,0,46,43,15,1,0,1,0,3.981584926628709,3.981584926628709,0,0,0,0,0,0,0,1,1,0,9.824363122747448,0,0,0,46.56,50.26,6,1,0,0,6,4,1,354.3333333333333,0,0,0 +8827,10823,19725,-9,19726,19724,4,1,1,17,2,0,2,1,2,0,7,2,0,3,7.047402082504772,6.49863488562328,0,2,0,0,0,-9,0,-1046.014552671459,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,10,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.37,55.41,5,1,0,0,6,4,1,354.3333333333333,0,0,0 +8827,10823,19726,19724,-9,-9,2,1,0,51,1,0,2,0,3,-9,2,1,0,2,6.966584278422796,7.662931665221517,0,2,0,-9,34,0,-7,11.25323101357007,0,0,0,58,2,3,1,3,2,2019,1,1,13,2,16,16,15,1,2,1,0,10.49248234158496,10.49248234158496,0,0,0,0,0,0,0,1,1,0,1.068985004581011,0,0,0,43.05,39.98,6,1,0,0,6,4,1,354.3333333333333,0,0,0 +8827,10824,19727,-9,19726,19724,3,1,1,19,2,0,2,1,2,0,7,2,0,4,4.576948839698792,4.63957770320125,0,3,0,0,0,-9,0,-987.9899295323463,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.604823865816301,0,0,0,46.84,58.02,6,1,0,0,6,2,1,149,0,0,0 +8828,10825,19728,19729,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,5,8.798597886210375,8.763447986677754,0,2,0,-9,7,0,-3,-51.6879766918299,0,0,0,54,2,2,1,3,3,2019,1,2,11,0,36,36,15,1,0,1,0,22.39218063437051,22.39218063437051,0,0,0,0,0,0,0,0,0,0,4.785347918781092,0,0,0,43.7,58.28,5,1,0,0,13,5,1,680.5,0,0,0 +8828,10825,19729,19728,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,2,8.65908365565871,8.253524648526502,0,2,0,-9,7,0,3,-78.08816183898035,0,0,0,51,1,5,1,3,2,2019,1,1,7,0,36,36,15,1,0,1,0,17.26556485168261,17.26556485168261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,45.88,6,1,0,0,13,5,1,680.5,0,0,0 +8828,10826,19730,-9,19729,19728,3,1,0,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1144.443579090132,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,13,5,1,254,0,0,0 +8829,10827,19731,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,7,2,0,2,0,0,0,4,0,0,0,-9,0,-965.2279896179642,1,0,1,-9,-9,-9,-9,2,2,2019,-9,0,3,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.217896665963867,3,33.08,49.05,4,1,0,1,12,1,0,652,0,0,0 +8829,10827,19732,-9,19731,19733,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-950.4058500103015,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,1,0,652,0,0,0 +8829,10828,19733,-9,-9,-9,3,1,1,32,2,0,2,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1113.541006132969,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,32,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.03,58.28,4,1,1,1,12,1,0,1175,0,0,0 +8830,10829,19734,-9,19735,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-977.7451914528535,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,0,703,0,0,0 +8830,10829,19735,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,4,6.855699995871099,7.203059594392463,5.995802380676127,4,0,-9,0,-9,0,-1120.01626967805,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,0,15,1,0,-9,0,4.200182996256824,4.200182996256824,0,0,0,0,0,0,0,1,1,0,6.654733425084643,0,.3849559131882379,3,48.87,58.55,6,1,0,0,1,2,0,703,0,0,0 +8831,10830,19736,19737,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,4,8.721707911701245,8.866391334062177,0,2,0,-9,27,0,0,-95.79484897438995,0,0,0,49,1,4,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,12.99242394673391,12.99242394673391,0,0,0,0,0,0,0,1,1,0,3.212493313209658,0,0,0,51.49,57.57,6,1,0,0,2,5,1,637,0,0,0 +8831,10830,19737,19736,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,4,8.587396990908987,8.632059546427476,0,2,0,-9,27,0,0,124.6372924864986,0,0,0,49,1,4,1,2,2,2019,1,1,9,0,60,50,15,1,0,1,0,10.32007925855482,10.32007925855482,0,0,0,0,0,0,0,1,1,0,4.887868503079995,0,0,0,51.24,58.84,6,1,0,0,2,5,1,637,0,0,0 +8831,10830,19738,-9,19737,19736,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,5.230010635394708,5.598070619364109,0,2,0,0,0,-9,0,-913.5043680129954,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,2,4,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,2,5,1,637,0,0,0 +8831,10831,19739,-9,19737,19736,3,1,0,19,2,0,1,1,2,0,7,2,0,5,7.449056030418259,7.181008623412719,0,3,0,0,0,-9,0,-1096.671462700028,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.33,53.44,6,1,0,0,2,3,1,88,0,0,0 +8832,10832,19740,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,4,0,7.692300170993916,7.618252946426844,3,0,0,0,-9,0,-951.3254934125406,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.255397009489868,7.975052271043991,0,0,38.18,47.32,6,1,0,0,13,3,1,1856,0,0,0 +8833,10833,19741,19742,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,8,0,-2,-71.08682804736148,0,0,0,67,2,2,3,2,2,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,0,10.20158266681542,0,0,0,0,1,1,0,0,0,0,0,38.18,28.74,4,1,0,1,12,2,1,1363.5,0,0,0 +8833,10833,19742,19741,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,6.70344774663353,6.543524870536212,1,0,-9,8,0,2,12.18282341158552,0,0,0,65,2,1,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.417365104014409,0,0,52.11,39.8,5,1,0,0,12,2,1,1363.5,0,0,0 +8834,10834,19743,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,1,1,0,4,7.777843109221871,7.623565628676957,6.315467373097916,3,0,0,0,-9,0,-1022.202356819503,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,15,18,15,1,0,-9,0,15.52403259920953,15.52403259920953,0,0,0,0,0,0,0,0,0,0,5.437386896118138,0,3.824775508053524,3,55.36,54.24,6,1,0,1,12,3,1,724,0,0,0 +8835,10835,19744,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.461190708245061,8.374022436446046,3.677420961820964,3,0,0,0,-9,0,-1112.563639709871,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,38,38,15,1,2,-9,0,15.39230789425638,15.39230789425638,0,0,0,0,0,0,0,1,1,0,3.912697019755498,4.333388420219475,0,0,35.05,51.54,3,1,0,1,12,4,1,2276,0,0,0 +8835,10836,19745,-9,19744,-9,2,1,0,19,2,0,0,0,2,0,7,2,0,3,6.862290325887999,7.17503590096572,6.224731494316703,3,0,0,0,-9,0,-917.7329217355204,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,17,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.164098113235695,0,0,0,49.05,50.32,6,1,0,0,12,2,1,187,0,0,0 +8836,10837,19746,-9,19747,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-882.79150911868,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,1,3,0,415.6666666666667,0,0,0 +8836,10837,19747,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,3,7.660287897815677,7.679035924985447,0,4,0,0,0,-9,0,-967.5256656371605,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,41,15,1,3,-9,0,5.483555912865538,5.483555912865538,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.72,51.99,3,1,0,0,1,3,0,415.6666666666667,0,0,0 +8836,10837,19748,-9,19747,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-944.1034097544621,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,1,3,0,415.6666666666667,0,0,0 +8837,10838,19749,19750,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,7.182533916852873,6.813920342023322,1,0,-9,41,0,3,130.4787744442486,0,0,0,70,2,3,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,8.584088938258418,7.236230436031428,0,0,0,86.67952910406186,1,1,0,3.967575274776286,7.060664537526271,0,0,45.92,31.54,6,1,0,0,6,2,1,1547.5,0,0,0 +8837,10838,19750,19749,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,5.919211199561098,6.47086458917107,1,0,-9,41,0,-3,-6.646660932793906,0,0,0,73,2,2,3,-9,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.534804894209284,6.141685075417029,9.662889949546386,1,48.04,45.55,6,1,0,0,6,2,1,1547.5,0,0,0 +8838,10839,19751,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-975.6396881458832,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,34.27,4,3,0,0,8,1,0,1567,0,0,0 +8838,10840,19752,-9,19751,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1140.462083690806,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,37,15,1,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.8,45.19,4,3,0,0,8,1,0,168,0,0,0 +8839,10841,19753,-9,-9,-9,2,1,0,23,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-1014.391723260799,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,30,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.74464444162291,0,0,0,18.87,71.09,2,2,0,1,8,1,0,732,0,0,0 +8840,10842,19754,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1064.485316323689,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.13,34.07,5,1,1,0,4,1,0,1173,0,0,0 +8841,10843,19755,19756,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,8.049075772149777,7.807697636823772,1,0,-9,52,0,6,56.90373756755972,0,0,0,69,2,3,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.356021221086431,7.897100932339344,0,0,52.47,45.08,6,1,0,0,5,3,1,692.5,0,0,0 +8841,10843,19756,19755,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-6,35.93639345260333,0,0,0,75,1,2,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.829976342593187,0,2.87132086480422,3,59.46,38.75,6,1,0,0,5,3,1,692.5,0,0,0 +8842,10844,19757,19758,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,4,8.081716697349851,7.816002055775471,0,1,0,-9,6,0,0,-5.247586254480449,0,0,0,54,2,4,1,-9,-9,2019,1,1,12,1,37,39,15,1,1,1,0,11.1986944182991,11.1986944182991,0,0,0,0,0,0,0,0,0,0,0,0,3.432083831034852,3,54.2,57.49,5,1,0,0,4,5,1,838,0,0,0 +8842,10844,19758,19757,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,8.659211468915652,8.791892753937173,0,1,0,-9,34,0,0,-115.9893671136976,0,0,0,54,2,4,1,3,3,2019,1,2,6,0,48,50,15,1,0,1,0,14.47357073899286,14.47357073899286,0,0,0,0,0,0,0,0,0,0,.5803554360321894,0,0,0,61.12,46.03,7,1,0,0,4,5,1,838,0,0,0 +8842,10845,19759,-9,19757,19758,3,1,0,29,2,0,0,0,2,-9,1,1,0,4,7.743510423904929,7.873745558123598,0,3,0,0,0,-9,0,-985.6179479889502,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,3,0,30,15,1,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.769825384803529,3,38.34,62.12,6,1,0,0,4,3,1,187,0,0,0 +8843,10846,19760,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,3,0,7.087043660854744,7.276746037328137,3,0,0,0,-9,0,-1121.934190041961,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.582078865043393,0,6.125592600332565,3,53.38,52.51,6,1,0,0,9,3,1,838,0,0,0 +8844,10847,19761,19762,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,2,9.639294094762118,9.466974974425813,0,1,0,-9,20,0,-1,110.1199197898256,0,0,0,44,2,4,1,2,2,2019,1,2,10,0,35,35,15,1,0,1,0,50.74567601928859,50.74567601928859,0,0,0,0,0,0,0,0,0,0,6.220481674324339,0,0,0,52.24,50.75,6,1,0,0,7,5,1,569,0,0,0 +8844,10847,19762,19761,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,8.981920125435133,8.896903865976959,0,1,0,-9,20,0,1,11.12869576662714,0,0,1,43,1,2,1,2,2,2019,1,1,8,0,40,32,15,1,0,1,0,18.60112676381959,18.60112676381959,0,0,0,0,0,0,0,0,0,0,4.737688359050584,0,0,0,54.79,55.86,6,1,0,0,7,5,1,569,0,0,0 +8845,10848,19763,-9,19765,-9,3,1,0,15,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.584972795842,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,2,0,1074,0,0,0 +8845,10848,19764,19765,-9,-9,1,1,1,33,1,1,4,0,2,-9,2,1,0,3,8.090389575746611,8.335467349850358,0,2,0,-9,5,0,-2,-25.66878635240553,0,0,0,35,2,3,3,2,3,2019,2,2,7,0,45,42,15,1,0,3,0,9.018520215641001,9.018520215641001,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.57,52.35,5,1,0,0,4,2,0,1074,0,0,0 +8845,10848,19765,19764,-9,-9,2,1,0,35,1,1,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,5,0,2,-81.10881406289246,0,0,1,33,2,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.49,39.89,6,1,0,0,4,2,0,1074,0,0,0 +8845,10848,19766,-9,19765,19764,5,1,0,3,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.2619902381623,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,0,1074,0,0,0 +8845,10848,19767,-9,19765,19764,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.309596097774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,0,1074,0,0,0 +8845,10848,19768,-9,19765,-9,4,1,1,11,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.9793445898543,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,0,1074,0,0,0 +8846,10849,19769,-9,-9,19770,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1083.260715673706,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,5,0,0,9,2,1,576.5,0,0,0 +8846,10849,19770,-9,-9,-9,1,1,1,58,2,0,1,0,1,-9,2,1,0,3,7.324356324834746,7.552393444825943,0,4,0,0,0,-9,0,-973.7586749606103,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,6,20,0,15,1,6,-9,0,11.16944599376759,11.16944599376759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.45,46.82,3,1,0,1,9,2,1,576.5,0,0,0 +8847,10850,19771,19772,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,3.982654233088397,3.692505673408665,1,0,-9,52,0,1,-170.8045699070298,0,0,0,69,2,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.664234524233891,3.96876584355679,0,0,46.33,50.4,6,1,0,0,4,2,1,1115,0,0,0 +8847,10850,19772,19771,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,3,6.810035530613539,6.787894843768334,3.988827645882592,1,0,-9,7,0,-1,56.83072007610026,0,0,0,70,2,3,3,2,2,2019,2,1,5,0,17,24,15,1,0,4,0,5.818450735411518,5.818450735411518,0,0,0,0,0,0,0,1,1,0,4.247457082121315,3.810367237662034,0,0,63.41,39.7,6,1,0,0,4,2,1,1115,0,0,0 +8848,10851,19773,-9,-9,-9,1,1,0,40,2,0,0,0,3,-9,8,3,1,1,0,4.69712870726499,4.817732559141501,3,0,0,0,-9,0,-1123.612915796467,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.001888061487864,0,65.83639216557958,3,32.45,26.2,2,2,0,0,2,2,0,220,0,0,0 +8848,10852,19774,-9,19773,-9,2,1,1,19,2,0,0,0,3,1,8,3,1,1,0,0,0,3,0,0,0,-9,0,-975.5539775386874,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,31,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,32,1,2,0,1,2,1,0,893,0,0,0 +8849,10853,19775,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,2,7.723446196778694,7.408487414227912,0,3,0,0,0,-9,0,-891.8576026237724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,12,40,50,15,1,12,-9,0,6.912204661475513,6.912204661475513,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,26.57,1,1,0,1,12,3,1,143,0,0,0 +8850,10854,19776,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,4,0,7.527283962374375,7.969811017137576,3,0,0,0,-9,0,-979.9630470346217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.009354874777964,8.013618504977362,0,0,57.16,56.15,7,1,0,0,13,3,1,204,0,0,0 +8851,10855,19777,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,5,0,7.199163044452144,6.98895257005938,3,0,0,0,-9,0,-1029.387196772522,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,12,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.93426721326821,6.761982185888825,0,0,51.39,59.18,2,1,0,0,10,3,1,954,0,0,0 +8852,10856,19778,19779,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,4,8.737081214413752,8.529857880433362,0,1,0,-9,37,0,0,-56.00001153451902,0,0,0,56,2,3,3,-9,-9,2019,2,1,9,0,35,40,15,1,1,3,0,21.52839964076265,21.52839964076265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,3,0,0,5,4,1,1021,0,0,0 +8852,10856,19779,19778,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,3,0,7.083732136625137,6.836380368455573,1,0,-9,37,0,0,41.16865804041679,0,0,0,56,1,4,1,2,-9,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.713329217193563,74.72024207755416,3,49.29,54.59,6,3,0,0,5,4,1,1021,0,0,0 +8852,10857,19780,-9,19779,19778,3,1,1,29,3,0,0,0,1,-9,2,1,0,4,8.604992835937839,8.413758482849252,0,3,0,0,0,-9,0,-993.4126210932296,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,60,40,15,1,1,-9,1,6.58225646559173,6.58225646559173,0,0,0,0,0,0,0,1,1,0,6.66000485767406,0,0,0,50,57,5,3,0,0,5,4,1,197,0,0,0 +8853,10858,19781,19784,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,5,9.266870505531063,9.676505963873883,0,2,0,-9,16,0,0,102.6000875401769,-9,0,0,47,2,5,1,2,2,2019,1,4,12,2,50,0,15,1,2,1,0,29.54754372818846,29.54754372818846,0,0,0,0,0,0,0,0,0,0,1.729334620286382,0,0,0,43.32,63.94,6,1,0,1,8,5,0,686,0,0,0 +8853,10858,19782,-9,19784,19781,2,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.3524142922596,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,2,0,0,8,5,0,686,0,0,0 +8853,10858,19783,-9,19784,19781,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.6854915807487,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,8,5,0,686,0,0,0 +8853,10858,19784,19781,-9,-9,4,1,0,47,1,0,2,0,2,-9,2,1,0,5,8.621013386708114,8.384632520709435,0,2,0,-9,16,0,0,-82.36477765867488,-9,0,0,47,2,5,1,2,2,2019,1,1,10,0,37,0,15,1,0,1,0,12.44259648413271,12.44259648413271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,4,3,0,1,8,5,0,686,0,0,0 +8854,10859,19785,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,3,6.485474959201527,7.499502454912759,6.571841459973114,3,0,0,0,-9,0,-987.220743399719,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.053360301929486,0,0,61.29,43.34,3,4,0,0,7,3,1,272,0,0,0 +8855,10860,19786,19788,-9,-9,2,1,1,39,1,1,1,0,2,-9,2,1,0,3,8.55646128572352,8.817578822425078,0,2,0,-9,10,0,1,24.10113395268804,0,0,0,38,2,3,1,-9,-9,2019,1,1,12,0,37,38,15,1,0,1,0,19.92756716108502,19.92756716108502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.92,51.87,4,1,0,1,13,5,1,1375,0,0,0 +8855,10860,19787,-9,19788,19786,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-838.576341229585,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,13,5,1,1375,0,0,0 +8855,10860,19788,19786,-9,-9,1,1,0,38,1,1,1,0,2,-9,2,1,0,3,8.223247985640352,8.740583568678025,0,2,0,-9,10,0,-1,87.0173405160846,0,0,1,39,2,3,1,3,3,2019,1,2,12,0,30,37,15,1,0,1,0,21.28926509094126,21.28926509094126,0,0,0,0,0,0,0,0,0,0,0,0,0,3,40.65,57.36,4,1,0,0,13,5,1,1375,0,0,0 +8856,10861,19789,19790,-9,-9,1,1,0,60,1,0,0,0,2,-9,1,1,0,4,6.65043265599269,7.284921568633897,7.47224187288993,1,0,-9,40,0,-2,-11.04694970414261,0,0,0,62,1,2,1,2,2,2019,1,2,6,0,15,10,15,1,0,1,0,4.687087354265988,4.687087354265988,0,0,0,0,0,0,0,0,0,0,4.640861771858565,6.977530870894229,0,0,57.16,56.15,7,1,0,0,12,5,1,462.5,0,0,0 +8856,10861,19790,19789,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,2,7.849880342268037,9.291890608030183,8.254319793058961,1,0,-9,39,0,2,-11.42216586443277,0,0,0,60,2,4,1,3,2,2019,1,1,6,0,21,30,15,1,0,1,0,16.68837549565298,16.68837549565298,0,0,0,0,0,0,0,0,0,0,4.762313524935927,8.65718815109253,0,0,56.19,46.16,6,1,0,0,12,5,1,462.5,0,0,0 +8856,10862,19791,-9,19789,19790,3,1,0,24,2,0,0,0,2,-9,2,1,0,5,7.775635553672836,8.257359258914441,0,3,0,0,0,-9,0,-1057.974382770538,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,43,35,15,1,0,-9,1,6.519988689651504,6.519988689651504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.77,60.77,6,1,0,0,12,3,1,551,0,0,0 +8857,10863,19792,19793,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,0,-36.13329546239559,0,0,0,80,3,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.73,37.67,7,1,0,0,7,2,0,572.5,0,0,0 +8857,10863,19793,19792,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,5.758290818901354,5.828417964942522,1,0,-9,9,0,0,-25.18288641678717,0,0,0,80,3,2,3,3,3,2019,4,1,12,1,0,8,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.12866873143147,0,0,55.6,47.8,7,1,0,0,7,2,0,572.5,0,0,0 +8858,10864,19794,-9,-9,-9,1,1,1,46,3,0,0,0,3,-9,2,1,0,3,8.165834033940881,8.198121849789294,0,3,0,0,0,-9,0,-941.6223984140669,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,42,42,15,1,0,-9,0,7.833233014103442,7.833233014103442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,6,1,0,0,2,4,0,767,0,0,0 +8859,10865,19795,19796,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,43,0,-1,0,0,0,0,64,3,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.001051309276756,0,.2922633794150944,3,46.98,59.35,6,1,0,0,7,1,1,591,0,0,0 +8859,10865,19796,19795,-9,-9,2,1,1,64,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,43,0,1,0,0,0,0,63,3,4,3,3,3,2019,4,1,12,0,0,42,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.154008032477469,0,5.535897135730911,3,53.33,53.71,6,1,1,0,7,1,1,591,0,0,0 +8860,10866,19797,19798,-9,-9,1,1,0,60,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,33,0,5,0,0,0,0,55,2,3,3,3,3,2019,4,2,23,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.145747246307996,0,23.70237781136145,3,48.88,22.32,6,1,0,0,1,1,1,612.5,0,0,0 +8860,10866,19798,19797,-9,-9,2,1,1,55,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,33,0,-5,0,0,0,0,60,3,1,3,3,3,2019,4,1,6,0,0,40,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.973173470078616,0,1.19138391142652,1,57.33,53.46,6,1,0,0,1,1,1,612.5,0,0,0 +8861,10867,19799,-9,19800,-9,1,1,1,57,2,0,0,0,2,-9,1,1,0,3,5.835464967209957,5.94724553407525,0,3,0,0,0,-9,0,-1117.05383940465,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,40,6,15,1,0,-9,1,.9186039588657757,.9186039588657757,0,0,0,0,0,0,0,1,1,0,0,0,4.141527480956722,3,57.33,53.46,5,1,0,0,8,2,1,3195,0,0,0 +8861,10868,19800,-9,-9,-9,2,1,0,86,3,0,0,0,2,-9,4,3,0,3,0,5.624413973904155,5.858583856748528,3,0,0,0,-9,0,-947.5995848205707,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.169671664408146,6.303228018979981,0,0,57.41,29.95,7,1,0,0,8,2,1,412,0,0,0 +8862,10869,19801,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-951.3814614483343,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,5.910982844364356,0,0,0,0,54.27379517349748,1,1,0,0,0,0,0,26.57,34.74,5,1,0,0,10,1,1,343,0,0,0 +8863,10870,19802,19803,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,9.471657433849472,9.328360367446923,0,1,0,-9,8,0,0,94.83873512214976,0,0,0,58,1,4,1,1,1,2019,1,1,10,1,32,36,15,1,1,1,0,41.98507195772137,41.98507195772137,0,0,0,0,0,0,0,0,0,0,2.828340216807944,0,0,0,45.91,59.89,6,1,0,0,6,5,1,472.5,0,0,0 +8863,10870,19803,19802,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,4,9.786197934018416,9.932100974401706,0,1,0,-9,36,0,0,156.1215570279906,0,0,0,58,1,4,1,2,3,2019,1,2,11,0,56,57,15,1,0,1,0,31.09546945322943,31.09546945322943,0,0,0,0,0,0,0,0,0,0,3.33812060249877,0,0,0,55.19,54.26,6,1,0,0,6,5,1,472.5,0,0,0 +8864,10871,19804,-9,19806,19805,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.7839647319587,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,2,1,800.6666666666666,0,0,0 +8864,10871,19805,19806,-9,-9,1,1,1,45,1,0,3,0,3,-9,1,1,0,3,7.316641540851934,7.280784308903486,0,2,0,-9,22,0,5,-55.1098547427423,0,0,0,40,2,3,3,3,3,2019,2,2,12,0,55,40,15,1,0,3,0,3.077853987211542,3.077853987211542,0,0,0,0,0,0,0,1,1,0,1.857407031258109,0,0,0,48,51,5,1,0,0,6,2,1,800.6666666666666,0,0,0 +8864,10871,19806,19805,-9,-9,2,1,0,40,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,11,0,-5,64.68472811568788,0,0,1,45,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.66,38.05,4,5,0,0,6,2,1,800.6666666666666,0,0,0 +8865,10872,19807,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,3,0,4.724205402435421,4.546692495921089,3,0,0,0,-9,0,-1080.840648992804,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.893478378177431,4.698967001508314,0,0,66.37,38.36,6,1,0,0,10,2,1,239,0,0,0 +8866,10873,19808,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,2,0,5.773476620142257,5.62888626057059,3,0,0,0,-9,0,-1135.167605685576,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.520303123477172,5.690235088567615,0,0,66.22,30.66,6,1,0,0,7,2,1,343,0,0,0 +8867,10874,19809,19810,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,3,9.198979648080146,9.347928776697849,0,1,0,-9,14,0,-8,-99.03193820690191,0,0,0,51,1,3,1,2,1,2019,1,2,8,0,45,43,15,1,0,1,0,32.95377200797902,32.95377200797902,0,0,0,0,0,0,0,0,0,0,2.18694625222139,0,0,0,54.96,53.17,6,1,0,0,10,5,1,1560.5,0,0,0 +8867,10874,19810,19809,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,3,8.911858546498982,8.778771648649975,0,1,0,-9,14,0,8,-27.07092300131411,0,0,0,43,1,3,1,2,2,2019,1,1,12,0,38,37,15,1,0,1,0,20.27034212350836,20.27034212350836,0,0,0,0,0,0,0,0,0,0,5.438760267635272,0,0,0,50.28,51.35,6,1,0,0,10,5,1,1560.5,0,0,0 +8868,10875,19811,19812,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.15338187193572,7.729342672149933,0,1,0,1,1,-9,0,50.3495797988402,0,1,1,25,1,5,1,2,2,2019,1,2,13,3,37,49,15,1,3,1,0,8.344874137741307,8.344874137741307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.55,58.34,6,1,0,0,6,5,0,442,0,0,0 +8868,10875,19812,19811,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.718307066238895,9.163696736135046,0,1,0,-9,1,-9,0,79.7691010735809,-9,1,0,25,1,4,1,-9,-9,2019,1,1,8,1,43,0,15,1,1,1,0,18.74648630086588,18.74648630086588,0,0,0,0,0,0,0,0,0,0,4.000689568423581,0,0,0,41.43,64.75,6,1,0,0,6,5,0,442,0,0,0 +8869,10876,19813,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,4,8.551192170863063,8.506517364073561,0,3,0,0,0,-9,0,-969.7453202875272,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,43,45,15,1,3,-9,0,13.65500623307347,13.65500623307347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,6,1,0,0,6,5,1,217,0,0,0 +8870,10877,19814,19817,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,3,9.026908000743816,9.06633454985449,0,2,0,-9,8,0,-1,9.200486696689859,0,0,0,46,1,3,1,-9,-9,2019,1,1,14,2,46,44,15,1,2,1,0,24.277957216516,24.277957216516,0,0,0,0,0,0,0,1,1,0,2.798239805937642,0,0,0,46.55,58.3,6,1,0,0,8,5,1,418.75,0,0,0 +8870,10877,19815,-9,19814,19817,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.406918758405,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,8,5,1,418.75,0,0,0 +8870,10877,19816,-9,19814,19817,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.5952081222165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,5,1,418.75,0,0,0 +8870,10877,19817,19814,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,3,9.21430031180606,8.833953358818178,0,2,0,-9,18,0,1,59.38193852236559,0,0,0,45,1,3,1,2,2,2019,1,2,10,0,65,60,15,1,0,1,0,14.69711816020754,14.69711816020754,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,8,5,1,418.75,0,0,0 +8871,10878,19818,19819,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.629936524470327,8.61705959493329,0,1,0,-9,36,0,0,-133.0125383431897,0,0,0,63,2,2,3,2,2,2019,2,2,6,0,70,70,15,1,0,3,0,13.30695118017543,13.30695118017543,0,0,0,0,0,0,0,1,1,0,0,0,118.4671429230503,1,59.15,49.67,6,1,0,0,7,5,1,543.5,0,0,0 +8871,10878,19819,19818,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,2,0,7.920210983480017,7.959971805912864,1,0,-9,7,0,9,-55.93786033131224,0,0,0,54,1,4,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.776009535184125,0,0,50.31,27.29,3,1,0,0,7,5,1,543.5,0,0,0 +8871,10879,19820,-9,19818,19819,3,1,0,22,2,0,0,0,1,0,7,2,0,4,7.754177052725782,8.418892769149723,8.302605922220142,3,0,0,0,-9,0,-966.9843506569966,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,8.468870620712137,0,0,0,45.34,57.55,6,1,0,0,7,5,1,368,0,0,0 +8872,10880,19821,-9,-9,-9,1,1,0,34,3,0,1,0,2,-9,2,1,0,4,8.472653830371359,8.833342069244734,0,4,0,-9,0,1,0,-998.7430975393008,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,37,37,15,1,1,-9,0,14.34496978204981,14.34496978204981,0,0,0,0,0,0,0,1,1,0,2.006550011687235,0,0,0,46.46,50.26,5,1,0,0,9,4,0,335,0,0,0 +8872,10880,19822,-9,19821,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1092.838165801096,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,335,0,0,0 +8873,10881,19823,-9,-9,-9,1,1,1,93,3,0,0,0,3,-9,4,3,0,4,0,5.935315458376399,5.839336286970064,3,0,0,0,-9,0,-1051.818706923302,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.007981181754591,5.881356761383867,6.715704435930857,3,56.67,45.45,6,1,0,0,11,2,1,766,0,0,0 +8874,10882,19824,-9,19825,19826,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.886013888213,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,5,1,1473.333333333333,0,0,0 +8874,10882,19825,19826,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,3,8.586486901626701,8.31219067803444,0,2,0,-9,8,0,-5,-33.36030142975905,0,0,1,39,1,3,1,-9,-9,2019,1,2,12,0,25,23,15,1,0,1,0,16.31763562353864,16.31763562353864,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,5,1,0,0,7,5,1,1473.333333333333,0,0,0 +8874,10882,19826,19825,-9,-9,2,1,1,39,1,1,1,0,1,-9,2,1,0,3,9.291938224457411,8.937400574494724,0,2,0,-9,8,0,5,108.3318485978853,0,0,0,34,1,3,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,28.62527841946292,28.62527841946292,0,0,0,0,0,0,0,1,1,0,2.427233725672989,0,0,0,44.19,58.01,6,1,0,0,7,5,1,1473.333333333333,0,0,0 +8875,10883,19827,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,4,8.368312202040622,7.905465341424817,0,3,0,0,0,-9,0,-978.0403495189943,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,40,8,15,1,2,-9,0,9.276626746808168,9.276626746808168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.9,35.01,5,4,0,0,8,4,0,615,0,0,0 +8875,10884,19828,-9,19827,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,4,6.677439713416045,6.564878612951425,0,3,0,0,0,-9,0,-991.6164337663801,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.237236645761985,0,0,0,49,58,5,4,0,0,8,2,0,820,0,0,0 +8876,10885,19829,19832,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,5,8.286758405313908,8.666067700908711,0,2,0,-9,8,0,-6,-59.74388073695884,0,0,1,45,3,1,3,2,1,2019,2,1,7,0,49,35,15,1,0,3,0,8.653667438680618,8.653667438680618,0,0,0,0,0,0,0,1,1,0,0,0,6.802119018117565,2,57.06,57.76,5,1,0,0,6,3,1,834.5,0,0,0 +8876,10885,19830,-9,19829,19832,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.457861780003,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,3,1,834.5,0,0,0 +8876,10885,19831,-9,19829,19832,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.4768788274556,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,3,1,834.5,0,0,0 +8876,10885,19832,19829,-9,-9,1,1,1,45,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,8,0,6,-59.7787107330338,0,0,0,39,2,5,1,2,3,2019,3,2,36,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.38,26.17,1,1,0,1,6,3,1,834.5,0,0,0 +8877,10886,19833,19834,-9,-9,2,1,0,42,1,0,0,0,1,-9,1,1,0,5,7.091517727398943,7.339736431668964,5.198062380257603,1,0,-9,7,0,-13,174.9826195600341,0,0,1,55,1,4,1,1,1,2019,1,1,7,1,20,30,15,1,1,1,0,7.149491852626803,7.149491852626803,0,0,0,0,0,0,0,0,0,0,6.467368615835632,0,0,0,57.06,57.76,6,1,0,0,9,2,1,706.5,0,0,0 +8877,10886,19834,19833,-9,-9,1,1,1,55,1,0,0,0,1,-9,1,1,0,4,2.499059158557376,2.45310173829723,0,1,0,-9,7,0,13,-39.74234545122135,0,0,0,42,1,5,1,2,-9,2019,1,2,15,6,0,0,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.107855188298872,0,0,0,36.01,56.52,6,1,0,0,9,2,1,706.5,0,0,0 +8877,10887,19835,-9,-9,-9,3,1,1,31,2,0,0,0,2,0,7,2,0,4,7.181058667948933,7.142599123933305,0,3,0,0,0,-9,0,-1057.818197924261,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,14,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,69.18000000000001,3,1,0,0,9,2,1,622,0,0,0 +8878,10888,19836,19837,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,3,6.980295621483208,7.047351464683829,0,1,0,-9,51,0,-5,33.72097932911807,0,0,0,70,3,4,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,2,1,0,0,8,4,1,422.5,0,0,0 +8878,10888,19837,19836,-9,-9,2,1,1,70,1,0,0,0,3,-9,1,1,0,4,7.541771716847169,8.486445931991277,7.323855082700213,1,0,-9,50,0,5,-13.05743235518808,0,0,0,65,3,3,3,3,3,2019,2,1,7,0,10,40,15,1,0,4,0,26.40504995824352,26.40504995824352,0,0,0,0,0,0,0,1,1,0,7.536396079410377,7.709152243298007,0,0,54.63,47.84,2,1,0,0,8,4,1,422.5,0,0,0 +8879,10889,19838,-9,19841,19839,4,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.7070988072361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,3,1,694.75,0,0,0 +8879,10889,19839,19841,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.341291008292126,8.090832585862483,0,2,0,-9,7,0,3,-60.84124437302921,0,0,0,42,2,2,1,-9,-9,2019,1,2,6,0,44,44,15,1,0,1,0,7.547885106773658,7.547885106773658,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,3,1,694.75,0,0,0 +8879,10889,19840,-9,19841,19839,3,1,0,17,2,0,1,0,2,-9,7,2,0,4,5.89127443556758,5.969536431561655,0,2,0,0,0,-9,0,-946.6302358937043,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.09,58.82,3,1,0,0,12,3,1,694.75,0,0,0 +8879,10889,19841,19839,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,2,7.310788266578872,7.081827428193217,0,2,0,-9,7,0,-3,60.14296321281864,0,0,1,45,2,4,1,-9,-9,2019,1,1,12,1,20,16,15,1,1,1,0,6.391493588044662,6.391493588044662,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.48,52.94,4,1,0,0,12,3,1,694.75,0,0,0 +8880,10890,19842,19843,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.082943733635664,8.54810326336689,0,1,0,-9,6,0,-12,-14.4061883914394,0,0,0,62,2,1,3,-9,-9,2019,2,1,4,0,53,52,15,1,0,4,0,5.923179817941589,5.923179817941589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,2,0,0,4,3,1,1179,0,0,0 +8880,10890,19843,19842,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,1,0,6.424800932561434,6.383128155274871,1,0,-9,25,0,12,-97.24289900881956,0,0,0,50,2,4,1,-9,-9,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.038107178637432,6.166622314095207,0,0,44.17,15.32,6,1,0,0,4,3,1,1179,0,0,0 +8881,10891,19844,19845,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,7.890737057190565,7.692484150987585,1,0,-9,6,0,-1,33.16912061352908,0,0,0,75,1,3,3,1,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.328549374103528,7.46775724559981,0,0,52.38,55.6,6,1,0,0,12,2,1,284.5,0,0,0 +8881,10891,19845,19844,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,6.261779320135009,6.247382761688582,1,0,-9,6,0,1,-64.69214890811502,0,0,0,74,2,4,3,2,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.165767313024144,6.665021974885916,0,0,55.59,43.19,5,1,0,0,12,2,1,284.5,0,0,0 +8882,10892,19846,19847,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,8.488915054644741,8.819893517599992,0,1,0,-9,2,0,7,38.29069520916865,0,0,0,52,1,3,1,3,2,2019,1,1,11,0,32,32,15,1,0,1,0,18.22549989395349,18.22549989395349,0,0,0,0,0,0,0,0,0,0,7.393682679857716,0,0,0,46.44,59.62,5,1,0,0,4,4,1,337,0,0,0 +8882,10892,19847,19846,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,3,0,0,0,1,0,-9,2,0,-7,-80.26535404288202,0,0,0,59,1,4,1,2,2,2019,1,2,17,6,0,0,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.261642793024049,0,0,0,52,54.51,3,1,0,1,4,4,1,337,0,0,0 +8883,10893,19848,19849,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,4,8.879080468924847,8.437196893840285,0,1,0,-9,6,0,0,-48.5903244524239,0,0,0,55,1,4,1,3,3,2019,1,1,12,0,57,87,15,1,0,1,0,12.50503505950603,12.50503505950603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,1,5,1,759.5,0,0,0 +8883,10893,19849,19848,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.957462108086537,8.735859822620011,0,1,0,-9,6,0,0,-64.69116370615039,0,0,0,55,1,4,1,2,3,2019,1,2,6,0,35,52,15,1,0,1,0,20.06329067243652,20.06329067243652,0,0,0,0,0,0,0,0,0,0,2.500074209058081,0,10.67551841731242,3,43.54,59.6,7,1,0,0,1,5,1,759.5,0,0,0 +8884,10894,19850,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,4,7.78439415045256,8.02198817897156,0,3,0,0,0,-9,0,-949.7240605374418,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,12,0,40,37,15,1,0,-9,0,8.419907582962111,8.419907582962111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,57.54,4,1,0,0,2,4,0,844,0,0,0 +8885,10895,19851,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,1,0,8.227921934471876,7.990280042419572,3,0,0,0,-9,0,-928.7768813844357,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.729794894828656,0,1,1,0,7.353996186581742,8.368510822735926,0,0,33.56,17.19,5,1,0,0,12,4,1,296,0,0,0 +8886,10896,19852,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-994.4708915380887,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.9,27.11,2,1,0,0,4,1,0,826,0,0,0 +8886,10896,19853,-9,19852,-9,2,1,1,9,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1034.378070988692,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,5,0,0,4,1,0,826,0,0,0 +8887,10897,19854,19855,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,5.746850548981159,5.705486421798284,1,0,-9,7,0,-1,-59.77150160859016,0,0,0,70,2,2,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,0,17.07285395705463,0,0,0,0,1,1,0,.6479042666180002,5.518377500287515,0,0,55.88,21.37,4,1,0,0,13,2,1,944,0,0,0 +8887,10897,19855,19854,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,6.20145476300924,6.164914295415103,1,0,-9,7,0,1,118.9977434800861,0,0,0,69,3,3,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.55064950717458,6.00567364144997,6.406723828923189,1,51.33,24.03,5,1,0,0,13,2,1,944,0,0,0 +8888,10898,19856,-9,19857,-9,1,1,0,52,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-985.2161735394769,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.8,38.25,3,1,0,0,12,1,0,265,0,0,0 +8888,10899,19857,-9,-9,-9,2,1,0,75,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1001.261719531407,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,18.47828602843033,0,0,0,1,1,0,0,0,0,0,40.3,22.27,2,1,0,0,12,1,0,102,0,0,0 +8889,10900,19858,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,2,7.758313441658169,7.537593046484378,0,3,0,-9,0,-9,0,-1008.844011520841,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,27,9,35,0,15,1,9,-9,0,8.269773052285345,8.269773052285345,0,0,0,0,0,0,0,0,0,0,0,0,44.33682258353221,3,24.36,50.11,2,3,0,0,4,3,0,991,0,0,0 +8890,10901,19859,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-952.8975295572518,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,1,1,957,0,0,0 +8891,10902,19860,-9,19861,19862,4,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1010.692892291871,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,2,0,0,8,5,1,504,0,0,0 +8891,10902,19861,19862,-9,-9,2,1,0,48,1,0,2,0,1,-9,1,1,0,5,8.570966789142311,8.934340682108163,0,2,0,-9,23,0,-3,-44.61428092246053,0,0,0,51,2,5,1,2,3,2019,1,1,14,4,35,36,15,1,4,1,0,19.09611920981119,19.09611920981119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.53,61.33,6,3,0,0,8,5,1,504,0,0,0 +8891,10902,19862,19861,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,5,8.871988944248676,8.771977588401487,0,2,0,-9,22,0,3,54.49195060577137,0,0,0,48,1,5,1,-9,-9,2019,1,2,8,0,62,72,15,1,0,1,0,12.60973996840803,12.60973996840803,0,0,0,0,0,0,0,1,1,0,.3704493495768303,0,0,0,48.22,52.08,6,1,0,1,8,5,1,504,0,0,0 +8891,10903,19863,-9,19861,19862,3,1,1,18,2,0,2,1,2,0,7,2,0,4,6.79328750972928,7.396298984461641,5.661848765819136,3,0,0,0,-9,0,-945.633780373388,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,9,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.526959873347352,0,0,0,40.38,58.36,6,2,0,0,8,5,1,360,0,0,0 +8892,10904,19864,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,3,8.21583521839762,8.055276900877425,0,3,0,0,0,-9,0,-1030.684272043964,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,40,15,1,0,-9,0,8.754485392416244,8.754485392416244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,9,4,1,441,0,0,0 +8893,10905,19865,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.439171710213692,8.526416587338909,0,1,0,-9,3,0,-2,-36.29986710037414,0,1,1,-9,-9,-9,-9,2,2,2019,1,2,10,1,37,38,15,1,1,-9,0,11.3715436945326,11.3715436945326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.9,60.31,5,1,0,0,9,5,0,963,0,0,0 +8893,10906,19866,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,3,8.193620879885559,8.466604072844323,0,1,0,-9,3,0,2,-48.3032008017467,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,19,8,73,48,15,1,8,-9,0,5.433512759380263,5.433512759380263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.59,59.06,3,1,0,0,9,5,0,236,0,0,0 +8894,10907,19867,-9,-9,19869,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1025.479887233884,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,8,5,1,789.75,0,0,0 +8894,10907,19868,19869,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,5,8.988706775402445,8.825624820676726,0,2,0,1,1,-9,-2,42.78700586539956,0,0,1,39,1,4,1,1,1,2019,1,2,19,9,40,40,15,1,9,1,0,18.15997710878937,18.15997710878937,0,0,0,0,0,0,0,0,0,0,4.643421758491893,0,0,0,29.56,63.44,3,1,0,0,8,5,1,789.75,0,0,0 +8894,10907,19869,19868,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,4,9.65747292755033,9.473687972277725,0,2,0,-9,1,-9,2,23.86832380155223,-9,0,0,37,1,5,1,-9,-9,2019,1,1,6,1,43,0,15,1,1,1,0,38.94724649647716,38.94724649647716,0,0,0,0,0,0,0,0,0,0,4.562667358241791,0,0,0,44.26,59.43,5,1,0,0,8,5,1,789.75,0,0,0 +8894,10907,19870,-9,-9,19869,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1007.265053188318,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,789.75,0,0,0 +8895,10908,19871,19872,-9,-9,4,1,1,48,1,0,0,0,2,-9,1,1,0,4,7.970342507783718,8.300557983303984,0,1,0,-9,6,0,8,25.6488587362339,0,0,0,40,2,5,1,-9,-9,2019,1,1,7,0,40,32,15,1,0,1,0,9.099946819396701,9.099946819396701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,11,4,0,338,0,0,0 +8895,10908,19872,19871,-9,-9,1,1,0,40,1,0,0,0,2,-9,2,1,0,5,7.830954099223323,7.749522527511568,0,1,0,-9,6,0,-8,1.92016593080998,-9,0,1,48,2,4,1,2,2,2019,1,4,7,0,40,0,15,1,0,1,0,9.257550169971967,9.257550169971967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,6,1,0,0,11,4,0,338,0,0,0 +8896,10909,19873,19875,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,2,8.17920683306799,8.107370828116741,0,2,0,-9,24,0,4,18.36380107438656,0,0,0,48,2,3,1,3,3,2019,1,2,14,3,45,27,15,1,3,1,0,10.28675947087386,10.28675947087386,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.1,34.28,5,4,0,0,8,4,1,1016,0,0,0 +8896,10909,19874,-9,19873,19875,3,1,0,17,2,0,1,0,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1013.023872749757,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.861143722018141,0,0,3,53.51,40.29,6,2,0,0,8,4,1,1016,0,0,0 +8896,10909,19875,19873,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.262637436683024,8.130929438232871,0,2,0,-9,24,0,-4,25.7366964161519,0,0,0,52,2,2,1,-9,-9,2019,1,1,8,0,44,58,15,1,0,1,0,9.959794588625321,9.959794588625321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.15,53.86,6,1,0,0,8,4,1,1016,0,0,0 +8896,10910,19876,-9,19873,19875,4,1,1,19,2,0,1,0,2,-9,2,1,0,3,7.123490567367573,6.852724645559041,0,3,0,0,0,-9,0,-1245.864735175373,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,4.298195165117835,4.298195165117835,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,41.34,3,2,0,0,8,2,1,333,0,0,0 +8897,10911,19877,19878,-9,-9,2,1,0,80,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,54,0,-2,0,0,0,0,82,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.595292626550294,0,0,0,56.94,49.53,7,1,0,0,4,1,0,341.5,0,0,0 +8897,10911,19878,19877,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,54,0,2,0,0,0,0,80,1,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.971370444744535,0,0,0,51.02,52.06,6,1,0,0,4,1,0,341.5,0,0,0 +8898,10912,19879,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,4,9.673063915687591,9.726945363199633,0,3,0,0,0,-9,0,-1140.83620428633,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,53,53,15,1,0,-9,0,36.17391967140385,36.17391967140385,0,0,0,0,0,0,0,1,1,0,3.961686090311155,0,0,0,51.83,57.2,5,1,0,0,7,5,1,233,0,0,0 +8899,10913,19880,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,1,0,4.190365486180663,3.992600698506183,3,0,0,0,-9,0,-967.8609216646214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,78.73319563762311,0,0,7.202344562960315,9.026664526159937,758.0218425835877,1,1,0,0,4.073298819961569,0,0,33.8,37.38,4,1,0,0,9,2,1,81,0,0,0 +8900,10914,19881,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1066.219979965464,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,1,0,153,0,0,0 +8901,10915,19882,19883,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,5,0,8.641889853715732,8.860409238580512,1,0,-9,6,0,0,36.79683225219925,0,0,0,77,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.146122307327557,8.834157657005838,0,0,57.06,57.76,6,1,0,0,12,5,1,649.5,0,0,0 +8901,10915,19883,19882,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,7.252564907543537,7.091253994224748,1,0,-9,6,0,0,-124.6429791891035,0,0,0,77,2,5,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.438407629022062,0,0,0,48.35,35.8,6,1,0,0,12,5,1,649.5,0,0,0 +8902,10916,19884,19885,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,5,8.063320548904167,7.830707420828757,0,1,0,-9,29,0,1,-53.66904855506193,0,0,0,57,1,4,3,2,2,2019,2,2,9,1,45,45,15,1,1,3,0,7.985209916881936,7.985209916881936,0,0,0,0,0,0,0,0,0,0,3.19629379593493,0,0,0,54.26,50.74,5,1,0,0,12,3,0,1044,0,0,0 +8902,10916,19885,19884,-9,-9,2,1,0,57,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,29,0,-1,-37.02579720352585,0,0,0,58,1,5,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,45.34,6,1,1,0,12,3,0,1044,0,0,0 +8903,10917,19886,19887,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,7.722619723252932,8.205471550793183,0,2,0,-9,28,0,7,32.16257541153159,0,0,0,44,2,4,1,3,3,2019,1,1,9,0,39,39,15,1,0,1,0,9.891809256223599,9.891809256223599,0,0,0,0,0,0,0,1,1,0,7.395752937199997,0,2.935014404692418,3,54.2,57.49,6,1,0,0,10,4,1,926.5,0,0,0 +8903,10917,19887,19886,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,4,8.046100592742194,8.279292454583357,0,2,0,-9,28,0,-7,-26.4964703332888,0,0,1,51,2,4,1,2,-9,2019,1,2,7,0,42,40,15,1,0,1,0,8.071534929549767,8.071534929549767,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,1,0,0,10,4,1,926.5,0,0,0 +8903,10918,19888,-9,19887,19886,3,1,0,21,2,0,1,0,2,-9,6,3,0,2,0,4.316727223587499,3.909492459418633,3,0,0,0,-9,0,-1079.527370634427,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.762028480606107,0,0,0,26.31,55.98,3,1,0,0,10,1,1,494,0,0,0 +8903,10918,19889,-9,19888,-9,5,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-938.7376497509579,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,1,1,494,0,0,0 +8903,10919,19890,-9,19887,19886,4,1,1,19,2,0,1,0,2,1,2,1,0,4,7.149580028745732,7.108643453660969,0,3,0,0,0,-9,0,-1022.272359528276,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,32,0,15,1,2,-9,1,4.258079704475781,4.258079704475781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,10,2,1,162,0,0,0 +8904,10920,19891,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,5,7.315009184958436,7.096541770062724,0,3,0,0,0,-9,0,-911.3704697420894,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,28,8,15,1,0,-9,0,6.357452664772421,6.357452664772421,0,0,0,0,0,0,0,1,1,0,6.834627401530623,0,0,0,51.14,60.45,6,1,0,0,9,3,0,408,0,0,0 +8905,10921,19892,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,0,6.52283179657108,6.283665499253859,3,0,0,0,-9,0,-1029.16110644904,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,18.07933899710111,4.00453255060286,4.223174858056239,0,1,1,0,0,5.954626011205841,0,0,45.63,21.21,6,1,0,0,11,2,0,744,0,0,0 +8906,10922,19893,-9,19894,-9,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.64487815078,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,0,828,0,0,0 +8906,10922,19894,19895,-9,-9,1,1,0,27,1,1,1,0,2,-9,2,1,0,4,7.254443987252623,7.115593153949535,0,2,0,-9,3,0,1,-93.03790805898831,0,1,1,26,2,3,1,2,2,2019,1,2,8,0,18,0,15,1,0,1,0,6.494635102343868,6.494635102343868,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.16,42.18,6,1,0,0,10,3,0,828,0,0,0 +8906,10922,19895,19894,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,3,8.087173340480165,7.891049883378187,0,2,0,-9,3,0,-1,-6.43398589200108,0,1,0,27,2,4,1,-9,-9,2019,1,1,26,11,38,37,15,1,11,1,0,9.080803996202098,9.080803996202098,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.94,54.44,3,1,0,1,10,3,0,828,0,0,0 +8907,10923,19896,-9,19897,19900,4,1,1,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.326030848681,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,1,1,731.5,0,0,0 +8907,10923,19897,19900,-9,-9,1,1,0,29,1,1,4,0,2,-9,3,3,0,4,0,0,0,2,0,-9,15,0,-11,0,0,1,1,40,2,3,1,3,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,3,3,1,0,4,1,1,731.5,0,0,0 +8907,10923,19898,-9,19897,19900,5,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.84935488319,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,1,1,731.5,0,0,0 +8907,10923,19899,-9,19897,19900,3,1,1,11,2,1,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1011.85291347795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,3,0,0,4,1,1,731.5,0,0,0 +8907,10923,19900,19897,-9,-9,2,1,1,40,1,1,4,0,2,-9,1,1,0,3,0,0,0,2,0,-9,10,0,11,0,0,0,0,29,2,4,3,-9,-9,2019,2,1,15,3,0,40,15,1,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.98611808406065,0,0,0,40.75,58.26,4,3,0,0,4,1,1,731.5,0,0,0 +8907,10923,19901,-9,19897,19900,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.8465586213272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,4,1,1,731.5,0,0,0 +8908,10924,19902,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,7.571949033903617,7.287663511227336,3,0,0,0,-9,0,-1037.15705922887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.645152627923026,16.44698407538544,3,41.34,56.62,7,1,0,0,13,3,1,195,0,0,0 +8909,10925,19903,19905,-9,-9,1,1,0,32,1,0,1,0,1,-9,5,1,0,4,8.990656227998336,9.008129947136007,0,2,0,-9,12,0,-2,-39.09765693141652,0,0,1,34,2,3,1,2,2,2019,1,2,17,5,48,0,15,1,5,1,0,17.78879807358396,17.78879807358396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.54,44.72,5,1,0,0,5,4,1,741.6666666666666,0,0,0 +8909,10925,19904,-9,19903,19905,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.2429578899777,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,4,1,741.6666666666666,0,0,0 +8909,10925,19905,19903,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,3,6.176024443588727,6.261386025084581,0,2,0,-9,11,0,2,117.8644090756624,0,0,0,32,1,4,1,2,2,2019,1,1,21,8,16,0,15,1,8,1,0,3.966273789347911,3.966273789347911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.97,53.41,4,1,0,1,5,4,1,741.6666666666666,0,0,0 +8910,10926,19906,19907,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,4,9.256891617954727,8.844308931552362,0,1,0,-9,39,0,1,-135.9514665730874,0,0,0,58,1,5,3,2,3,2019,2,2,21,10,25,25,15,1,10,4,0,35.65758776077048,35.65758776077048,0,0,0,0,0,0,0,0,0,0,6.389700134900655,0,0,0,42.58,54.92,5,1,0,0,10,5,1,1762,0,0,0 +8910,10926,19907,19906,-9,-9,2,1,0,58,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,40,0,-1,-56.60941460558851,0,0,0,59,1,4,1,2,1,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.875937063907819,0,0,0,51.14,60.45,6,1,0,0,10,5,1,1762,0,0,0 +8911,10927,19908,19909,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,1,0,6.150629111900096,5.660006190199463,1,0,-9,60,0,-10,123.0592569966871,0,0,0,86,2,1,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,4.164682141230724,0,1,1,0,0,6.339503852777977,70.10002002813141,1,44.83,35.15,6,3,0,0,8,2,1,1518,0,0,0 +8911,10927,19909,19908,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,1,0,5.381559290120427,5.721624880600306,1,0,-9,60,0,10,-99.9053844981994,-9,0,0,76,2,1,3,2,2,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.43080136961706,0,0,28.33,29.21,3,3,0,1,8,2,1,1518,0,0,0 +8912,10928,19910,-9,-9,-9,1,1,0,58,2,0,0,0,1,-9,2,1,0,4,5.112287311623803,6.745579692248723,6.845591680999354,3,0,0,0,-9,0,-1043.184349715664,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,5,0,15,1,0,-9,0,4.211161486210816,4.211161486210816,0,0,0,0,0,0,0,1,1,0,5.355372359363469,6.617223238975756,.7668776455145785,3,59.14,52.5,6,1,0,0,10,2,1,1772,0,0,0 +8913,10929,19911,19912,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,7.21894531298391,7.264133558054217,1,0,-9,11,0,-2,-32.47208950870978,0,0,0,69,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.748134806964232,0,0,0,55.6,47.8,6,1,0,0,11,4,1,1580,0,0,0 +8913,10929,19912,19911,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,8.416491454744035,8.443428595506147,1,0,-9,51,0,2,117.5776835280018,0,0,0,67,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.740103581239461,8.39095365544291,0,0,54.61,51.04,6,1,0,0,11,4,1,1580,0,0,0 +8914,10930,19913,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,2,8.503322261387336,8.409186977836187,0,3,0,0,0,-9,0,-1098.330782394379,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,40,0,15,1,4,-9,0,13.12994232766552,13.12994232766552,0,0,0,0,0,0,0,0,0,0,0,0,4.356057185975507,3,39.69,43.05,4,1,0,1,6,5,1,628,0,0,0 +8914,10931,19914,-9,-9,19913,2,1,0,21,2,0,0,1,2,0,7,2,0,3,4.617037259388799,4.81699405506812,0,3,0,0,0,-9,0,-1173.746097522866,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,23,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,3,1,0,0,6,2,1,226,0,0,0 +8915,10932,19915,19916,-9,-9,2,1,1,84,1,0,0,0,2,-9,4,3,0,1,0,7.434874815498312,7.422788169251289,1,0,-9,9,0,-4,-75.63708748775539,0,0,0,88,3,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.924135562791164,0,0,46.62,25.87,6,1,0,0,9,3,1,1246.5,0,0,0 +8915,10932,19916,19915,-9,-9,1,1,0,88,1,0,0,0,3,-9,4,3,0,2,0,6.534081876818727,6.567658928460515,1,0,-9,9,0,4,-36.7270604701573,0,0,0,84,2,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.540117172240828,6.721282379939011,0,0,54.84,42.66,6,1,0,0,9,3,1,1246.5,0,0,0 +8916,10933,19917,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,2,1,0,2,7.229947085591785,7.49663046969025,0,3,0,0,0,-9,0,-1190.63656100801,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,29,11,27,25,15,1,11,-9,0,8.541455594921981,8.541455594921981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.77,46.86,2,1,0,1,5,3,1,5711,0,0,0 +8917,10934,19918,19921,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,3,9.638718888485862,9.712702891801669,0,2,0,-9,2,0,10,-17.26735589699329,-9,0,0,40,3,4,1,3,2,2019,1,2,7,0,37,0,15,1,0,1,0,50.87292802223588,50.87292802223588,0,0,0,0,0,0,0,1,1,0,7.345229481092693,0,0,0,56.94,41.3,5,1,0,0,13,5,1,822,0,0,0 +8917,10934,19919,-9,19921,19918,3,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.999859404793,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,822,0,0,0 +8917,10934,19920,-9,19921,19918,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.02802907231,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,5,1,822,0,0,0 +8917,10934,19921,19918,-9,-9,2,1,0,40,1,0,3,0,3,-9,2,1,0,4,8.117126795876871,7.878364371865104,0,2,0,-9,2,0,-10,48.14843706831288,0,0,1,50,1,3,1,-9,-9,2019,1,1,6,0,32,0,15,1,0,1,0,10.84121489901605,10.84121489901605,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.45,52.84,6,1,0,0,13,5,1,822,0,0,0 +8918,10935,19922,19923,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,5,9.171698444396361,9.343297205085525,0,2,0,-9,10,0,2,-38.0182381679077,0,0,0,38,1,4,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,30.8000543647249,30.8000543647249,0,0,0,0,0,0,0,0,0,0,3.693129207825076,0,0,0,57.06,57.76,6,1,0,0,8,5,1,1551.75,0,0,0 +8918,10935,19923,19922,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,6.88881875649311,7.015230430934226,0,2,0,-9,20,0,-2,-207.8360485689084,0,0,1,40,1,5,1,2,2,2019,1,2,10,0,14,10,15,1,0,1,0,6.632585265739328,6.632585265739328,0,0,0,0,0,0,0,0,0,0,2.559934933166776,0,0,0,42.05,58.8,6,1,0,0,8,5,1,1551.75,0,0,0 +8918,10935,19924,-9,19923,19922,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-807.3642839447348,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,1551.75,0,0,0 +8918,10935,19925,-9,19923,19922,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.671383380459,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,1551.75,0,0,0 +8919,10936,19926,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1054.347787388884,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.46,47.31,6,1,1,0,13,1,0,335,0,0,0 +8920,10937,19927,19930,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,3,8.990960844463389,8.809368196988668,0,2,0,-9,16,0,-2,5.226395571495029,0,0,0,46,2,3,3,3,3,2019,2,2,10,0,49,43,15,1,0,3,0,18.76851534644096,18.76851534644096,0,0,0,0,0,0,0,1,1,0,3.354732231883502,0,0,0,46.67,55.57,6,1,0,0,9,4,1,1978.25,0,0,0 +8920,10937,19928,-9,19930,19927,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.7291990028154,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,1978.25,0,0,0 +8920,10937,19929,-9,19930,19927,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1022.909014049602,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,9,4,1,1978.25,0,0,0 +8920,10937,19930,19927,-9,-9,2,1,0,46,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,17,0,2,-61.71101725479485,0,0,0,44,1,3,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,7,1,0,0,9,4,1,1978.25,0,0,0 +8921,10938,19931,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1040.838188276045,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,24.50637112346245,3,57.57,49.69,6,1,0,0,5,1,0,442,0,0,0 +8921,10939,19932,-9,-9,-9,2,1,0,21,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1113.149129958544,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.45,29.24,2,1,0,0,5,1,0,2181,0,0,0 +8922,10940,19933,19934,-9,-9,1,1,0,43,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,27,0,-2,-16.90079372248512,0,0,1,45,2,4,1,2,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,51.32,5,3,0,0,8,3,0,2596,0,0,0 +8922,10940,19934,19933,-9,-9,2,1,1,45,1,0,0,0,2,-9,1,1,0,4,7.532084477500598,7.573248712458497,0,1,0,-9,7,0,2,111.4003104963635,0,0,0,43,2,3,3,3,3,2019,2,1,9,0,40,30,15,1,1,3,0,5.967033888965846,5.967033888965846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,3,0,2596,0,0,0 +8922,10941,19935,-9,19933,19934,3,1,0,20,2,0,0,0,2,-9,2,1,0,4,6.145933521505007,6.192406012097285,0,3,0,0,0,-9,0,-1105.670844295763,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,28,5,15,1,5,-9,1,2.896601541787502,2.896601541787502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,58.88,5,3,0,0,8,2,0,781,0,0,0 +8923,10942,19936,-9,-9,-9,1,1,1,54,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-892.0114109522499,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.2,31.47,4,1,0,1,13,1,0,1143,0,0,0 +8924,10943,19937,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,3,8.296205880291748,8.384764679639929,0,3,0,0,0,-9,0,-1078.2226631227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,22,21,15,1,0,-9,0,27.84472126760679,27.84472126760679,0,0,0,0,0,0,0,0,0,0,3.685906055478711,0,0,0,54.37,54.8,6,1,0,0,2,4,0,1678,0,0,0 +8925,10944,19938,19939,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,2,25.31070347419768,0,0,0,81,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.73999999999999,31.35,7,1,0,0,13,2,1,342,0,0,0 +8925,10944,19939,19938,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,2,0,7.28123008558843,7.334455903849961,1,0,-9,8,0,-2,96.11775688698948,0,0,0,83,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.501697430836765,0,0,60.53,48.35,7,1,0,0,13,2,1,342,0,0,0 +8926,10945,19940,19941,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,7.861839520639219,7.451131433755108,1,0,-9,48,0,2,-25.38868514109407,0,0,0,67,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,10.04311231521196,0,0,0,0,1,1,0,5.343111914266069,7.769293227873487,0,0,60.7,47.65,7,1,0,0,8,4,1,279.5,0,0,0 +8926,10945,19941,19940,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,8.046969046332745,7.908155096927235,1,0,-9,48,0,-2,86.41673088328241,0,0,0,69,3,4,3,-9,-9,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,1,0,.3073581140931512,0,0,0,9.812006149968468,1,1,0,0,7.868866537765959,0,0,27.25,35.34,5,1,0,0,8,4,1,279.5,0,0,0 +8927,10946,19942,19943,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,5,8.449224008430942,8.4595052645828,0,2,0,-9,5,0,2,49.61742116071359,0,0,0,37,2,4,1,3,2,2019,1,1,7,0,44,40,15,1,0,1,0,15.41610515924639,15.41610515924639,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.38,55.95,7,1,0,0,5,4,1,968,0,0,0 +8927,10946,19943,19942,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,7.566248297669707,7.969402681837846,0,2,0,-9,5,0,-2,-62.79846580269701,0,0,1,39,2,5,1,2,3,2019,1,2,11,0,24,32,15,1,2,1,0,9.10774889665403,9.10774889665403,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,1,0,0,5,4,1,968,0,0,0 +8928,10947,19944,-9,-9,-9,1,1,0,50,2,1,1,0,3,-9,2,1,0,3,7.797723975356275,8.180711303934752,0,4,0,0,0,-9,0,-988.4037005144057,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,56,41,15,1,0,-9,0,4.220698629633997,4.220698629633997,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,5,3,0,726,0,0,0 +8928,10948,19945,-9,19946,-9,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-986.3079599689845,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,0,1579,0,0,0 +8928,10948,19946,-9,19944,-9,2,1,0,20,2,1,1,0,3,-9,5,1,0,3,7.006494917546862,6.675303828892081,0,3,0,0,0,-9,0,-937.463075949729,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,25,0,15,1,5,-9,1,4.440621576676592,4.440621576676592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.05,64.93000000000001,2,1,0,0,5,2,0,1579,0,0,0 +8929,10949,19947,19948,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,7.226690345247266,7.037497491300594,1,0,-9,10,0,3,26.99798996995235,0,0,0,71,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3137877350974502,6.855271317978088,0,0,42.31,47.15,5,1,0,0,5,3,1,841,0,0,0 +8929,10949,19948,19947,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,6.811564903821067,6.414755712470802,1,0,-9,10,0,-3,2.770738358580137,0,0,0,74,3,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,10.40303229241402,0,0,0,0,1,1,0,2.107139169257861,6.643401558361657,0,0,64.40000000000001,42,6,1,0,0,5,3,1,841,0,0,0 +8930,10950,19949,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,4.573967897745257,4.244648584390177,3,0,0,0,-9,0,-1037.967885941006,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.347233868697725,4.393567542812801,45.0478272917146,3,58.37,33.72,2,1,0,0,2,2,1,4307,0,0,0 +8931,10951,19950,19951,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.567535523478625,6.337307678180889,1,0,-9,9,0,-8,-100.983464117662,0,0,0,76,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.417501192585449,6.629046902654479,0,0,52.75,41.81,6,1,0,0,11,3,1,253.5,0,0,0 +8931,10951,19951,19950,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.618974107277064,7.720648262750813,1,0,-9,9,0,8,38.05915573521365,0,0,0,68,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.204630057111673,7.32018330692281,0,0,57.73,54.53,6,1,0,0,11,3,1,253.5,0,0,0 +8932,10952,19952,-9,-9,-9,2,1,1,47,2,0,0,0,3,-9,2,1,0,5,0,0,0,1,0,-9,7,0,-7,0,0,0,0,-9,-9,-9,-9,3,3,2019,-9,1,8,0,40,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.45249352139424,3,55,57,6,5,0,0,5,1,0,738,0,0,0 +8933,10953,19953,19954,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,8.794908231810485,8.532813865328569,1,0,-9,43,0,-4,-49.0657047388831,0,0,0,70,2,4,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.41795651122495,8.534273364851405,0,0,44.6,52.77,7,1,0,0,12,5,1,565.5,0,0,0 +8933,10953,19954,19953,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,8.605219651594641,8.860327428894708,1,0,-9,43,0,4,-78.32620622671745,0,0,0,66,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.882682732430483,8.704412821044933,0,0,55.79,52.62,7,1,0,0,12,5,1,565.5,0,0,0 +8934,10954,19955,19956,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,3,0,7.638068425772672,7.803951834717357,1,0,-9,11,0,0,3.592917089137445,0,0,0,60,1,3,1,2,1,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.372378891372162,7.382438380799031,4.229207216293233,3,52.8,43.61,6,1,0,0,4,5,1,259.5,0,0,0 +8934,10954,19956,19955,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.401822894196217,8.990359557750265,0,1,0,-9,11,0,0,-5.383873297902413,0,0,0,60,1,3,3,2,3,2019,2,2,11,0,33,33,15,1,0,4,0,19.38149158612033,19.38149158612033,0,0,0,0,0,0,0,1,1,0,4.883824573078427,0,0,0,44.19,58.01,5,1,0,0,4,5,1,259.5,0,0,0 +8934,10955,19957,-9,19956,19955,3,1,1,29,2,0,0,0,1,-9,3,3,0,4,0,3.423424500080617,3.954667588764645,3,0,0,0,-9,0,-980.0691959035593,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.852258565370163,0,0,0,21.16,65.93000000000001,5,1,1,0,4,2,1,700,0,0,0 +8935,10956,19958,19959,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-8,33.33461485290898,0,0,0,69,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.680197614661221,0,8.630914527101419,3,54.79,55.86,6,1,0,0,13,3,1,1292,0,0,0 +8935,10956,19959,19958,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,8.04866490180768,7.771238869239983,1,0,-9,7,0,8,15.78424842448329,0,0,0,61,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.289195082065891,7.879180397503388,0,0,52,47,5,1,0,0,13,3,1,1292,0,0,0 +8936,10957,19960,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,7.989488481530411,8.01590616943364,0,3,0,0,0,-9,0,-1026.70188038028,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,39,45,15,1,0,-9,0,7.45888148758517,7.45888148758517,0,0,0,0,0,0,0,0,0,0,3.129306105081817,0,0,0,51.83,57.2,5,1,0,0,4,3,1,327,0,0,0 +8937,10958,19961,19962,-9,-9,1,1,0,25,1,0,0,1,1,0,7,2,0,4,0,7.309801313460328,7.206820464655314,1,0,-9,4,0,-2,-13.24805508344135,-9,1,1,27,1,4,1,-9,-9,2019,3,2,5,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.620826579847351,0,0,0,55.34,54.26,6,1,0,0,10,3,0,577.5,0,0,0 +8937,10958,19962,19961,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,7.662356058978124,7.807015936985692,6.533206374307711,1,0,-9,4,0,2,79.94492984136839,0,1,0,25,1,4,2,-9,-9,2019,2,1,8,0,37,44,15,1,0,2,0,6.125214048129097,6.125214048129097,0,0,0,0,0,0,0,1,1,0,6.559144544003305,0,0,0,57.16,56.15,2,1,0,0,10,3,0,577.5,0,0,0 +8938,10959,19963,19964,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,3,8.164739833685513,7.851734690975975,0,2,0,-9,15,0,9,-48.93320478325149,0,0,0,43,1,4,1,3,3,2019,1,1,8,0,42,50,15,1,0,1,0,10.11979806418021,10.11979806418021,0,0,0,0,0,0,0,1,1,0,1.684824404392959,0,0,0,52,54.51,6,3,0,0,4,4,1,443,0,0,0 +8938,10959,19964,19963,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.218903491753915,8.269702277444159,0,2,0,-9,15,0,0,59.25322881327689,0,0,1,52,1,3,1,3,2,2019,1,2,9,0,33,33,15,1,0,1,0,15.12997402183688,15.12997402183688,0,0,0,0,0,0,0,1,1,0,3.318343873172115,0,0,0,59.29,49.68,6,3,0,0,4,4,1,443,0,0,0 +8938,10959,19965,-9,19964,19963,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.895413558769,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,4,1,443,0,0,0 +8938,10960,19966,-9,19964,19963,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-926.6030420577987,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,3,0,0,4,4,1,531,0,0,0 +8939,10961,19967,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-932.0281892692817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,33.25,5,1,0,0,13,1,0,372,0,0,0 +8940,10962,19968,19969,-9,-9,2,1,0,68,1,0,0,0,2,-9,2,1,0,3,0,5.515407842493232,5.121970885615749,1,0,-9,48,0,-7,-39.61420588306999,0,0,0,75,1,3,3,2,2,2019,2,1,10,1,0,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.207169233047918,5.114844329742346,3.276369960928877,3,51.79,44.95,4,1,0,0,7,3,1,415,0,0,0 +8940,10962,19969,19968,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,7.9807862246375,8.226080826708504,1,0,-9,48,0,7,4.142811398935514,0,0,0,68,2,3,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.881519677884145,8.038332998102884,0,3,57.88,36.92,6,1,0,0,7,3,1,415,0,0,0 +8941,10963,19970,19971,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.301987882969227,7.338496556855286,0,1,0,-9,33,0,0,-36.73935445499003,0,0,0,52,1,5,1,2,2,2019,1,2,6,0,25,25,15,1,0,1,0,6.625148082550802,6.625148082550802,0,0,0,0,0,0,0,0,0,0,.4395933381364724,0,0,0,58.32,50.22,6,1,0,0,9,4,1,1696.5,0,0,0 +8941,10963,19971,19970,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,5,8.43614464382566,8.177730453839692,0,1,0,-9,33,0,0,-113.0301687634791,0,0,0,52,2,3,1,2,2,2019,1,1,6,0,40,45,15,1,0,1,0,11.62141758399903,11.62141758399903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,1,0,0,9,4,1,1696.5,0,0,0 +8941,10964,19972,-9,19970,19971,3,1,1,23,2,0,0,0,1,-9,2,1,0,5,8.045643173867411,8.119083758726726,0,3,0,0,0,-9,0,-1006.953266271251,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,2,38,38,15,1,2,-9,1,11.65367323148723,11.65367323148723,0,0,0,0,0,0,0,0,0,0,2.578659475653379,0,0,0,57.06,57.76,6,1,0,0,9,4,1,373,0,0,0 +8941,10965,19973,-9,19970,19971,4,1,0,21,2,0,0,0,2,-9,2,1,0,4,8.264521110638123,8.666223882068458,0,3,0,0,0,-9,0,-1030.944644066912,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,48,36,15,1,2,-9,1,9.239175457991031,9.239175457991031,0,0,0,0,0,0,0,0,0,0,3.378374577300517,0,0,0,46,58,5,1,0,0,9,4,1,274,0,0,0 +8942,10966,19974,19975,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,3,9.32279777957052,9.087859327921525,0,1,0,-9,33,0,-2,-6.533787885382545,0,0,0,58,2,3,1,2,2,2019,1,2,6,0,45,42,15,1,0,1,0,28.37845141525731,28.37845141525731,0,0,0,0,0,0,0,0,0,0,4.458496987399006,0,0,0,52,54.51,6,1,0,0,9,5,1,417.5,0,0,0 +8942,10966,19975,19974,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.087350922139152,8.3708083746138,0,1,0,-9,33,0,2,-7.527226908604424,0,0,0,56,2,3,1,2,3,2019,1,1,10,0,36,36,15,1,0,1,0,11.42227842037555,11.42227842037555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.92,43.05,6,1,0,0,9,5,1,417.5,0,0,0 +8943,10967,19976,-9,19979,19977,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.8733084023349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,1,596.75,0,0,0 +8943,10967,19977,19979,-9,-9,2,1,1,29,1,1,2,0,2,-9,1,1,0,3,2.316027277428133,2.388312893215048,0,2,0,-9,4,0,1,75.34530809520074,-9,1,0,28,2,5,1,-9,-9,2019,1,1,12,1,40,0,15,1,1,1,0,.0269483349014917,.0269483349014917,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,58.53,7,1,0,0,10,2,1,596.75,0,0,0 +8943,10967,19978,-9,19979,19977,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1118.640426841389,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,2,1,596.75,0,0,0 +8943,10967,19979,19977,-9,-9,1,1,0,28,1,1,2,0,2,-9,2,1,0,5,7.473344398040092,7.524636120230155,0,2,0,-9,4,0,-1,-40.02345774220409,0,1,1,29,2,3,1,1,2,2019,1,2,8,0,20,0,15,1,0,1,0,12.59566898165403,12.59566898165403,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,1,1,0,0,10,2,1,596.75,0,0,0 +8944,10968,19980,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-969.2898045232744,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,6,4,1,1,8,1,0,353,0,0,0 +8944,10969,19981,-9,19980,-9,2,1,1,36,2,0,0,0,2,-9,2,1,0,4,7.90239777172307,7.92412822875268,0,3,0,0,0,-9,0,-941.4995566412665,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,38,0,15,1,1,-9,1,10.41821463384119,10.41821463384119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,4,0,0,8,4,0,482,0,0,0 +8945,10970,19982,19983,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,8.395033831606645,8.238717481675616,0,1,0,-9,9,0,-8,.3771669542961016,0,0,0,58,1,2,1,-9,-9,2019,1,1,34,12,20,0,15,1,12,1,0,21.32240882652227,21.32240882652227,0,0,0,0,0,0,0,1,1,0,0,0,42.40310744632151,3,37.1,60.34,1,1,0,1,6,5,1,1051,0,0,0 +8945,10970,19983,19982,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,2,9.219575938378325,9.20351427998227,0,1,0,-9,31,0,8,-26.9652560111572,0,0,0,50,2,3,1,2,2,2019,1,2,28,10,50,55,15,1,10,1,0,19.94944464179351,19.94944464179351,0,0,0,0,0,0,0,1,1,0,0,0,48.12155662529302,3,26.58,48.96,2,1,0,0,6,5,1,1051,0,0,0 +8946,10971,19984,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,1,1,0,3,7.147109042012769,6.938911576600491,0,3,0,0,0,-9,0,-858.5565187895335,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,45,40,15,1,0,-9,0,3.352524147605081,3.352524147605081,0,0,0,0,0,0,0,1,1,0,3.649336138538744,0,7.522262628960353,3,51.66,36.91,6,1,0,0,13,2,1,828,0,0,0 +8947,10972,19985,19986,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.19299135290302,8.437214694750027,7.230394611299394,1,0,-9,31,0,3,9.383329022082137,0,0,0,56,1,4,1,2,3,2019,1,2,18,6,45,37,15,1,6,1,0,9.652450454141336,9.652450454141336,0,0,0,0,0,0,0,0,0,0,0,7.393464863640854,0,0,46.96,40.76,4,1,0,0,9,5,1,604.5,0,0,0 +8947,10972,19986,19985,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,7.395090743030448,8.520486611351869,8.347119507591712,1,0,-9,29,0,-3,58.43587992817653,0,0,0,59,2,3,1,2,3,2019,1,1,10,1,15,37,15,1,1,1,0,15.71102287974948,15.71102287974948,0,0,0,0,0,0,0,0,0,0,0,8.32622369038171,0,0,45.91,59.89,6,1,0,0,9,5,1,604.5,0,0,0 +8948,10973,19987,-9,19988,19989,3,1,1,45,3,0,0,0,3,-9,2,1,0,4,8.320065805591348,8.329049078228385,0,3,0,0,0,-9,0,-1027.218777990003,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,37,15,1,1,-9,1,11.69460364729252,11.69460364729252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,2,4,1,320,0,0,0 +8948,10974,19988,19989,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,-70.4568567302469,0,0,0,66,3,4,1,3,3,2019,3,1,14,4,0,0,15,4,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.539605226487198,0,0,0,41.36,44.3,5,1,0,0,2,3,1,174.5,0,0,0 +8948,10974,19989,19988,-9,-9,1,1,1,66,1,0,0,0,3,-9,2,1,0,4,7.3150730192058,7.926757816633,6.915769784727628,1,0,-9,6,0,1,-97.60933475918083,0,0,0,65,3,3,3,3,3,2019,2,2,6,0,18,18,15,1,0,4,0,9.547302303195654,9.547302303195654,0,0,0,0,0,0,0,1,1,0,6.261738166308998,6.927858674278728,0,0,58.15,52.91,6,1,0,0,2,3,1,174.5,0,0,0 +8949,10975,19990,19991,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,3,0,1,0,0,0,0,69,3,1,3,3,3,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.01830813025138,2,51.92,22.55,2,1,0,0,11,1,0,1443.5,0,0,0 +8949,10975,19991,19990,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,3,0,-1,0,0,0,0,70,3,1,3,3,3,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,1,0,23.13684429529334,0,0,0,0,1,1,0,0,0,0,0,35.68,19.09,3,1,0,0,11,1,0,1443.5,0,0,0 +8950,10976,19992,19993,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,5.749210683311451,6.169089588655437,1,0,-9,47,0,-1,-29.19158211994002,0,0,0,69,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.013061045679368,5.792683159934652,0,0,59.71,45.72,7,1,0,0,1,2,1,444,0,0,0 +8950,10976,19993,19992,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,47,0,1,39.26785451378912,0,0,0,68,2,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,5.10053069265104,0,0,0,0,1,1,0,0,0,0,0,52,31.79,6,1,0,0,1,2,1,444,0,0,0 +8951,10977,19994,19995,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,4,0,7.479244125352801,7.282262630696648,1,0,-9,36,0,16,-62.52308740591132,0,0,0,63,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.986401556342878,7.517684399760134,0,0,57.31,50.61,6,1,0,0,2,4,1,138.5,0,0,0 +8951,10977,19995,19994,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,4,7.413668940650692,8.180023764990864,7.693416231877345,1,0,-9,39,0,-16,6.878895040431089,0,0,0,79,3,4,3,3,2,2019,2,1,7,0,14,15,15,1,0,4,0,9.368255935254572,9.368255935254572,0,0,0,0,0,0,0,1,1,0,3.58876793818271,7.401874008757161,0,0,54.2,57.49,6,1,0,0,2,4,1,138.5,0,0,0 +8951,10978,19996,-9,19995,19994,3,1,1,22,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-953.2566379504595,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.61,61.54,6,1,0,0,2,1,1,810,0,0,0 +8952,10979,19997,19998,-9,-9,1,1,0,55,1,0,0,0,1,-9,4,3,0,4,0,7.555684514702047,7.528047500911303,1,0,-9,18,0,-10,-71.25773906039925,0,0,0,65,1,3,1,3,3,2019,3,2,19,7,0,43,15,4,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.792838690911585,7.373209120664088,0,0,51.77,58.57,6,1,0,0,2,5,1,442,0,0,0 +8952,10979,19998,19997,-9,-9,2,1,1,65,1,0,0,0,1,-9,1,1,0,3,8.720262487757992,9.071686036029503,8.045140238264368,1,0,-9,15,0,10,-23.78844217553457,0,0,0,55,1,4,3,3,3,2019,2,1,20,8,40,50,15,1,8,4,0,16.67744577771857,16.67744577771857,0,0,0,0,0,0,0,1,1,0,3.780337260007229,8.140762696635155,0,0,32.38,58.28,5,1,0,0,2,5,1,442,0,0,0 +8952,10980,19999,-9,19997,19998,3,1,0,22,2,0,0,0,1,1,2,1,0,4,0,8.232301302061687,8.055926992593941,3,0,0,0,-9,0,-987.235942926659,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,8.042323961561948,0,0,0,52.31,52.76,6,1,0,0,2,4,1,1160,0,0,0 +8952,10981,20000,-9,19997,19998,4,1,0,24,2,0,0,0,1,-9,2,1,0,5,8.386719190252437,7.992953070703917,0,3,0,-9,0,-9,0,-1070.513596926714,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,48,54,15,1,1,-9,1,9.800864244686768,9.800864244686768,0,0,0,0,0,0,0,1,1,0,4.319761755668938,0,0,0,49.25,61.25,6,1,0,0,2,4,1,1447,0,0,0 +8953,10982,20001,20002,-9,-9,2,1,0,70,1,0,0,0,2,-9,2,1,0,5,7.095254580917423,6.890862594406464,0,1,0,-9,10,0,-2,50.75715778755087,0,0,0,72,2,2,3,2,2,2019,2,1,3,0,6,5,15,1,0,4,0,20.42327836511418,20.42327836511418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.53,53.47,7,1,0,0,11,3,1,232,0,0,0 +8953,10982,20002,20001,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,7.72904718624285,7.699404338088308,1,0,-9,10,0,2,-16.97868877402745,0,0,0,70,2,5,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.294258630309047,7.419877935101037,0,0,55.94,42.23,6,1,0,0,11,3,1,232,0,0,0 +8954,10983,20003,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1057.943568880177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,58.37,36.96,6,1,0,0,10,1,1,243,0,0,0 +8955,10984,20004,20005,-9,-9,1,1,1,54,1,0,0,0,2,-9,1,1,0,4,7.388252047398894,7.505262223364964,0,1,0,-9,27,0,1,-.3607777531345884,0,0,0,53,1,5,1,-9,-9,2019,1,2,6,0,40,50,15,1,0,1,0,4.991373184588826,4.991373184588826,0,0,0,0,0,0,0,0,0,0,6.245280413087199,0,0,0,59.53,56.44,7,1,0,0,2,5,1,766,0,0,0 +8955,10984,20005,20004,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,5,8.628563388762412,8.728120213763949,0,1,0,-9,26,0,-1,-107.2527416816663,0,0,0,54,2,4,1,3,2,2019,1,1,8,0,33,40,15,1,0,1,0,17.45136070883099,17.45136070883099,0,0,0,0,0,0,0,0,0,0,8.125018713787181,0,0,0,57.06,57.76,7,1,0,0,2,5,1,766,0,0,0 +8955,10985,20006,-9,20005,20004,3,1,1,23,2,0,0,0,1,-9,2,1,0,4,8.16012578523199,8.08133666329161,0,3,0,0,0,-9,0,-969.4324327807188,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,40,40,15,1,0,-9,1,12.95260061802126,12.95260061802126,0,0,0,0,0,0,0,0,0,0,0,0,1.915066624065698,3,57.16,56.15,6,1,0,0,2,4,1,1578,0,0,0 +8955,10986,20007,-9,20005,20004,4,1,0,22,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1013.668250376586,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,61.77,7,1,0,0,2,1,1,257,0,0,0 +8956,10987,20008,20009,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,1,-9,0,22.96745558825672,-9,0,0,68,2,3,3,3,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,12.77679759098099,0,0,0,0,1,1,0,4.91802416149381,0,0,0,63.24,23.99,3,1,0,0,7,2,1,2275.5,0,0,0 +8956,10987,20009,20008,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,6.269554197256807,5.868265905536256,1,0,-9,1,-9,0,29.88573154000999,-9,0,0,68,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.883177639987251,6.562242625639891,0,0,56.52,48.31,6,1,0,0,7,2,1,2275.5,0,0,0 +8956,10988,20010,-9,20008,20009,3,1,0,34,2,0,0,0,2,-9,2,1,0,5,8.660636511659868,8.533618536315425,0,3,0,-9,0,-9,0,-878.0437799893505,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,42,0,15,1,2,-9,1,11.8508560951999,11.8508560951999,0,0,0,0,0,0,0,1,1,0,2.575842624332523,0,0,0,57.06,57.76,6,1,0,0,7,5,1,3876,0,0,0 +8957,10989,20011,20013,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.653382498503651,8.797589669808135,0,2,0,-9,7,0,1,-30.24305774661837,0,0,0,41,2,4,1,-9,-9,2019,1,1,9,0,37,0,15,1,1,1,0,18.01888471391376,18.01888471391376,0,0,0,0,0,0,0,1,1,0,6.588395313092406,0,0,0,51,56,6,1,0,0,10,4,1,454.3333333333333,0,0,0 +8957,10989,20012,-9,20013,20011,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-894.6978236378129,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,1,454.3333333333333,0,0,0 +8957,10989,20013,20011,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,4,7.097342526572919,7.147814991124994,0,2,0,-9,19,0,-1,160.6253491641024,0,0,1,42,2,4,1,2,2,2019,1,2,9,0,22,17,15,1,0,1,0,6.181479792309645,6.181479792309645,0,0,0,0,0,0,0,1,1,0,2.59087113618132,0,0,0,55.19,54.26,6,1,0,0,10,4,1,454.3333333333333,0,0,0 +8958,10990,20014,20015,-9,-9,1,1,0,39,1,1,2,0,1,-9,97,3,0,3,8.798296097580758,8.566460739786422,0,2,0,-9,13,0,-2,26.96467559990447,0,0,1,41,1,5,3,1,1,2019,4,2,7,1,0,26,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.052742296444193,0,0,0,54.96,53.17,5,1,0,0,7,4,1,313,0,0,0 +8958,10990,20015,20014,-9,-9,2,1,1,41,1,1,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,11,0,2,-43.99297355392727,0,0,0,39,1,3,3,1,2,2019,4,1,11,0,0,12,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,8.44996792314242,0,0,0,38.59,63.37,5,1,0,0,7,4,1,313,0,0,0 +8958,10990,20016,-9,20014,20015,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.5549834135167,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,313,0,0,0 +8958,10990,20017,-9,20014,20015,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.6912339063514,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,313,0,0,0 +8959,10991,20018,-9,20021,20020,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.646606156696,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,9,4,1,298,0,0,0 +8959,10991,20019,-9,20021,20020,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.761667310463,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,9,4,1,298,0,0,0 +8959,10991,20020,20021,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,3,9.190567889295359,9.711096901000337,0,2,0,-9,10,0,4,20.39438631143707,0,0,0,40,1,3,3,2,2,2019,2,1,10,0,61,60,15,1,0,3,0,15.23154101687672,15.23154101687672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,6,1,0,0,9,4,1,298,0,0,0 +8959,10991,20021,20020,-9,-9,1,1,0,40,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,10,0,-4,-28.99810968479726,0,0,1,44,2,3,1,2,2,2019,3,2,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,5,1,0,0,9,4,1,298,0,0,0 +8960,10992,20022,20025,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,4,7.045263589761479,7.296621700969773,0,2,0,-9,11,-9,-2,94.67752343682434,-9,0,1,45,2,5,1,-9,-9,2019,1,1,10,0,16,0,15,1,0,1,0,9.577472553452772,9.577472553452772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.01,58,6,3,0,0,4,2,1,1422.75,0,0,0 +8960,10992,20023,-9,20022,20025,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1066.761216779181,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,2,1,1422.75,0,0,0 +8960,10992,20024,-9,20022,20025,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-995.9607588025463,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,2,1,1422.75,0,0,0 +8960,10992,20025,20022,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,5,0,0,0,2,0,-9,11,-9,2,12.65134353387212,-9,0,0,43,2,4,1,-9,3,2019,1,2,6,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.653475885308194,0,0,0,30.22,61.23,7,3,0,0,4,2,1,1422.75,0,0,0 +8961,10993,20026,-9,20030,20027,5,1,1,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-982.5582601632717,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,4,1,443,0,0,0 +8961,10993,20027,20030,-9,-9,1,1,1,35,1,2,4,0,2,-9,2,1,0,4,8.198294779129679,7.990981242043102,0,2,0,-9,9,0,1,107.9322386464483,0,0,0,34,1,3,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,9.796574079077502,9.796574079077502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,13,4,1,443,0,0,0 +8961,10993,20028,-9,20030,20027,6,1,1,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-961.1084941282578,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,4,1,443,0,0,0 +8961,10993,20029,-9,20030,20027,3,1,1,6,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-811.0037113348449,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,443,0,0,0 +8961,10993,20030,20027,-9,-9,2,1,0,34,1,2,4,0,1,-9,2,1,0,3,8.662868567101777,8.470101174507413,0,2,0,-9,9,0,-1,-97.59221144629181,0,0,1,35,2,4,1,-9,-9,2019,1,1,6,0,37,38,15,1,0,1,0,16.28015131087646,16.28015131087646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,13,4,1,443,0,0,0 +8961,10993,20031,-9,20030,20027,4,1,1,5,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.478857786861,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,443,0,0,0 +8962,10994,20032,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,4.584944573933015,4.925493943695594,3,0,0,0,-9,0,-1031.875987238989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.718528405880675,4.785253857421872,0,0,46.55,43.16,6,1,0,0,1,2,1,292,0,0,0 +8963,10995,20033,20034,-9,-9,1,1,0,63,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,38,-9,-13,0,-9,0,0,76,3,3,3,3,3,2019,4,2,16,4,0,0,15,3,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,57.6,6,1,1,1,10,1,1,1201,0,0,0 +8963,10995,20034,20033,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,13,0,-9,0,0,63,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.498167279850693,0,0,0,53,46,6,1,0,0,10,1,1,1201,0,0,0 +8964,10996,20035,20036,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,6.298263768570555,6.333347680765104,1,0,-9,7,0,4,61.21615471152307,0,0,0,62,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.796976889641326,6.134808309740163,0,0,54.96,53.17,6,1,0,0,4,2,1,240,0,0,0 +8964,10996,20036,20035,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,7.281362571031773,6.891579832422427,1,0,-9,7,0,-4,118.665642534903,0,0,0,66,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.959955126990138,7.088506814350688,0,0,49,48,5,1,0,0,4,2,1,240,0,0,0 +8965,10997,20037,20038,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,3,7.948653026287202,8.269614132597983,0,1,0,-9,6,0,0,21.00519617089291,0,1,0,26,2,3,1,-9,-9,2019,1,1,12,0,45,32,15,1,0,1,0,7.319619381146188,7.319619381146188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.18,55.31,3,1,0,0,2,4,0,800,0,0,0 +8965,10997,20038,20037,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,3,8.153787707098134,7.94355588127009,0,1,0,-9,6,0,0,76.58323154437001,0,1,1,26,2,3,1,2,2,2019,1,2,9,0,38,37,15,1,0,1,0,6.905864408224507,6.905864408224507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,4,1,0,0,2,4,0,800,0,0,0 +8966,10998,20039,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,6.873930153782317,7.028401203647621,3,0,0,0,-9,0,-960.2297560009685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.336278782180721,0,0,58.15,52.91,7,1,0,0,2,2,1,2836,0,0,0 +8967,10999,20040,-9,-9,-9,1,1,0,83,3,0,0,0,1,-9,4,3,0,4,0,6.278231916655939,6.645703784020599,3,0,0,0,-9,0,-978.1032332700088,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.724407664961672,6.589246469013388,0,0,40.16,48.87,6,1,0,0,9,2,1,239,0,0,0 +8968,11000,20041,20042,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,7.628700003405075,7.650678171892872,0,2,0,-9,7,0,-5,70.97875273843077,0,0,1,48,2,4,1,3,3,2019,1,2,8,0,35,28,15,1,0,1,0,6.256833468766841,6.256833468766841,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.37,56.93,6,1,0,0,11,3,1,313,0,0,0 +8968,11000,20042,20041,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,8.264852819478095,8.063974449991008,0,2,0,-9,7,0,5,76.38163312314956,0,0,0,43,2,4,1,2,2,2019,1,1,4,0,50,38,15,1,0,1,0,8.700071366769503,8.700071366769503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,6,1,0,0,11,3,1,313,0,0,0 +8968,11000,20043,-9,20041,20042,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-809.5012033762276,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,313,0,0,0 +8969,11001,20044,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,5.168047222239393,4.898002308858195,3,0,0,0,-9,0,-1233.643084164778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.675154851298801,4.830461151071331,0,0,62,47.26,6,1,0,0,11,2,1,807,0,0,0 +8970,11002,20045,20046,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.07930214410581,8.472196780750673,0,1,0,-9,7,0,0,5.743034948748313,0,0,0,57,2,4,1,3,3,2019,1,1,7,0,38,38,15,1,0,1,0,12.39573162271553,12.39573162271553,0,0,0,0,0,0,0,0,0,0,6.676818288886353,0,0,0,48.16,49.79,6,1,0,0,12,4,1,283,0,0,0 +8970,11002,20046,20045,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,7.777017184482106,8.074211076394237,5.307003778363689,1,0,-9,7,0,0,-132.0472647017151,0,0,0,57,2,3,1,3,3,2019,1,2,8,0,37,37,15,1,0,1,0,8.194078263756428,8.194078263756428,0,0,0,0,0,0,0,0,0,0,4.236931683878599,5.233631387301831,0,0,48.16,39.75,3,1,0,0,12,4,1,283,0,0,0 +8971,11003,20047,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,4,0,7.920746773913513,7.792765530032465,3,0,0,0,-9,0,-1145.926880321333,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.250348623491727,7.75478865625922,0,0,52.86,48.66,6,1,0,0,1,4,1,1416,0,0,0 +8972,11004,20048,20049,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,3,7.019968177443602,7.374493588090137,0,1,0,-9,2,0,-6,58.3416883915201,0,0,1,36,2,4,1,2,3,2019,1,2,7,0,40,45,15,1,0,1,0,2.883942270469002,2.883942270469002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,6,1,0,0,13,3,1,706,0,0,0 +8972,11004,20049,20048,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,4,7.470904957289864,7.721589053863117,0,1,0,-9,2,0,6,36.32304596925335,-9,0,0,30,2,3,1,-9,-9,2019,1,1,5,0,44,0,15,1,0,1,0,5.797272566200658,5.797272566200658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,13,3,1,706,0,0,0 +8973,11005,20050,20051,-9,-9,1,1,0,57,1,0,0,0,1,-9,4,3,0,3,0,5.910605978543211,5.843543410386798,1,0,-9,9,0,-1,-58.1291916724871,0,0,0,58,1,2,3,1,1,2019,4,2,9,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.539051308540393,0,0,0,45.4,53.52,5,1,0,0,1,2,1,409,0,0,0 +8973,11005,20051,20050,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,2,5.77057369544169,6.98615997984749,7.075601616210186,1,0,-9,9,0,1,-125.6125312681776,0,0,0,57,1,3,3,3,3,2019,4,1,9,0,0,20,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.38229541232453,6.808939257866486,0,0,45.23,37.81,5,1,0,0,1,2,1,409,0,0,0 +8974,11006,20052,20055,-9,-9,1,1,0,43,1,0,3,0,2,-9,2,1,0,3,7.846308714606256,7.820321021797169,0,2,0,-9,6,0,0,-83.04015436559929,0,0,1,52,2,4,1,2,2,2019,1,2,16,4,38,38,15,1,4,1,0,8.226398058770792,8.226398058770792,0,0,0,0,0,0,0,1,1,0,2.816749970090592,0,0,0,47.72,49.51,3,1,0,0,12,3,1,605,0,0,0 +8974,11006,20053,-9,20052,20055,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.5609201850266,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,605,0,0,0 +8974,11006,20054,-9,20052,20055,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.4220012115633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,605,0,0,0 +8974,11006,20055,20052,-9,-9,2,1,1,52,1,0,3,0,2,-9,1,1,0,4,7.028561678536437,7.119278080551656,0,2,0,-9,6,0,9,49.7391070739605,0,0,0,43,2,3,1,2,2,2019,1,1,8,0,45,36,15,1,0,1,0,2.51462737290854,2.51462737290854,0,0,0,0,0,0,0,1,1,0,2.202596493964291,0,0,0,57.16,56.15,6,1,0,0,12,3,1,605,0,0,0 +8974,11006,20056,-9,20052,20055,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,4.165370361099974,3.935440093828792,0,2,0,0,0,-9,0,-1025.007255944598,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3275555629124595,0,0,0,57.16,56.15,7,1,0,1,12,3,1,605,0,0,0 +8975,11007,20057,20058,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,5.398192623520107,5.123887325579762,1,0,-9,47,0,6,72.35062801342137,0,0,0,69,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.748556472543654,5.006162195806105,3.917469133578918,3,60.12,54.8,1,1,0,0,10,2,1,706.5,0,0,0 +8975,11007,20058,20057,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.343958685940368,7.088877288845826,1,0,-9,47,0,-6,-63.67778415653956,0,0,0,75,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.240045732238675,7.22725193862755,9.150138971617178,3,60.12,54.8,7,1,0,0,10,2,1,706.5,0,0,0 +8976,11008,20059,-9,20060,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.374517588544,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,1,0,692,0,0,0 +8976,11008,20060,-9,-9,-9,1,1,0,32,3,0,2,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1135.082052689988,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.53,57.58,5,3,1,0,8,1,0,692,0,0,0 +8976,11008,20061,-9,20060,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-898.0784281046273,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,1,0,692,0,0,0 +8977,11009,20062,20063,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,5,8.631529000661375,8.380719012517464,0,1,0,-9,5,0,-7,-8.605858415809978,-9,0,0,61,2,4,3,-9,-9,2019,2,1,6,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.52967356331309,0,0,0,57.06,57.76,7,1,0,0,12,4,1,947.5,0,0,0 +8977,11009,20063,20062,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,5,0,7,67.4551581503095,0,0,0,54,2,5,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,12,4,1,947.5,0,0,0 +8978,11010,20064,20065,-9,-9,2,1,1,64,1,0,0,0,1,-9,8,3,1,1,0,7.731791516436926,7.775229914090773,1,0,-9,48,0,-3,-117.1229779984758,0,0,0,67,2,2,3,-9,-9,2019,4,1,36,12,0,0,15,3,12,4,0,0,0,1,0,130.4995866770278,0,0,0,0,1,1,0,6.490644638353896,7.752288364520783,118.7328699889852,2,19.01,22.64,1,1,0,1,7,3,1,2442,0,0,0 +8978,11010,20065,20064,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,7.099907285424277,7.190167621695117,1,0,-9,48,0,3,-89.56372936026685,0,0,0,64,1,1,3,3,3,2019,4,2,12,1,0,0,15,4,1,3,0,0,0,1,1.555909622647734,18.55171729641195,0,3.829408879564999,0,14.54405877316429,1,1,0,7.222523889696732,7.075586487052765,45.04297873621528,1,51.88,26.05,5,1,0,0,7,3,1,2442,0,0,0 +8978,11011,20066,-9,20065,20064,3,1,1,35,2,0,0,0,2,-9,2,1,0,3,8.037859453380248,7.83241329504222,0,3,0,0,0,-9,0,-1114.160435638739,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,42,41,15,1,0,-9,1,6.698644536145842,6.698644536145842,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,4,1,0,1,7,4,1,906,0,0,0 +8979,11012,20067,-9,20069,20068,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.760466438993,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,5,1,409.3333333333333,0,0,0 +8979,11012,20068,20069,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,3,8.874357927059032,8.954825852200134,0,2,0,-9,16,0,5,64.81016539318776,0,0,0,45,2,3,1,3,3,2019,1,2,13,2,55,60,15,1,2,1,0,14.98487163555628,14.98487163555628,0,0,0,0,0,0,0,1,1,0,4.386366765383978,0,5.392301227776047,3,33.43,53.68,3,3,0,0,6,5,1,409.3333333333333,0,0,0 +8979,11012,20069,20068,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,3,7.90058783439827,7.928119398846839,0,2,0,-9,16,0,-5,-65.4581244948791,0,0,0,50,2,3,1,3,3,2019,1,1,20,7,38,38,15,1,7,1,0,11.82879828736075,11.82879828736075,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.28,63.76,3,3,0,0,6,5,1,409.3333333333333,0,0,0 +8980,11013,20070,20071,-9,-9,1,1,1,52,1,0,1,0,1,-9,1,1,0,4,9.44717191847754,9.837501236762565,7.754880588056055,2,0,-9,8,0,0,6.548989508468871,0,0,0,52,2,4,1,2,2,2019,1,2,9,0,50,0,15,1,1,1,0,28.72591409152765,28.72591409152765,0,0,0,0,0,0,0,0,0,0,7.291100653111287,8.339745427627896,0,0,53,54,6,1,0,0,9,5,1,1857.5,0,0,0 +8980,11013,20071,20070,-9,-9,2,1,0,52,1,0,1,0,2,-9,1,1,0,4,6.903581726429282,7.15130609686359,0,2,0,-9,8,0,0,84.52955321930831,0,0,0,52,1,4,1,3,3,2019,1,1,20,8,15,9,15,1,8,1,0,10.67267779939972,10.67267779939972,0,0,0,0,0,0,0,0,0,0,7.049905002621505,0,0,0,31.54,58.74,4,1,0,0,9,5,1,1857.5,0,0,0 +8980,11014,20072,-9,20071,20070,3,1,1,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-964.7857997394732,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7408868327790672,0,0,0,53.39,52.35,6,1,0,0,9,5,1,662,0,0,0 +8980,11015,20073,-9,20071,20070,4,1,0,22,2,0,1,0,1,1,2,1,0,5,5.003316579005161,4.775894788838349,0,3,0,0,0,-9,0,-901.6680256182921,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,15,3,30,0,15,1,3,-9,1,.5755187651041185,.5755187651041185,0,0,0,0,0,0,0,0,0,0,3.260715463208788,0,0,0,36.78,44.19,3,1,0,0,9,2,1,129,0,0,0 +8981,11016,20074,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,4,7.613576934938123,7.711441721709718,0,4,0,0,0,-9,0,-1043.140177626994,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,30,15,1,0,-9,0,7.890077178540306,7.890077178540306,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,1,12,3,0,593.5,0,0,0 +8981,11016,20075,-9,20074,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-995.378831209944,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,0,593.5,0,0,0 +8982,11017,20076,20077,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,7.184795395539345,9.451427452822935,9.087565717745937,1,0,-9,31,0,11,68.60257807615864,0,0,0,55,1,5,1,2,2,2019,3,2,6,0,2,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.507248329664325,8.822326194177727,14.32375426533614,3,57.16,56.15,6,1,0,0,9,5,1,461,0,0,0 +8982,11017,20077,20076,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,5,5.241619481288227,7.529129555951964,7.225945209685795,1,0,-9,32,0,-11,-66.13760445631412,0,0,0,66,1,4,3,3,2,2019,2,1,7,0,50,50,15,1,0,4,0,.3701618722232218,.3701618722232218,0,0,0,0,0,0,0,1,1,0,8.207968956984285,7.450614847744411,0,3,57.06,57.76,6,1,0,0,9,5,1,461,0,0,0 +8982,11018,20078,-9,20077,20076,3,1,0,25,2,0,0,0,1,-9,2,1,0,5,8.207453658887898,8.337620204038403,0,3,0,0,0,-9,0,-956.5839845534795,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,1,40,9,15,1,1,-9,1,10.87402228518175,10.87402228518175,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.36,49.4,6,1,0,0,9,4,1,55,0,0,0 +8982,11019,20079,-9,20077,20076,4,1,0,21,2,0,0,0,1,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1105.772286061879,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.382106935837357,3,54.37,54.8,6,1,1,0,9,1,1,787,0,0,0 +8983,11020,20080,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-915.8889278700894,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.99,30.49,3,1,0,1,13,1,0,1292,0,0,0 +8984,11021,20081,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,6.226380486780698,6.014791024315283,3,0,0,0,-9,0,-1000.573955115005,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,4.57243504527605,0,0,0,.5336354900407569,0,1,1,0,3.649227600331244,6.005400888376674,0,0,59.96,18.25,6,1,0,0,13,2,1,700,0,0,0 +8985,11022,20082,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,2,0,7.973105856041602,8.000507115736518,3,0,0,0,-9,0,-753.2188239772101,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.668921414386038,7.962563125772752,0,0,43.99,42.31,6,1,0,0,9,4,1,144,0,0,0 +8985,11023,20083,-9,-9,-9,2,1,0,76,2,0,0,0,2,-9,4,3,0,4,0,7.053038473674156,7.19666212853759,3,0,0,0,-9,0,-1074.465657871299,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.483582701602333,7.24816122943229,0,0,48.12,50.58,6,1,0,0,9,2,1,1210,0,0,0 +8986,11024,20084,-9,20085,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-951.2537322896643,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,3,0,707.6666666666666,0,0,0 +8986,11024,20085,-9,-9,-9,1,1,0,34,2,0,2,0,1,-9,2,1,0,3,7.724741577303635,8.00086323848911,0,4,0,0,0,-9,0,-1036.461162677484,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,30,30,15,1,0,-9,0,8.752255489632111,8.752255489632111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.44,52.04,4,1,0,0,8,3,0,707.6666666666666,0,0,0 +8986,11024,20086,-9,20085,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1016.432934131453,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,3,0,707.6666666666666,0,0,0 +8987,11025,20087,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,4,0,8.110925583816039,8.444944134115248,3,0,0,0,-9,0,-1100.695210012569,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.607110066831028,7.96739297843598,0,0,60.12,54.8,7,1,0,0,10,4,1,335,0,0,0 +8988,11026,20088,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,2,1,0,5,7.960625906232496,8.266075777319237,0,3,0,0,0,-9,0,-1037.751294828673,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,50,52,15,1,4,-9,0,6.588729265702069,6.588729265702069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,4,1,0,0,9,4,1,571,0,0,0 +8988,11027,20089,-9,20088,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,5,7.572000696660403,7.833785067514016,0,3,0,0,0,-9,0,-936.827099543084,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,41,35,15,1,0,-9,1,7.678516243043616,7.678516243043616,0,0,0,0,0,0,0,0,0,0,.2661345733711493,0,0,0,62.39,56.71,7,1,0,0,9,3,1,584,0,0,0 +8988,11028,20090,-9,20088,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.675742917403515,7.847881879754413,0,3,0,0,0,-9,0,-1204.293973597711,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,40,41,15,1,2,-9,1,4.679668054501994,4.679668054501994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,3,1,0,1,9,3,1,310,0,0,0 +8989,11029,20091,20092,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,3,8.950944120617029,8.824468630824231,0,2,0,-9,29,0,3,-39.11767590795952,0,0,0,51,2,3,1,3,3,2019,1,2,10,0,42,45,15,1,0,1,0,20.32021339387246,20.32021339387246,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.37,47.48,6,4,0,0,8,5,1,689,0,0,0 +8989,11029,20092,20091,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,3,8.355565126057918,8.267451044135088,0,2,0,-9,29,0,-3,93.85284883938684,0,0,0,54,1,3,1,2,3,2019,1,1,10,2,40,0,15,1,2,1,0,12.1443328315753,12.1443328315753,0,0,0,0,0,0,0,1,1,0,4.95821785972157,0,0,0,44.84,47.1,4,4,0,0,8,5,1,689,0,0,0 +8989,11029,20093,-9,20091,20092,4,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-957.0198770549009,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,8,5,1,689,0,0,0 +8989,11030,20094,-9,20091,20092,3,1,0,21,2,0,1,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-884.0401589698795,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.2,48.45,5,4,0,0,8,1,1,819,0,0,0 +8990,11031,20095,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,5,8.64654896098048,8.378557150793716,0,3,0,-9,0,-9,0,-884.432046429234,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,50,0,15,1,3,-9,0,9.565442917084233,9.565442917084233,0,0,0,0,0,0,0,0,0,0,3.899952243857615,0,0,0,47.33,58,5,1,0,0,7,4,0,162,0,0,0 +8991,11032,20096,20097,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,5,8.129926303625268,8.144230604535002,0,1,0,-9,1,-9,5,27.7781598392802,-9,0,0,43,2,5,1,3,2,2019,1,2,6,0,32,0,15,1,0,1,0,14.21600981826808,14.21600981826808,0,0,0,0,0,0,0,0,0,0,6.58719264785319,0,0,0,62.39,56.71,7,1,0,0,13,4,1,518.5,0,0,0 +8991,11032,20097,20096,-9,-9,2,1,0,43,1,0,0,0,2,-9,1,1,0,5,7.438645436578982,7.610371337895193,0,1,0,-9,1,-9,-5,65.40815689099166,-9,0,1,48,2,5,1,3,3,2019,1,1,6,0,34,0,15,1,0,1,0,6.580073344686353,6.580073344686353,0,0,0,0,0,0,0,0,0,0,8.269890214928422,0,0,0,59.43,58.05,7,1,0,0,13,4,1,518.5,0,0,0 +8992,11033,20098,20099,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,5,8.49391208686553,8.764871123768046,7.187418859030651,1,0,-9,33,0,3,-140.8386245795553,0,0,0,52,2,4,1,-9,-9,2019,1,2,7,0,44,45,15,1,0,1,0,12.447425718894,12.447425718894,0,0,0,0,0,0,0,1,1,0,5.533714422882457,7.038746998860308,0,3,47.87,55.03,2,1,0,0,5,5,1,360.5,0,0,0 +8992,11033,20099,20098,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.156603395535854,7.334926342615635,0,1,0,-9,33,0,-3,.1160377674156383,0,0,0,55,2,5,1,2,2,2019,1,1,12,1,20,19,15,1,1,1,0,9.169175418450253,9.169175418450253,0,0,0,0,0,0,0,1,1,0,5.109073657625085,0,5.598437862323548,3,44.08,59.33,3,1,0,0,5,5,1,360.5,0,0,0 +8992,11034,20100,-9,20099,20098,3,1,0,21,2,0,0,1,2,0,7,2,0,4,3.439856379848575,3.344627696964467,0,3,0,0,0,-9,0,-1031.712585993928,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,5,1,1,472,0,0,0 +8992,11035,20101,-9,20099,20098,4,1,1,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1180.058477382941,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4809408044675877,0,0,0,51.85,49.1,5,1,0,0,5,1,1,846,0,0,0 +8993,11036,20102,-9,-9,-9,1,1,0,52,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-988.5275864758336,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.73,56.61,4,2,0,1,9,1,0,210,0,0,0 +8994,11037,20103,20104,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.357977681898937,8.641680680513449,0,2,0,-9,8,0,1,-32.22758692519497,0,0,0,49,1,5,3,2,1,2019,2,1,9,0,28,28,15,1,0,3,0,22.64097006121872,22.64097006121872,0,0,0,0,0,0,0,1,1,0,2.49788731047326,0,0,0,53.58,43.97,6,1,0,0,12,3,1,568.5,0,0,0 +8994,11037,20104,20103,-9,-9,1,1,1,49,1,0,1,0,1,-9,3,3,0,5,0,0,0,2,0,-9,8,0,-1,-64.13851151933636,0,0,0,50,1,4,1,1,2,2019,3,2,25,12,0,38,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.712404683384523,0,0,0,38.18,65.09,6,1,1,0,12,3,1,568.5,0,0,0 +8995,11038,20105,-9,-9,-9,1,1,0,46,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-1077.481230587277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.15,34.13,4,1,0,0,11,1,0,507,0,0,0 +8996,11039,20106,20107,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,47,0,-1,150.854967574601,0,0,0,73,1,5,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.532852401559706,0,0,0,49.41,58.28,6,1,0,0,13,4,1,1146.5,0,0,0 +8996,11039,20107,20106,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,5,0,8.451209079277051,8.623773924335044,1,0,-9,47,0,1,-67.60239951750404,0,0,0,72,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.341276836419363,8.709952058837551,0,0,59.43,58.05,7,1,0,0,13,4,1,1146.5,0,0,0 +8997,11040,20108,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,3,0,4.5629591208376,4.946877810311929,3,0,0,0,-9,0,-1007.23461510634,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.11221550391258,4.814490485054905,0,0,50.43,51.02,4,1,0,0,10,2,1,673,0,0,0 +8998,11041,20109,20110,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,6.873553142971469,7.11057914362369,1,0,-9,52,0,0,-12.50605064944196,0,0,0,70,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.999233352763773,0,0,52.37,56.93,1,1,0,0,7,2,1,977.5,0,0,0 +8998,11041,20110,20109,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,0,73.73894350629106,0,0,0,70,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.108513479502745,0,0,0,54.96,53.17,6,1,0,0,7,2,1,977.5,0,0,0 +8999,11042,20111,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,1,0,7.190820663926202,7.278700099879419,3,0,0,0,-9,0,-971.7475375881396,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.383983999123366,0,0,16.04,23.99,1,1,0,1,12,3,0,642,0,0,0 +9000,11043,20112,-9,20114,20113,6,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.3327385734796,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,4,1,369.3333333333333,0,0,0 +9000,11043,20113,20114,-9,-9,2,1,1,47,1,0,3,0,1,-9,2,1,0,5,9.381292634473231,9.03027139834872,0,2,0,-9,22,0,2,85.62938265575553,0,0,0,45,1,3,3,-9,-9,2019,2,1,15,3,45,44,15,1,3,3,0,19.75503364357654,19.75503364357654,0,0,0,0,0,0,0,1,1,0,1.959311669423885,0,0,0,48.96,60.26,6,1,0,0,8,4,1,369.3333333333333,0,0,0 +9000,11043,20114,20113,-9,-9,1,1,0,45,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,22,0,-2,108.8533477860205,0,0,0,47,1,5,1,3,3,2019,3,2,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.2,48.66,6,4,0,0,8,4,1,369.3333333333333,0,0,0 +9000,11044,20115,-9,20114,20113,3,1,1,20,2,0,3,1,2,0,7,2,0,5,5.730105713111842,6.678296745491433,5.908183782576951,3,0,0,0,-9,0,-1123.847399678618,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,7,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.777291218774717,0,0,0,46.49,55.7,6,2,0,0,8,2,1,234,0,0,0 +9000,11045,20116,-9,20114,20113,4,1,1,18,2,0,3,1,2,0,7,2,0,4,5.461816561458304,6.703624158554173,6.319065595372834,3,0,0,0,-9,0,-1003.106469344654,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,1,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.550477641074878,0,0,0,33.79,55.9,5,2,0,0,8,4,1,376,0,0,0 +9001,11046,20117,-9,-9,-9,2,1,0,51,2,0,0,0,2,-9,2,1,0,4,8.543956212481362,8.159966296802562,0,3,0,0,0,-9,0,-955.3393063663204,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,0,20.10813723457296,20.10813723457296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,12,4,0,150,0,0,0 +9002,11047,20118,20119,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,5,0,6.188645442201565,5.766309802445698,1,0,-9,43,0,-1,68.33503648001567,0,0,0,67,1,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.213639528532125,5.935208125340715,10.60897808537468,3,59.43,58.05,7,1,0,0,9,3,1,809,0,0,0 +9002,11047,20119,20118,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,5,0,7.731132755089427,7.903849265133623,1,0,-9,43,0,1,-28.76866250476469,0,0,0,66,2,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.437903075671469,17.39819772295256,3,60.02,56.42,6,1,0,0,9,3,1,809,0,0,0 +9003,11048,20120,-9,20121,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.944864287676,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,4,0,0,9,3,0,326.5,0,0,0 +9003,11048,20121,-9,-9,-9,1,1,0,46,3,0,1,0,3,-9,2,1,0,3,7.975531737452274,8.151938300346741,0,4,0,0,0,-9,0,-982.9511548732359,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,42,42,15,1,0,-9,0,7.737814380961173,7.737814380961173,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.18,57.45,5,4,0,0,9,3,0,326.5,0,0,0 +9004,11049,20122,20124,-9,-9,1,1,0,49,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,22,0,-5,0,0,0,0,54,1,3,3,2,2,2019,4,2,12,2,0,30,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.82690995856239,0,0,3,49.14,48.86,6,1,1,0,9,1,1,269,0,0,0 +9004,11049,20123,-9,20122,20124,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.424774929701,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,1,1,269,0,0,0 +9004,11049,20124,20122,-9,-9,2,1,1,54,1,0,2,0,1,-9,3,3,0,3,0,0,0,2,0,-9,24,0,5,0,0,0,0,49,2,3,3,2,2,2019,4,1,16,4,0,44,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.92511696042334,3,31.93,58.41,4,1,1,1,9,1,1,269,0,0,0 +9004,11050,20125,-9,20122,20124,3,1,1,18,2,0,2,0,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-939.9854181975968,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.95,62.18,6,1,0,0,9,1,1,122,0,0,0 +9005,11051,20126,20127,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,3,8.187284664399472,7.989652342698952,0,2,0,-9,6,0,-7,-44.88999608148094,0,0,1,48,1,2,1,2,2,2019,1,1,8,0,26,28,15,1,0,1,0,16.11396628218571,16.11396628218571,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.2,39.82,6,1,0,0,11,5,1,645,0,0,0 +9005,11051,20127,20126,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,2,8.573659595087733,8.416818567809566,0,2,0,-9,6,0,7,-103.5965573673933,0,0,0,41,2,3,1,2,2,2019,1,2,24,10,38,37,15,1,10,1,0,19.71848694615916,19.71848694615916,0,0,0,0,0,0,0,1,1,0,3.997478576727926,0,1.772162506440994,3,36.76,46.67,4,1,0,0,11,5,1,645,0,0,0 +9005,11051,20128,-9,20126,20127,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.887052567857,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,645,0,0,0 +9006,11052,20129,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,7.010297901236839,6.726427183467983,3,0,0,0,-9,0,-1003.390918005389,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.916475663851555,0,0,44.98,55.14,6,1,0,0,1,2,0,588,0,0,0 +9007,11053,20130,20131,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,62,0,-3,0,0,0,0,83,3,3,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.327892012174841,0,68.29505977013545,1,41.17,52.68,4,1,0,0,5,1,1,640.5,0,0,0 +9007,11053,20131,20130,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,62,0,3,0,0,0,0,80,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.219571083077136,0,0,0,54,46,6,1,0,0,5,1,1,640.5,0,0,0 +9008,11054,20132,20133,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.691841899228343,7.943735921444509,1,0,-9,43,0,5,90.03566193598469,0,0,0,65,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.951755889889168,7.940300522586016,0,0,54.2,57.49,6,1,0,0,12,3,1,278,0,0,0 +9008,11054,20133,20132,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,6.983343077683007,7.023847124921069,1,0,-9,43,0,-5,6.760146473748347,0,0,0,70,2,4,3,2,2,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,8.500930005338308,0,0,0,0,1,1,0,0,6.776452001935833,0,0,48.7,38.58,5,1,0,0,12,3,1,278,0,0,0 +9009,11055,20134,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,2,1,0,3,7.80300567811899,8.448228063973701,0,3,0,0,0,-9,0,-896.5322436202543,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,40,40,15,1,3,-9,0,8.417190391902038,8.417190391902038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.34,49.64,3,4,0,0,6,4,1,433,0,0,0 +9010,11056,20135,-9,-9,-9,1,1,1,23,2,0,0,0,1,1,2,1,0,5,8.09187268388842,8.044437657557832,0,3,0,0,0,-9,0,-1004.348097171509,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,40,0,15,1,1,-9,0,10.70892260874624,10.70892260874624,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,4,0,363,0,0,0 +9011,11057,20136,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,6.070340268332063,6.313138489639076,3,0,0,0,-9,0,-960.8612513655494,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.6533471524612,0,0,0,1,1,0,0,6.275472183215061,0,0,47.38,50.99,5,1,0,0,4,2,1,257,0,0,0 +9012,11058,20137,20138,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,2,0,3.921531121045669,4.438412394033197,1,0,-9,45,0,-2,-127.9559779149986,0,0,0,65,3,4,3,3,3,2019,4,1,12,0,0,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.046528613768892,4.294089840458934,0,0,38.99,33.73,3,3,0,0,4,2,1,1210,0,0,0 +9012,11058,20138,20137,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,4,0,5.58274893953601,5.888307512833311,1,0,-9,38,0,2,-23.00185589708221,0,0,0,63,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.214490691394999,5.823914287464515,0,0,48.87,58.55,5,3,0,0,4,2,1,1210,0,0,0 +9013,11059,20139,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1007.743622142546,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,28,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.24,70.39,1,1,1,0,11,1,0,1926,0,0,0 +9014,11060,20140,20143,-9,-9,3,1,1,29,1,1,2,0,1,0,7,2,0,5,8.650557992537077,8.553967318841535,6.416816274040879,2,0,-9,2,0,-1,132.2082370182197,-9,1,0,30,2,4,1,-9,-9,2019,3,1,6,0,50,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.122566750084155,0,0,0,62.39,56.71,7,4,0,0,6,4,0,1014.25,0,0,0 +9014,11060,20141,-9,20143,20140,2,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.278635108897,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,4,0,0,6,4,0,1014.25,0,0,0 +9014,11060,20142,-9,20143,20140,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.915729335063,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,4,0,0,6,4,0,1014.25,0,0,0 +9014,11060,20143,20140,-9,-9,1,1,0,30,1,1,2,0,2,-9,2,1,0,4,7.548458956879671,7.520617039036462,0,2,0,-9,2,0,1,25.68851504754438,0,0,1,29,1,5,2,-9,-9,2019,2,3,11,0,35,40,15,1,2,2,0,6.099746203697627,6.099746203697627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,5,4,0,0,6,4,0,1014.25,0,0,0 +9015,11061,20144,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,3,0,5.039659306048317,5.402611418510761,3,0,0,0,-9,0,-964.9625572176409,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.201901646505795,0,0,51,46,5,1,0,1,5,2,0,2343,0,0,0 +9016,11062,20145,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,3,0,7.927607331647595,8.255918101347898,3,0,0,0,-9,0,-1126.822329214007,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.098422604102002,12.00529757655379,3,52,54.51,6,1,0,0,2,4,1,1396,0,0,0 +9017,11063,20146,-9,20151,-9,2,1,1,22,2,0,3,0,2,-9,2,1,0,3,7.496979688130775,7.30918927642269,0,3,0,0,0,-9,0,-1112.895315053298,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,45,0,15,1,0,-9,1,5.145830898926252,5.145830898926252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.4,55.99,3,1,0,0,7,3,1,126,0,0,0 +9017,11064,20147,20151,-9,-9,4,1,1,47,1,0,3,0,2,-9,1,1,0,3,7.719536054301887,8.136899823938816,0,2,0,-9,8,0,6,-50.23154733684198,-9,0,0,41,2,1,3,-9,-9,2019,2,1,12,0,36,0,15,1,0,3,0,9.974854268744998,9.974854268744998,0,0,0,0,0,0,0,1,1,0,0,0,7.209243090849902,2,36.78,41.13,5,1,0,0,7,2,1,553.2,0,0,0 +9017,11064,20148,-9,20151,-9,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.7378822869108,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,1,553.2,0,0,0 +9017,11064,20149,-9,20151,20147,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.573343199914,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,1,553.2,0,0,0 +9017,11064,20150,-9,20151,20147,6,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.357409533348,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,2,1,553.2,0,0,0 +9017,11064,20151,20147,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,1,0,0,0,2,0,-9,8,0,-6,42.12351269392701,-9,0,1,47,2,3,1,-9,-9,2019,3,4,25,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91745501687929,3,36.25,31.14,2,1,0,0,7,2,1,553.2,0,0,0 +9018,11065,20152,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1064.606808171965,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,1,0,0,0,0,4.275791461876167,0,1,0,1,0,0,0,0,31.01,21.33,6,1,0,0,1,1,0,411,0,0,0 +9019,11066,20153,20154,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,3,7.750278852802318,7.540859676896174,0,1,0,-9,20,0,-4,27.60400138403652,0,0,0,64,1,4,3,2,2,2019,2,1,10,0,30,30,15,1,1,4,0,7.329313589346312,7.329313589346312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,5,1,0,0,9,3,1,386.5,0,0,0 +9019,11066,20154,20153,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,7.276952128597897,7.293300899221861,1,0,-9,20,0,4,32.07017160734463,0,0,0,60,1,3,1,2,-9,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.447768984444289,7.113501611096978,7.925724565768104,3,60.69,53.18,7,1,0,0,9,3,1,386.5,0,0,0 +9020,11067,20155,20156,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,4,8.50277434512275,8.686911523159145,7.847464491097684,1,0,-9,33,0,-4,179.1332516104912,0,0,0,62,1,5,3,2,3,2019,2,2,13,1,25,25,15,1,1,4,0,23.22108481382886,23.22108481382886,0,0,0,0,0,0,0,0,0,0,5.455166798626049,7.910819801036774,0,0,44.14,50.07,6,1,0,0,11,5,1,276,0,0,0 +9020,11067,20156,20155,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,5,0,7.298652609552815,7.546089232732911,1,0,-9,33,0,4,.2617762467369515,0,0,0,58,2,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.20282754116054,7.58431137097342,0,0,54.69,57.47,6,1,0,0,11,5,1,276,0,0,0 +9021,11068,20157,-9,20158,-9,2,1,1,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-965.2530558660972,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.67,58.05,3,1,0,1,10,2,0,500,0,0,0 +9021,11068,20158,-9,-9,-9,1,1,0,45,2,0,2,0,2,-9,2,1,0,3,6.661392937248276,6.704468434387407,0,4,0,0,0,-9,0,-1046.788711509551,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,16,16,15,1,3,-9,0,6.173027537952088,6.173027537952088,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.51,52.71,2,1,0,1,10,2,0,500,0,0,0 +9022,11069,20159,20160,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,4,8.528086513977017,8.265463003036748,0,2,0,-9,25,0,6,-20.99018898476069,0,0,0,44,2,2,1,-9,-9,2019,1,2,5,0,30,30,15,1,0,1,0,17.00507523579365,17.00507523579365,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.23,39.15,6,1,0,0,12,4,1,427.3333333333333,0,0,0 +9022,11069,20160,20159,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,2,7.78293389504437,7.98070580931967,0,2,0,-9,25,0,-6,47.9351937534665,0,0,1,50,1,4,1,3,3,2019,1,1,6,0,24,24,15,1,0,1,0,10.68201524510296,10.68201524510296,0,0,0,0,0,0,0,1,1,0,5.913641328118888,0,0,3,55.2,49.4,6,1,0,0,12,4,1,427.3333333333333,0,0,0 +9022,11069,20161,-9,20160,20159,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.8402971221589,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,427.3333333333333,0,0,0 +9023,11070,20162,20163,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,7.426353814418311,7.441432358387798,1,0,-9,48,0,8,-103.7786454514738,0,0,0,75,2,4,3,3,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.772813754463085,7.86523959010371,0,0,59.14,52.5,7,1,0,0,9,3,1,1482.5,0,0,0 +9023,11070,20163,20162,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,6.270543181229037,6.812866990884523,1,0,-9,48,0,-8,95.24644968450228,0,0,0,83,3,4,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.975110345091548,6.7350992053682,0,0,54.2,57.49,7,1,0,0,9,3,1,1482.5,0,0,0 +9024,11071,20164,-9,20166,20165,1,1,1,45,2,0,0,0,2,-9,2,1,0,3,8.524524450575541,8.547901715054518,0,3,0,0,0,-9,0,-1017.778914042766,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,71,65,15,1,2,-9,1,7.88006316718922,7.88006316718922,0,0,0,0,0,0,0,1,1,0,6.734195701485262,0,0,0,46.15,40.82,5,1,0,0,2,5,0,434,0,0,0 +9024,11072,20165,20166,-9,-9,3,1,1,84,1,0,0,0,3,-9,4,3,0,2,0,3.868022109098527,4.090715310698299,1,0,-9,3,0,6,2.530924808687105,0,0,0,78,2,2,3,-9,-9,2019,4,2,17,6,0,0,15,4,6,4,0,0,0,1,0,7.777868975531823,0,0,0,0,1,1,0,0,3.65282786553842,0,0,36.93,35.01,6,1,0,0,2,1,0,1379.5,0,0,0 +9024,11072,20166,20165,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,3,0,-6,63.34163125932011,0,0,0,84,3,2,3,-9,-9,2019,4,3,20,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.99,45.53,6,1,0,0,2,1,0,1379.5,0,0,0 +9025,11073,20167,20170,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.192657470649178,7.206454029107459,0,2,0,-9,23,0,2,21.72748000531481,0,0,1,42,2,4,1,3,2,2019,1,2,7,0,20,20,15,1,0,1,0,9.864071103577105,9.864071103577105,0,0,0,0,0,0,0,1,1,0,0,0,9.066685633752922,3,57.16,56.15,6,1,0,0,2,4,1,666.25,0,0,0 +9025,11073,20168,-9,20167,20170,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.910986842745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,666.25,0,0,0 +9025,11073,20169,-9,20167,20170,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-986.6383418513304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,4,1,666.25,0,0,0 +9025,11073,20170,20167,-9,-9,2,1,1,42,1,0,2,0,2,-9,1,1,0,4,8.412732596666418,8.41683774712156,0,2,0,-9,8,0,-2,-6.290714992200723,0,0,0,44,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,13.84992581754877,13.84992581754877,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,2,4,1,666.25,0,0,0 +9026,11074,20171,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,1,1,0,5,5.468426410850924,6.778708382398858,6.43893291789795,3,0,0,0,-9,0,-1057.842568873715,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,10,25,15,1,0,-9,0,3.187886063395245,3.187886063395245,0,0,0,0,0,0,0,1,1,0,0,6.247826647311976,0,0,34.38,62.64,5,1,0,0,9,2,1,590,0,0,0 +9027,11075,20172,-9,20175,20173,4,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-977.8789677830096,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,6,3,1,644.75,0,0,0 +9027,11075,20173,20175,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.167163930178809,8.097401527349897,0,2,0,-9,19,0,9,-6.063606892772005,0,0,0,38,2,3,1,-9,-9,2019,1,2,7,0,40,40,15,1,0,1,0,9.455364251352259,9.455364251352259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,0,6,3,1,644.75,0,0,0 +9027,11075,20174,-9,20175,20173,3,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-972.2945889671547,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,6,1,0,0,6,3,1,644.75,0,0,0 +9027,11075,20175,20173,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,3,7.321208736941943,7.440744449516159,0,2,0,-9,19,0,0,-54.67411397213105,0,0,1,47,2,3,1,2,-9,2019,1,1,13,1,19,24,15,1,1,1,0,8.262649612071673,8.262649612071673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.39,44.47,6,1,0,0,6,3,1,644.75,0,0,0 +9028,11076,20176,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,4,7.867450064869309,7.929690398310449,0,3,0,0,0,-9,0,-1070.787131556381,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,38,42,15,1,1,-9,0,9.695978445905457,9.695978445905457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.33,55.64,6,1,0,0,6,4,0,659,0,0,0 +9029,11077,20177,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,4,6.342234561425476,7.510191994780169,7.562826057595645,3,0,-9,0,1,0,-961.0844450599138,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,3,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.051041046982564,7.508304880258456,0,0,57.16,56.15,2,1,0,0,9,3,1,487,0,0,0 +9030,11078,20178,-9,-9,-9,1,1,1,31,3,0,0,0,1,-9,2,1,0,1,7.94609490272133,8.367365359306147,0,3,0,-9,0,1,0,-934.7606240803187,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,42,42,15,1,12,-9,0,11.014930813391,11.014930813391,0,0,0,0,0,0,0,0,0,0,3.438186475761233,0,0,0,11.15,57.64,1,1,0,0,13,4,0,770,0,0,0 +9031,11079,20179,-9,20182,20181,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.320025347804,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,4,1,759.5,0,0,0 +9031,11079,20180,-9,20182,20181,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.8512219735951,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,759.5,0,0,0 +9031,11079,20181,20182,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,4,8.479963718685562,8.684752019038088,0,2,0,-9,6,0,-4,-120.4751118767868,0,0,0,35,1,3,1,2,3,2019,1,1,2,0,36,36,15,1,0,1,0,13.65907145939342,13.65907145939342,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,12,4,1,759.5,0,0,0 +9031,11079,20182,20181,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,3,8.184053478056075,8.234389921864443,0,2,0,-9,6,0,4,35.88486438262504,0,0,1,31,2,4,1,2,-9,2019,1,2,13,1,21,21,15,1,1,1,0,24.61576187626344,24.61576187626344,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.14,59.14,5,1,0,0,12,4,1,759.5,0,0,0 +9032,11080,20183,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,4,8.857236116574521,8.650545160932838,0,3,0,-9,0,-9,0,-1022.197735664792,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,43,0,15,1,0,-9,0,16.42665244059564,16.42665244059564,0,0,0,0,0,0,0,0,0,0,7.513540636791292,0,0,0,55.79,52.62,5,1,0,0,9,5,1,371,0,0,0 +9033,11081,20184,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,3,6.146322487388333,5.814461796935362,0,3,0,0,0,-9,0,-1021.277691718775,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.42230375845239,3,36.87,57.63,5,1,1,0,1,2,0,2351,0,0,0 +9034,11082,20185,20186,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,2,7.56183960065273,7.905104454175028,0,1,0,-9,31,0,-6,69.22028721979035,0,0,0,62,2,3,1,3,3,2019,1,1,11,0,40,44,15,1,0,1,0,9.882177953410825,9.882177953410825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.69,4,3,0,0,6,4,1,1280,0,0,0 +9034,11082,20186,20185,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,7.68469323126595,7.973997322038771,0,1,0,-9,31,0,6,-6.695961446731896,0,0,0,56,2,2,1,3,3,2019,1,2,12,0,35,39,15,1,0,1,0,8.869725143612046,8.869725143612046,0,0,0,0,0,0,0,0,0,0,3.836061374327394,0,0,0,47.26,54.06,5,3,0,0,6,4,1,1280,0,0,0 +9034,11083,20187,-9,20185,20186,3,1,0,28,2,0,0,0,1,-9,2,1,0,4,6.056611121601761,5.974980152334804,0,3,0,0,0,-9,0,-889.2652936165575,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,2,-9,1,1.269090762952191,1.269090762952191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,3,0,0,6,2,1,523,0,0,0 +9035,11084,20188,20189,-9,-9,2,1,1,64,1,0,0,0,1,-9,1,1,0,3,9.628108312323278,9.67153594823178,0,1,0,-9,40,-9,0,60.67356642801956,-9,0,0,64,1,4,1,2,2,2019,1,1,12,0,40,0,15,1,0,1,0,35.11073432026672,35.11073432026672,0,0,0,0,0,0,0,1,1,0,9.079395850867435,0,0,0,34.42,55.98,4,1,0,0,11,5,1,331,0,0,0 +9035,11084,20189,20188,-9,-9,1,1,0,64,1,0,0,0,1,-9,1,1,0,4,7.40347128626591,7.145513350197462,0,1,0,-9,40,-9,0,-45.53994144770756,-9,0,0,64,1,3,1,2,3,2019,1,2,10,0,36,0,15,1,0,1,0,6.72443390159388,6.72443390159388,0,0,0,0,0,0,0,1,1,0,7.292293152783675,0,0,0,54.79,55.86,6,1,0,0,11,5,1,331,0,0,0 +9036,11085,20190,-9,20192,20193,1,1,1,29,2,0,0,0,1,-9,2,1,0,4,8.690414788723473,8.639050633346836,0,3,0,0,0,-9,0,-1044.75206542729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,50,15,1,0,-9,1,20.4703366787673,20.4703366787673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,3,0,0,8,5,1,176,0,0,0 +9036,11086,20191,-9,20192,20193,2,1,1,37,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-965.0169118392848,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,59.28,5,3,1,1,8,1,1,1939,0,0,0 +9036,11087,20192,20193,-9,-9,4,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,45,0,-1,0,0,0,0,66,3,3,3,3,2,2019,4,3,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62.37,44.14,7,3,0,0,8,1,1,347,0,0,0 +9036,11087,20193,20192,-9,-9,3,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,0,1,0,0,0,0,65,3,4,3,3,3,2019,4,4,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.04,36.96,7,3,0,0,8,1,1,347,0,0,0 +9037,11088,20194,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-950.8189055904895,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,48.47,7,1,0,0,2,1,0,533,0,0,0 +9038,11089,20195,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,5.147090911532956,5.017726693815877,3,0,0,0,-9,0,-1074.446589382459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,4,9,-9,0,0,0,1,0,0,12.63557201222087,0,0,0,1,1,0,.2724625608838689,5.230943899516748,0,0,27.41,25.55,2,1,0,0,5,2,0,497,0,0,0 +9039,11090,20196,20197,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,57,0,7,0,0,0,0,77,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.157688286024561,0,0,0,43.43,46.08,6,1,0,0,6,1,1,457.5,0,0,0 +9039,11090,20197,20196,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-7,0,0,0,0,84,3,5,3,2,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.422715731871492,0,0,0,51,46,5,1,0,0,6,1,1,457.5,0,0,0 +9040,11091,20198,-9,20199,20200,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1005.48360197795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,0,867.6666666666666,0,0,0 +9040,11091,20199,20200,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,3,8.110220282157536,7.771457154285056,0,2,0,-9,7,0,-3,-4.724321121737836,0,0,1,33,2,4,1,-9,-9,2019,1,1,10,3,40,40,15,1,3,1,0,7.011744273660043,7.011744273660043,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,5,1,0,0,7,5,0,867.6666666666666,0,0,0 +9040,11091,20200,20199,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,4,8.808621053500277,8.59856665953893,0,2,0,-9,7,0,3,39.89266135096831,0,0,0,30,2,3,1,2,2,2019,1,2,6,0,58,58,15,1,0,1,0,10.17411151787505,10.17411151787505,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,1,0,0,7,5,0,867.6666666666666,0,0,0 +9041,11092,20201,20202,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.334895968235738,8.616114030301144,0,1,0,-9,10,0,-5,49.06279939111059,0,0,0,54,2,3,1,2,2,2019,1,1,12,2,40,42,15,1,2,1,0,11.97540694660598,11.97540694660598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.14,37.2,5,1,0,1,11,4,1,537.5,0,0,0 +9041,11092,20202,20201,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.064774486719759,8.060211168199087,0,1,0,-9,10,0,5,139.8396028413103,0,0,0,49,2,3,1,2,-9,2019,1,2,15,3,38,37,15,1,3,1,0,9.369587154858241,9.369587154858241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.27,53.27,5,1,0,0,11,4,1,537.5,0,0,0 +9041,11093,20203,-9,20201,20202,3,1,1,19,2,0,0,0,2,-9,7,2,0,5,6.402699805987884,6.446399162142099,0,3,0,0,0,-9,0,-920.4246924755953,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,11,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,11,2,1,958,0,0,0 +9042,11094,20204,20205,-9,-9,1,1,1,27,1,0,3,0,2,-9,1,1,0,3,7.986747227358017,8.261761947616119,0,2,0,-9,1,-9,1,-85.22002749253708,-9,1,0,26,3,3,3,1,2,2019,2,2,8,0,40,0,15,1,0,3,0,8.250235943167375,8.250235943167375,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.65,6,1,0,0,7,2,0,691.2,0,0,0 +9042,11094,20205,20204,-9,-9,2,1,0,26,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,-1,-74.13692146382007,-9,1,1,27,2,3,1,-9,-9,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.28,58.05,6,1,0,0,7,2,0,691.2,0,0,0 +9042,11094,20206,-9,20205,20204,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1004.776459996649,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,691.2,0,0,0 +9042,11094,20207,-9,20205,20204,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1038.756758939291,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,691.2,0,0,0 +9042,11094,20208,-9,20205,20204,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1004.477394512036,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,691.2,0,0,0 +9043,11095,20209,20210,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,7.099193938878512,7.544024207084722,1,0,-9,9,0,-8,-85.15908009964637,0,0,0,78,3,1,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.334604778728473,7.564841315417204,79.77012591738389,1,51.65,52.38,5,1,0,0,2,2,1,302,0,0,0 +9043,11095,20210,20209,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,9,0,8,-175.4780718216509,0,0,0,70,2,2,3,-9,-9,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,117.3923298003308,0,0,0,0,1,1,0,0,0,0,0,32.38,21.92,6,1,0,0,2,2,1,302,0,0,0 +9044,11096,20211,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,1,1,0,5,9.64021387305274,9.493590711598403,0,3,0,0,0,-9,0,-1011.537582545146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,1,20,50,15,1,1,-9,0,66.37182083149978,66.37182083149978,0,0,0,0,0,0,0,0,0,0,8.842473179240898,0,0,0,62.39,56.71,1,3,0,0,9,5,1,1336,0,0,0 +9045,11097,20212,-9,20213,20214,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.557899806481,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,251,0,0,0 +9045,11097,20213,20214,-9,-9,1,1,0,32,1,1,1,0,1,-9,3,3,0,5,0,0,0,2,0,-9,2,0,-1,32.42898308164226,0,0,1,33,1,3,1,2,2,2019,3,2,13,3,0,55,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,4,3,1,0,8,2,0,251,0,0,0 +9045,11097,20214,20213,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,3,6.869961510998067,6.921959960793543,0,2,0,-9,2,0,1,162.505344548849,0,0,0,32,1,5,3,-9,-9,2019,2,1,10,0,16,23,15,1,0,3,0,9.880827590109357,9.880827590109357,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,40.56,5,3,0,0,8,2,0,251,0,0,0 +9046,11098,20215,20216,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,23,0,0,0,0,50,2,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78760904699363,1,54,51,4,1,0,0,4,1,0,475,0,0,0 +9046,11098,20216,20215,-9,-9,2,1,1,50,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,-23,0,0,0,0,73,3,4,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.98,36.02,4,1,0,0,4,1,0,475,0,0,0 +9047,11099,20217,20218,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,51,0,-3,-118.6882544999772,0,0,0,69,3,1,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.398939481458449,0,116.102675156502,1,44.23,47.17,6,1,0,0,7,2,1,315,0,0,0 +9047,11099,20218,20217,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,6.662536615438339,6.778789062487113,1,0,-9,51,0,3,20.23575748601651,0,0,0,66,3,3,3,3,2,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,1.693875068642164,123.5253795306538,0,24.51773846541208,0,46.55971422560967,1,1,0,0,6.654774071400748,0,0,20.83,24.53,4,1,0,0,7,2,1,315,0,0,0 +9048,11100,20219,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,5.563593309226761,5.643661084492651,3,0,0,0,-9,0,-1004.425466473973,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.784445662668376,.5021220738737364,3,40.5,42.22,5,1,0,1,7,2,0,4303,0,0,0 +9049,11101,20220,-9,20221,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1071.518318493816,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,5,1,0,226,0,0,0 +9049,11101,20221,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-943.4797483899149,1,0,1,-9,-9,-9,-9,3,2,2019,-9,0,19,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,46.02,4,1,0,1,5,1,0,226,0,0,0 +9050,11102,20222,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,3,9.21617383451426,8.856485877158104,6.430128245702961,4,0,0,0,-9,0,-1045.412878157096,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,55,40,15,1,0,-9,0,17.17149324981564,17.17149324981564,0,0,0,0,0,0,0,1,1,0,6.948621529198127,0,0,0,32.08,58.42,5,1,0,0,12,5,1,821.5,0,0,0 +9050,11102,20223,-9,20222,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1083.377475037368,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,5,1,821.5,0,0,0 +9051,11103,20224,20225,-9,-9,2,1,0,51,1,0,0,0,2,-9,1,1,0,3,7.43769428010451,7.589754209965363,0,1,0,-9,33,0,-1,-49.18670386755938,0,0,0,52,2,3,1,2,2,2019,1,1,11,0,24,25,15,1,0,1,0,8.944663364315769,8.944663364315769,0,0,0,0,0,0,0,0,0,0,0,0,8.668083800887349,3,49.29,54.59,5,1,0,0,9,5,1,1728,0,0,0 +9051,11103,20225,20224,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.378017858755586,8.486336442238184,0,1,0,-9,33,0,1,92.74185909989062,0,0,0,51,2,3,1,-9,2,2019,1,2,11,0,41,43,15,1,0,1,0,16.92229834213743,16.92229834213743,0,0,0,0,0,0,0,0,0,0,2.231915396946603,0,0,0,54.37,54.8,5,1,0,0,9,5,1,1728,0,0,0 +9051,11104,20226,-9,20224,20225,3,1,1,23,2,0,0,0,2,-9,11,3,0,4,7.635632147818371,7.732946906892983,0,3,0,0,0,-9,0,-1039.692751737826,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,8,39,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.96,56.51,5,1,0,0,9,3,1,800,0,0,0 +9052,11105,20227,20228,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,6.405036582936277,6.049241382650902,1,0,-9,9,0,1,-92.98051640457676,0,0,0,78,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.104028457583585,0,0,50.09,52.47,6,4,0,0,2,2,1,993.5,0,0,0 +9052,11105,20228,20227,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,6.813845431711871,6.74743894589296,1,0,-9,9,0,-1,-38.85286955627893,0,0,0,79,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.922163083564252,0,0,57.16,56.15,7,1,0,0,2,2,1,993.5,0,0,0 +9053,11106,20229,20232,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.757709116921029,8.68836007970671,0,2,0,-9,10,0,7,-53.5997386428168,0,0,1,29,2,3,1,2,2,2019,1,2,12,2,60,50,15,1,2,1,0,13.50584836385512,13.50584836385512,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,1,5,1,1042.5,0,0,0 +9053,11106,20230,-9,20229,20232,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.2122292850515,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,5,1,1042.5,0,0,0 +9053,11106,20231,-9,20229,20232,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.968910113285,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,1042.5,0,0,0 +9053,11106,20232,20229,-9,-9,2,1,1,29,1,1,2,0,2,-9,2,1,0,3,8.484510723499003,8.417792375994686,0,2,0,-9,10,0,-7,-9.96974119877925,0,1,0,36,1,4,1,2,-9,2019,1,1,9,1,47,50,15,1,1,1,0,12.09034719618061,12.09034719618061,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,4,1,0,0,1,5,1,1042.5,0,0,0 +9054,11107,20233,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,2,1,0,4,7.951573214517349,8.17039654172234,5.522317610864762,4,0,0,0,-9,0,-960.6279530680478,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,35,15,1,0,-9,0,8.432632466411928,8.432632466411928,0,0,0,0,0,0,0,1,1,0,5.709279874317376,0,0,0,62.49,55.09,7,1,0,0,5,3,1,577.5,0,0,0 +9054,11107,20234,-9,20233,-9,4,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-894.4661228840466,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,5,3,1,577.5,0,0,0 +9054,11108,20235,-9,20233,-9,2,1,1,24,2,0,2,0,2,-9,2,1,0,3,7.693249098553822,7.519081281009425,0,3,0,0,0,-9,0,-952.1946188812321,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,39,25,15,1,1,-9,1,5.645817996745625,5.645817996745625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.93,52.63,5,1,0,0,5,3,1,687,0,0,0 +9054,11109,20236,-9,20233,-9,3,1,1,19,2,0,2,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1009.313827321036,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,44.07,6,1,0,0,5,1,1,214,0,0,0 +9055,11110,20237,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,3,8.575095352004094,8.802141258786662,0,3,0,0,0,-9,0,-1041.106034227665,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,34,35,15,1,5,-9,0,22.69469744971136,22.69469744971136,0,0,0,0,0,0,0,0,0,0,8.577092603216208,0,0,0,52.63,50.07,6,1,0,0,11,5,1,739,0,0,0 +9056,11111,20238,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-943.4865438796328,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.637428323168393,0,0,0,63.55,39.7,4,1,0,0,5,1,1,558,0,0,0 +9057,11112,20239,20240,-9,-9,1,1,0,75,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,55,0,-3,46.03504131539351,0,0,0,78,1,4,1,2,1,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,3.149517360589495,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,7,1,0,0,4,4,1,283.5,0,0,0 +9057,11112,20240,20239,-9,-9,2,1,1,78,1,0,0,0,1,-9,2,1,0,4,7.587040630576817,8.465579737926324,8.043930692653461,1,0,-9,55,0,3,82.11398738643427,0,0,0,75,1,4,3,-9,3,2019,2,1,10,1,22,25,15,1,1,4,0,16.37528757995862,16.37528757995862,0,0,0,0,0,0,0,1,1,0,0,7.763139237230436,0,0,56.78,46.68,6,1,0,0,4,4,1,283.5,0,0,0 +9058,11113,20241,20242,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,3,8.282099734030787,8.410789620120656,0,1,0,-9,8,0,3,-7.131375177387361,0,0,0,35,1,5,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,12.9840969295907,12.9840969295907,0,0,0,0,0,0,0,0,0,0,3.949453735676071,0,0,0,38.76,58.16,3,1,0,0,8,5,1,480.5,0,0,0 +9058,11113,20242,20241,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,5,8.701115694157089,8.156281781916666,0,1,0,-9,8,0,-3,37.19823293017907,0,0,1,38,2,3,1,2,3,2019,1,1,27,11,35,35,15,1,11,1,0,12.38782896115269,12.38782896115269,0,0,0,0,0,0,0,0,0,0,7.734073583706667,0,0,0,27.71,67.3,5,3,0,0,8,5,1,480.5,0,0,0 +9059,11114,20243,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1009.242500748008,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,1,0,0,4,1,0,576,0,0,0 +9060,11115,20244,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,0,7.800717924992448,7.491549222564911,3,0,0,0,-9,0,-992.9530045717445,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,15,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.740133969487276,0,0,58.9,13.94,4,1,0,0,2,3,1,659,0,0,0 +9061,11116,20245,20246,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.3308249188427,6.217817157205792,1,0,-9,8,0,4,33.82624544689391,0,0,0,67,2,4,3,3,3,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8969111158949,0,0,0,46.08,57.2,6,1,0,0,10,3,1,333.5,0,0,0 +9061,11116,20246,20245,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.437963025344263,7.661021688639547,1,0,-9,44,0,-4,-40.71773803135759,0,0,0,71,2,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.772161894777792,7.598825148895689,0,0,44.02,55.16,6,1,0,0,10,3,1,333.5,0,0,0 +9062,11117,20247,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,4,9.221322125907234,9.387454136031465,0,3,0,0,0,-9,0,-1002.769445831564,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,9,48,61,15,1,9,-9,0,27.74995026352327,27.74995026352327,0,0,0,0,0,0,0,0,0,0,6.170048448532163,0,19.35626786607092,3,9.83,68.75,1,1,0,0,8,5,1,1293,0,0,0 +9063,11118,20248,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1074.35131324971,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54,43,6,1,0,0,9,1,1,375,0,0,0 +9064,11119,20249,20250,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,4,8.069672301199505,7.71826757524436,0,1,0,-9,14,0,-4,37.68695562785098,0,0,0,60,2,5,1,-9,-9,2019,1,2,10,1,50,40,15,1,1,1,0,6.414862900917547,6.414862900917547,0,0,0,0,0,0,0,0,0,0,7.73087389896605,0,0,3,57.16,56.15,5,1,0,1,8,4,1,601,0,0,0 +9064,11119,20250,20249,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,5,8.415487014569107,8.239431125091182,0,1,0,-9,9,0,4,-128.6130320366443,0,0,0,56,1,4,1,-9,-9,2019,1,1,5,0,50,60,15,1,0,1,0,6.6044205207574,6.6044205207574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.53,53.47,6,1,0,0,8,4,1,601,0,0,0 +9065,11120,20251,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,4,7.792080620278757,8.004745908219626,0,3,0,0,0,-9,0,-940.5500067451842,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,36,40,15,1,0,-9,0,9.163386369929576,9.163386369929576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,13,4,0,246,0,0,0 +9066,11121,20252,-9,-9,-9,1,1,0,29,3,0,0,0,1,-9,2,1,0,4,7.96050101285102,8.02089016008672,0,3,0,0,0,-9,0,-933.658821412621,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,36,37,15,1,0,-9,0,10.34994113608448,10.34994113608448,0,0,0,0,0,0,0,0,0,0,2.80759400195941,0,0,0,45.77,51.86,6,2,0,0,7,4,1,95,0,0,0 +9067,11122,20253,20254,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,3,7.579082468081638,7.753905444889964,0,1,0,-9,5,0,-3,-78.81332576907306,0,0,1,38,2,3,1,2,2,2019,1,2,7,0,27,26,15,1,0,1,0,8.711542406997358,8.711542406997358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,6,1,0,0,12,4,0,586.5,0,0,0 +9067,11122,20254,20253,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,3,7.934378207012557,7.639405543563827,0,1,0,-9,5,0,3,-36.16271596971288,0,0,0,35,2,3,1,-9,-9,2019,1,1,8,0,43,44,15,1,0,1,0,7.06351856890706,7.06351856890706,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,51.93,6,1,0,0,12,4,0,586.5,0,0,0 +9068,11123,20255,20258,-9,-9,1,1,0,28,1,1,2,0,2,-9,5,1,0,4,7.21189925381237,7.116539028357478,0,2,0,-9,6,0,1,-36.71525843564147,0,1,1,27,2,2,1,3,2,2019,1,3,10,1,20,25,15,1,1,1,0,7.171622580360746,7.171622580360746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,57,6,1,0,0,2,3,1,1241.25,0,0,0 +9068,11123,20256,-9,20255,20258,2,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.86735802823,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,1241.25,0,0,0 +9068,11123,20257,-9,20255,20258,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-990.0396531648767,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,2,3,1,1241.25,0,0,0 +9068,11123,20258,20255,-9,-9,3,1,1,27,1,1,2,0,2,-9,2,1,0,2,8.179923676354839,8.01397808513225,0,2,0,-9,6,0,-1,122.1636045762156,0,1,0,28,2,4,1,-9,-9,2019,1,1,6,0,55,65,15,1,0,1,0,7.356451741014327,7.356451741014327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.85,48.6,6,1,0,0,2,3,1,1241.25,0,0,0 +9069,11124,20259,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,8,3,1,1,0,3.717322794821483,3.876061017784578,3,0,0,0,-9,0,-1048.846138030063,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.047095480039967,3.691955541941279,0,0,21.97,21.3,1,1,0,1,12,1,0,413,0,0,0 +9070,11125,20260,20262,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,3,8.568395562089911,8.424023873450768,0,2,0,-9,28,0,-7,-29.18953354274726,0,0,0,55,1,3,1,2,2,2019,1,2,8,0,41,37,15,1,0,1,0,17.26025680055599,17.26025680055599,0,0,0,0,0,0,0,1,1,0,1.35153132487435,0,0,0,50.87,49.72,6,1,0,0,10,5,1,1073.333333333333,0,0,0 +9070,11125,20261,-9,20260,20262,4,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1137.117599699805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,5,1,1073.333333333333,0,0,0 +9070,11125,20262,20260,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,3,9.227005615922492,9.161984005158157,0,2,0,-9,8,0,7,-167.2014595217481,0,0,0,48,1,3,1,-9,-9,2019,1,1,12,1,45,46,15,1,1,1,0,17.16147319196722,17.16147319196722,0,0,0,0,0,0,0,1,1,0,6.717904945586874,0,0,0,50.22,52.72,5,1,0,0,10,5,1,1073.333333333333,0,0,0 +9070,11126,20263,-9,20260,20262,3,1,1,18,2,0,2,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1055.70899024778,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,10,5,1,446,0,0,0 +9071,11127,20264,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,4,3,0,3,0,7.819191069491365,8.121436601408879,3,0,0,0,-9,0,-1078.689038621342,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.550118689765781,7.769564024504878,9.799480010340872,3,58.91,45.88,6,1,0,0,13,4,1,311,0,0,0 +9072,11128,20265,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,1,1,0,4,.1005299638872933,0,0,3,0,0,0,-9,0,-1099.285999100101,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,65,15,1,0,-9,0,.0005701094449701,.0005701094449701,0,0,0,0,0,0,0,0,0,0,3.040932612432762,0,0,0,49.27,56.95,6,1,0,0,9,1,1,198,0,0,0 +9073,11129,20266,20267,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.269001755243286,8.234864051190575,0,1,0,-9,10,0,-3,-25.04506066843253,0,0,0,62,2,3,3,-9,-9,2019,2,1,7,0,35,37,15,1,0,4,0,11.67660317083113,11.67660317083113,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,10,5,1,509.3333333333333,0,0,0 +9073,11129,20267,20266,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,3,0,7.807888659811489,8.186475691450624,1,0,-9,22,0,3,-147.9036788546699,0,0,0,59,2,3,1,3,3,2019,3,2,6,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.904629189651035,7.90972339090343,0,0,55.96,49.93,6,1,0,0,10,5,1,509.3333333333333,0,0,0 +9073,11129,20268,-9,20266,20267,3,1,0,16,2,0,0,1,2,-9,7,2,0,3,5.572859172485545,5.464464762450489,0,1,0,0,0,-9,0,-1132.68308633809,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,7,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.568509775350611,3,37.23,51.73,4,1,0,0,10,5,1,509.3333333333333,0,0,0 +9074,11130,20269,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,2,0,5.787819072116664,5.909193838245508,3,0,0,0,-9,0,-1003.417239685901,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.731634810471219,5.904860498649552,0,0,64.69,29.96,6,1,0,0,12,2,1,992,0,0,0 +9075,11131,20270,-9,20271,20272,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.7004229466766,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,787,0,0,0 +9075,11131,20271,20272,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,4,8.391582119473521,8.637819254288047,0,2,0,-9,6,0,-2,-.9458079873569792,0,0,1,32,1,4,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,13.09407933343824,13.09407933343824,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,1,787,0,0,0 +9075,11131,20272,20271,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.708639767549599,8.937465762440818,0,2,0,-9,6,0,2,-120.4610049137196,0,0,0,30,1,4,1,-9,-9,2019,1,1,15,4,55,49,15,1,4,1,0,11.17537578128936,11.17537578128936,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.43,58.86,7,1,0,0,4,5,1,787,0,0,0 +9076,11132,20273,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,6.677376215496917,6.707275511062561,3,0,0,0,-9,0,-1053.002736376648,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.763539073292407,0,0,42.84,39.78,5,1,0,0,12,2,0,1318,0,0,0 +9077,11133,20274,-9,20275,-9,3,1,0,17,2,0,0,1,2,0,7,2,0,3,6.154870509006479,5.865832730855302,0,3,0,0,0,-9,0,-1094.417674806661,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,6,10,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27,60.7,3,1,0,0,6,3,0,331.5,0,0,0 +9077,11133,20275,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,3,7.566039459550137,7.825434081302781,0,3,0,0,0,-9,0,-1202.454471551796,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,39,24,15,1,0,-9,0,6.539728233815449,6.539728233815449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.71,53.58,6,1,0,0,6,3,0,331.5,0,0,0 +9077,11134,20276,-9,20275,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,2,8.037399650876225,7.693233674902227,0,3,0,0,0,-9,0,-914.522398538109,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,38,37,15,1,4,-9,1,8.219028778185347,8.219028778185347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.25,55.15,3,1,0,0,6,3,0,1589,0,0,0 +9078,11135,20277,20278,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,3,10.01731238560678,9.708915251991511,0,2,0,-9,28,0,-5,87.14546428912911,0,0,0,56,2,3,1,2,2,2019,1,2,12,0,51,52,15,1,0,1,0,31.32626490694714,31.32626490694714,0,0,0,0,0,0,0,0,0,0,1.342016901270662,0,0,0,49.04,55.86,5,1,0,0,10,5,1,1647,0,0,0 +9078,11135,20278,20277,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,3,7.598903962058554,7.510585815983056,0,2,0,-9,7,0,5,18.61706339244586,0,0,0,51,1,3,1,2,2,2019,1,1,9,0,40,50,15,1,0,1,0,5.130606675055996,5.130606675055996,0,0,0,0,0,0,0,0,0,0,8.740303677512211,0,0,0,56.5,48.33,6,1,0,0,10,5,1,1647,0,0,0 +9078,11136,20279,-9,20277,20278,3,1,0,18,2,0,1,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1069.125875085909,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.04,61.63,3,1,0,0,10,5,1,289,0,0,0 +9079,11137,20280,20281,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,2,9.105723641779486,9.156702928000124,0,2,0,-9,20,0,2,39.75358183685464,0,0,0,47,1,3,1,2,1,2019,1,2,12,0,45,46,15,1,0,1,0,27.43595044433747,27.43595044433747,0,0,0,0,0,0,0,1,1,0,.8183016141746337,0,0,0,38.79,44.82,3,1,0,0,11,5,1,1378.75,0,0,0 +9079,11137,20281,20280,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,3,7.662957012854314,8.002014180613259,0,2,0,-9,22,0,-2,-133.0551606874741,0,0,0,49,1,2,1,2,2,2019,1,1,11,0,24,23,15,1,0,1,0,15.35949568510716,15.35949568510716,0,0,0,0,0,0,0,1,1,0,4.121007718517339,0,0,0,52,54.51,6,1,0,0,11,5,1,1378.75,0,0,0 +9079,11137,20282,-9,20281,20280,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.516581008949,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.147561632003378,0,0,0,46.63,59.72,6,1,0,0,11,5,1,1378.75,0,0,0 +9079,11137,20283,-9,20281,20280,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-806.7742307578753,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,5,1,1378.75,0,0,0 +9080,11138,20284,20285,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.387805126946139,8.136501736192761,0,1,0,-9,36,0,-5,64.79593138875946,0,0,0,63,2,4,1,-9,-9,2019,1,1,13,2,40,50,15,1,2,1,0,12.57660675761684,12.57660675761684,0,0,0,0,0,0,0,0,0,0,2.361196726118172,0,0,0,43.2,59.97,6,1,0,0,2,5,1,392,0,0,0 +9080,11138,20285,20284,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,4,8.085480560462281,8.574600701102657,7.536197204028954,1,0,-9,37,0,5,11.4497156872287,0,0,0,58,2,4,1,3,2,2019,1,2,8,0,39,39,15,1,0,1,0,11.98774080788863,11.98774080788863,0,0,0,0,0,0,0,0,0,0,7.836963334030417,7.738549112405565,0,0,57.16,56.15,6,1,0,0,2,5,1,392,0,0,0 +9080,11139,20286,-9,20284,20285,3,1,1,23,2,0,0,0,2,-9,2,1,0,4,8.650150190619117,8.629956444214097,0,3,0,0,0,-9,0,-922.498338470809,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,39,15,1,0,-9,1,15.84942873868196,15.84942873868196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,2,5,1,554,0,0,0 +9081,11140,20287,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1029.665756365259,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,6,1,0,0,11,1,0,518,0,0,0 +9082,11141,20288,20289,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,3,6.263467216990819,6.210364667517491,0,2,0,-9,18,0,1,-105.2395908691302,0,0,0,45,1,5,1,2,2,2019,1,1,11,1,5,7,15,1,1,1,0,9.280729520904208,9.280729520904208,0,0,0,0,0,0,0,1,1,0,0,0,20.14672164093437,3,41.13,58.45,4,1,0,1,9,5,1,2153,0,0,0 +9082,11141,20289,20288,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,5,9.741866009429359,9.637383557273591,0,2,0,-9,18,0,-1,-26.38052023863592,0,0,0,46,1,3,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,48.68103615747781,48.68103615747781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,9,5,1,2153,0,0,0 +9082,11142,20290,-9,20288,20289,3,1,0,21,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-998.2792512371144,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,1,1,1364,0,0,0 +9082,11143,20291,-9,20288,20289,4,1,0,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1077.258040330497,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,5,1,1710,0,0,0 +9083,11144,20292,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1067.834569019779,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,32,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.13,39.38,2,1,0,1,1,1,0,1018,0,0,0 +9083,11145,20293,-9,20292,-9,2,1,1,24,2,0,0,0,1,1,2,1,0,5,8.062362796409646,8.006031818844718,0,3,0,0,0,-9,0,-906.6298658833159,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,38,0,15,1,0,-9,1,8.508750123857448,8.508750123857448,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,59.15,3,1,0,0,1,4,0,1018,0,0,0 +9084,11146,20294,-9,-9,-9,1,1,0,18,2,0,0,0,2,-9,2,1,0,4,7.044383910873496,6.759597339692927,0,3,0,0,0,-9,0,-971.3846347657123,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,3,1,20,0,15,1,1,-9,1,5.988000333421557,5.988000333421557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.75,63.75,7,1,0,0,1,2,1,384,0,0,0 +9085,11147,20295,-9,20298,20296,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.011883373742,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,934,0,0,0 +9085,11147,20296,20298,-9,-9,1,1,1,41,1,0,2,0,3,-9,1,1,0,3,8.101721481575808,7.852174836001709,0,2,0,-9,12,0,4,49.90862452933361,0,0,0,37,2,3,3,3,3,2019,2,2,6,0,40,40,15,1,0,3,0,8.245140641633894,8.245140641633894,0,0,0,0,0,0,0,1,1,0,1.930241694715329,0,0,0,59.7,53.75,6,1,0,1,10,3,1,934,0,0,0 +9085,11147,20297,-9,20298,20296,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1146.689991222883,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,934,0,0,0 +9085,11147,20298,20296,-9,-9,2,1,0,37,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,12,0,-4,-22.51471593085445,0,0,1,41,3,3,1,2,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.953000911337617,0,0,0,46.48,53.76,2,1,1,0,10,3,1,934,0,0,0 +9086,11148,20299,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,7.276092236910889,7.684911722520399,3,0,0,0,-9,0,-993.2005421906679,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.520937955496631,7.19702185086931,0,0,57.16,56.15,7,1,0,0,7,3,1,524,0,0,0 +9087,11149,20300,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,1,1,0,2,7.610374573133626,7.534838488620836,0,1,0,-9,6,0,8,-3.389635852899368,0,0,0,-9,-9,-9,-9,3,-9,2019,1,2,21,7,56,96,15,1,7,-9,0,3.941506785331072,3.941506785331072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.56,54.64,3,1,0,0,5,2,0,123,0,0,0 +9087,11150,20301,-9,-9,-9,2,1,1,46,2,0,0,0,3,-9,1,1,0,3,5.161539623066013,4.997479880382086,0,1,0,-9,6,0,-8,123.8016539364759,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,14,3,0,96,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.674381355435653,3,62.28,45.64,2,5,0,0,5,2,0,263,0,0,0 +9088,11151,20302,-9,20303,-9,2,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-968.9163839039492,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,3,0,0,6,2,0,552.75,0,0,0 +9088,11151,20303,-9,-9,-9,1,1,0,37,2,0,3,0,1,-9,2,1,0,5,7.723590788310108,7.577930011666456,0,4,0,0,0,-9,0,-868.8074201056263,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,1,0,30,24,15,1,0,-9,0,6.533797209415701,6.533797209415701,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.38,61.66,7,3,0,0,6,2,0,552.75,0,0,0 +9088,11151,20304,-9,20303,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-960.1782698058641,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,2,0,552.75,0,0,0 +9088,11151,20305,-9,20303,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1055.76619033918,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,2,0,552.75,0,0,0 +9089,11152,20306,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,5,8.619657547591302,8.836987947448002,0,3,0,0,0,-9,0,-992.5552317418172,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,49,15,1,0,-9,0,13.2576039124192,13.2576039124192,0,0,0,0,0,0,0,0,0,0,4.010373699275046,0,0,0,52.3,57.2,6,1,0,0,2,5,1,3937,0,0,0 +9090,11153,20307,20308,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-3,0,0,0,0,79,2,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.3,50.78,5,1,0,0,12,1,1,374.5,0,0,0 +9090,11153,20308,20307,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,55,0,3,0,0,0,0,76,1,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,43.78,6,1,0,0,12,1,1,374.5,0,0,0 +9091,11154,20309,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,3,0,7.601912827146792,8.192770786508365,3,0,0,0,-9,0,-1227.304329578917,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.381859170718351,7.721441851495642,0,0,45.92,53.14,6,1,0,0,6,3,1,68,0,0,0 +9092,11155,20310,-9,-9,-9,1,1,0,55,2,0,2,0,2,-9,2,1,0,3,7.126485028690291,7.33213702604565,0,4,0,0,0,-9,0,-1026.024105837377,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,16,0,15,1,1,-9,0,8.127109684956194,8.127109684956194,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,6,4,0,0,8,2,0,334,0,0,0 +9093,11156,20311,20312,-9,-9,1,1,0,53,1,0,0,0,2,-9,4,3,0,4,0,7.845578813948171,7.987082992446831,1,0,-9,30,0,1,-39.93489132735919,0,0,0,52,2,4,1,3,3,2019,3,2,8,0,0,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.440763530451001,8.180326439797083,0,0,55.79,52.62,7,1,0,0,4,5,1,617,0,0,0 +9093,11156,20312,20311,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.76298685218169,9.499000916855371,8.138298101271696,1,0,-9,30,0,-1,89.07164960548748,0,0,0,53,2,4,3,2,2,2019,2,1,6,0,16,0,15,1,0,4,0,47.67579313382758,47.67579313382758,0,0,0,0,0,0,0,0,0,0,4.69616188995377,8.317290057596397,0,0,54.79,55.86,6,1,0,0,4,5,1,617,0,0,0 +9094,11157,20313,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,3.908297435825033,3.517768796665315,3,0,0,0,-9,0,-850.6394037746679,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.538895923732744,3.995598694233222,0,0,48.18,23.82,6,1,0,0,5,1,1,2199,0,0,0 +9095,11158,20314,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,3,8.406010720374738,8.264079631618177,0,3,0,0,0,-9,0,-1009.212186142236,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,37,38,15,1,0,-9,0,12.36574627951541,12.36574627951541,0,0,0,0,0,0,0,1,1,0,2.831006781329874,0,0,0,52,54.51,6,1,0,0,9,4,1,1242,0,0,0 +9095,11159,20315,-9,20314,-9,2,1,1,30,2,0,0,0,2,-9,1,1,0,4,7.82987153223713,7.465664219942377,0,3,0,0,0,-9,0,-1093.542691275222,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,45,0,15,1,1,-9,1,4.878968664938073,4.878968664938073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,9,3,1,3844,0,0,0 +9095,11160,20316,-9,20314,-9,3,1,1,23,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1065.158380442233,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,4,1,1,0,9,1,1,1849,0,0,0 +9096,11161,20317,20318,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,6.915127286489353,6.764074687956712,1,0,-9,46,0,1,136.2762283020276,0,0,0,69,1,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.044522164212079,6.940803453790515,0,0,66.2,41.05,7,1,0,0,9,3,1,948.5,0,0,0 +9096,11161,20318,20317,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.378088121994693,7.207515329163702,1,0,-9,46,0,-1,-21.10040537319225,0,0,0,70,1,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.00051828700076,7.471907082995979,0,0,54.37,54.8,6,1,0,0,9,3,1,948.5,0,0,0 +9097,11162,20319,20322,-9,-9,1,1,0,25,1,1,2,0,2,-9,5,1,0,4,6.971059539679278,7.221424383528175,0,2,0,-9,2,0,-2,40.24167522659064,0,1,1,27,2,4,1,2,2,2019,1,2,19,7,17,17,15,1,7,1,0,8.326902048612334,8.326902048612334,0,0,0,0,0,0,0,1,1,0,0,0,0,3,36.45,57.39,6,1,0,0,12,3,0,934,0,0,0 +9097,11162,20320,-9,20319,20322,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1132.645512171277,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,0,934,0,0,0 +9097,11162,20321,-9,20319,20322,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-972.7414780335696,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,934,0,0,0 +9097,11162,20322,20319,-9,-9,2,1,1,27,1,1,2,0,2,-9,2,1,0,4,7.905640470281919,7.695646064545223,0,2,0,-9,2,0,2,-20.66046490999052,0,1,0,25,2,4,1,-9,-9,2019,1,1,14,2,43,39,15,1,2,1,0,8.303321114229165,8.303321114229165,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.16,61.92,4,1,0,0,12,3,0,934,0,0,0 +9098,11163,20323,-9,-9,-9,1,1,1,92,3,0,0,0,1,-9,4,3,0,3,0,6.18133749720773,5.939394695198017,3,0,0,0,-9,0,-940.5975378404795,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,1,2.417554774096704,0,0,0,0,39.83911680969067,1,1,0,5.095463555612774,6.092581366033698,0,0,60.2,37.12,5,1,0,0,2,2,1,104,0,0,0 +9099,11164,20324,-9,20325,20326,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.098120910957,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,607,0,0,0 +9099,11164,20325,20326,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,5,7.459972025912827,7.650152752016638,0,2,0,-9,32,0,-7,-71.22829908024973,0,0,0,58,3,5,1,2,2,2019,1,1,11,2,21,25,15,1,2,1,0,10.07321269964742,10.07321269964742,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,45.95,5,1,0,0,10,3,1,607,0,0,0 +9099,11164,20326,20325,-9,-9,1,1,1,58,1,0,2,0,3,-9,1,1,0,5,7.356509838323317,7.533106204115087,0,2,0,-9,32,0,7,-91.41311849751457,0,0,0,51,2,5,1,1,1,2019,1,2,11,0,50,60,15,1,0,1,0,4.29408667430164,4.29408667430164,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,10,3,1,607,0,0,0 +9099,11165,20327,-9,20325,20326,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-874.4303545003095,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.14,64.63,3,1,0,0,10,3,1,464,0,0,0 +9100,11166,20328,20329,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,8.054130302458985,7.831264364221266,1,0,-9,32,0,5,6.102563910559942,0,0,0,74,2,2,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.079390391341233,7.820598529525227,0,0,54.75,49.13,6,1,0,0,10,3,1,646.5,0,0,0 +9100,11166,20329,20328,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,32,0,-5,46.45243394907344,0,0,0,79,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.551819363020806,0,0,1,35.62,52.94,6,1,0,0,10,3,1,646.5,0,0,0 +9101,11167,20330,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,6.472400336420336,6.678015325977436,3,0,0,0,-9,0,-941.0214508230547,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.419590064075611,0,0,68.28,25.55,7,1,0,0,12,2,0,588,0,0,0 +9102,11168,20331,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,2,0,6.978513249921089,7.261535910336345,3,0,0,0,-9,0,-1014.53993864749,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.807117382300488,0,0,58.43,24.99,6,1,0,1,8,2,0,596,0,0,0 +9103,11169,20332,20333,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,2,-69.82445792155772,0,0,0,78,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.93,48.97,6,1,0,0,12,2,1,376,0,0,0 +9103,11169,20333,20332,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,7.746675282449782,7.442421362791453,1,0,-9,7,0,-2,38.80360976133839,0,0,0,80,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.394993425510147,0,0,61.43,43.34,6,1,0,0,12,2,1,376,0,0,0 +9104,11170,20334,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-977.4745983135921,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,39,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7738734831914986,3,54.2,57.49,6,1,1,0,8,1,1,1212,0,0,0 +9105,11171,20335,-9,20338,20336,4,1,1,17,2,0,0,1,3,-9,7,2,0,4,0,0,0,1,0,-9,0,-9,0,-1135.747002517619,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,5,0,0,8,2,0,876,0,0,0 +9105,11171,20336,20338,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,5.917325486393781,5.856667865630746,0,1,0,-9,38,0,6,29.84852293666577,0,0,0,55,2,3,3,3,2,2019,2,1,8,0,40,30,15,1,0,3,0,.9370713205434322,.9370713205434322,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,6,4,0,0,8,2,0,876,0,0,0 +9105,11171,20337,-9,20338,20336,3,1,1,17,2,0,0,1,3,0,7,2,0,4,0,0,0,1,0,0,0,-9,0,-1022.115035544584,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,2,0,0,8,2,0,876,0,0,0 +9105,11171,20338,20336,-9,-9,1,1,0,55,1,0,0,0,2,-9,97,3,0,3,7.224404193750424,6.940739920963022,0,1,0,-9,38,0,-6,41.55046249768327,0,0,0,61,2,4,1,3,2,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.71,45.72,6,4,0,0,8,2,0,876,0,0,0 +9106,11172,20339,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,8.301372412919452,8.031416977925444,3,0,-9,0,1,0,-980.7015039045748,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.330312278146726,8.100969014848435,11.45017863898394,3,57.63,45.09,6,1,0,0,5,3,1,264,0,0,0 +9107,11173,20340,20341,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,8.274902138136921,7.924388998363188,1,0,-9,34,0,2,8.945524934202997,0,0,0,72,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.952883884657384,8.233446682837759,0,0,58.32,50.22,6,1,0,0,10,3,1,459,0,0,0 +9107,11173,20341,20340,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,6.019128129589882,6.005994126521621,1,0,-9,52,0,-2,53.54660279697902,0,0,0,74,2,3,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.075387335770707,5.896878010078011,0,0,59.53,56.44,6,1,0,0,10,3,1,459,0,0,0 +9108,11174,20342,20343,-9,-9,2,1,1,54,1,0,2,0,1,-9,2,1,0,3,9.053915871761719,9.083574983234818,0,2,0,-9,29,0,5,119.8919625640385,0,0,0,49,1,5,1,2,2,2019,1,1,11,3,40,40,15,1,3,1,0,28.11926894421099,28.11926894421099,0,0,0,0,0,0,0,1,1,0,3.665643428264094,0,0,0,46.08,57.2,6,1,0,0,6,5,1,1376.333333333333,0,0,0 +9108,11174,20343,20342,-9,-9,1,1,0,49,1,0,2,0,1,-9,2,1,0,5,7.622390093463117,7.837182816815896,0,2,0,-9,29,0,-5,-40.61451238140894,0,0,0,54,1,3,1,2,2,2019,1,2,7,0,24,24,15,1,0,1,0,11.37298645664797,11.37298645664797,0,0,0,0,0,0,0,1,1,0,6.94741833740999,0,15.61597975414891,3,57.06,57.76,7,1,0,0,6,5,1,1376.333333333333,0,0,0 +9108,11174,20344,-9,20343,20342,5,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-895.4434103779635,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,5,1,1376.333333333333,0,0,0 +9108,11175,20345,-9,20343,20342,3,1,1,20,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1009.160159501447,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,6,1,0,0,6,1,1,452,0,0,0 +9108,11176,20346,-9,20343,20342,4,1,0,18,2,0,2,1,2,0,7,2,0,4,6.559990353979035,6.921330033108467,0,3,0,0,0,-9,0,-998.86177967357,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,1,20,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.7054934024519051,0,0,0,52.82,53.97,6,1,0,0,6,5,1,248,0,0,0 +9109,11177,20347,20348,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,3,8.430261619358152,8.769883772375636,0,2,0,-9,7,0,4,-113.584408994214,0,0,0,47,3,4,1,-9,2,2019,1,1,10,1,40,40,15,1,1,1,0,20.7487487992756,20.7487487992756,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,1,4,1,457.5,0,0,0 +9109,11177,20348,20347,-9,-9,1,1,0,47,1,0,2,0,3,-9,2,1,0,4,6.965258342577913,7.098423086318973,0,2,0,-9,7,0,-4,62.52179225690848,0,0,0,51,2,3,1,2,-9,2019,1,2,10,0,15,15,15,1,0,1,0,10.29698208760642,10.29698208760642,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,6,1,0,0,1,4,1,457.5,0,0,0 +9109,11177,20349,-9,20348,20347,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.154111709393,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,4,1,457.5,0,0,0 +9109,11177,20350,-9,20348,20347,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.5573407178483,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,4,1,457.5,0,0,0 +9110,11178,20351,20352,-9,-9,1,1,1,53,1,0,0,0,1,-9,1,1,0,4,8.697558692332255,8.561063844775516,0,1,0,-9,22,0,0,-3.338964524392189,0,0,0,53,1,3,1,2,2,2019,1,2,14,6,50,47,15,1,6,1,0,16.34498990323901,16.34498990323901,0,0,0,0,0,0,0,0,0,0,7.985895828648254,0,0,0,48.81,59.91,6,1,0,0,7,5,1,310.5,0,0,0 +9110,11178,20352,20351,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,7.080644534280874,6.77449430384604,0,1,0,-9,22,0,0,-23.21917184073265,0,0,0,53,1,4,1,2,2,2019,1,1,12,0,17,16,15,1,0,1,0,6.906476474109659,6.906476474109659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,44.28,6,1,0,0,7,5,1,310.5,0,0,0 +9110,11179,20353,-9,20352,20351,3,1,1,19,2,0,0,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1008.994928412331,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.153690085931334,0,0,0,46.28,62.6,6,1,0,0,7,1,1,467,0,0,0 +9111,11180,20354,20355,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,9.785773925521427,9.516534960347705,0,1,0,-9,8,0,4,-75.19607431800769,0,0,0,50,1,1,3,1,2,2019,2,2,11,3,50,45,15,1,3,3,0,42.87629517674712,42.87629517674712,0,0,0,0,0,0,0,1,1,0,3.701150823037519,0,16.95651830121384,1,46.44,59.62,5,1,0,0,8,5,1,1386.5,0,0,0 +9111,11180,20355,20354,-9,-9,2,1,0,50,1,0,0,0,1,-9,8,3,1,1,5.384603400405608,5.725550734071613,0,1,0,-9,8,0,-4,-10.96799929049432,0,0,0,54,1,4,1,1,1,2019,3,1,17,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.471221118693909,0,0,0,51.09,9.4,5,1,0,0,8,5,1,1386.5,0,0,0 +9112,11181,20356,20357,-9,-9,1,1,1,44,1,0,0,0,1,-9,2,1,0,4,8.919804325339335,8.758741352003552,0,1,0,-9,6,0,-6,-116.2464146994236,0,0,0,50,1,4,1,2,3,2019,1,2,12,1,50,50,15,1,1,1,0,14.75860286273312,14.75860286273312,0,0,0,0,0,0,0,0,0,0,2.363244365893619,0,0,0,46.44,59.62,6,1,0,0,9,5,1,518.5,0,0,0 +9112,11181,20357,20356,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,9.553432942604429,9.795937748220499,0,1,0,-9,6,0,6,31.69502431258535,0,0,0,44,1,4,1,-9,-9,2019,1,1,10,0,40,35,15,1,0,1,0,45.73941561954217,45.73941561954217,0,0,0,0,0,0,0,0,0,0,3.068899361130985,0,0,0,54.2,57.49,2,1,0,0,9,5,1,518.5,0,0,0 +9113,11182,20358,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,4,0,8.154618780717636,8.180615616785277,3,0,0,0,-9,0,-1026.774624265815,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,1,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.47170413235787,8.273215529615518,0,0,60.87,42.1,6,1,0,0,4,4,1,757,0,0,0 +9114,11183,20359,20360,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,7.320414088448925,7.310221728235855,1,0,-9,10,0,1,29.93263211137414,0,0,0,70,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.877516400671692,7.146406103648468,0,0,57.73,30.59,6,1,0,0,7,3,1,167.5,0,0,0 +9114,11183,20360,20359,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,7.699040005885855,7.464681835586076,1,0,-9,10,0,-1,-3.250183541650243,0,0,0,71,2,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.190337048188997,7.155502201239575,0,0,54.46,49.13,6,1,0,0,7,3,1,167.5,0,0,0 +9115,11184,20361,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,4,8.732699865053277,8.749240267942056,0,3,0,-9,0,-9,0,-1053.594470395302,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,2,45,0,15,1,2,-9,0,13.65451669752434,13.65451669752434,0,0,0,0,0,0,0,1,1,0,0,0,2.50476881750997,3,43.92,59.79,5,1,0,0,12,5,0,351,0,0,0 +9116,11185,20362,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,7.921678101427293,7.59207465857242,0,3,0,0,0,-9,0,-1120.624346713478,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,48,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.84,16.82,2,1,0,0,12,4,0,293,0,0,0 +9116,11186,20363,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,7,2,0,4,6.860123001876171,6.659170454475055,0,3,0,0,0,-9,0,-1052.028779176516,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,20,16,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.17,54.5,6,1,0,0,12,2,0,259,0,0,0 +9117,11187,20364,-9,20367,20366,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.590399952007,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,2,4,1,503.75,0,0,0 +9117,11187,20365,-9,20367,20366,3,1,0,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1103.955114315383,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,15,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,37.05,7,2,0,0,2,4,1,503.75,0,0,0 +9117,11187,20366,20367,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,3,8.109408176786395,8.577617495817957,0,2,0,-9,26,0,1,-19.92879375253822,0,0,0,50,1,5,1,2,2,2019,1,2,15,4,46,51,15,1,4,1,0,9.618799073789443,9.618799073789443,0,0,0,0,0,0,0,1,1,0,5.806096754011728,0,0,0,42.81,54.48,6,1,0,0,2,4,1,503.75,0,0,0 +9117,11187,20367,20366,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,5,8.671828481254495,8.816580093063148,0,2,0,-9,26,0,-1,86.77945746379109,0,0,0,51,2,3,1,2,-9,2019,1,1,9,0,55,57,15,1,0,1,0,11.67788440531835,11.67788440531835,0,0,0,0,0,0,0,1,1,0,2.480868600174873,0,0,0,51.73,58.82,5,2,0,0,2,4,1,503.75,0,0,0 +9118,11188,20368,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,5,7.0082241701896,8.006880677540853,7.807282638045756,3,0,0,0,-9,0,-1033.971304908292,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.46023745255768,7.868662811945842,1.820348614562375,3,56.91,52.36,6,1,0,0,13,4,1,245,0,0,0 +9119,11189,20369,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,1,1,0,4,7.739066591858101,7.586950609751717,0,3,0,0,0,-9,0,-1024.423600842238,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,50,50,15,1,12,-9,0,4.614700628849487,4.614700628849487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,64.75,1,1,0,1,7,3,1,512,0,0,0 +9120,11190,20370,20372,-9,-9,2,1,0,39,1,1,4,0,1,1,5,1,0,4,7.933067896286591,7.884514437190525,6.690296129651655,2,0,-9,3,0,-3,-68.58263644432752,-9,0,1,42,2,3,1,-9,-9,2019,1,1,16,4,37,0,15,1,4,1,0,8.038008270738562,8.038008270738562,0,0,0,0,0,0,0,1,1,0,6.129327554451618,0,0,0,43.54,59.6,4,1,0,0,9,3,0,373.6666666666667,0,0,0 +9120,11190,20371,-9,20370,-9,4,1,0,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.1604503265628,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,373.6666666666667,0,0,0 +9120,11190,20372,20370,-9,-9,1,1,1,42,1,1,4,0,2,-9,2,1,0,3,8.235676628334982,8.154029766785737,0,2,0,-9,3,0,3,113.3132122222756,0,0,0,39,1,4,1,2,2,2019,1,2,13,2,28,20,15,1,2,1,0,12.49654351257276,12.49654351257276,0,0,0,0,0,0,0,1,1,0,0,0,4.205838729546471,3,45.56,45.03,6,1,0,0,9,3,0,373.6666666666667,0,0,0 +9120,11190,20373,-9,20370,20372,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1109.050803665893,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,3,0,373.6666666666667,0,0,0 +9120,11190,20374,-9,20370,-9,3,1,0,11,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1160.931810279406,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,373.6666666666667,0,0,0 +9120,11190,20375,-9,20370,-9,5,1,0,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-856.7621751116008,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,373.6666666666667,0,0,0 +9121,11191,20376,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-881.4768034394961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.259138885519286,0,0,0,58.48,36.66,6,1,0,0,8,1,1,1234,0,0,0 +9122,11192,20377,20379,-9,-9,2,1,0,44,1,0,1,0,2,-9,1,1,0,4,6.891038748933658,7.577883135656312,6.655914150363871,2,0,-9,6,0,6,86.44033910259442,0,0,1,38,2,5,1,3,3,2019,1,1,12,0,30,30,15,1,0,1,0,3.47824995582614,3.47824995582614,0,0,0,0,0,0,0,0,0,0,6.589431215309673,0,7.134751612559874,3,46.42,59.64,2,1,0,0,11,5,1,802.3333333333334,0,0,0 +9122,11192,20378,-9,20377,20379,3,1,1,17,2,0,1,1,2,-9,7,2,0,5,5.837174653817068,5.69089916339068,0,2,0,0,0,-9,0,-1033.031778989817,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.71813267922058,3,52.21,59.91,7,1,0,0,11,5,1,802.3333333333334,0,0,0 +9122,11192,20379,20377,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,5,9.575644981889232,9.354295927543729,0,2,0,-9,6,0,-6,-81.1921459733462,0,0,0,44,2,4,1,1,1,2019,1,2,10,0,60,0,15,1,0,1,0,25.6465499132907,25.6465499132907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,54.25,6,1,0,0,11,5,1,802.3333333333334,0,0,0 +9123,11193,20380,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,2,1,0,3,8.788078936152464,9.038164701898584,4.402905278809138,3,0,-9,0,-9,0,-885.5453293112305,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,37,0,15,1,0,-9,0,20.66505554164723,20.66505554164723,0,0,0,0,0,0,0,0,0,0,4.700519907617837,0,12.79302980831973,3,32.34,56.69,5,1,0,0,8,5,1,245,0,0,0 +9124,11194,20381,20382,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,33,0,-2,-120.0619575111447,0,0,0,68,2,4,3,2,2,2019,4,2,11,2,0,2,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,2,1,0,0,9,2,1,387,0,0,0 +9124,11194,20382,20381,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,5.488121194301263,5.189097093898412,0,1,0,-9,33,0,2,9.946201838038533,0,0,0,66,1,4,3,2,2,2019,4,1,14,5,0,3,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.142808218919755,0,11.10230195144039,3,29.61,61.74,4,1,0,0,9,2,1,387,0,0,0 +9125,11195,20383,20384,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.420785962481832,8.228554954166656,0,1,0,-9,28,0,2,-94.06581678344207,0,0,0,51,1,3,1,3,3,2019,1,1,12,0,37,37,15,1,0,1,0,12.16235610920811,12.16235610920811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,6,1,0,0,12,5,1,708.5,0,0,0 +9125,11195,20384,20383,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,3,8.616518882729897,8.575872838115457,0,1,0,-9,28,0,-2,-24.52786715068765,0,0,0,53,2,3,1,3,-9,2019,1,2,8,0,48,48,15,1,0,1,0,12.79275763593233,12.79275763593233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,58.84,6,1,0,0,12,5,1,708.5,0,0,0 +9125,11196,20385,-9,20383,20384,4,1,1,18,2,0,0,0,2,1,2,1,0,4,7.321151588608729,6.895764636452848,0,3,0,0,0,-9,0,-1081.491797149242,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,42,0,15,1,0,-9,1,2.793823123481387,2.793823123481387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.37,35.92,7,1,0,0,12,2,1,280,0,0,0 +9126,11197,20386,20387,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.781220897235471,8.417889621428943,0,1,0,-9,7,0,-15,-49.90667510239012,0,0,0,63,1,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,12.45671802624878,12.45671802624878,0,0,0,0,0,0,0,1,1,0,6.901630219365207,0,0,0,52,55,6,1,0,0,7,4,0,351,0,0,0 +9126,11197,20387,20386,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,4,7.151972821493992,7.398682314916655,1.818374520237824,1,0,-9,7,0,15,-29.54516937875182,0,0,0,48,2,4,1,2,2,2019,1,2,7,0,30,25,15,1,0,1,0,6.057550318421717,6.057550318421717,0,0,0,0,0,0,0,1,1,0,6.217804234589011,1.679982927921384,0,0,58.9,45.74,6,1,0,0,7,4,0,351,0,0,0 +9127,11198,20388,20389,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,3,0,0,0,1,0,-9,38,0,6,-96.9878303402506,0,0,0,51,2,3,1,3,2,2019,1,2,9,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.212713519401123,3,47.71,53.93,6,3,0,0,2,2,1,488.5,0,0,0 +9127,11198,20389,20388,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.434249217043302,7.355200383850704,0,1,0,-9,38,0,-6,-36.1088741468136,0,0,0,57,1,3,1,3,2,2019,1,1,7,0,19,17,15,1,0,1,0,8.613531461144717,8.613531461144717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,1,3,0,0,2,2,1,488.5,0,0,0 +9127,11199,20390,-9,20389,20388,3,1,1,31,2,0,0,0,2,-9,1,1,0,4,7.456124588085804,8.190986596448683,0,3,0,0,0,-9,0,-958.053637538214,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,30,15,1,0,-9,1,7.967930713178743,7.967930713178743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,4,3,0,1,2,3,1,115,0,0,0 +9127,11200,20391,-9,20389,20388,4,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.524313434603404,7.726555640526076,0,3,0,0,0,-9,0,-1051.969400023802,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,0,15,1,0,-9,1,6.131068972844533,6.131068972844533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.67,49.16,6,3,0,0,2,3,1,377,0,0,0 +9128,11201,20392,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,2,1,0,3,7.427118670565929,7.785935764491088,0,3,0,0,0,-9,0,-1105.790417129379,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,5,0,28,24,15,1,0,-9,0,6.872845652115799,6.872845652115799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,3,0,0,5,3,0,826,0,0,0 +9129,11202,20393,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,1,0,7.330320851842842,7.465437837546015,3,0,0,0,-9,0,-860.4810132456035,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.971564019307914,7.869411155936574,0,0,66.63,16.77,5,1,0,0,7,3,1,1270,0,0,0 +9130,11203,20394,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,2,8.239476841758627,8.414962755074734,6.496244720176563,3,0,0,0,-9,0,-1060.683264302122,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,2,0,36,45,15,1,0,-9,0,13.20815717307543,13.20815717307543,0,0,0,0,0,0,0,0,0,0,7.512399773652611,0,0,0,56.76,44.55,6,1,0,0,10,5,1,200,0,0,0 +9131,11204,20395,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,3,3,0,2,0,6.301619938738923,6.226430705600421,3,0,0,0,-9,0,-1070.933561205396,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.182172060477535,0,0,56.5,29.57,5,1,1,0,13,2,0,447,0,0,0 +9132,11205,20396,20397,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,7.414333982863859,7.683342988003997,1,0,-9,37,0,1,-28.28037764361784,0,0,0,60,2,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.665500618331992,7.856880177977944,11.95715249810984,3,51.5,39.74,6,1,0,0,9,4,1,250.5,0,0,0 +9132,11205,20397,20396,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,4,0,7.941420320308285,7.995359458862021,1,0,-9,37,0,-1,-103.1908764314051,0,0,0,61,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.615844976268833,7.817398121658232,0,0,54,53,6,1,0,0,9,4,1,250.5,0,0,0 +9133,11206,20398,20399,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,24,0,-2,51.6821140277689,0,0,0,58,1,5,1,2,2,2019,1,1,6,0,14,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.207554732503153,0,0,0,57.16,56.15,7,1,0,0,9,4,1,329,0,0,0 +9133,11206,20399,20398,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,5,9.123804313001729,8.981640662099604,0,1,0,-9,24,0,2,-28.73978958172808,0,0,0,56,1,4,1,2,3,2019,1,2,6,0,30,30,15,1,0,1,0,25.80294795759874,25.80294795759874,0,0,0,0,0,0,0,0,0,0,7.439242166373684,0,0,0,57.06,57.76,7,1,0,0,9,4,1,329,0,0,0 +9134,11207,20400,-9,-9,-9,1,1,1,90,3,0,0,0,3,-9,4,3,0,3,0,7.572625107382992,7.90125620652581,3,0,0,0,-9,0,-988.3947534967035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.689715069579806,0,0,0,1,1,0,0,7.560034252339455,0,0,51.3,50.72,6,1,0,0,12,3,1,489,0,0,0 +9135,11208,20401,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,2,0,5.537930018548257,5.084709098704232,3,0,0,0,-9,0,-1069.025147791949,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5238199530129,5.281866468009363,0,0,42.33,21.52,4,1,0,0,7,2,1,622,0,0,0 +9136,11209,20402,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,4,8.299177942119575,8.532935033402612,0,3,0,0,0,-9,0,-1091.423972045802,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,23,24,15,1,1,-9,0,14.43979293557652,14.43979293557652,0,0,0,0,0,0,0,1,1,0,2.06437290008904,0,0,0,38.4,60.75,5,1,0,0,8,4,1,126,0,0,0 +9137,11210,20403,20406,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,3,8.31110121257869,8.081706302737015,0,2,0,-9,3,0,3,15.12137743611411,0,0,0,31,2,3,3,2,2,2019,2,2,15,3,45,47,15,1,3,3,0,7.684243487854572,7.684243487854572,0,0,0,0,0,0,0,1,1,0,4.386364871409557,0,6.629588174455869,3,48.17,36.02,4,1,0,0,7,2,0,1651.5,0,0,0 +9137,11210,20404,-9,20406,20403,3,1,1,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1139.145218528404,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,7,2,0,1651.5,0,0,0 +9137,11210,20405,-9,20406,20403,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.2649209508209,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,1651.5,0,0,0 +9137,11210,20406,20403,-9,-9,2,1,0,31,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,3,0,-3,-24.47267583218976,0,0,1,34,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.54,53.32,3,1,0,0,7,2,0,1651.5,0,0,0 +9138,11211,20407,20408,-9,-9,2,1,1,46,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,2,-61.45892763406061,-9,0,0,44,1,4,1,-9,-9,2019,3,1,6,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.53086130034697,0,0,0,51.24,58.84,5,1,0,0,9,4,1,1660.5,0,0,0 +9138,11211,20408,20407,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,4,8.629834012569555,8.955016196490249,0,2,0,-9,1,-9,-2,75.3004060310209,-9,0,1,46,1,4,3,2,2,2019,2,2,8,2,45,0,15,1,2,3,0,18.19500884046737,18.19500884046737,0,0,0,0,0,0,0,0,0,0,3.275680099274297,0,0,0,44.02,60.7,6,1,0,0,9,4,1,1660.5,0,0,0 +9138,11211,20409,-9,20408,20407,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-981.9640920403962,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,9,4,1,1660.5,0,0,0 +9138,11211,20410,-9,20408,20407,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1010.97749982347,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,4,1,1660.5,0,0,0 +9139,11212,20411,20412,-9,-9,1,1,0,21,1,0,0,0,2,-9,1,1,0,3,8.24623698701631,8.039599464878073,0,1,0,1,1,-9,-6,.6755571949196253,-9,1,1,27,2,5,1,-9,-9,2019,1,2,12,0,80,0,15,1,0,1,0,4.536814137266657,4.536814137266657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,6,1,0,0,11,5,0,670,0,0,0 +9139,11212,20412,20411,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,5,8.439618098255778,8.398603185301457,0,1,0,-9,1,-9,6,9.87128242677014,-9,1,0,21,2,3,1,-9,-9,2019,1,1,9,1,55,0,15,1,1,1,0,12.09987158384523,12.09987158384523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,42.1,7,1,0,0,11,5,0,670,0,0,0 +9140,11213,20413,20414,-9,-9,2,1,1,36,1,1,2,0,1,-9,1,1,0,5,9.205127757262765,9.223129799042324,5.773179416227028,2,0,-9,8,0,-5,102.397205437774,0,0,0,41,2,2,3,-9,-9,2019,2,1,9,0,40,45,15,1,0,3,0,27.55146042435087,27.55146042435087,0,0,0,0,0,0,0,1,1,0,6.78016516427376,0,0,3,43.44,61.22,6,3,0,0,8,5,1,1082.25,0,0,0 +9140,11213,20414,20413,-9,-9,1,1,0,41,1,1,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,8,0,5,-11.55567912818158,0,0,1,36,1,5,1,2,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.317766119103231,0,6.65178387970024,3,30.37,52.74,2,3,0,0,8,5,1,1082.25,0,0,0 +9140,11213,20415,-9,20414,20413,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.088991250196,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,5,1,1082.25,0,0,0 +9140,11213,20416,-9,20414,20413,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.5785028715297,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,8,5,1,1082.25,0,0,0 +9141,11214,20417,-9,20420,20419,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.5525692314303,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,686.25,0,0,0 +9141,11214,20418,-9,20420,20419,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.178716628053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,5,1,686.25,0,0,0 +9141,11214,20419,20420,-9,-9,2,1,1,53,1,0,2,0,2,-9,1,1,0,4,8.935369066206672,9.127872917180142,0,2,0,-9,26,0,6,-171.0377068113449,0,0,0,47,1,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,24.16445511463421,24.16445511463421,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,5,1,0,0,6,5,1,686.25,0,0,0 +9141,11214,20420,20419,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,3,8.609469791771323,8.443777563288547,0,2,0,-9,27,0,-6,40.98607629677696,0,0,0,53,2,4,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,15.52678215189434,15.52678215189434,0,0,0,0,0,0,0,1,1,0,0,0,1.457867522687483,3,54.48,42.8,6,1,0,0,6,5,1,686.25,0,0,0 +9142,11215,20421,20422,-9,-9,2,1,1,77,1,0,2,0,1,-9,8,3,1,3,0,0,0,2,0,-9,57,0,-1,0,0,0,0,78,3,3,3,2,3,2019,4,1,9,0,0,0,15,3,1,4,0,0,0,1,0,7.972702137829631,16.12152723591527,0,11.77343551195407,0,1,1,0,0,0,0,1,54,46,6,3,0,0,8,1,1,496,0,0,0 +9142,11215,20422,20421,-9,-9,1,1,0,78,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,57,0,1,0,0,0,0,77,1,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.8806924964244,1,47.9,43.96,5,4,0,0,8,1,1,496,0,0,0 +9142,11216,20423,-9,20425,-9,5,1,0,14,2,0,2,1,3,-9,-9,2,0,2,0,0,0,3,0,0,0,-9,0,-941.3227282721917,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,4,0,0,8,5,1,929.3333333333334,0,0,0 +9142,11216,20424,-9,20425,-9,4,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1046.877344108798,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,61.86,4,4,0,0,8,5,1,929.3333333333334,0,0,0 +9142,11216,20425,-9,20422,20421,3,1,0,52,2,0,2,0,1,-9,2,1,0,4,9.329716946763195,9.105156702198672,0,3,0,0,0,-9,0,-1019.109920229376,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,2,40,37,15,1,2,-9,1,26.54419860752659,26.54419860752659,0,0,0,0,0,0,0,1,1,0,0,0,9.808219146736135,3,46.44,59.62,5,2,0,0,8,5,1,929.3333333333334,0,0,0 +9143,11217,20426,20427,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-4,0,0,0,0,77,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.285597217316039,0,0,0,52,47,5,1,0,0,2,1,1,744.5,0,0,0 +9143,11217,20427,20426,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,4,0,0,0,0,73,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.55,43.78,6,1,0,0,2,1,1,744.5,0,0,0 +9144,11218,20428,20429,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,2,7.911946228155754,8.409038475559671,7.262036501129038,1,0,-9,8,0,2,23.76469234993972,0,0,0,51,2,3,1,3,3,2019,1,2,10,2,45,40,15,1,2,1,0,8.733494772868927,8.733494772868927,0,0,0,0,0,0,0,1,1,0,4.604825514807199,7.458514095331922,17.32426105186242,3,51.89,26.83,4,1,0,0,12,5,1,235.5,0,0,0 +9144,11218,20429,20428,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.5276996298059,8.346760862556843,0,1,0,-9,8,0,-2,30.55694208748767,0,0,0,53,2,2,1,2,3,2019,1,1,14,4,35,35,15,1,4,1,0,13.36799347721792,13.36799347721792,0,0,0,0,0,0,0,1,1,0,3.254814016045932,0,0,3,51.64,50.48,6,1,0,0,12,5,1,235.5,0,0,0 +9145,11219,20430,20431,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,37,-9,4,0,-9,0,0,72,2,1,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,3,0,0,8,1,0,834.5,0,0,0 +9145,11219,20431,20430,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,37,-9,-4,0,-9,0,0,76,1,3,3,3,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,30.98658697614369,0,0,0,1,1,0,0,0,120.2811995128074,1,55.43,11.58,6,3,0,1,8,1,0,834.5,0,0,0 +9145,11220,20432,-9,20430,20431,3,1,0,42,2,0,0,0,1,-9,2,1,0,3,7.752104227009244,7.672411445859501,0,3,0,-9,0,-9,0,-935.3666612420648,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,38,0,15,1,1,-9,1,8.907117888446388,8.907117888446388,0,0,0,0,0,0,0,1,1,0,0,0,121.0532639613425,3,45.43,53.5,5,3,0,1,8,3,0,204,0,0,0 +9146,11221,20433,20434,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,5.160318033620981,4.690037475154798,1,0,-9,53,0,-6,-107.2582311801559,0,0,0,78,2,3,3,3,2,2019,4,2,25,12,0,0,15,4,12,4,0,0,0,1,0,6.552948037795838,0,0,0,0,1,1,0,6.902351097760561,4.814112425017641,0,0,36.42,39.34,5,1,0,0,12,2,1,324.5,0,0,0 +9146,11221,20434,20433,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,7.114306972628014,7.285910719718172,1,0,-9,53,0,6,-7.988993213002836,0,0,0,72,2,2,3,2,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.896797457468039,7.219422000694721,0,0,39.09,53.39,6,1,0,0,12,2,1,324.5,0,0,0 +9147,11222,20435,20436,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,4,8.348510156717586,8.399436235354804,0,1,0,-9,33,0,-4,-99.1806851740631,0,0,0,57,1,4,1,2,2,2019,1,1,11,0,37,37,15,1,0,1,0,18.69223582280985,18.69223582280985,0,0,0,0,0,0,0,0,0,0,1.166870156757727,0,0,3,48.19,54.86,6,1,0,0,4,5,1,2271,0,0,0 +9147,11222,20436,20435,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.608460763989191,8.634025403909144,0,1,0,-9,33,0,4,.8547549229104703,0,0,0,53,1,4,1,2,1,2019,1,2,12,0,65,50,15,1,0,1,0,9.205529005660056,9.205529005660056,0,0,0,0,0,0,0,0,0,0,3.09991976945694,0,7.859544698848141,3,60.12,54.8,5,1,0,0,4,5,1,2271,0,0,0 +9148,11223,20437,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,4,7.995135713858082,7.690113925996588,0,3,0,0,0,-9,0,-1121.49270893574,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,42,48,15,1,0,-9,0,6.766080486188968,6.766080486188968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.42,58.04,6,4,0,1,8,3,0,965,0,0,0 +9148,11224,20438,-9,20437,-9,2,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1072.510374123975,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,4,0,0,8,1,0,807,0,0,0 +9149,11225,20439,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,6.118770503882931,5.6814220188974,3,0,0,0,-9,0,-881.7735365666689,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,2.705771484525573,0,0,0,0,51.28257177279356,1,1,0,0,5.865654323642865,0,0,48.63,42.33,6,1,0,0,4,2,1,958,0,0,0 +9150,11226,20440,20441,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,4.996053317652428,4.757030383671141,1,0,-9,52,0,-5,-55.51833759217205,0,0,0,76,2,4,3,3,2,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.241710574187353,4.783570909646168,0,0,58.07,46.29,6,1,0,0,12,2,1,1401.5,0,0,0 +9150,11226,20441,20440,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.256814638562584,6.899134904222803,1,0,-9,52,0,5,-53.45609514735558,0,0,0,71,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.437996399663311,6.965852893891671,0,0,55.79,52.62,7,1,0,0,12,2,1,1401.5,0,0,0 +9151,11227,20442,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,4,7.949611762772498,7.954957448368644,0,3,0,0,0,-9,0,-904.1985358040699,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,38,38,15,1,7,-9,0,7.471852213500812,7.471852213500812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.46,51.26,6,1,0,0,11,4,0,419,0,0,0 +9152,11228,20443,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,1,0,6.750445976858871,6.659562376135608,3,0,0,0,-9,0,-941.3916010631707,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,0,0,15,4,12,-9,0,0,0,1,0,0,0,0,3.130696753238702,0,1,1,0,0,6.709017273296015,0,0,36.25,17.47,2,4,0,1,8,2,0,1130,0,0,0 +9152,11229,20444,-9,-9,-9,2,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,6.359677085372819,6.452846824184583,3,0,0,0,-9,0,-990.808006531622,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,7.253818619161172,4.098931130252152,0,1,1,0,0,6.060585913940032,0,0,40.68,39.82,5,2,0,0,8,2,0,2096,0,0,0 +9153,11230,20445,20446,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,5,8.018925276936326,7.503015261873454,0,1,0,-9,8,0,0,-48.11115002722565,0,0,0,56,1,3,1,2,1,2019,1,1,14,4,37,37,15,1,4,1,0,6.355626591405568,6.355626591405568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.94,58.68,7,1,0,0,12,5,1,666,0,0,0 +9153,11230,20446,20445,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,3,9.49131240800464,9.706849517414115,0,1,0,-9,8,0,0,-7.262791580916158,0,0,0,56,2,5,1,2,2,2019,1,2,11,0,35,40,15,1,0,1,0,54.43900988066235,54.43900988066235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,12,5,1,666,0,0,0 +9154,11231,20447,20448,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.273779772664508,8.217145378948119,0,1,0,-9,6,0,2,121.5510663091726,0,0,1,31,2,4,1,2,2,2019,1,2,11,0,35,35,15,1,0,1,0,15.71394423143323,15.71394423143323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.15,62.02,6,1,0,0,12,5,1,595.5,0,0,0 +9154,11231,20448,20447,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,4,8.094577616989145,8.277914324558733,0,1,0,-9,6,0,-2,-3.778837981049516,0,0,0,33,1,4,1,-9,-9,2019,1,1,9,0,39,39,15,1,0,1,0,12.2354547915453,12.2354547915453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,12,5,1,595.5,0,0,0 +9155,11232,20449,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,2,1,0,5,8.622807482716345,8.76647719646715,0,3,0,0,0,-9,0,-1017.472633157972,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,45,50,15,1,0,-9,0,10.09160501129822,10.09160501129822,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,7,5,1,160,0,0,0 +9156,11233,20450,20451,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.31299677313369,7.675813825220937,1,0,-9,9,0,-1,-17.36202273808087,0,0,0,71,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.544236221172619,0,0,62,37.52,5,1,0,0,12,2,1,232.5,0,0,0 +9156,11233,20451,20450,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,9,0,1,6.26549409653907,0,0,0,70,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,3.805439115467209,4.791772421294779,0,0,0,0,1,1,0,0,0,0,0,44.18,41.6,5,1,0,0,12,2,1,232.5,0,0,0 +9157,11234,20452,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,2,8.154230157859597,8.133686877434107,0,3,0,0,0,-9,0,-1011.200252309628,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,51,47,15,1,1,-9,0,7.838623432426552,7.838623432426552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,33.63,4,1,0,0,6,4,0,590,0,0,0 +9158,11235,20453,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,7.659882686575618,7.230024982320345,3,0,0,0,-9,0,-1159.195841636295,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.043521095028439,7.484277043086705,0,0,63.17,32.94,6,1,0,0,12,3,1,1760,0,0,0 +9159,11236,20454,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,8.043207774497468,8.226709609556597,0,1,0,-9,27,0,1,42.51555462423138,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,10,0,21,20,15,1,0,-9,0,21.11186548888728,21.11186548888728,0,0,0,0,0,0,0,0,0,0,8.346169271764353,0,0,0,45.01,57.46,6,1,0,0,10,4,1,916,0,0,0 +9159,11237,20455,-9,-9,-9,2,1,1,50,2,0,0,0,2,-9,2,1,0,4,6.802204112978834,7.582798036961512,6.560060655930365,1,0,-9,27,0,-1,71.0536851180715,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,13,1,15,28,15,1,1,-9,0,6.003108112870446,6.003108112870446,0,0,0,0,0,0,0,0,0,0,7.141389608393856,0,12.40411715576289,3,51.83,57.2,6,1,0,0,10,4,1,464,0,0,0 +9160,11238,20456,-9,20457,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1121.058785234582,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,2,0,385.6666666666667,0,0,0 +9160,11238,20457,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,2,1,0,3,7.316587416792604,6.864326755230435,0,4,0,0,0,-9,0,-1086.423883555851,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,16,6,15,1,0,-9,0,8.82013358675191,8.82013358675191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,5,2,0,0,6,2,0,385.6666666666667,0,0,0 +9160,11238,20458,-9,20457,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-995.1270093045305,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,6,2,0,385.6666666666667,0,0,0 +9161,11239,20459,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,1,0,6.512548827827135,6.327886772766638,3,0,0,0,-9,0,-1042.607334412318,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.864254161384959,6.322804795435201,0,0,34.15,19.97,3,1,0,0,4,2,1,385,0,0,0 +9162,11240,20460,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,1,9.070313502873686,8.631180677733232,0,3,0,0,0,-9,0,-994.7948871837419,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,38,40,15,1,11,-9,0,27.33149993049874,27.33149993049874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.09,28.51,2,1,0,0,9,5,0,856,0,0,0 +9163,11241,20461,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,4,7.407598861498429,7.489048994480619,5.339731250286187,4,0,0,0,-9,0,-991.2271507457737,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,20,20,15,1,0,-9,0,11.37800401661942,11.37800401661942,0,0,0,0,0,0,0,1,1,0,5.390577361895786,0,17.45729517179441,3,57.16,56.15,5,1,0,0,8,3,0,414.5,0,0,0 +9163,11241,20462,-9,20461,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1136.090832883277,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,8,3,0,414.5,0,0,0 +9164,11242,20463,20464,-9,-9,1,1,0,36,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-3,33.41387893431751,0,0,1,39,2,4,1,-9,-9,2019,3,2,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.674217654099423,0,.44088840549103,3,49.86,55.31,6,1,0,1,8,4,1,843.25,0,0,0 +9164,11242,20464,20463,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.708471559910802,8.649627682368033,0,2,0,-9,8,0,3,4.893492353443675,0,0,0,36,1,4,3,2,-9,2019,2,1,10,0,52,45,15,1,0,3,0,13.28001806833617,13.28001806833617,0,0,0,0,0,0,0,1,1,0,2.780014319379577,0,0,0,41.3,60.77,6,4,0,0,8,4,1,843.25,0,0,0 +9164,11242,20465,-9,20463,20464,5,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1155.394027912605,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,4,0,0,8,4,1,843.25,0,0,0 +9164,11242,20466,-9,20463,20464,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.585361630328,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,8,4,1,843.25,0,0,0 +9164,11243,20467,-9,20463,20464,4,1,1,20,2,0,2,0,2,-9,2,1,0,3,7.416769082642339,7.409318754583821,0,3,0,0,0,-9,0,-1095.389333319998,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,21,40,15,1,0,-9,1,8.495439218568302,8.495439218568302,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,45.94,5,4,0,0,8,3,1,634,0,0,0 +9165,11244,20468,20469,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,4,8.200830461175114,8.467153853190682,5.740879982672105,1,0,-9,9,0,5,-92.98168115510741,0,0,0,56,2,3,1,2,2,2019,1,2,7,0,50,55,15,1,0,1,0,8.798271539522959,8.798271539522959,0,0,0,0,0,0,0,1,1,0,2.276344157200724,6.068905915818132,0,0,63.24,42.39,7,1,0,0,10,5,1,550.5,0,0,0 +9165,11244,20469,20468,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.984967774806169,8.444010474529968,0,1,0,-9,9,0,-5,128.5144586102195,0,0,0,61,2,4,1,-9,-9,2019,1,1,18,6,55,60,15,1,6,1,0,8.974815127736131,8.974815127736131,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.67,52.58,2,1,0,0,10,5,1,550.5,0,0,0 +9166,11245,20470,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,3,8.757246650607213,8.559811817246903,0,3,0,0,0,-9,0,-1043.975564197171,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,43,50,15,1,0,-9,0,14.5533229207381,14.5533229207381,0,0,0,0,0,0,0,1,1,0,0,0,17.07274386632916,3,61.43,43.34,6,1,0,0,12,5,1,1016,0,0,0 +9167,11246,20471,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1013.541640131763,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,11.48864572316191,0,9.47886360365634,0,0,0,1,1,0,3.674351673077274,0,0,0,42.86,18.91,3,1,0,0,10,1,0,931,0,0,0 +9168,11247,20472,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,4,0,5.314544513751088,5.105669640030253,3,0,0,0,-9,0,-967.6238816323589,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.152592091786934,5.059023074924881,0,0,54.2,57.49,6,1,0,0,4,2,1,235,0,0,0 +9169,11248,20473,20474,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,5,0,6.767401966149849,7.000776070838323,1,0,-9,49,0,-1,49.92625664510641,0,0,0,69,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.626954726289338,0,0,48.18,61.8,7,1,0,0,5,2,1,1524,0,0,0 +9169,11248,20474,20473,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,5.733075419653459,5.521422381112725,1,0,-9,49,0,1,148.4715104968019,0,0,0,68,2,5,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.201371367454109,5.756619256600547,0,0,58.32,50.22,6,1,0,0,5,2,1,1524,0,0,0 +9170,11249,20475,20476,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,5,2.889235846565768,5.034083079052173,5.006946964182291,1,0,-9,7,0,-2,-61.06273533783254,0,0,0,68,2,3,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.005483040508755,5.402909093758129,0,0,56.47,59.4,6,1,0,0,9,3,1,1024.5,0,0,0 +9170,11249,20476,20475,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,4.167159588431174,8.104166564468738,7.865107387803024,1,0,-9,7,0,2,-.6299413542804064,0,0,0,66,2,5,3,-9,-9,2019,4,2,28,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.980553686082158,7.378968395743629,0,0,31.93,58.41,6,1,0,0,9,3,1,1024.5,0,0,0 +9171,11250,20477,20478,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,6.267962655511672,6.092774974614988,1,0,-9,9,0,-3,84.21127414630311,0,0,0,78,2,4,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.149799946329507,6.434130402135739,0,0,67.34,37.81,7,1,0,0,7,2,1,778.5,0,0,0 +9171,11250,20478,20477,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,6.980736731348999,7.213762874123938,1,0,-9,9,0,3,-49.04109191876043,0,0,0,75,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.985539527923962,6.72604718139394,0,0,63.09,47.92,7,1,0,0,7,2,1,778.5,0,0,0 +9171,11251,20479,-9,20477,20478,3,1,1,47,2,0,0,0,2,-9,2,1,0,3,7.42675830820749,7.369464311904053,0,3,0,0,0,-9,0,-1018.153521679529,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,15,15,15,1,0,-9,1,9.616620307043956,9.616620307043956,0,0,0,0,0,0,0,1,1,0,2.548183255007796,0,0,0,57.33,53.46,6,1,0,0,7,3,1,214,0,0,0 +9172,11252,20480,-9,20482,20481,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1026.470431016104,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,2125.666666666667,0,0,0 +9172,11252,20481,20482,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,5,8.454716620331201,8.3336523225175,0,2,0,-9,8,-9,3,-98.4089472723053,-9,0,0,38,2,4,1,2,2,2019,1,1,6,0,38,0,15,1,0,1,0,14.43353699423654,14.43353699423654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,4,1,2125.666666666667,0,0,0 +9172,11252,20482,20481,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,4,8.271732033200433,8.388797556680792,0,2,0,-9,8,-9,-3,150.5634433914682,-9,0,1,41,2,5,1,2,2,2019,1,2,10,0,30,0,15,1,0,1,0,14.59391836552128,14.59391836552128,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,5,4,1,2125.666666666667,0,0,0 +9173,11253,20483,20485,-9,-9,1,1,1,50,1,0,1,0,1,-9,1,1,0,3,7.952958100391297,7.925328882694601,0,2,0,-9,10,0,-1,-52.25473134242533,0,0,0,51,2,3,1,3,2,2019,1,2,8,0,15,20,15,1,0,1,0,22.71441288876913,22.71441288876913,0,0,0,0,0,0,0,0,0,0,9.157749412838351,0,0,0,58.02,47.65,6,3,0,0,8,3,1,679.3333333333334,0,0,0 +9173,11253,20484,-9,20485,20483,3,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-984.6742746592779,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,3,0,0,8,3,1,679.3333333333334,0,0,0 +9173,11253,20485,20483,-9,-9,2,1,0,51,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,10,0,1,83.25227235333605,0,0,0,50,1,3,1,3,3,2019,1,1,23,10,0,20,15,1,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.027757430589042,0,0,0,33.37,60.58,4,3,0,0,8,3,1,679.3333333333334,0,0,0 +9174,11254,20486,-9,20488,20489,3,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.9355915752881,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,3,1,1235,0,0,0 +9174,11254,20487,-9,20488,20489,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.1173104626852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,1235,0,0,0 +9174,11254,20488,20489,-9,-9,1,1,0,38,1,0,4,0,2,-9,2,1,0,4,7.835197648509222,8.091062971478664,0,2,0,-9,19,0,-7,-49.08133461028837,0,0,1,45,2,3,1,2,2,2019,1,2,9,0,32,33,15,1,0,1,0,9.186681337775733,9.186681337775733,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,8,3,1,1235,0,0,0 +9174,11254,20489,20488,-9,-9,2,1,1,45,1,0,4,0,2,-9,2,1,0,3,8.226039845499356,8.702156087962297,0,2,0,-9,19,0,7,-66.2742033968173,0,0,0,38,2,4,1,3,3,2019,1,1,6,0,55,54,15,1,0,1,0,9.882247453564958,9.882247453564958,0,0,0,0,0,0,0,1,1,0,3.346867424038768,0,0,0,56.59,49.89,6,3,0,0,8,3,1,1235,0,0,0 +9174,11254,20490,-9,20488,20489,4,1,1,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.9387336631228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,3,1,1235,0,0,0 +9174,11254,20491,-9,20488,20489,5,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1201.714175995916,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,1235,0,0,0 +9175,11255,20492,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,4,0,7.468456269551466,7.648292726162107,3,0,0,0,-9,0,-898.9770104834695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.653656534141831,7.607916070602846,13.56650938534291,3,56.92,49.39,6,1,0,0,4,3,1,211,0,0,0 +9176,11256,20493,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-945.7106412598724,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.76,47.23,4,1,1,1,1,1,0,226,0,0,0 +9177,11257,20494,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,4,8.977057653963362,8.926190623296097,0,3,0,0,0,-9,0,-1064.157371025247,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,45,50,15,1,0,-9,0,18.83729616110637,18.83729616110637,0,0,0,0,0,0,0,0,0,0,4.702469765434022,0,4.776756998483854,3,54.2,57.49,6,1,0,0,10,5,1,842,0,0,0 +9178,11258,20495,-9,20497,20498,6,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.108671228529,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,13,3,1,756.8333333333334,0,0,0 +9178,11258,20496,-9,20497,20498,5,1,0,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.526538625783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,13,3,1,756.8333333333334,0,0,0 +9178,11258,20497,20498,-9,-9,1,1,0,40,1,0,4,0,2,-9,2,1,0,3,7.540560308194025,6.982337350537732,0,2,0,-9,18,0,3,-35.15270986064438,0,0,1,37,2,4,1,2,3,2019,1,2,10,0,20,0,15,1,0,1,0,8.708478952917719,8.708478952917719,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.71,56.91,4,1,0,0,13,3,1,756.8333333333334,0,0,0 +9178,11258,20498,20497,-9,-9,2,1,1,37,1,0,4,0,2,-9,2,1,0,4,8.431954050763395,8.21789156108585,0,2,0,-9,18,0,-3,11.64674942439686,0,0,0,40,2,3,1,2,2,2019,1,1,13,1,58,56,15,1,1,1,0,7.069994203636766,7.069994203636766,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.6,61.6,3,1,0,0,13,3,1,756.8333333333334,0,0,0 +9178,11258,20499,-9,20497,20498,3,1,1,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.5509178972692,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,13,3,1,756.8333333333334,0,0,0 +9178,11258,20500,-9,20497,20498,4,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.617173542831,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,13,3,1,756.8333333333334,0,0,0 +9179,11259,20501,20503,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,4,9.044782123613112,8.597287868980318,0,2,0,-9,4,0,3,-143.3403077390178,0,0,0,27,1,4,1,-9,-9,2019,1,1,10,0,37,42,15,1,1,1,0,20.55962606707559,20.55962606707559,0,0,0,0,0,0,0,1,1,0,2.337216690585586,0,0,0,50,57,5,1,0,0,2,5,1,755,0,0,0 +9179,11259,20502,-9,20503,20501,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.23058445852,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,755,0,0,0 +9179,11259,20503,20501,-9,-9,1,1,0,27,1,1,1,0,1,-9,2,1,0,4,8.457108759905649,8.552714541201469,0,2,0,-9,4,0,-3,99.67185809738874,0,1,1,30,2,4,1,2,2,2019,1,2,7,0,40,30,15,1,0,1,0,15.11647182764554,15.11647182764554,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,1,2,5,1,755,0,0,0 +9180,11260,20504,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-965.7538105459302,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.422158112591592,0,0,0,55.79,47.77,6,1,0,0,13,1,1,1163,0,0,0 +9180,11261,20505,-9,-9,20504,2,1,0,39,2,0,0,0,2,-9,2,1,0,3,7.330160432969652,7.353586665514705,0,3,0,0,0,-9,0,-929.3649187479815,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,5,0,33,22,15,1,0,-9,1,6.735497431911694,6.735497431911694,0,0,0,0,0,0,0,1,1,0,5.577095961430484,0,0,0,49.51,41.82,1,1,0,0,13,3,1,64,0,0,0 +9180,11262,20506,-9,-9,20504,3,1,1,37,2,0,0,0,2,-9,2,1,0,5,8.406142968539887,8.079701039256229,0,3,0,0,0,-9,0,-1036.544200580809,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,37,40,15,1,0,-9,1,11.86873542770566,11.86873542770566,0,0,0,0,0,0,0,1,1,0,5.065539249457748,0,0,0,57.06,57.76,6,1,0,0,13,4,1,192,0,0,0 +9181,11263,20507,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,8.421542832340853,8.309752486504729,3,0,0,0,-9,0,-970.4875895319256,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.302561572175373,7.714192775969533,0,0,58.62,39.16,6,1,0,0,9,4,1,446,0,0,0 +9182,11264,20508,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,5,8.920815271153648,8.765909737516729,0,3,0,0,0,-9,0,-973.6820078091373,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,52,52,15,1,0,-9,0,19.56858793416563,19.56858793416563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,6,1,0,0,9,5,1,1680,0,0,0 +9182,11265,20509,-9,20508,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1059.265594240087,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.31975344561947,0,0,0,51.24,58.84,4,1,0,0,9,1,1,161,0,0,0 +9183,11266,20510,20512,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,4,7.438094703716235,7.652829137914926,0,2,0,-9,21,0,4,73.71395571156866,0,0,0,50,2,4,1,2,2,2019,1,2,14,3,40,30,15,1,3,1,0,6.327752409866471,6.327752409866471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.81,62.05,7,1,0,0,5,5,1,613.6666666666666,0,0,0 +9183,11266,20511,-9,20510,20512,3,1,0,17,2,0,1,0,2,-9,2,3,0,3,6.130577149376117,5.856681051865356,0,2,0,0,0,-9,0,-1118.527479909242,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,12,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.178264817381957,0,0,0,40.12,57.28,6,1,0,0,5,5,1,613.6666666666666,0,0,0 +9183,11266,20512,20510,-9,-9,2,1,1,50,1,0,1,0,2,-9,2,1,0,4,9.073980173952181,9.100011319619238,0,2,0,-9,8,0,-4,-115.2258147527026,0,0,0,54,2,4,1,-9,-9,2019,1,1,7,0,42,40,15,1,0,1,0,25.31430478667068,25.31430478667068,0,0,0,0,0,0,0,0,0,0,3.222239655019714,0,0,0,57.16,56.15,5,1,0,0,5,5,1,613.6666666666666,0,0,0 +9184,11267,20513,20514,-9,-9,2,1,1,56,1,0,2,0,1,-9,1,1,0,3,9.587815232699835,9.752505903661685,0,2,0,-9,11,0,2,-5.064962970349339,0,0,0,54,1,3,1,3,3,2019,1,1,7,0,38,0,15,1,0,1,0,43.28754486754422,43.28754486754422,0,0,0,0,0,0,0,1,1,0,5.879055560241416,0,0,0,54.37,54.8,6,1,0,0,2,5,1,592,0,0,0 +9184,11267,20514,20513,-9,-9,1,1,0,54,1,0,2,0,1,-9,2,1,0,3,8.908677618986813,8.404431301938342,0,2,0,-9,11,0,-2,35.34552665647596,0,0,0,56,1,3,1,2,2,2019,1,2,13,1,32,32,15,1,1,1,0,24.53166544146447,24.53166544146447,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,3,4,0,0,2,5,1,592,0,0,0 +9185,11268,20515,20516,-9,-9,2,1,1,53,1,0,0,0,3,-9,1,1,0,4,5.004061817849629,5.213376205657086,0,1,0,-9,30,0,-2,86.50346850339017,0,0,0,55,3,2,1,3,3,2019,1,1,8,0,40,50,15,1,0,1,0,.4487913633142873,.4487913633142873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.9,52.64,6,1,0,0,9,3,0,2020,0,0,0 +9185,11268,20516,20515,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,2,8.083808181017414,8.089785082556553,0,1,0,-9,19,0,2,-32.32753933495128,0,0,0,53,3,4,1,3,3,2019,1,2,13,2,40,30,15,1,2,1,0,8.872682793474182,8.872682793474182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.61,24.84,7,1,0,0,9,3,0,2020,0,0,0 +9186,11269,20517,20520,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,5,9.144552956606892,9.992925755020471,9.006588681360784,2,0,-9,15,0,1,-104.6206483856067,0,0,0,43,1,5,1,1,1,2019,1,2,24,10,40,50,15,1,10,1,0,37.47142897317425,37.47142897317425,0,0,0,0,0,0,0,0,0,0,9.833893399549739,0,0,0,19.95,69.43000000000001,4,1,0,1,9,5,1,1166.75,0,0,0 +9186,11269,20518,-9,20520,20517,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1145.019890746136,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1166.75,0,0,0 +9186,11269,20519,-9,20520,20517,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.713637981731,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1166.75,0,0,0 +9186,11269,20520,20517,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,5,7.64626927254591,7.750503888476068,0,2,0,-9,15,0,-1,37.29205353220379,0,0,1,44,1,5,1,2,2,2019,1,1,7,1,32,0,15,1,1,1,0,8.593868820890233,8.593868820890233,0,0,0,0,0,0,0,0,0,0,7.548966162374352,0,0,0,49.76,56.93,6,1,0,0,9,5,1,1166.75,0,0,0 +9187,11270,20521,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,2,0,7.183075671405651,7.479270776513569,3,0,0,0,-9,0,-845.3993287194329,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.201974515563355,7.501092796984665,0,0,58.49,36.97,6,1,0,0,10,3,1,202,0,0,0 +9188,11271,20522,20523,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,4,8.289811476438627,7.935242675103347,0,1,0,-9,36,0,-1,-72.20199344288402,0,0,0,59,1,3,1,2,1,2019,1,2,18,7,27,31,15,1,7,1,0,16.58222429658551,16.58222429658551,0,0,0,0,0,0,0,0,0,0,3.384561611328629,0,0,3,41.06,62.04,6,1,0,0,12,5,1,197,0,0,0 +9188,11271,20523,20522,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,3,8.81303575277734,8.592037476572289,0,1,0,-9,36,0,1,11.28564701416042,0,0,0,58,1,4,1,3,3,2019,1,1,6,0,50,55,15,1,0,1,0,17.71540103389289,17.71540103389289,0,0,0,0,0,0,0,0,0,0,0,0,2.173179470460452,3,57.33,53.46,6,1,0,0,12,5,1,197,0,0,0 +9189,11272,20524,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,1,0,3.920696398953607,4.137838704961216,3,0,0,0,-9,0,-1020.940397058439,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,1.846676207863662,3.941585991113251,0,0,1,1,0,0,4.115060424662841,0,0,46.2,27.5,6,1,0,0,4,1,1,192,0,0,0 +9190,11273,20525,-9,20530,20531,10,1,1,27,3,0,1,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-992.0677274799674,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,3,1,1,6,1,1,677,0,0,0 +9190,11274,20526,-9,20530,20531,11,1,0,26,3,0,1,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-998.5468291029783,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,51.63,5,3,0,0,6,1,1,401,0,0,0 +9190,11275,20527,-9,20530,20531,12,1,0,28,3,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1034.39536304377,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.68,58.52,5,3,1,0,6,1,1,748,0,0,0 +9190,11276,20528,-9,20530,20531,3,1,1,22,2,0,1,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1017.02574802235,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,3,1,0,6,1,1,4503,0,0,0 +9190,11277,20529,-9,20530,20531,9,1,1,37,2,0,1,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1041.483527804662,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.96,57.78,4,3,1,1,6,1,1,1580,0,0,0 +9190,11278,20530,20531,-9,-9,2,1,0,62,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,4,0,-2,0,0,0,0,64,3,3,3,3,3,2019,4,5,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.39,40.89,4,3,0,0,6,1,1,283.5,0,0,0 +9190,11278,20531,20530,-9,-9,5,1,1,64,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,4,0,2,0,0,0,0,62,3,2,3,-9,-9,2019,4,2,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.2,46,5,3,1,0,6,1,1,283.5,0,0,0 +9190,11279,20532,20533,20530,20531,4,1,1,38,1,0,1,0,2,-9,1,1,0,4,6.94894224661927,6.923958680745126,0,2,0,-9,4,0,-4,-41.96643352222463,0,0,0,42,3,3,3,3,3,2019,2,6,11,1,45,50,15,1,1,3,0,2.854935984389585,2.854935984389585,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,52.92,5,3,0,0,6,2,1,1539,0,0,0 +9190,11279,20533,20532,-9,-9,6,1,0,42,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,4,0,4,51.90298303802955,0,0,1,38,2,4,1,-9,-9,2019,3,4,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.61,51.82,5,3,1,0,6,2,1,1539,0,0,0 +9190,11279,20534,-9,20533,20532,7,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-827.4905739109315,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,2,1,1539,0,0,0 +9190,11280,20535,20536,20530,20531,1,1,0,28,1,0,1,0,2,-9,3,3,0,5,0,0,0,2,0,-9,4,0,-4,-84.11075129265387,0,1,1,32,2,3,1,3,3,2019,3,8,9,0,0,30,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0461034554486396,0,0,0,50.06,58.37,5,3,1,0,6,2,1,868.5,0,0,0 +9190,11280,20536,20535,-9,-9,8,1,1,32,1,0,1,0,2,-9,2,1,0,3,6.944421572861607,6.789018353214072,0,2,0,-9,4,0,4,78.2743324521355,0,0,0,28,2,5,3,-9,-9,2019,2,1,8,0,30,0,15,1,0,3,0,3.608056957461169,3.608056957461169,0,0,0,0,0,0,0,1,1,0,.0053832296369415,0,0,0,52.13,55.97,5,3,0,0,6,2,1,868.5,0,0,0 +9191,11281,20537,-9,20539,20538,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.4178265452,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,1771.75,0,0,0 +9191,11281,20538,20539,-9,-9,2,1,1,47,1,1,2,0,3,-9,2,1,0,4,8.171219805875232,7.982537860073725,0,2,0,-9,7,0,11,-83.00470579044976,-9,0,0,36,2,4,1,-9,-9,2019,1,1,7,0,55,0,15,1,0,1,0,7.478491880596504,7.478491880596504,0,0,0,0,0,0,0,1,1,0,3.021011537127127,0,0,0,54.2,57.49,6,1,0,0,12,4,1,1771.75,0,0,0 +9191,11281,20539,20538,-9,-9,1,1,0,36,1,1,2,0,2,-9,2,1,0,4,8.303751139724003,8.12583332125671,0,2,0,-9,7,0,-11,20.26883519337361,0,0,1,47,3,4,1,2,3,2019,1,2,6,0,23,28,15,1,0,1,0,16.66066095193016,16.66066095193016,0,0,0,0,0,0,0,1,1,0,7.098740483953511,0,0,0,51.83,57.2,6,1,0,0,12,4,1,1771.75,0,0,0 +9191,11281,20540,-9,20539,20538,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.943913157213,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1771.75,0,0,0 +9192,11282,20541,-9,20543,20542,4,1,1,16,2,0,3,1,3,-9,7,2,0,4,6.019352902457414,5.605874322424841,0,2,0,0,0,-9,0,-952.7595666885167,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.71,57.24,6,1,0,0,13,3,1,594.2,0,0,0 +9192,11282,20542,20543,-9,-9,1,1,1,48,1,0,3,0,2,-9,3,3,0,4,8.2445244987584,8.09314771031808,0,2,0,-9,20,0,0,63.91935282186206,0,0,0,48,2,4,1,3,3,2019,3,2,9,0,60,60,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.731061114630455,0,0,0,52,55,6,1,1,0,13,3,1,594.2,0,0,0 +9192,11282,20543,20542,-9,-9,2,1,0,48,1,0,3,0,2,-9,2,1,0,4,7.885426628756862,7.891376882401269,0,2,0,-9,20,0,0,207.233995150726,0,0,0,48,2,4,3,2,2,2019,2,1,7,0,35,0,15,1,0,3,0,9.455195200928651,9.455195200928651,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44.08,59.33,5,1,0,0,13,3,1,594.2,0,0,0 +9192,11282,20544,-9,20543,20542,5,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.2366979954028,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,1,594.2,0,0,0 +9192,11282,20545,-9,20543,20542,3,1,1,16,2,0,3,1,3,-9,7,2,0,5,5.512302349207184,5.3761826974831,0,2,0,0,0,-9,0,-1109.642463819018,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,13,3,1,594.2,0,0,0 +9193,11283,20546,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,1,0,7.728239485415133,7.262247197124582,3,0,0,0,-9,0,-1057.932141833817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.234120050026421,7.546441600225172,0,0,60.04,34.98,6,1,0,0,1,3,1,212,0,0,0 +9194,11284,20547,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,5,8.016623337938166,7.870250105585218,0,3,0,0,0,-9,0,-978.0363137325777,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,0,7.767192056183907,7.767192056183907,0,0,0,0,0,0,0,0,0,0,2.281998923434271,0,0,0,52.66,56.94,6,1,0,0,5,4,1,1434,0,0,0 +9195,11285,20548,20549,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,3.261326581054428,3.704491667871797,1,0,-9,7,0,-13,-25.45196607122963,0,0,0,81,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.131915800944111,3.994541361689321,120.2432097761866,2,48.83,46.69,5,1,0,0,13,2,1,1070.5,0,0,0 +9195,11285,20549,20548,-9,-9,1,1,1,81,1,0,0,0,2,-9,6,3,0,3,0,6.632769227228966,6.683349498141612,1,0,-9,7,0,13,59.57372603115405,0,0,0,68,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.373809631388592,0,0,54,46,6,5,0,0,13,2,1,1070.5,0,0,0 +9196,11286,20550,-9,-9,-9,1,1,0,48,3,0,2,0,1,-9,6,3,0,4,6.853824813039729,6.892890418212913,0,4,0,0,0,-9,0,-965.8295692619671,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,15,15,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,5,5,0,1,2,2,1,198.5,0,0,0 +9196,11286,20551,-9,20550,-9,3,1,1,17,2,0,2,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-963.8692236027152,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.8,44.26,6,5,0,0,2,2,1,198.5,0,0,0 +9197,11287,20552,20553,-9,-9,2,1,1,69,1,0,0,0,3,-9,1,1,0,4,7.830712300539275,8.160904774344765,7.115984185974423,1,0,-9,49,0,5,59.54728159643145,0,0,0,64,3,4,3,3,3,2019,2,1,7,0,40,40,15,1,0,4,0,7.972522310101896,7.972522310101896,0,0,0,0,0,0,0,1,1,0,7.047315682360162,7.120221888129334,0,0,49.59,58.37,7,1,0,0,8,3,1,229,0,0,0 +9197,11287,20553,20552,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,50,0,-5,-112.2950629202948,0,0,0,69,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,8,3,1,229,0,0,0 +9198,11288,20554,-9,20557,20556,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.859020942254,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,3,1,732.75,0,0,0 +9198,11288,20555,-9,20557,20556,4,1,1,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1100.354666750135,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,3,1,732.75,0,0,0 +9198,11288,20556,20557,-9,-9,1,1,1,43,1,0,3,0,3,-9,2,1,0,5,8.150751825378899,8.404449183096094,0,2,0,-9,8,0,5,96.61107124439033,0,0,0,38,2,4,1,3,3,2019,1,2,6,0,40,0,15,1,0,1,0,12.92035700833697,12.92035700833697,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,58,6,1,0,0,13,3,1,732.75,0,0,0 +9198,11288,20557,20556,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,4,6.781642908343912,6.868016702025474,0,2,0,-9,8,0,-5,64.60728885677371,0,0,1,43,3,5,1,3,3,2019,1,1,9,0,20,10,15,1,0,1,0,4.53547271064696,4.53547271064696,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,13,3,1,732.75,0,0,0 +9198,11289,20558,-9,20557,20556,3,1,0,18,2,0,3,0,2,-9,7,2,0,5,5.699134456176017,5.547867595164615,0,3,0,0,0,-9,0,-988.2309591033206,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,8,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.71,55.17,6,1,0,0,13,3,1,683,0,0,0 +9199,11290,20559,20560,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,3,8.705029161603886,8.771137475402014,0,2,0,-9,19,0,-3,87.50094177032318,0,0,0,51,2,3,1,3,2,2019,1,1,4,0,40,35,15,1,0,1,0,22.30608309977189,22.30608309977189,0,0,0,0,0,0,0,1,1,0,1.295085650002967,0,0,0,49.29,54.59,6,1,0,0,7,4,0,2143,0,0,0 +9199,11290,20560,20559,-9,-9,1,1,0,51,1,0,1,0,2,-9,1,1,0,3,7.040133393161579,7.204304352059973,0,2,0,-9,19,0,3,118.8150909388769,0,0,0,48,2,3,1,3,2,2019,1,2,16,4,10,10,15,1,4,1,0,13.57239166554264,13.57239166554264,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,47.65,5,1,0,0,7,4,0,2143,0,0,0 +9200,11291,20561,20562,-9,-9,1,1,0,29,1,0,0,0,2,-9,2,1,0,4,8.857571673273211,8.697378490485569,0,1,0,-9,5,0,-2,18.92646124772043,0,1,1,31,2,4,1,2,2,2019,1,2,9,0,45,47,15,1,0,1,0,18.92380877010121,18.92380877010121,0,0,0,0,0,0,0,0,0,0,1.879013220459125,0,0,0,54.2,57.49,6,1,0,0,9,5,1,605,0,0,0 +9200,11291,20562,20561,-9,-9,2,1,1,31,1,0,0,0,2,-9,2,1,0,4,9.014313710539094,9.068930465501465,0,1,0,-9,5,0,2,-143.2074990781099,0,0,0,29,2,4,1,-9,-9,2019,1,1,7,1,40,40,15,1,1,1,0,23.92444685029615,23.92444685029615,0,0,0,0,0,0,0,0,0,0,2.168571840359437,0,0,0,55.19,51.55,6,1,0,0,9,5,1,605,0,0,0 +9201,11292,20563,20564,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.334191046983902,8.472300252477353,6.265797990143264,1,0,-9,4,0,13,104.2637623870876,0,0,0,41,1,4,1,-9,-9,2019,1,1,30,12,52,51,15,1,12,1,0,8.764931868624547,8.764931868624547,0,0,0,0,0,0,0,0,0,0,0,6.545099968999414,0,0,25.02,64.34,2,1,0,0,10,5,1,613,0,0,0 +9201,11292,20564,20563,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,4,8.814444835298998,8.502525470842064,0,1,0,-9,4,0,-13,-82.5544404881022,0,0,1,54,2,3,1,2,2,2019,1,2,5,0,37,39,15,1,0,1,0,21.49070022292512,21.49070022292512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,6,1,0,0,10,5,1,613,0,0,0 +9202,11293,20565,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1060.614514660947,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,13.98363928498391,4.717869471155101,0,1,1,0,0,0,0,0,27.99,30.67,4,1,0,0,9,1,1,1241,0,0,0 +9203,11294,20566,20567,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.268692687503037,8.058074533894342,0,1,0,-9,4,0,0,-61.81526140785829,0,0,0,45,2,3,1,-9,-9,2019,1,1,8,1,40,38,15,1,1,1,0,10.18718634821635,10.18718634821635,0,0,0,0,0,0,0,0,0,0,8.028017266278674,0,0,0,61.2,31.05,7,1,0,0,10,5,0,2376.5,0,0,0 +9203,11294,20567,20566,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,3,9.364702737683004,9.111711332014872,0,1,0,-9,4,0,0,42.65313544834987,0,0,0,45,2,3,1,1,2,2019,1,2,8,0,38,38,15,1,0,1,0,41.43153932849047,41.43153932849047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,10,5,0,2376.5,0,0,0 +9204,11295,20568,20569,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,7,0,0,-13.97103075881576,-9,0,0,66,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,17.72140445307623,21.18276662008379,0,0,0,100.7024745191251,1,1,0,0,0,0,0,38,25,6,4,0,1,8,3,1,848.5,0,0,0 +9204,11295,20569,20568,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,5.43010213754352,7.891662489313792,7.822257872407933,1,0,-9,7,0,0,9.30571536513999,0,0,0,66,2,1,3,3,2,2019,4,2,7,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.740842710666638,5.615422190430267,1,47.91,57.48,1,2,0,0,8,3,1,848.5,0,0,0 +9205,11296,20570,20571,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,8.19650113891972,8.214338741551686,1,0,-9,10,0,-1,-123.6689589496282,0,0,0,71,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.041193871391092,7.859579298516952,0,0,55.96,49.93,7,1,0,0,7,4,1,351,0,0,0 +9205,11296,20571,20570,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,10,0,1,-.9993999537435485,0,0,0,70,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.959722123376853,0,0,0,62.49,55.09,7,1,0,0,7,4,1,351,0,0,0 +9206,11297,20572,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,4,0,6.79738386522552,6.610417439476065,3,0,0,0,-9,0,-917.0767418872623,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.291276788541871,6.631989601310863,0,0,41.62,60.42,5,1,0,0,10,2,0,787,0,0,0 +9207,11298,20573,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,1,1,0,4,6.107533724098603,6.369689331040312,0,3,0,0,0,-9,0,-999.1360844290319,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,35,15,1,0,-9,0,1.619722843348876,1.619722843348876,0,0,0,0,0,0,0,0,0,0,5.433849365625118,0,0,0,58.15,52.91,6,1,0,0,9,2,0,696,0,0,0 +9208,11299,20574,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,2,1,0,4,7.696569177244665,7.86032869051562,0,3,0,0,0,-9,0,-936.3889648197091,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,43,15,1,0,-9,0,7.341578232605855,7.341578232605855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,4,1,0,0,2,4,1,1098,0,0,0 +9209,11300,20575,-9,20576,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1042.090910980433,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,3,0,759.5,0,0,0 +9209,11300,20576,-9,-9,-9,1,1,0,38,3,0,1,0,2,-9,2,1,0,3,8.001721651479857,8.240323777671003,5.1096655912066,4,0,0,0,-9,0,-1083.644680562971,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,14,4,39,43,15,1,4,-9,0,6.842807293123939,6.842807293123939,0,0,0,0,0,0,0,1,1,0,4.666544381621193,0,0,0,43.97,53.97,4,4,0,1,7,3,0,759.5,0,0,0 +9210,11301,20577,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,4,8.327033226294843,8.500050303013021,0,3,0,0,0,-9,0,-978.163805807874,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,38,45,15,1,1,-9,0,10.37432231870767,10.37432231870767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,5,4,0,1,8,5,0,190,0,0,0 +9211,11302,20578,-9,-9,20581,4,1,0,12,2,0,0,1,3,-9,-9,2,0,2,0,0,0,1,0,0,0,-9,0,-903.502669762276,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,5,0,0,7,4,1,524.4,0,0,0 +9211,11302,20579,20581,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,5,7.758061466384711,8.001491536268025,0,1,0,-9,2,0,9,-63.07662836070384,0,0,0,51,2,5,1,3,3,2019,1,6,3,0,44,44,15,1,0,1,0,7.142042134512176,7.142042134512176,0,0,0,0,0,0,0,1,1,0,0,0,8.12801122955411,0,54.67,57.49,5,4,0,0,7,4,1,524.4,0,0,0 +9211,11302,20580,-9,-9,20581,5,1,1,10,2,0,0,1,3,-9,-9,2,0,3,0,0,0,1,0,0,0,-9,0,-1055.264635006441,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,4,0,0,7,4,1,524.4,0,0,0 +9211,11302,20581,20579,-9,-9,6,1,1,51,1,0,0,0,2,-9,2,1,0,5,7.411410532777042,7.581063841600447,0,1,0,-9,2,0,0,64.89465952584528,0,0,0,60,1,5,1,-9,-9,2019,1,1,6,0,0,44,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,4,0,0,7,4,1,524.4,0,0,0 +9211,11302,20582,-9,-9,20581,3,1,0,15,2,0,0,1,3,-9,-9,2,0,5,0,0,0,1,0,0,0,-9,0,-1040.718707702849,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,4,0,0,7,4,1,524.4,0,0,0 +9212,11303,20583,20584,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,6.410402512634742,6.601373390355955,1,0,-9,33,0,3,-156.0346065013817,0,0,0,71,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.897417843305306,0,0,33.46,45.88,1,1,0,0,10,2,0,666,0,0,0 +9212,11303,20584,20583,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,5.787550540021873,5.690324758534715,1,0,-9,33,0,-3,-57.06235479264227,0,0,0,74,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.943191718224849,0,0,64.87,23.42,7,1,0,0,10,2,0,666,0,0,0 +9213,11304,20585,-9,-9,-9,1,1,1,51,3,0,0,0,1,-9,1,1,0,4,9.327750183256153,9.277660142677915,0,3,0,0,0,-9,0,-1149.927605806404,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,50,50,15,1,0,-9,0,22.44957816129153,22.44957816129153,0,0,0,0,0,0,0,0,0,0,3.055607864639736,0,0,0,40.83,54.15,5,1,0,0,10,5,1,276,0,0,0 +9214,11305,20586,-9,20587,20589,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-982.7373848974013,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,12,4,1,1065.75,0,0,0 +9214,11305,20587,20589,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,4,8.336832878546543,8.522915346691633,0,2,0,-9,12,0,11,55.9083214596097,0,0,0,36,2,4,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,14.65426101150111,14.65426101150111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,6,1,0,0,12,4,1,1065.75,0,0,0 +9214,11305,20588,-9,20587,20589,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.174432506829,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,1065.75,0,0,0 +9214,11305,20589,20587,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,4,7.751709084250821,8.109144915162393,0,2,0,-9,12,0,-11,-17.06641748196603,0,0,0,47,2,4,1,-9,2,2019,1,1,13,2,34,36,15,1,2,1,0,9.372845002207548,9.372845002207548,0,0,0,0,0,0,0,1,1,0,0,0,0,3,38.34,62.12,6,1,0,0,12,4,1,1065.75,0,0,0 +9215,11306,20590,20591,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,4,8.184962752809437,8.125723736955033,0,1,0,-9,27,0,4,129.7384761796629,0,0,0,57,1,4,1,2,2,2019,1,1,9,0,40,37,15,1,0,1,0,12.18433020550183,12.18433020550183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,6,1,0,0,4,3,1,240.5,0,0,0 +9215,11306,20591,20590,-9,-9,1,1,0,57,1,0,0,0,1,-9,1,1,0,4,3.81556447514713,5.529331785773865,5.586148858791659,1,0,-9,27,0,-4,-35.16661572606031,0,0,0,61,1,4,1,1,2,2019,1,2,9,0,1,1,15,1,0,1,0,6.103013027574118,6.103013027574118,0,0,0,0,0,0,0,0,0,0,5.713552457001951,0,0,3,47.58,56.39,5,1,0,0,4,3,1,240.5,0,0,0 +9215,11307,20592,-9,-9,-9,3,1,1,54,2,0,0,0,2,-9,2,1,0,5,7.831409401031613,7.970739371693123,0,3,0,0,0,-9,0,-1001.13456569807,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,44,42,15,1,0,-9,0,5.897364143114019,5.897364143114019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,4,3,1,607,0,0,0 +9216,11308,20593,20594,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,55,0,-1,88.25242199649766,0,0,0,81,2,3,3,2,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.921797979709247,0,0,0,53.97,35.14,4,1,0,0,7,2,1,711.5,0,0,0 +9216,11308,20594,20593,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,6.839311717844914,6.946204396108625,1,0,-9,55,0,1,-73.73738715158655,0,0,0,80,2,2,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.848499306776058,0,0,54.87,46.41,5,1,0,0,7,2,1,711.5,0,0,0 +9217,11309,20595,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1049.257279677839,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.48,20.44,5,1,0,1,8,1,0,700,0,0,0 +9217,11310,20596,-9,20595,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,4,7.967107790651601,8.301251534317165,0,3,0,0,0,-9,0,-958.89519115078,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,42,19,15,1,0,-9,1,11.01601773673987,11.01601773673987,0,0,0,0,0,0,0,1,1,0,0,0,17.35883223298909,3,44.02,60.7,5,1,0,0,8,4,0,509,0,0,0 +9218,11311,20597,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1112.950925846532,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,18.69260005553114,0,0,11.91982235126152,0,152.6191507958115,1,1,0,5.119514018610719,0,0,0,40,23,4,1,0,0,11,1,1,171,0,0,0 +9218,11312,20598,-9,20597,-9,2,1,1,54,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-986.5812243799318,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.9265374707484,3,55.84,14.38,5,1,0,0,11,1,1,2672,0,0,0 +9219,11313,20599,20600,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.414411528542103,6.989689468191878,1,0,-9,58,0,5,-18.00987670605806,0,0,0,77,3,3,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.52158751943957,6.898266389737402,0,0,57.75,36.71,6,1,0,0,12,3,1,522.5,0,0,0 +9219,11313,20600,20599,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,7.07054346836778,7.404692373403833,5.751824193725867,1,0,-9,58,0,-5,83.92766672989627,0,0,0,82,2,3,3,-9,-9,2019,4,2,12,0,15,15,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.491803999063295,6.390728187228405,0,0,61.52,34.97,5,1,0,0,12,3,1,522.5,0,0,0 +9220,11314,20601,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,5.163543441216979,5.012563069966475,3,0,0,0,-9,0,-1129.990136369059,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.229351206780487,5.083712356306332,0,0,47.96,35.01,6,1,0,0,10,2,1,915,0,0,0 +9221,11315,20602,20603,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,4.883630036002531,5.184511635936919,1,0,-9,35,0,1,65.58459280042622,0,0,0,71,3,3,3,-9,-9,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.363150056223745,4.855003735721416,0,0,41.69,25.64,4,1,0,0,2,2,1,350.5,0,0,0 +9221,11315,20603,20602,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,4.528244653519562,4.556007540997038,1,0,-9,5,0,-1,8.57680178527572,0,0,0,72,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.407593023536861,4.734578831301851,125.386892769078,1,58.89,48.6,6,1,0,0,2,2,1,350.5,0,0,0 +9222,11316,20604,20605,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,3,7.855044847871847,7.973023429378709,0,1,0,-9,11,0,-3,-82.85042320566102,0,0,0,54,2,2,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,7.225414291586407,7.225414291586407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.7,49.11,4,1,0,0,10,5,1,339.5,0,0,0 +9222,11316,20605,20604,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.710420974441615,8.982721384276806,0,1,0,-9,31,0,3,-9.285016281271158,0,0,0,51,3,3,1,2,3,2019,1,2,5,0,40,9,15,1,0,1,0,23.60533235006832,23.60533235006832,0,0,0,0,0,0,0,0,0,0,2.505104812908256,0,0,0,48.38,49.66,6,1,0,0,10,5,1,339.5,0,0,0 +9223,11317,20606,20607,-9,-9,2,1,1,53,1,0,0,0,1,-9,1,1,0,5,9.427231987915622,9.2481235341338,0,1,0,-9,29,0,-4,71.83837722975706,0,0,0,57,2,1,3,3,2,2019,2,1,7,1,60,45,15,1,1,3,0,20.00275947600117,20.00275947600117,0,0,0,0,0,0,0,1,1,0,5.954014076923857,0,0,1,57.06,57.76,7,1,0,0,1,5,1,1229.5,0,0,0 +9223,11317,20607,20606,-9,-9,1,1,0,57,1,0,0,0,2,-9,8,3,1,1,0,4.718004755820685,4.856959780530405,1,0,-9,29,0,4,110.7048987403545,0,0,0,53,1,5,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.285110479021979,4.716020721970994,0,0,47.31,10.02,5,1,0,0,1,5,1,1229.5,0,0,0 +9224,11318,20608,-9,-9,-9,1,1,0,52,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1012.990261164277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.25,58.67,4,1,1,0,6,1,0,70,0,0,0 +9225,11319,20609,20611,-9,-9,2,1,0,54,1,0,2,0,2,-9,2,1,0,5,8.588960821323237,8.71738266789799,0,2,0,-9,9,0,2,-45.85196395746372,0,0,0,52,2,3,1,2,2,2019,1,1,9,0,45,36,15,1,0,1,0,14.86115525387395,14.86115525387395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,4,0,0,12,4,1,775.3333333333334,0,0,0 +9225,11319,20610,-9,20609,20611,5,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1108.989210446384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,12,4,1,775.3333333333334,0,0,0 +9225,11319,20611,20609,-9,-9,1,1,1,52,1,0,2,0,2,-9,1,1,0,3,7.288157624902429,7.206370357039429,0,2,0,-9,9,0,-2,-78.77698625210282,0,0,0,54,2,5,1,3,3,2019,1,2,13,1,70,55,15,1,1,1,0,2.555621134604494,2.555621134604494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,6,4,0,0,12,4,1,775.3333333333334,0,0,0 +9225,11320,20612,-9,20609,20611,4,1,1,18,2,0,2,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-881.4124887617404,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,6,4,1,0,12,4,1,1326,0,0,0 +9226,11321,20613,20614,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,4,0,6.400151792145125,6.352327056790058,1,0,-9,6,0,-6,45.73450127517588,0,0,0,78,2,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.349626741499775,0,0,48.92,52.11,6,1,0,0,13,3,1,255.5,0,0,0 +9226,11321,20614,20613,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,5,0,7.975429355512243,8.146230267184505,1,0,-9,6,0,6,-72.16609367424046,0,0,0,72,1,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.170100968028681,0,0,54.1,59.11,6,1,0,0,13,3,1,255.5,0,0,0 +9227,11322,20615,-9,20617,20616,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.2953547027273,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,637.5,0,0,0 +9227,11322,20616,20617,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,5,9.312061031956468,9.48761317855158,0,2,0,-9,17,0,1,93.00608617235824,0,0,0,37,1,4,3,-9,-9,2019,2,1,2,0,50,55,15,1,0,3,0,30.5202274655444,30.5202274655444,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,7,5,1,637.5,0,0,0 +9227,11322,20617,20616,-9,-9,1,1,0,37,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,17,0,-1,-83.998618920532,0,0,1,38,1,5,1,2,2,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,7,5,1,637.5,0,0,0 +9227,11322,20618,-9,20617,20616,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.4305300072842,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,637.5,0,0,0 +9228,11323,20619,-9,-9,-9,1,1,1,41,2,0,3,0,1,-9,3,3,0,2,6.788268628007128,6.545037463277692,0,4,0,-9,0,0,0,-1079.739332847088,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,2,25,48,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.36,30.37,7,4,1,0,8,2,0,1181.25,0,0,0 +9228,11323,20620,-9,20623,20619,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.4174630664583,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,2,0,1181.25,0,0,0 +9228,11323,20621,-9,20623,20619,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1090.427437159794,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,2,0,1181.25,0,0,0 +9228,11323,20622,-9,20623,20619,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.1608346458,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,2,0,1181.25,0,0,0 +9228,11324,20623,-9,-9,-9,2,1,0,30,2,0,3,0,1,-9,2,1,0,5,8.044837852852746,7.821558800646595,0,4,0,-9,0,0,0,-923.2948743256861,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,47,19,15,1,0,-9,0,7.827048842122391,7.827048842122391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,4,0,1,8,3,0,2459,0,0,0 +9229,11325,20624,-9,20625,20626,3,1,1,17,2,0,1,1,2,0,7,2,0,5,4.657906415211285,4.528832690608767,0,2,0,0,0,-9,0,-980.7410479783182,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,2,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.752028456312613,0,0,0,32.85,66.15000000000001,3,1,0,0,4,4,1,527.3333333333334,0,0,0 +9229,11325,20625,20626,-9,-9,1,1,0,60,1,0,1,0,1,-9,1,1,0,4,0,0,0,2,0,-9,19,0,10,97.7186085232271,0,0,0,50,1,2,1,2,2,2019,1,2,13,2,0,54,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.150115705119784,0,18.00318712653362,2,52.4,55.58,7,1,0,0,4,4,1,527.3333333333334,0,0,0 +9229,11325,20626,20625,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,2,8.779654464865713,8.990884044906636,0,2,0,-9,18,0,-10,18.92346826518749,0,0,0,60,1,4,1,1,1,2019,1,1,20,9,38,38,15,1,9,1,0,20.98422304932231,20.98422304932231,0,0,0,0,0,0,0,1,1,0,6.475228425698729,0,0,0,41.88,33.63,6,1,0,0,4,4,1,527.3333333333334,0,0,0 +9230,11326,20627,20628,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,4,0,7.473364615503638,7.531032868933091,1,0,-9,9,0,2,-54.22073811138375,0,0,0,81,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.165954894054751,7.524420415471969,0,0,59.74,45.34,6,1,0,0,10,3,1,792.5,0,0,0 +9230,11326,20628,20627,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,6.246965461081249,6.188612911308374,1,0,-9,9,0,-2,-76.97683336693312,0,0,0,83,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.371689156936544,5.991112427878726,0,0,58.85,33.57,6,1,0,0,10,3,1,792.5,0,0,0 +9231,11327,20629,-9,20631,20630,3,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-804.5400430655441,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,9,2,0,647.8,0,0,0 +9231,11327,20630,20631,-9,-9,4,1,1,31,1,1,3,0,3,-9,2,1,0,3,7.269110937592425,7.570081065905642,0,2,0,-9,3,0,4,49.89323673010851,0,0,0,27,2,3,3,-9,-9,2019,2,1,12,0,20,20,15,1,0,3,0,7.97058454685995,7.97058454685995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.88,50.52,4,3,0,0,9,2,0,647.8,0,0,0 +9231,11327,20631,20630,-9,-9,1,1,0,27,1,1,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,3,0,-4,-110.8474351778532,0,1,1,31,3,3,1,3,3,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,50.02,5,3,0,0,9,2,0,647.8,0,0,0 +9231,11327,20632,-9,20631,20630,2,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.1525493091972,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,2,0,647.8,0,0,0 +9231,11327,20633,-9,20631,20630,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-981.0477635840789,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,9,2,0,647.8,0,0,0 +9232,11328,20634,-9,-9,-9,1,1,1,41,3,0,1,0,2,-9,1,1,0,3,8.479434243865178,8.647365157916814,0,4,0,-9,0,-9,0,-1087.006342422444,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,50,0,15,1,3,-9,0,10.15349951045016,10.15349951045016,0,0,0,0,0,0,0,0,0,0,.8265903361380875,0,0,0,36.5,53.49,4,1,0,0,11,4,1,804.5,0,0,0 +9232,11328,20635,-9,-9,20634,2,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-890.592268243328,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,11,4,1,804.5,0,0,0 +9233,11329,20636,20637,-9,-9,2,1,0,32,1,1,1,0,2,-9,2,1,0,4,8.917818949726103,8.5726106166546,0,2,0,-9,4,-9,-13,-22.81684216007198,-9,0,1,45,1,3,1,2,2,2019,1,1,11,0,28,0,15,1,2,1,0,20.44730561358135,20.44730561358135,0,0,0,0,0,0,0,1,1,0,1.48480340777044,0,0,0,48,57,5,1,0,0,4,4,1,989,0,0,0 +9233,11329,20637,20636,-9,-9,1,1,1,45,1,1,1,0,1,-9,2,1,0,3,7.95366520433922,7.957125168577408,0,2,0,-9,4,-9,13,-5.337535671526864,-9,0,0,32,2,4,1,2,1,2019,1,2,7,0,26,0,15,1,0,1,0,15.12154131852029,15.12154131852029,0,0,0,0,0,0,0,1,1,0,3.040557960095361,0,0,0,52,54.51,6,1,0,0,4,4,1,989,0,0,0 +9233,11329,20638,-9,20636,20637,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1188.236538341236,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,989,0,0,0 +9234,11330,20639,20640,-9,-9,1,1,1,50,1,0,2,0,3,-9,6,3,0,1,0,0,0,2,0,-9,10,0,11,0,0,0,0,39,3,1,3,3,3,2019,4,2,21,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.69589133154788,2,36.38,24,2,1,0,1,11,1,0,449.3333333333333,0,0,0 +9234,11330,20640,20639,-9,-9,2,1,0,39,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,10,0,-11,0,0,0,1,50,3,1,3,-9,-9,2019,4,1,34,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,0,11,1,0,449.3333333333333,0,0,0 +9234,11330,20641,-9,20640,20639,5,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.132773826916,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,1,0,449.3333333333333,0,0,0 +9234,11331,20642,-9,20640,20639,3,1,0,23,2,0,2,0,2,-9,1,1,0,3,7.486067255526265,7.529570910118463,0,3,0,0,0,-9,0,-1025.611481713006,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,0,15,1,0,-9,1,4.09991393808916,4.09991393808916,0,0,0,0,0,0,0,1,1,0,0,0,2.873161047972859,3,53.39,49.67,6,1,0,0,11,3,0,2188,0,0,0 +9235,11332,20643,20644,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,2,8.473905249904243,8.503316233683758,0,1,0,-9,5,0,4,-89.32227253036029,0,0,0,31,2,4,1,-9,-9,2019,1,1,7,0,14,45,15,1,0,1,0,34.94619612544489,34.94619612544489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,47.22,5,1,0,0,1,4,0,858,0,0,0 +9235,11332,20644,20643,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,4,7.911306514146885,7.642095321208663,0,1,0,-9,5,0,-4,9.903438771615448,0,0,1,35,2,2,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,7.427937394692269,7.427937394692269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,1,4,0,858,0,0,0 +9236,11333,20645,20646,-9,-9,2,1,1,75,1,0,0,0,1,-9,2,1,0,4,7.35770459307012,8.665350017447718,7.837736126829506,1,0,-9,8,0,5,-87.36461272099663,0,0,0,70,2,4,3,2,2,2019,2,1,8,0,30,35,15,1,0,4,0,6.563350870306441,6.563350870306441,0,0,0,0,0,0,0,1,1,0,7.977342552330395,8.322933964171943,0,0,56.56,45.35,6,1,0,0,10,4,1,387.5,0,0,0 +9236,11333,20646,20645,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.270538779496055,7.163588949965839,1,0,-9,8,0,-5,-103.8569517719468,0,0,0,75,1,4,1,3,3,2019,3,2,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.799446638981379,16.98207864336588,3,49.41,58.28,7,1,0,0,10,4,1,387.5,0,0,0 +9237,11334,20647,20648,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.082327534956313,8.193659150485676,0,1,0,-9,9,0,-4,-98.59740967783627,0,0,0,58,2,2,3,1,3,2019,2,2,7,0,40,40,15,1,0,3,0,8.601358091409205,8.601358091409205,0,0,0,0,0,0,0,0,0,0,1.565704413831604,0,6.527284022936184,1,57.66,45.08,6,1,0,0,6,3,1,276,0,0,0 +9237,11334,20648,20647,-9,-9,2,1,1,58,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,9,0,4,-72.470913835685,0,0,0,54,2,3,1,3,3,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566949343281897,0,0,0,39.76,39.89,3,1,0,0,6,3,1,276,0,0,0 +9238,11335,20649,20650,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,3,-43.5987633542027,0,0,0,70,3,3,3,2,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,1,0,2.675786600850479,0,0,0,0,1,1,0,0,0,0,0,45.77,41.53,5,1,0,0,6,2,1,342.5,0,0,0 +9238,11335,20650,20649,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.312510010871102,4.978839112981094,1,0,-9,8,0,-3,-72.2731840067392,0,0,0,73,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.702009979217773,5.025895076681183,0,0,44.36,54.04,6,1,0,0,6,2,1,342.5,0,0,0 +9239,11336,20651,20652,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,5.142308917100308,5.236659223407911,1,0,-9,61,0,-2,-43.06542109970844,0,0,0,80,2,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.503876912870535,0,0,52.43,55.57,7,1,0,0,6,2,1,524,0,0,0 +9239,11336,20652,20651,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,4,0,7.186823271294875,6.96274183088931,1,0,-9,61,0,2,37.09702030919186,0,0,0,78,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,9.940370231997399,0,0,0,0,1,1,0,0,7.324788145932411,0,0,47.8,38.7,7,1,0,0,6,2,1,524,0,0,0 +9240,11337,20653,-9,20656,-9,2,1,1,13,2,1,3,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1049.484916787961,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,10,2,0,713,0,0,0 +9240,11337,20654,-9,20656,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-954.6454742883872,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,2,0,713,0,0,0 +9240,11337,20655,-9,20656,-9,3,1,1,10,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-938.3028382612687,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,0,713,0,0,0 +9240,11337,20656,-9,-9,-9,1,1,0,30,3,1,3,0,3,-9,6,3,0,2,0,6.625999656210261,6.363137786920769,4,0,0,0,-9,0,-1052.320200014101,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,27,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.501678409912924,0,43.45567715945839,3,29.13,48.1,3,1,0,0,10,2,0,713,0,0,0 +9241,11338,20657,20659,-9,-9,1,1,0,33,1,0,1,0,1,-9,2,1,0,4,8.438914360678742,8.227674931724685,0,2,0,-9,6,0,0,71.80830863327893,0,0,1,33,2,4,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,15.79061823612992,15.79061823612992,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,5,1,0,0,13,4,1,349.3333333333333,0,0,0 +9241,11338,20658,-9,20657,20659,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1148.531454324311,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,349.3333333333333,0,0,0 +9241,11338,20659,20657,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,4,8.1046999370962,8.173703674460263,0,2,0,-9,6,0,0,103.9930369788859,0,0,0,33,1,4,1,-9,-9,2019,1,1,11,0,36,37,15,1,0,1,0,11.27481494440441,11.27481494440441,0,0,0,0,0,0,0,1,1,0,6.167185507624295,0,0,0,34.48,61.03,5,5,0,0,13,4,1,349.3333333333333,0,0,0 +9242,11339,20660,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,5,0,6.640819284360349,6.912836110252844,3,0,0,0,-9,0,-1076.246263695316,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.113039913245143,6.846195438403913,0,0,57.06,57.76,6,1,0,0,12,2,1,555,0,0,0 +9243,11340,20661,20662,-9,-9,2,1,1,40,1,0,2,0,3,-9,2,1,0,3,8.788155547827127,8.31138177563014,0,2,0,-9,8,0,-11,64.9795947361513,0,0,0,51,3,2,1,-9,-9,2019,1,1,6,0,51,45,15,1,0,1,0,10.55984098180701,10.55984098180701,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,3,0,0,8,3,1,505,0,0,0 +9243,11340,20662,20661,-9,-9,1,1,0,51,1,0,2,0,3,-9,2,1,0,2,6.691606832442435,6.696334033092954,0,2,0,-9,24,0,11,86.15634086473561,0,0,0,40,3,3,1,3,3,2019,1,2,6,0,10,2,15,1,0,1,0,9.309584218284865,9.309584218284865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.42,39.73,7,3,0,0,8,3,1,505,0,0,0 +9243,11340,20663,-9,20662,20661,5,1,1,17,2,0,2,0,2,1,3,3,0,3,0,0,0,2,0,0,0,-9,0,-1018.624498534466,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,54,7,3,1,1,8,3,1,505,0,0,0 +9243,11341,20664,-9,20662,20661,3,1,0,20,2,0,2,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-891.5215783262043,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,1,0,8,1,1,799,0,0,0 +9243,11342,20665,-9,20662,20661,4,1,1,18,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1015.992677172859,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,4,3,0,0,8,3,1,903,0,0,0 +9244,11343,20666,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-956.9380692890799,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,2.526949801710195,2.567582907603813,39.9379483311372,1,1,0,0,0,0,0,50.89,36.5,4,1,0,0,11,1,0,247,0,0,0 +9245,11344,20667,20668,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,4,7.647100025112219,7.551747824619545,0,2,0,-9,16,0,-4,24.80157185832298,0,0,1,39,2,5,1,2,2,2019,1,1,14,3,32,32,15,1,3,1,0,6.443914362844106,6.443914362844106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,5,1,0,0,4,4,1,720.75,0,0,0 +9245,11344,20668,20667,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,5,8.768832001640972,8.591596836054125,0,2,0,-9,16,0,4,-51.68129710218511,0,0,0,35,2,4,1,2,2,2019,1,2,18,6,49,51,15,1,6,1,0,14.2412910784625,14.2412910784625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,64.75,5,1,0,0,4,4,1,720.75,0,0,0 +9245,11344,20669,-9,20667,20668,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.18931773728,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,720.75,0,0,0 +9245,11344,20670,-9,20667,20668,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.3070344888312,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,720.75,0,0,0 +9246,11345,20671,20673,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,4,5.901584861638119,8.449868068860221,8.607546056565898,1,0,-9,9,0,3,-37.28061028641102,0,0,0,59,2,4,3,2,2,2019,4,2,8,1,10,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.01816213915599,8.118524576884134,0,0,66.2,41.05,7,1,0,0,4,3,1,1025.333333333333,0,0,0 +9246,11345,20672,-9,20673,20671,3,1,0,17,2,0,0,1,2,0,7,2,0,4,5.643336847979678,5.535864607474062,0,1,0,0,0,-9,0,-914.6557088579607,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,7,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5377298033800062,0,0,0,49.35,59.64,6,1,0,0,4,3,1,1025.333333333333,0,0,0 +9246,11345,20673,20671,-9,-9,2,1,0,59,1,0,0,0,2,-9,10,3,0,4,0,0,0,1,0,-9,9,0,-3,-37.1623649031644,0,0,0,62,2,4,3,2,1,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9415437369764635,0,0,0,57.16,56.15,6,1,0,0,4,3,1,1025.333333333333,0,0,0 +9247,11346,20674,-9,20675,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1095.296965545121,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,3,0,882,0,0,0 +9247,11346,20675,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,3,7.156379506209188,7.678949983423404,6.903745773457241,4,0,0,0,-9,0,-988.628555395285,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,21,10,25,50,15,1,10,-9,0,6.550121155889019,6.550121155889019,0,0,0,0,0,0,0,1,1,0,6.875043640817365,0,0,0,33.43,59.21,3,1,0,1,12,3,0,882,0,0,0 +9248,11347,20676,20677,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,4.984337377718759,5.377850625753514,1,0,-9,56,0,2,-122.4403708028259,0,0,0,78,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.15849052012666,4.931443141753008,0,0,54.87,40.87,6,1,0,0,2,2,1,324,0,0,0 +9248,11347,20677,20676,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-2,75.6726023517453,0,0,0,80,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.833577652350726,0,0,0,46.64,49.01,2,1,0,0,2,2,1,324,0,0,0 +9249,11348,20678,20679,-9,-9,2,1,1,66,1,0,0,0,2,-9,2,1,0,4,8.21078801241632,8.609250317739232,6.39056470569879,1,0,-9,11,0,8,22.43803166291077,0,0,0,58,2,3,1,2,3,2019,1,1,6,0,40,40,15,1,0,1,0,11.96642550313,11.96642550313,0,0,0,0,0,0,0,1,1,0,.5491266421729031,6.385153187469784,0,0,60.13,49.27,6,1,0,0,5,4,1,1526.5,0,0,0 +9249,11348,20679,20678,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.470674336207721,7.697650253074803,0,1,0,-9,11,0,-8,7.072744162559304,0,0,0,66,2,4,1,2,2,2019,1,2,21,9,30,30,15,1,9,1,0,7.191340435651828,7.191340435651828,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.6,52.77,4,1,0,0,5,4,1,1526.5,0,0,0 +9250,11349,20680,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,4,8.064326972016863,8.055621949177088,4.19084379536218,3,0,0,0,-9,0,-964.0313822350296,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,37,37,15,1,0,-9,0,12.116202326815,12.116202326815,0,0,0,0,0,0,0,0,0,0,5.398638900635556,0,0,3,53.86,57.86,6,1,0,0,5,4,1,956,0,0,0 +9251,11350,20681,20682,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,3,8.228984334871564,7.973686785132586,0,2,0,-9,30,0,3,5.832908520490018,0,0,0,47,2,4,1,1,1,2019,1,2,11,0,35,45,15,1,0,1,0,8.690532819764909,8.690532819764909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,6,1,0,0,9,4,1,641.6666666666666,0,0,0 +9251,11350,20682,20681,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,4,8.298564107984824,8.371820108346203,0,2,0,-9,30,0,-3,11.61023785749138,0,0,0,50,2,3,1,2,2,2019,1,1,12,0,35,38,15,1,0,1,0,13.59343429251254,13.59343429251254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,6,1,0,0,9,4,1,641.6666666666666,0,0,0 +9251,11350,20683,-9,20682,20681,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.374124189349,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,5,1,0,0,9,4,1,641.6666666666666,0,0,0 +9252,11351,20684,20685,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,5,8.436330132896479,8.604318717638607,0,1,0,-9,7,0,0,1.872609786703203,0,0,0,61,2,3,1,2,2,2019,1,2,11,0,37,37,15,1,0,1,0,15.20036586377842,15.20036586377842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,6,1,0,0,12,4,1,432.5,0,0,0 +9252,11351,20685,20684,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.311446129900039,7.257245011223984,0,1,0,-9,7,0,0,59.42344783664751,0,0,0,61,2,5,1,-9,2,2019,1,1,21,10,15,15,15,1,10,1,0,12.38092507628721,12.38092507628721,0,0,0,0,0,0,0,0,0,0,0,0,17.61794576976624,3,31.98,51.65,3,1,0,0,12,4,1,432.5,0,0,0 +9253,11352,20686,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,3,8.271229972375577,8.747409533987392,0,3,0,0,0,-9,0,-946.1847903386767,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,38,48,15,1,1,-9,0,12.72355133613288,12.72355133613288,0,0,0,0,0,0,0,0,0,0,4.835046874787301,0,0,0,50.63,50.99,6,1,0,0,11,5,1,788,0,0,0 +9254,11353,20687,20688,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,44,0,3,-156.804577676031,0,0,0,71,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,10.62882606490056,7.918695056705443,0,0,0,56.25272413047563,1,1,0,0,0,0,0,50.38,30.78,7,1,0,0,9,2,0,2545.5,0,0,0 +9254,11353,20688,20687,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,6.413852677124744,5.968518538767459,1,0,-9,44,0,-3,35.57224901897586,0,0,0,74,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,3.413897103371603,1.432444269277114,0,0,0,0,1,1,0,5.589491815754145,5.70912068247485,0,0,58.76,24.43,7,1,0,0,9,2,0,2545.5,0,0,0 +9255,11354,20689,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,4,7.931911922316387,7.914784125798657,0,3,0,0,0,-9,0,-1030.209868151055,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,10,15,1,0,-9,0,10.05952538025991,10.05952538025991,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52.48,54.33,5,1,0,0,9,4,0,586,0,0,0 +9255,11355,20690,-9,20689,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,3,7.829856858612213,8.008000472264024,0,3,0,0,0,-9,0,-999.8260603570599,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,17,5,38,38,15,1,5,-9,1,10.68411102052882,10.68411102052882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.23,61.73,4,1,0,0,9,4,0,259,0,0,0 +9255,11356,20691,-9,20689,-9,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,8.864650521265435,8.705188357746799,0,3,0,0,0,-9,0,-989.808490968957,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,15,3,45,43,15,1,3,-9,1,12.88282412848065,12.88282412848065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.69,60.23,3,1,0,0,9,5,0,1014,0,0,0 +9255,11357,20692,-9,20689,-9,4,1,0,23,2,0,0,0,2,-9,2,1,0,3,8.026825781899564,8.088736233824473,0,3,0,0,0,-9,0,-982.7533709530719,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,48,0,15,1,0,-9,1,8.821995302743501,8.821995302743501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,6,1,0,0,9,4,0,283,0,0,0 +9256,11358,20693,20694,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,4,8.64832698116245,8.150026734156496,0,1,0,-9,26,0,-4,-33.1610846728505,0,0,0,49,1,4,1,3,3,2019,1,2,10,0,42,42,15,1,0,1,0,16.40445522761762,16.40445522761762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.71,40.78,6,3,0,0,8,5,1,1265,0,0,0 +9256,11358,20694,20693,20695,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,4,8.407879194054413,8.186874370869258,0,1,0,-9,8,0,4,-107.4664134479986,0,0,0,45,2,4,1,2,-9,2019,1,1,9,0,42,42,15,1,1,1,0,15.02873449849467,15.02873449849467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,5,1,1265,0,0,0 +9256,11359,20695,-9,-9,-9,3,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-941.8334858360639,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.825946564862049,0,0,0,52,45,6,3,0,0,8,1,1,562,0,0,0 +9257,11360,20696,20697,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,2,8.046035401253915,8.311892714878205,0,1,0,-9,6,0,0,45.53136939743309,0,0,0,55,2,4,1,-9,-9,2019,1,1,12,1,51,54,15,1,1,1,0,7.70167247294478,7.70167247294478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,49.81,2,1,0,0,6,4,0,2173,0,0,0 +9257,11360,20697,20696,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.98224612404586,7.735356726622599,0,1,0,-9,39,0,0,80.44965321287887,0,0,0,55,2,2,1,3,3,2019,1,2,16,5,45,58,15,1,5,1,0,6.380538405196726,6.380538405196726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.63,46.32,7,1,0,0,6,4,0,2173,0,0,0 +9258,11361,20698,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,8,3,1,1,0,5.985419116020047,6.070987289629839,3,0,0,0,-9,0,-1083.292368680536,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.323411408120671,0,0,0,52.58,18.23,6,1,0,0,7,2,1,129,0,0,0 +9259,11362,20699,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,8.278701709972047,8.467243566856247,3,0,0,0,-9,0,-1076.177330332324,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.087973038963058,8.343984649468299,4.550758766191619,3,52,47,5,1,0,0,5,4,0,626,0,0,0 +9260,11363,20700,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,4,9.698438274559379,9.426717573759028,0,3,0,0,0,-9,0,-1029.720581350176,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,49,53,15,1,0,-9,0,39.50748324472939,39.50748324472939,0,0,0,0,0,0,0,0,0,0,2.910810588095481,0,0,0,55.36,54.24,6,1,0,0,7,5,1,647,0,0,0 +9261,11364,20701,20702,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,8.026563585978383,8.033401586155474,1,0,-9,9,0,-1,-3.861828180224682,0,0,0,79,3,4,3,-9,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.261374000286156,8.160452987217438,0,0,55.79,52.62,6,1,0,0,11,3,1,556,0,0,0 +9261,11364,20702,20701,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,4,0,5.032286913958073,4.842671520772775,1,0,-9,9,0,1,-49.76708948813656,0,0,0,78,2,4,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.99626094330158,5.110123151218203,0,0,41.85,59.17,3,1,0,0,11,3,1,556,0,0,0 +9262,11365,20703,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,2,8.191386843984233,8.144557471568818,0,3,0,0,0,-9,0,-946.9997497882511,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,11,40,35,15,1,11,-9,0,7.943310863734018,7.943310863734018,0,0,0,0,0,0,0,0,0,0,1.51143969454473,0,0,0,36.94,49.35,2,1,0,0,9,4,1,848,0,0,0 +9263,11366,20704,-9,20706,20707,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.2858887251316,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,4,0,0,9,4,1,849,0,0,0 +9263,11366,20705,-9,20706,20707,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1009.207575002799,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,4,0,0,9,4,1,849,0,0,0 +9263,11366,20706,20707,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,5,8.163026509117014,8.170142907317116,0,2,0,-9,7,0,-13,-77.26692798631034,0,0,1,51,1,5,1,-9,-9,2019,1,1,6,0,42,45,15,1,0,1,0,7.500077294308509,7.500077294308509,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,6,4,0,0,9,4,1,849,0,0,0 +9263,11366,20707,20706,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,5,8.513503679287561,8.660674716276539,0,2,0,-9,11,0,13,-66.85510640760275,0,0,0,38,2,5,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,10.66050671635649,10.66050671635649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,4,0,0,9,4,1,849,0,0,0 +9264,11367,20708,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-965.6115257297455,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,3,0,0,15,3,3,-9,0,0,0,1,7.201859964551913,0,3.17601291680693,0,0,0,1,1,0,6.091738917741414,0,0,0,57.15,13.47,6,1,0,0,13,1,1,266,0,0,0 +9265,11368,20709,20710,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,4,6.891869514685136,6.967832752407517,0,2,0,-9,5,0,-4,71.94604838972734,0,1,1,32,2,4,1,-9,-9,2019,1,1,16,4,20,24,15,1,4,1,0,5.419331456440889,5.419331456440889,0,0,0,0,0,0,0,1,1,0,6.120952350705306,0,0,0,53.7,42.72,6,1,0,0,7,2,0,699,0,0,0 +9265,11368,20710,20709,-9,-9,1,1,1,32,1,1,1,0,2,-9,1,1,0,4,0,0,0,2,0,-9,5,0,4,39.90655360314392,0,0,0,28,1,4,1,1,1,2019,1,2,11,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.982601585527972,0,0,0,48.87,58.55,4,1,0,0,7,2,0,699,0,0,0 +9265,11368,20711,-9,20709,20710,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1031.156822258533,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,2,0,699,0,0,0 +9266,11369,20712,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,2,7.807068350747498,8.069352706767395,5.607898994880953,4,0,0,0,-9,0,-946.1577632276027,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,31,33,15,1,1,-9,0,11.96077294992095,11.96077294992095,0,0,0,0,0,0,0,1,1,0,5.919272376024403,0,0,0,53.26,35.3,6,1,0,0,11,3,1,610.6666666666666,0,0,0 +9266,11369,20713,-9,20712,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1067.038711252923,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,3,1,610.6666666666666,0,0,0 +9266,11369,20714,-9,20712,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1064.251996713386,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,3,1,610.6666666666666,0,0,0 +9267,11370,20715,20716,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,4,7.777365939446883,7.753490520920827,0,1,0,-9,5,0,-6,-110.0696745265351,0,1,1,34,2,3,1,2,2,2019,1,2,6,0,34,52,15,1,0,1,0,8.37287585127836,8.37287585127836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,11,4,1,1041,0,0,0 +9267,11370,20716,20715,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,3,8.170208744476112,8.431426493248377,0,1,0,-9,5,0,6,19.73238290729855,0,0,0,28,1,4,1,-9,-9,2019,1,1,3,1,38,57,15,1,1,1,0,10.35286245302058,10.35286245302058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,11,4,1,1041,0,0,0 +9268,11371,20717,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-994.3878377147719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,1,0,0,8,1,0,181,0,0,0 +9269,11372,20718,-9,20721,20720,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.9963904516545,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,5,1,508.5,0,0,0 +9269,11372,20719,-9,20721,20720,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.990453881821,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,5,1,508.5,0,0,0 +9269,11372,20720,20721,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,3,8.871292409505514,8.852893452597918,0,2,0,-9,7,0,6,-24.91324225857462,0,0,0,36,2,4,1,2,2,2019,1,1,7,0,42,35,15,1,0,1,0,19.88126204228899,19.88126204228899,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.19,47.9,6,1,0,0,1,5,1,508.5,0,0,0 +9269,11372,20721,20720,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,4,8.490971714092861,8.219496398405703,0,2,0,-9,17,0,-6,85.50797323418689,0,0,1,42,2,3,1,2,3,2019,1,2,11,0,30,25,15,1,0,1,0,19.84961272964515,19.84961272964515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,2,1,0,0,1,5,1,508.5,0,0,0 +9270,11373,20722,-9,20724,20723,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.829544211485,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,1491.5,0,0,0 +9270,11373,20723,20724,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,3,9.143337880808513,8.816738321622145,0,2,0,-9,13,0,1,-52.62318712163219,0,0,0,34,1,5,1,2,2,2019,1,1,16,5,45,40,15,1,5,1,0,15.40096755022858,15.40096755022858,0,0,0,0,0,0,0,1,1,0,1.170229415630567,0,0,0,46.61,56.93,6,1,0,0,11,4,1,1491.5,0,0,0 +9270,11373,20724,20723,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,5,8.040142956665726,8.076534741305871,0,2,0,-9,13,0,-1,86.54365515922291,0,0,1,35,1,3,1,1,2,2019,1,2,10,1,38,19,15,1,1,1,0,7.49327305346302,7.49327305346302,0,0,0,0,0,0,0,1,1,0,.5192291113983919,0,0,0,57.06,57.76,6,1,0,0,11,4,1,1491.5,0,0,0 +9270,11373,20725,-9,20724,20723,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.7367498594809,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,1491.5,0,0,0 +9271,11374,20726,20727,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,2,8.545544218503055,8.585426542726017,0,1,0,-9,6,0,-3,-166.4783108739102,0,0,0,51,3,4,1,-9,2,2019,1,1,10,0,45,45,15,1,0,1,0,11.09500481152665,11.09500481152665,0,0,0,0,0,0,0,0,0,0,1.187112504791204,0,0,0,52.24,50.75,7,1,0,0,10,5,1,489,0,0,0 +9271,11374,20727,20726,-9,-9,1,1,1,51,1,0,0,0,3,-9,1,1,0,4,8.021968448543863,7.776007317263293,0,1,0,-9,6,0,3,51.24129788168552,0,0,0,48,3,2,1,3,2,2019,1,2,9,0,35,35,15,1,0,1,0,9.652209320166648,9.652209320166648,0,0,0,0,0,0,0,0,0,0,2.908448585232862,0,0,0,58.9,45.74,2,1,0,0,10,5,1,489,0,0,0 +9272,11375,20728,20729,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,3,8.006965957253826,7.987462786680815,0,1,0,-9,31,0,10,-78.80290616863816,0,0,0,53,1,2,1,2,1,2019,1,2,12,0,39,40,15,1,0,1,0,7.593661813074406,7.593661813074406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.95,46.03,5,1,0,0,7,4,1,635,0,0,0 +9272,11375,20729,20728,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,2,8.442878759109856,8.054430279583672,0,1,0,-9,31,0,-10,-6.3120321487765,0,0,0,63,1,3,1,2,2,2019,1,1,13,3,43,40,15,1,3,1,0,10.39420283499585,10.39420283499585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.17,42.09,5,1,0,0,7,4,1,635,0,0,0 +9272,11376,20730,-9,20729,20728,3,1,1,22,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1030.010942697066,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,37,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.65,59.49,5,1,0,0,7,1,1,1068,0,0,0 +9273,11377,20731,20732,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,5.923571318119891,6.407949293650271,1,0,-9,34,0,3,-41.39515825909252,0,0,0,72,2,3,3,-9,-9,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.750788796821511,6.259807238748261,0,0,51.41,56.15,6,1,0,0,9,2,1,426,0,0,0 +9273,11377,20732,20731,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,6.973188887010768,7.096099141544667,1,0,-9,34,0,-3,-182.612263371557,0,0,0,75,3,3,3,1,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.566502396201567,6.951500077310119,0,0,53.26,44.26,6,1,0,0,9,2,1,426,0,0,0 +9274,11378,20733,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,4,0,7.573259654925384,7.437244198477694,3,0,0,0,-9,0,-1204.702256595504,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.835696164999867,7.252792795121677,0,0,57.16,56.15,6,1,0,0,9,3,1,927,0,0,0 +9275,11379,20734,20735,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.138220174214055,8.168698323427696,0,1,0,-9,8,0,12,-115.7083834518461,0,0,0,44,2,2,1,3,2,2019,1,1,6,0,38,38,15,1,0,1,0,8.957157906244607,8.957157906244607,0,0,0,0,0,0,0,0,0,0,2.646048825176498,0,0,0,54.96,53.17,5,1,0,0,5,5,1,942,0,0,0 +9275,11379,20735,20734,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,2,8.251688539600442,8.098037116759107,0,1,0,-9,8,0,-12,74.71715589305894,0,0,1,56,2,3,1,2,2,2019,1,2,11,0,76,42,15,1,0,1,0,5.79811238298094,5.79811238298094,0,0,0,0,0,0,0,0,0,0,5.193838773129849,0,0,0,44.38,36.84,5,1,0,0,5,5,1,942,0,0,0 +9276,11380,20736,20737,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,4,7.957898210069749,8.060979498665905,0,2,0,-9,28,0,-4,88.50382742230686,0,0,0,58,1,4,1,3,1,2019,1,2,10,0,15,20,15,1,0,1,0,21.7557265446073,21.7557265446073,0,0,0,0,0,0,0,1,1,0,8.121862006441336,0,0,0,57.41,54.88,6,3,0,0,7,3,1,657.5,0,0,0 +9276,11380,20737,20736,-9,-9,2,1,1,58,1,0,1,0,1,-9,1,1,0,4,7.434326785332131,7.470512976570619,0,2,0,-9,28,0,4,-67.73200591988628,0,0,0,54,1,4,1,3,1,2019,1,1,8,0,30,60,15,1,0,1,0,6.215569791871542,6.215569791871542,0,0,0,0,0,0,0,1,1,0,4.368426195325227,0,0,0,54,54,6,3,0,0,7,3,1,657.5,0,0,0 +9276,11381,20738,-9,20736,20737,3,1,0,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-973.7939293322987,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,7,0,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.11,56.52,6,3,0,0,7,3,1,1582,0,0,0 +9277,11382,20739,20740,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,3,7.909971883566945,7.828275238619709,0,1,0,-9,39,0,1,56.30238412568181,0,0,0,60,3,4,1,3,3,2019,1,2,12,0,38,30,15,1,0,1,0,7.698087575686675,7.698087575686675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,4,1,0,0,6,3,0,781.5,0,0,0 +9277,11382,20740,20739,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,4,6.540867463850356,6.499561236129775,0,1,0,-9,10,0,-1,74.70161924523552,0,0,0,61,3,3,1,-9,-9,2019,1,1,15,5,10,10,15,1,5,1,0,7.899889241283358,7.899889241283358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.42,50.43,4,1,0,0,6,3,0,781.5,0,0,0 +9278,11383,20741,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,2,0,6.927087687957058,6.908888383230003,3,0,0,0,-9,0,-955.5198941857759,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,.9217242569082875,0,0,1,1,0,0,6.728229651764947,0,0,52.46,17.18,3,1,0,0,10,2,1,127,0,0,0 +9278,11384,20742,-9,20741,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,5,8.804188543872902,8.931630547125408,0,3,0,0,0,-9,0,-1072.887664120434,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,1,22.25211909755877,22.25211909755877,0,0,0,0,0,0,0,1,1,0,5.052077097504567,0,0,3,48.77,60.16,6,1,0,0,10,5,1,786,0,0,0 +9279,11385,20743,-9,20745,20744,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.2515565536822,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,1,696.6666666666666,0,0,0 +9279,11385,20744,20745,-9,-9,1,1,1,25,1,1,1,0,2,-9,2,1,0,3,8.239812102057259,8.067619443750576,5.775358232768846,2,0,-9,4,0,1,73.02023672574579,0,1,0,24,2,3,1,2,2,2019,1,2,14,2,50,46,15,1,2,1,0,8.512207175767312,8.512207175767312,0,0,0,0,0,0,0,1,1,0,6.48512687905606,0,0,0,31.93,58.41,4,1,0,0,9,3,1,696.6666666666666,0,0,0 +9279,11385,20745,20744,-9,-9,2,1,0,24,1,1,1,0,2,-9,2,1,0,3,6.974714261551232,6.817426263562196,0,2,0,-9,4,0,-1,38.54898494032049,0,1,1,25,2,3,1,-9,-9,2019,1,1,26,10,16,0,15,1,10,1,0,6.688830005293859,6.688830005293859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.62,56.19,3,1,0,0,9,3,1,696.6666666666666,0,0,0 +9280,11386,20746,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-958.2654975834748,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.44,44.93,4,1,0,0,4,1,1,567,0,0,0 +9281,11387,20747,-9,-9,-9,1,1,0,41,3,0,2,0,2,-9,1,1,0,4,4.399196683242408,6.042492160350731,6.346632440919531,4,0,0,0,-9,0,-964.7178731892482,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,16,20,15,1,0,-9,0,.559431062650426,.559431062650426,0,0,0,0,0,0,0,1,1,0,6.391308725823588,0,0,0,48.87,58.55,6,1,0,0,9,2,0,331.6666666666667,0,0,0 +9281,11387,20748,-9,20747,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,4,0,3.614209988896479,3.411970808874035,4,0,0,0,-9,0,-1042.40737374832,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.232330200790485,0,0,0,48.77,57.64,6,1,0,0,9,2,0,331.6666666666667,0,0,0 +9281,11387,20749,-9,20747,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1054.856106342785,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,2,0,331.6666666666667,0,0,0 +9282,11388,20750,20751,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,43,0,-8,83.804645118553,0,0,0,74,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,3,0,0,6,2,1,644,0,0,0 +9282,11388,20751,20750,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,6.953885175487979,7.142334112363399,1,0,-9,43,0,8,21.44869432366312,0,0,0,66,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.72528764694092,0,0,52,47,5,3,0,0,6,2,1,644,0,0,0 +9283,11389,20752,20753,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,7.953842597414877,7.503036157763618,1,0,-9,46,0,-4,-68.04185238300258,0,0,0,70,3,1,3,2,2,2019,4,2,7,0,0,20,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.977046958247707,8.009276465471702,26.70203793656182,1,57.33,53.46,6,1,0,0,8,3,1,980,0,0,0 +9283,11389,20753,20752,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,46,0,4,39.95051339057936,0,0,0,66,1,3,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,0,4.946801505455795,0,0,0,0,1,1,0,0,0,0,0,49.52,18.67,7,1,0,0,8,3,1,980,0,0,0 +9284,11390,20754,20757,-9,-9,1,1,0,42,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-1,-51.97478151652,0,0,1,43,2,1,1,2,2,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.66613848884783,3,34.09,53.43,3,1,0,0,5,3,0,1065.6,0,0,0 +9284,11390,20755,-9,20754,20757,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.234756793095,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,0,1065.6,0,0,0 +9284,11390,20756,-9,20754,20757,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-896.7734669645595,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,0,1065.6,0,0,0 +9284,11390,20757,20754,-9,-9,2,1,1,43,1,0,3,0,2,-9,2,1,0,1,8.195942099797778,8.211439502654942,0,2,0,-9,7,0,1,-73.59418277903336,0,0,0,42,2,3,3,2,2,2019,2,1,12,0,38,41,15,1,0,3,0,9.02669707383181,9.02669707383181,0,0,0,0,0,0,0,1,1,0,0,0,11.4522326886305,3,38.56,38.2,3,1,0,0,5,3,0,1065.6,0,0,0 +9284,11390,20758,-9,20754,20757,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.870207697906,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,0,1065.6,0,0,0 +9285,11391,20759,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,2,8.167226643888476,7.973565751901003,0,1,0,-9,13,0,-13,41.74950699442426,0,0,0,-9,-9,-9,-9,-9,3,2019,2,2,6,0,60,45,15,1,0,-9,0,7.646667218875816,7.646667218875816,0,0,0,0,0,0,0,1,1,0,0,0,123.7632423351773,1,55.2,49.4,5,1,0,0,1,4,0,282,0,0,0 +9285,11392,20760,-9,-9,-9,2,1,1,60,2,0,0,0,3,-9,8,3,1,1,6.077521358736974,6.184576532843901,0,1,0,-9,13,0,13,28.96746990037472,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,21,7,6,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.75,32.84,2,1,0,0,1,4,0,1649,0,0,0 +9286,11393,20761,-9,20763,20762,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.606724869912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,8,5,0,857.3333333333334,0,0,0 +9286,11393,20762,20763,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,2,8.631471567662997,8.458501674782203,0,2,0,-9,21,0,1,-54.74692431170644,-9,0,0,42,1,5,1,2,1,2019,1,2,14,2,32,0,15,1,2,1,0,19.74838822983804,19.74838822983804,0,0,0,0,0,0,0,0,0,0,5.682495429500601,0,0,0,29.96,46,3,1,0,0,8,5,0,857.3333333333334,0,0,0 +9286,11393,20763,20762,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,5,9.441603599590003,9.301897233044247,0,2,0,-9,21,0,-1,-71.19572779259427,0,0,1,43,1,2,1,1,1,2019,1,1,13,3,65,103,15,1,3,1,0,23.69895987093977,23.69895987093977,0,0,0,0,0,0,0,0,0,0,4.167751467403155,0,0,0,54.63,58.83,6,1,0,0,8,5,0,857.3333333333334,0,0,0 +9287,11394,20764,20765,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,5,8.631515235032664,8.794549199515961,0,1,0,-9,10,0,12,65.97433896676529,0,0,0,42,1,5,1,2,2,2019,1,1,6,0,37,38,15,1,0,1,0,17.99497094837507,17.99497094837507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,6,1,0,0,12,5,1,742,0,0,0 +9287,11394,20765,20764,-9,-9,1,1,0,42,1,0,0,0,1,-9,2,1,0,5,8.568431542150684,8.637819007778251,0,1,0,-9,10,0,-12,67.81335512835621,0,0,1,54,2,5,1,2,2,2019,1,2,5,0,40,37,15,1,0,1,0,13.16024900695637,13.16024900695637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,6,1,0,0,12,5,1,742,0,0,0 +9288,11395,20766,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-976.5503239925778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,6.280783779556336,0,1,1,0,4.034527636532795,0,0,0,47.73,31.99,6,1,0,0,10,1,1,990,0,0,0 +9289,11396,20767,-9,-9,20769,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1083.764575723386,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,1,0,405.6666666666667,0,0,0 +9289,11396,20768,-9,-9,20769,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1010.140932485621,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,4,1,0,405.6666666666667,0,0,0 +9289,11396,20769,-9,20770,20771,1,1,1,37,3,0,3,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-951.4459870852425,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.52,42.22,5,3,0,1,4,1,0,405.6666666666667,0,0,0 +9289,11397,20770,20771,-9,-9,6,1,0,64,1,0,3,0,3,-9,2,1,0,3,6.951532172723991,6.896517188719817,0,2,0,-9,1,-9,4,-42.82752421056412,-9,0,0,60,3,3,1,-9,-9,2019,1,5,11,0,20,0,15,1,2,1,0,8.268774628418816,8.268774628418816,0,0,0,0,0,0,0,1,1,0,0,0,17.70913965896882,3,50,47,5,3,0,0,4,2,0,680.5,0,0,0 +9289,11397,20771,20770,-9,-9,5,1,1,60,1,0,3,0,3,-9,2,1,0,3,7.265905129024731,7.426919693123373,0,2,0,-9,1,-9,-4,1.698259781736799,-9,0,0,64,3,3,1,-9,-9,2019,1,6,10,0,20,0,15,1,1,1,0,8.735824473071379,8.735824473071379,0,0,0,0,0,0,0,1,1,0,0,0,18.87754905961962,3,51,49,5,3,0,0,4,2,0,680.5,0,0,0 +9290,11398,20772,20775,-9,-9,1,1,0,38,1,2,5,0,2,-9,2,1,0,2,7.786531608826943,7.544100665783797,0,2,0,-9,1,-9,4,-117.6078846665007,-9,0,1,34,2,4,1,2,-9,2019,1,6,19,7,17,0,15,1,7,1,0,14.88967995218429,14.88967995218429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.16,53.89,3,2,0,0,9,3,0,662.2857142857143,0,0,0 +9290,11398,20773,-9,20772,20775,4,1,1,7,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1082.085807509543,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,3,0,662.2857142857143,0,0,0 +9290,11398,20774,-9,20772,20775,7,1,0,0,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-984.0211731742322,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,9,3,0,662.2857142857143,0,0,0 +9290,11398,20775,20772,-9,-9,6,1,1,34,1,2,5,0,2,-9,2,1,0,4,8.338956096452769,8.408323140231207,0,2,0,-9,1,-9,-4,46.17739072997576,-9,0,0,38,2,2,1,-9,-9,2019,1,1,10,0,37,0,15,1,1,1,0,14.92043792542216,14.92043792542216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,9,3,0,662.2857142857143,0,0,0 +9290,11398,20776,-9,20772,20775,5,1,0,2,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-925.4273456641678,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,9,3,0,662.2857142857143,0,0,0 +9290,11398,20777,-9,20772,20775,2,1,1,16,2,2,5,1,2,-9,7,2,0,4,0,0,0,2,0,-9,0,-9,0,-921.9985467360004,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.96213003355555,0,0,0,48,59,5,2,0,0,9,3,0,662.2857142857143,0,0,0 +9290,11398,20778,-9,20772,20775,3,1,0,12,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-985.2748593635988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,3,0,662.2857142857143,0,0,0 +9291,11399,20779,20780,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,3,8.414671660298668,8.05713073429958,0,1,0,-9,4,0,0,-67.96791116599567,0,0,0,62,1,3,1,2,2,2019,1,2,11,0,35,35,15,1,2,1,0,10.21335959402764,10.21335959402764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,5,1,0,0,10,5,0,294,0,0,0 +9291,11399,20780,20779,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,3,8.748045707930201,8.643352770887649,0,1,0,-9,4,0,0,86.49057922036157,0,0,0,62,2,3,1,-9,-9,2019,1,1,10,0,50,29,15,1,1,1,0,14.39480549875955,14.39480549875955,0,0,0,0,0,0,0,0,0,0,6.790249601041965,0,0,0,50,49,5,1,0,0,10,5,0,294,0,0,0 +9292,11400,20781,-9,-9,-9,1,1,1,80,3,0,1,0,2,-9,4,3,0,2,0,7.692125880641329,7.313378931231758,4,0,0,0,-9,0,-1011.319917167278,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,1.125844432152629,0,0,0,1,1,0,0,7.207064309980696,0,0,52.15,32.92,4,1,0,0,9,3,1,914,0,0,0 +9293,11401,20782,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1074.490975468835,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,56.57,57.78,6,1,0,0,5,1,0,573,0,0,0 +9294,11402,20783,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1072.60892364613,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,2,1,0,0,4,1,0,558,0,0,0 +9295,11403,20784,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,97,3,0,5,0,0,0,3,0,-9,0,-9,0,-941.8553513416872,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.66,50.23,7,4,0,0,8,1,0,797,0,0,0 +9296,11404,20785,20786,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,8.216545933186097,8.747104559694691,1,0,-9,7,0,-2,27.21235236189734,0,0,0,67,2,4,3,2,2,2019,4,1,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.53315154955173,0,0,57.16,56.15,6,1,0,0,7,4,1,515.5,0,0,0 +9296,11404,20786,20785,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.053932147508049,5.989959073988168,1,0,-9,7,0,2,34.02909007780928,0,0,0,65,1,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.77099618374206,6.119021718252896,0,0,43.54,59.6,6,1,0,0,7,4,1,515.5,0,0,0 +9297,11405,20787,20788,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,5,0,5.825464463638157,5.770256824895247,1,0,-9,7,0,-7,-75.08262596682138,0,0,0,79,3,2,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.233819114118083,6.21899812275055,0,0,62.39,56.71,7,1,0,0,13,5,1,1933.5,0,0,0 +9297,11405,20788,20787,-9,-9,1,1,1,79,1,0,0,0,3,-9,1,1,0,2,9.641372315064446,9.834756020471998,0,1,0,-9,7,0,7,49.55686744380105,0,0,0,72,2,5,3,3,3,2019,2,2,7,0,60,70,15,1,0,4,0,32.0981168839726,32.0981168839726,1,0,0,0,0,0,0,1,1,0,1.046948702696641,0,0,0,56.48,36.43,6,1,0,0,13,5,1,1933.5,0,0,0 +9298,11406,20789,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.761117552584113,7.659358053730932,0,3,0,0,0,-9,0,-950.6243285272088,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,39,40,15,1,1,-9,0,7.013895234543238,7.013895234543238,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.51,52.17,4,1,0,0,12,3,0,778,0,0,0 +9299,11407,20790,-9,20792,20791,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1220.894200076144,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,9,5,1,840,0,0,0 +9299,11407,20791,20792,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,4,8.961814989974624,9.18816248144887,0,2,0,-9,8,0,13,-15.5688693144315,0,0,0,32,2,3,1,2,2,2019,1,2,10,0,45,48,15,1,0,1,0,21.20816652204416,21.20816652204416,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,2,0,0,9,5,1,840,0,0,0 +9299,11407,20792,20791,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,3,6.604480934374394,6.918689271762611,0,2,0,-9,8,0,-13,-.8147142639528171,0,0,1,45,1,4,1,2,2,2019,1,1,11,1,20,11,15,1,1,1,0,6.316354263824886,6.316354263824886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.61,49.68,4,1,0,0,9,5,1,840,0,0,0 +9300,11408,20793,20795,-9,-9,1,1,1,44,1,0,2,0,2,-9,1,1,0,3,8.571067588555163,8.159848421134775,0,2,0,-9,16,0,3,120.1839367428462,0,0,0,41,2,3,1,3,2,2019,1,2,13,2,30,0,15,1,2,1,0,19.67687974711766,19.67687974711766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.89,24.27,3,1,0,0,7,4,1,479.25,0,0,0 +9300,11408,20794,-9,20795,20793,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.050892861612,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,479.25,0,0,0 +9300,11408,20795,20793,-9,-9,2,1,0,41,1,0,2,0,2,-9,2,1,0,3,7.174442784269632,7.656098282283637,0,2,0,-9,16,0,-3,-.9214082099173149,0,0,1,44,2,3,1,2,2,2019,1,1,10,0,37,34,15,1,0,1,0,5.272316853956834,5.272316853956834,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.68,50.04,6,1,0,0,7,4,1,479.25,0,0,0 +9300,11408,20796,-9,20795,20793,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.7315835086234,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,479.25,0,0,0 +9301,11409,20797,20798,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,3,9.199490836230645,8.999313437380822,0,1,0,-9,6,0,-3,-150.9382669681249,0,0,0,57,2,3,3,2,-9,2019,2,2,10,0,38,37,15,1,0,3,0,37.10921425052054,37.10921425052054,0,0,0,0,0,0,0,0,0,0,5.143492797558804,0,0,0,52.12,50.33,6,1,0,0,12,5,1,805,0,0,0 +9301,11409,20798,20797,-9,-9,2,1,1,57,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,6,0,3,-142.0335695145139,0,0,0,54,1,3,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,52.68,5,1,0,0,12,5,1,805,0,0,0 +9301,11409,20799,-9,20797,20798,3,1,0,16,2,0,0,0,2,-9,2,2,0,5,6.630201904111028,6.931019070363886,0,1,0,0,0,-9,0,-1002.36016859218,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,16,5,7,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.39,65.88,5,1,0,0,12,5,1,805,0,0,0 +9302,11410,20800,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1003.189359967378,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,50,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,53.39,49.67,5,1,1,0,13,1,0,343,0,0,0 +9303,11411,20801,20802,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,5,0,6.655792957233182,6.420386483258004,1,0,-9,6,0,-3,33.18880157192356,0,0,0,77,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.379277878417657,6.834215950516191,0,0,57.06,57.76,6,1,0,0,12,2,1,1115.5,0,0,0 +9303,11411,20802,20801,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,5.317321711557155,5.328231400476786,1,0,-9,6,0,3,6.372797373142753,0,0,0,74,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.412305751839774,0,0,60.12,54.8,7,1,0,0,12,2,1,1115.5,0,0,0 +9304,11412,20803,-9,-9,-9,1,1,0,49,3,0,3,0,2,-9,1,1,0,3,8.293851488673223,8.563949251154931,7.630346317346201,4,0,0,0,-9,0,-1144.370495881683,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,60,8,15,1,0,-9,0,7.3527175841896,7.3527175841896,0,0,0,0,0,0,0,1,1,0,6.434595502827766,0,124.5575931383245,3,43.46,54.23,6,1,0,0,10,3,1,2532.5,0,0,0 +9304,11412,20804,-9,20803,-9,2,1,1,16,2,0,3,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1026.40102617364,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.8655684837078355,3,33.74,63,5,1,0,0,10,3,1,2532.5,0,0,0 +9305,11413,20805,20806,-9,-9,1,1,1,58,1,1,1,0,2,-9,1,1,0,3,8.387171789304062,8.390261246699584,0,2,0,-9,8,0,6,100.7266976789189,0,0,0,52,2,3,1,3,2,2019,1,2,1,0,35,50,15,1,0,1,0,15.23309124753655,15.23309124753655,0,0,0,0,0,0,0,1,1,0,.2604181487882258,0,0,0,46.48,53.76,3,4,0,0,8,5,1,306.5,0,0,0 +9305,11413,20806,20805,-9,-9,2,1,0,52,1,1,1,0,2,-9,2,1,0,3,8.847560075816972,8.664934160731006,0,2,0,-9,8,0,-6,8.729238183315283,0,0,0,58,2,3,1,2,2,2019,1,1,25,10,50,0,15,1,10,1,0,13.5192561222991,13.5192561222991,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.49,54.86,2,1,0,0,8,5,1,306.5,0,0,0 +9305,11414,20807,-9,20808,-9,4,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-999.9048180661594,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,8,3,1,1175,0,0,0 +9305,11414,20808,-9,20806,20805,3,1,0,31,3,1,1,0,2,-9,2,1,0,3,7.566593913645704,6.765595167341508,0,3,0,0,0,-9,0,-1102.222514010982,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,22,10,16,0,15,1,10,-9,1,12.27138166734229,12.27138166734229,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.81,52.57,4,2,0,1,8,3,1,1175,0,0,0 +9306,11415,20809,-9,20810,20811,2,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-957.7155551687241,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.184180450531068,3,57.06,57.76,5,1,0,0,12,2,0,774,0,0,0 +9306,11415,20810,20811,-9,-9,1,1,0,34,1,0,2,0,1,-9,3,3,0,1,0,6.62244664643306,7.146049135537071,2,0,-9,3,0,-2,-36.52170616082812,0,0,1,36,2,4,1,2,2,2019,3,4,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.939071361415001,0,0,0,40.15,33.33,6,1,1,0,12,2,0,774,0,0,0 +9306,11415,20811,20810,-9,-9,4,1,1,36,1,0,2,0,2,-9,2,1,0,4,7.235763670572005,7.556200684472035,0,2,0,-9,3,0,2,-29.15296607675376,0,0,0,34,1,1,3,-9,-9,2019,2,1,6,0,18,20,15,1,0,3,0,9.947778354527404,9.947778354527404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,2,0,774,0,0,0 +9307,11416,20812,20813,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,3,6.965360584877083,7.207136802183151,0,2,0,-9,20,0,-8,64.74781871159014,0,0,0,55,2,1,3,2,2,2019,2,1,7,0,18,0,15,1,0,3,0,8.670503001587816,8.670503001587816,0,0,0,0,0,0,0,1,1,0,0,0,33.74527142625638,2,45.15,49.59,6,1,0,0,13,2,1,433.5,0,0,0 +9307,11416,20813,20812,-9,-9,1,1,1,55,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,30,0,8,69.63150593296258,0,0,0,47,2,3,1,2,3,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.13,32.95,4,1,0,0,13,2,1,433.5,0,0,0 +9307,11416,20814,-9,20812,20813,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.0914153914167,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,2,1,433.5,0,0,0 +9307,11416,20815,-9,20812,20813,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.223829552869,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,13,2,1,433.5,0,0,0 +9308,11417,20816,-9,-9,-9,1,1,0,43,3,0,1,0,1,-9,3,3,0,4,0,6.712092367834615,6.639064000708252,4,0,0,0,-9,0,-945.8772271285834,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,5,0,24,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.032902371727633,0,9.563841899535168,3,21.93,63.94,6,1,1,0,10,2,0,275.5,0,0,0 +9308,11417,20817,-9,20816,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1029.916782315971,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,2,0,275.5,0,0,0 +9309,11418,20818,-9,20820,20821,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.5195870435,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,1,661,0,0,0 +9309,11418,20819,-9,20820,20821,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.996867479693,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,10,4,1,661,0,0,0 +9309,11418,20820,20821,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,7.252586065154174,7.111480891689928,0,2,0,-9,15,0,-8,30.55211147340164,0,0,1,51,2,3,1,2,2,2019,1,2,6,0,22,23,15,1,0,1,0,7.004453850968113,7.004453850968113,0,0,0,0,0,0,0,1,1,0,.3425229392616572,0,0,0,54.79,55.86,6,1,0,0,10,4,1,661,0,0,0 +9309,11418,20821,20820,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,3,8.722336182573144,8.869992722238111,0,2,0,-9,15,0,8,15.41097858273111,0,0,0,43,2,4,1,1,2,2019,1,1,9,0,55,45,15,1,0,1,0,11.35779407801388,11.35779407801388,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,10,4,1,661,0,0,0 +9310,11419,20822,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,4,8.240020546694931,7.82363246201382,5.678502956744435,4,0,0,0,-9,0,-1008.910289324643,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,0,9.799680484302195,9.799680484302195,0,0,0,0,0,0,0,1,1,0,5.821728641394375,0,0,0,47.2,58.1,6,1,0,0,4,3,0,227,0,0,0 +9311,11420,20823,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,2,0,7.905761591795119,7.502196700304315,3,0,0,0,-9,0,-944.4965832998424,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.665746667162132,7.817830610092349,0,0,51.91,28.99,6,1,0,0,9,3,1,1779,0,0,0 +9312,11421,20824,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-970.085396316552,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,4,0,0,8,1,0,928,0,0,0 +9312,11422,20825,-9,-9,-9,2,1,0,59,2,0,0,0,3,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1024.892348200507,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,48,5,4,0,0,8,1,0,1384,0,0,0 +9313,11423,20826,20827,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,5,0,7.106882500993876,6.937416614829212,1,0,-9,49,0,-3,15.98440787084283,0,0,0,70,1,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.293314138910524,0,0,57.63,56.14,7,1,0,0,7,4,1,938.5,0,0,0 +9313,11423,20827,20826,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,8.316198431871666,8.028172089427123,1,0,-9,49,0,3,-68.18913006623605,0,0,0,67,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.928744252812412,8.527832151547678,0,3,62.39,56.71,7,1,0,0,7,4,1,938.5,0,0,0 +9314,11424,20828,20829,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,5,9.134158645292292,9.073803598825016,0,2,0,-9,8,0,-7,-45.61486397662744,0,0,0,50,1,3,1,-9,-9,2019,1,1,26,11,64,59,15,1,11,1,0,17.84043583182493,17.84043583182493,0,0,0,0,0,0,0,1,1,0,3.721291579616062,0,0,0,25.44,67.91,6,1,0,0,6,5,0,506.3333333333333,0,0,0 +9314,11424,20829,20828,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,3,7.794681503417956,7.813160489140182,0,2,0,-9,8,0,7,-1.151260513391019,0,0,0,43,2,5,1,3,3,2019,1,2,20,8,30,30,15,1,8,1,0,11.49537642821747,11.49537642821747,0,0,0,0,0,0,0,1,1,0,3.399065360354547,0,0,0,43.15,49.04,5,1,0,0,6,5,0,506.3333333333333,0,0,0 +9314,11424,20830,-9,20829,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1209.416920974808,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,5,0,506.3333333333333,0,0,0 +9315,11425,20831,20832,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,3,0,7.250733936328781,6.833334259465167,1,0,-9,59,0,5,-38.2966390594944,0,0,0,78,3,3,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.5150862717776555,6.897865092394471,0,0,54.61,49.13,6,1,0,0,12,3,1,508,0,0,0 +9315,11425,20832,20831,-9,-9,1,1,0,78,1,0,0,0,3,-9,2,1,0,3,6.404619133731074,6.905838686284633,6.200722874986206,1,0,-9,59,0,-5,-25.1244593047906,0,0,0,83,2,3,3,-9,-9,2019,2,2,6,0,15,0,15,1,0,4,0,3.815451144785027,3.815451144785027,1,0,0,0,0,0,0,1,1,0,1.192333796172973,5.628572565888095,0,0,52,46,5,1,0,0,12,3,1,508,0,0,0 +9316,11426,20833,-9,-9,-9,1,1,1,48,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1008.412556920404,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.55,19.5,6,1,0,0,4,1,0,241,0,0,0 +9317,11427,20834,20835,-9,-9,2,1,1,57,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,7,0,6,0,0,0,0,51,3,3,3,3,1,2019,4,1,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.44,59.97,3,3,1,0,2,1,1,241,0,0,0 +9317,11427,20835,20834,-9,-9,1,1,0,51,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,34,0,-6,0,0,0,0,57,3,3,3,3,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.713934758423165,3,43.96,55.64,6,3,0,0,2,1,1,241,0,0,0 +9317,11428,20836,-9,20835,20834,4,1,1,28,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-994.5766383697455,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,31.08,5,3,1,0,2,1,1,1000,0,0,0 +9318,11429,20837,20838,-9,-9,1,1,1,52,1,0,3,0,2,-9,1,1,0,3,6.810649387696418,6.384767312543956,0,2,0,-9,7,0,8,-62.89058907633012,0,0,0,44,3,3,3,3,3,2019,2,2,19,7,16,36,15,1,7,3,0,4.596720336996596,4.596720336996596,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.07,39.06,1,3,0,0,6,2,1,387,0,0,0 +9318,11429,20838,20837,-9,-9,2,1,0,44,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-8,-29.4121167666303,0,0,1,52,2,3,1,3,3,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.51409033017785,3,37.73,46.28,3,3,0,0,6,2,1,387,0,0,0 +9318,11429,20839,-9,20838,20837,9,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1047.367490820066,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,6,2,1,387,0,0,0 +9318,11429,20840,-9,20838,20837,8,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1069.547532769327,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,6,2,1,387,0,0,0 +9318,11429,20841,-9,20838,20837,7,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1033.101661069951,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,6,2,1,387,0,0,0 +9318,11430,20842,-9,20838,20837,3,1,0,25,2,0,3,0,1,-9,2,1,0,4,7.843494839563094,7.621529279950878,0,3,0,0,0,-9,0,-1026.672384707594,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,47,38,15,1,1,-9,1,7.192330996243938,7.192330996243938,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.31,42.43,4,3,0,0,6,3,1,280,0,0,0 +9318,11431,20843,-9,20838,20837,4,1,0,24,2,0,3,0,1,1,2,1,0,4,7.930065137537536,8.144498406097766,0,3,0,0,0,-9,0,-958.7530319532617,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,45,0,15,1,2,-9,1,7.20089343610792,7.20089343610792,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,3,0,0,6,4,1,699,0,0,0 +9318,11432,20844,-9,20838,20837,6,1,0,20,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-811.9874100265633,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,31,11,0,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.45,59.24,4,3,0,0,6,1,1,1605,0,0,0 +9319,11433,20845,20846,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,5,10.6090458640543,0,0,0,66,2,3,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.745189056695309,0,0,0,38.75,48.22,3,1,0,0,11,2,1,642.5,0,0,0 +9319,11433,20846,20845,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,7.317788452720521,7.518857795991048,1,0,-9,6,0,-5,13.31461743076049,0,0,0,71,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.289367757007678,7.103052133050491,0,0,54.37,54.8,6,1,0,0,11,2,1,642.5,0,0,0 +9320,11434,20847,20849,-9,-9,2,1,0,35,1,0,2,0,2,-9,8,3,1,3,0,0,0,2,0,-9,3,0,-10,0,0,0,1,45,3,4,3,-9,-9,2019,4,1,14,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.93,24.68,6,1,0,0,2,1,0,289.25,0,0,0 +9320,11434,20848,-9,20847,20849,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.061934822402,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,1,0,289.25,0,0,0 +9320,11434,20849,20847,-9,-9,1,1,1,45,1,0,2,0,3,-9,3,3,0,4,0,0,0,2,0,-9,3,0,10,0,0,0,0,35,2,3,3,-9,-9,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.81403415306481,1,56.91,50.84,7,1,1,0,2,1,0,289.25,0,0,0 +9320,11434,20850,-9,20847,20849,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.9735298051564,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,1,0,289.25,0,0,0 +9321,11435,20851,-9,20853,20852,3,1,1,21,2,0,0,0,2,-9,2,1,0,5,8.188599138144538,7.994232139806437,0,3,0,-9,0,0,0,-1050.503839425292,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,35,15,1,0,-9,1,9.557101978708609,9.557101978708609,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,9,4,0,305,0,0,0 +9321,11436,20852,20853,-9,-9,2,1,1,51,1,0,0,0,2,-9,1,1,0,4,9.192449220941151,8.798746258355536,0,1,0,-9,6,0,5,-35.40827559060581,0,0,0,46,2,4,1,-9,-9,2019,1,1,7,0,40,46,15,1,0,1,0,22.82048776696332,22.82048776696332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,51.02,6,1,0,0,9,5,0,908.3333333333334,0,0,0 +9321,11436,20853,20852,-9,-9,1,1,0,46,1,0,0,0,2,-9,1,1,0,4,8.458898746353725,8.671254003730471,0,1,0,-9,6,0,-5,22.64296417335666,0,0,0,51,2,4,1,2,3,2019,1,2,9,0,15,25,15,1,0,1,0,29.11711131510588,29.11711131510588,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,0,908.3333333333334,0,0,0 +9321,11436,20854,-9,20853,20852,4,1,0,14,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,-9,0,-9,0,-884.4532492966234,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,0,908.3333333333334,0,0,0 +9322,11437,20855,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,4,3,0,1,0,7.289175724548807,7.163803497991784,3,0,0,0,-9,0,-883.3925322882412,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,7.27715633396461,7.361202205204408,6.815617241864336,3,43.33,19.56,2,1,0,0,9,3,0,1807,0,0,0 +9323,11438,20856,-9,20857,-9,3,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1111.45842370278,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.42,59.98,3,1,0,0,9,4,1,641,0,0,0 +9323,11438,20857,-9,-9,-9,1,1,0,53,3,0,1,0,2,-9,2,1,0,4,8.593771620699,8.517036146197954,0,4,0,0,0,-9,0,-992.2527690125449,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,37,37,15,1,1,-9,0,17.61684799097241,17.61684799097241,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.39,55.43,5,1,0,0,9,4,1,641,0,0,0 +9324,11439,20858,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1048.615746077567,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,8.453938121869299,0,0,8.228835880321975,0,98.9515923643082,1,1,0,0,0,0,0,54,43,6,1,0,0,13,1,1,428,0,0,0 +9324,11440,20859,-9,20858,-9,2,1,1,66,2,0,0,0,1,-9,4,3,0,4,0,8.131394702721032,8.240494779223644,3,0,0,0,-9,0,-970.57931640989,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.582114958840981,7.816989380682267,116.2163451047142,3,57.16,56.15,6,1,0,0,13,4,1,643,0,0,0 +9325,11441,20860,-9,20862,20861,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1120.48409277862,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,5,1,1264.75,0,0,0 +9325,11441,20861,20862,-9,-9,2,1,1,31,1,1,2,0,2,-9,2,1,0,1,8.293292929330343,8.527402410097178,0,2,0,-9,6,0,1,-65.25036689624854,0,0,0,30,2,3,1,-9,-9,2019,1,1,22,8,38,38,15,1,8,1,0,16.19142324850943,16.19142324850943,0,0,0,0,0,0,0,1,1,0,2.687182552312939,0,0,0,26.91,36.32,5,1,0,0,12,5,1,1264.75,0,0,0 +9325,11441,20862,20861,-9,-9,1,1,0,30,1,1,2,0,2,-9,1,1,0,3,8.935180473499832,8.92116506205112,0,2,0,-9,6,0,-1,-13.27167987925968,0,0,1,31,2,1,1,2,2,2019,1,2,12,0,16,7,15,1,0,1,0,50.59327138531111,50.59327138531111,0,0,0,0,0,0,0,1,1,0,.7913588962051701,0,0,0,48.32,42.34,6,1,0,0,12,5,1,1264.75,0,0,0 +9325,11441,20863,-9,20862,20861,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-858.6070821906376,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,12,5,1,1264.75,0,0,0 +9326,11442,20864,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-987.279477157055,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.76,30.79,7,1,1,0,11,1,0,1244,0,0,0 +9327,11443,20865,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,4,3,0,4,0,7.327868935009329,6.715069366541392,1,0,-9,19,0,10,33.2210521314162,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.532250833909593,6.727889919413376,0,0,48.81,59.91,6,1,0,0,9,5,1,430,0,0,0 +9327,11444,20866,-9,-9,-9,2,1,0,57,2,0,0,0,1,-9,2,1,0,3,9.251343475750344,9.600121386938271,0,1,0,-9,19,0,-10,66.41690517122613,0,0,0,-9,-9,-9,-9,2,3,2019,2,1,12,0,37,21,15,1,0,-9,0,27.37698017329083,27.37698017329083,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,46.09,5,1,0,0,9,5,1,557,0,0,0 +9328,11445,20867,20868,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,5,9.53614523546187,9.435347637696706,0,1,0,-9,36,0,-2,55.44283296104975,0,0,0,58,2,3,1,2,2,2019,1,2,6,0,42,43,15,1,0,1,0,40.12188718728318,40.12188718728318,0,0,0,0,0,0,0,0,0,0,6.215346451294885,0,0,0,57.06,57.76,6,1,0,0,5,5,1,667.5,0,0,0 +9328,11445,20868,20867,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.168524283878114,6.741003309417806,0,1,0,-9,35,0,2,178.2538579039558,0,0,0,56,1,5,1,2,2,2019,1,1,11,0,3,20,15,1,0,1,0,46.40273218513957,46.40273218513957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.43,45.82,6,1,0,0,5,5,1,667.5,0,0,0 +9329,11446,20869,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.065043985508385,7.857187910958736,0,3,0,0,0,-9,0,-955.0195789236416,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,38,0,15,1,1,-9,0,9.004507177025275,9.004507177025275,0,0,0,0,0,0,0,0,0,0,1.969970951319197,0,0,0,43.44,61.22,6,1,0,0,11,3,0,3116,0,0,0 +9330,11447,20870,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,4,0,8.263331991094464,8.520813841765005,3,0,0,0,-9,0,-987.5948039751506,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.597223639158644,0,0,51.78,47.83,7,1,0,0,8,4,1,768,0,0,0 +9331,11448,20871,-9,20873,20872,1,1,0,26,2,0,0,0,2,-9,2,1,0,5,8.277037512755463,8.719227616283012,0,3,0,0,0,-9,0,-1029.723284186739,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,39,40,15,1,0,-9,1,14.43657406460919,14.43657406460919,0,0,0,0,0,0,0,0,0,0,3.724983836514367,0,15.18639823678168,3,65.95,39.96,7,1,0,0,6,4,1,533,0,0,0 +9331,11449,20872,20873,-9,-9,2,1,1,56,1,0,0,0,1,-9,4,3,0,4,0,8.734923228162415,8.89846134323999,1,0,-9,7,0,-3,-190.9222564314982,0,0,0,59,1,4,3,2,2,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.14144077423153,9.246273577733543,44.30104563461374,3,62.49,55.09,6,1,0,0,6,5,1,691.5,0,0,0 +9331,11449,20873,20872,-9,-9,3,1,0,59,1,0,0,0,1,-9,4,3,0,4,8.447335645638383,8.385343553524867,0,1,0,-9,7,0,3,-90.29302922663607,0,0,0,56,1,4,3,3,2,2019,4,2,8,0,30,30,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.455677470344997,0,45.33332134270802,3,51.24,58.84,6,1,0,0,6,5,1,691.5,0,0,0 +9332,11450,20874,20875,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,8.414844133839825,8.250180915978852,1,0,-9,29,0,4,71.78005143565819,0,0,0,62,2,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.990261058954845,8.469912592797991,.9551854878598538,3,59.54,48.41,7,1,0,0,4,5,1,873.5,0,0,0 +9332,11450,20875,20874,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,4,9.52077461384479,9.446953496442596,0,1,0,-9,29,0,-4,-112.4687523817471,0,0,0,66,2,4,3,2,2,2019,2,2,8,0,45,48,15,1,0,4,0,25.51739574227163,25.51739574227163,0,0,0,0,0,0,0,1,1,0,3.066045185779769,0,4.281189439918301,3,54.2,57.49,6,1,0,0,4,5,1,873.5,0,0,0 +9333,11451,20876,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,5.029589166563889,5.046153190401873,3,0,0,0,-9,0,-1068.204999229748,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.523724036107502,4.68974528252322,0,0,44.62,20.44,5,1,0,0,9,2,1,379,0,0,0 +9334,11452,20877,20878,-9,-9,1,1,1,43,1,0,0,0,1,-9,3,3,0,5,0,0,0,1,0,-9,18,0,6,-147.4531862733049,0,0,0,37,1,4,1,2,1,2019,3,2,12,0,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.269558602713115,0,0,0,47.67,58.09,6,3,1,0,8,5,1,174,0,0,0 +9334,11452,20878,20877,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,4,8.76699565829256,8.81420939740612,0,1,0,-9,18,0,-6,140.3075856786335,0,0,1,43,1,5,3,2,2,2019,2,1,10,0,38,0,15,1,0,3,0,21.56812855428326,21.56812855428326,0,0,0,0,0,0,0,0,0,0,3.841725813565995,0,0,0,49.33,51.63,6,3,0,0,8,5,1,174,0,0,0 +9335,11453,20879,20880,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,6.54213587831428,6.661998350511117,1,0,-9,7,0,12,-175.7867015379929,0,0,0,53,2,2,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.879362365406072,6.231277793312624,0,0,56.9,41.53,6,1,0,0,6,3,1,723.5,0,0,0 +9335,11453,20880,20879,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,2,7.978360910382276,7.840529158500615,0,1,0,-9,7,0,-12,50.89827831951789,0,0,0,65,2,3,3,-9,-9,2019,2,1,21,9,38,38,15,1,9,4,0,8.580902363388674,8.580902363388674,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.47,43.58,2,1,0,0,6,3,1,723.5,0,0,0 +9336,11454,20881,20884,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,4,7.791810728124686,8.087150966627435,0,2,0,-9,3,0,-1,33.98735385471255,0,0,1,39,2,3,1,-9,-9,2019,1,1,7,0,25,17,15,1,0,1,0,16.13487685540253,16.13487685540253,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,2,1,0,0,7,4,1,1488.8,0,0,0 +9336,11454,20882,-9,20881,20884,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.996002626979,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1488.8,0,0,0 +9336,11454,20883,-9,20881,20884,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.437899671542,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,1488.8,0,0,0 +9336,11454,20884,20881,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,3,8.89059147452091,9.049461159184109,0,2,0,-9,3,0,1,-17.19535865522887,0,0,0,38,2,4,1,2,2,2019,1,2,7,0,47,48,15,1,0,1,0,18.06044511074453,18.06044511074453,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,4,1,1488.8,0,0,0 +9336,11454,20885,-9,20881,20884,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.025812931927,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,4,1,1488.8,0,0,0 +9337,11455,20886,20887,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,4,4.9469624025255,5.133963303823829,0,1,0,-9,6,0,7,-36.3015625643372,0,0,0,47,3,4,1,-9,-9,2019,1,1,6,0,50,50,15,1,0,1,0,.3895121277204719,.3895121277204719,0,0,0,0,0,0,0,0,0,0,0,0,8.623631641587382,3,57.16,56.15,7,1,0,0,6,2,0,618.5,0,0,0 +9337,11455,20887,20886,-9,-9,1,1,0,47,1,0,0,0,3,-9,1,1,0,4,7.559451586020883,7.341336633485339,0,1,0,-9,20,0,-7,-93.92252584554447,0,0,0,54,2,4,1,-9,-9,2019,1,2,10,0,32,32,15,1,1,1,0,6.429551265010245,6.429551265010245,0,0,0,0,0,0,0,0,0,0,6.804641072297112,0,0,0,51,54,6,1,0,0,6,2,0,618.5,0,0,0 +9338,11456,20888,20889,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,4,7.195491643102599,7.350408837650141,0,1,0,-9,7,0,-4,25.1878300351552,0,0,0,64,3,3,3,1,2,2019,2,2,7,0,25,0,15,1,0,4,0,9.182776082159243,9.182776082159243,0,0,0,0,0,0,0,0,0,0,7.917645966864308,0,0,0,54.79,55.86,6,1,0,0,12,3,1,772,0,0,0 +9338,11456,20889,20888,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,3,0,6.659168588238486,7.045197672240703,1,0,-9,7,0,4,163.6504116344022,0,0,0,60,1,4,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.026841109623877,6.7636120657083,6.483191487376639,3,57.33,53.46,6,1,0,0,12,3,1,772,0,0,0 +9339,11457,20890,20893,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,5,8.420986587423204,8.129249747134468,0,2,0,-9,6,0,-3,-39.0150784980198,0,0,1,45,2,4,1,-9,-9,2019,1,2,12,0,30,30,15,1,0,1,0,11.15656310192145,11.15656310192145,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,64.73,5,1,0,1,12,3,1,533.75,0,0,0 +9339,11457,20891,-9,20890,20893,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.4505427838736,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,3,1,533.75,0,0,0 +9339,11457,20892,-9,20890,20893,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.93779154264,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,533.75,0,0,0 +9339,11457,20893,20890,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,6,0,3,-97.52833256737475,0,0,0,42,1,5,1,-9,-9,2019,1,1,4,0,70,22,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,1,0,1,12,3,1,533.75,0,0,0 +9340,11458,20894,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,3,8.942138041548519,9.287343820680796,0,1,0,-9,7,0,-7,-5.107222805695691,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,35,12,43,43,15,1,12,-9,0,20.56119500325633,20.56119500325633,0,0,0,0,0,0,0,0,0,0,7.595408437491412,0,0,0,16.01,54.93,2,1,0,0,12,5,1,250,0,0,0 +9340,11459,20895,-9,-9,-9,2,1,1,42,2,0,0,0,1,-9,2,1,0,2,9.605760866972492,9.198430825392482,0,1,0,-9,7,0,7,80.76230000062829,0,0,0,-9,-9,-9,-9,1,1,2019,1,1,12,0,58,52,15,1,0,-9,0,23.42397861626303,23.42397861626303,0,0,0,0,0,0,0,0,0,0,1.819811837517428,0,0,0,46.3,45.42,4,1,0,0,12,5,1,837,0,0,0 +9341,11460,20896,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,4.717835986935179,4.767750665436738,3,0,0,0,-9,0,-1163.091694785448,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.917566112804444,0,0,50,47,5,1,0,1,13,2,1,603,0,0,0 +9342,11461,20897,-9,20899,20898,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.9594558062432,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,909.5,0,0,0 +9342,11461,20898,20899,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,4,8.975060651015113,9.279686945913255,0,2,0,-9,6,0,2,61.68511308755383,0,0,0,35,1,4,1,-9,-9,2019,1,1,9,1,37,39,15,1,1,1,0,29.44906026283881,29.44906026283881,0,0,0,0,0,0,0,1,1,0,3.297264789456803,0,0,0,48.87,58.55,6,1,0,0,12,5,1,909.5,0,0,0 +9342,11461,20899,20898,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,4,9.028066322472387,9.002407435394753,0,2,0,-9,6,0,-2,-34.43453133113455,0,0,1,37,1,4,1,2,2,2019,1,2,7,0,34,33,15,1,0,1,0,33.49120669514036,33.49120669514036,0,0,0,0,0,0,0,1,1,0,2.194299358846738,0,0,0,51.24,58.84,6,1,0,0,12,5,1,909.5,0,0,0 +9342,11461,20900,-9,20899,20898,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.6285588989977,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,5,1,909.5,0,0,0 +9343,11462,20901,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,3.957635983394606,3.92282943566409,3,0,0,0,-9,0,-1074.866712036885,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,11.24650634325259,0,0,0,0,149.7742528651363,1,1,0,2.748147985621282,3.811006398588689,0,0,55.13,42.55,4,1,0,0,12,2,1,414,0,0,0 +9344,11463,20902,20903,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,2,7.093430931062829,7.139417828471812,0,1,0,-9,24,0,-2,-13.80614840692249,0,0,0,48,2,4,1,2,2,2019,1,2,9,0,7,20,15,1,0,1,0,21.52306703801167,21.52306703801167,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.71,21.75,7,1,0,0,7,4,1,159,0,0,0 +9344,11463,20903,20902,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,4,8.11671585933102,7.802387422150507,0,1,0,-9,24,0,2,58.78926098191873,0,0,0,46,1,2,1,2,2,2019,1,1,9,0,60,45,15,1,1,1,0,7.181507686635131,7.181507686635131,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,7,4,1,159,0,0,0 +9345,11464,20904,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,4,0,7.807564155725462,7.653754577667894,3,0,-9,0,1,0,-1060.967809445689,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.000809089774002,7.883904901920831,0,0,44.42,59.09,6,1,0,0,9,3,1,155,0,0,0 +9346,11465,20905,20906,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.924692539747632,9.037604983315175,0,1,0,-9,39,0,2,44.65688483014802,0,0,0,55,2,4,1,2,2,2019,1,1,16,4,60,60,15,1,4,1,0,12.2851635118637,12.2851635118637,0,0,0,0,0,0,0,0,0,0,1.874973306435984,0,0,0,55.13,39.27,4,1,0,0,12,5,1,587.5,0,0,0 +9346,11465,20906,20905,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.363555794604453,8.283489479525914,0,1,0,-9,39,0,-2,-161.8966962951846,0,0,0,57,2,3,1,3,3,2019,1,2,15,3,33,32,15,1,3,1,0,15.07563236752549,15.07563236752549,0,0,0,0,0,0,0,0,0,0,0,0,0,3,39.86,47.68,5,1,0,0,12,5,1,587.5,0,0,0 +9347,11466,20907,20910,-9,-9,1,1,1,42,1,1,2,0,2,-9,2,1,0,4,7.960567312747465,8.05894002756547,0,2,0,-9,14,0,6,38.51609501716784,0,0,0,36,2,4,1,3,3,2019,1,2,9,1,37,37,15,1,1,1,0,8.054588916242212,8.054588916242212,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,0,2,3,1,905,0,0,0 +9347,11466,20908,-9,20910,20907,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.856957661,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,905,0,0,0 +9347,11466,20909,-9,20910,20907,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1114.671633939472,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,905,0,0,0 +9347,11466,20910,20907,-9,-9,2,1,0,36,1,1,2,0,2,-9,2,1,0,4,7.906816347592682,8.108457547698951,0,2,0,-9,7,0,-6,-108.7693737553905,0,0,1,42,2,4,1,-9,-9,2019,1,1,13,3,22,20,15,1,3,1,0,14.03224943619899,14.03224943619899,0,0,0,0,0,0,0,1,1,0,1.999656922190119,0,0,0,49.91,58.02,6,1,0,0,2,3,1,905,0,0,0 +9348,11467,20911,-9,-9,-9,1,1,0,38,2,0,1,0,1,-9,1,1,0,3,7.504592055881744,7.898151665924442,0,4,0,0,0,-9,0,-1010.299350195247,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,21,8,35,25,15,1,8,-9,0,6.381384542601776,6.381384542601776,0,0,0,0,0,0,0,1,1,0,2.457402729664614,0,36.35250763197752,3,27.69,62,3,1,0,0,7,3,1,364,0,0,0 +9348,11467,20912,-9,20911,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-832.2152240413877,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,1,364,0,0,0 +9349,11468,20913,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,2,8.29318417449818,8.322133036707786,0,3,0,0,0,-9,0,-1013.564049023805,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,12,0,37,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.93,58.58,2,3,0,0,1,4,0,501,0,0,0 +9350,11469,20914,20917,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,3,6.793503430258737,6.80628093931758,0,2,0,-9,8,0,-5,82.97591458244217,0,0,1,39,2,3,1,3,2,2019,1,2,8,0,19,0,15,1,0,1,0,5.514404094304904,5.514404094304904,0,0,0,0,0,0,0,1,1,0,1.251666702620481,0,0,0,50.03,52.62,5,1,0,0,9,3,1,1005.5,0,0,0 +9350,11469,20915,-9,20914,20917,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.200838855332,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,1,1005.5,0,0,0 +9350,11469,20916,-9,20914,20917,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.9959856267527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,1005.5,0,0,0 +9350,11469,20917,20914,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,3,8.134970237031919,8.089989637829708,0,2,0,-9,8,0,5,-10.84869854963793,0,0,0,34,2,3,1,2,2,2019,1,1,12,4,47,40,15,1,4,1,0,9.845815284397615,9.845815284397615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.5,50.1,6,1,0,0,9,3,1,1005.5,0,0,0 +9351,11470,20918,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,3,8.325814601761373,8.605457450982529,0,3,0,0,0,-9,0,-911.8358526556846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,47,47,15,1,1,-9,0,10.19544587410506,10.19544587410506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,4,0,0,4,5,1,1298,0,0,0 +9352,11471,20919,20920,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,3,8.52789639396684,8.15965023697655,0,2,0,-9,11,0,-2,-7.293378661262117,0,0,1,35,2,4,1,-9,-9,2019,1,1,10,0,30,35,15,1,0,1,0,15.13779635775279,15.13779635775279,0,0,0,0,0,0,0,1,1,0,1.757070598105607,0,0,0,43.09,51.86,6,1,0,0,2,4,1,1216.666666666667,0,0,0 +9352,11471,20920,20919,-9,-9,1,1,1,35,1,1,1,0,2,-9,2,1,0,4,8.147355681112421,8.459760191631553,0,2,0,-9,11,0,2,16.94295311670028,0,0,0,33,1,3,1,2,2,2019,1,2,8,0,38,38,15,1,0,1,0,10.56379295368296,10.56379295368296,0,0,0,0,0,0,0,1,1,0,6.919957147119128,0,0,0,51,52.08,6,1,0,0,2,4,1,1216.666666666667,0,0,0 +9352,11471,20921,-9,20919,20920,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.1963725295421,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,1216.666666666667,0,0,0 +9353,11472,20922,20923,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,4,8.70659633514685,8.870921961453474,0,1,0,-9,10,0,1,-.1066538538161302,0,0,1,38,1,5,1,2,3,2019,1,1,10,1,46,46,15,1,1,1,0,13.50584575984015,13.50584575984015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,7,3,0,0,7,5,1,2409.5,0,0,0 +9353,11472,20923,20922,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,5,8.778786742273589,8.78965335183215,0,1,0,-9,10,0,-1,-3.330573758723864,0,0,0,39,1,4,1,-9,-9,2019,1,2,5,0,43,43,15,1,0,1,0,15.91923374094382,15.91923374094382,0,0,0,0,0,0,0,0,0,0,7.550509331264662,0,0,0,57.06,57.76,6,1,0,0,7,5,1,2409.5,0,0,0 +9354,11473,20924,20925,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,6.304875984097809,6.530240364021964,1,0,-9,48,0,5,72.12358701751303,0,0,0,68,2,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.652817484363167,6.655781300944635,0,0,58.32,50.22,7,1,0,0,12,3,0,549,0,0,0 +9354,11473,20925,20924,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,8.029486595610857,7.672036002440878,1,0,-9,48,0,-5,4.552873728809096,0,0,0,73,3,3,3,2,3,2019,4,1,23,11,0,0,15,4,11,4,0,0,0,1,0,18.27153002773775,0,0,0,0,1,1,0,7.199101241054236,7.896576158513074,0,0,26.98,52.69,4,1,0,0,12,3,0,549,0,0,0 +9355,11474,20926,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,4,0,6.771794676330546,6.939064653926567,3,0,0,0,-9,0,-1141.897312985966,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,22,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.445765994796353,7.210103547872651,0,0,60.12,54.8,6,1,0,0,4,2,0,137,0,0,0 +9356,11475,20927,20928,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,3,8.535669281694078,8.728950815119044,0,2,0,-9,26,0,0,-24.14427860479165,0,0,0,54,2,3,1,3,3,2019,1,2,11,1,57,74,15,1,1,1,0,9.144522933586833,9.144522933586833,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,3,1,0,0,10,4,1,516.6666666666666,0,0,0 +9356,11475,20928,20927,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,3,7.334116381590788,7.129346457287642,0,2,0,-9,23,0,0,21.32527400258014,0,0,0,54,2,3,1,2,2,2019,1,1,11,1,39,36,15,1,1,1,0,4.105793100446416,4.105793100446416,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,49.68,5,1,0,0,10,4,1,516.6666666666666,0,0,0 +9356,11475,20929,-9,20928,20927,3,1,0,17,2,0,1,1,2,0,7,2,0,4,5.809630109248729,5.61097470601079,0,2,0,0,0,-9,0,-1074.384052031559,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,6,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.108545742205549,0,0,0,51.77,58.57,7,1,0,0,10,4,1,516.6666666666666,0,0,0 +9357,11476,20930,-9,20931,20932,1,1,1,41,3,0,0,0,1,-9,2,1,0,5,9.033587989195384,8.919365620518345,0,3,0,0,0,-9,0,-923.5921818348967,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,50,15,1,0,-9,1,16.38254665152373,16.38254665152373,0,0,0,0,0,0,0,1,1,0,3.260736266653032,0,0,0,43.24,59.41,6,1,0,0,2,5,1,162,0,0,0 +9357,11477,20931,20932,-9,-9,3,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,2,0,1,-115.0205618046205,0,0,0,64,3,3,1,-9,-9,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.2512801692536467,0,2.317246302704311,3,44.83,53.86,6,1,0,0,2,3,1,1352.5,0,0,0 +9357,11477,20932,20931,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,3,7.873513150487928,8.043045224596245,0,1,0,-9,2,0,-1,76.45345649816454,0,0,0,65,3,4,3,-9,-9,2019,2,3,6,0,41,39,15,1,0,4,0,7.553161991422177,7.553161991422177,0,0,0,0,0,0,0,1,1,0,1.452270439175511,0,0,0,58.32,50.22,6,1,0,0,2,3,1,1352.5,0,0,0 +9358,11478,20933,20934,-9,-9,1,1,1,55,1,0,0,0,1,-9,1,1,0,4,8.35905215669775,8.503671856806177,0,1,0,-9,6,0,5,30.23628817034322,0,0,0,50,1,4,1,2,2,2019,1,2,15,3,36,36,15,1,3,1,0,13.80703108225043,13.80703108225043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.9,54.57,6,1,0,0,10,5,0,1592,0,0,0 +9358,11478,20934,20933,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,7.815307677280956,7.7411766019566,0,1,0,-9,6,0,-5,6.636102427003009,0,0,0,55,1,4,1,2,3,2019,1,1,24,12,53,50,15,1,12,1,0,8.101510190739715,8.101510190739715,0,0,0,0,0,0,0,0,0,0,0,0,14.26387387766882,3,35.32,64.83,3,1,0,0,10,5,0,1592,0,0,0 +9359,11479,20935,20936,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,62,0,-2,21.37159013737005,0,0,0,88,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62.87,25.24,7,1,0,0,12,2,1,391.5,0,0,0 +9359,11479,20936,20935,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,4,0,5.927825892630978,5.953458432531285,1,0,-9,62,0,2,189.5170726324212,0,0,0,86,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.216929702002485,5.635849170953265,0,0,56.35,51,1,1,0,0,12,2,1,391.5,0,0,0 +9360,11480,20937,20938,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,6.956853741272367,6.968388373723074,1,0,-9,7,0,-1,-95.43653992522943,0,0,0,75,3,2,3,3,2,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.411373753254231,6.996081204352376,0,0,52.99,51.28,7,1,0,0,2,2,1,1162,0,0,0 +9360,11480,20938,20937,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,1,-12.86682205037883,0,0,0,74,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.69,31.73,6,1,0,0,2,2,1,1162,0,0,0 +9360,11481,20939,-9,20938,20937,3,1,1,51,2,0,0,0,2,-9,2,1,0,3,7.653505460315115,7.269053549737135,0,3,0,0,0,-9,0,-1059.179310203363,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,37,37,15,1,5,-9,1,6.657621758677156,6.657621758677156,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.19,57.08,4,1,0,0,2,3,1,559,0,0,0 +9361,11482,20940,20941,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.870585759240885,8.81030682461645,6.30040789304145,1,0,-9,10,0,0,-18.41777152721151,0,0,0,68,1,1,1,-9,-9,2019,1,1,6,0,35,15,15,1,0,1,0,20.72654540952439,20.72654540952439,0,0,0,0,0,0,0,1,1,0,0,7.099225870567335,0,0,52.08,55.93,6,1,0,0,12,5,1,901.5,0,0,0 +9361,11482,20941,20940,-9,-9,1,1,0,68,1,0,0,0,1,-9,1,1,0,1,4.539525031062438,4.401201356834362,0,1,0,-9,10,0,9,57.78882857775166,0,0,0,59,2,4,1,1,1,2019,1,2,16,7,2,3,15,1,7,1,0,4.322445615238031,4.322445615238031,0,0,0,0,0,0,0,1,1,0,1.068656072857729,0,2.586646686137407,3,48.39,27.22,2,1,0,0,12,5,1,901.5,0,0,0 +9362,11483,20942,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,2,1,0,4,7.150394447039869,6.954849992354985,4.22559232840744,4,0,0,0,-9,0,-961.3294870002677,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,16,18,15,1,0,-9,0,8.709992732333115,8.709992732333115,0,0,0,0,0,0,0,1,0,1,4.353001812580787,0,0,0,54.2,57.49,6,2,0,0,5,2,0,363.6666666666667,0,0,0 +9362,11483,20943,-9,20942,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1091.185650536959,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,2,0,0,5,2,0,363.6666666666667,0,0,0 +9362,11483,20944,-9,20942,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1114.779185162764,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,2,0,0,5,2,0,363.6666666666667,0,0,0 +9363,11484,20945,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,1,0,6.199614202428101,6.543321639880622,3,0,0,0,-9,0,-911.3535473612685,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.734773366429867,0,0,0,10.72009526800543,48.87507052116742,1,1,0,0,6.278610246314614,0,0,51.58,18.5,5,1,0,0,2,2,1,760,0,0,0 +9364,11485,20946,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,4,0,8.250911665706662,7.515068730502878,3,0,-9,0,-9,0,-877.477040852273,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.444643947772676,7.424440579955118,0,0,48.14,44.25,5,1,0,0,9,3,1,387,0,0,0 +9365,11486,20947,-9,20948,-9,3,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1009.927005697873,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,1,0,1379,0,0,0 +9365,11486,20948,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,6,3,0,4,0,0,0,4,0,-9,0,1,0,-1051.508784590828,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,53.77,5,1,0,1,13,1,0,1379,0,0,0 +9365,11487,20949,-9,20948,-9,2,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-908.0079042373628,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,1,13,1,0,2597,0,0,0 +9366,11488,20950,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,3,7.509622112153449,7.330664047551018,0,3,0,-9,0,-9,0,-941.7560369070477,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,9,0,15,0,15,1,0,-9,0,12.87821261442343,12.87821261442343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,40.26,5,1,0,0,8,3,1,1197,0,0,0 +9367,11489,20951,20953,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,5,8.898467432727323,8.808332976860543,0,2,0,-9,19,0,0,75.81594568281955,0,0,1,40,1,3,1,2,2,2019,1,2,15,4,52,47,15,1,4,1,0,14.38243349723291,14.38243349723291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,6,1,0,0,7,5,1,483,0,0,0 +9367,11489,20952,-9,20951,20953,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1054.904891046122,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,7,5,1,483,0,0,0 +9367,11489,20953,20951,-9,-9,2,1,1,40,1,0,3,0,1,-9,2,1,0,3,9.579198464547703,9.600038545139498,0,2,0,-9,8,0,0,-17.85791863812599,0,0,0,40,1,5,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,33.57668157202209,33.57668157202209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,45.09,6,1,0,0,7,5,1,483,0,0,0 +9367,11489,20954,-9,20951,20953,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.119053949627,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,7,5,1,483,0,0,0 +9367,11489,20955,-9,20951,20953,3,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-942.8269119410826,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,7,5,1,483,0,0,0 +9368,11490,20956,20957,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.792446730037521,7.880324780470234,1,0,-9,44,0,-2,142.2303637101992,0,0,0,66,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.741969316687086,7.744811208363649,6.393014442663826,3,53.81,53.56,6,1,0,0,9,4,1,318,0,0,0 +9368,11490,20957,20956,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,8.298926768340857,8.213099545756949,1,0,-9,44,0,2,13.88867156578521,0,0,0,64,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3523851476278,7.694094030805815,0,3,63.56,36.87,7,1,0,0,9,4,1,318,0,0,0 +9369,11491,20958,-9,20961,20959,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.9011793220058,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,1,1111.75,0,0,0 +9369,11491,20959,20961,-9,-9,1,1,1,56,1,0,2,0,2,-9,1,1,0,3,7.598274084857557,7.667449553306501,0,2,0,-9,20,0,7,-68.79013808514287,0,0,0,49,3,3,1,-9,-9,2019,1,2,6,0,45,45,15,1,0,1,0,4.569915520551998,4.569915520551998,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,48.6,5,1,0,0,9,3,1,1111.75,0,0,0 +9369,11491,20960,-9,20961,20959,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1024.238478939899,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,3,1,1111.75,0,0,0 +9369,11491,20961,20959,-9,-9,2,1,0,49,1,0,2,0,3,-9,1,1,0,3,7.432316299952706,7.384635304972957,0,2,0,-9,20,0,-7,-24.78635056622214,0,0,0,56,2,3,1,-9,-9,2019,1,1,11,0,30,20,15,1,0,1,0,7.741031216017928,7.741031216017928,0,0,0,0,0,0,0,1,1,0,0,0,29.34877974049958,3,54.97,47.63,5,1,0,0,9,3,1,1111.75,0,0,0 +9370,11492,20962,20963,-9,-9,2,1,1,63,1,0,0,0,3,-9,2,1,0,3,7.953117613421688,8.036797193095911,4.736400449368987,1,0,-9,41,0,-5,-108.442986789763,0,0,0,68,2,3,1,3,2,2019,1,1,9,0,45,45,15,1,0,1,0,7.192921065803845,7.192921065803845,0,0,0,0,0,0,0,1,1,0,5.349634828454561,4.933137929019423,0,0,43.55,57.37,2,1,0,0,10,5,0,1098.5,0,0,0 +9370,11492,20963,20962,-9,-9,1,1,0,68,1,0,0,0,2,-9,2,1,0,3,8.009142512552209,8.618743686654737,7.58141986501204,1,0,-9,41,0,5,-43.84521685272227,0,0,0,63,3,3,1,3,2,2019,1,2,10,0,21,22,15,1,0,1,0,16.28798595369043,16.28798595369043,0,0,0,0,0,0,0,1,1,0,4.100602300139947,7.418548673004189,0,0,46.55,44.62,3,1,0,0,10,5,0,1098.5,0,0,0 +9371,11493,20964,20965,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,2,0,7.243347529471068,7.148561901929194,1,0,-9,9,0,2,41.96195044159567,0,0,0,83,3,2,3,3,2,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.106038508452085,7.092594713787288,38.64700785718216,2,38.19,39.76,5,1,0,0,11,2,1,696.5,0,0,0 +9371,11493,20965,20964,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,5.446642532440065,5.319124000165388,1,0,-9,9,0,-2,32.20133634704081,0,0,0,85,3,2,3,3,3,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.519079220218735,5.638886847152388,3.249602604441899,2,40.79,41.17,6,1,0,0,11,2,1,696.5,0,0,0 +9372,11494,20966,20967,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,8,0,-11,-6.420929065696252,0,0,0,60,3,5,1,3,3,2019,1,1,11,0,30,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.21,30.35,5,1,0,0,6,3,1,304,0,0,0 +9372,11494,20967,20966,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,5,7.973317199451857,8.234635266059708,0,1,0,-9,8,0,11,26.82177723534293,0,0,0,49,2,2,1,3,3,2019,1,2,3,0,47,45,15,1,0,1,0,9.490974783077542,9.490974783077542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,7,1,0,0,6,3,1,304,0,0,0 +9373,11495,20968,20969,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.259403257104262,7.471594889852303,0,1,0,-9,15,0,-4,41.28500050270095,0,0,0,54,1,3,1,3,3,2019,1,2,3,0,20,27,15,1,0,1,0,5.838892223049579,5.838892223049579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.37,55.41,2,1,0,0,7,5,1,1199,0,0,0 +9373,11495,20969,20968,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,9.189478821330844,8.846989647206621,0,1,0,-9,15,0,4,34.35744262752858,0,0,0,50,2,3,1,3,2,2019,1,1,9,0,35,40,15,1,0,1,0,22.78200758566863,22.78200758566863,0,0,0,0,0,0,0,0,0,0,1.117422494270015,0,0,3,52.99,51.28,5,1,0,0,7,5,1,1199,0,0,0 +9374,11496,20970,20971,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,2.269217484542633,2.241466118722622,1,0,-9,8,0,0,-40.0037294643512,0,0,0,71,3,4,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,2.03568593201181,0,0,0,0,1,1,0,0,1.848916295450467,0,0,66.28,26.06,7,1,0,0,11,2,1,2715.5,0,0,0 +9374,11496,20971,20970,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,7.33322276965393,7.296093850897693,1,0,-9,51,0,0,-52.82499709156428,0,0,0,71,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.215167946124496,0,1,54.79,55.86,6,1,0,0,11,2,1,2715.5,0,0,0 +9375,11497,20972,-9,-9,-9,1,1,0,98,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1051.00868414325,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.633838654313328,0,0,0,55,43,6,4,0,0,8,1,0,453,0,0,0 +9376,11498,20973,-9,20975,20976,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.000174738979,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,13,5,1,665.2,0,0,0 +9376,11498,20974,-9,20975,20976,3,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.7275987654781,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,13,5,1,665.2,0,0,0 +9376,11498,20975,20976,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,4,9.348585145038379,9.221559011096399,0,2,0,-9,24,0,-4,20.87304009215863,0,0,0,52,2,4,1,2,2,2019,1,1,8,0,36,36,15,1,0,1,0,33.47552419249855,33.47552419249855,0,0,0,0,0,0,0,0,0,0,7.06824474232007,0,0,0,51.83,57.2,6,1,0,0,13,5,1,665.2,0,0,0 +9376,11498,20976,20975,-9,-9,1,1,1,52,1,0,3,0,2,-9,2,1,0,4,8.751015809723487,8.864709896185161,0,2,0,-9,27,0,4,-70.75747805375472,0,0,0,48,1,4,1,3,3,2019,1,2,6,0,45,45,15,1,0,1,0,12.20093193396056,12.20093193396056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,665.2,0,0,0 +9376,11498,20977,-9,20975,20976,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.908112473119,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,13,5,1,665.2,0,0,0 +9377,11499,20978,20979,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,4,8.751031121346049,8.411431688546225,0,1,0,-9,1,-9,1,32.08699960416108,-9,0,0,45,2,4,1,-9,-9,2019,1,2,7,0,37,0,15,1,0,1,0,16.57077328430006,16.57077328430006,0,0,0,0,0,0,0,1,1,0,2.427511376881223,0,0,0,57.16,56.15,6,1,0,0,4,5,0,600.5,0,0,0 +9377,11499,20979,20978,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,4,7.470172159985799,7.37793697047466,0,1,0,-9,18,-9,-1,65.38803920761841,-9,0,0,46,1,4,1,-9,-9,2019,1,1,11,0,32,0,15,1,0,1,0,9.31717849196121,9.31717849196121,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,0,600.5,0,0,0 +9377,11500,20980,-9,20979,20978,3,1,1,24,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1014.529855470717,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,1,0,4,1,0,1033,0,0,0 +9377,11501,20981,-9,20979,20978,4,1,0,22,2,0,0,0,2,-9,2,1,0,5,7.878305858256955,8.179770514635338,0,3,0,-9,0,-9,0,-1011.417074561973,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,35,0,15,1,0,-9,1,10.41685499670147,10.41685499670147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,4,3,0,183,0,0,0 +9378,11502,20982,-9,-9,-9,1,1,0,43,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1115.313176621862,-9,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,29,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.35,26.91,1,1,0,0,12,1,0,804,0,0,0 +9379,11503,20983,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,-9,0,1,0,-1064.535863672068,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.124877497009728,0,0,0,41.2,59.37,6,1,0,0,11,1,1,307,0,0,0 +9380,11504,20984,20985,-9,-9,2,1,0,30,1,1,1,0,1,-9,2,1,0,5,7.578108473141818,7.371881202555516,0,2,0,-9,7,0,-4,-3.819441243536529,0,0,1,34,2,3,1,2,2,2019,1,1,1,0,18,40,15,1,0,1,0,13.32038204775662,13.32038204775662,0,0,0,0,0,0,0,1,1,0,3.943230817634361,0,0,0,57.06,57.76,7,1,0,0,2,4,1,934,0,0,0 +9380,11504,20985,20984,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,3,8.473332800638373,8.448341829021246,0,2,0,-9,7,0,4,-7.159111533757883,0,0,0,30,1,5,1,2,2,2019,1,2,8,1,40,45,15,1,1,1,0,11.66357977943513,11.66357977943513,0,0,0,0,0,0,0,1,1,0,2.98838807748756,0,0,0,39.31,56.1,6,1,0,0,2,4,1,934,0,0,0 +9380,11504,20986,-9,20984,20985,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.9091135889718,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,934,0,0,0 +9381,11505,20987,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,2,8.227195257258442,7.555689277914047,5.445772264899103,3,0,0,0,-9,0,-998.5937933899539,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,42,50,15,1,11,-9,0,6.305435169488879,6.305435169488879,0,0,0,0,0,0,0,1,1,0,0,5.5136490161151,0,0,36.16,34.96,4,1,0,1,5,3,0,458,0,0,0 +9382,11506,20988,-9,-9,-9,1,1,0,27,3,0,0,0,2,-9,2,1,0,3,7.980810444806198,8.314518505179501,0,3,0,0,0,-9,0,-861.7169004957012,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,30,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,49.1,6,1,0,0,13,4,1,643,0,0,0 +9383,11507,20989,-9,20994,20993,6,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.760328512151,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,2,0,631.5,0,0,0 +9383,11507,20990,-9,20994,20993,4,1,1,15,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-969.4203235973075,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,6,2,0,631.5,0,0,0 +9383,11507,20991,-9,20994,20993,3,1,0,17,2,0,4,1,3,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-962.0917538636379,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,6,2,0,631.5,0,0,0 +9383,11507,20992,-9,20994,20993,5,1,0,10,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-946.7753134985694,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,6,2,0,631.5,0,0,0 +9383,11507,20993,20994,-9,-9,2,1,1,39,1,0,4,0,3,-9,2,1,0,4,7.441755884698408,6.915624872240262,0,2,0,-9,6,0,0,-26.54286420858037,0,0,0,39,3,5,3,-9,-9,2019,2,1,9,0,14,0,15,1,1,3,0,12.19917743199792,12.19917743199792,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,5,1,0,0,6,2,0,631.5,0,0,0 +9383,11507,20994,20993,-9,-9,1,1,0,39,1,0,4,0,3,-9,3,3,0,5,0,0,0,2,0,-9,6,0,0,-78.10997277592008,0,0,1,39,3,4,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,1,0,6,2,0,631.5,0,0,0 +9384,11508,20995,20996,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,5,9.15088453098334,8.884158317364902,0,2,0,-9,9,0,5,-202.8700077427153,0,0,0,42,2,4,1,3,3,2019,1,1,12,0,60,60,15,1,0,1,0,18.09889812102232,18.09889812102232,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,7,4,1,563,0,0,0 +9384,11508,20996,20995,-9,-9,1,1,0,42,1,0,3,0,2,-9,2,1,0,4,6.554947538676872,6.43420761715301,0,2,0,-9,9,0,-5,-33.09240063061382,0,0,1,47,2,5,1,2,2,2019,1,2,8,0,11,18,15,1,0,1,0,6.967955574061535,6.967955574061535,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,7,4,1,563,0,0,0 +9385,11509,20997,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,3,0,7.325082178674878,7.389462762102754,3,0,0,0,-9,0,-1089.537269750737,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.428880105968173,7.624033922992647,0,0,55.81,40.5,6,1,0,0,10,3,1,355,0,0,0 +9386,11510,20998,21000,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,5,8.011310279494465,8.498710919318341,0,2,0,-9,20,0,-1,68.80895861413985,0,0,0,48,2,3,1,2,2,2019,1,1,0,0,23,45,15,1,0,1,0,13.37084112353265,13.37084112353265,0,0,0,0,0,0,0,1,1,0,1.037303240207167,0,0,0,57.06,57.76,6,1,0,0,9,5,1,1043.333333333333,0,0,0 +9386,11510,20999,-9,20998,21000,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1168.967316940825,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,1043.333333333333,0,0,0 +9386,11510,21000,20998,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.305904074782326,8.746465455004044,7.349281021533651,2,0,-9,21,0,1,103.7193986175884,0,0,0,47,1,5,1,2,2,2019,1,2,7,0,37,40,15,1,0,1,0,15.12093613885654,15.12093613885654,0,0,0,0,0,0,0,1,1,0,7.541795912950375,0,0,0,61.04,39.41,6,1,0,0,9,5,1,1043.333333333333,0,0,0 +9387,11511,21001,-9,21002,21004,2,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.178921667185,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,452.5,0,0,0 +9387,11511,21002,21004,-9,-9,1,1,0,30,1,1,2,0,2,-9,1,1,0,3,7.822736119273746,8.100304591625493,5.333369584453078,2,0,-9,2,0,0,-48.32509616839866,-9,0,1,30,2,5,1,2,2,2019,1,3,3,0,45,0,15,1,0,1,0,6.370744710923361,6.370744710923361,0,0,0,0,0,0,0,1,1,0,5.870897002632449,0,0,0,55.96,49.93,7,1,0,0,6,3,1,452.5,0,0,0 +9387,11511,21003,-9,21002,21004,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-994.870438687635,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,452.5,0,0,0 +9387,11511,21004,21002,-9,-9,3,1,1,30,1,1,2,0,2,-9,2,1,0,5,8.232220579496692,8.161468509034631,0,2,0,-9,2,0,0,18.16688678037164,-9,0,0,30,2,3,1,-9,-9,2019,1,1,4,1,50,0,15,1,1,1,0,8.199885861459382,8.199885861459382,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,6,3,1,452.5,0,0,0 +9388,11512,21005,21006,-9,-9,1,1,0,48,1,0,1,0,2,-9,6,3,0,1,0,0,0,2,0,-9,14,0,-1,173.7962971845159,0,0,0,49,3,2,1,3,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,26.73,4,1,0,0,5,4,1,1767.5,0,0,0 +9388,11512,21006,21005,-9,-9,2,1,1,49,1,0,1,0,3,-9,1,1,0,2,8.445807636386018,8.500328444105792,0,2,0,-9,15,0,1,55.64896351661481,0,0,0,48,2,1,3,3,3,2019,2,1,10,0,45,0,15,1,0,3,0,13.30198348633787,13.30198348633787,0,0,0,0,0,0,0,1,1,0,.9220250464109847,0,0,1,45.52,39,4,1,0,1,5,4,1,1767.5,0,0,0 +9389,11513,21007,-9,21009,21008,3,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1024.220946985903,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,13,1,0,261.3333333333333,0,0,0 +9389,11513,21008,21009,-9,-9,1,1,1,58,1,0,1,0,3,-9,3,3,0,3,0,0,0,2,0,-9,34,0,7,0,0,0,0,51,3,2,3,3,2,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,5,1,1,0,13,1,0,261.3333333333333,0,0,0 +9389,11513,21009,21008,-9,-9,2,1,0,51,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,34,0,-7,0,0,0,0,58,3,3,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.22276903764686,3,51.39,21.21,5,1,0,0,13,1,0,261.3333333333333,0,0,0 +9390,11514,21010,21011,-9,-9,1,1,0,49,1,0,0,0,3,-9,2,1,0,1,7.968587950123458,8.010513878900559,0,1,0,-9,29,0,-3,27.12973812959526,0,0,0,52,2,2,1,-9,-9,2019,1,2,16,4,31,31,15,1,4,1,0,11.24738454775116,11.24738454775116,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.71,15.11,2,1,0,0,5,4,1,525,0,0,0 +9390,11514,21011,21010,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.145929483074113,8.46386090173325,0,1,0,-9,29,0,3,40.19244410313562,0,0,0,49,3,1,1,-9,-9,2019,1,1,11,1,40,40,15,1,1,1,0,10.03827479378753,10.03827479378753,0,0,0,0,0,0,0,1,1,0,0,0,117.3082106474071,1,56.64,28.07,4,1,0,0,5,4,1,525,0,0,0 +9391,11515,21012,21013,-9,-9,2,1,1,46,1,0,2,0,1,-9,1,1,0,4,9.777957281129259,9.911969761875547,0,2,0,-9,1,-9,2,16.65407284510189,-9,0,0,44,1,3,1,-9,-9,2019,1,1,8,0,45,0,15,1,0,1,0,52.31546415082938,52.31546415082938,0,0,0,0,0,0,0,0,0,0,6.975626470385796,0,0,0,60.52,53.2,6,1,0,0,2,5,1,289.5,0,0,0 +9391,11515,21013,21012,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,3,8.010360424555445,7.596083247595038,0,2,0,-9,17,-9,-2,37.77797508528624,-9,0,1,46,1,4,1,2,2,2019,1,2,12,0,30,0,15,1,0,1,0,13.40339931775194,13.40339931775194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.9,55.84,5,1,0,0,2,5,1,289.5,0,0,0 +9392,11516,21014,21015,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,2,8.036253281979389,7.811711641552039,0,1,0,-9,25,0,3,26.2242047862218,0,0,0,45,1,3,1,2,2,2019,1,1,9,0,45,42,15,1,0,1,0,8.983017148657311,8.983017148657311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,4,3,0,0,10,5,1,3132,0,0,0 +9392,11516,21015,21014,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,3,9.009538687291535,8.818672461780746,0,1,0,-9,25,0,-3,56.37085082241997,0,0,0,48,1,2,1,1,1,2019,1,2,9,0,18,49,15,1,0,1,0,41.80199210325299,41.80199210325299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,48.6,6,3,0,0,10,5,1,3132,0,0,0 +9392,11517,21016,-9,21015,21014,3,1,0,21,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-972.2133491289876,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53.05,6,3,0,0,10,1,1,573,0,0,0 +9392,11518,21017,-9,21015,21014,4,1,0,18,2,0,0,0,2,1,2,1,0,4,6.593306464784757,6.817419928154102,0,3,0,0,0,-9,0,-963.2536848495604,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,26,0,15,1,0,-9,1,3.532344487970763,3.532344487970763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,10,2,1,459,0,0,0 +9393,11519,21018,21019,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.075459236838012,6.875598575412059,0,2,0,-9,8,0,-1,1.433047633762283,0,0,0,46,2,2,1,-9,-9,2019,1,2,21,9,23,23,15,1,9,1,0,6.328508849318921,6.328508849318921,0,0,0,0,0,0,0,1,1,0,0,0,8.407970994742737,3,32.9,57.87,5,1,0,0,5,5,1,762,0,0,0 +9393,11519,21019,21018,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,2,8.873389906742791,9.087915896536108,0,2,0,-9,8,0,1,-29.58890604786487,0,0,0,45,2,4,1,-9,-9,2019,1,1,14,0,42,44,15,1,3,1,0,20.1328636977463,20.1328636977463,0,0,0,0,0,0,0,1,1,0,0,0,9.065115567724838,3,50,44.94,5,1,0,0,5,5,1,762,0,0,0 +9393,11519,21020,-9,21018,21019,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.7972272851664,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,5,1,762,0,0,0 +9394,11520,21021,21022,-9,-9,2,1,1,62,1,0,0,0,3,-9,8,3,1,1,0,6.237589565015878,6.682755380967103,1,0,-9,9,0,-1,40.53358299908993,0,0,0,63,2,2,3,-9,-9,2019,4,1,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.396953676867519,0,0,40.56,12.97,5,1,0,1,10,2,1,946,0,0,0 +9394,11520,21022,21021,-9,-9,1,1,0,63,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,16,0,1,45.77564239003041,0,0,0,62,3,1,3,3,3,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.176704309484,1,58.88,40.91,5,1,0,0,10,2,1,946,0,0,0 +9395,11521,21023,-9,-9,21024,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,8.61658150888009,8.851695871432742,0,3,0,0,0,-9,0,-1072.487092466749,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,16,18,15,1,0,-9,1,46.18844938324052,46.18844938324052,0,0,0,0,0,0,0,1,1,0,.6179568023449008,0,11.56743491972713,3,66.37,38.36,4,4,0,0,8,5,0,954,0,0,0 +9395,11522,21024,-9,-9,-9,2,1,1,79,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-932.0121056977016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,5.132381109706042,0,2.454278681216558,0,0,1.765185714465975,1,1,0,0,0,0,0,49.52,56.95,6,4,0,0,8,1,0,1762,0,0,0 +9396,11523,21025,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1098.322107016025,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,37.5,2,1,0,0,8,1,0,680,0,0,0 +9397,11524,21026,21027,-9,-9,2,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,8.065721508355045,8.191224260271099,1,0,-9,51,0,-5,96.35326001917325,0,0,0,83,1,3,3,-9,-9,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.164305302535123,0,0,40.54,31.39,4,1,0,0,8,5,1,2622,0,0,0 +9397,11524,21027,21026,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,3,0,9.119658496206453,8.952600536639748,1,0,-9,51,0,5,-30.27085088234458,0,0,0,78,1,3,3,2,1,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.924295995130773,9.024232457122071,0,0,52.48,34.94,6,3,0,0,8,5,1,2622,0,0,0 +9398,11525,21028,21031,-9,-9,1,1,0,42,1,0,2,0,1,-9,6,3,0,4,8.018662521598296,8.313612308942202,0,2,0,-9,10,0,-5,-29.68316887729513,0,0,1,47,1,5,1,2,3,2019,3,2,6,0,22,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.725246882332331,0,114.609914706131,3,54.2,57.49,6,3,0,0,11,5,1,697.75,0,0,0 +9398,11525,21029,-9,21028,21031,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.943139204023,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,11,5,1,697.75,0,0,0 +9398,11525,21030,-9,21028,21031,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.345708713272,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,11,5,1,697.75,0,0,0 +9398,11525,21031,21028,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,5,8.867434603159159,8.625272455479648,0,2,0,-9,19,0,5,112.7051455079349,-9,0,0,42,1,4,3,-9,-9,2019,2,1,10,0,38,0,15,1,0,3,0,17.78086573185522,17.78086573185522,0,0,0,0,0,0,0,1,1,0,6.966900632398718,0,0,0,54.69,57.47,6,1,0,0,11,5,1,697.75,0,0,0 +9399,11526,21032,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,5.949195940138946,6.344476937874378,3,0,0,0,-9,0,-966.0695958267231,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,3.793144203556173,0,0,0,2.919092158008669,20.35446603755505,1,1,0,0,6.297228889436868,0,0,52,45,6,1,0,0,2,2,1,2733,0,0,0 +9400,11527,21033,-9,-9,-9,1,1,0,21,2,0,0,1,1,-9,7,2,0,4,6.809453958709116,6.789303745980703,0,3,0,-9,0,-9,0,-1079.157984563315,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,25,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,5,1,0,0,9,2,0,768,0,0,0 +9401,11528,21034,21035,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,1,0,9.023177477704426,8.929680002044098,1,0,-9,49,0,3,31.64702083691205,0,0,0,73,3,2,3,3,3,2019,4,1,28,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.985617016779512,8.388447272761677,0,0,25.53,33.37,2,1,0,0,12,4,1,771,0,0,0 +9401,11528,21035,21034,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,49,0,-3,-90.3242605942683,0,0,0,76,2,1,3,3,2,2019,4,2,17,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.683252579827319,0,64.04007071617529,1,39.78,43.96,3,1,0,0,12,4,1,771,0,0,0 +9402,11529,21036,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,7.079152631791152,6.877956533661242,3,0,0,0,-9,0,-1112.711797815172,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.70201342469419,0,0,52,46,6,3,0,0,5,2,1,934,0,0,0 +9403,11530,21037,21040,-9,-9,1,1,1,49,1,0,2,0,3,-9,2,1,0,3,8.21679078824514,8.214242128353455,0,2,0,-9,3,0,16,119.9861225081403,0,0,0,33,2,3,1,-9,-9,2019,1,2,6,0,50,24,15,1,0,1,0,8.284671587224052,8.284671587224052,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,6,1,0,0,1,3,1,1046,0,0,0 +9403,11530,21038,-9,21040,21037,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.2332378115318,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,3,1,1046,0,0,0 +9403,11530,21039,-9,21040,21037,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.2317261568325,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,1046,0,0,0 +9403,11530,21040,21037,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,3,7.102424408517728,6.986735538792463,0,2,0,-9,3,0,-16,9.875093683550629,0,0,1,49,3,3,1,-9,-9,2019,1,1,7,0,18,11,15,1,0,1,0,8.693449907194294,8.693449907194294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,7,1,0,0,1,3,1,1046,0,0,0 +9404,11531,21041,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,8.625573965557404,8.684889441371656,0,3,0,0,0,-9,0,-1001.139837745582,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,8,35,37,15,1,8,-9,0,17.01883898828389,17.01883898828389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.14,64.63,2,1,0,0,12,5,1,758,0,0,0 +9405,11532,21042,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,9,3,0,4,0,0,0,3,0,0,0,-9,0,-1092.289337074485,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.06,52.92,7,1,0,0,13,1,0,249,0,0,0 +9406,11533,21043,21044,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,3,6.960781969107419,7.115870570973597,0,1,0,-9,44,0,0,42.94079595843861,0,0,0,65,2,4,1,3,3,2019,1,1,10,0,37,40,15,1,1,1,0,4.068462871786832,4.068462871786832,0,0,0,0,0,0,0,1,1,0,.7249196961427313,0,0,0,52,48,5,1,0,0,6,2,1,2070,0,0,0 +9406,11533,21044,21043,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,4,5.524291338376476,5.645826928322038,0,1,0,-9,44,0,0,-135.26938248506,0,0,0,65,3,3,1,2,2,2019,1,2,12,0,4,4,15,1,0,1,0,7.593710495414292,7.593710495414292,0,0,0,0,0,0,0,1,1,0,0,0,13.84233149911054,3,46.31,58.29,6,1,0,0,6,2,1,2070,0,0,0 +9407,11534,21045,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,1,1,0,4,8.821839920026193,8.832092480738851,0,3,0,0,0,-9,0,-1089.742308920208,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,42,39,15,1,0,-9,0,20.70006909386708,20.70006909386708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.94,48.3,5,1,0,0,12,5,0,1095,0,0,0 +9408,11535,21046,-9,21047,21048,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.152818437213,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,541,0,0,0 +9408,11535,21047,21048,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,2,6.333641330444856,6.064322954482702,0,2,0,-9,7,0,-2,-26.59381810300402,0,0,1,36,2,3,1,-9,-9,2019,1,2,18,6,8,16,15,1,6,1,0,6.648816223398399,6.648816223398399,0,0,0,0,0,0,0,1,1,0,.1627820913294432,0,13.10880649625174,3,38.42,40.88,3,1,0,1,4,3,1,541,0,0,0 +9408,11535,21048,21047,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,3,7.958242986006078,7.860765057167725,0,2,0,-9,7,0,2,-26.12661108208151,0,0,0,34,2,2,1,-9,-9,2019,1,1,7,0,48,58,15,1,0,1,0,6.772610431909762,6.772610431909762,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.65,55.59,6,1,0,0,4,3,1,541,0,0,0 +9408,11535,21049,-9,21047,21048,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-870.7477992375414,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,1,541,0,0,0 +9409,11536,21050,-9,21052,21051,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.9523467746637,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,9,5,1,822.5,0,0,0 +9409,11536,21051,21052,-9,-9,2,1,1,51,1,0,2,0,2,-9,1,1,0,3,9.521202591157886,9.790939996699807,0,2,0,-9,6,0,8,-44.29788417393862,0,0,0,43,1,5,1,3,2,2019,1,1,8,0,45,60,15,1,0,1,0,53.35250845563767,53.35250845563767,0,0,0,0,0,0,0,1,1,0,6.75380068298337,0,0,0,52.99,51.28,6,1,0,0,9,5,1,822.5,0,0,0 +9409,11536,21052,21051,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,5,7.580397460538483,6.989637441506663,0,2,0,-9,6,0,-8,24.4614660515324,0,0,1,51,2,3,1,2,1,2019,1,2,7,0,34,40,15,1,0,1,0,5.940421094964146,5.940421094964146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,9,5,1,822.5,0,0,0 +9409,11536,21053,-9,21052,21051,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.946137892963,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,9,5,1,822.5,0,0,0 +9410,11537,21054,-9,-9,-9,1,1,0,80,2,0,0,0,2,-9,4,3,0,2,0,6.727277926697187,6.619198786136411,3,0,0,0,-9,0,-789.8960068298564,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.927304060028525,0,1,1,0,0,6.976149779283638,0,0,41.37,22.62,2,1,0,0,12,2,0,275,0,0,0 +9411,11538,21055,21056,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,4,0,7.657766819450311,8.0006847154095,1,0,-9,60,0,3,76.55400402268951,0,0,0,78,3,3,3,-9,-9,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.108121094377928,0,0,60.12,54.8,7,1,0,0,10,3,1,676,0,0,0 +9411,11538,21056,21055,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,60,0,-3,-45.6638361401429,0,0,0,81,3,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.782856227457151,0,0,0,57.33,53.46,7,1,0,0,10,3,1,676,0,0,0 +9412,11539,21057,21058,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.969729967036248,7.983788507120201,0,1,0,-9,29,0,-15,42.01815954339225,0,0,0,73,3,1,3,3,3,2019,2,1,11,0,38,38,15,1,0,4,0,7.306037338593962,7.306037338593962,0,0,0,0,0,0,0,1,1,0,0,0,11.51408337251155,1,48,49,6,3,0,0,7,4,1,2225,0,0,0 +9412,11539,21058,21057,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,1,0,8.291342464485219,7.820703087329273,1,0,-9,31,0,15,52.96549681011913,0,0,0,58,2,3,1,-9,-9,2019,3,2,16,4,0,0,15,4,4,1,0,0,0,1,0,1.516407237676723,0,1.075071104648913,0,0,1,1,0,7.574980436319398,8.079359471919391,0,0,34.84,23.77,3,1,0,0,7,4,1,2225,0,0,0 +9412,11540,21059,-9,21057,21058,3,1,1,25,2,0,0,0,1,-9,2,1,0,1,7.861564363698589,7.772378909264446,0,3,0,0,0,-9,0,-1002.856895382861,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,38,13,15,1,3,-9,1,8.617338853075164,8.617338853075164,0,0,0,0,0,0,0,1,1,0,2.787514683718255,0,3.062397377638259,3,31.9,46.56,4,2,0,0,7,3,1,159,0,0,0 +9412,11541,21060,-9,21057,21058,4,1,1,21,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1008.177340235721,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.983226373533895,0,0,3,47,59,1,2,0,0,7,1,1,1557,0,0,0 +9413,11542,21061,-9,-9,-9,1,1,1,39,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-960.2674364289743,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,4,1,0,0,9,1,0,92,0,0,0 +9414,11543,21062,-9,21063,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1034.018475543276,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,5,0,0,9,1,0,908.6666666666666,0,0,0 +9414,11543,21063,-9,-9,-9,1,1,0,37,3,0,2,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-909.7138426443654,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,21,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.97413266428836,3,35.3,31.45,2,5,0,0,9,1,0,908.6666666666666,0,0,0 +9414,11543,21064,-9,21063,-9,3,1,1,17,2,0,2,0,3,-9,97,3,0,2,0,0,0,4,0,0,0,-9,0,-988.4045091300836,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,3.381869889581878,0,0,0,26.71,56.99,3,5,0,1,9,1,0,908.6666666666666,0,0,0 +9414,11544,21065,-9,21063,-9,2,1,1,19,2,0,2,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-993.1960121898196,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25,48.9,1,5,0,1,9,1,0,1798,0,0,0 +9415,11545,21066,21067,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,4.846201454068086,4.531649807753521,1,0,-9,9,0,-3,162.1094911439362,0,0,0,70,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.114205688992785,4.840646293059497,0,0,54.37,54.8,6,1,0,0,10,2,1,1108.5,0,0,0 +9415,11545,21067,21066,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.508144246783974,7.566503359712358,1,0,-9,9,0,3,18.98704158394087,0,0,0,67,2,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.498029175995836,7.701920877941382,0,0,57.76,54.51,7,1,0,0,10,2,1,1108.5,0,0,0 +9416,11546,21068,21070,-9,-9,1,1,0,42,1,0,3,0,2,-9,8,3,1,1,0,0,0,2,0,-9,16,0,-5,17.03631594137389,0,0,1,47,2,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,24.45,4,1,0,0,2,2,1,918,0,0,0 +9416,11546,21069,-9,21068,21070,4,1,0,13,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1171.710897975213,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,2,2,1,918,0,0,0 +9416,11546,21070,21068,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,4,7.659095640134498,7.738236087850386,0,2,0,-9,17,0,5,-33.05351416272676,0,0,0,42,2,1,3,2,2,2019,2,1,12,0,38,35,15,1,0,3,0,5.953446769838616,5.953446769838616,0,0,0,0,0,0,0,1,1,0,.3386165990347477,0,5.362569284014572,1,43.44,58.7,5,1,0,0,2,2,1,918,0,0,0 +9416,11546,21071,-9,21068,21070,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-837.187110058358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,2,1,918,0,0,0 +9416,11546,21072,-9,21068,21070,5,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1017.260361994906,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,2,2,1,918,0,0,0 +9417,11547,21073,21074,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.342753712040334,6.226069911256955,1,0,-9,39,0,3,9.341455410502537,0,0,0,68,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.132099241354583,5.86059566894238,1.921571360154822,3,61.61,37.79,6,1,0,0,10,2,1,1020,0,0,0 +9417,11547,21074,21073,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.089851563321536,7.097774063889161,1,0,-9,39,0,-3,-197.5123801853795,0,0,0,71,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.246108016138428,6.878927915678477,0,3,54.2,57.49,6,1,0,0,10,2,1,1020,0,0,0 +9418,11548,21075,-9,-9,-9,1,1,0,45,2,0,2,0,3,-9,6,3,0,3,0,3.815454379255832,3.686493326247458,4,0,0,0,-9,0,-989.8171798114424,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.830423936985208,0,12.69676299185798,3,45.58,42.43,3,1,0,0,1,1,0,552,0,0,0 +9419,11549,21076,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,6.908705877677583,6.737677919223159,3,0,-9,0,1,0,-1094.243730497964,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,.2386755317275364,.7036874679310063,5.131230362725562,0,0,0,1,1,0,0,6.904591885668477,0,0,41.45,23.14,5,1,0,0,6,2,1,174,0,0,0 +9419,11550,21077,-9,21076,-9,2,1,0,55,2,0,0,0,2,-9,6,3,0,4,6.177973251029941,6.325920168099342,0,3,0,-9,0,-9,0,-959.578966756578,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,6,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.856812311921443,0,27.97437196066844,3,45.34,49.08,5,1,0,0,6,2,1,2107,0,0,0 +9420,11551,21078,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,1,1,0,3,5.573190817676436,6.580489301294677,5.829826006231629,3,0,0,0,-9,0,-1000.261390558541,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,14,6,15,1,0,-9,0,2.95917017578771,2.95917017578771,0,0,0,0,0,0,0,1,1,0,5.294254088579161,5.656121577754647,5.508953757107522,3,53.98,50.87,7,1,0,0,9,2,1,347,0,0,0 +9421,11552,21079,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-883.6724203327343,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,6,1,0,0,7,1,1,563,0,0,0 +9422,11553,21080,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,4,8.576769266060557,8.956502687816744,0,3,0,0,0,-9,0,-1039.879790881255,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,35,39,15,1,0,-9,0,20.28930555258085,20.28930555258085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,2,0,0,8,5,1,1251.5,0,0,0 +9422,11553,21081,-9,21080,-9,2,1,0,16,2,0,0,1,2,-9,7,2,0,3,6.688288115603432,6.144552997257221,0,3,0,0,0,-9,0,-966.7881462162969,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,14,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7202914094377385,0,0,0,27.99,54.97,3,4,0,0,8,5,1,1251.5,0,0,0 +9423,11554,21082,21083,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,5.082564117029732,5.188120233325074,1,0,-9,52,0,-3,-9.745048220197749,0,0,0,73,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.805637993937381,0,0,60.87,44.96,6,1,0,0,10,2,1,514,0,0,0 +9423,11554,21083,21082,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,5.632752188930406,5.726979102092923,1,0,-9,52,0,3,110.8170537483469,0,0,0,70,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.198421729183115,5.654986554981082,0,0,60.12,54.8,7,1,0,0,10,2,1,514,0,0,0 +9424,11555,21084,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1120.924245576868,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.3042031917701,3,35.42,59.31,6,1,0,0,4,1,1,607,0,0,0 +9424,11556,21085,-9,21084,-9,2,1,0,48,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1101.910773215124,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,1,0,0,4,1,1,1290,0,0,0 +9425,11557,21086,21087,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,6.684902336379591,7.122839914134804,1,0,-9,35,0,-3,0,0,0,0,76,1,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.826572738905221,7.002251355474924,6.046895920423316,3,57.16,56.15,7,1,0,0,12,2,1,997,0,0,0 +9425,11557,21087,21086,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,5,0,6.853211807095139,6.964691522991571,1,0,-9,35,0,3,0,0,0,0,73,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.256409576818497,7.221079894367753,0,0,60,52,7,1,0,0,12,2,1,997,0,0,0 +9426,11558,21088,21089,-9,-9,2,1,1,41,1,0,2,0,1,-9,1,1,0,3,7.266492588058317,7.359657711006411,0,2,0,-9,10,0,3,87.85630921149786,0,0,0,38,1,4,1,2,2,2019,1,1,14,2,20,40,15,1,2,1,0,8.263315328056335,8.263315328056335,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.94,46.74,3,1,0,1,4,4,1,710.75,0,0,0 +9426,11558,21089,21088,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.5762070240038,8.972258713567157,0,2,0,-9,10,0,-3,38.06729016288593,0,0,1,41,1,3,1,1,2,2019,1,2,13,2,37,37,15,1,2,1,0,19.04523798301413,19.04523798301413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,54.86,6,1,0,1,4,4,1,710.75,0,0,0 +9426,11558,21090,-9,21089,21088,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.01623558296,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,710.75,0,0,0 +9426,11558,21091,-9,21089,21088,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.8600930176478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,710.75,0,0,0 +9427,11559,21092,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,2,0,6.777131840003044,6.732700416074429,3,0,-9,0,1,0,-891.7126900782863,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,.4389163117664139,0,0,0,4.72632950179262,47.59602241440944,1,1,0,0,6.300761483108746,0,0,35.69,30.24,5,1,0,0,12,2,1,345,0,0,0 +9428,11560,21093,21094,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,2,0,7.698945511756927,7.419000218478357,1,0,-9,8,0,0,63.77943433393748,0,0,0,61,2,3,3,3,2,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.621746407241554,7.770672704740804,0,3,42.74,49.73,4,1,0,0,12,4,1,428.5,0,0,0 +9428,11560,21094,21093,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,3,0,7.740388444888794,7.97705728850829,1,0,-9,8,0,0,80.14056761212316,0,0,0,61,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.651320069745905,8.376389235896477,0,0,49.04,55.86,5,1,0,0,12,4,1,428.5,0,0,0 +9429,11561,21095,21098,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.478210522820264,8.971404791038838,0,2,0,-9,6,0,0,13.78403638735296,0,0,0,45,2,4,1,1,2,2019,1,2,6,0,44,42,15,1,0,1,0,13.60007543955484,13.60007543955484,0,0,0,0,0,0,0,1,1,0,2.947848537833105,0,0,0,49.86,55.31,6,1,0,0,8,4,1,547.25,0,0,0 +9429,11561,21096,-9,21098,21095,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.0692880764268,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,4,1,547.25,0,0,0 +9429,11561,21097,-9,21098,21095,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.088663528562,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,1,547.25,0,0,0 +9429,11561,21098,21095,-9,-9,2,1,0,45,1,0,2,0,2,-9,1,1,0,4,7.703215380048145,7.537952076322193,0,2,0,-9,6,0,0,137.2343249859629,0,0,0,45,2,4,1,2,2,2019,1,1,13,2,30,28,15,1,2,1,0,9.335959637576844,9.335959637576844,0,0,0,0,0,0,0,1,1,0,7.644095182533193,0,0,0,45.32,53.5,5,1,0,0,8,4,1,547.25,0,0,0 +9430,11562,21099,21100,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,52,0,2,5.238359156635601,0,0,0,73,1,3,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.496971371565324,0,0,0,53.05,51.13,6,1,0,0,9,4,1,140.5,0,0,0 +9430,11562,21100,21099,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.687378259101216,8.355284203322272,1,0,-9,10,0,-2,143.7847691533042,0,0,0,75,3,4,3,-9,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.386232071847463,8.102693769523162,0,0,63.17,32.94,5,1,0,0,9,4,1,140.5,0,0,0 +9431,11563,21101,21102,-9,-9,2,1,0,52,1,0,0,0,1,-9,1,1,0,4,8.053323223576525,8.334710328430493,0,1,0,-9,29,0,-4,1.249997495375585,0,0,0,56,1,4,1,3,1,2019,1,1,9,0,15,20,15,1,0,1,0,36.76799123033404,36.76799123033404,0,0,0,0,0,0,0,0,0,0,1.458142691830866,0,0,0,51.83,57.2,6,1,0,0,12,5,1,492.5,0,0,0 +9431,11563,21102,21101,-9,-9,1,1,1,56,1,0,0,0,1,-9,1,1,0,4,8.473857726726918,8.119398657297923,0,1,0,-9,29,0,4,-58.50495581741621,0,0,0,52,1,4,1,-9,3,2019,1,2,12,0,20,0,15,1,0,1,0,25.57906333743468,25.57906333743468,0,0,0,0,0,0,0,0,0,0,5.348408920068669,0,0,0,57.16,56.15,6,1,0,0,12,5,1,492.5,0,0,0 +9432,11564,21103,21104,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-1,-6.935328650204733,0,0,0,68,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.084724028630401,0,0,0,60.29,52.11,7,1,0,0,7,3,1,798,0,0,0 +9432,11564,21104,21103,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.817612405521556,8.158000341199257,1,0,-9,46,0,1,-69.43074621316468,0,0,0,67,3,3,3,2,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.000504651268833,8.268520596982455,12.13289175130184,3,58.15,52.91,6,1,0,0,7,3,1,798,0,0,0 +9433,11565,21105,21106,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,39,0,2,-8.510057986507956,0,0,0,76,3,5,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.044160096386591,0,0,0,59.14,52.5,7,1,0,0,8,2,1,590,0,0,0 +9433,11565,21106,21105,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,5,0,7.165746306780023,7.392705826835313,1,0,-9,41,0,-2,24.13660455138468,0,0,0,78,3,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.506833935350954,0,0,48.77,60.16,5,1,0,0,8,2,1,590,0,0,0 +9434,11566,21107,21108,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,9.377482145852785,9.595349550201473,0,1,0,-9,7,0,2,-104.935028258465,0,0,0,29,2,4,1,-9,-9,2019,1,2,14,2,37,37,15,1,2,1,0,47.66433827083698,47.66433827083698,0,0,0,0,0,0,0,0,0,0,4.777249647300746,0,0,0,38.34,62.12,6,1,0,0,9,5,1,5862,0,0,0 +9434,11566,21108,21107,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,4,8.189645233744482,8.326489842551998,0,1,0,-9,7,0,-2,9.507740286809824,0,1,1,31,2,4,1,2,2,2019,1,1,9,0,39,47,15,1,0,1,0,8.507910926492594,8.507910926492594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,9,5,1,5862,0,0,0 +9435,11567,21109,21111,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.433555530442077,7.126954910405358,0,2,0,-9,10,0,-12,-86.97191383087548,0,0,1,46,2,3,1,3,2,2019,1,2,11,0,20,0,15,1,2,1,0,11.02283405590514,11.02283405590514,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.51,54.51,5,1,0,1,10,3,0,1536.333333333333,0,0,0 +9435,11567,21110,-9,21109,21111,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.1904649339525,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,3,0,1536.333333333333,0,0,0 +9435,11567,21111,21109,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,3,7.643154124971224,7.789089373657963,0,2,0,-9,10,0,12,13.10880240058859,0,0,0,34,2,4,1,-9,-9,2019,1,1,9,0,30,30,15,1,0,1,0,6.497048896251174,6.497048896251174,0,0,0,0,0,0,0,1,1,0,3.707811513475265,0,0,0,53.39,44.47,4,1,0,0,10,3,0,1536.333333333333,0,0,0 +9436,11568,21112,-9,-9,-9,2,1,0,22,3,0,0,0,2,-9,5,1,0,3,7.572405685974918,7.29735749385715,0,3,0,0,0,-9,0,-1080.870423287519,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,30,30,15,1,0,-9,1,6.809206324958553,6.809206324958553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,9,3,0,537,0,0,0 +9437,11569,21113,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,5.331887064030187,5.161363517161883,3,0,0,0,-9,0,-899.3451738452482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,3.689826852883822,0,0,0,0,41.51051476702196,1,1,0,.5191854921563406,5.289541483363927,0,0,46.31,38.3,5,1,0,0,4,2,0,2437,0,0,0 +9438,11570,21114,21116,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,2,7.901984516162525,7.646035446509798,0,2,0,-9,8,0,-4,72.04347057073215,0,0,1,40,2,2,3,3,-9,2019,2,1,22,10,33,33,15,1,10,3,0,7.865321240750754,7.865321240750754,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,47.86,3,2,0,1,11,2,0,1226,0,0,0 +9438,11570,21115,-9,21114,21116,3,1,0,14,2,0,1,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-883.8378649849051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,3,1,0,0,11,2,0,1226,0,0,0 +9438,11570,21116,21114,-9,-9,1,1,1,40,1,0,1,0,2,-9,97,3,0,2,0,0,0,2,0,-9,8,0,4,-19.03269975672794,0,0,0,36,2,2,1,2,2,2019,3,2,23,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.42,48.15,2,1,0,1,11,2,0,1226,0,0,0 +9439,11571,21117,21119,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,2,8.295436095507473,8.506950466879111,0,2,0,-9,24,0,-3,98.14787332943908,0,0,0,54,1,3,1,1,1,2019,1,1,12,0,38,40,15,1,0,1,0,17.50093838324775,17.50093838324775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.89,47.88,5,1,0,0,12,5,1,1074,0,0,0 +9439,11571,21118,-9,21117,21119,4,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-980.1609593873152,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.986292145901692,0,0,0,45.85,61.26,6,1,0,0,12,5,1,1074,0,0,0 +9439,11571,21119,21117,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,3,9.089507948653425,9.59260929663569,0,2,0,-9,24,0,3,49.92913920402802,0,0,0,51,1,2,1,1,1,2019,1,2,12,0,60,40,15,1,0,1,0,25.89273997522464,25.89273997522464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,12,5,1,1074,0,0,0 +9439,11572,21120,-9,21117,21119,3,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-967.0397135458383,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.678249073973218,0,0,0,57.16,56.15,5,1,0,0,12,5,1,589,0,0,0 +9440,11573,21121,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,5.525253050999711,5.296379452066505,3,0,0,0,-9,0,-1058.215327834095,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.176361282691526,5.881223696102647,0,0,59.84,33.48,2,1,0,0,12,2,1,1358,0,0,0 +9441,11574,21122,21125,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,4,7.919521295136813,7.521859288903735,0,2,0,-9,2,0,2,-29.11193157985195,-9,0,0,32,1,5,1,-9,-9,2019,1,2,10,0,38,0,15,1,0,1,0,8.816389540951512,8.816389540951512,0,0,0,0,0,0,0,1,1,0,1.661062456370026,0,0,0,46.63,59.72,6,1,0,0,10,4,0,527,0,0,0 +9441,11574,21123,-9,21125,21122,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.9889127437222,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,0,527,0,0,0 +9441,11574,21124,-9,21125,21122,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.0902811744896,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,0,527,0,0,0 +9441,11574,21125,21122,-9,-9,2,1,0,32,1,1,2,0,1,-9,2,1,0,5,8.543810036786695,8.481786939073668,0,2,0,-9,2,0,-2,1.000858028118638,0,0,1,34,2,4,1,-9,-9,2019,1,1,22,9,42,52,15,1,9,1,0,12.70168070750029,12.70168070750029,0,0,0,0,0,0,0,1,1,0,7.013668580628718,0,0,0,41.33,56.87,6,1,0,0,10,4,0,527,0,0,0 +9442,11575,21126,21127,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.40873517372459,8.411180313706705,0,1,0,-9,35,0,-1,3.220538310650782,0,0,0,53,2,5,1,3,3,2019,1,2,5,0,30,30,15,1,0,1,0,20.32026777193521,20.32026777193521,0,0,0,0,0,0,0,0,0,0,5.42457819028386,0,4.788237524265922,3,59.29,49.68,7,1,0,0,12,5,1,2121,0,0,0 +9442,11575,21127,21126,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,5,9.491846073124107,9.151444561837135,0,1,0,-9,9,0,1,121.7374719204758,0,0,0,52,1,4,1,-9,-9,2019,1,1,10,0,46,85,15,1,0,1,0,20.08916900337522,20.08916900337522,0,0,0,0,0,0,0,0,0,0,4.015331585741071,0,0,0,51.14,60.45,6,1,0,0,12,5,1,2121,0,0,0 +9443,11576,21128,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,1,1,0,3,6.980129833858155,7.062342605953391,0,3,0,0,0,-9,0,-977.8668017318106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,20,16,15,1,5,-9,0,5.730414792141888,5.730414792141888,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,38.07,1,3,0,0,5,2,0,488,0,0,0 +9443,11577,21129,-9,-9,-9,2,1,1,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1123.42098291183,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,3,0,0,5,1,0,1046,0,0,0 +9444,11578,21130,21132,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,2,7.320282957671279,7.588604597673276,0,2,0,-9,18,0,-8,-129.5884212960634,0,0,1,46,3,4,1,2,2,2019,1,2,9,0,21,20,15,1,0,1,0,9.029151136313683,9.029151136313683,0,0,0,0,0,0,0,1,1,0,3.746531721422576,0,0,0,57.57,49.69,2,1,0,0,6,3,1,297,0,0,0 +9444,11578,21131,-9,21130,21132,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.034574827943,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,3,1,297,0,0,0 +9444,11578,21132,21130,-9,-9,2,1,1,46,1,0,3,0,3,-9,2,1,0,4,8.605028975746801,8.520235212202856,0,2,0,-9,18,0,8,-30.90487689320586,0,0,0,38,2,2,1,3,2,2019,1,1,9,1,40,40,15,1,1,1,0,12.03168188734559,12.03168188734559,0,0,0,0,0,0,0,1,1,0,3.955598121883205,0,0,0,58.15,52.91,6,1,0,0,6,3,1,297,0,0,0 +9444,11578,21133,-9,21130,21132,5,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.840022314215,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,3,1,297,0,0,0 +9445,11579,21134,21136,-9,-9,1,1,1,31,1,0,2,0,2,-9,1,1,0,3,7.25985887420236,7.454338243960252,0,2,0,-9,7,0,0,23.87134390269147,0,0,0,31,2,3,1,1,2,2019,1,2,10,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.08213274443233,0,0,0,46.67,55.57,6,1,0,0,11,3,1,681,0,0,0 +9445,11579,21135,-9,21136,21134,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.171022309633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,1,681,0,0,0 +9445,11579,21136,21134,-9,-9,2,1,0,31,1,0,2,0,2,-9,2,1,0,3,7.552305099790023,7.191354472896721,0,2,0,-9,7,0,0,92.79926121672463,0,0,1,31,2,3,1,-9,-9,2019,1,1,13,1,20,8,15,1,1,1,0,9.285286910020188,9.285286910020188,0,0,0,0,0,0,0,1,1,0,6.462910677307896,0,0,0,26,51.5,3,1,0,0,11,3,1,681,0,0,0 +9445,11579,21137,-9,21136,21134,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.0110212006164,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,1,681,0,0,0 +9446,11580,21138,-9,21140,21139,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1082.956043384452,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,9,5,1,962,0,0,0 +9446,11580,21139,21140,-9,-9,1,1,1,42,1,1,1,0,1,-9,1,1,0,3,8.416996249461043,8.409897831462514,0,2,0,-9,7,0,8,43.87935253498974,0,0,0,34,1,4,1,2,2,2019,1,2,5,0,36,39,15,1,0,1,0,14.44547270028492,14.44547270028492,0,0,0,0,0,0,0,0,0,0,8.727478995300993,0,0,0,56.1,49.93,7,4,0,0,9,5,1,962,0,0,0 +9446,11580,21140,21139,-9,-9,2,1,0,34,1,1,1,0,1,-9,5,1,0,4,8.863182502206083,8.629934758440957,0,2,0,-9,7,0,-8,204.1183554238401,-9,0,1,42,1,3,1,1,1,2019,1,1,11,0,40,0,15,1,2,1,0,19.47756134774896,19.47756134774896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,5,1,0,0,9,5,1,962,0,0,0 +9447,11581,21141,-9,-9,-9,1,1,0,65,3,0,2,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1034.636414333026,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,1,0,0,71.95178632564269,26.67903374028961,0,0,1,1,0,0,0,0,0,50,48,5,3,0,0,6,1,1,174,0,0,0 +9447,11582,21142,21144,21141,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,3,8.174029399284855,8.128340348918842,0,2,0,-9,6,0,8,-50.14626159684025,0,0,0,27,3,3,3,3,3,2019,2,4,17,5,37,37,15,1,5,3,0,11.09744786963288,11.09744786963288,0,0,0,0,0,0,0,1,1,0,0,0,78.71584107189713,3,37.28,55.9,4,3,0,0,6,3,1,858,0,0,0 +9447,11582,21143,-9,21144,21142,6,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.1146396772371,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,858,0,0,0 +9447,11582,21144,21142,-9,-9,4,1,0,27,1,0,2,0,3,-9,3,3,0,3,0,0,0,2,0,-9,6,0,-8,18.32715594650845,0,1,1,35,1,3,1,-9,-9,2019,3,2,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.7763581032701,3,41.14,54.03,5,3,1,1,6,3,1,858,0,0,0 +9447,11582,21145,-9,21144,21142,5,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.2886197415131,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,6,3,1,858,0,0,0 +9448,11583,21146,-9,21148,21147,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.512240049827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,462,0,0,0 +9448,11583,21147,21148,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,3,8.377128287038323,8.113398513555472,0,2,0,-9,28,0,2,-14.02334702284579,0,0,0,45,2,3,1,3,3,2019,1,1,6,0,45,42,15,1,0,1,0,13.18213152940206,13.18213152940206,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.59,43.82,6,1,0,0,2,4,1,462,0,0,0 +9448,11583,21148,21147,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,3,7.857688592658132,8.040987707855601,0,2,0,-9,28,0,-2,2.836154378367469,0,0,0,47,2,3,1,3,3,2019,1,2,10,0,24,24,15,1,0,1,0,12.16783328387119,12.16783328387119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.58,55.59,5,1,0,0,2,4,1,462,0,0,0 +9449,11584,21149,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,3,7.817836884112519,8.280565201517389,0,3,0,0,0,-9,0,-1000.944163556116,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,36,36,15,1,0,-9,0,8.241904840479789,8.241904840479789,0,0,0,0,0,0,0,0,0,0,4.785679574550431,0,0,0,51.41,56.15,6,1,0,0,11,4,1,546,0,0,0 +9450,11585,21150,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,3,0,7.618187346656989,7.422466322593284,3,0,0,0,-9,0,-948.9211443195915,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.466990504563215,7.651929953631306,0,0,57.33,53.46,6,1,0,0,5,3,1,1051,0,0,0 +9451,11586,21151,-9,21153,-9,3,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.0195333430088,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,1,0,1089.333333333333,0,0,0 +9451,11586,21152,-9,21153,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.1843721499164,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,1,0,1089.333333333333,0,0,0 +9451,11586,21153,-9,-9,-9,1,1,0,31,2,0,3,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1041.911241862938,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,16,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.70000363948542,3,50.23,52.59,6,1,0,0,6,1,0,1089.333333333333,0,0,0 +9452,11587,21154,21155,-9,-9,5,1,0,18,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,1,-9,-8,0,-9,1,1,26,2,5,3,-9,-9,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.3,54.5,3,1,1,0,5,1,0,272,0,0,0 +9452,11587,21155,21154,-9,-9,1,1,1,26,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,1,1,-9,8,0,0,1,0,18,2,2,3,-9,1,2019,4,5,8,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.34,56.67,7,1,1,1,5,1,0,272,0,0,0 +9453,11588,21156,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,4,3,0,2,0,6.980082670121576,7.153773211617667,3,0,0,0,-9,0,-983.9809206508276,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,38,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.268271883642197,7.149134484990099,4.47101526216184,3,43.4,31.71,6,1,0,0,13,3,1,342,0,0,0 +9454,11589,21157,21158,-9,-9,2,1,0,47,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,28,0,-5,0,0,0,0,52,2,1,3,-9,-9,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.15,19.36,5,1,0,0,2,1,0,753.5,0,0,0 +9454,11589,21158,21157,-9,-9,1,1,1,52,1,0,0,0,2,-9,6,3,0,1,0,0,0,1,0,-9,28,0,5,0,0,0,0,47,2,1,3,-9,-9,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.02614746934131,1,56.35,24.73,3,1,0,0,2,1,0,753.5,0,0,0 +9454,11590,21159,-9,21157,21158,3,1,0,24,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-969.0763269615918,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,23,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.48327565691062,3,25.74,56.13,2,1,1,0,2,1,0,253,0,0,0 +9454,11591,21160,-9,21157,21158,4,1,1,22,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-940.4575429774101,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,2,1,1,0,2,1,0,226,0,0,0 +9455,11592,21161,21162,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.58076850007358,8.217754632716929,1,0,-9,20,0,6,-29.07988434133135,0,0,0,65,1,3,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.379655541253293,8.265541958232772,0,0,57.16,56.15,7,1,0,0,11,4,1,880.5,0,0,0 +9455,11592,21162,21161,-9,-9,1,1,0,65,1,0,0,0,1,-9,2,1,0,3,5.069521179527078,7.508983575186344,7.520179091928211,1,0,-9,20,0,-6,-18.93492890936183,0,0,0,71,1,4,3,2,2,2019,2,2,8,0,5,0,15,1,0,4,0,4.320303634311981,4.320303634311981,0,0,0,0,0,0,0,1,1,0,0,7.364551853546502,0,0,56.78,44.13,7,1,0,0,11,4,1,880.5,0,0,0 +9456,11593,21163,21164,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.339708774084925,7.603574973392084,0,2,0,-9,6,0,0,43.1175935728514,0,0,0,48,2,4,1,3,2,2019,1,1,8,1,50,40,15,1,1,1,0,4.085088204103116,4.085088204103116,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,7,4,1,345,0,0,0 +9456,11593,21164,21163,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.699475357626385,8.727828744293175,0,2,0,-9,6,0,0,155.2125739572524,0,0,0,48,2,3,1,2,3,2019,1,2,6,0,60,60,15,1,0,1,0,10.4310318724842,10.4310318724842,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,64.19,5,1,0,0,7,4,1,345,0,0,0 +9456,11594,21165,-9,21163,21164,3,1,0,19,2,0,1,0,2,-9,2,1,0,3,7.580645129705705,7.310868924121558,0,3,0,0,0,-9,0,-1023.124752149677,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,25,15,1,0,-9,1,5.12331094722397,5.12331094722397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,52.64,6,1,0,0,7,3,1,1261,0,0,0 +9457,11595,21166,21167,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,1,-9,1,20.17381150361805,-9,0,0,63,3,3,1,-9,-9,2019,3,1,3,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.78,49.92,6,1,0,0,7,5,1,795,0,0,0 +9457,11595,21167,21166,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,3,8.86418481125645,9.10921607643723,0,1,0,-9,1,-9,-1,58.96532361948285,-9,0,0,64,2,4,3,-9,-9,2019,2,2,8,0,25,0,15,1,0,4,0,32.26070877362135,32.26070877362135,0,0,0,0,0,0,0,1,1,0,5.869348029379853,0,0,0,60.29,52.11,6,1,0,0,7,5,1,795,0,0,0 +9458,11596,21168,21170,-9,-9,1,1,0,46,1,0,1,0,3,-9,2,1,0,2,7.129146481097146,7.229426756556216,0,2,0,-9,4,0,-12,-36.90277800392426,0,0,0,58,2,2,3,2,2,2019,2,3,18,6,27,26,15,1,6,3,0,6.221071468475624,6.221071468475624,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.11,49.96,4,1,0,0,11,2,0,555.6666666666666,0,0,0 +9458,11596,21169,-9,21168,21170,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.994079681262,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,2,0,555.6666666666666,0,0,0 +9458,11596,21170,21168,-9,-9,3,1,1,58,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,4,0,12,-120.860525334519,0,0,0,46,3,2,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,29.76,5,1,0,0,11,2,0,555.6666666666666,0,0,0 +9459,11597,21171,21173,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,3,8.124815221376972,7.926753927081778,0,2,0,-9,9,0,-6,-32.42782969156637,0,0,1,37,2,3,1,-9,-9,2019,1,1,19,8,35,21,15,1,8,1,0,11.7109982670776,11.7109982670776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.88,45.75,1,1,0,0,8,5,0,460.3333333333333,0,0,0 +9459,11597,21172,-9,21171,21173,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.2192126497388,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,5,0,0,8,5,0,460.3333333333333,0,0,0 +9459,11597,21173,21171,-9,-9,1,1,1,37,1,0,1,0,2,-9,1,1,0,3,9.236867333636352,9.392207925011615,0,2,0,-9,10,0,6,29.7489310230427,0,0,0,31,2,3,1,-9,-9,2019,1,2,14,2,25,25,15,1,2,1,0,47.07867620943149,47.07867620943149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.92,49.8,2,1,0,0,8,5,0,460.3333333333333,0,0,0 +9460,11598,21174,21175,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,5,9.012033295594168,8.87531564485586,0,1,0,-9,1,-9,2,-120.7914958095023,-9,1,0,27,1,5,1,-9,-9,2019,1,1,10,0,42,0,15,1,0,1,0,19.53191183893691,19.53191183893691,0,0,0,0,0,0,0,0,0,0,4.038795592556676,0,0,0,48.77,60.16,6,1,0,0,6,5,0,1732,0,0,0 +9460,11598,21175,21174,-9,-9,1,1,0,27,1,0,0,0,1,1,2,1,0,5,8.050223553419137,8.128018036596044,0,1,0,1,1,-9,-2,-89.2390646811416,-9,1,1,29,1,5,1,2,1,2019,1,2,12,0,58,0,15,1,0,1,0,7.302133928361114,7.302133928361114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,6,1,0,0,6,5,0,1732,0,0,0 +9461,11599,21176,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,3,7.851312433414191,8.223197484827939,6.482453672384024,4,0,0,0,-9,0,-1107.309904986618,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,32,30,15,1,0,-9,0,8.624120392877259,8.624120392877259,0,0,0,0,0,0,0,1,1,0,6.988310875325541,0,0,0,52.48,55.6,5,1,0,0,5,3,1,498,0,0,0 +9462,11600,21177,21178,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,6.271226268482274,6.768843634067846,1,0,-9,8,0,8,62.72854876209727,0,0,0,71,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,9.183569754887593,0,0,0,0,1,1,0,6.496593403427458,6.284152145184278,0,0,71.62,19.47,6,1,0,0,11,2,1,2681.5,0,0,0 +9462,11600,21178,21177,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-8,6.750642521794967,0,0,0,79,2,3,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.774768957119607,1,55.25,39.29,7,1,0,0,11,2,1,2681.5,0,0,0 +9463,11601,21179,21180,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,5.637597742444621,5.936548691874202,1,0,-9,17,0,-1,-.4310273784455345,0,0,0,68,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,11.39269439702789,0,0,0,0,1,1,0,0,5.861941473944786,0,0,35.69,59.37,7,1,0,0,9,2,1,1061,0,0,0 +9463,11601,21180,21179,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,5.893092554784339,6.119992256580716,1,0,-9,17,0,1,-93.45857835802387,0,0,0,67,3,4,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,.798494120357125,1.962156008370144,0,0,0,0,1,1,0,5.877775678823692,6.210697007063851,0,0,52.63,34.01,5,1,0,1,9,2,1,1061,0,0,0 +9464,11602,21181,21182,-9,-9,2,1,0,77,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,47,-9,-7,-135.1148442517695,-9,0,0,84,2,4,3,2,2,2019,4,1,32,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.681738617422633,0,0,0,14.06,30.46,1,1,0,0,10,5,1,1107,0,0,0 +9464,11602,21182,21181,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,4,0,8.836153164380374,9.031528707008006,1,0,-9,47,-9,7,51.14388383366912,-9,0,0,77,2,1,3,3,3,2019,4,2,11,1,0,0,15,4,1,3,0,0,0,1,0,0,0,0,0,0,1,1,0,6.112928102912687,9.259362307697979,44.84956925917805,1,38.88,61.85,2,1,0,0,10,5,1,1107,0,0,0 +9465,11603,21183,21184,-9,-9,1,1,0,58,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,36,0,-1,-35.03991907605761,0,0,0,59,3,3,1,-9,3,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,42.86,49.95,4,1,1,1,10,2,0,784.5,0,0,0 +9465,11603,21184,21183,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,3,6.84470147816426,7.128358446496896,0,1,0,-9,36,0,1,93.95676464200943,0,0,0,58,3,2,3,3,3,2019,2,1,36,12,15,15,15,1,12,3,0,8.292408027662521,8.292408027662521,0,0,0,0,0,0,0,1,1,0,0,0,0,3,38.56,45.76,3,1,0,1,10,2,0,784.5,0,0,0 +9465,11604,21185,-9,21183,21184,3,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.929440970654842,7.491308743873299,0,3,0,0,0,-9,0,-999.0789415290799,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,1,35,0,15,1,1,-9,1,7.192395230213939,7.192395230213939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,7,1,0,0,10,3,0,2575,0,0,0 +9466,11605,21186,21187,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,7.053181614079451,7.019899717968761,1,0,-9,41,0,0,-47.56454955205002,0,0,0,65,2,3,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.65260787630279,7.127207705171112,0,0,52,54.51,6,1,0,0,10,3,1,1476,0,0,0 +9466,11605,21187,21186,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,6.296870620844389,7.638402716964865,7.407061868620319,1,0,-9,41,0,0,-128.4244208565749,0,0,0,65,1,3,3,2,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.455262327612288,7.485018079347842,0,3,43.35,52.88,6,1,0,0,10,3,1,1476,0,0,0 +9466,11606,21188,-9,21187,21186,3,1,1,33,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1058.42811039699,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.35,60.97,2,1,0,0,10,1,1,540,0,0,0 +9467,11607,21189,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,5.841084555064175,5.896881884818632,3,0,0,0,-9,0,-845.6272472369515,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.740719171704394,0,0,52,45,6,1,0,0,5,2,1,2169,0,0,0 +9468,11608,21190,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.892651856756492,8.666667204847995,0,3,0,0,0,-9,0,-942.6925517776507,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,8,15,1,0,-9,0,20.60436695055986,20.60436695055986,0,0,0,0,0,0,0,0,0,0,5.44969360291606,0,0,0,53.33,53.71,6,3,0,0,8,5,0,484,0,0,0 +9469,11609,21191,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,2,1,0,4,5.87708531582685,6.123462672364453,4.5739167517009,3,0,0,0,-9,0,-1027.730492393535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,8,8,15,1,0,-9,0,5.701840842637875,5.701840842637875,1,0,0,0,0,0,0,1,1,0,0,4.586877755609438,0,0,58.15,52.91,6,1,0,0,10,2,1,325,0,0,0 +9470,11610,21192,21193,-9,-9,1,1,0,64,1,0,0,0,1,-9,1,1,0,4,2.332778370579053,10.47576852564236,10.59252171647174,1,0,-9,43,0,-5,24.28364904414238,0,0,0,69,1,3,3,2,1,2019,2,2,7,0,5,5,15,1,0,4,0,.1859805434995809,.1859805434995809,0,0,0,0,0,0,0,1,1,0,10.80827379286377,10.67290481632667,0,0,54.95,47.49,6,1,0,0,7,5,1,1197.5,0,0,0 +9470,11610,21193,21192,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,7.232439789262137,7.706412312883009,1,0,-9,43,0,5,97.01849067756392,0,0,0,64,1,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.30238783352018,0,0,60.6,43.75,7,1,0,0,7,5,1,1197.5,0,0,0 +9471,11611,21194,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,1,1,0,3,7.244320784443969,7.119738415383218,0,3,0,0,0,-9,0,-1051.12969677694,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,28,21,15,1,0,-9,0,6.976356129278297,6.976356129278297,0,0,0,0,0,0,0,0,0,0,3.091352108514112,0,0,0,55.53,51.55,6,1,0,0,8,3,1,725,0,0,0 +9472,11612,21195,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1039.162112405384,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,1,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.2606079300132881,0,0,0,22.04,60.35,1,1,0,0,7,1,1,2634,0,0,0 +9473,11613,21196,21197,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,8.391161304778318,8.627722513790019,1,0,-9,30,0,8,-2.540046230383124,0,0,0,63,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.368006763763267,0,0,57.16,56.15,7,1,0,0,1,5,1,314,0,0,0 +9473,11613,21197,21196,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,3,7.651574458935498,7.886047585259391,7.125439883223716,1,0,-9,6,0,-8,72.51960136438348,-9,0,0,71,2,4,3,-9,-9,2019,2,1,11,0,24,0,15,1,2,4,0,9.674712139427934,9.674712139427934,0,0,0,0,0,0,0,1,1,0,4.627850121463116,7.303363561572263,0,0,50,47,5,1,0,0,1,5,1,314,0,0,0 +9474,11614,21198,21199,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,5,8.349270000822301,8.028441138226944,0,1,0,-9,24,0,0,107.5160845669565,0,0,1,52,2,2,1,3,3,2019,1,1,13,1,37,37,15,1,1,1,0,16.93625306443515,16.93625306443515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.55,61.1,5,1,0,0,2,5,1,959.5,0,0,0 +9474,11614,21199,21198,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.113867506953648,8.135777183269333,0,1,0,-9,22,0,9,76.64135922701288,0,0,0,43,2,5,1,3,3,2019,1,2,9,0,57,48,15,1,0,1,0,6.568075507225563,6.568075507225563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.52,45.11,6,1,0,0,2,5,1,959.5,0,0,0 +9474,11615,21200,-9,21198,21199,3,1,1,19,2,0,0,0,2,-9,2,1,0,5,7.556004049857947,7.68159627756574,0,3,0,0,0,-9,0,-1048.247165068792,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,32,12,15,1,2,-9,1,8.15682858825247,8.15682858825247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.23,60.49,5,1,0,0,2,3,1,202,0,0,0 +9475,11616,21201,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-986.7760355553796,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,6,3,0,0,8,1,0,705,0,0,0 +9476,11617,21202,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,3,8.556238634628475,8.475054330293322,0,3,0,0,0,-9,0,-975.4894456017437,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,46,42,15,1,0,-9,0,13.1617476159727,13.1617476159727,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.27,51.5,5,1,0,0,5,4,1,828,0,0,0 +9476,11618,21203,-9,21202,-9,2,1,1,21,2,0,0,1,2,0,7,2,0,4,7.330872670150407,7.435351546703231,0,3,0,0,0,-9,0,-967.1825053331316,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,27,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,6,1,0,0,5,3,1,1725,0,0,0 +9477,11619,21204,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,5.700368556147712,5.194539861867582,3,0,0,0,-9,0,-958.4300047978716,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.915136217293468,0,0,53.92,52.23,6,1,0,0,12,2,1,261,0,0,0 +9478,11620,21205,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,2,8.100320228795059,8.28089880047267,0,1,0,-9,2,0,3,38.18088228555337,0,0,1,-9,-9,-9,-9,2,2,2019,1,2,5,0,38,36,15,1,0,-9,0,9.479237168860392,9.479237168860392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.69,45.14,6,1,0,0,2,5,1,305,0,0,0 +9478,11621,21206,-9,-9,-9,2,1,0,28,2,0,0,0,1,-9,1,1,0,5,9.667257408393299,9.485052191586497,0,1,0,-9,2,0,-3,-79.43775954318996,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,1,7,0,35,40,15,1,0,-9,0,49.73189278984716,49.73189278984716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,1,544,0,0,0 +9479,11622,21207,-9,-9,-9,1,1,1,91,3,0,0,0,3,-9,4,3,0,4,0,7.473591735463777,8.012162233948262,3,0,-9,0,-9,0,-991.9016946296744,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.292027598259185,0,0,60.12,54.8,6,1,0,0,6,3,1,545,0,0,0 +9480,11623,21208,21209,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,7.289146749980336,7.261007422604609,1,0,-9,5,0,2,-88.11607331722522,0,0,0,68,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.436283490939614,0,0,57.33,53.46,6,1,0,0,12,2,1,943,0,0,0 +9480,11623,21209,21208,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,51,0,-2,-91.90298687598705,0,0,0,70,3,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,16.34,6,1,0,0,12,2,1,943,0,0,0 +9481,11624,21210,-9,21211,-9,1,1,1,63,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-936.4184275917858,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,129.266018241525,3,29.45,37.16,7,1,0,0,2,1,1,2517,0,0,0 +9481,11625,21211,-9,-9,-9,2,1,0,95,3,0,0,0,3,-9,8,3,1,3,0,6.247865455623582,6.308232851145103,3,0,0,0,-9,0,-1057.704349079626,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,1,3.696736077041297,0,5.746984576293124,41.50171640235676,0,0,1,1,0,1.469804176940941,6.502231898199956,0,0,55,43,6,1,0,0,2,2,1,5660,0,0,0 +9482,11626,21212,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1032.598724310599,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,17.96588268906757,0,0,0,1,1,0,0,0,0,0,51,46,5,4,0,1,6,1,0,763,0,0,0 +9483,11627,21213,-9,21214,21215,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.126595620374,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,1,671.5,0,0,0 +9483,11627,21214,21215,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,5,8.515905448921943,8.757886259168346,0,2,0,-9,12,0,-7,97.41368826859183,0,0,1,45,1,4,1,1,1,2019,1,1,8,1,35,32,15,1,1,1,0,16.30824445728733,16.30824445728733,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.95,63.66,5,1,0,0,9,5,1,671.5,0,0,0 +9483,11627,21215,21214,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,4,9.111398796050034,9.029063128980811,0,2,0,-9,12,0,7,-109.1693031027515,0,0,0,38,1,5,1,3,3,2019,1,2,4,0,52,50,15,1,0,1,0,15.67034461528646,15.67034461528646,0,0,0,0,0,0,0,1,1,0,2.287410265129684,0,2.761208034490984,3,46.39,60.99,6,1,0,0,9,5,1,671.5,0,0,0 +9483,11627,21216,-9,21214,21215,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.945529389057,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,671.5,0,0,0 +9484,11628,21217,21218,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,7.064014663580306,7.507841247932578,1,0,-9,60,0,0,-38.21195347849042,0,0,0,81,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.895162636801267,7.131735631827344,0,0,60.29,52.11,6,1,0,0,12,3,1,810.5,0,0,0 +9484,11628,21218,21217,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,7.440920357579356,7.380420553294465,1,0,-9,7,0,0,-27.7329138960377,-9,0,0,81,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.025406349327065,7.440015995711633,0,0,52,45,6,1,0,0,12,3,1,810.5,0,0,0 +9485,11629,21219,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,0,4.808655163083894,4.698216262687284,3,0,0,0,-9,0,-954.303578873534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.753024181055592,4.665847032943741,0,0,34.07,20.89,4,1,0,1,7,2,1,258,0,0,0 +9486,11630,21220,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,1,1,0,2,7.909605708022914,7.720622865279003,0,3,0,0,0,-9,0,-900.1216279785824,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,35,40,15,1,0,-9,0,8.840199198097276,8.840199198097276,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.03,55.74,2,1,0,0,4,4,0,293,0,0,0 +9487,11631,21221,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,4,8.786317281916178,8.766056002544284,0,3,0,0,0,-9,0,-1066.322130352779,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,10,39,15,1,0,-9,0,75.4549422845988,75.4549422845988,0,0,0,0,0,0,0,1,1,0,7.316489760836186,0,0,0,48.01,51.6,5,1,0,0,12,5,1,221,0,0,0 +9488,11632,21222,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,3,8.257724662935372,8.233099781861412,7.238895474003718,3,0,0,0,-9,0,-1004.131754462112,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,11,22,21,15,1,11,-9,0,16.87652729360965,16.87652729360965,0,0,0,0,0,0,0,0,0,0,8.099076121081422,7.376430346593033,0,0,33.77,38.31,6,1,0,0,11,4,1,491,0,0,0 +9489,11633,21223,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,4,9.446485271844246,9.028885482918435,0,3,0,0,0,-9,0,-1055.641437034622,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,45,15,1,0,-9,0,28.67660462295581,28.67660462295581,0,0,0,0,0,0,0,1,1,0,4.104311001880464,0,0,0,46.44,59.62,6,1,0,0,10,5,1,251,0,0,0 +9490,11634,21224,-9,-9,-9,1,1,0,21,2,0,0,0,2,0,7,2,0,4,6.842844099103967,7.54938148829873,6.46048589182324,3,0,0,0,-9,0,-1056.659259924022,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,24,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.197933472090077,0,0,0,51.83,57.2,6,1,0,0,10,3,0,406,0,0,0 +9491,11635,21225,-9,-9,-9,1,1,0,52,2,0,1,0,1,-9,1,1,0,2,9.365232824303037,9.226061999816215,0,4,0,0,0,-9,0,-1038.573808050772,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,25,16,15,1,3,-9,0,45.46119161183994,45.46119161183994,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.8,38.27,3,4,0,0,7,5,1,2518,0,0,0 +9491,11635,21226,-9,21225,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1011.365246066115,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,7,5,1,2518,0,0,0 +9491,11636,21227,-9,21225,-9,3,1,1,22,2,0,1,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1039.598000253424,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,4,0,0,7,1,1,305,0,0,0 +9492,11637,21228,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,2,8.086904143102936,8.02237171280543,0,3,0,0,0,-9,0,-1082.684338032725,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,41,43,15,1,1,-9,0,11.59251842973611,11.59251842973611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.75,39.21,5,1,0,0,12,4,1,837,0,0,0 +9493,11638,21229,21230,-9,-9,2,1,0,71,1,0,2,0,2,-9,1,1,0,3,8.161852828967938,8.038186402421319,0,2,0,-9,53,0,-3,.178480433905508,0,0,0,74,2,2,3,-9,-9,2019,2,1,15,4,10,7,15,1,4,4,0,51.77395137901435,51.77395137901435,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.76,48.16,6,1,0,0,7,3,1,1269.5,0,0,0 +9493,11638,21230,21229,-9,-9,1,1,1,74,1,0,2,0,2,-9,4,3,0,2,0,7.985606751774607,7.574900809103659,2,0,-9,53,0,3,-5.688152954393615,0,0,0,71,2,3,1,3,3,2019,3,2,17,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.063088517700996,7.72003747518498,0,0,49,36,6,1,0,0,7,3,1,1269.5,0,0,0 +9494,11639,21231,21232,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.997666095329498,8.716043076898687,0,1,0,-9,5,0,0,73.77382903735585,0,0,0,52,1,3,1,2,1,2019,1,1,28,12,45,48,15,1,12,1,0,16.28545706871841,16.28545706871841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.96,67.83,5,1,0,0,9,5,0,671.5,0,0,0 +9494,11639,21232,21231,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,3,8.356399780565813,8.746669176116541,0,1,0,-9,5,0,0,76.53871082314743,0,0,0,52,2,4,1,2,3,2019,1,2,7,0,39,41,15,1,0,1,0,14.65184774318497,14.65184774318497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,9,5,0,671.5,0,0,0 +9495,11640,21233,21234,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,52,0,-2,-92.40828193320512,0,0,0,77,3,3,3,3,3,2019,4,1,11,0,0,14,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.874618728457553,0,0,0,55.34,48.72,7,1,0,0,9,2,1,400,0,0,0 +9495,11640,21234,21233,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,5.731839738690914,5.383502573735484,1,0,-9,52,0,2,-54.64820079965459,0,0,0,75,3,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.598331221413131,0,0,53.92,52.23,6,1,0,0,9,2,1,400,0,0,0 +9496,11641,21235,21236,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.535583515038446,6.757906601326328,1,0,-9,50,0,-2,139.0289547319138,0,0,0,78,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.750985573074825,13.19514407820066,3,53.1,52.62,6,1,0,0,2,2,1,1201,0,0,0 +9496,11641,21236,21235,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,2,4.087927584976761,0,0,0,76,2,3,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.909726999058944,0,0,0,56.5,48.33,6,1,0,0,2,2,1,1201,0,0,0 +9497,11642,21237,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,2,1,0,3,7.854322200249003,8.220063307027972,5.920258661965292,3,0,0,0,-9,0,-939.9879201145022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,39,0,15,1,0,-9,0,6.774766274151262,6.774766274151262,0,0,0,0,0,0,0,0,0,0,0,6.398515241610776,0,0,58.32,50.22,5,1,0,0,13,4,1,304,0,0,0 +9498,11643,21238,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,4,8.839856592459626,8.581580874422919,0,3,0,0,0,-9,0,-1004.156511612808,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,39,38,15,1,4,-9,0,18.80197903154832,18.80197903154832,0,0,0,0,0,0,0,1,1,0,.844425479191251,0,0,0,43.67,61.06,5,1,0,0,10,5,1,1709,0,0,0 +9499,11644,21239,21240,-9,-9,2,1,1,50,1,0,0,0,1,-9,8,3,1,4,0,0,0,1,0,-9,27,0,2,-46.66887470122359,0,0,0,48,1,2,1,3,2,2019,3,1,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.136184196384731,0,0,0,53,54,6,3,0,0,8,4,1,757.5,0,0,0 +9499,11644,21240,21239,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,2,8.769828658497723,8.527455886144482,0,1,0,-9,27,0,-2,-67.7454771006316,0,0,0,50,1,4,3,3,1,2019,2,2,29,12,43,38,15,1,12,3,0,16.2166941371356,16.2166941371356,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.17,31.19,2,3,0,0,8,4,1,757.5,0,0,0 +9499,11645,21241,-9,21240,21239,3,1,1,23,2,0,0,0,1,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-902.9766971661001,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,1,0,8,1,1,187,0,0,0 +9499,11646,21242,-9,21240,21239,4,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1125.290711873525,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,58,5,3,0,0,8,1,1,452,0,0,0 +9500,11647,21243,21244,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.683153602909517,8.377162416652176,0,1,0,-9,5,0,0,23.22751496091192,0,1,0,27,1,4,1,-9,-9,2019,1,1,8,0,46,44,15,1,0,1,0,12.77047904764897,12.77047904764897,0,0,0,0,0,0,0,0,0,0,.6588760910603625,0,0,0,51.24,58.84,6,1,0,0,10,5,1,1146,0,0,0 +9500,11647,21244,21243,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.491036187213208,8.487997811366867,0,1,0,-9,5,0,0,56.15072448556133,0,1,1,27,1,4,1,-9,-9,2019,1,2,9,1,52,52,15,1,1,1,0,11.12774475738138,11.12774475738138,0,0,0,0,0,0,0,0,0,0,1.403632669465625,0,0,0,48.87,58.55,6,1,0,0,10,5,1,1146,0,0,0 +9501,11648,21245,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,4,8.525673743315009,8.62247871398707,0,3,0,-9,0,0,0,-1041.16453714768,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,38,15,1,1,-9,0,12.79179819071657,12.79179819071657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,5,1,0,0,9,4,0,135,0,0,0 +9501,11649,21246,-9,-9,-9,2,1,0,40,2,0,0,0,2,-9,2,1,0,3,8.084316105924804,8.303410756308789,0,3,0,-9,0,0,0,-995.0815143078645,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,37,37,15,1,0,-9,0,10.96993815266936,10.96993815266936,0,0,0,0,0,0,0,0,0,0,3.47199669003393,0,0,0,62.66,52.4,6,1,0,0,9,4,0,89,0,0,0 +9502,11650,21247,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1007.637380576737,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.96,38.11,2,1,0,0,9,1,0,835,0,0,0 +9503,11651,21248,21249,-9,-9,2,1,1,40,1,0,0,0,1,-9,1,1,0,3,7.735307010174084,7.49598030943668,0,1,0,-9,2,0,-3,-51.80865817071635,0,0,0,43,2,3,1,-9,-9,2019,1,1,10,2,20,25,15,1,2,1,0,12.6256893571936,12.6256893571936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,58.37,6,1,0,0,7,4,1,657.5,0,0,0 +9503,11651,21249,21248,-9,-9,1,1,0,43,1,0,0,0,2,-9,2,1,0,3,7.741801047623841,7.724982984219992,0,1,0,-9,2,0,3,-10.42775510592498,0,0,1,40,1,3,1,-9,2,2019,1,2,14,3,35,30,15,1,3,1,0,6.213481127063448,6.213481127063448,0,0,0,0,0,0,0,0,0,0,1.478725829612859,0,0,0,40.15,42.59,5,1,0,0,7,4,1,657.5,0,0,0 +9504,11652,21250,21252,-9,-9,2,1,1,57,1,0,2,0,2,-9,2,1,0,1,8.846242352206151,9.151658820266968,0,2,0,-9,9,0,5,-48.54319421172851,0,0,0,52,3,4,1,2,2,2019,1,1,30,12,51,50,15,1,12,1,0,12.91075655797587,12.91075655797587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13,52.79,2,1,0,0,7,4,1,1676.75,0,0,0 +9504,11652,21251,-9,21252,21250,3,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-915.6496399678643,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,4,1,1676.75,0,0,0 +9504,11652,21252,21250,-9,-9,1,1,0,52,1,0,2,0,3,-9,2,1,0,4,7.03717604904855,7.248542730248247,0,2,0,-9,9,0,-5,-49.329042945472,0,0,0,57,2,1,1,3,3,2019,1,2,12,0,22,22,15,1,0,1,0,7.697039926243752,7.697039926243752,0,0,0,0,0,0,0,1,1,0,.846146029067383,0,0,0,51.21,43.72,5,1,0,0,7,4,1,1676.75,0,0,0 +9504,11652,21253,-9,21252,21250,4,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-918.1524356774199,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,7,4,1,1676.75,0,0,0 +9505,11653,21254,-9,21257,21256,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.8864584581539,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,0,632.5,0,0,0 +9505,11653,21255,-9,21257,21256,3,1,1,17,2,0,2,1,2,0,7,2,0,4,5.675241496863197,5.360345506074696,0,2,0,0,0,-9,0,-894.8853632050415,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,18,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9170325329693967,0,0,0,45.2,57.55,6,1,0,0,10,3,0,632.5,0,0,0 +9505,11653,21256,21257,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,7.96681322589613,7.879111201679317,0,2,0,-9,6,0,-8,78.69255971673105,0,0,0,49,2,2,1,2,2,2019,1,1,14,2,46,40,15,1,2,1,0,7.125490737380773,7.125490737380773,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,6,1,0,0,10,3,0,632.5,0,0,0 +9505,11653,21257,21256,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,2,7.201886465147541,7.341031892315999,0,2,0,-9,6,0,8,57.04872074158532,0,0,0,41,2,4,1,2,2,2019,1,2,7,0,30,29,15,1,0,1,0,6.193124356864241,6.193124356864241,0,0,0,0,0,0,0,1,1,0,1.936513064820608,0,0,0,50.97,29.49,6,1,0,0,10,3,0,632.5,0,0,0 +9506,11654,21258,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,4,0,5.008906944463478,5.388714971606144,3,0,0,0,-9,0,-1022.775642727104,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.9482973617319261,5.378241262573728,0,0,56.46,35.77,3,1,0,0,2,2,1,4135,0,0,0 +9507,11655,21259,21262,-9,-9,1,1,0,27,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,1,1,-9,-2,-41.17222761122358,0,1,1,29,3,4,1,2,2,2019,3,4,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,0,676,0,0,0 +9507,11655,21260,-9,21259,21262,2,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.659746372395,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,3,0,676,0,0,0 +9507,11655,21261,-9,21259,21262,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.825225788092,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,0,676,0,0,0 +9507,11655,21262,21259,-9,-9,4,1,1,29,1,1,2,0,3,-9,2,1,0,4,8.026678724902244,8.041178506065155,0,2,0,-9,1,-9,2,-82.37009557300823,-9,1,0,27,2,4,3,-9,-9,2019,2,1,10,0,50,0,15,1,1,3,0,6.114898337260594,6.114898337260594,0,0,0,0,0,0,0,1,1,0,4.177090318849371,0,0,0,50,57,5,5,0,0,2,3,0,676,0,0,0 +9508,11656,21263,-9,21266,21264,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1038.137578457615,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,10,3,1,1072,0,0,0 +9508,11656,21264,21266,-9,-9,1,1,1,30,1,2,2,0,2,-9,2,1,0,3,8.467425404883874,8.09915126621965,0,2,0,1,1,-9,-3,-6.048236038514927,0,0,0,33,1,3,3,-9,-9,2019,2,2,11,0,45,38,15,1,0,3,0,11.68165834595315,11.68165834595315,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,10,3,1,1072,0,0,0 +9508,11656,21265,-9,21266,21264,3,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-994.6410656561396,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,10,3,1,1072,0,0,0 +9508,11656,21266,21264,-9,-9,2,1,0,33,1,2,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,3,49.25009984620218,-9,0,1,30,2,3,1,-9,-9,2019,3,1,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,10,3,1,1072,0,0,0 +9509,11657,21267,21268,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,2,0,-5,-5.487726403024348,0,0,0,74,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.176555643296186,0,0,0,62.1,27.23,7,1,0,0,6,2,1,428,0,0,0 +9509,11657,21268,21267,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,6.87102139007073,6.634333549194517,1,0,-9,2,0,5,38.84315395989039,0,0,0,69,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.763269363436209,6.260713936783821,0,0,61.04,39.41,7,1,0,0,6,2,1,428,0,0,0 +9510,11658,21269,-9,-9,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.493457527324036,8.526237674741914,0,3,0,0,0,-9,0,-847.9957046009038,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,0,15,1,2,-9,1,13.98303298395169,13.98303298395169,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,5,0,0,4,5,0,633,0,0,0 +9511,11659,21270,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,4,3,0,5,0,7.705155885774502,7.964141598097357,3,0,0,0,-9,0,-966.8046204457459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,9.391756838076494,0,0,0,57.06,57.76,6,1,0,0,8,4,1,1510,0,0,0 +9512,11660,21271,21272,-9,-9,1,1,0,86,1,0,0,0,2,-9,4,3,0,3,0,7.727596648624331,8.096771496832229,1,0,-9,40,0,-4,82.27602889630967,0,0,0,90,1,3,3,3,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.041279057465612,7.738764879256675,117.8820310874648,1,65.54000000000001,30.53,6,1,0,0,6,4,1,320.5,0,0,0 +9512,11660,21272,21271,-9,-9,2,1,1,90,1,0,0,0,1,-9,4,3,0,3,0,7.421734813089763,7.33738654589657,1,0,-9,10,0,4,31.47670852493225,0,0,0,86,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.280086685605945,0,0,55,45,6,1,0,0,6,4,1,320.5,0,0,0 +9513,11661,21273,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,2,1,0,3,7.236087824797278,7.157552611371541,5.494127959538132,3,0,0,0,-9,0,-958.2926042350978,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,5,5,15,1,0,-9,0,25.98093061884636,25.98093061884636,0,0,0,0,0,0,0,1,1,0,8.606881957041809,4.957798945675464,0,0,58.47,50.22,6,1,0,0,9,3,1,410,0,0,0 +9514,11662,21274,-9,21275,21276,4,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-990.5198334175861,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,12,5,1,328.6,0,0,0 +9514,11662,21275,21276,-9,-9,1,1,0,42,1,0,3,0,1,-9,2,1,0,5,9.309159689512622,8.922354050785447,0,2,0,1,1,-9,0,-120.9455339137428,0,0,1,42,2,4,1,1,1,2019,1,5,8,0,38,43,15,1,0,1,0,25.58674810317047,25.58674810317047,0,0,0,0,0,0,0,0,0,0,7.865755384813172,0,0,0,25.88,66.73999999999999,6,1,0,0,12,5,1,328.6,0,0,0 +9514,11662,21276,21275,-9,-9,5,1,1,42,1,0,3,0,2,-9,2,1,0,4,8.90867450952854,8.97671911641392,0,2,0,1,1,-9,0,-10.25138676025656,0,0,0,42,1,5,1,2,-9,2019,1,1,9,0,57,0,15,1,0,1,0,15.45886064944493,15.45886064944493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.22,52.35,6,1,0,0,12,5,1,328.6,0,0,0 +9514,11662,21277,-9,21275,21276,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.0155047976277,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,328.6,0,0,0 +9514,11662,21278,-9,21275,21276,2,1,1,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-995.5572322784377,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,12,5,1,328.6,0,0,0 +9515,11663,21279,21280,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.024624950718461,8.543738186114282,3.897421552506573,1,0,-9,10,0,3,-84.48212003646381,0,0,0,56,2,4,1,-9,-9,2019,1,1,15,3,37,37,15,1,3,1,0,12.37245437381839,12.37245437381839,0,0,0,0,0,0,0,0,0,0,4.324501795269621,0,0,0,48.44,17.02,6,1,0,0,2,4,1,431,0,0,0 +9515,11663,21280,21279,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,7.600694678795173,7.514837061059819,0,1,0,-9,39,0,-3,33.72437921949798,0,0,0,59,2,3,1,2,2,2019,1,2,11,0,45,44,15,1,0,1,0,5.382569838126846,5.382569838126846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,46.44,6,1,0,0,2,4,1,431,0,0,0 +9515,11664,21281,-9,21279,21280,3,1,1,30,2,0,0,0,2,-9,2,1,0,4,8.403290654809963,8.008391481969072,0,3,0,0,0,-9,0,-1005.253748622919,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,47,43,15,1,0,-9,1,10.11280192918316,10.11280192918316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,6,1,0,0,2,4,1,1719,0,0,0 +9516,11665,21282,21283,-9,-9,1,1,1,65,1,0,2,0,2,-9,2,1,0,3,7.97263469440178,8.025478527179677,4.618250388841753,2,0,-9,19,0,22,-35.28867635667599,0,0,0,43,3,4,1,3,2,2019,1,2,7,0,39,39,15,1,0,1,0,10.37989719433384,10.37989719433384,0,0,0,0,0,0,0,1,1,0,0,4.304014593860685,0,0,60.3,46.58,5,1,0,0,7,4,0,588.5,0,0,0 +9516,11665,21283,21282,-9,-9,2,1,0,43,1,0,2,0,3,-9,2,1,0,4,8.152348655774746,7.883014004556292,0,2,0,-9,19,0,-22,30.88494878568668,0,0,1,65,2,3,1,3,3,2019,1,1,8,0,46,40,15,1,0,1,0,8.120396551776686,8.120396551776686,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,7,4,0,588.5,0,0,0 +9516,11665,21284,-9,21283,21282,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.3372565802916,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,0,588.5,0,0,0 +9516,11665,21285,-9,21283,21282,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.9255016392575,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,4,0,588.5,0,0,0 +9517,11666,21286,-9,-9,-9,3,1,0,43,2,0,0,0,2,-9,2,1,0,4,8.653446699112338,9.259645736573191,0,3,0,0,0,-9,0,-1033.300715578305,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,35,35,15,1,0,-9,1,20.21595894447579,20.21595894447579,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,49.75,6,1,0,0,9,5,1,1392,0,0,0 +9518,11667,21287,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,7.030116782451504,6.454126865433944,3,0,0,0,-9,0,-1027.716682583621,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.126421701246282,6.99521589052919,4.301479469241444,3,61.12,51.57,7,1,0,0,7,2,1,441,0,0,0 +9519,11668,21288,21289,-9,-9,2,1,1,39,1,1,3,0,1,-9,2,1,0,3,8.295515737609346,8.421972971148767,0,2,0,-9,10,0,1,18.09730106581099,-9,0,0,38,1,3,1,2,2,2019,1,1,18,6,25,0,15,1,6,1,0,18.52102050673243,18.52102050673243,0,0,0,0,0,0,0,1,1,0,1.524126224699318,0,0,0,25.08,62.98,3,1,0,0,9,4,1,897.4,0,0,0 +9519,11668,21289,21288,-9,-9,1,1,0,38,1,1,3,0,1,-9,2,1,0,3,8.492475767977981,8.801327201352114,0,2,0,-9,10,0,-1,-49.94064530367309,-9,0,1,39,1,3,1,1,1,2019,1,2,8,1,25,0,15,1,1,1,0,20.9350097728599,20.9350097728599,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.41,40.6,5,1,0,0,9,4,1,897.4,0,0,0 +9519,11668,21290,-9,21289,21288,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.6857620013711,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,9,4,1,897.4,0,0,0 +9519,11668,21291,-9,21289,21288,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.699069122645,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,897.4,0,0,0 +9519,11668,21292,-9,21289,21288,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.874181699785,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,9,4,1,897.4,0,0,0 +9520,11669,21293,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,2,1,0,3,8.927696011328234,8.954605802408773,0,3,0,0,0,-9,0,-1023.15042662821,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,47,15,1,0,-9,0,18.09505503353231,18.09505503353231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,6,1,0,0,12,5,1,573,0,0,0 +9521,11670,21294,21295,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,8.504169266297092,8.689453492257078,0,1,0,-9,9,0,3,131.8780004829804,0,0,0,56,2,5,1,3,3,2019,1,2,12,0,37,38,15,1,0,1,0,19.73858650893587,19.73858650893587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.89,51.69,5,1,0,0,11,5,1,929.5,0,0,0 +9521,11670,21295,21294,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,5,8.040389188730364,7.62553582165862,0,1,0,-9,9,0,-3,-174.6853788289799,0,0,0,59,2,3,1,2,2,2019,1,1,10,0,34,30,15,1,0,1,0,7.080945988649946,7.080945988649946,0,0,0,0,0,0,0,1,1,0,.503238847491375,0,2.564608912950522,3,52.13,57.22,5,1,0,0,11,5,1,929.5,0,0,0 +9522,11671,21296,-9,21297,21298,4,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1073.073424639638,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,7,5,1,703.25,0,0,0 +9522,11671,21297,21298,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,5,8.858107613565135,8.633736942523429,0,2,0,-9,7,0,0,108.9087585061179,0,0,1,42,2,4,1,2,3,2019,1,1,12,0,59,22,15,1,0,1,0,13.16058140044794,13.16058140044794,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.93,56.91,6,1,0,0,7,5,1,703.25,0,0,0 +9522,11671,21298,21297,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.803870261205036,8.737002581379716,0,2,0,-9,7,0,0,-38.38365676396069,0,0,0,42,1,5,1,2,2,2019,1,2,8,0,40,44,15,1,0,1,0,17.71250005167816,17.71250005167816,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.34999999999999,41.05,6,1,0,0,7,5,1,703.25,0,0,0 +9522,11671,21299,-9,21297,21298,3,1,1,16,2,0,2,1,2,-9,7,2,0,5,7.148163507267782,7.322985344517373,0,2,0,0,0,-9,0,-966.352879193176,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.138775609271497,0,0,0,48.74,60.18,6,1,0,0,7,5,1,703.25,0,0,0 +9523,11672,21300,21301,-9,-9,1,1,0,41,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,23,0,-1,160.1483382289782,0,0,1,42,2,3,1,2,2,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.05,53.56,3,1,1,0,7,4,0,384.5,0,0,0 +9523,11672,21301,21300,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,3,8.413758797523991,8.56403312758183,0,1,0,-9,21,0,1,-99.77501333155061,0,0,0,41,2,3,3,2,2,2019,2,1,11,0,39,48,15,1,0,3,0,12.38483884557314,12.38483884557314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,4,1,0,1,7,4,0,384.5,0,0,0 +9523,11673,21302,-9,21300,21301,3,1,0,19,2,0,0,0,2,-9,2,1,0,5,7.526702266299091,7.581638219760801,0,3,0,0,0,-9,0,-1112.582227809092,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,41,47,15,1,1,-9,1,5.759016790907097,5.759016790907097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.68,62.43,6,1,0,0,7,3,0,283,0,0,0 +9524,11674,21303,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,1,1,0,5,7.856312808105122,7.682947429020245,0,3,0,0,0,-9,0,-1043.554597588855,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,40,80,15,1,1,-9,0,8.931191134965092,8.931191134965092,0,0,0,0,0,0,0,0,0,0,4.706789261852444,0,0,0,46.28,62.6,7,1,0,0,9,4,0,711,0,0,0 +9525,11675,21304,21305,-9,-9,1,1,1,39,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,15,0,4,0,0,0,0,35,3,1,3,3,3,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,81.05765107636343,1,47.9,29.5,5,1,0,0,13,1,1,896.5,0,0,0 +9525,11675,21305,21304,-9,-9,2,1,0,35,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,11,0,-4,0,0,0,1,39,2,1,3,3,3,2019,4,1,29,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.950000000000001,46.11,1,1,0,0,13,1,1,896.5,0,0,0 +9526,11676,21306,-9,21307,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-944.5210794203446,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,2,2,1,1181,0,0,0 +9526,11676,21307,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,5,7.399252675723438,7.625038951238959,6.850709859738783,4,0,0,0,-9,0,-1041.415270059175,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,20,20,15,1,0,-9,0,7.738902986867359,7.738902986867359,0,0,0,0,0,0,0,1,1,0,6.2839223762952,5.951592236278363,0,0,60.59,54.8,6,1,0,0,2,2,1,1181,0,0,0 +9526,11676,21308,-9,21307,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,4,4.270544115032504,4.336357773909471,0,4,0,0,0,-9,0,-912.440264631208,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,2,2,1,1181,0,0,0 +9527,11677,21309,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-851.8276137370096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,4,12,-9,0,0,0,1,5.384970853109493,0,7.559078007135652,0,9.037566391100226,47.61784560540978,1,1,0,0,0,0,3,36.53,15.84,4,1,0,0,9,1,0,1561,0,0,0 +9528,11678,21310,21311,-9,-9,1,1,0,53,1,0,0,0,3,-9,1,1,0,5,0,0,0,1,0,-9,1,-9,-10,46.82400929703958,0,0,0,63,2,3,1,3,-9,2019,1,3,7,0,0,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0198868448284089,0,0,0,60.02,56.42,7,1,0,0,7,2,1,537,0,0,0 +9528,11678,21311,21310,-9,-9,3,1,1,63,1,0,0,0,2,-9,1,1,0,3,5.14236079155256,4.886571380350698,0,1,0,-9,1,-9,10,136.453265094634,-9,0,0,53,3,5,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,.6275701994520616,.6275701994520616,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,7,1,0,0,7,2,1,537,0,0,0 +9528,11679,21312,-9,21310,21311,2,1,1,27,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1104.567045844046,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.02,29.68,4,1,1,1,7,1,1,536,0,0,0 +9529,11680,21313,21314,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,8.477087521085858,8.922277819982757,0,1,0,-9,8,0,-2,-47.72457217020104,0,0,0,53,2,3,1,3,3,2019,1,2,11,0,48,38,15,1,0,1,0,8.99264831787756,8.99264831787756,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.41,58.28,6,1,0,0,7,5,1,307,0,0,0 +9529,11680,21314,21313,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.932844398956327,8.817036813268105,0,1,0,-9,8,0,2,107.9312179790715,0,0,0,51,2,4,1,2,-9,2019,1,1,7,0,57,45,15,1,0,1,0,15.3519515069816,15.3519515069816,0,0,0,0,0,0,0,0,0,0,1.302102899565363,0,0,0,58.32,50.22,5,1,0,0,7,5,1,307,0,0,0 +9529,11681,21315,-9,21313,21314,3,1,0,22,2,0,0,0,3,-9,2,1,0,4,8.137707014038837,8.213096038963272,0,3,0,0,0,-9,0,-1011.414495115088,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,4,15,1,0,-9,1,15.93207229365893,15.93207229365893,0,0,0,0,0,0,0,0,0,0,.530079221206509,0,0,0,45.26,56.19,6,1,0,0,7,5,1,453,0,0,0 +9530,11682,21316,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.632390559027217,8.84505700538144,0,3,0,0,0,-9,0,-1011.599982815555,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,44,55,15,1,0,-9,0,16.76307607387465,16.76307607387465,0,0,0,0,0,0,0,0,0,0,3.741971672239016,0,0,0,54.79,55.86,6,1,0,0,8,5,0,236,0,0,0 +9531,11683,21317,-9,-9,-9,1,1,1,83,3,0,0,0,1,-9,4,3,0,3,6.76638168096567,8.107362210409221,7.472600232261572,3,0,0,0,-9,0,-1013.605383223981,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,.7813284064350823,0,0,0,0,0,1,1,0,6.340766695094469,7.918550770356432,0,0,58.45,42.21,6,1,0,0,8,4,1,754,0,0,0 +9532,11684,21318,21319,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,4,0,-2,-65.03889213059281,0,0,0,74,2,2,3,2,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46.41,42.23,6,1,0,0,10,3,1,632.5,0,0,0 +9532,11684,21319,21318,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,8.354529542092362,8.26204369125734,1,0,-9,49,0,2,77.12294181200704,0,0,0,72,3,2,3,3,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.13188465380335,0,0,46.83,42.54,7,2,0,0,10,3,1,632.5,0,0,0 +9533,11685,21320,21321,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,1,0,5.51474481868441,5.267121786529339,1,0,-9,51,0,-1,272.9704192857761,0,0,0,82,2,3,3,-9,-9,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.36074834774642,5.409644767940424,0,0,40.19,16.96,6,4,0,0,8,1,0,1322,0,0,0 +9533,11685,21321,21320,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,1,45.16364017798887,0,0,0,81,2,1,3,-9,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.44,46.58,7,4,0,0,8,1,0,1322,0,0,0 +9533,11686,21322,-9,21320,21321,3,1,1,55,2,0,0,0,3,-9,1,1,0,4,7.341957775384553,7.213146704783912,0,3,0,0,0,-9,0,-968.3363781496897,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,4,0,0,8,3,0,491,0,0,0 +9534,11687,21323,21324,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,3,7.919655253549887,8.126256651942274,0,1,0,-9,5,0,1,-64.14719087323191,0,0,1,29,2,5,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,8.803689784447805,8.803689784447805,0,0,0,0,0,0,0,0,0,0,2.414809085275341,0,0,0,50.63,50.99,5,1,0,0,1,4,1,1417.5,0,0,0 +9534,11687,21324,21323,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,5,8.509887321409623,8.290512310992154,0,1,0,-9,5,0,-1,19.92844731426494,0,1,0,30,1,3,1,2,-9,2019,1,2,4,0,47,40,15,1,0,1,0,9.496263326601934,9.496263326601934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,57.55,5,1,0,0,1,4,1,1417.5,0,0,0 +9535,11688,21325,21326,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,5.783347422410121,5.838974804358307,1,0,-9,58,0,-2,28.60062000085896,0,0,0,77,3,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,3.020425912000835,0,0,0,0,1,1,0,4.263854450369371,5.788644433285171,0,0,63.26,45.23,7,1,0,0,4,3,1,501.5,0,0,0 +9535,11688,21326,21325,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,8.045547106499797,7.931811836677258,1,0,-9,58,0,2,-143.3053631916175,0,0,0,75,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.151431738798795,0,0,57.33,53.46,7,1,0,0,4,3,1,501.5,0,0,0 +9536,11689,21327,21328,-9,-9,1,1,1,49,1,0,1,0,1,-9,2,1,0,4,8.521421620575184,8.42623561379798,0,2,0,-9,19,0,0,-9.583940501089961,0,0,0,49,1,4,1,-9,3,2019,1,2,12,0,38,37,15,1,0,1,0,13.43863527658154,13.43863527658154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,4,1,0,0,9,4,1,1524.333333333333,0,0,0 +9536,11689,21328,21327,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,4,7.946160535358458,8.358540947190461,0,2,0,-9,20,0,0,-120.6517972410624,0,0,0,49,1,4,1,2,2,2019,1,1,10,0,26,27,15,1,0,1,0,13.33735926284976,13.33735926284976,0,0,0,0,0,0,0,0,0,0,3.620911878179801,0,0,0,49.66,55.68,6,1,0,0,9,4,1,1524.333333333333,0,0,0 +9536,11689,21329,-9,21328,21327,3,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-962.5659391738541,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,9,4,1,1524.333333333333,0,0,0 +9537,11690,21330,-9,21332,21333,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.2312526170909,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,472.75,0,0,0 +9537,11690,21331,-9,21332,21333,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-944.5889187764942,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,472.75,0,0,0 +9537,11690,21332,21333,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,3,8.382023286298605,8.196991976778619,0,2,0,-9,7,0,-1,12.46329361219668,0,0,1,37,1,3,1,1,1,2019,1,2,14,3,29,29,15,1,3,1,0,13.75835683137208,13.75835683137208,0,0,0,0,0,0,0,1,1,0,4.068828169321947,0,0,0,42.42,54.75,5,1,0,0,11,4,1,472.75,0,0,0 +9537,11690,21333,21332,-9,-9,2,1,1,37,1,1,2,0,1,-9,1,1,0,3,7.803534066689311,7.879923854163247,0,2,0,-9,7,0,1,-25.60169143877054,0,0,0,36,1,3,1,-9,-9,2019,1,1,10,0,32,35,15,1,0,1,0,7.734740311343813,7.734740311343813,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,51.92,6,1,0,0,11,4,1,472.75,0,0,0 +9538,11691,21334,21335,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,5.804597688578503,5.635925376997333,1,0,-9,9,0,-11,5.873899957792204,0,0,0,83,2,3,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5031823706747396,6.16102390020939,0,3,51.24,58.84,6,1,0,0,10,2,1,2097,0,0,0 +9538,11691,21335,21334,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,3,0,6.352716134502481,6.442211031804731,1,0,-9,9,0,11,44.96067854554367,0,0,0,72,2,4,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.478851869053349,6.381829291631846,0,0,64.96000000000001,40.38,6,1,0,0,10,2,1,2097,0,0,0 +9539,11692,21336,-9,21338,21339,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.653771868757,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,434.25,0,0,0 +9539,11692,21337,-9,21338,21339,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.7960794793081,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,434.25,0,0,0 +9539,11692,21338,21339,-9,-9,2,1,0,40,1,0,2,0,2,-9,1,1,0,3,3.162879084421897,3.311453711355457,0,2,0,-9,18,0,-3,63.64306203301527,0,0,1,43,1,3,1,3,2,2019,1,1,12,0,30,0,15,1,0,1,0,.0904433857326182,.0904433857326182,0,0,0,0,0,0,0,1,1,0,6.718813758545063,0,9.887771337080554,3,50.73,42.99,4,1,0,0,7,4,1,434.25,0,0,0 +9539,11692,21339,21338,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,3,9.037758523170581,9.323363095484371,0,2,0,-9,20,0,3,-23.8537051795048,0,0,0,40,2,3,1,-9,2,2019,1,2,9,0,45,0,15,1,0,1,0,29.19067416906982,29.19067416906982,0,0,0,0,0,0,0,1,1,0,5.499621510685111,0,0,0,54.38,36.04,5,1,0,0,7,4,1,434.25,0,0,0 +9540,11693,21340,-9,21344,21342,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.9345572069636,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,0,610.6,0,0,0 +9540,11693,21341,-9,21344,21342,5,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.3872229868809,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,0,610.6,0,0,0 +9540,11693,21342,21344,-9,-9,2,1,1,29,1,1,3,0,3,-9,2,1,0,4,7.826906488317453,8.081424470758444,0,2,0,-9,9,0,2,24.2780264686611,0,1,0,27,2,3,3,3,3,2019,2,1,10,0,40,40,15,1,1,3,0,10.91667622155595,10.91667622155595,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,3,0,0,6,2,0,610.6,0,0,0 +9540,11693,21343,-9,21344,21342,6,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.493492910321,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,6,2,0,610.6,0,0,0 +9540,11693,21344,21342,-9,-9,1,1,0,27,1,1,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,9,0,-2,129.3924112848921,0,1,1,29,3,4,1,3,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,3,1,0,6,2,0,610.6,0,0,0 +9541,11694,21345,-9,-9,-9,1,1,0,47,3,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1093.336498092885,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.04,37.08,1,3,0,0,2,1,1,177,0,0,0 +9541,11695,21346,-9,21345,-9,3,1,1,23,2,0,1,0,1,-9,2,1,0,2,8.003119086986715,8.29572523507051,0,3,0,0,0,-9,0,-1021.277211327769,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,39,0,15,1,0,-9,1,6.855076754656036,6.855076754656036,0,0,0,0,0,0,0,1,1,0,6.55964297103679,0,1.350933527826766,3,42.66,50.99,4,3,0,0,2,4,1,717,0,0,0 +9541,11696,21347,-9,21345,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-943.0692215562894,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.51,52.79,5,3,0,0,2,4,1,3547,0,0,0 +9542,11697,21348,21350,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,5,8.280596880525035,8.274841406755618,0,2,0,-9,4,0,1,-36.42124834763088,0,0,1,34,2,5,1,-9,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.304569958038018,0,0,0,60.02,56.42,7,4,0,0,7,5,1,1613.333333333333,0,0,0 +9542,11697,21349,-9,21348,21350,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.715315749948,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,2,0,0,7,5,1,1613.333333333333,0,0,0 +9542,11697,21350,21348,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,5,8.516138037931974,8.352609487371133,0,2,0,-9,4,0,-1,8.612888422392709,0,0,0,35,1,5,1,2,2,2019,1,2,5,0,35,37,15,1,0,1,0,18.58838505825745,18.58838505825745,0,0,0,0,0,0,0,0,0,0,7.130044117588811,0,0,0,57.06,57.76,7,1,0,0,7,5,1,1613.333333333333,0,0,0 +9543,11698,21351,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,2,1,0,5,8.485524395979649,8.050095553770298,0,3,0,0,0,-9,0,-1107.557019658368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,18,16,15,1,0,-9,0,24.94293352942801,24.94293352942801,0,0,0,0,0,0,0,0,0,0,3.378066607455222,0,0,0,52.24,58.56,6,1,0,0,10,4,1,1546,0,0,0 +9544,11699,21352,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,3,8.054784511071382,8.20509428615981,0,3,0,-9,0,-9,0,-985.2252132089562,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,25,10,45,0,15,1,10,-9,0,7.278178537796932,7.278178537796932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.26,66.47,1,1,0,0,5,4,1,1461,0,0,0 +9545,11700,21353,21354,-9,-9,2,1,0,68,1,0,0,0,2,-9,2,1,0,3,8.111640080462408,7.891567317822738,0,1,0,-9,6,0,-13,33.90228699954767,0,0,0,81,3,4,3,3,3,2019,2,1,11,0,40,38,15,1,1,4,0,6.614746245654283,6.614746245654283,0,0,0,0,0,0,0,1,1,0,5.370389202413923,0,0,0,51,46,5,1,0,0,7,3,1,752.5,0,0,0 +9545,11700,21354,21353,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,4,0,5.835012662221668,5.544136652329067,1,0,-9,52,0,13,-84.65343136146024,0,0,0,68,2,3,1,2,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.443617047193056,0,0,54.2,57.49,6,1,0,0,7,3,1,752.5,0,0,0 +9546,11701,21355,21356,-9,-9,2,1,1,43,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,7,0,8,4.629132577692197,0,0,0,35,1,3,1,-9,-9,2019,3,1,13,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.038597278475681,0,0,0,43.93,55.66,6,1,0,0,9,4,1,145,0,0,0 +9546,11701,21356,21355,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,3,8.924548025305889,8.652183100816705,0,1,0,-9,7,0,-8,-19.19720496267933,0,0,1,43,1,3,3,1,1,2019,2,2,13,1,42,0,15,1,1,3,0,15.17185776141323,15.17185776141323,0,0,0,0,0,0,0,0,0,0,2.166695990293523,0,0,0,37.64,55.65,6,3,0,0,9,4,1,145,0,0,0 +9547,11702,21357,-9,21358,21359,8,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1058.325938283756,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,1,3,1,740.5,0,0,0 +9547,11702,21358,21359,-9,-9,2,1,0,54,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,8,0,1,123.522005940716,-9,0,0,53,3,2,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.06560611706775,3,47.32,52.7,6,1,0,0,1,3,1,740.5,0,0,0 +9547,11702,21359,21358,-9,-9,1,1,1,53,1,0,2,0,3,-9,1,1,0,2,8.30110081590794,8.472437978865656,0,2,0,-9,8,0,-1,-191.3126696132435,0,0,0,54,3,3,3,3,3,2019,2,2,22,10,40,30,15,1,10,3,0,14.64760618612315,14.64760618612315,0,0,0,0,0,0,0,1,1,0,0,0,67.01659245367534,3,43.44,43.91,5,1,0,0,1,3,1,740.5,0,0,0 +9547,11702,21360,-9,21358,21359,7,1,1,17,2,0,2,1,3,0,7,2,0,4,6.443662388420089,6.423086047071525,0,2,0,0,0,-9,0,-997.0203680651726,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,14,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,1,3,1,740.5,0,0,0 +9547,11703,21361,-9,21358,21359,3,1,1,24,2,0,2,0,1,-9,2,1,0,2,7.22859239257949,7.280581167555845,0,3,0,0,0,-9,0,-1021.834639883462,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,25,46,15,1,0,-9,1,9.83136203795438,9.83136203795438,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.05,48.47,7,1,0,0,1,3,1,205,0,0,0 +9547,11704,21362,-9,21358,21359,4,1,1,23,3,0,2,0,2,-9,2,1,0,3,7.064948921170933,6.949365355670178,0,3,0,0,0,-9,0,-819.8740013796406,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,16,10,15,1,2,-9,1,7.873402647305316,7.873402647305316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.55,51.58,3,1,0,0,1,2,1,228,0,0,0 +9547,11705,21363,-9,21358,21359,5,1,1,22,2,0,2,0,2,-9,2,1,0,3,7.319922322732051,6.649123779162142,0,3,0,0,0,-9,0,-1057.34216167279,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,16,40,15,1,2,-9,1,10.22614182795472,10.22614182795472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.62,6,1,0,0,1,2,1,477,0,0,0 +9547,11706,21364,-9,21358,21359,6,1,1,20,2,0,2,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1006.444072947625,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,39,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.86,53.77,6,1,0,0,1,1,1,362,0,0,0 +9548,11707,21365,21366,-9,-9,2,1,1,74,1,0,0,0,3,-9,2,1,0,2,6.373627173916703,6.398292955638225,4.42068478084355,1,0,-9,38,0,5,25.64213423025566,0,0,0,69,2,2,1,-9,-9,2019,1,1,11,0,10,10,15,1,0,1,0,7.672244597207612,7.672244597207612,1,0,0,0,0,0,0,1,1,0,4.404021969070573,4.576091968619594,0,0,37.4,44.13,5,1,0,0,6,2,1,1203,0,0,0 +9548,11707,21366,21365,-9,-9,1,1,0,69,1,0,0,0,2,-9,1,1,0,2,7.354414015591392,7.025549784374905,0,1,0,-9,39,0,-5,170.4166454537001,0,0,0,74,3,2,1,1,-9,2019,1,2,7,0,40,45,15,1,0,1,0,3.856767847023369,3.856767847023369,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.83,37.28,6,1,0,0,6,2,1,1203,0,0,0 +9549,11708,21367,-9,21368,-9,2,1,1,11,2,0,3,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-973.246820541669,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,4,1,0,0,9,2,1,766.25,0,0,0 +9549,11708,21368,-9,-9,-9,1,1,0,41,3,0,3,0,1,-9,6,3,0,4,0,6.673951196424015,6.597573927455461,4,0,0,0,-9,0,-932.8837355983411,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.222232710963908,0,76.86134510376665,3,56.33,51.02,1,1,0,0,9,2,1,766.25,0,0,0 +9549,11708,21369,-9,21368,-9,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-938.3402127595842,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,1,766.25,0,0,0 +9549,11708,21370,-9,21368,-9,4,1,1,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1073.755237109991,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,9,2,1,766.25,0,0,0 +9550,11709,21371,-9,-9,-9,1,1,1,95,3,0,0,0,2,-9,4,3,0,3,0,4.471498325308731,4.726865251382879,3,0,0,0,-9,0,-900.2465132513062,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,30.32018228555456,0,0,0,1,1,0,0,4.90628353214623,0,0,56,44,6,1,0,0,11,2,0,229,0,0,0 +9551,11710,21372,21373,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,7.078642086796959,7.300498711533448,0,1,0,-9,30,0,0,38.92090994721291,0,0,0,49,2,2,3,2,2,2019,2,1,12,1,25,25,15,1,1,3,0,9.902639262834413,9.902639262834413,0,0,0,0,0,0,0,0,0,0,0,0,0,3,44.66,57.83,6,1,0,0,10,5,1,812,0,0,0 +9551,11710,21373,21372,-9,-9,1,1,1,49,1,0,0,0,2,-9,8,3,1,2,8.704535055643289,8.799626966186697,0,1,0,-9,30,0,0,-10.06219937876539,0,0,0,49,1,4,1,2,2,2019,3,2,24,10,40,48,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.014974577186075,0,.8940439377848481,3,19.94,56.34,2,1,0,0,10,5,1,812,0,0,0 +9551,11711,21374,-9,21372,21373,3,1,0,21,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1078.158609054286,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,41,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.217289076440109,3,44.66,57.83,6,1,0,0,10,1,1,165,0,0,0 +9552,11712,21375,21378,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,5,7.864576819085662,7.834713388853889,0,2,0,-9,14,0,-3,59.63894413151132,0,0,1,37,2,4,1,2,2,2019,1,2,6,0,21,21,15,1,0,1,0,12.12030717516395,12.12030717516395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,4,1,1083.25,0,0,0 +9552,11712,21376,-9,21375,21378,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-884.8555193210148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1083.25,0,0,0 +9552,11712,21377,-9,21375,21378,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.315056079511,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1083.25,0,0,0 +9552,11712,21378,21375,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,7.801051212483818,8.228385554188794,0,2,0,-9,14,0,3,-46.21031135798975,0,0,0,34,2,5,1,2,2,2019,1,1,7,0,44,45,15,1,0,1,0,9.098711094354277,9.098711094354277,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,5,4,1,1083.25,0,0,0 +9553,11713,21379,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,3,8.610050582566114,8.705921696359948,0,3,0,-9,0,1,0,-979.1678672908237,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,3,37,37,15,1,3,-9,0,18.87317623381572,18.87317623381572,0,0,0,0,0,0,0,0,0,0,.714292811837134,0,0,0,42.01,57.81,6,1,0,0,11,5,1,641,0,0,0 +9554,11714,21380,21382,-9,-9,2,1,1,45,1,1,1,0,2,-9,2,1,0,2,8.655903678191821,8.490886525375593,0,2,0,-9,2,0,0,28.42356681667093,-9,0,0,45,2,5,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,16.51681802744394,16.51681802744394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.91,46.32,7,1,0,0,4,5,1,1635,0,0,0 +9554,11714,21381,-9,21382,21380,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.384166117391,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,1635,0,0,0 +9554,11714,21382,21380,-9,-9,1,1,0,45,1,1,1,0,2,-9,2,1,0,5,8.296986546509769,8.468369558321216,0,2,0,-9,2,0,0,-8.953167199867353,0,0,0,45,2,2,1,-9,-9,2019,1,2,7,0,30,0,15,1,0,1,0,18.21118655387173,18.21118655387173,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,4,5,1,1635,0,0,0 +9555,11715,21383,21384,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,5.514387962384201,5.614778332562155,1,0,-9,52,0,5,32.0369314572706,0,0,0,71,3,3,1,3,3,2019,3,2,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9636710307057149,5.32912279642566,0,0,51.2,45.05,6,1,0,0,9,4,1,301,0,0,0 +9555,11715,21384,21383,-9,-9,2,1,1,71,1,0,0,0,3,-9,1,1,0,3,8.549413714404478,8.714672431215455,0,1,0,-9,4,0,-5,38.1529614413825,0,0,0,76,3,4,3,-9,-9,2019,2,1,9,0,40,40,15,1,1,4,0,17.41397878073173,17.41397878073173,0,0,0,0,0,0,0,1,1,0,6.569554466329225,0,0,0,53,47,6,1,0,0,9,4,1,301,0,0,0 +9556,11716,21385,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1081.942992985805,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.24,59.44,6,1,1,0,12,1,0,2418.5,0,0,0 +9556,11716,21386,-9,21385,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1026.457053480435,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,1,0,2418.5,0,0,0 +9557,11717,21387,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,4,8.736545563434046,8.472428600733592,0,3,0,0,0,-9,0,-1005.895696983588,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,41,42,15,1,0,-9,0,16.04168029370644,16.04168029370644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,5,1,0,0,10,5,0,272,0,0,0 +9558,11718,21388,21389,-9,-9,2,1,1,84,1,0,0,0,2,-9,4,3,0,2,0,7.132238756094759,7.441363618439165,1,0,-9,61,0,6,28.82391253040539,0,0,0,78,1,2,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.789234532531525,7.709512353883609,7.245008166034189,1,55.38,41.06,6,1,0,0,9,2,1,1181,0,0,0 +9558,11718,21389,21388,-9,-9,1,1,0,78,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,61,0,-6,-39.33279239866851,0,0,0,84,2,2,3,3,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,8.448532065099734,0,0,0,0,1,1,0,3.344039975699696,0,3.634128299927934,1,45.04,34.67,6,1,0,0,9,2,1,1181,0,0,0 +9559,11719,21390,21391,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-1,152.6153500551834,-9,0,0,80,1,4,3,1,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.833027157850854,0,0,0,42.46,39.71,6,1,0,0,12,3,1,414,0,0,0 +9559,11719,21391,21390,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,4,0,7.956714162636648,7.744690129506686,1,0,-9,10,0,1,-138.1057973871661,0,0,0,79,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.89760712025875,7.961822610601305,0,0,58.3,52.91,6,1,0,0,12,3,1,414,0,0,0 +9560,11720,21392,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,8.536561428879812,8.629471218770375,0,3,0,0,0,-9,0,-1178.115540290012,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,22,15,1,0,-9,0,21.24558136837563,21.24558136837563,0,0,0,0,0,0,0,0,0,0,0,0,4.585889870056532,3,55.34,54.26,6,1,0,0,10,5,0,1067,0,0,0 +9561,11721,21393,21394,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,4,8.882088832547613,9.012556893605776,0,1,0,-9,6,0,0,-137.630574563708,0,0,0,55,1,4,1,-9,-9,2019,1,1,11,2,38,42,15,1,2,1,0,20.83957947521643,20.83957947521643,0,0,0,0,0,0,0,0,0,0,8.140910263439537,0,0,0,61.94,37.61,6,1,0,0,8,5,1,666.5,0,0,0 +9561,11721,21394,21393,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,9.167919072964914,9.329462629551129,0,1,0,-9,6,0,9,31.37464103207126,0,0,0,46,1,4,1,2,-9,2019,1,2,10,0,37,35,15,1,0,1,0,29.14155830148272,29.14155830148272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,8,5,1,666.5,0,0,0 +9562,11722,21395,21396,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,6.826856232159054,7.663108198061485,1,0,-9,29,0,4,-38.30019597691586,0,0,0,75,3,2,3,2,2,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,1,0,18.55281782449956,0,0,0,0,1,1,0,0,7.074123777404139,0,0,39.88,52.43,3,1,0,0,9,2,1,605.5,0,0,0 +9562,11722,21396,21395,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,5.451087748046299,5.798623144812902,1,0,-9,29,0,-4,72.55791261882217,0,0,0,79,2,2,3,2,2,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.934083818750746,24.41849349060837,1,44.78,29.7,3,1,0,0,9,2,1,605.5,0,0,0 +9563,11723,21397,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1022.066730052954,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,2,4,0,1,4,1,0,79,0,0,0 +9564,11724,21398,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,2,1,0,3,8.204367993064352,8.418957213784493,0,3,0,0,0,-9,0,-951.5338759136281,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,20,23,15,1,4,-9,0,21.53645277746019,21.53645277746019,0,0,0,0,0,0,0,0,0,0,0,0,7.193636596943012,3,54.14,34.48,6,1,0,0,5,4,1,207,0,0,0 +9565,11725,21399,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,5.218863036206624,5.377763081980651,3,0,0,0,-9,0,-923.4898174254677,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5257712038655243,5.011017680759969,0,0,57.68,34.46,6,1,0,0,10,2,1,326,0,0,0 +9566,11726,21400,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,2,0,5.151700724184757,5.519310855636451,3,0,0,0,-9,0,-1033.464249493014,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.435747149242955,0,0,59.54,46.05,6,1,0,0,1,2,1,877,0,0,0 +9567,11727,21401,21402,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,3,8.492539825434045,8.676893597160353,0,1,0,-9,27,0,-2,191.4004207847457,0,0,0,48,2,4,1,2,2,2019,1,2,21,9,38,39,15,1,9,1,0,11.25404333161537,11.25404333161537,0,0,0,0,0,0,0,0,0,0,1.433636755779647,0,0,0,28.9,49.04,5,1,0,0,9,5,1,3905,0,0,0 +9567,11727,21402,21401,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,7.958191429736745,8.300974943551477,0,1,0,-9,27,0,2,44.31434606024839,0,0,0,46,2,3,1,2,2,2019,1,1,11,0,45,44,15,1,0,1,0,9.111643838046202,9.111643838046202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,1,3905,0,0,0 +9567,11728,21403,-9,21401,21402,3,1,0,24,2,0,0,0,2,-9,2,1,0,5,7.091270042417704,7.248811347931747,0,3,0,0,0,-9,0,-934.8556310175958,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,32,12,28,14,15,1,12,-9,1,5.54310408441455,5.54310408441455,0,0,0,0,0,0,0,0,0,0,1.759168864048932,0,0,0,16.23,68.69,2,1,0,0,9,2,1,108,0,0,0 +9568,11729,21404,21406,-9,-9,2,1,1,45,1,0,1,0,2,-9,1,1,0,4,8.233474831250019,8.605726711439003,0,2,0,-9,21,0,0,6.549042967785036,0,0,0,45,2,4,1,2,2,2019,1,1,9,0,25,25,15,1,0,1,0,17.54111908260229,17.54111908260229,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,3,1,529.6666666666666,0,0,0 +9568,11729,21405,-9,21406,21404,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.886175032502,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.759240493980337,0,0,0,44.04,57.07,4,1,0,0,7,3,1,529.6666666666666,0,0,0 +9568,11729,21406,21404,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,6.872069808409244,6.952352973952765,0,2,0,-9,21,0,0,95.88645102287542,0,0,0,45,2,4,1,2,2,2019,1,2,16,5,12,18,15,1,5,1,0,10.13239955639433,10.13239955639433,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.68,58.52,5,1,0,0,7,3,1,529.6666666666666,0,0,0 +9568,11730,21407,-9,21406,21404,3,1,0,19,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1065.883987511246,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,1,1,591,0,0,0 +9569,11731,21408,21409,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,4,8.55991857179413,8.708115269139167,6.23639954311319,1,0,-9,4,0,0,-25.29498641544138,0,0,0,61,2,4,1,-9,-9,2019,1,2,6,0,40,35,15,1,0,1,0,16.70398320018503,16.70398320018503,0,0,0,0,0,0,0,0,0,0,5.629668572500127,6.079764411946339,10.51676735797341,3,57.16,56.15,7,1,0,0,13,5,1,1163.5,0,0,0 +9569,11731,21409,21408,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.902290263858875,8.649931915183897,0,1,0,-9,34,0,0,-113.5953743681478,0,0,0,61,2,4,1,-9,-9,2019,1,1,7,0,35,45,15,1,0,1,0,24.71025741825267,24.71025741825267,0,0,0,0,0,0,0,0,0,0,4.947630088038843,0,0,3,54.21,51.96,6,1,0,0,13,5,1,1163.5,0,0,0 +9570,11732,21410,21411,-9,-9,1,1,1,41,1,0,1,0,2,-9,2,1,0,3,8.45917246941997,8.167001504758579,0,2,0,-9,6,0,1,-55.897889802831,0,0,0,40,2,2,1,2,3,2019,1,2,11,0,35,35,15,1,0,1,0,14.02133290438094,14.02133290438094,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,1,0,0,13,4,1,1013.333333333333,0,0,0 +9570,11732,21411,21410,-9,-9,2,1,0,40,1,0,1,0,2,-9,2,1,0,2,7.869568900630059,7.785424042340953,0,2,0,-9,6,0,-1,45.24520196821687,0,0,1,41,2,3,1,3,3,2019,1,1,25,10,23,23,15,1,10,1,0,12.05756044395034,12.05756044395034,0,0,0,0,0,0,0,1,1,0,1.520182815240221,0,0,0,28.97,46.53,5,1,0,0,13,4,1,1013.333333333333,0,0,0 +9570,11732,21412,-9,21411,21410,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-835.2232326921891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,1013.333333333333,0,0,0 +9571,11733,21413,-9,21415,21414,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.585769254693,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,490.5,0,0,0 +9571,11733,21414,21415,-9,-9,2,1,1,34,1,0,2,0,1,-9,2,1,0,3,8.633204892556124,8.922585269160418,0,2,0,-9,15,0,0,12.37900616492853,0,0,0,34,1,5,1,2,2,2019,1,1,15,3,48,43,15,1,3,1,0,13.3086732150953,13.3086732150953,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,5,1,0,0,7,5,1,490.5,0,0,0 +9571,11733,21415,21414,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,5,8.353570303798181,7.923895313330312,0,2,0,-9,15,0,0,-73.97436572253206,0,0,1,34,1,3,1,2,2,2019,1,2,5,0,40,38,15,1,0,1,0,11.19902977249717,11.19902977249717,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,7,5,1,490.5,0,0,0 +9571,11733,21416,-9,21415,21414,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1048.098635447024,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,7,5,1,490.5,0,0,0 +9572,11734,21417,21418,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,4,6.880362951908377,6.749510076329877,0,2,0,-9,6,0,-3,12.11349047121117,0,0,1,33,2,4,1,1,1,2019,1,1,11,0,32,18,15,1,2,1,0,4.488105435062221,4.488105435062221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,1,4,1,568.3333333333334,0,0,0 +9572,11734,21418,21417,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,4,8.850877561142227,8.480725383657916,0,2,0,-9,6,0,3,43.94267499871166,0,0,0,30,2,4,1,1,2,2019,1,2,10,0,50,55,15,1,1,1,0,10.81494235582068,10.81494235582068,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,1,0,0,1,4,1,568.3333333333334,0,0,0 +9572,11734,21419,-9,21417,21418,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.586139091909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,568.3333333333334,0,0,0 +9573,11735,21420,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,2,7.899963487301267,7.80513332895224,0,3,0,0,0,-9,0,-889.6709469029539,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,35,39,15,1,5,-9,0,7.697659070722753,7.697659070722753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.48,43.17,4,1,0,1,11,3,1,636,0,0,0 +9573,11736,21421,-9,21420,-9,2,1,1,35,2,0,0,0,2,-9,2,1,0,4,7.842701908590701,7.464290441667822,0,3,0,0,0,-9,0,-1019.705943231197,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,0,15,1,0,-9,1,8.983907396307902,8.983907396307902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,11,3,1,340,0,0,0 +9574,11737,21422,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,2,1,0,4,6.809505505048683,7.100560087221318,0,4,0,0,0,-9,0,-999.9315520515476,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,18,15,1,0,-9,0,7.177570527530483,7.177570527530483,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.61,55.1,3,1,0,0,4,2,0,1254.5,0,0,0 +9574,11737,21423,-9,21422,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1018.739781620786,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,0,1254.5,0,0,0 +9575,11738,21424,21425,-9,-9,1,1,1,34,1,0,0,0,1,-9,1,1,0,4,8.215819139745898,8.052129898997824,0,1,0,1,4,-9,-4,88.72890671802122,0,0,0,38,1,5,1,2,2,2019,1,2,20,7,25,30,15,1,7,1,0,14.03189753726004,14.03189753726004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.21,60.79,3,1,0,1,7,5,0,280.5,0,0,0 +9575,11738,21425,21424,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,5,8.188055929910666,7.984274806005408,0,1,0,1,4,-9,4,-15.06369201366651,0,0,1,34,1,4,1,2,1,2019,1,1,8,0,30,32,15,1,0,1,0,12.13508646371949,12.13508646371949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.81,56.94,6,5,0,0,7,5,0,280.5,0,0,0 +9576,11739,21426,21427,-9,-9,3,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.091215775048806,7.973493924626275,0,2,0,-9,1,-9,2,-13.28086069175276,-9,0,0,45,2,2,1,-9,-9,2019,1,2,9,0,50,0,15,1,0,1,0,6.215521700141449,6.215521700141449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,48.57,6,1,0,0,4,3,0,1959,0,0,0 +9576,11739,21427,21426,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,2,7.504355556818377,7.611399935937958,0,2,0,-9,1,-9,-2,-67.5353474558256,-9,0,0,47,2,3,1,-9,-9,2019,1,3,18,6,31,0,15,1,6,1,0,7.25297645041258,7.25297645041258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.79,41.5,4,1,0,0,4,3,0,1959,0,0,0 +9576,11739,21428,-9,21427,21426,6,1,0,17,2,0,2,1,2,-9,7,2,0,3,4.58953867817288,4.616223062345814,0,2,0,-9,0,-9,0,-980.892159816786,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,13,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,32.79,6,1,0,0,4,3,0,1959,0,0,0 +9576,11740,21429,-9,-9,21430,1,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-871.54297093335,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,4,2,0,380,0,0,0 +9576,11740,21430,-9,21427,21426,4,1,1,20,2,0,2,0,2,-9,2,1,0,4,6.165261831550928,6.056062094672454,0,3,0,-9,0,-9,0,-879.7005222135645,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,0,15,1,0,-9,1,1.289735328775202,1.289735328775202,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,4,2,0,380,0,0,0 +9576,11741,21431,-9,21427,21426,5,1,1,18,2,0,2,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-997.203591658621,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,1,0,4,3,0,272,0,0,0 +9577,11742,21432,21433,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,6.433132162137517,6.23759610899522,1,0,-9,7,0,-10,45.05042119177827,0,0,0,81,3,2,3,2,-9,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,1,0,5.457579626811636,0,0,0,0,1,1,0,4.604396165304419,5.889513877026643,0,0,58.32,23.92,4,1,0,0,10,2,1,202.5,0,0,0 +9577,11742,21433,21432,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,2,0,5.87382539651585,5.705540151611764,1,0,-9,7,0,10,-33.80671017653884,0,0,0,71,2,1,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,10.32121398143406,0,0,0,0,1,1,0,0,5.984685655113674,0,0,48.02,34.89,6,1,0,0,10,2,1,202.5,0,0,0 +9578,11743,21434,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-998.9514811072314,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,0,30,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.35074540413818,0,0,0,62.96,55.09,1,1,0,0,8,1,0,1089,0,0,0 +9579,11744,21435,-9,-9,-9,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.139048831319503,8.381631995892876,0,3,0,0,0,-9,0,-989.084398820151,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,37,0,15,1,2,-9,1,11.38337580473946,11.38337580473946,0,0,0,0,0,0,0,1,1,0,0,0,3.834250122141923,3,43.73,59.7,6,1,0,0,13,4,1,781,0,0,0 +9580,11745,21436,-9,-9,-9,1,1,1,58,2,0,0,0,1,-9,3,3,0,2,0,6.470463733929525,6.67259549665312,3,0,0,0,-9,0,-1158.833063277195,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.936721298284456,6.861573978217399,0,0,33.07,39.12,3,1,1,0,2,2,1,705,0,0,0 +9581,11746,21437,-9,21438,-9,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-999.1358571464325,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,1,710.5,0,0,0 +9581,11746,21438,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,1,1,0,5,8.288097724866608,8.058740071385728,0,4,0,-9,0,1,0,-955.6210316189238,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,36,40,15,1,0,-9,0,12.8800418986515,12.8800418986515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,63.75,3,1,0,0,6,3,1,710.5,0,0,0 +9582,11747,21439,21440,-9,-9,1,1,1,65,1,0,0,0,1,-9,2,1,0,2,8.375641234658957,8.398938435148311,6.696393179449522,1,0,-9,46,0,1,109.9155766489475,0,0,0,64,2,3,1,2,2,2019,1,2,11,0,40,0,15,1,0,1,0,8.897551406385837,8.897551406385837,0,0,0,0,0,0,0,1,1,0,2.236886627013424,6.89086389622379,0,0,41.79,47.21,5,1,0,0,9,4,0,583.5,0,0,0 +9582,11747,21440,21439,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,3,7.65316094847059,7.611327637091255,0,1,0,-9,6,0,-1,-52.57311257830994,0,0,0,65,1,2,1,-9,-9,2019,1,1,9,0,22,17,15,1,0,1,0,10.2859781775992,10.2859781775992,0,0,0,0,0,0,0,1,1,0,.651582320055399,0,0,0,51.61,50.58,6,1,0,0,9,4,0,583.5,0,0,0 +9583,11748,21441,-9,-9,-9,1,1,1,73,2,0,0,0,3,-9,4,3,0,3,0,5.508727713112708,5.646589085251877,3,0,0,0,-9,0,-1059.769401843046,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,7.384057132505536,0,0,0,0,14.78851621867364,1,1,0,5.8319360139321,5.934959586654454,0,0,53,47,6,1,0,0,13,2,1,376,0,0,0 +9584,11749,21442,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,4,8.105917569749291,8.868844190995839,0,3,0,0,0,-9,0,-958.8071543942589,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,49,50,15,1,0,-9,0,9.352554521234213,9.352554521234213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,1,1,0,0,2,5,1,1475,0,0,0 +9585,11750,21443,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1107.95929361792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,16.92804017135671,0,0,0,29.48364269156679,0,1,1,0,0,0,0,0,55,45,6,1,0,0,13,1,1,1494,0,0,0 +9586,11751,21444,21445,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,4.988745145940505,4.801919436192104,1,0,-9,52,0,-4,35.9986174803262,0,0,0,74,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.944045099673467,4.916715615306318,0,0,57.74,49,7,1,0,0,12,3,1,262.5,0,0,0 +9586,11751,21445,21444,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,8.329351187221571,7.856611821985516,1,0,-9,52,0,4,-85.40535451161962,0,0,0,70,3,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.044694966108394,7.878998644120521,0,0,49.67,43.39,6,1,0,0,12,3,1,262.5,0,0,0 +9587,11752,21446,21447,-9,-9,1,1,0,32,1,0,2,0,3,-9,1,1,0,5,8.168888301766378,7.933354216836967,0,2,0,-9,15,0,-2,-52.64773098219862,0,0,1,34,2,2,1,2,2,2019,1,2,13,1,40,30,15,1,1,1,0,9.561070300011488,9.561070300011488,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,6,1,0,0,8,4,0,696,0,0,0 +9587,11752,21447,21446,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,2,8.695278395016299,8.798034972518984,0,2,0,-9,11,0,2,-59.76676155847004,0,0,0,32,3,5,1,2,2,2019,1,1,12,0,36,36,15,1,0,1,0,21.07413705335668,21.07413705335668,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.88,41.51,3,1,0,0,8,4,0,696,0,0,0 +9587,11752,21448,-9,21446,21447,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.9497517992544,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,4,0,696,0,0,0 +9588,11753,21449,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1102.300364604192,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.64,29.63,2,1,0,0,4,1,0,411,0,0,0 +9589,11754,21450,-9,21451,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1038.366415048027,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,5,0,0,7,1,0,448.5,0,0,0 +9589,11754,21451,-9,-9,-9,1,1,0,28,3,0,1,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1145.226164031125,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.24,32.39,6,5,0,0,7,1,0,448.5,0,0,0 +9590,11755,21452,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,2,1,0,2,8.083586938329237,8.225038195893093,0,4,0,0,0,-9,0,-1057.315925227875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,40,0,15,1,3,-9,0,8.956814924748702,8.956814924748702,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,40,6,4,0,0,8,3,0,953,0,0,0 +9590,11755,21453,-9,21452,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1061.997456627237,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,8,3,0,953,0,0,0 +9590,11756,21454,-9,21452,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,3,6.809306380893135,7.071354307596449,0,3,0,0,0,-9,0,-976.0768348032288,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,8,17,15,1,2,-9,1,13.38378572666616,13.38378572666616,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.44,48.74,5,4,0,0,8,2,0,437,0,0,0 +9591,11757,21455,21456,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,3,8.238655894646413,8.335778623938721,0,1,0,-9,13,0,-10,51.98883286290888,0,0,0,57,1,3,1,3,3,2019,1,1,30,12,43,40,15,1,12,1,0,8.600645446472939,8.600645446472939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.1,54.43,3,1,0,0,9,4,1,517,0,0,0 +9591,11757,21456,21455,-9,-9,1,1,1,57,1,0,0,0,1,-9,1,1,0,3,7.775994607339257,7.766926205512126,0,1,0,-9,13,0,10,95.08575280989223,0,0,0,47,2,3,1,3,3,2019,1,2,8,0,46,54,15,1,0,1,0,6.395111510878479,6.395111510878479,0,0,0,0,0,0,0,0,0,0,0,0,3.59888435151153,3,55.36,51.57,6,1,0,0,9,4,1,517,0,0,0 +9592,11758,21457,21459,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,4,8.704921048167405,8.644341786381547,0,2,0,-9,29,0,-2,-28.58833495783739,0,0,0,53,1,5,1,2,1,2019,1,1,7,0,27,27,15,1,0,1,0,23.59676515367498,23.59676515367498,0,0,0,0,0,0,0,1,1,0,3.647308854215053,0,0,0,57.16,56.15,6,1,0,0,12,3,1,448.75,0,0,0 +9592,11758,21458,-9,21457,21459,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-993.3755012568085,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2491541395345789,0,0,0,60.87,42.1,7,1,0,0,12,3,1,448.75,0,0,0 +9592,11758,21459,21457,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,5,7.275545104215968,7.380593362800818,0,2,0,-9,29,0,2,129.0065553940714,0,0,0,51,1,4,1,2,2,2019,1,2,7,0,37,47,15,1,0,1,0,3.695241613581481,3.695241613581481,0,0,0,0,0,0,0,1,1,0,7.329339703032696,0,0,0,57.06,57.76,6,1,0,0,12,3,1,448.75,0,0,0 +9592,11758,21460,-9,21457,21459,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1137.869849882121,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,3,1,448.75,0,0,0 +9593,11759,21461,21462,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,5,8.634456883903638,8.424089037157337,0,1,0,-9,1,-9,7,90.14234599731108,-9,0,0,55,2,4,1,-9,-9,2019,1,1,11,0,40,0,15,1,0,1,0,14.71455986694138,14.71455986694138,0,0,0,0,0,0,0,0,0,0,5.370761395516828,0,0,0,38.41,59.77,4,1,0,0,11,5,1,717.5,0,0,0 +9593,11759,21462,21461,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.717896547547137,7.955276791668713,0,1,0,-9,29,-9,-7,53.80797482850468,-9,0,0,62,2,5,1,-9,-9,2019,1,2,9,0,30,0,15,1,0,1,0,7.685138662614345,7.685138662614345,0,0,0,0,0,0,0,0,0,0,3.848537506727908,0,1.885531015833359,3,50.06,49.75,6,1,0,0,11,5,1,717.5,0,0,0 +9593,11760,21463,-9,21462,21461,4,1,0,24,2,0,0,0,2,-9,2,1,0,5,7.995834545390458,8.229552522567023,0,3,0,-9,0,-9,0,-1032.62416266792,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,38,0,15,1,2,-9,1,9.616324220160358,9.616324220160358,0,0,0,0,0,0,0,0,0,0,1.680945060366033,0,0,0,46.34,61.24,5,1,0,0,11,3,1,773,0,0,0 +9594,11761,21464,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,4,0,3.130085149755733,3.151853680354715,3,0,0,0,-9,0,-1026.313854692183,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.232376008808716,2.983659367346835,0,0,65.06,41.58,7,1,0,0,6,1,1,1042,0,0,0 +9595,11762,21465,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,2,1,0,3,5.531891360591017,7.488426199229722,7.37744483207891,3,0,0,0,-9,0,-882.1822683737229,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,25,6,15,1,0,-9,0,1.326454869257631,1.326454869257631,0,0,0,0,0,0,0,1,1,0,0,7.552517042825265,0,0,37.17,50.6,5,1,0,0,12,3,0,1359,0,0,0 +9596,11763,21466,21467,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,8.516312230611812,8.202595574609891,0,1,0,-9,29,0,-7,-31.65444139224572,0,0,0,54,2,4,1,3,2,2019,1,2,8,0,38,38,15,1,0,1,0,16.04279699979414,16.04279699979414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,8,4,1,382,0,0,0 +9596,11763,21467,21466,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,4,7.011269401159991,7.229670725485323,0,1,0,-9,29,0,7,23.42273552496674,0,0,0,47,2,3,1,2,2,2019,1,1,13,2,38,38,15,1,2,1,0,3.566024834154089,3.566024834154089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,6,1,0,0,8,4,1,382,0,0,0 +9596,11764,21468,-9,21466,21467,4,1,0,20,2,0,0,0,2,-9,2,1,0,1,6.466387409153492,6.525218923894917,0,3,0,0,0,-9,0,-1063.461350498949,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,30,11,8,0,15,1,11,-9,1,9.913408335131288,9.913408335131288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.24,61.09,2,1,0,0,8,2,1,2024,0,0,0 +9597,11765,21469,-9,21474,21473,7,1,0,3,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.8567066152449,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9597,11765,21470,-9,21474,21473,2,1,0,10,2,1,6,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-853.9545448690925,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9597,11765,21471,-9,21474,21473,5,1,0,6,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.138568277188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9597,11765,21472,-9,21474,21473,8,1,1,1,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-827.2840260742219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9597,11765,21473,21474,-9,-9,4,1,1,40,1,1,6,0,2,-9,1,1,0,4,5.720325990107906,6.030947982879962,0,2,0,-9,8,0,10,-34.3618108503068,0,0,0,30,2,4,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,3,0,.9382183145449219,.9382183145449219,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9597,11765,21474,21473,-9,-9,1,1,0,30,1,1,6,0,2,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-10,-12.42822889199275,0,0,1,40,2,4,1,2,2,2019,3,4,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9597,11765,21475,-9,21474,21473,3,1,0,8,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.3859098178077,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,2,0,1000.285714285714,0,0,0 +9598,11766,21476,21477,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,5,0,4.842892803202101,4.984274673590366,1,0,-9,54,0,1,-123.0314936883235,0,0,0,77,3,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.710670752284227,4.708121357988484,0,0,54.1,59.11,6,1,0,0,5,2,1,233,0,0,0 +9598,11766,21477,21476,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,6.271703323850979,6.122782655138433,1,0,-9,54,0,-1,-54.44580587929275,0,0,0,78,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.183160589868407,6.147475702451898,0,0,46.39,60.99,2,1,0,0,5,2,1,233,0,0,0 +9599,11767,21478,-9,21480,21479,2,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.970732721303629,8.052853845120424,0,3,0,0,0,-9,0,-1092.631806272154,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,35,15,1,0,-9,1,8.708592623927318,8.708592623927318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,9,3,1,2066,0,0,0 +9599,11768,21479,21480,-9,-9,3,1,1,51,1,0,0,0,1,-9,2,1,0,3,8.384517654361288,8.287940870679268,0,1,0,-9,6,0,2,-37.18796800764118,0,0,0,49,2,4,1,2,2,2019,1,1,17,6,40,40,15,1,6,1,0,11.63672002617981,11.63672002617981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.47,55.66,6,1,0,0,9,4,1,457,0,0,0 +9599,11768,21480,21479,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.9573827682849,8.13538695687593,0,1,0,-9,6,0,-2,23.53289795829759,0,0,0,51,1,3,1,3,3,2019,1,3,13,2,37,37,15,1,2,1,0,9.569780285666731,9.569780285666731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.47,51.38,5,1,0,0,9,4,1,457,0,0,0 +9600,11769,21481,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,5,7.22299294447458,7.346419616953873,0,3,0,0,0,-9,0,-1038.045793139219,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,3,1,30,35,15,1,1,-9,0,5.693992159586988,5.693992159586988,0,0,0,0,0,0,0,0,0,0,6.036841007431505,0,0,0,39.69,62.39,7,1,0,0,10,3,1,231,0,0,0 +9601,11770,21482,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,2,8.470789134503985,8.738200586020612,7.859732726979442,3,0,0,0,-9,0,-1003.693306071864,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,32,0,15,1,0,-9,0,12.80937145666335,12.80937145666335,0,0,0,0,0,0,0,0,0,0,7.562244101526094,7.732122785144266,0,0,42.17,51.35,4,1,0,0,12,5,1,1455,0,0,0 +9602,11771,21483,-9,21485,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-966.1422875941643,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,1,0,680.3333333333334,0,0,0 +9602,11771,21484,-9,21485,-9,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-974.7854466217669,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,1,0,680.3333333333334,0,0,0 +9602,11771,21485,-9,-9,-9,1,1,0,24,2,0,2,0,2,-9,2,1,0,4,0,0,0,4,0,0,0,-9,0,-993.4060394215049,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,1,0,680.3333333333334,0,0,0 +9603,11772,21486,21487,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.207407177277684,8.092513308962783,1,0,-9,31,0,10,-85.37260186089108,0,0,0,59,1,5,1,3,3,2019,3,2,6,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.186665482061834,8.280259763342009,0,0,54.06,52.29,6,1,0,0,9,4,1,258,0,0,0 +9603,11772,21487,21486,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,5,5.788127555319407,7.717238185450728,7.325085446275922,1,0,-9,10,0,-10,40.36264114128103,0,0,0,69,1,4,3,-9,-9,2019,2,1,6,0,5,0,15,1,0,4,0,8.875267644304763,8.875267644304763,0,0,0,0,0,0,0,1,1,0,7.735641131563211,7.518796123820294,0,0,60.02,56.42,6,1,0,0,9,4,1,258,0,0,0 +9604,11773,21488,21489,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,3,8.586912931196103,8.684779624047454,0,2,0,-9,8,0,-4,124.4279026842553,0,0,0,42,1,4,1,2,2,2019,1,2,22,8,48,43,15,1,8,1,0,12.18732891817192,12.18732891817192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.75,51.88,3,3,0,1,8,5,1,175.5,0,0,0 +9604,11773,21489,21488,-9,-9,2,1,0,42,1,1,2,0,1,-9,2,1,0,4,8.62930824297862,8.456033119638391,7.248466716914499,2,0,-9,8,0,4,10.54849275957069,0,0,1,38,1,3,1,3,1,2019,1,1,23,8,35,29,15,1,8,1,0,20.78408358660139,20.78408358660139,0,0,0,0,0,0,0,1,1,0,7.551897120375615,0,1.917408072187419,3,18.27,66.02,3,1,0,1,8,5,1,175.5,0,0,0 +9604,11773,21490,-9,21489,21488,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1125.625603543112,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,5,1,175.5,0,0,0 +9604,11773,21491,-9,21489,21488,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-832.6987796373968,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,5,1,175.5,0,0,0 +9605,11774,21492,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-913.6079042986847,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,15.3321252267412,8.932138974174798,0,0,1,1,0,1.681236405613479,0,0,0,64.47,22.75,7,1,0,0,11,1,1,131,0,0,0 +9606,11775,21493,21494,-9,-9,1,1,0,43,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,13,0,-5,96.0826464491674,0,0,1,48,2,3,1,3,3,2019,3,2,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.19,27.06,5,4,1,0,6,2,0,971,0,0,0 +9606,11775,21494,21493,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,3,7.133266065045654,6.944309480337975,0,1,0,-9,12,0,5,2.606993495101293,0,0,0,43,2,1,3,2,-9,2019,2,1,8,1,20,18,15,1,1,3,0,5.830751881790793,5.830751881790793,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49.67,43.39,6,2,0,0,6,2,0,971,0,0,0 +9607,11776,21495,21496,-9,-9,1,1,1,67,1,0,0,0,2,-9,2,1,0,3,7.898254323615662,8.526920953320563,7.715080901436948,1,0,-9,29,0,6,-99.36681399346588,0,0,0,61,2,3,1,-9,2,2019,1,2,10,0,17,23,15,1,0,1,0,21.88792782620801,21.88792782620801,0,0,0,0,0,0,0,1,1,0,6.849370822581032,7.75789775249959,0,0,57.91,46.31,6,1,0,0,12,5,1,218.5,0,0,0 +9607,11776,21496,21495,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.701524319551168,8.112160350270994,7.306781144234446,1,0,-9,26,0,-6,-19.4865168736354,0,0,0,67,2,3,1,2,1,2019,1,1,15,3,21,14,15,1,3,1,0,12.629968678008,12.629968678008,0,0,0,0,0,0,0,1,1,0,5.227515052314304,7.02767425167581,0,0,40.88,59.72,5,1,0,0,12,5,1,218.5,0,0,0 +9608,11777,21497,21498,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.39819570588741,8.588749956531865,0,1,0,-9,8,0,-2,-62.98875513216032,0,1,1,29,2,5,1,2,2,2019,1,1,13,1,44,43,15,1,1,1,0,9.290181391076267,9.290181391076267,0,0,0,0,0,0,0,0,0,0,2.549760379582988,0,0,0,43.46,52.95,6,1,0,0,9,5,0,722.5,0,0,0 +9608,11777,21498,21497,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,5,8.684245398130383,8.483833091346485,0,1,0,-9,8,0,2,94.22908101640066,0,1,0,27,1,4,1,2,-9,2019,1,2,8,0,40,40,15,1,0,1,0,14.13254476645023,14.13254476645023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,6,1,0,0,9,5,0,722.5,0,0,0 +9609,11778,21499,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,3.469108320523309,3.47576402538047,3,0,0,0,-9,0,-989.9332421355087,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.890936386602762,0,0,0,56.19,41.56,5,1,0,0,11,2,1,371,0,0,0 +9610,11779,21500,21501,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.031690880153022,8.09140384940903,0,1,0,-9,24,0,-1,149.3654748036848,0,0,0,46,3,3,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,10.10695853525892,10.10695853525892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.44,56.63,4,1,0,0,5,5,0,1699.5,0,0,0 +9610,11779,21501,21500,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,3,8.094548089317879,8.096711196629716,0,1,0,-9,10,0,1,-60.12974620653116,0,0,0,45,2,3,1,-9,-9,2019,1,1,11,0,47,54,15,1,0,1,0,8.727349598356255,8.727349598356255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,5,1,0,0,5,5,0,1699.5,0,0,0 +9611,11780,21502,21503,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,2,7.072986433073191,7.237520923803368,4.599990752171907,1,0,-9,2,0,1,129.1916023569681,0,0,0,53,3,4,1,2,2,2019,1,3,7,0,20,14,15,1,0,1,0,9.440860485505221,9.440860485505221,0,0,0,0,0,0,0,1,1,0,3.747726674574877,4.496739990451611,0,0,59.56,32.49,3,1,0,0,9,4,0,423.5,0,0,0 +9611,11780,21503,21502,-9,-9,3,1,1,53,1,0,0,0,3,-9,2,1,0,4,7.9712419032816,7.683884774613724,0,1,0,-9,2,0,-1,60.73089719429677,0,0,0,54,3,2,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,9.178624289097016,9.178624289097016,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,5,0,0,9,4,0,423.5,0,0,0 +9611,11781,21504,-9,21502,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-869.510436610045,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,35,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,9,1,0,1433,0,0,0 +9612,11782,21505,-9,-9,-9,1,1,0,82,2,0,0,0,3,-9,4,3,0,4,0,6.27787638917281,5.874736641618571,3,0,0,0,-9,0,-970.0340612272997,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.317024452643348,0,3,59.53,56.44,7,4,0,0,8,2,1,818,0,0,0 +9613,11783,21506,21508,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,5,9.550309694822987,9.425264607657297,0,2,0,-9,7,0,-1,42.38820062836326,0,0,0,48,2,5,1,3,3,2019,1,1,13,3,83,43,15,1,3,1,0,20.29433167126772,20.29433167126772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,1,5,1,729.3333333333334,0,0,0 +9613,11783,21507,-9,21506,21508,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.8121423382606,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,1,5,1,729.3333333333334,0,0,0 +9613,11783,21508,21506,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,5,8.814902987049347,9.356619757333437,0,2,0,-9,7,0,1,31.2881580485724,0,0,0,47,1,5,1,2,3,2019,1,2,6,0,37,37,15,1,0,1,0,24.69655607655562,24.69655607655562,0,0,0,0,0,0,0,0,0,0,1.784056158055636,0,0,0,51.91,53.27,7,1,0,0,1,5,1,729.3333333333334,0,0,0 +9614,11784,21509,-9,21510,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,2,4.296405574104795,4.067950812747758,0,4,0,-9,0,-9,0,-982.2917993163512,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.53,55.61,1,1,0,0,10,2,1,282.5,0,0,0 +9614,11784,21510,-9,-9,-9,1,1,0,52,3,0,2,0,2,-9,6,3,0,4,0,6.325212183990859,6.086775440203404,4,0,-9,0,-9,0,-870.6916484224952,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.52404510701777,0,0,0,33.83,63.9,5,1,0,0,10,2,1,282.5,0,0,0 +9615,11785,21511,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,6.916660500422847,6.61507009783341,0,3,0,-9,0,1,0,-1007.084746363225,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,16,47,15,1,0,-9,0,9.396862947071812,9.396862947071812,0,0,0,0,0,0,0,0,0,0,1.087739949221431,0,0,0,53.89,47.14,6,1,0,0,7,2,0,643,0,0,0 +9616,11786,21512,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1006.022529749499,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,8.171361980991895,0,0,0,0,65.46459347776833,1,1,0,.0790229577764136,0,0,0,35.12,35.47,5,1,0,0,13,1,0,208,0,0,0 +9617,11787,21513,21514,-9,-9,2,1,1,51,1,0,1,0,2,-9,1,1,0,4,8.132442109640449,8.221126095803639,0,2,0,-9,6,0,0,50.68177302919392,0,0,0,51,2,5,1,2,-9,2019,1,1,24,9,70,60,15,1,9,1,0,5.016117231673721,5.016117231673721,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,3,1,0,0,9,4,1,311.5,0,0,0 +9617,11787,21514,21513,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,5,8.277760844194731,7.965101196710497,0,2,0,-9,27,0,0,38.72745040148516,0,0,0,51,2,4,1,2,1,2019,1,2,8,0,25,31,15,1,0,1,0,13.53698244237833,13.53698244237833,0,0,0,0,0,0,0,1,1,0,.5148851800272602,0,0,0,57.06,57.76,6,1,0,0,9,4,1,311.5,0,0,0 +9618,11788,21515,21516,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,4,9.447553698323846,9.52133330966798,0,1,0,-9,1,-9,2,-11.10631960320763,-9,0,0,53,1,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,50.04677331442223,50.04677331442223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,5,0,0,8,5,1,273,0,0,0 +9618,11788,21516,21515,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,4,8.368248844764192,7.800713217358537,0,1,0,-9,1,-9,-2,92.90202571082075,-9,0,0,55,1,4,1,2,3,2019,1,2,6,0,36,0,15,1,0,1,0,8.355052366115395,8.355052366115395,0,0,0,0,0,0,0,0,0,0,6.975463115416407,0,0,0,54.79,55.86,6,4,0,0,8,5,1,273,0,0,0 +9619,11789,21517,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,2,0,4.852392796234948,4.23539612758062,3,0,0,0,-9,0,-926.7801528362456,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.888335909362166,4.647976434385641,0,0,53.97,40.34,6,1,0,0,10,2,0,33,0,0,0 +9620,11790,21518,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,4,0,6.840810971660203,6.9182360984864,3,0,0,0,-9,0,-971.0559381452634,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.640356004060011,6.88199320576869,0,0,57.16,56.15,6,1,0,0,10,2,1,1015,0,0,0 +9621,11791,21519,21520,-9,-9,1,1,1,43,1,0,0,0,1,-9,2,1,0,4,9.431024093228363,9.095182170961614,0,1,0,-9,17,-9,1,6.267026197455422,-9,0,0,42,1,3,1,2,-9,2019,1,2,7,0,56,0,15,1,0,1,0,25.51871732299537,25.51871732299537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,12,5,1,617,0,0,0 +9621,11791,21520,21519,-9,-9,2,1,0,42,1,0,0,0,1,-9,2,1,0,3,6.869347147480925,6.956925939867099,0,1,0,-9,18,-9,-1,-133.0471029095228,-9,0,1,43,1,4,1,2,2,2019,1,1,6,0,18,0,15,1,0,1,0,6.518980797245654,6.518980797245654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.86,50.49,7,1,0,0,12,5,1,617,0,0,0 +9621,11792,21521,-9,21520,21519,3,1,1,18,2,0,0,0,2,-9,2,1,0,4,6.735370760508479,6.798673758209869,0,3,0,-9,0,-9,0,-1030.659778050986,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,20,0,15,1,0,-9,1,5.303195877100858,5.303195877100858,0,0,0,0,0,0,0,0,0,0,.2432139499164686,0,0,0,46.92,60.71,7,1,0,0,12,2,1,250,0,0,0 +9621,11793,21522,-9,21520,21519,4,1,0,22,2,0,0,1,2,-9,7,2,0,3,6.690757622668726,6.57217887760172,0,3,0,-9,0,-9,0,-1027.088728514271,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,8,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.095055017780362,0,0,0,55.53,51.55,5,1,0,0,12,2,1,227,0,0,0 +9622,11794,21523,21524,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,2,7.502823514168048,7.273086889692128,0,1,0,-9,5,0,-2,-37.07976189049825,0,0,0,64,2,3,1,3,3,2019,1,1,12,0,24,24,15,1,0,1,0,9.386461720238545,9.386461720238545,0,0,0,0,0,0,0,1,1,0,2.871497207377264,0,0,0,44.01,43.88,4,1,0,0,9,4,1,798,0,0,0 +9622,11794,21524,21523,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,3,8.294561922793875,8.102581751131806,0,1,0,-9,5,0,2,8.291094452625305,0,0,0,62,3,2,1,2,2,2019,1,2,12,0,50,60,15,1,0,1,0,11.20832383299583,11.20832383299583,0,0,0,0,0,0,0,1,1,0,4.574181042228421,0,3.168239140234031,3,51.41,56.15,4,1,0,0,9,4,1,798,0,0,0 +9623,11795,21525,-9,21528,21526,4,1,0,21,2,0,1,0,1,-9,2,1,0,4,7.756877967314926,7.473256360688262,0,3,0,0,0,-9,0,-1055.019146477537,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,8,0,36,0,15,1,0,-9,1,6.255064281008393,6.255064281008393,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.85,61.26,6,1,0,0,13,3,1,2437,0,0,0 +9623,11796,21526,21528,-9,-9,1,1,1,50,1,0,1,0,3,-9,1,1,0,2,7.597837583488571,7.887845249484412,0,2,0,-9,8,0,1,-106.718108611549,0,0,0,49,1,3,1,3,3,2019,1,2,13,1,30,40,15,1,1,1,0,9.668597392299384,9.668597392299384,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,51.08,4,1,0,0,13,5,1,828,0,0,0 +9623,11796,21527,-9,21528,21526,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.641534486498,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,1,828,0,0,0 +9623,11796,21528,21526,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,3,9.14057130253444,8.762817344366278,0,2,0,-9,8,0,-1,-21.48379100060242,0,0,0,50,3,2,1,-9,-9,2019,1,1,12,0,31,28,15,1,0,1,0,25.86005316756734,25.86005316756734,0,0,0,0,0,0,0,1,1,0,1.439134998465157,0,1.035717958521594,3,42.37,48.08,5,1,0,0,13,5,1,828,0,0,0 +9624,11797,21529,-9,-9,-9,1,1,0,53,3,1,1,0,2,-9,2,1,0,1,7.429412691894081,7.250117834131506,2.368979842994568,4,0,0,0,-9,0,-1006.458900619935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,22,25,15,1,1,-9,0,9.096463475089172,9.096463475089172,0,0,0,0,0,0,0,1,1,0,2.253906776916833,0,78.02334484693544,3,29.47,21.77,2,1,0,1,11,2,1,438,0,0,0 +9624,11798,21530,21531,-9,-9,5,1,0,22,1,1,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,4,0,-6,-84.82382026373097,0,1,1,28,2,1,1,-9,-9,2019,3,2,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97795529322611,3,26.64,58.12,5,1,1,0,11,2,1,493,0,0,0 +9624,11798,21531,21530,21529,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,1,7.409021589363191,7.606457011906688,0,2,0,-9,4,0,6,85.41415349953947,0,1,0,22,2,3,3,2,2,2019,2,5,14,2,39,50,15,1,2,3,0,6.039635291044725,6.039635291044725,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.46,45.82,6,1,0,0,11,2,1,493,0,0,0 +9624,11798,21532,-9,21530,21531,6,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.169269294346,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,2,1,493,0,0,0 +9624,11799,21533,-9,21529,-9,3,1,0,25,2,1,1,0,2,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-1135.682002025983,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.976509755653621,3,48.81,59.91,6,1,0,0,11,1,1,1644,0,0,0 +9625,11800,21534,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,4,0,7.161736310470942,7.530043670539752,3,0,0,0,-9,0,-1014.929537403642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.293043985025109,7.342345959992501,0,0,62.01,38.87,6,1,0,0,12,3,1,512,0,0,0 +9626,11801,21535,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-943.0579683792679,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,4,0,37,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,55.02,46.37,3,1,0,0,8,1,1,550,0,0,0 +9626,11802,21536,-9,-9,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,4,9.039128523510833,9.2407346496231,0,3,0,0,0,-9,0,-1151.316416309198,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,7,51,79,15,1,7,-9,0,21.58753752554155,21.58753752554155,0,0,0,0,0,0,0,0,0,0,3.082033268115237,0,0,0,54.2,57.49,5,1,0,0,8,5,1,441,0,0,0 +9627,11803,21537,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,1,1,0,3,9.016256722877372,9.005029358871241,0,3,0,0,0,-9,0,-1036.999727827761,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,42,70,15,1,1,-9,0,20.42699267714234,20.42699267714234,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,5,1,0,0,13,5,1,1476,0,0,0 +9628,11804,21538,21539,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.838529857720666,8.31757410691023,0,1,0,-9,23,-9,12,61.15687050750072,-9,0,0,46,2,3,1,-9,-9,2019,1,1,20,6,35,0,15,1,6,1,0,9.061746925939858,9.061746925939858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,47,3,1,0,0,9,4,1,175,0,0,0 +9628,11804,21539,21538,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,3,8.059585953734834,8.061767112320654,0,1,0,-9,23,-9,-12,51.16779806350694,-9,0,0,58,2,2,1,3,3,2019,1,2,12,1,50,0,15,1,1,1,0,8.492446693244732,8.492446693244732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,51.86,4,1,0,0,9,4,1,175,0,0,0 +9629,11805,21540,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,2,7.688790284641626,7.704701683783331,0,3,0,0,0,-9,0,-1066.192397201541,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,40,45,15,1,12,-9,0,6.0359985474009,6.0359985474009,0,0,0,0,0,0,0,0,0,0,0,0,21.76461981049836,3,33.7,31.98,2,3,0,1,2,3,0,569,0,0,0 +9630,11806,21541,21542,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,4,7.958674825403317,8.405484416024652,0,2,0,-9,7,0,9,-59.26527886581046,0,0,0,42,1,4,1,2,3,2019,1,1,8,0,50,27,15,1,0,1,0,7.762075048230611,7.762075048230611,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,56.46,6,1,0,0,7,5,1,454.3333333333333,0,0,0 +9630,11806,21542,21541,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.635352741097028,9.135493330964549,0,2,0,-9,7,0,0,-23.48390154655058,0,0,1,51,2,4,1,2,3,2019,1,2,17,6,52,58,15,1,6,1,0,18.1882270089886,18.1882270089886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.9,53.6,5,1,0,0,7,5,1,454.3333333333333,0,0,0 +9630,11806,21543,-9,21542,21541,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.927757473914,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,5,1,454.3333333333333,0,0,0 +9631,11807,21544,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,3,8.168950007391366,8.048986272159802,0,3,0,0,0,-9,0,-967.4934729137999,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,22,10,56,53,15,1,10,-9,0,6.644260006078801,6.644260006078801,0,0,0,0,0,0,0,0,0,0,8.048209035988142,0,0,0,48.14,53.42,3,2,0,0,9,4,0,875,0,0,0 +9631,11808,21545,21546,-9,-9,3,1,0,24,1,0,0,0,1,-9,2,1,0,5,7.472996425572899,7.508639236178399,0,1,0,-9,1,-9,-1,102.5588208260214,-9,1,1,25,2,3,1,-9,-9,2019,1,2,13,5,30,0,15,1,5,1,0,7.67628737786726,7.67628737786726,0,0,0,0,0,0,0,0,0,0,.8493619889171222,0,0,0,28.07,57.57,5,1,0,0,9,3,0,577,0,0,0 +9631,11808,21546,21545,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,3,7.241024766890068,7.682309908920755,0,1,0,1,1,-9,1,-4.433144098927007,0,1,0,24,1,5,1,-9,-9,2019,1,3,12,0,20,50,15,1,0,1,0,7.572002620197539,7.572002620197539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,51.9,4,2,0,0,9,3,0,577,0,0,0 +9632,11809,21547,21549,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,4,8.411526813623759,8.152866341209073,0,2,0,-9,7,0,2,63.25615183431003,0,0,0,35,1,5,1,2,2,2019,1,2,10,1,45,45,15,1,1,1,0,18.48875248647994,18.48875248647994,0,0,0,0,0,0,0,1,1,0,1.141960394805096,0,0,0,49.35,59.64,6,1,0,0,9,5,1,816.75,0,0,0 +9632,11809,21548,-9,21549,21547,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.2519146350862,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,816.75,0,0,0 +9632,11809,21549,21547,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,5,9.012342037541341,8.824967127764072,0,2,0,-9,7,0,-2,6.522323506712538,0,0,1,37,2,4,1,2,2,2019,1,1,10,1,32,34,15,1,1,1,0,26.03170744418276,26.03170744418276,0,0,0,0,0,0,0,1,1,0,3.070047393045013,0,0,0,46.88,60.96,5,1,0,0,9,5,1,816.75,0,0,0 +9632,11809,21550,-9,21549,21547,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.4742583023439,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,1,816.75,0,0,0 +9633,11810,21551,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,3,0,6.088309408902667,6.194475971763542,3,0,0,0,-9,0,-962.1333712860801,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.15065278181855,0,0,55,43,6,1,0,0,6,2,1,2079,0,0,0 +9634,11811,21552,21553,-9,-9,2,1,1,35,1,0,0,0,2,-9,2,1,0,3,8.02396878748722,7.732410413073498,0,1,0,-9,2,0,3,74.21309680177384,0,0,0,32,2,3,1,-9,-9,2019,1,1,12,0,40,0,15,1,0,1,0,7.738794433635072,7.738794433635072,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.85,52.84,7,1,0,0,12,4,0,1814.5,0,0,0 +9634,11811,21553,21552,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,3,7.658542151802518,7.964499451057224,0,1,0,-9,2,0,-3,-148.5530424895621,0,0,1,35,2,3,1,2,2,2019,1,2,10,0,30,29,15,1,0,1,0,7.6747180078732,7.6747180078732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,12,4,0,1814.5,0,0,0 +9635,11812,21554,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,3,0,7.484902577505715,7.037937161274941,3,0,0,0,-9,0,-997.0765515668775,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,37,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.975606294544532,7.389094539723124,0,0,36.32,44.1,5,1,0,0,8,3,1,258,0,0,0 +9636,11813,21555,21556,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,3,8.517309713000303,8.129670270139403,0,1,0,-9,54,0,3,47.25404780791524,0,0,0,77,1,4,3,-9,-9,2019,4,2,11,0,7,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,50.84,2,3,0,0,8,3,1,642.5,0,0,0 +9636,11813,21556,21555,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,54,0,-3,64.09402501935023,0,0,0,80,1,3,3,3,1,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.256339882216266,0,0,0,47.3,41.7,7,3,0,0,8,3,1,642.5,0,0,0 +9637,11814,21557,21558,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,2,9.140249700080854,9.381646426517547,7.938918502386782,1,0,-9,6,0,-2,-83.88202428750299,0,0,0,64,1,3,3,-9,-9,2019,2,2,6,0,38,38,15,1,0,4,0,30.51533675751336,30.51533675751336,0,0,0,0,0,0,0,0,0,0,0,8.456040294112176,0,3,60.05,32.12,6,1,0,0,1,5,1,837.5,0,0,0 +9637,11814,21558,21557,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,3,7.831559169107526,8.415855115276296,6.667307911839188,1,0,-9,6,0,2,19.39588107147301,-9,0,0,62,1,2,1,-9,-9,2019,3,1,7,0,5,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.922497044235762,6.723643250623495,12.44356056326583,3,57.33,53.46,6,1,0,0,1,5,1,837.5,0,0,0 +9638,11815,21559,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,1,1,0,4,8.088722184352852,7.936467236836966,0,3,0,0,0,-9,0,-1012.095659735674,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,50,50,15,1,11,-9,0,7.77035027250886,7.77035027250886,0,0,0,0,0,0,0,0,0,0,3.377514128259774,0,0,0,44.05,39.93,2,3,0,0,6,4,1,274,0,0,0 +9639,11816,21560,-9,-9,-9,1,1,1,19,2,0,0,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1029.58549259587,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.7,57.37,6,1,0,0,5,1,1,397,0,0,0 +9640,11817,21561,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,4,9.315218582115422,9.667686859436886,0,3,0,0,0,-9,0,-947.0702468151622,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,79,45,15,1,0,-9,0,19.77058314529943,19.77058314529943,0,0,0,0,0,0,0,0,0,0,5.14431872451813,0,0,0,57.16,56.15,6,1,0,0,9,5,1,408,0,0,0 +9641,11818,21562,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-954.262477296426,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.994618149596265,0,0,0,66.95,28.35,6,1,0,0,9,1,1,221,0,0,0 +9642,11819,21563,21564,-9,-9,1,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.900779007449742,8.788559463288674,0,1,0,-9,4,0,-4,55.37581549217857,0,0,0,35,2,5,1,1,2,2019,1,2,21,9,38,38,15,1,9,1,0,23.67322894118367,23.67322894118367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,4,5,1,600,0,0,0 +9642,11819,21564,21563,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,5,7.771460173735109,7.913244625242617,0,1,0,-9,4,0,4,-104.5563500605535,0,0,1,31,1,4,1,-9,-9,2019,1,1,7,0,13,16,15,1,0,1,0,21.16089334194896,21.16089334194896,0,0,0,0,0,0,0,0,0,0,.3544640642138501,0,0,0,57.06,57.76,7,1,0,0,4,5,1,600,0,0,0 +9643,11820,21565,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,2,0,7.627646040560045,7.279791228195291,3,0,0,0,-9,0,-1004.245941688456,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.759954785479065,7.603049694484594,0,0,58.21,20.95,6,1,0,0,9,3,1,1276,0,0,0 +9644,11821,21566,21567,-9,-9,2,1,0,39,1,0,0,0,1,-9,7,2,0,4,7.068042007648009,7.172902008960704,0,1,0,-9,6,-9,5,-7.753099412459584,-9,0,1,34,1,4,1,-9,-9,2019,3,1,9,2,13,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.983061821758644,0,0,3,26.32,64.89,7,1,0,0,6,5,1,1462.5,0,0,0 +9644,11821,21567,21566,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,8.741184000629401,8.82506721135913,0,1,0,-9,6,-9,-5,59.24546655030738,-9,0,0,39,1,4,2,-9,-9,2019,2,2,4,0,55,0,15,1,0,2,0,13.08913581047836,13.08913581047836,0,0,0,0,0,0,0,0,0,0,4.48537272202761,0,0,0,44.26,59.43,6,1,0,0,6,5,1,1462.5,0,0,0 +9645,11822,21568,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,3,0,6.786541298243741,6.175148914936763,3,0,0,0,-9,0,-1060.397165080615,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,15.66512602322642,0,1,1,0,5.540715323564005,6.344412184442672,0,0,57.38,36.96,1,1,0,0,10,2,1,346,0,0,0 +9645,11823,21569,-9,-9,-9,2,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,6.655855229897083,6.564530966759143,3,0,0,0,-9,0,-1008.942273613246,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.475222568522846,0,3,67.63,32.28,7,1,0,0,10,2,1,1774,0,0,0 +9646,11824,21570,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,2,8.494024453081748,8.597648256394299,0,3,0,0,0,-9,0,-1027.3702691242,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,43,42,15,1,2,-9,0,14.09029551923681,14.09029551923681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.65,47.75,6,1,0,0,7,4,0,232,0,0,0 +9646,11825,21571,-9,-9,-9,2,1,0,31,2,0,0,0,1,-9,2,1,0,3,8.610436965458677,8.950498684566517,7.71756307041057,3,0,0,0,-9,0,-1097.173153200557,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,39,40,15,1,5,-9,0,15.39853753168805,15.39853753168805,0,0,0,0,0,0,0,0,0,0,8.81856002606874,0,0,0,44.22,56.66,5,3,0,0,7,5,0,596,0,0,0 +9647,11826,21572,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,3,0,8.391312766608261,8.441917413079182,3,0,0,0,-9,0,-1143.718841907823,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.872238533978657,8.187500898805261,0,0,56.05,45.76,6,1,0,0,8,4,1,199,0,0,0 +9648,11827,21573,21574,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,3,8.240881480206257,8.54701873786416,0,1,0,-9,1,-9,0,95.79293021306938,-9,1,1,26,2,5,1,-9,-9,2019,1,1,28,11,37,0,15,1,11,1,0,14.10462867212527,14.10462867212527,0,0,0,0,0,0,0,0,0,0,3.784564812779271,0,0,0,8.83,64.91,6,1,0,0,9,5,1,1074,0,0,0 +9648,11827,21574,21573,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,5,8.630907501203366,8.283226112560692,0,1,0,1,1,-9,0,35.81517067116095,0,1,0,26,1,3,1,2,1,2019,1,2,7,0,35,35,15,1,0,1,0,19.40435882812731,19.40435882812731,0,0,0,0,0,0,0,0,0,0,3.523373196071104,0,0,0,48.77,60.16,6,1,0,0,9,5,1,1074,0,0,0 +9649,11828,21575,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,4,0,6.382071682600392,6.388499681407381,3,0,0,0,-9,0,-925.776688626542,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.002355804463792,6.258552352800694,0,0,51.83,57.2,6,1,0,0,5,2,1,439,0,0,0 +9650,11829,21576,21577,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,4,7.672130657876454,7.318468241767996,0,1,0,-9,3,0,-1,-58.20846497356716,0,1,0,26,1,3,1,-9,-9,2019,1,3,22,10,28,30,15,1,10,1,0,7.264624427839725,7.264624427839725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,3,1,0,0,11,3,0,560.5,0,0,0 +9650,11829,21577,21576,-9,-9,3,1,0,26,1,0,0,0,1,-9,2,1,0,3,7.366965629979942,7.546113531221162,0,1,0,-9,3,0,1,-29.44090825861243,0,1,1,25,1,4,1,-9,-9,2019,1,2,8,0,25,30,15,1,0,1,0,6.70636308461386,6.70636308461386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.72,60.21,5,1,0,0,11,3,0,560.5,0,0,0 +9650,11830,21578,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,5,7.56487845357344,7.416777888886494,0,3,0,0,0,-9,0,-997.5400529405981,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,30,30,15,1,0,-9,0,6.658267479178599,6.658267479178599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,6,1,0,0,11,3,0,130,0,0,0 +9651,11831,21579,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,1,1,0,4,7.790907035687812,7.878326199229425,0,3,0,0,0,-9,0,-994.6898347130342,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,44,15,1,1,-9,0,5.395358640091116,5.395358640091116,0,0,0,0,0,0,0,0,0,0,.9621328364489997,0,0,0,49,58,7,1,0,0,10,3,1,2846,0,0,0 +9652,11832,21580,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,3,8.322458097680897,8.358182428556097,0,3,0,0,0,-9,0,-948.6999775153191,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,46,46,15,1,3,-9,0,16.35044006910525,16.35044006910525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.17,59.73,4,1,0,0,10,5,0,146,0,0,0 +9652,11833,21581,-9,21580,-9,2,1,0,18,2,0,0,1,2,0,7,2,0,4,6.946566765049625,6.988179775189542,0,3,0,0,0,-9,0,-978.7510078978332,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,25,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.27,66.02,5,1,0,0,10,2,0,868,0,0,0 +9653,11834,21582,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,2,0,6.67401650807207,6.537059318704729,3,0,0,0,-9,0,-1051.530164950698,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.32220894233883,0,0,55.87,21.58,7,1,0,0,12,2,1,235,0,0,0 +9654,11835,21583,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,3,8.251763805616646,8.671638648173095,0,3,0,0,0,-9,0,-1094.543647776339,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,39,39,15,1,1,-9,0,15.98110449000842,15.98110449000842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,8,5,0,504,0,0,0 +9655,11836,21584,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,2.819724683054909,2.922618103456774,3,0,0,0,-9,0,-1159.171224210904,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.505948228074445,3.100598908156476,0,0,54.42,20.79,6,1,0,0,5,2,1,170,0,0,0 +9656,11837,21585,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,3,0,7.701211163384384,7.714115669501991,3,0,0,0,-9,0,-1061.825015965962,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.623732707196453,0,0,37.17,50.6,5,4,0,0,7,3,1,1925,0,0,0 +9657,11838,21586,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,3,0,7.225949476473414,7.129942892551388,3,0,0,0,-9,0,-951.4970603184479,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.153842124259411,0,0,55.62,32.44,6,1,0,0,9,2,0,757,0,0,0 +9658,11839,21587,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,5.945417267421151,5.784829333871953,3,0,0,0,-9,0,-1082.701569679605,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.832221377205929,0,0,38.46,33.59,4,1,0,0,5,2,1,680,0,0,0 +9659,11840,21588,21589,-9,-9,1,1,0,53,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,36,0,-4,-90.01527620595422,0,0,0,57,2,3,1,3,3,2019,3,2,21,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.31,46.76,4,3,0,0,9,4,1,1192.5,0,0,0 +9659,11840,21589,21588,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.769345964898811,8.662807582252649,0,1,0,-9,7,0,4,111.3603511262276,0,0,0,53,3,3,3,-9,-9,2019,2,1,9,0,48,48,15,1,0,3,0,13.55561534810896,13.55561534810896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,3,0,0,9,4,1,1192.5,0,0,0 +9659,11841,21590,-9,21588,21589,3,1,1,34,2,0,0,0,2,-9,2,1,0,4,8.072880041157003,8.311263645428372,0,3,0,0,0,-9,0,-1043.245942104113,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,7.121939607701266,7.121939607701266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,3,0,0,9,4,1,380,0,0,0 +9660,11842,21591,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,2,0,4.618772083089945,4.996448492134054,3,0,0,0,-9,0,-929.4064395970527,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,1.653849307045253,0,0,1,1,0,0,5.078396442069758,0,0,61.14,30.11,3,1,0,0,5,1,1,557,0,0,0 +9661,11843,21592,21593,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,6.896738640968085,6.972441282052054,1,0,-9,59,0,-1,-56.77631570757395,0,0,0,79,2,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.175346479554028,0,0,62.28,45.64,7,1,0,0,2,2,1,421.5,0,0,0 +9661,11843,21593,21592,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,6.724292204625736,6.364471739126789,1,0,-9,59,0,1,-30.84254654618484,0,0,0,78,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.57354744023923,6.796844936010098,0,0,61.14,37.95,7,1,0,0,2,2,1,421.5,0,0,0 +9662,11844,21594,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,5.887057635522025,5.636590926949339,3,0,0,0,-9,0,-891.2631751690576,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.893745433716367,0,0,66.04000000000001,36.21,7,1,0,0,13,2,1,1811,0,0,0 +9663,11845,21595,21596,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,5.818921116167115,5.690068126348585,1,0,-9,32,0,-3,-14.94258501853189,0,0,0,73,3,1,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,7.897570287675439,0,0,0,0,1,1,0,4.40818863174636,5.940002049520753,72.73065031674393,1,55.36,30.31,6,1,0,0,2,2,1,836,0,0,0 +9663,11845,21596,21595,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,32,0,3,131.177487476237,0,0,0,70,3,2,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,44.36,15.42,4,1,0,0,2,2,1,836,0,0,0 +9664,11846,21597,21598,-9,-9,2,1,1,59,1,0,0,0,3,-9,1,1,0,3,0,0,0,1,0,-9,37,0,6,-63.80620100179028,0,0,0,53,1,3,1,1,1,2019,1,1,10,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51,49,5,3,0,0,2,3,1,3385.5,0,0,0 +9664,11846,21598,21597,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.246818776500294,7.788651233958948,0,1,0,-9,37,0,-6,-18.80909495899599,0,0,0,59,3,3,1,3,3,2019,1,2,20,8,41,42,15,1,8,1,0,6.652295222026973,6.652295222026973,0,0,0,0,0,0,0,0,0,0,6.765133244073598,0,0,0,41.88,45.75,6,3,0,0,2,3,1,3385.5,0,0,0 +9664,11847,21599,-9,21598,21597,3,1,1,24,2,0,0,0,1,1,2,1,0,4,7.33412893848291,6.960636739166586,0,3,0,0,0,-9,0,-1043.474005963283,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,54,0,15,1,0,-9,1,3.52736051392352,3.52736051392352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.9,68.21000000000001,7,3,0,0,2,2,1,2376,0,0,0 +9664,11848,21600,-9,21598,21597,4,1,1,23,2,0,0,0,1,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-999.4777791696378,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,3,1,0,2,1,1,298,0,0,0 +9665,11849,21601,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-960.9882321954851,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.6121824387875,3,57.16,56.15,7,1,0,0,12,1,1,108,0,0,0 +9666,11850,21602,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,1,1,0,3,7.491821692740563,7.662847594844081,0,3,0,0,0,-9,0,-1043.552604503115,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,50,50,15,1,0,-9,0,4.387109492854354,4.387109492854354,0,0,0,0,0,0,0,0,0,0,3.157133229152733,0,0,0,41.99,53.75,4,1,0,0,10,3,1,2568,0,0,0 +9667,11851,21603,21605,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,3,8.530859016393194,8.448992118709526,0,2,0,-9,4,0,0,-81.59060896226163,0,1,0,28,2,4,1,-9,-9,2019,1,2,13,3,39,40,15,1,3,1,0,11.40289562191491,11.40289562191491,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.99,53.75,5,1,0,1,11,4,1,951.6666666666666,0,0,0 +9667,11851,21604,-9,21605,21603,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.670215819441,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,951.6666666666666,0,0,0 +9667,11851,21605,21603,-9,-9,2,1,0,28,1,1,1,0,2,-9,2,1,0,4,7.738004248513719,7.676805547494389,0,2,0,-9,4,0,0,8.058065103656849,0,1,1,28,2,3,1,-9,-9,2019,1,1,7,0,25,14,15,1,0,1,0,12.15842828562595,12.15842828562595,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.97,5,1,0,1,11,4,1,951.6666666666666,0,0,0 +9668,11852,21606,-9,21607,21608,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.0039647396154,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,6,3,1,665.25,0,0,0 +9668,11852,21607,21608,-9,-9,1,1,0,33,1,0,2,0,3,-9,6,3,0,1,0,0,0,2,0,-9,11,0,-2,86.27144664283534,0,0,1,35,2,4,1,3,3,2019,3,2,20,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.951013074169916,0,0,0,40.17,47.01,5,3,0,0,6,3,1,665.25,0,0,0 +9668,11852,21608,21607,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,4,7.835331148925273,8.368789025376346,0,2,0,-9,7,0,2,-16.06969303603952,0,0,0,33,3,1,3,-9,-9,2019,2,1,7,1,37,37,15,1,1,3,0,11.16660519690398,11.16660519690398,0,0,0,0,0,0,0,1,1,0,7.193460318944597,0,0,0,45.12,52.03,5,3,0,0,6,3,1,665.25,0,0,0 +9668,11852,21609,-9,21607,21608,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.076111927913,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,665.25,0,0,0 +9669,11853,21610,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,97,3,0,2,7.300930610077811,7.165412233829684,0,3,0,-9,0,-9,0,-965.9305205656805,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,7,32,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,54.86,4,1,0,0,2,3,1,521,0,0,0 +9670,11854,21611,21612,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,4,0,6.748521488347933,6.430264863564028,1,0,-9,8,0,5,-43.27383362523921,0,0,0,76,2,3,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.95528105960528,6.719958964730914,0,0,64.07000000000001,47.52,6,1,0,0,7,2,1,1430,0,0,0 +9670,11854,21612,21611,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-5,-51.12253052628621,0,0,0,81,1,4,3,3,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.469281622008999,0,0,0,59.07,37.52,2,1,0,0,7,2,1,1430,0,0,0 +9671,11855,21613,-9,21615,-9,2,1,1,20,2,0,1,1,2,0,7,2,0,4,6.340901951820903,6.249719453447271,0,3,0,0,0,-9,0,-957.5653934849771,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,2,1,144,0,0,0 +9671,11856,21614,21615,-9,-9,3,1,1,45,1,0,1,0,2,-9,2,1,0,4,9.032749148846595,8.675591016698506,5.985690059038122,2,0,-9,2,0,2,-70.47967135724113,0,0,0,43,2,4,1,-9,-9,2019,1,1,8,0,50,40,15,1,0,1,0,14.333494499064,14.333494499064,0,0,0,0,0,0,0,0,0,0,5.751327444242555,0,0,0,54.79,55.86,6,1,0,0,5,5,1,595.3333333333334,0,0,0 +9671,11856,21615,21614,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,4,8.393435891458893,8.592893651753041,0,2,0,-9,2,0,-2,-98.86830014569102,0,0,1,45,2,4,1,2,2,2019,1,3,4,0,45,50,15,1,0,1,0,14.24315616585903,14.24315616585903,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.37,56.01,6,1,0,0,5,5,1,595.3333333333334,0,0,0 +9671,11856,21616,-9,-9,21614,4,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-895.1661742562811,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,5,1,0,0,5,5,1,595.3333333333334,0,0,0 +9672,11857,21617,21618,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,4,8.238904656528778,8.132514354450842,0,2,0,-9,8,0,0,23.63377673259384,0,0,1,34,1,2,1,-9,-9,2019,1,2,6,0,30,30,15,1,0,1,0,16.56973208631726,16.56973208631726,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,5,1,2059.666666666667,0,0,0 +9672,11857,21618,21617,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,2,8.993431402686763,8.775902927116155,0,2,0,-9,8,0,0,48.00132849088462,0,0,0,34,2,4,1,-9,-9,2019,1,1,10,0,37,39,15,1,0,1,0,20.87551887248328,20.87551887248328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.34,54.09,5,1,0,0,2,5,1,2059.666666666667,0,0,0 +9672,11857,21619,-9,21617,21618,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.1045293434449,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,5,1,2059.666666666667,0,0,0 +9673,11858,21620,21621,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,2,7.923440249815732,7.792778945209599,0,1,0,-9,13,0,0,78.68348757808306,0,0,1,44,2,4,1,3,3,2019,1,1,8,0,37,33,15,1,0,1,0,8.265269645102139,8.265269645102139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.63,23.91,6,1,0,0,5,5,1,331,0,0,0 +9673,11858,21621,21620,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.654871658224282,8.949954490430311,0,1,0,-9,13,0,0,-71.87912418202677,0,0,0,44,2,2,1,2,2,2019,1,2,17,5,38,38,15,1,5,1,0,19.44546787673564,19.44546787673564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.19,52.17,6,1,0,0,5,5,1,331,0,0,0 +9674,11859,21622,-9,21624,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-894.5916617850141,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,1,579.3333333333334,0,0,0 +9674,11859,21623,-9,21624,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.131565579007,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,3,1,579.3333333333334,0,0,0 +9674,11859,21624,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,4,8.287195382699368,8.099465561358238,0,4,0,0,0,-9,0,-1014.892297779482,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,40,45,15,1,0,-9,0,8.229229181383886,8.229229181383886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.24,59.44,4,1,0,0,2,3,1,579.3333333333334,0,0,0 +9675,11860,21625,21626,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,5.998866791128804,5.728646777541086,1,0,-9,6,0,1,-49.0164347421325,0,0,0,83,3,3,3,2,2,2019,4,1,8,0,0,7,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.662817005801621,5.887167358935564,0,0,54.36,39.67,6,1,0,0,9,2,1,331,0,0,0 +9675,11860,21626,21625,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,6.958307090081225,6.821749377660585,1,0,-9,62,0,-1,35.22197636258252,0,0,0,84,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.982964273850008,0,1,55,45,6,1,0,0,9,2,1,331,0,0,0 +9676,11861,21627,21628,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,5.570656109021331,5.710594580523258,1,0,-9,50,0,-5,17.32095006599104,0,0,0,73,3,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.367154273581725,0,0,58.56,46.45,6,1,0,0,2,2,1,541,0,0,0 +9676,11861,21628,21627,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.540554491868269,6.631764936274455,1,0,-9,50,0,5,11.04826266809666,0,0,0,68,3,2,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.756914919807934,0,0,49.76,40.55,6,1,0,0,2,2,1,541,0,0,0 +9677,11862,21629,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-948.9583954258737,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,31,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.38,38.97,4,1,0,0,6,1,0,197,0,0,0 +9678,11863,21630,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,3,0,7.411575424374598,7.314318291616606,3,0,0,0,-9,0,-1037.041156207597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.280252240743544,0,0,0,0,0,1,1,0,0,7.554735719003101,0,0,62.93,23.48,6,1,0,0,11,3,1,219,0,0,0 +9679,11864,21631,21632,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,5,9.069532164073328,9.179743155970048,0,1,0,-9,4,0,1,-105.8471626535361,0,0,0,35,1,4,1,2,2,2019,1,2,7,0,55,50,15,1,0,1,0,24.7671818667451,24.7671818667451,0,0,0,0,0,0,0,1,1,0,2.347259198056845,0,0,0,49.76,56.93,6,1,0,0,8,5,1,852.5,0,0,0 +9679,11864,21632,21631,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,4,8.647962980071076,8.527132027091984,0,1,0,-9,4,0,-1,18.91340249823292,0,0,1,36,2,5,1,1,2,2019,1,1,8,0,33,43,15,1,0,1,0,22.49776441217744,22.49776441217744,0,0,0,0,0,0,0,1,1,0,2.988006281312783,0,0,0,46.44,59.62,6,1,0,0,8,5,1,852.5,0,0,0 +9680,11865,21633,-9,21634,21635,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.490859580191,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,5,0,754.6666666666666,0,0,0 +9680,11865,21634,21635,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,4,8.108632071560233,8.323617866673413,0,2,0,-9,9,0,-1,-5.306089422513717,0,0,1,33,1,4,1,2,2,2019,1,1,10,1,30,27,15,1,1,1,0,11.79781015697126,11.79781015697126,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,4,5,0,754.6666666666666,0,0,0 +9680,11865,21635,21634,-9,-9,1,1,1,33,1,0,1,0,1,-9,2,1,0,4,8.989618702885668,8.900341912010999,0,2,0,-9,9,0,1,29.39516295697972,0,0,0,32,2,4,1,2,2,2019,1,2,9,0,57,62,15,1,0,1,0,14.60888637546671,14.60888637546671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,0,754.6666666666666,0,0,0 +9681,11866,21636,-9,21637,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1022.847677465404,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,7,3,0,1351,0,0,0 +9681,11866,21637,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,3,7.719600389579829,8.042965535958327,6.295674292156875,4,0,0,0,-9,0,-1008.25509315761,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,33,73,15,1,0,-9,0,8.493958417862789,8.493958417862789,0,0,0,0,0,0,0,1,1,0,6.943250411347029,0,0,0,44.85,44.19,6,1,0,1,7,3,0,1351,0,0,0 +9681,11866,21638,-9,21637,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-994.6147330985518,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,7,3,0,1351,0,0,0 +9682,11867,21639,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,4,8.94034047097462,8.475002497048806,0,3,0,0,0,-9,0,-1102.776555118002,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,42,15,1,0,-9,0,24.08054798990661,24.08054798990661,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.16,56.15,5,1,0,0,8,5,0,282,0,0,0 +9683,11868,21640,21642,-9,-9,3,1,1,31,1,1,3,0,2,-9,1,1,0,4,8.461268369828467,8.37299658560511,0,2,0,-9,6,0,0,7.200487325295649,-9,0,0,31,2,3,1,-9,-9,2019,1,1,12,1,40,0,15,1,1,1,0,12.39856979304972,12.39856979304972,0,0,0,0,0,0,0,1,1,0,0,0,2.43783465211897,3,42.36,62.87,5,1,0,0,6,3,1,1183.8,0,0,0 +9683,11868,21641,-9,21642,21640,2,1,1,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-908.2478636186395,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,6,3,1,1183.8,0,0,0 +9683,11868,21642,21640,-9,-9,1,1,0,31,1,1,3,0,2,-9,2,1,0,3,7.293718159064818,7.487679952826094,5.914370050655545,2,0,-9,6,0,0,-13.83835747605371,0,0,1,31,2,4,1,2,2,2019,1,3,9,0,18,18,15,1,0,1,0,7.772277716418655,7.772277716418655,0,0,0,0,0,0,0,1,1,0,5.963319624660587,0,120.2689664687355,3,57.33,53.46,6,1,0,0,6,3,1,1183.8,0,0,0 +9683,11868,21643,-9,21642,21640,4,1,0,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.6140821558143,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,6,3,1,1183.8,0,0,0 +9683,11868,21644,-9,21642,21640,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.5191963584509,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,6,3,1,1183.8,0,0,0 +9684,11869,21645,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,1,0,6.194638615306657,6.331924506972973,3,0,0,0,-9,0,-959.9670656297736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.47512857877921,6.332293585207784,3.5819334994807,3,54.04,16.08,6,1,0,0,5,2,0,519,0,0,0 +9685,11870,21646,21647,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,9,0,9,72.80659412373073,0,0,0,61,1,3,1,2,2,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.33,27.14,5,1,0,1,8,3,1,450.5,0,0,0 +9685,11870,21647,21646,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,3,7.484577436828192,7.559508496769027,3.848820073258081,1,0,-9,9,0,0,-7.609764322621745,0,0,0,70,1,2,3,-9,-9,2019,2,1,14,2,36,40,15,1,2,4,0,6.712358271487598,6.712358271487598,0,0,0,0,0,0,0,1,1,0,0,3.856836672001149,0,3,51.28,37.38,4,1,0,0,8,3,1,450.5,0,0,0 +9686,11871,21648,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,3,0,7.406301325996549,7.116817256176532,3,0,0,0,-9,0,-1119.422434494482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.372487867919897,0,0,57.33,53.46,6,1,0,0,1,2,0,299,0,0,0 +9687,11872,21649,21650,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,3,0,5.967221466035312,6.093487571080453,1,0,-9,37,0,2,80.16949285330388,0,0,0,62,3,2,1,3,3,2019,3,2,11,0,0,21,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.448675849195846,0,0,46.57,54.66,5,3,0,0,4,2,1,535.5,0,0,0 +9687,11872,21650,21649,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,2,6.593984585884951,6.568729411583411,4.111276884218242,1,0,-9,44,0,-2,75.67534650763895,0,0,0,64,3,3,3,3,3,2019,2,1,13,1,10,23,15,1,1,4,0,8.729595430713907,8.729595430713907,0,0,0,0,0,0,0,1,1,0,0,4.6112318153554,0,0,36.03,40.6,5,3,0,0,4,2,1,535.5,0,0,0 +9688,11873,21651,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-972.5787592041706,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,45.97,41.17,6,1,0,0,10,1,0,378,0,0,0 +9689,11874,21652,21653,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.675897584912206,7.008839888614832,1,0,-9,47,0,3,-70.96726467324923,0,0,0,65,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.805633751279388,7.272382597309103,0,0,57.34,47.92,6,1,0,0,1,3,1,593,0,0,0 +9689,11874,21653,21652,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,6.230501594914179,6.452934359383333,1,0,-9,45,0,-3,4.398884135602327,0,0,0,68,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.436080215118784,0,0,57.16,56.15,6,1,0,0,1,3,1,593,0,0,0 +9690,11875,21654,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,2,0,6.345181641631768,6.372381390898604,3,0,0,0,-9,0,-1039.369005269998,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.287622408336083,0,0,60.7,18.52,5,1,0,0,11,2,1,993,0,0,0 +9691,11876,21655,21656,-9,-9,1,1,0,72,1,0,0,0,3,-9,2,1,0,3,7.363573826575432,7.521461960813569,0,1,0,-9,32,0,2,-95.01011969437452,-9,0,0,70,2,3,3,2,2,2019,2,2,12,0,20,0,15,1,0,4,0,7.642501181709705,7.642501181709705,0,0,0,0,0,0,0,1,1,0,3.977032857990124,0,0,0,41.51,56.74,4,1,0,0,7,4,1,170,0,0,0 +9691,11876,21656,21655,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.454073377482301,8.262572770710289,1,0,-9,32,0,-2,82.70197221583824,0,0,0,72,3,3,1,2,2,2019,3,1,12,0,0,30,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.890145327374839,7.531197037496808,0,0,54.94,53.18,5,1,0,0,7,4,1,170,0,0,0 +9692,11877,21657,21658,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,3,7.563619709336564,7.415247891437021,0,1,0,-9,2,0,2,41.31798212458177,0,0,0,62,1,4,1,3,3,2019,1,2,10,0,97,90,15,1,1,1,0,1.691171804562001,1.691171804562001,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,5,4,1,1112.5,0,0,0 +9692,11877,21658,21657,-9,-9,2,1,0,62,1,0,0,0,1,-9,1,1,0,4,7.432052432572522,8.054693142158692,7.351680903609455,1,0,-9,2,0,-2,12.73775234495647,0,0,0,64,3,3,1,-9,-9,2019,1,1,9,0,24,35,15,1,0,1,0,8.643515002932586,8.643515002932586,0,0,0,0,0,0,0,1,1,0,4.371712723399741,7.282167473369245,0,0,55.34,54.26,6,1,0,0,5,4,1,1112.5,0,0,0 +9693,11878,21659,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,5,9.494226013842882,9.220767920323638,0,3,0,0,0,-9,0,-941.8186698028373,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,55,15,1,0,-9,0,31.52301307079981,31.52301307079981,0,0,0,0,0,0,0,1,1,0,4.45779090526951,0,0,0,31.21,58,7,1,0,0,12,5,1,1147,0,0,0 +9694,11879,21660,21662,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,4,8.51867465624167,8.67334635061605,0,2,0,-9,30,0,3,41.39170280525223,0,0,0,51,1,3,1,3,2,2019,1,2,9,0,37,37,15,1,0,1,0,18.10983439490588,18.10983439490588,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,4,1,0,0,6,4,1,634,0,0,0 +9694,11879,21661,-9,21662,21660,4,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1016.17618727374,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,4,1,634,0,0,0 +9694,11879,21662,21660,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,3,7.950128605472999,7.95486562563283,0,2,0,-9,8,0,-3,48.28782874688947,0,0,0,54,2,4,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,7.381081618770591,7.381081618770591,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,6,1,0,0,6,4,1,634,0,0,0 +9694,11880,21663,-9,21662,21660,3,1,1,22,2,0,1,0,2,-9,2,1,0,3,7.967553063614503,7.895019990264336,0,3,0,0,0,-9,0,-943.634917230518,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,48,40,15,1,0,-9,1,5.772411054211855,5.772411054211855,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,6,3,1,237,0,0,0 +9695,11881,21664,-9,21667,21666,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.2211779264512,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,3,1,747.75,0,0,0 +9695,11881,21665,-9,21667,21666,3,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-906.4220406642966,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,24,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.41,55.83,2,1,0,0,10,3,1,747.75,0,0,0 +9695,11881,21666,21667,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.778378164388251,8.63235927867856,7.057935073445694,2,0,-9,7,0,1,105.9448373377211,0,0,0,46,1,4,3,-9,-9,2019,2,1,6,0,36,36,15,1,0,3,0,13.97257059228188,13.97257059228188,0,0,0,0,0,0,0,1,1,0,0,6.859641853714809,0,0,57.16,56.15,6,1,0,0,10,3,1,747.75,0,0,0 +9695,11881,21667,21666,-9,-9,1,1,0,46,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,26,0,-1,34.00565903826289,0,0,0,47,2,4,1,2,2,2019,3,2,12,1,0,34,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,4,1,0,0,10,3,1,747.75,0,0,0 +9696,11882,21668,21669,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,3.529643240541901,3.770290501096727,1,0,-9,8,0,4,-58.10816912722773,0,0,0,72,3,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.477064441919048,3.63177392923638,0,0,59.66,38.72,6,1,0,0,7,1,1,914.5,0,0,0 +9696,11882,21669,21668,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-4,-68.02753487849571,0,0,0,76,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.964220043814708,0,0,0,54.79,55.86,6,1,0,0,7,1,1,914.5,0,0,0 +9697,11883,21670,-9,21672,21673,1,1,0,25,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-910.8300640718096,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,0,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.543555668807088,3,62.49,55.09,7,3,1,0,6,1,0,181,0,0,0 +9697,11884,21671,-9,21672,21673,2,1,0,26,2,0,0,0,1,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-953.3060803234574,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.1,52.62,4,3,1,0,6,1,0,328,0,0,0 +9697,11885,21672,21673,-9,-9,4,1,0,62,1,0,0,0,3,-9,6,3,0,1,0,0,0,1,0,-9,31,0,4,0,0,0,0,58,3,2,3,3,3,2019,4,5,21,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.031043946557481,1,39.35,35.33,4,3,0,0,6,1,0,484.5,0,0,0 +9697,11885,21673,21672,-9,-9,5,1,1,58,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,31,0,-4,0,0,0,0,62,3,1,3,3,3,2019,4,4,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.56,35.77,4,3,0,0,6,1,0,484.5,0,0,0 +9697,11886,21674,-9,21672,21673,6,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.786906122033193,8.198959732381713,0,3,0,0,0,-9,0,-1002.856769681494,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,1,-9,1,7.521097056007418,7.521097056007418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,6,4,0,1780,0,0,0 +9697,11887,21675,-9,21672,21673,7,1,1,19,2,0,0,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-858.6297183927447,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,60,7,3,1,0,6,1,0,514,0,0,0 +9698,11888,21676,21677,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,4,8.778016123029044,8.687355118340449,0,2,0,-9,8,0,4,-96.65314262975318,0,0,1,34,2,5,1,2,2,2019,1,2,10,0,77,37,15,1,0,1,0,12.01306513865777,12.01306513865777,0,0,0,0,0,0,0,1,1,0,3.162574846214299,0,0,0,45.91,59.89,6,1,0,0,2,5,1,679.3333333333334,0,0,0 +9698,11888,21677,21676,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,5,8.506985659330486,8.421836353383544,0,2,0,-9,8,0,-4,-21.56375610278657,0,0,0,38,1,4,1,-9,-9,2019,1,1,7,0,39,36,15,1,0,1,0,15.18520509426469,15.18520509426469,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,5,1,679.3333333333334,0,0,0 +9698,11888,21678,-9,21676,21677,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.34842198141,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,679.3333333333334,0,0,0 +9699,11889,21679,21680,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,2,0,0,0,1,0,-9,7,0,-1,59.40161657760498,0,0,0,60,2,4,1,3,3,2019,1,1,9,0,35,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.37,22.3,7,1,0,0,9,3,1,460.5,0,0,0 +9699,11889,21680,21679,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.020454576868381,8.130515479105807,5.398550987505246,1,0,-9,7,0,1,62.21088160676297,0,0,0,59,2,2,1,3,3,2019,1,2,6,0,37,0,15,1,0,1,0,10.79921167930213,10.79921167930213,0,0,0,0,0,0,0,1,1,0,0,5.538470810096206,4.735886292237772,3,57.16,56.15,6,1,0,0,9,3,1,460.5,0,0,0 +9700,11890,21681,21682,-9,-9,1,1,0,30,1,0,1,0,1,-9,2,1,0,4,7.801465154507606,7.945790013511907,0,2,0,-9,8,0,0,0,0,0,1,30,2,3,1,2,3,2019,1,2,10,0,40,40,15,1,0,1,0,8.087652890825884,8.087652890825884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,5,1,0,0,4,4,1,791.3333333333334,0,0,0 +9700,11890,21682,21681,-9,-9,2,1,1,30,1,0,1,0,2,-9,2,1,0,3,7.728909789310491,8.093608119815501,0,2,0,-9,8,0,0,0,0,0,0,30,1,4,1,2,3,2019,1,1,8,0,45,44,15,1,0,1,0,7.271203770319597,7.271203770319597,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,4,4,1,791.3333333333334,0,0,0 +9700,11890,21683,-9,21681,21682,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.303442435945,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,791.3333333333334,0,0,0 +9701,11891,21684,21685,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,4,7.947481916892475,7.574005973407504,0,1,0,-9,5,0,2,79.49356822819117,-9,0,0,48,2,3,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,8.899266903920427,8.899266903920427,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,5,0,0,13,5,1,408.5,0,0,0 +9701,11891,21685,21684,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.922743731504683,8.821533311613434,0,1,0,-9,5,0,-2,12.28385432810096,0,0,0,50,3,4,1,3,3,2019,1,2,9,0,37,40,15,1,0,1,0,28.789173671806,28.789173671806,0,0,0,0,0,0,0,1,1,0,0,0,14.67727521767515,3,48.98,57.22,5,1,0,0,13,5,1,408.5,0,0,0 +9701,11892,21686,-9,21685,21684,3,1,1,23,2,0,0,0,2,-9,7,2,0,4,7.229283065063909,7.089209450300294,0,3,0,0,0,-9,0,-901.4373103988231,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,14,38,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,13,3,1,857,0,0,0 +9701,11893,21687,-9,21685,21684,4,1,1,18,3,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1089.861349970045,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,1,1,495,0,0,0 +9702,11894,21688,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-975.2326277512381,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2453243592507091,0,0,0,30.85,17.26,5,2,0,0,4,1,0,119,0,0,0 +9703,11895,21689,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,3,0,4.723138886727056,4.085579507120561,3,0,0,0,-9,0,-1043.47901390369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,20.32184803357132,0,1,1,0,4.369333342032468,4.593834506059165,0,0,54,46,6,1,0,0,13,2,1,305,0,0,0 +9704,11896,21690,21693,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,3,8.320935987059052,8.066795179267022,0,2,0,-9,8,0,-1,-195.7212874848206,0,0,1,38,1,2,1,1,1,2019,1,2,22,10,30,29,15,1,10,1,0,15.52282326957288,15.52282326957288,0,0,0,0,0,0,0,1,1,0,4.910197976848633,0,0,0,25.93,62.36,4,1,0,0,11,4,1,651.5,0,0,0 +9704,11896,21691,-9,21690,21693,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.992378700575,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,651.5,0,0,0 +9704,11896,21692,-9,21690,21693,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.83323211164,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,651.5,0,0,0 +9704,11896,21693,21690,-9,-9,2,1,1,38,1,1,2,0,1,-9,1,1,0,2,7.589690445793606,7.700765160032779,0,2,0,-9,8,0,1,76.43114657880373,0,0,0,37,1,3,1,-9,-9,2019,1,1,12,0,32,32,15,1,0,1,0,6.519986195911052,6.519986195911052,0,0,0,0,0,0,0,1,1,0,4.08978736512752,0,0,0,58.14,48.07,6,1,0,0,11,4,1,651.5,0,0,0 +9705,11897,21694,21695,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,3,0,0,0,2,0,-9,5,0,-8,-137.8119230111258,0,0,1,38,2,4,1,-9,-9,2019,1,1,13,1,0,38,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,54.74,6,1,0,0,10,3,1,501,0,0,0 +9705,11897,21695,21694,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,4,8.158218067325318,8.325215784810863,0,2,0,-9,5,0,8,-110.3720196065568,0,0,0,30,2,3,1,3,2,2019,1,2,6,0,55,61,15,1,0,1,0,9.013109739072341,9.013109739072341,0,0,0,0,0,0,0,1,1,0,8.989851762077148,0,0,0,54.2,57.49,6,1,0,0,10,3,1,501,0,0,0 +9705,11897,21696,-9,21694,21695,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-821.7596983794075,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,3,1,501,0,0,0 +9706,11898,21697,21699,-9,-9,2,1,0,31,1,1,1,0,1,-9,5,1,0,4,0,0,0,2,0,-9,6,0,-1,33.43250975677862,0,0,1,32,1,5,1,-9,-9,2019,1,1,8,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.05,60.2,6,1,0,0,9,4,1,717.3333333333334,0,0,0 +9706,11898,21698,-9,21697,21699,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-905.1531455402862,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,717.3333333333334,0,0,0 +9706,11898,21699,21697,-9,-9,1,1,1,32,1,1,1,0,1,-9,2,1,0,5,8.973801193112843,8.874932538628645,0,2,0,-9,6,0,1,67.8474904808245,0,0,0,31,1,4,1,2,2,2019,1,2,12,0,55,40,15,1,0,1,0,17.05009647915567,17.05009647915567,0,0,0,0,0,0,0,1,1,0,3.235858354514585,0,0,0,48.77,60.16,2,1,0,0,9,4,1,717.3333333333334,0,0,0 +9707,11899,21700,21701,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,3,7.353589960823638,7.589349622097976,0,1,0,-9,6,0,14,-41.55453356673602,0,0,0,46,3,4,1,-9,-9,2019,1,1,10,0,31,33,15,1,1,1,0,6.823443715343732,6.823443715343732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,0,0,11,3,0,569,0,0,0 +9707,11899,21701,21700,-9,-9,1,1,0,46,1,0,0,0,3,-9,2,1,0,4,6.634410453054366,6.39684877715491,0,1,0,-9,6,0,-14,3.842127562486831,0,0,0,60,3,3,1,3,3,2019,1,2,10,0,12,25,15,1,1,1,0,6.332938633280525,6.332938633280525,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,11,3,0,569,0,0,0 +9708,11900,21702,21703,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,2,8.056364087375378,7.989168654920205,0,1,0,-9,18,0,-5,7.973967185079914,0,0,0,62,2,1,3,3,3,2019,2,1,12,0,37,41,15,1,0,3,0,8.564192553140442,8.564192553140442,0,0,0,0,0,0,0,1,1,0,0,0,0,1,46.53,39.51,3,1,0,0,2,3,0,676.5,0,0,0 +9708,11900,21703,21702,-9,-9,1,1,1,62,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,18,0,5,41.98276840416347,0,0,0,57,3,2,1,3,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.11,24.37,2,1,0,1,2,3,0,676.5,0,0,0 +9709,11901,21704,21705,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-1,20.06750178412393,0,0,0,80,2,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.020151490030103,0,0,0,64.58,30.92,7,1,0,0,10,4,1,468.5,0,0,0 +9709,11901,21705,21704,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,8.673792509806498,8.613880142266115,1,0,-9,59,0,1,-61.54891789746821,0,0,0,79,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.206063100849949,8.493754768364751,0,0,60.29,52.11,7,1,0,0,10,4,1,468.5,0,0,0 +9710,11902,21706,21707,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,2,9.305561742626107,9.267155474344355,0,1,0,-9,12,0,1,-.4302946723036427,0,0,0,50,2,4,1,2,3,2019,1,1,16,4,45,42,15,1,4,1,0,31.0227485087111,31.0227485087111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.22,39.49,4,1,0,0,7,5,1,519.5,0,0,0 +9710,11902,21707,21706,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,4,9.017441554706643,9.329525023995688,0,1,0,-9,12,0,-1,-31.96677077396029,0,0,0,51,1,2,1,3,3,2019,1,2,9,0,40,40,15,1,1,1,0,22.68118378453141,22.68118378453141,0,0,0,0,0,0,0,0,0,0,3.297421296513315,0,0,0,53,54,6,1,0,0,7,5,1,519.5,0,0,0 +9711,11903,21708,-9,21709,21710,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.5631368180792,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,5,1,667.3333333333334,0,0,0 +9711,11903,21709,21710,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,4,8.238261789086536,8.216456249379803,0,2,0,-9,21,0,-3,-93.98453955926533,0,0,1,44,1,3,1,3,3,2019,1,2,10,0,33,33,15,1,0,1,0,14.71865684682989,14.71865684682989,0,0,0,0,0,0,0,1,1,0,2.312070218136245,0,0,0,54.2,57.49,6,3,0,0,9,5,1,667.3333333333334,0,0,0 +9711,11903,21710,21709,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,3,8.945767355978386,8.867683039870739,0,2,0,-9,21,0,3,-16.30179942697607,0,0,0,41,2,4,1,2,3,2019,1,1,13,1,49,48,15,1,1,1,0,20.685959993097,20.685959993097,0,0,0,0,0,0,0,1,1,0,7.811773640067648,0,0,0,35.36,56.72,5,3,0,0,9,5,1,667.3333333333334,0,0,0 +9712,11904,21711,-9,-9,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,3,6.356978325035041,6.434390756155643,0,3,0,0,0,-9,0,-990.6273245220203,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,20,20,15,1,0,-9,1,3.690937905839682,3.690937905839682,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,52.64,4,3,0,0,10,2,1,589,0,0,0 +9713,11905,21712,21713,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,2,8.031680406449247,8.040587285682392,0,1,0,-9,2,0,0,95.90130201803257,0,1,1,29,2,4,3,-9,-9,2019,2,1,29,12,38,38,15,1,12,3,0,10.73850863816455,10.73850863816455,0,0,0,0,0,0,0,0,0,0,0,0,2.952860751407172,3,46.12,46.77,2,1,0,0,12,5,0,348.5,0,0,0 +9713,11905,21713,21712,-9,-9,1,1,1,29,1,0,0,0,2,-9,11,3,0,4,7.95117433137885,8.38492311994491,0,1,0,-9,2,0,0,-21.18519252810403,0,1,0,29,1,2,1,2,2,2019,3,2,11,1,39,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.1,47.5,3,1,0,1,12,5,0,348.5,0,0,0 +9714,11906,21714,21715,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,3,0,6.749082300901156,6.558272596439122,1,0,-9,53,0,9,71.79077799366047,0,0,0,77,3,2,3,-9,-9,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.176087044212778,7.005880938227548,0,0,41.97,39.08,6,1,0,0,9,2,0,715.5,0,0,0 +9714,11906,21715,21714,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,6.427571075393914,6.605994935157638,1,0,-9,53,0,0,-35.73414117165141,0,0,0,86,3,3,3,3,-9,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.037776882033912,6.645208894217954,0,0,43.12,37.29,5,1,0,0,9,2,0,715.5,0,0,0 +9715,11907,21716,21717,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,3,8.698247571782893,8.274984355319681,0,1,0,-9,10,0,4,62.77867880976848,0,0,0,53,3,2,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,14.50907894521779,14.50907894521779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.91,45.35,6,1,0,0,5,4,1,357.5,0,0,0 +9715,11907,21717,21716,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,2,7.0921588307565,7.288583255881145,0,1,0,-9,10,0,-4,6.368773434070023,0,0,0,57,2,3,1,3,3,2019,1,2,11,0,19,21,15,1,0,1,0,7.691611178608257,7.691611178608257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.13,40.24,6,1,0,0,5,4,1,357.5,0,0,0 +9716,11908,21718,21719,-9,-9,2,1,0,50,1,0,0,0,2,-9,6,3,0,1,0,0,0,1,0,-9,7,0,-1,52.82209091602338,0,0,0,51,3,3,1,3,2,2019,3,1,29,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.3988802826614079,0,0,0,20.04,31.61,3,1,0,0,5,3,1,493.5,0,0,0 +9716,11908,21719,21718,-9,-9,1,1,1,51,1,0,0,0,3,-9,2,1,0,3,8.248265192880595,8.202312971050215,0,1,0,-9,7,0,1,-92.99536454933387,0,0,0,50,2,1,3,2,-9,2019,2,2,10,0,46,43,15,1,0,3,0,10.25284062506994,10.25284062506994,0,0,0,0,0,0,0,0,0,0,3.060186855500987,0,0,0,53.12,45.76,6,1,0,0,5,3,1,493.5,0,0,0 +9717,11909,21720,21722,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,3,7.940973799988207,7.933879988818636,0,2,0,-9,8,0,0,-80.15578672243878,0,0,0,36,2,3,1,-9,-9,2019,1,1,12,0,38,40,15,1,0,1,0,14.22941172590386,14.22941172590386,0,0,0,0,0,0,0,1,1,0,.6074321866071399,0,0,0,46.08,57.2,3,1,0,0,9,4,1,1144.25,0,0,0 +9717,11909,21721,-9,21722,21720,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.6397898354045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,4,1,1144.25,0,0,0 +9717,11909,21722,21720,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,3,8.142534965920996,7.986832149301899,0,2,0,-9,8,0,0,-.6584380811951198,0,0,1,36,2,3,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,13.17759825739443,13.17759825739443,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,56.66,6,1,0,0,9,4,1,1144.25,0,0,0 +9717,11909,21723,-9,21722,21720,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.624112699753,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,1144.25,0,0,0 +9718,11910,21724,21725,-9,-9,2,1,1,62,1,0,0,0,3,-9,1,1,0,3,0,0,0,1,0,-9,40,0,4,-116.1923514875714,0,0,0,58,2,3,1,3,3,2019,1,1,10,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.720156994711112,0,0,0,49.9,47.21,6,1,0,0,5,2,1,678.5,0,0,0 +9718,11910,21725,21724,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.082908061494414,7.424151415500159,3.627047805810516,1,0,-9,40,0,-4,-3.608096911277421,0,0,0,62,3,3,1,2,2,2019,1,2,8,0,22,21,15,1,0,1,0,4.973447760706199,4.973447760706199,0,0,0,0,0,0,0,0,0,0,0,3.607630170297883,0,0,54.51,50.6,6,1,0,0,5,2,1,678.5,0,0,0 +9719,11911,21726,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,3,0,4.560669565410572,4.533340123351453,3,0,0,0,-9,0,-1131.562836576878,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.683995901423406,0,0,39.26,46.73,5,1,0,0,2,2,0,120,0,0,0 +9720,11912,21727,21728,-9,-9,2,1,0,56,1,0,1,0,3,-9,2,1,0,3,7.301134811900523,6.800419302324054,0,2,0,-9,32,0,1,-8.309459512404501,0,0,0,55,3,3,1,3,2,2019,1,1,11,0,27,29,15,1,2,1,0,5.179433739832688,5.179433739832688,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.78,29.26,6,3,0,0,8,3,1,415,0,0,0 +9720,11912,21728,21727,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,3,7.630316733008527,7.877895007996123,0,2,0,-9,32,0,-1,-44.65413311237121,0,0,0,56,3,3,1,3,2,2019,1,2,10,0,48,50,15,1,0,1,0,6.51546413462817,6.51546413462817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,5,3,0,0,8,3,1,415,0,0,0 +9720,11912,21729,-9,21727,21728,4,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-848.5175387681442,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.99,53.82,7,3,0,0,8,3,1,415,0,0,0 +9720,11913,21730,-9,21727,21728,3,1,0,24,2,0,1,0,2,-9,2,1,0,3,6.942556689084052,6.853130414284128,0,3,0,0,0,-9,0,-1003.285182755066,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,35,15,1,0,-9,1,4.271420775486581,4.271420775486581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,49.46,2,3,0,0,8,2,1,126,0,0,0 +9721,11914,21731,-9,-9,-9,2,1,1,56,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-964.3360311879663,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.69065652781937,3,55.78,31.52,5,1,1,0,13,1,0,626,0,0,0 +9721,11915,21732,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1042.450689459,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.3,30.79,1,1,0,0,13,1,0,1499,0,0,0 +9722,11916,21733,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,5,8.851476864770317,8.643010561125038,0,3,0,0,0,-9,0,-1007.707616053197,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,38,15,1,0,-9,0,21.30614366905613,21.30614366905613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,12,5,1,721,0,0,0 +9723,11917,21734,-9,21735,-9,5,1,0,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1103.977094123702,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,1,0,560.25,0,0,0 +9723,11917,21735,-9,21738,-9,1,1,0,32,2,2,3,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-930.1270880534615,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.38,35.48,4,4,0,0,8,1,0,560.25,0,0,0 +9723,11917,21736,-9,21735,-9,3,1,1,11,2,2,3,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-1004.42096325727,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,8,1,0,560.25,0,0,0 +9723,11917,21737,-9,21735,-9,4,1,0,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-918.0984920025937,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,1,0,560.25,0,0,0 +9723,11918,21738,-9,-9,-9,2,1,0,68,3,2,3,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-986.1119814629965,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,19.1896218256324,0,0,0,1,1,0,0,0,0,0,50,47,5,4,0,0,8,1,0,1031,0,0,0 +9724,11919,21739,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-881.0028240126275,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89429442902452,3,38.07,15.4,3,1,0,0,12,1,0,731,0,0,0 +9724,11920,21740,-9,21739,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,5,7.657904797445704,7.580237402290081,0,3,0,0,0,-9,0,-1011.385225818552,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,48,40,15,1,0,-9,1,5.773032806904866,5.773032806904866,0,0,0,0,0,0,0,1,1,0,0,0,4.217373877139192,3,57.06,57.76,7,1,0,0,12,3,0,665,0,0,0 +9725,11921,21741,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1100.704694729001,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,5,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,4,0,0,8,1,0,1069,0,0,0 +9726,11922,21742,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,3,8.272590652402457,8.47305197138002,0,1,0,-9,11,0,5,49.58071392865711,0,0,0,-9,-9,-9,-9,2,3,2019,1,2,20,8,37,37,15,1,8,-9,0,13.29065292799566,13.29065292799566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,6,1,0,0,7,5,1,729,0,0,0 +9726,11923,21743,-9,-9,-9,2,1,1,44,2,0,0,0,1,-9,2,1,0,4,9.61797981753527,9.531979892682649,0,1,0,-9,11,0,-5,-48.53402702359664,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,12,0,70,61,15,1,0,-9,0,25.39843886601992,25.39843886601992,0,0,0,0,0,0,0,0,0,0,7.483613445850431,0,0,0,45.91,59.89,5,1,0,0,7,5,1,654,0,0,0 +9727,11924,21744,-9,21746,21745,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.2585242493769,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,746,0,0,0 +9727,11924,21745,21746,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,4,8.809478915162442,9.070752920913593,0,2,0,-9,2,0,-5,51.70391356371193,0,0,0,42,2,4,3,2,2,2019,2,2,6,0,45,40,15,1,0,3,0,17.8105016215398,17.8105016215398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,7,4,1,746,0,0,0 +9727,11924,21746,21745,-9,-9,2,1,0,42,1,1,1,0,2,-9,6,3,0,4,5.735033713691292,6.069519531216627,0,2,0,-9,2,0,5,12.72312019098452,-9,0,1,37,1,4,1,-9,2,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,7,4,1,746,0,0,0 +9728,11925,21747,21748,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.900564507365427,8.807262603186192,0,1,0,-9,35,0,-3,-15.11539191494277,0,0,0,63,1,4,1,3,3,2019,1,1,9,1,36,39,15,1,1,1,0,20.8285607037033,20.8285607037033,0,0,0,0,0,0,0,0,0,0,3.331852621985673,0,.4922754896501924,3,52,54.51,6,1,0,0,8,5,1,1079,0,0,0 +9728,11925,21748,21747,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,4,9.3910073823105,9.405488862783942,5.091182996374137,1,0,-9,35,0,3,142.7977926539148,0,0,0,60,2,3,1,2,3,2019,1,2,18,7,12,45,15,1,7,1,0,128.5207919458009,128.5207919458009,0,0,0,0,0,0,0,0,0,0,3.193923321132967,5.710850663280286,0,0,51.83,57.2,6,1,0,0,8,5,1,1079,0,0,0 +9729,11926,21749,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,2,8.261857058071151,7.868562554231062,0,3,0,0,0,-9,0,-805.8031982478883,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161117458976019,0,0,0,37.9,32.78,4,1,0,0,6,4,1,810,0,0,0 +9730,11927,21750,21751,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,7.77675235861884,7.529121467689937,0,1,0,-9,13,0,7,-65.96724765553624,0,0,0,47,1,4,1,2,2,2019,1,1,10,0,18,18,15,1,1,1,0,16.81945445829873,16.81945445829873,0,0,0,0,0,0,0,0,0,0,2.690092287302023,0,0,0,51,54,6,1,0,0,10,5,1,1106,0,0,0 +9730,11927,21751,21750,-9,-9,1,1,1,47,1,0,0,0,1,-9,1,1,0,4,9.823515203891819,9.61152094734997,0,1,0,-9,13,0,-7,-146.7057614169331,0,0,0,54,1,4,1,2,2,2019,1,2,7,0,50,50,15,1,0,1,0,33.03490650586323,33.03490650586323,0,0,0,0,0,0,0,0,0,0,5.85800963735187,0,0,0,51.83,57.2,6,1,0,0,10,5,1,1106,0,0,0 +9731,11928,21752,21753,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,6.185351953979369,5.961439439614078,1,0,-9,31,0,4,-117.80555810117,0,0,0,71,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.716047356567368,5.957629034268459,0,0,58.64,44.67,6,1,0,0,6,3,1,462.5,0,0,0 +9731,11928,21753,21752,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,7.460373845581922,7.421981648821729,1,0,-9,31,0,-4,-194.0492735278159,0,0,0,75,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.547774819591395,0,0,42.11,40.08,6,1,0,0,6,3,1,462.5,0,0,0 +9732,11929,21754,21755,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,4,8.118165467955011,8.348559086549956,0,1,0,-9,44,0,-2,-11.61479223413759,0,0,0,65,2,3,3,3,3,2019,2,1,11,1,50,48,15,1,1,4,0,9.714286525699718,9.714286525699718,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.93,54.8,6,3,0,0,5,4,0,1185,0,0,0 +9732,11929,21755,21754,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,5.106005139623445,5.014526025909603,1,0,-9,45,0,2,121.6092092868639,0,0,0,63,1,4,1,3,3,2019,3,2,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.140562504016239,0,0,53.54,38.94,6,3,0,0,5,4,0,1185,0,0,0 +9733,11930,21756,21757,-9,-9,4,1,1,32,1,0,2,0,2,-9,2,1,0,3,8.342043683235376,8.593560234327478,0,2,0,-9,1,-9,-1,-77.55604944213846,-9,0,0,33,2,4,1,-9,-9,2019,1,1,16,5,35,0,15,1,5,1,0,15.58253736231651,15.58253736231651,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.11,57.69,3,1,0,0,2,5,1,441,0,0,0 +9733,11930,21757,21756,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,8.565106028253018,8.375737211903756,0,2,0,-9,1,-9,1,-.3368531520537288,-9,0,1,32,2,3,1,-9,-9,2019,1,4,20,7,46,0,15,1,7,1,0,17.26228005168822,17.26228005168822,0,0,0,0,0,0,0,1,1,0,0,0,8.62013185528053,3,42.09,57.9,5,1,0,0,2,5,1,441,0,0,0 +9734,11931,21758,21759,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,58,0,-1,-101.005160269246,0,0,0,82,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.930557121408965,0,0,0,58.32,50.22,6,1,0,0,5,2,1,487.5,0,0,0 +9734,11931,21759,21758,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.855955098229654,7.608526672598177,1,0,-9,9,0,1,142.5521791635242,0,0,0,81,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.261237800362756,7.776197035281513,0,0,65,34.83,6,1,0,0,5,2,1,487.5,0,0,0 +9735,11932,21760,21761,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,7.900073974192598,7.464436798325522,1,0,-9,3,0,-1,123.5892770581846,0,0,0,73,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.331338568317941,7.676337940269939,0,0,60.67,42.47,6,1,0,0,11,3,1,728.5,0,0,0 +9735,11932,21761,21760,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,3,0,1,21.53267785475414,0,0,0,72,1,4,3,2,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.087518425137283,0,0,0,51,46,6,1,0,0,11,3,1,728.5,0,0,0 +9736,11933,21762,21763,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,2.817985658353918,2.476827721492746,1,0,-9,52,0,-1,-12.56636814343254,0,0,0,80,3,2,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.533998817086471,0,0,56.5,48.33,7,1,0,0,5,2,1,744,0,0,0 +9736,11933,21763,21762,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,6.660533906054123,6.587782988245115,1,0,-9,52,0,1,38.63997997147095,0,0,0,79,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.836099067055066,0,0,50.93,36.37,6,1,0,0,5,2,1,744,0,0,0 +9737,11934,21764,21765,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,3,8.926993910231245,8.946513937709085,0,1,0,-9,33,0,2,35.97989501392785,0,0,0,54,1,4,1,2,1,2019,1,2,7,0,48,55,15,1,0,1,0,18.59209338980369,18.59209338980369,0,0,0,0,0,0,0,0,0,0,4.345695825680836,0,.6366951235936678,3,55.02,46.73,2,3,0,0,8,5,1,553,0,0,0 +9737,11934,21765,21764,-9,-9,2,1,0,54,1,0,0,0,1,-9,1,1,0,4,9.403184406940744,9.431279582930225,0,1,0,-9,6,0,-2,11.42976985386021,0,0,0,56,1,3,1,1,1,2019,1,1,10,0,7,4,15,1,0,1,0,233.7354298962798,233.7354298962798,0,0,0,0,0,0,0,0,0,0,6.596273089190942,0,0,0,56.27,41.65,6,3,0,0,8,5,1,553,0,0,0 +9737,11935,21766,-9,21765,21764,3,1,1,24,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1129.789494027931,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.923374705160599,3,60.02,56.42,6,3,0,0,8,1,1,257,0,0,0 +9738,11936,21767,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,8.813466894274111,8.981153644277708,3,0,0,0,-9,0,-920.4174158739099,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.635776346278193,8.39521374034771,.6110245666520659,3,38.46,57.93,5,1,0,0,9,5,1,801,0,0,0 +9739,11937,21768,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,1,1,0,2,0,6.16769174184688,6.124115706032779,3,0,0,0,-9,0,-1032.424859786686,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,11,0,0,15,1,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.713989303817486,6.403114238981272,0,0,12.36,63.85,7,1,0,0,8,2,1,2058,0,0,0 +9740,11938,21769,21770,-9,-9,1,1,0,51,1,0,3,0,1,-9,2,1,0,4,9.572136872406229,9.810859891330386,0,2,0,-9,28,0,1,-10.92095655828607,0,0,0,50,1,4,1,-9,-9,2019,1,2,11,1,60,45,15,1,1,1,0,27.15003589080876,27.15003589080876,0,0,0,0,0,0,0,0,0,0,3.545824965024675,0,0,0,44.13,57.97,5,4,0,1,8,5,1,1406.2,0,0,0 +9740,11938,21770,21769,-9,-9,2,1,1,50,1,0,3,0,1,-9,2,1,0,4,9.574464180342572,9.484001764783073,0,2,0,-9,9,0,-1,-95.53569721081018,0,0,0,51,1,4,1,-9,-9,2019,1,1,9,0,53,53,15,1,1,1,0,27.35411919233218,27.35411919233218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,1,8,5,1,1406.2,0,0,0 +9740,11938,21771,-9,21769,21770,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.2264711639436,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,8,5,1,1406.2,0,0,0 +9740,11938,21772,-9,21769,21770,3,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-995.6337794254139,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,2,0,0,8,5,1,1406.2,0,0,0 +9740,11938,21773,-9,21769,21770,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1120.364438861945,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,5,0,0,8,5,1,1406.2,0,0,0 +9741,11939,21774,-9,21775,21776,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.2527297267549,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,3,1,813.3333333333334,0,0,0 +9741,11939,21775,21776,-9,-9,2,1,0,36,1,0,1,0,2,-9,1,1,0,5,0,0,0,2,0,-9,15,0,-4,-48.53073674844778,0,0,1,40,1,4,1,2,3,2019,1,1,6,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,1,0,0,6,3,1,813.3333333333334,0,0,0 +9741,11939,21776,21775,-9,-9,1,1,1,40,1,0,1,0,1,-9,1,1,0,4,8.548303147017972,8.558973750099685,0,2,0,-9,15,0,4,25.1321552237399,0,0,0,36,2,5,1,3,2,2019,1,2,8,0,60,60,15,1,0,1,0,10.27546329255076,10.27546329255076,0,0,0,0,0,0,0,1,1,0,6.289072022068455,0,0,0,59.77,50.77,6,1,0,0,6,3,1,813.3333333333334,0,0,0 +9742,11940,21777,21778,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,6.459721638787142,6.216976333277185,1,0,-9,9,0,-5,43.82759717870462,0,0,0,70,2,3,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.475900206287637,6.34141176602023,0,0,49.58,55.59,6,1,0,0,5,2,1,508,0,0,0 +9742,11940,21778,21777,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.217160980785036,7.146640553849705,1,0,-9,40,0,5,21.16507087740343,0,0,0,65,2,3,3,3,2,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.96506758051824,7.116281706085639,0,0,53.56,17.35,4,1,0,0,5,2,1,508,0,0,0 +9743,11941,21779,-9,-9,-9,1,1,1,72,2,0,0,0,1,-9,4,3,0,3,0,7.061980778571281,7.236198878914675,3,0,0,0,-9,0,-1009.318289402042,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.295310813927994,7.182153253081697,0,0,57.75,36.71,7,1,0,0,6,3,1,539,0,0,0 +9744,11942,21780,21782,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,3,7.1520954245146,7.020109076989312,0,2,0,-9,6,0,1,201.299443288947,0,0,1,31,2,4,1,3,3,2019,1,2,18,5,16,25,15,1,5,1,0,8.648925220224381,8.648925220224381,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.36,49.47,6,1,0,0,12,4,1,1065,0,0,0 +9744,11942,21781,-9,21780,21782,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.852669941171,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,1065,0,0,0 +9744,11942,21782,21780,-9,-9,2,1,1,31,1,0,2,0,2,-9,2,1,0,4,8.742267174596538,8.424519133088298,0,2,0,-9,6,0,-1,45.53241572928081,0,0,0,32,2,3,1,-9,-9,2019,1,1,10,0,40,46,15,1,1,1,0,17.28455366082289,17.28455366082289,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,12,4,1,1065,0,0,0 +9744,11942,21783,-9,21780,21782,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.085399673678,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,4,1,1065,0,0,0 +9745,11943,21784,-9,21788,21785,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.13144102691,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,782.8,0,0,0 +9745,11943,21785,21788,-9,-9,1,1,1,26,1,1,3,0,2,-9,2,1,0,5,7.928889768497152,7.788660007408914,0,2,0,-9,5,0,-12,-135.2001121299134,0,1,0,38,2,4,3,-9,-9,2019,2,2,9,0,45,46,15,1,0,3,0,5.400765933479581,5.400765933479581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.24,6,1,0,0,7,2,0,782.8,0,0,0 +9745,11943,21786,-9,21788,-9,4,1,1,17,2,1,3,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1003.426436136833,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,57.03,6,1,0,0,7,2,0,782.8,0,0,0 +9745,11943,21787,-9,21788,-9,3,1,0,13,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.0239400059691,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,2,0,782.8,0,0,0 +9745,11943,21788,21785,-9,-9,2,1,0,38,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,12,-30.39174026077097,0,0,1,26,2,5,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.29,52.15,6,1,0,0,7,2,0,782.8,0,0,0 +9746,11944,21789,21790,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,3,8.215811904503624,8.09347391774833,0,1,0,-9,29,0,-3,65.39655180406021,0,0,0,51,2,4,1,2,1,2019,1,2,17,5,37,37,15,1,5,1,0,11.55273354979707,11.55273354979707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.92,53.03,5,1,0,0,1,5,1,1504.5,0,0,0 +9746,11944,21790,21789,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.372184630623988,8.285362496927892,0,1,0,-9,30,0,3,-62.77909855604906,0,0,0,48,1,3,1,2,3,2019,1,1,6,0,30,30,15,1,0,1,0,18.93020480104364,18.93020480104364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.24,42.39,5,1,0,0,1,5,1,1504.5,0,0,0 +9747,11945,21791,21792,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,2,7.972898243412255,8.115633692375789,0,2,0,-9,6,0,6,60.73243114074963,0,0,0,42,1,3,3,2,3,2019,2,2,10,1,43,40,15,1,1,3,0,9.1611002421372,9.1611002421372,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.31,50.2,6,1,0,0,12,2,1,1170.75,0,0,0 +9747,11945,21792,21791,-9,-9,2,1,0,42,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-6,-8.469521659370606,0,0,1,48,2,2,1,2,3,2019,3,1,11,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,51.15,6,1,0,0,12,2,1,1170.75,0,0,0 +9747,11945,21793,-9,21792,21791,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.2590173299117,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,2,1,1170.75,0,0,0 +9747,11945,21794,-9,21792,21791,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.938578470559,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,1170.75,0,0,0 +9748,11946,21795,21796,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,3,0,7.58854627079049,6.905466228421616,1,0,-9,36,0,0,-54.94954466882597,0,0,0,83,2,4,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.035789480141059,7.51679217322691,0,0,47.22,45.94,5,1,0,0,9,3,1,867.5,0,0,0 +9748,11946,21796,21795,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,4,0,7.553866946362662,7.766353888626392,1,0,-9,36,0,9,92.48168778478242,0,0,0,74,1,3,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.92667233200518,7.875962583791581,0,0,40.76,56.64,7,1,0,0,9,3,1,867.5,0,0,0 +9749,11947,21797,21798,-9,-9,2,1,0,31,1,1,1,0,2,-9,5,1,0,3,0,0,0,2,0,-9,5,0,-2,-35.20396716690957,0,0,1,33,1,4,1,-9,-9,2019,1,1,23,11,0,45,15,1,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.39,42.93,2,3,0,1,2,3,0,330.6666666666667,0,0,0 +9749,11947,21798,21797,-9,-9,1,1,1,33,1,1,1,0,1,-9,2,1,0,4,8.317222545867377,8.170966034796253,0,2,0,-9,5,0,2,-17.94170342674309,0,0,0,31,2,3,1,3,2,2019,1,2,13,1,50,35,15,1,1,1,0,6.151678998223301,6.151678998223301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.3,53.52,2,3,0,1,2,3,0,330.6666666666667,0,0,0 +9749,11947,21799,-9,21797,21798,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-911.7116771676522,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,3,0,0,2,3,0,330.6666666666667,0,0,0 +9750,11948,21800,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1000.576762675969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,17.19116383351071,0,0,0,0,163.3437785901058,1,1,0,0,0,0,0,27.89,18.61,2,1,0,0,6,1,1,4659,0,0,0 +9751,11949,21801,21802,-9,-9,1,1,0,56,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,39,0,-1,3.258671217108452,0,0,0,57,3,3,1,3,3,2019,3,2,32,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.421664585210578,0,0,0,9.41,67.7,1,1,0,1,12,4,0,245.5,0,0,0 +9751,11949,21802,21801,-9,-9,2,1,1,57,1,0,0,0,3,-9,2,1,0,3,8.686690568837779,8.531134337727085,0,1,0,-9,7,0,1,-17.77197582449369,0,0,0,56,3,3,3,-9,-9,2019,2,1,7,0,50,40,15,1,0,3,0,10.65870901680401,10.65870901680401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,49.96,6,1,0,0,12,4,0,245.5,0,0,0 +9752,11950,21803,21804,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,4,8.184105172022191,8.226329573012526,0,1,0,-9,28,-9,-8,.7108773034536169,-9,0,0,62,3,4,1,3,3,2019,1,1,7,0,38,0,15,1,0,1,0,10.2576314273693,10.2576314273693,0,0,0,0,0,0,0,1,1,0,5.207634557531795,0,0,3,57.16,56.15,6,1,0,0,13,5,1,735.5,0,0,0 +9752,11950,21804,21803,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,4,8.175495896498905,8.992931315468699,7.68502767602799,1,0,-9,28,-9,8,99.77394866773135,-9,0,0,54,2,4,1,3,2,2019,1,2,7,0,43,0,15,1,0,1,0,10.56849086249133,10.56849086249133,0,0,0,0,0,0,0,1,1,0,7.625269119307005,7.555804160603123,0,0,57.16,56.15,6,1,0,0,13,5,1,735.5,0,0,0 +9752,11951,21805,-9,21803,21804,3,1,1,23,2,0,0,0,1,-9,2,1,0,3,8.513815008424478,8.751298318166295,0,3,0,-9,0,-9,0,-988.8671571840292,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,45,0,15,1,0,-9,1,9.764153442184464,9.764153442184464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,13,4,1,977,0,0,0 +9752,11952,21806,-9,21803,21804,4,1,0,18,2,0,0,1,2,-9,7,2,0,4,6.907187328918675,6.901436270366985,0,3,0,-9,0,-9,0,-918.1026681751217,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,1,25,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.087057470684483,0,0,0,39.5,58.86,6,1,0,0,13,2,1,1417,0,0,0 +9753,11953,21807,21808,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.439463084768017,8.823399506091054,0,1,0,-9,5,0,-10,91.22935845001749,0,0,1,42,2,3,1,-9,-9,2019,1,1,12,1,43,45,15,1,1,1,0,16.57201508986067,16.57201508986067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,5,1,0,0,9,5,1,514.5,0,0,0 +9753,11953,21808,21807,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,3,8.394086419630197,8.057587476688919,0,1,0,-9,5,0,10,-11.01302543776478,0,0,0,32,1,4,1,-9,-9,2019,1,2,8,0,35,30,15,1,0,1,0,9.531596855323523,9.531596855323523,0,0,0,0,0,0,0,0,0,0,6.837760853889392,0,0,0,46.88,49.92,6,1,0,0,9,5,1,514.5,0,0,0 +9754,11954,21809,-9,-9,-9,1,1,0,39,2,0,1,0,3,-9,2,1,0,4,6.92002514644405,7.262359150091275,0,4,0,0,0,-9,0,-975.1608231560341,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,16,16,15,1,3,-9,0,8.128040134374356,8.128040134374356,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.1,45.4,4,2,0,1,12,2,0,1005,0,0,0 +9754,11955,21810,-9,21809,-9,2,1,0,18,2,0,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-949.0520321519421,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.61,55.45,5,2,1,1,12,2,0,486,0,0,0 +9755,11956,21811,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,7.92693427459019,7.736084675945931,0,3,0,0,0,-9,0,-1011.013037902867,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,32,15,1,0,-9,0,11.45865278066595,11.45865278066595,0,0,0,0,0,0,0,0,0,0,0,0,31.86515825338902,3,48.28,60.18,6,1,0,0,9,4,1,253,0,0,0 +9756,11957,21812,21813,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,7.097771848079723,7.365806606554486,1,0,-9,59,0,-1,-30.19225932422423,0,0,0,79,3,2,3,3,1,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.991562207619467,7.465480701641302,14.49527229221758,1,59.53,56.44,6,1,0,0,5,2,1,959.5,0,0,0 +9756,11957,21813,21812,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,59,0,1,-143.101983230018,0,0,0,78,3,4,3,3,2,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,1,0,13.89919194762531,0,0,0,0,1,1,0,2.230736928596329,0,0,0,31.87,39.78,6,1,0,0,5,2,1,959.5,0,0,0 +9757,11958,21814,21816,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,2,9.231838603904576,8.857781594660489,0,2,0,-9,4,0,2,-97.34937411170425,0,0,0,44,2,3,1,3,2,2019,1,1,12,5,55,47,15,1,5,1,0,20.41149599872824,20.41149599872824,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.92,51.7,5,1,0,0,7,5,1,682,0,0,0 +9757,11958,21815,-9,21816,21814,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.781007349336,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,682,0,0,0 +9757,11958,21816,21814,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,3,7.637002724925256,7.405061252356472,0,2,0,-9,4,0,-2,-133.0459202887675,0,0,1,46,2,2,1,2,2,2019,1,2,12,0,30,30,15,1,0,1,0,6.059392179007739,6.059392179007739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,7,5,1,682,0,0,0 +9757,11958,21817,-9,21816,21814,3,1,0,16,2,0,2,1,-9,-9,7,2,0,4,3.48577823262558,3.790418372168544,0,2,0,0,0,-9,0,-898.8133314030993,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.359201598857424,0,0,0,52.77,55.33,7,1,0,0,7,5,1,682,0,0,0 +9758,11959,21818,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,5.670957854459298,5.147300641178874,3,0,0,0,-9,0,-797.5645406225349,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.275403862098915,0,0,54.05,44.62,6,1,0,0,7,2,0,1151,0,0,0 +9759,11960,21819,21820,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,4,8.613388179314153,8.392959218334418,0,1,0,-9,41,0,2,53.58760273171572,0,0,0,60,2,3,3,2,2,2019,2,2,7,0,24,24,15,1,0,4,0,31.50178802272942,31.50178802272942,0,0,0,0,0,0,0,0,0,0,3.030098502526806,0,0,0,60.12,54.8,6,1,0,0,12,5,1,884,0,0,0 +9759,11960,21820,21819,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,8.002872001304265,7.450956217208856,1,0,-9,41,0,-2,-13.42695081398972,0,0,0,62,1,4,1,1,1,2019,3,1,12,0,0,5,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.05715994378102,0,0,54.37,54.8,5,1,0,0,12,5,1,884,0,0,0 +9760,11961,21821,21822,-9,-9,1,1,1,67,1,0,1,0,1,-9,2,1,0,3,8.793110255288797,9.220242967777464,7.893335409908799,2,0,-9,9,0,2,-63.26865104151378,0,0,0,65,2,3,3,2,2,2019,2,2,23,11,37,37,15,1,11,4,0,20.4225315349143,20.4225315349143,0,0,0,0,0,0,0,1,1,0,0,8.691087862691708,0,3,34.17,57.25,3,1,0,0,4,5,1,656,0,0,0 +9760,11961,21822,21821,-9,-9,2,1,0,65,1,0,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,9,0,-2,-58.59372598492791,0,0,0,67,1,3,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.967298771399061,0,1.30744587628539,3,59.07,43.05,6,1,0,0,4,5,1,656,0,0,0 +9761,11962,21823,21824,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,5.383496208922074,5.581423644236509,1,0,-9,6,0,-6,-47.43060227865425,0,0,0,72,3,3,3,3,3,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.802841782043297,5.609524772365782,0,0,46.39,60.99,6,1,0,0,4,3,1,369.5,0,0,0 +9761,11962,21824,21823,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,7.716894711939645,7.737934949862368,1,0,-9,6,0,6,-3.756146084990049,0,0,0,66,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.274957502857175,7.701033908686628,0,0,60.05,45.35,6,1,0,0,4,3,1,369.5,0,0,0 +9762,11963,21825,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1001.331191683249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,1,5.191089868517281,0,0,0,0,73.69293996979754,1,1,0,0,0,0,0,31.47,22.31,4,1,0,0,10,1,0,275,0,0,0 +9763,11964,21826,21829,-9,-9,1,1,1,28,1,0,2,0,2,-9,2,1,0,3,8.510915312886958,8.431011202482635,0,2,0,-9,5,0,3,30.93634095381914,0,1,0,25,2,4,1,2,2,2019,1,2,11,0,42,42,15,1,0,1,0,11.82300339594955,11.82300339594955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.71,44.73,5,1,0,0,6,4,0,404.5,0,0,0 +9763,11964,21827,-9,21829,21826,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.308137844731,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,0,404.5,0,0,0 +9763,11964,21828,-9,21829,21826,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.1732994237394,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,0,404.5,0,0,0 +9763,11964,21829,21826,-9,-9,2,1,0,25,1,0,2,0,2,-9,2,1,0,4,7.680610636030387,7.927975784422598,0,2,0,-9,5,0,-3,-55.1376914391111,0,1,1,28,2,3,1,-9,-9,2019,1,1,17,4,36,36,15,1,4,1,0,7.382484679991181,7.382484679991181,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.81,59.97,6,1,0,0,6,4,0,404.5,0,0,0 +9764,11965,21830,21831,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,7,0,5,-9.558692631750755,0,0,0,63,1,2,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.85181777311292,1,65.37,25.19,5,1,0,1,12,3,1,281.5,0,0,0 +9764,11965,21831,21830,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,2,8.369358138537013,8.252227263688219,5.382352225696719,1,0,-9,45,0,-5,139.811393136424,0,0,0,68,1,4,3,3,3,2019,2,2,28,11,37,37,15,1,11,4,0,12.30843613063007,12.30843613063007,0,0,0,0,0,0,0,1,1,0,6.676227944912001,5.240665396686004,0,0,44.43,16.4,3,1,0,0,12,3,1,281.5,0,0,0 +9765,11966,21832,21833,-9,-9,2,1,0,62,1,0,0,0,2,-9,1,1,0,3,5.508822828149042,5.632786232621112,0,1,0,-9,38,0,-10,-77.01755065031161,0,0,0,72,3,2,3,3,3,2019,2,1,20,8,0,0,15,1,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.388042206607643,0,18.26648679447334,1,49.51,27.14,6,1,0,1,9,2,0,1171,0,0,0 +9765,11966,21833,21832,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,7.012152258101221,6.893507848150814,1,0,-9,38,0,10,-26.38109054071544,0,0,0,62,2,3,1,2,2,2019,3,2,21,9,0,0,15,4,9,1,0,0,0,1,0,46.11521979397263,0,0,0,0,1,1,0,0,6.522330721807798,0,0,34.79,37.08,5,1,0,0,9,2,0,1171,0,0,0 +9766,11967,21834,-9,21835,21838,4,1,1,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-962.5720979020074,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.7833474707045778,3,57.31,38.53,4,3,0,0,2,2,1,679.8,0,0,0 +9766,11967,21835,21838,-9,-9,3,1,0,36,1,0,3,0,3,-9,6,3,0,1,0,0,0,2,0,-9,19,0,-7,-7.812904422886959,0,0,1,43,3,3,1,3,2,2019,3,2,32,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.06954834751294,3,44.47,30.46,7,3,0,0,2,2,1,679.8,0,0,0 +9766,11967,21836,-9,21835,21838,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.4321498587614,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,2,2,1,679.8,0,0,0 +9766,11967,21837,-9,21835,21838,1,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.054865008713,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,2,2,1,679.8,0,0,0 +9766,11967,21838,21835,-9,-9,2,1,1,43,1,0,3,0,3,-9,2,1,0,3,7.319220265177025,7.567617346043954,0,2,0,-9,19,0,7,-23.49927860859976,0,0,0,36,3,1,3,2,3,2019,2,3,6,0,25,25,15,1,0,3,0,6.653349835611928,6.653349835611928,0,0,0,0,0,0,0,1,1,0,0,0,25.1046856466916,3,59.46,46.99,6,3,0,0,2,2,1,679.8,0,0,0 +9767,11968,21839,21841,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,3,7.941052055326664,8.032708499783977,0,2,0,-9,6,0,-4,-37.2382755636973,0,0,1,42,2,3,1,1,2,2019,1,1,13,2,43,43,15,1,2,1,0,8.822274943176279,8.822274943176279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.86,59.06,5,1,0,0,4,4,1,1097.666666666667,0,0,0 +9767,11968,21840,-9,21839,21841,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.631316043475,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,1097.666666666667,0,0,0 +9767,11968,21841,21839,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,3,8.630459534431452,8.231276372747102,0,2,0,-9,6,0,4,-20.27357748654775,0,0,0,38,2,3,1,2,1,2019,1,2,6,0,42,42,15,1,0,1,0,17.65461554189279,17.65461554189279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,4,4,1,1097.666666666667,0,0,0 +9768,11969,21842,-9,21843,21846,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.918324457023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,11,2,1,778.8,0,0,0 +9768,11969,21843,21846,-9,-9,1,1,0,47,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,13,0,0,-22.52647302253691,0,0,0,47,2,2,1,3,3,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,6,1,0,0,11,2,1,778.8,0,0,0 +9768,11969,21844,-9,21843,21846,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.5466407950755,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,5,0,0,11,2,1,778.8,0,0,0 +9768,11969,21845,-9,21843,21846,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.6769258239181,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,11,2,1,778.8,0,0,0 +9768,11969,21846,21843,-9,-9,2,1,1,47,1,0,3,0,2,-9,2,1,0,2,8.363130230548677,8.049299273672597,0,2,0,-9,13,0,0,-71.28728939220795,0,0,0,47,2,5,3,2,-9,2019,2,1,11,1,40,40,15,1,1,3,0,9.430587130714546,9.430587130714546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,44.93,2,1,0,0,11,2,1,778.8,0,0,0 +9769,11970,21847,21848,-9,-9,1,1,0,48,1,0,0,0,2,-9,1,1,0,3,5.329153910226727,5.487072868994296,0,1,0,-9,19,0,-23,-46.19923477938527,0,0,0,71,3,3,3,2,2,2019,2,2,9,0,10,10,15,1,0,4,0,1.984422927979426,1.984422927979426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.18,52.93,6,1,0,0,9,2,0,2014,0,0,0 +9769,11970,21848,21847,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,23,-152.6573244459536,0,0,0,48,2,3,1,-9,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,2,0,2014,0,0,0 +9770,11971,21849,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1153.837516857341,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,38,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.287539230676281,0,0,0,43.37,57.28,4,1,0,0,8,1,1,1107,0,0,0 +9771,11972,21850,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,2,1,0,4,8.175008775784391,8.300339766119251,0,3,0,0,0,-9,0,-995.1829406770647,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,39,39,15,1,1,-9,0,8.45465209574909,8.45465209574909,0,0,0,0,0,0,0,0,0,0,0,0,1.702166485774605,3,54.79,55.86,6,1,0,0,1,4,1,662,0,0,0 +9772,11973,21851,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,4,9.043147320911539,8.938738924929508,0,3,0,0,0,-9,0,-973.7473759757304,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,41,38,15,1,0,-9,0,22.33437927401831,22.33437927401831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,12,5,1,354,0,0,0 +9773,11974,21852,21853,-9,-9,1,1,0,65,1,0,0,0,2,-9,1,1,0,4,6.764383849502829,6.407149731770255,0,1,0,-9,41,0,-6,-51.73294248305387,0,0,0,71,2,4,1,2,2,2019,1,2,8,0,20,30,15,1,0,1,0,5.986843915905335,5.986843915905335,0,0,0,0,0,0,0,1,1,0,7.717905075599267,0,0,0,55.44,52.99,6,1,0,0,9,4,1,192.5,0,0,0 +9773,11974,21853,21852,-9,-9,2,1,1,71,1,0,0,0,2,-9,2,1,0,4,7.434733413785435,8.491325883214307,7.532121966210268,1,0,-9,41,0,6,-39.89979150647421,0,0,0,65,2,4,1,-9,2,2019,1,1,6,0,50,48,15,1,0,1,0,3.721821859261123,3.721821859261123,0,0,0,0,0,0,0,1,1,0,9.1974345958056,8.067944810987115,0,0,60.12,54.8,1,1,0,0,9,4,1,192.5,0,0,0 +9774,11975,21854,21855,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,4,7.490363875731749,7.66429142959256,0,2,0,-9,7,0,-3,11.33937418932721,0,0,0,48,2,3,1,2,2,2019,1,1,20,8,31,31,15,1,8,1,0,6.434726577729142,6.434726577729142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,5,1,0,0,12,4,1,922.3333333333334,0,0,0 +9774,11975,21855,21854,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,3,8.476637320635625,8.518503977970198,0,2,0,-9,7,0,3,-136.0060996401114,0,0,0,45,1,4,1,2,3,2019,1,2,8,0,50,40,15,1,0,1,0,10.34644110796331,10.34644110796331,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,4,1,922.3333333333334,0,0,0 +9774,11975,21856,-9,21854,21855,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.1443039038159,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,922.3333333333334,0,0,0 +9775,11976,21857,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,2,0,8.040219972981477,7.668264366850268,1,0,-9,8,0,0,-196.7398192078149,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.251483156782832,0,0,46.8,40.97,6,1,0,0,4,3,1,405,0,0,0 +9775,11977,21858,-9,-9,-9,2,1,0,63,2,0,0,0,2,-9,97,3,0,3,0,7.331314093780293,6.975219586981749,1,0,-9,8,0,0,-20.58206348638369,0,0,0,-9,-9,-9,-9,3,3,2019,4,1,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.066840292717095,7.259715365694614,0,0,63.98,38.08,7,1,0,0,4,3,1,161,0,0,0 +9776,11978,21859,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1005.789368754248,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,12,1,1,233,0,0,0 +9777,11979,21860,21861,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,6.304108429808106,6.718728227569827,1,0,-9,30,0,-3,-90.74749144304181,0,0,0,71,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.203594511172333,0,0,68.2,36.22,7,1,0,0,10,2,0,448.5,0,0,0 +9777,11979,21861,21860,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,6.976791544708735,6.912258184848533,1,0,-9,30,0,3,-108.5192650510527,0,0,0,68,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,.2952508074189004,0,0,0,0,1,1,0,0,6.498034024544972,0,0,53,47,7,1,0,0,10,2,0,448.5,0,0,0 +9778,11980,21862,21863,-9,-9,1,1,1,77,1,2,2,0,2,-9,4,3,0,2,0,0,0,2,0,-9,50,0,10,0,0,0,0,67,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,27.39878093649184,0,0,0,1,1,0,0,0,24.96555217715836,1,54.51,29.47,6,3,0,0,8,1,1,552,0,0,0 +9778,11980,21863,21862,-9,-9,2,1,0,67,1,2,2,0,3,-9,4,3,0,2,0,0,0,2,0,-9,50,0,-10,0,0,0,0,77,2,2,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,3.021411103948284,0,0,1,1,0,0,0,22.5056993987558,1,46,23.63,5,3,0,0,8,1,1,552,0,0,0 +9778,11981,21864,21866,-9,-9,4,1,0,29,1,2,2,0,1,-9,3,3,0,2,0,0,0,2,0,-9,3,0,0,-218.4650088687704,0,1,1,29,1,3,1,-9,-9,2019,3,3,14,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.12924913951316,2,43.83,37.91,3,3,1,0,8,4,1,966.75,0,0,0 +9778,11981,21865,-9,21864,21866,6,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-807.3978001081124,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,4,1,966.75,0,0,0 +9778,11981,21866,21864,21863,21862,3,1,1,29,1,2,2,0,1,-9,2,1,0,3,8.810196709281904,8.757746983525776,0,2,0,-9,3,0,0,-34.33752384047601,0,1,0,29,1,2,3,3,2,2019,2,4,19,7,35,35,15,1,7,3,0,23.84230088274633,23.84230088274633,0,0,0,0,0,0,0,1,1,0,0,0,14.25680780443099,2,44.43,56.74,4,3,0,0,8,4,1,966.75,0,0,0 +9778,11981,21867,-9,21864,21866,5,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.7974508422965,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,4,1,966.75,0,0,0 +9779,11982,21868,21869,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.834077124688794,8.090709266803181,1,0,-9,57,0,1,54.40486459669395,0,0,0,78,2,3,3,3,1,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.28214106102943,7.880498904120497,0,0,41.8,41.47,6,1,0,0,1,3,1,742.5,0,0,0 +9779,11982,21869,21868,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-1,91.90487240474957,0,0,0,79,2,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.704612669467387,0,0,0,58.07,46.29,6,1,0,0,1,3,1,742.5,0,0,0 +9780,11983,21870,-9,21871,21873,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.3649250805574,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,442.25,0,0,0 +9780,11983,21871,21873,-9,-9,2,1,0,35,1,0,2,0,1,-9,2,1,0,5,5.907268572557475,5.905414731006073,0,2,0,-9,12,0,1,114.2462675182149,0,0,1,34,1,3,1,2,2,2019,1,1,6,0,8,5,15,1,0,1,0,6.621077895616177,6.621077895616177,0,0,0,0,0,0,0,1,1,0,7.460787857897977,0,0,0,54.1,59.11,6,1,0,0,10,4,1,442.25,0,0,0 +9780,11983,21872,-9,21871,21873,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-889.3026288879041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,4,1,442.25,0,0,0 +9780,11983,21873,21871,-9,-9,1,1,1,34,1,0,2,0,1,-9,2,1,0,3,8.658145510966767,8.954911506334748,0,2,0,-9,12,0,-1,77.54430864664754,0,0,0,35,1,5,1,2,2,2019,1,2,8,0,37,44,15,1,0,1,0,18.43235513529477,18.43235513529477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.18,48.96,6,1,0,0,10,4,1,442.25,0,0,0 +9781,11984,21874,-9,21876,21877,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.9403104682822,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,8,5,1,745.4,0,0,0 +9781,11984,21875,-9,21876,21877,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1136.434754409397,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,8,5,1,745.4,0,0,0 +9781,11984,21876,21877,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,2,7.101947679332073,7.12078847980671,0,2,0,-9,19,0,0,7.441500041411028,0,0,1,41,1,3,1,2,2,2019,1,2,14,4,13,26,15,1,4,1,0,12.03637462121853,12.03637462121853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,4,3,0,0,8,5,1,745.4,0,0,0 +9781,11984,21877,21876,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,3,9.642485749295973,9.562171853481251,0,2,0,-9,19,0,0,-66.92639084793485,0,0,0,41,1,2,1,2,2,2019,1,1,14,3,50,70,15,1,3,1,0,41.23149876501009,41.23149876501009,0,0,0,0,0,0,0,0,0,0,8.030092059506853,0,0,0,38.41,50.05,5,3,0,0,8,5,1,745.4,0,0,0 +9781,11984,21878,-9,21876,21877,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.7403519934873,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,3,0,0,8,5,1,745.4,0,0,0 +9782,11985,21879,-9,-9,-9,1,1,1,50,3,0,0,0,3,-9,2,1,0,5,8.718650971599862,8.805425725063923,0,3,0,0,0,-9,0,-1087.095992595083,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,35,35,15,1,0,-9,1,19.53899758487514,19.53899758487514,0,0,0,0,0,0,0,1,1,0,0,0,0,3,59.43,58.05,7,1,0,0,1,5,1,1939,0,0,0 +9783,11986,21880,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,3,0,4.128753923340971,4.576100224014175,3,0,0,0,-9,0,-1035.463696147231,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.426165775923789,3.917842405313609,0,0,54.85,47.86,6,1,0,0,7,2,1,733,0,0,0 +9784,11987,21881,-9,-9,-9,1,1,0,19,2,0,0,0,2,-9,2,1,0,3,6.142618148342232,5.803191970458388,0,3,0,0,0,-9,0,-1006.176957220738,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,6,4,15,1,0,-9,0,6.559890831226605,6.559890831226605,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.96,55.64,4,1,0,0,1,2,0,646,0,0,0 +9785,11988,21882,21883,-9,-9,2,1,0,66,1,0,0,0,3,-9,2,1,0,3,6.746922139500225,7.084165223520689,0,1,0,-9,49,0,-1,26.05287448077656,0,0,0,67,2,2,3,3,-9,2019,2,1,9,0,24,28,15,1,0,4,0,4.481733563316876,4.481733563316876,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,4,1,0,0,1,2,1,619.5,0,0,0 +9785,11988,21883,21882,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,49,0,1,-91.65403413506759,0,0,0,66,3,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.68,42.81,7,1,0,0,1,2,1,619.5,0,0,0 +9786,11989,21884,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,7.00814000199211,6.93469782656596,3,0,0,0,-9,0,-1020.755734023825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.96430883180827,6.938633465008937,0,0,60.87,47.63,7,1,0,0,7,2,1,817,0,0,0 +9787,11990,21885,21886,-9,-9,2,1,1,61,1,0,0,0,2,-9,6,3,0,4,5.486236846729841,5.495345869765325,0,1,0,-9,32,0,-10,-2.253317890156866,0,0,0,71,1,3,3,-9,-9,2019,4,1,11,0,6,12,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8446757844276964,0,48.28926191215606,3,50.05,55.41,5,1,0,0,9,3,1,667,0,0,0 +9787,11990,21886,21885,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,3,3.703144364085999,8.070550086632068,8.188334713870125,1,0,-9,32,0,10,-106.1535540659048,0,0,0,61,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.744439207340981,7.861999733198993,49.33970876284292,3,49.12,53.02,6,1,0,0,9,3,1,667,0,0,0 +9787,11991,21887,-9,21886,21885,4,1,1,30,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-992.584922201871,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,9,1,1,1427,0,0,0 +9788,11992,21888,-9,21889,21892,6,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-807.8887540262842,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,13,5,1,709.2,0,0,0 +9788,11992,21889,21892,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,4,9.062379528447599,9.040252885972604,0,2,0,-9,1,-9,3,21.89952903524528,-9,0,1,41,1,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,23.43224578358456,23.43224578358456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,5,0,0,13,5,1,709.2,0,0,0 +9788,11992,21890,-9,21889,21892,4,1,0,17,2,0,3,1,2,-9,7,2,0,4,4.330480806137495,4.230715412432628,0,2,0,-9,0,-9,0,-943.2543196804795,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,13,5,1,709.2,0,0,0 +9788,11992,21891,-9,21889,21892,5,1,0,14,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,-9,0,-9,0,-951.0812657199943,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,13,5,1,709.2,0,0,0 +9788,11992,21892,21889,-9,-9,1,1,1,41,1,0,3,0,1,-9,2,1,0,3,8.411789128191876,8.402269001794437,0,2,0,-9,12,-9,-3,43.36401026691807,-9,0,0,44,1,4,1,2,2,2019,1,2,12,0,38,0,15,1,0,1,0,13.55388741901084,13.55388741901084,0,0,0,0,0,0,0,1,1,0,0,0,6.164904398902498,3,47.79,53.79,5,1,0,0,13,5,1,709.2,0,0,0 +9789,11993,21893,21894,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,5.175514481173535,4.97223741722675,1,0,-9,6,0,6,176.8835659697481,0,0,0,65,2,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.685503862246128,5.063070801230553,0,0,64.78,32.7,6,1,0,0,11,2,1,586,0,0,0 +9789,11993,21894,21893,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,5.012429335444053,5.419558801442584,1,0,-9,6,0,-6,-105.4766399404637,0,0,0,71,2,2,3,3,3,2019,4,1,23,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.581179606285605,5.094875364035755,0,0,42.16,57.48,7,1,0,0,11,2,1,586,0,0,0 +9790,11994,21895,21896,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,3,7.536140494884235,7.615192484861727,0,1,0,-9,7,0,-4,-41.09030021081611,0,0,0,64,2,3,3,-9,-9,2019,2,1,6,0,37,47,15,1,0,4,0,8.458322625419852,8.458322625419852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,3,0,0,2,3,1,731,0,0,0 +9790,11994,21896,21895,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,4.80260202201985,4.963504408945134,1,0,-9,40,0,4,122.2869831329667,0,0,0,60,3,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6923906452545191,5.027588804857483,0,0,64.55,33.63,6,3,0,0,2,3,1,731,0,0,0 +9790,11995,21897,-9,21895,21896,3,1,0,32,2,0,0,0,1,-9,2,1,0,3,7.819880289772692,7.875076987424023,0,3,0,0,0,-9,0,-1073.554655283811,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,15,3,37,37,15,1,3,-9,1,8.701235311211356,8.701235311211356,0,0,0,0,0,0,0,0,0,0,3.980859247066995,0,0,0,27.34,60.33,3,3,0,0,2,3,1,1047,0,0,0 +9791,11996,21898,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,4,0,6.049702056035654,6.404303476092625,3,0,0,0,-9,0,-958.4524261301457,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,28.90466673803457,1,1,0,4.535740019333393,6.452012039113229,0,0,50.32,40.49,5,1,0,0,6,2,1,342,0,0,0 +9792,11997,21899,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,3,8.889963344592358,9.118184898944341,0,3,0,0,0,-9,0,-1093.908487610441,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,0,15,1,0,-9,0,14.33575204713499,14.33575204713499,0,0,0,0,0,0,0,0,0,0,4.4357757132839,0,0,0,41.34,56.62,6,1,0,0,8,5,0,985,0,0,0 +9793,11998,21900,21901,-9,-9,2,1,1,53,1,0,2,0,1,-9,1,1,0,3,9.110884652117655,9.02227584474895,0,2,0,-9,23,0,2,37.41160172230779,0,0,0,51,1,3,1,2,1,2019,1,1,6,0,60,60,15,1,0,1,0,22.64931437290147,22.64931437290147,0,0,0,0,0,0,0,1,1,0,6.35118578703375,0,0,0,52,54.51,6,2,0,0,7,5,1,1379.333333333333,0,0,0 +9793,11998,21901,21900,-9,-9,1,1,0,51,1,0,2,0,1,-9,2,1,0,3,7.723231125071592,7.639932688169477,0,2,0,-9,23,0,-2,-89.65387415245355,0,0,0,53,1,3,1,2,2,2019,1,2,11,0,12,0,15,1,0,1,0,29.66630684607939,29.66630684607939,0,0,0,0,0,0,0,1,1,0,4.883038900073746,0,0,0,44.18,54.39,6,1,0,0,7,5,1,1379.333333333333,0,0,0 +9793,11998,21902,-9,21901,21900,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,5.651604045217812,5.529852650976636,0,2,0,0,0,-9,0,-1106.72364413125,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,2,5,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,7,5,1,1379.333333333333,0,0,0 +9794,11999,21903,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,4,8.23893178828391,8.35253473007209,0,1,0,-9,5,0,13,102.3781431350693,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,6,0,38,41,15,1,0,-9,0,13.4759160865716,13.4759160865716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,2,5,1,414,0,0,0 +9795,12000,21904,-9,21907,21905,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.413605497429,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,904.75,0,0,0 +9795,12000,21905,21907,-9,-9,1,1,1,24,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,-1,107.6628276773965,0,1,0,25,2,4,1,-9,-9,2019,3,2,16,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.85,31.17,7,1,0,0,5,2,0,904.75,0,0,0 +9795,12000,21906,-9,21907,21905,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.302422928959,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,2,0,904.75,0,0,0 +9795,12000,21907,21905,-9,-9,2,1,0,25,1,1,2,0,2,-9,2,1,0,4,7.166954149696708,7.044485120485156,0,2,0,-9,2,0,1,-32.63380798724017,0,1,1,24,2,3,3,-9,-9,2019,2,1,16,5,15,12,15,1,5,3,0,9.658054642173033,9.658054642173033,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.3,37.13,4,1,0,0,5,2,0,904.75,0,0,0 +9796,12001,21908,-9,-9,-9,1,1,0,52,3,0,1,0,3,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-986.9852799202445,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,22,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,23.36,38.59,4,3,0,0,7,1,0,985,0,0,0 +9796,12001,21909,-9,21908,-9,4,1,0,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-914.7715185339277,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.49,55.09,7,3,0,0,7,1,0,985,0,0,0 +9796,12002,21910,-9,21908,-9,2,1,1,23,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-973.8274102444797,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,23,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.36,49.1,2,3,1,0,7,1,0,323,0,0,0 +9796,12003,21911,-9,21908,-9,3,1,1,21,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-976.5616422222538,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,27,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.61,40.53,3,3,1,0,7,1,0,72,0,0,0 +9796,12004,21912,-9,21908,-9,5,1,0,27,2,0,1,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-997.2023886627636,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,57,5,3,1,0,7,1,0,202,0,0,0 +9797,12005,21913,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,7.905699094741242,8.070505093520028,3,0,0,0,-9,0,-904.7484418815163,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.538824505964799,7.788575079106718,0,0,52.99,36.14,5,1,0,0,10,3,1,318,0,0,0 +9798,12006,21914,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1053.49111884263,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6152879157642577,0,26.15950535275407,3,40.38,34.42,3,1,0,0,13,1,0,723,0,0,0 +9799,12007,21915,21916,-9,-9,2,1,0,62,1,0,0,0,1,-9,3,3,0,3,0,0,0,1,0,-9,20,0,-1,132.6391378815689,0,0,0,63,1,3,3,3,2,2019,4,1,7,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,54.26,6,1,1,0,1,2,1,446,0,0,0 +9799,12007,21916,21915,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,7.529383088042005,7.383599785931807,1,0,-9,20,0,1,-7.739981636647693,0,0,0,62,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4.170994115841188,7.657469881660944,0,0,55.36,51.57,5,1,0,0,1,2,1,446,0,0,0 +9800,12008,21917,21918,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,3,7.049174549193513,6.614086753473477,0,1,0,-9,20,0,-6,86.74609396830492,0,0,1,50,2,4,3,2,2,2019,2,2,13,1,14,0,15,1,1,3,0,10.57797711287496,10.57797711287496,0,0,0,0,0,0,0,1,1,0,0,0,75.14479142110675,1,41.24,45.79,6,1,0,0,10,2,1,232,0,0,0 +9800,12008,21918,21917,-9,-9,2,1,1,50,1,0,0,0,2,-9,8,3,1,4,5.203833337110539,5.129648582915067,0,1,0,-9,8,0,6,-7.544443305027645,0,0,0,44,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3623363923217698,0,0,0,53,55,6,1,0,0,10,2,1,232,0,0,0 +9801,12009,21919,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,3,8.111465149658548,7.753798810440728,0,3,0,0,0,-9,0,-1025.657120529576,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,28,30,15,1,4,-9,0,11.86230158521042,11.86230158521042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.35,43.19,3,1,0,0,12,4,0,2738,0,0,0 +9801,12010,21920,-9,21919,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,4,7.72624018751536,7.842985382795661,0,3,0,0,0,-9,0,-1157.986243808879,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,45,15,1,0,-9,1,7.832408638333878,7.832408638333878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.87,61.03,5,1,0,1,12,4,0,325,0,0,0 +9802,12011,21921,21922,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,43,0,0,45.39778615675495,0,0,0,70,2,3,3,3,2,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.807260450500351,0,7.318230172885321,3,41.06,62.04,6,1,0,0,2,2,1,951.5,0,0,0 +9802,12011,21922,21921,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.280573325181483,7.467688519434432,1,0,-9,44,0,9,47.68559765323428,0,0,0,61,2,4,3,3,3,2019,4,1,21,8,0,0,15,4,8,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.354140986472055,7.078842819486493,7.287804618572321,3,28.63,60,3,1,0,0,2,2,1,951.5,0,0,0 +9802,12012,21923,-9,21921,21922,3,1,1,33,2,0,0,0,2,-9,2,1,0,4,8.206571138879811,7.721131378009796,0,3,0,-9,0,-9,0,-1026.276731112322,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,55,0,15,1,0,-9,1,6.053602532923019,6.053602532923019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,2,4,1,1109,0,0,0 +9803,12013,21924,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,5.083422063145009,4.579453916925588,3,0,0,0,-9,0,-1030.280071356188,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.562409926084003,5.148010082364028,0,0,57.16,56.15,6,1,0,0,2,2,1,577,0,0,0 +9804,12014,21925,21926,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,3,6.810513370820267,6.433053506171009,0,1,0,-9,7,0,0,57.04924177241111,-9,0,0,62,1,4,1,3,3,2019,3,2,11,0,10,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,11,5,1,943,0,0,0 +9804,12014,21926,21925,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,4,8.478628819228486,8.796162768278178,7.629191534327694,1,0,-9,7,0,0,54.40265379548579,0,0,0,62,2,3,3,2,1,2019,2,1,9,1,24,23,15,1,1,4,0,21.40767126803494,21.40767126803494,0,0,0,0,0,0,0,1,1,0,7.266972254376001,7.706879465268135,0,0,46.39,52.95,6,1,0,0,11,5,1,943,0,0,0 +9805,12015,21927,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,7.811511492159826,8.281248368980402,3,0,0,0,-9,0,-947.514734767085,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.955042693886885,0,3,42.47,44.11,6,1,0,0,6,3,1,529,0,0,0 +9806,12016,21928,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,3,8.766659156721708,8.490364244810403,0,3,0,0,0,-9,0,-1000.763737112371,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,42,42,15,1,0,-9,0,14.95557441269605,14.95557441269605,0,0,0,0,0,0,0,1,1,0,.3698256841532009,0,0,0,51.81,46.85,6,1,0,0,11,5,1,473,0,0,0 +9807,12017,21929,21930,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,5,7.341709948837308,7.362597259260083,0,1,0,-9,38,0,2,0,0,0,0,56,3,3,1,-9,-9,2019,1,1,11,0,40,35,15,1,0,1,0,3.573048828898173,3.573048828898173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.24,63.73,5,1,0,0,2,3,1,1282,0,0,0 +9807,12017,21930,21929,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,3,7.245274820742266,7.003309879897208,0,1,0,-9,38,0,-2,0,0,0,0,58,2,5,1,2,2,2019,1,2,10,0,32,24,15,1,0,1,0,4.338372611092542,4.338372611092542,0,0,0,0,0,0,0,0,0,0,3.513374639410235,0,0,0,49.28,50.19,6,1,0,0,2,3,1,1282,0,0,0 +9808,12018,21931,-9,21932,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,4,8.73508014045345,8.708621453812986,0,3,0,0,0,-9,0,-959.0481684872231,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,0,15,1,0,-9,1,16.38477520602772,16.38477520602772,0,0,0,0,0,0,0,0,0,0,5.976915327723055,0,0,0,54.2,57.49,6,1,0,0,7,5,1,564,0,0,0 +9808,12019,21932,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-923.4355092593245,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,33,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44154199766919,0,0,0,48.23,48.66,6,1,0,0,7,1,1,410,0,0,0 +9809,12020,21933,-9,-9,21934,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,4.037521590862237,4.391172065956361,0,4,0,0,0,-9,0,-1053.439220302736,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,19,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,59.95,6,1,0,0,5,5,1,542.5,0,0,0 +9809,12020,21934,-9,-9,-9,1,1,1,52,3,0,1,0,1,-9,2,1,0,5,9.538890352569112,10.04190594865162,0,4,0,0,0,-9,0,-988.0321504901691,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,44,47,15,1,0,-9,0,37.55162523560538,37.55162523560538,0,0,0,0,0,0,0,0,0,0,3.699689995310963,0,0,0,51.14,60.45,1,1,0,0,5,5,1,542.5,0,0,0 +9809,12021,21935,-9,-9,21934,2,1,0,18,2,0,1,0,2,-9,2,1,0,5,6.80693179562348,7.109770122227363,0,3,0,0,0,-9,0,-942.8714304832575,0,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,12,1,35,0,15,1,1,-9,1,3.721296693746515,3.721296693746515,0,0,0,0,0,0,0,0,0,0,.1206300311762001,0,0,0,54.07,59.12,6,1,0,0,5,2,1,1203,0,0,0 +9810,12022,21936,21937,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,2,8.426711231941352,8.543550233432125,0,1,0,-9,20,-9,-5,-203.5782098020721,-9,0,1,46,2,4,1,2,3,2019,1,1,13,1,42,0,15,1,1,1,0,9.818574786659319,9.818574786659319,0,0,0,0,0,0,0,0,0,0,2.09764790460141,0,0,0,46.19,41.03,4,1,0,0,6,5,1,1630,0,0,0 +9810,12022,21937,21936,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,4,9.388609436065435,9.305412432103322,0,1,0,-9,20,-9,5,-104.9350442968413,-9,0,0,41,2,2,1,-9,-9,2019,1,2,5,0,39,0,15,1,0,1,0,41.56128080191748,41.56128080191748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,6,5,1,1630,0,0,0 +9810,12023,21938,-9,21936,21937,3,1,1,23,2,0,0,0,2,-9,2,1,0,5,8.224278349278393,8.205383053878595,0,3,0,-9,0,-9,0,-1023.771048528238,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,44,0,15,1,3,-9,1,6.584970273067965,6.584970273067965,0,0,0,0,0,0,0,0,0,0,3.511681471933993,0,0,0,51.14,60.45,3,1,0,0,6,4,1,1719,0,0,0 +9810,12024,21939,-9,21936,21937,4,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.726063320505967,7.142282917259086,0,3,0,-9,0,-9,0,-983.802022065148,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,30,0,15,1,0,-9,1,6.87286097825283,6.87286097825283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,6,1,0,0,6,3,1,503,0,0,0 +9811,12025,21940,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,3,0,5.559000922320025,5.310113908887733,3,0,0,0,-9,0,-1087.817875059139,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.274828204064812,0,0,42.7,38.44,6,1,0,0,5,2,1,437,0,0,0 +9812,12026,21941,21943,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.810385300274335,9.192910503931087,0,2,0,-9,23,0,-5,49.94278662403092,0,0,1,48,3,3,1,2,3,2019,1,1,6,1,42,39,15,1,1,1,0,25.51253106217721,25.51253106217721,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,6,1,0,0,11,4,1,883,0,0,0 +9812,12026,21942,-9,21941,21943,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-934.4499713555578,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,11,4,1,883,0,0,0 +9812,12026,21943,21941,-9,-9,1,1,1,48,1,0,2,0,3,-9,2,1,0,3,7.969704104893371,7.699286780950144,0,2,0,-9,23,0,5,-37.29712608713296,0,0,0,43,1,4,1,3,2,2019,1,2,7,0,37,0,15,1,0,1,0,8.570841608985925,8.570841608985925,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,2,1,0,0,11,4,1,883,0,0,0 +9812,12026,21944,-9,21941,21943,4,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1012.869883140315,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,11,4,1,883,0,0,0 +9813,12027,21945,-9,-9,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,3,8.064264400487536,7.908793776489484,0,3,0,-9,0,-9,0,-1048.762782096317,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,7,37,0,15,1,7,-9,1,9.367867488174175,9.367867488174175,0,0,0,0,0,0,0,1,1,0,0,0,75.59170343580352,3,36.08,60.5,5,1,0,0,1,4,1,907,0,0,0 +9813,12028,21946,-9,-9,-9,3,1,1,44,2,0,0,0,1,-9,2,1,0,3,8.661832686060036,8.442702448937583,0,3,0,-9,0,-9,0,-919.4341378672356,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,37,0,15,1,2,-9,1,19.09521648505559,19.09521648505559,0,0,0,0,0,0,0,1,1,0,3.400750682966589,0,30.93347567106778,3,42.61,54.85,6,1,0,0,1,5,1,788,0,0,0 +9814,12029,21947,21948,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,41,0,3,-50.3992549660022,0,0,0,67,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.380006524065854,0,0,0,54.2,57.49,6,1,0,0,4,3,1,690.5,0,0,0 +9814,12029,21948,21947,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.341059085718955,7.861701308589454,1,0,-9,8,0,-3,-77.72342254120466,0,0,0,70,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.187071468705935,7.615696226211634,0,0,54.96,53.17,7,1,0,0,4,3,1,690.5,0,0,0 +9815,12030,21949,21950,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,8.308849847962721,7.846875247078628,1,0,-9,6,0,4,-5.272463756138385,0,0,0,62,2,4,1,3,3,2019,3,2,6,0,0,18,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.979675463113726,7.977045708731639,0,0,51.77,58.57,6,1,0,0,13,4,1,536.5,0,0,0 +9815,12030,21950,21949,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,4,8.098657237115763,7.717228117805442,0,1,0,-9,6,0,-4,82.3933374088145,0,0,0,66,2,4,3,2,3,2019,2,1,8,0,35,32,15,1,0,4,0,7.123004116215923,7.123004116215923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.33,53.17,6,1,0,0,13,4,1,536.5,0,0,0 +9816,12031,21951,21953,-9,-9,2,1,1,56,1,0,1,0,3,-9,2,1,0,3,8.202916295181842,8.060706641262895,0,2,0,-9,1,-9,18,-38.82605787998934,-9,0,0,38,1,4,1,3,3,2019,1,1,12,0,51,0,15,1,0,1,0,5.766423798170313,5.766423798170313,0,0,0,0,0,0,0,1,1,0,.5689964133576797,0,0,0,50,49,4,1,0,0,1,4,1,590.6666666666666,0,0,0 +9816,12031,21952,-9,21953,21951,3,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1089.74923683074,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,1,4,1,590.6666666666666,0,0,0 +9816,12031,21953,21951,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,4,8.505360454927921,8.481380383262977,0,2,0,-9,12,-9,-18,17.5881878821301,-9,0,1,56,3,3,1,2,2,2019,1,2,7,0,34,0,15,1,0,1,0,17.29863002811051,17.29863002811051,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,7,1,0,0,1,4,1,590.6666666666666,0,0,0 +9817,12032,21954,21955,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,63,0,-5,-127.5360564811358,0,0,0,85,3,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,27.34129081588485,126.9601850632643,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,4,2,1,2731.5,0,0,0 +9817,12032,21955,21954,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,4,0,7.035065598197727,7.262917776171003,1,0,-9,63,0,5,68.53168984181934,0,0,0,80,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.525718809627209,6.885381326872514,111.8536540211442,1,57.16,56.15,7,1,0,0,4,2,1,2731.5,0,0,0 +9818,12033,21956,21957,-9,-9,2,1,0,63,1,0,0,0,1,-9,1,1,0,4,7.695892968737903,7.771495805434443,5.913361952739232,1,0,-9,6,0,-7,108.4904798994125,0,0,0,70,1,4,3,-9,-9,2019,2,1,6,0,20,25,15,1,0,4,0,11.00059982746235,11.00059982746235,0,0,0,0,0,0,0,1,1,0,3.615684899746255,5.802138454354733,0,0,49.95,56.68,6,1,0,0,6,5,1,1101,0,0,0 +9818,12033,21957,21956,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,8.82459419463904,9.188176462110338,7.828915903896227,1,0,-9,6,0,7,-54.06389008355597,0,0,0,63,1,4,1,2,2,2019,3,2,6,0,30,15,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.811418990701613,8.234358000638874,0,0,57.16,56.15,6,1,0,0,6,5,1,1101,0,0,0 +9819,12034,21958,-9,21961,21960,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.8021449120238,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1187,0,0,0 +9819,12034,21959,-9,21961,21960,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.799006707139,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1187,0,0,0 +9819,12034,21960,21961,-9,-9,1,1,1,39,1,0,2,0,1,-9,1,1,0,4,9.50802858408264,9.376366921965856,0,2,0,-9,15,0,0,44.83732321932578,0,0,0,39,1,4,1,2,2,2019,1,2,11,2,50,47,15,1,2,1,0,26.08789834571503,26.08789834571503,0,0,0,0,0,0,0,0,0,0,3.763209783483302,0,0,0,52.23,55.6,6,1,0,0,9,5,1,1187,0,0,0 +9819,12034,21961,21960,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,4,8.736026112585193,8.300478161962541,0,2,0,-9,15,0,0,-41.35650464159568,0,0,1,39,1,4,1,1,1,2019,1,1,7,0,28,29,15,1,0,1,0,16.46852507194512,16.46852507194512,0,0,0,0,0,0,0,0,0,0,3.119248339536899,0,0,0,54.2,57.49,7,1,0,0,9,5,1,1187,0,0,0 +9820,12035,21962,21963,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.378174081644582,8.242017705008069,0,1,0,-9,10,0,2,-12.66187482994332,0,0,0,57,1,3,1,2,2,2019,1,2,11,0,37,34,15,1,0,1,0,10.46346528322239,10.46346528322239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,49.39,5,1,0,0,9,5,1,592,0,0,0 +9820,12035,21963,21962,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.482946052065211,8.763316245373364,0,1,0,-9,10,0,-2,4.470621793798353,0,0,0,59,2,3,1,2,1,2019,1,1,5,0,38,60,15,1,0,1,0,15.58304810776291,15.58304810776291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.54,42.36,6,1,0,0,9,5,1,592,0,0,0 +9821,12036,21964,21965,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,41,0,-3,-6.14834499715921,0,0,0,75,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,12.53809800041453,0,0,0,0,1,1,0,0,0,0,0,37.64,38.46,6,1,0,0,13,2,1,378,0,0,0 +9821,12036,21965,21964,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,5.501454480867122,5.153317973412264,1,0,-9,41,0,3,76.16828041624233,0,0,0,72,3,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.592463092663728,5.196931763384394,10.84897711864118,3,60.12,54.8,7,1,0,0,13,2,1,378,0,0,0 +9822,12037,21966,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,5,9.229214120202322,9.463185327436621,0,3,0,0,0,-9,0,-946.7771603181727,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,52,15,1,0,-9,0,21.25105714264733,21.25105714264733,0,0,0,0,0,0,0,1,1,0,2.293335180732734,0,0,0,49.02,58.89,6,1,0,0,7,5,1,942,0,0,0 +9823,12038,21967,21968,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,3,7.524951241590987,7.816074178165933,0,1,0,-9,22,0,1,8.483092131651869,-9,0,0,52,3,3,1,-9,-9,2019,1,2,15,3,40,0,15,1,3,1,0,6.820813490780081,6.820813490780081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.18,49.28,4,1,0,0,10,4,0,1353,0,0,0 +9823,12038,21968,21967,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,3,7.902554850474228,8.02811112133671,0,1,0,-9,22,0,-1,87.68804685280533,0,0,0,53,3,3,1,-9,-9,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,4,1,0,0,10,4,0,1353,0,0,0 +9823,12039,21969,-9,21968,21967,3,1,1,30,2,0,0,0,3,-9,1,1,0,3,8.138669741905026,7.536164835435745,0,3,0,0,0,-9,0,-1101.463586795444,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,45,0,15,1,0,-9,1,6.886324902084317,6.886324902084317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.13,51.34,4,1,0,0,10,3,0,358,0,0,0 +9823,12040,21970,-9,21968,21967,4,1,1,24,2,0,0,0,2,-9,7,2,0,4,7.177223652895681,7.137156889696614,0,3,0,0,0,-9,0,-1088.421403000311,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,35,45,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,10,3,0,413,0,0,0 +9823,12041,21971,-9,21968,21967,5,1,1,33,2,0,0,0,3,-9,2,1,0,3,8.863196959925112,9.50231923259418,0,3,0,0,0,-9,0,-1121.886737563491,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,39,0,15,1,4,-9,1,25.40594124929617,25.40594124929617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.63,56.7,5,1,0,0,10,5,0,1373,0,0,0 +9824,12042,21972,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,2,8.142658208725642,8.51729707997524,5.406296391038718,3,0,0,0,-9,0,-1028.973518452007,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,0,13.17175423949794,13.17175423949794,0,0,0,0,0,0,0,1,1,0,5.830311576522351,5.561430149210263,0,0,55.81,36.7,4,1,0,0,6,4,1,200,0,0,0 +9825,12043,21973,21974,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,7.826667431440509,7.998038466308187,1,0,-9,41,0,6,16.90739500215265,0,0,0,57,2,4,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.784823334443363,8.256526712393862,0,0,56.57,57.78,6,1,0,0,4,4,1,752.5,0,0,0 +9825,12043,21974,21973,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.738683424956813,7.63365452007635,0,1,0,-9,41,0,-6,10.30556682968672,0,0,0,63,1,4,3,3,2,2019,2,1,10,0,23,23,15,1,0,4,0,11.61893241171345,11.61893241171345,0,0,0,0,0,0,0,0,0,0,4.258960698268133,0,0,0,51.83,57.2,7,1,0,0,4,4,1,752.5,0,0,0 +9826,12044,21975,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,1,1,0,4,8.607910616473189,9.053827487754871,0,3,0,0,0,-9,0,-1047.460429903889,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,50,50,15,1,0,-9,0,14.82404589374717,14.82404589374717,0,0,0,0,0,0,0,0,0,0,3.451218870697049,0,0,0,44.98,57.48,6,1,0,0,9,5,1,925,0,0,0 +9827,12045,21976,21978,-9,-9,2,1,1,50,1,0,3,0,2,-9,8,3,1,1,0,0,0,2,0,-9,4,0,8,0,0,0,0,42,2,4,3,-9,-9,2019,4,1,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.36,12.12,2,3,0,0,4,1,1,559,0,0,0 +9827,12045,21977,-9,21978,21976,3,1,0,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1048.876560905392,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.59,54.25,7,3,0,0,4,1,1,559,0,0,0 +9827,12045,21978,21976,-9,-9,1,1,0,42,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,19,0,-8,0,0,0,1,50,2,1,3,3,2,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,111.5889044959778,1,57.16,56.15,5,3,0,0,4,1,1,559,0,0,0 +9827,12045,21979,-9,21978,21976,4,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1159.747237700692,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,1,1,559,0,0,0 +9827,12045,21980,-9,21978,21976,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.4998264975741,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,4,1,1,559,0,0,0 +9828,12046,21981,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,2,1,0,3,8.398476822442472,8.381033554658655,0,3,0,0,0,-9,0,-934.7273907253766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,47,81,15,1,9,-9,0,13.04588017706702,13.04588017706702,0,0,0,0,0,0,0,0,0,0,0,0,5.058206916794937,3,26.78,53.92,3,1,0,0,12,5,1,160,0,0,0 +9829,12047,21982,-9,-9,-9,1,1,0,91,2,0,0,0,2,-9,4,3,0,3,0,6.733483345822268,6.543762691471708,3,0,0,0,-9,0,-972.4580399202939,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.51867335977875,6.952729833701633,0,0,55,43,6,1,0,0,9,2,1,103,0,0,0 +9829,12048,21983,-9,-9,-9,2,1,1,89,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-885.2601789727719,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.601660753164147,0,0,0,56,44,6,1,0,0,9,1,1,637,0,0,0 +9830,12049,21984,21986,-9,-9,2,1,1,34,1,0,2,0,1,-9,2,1,0,4,8.272608583144891,8.547194674353928,0,2,0,-9,7,0,2,23.83309833293794,0,0,0,32,2,4,1,2,2,2019,1,1,11,0,37,37,15,1,0,1,0,18.09480793259328,18.09480793259328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,58.8,6,1,0,0,9,4,0,685.75,0,0,0 +9830,12049,21985,-9,21986,21984,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1144.189308106488,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,685.75,0,0,0 +9830,12049,21986,21984,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,4,8.227246473452249,7.977224910540775,0,2,0,-9,11,0,-2,143.1650484827303,0,0,1,34,1,4,1,2,2,2019,1,2,5,0,38,40,15,1,0,1,0,9.80707767273978,9.80707767273978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,0,685.75,0,0,0 +9830,12049,21987,-9,21986,21984,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.781623225689,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,4,0,685.75,0,0,0 +9831,12050,21988,21989,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,4,9.35758038775691,9.112768679835805,0,2,0,-9,9,0,-10,-43.85299670878381,0,0,0,56,1,4,1,2,2,2019,1,2,8,0,39,38,15,1,0,1,0,43.47862611949606,43.47862611949606,0,0,0,0,0,0,0,0,0,0,1.457446525994,0,0,0,51.83,57.2,6,1,0,0,8,5,1,723.25,0,0,0 +9831,12050,21989,21988,-9,-9,2,1,1,56,1,0,2,0,1,-9,2,1,0,4,9.37846522345207,9.408009378157836,0,2,0,-9,9,0,10,3.364922794321273,0,0,0,46,1,4,1,3,3,2019,1,1,11,0,30,40,15,1,0,1,0,40.38306816776523,40.38306816776523,0,0,0,0,0,0,0,0,0,0,7.611825915516119,0,0,0,57.16,56.15,6,1,0,0,8,5,1,723.25,0,0,0 +9831,12050,21990,-9,21988,21989,3,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1050.276623615222,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,1,0,0,8,5,1,723.25,0,0,0 +9831,12050,21991,-9,21988,21989,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.4165798363737,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,723.25,0,0,0 +9832,12051,21992,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-972.1947030856434,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.871267251848,3,43.1,36.84,5,1,0,0,9,1,0,795,0,0,0 +9832,12051,21993,-9,21992,-9,3,1,0,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-948.4536446088746,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,5,0,0,9,1,0,795,0,0,0 +9833,12052,21994,21995,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,2,-49.7105958131221,0,0,0,67,3,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.54163295185027,0,0,0,52,48,5,1,0,0,4,2,1,425.5,0,0,0 +9833,12052,21995,21994,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,6.209833566297266,5.689602690664021,1,0,-9,50,0,-2,-79.58821461171415,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.07169223982858,5.657318897640672,0,0,51.24,58.84,6,1,0,0,4,2,1,425.5,0,0,0 +9833,12053,21996,-9,21995,21994,3,1,1,34,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-974.0847659605621,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.72308208548718,0,0,0,46.5,51.63,6,1,1,0,4,1,1,423,0,0,0 +9834,12054,21997,21998,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,4,8.59742691754713,9.06805116730964,4.380720776139864,1,0,-9,6,0,-1,97.67121350930411,0,0,0,64,1,4,1,-9,-9,2019,1,1,8,0,45,45,15,1,0,1,0,15.41866321775788,15.41866321775788,0,0,0,0,0,0,0,0,0,0,7.75923227813917,5.301445390641778,0,0,57.16,56.15,7,1,0,0,5,5,1,461.5,0,0,0 +9834,12054,21998,21997,-9,-9,1,1,0,64,1,0,0,0,1,-9,2,1,0,4,6.44100060293112,8.380247706207953,7.985469668721237,1,0,-9,6,0,1,114.5435870815681,0,0,0,63,2,4,1,1,1,2019,1,2,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.538859073812619,8.179392192939263,0,0,52.23,55.6,6,1,0,0,5,5,1,461.5,0,0,0 +9835,12055,21999,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,2,1,0,2,8.632785712922058,9.12491595775731,7.404530753821764,3,0,0,0,-9,0,-1118.759101279462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,16,30,15,1,2,-9,0,44.77376877295829,44.77376877295829,0,0,0,0,0,0,0,1,1,0,3.887729789525829,7.5404751610805,0,0,50.68,28.49,6,1,0,0,12,5,1,403,0,0,0 +9836,12056,22000,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,4,3,0,2,0,6.191606236332934,6.427493806091197,3,0,0,0,-9,0,-957.5046937045352,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.054580426251682,40.42152828119174,3,26.61,40.62,1,1,0,1,11,2,0,696,0,0,0 +9836,12057,22001,-9,22000,-9,2,1,1,36,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-938.3980663510461,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.24,37.99,2,1,0,1,11,1,0,1487,0,0,0 +9837,12058,22002,22003,-9,-9,2,1,1,59,1,0,0,0,1,-9,1,1,0,4,7.925734225294122,7.622873612666361,0,1,0,-9,7,0,0,19.28558306210242,0,0,0,59,1,4,1,3,3,2019,1,1,7,0,9,40,15,1,0,1,0,46.41152429618808,46.41152429618808,0,0,0,0,0,0,0,0,0,0,6.872822095620703,0,0,0,57.16,56.15,7,1,0,0,9,4,1,1131,0,0,0 +9837,12058,22003,22002,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,4,7.424708681593913,7.25847552021535,0,1,0,-9,7,0,0,-97.23827830918806,0,0,0,59,1,4,1,3,3,2019,1,2,6,0,21,20,15,1,0,1,0,11.18563888562138,11.18563888562138,0,0,0,0,0,0,0,0,0,0,8.311815363031286,0,0,0,54.2,57.49,7,1,0,0,9,4,1,1131,0,0,0 +9838,12059,22004,22005,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,2,8.611504895328157,8.556066107748746,0,1,0,1,1,-9,-5,-10.85313725127875,0,0,1,37,2,4,1,2,-9,2019,1,2,10,2,42,44,15,1,2,1,0,12.60966161103651,12.60966161103651,0,0,0,0,0,0,0,0,0,0,1.453351061949616,0,0,0,55.84,31.4,6,1,0,0,9,5,1,441,0,0,0 +9838,12059,22005,22004,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,4,8.662405952264201,9.033511795508176,0,1,0,-9,1,-9,5,72.24079673862933,-9,0,0,32,1,2,1,-9,-9,2019,1,1,11,1,52,0,15,1,1,1,0,17.74047205506255,17.74047205506255,0,0,0,0,0,0,0,0,0,0,4.880696205919037,0,0,0,50.91,44.05,5,1,0,0,9,5,1,441,0,0,0 +9839,12060,22006,22007,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.949019199256366,8.738339389475366,0,2,0,-9,9,0,-1,37.72542947738288,0,0,0,37,1,4,1,-9,-9,2019,1,1,9,0,40,39,15,1,0,1,0,16.99749362983918,16.99749362983918,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.05,55.95,6,1,0,0,2,5,1,250,0,0,0 +9839,12060,22007,22006,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,4,8.741250997320819,8.740890676571958,0,2,0,-9,9,0,1,-11.18184579849143,0,0,1,36,2,4,1,2,1,2019,1,2,7,0,40,37,15,1,0,1,0,17.3146958685932,17.3146958685932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,1,0,0,2,5,1,250,0,0,0 +9839,12060,22008,-9,22007,22006,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.136482861454,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,250,0,0,0 +9840,12061,22009,22010,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.373073553180541,8.526026499124951,0,1,0,-9,15,0,-1,-57.31854347497811,0,0,0,53,2,5,1,2,2,2019,1,1,10,1,45,44,15,1,1,1,0,13.65935220795697,13.65935220795697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,6,5,1,860,0,0,0 +9840,12061,22010,22009,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,7.987972126530202,8.009270334568773,0,1,0,-9,15,0,1,57.94772556270465,0,0,0,52,2,4,1,3,3,2019,1,2,9,0,34,33,15,1,0,1,0,9.351000284824885,9.351000284824885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,56,5,1,0,0,6,5,1,860,0,0,0 +9841,12062,22011,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1115.944165382251,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,73.28694261651928,0,1,1,0,.4818124066480476,0,0,0,52,44,6,1,0,0,10,1,0,278,0,0,0 +9841,12063,22012,-9,-9,-9,2,1,1,49,2,0,0,0,2,-9,2,1,0,3,8.479342539920992,8.651373922270901,0,3,0,0,0,-9,0,-1059.535900258991,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,3,36,45,15,1,3,-9,0,14.81544130213499,14.81544130213499,0,0,0,0,0,0,0,1,1,0,1.915737410712186,0,66.8092350461084,3,49.52,56.95,3,1,0,0,10,4,0,675,0,0,0 +9842,12064,22013,-9,22016,22015,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.670545987536,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,263.5,0,0,0 +9842,12064,22014,-9,22016,22015,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.389783820371,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,263.5,0,0,0 +9842,12064,22015,22016,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.303715723520591,8.475926053694719,0,2,0,-9,18,0,5,98.62400392174467,0,0,0,42,1,4,1,2,2,2019,1,2,7,0,53,47,15,1,0,1,0,10.72080626349211,10.72080626349211,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,1,5,1,263.5,0,0,0 +9842,12064,22016,22015,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,9.02482468513179,8.871682583998133,0,2,0,-9,20,0,-5,-73.34456833421004,0,0,1,47,2,3,1,2,3,2019,1,1,14,3,53,48,15,1,3,1,0,15.48982605881309,15.48982605881309,0,0,0,0,0,0,0,1,1,0,2.833394338522752,0,0,0,46.98,59.35,6,1,0,0,1,5,1,263.5,0,0,0 +9843,12065,22017,22018,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,4,6.838773390929586,6.635062448411411,0,1,0,-9,17,0,-1,-3.041712151092618,0,0,0,63,2,4,1,3,3,2019,1,1,6,0,47,21,15,1,0,1,0,2.808723142539371,2.808723142539371,0,0,0,0,0,0,0,1,1,0,3.214239636803784,0,0,0,62.11,48.33,6,5,0,0,8,3,1,544,0,0,0 +9843,12065,22018,22017,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,4,7.012600365562721,6.953917477298532,0,1,0,-9,17,0,1,-.5732633119936293,0,0,0,62,1,4,1,-9,-9,2019,1,2,8,0,11,9,15,1,0,1,0,11.05222502950279,11.05222502950279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,8,3,1,544,0,0,0 +9843,12066,22019,-9,22018,22017,3,1,0,20,2,0,0,0,2,1,2,1,0,3,5.94929783748732,5.979626724544945,0,3,0,0,0,-9,0,-932.6930061078132,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,9,1,47,0,15,1,1,-9,1,1.000549692606506,1.000549692606506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,6,1,0,0,8,2,1,377,0,0,0 +9844,12067,22020,-9,-9,22021,11,1,1,2,2,1,6,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-979.5545617493067,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,2,2,1,1350,0,0,0 +9844,12067,22021,-9,-9,-9,1,1,1,27,2,1,6,0,2,-9,1,1,0,2,7.157713350710468,7.050888653115797,0,3,0,0,0,-9,0,-945.570660494688,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,20,19,15,1,0,-9,1,6.671381416419295,6.671381416419295,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.86,51.77,6,3,0,0,2,2,1,1350,0,0,0 +9845,12068,22022,22023,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-2,0,0,0,0,87,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,112.6414852271262,1,52,45,6,5,0,0,8,1,0,197,0,0,0 +9845,12068,22023,22022,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,2,0,0,0,0,85,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,9.639992682958438,129.0089486115533,0,0,0,63.59959440703513,1,1,0,0,0,0,0,54,45,6,5,0,0,8,1,0,197,0,0,0 +9846,12069,22024,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,3,7.121790328329261,7.35823366313222,0,3,0,0,0,-9,0,-1102.891850381284,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,30,0,15,1,3,-9,0,7.158573542136087,7.158573542136087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,36.47,3,1,0,1,9,3,1,1141,0,0,0 +9847,12070,22025,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-991.8724006457551,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,33.71,33.2,6,1,0,0,9,1,1,2364,0,0,0 +9848,12071,22026,22027,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.635762100991974,7.788734463947358,1,0,-9,26,0,-2,-89.46479614114173,0,0,0,69,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.560987957775555,7.589826699119939,0,0,57.16,56.15,6,1,0,0,7,3,1,431,0,0,0 +9848,12071,22027,22026,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,30,0,2,16.0334749380229,0,0,0,67,2,4,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.454608212814653,0,0,0,58.07,46.16,7,1,0,0,7,3,1,431,0,0,0 +9849,12072,22028,-9,-9,-9,1,1,0,84,2,0,0,0,2,-9,4,3,0,4,0,8.532408661912431,8.779741463625127,3,0,0,0,-9,0,-848.5710098202468,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.387632158682332,8.619876601980136,0,0,55.93,44.39,6,1,0,0,11,5,1,3048,0,0,0 +9850,12073,22029,22030,-9,-9,2,1,0,63,1,0,0,0,3,-9,2,1,0,4,7.016562782830139,6.826129646760323,0,1,0,-9,47,0,-3,-41.46864145006668,0,0,0,66,3,3,3,3,3,2019,2,1,10,0,16,16,15,1,0,4,0,8.425487761901158,8.425487761901158,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.42,48.36,5,1,0,0,4,2,1,555,0,0,0 +9850,12073,22030,22029,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,5.110380757863336,4.772607778029758,1,0,-9,45,0,3,-7.464459545252599,0,0,0,63,3,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.047328597714344,0,0,52,48,1,1,0,0,4,2,1,555,0,0,0 +9851,12074,22031,22032,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,7.517051919396573,7.476054187869453,1,0,-9,10,0,5,3.417592563863152,0,0,0,58,2,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.07250796551132,7.529091678450127,0,0,57.33,53.46,6,1,0,0,13,3,1,763.5,0,0,0 +9851,12074,22032,22031,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.229911294395864,7.107101359028593,0,1,0,-9,10,0,-5,55.19760333158435,0,0,0,63,1,3,3,3,3,2019,2,1,6,0,18,20,15,1,0,4,0,8.839763678228005,8.839763678228005,0,0,0,0,0,0,0,0,0,0,6.097859889454921,0,0,0,60.29,52.11,6,1,0,0,13,3,1,763.5,0,0,0 +9851,12075,22033,-9,22032,22031,3,1,0,23,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1004.777764090101,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,1,13,1,1,527,0,0,0 +9852,12076,22034,-9,22035,22036,3,1,1,16,2,0,3,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-800.5678073977318,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.17,50.96,6,1,0,0,1,2,0,418.8,0,0,0 +9852,12076,22035,22036,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,3,8.012906246258359,8.143744616016679,0,2,0,-9,9,0,-1,-110.0059651840296,0,0,1,36,2,2,3,2,2,2019,2,2,9,0,37,25,15,1,0,3,0,8.330208076209981,8.330208076209981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,46.58,6,1,0,0,1,2,0,418.8,0,0,0 +9852,12076,22036,22035,-9,-9,2,1,1,36,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,9,0,1,85.80038880200162,0,0,0,35,2,3,1,2,2,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.89,41.69,4,1,1,0,1,2,0,418.8,0,0,0 +9852,12076,22037,-9,22035,22036,4,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1035.559391236307,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,1,2,0,418.8,0,0,0 +9852,12076,22038,-9,22035,22036,5,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-940.3394072403826,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,1,2,0,418.8,0,0,0 +9853,12077,22039,22040,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.420533986245671,8.582202075975108,0,1,0,-9,24,0,-3,-20.36947402121831,0,0,0,60,1,5,3,3,3,2019,2,1,9,0,30,50,15,1,0,4,0,20.53809413333132,20.53809413333132,0,0,0,0,0,0,0,0,0,0,6.394777236109526,0,5.478282555331979,3,38,62.48,6,1,0,0,10,5,1,486,0,0,0 +9853,12077,22040,22039,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,5,0,8.066271398278976,8.003847825980433,1,0,-9,24,0,3,-82.33516541630951,0,0,0,57,1,4,1,2,1,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592077406894203,8.020629683520536,0,0,48.42,60.53,6,1,0,0,10,5,1,486,0,0,0 +9854,12078,22041,22042,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,5,8.394709468896743,8.215520379816777,0,1,0,-9,1,-9,0,88.29731953310531,-9,0,1,31,2,5,2,-9,-9,2019,2,1,7,0,37,0,15,1,0,2,0,13.81667975137518,13.81667975137518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,4,3,1,623,0,0,0 +9854,12078,22042,22041,-9,-9,1,1,1,31,1,0,0,0,2,0,7,2,0,5,0,0,0,1,0,1,1,-9,0,-13.95413182175153,-9,0,0,31,1,5,1,-9,-9,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,7,1,0,0,4,3,1,623,0,0,0 +9855,12079,22043,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,1,0,5.608912241829388,4.980219130306212,3,0,0,0,-9,0,-894.6638164026257,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,2.27706503773731,0,0,0,5.858298477386207,7.088336351231654,1,1,0,4.252714850430912,5.430859660668257,0,0,45.12,17.85,6,1,0,0,13,2,1,531,0,0,0 +9856,12080,22044,22045,-9,-9,2,1,0,40,1,0,1,0,3,-9,2,1,0,2,7.022918981207442,6.751367661985846,0,2,0,-9,4,0,-8,20.43201044068723,0,0,1,48,3,2,3,-9,-9,2019,2,1,18,6,25,20,15,1,6,3,0,5.87136172945234,5.87136172945234,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.64,48.16,4,1,0,0,6,2,0,1031.666666666667,0,0,0 +9856,12080,22045,22044,-9,-9,1,1,1,48,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,4,0,8,-24.79383102882842,0,0,0,40,3,2,1,2,2,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.04682947033378,1,46.71,51.84,4,1,0,0,6,2,0,1031.666666666667,0,0,0 +9856,12080,22046,-9,22044,22045,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.5903623337257,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,2,0,1031.666666666667,0,0,0 +9857,12081,22047,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.486222918466336,8.121925959373069,0,3,0,-9,0,-9,0,-888.1326170335753,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,0,15,1,0,-9,0,8.055398221129463,8.055398221129463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,59.2,5,1,0,0,11,4,0,192,0,0,0 +9858,12082,22048,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.132453755848979,7.269052714032203,0,3,0,0,0,-9,0,-1031.180963576756,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,16,20,15,1,0,-9,0,10.88751204515594,10.88751204515594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.77,56.48,6,1,0,0,12,2,0,1262,0,0,0 +9859,12083,22049,-9,-9,-9,1,1,0,44,3,0,1,0,1,-9,2,1,0,3,8.223812915539419,8.529122486795094,0,4,0,0,0,-9,0,-1040.347667882186,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,34,35,15,1,0,-9,0,16.17699715949002,16.17699715949002,0,0,0,0,0,0,0,1,1,0,3.371895831110567,0,0,0,44.51,40.48,4,1,0,0,6,4,1,252,0,0,0 +9859,12083,22050,-9,22049,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1054.650196066374,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,6,4,1,252,0,0,0 +9860,12084,22051,22052,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,5,7.742113779193617,7.576128890858659,0,2,0,-9,8,0,-7,-66.1221876381412,0,0,1,45,2,4,1,2,2,2019,1,2,5,0,30,30,15,1,0,1,0,8.729889323862034,8.729889323862034,0,0,0,0,0,0,0,1,1,0,3.103653654129815,0,0,0,57.06,57.76,6,1,0,0,12,5,1,777.6666666666666,0,0,0 +9860,12084,22052,22051,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.773635627653938,8.880623544314995,0,2,0,-9,8,0,7,-136.3947154344991,0,0,0,38,2,5,1,2,2,2019,1,1,10,0,45,46,15,1,0,1,0,14.29869792496307,14.29869792496307,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.52,55.06,5,1,0,0,12,5,1,777.6666666666666,0,0,0 +9860,12084,22053,-9,22051,22052,4,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.527032967897,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,5,1,777.6666666666666,0,0,0 +9861,12085,22054,22056,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,2,7.821256726055879,7.990804373818682,0,2,0,-9,9,0,9,-23.69906081148778,0,0,0,40,1,5,1,-9,-9,2019,1,1,11,0,25,25,15,1,0,1,0,12.07694143520994,12.07694143520994,0,0,0,0,0,0,0,1,1,0,7.495735112232774,0,0,0,53.38,41.98,6,1,0,0,2,4,1,513.75,0,0,0 +9861,12085,22055,-9,22056,22054,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.5857447528891,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,513.75,0,0,0 +9861,12085,22056,22054,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,5,8.439934331609981,8.975938662583292,5.944011041145354,2,0,-9,9,0,0,-4.145473642825012,0,0,1,49,1,2,1,2,2,2019,1,2,7,0,37,38,15,1,0,1,0,16.03583173763087,16.03583173763087,0,0,0,0,0,0,0,1,1,0,5.851987797805193,0,0,0,55.2,57.22,6,1,0,0,2,4,1,513.75,0,0,0 +9861,12085,22057,-9,22056,22054,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.3618414379662,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,513.75,0,0,0 +9862,12086,22058,-9,-9,-9,1,1,1,85,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1070.600127604433,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,1,4.695915877819301,0,0,0,0,30.83819155871021,1,1,0,0,0,0,0,42.45,12.16,6,1,0,0,13,1,1,678,0,0,0 +9863,12087,22059,22062,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,4,8.066905946416195,7.646699153394025,0,2,0,-9,13,0,3,-34.14985906601883,0,0,0,39,1,4,1,2,2,2019,1,2,8,0,44,47,15,1,0,1,0,8.837013509964816,8.837013509964816,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.38,44.32,6,4,0,0,8,4,0,1411,0,0,0 +9863,12087,22060,-9,22062,22059,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.1998856887018,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,4,0,1411,0,0,0 +9863,12087,22061,-9,22062,22059,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.024854946274,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,8,4,0,1411,0,0,0 +9863,12087,22062,22059,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,4,8.01724965146815,8.247614252633232,0,2,0,-9,13,0,-3,52.67782603064354,0,0,1,42,1,4,1,1,1,2019,1,1,9,0,30,30,15,1,0,1,0,11.09697078998682,11.09697078998682,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,4,0,0,8,4,0,1411,0,0,0 +9864,12088,22063,22064,-9,-9,1,1,1,62,1,0,0,0,3,-9,3,3,0,3,0,6.625216911013839,7.224759377471089,1,0,-9,40,0,2,-69.81815270204932,0,0,0,60,3,1,1,3,3,2019,3,2,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.648662804395962,0,0,46.33,55.93,5,1,1,0,13,2,1,1169,0,0,0 +9864,12088,22064,22063,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,1,7.062022375213311,6.568613736529437,0,1,0,-9,40,0,-2,-63.09829425821421,0,0,0,62,3,3,3,3,3,2019,2,1,19,6,16,15,15,1,6,3,0,6.76550448957015,6.76550448957015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.97,18.82,5,1,0,0,13,2,1,1169,0,0,0 +9865,12089,22065,22066,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,5,7.899428229823686,7.94533894156731,0,2,0,-9,6,0,-1,29.19887799312318,0,0,1,36,1,3,1,2,2,2019,1,3,6,0,18,45,15,1,0,1,0,19.96739708316361,19.96739708316361,0,0,0,0,0,0,0,1,1,0,5.167437586468928,0,0,0,54.69,57.47,7,1,0,0,6,4,1,1080.5,0,0,0 +9865,12089,22066,22065,-9,-9,3,1,1,36,1,1,2,0,1,-9,2,1,0,3,8.681833482761796,8.490026459144085,0,2,0,-9,6,0,1,-84.51150103393465,0,0,0,35,1,5,1,-9,-9,2019,1,1,16,4,37,43,15,1,4,1,0,17.62705011803827,17.62705011803827,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.63,49.72,6,1,0,0,6,4,1,1080.5,0,0,0 +9865,12089,22067,-9,22065,-9,2,1,1,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.851424496718,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,4,1,1080.5,0,0,0 +9865,12089,22068,-9,22065,22066,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.5521383860249,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,1080.5,0,0,0 +9866,12090,22069,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,7.519673114156002,7.412118220964716,3,0,0,0,-9,0,-865.9489719317143,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.509605759508148,7.783004821949209,0,0,48.87,58.55,6,1,0,0,1,3,1,1183,0,0,0 +9867,12091,22070,22071,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.482431518067816,8.453955567673439,0,1,0,-9,3,0,0,-136.0745883188749,0,0,1,32,1,4,1,1,1,2019,1,2,12,0,47,50,15,1,0,1,0,12.40686099656698,12.40686099656698,0,0,0,0,0,0,0,0,0,0,6.734026934334966,0,0,0,21.41,64.66,3,1,0,0,8,5,1,930.5,0,0,0 +9867,12091,22071,22070,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.816787033092202,9.128286501535644,0,1,0,-9,3,0,0,-11.03256021929466,0,0,0,32,1,4,1,-9,-9,2019,1,1,4,0,75,65,15,1,0,1,0,9.966888016732446,9.966888016732446,0,0,0,0,0,0,0,0,0,0,3.613690251096497,0,0,0,59.29,49.68,6,2,0,0,8,5,1,930.5,0,0,0 +9868,12092,22072,22073,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,5,0,4.433622630022928,4.32131741808224,1,0,-9,40,0,-2,121.4455649686485,0,0,0,62,1,3,1,-9,-9,2019,3,1,21,9,0,0,15,4,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.164842736972185,4.532729935871478,.5499215685815382,3,32.35,56.92,5,1,0,0,2,5,1,336,0,0,0 +9868,12092,22073,22072,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,3,9.037755396528189,9.410043166907828,8.336181896098381,1,0,-9,40,0,2,106.9351829520156,0,0,0,60,2,5,3,2,3,2019,2,2,12,3,0,30,15,1,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.880022176929549,8.711230343164676,0,0,51.57,37.05,6,1,0,0,2,5,1,336,0,0,0 +9869,12093,22074,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,3,0,5.061987885075546,5.038464195709425,3,0,0,0,-9,0,-957.0712555417066,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.228101221742238,4.903132530321463,0,0,57.33,53.46,6,1,0,0,11,2,1,3053,0,0,0 +9870,12094,22075,22076,-9,-9,1,1,0,58,1,0,0,0,2,-9,8,3,1,1,0,4.168411450861297,4.357303454730422,1,0,-9,30,0,4,-65.3593140705687,0,0,0,54,1,4,1,3,3,2019,3,2,36,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.174501915926371,4.785050063490608,0,0,32.14,23.63,1,1,0,0,1,5,1,521.5,0,0,0 +9870,12094,22076,22075,-9,-9,2,1,1,54,1,0,0,0,1,-9,1,1,0,4,8.753821309282058,9.158189890051618,0,1,0,-9,30,0,-4,-61.68107140415451,0,0,0,58,2,1,3,3,2,2019,2,1,9,0,60,60,15,1,0,3,0,19.7826570322196,19.7826570322196,0,0,0,0,0,0,0,1,0,1,5.934116157918296,0,0,1,60.12,54.8,7,1,0,0,1,5,1,521.5,0,0,0 +9871,12095,22077,22078,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,1,0,7.324107033606116,7.567829282253706,1,0,-9,3,0,-2,-54.40429852987861,0,0,0,71,1,1,3,3,3,2019,4,1,27,9,0,0,15,4,9,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.393081098144011,7.973948854893459,0,0,16.04,23.99,1,1,0,0,5,3,1,534.5,0,0,0 +9871,12095,22078,22077,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,1,0,6.806933779027771,6.803472102655956,1,0,-9,32,0,2,133.0181436558829,0,0,0,69,2,1,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.223748377837678,7.035936250503294,0,0,63.73,20.95,5,1,0,0,5,3,1,534.5,0,0,0 +9872,12096,22079,22080,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,5,8.666630278421222,8.362685234389669,6.725241225242675,1,0,-9,7,0,-4,-26.48820145283146,0,0,0,34,1,3,1,1,2,2019,1,2,13,1,46,46,15,1,1,1,0,17.01650929486672,17.01650929486672,0,0,0,0,0,0,0,0,0,0,6.760221440445776,0,0,0,51.71,58.83,6,1,0,0,9,5,1,521.5,0,0,0 +9872,12096,22080,22079,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,3,8.918735707603174,8.719096019718528,0,1,0,-9,7,0,4,28.65903492774638,0,0,1,30,1,5,1,-9,-9,2019,1,1,12,2,38,38,15,1,2,1,0,20.30202176940611,20.30202176940611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.15,48.96,6,1,0,0,9,5,1,521.5,0,0,0 +9873,12097,22081,22082,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,3,6.860053596700521,7.345739660937693,0,1,0,-9,8,0,3,-168.1378586827634,0,0,0,56,2,3,3,3,2,2019,2,1,15,3,45,40,15,1,3,3,0,3.721447647379422,3.721447647379422,0,0,0,0,0,0,0,0,0,0,0,0,0,3,47.32,52.7,5,1,0,1,11,2,1,212,0,0,0 +9873,12097,22082,22081,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,3,4.687286791085401,4.906010202516992,0,1,0,-9,8,0,-3,17.04889513501681,0,0,0,59,2,3,1,3,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907719929690843,0,0,0,40.66,52.94,5,1,0,0,11,2,1,212,0,0,0 +9874,12098,22083,22084,-9,-9,2,1,1,47,1,0,3,0,3,-9,2,1,0,4,7.497900908861972,7.525198777576637,0,2,0,-9,21,0,5,-4.612717679240618,0,0,0,42,3,4,3,3,3,2019,2,1,9,0,36,24,15,1,1,3,0,5.367773455909619,5.367773455909619,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,55,6,3,0,0,8,2,0,1154.5,0,0,0 +9874,12098,22084,22083,-9,-9,1,1,0,42,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,21,0,-5,127.8417477175534,0,0,1,47,3,4,1,3,3,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,2,0,1154.5,0,0,0 +9874,12098,22085,-9,22084,22083,5,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-957.5774307398067,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,1154.5,0,0,0 +9874,12098,22086,-9,22084,22083,6,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1065.157945719548,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,3,0,0,8,2,0,1154.5,0,0,0 +9874,12099,22087,-9,22084,22083,3,1,0,19,2,0,3,1,2,0,7,2,0,4,6.840979474096347,6.831179237272259,0,3,0,0,0,-9,0,-1025.851301330318,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,15,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,223,0,0,0 +9874,12100,22088,-9,22084,22083,4,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-926.6281844226901,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,2,0,787,0,0,0 +9875,12101,22089,-9,22091,22090,3,1,0,19,2,1,2,0,2,1,6,3,0,3,6.538638937827371,6.829602292857286,6.511297364428935,3,0,0,0,-9,0,-1002.253612345493,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,4,13,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.639224058524654,0,19.93614723415119,3,25.56,58.54,3,1,0,0,2,2,1,1281,0,0,0 +9875,12102,22090,22091,-9,-9,4,1,1,52,1,1,2,0,2,-9,2,1,0,4,8.251030772222588,7.928063324169215,0,2,0,-9,2,0,8,59.69935475835665,0,0,0,44,1,4,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,9.682508862170698,9.682508862170698,0,0,0,0,0,0,0,1,1,0,0,0,9.06335462017403,3,49.27,56.95,6,1,0,0,2,4,1,807,0,0,0 +9875,12102,22091,22090,-9,-9,1,1,0,44,1,1,2,0,1,-9,2,1,0,4,8.161665702525323,7.91217941484349,0,2,0,-9,2,0,-8,35.25500250182044,0,0,1,52,2,4,1,2,2,2019,1,4,11,0,38,38,15,1,0,1,0,9.883592343118069,9.883592343118069,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.86,55.31,6,1,0,0,2,4,1,807,0,0,0 +9875,12102,22092,-9,22091,22090,5,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.1211341433711,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,807,0,0,0 +9876,12103,22093,22094,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,2,1.156799267786724,.8699161338910865,0,1,0,-9,24,0,2,-72.49923096064971,0,0,0,57,1,4,1,2,2,2019,1,1,10,0,30,25,15,1,0,1,0,.0081096709606939,.0081096709606939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.76,43.08,4,1,0,0,9,4,1,268,0,0,0 +9876,12103,22094,22093,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.824142540806298,8.549966751243094,0,1,0,-9,25,0,-2,107.5662535874527,0,0,0,59,2,2,1,2,2,2019,1,2,9,0,40,100,15,1,0,1,0,16.12842389741322,16.12842389741322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,0,0,9,4,1,268,0,0,0 +9876,12104,22095,-9,22093,22094,3,1,1,22,2,0,0,0,1,1,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1064.089956069221,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,15,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,5,1,0,0,9,1,1,412,0,0,0 +9877,12105,22096,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,6.056839063327375,5.882417690662824,3,0,0,0,-9,0,-887.8040871852072,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.034014881019249,0,0,58.22,30.23,6,1,0,0,5,2,1,410,0,0,0 +9878,12106,22097,22100,-9,-9,1,1,1,30,1,1,2,0,2,-9,2,1,0,3,8.366507272320355,8.58584646671164,0,2,0,-9,11,0,-1,-109.8033941969373,0,0,0,31,2,3,1,1,1,2019,1,2,11,0,37,37,15,1,0,1,0,12.45703049108317,12.45703049108317,0,0,0,0,0,0,0,1,1,0,3.282468401985765,0,2.571225634326079,3,50.63,50.99,5,1,0,0,9,3,1,305.5,0,0,0 +9878,12106,22098,-9,22100,22097,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-854.9918715143849,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,1,305.5,0,0,0 +9878,12106,22099,-9,22100,22097,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.933481551709,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,1,305.5,0,0,0 +9878,12106,22100,22097,-9,-9,2,1,0,31,1,1,2,0,2,-9,5,1,0,3,0,0,0,2,0,-9,11,0,1,3.008297784441153,0,0,1,30,2,3,1,2,2,2019,1,1,11,0,0,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.611203332239675,3,49.04,55.86,6,1,0,0,9,3,1,305.5,0,0,0 +9879,12107,22101,-9,-9,-9,1,1,0,50,3,0,2,0,2,-9,2,1,0,3,7.913050439051342,8.16495023227116,7.566750244046137,4,0,0,0,-9,0,-1120.899345928766,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,37,37,15,1,2,-9,0,11.53801219837364,11.53801219837364,0,0,0,0,0,0,0,1,1,0,7.828909726608797,0,0,0,36.78,46.67,4,1,0,1,5,3,1,295.5,0,0,0 +9879,12107,22102,-9,22101,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1114.800850692164,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.76,64.84999999999999,5,1,0,0,5,3,1,295.5,0,0,0 +9880,12108,22103,22105,-9,-9,4,1,1,36,1,0,4,0,2,-9,2,1,0,5,8.509260731343769,8.670761199597235,0,2,0,-9,7,0,1,6.289407237095004,0,0,0,35,2,2,3,-9,-9,2019,2,1,5,0,50,68,15,1,0,3,0,15.43575040961444,15.43575040961444,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,9,3,0,1048,0,0,0 +9880,12108,22104,-9,22105,22103,5,1,1,16,2,0,4,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-956.1186273970527,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.29,55.84,7,1,0,0,9,3,0,1048,0,0,0 +9880,12108,22105,22103,-9,-9,1,1,0,35,1,0,4,0,2,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-1,-14.6684463451623,0,0,1,36,2,5,1,3,2,2019,3,4,22,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.500399705053066,3,30.91,51.14,3,1,0,0,9,3,0,1048,0,0,0 +9880,12108,22106,-9,22105,22103,6,1,0,15,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-837.9798384421682,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,1,0,0,9,3,0,1048,0,0,0 +9880,12108,22107,-9,22105,22103,2,1,1,15,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1028.676239915283,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,9,3,0,1048,0,0,0 +9880,12108,22108,-9,22105,22103,3,1,0,14,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1096.420451082541,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,3,0,1048,0,0,0 +9881,12109,22109,22110,-9,-9,2,1,1,54,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,18,0,11,-88.24767715194832,0,0,0,43,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.28,50.19,6,1,0,0,11,3,1,709.5,0,0,0 +9881,12109,22110,22109,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.665092763884591,8.796385549942821,0,2,0,-9,18,0,-11,33.87057077652304,0,0,1,54,2,3,3,3,3,2019,2,2,8,0,60,41,15,1,0,3,0,10.13963781802419,10.13963781802419,0,0,0,0,0,0,0,1,1,0,2.870244646695931,0,4.191789142307323,3,49,55,6,1,0,0,11,3,1,709.5,0,0,0 +9882,12110,22111,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,3,8.511724813759511,8.753845437065696,0,3,0,0,0,-9,0,-1045.916900700809,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,43,40,15,1,0,-9,0,11.78426395092845,11.78426395092845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.87,53.19,6,1,0,0,2,4,0,180,0,0,0 +9883,12111,22112,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,7,2,0,4,7.483056340439361,7.230488249065971,0,3,0,0,0,-9,0,-933.6280979084133,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,5,3,0,647,0,0,0 +9883,12112,22113,22114,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,4,8.306285541135155,8.340893843181705,0,1,0,-9,1,-9,4,80.43856773242088,-9,0,0,29,2,4,1,-9,-9,2019,1,3,10,0,50,0,15,1,1,1,0,10.51055964226224,10.51055964226224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,5,0,0,5,5,0,604,0,0,0 +9883,12112,22114,22113,-9,-9,3,1,0,29,1,0,0,0,2,-9,2,1,0,4,8.132582197845366,7.936623134165936,0,1,0,-9,1,-9,-4,25.11707520639004,-9,1,1,33,2,4,1,-9,-9,2019,1,2,11,0,40,0,15,1,2,1,0,9.641060005143439,9.641060005143439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,5,0,0,5,5,0,604,0,0,0 +9884,12113,22115,22116,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,4.982542178353946,5.823746099792942,4.942749431209085,1,0,-9,1,-9,-1,53.76633067185554,-9,0,0,72,3,1,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.998520592367138,4.900035548510952,0,0,53,47,6,1,0,0,11,2,1,361,0,0,0 +9884,12113,22116,22115,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,1,-9,1,37.18028559652342,-9,0,0,71,3,3,3,3,3,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.31342909836548,1,41.88,25.43,3,1,0,1,11,2,1,361,0,0,0 +9885,12114,22117,22118,-9,-9,1,1,0,22,1,0,0,1,1,0,7,2,0,2,0,0,0,1,0,-9,6,0,-4,0,-9,1,1,26,2,2,3,-9,-9,2019,4,2,10,1,0,0,15,2,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.96,38.67,3,1,0,1,6,1,0,1125.5,0,0,0 +9885,12114,22118,22117,-9,-9,2,1,1,26,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,6,0,4,0,0,1,0,22,1,2,2,-9,-9,2019,4,1,13,1,0,0,15,3,1,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.21,50.82,6,1,1,1,6,1,0,1125.5,0,0,0 +9886,12115,22119,22120,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.718182265393102,8.520404688162662,0,1,0,-9,3,0,-10,-22.32757561295786,0,1,1,36,2,4,1,1,1,2019,1,2,12,0,37,37,15,1,0,1,0,21.35520549486401,21.35520549486401,0,0,0,0,0,0,0,0,0,0,3.01244088160403,0,0,0,51.24,58.84,6,1,0,0,11,5,1,517.5,0,0,0 +9886,12115,22120,22119,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,4,8.140017610620299,8.2065192643836,0,1,0,-9,3,0,10,32.78905669470965,-9,0,0,26,1,4,1,-9,-9,2019,1,1,10,0,9,0,15,1,0,1,0,45.83361455552426,45.83361455552426,0,0,0,0,0,0,0,0,0,0,1.436059453836595,0,0,0,44.19,56.73,6,1,0,0,11,5,1,517.5,0,0,0 +9887,12116,22121,-9,22123,22122,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.2562342860884,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,5,1,1137.25,0,0,0 +9887,12116,22122,22123,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,4,9.16072325840798,9.300911657856888,0,2,0,-9,5,0,-3,24.00736858581291,0,0,0,41,1,5,1,2,3,2019,1,1,8,0,48,70,15,1,0,1,0,26.10528258313902,26.10528258313902,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,1,1137.25,0,0,0 +9887,12116,22123,22122,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,8.079435441749816,7.625534511737175,0,2,0,-9,5,0,3,43.44543611961684,0,0,1,38,1,4,1,1,2,2019,1,2,5,0,22,17,15,1,0,1,0,15.66404653127422,15.66404653127422,0,0,0,0,0,0,0,1,1,0,1.433589457222238,0,0,0,61.19,42.1,6,1,0,0,9,5,1,1137.25,0,0,0 +9887,12116,22124,-9,22123,22122,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.208756390683,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1137.25,0,0,0 +9888,12117,22125,22126,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.301216260282551,8.508738864162735,0,1,0,-9,22,0,0,34.38467763613191,0,0,0,61,2,4,1,2,2,2019,1,1,6,0,70,60,15,1,0,1,0,6.767927026534039,6.767927026534039,0,0,0,0,0,0,0,0,0,0,0,0,0,3,60.12,54.8,7,1,0,0,11,5,1,1497,0,0,0 +9888,12117,22126,22125,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,4,7.870253069638265,8.493397689774572,6.224114217725924,1,0,-9,23,0,9,-87.7902356687935,0,0,0,52,2,4,1,2,2,2019,1,2,7,0,32,35,15,1,0,1,0,9.611780883453765,9.611780883453765,0,0,0,0,0,0,0,0,0,0,3.103960911750643,6.617618167481486,4.688168919734988,3,46.77,49.78,6,1,0,0,11,5,1,1497,0,0,0 +9889,12118,22127,22128,-9,-9,2,1,0,49,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,7,0,-13,53.22161561823624,0,0,0,62,1,5,1,2,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.495635052641403,0,0,0,62.66,52.4,7,3,0,0,8,3,1,1206.5,0,0,0 +9889,12118,22128,22127,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,5,7.565864021257857,7.585290182804222,0,1,0,-9,12,0,13,156.3386516094007,0,0,0,49,1,3,3,2,2,2019,2,2,11,0,16,25,15,1,0,3,0,15.76920832575168,15.76920832575168,0,0,0,0,0,0,0,0,0,0,3.539076994188835,0,0,0,57.06,57.76,6,3,0,0,8,3,1,1206.5,0,0,0 +9890,12119,22129,22130,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,6.108893343106377,6.042162341125162,1,0,-9,6,0,1,45.0967254379471,0,0,0,71,2,5,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.130231293916294,6.440413230646157,0,3,56.1,49.93,6,1,0,0,9,3,1,1642,0,0,0 +9890,12119,22130,22129,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,5,0,7.361448202860279,7.375548983512425,1,0,-9,6,0,-1,77.25150130885569,0,0,0,72,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.770551994939853,7.248336501464269,9.416976135307241,3,55.63,55.6,7,1,0,0,9,3,1,1642,0,0,0 +9891,12120,22131,-9,-9,-9,1,1,0,45,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-937.9057080744597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,2,1,0,1,10,1,0,438,0,0,0 +9892,12121,22132,22133,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,3,8.142174830304389,7.553649351887422,0,2,0,-9,6,0,-2,57.88755970581997,0,1,1,30,2,5,1,2,2,2019,1,1,9,1,49,47,15,1,1,1,0,5.967564122454279,5.967564122454279,0,0,0,0,0,0,0,1,1,0,0,0,8.11735272048489,3,35.86,58.14,5,1,0,0,5,5,1,237,0,0,0 +9892,12121,22133,22132,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,5,9.158598348293385,8.961235724990487,0,2,0,-9,6,0,2,-64.98945576224607,0,0,0,28,1,3,1,2,2,2019,1,2,7,0,67,57,15,1,0,1,0,17.22824879652349,17.22824879652349,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,1,0,0,5,5,1,237,0,0,0 +9892,12121,22134,-9,22132,22133,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.131322208622,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,1,237,0,0,0 +9893,12122,22135,22136,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,2,8.538555475717143,8.621183717826117,0,1,0,-9,1,-9,5,-62.83680490753708,-9,0,0,44,2,3,1,-9,-9,2019,1,1,9,1,30,0,15,1,1,1,0,18.42683053465185,18.42683053465185,0,0,0,0,0,0,0,0,0,0,7.009181254537945,0,0,0,54.07,38.88,6,1,0,0,9,5,1,660.5,0,0,0 +9893,12122,22136,22135,-9,-9,1,1,0,44,1,0,0,0,2,-9,1,1,0,3,8.406233144735056,8.577371686381364,0,1,0,1,1,-9,-5,93.44532658209576,0,0,1,49,2,2,1,2,-9,2019,1,2,17,5,24,40,15,1,5,1,0,28.68561057541821,28.68561057541821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.14,61.61,5,1,0,0,9,5,1,660.5,0,0,0 +9894,12123,22137,22138,-9,-9,2,1,0,49,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,3,0,-1,0,0,0,0,50,3,1,3,-9,-9,2019,4,1,25,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.17925280570822,3,27.32,47.65,4,1,1,1,6,1,0,156.5,0,0,0 +9894,12123,22138,22137,-9,-9,1,1,1,50,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,3,0,1,0,0,0,0,49,3,2,3,3,2,2019,4,2,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.46721965125429,3,40.93,19.29,4,2,0,1,6,1,0,156.5,0,0,0 +9895,12124,22139,22140,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,3,8.078654129885546,7.971493365079151,0,2,0,-9,17,0,1,55.04958703899177,0,0,1,38,2,3,1,2,3,2019,1,2,9,1,10,12,15,1,1,1,0,35.37598523628611,35.37598523628611,0,0,0,0,0,0,0,0,0,0,9.631448554241352,0,0,0,36.37,57.89,6,1,0,0,9,5,1,805.3333333333334,0,0,0 +9895,12124,22140,22139,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,3,9.913293990041987,9.647059323030922,7.200344001755551,2,0,-9,17,0,-1,69.70816191606954,0,0,0,39,2,3,1,2,2,2019,1,1,9,1,46,47,15,1,1,1,0,45.43790012647356,45.43790012647356,0,0,0,0,0,0,0,0,0,0,9.686484210826737,0,0,0,47.07,53.97,6,1,0,0,9,5,1,805.3333333333334,0,0,0 +9895,12124,22141,-9,22139,22140,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-857.0538391957631,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,9,5,1,805.3333333333334,0,0,0 +9896,12125,22142,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,3,3,0,2,0,5.34672370064523,5.477059640508544,3,0,0,0,-9,0,-910.5619210024747,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.020535559667612,0,20.20055248538334,3,63.07,15.98,3,1,1,1,2,2,0,729,0,0,0 +9897,12126,22143,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,3,8.424067385378187,9.002396437455765,7.663725345983606,3,0,0,0,-9,0,-1066.00109031784,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.911484598016988,7.877289685941374,0,0,53,47,6,1,0,0,4,5,1,586,0,0,0 +9898,12127,22144,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-993.3687386070751,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.88,31.21,5,1,0,0,1,1,0,759,0,0,0 +9899,12128,22145,22146,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,4,7.624882846685493,7.80742737519779,0,1,0,-9,1,-9,4,44.24537302561686,-9,1,0,22,1,4,1,-9,-9,2019,1,1,8,1,40,0,15,1,1,1,0,8.535503586264024,8.535503586264024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,12,4,0,619.5,0,0,0 +9899,12128,22146,22145,-9,-9,1,1,0,22,1,0,0,0,1,1,2,1,0,4,7.868173914271743,7.77515713902277,0,1,0,1,1,-9,-4,20.73599722646943,-9,1,1,26,2,4,1,1,1,2019,1,2,8,0,42,0,15,1,0,1,0,7.288651368526135,7.288651368526135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,55.2,5,1,0,0,12,4,0,619.5,0,0,0 +9900,12129,22147,22148,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,8,0,-4,107.7670727275685,0,0,0,67,2,1,3,-9,2,2019,4,1,25,12,0,0,15,3,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.423764462817136,0,0,0,40.43,23.72,3,1,0,0,6,3,1,614,0,0,0 +9900,12129,22148,22147,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,1,0,7.774808859607703,7.809671978890512,1,0,-9,8,0,4,-35.9525918572172,0,0,0,63,2,1,3,-9,2,2019,4,2,12,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.808486863415805,111.2303455340597,1,33.23,26.83,2,1,0,0,6,3,1,614,0,0,0 +9901,12130,22149,22150,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,4,0,8.734411270330387,8.542094356075689,1,0,-9,52,0,0,60.84536323034359,0,0,0,74,1,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.846262530737557,8.4908064187159,0,0,54.2,57.49,6,1,0,0,7,5,1,308.5,0,0,0 +9901,12130,22150,22149,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,5,0,7.89720124396416,8.289778593029462,1,0,-9,55,0,0,-39.94926211457469,0,0,0,74,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.571319401424349,8.218523399763587,0,0,57.06,57.76,6,2,0,0,7,5,1,308.5,0,0,0 +9902,12131,22151,-9,22152,-9,3,1,1,16,2,0,2,1,3,-9,7,2,0,3,5.405774719564252,5.196656717276958,0,4,0,0,0,-9,0,-897.2023830269931,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,5,0,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5480847078052741,0,0,0,58.32,50.22,7,1,0,0,5,3,1,603,0,0,0 +9902,12131,22152,-9,-9,-9,1,1,0,47,3,0,2,0,1,-9,2,1,0,4,8.179533096677934,8.700096195849385,6.33915848331057,4,0,0,0,-9,0,-861.1453935548997,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,37,37,15,1,0,-9,0,14.97677961775496,14.97677961775496,0,0,0,0,0,0,0,1,1,0,6.497286420477918,0,0,0,54.2,57.49,4,1,0,0,5,3,1,603,0,0,0 +9902,12132,22153,-9,22152,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,5,8.000538761719536,8.042261712077211,0,3,0,0,0,-9,0,-1005.949757533513,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,1,0,0,5,3,1,240,0,0,0 +9903,12133,22154,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,3.001542365194059,2.936587914381699,3,0,0,0,-9,0,-988.9577104815899,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.29579627157823,0,0,63.64,43.77,5,1,0,0,10,1,1,469,0,0,0 +9904,12134,22155,22156,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,7.470343032850208,7.074627307580223,1,0,-9,22,0,-16,5.645912642693335,0,0,0,82,2,1,3,3,3,2019,4,1,21,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.38129295738049,7.109141508002423,79.48699397473987,1,35.54,53.51,5,1,0,0,12,2,1,681,0,0,0 +9904,12134,22156,22155,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,1,0,6.49781925122022,6.430487104019074,1,0,-9,10,0,16,21.20678288645133,0,0,0,66,2,4,3,3,2,2019,4,2,17,0,0,0,15,4,5,4,0,0,0,1,0,21.74878505219569,0,0,0,0,1,1,0,0,6.670628257981197,0,0,26.65,23.11,1,1,0,0,12,2,1,681,0,0,0 +9905,12135,22157,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,1,1,0,5,7.471480844476115,7.28231426945517,0,3,0,0,0,-9,0,-1095.702696421851,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,16,16,15,1,5,-9,0,11.33393443665763,11.33393443665763,0,0,0,0,0,0,0,0,0,0,2.51119680584083,0,0,0,33.39,65.88,3,1,0,0,10,3,1,212,0,0,0 +9906,12136,22158,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1059.780168327854,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.8116329934834,0,4.634878726692678,0,1,1,0,1.217705881122393,0,0,0,48.19,15.79,6,1,0,0,1,1,0,572,0,0,0 +9907,12137,22159,-9,-9,-9,1,1,1,21,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1071.698335613526,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.31,50.42,5,1,1,0,11,1,0,635,0,0,0 +9908,12138,22160,22161,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.949699770379441,8.993765491869093,0,1,0,-9,10,0,-4,25.37991140470208,0,0,0,54,1,3,3,2,2,2019,2,1,7,0,40,45,15,1,0,3,0,20.17517731716846,20.17517731716846,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,47.92,5,1,0,0,12,4,1,625.5,0,0,0 +9908,12138,22161,22160,-9,-9,1,1,0,54,1,0,0,0,1,-9,8,3,1,3,0,0,0,1,0,-9,10,0,4,30.24297670714311,0,0,0,50,2,3,1,2,2,2019,3,2,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.232120364302382,0,0,0,61.14,32.41,6,1,0,1,12,4,1,625.5,0,0,0 +9909,12139,22162,22163,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,3,0,6.973383773257878,6.743681974528245,1,0,-9,7,0,12,-84.4617503614747,0,0,0,71,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.959823488268883,6.587978861349717,0,0,57.35,45.09,7,1,0,0,11,2,1,241.5,0,0,0 +9909,12139,22163,22162,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,5.908046265621506,5.855315400848927,1,0,-9,7,0,-12,83.91280342411333,0,0,0,83,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.877719873085218,0,0,55.79,52.62,7,1,0,0,11,2,1,241.5,0,0,0 +9910,12140,22164,-9,22167,22165,4,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-953.4325910685798,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,10,4,1,586,0,0,0 +9910,12140,22165,22167,-9,-9,1,1,1,55,1,0,2,0,1,-9,1,1,0,4,8.574192255304222,8.495355454128219,0,2,0,-9,7,0,4,-77.43980836831646,0,0,0,51,1,4,1,2,2,2019,1,2,9,0,40,32,15,1,1,1,0,15.37677999010601,15.37677999010601,0,0,0,0,0,0,0,1,1,0,3.742658867410558,0,0,3,53,54,6,1,0,0,10,4,1,586,0,0,0 +9910,12140,22166,-9,22167,22165,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1015.383821262461,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.455082193465951,0,0,0,39.86,45.32,6,1,0,0,10,4,1,586,0,0,0 +9910,12140,22167,22165,-9,-9,2,1,0,51,1,0,2,0,1,-9,1,1,0,4,8.003914486810476,7.917769750997874,0,2,0,-9,7,0,-4,-123.9165030288415,0,0,0,55,1,4,1,-9,-9,2019,1,1,8,0,6,3,15,1,0,1,0,60.15935323986618,60.15935323986618,0,0,0,0,0,0,0,1,1,0,7.231912958871002,0,14.47451037294137,3,60.28,46.44,6,1,0,0,10,4,1,586,0,0,0 +9911,12141,22168,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1002.811345273743,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,39.04,5,1,0,0,11,1,0,1205,0,0,0 +9911,12142,22169,-9,22168,-9,2,1,1,29,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1042.321034384079,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,7,1,1,0,11,1,0,191,0,0,0 +9911,12143,22170,-9,22168,-9,3,1,1,28,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1011.093608606246,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,60,4,1,1,0,11,1,0,682,0,0,0 +9912,12144,22171,-9,22173,22172,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.6814660318197,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,1,695.25,0,0,0 +9912,12144,22172,22173,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.983355334743274,8.940157296878338,7.485927848233914,2,0,-9,7,0,2,11.48326596486614,0,0,0,41,3,5,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,16.50344240361723,16.50344240361723,0,0,0,0,0,0,0,1,1,0,0,7.575651715771059,0,0,60.45,43.75,7,1,0,0,10,4,1,695.25,0,0,0 +9912,12144,22173,22172,-9,-9,1,1,0,41,1,0,2,0,3,-9,2,1,0,5,7.112135311528644,6.910919894357032,0,2,0,-9,7,0,-2,-199.9211199760046,0,0,1,43,2,3,1,3,3,2019,1,2,15,4,31,30,15,1,4,1,0,5.352721100284826,5.352721100284826,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.18,65.09,5,1,0,0,10,4,1,695.25,0,0,0 +9912,12144,22174,-9,22173,22172,4,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-984.8466652297658,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,10,4,1,695.25,0,0,0 +9913,12145,22175,22176,-9,-9,2,1,1,48,1,0,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,22,0,4,0,0,0,0,44,2,5,1,2,2,2019,1,1,9,0,40,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,6,1,0,0,9,1,1,447.25,0,0,0 +9913,12145,22176,22175,-9,-9,1,1,0,44,1,0,2,0,2,-9,1,1,0,5,0,0,0,2,0,-9,22,0,-4,0,0,0,1,48,2,4,1,2,2,2019,1,2,6,0,10,8,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,1,1,447.25,0,0,0 +9913,12145,22177,-9,22176,22175,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.167627002367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,1,1,447.25,0,0,0 +9913,12145,22178,-9,22176,22175,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.5790468092415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,9,1,1,447.25,0,0,0 +9914,12146,22179,22180,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,8.273339562403464,8.310252984837179,1,0,-9,9,0,1,0,0,0,0,69,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.439674064003907,8.26267907168307,0,0,57.16,56.15,6,1,0,0,7,5,1,2685.5,0,0,0 +9914,12146,22180,22179,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,8.248838113184501,8.376622062051569,1,0,-9,9,0,-1,0,0,0,0,70,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.042450921381223,0,0,57.33,53.46,6,1,0,0,7,5,1,2685.5,0,0,0 +9915,12147,22181,-9,-9,-9,2,1,1,54,3,0,0,0,2,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-914.8665881088766,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.08118474799404,3,54.2,57.49,6,1,0,0,13,1,0,73,0,0,0 +9915,12148,22182,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-991.8555266334769,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.35,38.97,2,1,0,0,13,1,0,456,0,0,0 +9916,12149,22183,22184,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,2,0,6.768377538028172,6.686611374310153,1,0,-9,9,0,-1,33.72001294876695,0,0,0,86,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,15.33487794876152,0,0,1.973597785217928,0,1,1,0,2.06843235350573,6.662210908979445,22.8733763230991,1,44.08,25.91,4,1,0,0,6,2,0,2437,0,0,0 +9916,12149,22184,22183,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,2,0,6.395742031546908,6.807403816240691,1,0,-9,9,0,1,148.4962410685195,0,0,0,85,2,2,3,3,3,2019,4,2,17,4,0,0,15,4,4,4,0,0,0,1,0,3.129044061546391,0,0,0,0,1,1,0,.508967211002687,6.344242372266964,.2378148196862524,1,41.94,27.98,4,1,0,0,6,2,0,2437,0,0,0 +9917,12150,22185,22186,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,7.440386561927863,7.883893565707934,0,1,0,-9,8,0,3,-7.037971702282523,0,0,0,52,2,3,1,-9,-9,2019,1,1,8,0,45,40,15,1,0,1,0,4.586419262552018,4.586419262552018,0,0,0,0,0,0,0,0,0,0,7.710187817764265,0,0,0,58.15,52.91,6,1,0,0,2,3,1,914,0,0,0 +9917,12150,22186,22185,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.656346475577416,7.579167339221832,0,1,0,-9,8,0,-3,85.87129474404753,0,0,0,55,2,4,1,2,2,2019,1,2,15,3,37,36,15,1,3,1,0,4.481666134031293,4.481666134031293,0,0,0,0,0,0,0,0,0,0,0,0,5.610748229761309,3,49.13,46.57,4,1,0,0,2,3,1,914,0,0,0 +9917,12150,22187,-9,22186,22185,4,1,1,17,2,0,0,0,2,1,2,3,0,4,6.629585618683516,6.466850801029723,0,1,0,0,0,-9,0,-965.6620527964399,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,16,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,2,3,1,914,0,0,0 +9917,12151,22188,-9,22186,22185,3,1,0,19,2,0,0,1,2,0,7,2,0,5,6.160269572684264,6.151020418608394,0,3,0,0,0,-9,0,-1006.608572776487,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,25,10,12,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.61,69.8,6,1,0,0,2,2,1,4291,0,0,0 +9918,12152,22189,22190,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,0,38.10763301208831,0,0,0,68,1,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.156773556759463,0,1.478457169193567,3,56.26,30.84,6,1,0,0,7,3,1,509,0,0,0 +9918,12152,22190,22189,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,7.788877906199639,7.990236766445393,1,0,-9,9,0,0,122.0886002416088,0,0,0,68,3,3,3,3,3,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.504372844003917,7.609677364788102,.5349863154567776,3,46.31,51.53,5,1,0,0,7,3,1,509,0,0,0 +9919,12153,22191,22192,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,2,-119.3542654655147,0,0,0,84,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,.0273095316798373,0,0,0,0,1,1,0,0,0,0,0,39.01,41.42,6,1,0,0,8,2,1,304.5,0,0,0 +9919,12153,22192,22191,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,6.622524605984139,6.621695876145543,1,0,-9,7,0,-2,-61.89388841725291,0,0,0,86,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.226913061605931,6.785060345816458,0,0,48.54,46.62,5,1,0,0,8,2,1,304.5,0,0,0 +9920,12154,22193,-9,22194,22196,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-802.0075980874587,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,0,883.25,0,0,0 +9920,12154,22194,22196,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.357756198459417,7.650528212595823,0,2,0,-9,15,0,-7,57.51733912969912,0,0,1,41,2,3,1,-9,2,2019,1,2,5,0,20,16,15,1,0,1,0,10.33487927916002,10.33487927916002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,3,0,883.25,0,0,0 +9920,12154,22195,-9,22194,22196,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.669341787464,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,0,883.25,0,0,0 +9920,12154,22196,22194,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,3,7.736383497068131,7.982193947602623,0,2,0,-9,8,0,7,63.28281104620628,0,0,0,34,2,4,1,2,-9,2019,1,1,11,0,45,45,15,1,0,1,0,7.097768781189154,7.097768781189154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,53.5,5,1,0,1,4,3,0,883.25,0,0,0 +9921,12155,22197,22198,-9,-9,2,1,0,87,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-1,0,0,0,0,88,2,3,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,28.96157078261808,0,11.09126532138291,0,0,228.6042095457583,1,1,0,0,0,0,0,52,45,6,1,0,0,13,1,1,572.5,0,0,0 +9921,12155,22198,22197,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,1,0,0,0,0,87,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,18.33030566526181,0,0,0,1,1,0,0,0,117.0248191351775,1,55.8,32.09,6,1,0,0,13,1,1,572.5,0,0,0 +9922,12156,22199,22200,-9,-9,3,1,0,39,1,0,1,0,1,-9,2,1,0,4,8.720997785565443,8.370828812044522,0,2,0,-9,6,0,-4,-25.54479125392188,0,0,1,43,1,4,1,-9,-9,2019,1,1,11,0,40,44,15,1,1,1,0,13.35262800515401,13.35262800515401,0,0,0,0,0,0,0,1,1,0,4.327146482191814,0,0,0,49,56,5,1,0,0,11,5,1,1084.333333333333,0,0,0 +9922,12156,22200,22199,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,4,8.738975038077223,8.757077278146635,0,2,0,-9,6,0,4,18.19890484406707,0,0,0,39,1,4,1,2,2,2019,1,3,12,0,40,40,15,1,0,1,0,20.32367764630129,20.32367764630129,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.28,54.98,2,1,0,0,11,5,1,1084.333333333333,0,0,0 +9922,12156,22201,-9,-9,22200,2,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-945.3403350407548,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,6,1,0,0,11,5,1,1084.333333333333,0,0,0 +9923,12157,22202,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,8.078745901540559,8.260408959246043,0,3,0,0,0,-9,0,-946.7504952839968,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,50,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.16,59.89,4,1,0,0,1,4,1,1298,0,0,0 +9924,12158,22203,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.217333518511878,7.600850711480011,0,3,0,0,0,-9,0,-837.9189131255805,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,26,30,15,1,0,-9,0,6.056990138453585,6.056990138453585,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47.1,49.66,6,4,0,1,8,3,0,1618,0,0,0 +9924,12159,22204,-9,22203,-9,2,1,1,19,2,0,0,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-930.0169129251898,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.65,60.47,7,4,0,0,8,1,0,630,0,0,0 +9925,12160,22205,-9,-9,-9,1,1,0,60,2,0,0,0,3,-9,2,1,0,4,8.05574404353295,7.678066265160238,0,3,0,0,0,-9,0,-966.3732201631184,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,39,39,15,1,0,-9,0,9.987735992593024,9.987735992593024,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,58.29,6,1,0,0,2,4,0,560,0,0,0 +9926,12161,22206,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,7.494168186741279,7.845047503356826,3,0,0,0,-9,0,-1018.946486322005,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.939978396827005,13.32867659482747,3,57.16,56.15,6,1,0,0,13,3,1,206,0,0,0 +9927,12162,22207,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,3,0,8.140406755887259,8.043546337623871,3,0,0,0,-9,0,-970.03152630886,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.055736528166847,0,0,57.33,53.46,6,1,0,0,11,4,1,481,0,0,0 +9928,12163,22208,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,1,1,0,1,9.478260400755579,9.474640742132468,0,3,0,0,0,-9,0,-993.8342252930134,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,30,25,15,1,2,-9,0,54.45980507955233,54.45980507955233,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.27,40.98,5,1,0,0,7,5,1,1622,0,0,0 +9929,12164,22209,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,3,6.999556516715516,7.383328850020471,5.980792639966065,3,0,0,0,-9,0,-1047.672810807773,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,22,23,15,1,0,-9,0,5.844957990636029,5.844957990636029,0,0,0,0,0,0,0,1,1,0,0,5.739027535698192,0,0,54.37,54.8,6,1,0,0,13,3,0,366,0,0,0 +9929,12165,22210,-9,22209,-9,2,1,1,35,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1143.27302897457,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,1,0,13,1,0,112,0,0,0 +9930,12166,22211,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.110139209307006,8.038441665961782,0,3,0,-9,0,0,0,-966.9726084552219,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,1,62,65,15,1,1,-9,0,8.039396909195352,8.039396909195352,0,0,0,0,0,0,0,0,0,0,2.241364911435782,0,0,0,57.16,56.15,6,1,0,0,4,4,0,192,0,0,0 +9930,12167,22212,-9,-9,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,3,8.291108191141095,8.331294009149863,0,3,0,-9,0,-9,0,-953.7429260284813,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,110,0,15,1,1,-9,0,3.750265843315285,3.750265843315285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.52,56.03,4,1,0,0,4,4,0,155,0,0,0 +9931,12168,22213,-9,22214,22215,4,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1063.931704763968,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.637019094425913,0,0,0,60.02,56.42,7,1,0,0,9,4,1,250.3333333333333,0,0,0 +9931,12168,22214,22215,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,5,7.188502578031624,7.147222541350644,0,2,0,-9,29,0,0,121.1289069069077,0,0,0,50,2,3,1,-9,-9,2019,1,1,9,0,18,17,15,1,0,1,0,7.615756966799047,7.615756966799047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,9,4,1,250.3333333333333,0,0,0 +9931,12168,22215,22214,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,3,8.692005114487605,8.433711596580201,0,2,0,-9,29,0,0,-1.448002174817732,0,0,0,50,2,5,1,-9,-9,2019,1,2,9,0,36,35,15,1,0,1,0,19.54189006618437,19.54189006618437,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,4,1,250.3333333333333,0,0,0 +9931,12169,22216,-9,22214,22215,3,1,0,18,2,0,1,0,2,1,2,1,0,3,7.942784449102381,7.902099528165614,0,3,0,0,0,-9,0,-1006.076005455856,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,2,38,0,15,1,2,-9,1,8.007950282388183,8.007950282388183,0,0,0,0,0,0,0,1,1,0,2.219674828090869,0,0,0,49.92,47.32,6,1,0,0,9,3,1,401,0,0,0 +9932,12170,22217,-9,-9,-9,1,1,0,83,2,0,0,0,3,-9,4,3,0,3,0,5.580854456260445,5.047292658032602,3,0,0,0,-9,0,-922.0268786813548,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.749113483812305,0,0,52,45,6,1,0,0,10,2,0,1082,0,0,0 +9933,12171,22218,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,1,1,0,4,8.253547907667455,8.202305435733438,0,3,0,0,0,-9,0,-943.8625424459177,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,40,50,15,1,1,-9,0,11.30636216393592,11.30636216393592,0,0,0,0,0,0,0,1,1,0,2.693580420937228,0,0,0,49.06,58.64,3,1,0,0,7,4,1,1480,0,0,0 +9934,12172,22219,22222,-9,-9,2,1,1,39,1,2,2,0,2,-9,2,1,0,4,9.284210997146499,9.505805286410903,0,2,0,-9,3,0,5,-29.75446547027536,0,0,0,34,1,4,3,-9,-9,2019,2,1,7,1,40,58,15,1,1,3,0,25.17313109504934,25.17313109504934,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.39,42.39,7,1,0,0,9,4,1,1041,0,0,0 +9934,12172,22220,-9,22222,22219,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.5910069553541,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,1041,0,0,0 +9934,12172,22221,-9,22222,22219,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1079.149297557963,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,1041,0,0,0 +9934,12172,22222,22219,-9,-9,1,1,0,34,1,2,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-5,49.20784820406763,0,0,1,39,2,4,1,2,1,2019,3,2,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.34,6,1,0,0,9,4,1,1041,0,0,0 +9935,12173,22223,22224,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,5.16877273328933,5.402448757170507,1,0,-9,6,0,-7,-44.87464589789249,0,0,0,88,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.23948972687235,5.235503107935678,0,0,57,50,2,1,0,0,9,1,1,626.5,0,0,0 +9935,12173,22224,22223,-9,-9,1,1,0,88,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,7,-119.1107530978194,0,0,0,81,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,48.86,7,1,0,0,9,1,1,626.5,0,0,0 +9936,12174,22225,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,5,0,7.394175349101254,7.450234292760173,3,0,0,0,-9,0,-1053.460587946014,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.317136742650536,7.067606685627577,0,0,60.02,56.42,7,1,0,0,5,3,1,1108,0,0,0 +9937,12175,22226,-9,22228,22229,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.0968311169561,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,516.5,0,0,0 +9937,12175,22227,-9,22228,22229,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.236757200108,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,516.5,0,0,0 +9937,12175,22228,22229,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,3,7.895353799212933,7.777474763929096,0,2,0,-9,11,0,-2,30.10544131431182,0,0,1,35,2,4,1,2,3,2019,1,2,11,0,40,40,15,1,0,1,0,8.056002116958831,8.056002116958831,0,0,0,0,0,0,0,1,1,0,0,0,15.94723736515855,3,42.03,42.92,5,1,0,0,11,4,1,516.5,0,0,0 +9937,12175,22229,22228,-9,-9,2,1,1,35,1,0,2,0,2,-9,1,1,0,4,8.420020437906741,8.798325417835983,0,2,0,-9,11,0,2,-36.48340899258886,0,0,0,33,1,3,1,3,3,2019,1,1,10,0,60,60,15,1,1,1,0,10.65079401265467,10.65079401265467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,11,4,1,516.5,0,0,0 +9938,12176,22230,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,3,0,6.418282151136999,6.814813496555565,3,0,0,0,-9,0,-921.1023845759769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,121.2999053644661,0,7.604361389586191,3.438851796600439,0,1142.828665905959,1,1,0,2.857208341684154,6.814592072108244,0,0,54,44,6,1,0,0,5,2,0,204,0,0,0 +9939,12177,22231,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,3,0,6.408795982787328,6.473397186538802,3,0,0,0,-9,0,-999.8078843598036,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.112975750824374,0,0,51.3,40.11,6,1,0,0,13,2,1,523,0,0,0 +9940,12178,22232,22233,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.734693789987955,7.711961894180752,1,0,-9,10,0,-1,-40.29160848544845,0,0,0,65,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.78869441614421,7.647046394101245,33.94743317679935,3,47.62,56.48,6,1,0,0,4,4,1,154,0,0,0 +9940,12178,22233,22232,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.911530120222061,7.454751846018456,1,0,-9,10,0,1,-10.99808955147873,0,0,0,64,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.279712535955306,8.187115832855772,30.43238079942046,3,46.39,60.99,6,1,0,0,4,4,1,154,0,0,0 +9941,12179,22234,22235,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,4,7.288628692847199,7.035635068383374,0,2,0,-9,5,0,-5,-71.49133212788531,0,0,0,52,2,4,1,3,3,2019,1,1,10,0,24,24,15,1,1,1,0,7.611269509162895,7.611269509162895,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,5,1,0,0,4,4,1,572.6666666666666,0,0,0 +9941,12179,22235,22234,-9,-9,1,1,1,52,1,0,1,0,2,-9,1,1,0,4,8.851702849931163,8.580105585667001,0,2,0,-9,29,0,5,51.3102391457422,0,0,0,47,2,4,1,2,2,2019,1,2,9,0,45,45,15,1,0,1,0,14.45093165360284,14.45093165360284,0,0,0,0,0,0,0,1,1,0,6.302990514034215,0,0,0,49.46,56.91,5,1,0,0,4,4,1,572.6666666666666,0,0,0 +9941,12179,22236,-9,22234,22235,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-947.6875628458306,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.707102398701496,0,0,0,48,59,5,1,0,0,4,4,1,572.6666666666666,0,0,0 +9942,12180,22237,-9,-9,-9,1,1,0,48,2,0,2,0,2,-9,2,1,0,4,7.393946201721648,7.364731841552771,0,4,0,-9,0,-9,0,-995.6866211386503,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,16,0,15,1,0,-9,0,7.047406721881897,7.047406721881897,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.76,48.74,7,4,0,0,8,2,0,803,0,0,0 +9942,12180,22238,-9,22237,-9,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-999.4772274787155,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,2,0,803,0,0,0 +9942,12180,22239,-9,22237,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,4,0,-9,0,-9,0,-1082.549936285138,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,4,0,0,8,2,0,803,0,0,0 +9942,12181,22240,-9,22237,-9,3,1,0,20,2,0,2,1,2,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-944.2250052897876,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,4,0,0,8,1,0,556,0,0,0 +9942,12182,22241,-9,-9,-9,5,1,1,23,2,0,2,0,1,-9,3,3,0,4,0,0,0,4,0,-9,0,-9,0,-919.0178193565793,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.44,52.99,5,4,1,0,8,1,0,882,0,0,0 +9943,12183,22242,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,2,9.518882515556044,9.643230589518996,0,3,0,0,0,-9,0,-1066.300071407597,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,50,60,15,1,0,-9,0,43.30090409756775,43.30090409756775,0,0,0,0,0,0,0,0,0,0,9.195912992959247,0,0,0,55.21,43.87,6,1,0,0,7,5,0,747,0,0,0 +9944,12184,22243,-9,22244,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1144.49300629303,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,2,0,1123,0,0,0 +9944,12184,22244,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,6,3,0,3,0,6.250942069727524,5.695015373559514,4,0,0,0,-9,0,-1013.903310294761,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.439710076722388,0,36.62347707732005,3,42.86,53.58,6,1,0,0,12,2,0,1123,0,0,0 +9944,12184,22245,-9,22244,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-940.1349648107904,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,12,2,0,1123,0,0,0 +9945,12185,22246,22247,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,5,0,6.485686432885744,6.487848610749682,1,0,-9,5,0,1,85.36692308371771,0,0,0,80,2,3,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.574395222066418,6.566617198323117,0,0,50.54,62.09,7,1,0,0,12,3,1,899,0,0,0 +9945,12185,22247,22246,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,3,0,7.669254093399981,7.407216458055887,1,0,-9,5,0,-1,140.3990467451635,0,0,0,81,1,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.462622041877603,7.154471946465574,0,0,58.08,35.56,6,1,0,0,12,3,1,899,0,0,0 +9946,12186,22248,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,5,6.524412103035445,6.566543282744088,0,3,0,0,0,-9,0,-936.8155203322715,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,10,36,15,1,0,-9,0,9.720148082362613,9.720148082362613,0,0,0,0,0,0,0,1,1,0,.3464936616341057,0,0,3,63.98,29.5,7,1,0,0,10,2,1,985,0,0,0 +9947,12187,22249,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,3,0,7.211396039445763,6.908906161615553,3,0,0,0,-9,0,-872.030869243045,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.035652882459759,7.259371684758283,0,0,58.47,44.69,6,1,0,0,12,2,1,452,0,0,0 +9947,12188,22250,-9,-9,-9,2,1,1,66,2,0,0,0,3,-9,4,3,0,5,0,7.352793043545761,7.156524699170285,3,0,0,0,-9,0,-1114.435015810301,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.944340882177995,0,0,57,55,7,1,0,0,12,2,1,595,0,0,0 +9948,12189,22251,22252,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-17,32.16653165270331,-9,0,0,90,2,3,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.2419354106474,1,44.81,37.5,4,1,0,0,11,1,1,620.5,0,0,0 +9948,12189,22252,22251,-9,-9,1,1,1,90,1,0,0,0,2,-9,4,3,0,3,0,5.454768659453435,5.324613007422833,1,0,-9,6,0,17,6.306002125075937,-9,0,0,73,3,2,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.147100944472665,0,0,56,44,6,1,0,0,11,1,1,620.5,0,0,0 +9949,12190,22253,-9,22254,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1155.789384299575,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,2,0,0,8,2,0,601,0,0,0 +9949,12190,22254,-9,-9,-9,1,1,0,49,3,0,1,0,3,-9,6,3,0,3,0,5.174053172884311,5.00503508268454,4,0,0,0,-9,0,-1013.542050908672,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.053104848469786,0,43.15460585464993,3,47,50,5,1,0,0,8,2,0,601,0,0,0 +9950,12191,22255,22256,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,5,8.60869564327677,8.658138255269707,0,1,0,-9,2,0,1,-25.62507211933028,0,0,1,34,1,4,1,-9,-9,2019,1,1,6,0,40,43,15,1,0,1,0,15.81273194872704,15.81273194872704,0,0,0,0,0,0,0,0,0,0,4.675630753619799,0,0,0,57.06,57.76,6,1,0,0,1,5,1,757,0,0,0 +9950,12191,22256,22255,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,9.534309209922888,9.092563718121042,0,1,0,-9,2,0,-1,18.23376487819719,0,0,0,35,1,5,1,1,1,2019,1,2,11,0,37,38,15,1,0,1,0,27.89249289595037,27.89249289595037,0,0,0,0,0,0,0,0,0,0,6.452028916422197,0,0,0,42.13,60.17,6,1,0,0,1,5,1,757,0,0,0 +9951,12192,22257,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,4,8.142405370564477,8.256419790289309,0,3,0,0,0,-9,0,-991.142145666362,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,0,-9,0,13.1057473103643,13.1057473103643,0,0,0,0,0,0,0,1,1,0,4.19772623942498,0,16.51117110883263,3,51.49,57.57,6,1,0,0,5,4,1,989,0,0,0 +9952,12193,22258,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-857.1807615581947,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,30.11,6,1,0,0,11,1,0,323,0,0,0 +9953,12194,22259,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,3,8.346862022722663,8.828005561626174,0,3,0,0,0,-9,0,-1033.01096851082,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,40,15,1,0,-9,0,15.75902198693377,15.75902198693377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,54.85,5,1,0,0,8,5,0,674,0,0,0 +9954,12195,22260,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,3,8.874917700684653,8.426094580282159,0,3,0,0,0,-9,0,-1025.166292036786,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,44,43,15,1,0,-9,0,13.79867783583334,13.79867783583334,0,0,0,0,0,0,0,1,1,0,2.732100188685691,0,0,0,47.66,52.33,6,1,0,0,10,5,1,1005,0,0,0 +9954,12196,22261,-9,-9,-9,2,1,0,39,2,0,0,0,1,-9,2,1,0,4,8.380041386343134,8.57292771299379,0,3,0,0,0,-9,0,-994.1405943606742,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,35,32,15,1,1,-9,0,15.88024235890576,15.88024235890576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,6,1,0,0,10,4,1,538,0,0,0 +9955,12197,22262,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1004.204342238089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.9325575379176,3,54.37,54.8,6,1,0,0,4,1,1,997,0,0,0 +9955,12198,22263,-9,22262,-9,2,1,0,52,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-947.0641563186389,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,0,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.91,21.31,4,1,0,0,4,1,1,1537,0,0,0 +9956,12199,22264,22265,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.753752078977044,8.313583547304509,0,1,0,1,1,-9,-5,-23.52709869759612,0,0,0,60,1,3,3,2,2,2019,2,2,12,1,48,38,15,1,1,3,0,10.58328111199475,10.58328111199475,0,0,0,0,0,0,0,0,0,0,7.608708491214045,0,0,0,45.12,49.66,5,1,0,0,7,5,1,244,0,0,0 +9956,12199,22265,22264,-9,-9,2,1,1,60,1,0,0,0,1,-9,97,3,0,3,9.696682921154544,9.648350792107397,0,1,0,-9,1,-9,5,32.42192676542459,-9,0,0,55,2,4,1,-9,-9,2019,3,1,20,8,55,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,54.53,3,1,0,0,7,5,1,244,0,0,0 +9957,12200,22266,22267,-9,-9,2,1,1,28,1,0,1,0,3,-9,2,1,0,4,7.869569470175793,7.658429738849682,0,2,0,-9,3,0,5,-22.60992702250874,0,1,0,23,3,5,3,-9,-9,2019,2,1,6,0,45,38,15,1,0,3,0,6.157660445514899,6.157660445514899,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,43.96,6,1,0,0,2,3,0,346,0,0,0 +9957,12200,22267,22266,-9,-9,1,1,0,23,1,0,1,0,3,-9,6,3,0,5,0,0,0,2,0,-9,3,0,-5,85.38164831554107,0,1,1,28,3,4,1,-9,-9,2019,3,2,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.741881880235816,3,52.13,34.88,7,1,0,0,2,3,0,346,0,0,0 +9957,12200,22268,-9,22267,22266,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.4463650320718,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,0,346,0,0,0 +9958,12201,22269,-9,22270,-9,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1000.041722386013,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,0,651.3333333333334,0,0,0 +9958,12201,22270,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,2,1,0,5,6.009342753203641,5.974761749390292,0,4,0,0,0,-9,0,-916.9560706031197,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,28,0,15,1,4,-9,0,2.437559360128137,2.437559360128137,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.03,66.34999999999999,4,1,0,1,11,2,0,651.3333333333334,0,0,0 +9958,12201,22271,-9,22270,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1034.623897791033,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,0,651.3333333333334,0,0,0 +9959,12202,22272,22273,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,4.496713892299481,4.551334576933979,1,0,-9,13,0,16,-67.39549022483567,0,0,0,55,2,2,1,-9,-9,2019,3,1,7,1,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.863063224069653,4.418240321982391,3.359583712205516,3,50.25,24.45,7,1,0,0,12,2,1,520.5,0,0,0 +9959,12202,22273,22272,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,2,7.365289358988473,7.616820056485684,0,1,0,-9,13,0,-16,118.0882543743273,0,0,0,71,2,2,3,-9,-9,2019,2,2,9,1,31,20,15,1,1,4,0,4.823911390949061,4.823911390949061,0,0,0,0,0,0,0,1,1,0,0,0,0,3,59.55,35.32,7,1,0,0,12,2,1,520.5,0,0,0 +9960,12203,22274,22275,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.545345286485444,8.625817922892548,0,2,0,-9,8,0,4,12.21347814228193,0,0,0,39,2,3,1,-9,1,2019,1,2,11,0,38,40,15,1,0,1,0,12.30940457369389,12.30940457369389,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.87,58.55,6,2,0,0,4,4,0,379,0,0,0 +9960,12203,22275,22274,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,3,7.580578430935432,7.803603365204028,0,2,0,-9,8,0,-4,-72.70308763011947,0,0,1,43,2,4,1,-9,-9,2019,1,1,11,0,42,40,15,1,0,1,0,8.093963598597492,8.093963598597492,0,0,0,0,0,0,0,1,0,1,0,0,5.801738123195338,3,39.75,54.92,6,1,0,0,4,4,0,379,0,0,0 +9960,12203,22276,-9,22275,22274,7,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1024.353314720661,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39,45,4,1,0,0,4,4,0,379,0,0,0 +9960,12204,22277,-9,22275,22274,3,1,1,21,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1097.356255281339,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,6,1,1,0,4,1,0,365,0,0,0 +9960,12205,22278,-9,22275,22274,4,1,1,20,2,0,2,0,2,-9,2,1,0,4,7.472204288273044,7.177361044116785,0,3,0,0,0,-9,0,-1041.457583135677,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,1,6.983522687495897,6.983522687495897,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.73,54.53,6,1,0,0,4,3,0,6087,0,0,0 +9960,12206,22279,-9,22275,22274,5,1,1,19,2,0,2,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-866.9126440061079,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.86,52.97,4,1,1,0,4,1,0,660,0,0,0 +9961,12207,22280,22281,-9,-9,1,1,0,53,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,9,0,-8,0,0,0,0,61,3,1,3,-9,2,2019,4,2,20,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.48173850881481,1,38.37,38.17,4,1,0,0,5,1,0,1407.5,0,0,0 +9961,12207,22281,22280,-9,-9,2,1,1,61,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,9,0,8,0,0,0,0,53,3,2,3,-9,-9,2019,4,1,35,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,4,1,0,0,5,1,0,1407.5,0,0,0 +9962,12208,22282,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1085.747537374187,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,3,0,0,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,58.37,6,1,0,0,12,1,0,852,0,0,0 +9963,12209,22283,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,4,8.95597235091221,9.041669756708391,0,3,0,-9,0,-9,0,-1111.674629985654,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,84,0,15,1,0,-9,0,9.439812059805355,9.439812059805355,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,0,6967,0,0,0 +9964,12210,22284,22285,-9,-9,1,1,0,62,1,0,0,0,2,-9,1,1,0,4,7.213566303088215,7.363443922289304,0,1,0,-9,6,0,6,-59.07609938584029,0,0,0,56,2,3,1,3,-9,2019,1,2,13,1,15,14,15,1,1,1,0,11.95865305520025,11.95865305520025,0,0,0,0,0,0,0,0,0,0,.2040531231011584,0,0,0,41.33,44.29,5,1,0,0,10,3,1,550.5,0,0,0 +9964,12210,22285,22284,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,7.588515571042811,7.676052656585273,5.37525983421547,1,0,-9,6,0,-6,161.9120475105569,0,0,0,62,2,4,1,2,2,2019,1,1,9,0,28,35,15,1,0,1,0,7.544611009368523,7.544611009368523,0,0,0,0,0,0,0,0,0,0,0,5.228546996517819,0,0,58.32,50.22,6,1,0,0,10,3,1,550.5,0,0,0 +9965,12211,22286,22287,-9,-9,2,1,0,50,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,8,0,1,-11.39322298048447,0,0,0,49,2,3,1,3,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.285999994753,0,33.81485302385849,3,44.7,41.79,7,1,0,0,13,2,1,1443.5,0,0,0 +9965,12211,22287,22286,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,3,7.055490850632202,7.255257511816048,0,1,0,-9,8,0,-1,40.15856046957846,0,0,0,50,3,4,3,2,3,2019,2,2,9,0,32,41,15,1,0,3,0,5.709913533627789,5.709913533627789,0,0,0,0,0,0,0,1,1,0,2.900994429570805,0,0,0,56.5,48.33,6,1,0,0,13,2,1,1443.5,0,0,0 +9965,12212,22288,-9,22286,22287,3,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.142365160385447,8.150018380207186,0,3,0,0,0,-9,0,-1027.752167818864,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,36,15,1,0,-9,1,11.26574192257249,11.26574192257249,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,6,1,0,0,13,4,1,410,0,0,0 +9965,12213,22289,-9,22286,22287,4,1,1,21,2,0,0,0,2,-9,2,1,0,5,8.455003277132583,8.472026928672488,0,3,0,0,0,-9,0,-1107.058095025825,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,37,40,15,1,0,-9,1,12.16209637932779,12.16209637932779,0,0,0,0,0,0,0,1,1,0,2.919787123758682,0,28.05843095182306,3,62.39,56.71,6,1,0,0,13,4,1,461,0,0,0 +9966,12214,22290,-9,-9,22291,2,1,0,17,2,0,0,0,2,1,2,3,0,4,6.338088877520884,6.299553345886304,0,3,0,0,0,-9,0,-893.2003398383962,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,2,12,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,51.55,6,1,0,0,1,5,1,1297.5,0,0,0 +9966,12214,22291,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,2,1,0,3,9.138893376848932,8.929169613855155,0,3,0,0,0,-9,0,-1017.543551770079,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,37,38,15,1,0,-9,0,27.90753168907625,27.90753168907625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,4,1,0,0,1,5,1,1297.5,0,0,0 +9967,12215,22292,22293,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,22,-71.02631424142257,0,0,0,49,2,3,1,3,2,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,9.65283492245725,0,0,0,0,1,1,0,5.272848914998985,0,0,0,42.2,33.81,7,1,0,0,9,3,1,827,0,0,0 +9967,12215,22293,22292,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.061802377336301,8.446487579665522,0,1,0,-9,4,0,-22,75.75264893608339,0,0,0,71,2,2,3,-9,-9,2019,2,1,9,1,50,50,15,1,1,4,0,10.56961713116581,10.56961713116581,0,0,0,0,0,0,0,1,1,0,0,0,73.68923132159952,1,53.78,56.44,6,3,0,0,9,3,1,827,0,0,0 +9968,12216,22294,22295,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-3,0,0,0,0,68,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,8.455974226043072,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,13,1,1,189,0,0,0 +9968,12216,22295,22294,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,3,0,0,0,0,65,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,12.35904460212392,1,58.49,31.44,4,1,0,0,13,1,1,189,0,0,0 +9969,12217,22296,-9,22298,22299,5,1,0,24,2,0,2,0,2,-9,2,1,0,4,7.863812924739427,8.251371764521499,0,3,0,0,0,-9,0,-964.71944248614,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,1,35,37,15,1,1,-9,1,9.96978435988273,9.96978435988273,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,7,4,1,412,0,0,0 +9969,12218,22297,-9,22298,22299,2,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.8801766750834,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,5,1,508,0,0,0 +9969,12218,22298,22299,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.453235168150515,7.589362165119531,5.806906022015853,2,0,-9,5,0,-1,-52.78352600622986,0,0,0,47,1,4,1,2,3,2019,1,4,6,0,21,21,15,1,0,1,0,8.627199162144745,8.627199162144745,0,0,0,0,0,0,0,1,1,0,6.334295871342111,0,0,0,57.16,56.15,7,1,0,0,7,5,1,508,0,0,0 +9969,12218,22299,22298,-9,-9,4,1,1,47,1,0,2,0,1,-9,2,1,0,4,9.674180368559245,9.468548929507,0,2,0,-9,5,0,1,-59.28889995244351,0,0,0,46,2,4,1,-9,-9,2019,1,1,6,0,60,55,15,1,0,1,0,25.22072469051303,25.22072469051303,0,0,0,0,0,0,0,1,1,0,.7087018057299819,0,0,0,54.2,57.49,6,1,0,0,7,5,1,508,0,0,0 +9969,12218,22300,-9,22298,22299,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.853033384232,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,5,1,508,0,0,0 +9970,12219,22301,22302,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,4,0,9.268944847397785,9.465577547294327,1,0,-9,10,0,-2,33.41440676084176,0,0,0,84,2,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,3.17266594903851,0,0,0,0,22.69067530667667,1,1,0,8.05150993744131,9.066931388027701,0,0,54.73,42.09,6,1,0,0,13,5,1,494,0,0,0 +9970,12219,22302,22301,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,2,17.42589428894028,0,0,0,82,1,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,38.32,7,1,0,0,13,5,1,494,0,0,0 +9971,12220,22303,22306,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.5079749544742,8.538578259540602,0,2,0,-9,16,0,1,-77.91299843437783,0,0,0,37,1,5,1,-9,-9,2019,1,2,11,0,48,48,15,1,0,1,0,9.581869564197332,9.581869564197332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.06,49.46,6,1,0,0,1,4,1,187.75,0,0,0 +9971,12220,22304,-9,22306,22303,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.126705603025,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,4,1,187.75,0,0,0 +9971,12220,22305,-9,22306,22303,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1142.42688786232,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,187.75,0,0,0 +9971,12220,22306,22303,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,5,8.568338798699536,8.476210751080107,0,2,0,-9,14,0,-1,-69.16499059552343,0,0,1,38,2,4,1,-9,-9,2019,1,1,12,0,1,30,15,1,0,1,0,489.4534171281927,489.4534171281927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,2,1,0,0,1,4,1,187.75,0,0,0 +9972,12221,22307,-9,-9,-9,1,1,1,72,2,0,0,0,2,-9,2,1,0,5,7.404670335195661,7.657883212754562,6.335105400496678,3,0,0,0,-9,0,-1026.53379671549,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,21,20,15,1,0,-9,0,9.68716657976085,9.68716657976085,0,0,0,0,0,0,0,1,1,0,5.397990380757774,6.474633530059997,0,0,49.17,56.72,7,1,0,0,2,3,1,810,0,0,0 +9973,12222,22308,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-1044.718664948882,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,28.93,3,1,0,0,10,2,0,578,0,0,0 +9974,12223,22309,22310,-9,-9,1,1,0,44,1,0,1,0,3,-9,2,1,0,4,5.42161509532982,5.889677317428705,0,2,0,-9,28,0,-4,-111.9247421438332,0,0,1,48,3,3,1,3,3,2019,1,2,12,0,4,0,15,1,0,1,0,8.421418072865922,8.421418072865922,0,0,0,0,0,0,0,1,1,0,0,0,6.808469546245061,3,48.28,60.18,6,1,0,0,4,3,1,684.6666666666666,0,0,0 +9974,12223,22310,22309,-9,-9,2,1,1,48,1,0,1,0,3,-9,1,1,0,3,8.567422185247393,8.454266514795222,0,2,0,-9,28,0,4,84.50195103503437,0,0,0,44,3,4,1,3,3,2019,1,1,10,0,50,60,15,1,0,1,0,8.878104134890455,8.878104134890455,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.91,48.08,4,1,0,0,4,3,1,684.6666666666666,0,0,0 +9974,12223,22311,-9,22309,22310,5,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.6716731662357,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,684.6666666666666,0,0,0 +9974,12224,22312,-9,22309,22310,3,1,0,22,2,0,1,0,2,-9,2,1,0,2,7.827110176549859,7.873873476398215,0,3,0,0,0,-9,0,-955.6752470716028,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,24,9,48,40,15,1,9,-9,1,6.646556336856496,6.646556336856496,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.17,58.59,3,1,0,0,4,3,1,1718,0,0,0 +9974,12225,22313,-9,22309,22310,4,1,0,19,2,0,1,0,2,-9,2,1,0,4,7.577682273420884,7.562617115692,0,3,0,0,0,-9,0,-1027.268081560887,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,2,40,32,15,1,2,-9,1,7.242302811739307,7.242302811739307,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,45.01,5,1,0,0,4,3,1,924,0,0,0 +9975,12226,22314,22316,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,5,7.245647951395238,7.264917760490708,0,2,0,-9,16,0,-13,28.46390141946166,0,0,1,55,2,3,1,3,3,2019,3,2,13,2,8,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.637123558063806,0,0,0,50.24,58.02,6,1,0,0,12,3,1,960.25,0,0,0 +9975,12226,22315,-9,22314,22316,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.9934506816319,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,960.25,0,0,0 +9975,12226,22316,22314,-9,-9,2,1,1,55,1,0,2,0,2,-9,1,1,0,3,8.153496174884827,7.841408829568925,0,2,0,-9,15,0,13,60.49543727895855,0,0,0,42,2,5,3,2,1,2019,2,1,10,0,42,40,15,1,0,3,0,7.683798278698276,7.683798278698276,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,12,3,1,960.25,0,0,0 +9975,12226,22317,-9,22314,22316,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.483490561251,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,960.25,0,0,0 +9976,12227,22318,-9,22320,22319,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.561919835437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,3,1,441.3333333333333,0,0,0 +9976,12227,22319,22320,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,4,7.749426620455131,7.563327519570873,0,2,0,-9,7,0,0,-49.42735651499689,0,0,0,47,2,4,1,-9,-9,2019,1,1,7,0,48,42,15,1,0,1,0,5.051545783703687,5.051545783703687,0,0,0,0,0,0,0,1,1,0,.825933862379623,0,7.494524087637317,3,57.16,56.15,6,1,0,0,10,3,1,441.3333333333333,0,0,0 +9976,12227,22320,22319,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,4,7.367253241904069,7.852519020087635,0,2,0,-9,7,0,0,-26.03504339350667,0,0,0,47,2,4,1,2,2,2019,1,2,10,0,20,20,15,1,0,1,0,11.30317736037948,11.30317736037948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,10,3,1,441.3333333333333,0,0,0 +9977,12228,22321,22322,-9,-9,1,1,1,55,1,0,0,0,3,-9,4,3,0,2,0,6.514166143565774,6.404696032686424,1,0,-9,37,0,0,-59.65286716639629,0,0,0,55,2,3,3,2,2,2019,4,2,16,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.699481567931031,6.318001061898127,0,0,49.55,39.54,7,1,0,0,1,3,1,879.5,0,0,0 +9977,12228,22322,22321,-9,-9,2,1,0,55,1,0,0,0,2,-9,4,3,0,3,0,7.359220321132887,7.48157576882664,1,0,-9,37,0,0,-83.6111193329304,0,0,0,55,3,2,3,3,2,2019,4,1,10,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.874492882702524,7.458366637270484,0,0,59.47,41.45,7,1,0,0,1,3,1,879.5,0,0,0 +9978,12229,22323,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,0,5.018336660253369,4.885793499720881,3,0,0,0,-9,0,-958.4308152281988,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.779246190756417,0,0,27.76,23.85,1,1,0,0,1,2,0,2980,0,0,0 +9979,12230,22324,-9,22325,22326,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.883013544375,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,1,0,438.6666666666667,0,0,0 +9979,12230,22325,22326,-9,-9,1,1,0,30,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,12,0,-3,0,0,0,1,33,1,3,3,3,3,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.87,49.04,3,3,0,0,8,1,0,438.6666666666667,0,0,0 +9979,12230,22326,22325,-9,-9,2,1,1,33,1,0,1,0,1,-9,3,3,0,3,0,0,0,2,0,-9,12,0,3,0,0,0,0,30,2,4,3,3,2,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,114.9010511762455,1,54.37,54.8,7,3,1,0,8,1,0,438.6666666666667,0,0,0 +9980,12231,22327,22328,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,51,0,-4,-79.09203858181844,0,0,0,72,2,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.899627734058132,0,0,0,60.12,54.8,2,1,0,0,5,3,1,568.5,0,0,0 +9980,12231,22328,22327,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,7.99346766015454,7.532537845219988,1,0,-9,51,0,4,-79.25567743981433,0,0,0,68,2,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.317079946867896,7.554474318334936,0,0,61.28,35.65,6,1,0,0,5,3,1,568.5,0,0,0 +9981,12232,22329,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,1,1,0,4,6.760410517549746,7.322137716679343,5.901261531739025,3,0,0,0,-9,0,-992.7296256214419,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,40,15,1,0,-9,0,3.807346320348031,3.807346320348031,0,0,0,0,0,0,0,0,0,0,0,5.549912129712062,0,0,58.3,52.91,6,1,0,0,5,3,1,728,0,0,0 +9982,12233,22330,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-991.186301897194,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,0,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,25,7,1,0,0,8,1,0,1096,0,0,0 +9983,12234,22331,22332,-9,-9,1,1,1,30,1,0,1,0,2,-9,2,1,0,2,8.244726582245328,8.54748201727727,0,2,0,-9,5,0,-1,128.6269882447925,0,0,0,31,2,3,1,2,2,2019,1,2,17,5,52,44,15,1,5,1,0,9.353001861265938,9.353001861265938,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.03,55.84,3,1,0,0,7,4,0,356,0,0,0 +9983,12234,22332,22331,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,3,6.77165349728052,6.552282234420511,0,2,0,-9,5,0,1,40.07788794185888,0,0,1,30,2,2,1,-9,-9,2019,1,1,26,9,13,25,15,1,9,1,0,6.878117807347737,6.878117807347737,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.29,51.23,2,1,0,0,7,4,0,356,0,0,0 +9984,12235,22333,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,3,8.24301833891114,7.94647643416384,0,3,0,0,0,-9,0,-1029.928731724608,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,6,35,35,15,1,6,-9,0,14.51981403262655,14.51981403262655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.56,52.74,5,1,0,0,10,4,1,786,0,0,0 +9985,12236,22334,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,2,8.034502081572754,7.961859031434257,0,3,0,0,0,-9,0,-952.9684353065705,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,31,12,38,40,15,1,12,-9,0,10.55759852309308,10.55759852309308,0,0,0,0,0,0,0,0,0,0,0,0,6.122383808167423,3,21.92,44.43,2,1,0,1,5,4,0,413,0,0,0 +9986,12237,22335,22336,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.058396576102071,7.127684549370669,0,1,0,-9,22,-9,0,-75.12220206061693,-9,0,0,56,2,4,1,2,2,2019,1,1,11,0,32,0,15,1,0,1,0,5.025363625954303,5.025363625954303,0,0,0,0,0,0,0,0,0,0,5.601989219663674,0,7.201855870507062,3,46.16,58.62,5,1,0,0,10,4,1,1549,0,0,0 +9986,12237,22336,22335,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.307014033839723,8.637972114322281,0,1,0,-9,25,-9,0,81.34772208442922,-9,0,0,56,2,4,1,3,3,2019,1,2,13,2,57,0,15,1,2,1,0,11.14092114153335,11.14092114153335,0,0,0,0,0,0,0,0,0,0,7.17996304091807,0,0,0,42.77,58.63,6,1,0,0,10,4,1,1549,0,0,0 +9986,12238,22337,-9,22335,22336,3,1,0,19,2,0,0,0,2,-9,2,1,0,4,7.455733563843996,7.181380846831854,0,3,0,-9,0,-9,0,-938.3510210756829,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,0,15,1,0,-9,1,7.220736586288714,7.220736586288714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,3,1,493,0,0,0 +9987,12239,22338,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1049.262828409899,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.37813676736393,3,41.72,25.91,5,1,0,0,2,1,0,282,0,0,0 +9988,12240,22339,-9,22342,22341,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-984.5835502522348,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,10,4,1,800.5,0,0,0 +9988,12240,22340,-9,22342,22341,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.303296268288,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,4,1,800.5,0,0,0 +9988,12240,22341,22342,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.295165614698162,8.382000246327751,0,2,0,-9,21,0,0,31.56740513500766,0,0,0,46,1,4,1,2,2,2019,1,1,8,0,43,39,15,1,0,1,0,13.43544779274485,13.43544779274485,0,0,0,0,0,0,0,1,1,0,2.782730020676305,0,0,0,55.76,52.64,6,1,0,0,10,4,1,800.5,0,0,0 +9988,12240,22342,22341,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,4,7.874685703863417,7.827392021652559,0,2,0,-9,21,0,0,-55.58424214387274,0,0,0,46,1,4,1,2,2,2019,1,2,12,2,19,19,15,1,2,1,0,15.71871345405559,15.71871345405559,0,0,0,0,0,0,0,1,1,0,2.620885334809654,0,0,0,55.19,54.26,6,1,0,0,10,4,1,800.5,0,0,0 +9989,12241,22343,-9,22345,22344,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.6180508144092,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,1202,0,0,0 +9989,12241,22344,22345,-9,-9,2,1,1,44,1,0,2,0,3,-9,2,1,0,3,8.011020536430784,7.681731655070101,0,2,0,-9,7,0,2,-42.45975647310178,0,0,0,42,2,3,3,3,2,2019,2,1,8,0,40,40,15,1,0,3,0,9.2821571865189,9.2821571865189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.57,46.25,4,1,0,0,4,3,1,1202,0,0,0 +9989,12241,22345,22344,-9,-9,1,1,0,42,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-2,16.82926062858632,0,0,1,44,3,3,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,4,1,0,0,4,3,1,1202,0,0,0 +9989,12241,22346,-9,22345,22344,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.3445824883232,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,1202,0,0,0 +9990,12242,22347,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,1,7.971483945474849,8.002537461910908,0,3,0,0,0,-9,0,-1044.730600877625,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,10,42,43,15,1,10,-9,0,9.374422498001522,9.374422498001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.03,34.27,1,1,0,1,8,4,0,2541,0,0,0 +9991,12243,22348,22349,-9,-9,1,1,1,41,1,0,1,0,2,-9,1,1,0,3,5.465501787984524,5.658643498855996,0,2,0,-9,2,0,7,-84.8394766578817,0,0,0,34,1,3,1,3,2,2019,1,2,7,0,47,47,15,1,0,1,0,.5288006657187321,.5288006657187321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.98,34.42,7,1,0,0,5,2,1,758,0,0,0 +9991,12243,22349,22348,-9,-9,2,1,0,34,1,0,1,0,1,-9,2,1,0,3,6.921733372462855,6.936659759745847,0,2,0,-9,2,0,-7,-176.7310402118482,0,0,1,41,2,3,1,-9,-9,2019,1,1,10,3,16,40,15,1,3,1,0,6.684839319851644,6.684839319851644,0,0,0,0,0,0,0,1,1,0,2.677417923989464,0,0,0,58.91,45.88,7,2,0,0,5,2,1,758,0,0,0 +9991,12243,22350,-9,22349,22348,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.104471203137,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,2,1,758,0,0,0 +9992,12244,22351,-9,-9,-9,1,1,0,68,2,0,0,0,3,-9,4,3,0,3,0,5.173707088228269,5.128759792738094,3,0,0,0,-9,0,-1005.356107312603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,5.679156022134452,0,0,0,0,0,1,1,0,0,5.338217441923423,0,0,36.93,44.75,6,1,0,0,9,2,1,560,0,0,0 +9993,12245,22352,22353,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,3,6.524098854054475,6.693638134033241,0,1,0,-9,47,0,-6,-1.021899765396131,0,0,0,70,3,3,3,-9,-9,2019,2,2,11,0,12,11,15,1,2,4,0,9.030904227347628,9.030904227347628,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,4,3,1,359,0,0,0 +9993,12245,22353,22352,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.809915862170502,7.11596540829242,1,0,-9,7,0,6,-61.15905577167069,0,0,0,64,2,3,1,-9,-9,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.386043005909291,7.103580756021164,0,0,52,47,5,1,0,0,4,3,1,359,0,0,0 +9994,12246,22354,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,2,1,0,4,8.56091390474827,9.294619174417319,6.781889912594838,3,0,0,0,-9,0,-988.1026581154348,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,40,15,1,0,-9,0,28.07924353121996,28.07924353121996,0,0,0,0,0,0,0,1,1,0,3.441605082163037,6.703081537865779,0,0,57.16,56.15,6,1,0,0,7,5,1,459,0,0,0 +9995,12247,22355,22356,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,8.344360001314525,8.134383372426008,0,1,0,-9,7,0,1,112.3803081742531,0,0,0,33,1,4,1,2,1,2019,1,2,10,0,43,37,15,1,0,1,0,10.82403585611957,10.82403585611957,0,0,0,0,0,0,0,0,0,0,3.752871157225515,0,0,0,52.05,55.95,6,1,0,0,4,5,1,384,0,0,0 +9995,12247,22356,22355,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,4,7.98526673148693,8.138654968090833,0,1,0,-9,7,0,-1,-34.04308835925296,0,0,1,34,1,4,1,-9,-9,2019,1,1,10,0,39,40,15,1,0,1,0,11.91453298466038,11.91453298466038,0,0,0,0,0,0,0,0,0,0,3.990919336773028,0,0,0,54.2,57.49,6,1,0,0,4,5,1,384,0,0,0 +9996,12248,22357,22358,-9,-9,2,1,1,39,1,0,0,0,2,-9,1,1,0,5,7.156082190004808,7.35544972465422,0,1,0,-9,7,0,1,26.26056445852391,0,0,0,38,1,5,1,2,3,2019,1,1,10,0,60,45,15,1,0,1,0,2.38972642049612,2.38972642049612,0,0,0,0,0,0,0,0,0,0,1.85299411609377,0,0,0,59.19,51.29,6,1,0,0,11,4,1,432,0,0,0 +9996,12248,22358,22357,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,5,8.61189446138666,8.548464854643909,0,1,0,-9,7,0,-1,-84.09721217674613,0,0,1,39,2,5,1,2,3,2019,1,2,13,3,42,32,15,1,3,1,0,17.23467806094225,17.23467806094225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.79,52.95,5,1,0,0,11,4,1,432,0,0,0 +9997,12249,22359,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,3,8.504979781752978,8.672944937463756,0,3,0,0,0,-9,0,-986.1896648348988,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,2,13,42,15,1,2,-9,0,43.35903109943648,43.35903109943648,0,0,0,0,0,0,0,0,0,0,5.262890183587674,0,0,0,19.69,65.40000000000001,3,1,0,0,8,5,1,923,0,0,0 +9998,12250,22360,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,5.822706907539894,5.749235078773265,3,0,0,0,-9,0,-1019.983023195668,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.063607636560927,5.628657352351255,0,0,53,44,6,1,0,0,5,2,1,1947,0,0,0 +9999,12251,22361,22362,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,5,7.395476388637192,7.211137898009672,0,1,0,-9,3,0,-11,-80.34484266090112,0,1,1,39,2,4,1,-9,-9,2019,1,1,7,0,20,30,15,1,0,1,0,9.858696289142424,9.858696289142424,0,0,0,0,0,0,0,0,0,0,1.848487873773168,0,0,0,57.06,57.76,6,1,0,0,6,5,1,688,0,0,0 +9999,12251,22362,22361,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,4,8.848775890975974,8.605871188517108,0,1,0,-9,3,0,11,-54.42283132984782,0,0,0,28,1,5,1,1,2,2019,1,2,8,0,50,55,15,1,0,1,0,13.88178762040838,13.88178762040838,0,0,0,0,0,0,0,0,0,0,1.785874900567404,0,0,0,46.16,58.62,5,1,0,0,6,5,1,688,0,0,0 +10000,12252,22363,22364,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.501244833397958,7.561402947319749,4.818975941982308,1,0,-9,40,0,1,39.91543827078529,0,0,0,58,2,3,1,3,3,2019,1,2,11,0,20,20,15,1,0,1,0,12.64660605458699,12.64660605458699,0,0,0,0,0,0,0,0,0,0,3.576766353619041,5.114738656355732,0,0,53.08,47.11,6,1,0,0,2,5,1,593,0,0,0 +10000,12252,22364,22363,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.545422825724184,8.601596083101997,7.425020854677593,1,0,-9,7,0,-1,-178.4683840257713,0,0,0,59,3,3,1,-9,-9,2019,1,1,10,0,38,38,15,1,1,1,0,16.86339919925587,16.86339919925587,0,0,0,0,0,0,0,0,0,0,0,7.849164819557696,0,0,51,49,5,1,0,0,2,5,1,593,0,0,0 +10000,12253,22365,-9,22363,22364,3,1,1,23,2,0,0,0,1,-9,97,3,0,4,6.697642202701315,6.654280990611315,0,3,0,0,0,-9,0,-952.3375129357424,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,30,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.370437298736387,0,0,0,49,58,5,1,0,0,2,2,1,214,0,0,0 +10001,12254,22366,-9,22367,22369,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.016410405896,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,1,496.75,0,0,0 +10001,12254,22367,22369,-9,-9,2,1,0,38,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,18,0,0,-28.96145710081714,0,0,1,38,2,5,1,2,2,2019,3,1,19,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.18,56.79,5,1,0,0,2,2,1,496.75,0,0,0 +10001,12254,22368,-9,22367,22369,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.7268233650237,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,2,1,496.75,0,0,0 +10001,12254,22369,22367,-9,-9,1,1,1,38,1,0,2,0,2,-9,1,1,0,5,7.947920748909712,8.26654815438258,0,2,0,-9,18,0,0,35.71083366152863,0,0,0,38,2,4,3,2,2,2019,2,2,9,0,41,42,15,1,0,3,0,7.875918810508836,7.875918810508836,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,54.75,6,1,0,0,2,2,1,496.75,0,0,0 +10002,12255,22370,22371,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,3,7.363568245058373,7.347438935758821,0,1,0,-9,42,0,1,1.367901798801073,0,0,0,59,2,4,3,3,3,2019,2,2,9,0,50,50,15,1,0,4,0,3.596494110053762,3.596494110053762,0,0,0,0,0,0,0,0,0,0,3.254609088722526,0,0,0,58.56,44.55,6,1,0,0,10,2,1,1586,0,0,0 +10002,12255,22371,22370,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,42,0,-1,-24.82620069091793,0,0,0,60,2,3,1,2,3,2019,3,1,4,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.840711407416522,0,0,0,66.44,47.81,7,1,0,0,10,2,1,1586,0,0,0 +10003,12256,22372,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,5,8.277810136384764,8.179284628273784,0,3,0,0,0,-9,0,-990.7878859698457,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,60,49,15,1,0,-9,0,7.024963384265641,7.024963384265641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.53,41.57,6,1,0,0,1,4,1,1319,0,0,0 +10004,12257,22373,22374,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,4,8.74416037148038,8.693931027560758,0,1,0,-9,7,0,-5,77.60681190948311,0,0,1,44,2,4,1,2,2,2019,1,2,8,0,39,37,15,1,0,1,0,20.93565994382039,20.93565994382039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,6,5,1,480,0,0,0 +10004,12257,22374,22373,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.415996258990068,8.14497173031611,0,1,0,-9,7,0,5,126.5385171775279,0,0,0,39,1,4,1,2,2,2019,1,1,6,0,39,40,15,1,0,1,0,9.853647147507433,9.853647147507433,0,0,0,0,0,0,0,0,0,0,3.007507232224203,0,0,0,60.12,54.8,6,1,0,0,6,5,1,480,0,0,0 +10005,12258,22375,-9,22378,22377,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-896.9751738757618,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,741.5,0,0,0 +10005,12258,22376,-9,22378,22377,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-929.8776849273329,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,2,1,741.5,0,0,0 +10005,12258,22377,22378,-9,-9,2,1,1,38,1,1,2,0,2,-9,2,1,0,4,7.798046210491405,8.210275303812693,0,2,0,-9,6,0,10,122.8340049674697,0,0,0,28,2,3,3,2,2,2019,2,1,6,0,39,39,15,1,0,3,0,8.113939104560577,8.113939104560577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.47,57.73,3,1,0,0,12,2,1,741.5,0,0,0 +10005,12258,22378,22377,-9,-9,1,1,0,28,1,1,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,6,0,-10,-123.5678554243667,0,1,1,38,2,4,1,2,2,2019,3,2,8,1,0,18,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,1,0,12,2,1,741.5,0,0,0 +10006,12259,22379,22380,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.394600041372971,8.496358497575562,0,1,0,-9,34,0,2,13.72727044621961,0,0,0,55,1,4,1,3,1,2019,1,2,6,0,38,40,15,1,0,1,0,15.79871962005176,15.79871962005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,6,3,0,0,5,5,0,662,0,0,0 +10006,12259,22380,22379,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,9.153377523997527,9.041295007677659,0,1,0,-9,34,0,-2,51.86524113439599,0,0,0,57,1,4,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,28.59052306163898,28.59052306163898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,5,5,0,662,0,0,0 +10007,12260,22381,22382,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.190043748550627,7.922839100325892,0,1,0,-9,7,0,6,-68.50203019803728,0,0,0,50,3,3,1,2,3,2019,1,2,8,0,37,50,15,1,0,1,0,10.60191849542557,10.60191849542557,0,0,0,0,0,0,0,0,0,0,6.257383593588699,0,0,0,54.37,54.8,5,1,0,0,11,5,1,1033,0,0,0 +10007,12260,22382,22381,-9,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,3,8.477331144059582,8.220513369846467,0,1,0,-9,7,0,-6,35.75154049803831,0,0,0,56,2,3,1,-9,-9,2019,1,1,12,0,39,39,15,1,0,1,0,11.68588423283923,11.68588423283923,0,0,0,0,0,0,0,0,0,0,1.071431027456824,0,0,0,37.82,50.1,4,1,0,0,11,5,1,1033,0,0,0 +10008,12261,22383,-9,-9,-9,1,1,0,46,3,0,1,0,3,-9,2,1,0,3,7.085940044846562,6.951314639134932,0,4,0,0,0,-9,0,-1063.682857090018,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,21,17,15,1,0,-9,0,6.81915316804116,6.81915316804116,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.53,45.46,6,4,0,1,8,2,0,522,0,0,0 +10008,12261,22384,-9,22383,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-955.8502677835329,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,2,0,522,0,0,0 +10009,12262,22385,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-926.2997365008461,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,1.624308332226584,0,0,0,2.032425827921789,68.10158552517493,1,1,0,.842739570364323,0,0,0,34.81,26.01,6,1,0,0,7,1,0,535,0,0,0 +10010,12263,22386,-9,-9,-9,1,1,0,68,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-937.1179088586838,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,13.12674115975208,0,1,1,0,0,0,0,0,26.57,25.95,6,1,0,0,6,1,0,467,0,0,0 +10011,12264,22387,22391,-9,-9,5,1,1,47,1,0,4,0,2,-9,2,1,0,3,9.53143859085516,9.29467409424883,0,2,0,-9,3,0,17,-33.22037560557025,0,0,0,30,2,4,1,-9,-9,2019,1,1,12,1,51,52,15,1,1,1,0,29.40130282967869,29.40130282967869,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,6,1,0,0,10,5,0,685.2,0,0,0 +10011,12264,22388,-9,22391,22387,2,1,1,10,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-949.6181389441672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,10,5,0,685.2,0,0,0 +10011,12264,22389,-9,22391,22387,4,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.8488482345527,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,5,0,685.2,0,0,0 +10011,12264,22390,-9,22391,22387,3,1,1,13,2,0,4,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1053.45159560149,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,10,5,0,685.2,0,0,0 +10011,12264,22391,22387,-9,-9,1,1,0,30,1,0,4,0,2,-9,2,1,0,4,7.276528547337899,7.275283604004106,0,2,0,-9,3,0,-17,123.2762194223837,0,0,1,47,2,3,1,2,2,2019,1,5,9,0,35,25,15,1,0,1,0,7.232061290469898,7.232061290469898,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,7,1,0,0,10,5,0,685.2,0,0,0 +10012,12265,22392,22393,-9,-9,2,1,0,46,1,0,0,0,1,-9,1,1,0,2,8.21919637158871,8.197705890945796,0,1,0,-9,5,0,4,-60.58306521459711,0,0,0,42,2,5,1,-9,-9,2019,1,1,12,1,28,21,15,1,1,1,0,15.25820088838437,15.25820088838437,0,0,0,0,0,0,0,0,0,0,9.258586139219453,0,0,0,46.94,27.42,6,1,0,0,10,5,1,624.5,0,0,0 +10012,12265,22393,22392,-9,-9,1,1,1,42,1,0,0,0,2,-9,1,1,0,5,8.173853334331664,8.283977198989577,0,1,0,-9,5,0,-4,-73.91814870818602,0,0,0,46,1,2,1,-9,-9,2019,1,2,8,0,35,40,15,1,0,1,0,11.32935751964459,11.32935751964459,0,0,0,0,0,0,0,0,0,0,8.777997673993891,0,0,0,56.08,47.23,6,1,0,0,10,5,1,624.5,0,0,0 +10013,12266,22394,22395,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.683076490892947,7.543892777981017,1,0,-9,38,0,6,-79.30114983052532,0,0,0,64,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.429568713883405,7.725372986802231,3.210526324637378,3,65.54000000000001,33.23,6,1,0,0,2,2,1,233,0,0,0 +10013,12266,22395,22394,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,38,0,-6,43.23890935690045,0,0,0,70,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.04486147128925,0,0,0,50.92,33.35,6,1,0,0,2,2,1,233,0,0,0 +10014,12267,22396,22397,-9,-9,2,1,0,77,1,0,0,0,2,-9,2,1,0,3,5.171721303918113,5.46727768522817,0,1,0,-9,52,0,-4,-75.39533686228623,0,0,0,81,2,3,3,-9,-9,2019,2,1,10,0,16,0,15,1,0,4,0,1.335470775015597,1.335470775015597,0,0,0,0,0,0,0,1,1,0,4.880999119480664,0,5.088053181501667,3,52,45,6,1,0,0,7,1,1,814,0,0,0 +10014,12267,22397,22396,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,4,-89.97675908510364,0,0,0,77,2,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,1,1,814,0,0,0 +10015,12268,22398,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,2,1,0,4,8.507904049105496,8.438453761330022,0,3,0,0,0,-9,0,-1102.096165357069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,25,30,15,1,0,-9,0,17.02526721302258,17.02526721302258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,57.02,6,1,0,0,10,4,1,1349,0,0,0 +10015,12269,22399,-9,22398,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,4,7.283356084335571,7.400549853190872,0,3,0,0,0,-9,0,-1084.127932610568,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,30,0,15,1,1,-9,1,5.986528273354513,5.986528273354513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,10,3,1,345,0,0,0 +10016,12270,22400,22401,-9,-9,1,1,0,81,1,0,0,0,1,-9,4,3,0,3,0,7.561197914726508,6.922785130053937,1,0,-9,56,0,-1,-96.53216518205818,0,0,0,82,3,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.963465280793755,0,0,55.12,42.1,6,1,0,0,9,4,1,629,0,0,0 +10016,12270,22401,22400,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,4,0,8.164287407493237,8.292640355678154,1,0,-9,56,0,1,-30.02851169977165,0,0,0,81,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.572887547314302,7.981243489851586,0,0,45.91,59.89,6,1,0,0,9,4,1,629,0,0,0 +10017,12271,22402,22403,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,8.736224041382036,8.657471049279478,1,0,-9,46,0,5,-.3166680045389656,0,0,0,65,2,4,3,3,3,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.828029828240339,8.750952917066964,0,0,60.3,36.05,6,1,0,0,7,4,1,399.5,0,0,0 +10017,12271,22403,22402,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,5.165740595015936,5.005871861369934,1,0,-9,46,0,-5,-66.8431589266839,0,0,0,70,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.56785955524709,4.917722266130329,0,0,57.16,56.15,6,1,0,0,7,4,1,399.5,0,0,0 +10018,12272,22404,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,5,7.925597218591079,8.189745981928413,0,3,0,0,0,-9,0,-899.6054775177232,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,50,15,1,0,-9,0,7.46888775236216,7.46888775236216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,5,1,0,0,10,4,1,385,0,0,0 +10019,12273,22405,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,5,8.684980086426778,8.760797904299292,0,3,0,0,0,-9,0,-954.7391117025206,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,41,41,15,1,2,-9,0,18.41108903875892,18.41108903875892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,6,1,0,0,7,5,1,419,0,0,0 +10020,12274,22406,22407,-9,-9,1,1,1,58,1,0,0,0,1,-9,1,1,0,4,8.301537453222988,8.382551813109146,0,1,0,-9,8,0,1,14.25037127800905,-9,0,0,57,1,3,1,3,3,2019,1,2,12,1,75,0,15,1,1,1,0,6.775107235685264,6.775107235685264,0,0,0,0,0,0,0,0,0,0,3.41927905155157,0,1.164850856041065,0,54,54,4,1,0,0,11,3,1,1669,0,0,0 +10020,12274,22407,22406,-9,-9,2,1,0,57,1,0,0,0,1,-9,1,1,0,3,0,0,0,1,0,-9,8,0,-1,11.62677022224565,0,0,0,58,1,4,1,3,2,2019,1,1,8,0,50,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.719116262430894,0,0,3,54.55,49.25,6,1,0,0,11,3,1,1669,0,0,0 +10021,12275,22408,22411,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,2,9.005817732167905,9.229051216870031,0,2,0,-9,6,-9,-3,110.4457265973968,-9,0,1,41,2,4,1,1,1,2019,1,1,22,10,40,0,15,1,10,1,0,27.84885205153158,27.84885205153158,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.28,47.77,4,1,0,0,5,5,1,546.5,0,0,0 +10021,12275,22409,-9,22408,22411,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-978.9501590550917,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,5,1,546.5,0,0,0 +10021,12275,22410,-9,22408,22411,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-880.9369061784429,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,5,1,546.5,0,0,0 +10021,12275,22411,22408,-9,-9,1,1,1,41,1,0,2,0,2,-9,1,1,0,4,7.517152317816095,7.214586622541758,0,2,0,-9,6,-9,3,-67.59754778471191,-9,0,0,38,1,2,1,1,2,2019,1,2,12,1,60,0,15,1,1,1,0,2.769023526180438,2.769023526180438,0,0,0,0,0,0,0,1,1,0,3.960910071085613,0,0,0,48.76,53.24,6,1,0,0,5,5,1,546.5,0,0,0 +10022,12276,22412,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,4,6.814165901242778,6.3211234649361,0,3,0,0,0,-9,0,-904.9808959951747,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,36,36,15,1,4,-9,0,2.289348944635918,2.289348944635918,0,0,0,0,0,0,0,0,0,0,0,0,4.760372902691238,3,53.39,52.35,3,4,0,0,8,2,0,573,0,0,0 +10022,12277,22413,-9,-9,22412,2,1,1,21,2,0,0,0,2,0,7,2,0,4,5.71077005790202,5.513185148598007,0,3,0,0,0,-9,0,-961.5953903531305,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,7,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.19,52.17,5,4,0,0,8,2,0,767,0,0,0 +10023,12278,22414,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,5,7.604594953676112,7.735081262537758,0,3,0,-9,0,0,0,-1059.068909772173,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,45,45,15,1,0,-9,0,5.967337432541644,5.967337432541644,0,0,0,0,0,0,0,0,0,0,0,0,2.201787893395392,3,26.5,60.14,6,1,0,0,9,3,1,635,0,0,0 +10024,12279,22415,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-839.344461218679,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.04,30.09,4,1,0,0,12,1,0,126,0,0,0 +10025,12280,22416,22417,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,8.032498274944141,8.386550582607462,1,0,-9,52,0,3,-14.37557070026525,0,0,0,72,2,4,3,3,2,2019,4,2,13,4,0,0,15,4,4,4,0,0,0,1,0,9.544351639491543,0,0,0,0,1,1,0,0,7.927617841201481,0,0,52.32,38.44,6,1,0,0,8,3,1,179,0,0,0 +10025,12280,22417,22416,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,-3,-29.64689599985611,0,0,0,75,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.290580912960444,0,0,0,59.14,52.5,6,1,0,0,8,3,1,179,0,0,0 +10026,12281,22418,22419,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,8.872352099951479,8.597173266879018,0,2,0,-9,18,0,0,29.85897543020134,0,0,0,42,1,4,1,3,2,2019,1,2,9,0,48,51,15,1,0,1,0,13.54183238659029,13.54183238659029,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.13,48.92,6,1,0,0,12,5,1,1356.333333333333,0,0,0 +10026,12281,22419,22418,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,4,8.93064150412415,9.006755731559515,0,2,0,-9,18,0,0,-32.79032459764425,0,0,1,42,1,4,1,2,2,2019,1,1,6,0,35,35,15,1,0,1,0,23.1158123765112,23.1158123765112,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,12,5,1,1356.333333333333,0,0,0 +10026,12281,22420,-9,22419,22418,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.727233515543,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,5,1,1356.333333333333,0,0,0 +10027,12282,22421,22422,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,2,8.442559455368118,8.424053328127794,0,1,0,-9,7,0,1,79.79531018444678,0,0,0,59,2,4,1,3,3,2019,1,2,17,5,35,37,15,1,5,1,0,14.6500549083246,14.6500549083246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.8,52.21,4,1,0,0,11,4,1,546,0,0,0 +10027,12282,22422,22421,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.704443852445156,7.45002962408231,0,1,0,-9,7,0,-1,76.34405297705932,0,0,0,60,3,2,1,3,3,2019,1,1,13,1,21,35,15,1,1,1,0,9.79656101245912,9.79656101245912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,11,4,1,546,0,0,0 +10028,12283,22423,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-951.2084600591696,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.95,15.69,3,1,0,0,9,1,0,1362,0,0,0 +10029,12284,22424,-9,22427,22426,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.209401963032,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,1722.5,0,0,0 +10029,12284,22425,-9,22427,22426,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.2561864978262,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,1722.5,0,0,0 +10029,12284,22426,22427,-9,-9,2,1,1,33,1,1,2,0,2,-9,2,1,0,4,8.713002178739989,8.995141369960095,0,2,0,-9,8,0,0,-2.246581785462888,0,0,0,33,2,4,1,2,3,2019,1,1,10,0,40,40,15,1,0,1,0,13.68047464116092,13.68047464116092,0,0,0,0,0,0,0,1,1,0,6.787444528098901,0,0,0,41.3,60.77,6,1,0,0,6,4,1,1722.5,0,0,0 +10029,12284,22427,22426,-9,-9,1,1,0,33,1,1,2,0,2,-9,2,1,0,4,7.349671095344448,7.149676547456837,0,2,0,-9,8,0,0,17.09627089958572,0,0,1,33,2,4,1,2,2,2019,1,2,13,3,17,20,15,1,3,1,0,11.95701537475821,11.95701537475821,0,0,0,0,0,0,0,1,1,0,0,0,.3138944670872992,3,45.91,59.89,6,1,0,0,6,4,1,1722.5,0,0,0 +10030,12285,22428,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1027.722490702238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,19.67583040976295,0,1,1,0,0,0,0,0,61.52,42.41,6,4,0,0,8,1,0,157,0,0,0 +10031,12286,22429,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,5.53885011255003,5.715077652521005,3,0,0,0,-9,0,-1018.462762062836,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,.2233495030260966,0,0,1,1,0,3.374421082950691,5.949921127486453,0,3,64.55,36.47,7,1,0,0,5,2,1,2107,0,0,0 +10031,12287,22430,-9,22429,-9,2,1,1,51,3,0,0,0,3,-9,1,1,0,3,8.497565353999219,8.632038430593417,0,3,0,0,0,-9,0,-1074.113790393366,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,40,15,1,0,-9,1,30.57793200919968,30.57793200919968,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,5,1,0,1,5,5,1,2518,0,0,0 +10032,12288,22431,22432,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,43,0,-2,-9.94988232251505,0,0,0,69,3,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,7,3,1,363,0,0,0 +10032,12288,22432,22431,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,5,0,7.777299101835147,8.055323438654579,1,0,-9,4,0,2,66.83931609039239,0,0,0,67,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.683488455206065,8.017363602547452,0,0,56.07,55.46,6,1,0,0,7,3,1,363,0,0,0 +10032,12289,22433,-9,22431,22432,3,1,1,29,2,0,0,0,2,-9,2,1,0,3,8.068128040110869,7.928497635536446,0,3,0,0,0,-9,0,-1081.335901476051,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,58,44,15,1,3,-9,1,5.345406690595015,5.345406690595015,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.13,55.9,4,1,0,0,7,4,1,183,0,0,0 +10033,12290,22434,-9,22436,22435,2,1,0,16,2,0,0,1,3,-9,7,2,0,4,0,0,0,1,0,-9,0,-9,0,-984.8207341610115,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.94,56.74,4,1,0,0,7,4,0,810.6666666666666,0,0,0 +10033,12290,22435,22436,-9,-9,3,1,1,29,1,0,0,0,2,-9,1,1,0,4,8.077667649476815,7.893513948183244,0,1,0,-9,1,-9,-4,-27.1620964743151,-9,1,0,33,2,3,1,-9,-9,2019,1,1,6,0,45,0,15,1,0,1,0,8.446844786712319,8.446844786712319,0,0,0,0,0,0,0,1,1,0,.8895549421787023,0,0,0,59.53,56.44,1,1,0,0,7,4,0,810.6666666666666,0,0,0 +10033,12290,22436,22435,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,3,8.180569924395041,8.288575580205311,0,1,0,-9,1,-9,4,148.7348615189873,-9,0,1,29,2,4,1,2,2,2019,1,3,7,0,37,0,15,1,0,1,0,8.243493894127807,8.243493894127807,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.26,47.91,6,1,0,0,7,4,0,810.6666666666666,0,0,0 +10034,12291,22437,-9,22439,22438,2,1,1,21,2,0,1,0,2,-9,2,1,0,3,8.404626780617843,8.302364692066792,0,3,0,0,0,-9,0,-944.6843063671386,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,4,2,15,1,0,-9,1,117.462157062358,117.462157062358,0,0,0,0,0,0,0,1,0,1,0,0,.0598379831867488,3,49.04,55.86,5,4,0,0,8,4,0,6055,0,0,0 +10034,12292,22438,22439,-9,-9,3,1,1,61,1,0,1,0,1,-9,3,3,0,4,0,0,0,2,0,-9,9,0,6,-232.5243250533203,0,0,0,55,3,2,3,-9,-9,2019,4,1,13,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,72.75542370289587,3,54,53,6,4,1,0,8,2,0,710.6666666666666,0,0,0 +10034,12292,22439,22438,-9,-9,1,1,0,55,1,0,1,0,3,-9,6,3,0,2,0,4.77526616124416,5.218894991119694,2,0,-9,38,0,-6,84.44486910199092,0,0,0,61,1,4,3,3,-9,2019,4,3,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.936067040545487,75.47860931118811,3,44,39,4,4,0,0,8,2,0,710.6666666666666,0,0,0 +10034,12292,22440,-9,22439,22438,4,1,1,16,2,0,1,0,3,-9,8,2,1,4,6.561763081473908,6.635067927511392,0,2,0,0,0,-9,0,-1033.390163554552,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,4,0,0,8,2,0,710.6666666666666,0,0,0 +10035,12293,22441,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,5,8.863285247177279,9.311271500660911,7.277724493086761,3,0,0,0,-9,0,-1002.360369308052,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,50,56,15,1,0,-9,0,20.22826321247953,20.22826321247953,0,0,0,0,0,0,0,0,0,0,0,7.317496193433075,0,0,48.71,61.53,3,1,0,0,13,5,1,383,0,0,0 +10036,12294,22442,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,2,8.501992074248202,8.289296050285124,0,3,0,0,0,-9,0,-951.6992759072391,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,1,40,49,15,1,1,-9,0,10.22454316010439,10.22454316010439,0,0,0,0,0,0,0,0,0,0,2.764426617146654,0,0,0,51.17,33.33,6,5,0,0,8,4,0,406,0,0,0 +10037,12295,22443,22444,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,7.903588517290976,7.90717703929903,1,0,-9,37,0,14,18.92953607381812,0,0,0,58,2,1,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,3,0,0,0,1,0,13.75021128393276,0,0,0,0,1,1,0,1.216520404936851,7.826891563755567,0,3,65.54000000000001,11.97,6,1,0,0,7,3,0,1042.5,0,0,0 +10037,12295,22444,22443,-9,-9,2,1,0,58,1,0,0,0,2,-9,8,3,1,1,0,5.176913524324581,5.226920332364617,1,0,-9,37,0,-14,-131.9301796745727,0,0,0,72,3,2,3,2,2,2019,4,1,12,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.138405138747298,5.057284405839193,0,2,56.43,12.74,7,1,0,0,7,3,0,1042.5,0,0,0 +10038,12296,22445,-9,-9,-9,1,1,1,47,3,0,0,0,3,-9,2,1,0,3,8.356322971110375,8.186797162542893,0,3,0,0,0,-9,0,-935.2089795800641,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,42,42,15,1,0,-9,0,12.26527138003066,12.26527138003066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,2,4,0,1858,0,0,0 +10039,12297,22446,22447,-9,-9,1,1,0,29,1,0,0,0,2,-9,1,1,0,1,0,0,0,1,0,-9,4,0,-2,-14.74023934640845,0,1,1,31,1,1,1,2,3,2019,1,2,8,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.879307779708524,0,0,0,29.95,28.52,3,1,0,0,2,4,1,593.5,0,0,0 +10039,12297,22447,22446,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,1,8.594719186336681,8.830577138827373,0,1,0,-9,4,0,2,-41.79805379560706,0,0,0,29,2,1,1,-9,-9,2019,1,1,21,9,44,55,15,1,9,1,0,11.60253570081706,11.60253570081706,0,0,0,0,0,0,0,0,0,0,6.610435404485457,0,0,0,28.37,31.81,3,1,0,0,2,4,1,593.5,0,0,0 +10040,12298,22448,22449,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,7.458248412710937,7.366091753428561,1,0,-9,8,0,13,48.92878521157885,0,0,0,68,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.826381846198577,0,0,62.87,41.3,7,1,0,0,13,3,1,699,0,0,0 +10040,12298,22449,22448,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,7.184134414152135,6.967685019453739,1,0,-9,8,0,-13,20.47182637981927,0,0,0,81,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.000105063562778,6.818871690977018,0,0,57.37,45.05,7,1,0,0,13,3,1,699,0,0,0 +10041,12299,22450,22451,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,6.711665541611877,7.625977979998892,7.427644388862166,1,0,-9,41,0,1,131.3068627396771,0,0,0,63,1,4,3,3,3,2019,2,2,6,0,15,22,15,1,0,4,0,6.581645588950827,6.581645588950827,0,0,0,0,0,0,0,0,0,0,4.059218658461026,7.812440543640101,0,0,61.68,49.95,7,1,0,0,5,4,1,944,0,0,0 +10041,12299,22451,22450,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.62897595928574,7.936707323658493,1,0,-9,41,0,-1,63.02346264859554,0,0,0,64,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.943571664223073,7.899966368617255,0,0,57.16,56.15,6,1,0,0,5,4,1,944,0,0,0 +10042,12300,22452,22453,-9,-9,1,1,1,30,1,0,0,0,3,-9,2,1,0,2,0,0,0,1,0,-9,8,0,1,55.9432099937083,0,0,0,29,2,3,1,2,2,2019,1,2,8,0,0,52,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.35,33.61,4,1,0,0,2,3,0,834.5,0,0,0 +10042,12300,22453,22452,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,3,7.794839524426426,7.809460153825402,0,1,0,-9,8,0,-1,-41.75175915946762,0,1,1,30,3,2,1,-9,-9,2019,1,1,11,0,40,43,15,1,0,1,0,7.304681098706766,7.304681098706766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,6,1,0,0,2,3,0,834.5,0,0,0 +10043,12301,22454,-9,22458,22457,3,1,0,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-980.8042611737858,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,1,2,0,1113.4,0,0,0 +10043,12301,22455,-9,22458,22457,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.994539646311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,2,0,1113.4,0,0,0 +10043,12301,22456,-9,22458,22457,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.64508685827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,2,0,1113.4,0,0,0 +10043,12301,22457,22458,-9,-9,1,1,1,33,1,0,3,0,2,-9,1,1,0,3,5.705680104047734,5.866229948443163,0,2,0,-9,5,0,2,132.4520274130157,0,0,0,31,2,4,3,2,2,2019,2,2,10,0,45,40,15,1,0,3,0,.7060252568654484,.7060252568654484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.13,42,5,1,0,0,1,2,0,1113.4,0,0,0 +10043,12301,22458,22457,-9,-9,2,1,0,31,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-2,5.352599997937584,0,0,1,33,2,3,1,-9,-9,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.38,56.81,4,1,0,0,1,2,0,1113.4,0,0,0 +10044,12302,22459,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,2,0,6.286299214101664,6.381646903513349,3,0,0,0,-9,0,-986.628996653903,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.816111121349557,0,0,55.11,34.4,6,1,0,0,2,2,1,1393,0,0,0 +10044,12303,22460,-9,-9,-9,2,1,1,49,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-852.2190478362729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.69,49.34,3,1,1,1,2,1,1,1614,0,0,0 +10045,12304,22461,-9,-9,-9,1,1,1,63,2,0,0,0,3,-9,2,1,0,5,7.831494910225167,7.900227213028715,5.252098915890024,3,0,0,0,-9,0,-963.0556856696165,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,42,15,1,0,-9,0,8.186273131522656,8.186273131522656,0,0,0,0,0,0,0,1,1,0,3.213526201693424,5.789389190558273,0,0,62.39,56.71,7,1,0,0,4,4,0,644,0,0,0 +10046,12305,22462,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,7.833172145529473,7.758928926435891,0,3,0,0,0,-9,0,-1055.264141818115,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,16,16,15,1,0,-9,0,15.07433114728275,15.07433114728275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,3,1,400,0,0,0 +10047,12306,22463,-9,22464,22465,4,1,1,17,2,0,0,1,2,0,7,2,0,5,5.858071475506826,6.149596367141658,0,1,0,0,0,-9,0,-975.9144818444596,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.56,59.44,1,1,0,0,5,5,1,341,0,0,0 +10047,12306,22464,22465,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,4,9.051376328725942,8.485160520274102,0,1,0,-9,24,0,-2,-71.70290690790378,0,0,0,49,1,4,1,2,2,2019,1,2,13,2,37,57,15,1,2,1,0,18.03176326887064,18.03176326887064,0,0,0,0,0,0,0,0,0,0,2.522395334475753,0,0,0,46.44,59.62,6,1,0,0,5,5,1,341,0,0,0 +10047,12306,22465,22464,-9,-9,2,1,1,49,1,0,0,0,1,-9,1,1,0,4,9.574214904836094,9.417902954589657,0,1,0,-9,10,0,2,-64.59939677839681,0,0,0,47,1,4,1,2,1,2019,1,1,7,0,35,24,15,1,0,1,0,52.2423365285852,52.2423365285852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,5,5,1,341,0,0,0 +10047,12307,22466,-9,22464,22465,3,1,0,19,2,0,0,0,2,-9,2,1,0,1,7.643682873725808,7.46587444552492,0,3,0,0,0,-9,0,-1027.749521706147,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,40,43,15,1,3,-9,1,6.039042605315876,6.039042605315876,0,0,0,0,0,0,0,0,0,0,.6343355311049935,0,0,0,25.62,42.98,4,1,0,0,5,3,1,301,0,0,0 +10048,12308,22467,22468,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,58,0,0,52.94774644216508,0,0,0,79,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.460815495637978,0,68.98337929249433,1,52,46,6,1,0,0,11,3,1,759,0,0,0 +10048,12308,22468,22467,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,7.874688988474155,7.466408457937592,1,0,-9,57,0,0,57.30547299585258,0,0,0,79,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,12.44476491796237,0,0,0,0,1,1,0,0,7.41071677020929,0,0,54,46,6,1,0,0,11,3,1,759,0,0,0 +10049,12309,22469,22470,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,4,8.151341209829488,8.431400118896665,0,1,0,-9,6,0,1,19.71481137731076,0,0,0,39,2,5,1,-9,-9,2019,1,1,9,0,40,50,15,1,1,1,0,8.684223971918113,8.684223971918113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,6,1,0,0,9,5,1,144,0,0,0 +10049,12309,22470,22469,-9,-9,1,1,0,39,1,0,0,0,2,-9,2,1,0,5,8.874930900415638,8.33167922994733,0,1,0,-9,6,0,-1,-193.4214710222113,0,0,1,40,2,4,1,2,2,2019,1,2,8,0,52,57,15,1,0,1,0,12.20992809638469,12.20992809638469,0,0,0,0,0,0,0,0,0,0,.3720950629324058,0,0,0,46.4,59.87,6,1,0,0,9,5,1,144,0,0,0 +10050,12310,22471,22472,-9,-9,1,1,0,83,1,0,0,0,3,-9,2,1,0,4,5.45599191551839,6.462379551889622,5.442226785332947,1,0,-9,29,0,5,-120.4090923634989,0,0,0,78,2,4,3,-9,-9,2019,2,2,12,1,0,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.595002205989912,12.32343108682398,3,45.57,49.53,5,1,0,0,9,2,1,529,0,0,0 +10050,12310,22472,22471,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,5.357105079379201,5.421354174909844,1,0,-9,26,0,-5,62.77623392234551,0,0,0,83,3,4,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.511217144937645,0,0,57.16,56.15,6,1,0,0,9,2,1,529,0,0,0 +10051,12311,22473,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-998.5136903393778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,6,0,0,15,4,6,-9,0,0,0,1,6.897825059851391,0,17.92520916129323,0,0,37.20503585887609,1,1,0,0,0,0,0,29.86,20.5,4,1,0,0,13,1,0,373,0,0,0 +10052,12312,22474,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,7.214943672935261,7.504856727814832,3,0,-9,0,1,0,-954.8107696518267,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.22461588092857,0,0,41.79,54.12,5,1,0,0,12,3,1,192,0,0,0 +10053,12313,22475,-9,-9,-9,1,1,0,37,2,0,0,0,1,-9,2,1,0,4,8.577042808624359,8.490537934761223,0,3,0,0,0,-9,0,-937.8743966942709,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,40,15,1,0,-9,0,15.33905481107366,15.33905481107366,0,0,0,0,0,0,0,0,0,0,3.25829716086231,0,0,0,40.98,59.35,6,1,0,0,9,5,1,321,0,0,0 +10054,12314,22476,22477,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.232397897828582,8.539818989197558,0,2,0,-9,1,-9,1,93.20434696321246,-9,0,0,41,1,3,1,2,2,2019,1,1,12,3,58,0,15,1,3,1,0,9.118269292251291,9.118269292251291,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,58.08,5,1,0,0,11,4,1,1074,0,0,0 +10054,12314,22477,22476,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,3,7.918450039017883,8.17719246083348,0,2,0,-9,1,-9,-1,-47.69501483385829,-9,0,1,42,2,4,1,2,3,2019,1,2,9,0,39,0,15,1,0,1,0,9.412168953502134,9.412168953502134,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.94,58.35,6,1,0,0,11,4,1,1074,0,0,0 +10054,12314,22478,-9,22477,22476,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-907.8675302796951,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,4,1,1074,0,0,0 +10054,12314,22479,-9,22477,22476,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-895.1203938331622,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,4,1,1074,0,0,0 +10055,12315,22480,22482,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,3,8.565800842297657,8.07998857792917,0,2,0,-9,11,0,1,137.7609757309627,0,0,0,38,1,3,1,2,2,2019,1,1,18,6,46,44,15,1,6,1,0,10.96556136998242,10.96556136998242,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.21,55.18,4,1,0,0,6,4,1,1892,0,0,0 +10055,12315,22481,-9,22482,22480,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.706439512064,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,1892,0,0,0 +10055,12315,22482,22480,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,3,8.453497639619115,8.343683161609079,0,2,0,-9,11,0,-1,-130.0268334671991,0,0,1,39,1,3,1,1,1,2019,1,2,12,0,28,33,15,1,0,1,0,14.25666195750479,14.25666195750479,0,0,0,0,0,0,0,1,1,0,0,0,0,3,36.08,60.5,5,1,0,0,6,4,1,1892,0,0,0 +10056,12316,22483,22484,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,5,8.819001287605134,9.165972247800955,0,1,0,-9,9,0,-1,-74.13687951514335,0,0,0,63,1,2,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,27.55422265654165,27.55422265654165,0,0,0,0,0,0,0,0,0,0,1.123349825161532,0,10.90454194107543,3,58.05,54.52,6,1,0,0,11,5,0,267,0,0,0 +10056,12316,22484,22483,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,2,9.232807125613949,9.26069855969957,0,1,0,-9,9,0,1,23.50171529933738,0,0,0,62,1,5,1,2,2,2019,1,1,9,2,38,47,15,1,2,1,0,32.81107560419721,32.81107560419721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.3,39.29,6,1,0,0,11,5,0,267,0,0,0 +10057,12317,22485,22486,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.082559673565264,8.042059864948431,0,1,0,-9,17,0,-7,-48.60492844489804,0,0,0,61,3,2,1,2,3,2019,1,1,7,0,37,41,15,1,0,1,0,11.03033798068136,11.03033798068136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,39.42,6,1,0,0,11,4,1,547.5,0,0,0 +10057,12317,22486,22485,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,2,8.235330756056268,8.097963114308804,0,1,0,-9,17,0,7,-26.84475091878036,0,0,0,54,2,3,1,3,3,2019,1,2,19,7,37,42,15,1,7,1,0,9.334445911139795,9.334445911139795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.38,38.92,5,1,0,0,11,4,1,547.5,0,0,0 +10058,12318,22487,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,4,3,0,4,0,6.789814167795405,6.815435014884584,1,0,-9,29,0,1,19.37145574450652,0,0,0,-9,-9,-9,-9,2,3,2019,4,2,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.014965320598694,0,0,0,54.2,57.49,6,1,0,0,10,2,1,788,0,0,0 +10058,12319,22488,-9,-9,-9,2,1,1,52,2,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,29,0,-1,-67.13255878349659,0,0,0,-9,-9,-9,-9,2,2,2019,4,1,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.945902112191781,0,0,0,53.54,52.35,6,1,0,0,10,2,1,588,0,0,0 +10059,12320,22489,22490,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,6.039655413807444,5.785757838077076,1,0,-9,23,0,-1,125.3752257615698,0,0,0,72,2,1,3,3,-9,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.055009940845392,5.790750362967769,0,2,57.48,31.86,6,1,0,0,4,2,1,1035.5,0,0,0 +10059,12320,22490,22489,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,4.59174062828763,4.896405716735872,1,0,-9,24,0,1,-22.5975170050794,0,0,0,71,2,2,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.949886663120393,4.809760009216703,0,0,60.44,18.44,6,1,0,0,4,2,1,1035.5,0,0,0 +10060,12321,22491,22492,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,2,6.133343156296143,6.259140964962642,0,1,0,-9,6,0,3,-54.17375209212657,0,0,0,54,2,3,3,3,3,2019,2,1,12,0,11,10,15,1,0,3,0,5.354624948620173,5.354624948620173,0,0,0,0,0,0,0,1,1,0,0,0,7.595506806841458,3,47.9,48.57,5,1,0,0,11,2,0,937,0,0,0 +10060,12321,22492,22491,-9,-9,1,1,1,54,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,6,0,-3,-57.40188799230118,0,0,0,57,3,2,1,3,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.040708652314173,3,47.66,52.33,5,1,1,0,11,2,0,937,0,0,0 +10060,12322,22493,-9,22491,22492,3,1,1,38,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-980.1461155441228,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.49,61.15,4,1,0,0,11,1,0,132,0,0,0 +10061,12323,22494,22495,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,4,9.450517837411915,8.837385819596792,0,1,0,-9,9,0,-4,-53.35312447521487,0,0,0,59,3,3,3,3,3,2019,2,2,6,0,63,60,15,1,0,3,0,16.58168090158765,16.58168090158765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,9,5,1,783,0,0,0 +10061,12323,22495,22494,-9,-9,2,1,0,59,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,9,0,4,-17.10763438790392,0,0,0,55,3,4,1,3,-9,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,44.25,6,1,0,0,9,5,1,783,0,0,0 +10061,12324,22496,-9,22495,22494,3,1,1,29,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-942.8444266775791,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,44,40,15,1,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.42,54.75,5,1,0,0,9,1,1,960,0,0,0 +10062,12325,22497,-9,22498,22500,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.1361420655595,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,12,5,1,345,0,0,0 +10062,12325,22498,22500,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,2,8.480121080672298,8.39286665920781,0,2,0,-9,2,0,-3,3.211244209426147,0,0,1,38,1,4,1,2,2,2019,1,2,12,0,29,0,15,1,0,1,0,22.59836137058468,22.59836137058468,0,0,0,0,0,0,0,1,1,0,2.848159227427479,0,0,0,48.52,49.66,6,1,0,0,12,5,1,345,0,0,0 +10062,12325,22499,-9,22498,22500,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.2372214751097,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,5,1,345,0,0,0 +10062,12325,22500,22498,-9,-9,2,1,1,38,1,1,2,0,1,-9,2,1,0,4,8.617311195308048,8.806046009471816,0,2,0,-9,2,0,3,105.3477942227561,0,0,0,35,2,2,1,-9,-9,2019,1,1,10,0,45,40,15,1,0,1,0,14.22577778906725,14.22577778906725,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,345,0,0,0 +10063,12326,22501,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-1107.084485179152,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,6,1,0,872,0,0,0 +10063,12327,22502,-9,22501,-9,2,1,0,21,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1143.472632553771,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.774739279174338,0,76.04756747475275,3,41.4,44.66,4,1,1,1,6,1,0,213,0,0,0 +10063,12328,22503,-9,22501,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,3,6.746690423267171,7.245888948224787,0,3,0,-9,0,-9,0,-974.9880368440039,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.21057697513081,3,38.16,44.66,4,1,0,0,6,2,0,247,0,0,0 +10064,12329,22504,-9,22506,22505,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.583897804439,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,5,4,1,264.75,0,0,0 +10064,12329,22505,22506,-9,-9,2,1,1,57,1,0,2,0,2,-9,2,1,0,3,7.867914198883591,8.363783017523261,7.110565007731663,2,0,-9,9,0,19,-14.58931511999034,0,0,0,38,1,2,1,2,3,2019,1,1,15,4,46,50,15,1,4,1,0,8.152118075128799,8.152118075128799,0,0,0,0,0,0,0,1,1,0,0,7.405251039366682,0,0,43.49,43.6,4,1,0,0,5,4,1,264.75,0,0,0 +10064,12329,22506,22505,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,2,8.169270788161189,7.802579871106937,0,2,0,-9,9,0,-19,84.06105349904706,0,0,1,57,2,3,1,2,2,2019,1,2,16,5,0,32,15,1,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.767885844928785,0,0,0,28.1,43.67,5,1,0,0,5,4,1,264.75,0,0,0 +10064,12329,22507,-9,22506,22505,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1140.04847018094,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,264.75,0,0,0 +10065,12330,22508,22509,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.466749964690514,8.306282112555827,0,1,0,-9,4,0,3,0,0,0,1,30,1,3,1,2,2,2019,1,2,7,0,39,37,15,1,0,1,0,11.85856088210975,11.85856088210975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,0,1069.5,0,0,0 +10065,12330,22509,22508,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,3,8.336794531370963,8.100285132977293,0,1,0,-9,4,0,-3,0,0,0,0,33,1,4,1,-9,-9,2019,1,1,18,5,46,45,15,1,5,1,0,10.43187182395561,10.43187182395561,0,0,0,0,0,0,0,0,0,0,4.856384411841731,0,0,0,27.73,64.27,2,1,0,0,4,5,0,1069.5,0,0,0 +10066,12331,22510,-9,-9,-9,1,1,0,64,3,0,2,0,3,-9,1,1,0,3,6.238284983311687,6.326484993356008,0,4,0,0,0,-9,0,-828.9626240779892,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,50,84,15,1,1,-9,0,1.265168730467552,1.265168730467552,0,0,0,0,0,0,0,1,1,0,0,0,11.25209334778959,3,51.4,31.87,5,1,0,0,2,2,1,536,0,0,0 +10067,12332,22511,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,5.437099359323525,5.354332968281373,3,0,0,0,-9,0,-1055.781579644663,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,3.548127737512311,0,5.007900292650332,0,0,8.004580706622839,1,1,0,0,5.42518843309704,0,0,52.64,33.21,4,1,0,0,7,2,1,1246,0,0,0 +10068,12333,22512,22513,-9,-9,1,1,1,51,1,0,0,0,2,-9,1,1,0,2,7.083670470508094,7.083870817069435,0,1,0,-9,8,0,1,87.29279490242575,0,0,0,50,1,3,1,2,1,2019,1,2,10,2,35,40,15,1,2,1,0,3.768586411469605,3.768586411469605,0,0,0,0,0,0,0,0,0,0,8.264755177734443,0,0,0,38.22,47.9,5,1,0,0,9,4,0,331.5,0,0,0 +10068,12333,22513,22512,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,3,8.451362020792109,8.579631913385132,0,1,0,-9,8,0,-1,11.61339441195843,0,0,0,51,2,2,1,2,1,2019,1,1,13,1,36,40,15,1,1,1,0,16.59382595976669,16.59382595976669,0,0,0,0,0,0,0,0,0,0,3.109752892873079,0,0,0,41.23,59.35,5,1,0,0,9,4,0,331.5,0,0,0 +10068,12334,22514,-9,22513,22512,3,1,0,23,2,0,0,0,1,-9,2,1,0,3,8.036478076379238,8.073329546307873,0,3,0,0,0,-9,0,-962.5514316239642,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,16,4,38,0,15,1,4,-9,1,12.07534748357189,12.07534748357189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,60.85,3,1,0,0,9,4,0,135,0,0,0 +10068,12335,22515,-9,22513,22512,4,1,0,22,2,0,0,0,1,1,2,1,0,4,8.122194949020539,7.898043159267005,0,3,0,0,0,-9,0,-947.4691798144347,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,35,0,15,1,0,-9,1,8.320656580335047,8.320656580335047,0,0,0,0,0,0,0,0,0,0,.731943875029184,0,0,0,45.01,57.46,5,1,0,0,9,4,0,469,0,0,0 +10068,12336,22516,-9,22513,22512,5,1,1,20,2,0,0,0,2,-9,11,3,0,4,6.969683908396631,7.414874250624336,0,3,0,0,0,-9,0,-1074.869657270463,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.3020311177579477,0,0,0,52.08,55.93,6,1,0,0,9,3,0,237,0,0,0 +10069,12337,22517,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,4,8.840007134223281,8.71091144434779,0,3,0,0,0,-9,0,-1016.822603529816,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,36,40,15,1,0,-9,0,19.0519844661983,19.0519844661983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,7,5,0,2540,0,0,0 +10070,12338,22518,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-880.2943905855373,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.85,17.26,1,1,0,1,9,1,0,403,0,0,0 +10071,12339,22519,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,2,0,6.703760916625717,6.918858047578726,3,0,0,0,-9,0,-1030.437792802318,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.323797502878993,6.897231409816981,11.82537837435905,3,37.65,30.1,4,1,0,0,9,2,1,974,0,0,0 +10072,12340,22520,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,8.087714181785726,8.02285559357041,3,0,0,0,-9,0,-970.3206441587357,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.983582532098713,8.269774570331716,0,0,58.15,52.91,6,1,0,0,8,4,1,146,0,0,0 +10072,12341,22521,-9,22520,-9,2,1,1,35,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-1065.901377652487,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,30,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,6,2,0,1,8,1,1,449,0,0,0 +10073,12342,22522,22523,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,5.392109875162609,5.508615427124088,1,0,-9,49,0,-1,53.60861167196572,0,0,0,68,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.516078778219296,5.343262962133434,11.58534770689406,3,57.16,56.15,6,1,0,0,6,2,1,3393.5,0,0,0 +10073,12342,22523,22522,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,4,0,6.657702952654405,6.648819141441659,1,0,-9,49,0,1,34.43601621831954,0,0,0,67,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.245868067627589,6.395621600028112,17.86009134672626,3,55.19,54.26,6,1,0,0,6,2,1,3393.5,0,0,0 +10074,12343,22524,22525,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.623307179579914,8.112089250377473,0,1,0,-9,3,0,-2,98.35898376185268,0,0,0,50,2,3,1,2,2,2019,1,1,15,4,43,45,15,1,4,1,0,10.95520202933292,10.95520202933292,0,0,0,0,0,0,0,0,0,0,6.976801159165777,0,0,0,41.17,60.71,6,1,0,0,4,5,1,154.5,0,0,0 +10074,12343,22525,22524,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.362742827040202,8.362214245764816,0,1,0,-9,3,0,2,93.65356693899533,0,0,0,48,2,3,1,2,2,2019,1,2,13,4,37,37,15,1,4,1,0,14.6516975394456,14.6516975394456,0,0,0,0,0,0,0,0,0,0,4.652086741977073,0,0,0,49.52,56.95,6,1,0,0,4,5,1,154.5,0,0,0 +10075,12344,22526,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,6.008587863803322,5.993183997965908,3,0,-9,0,1,0,-979.2395450221435,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.688006655023194,5.984881541036504,0,0,43.33,50.15,7,1,0,0,6,2,1,901,0,0,0 +10075,12345,22527,22528,22526,-9,2,1,1,46,1,0,0,0,3,-9,1,1,0,5,6.857322170684296,7.007529939209815,0,1,0,-9,7,0,-11,113.4749268627446,0,0,0,57,2,4,3,2,2,2019,2,3,5,0,30,40,15,1,0,3,0,3.506802030902472,3.506802030902472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,6,2,1,444,0,0,0 +10075,12345,22528,22527,-9,-9,3,1,0,57,1,0,0,0,2,-9,97,3,0,4,0,0,0,1,0,-9,7,0,11,-37.44769151977542,0,0,0,46,3,5,1,-9,-9,2019,3,2,14,2,0,27,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,52.08,5,1,0,0,6,2,1,444,0,0,0 +10076,12346,22529,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1051.852877983895,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52.63,39.34,6,1,0,0,2,1,1,677,0,0,0 +10077,12347,22530,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,7.692013185332291,7.414363831771367,3,0,0,0,-9,0,-951.5832442643147,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.030855816459894,7.004148298796586,0,0,62.66,52.4,7,1,0,0,13,3,1,334,0,0,0 +10078,12348,22531,-9,22534,22532,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.2812396494992,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,2,0,0,11,2,1,978.25,0,0,0 +10078,12348,22532,22534,-9,-9,2,1,1,45,1,0,2,0,2,-9,1,1,0,4,7.97704900341264,8.065266640690261,0,2,0,-9,24,0,3,-63.08788330416292,0,0,0,42,3,3,3,-9,-9,2019,2,1,9,0,50,20,15,1,1,3,0,5.528004188430764,5.528004188430764,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,11,2,1,978.25,0,0,0 +10078,12348,22533,-9,22534,22532,5,1,0,16,2,0,2,0,2,-9,3,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.608457459191,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,1,0,11,2,1,978.25,0,0,0 +10078,12348,22534,22532,-9,-9,1,1,0,42,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,25,0,-3,38.63330604827591,0,0,1,45,2,4,1,-9,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.55,45.59,6,3,0,0,11,2,1,978.25,0,0,0 +10078,12349,22535,-9,22534,22532,3,1,0,21,2,0,2,0,2,-9,2,1,0,4,6.546948181810532,6.686002601898855,0,3,0,0,0,-9,0,-941.9326853667604,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,0,15,1,2,-9,1,4.19018999503327,4.19018999503327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,11,2,1,282,0,0,0 +10078,12350,22536,-9,22534,22532,6,1,1,20,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-958.924259184481,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,1,0,11,1,1,1531,0,0,0 +10079,12351,22537,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,4,8.115597168002459,8.069065834083883,0,3,0,0,0,-9,0,-971.4733873634098,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,40,40,15,1,3,-9,0,7.430470378308812,7.430470378308812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,50.73,5,2,0,0,11,4,1,394,0,0,0 +10080,12352,22538,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,3,8.097494093987841,8.031580927786225,0,3,0,0,0,-9,0,-932.6713637814865,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,55,0,15,1,1,-9,0,5.850692045316412,5.850692045316412,0,0,0,0,0,0,0,0,0,0,0,0,38.68976734077981,3,59.07,40.22,4,1,0,1,9,4,0,563,0,0,0 +10080,12353,22539,-9,22538,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,2,8.149173916313199,8.111380913905442,0,3,0,0,0,-9,0,-992.3344619507345,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,29,11,38,35,15,1,11,-9,1,9.300906341544902,9.300906341544902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.9,40.03,2,1,0,1,9,4,0,345,0,0,0 +10081,12354,22540,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,4,6.428527430882323,6.51746897570462,0,3,0,0,0,-9,0,-945.9061186886237,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,5,3,0,0,2,2,1,289,0,0,0 +10082,12355,22541,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,4,0,7.427931484302668,7.860621263800978,3,0,0,0,-9,0,-951.5289033102898,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,4,0,40,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.414747389411184,7.902490664820855,0,0,58.42,43.19,6,1,0,0,12,3,1,328,0,0,0 +10083,12356,22542,22543,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-6,-16.36513503213922,0,0,0,80,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.257616112280026,0,0,0,57.33,53.46,5,1,0,0,2,2,1,1060.5,0,0,0 +10083,12356,22543,22542,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,2,0,4.115464402940356,4.341284109564305,1,0,-9,10,0,6,-43.83719124180391,0,0,0,74,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.092125495218123,3.956051336505935,0,0,53.17,43.67,5,1,0,0,2,2,1,1060.5,0,0,0 +10084,12357,22544,22545,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,39,0,0,-40.16894452432346,0,0,0,58,2,2,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.097190901098087,0,0,0,37.17,50.6,4,1,0,0,1,4,1,499.5,0,0,0 +10084,12357,22545,22544,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,2,8.455442690898979,8.231310685972197,0,1,0,-9,39,0,0,-65.96505493204498,0,0,0,58,2,3,3,-9,-9,2019,2,1,17,5,42,84,15,1,5,3,0,12.80952370036098,12.80952370036098,0,0,0,0,0,0,0,1,1,0,7.877898749228315,0,0,0,37.18,23.8,4,1,0,0,1,4,1,499.5,0,0,0 +10085,12358,22546,22547,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,4,8.534994677565043,8.239687937723003,0,2,0,-9,26,0,8,49.21278957043818,0,0,0,44,2,4,1,-9,3,2019,1,2,13,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.909359768652188,0,.1026394621709543,3,51.24,58.84,4,4,0,0,12,4,0,710.6666666666666,0,0,0 +10085,12358,22547,22546,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,4,7.573414175653372,7.543625471300473,0,2,0,-9,26,0,-8,-101.3278464985412,0,0,1,52,2,4,1,2,3,2019,1,1,6,0,28,28,15,1,0,1,0,8.836828548598671,8.836828548598671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,0,710.6666666666666,0,0,0 +10085,12358,22548,-9,22547,22546,4,1,1,16,2,0,1,0,2,-9,3,2,0,5,0,0,0,2,0,0,0,-9,0,-1054.712849078366,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4302675002785135,0,0,0,40.38,61.66,7,1,1,0,12,4,0,710.6666666666666,0,0,0 +10085,12359,22549,-9,22547,22546,3,1,1,20,2,0,1,0,2,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-868.8030739940771,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,39,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.51498220902154,0,0,0,40.97,60.02,7,1,0,0,12,1,0,2380,0,0,0 +10086,12360,22550,22551,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,7.302669602600167,7.53765469016871,1,0,-9,49,0,-1,15.53132775247277,0,0,0,71,1,3,3,3,1,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.18373788941688,16.20071310055204,2,57.16,56.15,1,1,0,0,13,5,1,934.5,0,0,0 +10086,12360,22551,22550,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,9.153138410072714,8.829644134980828,1,0,-9,49,0,1,8.555870376938508,0,0,0,70,1,4,3,3,2,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.06554026411836,9.198364988138785,0,0,40.89,40.95,6,1,0,0,13,5,1,934.5,0,0,0 +10087,12361,22552,-9,22553,-9,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.6186859937001,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,2,4,1,607,0,0,0 +10087,12361,22553,22554,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,5,7.454284350455981,7.426766137561923,0,2,0,-9,7,0,5,46.91784143332782,0,0,1,33,2,4,1,2,2,2019,1,2,9,0,23,25,15,1,0,1,0,8.341180151427791,8.341180151427791,0,0,0,0,0,0,0,0,0,0,0,0,8.568471136820591,3,54.1,59.11,6,1,0,0,2,4,1,607,0,0,0 +10087,12361,22554,22553,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,4,8.349382161201525,8.703990663560566,0,2,0,-9,7,0,-5,26.82808969943768,0,0,0,38,2,5,1,-9,-9,2019,1,1,10,0,48,48,15,1,1,1,0,12.8117503206332,12.8117503206332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,2,4,1,607,0,0,0 +10088,12362,22555,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,5,8.76567198806277,8.656951024612587,0,3,0,0,0,-9,0,-946.6571609471147,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,35,35,15,1,0,-9,0,15.90922921988214,15.90922921988214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.01,53.18,6,4,0,0,8,5,0,1283,0,0,0 +10088,12363,22556,-9,22555,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,2,6.532076193824209,6.579015481564578,0,3,0,0,0,-9,0,-955.4732626781605,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,32,8,15,1,0,-9,1,2.81581785719835,2.81581785719835,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.57,49.62,6,4,0,0,8,2,0,2632,0,0,0 +10088,12364,22557,-9,22555,-9,3,1,0,18,2,0,0,0,2,1,2,1,0,3,6.757066058585873,6.824847125630908,5.121235091694732,3,0,0,0,-9,0,-1053.353750881528,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,14,0,15,1,9,-9,1,6.132969251883248,6.132969251883248,0,0,0,0,0,0,0,1,1,0,5.214748826547049,0,0,0,22.81,50.49,2,4,0,0,8,2,0,195,0,0,0 +10089,12365,22558,22559,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,3,0,7.779353475652521,7.312133030058406,1,0,-9,45,0,3,140.7507440237605,0,0,0,75,2,4,3,2,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3203937927175724,8.048598710965441,0,0,54.37,54.8,6,1,0,0,4,3,1,1086,0,0,0 +10089,12365,22559,22558,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,7.099945781368128,7.360896837390107,1,0,-9,44,0,-3,57.79142114679234,0,0,0,78,1,3,3,-9,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.933013429752706,6.936957231617186,0,0,48.87,58.55,6,1,0,0,4,3,1,1086,0,0,0 +10090,12366,22560,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,2,0,6.572564131320143,6.730823061593125,3,0,0,0,-9,0,-965.8051854416923,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.856365597699149,6.492531950665545,0,0,47.25,40.83,5,1,0,0,11,2,1,413,0,0,0 +10091,12367,22561,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,4,3,0,3,0,6.997683579800285,7.094131236888101,3,0,0,0,-9,0,-1232.427510244175,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.805971162693393,6.803841158656488,45.08457471111247,3,60.11,33.38,3,1,0,0,13,2,1,163,0,0,0 +10092,12368,22562,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,4,3,0,2,0,8.55774168696809,8.287345105962631,3,0,0,0,-9,0,-939.6904396944118,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,22,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.486322957339775,8.258577999086627,0,0,18.82,39.23,4,1,0,0,12,4,1,1229,0,0,0 +10093,12369,22563,-9,22565,22564,3,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1011.054681266098,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,6,1,0,0,12,5,1,702.3333333333334,0,0,0 +10093,12369,22564,22565,-9,-9,2,1,1,56,1,0,1,0,1,-9,2,1,0,4,8.778621308711738,8.973915398214617,0,2,0,-9,6,0,1,67.33782541837913,0,0,0,55,1,3,1,2,2,2019,1,1,8,0,50,45,15,1,0,1,0,17.25061498344245,17.25061498344245,0,0,0,0,0,0,0,1,1,0,3.467891814235331,0,0,0,53.96,50.73,5,1,0,0,12,5,1,702.3333333333334,0,0,0 +10093,12369,22565,22564,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,3,8.371278831539497,8.591434744266571,0,2,0,-9,6,0,-1,-64.69177988984349,0,0,0,56,1,4,1,2,2,2019,1,2,10,1,32,33,15,1,1,1,0,19.3111846674032,19.3111846674032,0,0,0,0,0,0,0,1,1,0,7.596101467244628,0,0,0,45.32,54.77,6,1,0,0,12,5,1,702.3333333333334,0,0,0 +10094,12370,22566,22567,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,4,8.471342111686184,8.758910369502216,0,2,0,-9,9,0,1,-29.77781719276043,0,0,0,47,2,3,1,2,2,2019,1,2,4,0,47,42,15,1,0,1,0,15.34027570064005,15.34027570064005,0,0,0,0,0,0,0,1,1,0,6.721400659459678,0,0,0,57.16,56.15,6,1,0,0,12,4,1,509.5,0,0,0 +10094,12370,22567,22566,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,3,6.916586778755756,7.127643459498982,6.00382797666639,2,0,-9,9,0,-1,42.53221041033092,0,0,0,48,2,4,1,2,3,2019,1,1,12,0,35,30,15,1,0,1,0,4.891255918352074,4.891255918352074,0,0,0,0,0,0,0,1,1,0,7.008708502417218,0,0,0,50.51,53.71,5,1,0,1,12,4,1,509.5,0,0,0 +10094,12370,22568,-9,22567,22566,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1024.304049099124,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,4,1,509.5,0,0,0 +10094,12370,22569,-9,22567,22566,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.750800312578,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,509.5,0,0,0 +10095,12371,22570,22571,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.826218415370987,7.918111004008629,0,1,0,-9,9,0,11,-25.87316368105404,0,0,0,39,2,3,1,2,3,2019,1,2,8,0,38,41,15,1,0,1,0,8.433758176104986,8.433758176104986,0,0,0,0,0,0,0,0,0,0,1.857916993043163,0,0,0,57.76,48.98,5,1,0,0,5,4,1,341,0,0,0 +10095,12371,22571,22570,-9,-9,2,1,1,39,1,0,0,0,2,-9,1,1,0,3,8.030499929661293,8.156019670134567,0,1,0,-9,9,0,-11,-31.25151037887914,0,0,0,50,2,4,1,-9,-9,2019,1,1,14,2,55,50,15,1,2,1,0,7.634850773292973,7.634850773292973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,5,1,0,0,5,4,1,341,0,0,0 +10096,12372,22572,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,8.06738655578244,7.590346954934518,3,0,0,0,-9,0,-895.9109566118639,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.105982079704759,0,0,0,1,1,0,5.501019754223346,7.569846532906955,0,0,52.46,30.88,6,1,0,0,10,3,1,919,0,0,0 +10097,12373,22573,22574,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,6.341022678199455,6.616861259013784,1,0,-9,6,0,11,-23.6617234188677,0,0,0,69,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.079564798623433,5.946320491823555,0,0,59.31,49.81,6,1,0,0,10,2,1,2965,0,0,0 +10097,12373,22574,22573,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,6.113593803537893,5.650995547457216,1,0,-9,6,0,-11,-68.53176614056078,0,0,0,80,2,3,3,3,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.591988852441879,5.690597466884393,0,0,54.2,57.49,7,1,0,0,10,2,1,2965,0,0,0 +10098,12374,22575,-9,22578,22577,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.7290722524975,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1795,0,0,0 +10098,12374,22576,-9,22578,22577,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.0348360637714,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1795,0,0,0 +10098,12374,22577,22578,-9,-9,2,1,1,48,1,0,2,0,2,-9,1,1,0,4,8.622428323038784,8.641605112154306,0,2,0,-9,9,0,6,8.947095782685052,0,0,0,42,2,4,1,-9,-9,2019,1,1,9,0,45,45,15,1,1,1,0,11.21405171835664,11.21405171835664,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,7,4,1,1795,0,0,0 +10098,12374,22578,22577,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,4,7.898961122141129,7.939365521210669,0,2,0,-9,12,0,-6,-105.1121007198106,0,0,1,48,2,4,1,2,-9,2019,1,2,6,0,30,33,15,1,0,1,0,9.760852557953477,9.760852557953477,0,0,0,0,0,0,0,1,1,0,3.973677700865964,0,0,0,52.43,55.57,6,1,0,0,7,4,1,1795,0,0,0 +10099,12375,22579,22580,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,5,7.82715546134337,7.445251063593832,0,2,0,-9,12,-9,1,0,-9,0,0,45,1,4,1,3,2,2019,1,1,3,0,35,0,15,1,0,1,0,5.614178232888089,5.614178232888089,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,13,3,0,1041.666666666667,0,0,0 +10099,12375,22580,22579,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,7.687599254956462,7.477221278627491,0,2,0,-9,12,-9,-1,0,-9,0,0,46,2,5,1,3,-9,2019,1,2,3,0,35,0,15,1,0,1,0,7.006847886570402,7.006847886570402,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,13,3,0,1041.666666666667,0,0,0 +10099,12375,22581,-9,22580,22579,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-975.0573970008589,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,0,1041.666666666667,0,0,0 +10100,12376,22582,22583,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.282847681624558,8.268083949699996,0,1,0,-9,5,0,0,28.9066874997576,0,1,1,27,1,4,1,1,1,2019,1,2,6,0,47,52,15,1,0,1,0,14.08777221897495,14.08777221897495,0,0,0,0,0,0,0,0,0,0,3.680453757238458,0,0,0,57.16,56.15,6,1,0,0,10,5,1,552.5,0,0,0 +10100,12376,22583,22582,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.839931536905205,8.838796857678924,0,1,0,-9,5,0,0,-27.15241474737797,0,1,0,27,1,4,1,-9,-9,2019,1,1,11,1,49,47,15,1,1,1,0,20.6328193160742,20.6328193160742,0,0,0,0,0,0,0,0,0,0,7.555973582568303,0,0,0,57.16,56.15,6,1,0,0,10,5,1,552.5,0,0,0 +10101,12377,22584,22586,-9,-9,2,1,1,37,1,1,2,0,2,-9,2,1,0,5,8.676083603267857,8.998834495276499,0,2,0,-9,13,0,4,30.37361827436805,0,0,0,33,2,4,1,3,3,2019,1,1,7,0,37,37,15,1,0,1,0,17.31054967926351,17.31054967926351,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,4,1,647.5,0,0,0 +10101,12377,22585,-9,22586,22584,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.407567250054,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,647.5,0,0,0 +10101,12377,22586,22584,-9,-9,1,1,0,33,1,1,2,0,2,-9,2,1,0,4,7.230730101746787,7.309112592832411,0,2,0,-9,13,0,-4,120.8994268674294,0,0,1,37,2,5,1,2,2,2019,1,2,22,11,17,17,15,1,11,1,0,13.36200520423996,13.36200520423996,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.44,65.40000000000001,4,1,0,0,12,4,1,647.5,0,0,0 +10101,12377,22587,-9,22586,22584,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.4379956343811,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,647.5,0,0,0 +10102,12378,22588,22589,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,2,8.062817144009221,8.294510586916266,7.198918077207462,1,0,-9,7,0,1,-7.769942810978129,0,0,0,57,2,4,1,2,3,2019,1,2,7,0,37,37,15,1,0,1,0,10.59098439846555,10.59098439846555,0,0,0,0,0,0,0,0,0,0,7.520198223897096,0,0,0,37.03,52.5,5,1,0,0,2,4,1,1182,0,0,0 +10102,12378,22589,22588,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.089542971854732,7.56717852196911,6.272746653275035,1,0,-9,7,0,-1,-103.5942073992713,0,0,0,58,2,2,1,2,3,2019,1,1,9,0,18,24,15,1,0,1,0,7.526478292750429,7.526478292750429,0,0,0,0,0,0,0,0,0,0,4.375995219554815,6.410869236660345,0,0,50.05,55.41,6,1,0,0,2,4,1,1182,0,0,0 +10102,12379,22590,-9,22589,22588,3,1,1,24,2,0,0,0,1,-9,2,1,0,3,8.122851185094236,7.969218679335117,0,3,0,0,0,-9,0,-1063.542594511697,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,40,40,15,1,0,-9,1,9.571210421947198,9.571210421947198,0,0,0,0,0,0,0,0,0,0,.390028602983817,0,0,0,53.63,51.24,6,1,0,0,2,4,1,2656,0,0,0 +10103,12380,22591,22593,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,4,8.339340015460358,8.075938208420881,0,2,0,-9,6,0,0,-7.749422112970109,0,0,1,51,3,4,1,2,2,2019,1,2,9,0,44,42,15,1,0,1,0,8.76066125103007,8.76066125103007,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,6,4,0,602.3333333333334,0,0,0 +10103,12380,22592,-9,22591,22593,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-932.5527912853147,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,6,4,0,602.3333333333334,0,0,0 +10103,12380,22593,22591,-9,-9,2,1,1,51,1,0,1,0,3,-9,2,1,0,4,8.304424714753397,8.473782171165333,0,2,0,-9,6,0,9,-6.505138432811262,-9,0,0,42,2,4,1,-9,-9,2019,1,1,9,0,39,0,15,1,1,1,0,12.44919638643334,12.44919638643334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,6,4,0,602.3333333333334,0,0,0 +10103,12381,22594,-9,22591,22593,3,1,1,24,2,0,1,0,2,-9,2,1,0,4,7.807256476580034,8.096003754478673,0,3,0,0,0,-9,0,-989.8807930417767,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,6,3,0,480,0,0,0 +10104,12382,22595,22596,-9,-9,1,1,0,33,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,7,0,1,47.54406859515117,0,0,1,32,1,4,1,2,2,2019,3,2,2,0,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,4,4,1,1193.5,0,0,0 +10104,12382,22596,22595,-9,-9,2,1,1,32,1,0,2,0,1,-9,2,1,0,4,9.040533992951506,9.20240744097662,0,2,0,-9,7,0,-1,23.88271491261889,0,0,0,33,1,5,3,3,2,2019,2,1,8,0,60,40,15,1,0,3,0,18.38154691157945,18.38154691157945,0,0,0,0,0,0,0,1,1,0,7.399577181449663,0,0,0,62.49,55.09,6,3,0,0,4,4,1,1193.5,0,0,0 +10104,12382,22597,-9,22595,22596,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-832.8821390590435,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,4,1,1193.5,0,0,0 +10104,12382,22598,-9,22595,22596,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.3415846001673,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,4,1,1193.5,0,0,0 +10105,12383,22599,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,3,7.925327176803039,8.266425218582597,6.921493277206049,3,0,0,0,-9,0,-1073.708679986135,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,37,36,15,1,0,-9,0,9.690853799156546,9.690853799156546,0,0,0,0,0,0,0,0,0,0,2.374693315002669,7.337974994709921,0,0,52.88,43.27,6,1,0,0,1,4,1,462,0,0,0 +10106,12384,22600,22601,-9,-9,1,1,1,53,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,4,0,-5,-21.21808057064675,0,0,0,58,2,1,1,-9,-9,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.271172308696293,1,52.99,51.28,5,1,0,0,1,2,1,542.5,0,0,0 +10106,12384,22601,22600,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,1,0,6.788254543948514,6.960758161437727,1,0,-9,4,0,5,-48.94150820993971,0,0,0,53,2,3,3,-9,-9,2019,2,1,12,1,25,0,15,1,1,3,0,.0007791610498606,.0007791610498606,0,0,0,0,0,0,0,1,1,0,0,7.079957938566334,0,0,56.17,9.609999999999999,6,1,0,0,1,2,1,542.5,0,0,0 +10107,12385,22602,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1073.539038177282,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,50,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,49.75,6,1,0,0,13,1,1,449,0,0,0 +10108,12386,22603,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,1,0,3.855751844370449,3.611995870146608,3,0,0,0,-9,0,-1026.189506368972,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,0,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.287140341654301,3.796102396513938,0,0,27.89,18.61,1,1,0,0,10,1,1,421,0,0,0 +10109,12387,22604,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,2,7.675177686997463,7.897701625596903,0,3,0,0,0,-9,0,-1071.876394612225,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,17,12,15,1,0,-9,0,24.39388389775688,24.39388389775688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.68,31.83,6,1,0,0,11,4,1,1039,0,0,0 +10110,12388,22605,22606,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,2,8.338556562644094,8.145715059421752,0,1,0,-9,37,0,3,40.28788535708211,0,0,0,60,2,2,3,-9,-9,2019,2,2,13,0,0,62,15,1,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,38,5,3,0,1,6,3,1,898,0,0,0 +10110,12388,22606,22605,-9,-9,2,1,0,60,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,37,0,-3,-5.27892179040483,0,0,0,63,3,2,1,3,2,2019,3,1,14,0,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.961580291310715,0,0,0,45,38,5,3,1,1,6,3,1,898,0,0,0 +10111,12389,22607,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,1,1,0,5,7.027578827443477,7.239100193196948,0,3,0,0,0,-9,0,-1212.46017252895,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,20,25,15,1,0,-9,0,6.371528720308747,6.371528720308747,0,0,0,0,0,0,0,1,1,0,4.913540473082877,0,0,0,55.48,44.67,4,1,0,0,10,2,1,380,0,0,0 +10112,12390,22608,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,7.582742992696119,7.553348108894293,3,0,0,0,-9,0,-1019.887028605892,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.096711075852065,7.301247337507161,4.536023191420146,3,59.22,37.52,6,1,0,0,11,3,1,670,0,0,0 +10113,12391,22609,22610,-9,-9,2,1,0,76,1,0,0,0,1,-9,4,3,0,4,0,8.570735657670397,8.274682538227234,1,0,-9,45,0,7,-106.6750264336839,0,0,0,69,2,4,3,2,2,2019,4,1,8,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.973876328097948,8.196512090441614,0,0,56.5,45.47,7,1,0,0,6,5,1,1127.5,0,0,0 +10113,12391,22610,22609,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.937457658222709,7.682613570017528,1,0,-9,40,0,-7,6.092228644634569,0,0,0,76,1,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.987964402692025,0,0,43.03,55.9,6,1,0,0,6,5,1,1127.5,0,0,0 +10114,12392,22611,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,2,1,0,3,7.871539285399293,7.899962752017901,0,3,0,-9,0,1,0,-1085.280402587919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,8.1499022414914,8.1499022414914,0,0,0,0,0,0,0,0,0,0,3.735185225156235,0,0,0,52.99,51.28,6,1,0,0,11,4,1,3960,0,0,0 +10115,12393,22612,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1039.730871958532,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,5,0,45,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,44,4,1,0,1,6,1,0,1575,0,0,0 +10116,12394,22613,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,4,9.011381971138626,8.907427987063587,0,3,0,0,0,-9,0,-924.6377947985026,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,40,37,15,1,0,-9,0,17.80490302477605,17.80490302477605,0,0,0,0,0,0,0,1,1,0,5.50616847230341,0,0,0,41.06,62.04,6,1,0,0,1,5,1,1659,0,0,0 +10117,12395,22614,22615,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,4,7.970122728760498,8.116041714388201,0,1,0,-9,9,0,2,-1.010657897072143,0,0,0,57,2,3,1,-9,-9,2019,1,1,10,0,38,38,15,1,0,1,0,8.176387986619595,8.176387986619595,0,0,0,0,0,0,0,0,0,0,3.405724695825107,0,0,0,60.43,46.44,5,1,0,0,7,4,1,2412,0,0,0 +10117,12395,22615,22614,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.751109969930658,7.824765478601017,0,1,0,-9,38,0,-2,-63.55484097476867,0,0,0,59,3,4,1,3,2,2019,1,2,13,2,27,27,15,1,2,1,0,7.158016046246335,7.158016046246335,0,0,0,0,0,0,0,0,0,0,4.489911707310657,0,0,0,53.56,46.96,5,1,0,0,7,4,1,2412,0,0,0 +10118,12396,22616,-9,22618,-9,2,1,1,10,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-921.700080686741,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,5,1,0,0,1,2,0,270.5,0,0,0 +10118,12396,22617,-9,22618,-9,4,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1043.141464663516,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,2,0,270.5,0,0,0 +10118,12396,22618,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,2,6.997082003314475,6.663983666147528,0,3,0,0,0,-9,0,-927.8080643912349,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,8,16,15,1,2,-9,0,15.69286036604167,15.69286036604167,0,0,0,0,0,0,0,1,1,0,1.111518312824129,0,20.51412660785184,3,49.28,52.09,4,1,0,0,1,2,0,270.5,0,0,0 +10118,12396,22619,-9,22618,-9,3,1,0,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-963.886953649308,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,2,0,270.5,0,0,0 +10119,12397,22620,22622,-9,-9,2,1,1,23,1,1,1,0,2,-9,2,1,0,5,8.487496138790728,8.581066371316984,0,2,0,-9,6,0,0,-37.61408886443667,0,1,0,23,2,5,3,-9,-9,2019,2,1,7,1,47,50,15,1,1,3,0,13.16838516076531,13.16838516076531,0,0,0,0,0,0,0,1,1,0,.0471172956056956,0,0,0,43.97,60.95,5,1,0,0,4,3,0,419,0,0,0 +10119,12397,22621,-9,22622,22620,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.501866740159,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,0,419,0,0,0 +10119,12397,22622,22620,-9,-9,1,1,0,23,1,1,1,0,2,-9,3,3,0,5,0,0,0,2,0,-9,6,0,0,-27.17655366605121,0,1,1,23,2,5,1,-9,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0774549783149074,0,0,0,62.96,55.09,7,1,1,0,4,3,0,419,0,0,0 +10120,12398,22623,22624,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,49,0,-1,0,0,0,0,75,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.020674508321015,0,0,0,63.66,22.37,6,1,0,0,7,1,1,899.5,0,0,0 +10120,12398,22624,22623,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,1,0,0,0,0,74,3,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.872590101627627,0,7.152992146811776,1,62,41.73,6,1,0,0,7,1,1,899.5,0,0,0 +10121,12399,22625,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,2,0,5.452896347519167,5.751632643209693,3,0,0,0,-9,0,-1002.320198224289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.712354768991274,0,0,47.25,36.63,7,1,0,0,9,2,1,86,0,0,0 +10122,12400,22626,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,2,1,0,4,8.493706076187451,8.49878513365111,0,3,0,0,0,-9,0,-1099.576105214682,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,55,15,1,2,-9,0,13.27337737849296,13.27337737849296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,1,1,0,0,11,5,0,1158,0,0,0 +10123,12401,22627,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,4,8.418365158796313,8.573346944522372,0,3,0,0,0,-9,0,-966.2399059407086,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,48,42,15,1,0,-9,0,10.62813414322535,10.62813414322535,0,0,0,0,0,0,0,1,1,0,1.172123532744887,0,0,0,57.16,56.15,6,1,0,0,4,4,1,1174,0,0,0 +10124,12402,22628,22629,-9,-9,1,1,0,73,1,0,0,0,3,-9,1,1,0,2,8.355155429522767,8.258775407185933,3.442298104170063,1,0,-9,54,0,0,-75.01217932980252,0,0,0,82,2,3,3,3,3,2019,2,2,14,4,42,40,15,1,4,4,0,8.236247890311233,8.236247890311233,0,0,0,0,0,0,0,1,1,0,4.421834454736997,3.51713382608222,73.77512509498908,1,47.3,35.07,5,1,0,0,2,4,1,1262.5,0,0,0 +10124,12402,22629,22628,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,6.284435119537035,6.196342959668593,1,0,-9,54,0,9,-9.403869309935937,0,0,0,73,3,2,1,3,3,2019,3,1,9,0,0,0,15,4,1,1,0,0,0,1,0,9.33671283640337,0,0,0,0,1,1,0,2.801803081468387,6.035804533294334,0,0,54,45,6,1,0,0,2,4,1,1262.5,0,0,0 +10125,12403,22630,-9,22632,22631,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.3194619517923,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,4,1,966.6666666666666,0,0,0 +10125,12403,22631,22632,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,2,8.07193884140627,8.496970731171018,7.270008979735223,2,0,-9,7,0,0,-29.09755221803976,0,0,0,45,2,4,1,-9,-9,2019,1,1,12,0,70,65,15,1,0,1,0,4.659172554690459,4.659172554690459,0,0,0,0,0,0,0,1,1,0,0,7.474780951253535,0,0,41.27,42.39,5,1,0,0,6,4,1,966.6666666666666,0,0,0 +10125,12403,22632,22631,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,8.199320955536045,8.203598245727635,0,2,0,-9,7,0,9,-135.795808066619,0,0,0,36,2,2,1,2,2,2019,1,2,24,12,23,23,15,1,12,1,0,16.63089887515445,16.63089887515445,0,0,0,0,0,0,0,1,1,0,.7295201680333232,0,0,0,31.69,62.36,6,1,0,0,6,4,1,966.6666666666666,0,0,0 +10126,12404,22633,-9,22636,22635,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1253.790621261005,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,1377.5,0,0,0 +10126,12404,22634,-9,22636,22635,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-861.6571062019121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,1377.5,0,0,0 +10126,12404,22635,22636,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.79705398023364,8.744602211213897,0,2,0,-9,8,0,5,107.249801409518,0,0,0,33,2,4,1,3,-9,2019,1,1,14,2,37,40,15,1,2,1,0,16.68989502485364,16.68989502485364,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,2,4,1,1377.5,0,0,0 +10126,12404,22636,22635,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,7.354978720566901,7.735426978003417,0,2,0,-9,8,0,-5,-143.3199773197202,0,0,1,38,2,4,1,2,-9,2019,1,2,10,0,25,27,15,1,0,1,0,7.964930807047719,7.964930807047719,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,7,1,0,0,2,4,1,1377.5,0,0,0 +10127,12405,22637,-9,22640,22639,3,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-941.7323909869049,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,5,1,0,0,7,4,1,794.25,0,0,0 +10127,12405,22638,-9,22640,22639,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.63103695684,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,1,0,0,7,4,1,794.25,0,0,0 +10127,12405,22639,22640,-9,-9,1,1,1,45,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,13,0,3,-41.90599046402051,0,0,0,42,1,4,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.977840430000822,0,0,0,57.94,23.47,6,1,0,0,7,4,1,794.25,0,0,0 +10127,12405,22640,22639,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.680605602176058,8.797790801900613,0,2,0,-9,13,0,-3,6.800526895125531,0,0,1,45,2,1,3,1,1,2019,2,1,15,3,47,60,15,1,3,3,0,14.41664679231635,14.41664679231635,0,0,0,0,0,0,0,0,0,0,1.971932120620583,0,0,0,41.15,55.37,6,1,0,0,7,4,1,794.25,0,0,0 +10128,12406,22641,22644,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,3,5.070737022952921,5.208726595599728,0,2,0,-9,15,0,-2,-28.65862537936507,0,0,1,44,1,4,1,2,1,2019,1,2,10,0,5,4,15,1,0,1,0,5.842249098676239,5.842249098676239,0,0,0,0,0,0,0,1,1,0,3.341047228713814,0,0,0,55.12,42.1,4,1,0,0,10,4,1,430.5,0,0,0 +10128,12406,22642,-9,22641,22644,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.52937736589,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,4,1,430.5,0,0,0 +10128,12406,22643,-9,22641,22644,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.2253190243021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,430.5,0,0,0 +10128,12406,22644,22641,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,9.046896597911253,9.006308743287674,0,2,0,-9,15,0,2,23.23008472533602,0,0,0,42,1,3,1,2,2,2019,1,1,11,0,39,40,15,1,0,1,0,18.58940750650918,18.58940750650918,0,0,0,0,0,0,0,1,1,0,5.539272100899853,0,0,0,44.62,53.53,5,1,0,0,10,4,1,430.5,0,0,0 +10129,12407,22645,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,3,7.073447638855852,6.827339814296925,0,3,0,0,0,-9,0,-934.3799032204015,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,15,19,15,1,0,-9,0,9.839979317925193,9.839979317925193,0,0,0,0,0,0,0,1,1,0,6.85895263862954,0,0,0,55.27,39.27,6,1,0,0,12,2,0,448,0,0,0 +10130,12408,22646,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,7.875346772585185,8.084576678722369,3,0,0,0,-9,0,-917.0802550140172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.806634049705523,0,0,60.17,45.37,7,1,0,0,11,4,1,276,0,0,0 +10131,12409,22647,-9,22648,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1003.494535281474,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,9,3,1,1561,0,0,0 +10131,12409,22648,-9,-9,-9,1,1,0,43,3,0,1,0,3,-9,2,1,0,4,7.471372598636531,8.128525329490206,6.520943969402246,4,0,0,0,-9,0,-991.9729435346306,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,20,20,15,1,0,-9,0,11.8620826775344,11.8620826775344,0,0,0,0,0,0,0,1,0,1,7.029150362128514,0,0,0,51.24,58.84,6,1,0,0,9,3,1,1561,0,0,0 +10132,12410,22649,-9,22653,22650,4,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.4648726381243,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,3,1,957.8,0,0,0 +10132,12410,22650,22653,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,4,7.70916508022559,7.343333834456859,0,2,0,-9,6,0,3,143.1442970056465,0,0,0,44,1,4,1,-9,-9,2019,1,2,9,0,65,70,15,1,0,1,0,2.705354656141377,2.705354656141377,0,0,0,0,0,0,0,1,1,0,6.961856525336466,0,0,0,42.85,60.33,5,1,0,0,6,3,1,957.8,0,0,0 +10132,12410,22651,-9,22653,22650,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.557880707935,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,6,3,1,957.8,0,0,0 +10132,12410,22652,-9,22653,22650,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.146611962559,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,3,1,957.8,0,0,0 +10132,12410,22653,22650,-9,-9,2,1,0,44,1,0,3,0,1,-9,1,1,0,4,8.186492672097485,8.029240235632868,0,2,0,-9,6,0,-3,-37.10667099274077,0,0,1,47,1,4,1,-9,-9,2019,1,1,19,6,20,21,15,1,6,1,0,18.23344212101741,18.23344212101741,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.44,62.16,6,1,0,0,6,3,1,957.8,0,0,0 +10133,12411,22654,22655,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,5,7.771281275147499,7.79376121044851,0,1,0,-9,4,0,-12,91.27159275416012,0,0,0,60,1,5,1,-9,-9,2019,1,1,2,0,35,55,15,1,0,1,0,8.137221861321631,8.137221861321631,0,0,0,0,0,0,0,0,0,0,9.169056214216806,0,0,0,57.06,57.76,6,1,0,0,10,4,1,999,0,0,0 +10133,12411,22655,22654,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,5,7.50810979743478,7.916895978618775,6.850777813861066,1,0,-9,4,0,12,85.02054555118822,0,0,0,48,1,5,1,-9,-9,2019,1,2,3,0,60,60,15,1,0,1,0,3.495833558032286,3.495833558032286,0,0,0,0,0,0,0,0,0,0,7.398762246254703,6.866672140902732,0,0,60.02,56.42,6,1,0,0,10,4,1,999,0,0,0 +10134,12412,22656,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,1,1,0,5,8.010220938397671,7.595388893540852,0,4,0,0,0,-9,0,-1091.517298920584,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,1,35,0,15,1,1,-9,0,7.578994356087161,7.578994356087161,0,0,0,0,0,0,0,1,1,0,2.382298430030028,0,0,0,57.06,57.76,6,1,0,0,2,3,1,946,0,0,0 +10134,12412,22657,-9,22656,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1118.280749029346,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,3,1,946,0,0,0 +10135,12413,22658,22660,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,4,9.757646351817778,9.462626184237063,0,2,0,-9,5,0,3,-76.82716374423127,0,0,0,27,2,4,3,-9,-9,2019,2,2,7,0,37,37,15,1,0,3,0,38.91060015655371,38.91060015655371,0,0,0,0,0,0,0,0,0,0,4.158162856015923,0,0,0,57.73,54.53,6,1,0,0,7,5,1,2222,0,0,0 +10135,12413,22659,-9,22660,22658,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.7764180408036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,7,5,1,2222,0,0,0 +10135,12413,22660,22658,-9,-9,2,1,0,27,1,1,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-3,-92.3365276174377,0,1,1,30,2,4,1,-9,-9,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115.3512167283695,3,35.97,61.83,4,1,0,0,7,5,1,2222,0,0,0 +10136,12414,22661,-9,22662,22664,3,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-969.8628796843958,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,13,5,1,654.75,0,0,0 +10136,12414,22662,22664,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,4,8.74483332885533,8.839561833487997,0,2,0,-9,18,0,4,32.71754746091775,0,0,0,42,2,3,1,2,-9,2019,1,1,13,2,38,38,15,1,2,1,0,22.17438967318733,22.17438967318733,0,0,0,0,0,0,0,1,1,0,6.991288788265817,0,0,0,51.84,51.67,3,1,0,0,13,5,1,654.75,0,0,0 +10136,12414,22663,-9,22662,22664,4,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-959.2057790321034,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,13,5,1,654.75,0,0,0 +10136,12414,22664,22662,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,3,8.21329396667163,8.581156374676894,0,2,0,-9,18,0,-4,12.39585039699267,-9,0,0,46,1,4,1,2,-9,2019,1,2,8,0,40,0,15,1,0,1,0,15.21226294202413,15.21226294202413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.14,38.49,3,1,0,0,13,5,1,654.75,0,0,0 +10137,12415,22665,22666,-9,-9,1,1,0,38,1,0,1,0,1,-9,2,1,0,2,8.677871170180479,8.90408429841337,0,2,0,-9,18,-9,0,-158.4340273955351,-9,0,1,47,3,4,1,-9,-9,2019,1,2,8,0,35,0,15,1,0,1,0,22.25081769619733,22.25081769619733,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.44,48.84,5,3,0,0,2,4,1,360.5,0,0,0 +10137,12415,22666,22665,-9,-9,2,1,1,47,1,0,1,0,3,-9,1,1,0,4,3.090265510043184,3.283080246936247,0,2,0,-9,18,-9,9,-60.25396567758685,-9,0,0,38,1,2,1,-9,-9,2019,1,1,8,1,40,0,15,1,1,1,0,.0749640706283142,.0749640706283142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.59,42.54,6,3,0,0,2,4,1,360.5,0,0,0 +10137,12416,22667,-9,22665,22666,3,1,1,19,2,0,1,1,2,-9,7,2,0,4,6.888418619443747,7.103481869666068,0,3,0,-9,0,-9,0,-1007.943219895423,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,1,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,3,0,0,2,2,1,1386,0,0,0 +10138,12417,22668,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,5.718839339412372,6.664137264618933,3,0,-9,0,-9,0,-1049.895811973385,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,9.256228895182343,0,0,0,1,1,0,.4944577695146708,6.714903637217335,8.175748817475295,3,64,27.54,7,1,0,0,11,2,0,695,0,0,0 +10139,12418,22669,-9,-9,-9,1,1,0,24,2,1,1,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1069.519776755144,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.27,60.85,6,1,0,0,4,1,0,518,0,0,0 +10139,12418,22670,-9,22669,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1069.01003269003,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,1,0,518,0,0,0 +10140,12419,22671,22672,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,8,0,1,0,0,0,0,65,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.177913382595306,0,0,0,43.48,41.11,2,1,0,0,11,1,1,1204,0,0,0 +10140,12419,22672,22671,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-1,0,0,0,0,66,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.218069212134779,0,0,0,50.65,60.47,7,1,0,0,11,1,1,1204,0,0,0 +10141,12420,22673,-9,22674,22675,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.7785142033658,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,9,5,1,1088,0,0,0 +10141,12420,22674,22675,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,3,8.701911178532963,8.619462923816318,0,2,0,-9,2,0,-3,-7.723097390973024,0,0,1,38,1,4,1,2,2,2019,1,1,6,0,35,35,15,1,0,1,0,14.7563494384628,14.7563494384628,0,0,0,0,0,0,0,0,0,0,0,0,6.320043581543703,3,58.32,50.22,7,3,0,0,9,5,1,1088,0,0,0 +10141,12420,22675,22674,-9,-9,1,1,1,38,1,0,1,0,1,-9,2,1,0,4,8.241267512680722,7.987812953374558,0,2,0,-9,2,0,3,-.1901903247396387,0,0,0,35,1,3,1,2,2,2019,1,2,5,0,41,39,15,1,0,1,0,10.93564081162979,10.93564081162979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,3,0,0,9,5,1,1088,0,0,0 +10142,12421,22676,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,1,0,6.771458453434487,6.747963999907007,3,0,0,0,-9,0,-1014.74821141365,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.165664004581752,6.917040856732688,0,0,33.95,26.99,2,1,0,0,6,2,1,361,0,0,0 +10143,12422,22677,22678,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,5.66936087489086,5.899348849066284,1,0,-9,24,0,1,40.76832237600869,0,0,0,71,3,2,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,11.98711683322196,0,0,0,0,1,1,0,0,5.784791759072214,21.93382044993718,1,47.55,33.8,5,1,0,0,6,2,0,489,0,0,0 +10143,12422,22678,22677,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,6.685699323340517,6.438310446205375,1,0,-9,24,0,-1,109.3267944271075,0,0,0,72,3,2,3,2,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,0,0,5.857452661274144,0,0,0,1,1,0,0,6.454311529627768,0,0,39.39,26.92,3,1,0,0,6,2,0,489,0,0,0 +10144,12423,22679,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,3,7.877815156728104,7.839679065631994,0,3,0,-9,0,-9,0,-769.7539656913839,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,39,0,15,1,0,-9,0,8.597223622124561,8.597223622124561,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,46.99,6,1,0,0,12,3,0,567,0,0,0 +10145,12424,22680,22682,-9,-9,1,1,0,54,1,0,2,0,2,-9,8,3,1,2,0,0,0,2,0,-9,20,0,5,-43.0706652027768,0,0,0,49,3,3,3,3,2,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.11,29.55,3,1,0,1,8,3,1,793,0,0,0 +10145,12424,22681,-9,22680,22682,4,1,0,14,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-979.8232477963401,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,45,4,2,0,0,8,3,1,793,0,0,0 +10145,12424,22682,22680,-9,-9,2,1,1,49,1,0,2,0,3,-9,97,3,0,3,8.045303495501294,8.019750681176061,0,2,0,-9,20,0,-5,-93.06463979914136,0,0,0,54,2,2,3,3,3,2019,4,1,11,0,40,58,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,6.749286246069298,3,59.7,53.75,5,4,0,1,8,3,1,793,0,0,0 +10145,12424,22683,-9,22680,22682,5,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1092.829977208044,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,5,2,0,0,8,3,1,793,0,0,0 +10145,12425,22684,-9,22680,22682,3,1,0,19,2,0,2,0,2,-9,2,1,0,3,7.82613357845706,7.994837850518319,0,3,0,0,0,-9,0,-1030.105423947841,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,25,11,58,0,15,1,11,-9,1,4.734596039902874,4.734596039902874,0,0,0,0,0,0,0,1,0,1,0,0,6.023393441874802,3,12.45,59.24,3,2,0,0,8,3,1,245,0,0,0 +10146,12426,22685,-9,22688,22687,5,1,1,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-968.2168094290392,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,3,0,0,6,2,0,972.1666666666666,0,0,0 +10146,12426,22686,-9,22688,22687,3,1,0,13,2,1,4,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-977.9017969488458,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,61,5,3,0,0,6,2,0,972.1666666666666,0,0,0 +10146,12426,22687,22688,-9,-9,1,1,1,36,1,1,4,0,2,-9,3,3,0,5,7.288672634711187,7.28183242311313,0,2,0,-9,12,-9,0,17.91819499828186,-9,0,0,36,3,3,3,-9,-9,2019,4,2,5,0,38,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.03,44.82,5,3,1,1,6,2,0,972.1666666666666,0,0,0 +10146,12426,22688,22687,-9,-9,2,1,0,36,1,1,4,0,3,-9,6,3,0,3,0,0,0,2,0,-9,12,-9,0,79.19131369775967,-9,0,1,36,2,5,3,-9,-9,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.68,44.55,6,3,0,1,6,2,0,972.1666666666666,0,0,0 +10146,12426,22689,-9,22688,22687,4,1,1,11,2,1,4,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1004.693533096048,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,5,3,0,0,6,2,0,972.1666666666666,0,0,0 +10146,12426,22690,-9,22688,22687,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-973.5671855586752,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,3,0,0,6,2,0,972.1666666666666,0,0,0 +10147,12427,22691,22692,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,3,9.164516035148878,9.142671775276352,0,1,0,-9,9,0,-2,134.7659863145277,0,0,0,53,3,4,1,3,2,2019,1,1,7,0,37,38,15,1,0,1,0,30.36040768080784,30.36040768080784,0,0,0,0,0,0,0,0,0,0,2.973057891516279,0,0,0,62.43,40.11,2,1,0,0,6,5,1,864.5,0,0,0 +10147,12427,22692,22691,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,4,8.440551700297631,8.579522832417661,0,1,0,-9,34,0,2,-9.913743424123812,0,0,0,51,2,3,1,3,3,2019,1,2,7,0,41,41,15,1,0,1,0,15.99987051836013,15.99987051836013,0,0,0,0,0,0,0,0,0,0,4.480277967357755,0,0,0,54.2,57.49,6,1,0,0,6,5,1,864.5,0,0,0 +10147,12428,22693,-9,22692,22691,3,1,0,26,2,0,0,0,2,-9,2,1,0,5,8.434092447408769,8.219002208627209,0,3,0,0,0,-9,0,-1056.950844917587,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,38,15,1,0,-9,1,14.2507106984069,14.2507106984069,0,0,0,0,0,0,0,0,0,0,3.764599281688802,0,0,0,57.06,57.76,5,1,0,0,6,5,1,315,0,0,0 +10147,12429,22694,-9,22692,22691,4,1,0,24,2,0,0,0,1,-9,2,1,0,5,8.220542316028171,8.370033918352169,0,3,0,0,0,-9,0,-914.675866619887,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,15,15,1,0,-9,1,10.56051541849099,10.56051541849099,0,0,0,0,0,0,0,0,0,0,3.008557325904917,0,0,0,58.22,54.51,2,1,0,0,6,4,1,1226,0,0,0 +10148,12430,22695,22696,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.182422666974646,6.430208150383685,1,0,-9,48,0,3,-100.9296168244775,0,0,0,67,3,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.257741429699627,6.411343329456712,0,0,47.79,53.79,4,1,0,0,5,2,1,814.5,0,0,0 +10148,12430,22696,22695,-9,-9,2,1,0,67,1,0,0,0,3,-9,2,1,0,3,6.944695613308252,6.818237253608833,0,1,0,-9,48,0,-3,-52.46568822974408,0,0,0,70,3,3,3,3,3,2019,2,1,11,0,23,14,15,1,0,4,0,3.359808757731376,3.359808757731376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,48.22,6,1,0,0,5,2,1,814.5,0,0,0 +10149,12431,22697,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,3,8.949777983706378,8.910969449376926,0,3,0,0,0,-9,0,-895.1556482214459,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,39,41,15,1,0,-9,0,28.02418745740657,28.02418745740657,0,0,0,0,0,0,0,0,0,0,2.703212079107197,0,0,3,48.99,49.19,5,4,0,0,8,5,1,678,0,0,0 +10150,12432,22698,-9,-9,-9,1,1,1,20,2,0,0,0,2,0,7,2,0,5,7.94649845362747,7.86181058128934,0,3,0,0,0,-9,0,-1100.040678785804,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,2,3,0,507,0,0,0 +10151,12433,22699,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,6.75456858044959,6.863953731436058,3,0,0,0,-9,0,-997.2868586517169,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.235144472390324,6.665057178852257,0,0,52,45,6,1,0,0,11,2,1,1051,0,0,0 +10152,12434,22700,-9,22703,22702,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.511364187964,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,1383.5,0,0,0 +10152,12434,22701,-9,22703,22702,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1186.204478518098,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,1383.5,0,0,0 +10152,12434,22702,22703,-9,-9,2,1,1,33,1,0,2,0,3,-9,2,1,0,4,8.697387210027207,8.714021813807772,0,2,0,-9,8,0,0,-100.7535974580881,0,0,0,33,1,4,1,-9,-9,2019,1,1,11,0,45,50,15,1,0,1,0,14.70091096802197,14.70091096802197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,4,1,1383.5,0,0,0 +10152,12434,22703,22702,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,4,7.251086858514108,7.792924305543685,0,2,0,-9,8,0,0,73.10413421227469,0,0,1,33,3,4,1,2,-9,2019,1,2,13,1,18,19,15,1,1,1,0,10.11320263670416,10.11320263670416,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.59,60.85,6,1,0,0,10,4,1,1383.5,0,0,0 +10153,12435,22704,-9,22705,22706,9,1,0,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.267894933963,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,7,2,1,600.5,0,0,0 +10153,12435,22705,22706,-9,-9,3,1,0,43,1,0,4,0,3,-9,6,3,0,3,0,0,0,2,0,-9,28,0,-6,-16.58422026488435,0,0,1,49,1,2,1,-9,-9,2019,3,1,36,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.91036295193245,3,47.03,40.18,3,3,0,0,7,2,1,600.5,0,0,0 +10153,12435,22706,22705,22708,-9,1,1,1,49,1,0,4,0,1,-9,2,1,0,2,8.060668225250392,8.014063091701216,0,2,0,-9,28,0,6,38.29047190997671,0,0,0,43,3,3,3,3,3,2019,2,3,36,12,0,30,15,1,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.622327330904291,3,44,40,2,3,0,0,7,2,1,600.5,0,0,0 +10153,12435,22707,-9,22705,22706,8,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.455328917453,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,7,2,1,600.5,0,0,0 +10153,12436,22708,-9,-9,-9,2,1,0,81,3,0,4,0,2,-9,4,3,0,1,0,0,0,4,0,0,0,-9,0,-1080.049126813128,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,3,3,0,0,7,2,1,2798,0,0,0 +10153,12437,22709,-9,22705,22706,4,1,0,21,2,0,4,1,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1191.376389337449,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,14,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.9,50.3,4,3,0,0,7,1,1,1271,0,0,0 +10153,12438,22710,-9,22705,22706,5,1,1,19,2,0,4,0,2,1,2,1,0,3,6.597197236313657,6.457174273556642,0,3,0,0,0,-9,0,-1052.576209732469,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,24,0,15,1,0,-9,1,3.480779579453064,3.480779579453064,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,3,3,0,0,7,2,1,1052,0,0,0 +10153,12439,22711,-9,22705,22706,6,1,0,18,2,0,4,1,3,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1013.741286627059,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.22,43.31,4,3,0,0,7,2,1,253,0,0,0 +10154,12440,22712,-9,22716,22713,2,1,0,19,2,0,1,0,2,0,7,2,0,3,6.709875536521815,6.297448771400037,0,3,0,0,0,-9,0,-1078.9648482166,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.15,52.08,4,1,0,0,11,2,1,673,0,0,0 +10154,12441,22713,22716,-9,-9,4,1,1,48,1,0,1,0,2,-9,2,1,0,3,7.709834096760988,7.866330203381031,0,2,0,-9,9,0,2,-54.26692544649218,0,0,0,46,2,3,1,3,2,2019,1,1,7,0,46,46,15,1,0,1,0,5.402770806110096,5.402770806110096,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,7,1,0,0,11,3,1,443,0,0,0 +10154,12441,22714,-9,22716,22713,3,1,0,16,2,0,1,0,2,-9,2,2,0,4,3.802386957243453,3.92939040192114,0,2,0,0,0,-9,0,-1020.5124682668,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,6,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.67,50.43,6,1,0,1,11,3,1,443,0,0,0 +10154,12441,22715,-9,22716,22713,5,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1031.478787997672,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,11,3,1,443,0,0,0 +10154,12441,22716,22713,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.152259608813156,7.455303117928022,0,2,0,-9,9,0,-2,-92.03986513808007,0,0,0,48,2,3,1,3,-9,2019,1,4,8,0,23,42,15,1,0,1,0,8.649253271882893,8.649253271882893,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,5,1,0,0,11,3,1,443,0,0,0 +10155,12442,22717,22718,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.587304440769866,8.591212160695459,0,1,0,-9,9,0,-1,-118.315222419962,0,0,0,53,1,2,1,3,3,2019,1,1,16,5,38,38,15,1,5,1,0,17.90793496991603,17.90793496991603,0,0,0,0,0,0,0,0,0,0,1.373501555485529,0,10.07118221287313,3,40.75,58.26,4,1,0,0,12,5,1,329,0,0,0 +10155,12442,22718,22717,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,2,8.539857735235341,8.4693484043504,0,1,0,-9,9,0,1,-94.55080930953075,-9,0,0,52,2,3,1,-9,-9,2019,1,2,16,4,25,0,15,1,4,1,0,22.90383517005711,22.90383517005711,0,0,0,0,0,0,0,0,0,0,3.019177895021983,0,8.637939072518956,3,37.59,35.75,4,1,0,0,12,5,1,329,0,0,0 +10156,12443,22719,-9,22721,22722,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1055.416297006537,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,62,5,1,0,0,9,3,1,991.25,0,0,0 +10156,12443,22720,-9,22721,22722,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1109.992577590262,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,54,5,1,0,0,9,3,1,991.25,0,0,0 +10156,12443,22721,22722,-9,-9,1,1,0,56,1,0,2,0,2,-9,1,1,0,4,.8651285611362276,.6290515452056851,0,2,0,-9,32,0,2,286.8102376956637,0,0,0,54,2,4,1,3,3,2019,1,2,10,0,25,30,15,1,0,1,0,.0090729066231712,.0090729066231712,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,4,1,0,0,9,3,1,991.25,0,0,0 +10156,12443,22722,22721,-9,-9,2,1,1,54,1,0,2,0,2,-9,2,1,0,4,8.472878503427996,8.06027175529451,0,2,0,-9,32,0,-2,-88.81886447099643,0,0,0,56,2,4,1,2,3,2019,1,1,9,0,42,65,15,1,0,1,0,11.47624760691284,11.47624760691284,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,4,1,0,0,9,3,1,991.25,0,0,0 +10157,12444,22723,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,0,4.815077732122332,5.085564740429753,3,0,0,0,-9,0,-1070.43915451676,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.30531557033857,4.734375254647769,0,0,32.04,23.4,5,1,0,0,9,2,1,105,0,0,0 +10158,12445,22724,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1049.54916453544,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,6,1,1,0,11,1,0,714,0,0,0 +10159,12446,22725,22727,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,3,7.141440844122973,7.65965034527719,0,2,0,-9,18,0,0,-67.73396229708089,0,0,0,63,3,4,1,2,-9,2019,1,2,7,0,32,0,15,1,0,1,0,5.962569903050194,5.962569903050194,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,4,0,0,8,4,1,1195.666666666667,0,0,0 +10159,12446,22726,-9,22725,22727,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.5800488065063,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,4,1,1195.666666666667,0,0,0 +10159,12446,22727,22725,-9,-9,2,1,1,63,1,0,1,0,3,-9,2,1,0,4,8.499791323069548,8.41693222960804,0,2,0,-9,5,0,9,-68.90438858752638,0,0,0,54,2,3,1,-9,-9,2019,1,1,5,0,40,0,15,1,0,1,0,13.28331395515033,13.28331395515033,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,4,0,0,8,4,1,1195.666666666667,0,0,0 +10159,12447,22728,-9,22725,22727,4,1,1,27,2,0,1,0,1,-9,2,1,0,5,8.425330767107466,8.651044002316418,0,3,0,0,0,-9,0,-955.7823382874657,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,35,0,15,1,0,-9,1,14.49492046360037,14.49492046360037,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,7,4,0,0,8,5,1,446,0,0,0 +10159,12448,22729,-9,22725,22727,5,1,1,23,2,0,1,0,2,1,2,1,0,4,7.619219220647116,7.53945613934441,0,3,0,0,0,-9,0,-987.4799155061852,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,37,0,15,1,1,-9,1,7.411273417779167,7.411273417779167,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,4,0,0,8,3,1,1055,0,0,0 +10160,12449,22730,-9,-9,-9,2,1,1,58,2,0,0,0,1,-9,2,1,0,3,8.117336954155155,8.234679767474613,0,3,0,0,0,-9,0,-1021.521023690595,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,40,38,15,1,8,-9,1,9.600724294771391,9.600724294771391,0,0,0,0,0,0,0,1,1,0,6.016979644816405,0,29.48729243394733,3,26.78,53.92,2,1,0,0,12,4,1,496,0,0,0 +10161,12450,22731,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,2,1,0,5,8.001335264695946,8.069805991535018,0,3,0,0,0,-9,0,-943.769266031171,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,43,16,15,1,0,-9,0,6.235530708380148,6.235530708380148,0,0,0,0,0,0,0,0,0,0,0,0,2.117870415918735,3,57.06,57.76,7,1,0,0,4,3,0,77,0,0,0 +10161,12451,22732,-9,22731,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,5,6.608137816495101,7.141343512709119,0,3,0,0,0,-9,0,-984.2341926206497,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,2,0,30,40,15,1,0,-9,1,4.166132532094669,4.166132532094669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,4,2,0,2846,0,0,0 +10162,12452,22733,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,5,0,7.064280208799842,6.881052236192895,3,0,0,0,-9,0,-1092.407393990989,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.793248324856345,7.273675175852038,0,0,54.67,57.49,6,1,0,0,6,2,1,1058,0,0,0 +10163,12453,22734,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,3,8.673972145896604,8.795961439522477,0,3,0,0,0,-9,0,-1034.001882096523,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,17.0051105935201,17.0051105935201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.2,39.82,5,1,0,0,2,5,1,675,0,0,0 +10164,12454,22735,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,1,0,6.444011061992156,5.918375787896312,3,0,0,0,-9,0,-1082.619493468302,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,4.447294337359812,.8217117606304141,0,1,1,0,1.362215693844342,6.206085969959685,0,0,51.48,24.97,5,1,0,0,10,2,1,1065,0,0,0 +10165,12455,22736,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1052.891197203512,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,33.94,5,1,0,0,13,1,0,251,0,0,0 +10166,12456,22737,22738,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,3,6.034303345860677,7.957153652931681,7.816985423832907,1,0,-9,1,-9,0,-65.48749815643195,-9,0,0,64,2,5,1,-9,-9,2019,3,1,12,0,2,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.41435386837966,7.951297574569986,8.771875901506839,3,51.41,56.15,6,1,0,0,12,4,1,444,0,0,0 +10166,12456,22738,22737,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,5,6.397867533800845,6.949411886407621,5.88120362602213,1,0,-9,33,-9,0,28.55968535047656,-9,0,0,64,1,3,3,2,2,2019,2,2,8,0,10,0,15,1,0,4,0,7.73591336945586,7.73591336945586,1,0,0,0,0,0,0,1,1,0,7.152668201345342,5.975172941781677,0,0,43.32,63.94,6,1,0,0,12,4,1,444,0,0,0 +10167,12457,22739,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-995.6739290325795,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,36,12,0,40,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.72,22.57,2,1,0,0,10,1,1,260,0,0,0 +10168,12458,22740,22741,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,8.102019353909713,8.039866032880507,1,0,-9,31,0,0,105.5275654431866,0,0,0,71,1,2,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,6.099806863053673,0,0,0,0,42.951425118627,1,1,0,5.911169413621968,7.674600106492408,0,0,46.78,39.4,6,1,0,0,2,4,1,383.5,0,0,0 +10168,12458,22741,22740,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,2,0,7.889601295118681,7.875330238854184,1,0,-9,31,0,0,53.21233280434311,0,0,0,71,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.346680098811589,8.053686958901142,0,0,64,24.84,6,1,0,0,2,4,1,383.5,0,0,0 +10169,12459,22742,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,1,1,0,3,9.838641033876131,9.554365911052113,0,3,0,0,0,-9,0,-891.8017480527827,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,60,75,15,1,0,-9,1,29.65270246354059,29.65270246354059,0,0,0,0,0,0,0,0,0,0,2.466505115411222,0,0,0,50.49,42.96,5,1,0,0,5,5,0,552,0,0,0 +10170,12460,22743,22744,-9,-9,2,1,1,90,1,0,0,0,3,-9,4,3,0,3,0,7.208435334503924,7.060891565863004,1,0,-9,50,0,7,-28.37475117613553,0,0,0,83,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.229671182375837,6.975710414011216,7.906643392857451,1,55,45,6,1,0,0,9,2,1,816,0,0,0 +10170,12460,22744,22743,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-7,-134.6038436661503,0,0,0,90,3,3,3,2,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.832519529170014,0,8.416838136580395,1,52,45,6,1,0,0,9,2,1,816,0,0,0 +10171,12461,22745,-9,22747,22746,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1112.483235825485,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,7,4,1,619.25,0,0,0 +10171,12461,22746,22747,-9,-9,1,1,1,34,1,2,2,0,1,-9,2,1,0,3,9.486836542380562,9.514316879414894,0,2,0,-9,6,0,1,65.76633330304927,0,0,0,33,1,2,1,2,2,2019,1,2,10,0,38,45,15,1,0,1,0,24.0177875504473,24.0177875504473,0,0,0,0,0,0,0,1,1,0,4.817778413160813,0,0,0,57.9,51.84,6,5,0,0,7,4,1,619.25,0,0,0 +10171,12461,22747,22746,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,2,0,0,0,2,0,-9,6,0,-1,42.1408413153327,0,0,1,34,1,3,1,-9,-9,2019,1,1,5,0,0,21,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.967599357814303,0,0,0,55.15,45.23,6,1,0,0,7,4,1,619.25,0,0,0 +10171,12461,22748,-9,22747,22746,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.4222859829991,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,4,1,619.25,0,0,0 +10172,12462,22749,-9,22750,-9,2,1,0,16,2,0,1,0,3,-9,2,2,0,5,5.735675438715347,5.970811994809401,3.520425139067992,4,0,0,0,-9,0,-1049.022315173978,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.519042400450811,0,0,0,51.73,58.82,6,1,0,0,6,5,1,367,0,0,0 +10172,12462,22750,-9,-9,-9,1,1,0,38,3,0,1,0,1,-9,2,1,0,5,8.754796576632666,8.914893745947049,0,4,0,0,0,-9,0,-1035.079392220025,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,45,52,15,1,0,-9,0,17.18807982511653,17.18807982511653,0,0,0,0,0,0,0,1,1,0,1.849017177627651,0,0,0,54.1,59.11,6,1,0,0,6,5,1,367,0,0,0 +10172,12462,22751,-9,22750,-9,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1033.617662372634,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,5,1,367,0,0,0 +10173,12463,22752,-9,22754,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1132.849652271901,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,3,1,766.6666666666666,0,0,0 +10173,12463,22753,-9,22754,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1015.049605450894,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,2,0,0,7,3,1,766.6666666666666,0,0,0 +10173,12463,22754,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,3,7.194963147834171,8.234114756266823,7.552610717469399,4,0,0,0,-9,0,-1030.302390286171,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,20,28,15,1,2,-9,0,6.754313592499003,6.754313592499003,0,0,0,0,0,0,0,1,1,0,6.952652857490166,0,120.6557417413447,3,47.97,48.24,6,1,0,0,7,3,1,766.6666666666666,0,0,0 +10174,12464,22755,-9,22757,22756,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-875.9065004058432,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.42,59.64,6,1,0,0,13,5,1,398.6666666666667,0,0,0 +10174,12464,22756,22757,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,4,8.675250689163274,8.730692432626331,0,2,0,-9,7,0,-3,-155.4940567235035,0,0,0,50,2,5,1,-9,-9,2019,1,1,6,0,36,36,15,1,0,1,0,27.83915528522605,27.83915528522605,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.49,61.79,7,1,0,0,13,5,1,398.6666666666667,0,0,0 +10174,12464,22757,22756,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,5,9.434514992824372,9.026252229983603,0,2,0,-9,7,0,3,51.82810154355389,0,0,0,47,1,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,42.29620543061357,42.29620543061357,0,0,0,0,0,0,0,1,1,0,0,0,12.09320908757117,3,57.06,57.76,6,1,0,0,13,5,1,398.6666666666667,0,0,0 +10174,12465,22758,-9,22757,22756,3,1,1,19,2,0,1,1,2,0,7,2,0,5,6.233793574648995,6.208252714319205,0,3,0,0,0,-9,0,-1032.386971546032,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,2,1,429,0,0,0 +10175,12466,22759,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,3,3,0,4,5.527766751427325,6.940135449700508,7.003671134927242,3,0,-9,0,-9,0,-966.1770037228545,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.660987942088726,8.573774108648227,3,23.87,56.7,4,1,1,0,7,2,1,388,0,0,0 +10176,12467,22760,-9,-9,-9,1,1,0,35,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-995.5994864317053,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.72,36.89,4,1,0,0,8,1,0,73,0,0,0 +10177,12468,22761,22762,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,5,8.878417615785164,8.757556428480108,0,1,0,-9,4,0,4,-8.317904803003884,0,0,1,34,2,5,1,2,3,2019,1,2,6,0,48,45,15,1,0,1,0,16.11623573084498,16.11623573084498,0,0,0,0,0,0,0,0,0,0,.3655546737200844,0,0,0,57.06,57.76,7,1,0,0,5,5,1,631,0,0,0 +10177,12468,22762,22761,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,5,8.036916218691699,8.039074756785856,0,1,0,-9,4,0,-4,50.26549323730477,0,0,0,38,1,5,1,-9,-9,2019,1,1,10,0,41,39,15,1,0,1,0,8.260928383112576,8.260928383112576,0,0,0,0,0,0,0,0,0,0,.1563118125602523,0,0,0,59.43,58.05,6,1,0,0,5,5,1,631,0,0,0 +10178,12469,22763,-9,22766,22764,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1179.019663152134,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,0,687,0,0,0 +10178,12469,22764,22766,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,5,7.771877719157576,8.075358090321007,0,2,0,-9,18,0,3,10.26400246015675,0,0,0,33,2,3,3,2,2,2019,2,1,9,0,40,40,15,1,0,3,0,10.00150629689294,10.00150629689294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,6,3,0,687,0,0,0 +10178,12469,22765,-9,22766,22764,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1131.093261959426,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,0,687,0,0,0 +10178,12469,22766,22764,-9,-9,1,1,0,33,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,17,0,-3,-101.6334715857318,0,0,1,36,2,5,1,2,2,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.08,59.58,4,1,0,0,6,3,0,687,0,0,0 +10179,12470,22767,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-931.8469776630608,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,22.37,6,1,0,0,13,1,0,1633,0,0,0 +10180,12471,22768,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,2,1,0,2,7.725126529422986,7.818432768761458,0,3,0,0,0,-9,0,-1052.615392952423,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,47,37,15,1,7,-9,0,6.547769714349207,6.547769714349207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.63,36.19,3,4,0,0,8,3,0,854,0,0,0 +10181,12472,22769,-9,22770,-9,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1059.170511260363,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,1137,0,0,0 +10181,12472,22770,-9,-9,-9,1,1,0,39,3,0,1,0,2,-9,2,1,0,5,8.173262481354008,8.113989106321318,0,4,0,0,0,-9,0,-1028.782934705643,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,4,40,40,15,1,4,-9,0,10.68175605433736,10.68175605433736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.17,53.95,2,1,0,0,11,3,0,1137,0,0,0 +10182,12473,22771,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,5,5.96609702676335,5.996482344052671,0,3,0,0,0,-9,0,-946.2608292940106,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,10,38,15,1,0,-9,0,5.691580320258705,5.691580320258705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.45,62.04,5,1,0,0,12,2,1,937,0,0,0 +10183,12474,22772,22773,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,3,0,7.400589372584396,8.074191775423166,1,0,-9,61,0,8,-25.57532966148932,0,0,0,78,2,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.666176010634445,7.252028758715981,0,0,56,44,6,1,0,0,9,3,1,331.5,0,0,0 +10183,12474,22773,22772,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,61,0,-8,-32.02207674617669,0,0,0,86,3,3,3,2,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.559029906924987,0,119.9871533636134,1,54.67,57.49,6,1,0,0,9,3,1,331.5,0,0,0 +10184,12475,22774,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,8.057722897350754,8.413386691837692,3,0,0,0,-9,0,-1126.177350210677,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.461435693498649,8.35092612448986,0,3,54.74,57.22,7,1,0,0,10,4,0,4090,0,0,0 +10185,12476,22775,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,1,0,6.540185249645022,6.909033941970911,3,0,0,0,-9,0,-1241.14342733688,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,4,12,-9,0,0,0,1,43.14193030500009,0,0,0,0,442.1200182355822,1,1,0,6.52429296871496,0,0,0,24.93,19.95,1,2,0,1,10,2,0,687,0,0,0 +10186,12477,22776,-9,22777,22778,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-965.6214381412462,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,536,0,0,0 +10186,12477,22777,22778,-9,-9,2,1,0,34,1,1,1,0,1,-9,2,1,0,4,0,0,0,2,0,-9,7,0,1,-152.1855228396043,0,0,1,33,2,3,1,1,1,2019,1,1,8,0,0,47,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.2752267750945919,0,0,0,47.23,58.08,6,1,0,0,7,5,1,536,0,0,0 +10186,12477,22778,22777,-9,-9,1,1,1,33,1,1,1,0,2,-9,1,1,0,3,9.118643941580221,9.285426899324269,0,2,0,-9,7,0,-1,17.42088071373312,0,0,0,34,1,4,1,3,2,2019,1,2,10,1,60,55,15,1,1,1,0,15.39205236530149,15.39205236530149,0,0,0,0,0,0,0,1,1,0,6.42022485925099,0,0,0,55.61,50.3,6,1,0,0,7,5,1,536,0,0,0 +10187,12478,22779,22781,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,8.213950896989839,8.195244313880112,0,2,0,-9,9,0,1,15.61895061753143,0,0,0,46,1,4,1,1,2,2019,1,2,7,0,37,35,15,1,0,1,0,16.35083615455038,16.35083615455038,0,0,0,0,0,0,0,0,0,0,1.850076354518875,0,0,0,57.16,56.15,6,1,0,0,12,5,1,680.6666666666666,0,0,0 +10187,12478,22780,-9,22779,22781,3,1,1,16,2,0,2,0,2,-9,3,2,0,5,0,0,0,2,0,0,0,-9,0,-999.3567620588391,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.401257742009793,0,0,0,62.39,56.71,7,1,1,0,12,5,1,680.6666666666666,0,0,0 +10187,12478,22781,22779,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.509310704242512,9.537645152291409,0,2,0,-9,9,0,-1,-32.95031478221347,0,0,0,47,1,4,1,2,2,2019,1,1,1,0,44,44,15,1,0,1,0,37.56138534296625,37.56138534296625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,12,5,1,680.6666666666666,0,0,0 +10188,12479,22782,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,2,7.878247696181087,8.035425508665137,0,3,0,0,0,-9,0,-1040.909958396622,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,45,42,15,1,0,-9,0,6.114011481203344,6.114011481203344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,53.51,4,1,0,0,2,3,1,2448,0,0,0 +10189,12480,22783,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,1,1,0,4,6.67883536606799,6.89487401024005,0,3,0,0,0,-9,0,-874.8202642637448,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,24,0,15,1,0,-9,0,3.32629802943889,3.32629802943889,0,0,0,0,0,0,0,0,0,0,3.951374026132902,0,0,0,41.58,58.16,5,1,0,0,13,2,1,929,0,0,0 +10190,12481,22784,22785,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,9.529220193935002,9.600269049734074,0,1,0,-9,10,0,0,-53.87617254076014,0,0,0,54,2,3,1,2,2,2019,1,2,10,0,48,40,15,1,0,1,0,40.71222167725116,40.71222167725116,0,0,0,0,0,0,0,0,0,0,8.534797434820685,0,0,0,51.83,57.2,6,1,0,0,9,5,1,552.5,0,0,0 +10190,12481,22785,22784,-9,-9,2,1,0,54,1,0,0,0,2,-9,1,1,0,3,7.551095118664796,7.752220966959352,0,1,0,-9,10,0,0,13.69104632239454,0,0,0,54,1,4,1,3,3,2019,1,1,16,4,20,5,15,1,4,1,0,14.33059920670325,14.33059920670325,0,0,0,0,0,0,0,0,0,0,1.866292566007606,0,0,0,39.45,49.52,5,1,0,0,9,5,1,552.5,0,0,0 +10190,12482,22786,-9,22785,22784,3,1,1,20,2,0,0,0,2,1,3,3,0,4,5.777233656028269,5.683433199749576,0,3,0,0,0,-9,0,-1080.412981509445,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,8,3,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.333636749293672,0,0,0,29.05,61.18,5,1,1,0,9,2,1,559,0,0,0 +10190,12483,22787,-9,22785,22784,4,1,0,23,2,0,0,0,1,-9,1,1,0,5,8.218275030028936,8.030520146765621,0,3,0,0,0,-9,0,-858.3690760399722,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,27,9,90,0,15,1,9,-9,1,4.786609925572546,4.786609925572546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.41,60.68,4,1,0,0,9,4,1,231,0,0,0 +10191,12484,22788,-9,22790,22789,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.929192536166,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,1,0,1137.6,0,0,0 +10191,12484,22789,22790,-9,-9,1,1,1,24,1,1,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,1,0,0,1,0,23,3,3,3,1,2,2019,4,2,11,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,1,1,7,1,0,1137.6,0,0,0 +10191,12484,22790,22789,-9,-9,2,1,0,23,1,1,3,0,3,-9,3,3,0,3,0,0,0,2,0,-9,2,0,-1,0,0,1,1,24,2,3,3,-9,-9,2019,4,1,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.72,59.29,6,1,1,1,7,1,0,1137.6,0,0,0 +10191,12484,22791,-9,22790,22789,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-862.5697000890193,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,1,0,1137.6,0,0,0 +10191,12484,22792,-9,22790,22789,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.1860596624202,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,1,0,1137.6,0,0,0 +10192,12485,22793,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,2,1,0,4,7.561049069805131,7.465433081085205,0,3,0,0,0,-9,0,-896.5783725911505,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,38,0,15,1,0,-9,0,5.498717572379519,5.498717572379519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,60.62,5,1,0,0,4,3,0,465,0,0,0 +10192,12486,22794,-9,-9,22793,2,1,0,20,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,-9,0,-9,0,-1123.473010477494,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.2423791885210821,0,0,0,46,58,5,1,0,1,4,1,0,2169,0,0,0 +10193,12487,22795,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,4,8.298553857063894,8.269715134041144,0,3,0,0,0,-9,0,-1049.547671399955,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,30,15,1,0,-9,0,14.47845068430378,14.47845068430378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,4,0,282,0,0,0 +10194,12488,22796,22797,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,4,7.927310721081496,8.017585709889234,0,1,0,-9,2,0,2,73.82276059813663,-9,1,0,21,2,3,1,-9,-9,2019,1,1,11,0,37,0,15,1,2,1,0,7.740312643191875,7.740312643191875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,5,0,0,12,4,0,709.5,0,0,0 +10194,12488,22797,22796,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,3,7.887321164422122,7.83089250672014,0,1,0,-9,2,0,-2,-69.44589999180775,0,1,1,23,2,4,1,-9,-9,2019,1,2,10,1,50,30,15,1,1,1,0,7.01468495474014,7.01468495474014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.98,34.07,6,1,0,0,12,4,0,709.5,0,0,0 +10195,12489,22798,22799,-9,-9,1,1,1,86,1,0,0,0,1,-9,4,3,0,3,0,7.0649864814555,7.43213184419559,1,0,-9,6,0,2,-38.38247035107808,0,0,0,84,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.099102412429728,7.006061802802694,0,0,55,45,6,1,0,0,11,3,1,267.5,0,0,0 +10195,12489,22799,22798,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,7.00093317371679,7.035318840728507,1,0,-9,6,0,-2,-14.00817696444894,0,0,0,86,1,3,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.807459763058224,7.06998886586005,0,0,53,44,6,1,0,0,11,3,1,267.5,0,0,0 +10196,12490,22800,22801,-9,-9,2,1,1,44,1,0,0,0,1,-9,2,1,0,4,8.712951644265717,8.529460757845788,0,1,0,-9,21,0,-13,-26.40745901490233,0,0,0,57,1,3,1,2,2,2019,1,1,11,1,75,40,15,1,1,1,0,9.172468551961961,9.172468551961961,0,0,0,0,0,0,0,0,0,0,3.892140740598462,0,0,3,49.95,56.68,3,1,0,0,1,5,1,778,0,0,0 +10196,12490,22801,22800,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,3,8.820011401966013,9.038647728226946,0,1,0,-9,21,0,13,-77.64612571171936,0,0,0,44,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,22.97626241032732,22.97626241032732,0,0,0,0,0,0,0,0,0,0,3.035815392292336,0,0,3,56.18,48.68,6,1,0,0,1,5,1,778,0,0,0 +10196,12491,22802,-9,22801,22800,3,1,0,19,2,0,0,0,2,-9,7,2,0,4,6.92769069829203,6.949042249189504,6.31804727563674,3,0,0,0,-9,0,-1010.186288467097,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,1,12,10,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.964294961956306,0,0,0,46.92,60.71,6,1,0,0,1,3,1,946,0,0,0 +10197,12492,22803,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,7.710455531210963,7.512855334196201,3,0,0,0,-9,0,-998.1950507133885,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.004357676877181,7.9588003640625,0,0,61.71,43.2,6,1,0,0,1,3,1,204,0,0,0 +10198,12493,22804,22805,-9,-9,2,1,1,60,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,26,0,7,21.55884955768125,0,0,0,53,2,3,1,3,2,2019,3,1,25,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,26,1,1,0,1,1,2,0,298,0,0,0 +10198,12493,22805,22804,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.646651642573342,7.773646841004777,0,1,0,-9,26,0,-7,116.4187758952082,0,0,0,60,2,1,3,2,2,2019,2,2,8,0,30,30,15,1,0,3,0,5.60726087123896,5.60726087123896,0,0,0,0,0,0,0,1,1,0,0,0,15.99625898169461,1,60.29,52.11,6,1,0,0,1,2,0,298,0,0,0 +10199,12494,22806,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,8.555763611149537,7.98425326134422,3,0,0,0,-9,0,-850.9295841509393,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.133827361975371,0,0,57.33,53.46,6,1,0,0,7,4,1,440,0,0,0 +10200,12495,22807,-9,22808,22809,3,1,1,16,2,0,0,0,2,-9,2,2,0,2,7.583470972889818,7.61121965927027,0,1,0,0,0,-9,0,-986.9917721649506,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,30,10,40,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.46,52.31,1,1,0,0,2,5,1,851.3333333333334,0,0,0 +10200,12495,22808,22809,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.399793162304492,7.975486809639133,0,1,0,-9,7,0,0,39.09285282564471,0,0,0,49,2,3,1,1,2,2019,1,2,8,0,39,32,15,1,0,1,0,8.217988737493842,8.217988737493842,0,0,0,0,0,0,0,0,0,0,3.342214984049158,0,28.33860314669031,3,54.96,53.17,4,1,0,0,2,5,1,851.3333333333334,0,0,0 +10200,12495,22809,22808,-9,-9,2,1,1,49,1,0,0,0,2,-9,1,1,0,3,8.661715733579435,8.847216763740457,0,1,0,-9,7,0,0,-95.28211528221009,0,0,0,49,2,3,1,1,-9,2019,1,1,8,0,50,40,15,1,0,1,0,16.00989844458342,16.00989844458342,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.96,53.17,5,1,0,0,2,5,1,851.3333333333334,0,0,0 +10201,12496,22810,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,5.19381442433857,5.272824169569351,3,0,0,0,-9,0,-1104.606115489512,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.700797251455969,5.345314017281249,0,0,52.95,32.42,5,1,0,0,2,2,1,38,0,0,0 +10202,12497,22811,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,6.294283515937058,6.299567427214092,3,0,0,0,-9,0,-890.8785277942787,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.081893398385641,0,0,49.38,35.63,6,1,0,0,2,2,1,435,0,0,0 +10203,12498,22812,-9,22816,-9,3,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1001.246302998771,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,1,0,1317.6,0,0,0 +10203,12498,22813,-9,22816,-9,5,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1043.22829245152,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,1317.6,0,0,0 +10203,12498,22814,-9,22816,-9,4,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1055.367858516221,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,1317.6,0,0,0 +10203,12498,22815,-9,22816,-9,2,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-976.7276919936576,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,4,0,0,8,1,0,1317.6,0,0,0 +10203,12498,22816,-9,-9,-9,1,1,0,32,3,0,4,0,2,-9,7,2,0,5,0,0,0,4,0,-9,0,-9,0,-995.4267580938166,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,4,0,0,8,1,0,1317.6,0,0,0 +10204,12499,22817,22818,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,5,8.412007593174712,8.949035739054166,0,1,0,-9,5,0,-3,-65.33587925713762,0,0,1,33,1,4,1,-9,-9,2019,1,1,9,1,45,40,15,1,1,1,0,15.08315457023551,15.08315457023551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.3,59.89,7,1,0,0,2,5,1,1249,0,0,0 +10204,12499,22818,22817,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,4,8.51541468335156,8.694006328345816,0,1,0,-9,5,0,3,-27.92761494344767,0,0,0,30,1,5,1,2,2,2019,1,2,3,0,39,43,15,1,0,1,0,15.33205334941316,15.33205334941316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,7,1,0,0,2,5,1,1249,0,0,0 +10205,12500,22819,-9,22820,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.384205612969,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,2,0,798,0,0,0 +10205,12500,22820,-9,-9,-9,1,1,0,38,3,0,1,0,3,-9,2,1,0,4,6.954228943820833,7.136959643011298,0,4,0,0,0,-9,0,-952.0267524080289,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,24,23,15,1,0,-9,0,4.756094187235143,4.756094187235143,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,13,2,0,798,0,0,0 +10206,12501,22821,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,2,0,7.133166579780966,7.173729687175873,3,0,0,0,-9,0,-1116.468511749404,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.150506893771523,0,0,58.89,27.34,6,1,0,0,8,2,1,2035,0,0,0 +10207,12502,22822,22823,-9,-9,2,1,1,69,1,0,0,0,3,-9,1,1,0,3,6.258759532823053,6.259954150688126,0,1,0,-9,50,0,-1,31.26673823993872,0,0,0,70,2,3,3,3,2,2019,2,1,10,0,16,0,15,1,1,4,0,2.911146559793097,2.911146559793097,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,11,2,1,536,0,0,0 +10207,12502,22823,22822,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,1,32.92058117848942,0,0,0,69,3,3,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.54,46.02,6,1,0,0,11,2,1,536,0,0,0 +10208,12503,22824,-9,22825,22826,2,1,0,20,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-994.9840514188538,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.49,61.79,6,1,0,0,12,1,1,146,0,0,0 +10208,12504,22825,22826,-9,-9,1,1,0,44,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,-5,-25.76519536007719,-9,0,1,49,2,4,1,3,2,2019,3,3,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.88,22.93,5,1,0,0,12,3,1,309.6666666666667,0,0,0 +10208,12504,22826,22825,-9,-9,3,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.610992607881725,8.356131661293501,0,2,0,-9,6,0,5,28.8621201142605,-9,0,0,44,2,1,3,2,2,2019,2,1,9,0,40,0,15,1,1,3,0,12.81001224398196,12.81001224398196,0,0,0,0,0,0,0,1,1,0,6.942990087257588,0,0,0,53,55,6,1,0,0,12,3,1,309.6666666666667,0,0,0 +10208,12504,22827,-9,22825,22826,4,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-835.9161942176936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,309.6666666666667,0,0,0 +10209,12505,22828,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,2,7.555074372408618,7.609764321592356,0,3,0,0,0,-9,0,-1017.223342775966,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,35,38,15,1,5,-9,0,7.323277053489774,7.323277053489774,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.64,30.85,4,1,0,1,12,3,0,494,0,0,0 +10210,12506,22829,22830,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,6.947372725820667,7.14523574689836,1,0,-9,39,0,-1,13.70886600158522,0,0,0,74,1,5,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,1.80086825213968,0,0,0,0,1,1,0,1.716322874435219,7.287023737249435,0,3,48.28,60.18,1,1,0,0,12,4,1,762,0,0,0 +10210,12506,22830,22829,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,5,0,8.285283571217956,8.38042754250108,1,0,-9,5,0,1,116.7866602936113,0,0,0,73,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.917502928992948,8.258386820970074,77.26640554428047,1,57.06,57.76,7,1,0,0,12,4,1,762,0,0,0 +10210,12507,22831,-9,22829,22830,3,1,0,30,2,0,0,0,1,-9,2,1,0,5,7.976505972350757,8.362519150485209,0,3,0,0,0,-9,0,-1023.304924401865,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,14,3,35,47,15,1,3,-9,1,11.54556652927078,11.54556652927078,0,0,0,0,0,0,0,1,1,0,0,0,0,3,39.79,63.29,6,1,0,0,12,4,1,982,0,0,0 +10211,12508,22832,22833,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,4,0,8.493774398156219,8.487896621944543,1,0,-9,53,0,0,90.95290894822304,0,0,0,75,1,5,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.036543080172159,8.578273107972082,0,0,54.2,57.49,6,1,0,0,7,5,1,443.5,0,0,0 +10211,12508,22833,22832,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,5,0,8.236623595771936,8.172178187038911,1,0,-9,56,0,0,-1.376675501997747,0,0,0,75,1,4,3,2,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.221499030527452,0,0,62.39,56.71,6,2,0,0,7,5,1,443.5,0,0,0 +10212,12509,22834,22835,-9,-9,3,1,1,32,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,1,-9,-5,0,-9,0,0,37,2,3,3,-9,-9,2019,4,1,19,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.91392293406948,2,25.42,55.04,1,1,1,1,4,1,0,348,0,0,0 +10212,12509,22835,22834,-9,-9,1,1,0,37,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,1,1,-9,5,0,0,0,1,32,2,3,3,2,3,2019,4,3,25,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.29,33.17,3,1,0,1,4,1,0,348,0,0,0 +10212,12510,22836,-9,22835,22834,2,1,1,19,2,0,0,0,2,-9,2,1,0,5,7.162428187849814,7.253833089941716,0,3,0,0,0,-9,0,-1077.951666773185,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,0,5.116871830709086,5.116871830709086,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,1,0,0,4,3,0,379,0,0,0 +10213,12511,22837,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,8.150866942314758,8.242475703434803,0,3,0,0,0,-9,0,-974.8898967161123,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,46,44,15,1,12,-9,0,11.68082237479431,11.68082237479431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.8,66.2,3,1,0,0,12,4,1,1620,0,0,0 +10214,12512,22838,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,2,0,6.13599022171829,6.312407361084374,3,0,0,0,-9,0,-990.9229215638106,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.237284014058938,38.86374029547407,3,31.01,34.74,3,1,0,0,6,2,0,654,0,0,0 +10215,12513,22839,22840,-9,-9,1,1,1,44,1,0,0,0,1,-9,2,1,0,3,9.314795678708931,9.481668445813105,0,1,0,-9,17,0,-1,-26.76820165416776,0,0,0,45,1,3,3,1,1,2019,2,2,16,5,50,50,15,1,5,3,0,27.57696249351682,27.57696249351682,0,0,0,0,0,0,0,0,0,0,3.734446199057886,0,0,0,57.07,46.71,5,1,0,0,9,5,1,1575,0,0,0 +10215,12513,22840,22839,-9,-9,2,1,0,45,1,0,0,0,1,-9,3,3,0,3,0,0,0,1,0,-9,15,0,1,145.155135703619,0,0,0,44,1,3,1,3,1,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.091131283984023,0,0,0,49.52,56.95,4,3,1,0,9,5,1,1575,0,0,0 +10216,12514,22841,22842,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.109136673653637,8.12221356890759,0,1,0,-9,13,0,0,-3.10824395802735,0,0,0,56,2,5,1,2,3,2019,1,2,8,0,38,37,15,1,0,1,0,11.10457853964596,11.10457853964596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,7,5,1,1025.5,0,0,0 +10216,12514,22842,22841,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,5,8.862322383220178,8.963915661086631,0,1,0,-9,13,0,0,-85.8483885074056,0,0,0,56,1,4,1,-9,1,2019,1,1,7,0,40,40,15,1,0,1,0,18.68828788188682,18.68828788188682,0,0,0,0,0,0,0,0,0,0,7.324529860048781,0,0,0,61.01,50.48,7,1,0,0,7,5,1,1025.5,0,0,0 +10216,12515,22843,-9,22841,22842,3,1,0,23,2,0,0,0,2,-9,2,1,0,2,8.083268190220682,7.927392424318451,0,3,0,0,0,-9,0,-838.890822918661,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,37,47,15,1,0,-9,1,9.428311680584274,9.428311680584274,0,0,0,0,0,0,0,0,0,0,1.176457927257197,0,115.3633573272091,3,48.03,50.02,6,1,0,0,7,4,1,714,0,0,0 +10217,12516,22844,22847,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,3,8.782373193626004,8.648645357214583,0,2,0,-9,14,0,4,-88.61916918204328,0,0,0,31,2,4,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,21.42915881102781,21.42915881102781,0,0,0,0,0,0,0,1,1,0,.2249427791919264,0,0,0,61.85,44.55,6,1,0,0,8,4,1,1168.25,0,0,0 +10217,12516,22845,-9,22847,22844,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.955105442071,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,4,1,1168.25,0,0,0 +10217,12516,22846,-9,22847,22844,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.1121006442339,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,1168.25,0,0,0 +10217,12516,22847,22844,-9,-9,2,1,0,31,1,0,2,0,2,-9,2,1,0,4,7.548868019683476,7.132461027893397,0,2,0,-9,13,0,-4,-60.69430716047713,0,0,1,35,2,3,1,3,2,2019,1,1,9,0,18,19,15,1,0,1,0,11.87882026220344,11.87882026220344,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,48.57,6,1,0,0,8,4,1,1168.25,0,0,0 +10218,12517,22848,22849,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,5,5.906630940366372,5.517705543773824,0,1,0,-9,4,0,-2,82.5595064541988,0,0,0,55,1,4,1,2,2,2019,1,2,8,0,10,10,15,1,0,1,0,3.61608995018848,3.61608995018848,0,0,0,0,0,0,0,0,0,0,4.915968670159408,0,0,0,55.09,55.87,6,1,0,0,9,4,1,890,0,0,0 +10218,12517,22849,22848,-9,-9,2,1,1,55,1,0,0,0,1,-9,1,1,0,4,8.585911107847679,8.7468160597258,0,1,0,-9,4,0,2,34.52907095996225,-9,0,0,53,1,5,1,-9,-9,2019,1,1,9,0,60,0,15,1,1,1,0,12.27890844678909,12.27890844678909,0,0,0,0,0,0,0,0,0,0,4.470120415203353,0,0,0,53,54,6,1,0,0,9,4,1,890,0,0,0 +10219,12518,22850,-9,22853,22851,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.01545614415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,4,4,1,446.75,0,0,0 +10219,12518,22851,22853,-9,-9,1,1,1,33,1,0,2,0,2,-9,2,1,0,3,8.267179045883186,8.344823555256886,0,2,0,-9,10,0,-1,-62.45656568938105,0,0,0,34,2,3,1,1,2,2019,1,2,12,1,46,36,15,1,1,1,0,9.804494126748301,9.804494126748301,0,0,0,0,0,0,0,1,1,0,2.569887606015464,0,0,0,54.67,46.44,6,1,0,0,4,4,1,446.75,0,0,0 +10219,12518,22852,-9,22853,22851,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.7368260704145,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,446.75,0,0,0 +10219,12518,22853,22851,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,3,8.564533998312186,8.251358209858411,0,2,0,-9,10,0,1,-62.32261526565746,0,0,1,33,2,3,1,-9,-9,2019,1,1,6,0,51,20,15,1,0,1,0,8.09064675774213,8.09064675774213,0,0,0,0,0,0,0,1,1,0,0,0,24.55382633860729,3,62.66,52.4,4,1,0,0,4,4,1,446.75,0,0,0 +10220,12519,22854,-9,-9,-9,1,1,1,81,3,0,0,0,1,-9,4,3,0,4,7.344280600722017,7.779276621148209,6.970053175207237,3,0,0,0,-9,0,-981.2499691347795,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.511566468833466,6.723556997757273,0,0,57.16,56.15,7,1,0,0,8,3,1,1337,0,0,0 +10221,12520,22855,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1017.559143542033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.08590543385575,0,0,0,64.40000000000001,36.46,7,1,0,0,4,1,1,1186,0,0,0 +10222,12521,22856,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,3,0,5.634337153338058,5.489272996381495,3,0,0,0,-9,0,-914.0784518434298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.795838078302895,5.592517749223409,0,0,53,47,5,1,0,0,13,2,1,1533,0,0,0 +10223,12522,22857,22858,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,5.344894230070778,5.684143047059424,1,0,-9,43,0,-8,36.36079862397865,0,0,0,78,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.398985558452866,6.007495594347524,0,0,54.96,53.17,6,1,0,0,1,2,1,349.5,0,0,0 +10223,12522,22858,22857,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,6.928211810935382,6.935461293491517,1,0,-9,43,0,8,105.1422424786686,0,0,0,70,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4640086630477033,6.350831664057269,0,0,55.54,46.02,6,1,0,0,1,2,1,349.5,0,0,0 +10224,12523,22859,-9,22861,22862,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-866.2663193419198,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,5,1,540.25,0,0,0 +10224,12523,22860,-9,22861,22862,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.5256738886404,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,540.25,0,0,0 +10224,12523,22861,22862,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,2,7.449151495924057,7.330877595250138,0,2,0,-9,7,0,-7,21.88664887608607,0,0,1,42,1,3,1,2,-9,2019,1,2,11,2,20,20,15,1,2,1,0,10.82055837013658,10.82055837013658,0,0,0,0,0,0,0,1,1,0,4.882612649210284,0,0,0,53.64,27.15,6,1,0,0,11,5,1,540.25,0,0,0 +10224,12523,22862,22861,-9,-9,2,1,1,42,1,1,2,0,1,-9,2,1,0,3,9.432390012700781,9.726707129491198,0,2,0,-9,7,0,7,-97.81960416257185,0,0,0,35,1,2,1,2,-9,2019,1,1,7,0,40,45,15,1,0,1,0,32.35890712967506,32.35890712967506,0,0,0,0,0,0,0,1,1,0,2.524648579118746,0,0,0,52,54.51,5,1,0,0,11,5,1,540.25,0,0,0 +10225,12524,22863,22864,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,1,0,6.648904266691899,7.30432391303646,1,0,-9,66,0,2,60.15593710550555,0,0,0,84,3,1,3,3,3,2019,4,2,23,11,0,0,15,4,11,4,0,0,0,1,8.65089656739265,15.85360111194749,0,0,0,114.6292643696447,1,1,0,0,6.925214394817178,44.07970502395508,1,29.27,22.13,3,1,0,0,11,2,0,1497,0,0,0 +10225,12524,22864,22863,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,1,0,4.915798614103001,5.004613839640039,1,0,-9,66,0,-2,-23.50622023400757,0,0,0,86,3,1,3,3,-9,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,1,5.46155102744989,11.44514882303683,0,0,0,24.38541851541824,1,1,0,0,5.078630256630195,71.78253542668337,1,49.67,10.31,3,1,0,0,11,2,0,1497,0,0,0 +10226,12525,22865,-9,-9,-9,1,1,0,32,2,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,-9,0,-9,0,-869.8996485795042,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,25.86,1,2,1,1,8,1,0,1047,0,0,0 +10227,12526,22866,22867,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,2,0,6.838101712167786,6.392801427750451,1,0,-9,36,0,-5,2.040896805034357,0,0,0,63,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.969713281123644,6.844944614524159,6.974591462325527,2,58.56,46.45,6,1,0,0,1,2,1,989.5,0,0,0 +10227,12526,22867,22866,-9,-9,1,1,0,63,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,36,0,5,73.84462671370079,0,0,0,58,2,2,3,3,3,2019,4,2,14,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.290725643480017,0,13.64657030706876,3,36.82,28,4,1,0,0,1,2,1,989.5,0,0,0 +10228,12527,22868,22869,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,7.446250297081087,8.693809813308215,8.449490791758127,1,0,-9,46,0,-2,28.04539851018455,0,0,0,72,2,2,3,2,1,2019,4,2,7,0,4,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.003932460764737,8.62341431215463,0,0,57.06,57.76,6,1,0,0,9,4,1,199,0,0,0 +10228,12527,22869,22868,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,4.641592621829141,4.947671579931782,1,0,-9,8,0,2,-59.51211166450148,0,0,0,70,1,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.063231173692759,4.279016327888521,0,0,61.04,28.88,6,1,0,0,9,4,1,199,0,0,0 +10229,12528,22870,22871,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.316867691759496,8.261386178908154,0,1,0,-9,4,0,-2,-87.31816377301281,0,0,0,52,2,4,1,2,2,2019,1,2,11,0,32,30,15,1,0,1,0,17.26538055332716,17.26538055332716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.46,54.23,5,1,0,0,13,5,1,496.5,0,0,0 +10229,12528,22871,22870,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.459478335446265,8.08882678899802,0,1,0,-9,4,0,2,64.28380920489514,0,0,0,50,2,3,1,2,1,2019,1,1,12,2,38,37,15,1,2,1,0,13.66288485705253,13.66288485705253,0,0,0,0,0,0,0,1,1,0,7.299526572228318,0,10.26968920950261,3,38.72,56.45,6,1,0,0,13,5,1,496.5,0,0,0 +10229,12529,22872,-9,22871,22870,3,1,1,20,2,0,0,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-917.1800237977278,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.216903808460643,3,27.72,58.93,2,1,1,0,13,1,1,375,0,0,0 +10230,12530,22873,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,3,8.027813749756538,8.174010284809674,0,3,0,0,0,-9,0,-877.420666093519,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,36,15,1,0,-9,0,10.8822953495773,10.8822953495773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,6,1,0,0,2,4,1,161,0,0,0 +10230,12531,22874,-9,-9,22873,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.649738619296329,7.592016313159197,0,3,0,0,0,-9,0,-921.0895202607703,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,35,15,1,0,-9,1,7.00142135850411,7.00142135850411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,494,0,0,0 +10231,12532,22875,22876,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,7.437245707364409,7.566289785057006,1,0,-9,17,0,8,-67.69008380623038,0,0,0,64,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,7.445162487712727,0,0,0,0,1,1,0,4.679816998974244,7.638378442021657,0,0,60.88,10.14,4,1,0,0,2,3,1,966,0,0,0 +10231,12532,22876,22875,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,7.951183296245937,7.754011837378752,1,0,-9,17,0,-8,30.4439067526687,0,0,0,72,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.662611589906996,7.526261382491948,120.938677056757,1,60.12,54.8,7,1,0,0,2,3,1,966,0,0,0 +10232,12533,22877,-9,22879,22878,4,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.266955684899,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,775,0,0,0 +10232,12533,22878,22879,-9,-9,2,1,1,59,1,0,1,0,2,-9,1,1,0,2,7.995532834666009,7.638937389386076,0,2,0,-9,27,0,13,-78.00897905725387,0,0,0,46,2,4,1,3,3,2019,1,1,10,0,65,65,15,1,0,1,0,3.8817033403906,3.8817033403906,0,0,0,0,0,0,0,1,1,0,7.077832910531464,0,0,0,54.61,51.04,5,1,0,0,7,4,1,775,0,0,0 +10232,12533,22879,22878,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,4,9.00048543403217,8.673283438437664,0,2,0,-9,29,0,-13,-53.37760785051812,0,0,0,59,2,2,1,2,2,2019,1,2,12,0,49,0,15,1,0,1,0,19.65363663181149,19.65363663181149,0,0,0,0,0,0,0,1,1,0,2.613063795971622,0,0,0,51.93,49.21,6,1,0,0,7,4,1,775,0,0,0 +10232,12533,22880,-9,22879,22878,3,1,0,17,2,0,1,1,2,0,7,2,0,5,7.012728792452394,6.812785413646196,0,2,0,0,0,-9,0,-1049.357415115937,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.329856340951574,0,0,0,55.09,55.87,6,1,0,0,7,4,1,775,0,0,0 +10233,12534,22881,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,5,0,7.879027634807225,7.503998926595225,3,0,0,0,-9,0,-908.2848239327898,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.844935862317536,7.456476197025243,37.40347232157733,3,54.63,47.91,7,1,0,0,13,3,1,678,0,0,0 +10234,12535,22882,22883,-9,-9,1,1,0,29,1,1,1,0,2,-9,2,1,0,4,8.191657409165972,8.229184761633954,0,2,0,-9,3,0,-3,51.00402412584946,0,1,1,32,2,4,1,2,2,2019,1,2,11,0,50,50,15,1,2,1,0,8.460308304003442,8.460308304003442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,1,0,0,6,4,1,602.6666666666666,0,0,0 +10234,12535,22883,22882,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,4,7.867164288857316,8.111518461358109,0,2,0,-9,3,0,3,-63.92925869584599,0,0,0,29,2,4,1,2,3,2019,1,1,11,1,43,50,15,1,1,1,0,6.81230377559955,6.81230377559955,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.84,51.32,6,1,0,0,6,4,1,602.6666666666666,0,0,0 +10234,12535,22884,-9,22882,22883,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1117.165433296077,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,6,4,1,602.6666666666666,0,0,0 +10235,12536,22885,22886,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,3,8.225814467917779,8.269382090176553,0,1,0,-9,5,0,3,2.89983857585558,0,0,0,27,1,5,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,9.681226705716689,9.681226705716689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,4,4,1,786,0,0,0 +10235,12536,22886,22885,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,5,8.132954572772309,7.811941527433031,0,1,0,-9,5,0,-3,68.16938930103817,0,1,1,30,2,3,1,2,2,2019,1,2,10,0,41,40,15,1,0,1,0,11.28523143123873,11.28523143123873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,6,1,0,0,4,4,1,786,0,0,0 +10236,12537,22887,22889,-9,-9,2,1,0,30,1,0,1,0,1,-9,2,1,0,3,7.857794730507668,7.784204751281814,0,2,0,-9,9,0,-7,-64.29519289673293,0,0,1,37,1,3,1,1,1,2019,1,1,10,0,30,40,15,1,0,1,0,6.569788960771921,6.569788960771921,0,0,0,0,0,0,0,1,1,0,.8713553763676357,0,0,0,57.34,39.89,6,3,0,0,9,4,0,1505,0,0,0 +10236,12537,22888,-9,22887,22889,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.223969841863,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,4,0,1505,0,0,0 +10236,12537,22889,22887,-9,-9,1,1,1,37,1,0,1,0,1,-9,2,1,0,3,8.14862428604639,8.373450466583531,0,2,0,-9,9,0,7,69.12994082333334,0,0,0,30,1,3,1,3,2,2019,1,2,6,0,45,45,15,1,0,1,0,7.963145366134285,7.963145366134285,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,6,3,0,0,9,4,0,1505,0,0,0 +10237,12538,22890,22891,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.757309016004871,8.810307777131701,0,1,0,-9,8,0,0,17.54529073898682,0,0,0,57,1,4,1,2,1,2019,1,1,8,0,48,46,15,1,0,1,0,16.55749078884604,16.55749078884604,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,5,1,0,0,4,5,1,231,0,0,0 +10237,12538,22891,22890,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.687016784501761,8.730506852739662,0,1,0,-9,8,0,0,-134.7773665335499,0,0,0,57,1,4,1,2,3,2019,1,2,8,0,27,23,15,1,0,1,0,28.99080091475985,28.99080091475985,0,0,0,0,0,0,0,1,1,0,4.954271271157975,0,0,0,46.71,48.99,6,1,0,0,4,5,1,231,0,0,0 +10237,12539,22892,-9,22891,22890,3,1,1,26,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1000.275271607536,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.173770290961043,0,0,0,33.37,60.58,3,1,1,0,4,1,1,227,0,0,0 +10238,12540,22893,22894,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,10,-28.67631782974789,0,0,0,57,2,4,1,2,3,2019,3,2,7,1,0,78,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.247410462968615,0,0,0,63.06,35.07,6,1,0,0,12,4,1,145,0,0,0 +10238,12540,22894,22893,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.286250914916007,8.611689248413768,0,1,0,-9,7,0,-10,42.24296797975661,0,0,0,67,3,2,3,3,3,2019,2,1,11,0,36,37,15,1,0,4,0,11.56985603720769,11.56985603720769,0,0,0,0,0,0,0,1,1,0,4.312340534789374,0,0,0,55.19,54.26,6,1,0,0,12,4,1,145,0,0,0 +10239,12541,22895,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1006.289496397871,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,0,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4049020653437532,0,0,0,37,28,4,1,0,0,7,1,0,509,0,0,0 +10240,12542,22896,22897,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,55,0,2,0,0,0,0,75,3,2,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,37.16,27.44,5,1,0,0,12,1,1,688,0,0,0 +10240,12542,22897,22896,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,55,0,-2,0,0,0,0,77,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.921819946280571,0,73.70711809735157,3,39.33,28.29,5,1,0,0,12,1,1,688,0,0,0 +10241,12543,22898,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,1,7.758193872222958,7.632818684206762,0,3,0,0,0,-9,0,-902.3972087124894,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,5,0,42,30,15,1,0,-9,0,7.011084740309634,7.011084740309634,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.84,29.64,6,4,0,1,8,3,0,393,0,0,0 +10242,12544,22899,-9,-9,-9,1,1,0,21,2,0,0,0,2,0,7,2,0,4,6.010645657093082,6.520742782146399,5.210369126016916,3,0,0,0,-9,0,-1133.72258351145,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,30,12,4,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.613041171991621,0,0,0,25.25,52,3,1,0,0,9,2,0,1278,0,0,0 +10243,12545,22900,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,4,7.951159626799082,7.836744348718404,0,3,0,0,0,-9,0,-997.8834358268705,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,45,47,15,1,0,-9,0,8.827839639219713,8.827839639219713,0,0,0,0,0,0,0,1,1,0,.5828954012517937,0,0,0,51.83,57.2,5,1,0,0,12,4,1,2080,0,0,0 +10244,12546,22901,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,4,0,6.323806349243177,6.257604124889481,3,0,0,0,-9,0,-1033.118730558965,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.67729232114114,6.496941868613974,0,0,48.68,54.5,1,1,0,0,9,2,0,207,0,0,0 +10245,12547,22902,22903,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,3,7.386263312331406,7.618870492364879,0,1,0,-9,27,0,3,.1829611938964928,0,0,0,48,1,5,1,2,1,2019,1,2,7,0,40,57,15,1,0,1,0,4.312950845848227,4.312950845848227,0,0,0,0,0,0,0,0,0,0,.4770093817855302,0,3.030847189437013,3,54.73,49.35,5,2,0,0,5,5,1,479,0,0,0 +10245,12547,22903,22902,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,5,9.176295591031632,9.498857489606417,0,1,0,-9,26,0,-3,16.60472464156897,0,0,0,51,1,3,1,2,2,2019,1,1,7,0,70,50,15,1,0,1,0,16.96501591406801,16.96501591406801,0,0,0,0,0,0,0,0,0,0,1.626772281148948,0,0,0,51.14,60.45,6,4,0,0,5,5,1,479,0,0,0 +10245,12548,22904,-9,22903,22902,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.905667837594431,7.773817454022633,0,3,0,-9,0,-9,0,-812.9825654810818,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,37,0,15,1,0,-9,1,8.516543745324297,8.516543745324297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,6,4,0,0,5,4,1,654,0,0,0 +10246,12549,22905,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,3,0,5.717751266102127,5.938458769025751,3,0,0,0,-9,0,-944.559742741441,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.947921153935072,6.174618822225798,0,0,53,44,6,1,0,0,11,2,1,477,0,0,0 +10247,12550,22906,22907,-9,-9,2,1,1,56,1,0,2,0,2,-9,1,1,0,2,8.246484133407945,8.089143330225376,0,2,0,-9,3,0,-1,-114.1770482367579,0,0,0,57,2,1,1,2,2,2019,1,1,9,0,50,0,15,1,0,1,0,8.163780694617191,8.163780694617191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.79,35.39,4,1,0,0,9,4,0,853,0,0,0 +10247,12550,22907,22906,-9,-9,1,1,0,57,1,0,2,0,2,-9,2,1,0,1,7.776764798564963,8.052698481875696,0,2,0,-9,3,0,1,7.985926012641591,0,0,0,56,2,2,1,2,-9,2019,1,2,13,3,30,30,15,1,3,1,0,10.24010417479908,10.24010417479908,0,0,0,0,0,0,0,1,1,0,3.611472245149338,0,0,0,41.06,50.9,4,1,0,0,9,4,0,853,0,0,0 +10247,12551,22908,-9,22910,-9,5,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-939.6242611650318,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,1083.333333333333,0,0,0 +10247,12551,22909,-9,22910,-9,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-794.5813229111387,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,1,0,1083.333333333333,0,0,0 +10247,12551,22910,-9,22907,-9,3,1,0,30,2,0,2,0,2,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1114.775794037768,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,30,25,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,49.39,6,1,0,0,9,1,0,1083.333333333333,0,0,0 +10248,12552,22911,-9,22915,22912,3,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.3097370453943,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,1,0,0,6,3,1,363.2,0,0,0 +10248,12552,22912,22915,-9,-9,2,1,1,39,1,0,3,0,1,-9,1,1,0,4,7.812646575448319,8.040051777315288,0,2,0,-9,7,0,4,0,0,0,0,35,1,5,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,5.979810349934006,5.979810349934006,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,6,1,0,0,6,3,1,363.2,0,0,0 +10248,12552,22913,-9,22915,22912,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.409670371796,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,5,1,0,0,6,3,1,363.2,0,0,0 +10248,12552,22914,-9,22915,22912,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.902232743307,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,1,0,0,6,3,1,363.2,0,0,0 +10248,12552,22915,22912,-9,-9,1,1,0,35,1,0,3,0,1,-9,1,1,0,5,8.137638587407759,7.991731046680275,0,2,0,-9,15,0,-4,0,0,0,1,39,1,4,1,2,2,2019,1,2,8,0,20,16,15,1,0,1,0,13.54494222086034,13.54494222086034,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,6,1,0,0,6,3,1,363.2,0,0,0 +10249,12553,22916,22917,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,2,0,5.328084049216073,5.118358241521613,1,0,-9,6,0,-1,-174.6429552199867,0,0,0,64,1,3,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.112836666220074,5.226487269214203,0,0,44.01,42.29,5,1,0,0,11,4,1,711.5,0,0,0 +10249,12553,22917,22916,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,3,8.264546799946183,8.706226801903874,7.239576353816797,1,0,-9,6,0,1,-112.7474398746622,-9,0,0,63,2,2,3,2,2,2019,2,1,7,0,39,0,15,1,0,4,0,13.01030687214281,13.01030687214281,0,0,0,0,0,0,0,1,1,0,4.501003988757466,7.579503019429989,0,0,54.96,53.17,6,1,0,0,11,4,1,711.5,0,0,0 +10250,12554,22918,-9,22919,-9,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-989.9514797474009,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,4,0,346.5,0,0,0 +10250,12554,22919,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,2,1,0,4,8.147750009001744,8.539966834861028,0,4,0,0,0,-9,0,-969.3256534883446,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,36,36,15,1,1,-9,0,17.01481663320059,17.01481663320059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,52.08,6,4,0,0,8,4,0,346.5,0,0,0 +10250,12555,22920,-9,22919,-9,2,1,0,22,2,0,1,0,3,-9,2,1,0,3,6.747860769010344,6.918682096179729,0,3,0,0,0,-9,0,-961.2310822716838,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,22,40,15,1,3,-9,1,6.36259459254276,6.36259459254276,0,0,0,0,0,0,0,1,1,0,2.761921092619157,0,0,0,34.51,51.81,4,4,0,0,8,2,0,462,0,0,0 +10251,12556,22921,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-962.3365306224351,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.41,37.03,6,1,0,1,13,1,0,572,0,0,0 +10252,12557,22922,22923,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,9.399710796137263,9.372231425980807,0,1,0,-9,7,0,-2,76.22710294678068,-9,0,0,52,2,4,1,2,2,2019,1,1,9,0,48,0,15,1,0,1,0,26.98843954693048,26.98843954693048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,618.5,0,0,0 +10252,12557,22923,22922,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.41277310924937,7.286613618745439,0,1,0,-9,7,0,2,55.66571313006278,0,0,0,50,2,4,1,2,2,2019,1,2,9,0,15,15,15,1,0,1,0,13.53227370292783,13.53227370292783,0,0,0,0,0,0,0,0,0,0,6.00571362647884,0,0,0,57.16,56.15,6,1,0,0,12,5,1,618.5,0,0,0 +10253,12558,22924,22925,-9,-9,2,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.642597220356372,8.916273902112829,0,1,0,-9,13,0,0,59.93066883517653,0,0,0,36,1,4,1,1,1,2019,1,1,10,0,38,50,15,1,0,1,0,18.64836525763432,18.64836525763432,0,0,0,0,0,0,0,0,0,0,1.08855423803295,0,0,0,45.91,59.89,5,1,0,0,6,5,1,457,0,0,0 +10253,12558,22925,22924,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,4,8.67321122676271,8.611630804922616,0,1,0,-9,13,0,0,12.88232705399164,0,0,1,36,1,4,1,2,2,2019,1,2,20,8,48,50,15,1,8,1,0,17.36645177389075,17.36645177389075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.31,57.36,5,1,0,0,6,5,1,457,0,0,0 +10254,12559,22926,-9,-9,22927,2,1,1,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1156.97537731091,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,13,4,1,479.5,0,0,0 +10254,12559,22927,-9,-9,-9,1,1,1,66,3,0,1,0,2,-9,4,3,0,3,0,8.317741979070149,8.342725366122117,4,0,0,0,-9,0,-952.5865467427589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.144029983621806,8.105098265563923,0,0,54.96,53.17,6,1,0,0,13,4,1,479.5,0,0,0 +10255,12560,22928,22929,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,61,0,-5,-79.90465477212766,0,0,0,85,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,6,1,0,0,4,3,1,1497,0,0,0 +10255,12560,22929,22928,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,3,0,8.363447153210947,8.06192661588171,1,0,-9,61,0,5,-51.93846223452463,0,0,0,80,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.270824979737542,0,1,56,44,6,1,0,0,4,3,1,1497,0,0,0 +10256,12561,22930,22931,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.649420565460442,8.291527773501766,1,0,-9,46,0,-1,79.40767727290897,0,0,0,67,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.252032662682255,8.412983381307971,0,0,55.61,50.3,6,1,0,0,2,4,1,457.5,0,0,0 +10256,12561,22931,22930,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.757258335877562,6.951894173059816,1,0,-9,46,0,1,18.94597917372538,0,0,0,66,1,3,3,3,2,2019,4,1,22,10,0,0,15,4,10,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.005114819025131,6.824910088069345,0,0,24.85,67.03,2,1,0,0,2,4,1,457.5,0,0,0 +10257,12562,22932,22933,-9,-9,2,1,1,33,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,4,0,1,128.2426828492051,0,0,0,32,1,4,1,-9,-9,2019,3,1,10,0,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,1,0,8,5,1,344.5,0,0,0 +10257,12562,22933,22932,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,9.426309314583518,8.999512004147297,0,1,0,-9,4,0,-1,66.40572472348921,0,0,1,33,1,4,3,2,2,2019,2,2,11,0,40,40,15,1,2,3,0,23.09510454740041,23.09510454740041,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,8,5,1,344.5,0,0,0 +10258,12563,22934,22935,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,2,8.708669322683367,8.682095501044595,0,1,0,-9,6,0,4,171.4859027947904,0,0,0,56,3,3,1,3,3,2019,1,2,6,0,41,42,15,1,0,1,0,14.6337841109851,14.6337841109851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,5,1,0,0,11,4,1,571.5,0,0,0 +10258,12563,22935,22934,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,6,0,-4,-41.22159821363692,0,0,0,60,2,2,1,2,3,2019,1,1,10,1,30,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.26,42.23,6,1,0,0,11,4,1,571.5,0,0,0 +10258,12564,22936,-9,22935,22934,3,1,0,19,2,0,0,1,2,0,7,2,0,3,7.317596249708441,7.265914670694006,0,3,0,0,0,-9,0,-1111.676238629826,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.67,42.78,7,1,0,0,11,3,1,1069,0,0,0 +10259,12565,22937,22938,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,3,8.643110866576501,8.710324525599146,0,1,0,-9,31,0,5,-62.68969520879488,0,0,0,53,2,3,1,2,3,2019,1,1,10,0,45,55,15,1,1,1,0,15.36804432371571,15.36804432371571,0,0,0,0,0,0,0,0,0,0,.6868644789086348,0,0,0,51,49,5,1,0,0,8,5,1,938,0,0,0 +10259,12565,22938,22937,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.225751669735198,7.882101220504394,0,1,0,-9,31,0,-5,33.58193179860681,0,0,0,58,2,3,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,10.04262920435194,10.04262920435194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,6,1,0,0,8,5,1,938,0,0,0 +10259,12566,22939,-9,22938,22937,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,7.923201035532005,7.952298231701349,0,3,0,0,0,-9,0,-1014.093342219167,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,2,-9,1,8.49564920712236,8.49564920712236,0,0,0,0,0,0,0,0,0,0,1.683015613095812,0,0,0,47,58,5,1,0,0,8,4,1,249,0,0,0 +10260,12567,22940,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,3,0,7.45624241272256,7.205546965257682,3,0,0,0,-9,0,-1152.316963320489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.642339193752644,0,0,59.8,41.42,7,1,0,0,13,3,1,534,0,0,0 +10261,12568,22941,22942,-9,-9,1,1,1,55,1,0,1,0,2,-9,2,1,0,2,8.832644748807699,8.875511815178628,0,2,0,-9,8,0,0,191.148377229768,0,0,0,55,3,3,1,3,3,2019,1,2,7,0,47,47,15,1,0,1,0,13.80406159228387,13.80406159228387,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.6,47.8,6,1,0,0,7,4,1,525.6666666666666,0,0,0 +10261,12568,22942,22941,-9,-9,2,1,0,55,1,0,1,0,3,-9,2,1,0,3,6.750107890566102,7.044715372314139,0,2,0,-9,8,0,0,-52.63149615653063,0,0,0,55,2,2,1,3,3,2019,1,1,22,8,18,17,15,1,8,1,0,7.004286163294876,7.004286163294876,0,0,0,0,0,0,0,1,1,0,0,0,0,3,31.45,42.19,3,1,0,0,7,4,1,525.6666666666666,0,0,0 +10261,12568,22943,-9,22942,22941,4,1,1,16,2,0,1,1,2,-9,7,2,0,5,3.811894456230365,3.998938041945369,0,2,0,0,0,-9,0,-990.3384929580068,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,5,1,0,0,7,4,1,525.6666666666666,0,0,0 +10261,12569,22944,-9,22942,22941,3,1,1,20,2,0,1,0,2,-9,2,1,0,3,7.36254806940419,7.575300250147414,0,3,0,0,0,-9,0,-1020.494358270065,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,20,15,15,1,0,-9,1,10.29719054417125,10.29719054417125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.41,56.08,3,1,0,0,7,3,1,3483,0,0,0 +10262,12570,22945,-9,22946,22948,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.949177915718,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,421.5,0,0,0 +10262,12570,22946,22948,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,4,7.888383980624067,7.798666085883752,0,2,0,-9,10,0,-1,-78.12080901967705,0,0,1,42,2,3,1,3,3,2019,1,1,9,0,52,44,15,1,0,1,0,5.542127303809237,5.542127303809237,0,0,0,0,0,0,0,1,1,0,4.046510988056133,0,0,0,49.35,59.64,6,3,0,0,8,4,1,421.5,0,0,0 +10262,12570,22947,-9,22946,22948,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.591794327521,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,421.5,0,0,0 +10262,12570,22948,22946,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,3,8.412450345951285,8.016378276588176,0,2,0,-9,10,0,1,59.16000756548338,0,0,0,41,1,4,1,3,3,2019,1,2,11,0,46,37,15,1,0,1,0,10.5890275127193,10.5890275127193,0,0,0,0,0,0,0,1,1,0,4.232620024613903,0,0,0,49.52,56.95,6,3,0,0,8,4,1,421.5,0,0,0 +10263,12571,22949,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,1,1,0,5,8.176143977091572,8.058764010815754,0,3,0,0,0,-9,0,-1021.860040455794,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,50,60,15,1,1,-9,0,9.503991648506057,9.503991648506057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.99,65,6,3,0,0,8,4,0,2238,0,0,0 +10263,12572,22950,-9,-9,-9,2,1,1,28,2,0,0,0,1,0,7,2,0,4,0,7.077238606732682,6.751482546718704,3,0,0,0,-9,0,-1062.287128213399,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.455695848836824,0,0,0,59.41,45.49,6,3,0,0,8,2,0,923,0,0,0 +10263,12573,22951,-9,-9,-9,3,1,1,26,2,0,0,0,1,1,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1046.692497557723,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,40.35,6,3,0,0,8,1,0,494,0,0,0 +10264,12574,22952,22954,-9,-9,1,1,0,48,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-1,107.8413407296753,0,0,0,49,1,4,1,3,1,2019,3,3,16,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.839770522644391,0,6.435380351416763,3,38.69,53.72,6,1,0,0,2,2,1,906,0,0,0 +10264,12574,22953,-9,22952,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-936.3547370526572,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,2,0,0,2,2,1,906,0,0,0 +10264,12574,22954,22952,-9,-9,3,1,1,49,1,0,1,0,1,-9,2,1,0,4,6.570651243243489,6.475999059961561,0,2,0,-9,2,0,1,-3.394405324307713,0,0,0,48,1,4,3,-9,-9,2019,2,1,9,0,47,43,15,1,0,3,0,1.721029905791611,1.721029905791611,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.29,52.37,6,1,0,0,2,2,1,906,0,0,0 +10265,12575,22955,-9,-9,-9,4,1,0,19,2,0,0,1,2,0,7,2,0,1,0,6.53809582327064,6.794910571247513,3,0,0,0,-9,0,-1085.686421050639,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.891314150031619,0,0,0,27.17,44.65,3,2,0,0,8,2,1,310,0,0,0 +10266,12576,22956,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,6.428376454334868,6.257564741620799,3,0,-9,0,1,0,-1120.981122362837,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.346520539947068,6.147612659840395,0,0,53,44,6,1,0,0,6,2,1,537,0,0,0 +10267,12577,22957,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,0,7.035993900900194,7.082187101325503,3,0,0,0,-9,0,-1075.60076901403,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.73722524114393,6.671965613816834,0,0,27.89,18.61,2,1,0,0,1,2,0,785,0,0,0 +10268,12578,22958,-9,22959,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1045.424420298934,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,56.51,6,4,0,0,2,3,0,400.5,0,0,0 +10268,12578,22959,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,4,7.816827465972182,8.019280655048849,0,4,0,0,0,-9,0,-823.8394943957372,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,3,30,22,15,1,3,-9,0,13.44918231946359,13.44918231946359,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.2,40.39,7,4,0,0,2,3,0,400.5,0,0,0 +10268,12579,22960,-9,22959,-9,2,1,0,18,2,0,2,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-980.9913616172257,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.22,45.05,7,4,0,0,2,3,0,41,0,0,0 +10269,12580,22961,22962,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,5.879561460739473,6.171140025498698,1,0,-9,8,0,0,103.5832564402581,0,0,0,75,3,1,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.828425262806901,67.41903123096208,2,38.26,60.7,6,1,0,0,11,2,1,946.5,0,0,0 +10269,12580,22962,22961,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,1,0,4.80682422275512,4.859497837955522,1,0,-9,8,0,9,37.08434296056033,0,0,0,66,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,21.35047523460631,0,0,0,0,1,1,0,0,4.597040643763649,0,0,44.5,24.45,5,1,0,0,11,2,1,946.5,0,0,0 +10269,12581,22963,-9,22961,22962,3,1,1,36,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1097.347745641724,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,4,1,1,0,11,1,1,1015,0,0,0 +10270,12582,22964,-9,22966,22965,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1043.814477450422,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,420.3333333333333,0,0,0 +10270,12582,22965,22966,-9,-9,1,1,1,32,1,0,1,0,1,-9,2,1,0,4,8.696423676904574,8.736750200078054,0,2,0,1,1,-9,3,-2.002153170227416,0,0,0,29,1,4,1,1,1,2019,1,2,14,5,58,55,15,1,5,1,0,14.09174720631556,14.09174720631556,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,64.26000000000001,5,2,0,0,4,5,1,420.3333333333333,0,0,0 +10270,12582,22966,22965,-9,-9,2,1,0,29,1,0,1,0,1,-9,2,1,0,4,8.239262389635458,8.071113659119803,0,2,0,-9,1,-9,-3,85.43831736125483,-9,1,1,32,1,4,1,-9,-9,2019,1,1,11,0,64,0,15,1,0,1,0,6.836053624218274,6.836053624218274,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.08,58.41,6,1,0,0,4,5,1,420.3333333333333,0,0,0 +10271,12583,22967,22968,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,4,7.936760247099744,7.810511090199094,0,1,0,-9,7,0,8,-72.77928630848882,0,0,0,41,1,5,1,2,2,2019,1,1,6,0,39,39,15,1,0,1,0,11.5518821105143,11.5518821105143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,326.5,0,0,0 +10271,12583,22968,22967,-9,-9,1,1,0,41,1,0,0,0,1,-9,2,1,0,5,9.044435244330911,9.472540123070999,0,1,0,-9,7,0,-8,126.1209824421697,0,0,1,49,2,4,1,1,1,2019,1,2,6,0,48,40,15,1,0,1,0,23.55092566695448,23.55092566695448,0,0,0,0,0,0,0,0,0,0,5.441463238365501,0,0,0,57.06,57.76,7,1,0,0,10,5,1,326.5,0,0,0 +10272,12584,22969,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,5,8.7270179598785,8.975579043575042,0,3,0,0,0,-9,0,-986.2262484279337,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,41,41,15,1,4,-9,0,18.61431782420684,18.61431782420684,0,0,0,0,0,0,0,0,0,0,.9344331714414909,0,0,0,49.84,59.62,5,4,0,0,8,5,0,420,0,0,0 +10273,12585,22970,-9,22972,22971,4,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-913.3379087758814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,4,3,1,593,0,0,0 +10273,12585,22971,22972,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,3,6.994319976422492,7.414995064315848,0,2,0,-9,18,0,2,-26.88524517037726,0,0,0,44,2,1,1,3,3,2019,1,2,12,0,50,40,15,1,0,1,0,2.976388808931059,2.976388808931059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,4,3,1,593,0,0,0 +10273,12585,22972,22971,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,1,7.866367465462476,7.652696645484769,0,2,0,-9,23,0,-2,63.64916650134989,0,0,1,46,2,3,1,3,3,2019,1,1,12,0,35,35,15,1,0,1,0,6.934042250108797,6.934042250108797,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.75,50.17,2,1,0,0,4,3,1,593,0,0,0 +10273,12586,22973,-9,22972,22971,3,1,0,18,2,0,2,0,2,-9,7,2,0,4,4.991345569858728,4.725057929520631,0,3,0,0,0,-9,0,-998.985094900425,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.268964900316366,0,0,0,51.77,58.57,6,1,0,0,4,3,1,946,0,0,0 +10274,12587,22974,22975,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,6.924980063940247,6.399571019707841,1,0,-9,8,0,2,-2.776614279823294,0,0,0,62,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.778555687168844,6.692967520697628,0,0,52,54.51,6,1,0,0,4,3,1,195.5,0,0,0 +10274,12587,22975,22974,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,2,0,7.44863348188566,7.639808094182484,1,0,-9,8,0,-2,82.373512275236,0,0,0,64,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.745603557284353,7.158005135098194,0,0,61.86,31.2,6,1,0,0,4,3,1,195.5,0,0,0 +10275,12588,22976,22977,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,2,8.845703088866999,8.707219567534455,0,1,0,-9,8,0,3,-5.366008608801801,0,0,0,37,1,3,1,2,1,2019,1,2,8,0,70,40,15,1,0,1,0,10.34733464627867,10.34733464627867,0,0,0,0,0,0,0,0,0,0,4.903238097823384,0,0,0,53.23,47.51,4,1,0,0,9,5,1,594.5,0,0,0 +10275,12588,22977,22976,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,3,8.5697322935307,8.635425227121921,0,1,0,-9,8,0,-3,56.24916950034621,0,0,1,40,2,2,1,3,3,2019,1,1,11,0,44,47,15,1,0,1,0,16.51485735842149,16.51485735842149,0,0,0,0,0,0,0,0,0,0,5.30954031142962,0,0,0,47.32,52.7,4,3,0,0,9,5,1,594.5,0,0,0 +10276,12589,22978,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,2,0,7.786632784741855,7.577935263529053,3,0,0,0,-9,0,-982.3569044243845,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.368866148489513,7.534979226363064,0,0,51.41,34.89,4,3,0,0,8,3,1,113,0,0,0 +10277,12590,22979,22980,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,3,7.763044614388929,8.086482066010726,6.224474276946625,2,0,-9,6,0,13,47.24240145436231,0,0,0,44,2,2,1,3,3,2019,1,2,7,0,38,40,15,1,0,1,0,10.04844607038024,10.04844607038024,0,0,0,0,0,0,0,1,1,0,0,7.004690315206333,0,0,56.52,48.31,5,1,0,0,2,3,1,823.3333333333334,0,0,0 +10277,12590,22980,22979,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,2,7.433363946354524,7.64039747544682,0,2,0,-9,6,0,-13,-9.042515462086588,0,0,1,57,2,3,1,3,2,2019,1,1,21,9,18,20,15,1,9,1,0,9.236648716490805,9.236648716490805,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.63,32.52,3,1,0,0,2,3,1,823.3333333333334,0,0,0 +10277,12590,22981,-9,22980,22979,3,1,1,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-980.4723279730574,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,2,3,1,823.3333333333334,0,0,0 +10278,12591,22982,22983,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,6.812923552489277,8.599689033572311,8.409911574656979,1,0,-9,5,0,0,-143.8485374935598,0,0,0,64,2,1,3,3,2,2019,4,2,11,3,0,0,15,4,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.940453987051289,8.380831019010312,0,2,60.95,38.15,6,2,0,0,8,4,1,417.5,0,0,0 +10278,12591,22983,22982,-9,-9,2,1,0,64,1,0,0,0,2,-9,97,3,0,1,0,0,0,1,0,-9,5,0,0,-86.8079474021612,0,0,0,64,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.504693264474398,0,0,0,55.29,10.25,6,4,0,0,8,4,1,417.5,0,0,0 +10279,12592,22984,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,7.24907492740045,7.650379830842212,3,0,0,0,-9,0,-1044.882727356895,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,6.196110349312047,0,0,0,0,2.198061871346617,1,1,0,5.290774962459765,7.578674677652538,0,0,47.37,34.15,6,1,0,0,8,3,1,1486,0,0,0 +10280,12593,22985,22986,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,6.038251281933686,6.022843700418429,1,0,-9,50,0,-2,-58.83695432848376,0,0,0,76,2,2,3,-9,-9,2019,4,2,15,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.779652682705544,6.219618812234566,0,0,38.7,59.52,5,1,0,0,10,2,1,3268.5,0,0,0 +10280,12593,22986,22985,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,6.383656372363838,6.158022060157805,1,0,-9,50,0,2,-80.72021746268436,0,0,0,74,1,3,3,-9,-9,2019,4,1,30,11,0,0,15,4,11,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.841992012163487,6.215576668979973,0,0,10.33,44.37,2,1,0,0,10,2,1,3268.5,0,0,0 +10281,12594,22987,22988,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.895327189871306,8.957088771434217,0,1,0,-9,9,0,-7,80.14451050063266,0,0,0,58,3,3,1,3,3,2019,1,2,6,0,59,59,15,1,0,1,0,11.5445032168109,11.5445032168109,0,0,0,0,0,0,0,0,0,0,2.061253884024376,0,0,0,57.16,56.15,6,1,0,0,4,5,1,889.5,0,0,0 +10281,12594,22988,22987,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,3,8.226220453838726,8.24292481120384,0,1,0,-9,9,0,7,-57.73612153951034,-9,0,0,51,2,4,1,-9,-9,2019,1,1,11,0,29,0,15,1,2,1,0,14.59291832301982,14.59291832301982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,1,0,0,4,5,1,889.5,0,0,0 +10282,12595,22989,22990,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,3,8.631726720573543,8.284500134412284,0,2,0,-9,20,0,5,62.52890864144636,0,0,0,40,1,4,1,1,2,2019,1,1,8,0,40,42,15,1,0,1,0,14.77373948991022,14.77373948991022,0,0,0,0,0,0,0,1,1,0,8.558985922966135,0,0,0,51.17,49.39,6,1,0,0,7,5,0,1734.5,0,0,0 +10282,12595,22990,22989,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.393117395161683,8.54158767722928,0,2,0,-9,17,0,-5,-22.30245404575856,-9,0,1,45,1,3,1,2,2,2019,1,2,11,0,40,0,15,1,0,1,0,12.14652632616149,12.14652632616149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,7,5,0,1734.5,0,0,0 +10282,12595,22991,-9,22990,22989,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.3294186874672,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,0,1734.5,0,0,0 +10282,12595,22992,-9,22990,22989,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.670162292389,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,0,1734.5,0,0,0 +10283,12596,22993,22995,-9,-9,1,1,0,47,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-1,-83.25201066022657,0,0,0,48,2,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463757980953478,0,9.475746497259378,3,46.44,59.62,6,1,0,0,12,5,1,911.75,0,0,0 +10283,12596,22994,-9,22993,22995,3,1,1,17,2,0,1,1,2,0,7,2,0,5,5.727813539680697,5.599314716403972,0,2,0,0,0,-9,0,-1003.104570816969,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,1,6,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52.18,59.93,7,1,0,0,12,5,1,911.75,0,0,0 +10283,12596,22995,22993,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,9.815936183759808,9.742188611689517,0,2,0,-9,24,0,1,-46.31655029199842,0,0,0,47,1,4,3,-9,-9,2019,2,1,6,0,105,40,15,1,0,3,0,16.10452592630916,16.10452592630916,0,0,0,0,0,0,0,0,0,0,5.731785677284262,0,4.582991686754369,3,52.88,56.68,6,1,0,0,12,5,1,911.75,0,0,0 +10283,12596,22996,-9,22993,22995,4,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-968.9153421019743,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,6,1,0,0,12,5,1,911.75,0,0,0 +10284,12597,22997,-9,-9,-9,1,1,0,27,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-999.5020749939964,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,40.6,2,1,1,1,7,1,0,1243,0,0,0 +10285,12598,22998,-9,-9,-9,1,1,0,48,2,0,0,0,3,-9,2,1,0,5,8.515685619587973,8.616990670236214,0,3,0,0,0,-9,0,-943.4835596995089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,44,39,15,1,0,-9,0,12.75655387857744,12.75655387857744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,7,4,0,0,5,5,1,334,0,0,0 +10285,12599,22999,-9,22998,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,5,7.808141819189911,7.992997287933055,0,3,0,0,0,-9,0,-896.5401469917483,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,40,15,1,1,-9,1,7.435864513675061,7.435864513675061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,5,4,0,1,5,3,1,1248,0,0,0 +10285,12600,23000,-9,22998,-9,3,1,1,19,2,0,0,0,2,-9,11,3,0,5,7.643969986897726,7.917968305665453,0,3,0,0,0,-9,0,-866.1925570283607,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,4,39,39,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.295564732453352,0,0,0,41.07,60.93,4,4,0,0,5,3,1,3745,0,0,0 +10286,12601,23001,23002,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,7.905904141803157,8.249552458698769,0,1,0,-9,31,0,-1,37.16362743681429,0,0,0,58,2,4,1,3,3,2019,1,1,7,0,42,43,15,1,0,1,0,10.92916175245308,10.92916175245308,0,0,0,0,0,0,0,0,0,0,3.767207801310744,0,0,0,57.34,39.89,6,1,0,0,5,4,1,784,0,0,0 +10286,12601,23002,23001,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,4,7.319622641540481,7.162995620450074,0,1,0,-9,31,0,1,129.2054092285214,0,0,0,57,2,3,1,2,2,2019,1,2,5,0,20,16,15,1,0,1,0,9.020986171538119,9.020986171538119,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.15,52.91,7,1,0,0,5,4,1,784,0,0,0 +10287,12602,23003,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,3,8.603179474307957,8.627845906381317,0,3,0,-9,0,-9,0,-1114.215646242439,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,39,0,15,1,1,-9,0,15.38472453713184,15.38472453713184,0,0,0,0,0,0,0,1,1,0,2.350536668880224,0,0,0,46.61,56.93,6,1,0,0,4,4,0,52,0,0,0 +10288,12603,23004,23005,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,3,8.75561043991714,8.884767222375888,0,2,0,-9,10,0,-6,-34.20163187985233,0,0,1,39,1,3,3,2,2,2019,2,1,15,3,47,47,15,1,3,3,0,16.07657753410087,16.07657753410087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.49,55.78,4,1,0,0,1,4,1,1123.25,0,0,0 +10288,12603,23005,23004,-9,-9,1,1,1,39,1,0,2,0,1,-9,97,3,0,3,0,0,0,2,0,-9,10,0,6,-99.70090276922397,0,0,0,33,1,3,1,2,3,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.35,5,1,0,1,1,4,1,1123.25,0,0,0 +10288,12603,23006,-9,23004,23005,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-823.6173719943299,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,1123.25,0,0,0 +10288,12603,23007,-9,23004,23005,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.6617622393403,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,1123.25,0,0,0 +10289,12604,23008,23009,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.73908735113753,7.487188950998725,0,1,0,-9,5,0,-2,-7.788941527331017,0,0,0,59,2,4,1,2,2,2019,1,2,12,0,16,18,15,1,0,1,0,13.6571864185365,13.6571864185365,0,0,0,0,0,0,0,0,0,0,4.439892066438182,0,0,0,46.08,57.2,5,1,0,0,4,5,1,521.5,0,0,0 +10289,12604,23009,23008,-9,-9,2,1,1,59,1,0,0,0,2,-9,1,1,0,4,8.838349351935232,8.697414155791266,0,1,0,-9,5,0,2,54.08210437556777,0,0,0,57,2,3,1,-9,-9,2019,1,1,8,0,0,70,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,53,6,1,0,0,4,5,1,521.5,0,0,0 +10290,12605,23010,-9,-9,-9,1,1,0,25,2,1,3,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-940.6035623253264,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.38,55.6,6,1,1,1,9,1,0,1339.5,0,0,0 +10290,12605,23011,-9,23010,-9,4,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-994.1159848350858,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,1,0,1339.5,0,0,0 +10290,12605,23012,-9,23010,-9,3,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-894.974258812377,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,1339.5,0,0,0 +10290,12605,23013,-9,23010,-9,2,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1011.563159656556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,1339.5,0,0,0 +10291,12606,23014,23016,-9,-9,1,1,0,70,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,44,0,-4,0,0,0,0,74,2,3,3,-9,-9,2019,4,3,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.233008242216723,0,0,0,61.9,41.79,6,4,0,0,9,1,1,444,0,0,0 +10291,12606,23015,-9,23014,23016,2,1,0,15,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1066.081532419359,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,9,1,1,444,0,0,0 +10291,12606,23016,23014,-9,-9,3,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,4,0,0,0,0,70,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,6,4,0,0,9,1,1,444,0,0,0 +10292,12607,23017,23019,-9,-9,2,1,1,35,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,9,0,-6,-43.72876624690096,0,0,0,41,1,3,1,2,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,39.69,6,1,0,0,8,4,1,1563,0,0,0 +10292,12607,23018,-9,23019,23017,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.2752126811974,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,4,1,1563,0,0,0 +10292,12607,23019,23017,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,3,8.976806013067666,8.898842557336904,0,2,0,-9,9,0,6,16.97209367714462,0,0,1,35,2,2,3,1,2,2019,2,2,14,3,50,46,15,1,3,3,0,20.94240193892082,20.94240193892082,0,0,0,0,0,0,0,1,1,0,6.175734325886867,0,0,0,46.08,57.2,5,1,0,0,8,4,1,1563,0,0,0 +10292,12607,23020,-9,23019,23017,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.394807774742,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,1563,0,0,0 +10293,12608,23021,23022,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.13150725968209,8.049368341449782,0,1,0,-9,9,0,-7,-55.89034426122995,0,0,0,53,3,4,1,-9,-9,2019,1,1,6,0,44,44,15,1,0,1,0,10.22466412333652,10.22466412333652,0,0,0,0,0,0,0,0,0,0,6.256508461355749,0,0,0,54.79,55.86,7,1,0,0,1,4,1,871,0,0,0 +10293,12608,23022,23021,-9,-9,1,1,0,53,1,0,0,0,3,-9,1,1,0,4,7.659714565423312,7.208897064899833,0,1,0,-9,19,0,7,16.45610831898357,0,0,0,46,2,4,1,2,3,2019,1,2,9,0,18,20,15,1,0,1,0,10.17057177966889,10.17057177966889,0,0,0,0,0,0,0,0,0,0,1.085973759198416,0,0,0,57.17,50.61,7,1,0,0,1,4,1,871,0,0,0 +10293,12609,23023,-9,23022,23021,3,1,0,20,2,0,0,0,2,-9,2,1,0,4,8.232436678986279,7.956714685577077,0,3,0,0,0,-9,0,-1153.72671388863,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,25,9,45,35,15,1,9,-9,1,5.75312325481709,5.75312325481709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.03,67.29000000000001,3,1,0,0,1,4,1,505,0,0,0 +10294,12610,23024,23025,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,8.327298474419049,8.438256208639492,0,1,0,-9,34,0,1,.9745373267644022,0,0,0,53,2,4,1,1,1,2019,1,2,6,0,37,40,15,1,0,1,0,13.57902661907388,13.57902661907388,0,0,0,0,0,0,0,0,0,0,4.680042944525848,0,0,0,61.12,51.57,6,1,0,0,4,5,1,126.5,0,0,0 +10294,12610,23025,23024,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.76191399021367,8.314897789621394,8.175216214803584,1,0,-9,8,0,-1,-22.30149248607231,0,0,0,54,2,4,1,-9,-9,2019,1,1,19,5,24,32,15,1,5,1,0,9.979799049916441,9.979799049916441,0,0,0,0,0,0,0,0,0,0,0,7.966110805781028,.6755697705235919,3,36.27,59.32,2,1,0,0,4,5,1,126.5,0,0,0 +10295,12611,23026,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,2,8.710297198757909,8.448260337287401,0,3,0,-9,0,-9,0,-1124.353608835605,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,8,43,0,15,1,8,-9,0,14.7713326201219,14.7713326201219,0,0,0,0,0,0,0,0,0,0,2.16896148257353,0,0,0,33.52,41.69,5,1,0,0,10,5,1,262,0,0,0 +10296,12612,23027,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,6.503887807418642,6.415138952411524,3,0,0,0,-9,0,-1064.365362052544,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.671363125115063,6.303381581142795,0,0,53.86,44.13,7,1,0,0,9,2,1,2658,0,0,0 +10297,12613,23028,23029,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,6.144774587786143,6.376586934761347,1,0,-9,46,0,-1,27.1420486562052,0,0,0,64,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.123658922430754,6.662985952718967,0,0,61.04,39.41,2,1,0,0,1,3,1,284,0,0,0 +10297,12613,23029,23028,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,7.771386852072946,7.961544225545068,1,0,-9,46,0,1,-219.4806644632217,0,0,0,63,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.603787509683998,7.762892545048836,0,0,58.32,50.22,5,1,0,0,1,3,1,284,0,0,0 +10298,12614,23030,23031,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,55,0,6,0,0,0,0,74,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.073815674594674,0,0,0,54,46,6,1,0,0,5,1,1,679.5,0,0,0 +10298,12614,23031,23030,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-6,0,0,0,0,80,2,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.50271175435516,1,55.51,51.57,6,1,0,0,5,1,1,679.5,0,0,0 +10298,12615,23032,-9,23031,23030,3,1,0,48,2,0,0,0,2,-9,2,1,0,4,8.040836556647369,8.162111168891727,0,3,0,0,0,-9,0,-872.4803863802547,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,0,15,1,0,-9,1,9.399727846165481,9.399727846165481,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,5,1,0,0,5,4,1,466,0,0,0 +10299,12616,23033,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,2,0,6.978674199755193,7.067241216491943,3,0,0,0,-9,0,-1037.608423513502,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.076635447159166,0,0,47.29,34.28,3,1,0,0,2,2,1,600,0,0,0 +10300,12617,23034,23036,-9,-9,1,1,0,46,1,0,2,0,3,-9,2,1,0,5,7.782063535861845,7.603836719236437,0,2,0,-9,8,0,2,-68.07047822932495,0,0,0,44,2,4,1,-9,2,2019,1,3,12,0,34,45,15,1,0,1,0,8.006781464211707,8.006781464211707,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,5,1,0,0,2,5,1,1529.5,0,0,0 +10300,12617,23035,-9,23034,23036,5,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1166.188094898504,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,5,1,1529.5,0,0,0 +10300,12617,23036,23034,-9,-9,3,1,1,44,1,0,2,0,2,-9,2,1,0,4,9.12354031292328,8.820452675048621,0,2,0,-9,8,0,-2,6.726615523826286,0,0,0,46,3,5,1,1,1,2019,1,1,10,0,48,39,15,1,0,1,0,17.61807960400865,17.61807960400865,0,0,0,0,0,0,0,1,1,0,3.217924661569649,0,0,0,51.83,57.2,5,1,0,0,2,5,1,1529.5,0,0,0 +10300,12617,23037,-9,23034,23036,4,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-945.9132313465132,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,2,5,1,1529.5,0,0,0 +10300,12618,23038,-9,23034,23036,2,1,0,21,2,0,2,0,2,-9,2,1,0,4,7.617647396653712,7.53373903557045,0,3,0,0,0,-9,0,-1031.350547487465,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,38,38,15,1,0,-9,1,6.771571367257129,6.771571367257129,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,2,3,1,192,0,0,0 +10301,12619,23039,23041,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.323475377942573,7.582471296148323,0,1,0,-9,6,0,-8,42.62793385983384,0,0,0,60,2,4,1,-9,-9,2019,1,1,10,0,0,20,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.04815892029019,3,52,53,6,1,0,1,7,5,1,608.6666666666666,0,0,0 +10301,12619,23040,-9,23039,23041,4,1,0,17,2,0,0,1,2,0,7,2,0,4,5.736065294414814,5.553989537343545,0,1,0,0,0,-9,0,-855.4773442033156,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,7,5,1,608.6666666666666,0,0,0 +10301,12619,23041,23039,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.444136045467262,8.627846710081354,6.303079331730998,1,0,-9,29,0,8,-58.01903928309773,0,0,0,52,2,4,1,3,3,2019,1,2,8,0,37,31,15,1,0,1,0,16.41609277671222,16.41609277671222,0,0,0,0,0,0,0,1,1,0,.6743455779756612,6.802313205253985,3.146041218661062,3,55,53,6,1,0,1,7,5,1,608.6666666666666,0,0,0 +10301,12620,23042,-9,23039,23041,3,1,0,23,2,0,0,0,1,-9,2,1,0,4,6.805127233689324,6.89470578619369,0,3,0,0,0,-9,0,-966.6313758689766,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,10,20,15,1,2,-9,1,9.727974117526529,9.727974117526529,0,0,0,0,0,0,0,1,1,0,0,0,9.564264970034575,3,47,57,5,1,0,0,7,2,1,569,0,0,0 +10302,12621,23043,23044,-9,-9,2,1,1,69,1,0,0,0,3,-9,2,1,0,3,8.556557273721921,8.804146284496538,0,1,0,-9,5,0,-2,113.8328665104408,0,0,0,71,3,3,3,-9,-9,2019,2,1,10,0,52,56,15,1,1,4,0,14.18018157186225,14.18018157186225,0,0,0,0,0,0,0,1,1,0,3.243946934235507,0,0,0,53,47,5,1,0,0,11,4,1,908,0,0,0 +10302,12621,23044,23043,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,6.117400015222795,6.651782255727652,1,0,-9,5,0,2,67.02205040975156,0,0,0,69,3,3,1,3,2,2019,3,2,11,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.41844896755628,6.630143100457263,0,0,51,46,5,1,0,0,11,4,1,908,0,0,0 +10303,12622,23045,-9,23047,23046,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.8223011460448,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,760.25,0,0,0 +10303,12622,23046,23047,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,4,9.146157677091479,8.949693637739792,0,2,0,-9,16,0,2,-14.89910778260422,0,0,0,41,1,3,1,2,2,2019,1,2,7,0,80,52,15,1,0,1,0,16.73540504853513,16.73540504853513,0,0,0,0,0,0,0,0,0,0,5.079975213713942,0,0,0,58.15,52.91,6,1,0,0,6,5,1,760.25,0,0,0 +10303,12622,23047,23046,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,3,9.486996582480046,9.220323586009885,0,2,0,-9,16,0,-2,71.985954499225,0,0,1,43,2,4,1,2,2,2019,1,1,15,4,43,42,15,1,4,1,0,24.44754820406278,24.44754820406278,0,0,0,0,0,0,0,0,0,0,5.694606101731285,0,0,0,47.87,43.07,5,1,0,0,6,5,1,760.25,0,0,0 +10303,12622,23048,-9,23047,23046,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.098093458181,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,760.25,0,0,0 +10304,12623,23049,23050,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,8.506855738215128,8.614970879314289,1,0,-9,2,0,-7,-191.1154835501503,0,0,0,71,2,2,3,-9,-9,2019,4,1,17,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.664909804514776,8.394740468697242,0,3,43.42,62.33,6,1,0,0,5,4,1,522.5,0,0,0 +10304,12623,23050,23049,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,2,0,7,44.82655341295792,0,0,0,64,1,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.42,35.65,6,1,0,0,5,4,1,522.5,0,0,0 +10305,12624,23051,23052,-9,-9,2,1,1,46,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,27,0,3,0,0,0,0,43,3,4,3,3,3,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.3356117198941,2,53,55,6,1,0,0,4,1,0,1221.5,0,0,0 +10305,12624,23052,23051,-9,-9,1,1,0,43,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,27,0,-3,0,0,0,1,46,3,4,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.476056155209116,3,50,55,6,1,0,0,4,1,0,1221.5,0,0,0 +10305,12625,23053,-9,23052,23051,3,1,0,21,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1048.498909690293,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.903744830929883,3,47,58,5,1,0,0,4,1,0,1406,0,0,0 +10306,12626,23054,23055,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.562643703575352,7.84372462653355,1,0,-9,9,0,2,-13.93564537802691,0,0,0,66,3,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.74217404195638,0,0,52,48,5,1,0,0,4,3,1,389.5,0,0,0 +10306,12626,23055,23054,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,5,0,6.251050824183687,5.818719547573798,1,0,-9,49,0,-2,-99.88630395929522,0,0,0,68,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.361492527661907,5.911632886826581,0,0,62.39,56.71,7,1,0,0,4,3,1,389.5,0,0,0 +10306,12627,23056,-9,23055,23054,3,1,1,33,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1025.364869103803,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,35,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.086517786112747,0,0,0,41.68,52.43,6,1,1,0,4,1,1,251,0,0,0 +10307,12628,23057,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,8.138633618847276,7.805691011276512,3,0,0,0,-9,0,-759.7230612844915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.169053896132628,8.095776745055003,0,0,52,46,6,1,0,0,7,3,1,191,0,0,0 +10308,12629,23058,23059,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,7.807797857194335,8.154997737539816,0,1,0,-9,7,0,0,-44.92741025024898,0,0,0,65,1,2,1,-9,-9,2019,1,1,9,0,30,0,15,1,0,1,0,11.86953584383081,11.86953584383081,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.37,56.93,6,1,0,0,12,3,1,588.5,0,0,0 +10308,12629,23059,23058,-9,-9,1,1,0,65,1,0,0,0,1,-9,1,1,0,2,6.556473739621531,6.684974719103681,0,1,0,-9,7,0,9,-120.3710745607352,0,0,0,56,2,4,1,1,1,2019,1,2,15,5,16,5,15,1,5,1,0,7.284922544229881,7.284922544229881,0,0,0,0,0,0,0,1,1,0,0,0,13.46772912678553,3,47.56,48.93,5,1,0,0,12,3,1,588.5,0,0,0 +10309,12630,23060,-9,-9,-9,1,1,0,41,3,0,2,0,3,-9,6,3,0,4,0,0,0,4,0,-9,0,-9,0,-844.3659235030711,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,33.82,7,1,0,0,2,1,0,1435,0,0,0 +10309,12630,23061,-9,23060,-9,2,1,0,17,2,0,2,1,3,-9,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1082.773753779006,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.199305363925716,3,29.61,41.16,2,1,0,1,2,1,0,1435,0,0,0 +10309,12630,23062,-9,23060,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.859101761146,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,1435,0,0,0 +10310,12631,23063,23064,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,3,8.550427231607786,8.478757884826161,0,1,0,-9,8,0,0,123.3150169917619,0,0,1,30,1,2,1,2,2,2019,1,2,12,5,38,38,15,1,5,1,0,12.52186870745147,12.52186870745147,0,0,0,0,0,0,0,0,0,0,4.756018944794332,0,8.856194130206287,3,48.29,47.89,6,1,0,0,5,5,1,1339.5,0,0,0 +10310,12631,23064,23063,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,2,8.217193443089716,8.270003342086106,0,1,0,-9,8,0,0,3.205101415000978,0,0,0,30,1,3,1,-9,-9,2019,1,1,21,9,42,37,15,1,9,1,0,11.53611219266958,11.53611219266958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.68,47.62,5,1,0,0,5,5,1,1339.5,0,0,0 +10311,12632,23065,23066,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,5,7.553552572942716,7.720479185772211,0,1,0,-9,4,0,3,92.27562487039141,0,0,0,48,3,4,1,2,2,2019,1,3,17,5,34,30,15,1,5,1,0,5.631067298847155,5.631067298847155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.81,52.92,4,1,0,0,2,4,1,748.5,0,0,0 +10311,12632,23066,23065,-9,-9,3,1,1,48,1,0,0,0,3,-9,2,1,0,4,8.283207923152286,8.169289866239087,0,1,0,-9,4,0,-3,-111.8379752723057,0,0,0,51,2,5,1,-9,-9,2019,1,1,9,0,35,38,15,1,1,1,0,12.22436668473744,12.22436668473744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,5,0,0,2,4,1,748.5,0,0,0 +10311,12633,23067,-9,23065,23066,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,8.090423952356552,8.341005466937213,0,3,0,0,0,-9,0,-923.2961247211466,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,40,45,15,1,1,-9,1,10.63129649142869,10.63129649142869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,2,4,1,339,0,0,0 +10312,12634,23068,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,1,1,0,4,7.425198058123458,7.478033337348093,0,3,0,0,0,-9,0,-893.5502395997842,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,12,15,1,0,-9,0,14.8844612582074,14.8844612582074,0,0,0,0,0,0,0,0,0,0,3.772864257702575,0,0,0,57.16,56.15,6,1,0,0,6,3,1,403,0,0,0 +10313,12635,23069,23070,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,3,6.941498053503122,7.117186774631337,0,1,0,-9,7,0,-1,80.50524312048958,0,0,0,55,2,5,1,3,3,2019,1,1,13,3,15,15,15,1,3,1,0,7.057426722712282,7.057426722712282,0,0,0,0,0,0,0,0,0,0,0,0,4.743494552985178,3,44.69,44.08,6,1,0,0,11,5,1,292,0,0,0 +10313,12635,23070,23069,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,5,9.192524034690692,9.085268068550899,0,1,0,-9,7,0,1,50.07390748687878,0,0,0,54,3,3,1,2,2,2019,1,2,9,1,35,37,15,1,1,1,0,30.37681770171354,30.37681770171354,0,0,0,0,0,0,0,0,0,0,3.846008263665742,0,0,0,54.69,57.47,6,1,0,0,11,5,1,292,0,0,0 +10314,12636,23071,-9,23072,-9,1,1,0,35,2,0,0,0,3,-9,2,1,0,5,8.529128125271372,8.494875203647592,0,3,0,0,0,-9,0,-839.9630011559329,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,35,0,15,1,0,-9,1,17.35603408937999,17.35603408937999,0,0,0,0,0,0,0,1,1,0,0,0,2.660008669559051,3,57.65,56.13,6,4,0,0,8,5,0,301,0,0,0 +10314,12637,23072,-9,-9,-9,2,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1039.257181641415,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,15.4376869458554,0,0,0,1,1,0,0,0,0,0,52,46,6,4,0,0,8,1,0,356,0,0,0 +10315,12638,23073,23074,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,3,7.190688224717793,7.350377192732322,0,2,0,-9,3,0,1,-32.33791451090965,0,0,1,32,1,4,1,3,1,2019,1,2,13,2,15,37,15,1,2,1,0,11.25477836789958,11.25477836789958,0,0,0,0,0,0,0,1,1,0,2.14013540890664,0,0,0,41.47,58.08,6,1,0,0,6,4,1,810,0,0,0 +10315,12638,23074,23073,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.658345860377906,8.528741800481814,0,2,0,-9,3,0,-1,5.317395019380516,0,0,0,33,2,3,1,-9,-9,2019,1,1,18,6,35,47,15,1,6,1,0,15.08528647481002,15.08528647481002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.3,63.25,3,1,0,0,6,4,1,810,0,0,0 +10315,12638,23075,-9,23073,23074,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.100643311188,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,4,1,810,0,0,0 +10316,12639,23076,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-971.2459511733873,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3541396262171734,0,0,0,40.33,35.66,6,1,0,0,13,1,1,1391,0,0,0 +10317,12640,23077,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,8,3,1,1,0,6.845281329994447,6.784588344565659,3,0,0,0,-9,0,-1121.190725531462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.095655317621025,0,0,32.68,17.82,3,1,0,0,13,2,0,969,0,0,0 +10318,12641,23078,23079,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,4.952950565065065,5.128804380657932,1,0,-9,8,0,-2,166.7259885846646,0,0,0,71,2,5,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.26286051716994,5.310816064524967,0,0,52.62,45.08,6,1,0,0,10,3,1,248,0,0,0 +10318,12641,23079,23078,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,5,0,7.957975817104941,8.269852040357373,1,0,-9,8,0,2,-25.50174567512497,0,0,0,69,2,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.55535524804595,7.952242656970141,0,0,62.39,56.71,6,1,0,0,10,3,1,248,0,0,0 +10318,12642,23080,-9,23078,23079,3,1,0,23,2,0,0,0,1,1,2,1,0,5,7.88144687412739,7.75009406317691,0,3,0,0,0,-9,0,-1024.736515861079,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,21,7,42,0,15,1,7,-9,1,7.638288540683361,7.638288540683361,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.79,69.98999999999999,6,1,0,0,10,3,1,522,0,0,0 +10319,12643,23081,23082,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,46,0,-7,-17.19482049851289,0,0,0,72,1,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,6,4,1,675,0,0,0 +10319,12643,23082,23081,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,4,5.118270816298407,8.418830565216727,8.199373667570619,1,0,-9,46,0,7,32.50067064289259,0,0,0,65,2,4,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.758827660561743,8.321930748587276,0,0,51.77,58.57,6,1,0,0,6,4,1,675,0,0,0 +10320,12644,23083,23084,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,7.676801026816217,8.465057849234153,8.267524877130398,1,0,-9,49,0,-2,-28.53528944480131,0,0,0,73,2,4,3,3,3,2019,4,2,6,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.923641657590522,8.101418894478197,0,0,60.12,54.8,7,1,0,0,5,4,1,327.5,0,0,0 +10320,12644,23084,23083,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,6.205571416729916,6.364807876936332,1,0,-9,49,0,2,56.68663418467501,0,0,0,71,2,4,3,1,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.6158752292131076,6.263053259650897,0,0,63.24,37.19,7,1,0,0,5,4,1,327.5,0,0,0 +10321,12645,23085,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1039.239296274532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.65,40.44,3,1,0,1,6,1,0,794,0,0,0 +10322,12646,23086,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,1,1,0,2,6.769804224224012,8.292646560022513,8.639453729826998,3,0,-9,0,-9,0,-1056.028055350719,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,15,0,15,1,1,-9,0,5.245908225018598,5.245908225018598,0,0,0,0,0,0,0,1,1,0,8.326647241614664,8.306052531062205,0,0,52.27,31.44,4,1,0,0,5,5,1,1115,0,0,0 +10323,12647,23087,-9,23090,23088,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.507081259889,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1097.75,0,0,0 +10323,12647,23088,23090,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,5,9.705621419556836,9.753701968443007,0,2,0,-9,15,0,4,38.92037344557194,0,0,0,44,2,4,1,3,3,2019,1,1,5,0,33,28,15,1,0,1,0,57.64396048140587,57.64396048140587,0,0,0,0,0,0,0,0,0,0,3.110802968249201,0,0,0,57.06,57.76,6,1,0,0,6,5,1,1097.75,0,0,0 +10323,12647,23089,-9,23090,23088,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-913.6861120182895,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,6,5,1,1097.75,0,0,0 +10323,12647,23090,23088,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.942385092156334,8.911991237525219,0,2,0,-9,17,0,-4,-30.51923620556485,0,0,1,48,1,5,1,2,2,2019,1,2,12,0,36,30,15,1,0,1,0,21.39638553799551,21.39638553799551,0,0,0,0,0,0,0,0,0,0,7.249872788179331,0,0,0,40.47,55.65,2,1,0,0,6,5,1,1097.75,0,0,0 +10324,12648,23091,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,1,1,0,3,6.657740382497447,6.472712787367835,4.592448098596565,3,0,0,0,-9,0,-1001.66109444666,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,30,15,15,1,0,-9,0,2.094815983595499,2.094815983595499,0,0,0,0,0,0,0,1,1,0,4.060010407080062,4.83882064684943,0,0,59.07,37.52,6,1,0,0,2,2,1,355,0,0,0 +10324,12649,23092,-9,23091,-9,2,1,1,22,2,0,0,0,2,-9,1,1,0,4,6.551440953600307,6.418631039516399,0,3,0,0,0,-9,0,-923.7587411752794,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,6,30,50,15,1,6,-9,1,2.32852685719563,2.32852685719563,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,4,1,0,0,2,2,1,985,0,0,0 +10325,12650,23093,23094,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,4,8.733019207710193,8.473520973520767,0,1,0,-9,2,0,1,-91.5444822552264,0,0,0,47,1,5,1,-9,-9,2019,1,1,19,7,38,44,15,1,7,1,0,16.76638254288852,16.76638254288852,0,0,0,0,0,0,0,0,0,0,4.221907299109874,0,0,0,39.1,64.21000000000001,5,1,0,0,8,5,1,643,0,0,0 +10325,12650,23094,23093,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,5,9.583768493798543,9.560422879705932,0,1,0,-9,2,0,-1,96.2788759119355,0,0,0,48,1,4,1,1,1,2019,1,2,15,3,40,45,15,1,3,1,0,43.88522511388359,43.88522511388359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,55.04,6,1,0,0,8,5,1,643,0,0,0 +10326,12651,23095,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,8,3,1,1,0,.7085696024806751,.8648730569135413,3,0,0,0,-9,0,-916.1372548289107,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6640719145554673,0,0,0,21.11,35.27,1,1,0,1,9,1,0,351,0,0,0 +10327,12652,23096,23097,-9,-9,1,1,0,67,1,0,0,0,1,-9,1,1,0,4,0,7.386522620942134,7.490276516344136,1,0,-9,10,0,-3,-91.33310908515705,0,0,0,70,3,2,3,2,2,2019,2,2,8,0,16,10,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.692756896636378,7.384588239840519,0,0,57.16,56.15,6,1,0,0,8,3,1,635.5,0,0,0 +10327,12652,23097,23096,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,7.075936167421863,6.591143172046199,1,0,-9,10,0,3,95.37725151041759,0,0,0,67,1,4,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.183089982102111,0,0,50.2,35.09,4,1,0,0,8,3,1,635.5,0,0,0 +10328,12653,23098,-9,23101,23100,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1150.321954038045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,600.5,0,0,0 +10328,12653,23099,-9,23101,23100,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.0428910774091,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,600.5,0,0,0 +10328,12653,23100,23101,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,2,8.354012019373712,8.452718733096294,0,2,0,-9,14,0,3,46.6619610690798,0,0,0,33,2,4,1,1,1,2019,1,1,21,9,28,0,15,1,9,1,0,17.9704823335008,17.9704823335008,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.43,42.24,3,1,0,0,7,4,1,600.5,0,0,0 +10328,12653,23101,23100,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,8.0890077594612,8.423875723903313,0,2,0,-9,14,0,-3,-87.98377058725126,0,0,1,36,2,2,1,2,2,2019,1,2,8,0,31,32,15,1,0,1,0,13.70860247981,13.70860247981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.28,6,1,0,0,7,4,1,600.5,0,0,0 +10329,12654,23102,-9,-9,-9,1,1,1,73,2,0,0,0,3,-9,4,3,0,3,0,6.658289639048261,6.71381912837537,3,0,0,0,-9,0,-1052.423779314896,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3792280779727,6.450272963638882,0,0,55.03,42.31,6,1,0,0,2,2,1,111,0,0,0 +10329,12655,23103,-9,-9,-9,2,1,1,51,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-979.3746014608246,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.555652924935241,0,0,3,25.78,46.76,2,1,0,0,2,1,1,3001,0,0,0 +10330,12656,23104,-9,23105,23107,6,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.331407463424,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,434.5,0,0,0 +10330,12656,23105,23107,-9,-9,1,1,0,41,1,0,3,0,2,-9,2,1,0,4,6.710116438846639,6.682980417926023,0,2,0,-9,17,0,-12,-44.2436283353118,0,0,1,53,2,4,1,3,3,2019,1,2,10,0,15,14,15,1,0,1,0,4.806087115882672,4.806087115882672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.8,41.2,6,3,0,0,8,3,1,434.5,0,0,0 +10330,12656,23106,-9,23105,23107,4,1,0,16,2,0,3,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-957.8159135924683,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4104610668516243,0,0,0,64.89,36.63,4,3,0,0,8,3,1,434.5,0,0,0 +10330,12656,23107,23105,-9,-9,2,1,1,53,1,0,3,0,2,-9,1,1,0,4,8.079975146982639,8.409248179890064,0,2,0,-9,17,0,12,31.5292076701393,-9,0,0,41,2,4,1,3,3,2019,1,1,9,0,74,0,15,1,1,1,0,5.542284365367395,5.542284365367395,0,0,0,0,0,0,0,1,1,0,6.387710703184808,0,0,0,54,54,6,3,0,0,8,3,1,434.5,0,0,0 +10330,12657,23108,-9,23105,23107,3,1,0,19,2,0,3,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1154.477378170378,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.17,50.87,5,3,1,0,8,1,1,2958,0,0,0 +10331,12658,23109,23110,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,3,7.889464682913193,8.056364529722499,0,1,0,-9,7,0,-4,-34.83018682025316,0,0,0,47,1,2,1,3,2,2019,1,1,11,0,44,50,15,1,0,1,0,9.124946205157686,9.124946205157686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.59,51.94,5,3,0,0,5,3,0,265,0,0,0 +10331,12658,23110,23109,-9,-9,1,1,0,47,1,0,0,0,1,-9,2,1,0,2,6.722214167373478,6.917066051022987,0,1,0,-9,11,0,4,-78.66027258183297,0,0,0,43,1,3,1,3,2,2019,1,2,14,0,16,16,15,1,3,1,0,5.993430059185962,5.993430059185962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.3,56.39,4,3,0,0,5,3,0,265,0,0,0 +10332,12659,23111,23112,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,42,0,0,100.1812438634372,0,0,0,64,3,3,3,3,-9,2019,4,2,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,2,0,0,6,2,1,785.5,0,0,0 +10332,12659,23112,23111,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,3,0,6.79247035053134,6.180766326603555,1,0,-9,7,0,0,155.0582324907417,-9,0,0,64,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.528916936181381,0,0,52,48,5,1,0,0,6,2,1,785.5,0,0,0 +10333,12660,23113,-9,-9,-9,1,1,0,59,3,0,3,0,2,-9,3,3,0,5,0,0,0,4,0,-9,0,1,0,-893.0254307425333,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,6,1,1,0,11,1,0,512.75,0,0,0 +10333,12660,23114,-9,23113,-9,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-955.5673524025542,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,11,1,0,512.75,0,0,0 +10333,12660,23115,-9,23113,-9,2,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1012.726493353975,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,5,1,0,0,11,1,0,512.75,0,0,0 +10333,12660,23116,-9,23113,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.9371223842759,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,5,0,0,11,1,0,512.75,0,0,0 +10334,12661,23117,23118,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,3,7.274409947001808,7.140917711017392,0,2,0,-9,3,0,-12,36.9813632352589,0,0,0,57,2,1,3,2,2,2019,2,3,16,4,26,24,15,1,4,3,0,6.23741240341773,6.23741240341773,0,0,0,0,0,0,0,1,1,0,0,0,0,1,41.81,54.1,5,1,0,0,11,2,0,536.6666666666666,0,0,0 +10334,12661,23118,23117,-9,-9,3,1,1,57,1,0,1,0,2,-9,3,3,0,1,0,0,0,2,0,-9,3,0,12,17.40948134079672,0,0,0,45,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,22.22,5,1,1,0,11,2,0,536.6666666666666,0,0,0 +10334,12661,23119,-9,23117,23118,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.2113221178719,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,2,0,536.6666666666666,0,0,0 +10335,12662,23120,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,4,0,7.721595618050372,8.08618341826107,3,0,0,0,-9,0,-954.4380691367759,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.694924053994553,7.861779338154149,0,3,51.77,58.57,5,1,0,0,8,3,1,365,0,0,0 +10335,12663,23121,-9,23120,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,4,8.14073998198411,8.143961644726526,0,3,0,0,0,-9,0,-1007.308184906868,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,24,10,35,35,15,1,10,-9,1,11.23242589295603,11.23242589295603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.2,66.67,4,2,0,0,8,4,1,1821,0,0,0 +10336,12664,23122,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,3,0,6.300929539685995,6.169363253427066,3,0,0,0,-9,0,-1095.091652899014,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.174685296508809,6.503655448648119,0,0,52,54.51,6,1,0,0,2,2,1,2642,0,0,0 +10336,12665,23123,-9,-9,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,2,7.866181592015384,8.069092100620685,0,3,0,0,0,-9,0,-980.4347295377835,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,9.721312322008915,9.721312322008915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.6,47.8,5,1,0,0,2,3,1,524,0,0,0 +10337,12666,23124,23126,-9,-9,2,1,1,51,1,0,3,0,1,-9,1,1,0,4,8.823707368579887,8.667375009194407,0,2,0,-9,26,0,-4,-66.62695541059932,0,0,0,55,2,3,1,-9,-9,2019,1,1,14,2,38,40,15,1,2,1,0,16.48771890979805,16.48771890979805,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,4,1,0,1,7,5,1,1061.25,0,0,0 +10337,12666,23125,-9,23126,23124,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.485479724714,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,5,1,1061.25,0,0,0 +10337,12666,23126,23124,-9,-9,1,1,0,55,1,0,3,0,2,-9,1,1,0,3,9.299054888857183,9.125098111941721,6.828038352337466,2,0,-9,22,0,4,64.83898648111446,0,0,0,51,1,4,1,2,1,2019,1,2,11,0,0,12,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.877373301381309,0,0,0,48,49,5,2,0,0,7,5,1,1061.25,0,0,0 +10337,12666,23127,-9,23126,23124,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.2763084780809,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,7,5,1,1061.25,0,0,0 +10338,12667,23128,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1027.59663431401,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,10,0,30,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.16,36.82,4,1,1,0,1,1,1,653,0,0,0 +10339,12668,23129,-9,-9,-9,1,1,1,75,3,0,0,0,1,-9,4,3,0,2,0,3.957936566846875,4.262944851847175,3,0,0,0,-9,0,-1144.972092545518,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,8,0,0,15,4,8,-9,0,0,0,1,3.740170651090138,0,0,0,0,0,1,1,0,0,4.133275035379553,0,0,50,21.76,6,4,0,1,8,1,0,707,0,0,0 +10340,12669,23130,23131,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,42,0,-1,32.37743384224173,0,0,0,76,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,1.902168006250488,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,11,2,1,1230,0,0,0 +10340,12669,23131,23130,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,5.298704738027529,5.569324797449594,1,0,-9,43,0,1,-34.57935901123498,0,0,0,75,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.740919288404031,0,0,52,47,5,1,0,0,11,2,1,1230,0,0,0 +10341,12670,23132,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-925.6499003993014,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,7.67624757223917,0,0,0,9.797214557194016,70.80259009216113,1,1,0,0,0,0,0,59.51,33.52,6,1,0,0,12,1,1,261,0,0,0 +10342,12671,23133,23134,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.25040702759758,8.34746438616841,7.634454014649695,1,0,-9,34,0,3,213.1255946922766,0,0,0,59,1,3,1,2,3,2019,1,2,10,0,47,44,15,1,0,1,0,7.909961956125446,7.909961956125446,0,0,0,0,0,0,0,0,0,0,0,7.793627761438834,0,0,47.77,41.69,4,1,0,0,9,5,1,253,0,0,0 +10342,12671,23134,23133,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,3,8.262923980628873,8.85008852413112,7.990126983537125,1,0,-9,32,0,-3,-112.6197432113483,0,0,0,62,2,2,1,2,3,2019,1,1,11,0,30,15,15,1,0,1,0,13.90839759315323,13.90839759315323,0,0,0,0,0,0,0,0,0,0,0,7.96696523138358,0,0,57.33,53.46,6,1,0,0,9,5,1,253,0,0,0 +10343,12672,23135,23136,-9,-9,1,1,0,61,1,0,0,0,2,-9,97,3,0,2,0,9.169786118058607,9.61667794128584,1,0,-9,17,0,5,-10.82003398352614,0,0,0,56,1,4,1,1,1,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.019385877166382,9.637165057007284,12.28939198771301,3,52.24,50.75,6,1,0,0,8,5,1,896.5,0,0,0 +10343,12672,23136,23135,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,9.241578125659899,9.446954957252425,0,1,0,-9,17,0,-5,-205.4566498919394,0,0,0,61,2,2,3,2,2,2019,2,1,7,1,35,80,15,1,1,3,0,41.22802857755831,41.22802857755831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,56.95,4,1,0,0,8,5,1,896.5,0,0,0 +10344,12673,23137,23138,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,16,0,3,-28.14810052978187,0,0,0,82,3,2,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.446818535311168,0,0,0,48.22,21.45,6,1,0,0,5,2,1,1941,0,0,0 +10344,12673,23138,23137,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,6.285189512271995,6.144944316738433,1,0,-9,18,0,-3,-6.744936678483751,0,0,0,85,3,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,5.524936192327137,8.830767049620263,0,0,0,0,1,1,0,.5798473366270168,6.417825301539837,.6076230918279886,1,60.87,18.17,6,1,0,0,5,2,1,1941,0,0,0 +10345,12674,23139,-9,-9,-9,1,1,0,34,2,1,2,0,2,-9,2,1,0,3,7.035877277009477,7.21996178033339,0,4,0,0,0,-9,0,-986.1445097371205,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,16,16,15,1,5,-9,0,7.750648269539918,7.750648269539918,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.74,51.07,4,1,0,0,2,2,0,1240.333333333333,0,0,0 +10345,12674,23140,-9,23139,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1113.451100537373,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,2,2,0,1240.333333333333,0,0,0 +10345,12674,23141,-9,23139,-9,2,1,0,11,2,1,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-958.9640575402451,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,4,1,0,0,2,2,0,1240.333333333333,0,0,0 +10346,12675,23142,23143,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,4,6.912333201051834,7.322949689736952,0,1,0,-9,22,0,-2,124.0119655738225,0,0,0,59,1,5,1,3,3,2019,1,1,10,0,20,20,15,1,0,1,0,6.294781910749491,6.294781910749491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,6,2,0,645.5,0,0,0 +10346,12675,23143,23142,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,5,0,0,0,1,0,-9,22,0,2,41.45235496562155,0,0,0,57,3,4,1,2,3,2019,1,2,6,0,10,80,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,6,2,0,645.5,0,0,0 +10347,12676,23144,23145,-9,-9,2,1,0,48,1,0,0,0,2,-9,1,1,0,4,7.790956423735616,8.174790927475501,0,1,0,-9,30,0,-1,-16.32846911630088,0,0,0,49,2,3,1,2,2,2019,1,1,6,0,28,30,15,1,0,1,0,10.42106213538781,10.42106213538781,0,0,0,0,0,0,0,0,0,0,1.830669327416215,0,0,0,58.15,52.91,6,1,0,0,9,5,1,333,0,0,0 +10347,12676,23145,23144,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,3,8.507049833272644,8.524753566565973,0,1,0,-9,30,0,1,.0585798156333659,0,0,0,48,2,4,1,-9,2,2019,1,2,11,0,41,45,15,1,0,1,0,12.68737272848522,12.68737272848522,0,0,0,0,0,0,0,0,0,0,2.358202235676743,0,0,0,54.9,54.53,5,1,0,0,9,5,1,333,0,0,0 +10347,12677,23146,-9,23144,23145,3,1,1,22,2,0,0,0,1,-9,2,1,0,4,7.911582463094802,8.010218974866904,0,3,0,0,0,-9,0,-895.5484025824776,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,40,15,1,0,-9,1,8.527790537833278,8.527790537833278,0,0,0,0,0,0,0,0,0,0,1.203473012567192,0,0,0,57.16,56.15,6,1,0,0,9,4,1,430,0,0,0 +10348,12678,23147,23151,-9,-9,8,1,0,20,1,0,0,0,2,-9,2,1,0,3,6.066779523442348,6.665218470554624,0,1,0,-9,2,0,0,-11.3462577768609,0,1,1,20,2,4,1,-9,-9,2019,1,3,12,3,50,40,15,1,3,1,0,1.5459899693998,1.5459899693998,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,50.6,4,1,0,0,11,3,1,830.2,0,0,0 +10348,12678,23148,-9,23147,23151,9,1,0,16,2,0,0,1,2,-9,7,2,0,3,0,0,0,1,0,-9,0,-9,0,-1020.285674255614,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,6,1,0,0,11,3,1,830.2,0,0,0 +10348,12678,23149,-9,23147,23151,7,1,1,12,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-928.1299231238812,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,3,1,830.2,0,0,0 +10348,12678,23150,-9,23147,23151,6,1,1,13,2,0,0,1,3,-9,-9,2,0,5,0,0,0,1,0,0,0,-9,0,-894.887847979836,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,3,1,830.2,0,0,0 +10348,12678,23151,23147,23153,23152,3,1,1,20,1,0,0,0,2,-9,2,1,0,4,7.244557768359255,7.256174341292422,0,1,0,-9,2,0,0,-32.62386153792561,0,1,0,20,2,3,1,2,3,2019,1,8,10,1,38,20,15,1,1,1,0,5.417704801362128,5.417704801362128,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.98,59.03,5,1,0,0,11,3,1,830.2,0,0,0 +10348,12679,23152,23153,-9,-9,1,1,1,52,1,0,0,0,3,-9,1,1,0,5,0,0,0,1,0,-9,8,0,0,-13.4566045644484,0,0,0,52,2,5,1,2,3,2019,1,2,7,0,38,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.42808108144298,0,0,0,57.06,57.76,7,1,0,0,11,5,1,444.5,0,0,0 +10348,12679,23153,23152,23155,23154,2,1,0,52,1,0,0,0,2,-9,2,1,0,5,8.887625424451873,8.972139930951313,0,1,0,-9,8,0,0,35.08570016909025,0,0,0,52,3,5,1,2,1,2019,1,1,3,0,35,35,15,1,0,1,0,27.73256520761092,27.73256520761092,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.6,49.26,6,1,0,0,11,5,1,444.5,0,0,0 +10348,12680,23154,23155,-9,-9,4,1,1,84,1,0,0,0,1,-9,4,3,0,2,0,8.477401787710658,8.06021539065642,1,0,-9,8,0,3,1.692664177514173,0,0,0,81,2,5,3,-9,-9,2019,4,5,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.364785850396919,0,0,52.06,32.02,6,1,0,0,11,3,1,1241,0,0,0 +10348,12680,23155,23154,-9,-9,5,1,0,81,1,0,0,0,2,-9,4,3,0,5,0,4.248017599191285,4.826437136578402,1,0,-9,8,0,-3,98.68012568987298,0,0,0,84,1,2,3,-9,-9,2019,4,4,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.854528764949042,4.639683127751166,0,0,61.34,36.56,7,1,0,0,11,3,1,1241,0,0,0 +10349,12681,23156,-9,23157,23158,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-832.1057925158282,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,1454,0,0,0 +10349,12681,23157,23158,-9,-9,1,1,0,45,1,0,1,0,1,-9,2,1,0,3,8.630175346677696,8.761912355378502,0,2,0,-9,15,0,-8,99.15917435504149,0,0,0,53,3,4,1,2,3,2019,1,2,12,0,37,42,15,1,0,1,0,15.21151286147882,15.21151286147882,0,0,0,0,0,0,0,1,1,0,2.757718424448369,0,0,0,39,46.96,6,1,0,0,4,4,1,1454,0,0,0 +10349,12681,23158,23157,-9,-9,2,1,1,53,1,0,1,0,3,-9,1,1,0,4,7.628687431611475,7.933721828847839,6.356567777342588,2,0,-9,15,0,8,-157.3324248375142,0,0,0,45,1,3,1,3,3,2019,1,1,7,0,35,30,15,1,0,1,0,5.440988689428645,5.440988689428645,0,0,0,0,0,0,0,1,1,0,3.392362427220764,6.464440070040163,0,0,57.16,56.15,6,1,0,0,4,4,1,1454,0,0,0 +10350,12682,23159,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,6.026454498434953,5.998882294716838,3,0,0,0,-9,0,-986.497721775121,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.909256047040364,5.659118205579361,0,0,50,47,5,1,0,0,4,2,0,342,0,0,0 +10351,12683,23160,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,1,0,6.77925628782952,6.81006537613865,3,0,0,0,-9,0,-1041.741888521661,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.927096878863726,0,0,39.79,26.59,5,1,0,0,12,2,1,1255,0,0,0 +10352,12684,23161,-9,-9,-9,1,1,0,68,2,0,0,0,1,-9,2,1,0,4,6.874919744163337,6.594831855711782,6.104367899975163,3,0,0,0,-9,0,-920.1265612561676,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,15,9,15,1,0,-9,0,7.362640550147963,7.362640550147963,1,0,0,0,0,0,0,1,1,0,0,6.296308261423881,0,0,46.44,59.62,5,1,0,0,1,3,1,1567,0,0,0 +10353,12685,23162,23163,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,54,0,-2,126.3842127135359,0,0,0,72,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,6.499995924960737,0,0,0,0,1,1,0,0,0,0,0,63.01,25.24,6,3,0,0,8,2,1,1542.5,0,0,0 +10353,12685,23163,23162,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.572247265508918,7.354241736525629,1,0,-9,54,0,2,-125.9458515789812,0,0,0,70,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.841996431981769,7.176222645582198,0,0,54.96,53.17,6,3,0,0,8,2,1,1542.5,0,0,0 +10353,12686,23164,-9,23162,23163,3,1,0,51,2,0,0,0,1,-9,1,1,0,3,8.387126358948825,8.754893358429364,0,3,0,0,0,-9,0,-1072.480392877364,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,20,0,15,1,2,-9,1,30.86239384906713,30.86239384906713,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,5,3,0,0,8,5,1,390,0,0,0 +10354,12687,23165,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,4,7.5913390977421,7.749758561319095,0,3,0,0,0,-9,0,-837.0955625687341,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,32,30,15,1,1,-9,0,7.782133445608523,7.782133445608523,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,6,1,0,0,2,3,1,2679,0,0,0 +10354,12688,23166,-9,23165,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.946712747184534,8.18306906629015,0,3,0,0,0,-9,0,-1052.671954153526,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,45,40,15,1,0,-9,1,7.148631960115376,7.148631960115376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,5,1,0,0,2,4,1,911,0,0,0 +10355,12689,23167,23168,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,3,7.73314493260498,7.764119537605659,0,1,0,-9,44,0,0,43.26298933848527,0,0,0,65,2,2,3,2,-9,2019,2,2,10,0,40,35,15,1,1,4,0,8.083489002763816,8.083489002763816,0,0,0,0,0,0,0,1,1,0,3.589458923205676,0,0,3,52,48,5,1,0,0,8,3,1,839.5,0,0,0 +10355,12689,23168,23167,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,44,0,0,31.12210349403777,0,0,0,65,2,3,1,2,-9,2019,3,1,11,0,0,15,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.251493595556416,3,54.37,44.27,4,1,0,0,8,3,1,839.5,0,0,0 +10355,12690,23169,-9,23168,23167,3,1,1,32,2,0,0,0,1,-9,2,1,0,4,8.405701189702887,8.530616661155491,0,3,0,0,0,-9,0,-919.5022986727395,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,12.81139026823286,12.81139026823286,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,1,0,0,8,4,1,983,0,0,0 +10356,12691,23170,-9,23171,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.575980068482,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,3,0,708,0,0,0 +10356,12691,23171,23173,-9,-9,1,1,0,31,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,7,0,1,-111.4445076785238,0,0,1,30,2,3,1,2,2,2019,3,2,20,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4022504170274434,0,14.58618780216715,3,14.92,42.48,2,1,0,0,10,3,0,708,0,0,0 +10356,12691,23172,-9,23171,23173,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.8488698347159,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,10,3,0,708,0,0,0 +10356,12691,23173,23171,-9,-9,2,1,1,30,1,0,2,0,2,-9,1,1,0,3,8.046675644534028,7.868427971596129,0,2,0,-9,7,0,-1,-6.104196749939586,0,0,0,31,2,1,3,-9,-9,2019,2,1,28,10,70,70,15,1,10,3,0,4.854048923267142,4.854048923267142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.43,41.27,3,1,0,1,10,3,0,708,0,0,0 +10357,12692,23174,23175,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,9.196012438301976,9.326212020952923,1,0,-9,46,0,0,-50.27993701863539,0,0,0,76,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.791675316125616,9.481973812498554,0,0,53.78,48.41,5,1,0,0,2,5,1,1125,0,0,0 +10357,12692,23175,23174,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,7.684350558091944,7.804548001540357,1,0,-9,46,0,0,40.31433889888912,0,0,0,76,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.710867888260666,7.801669897188614,0,0,58.83,52.64,4,1,0,0,2,5,1,1125,0,0,0 +10358,12693,23176,-9,-9,-9,1,1,0,30,3,0,0,0,1,-9,2,1,0,4,7.818011062663644,7.900572051746749,0,3,0,-9,0,1,0,-1084.529010137206,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,38,39,15,1,0,-9,0,9.084813315310358,9.084813315310358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.61,52.41,5,1,0,0,2,4,0,520,0,0,0 +10359,12694,23177,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,1,1,0,4,8.983081297106272,8.891105812740657,5.900838516646096,3,0,0,0,-9,0,-944.5734923845516,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,14,20,15,1,0,-9,0,70.98397930999123,70.98397930999123,0,0,0,0,0,0,0,0,0,0,6.293698228855217,0,0,0,38.53,62.21,6,1,0,0,7,5,1,341,0,0,0 +10360,12695,23178,-9,23180,23181,3,1,0,16,2,0,1,0,3,-9,2,2,0,3,6.068694077149847,6.050628172052562,0,2,0,0,0,-9,0,-828.7002677340963,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,9,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.769881723781585,0,0,0,60.29,52.11,7,1,0,0,7,4,0,761,0,0,0 +10360,12695,23179,-9,23180,23181,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.595683805573,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,0,761,0,0,0 +10360,12695,23180,23181,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.779145778223741,8.870642590530297,0,2,0,-9,29,0,0,-92.87883112054607,0,0,0,50,2,3,1,2,1,2019,1,2,7,0,29,26,15,1,0,1,0,26.75033593724578,26.75033593724578,0,0,0,0,0,0,0,1,1,0,4.248351764188459,0,13.59271308707939,3,54.79,55.86,6,1,0,0,7,4,0,761,0,0,0 +10360,12695,23181,23180,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,3,6.463642280002349,6.17661976456237,0,2,0,-9,11,0,0,-61.83694877786314,0,0,0,50,1,4,1,-9,-9,2019,1,1,18,7,8,16,15,1,7,1,0,7.7819243050799,7.7819243050799,0,0,0,0,0,0,0,1,1,0,3.54487147764552,0,0,0,41.66,52.32,5,1,0,0,7,4,0,761,0,0,0 +10361,12696,23182,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,0,7.210601349620648,7.446099371135105,3,0,0,0,-9,0,-1055.752956531891,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.285224520959201,9.334002645296458,3,50.83,48.16,7,1,0,0,7,3,1,985,0,0,0 +10362,12697,23183,23186,-9,-9,1,1,1,49,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,11,0,11,-46.50441488813955,0,0,0,38,2,3,1,2,1,2019,3,2,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.955456509086622,0,0,0,42.11,40.08,3,3,0,1,8,2,1,608.5,0,0,0 +10362,12697,23184,-9,23186,23183,3,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-828.6722157712621,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,8,2,1,608.5,0,0,0 +10362,12697,23185,-9,23186,23183,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-995.866366289546,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,2,0,0,8,2,1,608.5,0,0,0 +10362,12697,23186,23183,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,3,7.736195260116425,7.997774279938289,0,2,0,-9,4,0,-11,-1.876835727440885,0,0,1,49,1,3,3,2,1,2019,2,1,7,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,52.93,5,2,0,0,8,2,1,608.5,0,0,0 +10363,12698,23187,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,6.591682550003713,6.978206103008831,3,0,-9,0,-9,0,-881.2145546857548,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.452385855892642,118.5991290074145,3,58.32,28.96,4,3,0,0,8,2,0,940,0,0,0 +10364,12699,23188,23189,-9,-9,1,1,0,53,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,-9,18,0,0,0,0,0,0,53,3,4,3,3,3,2019,4,2,18,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.21733269303807,2,48.18,61.8,5,1,1,0,1,1,0,291.5,0,0,0 +10364,12699,23189,23188,-9,-9,2,1,1,53,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,33,0,0,0,0,0,0,53,2,5,3,3,-9,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,1,1,0,291.5,0,0,0 +10364,12700,23190,-9,23188,23189,3,1,1,27,2,0,0,0,2,-9,2,1,0,4,8.032735565534766,8.118759695721312,0,3,0,0,0,-9,0,-1062.033718528387,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,60,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,1,4,0,784,0,0,0 +10364,12701,23191,-9,23188,23189,4,1,1,26,2,0,0,0,2,-9,2,1,0,4,8.025862615853036,7.82209970476728,0,3,0,0,0,-9,0,-1043.031049827376,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,50,20,15,1,1,-9,1,7.196417473396086,7.196417473396086,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,1,3,0,7253,0,0,0 +10365,12702,23192,23193,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,62,0,-1,29.9251593072844,0,0,0,83,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,47.99286579331545,0,0,0,0,1,1,0,0,0,0,0,52.13,46.14,6,1,0,0,4,2,1,993.5,0,0,0 +10365,12702,23193,23192,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,6.680696559648595,6.128720585711017,1,0,-9,62,0,1,-52.25185410348065,0,0,0,82,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.955502438399652,6.65763544346947,0,0,47.68,61.82,1,1,0,0,4,2,1,993.5,0,0,0 +10366,12703,23194,-9,23195,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-992.2207499647849,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,2,0,787,0,0,0 +10366,12703,23195,-9,-9,-9,1,1,0,43,2,0,3,0,2,-9,1,1,0,3,6.574244946745855,6.606510608284933,5.546527437788633,4,0,0,0,-9,0,-864.8418236108128,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,2,20,25,15,1,2,-9,0,3.996736794395539,3.996736794395539,0,0,0,0,0,0,0,1,1,0,5.310808554613294,0,0,0,50.6,51,6,1,0,1,10,2,0,787,0,0,0 +10366,12703,23196,-9,23195,-9,2,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-900.279480118706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,10,2,0,787,0,0,0 +10367,12704,23197,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,7.240228609644562,6.662915331144414,3,0,0,0,-9,0,-1033.69861899302,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,26.14972069513301,0,0,1,1,0,6.376941748708624,7.179464226739172,0,0,57.66,34.34,6,1,0,0,11,2,1,798,0,0,0 +10368,12705,23198,23199,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,6.846998777529539,6.185210707926214,1,0,-9,10,0,-2,82.76900022052772,0,0,0,80,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.040609455092135,6.580959074842226,0,0,56,52,5,1,0,0,12,2,1,1686.5,0,0,0 +10368,12705,23199,23198,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,5.044687614454482,5.382278454206473,1,0,-9,10,0,2,-66.70959108995983,0,0,0,78,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.948030224301444,5.020904950288202,0,0,47.39,36.31,5,1,0,0,12,2,1,1686.5,0,0,0 +10369,12706,23200,23201,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,6.868072255875608,7.14470137441794,1,0,-9,9,0,1,.1884311224120023,0,0,0,65,1,4,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.859164756354369,6.559829460068817,0,0,53.59,45.32,6,1,0,0,12,3,1,83,0,0,0 +10369,12706,23201,23200,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,4,0,7.779772501461747,7.862081369382595,1,0,-9,9,0,-1,-33.11592077461543,0,0,0,66,2,4,3,-9,-9,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.050461254732063,0,0,0,43.43,54.3,6,1,0,0,12,3,1,83,0,0,0 +10370,12707,23202,23203,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,51,0,-3,-73.53210370945453,0,0,0,70,1,5,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,4.90996374352064,0,0,0,0,15.63460847859076,1,1,0,4.230231525795589,0,12.01656512350152,3,57.73,54.53,7,1,0,0,2,2,1,1027.5,0,0,0 +10370,12707,23203,23202,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,6.923302410862888,7.142456085296319,1,0,-9,9,0,3,53.93587264561392,0,0,0,67,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.393676320054557,6.682239506742487,0,0,62.39,56.71,1,1,0,0,2,2,1,1027.5,0,0,0 +10371,12708,23204,-9,23205,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-852.083634053124,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,1,914,0,0,0 +10371,12708,23205,-9,-9,-9,1,1,0,36,3,0,1,0,2,-9,2,1,0,4,7.941791800705659,7.589786552538139,5.53876161563837,4,0,0,0,-9,0,-901.0088423571126,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,21,16,15,1,9,-9,0,14.2629734766564,14.2629734766564,0,0,0,0,0,0,0,1,1,0,4.956445910243617,0,0,0,28.16,65.32000000000001,5,1,0,0,4,3,1,914,0,0,0 +10372,12709,23206,23207,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,6.505834408980276,6.688753676109814,1,0,-9,9,0,-2,-58.44470725176227,0,0,0,67,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.455486354201376,6.592210788366152,14.96978788736518,3,52.35,46.24,5,1,0,0,11,3,1,1113,0,0,0 +10372,12709,23207,23206,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.428241162028486,7.37355428941598,1,0,-9,9,0,2,37.20780033677903,0,0,0,65,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.589889947612035,7.326479919087663,14.2927109638803,3,56.65,34.77,5,1,0,0,11,3,1,1113,0,0,0 +10373,12710,23208,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,5,8.776683634494686,8.929240041073784,0,3,0,0,0,-9,0,-1032.517912884034,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,35,44,15,1,1,-9,0,18.74283339914597,18.74283339914597,0,0,0,0,0,0,0,0,0,0,6.046280883431823,0,0,0,38.24,63.73,6,1,0,0,10,5,0,937,0,0,0 +10374,12711,23209,23210,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,1,0,6.148026106280065,6.004202178988521,1,0,-9,7,0,2,-27.86579080810234,0,0,0,56,1,2,1,2,3,2019,3,1,26,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.100228042426866,0,0,16.11,46.91,2,1,0,0,13,4,0,309,0,0,0 +10374,12711,23210,23209,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,2,8.326058034127215,8.733349845301596,0,1,0,-9,7,0,-2,19.13046731332029,0,0,0,58,2,1,3,2,3,2019,2,2,13,1,45,50,15,1,1,4,0,13.49372343151183,13.49372343151183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.29,34.56,6,1,0,0,13,4,0,309,0,0,0 +10374,12712,23211,-9,23209,23210,3,1,1,24,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1025.300808437251,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.96000000000001,43.19,7,1,1,0,13,1,0,1275,0,0,0 +10375,12713,23212,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,2,8.115085207541584,8.309027315888962,0,3,0,0,0,-9,0,-1042.728859881245,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,4,22,22,15,1,4,-9,0,15.67531528276712,15.67531528276712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,24.41,5,1,0,0,8,4,0,126,0,0,0 +10375,12714,23213,-9,23212,-9,2,1,1,24,2,0,0,0,2,1,97,3,0,3,0,0,0,3,0,0,0,-9,0,-924.2716173898034,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.02347617237133,3,23.09,53.06,2,1,0,1,8,1,0,1983,0,0,0 +10375,12715,23214,-9,23212,-9,3,1,1,20,2,0,0,0,2,1,97,3,0,4,0,0,0,3,0,0,0,-9,0,-967.2514822082293,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.5,53.7,7,1,0,0,8,1,0,242,0,0,0 +10376,12716,23215,23216,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,3,7.825627689769125,7.985793156240941,0,2,0,-9,9,0,0,-22.32106295240707,0,0,0,43,3,2,3,2,1,2019,2,2,12,0,45,45,15,1,0,3,0,7.306287017458454,7.306287017458454,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.02,58.57,2,1,0,1,1,3,0,252,0,0,0 +10376,12716,23216,23215,-9,-9,2,1,0,43,1,0,1,0,3,-9,3,3,0,2,0,0,0,2,0,-9,9,0,0,25.7026539229835,0,0,1,43,2,3,1,3,3,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.96,38.73,1,1,1,0,1,3,0,252,0,0,0 +10376,12717,23217,-9,23216,23215,3,1,0,19,2,0,1,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-971.7460301002774,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.15,60.54,5,1,1,0,1,1,0,977,0,0,0 +10377,12718,23218,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,3,0,4.710414774037455,4.771724431882763,3,0,0,0,-9,0,-1004.181147211576,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.644381750471397,4.707861948721147,0,0,55,45,6,1,0,0,6,1,1,508,0,0,0 +10378,12719,23219,23220,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,49,0,-6,-141.1963887844236,0,0,0,74,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,7,2,0,532,0,0,0 +10378,12719,23220,23219,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,5.955972973403133,6.484207826508001,1,0,-9,49,0,6,-26.98809824211078,0,0,0,68,3,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.223943543446813,6.073322657677222,0,0,60.12,54.8,6,1,0,0,7,2,0,532,0,0,0 +10379,12720,23221,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1068.278427285228,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.32,23.88,1,1,1,1,11,1,1,1391,0,0,0 +10380,12721,23222,23223,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,3,8.812473583794398,9.221739300230951,0,1,0,-9,2,0,0,-19.55159199678486,0,0,0,32,1,4,1,-9,-9,2019,1,1,10,0,42,42,15,1,0,1,0,16.44726716987427,16.44726716987427,0,0,0,0,0,0,0,0,0,0,4.526765628563535,0,0,0,44.89,53.77,5,1,0,0,7,5,1,813,0,0,0 +10380,12721,23223,23222,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.107547460893311,8.39907255727538,0,1,0,-9,2,0,0,-54.44025578387117,0,0,1,32,2,3,1,2,-9,2019,1,2,12,0,12,50,15,1,0,1,0,37.72909975402309,37.72909975402309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.77,61.1,6,1,0,0,7,5,1,813,0,0,0 +10381,12722,23224,23225,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,4.975076572262289,5.531023477471817,1,0,-9,55,0,-1,-22.57168096004951,0,0,0,80,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.334254856912714,5.002444410379994,0,0,55,45,6,1,0,0,6,2,1,191,0,0,0 +10381,12722,23225,23224,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,4.2613282940369,4.374425994320598,1,0,-9,55,0,1,-7.806397259315728,0,0,0,79,3,3,3,-9,-9,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.309733642919325,4.364277323781018,0,0,50.99,29.07,4,1,0,0,6,2,1,191,0,0,0 +10382,12723,23226,23227,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,25,0,-3,0,0,0,0,50,2,4,1,3,3,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.73,52.99,6,4,0,0,8,1,0,2183.333333333333,0,0,0 +10382,12723,23227,23226,-9,-9,2,1,1,50,1,0,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,25,0,3,0,0,0,0,47,1,4,1,-9,3,2019,1,1,8,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.17,50.61,5,4,0,0,8,1,0,2183.333333333333,0,0,0 +10382,12723,23228,-9,23226,23227,5,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.473789196855,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,4,0,0,8,1,0,2183.333333333333,0,0,0 +10382,12724,23229,-9,23226,23227,3,1,1,22,2,0,2,0,2,1,2,1,0,4,0,0,0,3,0,0,0,-9,0,-898.9666372414242,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,5,4,0,0,8,1,0,732,0,0,0 +10383,12725,23230,23231,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.175997875940981,7.93457759085126,0,1,0,-9,10,0,-4,33.40170787776719,-9,0,0,61,2,3,1,2,2,2019,1,1,17,5,24,0,15,1,5,1,0,13.1692507684244,13.1692507684244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.3,42.81,3,1,0,0,10,5,1,475,0,0,0 +10383,12725,23231,23230,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,3,8.30231766035765,8.315917693402472,0,1,0,-9,10,0,4,2.728070175596217,0,0,0,57,1,3,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,11.54396632270487,11.54396632270487,0,0,0,0,0,0,0,0,0,0,2.326346382776571,0,0,0,48,48,2,1,0,0,10,5,1,475,0,0,0 +10384,12726,23232,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1048.135814630015,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,120.9303730901764,3,41.29,28.82,3,1,0,0,5,1,1,556,0,0,0 +10384,12727,23233,-9,23232,-9,2,1,1,44,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1002.706065880575,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,5,1,1,290,0,0,0 +10385,12728,23234,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1071.097162741069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.12,37.25,2,1,0,0,9,1,0,328,0,0,0 +10386,12729,23235,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,2,1,0,4,8.522802593110894,8.624257791194143,0,3,0,0,0,-9,0,-1024.895570645346,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,3,43,44,15,1,3,-9,0,11.62913522658188,11.62913522658188,0,0,0,0,0,0,0,1,1,0,3.683594732411706,0,0,0,55.14,44.89,6,1,0,0,12,5,0,417,0,0,0 +10387,12730,23236,23237,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,4,6.739081430908899,6.717962247531486,0,1,0,-9,41,0,-1,-64.26262099303111,0,0,0,61,1,5,1,3,2,2019,1,2,6,0,13,20,15,1,0,1,0,8.896082454911168,8.896082454911168,0,0,0,0,0,0,0,0,0,0,1.778520756210889,0,8.59243669629719,3,47.49,55.02,2,1,0,0,9,3,1,2065.5,0,0,0 +10387,12730,23237,23236,-9,-9,2,1,1,61,1,0,0,0,1,-9,1,1,0,5,7.87208445773621,7.328116207657222,0,1,0,-9,41,0,1,-19.17242019084197,0,0,0,60,3,4,1,3,3,2019,1,1,5,0,50,38,15,1,0,1,0,4.105177403155785,4.105177403155785,0,0,0,0,0,0,0,0,0,0,1.444819841313219,0,14.69951376827669,3,54.1,59.11,6,1,0,0,9,3,1,2065.5,0,0,0 +10388,12731,23238,23239,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.537809200916008,8.757483472575299,7.426696311959488,1,0,-9,27,0,3,-182.73396612686,0,0,0,50,2,4,1,2,3,2019,1,1,6,0,50,56,15,1,0,1,0,13.33478888829959,13.33478888829959,0,0,0,0,0,0,0,0,0,0,0,7.249564592301928,0,0,57.16,56.15,6,1,0,0,10,5,1,614,0,0,0 +10388,12731,23239,23238,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.74801239361484,8.594787797008889,0,1,0,-9,27,0,-3,-12.82595543063958,0,0,0,53,2,4,1,2,2,2019,1,2,7,0,41,40,15,1,0,1,0,15.31220883223753,15.31220883223753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.06,55.28,5,1,0,0,10,5,1,614,0,0,0 +10389,12732,23240,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,3,8.11483357080613,8.303375096278135,0,3,0,0,0,-9,0,-1050.943215506236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,49,49,15,1,0,-9,0,8.569234034242763,8.569234034242763,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.19,36.58,6,1,0,0,5,4,1,1545,0,0,0 +10390,12733,23241,23243,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,4,8.504199945807695,8.569250956222183,0,2,0,-9,14,0,-6,170.5472936617242,0,0,0,48,2,3,1,2,2,2019,1,2,11,0,50,42,15,1,0,1,0,10.75242538399883,10.75242538399883,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,4,1,0,0,7,4,1,407,0,0,0 +10390,12733,23242,-9,23243,23241,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.5988461009098,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,7,4,1,407,0,0,0 +10390,12733,23243,23241,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.236347452045365,7.90581183880215,0,2,0,-9,14,0,6,131.1160812834471,0,0,0,42,2,4,1,3,3,2019,1,1,19,7,38,38,15,1,7,1,0,12.06416998846357,12.06416998846357,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,5,4,0,0,7,4,1,407,0,0,0 +10391,12734,23244,23245,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,4,0,7.098750182551369,7.038280909392226,1,0,-9,38,0,4,-31.96210636479116,0,0,0,77,1,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4738055313100187,6.940033496695547,14.5957390401782,1,60.28,43.74,5,1,0,0,4,3,1,913,0,0,0 +10391,12734,23245,23244,-9,-9,1,1,0,77,1,0,0,0,1,-9,4,3,0,3,0,6.52066690868899,6.674586204048687,1,0,-9,38,0,-4,29.7596368650645,0,0,0,81,1,4,3,3,2,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,13.11113616050269,0,0,0,0,1,1,0,.4780855530821989,6.818643254375092,0,0,58.82,39.12,6,1,0,0,4,3,1,913,0,0,0 +10392,12735,23246,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-927.8881120955995,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.95,22.13,1,1,0,0,8,1,0,182,0,0,0 +10393,12736,23247,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,3,8.352216191889161,8.640368479914587,0,3,0,0,0,-9,0,-1031.888715530676,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,43,15,1,0,-9,0,18.85340868332601,18.85340868332601,0,0,0,0,0,0,0,0,0,0,1.067296691811197,0,0,0,41.47,58.08,5,1,0,0,6,5,1,469,0,0,0 +10394,12737,23248,23249,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,3,8.069375870819085,7.885181599141525,0,1,0,-9,27,0,1,57.90943291720588,0,0,0,54,2,4,1,3,3,2019,1,1,7,0,22,24,15,1,0,1,0,13.15111191609608,13.15111191609608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,12,4,1,2430,0,0,0 +10394,12737,23249,23248,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,4,6.959162975080426,7.322654537117178,0,1,0,-9,24,0,-1,2.408634061541949,0,0,0,55,2,3,1,3,3,2019,1,2,9,0,50,49,15,1,0,1,0,2.716884147432396,2.716884147432396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,12,4,1,2430,0,0,0 +10395,12738,23250,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,3,8.635731733134786,8.890990114836207,0,3,0,0,0,-9,0,-1003.898241101146,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,50,53,15,1,3,-9,0,15.22537871015183,15.22537871015183,0,0,0,0,0,0,0,0,0,0,3.709027689291876,0,0,0,42.87,55.86,5,1,0,0,10,5,0,1343,0,0,0 +10396,12739,23251,23254,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,2,6.861086793249102,6.694687718635978,0,2,0,-9,17,0,-3,9.346626529893658,0,0,0,47,2,5,3,3,3,2019,2,1,12,0,35,30,15,1,0,3,0,3.037629247619228,3.037629247619228,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.76,41.18,5,3,0,0,6,2,1,720.5,0,0,0 +10396,12739,23252,-9,23254,23251,6,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.0250070457084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,2,1,720.5,0,0,0 +10396,12739,23253,-9,23254,23251,5,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.261842745228,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,2,1,720.5,0,0,0 +10396,12739,23254,23251,-9,-9,1,1,0,47,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,17,0,3,-48.0257142530806,0,0,0,44,2,2,1,2,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.688207710602672,0,0,0,57.06,57.76,6,3,0,0,6,2,1,720.5,0,0,0 +10396,12740,23255,-9,23254,23251,3,1,1,22,2,0,2,0,2,-9,2,1,0,5,7.526244646203189,7.856024980643211,0,3,0,0,0,-9,0,-1071.224890901397,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,40,15,1,0,-9,1,6.803747811447527,6.803747811447527,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,6,3,1,1810,0,0,0 +10396,12741,23256,-9,23254,23251,4,1,0,21,2,0,2,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1014.965511545911,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.64,48.76,7,3,0,0,6,1,1,626,0,0,0 +10397,12742,23257,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-965.9878215159291,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,.6014393429111893,0,0,0,1,1,0,2.869722994735607,0,0,0,53.55,30.91,5,1,0,0,10,1,1,489,0,0,0 +10398,12743,23258,-9,23260,23259,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.3292020286401,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,4,1,662.3333333333334,0,0,0 +10398,12743,23259,23260,-9,-9,2,1,1,48,1,0,1,0,2,-9,1,1,0,4,8.646447192272126,8.663918308362117,0,2,0,-9,8,0,0,80.72081654034217,0,0,0,48,2,4,1,-9,-9,2019,1,1,9,0,43,48,15,1,0,1,0,16.21570572015536,16.21570572015536,0,0,0,0,0,0,0,1,1,0,1.364846745603783,0,0,0,55.19,54.26,6,1,0,0,10,4,1,662.3333333333334,0,0,0 +10398,12743,23260,23259,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.241170479705191,6.901743150905686,0,2,0,-9,8,0,0,12.25745481191708,0,0,0,48,2,4,1,2,2,2019,1,2,9,0,16,20,15,1,0,1,0,10.16336922049118,10.16336922049118,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,6,1,0,0,10,4,1,662.3333333333334,0,0,0 +10399,12744,23261,23262,-9,-9,2,1,1,61,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,34,0,-4,0,0,0,0,65,3,3,3,3,3,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,5,3,1,0,6,1,1,1103,0,0,0 +10399,12744,23262,23261,-9,-9,1,1,0,65,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,34,0,4,0,0,0,0,61,3,3,3,3,3,2019,4,2,11,0,0,0,15,3,2,3,0,0,0,1,0,0,0,6.279643436547903,0,0,1,1,0,0,0,0,0,50,48,5,3,1,1,6,1,1,1103,0,0,0 +10400,12745,23263,23264,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.146543691216676,8.289484558006311,0,2,0,-9,30,0,-5,5.806036145298635,0,0,0,53,2,3,1,3,3,2019,1,1,12,0,36,35,15,1,2,1,0,8.850272926526184,8.850272926526184,0,0,0,0,0,0,0,1,1,0,0,0,0,3,61.61,37.79,4,3,0,0,8,5,1,646.6666666666666,0,0,0 +10400,12745,23264,23263,23266,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,3,8.271430736261753,8.432553958314141,8.005277351873616,2,0,-9,30,0,5,4.909934277792097,0,0,0,48,2,3,1,3,3,2019,1,2,13,1,36,38,15,1,1,1,0,11.36822535007523,11.36822535007523,0,0,0,0,0,0,0,1,1,0,8.303973945979564,0,0,3,38.16,44.66,4,3,0,0,8,5,1,646.6666666666666,0,0,0 +10400,12745,23265,-9,23263,23264,4,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1017.028329904402,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,8,5,1,646.6666666666666,0,0,0 +10400,12746,23266,-9,-9,-9,5,1,0,78,3,0,1,0,3,-9,4,3,0,3,0,6.669565314410141,6.422253978842464,4,0,0,0,-9,0,-1045.302687085359,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.841805962492449,6.536660206833795,0,0,53,45,6,3,0,0,8,2,1,381,0,0,0 +10400,12747,23267,23268,23263,23264,3,1,1,26,1,0,1,0,1,-9,2,1,0,4,8.18797011752303,7.986092072859519,0,2,0,1,1,-9,-1,-2.991268105314015,0,1,0,27,1,4,1,2,2,2019,1,6,8,1,40,40,15,1,1,1,0,7.562490727509577,7.562490727509577,0,0,0,0,0,0,0,1,1,0,3.450146533786635,0,0,0,51.4,42.44,7,3,0,0,8,4,1,1885.5,0,0,0 +10400,12747,23268,23267,-9,-9,6,1,0,27,1,0,1,0,1,-9,2,1,0,4,8.298377558803631,8.672120506865735,0,2,0,-9,1,-9,1,-.8503988755043121,-9,1,1,26,1,4,1,-9,-9,2019,1,3,20,7,40,0,15,1,7,1,0,10.75633444440672,10.75633444440672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.43,50.97,6,3,0,0,8,4,1,1885.5,0,0,0 +10401,12748,23269,-9,23272,23271,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.516965682615,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,4,1,431.5,0,0,0 +10401,12748,23270,-9,23272,23271,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.946633754307,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,4,1,431.5,0,0,0 +10401,12748,23271,23272,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,9.259765624499508,9.283511976788802,0,2,0,-9,8,0,-2,-8.787744159798091,0,0,0,47,2,4,3,-9,-9,2019,2,1,12,0,36,40,15,1,0,3,0,41.51090955493618,41.51090955493618,0,0,0,0,0,0,0,0,0,0,4.121517571227205,0,0,0,52.99,51.28,6,1,0,0,12,4,1,431.5,0,0,0 +10401,12748,23272,23271,-9,-9,1,1,0,47,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,20,0,2,-36.45771729902589,0,0,0,45,2,3,1,3,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,6,1,0,0,12,4,1,431.5,0,0,0 +10402,12749,23273,-9,23275,23274,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-947.3730729807331,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,2,5,1,588.6666666666666,0,0,0 +10402,12749,23274,23275,-9,-9,1,1,1,35,1,1,1,0,2,-9,2,1,0,3,9.0053012491339,8.73422985141014,0,2,0,-9,8,0,6,-58.74338368086793,0,0,0,29,2,5,1,2,2,2019,1,2,11,0,41,39,15,1,0,1,0,16.76620042551077,16.76620042551077,0,0,0,0,0,0,0,1,1,0,2.806858434745786,0,0,0,46,53,5,1,0,0,2,5,1,588.6666666666666,0,0,0 +10402,12749,23275,23274,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,5,8.170903871274895,8.045458391258736,0,2,0,-9,8,0,-6,2.055340813111446,0,1,1,35,2,3,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,9.770552371703994,9.770552371703994,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.1,59.71,6,1,0,0,2,5,1,588.6666666666666,0,0,0 +10403,12750,23276,23277,-9,-9,2,1,1,49,1,0,0,0,2,-9,8,3,1,4,0,0,0,1,0,-9,6,0,-6,-96.44987888515266,0,0,0,55,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,55,6,1,0,0,5,1,0,694.5,0,0,0 +10403,12750,23277,23276,-9,-9,1,1,0,55,1,0,0,0,2,-9,8,3,1,1,0,3.888329510182114,3.726208261336902,1,0,-9,6,0,6,-41.38852281832662,0,0,0,49,2,4,3,2,3,2019,4,2,33,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.970006971488465,119.5873579786139,1,19.01,22.64,1,1,0,1,5,1,0,694.5,0,0,0 +10404,12751,23278,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,0,7.388880918008971,7.479914805537969,3,0,0,0,-9,0,-942.525762344655,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.347272472031468,7.385717877352719,0,0,31.5,20.97,5,1,0,0,13,3,1,1057,0,0,0 +10404,12752,23279,-9,23278,-9,2,1,1,48,2,0,0,0,2,-9,1,1,0,4,7.350204260071901,7.460577242278608,0,3,0,0,0,-9,0,-1154.381622361328,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,45,15,1,1,-9,1,4.29394388048927,4.29394388048927,0,0,0,0,0,0,0,1,1,0,6.525011426867455,0,0,0,51,55,6,1,0,0,13,3,1,1251,0,0,0 +10404,12753,23280,-9,23278,-9,3,1,1,47,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1068.062945793585,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.214397055832617,0,0,0,48.66,44.34,5,1,0,0,13,1,1,894,0,0,0 +10405,12754,23281,-9,23282,23284,3,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-977.2672302109409,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,7,4,1,1913,0,0,0 +10405,12754,23282,23284,-9,-9,1,1,0,46,1,0,2,0,2,-9,1,1,0,4,7.669808048480325,7.524198264703388,0,2,0,-9,21,0,4,-48.95133851171659,0,0,0,42,1,4,1,2,2,2019,1,2,15,3,15,16,15,1,3,1,0,13.17109290237216,13.17109290237216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,57.81,6,1,0,0,7,4,1,1913,0,0,0 +10405,12754,23283,-9,23282,23284,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.2115354948804,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1913,0,0,0 +10405,12754,23284,23282,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,8.73457040740303,8.680531279571081,0,2,0,-9,21,0,-4,-57.06476397686833,0,0,0,46,2,4,1,2,2,2019,1,1,11,0,35,35,15,1,0,1,0,21.36950427636788,21.36950427636788,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,5,1,0,0,7,4,1,1913,0,0,0 +10406,12755,23285,23286,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,5,0,7.921869919960024,7.79589802350772,1,0,-9,41,0,4,20.59256573764296,0,0,0,60,1,5,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.043608882786964,7.878099234748171,0,0,57.06,57.76,7,1,0,0,2,4,1,560.5,0,0,0 +10406,12755,23286,23285,-9,-9,2,1,0,60,1,0,0,0,1,-9,1,1,0,5,6.427801748033538,7.96436993381351,7.773169775774344,1,0,-9,41,0,-4,-28.05872666685392,0,0,0,64,1,5,3,3,3,2019,2,1,6,0,2,3,15,1,0,4,0,38.29527626444359,38.29527626444359,0,0,0,0,0,0,0,1,1,0,.2609107908806062,7.406615879718106,0,0,57.06,57.76,7,1,0,0,2,4,1,560.5,0,0,0 +10407,12756,23287,23288,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,1,8.351104951609162,8.147336968360364,0,1,0,-9,7,0,-3,-42.96349968172402,0,0,1,47,1,2,1,2,2,2019,1,1,18,6,68,0,15,1,6,1,0,7.532123964352389,7.532123964352389,0,0,0,0,0,0,0,0,0,0,0,0,9.189228718752346,1,27,36.97,2,1,0,0,2,5,1,480,0,0,0 +10407,12756,23288,23287,-9,-9,1,1,1,47,1,0,0,0,1,-9,2,1,0,2,7.794563493331887,8.116482891470971,0,1,0,-9,7,0,3,55.04164933044468,0,0,0,44,1,1,1,3,2,2019,1,2,15,3,30,31,15,1,3,1,0,10.66777311701774,10.66777311701774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,29.67,4,1,0,0,2,5,1,480,0,0,0 +10408,12757,23289,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,1,1,0,3,7.682830411950974,7.868785941447364,0,3,0,0,0,-9,0,-891.5018865008908,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,30,35,15,1,0,-9,0,7.358759449002274,7.358759449002274,0,0,0,0,0,0,0,0,0,0,3.610239608747046,0,0,0,54.38,46.77,3,1,0,1,11,3,1,746,0,0,0 +10409,12758,23290,23291,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,9.40396192158896,9.386433992369312,0,1,0,-9,6,0,-5,23.43471087877253,0,0,0,57,1,4,1,3,2,2019,1,1,11,0,42,0,15,1,0,1,0,24.33565878715567,24.33565878715567,0,0,0,0,0,0,0,0,0,0,8.040660969290395,0,0,0,54.79,55.86,6,1,0,0,6,5,1,945.5,0,0,0 +10409,12758,23291,23290,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.853188434583624,8.922985483695426,0,1,0,-9,6,0,5,81.13627097318712,0,0,0,52,2,4,1,-9,2,2019,1,2,7,0,42,0,15,1,0,1,0,20.46834624501277,20.46834624501277,0,0,0,0,0,0,0,0,0,0,7.688572209230654,0,0,0,58.33,47.36,5,1,0,0,6,5,1,945.5,0,0,0 +10409,12759,23292,-9,23290,23291,3,1,0,19,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-934.6833162441263,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,5,1,0,0,6,1,1,1244,0,0,0 +10410,12760,23293,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,7.948630136882243,7.724714122171755,3,0,0,0,-9,0,-1108.451186969799,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,1,130.3337093413018,0,0,0,0,1210.406145949146,1,1,0,0,7.880416715439644,0,0,28.7,26.71,4,1,0,0,13,3,0,371,0,0,0 +10411,12761,23294,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,6,3,0,3,0,6.702752578024035,6.833868699183451,3,0,0,0,-9,0,-960.3056799035433,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.813817802656873,7.059577931622337,0,0,59.46,46.99,7,1,0,0,9,2,1,1045,0,0,0 +10412,12762,23295,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-970.2622935623997,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,22,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.46,48.92,5,1,1,0,8,1,0,176,0,0,0 +10413,12763,23296,23297,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.140129180905047,8.628411656011984,0,1,0,-9,25,0,2,29.8723660025666,-9,0,0,45,1,2,1,3,3,2019,1,2,7,0,40,0,15,1,0,1,0,13.50723146587369,13.50723146587369,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,13,4,1,598,0,0,0 +10413,12763,23297,23296,-9,-9,2,1,0,45,1,0,0,0,1,-9,1,1,0,2,5.489330402099114,5.588190473092958,0,1,0,-9,25,0,-2,68.34856058889392,0,0,0,47,2,4,1,2,2,2019,1,1,22,10,8,8,15,1,10,1,0,3.875070506190106,3.875070506190106,0,0,0,0,0,0,0,1,1,0,0,0,41.29376841222456,3,24.61,42.78,5,1,0,0,13,4,1,598,0,0,0 +10413,12764,23298,-9,23297,23296,3,1,0,20,2,0,0,0,2,0,7,2,0,5,5.418010478436097,5.420572534598082,0,3,0,0,0,-9,0,-1064.681507995077,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,4,5,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,1,13,2,1,215,0,0,0 +10413,12765,23299,-9,23297,23296,4,1,0,18,2,0,0,0,2,1,2,1,0,4,4.606255686901697,4.620973117978821,0,3,0,0,0,-9,0,-960.6277469032884,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,15,0,15,1,0,-9,1,1.086655509203431,1.086655509203431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,48.57,6,1,0,0,13,2,1,554,0,0,0 +10414,12766,23300,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,5,0,6.867228741045065,7.333259284099869,3,0,0,0,-9,0,-1077.69193972194,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.054425203625377,0,0,60.02,56.42,7,1,0,0,7,2,1,1175,0,0,0 +10415,12767,23301,-9,23302,23303,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.3712125833711,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,4,1,796.3333333333334,0,0,0 +10415,12767,23302,23303,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,4,7.855896232891405,7.88658110294201,0,2,0,-9,7,0,0,-62.58270205078916,0,0,1,40,1,4,1,-9,-9,2019,1,2,11,0,30,32,15,1,0,1,0,7.38679287760539,7.38679287760539,0,0,0,0,0,0,0,1,1,0,.5347550405935831,0,0,0,44.25,55.03,1,1,0,0,13,4,1,796.3333333333334,0,0,0 +10415,12767,23303,23302,-9,-9,2,1,1,40,1,0,1,0,1,-9,2,1,0,4,8.459844085800604,8.20053206515961,0,2,0,-9,7,0,0,-19.95469151948935,0,0,0,40,2,4,1,2,2,2019,1,1,7,0,42,43,15,1,0,1,0,12.0931335780533,12.0931335780533,0,0,0,0,0,0,0,1,1,0,4.993691456035243,0,0,3,57.16,56.15,6,1,0,0,13,4,1,796.3333333333334,0,0,0 +10416,12768,23304,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,5.63356914685485,5.648289401386578,3,0,0,0,-9,0,-1004.422656609535,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.309852813460914,5.783299712195862,0,0,53.95,40.36,4,1,0,0,11,2,1,217,0,0,0 +10417,12769,23305,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,1,1,0,3,8.380306752316306,8.375755042298684,0,3,0,0,0,-9,0,-1044.82730524135,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,20,20,15,1,1,-9,0,29.74082986341845,29.74082986341845,0,0,0,0,0,0,0,0,0,0,3.089885519444963,0,0,0,50.77,50.99,6,1,0,0,9,5,1,394,0,0,0 +10418,12770,23306,23308,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,3,9.484275151670026,9.345254034970203,0,2,0,-9,11,0,1,56.85853894330018,0,0,0,43,1,5,3,3,3,2019,2,1,11,1,48,46,15,1,1,3,0,37.31923014056617,37.31923014056617,0,0,0,0,0,0,0,0,0,0,2.893224740562398,0,0,0,39.67,56.17,6,3,0,0,9,5,1,1647,0,0,0 +10418,12770,23307,-9,23308,23306,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.02896055643,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,2,0,0,9,5,1,1647,0,0,0 +10418,12770,23308,23306,-9,-9,1,1,0,43,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,11,0,-1,-68.74666436416913,0,0,1,44,1,3,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.976785695175867,0,0,0,54.1,59.11,6,1,0,0,9,5,1,1647,0,0,0 +10418,12770,23309,-9,23308,23306,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.464526487383,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,2,0,0,9,5,1,1647,0,0,0 +10418,12770,23310,-9,23308,23306,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.8772254452965,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,9,5,1,1647,0,0,0 +10419,12771,23311,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,3,8.047518730126173,8.069465459327924,0,3,0,0,0,-9,0,-1092.765894482176,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,31,33,15,1,0,-9,0,7.940284972065204,7.940284972065204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.89,53.77,5,1,0,0,6,3,0,1345,0,0,0 +10420,12772,23312,23313,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,2,8.898991175471238,8.785518185898427,0,2,0,-9,3,0,0,-51.57549992116641,0,0,0,46,1,4,1,2,1,2019,1,2,14,3,53,45,15,1,3,1,0,16.13386495980349,16.13386495980349,0,0,0,0,0,0,0,1,1,0,0,0,74.79463917620375,3,29.99,56.63,5,1,0,0,13,5,1,528.5,0,0,0 +10420,12772,23313,23312,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.052356736809143,8.743778303867755,0,2,0,-9,3,0,0,21.40051443833248,0,0,0,46,1,2,1,3,2,2019,1,1,23,11,50,48,15,1,11,1,0,17.04943850158387,17.04943850158387,0,0,0,0,0,0,0,1,1,0,0,0,124.7309935502223,3,38.91,60.5,5,1,0,0,13,5,1,528.5,0,0,0 +10420,12773,23314,-9,23312,23313,3,1,1,18,2,0,2,1,2,-9,7,2,0,4,0,6.666108860537514,6.744749595073364,3,0,0,0,-9,0,-953.4293028921894,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.1897457401797,0,0,0,54.2,57.49,6,1,0,0,13,5,1,1022,0,0,0 +10421,12774,23315,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,3,0,8.04939598000303,7.684592359291665,3,0,0,0,-9,0,-1013.678222868931,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.472448284746283,7.733900079094301,0,0,47.53,45.46,6,1,0,0,7,3,1,198,0,0,0 +10422,12775,23316,23317,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.297548568668562,8.248600751378261,0,1,0,-9,7,0,-2,15.9976978552783,0,0,0,55,1,3,3,-9,-9,2019,2,1,10,0,40,40,15,1,0,4,0,13.84973706030541,13.84973706030541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,2,4,0,0,8,5,1,541,0,0,0 +10422,12775,23317,23316,-9,-9,1,1,1,55,1,0,0,0,1,-9,4,3,0,3,8.215015351988177,8.260929730781069,7.38087560312338,1,0,-9,7,0,2,38.29834893552719,0,0,0,53,1,3,1,-9,-9,2019,3,2,7,0,37,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.861361638529474,7.38003092072705,0,0,61.85,44.55,6,4,0,0,8,5,1,541,0,0,0 +10423,12776,23318,-9,23319,-9,2,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1066.888732651786,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,1,0,1182,0,0,0 +10423,12776,23319,-9,-9,-9,1,1,0,31,2,1,2,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1028.227978635545,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,30,11,0,18,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.2118132011413,3,14.88,32.77,2,1,0,0,12,1,0,1182,0,0,0 +10423,12776,23320,-9,23319,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1061.708747209082,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,1,0,1182,0,0,0 +10424,12777,23321,23322,-9,-9,1,1,1,63,1,0,1,0,2,-9,8,3,1,1,0,3.117069979271768,3.219982524364807,2,0,-9,17,0,14,77.97517849963866,0,0,0,49,1,3,1,-9,-9,2019,3,2,24,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.292796922998813,3.167162752629653,0,0,30.76,28.13,3,1,0,0,2,4,1,661.5,0,0,0 +10424,12777,23322,23321,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,3,9.053171892349154,9.253985591710203,0,2,0,-9,18,0,-14,92.80996236086948,0,0,0,63,2,1,3,2,2,2019,2,1,11,1,40,39,15,1,1,3,0,21.23893780831442,21.23893780831442,0,0,0,0,0,0,0,1,1,0,.6973546729458413,0,23.32154863011443,2,32.84,60.85,5,1,0,0,2,4,1,661.5,0,0,0 +10425,12778,23323,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,6.649009894330789,6.56924679161351,3,0,0,0,-9,0,-964.8478717530299,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.129113185576754,6.493942657054858,0,0,59.64,38.61,7,1,0,0,8,2,1,2208,0,0,0 +10426,12779,23324,23325,-9,-9,1,1,0,32,1,0,2,0,3,-9,6,3,0,3,5.689674710435638,5.57559861682527,0,2,0,-9,10,0,-2,-70.8329226671505,0,0,1,34,2,2,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,5,3,0,0,6,3,1,1195.5,0,0,0 +10426,12779,23325,23324,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,2,8.151986464699689,7.996776129498095,0,2,0,-9,6,0,2,8.510106926784696,0,0,0,32,3,3,3,-9,-9,2019,2,1,19,7,37,37,15,1,7,3,0,10.89863733530614,10.89863733530614,0,0,0,0,0,0,0,1,1,0,6.775478031694506,0,0,0,33.71,39.08,4,3,0,0,6,3,1,1195.5,0,0,0 +10426,12779,23326,-9,23324,23325,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.159553051227,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,1195.5,0,0,0 +10426,12779,23327,-9,23324,23325,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.609748575176,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,3,1,1195.5,0,0,0 +10427,12780,23328,23329,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,4.47418708343879,4.546373726075689,1,0,-9,47,0,-6,-53.15575168891814,0,0,0,79,3,1,3,3,2,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.375179054528347,115.8801601505851,1,35.43,40.34,5,1,0,0,7,2,1,492,0,0,0 +10427,12780,23329,23328,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,1,0,5.69374348229535,5.694000364861707,1,0,-9,47,0,6,-46.20423036170147,0,0,0,73,3,3,3,3,2,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,1.988640383296391,0,0,0,0,1,1,0,4.412335366332268,5.736427717424373,0,0,29.86,20.5,1,1,0,0,7,2,1,492,0,0,0 +10428,12781,23330,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,2,0,7.311912478750729,7.905158330065805,3,0,0,0,-9,0,-1016.88868280522,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.942100151140181,0,0,0,6.697001485018404,72.5318194374204,1,1,0,5.884511506012928,7.757180928085377,0,0,69.48,20.95,7,1,0,0,4,3,1,317,0,0,0 +10428,12782,23331,-9,-9,-9,3,1,0,41,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1001.095910748286,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.49,41.8,5,1,1,0,4,1,1,323,0,0,0 +10429,12783,23332,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,4,9.183478363103612,9.030356353047463,7.335252856935107,4,0,0,0,-9,0,-952.644916538159,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,58,80,15,1,0,-9,0,16.78886811276082,16.78886811276082,0,0,0,0,0,0,0,1,1,0,5.722298109436567,7.836211548166063,0,0,57.16,56.15,6,1,0,0,11,5,0,1096.5,0,0,0 +10429,12783,23333,-9,23332,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-828.9276247825828,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,5,0,1096.5,0,0,0 +10430,12784,23334,23336,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,3,7.459708560704485,7.538277536382032,0,2,0,-9,26,0,-2,-144.5605760118187,0,0,1,46,1,4,1,2,2,2019,1,2,17,6,28,27,15,1,6,1,0,9.564799799954168,9.564799799954168,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.85,39.07,6,1,0,0,12,4,1,687.5,0,0,0 +10430,12784,23335,-9,23334,23336,4,1,1,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-969.6044571893235,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,4,1,687.5,0,0,0 +10430,12784,23336,23334,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.876838935357753,8.723818862812871,0,2,0,-9,6,0,2,-14.87386161757167,0,0,0,44,2,3,1,-9,-9,2019,1,1,9,0,35,37,15,1,1,1,0,21.13432089459913,21.13432089459913,0,0,0,0,0,0,0,1,1,0,4.256318452433729,0,0,0,53,55,6,1,0,0,12,4,1,687.5,0,0,0 +10430,12784,23337,-9,23334,23336,5,1,1,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-980.9943215352203,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,4,1,687.5,0,0,0 +10430,12785,23338,-9,23334,23336,3,1,0,19,2,0,2,0,2,-9,2,1,0,4,8.117664389205528,8.395438266242719,0,3,0,0,0,-9,0,-975.7712651487354,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,20,26,15,1,2,-9,1,24.10780348101231,24.10780348101231,0,0,0,0,0,0,0,1,1,0,2.118016229989421,0,0,0,47,58,5,1,0,0,12,4,1,122,0,0,0 +10431,12786,23339,23340,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,5,8.370128673225786,8.660088064773131,0,1,0,-9,9,0,-2,18.64234543219828,0,0,0,47,2,5,1,2,2,2019,1,1,11,0,25,55,15,1,0,1,0,23.99085411479496,23.99085411479496,0,0,0,0,0,0,0,0,0,0,2.957966811735471,0,0,0,45.81,61.51,4,1,0,0,12,5,1,641.5,0,0,0 +10431,12786,23340,23339,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,5,8.900528881491329,8.701307288670595,0,1,0,-9,9,0,2,25.12348012800242,0,0,0,45,2,5,1,3,-9,2019,1,2,6,0,37,40,15,1,0,1,0,17.73456164978835,17.73456164978835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.08,55.66,6,1,0,0,12,5,1,641.5,0,0,0 +10432,12787,23341,23342,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,51,0,-8,19.93261109352397,0,0,0,77,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.24,19.98,3,1,0,0,5,2,1,738.5,0,0,0 +10432,12787,23342,23341,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,2,0,7.213148009731445,7.301561674874543,1,0,-9,52,0,8,68.32738467835448,0,0,0,69,3,2,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.112323227122464,7.624744276119481,0,0,59,33.89,5,1,0,0,5,2,1,738.5,0,0,0 +10433,12788,23343,23344,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.407328938247733,8.60743700252525,0,1,0,-9,8,0,11,138.649123875511,0,0,0,46,2,2,1,-9,-9,2019,1,1,12,0,24,24,15,1,0,1,0,22.72062238776495,22.72062238776495,0,0,0,0,0,0,0,0,0,0,2.736508726907235,0,0,0,57.33,53.46,6,1,0,0,12,5,1,751.5,0,0,0 +10433,12788,23344,23343,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,2,8.600537392197529,8.18903636762556,0,1,0,-9,8,0,-11,-21.19967801406621,0,0,0,57,2,3,1,2,2,2019,1,2,25,11,40,41,15,1,11,1,0,13.28081519116568,13.28081519116568,0,0,0,0,0,0,0,0,0,0,5.515023301213783,0,0,0,25.05,48.26,3,1,0,0,12,5,1,751.5,0,0,0 +10434,12789,23345,-9,23347,23348,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.8578025609462,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,9,2,0,648.5,0,0,0 +10434,12789,23346,-9,23347,23348,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-849.1673452384214,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,9,2,0,648.5,0,0,0 +10434,12789,23347,23348,-9,-9,2,1,0,35,1,1,2,0,3,-9,2,1,0,4,7.087834279250048,7.004815902444705,0,2,0,-9,6,0,-20,20.60599875488038,0,0,1,55,1,3,1,3,2,2019,1,1,11,0,14,1,15,1,2,1,0,6.884646116754916,6.884646116754916,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,4,0,0,9,2,0,648.5,0,0,0 +10434,12789,23348,23347,-9,-9,1,1,1,55,1,1,2,0,1,-9,2,1,0,3,5.35782725434284,5.259956468052529,0,2,0,-9,10,0,20,-42.08197717229895,0,0,0,35,3,4,1,3,2,2019,1,2,10,1,38,38,15,1,1,1,0,.5362993892488184,.5362993892488184,0,0,0,0,0,0,0,1,1,0,2.471036430563622,0,0,0,40.9,56.09,6,4,0,0,9,2,0,648.5,0,0,0 +10435,12790,23349,-9,23350,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.8955678405749,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,4,0,565,0,0,0 +10435,12790,23350,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,2,1,0,3,7.899179022792955,8.541776755074707,4.952230293423199,2,0,-9,4,0,-1,-118.4424770917241,0,0,1,-9,-9,-9,-9,2,2,2019,1,3,14,2,37,37,15,1,2,-9,0,10.11922734140946,10.11922734140946,0,0,0,0,0,0,0,1,1,0,5.302112414435713,0,0,0,32.14,57.05,6,1,0,0,5,4,0,565,0,0,0 +10435,12791,23351,-9,-9,-9,3,1,0,33,2,0,1,0,2,-9,2,1,0,5,7.873299566109797,8.033582158235594,0,2,0,-9,4,0,1,-11.51260666599262,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,24,12,42,43,15,1,12,-9,0,9.964037185392078,9.964037185392078,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,61.29,4,1,0,0,5,4,0,663,0,0,0 +10436,12792,23352,-9,23353,-9,2,1,0,17,2,0,0,1,2,0,7,2,0,4,6.23431137747125,5.722038108914262,0,3,0,0,0,-9,0,-1096.180910530169,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,3,1,0,0,10,4,1,434.5,0,0,0 +10436,12792,23353,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,3,8.167798919369895,8.184977405934672,6.722819451383218,3,0,0,0,-9,0,-1084.571681973901,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,50,0,15,1,1,-9,0,7.47251721211875,7.47251721211875,0,0,0,0,0,0,0,1,1,0,6.702055952698353,0,6.657505287389169,3,47.75,53.7,3,1,0,0,10,4,1,434.5,0,0,0 +10437,12793,23354,23355,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,6.704229387609079,7.039794527534566,1,0,-9,9,0,3,92.93688545851037,0,0,0,66,3,2,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,0,8.183317018295927,0,0,0,0,1,1,0,0,6.85318127735711,0,0,30.04,44.66,6,1,0,0,11,2,1,909,0,0,0 +10437,12793,23355,23354,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,48,0,-3,-59.8717374110575,0,0,0,69,3,2,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,6.501585159119759,0,0,0,0,1,1,0,0,0,0,0,43.27,19.65,6,1,0,0,11,2,1,909,0,0,0 +10438,12794,23356,23357,-9,-9,1,1,1,21,1,0,0,0,2,-9,2,1,0,3,7.143196478271058,7.210750898777512,5.25414541747788,1,0,-9,1,-9,0,-42.67153338567341,-9,1,0,21,1,4,1,2,2,2019,1,2,6,0,37,0,15,1,0,1,0,3.290056908948012,3.290056908948012,0,0,0,0,0,0,0,1,1,0,4.184827263227963,0,0,0,55.53,51.55,6,1,0,0,1,4,0,1131,0,0,0 +10438,12794,23357,23356,-9,-9,2,1,0,21,1,0,0,0,1,-9,2,1,0,4,8.156842172000196,8.254372352371542,5.305389814255665,1,0,-9,1,-9,0,19.31224377801627,-9,1,1,21,2,3,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,9.28843929854907,9.28843929854907,0,0,0,0,0,0,0,1,1,0,5.544120585620702,0,0,0,54.74,57.22,6,1,0,0,1,4,0,1131,0,0,0 +10439,12795,23358,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,0,7.067945105899588,7.539316583905435,3,0,0,0,-9,0,-990.3845491175692,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,24.89917785890829,1,1,0,4.284121411896632,7.659885979096537,0,0,45.35,12.18,4,1,0,0,10,3,1,384,0,0,0 +10440,12796,23359,-9,23361,23362,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.0445052020201,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,5,1,541.5,0,0,0 +10440,12796,23360,-9,23361,23362,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.777764715643,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,7,5,1,541.5,0,0,0 +10440,12796,23361,23362,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,5,9.276526810697172,8.771884092114071,0,2,0,-9,6,0,0,-138.3652124566261,0,0,1,41,2,4,1,2,3,2019,1,1,4,0,22,44,15,1,0,1,0,32.53351670519264,32.53351670519264,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,6,1,0,0,7,5,1,541.5,0,0,0 +10440,12796,23362,23361,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,4,8.813310352390417,8.745538037058308,0,2,0,-9,6,0,0,2.477173029767225,0,0,0,41,1,5,1,2,2,2019,1,2,6,0,44,44,15,1,0,1,0,15.72060861022125,15.72060861022125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,541.5,0,0,0 +10441,12797,23363,23364,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,9.12627197532932,9.215363456558439,0,1,0,-9,41,0,-8,55.62422780483842,0,0,0,73,1,5,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.553421371814741,0,0,0,51.94,55.88,7,1,0,0,2,5,1,402.5,0,0,0 +10441,12797,23364,23363,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,5,0,8.684996194588441,8.786464808736277,1,0,-9,41,0,8,-74.28013410264792,0,0,0,65,1,3,3,2,1,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.482228930043864,8.635284551616879,0,0,57.06,57.76,2,1,0,0,2,5,1,402.5,0,0,0 +10442,12798,23365,23366,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,4,4.502854062271325,5.872282523577045,5.69854789324127,1,0,-9,36,0,-2,-31.58793728797669,0,0,0,59,1,2,3,2,2,2019,4,1,9,1,0,30,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.01249538523007,5.522106134241203,6.692301160278066,3,58.46,44.55,6,1,0,0,6,3,1,511,0,0,0 +10442,12798,23366,23365,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,2,5.671906709011551,8.153707313471545,7.716890283140771,1,0,-9,36,0,2,4.468770941884626,0,0,0,57,1,4,3,2,3,2019,4,2,6,0,4,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.05972615499417,8.146086611192965,0,0,62.59,29.56,6,1,0,0,6,3,1,511,0,0,0 +10442,12799,23367,-9,23365,23366,5,1,0,26,2,0,0,0,2,-9,2,1,0,4,6.80947536505905,6.986900955098435,0,3,0,0,0,-9,0,-1107.114744340594,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,18,0,15,1,0,-9,1,6.892516242673713,6.892516242673713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,6,1,0,0,6,2,1,1857,0,0,0 +10442,12800,23368,-9,23365,23366,3,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.245372735080132,8.053095586934525,0,3,0,0,0,-9,0,-989.4609532782839,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,45,20,15,1,1,-9,1,5.726960875750063,5.726960875750063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.41,46.39,3,1,0,0,6,4,1,328,0,0,0 +10442,12801,23369,-9,23365,23366,4,1,1,24,2,0,0,0,1,-9,2,1,0,4,6.445814311580006,6.494539732090284,0,3,0,0,0,-9,0,-966.3517217106765,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,17,17,15,1,3,-9,1,4.395923502110499,4.395923502110499,0,0,0,0,0,0,0,0,0,0,1.245957705677929,0,0,0,43.2,59.97,4,1,0,0,6,2,1,523,0,0,0 +10443,12802,23370,23371,-9,-9,2,1,0,61,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,43,0,-6,0,0,0,0,67,2,3,3,2,2,2019,4,1,28,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.93,17.48,2,1,0,1,10,1,0,331,0,0,0 +10443,12802,23371,23370,-9,-9,1,1,1,67,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,43,0,6,0,0,0,0,61,3,1,3,2,3,2019,4,2,14,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.2262395446372,1,41.23,59.35,3,1,0,1,10,1,0,331,0,0,0 +10444,12803,23372,-9,23373,23375,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.153636749671,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,1,1342.75,0,0,0 +10444,12803,23373,23375,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,4,8.11351030575581,8.195580700814194,0,2,0,-9,20,0,-5,13.22854519748747,0,0,0,51,3,2,1,3,3,2019,1,1,8,0,40,43,15,1,0,1,0,10.70325493034862,10.70325493034862,0,0,0,0,0,0,0,1,1,0,0,0,1.314246327627946,3,46.98,59.35,7,1,0,0,6,4,1,1342.75,0,0,0 +10444,12803,23374,-9,23373,23375,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-988.7356334377247,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,6,4,1,1342.75,0,0,0 +10444,12803,23375,23373,-9,-9,1,1,1,51,1,0,2,0,3,-9,2,1,0,2,8.166873134620205,8.160239528018467,0,2,0,-9,20,0,5,106.9208202297427,0,0,0,46,2,4,1,2,2,2019,1,2,9,0,45,45,15,1,0,1,0,7.249578446303358,7.249578446303358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,50.46,4,1,0,0,6,4,1,1342.75,0,0,0 +10445,12804,23376,23377,-9,-9,2,1,1,30,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,6,0,-4,0,0,0,0,34,3,4,3,-9,-9,2019,4,1,5,0,0,35,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,6,1,1,0,7,1,0,803.5,0,0,0 +10445,12804,23377,23376,-9,-9,1,1,0,34,1,0,0,0,3,-9,97,3,0,4,0,0,0,1,0,-9,6,0,4,0,0,0,1,30,3,4,3,-9,-9,2019,4,2,8,0,0,35,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.97,61.58,7,1,0,0,7,1,0,803.5,0,0,0 +10446,12805,23378,23380,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,5,8.479507065316545,8.173396904155609,0,2,0,-9,2,0,3,-56.5081637552796,0,1,0,23,2,4,1,-9,-9,2019,1,1,13,2,39,43,15,1,2,1,0,11.03785129612249,11.03785129612249,0,0,0,0,0,0,0,1,1,0,1.670050203888564,0,0,0,45.22,63.14,6,1,0,0,4,4,0,638,0,0,0 +10446,12805,23379,-9,23380,23378,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-862.884377405852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,0,638,0,0,0 +10446,12805,23380,23378,-9,-9,1,1,0,23,1,1,1,0,2,-9,5,1,0,4,7.227451151608761,7.317631073458378,0,2,0,-9,2,0,-3,-37.01958546391006,0,1,1,26,2,5,1,2,2,2019,1,2,7,1,30,36,15,1,1,1,0,5.290742055761547,5.290742055761547,0,0,0,0,0,0,0,1,1,0,1.421239259276477,0,0,0,53.32,45.57,7,1,0,0,4,4,0,638,0,0,0 +10447,12806,23381,23382,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,7.517929793592067,7.773080269230963,1,0,-9,41,0,2,-22.74719315496289,0,0,0,64,1,3,3,-9,-9,2019,4,1,22,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.277824366563109,7.705754085977221,0,0,36.82,42.93,2,1,0,0,11,4,1,1419.5,0,0,0 +10447,12806,23382,23381,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,7.792591761504107,7.662667953204548,1,0,-9,41,0,-2,64.42902514647464,0,0,0,66,2,2,3,-9,-9,2019,4,2,31,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.991012482328294,7.826649564497704,13.25626094486346,2,19.6,53.1,1,1,0,0,11,4,1,1419.5,0,0,0 +10448,12807,23383,-9,23385,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,-9,0,-9,0,-924.8770125089076,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,12,3,0,734,0,0,0 +10448,12807,23384,-9,23385,-9,3,1,1,17,2,0,2,0,-9,-9,3,3,0,5,0,0,0,4,0,-9,0,-9,0,-920.1776557395945,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,1,0,12,3,0,734,0,0,0 +10448,12807,23385,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,2,1,0,3,7.821539116002658,7.758732841492379,0,4,0,-9,0,-9,0,-1003.320573810439,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,0,15,1,0,-9,0,7.59581943516286,7.59581943516286,0,0,0,0,0,0,0,1,1,0,0,0,6.780330484778951,3,51.41,56.15,6,1,0,1,12,3,0,734,0,0,0 +10449,12808,23386,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1048.793660954128,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.6552491081244,3,56.01,27.43,6,1,1,1,2,1,0,2671,0,0,0 +10450,12809,23387,23388,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,4,8.893596893652266,9.071986011313589,0,1,0,-9,1,-9,4,38.2217411007789,-9,1,0,24,2,4,3,-9,-9,2019,2,1,10,0,30,0,15,1,1,3,0,35.06548253936064,35.06548253936064,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,2,5,0,338.5,0,0,0 +10450,12809,23388,23387,-9,-9,1,1,0,24,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,1,-9,-4,58.98375840184892,-9,1,1,28,2,4,1,2,1,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,2,5,0,338.5,0,0,0 +10451,12810,23389,-9,-9,-9,1,1,0,56,2,0,1,0,3,-9,2,1,0,4,7.302215473100556,7.702471831587197,5.318110345082283,4,0,0,0,-9,0,-987.7566229020787,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,21,22,15,1,0,-9,0,8.99994573896841,8.99994573896841,0,0,0,0,0,0,0,1,1,0,5.114829410667292,0,0,0,38.88,61.85,5,1,0,0,4,3,1,843,0,0,0 +10451,12810,23390,-9,23389,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-955.2856386660143,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,4,3,1,843,0,0,0 +10452,12811,23391,-9,-9,-9,1,1,1,26,2,0,0,0,3,-9,2,1,0,2,8.24648043842709,8.451078450916826,0,3,0,0,0,-9,0,-992.7574034439925,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,52,16,15,1,2,-9,0,7.948516857403146,7.948516857403146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.43,57.47,5,1,0,0,2,4,0,840,0,0,0 +10453,12812,23392,23393,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,55,0,-5,0,0,0,0,81,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,7,1,0,0,12,1,0,572,0,0,0 +10453,12812,23393,23392,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,55,0,5,0,0,0,0,76,3,5,3,-9,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.78,28.74,6,1,0,0,12,1,0,572,0,0,0 +10454,12813,23394,23395,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,4.934453387345672,4.887318419685128,1,0,-9,51,0,-3,-127.61142412334,0,0,0,75,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,128.5534925372649,16.92067824642717,0,0,0,1,1,0,5.327324310131063,4.826036118433787,0,0,51,46,6,1,0,0,10,2,1,572.5,0,0,0 +10454,12813,23395,23394,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,5.151567749046469,5.09196219167291,1,0,-9,51,0,3,-52.77642864819975,0,0,0,72,3,3,3,-9,-9,2019,4,1,16,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.142225850597557,5.053224653725453,116.7802358550379,1,54.79,38.05,6,1,0,0,10,2,1,572.5,0,0,0 +10455,12814,23396,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,5,8.030605574604019,8.028840135887995,0,3,0,0,0,-9,0,-869.8601661159482,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,39,15,1,0,-9,0,15.59550462399135,15.59550462399135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,12,4,1,347,0,0,0 +10456,12815,23397,-9,-9,-9,1,1,0,88,3,0,2,0,3,-9,4,3,0,1,0,5.383770814692378,5.265089150479928,4,0,0,0,-9,0,-1114.507716166713,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.30835524765241,0,0,43.49,23.28,5,1,0,0,9,2,1,706,0,0,0 +10457,12816,23398,-9,-9,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,5,8.298649513711943,8.382977508064101,0,3,0,0,0,-9,0,-952.638004745191,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,37,39,15,1,0,-9,0,13.08257100296605,13.08257100296605,0,0,0,0,0,0,0,0,0,0,1.423005013975047,0,0,0,48.49,58.82,6,1,0,0,10,4,0,661,0,0,0 +10457,12817,23399,23400,-9,-9,3,1,1,26,1,0,0,0,2,-9,2,1,0,4,7.881180113073541,7.856286663903053,0,1,0,-9,1,-9,3,81.86286940637221,-9,1,0,23,2,4,1,-9,-9,2019,1,1,4,0,60,0,15,1,0,1,0,4.026600357273874,4.026600357273874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,10,3,0,579.5,0,0,0 +10457,12817,23400,23399,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,4,0,0,0,1,0,1,1,-9,-3,-56.87139967770649,0,1,1,26,2,4,1,2,2,2019,1,3,20,8,0,36,15,1,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,6,1,0,0,10,3,0,579.5,0,0,0 +10458,12818,23401,23402,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.53114353585508,7.844950116501657,1,0,-9,10,0,-2,-20.90155337140573,0,0,0,71,2,3,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.09930936839008,7.646297983159071,0,0,53.73,49.64,7,1,0,0,11,4,1,605.5,0,0,0 +10458,12818,23402,23401,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,7.028033424127103,7.829824269852216,7.21337527986558,1,0,-9,10,0,2,27.34431240415016,0,0,0,69,1,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.233175754842045,7.230789338338818,0,0,56.11,44.4,6,1,0,0,11,4,1,605.5,0,0,0 +10459,12819,23403,-9,23405,23404,3,1,1,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1077.454912211234,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,4,4,1,539.3333333333334,0,0,0 +10459,12819,23404,23405,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,8.543215605813332,8.774458505588839,0,2,0,-9,6,0,2,50.51908913146536,0,0,0,49,2,5,1,-9,-9,2019,1,1,9,0,37,37,15,1,1,1,0,15.55774736258274,15.55774736258274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,4,4,1,539.3333333333334,0,0,0 +10459,12819,23405,23404,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,5,8.210330943547509,7.775676383959723,0,2,0,-9,31,0,-2,21.69615132707196,0,0,0,51,2,4,1,2,-9,2019,1,2,10,0,37,37,15,1,0,1,0,10.7278336427885,10.7278336427885,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,5,1,0,0,4,4,1,539.3333333333334,0,0,0 +10460,12820,23406,-9,23407,-9,2,1,0,17,2,0,0,0,2,1,2,3,0,2,6.359690488703149,6.106569026860997,0,3,0,0,0,-9,0,-1057.934157201144,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,16,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.98,57.95,3,4,0,1,8,4,1,463,0,0,0 +10460,12820,23407,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,8.238899247123403,8.21214330504128,0,3,0,0,0,-9,0,-926.9728243703498,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,5,36,36,15,1,5,-9,0,12.92352222244939,12.92352222244939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.55,55.03,3,4,0,1,8,4,1,463,0,0,0 +10461,12821,23408,23410,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,3,8.335573653905522,8.30541914187809,0,2,0,-9,2,0,-1,108.1468780692621,0,0,1,44,1,4,1,1,3,2019,1,2,14,2,45,43,15,1,2,1,0,11.04720156715451,11.04720156715451,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.22,53.26,5,1,0,0,13,5,1,326.75,0,0,0 +10461,12821,23409,-9,23408,23410,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1009.040482338762,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,13,5,1,326.75,0,0,0 +10461,12821,23410,23408,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.646399305981078,8.377928870087969,0,2,0,-9,2,0,1,55.80801551381574,0,0,0,43,1,3,1,-9,-9,2019,1,1,17,5,46,52,15,1,5,1,0,14.37760844262688,14.37760844262688,0,0,0,0,0,0,0,1,1,0,6.714814346917673,0,0,0,41.55,59.5,3,1,0,0,13,5,1,326.75,0,0,0 +10461,12821,23411,-9,23408,23410,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.295447555716,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,1,326.75,0,0,0 +10462,12822,23412,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,5,7.661343726452655,7.636898740208635,0,3,0,-9,0,1,0,-1108.37000148414,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,32,32,15,1,0,-9,0,9.835022774868502,9.835022774868502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.67,57.49,6,1,0,0,11,3,1,102,0,0,0 +10463,12823,23413,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,3,0,7.582297759913831,8.043114583125265,3,0,0,0,-9,0,-950.2274160073009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,8.927491950084161,4.619122635760085,0,0,1,1,0,.0777617534518583,7.424999602614328,0,0,60.7,29.04,6,1,0,0,10,3,1,433,0,0,0 +10464,12824,23414,-9,-9,-9,1,1,1,96,3,0,0,0,2,-9,4,3,0,3,0,6.043585271715717,5.913453897916005,3,0,0,0,-9,0,-1115.72045044488,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.724416516026797,0,0,0,1,1,0,0,5.808423594390295,0,0,56,44,6,1,0,0,11,2,0,124,0,0,0 +10465,12825,23415,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,3,7.867949689737163,7.599201479774744,5.838422535236251,3,0,0,0,-9,0,-1030.210847205951,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,21,30,15,1,10,-9,0,11.9821506515266,11.9821506515266,0,0,0,0,0,0,0,1,1,0,.1120633629968933,6.209439098936401,0,0,43.21,47.68,4,1,0,0,2,4,1,153,0,0,0 +10466,12826,23416,23417,-9,-9,1,1,0,29,1,0,2,0,2,-9,2,1,0,4,7.922409875425631,7.570017978079601,0,2,0,-9,5,0,-1,79.94768814231745,0,1,1,30,2,3,1,1,2,2019,1,2,5,0,28,20,15,1,0,1,0,8.622315046198327,8.622315046198327,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,1,1053,0,0,0 +10466,12826,23417,23416,-9,-9,2,1,1,30,1,0,2,0,2,-9,1,1,0,3,8.413139815713086,8.094897746821102,0,2,0,-9,5,0,1,56.05857915212241,0,0,0,29,2,4,1,-9,-9,2019,1,1,4,0,40,40,15,1,0,1,0,13.39033049821129,13.39033049821129,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,10,4,1,1053,0,0,0 +10466,12826,23418,-9,23416,23417,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-848.8392231742604,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,1,1053,0,0,0 +10466,12826,23419,-9,23416,23417,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.463735340872,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,1053,0,0,0 +10467,12827,23420,-9,23421,-9,2,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-958.89436698931,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,5,0,0,13,5,1,668,0,0,0 +10467,12827,23421,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,2,9.036542042968188,8.678636400407614,0,3,0,0,0,-9,0,-873.3864409022464,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,37,37,15,1,1,-9,0,18.09746186936789,18.09746186936789,0,0,0,0,0,0,0,0,0,0,4.893416942272967,0,79.22748556303083,3,47.36,41.27,3,1,0,0,13,5,1,668,0,0,0 +10468,12828,23422,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,4,0,8.891140044639654,8.820279931829074,3,0,0,0,-9,0,-1018.483497702736,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.728992723504754,8.981045019289393,0,0,57.16,56.15,6,1,0,0,12,5,1,102,0,0,0 +10469,12829,23423,23424,-9,-9,3,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.140196731820661,8.29058970785311,0,1,0,-9,8,0,-1,-45.02934649185104,0,0,0,58,2,3,3,-9,2,2019,2,1,6,0,48,44,15,1,0,3,0,9.37499758257978,9.37499758257978,0,0,0,0,0,0,0,1,1,0,0,0,20.4725856911834,1,48.87,58.55,6,1,0,0,4,3,1,2662,0,0,0 +10469,12829,23424,23423,-9,-9,1,1,0,58,1,0,0,0,2,-9,8,3,1,3,0,4.951550993643973,4.776123092475205,1,0,-9,8,0,1,125.7471134327961,0,0,0,57,2,4,1,3,2,2019,3,3,11,0,0,45,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.036145385136952,0,0,49,48,5,1,0,0,4,3,1,2662,0,0,0 +10469,12830,23425,-9,23424,-9,2,1,1,36,2,0,0,0,1,-9,2,1,0,5,8.733955276846217,8.4027214268741,0,3,0,0,0,-9,0,-1186.412324339372,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,3,49,64,15,1,3,-9,1,11.34097313121995,11.34097313121995,0,0,0,0,0,0,0,1,1,0,0,0,.2888861075373974,3,41.07,60.93,7,1,0,0,4,5,1,1114,0,0,0 +10469,12831,23426,-9,-9,-9,4,1,1,36,2,0,0,0,2,-9,2,1,0,4,7.412822539092592,7.525145645045749,0,3,0,0,0,-9,0,-1056.781117799799,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,35,37,15,1,3,-9,0,5.933446395929521,5.933446395929521,0,0,0,0,0,0,0,1,1,0,0,0,4.887729343424381,3,28.38,64.07000000000001,5,1,0,0,4,3,1,219,0,0,0 +10470,12832,23427,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-952.2344822075509,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,1,7.971844350707681,0,10.37920913688572,7.835587683989197,0,0,1,1,0,2.291674957186026,0,0,0,33.87,21.25,2,1,0,0,6,1,1,623,0,0,0 +10471,12833,23428,-9,-9,-9,1,1,0,56,3,0,1,0,2,-9,2,1,0,4,7.550714915921798,8.409820878787171,8.126641484517101,4,0,-9,0,1,0,-1135.956601793477,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,20,0,15,1,6,-9,0,10.48339629484568,10.48339629484568,0,0,0,0,0,0,0,1,1,0,0,7.8655158072605,0,0,48.53,58.91,3,1,0,0,10,4,1,386,0,0,0 +10472,12834,23429,-9,-9,-9,1,1,0,33,3,0,0,0,2,-9,2,1,0,3,7.724211180080249,7.89297450471949,5.782991013848575,3,0,-9,0,-9,0,-1114.216191052396,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,22,8,37,0,15,1,8,-9,0,10.90330185577691,10.90330185577691,0,0,0,0,0,0,0,1,1,0,2.308626981544704,5.978539211276255,0,3,32.83,48.42,3,1,0,0,9,4,0,343,0,0,0 +10473,12835,23430,23431,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,27,0,4,0,0,0,0,55,3,1,3,3,3,2019,4,1,20,8,0,0,15,4,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.8,29.48,4,1,0,0,12,1,0,1237.5,0,0,0 +10473,12835,23431,23430,-9,-9,1,1,1,55,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,27,0,-4,0,0,0,0,59,2,1,3,-9,3,2019,4,2,13,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.64470138328913,1,44.59,25.68,5,1,0,0,12,1,0,1237.5,0,0,0 +10474,12836,23432,-9,23433,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1041.776045972649,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,2,0,519,0,0,0 +10474,12836,23433,-9,-9,-9,1,1,0,50,2,0,2,0,2,-9,2,1,0,5,7.447273257796289,7.683744054705165,6.298755627814295,4,0,0,0,-9,0,-1030.272406781955,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,35,34,15,1,1,-9,0,5.745664231421202,5.745664231421202,0,0,0,0,0,0,0,1,1,0,6.534104468673483,0,0,0,57.06,57.76,6,1,0,0,9,2,0,519,0,0,0 +10475,12837,23434,23435,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,4,7.03616964226287,6.942997419638212,0,1,0,-9,16,0,-4,-124.7158390902523,0,0,0,59,2,4,1,3,2,2019,1,2,10,1,35,35,15,1,1,1,0,3.20558932598811,3.20558932598811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,6,1,0,0,1,4,1,547.5,0,0,0 +10475,12837,23435,23434,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.333197159286392,8.647146265448605,0,1,0,-9,16,0,4,89.15909858292233,0,0,0,55,3,4,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,16.52333857899663,16.52333857899663,0,0,0,0,0,0,0,0,0,0,4.758001573951256,0,9.739531840227029,3,57.16,56.15,6,1,0,0,1,4,1,547.5,0,0,0 +10476,12838,23436,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1054.243250611199,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.95,22.66,3,1,0,0,7,1,0,486,0,0,0 +10477,12839,23437,-9,23439,23438,3,1,0,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-914.3514718963875,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.309646749792955,0,0,0,49.7,58.29,6,1,0,0,9,5,1,321.6666666666667,0,0,0 +10477,12839,23438,23439,-9,-9,2,1,1,66,1,0,1,0,1,-9,1,1,0,3,9.735668139747043,9.628273080859422,6.28969420764242,2,0,-9,20,0,11,111.5393575376967,0,0,0,55,1,4,1,3,2,2019,1,1,13,3,30,40,15,1,3,1,0,52.46272719952963,52.46272719952963,0,0,0,0,0,0,0,1,1,0,8.887398735586141,6.005773015906421,0,0,55.88,43.28,6,1,0,0,9,5,1,321.6666666666667,0,0,0 +10477,12839,23439,23438,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,4,7.029530283626664,7.093561189380475,0,2,0,-9,20,0,-11,-57.09141898600805,0,0,0,66,1,3,1,2,3,2019,1,2,7,0,15,30,15,1,0,1,0,10.50525876673219,10.50525876673219,0,0,0,0,0,0,0,1,1,0,6.9398892248698,0,0,0,54.71,40.73,6,1,0,0,9,5,1,321.6666666666667,0,0,0 +10478,12840,23440,23441,-9,-9,1,1,0,26,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,3,0,-11,0,0,1,1,37,2,1,3,2,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.91283577880732,2,58.3,52.91,6,1,0,0,1,1,0,1107.5,0,0,0 +10478,12840,23441,23440,-9,-9,2,1,1,37,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,3,0,11,0,0,0,0,26,2,4,3,-9,-9,2019,4,1,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,1,1,0,1,1,1,0,1107.5,0,0,0 +10479,12841,23442,23443,-9,-9,1,1,1,59,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,40,0,0,-93.23522303766559,0,0,0,59,3,3,1,2,2,2019,3,2,11,0,0,46,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.033819060658028,0,0,0,58.32,50.22,6,1,1,0,4,2,1,234,0,0,0 +10479,12841,23443,23442,-9,-9,2,1,0,59,1,0,0,0,3,-9,2,1,0,3,7.611580323190161,7.322659605076719,0,1,0,-9,9,0,0,-28.21861559227073,0,0,0,59,3,3,3,-9,-9,2019,2,1,14,4,30,32,15,1,4,3,0,6.589063691481999,6.589063691481999,0,0,0,0,0,0,0,1,1,0,.9560543650099511,0,0,0,53.22,50.02,6,1,0,0,4,2,1,234,0,0,0 +10479,12842,23444,-9,23443,23442,3,1,0,20,2,0,0,0,1,0,7,2,0,3,7.816780147413151,8.218283247175821,0,3,0,0,0,-9,0,-997.2501001889453,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,21,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.89,54.37,6,1,0,0,4,3,1,1101,0,0,0 +10480,12843,23445,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,2,7.838884131696545,7.994174371689733,0,3,0,0,0,-9,0,-1097.665049285404,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,43,43,15,1,1,-9,0,7.281581708336115,7.281581708336115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.91,51.86,3,1,0,0,2,4,1,208,0,0,0 +10481,12844,23446,23447,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,41,0,2,38.60822116338446,0,0,0,67,3,3,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.85,60.27,7,5,0,0,10,4,1,969,0,0,0 +10481,12844,23447,23446,-9,-9,2,1,1,67,1,0,0,0,3,-9,2,1,0,3,8.292803970966983,8.409393258974916,0,1,0,-9,5,0,-2,-83.29994134994764,0,0,0,69,2,4,3,-9,-9,2019,2,1,10,0,40,50,15,1,1,4,0,14.35811081077358,14.35811081077358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,10,4,1,969,0,0,0 +10482,12845,23448,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,1,0,5.248511004584376,5.4388265934855,3,0,0,0,-9,0,-962.5408154212208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,2.715018558750608,0,0,1,1,0,5.413408141705254,0,0,0,46.48,30.08,5,1,0,0,5,2,1,419,0,0,0 +10483,12846,23449,23450,-9,-9,1,1,1,32,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,1,1,-9,2,0,0,0,0,30,3,2,3,3,3,2019,4,2,18,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.06,31.32,4,3,0,1,2,1,0,647.5,0,0,0 +10483,12846,23450,23449,-9,-9,2,1,0,30,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,1,-9,-2,0,-9,0,1,32,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.68213562614825,1,38.92,51.7,5,1,0,0,2,1,0,647.5,0,0,0 +10484,12847,23451,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,2,7.733475195222233,7.906220759594482,0,3,0,0,0,-9,0,-952.6601341301738,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,60,50,15,1,0,-9,0,4.8716408318843,4.8716408318843,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,32.27,4,1,0,0,11,3,0,344,0,0,0 +10485,12848,23452,23454,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,4,9.3906119720886,8.693227344825603,0,2,0,-9,6,0,0,75.13122570249379,0,0,0,47,2,4,3,2,1,2019,2,2,13,1,45,38,15,1,1,3,0,18.87262298479763,18.87262298479763,0,0,0,0,0,0,0,1,1,0,7.696507188369261,0,0,3,38.59,60.85,6,1,0,0,10,4,1,520.3333333333334,0,0,0 +10485,12848,23453,-9,23454,23452,5,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-815.5511237916146,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,520.3333333333334,0,0,0 +10485,12848,23454,23452,-9,-9,2,1,0,47,1,0,3,0,2,-9,10,3,0,4,0,0,0,2,0,-9,6,0,0,36.14595276831226,0,0,0,47,1,4,1,2,1,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1264358577358752,0,22.20705717562022,3,54.2,57.49,5,1,0,0,10,4,1,520.3333333333334,0,0,0 +10486,12849,23455,-9,-9,-9,1,1,1,63,2,0,0,0,1,-9,1,1,0,4,5.785900957224952,5.791703076557843,0,3,0,0,0,-9,0,-872.0207629757157,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,5,0,21,15,1,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.218733373937032,0,0,0,40.71,62.41,3,1,0,1,8,2,0,1041,0,0,0 +10487,12850,23456,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-978.2920737728155,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,6,1,0,0,5,1,1,607,0,0,0 +10488,12851,23457,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,3,0,6.789671148372229,6.563722175929859,3,0,0,0,-9,0,-1101.495672353024,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.979334062213445,0,0,49.62,29.81,6,1,0,0,9,2,0,854,0,0,0 +10489,12852,23458,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-922.0730212211291,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,40.07,3,1,0,0,11,1,0,323,0,0,0 +10489,12853,23459,-9,-9,23458,2,1,1,20,2,0,0,0,2,-9,2,1,0,5,7.549825175787889,7.662822001960713,0,3,0,0,0,-9,0,-1042.591685133637,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,50,0,15,1,0,-9,1,5.361299389778746,5.361299389778746,0,0,0,0,0,0,0,1,1,0,1.240972075354129,0,0,0,55.68,54.24,6,1,0,0,11,3,0,314,0,0,0 +10490,12854,23460,-9,23463,23461,5,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.8965742305124,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,5,5,1,487,0,0,0 +10490,12854,23461,23463,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,4,9.29912528857146,9.436506835613629,0,2,0,-9,10,0,0,65.20378410512241,0,0,0,51,1,4,1,3,2,2019,1,2,15,3,98,50,15,1,3,1,0,13.65356317524388,13.65356317524388,0,0,0,0,0,0,0,0,0,0,0,0,0,3,42.16,60.15,6,1,0,0,5,5,1,487,0,0,0 +10490,12854,23462,-9,23463,23461,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.479107007801,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,5,5,1,487,0,0,0 +10490,12854,23463,23461,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,4,8.815004101275113,8.97730299666503,0,2,0,-9,10,0,0,-17.41507899038086,0,0,0,51,1,4,1,2,2,2019,1,1,9,1,40,40,15,1,1,1,0,16.67761049714369,16.67761049714369,0,0,0,0,0,0,0,0,0,0,0,0,.5628470952333664,3,44.04,57.07,5,1,0,0,5,5,1,487,0,0,0 +10490,12855,23464,-9,23463,23461,3,1,0,19,2,0,2,0,2,-9,2,1,0,4,7.329800459307306,7.203217539389231,0,3,0,0,0,-9,0,-1096.540248165395,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,8,17,9,15,1,8,-9,1,9.947918515998628,9.947918515998628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.2,63.27,5,1,0,0,5,2,1,1014,0,0,0 +10491,12856,23465,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,4,8.729204221527782,8.412837630135801,0,3,0,0,0,-9,0,-987.161336987957,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,2,48,52,15,1,2,-9,0,12.25354547096522,12.25354547096522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,51.68,5,1,0,0,9,5,1,340,0,0,0 +10492,12857,23466,23467,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,10,0,1,-153.3163062025128,0,0,0,69,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.347233730444668,3,58.15,52.91,7,1,0,0,2,3,1,818.5,0,0,0 +10492,12857,23467,23466,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,5,0,7.46135295113928,7.340979825085438,1,0,-9,10,0,-1,.9672083833258984,0,0,0,70,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.795053170710293,7.52894559998516,2.351232193489674,3,63.38,53.47,6,1,0,0,2,3,1,818.5,0,0,0 +10493,12858,23468,23469,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.424933635445752,8.634108666589503,0,1,0,-9,33,0,-2,-96.19091951155519,0,0,0,61,1,2,1,3,2,2019,1,1,11,0,37,37,15,1,0,1,0,14.77561096381793,14.77561096381793,0,0,0,0,0,0,0,0,0,0,6.137033257912156,0,0,0,54.2,57.49,6,3,0,0,6,5,1,1482,0,0,0 +10493,12858,23469,23468,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,2,8.490050488794823,9.027396224578471,6.300517013409028,1,0,-9,33,0,2,43.86115102840078,0,0,0,59,2,4,1,-9,-9,2019,1,2,11,0,55,57,15,1,0,1,0,12.43292121934748,12.43292121934748,0,0,0,0,0,0,0,0,0,0,4.159158126619845,6.393021914211273,0,3,37.41,41.3,5,1,0,0,6,5,1,1482,0,0,0 +10494,12859,23470,-9,-9,-9,1,1,0,88,3,0,0,0,1,-9,4,3,0,5,0,7.446629056642859,7.39619456412723,3,0,0,0,-9,0,-964.6166292697781,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.793611119721373,0,0,0,0,0,1,1,0,6.036881461012019,7.565285986444739,0,0,66.23999999999999,42.66,6,1,0,0,6,3,1,120,0,0,0 +10495,12860,23471,23472,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.367597402139705,9.693937138450467,0,1,0,-9,8,0,-2,-22.22787742568071,0,0,0,55,1,4,1,2,3,2019,1,1,7,0,47,43,15,1,0,1,0,38.341036713725,38.341036713725,0,0,0,0,0,0,0,0,0,0,2.995046134354628,0,0,0,54.79,55.86,6,1,0,0,8,5,1,492,0,0,0 +10495,12860,23472,23471,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,7.734286302681721,7.363750712026746,0,1,0,-9,29,0,2,-144.3487142920614,0,0,0,53,2,4,1,2,2,2019,1,2,6,0,17,20,15,1,0,1,0,10.39041934948106,10.39041934948106,0,0,0,0,0,0,0,0,0,0,1.07549898818753,0,0,0,57.16,56.15,6,1,0,0,8,5,1,492,0,0,0 +10495,12861,23473,-9,23472,23471,3,1,1,22,2,0,0,0,1,1,2,1,0,5,8.363656388743323,8.243728117775206,0,3,0,0,0,-9,0,-988.1680477003216,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,0,15,1,0,-9,1,13.9130930120076,13.9130930120076,0,0,0,0,0,0,0,0,0,0,1.068211242569856,0,0,0,49.76,56.93,6,1,0,0,8,5,1,291,0,0,0 +10496,12862,23474,23475,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.098494618244951,8.973797489672775,0,1,0,-9,4,0,-1,-99.28656834478191,0,0,0,59,2,4,1,2,3,2019,1,2,8,0,40,43,15,1,0,1,0,21.02864007229399,21.02864007229399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.98,50.87,4,2,0,0,6,5,1,601.5,0,0,0 +10496,12862,23475,23474,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,5.662093760701082,8.256572502208847,8.682273284777141,1,0,-9,4,0,1,-7.302071339640917,0,0,0,58,2,3,1,-9,-9,2019,1,1,7,0,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.696167173796482,8.593353182302447,0,0,57.16,56.15,6,1,0,0,6,5,1,601.5,0,0,0 +10497,12863,23476,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-917.4167876639596,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,36.55,5,1,0,0,13,1,0,207,0,0,0 +10498,12864,23477,-9,-9,-9,1,1,0,47,2,0,1,0,3,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-896.9616093771536,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,16,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,58.7,3,1,1,0,1,1,0,643,0,0,0 +10498,12865,23478,-9,23477,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1074.325845370491,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,6,1,0,0,1,1,0,190,0,0,0 +10499,12866,23479,23480,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,7.941668791865403,7.934567422463706,0,1,0,-9,19,0,-1,-45.8283607393582,0,0,0,60,1,3,1,2,1,2019,1,1,13,4,18,18,15,1,4,1,0,16.22169010112851,16.22169010112851,0,0,0,0,0,0,0,0,0,0,0,0,12.0774763995122,3,41.06,62.04,5,1,0,0,7,5,1,378.5,0,0,0 +10499,12866,23480,23479,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,3,9.416543271981183,9.27886007263676,0,1,0,-9,19,0,1,-100.4438174830811,0,0,0,59,1,4,1,1,1,2019,1,2,12,0,38,43,15,1,0,1,0,32.88986126649935,32.88986126649935,0,0,0,0,0,0,0,0,0,0,0,0,9.180295697897197,3,54.37,54.8,6,1,0,0,7,5,1,378.5,0,0,0 +10499,12867,23481,-9,23479,23480,3,1,1,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-967.1960404263948,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.761832924258415,0,0,0,46.4,52.62,6,1,0,0,7,1,1,626,0,0,0 +10499,12868,23482,-9,23479,23480,4,1,0,18,2,0,0,0,2,-9,7,2,0,2,5.766034149495592,5.786199335094832,0,3,0,0,0,-9,0,-904.4845949371529,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,27,11,8,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.221483443915036,0,0,0,21.06,59.72,2,1,0,0,7,2,1,262,0,0,0 +10500,12869,23483,23484,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,6.05154556538496,6.135568371095081,1,0,-9,8,0,-3,36.2218834762442,0,0,0,67,2,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.85566236194099,5.719256368210764,0,0,55.2,49.4,6,1,0,0,5,2,0,2122,0,0,0 +10500,12869,23484,23483,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,3,6.565481311505248,6.432063309517684,0,1,0,-9,8,0,3,-26.53424338329368,0,0,0,64,2,2,3,-9,-9,2019,2,1,10,0,84,50,15,1,1,4,0,1.21001925388318,1.21001925388318,0,0,0,0,0,0,0,1,1,0,4.969563956306502,0,0,0,52,48,5,1,0,0,5,2,0,2122,0,0,0 +10501,12870,23485,23486,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,1,0,6.983662583171092,6.981355889909554,1,0,-9,33,0,8,-35.25504255795545,0,0,0,58,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.6450164104800332,6.859082070883345,0,0,46.52,31.5,4,1,0,0,5,2,1,2295.5,0,0,0 +10501,12870,23486,23485,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,33,0,-8,-40.31622859282437,0,0,0,66,2,1,3,3,3,2019,4,2,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.37417996495891,0,0,0,41.88,45.75,4,1,0,0,5,2,1,2295.5,0,0,0 +10502,12871,23487,23488,-9,-9,1,1,0,53,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,10,0,-8,-25.48335239069996,-9,0,0,61,2,4,3,2,2,2019,4,2,13,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.063909537076659,0,16.90343046032072,3,54.79,55.86,7,1,1,0,4,2,1,290,0,0,0 +10502,12871,23488,23487,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,4,0,6.884524934712885,6.746319608716635,1,0,-9,10,0,8,101.9525806260641,0,0,0,53,2,4,3,2,2,2019,4,1,6,0,0,45,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3.26905787233562,6.973427245413236,5.393286336289139,3,60.12,54.8,6,1,0,0,4,2,1,290,0,0,0 +10503,12872,23489,23490,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,3,0,4.728839409057805,4.803428559123418,1,0,-9,68,0,5,-49.13315924025042,0,0,0,86,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.945797178367517,0,0,64.23999999999999,44.83,2,1,0,0,1,2,0,340,0,0,0 +10503,12872,23490,23489,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,68,0,-5,-22.80002462427217,0,0,0,91,3,3,3,3,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,1,0,0,13.66607101092174,0,0,0,1,1,0,0,0,0,1,40.05,43.86,2,1,0,0,1,2,0,340,0,0,0 +10504,12873,23491,23492,-9,-9,1,1,0,44,1,0,1,0,3,-9,2,1,0,3,8.282215073762435,8.158032825149872,0,2,0,-9,7,0,-6,43.62447898312833,0,0,1,50,3,2,1,2,2,2019,1,2,14,3,45,40,15,1,3,1,0,9.828640140017022,9.828640140017022,0,0,0,0,0,0,0,1,1,0,1.328438751877428,0,0,0,52.78,25.86,6,1,0,0,9,5,1,145,0,0,0 +10504,12873,23492,23491,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,2,8.474240906236389,8.777452359844117,0,2,0,-9,7,0,6,-39.26610418257826,0,0,0,44,3,3,1,-9,3,2019,1,1,12,1,42,48,15,1,1,1,0,14.19086849808092,14.19086849808092,0,0,0,0,0,0,0,1,1,0,.1800518336010413,0,0,0,46.92,36.78,6,1,0,0,9,5,1,145,0,0,0 +10504,12873,23493,-9,23491,23492,4,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.8358932508949,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,145,0,0,0 +10504,12874,23494,-9,23491,23492,3,1,0,19,2,0,1,0,2,-9,2,1,0,4,7.845507066020554,8.012399117270869,0,3,0,0,0,-9,0,-1028.559021780652,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,37,15,1,0,-9,1,7.707886534508216,7.707886534508216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,3,1,193,0,0,0 +10505,12875,23495,23496,-9,-9,2,1,0,51,1,0,1,0,1,-9,1,1,0,5,5.489213049443473,5.807945074546794,0,2,0,-9,29,0,0,-6.170286606900434,0,0,0,51,1,2,1,2,2,2019,1,1,11,0,30,36,15,1,0,1,0,.9991150037389083,.9991150037389083,0,0,0,0,0,0,0,1,1,0,3.532247845697937,0,0,0,57.06,57.76,6,1,0,0,10,5,0,385.5,0,0,0 +10505,12875,23496,23495,-9,-9,1,1,1,51,1,0,1,0,1,-9,1,1,0,2,9.924152044070336,9.934607132974159,0,2,0,-9,29,0,0,34.1630508396299,0,0,0,51,1,5,1,2,3,2019,1,2,9,1,20,0,15,1,1,1,0,84.78892593983748,84.78892593983748,0,0,0,0,0,0,0,1,1,0,3.170581642085159,0,0,0,51.68,33.6,6,1,0,1,10,5,0,385.5,0,0,0 +10505,12876,23497,-9,23495,23496,3,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1044.510616936742,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,10,5,0,1372,0,0,0 +10506,12877,23498,23500,-9,-9,1,1,0,59,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,34,0,0,-6.382950024818409,0,0,0,59,2,4,1,3,3,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.12614616288793,3,35.46,16.38,6,1,0,0,2,3,1,470,0,0,0 +10506,12877,23499,-9,23498,23500,5,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-767.5113894573838,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,2,3,1,470,0,0,0 +10506,12877,23500,23498,-9,-9,2,1,1,59,1,0,1,0,2,-9,2,1,0,4,8.469416366212174,8.515883650490771,7.28913151342446,2,0,-9,6,0,0,35.99791250110272,0,0,0,59,3,1,3,3,-9,2019,2,1,6,0,37,37,15,1,0,3,0,12.43000661570777,12.43000661570777,0,0,0,0,0,0,0,1,1,0,7.619507673238163,7.635718651218907,25.13862400577083,2,60.12,54.8,7,1,0,0,2,3,1,470,0,0,0 +10506,12878,23501,-9,23498,23500,4,1,1,19,2,0,1,0,2,-9,11,3,0,3,6.893375565612955,6.778923630494308,0,3,0,0,0,-9,0,-989.6140698435811,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4417760459529319,0,4.958841913300849,3,52.35,46.24,4,1,0,0,2,2,1,1046,0,0,0 +10506,12879,23502,23503,23498,23500,3,1,0,21,1,0,1,0,2,-9,2,1,0,3,8.003650136516425,8.116579608717679,0,2,0,-9,3,0,-2,48.31705640151476,0,1,1,23,2,3,1,3,2,2019,1,6,11,2,24,45,15,1,2,1,0,14.05592481509221,14.05592481509221,0,0,0,0,0,0,0,1,1,0,0,0,0,3,39.14,56.45,6,1,0,0,2,3,1,451,0,0,0 +10506,12879,23503,23502,-9,-9,6,1,1,23,1,0,1,0,2,-9,2,1,0,3,6.602869615578109,6.799413738879216,0,2,0,-9,3,0,2,-150.0632486752194,0,1,0,21,2,3,1,-9,-9,2019,1,3,11,0,14,0,15,1,0,1,0,6.511348801150752,6.511348801150752,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.88,53.37,4,1,0,0,2,3,1,451,0,0,0 +10507,12880,23504,23505,-9,-9,1,1,0,57,1,0,0,0,1,-9,1,1,0,5,8.337008430438226,8.479016625917852,6.171107643709001,1,0,-9,38,0,0,32.8257265778588,0,0,0,66,2,4,3,2,2,2019,2,2,10,1,54,37,15,1,1,4,0,11.82930190570818,11.82930190570818,0,0,0,0,0,0,0,0,0,0,0,6.603794861273887,0,0,54.1,59.11,6,1,0,0,11,5,1,487.5,0,0,0 +10507,12880,23505,23504,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,7.562118032990679,7.409643296698969,1,0,-9,38,0,9,118.860825939856,0,0,0,57,1,5,1,3,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.577247928443142,7.459773738640832,0,0,58.3,52.91,7,1,0,0,11,5,1,487.5,0,0,0 +10508,12881,23506,23507,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.34178749746961,7.592209298724597,0,1,0,-9,30,0,0,69.47482490667618,0,0,0,57,2,5,1,3,3,2019,1,1,7,0,32,32,15,1,0,1,0,6.874464004657006,6.874464004657006,0,0,0,0,0,0,0,0,0,0,2.853488302075403,0,0,0,52.6,52.88,5,1,0,0,4,5,1,455.5,0,0,0 +10508,12881,23507,23506,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,5,8.986007805547464,8.290952600595537,0,1,0,-9,30,0,0,65.19781987328034,-9,0,0,57,2,3,1,3,3,2019,1,2,6,0,40,0,15,1,0,1,0,22.43496802006035,22.43496802006035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,4,5,1,455.5,0,0,0 +10509,12882,23508,-9,23509,23510,5,1,0,14,2,1,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1065.985792254133,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,3,0,0,4,1,1,1351,0,0,0 +10509,12882,23509,23510,-9,-9,1,1,0,48,1,1,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,33,0,-5,0,0,0,0,53,1,3,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,4,1,1,1351,0,0,0 +10509,12882,23510,23509,-9,-9,2,1,1,53,1,1,2,0,1,-9,2,1,0,3,0,0,0,2,0,-9,33,0,5,0,0,0,0,48,3,4,3,3,3,2019,2,1,5,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.88,43.27,5,3,0,0,4,1,1,1351,0,0,0 +10509,12883,23511,23513,23509,23510,3,1,1,28,1,1,2,0,2,-9,2,1,0,3,8.054585010815659,8.306051670695323,0,2,0,-9,3,0,5,-49.97271350540672,0,1,0,23,2,4,3,2,2,2019,2,6,7,0,35,35,15,1,0,3,0,14.07697629397336,14.07697629397336,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.77,50.99,6,3,0,0,4,3,1,418.3333333333333,0,0,0 +10509,12883,23512,-9,23513,23511,7,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-943.8076024938994,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,3,1,418.3333333333333,0,0,0 +10509,12883,23513,23511,-9,-9,6,1,0,23,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-5,-15.75930066448475,0,1,1,28,2,3,1,-9,-9,2019,3,3,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,6,3,0,0,4,3,1,418.3333333333333,0,0,0 +10509,12884,23514,-9,23509,23510,4,1,1,25,2,1,2,0,1,-9,2,1,0,5,7.979728575461068,7.764481246046601,0,3,0,0,0,-9,0,-946.1074566024751,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,35,15,1,0,-9,1,6.706413065933395,6.706413065933395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,3,0,0,4,3,1,421,0,0,0 +10510,12885,23515,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,4,8.159415991261442,7.97399676802268,0,3,0,0,0,-9,0,-984.4601878351767,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,30,30,15,1,0,-9,0,12.23162775422663,12.23162775422663,0,0,0,0,0,0,0,0,0,0,7.362716184230092,0,0,3,43.92,59.79,6,1,0,0,11,4,1,1376,0,0,0 +10511,12886,23516,23517,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,2,0,5.742447570054944,5.17861205281652,1,0,-9,51,0,-5,-120.7626873922868,0,0,0,79,2,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.647175540043235,5.228199101144138,0,0,48.83,41.49,6,1,0,0,12,2,1,326,0,0,0 +10511,12886,23517,23516,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,6.843539387627462,6.672096651061583,1,0,-9,51,0,5,168.5231316834781,-9,0,0,74,2,2,3,2,1,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.690103402396168,6.798788964962011,0,0,56.03,40.09,5,1,0,0,12,2,1,326,0,0,0 +10512,12887,23518,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-965.7389937645642,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,6,0,0,15,4,6,-9,0,0,0,1,0,0,10.03032104998762,0,11.65467419825295,0,1,1,0,0,0,0,0,56.51,16,6,1,0,0,2,1,0,385,0,0,0 +10513,12888,23519,23520,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.925473502904094,8.785046850635798,0,1,0,-9,27,0,-2,46.86949142885852,0,0,0,52,2,3,1,2,2,2019,1,2,13,1,45,43,15,1,1,1,0,18.87015684158993,18.87015684158993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,10,5,1,912.5,0,0,0 +10513,12888,23520,23519,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,9.226604376730425,9.412616887138755,0,1,0,-9,27,0,2,102.9976561283232,0,0,0,50,2,4,1,2,-9,2019,1,1,11,0,40,37,15,1,0,1,0,30.30248809179503,30.30248809179503,0,0,0,0,0,0,0,0,0,0,3.559693555166142,0,14.41042080841601,3,56.1,49.93,6,1,0,0,10,5,1,912.5,0,0,0 +10513,12889,23521,-9,23520,23519,3,1,1,22,2,0,0,0,2,-9,7,2,0,4,0,5.060558645963159,5.14262908013056,3,0,0,0,-9,0,-944.3213326457267,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,33,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.19944088400166,0,0,0,38.91,60.5,5,1,0,0,10,2,1,1117,0,0,0 +10513,12890,23522,-9,23520,23519,4,1,0,21,2,0,0,1,2,0,7,2,0,4,6.443155933928743,7.176932920529213,6.421811653894221,3,0,0,0,-9,0,-1162.285029771724,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.582435066828984,0,0,0,58.72,51.29,6,1,0,0,10,2,1,262,0,0,0 +10514,12891,23523,23524,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,5,7.999319362053313,8.20836098426526,0,1,0,-9,2,0,3,174.9939115833099,0,0,0,54,2,4,1,3,1,2019,1,2,7,0,41,40,15,1,0,1,0,8.02376791214566,8.02376791214566,0,0,0,0,0,0,0,0,0,0,.5840595313790892,0,0,0,56.47,59.4,7,1,0,0,9,5,1,587,0,0,0 +10514,12891,23524,23523,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,4,9.764767239316122,9.562068924665196,0,1,0,-9,2,0,-3,-33.87048456512705,-9,0,0,57,2,5,1,-9,-9,2019,1,1,9,0,55,0,15,1,1,1,0,30.22673100404452,30.22673100404452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,9,5,1,587,0,0,0 +10515,12892,23525,-9,23527,23526,1,1,0,26,2,0,1,0,2,-9,2,1,0,4,8.831816974084434,8.728349268377388,0,3,0,0,0,-9,0,-982.1848540936751,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,45,35,15,1,0,-9,1,14.17615440307368,14.17615440307368,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.63,51.86,2,3,0,0,8,5,1,31,0,0,0 +10515,12893,23526,23527,-9,-9,2,1,1,53,1,0,1,0,3,-9,2,1,0,4,8.283561676668171,8.046927820706371,0,2,0,-9,9,0,7,-73.10894199624795,0,0,0,46,3,4,3,-9,-9,2019,2,3,9,0,24,40,15,1,1,3,0,14.96043399975886,14.96043399975886,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53,55,6,3,0,0,8,3,1,286.5,0,0,0 +10515,12893,23527,23526,-9,-9,3,1,0,46,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,9,0,-7,-107.7644087996109,0,0,0,53,3,4,1,-9,-9,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,55,6,3,0,0,8,3,1,286.5,0,0,0 +10515,12894,23528,-9,23527,23526,4,1,1,24,2,0,1,0,2,-9,2,1,0,4,8.009300950382206,7.8476316230917,0,3,0,0,0,-9,0,-1090.157063782352,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,35,0,15,1,1,-9,1,7.73616052706303,7.73616052706303,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,5,3,0,0,8,3,1,618,0,0,0 +10515,12895,23529,-9,23527,23526,5,1,0,19,2,0,1,0,2,1,3,3,0,2,0,0,0,3,0,0,0,-9,0,-992.0737136525557,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.75,55.66,4,3,1,0,8,1,1,622,0,0,0 +10516,12896,23530,23531,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,1,0,6.355440857646133,6.018819016393746,1,0,-9,10,0,10,-1.527998530751872,0,0,0,61,2,4,3,-9,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.888887369903814,6.600562748776081,0,0,47.63,33.95,4,1,0,0,9,2,1,511.5,0,0,0 +10516,12896,23531,23530,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,6.722917070368932,6.456157622028114,1,0,-9,40,0,-10,26.25160493402203,0,0,0,71,3,1,3,2,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.22154405546457,6.795591159162255,0,0,50.4,48.51,6,1,0,0,9,2,1,511.5,0,0,0 +10517,12897,23532,-9,23534,23533,4,1,1,17,2,0,0,1,2,0,7,2,0,4,6.873209691827308,7.052735998613618,0,1,0,0,0,-9,0,-930.0762825517262,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,28,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.4357962170313996,0,0,0,40.55,43.66,5,1,0,0,10,5,1,491,0,0,0 +10517,12897,23533,23534,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,3,9.523547015359723,9.234267542200961,0,1,0,-9,26,0,7,-86.90663668859438,0,0,0,47,2,4,3,2,2,2019,2,2,9,0,48,50,15,1,0,3,0,37.13648270256843,37.13648270256843,0,0,0,0,0,0,0,0,0,0,.120601330829147,0,0,0,57.84,34,6,1,0,0,10,5,1,491,0,0,0 +10517,12897,23534,23533,-9,-9,2,1,0,47,1,0,0,0,2,-9,97,3,0,4,0,0,0,1,0,-9,25,0,-7,-1.912799947011951,0,0,0,54,1,3,1,2,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,10,5,1,491,0,0,0 +10517,12898,23535,-9,23534,23533,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,8.300260544639883,8.219021108171381,0,3,0,0,0,-9,0,-964.8590000801561,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,42,35,15,1,0,-9,1,13.56910678149132,13.56910678149132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,10,4,1,253,0,0,0 +10518,12899,23536,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,4,7.239940716261252,8.200778839673891,7.196782026433591,3,0,0,0,-9,0,-989.5722401603424,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,12,15,15,1,0,-9,0,17.07595773431486,17.07595773431486,0,0,0,0,0,0,0,0,0,0,.5472305275208811,7.313319493329352,0,0,58.15,52.91,5,1,0,0,9,4,0,58,0,0,0 +10519,12900,23537,-9,23539,23538,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.716024679484,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,4,1,460.2,0,0,0 +10519,12900,23538,23539,-9,-9,1,1,1,41,1,0,3,0,1,-9,2,1,0,4,9.32897134196636,8.990314865227454,0,2,0,-9,9,0,1,20.02448962725502,0,0,0,40,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,29.2812645539024,29.2812645539024,0,0,0,0,0,0,0,1,1,0,3.639476927626532,0,0,0,57.16,56.15,6,1,0,0,4,4,1,460.2,0,0,0 +10519,12900,23539,23538,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,4,5.797670970852593,6.019020559995056,0,2,0,-9,9,0,-1,-102.1714908816259,0,0,1,41,1,4,1,2,2,2019,1,1,8,0,6,6,15,1,0,1,0,8.088945928906977,8.088945928906977,0,0,0,0,0,0,0,1,1,0,.519273655147493,0,0,0,48.87,58.55,6,1,0,0,4,4,1,460.2,0,0,0 +10519,12900,23540,-9,23539,23538,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.9153589974179,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,460.2,0,0,0 +10519,12900,23541,-9,23539,23538,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.992729758819,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,460.2,0,0,0 +10520,12901,23542,-9,23546,23543,4,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.127911286103,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,681.4,0,0,0 +10520,12901,23543,23546,-9,-9,1,1,1,50,1,0,3,0,1,-9,4,3,0,1,0,7.507930413674059,7.774124259988058,2,0,-9,23,0,5,-112.7762739383654,0,0,0,45,1,4,1,3,3,2019,3,2,18,6,0,0,15,4,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.78868186300906,7.596089405678526,0,0,42.64,25.36,2,1,0,0,5,3,1,681.4,0,0,0 +10520,12901,23544,-9,23546,23543,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.141997352955,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,1,681.4,0,0,0 +10520,12901,23545,-9,23546,23543,3,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.034801393186,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.324770339086255,3,45.29,54.84,4,1,0,0,5,3,1,681.4,0,0,0 +10520,12901,23546,23543,-9,-9,2,1,0,45,1,0,3,0,1,-9,2,1,0,4,8.576425782804328,8.676014289835027,0,2,0,-9,23,0,-5,-68.39389587844398,0,0,0,50,1,1,3,2,2,2019,2,1,9,0,37,23,15,1,0,4,0,13.50315294201685,13.50315294201685,0,0,0,0,0,0,0,1,1,0,0,0,0,1,57.57,43.81,5,1,0,0,5,3,1,681.4,0,0,0 +10521,12902,23547,23548,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,6,-76.63739763365345,0,0,0,76,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,56.95,1,1,0,0,9,2,1,494,0,0,0 +10521,12902,23548,23547,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.650083082213288,6.920421195401678,1,0,-9,8,0,-6,-29.63921047795379,0,0,0,82,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8819662407323252,6.784694159056713,0,0,61.44,32.61,6,1,0,0,9,2,1,494,0,0,0 +10522,12903,23549,23550,-9,-9,2,1,1,32,1,0,0,0,2,-9,2,1,0,4,8.836017295635331,8.897241307722483,0,1,0,-9,1,-9,1,35.88669669444887,-9,0,0,31,2,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,18.37736195387729,18.37736195387729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,57,5,5,0,0,7,5,1,1708.5,0,0,0 +10522,12903,23550,23549,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,3,8.042396051954702,8.553836182487185,0,1,0,1,1,-9,-1,6.360844806238621,0,0,1,32,2,4,1,3,2,2019,1,2,12,1,37,37,15,1,1,1,0,8.558704784810436,8.558704784810436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.04,47.09,5,1,0,0,7,5,1,1708.5,0,0,0 +10523,12904,23551,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,4,0,7.728599111583989,7.352021006170599,3,0,0,0,-9,0,-883.3887803245792,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.529799349498975,7.58579536055773,0,0,58.15,52.91,6,1,0,0,5,3,1,247,0,0,0 +10524,12905,23552,23553,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.009260513473169,8.019502207669552,0,1,0,-9,2,0,6,54.26968131191053,0,1,0,23,2,5,1,-9,-9,2019,1,1,11,0,45,46,15,1,0,1,0,7.464563470205164,7.464563470205164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,0,1384,0,0,0 +10524,12905,23553,23552,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,5,7.777798432675821,8.178309754428701,0,1,0,-9,2,0,-6,-56.22865865574295,0,1,1,29,1,4,1,-9,-9,2019,1,2,3,0,40,45,15,1,0,1,0,7.42555192908353,7.42555192908353,0,0,0,0,0,0,0,0,0,0,7.020884154065498,0,0,0,55.2,57.22,7,1,0,0,9,4,0,1384,0,0,0 +10525,12906,23554,23556,-9,-9,1,1,1,27,1,1,1,0,1,-9,2,1,0,5,8.137885975272731,7.981008362669152,0,2,0,-9,4,0,0,117.2084088420667,0,1,0,27,1,4,1,2,3,2019,1,2,8,0,37,38,15,1,0,1,0,9.911283140263521,9.911283140263521,0,0,0,0,0,0,0,1,1,0,1.502786145576912,0,0,0,54.1,59.11,6,1,0,0,6,4,0,620,0,0,0 +10525,12906,23555,-9,23556,23554,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-958.4664400251805,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,4,0,620,0,0,0 +10525,12906,23556,23554,-9,-9,2,1,0,27,1,1,1,0,1,-9,5,1,0,4,8.154399734667294,7.951079247815381,0,2,0,-9,4,0,0,84.01909890603368,0,1,1,27,1,5,1,-9,-9,2019,1,1,10,1,40,36,15,1,1,1,0,9.42008592334321,9.42008592334321,0,0,0,0,0,0,0,1,1,0,2.739133490675731,0,0,0,55.79,52.62,7,1,0,0,6,4,0,620,0,0,0 +10526,12907,23557,23558,-9,-9,1,1,0,55,1,0,1,0,2,-9,1,1,0,4,5.911602458412485,6.202191244427072,0,2,0,-9,7,0,1,-26.71208852693042,0,0,0,54,2,4,1,1,1,2019,1,2,12,1,18,0,15,1,1,1,0,2.269295404558027,2.269295404558027,0,0,0,0,0,0,0,1,1,0,0,0,11.0480344034039,3,51.84,51.67,5,2,0,0,8,4,1,1698,0,0,0 +10526,12907,23558,23557,-9,-9,2,1,1,54,1,0,1,0,2,-9,1,1,0,4,8.548481202779204,8.413975384064075,0,2,0,-9,7,0,-1,54.80809586929311,0,0,0,55,2,4,1,-9,-9,2019,1,1,9,0,50,45,15,1,1,1,0,13.45099377992461,13.45099377992461,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,8,4,1,1698,0,0,0 +10527,12908,23559,23560,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,35,0,-1,-64.08594722721853,0,0,0,68,2,5,1,2,2,2019,3,1,19,7,0,0,15,4,7,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,39.08,30.89,3,1,0,0,8,2,0,1069,0,0,0 +10527,12908,23560,23559,-9,-9,1,1,0,68,1,0,0,0,2,-9,2,1,0,5,6.932247815059633,6.765268439900624,0,1,0,-9,35,0,1,45.52270195133845,0,0,0,67,2,2,3,3,3,2019,2,2,7,0,11,0,15,1,0,4,0,8.062264190440947,8.062264190440947,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,8,2,0,1069,0,0,0 +10528,12909,23561,-9,23562,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-890.976818688704,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,8,2,0,505.5,0,0,0 +10528,12909,23562,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,2,1,0,2,7.177632130402364,6.982032140342969,0,4,0,0,0,-9,0,-1046.607224844799,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,24,7,35,16,15,1,7,-9,0,3.667043360822916,3.667043360822916,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.8,56.84,1,4,0,0,8,2,0,505.5,0,0,0 +10529,12910,23563,23564,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,7.71445284297039,7.609988031062936,1,0,-9,56,0,0,33.67465178501904,0,0,0,75,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.905680532729372,7.960747449243246,0,0,60.3,49.25,7,1,0,0,4,3,1,455,0,0,0 +10529,12910,23564,23563,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,0,-2.806199658574799,0,0,0,75,2,4,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.196391334312148,0,6.560141710761806,3,34.91,41.69,6,1,0,0,4,3,1,455,0,0,0 +10530,12911,23565,23566,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,1,0,7.915221974068819,7.851822326228861,1,0,-9,11,0,1,-65.57902937774226,0,0,0,62,1,3,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.151192614628263,0,0,52.73,9.859999999999999,3,1,0,0,5,4,1,753,0,0,0 +10530,12911,23566,23565,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,7.167010498587342,6.952270463825613,1,0,-9,42,0,-1,-9.35527644243016,0,0,0,63,1,1,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.872050479839063,6.698535726421619,46.39309603571888,2,53,40.54,4,1,0,0,5,4,1,753,0,0,0 +10530,12912,23567,-9,23566,23565,3,1,1,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1054.001465159732,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,5,1,1,1229,0,0,0 +10531,12913,23568,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,3,8.122058617644637,8.313984244186342,0,3,0,0,0,-9,0,-1031.766666273661,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,38,53,15,1,0,-9,0,11.51006804063662,11.51006804063662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.4,56.24,3,3,0,0,6,4,1,202,0,0,0 +10532,12914,23569,23570,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.804382925470911,8.221975576861341,0,1,0,-9,44,0,-2,-21.56369810096322,0,0,0,65,2,1,3,3,3,2019,2,1,14,3,25,30,15,1,3,4,0,11.98926242117581,11.98926242117581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.51,54.26,6,1,0,0,7,3,1,1016.5,0,0,0 +10532,12914,23570,23569,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,44,0,2,100.0809403497015,0,0,0,63,2,3,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.89760317906017,3,53.31,27.33,7,1,0,0,7,3,1,1016.5,0,0,0 +10533,12915,23571,23572,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.429657968367456,8.248188366453592,0,1,0,-9,4,0,0,-5.685571589698345,0,0,1,30,2,3,1,-9,-9,2019,1,1,6,0,37,40,15,1,0,1,0,11.05298695726649,11.05298695726649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,6,1,0,0,4,5,1,499.5,0,0,0 +10533,12915,23572,23571,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,3,8.18044814029864,8.244072453669856,0,1,0,-9,4,0,0,47.3170881832377,0,0,0,30,1,4,1,2,2,2019,1,2,5,0,40,39,15,1,0,1,0,11.75515792817738,11.75515792817738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,2,0,0,4,5,1,499.5,0,0,0 +10534,12916,23573,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,4,8.572053442517994,8.412291559605396,0,3,0,0,0,-9,0,-1139.528631668144,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,41,42,15,1,1,-9,0,15.70616754153287,15.70616754153287,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,56.11,5,1,0,0,10,5,1,933,0,0,0 +10535,12917,23574,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,6.611493855820211,6.337729619542972,3,0,0,0,-9,0,-919.9615044490392,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.188587197017592,6.388420027738296,0,0,51.77,58.57,6,1,0,0,4,2,1,855,0,0,0 +10536,12918,23575,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,4,0,8.123493108999435,7.845933260583184,3,0,0,0,-9,0,-917.9646223012423,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.363283822359,7.868343721649103,0,0,50.4,55.04,6,1,0,0,8,4,1,847,0,0,0 +10537,12919,23576,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-834.8449157722407,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,28,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.19,33.41,2,1,0,0,1,1,0,651,0,0,0 +10538,12920,23577,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,4,7.191720304368944,7.116621189716351,0,3,0,-9,0,1,0,-1075.052584139029,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,22,15,1,0,-9,0,7.378152698556222,7.378152698556222,0,0,0,0,0,0,0,1,1,0,6.129170700666449,0,0,0,60.28,46.44,7,1,0,0,7,2,0,239,0,0,0 +10538,12921,23578,-9,-9,-9,2,1,1,71,3,0,0,0,1,-9,4,3,0,4,0,6.151656390842263,6.346374122626322,3,0,-9,0,1,0,-866.6143405573113,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.262804817177996,0,0,58.75,51.28,7,1,0,0,7,2,0,850,0,0,0 +10539,12922,23579,23580,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,3,8.241960649698889,8.364810881843757,0,2,0,-9,10,0,-8,-64.18263785593388,0,0,1,44,2,2,1,2,2,2019,1,2,8,1,34,30,15,1,1,1,0,11.1507562047433,11.1507562047433,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.55,45.59,5,1,0,0,4,3,1,1892,0,0,0 +10539,12922,23580,23579,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,2,0,0,0,2,0,-9,10,0,8,-92.02743187429073,0,0,0,36,1,3,1,2,-9,2019,1,1,7,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,42.12,6,1,0,0,4,3,1,1892,0,0,0 +10539,12922,23581,-9,23579,23580,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.6927150016527,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,3,1,1892,0,0,0 +10540,12923,23582,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,2,1,0,3,8.983655944352998,9.216740413170019,4.152335683051604,3,0,0,0,-9,0,-1055.536756223922,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,48,40,15,1,2,-9,0,18.75728532267193,18.75728532267193,0,0,0,0,0,0,0,0,0,0,4.303277214770673,0,0,0,53.11,47.09,6,1,0,0,4,5,1,348,0,0,0 +10541,12924,23583,-9,-9,-9,1,1,1,58,3,0,0,0,1,-9,2,1,0,4,9.818635144695349,9.433970152935945,0,3,0,0,0,-9,0,-1124.83738455817,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,47,47,15,1,0,-9,0,43.33084853345542,43.33084853345542,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,12,5,0,1051,0,0,0 +10542,12925,23584,23585,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,5,8.24459063622287,8.363030700451809,0,2,0,-9,5,0,-1,-49.29710042081305,0,0,0,50,2,4,1,3,2,2019,1,1,7,0,41,40,15,1,0,1,0,12.67394986616046,12.67394986616046,0,0,0,0,0,0,0,1,1,0,.9107125346746322,0,0,0,59.43,58.05,6,4,0,0,4,4,1,457,0,0,0 +10542,12925,23585,23584,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,4,8.011335065673718,8.160968617658824,0,2,0,-9,5,0,1,60.33619403062587,0,0,0,49,2,5,1,3,3,2019,1,2,10,0,35,40,15,1,0,1,0,11.70471767681622,11.70471767681622,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.44,45.04,4,4,0,1,4,4,1,457,0,0,0 +10542,12926,23586,-9,23585,23584,5,1,1,24,2,0,2,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-971.6112645835118,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.36,61,4,4,1,1,4,1,1,227,0,0,0 +10543,12927,23587,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,1,1,0,2,7.539928669920797,7.392513042001196,0,3,0,0,0,-9,0,-909.7820112528376,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,11,1,32,20,15,1,1,-9,0,7.739769842421858,7.739769842421858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.75,53.18,6,1,0,0,4,3,0,1388,0,0,0 +10544,12928,23588,-9,23589,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,5,8.204039013115144,8.316578598978971,0,3,0,0,0,-9,0,-1113.803966841423,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,60,30,15,1,0,-9,1,7.335874236924736,7.335874236924736,0,0,0,0,0,0,0,0,0,0,3.19181148396008,0,0,0,52.32,57.18,7,1,0,0,7,4,1,310,0,0,0 +10544,12929,23589,-9,-9,-9,2,1,0,56,2,0,0,0,2,-9,2,1,0,3,7.452309681181381,7.436133059770877,0,3,0,0,0,-9,0,-1051.42979869728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,30,30,15,1,9,-9,0,7.455278594774792,7.455278594774792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.8,50.31,5,1,0,0,7,3,1,397,0,0,0 +10545,12930,23590,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-886.2010632027083,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,38,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.52435025969153,3,46.63,59.72,5,1,0,0,8,1,0,403,0,0,0 +10546,12931,23591,23592,-9,-9,1,1,0,50,1,0,2,0,2,-9,6,3,0,2,0,5.964078968547702,6.485415724096506,2,0,-9,3,0,7,-110.1114686854779,0,0,0,43,2,3,1,-9,3,2019,3,4,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.848483582540709,0,6.794924666396471,3,42.7,30.41,3,1,0,0,7,3,0,789,0,0,0 +10546,12931,23592,23591,-9,-9,4,1,1,43,1,0,2,0,2,-9,2,1,0,3,7.980621954052162,8.226855034281183,0,2,0,-9,3,0,-7,22.3571872253877,0,0,0,50,2,2,3,-9,-9,2019,2,1,12,0,42,35,15,1,0,3,0,10.51481886979269,10.51481886979269,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,51.32,5,1,0,0,7,3,0,789,0,0,0 +10546,12931,23593,-9,23591,23592,2,1,0,16,2,0,2,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-996.6639900628833,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6735360401402746,0,0,0,32.52,54.28,3,1,0,0,7,3,0,789,0,0,0 +10546,12931,23594,-9,23591,23592,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1128.507552483825,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,3,0,789,0,0,0 +10547,12932,23595,-9,23596,23598,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.2504951359929,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,13,5,1,1181,0,0,0 +10547,12932,23596,23598,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,3,7.764147386478106,7.195159698934107,0,2,0,-9,9,0,2,-66.3783768488271,0,0,1,38,1,5,1,-9,-9,2019,1,1,11,1,20,20,15,1,1,1,0,14.26880891213828,14.26880891213828,0,0,0,0,0,0,0,0,0,0,1.20236124252736,0,0,0,43.73,55.44,6,1,0,0,13,5,1,1181,0,0,0 +10547,12932,23597,-9,23596,23598,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.263695821321,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,13,5,1,1181,0,0,0 +10547,12932,23598,23596,-9,-9,1,1,1,38,1,0,3,0,1,-9,2,1,0,5,9.435711498278287,9.217115989485629,0,2,0,-9,9,0,-2,-21.80610233689811,0,0,0,40,1,3,1,-9,-9,2019,1,2,6,1,40,37,15,1,1,1,0,24.08073963554813,24.08073963554813,0,0,0,0,0,0,0,0,0,0,2.020700931785384,0,0,0,46.34,61.24,6,1,0,0,13,5,1,1181,0,0,0 +10547,12932,23599,-9,23596,23598,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.87427316623,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,13,5,1,1181,0,0,0 +10548,12933,23600,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1068.623356140592,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,6,1,0,435,0,0,0 +10549,12934,23601,23602,-9,-9,1,1,1,30,1,1,2,0,1,-9,2,1,0,4,9.172940047563133,8.7143579759733,0,2,0,-9,8,0,0,63.31402564440753,0,0,0,30,1,4,3,2,2,2019,2,2,7,1,40,45,15,1,1,3,0,32.61810169713973,32.61810169713973,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,5,1,0,0,12,4,1,645,0,0,0 +10549,12934,23602,23601,-9,-9,2,1,0,30,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,8,0,0,-22.88678667000367,0,0,1,30,1,4,1,1,2,2019,3,1,23,8,0,30,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.67,70.23999999999999,5,1,0,0,12,4,1,645,0,0,0 +10549,12934,23603,-9,23602,23601,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1162.782610909114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,645,0,0,0 +10549,12934,23604,-9,23602,23601,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.862494193166,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,4,1,645,0,0,0 +10550,12935,23605,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,3,8.175502122125279,8.147318594111248,0,3,0,0,0,-9,0,-861.8080891225188,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,82,15,1,0,-9,0,8.481005238292681,8.481005238292681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,47.98,6,1,0,0,4,4,1,513,0,0,0 +10551,12936,23606,23608,-9,-9,1,1,0,57,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,22,0,12,-116.0867564579094,0,0,0,45,3,4,1,3,-9,2019,3,2,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.91313327187492,0,0,0,44.13,59.37,6,1,1,0,8,3,1,540.3333333333334,0,0,0 +10551,12936,23607,-9,23606,23608,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.715628965763,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,5,0,0,8,3,1,540.3333333333334,0,0,0 +10551,12936,23608,23606,-9,-9,2,1,1,45,1,0,1,0,3,-9,2,1,0,4,8.829520683579712,8.696123269020799,0,2,0,-9,7,0,-12,90.56313548718711,0,0,0,57,2,3,3,-9,-9,2019,2,1,9,0,72,40,15,1,1,3,0,7.709626161262475,7.709626161262475,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,2,0,0,8,3,1,540.3333333333334,0,0,0 +10552,12937,23609,23610,-9,-9,2,1,0,56,1,0,0,0,1,-9,6,3,0,2,0,6.632495588994509,6.543487401599368,1,0,-9,23,0,-1,130.1249092399141,0,0,0,57,1,3,1,2,2,2019,3,1,7,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.957096774506189,0,0,0,51.24,32.41,7,1,0,0,7,5,1,944.5,0,0,0 +10552,12937,23610,23609,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,3,8.772450570488422,9.123386999570599,0,1,0,-9,23,0,1,-86.97408329101681,0,0,0,56,1,2,3,2,1,2019,2,2,6,1,42,43,15,1,1,3,0,16.87366922787858,16.87366922787858,0,0,0,0,0,0,0,0,0,0,1.853795194170689,0,0,0,47.59,44.1,6,1,0,0,7,5,1,944.5,0,0,0 +10553,12938,23611,23612,-9,-9,1,1,0,55,1,0,0,0,1,-9,1,1,0,4,9.465759638595593,9.661454275643472,0,1,0,-9,2,0,6,-152.2779587169333,0,0,0,49,3,2,1,2,2,2019,1,3,10,0,18,12,15,1,0,1,0,75.88482800268066,75.88482800268066,0,0,0,0,0,0,0,1,1,0,6.528541651113958,0,110.364813127828,3,54.2,57.49,6,1,0,0,11,5,1,654,0,0,0 +10553,12938,23612,23611,-9,-9,3,1,1,49,1,0,0,0,3,-9,2,1,0,2,8.088202312665137,7.837043770715693,0,1,0,-9,2,0,-6,72.14571406220794,0,0,0,55,1,4,1,-9,-9,2019,1,1,14,2,36,40,15,1,2,1,0,8.04333180035918,8.04333180035918,0,0,0,0,0,0,0,1,1,0,0,0,3.301011985419257,3,43.62,45.15,3,1,0,0,11,5,1,654,0,0,0 +10553,12939,23613,-9,23611,-9,4,1,0,28,2,0,0,0,2,-9,7,2,0,4,7.272353131272776,7.148506528387213,0,3,0,0,0,-9,0,-1041.538258080844,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,6,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,1,0,0,11,2,1,162,0,0,0 +10553,12940,23614,-9,-9,-9,5,1,0,45,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,-9,0,-9,0,-1018.128813036634,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,11,1,1,272,0,0,0 +10553,12941,23615,-9,-9,-9,2,1,1,23,2,0,0,1,3,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1103.945786263218,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.764829805427061,0,0,0,49,58,5,1,0,0,11,1,1,914,0,0,0 +10554,12942,23616,23617,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,4,0,6.990321598261709,6.739984198715455,1,0,-9,41,0,-1,-33.36630292350434,0,0,0,60,1,2,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.603328973302953,7.169932557514969,0,0,40.77,61.04,6,1,0,0,9,2,1,1379.5,0,0,0 +10554,12942,23617,23616,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,41,0,1,72.56954899413134,0,0,0,59,1,4,3,2,3,2019,4,1,8,0,0,9,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.486141323891651,0,0,0,32.38,47.75,5,1,0,0,9,2,1,1379.5,0,0,0 +10555,12943,23618,23619,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,5.488696692956361,5.659883877707248,1,0,-9,8,0,1,-74.37312566477863,0,0,0,80,3,1,3,-9,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,7.887076849437683,0,0,0,0,1,1,0,0,5.651633596186093,0,0,55.21,11.56,6,1,0,0,7,2,1,1152,0,0,0 +10555,12943,23619,23618,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,1,0,5.755159559120333,5.983963641703217,1,0,-9,8,0,-1,18.8031186606979,-9,0,0,81,3,2,3,-9,-9,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.205341936184461,0,0,0,44.5,24.45,4,1,0,0,7,2,1,1152,0,0,0 +10556,12944,23620,23621,-9,-9,1,1,1,45,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,5,0,13,0,0,0,0,32,1,4,3,2,2,2019,4,2,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.68,31.58,4,1,0,0,2,1,0,1416.5,0,0,0 +10556,12944,23621,23620,-9,-9,2,1,0,32,1,0,0,0,1,-9,97,3,0,4,0,0,0,1,0,-9,5,0,-13,0,0,0,1,45,2,2,3,-9,-9,2019,4,1,32,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.59429001318316,3,30.24,39.99,3,1,0,0,2,1,0,1416.5,0,0,0 +10557,12945,23622,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,5,7.900045401661701,7.595356989580562,0,3,0,-9,0,-9,0,-927.7981899033446,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,77,0,15,1,0,-9,0,4.354745569613285,4.354745569613285,0,0,0,0,0,0,0,0,0,0,1.013128317199045,0,0,0,43,60.68,6,1,0,0,1,4,1,730,0,0,0 +10557,12946,23623,-9,-9,-9,2,1,0,51,2,0,0,0,2,-9,2,1,0,4,9.790368297724145,9.452260072282662,0,3,0,-9,0,-9,0,-990.3805612217129,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,90,0,15,1,1,-9,0,15.82283505492621,15.82283505492621,0,0,0,0,0,0,0,0,0,0,6.806271103462086,0,0,0,52.23,55.6,4,1,0,0,1,5,1,227,0,0,0 +10558,12947,23624,23625,23626,23627,3,1,1,21,1,0,0,0,2,-9,2,1,0,3,7.930124525373687,8.015035520003444,0,1,0,-9,2,0,-1,141.5380347206664,0,1,0,22,2,2,1,2,2,2019,1,1,9,1,37,37,15,1,1,1,0,6.947248764298274,6.947248764298274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,5,1,0,0,1,3,0,590,0,0,0 +10558,12947,23625,23624,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,2,7.132863662708003,7.212448555765545,0,1,0,-9,2,0,1,-57.47883845623748,0,1,1,21,2,3,1,2,2,2019,1,3,5,0,25,12,15,1,0,1,0,6.306889848601836,6.306889848601836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.13,44.29,7,1,0,0,1,3,0,590,0,0,0 +10558,12948,23626,23627,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,4,7.316210117694042,7.492581475597444,0,1,0,1,1,-9,-1,171.1768303284421,0,0,0,49,2,4,1,-9,-9,2019,1,5,4,0,35,28,15,1,0,1,0,6.640431043041991,6.640431043041991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,6,1,0,0,1,5,0,272.5,0,0,0 +10558,12948,23627,23626,-9,-9,5,1,1,49,1,0,0,0,2,-9,2,1,0,4,9.817378977070124,9.633857314885837,0,1,0,-9,1,-9,1,-4.725020395183792,-9,0,0,48,2,4,1,-9,-9,2019,1,2,9,0,40,0,15,1,1,1,0,44.7318869247942,44.7318869247942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,5,1,0,0,1,5,0,272.5,0,0,0 +10559,12949,23628,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,3,8.17208718033474,7.98779352201789,0,3,0,0,0,-9,0,-1016.803035572936,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,35,45,15,1,0,-9,0,9.292193856232702,9.292193856232702,0,0,0,0,0,0,0,0,0,0,.4075248153585002,0,0,0,54.37,54.8,6,3,0,0,8,4,0,1278,0,0,0 +10560,12950,23629,-9,-9,-9,2,1,0,62,3,0,0,0,2,-9,8,3,1,2,0,6.275128376483845,6.236821092230541,3,0,0,0,-9,0,-1042.008870294067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0538073733088619,6.590537706151326,0,0,45,38,4,1,0,0,6,2,1,259,0,0,0 +10561,12951,23630,-9,-9,-9,1,1,0,76,2,0,0,0,2,-9,4,3,0,2,0,7.285347226851692,7.678368521829619,3,0,0,0,-9,0,-1022.91832242447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.53577916151928,7.090140579944455,0,0,62.83,33.62,6,3,0,0,8,3,1,522,0,0,0 +10562,12952,23631,23632,-9,-9,2,1,0,25,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,2,0,-1,70.66072955560914,0,1,1,26,3,3,1,-9,-9,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.75,41.7,1,1,0,0,1,2,0,525,0,0,0 +10562,12952,23632,23631,-9,-9,1,1,1,26,1,0,0,0,3,-9,2,1,0,3,6.683102445176394,6.495493296031393,0,1,0,-9,2,0,1,2.72287006005301,0,1,0,25,3,1,3,2,3,2019,2,2,10,2,16,35,15,1,2,3,0,5.482953764136878,5.482953764136878,0,0,0,0,0,0,0,1,1,0,0,0,6.116354870711637,2,42.83,53.59,3,1,0,0,1,2,0,525,0,0,0 +10563,12953,23633,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,3,8.136255786007784,7.906455546049829,0,3,0,-9,0,1,0,-942.8635886118238,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,40,44,15,1,4,-9,0,9.696634370849257,9.696634370849257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.49,48.17,4,1,0,0,11,4,0,136,0,0,0 +10564,12954,23634,-9,-9,-9,1,1,0,77,2,0,0,0,1,-9,4,3,0,3,0,7.419985726670341,7.572138969935482,3,0,-9,0,-9,0,-993.4522148710384,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.481441370776725,7.395018463068139,0,0,55.96,49.93,7,1,0,0,12,3,1,1075,0,0,0 +10565,12955,23635,23636,-9,23637,1,1,1,25,1,1,1,0,1,-9,2,1,0,4,0,0,0,2,0,1,1,-9,0,0,0,1,0,25,1,3,1,3,3,2019,1,6,12,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,3,0,0,8,1,1,892,0,0,0 +10565,12955,23636,23635,-9,-9,6,1,0,25,1,1,1,0,1,-9,2,1,0,3,0,0,0,2,0,-9,1,-9,0,0,-9,1,1,25,1,4,1,-9,-9,2019,1,1,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,53,5,3,0,0,8,1,1,892,0,0,0 +10565,12956,23637,-9,-9,-9,2,1,1,68,3,1,1,0,2,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-1037.740190625248,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,37,5,3,0,0,8,1,1,3668,0,0,0 +10565,12957,23638,-9,23639,-9,7,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1092.249427986637,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,8,1,1,978,0,0,0 +10565,12957,23639,-9,-9,23637,3,1,0,26,2,1,1,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-975.3202132373325,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,20,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,53,5,3,0,0,8,1,1,978,0,0,0 +10565,12958,23640,-9,-9,23637,4,1,1,22,2,1,1,0,2,-9,2,1,0,4,7.405859674880869,7.324650497627924,0,3,0,0,0,-9,0,-990.0804517817697,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,15,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,57.72,4,3,0,0,8,3,1,294,0,0,0 +10565,12959,23641,-9,-9,23637,5,1,0,22,2,1,1,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1011.811610361605,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,40,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.803980742574856,0,0,0,51.16,44.72,6,3,1,0,8,1,1,553,0,0,0 +10566,12960,23642,23643,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,6.955308295281867,7.194345850149197,1,0,-9,9,0,6,149.5879745222703,0,0,0,77,2,2,3,1,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.812387750558474,6.711952578862173,0,0,45.97,49.2,6,1,0,0,12,2,1,304,0,0,0 +10566,12960,23643,23642,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-6,60.5118841993742,0,0,0,83,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.830670614136314,0,0,0,53.86,43.07,5,1,0,0,12,2,1,304,0,0,0 +10567,12961,23644,-9,-9,-9,1,1,1,31,2,1,2,0,1,-9,2,1,0,4,8.74407298393041,9.151241599210486,0,4,0,-9,0,0,0,-974.7233426731577,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,60,15,1,0,-9,0,14.6192985603348,14.6192985603348,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.99,46.12,6,1,0,0,4,4,1,444.5,0,0,0 +10567,12961,23645,-9,-9,23644,2,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1027.273018467711,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,444.5,0,0,0 +10567,12962,23646,23647,-9,-9,4,1,1,31,1,1,2,0,1,-9,2,1,0,4,8.567565852381223,8.609225941541011,0,2,0,-9,5,0,2,-23.70942524475035,0,0,0,29,1,4,1,-9,-9,2019,1,3,17,6,49,45,15,1,6,1,0,14.34438300452178,14.34438300452178,0,0,0,0,0,0,0,1,1,0,3.99019487648516,0,0,0,42.05,58.8,6,1,0,0,4,5,1,1011.333333333333,0,0,0 +10567,12962,23647,23646,-9,-9,3,1,0,29,1,1,2,0,1,-9,2,1,0,4,8.52582177566684,9.006671886097863,0,2,0,-9,5,0,-2,-2.055170888698798,0,1,1,31,1,4,1,2,2,2019,1,4,12,0,37,37,15,1,0,1,0,14.68612985207855,14.68612985207855,0,0,0,0,0,0,0,1,1,0,.3856876830593422,0,0,0,51.24,58.84,6,1,0,0,4,5,1,1011.333333333333,0,0,0 +10567,12962,23648,-9,23647,23646,5,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.730337433353,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,1011.333333333333,0,0,0 +10568,12963,23649,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,4,0,6.502732837583554,6.608131338996906,3,0,0,0,-9,0,-1019.838683019223,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,60.46914350321977,1,1,0,0,6.666211274774455,0,0,40.47,46.24,7,1,0,0,6,2,1,8845,0,0,0 +10569,12964,23650,23651,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,1,0,4.032738420728485,4.215368125253819,1,0,-9,7,0,9,-61.91381761334324,0,0,0,73,3,2,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,18.1736869650862,0,0,0,0,1,1,0,.1639956212277381,3.958586377811972,0,0,38.21,16.73,4,1,0,0,9,1,1,424,0,0,0 +10569,12964,23651,23650,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,3.929173483601017,4.043756744413395,1,0,-9,7,0,0,29.57149190752347,0,0,0,82,2,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,4.739508270512493,0,0,0,0,1,1,0,3.933264538329947,3.567188484143948,73.56685832792652,1,40.26,26.75,5,1,0,0,9,1,1,424,0,0,0 +10570,12965,23652,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,7.551602223844009,7.196853446619257,3,0,0,0,-9,0,-1045.609970540219,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.277876040359287,7.041251327138554,0,0,57.73,54.53,6,1,0,0,12,3,1,389,0,0,0 +10571,12966,23653,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,2,7.40616550862865,7.959911431806654,0,4,0,0,0,-9,0,-1050.428542729347,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,11,30,30,15,1,11,-9,0,8.785010843877602,8.785010843877602,0,0,0,0,0,0,0,1,1,0,0,0,79.4306174837576,3,15.72,50.17,4,3,0,0,2,2,1,412.3333333333333,0,0,0 +10571,12966,23654,-9,23653,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1075.776773181315,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,2,2,1,412.3333333333333,0,0,0 +10571,12966,23655,-9,23653,-9,2,1,0,17,2,0,2,0,2,1,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1136.040013663131,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.07,27.63,1,3,0,0,2,2,1,412.3333333333333,0,0,0 +10572,12967,23656,23657,-9,-9,2,1,1,44,1,0,0,0,3,-9,2,1,0,3,7.256015180828418,7.447854134533639,0,1,0,-9,7,0,-13,-17.93302819105699,0,0,0,57,3,1,1,3,3,2019,1,1,5,1,35,15,15,1,1,1,0,5.271434380122128,5.271434380122128,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.89,44.07,2,4,0,0,6,3,0,424.5,0,0,0 +10572,12967,23657,23656,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,1,7.07294133210506,7.551921399386677,0,1,0,-9,8,0,13,-17.14231817751418,0,0,0,44,3,3,1,3,3,2019,1,2,20,6,28,25,15,1,6,1,0,4.628973325013623,4.628973325013623,0,0,0,0,0,0,0,1,1,0,0,0,0,3,37.6,14.31,1,1,0,0,6,3,0,424.5,0,0,0 +10573,12968,23658,23659,-9,-9,2,1,0,35,1,0,3,0,1,-9,3,3,0,1,0,0,0,2,0,-9,15,0,-5,-48.29319841499868,0,0,1,40,1,3,1,2,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9826846384244903,0,0,0,35.48,28.6,5,3,1,1,7,3,0,1117.75,0,0,0 +10573,12968,23659,23658,-9,-9,1,1,1,40,1,0,3,0,1,-9,2,1,0,3,8.512704958085823,8.57249447817073,0,2,0,-9,15,0,5,53.4258621901309,0,0,0,35,1,1,3,3,1,2019,2,2,12,0,37,37,15,1,0,3,0,19.00614826056841,19.00614826056841,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.7,49.18,5,3,0,1,7,3,0,1117.75,0,0,0 +10573,12968,23660,-9,23658,23659,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.046396771165,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,3,0,0,7,3,0,1117.75,0,0,0 +10573,12968,23661,-9,23658,23659,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.725406958586,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,7,3,0,1117.75,0,0,0 +10574,12969,23662,-9,23663,23664,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.0733309405744,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,13,5,1,1172.25,0,0,0 +10574,12969,23663,23664,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.707225462639389,7.579992715619765,0,2,0,-9,16,0,0,53.15256649016032,0,0,1,42,2,4,1,2,2,2019,1,2,12,0,22,22,15,1,0,1,0,8.848103489458257,8.848103489458257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,45.34,5,1,0,0,13,5,1,1172.25,0,0,0 +10574,12969,23664,23663,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,9.381047400256255,8.898859640829858,0,2,0,-9,7,0,0,-10.02135748762718,0,0,0,42,2,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,26.22350074625702,26.22350074625702,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,13,5,1,1172.25,0,0,0 +10574,12969,23665,-9,23663,23664,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.0115910985085,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,5,1,1172.25,0,0,0 +10575,12970,23666,23667,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,61,0,5,0,0,0,0,80,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.664507073101908,0,0,0,55,45,6,1,0,0,11,1,1,402,0,0,0 +10575,12970,23667,23666,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,61,0,-5,0,0,0,0,85,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,5.097915930574219,0,0,0,0,1,1,0,2.240508473846881,0,0,0,60.53,48.35,7,1,0,0,11,1,1,402,0,0,0 +10576,12971,23668,23669,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,5.396565769197952,5.531698276151434,1,0,-9,9,0,-8,9.979396619807538,0,0,0,69,2,2,3,2,2,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.185852759756599,5.416322734699983,0,0,42.61,49.31,6,1,0,0,10,3,1,890.5,0,0,0 +10576,12971,23669,23668,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,7.909010079173241,7.985947327066237,1,0,-9,9,0,8,9.249713414325987,0,0,0,61,2,3,3,2,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.725699255397436,7.477959836686772,0,0,43.68,40.74,6,1,0,0,10,3,1,890.5,0,0,0 +10577,12972,23670,23671,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,57,0,-2,-49.95266946690192,0,0,0,76,2,3,3,3,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.848741054452118,0,1.555240248562154,3,47,36,6,1,0,0,10,2,1,241,0,0,0 +10577,12972,23671,23670,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.818239919391019,6.982890561840498,1,0,-9,57,0,2,50.47646068011161,0,0,0,74,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.476892721766017,7.002325025635328,0,3,52,54.51,5,1,0,0,10,2,1,241,0,0,0 +10578,12973,23672,-9,23673,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1115.818317193125,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,2,1,540,0,0,0 +10578,12973,23673,-9,-9,-9,1,1,0,42,2,0,1,0,1,-9,3,3,0,5,0,6.69378228416632,6.757767389666691,4,0,0,0,-9,0,-1038.129726024852,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1694916977875,0,0,0,62.39,56.71,6,1,1,0,8,2,1,540,0,0,0 +10579,12974,23674,23675,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,4,7.713982800921726,8.43302088169003,8.134342283918746,2,0,-9,33,0,-6,93.6764137408307,0,0,0,59,1,4,3,-9,-9,2019,2,2,7,0,26,23,15,1,0,4,0,9.272219868052515,9.272219868052515,0,0,0,0,0,0,0,1,1,0,3.751497633476811,7.690330234186519,0,0,48.28,60.18,6,1,0,0,8,3,1,543.5,0,0,0 +10579,12974,23675,23674,-9,-9,2,1,1,59,1,0,2,0,1,-9,4,3,0,4,0,0,0,2,0,-9,33,0,6,-47.83606530422636,0,0,0,53,2,4,1,3,3,2019,3,1,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,6,1,0,0,8,3,1,543.5,0,0,0 +10579,12974,23676,-9,23674,23675,4,1,0,17,2,0,2,1,2,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-957.4985781780961,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.11,56.3,2,1,0,0,8,3,1,543.5,0,0,0 +10579,12974,23677,-9,23674,23675,5,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.7794584951846,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,3,1,543.5,0,0,0 +10579,12975,23678,-9,23674,23675,3,1,0,24,2,0,2,0,1,-9,2,1,0,4,8.186970059090152,8.304257636294528,0,3,0,0,0,-9,0,-916.5006880153378,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,4,36,39,15,1,4,-9,1,12.36903251750577,12.36903251750577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.76,55.12,6,1,0,0,8,4,1,1005,0,0,0 +10580,12976,23679,23680,-9,-9,1,1,0,59,1,0,0,0,1,-9,4,3,0,1,0,7.794571729306097,7.295839189508849,1,0,-9,10,0,-2,-51.95799623482226,0,0,0,61,3,3,1,3,3,2019,3,2,14,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.322212697482791,13.72262557927485,3,26.81,27.18,3,1,0,0,5,4,1,1364.5,0,0,0 +10580,12976,23680,23679,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,3,8.455477562377389,7.942973094708947,0,1,0,-9,10,0,2,109.2355971193987,0,0,0,59,1,1,3,3,3,2019,2,1,10,0,38,39,15,1,1,4,0,13.58097793016584,13.58097793016584,0,0,0,0,0,0,0,1,1,0,5.766985192543896,0,0,1,50,49,5,1,0,0,5,4,1,1364.5,0,0,0 +10581,12977,23681,23682,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.40509191401614,8.337059248578374,1,0,-9,44,0,2,25.47517281860553,0,0,0,69,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.620918925577772,0,0,54.79,55.86,6,1,0,0,9,4,1,629.5,0,0,0 +10581,12977,23682,23681,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.72385190191754,8.023446640454763,1,0,-9,44,0,-2,25.42922492609723,0,0,0,71,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.146532381824326,8.225577585794095,0,0,57.16,56.15,7,1,0,0,9,4,1,629.5,0,0,0 +10582,12978,23683,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,4,0,5.33085339987799,5.631249765596407,3,0,0,0,-9,0,-956.5573484866734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.639316861531564,0,0,57.16,56.15,7,1,0,0,1,2,1,382,0,0,0 +10583,12979,23684,-9,23689,23687,5,1,1,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1139.569831429817,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,9,2,0,643.6666666666666,0,0,0 +10583,12979,23685,-9,23689,23687,2,1,0,8,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.377514672036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,9,2,0,643.6666666666666,0,0,0 +10583,12979,23686,-9,23689,23687,6,1,1,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1008.93594486816,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,9,2,0,643.6666666666666,0,0,0 +10583,12979,23687,23689,-9,-9,4,1,1,37,1,2,4,0,2,-9,1,1,0,4,7.821057121112667,7.496052273909418,0,2,0,-9,6,0,3,-63.11054219064258,0,0,0,34,2,3,3,-9,-9,2019,2,1,10,0,40,55,15,1,1,3,0,5.217299574273895,5.217299574273895,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,57,5,1,0,0,9,2,0,643.6666666666666,0,0,0 +10583,12979,23688,-9,23689,23687,3,1,0,7,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.004548379902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,9,2,0,643.6666666666666,0,0,0 +10583,12979,23689,23687,-9,-9,1,1,0,34,1,2,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-3,-65.04656964117986,0,0,1,37,2,4,1,2,3,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.94,54.95,5,1,0,1,9,2,0,643.6666666666666,0,0,0 +10584,12980,23690,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1102.349781937411,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.85,39.2,5,1,0,0,7,1,1,595,0,0,0 +10585,12981,23691,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,4,7.563362477415826,7.246554965475696,0,3,0,-9,0,-9,0,-1047.224526076457,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,23,24,15,1,0,-9,0,9.274211381845838,9.274211381845838,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,11,3,0,535,0,0,0 +10586,12982,23692,23693,-9,-9,1,1,0,52,1,0,0,0,3,-9,6,3,0,5,0,0,0,1,0,-9,35,0,-4,.7613192896198022,0,0,0,56,2,4,1,3,3,2019,3,2,21,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.78,45.75,3,3,0,0,9,4,1,613,0,0,0 +10586,12982,23693,23692,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.949931181358657,8.704811703556118,0,1,0,-9,6,0,4,-87.51074238377851,0,0,0,52,3,5,3,-9,-9,2019,2,1,9,0,48,48,15,1,1,3,0,17.38866623586678,17.38866623586678,0,0,0,0,0,0,0,0,0,0,6.957263861148729,0,0,0,54,53,6,3,0,0,9,4,1,613,0,0,0 +10586,12983,23694,-9,23692,23693,3,1,1,32,2,0,0,0,2,-9,2,1,0,4,8.34965526794303,8.265967770224442,0,3,0,-9,0,-9,0,-1044.282155004056,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,10.05432098000565,10.05432098000565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,57,5,3,0,0,9,4,1,1890,0,0,0 +10587,12984,23695,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,7.926935415425204,7.77171501226003,3,0,0,0,-9,0,-847.4628263136718,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.885635585704279,0,0,48.05,53.56,5,1,0,0,11,3,1,942,0,0,0 +10588,12985,23696,23697,-9,-9,1,1,1,48,1,0,1,0,2,-9,8,3,1,3,0,0,0,2,0,-9,8,0,-6,146.0908355672364,0,0,0,54,1,4,1,2,2,2019,3,2,29,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.15120305126033,3,40.06,41.03,3,1,0,0,10,4,1,863.3333333333334,0,0,0 +10588,12985,23697,23696,23699,-9,2,1,0,54,1,0,1,0,1,-9,2,1,0,4,8.511451996772102,8.974397514391589,0,2,0,-9,8,0,6,-61.20600722050428,0,0,0,48,2,3,3,2,2,2019,2,1,19,7,45,43,15,1,7,3,0,20.13303803375958,20.13303803375958,0,0,0,0,0,0,0,1,1,0,0,0,31.16519519616378,3,31.11,60.36,5,1,0,0,10,4,1,863.3333333333334,0,0,0 +10588,12985,23698,-9,23697,23696,4,1,1,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1037.681813131539,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,10,4,1,863.3333333333334,0,0,0 +10588,12986,23699,-9,-9,-9,3,1,0,89,3,0,1,0,3,-9,4,3,0,1,0,0,0,4,0,0,0,-9,0,-971.7783863453914,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,7.677839352291589,0,.9671244651065809,13.7268816830703,0,37.36295389789899,1,1,0,0,0,0,0,48.27,28.91,5,1,0,0,10,1,1,145,0,0,0 +10589,12987,23700,23701,-9,-9,1,1,0,62,1,0,0,0,3,-9,1,1,0,2,8.561697886768314,8.478110346584273,0,1,0,-9,46,0,-4,-48.78355204544402,0,0,0,66,2,3,1,3,2,2019,1,2,17,5,42,70,15,1,5,1,0,12.33478444270179,12.33478444270179,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.56,54.64,5,1,0,0,7,5,1,901.5,0,0,0 +10589,12987,23701,23700,-9,-9,2,1,1,66,1,0,0,0,2,-9,1,1,0,3,7.714520798668036,7.938899764388037,5.866220578006362,1,0,-9,46,0,4,101.4192059049849,0,0,0,62,3,2,1,3,3,2019,1,1,8,0,50,50,15,1,0,1,0,5.759499321853028,5.759499321853028,0,0,0,0,0,0,0,1,1,0,6.440928552229054,5.628409279299378,0,0,57.33,53.46,6,1,0,0,7,5,1,901.5,0,0,0 +10590,12988,23702,23703,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,2,0,1,124.9427861440742,0,0,0,65,3,2,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,57.24939348963334,0,1,1,0,0,0,0,0,38.56,23.07,4,1,0,0,12,2,0,670.5,0,0,0 +10590,12988,23703,23702,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,7.032450243001813,7.008689981430765,1,0,-9,2,0,-1,139.7523786373831,0,0,0,66,2,1,3,3,3,2019,4,1,10,2,0,24,15,4,2,4,0,0,0,1,5.880113660029861,0,0,0,54.06605602967351,86.63091854787848,1,1,0,0,6.518690572576106,0,0,64.3,16.47,7,1,0,0,12,2,0,670.5,0,0,0 +10591,12989,23704,23705,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,4,9.619479251520836,9.654453691141045,0,1,0,-9,7,0,2,64.07786692679913,0,0,0,44,1,2,1,1,1,2019,1,1,10,1,50,45,15,1,1,1,0,37.81316257206428,37.81316257206428,0,0,0,0,0,0,0,0,0,0,8.39796310162972,0,0,0,52.82,53.97,6,1,0,0,8,5,1,684,0,0,0 +10591,12989,23705,23704,-9,-9,1,1,0,44,1,0,0,0,1,-9,1,1,0,2,8.456507717701802,8.451343648024972,0,1,0,-9,7,0,-2,-95.89453364325281,0,0,1,46,1,4,1,3,2,2019,1,2,13,3,16,24,15,1,3,1,0,25.71183496590783,25.71183496590783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.09,27.63,5,1,0,0,8,5,1,684,0,0,0 +10592,12990,23706,-9,23707,-9,4,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1060.542644208966,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,3,0,299,0,0,0 +10592,12990,23707,-9,-9,-9,1,1,0,45,2,0,2,0,2,-9,2,1,0,5,8.082968105345403,8.34366980315454,6.014409331179801,4,0,0,0,-9,0,-927.2956637353367,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,43,48,15,1,0,-9,0,8.476077390912918,8.476077390912918,0,0,0,0,0,0,0,1,1,0,5.668202877466134,0,0,0,54.1,59.11,3,1,0,0,9,3,0,299,0,0,0 +10592,12991,23708,-9,23707,-9,2,1,0,18,2,0,2,0,2,1,2,1,0,3,6.925134075028978,6.814949553360375,0,3,0,0,0,-9,0,-1112.816493439275,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,25,0,15,1,0,-9,1,4.31643682381655,4.31643682381655,0,0,0,0,0,0,0,1,1,0,6.478898541121819,0,0,0,46.67,55.57,4,1,0,0,9,2,0,1082,0,0,0 +10593,12992,23709,23710,-9,-9,2,1,1,89,1,0,0,0,3,-9,4,3,0,2,0,3.919830093657428,3.820083040321522,1,0,-9,68,0,3,-57.94386903577777,0,0,0,86,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,4.694348548978902,0,0,0,0,0,1,1,0,3.95908437433982,3.978204610132647,0,0,58.76,38.19,6,1,0,0,10,1,0,240,0,0,0 +10593,12992,23710,23709,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,68,0,-3,52.87729420004604,0,0,0,89,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.871178639456165,0,0,0,56.53,45.45,6,1,0,0,10,1,0,240,0,0,0 +10594,12993,23711,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,2,8.15745385525287,8.152181418355395,0,3,0,0,0,-9,0,-1040.636523723181,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,45,42,15,1,7,-9,0,9.294774230980556,9.294774230980556,0,0,0,0,0,0,0,0,0,0,1.043162148572701,0,0,0,41.28,46,4,1,0,0,9,4,1,1091,0,0,0 +10595,12994,23712,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1032.162340916779,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,47.56,3,1,1,0,4,1,0,352,0,0,0 +10595,12995,23713,-9,-9,23715,3,1,0,12,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1090.511399803508,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,1,0,758.5,0,0,0 +10595,12995,23714,-9,-9,23715,4,1,1,11,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-942.509918645094,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,4,1,0,758.5,0,0,0 +10595,12995,23715,-9,23712,-9,2,1,1,27,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1043.678873350012,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,1,1,4,1,0,758.5,0,0,0 +10595,12995,23716,-9,-9,23715,5,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1078.975428663853,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,4,1,0,758.5,0,0,0 +10596,12996,23717,23718,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,5,0,4.273890774748304,4.619879217655391,1,0,-9,7,0,-11,-84.69437840080492,0,0,0,78,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9077069963983316,4.50057809087382,0,0,48.18,61.8,6,1,0,0,13,2,1,418,0,0,0 +10596,12996,23718,23717,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,7.3424984278906,6.985648513885399,1,0,-9,7,0,11,-29.73806935112094,0,0,0,67,3,5,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.008203395557039,0,0,62.49,55.09,7,1,0,0,13,2,1,418,0,0,0 +10597,12997,23719,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,2,1,0,4,7.332634679850552,7.452935384228016,0,3,0,0,0,-9,0,-1055.631643850731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,23,27,15,1,0,-9,0,5.709230394158348,5.709230394158348,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,5,4,0,0,6,3,0,338,0,0,0 +10598,12998,23720,-9,23721,23722,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.321339916474,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,7,5,1,1169,0,0,0 +10598,12998,23721,23722,-9,-9,1,1,0,37,1,0,1,0,1,-9,2,1,0,4,8.347875146353291,8.036211698656018,0,2,0,-9,16,0,0,-51.5285831065049,0,0,1,37,1,4,1,1,1,2019,1,2,5,0,18,28,15,1,0,1,0,20.61217702728569,20.61217702728569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,7,1,0,0,7,5,1,1169,0,0,0 +10598,12998,23722,23721,-9,-9,2,1,1,37,1,0,1,0,1,-9,2,1,0,4,9.965737463311692,9.887982529584573,0,2,0,-9,7,0,0,84.86618468388922,0,0,0,37,1,4,1,1,1,2019,1,1,13,1,60,60,15,1,1,1,0,29.78485645706709,29.78485645706709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,7,5,1,1169,0,0,0 +10599,12999,23723,23724,-9,-9,1,1,1,61,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,3,0,0,0,0,58,3,3,3,3,3,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.205953173156423,0,0,0,40.63,23.69,1,1,0,1,13,1,0,574,0,0,0 +10599,12999,23724,23723,-9,-9,2,1,0,58,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,7,0,-3,0,0,0,0,61,3,1,3,3,3,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,111.4676941045761,1,57.33,53.46,5,1,0,0,13,1,0,574,0,0,0 +10599,13000,23725,-9,23724,23723,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.727001935938414,8.401438838187136,0,3,0,0,0,-9,0,-1035.886187062736,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,1,0,40,40,15,1,0,-9,1,14.33493117906084,14.33493117906084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,13,4,0,426,0,0,0 +10600,13001,23726,23727,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,58,0,-2,-84.48272014507083,0,0,0,77,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.27,49.27,6,1,0,0,6,2,1,184.5,0,0,0 +10600,13001,23727,23726,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,6.964951789573849,6.862690165048627,1,0,-9,58,0,2,-21.81214305325262,0,0,0,75,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.756326185241837,0,0,57.16,56.15,6,1,0,0,6,2,1,184.5,0,0,0 +10601,13002,23728,23729,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.777979125239896,7.878409216454886,0,1,0,-9,4,0,-14,156.8813120596501,0,0,0,67,2,2,3,-9,2,2019,2,2,10,0,35,0,15,1,0,4,0,8.609603832725982,8.609603832725982,0,0,0,0,0,0,0,1,1,0,7.155650536190071,0,0,0,40.96,46.35,6,1,0,1,9,3,1,473.5,0,0,0 +10601,13002,23729,23728,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,7.219740294814454,6.708205071121308,1,0,-9,4,0,14,180.0405697227232,0,0,0,53,2,2,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.865986783918499,6.708800195337552,0,0,57.33,42.93,6,1,0,0,9,3,1,473.5,0,0,0 +10602,13003,23730,23732,-9,-9,3,1,1,45,1,0,1,0,2,-9,2,1,0,3,9.033180745123659,9.385405840290183,0,2,0,-9,1,-9,0,-47.37530676163159,-9,0,0,45,3,4,1,-9,-9,2019,1,1,8,0,105,0,15,1,0,1,0,11.28098871115788,11.28098871115788,0,0,0,0,0,0,0,0,0,0,.6965089679018831,0,0,0,43.12,58.55,6,1,0,0,9,5,1,334,0,0,0 +10602,13003,23731,-9,23732,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.3594056464378,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,334,0,0,0 +10602,13003,23732,23730,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,4,7.217271792375752,7.82096268637239,6.497509981757573,2,0,1,1,-9,0,39.81964999038403,0,0,0,45,2,3,1,-9,-9,2019,1,3,8,0,20,20,15,1,0,1,0,9.105827191599262,9.105827191599262,0,0,0,0,0,0,0,0,0,0,6.490333175276799,0,0,0,59.29,49.68,7,1,0,0,9,5,1,334,0,0,0 +10603,13004,23733,23734,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.97814425460377,8.73065211540788,0,1,0,-9,32,0,-3,-73.54965181760785,0,0,0,55,1,3,1,3,3,2019,1,1,8,0,40,44,15,1,0,1,0,17.80462937274404,17.80462937274404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.56,46.45,5,1,0,0,7,5,1,365,0,0,0 +10603,13004,23734,23733,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,3,8.938175545604503,8.992996114014694,0,1,0,-9,33,0,3,-83.98670759757788,0,0,0,52,2,2,1,-9,-9,2019,1,2,8,1,38,76,15,1,1,1,0,32.95084752244316,32.95084752244316,0,0,0,0,0,0,0,1,1,0,2.970124157832054,0,0,0,54.3,42.49,2,1,0,0,7,5,1,365,0,0,0 +10604,13005,23735,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,5.233293449427946,5.060224351690378,3,0,0,0,-9,0,-995.3809974392299,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.367646877855594,0,0,57.25,31.99,6,1,0,0,12,2,1,341,0,0,0 +10605,13006,23736,23737,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,4,0,8.462799261142564,8.339007463694738,1,0,-9,37,0,0,-13.23467795676204,0,0,0,58,1,5,1,2,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.313431226032482,8.868881287637587,4.697125169913468,3,54.2,57.49,6,1,0,0,6,5,1,299.5,0,0,0 +10605,13006,23737,23736,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,5,9.013611014512051,8.891035441143934,7.372382671447585,1,0,-9,37,0,0,-52.40701974156784,0,0,0,58,1,4,3,2,1,2019,2,2,7,0,48,50,15,1,0,4,0,17.64516043108481,17.64516043108481,0,0,0,0,0,0,0,0,0,0,6.169509328140324,7.900701388352682,12.01101088506665,3,57.06,57.76,6,1,0,0,6,5,1,299.5,0,0,0 +10606,13007,23738,23739,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,2,8.24155964136602,8.189496625989792,0,1,0,-9,28,0,-1,76.55355324136416,0,0,0,55,2,4,3,3,3,2019,2,2,10,1,22,39,15,1,1,3,0,16.68870302333266,16.68870302333266,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.48,28.68,4,1,0,0,2,3,0,731,0,0,0 +10606,13007,23739,23738,-9,-9,2,1,1,55,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,28,0,1,-43.99023097672151,0,0,0,54,2,2,1,3,3,2019,3,1,10,0,0,89,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,5,1,1,0,2,3,0,731,0,0,0 +10606,13008,23740,-9,23738,23739,3,1,0,34,2,0,0,0,2,-9,2,1,0,4,5.85899803180573,6.058841413386048,0,3,0,-9,0,-9,0,-1098.270122175652,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,45,0,15,1,2,-9,1,1.451766732663401,1.451766732663401,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,2,2,0,410,0,0,0 +10606,13008,23741,-9,23740,-9,4,1,0,9,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1066.414153698183,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,5,0,0,2,2,0,410,0,0,0 +10607,13009,23742,23743,-9,-9,2,1,0,55,1,0,1,0,2,-9,2,1,0,2,8.3413740919835,8.3489740107643,0,2,0,-9,6,0,-3,-61.03512581319322,0,0,0,58,2,3,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,13.88101957912085,13.88101957912085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.11,43.52,5,1,0,0,10,5,1,687.6666666666666,0,0,0 +10607,13009,23743,23742,-9,-9,1,1,1,58,1,0,1,0,2,-9,2,1,0,3,8.902469102290596,8.754485848025801,0,2,0,-9,18,0,3,-28.70705751418689,0,0,0,55,2,2,1,3,3,2019,1,2,7,0,39,40,15,1,0,1,0,18.71864442922971,18.71864442922971,0,0,0,0,0,0,0,1,1,0,4.640823720330705,0,0,0,57.33,53.46,6,1,0,0,10,5,1,687.6666666666666,0,0,0 +10607,13009,23744,-9,23742,23743,3,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1065.446840291616,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,10,5,1,687.6666666666666,0,0,0 +10608,13010,23745,23746,-9,-9,3,1,1,60,1,0,0,0,2,-9,2,1,0,3,7.90468843393972,8.600623030607176,7.915618890112595,1,0,-9,7,0,8,65.8614446748463,-9,0,0,52,2,3,1,3,3,2019,1,1,12,0,42,0,15,1,0,1,0,8.582455869729277,8.582455869729277,0,0,0,0,0,0,0,0,0,0,0,7.755939686368417,0,0,60.29,52.11,2,1,0,0,1,5,1,1771,0,0,0 +10608,13010,23746,23745,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.180608547703061,8.336240046944118,0,1,0,-9,7,0,-8,38.13757266421369,-9,0,0,60,2,3,1,3,3,2019,1,3,11,0,37,0,15,1,0,1,0,10.79926772058108,10.79926772058108,0,0,0,0,0,0,0,0,0,0,0,0,1.926452903343609,3,58.08,40.76,2,1,0,0,1,5,1,1771,0,0,0 +10609,13011,23747,23748,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.972030858493872,9.066870552380687,0,1,0,-9,6,0,1,-128.8898668776523,0,0,0,51,2,3,1,2,2,2019,1,2,4,0,50,50,15,1,0,1,0,17.69042536768508,17.69042536768508,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.26,49.35,5,1,0,0,4,5,1,2086.5,0,0,0 +10609,13011,23748,23747,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.555530987332676,7.462921796122296,0,1,0,-9,6,0,-1,-64.51940762199513,0,0,0,52,2,3,1,2,1,2019,1,1,24,12,15,17,15,1,12,1,0,15.62588018414929,15.62588018414929,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.26,41.62,3,1,0,0,4,5,1,2086.5,0,0,0 +10609,13012,23749,-9,23748,23747,4,1,0,18,2,0,0,1,2,0,7,2,0,3,6.450260528301699,6.566732163863031,0,3,0,0,0,-9,0,-953.5317886817952,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,21,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.36,46.4,3,1,0,0,4,2,1,319,0,0,0 +10610,13013,23750,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,2,0,6.495070731003132,6.661700390318932,3,0,0,0,-9,0,-958.652803215822,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.971238421148845,0,8.021700289750642,34.82163768521785,1,1,0,0,6.190629675684792,0,0,47.55,23.07,6,1,0,0,10,2,0,816,0,0,0 +10611,13014,23751,-9,-9,-9,1,1,0,28,2,0,0,0,2,-9,2,1,0,4,8.765105786472542,8.22330412821943,0,3,0,0,0,-9,0,-981.5312083617342,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,50,42,15,1,6,-9,0,9.9876449820286,9.9876449820286,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.24,68.01000000000001,3,1,0,0,12,4,1,548,0,0,0 +10612,13015,23752,23753,-9,-9,1,1,0,67,1,0,0,0,3,-9,1,1,0,3,6.145801603929656,6.818447953110514,0,1,0,-9,46,0,-2,24.24584001395732,0,0,0,69,3,4,1,3,2,2019,1,2,8,0,12,10,15,1,0,1,0,6.312800701320311,6.312800701320311,0,0,0,0,0,0,0,1,1,0,3.942768883648028,0,0,0,45.13,41.57,7,1,0,0,9,3,1,611,0,0,0 +10612,13015,23753,23752,-9,-9,2,1,1,69,1,0,0,0,3,-9,2,1,0,4,7.380639639289957,8.234967433795367,7.541852872848222,1,0,-9,46,0,2,68.34134648685259,0,0,0,67,3,3,1,-9,-9,2019,1,1,6,0,28,28,15,1,0,1,0,6.655416934313537,6.655416934313537,1,0,0,0,0,0,0,1,1,0,3.090965016977294,7.466957029969791,0,0,54.79,55.86,6,1,0,0,9,3,1,611,0,0,0 +10613,13016,23754,23755,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.112281675541979,7.133176099714253,0,2,0,-9,9,0,2,-188.7540826815884,0,0,0,46,2,3,1,3,2,2019,1,1,28,11,16,16,15,1,11,1,0,10.63550852656507,10.63550852656507,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,52.54,4,1,0,1,11,3,1,699,0,0,0 +10613,13016,23755,23754,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,3,8.219265953225655,8.105495715934767,0,2,0,-9,9,0,-2,135.2683211932314,0,0,0,48,2,3,1,2,2,2019,1,2,9,0,39,39,15,1,0,1,0,9.401941716239872,9.401941716239872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,4,1,0,0,11,3,1,699,0,0,0 +10614,13017,23756,-9,-9,-9,1,1,0,70,2,0,0,0,2,-9,4,3,0,2,0,7.802622629831158,7.476518713330388,3,0,0,0,-9,0,-1250.044310613749,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,17.66240289150655,33.57914808852677,1,1,0,4.012092219515446,7.764905231741446,0,0,65.38,25.53,6,1,0,0,4,3,1,2804,0,0,0 +10615,13018,23757,23758,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,3.929399111640051,3.707704642449672,1,0,-9,7,0,3,8.971526326244625,0,0,0,75,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.451209689229613,4.100038440480615,0,0,62.66,52.4,7,1,0,0,12,2,1,432.5,0,0,0 +10615,13018,23758,23757,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,5.320875137006535,5.065029702488186,1,0,-9,7,0,-3,-23.54806033717063,0,0,0,78,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.425735238803939,5.265901961668232,0,0,57.16,56.15,6,1,0,0,12,2,1,432.5,0,0,0 +10616,13019,23759,23760,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,1,0,5.734868536838057,5.76885906210285,1,0,-9,50,0,3,66.24829887072862,0,0,0,68,3,3,3,-9,2,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,18.26675998576705,0,0,0,0,1,1,0,4.812268090512292,6.049487785895002,0,0,61.34,27.65,5,1,0,0,5,2,0,806.5,0,0,0 +10616,13019,23760,23759,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-3,-114.9477573177612,0,0,0,71,3,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.29,6,1,0,0,5,2,0,806.5,0,0,0 +10617,13020,23761,-9,23762,23764,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.527893064714,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,5,2,1,1101,0,0,0 +10617,13020,23762,23764,-9,-9,2,1,0,31,1,1,2,0,2,-9,2,1,0,3,7.349313073902217,7.440950233387561,0,2,0,-9,8,0,4,80.09549237821156,0,0,1,27,2,2,1,-9,-9,2019,1,1,15,2,24,24,15,1,2,1,0,8.055652841556713,8.055652841556713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.25,53.29,4,1,0,0,5,2,1,1101,0,0,0 +10617,13020,23763,-9,23762,23764,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1177.262961704093,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,5,2,1,1101,0,0,0 +10617,13020,23764,23762,-9,-9,1,1,1,27,1,1,2,0,2,-9,2,1,0,2,0,0,0,2,0,-9,8,0,-4,-57.6407533352115,0,1,0,31,2,3,1,-9,-9,2019,1,2,6,0,0,38,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.58,45.88,3,1,0,0,5,2,1,1101,0,0,0 +10618,13021,23765,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,4,8.644149444976353,8.489223824610411,0,3,0,0,0,-9,0,-889.3830820774657,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,36,35,15,1,0,-9,0,15.2008218669156,15.2008218669156,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,713,0,0,0 +10619,13022,23766,23767,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,4.594933156538343,4.497462475488208,1,0,-9,46,0,-6,70.70736966390069,0,0,0,78,3,1,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.368459324400296,4.805658112780821,26.47268678895892,1,48.36,57.34,6,1,0,0,7,2,1,499,0,0,0 +10619,13022,23767,23766,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,1,0,6.293282560697866,6.01207385743216,1,0,-9,46,0,6,-13.34096088513229,0,0,0,72,3,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,1.178777086006185,0,0,0,0,1,1,0,5.7877083068773,5.932570843361749,0,0,40.62,19.29,3,1,0,0,7,2,1,499,0,0,0 +10620,13023,23768,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,4.662167927746287,4.527442331662158,3,0,0,0,-9,0,-951.4403154171213,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.610892226122227,4.989122508774135,.3507252059559225,3,51.65,41.18,6,1,0,0,7,2,1,497,0,0,0 +10621,13024,23769,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,1,1,0,3,0,7.43487757514712,7.796016333655355,3,0,0,0,-9,0,-1115.404656873911,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,10,0,15,1,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.186687932356095,7.72205536463407,115.5373109579044,3,52.98,26.87,1,1,0,0,6,3,1,485,0,0,0 +10621,13025,23770,-9,-9,-9,2,1,0,46,2,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1043.262363352323,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.83,35.75,6,1,1,0,6,1,1,3054,0,0,0 +10622,13026,23771,-9,23774,23772,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-897.2237738410267,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,1992.5,0,0,0 +10622,13026,23772,23774,-9,-9,3,1,1,30,1,1,2,0,3,-9,2,1,0,3,7.892995907633122,7.994077407584331,0,2,0,-9,1,-9,-1,-44.67093596569963,-9,0,0,31,2,4,1,-9,-9,2019,1,1,10,1,47,0,15,1,1,1,0,7.06972511302377,7.06972511302377,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,49.66,6,1,0,0,9,3,0,1992.5,0,0,0 +10622,13026,23773,-9,23774,23772,2,1,1,12,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1142.930379526346,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,0,1992.5,0,0,0 +10622,13026,23774,23772,-9,-9,1,1,0,31,1,1,2,0,2,-9,5,1,0,4,7.101592401177736,6.921085650907107,0,2,0,1,1,-9,1,93.52581633796261,0,0,1,30,3,3,1,3,3,2019,1,3,10,3,24,34,15,1,3,1,0,4.97349820134776,4.97349820134776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.07,52.7,5,1,0,1,9,3,0,1992.5,0,0,0 +10623,13027,23775,23776,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,9.280261820445466,9.49050615920059,1,0,-9,43,0,0,148.3517757245671,0,0,0,74,2,5,1,2,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.214707108952707,9.117062347044,7.415875371151762,3,58.87,45.76,6,1,0,0,9,5,1,1585.5,0,0,0 +10623,13027,23776,23775,-9,-9,2,1,0,74,1,0,0,0,2,-9,2,1,0,5,6.951578605858654,8.47155006029462,7.648514092537333,1,0,-9,45,0,0,-115.1738780443924,0,0,0,74,1,4,3,2,2,2019,2,1,6,0,5,3,15,1,0,4,0,23.28685506555042,23.28685506555042,0,0,0,0,0,0,0,1,1,0,0,8.64259463189874,6.768154782573609,3,62.39,56.71,7,1,0,0,9,5,1,1585.5,0,0,0 +10624,13028,23777,23778,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,5.57366804073001,5.669286019318661,1,0,-9,53,0,-3,-262.5830275551002,-9,0,0,76,1,2,3,2,3,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.814200999485549,5.912189551410552,0,1,51,46,5,1,0,0,12,4,1,1556.5,0,0,0 +10624,13028,23778,23777,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,2,7.802939221578169,8.564066311008425,7.724246777967427,1,0,-9,53,0,3,39.88033459827135,0,0,0,73,3,3,3,3,2,2019,4,1,17,5,15,0,15,4,5,4,0,0,0,1,0,3.906603654745163,0,0,0,0,1,1,0,8.068391159650075,8.056961995979378,0,0,37.98,43.29,6,1,0,0,12,4,1,1556.5,0,0,0 +10625,13029,23779,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,4,8.027028679650822,7.534580090672179,0,3,0,0,0,-9,0,-903.9638123189216,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,35,15,1,0,-9,0,10.2469488589573,10.2469488589573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.83,61.21,5,1,0,0,7,4,1,406,0,0,0 +10626,13030,23780,23781,-9,-9,2,1,0,61,1,0,0,0,2,-9,8,3,1,2,0,5.45747367519729,5.388153074005572,1,0,-9,36,0,-2,14.14945869096785,0,0,0,63,1,3,1,3,3,2019,3,1,9,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.342758547951213,0,0,58.75,24.64,4,1,0,0,9,4,1,310,0,0,0 +10626,13030,23781,23780,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,3,8.139767015808285,8.81994599754846,7.431551445055979,1,0,-9,36,0,2,84.00525056166859,0,0,0,61,2,2,3,3,3,2019,2,2,20,9,36,37,15,1,9,3,0,13.18204714288088,13.18204714288088,0,0,0,0,0,0,0,1,1,0,0,7.774382983801511,0,0,46.08,57.2,3,1,0,0,9,4,1,310,0,0,0 +10627,13031,23782,23783,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,5,7.937581598995382,7.919994345098251,0,1,0,-9,4,0,4,-80.92291117715901,0,0,0,51,3,4,1,-9,3,2019,1,2,6,0,38,38,15,1,0,1,0,9.434628449960863,9.434628449960863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,4,4,0,1884,0,0,0 +10627,13031,23783,23782,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,4,7.854009196691296,7.633004834451557,0,1,0,-9,4,0,-4,50.13799665766007,0,0,0,55,2,5,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,8.21704604323268,8.21704604323268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,5,0,0,4,4,0,1884,0,0,0 +10628,13032,23784,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-986.1260349644001,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,13.23,7,1,0,0,4,1,1,327,0,0,0 +10629,13033,23785,23786,-9,-9,1,1,1,44,1,0,1,0,2,-9,1,1,0,1,6.447393956534579,6.134613357476026,0,2,0,-9,14,0,13,0,0,0,0,31,2,4,1,-9,-9,2019,1,2,20,7,15,15,15,1,7,1,0,5.656946754670273,5.656946754670273,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.4,17.75,3,1,0,1,2,2,0,315.75,0,0,0 +10629,13033,23786,23785,-9,-9,2,1,0,31,1,0,1,0,2,-9,1,1,0,4,6.727867308237057,6.600839568809688,0,2,0,-9,14,0,-13,0,0,0,1,44,2,1,1,-9,-9,2019,1,1,11,0,20,20,15,1,0,1,0,4.565122513918952,4.565122513918952,0,0,0,0,0,0,0,1,1,0,0,0,115.7854728137025,1,54.79,55.86,6,1,0,1,2,2,0,315.75,0,0,0 +10629,13033,23787,-9,23786,23785,4,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.6917004993805,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,315.75,0,0,0 +10629,13033,23788,-9,23786,23785,3,1,1,17,2,0,1,0,2,1,2,3,0,4,7.357741324363381,7.500102977884613,0,2,0,0,0,-9,0,-1080.850507851421,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.09057314587735,3,46.1,59.99,6,1,0,0,2,2,0,315.75,0,0,0 +10630,13034,23789,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,9.159583318693562,9.464006343398383,3,0,-9,0,-9,0,-1010.573127097241,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.941614766756926,0,0,45.32,54.77,6,1,0,0,8,5,1,578,0,0,0 +10631,13035,23790,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1067.002900686573,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,34.32092809209286,1,1,0,0,0,0,0,55.94,7.25,6,1,0,0,4,1,0,1854,0,0,0 +10632,13036,23791,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,6.137959804637759,6.446786569311493,3,0,0,0,-9,0,-935.8131869922967,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.371749510031725,0,0,62.18,36.18,6,1,0,0,6,2,0,757,0,0,0 +10633,13037,23792,-9,23793,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1009.277129003472,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,5,3,0,0,9,1,1,937.5,0,0,0 +10633,13037,23793,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,1,0,0,0,4,0,0,0,-9,0,-1032.492387968085,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.1,29.67,6,3,0,0,9,1,1,937.5,0,0,0 +10634,13038,23794,23795,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,4,8.211521540329819,8.598885569208591,0,2,0,-9,7,0,0,-18.99065628207254,0,0,0,51,2,4,1,2,2,2019,1,1,10,0,50,50,15,1,0,1,0,12.98631345360593,12.98631345360593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,6,1,0,0,2,5,1,2847,0,0,0 +10634,13038,23795,23794,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,4,8.725204108069889,8.84766653012062,0,2,0,-9,7,0,0,-17.78580450398925,0,0,0,51,2,4,1,2,2,2019,1,2,5,0,44,41,15,1,0,1,0,14.29433560061545,14.29433560061545,0,0,0,0,0,0,0,0,0,0,3.985369968608143,0,0,0,57.16,56.15,5,1,0,0,2,5,1,2847,0,0,0 +10634,13039,23796,-9,23794,23795,3,1,0,19,2,0,1,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-835.4571122884533,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.88,42.43,6,1,0,0,2,1,1,254,0,0,0 +10635,13040,23797,23798,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,1,7.402089399281637,8.181565052669795,0,1,0,-9,1,-9,-1,71.70654901088373,-9,0,1,31,2,3,1,-9,-9,2019,1,1,12,1,42,0,15,1,1,1,0,6.76360463789874,6.76360463789874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.86,42.08,5,1,0,0,1,5,0,296,0,0,0 +10635,13040,23798,23797,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,3,8.730455126044685,8.254621947029118,0,1,0,1,1,-9,1,-43.70399899418369,0,0,0,30,2,1,1,2,2,2019,1,2,9,0,70,40,15,1,0,1,0,8.485941891594177,8.485941891594177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,5,1,0,0,1,5,0,296,0,0,0 +10636,13041,23799,23800,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,6.84561607100358,6.702800836927473,1,0,-9,7,0,-3,9.678803961728965,0,0,0,76,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.929191831235516,6.7187988392316,0,0,62.24,48.49,6,1,0,0,13,3,1,239.5,0,0,0 +10636,13041,23800,23799,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.219302085478398,7.286047136813348,1,0,-9,7,0,3,-35.59850933457063,0,0,0,73,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.924397651368152,7.292687476548187,0,0,57.16,56.15,6,1,0,0,13,3,1,239.5,0,0,0 +10637,13042,23801,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,3,5.589758044493795,5.366909335888788,0,3,0,0,0,-9,0,-959.0692261667517,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,3,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,6,4,0,0,8,2,0,661,0,0,0 +10638,13043,23802,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,1,1,0,4,8.502677841115482,8.464355423146186,0,3,0,0,0,-9,0,-1042.726814723699,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,30,60,15,1,0,-9,0,21.65099035781123,21.65099035781123,0,0,0,0,0,0,0,0,0,0,6.159803628038205,0,0,0,54.7,54.95,7,1,0,0,1,5,1,1160,0,0,0 +10639,13044,23803,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-902.856078829536,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,5,0,1,8,1,0,773,0,0,0 +10640,13045,23804,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,4,3,0,3,0,5.915933731206938,6.014884170350326,3,0,0,0,-9,0,-1010.568228015024,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.070553433120623,0,0,49,48,5,3,0,1,2,2,1,780,0,0,0 +10640,13046,23805,-9,-9,-9,2,1,1,41,2,0,0,0,1,-9,6,3,0,1,0,0,0,3,0,-9,0,-9,0,-1083.864380522967,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,30,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,1,3,0,1,2,1,1,814,0,0,0 +10641,13047,23806,-9,-9,-9,1,1,1,47,2,0,0,0,3,-9,1,1,0,2,7.773050526457247,7.897988704278958,0,3,0,0,0,-9,0,-1004.712211035143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,30,15,1,0,-9,0,9.672585065941806,9.672585065941806,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.55,45.62,6,1,0,0,9,3,0,992,0,0,0 +10642,13048,23807,23808,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.694500871696395,8.64138988055022,0,1,0,1,1,-9,1,.0772887510779681,0,0,0,29,1,4,1,-9,-9,2019,1,2,12,0,35,35,15,1,0,1,0,19.78889813549932,19.78889813549932,0,0,0,0,0,0,0,0,0,0,2.657764149622129,0,0,0,57.16,56.15,6,1,0,0,7,5,1,1480.5,0,0,0 +10642,13048,23808,23807,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,7.819920947570736,8.292748225423065,0,1,0,-9,1,-9,-1,-45.53561877580125,-9,1,1,30,1,4,1,-9,-9,2019,1,1,11,0,40,0,15,1,2,1,0,7.434475620350923,7.434475620350923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,5,0,0,7,5,1,1480.5,0,0,0 +10643,13049,23809,23810,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,3,9.073557979324224,8.972780529671164,0,1,0,-9,3,0,-6,-50.76243338998744,0,1,0,35,1,5,2,-9,-9,2019,2,1,12,3,40,43,15,1,3,2,0,23.1470140131431,23.1470140131431,0,0,0,0,0,0,0,1,1,0,2.958986052549991,0,0,0,44.19,58.01,6,1,0,0,8,5,1,609.5,0,0,0 +10643,13049,23810,23809,-9,-9,1,1,0,35,1,0,0,0,1,-9,7,2,0,5,7.163767072374151,7.228003349374371,0,1,0,-9,3,0,6,54.21160639542158,1,0,1,29,1,3,1,1,2,2019,3,2,8,1,40,40,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.3,55.73,7,1,0,0,8,5,1,609.5,0,0,0 +10644,13050,23811,23812,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,3,8.312531037793395,8.038348885190485,0,2,0,-9,6,0,2,81.14836382304851,0,0,0,28,1,3,1,2,3,2019,1,2,12,4,40,40,15,1,4,1,0,9.726546045212872,9.726546045212872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.97,57.01,4,1,0,0,2,4,1,739,0,0,0 +10644,13050,23812,23811,-9,-9,2,1,0,28,1,1,1,0,1,-9,2,1,0,3,7.589644442409054,7.388911401262781,0,2,0,-9,8,0,-2,35.76613633083525,0,1,1,30,1,3,1,1,2,2019,1,1,9,0,37,0,15,1,0,1,0,7.346620171402607,7.346620171402607,0,0,0,0,0,0,0,1,1,0,2.166506688195039,0,0,0,52,54.51,5,1,0,0,2,4,1,739,0,0,0 +10644,13050,23813,-9,23812,23811,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.1561919391025,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,739,0,0,0 +10645,13051,23814,-9,-9,-9,3,1,1,28,2,0,1,0,2,-9,2,1,0,3,7.805534828301901,8.009478757440618,0,3,0,0,0,-9,0,-815.772691669944,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,36,0,15,1,0,-9,1,7.911889995540414,7.911889995540414,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,49.64,7,3,0,0,4,3,0,535,0,0,0 +10646,13052,23815,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,4,8.818782072691647,8.8635158316062,0,3,0,-9,0,-9,0,-953.9467759202367,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,45,0,15,1,0,-9,0,13.00780096864539,13.00780096864539,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,1,0,0,5,5,0,255,0,0,0 +10647,13053,23816,23817,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,5,6.394289326749009,8.450341909610019,8.422369382472979,1,0,-9,54,0,0,95.13146719293881,0,0,0,74,1,4,1,2,2,2019,3,2,5,0,13,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.677984301628301,8.209513523615277,0,0,58.05,54.52,7,1,0,0,9,4,1,737.5,0,0,0 +10647,13053,23817,23816,-9,-9,2,1,0,74,1,0,0,0,1,-9,2,1,0,4,5.393914607789137,6.145629514945758,5.750096250158713,1,0,-9,54,0,0,-87.50169970200551,0,0,0,74,1,5,3,2,1,2019,2,1,9,0,1,0,15,1,0,4,0,17.27778523191674,17.27778523191674,0,0,0,0,0,0,0,1,1,0,5.217495148447582,0,0,0,53.51,48.16,6,1,0,0,9,4,1,737.5,0,0,0 +10648,13054,23818,23819,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.708058054642673,7.861244900443317,1,0,-9,43,0,1,-89.94185109963244,0,0,0,66,1,4,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.632689107804032,8.092803893283019,0,0,57.33,53.46,6,1,0,0,7,4,1,663.5,0,0,0 +10648,13054,23819,23818,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,7.688856947252965,6.988856642831192,1,0,-9,43,0,-1,124.2395196020926,0,0,0,67,1,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.24929561785283,7.484926226897106,0,0,57.16,56.15,6,1,0,0,7,4,1,663.5,0,0,0 +10649,13055,23820,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,1,1,0,4,8.996813504716766,9.221889313746466,5.563091616992537,3,0,0,0,-9,0,-993.8235944454842,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,30,40,15,1,0,-9,0,28.1245015911702,28.1245015911702,0,0,0,0,0,0,0,1,1,0,4.514133366762573,5.711304473165606,0,0,60.12,54.8,7,1,0,0,9,5,1,984,0,0,0 +10650,13056,23821,23822,-9,-9,1,1,1,24,1,0,1,0,2,-9,2,1,0,4,6.904300377343955,6.848185416090209,0,2,0,-9,2,0,1,-8.676987381149651,0,1,0,23,2,4,3,-9,-9,2019,2,2,10,2,16,16,15,1,2,3,0,6.022604708644146,6.022604708644146,0,0,0,0,0,0,0,1,1,0,4.883069492920069,0,7.136544985716969,3,51.83,57.2,6,1,0,0,4,2,0,735,0,0,0 +10650,13056,23822,23821,-9,-9,2,1,0,23,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,2,0,-1,26.92123263868276,0,1,1,24,2,4,1,-9,-9,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,1,0,4,2,0,735,0,0,0 +10650,13056,23823,-9,23822,23821,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.1947116719111,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,2,0,735,0,0,0 +10651,13057,23824,23827,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,4,7.120131401734141,7.341467888740612,0,2,0,-9,24,0,-2,75.3148513634364,0,0,0,49,2,4,1,2,2,2019,1,2,8,0,18,17,15,1,0,1,0,10.05219373569256,10.05219373569256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,50.82,6,1,0,0,8,3,1,297.5,0,0,0 +10651,13057,23825,-9,23824,23827,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-982.4332871948702,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,8,3,1,297.5,0,0,0 +10651,13057,23826,-9,23824,23827,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.799877827432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,3,1,297.5,0,0,0 +10651,13057,23827,23824,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,4,7.94920865336043,8.370532823498911,0,2,0,-9,25,0,2,-1.00002136967752,0,0,0,47,2,4,1,2,1,2019,1,1,9,0,36,36,15,1,0,1,0,11.31796876485487,11.31796876485487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,5,1,0,1,8,3,1,297.5,0,0,0 +10652,13058,23828,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,3,7.454920906473813,8.312202665228115,7.496590342538558,3,0,0,0,-9,0,-946.1440548423097,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,30,35,15,1,10,-9,0,6.354415142317878,6.354415142317878,0,0,0,0,0,0,0,0,0,0,7.659658539725133,0,0,0,25.02,64.34,2,1,0,0,7,4,1,263,0,0,0 +10652,13059,23829,-9,23828,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,2,8.000666563209888,7.705771089912235,0,3,0,0,0,-9,0,-1087.163116849715,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,50,0,15,1,0,-9,1,6.769765038620903,6.769765038620903,0,0,0,0,0,0,0,0,0,0,1.614318278910372,0,0,0,49.33,44.15,6,1,0,0,7,4,1,353,0,0,0 +10652,13060,23830,-9,23828,-9,4,1,0,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1052.250337457983,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.68673570212169,0,0,0,54.37,54.8,6,1,0,0,7,1,1,284,0,0,0 +10653,13061,23831,23832,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,2,8.426498676041835,8.553535786898834,0,2,0,-9,17,0,5,-104.5711332408827,0,0,0,50,1,3,1,3,3,2019,1,2,7,0,40,42,15,1,0,1,0,11.87752523637602,11.87752523637602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,6,1,0,0,8,3,1,606.6666666666666,0,0,0 +10653,13061,23832,23831,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,3,0,0,0,2,0,-9,7,0,-5,78.13775600972221,0,0,0,55,1,2,1,-9,-9,2019,1,1,8,0,42,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.684569128828638,0,0,0,52,54.51,5,1,0,0,8,3,1,606.6666666666666,0,0,0 +10653,13061,23833,-9,23831,23832,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.3078090216388,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,3,1,606.6666666666666,0,0,0 +10654,13062,23834,23835,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,4,7.971307106275444,8.023846377565395,0,2,0,-9,22,0,-4,12.83145809019061,0,0,0,50,1,1,3,3,3,2019,2,2,6,0,37,40,15,1,0,3,0,8.430364289461034,8.430364289461034,0,0,0,0,0,0,0,1,1,0,0,0,0,1,56.74,52.23,4,3,0,0,2,3,1,94.5,0,0,0 +10654,13062,23835,23834,-9,-9,2,1,0,50,1,0,1,0,1,-9,8,3,1,1,0,0,0,2,0,-9,22,0,4,81.4362650796587,0,0,0,46,2,4,1,3,2,2019,3,1,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,26.71,4,3,0,1,2,3,1,94.5,0,0,0 +10654,13063,23836,-9,23835,23834,3,1,0,19,2,0,1,1,2,0,7,2,0,2,6.784354493737686,6.649878609070571,0,3,0,0,0,-9,0,-1031.056148800789,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.341541359416503,3,41.95,37.91,6,3,0,0,2,2,1,2807,0,0,0 +10654,13064,23837,-9,23835,23834,4,1,0,18,2,0,1,1,2,0,7,2,0,4,5.465674624041752,5.522676219401787,0,3,0,0,0,-9,0,-1073.733454472552,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.97,56.66,6,3,0,0,2,3,1,278,0,0,0 +10655,13065,23838,23839,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,3,7.997803159051224,8.067848305280354,0,1,0,-9,23,0,-2,104.2366875441475,0,0,0,50,2,1,3,2,2,2019,2,2,29,12,49,48,15,1,12,3,0,6.159756071758878,6.159756071758878,0,0,0,0,0,0,0,1,1,0,0,0,7.053304514060143,1,28.33,57.1,2,1,0,1,7,3,0,360.5,0,0,0 +10655,13065,23839,23838,-9,-9,2,1,0,50,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,23,0,2,-41.24053554991518,0,0,0,48,2,3,1,2,2,2019,3,1,17,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.87,23.35,2,1,0,0,7,3,0,360.5,0,0,0 +10656,13066,23840,-9,-9,-9,1,1,1,71,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1056.58304697863,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,13,1,0,1244,0,0,0 +10657,13067,23841,23842,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,3,7.187409689125542,8.274963091767676,7.917552503530843,1,0,-9,1,-9,-1,21.41627317953523,-9,1,1,26,2,3,1,-9,-9,2019,1,2,11,2,23,0,15,1,2,1,0,7.988250088954072,7.988250088954072,0,0,0,0,0,0,0,0,0,0,7.756532945326512,0,0,0,32.37,51.38,5,2,0,0,9,4,1,384.5,0,0,0 +10657,13067,23842,23841,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,3,7.113854038629944,6.908416362042637,0,1,0,-9,1,-9,1,78.62254249218608,-9,1,0,25,1,3,1,-9,-9,2019,1,1,13,1,15,0,15,1,1,1,0,8.787052286084791,8.787052286084791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,4,1,0,1,9,4,1,384.5,0,0,0 +10658,13068,23843,-9,23844,23846,7,1,0,17,2,0,4,1,3,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-810.7413472301722,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.285465481920649,3,41.58,52.86,4,3,0,0,7,3,1,1005.4,0,0,0 +10658,13068,23844,23846,-9,-9,3,1,0,43,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,27,0,-5,202.866882540766,0,0,1,48,1,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,55,5,3,0,0,7,3,1,1005.4,0,0,0 +10658,13068,23845,-9,23844,23846,9,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.3680714080944,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,7,3,1,1005.4,0,0,0 +10658,13068,23846,23844,23848,-9,1,1,1,48,1,0,4,0,1,-9,2,1,0,3,8.72957719909577,8.64326386164695,0,2,0,-9,27,0,5,-27.11411967118354,0,0,0,43,3,4,3,3,3,2019,2,3,12,0,30,40,15,1,0,3,0,20.84120382995827,20.84120382995827,0,0,0,0,0,0,0,1,1,0,0,0,111.5049668502777,3,41.88,45.75,2,3,0,0,7,3,1,1005.4,0,0,0 +10658,13068,23847,-9,23844,23846,10,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.6872947656699,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,7,3,1,1005.4,0,0,0 +10658,13069,23848,-9,-9,-9,2,1,0,80,3,0,4,0,2,-9,8,3,1,3,0,0,0,4,0,0,0,-9,0,-888.6655475915217,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,3,0,0,7,1,1,3305,0,0,0 +10658,13070,23849,-9,23844,23846,4,1,1,22,2,0,4,0,2,1,2,1,0,4,7.630078875626511,7.693920506860044,0,3,0,0,0,-9,0,-962.4224027034008,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.649712889034423,3,48,59,5,3,0,0,7,3,1,335,0,0,0 +10658,13071,23850,-9,23844,23846,6,1,1,18,2,0,4,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-992.3734370250809,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.799279451139028,3,44,55,4,3,0,0,7,3,1,560,0,0,0 +10659,13072,23851,-9,-9,-9,1,1,1,81,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-918.1614331623824,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,3.018884233769164,0,0,0,0,0,1,1,0,1.737451247588732,0,0,0,45.66,49.33,5,1,0,0,5,1,0,466,0,0,0 +10660,13073,23852,23853,-9,-9,2,1,0,70,1,0,0,0,2,-9,1,1,0,3,7.056920988918769,7.106291811625178,0,1,0,-9,44,0,6,-55.40443895106331,0,0,0,64,2,3,1,2,2,2019,1,1,6,0,3,2,15,1,0,1,0,47.38693089466889,47.38693089466889,0,0,0,0,0,0,0,1,1,0,9.292635553372671,0,0,0,53.58,46.94,5,1,0,0,2,5,1,237.5,0,0,0 +10660,13073,23853,23852,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,3,9.304710516180029,8.964909565588554,0,1,0,-9,44,0,-6,20.4021692218513,0,0,0,70,2,3,1,2,3,2019,1,2,15,4,25,24,15,1,4,1,0,35.9886427043554,35.9886427043554,0,0,0,0,0,0,0,1,1,0,0,0,5.278069551613343,3,46.31,51.53,6,1,0,0,2,5,1,237.5,0,0,0 +10661,13074,23854,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-836.7600968628735,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,6,1,0,1206,0,0,0 +10662,13075,23855,23856,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,7.065020470048353,7.205182458926708,1,0,-9,10,0,4,-38.08785705646397,0,0,0,68,3,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.639265500216869,6.854750759499611,0,0,49.13,51.4,7,1,0,0,2,2,1,1331.5,0,0,0 +10662,13075,23856,23855,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,6.259722526816283,5.757900591277472,1,0,-9,10,0,-4,63.44736637832416,0,0,0,72,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.041746254940516,0,0,49,48,5,5,0,0,2,2,1,1331.5,0,0,0 +10663,13076,23857,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-915.4833117408825,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.045939524111167,0,0,0,48.75,61.27,6,1,0,0,9,1,1,1121,0,0,0 +10664,13077,23858,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-998.2433665322969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,8.171701473101663,13.78436100183394,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,6,1,1,222,0,0,0 +10665,13078,23859,23860,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.37441238255335,8.233724531125311,0,1,0,-9,7,0,5,29.38076368045659,-9,0,0,56,2,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,8.84206122369385,8.84206122369385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,5,5,0,0,6,4,1,802.5,0,0,0 +10665,13078,23860,23859,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,3,6.947002041491902,6.874747054048468,0,1,0,-9,7,0,-5,-52.12941848856804,0,0,0,61,2,3,1,3,2,2019,1,2,18,7,21,1,15,1,7,1,0,5.846377441301957,5.846377441301957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,60.85,6,1,0,0,6,4,1,802.5,0,0,0 +10666,13079,23861,23862,-9,-9,1,1,1,35,1,0,0,0,1,-9,1,1,0,5,8.477665062493875,8.485121795347974,0,1,0,-9,7,0,7,-49.75442132654835,0,0,0,28,2,4,1,-9,-9,2019,1,2,0,0,40,35,15,1,0,1,0,15.77992818318091,15.77992818318091,0,0,0,0,0,0,0,1,1,0,4.009226167176379,0,0,0,53,59,7,5,0,0,8,5,1,592,0,0,0 +10666,13079,23862,23861,-9,-9,2,1,0,28,1,0,0,0,2,-9,5,1,0,4,7.633747421787673,7.708655375615352,0,1,0,-9,7,0,-7,4.732203018274731,0,1,1,35,1,5,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,8.393360352888354,8.393360352888354,0,0,0,0,0,0,0,1,1,0,4.270935716953933,0,0,0,53.55,51.09,7,3,0,0,8,5,1,592,0,0,0 +10667,13080,23863,23864,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.77121166390322,7.891593663461494,0,1,0,-9,40,0,-3,-74.13540277965784,0,0,0,59,2,5,1,3,3,2019,1,2,12,0,25,25,15,1,0,1,0,10.49476523477148,10.49476523477148,0,0,0,0,0,0,0,0,0,0,1.781514567997982,0,0,0,51.83,57.2,4,1,0,0,9,5,1,297.5,0,0,0 +10667,13080,23864,23863,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,5,8.652715943649385,8.752486997700741,0,1,0,-9,11,0,3,-213.6647909498201,0,0,0,56,2,4,1,-9,-9,2019,1,1,6,0,40,52,15,1,0,1,0,15.15688062923178,15.15688062923178,0,0,0,0,0,0,0,0,0,0,2.387170216788813,0,0,0,57.06,57.76,6,1,0,0,9,5,1,297.5,0,0,0 +10667,13081,23865,-9,23863,23864,3,1,0,30,2,0,0,0,2,-9,2,1,0,3,7.386723272374688,7.450518520610733,0,3,0,0,0,-9,0,-986.8186707678821,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,0,-9,1,5.226692903424953,5.226692903424953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,4,1,0,0,9,3,1,726,0,0,0 +10668,13082,23866,23867,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.080112142151265,8.007860772919022,0,1,0,-9,2,0,-10,37.18469793425366,-9,0,0,62,2,3,1,-9,-9,2019,1,1,11,0,37,0,15,1,0,1,0,9.865091356879041,9.865091356879041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,7,4,1,375.5,0,0,0 +10668,13082,23867,23866,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.213832724197228,8.160486360083452,0,1,0,-9,2,0,10,-43.31876985897831,0,0,0,52,2,4,1,3,3,2019,1,2,6,0,32,39,15,1,0,1,0,10.32673884141172,10.32673884141172,0,0,0,0,0,0,0,0,0,0,3.872476548853559,0,0,0,57.33,53.46,6,1,0,0,7,4,1,375.5,0,0,0 +10669,13083,23868,23869,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,5,0,7.510370708968324,7.462137707002594,1,0,-9,46,0,-4,135.677910500289,0,0,0,71,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8745978329279,7.560352323415138,118.1574626027422,1,62.39,56.71,6,1,0,0,4,3,1,544,0,0,0 +10669,13083,23869,23868,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,6.76133033269381,6.915694792043492,1,0,-9,10,0,4,21.56871476531165,0,0,0,67,2,5,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,67.34146732616435,43.59431356823273,0,0,0,1,1,0,2.400754342471518,6.5177439036522,0,0,50,47,5,1,0,0,4,3,1,544,0,0,0 +10670,13084,23870,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-934.7670472734766,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,58.72,4,1,0,0,4,1,1,261,0,0,0 +10671,13085,23871,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,1,0,7.523617197786348,7.674050234046174,3,0,0,0,-9,0,-886.0716953770573,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.298837425305357,0,0,39.48,21.54,3,1,0,0,8,3,1,166,0,0,0 +10671,13086,23872,-9,-9,23871,2,1,1,64,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1083.716600918462,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,4,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,8,1,1,193,0,0,0 +10672,13087,23873,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,3,0,5.744486571142245,5.409357893582322,3,0,0,0,-9,0,-1002.766313060638,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,2.87219413340773,0,0,0,0,0,1,1,0,0,5.458616933916363,0,0,50.41,33.6,7,1,0,0,2,2,0,748,0,0,0 +10673,13088,23874,-9,23877,23875,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.350511329438,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,1611.25,0,0,0 +10673,13088,23875,23877,-9,-9,1,1,1,45,1,1,2,0,2,-9,2,1,0,5,8.698886638466334,8.689681369976869,0,2,0,-9,6,0,8,99.5396641213858,0,0,0,37,1,4,1,2,2,2019,1,2,10,0,44,50,15,1,0,1,0,19.51066111318091,19.51066111318091,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60,56.43,6,1,0,0,13,4,1,1611.25,0,0,0 +10673,13088,23876,-9,23877,23875,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.862248105762,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,1611.25,0,0,0 +10673,13088,23877,23875,-9,-9,2,1,0,37,1,1,2,0,1,-9,2,1,0,4,7.796495572681646,7.345050353616819,0,2,0,-9,6,0,-8,58.72618055384951,0,0,1,45,2,5,1,-9,-9,2019,1,1,12,0,27,27,15,1,0,1,0,7.859467223099841,7.859467223099841,0,0,0,0,0,0,0,1,1,0,5.116715042807068,0,0,0,54.2,57.49,6,1,0,0,13,4,1,1611.25,0,0,0 +10674,13089,23878,-9,23879,23880,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1133.366650164571,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,840.75,0,0,0 +10674,13089,23879,23880,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,5,7.898384598503453,7.713760391121355,0,2,0,-9,13,0,0,-55.13390216977471,0,0,1,35,2,4,1,1,1,2019,1,2,9,3,24,25,15,1,3,1,0,10.71918448790446,10.71918448790446,0,0,0,0,0,0,0,1,1,0,3.470808579375288,0,0,0,42,59.06,6,1,0,0,10,5,1,840.75,0,0,0 +10674,13089,23880,23879,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,4,8.813014357341647,8.926892669111806,0,2,0,-9,13,0,0,14.0511920947346,0,0,0,35,1,5,1,2,2,2019,1,1,20,8,57,45,15,1,8,1,0,15.74759352953205,15.74759352953205,0,0,0,0,0,0,0,1,1,0,4.919912442435141,0,0,0,51.83,57.2,5,1,0,0,10,5,1,840.75,0,0,0 +10674,13089,23881,-9,23879,23880,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1190.70955024047,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,5,1,840.75,0,0,0 +10675,13090,23882,23883,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,4,0,0,0,2,0,-9,7,0,-6,-90.56740598469766,0,0,1,36,1,4,1,-9,-9,2019,1,1,11,0,0,37,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227512275873638,0,0,0,47,57,5,3,0,0,8,5,0,999,0,0,0 +10675,13090,23883,23882,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,4,9.341378712405653,9.585283305100843,0,2,0,-9,7,0,6,-24.36125691662004,0,0,0,30,1,4,1,3,2,2019,1,2,10,0,40,45,15,1,1,1,0,26.65693080874256,26.65693080874256,0,0,0,0,0,0,0,0,0,0,3.397542468890767,0,0,0,50,57,5,3,0,0,8,5,0,999,0,0,0 +10675,13090,23884,-9,23882,23883,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-877.5981319591999,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,3,0,0,8,5,0,999,0,0,0 +10676,13091,23885,-9,23886,-9,1,1,1,39,2,0,0,0,2,-9,1,1,0,4,6.487470892278404,6.702851957458211,0,3,0,0,0,-9,0,-999.4696159877963,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,25,0,15,1,0,-9,1,4.07399545849432,4.07399545849432,0,0,0,0,0,0,0,1,1,0,0,0,77.31447650678264,3,39.89,61.68,4,3,0,1,7,2,1,527,0,0,0 +10676,13092,23886,-9,-9,-9,3,1,0,65,3,0,0,0,3,-9,6,3,0,1,0,0,0,3,0,0,0,-9,0,-927.7523021201703,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,1,0,0,4.956820755965218,0,0,0,1,1,0,0,0,0,0,37.83,16.67,7,3,0,0,7,1,1,245,0,0,0 +10677,13093,23887,23888,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.061660001595785,8.217544431245358,1,0,-9,40,0,7,85.82880269189242,0,0,0,64,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.207618048923932,8.217404856991573,0,0,59.46,46.99,6,1,0,0,4,3,1,556,0,0,0 +10677,13093,23888,23887,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,6.445510716285745,6.313196038495665,1,0,-9,40,0,-7,34.66758409727387,0,0,0,71,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.234943351128845,0,0,57.33,53.46,6,1,0,0,4,3,1,556,0,0,0 +10678,13094,23889,23890,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,3,9.390599485100367,9.668619053425713,0,1,0,-9,7,0,0,61.28002300253301,0,0,0,56,1,4,1,2,1,2019,1,1,7,0,46,50,15,1,0,1,0,22.62021460778923,22.62021460778923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,45.5,5,1,0,0,4,5,1,623.5,0,0,0 +10678,13094,23890,23889,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.385740790089942,8.057353654115126,0,1,0,-9,7,0,0,76.09145836027487,0,0,0,56,1,3,1,2,3,2019,1,2,10,0,23,20,15,1,0,1,0,21.89356174000066,21.89356174000066,0,0,0,0,0,0,0,1,1,0,5.359155430002629,0,0,0,46.16,58.62,6,1,0,0,4,5,1,623.5,0,0,0 +10678,13095,23891,-9,23890,23889,3,1,1,25,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1028.377798098777,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,65.69,4,1,1,0,4,1,1,105,0,0,0 +10678,13096,23892,-9,23890,23889,4,1,1,23,2,0,0,0,1,-9,2,1,0,3,6.805865508448488,7.109915459086662,0,3,0,0,0,-9,0,-976.4183976455347,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,1,20,10,15,1,1,-9,1,6.236636247040575,6.236636247040575,0,0,0,0,0,0,0,1,1,0,1.066933717866262,0,0,0,44.59,48.37,3,1,0,0,4,2,1,888,0,0,0 +10679,13097,23893,-9,23894,23895,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.5666573482323,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,4,1,709,0,0,0 +10679,13097,23894,23895,-9,-9,2,1,0,44,1,0,3,0,2,-9,2,1,0,3,8.237800194955215,8.492324694691179,0,2,0,-9,17,0,2,43.5973017499104,0,0,1,42,2,3,1,-9,-9,2019,1,1,5,0,30,40,15,1,0,1,0,16.94212227727012,16.94212227727012,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,6,3,0,0,9,4,1,709,0,0,0 +10679,13097,23895,23894,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,3,8.099646165604719,7.918320924441045,0,2,0,-9,17,0,-2,114.8445117672568,0,0,0,44,2,3,1,2,2,2019,1,2,6,0,32,32,15,1,0,1,0,8.409775045937515,8.409775045937515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,6,3,0,0,9,4,1,709,0,0,0 +10679,13097,23896,-9,23894,23895,4,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1033.339042393399,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,3,0,0,9,4,1,709,0,0,0 +10679,13097,23897,-9,23894,23895,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.199326293057,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,9,4,1,709,0,0,0 +10680,13098,23898,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,5,8.376305268196555,8.26058666429153,0,3,0,0,0,-9,0,-935.3159673122926,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,43,105,15,1,0,-9,0,10.05318369077052,10.05318369077052,0,0,0,0,0,0,0,0,0,0,2.349185862169949,0,0,0,51.73,58.82,6,1,0,0,12,4,1,1407,0,0,0 +10681,13099,23899,23900,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,40,0,4,0,0,0,0,61,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,13.71993217019416,0,0,0,0,1,1,0,6.617731951551775,0,0,0,64.07000000000001,26.97,3,1,0,0,13,1,1,979.5,0,0,0 +10681,13099,23900,23899,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-4,0,0,0,0,65,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,0,0,13,1,1,979.5,0,0,0 +10682,13100,23901,23902,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,38,0,1,77.04679517402151,0,0,0,65,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.966447483567853,0,0,0,60.12,54.8,7,1,0,0,2,2,1,399.5,0,0,0 +10682,13100,23902,23901,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.690005761941237,7.231284353680478,1,0,-9,38,0,-1,-56.75311936965141,0,0,0,66,3,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.297087182442794,7.589571696120901,0,0,56.35,51,6,1,0,0,2,2,1,399.5,0,0,0 +10683,13101,23903,-9,23905,23906,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-874.3691801266928,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,0,907.75,0,0,0 +10683,13101,23904,-9,23905,23906,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.0718709382179,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,0,907.75,0,0,0 +10683,13101,23905,23906,-9,-9,2,1,0,36,1,0,2,0,2,-9,2,1,0,4,8.606853481346327,8.42897479065507,0,2,0,-9,7,0,-3,91.41372269761946,0,0,1,39,2,4,1,2,3,2019,1,1,14,2,40,40,15,1,2,1,0,12.96686334306044,12.96686334306044,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,9,5,0,907.75,0,0,0 +10683,13101,23906,23905,-9,-9,1,1,1,39,1,0,2,0,2,-9,1,1,0,4,8.880766512101493,8.951752903416553,0,2,0,-9,7,0,3,58.86776848205574,0,0,0,36,2,4,1,3,-9,2019,1,2,10,0,40,48,15,1,0,1,0,26.16867388547022,26.16867388547022,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,9,5,0,907.75,0,0,0 +10684,13102,23907,-9,23909,23908,3,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-956.0374362625579,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.01,47.66,7,1,0,0,8,4,1,1310.666666666667,0,0,0 +10684,13102,23908,23909,-9,-9,2,1,1,62,1,0,1,0,2,-9,2,1,0,3,7.736140616487425,8.879546733738565,8.665320587787861,2,0,-9,20,0,14,-46.72132452490829,0,0,0,48,2,4,1,2,2,2019,1,1,12,0,28,28,15,1,0,1,0,10.17358417608026,10.17358417608026,0,0,0,0,0,0,0,1,1,0,0,8.488252964776963,0,0,50.6,51,4,1,0,0,8,4,1,1310.666666666667,0,0,0 +10684,13102,23909,23908,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,4,6.770345061928772,6.341386903760773,0,2,0,-9,20,0,-14,-97.43467967347517,0,0,0,62,2,3,1,2,2,2019,1,2,6,0,35,28,15,1,0,1,0,2.617075683657176,2.617075683657176,0,0,0,0,0,0,0,1,1,0,3.290779097095829,0,0,0,55.78,49.92,6,1,0,0,8,4,1,1310.666666666667,0,0,0 +10685,13103,23910,23911,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,4,8.055783211942416,8.063511607690089,0,2,0,-9,25,0,-4,32.88050755971877,0,0,1,48,3,5,1,3,2,2019,1,1,8,0,40,40,15,1,0,1,0,11.17672627742347,11.17672627742347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,4,3,0,0,4,5,1,691.6666666666666,0,0,0 +10685,13103,23911,23910,-9,-9,1,1,1,48,1,0,1,0,3,-9,1,1,0,5,9.707079839043677,9.968015976305756,0,2,0,-9,25,0,4,-80.53242704492462,0,0,0,44,2,4,1,3,2,2019,1,2,12,1,50,60,15,1,1,1,0,42.07442371302437,42.07442371302437,0,0,0,0,0,0,0,1,1,0,4.558580591617687,0,0,0,49.29,42.18,7,3,0,0,4,5,1,691.6666666666666,0,0,0 +10685,13103,23912,-9,23910,23911,4,1,0,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-990.2954676888133,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,6,3,0,0,4,5,1,691.6666666666666,0,0,0 +10685,13104,23913,-9,23910,23911,3,1,1,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1003.573943116302,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,3,0,0,4,1,1,1671,0,0,0 +10686,13105,23914,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,3,8.324682342511608,8.270499015108873,0,3,0,0,0,-9,0,-953.3609585009178,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,27,9,20,24,15,1,9,-9,0,22.16133225507927,22.16133225507927,0,0,0,0,0,0,0,0,0,0,3.082956531832587,0,0,0,33.35,42.63,3,1,0,1,10,4,0,670,0,0,0 +10687,13106,23915,23916,-9,-9,1,1,0,40,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,20,0,1,80.86857936652041,0,0,1,39,2,5,1,3,3,2019,3,2,15,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.94817294038282,3,35.95,36.01,5,1,0,0,12,3,1,913.8,0,0,0 +10687,13106,23916,23915,-9,-9,2,1,1,39,1,0,3,0,2,-9,2,1,0,5,8.295185068551231,8.416754989291791,0,2,0,-9,20,0,-1,-91.80092281808011,0,0,0,40,1,3,3,3,-9,2019,2,1,12,0,65,39,15,1,0,3,0,6.849546498323725,6.849546498323725,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,7,1,0,0,12,3,1,913.8,0,0,0 +10687,13106,23917,-9,23915,23916,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.2454579217361,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,913.8,0,0,0 +10687,13106,23918,-9,23915,23916,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.596022917463,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,3,1,913.8,0,0,0 +10687,13106,23919,-9,23915,23916,3,1,1,14,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1081.202274461824,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,12,3,1,913.8,0,0,0 +10688,13107,23920,23921,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,5,7.8253173923237,7.801774168017279,0,1,0,-9,36,0,-3,-.5306390324808243,0,0,0,59,2,3,3,3,2,2019,2,2,4,0,10,15,15,1,0,4,0,26.14071847331414,26.14071847331414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,1,4,1,393.5,0,0,0 +10688,13107,23921,23920,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,3,0,8.511205642706544,8.302939197139734,1,0,-9,36,0,3,-29.33067809904078,0,0,0,56,1,5,1,3,3,2019,3,1,8,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.437834862447836,0,0,0,46.03,50.54,4,1,0,0,1,4,1,393.5,0,0,0 +10689,13108,23922,23923,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,4,0,6.982139896232302,7.145432286115,1,0,-9,59,0,-1,36.01007932130253,0,0,0,81,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.162372329346379,0,0,57.16,56.15,7,1,0,0,2,3,1,1438.5,0,0,0 +10689,13108,23923,23922,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,4,0,7.196170030671373,6.927517360241109,1,0,-9,59,0,1,34.84838090632588,0,0,0,80,2,4,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.292773389918032,0,0,67.09999999999999,31.05,6,1,0,0,2,3,1,1438.5,0,0,0 +10690,13109,23924,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,2,1,0,4,8.4407474943814,8.640004054611085,0,3,0,0,0,-9,0,-989.985821924754,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,11.85155321906234,11.85155321906234,0,0,0,0,0,0,0,0,0,0,4.052588810546522,0,0,0,62.49,55.09,7,1,0,0,12,4,0,590,0,0,0 +10691,13110,23925,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.600454888107112,8.702007528320502,0,3,0,0,0,-9,0,-888.7144996699515,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,55,15,1,0,-9,0,13.60313486446769,13.60313486446769,0,0,0,0,0,0,0,0,0,0,3.72171977407065,0,0,0,42.44,57.54,6,1,0,0,2,5,1,1453,0,0,0 +10692,13111,23926,-9,23930,23929,6,1,1,16,2,0,4,0,2,1,2,2,0,4,5.96730316399102,6.635711197617415,0,2,0,0,0,-9,0,-1024.452978257093,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,16,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.09,51.02,6,3,0,0,2,2,1,540.8333333333334,0,0,0 +10692,13111,23927,-9,23930,23929,5,1,0,16,2,0,4,1,3,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-936.3681268132972,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.04,39.41,6,3,0,0,2,2,1,540.8333333333334,0,0,0 +10692,13111,23928,-9,23930,23929,7,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.7259430661164,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,1,540.8333333333334,0,0,0 +10692,13111,23929,23930,-9,-9,2,1,1,47,1,0,4,0,2,-9,2,1,0,2,7.73453047101144,7.84578593248691,0,2,0,-9,9,0,0,9.86657806229123,0,0,0,47,2,3,3,3,3,2019,2,1,29,12,0,24,15,1,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.07,43.38,4,3,0,0,2,2,1,540.8333333333334,0,0,0 +10692,13111,23930,23929,-9,-9,1,1,0,47,1,0,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,26,0,0,26.16589432717643,0,0,0,47,2,2,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.94,41.97,5,3,0,0,2,2,1,540.8333333333334,0,0,0 +10692,13111,23931,-9,23930,23929,8,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.512296809777,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,2,1,540.8333333333334,0,0,0 +10692,13112,23932,-9,23930,23929,3,1,1,20,2,0,4,0,2,-9,97,3,0,5,6.697436831435538,7.794451809974981,6.63766688119382,3,0,0,0,-9,0,-955.4368781041002,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,12,22,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.491604887979445,0,0,0,50.54,62.09,7,3,0,0,2,3,1,329,0,0,0 +10692,13113,23933,-9,23930,23929,4,1,0,18,2,0,4,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-885.9475989063009,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.943811701843024,0,0,0,59.53,56.44,1,3,1,0,2,3,1,1300,0,0,0 +10693,13114,23934,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1069.6532233181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.953670718205323,0,5.518071872704347,0,1,1,0,0,0,0,0,60.37,15.19,6,1,0,0,13,1,0,9168,0,0,0 +10694,13115,23935,23936,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,5,9.280077247497475,9.173631366984612,0,2,0,-9,7,0,6,-81.170176129551,0,0,0,36,1,3,1,2,2,2019,1,2,7,0,41,40,15,1,0,1,0,19.18393329185033,19.18393329185033,0,0,0,0,0,0,0,1,1,0,5.28821474232353,0,0,0,62.96,55.09,6,1,0,0,2,5,1,1496,0,0,0 +10694,13115,23936,23935,-9,-9,2,1,0,36,1,0,1,0,1,-9,2,1,0,3,7.267878343595489,7.080818019995856,0,2,0,-9,7,0,-6,73.45823303336464,0,0,1,42,2,5,1,-9,-9,2019,1,1,11,1,28,28,15,1,1,1,0,6.473301528499642,6.473301528499642,0,0,0,0,0,0,0,1,1,0,.543468516832185,0,0,0,42.21,52.5,5,1,0,0,2,5,1,1496,0,0,0 +10694,13115,23937,-9,23936,23935,3,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1069.119299160684,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,5,1,1496,0,0,0 +10695,13116,23938,23939,-9,-9,1,1,1,51,1,0,4,0,3,-9,6,3,0,3,0,0,0,2,0,-9,10,0,5,0,0,0,0,46,3,2,3,3,3,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41330336207619,2,49.04,55.86,5,1,0,0,13,1,0,552,0,0,0 +10695,13116,23939,23938,-9,-9,2,1,0,46,1,0,4,0,3,-9,8,3,1,2,0,0,0,2,0,-9,10,0,-5,0,0,0,0,51,3,3,3,3,-9,2019,4,1,17,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,24.37,5,1,0,0,13,1,0,552,0,0,0 +10695,13116,23940,-9,23939,23938,5,1,0,14,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1088.664214414928,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,13,1,0,552,0,0,0 +10695,13117,23941,-9,23942,-9,8,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-979.9212724535852,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,1,0,341.25,0,0,0 +10695,13117,23942,-9,23939,23938,3,1,0,27,2,0,4,0,2,-9,6,3,0,4,0,0,0,3,0,0,0,-9,0,-933.3581425728065,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.102542680522715,3,51.83,57.2,5,1,0,0,13,1,0,341.25,0,0,0 +10695,13117,23943,-9,23942,-9,6,1,1,10,2,0,4,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-929.1667180446302,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,13,1,0,341.25,0,0,0 +10695,13117,23944,-9,23942,-9,7,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1118.013117271391,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,1,0,341.25,0,0,0 +10695,13118,23945,-9,23939,23938,4,1,1,21,2,0,4,0,2,-9,2,1,0,4,7.85345138864988,7.828437602706074,0,3,0,0,0,-9,0,-1072.332968530642,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,1,8.819673646120217,8.819673646120217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,13,3,0,257,0,0,0 +10696,13119,23946,23947,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,4,8.774368941516999,8.428372302370796,0,2,0,-9,16,0,1,93.68350295636463,0,0,0,39,2,5,1,3,3,2019,1,1,7,0,46,48,15,1,0,1,0,13.73843379716721,13.73843379716721,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,569.5,0,0,0 +10696,13119,23947,23946,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,5,8.127875730764856,7.978245160781278,0,2,0,-9,16,0,-1,-217.1937165096616,0,0,1,40,1,4,1,3,3,2019,1,2,6,0,34,22,15,1,0,1,0,12.74452969782887,12.74452969782887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,11,4,1,569.5,0,0,0 +10696,13119,23948,-9,23947,23946,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.9401234235633,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,569.5,0,0,0 +10696,13119,23949,-9,23947,23946,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.560527764208,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,1,569.5,0,0,0 +10697,13120,23950,23951,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.880700716144672,8.450256172207133,0,1,0,-9,38,0,-10,72.25009219262456,0,0,0,65,2,3,1,3,3,2019,1,2,14,2,37,37,15,1,2,1,0,9.772528837003044,9.772528837003044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.14,38.19,4,4,0,0,10,4,1,831,0,0,0 +10697,13120,23951,23950,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,3,7.86100538923643,7.838662275273435,6.504719416257495,1,0,-9,9,0,10,-23.88777946714288,0,0,0,55,2,3,1,-9,-9,2019,1,1,11,0,30,0,15,1,0,1,0,8.751264164953724,8.751264164953724,0,0,0,0,0,0,0,0,0,0,0,6.704285073406485,0,0,57.33,53.46,5,4,0,0,10,4,1,831,0,0,0 +10698,13121,23952,23953,-9,-9,2,1,0,45,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,-7,0,-9,0,0,52,3,2,3,3,3,2019,4,1,7,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.8705086013638237,0,0,0,36.77,14.57,6,1,0,0,10,1,0,455.5,0,0,0 +10698,13121,23953,23952,-9,-9,1,1,1,52,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,1,-9,7,0,-9,0,0,45,2,1,3,-9,3,2019,4,2,6,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.477337362676175,0,75.26704046299807,2,52.04,48.94,6,1,0,1,10,1,0,455.5,0,0,0 +10699,13122,23954,23959,-9,-9,1,1,1,39,1,0,6,0,3,-9,2,1,0,2,7.06462265782869,7.294673908695905,0,2,0,-9,16,-9,2,-82.11821076776161,-9,0,0,37,3,3,3,3,3,2019,2,2,25,12,24,0,15,1,12,3,0,6.738177233802063,6.738177233802063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.31,41.6,3,3,0,1,2,2,0,1561,0,0,0 +10699,13122,23955,-9,23959,23954,6,1,1,10,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1124.248665836208,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,2,2,0,1561,0,0,0 +10699,13122,23956,-9,23959,23954,4,1,0,13,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1106.436019951148,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,0,1561,0,0,0 +10699,13122,23957,-9,23959,23954,5,1,0,12,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1081.791617821629,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,2,2,0,1561,0,0,0 +10699,13122,23958,-9,23959,23954,8,1,0,8,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1055.796925348506,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,0,1561,0,0,0 +10699,13122,23959,23954,-9,-9,2,1,0,37,1,0,6,0,3,-9,6,3,0,3,0,0,0,2,0,-9,16,-9,-2,28.1496359696468,-9,0,1,39,3,2,1,2,2,2019,3,1,29,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.42,36.49,4,3,0,0,2,2,0,1561,0,0,0 +10699,13122,23960,-9,23959,23954,7,1,0,7,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1139.548069895651,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,0,1561,0,0,0 +10699,13123,23961,-9,23959,23954,3,1,0,18,2,0,6,1,2,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-1044.637283925123,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.27,53,3,3,0,0,2,2,0,573,0,0,0 +10700,13124,23962,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,3,0,6.345199913809198,5.992365135535907,3,0,0,0,-9,0,-1002.854227475604,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.869541727315826,0,0,0,59.31,49.81,6,1,0,0,2,2,1,749,0,0,0 +10701,13125,23963,23964,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,5,0,8.147873058584663,7.859015816473828,1,0,-9,9,0,2,50.23989587345783,0,0,0,63,1,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.66249949718394,8.02552186683825,0,0,51.73,58.82,6,1,0,0,8,4,1,988.5,0,0,0 +10701,13125,23964,23963,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,3,0,7.928350364480415,8.183956880468259,1,0,-9,9,0,-2,161.4168755309611,0,0,0,65,1,5,3,2,2,2019,4,1,14,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.857349139605134,7.669293591094978,20.88426406439309,3,49.58,54.26,4,3,0,0,8,4,1,988.5,0,0,0 +10702,13126,23965,23966,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,6.238109450556476,6.509242069101792,1,0,-9,8,0,10,-177.979249999619,0,0,0,70,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.416129303817411,6.031241330361127,0,0,53.27,35.09,6,1,0,0,7,2,1,4120,0,0,0 +10702,13126,23966,23965,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,6.688725235479335,6.603234199588535,1,0,-9,8,0,-10,75.72872876286384,0,0,0,80,3,2,3,3,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.776815202898805,6.996907630891356,0,0,46.02,58.57,4,1,0,1,7,2,1,4120,0,0,0 +10703,13127,23967,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,5,0,8.008712101817135,8.23091400197873,3,0,0,0,-9,0,-1012.420081482448,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.200462478856205,8.144737231613044,0,0,57.06,57.76,6,1,0,0,7,4,1,216,0,0,0 +10704,13128,23968,23969,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.151253325704817,7.521709250362337,0,2,0,-9,26,0,3,132.6822274496955,0,0,0,45,3,1,3,2,2,2019,2,2,8,1,41,40,15,1,1,3,0,7.766767144846829,7.766767144846829,0,0,0,0,0,0,0,1,1,0,0,0,29.19660435194387,2,49.46,56.91,7,1,0,0,13,3,0,1058.333333333333,0,0,0 +10704,13128,23969,23968,-9,-9,2,1,0,45,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,26,0,-3,-96.28692324190644,0,0,0,48,2,4,1,3,3,2019,3,1,21,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.9,21.84,7,1,0,0,13,3,0,1058.333333333333,0,0,0 +10704,13128,23970,-9,23969,23968,4,1,1,17,2,0,1,1,3,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1121.804257240321,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,60,5,1,0,0,13,3,0,1058.333333333333,0,0,0 +10704,13129,23971,-9,23969,23968,3,1,0,24,2,0,1,0,1,-9,2,1,0,4,7.817050579965213,7.851736074849048,0,3,0,0,0,-9,0,-976.2791428535902,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,35,40,15,1,2,-9,1,9.760112076819558,9.760112076819558,0,0,0,0,0,0,0,1,1,0,.6540523346292156,0,0,3,46,58,5,1,0,0,13,4,0,211,0,0,0 +10705,13130,23972,-9,23974,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.399297434584,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,2,4,0,1427.666666666667,0,0,0 +10705,13130,23973,23974,-9,-9,3,1,1,31,1,0,1,0,2,-9,2,1,0,4,8.035458129785342,7.82000276717522,0,2,0,-9,2,0,4,29.85971589895262,0,0,0,27,2,3,1,-9,-9,2019,1,1,10,0,40,35,15,1,1,1,0,9.749262806799756,9.749262806799756,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,5,0,0,2,4,0,1427.666666666667,0,0,0 +10705,13130,23974,23973,-9,-9,1,1,0,27,1,0,1,0,2,-9,2,1,0,3,8.76649878719558,8.674374413393238,0,2,0,-9,2,0,-4,-35.8924853207223,0,1,1,31,2,4,1,-9,-9,2019,1,3,10,1,42,40,15,1,1,1,0,14.47632481180294,14.47632481180294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.8,43.61,5,1,0,0,2,4,0,1427.666666666667,0,0,0 +10706,13131,23975,23976,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,49,0,-4,0,0,0,0,72,3,2,3,2,1,2019,4,1,24,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.67515065050628,1,17.77,44.96,2,1,0,1,4,1,0,2021,0,0,0 +10706,13131,23976,23975,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,49,0,4,0,0,0,0,68,2,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,36,4,1,0,0,4,1,0,2021,0,0,0 +10707,13132,23977,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,4,7.785887102758452,7.534140312431073,0,3,0,0,0,-9,0,-977.1389277803975,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,34,30,15,1,7,-9,0,12.89033043406951,12.89033043406951,0,0,0,0,0,0,0,0,0,0,1.862265455252477,0,0,0,26.3,64.78,5,1,0,0,10,3,0,886,0,0,0 +10708,13133,23978,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.043040067569608,8.314821420288194,0,3,0,0,0,-9,0,-1102.608373130308,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,39,38,15,1,0,-9,0,10.32947809048282,10.32947809048282,0,0,0,0,0,0,0,1,1,0,0,0,1.363717458043414,3,51.77,58.57,6,1,0,0,10,4,1,546,0,0,0 +10709,13134,23979,23980,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,5,7.19934764231702,7.681129448270696,7.342439375698453,1,0,-9,9,0,8,34.76467979749732,0,0,0,58,2,5,1,3,2,2019,1,2,9,0,12,12,15,1,0,1,0,16.28285111133816,16.28285111133816,0,0,0,0,0,0,0,1,1,0,2.957355911062718,7.297102684234215,0,0,51.14,60.45,5,1,0,0,5,5,1,171.5,0,0,0 +10709,13134,23980,23979,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,5,8.771663202091897,8.776559076462844,0,1,0,-9,9,0,-8,52.59541216158022,0,0,0,66,2,5,1,3,3,2019,1,1,8,1,43,42,15,1,1,1,0,17.4615363176584,17.4615363176584,0,0,0,0,0,0,0,1,1,0,3.195663052035804,0,0,0,51.14,60.45,6,1,0,0,5,5,1,171.5,0,0,0 +10710,13135,23981,23982,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,41,0,1,0,0,0,0,63,2,1,3,3,3,2019,4,2,12,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.3906948464864,1,48.27,47.75,6,1,0,0,2,1,1,829.5,0,0,0 +10710,13135,23982,23981,-9,-9,2,1,0,63,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,41,0,-1,0,0,0,0,64,2,4,3,3,2,2019,4,1,24,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,2,1,0,0,2,1,1,829.5,0,0,0 +10711,13136,23983,23984,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.618208606389642,8.244951346907341,0,1,0,-9,15,0,-5,25.49492806746761,0,0,0,56,2,3,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,17.29822860032476,17.29822860032476,0,0,0,0,0,0,0,0,0,0,5.584539001078828,0,0,0,63.13,44.02,7,1,0,0,2,5,1,2602.5,0,0,0 +10711,13136,23984,23983,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.609336284727549,8.755081869729807,0,1,0,-9,14,0,5,-145.1717459397342,0,0,0,51,2,3,1,2,2,2019,1,2,10,0,41,42,15,1,1,1,0,16.21411831818289,16.21411831818289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,5,1,0,0,2,5,1,2602.5,0,0,0 +10712,13137,23985,23986,-9,-9,1,1,0,67,1,0,0,0,1,-9,1,1,0,1,0,0,0,1,0,-9,9,0,9,11.50711917321837,0,0,0,58,2,4,1,1,1,2019,1,2,19,9,3,10,15,1,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.166601965290274,3,41.86,38.41,2,1,0,1,12,3,1,357.5,0,0,0 +10712,13137,23986,23985,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,4,8.085546950486258,8.201326302414087,0,1,0,-9,9,0,0,-9.009194806776524,0,0,0,67,1,1,1,-9,-9,2019,1,1,8,0,15,30,15,1,0,1,0,23.11649056247578,23.11649056247578,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,12,3,1,357.5,0,0,0 +10713,13138,23987,23988,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,5,9.633521336036754,9.769729823769559,0,1,0,-9,7,0,3,97.95570838682042,0,0,0,54,2,5,3,3,3,2019,2,2,8,0,47,50,15,1,0,3,0,33.31886223497307,33.31886223497307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,7,1,0,0,12,5,1,541,0,0,0 +10713,13138,23988,23987,-9,-9,2,1,0,54,1,0,0,0,2,-9,6,3,0,5,0,0,0,1,0,-9,7,0,-3,-11.52069911500357,0,0,0,57,1,5,1,2,2,2019,3,1,10,0,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.520578127696109,0,0,0,35.66,59.41,6,1,0,0,12,5,1,541,0,0,0 +10714,13139,23989,-9,23991,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1155.137676844332,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,2,0,1077.666666666667,0,0,0 +10714,13139,23990,-9,23991,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.126577543374,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,8,2,0,1077.666666666667,0,0,0 +10714,13139,23991,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,1,1,0,4,7.366623720432986,7.441223755962511,0,4,0,0,0,-9,0,-1011.912846142721,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,16,18,15,1,0,-9,0,10.91868145699645,10.91868145699645,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.12,50.58,5,1,0,0,8,2,0,1077.666666666667,0,0,0 +10715,13140,23992,-9,23993,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-952.5219193003552,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,7,1,0,2192,0,0,0 +10715,13140,23993,-9,-9,-9,1,1,0,40,2,0,2,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-988.3545635908638,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.323156797393296,3,49.25,52.88,4,1,0,0,7,1,0,2192,0,0,0 +10715,13140,23994,-9,23993,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-833.2675460252023,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,1,0,2192,0,0,0 +10716,13141,23995,-9,-9,-9,1,1,1,22,2,0,0,0,2,1,2,1,0,4,6.716827361727201,6.922480786160973,0,3,0,0,0,-9,0,-1036.470894072951,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,9,19,0,15,1,9,-9,0,4.67141660556994,4.67141660556994,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.72,65.57000000000001,5,1,0,0,11,2,0,1594,0,0,0 +10717,13142,23996,23997,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,6.325456905744877,6.514173502487782,1,0,-9,54,0,0,79.32402059940543,0,0,0,75,2,4,3,3,2,2019,4,1,19,6,0,0,15,4,6,4,0,0,0,1,0,23.71495175449046,0,0,0,0,1,1,0,0,6.324605167195574,0,0,29.67,42.63,2,1,0,0,1,2,1,1746,0,0,0 +10717,13142,23997,23996,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,5.308322509945844,5.287499731740334,1,0,-9,54,0,0,-141.9675242701534,0,0,0,75,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.655857695655494,5.357537863744295,0,0,63.42,36.84,6,1,0,0,1,2,1,1746,0,0,0 +10718,13143,23998,-9,23999,24000,3,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.152041343041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,5,1,1420,0,0,0 +10718,13143,23999,24000,-9,-9,1,1,0,47,1,0,1,0,1,-9,97,3,0,4,0,0,0,2,0,-9,20,0,1,-24.49800503326932,0,0,0,46,1,4,1,3,3,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,49.67,5,1,0,0,1,5,1,1420,0,0,0 +10718,13143,24000,23999,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,4,8.974825860351679,9.387160588276014,0,2,0,-9,20,0,-1,-66.35798271611027,0,0,0,47,1,4,3,2,1,2019,2,1,9,1,34,34,15,1,1,3,0,28.85813550359484,28.85813550359484,0,0,0,0,0,0,0,1,1,0,4.612116571439239,0,0,0,41.06,62.04,5,1,0,0,1,5,1,1420,0,0,0 +10719,13144,24001,24002,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,1,8.173160545174493,8.154002490389859,0,1,0,-9,10,0,-5,-58.47830359653718,0,0,0,62,2,2,1,2,2,2019,1,2,8,0,40,42,15,1,0,1,0,9.684747024052449,9.684747024052449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.94,19.88,4,1,0,0,10,4,1,1582.5,0,0,0 +10719,13144,24002,24001,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,2,7.477869461037776,7.894788639125477,5.660071588822182,1,0,-9,10,0,5,-1.17377774965244,0,0,0,57,3,1,1,-9,-9,2019,1,1,10,0,25,26,15,1,0,1,0,9.632097976670552,9.632097976670552,0,0,0,0,0,0,0,0,0,0,5.32711998280156,0,0,0,62.92,18.81,5,1,0,0,10,4,1,1582.5,0,0,0 +10720,13145,24003,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-908.7912141718888,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,53.99,6,1,1,0,4,1,0,1831,0,0,0 +10721,13146,24004,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,5.084501076384996,4.748080811729295,3,0,0,0,-9,0,-928.9629254863984,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.741475328944036,4.786140442049982,0,0,56.57,57.78,6,1,0,0,11,2,1,191,0,0,0 +10722,13147,24005,24006,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.15648014248894,8.268350530319939,1,0,-9,41,0,3,121.4091358442096,0,0,0,58,2,2,3,2,2,2019,4,2,13,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3.720058954669264,7.968753664994255,0,0,52.23,55.6,4,1,0,0,13,3,1,499,0,0,0 +10722,13147,24006,24005,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,41,0,-3,23.63512612315704,0,0,0,61,1,4,3,3,3,2019,4,1,20,8,0,0,15,3,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.5102822126995323,0,0,0,35.6,47.42,5,1,0,0,13,3,1,499,0,0,0 +10723,13148,24007,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-991.6421610879758,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,4.976283297374195,0,15.9804488995447,0,0,18.05599199381984,1,1,0,0,0,0,0,52,48,5,1,0,0,11,1,0,243,0,0,0 +10724,13149,24008,24009,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,7.451456802508334,7.20519520499525,1,0,-9,39,0,5,6.997084556283152,0,0,0,64,2,3,3,3,2,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.689232490405374,6.782804015793439,0,0,51.42,21.32,4,1,0,0,5,2,1,441,0,0,0 +10724,13149,24009,24008,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,6.14590930709453,6.374246652680182,1,0,-9,8,0,-5,-189.7384747257747,0,0,0,69,2,2,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.879402339324356,6.431231066834973,8.773862476782305,3,56.6,47.06,1,1,0,0,5,2,1,441,0,0,0 +10725,13150,24010,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,1,0,7.018205876401379,6.760350750892565,3,0,0,0,-9,0,-1104.368306478819,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.896224013688335,0,0,28.3,33.51,2,1,0,1,10,2,0,184,0,0,0 +10726,13151,24011,24012,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,4.255165512296839,4.383162380063435,1,0,-9,52,0,2,-34.40590646189182,0,0,0,73,1,3,3,3,2,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.0459641338276729,4.67360185856998,0,0,39.91,42.27,4,1,0,0,7,3,0,253,0,0,0 +10726,13151,24012,24011,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.439005290395343,7.731215098006006,1,0,-9,52,0,-2,13.37242303248912,0,0,0,75,2,3,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.227662469872111,7.954110886302404,0,0,58.47,50.22,6,1,0,0,7,3,0,253,0,0,0 +10727,13152,24013,24014,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.970310379643123,7.608505537500951,0,1,0,-9,27,0,-6,-25.2559355320593,0,0,0,52,2,2,1,2,3,2019,1,1,17,6,35,35,15,1,6,1,0,8.894255897996562,8.894255897996562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.3,63.25,6,1,0,0,11,5,1,1533.5,0,0,0 +10727,13152,24014,24013,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,9.027312993084212,9.110038440630566,0,1,0,-9,27,0,6,-17.49721704069712,0,0,0,46,2,4,1,3,3,2019,1,2,12,3,40,40,15,1,3,1,0,23.15452324406626,23.15452324406626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.42,29.35,5,1,0,0,11,5,1,1533.5,0,0,0 +10727,13153,24015,-9,24013,24014,3,1,0,24,2,0,0,0,2,-9,2,1,0,3,8.102557401032188,7.769810264571947,0,3,0,0,0,-9,0,-1149.224078016519,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,40,15,1,0,-9,1,7.873429651224648,7.873429651224648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,6,1,0,0,11,3,1,1304,0,0,0 +10727,13154,24016,-9,24013,24014,4,1,1,20,2,0,0,0,3,-9,2,1,0,4,8.358484556618651,8.362274582193846,0,3,0,0,0,-9,0,-971.2408425074652,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,45,15,1,1,-9,1,12.11891804350887,12.11891804350887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,11,4,1,762,0,0,0 +10728,13155,24017,24018,-9,-9,2,1,0,67,1,0,0,0,2,-9,2,1,0,3,7.322825257570134,7.361075189666963,0,1,0,-9,7,0,-5,20.24107099121353,0,0,0,72,2,1,3,3,-9,2019,2,1,6,0,28,25,15,1,0,4,0,7.20666996720524,7.20666996720524,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,11,3,0,901,0,0,0 +10728,13155,24018,24017,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,1,0,6.922007111305267,7.156051079476756,1,0,-9,7,0,5,92.52985593081662,0,0,0,67,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.947780091283513,0,0,63.09,21.65,7,1,0,0,11,3,0,901,0,0,0 +10729,13156,24019,24020,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,5,7.849039184781473,7.72825458915069,0,1,0,-9,24,0,-1,52.02641744636534,0,0,0,48,2,3,1,2,2,2019,1,2,8,0,26,0,15,1,0,1,0,11.47133962482995,11.47133962482995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,7,5,1,623.5,0,0,0 +10729,13156,24020,24019,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,3,8.68011410808356,8.889242239448835,0,1,0,-9,24,0,1,112.2567182627543,0,0,0,47,2,5,1,3,2,2019,1,1,4,0,39,99,15,1,0,1,0,18.23842863146711,18.23842863146711,0,0,0,0,0,0,0,1,1,0,1.520467256823698,0,0,0,50.63,50.99,6,1,0,0,7,5,1,623.5,0,0,0 +10729,13157,24021,-9,24019,24020,3,1,1,19,2,0,0,0,2,-9,2,1,0,5,8.43165550822796,7.951928417481779,0,3,0,0,0,-9,0,-988.3134082339532,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,59,0,15,1,1,-9,1,10.27952901448208,10.27952901448208,0,0,0,0,0,0,0,1,1,0,5.942824413009416,0,0,0,59.87,42.78,6,1,0,0,7,4,1,1113,0,0,0 +10730,13158,24022,24023,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,4,9.557444444856882,9.779033013634827,0,2,0,-9,9,0,-4,-11.73471584364211,0,0,0,53,2,3,1,-9,-9,2019,1,2,10,1,80,40,15,1,1,1,0,23.71300725254311,23.71300725254311,0,0,0,0,0,0,0,0,0,0,7.379503319506051,0,0,0,55.74,36.72,6,1,0,0,8,5,1,487.25,0,0,0 +10730,13158,24023,24022,-9,-9,2,1,0,53,1,0,2,0,2,-9,2,1,0,3,7.453913190693198,7.28595652498569,0,2,0,-9,18,0,4,9.465012311957102,0,0,0,49,1,4,1,2,1,2019,1,1,10,0,10,0,15,1,0,1,0,14.70061841655595,14.70061841655595,0,0,0,0,0,0,0,0,0,0,8.127269478012867,0,0,0,52,54.51,6,1,0,0,8,5,1,487.25,0,0,0 +10730,13158,24024,-9,24023,24022,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-869.4913751902459,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,487.25,0,0,0 +10730,13158,24025,-9,24023,24022,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.0307011513956,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,8,5,1,487.25,0,0,0 +10731,13159,24026,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,3,0,6.956566043782441,6.970547137433386,3,0,0,0,-9,0,-1055.180834132324,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.936208221617622,0,0,54,46,6,1,0,0,11,2,1,237,0,0,0 +10732,13160,24027,-9,-9,-9,1,1,1,54,3,0,1,0,2,-9,2,1,0,4,8.440242527866319,8.176607660279039,0,4,0,-9,0,-9,0,-979.7035139653018,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,30,0,15,1,4,-9,0,12.38347551329749,12.38347551329749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.18,53.17,4,1,0,0,10,3,1,206,0,0,0 +10733,13161,24028,-9,24029,24030,4,1,0,16,2,0,1,1,3,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1080.412602310294,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.72,52.39,1,1,0,1,1,3,0,837.6666666666666,0,0,0 +10733,13161,24029,24030,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.179412273079095,7.473480115120964,0,2,0,-9,25,0,-2,-134.3140252334934,0,0,0,49,3,4,1,-9,-9,2019,1,2,8,0,22,22,15,1,0,1,0,9.3947243259749,9.3947243259749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,0,1,3,0,837.6666666666666,0,0,0 +10733,13161,24030,24029,-9,-9,2,1,1,49,1,0,1,0,3,-9,2,1,0,4,7.902601462825124,7.900501147328504,0,2,0,-9,25,0,2,32.85797902309852,0,0,0,47,2,3,1,-9,2,2019,1,1,6,0,40,37,15,1,0,1,0,7.756049497444942,7.756049497444942,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.81,47.49,6,1,0,0,1,3,0,837.6666666666666,0,0,0 +10733,13162,24031,-9,24029,24030,3,1,1,20,2,0,1,0,2,-9,2,1,0,4,7.186982569217033,6.84312601297672,0,3,0,0,0,-9,0,-953.1031016633397,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,22,0,15,1,0,-9,1,4.588331969560911,4.588331969560911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,55.45,7,1,0,0,1,2,0,282,0,0,0 +10734,13163,24032,24033,-9,-9,1,1,0,63,1,0,0,0,3,-9,2,1,0,5,7.461839948865221,7.646649460537287,6.4394505599341,1,0,-9,36,0,3,68.72794629480042,0,0,0,60,3,5,1,3,2,2019,1,2,7,0,24,24,15,1,0,1,0,7.702551810934042,7.702551810934042,0,0,0,0,0,0,0,0,0,0,0,6.287372902866275,0,3,57.06,57.76,6,1,0,0,2,3,1,265,0,0,0 +10734,13163,24033,24032,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,5,0,5.713043724803161,6.002016259366644,1,0,-9,36,0,-3,97.24081383139333,0,0,0,63,3,5,1,3,2,2019,1,1,6,0,35,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.573967889963546,5.617235715840135,0,0,60.02,56.42,1,1,0,0,2,3,1,265,0,0,0 +10735,13164,24034,24035,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,5,0,5.639349470342358,5.678596695021123,1,0,-9,7,0,11,-79.13511711982844,0,0,0,62,3,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.395721718478822,5.066246141267584,0,0,57.06,57.76,7,1,0,0,9,2,1,259.5,0,0,0 +10735,13164,24035,24034,-9,-9,2,1,0,62,1,0,0,0,3,-9,1,1,0,4,6.364041953158258,6.430979447952358,0,1,0,-9,38,0,-11,-30.23341909603477,0,0,0,73,3,5,3,3,3,2019,2,1,9,0,40,39,15,1,0,4,0,1.906259392013252,1.906259392013252,0,0,0,0,0,0,0,1,1,0,3.41349479470258,0,0,0,46.38,57.37,6,1,0,0,9,2,1,259.5,0,0,0 +10736,13165,24036,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,5,0,6.584842539556632,6.726377602041634,3,0,0,0,-9,0,-988.3110806524212,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.324849059139082,6.446969122882573,0,0,41.07,60.93,1,1,0,0,1,2,1,94,0,0,0 +10737,13166,24037,24038,-9,-9,5,1,1,36,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,3,0,7,0,0,0,0,29,2,3,3,-9,-9,2019,4,2,10,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.07,32.67,4,4,1,1,8,1,0,935.5,0,0,0 +10737,13166,24038,24037,-9,-9,2,1,0,29,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,3,0,-7,0,0,1,1,36,2,4,3,3,-9,2019,4,5,30,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.43879218095932,3,30.31,40.35,4,4,1,0,8,1,0,935.5,0,0,0 +10738,13167,24039,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,5,8.162600637591797,8.242873657277086,0,3,0,-9,0,-9,0,-1073.984607072174,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,0,15,1,0,-9,0,10.45973726689298,10.45973726689298,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,5,1,0,0,10,4,0,296,0,0,0 +10739,13168,24040,-9,-9,-9,1,1,0,31,2,0,1,0,3,-9,2,1,0,4,7.62052984006307,7.877282194078872,5.551671067694086,4,0,0,0,-9,0,-920.2129487665387,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,21,7,25,24,15,1,7,-9,0,8.168857631196799,8.168857631196799,0,0,0,0,0,0,0,1,1,0,5.648025839556071,0,0,0,20.99,65.94,2,1,0,1,13,3,0,704,0,0,0 +10740,13169,24041,24042,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,2,0,0,0,0,70,3,2,3,3,3,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55.05,29.79,4,1,0,0,2,1,1,403.5,0,0,0 +10740,13169,24042,24041,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,49,0,-2,0,0,0,0,72,3,3,3,3,3,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,37.82,20.93,5,1,0,0,2,1,1,403.5,0,0,0 +10741,13170,24043,24044,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,8.51710248218898,8.459059137782839,1,0,-9,42,0,8,-16.38180325177052,0,0,0,66,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.562923926089976,8.506121654901056,9.517910578551582,3,54.2,57.49,6,1,0,0,9,4,1,552.5,0,0,0 +10741,13170,24044,24043,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,42,0,-8,-17.66633506762508,0,0,0,74,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.923193754445309,0,22.46045503305652,3,51.24,58.84,6,1,0,0,9,4,1,552.5,0,0,0 +10742,13171,24045,24046,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,1,0,8.589414222647196,8.617032053851126,1,0,-9,9,0,-1,-26.23952484156248,0,0,0,63,1,2,3,3,2,2019,4,1,20,8,0,37,15,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.9156946035637596,8.62983967632649,0,0,52.24,10.56,2,1,0,0,13,4,1,683.5,0,0,0 +10742,13171,24046,24045,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,2,0,6.418406972158695,6.261009496065337,1,0,-9,9,0,1,.8003195767289912,0,0,0,62,1,1,3,2,3,2019,4,2,8,1,0,22,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.363343124585112,23.87214688806059,1,59.75,21.19,6,1,0,0,13,4,1,683.5,0,0,0 +10743,13172,24047,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1022.238654091911,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.17,26.65,2,1,0,0,4,1,0,375,0,0,0 +10744,13173,24048,24049,-9,-9,2,1,1,64,1,0,1,0,2,-9,1,1,0,3,8.180292757487718,8.130680419620028,0,2,0,-9,9,0,14,84.33063722544524,0,0,0,50,2,5,3,-9,-9,2019,2,1,13,1,40,40,15,1,1,3,0,9.171559903084624,9.171559903084624,0,0,0,0,0,0,0,1,1,0,8.295308471826978,0,0,0,49.04,55.86,4,1,0,1,7,3,1,1375,0,0,0 +10744,13173,24049,24048,-9,-9,1,1,0,50,1,0,1,0,2,-9,6,3,0,5,0,0,0,2,0,-9,9,0,-14,-42.1047040030144,0,0,0,64,2,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.688922838186719,0,0,0,48.77,60.16,4,1,0,1,7,3,1,1375,0,0,0 +10744,13174,24050,-9,24049,24048,3,1,0,19,2,0,1,1,2,0,7,2,0,5,5.292806920754213,5.900903499516032,0,3,0,0,0,-9,0,-973.2298989832873,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.515378965311366,0,0,0,57.06,57.76,6,1,0,0,7,2,1,340,0,0,0 +10745,13175,24051,-9,24055,24054,5,1,0,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-967.557524799214,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,5,1,0,0,2,2,1,701.8,0,0,0 +10745,13175,24052,-9,24055,24054,2,1,1,13,2,2,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-999.1432239434449,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,1,0,0,2,2,1,701.8,0,0,0 +10745,13175,24053,-9,24055,24054,3,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.056504197492,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,2,2,1,701.8,0,0,0 +10745,13175,24054,24055,-9,-9,4,1,1,37,1,2,3,0,3,-9,1,1,0,5,5.601880083174767,5.207520623395086,0,2,0,-9,2,0,6,8.079821325879635,-9,0,0,31,2,3,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,.6197373611356405,.6197373611356405,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,7,1,0,0,2,2,1,701.8,0,0,0 +10745,13175,24055,24054,-9,-9,1,1,0,31,1,2,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,-6,-90.35785614575424,0,0,1,37,3,5,1,-9,-9,2019,3,4,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.276603164209401,0,0,0,56.95,46.69,4,1,0,0,2,2,1,701.8,0,0,0 +10746,13176,24056,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,5,0,6.569627650914116,6.722001419628943,3,0,0,0,-9,0,-903.5916210149517,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.689920565083841,2.979641615888624,3,62.39,56.71,6,1,0,0,8,2,1,549,0,0,0 +10747,13177,24057,24058,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,9.709554588569477,9.681162402878213,0,2,0,-9,24,0,0,-22.72324764362685,0,0,0,48,2,3,1,2,2,2019,1,1,20,8,50,53,15,1,8,1,0,36.47505957259545,36.47505957259545,0,0,0,0,0,0,0,0,0,0,3.996298124398293,0,0,0,24.44,64.23,5,1,0,0,9,5,1,440,0,0,0 +10747,13177,24058,24057,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.546720994432272,8.210019399248482,0,2,0,-9,24,0,0,-28.55938490675448,0,0,0,48,2,4,1,3,3,2019,1,2,9,1,30,28,15,1,1,1,0,21.18789030804403,21.18789030804403,0,0,0,0,0,0,0,0,0,0,2.248389670713018,0,0,0,59.04,48.6,6,1,0,0,9,5,1,440,0,0,0 +10747,13177,24059,-9,24058,24057,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.004355730062,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.228262452875191,0,0,0,57.16,56.15,6,1,0,0,9,5,1,440,0,0,0 +10747,13178,24060,-9,24058,24057,3,1,1,20,2,0,1,0,2,-9,7,2,0,4,6.508728502814656,6.473161261925571,0,3,0,0,0,-9,0,-1033.146891331818,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,12,8,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,6,1,0,0,9,2,1,241,0,0,0 +10748,13179,24061,-9,-9,-9,1,1,0,47,2,0,0,0,1,-9,2,1,0,3,9.783741305617815,9.551977662473684,0,3,0,0,0,-9,0,-894.421102807016,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,51,55,15,1,0,-9,0,36.34990120246077,36.34990120246077,0,0,0,0,0,0,0,0,0,0,7.48949479993668,0,0,0,55.12,44.8,6,1,0,0,9,5,1,947,0,0,0 +10749,13180,24062,24063,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,7.966900630879907,7.479488100735499,1,0,-9,50,0,2,93.82115522968779,0,0,0,67,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.178368331386273,7.739098194525854,1.939951751688263,3,57.16,56.15,6,1,0,0,2,3,1,614,0,0,0 +10749,13180,24063,24062,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-2,1.127025815234743,0,0,0,69,3,4,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.587367404377382,0,0,0,50.03,52.62,6,1,0,0,2,3,1,614,0,0,0 +10750,13181,24064,-9,24066,24065,5,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.201705289204,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,6,3,1,1079.666666666667,0,0,0 +10750,13181,24065,24066,24067,24068,1,1,1,44,1,0,2,0,3,-9,1,1,0,4,8.177573785789757,8.037603432696386,0,2,0,-9,14,0,8,-70.06901224762564,0,0,0,36,3,5,1,3,3,2019,1,2,7,0,70,56,15,1,0,1,0,6.237033624255273,6.237033624255273,0,0,0,0,0,0,0,1,1,0,8.442132053567191,0,0,0,48.28,60.18,6,3,0,0,6,3,1,1079.666666666667,0,0,0 +10750,13181,24066,24065,-9,-9,2,1,0,36,1,0,2,0,3,-9,2,1,0,5,7.347775744484062,7.674470550478125,0,2,0,-9,14,0,-8,-16.89254885096682,0,0,1,44,3,4,1,3,3,2019,1,1,12,1,70,40,15,1,1,1,0,2.295455662265425,2.295455662265425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.22,61.23,5,3,0,0,6,3,1,1079.666666666667,0,0,0 +10750,13182,24067,24068,-9,-9,3,1,0,63,1,0,2,0,3,-9,4,3,0,3,0,6.944721369275566,6.932346062304697,2,0,-9,8,0,-4,-5.201683576035476,0,0,0,67,3,3,3,3,3,2019,4,4,11,0,0,40,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.946829283074508,0,0,49,47,5,3,0,0,6,2,1,236,0,0,0 +10750,13182,24068,24067,-9,-9,4,1,1,67,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,8,0,4,-66.41977877731044,0,0,0,63,3,3,3,3,3,2019,4,3,10,0,0,40,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.878106933198106,0,0,0,52,48,5,3,0,0,6,2,1,236,0,0,0 +10751,13183,24069,24070,-9,-9,1,1,1,83,1,0,1,0,3,-9,4,3,0,5,0,6.28086581782649,6.287708878022233,2,0,-9,9,0,10,56.09344609281091,0,0,0,73,3,1,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.78410788808666,0,1,64.28,40.77,6,3,0,0,8,2,1,462,0,0,0 +10751,13183,24070,24069,-9,-9,2,1,0,73,1,0,1,0,3,-9,4,3,0,1,0,0,0,2,0,-9,9,0,-10,58.84053923938021,0,0,0,83,3,5,3,3,2,2019,4,1,20,6,0,0,15,4,6,4,0,0,0,1,0,14.95717771018297,17.24404604734873,0,0,0,1,1,0,1.124016074436493,0,0,0,39.61,30.9,4,3,0,0,8,2,1,462,0,0,0 +10751,13184,24071,24072,-9,-9,3,1,1,55,1,0,1,0,2,-9,2,1,0,3,8.74672141029367,8.744167766672115,0,2,0,-9,9,0,7,32.37690606276722,0,0,0,48,2,3,1,2,2,2019,1,4,12,2,58,55,15,1,2,1,0,13.13427996084404,13.13427996084404,0,0,0,0,0,0,0,1,1,0,3.565909868485647,0,0,0,41.4,34.04,5,3,0,0,8,5,1,1873.666666666667,0,0,0 +10751,13184,24072,24071,24070,24069,4,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.101447864886257,8.046333439173081,0,2,0,-9,9,0,-7,98.69862785153363,0,0,0,55,2,3,1,3,3,2019,1,3,13,1,41,40,15,1,1,1,0,11.43942747928897,11.43942747928897,0,0,0,0,0,0,0,1,1,0,4.274814616332162,0,0,0,45.18,44.04,5,3,0,0,8,5,1,1873.666666666667,0,0,0 +10751,13184,24073,-9,24072,24071,6,1,1,17,2,0,1,1,2,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1005.631082055514,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8412627893772728,0,0,3,26.38,58.67,5,3,0,0,8,5,1,1873.666666666667,0,0,0 +10751,13185,24074,-9,24072,24071,5,1,1,23,2,0,1,0,1,-9,2,1,0,3,8.510643364283217,8.201656702021218,0,3,0,0,0,-9,0,-1018.831844943086,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,40,15,1,2,-9,1,11.48004527849291,11.48004527849291,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.44,59.97,6,2,0,0,8,4,1,223,0,0,0 +10752,13186,24075,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,4.37921892066267,4.340723597604469,3,0,0,0,-9,0,-1042.445702348823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.182542257795669,0,0,60.69,24.05,7,1,0,0,13,2,1,136,0,0,0 +10753,13187,24076,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1169.334196470439,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,32,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.77,39.85,2,1,0,1,7,1,0,698,0,0,0 +10754,13188,24077,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,3,8.741879982930561,8.437694000433478,0,1,0,-9,3,0,-6,23.23223308826686,0,0,1,-9,-9,-9,-9,2,2,2019,1,2,11,3,45,48,15,1,3,-9,0,15.63166197129194,15.63166197129194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.59,43.19,5,1,0,0,9,5,1,1616,0,0,0 +10754,13189,24078,-9,-9,-9,2,1,0,46,2,0,0,0,1,-9,2,1,0,3,8.065646234945689,8.462235515981995,0,1,0,-9,3,0,6,156.2691032543501,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,0,40,45,15,1,0,-9,0,11.04533082321409,11.04533082321409,0,0,0,0,0,0,0,0,0,0,.6829230905398461,0,0,0,44.63,45.44,5,1,0,0,9,5,1,408,0,0,0 +10755,13190,24079,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,3,8.835784647114261,8.69927120899896,4.618079965518006,3,0,0,0,-9,0,-1009.232825426549,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,47,48,15,1,0,-9,0,18.55319329519428,18.55319329519428,0,0,0,0,0,0,0,0,0,0,4.262979125065485,0,0,0,58.32,50.22,6,1,0,0,12,5,1,285,0,0,0 +10756,13191,24080,-9,-9,-9,1,1,0,58,2,0,1,0,1,-9,2,1,0,2,7.662946174206861,7.432157403549814,0,4,0,0,0,-9,0,-896.6653239183786,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,26,16,15,1,6,-9,0,10.05412424067884,10.05412424067884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,37.4,4,4,0,0,8,3,0,543,0,0,0 +10757,13192,24081,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,1,1,0,4,4.425907467832872,4.858934837597205,3.983838880873971,3,0,0,0,-9,0,-958.1890792135154,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,5,4,15,1,1,-9,0,2.497324266067367,2.497324266067367,0,0,0,0,0,0,0,1,1,0,5.741298730580524,3.650878315921068,0,3,50.2,49.87,6,1,0,0,9,2,1,363,0,0,0 +10758,13193,24082,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,3,7.353635228660179,7.560412081742752,0,3,0,0,0,-9,0,-927.0797572352373,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,39,35,15,1,0,-9,0,4.953872459596438,4.953872459596438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,3,1,0,0,1,3,1,669,0,0,0 +10759,13194,24083,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,8.561391117543108,8.59255225054733,7.291721543079327,3,0,0,0,-9,0,-861.4412355471167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,23,30,15,1,0,-9,0,15.83889743357862,15.83889743357862,0,0,0,0,0,0,0,0,0,0,7.50222818571969,7.625833120493366,0,3,57.16,56.15,6,1,0,0,10,5,0,372,0,0,0 +10760,13195,24084,24085,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,7.217380467101902,7.348075996045104,1,0,-9,39,0,-3,-72.22690965042344,0,0,0,68,1,4,1,3,3,2019,3,1,26,12,0,30,15,4,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.578605386303821,0,0,0,43.2,34.13,3,1,0,1,10,4,1,944,0,0,0 +10760,13195,24085,24084,-9,-9,1,1,1,68,1,0,0,0,1,-9,2,1,0,4,7.484596212774642,7.919236371786854,7.230082953220693,1,0,-9,39,0,3,-32.88836320491261,0,0,0,65,2,3,3,3,3,2019,2,2,6,0,10,30,15,1,0,4,0,24.48448020321366,24.48448020321366,0,0,0,0,0,0,0,1,1,0,5.247897962988985,7.244291133432124,0,0,57.16,56.15,6,1,0,1,10,4,1,944,0,0,0 +10761,13196,24086,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,5.942030457162162,5.822820840806386,3,0,0,0,-9,0,-891.2285277167445,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.028176422598617,0,0,54.37,54.8,6,1,0,0,9,2,0,840,0,0,0 +10762,13197,24087,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,4,8.598102060649637,8.613600018908015,5.940028832121071,3,0,0,0,-9,0,-1162.715626492286,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,35,15,1,0,-9,0,12.51845832648881,12.51845832648881,0,0,0,0,0,0,0,0,0,0,0,6.230854742680867,0,0,59.15,49.67,6,3,0,0,8,5,1,573,0,0,0 +10763,13198,24088,24089,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,7.938703706960767,8.078793258758649,6.976903564595096,1,0,-9,2,0,3,62.3762037113868,0,0,0,57,2,3,1,2,3,2019,1,1,9,0,38,39,15,1,0,1,0,8.806601026474409,8.806601026474409,0,0,0,0,0,0,0,0,0,0,7.174038031142602,7.133420036709388,0,3,56.18,53.85,6,1,0,0,10,4,1,966,0,0,0 +10763,13198,24089,24088,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.621370524680734,7.383752454009183,0,1,0,-9,32,0,-3,-71.88182319526949,0,0,0,60,2,4,1,2,3,2019,1,2,9,0,23,30,15,1,0,1,0,11.18723661867624,11.18723661867624,0,0,0,0,0,0,0,0,0,0,0,0,6.55320688970079,3,54.9,54.53,6,1,0,0,10,4,1,966,0,0,0 +10764,13199,24090,24091,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,64,0,-1,87.22849029614157,0,0,0,84,3,1,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.69,26.73,6,1,0,0,1,2,1,377,0,0,0 +10764,13199,24091,24090,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,1,0,6.23454426589045,6.568556348756853,1,0,-9,64,0,1,-165.8575076118059,0,0,0,83,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.551157893979704,0,0,55.82,17.88,6,1,0,0,1,2,1,377,0,0,0 +10765,13200,24092,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,3,8.864771117580673,8.377759718333861,0,3,0,0,0,-9,0,-1014.619106122341,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,81,0,15,1,6,-9,0,7.531235670966209,7.531235670966209,0,0,0,0,0,0,0,0,0,0,2.225598268967873,0,11.23034596071152,3,29.91,57.76,4,1,0,0,12,5,1,443,0,0,0 +10766,13201,24093,24094,-9,-9,2,1,0,39,1,0,1,0,1,-9,2,1,0,3,7.93753836252086,7.900710132097299,0,2,0,-9,6,0,-18,-26.78616668044849,0,0,1,57,2,2,1,-9,-9,2019,1,1,10,0,35,33,15,1,0,1,0,8.439723882971528,8.439723882971528,0,0,0,0,0,0,0,0,0,0,3.082928011763422,0,0,0,50.28,48.65,6,1,0,0,13,5,1,553,0,0,0 +10766,13201,24094,24093,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,2,9.743085627659395,9.469699616256245,7.270160784561679,2,0,-9,6,0,18,-35.25825012935114,0,0,0,39,1,3,1,3,3,2019,1,2,9,0,40,35,15,1,0,1,0,35.35218679272835,35.35218679272835,0,0,0,0,0,0,0,0,0,0,7.46183600477145,7.752108340047255,0,0,51.79,48.18,6,1,0,0,13,5,1,553,0,0,0 +10766,13201,24095,-9,24093,24094,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.311035650403,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,13,5,1,553,0,0,0 +10767,13202,24096,-9,24097,24098,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.9389375999626,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,11,5,1,1436.333333333333,0,0,0 +10767,13202,24097,24098,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,4,8.342722350923546,8.471506068599354,0,2,0,-9,16,0,-2,28.03336773583487,0,0,1,43,2,4,1,2,2,2019,1,2,7,0,38,38,15,1,0,1,0,19.34565101778947,19.34565101778947,0,0,0,0,0,0,0,1,1,0,3.146280430111183,0,45.03527464646611,3,48.9,53.24,7,3,0,0,11,5,1,1436.333333333333,0,0,0 +10767,13202,24098,24097,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.348964326886344,8.537173928897046,0,2,0,-9,15,0,2,168.4509900529692,0,0,0,41,2,4,1,2,2,2019,1,1,12,0,38,38,15,1,0,1,0,20.8585848068638,20.8585848068638,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.76,56.63,6,3,0,0,11,5,1,1436.333333333333,0,0,0 +10768,13203,24099,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,3,0,6.114293408734484,5.946482019955462,3,0,0,0,-9,0,-901.7545397891203,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,1.381139045718164,0,0,0,1,1,0,0,5.779105390782722,0,0,52,45,6,4,0,1,8,2,1,318,0,0,0 +10769,13204,24100,24101,-9,-9,1,1,1,55,1,0,2,0,2,-9,2,1,0,2,7.591842540681366,8.21118688420648,7.936597061311912,2,0,-9,26,0,4,-83.23830800627539,0,0,0,51,2,3,3,2,1,2019,2,2,8,1,40,45,15,1,1,3,0,5.277353854074505,5.277353854074505,0,0,0,0,0,0,0,1,1,0,7.392744361978248,7.268485755837061,0,0,50.36,35.28,5,1,0,0,7,3,1,2414.666666666667,0,0,0 +10769,13204,24101,24100,-9,-9,2,1,0,51,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,26,0,-4,14.69451113902146,0,0,0,55,2,2,1,2,-9,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3155389806668047,0,0,0,54.96,53.17,6,1,0,0,7,3,1,2414.666666666667,0,0,0 +10769,13204,24102,-9,24101,24100,5,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.4815935703216,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,1,2414.666666666667,0,0,0 +10769,13205,24103,-9,24101,24100,3,1,0,22,2,0,2,0,1,1,2,1,0,5,8.592204712258907,8.470107134352284,0,3,0,0,0,-9,0,-932.1387993794275,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,37,0,15,1,0,-9,1,16.23679114679252,16.23679114679252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,7,5,1,555,0,0,0 +10769,13206,24104,-9,24101,24100,4,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-942.9916760923522,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,7,5,1,976,0,0,0 +10770,13207,24105,24106,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,5,0,0,0,1,0,-9,7,0,7,0,0,0,0,39,1,3,3,-9,-9,2019,2,2,3,0,0,40,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,7,3,0,0,9,1,0,479,0,0,0 +10770,13207,24106,24105,-9,-9,2,1,0,39,1,0,0,0,1,-9,3,3,0,3,0,0,0,1,0,-9,7,0,-7,0,0,0,1,46,1,5,1,-9,-9,2019,3,1,10,0,0,27,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.589546342322381,0,0,0,53.92,44.01,5,3,1,0,9,1,0,479,0,0,0 +10771,13208,24107,-9,24108,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,5,0,0,0,4,0,0,0,-9,0,-1079.322427734177,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.73,58.82,7,1,0,0,9,3,1,356.5,0,0,0 +10771,13208,24108,-9,-9,-9,1,1,0,56,3,0,1,0,2,-9,2,1,0,3,7.813033306024301,7.740674990364603,5.969461387499435,4,0,0,0,-9,0,-809.5540739884824,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,30,15,1,0,-9,0,10.03341229745676,10.03341229745676,0,0,0,0,0,0,0,1,0,1,5.715482532443222,0,0,0,47.15,56.66,4,1,0,0,9,3,1,356.5,0,0,0 +10772,13209,24109,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,3,7.689194122114171,7.717505521694159,0,3,0,0,0,-9,0,-959.3776493733072,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,40,38,15,1,12,-9,0,6.886319072835806,6.886319072835806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.79,60.82,2,1,0,1,13,3,0,4136,0,0,0 +10773,13210,24110,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,5.47785448475056,5.654186335448498,3,0,0,0,-9,0,-1153.198717954528,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,1.086454634359735,0,0,0,0,4.206110140129329,1,1,0,0,5.719533633426336,0,0,48.56,39.35,5,1,0,0,6,2,1,307,0,0,0 +10774,13211,24111,24112,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,4,8.761884954450835,8.554084613293771,0,1,0,-9,6,0,2,130.0159864383538,0,0,0,49,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,19.72017686167892,19.72017686167892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,5,0,0,13,5,1,588.5,0,0,0 +10774,13211,24112,24111,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,4,9.082541707288973,8.918477780047606,0,1,0,-9,6,0,-2,28.40167233410519,0,0,0,51,1,4,1,3,3,2019,1,2,8,0,30,37,15,1,0,1,0,27.08981379209645,27.08981379209645,0,0,0,0,0,0,0,0,0,0,4.784527043516662,0,13.43452978177941,3,49.35,59.64,6,1,0,0,13,5,1,588.5,0,0,0 +10774,13212,24113,-9,24112,24111,3,1,1,19,2,0,0,1,2,0,7,2,0,5,6.664452725020692,6.99647596469408,0,3,0,0,0,-9,0,-939.1328687786938,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,7,1,0,0,13,2,1,3894,0,0,0 +10775,13213,24114,24115,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,3,7.201511928942124,7.16927543196029,0,1,0,-9,15,0,5,68.52118408444868,0,0,0,45,1,4,1,3,2,2019,1,1,10,0,17,17,15,1,0,1,0,11.01275750714729,11.01275750714729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.52,48.31,6,1,0,0,13,4,1,153.5,0,0,0 +10775,13213,24115,24114,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,4,7.96835103722788,8.124539671068982,0,1,0,-9,14,0,-5,-69.99585381439853,0,0,0,50,1,3,1,2,3,2019,1,2,7,0,30,35,15,1,0,1,0,10.28769809594784,10.28769809594784,0,0,0,0,0,0,0,0,0,0,0,0,6.61938241345331,3,52.37,56.93,6,1,0,0,13,4,1,153.5,0,0,0 +10776,13214,24116,24117,-9,-9,2,1,0,38,1,1,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,2,0,1,-93.10491193301382,0,0,1,37,1,5,1,-9,-9,2019,3,1,10,0,0,50,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.600519509617782,0,0,0,59.31,44.28,6,1,0,0,7,3,1,521.3333333333334,0,0,0 +10776,13214,24117,24116,-9,-9,1,1,1,37,1,1,1,0,1,-9,1,1,0,5,7.957037187014084,8.182341865052082,0,2,0,-9,2,0,-1,55.2460500739603,0,0,0,38,1,3,3,2,1,2019,2,2,8,1,2,1,15,1,1,3,0,143.5096118469725,143.5096118469725,0,0,0,0,0,0,0,1,1,0,8.485560042618168,0,0,0,51.14,60.45,4,1,0,0,7,3,1,521.3333333333334,0,0,0 +10776,13214,24118,-9,24116,24117,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.5809404708285,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,1,521.3333333333334,0,0,0 +10777,13215,24119,-9,-9,-9,3,1,0,20,2,0,1,0,2,-9,2,1,0,5,7.615620187138766,7.774931259603058,0,3,0,0,0,-9,0,-913.6517984933679,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,32,27,15,1,0,-9,1,7.938188517761582,7.938188517761582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,6,3,0,0,8,3,1,1311,0,0,0 +10778,13216,24120,-9,24122,24121,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.827916100352385,8.069503244754461,0,3,0,0,0,-9,0,-928.8525996318899,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,42,0,15,1,2,-9,1,8.306547587871682,8.306547587871682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,57.83,5,1,0,0,10,3,1,3308,0,0,0 +10778,13217,24121,24122,-9,-9,3,1,1,56,1,0,0,0,2,-9,2,1,0,3,9.145170022003049,9.095754413634833,0,1,0,-9,4,0,3,32.72824532952009,0,0,0,53,2,4,1,-9,-9,2019,1,1,7,0,55,47,15,1,0,1,0,18.45213048129146,18.45213048129146,0,0,0,0,0,0,0,0,0,0,3.027332141800651,0,0,0,61.28,48.88,7,1,0,0,10,5,1,503.5,0,0,0 +10778,13217,24122,24121,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.204703330859543,7.426231513296798,0,1,0,-9,4,0,-3,43.23371057712625,0,0,0,56,2,3,1,3,3,2019,1,3,7,0,20,25,15,1,0,1,0,6.747632441200872,6.747632441200872,0,0,0,0,0,0,0,0,0,0,4.734744263072294,0,0,0,51.9,51.55,6,1,0,0,10,5,1,503.5,0,0,0 +10779,13218,24123,24124,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,9.046015328498607,8.743492404641124,0,2,0,-9,9,0,5,1.401633324530966,0,0,0,46,2,4,1,2,3,2019,1,2,19,8,40,38,15,1,8,1,0,26.93461796558162,26.93461796558162,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.14,57.97,4,1,0,0,12,5,1,581.5,0,0,0 +10779,13218,24124,24123,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,4,7.870504571667537,7.965719911198005,0,2,0,-9,9,0,-5,65.53490840059187,0,0,0,51,2,3,1,2,2,2019,1,1,13,3,28,28,15,1,3,1,0,12.15893565452537,12.15893565452537,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.47,56.8,5,1,0,0,12,5,1,581.5,0,0,0 +10780,13219,24125,24126,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,4,7.753571493080051,7.479868596317656,0,1,0,-9,7,0,-1,164.8407645986088,0,0,0,49,2,3,1,2,2,2019,1,1,8,0,50,55,15,1,0,1,0,3.973505529177764,3.973505529177764,0,0,0,0,0,0,0,1,1,0,0,0,14.75319192783009,3,52.23,55.6,6,1,0,0,1,4,1,665,0,0,0 +10780,13219,24126,24125,-9,-9,1,1,0,49,1,0,0,0,2,-9,1,1,0,3,8.306168957354554,8.18575085064565,0,1,0,-9,23,0,1,13.26089628562949,0,0,0,48,2,4,1,2,-9,2019,1,2,15,2,30,40,15,1,2,1,0,15.41530423796952,15.41530423796952,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44.08,28.55,6,1,0,0,1,4,1,665,0,0,0 +10781,13220,24127,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,2,7.877028506581873,7.846199581049821,0,3,0,0,0,-9,0,-955.2411240656719,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,11,34,35,15,1,11,-9,0,8.157283733066112,8.157283733066112,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.58,38.6,2,1,0,0,5,3,0,339,0,0,0 +10782,13221,24128,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-948.8190369906736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.85,41.75,4,1,0,0,12,1,0,260,0,0,0 +10783,13222,24129,-9,-9,-9,1,1,1,46,3,0,0,0,1,-9,2,1,0,3,8.967656562882169,8.840109486052171,0,3,0,0,0,-9,0,-1107.944956156227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,60,56,15,1,0,-9,0,13.86721325233693,13.86721325233693,0,0,0,0,0,0,0,1,1,0,6.278950181966487,0,0,0,57.33,53.46,6,1,0,0,9,5,0,316,0,0,0 +10784,13223,24130,24131,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,2,-70.04406440479869,0,0,0,61,2,3,3,-9,-9,2019,4,2,16,4,0,13,15,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,42.85,40.35,5,1,0,0,7,2,1,857.5,0,0,0 +10784,13223,24131,24130,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,3,0,7.86098209315918,7.527470491692117,1,0,-9,8,0,-2,40.11730807610568,0,0,0,63,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.186307995097856,7.319204991461028,0,0,42.69,57.21,5,1,0,0,7,2,1,857.5,0,0,0 +10785,13224,24132,24133,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,4,9.558108542911935,9.615108359391185,0,1,0,-9,7,0,6,-186.3160683858424,0,0,0,52,1,4,1,3,2,2019,1,2,7,0,43,42,15,1,0,1,0,41.6704852374831,41.6704852374831,0,0,0,0,0,0,0,0,0,0,8.793319643369673,0,0,0,58.15,52.91,6,1,0,0,7,5,1,316.5,0,0,0 +10785,13224,24133,24132,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.913685563544464,8.992155969621523,0,1,0,-9,7,0,-6,29.417987534193,0,0,0,58,1,4,1,-9,-9,2019,1,1,9,0,60,55,15,1,0,1,0,12.67655409576758,12.67655409576758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,7,5,1,316.5,0,0,0 +10786,13225,24134,24135,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.671967526971507,9.472334331666229,0,2,0,-9,6,0,-4,49.88877478518276,0,0,0,52,1,5,1,-9,-9,2019,1,1,4,0,50,48,15,1,0,1,0,40.41734431062184,40.41734431062184,0,0,0,0,0,0,0,0,0,0,7.647829528233162,0,0,0,57.16,56.15,6,1,0,0,12,5,1,638.3333333333334,0,0,0 +10786,13225,24135,24134,-9,-9,1,1,0,52,1,0,1,0,1,-9,1,1,0,5,0,0,0,2,0,-9,6,0,4,-46.22593638295355,0,0,0,48,1,4,1,1,1,2019,1,2,5,0,0,4,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.705411458069688,0,10.84530618359719,3,61.41,51.58,6,1,0,0,12,5,1,638.3333333333334,0,0,0 +10786,13225,24136,-9,24135,24134,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.095692968522,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,12,5,1,638.3333333333334,0,0,0 +10787,13226,24137,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,7.252575450067602,7.440526432032536,3,0,0,0,-9,0,-1108.703104458541,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.183633277497556,0,0,51.99,40.97,6,1,0,0,9,2,1,223,0,0,0 +10788,13227,24138,24139,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,4,0,7.860935733605401,7.824299429576476,1,0,-9,52,0,-8,-42.16665183766831,0,0,0,91,3,4,3,2,3,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.900368581798196,7.625798154736494,0,0,62.01,38.87,6,1,0,0,6,3,1,1166,0,0,0 +10788,13227,24139,24138,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,4,0,6.06878284107486,6.022844039890964,1,0,-9,52,0,8,-30.36588848282025,0,0,0,83,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,8.766589397569643,0,0,0,0,1,1,0,4.901904369134829,6.081149614733135,0,0,58,50,6,1,0,0,6,3,1,1166,0,0,0 +10789,13228,24140,-9,24142,24141,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1015.342678834988,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,507.25,0,0,0 +10789,13228,24141,24142,-9,-9,2,1,1,29,1,0,2,0,2,-9,1,1,0,4,7.494807408285899,7.230048493221001,0,2,0,-9,1,-9,-4,-92.15582733567169,-9,1,0,33,1,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,5.178463443455646,5.178463443455646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,4,4,1,507.25,0,0,0 +10789,13228,24142,24141,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,3,8.640042748106202,8.679273925104585,0,2,0,-9,1,-9,4,45.37386048410112,-9,0,1,29,2,4,1,1,2,2019,1,2,10,3,60,0,15,1,3,1,0,13.00412136941059,13.00412136941059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,53.27,6,1,0,0,4,4,1,507.25,0,0,0 +10789,13228,24143,-9,24142,24141,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-935.4227384421496,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,507.25,0,0,0 +10790,13229,24144,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1201.346435074039,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,4,0,1,8,1,0,1827,0,0,0 +10791,13230,24145,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,3,3,0,3,0,6.689481971529191,6.267414807988259,4,0,0,0,-9,0,-842.2744149236241,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.999496449933073,0,0,0,47.13,45.94,6,1,1,0,8,2,0,1204.666666666667,0,0,0 +10791,13230,24146,-9,24145,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-947.1026668183725,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,2,0,0,8,2,0,1204.666666666667,0,0,0 +10791,13230,24147,-9,24145,-9,5,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1040.011694472883,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,2,0,1204.666666666667,0,0,0 +10791,13231,24148,-9,24145,-9,2,1,1,29,2,0,2,0,2,-9,2,1,0,3,7.394035988978599,7.743744751592284,0,3,0,0,0,-9,0,-968.4135251208018,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,30,30,15,1,9,-9,1,8.184918611034455,8.184918611034455,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.22,61.83,3,2,0,0,8,3,0,307,0,0,0 +10791,13232,24149,-9,24145,-9,3,1,0,23,2,0,2,0,2,-9,2,1,0,4,6.584413527988396,6.869329429070402,0,3,0,0,0,-9,0,-1082.427420923684,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,9,30,9,15,1,9,-9,1,2.760769792458774,2.760769792458774,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.07,64.01000000000001,4,2,0,1,8,2,0,503,0,0,0 +10792,13233,24150,24151,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,2,7.753291936798459,8.61117115750339,7.595561978463683,1,0,-9,33,0,5,13.0475481191033,0,0,0,59,3,4,1,3,2,2019,1,1,16,6,18,20,15,1,6,1,0,12.76477025204287,12.76477025204287,0,0,0,0,0,0,0,0,0,0,0,7.86947535809293,0,3,45.82,38.67,5,1,0,0,2,4,1,411,0,0,0 +10792,13233,24151,24150,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,4,6.67021486438254,6.850430475109789,0,1,0,-9,26,0,-5,-45.59173826398197,0,0,0,64,1,2,1,3,3,2019,1,2,6,1,12,12,15,1,1,1,0,6.942013315752828,6.942013315752828,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,6,1,0,0,2,4,1,411,0,0,0 +10793,13234,24152,24153,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,7.827842256959654,7.75952069979122,1,0,-9,20,0,4,-.0696272142500036,0,0,0,68,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4512824756730024,7.768925961539563,0,0,60.29,52.11,7,1,0,0,9,3,1,606.5,0,0,0 +10793,13234,24153,24152,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,5.005686517451178,5.269555646831205,1,0,-9,20,0,-4,-32.59765823149383,0,0,0,72,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.510379409296045,5.444729582159486,0,0,42.22,56.11,7,1,0,0,9,3,1,606.5,0,0,0 +10794,13235,24154,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,2,1,0,3,7.600729792783792,7.371433143821444,0,3,0,0,0,-9,0,-1046.677655104193,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,28,27,15,1,1,-9,0,8.059470639882802,8.059470639882802,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.53,50.08,5,4,0,0,2,3,0,271,0,0,0 +10794,13236,24155,-9,24154,-9,2,1,1,18,2,0,0,1,2,0,7,2,0,2,5.277908663778293,5.164524376965254,0,3,0,0,0,-9,0,-1102.760387288518,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,5,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.41,48.86,6,4,0,0,2,2,0,581,0,0,0 +10795,13237,24156,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,8.628065269847795,8.716294706139163,3,0,0,0,-9,0,-962.1270755543214,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.894357995020789,8.765119840096036,11.37567413571992,3,57.73,46.66,6,1,0,0,6,5,1,233,0,0,0 +10796,13238,24157,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,4,8.251889360212973,8.53744892988747,6.681244636196434,3,0,0,0,-9,0,-1074.217863307874,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,12.1500688963253,12.1500688963253,0,0,0,0,0,0,0,1,1,0,6.912734143658905,0,3.680213411052188,3,53.39,52.35,6,1,0,0,4,4,1,2500,0,0,0 +10796,13238,24158,-9,24157,-9,3,1,0,16,2,0,0,0,3,-9,2,2,0,3,6.545274300661108,6.338807608375503,0,3,0,0,0,-9,0,-1050.940619182828,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,24,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,6,1,0,0,4,4,1,2500,0,0,0 +10797,13239,24159,24160,-9,-9,1,1,0,27,1,1,1,0,3,-9,5,1,0,4,8.009311152350911,7.734376660166152,0,2,0,1,1,-9,1,-39.79588349973766,-9,1,1,26,1,4,1,-9,-9,2019,1,2,13,1,49,0,15,1,1,1,0,6.767215388069816,6.767215388069816,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,1,0,0,5,4,0,1074,0,0,0 +10797,13239,24160,24159,-9,-9,2,1,1,26,1,1,1,0,1,-9,2,1,0,4,8.514511320092938,8.107617850604553,0,2,0,-9,1,-9,-1,67.38574665372488,-9,1,0,27,3,4,1,-9,-9,2019,1,1,4,0,38,0,15,1,0,1,0,10.93241201342128,10.93241201342128,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.06,50.42,6,1,0,0,5,4,0,1074,0,0,0 +10797,13239,24161,-9,24159,24160,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-935.7425737513349,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,0,1074,0,0,0 +10798,13240,24162,24163,-9,-9,2,1,1,50,1,0,0,0,2,-9,6,3,0,5,0,0,0,1,0,-9,21,0,-5,-35.23029024842063,0,0,0,55,2,5,1,2,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.699018800833858,0,0,0,60.02,56.42,7,1,0,0,9,5,1,511.5,0,0,0 +10798,13240,24163,24162,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,5,9.813335860869788,9.762624506654374,0,1,0,-9,21,0,5,80.9334881934131,0,0,0,50,2,5,3,2,2,2019,2,2,7,0,50,60,15,1,0,3,0,31.04420803395361,31.04420803395361,0,0,0,0,0,0,0,0,0,0,10.67759119923165,0,0,0,57.06,57.76,7,1,0,0,9,5,1,511.5,0,0,0 +10799,13241,24164,-9,-9,-9,1,1,1,87,3,0,0,0,1,-9,4,3,0,3,0,8.283839838063182,8.33086586588353,3,0,0,0,-9,0,-1040.428188057751,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,8.416634743232571,0,0,1,1,0,4.526417227800356,8.659575385631024,0,0,48.29,37.16,4,1,0,0,9,4,1,1712,0,0,0 +10799,13242,24165,-9,-9,24164,2,1,1,53,2,0,0,0,1,-9,2,1,0,3,8.891995653390774,8.908743395001743,0,3,0,0,0,-9,0,-884.2755217400315,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,37,37,15,1,0,-9,1,16.45161265836314,16.45161265836314,0,0,0,0,0,0,0,1,1,0,4.923511790923846,0,0,0,40.48,52.84,3,1,0,0,9,5,1,340,0,0,0 +10799,13243,24166,-9,-9,24164,3,1,1,51,2,0,0,0,1,-9,3,3,0,2,0,6.321461856257131,5.871630455919334,3,0,0,0,-9,0,-906.1584335195502,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.268894225679726,0,66.00560820854962,3,46.8,46.5,3,1,1,0,9,2,1,1064,0,0,0 +10800,13244,24167,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,2,8.833795953754921,9.025209350547103,0,3,0,0,0,-9,0,-1093.33128744659,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,41,15,1,0,-9,0,23.59771514106583,23.59771514106583,0,0,0,0,0,0,0,0,0,0,.2172181777295917,0,0,0,46.69,49.1,5,1,0,0,6,5,1,714,0,0,0 +10801,13245,24168,-9,24171,24169,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.719919818818,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,600.75,0,0,0 +10801,13245,24169,24171,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,3,9.406009031528837,9.259129382837507,0,2,0,-9,14,0,2,-67.59903263145901,0,0,0,38,1,3,1,2,1,2019,1,1,11,1,43,40,15,1,1,1,0,42.10998740786636,42.10998740786636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.55,60.77,4,1,0,0,12,5,1,600.75,0,0,0 +10801,13245,24170,-9,24171,24169,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.0316086623743,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,600.75,0,0,0 +10801,13245,24171,24169,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,3,8.081570854660731,8.395309355078183,0,2,0,-9,14,0,-2,152.0194530870762,0,0,1,40,2,3,1,1,1,2019,1,2,21,8,26,25,15,1,8,1,0,18.17726447697963,18.17726447697963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.69,65.40000000000001,6,1,0,0,12,5,1,600.75,0,0,0 +10802,13246,24172,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,3,7.62026535141474,7.680164192747227,0,3,0,0,0,-9,0,-1030.748008758169,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,2,37,42,15,1,2,-9,0,7.698306048804885,7.698306048804885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,5,1,0,0,4,3,1,254,0,0,0 +10802,13247,24173,-9,24172,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,4,7.32307861765284,7.248505312347767,0,3,0,0,0,-9,0,-1024.460432851509,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,24,0,15,1,0,-9,1,7.573267289420289,7.573267289420289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,3,1,645,0,0,0 +10803,13248,24174,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1093.254940666217,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.36,16.34,3,1,0,0,2,1,0,718,0,0,0 +10804,13249,24175,-9,24177,24176,4,1,1,17,2,0,2,1,2,0,7,2,0,5,4.993352326313009,5.348315439652083,4.983394274738091,2,0,0,0,-9,0,-974.8905237476973,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.297337489139166,0,0,0,55.26,55.85,7,1,0,0,9,3,1,927.5,0,0,0 +10804,13249,24176,24177,-9,-9,2,1,1,55,1,0,2,0,2,-9,2,1,0,2,7.409338533181657,7.601249904399238,0,2,0,-9,7,0,3,-26.04947679048441,0,0,0,52,1,3,1,2,1,2019,1,1,17,5,20,70,15,1,5,1,0,9.271450806536375,9.271450806536375,0,0,0,0,0,0,0,1,1,0,0,0,.4913548439013473,3,32.63,39.17,2,1,0,1,9,3,1,927.5,0,0,0 +10804,13249,24177,24176,-9,-9,1,1,0,52,1,0,2,0,1,-9,1,1,0,3,7.427200038326731,7.394892056119066,0,2,0,-9,24,0,-3,-53.76746509977481,0,0,0,55,2,2,1,3,2,2019,1,2,19,8,40,20,15,1,8,1,0,5.953260501546693,5.953260501546693,0,0,0,0,0,0,0,1,1,0,2.076296683593128,0,111.8817785316702,2,38.8,49.69,3,1,0,0,9,3,1,927.5,0,0,0 +10804,13249,24178,-9,24177,24176,3,1,1,17,2,0,2,1,2,0,7,2,0,4,0,5.048226635936653,5.232704600460656,2,0,0,0,-9,0,-990.3530222914625,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.888331158838103,0,0,0,40.49,55.63,5,1,0,0,9,3,1,927.5,0,0,0 +10805,13250,24179,24181,-9,-9,3,1,0,20,1,2,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-1,-66.52125269138463,0,1,1,21,2,2,1,-9,-9,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.9,57.87,6,1,0,0,6,2,0,1272,0,0,0 +10805,13250,24180,-9,24179,24181,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-953.8085321571936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,6,2,0,1272,0,0,0 +10805,13250,24181,24179,-9,-9,1,1,1,21,1,2,2,0,2,-9,2,1,0,2,7.911182804045886,7.676003968217501,0,2,0,-9,2,0,1,-21.60549045884262,0,1,0,20,2,4,3,-9,-9,2019,2,3,11,0,40,0,15,1,0,3,0,6.885100064995201,6.885100064995201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.84,48.45,4,1,0,0,6,2,0,1272,0,0,0 +10805,13250,24182,-9,24179,24181,2,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.745997839685,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,6,2,0,1272,0,0,0 +10806,13251,24183,24184,-9,-9,1,1,1,58,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,6,0,6,-74.74687714494146,0,0,0,52,2,2,1,2,2,2019,1,2,6,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.039106935878872,0,0,0,60.12,54.8,6,1,0,0,12,3,1,731.5,0,0,0 +10806,13251,24184,24183,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,2,8.08968114406302,8.144931559231702,0,1,0,-9,6,0,-6,73.4787340603603,0,0,0,58,1,4,1,3,3,2019,1,1,8,1,30,0,15,1,1,1,0,11.22082622044218,11.22082622044218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,33.75,5,1,0,0,12,3,1,731.5,0,0,0 +10807,13252,24185,24186,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.002206289220028,6.200553267014144,1,0,-9,48,0,6,-53.59483229638679,0,0,0,69,2,3,3,3,3,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.893848968558754,6.608565362826917,0,3,49.44,54.26,6,1,0,0,12,3,1,663,0,0,0 +10807,13252,24186,24185,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,7.721600635788115,7.870783935722977,1,0,-9,48,0,-6,61.77561342380359,0,0,0,75,2,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.837214619636405,7.814258337085809,2.491770552308753,3,57.33,53.46,2,1,0,0,12,3,1,663,0,0,0 +10808,13253,24187,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,3,0,6.183761179355254,6.433887197402631,3,0,0,0,-9,0,-948.3209533284263,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.030142273498269,6.55216217327727,0,0,64.96000000000001,40.38,6,1,0,0,6,2,1,471,0,0,0 +10809,13254,24188,-9,24190,-9,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1014.697655476225,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,2,0,168.6666666666667,0,0,0 +10809,13254,24189,-9,24190,-9,3,1,1,10,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-969.499709180995,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,2,0,168.6666666666667,0,0,0 +10809,13254,24190,-9,-9,-9,2,1,0,27,2,1,2,0,2,-9,2,1,0,3,7.030107299944667,6.895512779239751,0,3,0,0,0,-9,0,-1009.975404272658,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,17,0,15,1,0,-9,1,7.908177513446604,7.908177513446604,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,6,2,0,168.6666666666667,0,0,0 +10810,13255,24191,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,4,0,6.030957549509286,6.09202421915126,3,0,0,0,-9,0,-1160.794673329861,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,45,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.372269580752778,0,0,52.05,55.95,6,1,0,0,13,2,0,692,0,0,0 +10810,13256,24192,-9,-9,-9,2,1,0,64,2,0,0,0,1,-9,2,1,0,4,8.232612553684568,8.75481234456878,7.81819525238474,3,0,0,0,-9,0,-1013.059877523134,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,12,12,15,1,0,-9,0,42.91604917661086,42.91604917661086,0,0,0,0,0,0,0,0,0,0,0,7.873799498461,0,0,59.14,52.5,6,1,0,0,13,5,0,363,0,0,0 +10811,13257,24193,-9,24194,24195,4,1,0,17,2,0,1,1,2,0,7,2,0,3,6.651558524933029,5.868913864036156,0,2,0,0,0,-9,0,-991.0997648844726,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,17,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,52.37,5,1,0,0,6,4,1,612.6666666666666,0,0,0 +10811,13257,24194,24195,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.545357950208841,7.751873999729268,0,2,0,-9,6,0,-12,64.74774516601286,0,0,0,57,2,4,1,3,3,2019,1,2,12,1,39,37,15,1,1,1,0,6.553393322480886,6.553393322480886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.37,49.66,6,1,0,0,6,4,1,612.6666666666666,0,0,0 +10811,13257,24195,24194,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,4,8.329330450047896,8.182876353139624,0,2,0,-9,6,0,12,17.20588098541718,0,0,0,45,2,4,1,3,3,2019,1,1,7,0,55,55,15,1,0,1,0,9.928599365233845,9.928599365233845,0,0,0,0,0,0,0,1,1,0,2.159913059870924,0,0,0,50.65,60.47,7,1,0,0,6,4,1,612.6666666666666,0,0,0 +10811,13258,24196,-9,24194,24195,3,1,1,18,2,0,1,0,2,-9,2,1,0,5,7.668327577691542,7.780433716845344,0,3,0,0,0,-9,0,-1012.522110109463,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,10,0,15,1,0,-9,1,17.56993048221221,17.56993048221221,0,0,0,0,0,0,0,1,1,0,1.73860255667564,0,0,0,49.36,58.53,6,1,0,0,6,3,1,2588,0,0,0 +10812,13259,24197,24198,-9,-9,2,1,1,75,1,0,0,0,2,-9,2,1,0,4,8.826542396639516,8.777011465201563,5.957718861478781,1,0,-9,51,0,1,-109.1206786282539,0,0,0,74,3,4,1,2,2,2019,1,1,8,0,40,40,15,1,0,1,0,19.92089252318732,19.92089252318732,0,0,0,0,0,0,0,1,1,0,5.896193820480068,6.015830790527565,0,0,54.2,57.49,6,1,0,0,9,5,1,465,0,0,0 +10812,13259,24198,24197,-9,-9,1,1,0,74,1,0,0,0,3,-9,2,1,0,4,6.561295438180962,6.490943156145195,0,1,0,-9,51,0,-1,-72.55628389018791,0,0,0,75,2,4,1,-9,-9,2019,1,2,10,0,12,12,15,1,0,1,0,6.49667708327139,6.49667708327139,0,0,0,0,0,0,0,1,1,0,.1783080236853996,0,0,0,61.26,51.57,6,1,0,0,9,5,1,465,0,0,0 +10813,13260,24199,24200,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,9.410544183030499,9.689367193344614,0,2,0,-9,27,0,-1,-25.78336895365029,0,0,0,48,1,4,1,2,2,2019,1,1,8,0,42,47,15,1,0,1,0,46.23932472804237,46.23932472804237,0,0,0,0,0,0,0,0,0,0,4.095844952195978,0,0,0,54.79,55.86,5,1,0,0,5,5,1,737.6666666666666,0,0,0 +10813,13260,24200,24199,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.316159987749128,8.134117999193601,0,2,0,-9,27,0,1,146.7461516075143,0,0,0,47,1,4,1,1,2,2019,1,2,6,0,47,51,15,1,0,1,0,10.66739015098878,10.66739015098878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,1,737.6666666666666,0,0,0 +10813,13260,24201,-9,24200,24199,5,1,1,16,2,0,2,1,2,-9,7,2,0,5,5.300541778278507,5.392447762915399,0,2,0,0,0,-9,0,-1089.196202223906,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,5,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.663979321566702,0,0,0,57.46,56.16,6,1,0,0,5,5,1,737.6666666666666,0,0,0 +10813,13261,24202,-9,24200,24199,4,1,0,18,2,0,2,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-941.5008205124691,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,6,1,0,0,5,5,1,782,0,0,0 +10814,13262,24203,24204,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,1,-136.0841571913761,0,0,0,68,3,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,11.49014319935067,0,0,0,0,1,1,0,1.310711140413621,0,0,0,55.52,35.3,6,1,0,0,4,2,1,466.5,0,0,0 +10814,13262,24204,24203,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,1,0,6.408194605821281,6.265831306384588,1,0,-9,51,0,-1,-80.70623213947586,0,0,0,69,2,3,3,3,3,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,1,0,2.8225525286183,0,4.621980077834971,0,0,1,1,0,1.428874359747682,6.04731489631396,71.52508438886819,1,41.88,25.43,7,1,0,0,4,2,1,466.5,0,0,0 +10815,13263,24205,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,3,0,7.650904608825056,8.123947970733436,3,0,0,0,-9,0,-1010.15557206558,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,15,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.620012234435521,7.847473730385413,0,0,56.5,48.33,6,1,0,0,12,3,1,3660,0,0,0 +10816,13264,24206,24207,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,7.913634293190211,8.218960895993737,5.241067139149026,1,0,-9,6,0,0,25.72930786812177,0,0,0,56,2,3,1,3,3,2019,1,2,10,0,37,37,15,1,0,1,0,8.275358959894321,8.275358959894321,0,0,0,0,0,0,0,0,0,0,0,5.243942455238424,0,0,54,54,7,1,0,0,12,4,1,934,0,0,0 +10816,13264,24207,24206,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,7.943396566603366,8.016373156431063,0,1,0,-9,6,0,0,-102.3438037641641,0,0,0,56,2,4,1,3,3,2019,1,1,6,0,38,38,15,1,0,1,0,11.6124633443409,11.6124633443409,0,0,0,0,0,0,0,0,0,0,7.326609768213966,0,0,0,44.7,48.48,5,1,0,0,12,4,1,934,0,0,0 +10817,13265,24208,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,4,8.134008059217816,8.361431347449518,0,3,0,0,0,-9,0,-929.8450755196925,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,36,15,1,0,-9,0,10.07584086782592,10.07584086782592,0,0,0,0,0,0,0,1,1,0,4.669964156151137,0,.3906960040888139,3,54.74,57.22,6,1,0,0,8,4,1,655,0,0,0 +10818,13266,24209,24210,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,5,9.033454980153094,8.951419569124369,0,1,0,-9,10,0,3,45.74148958032946,0,0,0,55,1,4,1,2,1,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.384888338239858,3,48.77,60.16,6,1,0,0,7,5,1,668.5,0,0,0 +10818,13266,24210,24209,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,9.226187257602421,8.804344323263788,0,1,0,-9,10,0,-3,.6032868522767804,0,0,0,58,2,5,1,1,2,2019,1,1,8,0,37,37,15,1,0,1,0,24.3045091018808,24.3045091018808,0,0,0,0,0,0,0,0,0,0,0,0,3.447383782101699,3,54.2,57.49,6,1,0,0,7,5,1,668.5,0,0,0 +10818,13267,24211,-9,24210,24209,3,1,0,22,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1011.138595964498,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,1,0,7,1,1,923,0,0,0 +10819,13268,24212,24213,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,4,0,6.304078230635166,6.626638957156319,1,0,-9,9,0,3,-41.69080568633458,0,0,0,76,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.125085084652959,6.220566203194585,0,0,49.98,55.33,6,1,0,0,6,2,1,256.5,0,0,0 +10819,13268,24213,24212,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,4.597497153585247,4.453554424551958,1,0,-9,9,0,-3,-82.88714895505481,0,0,0,79,1,4,3,2,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,10.20874510944151,0,0,0,0,1,1,0,4.688252434796239,4.533819034588284,0,0,55.18,36.42,6,1,0,0,6,2,1,256.5,0,0,0 +10820,13269,24214,24215,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,5.198854155662673,5.091099408642526,1,0,-9,36,0,5,-4.059091180371549,0,0,0,64,1,3,3,3,3,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.651561067716084,5.161672263327792,0,0,57.16,56.15,7,1,0,0,6,4,1,358.5,0,0,0 +10820,13269,24215,24214,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,6.307027554408088,8.354617768945506,7.992187665874966,1,0,-9,37,0,-5,-88.08258944341573,0,0,0,69,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.105583862951853,7.985456100537804,0,0,51.3,50.72,6,1,0,0,6,4,1,358.5,0,0,0 +10821,13270,24216,-9,-9,-9,1,1,1,22,2,0,0,1,1,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-1016.512758609469,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.602337930595747,0,0,0,62.39,56.71,7,1,0,0,11,1,1,1503,0,0,0 +10822,13271,24217,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,5,0,7.778537693153805,7.519843683967307,3,0,0,0,-9,0,-855.0959826649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,14,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.924048345931143,7.514119171345705,0,0,62.57,51.16,6,1,0,0,11,3,1,537,0,0,0 +10823,13272,24218,24219,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,1,0,0,0,0,72,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,7.552004088928959,0,0,0,0,1,1,0,0,0,0,0,52.96,13.21,1,1,0,0,13,1,0,804.5,0,0,0 +10823,13272,24219,24218,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-1,0,0,0,0,73,3,1,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.554701666155112,1,62.29,37.52,7,1,0,0,13,1,0,804.5,0,0,0 +10824,13273,24220,24223,-9,-9,2,1,0,34,1,2,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-11,13.99575688971476,0,0,1,45,3,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,6,3,1,829.25,0,0,0 +10824,13273,24221,-9,24220,24223,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.4931957247893,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,829.25,0,0,0 +10824,13273,24222,-9,24220,24223,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-969.4536607775191,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,829.25,0,0,0 +10824,13273,24223,24220,-9,-9,1,1,1,45,1,2,2,0,3,-9,2,1,0,4,8.22453416705325,8.348245776469568,0,2,0,-9,3,0,11,190.3861111465687,0,0,0,34,1,4,3,3,2,2019,2,2,7,1,43,55,15,1,1,3,0,12.72642944779155,12.72642944779155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.39,54.22,5,3,0,1,6,3,1,829.25,0,0,0 +10825,13274,24224,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-885.9330711508437,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.16,37.49,1,1,0,0,12,1,0,445,0,0,0 +10826,13275,24225,-9,-9,-9,1,1,1,69,2,0,0,0,1,-9,2,1,0,3,3.514618136368545,7.04143008248657,7.191260370040895,3,0,0,0,-9,0,-1029.334521371487,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,10,10,15,1,0,-9,0,.4331258788037491,.4331258788037491,0,0,0,0,0,0,0,1,1,0,5.692041241127475,7.28511453246217,0,0,49.52,56.95,6,1,0,0,6,3,1,542,0,0,0 +10827,13276,24226,24227,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,5,0,7.202914469329973,7.349156495109372,1,0,-9,5,0,0,-58.95475970059061,0,0,0,61,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.155639216230971,0,0,59.43,58.05,7,1,0,0,13,2,1,798.5,0,0,0 +10827,13276,24227,24226,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,5,0,0,-19.67678423209355,0,0,0,61,1,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,9.681857720929056,0,0,0,62.39,56.71,7,1,0,0,13,2,1,798.5,0,0,0 +10828,13277,24228,24229,-9,-9,2,1,0,49,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,20,0,-1,0,0,0,0,50,2,4,3,3,3,2019,4,1,29,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.2649407652142,2,26.08,26.32,2,1,0,0,5,1,0,822.5,0,0,0 +10828,13277,24229,24228,-9,-9,1,1,1,50,1,0,0,0,2,-9,8,3,1,4,0,0,0,1,0,-9,20,0,1,0,0,0,0,49,2,1,3,3,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,5,1,0,822.5,0,0,0 +10829,13278,24230,24231,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,7.652052554218102,7.817611350076071,1,0,-9,56,0,2,120.7104826832065,0,0,0,75,3,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.532644000250456,7.594066611236427,0,0,48.46,42.34,6,1,0,0,11,3,1,600.5,0,0,0 +10829,13278,24231,24230,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,6.946539040366943,7.133478897447115,1,0,-9,56,0,-2,-39.17414814688066,0,0,0,77,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.121620783170934,7.177166902250922,0,0,53,46,6,1,0,0,11,3,1,600.5,0,0,0 +10830,13279,24232,-9,24233,24234,2,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.2765418475074,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,12,3,0,526.5,0,0,0 +10830,13279,24233,24234,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,2,6.737763251141123,7.361122524673945,6.007782408798768,2,0,-9,6,0,5,-114.2127091204999,0,0,1,36,2,4,1,3,-9,2019,1,4,24,9,17,12,15,1,9,1,0,6.380659675885476,6.380659675885476,0,0,0,0,0,0,0,1,1,0,5.520147577660324,0,0,0,47.36,15.07,4,1,0,0,12,3,0,526.5,0,0,0 +10830,13279,24234,24233,-9,-9,4,1,1,36,1,0,2,0,2,-9,1,1,0,4,8.655072346744786,8.820143364186082,0,2,0,-9,6,0,-5,-124.1197612699791,0,0,0,41,2,2,1,-9,-9,2019,1,1,5,0,98,75,15,1,0,1,0,5.530189785193739,5.530189785193739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.78,49.38,6,1,0,0,12,3,0,526.5,0,0,0 +10830,13279,24235,-9,24233,24234,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.164735602419,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,0,526.5,0,0,0 +10831,13280,24236,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,2,8.734049223516315,8.821954395242944,0,3,0,0,0,-9,0,-945.5938100839536,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,42,42,15,1,6,-9,0,17.7176220864935,17.7176220864935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.02,49.23,3,1,0,0,2,5,1,628,0,0,0 +10831,13281,24237,-9,24236,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.650016125616327,8.555683050357253,0,3,0,0,0,-9,0,-964.1134007339133,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,45,45,15,1,2,-9,1,16.04973990520021,16.04973990520021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,52.95,5,1,0,0,2,5,1,1145,0,0,0 +10831,13282,24238,-9,24236,-9,3,1,0,22,2,0,0,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1008.46432360844,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.26,58.67,5,1,0,0,2,1,1,1064,0,0,0 +10832,13283,24239,-9,24241,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-820.0210037126649,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,5,1,0,0,5,3,1,762.3333333333334,0,0,0 +10832,13283,24240,-9,24241,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1075.931579165197,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,5,3,1,762.3333333333334,0,0,0 +10832,13283,24241,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,4,7.752782873847964,7.510066152894836,0,4,0,0,0,-9,0,-982.3879285912542,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,37,15,1,0,-9,0,8.282931992927601,8.282931992927601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,5,3,1,762.3333333333334,0,0,0 +10833,13284,24242,-9,24244,24243,2,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.547221744238,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,632.25,0,0,0 +10833,13284,24243,24244,-9,-9,3,1,1,39,1,0,2,0,1,-9,2,1,0,4,8.648567815850502,9.128065541953168,0,2,0,-9,8,0,3,46.4994942995285,0,0,0,36,1,4,3,-9,-9,2019,2,1,10,0,42,43,15,1,0,3,0,19.55982881774151,19.55982881774151,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,4,1,0,0,2,4,1,632.25,0,0,0 +10833,13284,24244,24243,-9,-9,1,1,0,36,1,0,2,0,1,-9,8,3,1,4,7.525831830372927,7.647577113198622,0,2,0,-9,8,0,-3,61.51963322462411,0,0,1,39,1,4,1,2,1,2019,3,3,13,1,12,9,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.63,62.19,5,1,0,0,2,4,1,632.25,0,0,0 +10833,13284,24245,-9,24244,24243,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-853.0963309352724,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,632.25,0,0,0 +10834,13285,24246,24248,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,3,8.513306031654269,8.161725942612293,0,2,0,-9,9,0,0,-146.2879727296025,0,0,0,52,1,3,1,2,3,2019,1,2,12,1,60,60,15,1,1,1,0,7.931144191183576,7.931144191183576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,51.53,5,1,0,0,13,4,1,886.6666666666666,0,0,0 +10834,13285,24247,-9,24248,24246,4,1,1,17,2,0,1,1,2,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1052.66613009608,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.18,52.11,6,1,0,0,13,4,1,886.6666666666666,0,0,0 +10834,13285,24248,24246,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,3,8.260648702861277,8.400994338787809,0,2,0,-9,9,0,0,-47.16670249686468,0,0,0,52,1,3,1,1,1,2019,1,1,8,1,32,30,15,1,1,1,0,15.91330018317841,15.91330018317841,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.1,52.62,6,1,0,0,13,4,1,886.6666666666666,0,0,0 +10834,13286,24249,-9,24248,24246,3,1,1,23,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1017.763521066014,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2934891613332316,0,0,0,48,59,5,1,0,0,13,1,1,400,0,0,0 +10835,13287,24250,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,5.9122455689146,5.997258699357064,4.66959639242294,3,0,0,0,-9,0,-855.9748704986107,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.585303040550754,0,0,60.12,54.8,6,1,0,0,12,2,1,428,0,0,0 +10836,13288,24251,24252,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.686863875894455,8.825250540849497,0,1,0,-9,18,0,-5,17.1877515678799,0,0,0,53,1,4,1,-9,-9,2019,1,2,20,9,40,38,15,1,9,1,0,18.8051692130976,18.8051692130976,0,0,0,0,0,0,0,0,0,0,4.143249135590504,0,0,0,40.24,54.56,5,1,0,0,2,5,1,1087.5,0,0,0 +10836,13288,24252,24251,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,4,8.909178018879587,8.90263793341467,0,1,0,-9,18,0,5,78.36513567165079,0,0,0,48,2,3,1,2,2,2019,1,1,6,0,37,37,15,1,0,1,0,26.15342597318312,26.15342597318312,0,0,0,0,0,0,0,0,0,0,4.678727859624571,0,0,0,53.47,51.1,6,1,0,0,2,5,1,1087.5,0,0,0 +10837,13289,24253,24254,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,4,8.441067082368903,8.552072054325242,0,1,0,-9,3,0,2,17.29626308188936,0,0,0,28,2,1,1,2,3,2019,1,2,8,1,55,55,15,1,1,1,0,9.731270122377685,9.731270122377685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,9,5,0,553,0,0,0 +10837,13289,24254,24253,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,1,8.029677314911552,7.897149138820351,0,1,0,-9,3,0,-2,2.197967701645471,0,1,1,30,2,4,1,-9,-9,2019,1,1,19,5,35,32,15,1,5,1,0,8.509063532564399,8.509063532564399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.61,25.44,2,1,0,0,9,5,0,553,0,0,0 +10838,13290,24255,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,4,8.586058922132654,8.557289890799169,0,3,0,-9,0,0,0,-1038.549368592217,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,8,37,38,15,1,8,-9,0,17.70707274254045,17.70707274254045,0,0,0,0,0,0,0,0,0,0,2.676762155463802,0,0,0,36.2,64.19,4,1,0,0,7,5,1,591,0,0,0 +10839,13291,24256,24257,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,52,0,-7,99.86063887529448,0,0,0,74,2,4,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,51.94,6,1,0,0,6,2,1,132.5,0,0,0 +10839,13291,24257,24256,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,6.618721256497905,6.958445966082943,1,0,-9,52,0,7,51.81831682078364,0,0,0,67,3,4,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.862136219622809,6.759142575283454,0,0,55.34,54.26,6,1,0,0,6,2,1,132.5,0,0,0 +10839,13292,24258,-9,-9,-9,3,1,1,22,2,0,0,1,1,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-1059.030863121019,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,6,1,1,467,0,0,0 +10840,13293,24259,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,7.645882229139197,7.570974531513855,3,0,0,0,-9,0,-1070.22173582444,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.135825583421817,7.665903293438678,7.371349806134884,3,52.93,52.64,6,1,0,0,2,3,1,1080,0,0,0 +10841,13294,24260,-9,24261,24263,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.4852305991592,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,5,1,960.75,0,0,0 +10841,13294,24261,24263,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,4,7.232978933429233,7.351168083915706,0,2,0,-9,8,0,-1,-54.63649624485176,0,0,1,36,2,4,1,-9,-9,2019,1,1,23,10,17,16,15,1,10,1,0,8.914598700167277,8.914598700167277,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.76,57.87,6,1,0,0,13,5,1,960.75,0,0,0 +10841,13294,24262,-9,24261,24263,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.57567144771,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,5,1,960.75,0,0,0 +10841,13294,24263,24261,-9,-9,1,1,1,36,1,0,2,0,2,-9,1,1,0,4,9.732803575438391,9.710734474770504,0,2,0,-9,8,0,1,-7.656823092981934,0,0,0,35,2,4,1,2,2,2019,1,2,12,0,45,45,15,1,0,1,0,42.3592331079668,42.3592331079668,0,0,0,0,0,0,0,1,1,0,5.483588827993105,0,0,0,41.17,59.31,4,1,0,0,13,5,1,960.75,0,0,0 +10842,13295,24264,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,7.396954466216702,7.468246826310892,3,0,0,0,-9,0,-1031.138649779073,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,24.30560685567647,0,0,0,0,0,1,1,0,4.100717237926459,6.655739919827377,0,0,65.71000000000001,30.51,7,1,0,0,5,2,1,929,0,0,0 +10843,13296,24265,24266,-9,-9,1,1,1,64,1,0,0,0,2,-9,3,3,0,3,0,5.728613454529226,5.48576712934017,1,0,-9,7,0,-21,-41.0332754734796,0,0,0,85,3,2,3,2,3,2019,4,2,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.50619703982658,5.355953729330042,0,0,54.08,38.67,6,1,1,0,13,2,1,854,0,0,0 +10843,13296,24266,24265,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,21,-47.84979022195834,0,0,0,64,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,38.6,40.53,6,1,0,0,13,2,1,854,0,0,0 +10844,13297,24267,-9,24269,24268,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.535377992781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,636,0,0,0 +10844,13297,24268,24269,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,3,8.429302629921356,8.647664547375928,0,2,0,-9,17,0,3,-117.4723732110749,0,0,0,42,2,4,1,3,2,2019,1,2,14,2,50,30,15,1,2,1,0,9.505044524715313,9.505044524715313,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.95,50.26,4,1,0,0,7,4,1,636,0,0,0 +10844,13297,24269,24268,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,4,7.626206403976124,7.250263151544121,0,2,0,-9,17,0,-3,-76.50197842927761,0,0,1,45,2,3,1,2,2,2019,1,1,11,1,34,37,15,1,1,1,0,5.496593815626551,5.496593815626551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,7,4,1,636,0,0,0 +10845,13298,24270,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,3,7.594373364301243,7.80810472810217,0,3,0,0,0,-9,0,-872.6520115796584,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,8,33,32,15,1,8,-9,0,10.75613259497875,10.75613259497875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.55,57.72,3,4,0,1,8,4,1,576,0,0,0 +10845,13299,24271,-9,24270,-9,2,1,0,19,2,0,0,0,2,-9,3,3,0,4,4.101034833939387,3.694978458200749,0,3,0,0,0,-9,0,-965.9260961648868,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,22,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.23,64.71000000000001,3,4,1,1,8,2,1,955,0,0,0 +10846,13300,24272,-9,24273,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1061.522452088598,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,2,1,304.5,0,0,0 +10846,13300,24273,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,1,1,0,3,6.9265067267684,7.269611663519536,6.320003400399824,4,0,0,0,-9,0,-933.5467401212758,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,11,0,10,16,15,1,0,-9,0,12.39072935169039,12.39072935169039,0,0,0,0,0,0,0,1,1,0,6.547325490640226,0,0,0,52,54.51,7,1,0,0,9,2,1,304.5,0,0,0 +10847,13301,24274,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,4,0,5.438051072378379,5.236521624626911,3,0,0,0,-9,0,-908.9684705725256,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.185637700480474,0,0,54.74,57.22,2,1,0,0,6,2,1,2785,0,0,0 +10848,13302,24275,24276,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,1,0,0,0,0,68,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.910660724836844,0,0,0,44.98,37.49,4,1,0,0,12,1,0,471.5,0,0,0 +10848,13302,24276,24275,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,0,0,0,0,69,2,2,3,-9,-9,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.62,28.48,4,1,0,0,12,1,0,471.5,0,0,0 +10849,13303,24277,24278,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,45,0,-2,55.80533889231334,0,0,0,71,1,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.763932900847728,0,0,0,58.15,52.91,7,3,0,0,9,3,1,1391,0,0,0 +10849,13303,24278,24277,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,2,0,8.334639705313377,8.089519031994667,1,0,-9,45,0,2,-.1214441497305998,0,0,0,69,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,4.096967016254164,0,0,0,0,1,1,0,5.484840193736769,8.065504072803375,0,0,44.75,36.71,5,3,0,0,9,3,1,1391,0,0,0 +10850,13304,24279,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,4,0,6.735669427096465,6.912529572448755,3,0,0,0,-9,0,-943.5285721526329,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.202167979897419,6.945702348541327,0,0,60.12,54.8,7,1,0,0,11,2,1,491,0,0,0 +10851,13305,24280,24282,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,4,9.732098174085804,9.306616021365826,0,2,0,-9,25,0,1,-137.1630109370424,0,0,0,48,1,3,3,-9,-9,2019,2,1,9,0,50,105,15,1,0,3,0,45.97112904727483,45.97112904727483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,1,0,0,12,5,1,860.6666666666666,0,0,0 +10851,13305,24281,-9,24282,24280,4,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-954.9690967970843,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.95,39.96,6,1,0,0,12,5,1,860.6666666666666,0,0,0 +10851,13305,24282,24280,-9,-9,1,1,0,48,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,24,0,-1,-51.78111475492686,0,0,0,49,2,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,6,1,0,0,12,5,1,860.6666666666666,0,0,0 +10851,13306,24283,-9,24282,24280,3,1,1,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1014.574583464128,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.2,57.82,1,1,0,0,12,5,1,251,0,0,0 +10852,13307,24284,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,5.592727587119432,6.164586836392917,3,0,0,0,-9,0,-956.0975597033665,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,3.389732484729229,0,4.662263306597908,0,0,15.21333036886872,1,1,0,1.844389139782488,5.650744206740746,0,0,52,45,6,1,0,0,11,2,1,1369,0,0,0 +10853,13308,24285,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,3,0,6.612277656964244,6.781110084805062,3,0,0,0,-9,0,-914.9678605542933,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.469730654585851,0,0,55,45,6,1,0,0,11,2,1,220,0,0,0 +10854,13309,24286,-9,-9,-9,1,1,0,44,3,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-916.1841697788909,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,38.01,23.4,2,1,0,0,12,1,1,227,0,0,0 +10855,13310,24287,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1093.928211542311,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,1,0,0,5.17890144268123,29.60762398385338,1.19700953021009,0,1,1,0,0,0,0,0,33.03,17.46,2,1,0,0,13,1,1,1991,0,0,0 +10856,13311,24288,24289,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,4,6.439871357341165,8.344575330490452,8.265647324561554,1,0,-9,41,0,2,17.44096207623475,0,0,0,60,2,2,3,3,2,2019,2,2,9,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.245113711764287,0,0,57.16,56.15,6,1,0,0,4,4,1,247,0,0,0 +10856,13311,24289,24288,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,2,0,6.367381116786618,6.153008132751109,1,0,-9,41,0,-2,-66.18163565524758,0,0,0,62,2,4,1,-9,3,2019,3,1,28,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.455130234517754,9.713035121568819,3,24.77,44.35,3,1,0,0,4,4,1,247,0,0,0 +10857,13312,24290,24291,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,3,8.418521439971787,8.412482786847113,0,2,0,-9,7,0,1,2.169295633398665,0,0,0,46,1,3,1,-9,-9,2019,1,1,12,0,40,39,15,1,0,1,0,11.85621195085455,11.85621195085455,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,54.48,5,1,0,0,12,3,1,502.6666666666667,0,0,0 +10857,13312,24291,24290,-9,-9,1,1,0,46,1,0,1,0,1,-9,1,1,0,3,5.840684427845301,5.778482046609605,0,2,0,-9,21,0,-1,72.82366173842439,0,0,0,47,1,3,1,1,1,2019,1,2,10,0,7,0,15,1,0,1,0,4.511612712087013,4.511612712087013,0,0,0,0,0,0,0,1,1,0,.4213290429166491,0,0,0,39.65,56.19,6,1,0,0,12,3,1,502.6666666666667,0,0,0 +10857,13312,24292,-9,24291,24290,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.640261264178,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,1,502.6666666666667,0,0,0 +10858,13313,24293,24294,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.959783494601313,8.275893880453319,0,1,0,-9,5,0,4,-76.1276526617721,0,0,0,42,2,4,1,3,3,2019,1,4,8,0,39,39,15,1,0,1,0,10.38360819018628,10.38360819018628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,12,5,0,680,0,0,0 +10858,13313,24294,24293,-9,-9,4,1,1,42,1,0,0,0,2,-9,2,1,0,4,8.105017175823882,8.439249148089724,0,1,0,-9,5,0,-4,-50.48753392829381,0,0,0,46,2,4,1,-9,-9,2019,1,1,10,0,46,46,15,1,0,1,0,8.559038710769604,8.559038710769604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,6,1,0,0,12,5,0,680,0,0,0 +10858,13314,24295,-9,24293,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,5,7.64474929124241,7.531891629023329,0,3,0,0,0,-9,0,-998.1064484926652,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,24,0,15,1,0,-9,1,12.44444876736311,12.44444876736311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.65,56.73,5,1,0,1,12,3,0,3271,0,0,0 +10858,13315,24296,-9,24293,-9,3,1,1,18,2,0,0,0,2,-9,2,1,0,5,7.700966629027221,8.011056079504666,0,3,0,0,0,-9,0,-964.5815592063155,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,46,0,15,1,0,-9,1,5.188185347508846,5.188185347508846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,3,0,152,0,0,0 +10859,13316,24297,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,1,1,0,2,6.480215675203688,6.590920622928855,0,3,0,0,0,-9,0,-886.6117320116504,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,40,40,15,1,0,-9,0,1.635549138676763,1.635549138676763,0,0,0,0,0,0,0,1,1,0,0,0,3.892477558659716,3,48.58,37.69,3,1,0,0,10,2,0,331,0,0,0 +10859,13317,24298,-9,-9,-9,2,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-969.5638797711027,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,3.110693050941874,0,1,1,0,0,0,0,0,63.82,8.81,6,1,0,0,10,1,0,302,0,0,0 +10860,13318,24299,24300,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,45,0,-4,0,0,0,0,72,1,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.05,48.45,6,1,0,0,12,1,1,965,0,0,0 +10860,13318,24300,24299,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,45,0,4,0,0,0,0,68,2,3,3,-9,1,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,57.17,6,1,0,0,12,1,1,965,0,0,0 +10861,13319,24301,-9,24302,-9,1,1,0,62,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-931.5742148250475,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.410571303059846,0,117.750165059878,3,23.86,20.5,3,1,0,0,4,1,1,1055,0,0,0 +10861,13320,24302,-9,-9,-9,2,1,0,95,3,0,0,0,3,-9,4,3,0,3,0,5.825123420244741,5.876049486292295,3,0,0,0,-9,0,-976.6944611916007,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.057038752488269,5.489546697602374,0,0,54,43,6,1,0,0,4,2,1,29,0,0,0 +10861,13321,24303,-9,24301,-9,3,1,0,19,2,0,0,1,2,0,7,2,0,5,0,5.470647992491824,4.741921073970853,3,0,0,0,-9,0,-974.9064312575304,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.001926200871769,0,15.26235451039168,3,57.06,57.76,6,1,0,1,4,2,1,319,0,0,0 +10862,13322,24304,24305,-9,-9,1,1,0,44,1,0,1,0,2,-9,3,3,0,5,0,0,0,2,0,-9,26,0,-1,12.49727556544052,0,0,1,45,1,5,1,2,2,2019,3,2,6,0,0,34,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.46773098921371,0,0,0,49.81,59.64,7,1,1,0,6,5,1,659,0,0,0 +10862,13322,24305,24304,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,5,9.592982800081712,9.227050022353353,0,2,0,-9,26,0,1,-106.2635204119599,0,0,0,44,2,5,3,2,2,2019,2,1,9,0,41,0,15,1,0,3,0,45.90887644005158,45.90887644005158,0,0,0,0,0,0,0,0,0,0,7.752482397008077,0,0,0,51.73,58.82,5,1,0,0,6,5,1,659,0,0,0 +10862,13322,24306,-9,24304,24305,3,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1100.944650117715,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,6,5,1,659,0,0,0 +10863,13323,24307,-9,-9,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,2,7.516259184282288,7.575790083764657,0,3,0,0,0,-9,0,-1047.612991975648,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,25,11,43,0,15,1,11,-9,1,3.967603138550977,3.967603138550977,0,0,0,0,0,0,0,0,0,0,0,0,0,3,32.33,35.55,2,1,0,1,2,3,1,576,0,0,0 +10864,13324,24308,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,5,7.181360985870044,7.023563158994185,0,3,0,-9,0,-9,0,-915.0116705014506,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,25,0,15,1,1,-9,0,5.953565550528378,5.953565550528378,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.71,52.95,5,1,0,1,10,3,0,177,0,0,0 +10864,13325,24309,-9,24308,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,3,7.544182649219694,7.188876243420293,0,3,0,-9,0,-9,0,-1061.895768953259,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,30,0,15,1,0,-9,1,6.430995643940786,6.430995643940786,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.76,52.62,5,1,0,0,10,3,0,267,0,0,0 +10865,13326,24310,24311,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,4,8.603914871679772,8.728389800500356,6.977767175522819,1,0,-9,32,0,-5,-91.02296066684782,0,0,0,67,3,4,1,2,3,2019,1,2,10,0,40,40,15,1,0,1,0,12.17642584030586,12.17642584030586,0,0,0,0,0,0,0,1,1,0,0,7.152228284567653,0,0,46.63,59.72,5,1,0,0,1,4,1,411,0,0,0 +10865,13326,24311,24310,-9,-9,2,1,0,67,1,0,0,0,3,-9,2,1,0,4,6.167736596265114,6.561818048717122,0,1,0,-9,32,0,5,261.5994875549117,0,0,0,62,1,4,1,3,3,2019,1,1,8,0,15,3,15,1,0,1,0,4.073017519942089,4.073017519942089,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,51.02,6,1,0,0,1,4,1,411,0,0,0 +10865,13327,24312,-9,24311,24310,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.103318273596669,8.126422128356124,0,3,0,0,0,-9,0,-1055.865691005358,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,44,46,15,1,0,-9,1,10.54568930084864,10.54568930084864,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.03,6,1,0,0,1,4,1,750,0,0,0 +10866,13328,24313,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.901686398529175,8.612324909298335,5.752926870295022,3,0,-9,0,-9,0,-939.4667301649206,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,30,0,15,1,0,-9,0,11.42734156853097,11.42734156853097,0,0,0,0,0,0,0,0,0,0,6.067605594106851,0,0,0,38.09,63.39,6,1,0,0,6,4,1,167,0,0,0 +10867,13329,24314,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-766.5946336082908,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,1,1,2,1,0,184,0,0,0 +10867,13330,24315,-9,24314,-9,3,1,0,33,2,0,0,0,2,-9,2,1,0,3,8.073680911420574,7.910059951393005,0,3,0,0,0,-9,0,-1010.334122225237,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,15,3,46,50,15,1,3,-9,1,8.713266319726896,8.713266319726896,0,0,0,0,0,0,0,1,1,0,0,0,25.35874959806984,3,44,52,4,3,0,0,2,4,0,228,0,0,0 +10867,13331,24316,-9,24314,-9,2,1,0,39,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-933.5602894460387,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.33293322990617,3,41,41,6,3,1,1,2,1,0,297,0,0,0 +10868,13332,24317,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,8.438915593566092,8.128128694234555,0,3,0,0,0,-9,0,-1139.398489320797,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,37,38,15,1,0,-9,0,10.8209373941615,10.8209373941615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,6,1,0,0,12,4,1,1658,0,0,0 +10869,13333,24318,-9,24321,24320,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1109.802613450634,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,4,1,590,0,0,0 +10869,13333,24319,-9,24321,24320,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.3960575162462,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,590,0,0,0 +10869,13333,24320,24321,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,3,8.587706211723765,8.415257312532312,6.920572579277309,2,0,-9,14,0,2,-49.41439281014215,-9,0,0,39,2,4,1,2,2,2019,1,2,13,1,43,0,15,1,1,1,0,13.04052342975045,13.04052342975045,0,0,0,0,0,0,0,1,1,0,7.733241472078109,0,0,0,37.11,55.92,4,1,0,0,10,4,1,590,0,0,0 +10869,13333,24321,24320,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,4,8.11627357341259,7.995302684146156,5.389791896975951,2,0,-9,14,0,-2,-55.24240980759573,0,0,1,41,2,3,1,2,2,2019,1,1,6,0,36,1,15,1,0,1,0,9.600976857495958,9.600976857495958,0,0,0,0,0,0,0,1,1,0,5.351476655004505,0,0,0,60.12,54.8,6,1,0,0,10,4,1,590,0,0,0 +10870,13334,24322,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-918.9269144499413,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.219295061245895,0,1,1,0,0,0,0,0,53.77,33.48,6,1,0,0,2,1,0,1047,0,0,0 +10871,13335,24323,24324,-9,-9,1,1,1,44,1,1,1,0,2,-9,2,1,0,4,8.178054587733721,8.522951074686468,0,2,0,-9,4,0,15,-10.19715391365805,0,0,0,29,1,3,3,-9,-9,2019,2,2,7,0,40,40,15,1,0,3,0,14.54872410332218,14.54872410332218,0,0,0,0,0,0,0,1,1,0,.0172163164980787,0,0,0,44.98,57.48,6,1,0,0,9,4,1,717,0,0,0 +10871,13335,24324,24323,-9,-9,2,1,0,29,1,1,1,0,1,-9,6,3,0,3,0,6.919939398925115,6.640037307361409,2,0,-9,4,0,-15,-63.40696621930525,0,1,1,44,2,4,1,-9,-9,2019,3,1,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.373582795982333,0,0,0,44.78,56.37,6,1,0,0,9,4,1,717,0,0,0 +10871,13335,24325,-9,24324,24323,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.889400843595,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,4,1,717,0,0,0 +10872,13336,24326,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,0,4.13054934735545,4.237619404197856,3,0,0,0,-9,0,-881.6805737787344,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.040606444297882,0,0,58.16,48.06,7,1,0,0,9,2,0,351,0,0,0 +10872,13337,24327,-9,-9,-9,2,1,0,62,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-961.3402988028181,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.55,52.4,6,1,1,0,9,1,0,814,0,0,0 +10873,13338,24328,24329,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,2,5.381383096436487,8.513216362308201,8.728864558884258,1,0,-9,35,0,6,131.9594487204356,0,0,0,61,1,4,1,2,1,2019,3,2,6,0,10,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.73351269180232,8.52857842151974,0,0,54.39,44.26,5,1,0,0,10,4,1,563.5,0,0,0 +10873,13338,24329,24328,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,4,0,6.89200103720429,7.725213449586242,1,0,-9,33,0,-6,-64.95085605030741,0,0,0,67,2,2,3,3,2,2019,2,1,8,0,20,40,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.443449995855998,7.983165002310034,0,0,61.27,46.03,1,1,0,0,10,4,1,563.5,0,0,0 +10874,13339,24330,-9,24331,24332,3,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1102.532489400091,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,3,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.93000000000001,43.76,7,1,0,0,2,3,1,890,0,0,0 +10874,13339,24331,24332,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,4,6.75767653304146,6.868308463473078,0,2,0,-9,25,0,-2,-68.03246098117729,0,0,0,51,2,5,1,3,3,2019,1,2,7,0,17,17,15,1,0,1,0,6.884432018509877,6.884432018509877,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,1,0,0,2,3,1,890,0,0,0 +10874,13339,24332,24331,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,5,7.70455198863126,8.112219942007401,0,2,0,-9,24,0,2,53.01266296257506,0,0,0,49,2,4,1,-9,-9,2019,1,1,0,0,47,45,15,1,0,1,0,7.066002447252473,7.066002447252473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.97,65.3,1,1,0,0,2,3,1,890,0,0,0 +10875,13340,24333,-9,-9,-9,1,1,1,69,2,0,0,0,3,-9,2,1,0,3,8.186518284426736,8.199773114251174,0,3,0,0,0,-9,0,-1112.371194778945,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,46,47,15,1,0,-9,0,7.796777709895135,7.796777709895135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.23,52.59,5,1,0,0,5,4,1,303,0,0,0 +10876,13341,24334,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1064.680683066197,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,44.19,3,1,0,0,12,1,0,773,0,0,0 +10877,13342,24335,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,2,1,0,3,6.549552504577273,6.52710570781585,0,3,0,0,0,-9,0,-1034.208186468832,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,12,13,15,1,0,-9,0,8.182271849649652,8.182271849649652,0,0,0,0,0,0,0,1,1,0,.1098889763005729,0,0,0,35.44,55.47,5,1,0,0,2,2,0,1024,0,0,0 +10877,13343,24336,-9,24335,-9,2,1,1,32,2,0,0,0,1,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-975.5522749025425,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,47.76,5,1,0,0,2,1,0,223,0,0,0 +10878,13344,24337,24338,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,2,9.312899081118605,9.170598910046804,0,1,0,-9,5,0,4,0,0,0,1,40,1,4,1,-9,-9,2019,1,1,7,1,43,48,15,1,1,1,0,24.10405511340693,24.10405511340693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.01,28.07,6,1,0,0,12,5,1,713,0,0,0 +10878,13344,24338,24337,-9,-9,1,1,1,40,1,0,0,0,1,-9,2,1,0,4,9.085151090262032,9.575102145398285,0,1,0,-9,5,0,-4,0,0,0,0,44,1,2,1,1,3,2019,1,2,8,0,99,104,15,1,0,1,0,10.51224258765944,10.51224258765944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,713,0,0,0 +10879,13345,24339,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,4,0,7.873058652910738,7.675144704531071,3,0,0,0,-9,0,-913.795334416185,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.021662195967065,8.120891849560161,0,3,48.22,54.85,6,1,0,0,12,4,1,459,0,0,0 +10880,13346,24340,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-942.6688905182012,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55.78,49.92,6,1,0,0,9,1,1,2578,0,0,0 +10881,13347,24341,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,2,8.655602355764829,8.773711942467681,0,3,0,0,0,-9,0,-939.9416125104865,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,46,48,15,1,0,-9,0,13.45886095459642,13.45886095459642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,26.08,6,1,0,0,2,5,1,1324,0,0,0 +10881,13348,24342,-9,24341,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,1,7.717564672987709,8.083533236831594,0,3,0,0,0,-9,0,-984.2455553282242,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,32,11,39,40,15,1,11,-9,1,8.94944131089402,8.94944131089402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.3,47.96,3,1,0,0,2,4,1,443,0,0,0 +10882,13349,24343,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,2,1,0,4,7.111294517177867,6.891580483321354,0,4,0,0,0,-9,0,-1004.042104991015,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,24,20,15,1,0,-9,0,5.727109354150893,5.727109354150893,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,1,0,1,1,2,0,600.5,0,0,0 +10882,13349,24344,-9,24343,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1109.254134692051,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,0,600.5,0,0,0 +10883,13350,24345,24346,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,5,0,7.554765286667338,7.646825424677468,1,0,-9,7,0,-2,-10.76226479541304,0,0,0,72,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.065747698799366,7.513812960526257,0,0,57.06,57.76,6,1,0,0,9,3,1,699,0,0,0 +10883,13350,24346,24345,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,7.728823493628682,7.446509753711008,1,0,-9,7,0,2,64.01049082625792,0,0,0,70,2,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.660676404880706,7.525406930045142,0,0,57.09,46.7,7,1,0,0,9,3,1,699,0,0,0 +10884,13351,24347,24349,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,5,9.149276501629688,9.142783313546543,0,2,0,-9,7,0,-1,6.304627228834396,0,0,0,35,1,4,1,2,2,2019,1,2,6,0,50,67,15,1,0,1,0,22.97255679772455,22.97255679772455,0,0,0,0,0,0,0,0,0,0,4.886994340342177,0,0,0,48.77,60.16,6,1,0,0,9,5,1,477.3333333333333,0,0,0 +10884,13351,24348,-9,24349,24347,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1085.364921267112,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,9,5,1,477.3333333333333,0,0,0 +10884,13351,24349,24347,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,4,8.151388972651235,8.095108078263136,0,2,0,-9,7,0,1,-34.02778273196391,0,0,1,34,1,5,1,-9,-9,2019,1,1,7,1,37,40,15,1,1,1,0,11.32690343916145,11.32690343916145,0,0,0,0,0,0,0,0,0,0,4.200555625812426,0,0,0,64.47,51.45,6,1,0,0,9,5,1,477.3333333333333,0,0,0 +10885,13352,24350,24352,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,24,0,-1,53.90708218394707,0,0,0,49,3,4,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,13,4,1,1007.333333333333,0,0,0 +10885,13352,24351,-9,24350,24352,6,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.051759752713,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,1007.333333333333,0,0,0 +10885,13352,24352,24350,-9,-9,2,1,1,49,1,0,2,0,3,-9,2,1,0,4,9.063565510451449,9.071883150200676,0,2,0,-9,24,0,1,-94.50772195911514,0,0,0,48,2,5,3,3,3,2019,2,1,6,0,25,40,15,1,0,3,0,39.99121283736773,39.99121283736773,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,57.24,7,1,0,0,13,4,1,1007.333333333333,0,0,0 +10885,13353,24353,-9,24350,24352,3,1,0,20,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1028.929006885456,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,13,1,1,192,0,0,0 +10885,13354,24354,-9,24350,24352,4,1,0,19,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1038.545003853274,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,13,1,1,910,0,0,0 +10886,13355,24355,-9,24358,24356,3,1,1,16,2,0,2,0,2,-9,97,2,0,5,0,0,0,2,0,0,0,-9,0,-968.9331722495596,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,12,2,1,1127.5,0,0,0 +10886,13355,24356,24358,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,5,8.073132395898993,7.933667195774492,0,2,0,-9,6,0,4,-133.8432484958488,0,0,0,41,2,3,1,2,2,2019,1,1,7,0,36,36,15,1,0,1,0,9.867349784416749,9.867349784416749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,4,1,0,0,12,2,1,1127.5,0,0,0 +10886,13355,24357,-9,24358,24356,4,1,1,14,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-898.1828781261489,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,4,1,0,0,12,2,1,1127.5,0,0,0 +10886,13355,24358,24356,-9,-9,1,1,0,41,1,0,2,0,2,-9,1,1,0,3,5.971840349332187,6.006731708638498,0,2,0,-9,19,0,-4,167.244020272589,0,0,1,45,2,5,1,3,1,2019,1,2,0,0,18,0,15,1,0,1,0,3.35044920329852,3.35044920329852,0,0,0,0,0,0,0,1,1,0,0,0,82.53841525555249,3,59.7,53.75,7,1,0,0,12,2,1,1127.5,0,0,0 +10887,13356,24359,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-850.1535434614316,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.487890650612529,0,0,0,0,0,1,1,0,7.12227839292951,0,0,0,61.45,24.58,4,1,0,0,9,1,0,627,0,0,0 +10888,13357,24360,24361,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,2,0,6.406658468366523,6.288514773931576,1,0,-9,58,0,0,-21.14768584073317,0,0,0,80,1,4,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,3.356394195032409,0,0,0,0,1,1,0,0,6.554953756726604,3.78546077815158,3,62.26,35.24,7,1,0,0,10,3,1,296,0,0,0 +10888,13357,24361,24360,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,4,0,8.051735219601136,7.856025096628557,1,0,-9,58,0,0,55.72238454806654,0,0,0,80,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.972048514955679,8.189542077223955,.835178800564357,3,62.49,55.09,7,1,0,0,10,3,1,296,0,0,0 +10889,13358,24362,24364,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,3,8.351078683330483,8.239020020769798,0,2,0,-9,8,0,6,-56.21746889105155,0,0,0,35,1,5,1,3,2,2019,1,1,8,0,37,37,15,1,0,1,0,10.37382930260978,10.37382930260978,0,0,0,0,0,0,0,1,1,0,6.374453053980326,0,0,0,57.33,53.46,5,3,0,0,2,5,1,1145.75,0,0,0 +10889,13358,24363,-9,24364,24362,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1206.114078301685,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,5,1,1145.75,0,0,0 +10889,13358,24364,24362,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,5,9.005701123296133,8.612569652291715,0,2,0,-9,8,0,-6,.4093807255160257,0,0,1,41,1,3,1,3,3,2019,1,2,6,0,45,37,15,1,0,1,0,14.74039562660079,14.74039562660079,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,3,0,0,2,5,1,1145.75,0,0,0 +10889,13358,24365,-9,24364,24362,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.0949547835182,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,2,5,1,1145.75,0,0,0 +10890,13359,24366,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,5,6.318915543124918,6.128298787882104,0,3,0,0,0,-9,0,-848.1872098624381,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,2,0,12,12,15,1,0,-9,0,6.581009397464913,6.581009397464913,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,45.15,7,1,0,0,7,2,0,1129,0,0,0 +10891,13360,24367,24368,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,5,0,7.761200663152102,7.851873729663557,1,0,-9,4,0,0,79.42524385329213,0,0,0,62,1,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.084438777179587,80.56479429384358,3,62.39,56.71,7,1,0,0,12,3,1,459,0,0,0 +10891,13360,24368,24367,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,5,0,6.990286526072221,6.832026535038053,1,0,-9,40,0,0,168.406879153045,0,0,0,62,1,5,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.999955777958294,43.49357932346049,3,60.02,56.42,6,1,0,0,12,3,1,459,0,0,0 +10892,13361,24369,24370,-9,-9,1,1,0,84,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,63,0,-7,-1.135871579971986,0,0,0,91,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,4.048232547384193,0,0,0,1,1,0,0,0,36.01591879212892,1,48.87,39.94,6,1,0,0,12,2,1,355.5,0,0,0 +10892,13361,24370,24369,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,3,0,6.530200967639712,6.762036151854049,1,0,-9,7,0,7,217.5650659969174,0,0,0,84,3,3,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,0,23.4230612208038,0,0,0,0,1,1,0,0,6.814214643553488,0,0,47.71,51.43,6,1,0,0,12,2,1,355.5,0,0,0 +10892,13362,24371,-9,24369,24370,3,1,1,58,2,0,0,0,3,-9,2,1,0,3,7.937212758900612,8.0908546099334,5.483430537475027,3,0,0,0,-9,0,-1021.292190753891,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,47,47,15,1,0,-9,1,7.817772925222482,7.817772925222482,0,0,0,0,0,0,0,1,1,0,0,5.509098710585232,7.969799790238226,3,52.48,55.6,6,1,0,0,12,4,1,222,0,0,0 +10893,13363,24372,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,1,1,0,4,6.262390892915119,7.297628679996649,6.788151447095512,3,0,0,0,-9,0,-945.0788523819092,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,20,20,15,1,0,-9,0,3.478825366155284,3.478825366155284,0,0,0,0,0,0,0,1,1,0,3.946170741252989,6.625732204861398,0,0,55.3,55.6,6,1,0,0,8,3,1,559,0,0,0 +10894,13364,24373,24374,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.310866854086784,8.541514635082979,0,1,0,-9,3,0,-2,-135.63356177386,0,0,0,59,2,3,1,-9,-9,2019,1,1,9,0,37,44,15,1,0,1,0,12.64553674325996,12.64553674325996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,46.23,6,1,0,0,12,5,1,618,0,0,0 +10894,13364,24374,24373,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,3,7.892058792412306,7.960182303378365,0,1,0,-9,3,0,2,33.00204981035345,0,0,0,57,2,4,1,-9,-9,2019,1,2,6,0,39,40,15,1,0,1,0,12.73411540783466,12.73411540783466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,7,1,0,0,12,5,1,618,0,0,0 +10895,13365,24375,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,1,1,0,5,5.157990238394417,5.179224353360702,0,3,0,0,0,-9,0,-960.0281311690737,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,18,5,30,40,15,1,5,-9,0,.6786381669108544,.6786381669108544,0,0,0,0,0,0,0,0,0,0,7.467726825443203,0,0,0,54.07,29.31,5,1,0,0,13,2,1,1016,0,0,0 +10896,13366,24376,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,3,7.433756969494156,7.52622979836367,6.216731655522119,3,0,-9,0,-9,0,-892.353480935064,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,20,0,15,1,0,-9,0,8.848182072114847,8.848182072114847,0,0,0,0,0,0,0,0,0,0,6.213977840409278,0,0,0,47.39,45.46,5,1,0,0,12,3,0,3149,0,0,0 +10897,13367,24377,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,2,1,0,3,6.93956669466599,6.851096332397099,0,3,0,0,0,-9,0,-999.2853952303528,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,20,20,15,1,1,-9,0,5.169588596755108,5.169588596755108,0,0,0,0,0,0,0,0,0,0,0,0,17.41967337376988,3,34.21,51.94,3,1,0,0,11,2,1,207,0,0,0 +10898,13368,24378,-9,24379,24380,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-939.628161380641,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,3,1,1848,0,0,0 +10898,13368,24379,24380,-9,-9,2,1,0,34,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,10,0,0,-60.89103114277233,0,0,1,34,1,4,1,3,1,2019,3,1,11,0,0,20,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.073980374776648,0,0,0,49,56,5,3,0,0,8,3,1,1848,0,0,0 +10898,13368,24380,24379,-9,-9,1,1,1,34,1,1,2,0,1,-9,2,1,0,4,8.125482844458732,8.469389141674078,0,2,0,-9,10,0,0,34.88992941970184,0,0,0,34,1,4,3,1,1,2019,2,2,4,0,40,40,15,1,0,3,0,11.73767969954481,11.73767969954481,0,0,0,0,0,0,0,1,1,0,6.388616899242343,0,0,0,51.77,58.57,6,3,0,0,8,3,1,1848,0,0,0 +10898,13368,24381,-9,24379,24380,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.276527165005,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,1848,0,0,0 +10899,13369,24382,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,2,0,5.513711930194232,5.878593067729628,3,0,0,0,-9,0,-1012.071936822521,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.454187475671945,5.497334427533379,0,0,60.11,44.43,5,1,0,0,10,2,1,108,0,0,0 +10900,13370,24383,-9,-9,-9,1,1,0,85,3,0,0,0,1,-9,4,3,0,4,0,7.577358529906081,7.388641117381916,3,0,0,0,-9,0,-1048.847647336654,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.147238538319672,7.590857730250421,0,0,57.16,56.15,6,1,0,0,4,3,1,756,0,0,0 +10901,13371,24384,-9,24385,-9,4,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-958.1542597741504,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,55,5,1,0,0,4,3,1,429,0,0,0 +10901,13371,24385,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,3,7.126250771083391,7.496305435852292,6.593826340782085,4,0,0,0,-9,0,-942.8469369557263,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,24,15,1,0,-9,0,6.674760333901021,6.674760333901021,0,0,0,0,0,0,0,1,0,1,6.91923096088285,0,6.94908514238817,3,46.02,46.33,3,1,0,0,4,3,1,429,0,0,0 +10901,13372,24386,-9,24385,-9,2,1,0,22,2,0,1,0,1,-9,2,1,0,5,7.755673221612372,7.381709459245624,0,3,0,0,0,-9,0,-903.8495508332442,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,44,8,15,1,0,-9,1,5.184807091320818,5.184807091320818,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.14,60.45,5,1,0,0,4,3,1,712,0,0,0 +10901,13373,24387,-9,24385,-9,3,1,1,20,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-938.8143662395245,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.57,63.9,4,1,0,0,4,1,1,160,0,0,0 +10902,13374,24388,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,3,0,6.383261640347155,6.798166619236077,3,0,-9,0,-9,0,-960.6658499804762,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.506565969875224,6.383565639477307,0,0,57.03,48.06,6,1,0,0,6,2,1,1020,0,0,0 +10903,13375,24389,24390,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,4,7.765419481827889,7.941663511347962,0,1,0,-9,6,0,-5,131.9590128285327,0,0,0,62,3,4,1,-9,-9,2019,1,1,10,0,38,35,15,1,1,1,0,6.408524066621021,6.408524066621021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,6,1,0,0,5,4,1,285.5,0,0,0 +10903,13375,24390,24389,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,4,7.916714962142156,7.761079944174777,5.641548343833454,1,0,-9,38,0,5,-69.91826956580215,0,0,0,57,3,4,1,3,3,2019,1,2,7,0,45,47,15,1,0,1,0,7.128307462565393,7.128307462565393,0,0,0,0,0,0,0,0,0,0,6.33293357088436,5.898658704605671,0,0,56.33,51.02,5,1,0,0,5,4,1,285.5,0,0,0 +10904,13376,24391,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,2,8.817031975693245,8.618215501664697,0,3,0,0,0,-9,0,-1064.995424601776,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,3,36,36,15,1,3,-9,0,19.82996146931793,19.82996146931793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,50.76,4,1,0,0,13,5,1,3395,0,0,0 +10905,13377,24392,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-831.6874641204013,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.24,32.5,1,1,0,1,4,1,0,809,0,0,0 +10906,13378,24393,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,1,1,0,4,7.785362655955407,8.056993824343175,0,3,0,0,0,-9,0,-957.4765819018883,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,50,15,1,0,-9,0,7.475523116648567,7.475523116648567,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,6,1,0,0,13,4,1,395,0,0,0 +10907,13379,24394,-9,24395,24396,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.953720414064,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,4,1,613.25,0,0,0 +10907,13379,24395,24396,-9,-9,1,1,0,31,1,1,2,0,2,-9,1,1,0,4,7.396063656229887,7.80289871695951,0,2,0,-9,2,0,0,118.3855568732879,0,0,1,31,2,4,1,2,2,2019,1,3,18,7,55,40,15,1,7,1,0,3.663092645906649,3.663092645906649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.08,56.54,3,1,0,0,11,4,1,613.25,0,0,0 +10907,13379,24396,24395,-9,-9,3,1,1,31,1,1,2,0,2,-9,2,1,0,4,8.641949398781092,8.399545659459022,0,2,0,-9,2,0,0,-36.70953672984368,0,0,0,31,2,4,1,-9,-9,2019,1,1,9,0,58,60,15,1,0,1,0,9.434539729849035,9.434539729849035,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,4,1,0,0,11,4,1,613.25,0,0,0 +10907,13379,24397,-9,24395,24396,2,1,0,13,2,1,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1024.576613041476,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,11,4,1,613.25,0,0,0 +10908,13380,24398,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-854.0246188822128,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,7.744312026088039,0,0,0,0,84.33099735908752,1,1,0,0,0,0,0,50,47,5,1,0,0,4,1,1,281,0,0,0 +10909,13381,24399,24400,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,9,0,-6,-31.51049116164099,0,0,0,77,1,5,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.629509298973713,0,0,0,54.01,53.44,6,1,0,0,12,2,1,578.5,0,0,0 +10909,13381,24400,24399,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,5,0,6.184984052022178,5.68203503083422,1,0,-9,9,0,6,-50.84935146531677,0,0,0,71,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.663872207215287,0,0,60.02,56.42,7,1,0,0,12,2,1,578.5,0,0,0 +10910,13382,24401,24402,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,7.84447996671734,7.606299177733902,0,1,0,-9,8,0,1,33.41518159176903,0,0,0,55,3,4,1,2,1,2019,1,1,6,0,40,40,15,1,0,1,0,5.439584529764842,5.439584529764842,0,0,0,0,0,0,0,0,0,0,3.541125640901212,0,0,0,55.34,54.26,6,1,0,0,2,3,1,259,0,0,0 +10910,13382,24402,24401,-9,-9,1,1,0,55,1,0,0,0,3,-9,1,1,0,4,7.072810562524313,6.861601318622862,0,1,0,-9,36,0,-1,87.68033242376153,0,0,0,56,2,4,1,2,3,2019,1,2,12,0,18,16,15,1,0,1,0,7.338678443891948,7.338678443891948,0,0,0,0,0,0,0,0,0,0,3.653888919508182,0,0,0,48.81,59.91,6,1,0,0,2,3,1,259,0,0,0 +10911,13383,24403,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,97,3,0,5,0,0,0,3,0,0,0,-9,0,-1131.579165606692,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.47987652628128,0,0,0,48.42,60.53,6,2,0,0,6,1,1,163,0,0,0 +10912,13384,24404,24405,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-2,-142.2983961872218,0,0,0,78,3,4,1,3,3,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,9,3,0,1263,0,0,0 +10912,13384,24405,24404,-9,-9,1,1,1,78,1,0,0,0,3,-9,2,1,0,4,8.071310564963643,8.196247239131111,5.005078344094636,1,0,-9,56,0,2,-20.23670199992452,0,0,0,76,3,3,3,3,3,2019,2,2,8,0,35,35,15,1,0,4,0,9.504547862149996,9.504547862149996,0,0,0,0,0,0,0,1,1,0,4.462991074460016,4.455060247462534,0,0,60.12,54.8,6,1,0,0,9,3,0,1263,0,0,0 +10913,13385,24406,-9,-9,-9,1,1,0,86,3,0,2,0,3,-9,4,3,0,1,0,5.544435658532927,5.508391538768704,4,0,0,0,-9,0,-961.0204183882769,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.411419918965652,0,3,44.65,16.42,5,1,0,0,9,2,1,1759,0,0,0 +10914,13386,24407,-9,24409,24408,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-984.3111088318461,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,13,5,1,609.3333333333334,0,0,0 +10914,13386,24408,24409,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,3,8.77464750909269,8.402463970725645,0,2,0,-9,2,0,4,13.39449247024729,-9,0,0,33,2,4,1,-9,-9,2019,1,1,8,1,40,0,15,1,1,1,0,20.14560319361707,20.14560319361707,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,6,1,0,0,13,5,1,609.3333333333334,0,0,0 +10914,13386,24409,24408,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,4,8.75075161459719,8.578251469510448,0,2,0,-9,2,0,-4,48.43400741809958,0,0,1,37,1,3,1,3,2,2019,1,2,5,0,50,55,15,1,0,1,0,10.92792709984413,10.92792709984413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,13,5,1,609.3333333333334,0,0,0 +10915,13387,24410,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1001.804475630658,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.084251096827077,0,3.108660624419384,3,53.22,55.2,6,1,0,0,6,1,1,168,0,0,0 +10916,13388,24411,24412,-9,-9,2,1,0,71,1,0,0,0,2,-9,2,1,0,3,6.381926227266274,6.556786124158555,0,1,0,-9,9,0,-1,-72.65565098718233,0,0,0,72,2,3,3,-9,-9,2019,2,1,11,0,20,12,15,1,1,4,0,3.517612401975422,3.517612401975422,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,5,5,0,0,13,4,1,127.5,0,0,0 +10916,13388,24412,24411,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,8.461471541911376,8.135328968379181,1,0,-9,52,0,1,7.239688884797875,0,0,0,71,2,3,1,3,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.391229510181097,0,0,50.08,55.33,6,1,0,0,13,4,1,127.5,0,0,0 +10917,13389,24413,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,4,0,6.76930078661226,6.878367585038927,3,0,0,0,-9,0,-1124.522325277841,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.593515713718727,6.813662920006941,0,0,51.83,57.2,4,1,0,0,10,2,1,200,0,0,0 +10918,13390,24414,24416,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.433398373362253,7.80080636953286,0,2,0,-9,21,0,-2,44.19831199970665,0,0,0,48,2,4,1,-9,-9,2019,1,2,11,0,8,32,15,1,0,1,0,33.48957616770635,33.48957616770635,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,8,4,1,807.75,0,0,0 +10918,13390,24415,-9,24414,24416,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.621996387571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,807.75,0,0,0 +10918,13390,24416,24414,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,8.548291851703979,8.267899823380173,0,2,0,-9,21,0,2,93.57518108950215,0,0,0,46,2,4,1,-9,-9,2019,1,1,6,0,49,50,15,1,0,1,0,11.52111238482467,11.52111238482467,0,0,0,0,0,0,0,1,1,0,3.586529669064375,0,0,0,57.16,56.15,7,1,0,0,8,4,1,807.75,0,0,0 +10918,13390,24417,-9,24414,24416,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.2178539405693,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,807.75,0,0,0 +10919,13391,24418,24419,-9,-9,2,1,0,30,1,0,0,0,2,-9,1,1,0,3,7.227196287920185,7.575731795805824,0,1,0,-9,2,0,2,19.04762229655848,0,0,1,28,2,3,1,-9,-9,2019,1,1,11,0,45,50,15,1,0,1,0,5.074701174240512,5.074701174240512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,5,5,1,856.5,0,0,0 +10919,13391,24419,24418,-9,-9,1,1,1,28,1,0,0,0,2,-9,1,1,0,3,9.276484853547128,8.620806510016548,0,1,0,-9,2,0,-2,-66.42989453725068,0,1,0,30,2,3,1,2,2,2019,1,2,10,0,56,56,15,1,0,1,0,14.66367241293981,14.66367241293981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,5,5,1,856.5,0,0,0 +10920,13392,24420,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,2,1,0,3,8.154059696128114,7.645399492767242,0,3,0,0,0,-9,0,-995.3979989668035,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,21,35,15,1,0,-9,0,18.07816706999827,18.07816706999827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,39.97,7,1,0,0,12,4,0,629,0,0,0 +10921,13393,24421,24422,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,1,19.45947967682296,0,0,0,81,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,3.91216845613496,0,0,0,0,1,1,0,.921908817105265,0,0,0,66.14,26.06,6,1,0,0,12,2,1,287,0,0,0 +10921,13393,24422,24421,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,2,0,6.877831094774527,7.189203428605068,1,0,-9,10,0,-1,-80.04947921529146,0,0,0,82,2,3,3,2,2,2019,4,2,12,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.671804166176726,6.956144054835552,0,0,54.37,33.54,6,1,0,0,12,2,1,287,0,0,0 +10922,13394,24423,24424,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,7,0,-3,-77.91846748121903,0,0,0,65,2,4,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,3,0,0,8,5,1,1013,0,0,0 +10922,13394,24424,24423,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,4,8.935012078175072,9.237925306690549,7.698996567731613,1,0,-9,7,0,3,63.10371945728099,0,0,0,62,3,4,3,3,3,2019,2,2,7,0,55,47,15,1,0,3,0,19.22916753743976,19.22916753743976,0,0,0,0,0,0,0,1,1,0,0,7.828417822647686,0,0,59.14,52.5,6,3,0,0,8,5,1,1013,0,0,0 +10923,13395,24425,24426,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,5,9.647539015724009,9.514582335306251,0,2,0,-9,29,0,-1,-17.81389377586064,0,0,0,52,1,4,1,3,3,2019,1,2,8,0,45,50,15,1,0,1,0,34.65191085967378,34.65191085967378,0,0,0,0,0,0,0,0,0,0,4.386932812851616,0,0,0,48.57,58.35,7,3,0,0,5,5,1,425.5,0,0,0 +10923,13395,24426,24425,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,4,9.217687927203986,9.115955700755688,0,2,0,-9,29,0,1,16.06053486538899,0,0,0,51,1,5,1,2,2,2019,1,1,9,0,38,48,15,1,0,1,0,34.22516155798845,34.22516155798845,0,0,0,0,0,0,0,0,0,0,1.197330338360756,0,0,0,57.46,47.78,6,3,0,0,5,5,1,425.5,0,0,0 +10923,13396,24427,-9,24425,24426,3,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-908.2973351006681,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,6,3,0,0,5,5,1,822,0,0,0 +10924,13397,24428,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,3,0,7.424110076190068,7.562678898677087,3,0,0,0,-9,0,-1202.069665835377,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.192863979100357,0,0,54.88,24.61,6,1,0,0,4,3,1,639,0,0,0 +10925,13398,24429,-9,24430,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1053.226070759743,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,2,1,369.5,0,0,0 +10925,13398,24430,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,6,3,0,4,0,5.457552197562631,5.94591421372676,4,0,0,0,-9,0,-960.1894783130673,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.977878477257955,0,0,0,51,54,6,1,0,1,10,2,1,369.5,0,0,0 +10926,13399,24431,24432,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,3.301124991884433,3.518727083448855,1,0,-9,56,0,-4,-42.36706694902659,0,0,0,81,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.191352344549525,0,0,57.16,56.15,2,1,0,0,1,2,1,428,0,0,0 +10926,13399,24432,24431,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,6.459131848711129,6.741005779775344,1,0,-9,56,0,4,38.24845835419104,0,0,0,77,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.931844745285221,6.875871062872204,0,0,57.33,53.46,7,1,0,0,1,2,1,428,0,0,0 +10927,13400,24433,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,1,1,0,5,5.282752832426667,5.217672833721161,0,3,0,0,0,-9,0,-967.5519806701086,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,15,15,15,1,0,-9,0,1.53554059127121,1.53554059127121,0,0,0,0,0,0,0,0,0,0,7.232625803851396,0,0,0,54.04,60.47,7,1,0,0,9,2,0,455,0,0,0 +10928,13401,24434,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,5,7.071821473120788,7.067008065627851,0,3,0,0,0,-9,0,-958.3167442705375,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,3,30,0,15,1,3,-9,0,5.486618676841222,5.486618676841222,0,0,0,0,0,0,0,1,1,0,0,0,24.03177660131347,3,37.89,64.09999999999999,4,1,0,0,9,2,0,1104,0,0,0 +10928,13402,24435,-9,24434,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,2,7.322621040050658,7.107231616080437,0,3,0,0,0,-9,0,-968.2063483578158,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,25,25,15,1,0,-9,1,6.420338803890385,6.420338803890385,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.71,51.84,4,1,0,0,9,3,0,240,0,0,0 +10929,13403,24436,24437,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,6.205258133774677,6.732111186255223,1,0,-9,10,0,11,-103.0759290610515,0,0,0,73,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.414641556946902,6.461992427026938,0,0,59.63,41.44,6,1,0,0,10,2,1,870.5,0,0,0 +10929,13403,24437,24436,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,5.830397162811821,5.883650728730598,1,0,-9,10,0,-11,55.6891491502893,0,0,0,84,2,3,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.0203566007807313,5.683078897690083,0,0,51.77,58.57,6,1,0,0,10,2,1,870.5,0,0,0 +10930,13404,24438,24439,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,4,0,7.497455060480148,7.682700930783973,1,0,-9,11,0,18,26.80315792260728,0,0,0,40,3,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.177913939701893,7.90669586099144,9.899984080090864,3,57.16,56.15,6,3,0,0,2,3,1,640,0,0,0 +10930,13404,24439,24438,-9,-9,2,1,0,40,1,0,0,0,3,-9,2,1,0,3,7.073580498516186,6.83453919539326,0,1,0,-9,11,0,-18,21.31420550755513,0,0,1,58,2,4,3,3,3,2019,2,1,9,0,16,16,15,1,0,4,0,7.607732155894297,7.607732155894297,0,0,0,0,0,0,0,0,0,0,0,0,0,3,56.7,30.57,6,3,0,0,2,3,1,640,0,0,0 +10931,13405,24440,-9,24442,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-975.5106929225261,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,689.3333333333334,0,0,0 +10931,13405,24441,-9,24442,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.1554207128319,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,689.3333333333334,0,0,0 +10931,13405,24442,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,3,3,0,3,0,5.829150478804362,6.425537013091349,4,0,0,0,-9,0,-921.1483128063555,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,14,3,0,8,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.602742534162702,0,0,3,42.04,56.46,6,1,1,0,9,2,0,689.3333333333334,0,0,0 +10932,13406,24443,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-975.1137048677145,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.94,58.01,6,1,0,0,12,1,0,578,0,0,0 +10933,13407,24444,24445,-9,-9,1,1,0,31,1,0,0,0,1,-9,1,1,0,4,7.342445753163244,7.264892045586651,0,1,0,-9,10,0,-19,-52.73034169666424,0,0,1,50,1,5,1,3,1,2019,1,2,10,0,52,47,15,1,0,1,0,3.655378656202378,3.655378656202378,0,0,0,0,0,0,0,0,0,0,10.04496652727193,0,0,0,55.19,54.26,6,1,0,0,10,3,1,513,0,0,0 +10933,13407,24445,24444,-9,-9,2,1,1,50,1,0,0,0,1,-9,1,1,0,5,6.932580244049675,6.782429177300177,0,1,0,-9,10,0,19,53.6603363889898,0,0,0,31,1,4,1,1,2,2019,1,1,9,1,40,40,15,1,1,1,0,2.523154857606833,2.523154857606833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.24,58.02,6,1,0,0,10,3,1,513,0,0,0 +10934,13408,24446,-9,24447,-9,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-944.8375380958228,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,1,0,1010.333333333333,0,0,0 +10934,13408,24447,-9,-9,-9,1,1,0,22,2,1,2,0,2,-9,3,3,0,3,0,0,0,4,0,-9,0,0,0,-934.5036759168521,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,2,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.23,45.89,7,1,1,0,7,1,0,1010.333333333333,0,0,0 +10934,13408,24448,-9,24447,-9,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-973.0202809296743,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,1,0,1010.333333333333,0,0,0 +10935,13409,24449,24450,-9,-9,2,1,0,55,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,26,0,-11,-33.74083426465484,0,0,0,66,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,0,4,2,1,421,0,0,0 +10935,13409,24450,24449,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,6.232336274862941,6.383233774894893,1,0,-9,26,0,11,-102.5457369795371,0,0,0,55,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.14362325627175,0,0,56.49,29.9,6,1,0,0,4,2,1,421,0,0,0 +10935,13410,24451,-9,-9,-9,3,1,1,54,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-974.9210353623282,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,1,0,4,1,1,1574,0,0,0 +10935,13411,24452,-9,24449,24450,4,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.530533579410132,7.59527464328847,0,3,0,0,0,-9,0,-962.1164917841239,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,38,36,15,1,0,-9,1,5.137313480861473,5.137313480861473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,4,3,1,65,0,0,0 +10936,13412,24453,-9,-9,-9,1,1,1,36,2,0,2,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-917.8509317003294,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,5,1,1,1,1,1,0,1068,0,0,0 +10937,13413,24454,-9,24456,24457,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-850.6317360587219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,3,0,709.4,0,0,0 +10937,13413,24455,-9,24456,24457,3,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.457318491623,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,0,709.4,0,0,0 +10937,13413,24456,24457,-9,-9,2,1,0,29,1,0,3,0,2,-9,1,1,0,1,6.860321473543887,6.807621504767074,0,2,0,-9,11,0,-11,-20.68520264663109,0,1,1,40,2,3,1,2,1,2019,1,1,22,9,16,12,15,1,9,1,0,7.913236838164369,7.913236838164369,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.17,12.09,4,1,0,0,9,3,0,709.4,0,0,0 +10937,13413,24457,24456,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,3,8.324780331781014,8.448486723368369,0,2,0,-9,11,0,11,3.72098497612591,0,0,0,29,2,1,1,2,3,2019,1,2,17,5,38,37,15,1,5,1,0,12.01235490930869,12.01235490930869,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,54.11,2,1,0,0,9,3,0,709.4,0,0,0 +10937,13413,24458,-9,24456,24457,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.2547907066985,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,3,0,709.4,0,0,0 +10938,13414,24459,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,4,3,0,3,0,7.378529651900948,7.205112925699786,3,0,0,0,-9,0,-943.2335391819071,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9056091767781393,7.391962311831028,0,0,46.27,57.3,5,4,0,0,8,3,1,232,0,0,0 +10939,13415,24460,-9,24461,24463,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1024.775058865433,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,4,1,683.6,0,0,0 +10939,13415,24461,24463,-9,-9,1,1,0,33,1,1,3,0,2,-9,5,1,0,3,8.845953016676129,8.767585292571253,6.262621910739532,2,0,-9,1,-9,-4,-30.11624381668545,-9,0,1,37,3,4,1,2,-9,2019,1,4,10,0,36,0,15,1,0,1,0,25.05825211741615,25.05825211741615,0,0,0,0,0,0,0,1,1,0,6.297249644926954,0,0,0,53.54,49.68,6,1,0,0,10,4,1,683.6,0,0,0 +10939,13415,24462,-9,24461,-9,2,1,1,10,2,1,3,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1105.659267547813,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,5,1,0,0,10,4,1,683.6,0,0,0 +10939,13415,24463,24461,-9,-9,4,1,1,37,1,1,3,0,3,-9,2,1,0,4,8.146679543952704,8.053569284177708,0,2,0,-9,1,-9,4,-52.06259310149203,-9,0,0,33,2,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,9.75660778770704,9.75660778770704,0,0,0,0,0,0,0,1,1,0,1.80501189456155,0,0,0,50,57,5,5,0,0,10,4,1,683.6,0,0,0 +10939,13415,24464,-9,24461,-9,3,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-855.9155207620813,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,683.6,0,0,0 +10940,13416,24465,24466,-9,-9,1,1,0,34,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,2,73.24929501584289,0,0,1,32,2,4,1,3,2,2019,3,4,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,32.83,48.42,4,1,0,0,11,2,0,737,0,0,0 +10940,13416,24466,24465,-9,-9,4,1,1,32,1,0,3,0,2,-9,2,1,0,4,8.274694183080474,7.905259801705389,0,2,0,-9,6,0,-2,40.46713129793983,0,0,0,34,2,3,3,-9,-9,2019,2,1,10,0,40,38,15,1,1,3,0,8.386251690051148,8.386251690051148,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,11,2,0,737,0,0,0 +10940,13416,24467,-9,24465,24466,3,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.1905160367077,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,0,737,0,0,0 +10940,13416,24468,-9,24465,24466,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.7847922460633,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,0,737,0,0,0 +10941,13417,24469,24470,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.355444885678684,8.461396933514306,0,1,0,-9,34,0,0,-46.1156377663242,0,0,0,55,2,4,1,2,2,2019,1,1,10,1,38,38,15,1,1,1,0,14.19354625549906,14.19354625549906,0,0,0,0,0,0,0,0,0,0,1.407927838331211,0,0,0,49.64,48.69,5,1,0,0,6,5,1,1152.5,0,0,0 +10941,13417,24470,24469,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,9.587418401404175,9.435139358401209,0,1,0,-9,34,0,0,-78.38967781320522,0,0,0,55,2,3,1,2,1,2019,1,2,14,4,40,48,15,1,4,1,0,48.30429831115456,48.30429831115456,0,0,0,0,0,0,0,0,0,0,5.411752661825442,0,0,0,46.44,59.62,6,1,0,0,6,5,1,1152.5,0,0,0 +10942,13418,24471,24472,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,1,-9,3,23.29057016716073,-9,0,0,50,1,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.549632308792068,3,51.1,48.1,7,1,0,0,13,5,1,399.5,0,0,0 +10942,13418,24472,24471,-9,-9,1,1,1,50,1,0,0,0,1,-9,2,1,0,4,8.999547259898549,9.199352924986119,0,1,0,-9,1,-9,-3,-.7737208023952817,-9,0,0,53,2,4,3,2,3,2019,2,2,13,2,42,0,15,1,2,3,0,27.77408316512639,27.77408316512639,0,0,0,0,0,0,0,0,0,0,.5997688580567,0,0,0,47.45,60.44,5,1,0,0,13,5,1,399.5,0,0,0 +10943,13419,24473,-9,24475,24476,5,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.429193217674,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,420.25,0,0,0 +10943,13419,24474,-9,24475,24476,4,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.993422178067,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,58.53,5,3,0,0,8,3,1,420.25,0,0,0 +10943,13419,24475,24476,-9,-9,2,1,0,47,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,22,0,-5,20.71228775559317,0,0,0,52,1,3,1,3,2,2019,3,1,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,3,0,0,8,3,1,420.25,0,0,0 +10943,13419,24476,24475,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,3,8.998895935460993,8.923418968517257,0,2,0,-9,22,0,5,11.46003022044063,0,0,0,47,2,5,3,3,2,2019,2,2,10,0,40,40,15,1,0,3,0,17.41071400231719,17.41071400231719,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,3,0,0,8,3,1,420.25,0,0,0 +10943,13420,24477,-9,24475,24476,3,1,0,20,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1045.353064016838,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,2,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,8,1,1,822,0,0,0 +10944,13421,24478,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1077.072803546056,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,36,12,0,48,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.44,39.99,1,1,0,1,11,1,0,383,0,0,0 +10945,13422,24479,24480,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,3,0,8.269990197608786,7.987102904342796,1,0,-9,10,0,5,-53.50465824613163,0,0,0,55,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.162382578220699,8.238975755945026,14.75279512923286,3,55.06,40.97,6,1,0,0,2,4,1,1027.5,0,0,0 +10945,13422,24480,24479,-9,-9,1,1,0,55,1,0,0,0,2,-9,4,3,0,2,0,5.487197569965812,5.638084776571995,1,0,-9,35,0,-5,25.5763359954924,0,0,0,60,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.629577155871047,0,0,61.43,32.82,7,1,0,0,2,4,1,1027.5,0,0,0 +10946,13423,24481,24482,-9,-9,3,1,1,38,1,0,0,0,3,-9,2,1,0,4,7.972701297195917,8.281269172195984,0,1,0,-9,6,0,-3,-48.48308561172848,0,0,0,41,3,4,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,3,0,6.965989113957036,6.965989113957036,0,0,0,0,0,0,0,1,1,0,0,0,119.8343799992858,1,50,57,5,1,0,0,13,3,0,345.5,0,0,0 +10946,13423,24482,24481,-9,-9,1,1,0,41,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,-9,6,0,3,64.22974520066538,0,0,1,38,3,4,1,3,3,2019,3,3,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,1,13,3,0,345.5,0,0,0 +10946,13424,24483,-9,24482,-9,2,1,1,20,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-814.8205270442188,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.057453386357,3,47,60,5,1,0,1,13,1,0,1129,0,0,0 +10947,13425,24484,-9,-9,-9,1,1,0,46,3,0,1,0,3,-9,2,1,0,1,7.249296774834833,7.323709709681322,5.900210026328208,4,0,0,0,-9,0,-1031.151129651894,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,10,10,15,1,4,-9,0,14.98847924385818,14.98847924385818,0,0,0,0,0,0,0,1,1,0,5.629347372450946,0,0,0,38.99,25.85,1,1,0,0,8,2,0,1651.5,0,0,0 +10947,13425,24485,-9,24484,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.96858839401,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,2,0,1651.5,0,0,0 +10948,13426,24486,-9,-9,-9,2,1,1,26,2,0,0,0,1,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1043.221519894183,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.35,64.48999999999999,2,1,0,0,1,1,0,219,0,0,0 +10949,13427,24487,24488,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.52861825479486,6.843951759184721,1,0,-9,53,0,4,-25.98484738828882,0,0,0,69,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.389706099338962,6.450050351192704,0,0,59.46,46.99,6,1,0,0,10,2,1,1098,0,0,0 +10949,13427,24488,24487,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,53,0,-4,-29.38519234677813,0,0,0,73,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.67,53.13,7,1,0,0,10,2,1,1098,0,0,0 +10950,13428,24489,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,1,1,0,4,8.4002322492576,8.659356926123808,0,3,0,0,0,-9,0,-902.8508464322491,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,40,15,1,0,-9,0,14.07900698156991,14.07900698156991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,57.83,5,1,0,1,11,4,1,565,0,0,0 +10951,13429,24490,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1138.046391105573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,31,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.9,21.84,1,1,0,1,2,1,0,528,0,0,0 +10952,13430,24491,24492,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,8.069285303070615,8.763553812811846,1,0,-9,10,0,7,32.91199316962972,0,0,0,67,3,2,3,3,2,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.804198573421501,8.087930679617683,0,3,46.33,55.93,3,1,0,0,9,3,1,876,0,0,0 +10952,13430,24492,24491,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,42,0,-7,-43.15322538895379,0,0,0,74,2,3,3,2,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.0655166282294,3,49.92,23.35,3,1,0,0,9,3,1,876,0,0,0 +10953,13431,24493,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,2,0,5.865765132536198,5.609540619213683,3,0,0,0,-9,0,-1035.536543199608,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,8.406275041232584,0,0,6.423452061644799,0,92.02915727922097,1,1,0,0,5.869495708938901,0,0,43.04,32.88,6,1,0,0,13,2,0,700,0,0,0 +10954,13432,24494,24495,-9,-9,1,1,1,56,1,0,0,0,2,-9,8,3,1,1,0,7.344014276149275,7.579505468942424,1,0,-9,27,0,4,-134.1595782891953,0,0,0,52,2,2,3,2,2,2019,4,2,29,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.369476608937979,0,0,30.85,17.26,2,1,0,0,13,2,1,408.5,0,0,0 +10954,13432,24495,24494,-9,-9,2,1,0,52,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,27,0,-4,-83.81458638987253,0,0,0,56,2,1,3,2,2,2019,4,1,15,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,114.5675126096207,1,38.39,40.89,5,1,0,0,13,2,1,408.5,0,0,0 +10955,13433,24496,24497,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,4,7.570687340822948,7.777168445188749,0,1,0,-9,8,0,6,44.96215235226906,0,0,1,38,2,4,1,2,2,2019,1,2,6,0,38,37,15,1,0,1,0,8.060018473692542,8.060018473692542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,520,0,0,0 +10955,13433,24497,24496,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,4,9.017262466380359,8.834405432908637,0,1,0,-9,8,0,-6,-39.22201840090825,0,0,0,44,2,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,21.91418199335186,21.91418199335186,0,0,0,0,0,0,0,0,0,0,3.900752564390098,0,0,0,51,57,5,1,0,0,7,5,1,520,0,0,0 +10956,13434,24498,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1115.978677007162,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,124.9960039206369,0,0,0,0,1177.80950672083,1,1,0,0,0,0,0,46.13,24.31,3,1,0,0,9,1,0,474,0,0,0 +10957,13435,24499,24500,-9,-9,1,1,0,62,1,0,0,0,2,-9,1,1,0,4,7.42654814691053,7.599878488255916,3.357877614804675,1,0,-9,29,0,-7,-167.7174733482377,0,0,0,69,3,4,1,2,3,2019,1,2,7,0,8,10,15,1,0,1,0,26.76114652186627,26.76114652186627,0,0,0,0,0,0,0,1,1,0,3.4884862356748,3.437557775499397,0,0,57.16,56.15,7,1,0,0,6,4,1,511.5,0,0,0 +10957,13435,24500,24499,-9,-9,2,1,1,69,1,0,0,0,3,-9,1,1,0,4,7.661230901133126,7.977635453111986,6.98295110443602,1,0,-9,28,0,7,70.9506684947475,0,0,0,62,2,4,1,3,3,2019,1,1,8,0,20,20,15,1,0,1,0,12.64749334548143,12.64749334548143,0,0,0,0,0,0,0,1,1,0,6.640260050217718,7.108923271450073,0,0,58.15,52.91,6,1,0,0,6,4,1,511.5,0,0,0 +10958,13436,24501,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,2,0,6.051097113429694,5.785682403298617,3,0,0,0,-9,0,-908.938598265383,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.306530857744085,6.005462123074166,0,0,48.73,27.95,6,1,0,0,1,2,1,522,0,0,0 +10959,13437,24502,-9,24504,24505,4,1,1,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-797.4441367696161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,2,0,596.8333333333334,0,0,0 +10959,13437,24503,-9,24504,24505,5,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.485562270112,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,0,596.8333333333334,0,0,0 +10959,13437,24504,24505,-9,-9,2,1,0,32,1,0,4,0,2,-9,2,1,0,4,6.918011519610336,7.362767732289759,0,2,0,-9,10,0,1,-2.668577740989293,0,0,1,31,2,2,1,2,2,2019,1,1,8,0,16,1,15,1,0,1,0,10.89216197573053,10.89216197573053,0,0,0,0,0,0,0,1,1,0,0,0,6.485238314730454,3,49.41,58.28,6,1,0,0,10,2,0,596.8333333333334,0,0,0 +10959,13437,24505,24504,-9,-9,1,1,1,31,1,0,4,0,2,-9,1,1,0,2,7.56348909388733,7.851280323917736,0,2,0,-9,10,0,-1,55.87291732834512,0,0,0,32,2,4,1,2,2,2019,1,2,13,1,55,60,15,1,1,1,0,4.137068773509465,4.137068773509465,0,0,0,0,0,0,0,1,1,0,2.223595330451074,0,0,0,43.97,42.52,3,1,0,0,10,2,0,596.8333333333334,0,0,0 +10959,13437,24506,-9,24504,24505,6,1,0,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.5501666414801,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,0,596.8333333333334,0,0,0 +10959,13437,24507,-9,24504,24505,3,1,0,14,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1111.643489533626,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,10,2,0,596.8333333333334,0,0,0 +10960,13438,24508,-9,-9,-9,1,1,0,36,3,0,0,0,1,-9,2,1,0,5,9.024719791143825,9.289506352237176,0,3,0,-9,0,1,0,-923.9727139779889,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,45,37,15,1,10,-9,0,24.03087831681425,24.03087831681425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.31,58.56,3,3,0,0,6,5,1,603,0,0,0 +10961,13439,24509,-9,24511,24510,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1135.95351466872,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,0,876,0,0,0 +10961,13439,24510,24511,-9,-9,2,1,1,32,1,0,2,0,2,-9,2,1,0,3,7.900693010882125,8.210692627379819,0,2,0,-9,8,0,0,50.84840298770466,0,0,0,41,2,3,3,3,-9,2019,2,1,12,0,39,0,15,1,2,3,0,9.36520708911557,9.36520708911557,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,52,6,1,0,0,5,3,0,876,0,0,0 +10961,13439,24511,24510,-9,-9,1,1,0,41,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,9,0,9,81.94320176844573,0,0,1,32,2,3,1,3,3,2019,3,2,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,5,1,0,0,5,3,0,876,0,0,0 +10962,13440,24512,24513,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,4,9.243769705846068,9.528324050836558,0,1,0,-9,1,-9,10,-31.27067662679281,-9,0,0,36,2,4,1,2,2,2019,1,2,24,12,50,0,15,1,12,1,0,29.61340249746426,29.61340249746426,0,0,0,0,0,0,0,0,0,0,6.443358085749773,0,0,0,33.24,65.53,5,1,0,1,2,5,1,1339,0,0,0 +10962,13440,24513,24512,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,4,8.62672464443822,8.7654140870091,0,1,0,-9,1,-9,-10,9.911173038088437,-9,0,1,46,1,4,1,-9,-9,2019,1,1,18,6,40,0,15,1,6,1,0,17.00493316704458,17.00493316704458,0,0,0,0,0,0,0,0,0,0,1.208240283515664,0,0,0,32.67,63.54,6,1,0,0,2,5,1,1339,0,0,0 +10963,13441,24514,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,3,0,6.881694650639827,6.843281838717308,3,0,0,0,-9,0,-966.2339276220863,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,4.336133968637665,0,0,2.903493621843631,0,78.07763573060375,1,1,0,1.839278177934621,7.195304033297646,0,0,60.82,35.46,6,1,0,0,12,2,1,2117,0,0,0 +10964,13442,24515,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.890798924166658,7.939304552546822,0,3,0,0,0,-9,0,-1165.292883758344,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,33,18,15,1,0,-9,0,8.005321248110755,8.005321248110755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85,51.81,6,1,0,0,12,3,0,218,0,0,0 +10965,13443,24516,24517,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.320701411237797,8.451521922602865,0,1,0,-9,7,0,3,-61.67440634269391,0,0,0,50,2,2,1,-9,-9,2019,1,1,14,3,34,32,15,1,3,1,0,15.00615126432809,15.00615126432809,0,0,0,0,0,0,0,0,0,0,0,0,5.667728798164919,3,33.57,49.28,5,1,0,0,4,5,1,605,0,0,0 +10965,13443,24517,24516,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,2,8.439693744806769,8.613198664389003,0,1,0,-9,7,0,-3,30.46792108277964,0,0,0,53,2,3,1,3,2,2019,1,2,10,0,37,37,15,1,0,1,0,13.95371199945457,13.95371199945457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.28,39.3,5,1,0,0,4,5,1,605,0,0,0 +10966,13444,24518,-9,24520,24521,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.918479935773,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,12,5,1,658.75,0,0,0 +10966,13444,24519,-9,24520,24521,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.864124801142,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,12,5,1,658.75,0,0,0 +10966,13444,24520,24521,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,9.558604306199381,9.290973720664129,0,2,0,-9,19,0,-2,-98.55227388920306,0,0,1,43,1,3,1,2,2,2019,1,2,9,2,38,40,15,1,2,1,0,34.76841198160771,34.76841198160771,0,0,0,0,0,0,0,0,0,0,7.254915234110189,0,0,0,53.27,45.95,6,1,0,0,12,5,1,658.75,0,0,0 +10966,13444,24521,24520,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,3,9.199770087464126,8.558530876949677,0,2,0,-9,19,0,2,-16.2720512088769,0,0,0,41,1,5,1,2,2,2019,1,1,11,0,78,42,15,1,0,1,0,13.08505663583698,13.08505663583698,0,0,0,0,0,0,0,0,0,0,5.216068011335917,0,0,0,44.17,49.99,5,1,0,0,12,5,1,658.75,0,0,0 +10967,13445,24522,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,2,7.977007040808775,8.040265602014227,0,3,0,0,0,-9,0,-1084.752571619544,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,9.115484968321859,9.115484968321859,0,0,0,0,0,0,0,1,1,0,2.38498119711056,0,0,0,53.4,32.68,6,1,0,0,6,4,0,358,0,0,0 +10968,13446,24523,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,2,0,6.524463108806327,6.347846914818367,3,0,0,0,-9,0,-1074.825308552543,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.312185344692374,0,0,36.78,43.04,2,1,0,0,11,2,1,939,0,0,0 +10969,13447,24524,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,4,0,7.199395539860696,6.912361955250501,3,0,0,0,-9,0,-888.5809901057635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.385612303466313,6.881859918749625,0,0,60.72,44.93,6,1,0,0,6,2,1,1547,0,0,0 +10969,13448,24525,-9,-9,24524,2,1,1,40,2,0,0,0,3,-9,2,1,0,4,8.229519884298506,7.882719118113373,0,3,0,0,0,-9,0,-999.8870909252589,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,40,46,15,1,1,-9,1,10.33097630267257,10.33097630267257,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,6,4,1,247,0,0,0 +10969,13449,24526,-9,-9,24524,3,1,1,35,2,0,0,0,3,-9,2,1,0,4,8.383303696201613,8.388911635070771,0,3,0,0,0,-9,0,-1141.907893113292,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,40,40,15,1,1,-9,1,10.45353317276226,10.45353317276226,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,6,4,1,1081,0,0,0 +10970,13450,24527,24528,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,3,8.268065948240206,8.108255979380376,0,2,0,-9,9,-9,0,-34.07735815174723,-9,0,1,42,1,2,1,3,2,2019,1,2,12,0,39,0,15,1,0,1,0,13.08045213712614,13.08045213712614,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,53.27,5,1,0,0,9,5,1,922,0,0,0 +10970,13450,24528,24527,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,2,8.757571925296844,8.894758905150592,0,2,0,-9,1,-9,0,-5.825151083459841,-9,0,0,42,2,3,1,-9,-9,2019,1,1,15,3,37,0,15,1,3,1,0,22.05890638880003,22.05890638880003,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.66,43.37,4,1,0,1,9,5,1,922,0,0,0 +10971,13451,24529,24530,-9,-9,1,1,0,59,1,0,0,0,2,-9,1,1,0,5,7.691822329023062,7.725425966336461,0,1,0,-9,6,0,-5,7.970065206861954,0,0,0,64,1,3,1,2,2,2019,1,2,11,3,25,20,15,1,3,1,0,9.339006834539978,9.339006834539978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.27,57.22,6,1,0,0,6,5,1,923,0,0,0 +10971,13451,24530,24529,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,3,9.355221247173702,9.698715520502603,0,1,0,-9,6,0,5,-108.2500603832319,0,0,0,59,2,5,1,-9,-9,2019,1,1,7,0,42,42,15,1,0,1,0,31.93577532296738,31.93577532296738,0,0,0,0,0,0,0,1,1,0,4.244921075277885,0,0,3,60.44,46.58,6,1,0,0,6,5,1,923,0,0,0 +10972,13452,24531,24532,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,5,0,9.334739468403171,9.671674403362825,1,0,-9,9,0,-8,27.35304220419655,0,0,0,73,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.595279599837322,9.417976697054401,0,0,60.02,56.42,7,1,0,0,6,5,1,883,0,0,0 +10972,13452,24532,24531,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,37,0,8,7.699686192566205,0,0,0,65,1,5,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.41,39.7,6,1,0,0,6,5,1,883,0,0,0 +10973,13453,24533,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,4.717163130747358,5.326105611956628,4.181628621609646,3,0,0,0,-9,0,-977.2010515574424,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,35,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.573335827349719,8.029397804900427,3,12.76,39.09,2,1,0,1,10,2,0,468,0,0,0 +10974,13454,24534,24535,-9,-9,2,1,1,56,1,0,1,0,1,-9,2,1,0,3,9.873589394984705,9.906843685764006,0,2,0,-9,25,0,-2,0,0,0,0,58,1,4,1,2,2,2019,1,1,10,1,39,40,15,1,1,1,0,49.64997287690808,49.64997287690808,0,0,0,0,0,0,0,0,0,0,5.716307380065598,0,0,0,46.08,57.2,2,1,0,0,8,5,1,329.5,0,0,0 +10974,13454,24535,24534,-9,-9,1,1,0,58,1,0,1,0,1,-9,2,1,0,4,9.613338044527541,9.637729793267569,0,2,0,-9,25,0,2,0,0,0,0,56,1,3,1,-9,-9,2019,1,2,9,0,60,60,15,1,0,1,0,28.11295340026337,28.11295340026337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,8,5,1,329.5,0,0,0 +10974,13455,24536,-9,24535,24534,3,1,1,18,2,0,1,1,2,0,7,2,0,4,5.194732581669941,5.130682383801349,0,3,0,0,0,-9,0,-1010.335019221661,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.210882990174931,0,0,0,43.96,62.06,5,1,0,0,8,5,1,995,0,0,0 +10975,13456,24537,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,2,1,0,4,9.837608429595722,9.710834962825302,0,3,0,-9,0,0,0,-1013.885320667685,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,58,0,15,1,0,-9,0,35.63528656596488,35.63528656596488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,3,1,0,0,5,5,1,669,0,0,0 +10975,13457,24538,-9,24537,-9,2,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.416628818329317,7.653063078976855,5.606542931019175,3,0,0,0,-9,0,-1140.369115726991,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,30,0,15,1,0,-9,1,7.92916171947962,7.92916171947962,0,0,0,0,0,0,0,0,0,0,5.416785563162452,0,0,0,54.2,49.26,5,1,0,0,5,3,1,866,0,0,0 +10976,13458,24539,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,5,7.735571978875618,8.161030203032688,0,3,0,0,0,-9,0,-743.4749897821714,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,37,37,15,1,1,-9,0,10.09297825959851,10.09297825959851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,7,1,0,0,11,3,1,737,0,0,0 +10976,13459,24540,-9,24539,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,2,8.41799154217377,8.527208902443645,0,3,0,0,0,-9,0,-876.6352423499728,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,43,38,15,1,0,-9,1,12.33770973201032,12.33770973201032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.06,35.36,6,1,0,0,11,4,1,180,0,0,0 +10977,13460,24541,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1161.913893439873,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.47,31.68,1,1,0,0,12,1,0,2106,0,0,0 +10978,13461,24542,-9,24543,-9,3,1,0,17,2,0,1,1,2,0,7,2,0,4,4.734716457615791,4.936509281149038,0,4,0,0,0,-9,0,-1019.818862690992,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,4,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,3,1,458.5,0,0,0 +10978,13461,24543,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,2,1,0,3,7.485719169349388,7.648853170850654,6.943927282285273,4,0,0,0,-9,0,-937.4321922812907,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,28,28,15,1,0,-9,0,7.411851655728332,7.411851655728332,0,0,0,0,0,0,0,1,1,0,6.671713988963643,0,0,0,47,50,6,1,0,0,5,3,1,458.5,0,0,0 +10978,13462,24544,-9,24543,-9,2,1,1,19,2,0,1,1,2,-9,7,2,0,4,7.377669390856816,7.476431588868597,0,3,0,0,0,-9,0,-888.247738628027,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.375151565587807,0,0,0,48,59,5,1,0,0,5,3,1,1014,0,0,0 +10979,13463,24545,24546,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.785089934829903,8.513515983550139,0,1,0,-9,26,0,8,66.25527073930664,0,0,0,46,2,3,1,3,2,2019,1,1,13,2,55,25,15,1,2,1,0,15.65924493611085,15.65924493611085,0,0,0,0,0,0,0,1,0,1,4.120179588744109,0,0,0,44.42,39.11,4,3,0,1,8,5,1,659.5,0,0,0 +10979,13463,24546,24545,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,3,8.012978893505554,7.943251030407894,0,1,0,-9,26,0,-8,65.86432659026458,0,0,0,54,2,2,1,2,2,2019,1,2,11,0,31,0,15,1,0,1,0,13.52101610019372,13.52101610019372,0,0,0,0,0,0,0,1,0,1,0,0,1.801099429547511,2,52.99,51.28,5,3,0,0,8,5,1,659.5,0,0,0 +10979,13464,24547,-9,24546,24545,3,1,0,23,2,0,0,0,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-932.5169179346508,1,1,1,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,30,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,4.326897502252914,3,48.87,58.55,5,3,0,0,8,1,1,180,0,0,0 +10979,13465,24548,-9,24546,24545,4,1,1,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-989.0135864910901,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.1,59.11,6,3,0,0,8,1,1,565,0,0,0 +10980,13466,24549,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,7.828757970771525,7.629566289100191,0,3,0,0,0,-9,0,-942.6147356295921,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,35,36,15,1,5,-9,0,7.500208125504441,7.500208125504441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,45.67,3,1,0,1,11,3,1,293,0,0,0 +10980,13467,24550,-9,24549,-9,2,1,1,32,2,0,0,0,2,-9,2,1,0,4,7.866732362060974,7.901002114894717,0,3,0,0,0,-9,0,-1036.367541965068,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,55,15,1,0,-9,1,8.322232136655972,8.322232136655972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,5,1,0,0,11,3,1,370,0,0,0 +10981,13468,24551,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,3,6.329206436639633,6.199821343096039,0,3,0,0,0,-9,0,-879.3951404421111,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,53.54,4,3,0,0,8,2,0,1807,0,0,0 +10982,13469,24552,24553,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,6.340348108038445,6.161062094635795,1,0,-9,54,0,-2,63.21780529897845,0,0,0,75,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.438230406776217,0,0,58.15,52.91,6,1,0,0,9,3,1,332,0,0,0 +10982,13469,24553,24552,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,7.654712950533792,7.892469541075025,1,0,-9,54,0,2,91.80674782329002,0,0,0,73,3,4,3,-9,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.45362329521607,7.69819762159123,0,0,47.69,55.06,6,1,0,0,9,3,1,332,0,0,0 +10983,13470,24554,-9,24555,-9,4,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-838.7321681626244,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,9,4,0,1464.5,0,0,0 +10983,13470,24555,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,5,8.414794454954427,8.426470231725965,6.544084834998862,4,0,0,0,-9,0,-916.9342798296262,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,0,0,30,29,15,1,0,-9,0,12.7146973276204,12.7146973276204,0,0,0,0,0,0,0,1,1,0,6.788461917094865,0,0,0,57.06,57.76,6,3,0,0,9,4,0,1464.5,0,0,0 +10983,13471,24556,-9,24555,-9,2,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1018.76917652615,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,2,0,0,9,1,0,2461,0,0,0 +10983,13472,24557,-9,24555,-9,3,1,0,18,2,0,1,0,2,1,2,1,0,5,7.365388617692197,7.12513737007285,0,3,0,0,0,-9,0,-928.4408485376867,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,18,0,15,1,2,-9,1,8.659198503137722,8.659198503137722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.7,57.37,7,3,0,0,9,2,0,1130,0,0,0 +10984,13473,24558,24559,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-2,-54.38904509676977,0,0,0,70,2,2,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.019791488449213,0,10.15335262752966,3,60.05,42.65,6,1,0,0,10,3,1,1253,0,0,0 +10984,13473,24559,24558,-9,-9,2,1,1,70,1,0,0,0,2,-9,1,1,0,2,8.098189066862268,8.060501279032154,0,1,0,-9,50,0,2,-96.2226407738456,0,0,0,68,2,3,3,3,3,2019,2,1,27,11,49,45,15,1,11,4,0,6.783076090198761,6.783076090198761,0,0,0,0,0,0,0,1,1,0,4.280237393947162,0,0,0,31.8,39.77,6,1,0,0,10,3,1,1253,0,0,0 +10985,13474,24560,24561,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,3,8.617867307805573,8.600415040450043,0,1,0,-9,36,0,-5,30.01584871883148,0,0,0,62,2,3,1,2,-9,2019,1,2,11,0,37,47,15,1,2,1,0,16.13811744089145,16.13811744089145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,1,0,0,11,5,1,497,0,0,0 +10985,13474,24561,24560,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.092385858319933,8.060427387611258,6.233531515108965,1,0,-9,35,0,5,47.05889757660429,0,0,0,57,1,3,1,3,3,2019,1,1,7,0,39,37,15,1,0,1,0,10.19601917194851,10.19601917194851,0,0,0,0,0,0,0,0,0,0,7.634990578754488,6.405263577986744,0,0,43.65,58.28,6,1,0,0,11,5,1,497,0,0,0 +10986,13475,24562,-9,-9,-9,1,1,0,75,2,0,0,0,2,-9,4,3,0,1,0,6.671297694683011,6.826045728770054,3,0,0,0,-9,0,-868.811811391795,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.574248806764972,0,0,41.14,30.1,2,1,0,0,1,2,1,485,0,0,0 +10987,13476,24563,24564,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.532767697707225,8.360260949016102,1,0,-9,1,-9,2,100.8051423952234,-9,0,0,68,2,4,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.442066223798145,0,0,45.88,39.61,6,1,0,0,9,4,1,5117.5,0,0,0 +10987,13476,24564,24563,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,44,-9,-2,-21.90465929768978,-9,0,0,70,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.57,46.44,7,1,0,0,9,4,1,5117.5,0,0,0 +10988,13477,24565,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,2,8.509643432113732,8.526677065270128,0,3,0,0,0,-9,0,-1094.993169673027,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,41,41,15,1,0,-9,0,11.8843448526187,11.8843448526187,0,0,0,0,0,0,0,0,0,0,8.284012077658076,0,17.25461248798575,3,55.21,43.87,5,3,0,0,9,4,1,1444,0,0,0 +10989,13478,24566,24567,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,4,7.054711458418974,9.19307661191281,8.975519506016306,2,0,-9,18,0,-1,-101.0029822575158,0,0,0,55,2,3,3,2,3,2019,2,1,13,4,53,60,15,1,4,4,0,3.335884007939045,3.335884007939045,0,0,0,0,0,0,0,0,0,0,9.081100318006396,0,9.19179872930216,3,48.87,58.55,5,1,0,0,9,4,1,964.5,0,0,0 +10989,13478,24567,24566,-9,-9,1,1,0,55,1,0,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,18,0,1,-161.7456017291534,0,0,0,54,1,4,1,2,2,2019,3,2,22,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.068200434973868,0,23.02333978572126,3,36.35,57.44,4,1,0,0,9,4,1,964.5,0,0,0 +10989,13479,24568,-9,24567,24566,3,1,0,22,2,0,1,0,1,0,7,2,0,4,0,6.431122659150158,6.416469124566971,3,0,0,0,-9,0,-1043.433780598224,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.629459637961777,0,0,0,58.15,52.91,6,1,0,0,9,2,1,838,0,0,0 +10989,13480,24569,-9,24567,24566,4,1,0,18,2,0,1,1,2,0,7,2,0,2,0,5.369941595033655,5.31303613933803,3,0,0,0,-9,0,-889.4393585581337,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.088541964894998,0,7.8990116157267,3,49.28,52.09,7,1,0,0,9,4,1,1284,0,0,0 +10990,13481,24570,24571,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,6.329193683872298,6.509104514471118,1,0,-9,53,0,0,-64.68519923009526,0,0,0,74,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,9.891395583708643,0,0,0,0,1,1,0,0,6.289335207548814,0,0,60.28,23.75,5,1,0,0,1,2,1,1290,0,0,0 +10990,13481,24571,24570,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,5.295480437979898,5.386434801875392,1,0,-9,53,0,0,-23.08350444449614,0,0,0,74,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.65442319921929,5.337354331194896,0,0,59.07,40.19,7,1,0,0,1,2,1,1290,0,0,0 +10991,13482,24572,-9,-9,-9,1,1,1,41,3,0,0,0,2,-9,2,1,0,3,8.076973840791522,8.087753674310635,0,3,0,0,0,-9,0,-989.043349577558,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,41,38,15,1,4,-9,0,9.785380569858772,9.785380569858772,0,0,0,0,0,0,0,1,1,0,0,0,24.5348065623763,3,17.45,66.57000000000001,2,1,0,1,11,4,0,327,0,0,0 +10992,13483,24573,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1008.102741913791,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,11.55190269915968,0,0,4.537364951546665,0,162.9543270773574,1,1,0,0,0,0,0,53,44,6,2,0,1,4,1,0,1065,0,0,0 +10993,13484,24574,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,4,8.335384270559114,8.370177215228953,0,3,0,0,0,-9,0,-898.3711926727242,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,60,42,15,1,0,-9,0,8.044975082082939,8.044975082082939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.74,66.23,2,1,0,0,5,5,0,1280,0,0,0 +10994,13485,24575,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,3,0,7.489583116731622,7.528638878400349,3,0,0,0,-9,0,-1082.217363701674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.184326688790548,7.790891147525289,0,0,55.83,37.52,6,1,0,0,10,3,1,1760,0,0,0 +10995,13486,24576,24577,-9,-9,1,1,0,49,1,0,1,0,3,-9,2,1,0,2,7.382182393317007,7.0630626414686,0,2,0,-9,7,0,-12,7.207774946923785,0,0,0,61,2,1,3,2,2,2019,2,3,32,12,28,25,15,1,12,3,0,6.630417209946226,6.630417209946226,0,0,0,0,0,0,0,1,1,0,0,0,12.32968880902193,3,20.48,46.47,2,1,0,0,11,2,0,771,0,0,0 +10995,13486,24577,24576,-9,-9,3,1,1,61,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,7,0,12,-29.75931527457164,0,0,0,49,3,2,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.306576055012336,3,51.38,33.56,4,1,0,0,11,2,0,771,0,0,0 +10995,13486,24578,-9,24576,24577,2,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-927.7389570070526,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.09,54.06,6,1,0,0,11,2,0,771,0,0,0 +10996,13487,24579,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1103.281213828958,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,26,11,0,47,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.211427998369095,3,38.09,63.39,3,1,1,1,8,1,1,197,0,0,0 +10997,13488,24580,24581,-9,-9,2,1,0,60,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-10,-8.378123781500616,0,0,0,70,2,3,3,-9,-9,2019,4,1,15,5,0,0,15,3,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,83.24817742283926,1,38.66,21.8,4,1,0,0,9,2,1,653.5,0,0,0 +10997,13488,24581,24580,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,5.279282024748871,5.499178896846956,1,0,-9,7,0,10,83.58021692541163,0,0,0,60,1,1,3,3,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,5.391789673361544,5.225278121129076,0,0,46.56,50.26,1,1,0,0,9,2,1,653.5,0,0,0 +10998,13489,24582,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,2,8.085085869975757,8.160574159283531,0,3,0,0,0,-9,0,-921.6557200312441,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,38,30,15,1,1,-9,0,9.019223548889052,9.019223548889052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,38.89,3,1,0,1,4,4,1,677,0,0,0 +10999,13490,24583,24584,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,0,0,0,1,0,-9,9,0,-2,-153.3138789860509,0,0,0,52,2,4,1,2,2,2019,1,1,12,1,0,50,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906069887064868,0,0,0,42.11,53.48,6,1,0,0,6,2,1,1458,0,0,0 +10999,13490,24584,24583,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.472054897024153,7.366648373511316,0,1,0,-9,9,0,2,81.84734329389524,0,0,0,50,2,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,5.403929433092915,5.403929433092915,0,0,0,0,0,0,0,0,0,0,6.118265510151364,0,0,0,54.2,57.49,1,1,0,0,6,2,1,1458,0,0,0 +11000,13491,24585,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,3,8.134848998944687,7.975740377293683,0,3,0,-9,0,0,0,-905.6848167275001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,44,42,15,1,0,-9,0,9.008227717679455,9.008227717679455,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.29,52.1,4,1,0,0,6,4,0,122,0,0,0 +11001,13492,24586,24587,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,5,10.47653329572101,10.625309731846,0,2,0,-9,28,0,3,-47.31450532517771,0,0,0,48,2,4,1,2,2,2019,1,2,8,0,48,50,15,1,0,1,0,84.04396124729159,84.04396124729159,0,0,0,0,0,0,0,0,0,0,1.794844217647859,0,0,0,49.25,61.25,6,1,0,0,2,5,1,1006.5,0,0,0 +11001,13492,24587,24586,-9,-9,2,1,0,48,1,0,2,0,2,-9,2,1,0,4,7.856342368751624,8.19549111647869,0,2,0,-9,7,0,-3,13.41163062299247,0,0,0,51,1,5,1,3,3,2019,1,1,7,0,24,23,15,1,0,1,0,14.66464605155231,14.66464605155231,0,0,0,0,0,0,0,0,0,0,1.965790827601126,0,0,0,54.2,57.49,7,1,0,0,2,5,1,1006.5,0,0,0 +11002,13493,24588,24589,-9,-9,1,1,0,54,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,2,0,1,0,0,0,0,53,3,1,3,3,3,2019,4,2,26,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.89,18.55,3,1,1,0,12,1,0,484.5,0,0,0 +11002,13493,24589,24588,-9,-9,2,1,1,53,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,2,0,-1,0,0,0,0,54,3,1,3,-9,-9,2019,4,1,30,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,0,12,1,0,484.5,0,0,0 +11003,13494,24590,24591,-9,-9,1,1,1,81,1,0,0,0,1,-9,4,3,0,2,0,9.419410376546994,9.615001058419457,1,0,-9,9,0,4,-114.2019787887435,0,0,0,77,3,4,3,2,1,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.898548097582643,9.626701339633597,0,0,48.27,33.62,2,1,0,0,13,5,1,280.5,0,0,0 +11003,13494,24591,24590,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,4,0,6.655089470290662,6.973027682215418,1,0,-9,9,0,-4,-69.87747826446774,0,0,0,81,1,2,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.994598508732268,0,0,59.29,49.68,1,1,0,0,13,5,1,280.5,0,0,0 +11004,13495,24592,24593,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,7.744299507288062,7.919732659999868,0,1,0,-9,7,0,-4,-100.4530843896966,0,0,1,48,3,2,3,-9,-9,2019,2,1,7,0,41,42,15,1,0,3,0,6.894991572058062,6.894991572058062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,3,0,0,5,3,1,2134.5,0,0,0 +11004,13495,24593,24592,-9,-9,1,1,1,48,1,0,0,0,3,-9,8,3,1,2,3.2842023347044,3.798960989839339,0,1,0,-9,7,0,4,116.7298688369537,0,0,0,44,2,4,1,-9,-9,2019,3,2,14,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1931013735035125,0,0,0,54.18,25.54,6,1,0,1,5,3,1,2134.5,0,0,0 +11005,13496,24594,24595,-9,-9,2,1,0,40,1,0,0,0,1,-9,2,1,0,3,8.937174734522056,8.516911992103779,0,1,0,-9,13,0,0,-21.11572930282035,0,0,1,40,2,4,1,1,1,2019,1,1,23,11,48,58,15,1,11,1,0,15.95837640031093,15.95837640031093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.12,42.96,5,1,0,0,4,5,1,1005.5,0,0,0 +11005,13496,24595,24594,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,4,8.661268337526717,8.714644573621852,0,1,0,-9,14,0,0,32.28428260174211,0,0,0,40,1,3,1,2,2,2019,1,2,23,11,40,48,15,1,11,1,0,15.33900910527815,15.33900910527815,0,0,0,0,0,0,0,0,0,0,3.051845510604347,0,0,0,32.22,58.14,2,1,0,0,4,5,1,1005.5,0,0,0 +11006,13497,24596,24597,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.992820962157535,7.045079993389513,1,0,-9,6,0,-1,95.55103987961527,0,0,0,67,2,5,3,3,3,2019,4,1,9,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.784830465552052,0,0,61.58,37.81,6,1,0,0,13,2,1,1057,0,0,0 +11006,13497,24597,24596,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,6,0,1,93.518269740908,0,0,0,66,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,5,0,0,13,2,1,1057,0,0,0 +11007,13498,24598,24602,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,5,7.4471230555414,7.458789212996519,0,2,0,-9,16,0,-2,30.48490813549546,0,0,1,44,1,4,1,2,2,2019,1,2,6,0,25,22,15,1,0,1,0,8.460319967450927,8.460319967450927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,9,4,1,814.4,0,0,0 +11007,13498,24599,-9,24598,24602,6,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-983.9962594906771,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,9,4,1,814.4,0,0,0 +11007,13498,24600,-9,24598,24602,4,1,0,17,2,0,2,1,2,0,7,2,0,2,5.062922320059747,4.678911824390554,0,2,0,0,0,-9,0,-991.8434437959259,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,8,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0662795892213511,0,0,0,21.19,59.85,4,1,0,1,9,4,1,814.4,0,0,0 +11007,13498,24601,-9,24598,24602,5,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.6930217789185,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,814.4,0,0,0 +11007,13498,24602,24598,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.193973063618161,8.730475736987911,0,2,0,-9,16,0,2,-175.8714758479294,0,0,0,42,2,5,1,2,2,2019,1,1,7,0,38,40,15,1,0,1,0,15.81579978340903,15.81579978340903,0,0,0,0,0,0,0,1,1,0,9.212982592610798,0,0,0,54.79,55.86,5,1,0,0,9,4,1,814.4,0,0,0 +11007,13499,24603,-9,24598,24602,3,1,1,20,2,0,2,1,2,0,7,2,0,1,0,6.457136959398482,6.386607603441077,3,0,0,0,-9,0,-962.917748364737,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,27,10,0,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.484988585355144,0,0,0,15.26,52.73,1,1,0,0,9,2,1,381,0,0,0 +11008,13500,24604,-9,24606,24605,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.998046777806,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,2,1,2421.666666666667,0,0,0 +11008,13500,24605,24606,-9,-9,1,1,1,52,1,0,1,0,3,-9,2,1,0,4,6.710243351422004,6.571622983516145,0,2,0,-9,26,0,4,-64.04827529774458,0,0,0,48,1,5,1,-9,-9,2019,1,2,6,0,10,9,15,1,0,1,0,7.372664413879876,7.372664413879876,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,4,1,0,0,2,2,1,2421.666666666667,0,0,0 +11008,13500,24606,24605,-9,-9,2,1,0,48,1,0,1,0,1,-9,2,1,0,5,0,0,0,2,0,-9,4,0,-4,-9.643952871235042,0,0,0,52,3,4,1,-9,-9,2019,1,1,13,1,40,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,78.92337922855405,3,41.6,60.78,6,1,0,0,2,2,1,2421.666666666667,0,0,0 +11008,13501,24607,-9,24606,24605,3,1,0,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1098.045347502513,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.2,63.27,6,1,0,1,2,1,1,507,0,0,0 +11009,13502,24608,-9,-9,-9,1,1,1,70,3,0,0,0,1,-9,4,3,0,4,0,8.408664759861606,8.311367631102772,3,0,0,0,-9,0,-1025.324017794547,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.176311885816374,9.073316005654076,0,0,58.72,51.29,6,1,0,0,10,5,1,1341,0,0,0 +11010,13503,24609,-9,24610,24611,3,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1073.177061503379,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,45.9,6,1,0,0,5,3,1,582.3333333333334,0,0,0 +11010,13503,24610,24611,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,3,7.40153868172517,7.338832488952201,0,2,0,-9,6,0,-5,-24.69543189071611,0,0,1,47,2,4,1,2,2,2019,1,1,15,3,19,19,15,1,3,1,0,9.184729568028809,9.184729568028809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,51,5,1,0,0,5,3,1,582.3333333333334,0,0,0 +11010,13503,24611,24610,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,4,7.889950513846198,8.222387040627533,0,2,0,-9,6,0,5,-101.7858957647236,0,0,0,42,2,3,1,3,2,2019,1,2,12,0,45,39,15,1,0,1,0,7.681383009249834,7.681383009249834,0,0,0,0,0,0,0,1,1,0,4.120345978698978,0,4.370435506126135,3,50.34,56.4,3,1,0,0,5,3,1,582.3333333333334,0,0,0 +11011,13504,24612,24616,-9,-9,2,1,1,40,1,0,3,0,1,-9,1,1,0,4,9.548615558931269,9.816000533371595,0,2,0,-9,7,0,1,-.5548037151352341,0,0,0,39,1,4,1,2,2,2019,1,1,9,0,30,35,15,1,0,1,0,69.77637127409102,69.77637127409102,0,0,0,0,0,0,0,1,1,0,3.70929617843158,0,0,0,54.2,57.49,6,1,0,0,12,5,1,610.8,0,0,0 +11011,13504,24613,-9,24616,24612,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.909603278774,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,5,1,610.8,0,0,0 +11011,13504,24614,-9,24616,24612,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.984735953656,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,610.8,0,0,0 +11011,13504,24615,-9,24616,24612,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.0303542882496,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,5,1,610.8,0,0,0 +11011,13504,24616,24612,-9,-9,1,1,0,39,1,0,3,0,1,-9,1,1,0,4,9.299215536176831,9.026453178269009,0,2,0,-9,7,0,-1,73.16741101169865,0,0,1,40,1,4,1,2,1,2019,1,2,10,1,8,8,15,1,1,1,0,127.2870173402866,127.2870173402866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,610.8,0,0,0 +11012,13505,24617,24618,-9,-9,1,1,0,54,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-3,-60.59853494092611,0,0,0,57,2,1,3,2,3,2019,4,2,23,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.01969963965047,2,29.78,25.84,2,1,0,1,12,1,0,439,0,0,0 +11012,13505,24618,24617,-9,-9,2,1,1,57,1,0,0,0,2,-9,8,3,1,1,0,3.683868329249,4.105213517360194,1,0,-9,7,0,3,-15.84482516976419,0,0,0,54,2,1,3,2,3,2019,4,1,25,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,3.857183096637347,4.006637840858596,0,1,30.91,22.6,1,1,0,1,12,1,0,439,0,0,0 +11013,13506,24619,24621,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,3,8.540613694333755,8.44819447065322,0,2,0,-9,9,0,4,-70.43881875401249,0,0,0,48,2,4,1,-9,-9,2019,1,1,8,0,41,39,15,1,0,1,0,17.25432477922481,17.25432477922481,0,0,0,0,0,0,0,1,1,0,4.484959567284442,0,0,0,57.03,48.06,6,1,0,0,10,4,1,325.3333333333333,0,0,0 +11013,13506,24620,-9,24621,24619,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.4404515849405,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,325.3333333333333,0,0,0 +11013,13506,24621,24619,-9,-9,1,1,0,48,1,0,1,0,2,-9,1,1,0,4,7.604899117583131,7.537698566031916,0,2,0,-9,9,0,-4,133.6573700215099,0,0,0,52,2,3,1,2,2,2019,1,2,11,0,37,20,15,1,0,1,0,5.753327626660182,5.753327626660182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.48,55.86,5,1,0,0,10,4,1,325.3333333333333,0,0,0 +11014,13507,24622,24623,-9,-9,1,1,1,55,1,0,1,0,1,-9,1,1,0,4,8.837985437774712,8.652077195651433,0,2,0,-9,25,0,2,-92.48175212435169,0,0,0,53,1,4,1,2,1,2019,1,2,8,0,70,60,15,1,0,1,0,9.391475919621133,9.391475919621133,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,2,1,0,0,12,5,1,373.5,0,0,0 +11014,13507,24623,24622,-9,-9,2,1,0,53,1,0,1,0,1,-9,1,1,0,4,9.833964302510628,9.897723341913998,0,2,0,-9,25,0,-2,54.69632818783337,0,0,0,55,1,4,1,2,3,2019,1,1,10,1,40,40,15,1,1,1,0,60.66339661081308,60.66339661081308,0,0,0,0,0,0,0,1,1,0,0,0,2.018591741079624,3,54.2,57.49,6,1,0,0,12,5,1,373.5,0,0,0 +11014,13508,24624,-9,24623,24622,3,1,0,20,2,0,1,0,1,1,2,1,0,3,6.692880058778119,6.658622328962389,0,3,0,0,0,-9,0,-958.3362133042986,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,20,0,15,1,0,-9,1,5.161975781145244,5.161975781145244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,12,2,1,402,0,0,0 +11014,13509,24625,-9,24623,24622,4,1,0,19,2,0,1,0,2,-9,2,1,0,4,6.524531117256624,6.478272951952518,0,3,0,0,0,-9,0,-1105.455678434325,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,21,9,10,0,15,1,9,-9,1,9.88278626023558,9.88278626023558,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.48,61.03,3,1,0,0,12,2,1,1523,0,0,0 +11015,13510,24626,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1027.247850256907,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.44,29.95,3,3,0,1,7,1,1,134,0,0,0 +11015,13511,24627,-9,-9,24626,2,1,1,30,2,0,0,0,2,-9,2,1,0,5,8.32740326213591,8.410777935707811,0,3,0,0,0,-9,0,-1060.389043797592,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,40,48,15,1,0,-9,1,7.305566193978212,7.305566193978212,0,0,0,0,0,0,0,1,1,0,0,0,27.14230366183777,3,57.36,46.7,7,3,0,0,7,4,1,1335,0,0,0 +11016,13512,24628,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,4,3,0,3,0,6.717856466161408,6.655279080603883,3,0,0,0,-9,0,-1143.847951007999,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.37129972038747,6.260375065387842,0,0,58.08,40.76,6,1,0,0,10,2,1,273,0,0,0 +11017,13513,24629,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,5,8.425049135114858,8.270915701131713,0,3,0,0,0,-9,0,-1060.510027295763,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,7,37,37,15,1,7,-9,0,11.71131203521531,11.71131203521531,0,0,0,0,0,0,0,0,0,0,1.915388240266829,0,0,0,44.39,63.4,3,1,0,1,10,4,1,231,0,0,0 +11018,13514,24630,24631,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.154578139274994,7.436405244497096,0,1,0,-9,8,0,3,99.46282307323985,0,0,0,54,1,3,1,3,3,2019,1,2,12,0,16,15,15,1,0,1,0,9.589588501263892,9.589588501263892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,6,1,0,0,5,3,1,726,0,0,0 +11018,13514,24631,24630,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,7.780593139427799,7.551996860138755,0,1,0,-9,8,0,-3,-68.26488420263138,0,0,0,57,2,3,1,-9,-9,2019,1,1,15,3,30,40,15,1,3,1,0,7.596889335131682,7.596889335131682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,4,1,0,0,5,3,1,726,0,0,0 +11019,13515,24632,-9,24633,-9,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.07530715046,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,514,0,0,0 +11019,13515,24633,-9,-9,-9,1,1,0,47,2,0,2,0,1,-9,2,1,0,5,7.107391934106795,7.094547329851687,0,2,0,-9,13,0,-2,11.88848221825663,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,6,0,18,12,15,1,0,-9,0,10.29573385250207,10.29573385250207,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,1,4,4,1,514,0,0,0 +11019,13515,24634,-9,24633,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.0250413167205,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,4,4,1,514,0,0,0 +11019,13516,24635,-9,-9,-9,2,1,0,49,2,0,2,0,1,-9,2,1,0,4,8.510811619634069,8.366752840160869,0,2,0,-9,13,0,2,91.01506633363503,-9,0,0,-9,-9,-9,-9,3,3,2019,1,1,30,12,75,0,15,1,12,-9,0,7.676382066963745,7.676382066963745,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.71,60.24,3,1,0,0,4,4,1,322,0,0,0 +11020,13517,24636,-9,24637,-9,3,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-973.2877650794622,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.77489699639286,3,55.13,34.07,7,1,0,0,12,1,0,221,0,0,0 +11020,13517,24637,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-983.7760290049673,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.88,24.78,5,1,0,0,12,1,0,221,0,0,0 +11020,13518,24638,-9,24637,-9,2,1,1,19,2,0,1,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-893.161917598425,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,0,27,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.96,53.17,5,1,0,0,12,1,0,356,0,0,0 +11020,13519,24639,-9,24637,-9,4,1,1,26,2,0,1,0,2,-9,2,1,0,3,7.853024025496903,7.744672368095666,0,3,0,0,0,-9,0,-1042.444569203165,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,39,0,15,1,1,-9,1,10.24888605159977,10.24888605159977,0,0,0,0,0,0,0,1,1,0,0,0,.0709026709623277,3,49.97,53.99,5,1,0,1,12,3,0,438,0,0,0 +11021,13520,24640,24641,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,4,8.802222479530924,8.839525422716822,0,2,0,-9,23,0,-2,13.29757587328981,0,0,0,47,2,2,1,2,1,2019,1,1,8,0,40,40,15,1,0,1,0,21.0092900825511,21.0092900825511,0,0,0,0,0,0,0,0,0,0,1.109078370166495,0,0,0,54.79,55.86,2,1,0,0,9,5,1,582.5,0,0,0 +11021,13520,24641,24640,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,2,8.506268486337264,8.508547134781146,0,2,0,-9,22,0,2,96.83942084746697,0,0,0,45,1,4,1,2,2,2019,1,2,21,9,40,50,15,1,9,1,0,14.01610173698454,14.01610173698454,0,0,0,0,0,0,0,0,0,0,.9447758617160179,0,0,3,28.87,56.23,5,1,0,0,9,5,1,582.5,0,0,0 +11021,13521,24642,-9,24641,24640,3,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-868.0855977714702,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,6,1,0,1,9,5,1,240,0,0,0 +11022,13522,24643,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-988.4752325852139,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,9.346174686053002,0,0,0,18.05,63.6,6,1,0,0,6,1,1,281,0,0,0 +11023,13523,24644,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,2,1,0,4,7.759219319043519,8.370011450043338,5.986283552657206,3,0,0,0,-9,0,-1003.933153225996,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,38,39,15,1,0,-9,0,12.33188690848636,12.33188690848636,0,0,0,0,0,0,0,1,1,0,1.716966166447713,6.125430533427147,0,0,57.31,50.61,6,1,0,0,9,4,1,646,0,0,0 +11024,13524,24645,24646,-9,-9,1,1,0,89,1,0,0,0,3,-9,4,3,0,1,0,4.899234397978406,4.779495525354645,1,0,-9,10,0,3,-99.38843389294524,0,0,0,86,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,121.8778650593465,0,0,0,0,1,1,0,0,5.120323949877291,0,0,36.27,24.23,6,1,0,0,2,2,1,1179.5,0,0,0 +11024,13524,24646,24645,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-3,-66.32286430296928,0,0,0,89,3,1,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,8.2075658426646,0,0,0,0,1,1,0,0,0,74.35738398385364,2,52.3,39.89,7,1,0,0,2,2,1,1179.5,0,0,0 +11025,13525,24647,24648,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,5,0,7.570397469700604,7.622125265065364,1,0,-9,29,-9,1,22.75253198803013,-9,0,0,59,2,5,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.533540956032224,7.608991938706508,0,0,62.39,56.71,7,1,0,0,11,2,1,257,0,0,0 +11025,13525,24648,24647,-9,-9,1,1,0,59,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,29,-9,-1,10.25795640031597,-9,0,0,60,2,5,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,11,2,1,257,0,0,0 +11026,13526,24649,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,6.30098474778332,5.683883148827932,3,0,0,0,-9,0,-1009.819271150066,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.681550760097755,5.866554475073504,0,0,43.65,58.28,6,1,0,0,2,2,1,469,0,0,0 +11026,13527,24650,-9,24649,-9,2,1,1,48,2,0,0,0,2,-9,1,1,0,2,8.30046701146429,8.368229177833005,0,3,0,0,0,-9,0,-983.4096080868809,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,25,0,15,1,0,-9,1,18.1186781364684,18.1186781364684,0,0,0,0,0,0,0,1,1,0,2.563575148653735,0,7.846294448199831,3,61.52,42.41,6,1,0,0,2,4,1,188,0,0,0 +11027,13528,24651,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1029.68686168636,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.25,35.46,3,1,0,0,2,1,0,1909,0,0,0 +11028,13529,24652,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,1,1,0,4,6.678782777294515,6.83346162197616,5.563634892429494,4,0,0,0,-9,0,-962.939245982046,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,16,15,1,0,-9,0,7.451151239832312,7.451151239832312,0,0,0,0,0,0,0,1,1,0,5.894238917202014,0,0,0,46.95,55.75,4,1,0,0,5,2,0,1379,0,0,0 +11029,13530,24653,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-992.2598680121987,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,7,1,0,0,12,1,1,319,0,0,0 +11030,13531,24654,24655,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,3,9.02670247656939,9.277324634434235,0,2,0,-9,11,0,-4,122.1080083440104,0,0,0,45,1,4,1,2,2,2019,1,2,13,1,38,40,15,1,1,1,0,22.76198808730204,22.76198808730204,0,0,0,0,0,0,0,1,1,0,4.370033168102468,0,0,0,47.15,56.66,5,3,0,0,8,4,1,883.5,0,0,0 +11030,13531,24655,24654,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,11,0,4,51.34114595495016,0,0,0,41,1,3,1,3,1,2019,1,1,19,7,0,0,15,1,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.94665263119834,3,33.14,64.63,3,1,0,1,8,4,1,883.5,0,0,0 +11030,13531,24656,-9,24655,24654,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.3731308904177,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,4,1,883.5,0,0,0 +11030,13531,24657,-9,24655,24654,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.840849833818,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,4,1,883.5,0,0,0 +11031,13532,24658,24659,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,5,0,8.011002628043114,8.250406249305746,1,0,-9,45,0,0,102.364769250567,0,0,0,66,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.803619292328914,7.971900246519974,123.5562367566628,3,58.05,54.52,6,1,0,0,4,4,1,439.5,0,0,0 +11031,13532,24659,24658,24660,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,7.588398678924444,7.578503934397886,1,0,-9,45,0,0,44.30532226181665,0,0,0,66,1,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.359593307558452,7.426125885065056,113.4430311062259,3,56.11,44.4,6,1,0,0,4,4,1,439.5,0,0,0 +11031,13533,24660,-9,-9,-9,3,1,0,99,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-987.1777220182461,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,4,10,-9,0,0,0,1,2.617359273712677,0,81.92954583377666,0,0,26.01271954963457,1,1,0,0,0,0,0,35.71,15.11,2,1,0,0,4,1,1,251,0,0,0 +11032,13534,24661,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1061.996004564096,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.64989007936847,0,0,0,57.92,36.69,7,1,0,0,10,1,0,1067,0,0,0 +11033,13535,24662,-9,24664,24666,3,1,0,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.668534525509,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,2,4,1,439.5,0,0,0 +11033,13535,24663,-9,24664,24666,4,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.550416343347,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,439.5,0,0,0 +11033,13535,24664,24666,-9,-9,1,1,0,44,1,0,4,0,2,-9,2,1,0,4,8.268108996305235,8.222593770672185,0,2,0,-9,21,0,-6,15.48546027180768,0,0,1,50,1,4,1,2,2,2019,1,2,8,2,17,14,15,1,2,1,0,20.17224166515489,20.17224166515489,0,0,0,0,0,0,0,1,1,0,4.67273585386945,0,0,3,48.35,50.45,7,1,0,0,2,4,1,439.5,0,0,0 +11033,13535,24665,-9,24664,24666,6,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.681054949625,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,439.5,0,0,0 +11033,13535,24666,24664,-9,-9,2,1,1,50,1,0,4,0,1,-9,2,1,0,4,9.172620974294256,9.061401209515976,0,2,0,-9,21,0,6,-49.11305183573597,0,0,0,44,2,4,1,2,2,2019,1,1,24,12,45,45,15,1,12,1,0,20.37687442437076,20.37687442437076,0,0,0,0,0,0,0,1,1,0,3.504979076295482,0,9.398299525257782,3,34,59.94,4,1,0,0,2,4,1,439.5,0,0,0 +11033,13535,24667,-9,24664,24666,5,1,1,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.2548368319135,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,4,1,439.5,0,0,0 +11034,13536,24668,24669,-9,-9,1,1,0,81,1,0,0,0,2,-9,3,3,0,2,0,6.280684380189276,6.637249607276619,1,0,-9,63,0,-4,-19.6163970791829,0,0,0,85,2,2,3,2,3,2019,4,2,16,4,0,0,15,3,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.951951881361155,6.468149893607227,6.170433264495737,2,44.72,36.6,4,1,1,0,4,2,1,487,0,0,0 +11034,13536,24669,24668,-9,-9,2,1,1,85,1,0,0,0,2,-9,4,3,0,2,0,6.497393314010804,6.861365217966973,1,0,-9,63,0,4,111.1721722435355,0,0,0,81,2,2,3,3,3,2019,4,1,27,12,0,0,15,4,12,3,0,0,0,1,0,7.989134299849741,0,0,0,0,1,1,0,6.385227670849271,6.518780863336421,0,0,29.12,23.03,4,1,0,0,4,2,1,487,0,0,0 +11035,13537,24670,24671,-9,-9,2,1,0,45,1,0,0,0,1,-9,2,1,0,5,9.051604875554757,9.099195582374517,2.161084099840306,1,0,-9,7,0,-8,178.2824150652758,0,0,0,53,2,4,1,-9,-9,2019,1,1,11,1,60,47,15,1,1,1,0,15.42540856678312,15.42540856678312,0,0,0,0,0,0,0,0,0,0,7.454775158743252,0,0,0,46.86,49,5,1,0,0,4,5,1,712,0,0,0 +11035,13537,24671,24670,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,7,0,8,77.09926094956232,0,0,0,45,1,5,1,1,2,2019,1,2,10,1,25,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,5,1,0,0,4,5,1,712,0,0,0 +11036,13538,24672,-9,-9,-9,1,1,1,47,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1056.4312549172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,16.65,5,1,0,0,2,1,0,281,0,0,0 +11037,13539,24673,24674,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.807701547428124,7.309367033335694,0,1,0,-9,3,0,-2,-35.32148190390032,0,0,0,55,2,1,3,3,2,2019,2,2,24,11,26,25,15,1,11,3,0,12.73597694343917,12.73597694343917,0,0,0,0,0,0,0,1,1,0,0,0,46.41182229575752,3,23.98,44.85,4,1,0,0,2,3,0,1814.5,0,0,0 +11037,13539,24674,24673,-9,-9,2,1,1,55,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,3,0,2,37.54425094990686,0,0,0,53,2,2,1,-9,-9,2019,3,1,25,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.01,49.65,1,1,0,1,2,3,0,1814.5,0,0,0 +11038,13540,24675,24676,-9,-9,1,1,0,58,1,0,0,0,2,-9,1,1,0,2,7.289516232535339,6.938058421354743,0,1,0,-9,35,0,-3,-130.2739708207409,0,0,0,61,2,3,1,3,3,2019,1,2,19,8,20,20,15,1,8,1,0,7.574093337950363,7.574093337950363,0,0,0,0,0,0,0,0,0,0,2.004371863517458,0,0,0,42.77,25.22,5,1,0,0,2,4,1,807.5,0,0,0 +11038,13540,24676,24675,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.475125563132588,8.457145752410032,0,1,0,-9,4,0,3,-101.6996566241503,0,0,0,58,2,2,1,-9,-9,2019,1,1,10,0,38,47,15,1,0,1,0,17.30570587404983,17.30570587404983,0,0,0,0,0,0,0,0,0,0,3.274814516976458,0,1.996680654317684,1,51.65,39.74,4,1,0,0,2,4,1,807.5,0,0,0 +11039,13541,24677,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,8.703459930338232,8.520697272892869,0,3,0,0,0,-9,0,-984.9973344683997,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,35,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.314931121492113,0,0,0,46.93,51.35,6,1,0,0,10,5,1,1519,0,0,0 +11040,13542,24678,24679,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,0,86.77634291993161,-9,0,0,69,2,3,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.162489006270151,0,0,0,38.24,36.49,4,1,0,1,12,2,1,1326,0,0,0 +11040,13542,24679,24678,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,5.925622842482589,5.766340912788632,1,0,-9,8,0,0,95.7262650534059,0,0,0,69,3,2,3,2,-9,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.833392242003312,0,0,34.82,54.38,4,1,0,1,12,2,1,1326,0,0,0 +11041,13543,24680,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1006.243249197962,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,33,12,0,0,15,4,12,-9,0,0,0,1,8.624376734730523,0,0,2.172551870026337,0,57.57876139141458,1,1,0,0,0,0,0,24.45,26.89,2,1,0,0,11,1,0,1458,0,0,0 +11042,13544,24681,24682,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,60,0,1,-11.80318278468849,0,0,0,77,3,5,3,3,3,2019,4,1,16,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.58,40.57,6,1,0,0,2,1,1,941,0,0,0 +11042,13544,24682,24681,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,5,0,4.033751544117998,4.306266723355923,1,0,-9,60,0,-1,112.1259974907805,0,0,0,78,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.700742740760654,4.308105193780404,0,0,53.71,55.17,6,1,0,0,2,1,1,941,0,0,0 +11043,13545,24683,24684,-9,-9,1,1,1,55,1,0,0,0,3,-9,1,1,0,4,7.680931834353308,7.762408108744757,0,1,0,-9,31,0,-10,51.88747099026359,0,0,0,65,2,4,1,2,3,2019,1,2,10,0,60,50,15,1,0,1,0,2.845801413398478,2.845801413398478,0,0,0,0,0,0,0,1,1,0,4.113167694593218,0,0,0,60.28,43.74,5,1,0,0,10,3,1,1010.5,0,0,0 +11043,13545,24684,24683,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,4,7.21596228528696,7.395256077548868,0,1,0,-9,31,0,10,-4.529413057102531,0,0,0,55,3,4,1,3,2,2019,1,1,15,3,23,25,15,1,3,1,0,11.61317120612896,11.61317120612896,0,0,0,0,0,0,0,1,1,0,6.263271462428388,0,0,0,45.01,57.46,6,1,0,0,10,3,1,1010.5,0,0,0 +11044,13546,24685,-9,24687,24686,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.9444575660511,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,2,1,385.25,0,0,0 +11044,13546,24686,24687,-9,-9,1,1,1,52,1,0,2,0,3,-9,1,1,0,4,8.214869389176906,7.708937886370672,0,2,0,-9,15,0,-2,-78.39743006172436,0,0,0,54,3,4,3,2,-9,2019,2,2,9,0,0,56,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,4,2,1,385.25,0,0,0 +11044,13546,24687,24686,-9,-9,2,1,0,54,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,15,0,2,-3.336761983780468,0,0,0,52,3,4,1,2,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.11,52.88,6,1,0,0,4,2,1,385.25,0,0,0 +11044,13546,24688,-9,24687,24686,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1110.381480711266,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,1,385.25,0,0,0 +11045,13547,24689,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,3,8.459480367231242,8.339765278082405,3.809885697866391,3,0,-9,0,1,0,-1110.264876118337,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,39,36,15,1,6,-9,0,10.13922986736433,10.13922986736433,0,0,0,0,0,0,0,0,0,0,.4231287132823894,3.415606351784567,0,0,42.82,48.95,4,1,0,0,12,4,1,1384,0,0,0 +11045,13548,24690,-9,24689,-9,2,1,1,22,2,0,0,1,2,-9,7,2,0,4,6.473729599071576,6.302596087091059,0,3,0,0,0,-9,0,-1064.229729762941,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,5,12,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,1,0,0,12,2,1,340,0,0,0 +11046,13549,24691,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,0,5.483494945200678,5.328814096853342,3,0,0,0,-9,0,-1075.730025454664,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.3997576678796244,5.089414696007876,120.5520789404952,3,21.4,22.92,1,1,0,1,9,2,0,2528,0,0,0 +11047,13550,24692,-9,-9,-9,1,1,0,53,2,0,1,0,3,-9,2,1,0,4,8.447811494903281,8.301915164261354,6.249215067448063,4,0,0,0,-9,0,-967.9508665492374,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,40,40,15,1,4,-9,0,13.86774502362962,13.86774502362962,0,0,0,0,0,0,0,1,1,0,5.807094818265649,0,0,0,45.61,47.59,5,1,0,0,2,4,1,947,0,0,0 +11047,13550,24693,-9,24692,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-964.1560622980755,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,4,1,947,0,0,0 +11047,13551,24694,-9,24692,-9,2,1,0,23,2,0,1,0,1,-9,2,1,0,4,5.400423913761258,5.695072141736199,0,3,0,0,0,-9,0,-924.9436221720784,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,15,0,15,1,0,-9,1,1.832502225557923,1.832502225557923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,3,1,0,0,2,2,1,139,0,0,0 +11047,13552,24695,-9,-9,-9,4,1,0,50,2,0,1,0,2,-9,1,1,0,3,4.669886363119695,4.443643242999594,0,4,0,-9,0,-9,0,-1026.492022420931,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,16,0,15,1,9,-9,0,.688774503591679,.688774503591679,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.01,51.63,4,1,0,1,2,1,1,1081,0,0,0 +11048,13553,24696,24697,-9,-9,2,1,0,53,1,0,1,0,2,-9,2,1,0,3,8.291427335452111,7.899299272259124,0,2,0,-9,21,0,0,-12.06849914698701,0,0,0,53,2,2,1,-9,-9,2019,1,1,11,0,36,41,15,1,0,1,0,10.40874619378697,10.40874619378697,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.9,37.87,6,1,0,0,13,4,1,380.5,0,0,0 +11048,13553,24697,24696,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,2,8.200912406016865,8.556584761413111,0,2,0,-9,26,0,0,17.73705727630701,0,0,0,53,2,3,1,-9,-9,2019,1,2,7,0,37,37,15,1,0,1,0,11.6973174684854,11.6973174684854,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.1,30.88,5,1,0,0,13,4,1,380.5,0,0,0 +11049,13554,24698,24699,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.685833884912689,7.570984708879903,0,1,0,-9,34,0,2,95.18869241011497,0,0,0,55,1,5,1,2,2,2019,1,1,11,0,20,28,15,1,0,1,0,10.43985542937935,10.43985542937935,0,0,0,0,0,0,0,0,0,0,3.441275369845227,0,0,0,49.61,54.24,6,1,0,0,5,5,1,488,0,0,0 +11049,13554,24699,24698,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,5,9.147621612702439,8.887806193814416,0,1,0,-9,35,0,-2,-103.9017574725528,0,0,0,57,2,3,1,2,2,2019,1,2,7,0,43,43,15,1,0,1,0,27.00349299959102,27.00349299959102,0,0,0,0,0,0,0,0,0,0,5.65457014633062,0,0,0,57.06,57.76,6,1,0,0,5,5,1,488,0,0,0 +11049,13555,24700,-9,24698,24699,3,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.74586749254094,8.180015678891898,0,3,0,0,0,-9,0,-1000.794810247473,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,3,40,40,15,1,3,-9,1,11.91966749235496,11.91966749235496,0,0,0,0,0,0,0,0,0,0,.3657915819304973,0,0,0,44.24,59.44,3,1,0,0,5,4,1,513,0,0,0 +11050,13556,24701,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.741451246652094,8.547791324135193,0,3,0,0,0,-9,0,-959.8728378210102,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,52,15,1,0,-9,0,12.73907412398166,12.73907412398166,0,0,0,0,0,0,0,0,0,0,1.722987159371159,0,0,0,52.05,55.95,5,1,0,0,9,5,1,680,0,0,0 +11050,13557,24702,-9,24701,-9,2,1,1,29,2,0,0,0,1,-9,2,1,0,3,8.798241783821668,8.675164655951056,0,3,0,-9,0,-9,0,-961.6530067577256,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,44,0,15,1,0,-9,1,17.73957881528003,17.73957881528003,0,0,0,0,0,0,0,0,0,0,3.931714655657389,0,0,0,41.23,59.35,4,1,0,0,9,5,1,629,0,0,0 +11051,13558,24703,24704,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,3,8.882672797220765,8.772072455891774,0,1,0,-9,3,0,-4,33.75291512064138,0,0,1,34,1,4,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,17.26831488902934,17.26831488902934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.62,53.53,6,1,0,0,8,5,1,455,0,0,0 +11051,13558,24704,24703,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,4,9.327521032086786,9.403301444944413,0,1,0,-9,3,0,4,-79.31727743727112,0,0,0,30,2,3,1,-9,-9,2019,1,2,11,0,49,43,15,1,0,1,0,21.38068732881182,21.38068732881182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,5,1,0,0,8,5,1,455,0,0,0 +11052,13559,24705,24706,-9,-9,2,1,1,64,1,0,0,0,3,-9,4,3,0,4,0,8.030007007493971,7.802929641932955,1,0,-9,13,0,8,89.4688672376839,0,0,0,56,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4.581427935313529,7.654325694379859,0,0,55.36,54.24,5,1,0,0,7,3,0,514,0,0,0 +11052,13559,24706,24705,-9,-9,1,1,0,56,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,13,0,-8,56.49006753457469,0,0,0,64,3,4,3,3,3,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.584072946804146,3,45.05,43.36,2,1,0,0,7,3,0,514,0,0,0 +11053,13560,24707,24708,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,6.491183498006669,6.039297873598137,1,0,-9,10,0,1,-3.786230580578035,0,0,0,69,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.924294636874394,6.290928961432932,0,0,59.46,46.99,6,1,0,0,11,2,1,796.5,0,0,0 +11053,13560,24708,24707,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,10,0,-1,-28.04651757623262,0,0,0,70,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,52,6,1,0,0,11,2,1,796.5,0,0,0 +11054,13561,24709,-9,-9,-9,1,1,0,28,3,0,1,0,2,-9,2,1,0,2,6.892549757475432,6.996824539387479,0,4,0,-9,0,-9,0,-1069.751601691972,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,24,0,15,1,1,-9,0,6.583874438694527,6.583874438694527,0,0,0,0,0,0,0,1,1,0,0,0,0,3,56.58,47.39,4,1,0,1,7,2,0,514.5,0,0,0 +11054,13561,24710,-9,24709,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1087.37470050132,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,514.5,0,0,0 +11055,13562,24711,24712,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,52,0,0,0,0,0,0,71,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,21.02295518019027,0,0,0,0,1,1,0,0,0,0,0,44.51,16.42,5,1,0,0,1,1,0,606,0,0,0 +11055,13562,24712,24711,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,52,0,0,0,0,0,0,71,3,1,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.77771118935685,1,61.01,44.96,6,1,0,0,1,1,0,606,0,0,0 +11056,13563,24713,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1092.593312693313,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,22,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.25,19,4,1,0,0,2,1,0,884,0,0,0 +11057,13564,24714,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1100.243283472536,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,63.58,26.48,5,1,0,0,1,1,1,1174,0,0,0 +11058,13565,24715,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,5,8.422367932276767,8.675295254181451,0,3,0,0,0,-9,0,-942.1818456586485,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,38,43,15,1,1,-9,0,19.47120625350444,19.47120625350444,0,0,0,0,0,0,0,0,0,0,2.457638502894108,0,0,0,53.29,53.96,5,1,0,0,7,5,0,517,0,0,0 +11059,13566,24716,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,2,1,0,4,7.169054241870368,7.814966617413071,6.385014993590122,3,0,0,0,-9,0,-962.1297265361449,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,20,20,15,1,0,-9,0,8.592344445822363,8.592344445822363,0,0,0,0,0,0,0,1,1,0,0,6.549429497738914,0,0,54.79,55.86,5,1,0,0,2,3,1,1023,0,0,0 +11060,13567,24717,-9,-9,-9,1,1,1,32,2,0,0,0,1,-9,2,1,0,4,8.960956985824012,8.821156124514886,0,3,0,0,0,-9,0,-1001.95144567752,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,43,43,15,1,0,-9,0,16.32614576436136,16.32614576436136,0,0,0,0,0,0,0,0,0,0,7.37198883246398,0,0,0,48.28,60.18,6,1,0,0,4,5,1,1125,0,0,0 +11061,13568,24718,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,4,3,0,3,0,7.548643901038502,7.883807490000037,3,0,0,0,-9,0,-968.6627352832037,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.513892427212895,8.306745180780919,0,0,46.49,39.54,6,1,0,0,12,3,1,132,0,0,0 +11061,13569,24719,-9,-9,-9,2,1,1,69,2,0,0,0,2,-9,4,3,0,2,0,7.586612315676083,7.639371723261057,3,0,0,0,-9,0,-1032.226113258845,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.542570511790774,7.84488311200451,0,0,56.51,40.62,6,1,0,0,12,3,1,1133,0,0,0 +11062,13570,24720,-9,24722,24721,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.65286160733,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,5,1,848.2,0,0,0 +11062,13570,24721,24722,-9,-9,2,1,1,38,1,1,3,0,1,-9,2,1,0,4,9.744825289787745,9.388089943999365,0,2,0,-9,16,0,0,-21.86976498910263,0,0,0,38,1,3,1,2,2,2019,1,1,10,1,50,46,15,1,1,1,0,42.3345469757564,42.3345469757564,0,0,0,0,0,0,0,1,1,0,9.098642549752551,0,0,0,49.28,40.89,6,3,0,0,8,5,1,848.2,0,0,0 +11062,13570,24722,24721,-9,-9,1,1,0,38,1,1,3,0,1,-9,2,1,0,3,7.669080686842864,7.355251671257857,0,2,0,-9,16,0,0,-148.1970904459746,0,0,1,38,1,4,1,2,2,2019,1,2,9,0,14,13,15,1,0,1,0,16.62098022346406,16.62098022346406,0,0,0,0,0,0,0,1,1,0,7.857701007466212,0,0,0,41.23,59.35,4,3,0,0,8,5,1,848.2,0,0,0 +11062,13570,24723,-9,24722,24721,4,1,1,10,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.0630926722837,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,5,1,848.2,0,0,0 +11062,13570,24724,-9,24722,24721,3,1,1,10,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.093274342041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,5,1,848.2,0,0,0 +11063,13571,24725,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,3,7.476465607278231,8.139019075007104,7.0352604598505,4,0,0,0,-9,0,-1046.171348151466,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,25,21,15,1,0,-9,0,11.30727415369116,11.30727415369116,0,0,0,0,0,0,0,1,1,0,6.784589036926246,0,0,0,42.61,54.85,5,1,0,0,9,3,1,464.6666666666667,0,0,0 +11063,13571,24726,-9,24725,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-914.0180657734198,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,1,464.6666666666667,0,0,0 +11063,13571,24727,-9,24725,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-910.2582921629897,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,1,464.6666666666667,0,0,0 +11064,13572,24728,-9,-9,-9,1,1,0,36,2,0,0,0,2,-9,2,1,0,4,8.008415963381157,7.970088807670351,0,3,0,0,0,-9,0,-976.7674778327859,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,2,36,38,15,1,2,-9,0,9.306935780683565,9.306935780683565,0,0,0,0,0,0,0,1,1,0,4.05492104856723,0,0,0,52.02,57.3,6,1,0,0,8,4,1,499,0,0,0 +11065,13573,24729,-9,24732,-9,1,1,1,21,2,0,1,0,2,-9,7,2,0,4,7.214088138299942,6.936285905645664,0,3,0,0,0,-9,0,-904.9819391543715,1,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,27,14,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,7,2,1,664,0,0,0 +11065,13574,24730,-9,24732,-9,2,1,1,18,2,0,1,0,2,-9,7,2,0,3,5.990536318743279,6.126329056649022,0,3,0,0,0,-9,0,-1035.596366071006,1,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,7,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.02,58.57,5,1,0,0,7,4,1,36,0,0,0 +11065,13575,24731,24732,-9,-9,3,1,1,61,1,0,1,0,3,-9,2,1,0,3,8.702506023529974,8.980291265360883,0,2,0,-9,3,0,-8,-59.94934235222852,0,0,0,69,1,3,2,-9,-9,2019,2,4,10,0,45,50,15,1,1,2,0,16.93124974251866,16.93124974251866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,5,1,0,0,7,4,1,203.5,0,0,0 +11065,13575,24732,24731,-9,-9,4,1,0,69,1,0,1,0,1,-9,7,2,0,3,0,6.465584904718666,6.065214076859324,2,0,-9,3,0,8,-5.187814337357414,1,0,0,61,3,3,1,-9,-9,2019,3,3,4,0,0,40,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.324781447054681,0,0,0,57.33,53.46,5,1,0,0,7,4,1,203.5,0,0,0 +11066,13576,24733,24734,-9,-9,3,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,1,1,-9,8,0,0,0,0,65,3,3,3,-9,-9,2019,4,1,13,0,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,56.54,35.07,5,1,0,0,11,1,0,2363,0,0,0 +11066,13576,24734,24733,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,1,1,-9,-8,0,0,0,0,73,3,2,3,3,3,2019,4,3,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.31,42.07,5,1,0,0,11,1,0,2363,0,0,0 +11067,13577,24735,-9,-9,-9,1,1,0,49,3,0,2,0,1,-9,1,1,0,5,6.123140273364377,6.866290118457496,0,4,0,0,0,-9,0,-1184.202849674188,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,8,44,40,15,1,8,-9,0,1.236284464214282,1.236284464214282,0,0,0,0,0,0,0,0,0,0,1.124607624562106,0,0,0,45.46,61.87,5,2,0,0,6,2,1,775,0,0,0 +11068,13578,24736,-9,24738,24737,2,1,0,30,2,0,0,0,1,-9,2,1,0,5,8.969027049685609,8.879509041204143,0,3,0,0,0,-9,0,-1029.236541225919,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,45,52,15,1,0,-9,1,17.60266540730433,17.60266540730433,0,0,0,0,0,0,0,0,0,0,.4581805059315199,0,0,3,58.05,54.52,6,3,0,0,8,5,0,391,0,0,0 +11068,13579,24737,24738,-9,-9,3,1,1,57,1,0,0,0,1,-9,1,1,0,4,9.690847899647336,9.763895090693646,0,1,0,-9,6,0,4,-152.0922679125543,0,0,0,53,2,1,1,-9,-9,2019,1,1,9,0,0,45,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.935143475719502,0,0,1,54,53,6,3,0,0,8,5,0,1022,0,0,0 +11068,13579,24738,24737,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,1,8.168008085498359,8.2352631762428,0,1,0,-9,34,0,-4,11.37013988100976,0,0,0,57,1,4,1,3,3,2019,1,3,11,1,36,0,15,1,1,1,0,11.00384246330218,11.00384246330218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.06,28.33,6,3,0,0,8,5,0,1022,0,0,0 +11069,13580,24739,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,2,1,0,4,6.457073859352533,6.706987855383147,0,4,0,0,0,-9,0,-925.9524509409766,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,1,8,0,15,1,1,-9,0,6.958722162220797,6.958722162220797,0,0,0,0,0,0,0,1,1,0,0,0,70.62716466743677,3,51.24,58.84,5,1,0,0,13,2,0,759,0,0,0 +11069,13580,24740,-9,24739,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-895.4113231112743,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,2,0,759,0,0,0 +11070,13581,24741,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,1,1,0,3,8.971824474019243,8.699603481197176,0,3,0,-9,0,-9,0,-970.7491340862953,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,20,0,15,1,1,-9,0,38.12326500003117,38.12326500003117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,7,3,0,0,7,5,1,221,0,0,0 +11071,13582,24742,24743,-9,-9,1,1,1,53,1,0,0,0,3,-9,1,1,0,2,9.212498951200711,9.267085361432708,0,1,0,-9,35,0,1,80.74768183850571,0,0,0,52,2,3,1,3,2,2019,1,2,10,0,50,50,15,1,0,1,0,22.15289821017278,22.15289821017278,0,0,0,0,0,0,0,0,0,0,4.648364824795299,0,0,0,46.83,42.54,3,1,0,0,9,5,1,279,0,0,0 +11071,13582,24743,24742,-9,-9,2,1,0,52,1,0,0,0,2,-9,1,1,0,3,6.56210759664793,6.657480226880775,0,1,0,-9,35,0,-1,-51.05973253327399,0,0,0,53,3,2,1,2,2,2019,1,1,15,4,10,10,15,1,4,1,0,8.916572733459574,8.916572733459574,0,0,0,0,0,0,0,0,0,0,7.343814848961896,0,0,0,46.33,55.93,3,1,0,0,9,5,1,279,0,0,0 +11072,13583,24744,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,7,2,0,4,7.762513964463778,7.428120821062157,0,3,0,0,0,-9,0,-1086.693103186419,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,7,12,4,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,58.37,6,4,0,0,8,3,0,2455,0,0,0 +11073,13584,24745,24747,-9,-9,2,1,0,24,1,0,1,0,1,-9,2,1,0,3,7.287943052056833,7.179054118237258,0,2,0,-9,4,0,0,-61.46095208905228,0,1,1,24,2,3,1,-9,-9,2019,1,1,14,2,0,11,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.01,61.11,3,1,0,0,13,3,0,452.6666666666667,0,0,0 +11073,13584,24746,-9,24745,24747,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.393118206439,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,0,452.6666666666667,0,0,0 +11073,13584,24747,24745,-9,-9,1,1,1,24,1,0,1,0,2,-9,2,1,0,3,7.574723775923934,7.662948173926218,0,2,0,-9,4,0,0,22.39139130524235,0,1,0,24,1,3,1,2,3,2019,1,2,9,0,42,56,15,1,0,1,0,6.834954672457063,6.834954672457063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,54.55,3,1,0,0,13,3,0,452.6666666666667,0,0,0 +11074,13585,24748,-9,24750,24749,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.025841943906,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,9,4,1,483.8,0,0,0 +11074,13585,24749,24750,-9,-9,1,1,1,54,1,0,3,0,1,-9,2,1,0,4,8.752629065101683,8.863531291959992,0,2,0,-9,24,0,8,145.9885286169776,0,0,0,46,1,4,1,3,2,2019,1,2,11,0,55,50,15,1,0,1,0,16.920778194674,16.920778194674,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.3,55.06,6,2,0,0,9,4,1,483.8,0,0,0 +11074,13585,24750,24749,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,4,7.862516835830842,8.032992253992651,0,2,0,-9,23,0,-8,-18.61762197316022,0,0,0,54,1,4,1,-9,-9,2019,1,1,13,2,30,38,15,1,2,1,0,12.43739318422707,12.43739318422707,0,0,0,0,0,0,0,1,1,0,6.242434841337531,0,0,0,44.47,57.73,5,1,0,0,9,4,1,483.8,0,0,0 +11074,13585,24751,-9,24750,24749,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.3715676139836,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,483.8,0,0,0 +11074,13585,24752,-9,24750,24749,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.540345030819,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,2,0,0,9,4,1,483.8,0,0,0 +11075,13586,24753,-9,-9,-9,1,1,0,45,3,0,2,0,1,-9,6,3,0,4,0,5.809609688655761,5.980108489792056,4,0,0,0,-9,0,-973.3871673869471,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.677525738824219,0,114.1358174300453,3,35.86,56.52,5,1,0,0,9,2,1,466.6666666666667,0,0,0 +11075,13586,24754,-9,24753,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1016.787541201585,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,9,2,1,466.6666666666667,0,0,0 +11075,13586,24755,-9,24753,-9,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-931.3058834845012,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,1,466.6666666666667,0,0,0 +11076,13587,24756,-9,24757,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1089.279367268287,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,5,2,0,660.5,0,0,0 +11076,13587,24757,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,2,1,0,4,6.839825870107055,7.334972253814318,0,4,0,0,0,-9,0,-881.9593489083936,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,27,25,15,1,0,-9,0,6.353598474729247,6.353598474729247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.4,58.06,5,1,0,0,5,2,0,660.5,0,0,0 +11077,13588,24758,24759,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,-7,14.78438676574971,-9,0,0,81,2,3,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,15.71355751232359,0,0,0,0,1,1,0,0,0,0,0,59.51,34.69,6,1,0,0,11,2,0,1594.5,0,0,0 +11077,13588,24759,24758,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,5.476905162194913,5.459219880209453,1,0,-9,1,-9,7,-23.85513280578716,-9,0,0,74,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.998377693798763,0,0,59.64,35.9,6,1,0,0,11,2,0,1594.5,0,0,0 +11078,13589,24760,-9,-9,-9,4,1,1,22,2,0,1,0,2,-9,2,1,0,3,8.067003772299595,8.425114796425113,0,3,0,-9,0,-9,0,-963.5485891467104,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,4,40,0,15,1,4,-9,1,8.800409138272927,8.800409138272927,0,0,0,0,0,0,0,0,0,0,2.079917147805992,0,0,0,33.37,60.58,3,1,0,0,10,4,1,332,0,0,0 +11079,13590,24761,24762,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,5.582005403974052,5.364410283296447,1,0,-9,10,0,1,-47.59816745839063,0,0,0,72,3,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,10.22113775921935,0,0,0,0,1,1,0,0,5.193289839980537,0,0,48.26,53.44,6,1,0,0,11,3,1,331.5,0,0,0 +11079,13590,24762,24761,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,7.745742384188123,7.864444062979165,1,0,-9,10,0,-1,64.23519396486137,0,0,0,73,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.539839751117896,0,0,53.98,50.87,6,1,0,0,11,3,1,331.5,0,0,0 +11080,13591,24763,-9,24764,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-932.6756431884551,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,3,0,432.5,0,0,0 +11080,13591,24764,-9,-9,-9,1,1,0,37,3,0,1,0,2,-9,2,1,0,4,7.702893834741227,7.491664937107161,0,4,0,0,0,-9,0,-1011.103955406334,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,16,16,15,1,0,-9,0,18.11692465088242,18.11692465088242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,8,3,0,432.5,0,0,0 +11081,13592,24765,-9,24769,24768,3,1,0,25,2,1,2,0,2,-9,5,1,0,3,7.722522555431503,8.196504229792236,0,3,0,-9,0,-9,0,-809.7973187832923,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,46,0,15,1,3,-9,1,6.23700978202685,6.23700978202685,0,0,0,0,0,0,0,1,1,0,0,0,68.88738624486218,3,52,54.51,4,1,0,0,5,3,0,1355.333333333333,0,0,0 +11081,13592,24766,-9,24765,-9,5,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-980.0742057249208,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,3,0,1355.333333333333,0,0,0 +11081,13592,24767,-9,24765,-9,4,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1055.30968962361,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,0,1355.333333333333,0,0,0 +11081,13593,24768,24769,-9,-9,2,1,1,49,1,1,2,0,2,-9,2,1,0,3,8.621648247936315,8.465066052326316,0,2,0,-9,6,0,5,27.42202334298077,0,0,0,44,2,2,1,-9,-9,2019,1,1,14,3,40,40,15,1,3,1,0,12.72495919641729,12.72495919641729,0,0,0,0,0,0,0,1,1,0,0,0,5.683790590412946,3,48.13,49.81,5,1,0,0,5,4,0,530,0,0,0 +11081,13593,24769,24768,-9,-9,1,1,0,44,1,1,2,0,2,-9,2,1,0,2,7.49978304506957,7.510584412795379,0,2,0,-9,6,0,-5,-21.22414935230707,0,0,1,49,2,3,1,2,3,2019,1,2,22,8,40,40,15,1,8,1,0,6.583240019342177,6.583240019342177,0,0,0,0,0,0,0,1,1,0,0,0,0,3,33.68,47.08,4,1,0,0,5,4,0,530,0,0,0 +11082,13594,24770,24772,-9,-9,2,1,0,52,1,0,2,0,2,-9,2,1,0,3,8.163035241919076,8.100926604886308,0,2,0,-9,9,0,4,-83.59060028806338,0,0,0,48,2,3,1,-9,-9,2019,1,1,10,0,20,50,15,1,0,1,0,19.94437090704687,19.94437090704687,0,0,0,0,0,0,0,1,1,0,.7752823497909627,0,0,0,48,49,1,3,0,0,8,4,1,518,0,0,0 +11082,13594,24771,-9,24770,24772,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.0046316032106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,8,4,1,518,0,0,0 +11082,13594,24772,24770,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,3,8.277274274746066,8.216322697947103,0,2,0,-9,28,0,-4,-150.3516570835524,0,0,0,52,2,3,1,-9,-9,2019,1,2,16,6,22,32,15,1,6,1,0,21.00712610191985,21.00712610191985,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,47.45,5,1,0,1,8,4,1,518,0,0,0 +11082,13595,24773,-9,24770,24772,3,1,0,18,2,0,2,1,-9,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1150.685345074811,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,2,0,0,8,4,1,1197,0,0,0 +11083,13596,24774,24775,-9,-9,2,1,0,51,1,0,1,0,3,-9,1,1,0,5,6.124419003784531,6.12475353341474,0,2,0,-9,28,0,5,16.87775581605755,0,0,0,46,2,2,1,2,-9,2019,1,1,10,0,10,19,15,1,0,1,0,5.166248730198765,5.166248730198765,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.06,57.76,6,1,0,0,10,2,0,967.3333333333334,0,0,0 +11083,13596,24775,24774,-9,-9,1,1,1,46,1,0,1,0,2,-9,1,1,0,2,0,0,0,2,0,-9,28,0,-5,43.76131252554863,0,0,0,51,3,5,1,3,2,2019,1,2,6,0,24,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.94,41.95,6,1,0,0,10,2,0,967.3333333333334,0,0,0 +11083,13596,24776,-9,24774,24775,3,1,0,16,2,0,1,1,2,-9,7,2,0,4,5.822469484815677,5.56719938623544,0,2,0,0,0,-9,0,-927.7893390771197,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,18,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,2,1,0,0,10,2,0,967.3333333333334,0,0,0 +11084,13597,24777,24778,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,4,9.649923276706266,9.878015346926615,0,1,0,-9,6,0,0,100.2740138390109,0,0,0,45,2,4,1,2,2,2019,1,2,3,0,32,28,15,1,0,1,0,54.53150028542672,54.53150028542672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.88,56.68,6,1,0,0,4,5,1,1615.5,0,0,0 +11084,13597,24778,24777,-9,-9,2,1,0,45,1,0,0,0,2,-9,1,1,0,4,8.851469431258062,9.367308010702386,0,1,0,-9,6,0,0,12.9263592527978,0,0,0,45,1,4,1,-9,-9,2019,1,1,11,0,35,50,15,1,0,1,0,22.30552748406085,22.30552748406085,0,0,0,0,0,0,0,0,0,0,3.342446389363675,0,0,0,51.14,52.08,5,1,0,0,4,5,1,1615.5,0,0,0 +11085,13598,24779,24780,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,2,0,5.137691788135614,5.302336598491623,1,0,-9,47,0,-5,79.18615202936424,0,0,0,70,1,3,3,3,3,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,1,0,16.63833324449768,0,0,0,0,1,1,0,4.691141286374457,4.880904698600871,0,0,52.77,20.66,3,1,0,0,12,2,1,931,0,0,0 +11085,13598,24780,24779,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,9,0,5,-47.24906632207931,0,0,0,65,1,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.459104260995149,1,60.79,27.58,5,1,0,0,12,2,1,931,0,0,0 +11086,13599,24781,24783,-9,-9,2,1,1,34,1,0,1,0,1,-9,2,1,0,3,7.860545192813783,7.853454392852984,0,2,0,-9,5,0,0,-104.1984236543022,0,0,0,34,2,3,1,-9,-9,2019,1,1,8,0,38,0,15,1,0,1,0,6.977534871591952,6.977534871591952,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.96,53.17,6,1,0,0,2,3,0,2579.666666666667,0,0,0 +11086,13599,24782,-9,24783,-9,3,1,0,17,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-1000.391668417691,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,17.67,43.4,4,1,0,0,2,3,0,2579.666666666667,0,0,0 +11086,13599,24783,24781,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,3,7.888393680780871,7.40537824169482,0,2,0,-9,5,0,0,-23.92250838392239,0,0,1,34,1,3,1,3,3,2019,1,2,11,0,40,43,15,1,0,1,0,6.839027875709853,6.839027875709853,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.65,57.36,3,1,0,0,2,3,0,2579.666666666667,0,0,0 +11087,13600,24784,24785,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,34,0,-1,-60.27912082147623,0,0,0,53,2,3,1,-9,-9,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.33,53.46,6,1,0,0,6,4,1,2138.5,0,0,0 +11087,13600,24785,24784,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.76793897810467,8.569138836905537,0,1,0,-9,34,0,1,-21.02844746387971,0,0,0,52,2,3,3,-9,2,2019,2,1,7,0,42,42,15,1,0,3,0,20.00802754209426,20.00802754209426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,48.41,6,1,0,0,6,4,1,2138.5,0,0,0 +11087,13601,24786,-9,24784,24785,3,1,0,19,2,0,0,1,2,0,7,2,0,3,6.327692395893184,5.910036167219193,0,3,0,0,0,-9,0,-1022.330727700185,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,8,7,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.01,61.11,3,1,0,0,6,2,1,1121,0,0,0 +11088,13602,24787,24789,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,3,8.905815237148113,8.569099389797103,0,2,0,-9,13,0,4,-6.804360473054122,0,0,0,34,1,2,1,2,1,2019,1,1,12,0,50,50,15,1,0,1,0,17.04094478000736,17.04094478000736,0,0,0,0,0,0,0,1,1,0,.4852754116807437,0,0,0,41.11,54.05,5,1,0,0,11,5,1,546.25,0,0,0 +11088,13602,24788,-9,24789,24787,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-831.8351896202781,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,546.25,0,0,0 +11088,13602,24789,24787,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,2,8.334419647320839,8.659328796074321,0,2,0,-9,13,0,-4,-45.35824304228329,0,0,1,38,1,3,1,1,2,2019,1,2,10,1,46,41,15,1,1,1,0,17.2341718421431,17.2341718421431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,35.14,6,1,0,0,11,5,1,546.25,0,0,0 +11088,13602,24790,-9,24789,24787,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.9223109802218,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,5,1,546.25,0,0,0 +11089,13603,24791,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,4,3,0,4,8.383477890259648,9.492613508184009,8.809429182019528,3,0,-9,0,-9,0,-934.7383501501583,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,6,3,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.484393710450685,8.691471054075208,0,0,57.16,56.15,6,2,0,0,2,5,1,1985,0,0,0 +11089,13604,24792,-9,-9,-9,2,1,1,61,3,0,0,0,1,-9,1,1,0,4,9.600763497069293,9.815400775499862,7.224509479033298,3,0,0,0,-9,0,-987.822559666835,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,50,50,15,1,0,-9,0,36.74754216220998,36.74754216220998,0,0,0,0,0,0,0,0,0,0,7.363135906029989,6.537244851374408,0,0,59.71,50.89,6,1,0,0,2,5,1,996,0,0,0 +11090,13605,24793,-9,-9,-9,1,1,0,77,2,0,0,0,2,-9,4,3,0,4,0,6.309563418868526,6.207029780085016,3,0,0,0,-9,0,-1037.550464653867,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.670068130947683,6.683379260137755,0,0,58.72,51.29,1,1,0,0,10,2,0,307,0,0,0 +11091,13606,24794,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,2,1,0,2,8.134481547968944,8.114179711335296,0,3,0,0,0,-9,0,-814.9054105969259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,72,36,15,1,3,-9,0,5.565545561130134,5.565545561130134,0,0,0,0,0,0,0,0,0,0,2.087288247673406,0,0,0,47.94,37.73,3,1,0,0,7,4,0,277,0,0,0 +11092,13607,24795,24796,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,3,7.925655083421355,7.946189096035568,0,1,0,-9,6,0,1,-86.29394198611614,0,0,0,54,2,3,1,3,3,2019,1,2,8,0,39,40,15,1,0,1,0,6.014785964421691,6.014785964421691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,5,4,0,279.5,0,0,0 +11092,13607,24796,24795,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.93384923858015,7.955394262923414,0,1,0,-9,6,0,-1,-27.94253970894988,0,0,0,55,2,3,1,3,3,2019,1,1,12,0,34,22,15,1,0,1,0,8.990468405907894,8.990468405907894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,4,1,0,0,5,4,0,279.5,0,0,0 +11092,13608,24797,-9,24796,24795,3,1,0,19,2,0,0,1,2,0,7,2,0,4,6.769718045607526,6.755716288433429,0,3,0,0,0,-9,0,-926.9151594167785,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,5,2,0,95,0,0,0 +11092,13609,24798,-9,24796,24795,4,1,0,29,2,0,0,0,2,-9,2,1,0,3,8.085072907645522,7.758838903112729,0,3,0,0,0,-9,0,-1051.895332541953,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,16,4,43,35,15,1,4,-9,1,7.109310380269807,7.109310380269807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.59,29.43,4,1,0,0,5,4,0,4480,0,0,0 +11093,13610,24799,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,6.095462806963861,5.98526583769846,3,0,0,0,-9,0,-1024.317066955731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.012644923182863,6.078328681261595,0,0,40.48,40.65,3,1,0,0,4,2,1,1563,0,0,0 +11094,13611,24800,24801,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,3,8.94604474367314,8.564717948410568,6.01144289448552,1,0,-9,15,0,4,-73.06681142115045,0,0,0,57,3,4,1,3,3,2019,1,2,7,0,67,74,15,1,0,1,0,8.568662086747068,8.568662086747068,0,0,0,0,0,0,0,0,0,0,0,6.330105668412399,0,0,53.56,49.66,6,1,0,0,12,5,1,306.5,0,0,0 +11094,13611,24801,24800,-9,-9,2,1,0,57,1,0,0,0,3,-9,2,1,0,4,8.133774321211977,8.269565562168513,0,1,0,-9,11,0,-4,-71.37931336171982,0,0,0,61,3,3,1,3,3,2019,1,1,16,5,38,37,15,1,5,1,0,12.11287532323442,12.11287532323442,0,0,0,0,0,0,0,0,0,0,6.332392871942483,0,0,0,37.88,49.62,6,1,0,0,12,5,1,306.5,0,0,0 +11095,13612,24802,-9,24803,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-901.5662506577588,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,4,0,0,5,3,0,881.5,0,0,0 +11095,13612,24803,-9,-9,-9,1,1,0,50,3,0,1,0,1,-9,1,1,0,3,7.589202866509786,7.797409410843254,0,4,0,0,0,-9,0,-943.5445227735205,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,26,30,15,1,0,-9,0,10.73947318981366,10.73947318981366,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.66,47.77,5,4,0,0,5,3,0,881.5,0,0,0 +11096,13613,24804,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,4,7.87235323656277,7.790350980844165,0,3,0,0,0,-9,0,-949.9455283033924,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,37,77,15,1,2,-9,0,8.860710977167095,8.860710977167095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.58,53.69,7,1,0,1,1,3,1,3453,0,0,0 +11097,13614,24805,24806,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,3,8.858917422090954,8.784106179881515,0,1,0,-9,17,0,2,-62.09705647354884,0,0,0,33,1,2,3,2,2,2019,2,2,12,0,41,53,15,1,0,3,0,16.42602569279575,16.42602569279575,0,0,0,0,0,0,0,1,1,0,0,0,4.984607637350335,1,40.26,35.46,5,1,0,0,2,5,1,245.5,0,0,0 +11097,13614,24806,24805,-9,-9,2,1,0,33,1,0,0,0,1,-9,6,3,0,2,0,0,0,1,0,-9,17,0,-2,132.8665807225148,0,0,1,35,2,3,1,2,2,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.471129995441737,0,0,0,41.93,27.2,5,1,0,0,2,5,1,245.5,0,0,0 +11098,13615,24807,24808,-9,-9,2,1,0,60,1,0,1,0,2,-9,2,1,0,3,7.799598835467315,7.969620786913779,5.885696612502861,2,0,-9,3,0,-23,7.883496359354377,0,0,0,83,2,2,3,-9,-9,2019,2,1,11,0,25,31,15,1,0,4,0,9.152178833587087,9.152178833587087,0,0,0,0,0,0,0,1,1,0,1.958386508799121,5.428673851840498,0,0,56.64,48.33,6,1,0,0,7,4,1,267.5,0,0,0 +11098,13615,24808,24807,-9,-9,1,1,1,83,1,0,1,0,2,-9,4,3,0,2,0,8.172866258304671,8.2075404824675,2,0,-9,3,0,23,-69.44689032213145,0,0,0,60,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.060341582178918,0,0,45.67,33.47,5,1,0,0,7,4,1,267.5,0,0,0 +11098,13616,24809,-9,24807,24808,3,1,0,33,2,0,1,0,2,-9,2,1,0,4,8.42525002338153,8.136055269100044,0,3,0,0,0,-9,0,-1030.189380359924,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,24,12,47,53,15,1,12,-9,1,10.22752834517745,10.22752834517745,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.47,43.82,3,1,0,0,7,4,1,2156,0,0,0 +11098,13616,24810,-9,24809,-9,4,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-939.143351094159,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,2156,0,0,0 +11099,13617,24811,-9,-9,-9,2,1,0,28,2,0,0,0,2,-9,7,2,0,3,6.628076271302485,6.45278305540233,0,3,0,-9,0,-9,0,-1023.584483230152,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,17,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.52,48.73,5,1,0,0,2,2,1,617,0,0,0 +11100,13618,24812,-9,24813,24815,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.858913028627,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,4,1,611,0,0,0 +11100,13618,24813,24815,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,3,7.976709119123952,8.201658390617339,0,2,0,-9,13,0,0,-19.96228661487973,0,0,1,46,3,3,1,2,3,2019,1,2,11,0,37,38,15,1,0,1,0,8.172302220054402,8.172302220054402,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,1,4,1,611,0,0,0 +11100,13618,24814,-9,24813,24815,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-856.6274537410488,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,611,0,0,0 +11100,13618,24815,24813,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,3,8.575594061303951,8.656688018051643,0,2,0,-9,14,0,9,65.61767647107563,0,0,0,37,2,3,1,3,3,2019,1,1,6,0,37,38,15,1,0,1,0,17.12245108243479,17.12245108243479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,1,4,1,611,0,0,0 +11101,13619,24816,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,11,3,0,5,0,0,0,3,0,-9,0,-9,0,-1002.377648849383,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,58,7,1,0,0,2,1,0,284,0,0,0 +11102,13620,24817,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-972.9470934384159,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.73,34.62,3,1,0,0,12,1,0,1212,0,0,0 +11103,13621,24818,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,6.291683454015123,6.73116940751106,3,0,0,0,-9,0,-1013.799193073606,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.287960357182008,6.559924326926876,0,0,60.12,54.8,6,1,0,0,11,2,1,138,0,0,0 +11104,13622,24819,-9,24821,24822,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.9838812223296,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,5,1,646.5,0,0,0 +11104,13622,24820,-9,24821,24822,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1074.101298499502,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,6,5,1,646.5,0,0,0 +11104,13622,24821,24822,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,4,7.541868188681031,7.620233506953854,0,2,0,-9,26,0,-4,-69.10293772636587,0,0,0,52,2,3,1,2,2,2019,1,2,9,0,20,20,15,1,0,1,0,13.05563493945686,13.05563493945686,0,0,0,0,0,0,0,1,1,0,4.598974599837308,0,0,0,57.16,56.15,6,1,0,0,6,5,1,646.5,0,0,0 +11104,13622,24822,24821,-9,-9,2,1,1,52,1,0,2,0,2,-9,1,1,0,3,9.781071044228268,9.847974669670387,0,2,0,-9,24,0,4,29.73902740255978,0,0,0,48,1,4,1,3,3,2019,1,1,9,2,60,60,15,1,2,1,0,35.96543239759319,35.96543239759319,0,0,0,0,0,0,0,1,1,0,8.570644964720497,0,0,0,61.77,29.43,5,1,0,0,6,5,1,646.5,0,0,0 +11105,13623,24823,24825,-9,-9,2,1,0,41,1,0,1,0,3,-9,2,1,0,3,6.494019985966823,6.177330961739838,0,2,0,-9,9,0,-2,5.273737831372987,0,0,1,43,2,3,1,3,2,2019,1,1,22,10,10,10,15,1,10,1,0,7.267060905284397,7.267060905284397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.92,44.25,3,1,0,0,11,3,1,885.6666666666666,0,0,0 +11105,13623,24824,-9,24823,24825,5,1,0,14,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-963.0898182862522,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,11,3,1,885.6666666666666,0,0,0 +11105,13623,24825,24823,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,3,8.348279226416048,8.164619706420718,0,2,0,-9,9,0,2,29.79333631962463,0,0,0,41,3,3,1,-9,-9,2019,1,2,24,12,82,44,15,1,12,1,0,4.803135838680745,4.803135838680745,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.6,55.01,5,1,0,1,11,3,1,885.6666666666666,0,0,0 +11105,13624,24826,-9,24823,24825,4,1,0,19,2,0,1,0,2,-9,2,1,0,3,7.737643243178796,8.131686179221679,0,3,0,0,0,-9,0,-999.741606529711,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,35,0,15,1,0,-9,1,10.48725433971281,10.48725433971281,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,53.68,3,1,0,1,11,4,1,351,0,0,0 +11106,13625,24827,-9,-9,-9,1,1,1,64,3,0,1,0,1,-9,1,1,0,4,9.742221799724,9.666183944423054,7.109422635161436,4,0,0,0,-9,0,-969.6792443989031,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,35,50,15,1,0,-9,0,64.35457959369775,64.35457959369775,0,0,0,0,0,0,0,1,1,0,7.674674253834439,7.760810494212076,4.836024160146651,3,35.44,62.1,6,1,0,0,6,5,1,156,0,0,0 +11106,13625,24828,-9,-9,24827,2,1,0,17,2,0,1,0,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1021.346701593298,1,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.22,55.39,6,1,0,0,6,5,1,156,0,0,0 +11107,13626,24829,-9,24833,24831,6,1,0,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1133.925397165311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,5,1,0,0,13,2,0,828,0,0,0 +11107,13626,24830,-9,24833,24831,5,1,0,14,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-994.0491966947144,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38,44,4,1,0,0,13,2,0,828,0,0,0 +11107,13626,24831,24833,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,4,0,0,0,2,0,-9,8,0,0,17.79151856755125,0,0,0,39,2,4,3,2,2,2019,2,2,14,2,40,30,15,1,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.92,44.25,4,1,0,0,13,2,0,828,0,0,0 +11107,13626,24832,-9,24833,24831,4,1,0,15,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1007.596754164913,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,61,5,1,0,0,13,2,0,828,0,0,0 +11107,13626,24833,24831,-9,-9,2,1,0,39,1,0,3,0,2,-9,6,3,0,4,0,6.994354455368396,7.092452388731807,2,0,-9,8,0,0,-22.00709215614436,0,0,1,39,2,4,1,3,3,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.132515577372398,0,14.32421269683385,3,38.53,62.21,6,1,0,0,13,2,0,828,0,0,0 +11108,13627,24834,24835,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,3,0,7.400684084469048,7.153272270614986,1,0,-9,35,0,2,79.60548991857664,0,0,0,61,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.749861199954513,0,0,0,59.46,46.99,6,1,0,0,10,2,1,985.5,0,0,0 +11108,13627,24835,24834,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,5.306215142910111,5.65697580196985,1,0,-9,35,0,-2,-77.3872406787296,0,0,0,63,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.844564669977916,0,0,0,46.62,51.4,7,1,0,0,10,2,1,985.5,0,0,0 +11109,13628,24836,24837,-9,-9,1,1,0,34,1,0,0,0,1,-9,1,1,0,3,8.160334904901044,8.248602910907231,0,1,0,-9,8,0,2,81.51592408547668,0,0,1,32,1,2,1,1,2,2019,1,2,12,4,10,38,15,1,4,1,0,41.57413307020629,41.57413307020629,0,0,0,0,0,0,0,0,0,0,2.110771045731586,0,0,0,43.84,58.37,5,1,0,0,5,4,1,499.5,0,0,0 +11109,13628,24837,24836,-9,-9,2,1,1,32,1,0,0,0,1,-9,1,1,0,2,6.837577560535974,6.732010467101164,0,1,0,-9,8,0,-2,43.88737845020422,0,0,0,34,1,3,1,-9,-9,2019,1,1,5,0,20,43,15,1,0,1,0,6.520970793748081,6.520970793748081,0,0,0,0,0,0,0,0,0,0,2.573339996163824,0,0,0,36.32,56.73,5,1,0,0,5,4,1,499.5,0,0,0 +11110,13629,24838,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,2,0,5.59923432016225,5.893579458972611,3,0,0,0,-9,0,-891.3647546540109,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.684740091295245,.0496710603495805,3,59.3,44.82,6,1,0,0,13,2,1,264,0,0,0 +11111,13630,24839,24840,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,8.167001898456858,7.967826568816768,1,0,-9,49,0,0,6.83805136715469,0,0,0,64,3,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.823128205467113,8.082343431004372,36.32033612369752,3,59.88,45.37,6,1,0,0,6,3,1,686.5,0,0,0 +11111,13630,24840,24839,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,0,-42.8790955466116,0,0,0,64,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.893618450454308,0,3.444799745601478,3,54.37,54.8,6,1,0,0,6,3,1,686.5,0,0,0 +11112,13631,24841,24842,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,2,7.232804616609295,7.598323688639443,6.898349456836224,1,0,-9,39,0,0,109.0650315376707,0,0,0,59,2,4,1,3,3,2019,1,2,13,1,34,30,15,1,1,1,0,4.255359545036836,4.255359545036836,0,0,0,0,0,0,0,0,0,0,0,6.882745050704274,0,0,33.31,51.41,4,1,0,0,5,3,1,3656,0,0,0 +11112,13631,24842,24841,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,6.720287488074675,6.677034062942484,0,1,0,-9,39,0,0,-153.6784411910766,0,0,0,59,3,2,1,3,2,2019,1,1,21,10,17,18,15,1,10,1,0,4.283067956310526,4.283067956310526,0,0,0,0,0,0,0,0,0,0,5.795175018514985,0,6.932893805097232,3,42.02,53.62,7,1,0,0,5,3,1,3656,0,0,0 +11112,13632,24843,24844,-9,-9,4,1,0,22,1,0,0,0,1,-9,2,1,0,4,7.041139103741355,7.212616532278281,0,1,0,-9,1,-9,0,38.00304885752507,-9,1,1,22,1,3,1,-9,-9,2019,1,3,17,7,25,0,15,1,7,1,0,6.110102171043489,6.110102171043489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.89,65.90000000000001,3,1,0,0,5,3,1,618.5,0,0,0 +11112,13632,24844,24843,24842,24841,3,1,1,22,1,0,0,0,1,-9,2,1,0,3,7.867077687920165,7.893517735223871,0,1,0,1,1,-9,0,45.00040296118347,-9,1,0,22,1,4,1,2,3,2019,1,4,21,7,42,0,15,1,7,1,0,6.705967784531279,6.705967784531279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.89,59.48,1,1,0,0,5,3,1,618.5,0,0,0 +11113,13633,24845,-9,-9,-9,1,1,0,45,2,0,0,0,1,-9,2,1,0,4,8.737700280558684,8.7618701705816,0,3,0,0,0,-9,0,-997.3626961053362,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,45,48,15,1,0,-9,0,18.30930453334921,18.30930453334921,0,0,0,0,0,0,0,0,0,0,2.534442115740811,0,0,3,49.52,55.68,5,1,0,0,8,5,1,466,0,0,0 +11114,13634,24846,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,7.175811386624564,7.42261710488006,3,0,0,0,-9,0,-951.605756550782,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,8.091376637929933,0,0,0,1,1,0,2.323265228438332,7.183514549346162,0,0,53.52,37.9,6,1,0,0,2,2,1,1658,0,0,0 +11115,13635,24847,24848,-9,-9,2,1,0,61,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,40,0,-2,0,0,0,0,63,3,4,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.47,51.99,5,1,0,0,13,1,1,677.5,0,0,0 +11115,13635,24848,24847,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,4,0,0,0,1,0,-9,40,0,2,0,0,0,0,61,3,4,3,3,3,2019,2,2,9,0,55,70,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,7,1,0,0,13,1,1,677.5,0,0,0 +11116,13636,24849,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1022.303620521176,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.24,31.45,5,1,0,0,12,1,0,1209,0,0,0 +11117,13637,24850,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-914.3419914283263,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.25,53.31,7,1,0,0,6,1,0,287,0,0,0 +11118,13638,24851,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,2,1,0,5,8.36015410272962,8.177321076762883,0,3,0,0,0,-9,0,-1111.850296941516,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,37,23,15,1,0,-9,0,15.40314171460362,15.40314171460362,0,0,0,0,0,0,0,0,0,0,0,0,8.64589658937831,3,48.42,60.53,2,1,0,0,13,4,0,366,0,0,0 +11119,13639,24852,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,8,3,1,1,0,7.513116943477042,7.622382069666295,3,0,-9,0,-9,0,-995.894002798184,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,1,0,0,1.124477704251836,29.38710726039784,0,0,1,1,0,2.836142957313056,7.437706302482912,0,0,60.7,19.46,6,1,0,0,10,3,1,82,0,0,0 +11119,13640,24853,-9,24852,-9,2,1,1,43,2,0,0,0,3,-9,2,1,0,3,8.278786927167523,7.912470605584664,0,3,0,-9,0,-9,0,-929.4511469990709,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,0,15,1,0,-9,1,11.34423339855411,11.34423339855411,0,0,0,0,0,0,0,1,1,0,0,0,26.86119809803966,3,54.37,54.8,4,1,0,0,10,4,1,647,0,0,0 +11120,13641,24854,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,2,0,6.972211224605705,6.813415797663851,3,0,0,0,-9,0,-1060.750328959308,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.129255371072183,0,0,59.15,44.82,6,4,0,0,6,2,1,170,0,0,0 +11121,13642,24855,24859,-9,-9,2,1,1,43,1,0,3,0,2,-9,2,1,0,4,0,0,0,2,0,-9,10,0,3,0,-9,0,0,40,1,3,1,-9,-9,2019,1,1,5,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.980935086670084,0,0,0,58.15,52.91,6,1,0,0,13,1,1,511.8,0,0,0 +11121,13642,24856,-9,24859,24855,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.800263042837,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,13,1,1,511.8,0,0,0 +11121,13642,24857,-9,24859,24855,3,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-961.1946835703337,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,13,1,1,511.8,0,0,0 +11121,13642,24858,-9,24859,24855,5,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.41166730457,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,13,1,1,511.8,0,0,0 +11121,13642,24859,24855,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,3,0,0,0,2,0,-9,10,0,-3,0,0,0,1,43,2,4,1,2,2,2019,1,2,7,0,0,26,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.904779735412889,0,0,0,54.96,53.17,7,1,0,0,13,1,1,511.8,0,0,0 +11122,13643,24860,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,5,7.212261796736225,7.422858689720309,5.991071943353871,4,0,0,0,-9,0,-823.7784679022542,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,24,32,15,1,0,-9,0,7.132850747063359,7.132850747063359,0,0,0,0,0,0,0,1,1,0,5.571338258425127,0,0,0,51.73,58.82,6,1,0,0,4,3,0,522,0,0,0 +11122,13643,24861,-9,24860,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-930.0038625699461,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,3,0,522,0,0,0 +11123,13644,24862,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.675821406405245,8.694217112895137,0,3,0,-9,0,0,0,-963.0865222159803,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,50,48,15,1,0,-9,0,12.21290235976183,12.21290235976183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,0,0,11,5,1,1064,0,0,0 +11124,13645,24863,24864,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,2,9.016721156170387,9.539634595245461,0,1,0,-9,25,-9,-6,-171.5835044326658,-9,0,0,55,2,3,3,2,2,2019,2,1,11,0,29,0,15,1,0,3,0,58.1434792009176,58.1434792009176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,5,1,0,0,8,5,1,732,0,0,0 +11124,13645,24864,24863,-9,-9,1,1,0,55,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,25,-9,6,21.76165737525277,-9,0,0,49,1,2,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8406104026431458,0,0,0,55.96,49.93,6,1,0,0,8,5,1,732,0,0,0 +11125,13646,24865,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1024.932458759091,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.25,52.95,6,3,0,0,8,1,0,903,0,0,0 +11125,13647,24866,-9,24865,-9,2,1,1,34,2,0,0,0,1,1,2,1,0,4,9.087606267542517,8.733851271849451,0,3,0,0,0,-9,0,-1063.54819533307,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,8,5,0,564,0,0,0 +11126,13648,24867,24868,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,5,0,7.137611044639009,6.959676554953433,1,0,-9,33,0,-10,-10.44922093521612,0,0,0,84,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.0459607931559024,7.052460487596721,0,0,60.6,49.26,7,1,0,0,7,3,1,412.5,0,0,0 +11126,13648,24868,24867,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,4,0,7.59775339096955,7.648016679039586,1,0,-9,33,0,10,-37.84626161738595,-9,0,0,74,2,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.715816664925527,0,0,51.9,48.85,1,1,0,0,7,3,1,412.5,0,0,0 +11127,13649,24869,24870,-9,-9,2,1,0,49,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,2,0,0,0,0,47,3,4,3,2,2,2019,4,1,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.04,22.78,2,1,0,1,13,1,0,1043,0,0,0 +11127,13649,24870,24869,-9,-9,1,1,1,47,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,7,0,-2,0,0,0,0,49,2,1,3,3,2,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,6,1,1,0,13,1,0,1043,0,0,0 +11128,13650,24871,-9,24872,24874,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1140.007504502057,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,375.5,0,0,0 +11128,13650,24872,24874,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,4,7.691103743067835,7.396585630086729,0,2,0,-9,8,0,-3,-7.488155569735585,0,0,1,42,2,4,1,2,2,2019,1,2,11,0,22,22,15,1,0,1,0,11.43960228689658,11.43960228689658,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,6,1,0,0,10,4,1,375.5,0,0,0 +11128,13650,24873,-9,24872,24874,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1156.924799836473,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,10,4,1,375.5,0,0,0 +11128,13650,24874,24872,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.295584891066698,8.387251538525382,0,2,0,-9,8,0,3,-6.378496301497315,0,0,0,39,2,4,1,-9,-9,2019,1,1,14,3,45,44,15,1,3,1,0,11.20798020086414,11.20798020086414,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.53,58.85,5,1,0,0,10,4,1,375.5,0,0,0 +11129,13651,24875,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,2,7.793037215603339,7.718178256989921,0,3,0,0,0,-9,0,-1073.544220074033,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,30,30,15,1,3,-9,0,10.03177084512602,10.03177084512602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,30.38,6,1,0,0,2,3,1,1118,0,0,0 +11130,13652,24876,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,2,7.857407018327691,7.578416639664475,0,3,0,0,0,-9,0,-914.1143401687455,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,33,11,40,40,15,1,11,-9,0,6.281131838238109,6.281131838238109,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,45.1,1,1,0,1,12,3,1,176,0,0,0 +11131,13653,24877,24878,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,4,8.97739159439088,9.244583877685498,0,1,0,-9,24,0,-1,-76.45785495422072,-9,0,1,45,1,3,1,1,1,2019,1,1,10,0,40,0,15,1,1,1,0,19.6555807558865,19.6555807558865,0,0,0,0,0,0,0,0,0,0,3.431060497212862,0,0,0,50,54,6,3,0,0,9,5,1,838.5,0,0,0 +11131,13653,24878,24877,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,3,9.708136116230641,9.938881218950158,0,1,0,-9,24,0,1,67.04824224222514,0,0,0,44,1,4,1,2,1,2019,1,2,11,0,37,36,15,1,0,1,0,41.92098677104862,41.92098677104862,0,0,0,0,0,0,0,0,0,0,8.363619059106691,0,0,0,57.33,53.46,5,3,0,0,9,5,1,838.5,0,0,0 +11131,13654,24879,-9,24877,24878,3,1,0,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1049.292586855521,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,3,0,0,9,1,1,506,0,0,0 +11132,13655,24880,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1005.691884819212,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.685057819555757,0,0,0,35.8,59.5,3,1,0,0,12,1,1,1599,0,0,0 +11133,13656,24881,24882,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,5.991707905971721,6.01907446269746,0,1,0,-9,30,0,-4,209.7941310824718,0,0,0,72,3,2,1,1,2,2019,3,2,7,0,4,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.127001177644406,0,0,0,57.16,56.15,6,1,0,0,9,3,1,1080.5,0,0,0 +11133,13656,24882,24881,-9,-9,2,1,1,72,1,0,0,0,3,-9,1,1,0,2,7.928737752031701,8.091985743516238,4.248047151462373,1,0,-9,30,0,4,19.91219475130685,0,0,0,68,2,4,3,-9,-9,2019,2,1,6,0,18,30,15,1,0,4,0,20.97075336151514,20.97075336151514,0,0,0,0,0,0,0,1,1,0,4.932112707275282,3.78451045948416,0,0,57.57,49.69,6,1,0,0,9,3,1,1080.5,0,0,0 +11134,13657,24883,24884,-9,-9,2,1,1,88,1,0,0,0,1,-9,4,3,0,3,0,7.018787525013158,6.726689170548663,1,0,-9,8,0,4,-53.13580837070712,0,0,0,84,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.160666819197067,7.442340193154695,0,0,55,45,6,1,0,0,6,4,1,236,0,0,0 +11134,13657,24884,24883,-9,-9,1,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,7.983465358606703,8.055637910341975,1,0,-9,38,0,-4,-134.6354280575276,0,0,0,88,1,3,3,3,3,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.985884128794961,8.034581764644559,9.753626096860549,2,64.40000000000001,31.26,6,1,0,0,6,4,1,236,0,0,0 +11135,13658,24885,24886,-9,-9,2,1,0,43,1,0,0,0,1,-9,2,1,0,5,8.498134252609063,8.674925540604796,0,1,0,-9,7,0,1,7.051916223069697,0,0,1,42,2,5,1,3,3,2019,1,1,7,0,40,37,15,1,0,1,0,12.62232363593093,12.62232363593093,0,0,0,0,0,0,0,0,0,0,3.4578755060006,0,0,0,57.06,57.76,6,1,0,0,4,5,1,1086,0,0,0 +11135,13658,24886,24885,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,5,8.651106926860855,8.537947688344971,0,1,0,-9,7,0,-1,-29.37015793459248,0,0,0,43,1,5,1,3,3,2019,1,2,9,0,46,40,15,1,0,1,0,15.58436961991955,15.58436961991955,0,0,0,0,0,0,0,0,0,0,7.109333162596216,0,0,0,57.06,57.76,6,1,0,0,4,5,1,1086,0,0,0 +11136,13659,24887,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,2,8.009817911843916,8.053974964962594,0,3,0,0,0,-9,0,-1052.590428412419,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,32,31,15,1,7,-9,0,9.55049958810946,9.55049958810946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.55,35.52,3,2,0,1,2,3,0,566,0,0,0 +11137,13660,24888,-9,24892,24890,3,1,0,18,2,0,1,0,2,1,2,1,0,3,7.848896015750014,7.705764465996009,0,3,0,0,0,-9,0,-1094.710992979899,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,25,0,15,1,2,-9,1,11.59859350924097,11.59859350924097,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,56.19,4,1,0,0,5,3,1,339,0,0,0 +11137,13661,24889,-9,24892,24890,5,1,1,19,2,0,1,0,2,-9,2,1,0,3,6.636195815729357,6.85469896159599,0,3,0,0,0,-9,0,-1088.775046873397,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,10,12,15,1,0,-9,1,7.230590059724598,7.230590059724598,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,43.99,5,1,0,0,5,2,1,818,0,0,0 +11137,13662,24890,24892,-9,-9,4,1,1,40,1,0,1,0,2,-9,1,1,0,2,7.402910863729504,7.201659029253676,0,2,0,-9,5,0,0,67.94527643837455,0,0,0,40,2,3,1,-9,-9,2019,1,1,13,1,37,0,15,1,1,1,0,5.349334520092262,5.349334520092262,0,0,0,0,0,0,0,1,1,0,8.141308786555538,0,0,0,39.99,48.45,6,1,0,0,5,3,1,393.3333333333333,0,0,0 +11137,13662,24891,-9,24892,24890,6,1,1,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-978.3326648695479,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,3,1,393.3333333333333,0,0,0 +11137,13662,24892,24890,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,3,8.26705919034708,8.032723553211484,0,2,0,-9,5,0,0,35.93394746677701,0,0,1,40,2,2,1,3,3,2019,1,4,19,8,45,50,15,1,8,1,0,8.113930379308039,8.113930379308039,0,0,0,0,0,0,0,1,1,0,0,0,6.170576312872634,3,46.4,52.9,6,1,0,0,5,3,1,393.3333333333333,0,0,0 +11138,13663,24893,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,4,9.145406469109874,8.831965411586893,0,3,0,0,0,-9,0,-944.3826803652196,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,50,46,15,1,0,-9,0,19.34828134700059,19.34828134700059,0,0,0,0,0,0,0,0,0,0,.7308601415059265,0,0,0,49.03,50.19,6,1,0,0,4,5,1,621,0,0,0 +11139,13664,24894,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,1,0,6.43153589522567,6.28357438653455,3,0,0,0,-9,0,-991.1791545283897,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,7.260327923721964,0,0,1,1,0,0,6.147821565173181,0,0,47.72,25.58,6,1,0,0,10,2,1,497,0,0,0 +11140,13665,24895,24896,-9,-9,2,1,1,48,1,0,2,0,3,-9,1,1,0,4,8.692467444690227,8.627395734066402,0,2,0,-9,19,0,-4,-33.10616871648675,0,0,0,52,2,3,1,3,2,2019,1,1,11,0,40,40,15,1,0,1,0,16.13828069720265,16.13828069720265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,7,4,1,884.5,0,0,0 +11140,13665,24896,24895,-9,-9,1,1,0,52,1,0,2,0,2,-9,2,1,0,3,6.892679130828851,7.151589738883338,0,2,0,-9,20,0,4,-6.509346989633457,0,0,0,48,3,4,1,3,2,2019,1,2,9,0,10,0,15,1,0,1,0,19.10621864925387,19.10621864925387,0,0,0,0,0,0,0,1,1,0,1.983977886317024,0,0,0,49.04,55.86,6,1,0,0,7,4,1,884.5,0,0,0 +11140,13665,24897,-9,24896,24895,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1024.692505328891,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,4,1,884.5,0,0,0 +11140,13665,24898,-9,24896,24895,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-870.9292434871895,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,884.5,0,0,0 +11141,13666,24899,24900,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,4,9.153043782920387,9.319377331440377,0,1,0,-9,35,0,-3,34.72716172457713,0,0,0,56,2,3,1,2,1,2019,1,2,7,0,45,50,15,1,0,1,0,23.57997082674752,23.57997082674752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,6,1,0,0,10,5,1,901.5,0,0,0 +11141,13666,24900,24899,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.16936037104905,8.63305744917983,7.383542709460664,1,0,-9,33,0,3,6.255121594230114,0,0,0,53,1,4,1,3,3,2019,1,1,10,0,23,0,15,1,0,1,0,19.31784440026366,19.31784440026366,0,0,0,0,0,0,0,0,0,0,0,7.325925256004016,0,0,50.71,52.35,6,1,0,0,10,5,1,901.5,0,0,0 +11141,13667,24901,-9,24900,24899,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,7.570028784846782,7.972008367132894,0,3,0,0,0,-9,0,-950.0567269516757,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,37,25,15,1,12,-9,1,6.882031866432934,6.882031866432934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.87,48.29,2,1,0,0,10,3,1,2377,0,0,0 +11142,13668,24902,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1017.529119932727,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,4.604053132057505,0,0,0,1,1,0,0,0,0,0,29.61,21.77,5,1,0,0,12,1,1,885,0,0,0 +11143,13669,24903,24904,-9,-9,1,1,0,26,1,0,0,0,2,-9,1,1,0,2,7.396359072524035,7.303485525111364,4.101153516566058,1,0,-9,3,0,-2,22.10395279924378,0,1,1,28,2,5,1,3,-9,2019,1,2,6,0,12,20,15,1,0,1,0,16.99760259556834,16.99760259556834,0,0,0,0,0,0,0,0,0,0,3.172048104227923,0,0,0,55.71,49.15,6,1,0,0,5,5,1,359,0,0,0 +11143,13669,24904,24903,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,5,9.225726557598255,9.058290482067413,0,1,0,-9,3,0,2,-27.07291919856159,0,1,0,26,2,2,1,-9,-9,2019,1,1,8,1,60,80,15,1,1,1,0,13.37093097453305,13.37093097453305,0,0,0,0,0,0,0,0,0,0,6.480083970940403,0,0,0,46.8,58.27,5,1,0,0,5,5,1,359,0,0,0 +11144,13670,24905,24906,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,64,0,-1,64.87279026131579,0,0,0,83,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.477591586515368,0,0,0,59.9,48.18,6,1,0,0,7,3,1,575.5,0,0,0 +11144,13670,24906,24905,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,2,0,7.27124023741693,7.676574611198038,1,0,-9,64,0,1,-99.86414168577009,0,0,0,82,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.821523461356669,7.425963601507755,0,0,62.27,32.41,6,1,0,0,7,3,1,575.5,0,0,0 +11145,13671,24907,24908,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,6.936187054144922,6.782897255174003,1,0,-9,7,0,5,3.973131038751454,0,0,0,62,2,5,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.220365512315,7.250664601494722,0,0,54.2,57.49,6,1,0,0,7,3,1,400,0,0,0 +11145,13671,24908,24907,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,5,0,6.994999449022467,7.154718592029057,1,0,-9,46,0,-5,-20.39608300231144,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.430582857942022,7.001192183640923,0,0,57.06,57.76,7,1,0,0,7,3,1,400,0,0,0 +11146,13672,24909,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,4,8.260019340899278,8.104305179203852,0,3,0,0,0,-9,0,-869.8580560164875,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,9,42,0,15,1,9,-9,0,11.32569125291519,11.32569125291519,0,0,0,0,0,0,0,0,0,0,2.304037471338601,0,0,0,38.38,60.77,3,1,0,0,6,4,1,186,0,0,0 +11147,13673,24910,24911,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.18519009722208,7.757198757708013,0,1,0,-9,17,0,6,-45.15381046388287,0,0,0,42,2,4,1,2,-9,2019,1,1,22,10,44,42,15,1,10,1,0,9.039170852818016,9.039170852818016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.72,30.61,5,1,0,0,9,5,1,1135.5,0,0,0 +11147,13673,24911,24910,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,4,8.918675917208791,9.328189597089789,0,1,0,-9,17,0,-6,7.306309008622705,0,0,0,48,2,3,1,2,2,2019,1,2,8,0,50,89,15,1,0,1,0,18.39508665430986,18.39508665430986,0,0,0,0,0,0,0,0,0,0,.6856605060717551,0,0,0,57.16,56.15,6,1,0,0,9,5,1,1135.5,0,0,0 +11148,13674,24912,24913,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,7.655568358012031,7.68782993726216,1,0,-9,7,0,2,-28.92244371980179,0,0,0,68,2,3,3,2,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.476674309584518,8.015993560777694,0,0,46.39,60.99,6,1,0,0,12,5,1,780.5,0,0,0 +11148,13674,24913,24912,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,8.903171346993263,8.956959693442464,1,0,-9,7,0,-2,72.38364205938704,0,0,0,70,1,4,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.062005158001362,8.836598567486401,0,0,50.67,34.62,6,1,0,0,12,5,1,780.5,0,0,0 +11149,13675,24914,-9,24917,24915,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.9234008973973,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,1,803,0,0,0 +11149,13675,24915,24917,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,3,8.529872723422223,8.339322139495543,0,2,0,-9,17,0,0,52.15284239913876,0,0,0,40,1,4,1,2,3,2019,1,1,6,0,35,35,15,1,0,1,0,17.70372735873026,17.70372735873026,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,4,1,803,0,0,0 +11149,13675,24916,-9,24917,24915,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.968269661027,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,4,1,803,0,0,0 +11149,13675,24917,24915,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,7.613888521084976,8.002012395077589,0,2,0,-9,17,0,0,-84.8183294461264,0,0,1,40,2,3,1,2,2,2019,1,2,7,0,27,28,15,1,0,1,0,8.719243543037628,8.719243543037628,0,0,0,0,0,0,0,1,1,0,2.096360660326954,0,0,0,49.86,55.31,6,4,0,0,7,4,1,803,0,0,0 +11150,13676,24918,24919,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,8.830952136378473,9.305376798754066,1,0,-9,26,0,1,62.43213571685792,0,0,0,76,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.070570453719998,8.953909993792703,0,0,65.39,38.76,6,1,0,0,2,5,1,1063,0,0,0 +11150,13676,24919,24918,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,4,0,7.041629516384447,7.06918033283506,1,0,-9,26,0,-1,-10.35704102964091,0,0,0,77,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.387805819732805,7.240791806441765,0,0,57.16,56.15,6,1,0,0,2,5,1,1063,0,0,0 +11151,13677,24920,-9,-9,-9,1,1,0,64,2,0,0,0,1,-9,4,3,0,3,0,6.523493802747425,6.364860566663931,3,0,0,0,-9,0,-1064.694688288153,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.776030270856078,6.852892907073144,0,0,58.08,40.76,6,1,0,0,8,2,1,378,0,0,0 +11152,13678,24921,24922,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,2,8.562733591872005,8.631368650426255,6.012292334410969,1,0,-9,34,0,4,22.48354318513456,0,0,0,55,2,4,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,18.35337746774687,18.35337746774687,0,0,0,0,0,0,0,1,1,0,0,6.217227210236006,0,0,50.95,48.58,6,1,0,0,4,5,1,651,0,0,0 +11152,13678,24922,24921,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.278254085813304,8.086148113093408,0,1,0,-9,34,0,-4,-13.35578895313412,0,0,0,59,3,2,1,2,2,2019,1,1,13,1,40,42,15,1,1,1,0,10.25810148459768,10.25810148459768,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.97,6,1,0,0,4,5,1,651,0,0,0 +11153,13679,24923,24924,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,1,0,0,0,1,0,-9,8,0,2,-58.0898641256876,0,0,0,33,2,3,1,2,-9,2019,1,2,29,9,0,35,15,1,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.1,28.8,4,1,0,0,2,4,1,702.5,0,0,0 +11153,13679,24924,24923,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,3,8.503814364639624,8.367435132476682,0,1,0,-9,8,0,-2,33.2556481558639,0,0,1,35,2,1,1,-9,-9,2019,1,1,8,0,43,48,15,1,0,1,0,15.92454050596166,15.92454050596166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,2,4,1,702.5,0,0,0 +11154,13680,24925,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,4,3,0,3,0,2.952429336042586,3.237765325745535,3,0,0,0,-9,0,-1019.796333364342,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.674164037994137,3.225153387030152,0,0,63.26,45.23,6,1,0,0,4,1,1,1431,0,0,0 +11155,13681,24926,-9,24929,24928,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.2610445778356,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,7,5,1,491.25,0,0,0 +11155,13681,24927,-9,24929,24928,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.835346075963,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,7,5,1,491.25,0,0,0 +11155,13681,24928,24929,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,3,8.8903508513957,9.130563272991667,0,2,0,-9,8,0,0,66.97915277726625,0,0,0,35,1,3,1,2,2,2019,1,2,11,0,38,38,15,1,0,1,0,24.9327105343776,24.9327105343776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.58,55.59,6,5,0,0,7,5,1,491.25,0,0,0 +11155,13681,24929,24928,-9,-9,2,1,0,35,1,0,2,0,1,-9,1,1,0,3,6.779502533276465,6.879014895829517,0,2,0,-9,8,0,0,-38.72362559780956,0,0,1,35,1,3,1,-9,-9,2019,1,1,12,0,4,0,15,1,2,1,0,32.14118414909669,32.14118414909669,0,0,0,0,0,0,0,1,1,0,3.378888114794657,0,0,0,41.47,58.08,6,1,0,0,7,5,1,491.25,0,0,0 +11156,13682,24930,-9,-9,-9,1,1,0,67,2,0,0,0,2,-9,4,3,0,2,0,6.786029426215469,7.140054895182383,3,0,0,0,-9,0,-1104.191449153092,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0438496426009515,7.232328846294745,0,0,36.48,37.64,3,1,0,0,11,2,1,530,0,0,0 +11157,13683,24931,24932,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,7.006889816555009,6.566951043904941,1,0,-9,55,0,6,75.06339375140789,0,0,0,74,2,3,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,0,2.353084808253532,0,0,0,0,1,1,0,3.927424122716052,7.125103802634836,0,0,37.01,22.23,3,1,0,0,6,3,1,1222.5,0,0,0 +11157,13683,24932,24931,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,7.48021275046225,7.162666226269868,1,0,-9,55,0,-6,58.89110976729501,0,0,0,80,3,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.322379282690374,7.410452680752937,5.016711489770675,2,55.96,49.93,5,1,0,0,6,3,1,1222.5,0,0,0 +11158,13684,24933,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,4,8.019475398760171,8.137578814642429,0,3,0,0,0,-9,0,-989.8914647055494,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,42,45,15,1,0,-9,0,7.668429100832197,7.668429100832197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,55.04,5,2,0,0,6,4,0,2241,0,0,0 +11159,13685,24934,24935,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,1,0,4.426170555879885,4.502809504538813,1,0,-9,9,0,-1,-9.031824014839632,0,0,0,81,3,4,3,-9,3,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,1,0,13.52782842721735,0,0,0,0,1,1,0,4.962879814739877,4.500413291183579,0,0,46.85,27.33,3,1,0,0,7,2,1,565,0,0,0 +11159,13685,24935,24934,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,9,0,1,-128.5506136323805,0,0,0,80,3,1,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.849391302557395,0,0,1,49.27,56.95,6,1,0,0,7,2,1,565,0,0,0 +11160,13686,24936,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,5,8.433557644441921,8.756562953422778,0,3,0,0,0,-9,0,-1040.539408193361,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,38,38,15,1,0,-9,0,13.79807386546584,13.79807386546584,0,0,0,0,0,0,0,0,0,0,3.762172372770164,0,0,3,48.96,60.26,6,3,0,0,10,5,0,1290,0,0,0 +11161,13687,24937,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,2,1,0,3,7.106062997970608,7.162637323127091,0,3,0,-9,0,-9,0,-1022.490581797948,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,10,0,15,1,1,-9,0,13.28763241414825,13.28763241414825,0,0,0,0,0,0,0,1,1,0,0,0,11.78779441272348,3,57.96,49.02,7,1,0,0,11,2,0,923,0,0,0 +11162,13688,24938,24942,-9,-9,1,1,1,38,1,0,3,0,2,-9,2,1,0,3,7.99429503930785,7.954584358232154,0,2,0,-9,1,-9,5,-36.87028104361637,-9,0,0,33,2,5,1,2,2,2019,1,2,19,7,40,0,15,1,7,1,0,8.773584297779447,8.773584297779447,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.17,50.61,5,1,0,0,12,3,1,514,0,0,0 +11162,13688,24939,-9,24942,24938,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-955.8727687676019,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,514,0,0,0 +11162,13688,24940,-9,24942,24938,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-885.2804651884593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,514,0,0,0 +11162,13688,24941,-9,24942,24938,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-885.6500544387538,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,3,1,514,0,0,0 +11162,13688,24942,24938,-9,-9,2,1,0,33,1,0,3,0,2,-9,2,1,0,5,7.518516991438371,7.606584739048431,0,2,0,-9,1,-9,-5,18.48649281704695,-9,0,1,38,2,3,1,-9,-9,2019,1,1,12,0,23,0,15,1,0,1,0,11.50549666516193,11.50549666516193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.1,65.8,4,1,0,0,12,3,1,514,0,0,0 +11163,13689,24943,24944,-9,-9,2,1,0,35,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,14,-9,-3,53.81919767655369,-9,0,1,38,2,4,1,3,2,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,2,0,515.75,0,0,0 +11163,13689,24944,24943,-9,-9,1,1,1,38,1,1,3,0,2,-9,1,1,0,4,7.249404373931543,7.666521054553655,0,2,0,-9,14,-9,3,-47.15239495423697,-9,0,0,35,2,4,3,3,1,2019,2,2,12,0,20,0,15,1,0,3,0,8.63104639526736,8.63104639526736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.4,62.35,6,3,0,0,8,2,0,515.75,0,0,0 +11163,13689,24945,-9,24943,24944,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-991.9845258393001,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,2,0,515.75,0,0,0 +11163,13689,24946,-9,24943,24944,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-939.3643922487615,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,515.75,0,0,0 +11164,13690,24947,-9,24948,24949,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.682180598205,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,1780.666666666667,0,0,0 +11164,13690,24948,24949,-9,-9,1,1,0,38,1,1,1,0,1,-9,2,1,0,4,8.710772211777122,8.587436239654114,0,2,0,-9,6,0,-2,67.53423300667326,0,0,1,40,1,3,1,2,2,2019,1,2,6,0,30,22,15,1,0,1,0,19.33950486020241,19.33950486020241,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.73,54.53,6,1,0,0,9,5,1,1780.666666666667,0,0,0 +11164,13690,24949,24948,-9,-9,2,1,1,40,1,1,1,0,1,-9,2,1,0,3,8.559462391815774,8.615865476743101,0,2,0,-9,6,0,2,11.25799922824309,0,0,0,38,1,4,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,14.33292712960262,14.33292712960262,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.9,57.01,4,1,0,0,9,5,1,1780.666666666667,0,0,0 +11165,13691,24950,-9,24951,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1074.984770364576,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,2,2,0,274.5,0,0,0 +11165,13691,24951,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,3,7.127426233667564,7.215069705138298,0,4,0,0,0,-9,0,-1119.916542062141,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,21,28,15,1,0,-9,0,7.629040961354602,7.629040961354602,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.4,55.39,2,1,0,0,2,2,0,274.5,0,0,0 +11166,13692,24952,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,2,1,0,2,8.965017369330619,8.842007436238564,0,3,0,-9,0,0,0,-930.5252964946748,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,48,50,15,1,2,-9,0,17.74663792912832,17.74663792912832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.3,55.16,3,1,0,0,5,5,1,1395,0,0,0 +11167,13693,24953,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,3,3,0,4,0,7.488269573066497,7.01497856037035,3,0,0,0,-9,0,-1044.071486883628,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.890457064172791,0,0,55.19,54.26,6,1,1,1,11,2,0,756,0,0,0 +11168,13694,24954,-9,-9,-9,1,1,1,88,3,0,0,0,3,-9,4,3,0,3,0,7.055265107670195,7.032767574404301,3,0,0,0,-9,0,-1048.614899532964,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.934752191957502,0,0,55,45,6,1,0,0,7,2,1,564,0,0,0 +11169,13695,24955,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,2,7.183859130069311,7.230997237646534,0,3,0,0,0,-9,0,-1026.323175109554,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,30,40,15,1,1,-9,0,5.049609653509801,5.049609653509801,0,0,0,0,0,0,0,0,0,0,3.255691488582557,0,0,0,55.1,27.83,3,2,0,0,11,2,1,1829,0,0,0 +11170,13696,24956,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,6.690699979454874,6.583387465703526,3,0,0,0,-9,0,-1044.214279123593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.174887921610673,6.749379689784266,0,0,50.03,47.42,6,1,0,0,10,2,1,392,0,0,0 +11171,13697,24957,24958,-9,-9,1,1,1,47,1,0,0,0,2,-9,1,1,0,3,8.467488345511898,8.611589763230842,0,1,0,-9,10,0,1,-60.39717805962071,0,0,0,46,2,4,1,-9,-9,2019,1,2,9,0,40,0,15,1,0,1,0,14.34442411900558,14.34442411900558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.45,49.27,6,1,0,0,5,5,1,491.5,0,0,0 +11171,13697,24958,24957,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,8.380481823764189,8.785896743268301,0,1,0,-9,29,0,-1,-30.71089733797302,0,0,0,47,2,3,1,-9,-9,2019,1,1,13,1,40,38,15,1,1,1,0,14.62500649433676,14.62500649433676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.52,53.72,3,1,0,1,5,5,1,491.5,0,0,0 +11172,13698,24959,24961,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,8.361762130850838,8.318265813200036,0,2,0,-9,11,0,6,-72.22556667053033,0,0,0,39,2,4,1,2,2,2019,1,2,7,0,26,27,15,1,0,1,0,17.7127904118357,17.7127904118357,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,2,1,0,0,7,5,1,719.6666666666666,0,0,0 +11172,13698,24960,-9,24959,24961,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.390873092524,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,719.6666666666666,0,0,0 +11172,13698,24961,24959,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,4,9.006798574449803,9.401377365659332,0,2,0,-9,11,0,-6,-18.89340066740036,0,0,0,45,2,4,1,-9,-9,2019,1,1,9,0,45,87,15,1,0,1,0,17.51436389737414,17.51436389737414,0,0,0,0,0,0,0,1,1,0,1.339838763277103,0,0,0,57.16,56.15,5,1,0,0,7,5,1,719.6666666666666,0,0,0 +11173,13699,24962,24963,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,8.69925050309652,8.423027408227876,0,1,0,-9,5,0,-4,-35.66550978379119,0,1,1,32,1,5,1,1,1,2019,1,2,7,0,70,12,15,1,0,1,0,8.289724502104148,8.289724502104148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,7,5,1,1236,0,0,0 +11173,13699,24963,24962,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,5,9.194940127045909,8.970256962906934,0,1,0,-9,5,0,4,21.63895256138063,0,0,0,28,1,5,1,-9,-9,2019,1,1,10,1,50,47,15,1,1,1,0,13.41197947367193,13.41197947367193,0,0,0,0,0,0,0,0,0,0,4.921778387150377,0,0,0,51.14,60.45,6,1,0,0,7,5,1,1236,0,0,0 +11174,13700,24964,-9,-9,-9,1,1,0,48,2,0,0,0,1,-9,2,1,0,3,8.535622192102307,8.704824296234976,0,1,0,-9,7,0,6,-63.14122387389189,0,0,0,-9,-9,-9,-9,3,2,2019,1,2,9,0,28,35,15,1,0,-9,0,15.56007190263809,15.56007190263809,0,0,0,0,0,0,0,0,0,0,6.464423065849734,0,0,0,52,54.51,6,1,0,0,2,5,1,368,0,0,0 +11174,13701,24965,-9,-9,-9,2,1,0,42,2,0,0,0,1,-9,2,1,0,4,8.14316176187962,7.978452748837026,0,1,0,-9,7,0,-6,-54.56593722164899,0,0,1,-9,-9,-9,-9,2,3,2019,1,1,6,1,32,35,15,1,1,-9,0,12.29965058003848,12.29965058003848,0,0,0,0,0,0,0,0,0,0,2.957262049648845,0,0,0,61.27,46.03,6,1,0,0,2,5,1,805,0,0,0 +11175,13702,24966,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,2,7.731840657064203,7.795518059624976,0,3,0,0,0,-9,0,-890.2379888686977,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,19,18,15,1,11,-9,0,19.62203873012614,19.62203873012614,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.29,34.96,2,2,0,1,6,4,1,547,0,0,0 +11176,13703,24967,24968,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,4.427350649015906,4.09028869768783,1,0,-9,46,0,-4,-68.04815944651133,0,0,0,72,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.869479096919606,4.066260345759384,0,0,57.16,56.15,7,1,0,0,9,4,1,1813,0,0,0 +11176,13703,24968,24967,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,8.569277652755177,8.494707733595686,1,0,-9,46,0,4,-72.42540921577015,0,0,0,68,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.228034821283398,8.417915967639427,0,0,57.16,56.15,7,1,0,0,9,4,1,1813,0,0,0 +11177,13704,24969,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,5,8.549708776632235,8.450628199688831,0,3,0,0,0,-9,0,-1107.633745916129,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,37,15,1,0,-9,0,11.62874690387573,11.62874690387573,0,0,0,0,0,0,0,1,1,0,4.53245822623828,0,.8040011523720745,3,46,61.6,5,1,0,0,5,5,1,78,0,0,0 +11178,13705,24970,24971,-9,-9,2,1,0,45,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,6,0,-23,-112.4461353819198,0,0,0,68,2,2,3,-9,-9,2019,4,1,21,9,0,0,15,3,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,22.6,2,1,0,0,11,2,1,854.5,0,0,0 +11178,13705,24971,24970,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,5.981292499664318,6.076475709971133,1,0,-9,6,0,23,27.06058239638977,0,0,0,45,1,1,3,2,2,2019,4,2,16,4,0,0,15,4,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.307746687541663,0,0,37.21,33.39,5,1,0,0,11,2,1,854.5,0,0,0 +11179,13706,24972,-9,24973,24974,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.4518357552912,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,498,0,0,0 +11179,13706,24973,24974,-9,-9,2,1,0,43,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,15,0,-3,102.1006388035301,0,0,1,46,1,2,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.132436162903354,3,57.06,57.76,6,1,0,0,8,4,1,498,0,0,0 +11179,13706,24974,24973,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,2,8.890533891058547,9.187152155200694,0,2,0,-9,14,0,3,128.5291391038957,0,0,0,43,1,5,3,2,2,2019,2,2,12,2,48,45,15,1,2,3,0,21.70746353668393,21.70746353668393,0,0,0,0,0,0,0,1,1,0,3.022150636620266,0,0,0,40.88,38.46,5,1,0,0,8,4,1,498,0,0,0 +11180,13707,24975,24976,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,8.39144362180506,7.998846237049903,0,1,0,-9,40,0,-1,-61.45099736976746,0,0,0,59,2,2,3,3,2,2019,2,2,12,0,30,38,15,1,0,3,0,17.82740874999901,17.82740874999901,0,0,0,0,0,0,0,0,0,0,3.656296935750975,0,0,0,37.18,45.38,4,1,0,0,12,4,1,1189,0,0,0 +11180,13707,24976,24975,-9,-9,2,1,1,59,1,0,0,0,2,-9,8,3,1,2,0,7.492830219004918,7.601267719049719,1,0,-9,40,0,1,62.15314196743064,0,0,0,58,2,2,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.198413957931766,1.30494403131912,3,29.72,36.53,4,1,0,0,12,4,1,1189,0,0,0 +11181,13708,24977,-9,24980,24981,3,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-864.4672903293155,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,4,4,1,948,0,0,0 +11181,13708,24978,-9,24980,24981,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.229620624583,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,948,0,0,0 +11181,13708,24979,-9,24980,24981,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.1254159563722,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,948,0,0,0 +11181,13708,24980,24981,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,2,8.098566538471671,7.893916107621973,0,2,0,-9,7,0,-1,-29.80029995741838,0,0,1,44,2,4,1,2,2,2019,1,2,32,12,30,30,15,1,12,1,0,11.86833815632826,11.86833815632826,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.6,60.82,3,1,0,1,4,4,1,948,0,0,0 +11181,13708,24981,24980,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,4,8.733587673373313,9.125441166914477,0,2,0,-9,7,0,1,-44.63495513392395,0,0,0,43,1,2,1,3,1,2019,1,1,10,0,43,43,15,1,0,1,0,19.46812561722581,19.46812561722581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,60.33,5,1,0,0,4,4,1,948,0,0,0 +11182,13709,24982,24983,-9,-9,1,1,1,50,1,0,0,0,2,-9,1,1,0,2,7.790386011028749,7.752200927628442,0,1,0,-9,7,0,-2,30.48612968945378,0,0,0,52,3,4,1,2,3,2019,1,2,6,0,65,50,15,1,0,1,0,4.935632885227623,4.935632885227623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.28,47.53,6,1,0,0,5,3,1,269,0,0,0 +11182,13709,24983,24982,-9,-9,2,1,0,52,1,0,0,0,3,-9,2,1,0,4,6.908925619867815,6.973770894694611,0,1,0,-9,7,0,2,75.8865930606181,0,0,0,50,2,2,1,-9,-9,2019,1,1,6,0,30,20,15,1,0,1,0,2.786709561703417,2.786709561703417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,5,1,0,0,5,3,1,269,0,0,0 +11183,13710,24984,-9,24986,24987,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.838620045764,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,869,0,0,0 +11183,13710,24985,-9,24986,24987,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.105176663851,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,869,0,0,0 +11183,13710,24986,24987,-9,-9,2,1,0,43,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,21,0,3,-158.8596231148373,0,0,1,40,2,5,1,2,2,2019,3,1,22,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.41,26.09,2,1,0,0,7,4,1,869,0,0,0 +11183,13710,24987,24986,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,5,8.753512313652601,8.85627631431208,0,2,0,-9,22,0,-3,136.5226443931664,0,0,0,43,2,1,3,3,2,2019,2,2,7,0,60,50,15,1,0,3,0,16.12189627981617,16.12189627981617,0,0,0,0,0,0,0,1,1,0,0,0,1.370174204838074,1,57.06,57.76,4,1,0,0,7,4,1,869,0,0,0 +11184,13711,24988,24989,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,3,8.350408767279719,8.254131220546105,0,1,0,-9,34,0,6,18.93998965636997,0,0,0,56,1,3,1,2,2,2019,3,2,1,0,0,47,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.306100707414979,0,3.339294656187486,3,48.45,49.46,6,1,0,0,11,5,1,840,0,0,0 +11184,13711,24989,24988,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.27556428510089,8.502054670674591,0,1,0,-9,32,0,-6,55.46896994655459,0,0,0,62,1,3,3,1,1,2019,2,1,6,0,37,47,15,1,0,4,0,12.13177974889112,12.13177974889112,0,0,0,0,0,0,0,0,0,0,.6182042282009229,0,10.0314790077757,3,43.05,44.78,5,1,0,0,11,5,1,840,0,0,0 +11185,13712,24990,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,4,0,5.239750906871205,5.163245764018167,3,0,0,0,-9,0,-1034.641198718551,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.221287938380057,0,0,60.38,48,6,1,0,0,13,2,0,316,0,0,0 +11186,13713,24991,-9,24992,24994,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.128590049469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,0,767.8,0,0,0 +11186,13713,24992,24994,-9,-9,2,1,0,28,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-1,0,0,1,1,29,2,3,3,-9,-9,2019,4,1,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.43,60.01,4,1,0,0,5,1,0,767.8,0,0,0 +11186,13713,24993,-9,24992,24994,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.820070123911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,1,0,767.8,0,0,0 +11186,13713,24994,24992,-9,-9,1,1,1,29,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,1,0,0,1,0,28,2,4,3,2,2,2019,4,2,12,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.21,50.4,4,1,1,1,5,1,0,767.8,0,0,0 +11186,13713,24995,-9,24992,24994,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.830413001795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,0,767.8,0,0,0 +11187,13714,24996,24997,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,6.362890240147174,6.043353658428246,1,0,-9,1,-9,-1,16.67129789300257,-9,0,0,67,2,3,3,3,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.218856522163548,0,0,51.06,35.25,6,1,0,0,8,3,1,523,0,0,0 +11187,13714,24997,24996,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.101624850973053,7.435358219289812,1,0,-9,39,-9,1,56.46766006036225,-9,0,0,66,2,2,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.375093023430055,7.547709059234097,0,0,58.32,50.22,7,1,0,0,8,3,1,523,0,0,0 +11188,13715,24998,24999,-9,-9,1,1,1,36,1,1,1,0,1,-9,1,1,0,5,8.219508402417969,8.220648923377381,0,2,0,1,1,-9,-1,-189.9354244127818,0,0,0,37,1,5,1,2,1,2019,1,2,13,4,1,30,15,1,4,1,0,408.8466408643841,408.8466408643841,0,0,0,0,0,0,0,1,1,0,8.155989623695014,0,0,0,49.34,58.54,5,1,0,0,7,5,1,941.3333333333334,0,0,0 +11188,13715,24999,24998,-9,-9,2,1,0,37,1,1,1,0,1,-9,5,1,0,5,9.330983027269014,9.092657497163387,0,2,0,-9,1,-9,1,-139.1645835702388,-9,0,1,36,1,5,1,-9,-9,2019,1,1,8,0,50,0,15,1,0,1,0,25.0316055676448,25.0316055676448,0,0,0,0,0,0,0,1,1,0,3.365277484734346,0,0,0,48.96,60.26,6,1,0,0,7,5,1,941.3333333333334,0,0,0 +11188,13715,25000,-9,24999,24998,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1038.192335057524,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,941.3333333333334,0,0,0 +11189,13716,25001,-9,25002,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,4,6.171222560609258,6.276501123563472,0,4,0,0,0,-9,0,-1030.43855410126,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.085185946463751,0,0,0,54.74,57.22,6,1,0,0,10,3,1,97,0,0,0 +11189,13716,25002,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,5,7.937417178624583,8.049869278180889,0,4,0,0,0,-9,0,-928.6471553706957,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,8.780302585653464,8.780302585653464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,10,3,1,97,0,0,0 +11189,13717,25003,-9,25002,-9,2,1,1,21,2,0,1,0,2,0,7,2,0,4,6.807038706578787,6.57037617848228,0,3,0,0,0,-9,0,-992.8977965105638,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.369126858894643,0,0,0,49.97,56.66,6,1,0,0,10,2,1,427,0,0,0 +11190,13718,25004,25005,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,1,0,7.540601144559433,7.267769738140966,1,0,-9,55,0,6,108.618983467626,0,0,0,73,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,0,131.7376082018089,0,5.388179120050024,0,0,1,1,0,.2607793027761333,6.926419082651642,0,0,60.87,18.53,6,1,0,0,13,3,1,392.5,0,0,0 +11190,13718,25005,25004,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,6.63191177734787,6.739032116406836,1,0,-9,55,0,-6,-112.7838457016051,0,0,0,79,2,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5896963271460662,6.611404619204674,117.8565076245007,1,49.94,58.01,6,1,0,0,13,3,1,392.5,0,0,0 +11191,13719,25006,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,2,0,4.684065973189715,4.964953228038393,3,0,0,0,-9,0,-936.7081132685006,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.205859892287702,0,0,74.81,14.36,6,1,0,0,9,2,0,419,0,0,0 +11192,13720,25007,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,2,1,0,5,9.170162015478263,9.498213542873145,0,3,0,0,0,-9,0,-1003.803678213911,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,50,15,1,0,-9,0,25.30490190762584,25.30490190762584,0,0,0,0,0,0,0,1,1,0,4.014655401272935,0,0,0,57.06,57.76,5,1,0,0,8,5,1,253,0,0,0 +11193,13721,25008,25009,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,5.633423380570466,5.380056469831305,1,0,-9,52,0,-2,16.7419387249251,0,0,0,74,3,3,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.700283421443772,5.32093236733054,0,0,59.88,48.2,7,1,0,0,9,2,1,963,0,0,0 +11193,13721,25009,25008,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.386609410288072,7.347217113554172,1,0,-9,52,0,2,23.3847124723009,0,0,0,72,3,3,3,3,2,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,0,1.66585477293271,0,4.063805530411411,0,0,1,1,0,7.883691395312835,6.903927358721082,0,0,45.51,54.86,5,1,0,0,9,2,1,963,0,0,0 +11194,13722,25010,25011,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,5,8.133275064144016,8.299222189288775,0,1,0,-9,7,0,-1,-22.42009702930787,0,0,0,62,3,4,1,3,3,2019,1,1,6,0,25,30,15,1,0,1,0,17.43886003207872,17.43886003207872,0,0,0,0,0,0,0,0,0,0,7.799645897577165,0,0,0,57.06,57.76,7,1,0,0,13,4,1,531,0,0,0 +11194,13722,25011,25010,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,4,7.035064910413598,7.157518587527425,0,1,0,-9,7,0,1,-39.84349279077827,0,0,0,61,1,5,1,2,3,2019,1,2,12,0,50,70,15,1,0,1,0,3.513030039465728,3.513030039465728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,531,0,0,0 +11195,13723,25012,25013,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,3,5.675425812118604,6.882642665835373,5.910120110057309,1,0,-9,40,0,0,9.956270817092305,0,0,0,62,1,5,1,3,3,2019,1,2,9,0,20,20,15,1,0,1,0,1.767224440238621,1.767224440238621,0,0,0,0,0,0,0,0,0,0,6.205489717240428,0,0,0,58.89,48.6,6,1,0,0,9,5,1,351.5,0,0,0 +11195,13723,25013,25012,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,5,8.981846515679617,9.047428006238672,0,1,0,-9,7,0,0,-20.37252683548003,0,0,0,62,1,3,1,1,2,2019,1,1,6,0,47,42,15,1,0,1,0,16.43777233261527,16.43777233261527,0,0,0,0,0,0,0,0,0,0,4.261588700513554,0,0,0,57.65,56.13,7,1,0,0,9,5,1,351.5,0,0,0 +11195,13724,25014,-9,25012,25013,3,1,0,33,2,0,0,0,1,-9,2,1,0,4,7.816020055632515,7.70188318150052,0,3,0,0,0,-9,0,-1042.429112058597,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,25,33,15,1,2,-9,1,9.034829716717612,9.034829716717612,0,0,0,0,0,0,0,0,0,0,.5805748497635075,0,0,0,51.83,57.2,6,1,0,0,9,3,1,444,0,0,0 +11196,13725,25015,25016,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,3,7.159985151937942,7.029157720013893,0,1,0,-9,39,0,2,151.2965103523382,0,0,0,61,2,4,1,3,2,2019,1,2,6,0,30,24,15,1,0,1,0,5.850181662643031,5.850181662643031,0,0,0,0,0,0,0,0,0,0,3.6360039989093,0,0,3,58.92,48.59,6,1,0,0,6,4,1,1504.5,0,0,0 +11196,13725,25016,25015,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.366076422378001,8.476860829216369,0,1,0,-9,40,0,-2,-44.11137741768684,0,0,0,63,3,3,1,3,3,2019,1,1,9,0,37,37,15,1,0,1,0,11.97247451921141,11.97247451921141,0,0,0,0,0,0,0,0,0,0,1.731203302792598,0,11.33318659232523,3,54.2,57.49,6,1,0,0,6,4,1,1504.5,0,0,0 +11197,13726,25017,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,4,6.027166383247089,6.26383674128207,0,3,0,0,0,-9,0,-1024.539722445136,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,10,20,15,1,0,-9,0,5.2583905971012,5.2583905971012,0,0,0,0,0,0,0,1,1,0,0,0,46.80873839980021,3,39.93,57.25,7,2,0,0,5,2,0,337,0,0,0 +11198,13727,25018,25019,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,5,4.680776386176051,5.610205619004856,5.329430693685247,1,0,-9,5,0,-4,26.37083224964734,0,0,0,70,2,3,3,2,2,2019,4,1,6,0,0,6,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.574031476294897,5.533294487072082,0,0,57.06,57.76,6,1,0,0,9,4,1,229.5,0,0,0 +11198,13727,25019,25018,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.461329782089503,8.253148091905746,1,0,-9,5,0,4,25.50484084868075,0,0,0,66,2,5,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.383767002700466,8.560577200551128,0,0,54.23,44.07,6,1,0,0,9,4,1,229.5,0,0,0 +11199,13728,25020,25021,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,6.891062505663805,6.618352828368502,1,0,-9,8,0,3,-87.16432334324544,0,0,0,75,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.3362367221833358,7.079892575672136,0,0,46.67,55.57,6,1,0,0,9,2,1,649.5,0,0,0 +11199,13728,25021,25020,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-3,2.362574222112782,0,0,0,78,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,2,1,649.5,0,0,0 +11200,13729,25022,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,5,8.701626929470466,8.998442067039351,0,3,0,0,0,-9,0,-983.9366218384152,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,40,43,15,1,1,-9,0,27.85555505510647,27.85555505510647,0,0,0,0,0,0,0,0,0,0,2.658734797086689,0,0,0,46.99,58.37,6,5,0,0,8,5,0,133,0,0,0 +11201,13730,25023,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,3,3,0,4,0,6.252182413638393,6.196317999612408,3,0,0,0,-9,0,-836.4615445387465,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.078704908156614,0,0,64.07000000000001,47.52,7,1,1,0,2,2,0,421,0,0,0 +11202,13731,25024,25025,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,2,6.702223081528944,7.049100235120471,0,2,0,-9,8,0,-10,60.7900454909575,0,1,1,38,2,3,1,3,-9,2019,1,2,16,4,16,30,15,1,4,1,0,6.20345408553592,6.20345408553592,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,45.74,4,1,0,0,12,3,0,1163,0,0,0 +11202,13731,25025,25024,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,3,7.482358335595417,7.581251072706656,0,2,0,-9,8,0,10,-19.36483277930807,0,0,0,28,2,2,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,6.718292984073915,6.718292984073915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,1,0,0,12,3,0,1163,0,0,0 +11202,13731,25026,-9,25024,25025,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.0594958957223,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,0,1163,0,0,0 +11203,13732,25027,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,5,8.802220225195342,9.040596969176887,0,3,0,0,0,-9,0,-909.8032545632296,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,49,15,1,0,-9,0,17.86442193461264,17.86442193461264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,11,5,0,1361,0,0,0 +11204,13733,25028,25029,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,4,9.191918169893359,8.947359573728836,0,1,0,-9,4,0,-6,-87.48379373776459,0,0,0,56,2,5,1,2,2,2019,1,1,9,0,50,55,15,1,0,1,0,16.45283652591529,16.45283652591529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.74,44.55,1,1,0,0,12,5,1,164.5,0,0,0 +11204,13733,25029,25028,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,5,7.658551509800662,7.393019491740539,0,1,0,-9,4,0,6,-91.74943635272257,0,0,0,50,1,4,1,1,1,2019,1,2,14,3,40,50,15,1,3,1,0,5.075181107988162,5.075181107988162,0,0,0,0,0,0,0,0,0,0,0,0,8.679931328902441,3,39.04,56.44,5,1,0,0,12,5,1,164.5,0,0,0 +11205,13734,25030,-9,25031,-9,4,1,0,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-970.008259632315,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,1,1,156.6666666666667,0,0,0 +11205,13734,25031,-9,25034,-9,1,1,0,38,3,2,3,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1087.841252414014,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,36,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,3,0,0,6,1,1,156.6666666666667,0,0,0 +11205,13734,25032,-9,25031,-9,5,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-967.4747863207458,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,1,1,156.6666666666667,0,0,0 +11205,13735,25033,-9,25031,-9,2,1,0,18,2,2,3,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1010.036146305133,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,0,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,79.51308539660506,3,38.39,40.89,5,3,0,0,6,1,1,902,0,0,0 +11205,13736,25034,-9,-9,-9,3,1,0,59,3,2,3,0,3,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-1004.414659771397,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7595906622296809,0,5.722351846547085,3,22.71,24.86,3,3,1,0,6,1,1,337,0,0,0 +11206,13737,25035,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,8.404707832000021,8.005280303026453,0,3,0,0,0,-9,0,-1098.62229546835,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,37,38,15,1,0,-9,0,13.73006977642852,13.73006977642852,0,0,0,0,0,0,0,1,1,0,0,0,14.13266473836517,3,60.63,38.2,5,1,0,0,9,4,0,433,0,0,0 +11207,13738,25036,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-921.5397330267544,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.056449301554991,0,11.25739090026554,3,24.18,29.79,1,1,0,0,2,1,1,365,0,0,0 +11208,13739,25037,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,1,1,0,3,8.19788254521692,8.540007716966564,6.495371820469269,3,0,0,0,-9,0,-1046.380526198579,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,5,0,39,15,1,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.586628701536966,0,0,0,27.98,63,5,1,0,0,9,5,0,1064,0,0,0 +11209,13740,25038,25040,-9,-9,2,1,1,53,1,0,1,0,1,-9,2,1,0,4,8.193455331728476,8.335752558027776,0,2,0,-9,19,0,9,56.27183858846595,0,0,0,44,1,3,1,-9,-9,2019,1,1,14,2,50,9,15,1,2,1,0,8.863856283172804,8.863856283172804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,3,3,0,0,8,4,1,863,0,0,0 +11209,13740,25039,-9,25040,25038,4,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.9188034008422,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,8,4,1,863,0,0,0 +11209,13740,25040,25038,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,3,7.431522448449629,6.980829629930296,0,2,0,-9,19,0,0,84.78786846639727,0,0,1,53,1,4,1,3,3,2019,1,2,10,0,20,20,15,1,0,1,0,7.732446789348693,7.732446789348693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,43.99,5,3,0,0,8,4,1,863,0,0,0 +11210,13741,25041,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,2,8.924987724784904,9.078318673765686,1.316745976457968,3,0,-9,0,-9,0,-1034.027888961413,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,47,0,15,1,1,-9,0,18.50164462643102,18.50164462643102,0,0,0,0,0,0,0,0,0,0,1.950500304714639,1.640544646467778,5.873063285195824,3,36.73,36.37,4,1,0,0,7,5,1,1941,0,0,0 +11211,13742,25042,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,3,8.018921033960266,8.47843808925273,0,3,0,0,0,-9,0,-1103.425247834588,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,39,42,15,1,4,-9,0,8.72304935492868,8.72304935492868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,6,1,0,0,10,4,0,832,0,0,0 +11212,13743,25043,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-965.5522320099265,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,5,1,1,0,1,1,0,287,0,0,0 +11213,13744,25044,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,4,0,6.605347915194627,6.612497129492771,3,0,0,0,-9,0,-1011.805109726844,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.812751990662352,6.998382150485009,0,0,57.76,54.51,6,1,0,0,5,2,1,414,0,0,0 +11214,13745,25045,25046,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,5.976225382525794,6.160316299074558,0,1,0,-9,10,0,2,-20.2341315212518,0,0,0,60,3,3,3,3,3,2019,2,1,10,0,97,0,15,1,1,3,0,.5959563300955026,.5959563300955026,0,0,0,0,0,0,0,1,1,0,0,0,111.7290455228399,1,50,48,5,1,0,0,13,2,0,492.5,0,0,0 +11214,13745,25046,25045,-9,-9,1,1,0,60,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,10,0,-2,-131.4008194747057,0,0,0,62,2,3,1,3,3,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,1,0,1,13,2,0,492.5,0,0,0 +11215,13746,25047,25048,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,4,8.040839580002288,7.954651128330355,0,2,0,-9,17,0,3,-175.2591442545804,0,0,0,43,2,4,1,3,3,2019,1,1,22,6,44,42,15,1,6,1,0,8.877149195171944,8.877149195171944,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.39,47.19,2,3,0,1,10,4,1,377.5,0,0,0 +11215,13746,25048,25047,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.321255252301627,8.527346888239236,0,2,0,-9,17,0,-3,168.2598670036118,0,0,1,46,3,4,1,3,3,2019,1,2,7,0,38,47,15,1,0,1,0,13.09838239710765,13.09838239710765,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.63,45.19,2,3,0,1,10,4,1,377.5,0,0,0 +11215,13746,25049,-9,25048,25047,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.236903796247,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,10,4,1,377.5,0,0,0 +11215,13746,25050,-9,25048,25047,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.0787281189706,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,10,4,1,377.5,0,0,0 +11216,13747,25051,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.309195522558607,8.352241594182923,0,3,0,0,0,-9,0,-940.2612433251315,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,35,37,15,1,2,-9,0,11.91021034503324,11.91021034503324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,8,4,0,438,0,0,0 +11217,13748,25052,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,2,0,6.989269511532492,6.631602013702558,3,0,0,0,-9,0,-952.5517174242333,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.621427710747514,0,0,52.83,19.3,4,1,0,0,4,2,1,492,0,0,0 +11218,13749,25053,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,3,8.643945501803143,8.496810710941874,0,3,0,0,0,-9,0,-923.1376739368493,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,36,41,15,1,0,-9,0,21.05393411725035,21.05393411725035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,4,0,0,8,5,1,179,0,0,0 +11219,13750,25054,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,3,0,7.648407871414167,7.653759190407426,3,0,0,0,-9,0,-987.0111480309851,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.853571742811897,7.385359524297246,0,0,50.41,26.29,6,1,0,0,2,3,1,987,0,0,0 +11220,13751,25055,-9,-9,-9,1,1,1,47,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-944.7253546822518,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.05,46.34,6,1,0,0,9,1,0,2874,0,0,0 +11221,13752,25056,25057,-9,-9,2,1,1,53,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,27,0,1,14.30895622295095,0,0,0,52,2,2,1,-9,-9,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.55,31.73,2,1,1,1,2,3,0,516,0,0,0 +11221,13752,25057,25056,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,8.08363006520927,8.103016037378723,0,1,0,-9,27,0,-1,-54.85377085245834,0,0,0,53,3,1,3,3,2,2019,2,2,10,0,30,30,15,1,0,3,0,11.93416167018906,11.93416167018906,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,6,1,0,0,2,3,0,516,0,0,0 +11221,13753,25058,-9,25057,25056,3,1,0,30,2,0,0,0,2,-9,2,1,0,3,7.17470084212411,7.480151391714381,0,3,0,0,0,-9,0,-1099.61273226068,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,40,37,15,1,1,-9,1,5.647847540698292,5.647847540698292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.85,39.09,5,1,0,0,2,3,0,613,0,0,0 +11221,13754,25059,-9,25057,25056,4,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.849866972177776,8.102233291898669,0,3,0,0,0,-9,0,-1060.738643736049,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,42,15,1,0,-9,1,7.920853679803772,7.920853679803772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.21,46.76,5,1,0,0,2,4,0,683,0,0,0 +11222,13755,25060,-9,-9,-9,1,1,0,35,3,0,1,0,2,-9,2,1,0,4,7.800958178417683,8.746555491058345,8.433048646039202,4,0,-9,0,-9,0,-1006.911929485628,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,2,16,0,15,1,2,-9,0,21.92920974105024,21.92920974105024,0,0,0,0,0,0,0,1,1,0,8.067949571432191,0,0,0,45.56,60.26,6,1,0,1,8,5,0,393.5,0,0,0 +11222,13755,25061,-9,25060,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,-9,0,-9,0,-1041.50628369455,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,8,5,0,393.5,0,0,0 +11223,13756,25062,25063,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.452767380304805,7.375424505793915,1,0,-9,10,0,0,-48.12369571865104,0,0,0,74,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.801297534978368,7.407153243405975,7.339715448445495,3,56.1,49.93,6,1,0,0,7,2,1,350.5,0,0,0 +11223,13756,25063,25062,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,4.631955630764565,4.666860162183109,1,0,-9,10,0,0,96.11127499088003,0,0,0,74,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.692233688989075,4.820996015033993,.0047148348061201,3,49.35,59.64,6,1,0,0,7,2,1,350.5,0,0,0 +11224,13757,25064,25065,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,5.676028932069905,5.565484998379394,1,0,-9,8,0,5,-58.31875216932786,0,0,0,64,3,1,3,3,3,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.560876495625409,0,2,35.8,38.84,4,1,0,0,4,2,0,278,0,0,0 +11224,13757,25065,25064,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,-5,-72.26537441989427,0,0,0,69,3,3,3,3,3,2019,4,1,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.01,16.87,1,1,0,0,4,2,0,278,0,0,0 +11225,13758,25066,25067,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,5,8.240592864790926,8.117853079302842,0,1,0,-9,2,0,-4,-38.7702907210306,0,0,1,34,1,2,1,3,2,2019,1,2,14,4,35,35,15,1,4,1,0,14.83233611162101,14.83233611162101,0,0,0,0,0,0,0,0,0,0,1.183359285420694,0,0,0,43.32,63.94,6,1,0,0,13,5,1,436,0,0,0 +11225,13758,25067,25066,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,2,8.421753877160084,8.20707201207097,0,1,0,-9,2,0,4,62.74461137059693,0,0,0,30,2,5,1,-9,-9,2019,1,1,6,0,38,37,15,1,0,1,0,12.89744656015915,12.89744656015915,0,0,0,0,0,0,0,0,0,0,1.354468808645062,0,0,0,54.37,44.27,6,1,0,0,13,5,1,436,0,0,0 +11226,13759,25068,25069,-9,-9,1,1,0,20,1,0,0,0,2,-9,2,1,0,4,7.372293132313814,6.742553609777625,0,1,0,1,1,-9,0,77.62575904839834,0,1,1,20,2,5,1,-9,-9,2019,1,2,9,0,21,0,15,1,0,1,0,7.124127127693033,7.124127127693033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,7,1,0,0,10,4,0,1123,0,0,0 +11226,13759,25069,25068,-9,-9,2,1,1,20,1,0,0,0,2,-9,2,1,0,5,8.412887903074786,8.660492550318105,0,1,0,-9,1,-9,0,-78.85591436095396,-9,1,0,20,2,4,1,-9,-9,2019,1,1,9,1,41,0,15,1,1,1,0,12.70974009228178,12.70974009228178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.34,48.82,6,1,0,0,10,4,0,1123,0,0,0 +11227,13760,25070,25071,-9,-9,2,1,1,60,1,0,1,0,2,-9,1,1,0,4,8.022629073464927,8.505957636515676,7.727796421229344,2,0,-9,31,0,4,-116.2105588445702,0,0,0,56,2,2,1,3,2,2019,1,1,7,0,30,38,15,1,0,1,0,8.853691802918421,8.853691802918421,0,0,0,0,0,0,0,0,0,0,0,7.714934448716155,0,0,54.2,57.49,5,1,0,0,9,5,1,408.5,0,0,0 +11227,13760,25071,25070,-9,-9,1,1,0,56,1,0,1,0,2,-9,2,1,0,2,9.15270718114496,9.268564977582482,0,2,0,-9,31,0,-4,-97.63560423922671,0,0,0,60,2,4,1,3,2,2019,1,2,12,0,37,37,15,1,0,1,0,30.09623178229445,30.09623178229445,0,0,0,0,0,0,0,0,0,0,0,0,6.952915364577313,3,55.77,42.25,4,1,0,0,9,5,1,408.5,0,0,0 +11227,13761,25072,-9,25071,25070,5,1,1,18,2,0,1,0,2,1,3,3,0,2,6.480800784912462,6.751061820891591,0,3,0,0,0,-9,0,-1056.34768161281,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,27,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.86,53.41,2,1,1,0,9,5,1,435,0,0,0 +11228,13762,25073,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,1,0,5.506785434795422,5.643970126763891,3,0,0,0,-9,0,-1000.818493250133,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,9,0,0,15,4,9,-9,0,0,0,1,81.36376409978796,0,0,4.369320690703239,16.19265435382155,778.5532454341504,1,1,0,4.407696858577466,5.54313929572282,0,0,17.89,38.3,3,1,0,0,9,2,1,7867,0,0,0 +11229,13763,25074,25075,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.848166414007071,8.629920723808532,0,1,0,-9,29,0,-14,-51.57408703547456,0,0,0,67,3,3,1,1,2,2019,1,2,10,0,64,87,15,1,0,1,0,11.00517788714303,11.00517788714303,0,0,0,0,0,0,0,1,1,0,5.375873030032739,0,1.477233320546046,3,51.11,50.75,6,1,0,0,5,4,1,573,0,0,0 +11229,13763,25075,25074,-9,-9,2,1,1,67,1,0,0,0,3,-9,1,1,0,3,0,0,0,1,0,-9,6,0,14,-107.1456577454695,0,0,0,53,2,3,1,-9,2,2019,1,1,10,0,0,35,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.521569724014537,0,0,0,53,47,5,1,0,0,5,4,1,573,0,0,0 +11229,13764,25076,-9,25074,25075,3,1,0,18,2,0,0,0,2,-9,2,1,0,4,7.210388186296147,7.735042582226249,0,3,0,0,0,-9,0,-1038.961035772977,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,35,0,15,1,2,-9,1,6.070123427632142,6.070123427632142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,5,3,1,273,0,0,0 +11230,13765,25077,-9,25079,25078,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.3825544180087,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,0,712,0,0,0 +11230,13765,25078,25079,-9,-9,3,1,1,32,1,1,1,0,2,-9,2,1,0,3,7.822415327366469,8.114103693884926,0,2,0,-9,3,0,7,-26.24539185301147,0,0,0,25,2,3,1,-9,-9,2019,1,1,7,0,39,39,15,1,0,1,0,9.343007593912429,9.343007593912429,0,0,0,0,0,0,0,1,1,0,.7425319467620977,0,0,0,52.4,52.91,4,1,0,0,9,4,0,712,0,0,0 +11230,13765,25079,25078,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,3,8.057297131384935,8.091987424596178,0,2,0,-9,3,0,-7,-12.99226175799711,0,1,1,32,2,3,1,-9,-9,2019,1,3,8,0,42,44,15,1,0,1,0,7.3782105917068,7.3782105917068,0,0,0,0,0,0,0,1,1,0,.2444896521898708,0,0,0,42.04,56.46,5,1,0,0,9,4,0,712,0,0,0 +11231,13766,25080,25081,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,57,0,-2,0,0,0,0,79,3,2,3,3,3,2019,4,1,21,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.332308841325252,0,0,0,26.82,19.15,2,1,0,0,12,1,1,308,0,0,0 +11231,13766,25081,25080,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,57,0,2,0,0,0,0,77,3,1,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.87830154234139,1,34.72,28.85,3,1,0,0,12,1,1,308,0,0,0 +11232,13767,25082,25083,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,2,8.84806855723378,8.937381815757306,0,1,0,-9,7,0,9,8.642243926511332,0,0,0,37,2,2,3,2,2,2019,2,2,9,0,39,43,15,1,0,3,0,19.50972342286789,19.50972342286789,0,0,0,0,0,0,0,0,0,0,3.963988892275825,0,0,0,38.69,57.02,3,1,0,0,6,4,1,790,0,0,0 +11232,13767,25083,25082,-9,-9,2,1,0,37,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,7,0,0,98.52518911832766,0,0,1,46,2,2,1,2,3,2019,3,1,25,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,30.34,32.09,2,1,1,1,6,4,1,790,0,0,0 +11233,13768,25084,-9,-9,-9,1,1,0,87,3,0,0,0,1,-9,4,3,0,2,0,7.611035126086077,7.711478752869584,3,0,0,0,-9,0,-1084.651720406145,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,2.174390913502967,0,0,0,0,49.41321224031998,1,1,0,4.748430639423986,7.953787562218582,0,0,39.91,22.6,5,1,0,0,11,3,1,456,0,0,0 +11234,13769,25085,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-999.5627023186288,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.9,51.29,5,4,1,1,6,1,0,1080,0,0,0 +11235,13770,25086,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,5,0,7.571848816790345,7.849626649612983,3,0,0,0,-9,0,-977.8014886111024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.005369654299654,7.66686440498874,0,0,57,54,7,1,0,0,2,3,0,411,0,0,0 +11236,13771,25087,25088,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,-1,0,0,0,0,71,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,26.80625542296534,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,1,11,1,0,279.5,0,0,0 +11236,13771,25088,25087,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,1,0,0,0,0,70,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.4216450617971,1,40.73,33.85,5,1,0,0,11,1,0,279.5,0,0,0 +11237,13772,25089,25090,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.532155307726882,8.423825855717691,0,1,0,-9,12,0,4,35.14483044226372,0,0,0,54,2,3,1,2,3,2019,1,2,21,9,50,40,15,1,9,1,0,11.90564329774877,11.90564329774877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.54,63.25,3,1,0,0,5,5,1,572.5,0,0,0 +11237,13772,25090,25089,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.70624715268872,8.933850727859186,0,1,0,-9,12,0,-4,-61.88996968674491,0,0,0,58,2,3,1,2,2,2019,1,1,7,0,60,64,15,1,0,1,0,10.5116136052167,10.5116136052167,0,0,0,0,0,0,0,0,0,0,8.001237627394447,0,0,0,50.39,52.7,6,1,0,0,5,5,1,572.5,0,0,0 +11238,13773,25091,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,3.901941371398717,4.640985863559437,3,0,0,0,-9,0,-900.2325448478634,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,.1246450328274107,0,0,0,10.71329701286292,0,1,1,0,0,4.4602224569183,0,0,53,44,6,1,0,0,11,1,0,1727,0,0,0 +11239,13774,25092,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,3,8.527804467636489,8.560808914598638,0,3,0,0,0,-9,0,-1007.850337114007,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,40,40,15,1,2,-9,0,15.00739147089933,15.00739147089933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.67,56.17,6,1,0,0,2,5,0,235,0,0,0 +11240,13775,25093,25096,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,2,9.315129120527182,9.009108385675516,0,2,0,-9,23,0,1,19.3530025532417,0,0,0,45,2,2,1,2,2,2019,1,2,9,0,40,41,15,1,0,1,0,26.41171352672673,26.41171352672673,0,0,0,0,0,0,0,1,1,0,.9640384389661537,0,0,0,57.57,49.69,6,1,0,0,2,5,1,795,0,0,0 +11240,13775,25094,-9,25096,25093,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-876.2176513695024,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,795,0,0,0 +11240,13775,25095,-9,25096,25093,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.003690085525,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,5,1,795,0,0,0 +11240,13775,25096,25093,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,2,8.842198588378679,8.880447182780758,0,2,0,-9,23,0,-1,8.201272534990984,0,0,0,46,1,2,1,2,2,2019,1,1,5,0,45,40,15,1,0,1,0,16.467368194109,16.467368194109,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.82,46.29,6,1,0,0,2,5,1,795,0,0,0 +11241,13776,25097,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,2,1,0,3,8.174676116027557,8.698015103188469,8.025696839833641,3,0,0,0,-9,0,-907.8324828958973,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,21,22,15,1,0,-9,0,24.41671869444923,24.41671869444923,0,0,0,0,0,0,0,0,0,0,5.678383519966022,8.117060573893399,0,0,54.96,53.17,6,1,0,0,1,5,1,664,0,0,0 +11242,13777,25098,25099,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,6.533124809733709,6.34485967347632,1,0,-9,52,0,-3,125.7220331739795,0,0,0,71,2,3,3,-9,2,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,1,30.47014260372591,33.00414079539296,0,0,28.25019831620216,263.3866719675785,1,1,0,1.757089140675211,6.502556545806637,3.617975420261266,3,39.44,21.16,4,1,0,0,2,2,1,550,0,0,0 +11242,13777,25099,25098,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.238294484169445,7.151442591053458,1,0,-9,51,0,3,6.598767943689265,0,0,0,68,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.446447980555168,7.145624924830975,28.5131708172904,2,58.32,50.22,4,1,0,0,2,2,1,550,0,0,0 +11243,13778,25100,-9,-9,-9,1,1,0,39,3,0,4,0,3,-9,6,3,0,2,0,5.7711449394533,5.089069257663379,4,0,0,0,-9,0,-1042.576688386394,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.007356901837054,0,27.41324646134828,3,24.39,46.06,3,1,0,0,5,2,0,638.5,0,0,0 +11243,13778,25101,-9,25100,-9,7,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1174.242249490802,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,0,638.5,0,0,0 +11243,13779,25102,-9,25100,-9,3,1,0,19,2,0,4,1,2,0,7,2,0,4,0,4.40179852900487,4.261311091451591,3,0,0,0,-9,0,-992.4319971677395,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.238091914712021,0,0,3,48.87,58.55,5,1,0,0,5,2,0,716,0,0,0 +11244,13780,25103,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,8,3,1,1,0,6.27943946945622,6.249539844487031,3,0,0,0,-9,0,-1009.00320155054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.740426585403148,0,3,14.3,39.93,1,1,0,0,4,2,1,227,0,0,0 +11245,13781,25104,-9,25107,25105,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.849260678124,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,10,5,1,719.75,0,0,0 +11245,13781,25105,25107,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,5,9.560750851846889,9.212671132509662,0,2,0,-9,7,0,0,65.91492432847255,0,0,0,41,1,5,1,-9,-9,2019,1,1,10,0,43,48,15,1,0,1,0,36.40252520947569,36.40252520947569,0,0,0,0,0,0,0,0,0,0,7.084844181131072,0,0,0,51.73,58.82,6,1,0,0,10,5,1,719.75,0,0,0 +11245,13781,25106,-9,25107,25105,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.672339840424,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,10,5,1,719.75,0,0,0 +11245,13781,25107,25105,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,8.450286027629261,8.349529237054277,0,2,0,-9,14,0,0,-51.69049884525366,0,0,1,41,1,5,1,1,1,2019,1,2,8,0,38,38,15,1,0,1,0,13.41783203600178,13.41783203600178,0,0,0,0,0,0,0,0,0,0,2.627246250127753,0,0,0,57.06,57.76,6,1,0,0,10,5,1,719.75,0,0,0 +11246,13782,25108,25109,-9,-9,1,1,0,51,1,1,2,0,2,-9,2,1,0,2,7.376067235286389,7.443304531899496,0,2,0,-9,22,0,0,-58.43156234699492,0,0,0,51,2,4,1,2,2,2019,1,2,12,0,52,24,15,1,0,1,0,3.10241293088041,3.10241293088041,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.64,38.41,3,1,0,0,7,3,1,500,0,0,0 +11246,13782,25109,25108,-9,-9,2,1,1,51,1,1,2,0,2,-9,2,1,0,4,8.475847126634267,8.085640360443694,0,2,0,-9,22,0,0,125.0528944962962,0,0,0,51,2,2,1,2,2,2019,1,1,9,0,40,46,15,1,1,1,0,8.765680442687101,8.765680442687101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,7,3,1,500,0,0,0 +11246,13783,25110,-9,25108,25109,3,1,1,26,2,1,2,0,1,1,2,1,0,4,7.696931087692201,7.912209900827547,0,3,0,0,0,-9,0,-874.9201423383665,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,45,0,15,1,0,-9,1,5.219312370629908,5.219312370629908,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,7,3,1,788,0,0,0 +11246,13784,25111,-9,25108,25109,4,1,0,24,2,1,2,0,2,-9,2,1,0,3,6.970534706766307,6.96247103586195,0,3,0,0,0,-9,0,-1019.627879296764,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,16,37,15,1,1,-9,1,7.186024155213905,7.186024155213905,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.56,52.14,6,1,0,0,7,2,1,342.5,0,0,0 +11246,13784,25112,-9,25111,-9,6,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1078.026914577608,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,1,342.5,0,0,0 +11246,13785,25113,-9,25108,25109,5,1,0,18,2,1,2,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-902.4946579680441,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.61,62.42,4,1,1,0,7,3,1,539,0,0,0 +11247,13786,25114,-9,25116,25118,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.181590754343,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,4,1,358,0,0,0 +11247,13786,25115,-9,25116,25118,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.824534529547,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,4,1,358,0,0,0 +11247,13786,25116,25118,-9,-9,2,1,0,42,1,0,3,0,1,-9,2,1,0,3,7.839261079182887,8.273268715718926,0,2,0,-9,6,0,0,67.85031411379028,0,0,1,42,1,4,1,2,3,2019,1,1,18,6,30,30,15,1,6,1,0,12.32920055088415,12.32920055088415,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,50.93,3,1,0,0,13,4,1,358,0,0,0 +11247,13786,25117,-9,25116,25118,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1158.780484319269,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,358,0,0,0 +11247,13786,25118,25116,-9,-9,1,1,1,42,1,0,3,0,1,-9,2,1,0,4,8.360159714761974,8.512289991907911,0,2,0,-9,6,0,0,-17.02223386298999,0,0,0,42,1,3,1,-9,-9,2019,1,2,13,1,45,40,15,1,1,1,0,12.26326050614944,12.26326050614944,0,0,0,0,0,0,0,1,1,0,0,0,10.29933131490982,3,38.69,61.75,4,1,0,0,13,4,1,358,0,0,0 +11248,13787,25119,-9,25121,25120,2,1,0,24,2,0,1,1,1,0,7,2,0,4,7.014758434418458,6.656764010092946,0,3,0,0,0,-9,0,-1084.906849724911,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,12,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,6,1,0,0,12,2,1,716,0,0,0 +11248,13788,25120,25121,-9,-9,3,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.24290995389312,8.644019205574059,0,2,0,-9,10,0,5,-123.4715144039028,0,0,0,48,2,1,3,2,2,2019,2,1,10,1,39,39,15,1,1,3,0,13.84352958527555,13.84352958527555,0,0,0,0,0,0,0,1,1,0,0,0,9.395101636003966,2,42.83,57.26,6,1,0,0,12,3,1,1554.333333333333,0,0,0 +11248,13788,25121,25120,-9,-9,1,1,0,48,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,10,0,-5,-52.26442088780338,0,0,0,53,2,4,1,3,2,2019,3,3,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.12090555497964,3,34.23,27.99,6,1,0,1,12,3,1,1554.333333333333,0,0,0 +11248,13788,25122,-9,25121,25120,4,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.4155434403007,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,1554.333333333333,0,0,0 +11249,13789,25123,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1053.335134778174,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.74,41.19,3,1,0,0,1,1,0,367,0,0,0 +11249,13790,25124,25125,-9,-9,2,1,0,40,1,0,0,0,1,-9,1,1,0,5,0,0,0,1,0,-9,1,-9,10,0,-9,0,1,30,2,3,1,-9,-9,2019,1,3,4,0,70,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.338249490187486,0,0,0,47.07,61.06,7,1,0,0,1,1,0,587.5,0,0,0 +11249,13790,25125,25124,-9,-9,3,1,1,30,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,1,-9,-10,0,-9,0,0,40,1,5,1,-9,-9,2019,1,2,13,1,98,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,52.68,5,1,0,0,1,1,0,587.5,0,0,0 +11250,13791,25126,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,2,0,6.418770711565092,6.394275248124924,3,0,0,0,-9,0,-989.2224547297906,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.708092884045195,6.504778651796836,0,0,53.57,40.49,5,1,0,0,2,2,1,126,0,0,0 +11251,13792,25127,25129,-9,-9,2,1,0,42,1,0,3,0,2,-9,2,1,0,4,8.164417741456237,7.724565581973097,0,2,0,-9,8,0,0,-46.11500245641514,0,0,1,42,2,4,1,-9,-9,2019,1,1,10,0,27,30,15,1,1,1,0,13.19985055365811,13.19985055365811,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,55,6,1,0,0,1,4,1,829,0,0,0 +11251,13792,25128,-9,25127,25129,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.4815811270814,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,4,1,829,0,0,0 +11251,13792,25129,25127,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,4,8.790463991910437,8.674015098049997,0,2,0,-9,19,0,0,62.8367562437755,0,0,0,42,2,4,1,3,3,2019,1,2,6,0,43,50,15,1,0,1,0,18.65809993987798,18.65809993987798,0,0,0,0,0,0,0,1,1,0,5.048221720064467,0,0,3,57.16,56.15,6,1,0,0,1,4,1,829,0,0,0 +11252,13793,25130,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,4,0,6.633750024158694,6.332351535254368,3,0,0,0,-9,0,-912.7925533195001,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.573028054461131,0,0,57.16,56.15,7,1,0,0,4,2,1,121,0,0,0 +11253,13794,25131,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,5.90984337921077,5.581775991340191,3,0,0,0,-9,0,-1004.09512537588,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.638441807209655,0,3,37.76,51.46,6,1,0,0,7,2,0,351,0,0,0 +11254,13795,25132,25135,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,3,9.328417242531167,9.038098327359258,0,2,0,-9,23,0,-7,-48.14990949290889,0,0,1,49,1,4,1,2,2,2019,1,2,10,0,42,49,15,1,0,1,0,26.0265953445899,26.0265953445899,0,0,0,0,0,0,0,0,0,0,.2429637026392729,0,0,0,45.49,58.84,6,1,0,0,8,5,1,743.75,0,0,0 +11254,13795,25133,-9,25132,25135,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1150.060270236239,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,5,1,743.75,0,0,0 +11254,13795,25134,-9,25132,25135,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.9867492963597,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,8,5,1,743.75,0,0,0 +11254,13795,25135,25132,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,4,8.594270658926359,8.555975624301636,0,2,0,-9,20,0,7,-69.95380610946643,0,0,0,42,1,3,1,-9,-9,2019,1,1,11,0,36,41,15,1,0,1,0,15.83075863280538,15.83075863280538,0,0,0,0,0,0,0,0,0,0,2.511818163249045,0,0,0,57.16,56.15,6,1,0,0,8,5,1,743.75,0,0,0 +11255,13796,25136,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,7.664599079135551,7.161921977458139,3,0,0,0,-9,0,-1023.223964689696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.749894952293603,7.138357835536402,0,0,27.72,21.3,1,1,0,0,2,3,1,995,0,0,0 +11256,13797,25137,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,4,0,5.044735568486081,5.30463392101894,3,0,0,0,-9,0,-999.9589752090968,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0582025618266774,5.45019646492951,0,0,55.19,54.26,5,1,0,0,9,2,0,3872,0,0,0 +11257,13798,25138,25139,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,3.52321250923185,3.671048914182322,1,0,-9,55,0,-13,-60.14573303029272,0,0,0,83,3,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.871902932906339,0,0,60.29,52.11,7,1,0,0,4,2,1,327.5,0,0,0 +11257,13798,25139,25138,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,7.042502421360536,6.624223527988551,1,0,-9,55,0,13,92.11146966510566,0,0,0,70,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.371995661735829,6.839164028913085,0,0,57.16,56.15,6,1,0,0,4,2,1,327.5,0,0,0 +11258,13799,25140,25141,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,7.742377665726807,8.229161657278315,0,1,0,-9,31,0,1,-15.1201226221181,0,0,0,54,1,4,1,1,2,2019,1,2,8,0,26,30,15,1,0,1,0,11.24672178957297,11.24672178957297,0,0,0,0,0,0,0,0,0,0,3.368285270752719,0,11.88066825041321,3,54.2,57.49,6,1,0,0,9,5,1,518.5,0,0,0 +11258,13799,25141,25140,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,4,9.870767627839518,9.585774722959108,0,1,0,-9,31,0,-1,75.27330004216256,0,0,0,55,1,4,1,2,1,2019,1,1,8,0,50,60,15,1,0,1,0,33.76659264990866,33.76659264990866,0,0,0,0,0,0,0,0,0,0,4.326725316983436,0,0,0,54.2,57.49,6,1,0,0,9,5,1,518.5,0,0,0 +11259,13800,25142,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,6.404618286301815,6.53995942895102,3,0,0,0,-9,0,-979.5058494825741,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.32105476989643,0,0,52,45,6,1,0,1,10,2,0,5207,0,0,0 +11260,13801,25143,-9,25145,25146,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-909.6231819354495,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,461,0,0,0 +11260,13801,25144,-9,25145,25146,4,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1047.784931880482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,3,0,0,6,3,1,461,0,0,0 +11260,13801,25145,25146,-9,-9,2,1,0,39,1,0,3,0,2,-9,2,1,0,3,7.452449720862862,7.295616987079993,0,2,0,-9,6,0,-3,-148.9889680195172,0,0,1,42,2,4,1,3,3,2019,1,1,11,2,23,22,15,1,2,1,0,8.48704491432121,8.48704491432121,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.13,54.36,6,3,0,0,6,3,1,461,0,0,0 +11260,13801,25146,25145,-9,-9,1,1,1,42,1,0,3,0,2,-9,2,1,0,4,8.236534245114818,8.327271231822666,0,2,0,-9,6,0,3,21.9610543293354,0,0,0,39,2,3,1,3,3,2019,1,2,8,0,39,35,15,1,0,1,0,13.96457944446291,13.96457944446291,0,0,0,0,0,0,0,1,1,0,5.56787575526682,0,0,0,45.26,56.19,5,3,0,0,6,3,1,461,0,0,0 +11260,13801,25147,-9,25145,25146,3,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.177097425141,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,3,1,461,0,0,0 +11261,13802,25148,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,6.588697124172417,6.12637951695364,3,0,0,0,-9,0,-1083.321309159111,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,7.812899257039444,0,0,0,1,1,0,0,6.566987060129295,0,0,53,45,6,1,0,0,11,2,1,252,0,0,0 +11262,13803,25149,25150,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,4.879287945263664,5.121450778768667,1,0,-9,52,0,-4,88.89865417217796,0,0,0,75,3,2,3,3,3,2019,4,2,25,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.181416394125025,0,0,33.91,44.25,5,1,0,0,4,2,1,702,0,0,0 +11262,13803,25150,25149,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,6.818472756963846,7.019376945686779,1,0,-9,52,0,4,-69.12172017897792,0,0,0,71,2,2,3,3,3,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.566756924734961,6.720048203729211,0,0,49.1,21.97,3,1,0,0,4,2,1,702,0,0,0 +11262,13804,25151,-9,-9,-9,4,1,1,24,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1012.976721664552,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,1,0,4,1,1,776,0,0,0 +11262,13804,25152,-9,-9,25151,3,1,1,13,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-919.8939883137155,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,1,1,776,0,0,0 +11263,13805,25153,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,5,8.414801679778874,8.433138893586918,0,3,0,0,0,-9,0,-954.2432039722639,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,35,35,15,1,3,-9,0,9.542234029052674,9.542234029052674,0,0,0,0,0,0,0,0,0,0,1.886839061358991,0,0,0,46.88,60.96,5,1,0,0,4,4,0,401,0,0,0 +11264,13806,25154,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,1,8.82614044889101,8.850921879725901,6.412765709254096,3,0,0,0,-9,0,-946.2612387515444,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,35,43,15,1,1,-9,0,21.73440152659688,21.73440152659688,0,0,0,0,0,0,0,0,0,0,0,6.495271456263642,0,0,54.7,19.79,6,1,0,0,5,5,1,112,0,0,0 +11264,13807,25155,-9,25154,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,7.826646213843163,7.412823025881314,0,3,0,0,0,-9,0,-979.6547676897815,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,34,43,15,1,0,-9,1,6.32077664504471,6.32077664504471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,6,2,0,0,5,3,1,403,0,0,0 +11265,13808,25156,25158,-9,-9,1,1,1,45,1,1,1,0,1,-9,2,1,0,3,9.212106454160578,8.747068394761373,0,2,0,-9,9,0,7,-196.5045578085406,0,0,0,38,1,5,1,2,1,2019,1,2,1,0,40,85,15,1,0,1,0,27.2284620358198,27.2284620358198,0,0,0,0,0,0,0,1,1,0,4.659975373624109,0,0,0,58.32,50.22,6,1,0,0,7,5,1,1003,0,0,0 +11265,13808,25157,-9,25158,25156,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.5489832569525,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,1003,0,0,0 +11265,13808,25158,25156,-9,-9,2,1,0,38,1,1,1,0,1,-9,2,1,0,5,7.445239382983037,7.311418636498354,0,2,0,-9,9,0,-7,-20.46428245914545,0,0,1,45,1,3,1,1,1,2019,1,1,5,0,17,15,15,1,0,1,0,9.456602801614926,9.456602801614926,0,0,0,0,0,0,0,1,1,0,2.621008967038223,0,0,0,58.05,54.52,7,1,0,0,7,5,1,1003,0,0,0 +11266,13809,25159,-9,-9,-9,1,1,0,42,3,0,2,0,2,-9,2,1,0,3,8.561185076783282,8.201100846707112,0,4,0,0,0,-9,0,-899.1368586591288,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,35,37,15,1,2,-9,0,12.49914503432835,12.49914503432835,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.53,47.94,3,1,0,0,6,3,1,518.3333333333334,0,0,0 +11266,13809,25160,-9,25159,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.819720923143,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,3,1,518.3333333333334,0,0,0 +11266,13809,25161,-9,25159,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1029.976258883542,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,3,1,518.3333333333334,0,0,0 +11267,13810,25162,25163,-9,-9,2,1,1,51,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,8,0,-18,0,0,0,0,69,3,1,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8249453120889,1,50.45,57.75,6,1,0,1,13,1,0,500,0,0,0 +11267,13810,25163,25162,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,18,0,0,0,0,51,3,4,3,3,3,2019,4,2,14,3,0,0,15,4,3,3,0,0,0,1,0,41.14248993582655,0,0,0,0,1,1,0,0,0,0,0,35.71,15.11,3,1,0,1,13,1,0,500,0,0,0 +11268,13811,25164,25165,-9,-9,2,1,0,47,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,16,0,-1,47.71978156532976,0,0,0,48,2,3,1,2,1,2019,3,1,30,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.87,21.25,3,1,0,0,4,4,1,544,0,0,0 +11268,13811,25165,25164,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,3,8.919851080915858,8.708908408520935,0,1,0,-9,16,0,1,-105.4470316703223,0,0,0,47,2,1,3,2,2,2019,2,2,10,0,75,63,15,1,0,3,0,11.09628454645271,11.09628454645271,0,0,0,0,0,0,0,1,1,0,0,0,64.09361871271862,1,46.56,50.26,5,1,0,0,4,4,1,544,0,0,0 +11269,13812,25166,25167,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,2,0,6.512407485108584,6.243856399939343,1,0,-9,8,0,1,19.72720367574396,0,0,0,80,3,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,2.744305895759527,0,0,0,0,1,1,0,6.589939945422363,6.211013423115377,0,0,57.98,29.33,6,1,0,0,11,2,1,506,0,0,0 +11269,13812,25167,25166,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,6.898498272007464,7.049965305159649,1,0,-9,8,0,-1,-139.6931191732237,0,0,0,81,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.689023738799659,6.845493761899908,0,0,63.49,41.12,7,1,0,0,11,2,1,506,0,0,0 +11270,13813,25168,25169,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.212949633856445,8.4744635973155,0,1,0,-9,33,0,-4,-8.818344341178104,0,0,0,61,1,3,1,2,3,2019,1,1,7,0,37,38,15,1,0,1,0,13.84578514375273,13.84578514375273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,7,1,0,0,13,5,1,557,0,0,0 +11270,13813,25169,25168,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,3,7.721153237918263,8.183077632955566,7.896884301838468,1,0,-9,33,0,4,-60.93198904110017,0,0,0,57,2,3,1,3,3,2019,1,2,10,0,35,0,15,1,1,1,0,7.76681627610818,7.76681627610818,0,0,0,0,0,0,0,0,0,0,5.872941201411453,7.618754930299677,0,0,51,48,5,1,0,0,13,5,1,557,0,0,0 +11271,13814,25170,25171,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,3,0,5.812575313596964,6.313197516291044,1,0,-9,51,0,-3,112.8486112882145,0,0,0,70,2,3,3,-9,-9,2019,4,1,9,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.005500365498123,5.943192682229149,0,0,57.24,41.16,6,1,0,0,5,2,1,1268.5,0,0,0 +11271,13814,25171,25170,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.031912298082429,6.895446813172402,1,0,-9,51,0,3,47.06427823272789,0,0,0,67,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.362945782128389,7.073172177885245,0,0,58.23,43.46,6,1,0,0,5,2,1,1268.5,0,0,0 +11272,13815,25172,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,5,8.06938667312509,8.142838578381582,0,3,0,-9,0,-9,0,-1050.288433820111,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,77,0,15,1,0,-9,0,5.606165762115936,5.606165762115936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,10,4,1,200,0,0,0 +11273,13816,25173,25174,25177,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,5,8.186375172884233,8.222739318890635,0,2,0,-9,2,0,2,143.4707286392331,0,0,0,50,1,5,1,3,-9,2019,1,1,6,0,36,0,15,1,0,1,0,14.22432680079832,14.22432680079832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,3,0,0,8,4,1,361.5,0,0,0 +11273,13816,25174,25173,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,5,8.177235933626875,7.909604553019274,0,2,0,-9,19,0,-2,-43.08076943619889,0,0,0,52,2,5,1,3,3,2019,1,2,6,0,37,41,15,1,0,1,0,11.68034615935191,11.68034615935191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,3,0,0,8,4,1,361.5,0,0,0 +11273,13817,25175,-9,25174,25173,3,1,0,20,2,0,1,1,2,0,7,2,0,4,6.536556239285562,6.631905909569251,0,3,0,0,0,-9,0,-1123.668207524597,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,3,0,0,8,2,1,456,0,0,0 +11273,13818,25176,-9,25174,25173,4,1,1,18,2,0,1,1,3,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-957.4258497612179,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,3,0,0,8,4,1,229,0,0,0 +11273,13819,25177,-9,-9,-9,5,1,0,77,3,0,1,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1078.424145120277,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.33,64.7,7,3,0,0,8,1,1,1842,0,0,0 +11274,13820,25178,25179,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,42,0,-2,-8.87230403722246,0,0,0,73,2,2,3,-9,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,10.44309456766548,0,0,0,0,1,1,0,.1823914728816865,0,0,0,55.32,19.61,5,1,0,0,7,2,1,664.5,0,0,0 +11274,13820,25179,25178,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,5.325868271685685,5.392713659908397,1,0,-9,42,0,2,-51.26256389573396,0,0,0,71,3,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.218049458893881,5.327843176545676,0,2,56.74,33.83,5,1,0,0,7,2,1,664.5,0,0,0 +11275,13821,25180,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,1,0,7.300094822176725,7.33359368874449,3,0,0,0,-9,0,-863.3564672971908,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.505215402849631,0,0,45.77,25.24,4,1,0,0,5,3,1,1547,0,0,0 +11276,13822,25181,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,3,0,8.008373005497331,8.022815593021065,3,0,0,0,-9,0,-936.5635768263257,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.854163291617372,8.114112296164448,0,0,45.57,53.5,6,1,0,0,6,3,1,117,0,0,0 +11277,13823,25182,25184,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.349794429315619,8.304497977271232,0,2,0,-9,12,0,0,-50.74188313984155,-9,0,1,38,1,4,1,3,3,2019,1,2,6,0,45,0,15,1,0,1,0,8.914510332977631,8.914510332977631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.42,46.51,6,3,0,0,5,4,0,913,0,0,0 +11277,13823,25183,-9,25182,25184,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.183259578378,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,5,4,0,913,0,0,0 +11277,13823,25184,25182,-9,-9,2,1,1,38,1,0,2,0,1,-9,2,1,0,4,7.965283549870785,7.893663904319221,0,2,0,-9,12,0,0,-25.59714678220864,0,0,0,38,1,4,1,2,2,2019,1,1,8,0,39,39,15,1,0,1,0,8.361135236561001,8.361135236561001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.81,53.28,6,3,0,0,5,4,0,913,0,0,0 +11278,13824,25185,25186,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,8.847578900009477,9.277115051360852,0,1,0,-9,30,0,1,-66.99007811037463,0,0,0,53,2,4,1,3,3,2019,1,1,7,0,42,42,15,1,0,1,0,19.34821396012524,19.34821396012524,0,0,0,0,0,0,0,0,0,0,5.185355757395414,0,0,0,58.32,50.22,6,1,0,0,6,5,1,2368,0,0,0 +11278,13824,25186,25185,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,6.499326883958621,6.401683972057158,0,1,0,-9,30,0,-1,73.79203667761608,0,0,0,54,1,3,1,2,2,2019,1,2,11,0,10,11,15,1,0,1,0,9.906945367377146,9.906945367377146,0,0,0,0,0,0,0,0,0,0,0,0,7.529549787134076,3,60.87,42.1,6,1,0,0,6,5,1,2368,0,0,0 +11279,13825,25187,25188,-9,-9,1,1,1,55,1,0,0,0,1,-9,1,1,0,3,8.812205580771424,9.203824482232831,7.447706911086739,1,0,-9,18,0,-6,32.4634532050237,0,0,0,61,1,2,3,2,1,2019,2,2,9,0,70,90,15,1,0,3,0,8.142983413213875,8.142983413213875,0,0,0,0,0,0,0,1,1,0,0,7.705245730214003,0,0,57.24,32.93,5,1,0,0,4,5,1,594,0,0,0 +11279,13825,25188,25187,-9,-9,2,1,0,61,1,0,0,0,1,-9,3,3,0,2,0,0,0,1,0,-9,20,0,6,-101.311820937383,0,0,0,55,1,3,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,33.83,6,1,1,0,4,5,1,594,0,0,0 +11279,13826,25189,-9,25188,25187,3,1,1,28,2,0,0,0,2,-9,1,1,0,4,6.642994854672136,6.782287733628277,0,3,0,0,0,-9,0,-1100.682442886149,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,60,60,15,1,0,-9,1,1.359867271898084,1.359867271898084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,5,1,0,0,4,2,1,518,0,0,0 +11280,13827,25190,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,3,7.789714262184448,8.219561716735809,5.432933657169237,3,0,0,0,-9,0,-860.8455153267141,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,42,45,15,1,0,-9,0,9.236938580267001,9.236938580267001,0,0,0,0,0,0,0,0,0,0,6.209228770252041,5.595794919908752,0,0,61.61,37.79,6,1,0,0,6,4,1,234,0,0,0 +11281,13828,25191,25192,-9,-9,1,1,0,50,1,0,0,0,3,-9,2,1,0,2,7.703795903695537,7.853150096784823,0,1,0,-9,3,0,6,-40.59651236884057,0,0,0,44,3,3,1,2,3,2019,1,2,24,8,35,0,15,1,8,1,0,7.269884148972712,7.269884148972712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.04,41.42,3,1,0,0,13,4,0,466,0,0,0 +11281,13828,25192,25191,-9,-9,2,1,1,44,1,0,0,0,3,-9,2,1,0,3,8.100211076382553,7.833608616483644,0,1,0,-9,3,0,-6,-95.50774254849358,0,0,0,50,3,2,1,-9,-9,2019,1,1,13,4,62,30,15,1,4,1,0,5.349474584648556,5.349474584648556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.97,53.06,6,1,0,0,13,4,0,466,0,0,0 +11282,13829,25193,25195,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.940174667008071,8.780407218910623,0,2,0,-9,6,0,0,82.42862010356232,0,0,0,50,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,14.68325387322058,14.68325387322058,0,0,0,0,0,0,0,1,1,0,2.562297512437855,0,0,0,52,55,5,1,0,0,10,4,1,466,0,0,0 +11282,13829,25194,-9,25195,25193,5,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-866.8254755231835,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,4,1,466,0,0,0 +11282,13829,25195,25193,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,4,7.156577364196509,7.437258857280474,0,2,0,-9,16,0,9,14.58495278007112,0,0,0,41,1,4,1,1,2,2019,1,2,6,0,20,20,15,1,0,1,0,7.998051972868653,7.998051972868653,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,10,4,1,466,0,0,0 +11282,13830,25196,-9,25195,25193,3,1,0,19,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1040.811819438416,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.72,55.84,6,1,0,0,10,1,1,64,0,0,0 +11283,13831,25197,25198,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,11,0,-4,-9.897334128904493,0,0,0,71,3,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,39.76,4,1,0,1,9,2,1,107.5,0,0,0 +11283,13831,25198,25197,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,6.399888579340575,6.341559956891406,1,0,-9,46,0,4,-104.9181162760919,0,0,0,67,3,3,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.339688618340018,6.710323908867487,0,0,46.84,58.02,6,1,0,1,9,2,1,107.5,0,0,0 +11284,13832,25199,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,1,1,0,2,8.432945254566038,8.247887552761918,0,4,0,0,0,-9,0,-1077.826303839081,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,20,16,15,1,1,-9,0,30.39765499412449,30.39765499412449,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.92,42.31,4,3,0,0,2,4,0,1217,0,0,0 +11284,13832,25200,-9,25199,-9,4,1,0,13,2,0,1,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1049.127043436616,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,3,0,0,2,4,0,1217,0,0,0 +11284,13833,25201,-9,25199,-9,2,1,0,25,2,0,1,0,1,-9,2,1,0,3,8.094452642786669,8.174926020154366,0,3,0,0,0,-9,0,-917.5900762957267,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,38,35,15,1,0,-9,1,9.604688904926817,9.604688904926817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,3,3,0,0,2,4,0,210,0,0,0 +11284,13834,25202,-9,25199,-9,3,1,1,21,2,0,1,0,1,-9,2,1,0,4,7.705195298997348,7.665514532873738,0,3,0,0,0,-9,0,-1029.735224049709,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,1,38,6,15,1,1,-9,1,6.806193011171043,6.806193011171043,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,56.11,7,3,0,0,2,3,0,197,0,0,0 +11285,13835,25203,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,3,8.24425159656928,8.160015149374479,0,3,0,0,0,-9,0,-930.8737697073155,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,47,50,15,1,1,-9,0,8.709523164791978,8.709523164791978,0,0,0,0,0,0,0,1,1,0,1.304492208743006,0,0,0,34.83,53.04,4,1,0,0,9,4,0,1322,0,0,0 +11285,13836,25204,-9,25203,-9,2,1,1,33,2,0,0,0,2,-9,2,1,0,4,8.14813041597211,8.491528471530886,0,3,0,0,0,-9,0,-1061.621334441992,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,38,40,15,1,1,-9,1,11.13165714699193,11.13165714699193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,9,4,0,451,0,0,0 +11286,13837,25205,25206,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,8.95135460973594,9.089767037863151,1,0,-9,51,0,2,-45.96463317798781,0,0,0,71,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.853407795651993,9.012106550783715,0,0,57.16,56.15,2,1,0,0,9,5,1,304,0,0,0 +11286,13837,25206,25205,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,-2,-20.05219568574438,0,0,0,73,2,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,9,5,1,304,0,0,0 +11287,13838,25207,25208,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,56,0,2,-74.10645135235161,0,0,0,73,2,3,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.304524159350221,3,59.29,49.68,2,1,0,0,6,3,1,897.5,0,0,0 +11287,13838,25208,25207,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,7.545906201733501,7.520465566276711,1,0,-9,56,0,-2,-13.03492214036417,0,0,0,75,2,4,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.582663198439657,0,0,41.18,41.95,6,1,0,0,6,3,1,897.5,0,0,0 +11288,13839,25209,25210,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,5,0,7.786746439665264,7.846792312341758,1,0,-9,7,0,15,-16.79959207868772,0,0,0,56,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.487355049717049,0,0,62.39,56.71,7,1,0,0,7,3,1,927.5,0,0,0 +11288,13839,25210,25209,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,4,0,6.285101419609882,5.987601548010958,1,0,-9,7,0,-15,50.80853762541169,0,0,0,71,1,5,3,3,3,2019,4,1,6,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.031529021471104,0,0,0,61.36,47.59,7,1,0,0,7,3,1,927.5,0,0,0 +11289,13840,25211,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-984.6289740205975,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,30,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,3,0,0,6,1,1,468,0,0,0 +11290,13841,25212,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,3,7.943279382161755,7.649693452181244,0,3,0,0,0,-9,0,-977.0629148581409,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,6,41,39,15,1,6,-9,0,6.677868677773692,6.677868677773692,0,0,0,0,0,0,0,1,1,0,0,0,34.77859886415852,3,42.17,43.91,4,3,0,1,7,3,0,288,0,0,0 +11291,13842,25213,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,0,7.216739786039987,7.51044270585466,3,0,0,0,-9,0,-945.9596187614346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,8,0,0,15,4,8,-9,0,0,0,1,3.92791281352043,0,17.47750009708785,75.84149715501476,0,90.82074997075291,1,1,0,1.303858471753429,7.301439395679081,0,0,40.39,15.94,1,4,0,0,12,3,1,339,0,0,0 +11291,13843,25214,-9,25213,-9,2,1,1,47,2,0,0,0,2,-9,2,1,0,4,7.766849294679256,7.626856960931745,0,3,0,0,0,-9,0,-946.1803091248331,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,38,15,1,0,-9,1,8.441209181069414,8.441209181069414,0,0,0,0,0,0,0,1,1,0,3.124599460668366,0,67.22223076810687,3,54.79,55.86,6,4,0,0,12,3,1,983,0,0,0 +11292,13844,25215,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,3,7.850109256273421,7.774066645678851,0,3,0,-9,0,-9,0,-1081.860381529169,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,40,0,15,1,2,-9,0,8.077164010188786,8.077164010188786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,36.96,2,5,0,1,12,4,0,465,0,0,0 +11292,13845,25216,-9,25215,-9,2,1,1,19,2,0,0,0,2,-9,2,1,0,3,7.384591611130701,7.224606387856291,0,3,0,-9,0,-9,0,-1011.033089900549,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,1,35,0,15,1,1,-9,1,4.566576170038898,4.566576170038898,0,0,0,0,0,0,0,1,1,0,0,0,2.458211786067638,3,50.12,49.78,6,1,0,1,12,3,0,1294,0,0,0 +11293,13846,25217,25218,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,3,7.613394534417433,8.00628911576586,0,2,0,-9,7,0,8,.966160906144568,0,0,0,43,2,3,1,2,3,2019,1,3,12,1,22,30,15,1,1,1,0,10.9583182215706,10.9583182215706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.94,47.11,6,1,0,0,11,4,1,225.5,0,0,0 +11293,13846,25218,25217,-9,-9,3,1,1,43,1,0,1,0,2,-9,2,1,0,3,8.610694497203276,8.733442820018746,0,2,0,-9,7,0,-8,142.3549942294168,-9,0,0,51,1,3,1,-9,-9,2019,1,1,11,0,40,0,15,1,0,1,0,21.34939736021866,21.34939736021866,0,0,0,0,0,0,0,0,0,0,6.002640948358913,0,0,0,40.98,52.59,5,1,0,0,11,4,1,225.5,0,0,0 +11294,13847,25219,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,6.84006147078978,6.431411838361896,0,3,0,0,0,-9,0,-1001.399733898391,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,26,23,15,1,2,-9,0,3.002364830603467,3.002364830603467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.74,56.23,5,1,0,1,2,2,0,386,0,0,0 +11295,13848,25220,-9,-9,-9,1,1,0,51,2,0,0,0,3,-9,2,1,0,3,7.308433270277537,7.538053551214715,0,3,0,0,0,-9,0,-966.9967554903892,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,25,25,15,1,11,-9,0,7.645504214360087,7.645504214360087,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.22,60.97,3,1,0,1,4,3,0,998,0,0,0 +11296,13849,25221,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,5.118520153318276,5.117716711611569,3,0,0,0,-9,0,-969.7380567561679,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,10.57581382850233,0,0,0,1,0,1,0,5.137196230080023,0,0,58.8,20.91,6,1,0,0,13,2,1,666,0,0,0 +11297,13850,25222,-9,-9,-9,1,1,1,55,2,0,0,0,3,-9,4,3,0,3,0,7.219994200710896,6.922021629874246,3,0,-9,0,-9,0,-998.7139050756067,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.334449163701414,6.972742065732473,0,0,55.11,47.63,6,1,0,0,9,2,1,304,0,0,0 +11297,13851,25223,-9,-9,-9,2,1,0,60,3,0,0,0,1,-9,4,3,0,3,0,8.046147086857466,7.971958514464115,3,0,-9,0,-9,0,-916.8917416080907,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.961432087326969,7.927543447068234,0,0,54.67,46.44,6,1,0,0,9,4,1,331,0,0,0 +11298,13852,25224,25225,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,9.118491631562087,9.528448178661275,0,1,0,-9,32,0,-2,-28.6341448636849,0,0,0,57,2,4,1,2,2,2019,1,2,6,0,42,40,15,1,0,1,0,28.58691351915262,28.58691351915262,0,0,0,0,0,0,0,0,0,0,4.54335350378205,0,0,0,54.79,55.86,5,1,0,0,9,5,1,807.5,0,0,0 +11298,13852,25225,25224,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.437277614059449,8.501060330771956,0,1,0,-9,32,0,2,45.80602428476554,0,0,0,55,2,4,1,2,3,2019,1,1,6,0,36,37,15,1,0,1,0,11.0262081222413,11.0262081222413,0,0,0,0,0,0,0,0,0,0,2.748366045768021,0,0,0,55.79,52.62,5,1,0,0,9,5,1,807.5,0,0,0 +11299,13853,25226,25227,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,62.900405234847,0,0,0,86,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,13,2,1,700,0,0,0 +11299,13853,25227,25226,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,3,0,6.309640742727163,5.929519498954504,1,0,-9,9,0,1,-150.4497482715686,0,0,0,85,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,11.87931404469602,0,0,0,0,128.780055428074,1,1,0,0,6.009949688182886,0,0,54,45,6,1,0,0,13,2,1,700,0,0,0 +11300,13854,25228,25229,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,3,7.911603847743411,8.134005407173071,0,1,0,-9,11,0,5,-75.93038148638111,0,0,0,49,2,3,1,3,3,2019,1,1,7,0,42,42,15,1,0,1,0,7.997087057784494,7.997087057784494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,5,1,0,0,5,5,0,1350.5,0,0,0 +11300,13854,25229,25228,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.432677546201402,8.391608951783471,0,1,0,-9,11,0,-5,-50.8245162338884,0,0,0,54,3,3,1,-9,2,2019,1,2,8,0,48,60,15,1,0,1,0,11.6507765580416,11.6507765580416,0,0,0,0,0,0,0,0,0,0,0,0,45.00226621947051,3,42.17,52.06,6,1,0,0,5,5,0,1350.5,0,0,0 +11301,13855,25230,25232,-9,-9,1,1,1,51,1,0,2,0,3,-9,2,1,0,3,8.323858305344512,8.067459839185252,0,2,0,-9,20,0,5,209.6566342966269,0,0,0,46,2,2,1,-9,-9,2019,1,2,6,0,44,43,15,1,0,1,0,10.14360162815367,10.14360162815367,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,10,4,1,2537.666666666667,0,0,0 +11301,13855,25231,-9,25232,25230,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.0065880022802,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,2537.666666666667,0,0,0 +11301,13855,25232,25230,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,2,7.686028768252902,7.564457517930162,0,2,0,-9,18,0,-5,-227.557042078414,0,0,0,51,3,3,1,-9,-9,2019,1,1,13,2,25,25,15,1,2,1,0,8.334689593804478,8.334689593804478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.61,37.95,4,1,0,0,10,4,1,2537.666666666667,0,0,0 +11302,13856,25233,-9,25235,25234,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1190.889156577909,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,9,5,1,904.5,0,0,0 +11302,13856,25234,25235,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,3,9.089022700249808,9.226714153357944,0,2,0,-9,14,0,2,-11.69351710904553,0,0,0,39,1,4,1,2,3,2019,1,1,7,0,45,47,15,1,0,1,0,32.17886385488624,32.17886385488624,0,0,0,0,0,0,0,0,0,0,7.130465357899126,0,0,0,58.32,50.22,6,1,0,0,9,5,1,904.5,0,0,0 +11302,13856,25235,25234,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,4,8.560253599426197,8.505371921844084,0,2,0,-9,14,0,-2,-58.18715258237953,0,0,1,41,1,3,1,2,2,2019,1,2,10,0,41,42,15,1,0,1,0,12.77432568644336,12.77432568644336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,5,1,0,0,9,5,1,904.5,0,0,0 +11302,13856,25236,-9,25235,25234,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.8131658404996,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,904.5,0,0,0 +11303,13857,25237,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,7.280036117246521,7.117616509188087,3,0,0,0,-9,0,-1155.854504684979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3708155192621906,7.316847753633636,0,0,58.18,28.96,2,1,0,0,11,3,0,157,0,0,0 +11304,13858,25238,-9,-9,-9,1,1,1,65,2,0,0,0,3,-9,4,3,0,3,0,6.409322929638338,6.038079472591937,3,0,-9,0,-9,0,-1015.105715646894,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.251599094919747,0,0,52,48,5,1,0,0,13,2,1,570,0,0,0 +11305,13859,25239,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,4,0,7.633291312135767,7.585934646663261,3,0,0,0,-9,0,-978.3082584501581,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.709413463709644,7.269384257995077,0,0,62.25,48.33,6,1,0,0,12,3,0,1340,0,0,0 +11306,13860,25240,25241,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,9.083806185485237,9.140342711940308,0,1,0,-9,35,0,0,49.31096160486456,0,0,0,53,1,4,1,2,2,2019,1,1,11,0,50,43,15,1,0,1,0,22.16901792955368,22.16901792955368,0,0,0,0,0,0,0,0,0,0,7.961553848913264,0,0,0,52.65,51.64,6,3,0,0,8,5,1,397.5,0,0,0 +11306,13860,25241,25240,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,4,8.711433437906919,8.879858879062562,0,1,0,-9,35,0,0,-92.67924009365895,0,0,0,53,1,3,1,-9,-9,2019,1,2,12,2,28,38,15,1,2,1,0,27.04365823318332,27.04365823318332,0,0,0,0,0,0,0,0,0,0,5.416068416211532,0,0,0,44.02,60.7,5,1,0,0,8,5,1,397.5,0,0,0 +11306,13861,25242,-9,25240,25241,3,1,1,19,2,0,0,0,2,1,2,1,0,5,7.445388347954995,7.289493181480452,0,3,0,0,0,-9,0,-997.9463782354104,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,30,0,15,1,0,-9,1,6.487174758597336,6.487174758597336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,2,0,0,8,3,1,865,0,0,0 +11307,13862,25243,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,3,0,5.423293926223668,5.27675232558834,3,0,0,0,-9,0,-1004.43479933539,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.548067467435124,0,0,0,0,5.757234886516191,5.552933498672391,0,0,44.96,50.74,3,1,0,1,11,2,1,2890,0,0,0 +11308,13863,25244,25245,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-5,0,0,0,0,72,3,1,3,3,3,2019,4,2,24,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.54711213940161,2,30.74,45.96,3,1,0,1,13,1,1,918,0,0,0 +11308,13863,25245,25244,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,6,0,5,0,0,0,0,67,3,2,3,3,3,2019,4,1,18,7,0,0,15,4,7,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,17.47,5,1,0,1,13,1,1,918,0,0,0 +11309,13864,25246,-9,25247,25248,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.702381243021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,9,5,1,1350.666666666667,0,0,0 +11309,13864,25247,25248,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,7.78898436947567,7.743039839565752,0,2,0,-9,20,0,-15,57.0032110400155,0,0,1,55,1,4,1,2,1,2019,1,2,20,9,12,11,15,1,9,1,0,20.56058812303566,20.56058812303566,0,0,0,0,0,0,0,0,0,0,5.171814989944107,0,0,0,40.86,54.38,6,1,0,0,9,5,1,1350.666666666667,0,0,0 +11309,13864,25248,25247,-9,-9,2,1,1,55,1,0,2,0,1,-9,2,1,0,4,9.56024952307247,9.84234409857252,0,2,0,-9,8,0,15,-3.825782187709394,0,0,0,40,1,4,1,-9,-9,2019,1,1,13,1,50,46,15,1,1,1,0,34.48021373865725,34.48021373865725,0,0,0,0,0,0,0,0,0,0,5.506127688076057,0,0,0,53.47,51.1,6,1,0,0,9,5,1,1350.666666666667,0,0,0 +11310,13865,25249,25250,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,3,8.021201015615208,7.870667267162725,0,1,0,-9,35,0,1,-47.94983754716039,0,0,0,59,3,4,1,3,3,2019,1,1,6,0,44,41,15,1,0,1,0,8.503960281710551,8.503960281710551,0,0,0,0,0,0,0,0,0,0,4.406349237945315,0,0,0,57.33,53.46,6,1,0,0,4,4,1,538.5,0,0,0 +11310,13865,25250,25249,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,4,8.300149219443695,8.114530801640676,0,1,0,-9,37,0,-1,23.65464506415963,0,0,0,60,3,3,1,3,3,2019,1,2,8,0,43,40,15,1,0,1,0,8.371823062519478,8.371823062519478,0,0,0,0,0,0,0,0,0,0,3.458253259814344,0,9.664745298278799,3,57.16,56.15,6,1,0,0,4,4,1,538.5,0,0,0 +11311,13866,25251,25252,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,5,8.982138141306937,9.147539221890105,0,1,0,-9,4,0,1,-44.95882820697364,0,0,0,29,1,4,1,2,2,2019,1,2,13,1,49,55,15,1,1,1,0,15.87640337819616,15.87640337819616,0,0,0,0,0,0,0,0,0,0,3.356016461756225,0,0,0,56.48,45.83,6,1,0,0,9,5,1,773.5,0,0,0 +11311,13866,25252,25251,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.138460155372304,8.299815276704141,0,1,0,-9,4,0,-1,47.34909154053155,0,1,1,30,1,5,1,-9,-9,2019,1,1,11,0,47,30,15,1,0,1,0,7.813940730418347,7.813940730418347,0,0,0,0,0,0,0,0,0,0,1.38081629488305,0,8.357797587641361,3,51.83,57.2,6,1,0,0,9,5,1,773.5,0,0,0 +11312,13867,25253,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,4,7.118246759393825,7.078394009455674,0,3,0,0,0,-9,0,-1023.257714761727,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,18,30,15,1,0,-9,0,7.304515425849493,7.304515425849493,0,0,0,0,0,0,0,1,0,1,0,0,19.26506694810766,3,49.5,48.57,6,1,0,0,12,2,0,834,0,0,0 +11312,13868,25254,-9,25253,-9,2,1,1,19,2,0,0,0,3,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-924.995145550791,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.33,53.46,6,1,0,0,12,1,0,559,0,0,0 +11313,13869,25255,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,2,0,7.158233761694263,7.05407033113917,3,0,0,0,-9,0,-932.1478596216069,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,1.995786978133051,0,0,.3062456558190574,0,25.67203453494141,1,1,0,0,6.998813387218376,0,0,59.75,34.95,6,1,0,0,4,2,1,978,0,0,0 +11314,13870,25256,-9,-9,-9,1,1,1,22,2,0,0,0,2,0,7,2,0,1,0,0,0,3,0,0,0,-9,0,-988.9548915163294,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,27.64,25.41,2,2,0,0,8,1,0,434,0,0,0 +11315,13871,25257,-9,-9,-9,1,1,1,37,3,0,0,0,1,-9,2,1,0,2,8.323983404267178,8.452095387919455,0,3,0,0,0,-9,0,-925.1230664044077,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,37,15,1,0,-9,0,16.35790522232343,16.35790522232343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.79,30.76,6,1,0,0,12,5,1,804,0,0,0 +11316,13872,25258,25259,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,3,7.794023535263648,7.919314483163364,0,1,0,-9,4,0,0,23.5541093308263,0,1,1,24,1,4,1,-9,-9,2019,1,2,9,1,15,0,15,1,1,1,0,16.90942414274055,16.90942414274055,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.84,50.44,5,1,0,0,13,4,1,304,0,0,0 +11316,13872,25259,25258,-9,-9,2,1,1,24,1,0,0,0,1,-9,2,1,0,4,8.222257092702476,8.056699261582212,0,1,0,-9,4,0,0,-63.07108699299118,0,1,0,24,1,3,1,-9,-9,2019,1,1,6,0,40,35,15,1,0,1,0,10.05187555449258,10.05187555449258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.32,47.78,6,1,0,0,13,4,1,304,0,0,0 +11317,13873,25260,25261,-9,-9,1,1,1,31,1,0,0,0,1,-9,1,1,0,3,8.810972559566546,8.423320963747024,0,1,0,-9,4,0,4,69.95002091120423,0,0,0,27,1,4,1,1,2,2019,1,2,8,0,46,47,15,1,0,1,0,13.47192934106267,13.47192934106267,0,0,0,0,0,0,0,0,0,0,.1584403789453866,0,0,0,51.19,49.37,6,1,0,0,5,5,1,669.5,0,0,0 +11317,13873,25261,25260,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.440370562516121,8.832442565986174,0,1,0,-9,4,0,-4,83.42116504957092,0,1,1,31,1,3,1,-9,-9,2019,1,1,6,0,50,52,15,1,0,1,0,14.92396644053757,14.92396644053757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,6,1,0,0,5,5,1,669.5,0,0,0 +11318,13874,25262,25263,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,7.033002213967291,6.87254970867179,1,0,-9,10,0,-3,109.3814883074301,0,0,0,80,2,3,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.437576096536262,7.217186925368932,0,1,49.98,55.33,6,1,0,0,11,3,1,766.5,0,0,0 +11318,13874,25263,25262,-9,-9,1,1,1,80,1,0,0,0,2,-9,2,1,0,3,6.383859598988772,6.503837565927489,5.335092998147935,1,0,-9,10,0,3,6.950822928411916,0,0,0,77,2,4,3,3,3,2019,2,2,12,0,4,10,15,1,0,4,0,14.81167795796944,14.81167795796944,1,0,2.272076881506647,0,0,0,0,1,1,0,6.210684644689325,5.251825766795636,0,0,37.75,36.33,6,1,0,0,11,3,1,766.5,0,0,0 +11319,13875,25264,25266,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,2,7.899742344269203,8.206184270936799,0,2,0,-9,20,0,0,90.3890678355729,0,0,0,49,1,3,1,2,3,2019,1,2,12,0,40,46,15,1,0,1,0,7.182887466887546,7.182887466887546,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.92,49.22,4,1,0,0,13,4,1,558.3333333333334,0,0,0 +11319,13875,25265,-9,25266,25264,4,1,1,17,2,0,1,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1133.379878200446,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,16,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.16,63.19,4,1,0,0,13,4,1,558.3333333333334,0,0,0 +11319,13875,25266,25264,-9,-9,2,1,0,49,1,0,1,0,1,-9,1,1,0,3,8.329874465807109,8.53911852022355,0,2,0,-9,18,0,0,-2.218894951308754,0,0,0,49,2,2,1,2,2,2019,1,1,10,0,34,40,15,1,0,1,0,17.99657070486103,17.99657070486103,0,0,0,0,0,0,0,1,1,0,.9225022737571282,0,0,0,56.5,48.33,6,1,0,0,13,4,1,558.3333333333334,0,0,0 +11319,13876,25267,-9,25266,25264,3,1,0,26,2,0,1,0,1,-9,2,1,0,5,8.249039182528085,7.956505182526938,0,3,0,0,0,-9,0,-1041.890312090551,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,1,42,0,15,1,1,-9,1,7.555002858141988,7.555002858141988,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,421,0,0,0 +11320,13877,25268,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,4,8.545252961975359,9.012020486982737,0,3,0,-9,0,0,0,-1100.006563172981,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,51,47,15,1,1,-9,0,14.959405282813,14.959405282813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,5,1,0,0,9,5,1,2155,0,0,0 +11321,13878,25269,25270,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,6.626497286144272,6.903210889375964,1,0,-9,10,0,-1,170.451028002678,0,0,0,68,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.665514316073621,0,0,55.53,51.55,6,1,0,0,10,2,1,688.5,0,0,0 +11321,13878,25270,25269,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.184506417005812,6.869882611758623,1,0,-9,10,0,1,-41.86369945657946,0,0,0,67,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.022303108798275,0,0,44.61,59.06,6,1,0,0,10,2,1,688.5,0,0,0 +11322,13879,25271,25272,-9,-9,1,1,0,29,1,1,1,0,1,-9,1,1,0,4,0,0,0,2,0,-9,4,0,0,59.67109988420506,0,1,1,29,2,4,1,1,2,2019,1,2,10,0,50,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,1088,0,0,0 +11322,13879,25272,25271,-9,-9,2,1,1,29,1,1,1,0,2,-9,1,1,0,4,9.178575294690338,9.055524895470034,0,2,0,-9,4,0,0,-44.01579860885451,-9,1,0,29,1,4,1,-9,-9,2019,1,1,10,0,70,0,15,1,1,1,0,16.57251353223704,16.57251353223704,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,5,0,0,4,5,1,1088,0,0,0 +11322,13879,25273,-9,25271,25272,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1118.403638414754,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,4,5,1,1088,0,0,0 +11323,13880,25274,25275,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,36,0,-3,-69.17854601088425,0,0,0,61,2,3,3,-9,-9,2019,4,2,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.242380183362725,0,0,0,53.23,42.31,6,1,0,0,10,5,1,345.5,0,0,0 +11323,13880,25275,25274,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,3,6.773531011625807,9.113132712649943,8.701498448620512,1,0,-9,9,0,3,-94.04131617132015,0,0,0,58,2,2,3,-9,-9,2019,4,1,6,0,2,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6.424813215116184,9.137777764417352,0,0,60.29,52.11,1,1,0,0,10,5,1,345.5,0,0,0 +11324,13881,25276,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,4,3,0,3,0,7.972139695011897,7.661329724626357,3,0,0,0,-9,0,-1096.985576130873,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,3,0,16,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.292661925403245,7.828203062558966,38.79564826715233,3,40.74,48.98,6,1,0,0,11,3,1,476,0,0,0 +11324,13881,25277,-9,25276,-9,3,1,1,17,2,0,0,0,2,1,2,3,0,4,7.088608673793732,6.929580626038653,0,3,0,0,0,-9,0,-1039.513856790946,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,35,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.143723115168783,0,0,0,48,59,5,1,0,0,11,3,1,476,0,0,0 +11324,13882,25278,-9,25276,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,2,7.570806324422858,7.64546375842531,0,3,0,-9,0,-9,0,-902.4647657251279,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,29,12,36,0,15,1,12,-9,1,7.472980076036364,7.472980076036364,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.94,54.41,3,1,0,0,11,3,1,858,0,0,0 +11325,13883,25279,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,3,0,7.954418423541151,7.85364378892709,3,0,0,0,-9,0,-1016.144928133612,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,3.44970160187489,0,0,0,0,51.36109040846376,1,1,0,4.658645729514181,8.084185496485519,0,0,62.52,30.61,6,1,0,0,8,3,1,974,0,0,0 +11326,13884,25280,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,4,0,6.412213236531093,6.603960882993801,3,0,0,0,-9,0,-852.4974390295005,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.598313883204555,0,0,41.3,45.64,6,1,0,0,4,2,1,1091,0,0,0 +11327,13885,25281,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-927.239591350944,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.45,24.42,4,4,0,1,8,1,0,2847,0,0,0 +11328,13886,25282,25283,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-2,19.77991586648338,0,0,0,73,3,2,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.59,46.65,6,1,0,0,9,2,1,897,0,0,0 +11328,13886,25283,25282,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,5.875161435143547,5.918828702643724,1,0,-9,52,0,2,-.1608839436110978,0,0,0,71,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0947468606939,5.958826884971723,0,0,60.93,36.01,6,1,0,0,9,2,1,897,0,0,0 +11329,13887,25284,25285,-9,-9,1,1,1,70,1,0,0,0,3,-9,2,1,0,3,7.717601739596995,7.87282481136519,5.908934453321749,1,0,-9,43,0,7,103.7613866747798,0,0,0,63,3,2,3,2,3,2019,2,2,7,0,45,45,15,1,0,3,0,6.170024106201891,6.170024106201891,1,0,0,0,0,0,0,1,1,0,0,5.852286293228933,0,1,57.33,53.46,6,1,0,0,9,3,1,1721,0,0,0 +11329,13887,25285,25284,-9,-9,2,1,0,63,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,9,0,-7,58.483288780671,-9,0,0,70,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.96,27.81,3,1,0,0,9,3,1,1721,0,0,0 +11330,13888,25286,-9,-9,-9,1,1,0,90,2,0,0,0,2,-9,4,3,0,3,0,6.968041446377927,6.706622842329625,3,0,0,0,-9,0,-927.1971143171862,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.534476835543709,6.955611138466665,0,0,62.52,30.61,7,1,0,0,6,2,1,313,0,0,0 +11331,13889,25287,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,5,0,6.91833471620967,6.975118140054322,3,0,0,0,-9,0,-1030.869019318385,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.682762091162206,6.912387797925482,0,0,57.65,56.13,6,1,0,0,9,2,1,726,0,0,0 +11332,13890,25288,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,2,1,0,4,7.331010673266225,7.624486342048867,0,3,0,0,0,-9,0,-1042.043257066721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,30,25,15,1,0,-9,0,6.876899120538466,6.876899120538466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.18,51.63,5,4,0,0,8,3,0,160,0,0,0 +11332,13891,25289,-9,25288,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,3,8.020673124385782,8.491334842694622,0,3,0,0,0,-9,0,-973.9904392642229,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,45,40,15,1,0,-9,1,9.311747039063276,9.311747039063276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.56,54.9,6,2,0,0,8,4,0,410,0,0,0 +11333,13892,25290,-9,25292,25293,3,1,1,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1078.076483445652,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,10,5,1,687.5,0,0,0 +11333,13892,25291,-9,25292,25293,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.342556636239,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,687.5,0,0,0 +11333,13892,25292,25293,-9,-9,1,1,0,52,1,0,2,0,2,-9,2,1,0,4,8.808587035466022,8.315346998572521,0,2,0,-9,23,0,7,-117.1971988309664,0,0,0,45,1,4,1,2,2,2019,1,2,11,0,41,43,15,1,0,1,0,23.23695104092338,23.23695104092338,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,1,10,5,1,687.5,0,0,0 +11333,13892,25293,25292,-9,-9,2,1,1,45,1,0,2,0,1,-9,1,1,0,4,8.81944964342296,8.582751019695239,0,2,0,-9,7,0,-7,59.11809104323576,0,0,0,52,2,4,1,-9,-9,2019,1,1,13,3,60,60,15,1,3,1,0,11.2842985237745,11.2842985237745,0,0,0,0,0,0,0,1,1,0,2.98337018236586,0,0,0,51.77,58.57,6,1,0,0,10,5,1,687.5,0,0,0 +11334,13893,25294,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,7.431190006782638,7.268715313184565,3,0,0,0,-9,0,-928.8939618142664,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.096429772453768,7.015025501763541,3.276501992657516,3,51.64,50.48,6,1,0,0,7,3,1,270,0,0,0 +11335,13894,25295,25296,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,4,8.879724968239953,9.162328816427403,0,2,0,-9,30,0,2,-4.361591611447599,0,0,0,50,2,4,1,2,2,2019,1,1,6,0,37,37,15,1,0,1,0,22.78444216512199,22.78444216512199,0,0,0,0,0,0,0,0,0,0,.5334285612144649,0,0,0,60.13,49.27,7,1,0,0,4,5,1,584.5,0,0,0 +11335,13894,25296,25295,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,4,8.21901584603037,8.110356658264124,0,2,0,-9,28,0,-2,187.3032339039586,0,0,0,52,1,4,1,2,2,2019,1,2,10,0,19,19,15,1,1,1,0,19.79898358823514,19.79898358823514,0,0,0,0,0,0,0,0,0,0,7.180659115351028,0,0,0,51,54,6,1,0,0,4,5,1,584.5,0,0,0 +11336,13895,25297,25298,-9,-9,2,1,0,28,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,8,0,-2,0,0,1,1,30,3,2,3,-9,-9,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,19.15,2,1,0,0,7,2,0,721,0,0,0 +11336,13895,25298,25297,-9,-9,1,1,1,30,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,8,0,2,0,0,0,0,28,2,1,3,-9,-9,2019,4,2,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,79.08689855454989,2,43.95,53.15,4,1,0,0,7,2,0,721,0,0,0 +11336,13895,25299,-9,25297,25298,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.943992681596,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,2,0,721,0,0,0 +11337,13896,25300,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,3,8.438076560550531,8.565875758711705,0,3,0,0,0,-9,0,-876.7086331293585,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,45,47,15,1,9,-9,0,10.99146862143268,10.99146862143268,0,0,0,0,0,0,0,0,0,0,1.971956944712948,0,0,0,43.78,39.62,6,1,0,0,12,5,1,1173,0,0,0 +11338,13897,25301,25302,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,4,9.17219179353549,9.294839397046724,0,1,0,-9,6,0,-2,30.93000358181061,0,0,1,32,2,5,1,1,1,2019,1,1,9,0,35,35,15,1,0,1,0,36.08519073826092,36.08519073826092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,3,0,0,7,5,1,489,0,0,0 +11338,13897,25302,25301,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,5,9.110800128291528,9.200664069174479,0,1,0,-9,6,0,2,-78.66538901374494,0,0,0,30,1,4,1,-9,-9,2019,1,2,6,0,43,50,15,1,0,1,0,25.77472675562536,25.77472675562536,0,0,0,0,0,0,0,0,0,0,.9840462300605537,0,0,0,60.02,56.42,7,1,0,0,7,5,1,489,0,0,0 +11339,13898,25303,25304,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,6.501417883612826,6.82689212504969,1,0,-9,43,0,-2,70.06916503454717,0,0,0,68,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.605303739982215,6.584105826567665,0,0,58.15,52.91,6,1,0,0,9,5,1,1111,0,0,0 +11339,13898,25304,25303,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,4.76187760981198,8.643015087093287,8.596131115106568,1,0,-9,43,0,2,-88.59594655750888,0,0,0,66,2,4,3,3,3,2019,4,1,11,1,1,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.587373695267368,8.822287102857398,0,0,49.41,58.28,6,1,0,0,9,5,1,1111,0,0,0 +11340,13899,25305,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,2,7.957324537744805,8.524815503882605,5.060069253357352,3,0,0,0,-9,0,-979.7547066244585,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,58,50,15,1,1,-9,0,8.852153057293698,8.852153057293698,0,0,0,0,0,0,0,1,1,0,5.824454624422488,0,0,0,51.65,52.38,4,1,0,0,9,5,1,1121,0,0,0 +11340,13900,25306,-9,25305,-9,2,1,1,22,2,0,0,0,1,1,2,1,0,3,7.300086570606984,7.017640656463005,0,3,0,0,0,-9,0,-1052.040465474658,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,38,0,15,1,0,-9,1,3.547535592078456,3.547535592078456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,0,0,9,2,1,789,0,0,0 +11340,13901,25307,-9,25305,-9,3,1,0,18,2,0,0,0,2,1,2,1,0,3,6.787993926928772,6.984565122742692,2.745434197526516,3,0,0,0,-9,0,-913.2853646250885,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,22,0,15,1,0,-9,1,5.579615741885492,5.579615741885492,0,0,0,0,0,0,0,1,1,0,2.899321561066668,0,0,0,41.66,58.18,4,1,0,0,9,2,1,255,0,0,0 +11341,13902,25308,25309,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,8.665407055146268,8.659728345687467,1,0,-9,38,0,9,10.63812859043358,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.195461991048642,0,0,62.81,36.34,6,1,0,0,8,5,1,807.5,0,0,0 +11341,13902,25309,25308,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,7.453258052216797,8.310387477190956,7.947975086233139,1,0,-9,40,0,0,17.27740833555943,0,0,0,76,1,2,3,2,3,2019,4,1,10,0,6,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.737559346827081,7.969197283702421,0,0,57.73,54.53,6,1,0,0,8,5,1,807.5,0,0,0 +11342,13903,25310,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,5,0,-4,-36.40682818090054,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,26,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.23,25.07,3,1,0,1,4,2,0,749,0,0,0 +11342,13904,25311,-9,-9,-9,2,1,0,61,2,0,0,0,2,-9,2,1,0,4,7.365674950050096,6.934154416618795,0,1,0,-9,5,0,4,29.16841023761405,-9,0,0,-9,-9,-9,-9,-9,-9,2019,2,1,12,0,23,0,15,1,0,-9,0,6.994206273896132,6.994206273896132,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.24,42.39,6,1,0,0,4,2,0,570,0,0,0 +11343,13905,25312,25313,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,4,9.308786290936474,8.912350653538768,0,1,0,-9,3,0,2,-44.86450292541749,-9,1,0,27,1,4,3,2,2,2019,2,2,7,0,38,0,15,1,0,3,0,19.76468611893231,19.76468611893231,0,0,0,0,0,0,0,0,0,0,1.041951988261151,0,0,0,57.16,56.15,6,1,0,0,8,5,0,634,0,0,0 +11343,13905,25313,25312,-9,-9,2,1,0,27,1,0,0,0,1,-9,3,3,0,4,8.573518645827976,8.520029782298884,0,1,0,-9,3,0,-2,116.4771707246173,0,1,1,29,1,4,1,-9,-9,2019,3,1,18,6,43,40,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,6,1,1,0,8,5,0,634,0,0,0 +11344,13906,25314,25315,-9,-9,1,1,0,66,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,9,0,-5,-79.92361008684523,0,0,0,71,3,2,3,3,3,2019,2,2,20,9,70,70,15,1,9,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.517869788670644,0,28.72504939887281,1,53.87,40.03,5,1,0,0,10,2,1,413,0,0,0 +11344,13906,25315,25314,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,6.413467810753026,6.093627492575753,1,0,-9,9,0,5,-112.4738319822871,0,0,0,66,2,3,1,-9,-9,2019,3,1,19,7,0,0,15,4,7,1,0,0,0,1,0,23.52536387690879,0,0,0,0,1,1,0,6.527732750190808,5.82414864231698,0,0,41.52,20.45,4,1,0,0,10,2,1,413,0,0,0 +11345,13907,25316,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,5,8.486411249655383,8.416964115540951,0,3,0,0,0,-9,0,-951.76454009837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,35,35,15,1,0,-9,0,12.29383654645885,12.29383654645885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.59,56.01,6,1,0,0,12,4,1,933,0,0,0 +11346,13908,25317,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,4,6.757753755256326,6.820729881603698,0,4,0,0,0,-9,0,-986.0553006348786,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,27,25,15,1,7,-9,0,4.433023381911743,4.433023381911743,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.92,59.72,2,1,0,0,4,2,0,628,0,0,0 +11346,13908,25318,-9,25317,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-886.9043634209745,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,0,628,0,0,0 +11347,13909,25319,25320,-9,-9,1,1,0,50,1,0,1,0,2,-9,1,1,0,5,0,0,0,2,0,-9,25,0,-5,-10.66025972683671,0,0,0,55,1,5,1,2,1,2019,1,2,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.891605974228559,0,0,0,57.06,57.76,6,3,0,0,9,5,1,1069,0,0,0 +11347,13909,25320,25319,-9,-9,2,1,1,55,1,0,1,0,1,-9,2,1,0,5,9.220571482055652,9.3622820009638,0,2,0,-9,25,0,5,-133.0414118076267,0,0,0,50,2,5,1,2,2,2019,1,1,16,5,44,40,15,1,5,1,0,30.84878186897224,30.84878186897224,0,0,0,0,0,0,0,0,0,0,3.521678929286205,0,0,0,38.24,63.73,5,3,0,0,9,5,1,1069,0,0,0 +11347,13910,25321,-9,25319,25320,3,1,0,20,2,0,1,1,2,0,7,2,0,5,4.617898975209269,4.835248130121138,0,3,0,0,0,-9,0,-996.2379856381019,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.1,63.96,5,3,0,0,9,2,1,774,0,0,0 +11347,13911,25322,-9,25319,25320,4,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-962.4318767031488,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,21,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.7,59.17,5,3,0,0,9,5,1,601,0,0,0 +11348,13912,25323,-9,-9,-9,1,1,0,27,2,1,1,0,2,-9,2,1,0,3,7.675048464871837,7.4643346319599,0,4,0,0,0,-9,0,-1008.415449549188,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,35,38,15,1,5,-9,0,7.289398970892575,7.289398970892575,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.05,54.77,4,1,0,1,12,3,0,2194,0,0,0 +11348,13912,25324,-9,25323,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-936.691777020032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,2194,0,0,0 +11349,13913,25325,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,4.678811578611408,4.769000131128051,3,0,0,0,-9,0,-948.463450122017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,1,0,0,13.17395584219471,0,0,0,1,1,0,0,4.810202521974803,0,0,31.94,44.32,5,1,0,0,7,2,1,548,0,0,0 +11349,13914,25326,-9,25325,-9,2,1,0,33,2,0,0,0,2,-9,2,1,0,4,8.051412353846214,7.931440553465742,0,3,0,0,0,-9,0,-985.4462251702747,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,35,35,15,1,0,-9,1,10.34334930358947,10.34334930358947,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,1,1333,0,0,0 +11350,13915,25327,25328,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,5,7.519575407101805,7.492496481252019,0,1,0,-9,14,0,-7,97.59346640746506,0,0,0,58,2,3,1,2,2,2019,1,1,10,0,42,38,15,1,0,1,0,6.018344144402113,6.018344144402113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,5,1,0,0,4,4,0,402,0,0,0 +11350,13915,25328,25327,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,7.754654291442597,7.591110165550278,0,1,0,-9,13,0,7,54.64005670435539,0,0,0,51,2,5,1,3,2,2019,1,2,9,0,38,38,15,1,0,1,0,7.118443917423158,7.118443917423158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,48.33,5,1,0,0,4,4,0,402,0,0,0 +11351,13916,25329,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,1,1,0,4,8.648446393825729,8.650540512182907,0,3,0,0,0,-9,0,-906.2007911750271,-9,0,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,35,0,15,1,0,-9,0,17.3476786277478,17.3476786277478,0,0,0,0,0,0,0,0,0,0,4.612286010585761,0,0,0,49.41,58.28,6,1,0,0,8,5,1,534,0,0,0 +11352,13917,25330,-9,25331,25332,3,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-870.8103558264121,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.681206732707659,0,0,0,54.69,57.47,7,1,0,0,12,4,1,539,0,0,0 +11352,13917,25331,25332,-9,-9,2,1,0,52,1,0,2,0,2,-9,2,1,0,3,7.92224126135025,7.755677702419467,0,2,0,-9,7,0,-4,56.61349151378937,0,0,0,56,2,3,1,2,2,2019,1,1,12,0,37,38,15,1,0,1,0,9.349689553256345,9.349689553256345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.01,39.77,5,1,0,0,12,4,1,539,0,0,0 +11352,13917,25332,25331,-9,-9,1,1,1,56,1,0,2,0,2,-9,2,1,0,3,8.218580157771191,8.207566332953483,0,2,0,-9,7,0,4,3.559727258711427,0,0,0,52,2,3,1,-9,3,2019,1,2,10,3,35,35,15,1,3,1,0,11.75800453414576,11.75800453414576,0,0,0,0,0,0,0,1,1,0,1.955844769686825,0,0,0,58.32,50.22,6,1,0,0,12,4,1,539,0,0,0 +11352,13917,25333,-9,25331,25332,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.8469504770641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,539,0,0,0 +11353,13918,25334,-9,-9,-9,1,1,1,72,2,0,0,0,3,-9,4,3,0,3,0,6.503362681281588,6.726688432062848,3,0,0,0,-9,0,-1024.79038708131,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,8.949723802773144,0,0,0,1,1,0,0,7.002426401545573,0,0,53.39,44.47,6,1,0,0,5,2,0,2238,0,0,0 +11354,13919,25335,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,6.623891795498642,7.124965858183487,3,0,0,0,-9,0,-999.8295731311587,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.01077140639511,6.576464846784969,.4345169863150367,3,56.92,49.39,6,1,0,0,5,2,1,668,0,0,0 +11355,13920,25336,-9,25339,25338,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.623855043043,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,9,3,0,1447,0,0,0 +11355,13920,25337,-9,25339,25338,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.1334031488198,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,9,3,0,1447,0,0,0 +11355,13920,25338,25339,-9,-9,1,1,1,56,1,0,2,0,1,-9,2,1,0,3,8.135417685711484,8.095350595925298,0,2,0,-9,11,0,20,96.77437028590921,0,0,0,36,3,2,3,3,2,2019,2,2,4,0,7,38,15,1,0,3,0,52.58964938622635,52.58964938622635,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,5,4,0,0,9,3,0,1447,0,0,0 +11355,13920,25339,25338,-9,-9,2,1,0,36,1,0,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,7,0,-20,-57.48938826868178,0,0,1,56,1,3,1,3,2,2019,3,1,14,3,0,14,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.34,28.84,3,4,0,1,9,3,0,1447,0,0,0 +11356,13921,25340,25341,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,3.800017845021158,3.941434292985846,1,0,-9,37,0,6,-26.97325114722724,0,0,0,63,2,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,1.886837856637885,0,0,0,0,1,1,0,3.399464268993113,3.355221303859185,3.513136805012091,3,69.48999999999999,15.42,5,1,0,0,8,4,0,449,0,0,0 +11356,13921,25341,25340,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,3,8.479611623601475,8.701345989839098,7.601719345787397,1,0,-9,37,0,-6,17.02237649408061,0,0,0,69,3,2,3,3,3,2019,2,1,6,0,25,0,15,1,0,4,0,21.3084068446572,21.3084068446572,0,0,0,0,0,0,0,1,1,0,4.756027431933588,8.223071772469773,14.69260448997225,3,57.93,46.29,6,1,0,0,8,4,0,449,0,0,0 +11357,13922,25342,25343,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,2,0,11,63.44921979040961,0,0,0,59,2,3,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,7,1,0,0,13,2,1,1279,0,0,0 +11357,13922,25343,25342,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,6.94979303336018,7.599676019801421,0,1,0,-9,2,0,-11,100.6753261372379,0,0,0,70,3,3,3,3,3,2019,2,2,15,3,15,20,15,1,3,4,0,10.45539801314248,10.45539801314248,0,0,0,0,0,0,0,1,1,0,7.827259538504629,0,0,0,49.59,46.23,3,1,0,1,13,2,1,1279,0,0,0 +11358,13923,25344,25345,-9,-9,1,1,0,63,1,0,0,0,2,-9,8,3,1,2,0,5.447532506500942,5.975470556037235,1,0,-9,2,0,1,79.03303572720601,0,0,0,62,2,3,1,3,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.870740649576954,0,0,43.69,21.98,1,1,0,0,12,2,1,1019,0,0,0 +11358,13923,25345,25344,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,0,6.456209152741547,6.118782514724112,1,0,-9,2,0,-1,-53.0503729794035,0,0,0,63,2,2,3,-9,-9,2019,2,1,6,0,0,45,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.394491944923956,6.304869679985872,3.785155055213762,1,64.23999999999999,44.83,5,1,0,0,12,2,1,1019,0,0,0 +11359,13924,25346,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,2,0,7.903979784636945,7.520996928641635,3,0,-9,0,1,0,-901.3121044937686,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.891702497809011,0,0,54.07,36.17,6,1,0,0,10,3,1,253,0,0,0 +11360,13925,25347,25350,-9,-9,1,1,0,49,1,0,2,0,1,-9,1,1,0,4,8.396019449074137,8.114067662842832,0,2,0,-9,9,0,0,-59.76870959851998,0,0,0,49,1,4,1,2,2,2019,1,2,11,2,20,22,15,1,2,1,0,18.91148189543582,18.91148189543582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,52.07,6,1,0,0,8,5,1,331.25,0,0,0 +11360,13925,25348,-9,25347,25350,4,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1009.836136098786,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,8,5,1,331.25,0,0,0 +11360,13925,25349,-9,25347,25350,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-896.455666943388,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,8,5,1,331.25,0,0,0 +11360,13925,25350,25347,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,4,9.199795912947186,9.011651698465025,0,2,0,-9,9,0,0,-78.81201044476742,0,0,0,49,1,4,1,1,1,2019,1,1,9,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.296318667971717,0,0,0,52,55,6,1,0,0,8,5,1,331.25,0,0,0 +11361,13926,25351,-9,25352,-9,2,1,0,17,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1015.149948850387,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,13,5,1,334,0,0,0 +11361,13926,25352,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,3,9.029321343285652,8.877689285031531,0,3,0,0,0,-9,0,-1126.222717583318,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,40,44,15,1,2,-9,0,20.70528189336065,20.70528189336065,0,0,0,0,0,0,0,1,1,0,2.779109062591936,0,0,0,41.79,57.73,4,1,0,0,13,5,1,334,0,0,0 +11362,13927,25353,25354,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,8.04168717190459,7.862325720903511,1,0,-9,53,0,1,-62.8764108926797,0,0,0,74,2,3,3,3,1,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.224434751062,7.818320953809725,0,0,54,46,5,1,0,0,1,3,1,1035,0,0,0 +11362,13927,25354,25353,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,53,0,-1,-15.98137873871756,0,0,0,75,2,3,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,5,1,0,0,1,3,1,1035,0,0,0 +11363,13928,25355,25356,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.306448476212291,7.204404526464584,1,0,-9,6,0,-2,-50.85213809202155,0,0,0,69,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.075908226977272,0,0,58.9,45.74,6,1,0,0,2,3,1,548.5,0,0,0 +11363,13928,25356,25355,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.980307146819762,7.98270901177713,1,0,-9,6,0,2,-15.00292647262096,0,0,0,67,2,4,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.54914424457802,7.938389973495621,0,0,50.06,55.28,6,1,0,0,2,3,1,548.5,0,0,0 +11364,13929,25357,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,2,6.498888091587918,6.402520844349777,0,3,0,0,0,-9,0,-1044.110551991143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,10,43,15,1,0,-9,0,7.269010438401843,7.269010438401843,0,0,0,0,0,0,0,1,0,1,0,0,5.606562632426058,3,49.87,50.46,3,1,0,0,2,2,1,573,0,0,0 +11365,13930,25358,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,4,8.404914126366183,8.502447489173694,0,3,0,0,0,-9,0,-1049.833823714263,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,40,42,15,1,5,-9,0,14.74699803017035,14.74699803017035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.62,61.03,5,1,0,0,7,5,0,3009,0,0,0 +11366,13931,25359,25360,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,3,8.174438351394087,8.200962945847808,0,1,0,-9,9,0,3,-146.7556401488271,0,0,0,64,3,3,1,-9,-9,2019,1,1,10,0,42,27,15,1,0,1,0,10.95233763154923,10.95233763154923,0,0,0,0,0,0,0,0,0,0,3.125620481487128,0,0,0,54.48,36.94,5,1,0,0,7,5,0,1237,0,0,0 +11366,13931,25360,25359,-9,-9,1,1,0,64,1,0,0,0,3,-9,2,1,0,3,8.316038931791415,8.495592716932823,0,1,0,-9,9,0,-3,-122.9657034214713,0,0,0,67,2,3,1,3,-9,2019,1,2,6,0,38,38,15,1,0,1,0,15.29670410703111,15.29670410703111,0,0,0,0,0,0,0,0,0,0,3.836504701182848,0,0,0,58.07,46.29,6,1,0,0,7,5,0,1237,0,0,0 +11367,13932,25361,25362,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,6,0,-1,-64.81275947806083,0,0,0,72,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,17.11939595934722,73.39722361903156,0,0,0,0,1,1,0,0,0,0,0,56.52,22.01,6,1,0,0,12,2,0,1247.5,0,0,0 +11367,13932,25362,25361,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.677083792458008,6.606676405409638,1,0,-9,6,0,1,59.36334069965747,0,0,0,71,3,1,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.694412935040967,65.96158632221741,1,58.15,52.91,6,1,0,0,12,2,0,1247.5,0,0,0 +11368,13933,25363,25364,-9,-9,2,1,1,37,1,1,2,0,1,-9,2,1,0,4,9.073112350643221,9.259831600904954,0,2,0,-9,16,0,0,12.76505931856368,0,0,0,37,1,3,1,2,1,2019,1,1,8,0,60,50,15,1,0,1,0,22.49491142224123,22.49491142224123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,1,419,0,0,0 +11368,13933,25364,25363,-9,-9,1,1,0,37,1,1,2,0,1,-9,2,1,0,3,7.82341511616589,7.676937881833894,0,2,0,-9,16,0,0,106.5954263772399,0,0,1,37,1,4,1,2,3,2019,1,2,17,5,15,15,15,1,5,1,0,22.35995681132394,22.35995681132394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,4,1,0,0,7,5,1,419,0,0,0 +11368,13933,25365,-9,25364,25363,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-780.7228962539854,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,7,5,1,419,0,0,0 +11368,13933,25366,-9,25364,25363,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.1120941251003,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,7,5,1,419,0,0,0 +11369,13934,25367,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,5,8.606832892169672,8.833318870045387,0,1,0,-9,8,0,-4,-80.88844012861938,0,0,0,-9,-9,-9,-9,3,1,2019,1,2,18,6,38,37,15,1,6,-9,0,21.58789112367571,21.58789112367571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.05,63.64,4,1,0,0,2,5,1,1191,0,0,0 +11369,13935,25368,-9,-9,-9,2,1,1,37,2,0,0,0,1,-9,1,1,0,5,10.03308427616861,9.768560001380756,0,1,0,-9,8,0,4,-109.1963459456948,0,0,0,-9,-9,-9,-9,3,3,2019,1,1,17,6,40,50,15,1,6,-9,0,47.27989190850635,47.27989190850635,0,0,0,0,0,0,0,0,0,0,6.461932255451469,0,0,0,38.24,63.73,5,1,0,0,2,5,1,219,0,0,0 +11370,13936,25369,25370,-9,-9,1,1,0,51,1,0,0,0,1,-9,2,1,0,5,8.700499995196633,8.637701039773857,0,1,0,-9,12,0,11,8.705192294225778,0,0,0,40,2,4,1,3,3,2019,1,2,8,1,55,56,15,1,1,1,0,12.18503248030324,12.18503248030324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,6,1,0,0,2,5,0,903,0,0,0 +11370,13936,25370,25369,-9,-9,2,1,1,40,1,0,0,0,2,-9,1,1,0,4,7.825078574259308,7.788469548415821,0,1,0,-9,12,0,-11,-2.006033250405975,0,0,0,51,1,5,1,3,3,2019,1,1,10,0,40,45,15,1,1,1,0,8.626660235044769,8.626660235044769,0,0,0,0,0,0,0,0,0,0,1.416404388332927,0,0,0,50,56,5,3,0,0,2,5,0,903,0,0,0 +11371,13937,25371,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,2,6.967262560332688,7.15873144530295,5.640444689457845,4,0,0,0,-9,0,-910.670456851662,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,16,16,15,1,4,-9,0,7.899973879394197,7.899973879394197,0,0,0,0,0,0,0,1,1,0,6.083966875717531,0,0,0,31.53,57.52,5,1,0,1,9,2,0,335.5,0,0,0 +11371,13937,25372,-9,25371,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1082.662770755531,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,335.5,0,0,0 +11372,13938,25373,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,4,8.871117182713984,9.047854715494767,0,3,0,0,0,-9,0,-907.4672029499118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,40,39,15,1,0,-9,0,26.34081457906244,26.34081457906244,0,0,0,0,0,0,0,0,0,0,4.745293675438951,0,5.412295207893324,3,54.79,55.86,6,2,0,0,8,5,0,185,0,0,0 +11373,13939,25374,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,0,6.86771250328122,6.725509547015782,3,0,0,0,-9,0,-1022.082848318064,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.793016634411243,6.735868060441828,77.64209239146136,3,45.99,46.68,4,1,0,0,2,2,1,363,0,0,0 +11374,13940,25375,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1030.009082782236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.9703776633451,3,18.01,25.88,1,1,0,0,9,1,0,699,0,0,0 +11374,13941,25376,-9,25375,-9,2,1,1,30,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1104.23146041088,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.466381769074958,3,36.19,42.77,3,1,0,1,9,2,0,737,0,0,0 +11375,13942,25377,25378,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,2,8.092596880264869,7.862145383464676,0,1,0,-9,3,0,-1,0,0,0,0,52,2,4,1,-9,-9,2019,1,1,30,12,37,37,15,1,12,1,0,9.600351021580536,9.600351021580536,0,0,0,0,0,0,0,0,0,0,1.288735010242066,0,0,0,36.07,36.43,3,1,0,0,8,4,0,1123.5,0,0,0 +11375,13942,25378,25377,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.042256703445192,7.91749535870868,0,1,0,-9,3,0,1,0,0,0,0,51,2,2,1,3,2,2019,1,2,25,9,37,37,15,1,9,1,0,8.707726265837856,8.707726265837856,0,0,0,0,0,0,0,0,0,0,.1057920399792168,0,0,0,33.84,62.57,6,1,0,0,8,4,0,1123.5,0,0,0 +11376,13943,25379,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,3,8.499317732384363,8.365693593649514,5.723463556196117,4,0,0,0,-9,0,-1159.5151122691,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,38,38,15,1,8,-9,0,15.08018422671778,15.08018422671778,0,0,0,0,0,0,0,1,1,0,6.421808542811502,0,0,0,37.83,40.74,5,1,0,0,5,3,0,1080.5,0,0,0 +11376,13943,25380,-9,25379,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.8980225298521,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,0,1080.5,0,0,0 +11377,13944,25381,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,4,7.973078475278466,7.978142398041533,0,3,0,0,0,-9,0,-1009.102666121507,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,56,38,15,1,0,-9,0,6.3542434832226,6.3542434832226,0,0,0,0,0,0,0,0,0,0,2.137619437969762,0,0,0,61.12,51.57,6,1,0,0,11,3,1,119,0,0,0 +11378,13945,25382,25383,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,4,8.647961791483645,8.523594982308861,0,1,0,-9,6,0,-12,73.73592346865223,-9,0,1,42,1,3,1,2,2,2019,1,1,11,0,37,0,15,1,2,1,0,14.58326509151381,14.58326509151381,0,0,0,0,0,0,0,1,1,0,2.592850364516217,0,0,0,48,56,5,1,0,0,9,5,1,2182,0,0,0 +11378,13945,25383,25382,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,3,8.636115709033181,8.995809439367749,0,1,0,-9,6,0,12,-90.7930523302774,0,0,0,30,2,4,1,2,2,2019,1,2,7,0,37,37,15,1,0,1,0,21.11666938223314,21.11666938223314,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,9,5,1,2182,0,0,0 +11379,13946,25384,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-928.1699753270013,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,15,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.56,35.22,6,1,0,0,11,1,0,1188,0,0,0 +11379,13947,25385,-9,25384,-9,2,1,1,34,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1001.084886866086,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,1,0,11,1,0,3149,0,0,0 +11380,13948,25386,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,4,3,0,3,0,6.774777814565916,6.976768379467719,3,0,0,0,-9,0,-1062.065615827632,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.352297562892349,6.631696143293795,0,0,50.75,45.47,6,1,0,0,10,2,0,272,0,0,0 +11381,13949,25387,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,2,0,5.806104276740006,5.492808631967761,3,0,0,0,-9,0,-993.4103925906443,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.25364291260125,5.883501019361645,0,0,63.65,35.93,5,1,0,0,2,2,1,608,0,0,0 +11382,13950,25388,-9,25391,25390,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.50060863712,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,2,2,1,1062.75,0,0,0 +11382,13950,25389,-9,25391,25390,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1046.361990797453,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,3,0,0,2,2,1,1062.75,0,0,0 +11382,13950,25390,25391,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,5,7.753994778324952,7.406239378858078,0,2,0,-9,16,0,8,186.1314972404284,0,0,0,38,3,5,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,5.99485489494085,5.99485489494085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,2,2,1,1062.75,0,0,0 +11382,13950,25391,25390,-9,-9,1,1,0,38,1,0,2,0,3,-9,2,1,0,5,5.578581554415835,6.032331984266126,0,2,0,-9,16,0,-8,58.10164436117419,0,0,1,46,3,5,1,-9,-9,2019,1,2,6,1,6,6,15,1,1,1,0,7.041134411212346,7.041134411212346,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,56.86,6,3,0,0,2,2,1,1062.75,0,0,0 +11383,13951,25392,-9,-9,-9,1,1,0,23,2,0,0,1,1,0,7,2,0,4,0,5.740494685733814,6.088962651536168,3,0,0,0,-9,0,-1087.264121837914,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.542731216230041,0,0,0,48.87,58.55,6,1,0,0,2,2,0,1277,0,0,0 +11383,13952,25393,-9,-9,-9,3,1,0,24,2,0,0,1,1,0,7,2,0,4,0,5.812392264226541,5.732896575189272,3,0,0,0,-9,0,-945.6703205140359,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.998654379736131,0,0,0,28.35,65.41,6,2,0,1,2,2,0,428,0,0,0 +11384,13953,25394,25395,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.000978546994926,7.70473511258935,0,1,0,-9,6,0,7,-8.988972672412224,0,0,0,44,2,2,1,3,-9,2019,1,2,25,11,32,37,15,1,11,1,0,8.460709069865286,8.460709069865286,0,0,0,0,0,0,0,0,0,0,6.572169470517547,0,75.90496083318226,3,24.65,50.71,2,1,0,0,11,5,1,822.5,0,0,0 +11384,13953,25395,25394,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,2,8.720335237737967,8.886451770735306,0,1,0,-9,6,0,-7,47.40668389239823,-9,0,0,51,2,3,1,-9,-9,2019,1,1,21,9,49,0,15,1,9,1,0,16.16661176745033,16.16661176745033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.69,50.86,3,1,0,0,11,5,1,822.5,0,0,0 +11385,13954,25396,25397,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.51618994000277,8.601608660322018,0,1,0,-9,30,0,-2,-18.69283623738011,0,0,0,54,1,3,1,2,2,2019,1,1,9,0,47,25,15,1,0,1,0,19.00661197561292,19.00661197561292,0,0,0,0,0,0,0,0,0,0,6.664586598114962,0,0,0,45.91,59.89,5,1,0,0,10,5,1,1031.5,0,0,0 +11385,13954,25397,25396,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,3,8.621154916597494,8.501529068800361,0,1,0,-9,30,0,2,44.33393692089304,0,0,0,52,1,4,1,2,3,2019,1,2,19,7,40,38,15,1,7,1,0,16.38799790855082,16.38799790855082,0,0,0,0,0,0,0,0,0,0,7.468218783367239,0,0,0,33.26,57.64,3,1,0,0,10,5,1,1031.5,0,0,0 +11386,13955,25398,-9,25399,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1061.659344207422,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,5,3,0,554.5,0,0,0 +11386,13955,25399,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,2,1,0,2,7.792954619505498,7.573428671239066,0,4,0,-9,0,0,0,-983.1335484097654,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,60,22,15,1,1,-9,0,3.95133515456973,3.95133515456973,0,0,0,0,0,0,0,1,0,1,0,0,10.30947331142863,3,49.34,38.62,5,1,0,0,5,3,0,554.5,0,0,0 +11387,13956,25400,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,6.469703709781633,6.058733046645277,3,0,0,0,-9,0,-967.5000978239174,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.18945689027872,6.514662959415169,0,0,42.28,42.56,6,1,0,0,7,2,1,317,0,0,0 +11388,13957,25401,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,4,3,0,4,0,6.877916889336485,7.181390377503771,3,0,0,0,-9,0,-985.9032202748479,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.406878238935261,7.147747634577906,0,0,57.16,56.15,7,1,0,0,7,2,0,580,0,0,0 +11389,13958,25402,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,1,1,0,3,8.182072180226788,8.598146727365444,6.699405336488664,3,0,0,0,-9,0,-902.2436842663798,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,70,60,15,1,0,-9,0,4.953133705358272,4.953133705358272,1,0,0,0,0,0,0,1,1,0,6.838394598782456,7.003667901214858,0,0,50.65,53.71,6,1,0,0,10,4,1,616,0,0,0 +11390,13959,25403,25404,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,3,6.823921733096062,6.51075301696273,0,1,0,-9,31,0,-5,-46.0019829320141,0,0,0,58,3,3,1,2,2,2019,1,2,12,0,16,20,15,1,0,1,0,6.207206495879076,6.207206495879076,0,0,0,0,0,0,0,0,0,0,.5268687530901354,0,0,0,47.63,52.22,2,1,0,0,7,4,1,212.5,0,0,0 +11390,13959,25404,25403,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,3,8.647688463128105,8.774186686911275,4.562347320870454,1,0,-9,32,0,5,-146.2788557672782,0,0,0,53,3,3,1,2,2,2019,1,1,12,0,48,50,15,1,0,1,0,10.65724310714787,10.65724310714787,0,0,0,0,0,0,0,0,0,0,3.785391799722102,4.58452780832147,0,0,36.37,61.5,6,1,0,0,7,4,1,212.5,0,0,0 +11390,13960,25405,-9,25403,25404,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.816139950564249,8.902792361664819,0,3,0,0,0,-9,0,-926.2942792042163,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,42,44,15,1,0,-9,1,16.92452840770864,16.92452840770864,0,0,0,0,0,0,0,0,0,0,1.664160391615838,0,0,0,54.2,57.49,2,1,0,0,7,5,1,126,0,0,0 +11390,13961,25406,-9,25403,25404,4,1,1,20,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-996.5439736542143,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.43,54.04,6,1,0,0,7,1,1,515,0,0,0 +11391,13962,25407,25409,-9,-9,2,1,0,28,1,0,1,0,1,-9,2,1,0,4,6.424593428298548,6.397031159614456,0,2,0,-9,4,0,2,174.0624862626612,0,1,1,26,1,4,1,-9,-9,2019,1,1,11,0,12,15,15,1,2,1,0,6.571863729554408,6.571863729554408,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,10,4,1,296.6666666666667,0,0,0 +11391,13962,25408,-9,25407,25409,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.015786928302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,296.6666666666667,0,0,0 +11391,13962,25409,25407,-9,-9,1,1,1,26,1,0,1,0,1,-9,2,1,0,4,8.397405719277801,8.321099034552473,0,2,0,-9,4,0,-2,-17.57350868959059,0,1,0,28,1,4,1,-9,-9,2019,1,2,18,6,35,35,15,1,6,1,0,17.81016091540388,17.81016091540388,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,3,1,0,0,10,4,1,296.6666666666667,0,0,0 +11392,13963,25410,-9,25412,25411,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-886.4878701836755,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,2,2,1,1058,0,0,0 +11392,13963,25411,25412,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,0,0,0,2,0,-9,18,-9,2,10.94268014534008,-9,0,0,45,2,5,1,2,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,7,1,0,1,2,2,1,1058,0,0,0 +11392,13963,25412,25411,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,5,6.725932239763787,6.866176910016467,0,2,0,-9,1,-9,-2,42.64132215315372,-9,0,0,47,2,4,1,-9,-9,2019,1,1,7,0,16,0,15,1,0,1,0,6.298351649755473,6.298351649755473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,60.24,6,1,0,0,2,2,1,1058,0,0,0 +11393,13964,25413,-9,25415,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.4071178009851,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,10,1,0,1166,0,0,0 +11393,13964,25414,-9,25415,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-932.0551492787184,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,10,1,0,1166,0,0,0 +11393,13964,25415,-9,-9,-9,1,1,0,36,2,0,2,0,3,-9,3,3,0,1,0,0,0,4,0,0,0,-9,0,-1026.931679699512,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,22,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,25.65,4,4,1,0,10,1,0,1166,0,0,0 +11394,13965,25416,25417,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,7.248884976631971,7.241324845386781,1,0,-9,9,0,-5,-131.0405093132589,0,0,0,77,2,4,3,1,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.854776686290397,7.646256658521318,1.209291880592095,3,58.84,47.11,6,1,0,0,6,3,1,2156,0,0,0 +11394,13965,25417,25416,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,7.372681644957806,7.29695152055207,1,0,-9,9,0,5,-30.3857912259631,0,0,0,72,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.202792593799549,7.491137676509382,9.991166400869577,3,57.73,54.53,6,1,0,0,6,3,1,2156,0,0,0 +11395,13966,25418,25419,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,3,0,7.796319659674276,7.685074662583702,1,0,-9,15,0,5,73.76062808565887,0,0,0,59,3,1,3,2,2,2019,4,2,16,5,0,0,15,4,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.836251368800793,10.06010544711754,2,38.16,44.66,3,1,0,0,4,3,1,1044,0,0,0 +11395,13966,25419,25418,-9,-9,2,1,0,59,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,15,0,-5,-167.1148995585036,0,0,0,64,3,3,3,2,2,2019,4,1,14,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,17.47,4,1,0,0,4,3,1,1044,0,0,0 +11396,13967,25420,25421,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,8.065721447013539,7.927305926882821,1,0,-9,9,0,8,-35.64579688923868,0,0,0,57,1,2,1,-9,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.399899920448841,8.003689426082078,0,0,52.4,52.91,3,1,0,0,4,4,1,1081,0,0,0 +11396,13967,25421,25420,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,2,8.132122593149495,8.239522350594219,0,1,0,-9,9,0,-8,-6.945576659165257,0,0,0,65,1,3,3,3,2,2019,2,2,22,10,37,38,15,1,10,4,0,12.55510246559867,12.55510246559867,0,0,0,0,0,0,0,1,1,0,1.203603368473527,0,0,0,30.59,59.52,6,3,0,0,4,4,1,1081,0,0,0 +11397,13968,25422,25424,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,4,8.737985942988232,8.526533248390157,0,2,0,-9,7,0,-2,-73.79660771682688,0,0,1,32,2,3,1,-9,-9,2019,1,1,18,6,50,50,15,1,6,1,0,13.52017528963221,13.52017528963221,0,0,0,0,0,0,0,1,1,0,1.794113562947609,0,0,0,41.17,59.31,6,1,0,0,6,4,1,508,0,0,0 +11397,13968,25423,-9,25422,25424,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.033982327018,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,508,0,0,0 +11397,13968,25424,25422,-9,-9,1,1,1,32,1,0,1,0,2,-9,2,1,0,3,8.071794855516121,8.115549654153151,0,2,0,-9,7,0,2,47.99038918312595,0,0,0,30,2,4,1,2,2,2019,1,2,10,3,50,45,15,1,3,1,0,6.257541369724755,6.257541369724755,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.84,36.7,5,1,0,0,6,4,1,508,0,0,0 +11398,13969,25425,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,6.16120738515197,6.283254567825299,3,0,0,0,-9,0,-907.5852466773423,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.403619076745451,6.761059520793855,0,0,48.69,35.56,3,1,0,0,2,2,1,443,0,0,0 +11399,13970,25426,-9,-9,-9,1,1,1,24,3,0,0,0,2,-9,2,1,0,4,8.107477033170774,7.989065895017596,0,3,0,0,0,-9,0,-971.9958993335072,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,1,0,40,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,1,3,0,0,4,3,1,414,0,0,0 +11400,13971,25427,-9,25428,25429,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.1879682842655,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,1132,0,0,0 +11400,13971,25428,25429,-9,-9,2,1,0,34,1,1,1,0,2,-9,2,1,0,3,7.492020959729599,7.66047601163515,0,2,0,-9,5,0,-5,12.891727263461,0,0,1,39,2,4,1,-9,-9,2019,1,1,16,4,35,40,15,1,4,1,0,6.386833103226679,6.386833103226679,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54.57,5,1,0,0,2,4,1,1132,0,0,0 +11400,13971,25429,25428,-9,-9,1,1,1,39,1,1,1,0,2,-9,1,1,0,4,8.573518992456336,8.083460255950568,0,2,0,-9,5,0,5,-38.1679290626005,0,0,0,34,2,3,1,-9,-9,2019,1,2,6,0,35,35,15,1,0,1,0,13.6687318229355,13.6687318229355,0,0,0,0,0,0,0,1,1,0,7.016801268694995,0,0,0,54.79,55.86,6,1,0,0,2,4,1,1132,0,0,0 +11401,13972,25430,-9,25433,25431,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.1996529247145,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,545.25,0,0,0 +11401,13972,25431,25433,-9,-9,1,1,1,50,1,0,3,0,2,-9,2,1,0,3,8.190731914001811,8.718620617786145,0,2,0,-9,23,0,3,-101.9062902981214,0,0,0,47,1,4,1,2,2,2019,1,2,8,0,40,48,15,1,0,1,0,14.09187459663589,14.09187459663589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.15,48.02,6,1,0,0,6,4,1,545.25,0,0,0 +11401,13972,25432,-9,25433,25431,3,1,0,16,2,0,3,1,2,-9,7,2,0,3,0,4.772518987980126,4.451320997934116,2,0,0,0,-9,0,-972.6846213467782,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.510278942488787,0,0,0,41.76,59.08,5,1,0,0,6,4,1,545.25,0,0,0 +11401,13972,25433,25431,-9,-9,2,1,0,47,1,0,3,0,1,-9,2,1,0,4,8.49108907344505,8.862459588298318,0,2,0,-9,23,0,-3,-6.965304323624655,0,0,0,50,2,3,1,2,3,2019,1,1,11,0,42,45,15,1,0,1,0,14.7900771324257,14.7900771324257,0,0,0,0,0,0,0,1,1,0,0,0,3.003403902438222,3,51.83,57.2,6,1,0,0,6,4,1,545.25,0,0,0 +11402,13973,25434,-9,25435,25437,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.982390676053,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,2,0,1305.666666666667,0,0,0 +11402,13973,25435,25437,-9,-9,2,1,0,37,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-10,-52.61096906979529,0,0,1,47,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,2,0,1305.666666666667,0,0,0 +11402,13973,25436,-9,25435,25437,3,1,1,16,2,0,4,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-937.9902781614866,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,4,3,0,0,8,2,0,1305.666666666667,0,0,0 +11402,13973,25437,25435,-9,-9,1,1,1,47,1,0,4,0,2,-9,1,1,0,4,6.066764757743361,5.741052266616943,0,2,0,-9,20,0,10,138.6595404774126,0,0,0,37,2,4,3,2,2,2019,2,2,9,0,24,39,15,1,1,3,0,2.254278214922176,2.254278214922176,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,2,0,1305.666666666667,0,0,0 +11402,13973,25438,-9,25435,25437,4,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.644481844264,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,2,0,1305.666666666667,0,0,0 +11402,13973,25439,-9,25435,25437,5,1,0,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.223241041786,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,1305.666666666667,0,0,0 +11403,13974,25440,25441,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,3,8.51122668859583,8.183228397150538,0,2,0,-9,2,0,3,33.55187856442885,0,0,0,30,2,4,1,2,2,2019,1,2,6,0,50,52,15,1,0,1,0,14.77838459382186,14.77838459382186,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,56.44,6,1,0,0,10,4,1,1590,0,0,0 +11403,13974,25441,25440,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,4,7.79530296349189,7.92357038855633,5.621140170542982,2,0,-9,2,0,-3,-28.18799836329655,0,0,1,33,2,3,1,-9,-9,2019,1,1,9,0,15,21,15,1,0,1,0,14.48195891436279,14.48195891436279,0,0,0,0,0,0,0,1,1,0,5.742794300654004,0,0,0,54.79,55.86,7,1,0,0,10,4,1,1590,0,0,0 +11403,13974,25442,-9,25441,25440,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1087.119103813201,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,1590,0,0,0 +11403,13974,25443,-9,25441,25440,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1149.173152639963,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,1590,0,0,0 +11404,13975,25444,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,2,1,0,3,7.495215485813047,7.525529416785011,0,3,0,0,0,-9,0,-953.8010077610714,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,28,23,15,1,3,-9,0,6.331932987490535,6.331932987490535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,49.06,6,1,0,0,4,3,1,422,0,0,0 +11405,13976,25445,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,1,1,0,3,7.993160926009883,8.722942050520196,7.757774460509076,3,0,0,0,-9,0,-1013.370307613466,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,40,50,15,1,1,-9,0,8.886883423899826,8.886883423899826,0,0,0,0,0,0,0,0,0,0,7.148431744548331,7.889586471106188,13.07176717140688,3,59.76,35.92,6,1,0,0,1,5,1,444,0,0,0 +11406,13977,25446,-9,-9,-9,1,1,1,83,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1013.592496868064,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.294134198498638,0,0,0,54,46,6,1,0,0,13,1,1,1332,0,0,0 +11407,13978,25447,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-972.5218891817801,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,46,36,5,1,0,0,12,1,1,643,0,0,0 +11408,13979,25448,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,6.32881230161673,5.811664386019174,3,0,0,0,-9,0,-1095.243723449212,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,.6417726908973436,0,1,1,0,0,6.048242532160043,0,0,35.79,37.38,3,1,0,0,4,2,0,671,0,0,0 +11409,13980,25449,-9,-9,-9,1,1,1,39,3,0,0,0,2,-9,2,1,0,1,9.086096881494633,8.905613215747936,0,3,0,0,0,-9,0,-1059.782068938256,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,43,41,15,1,1,-9,0,18.32058481098229,18.32058481098229,0,0,0,0,0,0,0,1,1,0,1.161710596925165,0,0,0,43.73,29.39,5,1,0,0,9,5,0,195,0,0,0 +11410,13981,25450,25451,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,6,0,-2,-17.37372088343958,0,0,0,68,2,4,1,3,3,2019,3,1,13,2,0,0,15,4,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.032346496931662,0,0,0,39,24,4,1,0,0,12,4,1,601.5,0,0,0 +11410,13981,25451,25450,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,4,8.53912139984503,8.518585841480583,6.710153143410944,1,0,-9,6,0,2,192.1974416267266,0,0,0,66,3,1,3,3,3,2019,2,2,7,0,37,37,15,1,0,4,0,14.88773502686865,14.88773502686865,0,0,0,0,0,0,0,1,1,0,5.07614851018181,7.177084841746511,.7489777415744365,1,56.78,49.38,6,1,0,0,12,4,1,601.5,0,0,0 +11411,13982,25452,25454,-9,-9,2,1,1,38,1,1,1,0,2,-9,2,1,0,4,8.407884664950494,8.034180544138932,0,2,0,-9,7,0,5,-70.40501213828847,0,0,0,33,2,3,1,-9,-9,2019,1,1,12,0,37,37,15,1,0,1,0,11.8616875433057,11.8616875433057,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.91,50.77,4,1,0,0,4,4,0,264.6666666666667,0,0,0 +11411,13982,25453,-9,25454,25452,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.898140023745,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,0,264.6666666666667,0,0,0 +11411,13982,25454,25452,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,3,7.070575854295486,6.947368322140346,0,2,0,-9,7,0,-5,46.72818105172733,0,0,1,38,2,4,1,-9,-9,2019,1,2,8,0,29,0,15,1,0,1,0,6.087383883339482,6.087383883339482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,1,0,0,4,4,0,264.6666666666667,0,0,0 +11412,13983,25455,-9,-9,25456,1,1,1,54,3,0,0,0,2,-9,2,1,0,4,7.967302435468341,8.047868530169733,0,3,0,0,0,-9,0,-1049.316661888747,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,40,15,1,0,-9,1,9.040313501278392,9.040313501278392,0,0,0,0,0,0,0,1,1,0,4.051564483283981,0,0,0,57.73,54.53,6,1,0,0,2,4,1,1520,0,0,0 +11412,13984,25456,-9,-9,-9,2,1,1,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-990.8951967203353,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.114858090484921,0,0,0,55,45,6,1,0,0,2,1,1,839,0,0,0 +11413,13985,25457,25458,-9,-9,1,1,0,38,1,1,1,0,1,-9,5,1,0,4,8.755346116648179,8.995395171116193,0,2,0,-9,6,0,-1,148.4750915733723,0,0,1,39,1,5,1,2,2,2019,1,2,9,1,50,55,15,1,1,1,0,17.81661703261891,17.81661703261891,0,0,0,0,0,0,0,1,1,0,3.155100778425769,0,0,0,51.02,56.13,6,1,0,0,9,5,1,559.6666666666666,0,0,0 +11413,13985,25458,25457,-9,-9,2,1,1,39,1,1,1,0,1,-9,1,1,0,5,8.103248002112078,8.058410269267169,0,2,0,-9,6,0,1,112.284650404364,0,0,0,38,1,4,1,1,2,2019,1,1,20,9,40,55,15,1,9,1,0,7.639025597437232,7.639025597437232,0,0,0,0,0,0,0,1,1,0,2.925195175601445,0,0,0,46.28,62.6,5,1,0,0,9,5,1,559.6666666666666,0,0,0 +11413,13985,25459,-9,25457,25458,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-956.3547772785106,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,5,1,559.6666666666666,0,0,0 +11414,13986,25460,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,2,1,0,2,7.401344592194087,7.21690111947413,0,4,0,0,0,-9,0,-950.1667350078156,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,21,9,45,42,15,1,9,-9,0,4.007869985282787,4.007869985282787,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.77,51.68,3,1,0,0,13,2,0,448,0,0,0 +11415,13987,25461,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,5.486488136694539,5.613498067653969,3,0,0,0,-9,0,-926.1372477872089,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,10.30754596276947,0,1,1,0,0,5.153406972792946,0,0,47.64,27.05,4,1,0,1,2,2,0,341,0,0,0 +11416,13988,25462,25463,-9,-9,1,1,0,53,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,1,0,-9,0,0,52,3,1,3,3,3,2019,4,2,31,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.75615707765303,1,24.93,19.95,2,1,0,0,12,1,0,1722,0,0,0 +11416,13988,25463,25462,-9,-9,2,1,1,52,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,-1,0,-9,0,0,53,3,1,3,-9,-9,2019,4,1,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.28,22.89,3,1,0,0,12,1,0,1722,0,0,0 +11417,13989,25464,25465,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,3,8.064632386137211,7.975276077439382,0,1,0,-9,2,0,-4,-44.55297306453011,0,1,1,32,1,4,1,2,2,2019,1,2,17,6,48,48,15,1,6,1,0,7.411630328134716,7.411630328134716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.31,58.64,5,1,0,0,12,4,1,611,0,0,0 +11417,13989,25465,25464,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.500817795181785,8.066390332811894,0,1,0,-9,2,0,4,32.62575203906761,-9,0,0,28,2,3,1,-9,-9,2019,1,1,14,3,40,0,15,1,3,1,0,12.36037288480204,12.36037288480204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,5,1,0,0,12,4,1,611,0,0,0 +11418,13990,25466,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-982.1441665826269,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.69,17.76,4,1,0,0,9,1,1,1210,0,0,0 +11418,13991,25467,-9,25466,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,4,7.941778158535737,8.110577832994506,0,3,0,0,0,-9,0,-1086.580420946668,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,45,65,15,1,1,-9,1,8.920507829988178,8.920507829988178,0,0,0,0,0,0,0,1,1,0,3.337685354795713,0,0,3,49,58,5,1,0,0,9,4,1,745,0,0,0 +11419,13992,25468,25469,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,-1,121.3255084330348,0,0,0,69,2,3,3,-9,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3655247788756967,0,0,0,56.5,42.8,7,1,0,0,10,2,1,242,0,0,0 +11419,13992,25469,25468,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.576564106982842,7.149925302298662,1,0,-9,48,0,1,52.98536662905185,0,0,0,68,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.931379826145863,0,0,49.33,47.37,7,1,0,0,10,2,1,242,0,0,0 +11420,13993,25470,25473,-9,-9,1,1,0,33,1,0,5,0,3,-9,3,3,0,3,0,0,0,2,0,-9,6,0,0,0,0,0,1,33,2,3,3,3,2,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.737916607239893,2,41.44,47.24,6,1,1,0,11,1,0,568.1428571428571,0,0,0 +11420,13993,25471,-9,25470,25473,6,1,0,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.838164666143,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,1,0,568.1428571428571,0,0,0 +11420,13993,25472,-9,25470,25473,7,1,0,3,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.45187408688,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,11,1,0,568.1428571428571,0,0,0 +11420,13993,25473,25470,-9,-9,2,1,1,33,1,0,5,0,2,-9,8,3,1,3,0,0,0,2,0,-9,6,0,0,0,0,0,0,33,3,3,3,2,2,2019,4,1,20,5,0,40,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.13,62.09,4,1,0,0,11,1,0,568.1428571428571,0,0,0 +11420,13993,25474,-9,25470,25473,3,1,0,13,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.6569982638647,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,1,0,568.1428571428571,0,0,0 +11420,13993,25475,-9,25470,25473,5,1,0,7,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.3332762447878,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,1,0,568.1428571428571,0,0,0 +11420,13993,25476,-9,25470,25473,4,1,0,12,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.5175159422831,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,1,0,568.1428571428571,0,0,0 +11421,13994,25477,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,3,0,5.30545276413312,5.726690734894758,3,0,0,0,-9,0,-957.9186256835305,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.860726803516248,5.53607167917117,0,3,50.91,46.91,7,1,0,0,7,2,1,165,0,0,0 +11422,13995,25478,25479,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,4,8.238692540969229,8.293637345236151,0,1,0,-9,16,0,-16,-80.60894942199076,0,0,1,53,2,2,1,3,2,2019,1,1,7,0,40,50,15,1,0,1,0,10.88223036321636,10.88223036321636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,10,5,0,340.5,0,0,0 +11422,13995,25479,25478,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,2,8.21046425038533,8.326802718015317,0,1,0,-9,16,0,16,41.22595026923651,0,0,0,37,2,4,1,2,3,2019,1,2,15,3,40,40,15,1,3,1,0,9.078695675796849,9.078695675796849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.82,47.08,5,1,0,0,10,5,0,340.5,0,0,0 +11423,13996,25480,25481,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,5,8.429276706984968,8.538972915035147,0,1,0,-9,6,0,2,-95.37894994102527,0,0,1,35,1,4,1,2,2,2019,1,2,6,0,40,40,15,1,0,1,0,13.90275310417803,13.90275310417803,0,0,0,0,0,0,0,0,0,0,2.397931663697576,0,7.395322152791742,3,54.1,59.11,6,1,0,0,12,4,1,596.5,0,0,0 +11423,13996,25481,25480,-9,-9,2,1,1,35,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,6,0,-2,175.3481522284138,0,0,0,37,1,5,1,3,2,2019,1,1,6,0,0,30,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,12,4,1,596.5,0,0,0 +11424,13997,25482,25483,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,5.456839888645316,5.617536011056592,1,0,-9,52,0,0,-31.89493571145208,0,0,0,72,2,3,3,3,3,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,10.00663922881729,0,0,0,0,1,1,0,6.372164927067884,5.742784911753253,0,3,57.9,22.03,5,1,0,0,7,2,1,639.5,0,0,0 +11424,13997,25483,25482,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,5.171683576369778,4.926127702199291,1,0,-9,51,0,0,-33.24600833619513,0,0,0,72,2,3,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.525217689617209,5.267522129479834,2.119094936067639,1,56.11,44.4,4,1,0,0,7,2,1,639.5,0,0,0 +11424,13998,25484,-9,25483,25482,3,1,1,48,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1064.201165903929,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,28,2,1,0,1,7,1,1,241,0,0,0 +11425,13999,25485,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,4,9.254242447783879,9.522094323297981,0,3,0,0,0,-9,0,-925.173176209368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,50,15,1,0,-9,0,21.97430447179159,21.97430447179159,0,0,0,0,0,0,0,0,0,0,5.330398636196769,0,0,0,54.77,55.87,6,1,0,0,8,5,1,363,0,0,0 +11426,14000,25486,25487,-9,-9,2,1,1,68,1,0,0,0,1,-9,2,1,0,4,6.479066192315092,7.804452897407414,7.274757508106792,1,0,-9,47,0,-3,65.19799516135922,0,0,0,71,1,3,3,3,3,2019,2,1,9,0,20,38,15,1,0,4,0,4.436818758431587,4.436818758431587,0,0,0,0,0,0,0,1,1,0,7.04877057611311,7.388526504839282,0,0,53.86,57.86,6,4,0,0,8,3,1,334,0,0,0 +11426,14000,25487,25486,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,6.879171615713563,7.261672677721978,1,0,-9,47,0,3,-35.25704557036735,0,0,0,68,1,4,1,-9,-9,2019,3,2,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.501671246733066,7.180906074133364,0,0,46.45,42.26,5,4,0,0,8,3,1,334,0,0,0 +11427,14001,25488,25489,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,7.18416731115184,7.028273507663338,1,0,-9,50,0,1,-12.72488036195099,0,0,0,70,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.221169609456356,0,0,54.85,29.1,6,1,0,0,4,3,1,414.5,0,0,0 +11427,14001,25489,25488,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.306278104389452,7.585850312452772,1,0,-9,50,0,-1,14.05452890119786,0,0,0,71,2,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.562917100093091,7.391340254200765,0,2,55.37,40.83,6,1,0,0,4,3,1,414.5,0,0,0 +11428,14002,25490,-9,25492,25491,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.345350958654,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,5,1,542.6666666666666,0,0,0 +11428,14002,25491,25492,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.743959455770518,8.390240787789072,0,2,0,-9,4,0,14,-65.85191824601941,0,0,0,34,2,4,1,-9,-9,2019,1,1,8,0,52,62,15,1,0,1,0,16.45116425852828,16.45116425852828,0,0,0,0,0,0,0,1,1,0,2.726298473264544,0,0,0,56.29,52.37,5,1,0,0,4,5,1,542.6666666666666,0,0,0 +11428,14002,25492,25491,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,4,8.26791560033284,7.983662845358514,0,2,0,-9,4,0,-14,48.18669790590264,0,0,1,48,2,4,1,2,2,2019,1,2,6,0,35,40,15,1,0,1,0,9.496081582817776,9.496081582817776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,4,5,1,542.6666666666666,0,0,0 +11429,14003,25493,25494,-9,-9,2,1,1,55,1,0,1,0,3,-9,1,1,0,4,8.232565652045745,8.358444826412834,0,2,0,-9,7,0,7,88.13209282599966,-9,0,0,48,2,3,1,3,3,2019,1,1,9,0,50,0,15,1,1,1,0,9.763883401029783,9.763883401029783,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,5,4,1,737.5,0,0,0 +11429,14003,25494,25493,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.002585505143307,7.548893001367665,0,2,0,-9,29,0,-7,-16.73446473934076,0,0,0,55,3,4,1,3,3,2019,1,2,8,0,39,44,15,1,0,1,0,6.844886854202863,6.844886854202863,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,52.08,6,3,0,0,5,4,1,737.5,0,0,0 +11430,14004,25495,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,4,0,6.969904428833385,6.857312371732356,3,0,0,0,-9,0,-1101.983785253466,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.931588520950365,7.3886786412002,0,0,54.74,57.22,7,1,0,0,2,3,1,325,0,0,0 +11431,14005,25496,25497,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,3,0,6.608330745493483,6.486782012472468,1,0,-9,65,0,1,-66.1340036644321,0,0,0,82,2,5,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.011609710772352,6.42308333228257,0,0,59.31,49.81,6,1,0,0,12,2,1,221,0,0,0 +11431,14005,25497,25496,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,9,0,-1,62.08984709767866,0,0,0,83,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,4.471350015821738,0,0,0,0,1,1,0,5.176155788699267,0,0,0,54.91,56.22,7,1,0,0,12,2,1,221,0,0,0 +11431,14006,25498,-9,25497,25496,3,1,0,59,3,0,0,0,2,-9,2,1,0,4,7.713378571774225,7.595583574266493,0,3,0,0,0,-9,0,-997.581515982336,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,19,18,15,1,0,-9,1,11.85469059780082,11.85469059780082,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,0,12,3,1,826,0,0,0 +11432,14007,25499,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,4,8.903184487116006,8.816785116089001,0,3,0,0,0,-9,0,-888.0912943879412,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,39,39,15,1,0,-9,0,26.86960716798846,26.86960716798846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,3,1,0,0,12,5,1,635,0,0,0 +11433,14008,25500,-9,25502,25501,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.002343259193,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,1,0,574.6666666666666,0,0,0 +11433,14008,25501,25502,-9,-9,2,1,1,26,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,7,0,1,0,0,1,0,25,2,1,3,2,2,2019,4,1,22,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.13397500370908,1,21.22,61.89,4,1,1,0,10,1,0,574.6666666666666,0,0,0 +11433,14008,25502,25501,-9,-9,1,1,0,25,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,7,0,-1,0,0,1,1,26,2,3,3,3,3,2019,4,2,29,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.44,23.66,1,1,0,0,10,1,0,574.6666666666666,0,0,0 +11434,14009,25503,-9,-9,-9,1,1,1,40,3,0,0,0,2,-9,2,1,0,5,8.966325998689261,8.740866950825776,0,3,0,-9,0,1,0,-1125.584358360747,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,52,15,1,0,-9,0,19.88745309314349,19.88745309314349,0,0,0,0,0,0,0,0,0,0,4.579011534883859,0,0,0,52.21,59.91,6,1,0,0,1,5,1,1067,0,0,0 +11435,14010,25504,-9,-9,-9,1,1,0,25,2,0,1,0,2,-9,6,3,0,4,0,5.618714795453835,5.844751989030391,4,0,0,0,-9,0,-955.4051306275487,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.976240079973351,0,0,0,55.44,52.99,6,1,0,1,13,2,0,614.5,0,0,0 +11435,14010,25505,-9,25504,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-927.0042373171634,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,0,614.5,0,0,0 +11436,14011,25506,25507,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.769136121724399,8.686052229479451,0,1,0,-9,6,0,-6,-4.775813786626636,0,0,0,58,2,5,1,3,-9,2019,1,1,17,6,70,110,15,1,6,1,0,11.97020529450231,11.97020529450231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.48,60.97,5,1,0,0,7,5,1,260.5,0,0,0 +11436,14011,25507,25506,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,5,8.547056268407955,9.009445960113986,0,1,0,-9,31,0,6,60.16840038203627,0,0,0,52,2,4,1,2,2,2019,1,2,7,0,66,70,15,1,0,1,0,12.50284837004072,12.50284837004072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.36,36.97,7,3,0,0,7,5,1,260.5,0,0,0 +11437,14012,25508,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1004.469861635703,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.98,14.09,1,1,0,1,7,1,0,399,0,0,0 +11438,14013,25509,25510,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,7.086761905360246,7.27991616173484,1,0,-9,9,0,-1,14.59599556662612,0,0,0,61,2,4,3,2,3,2019,4,1,16,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.138787548737624,7.065007356473564,.0759872941607025,3,48.28,22.7,5,1,0,0,12,4,1,331,0,0,0 +11438,14013,25510,25509,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,4,0,8.515047468104401,7.944098036790393,1,0,-9,9,0,1,.1681482562798935,0,0,0,60,2,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.114230092456248,8.488094304820137,3,57.16,56.15,6,1,0,0,12,4,1,331,0,0,0 +11439,14014,25511,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-986.3759003756359,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.990576073429571,0,0,0,24.13,35.11,3,5,0,0,8,1,0,1458,0,0,0 +11440,14015,25512,25513,-9,-9,2,1,0,24,1,0,0,0,2,0,7,2,0,5,5.011068101037138,7.126967838034798,6.839265009333467,1,0,-9,2,0,-2,-65.74545850755011,-9,1,1,26,2,5,1,-9,-9,2019,3,1,10,1,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.261511414933956,0,0,0,43.64,51.95,6,1,0,0,12,5,1,1200.5,0,0,0 +11440,14015,25513,25512,-9,-9,1,1,1,26,1,0,0,0,2,-9,2,1,0,5,8.775902590924064,8.625958025609894,0,1,0,-9,2,0,2,3.074861932075044,0,1,0,24,2,5,2,-9,-9,2019,2,2,6,0,56,57,15,1,0,2,0,11.17952355092985,11.17952355092985,0,0,0,0,0,0,0,1,1,0,4.229034609412599,0,0,0,50.54,62.09,7,1,0,0,12,5,1,1200.5,0,0,0 +11441,14016,25514,25516,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,3,7.86039065920384,7.873102960350264,0,2,0,-9,14,0,0,69.33998959522535,0,0,0,36,2,4,1,2,2,2019,1,1,8,1,50,45,15,1,1,1,0,5.073471978238632,5.073471978238632,0,0,0,0,0,0,0,1,1,0,10.10721725323943,0,0,0,55.27,44.81,6,1,0,0,9,3,1,605,0,0,0 +11441,14016,25515,-9,25516,25514,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.002283888974,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,605,0,0,0 +11441,14016,25516,25514,-9,-9,1,1,0,36,1,0,2,0,2,-9,2,1,0,4,7.07467005645576,7.2721021193046,0,2,0,-9,14,0,0,-99.26913766971808,0,0,1,36,2,3,1,2,3,2019,1,2,8,0,11,10,15,1,0,1,0,13.62462855878089,13.62462855878089,0,0,0,0,0,0,0,1,1,0,8.800484041918915,0,0,0,51.77,58.57,6,1,0,0,9,3,1,605,0,0,0 +11441,14016,25517,-9,25516,25514,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.0581939335326,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,605,0,0,0 +11442,14017,25518,-9,-9,-9,1,1,0,40,2,0,2,0,1,-9,2,1,0,3,7.866535518794841,8.120965118430467,0,4,0,-9,0,-9,0,-984.4560710385523,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,40,0,15,1,2,-9,0,8.009361852727421,8.009361852727421,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.65,51.93,5,1,0,1,10,3,0,197,0,0,0 +11442,14017,25519,-9,25518,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-978.7538501003495,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,3,0,197,0,0,0 +11443,14018,25520,-9,-9,-9,1,1,0,34,3,0,2,0,2,-9,2,1,0,4,8.556022524443307,8.14840542267719,0,4,0,0,0,-9,0,-983.9221645446053,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,22,8,43,35,15,1,8,-9,0,13.37268185934274,13.37268185934274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.91,65.73,3,1,0,0,2,4,0,279.5,0,0,0 +11443,14018,25521,-9,25520,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-979.5638103291309,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,0,279.5,0,0,0 +11444,14019,25522,25523,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,7.93355424352634,8.168127624280968,0,1,0,-9,1,-9,1,-3.927568913185243,-9,1,1,24,1,5,1,-9,-9,2019,1,1,12,1,52,0,15,1,1,1,0,8.556135180462535,8.556135180462535,0,0,0,0,0,0,0,0,0,0,4.066923998672115,0,0,0,46.1,59.99,6,1,0,0,2,4,1,341.5,0,0,0 +11444,14019,25523,25522,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,5,7.848134661812789,7.532366888204795,0,1,0,1,1,-9,-1,25.29281103393401,0,1,0,25,1,4,1,-9,-9,2019,1,2,8,0,37,40,15,1,0,1,0,8.128591882190868,8.128591882190868,0,0,0,0,0,0,0,0,0,0,1.771606677025009,0,0,0,54.1,59.11,6,1,0,0,2,4,1,341.5,0,0,0 +11445,14020,25524,-9,25526,25525,4,1,1,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.0845737357812,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,2,5,1,776.1666666666666,0,0,0 +11445,14020,25525,25526,-9,-9,2,1,1,40,1,0,4,0,1,-9,2,1,0,4,9.244692791130106,8.930444926604716,0,2,0,-9,22,0,0,7.75482944414076,0,0,0,40,1,3,1,1,1,2019,1,1,11,1,45,45,15,1,1,1,0,24.68023285816873,24.68023285816873,0,0,0,0,0,0,0,0,0,0,5.523952197084542,0,0,0,41.65,60.41,6,1,0,0,2,5,1,776.1666666666666,0,0,0 +11445,14020,25526,25525,-9,-9,1,1,0,40,1,0,4,0,1,-9,2,1,0,3,7.850438194331359,7.638615425854909,0,2,0,-9,22,0,0,-7.674305071865573,0,0,1,40,1,4,1,1,1,2019,1,2,12,1,27,0,15,1,1,1,0,9.710538556117905,9.710538556117905,0,0,0,0,0,0,0,0,0,0,1.866751548191897,0,0,0,44.19,58.01,6,1,0,0,2,5,1,776.1666666666666,0,0,0 +11445,14020,25527,-9,25526,25525,3,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1134.178041101236,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,2,5,1,776.1666666666666,0,0,0 +11445,14020,25528,-9,25526,25525,6,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.032539415668,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,2,5,1,776.1666666666666,0,0,0 +11445,14020,25529,-9,25526,25525,5,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.433309869293,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,2,5,1,776.1666666666666,0,0,0 +11446,14021,25530,25532,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,2,8.794900410463777,8.943025963506068,0,2,0,-9,3,0,6,-75.24540836479518,0,0,0,43,2,4,1,2,2,2019,1,1,12,0,40,45,15,1,0,1,0,19.30892364252059,19.30892364252059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.11,40.82,4,1,0,0,2,4,1,466,0,0,0 +11446,14021,25531,-9,25532,25530,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,6.031733477388047,6.235926769854319,0,2,0,0,0,-9,0,-1110.138272561489,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.63,51.86,1,1,0,0,2,4,1,466,0,0,0 +11446,14021,25532,25530,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.482550221527758,8.678165391897167,0,2,0,-9,12,0,-6,21.74402314363093,0,0,1,49,2,2,1,2,3,2019,1,2,9,0,85,40,15,1,0,1,0,6.619283176756044,6.619283176756044,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,55.94,7,1,0,0,2,4,1,466,0,0,0 +11447,14022,25533,-9,-9,-9,1,1,1,76,2,0,0,0,3,-9,4,3,0,1,0,7.132616012529279,7.078379981190557,3,0,0,0,-9,0,-1031.534550490724,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.93030290668962,0,0,34.3,23.58,6,1,0,0,1,2,0,518,0,0,0 +11448,14023,25534,25535,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,5,0,8.357218188712121,8.1256755134706,1,0,-9,6,0,-6,-25.60798459491644,0,0,0,68,2,4,3,3,2,2019,4,1,7,1,0,50,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.152519172842885,0,0,63.14,46.71,7,1,0,0,12,4,1,463,0,0,0 +11448,14023,25535,25534,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.709633442563682,7.905345084043446,1,0,-9,6,0,6,-33.52750255611947,0,0,0,62,1,5,3,3,3,2019,4,2,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.668987759998092,7.931030293608584,0,3,62.49,55.09,7,1,0,0,12,4,1,463,0,0,0 +11449,14024,25536,-9,-9,-9,2,1,1,61,3,0,3,0,3,-9,2,1,0,3,6.373421373103736,7.820254697675345,7.714129712414961,4,0,0,0,-9,0,-922.075507427054,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,13,16,15,1,0,-9,0,5.593675875754291,5.593675875754291,0,0,0,0,0,0,0,1,1,0,0,7.541556934837863,0,0,55.53,51.55,6,1,0,0,4,2,1,384,0,0,0 +11449,14025,25537,25539,-9,25536,1,1,0,40,1,0,3,0,2,-9,2,1,0,3,7.044536822286879,6.901045799845253,0,2,0,-9,6,0,-3,-68.25254061875913,0,0,1,43,1,5,1,3,3,2019,1,6,25,12,16,45,15,1,12,1,0,8.573430529219491,8.573430529219491,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,56.66,3,1,0,0,4,4,1,1064.5,0,0,0 +11449,14025,25538,-9,25537,25539,7,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-983.1990673229423,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,4,4,1,1064.5,0,0,0 +11449,14025,25539,25537,-9,-9,6,1,1,43,1,0,3,0,1,-9,2,1,0,5,8.909175710432471,9.414820114498651,7.397284980866159,2,0,-9,6,0,3,44.25047092904068,0,0,0,40,2,3,1,-9,-9,2019,1,1,6,0,38,54,15,1,0,1,0,23.92207238702883,23.92207238702883,0,0,0,0,0,0,0,1,1,0,0,8.015454456571353,0,0,59.43,58.05,7,1,0,0,4,4,1,1064.5,0,0,0 +11449,14025,25540,-9,25537,25539,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.331899822823,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,1064.5,0,0,0 +11449,14025,25541,-9,25537,25539,5,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.0224889113807,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,1064.5,0,0,0 +11449,14025,25542,-9,25537,25539,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.033588258523,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,1064.5,0,0,0 +11450,14026,25543,25545,-9,-9,2,1,1,42,1,0,1,0,2,-9,2,1,0,4,8.32323669183922,8.545290271031467,0,2,0,-9,7,0,-6,-115.9902246122326,0,0,0,48,3,4,1,-9,-9,2019,1,1,9,0,35,40,15,1,1,1,0,12.75467708272625,12.75467708272625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,8,3,0,734.3333333333334,0,0,0 +11450,14026,25544,-9,25545,25543,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.0649002509853,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,3,0,734.3333333333334,0,0,0 +11450,14026,25545,25543,-9,-9,1,1,0,48,1,0,1,0,3,-9,2,1,0,4,6.811061022080787,7.070926660697874,0,2,0,-9,11,0,6,4.729852730176832,0,0,0,42,2,4,1,2,3,2019,1,2,10,0,40,0,15,1,0,1,0,3.098369364738728,3.098369364738728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,6,1,0,0,8,3,0,734.3333333333334,0,0,0 +11451,14027,25546,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,3,8.085577586902446,8.009041185714233,0,3,0,0,0,-9,0,-1062.370433694057,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,40,42,15,1,0,-9,0,10.05141860353426,10.05141860353426,0,0,0,0,0,0,0,1,1,0,.9887792808230937,0,0,0,52.57,52.89,6,1,0,0,12,4,0,529,0,0,0 +11452,14028,25547,25548,-9,-9,3,1,1,46,1,0,1,0,2,-9,2,1,0,3,8.149616547263944,7.799153716177654,0,2,0,-9,1,-9,5,117.9895580670537,-9,0,0,41,2,3,1,-9,-9,2019,1,1,7,2,40,0,15,1,2,1,0,7.790341195860184,7.790341195860184,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.64,45.93,6,1,0,0,11,3,1,368.5,0,0,0 +11452,14028,25548,25547,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,3,6.466234777592957,6.874211972795664,0,2,0,-9,1,-9,-5,-20.39317491657215,-9,0,1,46,2,3,1,2,2,2019,1,3,11,1,40,0,15,1,1,1,0,2.243166018231234,2.243166018231234,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,1,1,0,0,11,3,1,368.5,0,0,0 +11453,14029,25549,25550,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,2,0,7.933967457441262,7.397051587594735,1,0,-9,39,0,13,54.17900707428045,0,0,0,70,2,4,3,3,2,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.656660921285389,7.670079412290467,0,0,38.77,31.36,3,1,0,0,10,3,1,657.5,0,0,0 +11453,14029,25550,25549,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,6.742372741258799,6.693879181325353,1,0,-9,39,0,-13,-67.64304203223018,0,0,0,83,1,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.251068911138435,0,0,59.53,56.44,6,1,0,0,10,3,1,657.5,0,0,0 +11454,14030,25551,-9,-9,-9,1,1,0,62,3,2,2,0,3,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1003.761122458442,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,3,1,0,6,1,1,195,0,0,0 +11454,14031,25552,25553,25551,-9,2,1,1,32,1,2,2,0,1,-9,2,1,0,4,7.945105202522505,8.048653804883886,0,2,0,-9,3,0,8,26.06340161854443,0,0,0,24,3,3,3,3,3,2019,2,4,17,5,37,37,15,1,5,3,0,8.726529028730019,8.726529028730019,0,0,0,0,0,0,0,1,1,0,0,0,122.2545349170712,3,34.04,54.63,4,3,0,0,6,3,1,582.75,0,0,0 +11454,14031,25553,25552,-9,-9,4,1,0,24,1,2,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,3,0,-8,-16.94837611397648,0,1,1,32,1,4,1,-9,-9,2019,3,2,8,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.5815953709216,3,47.68,37.31,1,3,0,0,6,3,1,582.75,0,0,0 +11454,14031,25554,-9,25553,25552,6,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.5299957735231,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,3,1,582.75,0,0,0 +11454,14031,25555,-9,25553,25552,5,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.775903962342,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,582.75,0,0,0 +11454,14032,25556,-9,25551,-9,3,1,1,32,2,2,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1029.152418353807,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,3,1,0,6,1,1,1564,0,0,0 +11455,14033,25557,25558,-9,-9,1,1,1,56,1,0,1,0,2,-9,4,3,0,4,0,9.306834992724591,8.962359952832465,2,0,-9,8,0,4,-51.01051334727784,0,0,0,52,2,4,1,2,2,2019,3,2,7,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.518320298330117,8.012483568846442,0,0,57.16,56.15,2,1,0,0,9,5,1,2399.666666666667,0,0,0 +11455,14033,25558,25557,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,4,7.55063521390205,7.61244486425217,0,2,0,-9,8,0,-4,-64.79764763814097,0,0,0,56,2,4,3,2,2,2019,2,1,6,0,28,25,15,1,0,4,0,6.507620602069267,6.507620602069267,0,0,0,0,0,0,0,0,0,0,3.894840242580025,0,0,0,57.16,56.15,6,1,0,0,9,5,1,2399.666666666667,0,0,0 +11455,14033,25559,-9,25558,25557,4,1,0,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-999.4965767712119,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.522132632781675,0,7.680455200114662,3,41.34,59.43,3,1,0,0,9,5,1,2399.666666666667,0,0,0 +11455,14034,25560,-9,25558,25557,3,1,0,18,2,0,1,0,2,-9,7,2,0,5,6.260472673761226,6.31226232820804,0,3,0,0,0,-9,0,-871.5583402990255,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,8,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7444700293250998,0,0,0,48.18,61.8,6,1,0,0,9,2,1,791,0,0,0 +11456,14035,25561,-9,25562,25564,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-901.09337567131,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,4,1,762.5,0,0,0 +11456,14035,25562,25564,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.696679235529682,7.890136222424393,0,2,0,-9,19,0,0,21.33857224431561,0,0,1,42,3,3,1,2,2,2019,1,2,10,0,30,12,15,1,0,1,0,10.35921802183466,10.35921802183466,0,0,0,0,0,0,0,1,1,0,2.548331454827634,0,3.927322768501725,3,57.33,53.46,1,1,0,0,7,4,1,762.5,0,0,0 +11456,14035,25563,-9,25562,25564,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.577694071353,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,762.5,0,0,0 +11456,14035,25564,25562,-9,-9,2,1,1,42,1,0,2,0,3,-9,2,1,0,3,8.821522182134114,8.969344404257873,0,2,0,-9,19,0,0,-53.65118929803656,0,0,0,42,2,3,1,2,3,2019,1,1,10,0,40,40,15,1,0,1,0,23.38489361301349,23.38489361301349,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,7,4,1,762.5,0,0,0 +11457,14036,25565,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-962.3883561482653,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,0,15,4,6,-9,0,0,0,1,0,0,.0724973746153319,0,0,0,1,1,0,0,0,7.071772490218216,3,40.38,31.72,4,1,0,0,1,1,0,240,0,0,0 +11458,14037,25566,-9,25568,25567,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-972.2350782810121,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,984,0,0,0 +11458,14037,25567,25568,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,4,8.492383992699652,8.568961099286899,0,2,0,-9,6,0,2,130.2307821760749,0,0,0,32,1,4,1,1,2,2019,1,2,16,5,48,55,15,1,5,1,0,14.22094281242079,14.22094281242079,0,0,0,0,0,0,0,1,1,0,3.184492970874814,0,0,0,45.61,54.5,6,1,0,0,4,4,1,984,0,0,0 +11458,14037,25568,25567,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,4,7.972537514496787,8.028588624324911,0,2,0,-9,6,0,-2,-117.6953166106553,0,0,1,34,2,4,1,1,1,2019,1,1,12,3,23,38,15,1,3,1,0,12.96328393205545,12.96328393205545,0,0,0,0,0,0,0,1,1,0,2.623995028724382,0,0,0,45.26,56.19,6,1,0,0,4,4,1,984,0,0,0 +11459,14038,25569,25570,-9,-9,1,1,0,56,1,0,1,0,1,-9,2,1,0,4,9.035362512054402,9.028159103493238,0,2,0,-9,22,0,-3,-52.55013882482078,0,0,0,59,1,4,1,2,3,2019,1,2,6,0,33,33,15,1,0,1,0,27.90953189137749,27.90953189137749,0,0,0,0,0,0,0,1,1,0,3.582415875753452,0,0,0,55.36,54.24,6,1,0,0,4,5,1,587,0,0,0 +11459,14038,25570,25569,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,4,8.402481971633584,8.876559662517135,0,2,0,-9,21,0,3,-79.57499512999064,0,0,0,56,1,4,1,2,3,2019,1,1,12,0,42,39,15,1,0,1,0,15.94406215515728,15.94406215515728,0,0,0,0,0,0,0,1,1,0,5.152835747647984,0,0,0,48.81,59.91,6,1,0,0,4,5,1,587,0,0,0 +11459,14038,25571,-9,25569,25570,3,1,1,16,2,0,1,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1128.808616989031,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,4,5,1,587,0,0,0 +11460,14039,25572,25573,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,6.531191205923817,6.98855312423189,1,0,-9,19,0,-1,48.26539784230332,0,0,0,69,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.251739423778648,6.697363605073803,1.120859272985125,3,61.43,43.34,6,1,0,0,9,2,1,719,0,0,0 +11460,14039,25573,25572,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,5.053770606506695,4.956773924046885,1,0,-9,19,0,1,-13.34915335623777,0,0,0,68,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.297653065305392,11.09024782270383,3,57.16,56.15,7,1,0,0,9,2,1,719,0,0,0 +11461,14040,25574,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,6.670387761462025,6.767584512563873,3,0,0,0,-9,0,-1032.45377020975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.031162302444453,7.207755980275418,0,0,61.85,47.26,5,1,0,0,5,2,1,492,0,0,0 +11462,14041,25575,25576,-9,-9,1,1,0,47,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,13,-18.52374480400997,0,0,0,34,3,4,3,3,2,2019,4,2,24,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.95,37.97,2,1,0,1,9,2,0,485.5,0,0,0 +11462,14041,25576,25575,-9,-9,2,1,1,34,1,0,0,0,3,-9,6,3,0,4,6.36933824404107,6.103482807484034,0,1,0,-9,6,0,-13,-28.23434792021217,0,0,0,47,2,2,3,3,-9,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,56,5,1,0,0,9,2,0,485.5,0,0,0 +11463,14042,25577,-9,25578,25580,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-936.4607774056301,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,5,1,0,0,7,5,1,705.75,0,0,0 +11463,14042,25578,25580,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,7.33804716849551,7.32313266209361,0,2,0,-9,15,0,1,-87.25077600792962,0,0,1,37,1,4,1,2,1,2019,1,2,8,0,28,30,15,1,0,1,0,6.640438784809927,6.640438784809927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,7,1,0,0,7,5,1,705.75,0,0,0 +11463,14042,25579,-9,25578,25580,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.843639487548,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,1,0,0,7,5,1,705.75,0,0,0 +11463,14042,25580,25578,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,4,9.390523579201233,9.177459616532591,0,2,0,-9,15,0,-1,82.41406770259765,0,0,0,38,1,4,1,2,1,2019,1,1,9,1,88,53,15,1,1,1,0,13.76311062239576,13.76311062239576,0,0,0,0,0,0,0,0,0,0,3.912560391535118,0,0,0,55.19,54.26,6,1,0,0,7,5,1,705.75,0,0,0 +11464,14043,25581,-9,-9,-9,1,1,0,55,3,0,1,0,2,-9,2,1,0,3,8.561267328397388,8.157545863289878,4.64916257966915,4,0,0,0,-9,0,-1024.382275997397,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,32,32,15,1,0,-9,0,15.06028774943471,15.06028774943471,0,0,0,0,0,0,0,1,1,0,0,4.911439836398007,0,0,42.1,55.1,3,1,0,0,6,4,1,638,0,0,0 +11464,14044,25582,-9,25581,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-997.4652317486008,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,61.57,5,1,0,0,6,1,1,950,0,0,0 +11465,14045,25583,25584,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.901352325526679,8.793466669146667,5.490725575824466,1,0,-9,34,0,3,58.77398205056981,0,0,0,57,3,3,1,2,-9,2019,1,1,8,0,45,44,15,1,0,1,0,15.77619509424049,15.77619509424049,0,0,0,0,0,0,0,1,1,0,6.02231520160543,5.783543507771246,0,0,57.16,56.15,5,1,0,0,6,4,1,1411.5,0,0,0 +11465,14045,25584,25583,-9,-9,1,1,0,57,1,0,0,0,3,-9,2,1,0,3,5.923800426682415,6.33976145967394,0,1,0,-9,33,0,-3,25.80999564654094,0,0,0,60,2,4,1,3,2,2019,1,2,12,0,8,8,15,1,0,1,0,6.714586814643428,6.714586814643428,0,0,0,0,0,0,0,1,1,0,0,0,71.17559791879349,3,42.82,38.21,3,1,0,0,6,4,1,1411.5,0,0,0 +11465,14046,25585,-9,25584,25583,3,1,1,24,2,0,0,0,2,-9,2,1,0,3,7.658380721946473,8.049211610398205,0,3,0,0,0,-9,0,-1027.949911184503,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,47,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.28,53.83,4,1,0,0,6,4,1,1495,0,0,0 +11466,14047,25586,25587,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,2,7.765009116284743,8.116310960554115,0,1,0,-9,1,-9,-8,27.79931210292122,-9,0,1,45,3,2,1,-9,-9,2019,1,1,26,11,42,0,15,1,11,1,0,6.820158502579255,6.820158502579255,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.65,28.93,3,1,0,1,9,3,0,1084,0,0,0 +11466,14047,25587,25586,-9,-9,1,1,1,45,1,0,0,0,3,-9,2,1,0,2,0,0,0,1,0,-9,1,-9,8,-.2835881191497105,-9,0,0,37,1,2,1,-9,-9,2019,1,2,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.96,26.85,4,1,0,1,9,3,0,1084,0,0,0 +11467,14048,25588,25589,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.231946549343636,8.482336311337775,0,1,0,-9,32,0,1,65.05716602854299,0,0,0,49,2,3,1,3,2,2019,1,2,12,0,45,45,15,1,0,1,0,7.666476497582555,7.666476497582555,0,0,0,0,0,0,0,0,0,0,4.17586108762969,0,14.49740681736947,3,42.46,54.85,4,1,0,0,5,4,0,633.5,0,0,0 +11467,14048,25589,25588,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.462014105494269,7.444972364244586,0,1,0,-9,32,0,-1,25.05980551131286,0,0,0,50,2,3,1,3,-9,2019,1,1,8,0,20,20,15,1,0,1,0,8.803580716490044,8.803580716490044,0,0,0,0,0,0,0,0,0,0,4.403613758626463,0,32.73754204171499,3,46.56,50.26,4,1,0,0,5,4,0,633.5,0,0,0 +11467,14049,25590,-9,25589,25588,3,1,1,18,2,0,0,0,2,1,2,1,0,3,7.34152085388891,7.300984149164705,0,3,0,0,0,-9,0,-1100.443727691061,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,38,0,15,1,0,-9,1,4.0682952142604,4.0682952142604,0,0,0,0,0,0,0,0,0,0,4.296952488550235,0,0,0,49.29,54.59,5,1,0,0,5,2,0,958,0,0,0 +11468,14050,25591,25592,-9,-9,1,1,1,41,1,0,0,0,2,-9,1,1,0,3,7.241563940051186,6.868603399597681,0,1,0,-9,20,0,3,1.199315121540097,0,0,0,38,2,2,3,2,3,2019,2,2,11,2,16,24,15,1,2,3,0,7.918425653896655,7.918425653896655,0,0,0,0,0,0,0,1,1,0,0,0,5.466660739747521,3,56.5,48.33,6,1,0,0,7,2,1,400.5,0,0,0 +11468,14050,25592,25591,-9,-9,2,1,0,38,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,20,0,-3,76.04942427710266,0,0,1,41,2,3,1,2,3,2019,3,1,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.243146387194091,0,0,3,55.98,27.45,6,1,0,0,7,2,1,400.5,0,0,0 +11469,14051,25593,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,3,0,8.41776205021036,8.227757851305405,3,0,0,0,-9,0,-967.1973231777943,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.169480057062216,8.106675668313478,0,0,61.58,43.34,6,1,0,0,5,4,1,641,0,0,0 +11470,14052,25594,25595,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,7.206538571892257,7.491685353554408,0,1,0,-9,7,0,-2,-38.30291692706328,0,1,1,30,1,4,1,1,1,2019,1,2,7,0,36,35,15,1,0,1,0,4.130074940686395,4.130074940686395,0,0,0,0,0,0,0,0,0,0,8.725664063451532,0,0,0,54.1,59.11,6,1,0,0,5,5,1,265,0,0,0 +11470,14052,25595,25594,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,4,9.258869412080564,8.944804654271099,0,1,0,-9,7,0,2,101.7609934444347,0,0,0,28,1,5,1,2,2,2019,1,1,6,0,40,39,15,1,0,1,0,22.84756918604139,22.84756918604139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,5,5,1,265,0,0,0 +11471,14053,25596,25597,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.881898334103328,8.409111763988692,0,1,0,-9,6,0,5,-90.31986639721191,0,0,0,48,2,3,1,-9,-9,2019,1,1,11,0,42,42,15,1,0,1,0,17.99508593773949,17.99508593773949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.33,53.71,5,1,0,0,4,5,1,749.5,0,0,0 +11471,14053,25597,25596,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.376567197811852,8.493298417737803,0,1,0,-9,6,0,-5,10.18681637174989,0,0,0,53,2,4,1,3,3,2019,1,2,10,0,32,32,15,1,0,1,0,20.22678440872741,20.22678440872741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,4,5,1,749.5,0,0,0 +11472,14054,25598,-9,-9,-9,1,1,0,43,2,0,1,0,1,-9,2,1,0,2,8.270662606011463,8.34033168462817,0,4,0,0,0,-9,0,-952.1272132544292,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,15,4,34,30,15,1,4,-9,0,13.49036044539767,13.49036044539767,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.22,59.23,3,1,0,1,9,3,1,143,0,0,0 +11473,14055,25599,-9,-9,-9,1,1,0,42,3,0,1,0,1,-9,2,1,0,3,8.966314092154235,9.230162483242106,7.167517518510266,4,0,0,0,-9,0,-1013.476588433617,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,25,25,15,1,3,-9,0,63.94576847121959,63.94576847121959,0,0,0,0,0,0,0,0,0,0,5.66526282862388,7.009129031329146,0,0,38.26,60.7,6,1,0,0,9,5,1,1575.5,0,0,0 +11473,14055,25600,-9,25599,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1019.009852317806,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1575.5,0,0,0 +11474,14056,25601,25603,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,5,8.364605248181295,8.285703802399686,0,2,0,-9,15,0,-1,94.41826514529112,0,0,1,41,1,2,1,-9,-9,2019,1,2,7,0,37,44,15,1,0,1,0,17.37111586152811,17.37111586152811,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,2,5,1,960.25,0,0,0 +11474,14056,25602,-9,25601,25603,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.068673300914,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,960.25,0,0,0 +11474,14056,25603,25601,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,2,8.498156994823848,8.518731851352404,0,2,0,-9,7,0,1,-41.48239229345309,0,0,0,40,2,5,1,-9,-9,2019,1,1,8,1,40,40,15,1,1,1,0,19.43825406531868,19.43825406531868,0,0,0,0,0,0,0,1,1,0,1.24322519208582,0,0,0,49.28,52.09,3,1,0,0,2,5,1,960.25,0,0,0 +11474,14056,25604,-9,25601,25603,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-921.8544395260959,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,5,1,960.25,0,0,0 +11475,14057,25605,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,3,7.868140114038343,8.060451027420298,0,3,0,0,0,-9,0,-1031.134228043726,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,42,40,15,1,4,-9,0,6.379092619490808,6.379092619490808,0,0,0,0,0,0,0,0,0,0,1.536517889403505,0,3.669699780303013,3,50.88,44.18,4,1,0,0,6,3,0,491,0,0,0 +11476,14058,25606,25607,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,2,8.406158216612363,8.301144662028333,0,1,0,-9,9,0,-1,3.489419035934985,0,0,0,52,2,2,1,3,3,2019,1,2,12,3,22,40,15,1,3,1,0,20.9163898870279,20.9163898870279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.06,36.87,6,1,0,0,4,5,1,373.5,0,0,0 +11476,14058,25607,25606,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.65007867928747,8.577136616494769,0,1,0,-9,9,0,1,130.8087826480525,0,0,0,51,2,2,1,3,2,2019,1,1,10,0,50,45,15,1,0,1,0,13.12662482592584,13.12662482592584,0,0,0,0,0,0,0,0,0,0,6.293157046474041,0,0,0,53.21,39.5,4,1,0,0,4,5,1,373.5,0,0,0 +11477,14059,25608,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1009.293170000584,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.95,1,1,0,0,2,1,0,525,0,0,0 +11478,14060,25609,-9,25610,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-905.6280110577777,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,265.5,0,0,0 +11478,14060,25610,-9,-9,-9,1,1,0,39,3,0,2,0,1,-9,2,1,0,3,7.744500115695892,7.887496960420293,6.294252468816739,4,0,0,0,-9,0,-940.5924115864049,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,6,30,30,15,1,6,-9,0,7.793552087802251,7.793552087802251,0,0,0,0,0,0,0,1,1,0,6.323541070937717,0,0,0,36.37,61.5,5,1,0,0,4,3,1,265.5,0,0,0 +11479,14061,25611,25612,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,4,7.617664238160421,7.500104717318087,0,2,0,-9,8,0,-3,14.73283636304578,0,0,1,45,2,3,1,2,2,2019,1,2,13,1,22,15,15,1,1,1,0,10.81882428695513,10.81882428695513,0,0,0,0,0,0,0,1,1,0,0,0,13.26384213189798,3,43.79,58.33,5,1,0,0,12,3,0,317,0,0,0 +11479,14061,25612,25611,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,3,7.908308185596325,7.92163474443215,0,2,0,-9,8,0,3,-53.34066264115631,0,0,0,42,2,4,1,2,2,2019,1,1,5,0,37,35,15,1,0,1,0,8.154056939899764,8.154056939899764,0,0,0,0,0,0,0,1,1,0,1.506866237207175,0,0,0,58.32,50.22,6,1,0,0,12,3,0,317,0,0,0 +11479,14061,25613,-9,25611,25612,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1037.556989603727,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,3,0,317,0,0,0 +11479,14062,25614,-9,25611,25612,3,1,1,18,2,0,2,1,2,0,7,2,0,4,7.504114307394476,7.652749517365421,0,3,0,0,0,-9,0,-895.0941891751686,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,21,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,5,1,0,0,12,3,0,1382,0,0,0 +11480,14063,25615,25616,-9,-9,2,1,1,41,1,0,2,0,1,-9,1,1,0,2,9.875832206046306,9.864051564895423,0,2,0,-9,6,0,4,46.58741766839201,0,0,0,37,1,4,1,-9,-9,2019,1,1,11,0,70,60,15,1,0,1,0,29.76668640676231,29.76668640676231,0,0,0,0,0,0,0,0,0,0,2.825850645833263,0,0,0,34.36,48.31,4,3,0,0,6,5,1,798,0,0,0 +11480,14063,25616,25615,-9,-9,1,1,0,37,1,0,2,0,1,-9,1,1,0,4,8.984164610370208,8.79587613795397,0,2,0,-9,11,0,-4,-51.85288065940308,0,0,1,41,1,2,1,1,3,2019,1,2,12,0,35,25,15,1,0,1,0,29.51105582273672,29.51105582273672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.49,68.48,5,3,0,0,6,5,1,798,0,0,0 +11480,14063,25617,-9,25616,25615,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.4184661810383,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,6,5,1,798,0,0,0 +11480,14063,25618,-9,25616,25615,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.623549523472,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,6,5,1,798,0,0,0 +11481,14064,25619,25620,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,10,0,9,0,0,0,0,65,3,2,3,3,2,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,1,23.03029499592136,26.43925262707289,0,2.725616383996218,0,266.6025986675839,1,1,0,0,0,0,0,35.45,24.41,3,1,0,0,4,1,1,2375.5,0,0,0 +11481,14064,25620,25619,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,0,0,0,0,0,74,2,1,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,15.43063639876846,1,59.78,34.85,7,1,0,0,4,1,1,2375.5,0,0,0 +11482,14065,25621,-9,-9,-9,1,1,1,58,3,0,0,0,3,-9,1,1,0,4,9.067586777181912,8.944169035647034,0,3,0,0,0,-9,0,-1053.239597901717,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,30,30,15,1,1,-9,0,27.37529881976588,27.37529881976588,0,0,0,0,0,0,0,1,1,0,1.817991644656387,0,0,0,43.67,61.06,5,1,0,0,2,5,0,338,0,0,0 +11483,14066,25622,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.086881923176982,7.905132164159189,0,3,0,0,0,-9,0,-899.8425404122063,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,52,44,15,1,0,-9,0,6.637001651660052,6.637001651660052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,1,11,4,0,260,0,0,0 +11484,14067,25623,25624,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,36,0,7,-22.68899278245686,0,0,0,78,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,56,44,6,1,0,0,10,2,1,867,0,0,0 +11484,14067,25624,25623,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,4,0,7.028542763620062,7.45901157590682,1,0,-9,37,0,-7,-26.968098904974,0,0,0,85,2,3,3,2,3,2019,4,1,18,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8275339481286,118.5612288688585,1,43.09,58.28,3,1,0,0,10,2,1,867,0,0,0 +11485,14068,25625,25626,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.22954686677671,7.467239775675338,1,0,-9,28,0,-2,-60.70165342680149,0,0,0,70,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.297000950886928,7.353928552134771,3.480395121293592,3,55.19,54.26,7,1,0,0,2,4,1,502.5,0,0,0 +11485,14068,25626,25625,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.409561667373346,8.17554908512245,1,0,-9,28,0,2,-3.830131507641692,0,0,0,68,1,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.301580755349015,8.155775578877064,0,0,59.46,46.99,6,1,0,0,2,4,1,502.5,0,0,0 +11486,14069,25627,-9,25630,25629,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.022007269093,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,4,1,1647.75,0,0,0 +11486,14069,25628,-9,25630,25629,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.6104950893736,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,4,1,1647.75,0,0,0 +11486,14069,25629,25630,-9,-9,2,1,1,43,1,0,2,0,2,-9,1,1,0,4,7.785463419612322,7.858155600913487,0,2,0,-9,6,0,2,78.0444545969801,0,0,0,41,2,3,1,2,-9,2019,1,1,12,0,40,0,15,1,0,1,0,10.12297957850355,10.12297957850355,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,4,1,1647.75,0,0,0 +11486,14069,25630,25629,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,3,8.092543340033949,8.205350795839902,0,2,0,-9,6,0,-2,9.178931745326201,0,0,1,43,2,4,1,2,2,2019,1,2,19,7,43,38,15,1,7,1,0,9.729734786883352,9.729734786883352,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.63,55.43,3,1,0,0,2,4,1,1647.75,0,0,0 +11487,14070,25631,25632,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,5,8.290749604810326,7.980231005504345,0,1,0,-9,33,0,2,-55.87955910404541,0,0,0,55,2,4,1,2,2,2019,1,2,8,0,22,35,15,1,0,1,0,17.28864780606301,17.28864780606301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,11,4,1,288.5,0,0,0 +11487,14070,25632,25631,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.0337701915828,8.032631796306733,0,1,0,-9,5,0,-2,-111.4417562923454,0,0,0,57,2,5,1,2,2,2019,1,1,11,1,38,40,15,1,1,1,0,8.932150791198076,8.932150791198076,0,0,0,0,0,0,0,0,0,0,.4079533779529276,0,0,0,48.28,60.18,6,1,0,0,11,4,1,288.5,0,0,0 +11488,14071,25633,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,7.101651866019054,6.999161539968485,3,0,0,0,-9,0,-874.287306583593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,8.082952710821056,0,0,0,0,0,1,1,0,5.518150968923515,6.861194643046755,0,0,62.65,38.83,6,1,0,0,10,2,1,897,0,0,0 +11489,14072,25634,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,3,3,0,2,6.565159773632044,6.814728463062096,0,3,0,-9,0,0,0,-1005.931548917622,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,36,12,12,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,7.71,50.88,1,1,1,1,7,2,0,165,0,0,0 +11490,14073,25635,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1015.107477649998,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.5630502090276,3,62.1,51.16,6,1,0,0,13,1,0,258,0,0,0 +11490,14074,25636,-9,25635,-9,2,1,0,37,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-928.1583099893165,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,6,1,0,0,13,1,0,487,0,0,0 +11491,14075,25637,-9,25640,-9,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-965.5921580203966,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,2,0,722.75,0,0,0 +11491,14075,25638,-9,25640,-9,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1090.96631485492,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,0,722.75,0,0,0 +11491,14075,25639,-9,25640,-9,2,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1115.927429487878,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,2,0,722.75,0,0,0 +11491,14075,25640,-9,-9,-9,1,1,0,34,3,0,3,0,2,-9,2,1,0,4,6.827518676681303,6.6096073193471,3.941369758779915,4,0,0,0,-9,0,-895.3775969832626,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,11,16,15,1,0,-9,0,7.918689634651507,7.918689634651507,0,0,0,0,0,0,0,1,1,0,3.336882655953523,0,0,0,57.16,56.15,6,1,0,0,11,2,0,722.75,0,0,0 +11492,14076,25641,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,4,3,0,3,0,8.152652782833906,8.059842656482171,3,0,0,0,-9,0,-1040.421322933771,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.513050290449622,8.382862782666962,0,0,61.56,36.33,6,1,0,0,13,4,0,499,0,0,0 +11493,14077,25642,25643,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,45,0,-2,-13.32932591082862,0,0,0,65,1,4,3,2,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.238090738699301,0,0,0,54.79,55.86,7,1,0,0,9,4,1,2231.5,0,0,0 +11493,14077,25643,25642,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,8.17239026861875,8.130974146821858,1,0,-9,45,0,2,63.97334471939283,0,0,0,63,2,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.743091089762302,8.715509233692405,0,0,48.61,51.8,6,1,0,0,9,4,1,2231.5,0,0,0 +11494,14078,25644,-9,25645,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1131.240342598366,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,0,504.3333333333333,0,0,0 +11494,14078,25645,-9,-9,-9,1,1,0,39,2,0,2,0,1,-9,2,1,0,4,8.281029881219228,8.046499556521983,0,4,0,0,0,-9,0,-1094.858035370939,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,40,15,1,0,-9,0,11.18204215462521,11.18204215462521,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.87,59.76,3,3,0,0,8,3,0,504.3333333333333,0,0,0 +11494,14078,25646,-9,25645,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-703.4647531589712,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,3,0,504.3333333333333,0,0,0 +11495,14079,25647,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,6.66590098967744,6.174602734831234,3,0,0,0,-9,0,-930.102229707288,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.39261657192742,0,0,59.15,42.12,6,1,0,0,7,2,1,851,0,0,0 +11496,14080,25648,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,3,0,6.532787298198062,6.52524873626619,3,0,0,0,-9,0,-969.0214737302887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.601199612577428,0,4.698063313505745,0,1,1,0,2.788327843136324,6.2999967892038,0,0,50.92,31.76,6,1,0,0,4,2,0,904,0,0,0 +11497,14081,25649,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-854.8510967466277,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.38,55.6,6,1,0,0,12,1,0,97,0,0,0 +11498,14082,25650,25651,-9,-9,2,1,1,54,1,0,1,0,1,-9,2,1,0,4,8.182125840213043,7.847718953181911,0,2,0,-9,24,0,3,64.20622492898326,0,0,0,51,1,5,1,3,3,2019,1,1,11,0,77,0,15,1,0,1,0,4.359259532020153,4.359259532020153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.45,51.59,5,1,0,0,5,3,1,1013.5,0,0,0 +11498,14082,25651,25650,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,5,7.24172258372403,7.435904389000937,0,2,0,-9,24,0,-3,-115.4383028420542,0,0,0,54,1,4,1,1,1,2019,1,2,18,6,18,20,15,1,6,1,0,11.48402861824156,11.48402861824156,0,0,0,0,0,0,0,0,0,0,4.117235126662559,0,0,0,40.67,62.66,3,1,0,0,5,3,1,1013.5,0,0,0 +11498,14083,25652,-9,25651,25650,3,1,0,18,2,0,1,0,2,1,97,3,0,4,0,4.506056818452873,4.64373641467013,3,0,0,0,-9,0,-1088.567467365017,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.313984801809974,0,0,0,27.95,61.48,5,1,0,0,5,3,1,250,0,0,0 +11499,14084,25653,-9,-9,-9,1,1,1,32,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1055.991836971422,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.18,60.36,3,1,0,0,12,1,0,106,0,0,0 +11500,14085,25654,25655,-9,-9,2,1,1,60,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,16,0,8,7.743104175159509,0,0,0,52,2,1,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.88,27.26,6,1,0,0,12,2,0,258.5,0,0,0 +11500,14085,25655,25654,-9,-9,1,1,0,52,1,0,0,0,2,-9,8,3,1,1,0,3.899758563966368,3.843301587409353,1,0,-9,16,0,-8,21.96175318155359,0,0,0,60,2,2,3,-9,-9,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.636983712889351,22.77576672767298,1,56.27,20.58,5,1,0,0,12,2,0,258.5,0,0,0 +11501,14086,25656,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,4.358314464966714,4.442922274971187,3,0,0,0,-9,0,-1017.335394965346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,5.799812463145425,3.15533578049357,1.438504094614363,0,1,1,0,0,4.650597276190091,0,0,51.61,27.86,6,1,0,0,8,2,0,1504,0,0,0 +11502,14087,25657,25658,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,5,8.074899118411233,8.072162746439842,5.417661844129338,1,0,-9,33,0,4,124.1925534264584,0,0,0,57,3,4,1,3,3,2019,1,1,10,0,30,37,15,1,0,1,0,12.06670283975547,12.06670283975547,0,0,0,0,0,0,0,0,0,0,7.055859625444388,6.066470072880871,0,0,54.1,59.11,6,1,0,0,2,5,0,570,0,0,0 +11502,14087,25658,25657,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,4,8.446821380138708,8.693548975357027,0,1,0,-9,33,0,-4,-21.87508617517053,0,0,0,61,2,5,1,2,3,2019,1,2,6,0,50,50,15,1,0,1,0,14.11327836705347,14.11327836705347,0,0,0,0,0,0,0,0,0,0,.5245962762157796,0,0,0,57.16,56.15,6,1,0,0,2,5,0,570,0,0,0 +11503,14088,25659,-9,25662,25661,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.5673915047704,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,2,3,1,422.5,0,0,0 +11503,14088,25660,-9,25662,25661,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.2362895831576,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,2,3,1,422.5,0,0,0 +11503,14088,25661,25662,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,5,8.327994752459819,8.578987245226509,0,2,0,-9,9,0,0,42.38906120945089,0,0,0,43,1,4,1,1,1,2019,1,2,10,2,32,31,15,1,2,1,0,17.22000234174909,17.22000234174909,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,60.74,7,1,0,0,2,3,1,422.5,0,0,0 +11503,14088,25662,25661,-9,-9,2,1,0,43,1,0,2,0,1,-9,1,1,0,4,6.897092149776119,6.742859011750022,0,2,0,-9,9,0,0,115.4846254478134,0,0,1,43,2,5,1,-9,-9,2019,1,1,8,0,30,28,15,1,0,1,0,2.989725054969232,2.989725054969232,0,0,0,0,0,0,0,1,1,0,2.59007428942208,0,0,0,51.83,57.2,6,3,0,0,2,3,1,422.5,0,0,0 +11504,14089,25663,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,4,8.730774679059213,8.727661335663415,0,3,0,0,0,-9,0,-849.4378262122902,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,44,15,1,0,-9,0,17.26103880853662,17.26103880853662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,12,5,1,287,0,0,0 +11505,14090,25664,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,7.463880953632369,7.476321040137949,0,3,0,0,0,-9,0,-1078.46958888742,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,30,16,15,1,0,-9,0,6.031682945195395,6.031682945195395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,6,1,0,0,10,3,0,242,0,0,0 +11506,14091,25665,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,1,0,7.142598477194247,7.032860987679823,3,0,0,0,-9,0,-975.5905399749685,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,0,0,11.84423326622731,0,0,0,1,1,0,0,6.812633527043056,0,0,38.79,17.74,4,1,0,0,4,2,1,654,0,0,0 +11507,14092,25666,-9,25668,25667,2,1,0,20,2,0,1,0,2,0,7,2,0,4,6.2761928204104,6.293906277258435,0,3,0,0,0,-9,0,-1043.184540596681,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,24,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.307781677241818,0,0,0,54.2,57.49,2,1,0,0,9,2,1,1021,0,0,0 +11507,14093,25667,25668,-9,-9,4,1,1,56,1,0,1,0,1,-9,2,1,0,5,8.538789541807056,8.60880586746949,0,2,0,-9,4,0,2,31.57681413950977,0,0,0,54,1,5,1,-9,-9,2019,1,1,7,0,43,38,15,1,0,1,0,16.16102278784762,16.16102278784762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,9,4,1,3850.666666666667,0,0,0 +11507,14093,25668,25667,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,5,7.318776907742527,7.75670840001402,6.54393046149586,2,0,-9,4,0,-2,-166.6999107339248,0,0,0,56,1,5,1,2,2,2019,1,4,11,0,25,23,15,1,0,1,0,6.49610525753612,6.49610525753612,0,0,0,0,0,0,0,1,1,0,6.477271508512876,0,0,0,58.07,46.16,6,1,0,0,9,4,1,3850.666666666667,0,0,0 +11507,14093,25669,-9,25668,25667,3,1,0,17,2,0,1,1,3,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-996.1353664354809,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,6,1,0,0,9,4,1,3850.666666666667,0,0,0 +11508,14094,25670,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,3,8.404660408868342,8.025374810144852,0,3,0,0,0,-9,0,-961.0388815079723,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,35,35,15,1,0,-9,0,10.20670994557943,10.20670994557943,0,0,0,0,0,0,0,0,0,0,3.270212798083756,0,0,0,57.33,53.46,5,1,0,0,9,4,1,1336,0,0,0 +11509,14095,25671,-9,-9,-9,1,1,0,57,3,1,1,0,3,-9,2,1,0,5,7.788139658201265,7.961466994671672,0,4,0,0,0,-9,0,-1073.803519572125,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,37,37,15,1,0,-9,0,8.838272841235867,8.838272841235867,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,7,1,0,0,11,3,1,555,0,0,0 +11510,14096,25672,-9,-9,-9,1,1,1,77,3,0,0,0,1,-9,4,3,0,2,0,8.322430660784516,8.187409602922624,3,0,0,0,-9,0,-953.8232883706487,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.870798662279614,8.706414525960941,25.62284485521461,3,57.57,49.69,6,1,0,0,2,5,1,64,0,0,0 +11511,14097,25673,25674,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,30,0,-1,-146.3801107184246,0,0,0,59,3,2,1,-9,-9,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.32,17.53,2,1,0,0,6,4,0,511,0,0,0 +11511,14097,25674,25673,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,2,8.115899120534142,8.116995826261329,0,1,0,-9,31,0,1,-42.93753566779387,0,0,0,58,3,1,3,3,2,2019,2,1,14,2,53,53,15,1,2,3,0,10.97251162418746,10.97251162418746,0,0,0,0,0,0,0,1,1,0,0,0,4.298749951545155,1,33.2,50.07,2,1,0,0,6,4,0,511,0,0,0 +11512,14098,25675,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,3,7.355872564028629,7.592149831243194,0,3,0,0,0,-9,0,-915.384378843504,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,35,15,1,0,-9,0,4.757739966835093,4.757739966835093,0,0,0,0,0,0,0,0,0,0,2.027073473951011,0,0,0,41.89,46.99,3,1,0,0,1,3,1,960,0,0,0 +11513,14099,25676,25677,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,1,-9,-7,133.6478761968022,-9,0,0,68,2,3,3,-9,-9,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,5,1,0,512.5,0,0,0 +11513,14099,25677,25676,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,4.764026167959867,4.53201156784726,1,0,1,1,-9,7,-21.27360684744711,0,0,0,61,3,5,3,3,3,2019,4,2,13,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3187784816943598,4.696228892427261,0,0,51.41,56.15,6,1,0,0,5,1,0,512.5,0,0,0 +11514,14100,25678,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,3,0,7.985850443191102,8.05599815967634,3,0,0,0,-9,0,-1015.699185100832,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.947021855797188,8.040953709145885,0,0,59.46,36.25,6,1,0,0,2,3,1,194,0,0,0 +11515,14101,25679,-9,25680,25681,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.3252421528597,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,457.6666666666667,0,0,0 +11515,14101,25680,25681,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,4,7.565345333787575,7.630987403859296,0,2,0,-9,28,0,-6,-107.7480286434205,0,0,0,55,1,4,1,2,2,2019,1,2,10,0,30,30,15,1,1,1,0,11.2224965905494,11.2224965905494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,1,0,0,9,4,1,457.6666666666667,0,0,0 +11515,14101,25681,25680,-9,-9,2,1,1,55,1,0,1,0,1,-9,1,1,0,4,7.98623444266337,7.713075985390521,0,2,0,-9,8,0,6,-43.87731733704543,0,0,0,49,2,4,1,-9,-9,2019,1,1,9,0,0,60,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.189168753296636,0,0,0,53,54,6,1,0,0,9,4,1,457.6666666666667,0,0,0 +11516,14102,25682,25683,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,4,7.333130883166167,7.744885717698288,0,2,0,-9,10,0,0,29.04047777933793,0,0,0,53,3,4,1,-9,3,2019,1,2,9,1,28,28,15,1,1,1,0,9.636405077067156,9.636405077067156,0,0,0,0,0,0,0,1,1,0,.7817742191783643,0,10.88776840388472,3,55.19,54.26,6,1,0,0,1,2,1,921.3333333333334,0,0,0 +11516,14102,25683,25682,-9,-9,2,1,1,53,1,0,1,0,3,-9,1,1,0,4,0,0,0,2,0,-9,10,0,0,-.0304810408416136,0,0,0,53,2,4,1,-9,-9,2019,1,1,9,0,0,72,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.2139523825636,3,57.16,56.15,6,1,0,0,1,2,1,921.3333333333334,0,0,0 +11516,14102,25684,-9,25682,25683,4,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1002.205980848245,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,1,2,1,921.3333333333334,0,0,0 +11516,14103,25685,-9,25682,25683,3,1,1,20,2,0,1,0,2,-9,11,3,0,5,7.833630720940604,7.650453280989328,0,3,0,0,0,-9,0,-955.7486582561232,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,1,3,1,1243,0,0,0 +11517,14104,25686,25688,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,2,8.93895668720363,8.925364211370015,0,2,0,-9,3,0,2,113.7755128661917,0,0,0,43,2,3,1,3,2,2019,1,1,14,5,47,50,15,1,5,1,0,20.78663950430709,20.78663950430709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.33,53.81,4,1,0,0,7,4,1,1496.5,0,0,0 +11517,14104,25687,-9,25688,25686,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.351465296019,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1496.5,0,0,0 +11517,14104,25688,25686,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,3,7.233801113006773,7.244642140975448,0,2,0,-9,3,0,-2,-73.84245969453704,0,0,1,45,2,2,1,2,2,2019,1,2,8,0,30,25,15,1,0,1,0,5.437596082304904,5.437596082304904,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,1,0,0,7,4,1,1496.5,0,0,0 +11517,14104,25689,-9,25688,25686,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.3067289414705,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,1496.5,0,0,0 +11518,14105,25690,25692,-9,-9,2,1,0,59,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,19,0,10,0,0,0,0,49,2,3,3,3,3,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.02,53.93,6,1,0,0,12,1,0,488.6666666666667,0,0,0 +11518,14105,25691,-9,25690,25692,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.444726116835,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,1,0,488.6666666666667,0,0,0 +11518,14105,25692,25690,-9,-9,1,1,1,49,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,19,0,-10,0,0,0,0,59,3,4,3,2,3,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,45.08,4,1,1,0,12,1,0,488.6666666666667,0,0,0 +11519,14106,25693,25694,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,50,0,1,-121.0088552391553,0,0,0,72,2,4,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.194730139226929,3,55.86,30.26,6,1,0,0,4,5,1,480,0,0,0 +11519,14106,25694,25693,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,9.322899761270435,9.389549757946156,1,0,-9,50,0,-1,12.19461105834616,0,0,0,73,2,2,3,3,1,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.755931325577311,9.394773558049611,3.014880608448291,3,45.09,55.21,5,1,0,0,4,5,1,480,0,0,0 +11520,14107,25695,25696,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.36301037112122,8.454391984803822,0,1,0,-9,32,0,1,-14.03702528352538,0,0,0,52,2,2,1,-9,-9,2019,1,1,4,1,50,0,15,1,1,1,0,11.0822461461237,11.0822461461237,0,0,0,0,0,0,0,0,0,0,1.776351437242973,0,0,0,66.13,34.75,7,3,0,0,6,4,1,151,0,0,0 +11520,14107,25696,25695,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,2,6.97095942219211,7.087834224852505,0,1,0,-9,32,0,-1,-72.32938415130245,0,0,0,53,2,3,1,3,3,2019,1,2,12,0,20,20,15,1,0,1,0,6.96809752443146,6.96809752443146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.05,54.02,6,3,0,0,6,4,1,151,0,0,0 +11520,14108,25697,-9,25695,25696,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.793125873589158,7.913054599564947,0,3,0,0,0,-9,0,-1172.338505990859,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,0,15,1,0,-9,1,7.38714076178269,7.38714076178269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,5,3,0,0,6,3,1,772,0,0,0 +11521,14109,25698,25700,-9,-9,1,1,0,46,1,0,2,0,3,-9,2,1,0,3,7.397802427341064,7.173484817000634,0,2,0,-9,6,0,6,-24.39098882571555,0,0,0,40,1,4,1,3,3,2019,1,5,26,9,20,27,15,1,9,1,0,8.297353091642243,8.297353091642243,0,0,0,0,0,0,0,1,1,0,0,0,26.32947769735745,3,22.42,61.69,2,3,0,0,9,4,1,1158.5,0,0,0 +11521,14109,25699,-9,25698,25700,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.981209435407,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,9,4,1,1158.5,0,0,0 +11521,14109,25700,25698,-9,-9,5,1,1,40,1,0,2,0,1,-9,2,1,0,4,8.8625282171873,8.580671117988169,0,2,0,-9,6,0,-6,57.50704673358852,0,0,0,46,3,3,1,-9,-9,2019,1,1,9,0,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,9,4,1,1158.5,0,0,0 +11521,14109,25701,-9,25698,25700,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1206.38001007826,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,4,1,1158.5,0,0,0 +11521,14110,25702,-9,25698,25700,2,1,1,18,2,0,2,0,2,1,2,1,0,4,7.759584096475846,7.606338274608189,0,3,0,0,0,-9,0,-1059.568054929734,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,24,12,42,0,15,1,12,-9,1,7.589357046387757,7.589357046387757,0,0,0,0,0,0,0,1,1,0,0,0,15.86745027273176,3,26.44,62.16,4,3,0,0,9,3,1,498,0,0,0 +11522,14111,25703,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,4.473506943479232,4.313008402441756,3,0,0,0,-9,0,-1000.025273926345,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.244542573365846,3.08535696335533,0,0,58.67,39.12,6,1,0,0,12,1,1,277,0,0,0 +11523,14112,25704,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,2,8.098424438223118,7.989771538958452,0,3,0,0,0,-9,0,-1008.146902266191,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,39,41,15,1,9,-9,0,9.826698423021774,9.826698423021774,0,0,0,0,0,0,0,0,0,0,2.061425083818707,0,0,3,33.89,57.81,2,1,0,0,4,4,1,49,0,0,0 +11524,14113,25705,25706,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.431420240329087,8.189830474492382,0,1,0,-9,31,0,3,-129.5584450827726,0,0,0,49,2,2,1,3,3,2019,1,1,12,0,39,37,15,1,0,1,0,14.08684732801238,14.08684732801238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,3,0,0,8,5,1,658,0,0,0 +11524,14113,25706,25705,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,2,8.544318669270352,8.517152513693489,0,1,0,-9,31,0,-3,53.3830874077685,0,0,0,52,2,3,1,3,3,2019,1,2,16,4,39,35,15,1,4,1,0,12.35719962690114,12.35719962690114,0,0,0,0,0,0,0,0,0,0,7.109920299236422,0,0,0,47.45,50.2,3,3,0,0,8,5,1,658,0,0,0 +11525,14114,25707,-9,25708,25710,3,1,0,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.608502873764,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,742.4,0,0,0 +11525,14114,25708,25710,-9,-9,1,1,0,32,1,1,3,0,2,-9,5,1,0,3,0,0,0,2,0,-9,18,0,-1,110.0123252190404,0,0,1,33,2,4,1,2,2,2019,1,2,14,2,0,20,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.93,52,5,1,0,0,4,4,1,742.4,0,0,0 +11525,14114,25709,-9,25708,25710,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.8214768202222,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,742.4,0,0,0 +11525,14114,25710,25708,-9,-9,2,1,1,33,1,1,3,0,2,-9,2,1,0,4,9.00924877871461,9.051019203312416,0,2,0,-9,16,0,1,-85.32481414497052,0,0,0,32,2,3,1,-9,2,2019,1,1,6,0,45,45,15,1,0,1,0,22.07249615361795,22.07249615361795,0,0,0,0,0,0,0,1,1,0,6.519182399669639,0,17.29127879305055,3,57.16,56.15,6,1,0,0,4,4,1,742.4,0,0,0 +11525,14114,25711,-9,25708,25710,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-869.735900916514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,742.4,0,0,0 +11526,14115,25712,-9,25714,25713,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.8609862821152,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,1,0,0,8,2,0,807.6666666666666,0,0,0 +11526,14115,25713,25714,-9,-9,1,1,1,49,1,0,1,0,2,-9,8,3,1,2,7.436070706620219,7.464594935794968,0,2,0,-9,18,0,9,-79.53408695126092,0,0,0,40,3,4,3,2,2,2019,4,2,27,10,40,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.83,25.15,2,1,0,0,8,2,0,807.6666666666666,0,0,0 +11526,14115,25714,25713,-9,-9,2,1,0,40,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,18,0,0,55.809252208072,0,0,1,49,2,2,3,1,1,2019,4,1,3,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.35793770261095,1,63.48,51.85,6,1,1,0,8,2,0,807.6666666666666,0,0,0 +11527,14116,25715,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1017.962198708893,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.73690909497456,3,57.98,29.33,4,1,0,0,13,1,0,597,0,0,0 +11528,14117,25716,25717,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,6.844203579176339,6.614171343383325,1,0,-9,9,0,-1,-4.389590202096569,0,0,0,71,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.790030364102376,0,0,57.16,56.15,6,1,0,0,13,3,1,390,0,0,0 +11528,14117,25717,25716,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,7.349698511956696,7.465708031876442,1,0,-9,9,0,1,-5.658387504801437,0,0,0,70,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.181200643374018,0,0,54.79,55.86,6,1,0,0,13,3,1,390,0,0,0 +11529,14118,25718,25719,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,3,7.890960918218086,7.677122548042519,0,1,0,-9,10,0,-2,-22.08087792839988,0,0,0,62,2,1,3,3,3,2019,2,1,22,9,22,23,15,1,9,3,0,14.14266504063746,14.14266504063746,0,0,0,0,0,0,0,0,0,0,3.001993664176322,0,0,0,47.21,38.83,2,1,0,0,7,3,0,551,0,0,0 +11529,14118,25719,25718,-9,-9,1,1,1,62,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,10,0,2,-21.06632382270974,0,0,0,60,3,3,1,2,3,2019,3,2,30,11,0,44,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.09,32.89,2,1,0,0,7,3,0,551,0,0,0 +11530,14119,25720,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,8,3,1,1,8.254265577954337,8.22353461200602,0,3,0,0,0,-9,0,-964.9478196441521,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,39,39,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.37,19.58,1,1,0,1,2,4,1,689,0,0,0 +11531,14120,25721,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-1058.847020407091,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,6,1,0,0,4,1,1,402,0,0,0 +11532,14121,25722,-9,25724,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1119.297910055618,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,1512,0,0,0 +11532,14121,25723,-9,25724,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1092.621973799458,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,1512,0,0,0 +11532,14121,25724,-9,-9,-9,1,1,0,40,3,0,2,0,1,-9,2,1,0,5,8.429838077775873,8.49812919431634,7.169775043012447,4,0,0,0,-9,0,-1003.542357533917,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,7,1,23,25,15,1,1,-9,0,18.31418842911815,18.31418842911815,0,0,0,0,0,0,0,1,1,0,7.058408377033463,0,0,0,57.06,57.76,6,1,0,1,9,4,1,1512,0,0,0 +11533,14122,25725,-9,25726,25727,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-958.8581587409547,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,5,0,2231.666666666667,0,0,0 +11533,14122,25726,25727,-9,-9,1,1,0,31,1,1,1,0,1,-9,5,1,0,5,8.349287759508481,8.153974468567926,0,2,0,-9,5,0,1,-13.86688779823761,0,0,1,30,1,4,1,2,2,2019,1,2,6,0,37,38,15,1,0,1,0,13.56755343739856,13.56755343739856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,11,5,0,2231.666666666667,0,0,0 +11533,14122,25727,25726,-9,-9,2,1,1,30,1,1,1,0,1,-9,2,1,0,4,8.523865790939462,8.426075274816906,0,2,0,-9,5,0,-1,-75.49152714990218,0,0,0,31,1,5,1,-9,-9,2019,1,1,10,0,36,38,15,1,1,1,0,13.34671755574931,13.34671755574931,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,5,0,0,11,5,0,2231.666666666667,0,0,0 +11534,14123,25728,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,3,8.089480122843467,8.220469802209882,0,3,0,0,0,-9,0,-1046.010120538526,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,45,40,15,1,0,-9,0,10.3477180900477,10.3477180900477,0,0,0,0,0,0,0,0,0,0,4.304461102279696,0,0,0,41.21,51.34,4,1,0,0,7,4,0,567,0,0,0 +11535,14124,25729,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,5,0,5.745732734897562,5.65342539070783,3,0,0,0,-9,0,-1072.702812617756,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.084694757435168,5.716791072740306,0,0,53.86,49.64,7,1,0,0,9,2,1,216,0,0,0 +11536,14125,25730,25731,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.726215721126489,6.590021879978855,1,0,-9,56,0,2,-51.27151083509671,0,0,0,73,3,4,3,3,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.560635587346556,0,0,62.57,40.11,6,1,0,0,6,2,1,1371.5,0,0,0 +11536,14125,25731,25730,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,56,0,-2,27.11458409099897,0,0,0,75,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.168755323845791,0,0,0,57.16,56.15,7,1,0,0,6,2,1,1371.5,0,0,0 +11537,14126,25732,-9,-9,-9,1,1,0,35,2,0,1,0,1,-9,3,3,0,3,0,0,0,2,0,-9,4,0,-8,0,0,0,1,-9,-9,-9,-9,2,3,2019,4,2,29,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.42344543516646,1,28.48,50.65,6,1,1,0,13,1,0,1512,0,0,0 +11537,14127,25733,-9,-9,-9,2,1,0,43,2,0,1,0,2,-9,3,3,0,2,0,0,0,2,0,-9,4,0,8,0,0,0,1,-9,-9,-9,-9,-9,-9,2019,4,1,31,12,0,65,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.58,43.12,2,1,1,0,13,1,0,153,0,0,0 +11537,14128,25734,-9,25733,-9,3,1,1,18,2,0,1,0,2,1,9,3,0,4,0,0,0,3,0,0,0,-9,0,-889.1297063218327,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,1,0,1029,0,0,0 +11538,14129,25735,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,4,3,0,4,0,8.915497539386994,8.575873078079885,3,0,0,0,-9,0,-1044.64234089211,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,80,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.272442922565832,8.977653744539593,0,0,56.35,51,6,1,0,0,12,5,1,924,0,0,0 +11539,14130,25736,25737,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,52,0,-3,0,0,0,0,76,2,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,1,1,1275,0,0,0 +11539,14130,25737,25736,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,52,0,3,0,0,0,0,73,1,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.36,39.55,6,1,0,0,12,1,1,1275,0,0,0 +11540,14131,25738,25739,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,4,8.113777355397675,8.068740321391644,0,1,0,-9,9,0,1,57.23029453124994,0,0,0,53,1,3,1,2,-9,2019,1,2,7,0,40,50,15,1,0,1,0,12.3153574743911,12.3153574743911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.08,54.77,5,1,0,0,11,5,1,690,0,0,0 +11540,14131,25739,25738,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.691994337549625,8.832538139838844,0,1,0,-9,9,0,-1,29.95181537482419,0,0,0,54,3,4,1,3,3,2019,1,1,11,1,39,40,15,1,1,1,0,16.71868923693268,16.71868923693268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.38,45.18,6,1,0,0,11,5,1,690,0,0,0 +11540,14132,25740,-9,25739,25738,3,1,0,23,2,0,0,0,2,-9,2,1,0,3,7.685348860097208,7.868020945093058,0,3,0,0,0,-9,0,-922.43070149573,0,1,1,-9,-9,-9,-9,1,3,2019,-9,0,8,0,40,42,15,1,0,-9,1,6.15414825270913,6.15414825270913,0,0,0,0,0,0,0,0,0,0,3.805439884458797,0,0,0,55.17,47.52,7,1,0,0,11,3,1,561,0,0,0 +11541,14133,25741,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,1,0,6.726617917719935,6.826266741241382,3,0,0,0,-9,0,-978.6417359183044,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,33,12,0,0,15,4,12,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.062069876423724,0,0,23.86,20.5,4,1,0,0,2,3,0,592,0,0,0 +11542,14134,25742,25744,-9,-9,2,1,0,23,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,2,0,0,1,1,21,2,4,3,-9,-9,2019,4,1,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,2,1,0,0,2,1,0,627.5,0,0,0 +11542,14134,25743,-9,25742,25744,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.34814686085,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,627.5,0,0,0 +11542,14134,25744,25742,-9,-9,1,1,1,21,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,2,0,-2,0,0,1,0,23,2,3,3,-9,-9,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,63.4,3,1,1,0,2,1,0,627.5,0,0,0 +11542,14134,25745,-9,25742,25744,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.261632883199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,1,0,627.5,0,0,0 +11543,14135,25746,25747,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,3,0,6.735020530827862,6.957721984150426,1,0,-9,7,0,-2,-114.5945602239543,0,0,0,75,1,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.422096990192978,6.792524588369875,0,0,61.04,39.41,6,1,0,0,12,4,1,1371.5,0,0,0 +11543,14135,25747,25746,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,4,0,8.78615694048225,8.639415409553846,1,0,-9,7,0,2,19.29738589195665,0,0,0,73,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.274249611309773,8.590145510638637,0,0,55.79,52.62,6,1,0,0,12,4,1,1371.5,0,0,0 +11544,14136,25748,25749,-9,-9,1,1,1,47,1,0,1,0,2,-9,1,1,0,2,5.03424869365984,4.834966194400807,0,2,0,-9,29,0,-5,38.72781683545933,0,0,0,52,3,4,1,3,2,2019,1,2,8,1,40,24,15,1,1,1,0,.4628009850064946,.4628009850064946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,27.34,6,1,0,0,10,2,0,776,0,0,0 +11544,14136,25749,25748,-9,-9,2,1,0,52,1,0,1,0,3,-9,1,1,0,4,6.12248230513451,6.539110495449094,0,2,0,-9,29,0,5,-115.2361478787378,0,0,0,47,2,2,1,2,-9,2019,1,1,10,0,40,10,15,1,1,1,0,1.854899022480751,1.854899022480751,0,0,0,0,0,0,0,1,1,0,4.730050433105302,0,0,0,51,54,6,1,0,0,10,2,0,776,0,0,0 +11544,14137,25750,-9,25749,25748,4,1,1,21,2,0,1,0,2,-9,2,1,0,5,7.751823256611341,7.878766506494346,0,3,0,-9,0,-9,0,-1063.068099746451,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,38,0,15,1,0,-9,1,10.12359854373416,10.12359854373416,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,10,4,0,317,0,0,0 +11545,14138,25751,25752,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,7.949511897941582,7.942456947160501,1,0,-9,59,0,2,52.48480707983109,0,0,0,76,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,4.215224778070253,0,0,0,0,0,1,1,0,0,7.846015842656851,0,0,54,46,6,1,0,0,11,3,1,1447.5,0,0,0 +11545,14138,25752,25751,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,6.025369190360472,6.034858873106234,1,0,-9,59,0,-2,12.99709927822881,0,0,0,78,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,10.49400032234665,4.50206899562385,0,0,0,1,1,0,0,5.680155431124818,0,0,51,46,5,1,0,0,11,3,1,1447.5,0,0,0 +11546,14139,25753,25755,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,1,8.164206469147905,8.414152951571577,0,2,0,-9,18,-9,-3,125.6932258410177,-9,0,1,46,2,3,1,2,3,2019,1,1,36,12,35,0,15,1,12,1,0,12.26612441657661,12.26612441657661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.63,28.87,1,1,0,0,5,3,1,381,0,0,0 +11546,14139,25754,-9,25753,25755,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1052.657512314036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,5,3,1,381,0,0,0 +11546,14139,25755,25753,-9,-9,1,1,1,46,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,1,-9,3,157.9647622963394,-9,0,0,43,2,1,1,-9,-9,2019,1,2,36,12,0,0,15,1,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.14,39.1,4,1,0,1,5,3,1,381,0,0,0 +11547,14140,25756,25757,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,7.071742155490097,7.24120197445158,1,0,-9,47,0,-2,-4.549905802536427,0,0,0,68,3,4,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.456847875795384,7.120884091889791,43.27285403536109,3,57.16,56.15,6,1,0,0,10,3,1,1459,0,0,0 +11547,14140,25757,25756,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,4,0,7.452775349332304,7.496915938376806,1,0,-9,47,0,2,-41.33318795294707,0,0,0,66,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.716446366767562,7.706384195516507,0,0,60.7,47.65,6,1,0,0,10,3,1,1459,0,0,0 +11548,14141,25758,25759,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,2,0,5.688314440308848,6.164622717343124,1,0,-9,62,0,-1,-139.9648322747964,0,0,0,80,3,1,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.861345738596376,4.855342367978369,2,60.3,36.05,7,1,0,0,9,2,1,1355.5,0,0,0 +11548,14141,25759,25758,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,1,0,7.273442053680764,7.122468341592602,1,0,-9,62,0,1,3.476709888925408,0,0,0,79,2,2,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,0,9.421499861422424,0,0,0,0,1,1,0,0,7.317982777204817,0,0,49.04,25.26,6,1,0,0,9,2,1,1355.5,0,0,0 +11549,14142,25760,25761,-9,-9,2,1,0,51,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,10,0,-19,101.8967322460856,0,0,0,70,1,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.18,39.58,5,3,0,0,8,2,0,1252.333333333333,0,0,0 +11549,14142,25761,25760,-9,-9,1,1,1,70,1,0,1,0,1,-9,4,3,0,3,0,6.3594827592303,6.102978674283024,2,0,-9,21,0,19,22.56027870340608,0,0,0,51,2,2,3,2,1,2019,4,2,13,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.222463963503021,0,0,0,49.69,52.99,5,3,0,0,8,2,0,1252.333333333333,0,0,0 +11549,14142,25762,-9,25760,25761,3,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.264011031708,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,8,2,0,1252.333333333333,0,0,0 +11550,14143,25763,25764,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,4.666310639946381,4.59634290627242,1,0,-9,7,0,-10,140.5777477038212,0,0,0,81,2,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.179947389280518,4.626190445556736,0,0,54.88,43.9,6,1,0,0,11,2,1,2633,0,0,0 +11550,14143,25764,25763,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,7.004318733647943,7.153176343796209,1,0,-9,47,0,10,154.5226203656639,0,0,0,71,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.460046530996146,0,0,60.33,39.68,6,1,0,0,11,2,1,2633,0,0,0 +11551,14144,25765,25766,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.630413413693693,8.704551506497467,0,1,0,-9,31,0,0,-186.6273567470099,0,0,0,55,1,3,1,-9,-9,2019,1,2,11,0,53,12,15,1,0,1,0,15.89393017485655,15.89393017485655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,4,0,0,8,5,0,931,0,0,0 +11551,14144,25766,25765,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,3,8.799947916462919,9.075654335460426,7.034172383717866,1,0,-9,31,0,0,17.72376964400009,0,0,0,55,1,4,1,-9,-9,2019,1,1,6,0,50,50,15,1,0,1,0,20.16418282314742,20.16418282314742,0,0,0,0,0,0,0,0,0,0,7.722329983759734,7.354484911616329,0,0,55.24,41.86,6,4,0,0,8,5,0,931,0,0,0 +11551,14145,25767,-9,25765,25766,4,1,0,24,2,0,0,0,1,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1114.243762476526,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,35,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.53,46.68,6,4,0,0,8,1,0,153,0,0,0 +11552,14146,25768,25769,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.827162811400887,8.692325307497818,0,1,0,-9,7,0,12,-22.65198239466793,0,0,0,48,2,2,1,2,2,2019,1,1,7,0,45,42,15,1,0,1,0,16.88819781303876,16.88819781303876,0,0,0,0,0,0,0,0,0,0,5.559240787093596,0,0,0,58.15,52.91,6,1,0,0,4,5,1,852.5,0,0,0 +11552,14146,25769,25768,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,2,8.608388944208619,8.775331676113129,0,1,0,-9,7,0,-12,126.2231630373548,0,0,0,60,2,4,1,2,2,2019,1,2,11,2,40,40,15,1,2,1,0,22.25810632818692,22.25810632818692,0,0,0,0,0,0,0,0,0,0,6.200910091374836,0,0,0,46.82,22.2,6,1,0,0,4,5,1,852.5,0,0,0 +11553,14147,25770,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,6.385864129738626,6.704368904203698,3,0,0,0,-9,0,-977.2623432642756,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.707916155186107,6.246497631444893,0,0,44.65,50.72,5,1,0,0,4,2,1,183,0,0,0 +11554,14148,25771,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,2,7.206160775515274,6.921241354158006,0,4,0,0,0,-9,0,-1061.397139406694,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,2,16,16,15,1,2,-9,0,8.872021221328728,8.872021221328728,0,0,0,0,0,0,0,1,1,0,2.109273099827359,0,8.01585546531475,3,58.65,25.78,6,2,0,0,12,2,0,328,0,0,0 +11554,14148,25772,-9,25771,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1071.901949672792,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,328,0,0,0 +11555,14149,25773,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,4,7.660615935489274,7.654209499415092,0,3,0,0,0,-9,0,-992.8832266400315,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,29,30,15,1,2,-9,0,8.902448532868917,8.902448532868917,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,58.7,3,1,0,0,6,3,1,914,0,0,0 +11555,14150,25774,-9,25773,-9,2,1,1,22,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-897.6736698635168,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.427903037279391,0,0,0,57.06,57.76,7,1,1,0,6,1,1,3760,0,0,0 +11556,14151,25775,25776,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,3,0,7.450950074900779,7.549474607588918,1,0,-9,59,0,4,60.19216720779409,0,0,0,79,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.661044689923964,7.347851331861685,0,0,60.45,43.75,2,1,0,0,6,3,1,271.5,0,0,0 +11556,14151,25776,25775,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-4,25.80857267413815,0,0,0,83,2,3,3,3,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.775906900320899,0,0,0,48.63,42.45,6,1,0,0,6,3,1,271.5,0,0,0 +11557,14152,25777,25778,-9,-9,2,1,0,24,1,1,1,0,2,-9,2,1,0,4,7.97963616937592,8.418445292550393,0,2,0,-9,5,0,-3,-34.65623289764291,0,1,1,27,2,5,1,-9,-9,2019,1,1,12,0,35,37,15,1,2,1,0,9.127244346747055,9.127244346747055,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,5,0,0,2,4,0,988,0,0,0 +11557,14152,25778,25777,-9,-9,1,1,1,27,1,1,1,0,2,-9,1,1,0,5,7.929815163258353,7.809359267399873,0,2,0,-9,5,0,3,-27.64669444214601,0,1,0,24,2,4,1,2,3,2019,1,2,11,0,65,50,15,1,0,1,0,5.573278364512943,5.573278364512943,0,0,0,0,0,0,0,1,1,0,.5470885903312241,0,0,0,57.06,57.76,5,1,0,0,2,4,0,988,0,0,0 +11557,14152,25779,-9,25777,25778,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1131.343333614539,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,2,4,0,988,0,0,0 +11558,14153,25780,-9,25782,25783,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.8552947329641,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,384,0,0,0 +11558,14153,25781,-9,25782,25783,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.49469868202,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,12,5,1,384,0,0,0 +11558,14153,25782,25783,-9,-9,2,1,0,40,1,0,3,0,1,-9,2,1,0,4,8.991334846642598,8.621712431225559,0,2,0,-9,7,0,1,181.4709456448126,0,0,1,39,2,4,1,1,1,2019,1,1,8,0,38,39,15,1,0,1,0,20.44736789741927,20.44736789741927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,384,0,0,0 +11558,14153,25783,25782,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,4,8.561129697993101,8.364468910177475,0,2,0,-9,7,0,-1,113.9359516770191,0,0,0,40,1,4,1,3,3,2019,1,2,9,0,70,57,15,1,0,1,0,8.463780481453316,8.463780481453316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,12,5,1,384,0,0,0 +11558,14153,25784,-9,25782,25783,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1014.726792122102,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,1,0,0,12,5,1,384,0,0,0 +11559,14154,25785,25787,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.008537857981016,7.930427747419573,0,2,0,-9,7,0,-1,15.60239443253295,0,0,0,46,2,4,1,2,2,2019,1,1,11,0,40,42,15,1,0,1,0,9.090901639859746,9.090901639859746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.4,48.57,4,1,0,0,5,3,1,1365.333333333333,0,0,0 +11559,14154,25786,-9,25787,25785,4,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-817.1231882214805,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,5,3,1,1365.333333333333,0,0,0 +11559,14154,25787,25785,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,4,6.746807075033209,6.854915588343955,0,2,0,-9,7,0,1,-61.54936254643756,0,0,0,45,2,4,1,2,2,2019,1,2,7,0,13,0,15,1,0,1,0,6.666609319012147,6.666609319012147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,7,1,0,0,5,3,1,1365.333333333333,0,0,0 +11559,14155,25788,-9,25787,25785,3,1,0,18,2,0,1,1,2,0,7,2,0,4,5.920522980370258,6.186145048822801,0,3,0,0,0,-9,0,-1123.822809727443,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,9,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.342987365141675,0,0,0,57.73,54.53,7,1,0,0,5,2,1,293,0,0,0 +11560,14156,25789,25790,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,6.086368830606786,5.959801811731582,1,0,-9,35,0,16,-50.44340293738209,0,0,0,55,2,2,1,3,3,2019,3,1,22,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.884165758108812,5.828343602751071,0,0,42.01,25.29,3,1,0,1,7,2,1,404,0,0,0 +11560,14156,25790,25789,-9,-9,1,1,0,55,1,0,0,0,2,-9,1,1,0,2,0,0,0,1,0,-9,33,0,-16,-102.1316262318527,0,0,0,71,3,2,3,3,3,2019,2,2,9,0,25,20,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.427483253412475,3,58.79,38.08,4,1,0,0,7,2,1,404,0,0,0 +11561,14157,25791,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,1,0,6.261937592754241,6.438052706347054,3,0,0,0,-9,0,-923.1353366698372,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.212010755291844,6.034211101566288,0,0,18.44,24.26,2,1,0,0,1,2,0,381,0,0,0 +11562,14158,25792,25793,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,7.350076011278639,7.567531908490675,1,0,-9,47,0,-1,92.98252780018322,0,0,0,69,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.695330536035121,7.441834569001483,0,0,52.65,30.38,6,1,0,0,6,4,1,826,0,0,0 +11562,14158,25793,25792,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,7.913854469566181,8.002764778735765,1,0,-9,47,0,1,-63.82654982114846,0,0,0,68,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.998258239816625,8.165374092719944,0,0,55.85,46.32,7,1,0,0,6,4,1,826,0,0,0 +11563,14159,25794,25795,-9,-9,2,1,0,51,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,6,0,5,-29.28375367818974,0,0,0,46,2,4,1,3,3,2019,3,1,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,29.03,6,1,0,0,13,4,1,521.3333333333334,0,0,0 +11563,14159,25795,25794,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.828619590992391,8.662449232311307,0,2,0,-9,6,0,-5,40.15833914255994,-9,0,0,51,2,2,3,3,3,2019,2,2,9,0,38,0,15,1,1,3,0,23.12084806966681,23.12084806966681,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,13,4,1,521.3333333333334,0,0,0 +11563,14159,25796,-9,25794,25795,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.1895739890347,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,4,1,521.3333333333334,0,0,0 +11564,14160,25797,25798,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,6.993625421096229,7.05942218129896,1,0,-9,9,0,-1,-25.807122625862,0,0,0,69,3,2,3,3,2,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.817455806338117,7.107295990598918,0,0,41.72,30.82,5,1,0,0,9,2,1,664.5,0,0,0 +11564,14160,25798,25797,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,1,26.16580466568812,0,0,0,68,2,2,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.241385775638206,0,0,0,48.19,42.9,6,1,0,0,9,2,1,664.5,0,0,0 +11565,14161,25799,25800,-9,-9,2,1,0,42,1,0,0,0,2,-9,2,1,0,3,8.360604818445276,8.320259664643475,0,1,0,-9,2,0,-2,-49.6306221121485,0,0,1,44,2,2,1,-9,-9,2019,1,1,22,9,47,49,15,1,9,1,0,9.251977157112812,9.251977157112812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.03,58.4,6,1,0,0,5,3,0,943,0,0,0 +11565,14161,25800,25799,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,2,0,2,23.09901854225216,0,0,0,42,2,3,1,2,2,2019,1,2,10,2,0,47,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.343516544758376,0,0,0,56.94,33.46,6,1,0,0,5,3,0,943,0,0,0 +11566,14162,25801,25804,-9,-9,1,1,0,42,1,0,2,0,2,-9,1,1,0,4,7.221728559356043,7.508394984677672,0,2,0,-9,11,-9,3,118.596060660417,-9,0,1,39,1,4,1,-9,-9,2019,1,2,16,4,38,0,15,1,4,1,0,5.598577240783436,5.598577240783436,0,0,0,0,0,0,0,1,1,0,0,0,1.733825279569062,3,36.1,63.29,4,1,0,0,9,4,0,657.75,0,0,0 +11566,14162,25802,-9,25801,25804,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-997.5898425191024,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,0,657.75,0,0,0 +11566,14162,25803,-9,25801,25804,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1004.938629354553,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,0,657.75,0,0,0 +11566,14162,25804,25801,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,4,8.658827445909486,8.553336908365493,0,2,0,-9,11,-9,-3,85.2248996510784,-9,0,0,42,2,4,1,-9,-9,2019,1,1,7,0,59,0,15,1,0,1,0,9.775085990427254,9.775085990427254,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,9,4,0,657.75,0,0,0 +11567,14163,25805,25806,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-4,63.16275844917959,0,0,0,79,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,6,1,0,0,4,2,1,966.5,0,0,0 +11567,14163,25806,25805,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,4.721166208146157,4.673214673491362,1,0,-9,55,0,4,26.36553406328073,0,0,0,75,3,3,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,3.029671754996099,0,0,0,0,1,1,0,0,4.900561119604551,0,0,31.73,43.65,6,1,0,0,4,2,1,966.5,0,0,0 +11568,14164,25807,-9,-9,-9,1,1,0,31,2,0,0,0,2,-9,2,1,0,5,7.536579441343735,7.76593568972233,0,3,0,-9,0,-9,0,-1087.012976693331,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,20,0,15,1,1,-9,0,8.744704719186062,8.744704719186062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.03,51.06,6,4,0,0,8,3,1,481,0,0,0 +11568,14165,25808,25809,-9,-9,2,1,1,40,1,0,0,0,1,-9,2,1,0,5,8.91418828013777,8.910445051860057,0,1,0,-9,1,-9,7,-39.61667304183501,-9,0,0,33,1,5,1,-9,-9,2019,1,3,8,1,46,0,15,1,1,1,0,16.10073427072658,16.10073427072658,0,0,0,0,0,0,0,0,0,0,1.154361333861493,0,0,0,60.02,56.42,6,4,0,0,8,5,1,621.5,0,0,0 +11568,14165,25809,25808,-9,-9,3,1,0,33,1,0,0,0,1,-9,2,1,0,5,8.583460011047567,8.445596048957986,0,1,0,-9,1,-9,-7,3.450044036232582,-9,0,1,40,1,5,1,-9,-9,2019,1,2,7,0,45,0,15,1,0,1,0,13.38428809595592,13.38428809595592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,4,0,0,8,5,1,621.5,0,0,0 +11569,14166,25810,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,1,0,5.801016394023454,5.872670639425502,3,0,0,0,-9,0,-1100.78906499498,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.734173378632791,0,0,42.2,14.42,6,1,0,0,5,2,0,1011,0,0,0 +11570,14167,25811,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,2,0,6.106660723151215,6.613703803435354,3,0,0,0,-9,0,-1201.831675790008,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,3.490040360282799,0,0,0,6.657621763398079,0,1,1,0,0,6.058631555364011,0,0,35.83,40.64,4,1,0,0,5,2,1,1411,0,0,0 +11571,14168,25812,25813,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,44,0,4,-49.30068637245341,0,0,0,64,1,1,1,-9,-9,2019,3,1,16,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.08,49.91,2,1,0,0,12,2,1,442.5,0,0,0 +11571,14168,25813,25812,-9,-9,1,1,0,64,1,0,0,0,1,-9,1,1,0,1,7.002648646883506,6.756059323658989,0,1,0,-9,44,0,-4,-77.8370572996772,0,0,0,68,2,2,3,2,2,2019,2,2,16,4,17,15,15,1,4,4,0,5.991763833251135,5.991763833251135,0,0,0,0,0,0,0,1,1,0,2.476488972247373,0,0,0,37.35,15.58,1,1,0,0,12,2,1,442.5,0,0,0 +11572,14169,25814,25815,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.365928730330124,6.28675273965887,1,0,-9,7,0,4,27.78504807696979,0,0,0,62,1,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.896159553655349,6.491654167297082,0,0,53.68,45.47,6,1,0,0,7,2,1,303.5,0,0,0 +11572,14169,25815,25814,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-4,-106.8138950596309,0,0,0,66,2,3,3,2,1,2019,4,1,6,0,0,49,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.1152638316959386,0,0,0,57.9,51.84,6,1,0,0,7,2,1,303.5,0,0,0 +11573,14170,25816,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,2,1,0,3,7.902426210901387,8.294812838861427,0,3,0,0,0,-9,0,-1002.869715509106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,40,48,15,1,2,-9,0,6.769933969101639,6.769933969101639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.69,48.96,6,1,0,0,4,3,1,545,0,0,0 +11573,14171,25817,-9,-9,25818,3,1,1,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-995.0108404955591,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,4,3,1,1056,0,0,0 +11573,14171,25818,-9,25816,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.552980064252059,7.386610177360108,0,3,0,0,0,-9,0,-910.2703579008016,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,7.023030350905223,0,0,0,48,59,5,1,0,0,4,3,1,1056,0,0,0 +11574,14172,25819,25820,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,4,0,5.480681121933371,5.551228680768922,1,0,-9,59,0,3,36.57128342127647,0,0,0,81,3,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.622882138609383,5.666906375959068,5.812381820839763,3,63.48,51.85,7,1,0,0,7,2,1,3083,0,0,0 +11574,14172,25820,25819,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,59,0,-3,-3.851141962248383,0,0,0,84,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.700832731554714,0,0,0,57.65,56.13,7,1,0,0,7,2,1,3083,0,0,0 +11575,14173,25821,-9,25823,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-897.4783654675921,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,7,1,0,285.6666666666667,0,0,0 +11575,14173,25822,-9,25823,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1066.999180319261,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,7,1,0,285.6666666666667,0,0,0 +11575,14173,25823,-9,-9,-9,1,1,0,39,3,0,2,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-983.1184197105661,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.18,48.32,4,1,0,0,7,1,0,285.6666666666667,0,0,0 +11576,14174,25824,-9,25825,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-1038.750417786372,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,31,3,1,0,0,9,3,0,1134.5,0,0,0 +11576,14174,25825,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,1,1,0,2,7.78664786761068,7.846252544108095,0,4,0,0,0,-9,0,-951.536079602685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,22,20,15,1,5,-9,0,12.48031839209495,12.48031839209495,0,0,0,0,0,0,0,1,1,0,0,0,3.015479590876259,3,50.53,40.47,6,1,0,1,9,3,0,1134.5,0,0,0 +11577,14175,25826,25827,-9,-9,1,1,0,59,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,36,-9,-3,46.09998785975317,-9,0,0,62,1,3,1,3,2,2019,3,2,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71.98810406489949,3,50.02,36.37,4,1,1,0,11,5,1,1225,0,0,0 +11577,14175,25827,25826,-9,-9,2,1,1,62,1,0,1,0,1,-9,2,1,0,3,9.208338106227737,9.421167836823527,0,2,0,-9,1,-9,3,133.2232147210974,-9,0,0,59,2,3,3,-9,-9,2019,2,1,6,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,6,1,0,0,11,5,1,1225,0,0,0 +11578,14176,25828,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,3,0,6.043469425752392,5.80100933948758,3,0,0,0,-9,0,-1013.591241861959,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.736344989013467,6.154061487993328,0,0,52,47,5,1,0,0,11,2,1,585,0,0,0 +11579,14177,25829,25830,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.695003669264219,7.541755871050696,0,1,0,-9,37,0,-1,-40.07102363558934,0,0,0,58,2,4,3,3,3,2019,2,2,10,0,21,21,15,1,0,4,0,9.684344312384328,9.684344312384328,0,0,0,0,0,0,0,0,0,0,4.849412700489479,0,4.55266634537868,3,54.79,55.86,6,1,0,0,10,3,1,2024.5,0,0,0 +11579,14177,25830,25829,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,4,0,7.754068151794659,7.491710496006866,1,0,-9,37,0,1,-152.6096050849567,0,0,0,57,2,4,1,3,-9,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.190094158267526,7.65349413075311,0,3,57.57,46.51,6,1,0,0,10,3,1,2024.5,0,0,0 +11580,14178,25831,25833,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,2,7.98004102724405,7.850805454187655,0,2,0,-9,27,0,2,-11.9339539083357,0,0,0,50,2,2,1,3,3,2019,1,2,11,1,40,39,15,1,1,1,0,8.128665396629749,8.128665396629749,0,0,0,0,0,0,0,1,1,0,3.058979982688451,0,0,0,57.33,42.93,2,1,0,0,4,4,1,404.3333333333333,0,0,0 +11580,14178,25832,-9,25833,25831,3,1,1,16,2,0,1,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-973.829311413767,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.84,60.5,6,1,0,0,4,4,1,404.3333333333333,0,0,0 +11580,14178,25833,25831,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,2,8.194865287347433,7.928295644977151,0,2,0,-9,27,0,-2,-30.49792214580865,0,0,0,52,2,2,1,2,3,2019,1,1,16,5,43,41,15,1,5,1,0,7.862488995675865,7.862488995675865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.82,34.39,5,1,0,0,4,4,1,404.3333333333333,0,0,0 +11581,14179,25834,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.535225568918468,8.746561125120989,0,3,0,0,0,-9,0,-1035.174503652013,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,15.69593093846998,15.69593093846998,0,0,0,0,0,0,0,0,0,0,4.81571872376165,0,0,0,56.57,57.78,6,1,0,0,2,5,1,734,0,0,0 +11582,14180,25835,25836,-9,-9,2,1,0,48,1,0,0,0,2,-9,1,1,0,4,6.73605730497905,6.903687975402417,0,1,0,-9,27,0,-4,-30.3323904060059,0,0,0,52,2,3,1,2,2,2019,1,1,12,0,40,0,15,1,0,1,0,2.686356053709968,2.686356053709968,0,0,0,0,0,0,0,0,0,0,4.002859235917168,0,0,3,40.23,61.31,6,1,0,0,5,3,1,306.5,0,0,0 +11582,14180,25836,25835,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,3,7.150719938860002,7.618661769408362,0,1,0,-9,25,0,4,-30.79300787417783,0,0,0,48,2,4,1,-9,2,2019,1,2,8,0,45,40,15,1,0,1,0,4.569051461434478,4.569051461434478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,51.29,5,1,0,0,5,3,1,306.5,0,0,0 +11583,14181,25837,25838,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.560494712521574,7.300527530117309,0,1,0,-9,7,0,-3,-21.82784811283903,0,0,0,55,2,3,1,2,2,2019,1,2,8,0,25,31,15,1,0,1,0,8.919232037991716,8.919232037991716,0,0,0,0,0,0,0,0,0,0,2.007125692261049,0,0,0,54.37,54.8,6,1,0,0,10,4,1,492,0,0,0 +11583,14181,25838,25837,-9,-9,2,1,1,55,1,0,0,0,2,-9,1,1,0,3,7.986837611853926,8.118737068205277,0,1,0,-9,7,0,3,-81.10022460612899,0,0,0,52,2,3,1,3,3,2019,1,1,9,0,38,40,15,1,0,1,0,8.218026820964868,8.218026820964868,0,0,0,0,0,0,0,0,0,0,3.544883297722279,0,0,0,55.23,46.15,5,1,0,0,10,4,1,492,0,0,0 +11583,14182,25839,-9,25837,-9,3,1,1,22,2,0,0,0,2,-9,2,1,0,5,8.380089686694438,8.528473896800049,0,3,0,0,0,-9,0,-1038.880856245283,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,46,15,1,0,-9,1,13.37643873993712,13.37643873993712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,10,4,1,304,0,0,0 +11583,14183,25840,-9,25837,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.963573947119234,7.940826120290773,0,3,0,0,0,-9,0,-945.3676157674863,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,41,15,1,3,-9,1,9.450749506880085,9.450749506880085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,5,1,0,0,10,4,1,400,0,0,0 +11584,14184,25841,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,1,7.861454839420438,8.070783466287091,6.79662066145988,3,0,0,0,-9,0,-972.3101742377041,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,35,36,15,1,0,-9,0,8.253375848867471,8.253375848867471,0,0,0,0,0,0,0,1,1,0,0,7.350244214783134,0,0,56.32,20.54,4,1,0,0,5,4,1,829,0,0,0 +11585,14185,25842,25843,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.160855444916209,4.907113792683529,1,0,-9,52,0,-2,-132.3992458096669,0,0,0,74,2,3,3,2,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.758600736035772,4.996607386053467,0,0,53.61,53.59,7,1,0,0,5,3,1,603,0,0,0 +11585,14185,25843,25842,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.784489051687521,7.755356915946135,1,0,-9,52,0,2,62.85789355691747,0,0,0,72,3,4,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.562043440247472,7.570404789759433,0,0,44.13,51.34,6,1,0,0,5,3,1,603,0,0,0 +11586,14186,25844,25845,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,2,9.123166578896869,8.841203306649039,0,1,0,-9,8,0,3,47.45305581008232,0,0,1,41,1,4,1,3,2,2019,1,1,13,2,36,33,15,1,2,1,0,21.43534634887047,21.43534634887047,0,0,0,0,0,0,0,0,0,0,.6827550951030184,0,.2951528400241763,3,45.99,38.65,5,1,0,0,10,5,1,1499,0,0,0 +11586,14186,25845,25844,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,4,8.383818592491773,8.653132139473222,0,1,0,-9,8,0,-3,-6.701899910386458,0,0,0,44,1,2,1,3,2,2019,1,2,8,0,37,37,15,1,0,1,0,13.93180717860778,13.93180717860778,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.74,57.22,6,1,0,0,10,5,1,1499,0,0,0 +11587,14187,25846,-9,25848,25847,4,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-965.2688538345117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,13,4,1,311.6666666666667,0,0,0 +11587,14187,25847,25848,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,2,8.34154123246531,8.566014005050192,0,2,0,-9,23,0,0,-27.41367079834511,0,0,0,50,2,4,1,-9,-9,2019,1,2,7,0,37,37,15,1,0,1,0,15.57348081269438,15.57348081269438,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.34,48.31,6,1,0,0,13,4,1,311.6666666666667,0,0,0 +11587,14187,25848,25847,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,4,8.108260082239118,7.928190734169411,0,2,0,-9,18,0,0,31.85572095166303,0,0,0,50,2,2,1,-9,-9,2019,1,1,11,0,37,36,15,1,0,1,0,8.509693091067255,8.509693091067255,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,50.73,5,1,0,0,13,4,1,311.6666666666667,0,0,0 +11587,14188,25849,-9,25848,25847,3,1,0,18,2,0,2,0,2,1,97,3,0,3,6.732477965788659,6.81833260394114,0,3,0,0,0,-9,0,-1075.172935591638,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,13,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,6,1,0,0,13,4,1,1402,0,0,0 +11588,14189,25850,25851,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,6.134591662192793,6.338958078831912,1,0,-9,59,0,0,44.92478420403291,0,0,0,77,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,5.964317706478163,0,0,0,0,0,1,1,0,5.092756135667844,6.465160374043553,120.8283652121678,1,44.98,33.53,6,1,0,0,8,2,1,307,0,0,0 +11588,14189,25851,25850,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,0,15.94997855524096,0,0,0,77,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,8,2,1,307,0,0,0 +11589,14190,25852,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-942.4962281603009,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.24,37.01,4,1,0,0,13,1,0,431,0,0,0 +11589,14191,25853,-9,25852,-9,2,1,0,23,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-883.2837764535619,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,1,0,0,13,1,0,226,0,0,0 +11589,14192,25854,-9,25852,-9,3,1,1,22,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1047.561380595474,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,54.48,5,1,1,1,13,1,0,527,0,0,0 +11590,14193,25855,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,3,3,0,5,0,6.6910119804322,7.338968726599347,3,0,0,0,-9,0,-1098.295064664144,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,10,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.085188792748882,6.867093197269819,0,0,39.89,52.21,5,1,1,0,11,3,0,650,0,0,0 +11591,14194,25856,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-1090.418737882107,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.73,25.68,5,1,0,0,2,1,0,633,0,0,0 +11592,14195,25857,25858,-9,-9,2,1,1,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,39,0,0,0,0,0,0,58,3,1,3,3,3,2019,4,1,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.75,32.15,2,1,0,0,1,1,0,1452,0,0,0 +11592,14195,25858,25857,-9,-9,1,1,0,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,39,0,0,0,0,0,0,58,3,1,3,3,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.82,14.33,5,1,0,0,1,1,0,1452,0,0,0 +11593,14196,25859,25860,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,2,8.548423953248186,8.337443607914176,0,1,0,-9,14,0,2,31.17593916079715,0,0,0,53,1,3,1,3,2,2019,1,2,12,2,43,42,15,1,2,1,0,15.96036145779851,15.96036145779851,0,0,0,0,0,0,0,0,0,0,5.154029040051766,0,0,0,47.74,37.85,6,1,0,0,2,5,1,1146.5,0,0,0 +11593,14196,25860,25859,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.592583250932588,9.047300421734986,0,1,0,-9,14,0,-2,39.46806942644341,0,0,0,55,2,2,1,3,3,2019,1,1,9,1,41,40,15,1,1,1,0,20.10541123415898,20.10541123415898,0,0,0,0,0,0,0,0,0,0,1.935039529949059,0,17.10484897139328,3,54.37,54.8,6,1,0,0,2,5,1,1146.5,0,0,0 +11594,14197,25861,25862,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,4,8.281476810144413,7.93811287170013,0,1,0,-9,2,0,1,-47.24485839889118,0,1,0,23,1,4,1,-9,-9,2019,1,2,7,0,37,38,15,1,0,1,0,11.97062765359384,11.97062765359384,0,0,0,0,0,0,0,0,0,0,1.676000959214979,0,0,0,58.15,52.91,6,1,0,0,7,5,0,685,0,0,0 +11594,14197,25862,25861,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,4,8.547324160917812,8.688948941880591,0,1,0,-9,2,0,-1,-110.6737421710922,-9,1,1,24,1,4,1,-9,-9,2019,1,1,9,0,45,0,15,1,0,1,0,13.17742335477504,13.17742335477504,0,0,0,0,0,0,0,0,0,0,3.694519210400385,0,0,0,55.19,54.26,6,1,0,0,7,5,0,685,0,0,0 +11595,14198,25863,25864,-9,-9,1,1,0,50,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,23,0,2,-67.99449363201892,0,0,0,48,2,3,1,2,2,2019,3,2,4,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,46.5,6,1,0,0,6,2,1,379.5,0,0,0 +11595,14198,25864,25863,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,3,8.134375555615872,8.128895027207625,0,2,0,-9,7,0,-2,15.24256613862431,0,0,0,50,2,3,3,3,3,2019,2,1,7,0,40,45,15,1,0,3,0,8.759152354673368,8.759152354673368,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,6,2,1,379.5,0,0,0 +11596,14199,25865,25868,-9,-9,3,1,0,34,1,1,3,0,2,-9,2,1,0,5,7.922037361177126,8.103107128278795,0,2,0,-9,4,0,-18,-30.19181855894053,0,0,1,52,2,5,1,-9,-9,2019,1,1,12,0,36,24,15,1,0,1,0,8.361357936070133,8.361357936070133,0,0,0,0,0,0,0,1,1,0,7.114363228704831,0,0,0,39.66,61.49,6,1,0,0,2,4,1,1332.25,0,0,0 +11596,14199,25866,-9,25865,25868,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.6145292866261,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,1332.25,0,0,0 +11596,14199,25867,-9,25865,25868,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.359736546616,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,4,1,1332.25,0,0,0 +11596,14199,25868,25865,-9,-9,1,1,1,52,1,1,3,0,2,-9,1,1,0,5,8.187220033315311,8.376751564518679,0,2,0,-9,4,0,18,-16.39440143679541,0,0,0,34,2,5,1,2,1,2019,1,3,12,1,40,50,15,1,1,1,0,11.90307201301633,11.90307201301633,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.99,57.75,6,1,0,0,2,4,1,1332.25,0,0,0 +11597,14200,25869,25870,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,7.793649487719246,7.938858287989248,0,1,0,-9,9,0,1,13.9707840201752,0,0,0,57,2,3,1,2,2,2019,1,1,10,0,40,40,15,1,1,1,0,6.891308173204073,6.891308173204073,0,0,0,0,0,0,0,1,1,0,1.082248130992844,0,0,0,50,49,5,1,0,0,2,5,1,438.5,0,0,0 +11597,14200,25870,25869,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.745003976418673,8.512755463875706,5.268833021194379,1,0,-9,40,0,-1,37.1124321493125,0,0,0,58,2,3,1,2,2,2019,1,2,12,2,37,38,15,1,2,1,0,16.72687074463666,16.72687074463666,0,0,0,0,0,0,0,1,1,0,0,5.518293089716133,0,0,46.11,49.16,6,1,0,0,2,5,1,438.5,0,0,0 +11598,14201,25871,25872,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,8.720195671811092,9.0466705873162,1,0,-9,8,0,3,-58.07070514705632,0,0,0,65,1,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.937414681222764,8.595356292441137,17.43964429032948,3,58.08,40.76,6,1,0,0,5,4,1,821,0,0,0 +11598,14201,25872,25871,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,46,0,-3,62.7941300623573,0,0,0,68,1,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.638842299120687,0,11.83985045130324,3,55.31,50.07,7,1,0,0,5,4,1,821,0,0,0 +11598,14202,25873,-9,25872,25871,3,1,1,37,2,0,0,0,2,-9,2,1,0,3,8.600135424343115,9.06407993068497,0,3,0,0,0,-9,0,-765.9003341176574,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,48,47,15,1,0,-9,1,17.21834892897827,17.21834892897827,0,0,0,0,0,0,0,1,1,0,3.147990424721162,0,0,0,41.74,44.41,6,1,0,0,5,5,1,1282,0,0,0 +11598,14203,25874,-9,25872,25871,4,1,1,34,2,0,0,0,2,-9,2,1,0,2,8.63121269490685,8.786207032020101,0,3,0,0,0,-9,0,-1014.11803777494,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,2,37,37,15,1,2,-9,1,17.97894953018905,17.97894953018905,0,0,0,0,0,0,0,1,1,0,3.308002159566301,0,0,0,37.5,47.74,5,1,0,0,5,5,1,255,0,0,0 +11598,14204,25875,-9,25872,25871,5,1,1,32,2,0,0,0,3,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1077.449921741318,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.984008204100228,0,0,0,49.04,55.86,6,1,0,0,5,1,1,1601,0,0,0 +11599,14205,25876,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,6.356975846725258,6.450083929477359,3,0,0,0,-9,0,-1021.196422616886,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.75739537019571,0,0,55.01,24.68,3,1,0,0,2,2,0,209,0,0,0 +11600,14206,25877,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,5,0,7.71973637455736,7.756038731378047,3,0,0,0,-9,0,-872.556228289194,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.099994293960459,7.350121209561145,0,0,57.06,57.76,6,4,0,0,6,3,1,704,0,0,0 +11601,14207,25878,25879,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,2,-131.8644503256239,0,0,0,77,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,53.23,6,1,0,0,12,2,1,856,0,0,0 +11601,14207,25879,25878,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,7.463177962544157,7.479406074757942,1,0,-9,6,0,-2,105.7031516152767,0,0,0,79,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.397449516299577,0,0,55.96,49.93,6,1,0,0,12,2,1,856,0,0,0 +11602,14208,25880,25881,-9,-9,3,1,1,55,1,0,0,0,2,-9,2,1,0,4,7.706187841173948,8.010574835566622,0,1,0,-9,5,0,2,-125.288469786582,-9,0,0,53,2,2,1,2,3,2019,1,2,13,1,50,0,15,1,1,1,0,5.957905962059415,5.957905962059415,0,0,0,0,0,0,0,0,0,0,3.042649695078357,0,0,0,36.76,58.96,5,1,0,0,11,4,1,1428.5,0,0,0 +11602,14208,25881,25880,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,8.299810082852085,8.003655471899876,0,1,0,-9,5,0,-2,-104.800816846784,0,0,0,55,2,4,1,2,2,2019,1,3,14,3,37,37,15,1,3,1,0,12.3667733638403,12.3667733638403,0,0,0,0,0,0,0,0,0,0,3.745361053043679,0,0,0,46.8,46.5,6,1,0,0,11,4,1,1428.5,0,0,0 +11603,14209,25882,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,2,1,0,5,8.478067105975612,8.496157632575557,0,3,0,0,0,-9,0,-958.5578245695734,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,38,15,1,0,-9,0,17.18326417723463,17.18326417723463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,3,1,0,0,12,5,1,324,0,0,0 +11604,14210,25883,-9,25885,-9,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.9534018565877,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,7,3,1,606.6666666666666,0,0,0 +11604,14210,25884,-9,25885,-9,1,1,1,16,2,0,1,0,2,-9,2,2,0,5,6.504652134714756,6.741110049115848,0,4,0,0,0,-9,0,-970.0239900593701,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,21,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.42,54.81,7,2,0,0,7,3,1,606.6666666666666,0,0,0 +11604,14210,25885,-9,-9,-9,2,1,0,34,2,0,1,0,1,-9,2,1,0,3,8.01760122184143,7.892894921376774,0,4,0,0,0,-9,0,-941.8561626202868,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,28,0,15,1,0,-9,0,12.34742641991951,12.34742641991951,0,0,0,0,0,0,0,1,1,0,.3056044234227715,0,8.191701785803524,3,32.29,47.32,4,2,0,0,7,3,1,606.6666666666666,0,0,0 +11605,14211,25886,25887,-9,-9,1,1,0,35,1,1,1,0,2,-9,2,1,0,4,9.101456181052262,9.132681532097806,0,2,0,-9,4,0,-2,151.6356847947378,0,0,1,37,1,3,1,-9,-9,2019,1,2,11,0,45,16,15,1,0,1,0,23.29806043620358,23.29806043620358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,6,5,1,623,0,0,0 +11605,14211,25887,25886,-9,-9,2,1,1,37,1,1,1,0,1,-9,2,1,0,3,8.67466004233283,8.499045550531813,0,2,0,-9,4,0,2,-73.77286406852889,0,0,0,35,2,4,1,-9,-9,2019,1,1,17,7,42,42,15,1,7,1,0,12.96450702932208,12.96450702932208,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.03,55.1,5,1,0,0,6,5,1,623,0,0,0 +11605,14211,25888,-9,25886,25887,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.492630435656,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,6,5,1,623,0,0,0 +11606,14212,25889,-9,25890,25893,3,1,1,12,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1212.420259000413,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,12,4,1,1862,0,0,0 +11606,14212,25890,25893,-9,-9,1,1,0,38,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-3,132.346848097368,0,0,1,41,3,4,1,3,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,5,1,0,0,12,4,1,1862,0,0,0 +11606,14212,25891,-9,25890,25893,4,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.344927657438,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,4,1,1862,0,0,0 +11606,14212,25892,-9,25890,25893,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.754867111409,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1862,0,0,0 +11606,14212,25893,25890,-9,-9,2,1,1,41,1,1,3,0,3,-9,2,1,0,4,8.980930557397715,9.445853533335873,0,2,0,-9,7,0,3,-42.47999009020057,0,0,0,38,2,4,3,-9,-9,2019,2,1,9,0,0,0,15,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,6,1,0,0,12,4,1,1862,0,0,0 +11607,14213,25894,25895,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,3,8.268490502743889,8.280773527897837,0,1,0,-9,3,0,-3,23.83605618708717,0,1,1,27,2,4,1,-9,2,2019,1,3,15,5,38,40,15,1,5,1,0,12.45774487861909,12.45774487861909,0,0,0,0,0,0,0,0,0,0,3.382861233839496,0,0,0,56.01,47.11,7,1,0,0,2,5,1,912,0,0,0 +11607,14213,25895,25894,-9,-9,3,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.569992775892812,7.977337108685962,0,1,0,-9,3,0,3,43.53904735959964,0,1,0,24,2,3,1,-9,-9,2019,1,1,7,0,40,38,15,1,0,1,0,13.65791367000401,13.65791367000401,0,0,0,0,0,0,0,0,0,0,2.449804716109175,0,0,0,57.16,56.15,6,1,0,0,2,5,1,912,0,0,0 +11608,14214,25896,25897,-9,-9,1,1,1,43,1,0,4,0,2,-9,1,1,0,5,2.030651121500816,2.114641447606468,0,2,0,-9,5,0,-1,109.9602063372979,0,0,0,44,3,3,3,3,3,2019,2,2,19,6,11,30,15,1,6,3,0,.0851585100921187,.0851585100921187,0,0,0,0,0,0,0,1,1,0,0,0,7.408193760674325,3,38,39.7,1,3,0,1,8,1,0,502.6666666666667,0,0,0 +11608,14214,25897,25896,-9,-9,2,1,0,44,1,0,4,0,3,-9,6,3,0,3,0,0,0,2,0,-9,5,0,1,-11.10711502523056,0,0,1,43,2,5,1,-9,-9,2019,3,1,30,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.03,39.52,2,3,0,1,8,1,0,502.6666666666667,0,0,0 +11608,14214,25898,-9,25897,25896,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-852.0974246357184,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,502.6666666666667,0,0,0 +11609,14215,25899,25900,-9,-9,3,1,1,55,1,0,0,0,2,-9,4,3,0,4,0,7.980063484557276,8.091427953485942,1,0,-9,5,0,0,198.9222726214264,0,0,0,55,2,3,3,2,2,2019,4,1,9,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.218566715958255,7.995407400480731,127.2235445973473,3,49.91,58.02,5,1,0,0,6,3,1,544,0,0,0 +11609,14215,25900,25899,-9,-9,1,1,0,55,1,0,0,0,2,-9,4,3,0,3,0,4.634496009801651,4.293088514748229,1,0,-9,28,0,0,184.8143410016322,0,0,0,55,2,4,3,-9,-9,2019,4,3,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.078648044211158,39.98315349614352,3,46.95,51.49,3,1,0,0,6,3,1,544,0,0,0 +11610,14216,25901,25902,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,3,0,0,0,0,70,2,2,3,3,-9,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.537110921124176,1,40.09,33.42,3,1,0,0,5,1,1,708.5,0,0,0 +11610,14216,25902,25901,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-3,0,0,0,0,73,3,2,3,-9,-9,2019,4,1,18,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.99,33.44,6,1,0,0,5,1,1,708.5,0,0,0 +11611,14217,25903,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,1,1,0,4,6.417195223556748,6.823669455603414,5.67041047473138,3,0,0,0,-9,0,-921.5022605941363,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,40,40,15,1,0,-9,0,1.762024229483793,1.762024229483793,0,0,0,0,0,0,0,1,1,0,6.219979503479281,5.62834538677245,0,0,54.2,57.49,6,1,0,0,7,2,1,4425,0,0,0 +11612,14218,25904,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-873.7053404488817,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.94,19.56,5,1,0,0,13,1,0,67,0,0,0 +11613,14219,25905,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,5,0,7.319718536174148,6.946137504954187,3,0,0,0,-9,0,-961.3377974206782,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.295850436267489,0,0,46.21,58.07,2,1,0,0,11,3,1,1148,0,0,0 +11614,14220,25906,25907,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,2,7.183710302869985,7.454553350546397,0,1,0,-9,24,0,0,83.15996491326283,0,0,0,54,3,3,1,-9,-9,2019,1,1,12,0,25,39,15,1,0,1,0,8.390014404785195,8.390014404785195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.8,5,1,0,0,10,4,0,759,0,0,0 +11614,14220,25907,25906,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,3,8.26243533505269,8.220219625224354,0,1,0,-9,24,0,0,4.180923221138568,0,0,0,54,3,2,1,-9,-9,2019,1,2,11,0,50,53,15,1,0,1,0,10.18480322856218,10.18480322856218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,10,4,0,759,0,0,0 +11614,14221,25908,-9,25906,25907,3,1,1,32,2,0,0,0,3,-9,1,1,0,3,8.518675499208555,8.581135936679424,0,3,0,0,0,-9,0,-1096.882920142823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,60,90,15,1,3,-9,1,8.504790261324603,8.504790261324603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,54.32,4,1,0,1,10,4,0,1470,0,0,0 +11614,14222,25909,-9,25906,25907,4,1,1,26,2,0,0,0,2,-9,2,1,0,4,7.175484108656848,7.18268327393738,0,3,0,0,0,-9,0,-997.1197930934692,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,0,15,1,0,-9,1,3.234858008022393,3.234858008022393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,10,3,0,4071,0,0,0 +11614,14223,25910,-9,25906,25907,5,1,1,34,2,0,0,0,3,-9,1,1,0,3,9.711809196231101,9.884725784171247,0,3,0,0,0,-9,0,-1135.722184198834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,42,45,15,1,0,-9,1,40.51176883639807,40.51176883639807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,1,0,0,10,5,0,269,0,0,0 +11615,14224,25911,25912,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,9.569746149364338,9.628470070532293,0,1,0,-9,31,0,2,-21.88460038557031,0,0,0,54,2,2,1,2,1,2019,1,1,11,1,45,43,15,1,1,1,0,30.31784098742087,30.31784098742087,0,0,0,0,0,0,0,1,1,0,3.882164204359189,0,0,0,50.4,55.04,6,1,0,0,9,5,1,1848.5,0,0,0 +11615,14224,25912,25911,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,2,5.889025013983713,5.772874137663142,0,1,0,-9,31,0,-2,36.93327602493918,0,0,0,56,1,4,1,2,2,2019,1,2,17,5,7,0,15,1,5,1,0,6.956085515717522,6.956085515717522,0,0,0,0,0,0,0,1,1,0,4.023838893131628,0,0,0,40.73,23.32,3,1,0,0,9,5,1,1848.5,0,0,0 +11615,14225,25913,-9,25912,25911,3,1,0,21,2,0,0,0,2,-9,2,1,0,5,6.765037417518109,6.544440950129599,0,3,0,0,0,-9,0,-953.0136560542772,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,45,30,15,1,0,-9,1,1.904731279278046,1.904731279278046,0,0,0,0,0,0,0,1,1,0,2.043916538778585,0,0,0,54.1,59.11,7,1,0,0,9,2,1,601,0,0,0 +11616,14226,25914,25915,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,3,8.646601951959765,8.812034489679879,0,1,0,-9,31,0,1,60.8086696178752,0,0,0,46,2,3,1,3,3,2019,1,2,6,0,35,35,15,1,0,1,0,22.02217830597044,22.02217830597044,0,0,0,0,0,0,0,0,0,0,6.076319878809642,0,0,0,58.32,50.22,6,1,0,0,12,5,1,246,0,0,0 +11616,14226,25915,25914,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,3,8.88770239822456,8.683858263674189,0,1,0,-9,31,0,-1,121.2498328365646,0,0,0,47,2,3,1,2,-9,2019,1,1,7,1,45,0,15,1,1,1,0,20.19049676223499,20.19049676223499,0,0,0,0,0,0,0,0,0,0,5.53893406064492,0,0,0,57.88,43.83,6,1,0,0,12,5,1,246,0,0,0 +11617,14227,25916,25917,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,7.364511347570729,7.282737269144799,1,0,-9,10,0,0,10.98265426630907,0,0,0,67,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5421158453505229,7.643056446527256,0,0,47.79,33.12,6,1,0,0,12,3,1,637.5,0,0,0 +11617,14227,25917,25916,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.035732864057341,7.104897001488257,1,0,-9,10,0,0,-20.31277736706301,0,0,0,67,3,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.905881288729121,7.064544124036392,0,0,54.2,57.49,6,1,0,0,12,3,1,637.5,0,0,0 +11618,14228,25918,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,4,0,5.740913163841794,5.842034257896397,3,0,0,0,-9,0,-1006.087863428427,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.897773433578567,5.869615131042816,0,0,36.02,45.46,4,1,0,0,12,2,0,311,0,0,0 +11619,14229,25919,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-902.437959980074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,51.11,6,1,0,0,12,1,1,834,0,0,0 +11620,14230,25920,-9,25923,25921,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.3006560246945,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,802.8,0,0,0 +11620,14230,25921,25923,-9,-9,2,1,1,42,1,0,3,0,1,-9,1,1,0,4,7.466119009894024,7.319532686578898,0,2,0,-9,10,0,4,-23.36014276169934,0,0,0,38,1,5,1,2,2,2019,1,1,9,0,50,50,15,1,0,1,0,4.270412193563808,4.270412193563808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,6,3,1,802.8,0,0,0 +11620,14230,25922,-9,25923,25921,4,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1054.014058136138,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,6,3,1,802.8,0,0,0 +11620,14230,25923,25921,-9,-9,1,1,0,38,1,0,3,0,1,-9,1,1,0,5,7.547740930777453,7.745132910533242,0,2,0,-9,18,0,-4,41.06574428881812,0,0,1,42,1,4,1,2,2,2019,1,2,13,1,10,16,15,1,1,1,0,21.68007467134494,21.68007467134494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.99,58.91,5,1,0,1,6,3,1,802.8,0,0,0 +11620,14230,25924,-9,25923,25921,3,1,0,14,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-923.4090282566661,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,6,3,1,802.8,0,0,0 +11621,14231,25925,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,5.76732402244168,5.606747204856734,3,0,0,0,-9,0,-990.6817422461228,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7606703316927,0,0,58.9,45.74,5,1,0,0,12,2,1,489,0,0,0 +11621,14232,25926,-9,25925,-9,2,1,1,35,2,0,0,0,1,1,2,1,0,3,6.025573645625222,5.934890334836822,0,3,0,0,0,-9,0,-1012.149877828805,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,53.79,5,1,0,0,12,2,1,799,0,0,0 +11622,14233,25927,25928,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,7.755339260390758,7.189624656548314,1,0,-9,8,0,-2,-43.10276265190069,0,0,0,68,2,2,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.463832622595258,0,0,60.29,52.11,5,1,0,0,12,3,1,807,0,0,0 +11622,14233,25928,25927,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,5.540925887301062,5.565028560532855,1,0,-9,43,0,2,112.6879980539475,0,0,0,66,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.174193884333037,0,0,66.37,22.3,4,1,0,0,12,3,1,807,0,0,0 +11623,14234,25929,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,4,0,6.303603370190439,6.24210532225968,3,0,0,0,-9,0,-828.395717607375,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.411932028566269,6.666362912347157,0,0,46.9,56.66,2,1,0,0,6,2,1,413,0,0,0 +11624,14235,25930,25931,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,6.773177928084572,6.855863902497559,1,0,-9,7,0,4,-61.61673515691668,0,0,0,68,3,3,3,2,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,0,6.062910460831404,0,0,0,0,1,1,0,0,6.488678878612649,0,3,56.85,34.53,6,1,0,0,6,2,1,217.5,0,0,0 +11624,14235,25931,25930,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,4.808791897185393,5.138781029151383,1,0,-9,7,0,-4,-44.07254442023657,0,0,0,72,2,3,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.504172092905979,0,0,48.74,50.46,6,1,0,0,6,2,1,217.5,0,0,0 +11625,14236,25932,25933,-9,-9,1,1,1,28,1,0,0,0,2,-9,1,1,0,2,8.689083363977845,9.083763202926205,0,1,0,-9,3,0,2,-4.380617685791696,0,1,0,26,2,4,1,2,-9,2019,1,2,22,10,60,48,15,1,10,1,0,15.73561680467018,15.73561680467018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.95,36.04,4,1,0,0,9,5,1,1926,0,0,0 +11625,14236,25933,25932,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,4,7.525867631464748,7.552690569988915,0,1,0,-9,3,0,-2,-5.555413533875399,0,1,1,28,2,2,1,-9,-9,2019,1,1,9,0,62,55,15,1,0,1,0,4.205235464989773,4.205235464989773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,6,1,0,0,9,5,1,1926,0,0,0 +11626,14237,25934,-9,25935,-9,2,1,0,17,2,0,1,0,2,1,3,3,0,4,0,0,0,4,0,0,0,-9,0,-996.0868551017703,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,1,1,10,4,1,287.5,0,0,0 +11626,14237,25935,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,4,8.65593545741152,8.519109478949778,6.041433752948467,4,0,0,0,-9,0,-1042.740268712613,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,47,44,15,1,0,-9,0,13.26709818150044,13.26709818150044,0,0,0,0,0,0,0,1,1,0,6.142894020164959,0,0,0,43.94,58,6,1,0,0,10,4,1,287.5,0,0,0 +11627,14238,25936,25937,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,3,0,4.679758037711241,4.652556014505541,1,0,-9,69,0,3,32.23981183337698,0,0,0,85,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.275646338335717,4.631758179640991,117.9423246412962,1,55.8,37.63,5,1,0,0,2,2,1,1215,0,0,0 +11627,14238,25937,25936,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,69,0,-3,-8.124296787022123,0,0,0,88,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,11.45072825718314,7.999887514008683,9.067523505440917,0,0,1,1,0,3.032586396000144,0,0,0,68.69,15.95,6,1,0,0,2,2,1,1215,0,0,0 +11628,14239,25938,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,0,5.935360858433837,5.921223532932299,3,0,0,0,-9,0,-926.8975746306666,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7973035050134667,5.736999550510216,0,0,49.35,18.34,7,1,0,0,4,2,0,699,0,0,0 +11629,14240,25939,25940,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.109824199696229,8.081349358020002,7.094879403072706,1,0,-9,5,0,1,-33.26098942752429,0,1,0,26,1,5,1,-9,-9,2019,1,1,6,1,34,32,15,1,1,1,0,10.93214311974339,10.93214311974339,0,0,0,0,0,0,0,0,0,0,7.070975887278575,0,0,0,54.2,57.49,6,1,0,0,9,5,1,1225.5,0,0,0 +11629,14240,25940,25939,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,5,7.887116842029315,8.13975550144346,6.912228140350681,1,0,-9,5,0,-1,-59.81141779259379,-9,1,1,27,1,4,1,1,2,2019,1,2,4,0,24,0,15,1,0,1,0,12.54359286947934,12.54359286947934,0,0,0,0,0,0,0,0,0,0,6.792201640010168,0,0,0,54.69,57.47,6,1,0,0,9,5,1,1225.5,0,0,0 +11630,14241,25941,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,3,8.298553431651333,8.606089167840597,7.208036808565547,3,0,0,0,-9,0,-998.5708952644794,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,28,23,15,1,3,-9,0,16.88511058473542,16.88511058473542,0,0,0,0,0,0,0,1,1,0,0,7.360206482767443,0,0,38.28,57.07,4,1,0,0,12,5,0,763,0,0,0 +11631,14242,25942,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-999.6385807271963,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.24,8.09,4,1,0,0,9,1,0,800,0,0,0 +11632,14243,25943,25944,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,39,0,4,0,-9,0,0,60,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,3,0,1,4,1,1,1883,0,0,0 +11632,14243,25944,25943,-9,-9,2,1,0,60,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,39,0,-4,0,0,0,0,64,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,3,0,1,4,1,1,1883,0,0,0 +11632,14244,25945,-9,25944,25943,3,1,0,23,2,0,0,1,1,0,7,2,0,4,5.878006030655452,6.248316017787927,0,3,0,0,0,-9,0,-919.9826302933197,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,19,5,8,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.52,62.31,4,3,0,1,4,2,1,1190,0,0,0 +11632,14245,25946,-9,25944,25943,4,1,0,21,2,0,0,1,2,0,7,2,0,4,5.799982297332298,5.956762188788606,0,3,0,0,0,-9,0,-1255.690048802992,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,18,4,12,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.53,42.7,1,3,0,0,4,2,1,532,0,0,0 +11632,14246,25947,-9,25944,25943,5,1,0,20,2,0,0,1,2,0,7,2,0,2,6.052045786053698,5.805117068606979,0,3,0,0,0,-9,0,-1042.250958517327,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,36,12,8,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.44,35.14,4,3,0,1,4,2,1,444,0,0,0 +11633,14247,25948,25949,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,4,8.714868608213036,8.826644697827371,0,1,0,-9,6,0,6,28.35426834235709,0,0,0,50,1,3,1,3,3,2019,1,2,9,0,35,35,15,1,0,1,0,18.47356817620996,18.47356817620996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,6,1,0,0,9,5,1,822,0,0,0 +11633,14247,25949,25948,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,3,9.598713190781051,9.347649800825721,0,1,0,-9,6,0,-6,127.385993715525,0,0,0,56,3,4,1,-9,-9,2019,1,1,8,1,58,68,15,1,1,1,0,26.60448442209328,26.60448442209328,0,0,0,0,0,0,0,0,0,0,4.729092696671466,0,0,0,59.14,41.8,7,1,0,0,9,5,1,822,0,0,0 +11634,14248,25950,25951,-9,-9,2,1,0,52,1,0,1,0,2,-9,97,3,0,4,8.471196604857804,8.32310168568341,0,2,0,-9,10,0,4,8.800927322163574,0,0,0,48,2,3,1,2,2,2019,3,1,10,0,8,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.87,58.55,5,1,0,0,8,4,0,291.6666666666667,0,0,0 +11634,14248,25951,25950,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,3,7.613558816108289,7.259460846516364,0,2,0,-9,10,0,-4,-2.683526722705461,-9,0,0,52,2,4,3,2,2,2019,2,2,16,5,45,0,15,1,5,3,0,6.399048602743994,6.399048602743994,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,36.77,6,4,0,0,8,4,0,291.6666666666667,0,0,0 +11634,14248,25952,-9,25950,25951,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.8563504519121,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,4,0,291.6666666666667,0,0,0 +11635,14249,25953,-9,25954,-9,1,1,0,49,3,0,0,0,1,-9,1,1,0,2,6.772883536696586,6.910717486525953,0,3,0,0,0,-9,0,-1034.934099325549,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,14,40,15,1,1,-9,1,7.503123763269885,7.503123763269885,0,0,0,0,0,0,0,1,1,0,.9222087114866506,0,23.79579160739759,3,49.18,40.45,2,1,0,0,10,2,1,1224,0,0,0 +11635,14250,25954,-9,-9,-9,2,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,7.048329552603721,7.14460434180461,3,0,0,0,-9,0,-878.4419487087416,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,6.686415385996999,0,0,0,1,1,0,6.865971297177319,7.293348872873324,0,0,30.16,55.62,3,1,0,0,10,2,1,666,0,0,0 +11636,14251,25955,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,3,8.266070516217814,8.205103664121873,0,1,0,-9,2,0,9,-57.68965146495472,0,0,1,-9,-9,-9,-9,2,2,2019,-9,2,14,2,40,39,15,1,2,-9,0,11.67967872038574,11.67967872038574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.31,54.01,3,1,0,0,4,3,0,521,0,0,0 +11637,14252,25956,25957,-9,-9,1,1,1,50,1,0,2,0,3,-9,2,1,0,3,7.907897269191736,8.009802719127169,0,2,0,-9,2,0,2,121.1935010113196,0,0,0,48,2,2,3,3,3,2019,2,2,12,0,30,27,15,1,0,3,0,11.1460798355341,11.1460798355341,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.12,37.78,3,5,0,0,13,2,1,692.6666666666666,0,0,0 +11637,14252,25957,25956,-9,-9,2,1,0,48,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,2,0,-2,18.90941440543922,-9,0,0,50,3,3,1,2,2,2019,3,1,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,33.85,40.08,4,1,0,0,13,2,1,692.6666666666666,0,0,0 +11637,14252,25958,-9,25957,25956,5,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.6992112204618,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,59,5,1,0,0,13,2,1,692.6666666666666,0,0,0 +11637,14253,25959,-9,25957,25956,3,1,1,20,3,0,2,0,2,-9,2,1,0,4,6.014292766534712,6.190987175141308,0,3,0,0,0,-9,0,-970.2222288973068,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,2,16,0,15,1,2,-9,1,3.690023786399239,3.690023786399239,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.44,52.99,6,1,0,0,13,2,1,1739,0,0,0 +11637,14254,25960,-9,25957,25956,4,1,1,18,2,0,2,1,2,-9,7,2,0,5,4.391925114680122,4.792685656428774,0,3,0,0,0,-9,0,-1063.310423918149,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.51,60.74,6,1,0,0,13,2,1,3795,0,0,0 +11638,14255,25961,25962,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,8.32253668798039,8.030723226215935,1,0,-9,10,0,-4,-215.4880579274887,0,0,0,78,2,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.298633079107828,7.92973379461269,0,0,56.75,49.4,6,1,0,0,13,4,1,221.5,0,0,0 +11638,14255,25962,25961,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,7.647953060504932,7.480600879620529,1,0,-9,10,0,4,24.98864390903377,0,0,0,74,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.43341683812045,7.185140938160263,0,0,49.12,57.28,7,1,0,0,13,4,1,221.5,0,0,0 +11639,14256,25963,25965,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,5,9.396442466522112,9.379217759460728,0,2,0,-9,9,0,0,63.58567313720043,0,0,0,36,1,4,1,2,2,2019,1,2,6,0,48,48,15,1,0,1,0,30.43714026349186,30.43714026349186,0,0,0,0,0,0,0,0,0,0,4.633736178768869,0,0,0,54.69,57.47,6,1,0,0,9,5,1,505.6666666666667,0,0,0 +11639,14256,25964,-9,25965,25963,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.254222671991,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,9,5,1,505.6666666666667,0,0,0 +11639,14256,25965,25963,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,4,8.481577736003731,8.317681832728706,0,2,0,-9,9,0,0,-35.9303383530656,0,0,1,36,1,5,1,-9,-9,2019,1,1,18,4,24,0,15,1,4,1,0,16.92880778640488,16.92880778640488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,50.2,6,1,0,0,9,5,1,505.6666666666667,0,0,0 +11640,14257,25966,-9,25968,25967,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.1309757839405,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,5,1,715.6666666666666,0,0,0 +11640,14257,25967,25968,-9,-9,1,1,1,52,1,0,1,0,2,-9,2,1,0,2,8.591532087391265,8.759495392356499,0,2,0,-9,20,0,0,163.1657537883753,0,0,0,52,3,3,1,2,2,2019,1,2,13,2,50,40,15,1,2,1,0,15.38932708026921,15.38932708026921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.1,36.02,6,1,0,0,12,5,1,715.6666666666666,0,0,0 +11640,14257,25968,25967,-9,-9,2,1,0,52,1,0,1,0,3,-9,2,1,0,3,8.419990463792654,8.433630212872981,0,2,0,-9,20,0,0,146.9626857634692,0,0,0,52,2,2,1,2,2,2019,1,1,10,0,36,40,15,1,0,1,0,19.35739370090247,19.35739370090247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,12,5,1,715.6666666666666,0,0,0 +11641,14258,25969,25970,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,2.353229709310102,2.287397310001414,1,0,-9,1,-9,-2,70.73083779713424,-9,0,0,77,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.029790910325099,1.92832745104688,0,0,54,46,5,4,0,0,10,2,1,312,0,0,0 +11641,14258,25970,25969,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,6.984852650257569,6.948090775494371,1,0,-9,5,-9,2,-27.07702586835165,-9,0,0,75,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.102593816306191,7.200974957963771,0,0,58.79,24.41,6,2,0,0,10,2,1,312,0,0,0 +11642,14259,25971,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,2,1,0,4,8.79492965055962,8.386654761432302,0,3,0,-9,0,1,0,-1094.436221853157,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,10,40,40,15,1,10,-9,0,22.12297181138477,22.12297181138477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,5,1,0,0,10,5,1,1839,0,0,0 +11643,14260,25972,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,3,7.12171666931165,7.321930528884049,0,4,0,-9,0,-9,0,-1008.160561501188,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,21,0,15,1,0,-9,0,7.205914456746825,7.205914456746825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,2,0,330.5,0,0,0 +11643,14260,25973,-9,25972,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,-9,0,-9,0,-1040.038028001048,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,7,2,0,330.5,0,0,0 +11643,14261,25974,-9,25972,-9,2,1,1,18,2,0,1,0,2,-9,2,1,0,5,7.672285993853682,7.874398928923476,0,3,0,-9,0,-9,0,-1032.621394850647,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,40,0,15,1,0,-9,1,5.424371211412346,5.424371211412346,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,7,3,0,432,0,0,0 +11644,14262,25975,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,3,7.808441424741245,7.61709127047362,0,3,0,0,0,-9,0,-828.0491064233537,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,22,9,27,27,15,1,9,-9,0,9.238005567412472,9.238005567412472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.93,49.57,5,1,0,0,6,3,1,427,0,0,0 +11644,14263,25976,-9,25975,-9,2,1,0,22,2,0,0,1,2,0,7,2,0,4,6.291858668559704,6.238086724337561,0,3,0,0,0,-9,0,-929.1692607741327,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,17,5,12,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.457246165180593,0,0,0,28.63,66.41,5,1,0,0,6,2,1,345,0,0,0 +11645,14264,25977,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,2,8.292636749848004,8.493173865017031,0,3,0,0,0,-9,0,-929.2140816976015,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,42,37,15,1,6,-9,0,14.71055330722987,14.71055330722987,0,0,0,0,0,0,0,0,0,0,3.031222245649347,0,0,0,41.25,38.2,2,1,0,0,12,4,1,593,0,0,0 +11646,14265,25978,25979,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.897887710780265,8.129998210581686,6.052643693932553,1,0,-9,7,0,-1,-25.25592950234517,0,0,0,58,2,2,1,2,3,2019,1,1,11,0,39,39,15,1,0,1,0,7.362865283116211,7.362865283116211,0,0,0,0,0,0,0,0,0,0,6.05982696719804,6.090570849950618,3.769297528863552,1,49.44,56.93,6,1,0,0,9,5,1,1241,0,0,0 +11646,14265,25979,25978,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,2,8.336296891149047,8.310807200574915,6.015802459976859,1,0,-9,26,0,1,-2.078018862780232,0,0,0,57,2,4,1,3,3,2019,1,2,7,0,45,39,15,1,0,1,0,14.12699090253047,14.12699090253047,0,0,0,0,0,0,0,0,0,0,0,6.112474497902035,0,0,58.85,36.72,6,1,0,0,9,5,1,1241,0,0,0 +11647,14266,25980,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,3,0,7.423529776257416,7.317529205340652,3,0,0,0,-9,0,-877.7436510670857,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.024067807664945,7.782761573441126,0,0,60.29,52.11,5,1,0,0,10,3,1,777,0,0,0 +11648,14267,25981,25982,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,1,60.58705002885797,0,0,0,75,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,1,2,1,1170.5,0,0,0 +11648,14267,25982,25981,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.470466610942177,7.591551840113516,1,0,-9,56,0,-1,14.0245811974839,0,0,0,76,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.93728035758724,7.939209773893168,0,3,58.32,50.22,6,1,0,0,1,2,1,1170.5,0,0,0 +11649,14268,25983,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-1056.188673206887,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7655057461674635,0,0,0,62.49,55.09,6,1,0,0,13,1,1,869,0,0,0 +11650,14269,25984,25986,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,5,9.359224550636464,9.427522127554743,0,2,0,-9,22,0,-2,-136.9243870136141,0,0,0,45,2,4,1,-9,-9,2019,1,2,6,0,41,45,15,1,0,1,0,30.16546410194992,30.16546410194992,0,0,0,0,0,0,0,0,0,0,.4697225250476243,0,0,0,59.43,58.05,7,1,0,0,7,5,1,233.6666666666667,0,0,0 +11650,14269,25985,-9,25986,25984,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.420536563966,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,7,5,1,233.6666666666667,0,0,0 +11650,14269,25986,25984,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.048404617897506,7.040815219855965,0,2,0,-9,8,0,2,-40.3214003054173,0,0,0,43,2,5,1,-9,-9,2019,1,1,16,4,27,31,15,1,4,1,0,5.340742635620658,5.340742635620658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,62.33,6,1,0,0,7,5,1,233.6666666666667,0,0,0 +11651,14270,25987,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,2,0,3.703781471137221,3.888400180531672,3,0,0,0,-9,0,-1000.079917348081,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.770826004963199,4.270726259941121,0,0,53.14,25.14,5,1,0,0,4,1,1,330,0,0,0 +11652,14271,25988,25989,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,7.387310849284813,7.20287027605745,1,0,-9,39,0,-2,-33.30963529106845,0,0,0,65,3,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.953439699934107,7.127702859534359,0,0,54.2,57.49,6,1,0,0,9,3,1,469,0,0,0 +11652,14271,25989,25988,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,7.449592235724618,7.563597415256559,1,0,-9,39,0,2,-65.92250866215703,0,0,0,63,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.034356903670311,7.301603368127674,0,0,55.36,51.57,6,1,0,0,9,3,1,469,0,0,0 +11653,14272,25990,25991,-9,-9,2,1,0,44,1,0,1,0,2,-9,1,1,0,2,0,0,0,2,0,-9,20,0,-6,-113.471566649268,0,0,1,50,3,3,1,2,2,2019,1,1,12,1,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.4,44.5,4,1,0,0,9,2,1,442,0,0,0 +11653,14272,25991,25990,-9,-9,1,1,1,50,1,0,1,0,3,-9,1,1,0,3,7.511674544600785,7.354975110335073,0,2,0,-9,20,0,6,-2.332111532416567,0,0,0,44,2,2,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,5.629731560499396,5.629731560499396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,1,0,0,9,2,1,442,0,0,0 +11653,14272,25992,-9,25990,25991,3,1,1,17,2,0,1,0,2,-9,11,3,0,3,7.415870964000665,7.419018505921702,0,2,0,0,0,-9,0,-910.7134153224679,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,40,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,9,2,1,442,0,0,0 +11653,14272,25993,-9,25990,25991,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.507495883417,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,1,442,0,0,0 +11654,14273,25994,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,1,0,-863.1329290847914,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.19732537975036,3,19.01,22.64,6,1,0,1,13,1,1,111,0,0,0 +11654,14274,25995,-9,25994,-9,2,1,1,40,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1139.511412050344,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,13,1,1,268,0,0,0 +11655,14275,25996,25999,-9,-9,2,1,0,36,1,1,2,0,2,-9,5,1,0,4,7.959754640107826,8.037239521583286,0,2,0,-9,13,0,-1,-51.93079769598472,0,0,1,37,2,3,1,3,3,2019,1,1,9,3,31,30,15,1,3,1,0,8.715240265423862,8.715240265423862,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,6,1,0,0,6,4,1,570.25,0,0,0 +11655,14275,25997,-9,25996,25999,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-896.4363189214779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,1,570.25,0,0,0 +11655,14275,25998,-9,25996,25999,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.0723889658204,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,4,1,570.25,0,0,0 +11655,14275,25999,25996,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,3,7.929602021578519,8.32445287045114,6.010396949652188,2,0,-9,16,0,1,-119.530869330746,0,0,0,36,2,4,1,2,2,2019,1,2,8,0,47,47,15,1,0,1,0,9.760800331266877,9.760800331266877,0,0,0,0,0,0,0,1,1,0,6.370074055725165,0,0,0,49.04,55.86,5,1,0,0,6,4,1,570.25,0,0,0 +11656,14276,26000,-9,26002,26003,5,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-844.5673250593375,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,4,0,887.25,0,0,0 +11656,14276,26001,-9,26002,26003,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.699023177578,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,4,0,887.25,0,0,0 +11656,14276,26002,26003,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,4,7.327691703109148,7.222449723140596,4.653514617534158,2,0,-9,15,0,-2,-110.475422594644,0,0,1,42,2,4,1,2,2,2019,1,2,14,2,22,23,15,1,2,1,0,7.858253176376111,7.858253176376111,0,0,0,0,0,0,0,1,1,0,4.684910194715631,0,8.17262434822873,3,46.16,53.09,5,1,0,0,1,4,0,887.25,0,0,0 +11656,14276,26003,26002,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,8.860633139488518,8.810508332251613,0,2,0,-9,7,0,2,16.47209156852912,0,0,0,40,2,4,1,2,2,2019,1,1,7,0,70,65,15,1,0,1,0,9.515862343529038,9.515862343529038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,6,1,0,0,1,4,0,887.25,0,0,0 +11656,14277,26004,-9,26002,26003,3,1,0,19,2,0,2,0,2,1,2,1,0,4,7.483842884388262,7.279182411967126,0,3,0,0,0,-9,0,-1043.142760322014,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,0,15,1,0,-9,1,4.22506972560084,4.22506972560084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,2,1,0,0,1,3,0,1713,0,0,0 +11657,14278,26005,26007,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,4,5.050567801043914,5.132270270536025,0,2,0,-9,24,0,1,160.6514545902179,0,0,0,45,2,5,1,2,2,2019,3,2,8,0,0,15,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.77741961175153,3,54.79,55.86,6,1,0,0,10,4,1,347.75,0,0,0 +11657,14278,26006,-9,26005,26007,3,1,1,16,2,0,2,1,3,-9,7,2,0,3,0,2.766149521685467,2.331869864807805,2,0,0,0,-9,0,-946.5075538176302,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.644573867265865,0,0,0,53.47,52.37,2,1,0,0,10,4,1,347.75,0,0,0 +11657,14278,26007,26005,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,5,8.988448867677404,9.113698344860122,0,2,0,-9,22,0,-1,99.09076573930219,0,0,0,46,2,4,3,2,3,2019,2,1,9,0,47,50,15,1,0,3,0,21.74598997061378,21.74598997061378,0,0,0,0,0,0,0,1,1,0,.422395759477643,0,0,0,48.71,61.53,6,1,0,0,10,4,1,347.75,0,0,0 +11657,14278,26008,-9,26005,26007,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-993.7954713403567,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,10,4,1,347.75,0,0,0 +11658,14279,26009,26010,-9,-9,2,1,1,50,1,0,0,0,1,-9,1,1,0,3,8.074708840756857,8.384015328983581,0,1,0,-9,10,0,1,69.96916729045401,0,0,0,49,1,4,1,2,3,2019,1,1,15,3,60,60,15,1,3,1,0,7.427494466082279,7.427494466082279,0,0,0,0,0,0,0,0,0,0,1.902004000022151,0,0,0,42.46,54.85,3,2,0,0,8,5,1,288,0,0,0 +11658,14279,26010,26009,-9,-9,1,1,0,49,1,0,0,0,1,-9,1,1,0,4,9.468814811000115,9.563898523971808,0,1,0,-9,10,0,-1,13.99442335779364,0,0,0,50,1,3,1,2,3,2019,1,2,9,0,50,50,15,1,0,1,0,28.41239709847229,28.41239709847229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,5,5,0,0,8,5,1,288,0,0,0 +11659,14280,26011,26012,-9,-9,2,1,1,21,1,0,0,0,2,-9,2,1,0,3,8.245335139420098,7.800676587290284,0,1,0,-9,4,0,0,67.90872014004428,0,1,0,21,2,2,1,-9,-9,2019,1,1,14,2,45,45,15,1,2,1,0,10.07390143400481,10.07390143400481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.93,52.64,3,1,0,0,12,4,0,404.5,0,0,0 +11659,14280,26012,26011,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,2,7.597928579951311,7.958135607625305,0,1,0,-9,4,0,0,-6.135312236542917,0,1,1,21,2,3,1,-9,-9,2019,1,2,16,4,50,25,15,1,4,1,0,4.806070628062946,4.806070628062946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.94,56.84,4,1,0,0,12,4,0,404.5,0,0,0 +11660,14281,26013,26014,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,6.217245201592888,6.189484278822349,1,0,-9,34,0,-3,15.13101229660821,0,0,0,69,3,4,3,3,2,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.373914872299624,6.437548709228275,0,0,43.42,62.33,6,1,0,0,4,2,1,164,0,0,0 +11660,14281,26014,26013,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,4,0,6.62199088290794,6.450939890113434,1,0,-9,8,0,3,-71.7365884551447,0,0,0,66,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.616140227098613,6.405977755505957,0,0,58.15,52.91,6,1,0,0,4,2,1,164,0,0,0 +11661,14282,26015,-9,26016,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-964.4766411601885,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,0,367,0,0,0 +11661,14282,26016,-9,-9,-9,1,1,0,32,3,0,1,0,1,-9,2,1,0,4,7.441595849257436,8.023857089994618,5.109764096327638,4,0,0,0,-9,0,-1042.309387444086,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,27,30,15,1,0,-9,0,8.667914498844961,8.667914498844961,0,0,0,0,0,0,0,1,1,0,5.438820372127995,0,0,0,54.2,57.49,6,1,0,1,4,3,0,367,0,0,0 +11662,14283,26017,-9,26019,26018,3,1,1,20,2,0,0,0,2,-9,2,1,0,4,6.871284469968852,6.84652497085538,0,3,0,0,0,-9,0,-968.3685634998877,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,16,0,15,1,0,-9,1,8.761309758851597,8.761309758851597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,7,1,0,0,1,2,1,717,0,0,0 +11662,14284,26018,26019,-9,-9,4,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.391054189945367,8.217966818663868,0,1,0,-9,6,0,2,30.65777084953297,0,0,0,49,2,3,1,-9,-9,2019,1,1,18,7,40,40,15,1,7,1,0,14.24725902548495,14.24725902548495,0,0,0,0,0,0,0,0,0,0,4.175069582862701,0,0,0,41.53,63.13,6,1,0,0,1,4,1,513.5,0,0,0 +11662,14284,26019,26018,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.804406335757355,7.646758372402841,0,1,0,-9,6,0,-2,45.35534812906231,0,0,0,51,2,4,1,-9,2,2019,1,4,13,4,17,18,15,1,4,1,0,18.14943636163618,18.14943636163618,0,0,0,0,0,0,0,0,0,0,0,0,1.195708793619075,3,46.08,57.2,2,1,0,0,1,4,1,513.5,0,0,0 +11663,14285,26020,26021,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-2,35.10285655209714,0,0,0,75,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.206556253325895,0,0,0,47.7,49.53,6,1,0,0,6,4,1,552.5,0,0,0 +11663,14285,26021,26020,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,8.750138828909224,8.380553196070331,1,0,-9,55,0,2,40.98178136431913,0,0,0,73,3,3,3,-9,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.150946976609525,8.103198047309796,0,0,45.82,54.57,6,1,0,0,6,4,1,552.5,0,0,0 +11664,14286,26022,26023,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,2,8.395581174786052,8.742741051648942,0,1,0,-9,35,0,-3,-28.53958311908214,0,0,0,59,3,4,1,-9,-9,2019,1,2,9,0,42,42,15,1,0,1,0,14.06385134381888,14.06385134381888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,40.23,7,1,0,0,8,5,0,609,0,0,0 +11664,14286,26023,26022,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,4,8.583695210408989,8.767356208918953,5.303699968085432,1,0,-9,3,0,3,26.97910063332711,0,0,0,56,1,2,1,-9,-9,2019,1,1,7,0,48,58,15,1,0,1,0,12.88061871520541,12.88061871520541,0,0,0,0,0,0,0,0,0,0,0,5.085755818374992,0,0,61.71,43.2,7,4,0,0,8,5,0,609,0,0,0 +11664,14287,26024,-9,26022,26023,3,1,0,29,2,0,0,0,1,-9,2,1,0,4,8.00383047360242,8.155559202654059,0,3,0,0,0,-9,0,-1033.340490172163,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,40,38,15,1,0,-9,1,7.58471601142652,7.58471601142652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,2,0,0,8,4,0,1528,0,0,0 +11665,14288,26025,-9,26026,26027,3,1,0,16,2,0,1,1,2,-9,7,2,0,3,6.61593900036038,6.712574969892098,0,2,0,0,0,-9,0,-868.1172361727785,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,27,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.79,43.39,5,1,0,0,7,2,1,771,0,0,0 +11665,14288,26026,26027,-9,-9,1,1,0,54,1,0,1,0,3,-9,2,1,0,2,7.241770608528871,7.432114857394454,0,2,0,-9,22,0,0,-131.1285621009592,0,0,0,54,3,3,1,-9,-9,2019,1,2,8,0,20,11,15,1,0,1,0,5.679519767778252,5.679519767778252,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.99,34.03,7,1,0,0,7,2,1,771,0,0,0 +11665,14288,26027,26026,-9,-9,2,1,1,54,1,0,1,0,3,-9,1,1,0,3,7.426158592139105,7.495756736633219,0,2,0,-9,7,0,0,-55.61514068159416,0,0,0,54,3,2,1,3,3,2019,1,1,11,0,43,60,15,1,0,1,0,3.003527412415985,3.003527412415985,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.32,38.94,6,1,0,0,7,2,1,771,0,0,0 +11666,14289,26028,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1092.339660317926,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,6,1,0,0,13,1,1,1787,0,0,0 +11667,14290,26029,26030,-9,-9,2,1,0,89,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,67,0,2,-20.80984789504587,0,0,0,87,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.801287699031329,0,0,0,55.64,36.99,6,1,0,0,9,1,1,1328,0,0,0 +11667,14290,26030,26029,-9,-9,1,1,1,87,1,0,0,0,2,-9,4,3,0,3,3.078475467699067,3.062458037042513,0,1,0,-9,67,0,-2,-62.02861689098997,0,0,0,89,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.065077337146157,0,0,0,62.42,45.64,6,1,0,0,9,1,1,1328,0,0,0 +11668,14291,26031,26032,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,3,7.384385814474557,7.167813156868941,0,1,0,-9,6,0,-13,42.17842466110028,0,0,0,66,3,4,3,-9,-9,2019,2,2,11,0,26,22,15,1,0,4,0,7.722128231307342,7.722128231307342,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,8,2,0,668.5,0,0,0 +11668,14291,26032,26031,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,13,-47.78030349432501,0,0,0,53,3,3,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,48.86,5,1,0,0,8,2,0,668.5,0,0,0 +11669,14292,26033,26034,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,7.610790927678501,7.905602107929753,1,0,-9,42,0,1,-23.12956060069401,0,0,0,69,1,4,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.647475447043798,7.952114212866493,0,0,58.07,46.29,7,1,0,0,4,4,0,612,0,0,0 +11669,14292,26034,26033,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.796993629272196,7.842744624249475,1,0,-9,42,0,-1,-159.5873698584273,0,0,0,70,1,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.951715113377243,7.263564257079779,0,0,49.66,55.68,6,1,0,0,4,4,0,612,0,0,0 +11670,14293,26035,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,2,0,7.580697826163054,7.670791584653906,3,0,0,0,-9,0,-1020.184592475397,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.068111146450818,7.671047891996539,0,0,50.68,28.49,4,1,0,0,11,3,1,2574,0,0,0 +11671,14294,26036,26037,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.643579153975241,7.855019007513073,1,0,-9,49,0,2,-70.35168018112982,0,0,0,69,2,4,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.812421569976724,8.074991553420041,0,0,52.82,53.97,2,1,0,0,9,3,1,487,0,0,0 +11671,14294,26037,26036,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.714869749256314,7.637329128116881,1,0,-9,49,0,-2,13.36262303975477,0,0,0,71,2,4,3,2,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.330497941648875,7.122675163261688,0,0,48.68,50.88,7,1,0,0,9,3,1,487,0,0,0 +11672,14295,26038,26039,-9,-9,1,1,0,42,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,25,0,-4,.0851151679975892,0,0,1,46,3,3,1,3,2,2019,3,2,24,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.8,31.26,3,3,0,0,6,4,1,344.5,0,0,0 +11672,14295,26039,26038,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,3,8.369081536256447,9.05345034193966,0,1,0,-9,25,0,4,34.6728051237218,0,0,0,42,3,2,3,3,3,2019,2,1,11,1,45,51,15,1,1,3,0,18.95981224464691,18.95981224464691,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,5,1,0,1,6,4,1,344.5,0,0,0 +11672,14296,26040,-9,26038,26039,3,1,1,23,2,0,0,0,1,1,2,1,0,5,9.030288878347497,8.906480890193965,0,3,0,0,0,-9,0,-998.7137538754679,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,1,54,0,15,1,1,-9,1,17.36187807318977,17.36187807318977,0,0,0,0,0,0,0,1,1,0,7.601639623850831,0,.3973701888177301,3,43.8,65.04000000000001,7,3,0,0,6,5,1,564,0,0,0 +11672,14297,26041,-9,26038,26039,4,1,1,21,2,0,0,1,2,0,7,2,0,5,6.762067662287659,6.77789402015693,0,3,0,0,0,-9,0,-1022.93565551188,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,7,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,3,0,0,6,2,1,231,0,0,0 +11672,14298,26042,-9,-9,-9,5,1,1,25,2,0,0,0,2,-9,2,1,0,5,8.447762784301288,8.14932307235477,0,3,0,0,0,-9,0,-1000.870890500719,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,41,35,15,1,1,-9,0,13.04504760489965,13.04504760489965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.8,37.81,6,2,0,0,6,5,1,1531,0,0,0 +11673,14299,26043,26044,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,6.4745860402642,6.613426753434326,1,0,-9,51,0,-2,21.39278047791608,0,0,0,73,3,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.374755907096772,6.551633691505117,0,0,57.51,45.05,6,1,0,0,5,2,1,786,0,0,0 +11673,14299,26044,26043,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,5.877105478507357,6.255437064925613,1,0,-9,51,0,2,-127.1765426641937,0,0,0,71,2,4,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.245348343283464,5.733009646780086,0,0,53,47,7,1,0,0,5,2,1,786,0,0,0 +11674,14300,26045,-9,-9,26046,2,1,0,17,2,0,1,1,2,0,7,2,0,5,4.006643346811895,5.606830087810775,4.895852134656538,4,0,0,0,-9,0,-947.7352613847041,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.897205441451528,0,0,0,49.95,57.02,6,1,0,0,8,1,1,263.5,0,0,0 +11674,14300,26046,-9,-9,-9,1,1,1,64,3,0,1,0,1,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-798.5528795072855,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,60,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,5,1,0,0,8,1,1,263.5,0,0,0 +11675,14301,26047,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,3,5.423467871564554,7.291967780636091,7.460876258522799,3,0,0,0,-9,0,-1073.404526514407,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.35593360158386,7.396750686875132,0,0,56.11,33.67,6,1,0,0,10,3,1,445.5,0,0,0 +11675,14301,26048,-9,26047,-9,2,1,1,16,2,0,0,1,3,-9,7,2,0,3,6.453551930343288,6.531882794958385,0,3,0,0,0,-9,0,-1087.70539445672,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,10,3,1,445.5,0,0,0 +11676,14302,26049,26050,-9,-9,2,1,0,54,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,6,0,-7,141.7531197965149,0,0,0,61,3,2,3,3,3,2019,4,1,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.29641965615928,1,41.26,23.05,4,1,0,0,13,2,0,241.5,0,0,0 +11676,14302,26050,26049,-9,-9,1,1,1,61,1,0,0,0,3,-9,8,3,1,2,0,6.732465538785736,6.769199935546791,1,0,-9,6,0,7,77.43491376035828,0,0,0,54,3,2,3,3,3,2019,4,2,30,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.944512960932999,0,0,0,29.84,22.86,2,1,0,0,13,2,0,241.5,0,0,0 +11676,14303,26051,-9,26049,26050,3,1,0,25,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1037.611941591214,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,18,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.79,47.81,4,1,0,0,13,1,0,228,0,0,0 +11676,14304,26052,-9,26049,26050,4,1,0,23,2,0,0,0,2,-9,2,1,0,3,8.018855263475869,7.806070981919305,0,3,0,0,0,-9,0,-931.1022255288387,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,1,50,0,15,1,1,-9,1,6.41060227511915,6.41060227511915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,7,1,0,0,13,4,0,421,0,0,0 +11677,14305,26053,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,5,8.750320678182092,8.614440732456035,0,3,0,0,0,-9,0,-961.5910393852474,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,53,53,15,1,0,-9,0,15.88272946250634,15.88272946250634,0,0,0,0,0,0,0,0,0,0,3.039832270620546,0,0,0,59.43,58.05,7,3,0,0,8,5,0,1171,0,0,0 +11677,14306,26054,-9,-9,-9,2,1,1,51,3,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1037.782400797118,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,53,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,6,3,0,0,8,1,0,395,0,0,0 +11677,14307,26055,-9,-9,-9,3,1,1,46,3,0,0,0,2,-9,2,1,0,5,8.898740430972405,8.970928873124622,0,3,0,0,0,-9,0,-917.9550527663315,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,6,42,45,15,1,6,-9,0,19.48103452803351,19.48103452803351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.02,53.64,6,3,0,0,8,5,0,405,0,0,0 +11677,14308,26056,-9,-9,-9,4,1,1,45,3,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1116.857515219976,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,40,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,6,3,0,0,8,1,0,1767,0,0,0 +11678,14309,26057,-9,-9,-9,1,1,0,45,3,0,0,0,2,-9,2,1,0,2,7.952693203066287,8.462605081728539,0,3,0,0,0,-9,0,-1075.548702216088,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,43,38,15,1,2,-9,0,10.34862699032665,10.34862699032665,0,0,0,0,0,0,0,0,0,0,0,0,8.276950188362981,3,53.59,42.05,5,1,0,1,2,4,1,570,0,0,0 +11679,14310,26058,-9,26060,26059,5,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1019.285335384824,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,5,2,0,962,0,0,0 +11679,14310,26059,26060,-9,-9,4,1,1,37,1,2,3,0,2,-9,2,1,0,4,7.572210368658262,7.532944199649529,0,2,0,-9,3,0,4,59.62117577619183,0,0,0,33,1,5,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,3,0,6.982568237655459,6.982568237655459,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,5,0,0,5,2,0,962,0,0,0 +11679,14310,26060,26059,-9,-9,1,1,0,33,1,2,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,3,0,-4,-76.98692075476086,0,0,1,37,2,4,1,2,3,2019,3,4,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.662279203520763,0,0,0,56.62,51.37,7,2,0,0,5,2,0,962,0,0,0 +11679,14310,26061,-9,26060,26059,3,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.750531939687,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,5,2,0,962,0,0,0 +11680,14311,26062,26063,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.835356000901385,8.526849907011593,1,0,-9,10,0,-2,52.29996771341297,0,0,0,73,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.143859990367294,8.74339366953512,0,0,52,48,6,1,0,0,7,5,1,490.5,0,0,0 +11680,14311,26063,26062,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,7.339653977446524,7.556248965395532,1,0,-9,10,0,2,11.43279720825485,0,0,0,71,2,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.122196098592577,7.242963852598657,0,0,55.52,43.17,6,1,0,0,7,5,1,490.5,0,0,0 +11681,14312,26064,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1111.447955420301,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,28.38136284368635,4.072750409898259,4.502915626958363,0,1,1,0,0,0,0,0,38.8,23.14,4,1,0,1,7,1,0,398,0,0,0 +11681,14313,26065,-9,26064,-9,2,1,1,50,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1059.853654147899,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.82,39.78,4,1,1,1,7,1,0,250,0,0,0 +11681,14314,26066,-9,26064,-9,3,1,0,46,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1095.886193397617,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.59282148680954,3,42.5,51.45,4,1,1,1,7,1,0,2031,0,0,0 +11681,14315,26067,-9,26066,-9,4,1,1,21,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-995.6185572497673,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,1,0,7,1,0,1242,0,0,0 +11682,14316,26068,26069,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,1,0,7.285969104979563,7.078614680990926,1,0,-9,3,0,-7,39.68436157871011,0,0,0,77,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.575771139047446,.2831008519105849,1,50.97,25.23,6,1,0,0,1,2,1,1473,0,0,0 +11682,14316,26069,26068,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,5.087688700989826,5.137032000117053,1,0,-9,3,0,7,-45.76837983387593,0,0,0,70,2,1,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,126.7143011730205,0,0,0,0,1,1,0,0,5.548216312451378,0,0,44.41,38.79,2,1,0,0,1,2,1,1473,0,0,0 +11683,14317,26070,26071,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,8.477505468594307,8.734463937521879,1,0,-9,44,0,0,49.05906287435675,0,0,0,67,1,4,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.700684974979182,8.349689721830499,0,0,36.2,64.19,6,1,0,0,9,4,1,1025.5,0,0,0 +11683,14317,26071,26070,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,1.773613584028148,2.076573027506533,1,0,-9,44,0,0,-95.36486554999152,0,0,0,67,1,4,3,2,3,2019,4,2,14,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.544862405756163,0,0,38.34,62.12,6,1,0,0,9,4,1,1025.5,0,0,0 +11683,14318,26072,-9,26071,26070,3,1,1,32,2,0,0,0,1,-9,2,1,0,3,7.864992873924111,8.155995615078112,0,3,0,-9,0,-9,0,-966.9291225156019,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,37,0,15,1,0,-9,1,8.172361348072814,8.172361348072814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,5,1,0,0,9,4,1,1601,0,0,0 +11684,14319,26073,26074,-9,-9,2,1,1,56,1,0,0,0,1,-9,1,1,0,3,9.156016200639483,9.080973767408317,0,1,0,-9,2,0,2,-76.31835084688471,0,0,0,54,1,3,1,2,2,2019,1,1,13,2,50,45,15,1,2,1,0,26.85371305708999,26.85371305708999,0,0,0,0,0,0,0,0,0,0,3.823319864699812,0,0,0,40.64,52.96,6,1,0,0,12,5,1,677,0,0,0 +11684,14319,26074,26073,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,3,8.827868697273278,8.9611334722306,0,1,0,-9,2,0,-2,104.0533430911773,0,0,0,56,1,3,1,1,1,2019,1,2,12,0,50,50,15,1,0,1,0,20.65913978853301,20.65913978853301,0,0,0,0,0,0,0,0,0,0,4.870119398168444,0,4.262839073824483,3,39.5,56.19,6,1,0,0,12,5,1,677,0,0,0 +11685,14320,26075,26076,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,53,0,0,0,0,0,0,71,2,3,3,3,2,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.465160852307935,0,1.208960295897449,3,45.74,52.04,5,1,0,0,2,1,1,619.5,0,0,0 +11685,14320,26076,26075,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,0,0,0,0,0,71,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,2,1,1,619.5,0,0,0 +11686,14321,26077,-9,26078,26079,3,1,1,17,2,0,1,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1113.779872794944,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1528609162256312,0,14.68854517781285,3,46.08,57.2,6,1,0,0,6,3,1,1232.333333333333,0,0,0 +11686,14321,26078,26079,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.96103194613742,7.582840240220848,0,2,0,-9,25,0,-8,46.05858414983192,0,0,0,55,2,3,1,-9,2,2019,1,2,6,0,15,15,15,1,0,1,0,20.49883106767561,20.49883106767561,0,0,0,0,0,0,0,1,1,0,0,0,5.160990567781209,3,57.33,53.46,6,1,0,0,6,3,1,1232.333333333333,0,0,0 +11686,14321,26079,26078,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,3,7.376068035151322,7.365000866001654,0,2,0,-9,25,0,8,-42.7508417152174,0,0,0,47,2,3,1,3,2,2019,1,1,11,0,27,27,15,1,0,1,0,6.08685387097071,6.08685387097071,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.24,50.01,4,1,0,0,6,3,1,1232.333333333333,0,0,0 +11687,14322,26080,26081,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.745685132745258,7.945853607814014,0,1,0,-9,10,0,4,20.9789361802171,0,0,0,55,2,3,1,2,3,2019,1,1,8,0,35,35,15,1,0,1,0,7.672180971266605,7.672180971266605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,5,1,0,0,10,4,0,1276.5,0,0,0 +11687,14322,26081,26080,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,3,8.077020316012673,7.996329040662084,0,1,0,-9,10,0,-4,74.59206492497124,0,0,0,59,2,4,1,3,3,2019,1,2,9,0,45,40,15,1,0,1,0,8.518079195685111,8.518079195685111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.3,39.24,5,1,0,0,10,4,0,1276.5,0,0,0 +11688,14323,26082,-9,26084,26085,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.468432430931,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,463.5,0,0,0 +11688,14323,26083,-9,26084,26085,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.0361980258759,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,463.5,0,0,0 +11688,14323,26084,26085,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,5,7.40294657042364,7.201453151073545,0,2,0,-9,6,0,1,-76.28565222174694,0,0,1,37,3,4,1,3,3,2019,1,2,8,0,25,20,15,1,0,1,0,8.498026473753047,8.498026473753047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,11,4,1,463.5,0,0,0 +11688,14323,26085,26084,-9,-9,2,1,1,37,1,0,2,0,3,-9,2,1,0,4,8.098664668310619,8.743849427355435,0,2,0,-9,6,0,-1,96.09236464344687,0,0,0,38,2,5,1,-9,-9,2019,1,1,9,0,38,46,15,1,0,1,0,13.10519060010654,13.10519060010654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,2,1,0,0,11,4,1,463.5,0,0,0 +11689,14324,26086,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,3,8.000486776175759,8.2168727724414,0,3,0,0,0,-9,0,-1026.06414562859,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,48,38,15,1,0,-9,0,6.995184708879809,6.995184708879809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,45.63,5,1,0,0,2,4,1,242,0,0,0 +11689,14325,26087,-9,26086,-9,2,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.101581233753191,7.188749049585251,0,3,0,0,0,-9,0,-1095.693502615986,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,0,15,1,1,-9,1,4.33826088148617,4.33826088148617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,2,2,1,675,0,0,0 +11690,14326,26088,-9,-9,-9,1,1,0,39,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1002.241772234788,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.18,38.78,1,2,0,0,8,1,0,404,0,0,0 +11691,14327,26089,26091,-9,-9,2,1,1,37,1,0,3,0,1,-9,2,1,0,4,8.869388444384635,8.805607621810752,0,2,0,-9,13,0,3,44.15848865016065,0,0,0,34,1,3,3,2,1,2019,2,1,10,0,39,38,15,1,0,3,0,21.80025175335284,21.80025175335284,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,4,3,1,547.5,0,0,0 +11691,14327,26090,-9,26091,26089,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.219387412337,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,3,1,547.5,0,0,0 +11691,14327,26091,26089,-9,-9,1,1,0,34,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,13,0,-3,-25.3213796527542,0,0,1,37,1,4,1,3,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.35,41.97,6,3,0,0,4,3,1,547.5,0,0,0 +11691,14327,26092,-9,26091,26089,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.653295351317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,3,1,547.5,0,0,0 +11692,14328,26093,26096,-9,-9,1,1,1,42,1,0,2,0,2,-9,1,1,0,3,0,0,0,2,0,-9,8,0,2,-56.54550470064073,0,0,0,40,1,5,1,2,2,2019,1,2,16,4,34,24,15,1,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.75,62.16,4,1,0,1,10,4,0,516.75,0,0,0 +11692,14328,26094,-9,26096,26093,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.911874330548,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,4,0,516.75,0,0,0 +11692,14328,26095,-9,26096,26093,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.5999967076441,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,4,0,516.75,0,0,0 +11692,14328,26096,26093,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,5,8.588810870992065,8.918933223789377,0,2,0,-9,8,0,-2,-69.94728529206287,0,0,1,42,2,3,1,-9,-9,2019,1,1,17,6,39,40,15,1,6,1,0,21.03394049499379,21.03394049499379,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.4,54.12,6,1,0,1,10,4,0,516.75,0,0,0 +11693,14329,26097,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,1,1,0,4,7.418984944623145,7.567068771115141,0,3,0,0,0,-9,0,-862.5474976296082,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,30,15,15,1,3,-9,0,5.961646874000309,5.961646874000309,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,54.3,5,2,0,0,11,3,1,249,0,0,0 +11694,14330,26098,26099,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,2,0,7.790466994092179,8.228753510871167,1,0,-9,9,0,-1,91.03977471524651,0,0,0,62,1,5,3,3,3,2019,4,2,12,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.349884710080368,7.457593245976698,0,0,55.6,47.8,6,1,0,0,13,4,1,370,0,0,0 +11694,14330,26099,26098,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,5,0,7.740515131945499,7.720991964852028,1,0,-9,9,0,1,117.3812358252898,0,0,0,61,2,2,3,2,2,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.506652406930566,7.53301087886352,0,0,55.09,53.17,6,1,0,0,13,4,1,370,0,0,0 +11695,14331,26100,26101,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,4,8.070167892113286,8.301629895093027,0,2,0,-9,9,0,-4,-69.28654907698422,0,0,0,54,2,4,1,2,3,2019,1,2,6,0,37,37,15,1,0,1,0,12.91359008400392,12.91359008400392,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.16,56.15,5,1,0,0,7,4,1,471.5,0,0,0 +11695,14331,26101,26100,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,4,7.986720639551633,7.539381391240024,0,2,0,-9,9,0,4,85.18556338462773,0,0,0,50,2,4,1,2,2,2019,1,1,9,0,27,24,15,1,0,1,0,10.24921544790928,10.24921544790928,0,0,0,0,0,0,0,1,1,0,0,0,0,3,33.74,63,5,1,0,0,7,4,1,471.5,0,0,0 +11695,14332,26102,-9,26101,26100,4,1,1,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-990.9134012856739,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,7,1,1,972,0,0,0 +11696,14333,26103,26104,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,3,0,0,0,2,0,-9,23,0,-3,-118.376062524352,0,0,0,54,1,5,1,-9,-9,2019,1,1,35,12,0,49,15,1,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.696851758682659,0,0,0,22.15,60.02,2,3,0,0,8,3,1,455.3333333333333,0,0,0 +11696,14333,26104,26103,-9,-9,1,1,1,54,1,0,1,0,1,-9,2,1,0,5,7.34338047090501,8.588910538109735,7.918809612052582,2,0,-9,23,0,3,10.96346155006018,0,0,0,51,1,3,1,-9,-9,2019,1,2,6,0,20,20,15,1,0,1,0,8.067972296029268,8.067972296029268,0,0,0,0,0,0,0,1,1,0,8.621511028987124,0,0,0,54.1,59.11,5,1,0,0,8,3,1,455.3333333333333,0,0,0 +11696,14333,26105,-9,26103,26104,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1150.355395114823,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,2,0,0,8,3,1,455.3333333333333,0,0,0 +11697,14334,26106,-9,-9,-9,1,1,0,94,3,0,0,0,2,-9,4,3,0,4,0,7.500425985383327,7.264381291174757,3,0,0,0,-9,0,-895.9218269803771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.586488774853148,0,0,0,0,49.31641721031743,1,1,0,1.264957000200402,7.552680651021568,0,0,61.49,43.19,6,1,0,0,12,3,1,300,0,0,0 +11698,14335,26107,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.356995499732395,8.429680316078157,0,3,0,0,0,-9,0,-892.1316021392865,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,1,37,37,15,1,1,-9,0,20.84925806399533,20.84925806399533,0,0,0,0,0,0,0,1,1,0,3.792937849388569,0,0,0,52.08,55.93,6,1,0,0,10,5,0,553,0,0,0 +11699,14336,26108,26109,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,2,0,7.569911738133397,7.646274284086544,1,0,-9,10,0,-10,50.45182843862507,0,0,0,73,3,1,3,3,3,2019,4,2,24,9,0,18,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.630717481997504,77.02615476204699,1,28.98,54.35,2,1,0,0,10,3,1,605,0,0,0 +11699,14336,26109,26108,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,1,0,6.821812336810224,6.496033225697567,1,0,-9,10,0,10,-46.50379257982345,0,0,0,63,1,2,3,-9,-9,2019,4,1,27,11,0,0,15,4,11,4,0,0,0,1,0,31.98463073937775,0,0,0,0,1,1,0,.7194774889592428,6.749826850288034,0,0,39.57,18.04,2,1,0,0,10,3,1,605,0,0,0 +11700,14337,26110,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1057.517597268377,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,11,0,0,15,4,11,-9,0,0,0,1,0,0,4.632309964340433,0,19.36715215916073,0,1,1,0,0,0,0,0,39.38,22.52,3,5,0,0,11,1,0,974,0,0,0 +11701,14338,26111,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,1,1,0,4,7.992853577521278,8.955902713033247,7.918710208715154,3,0,0,0,-9,0,-946.2920728436959,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,24,14,15,1,0,-9,0,16.19360775606185,16.19360775606185,0,0,0,0,0,0,0,0,0,0,8.094888631329203,0,0,0,57.16,56.15,6,1,0,0,9,5,1,336,0,0,0 +11702,14339,26112,26113,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.317277680333621,7.273738212755767,0,1,0,-9,5,0,-1,205.834144457137,0,0,0,60,2,3,1,3,3,2019,1,1,11,0,20,20,15,1,0,1,0,10.96519668575115,10.96519668575115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.44,56.39,5,1,0,0,9,4,0,707.5,0,0,0 +11702,14339,26113,26112,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.451544040099645,8.687789912057431,6.268183174128581,1,0,-9,5,0,1,124.2027465159916,0,0,0,59,2,4,1,3,3,2019,1,2,7,0,40,45,15,1,0,1,0,13.83086325795431,13.83086325795431,0,0,0,0,0,0,0,0,0,0,0,6.562845186645059,0,0,52.08,51.67,2,1,0,0,9,4,0,707.5,0,0,0 +11702,14340,26114,-9,26112,26113,3,1,0,27,2,0,0,0,1,-9,2,1,0,4,7.966499935228145,8.060070242251669,0,3,0,0,0,-9,0,-1143.613998664131,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,1,42,46,15,1,1,-9,1,6.390931051211984,6.390931051211984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,4,1,0,0,9,3,0,586,0,0,0 +11703,14341,26115,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,4,8.766012961255221,9.112980066115259,0,3,0,0,0,-9,0,-960.3326791531891,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,45,50,15,1,1,-9,0,19.20742321316613,19.20742321316613,0,0,0,0,0,0,0,1,1,0,.1854680666998694,0,0,0,46.5,58.26,5,1,0,0,9,5,0,254,0,0,0 +11704,14342,26116,-9,-9,-9,1,1,0,23,2,0,0,1,1,0,7,2,0,5,6.381844427542695,8.003378729646947,7.069876183551345,3,0,0,0,-9,0,-895.9873963094775,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.518529099041661,0,0,0,56.47,59.4,6,1,0,0,2,3,0,2076,0,0,0 +11705,14343,26117,26118,-9,-9,1,1,0,68,1,0,0,0,3,-9,2,1,0,4,7.193050603291971,7.147387560605239,0,1,0,-9,53,0,-5,-164.0748099694165,0,0,0,73,3,3,3,3,-9,2019,2,2,6,0,15,20,15,1,0,4,0,9.438410068218028,9.438410068218028,0,0,0,0,0,0,0,1,1,0,2.111450207794027,0,2.32066368433151,3,57.16,56.15,6,1,0,0,7,2,1,1220.5,0,0,0 +11705,14343,26118,26117,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,53,0,5,170.2448214701881,0,0,0,68,3,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.077604467353252,0,7.115095625395809,3,59.7,53.75,7,1,0,0,7,2,1,1220.5,0,0,0 +11706,14344,26119,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,2,0,4.946429799541922,5.200028588093168,3,0,0,0,-9,0,-949.6378046047897,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.445649307989988,4.790767516057992,0,0,38,36.96,2,1,0,0,6,2,0,2078,0,0,0 +11707,14345,26120,26121,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,2,0,7.215645103377763,7.808394629871071,1,0,-9,7,0,-2,-89.73915261744604,0,0,0,63,3,4,3,3,3,2019,4,2,14,2,0,43,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.545005555278037,7.451301050882225,0,0,50.68,28.49,5,1,0,0,4,3,1,1120.5,0,0,0 +11707,14345,26121,26120,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,4,0,6.530534871287593,6.756473095779966,1,0,-9,7,0,2,-69.59402764873344,0,0,0,61,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.428119191842591,6.544955338251832,0,0,54.2,57.49,7,1,0,0,4,3,1,1120.5,0,0,0 +11708,14346,26122,26123,-9,-9,1,1,1,65,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,8,0,11,28.14114404444262,0,0,0,54,1,4,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7348856563744737,0,0,0,41.75,37.95,2,1,0,0,10,3,1,614,0,0,0 +11708,14346,26123,26122,-9,-9,2,1,0,54,1,0,1,0,1,-9,2,1,0,4,8.417076542930248,8.278246309623274,0,2,0,-9,8,0,-11,-17.46356886389711,0,0,0,65,2,2,3,3,3,2019,2,1,9,0,35,30,15,1,0,3,0,14.33442430002681,14.33442430002681,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,4,1,0,0,10,3,1,614,0,0,0 +11709,14347,26124,26125,-9,-9,1,1,0,83,1,0,0,0,1,-9,4,3,0,4,0,6.515002646517977,6.665308892428091,1,0,-9,50,0,10,61.46138756476439,0,0,0,73,2,3,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.371709614638969,0,0,59.89,42.51,6,1,0,0,7,4,1,1214.5,0,0,0 +11709,14347,26125,26124,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,3,7.134324097182261,8.494553169934781,8.276377234087777,1,0,-9,50,0,-10,-108.3866078962932,0,0,0,83,1,4,3,2,1,2019,2,1,8,0,30,0,15,1,0,4,0,4.820740879792404,4.820740879792404,0,0,0,0,0,0,0,1,1,0,7.653198778022701,8.411286583569918,0,0,52.34,49.07,6,1,0,0,7,4,1,1214.5,0,0,0 +11710,14348,26126,26127,-9,-9,2,1,0,57,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,37,0,-5,-33.34925991146461,0,0,0,62,3,3,1,3,3,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.43,30.74,5,3,0,1,5,2,0,856,0,0,0 +11710,14348,26127,26126,-9,-9,1,1,1,62,1,0,0,0,3,-9,1,1,0,3,7.596903437640054,7.371853084793467,0,1,0,-9,37,0,5,36.72373567787572,0,0,0,57,3,2,3,3,3,2019,2,2,11,2,32,36,15,1,2,3,0,4.933902980990289,4.933902980990289,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,7,3,0,1,5,2,0,856,0,0,0 +11710,14349,26128,-9,26126,26127,3,1,1,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1080.191624048049,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,0,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.5,54.97,4,3,0,0,5,1,0,3159,0,0,0 +11711,14350,26129,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,3,8.778221328178434,9.013477671198212,0,3,0,0,0,-9,0,-1058.64665628827,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,37,43,15,1,1,-9,0,19.60348503033151,19.60348503033151,0,0,0,0,0,0,0,0,0,0,6.52675042169362,0,0,0,41.77,49.72,4,1,0,0,4,5,1,354,0,0,0 +11712,14351,26130,26131,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,7.926757359837817,7.852148629451309,0,1,0,-9,38,0,-5,59.69024912712162,0,0,0,63,2,3,1,-9,-9,2019,1,1,12,0,38,38,15,1,0,1,0,8.887219870342209,8.887219870342209,0,0,0,0,0,0,0,0,0,0,3.035534271738216,0,0,0,42.61,49.31,3,1,0,0,12,4,1,110.5,0,0,0 +11712,14351,26131,26130,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,7.583636632112762,7.899702708807705,0,1,0,-9,38,0,5,-104.2517621803407,0,0,0,58,2,3,1,3,2,2019,1,2,12,1,40,62,15,1,1,1,0,10.42728151636767,10.42728151636767,0,0,0,0,0,0,0,0,0,0,6.17012686028695,0,0,0,52.4,52.91,6,1,0,0,12,4,1,110.5,0,0,0 +11713,14352,26132,26133,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,8.117154827005402,8.106228278065569,0,2,0,-9,8,0,-5,-25.74888278800331,0,0,0,56,2,2,3,-9,-9,2019,2,1,9,0,39,37,15,1,1,3,0,9.902145919331758,9.902145919331758,0,0,0,0,0,0,0,1,1,0,3.51037962793808,0,0,0,53,55,6,1,0,0,5,3,1,638.25,0,0,0 +11713,14352,26133,26132,-9,-9,1,1,0,56,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,8,0,5,-68.95897545299178,0,0,0,51,2,4,1,3,3,2019,3,2,13,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.44117326815522,3,48.45,36.23,7,1,0,0,5,3,1,638.25,0,0,0 +11713,14352,26134,-9,26133,26132,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.759021076455,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,638.25,0,0,0 +11713,14352,26135,-9,26133,26132,3,1,1,17,2,0,1,0,2,-9,2,3,0,4,7.969772464008529,7.656289833341038,0,2,0,0,0,-9,0,-860.5054971805823,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,32,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.15037402690123,3,47.44,56.39,6,1,0,0,5,3,1,638.25,0,0,0 +11714,14353,26136,26137,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,3,8.672394296464729,9.133930530056817,7.84165792278304,1,0,-9,10,0,4,-8.179353224491647,0,0,0,62,2,4,3,3,3,2019,4,1,6,0,15,20,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.246239105613345,8.012010585950229,0,0,42,52.08,6,1,0,0,11,5,1,961.5,0,0,0 +11714,14353,26137,26136,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,7.40336979235704,7.233117741958836,1,0,-9,10,0,-4,111.9538706796468,0,0,0,66,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.892244769841013,7.865380775145407,0,0,42.85,60.33,5,1,0,0,11,5,1,961.5,0,0,0 +11715,14354,26138,26139,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,4,8.712434010519623,8.611137391116564,0,1,0,-9,9,0,4,-86.70456223796653,0,0,0,42,2,2,1,3,3,2019,1,2,24,12,45,76,15,1,12,1,0,14.15101900694441,14.15101900694441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,3,1,0,0,7,4,1,289,0,0,0 +11715,14354,26139,26138,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,2,5.786833702140249,6.077366972449894,0,1,0,-9,9,0,-4,53.12705987154725,0,0,0,46,1,4,1,2,2,2019,1,1,12,0,45,50,15,1,0,1,0,.8613079244059691,.8613079244059691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,44.27,3,1,0,0,7,4,1,289,0,0,0 +11716,14355,26140,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,2,1,0,5,7.790760219630521,9.083275860239967,8.944656515672065,3,0,0,0,-9,0,-987.4154708398672,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,40,15,1,0,-9,0,8.966344707344176,8.966344707344176,0,0,0,0,0,0,0,1,1,0,6.816821396170775,8.409619043173093,0,0,57.06,57.76,6,1,0,0,11,5,1,452,0,0,0 +11717,14356,26141,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,2,8.3873713252796,9.106541999004911,0,3,0,0,0,-9,0,-1061.843332304243,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,60,30,15,1,0,-9,0,14.4570743878826,14.4570743878826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.22,41.56,3,4,0,0,8,5,1,1364,0,0,0 +11718,14357,26142,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,1,1,0,1,6.308078487571099,6.429712438435606,0,3,0,0,0,-9,0,-910.9856327895469,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,9,50,40,15,1,9,-9,0,1.478645662459126,1.478645662459126,0,0,0,0,0,0,0,1,1,0,0,0,8.922709233074981,3,49.2,33.36,3,4,0,1,6,2,0,1165,0,0,0 +11719,14358,26143,26144,-9,-9,2,1,1,52,1,0,0,0,3,-9,2,1,0,3,7.68153810492737,7.847258050614488,6.503927236540459,1,0,-9,11,0,-1,101.2541859790347,0,0,0,53,2,4,1,-9,-9,2019,1,1,11,0,40,80,15,1,2,1,0,6.368072821281982,6.368072821281982,0,0,0,0,0,0,0,0,0,0,0,6.364747425923519,0,0,49,50,5,1,0,0,1,5,1,459,0,0,0 +11719,14358,26144,26143,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,4,9.844752407067961,9.443925052389243,0,1,0,-9,23,0,1,46.47057058493647,0,0,0,52,3,3,1,2,2,2019,1,2,1,0,20,60,15,1,0,1,0,83.07954122208847,83.07954122208847,0,0,0,0,0,0,0,0,0,0,7.721288045781139,0,11.96526042017059,3,60.12,54.8,7,1,0,0,1,5,1,459,0,0,0 +11720,14359,26145,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,6.913539958090917,6.691628436570962,3,0,0,0,-9,0,-1054.809798734149,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.230482097218447,0,0,46.79,41.89,7,2,0,0,8,2,1,184,0,0,0 +11721,14360,26146,26147,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,1,0,0,0,1,0,-9,29,0,3,0,0,0,0,55,3,1,3,3,2,2019,2,1,33,12,0,70,15,1,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.19098059733767,1,15.05,27.23,1,1,0,0,10,1,0,512,0,0,0 +11721,14360,26147,26146,-9,-9,1,1,0,55,1,0,0,0,3,-9,6,3,0,1,0,0,0,1,0,-9,29,0,-3,0,0,0,0,58,2,1,1,2,2,2019,3,2,28,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.18260357956538,3,21.72,22.57,4,1,0,0,10,1,0,512,0,0,0 +11721,14361,26148,-9,26147,26146,3,1,1,22,3,0,0,0,2,-9,2,1,0,4,7.910745931911734,7.788419198122344,0,3,0,0,0,-9,0,-979.278467667006,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,40,38,15,1,4,-9,1,9.500048266927308,9.500048266927308,0,0,0,0,0,0,0,1,1,0,.7326085571742058,0,9.82386236628788,3,38.27,59.42,5,1,0,0,10,4,0,325,0,0,0 +11722,14362,26149,26150,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,4,8.610877743203087,8.206698817264297,0,1,0,-9,4,0,4,17.99158362180128,0,0,0,41,2,3,1,-9,-9,2019,1,1,7,0,45,44,15,1,0,1,0,12.51167488900226,12.51167488900226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,6,1,0,0,12,5,1,854.5,0,0,0 +11722,14362,26150,26149,-9,-9,1,1,0,41,1,0,0,0,2,-9,2,1,0,3,8.137458468758286,8.388545375636248,0,1,0,-9,4,0,-4,72.74221361115907,0,0,1,45,2,4,1,2,2,2019,1,2,6,0,34,37,15,1,0,1,0,14.79834265205537,14.79834265205537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,12,5,1,854.5,0,0,0 +11723,14363,26151,-9,26152,-9,1,1,0,22,2,0,0,0,2,-9,2,1,0,3,7.369446203949193,7.55310403889893,0,3,0,0,0,-9,0,-1072.326780900299,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,9,20,0,15,1,9,-9,1,6.781228294580138,6.781228294580138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.52,29.46,3,1,0,0,9,2,0,396,0,0,0 +11723,14364,26152,-9,-9,-9,2,1,0,47,3,0,0,0,1,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1135.729312217057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.09747949549761,3,50.48,28.86,3,1,0,1,9,1,0,355,0,0,0 +11723,14365,26153,-9,26152,-9,3,1,1,26,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1070.433514233913,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,9,1,0,1300,0,0,0 +11724,14366,26154,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-993.8566867000513,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,24.01,6,4,0,0,8,1,0,2879,0,0,0 +11725,14367,26155,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,-9,0,1,0,-1086.381091373737,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,38,6,1,1,0,9,1,0,1030,0,0,0 +11726,14368,26156,26157,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,5.436843458934093,5.192100663212567,1,0,-9,6,0,0,16.42552025657204,0,0,0,74,3,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.079095337407638,5.18231235426764,120.0788062091049,3,54.79,55.86,6,1,0,0,12,2,1,694,0,0,0 +11726,14368,26157,26156,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,0,-100.9338079013585,0,0,0,74,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,113.3091027327377,3,59.36,40.22,4,1,0,0,12,2,1,694,0,0,0 +11726,14369,26158,-9,26157,26156,3,1,1,43,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1061.19345551992,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,1,0,0,12,1,1,1632,0,0,0 +11727,14370,26159,26160,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,3,9.641292129378375,9.660635032384233,0,1,0,-9,31,0,-5,17.48083278491247,0,0,0,59,2,2,1,2,2,2019,1,2,12,0,50,56,15,1,0,1,0,33.53052282645599,33.53052282645599,0,0,0,0,0,0,0,0,0,0,3.754558574979149,0,0,0,46.2,53.02,6,1,0,0,10,5,1,496,0,0,0 +11727,14370,26160,26159,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.955039948450676,8.72139337650342,0,1,0,-9,10,0,5,25.5494582951495,0,0,0,54,1,3,1,2,2,2019,1,1,9,0,34,32,15,1,0,1,0,22.80539179295732,22.80539179295732,0,0,0,0,0,0,0,0,0,0,7.779603636828715,0,0,0,54.75,46.83,7,1,0,0,10,5,1,496,0,0,0 +11728,14371,26161,26162,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,4,0,7.147482685197973,6.944288859504987,1,0,-9,7,0,3,-80.10873499300543,0,0,0,56,3,2,1,3,2,2019,1,1,6,0,16,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.683796804373504,7.221251840614271,0,0,54.2,57.49,5,1,0,0,2,4,1,609.5,0,0,0 +11728,14371,26162,26161,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,2,8.394333028918085,8.661655601747029,6.918657206207255,1,0,-9,7,0,-3,40.36546672133593,0,0,0,59,2,4,1,2,2,2019,1,2,10,2,41,51,15,1,2,1,0,11.56151408631391,11.56151408631391,0,0,0,0,0,0,0,1,1,0,4.554583874768236,7.321970633039613,0,0,40.46,33.04,6,1,0,0,2,4,1,609.5,0,0,0 +11729,14372,26163,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,8.406615209840336,8.386550571351881,0,3,0,0,0,-9,0,-843.675964543184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,36,48,15,1,0,-9,0,12.88145293399661,12.88145293399661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.41,46.39,6,3,0,0,8,4,1,878,0,0,0 +11730,14373,26164,26165,-9,-9,2,1,0,53,1,0,0,0,3,-9,1,1,0,5,7.867256096020798,7.898081702632634,0,1,0,-9,14,0,6,61.07759688755317,0,0,0,47,2,4,1,2,2,2019,1,1,6,0,25,25,15,1,0,1,0,10.77164684909433,10.77164684909433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,10,4,1,229,0,0,0 +11730,14373,26165,26164,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.412515854272584,8.324534904345532,0,1,0,-9,9,0,-6,22.47183565980257,0,0,0,53,3,5,1,-9,-9,2019,1,2,11,1,45,45,15,1,1,1,0,11.3446997648651,11.3446997648651,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.91,58.02,6,1,0,0,10,4,1,229,0,0,0 +11731,14374,26166,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,4,3,0,4,5.486092079393879,7.629474264335913,7.882760577727996,3,0,0,0,-9,0,-1003.372700225717,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,2,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59439575557023,8.002939870314453,0,0,55.76,52.64,6,1,0,0,10,3,1,257,0,0,0 +11732,14375,26167,26168,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,3,0,6.840866992010424,7.235823732828906,1,0,-9,57,0,7,.7657658660160065,0,0,0,78,3,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.203755874074568,0,0,55,45,7,1,0,0,10,2,1,1794,0,0,0 +11732,14375,26168,26167,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,57,0,-7,-72.50306096485166,0,0,0,85,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.8,31.22,5,1,0,0,10,2,1,1794,0,0,0 +11733,14376,26169,26170,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,0,0,0,1,0,-9,7,0,10,115.8588154363672,-9,0,0,50,2,4,1,3,-9,2019,1,1,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,11,2,1,822,0,0,0 +11733,14376,26170,26169,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.450705172440407,7.414027156273101,0,1,0,-9,7,0,-10,55.27953903389209,0,0,0,60,2,4,1,3,2,2019,1,2,12,0,34,34,15,1,0,1,0,5.746242406190285,5.746242406190285,0,0,0,0,0,0,0,0,0,0,2.602711662904821,0,0,0,51.83,57.2,6,1,0,0,11,2,1,822,0,0,0 +11733,14377,26171,-9,26170,26169,3,1,0,23,2,0,0,0,1,-9,2,1,0,5,6.891277811423594,7.259016530252384,0,3,0,0,0,-9,0,-1073.266665514636,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,15,8,15,1,0,-9,1,8.429990314058305,8.429990314058305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,1,11,2,1,242,0,0,0 +11733,14378,26172,-9,26170,26169,4,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.075562297839223,7.202636222866504,0,3,0,0,0,-9,0,-979.1992534011523,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,2,0,20,20,15,1,0,-9,1,7.273026562033237,7.273026562033237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,11,2,1,232,0,0,0 +11734,14379,26173,26174,-9,-9,2,1,1,82,1,0,0,0,1,-9,4,3,0,2,0,8.054994149719443,7.841419119195447,1,0,-9,54,0,1,70.23808830414093,0,0,0,81,2,3,3,-9,-9,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.45868361932891,7.93177480116462,0,0,55.36,30.31,2,1,0,0,10,3,1,440,0,0,0 +11734,14379,26174,26173,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,6.312702337726155,6.695675062302868,1,0,-9,54,0,-1,-29.70188044703009,0,0,0,82,1,2,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.982601506697492,6.281255356561109,0,0,59.78,35.9,6,1,0,0,10,3,1,440,0,0,0 +11735,14380,26175,26176,-9,-9,1,1,1,57,1,1,1,0,2,-9,2,1,0,4,7.989686779303358,7.839218083192472,0,2,0,-9,9,0,1,-20.96854832861296,0,0,0,56,2,3,1,3,3,2019,1,2,9,0,39,39,15,1,0,1,0,10.17464147613128,10.17464147613128,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.16,56.15,5,1,0,0,5,4,0,1134,0,0,0 +11735,14380,26176,26175,-9,-9,2,1,0,56,1,1,1,0,2,-9,2,1,0,3,7.647140372195469,8.195153087324957,0,2,0,-9,9,0,-1,-18.01843158477014,0,0,0,57,2,4,1,3,3,2019,1,1,13,1,36,33,15,1,1,1,0,9.24577116149834,9.24577116149834,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,4,1,0,0,5,4,0,1134,0,0,0 +11735,14381,26177,-9,26176,26175,4,1,0,21,2,1,1,0,2,-9,2,1,0,4,7.938635448846632,8.394602070704861,0,3,0,0,0,-9,0,-1032.955623627455,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,43,40,15,1,0,-9,1,7.435917568206284,7.435917568206284,0,0,0,0,0,0,0,1,1,0,2.307894369251725,0,0,0,58.33,47.36,6,1,0,0,5,4,0,983,0,0,0 +11735,14382,26178,-9,26176,26175,5,1,0,31,2,1,1,0,2,-9,5,1,0,4,7.724341043851203,7.862379210401218,0,3,0,0,0,-9,0,-906.4157015067864,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,14,2,43,42,15,1,2,-9,1,6.86625013385004,6.86625013385004,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.15,55.37,6,1,0,0,5,3,0,1056,0,0,0 +11735,14382,26179,-9,26178,-9,6,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-959.1582763105016,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,5,3,0,1056,0,0,0 +11736,14383,26180,-9,26182,26183,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.584080995309,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,474.2,0,0,0 +11736,14383,26181,-9,26182,26183,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.9694176083901,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,474.2,0,0,0 +11736,14383,26182,26183,-9,-9,1,1,0,37,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,17,0,-11,20.84273058376398,0,0,1,48,3,4,1,3,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,6,3,0,0,8,2,0,474.2,0,0,0 +11736,14383,26183,26182,-9,-9,2,1,1,48,1,0,3,0,3,-9,1,1,0,4,6.829195352021604,6.797863776495316,0,2,0,-9,16,0,11,41.64433364969624,0,0,0,37,2,3,3,3,2,2019,2,1,9,0,40,35,15,1,1,3,0,2.62444815395564,2.62444815395564,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,2,0,474.2,0,0,0 +11736,14383,26184,-9,26182,26183,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-856.418342283469,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,474.2,0,0,0 +11737,14384,26185,26188,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,3,6.475034195299547,6.770447108643862,0,2,0,-9,9,0,-7,-26.25609472857576,0,0,1,45,2,2,1,-9,-9,2019,1,2,13,3,13,13,15,1,3,1,0,8.911532833702163,8.911532833702163,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,4,4,0,0,10,3,0,417.5,0,0,0 +11737,14384,26186,-9,26185,26188,4,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-981.2099582402909,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,2,0,0,10,3,0,417.5,0,0,0 +11737,14384,26187,-9,26185,26188,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.2665458837123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,10,3,0,417.5,0,0,0 +11737,14384,26188,26185,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,2,8.199231425842799,8.232587391686497,0,2,0,-9,9,0,7,-20.86944563784529,0,0,0,38,2,3,1,-9,-9,2019,1,1,11,0,45,45,15,1,0,1,0,6.816839480070815,6.816839480070815,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,5,1,0,0,10,3,0,417.5,0,0,0 +11737,14385,26189,-9,26185,26188,3,1,0,18,2,0,2,0,2,1,2,1,0,3,6.845329311944885,7.088796556574821,0,3,0,0,0,-9,0,-1056.896622166882,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.01,48.98,6,2,0,0,10,2,0,85,0,0,0 +11738,14386,26190,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,8.996476121711021,8.79005507354861,0,3,0,0,0,-9,0,-1003.089128884416,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,42,40,15,1,2,-9,0,17.2045081177993,17.2045081177993,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.69,45.88,6,1,0,0,11,5,1,672,0,0,0 +11739,14387,26191,-9,26194,26193,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.5172864131445,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,12,4,1,470.5,0,0,0 +11739,14387,26192,-9,26194,26193,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.1394800434186,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,470.5,0,0,0 +11739,14387,26193,26194,-9,-9,1,1,1,55,1,0,2,0,2,-9,2,1,0,4,8.18117024133546,8.389825938428343,0,2,0,-9,6,0,4,-151.67117343583,0,0,0,51,2,3,1,-9,3,2019,1,2,11,3,35,35,15,1,3,1,0,10.67300810810018,10.67300810810018,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.66,45.88,6,1,0,0,12,4,1,470.5,0,0,0 +11739,14387,26194,26193,-9,-9,2,1,0,51,1,0,2,0,2,-9,2,1,0,3,8.033151598900746,7.78657134070798,0,2,0,-9,6,0,-4,12.30871726554761,0,0,0,55,2,4,1,2,2,2019,1,1,11,0,38,0,15,1,0,1,0,8.900901305770665,8.900901305770665,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,6,1,0,0,12,4,1,470.5,0,0,0 +11740,14388,26195,-9,-9,-9,1,1,0,22,2,0,0,0,1,1,2,1,0,4,8.027149700073034,8.323030090423737,0,3,0,0,0,-9,0,-1005.409800766936,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,0,15,1,0,-9,0,7.718596848228391,7.718596848228391,0,0,0,0,0,0,0,0,0,0,3.126667651945103,0,0,0,43.54,59.6,6,1,0,0,7,4,0,1185,0,0,0 +11741,14389,26196,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,4,8.53594526348509,8.595920875046199,0,3,0,0,0,-9,0,-1047.138721132875,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,37,38,15,1,0,-9,0,17.52207552764416,17.52207552764416,0,0,0,0,0,0,0,0,0,0,2.15572452820171,0,0,0,54.2,57.49,6,1,0,0,8,4,0,291,0,0,0 +11741,14390,26197,-9,-9,-9,2,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.965314728755125,8.81455189676449,0,3,0,0,0,-9,0,-1115.622930553594,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,35,45,15,1,0,-9,0,27.02995033209019,27.02995033209019,0,0,0,0,0,0,0,0,0,0,3.307192551119952,0,0,0,56.9,49.4,3,1,0,0,8,5,0,1391,0,0,0 +11741,14391,26198,-9,-9,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.017808736281452,7.952758389873296,0,3,0,-9,0,-9,0,-968.5681656391172,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,0,15,1,0,-9,0,9.827104801432322,9.827104801432322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.86,55.73,6,1,0,0,8,4,0,759,0,0,0 +11742,14392,26199,26200,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,2,-35.98190956801807,0,0,0,74,3,4,3,2,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.44,37.79,6,1,0,0,5,2,1,910.5,0,0,0 +11742,14392,26200,26199,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,5.596274154481293,5.67022829559061,1,0,-9,48,0,-2,-66.70548072195655,0,0,0,76,3,3,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.746944632584803,0,0,56,52,7,1,0,0,5,2,1,910.5,0,0,0 +11743,14393,26201,26202,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.974449739167714,7.720786761379932,4.009142325430158,1,0,-9,10,0,-1,-92.62418520266272,0,0,0,53,2,2,1,3,3,2019,1,2,16,5,57,22,15,1,5,1,0,6.80871033452,6.80871033452,0,0,0,0,0,0,0,0,0,0,4.172128390921737,3.834040278034005,0,0,35.05,35.48,6,1,0,0,4,5,1,168,0,0,0 +11743,14393,26202,26201,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,2,8.666252229130738,9.220800869511928,0,1,0,-9,10,0,1,4.973303404776356,0,0,0,52,2,2,1,3,2,2019,1,1,16,4,50,50,15,1,4,1,0,16.0140403111162,16.0140403111162,0,0,0,0,0,0,0,0,0,0,7.023153149229864,0,0,0,42.86,37.52,4,1,0,0,4,5,1,168,0,0,0 +11744,14394,26203,26204,-9,-9,2,1,0,86,1,0,0,0,1,-9,4,3,0,3,0,6.667480991089231,6.511383218452183,1,0,-9,61,0,-2,9.120894153742002,0,0,0,88,1,1,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,8.339933991072131,11.2493881139164,0,0,0,1,1,0,0,7.070263534790103,119.6495908789545,1,53.89,41.28,4,1,0,0,8,3,1,646,0,0,0 +11744,14394,26204,26203,-9,-9,1,1,1,88,1,0,0,0,1,-9,4,3,0,1,0,7.830449443182342,7.834538301361362,1,0,-9,61,0,2,16.71340098165849,0,0,0,86,1,3,3,3,3,2019,4,2,17,4,0,0,15,4,4,4,0,0,0,1,1.975525759190172,0,6.48962612927216,0,0,8.050831608329153,1,1,0,1.085090954958317,8.120908177629806,121.0785560199303,1,51.64,17.73,2,1,0,0,8,3,1,646,0,0,0 +11745,14395,26205,-9,-9,26206,1,1,1,35,2,0,0,0,2,-9,2,1,0,3,8.120961548750884,8.256168914674006,0,3,0,0,0,-9,0,-1062.289510440505,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,40,40,15,1,1,-9,1,9.957293784507298,9.957293784507298,0,0,0,0,0,0,0,0,0,0,6.5358363053041,0,0,0,48.93,50.55,6,1,0,0,7,4,1,1859,0,0,0 +11745,14396,26206,-9,-9,-9,2,1,1,62,3,0,0,0,3,-9,2,1,0,4,8.136946666913772,8.477462316888113,6.56061543930315,3,0,0,0,-9,0,-1021.931739891294,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,60,0,15,1,0,-9,0,5.161027647531406,5.161027647531406,0,0,0,0,0,0,0,0,0,0,0,6.587233606989042,0,0,55,52,6,5,0,0,7,4,1,1946,0,0,0 +11746,14397,26207,26208,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,4,0,8.751653709376715,8.653644896957651,1,0,-9,10,0,-5,67.33988944867883,0,0,0,64,2,4,1,-9,-9,2019,3,1,9,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84747959145623,8.571971443735595,0,0,58.72,51.29,6,1,0,0,9,5,1,960.5,0,0,0 +11746,14397,26208,26207,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,4,6.336162732553603,7.627074056248717,6.742135691870726,1,0,-9,32,0,5,-8.082964533980656,0,0,0,59,1,4,3,3,3,2019,2,2,11,0,10,10,15,1,0,4,0,7.777329507165183,7.777329507165183,0,0,0,0,0,0,0,0,0,0,3.431009322564805,7.144358759746527,0,0,54.77,55.87,6,1,0,0,9,5,1,960.5,0,0,0 +11746,14398,26209,-9,26208,26207,4,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.688736933815025,7.933893753193772,0,3,0,0,0,-9,0,-909.3372672027142,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,42,44,15,1,0,-9,1,7.000599926878425,7.000599926878425,0,0,0,0,0,0,0,0,0,0,3.091116966641084,0,0,0,57.16,56.15,6,1,0,0,9,4,1,421,0,0,0 +11747,14399,26210,-9,26211,-9,2,1,0,25,2,0,1,0,2,-9,2,1,0,4,8.04138344525912,7.81876196323003,0,3,0,0,0,-9,0,-1021.114507819861,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,3,0,45,40,15,1,0,-9,1,7.513420043730149,7.513420043730149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,55.11,7,5,0,0,8,3,0,324,0,0,0 +11747,14400,26211,26212,-9,-9,1,1,0,48,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-12,-52.22345843190985,0,0,0,60,3,3,1,3,3,2019,3,4,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,5,0,0,8,2,0,2109.333333333333,0,0,0 +11747,14400,26212,26211,-9,-9,4,1,1,60,1,0,1,0,3,-9,2,1,0,3,6.87369785564477,6.760783785230744,0,2,0,-9,6,0,12,39.88630004440424,0,0,0,48,3,3,3,-9,-9,2019,2,1,10,0,20,15,15,1,1,3,0,4.503092389464364,4.503092389464364,0,0,0,0,0,0,0,1,1,0,7.359794493917026,0,0,0,51,48,5,1,0,0,8,2,0,2109.333333333333,0,0,0 +11747,14400,26213,-9,26211,26212,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.2683646762626,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,2,0,2109.333333333333,0,0,0 +11748,14401,26214,26215,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,8.29610459160172,8.349699042637537,0,1,0,-9,9,0,5,-119.7607869192264,0,0,0,41,1,2,1,-9,-9,2019,1,1,5,0,32,32,15,1,0,1,0,14.10386919928559,14.10386919928559,0,0,0,0,0,0,0,0,0,0,.203286075769163,0,0,0,57.16,56.15,7,1,0,0,9,5,1,1243,0,0,0 +11748,14401,26215,26214,-9,-9,1,1,1,41,1,0,0,0,1,-9,1,1,0,2,8.595250498569685,8.531743402747029,0,1,0,-9,9,0,-5,-195.6643236388347,0,0,0,46,2,4,1,2,1,2019,1,2,6,0,35,25,15,1,0,1,0,16.50030661919439,16.50030661919439,0,0,0,0,0,0,0,0,0,0,1.075430131580248,0,0,0,55.14,50.76,6,1,0,0,9,5,1,1243,0,0,0 +11749,14402,26216,-9,-9,-9,1,1,1,51,3,0,1,0,1,-9,2,1,0,5,9.79442960970712,9.567864416177816,0,4,0,0,0,-9,0,-1051.740365268341,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,70,100,15,1,0,-9,0,27.56747547889267,27.56747547889267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,9,5,1,6278,0,0,0 +11750,14403,26217,26218,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,5,8.582607952474255,8.699353471154351,0,1,0,-9,7,0,-1,-8.63293031115702,0,0,1,38,2,5,1,-9,-9,2019,1,1,13,6,41,45,15,1,6,1,0,16.05221734887121,16.05221734887121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.95,63.66,3,1,0,0,1,5,1,553,0,0,0 +11750,14403,26218,26217,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,5,8.854982578793097,8.974984500309823,0,1,0,-9,7,0,1,-219.1498196607584,0,0,0,37,2,5,1,2,2,2019,1,2,10,0,47,44,15,1,0,1,0,18.49156883266875,18.49156883266875,0,0,0,0,0,0,0,0,0,0,4.446947627965907,0,0,0,54.1,59.11,6,1,0,0,1,5,1,553,0,0,0 +11751,14404,26219,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1065.372735187068,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,1,1,0,2,1,0,307.5,0,0,0 +11751,14404,26220,-9,26219,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-995.0037123262481,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,1,0,307.5,0,0,0 +11752,14405,26221,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,2,0,8.279389117680484,7.844027963337262,3,0,0,0,-9,0,-1020.458129855739,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.992672125657671,7.676651792626379,0,0,52.88,22.01,3,1,0,0,11,4,1,210,0,0,0 +11753,14406,26222,-9,26223,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-884.9240115660418,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,1,0,1020.5,0,0,0 +11753,14406,26223,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1055.055937346553,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.11,40.82,5,1,0,0,12,1,0,1020.5,0,0,0 +11754,14407,26224,26225,-9,-9,2,1,1,42,1,0,0,0,1,-9,1,1,0,5,0,0,0,1,0,-9,1,-9,-19,-89.71532191862921,-9,0,0,61,1,4,1,2,1,2019,1,1,8,0,25,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,1,11,3,1,949,0,0,0 +11754,14407,26225,26224,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,4,8.28508473655352,8.513957872484362,0,1,0,-9,1,-9,19,-64.77297897143389,-9,0,0,42,1,5,1,2,1,2019,1,2,11,0,50,0,15,1,0,1,0,7.678061377583583,7.678061377583583,0,0,0,0,0,0,0,0,0,0,0,0,12.6314880059553,1,51.24,58.84,4,1,0,0,11,3,1,949,0,0,0 +11755,14408,26226,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,1,1,0,5,8.918945888803826,9.007903567864419,0,3,0,0,0,-9,0,-1151.227544707368,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,13,1,45,50,15,1,1,-9,0,22.69834358981776,22.69834358981776,0,0,0,0,0,0,0,0,0,0,1.686780188505291,0,0,0,37.8,57.34,2,1,0,0,12,5,0,703,0,0,0 +11755,14409,26227,-9,-9,-9,2,1,0,39,2,0,0,0,1,-9,2,1,0,4,8.641522031677731,8.784195112946962,0,3,0,0,0,-9,0,-918.3391683428524,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,43,0,15,1,0,-9,0,16.35202028546287,16.35202028546287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,6,1,0,0,12,5,0,722,0,0,0 +11756,14410,26228,26229,-9,-9,2,1,0,64,1,0,0,0,2,-9,1,1,0,3,8.813520605924369,8.476475464007089,5.697776366070415,1,0,-9,8,0,0,-53.9391460090005,0,0,0,73,2,2,3,2,3,2019,2,1,14,2,30,37,15,1,2,4,0,21.85239479200817,21.85239479200817,0,0,0,0,0,0,0,1,1,0,1.716785406033623,6.045523825146726,0,0,43.59,59.64,3,1,0,0,9,4,1,809,0,0,0 +11756,14410,26229,26228,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,6.040553044800056,5.445915394403985,1,0,-9,8,0,9,85.06497328234822,0,0,0,64,2,3,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.017638245300245,5.952133312845323,0,0,55.2,49.4,6,1,0,0,9,4,1,809,0,0,0 +11757,14411,26230,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1032.738741169412,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.53,29.99,2,1,0,0,8,2,0,818,0,0,0 +11758,14412,26231,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,3,7.636573042571437,7.567696758705359,0,3,0,0,0,-9,0,-1144.885593814232,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,4,37,37,15,1,4,-9,0,7.900383233041869,7.900383233041869,0,0,0,0,0,0,0,0,0,0,3.736638371913239,0,0,0,43.95,51.24,4,1,0,0,4,3,1,1771,0,0,0 +11759,14413,26232,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,5.867430866833054,5.785164989991119,3,0,0,0,-9,0,-1007.024755332028,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.817062185629075,0,0,53,46,5,1,0,0,7,2,0,677,0,0,0 +11760,14414,26233,26234,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,7.524388939224373,7.426560792281481,0,1,0,-9,10,0,-5,-32.36906761388996,0,0,0,60,3,2,1,-9,-9,2019,1,1,11,0,25,30,15,1,0,1,0,6.112070166110476,6.112070166110476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.09,42.16,7,1,0,0,11,4,0,574,0,0,0 +11760,14414,26234,26233,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,2,8.178915307850845,8.30158936760203,0,1,0,-9,10,0,5,-106.7854648876094,0,0,0,55,2,4,1,3,3,2019,1,2,14,3,50,35,15,1,3,1,0,8.59038812832658,8.59038812832658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.44,33.06,3,1,0,0,11,4,0,574,0,0,0 +11761,14415,26235,26236,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,6.393360080305162,6.171428158038157,1,0,-9,38,0,-7,-64.96584126075092,0,0,0,76,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.076848175717707,6.199163023896684,0,0,63.25,37.54,7,1,0,0,5,2,1,856.5,0,0,0 +11761,14415,26236,26235,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,3.378637197617836,3.475587236562806,1,0,-9,38,0,7,19.24968931222941,0,0,0,69,3,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.72331889771653,3.13958080553309,0,0,45.58,47.97,6,1,0,0,5,2,1,856.5,0,0,0 +11762,14416,26237,-9,26239,26238,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.567366126533,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,4,1,892.3333333333334,0,0,0 +11762,14416,26238,26239,-9,-9,1,1,1,63,1,0,1,0,1,-9,4,3,0,4,0,8.656539976674221,8.650450627584487,2,0,-9,7,0,20,169.1015620784307,0,0,0,43,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,9.059048795763379,8.644280833276293,6.551771904224323,3,57.16,56.15,1,1,0,0,8,4,1,892.3333333333334,0,0,0 +11762,14416,26239,26238,-9,-9,2,1,0,43,1,0,1,0,1,-9,97,3,0,4,0,0,0,2,0,-9,7,0,-20,7.945675888067383,0,0,1,63,1,4,3,-9,-9,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.581978497996802,0,0,0,48.87,58.55,7,1,0,0,8,4,1,892.3333333333334,0,0,0 +11763,14417,26240,26241,-9,-9,2,1,0,62,1,0,0,0,1,-9,1,1,0,3,6.86618676210892,8.992083966901408,9.251694757136875,1,0,-9,18,0,-7,2.255322805601973,0,0,0,69,1,4,3,-9,-9,2019,2,1,8,0,24,20,15,1,0,4,0,3.665154094018455,3.665154094018455,0,0,0,0,0,0,0,1,1,0,6.328451051267696,9.229404363133103,0,3,59.9,48.18,6,1,0,0,4,5,1,638,0,0,0 +11763,14417,26241,26240,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,6.218194818282404,6.859444937151822,1,0,-9,18,0,7,71.28969534987205,0,0,0,62,1,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.770267250481025,6.371457090079405,1.64682373263323,3,51.83,57.2,6,1,0,0,4,5,1,638,0,0,0 +11764,14418,26242,26243,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,3,7.605212925971184,7.220161871573592,0,2,0,-9,16,0,-7,119.7679685595385,0,0,1,45,1,3,1,1,1,2019,1,2,9,0,16,20,15,1,0,1,0,13.64360791273246,13.64360791273246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,3,0,0,8,5,1,1554.5,0,0,0 +11764,14418,26243,26242,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,3,8.72143010225922,8.888143446428369,0,2,0,-9,16,0,7,96.2507752610549,0,0,0,38,2,3,1,1,1,2019,1,1,10,0,35,50,15,1,0,1,0,26.0221875328726,26.0221875328726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,3,0,0,8,5,1,1554.5,0,0,0 +11765,14419,26244,-9,-9,26245,1,1,1,53,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1096.77200546541,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,14,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.3,45.86,3,1,1,0,9,1,0,349,0,0,0 +11765,14420,26245,-9,-9,-9,2,1,1,76,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,-9,0,-9,0,-955.994939231046,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.47,59.4,7,1,0,0,9,1,0,4618,0,0,0 +11766,14421,26246,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,2,1,0,3,8.421143614762686,7.973793064150595,0,3,0,-9,0,-9,0,-939.262360962155,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,6,48,0,15,1,6,-9,0,6.837345371577245,6.837345371577245,0,0,0,0,0,0,0,1,1,0,0,0,0,3,29.72,56.8,5,4,0,0,10,4,0,882,0,0,0 +11767,14422,26247,26250,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,4,9.119531924338505,8.737070459798108,0,2,0,-9,6,0,8,-110.2268684831964,0,0,0,43,1,2,1,2,2,2019,1,2,15,3,37,37,15,1,3,1,0,32.85337211473398,32.85337211473398,0,0,0,0,0,0,0,1,1,0,4.048082020200833,0,0,0,44.02,60.7,6,1,0,0,2,5,1,530.25,0,0,0 +11767,14422,26248,-9,26250,26247,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.756964686866,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,5,1,530.25,0,0,0 +11767,14422,26249,-9,26250,26247,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.217696402869,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,530.25,0,0,0 +11767,14422,26250,26247,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,2,7.894385337342806,7.695143346549397,0,2,0,-9,6,0,-8,81.93182638231556,0,0,1,51,2,4,1,2,2,2019,1,1,11,0,22,25,15,1,0,1,0,15.90840011584661,15.90840011584661,0,0,0,0,0,0,0,1,1,0,3.548048811091023,0,0,0,55.2,49.4,6,1,0,0,2,5,1,530.25,0,0,0 +11768,14423,26251,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,1,1,0,4,8.111535749581741,8.169072489293644,0,3,0,0,0,-9,0,-973.8722213511281,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,15,0,15,1,5,-9,0,28.34606209893629,28.34606209893629,0,0,0,0,0,0,0,1,1,0,2.634562218464297,0,0,0,36.2,64.19,6,1,0,0,7,4,1,292,0,0,0 +11769,14424,26252,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,1,1,0,4,8.015272693129969,8.159887166046907,0,3,0,0,0,-9,0,-848.5569390711771,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,30,0,15,1,0,-9,0,11.16072959484265,11.16072959484265,0,0,0,0,0,0,0,0,0,0,2.067097680293385,0,0,0,49.35,59.64,6,1,0,0,9,4,1,605,0,0,0 +11770,14425,26253,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,3,0,4.863859839251058,5.17569928795156,3,0,0,0,-9,0,-954.3168760936667,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6266191807972277,5.167645228320842,0,0,52,47,7,1,0,0,2,2,0,334,0,0,0 +11771,14426,26254,-9,-9,-9,1,1,1,50,2,0,0,0,3,-9,1,1,0,5,8.563325476683287,8.815702014318918,0,3,0,-9,0,-9,0,-965.3368767609167,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,70,0,15,1,0,-9,0,8.819923417382396,8.819923417382396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,3,0,0,5,4,1,312,0,0,0 +11772,14427,26255,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,1,0,6.945943641699019,6.230845132308108,3,0,0,0,-9,0,-1039.015140920106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,8.125643903830337,0,0,0,1,1,0,2.320402694996512,6.690987263344033,0,0,50.06,28.67,5,1,0,0,1,2,1,2590,0,0,0 +11773,14428,26256,26257,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,1,0,5.768093143284529,5.941085817143554,1,0,-9,26,0,3,-24.11816467773799,0,0,0,67,2,1,3,3,2,2019,4,2,23,10,0,0,15,4,10,4,0,0,0,1,8.150313521686211,0,0,0,0,24.91504385955576,1,1,0,6.972181847846977,5.870274405036795,13.14546541111626,3,36.44,26.71,5,1,0,0,7,3,1,393,0,0,0 +11773,14428,26257,26256,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,1,0,7.633507203682784,7.732229181486524,1,0,-9,26,0,-3,-21.66878349907224,0,0,0,70,2,1,3,-9,3,2019,4,1,35,12,0,0,15,4,12,4,0,0,0,1,8.92169035980649,0,0,0,0,146.3826583853707,1,1,0,4.274505483292804,7.439328029217922,0,0,19.01,22.64,1,1,0,0,7,3,1,393,0,0,0 +11774,14429,26258,26259,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,4,8.168959254180006,7.650386889892768,0,1,0,-9,38,0,-2,23.44459606451469,0,0,0,64,1,5,3,2,2,2019,2,2,9,0,20,25,15,1,0,4,0,19.27747260779835,19.27747260779835,0,0,0,0,0,0,0,1,1,0,6.991084484401489,0,0,0,54.2,57.49,6,1,0,0,8,5,1,716.5,0,0,0 +11774,14429,26259,26258,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,5,0,8.516993702378503,8.630736288715678,1,0,-9,38,0,2,-43.75594506140024,0,0,0,62,1,4,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.840772024914608,8.262684845776967,0,0,54.69,57.47,7,1,0,0,8,5,1,716.5,0,0,0 +11775,14430,26260,26261,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,7.239913190830618,7.382233966037684,1,0,-9,45,0,-1,-67.36048479303851,0,0,0,65,2,3,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.780914046861358,7.393040106227186,0,0,39.68,50.64,6,1,0,0,11,4,1,384.5,0,0,0 +11775,14430,26261,26260,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,8.341769378852849,8.260197224585678,1,0,-9,45,0,1,-4.152188406379769,0,0,0,64,2,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.247110483372673,8.178891695197029,0,0,56.83,38.69,5,1,0,0,11,4,1,384.5,0,0,0 +11776,14431,26262,26264,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.773537883582422,7.250458239606454,0,2,0,-9,28,0,-2,44.95955039822711,0,0,0,48,2,4,1,3,3,2019,1,2,10,0,30,30,15,1,0,1,0,8.703530173583999,8.703530173583999,0,0,0,0,0,0,0,1,1,0,0,0,4.457633826234646,3,60.87,44.96,6,3,0,0,4,4,0,397.3333333333333,0,0,0 +11776,14431,26263,-9,26262,26264,6,1,1,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-945.9277687906706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,4,0,397.3333333333333,0,0,0 +11776,14431,26264,26262,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.411386744708516,8.476847607392896,0,2,0,-9,8,0,2,-73.32080466402132,0,0,0,46,2,3,1,3,2,2019,1,1,9,0,30,32,15,1,1,1,0,16.20345523613574,16.20345523613574,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,4,4,0,397.3333333333333,0,0,0 +11777,14432,26265,-9,-9,26267,3,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-994.916572960876,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,2,1,1574.8,0,0,0 +11777,14432,26266,-9,-9,26267,5,1,1,4,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1057.012171149409,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,1,1574.8,0,0,0 +11777,14432,26267,26268,-9,-9,2,1,1,59,1,0,0,0,2,-9,6,3,0,3,0,5.565466826352981,5.55298307632905,1,0,-9,5,0,-1,-13.38894876110504,0,0,0,60,2,3,3,3,3,2019,4,1,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.897230548305522,5.842317798898115,120.3916015253196,3,41.49,38.99,5,1,0,0,10,2,1,1574.8,0,0,0 +11777,14432,26268,26267,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,3,0,6.199673460416601,6.272682657488716,1,0,-9,5,0,1,-81.94581177815051,0,0,0,59,2,3,3,3,3,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.668221985561848,1.166165158714233,3,57.51,47.91,6,1,0,0,10,2,1,1574.8,0,0,0 +11777,14432,26269,-9,-9,26267,4,1,0,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1043.932170743765,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,1574.8,0,0,0 +11778,14433,26270,26271,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,4,8.447384624282954,8.789798238285577,0,1,0,-9,7,0,3,-37.02094789895992,0,0,0,32,1,5,1,2,2,2019,1,2,7,0,79,40,15,1,0,1,0,8.008573473910307,8.008573473910307,0,0,0,0,0,0,0,0,0,0,1.356211091004986,0,0,0,57.16,56.15,7,1,0,0,2,5,1,1090.5,0,0,0 +11778,14433,26271,26270,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,5,8.78597947001443,9.020466937145351,0,1,0,-9,7,0,-3,-40.96041841960878,0,0,1,35,1,4,1,-9,-9,2019,1,1,9,0,50,45,15,1,0,1,0,15.64194976305508,15.64194976305508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.34,56.67,7,1,0,0,2,5,1,1090.5,0,0,0 +11779,14434,26272,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1097.979454613751,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,17,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.85,51.14,6,4,1,1,8,1,0,654,0,0,0 +11779,14435,26273,-9,26272,-9,3,1,1,19,2,0,0,0,2,-9,3,3,0,5,0,5.217125886743076,5.24100962503422,3,0,-9,0,-9,0,-1104.067767480544,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,5.212816530576283,0,0,0,57.06,57.76,6,4,1,0,8,2,0,918,0,0,0 +11780,14436,26274,26275,-9,-9,1,1,0,53,1,0,1,0,2,-9,2,1,0,3,7.940632174391019,7.49650129075925,0,2,0,-9,21,0,-2,-58.90067352233722,0,0,0,55,2,2,3,2,2,2019,2,2,11,1,38,35,15,1,1,3,0,7.721408684130048,7.721408684130048,0,0,0,0,0,0,0,1,1,0,6.499597268672317,0,0,0,54.1,49.39,6,1,0,0,5,3,1,1014.666666666667,0,0,0 +11780,14436,26275,26274,-9,-9,2,1,1,55,1,0,1,0,2,-9,97,3,0,2,0,6.557904672006188,6.70056924752889,2,0,-9,6,0,2,-113.4990178148813,0,0,0,53,2,3,1,-9,3,2019,3,1,13,0,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.427688058574608,6.815142925078049,0,0,57.57,49.69,5,1,0,0,5,3,1,1014.666666666667,0,0,0 +11780,14436,26276,-9,26274,26275,3,1,0,17,2,0,1,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1036.993195181966,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,5,1,0,0,5,3,1,1014.666666666667,0,0,0 +11781,14437,26277,26278,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,8.229046301278926,8.102941769169615,1,0,-9,52,0,1,-3.645557520806567,0,0,0,69,2,4,3,2,2,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.334522717131929,8.270927269126872,0,0,51.25,50.81,6,1,0,0,9,5,1,623.5,0,0,0 +11781,14437,26278,26277,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.946325838578808,7.516432585939591,1,0,-9,52,0,-1,64.63623133450713,0,0,0,70,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.644582275505015,8.185688386897846,0,0,54.2,57.49,6,1,0,0,9,5,1,623.5,0,0,0 +11782,14438,26279,-9,26282,26281,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.4397236825803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,303.75,0,0,0 +11782,14438,26280,-9,26282,26281,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.4814389116802,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,303.75,0,0,0 +11782,14438,26281,26282,-9,-9,2,1,1,36,1,0,2,0,2,-9,1,1,0,4,9.093046119362459,9.053397881992023,0,2,0,-9,7,0,4,-1.744566368205334,-9,0,0,32,2,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,28.20719427611125,28.20719427611125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,1,0,0,2,5,1,303.75,0,0,0 +11782,14438,26282,26281,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,4,7.59279013990528,7.379392148660293,0,2,0,-9,16,0,-4,192.7065526840295,0,0,1,36,2,4,1,2,2,2019,1,2,10,0,25,30,15,1,0,1,0,6.525437720193719,6.525437720193719,0,0,0,0,0,0,0,1,1,0,6.860020747290208,0,0,0,54.2,57.49,6,1,0,0,2,5,1,303.75,0,0,0 +11783,14439,26283,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,3,7.674505129717487,7.93366158302702,0,3,0,0,0,-9,0,-950.5878747124352,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,7,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.40879676802788,3,46.48,55.6,4,1,0,0,9,3,1,913,0,0,0 +11783,14440,26284,-9,-9,-9,2,1,0,83,3,0,0,0,2,-9,4,3,0,1,0,5.170753175216056,5.202200818212409,3,0,0,0,-9,0,-1128.132317707767,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,2.277522299813424,0,0,1,1,0,0,5.080939689045723,0,0,27.8,29.48,2,1,0,0,9,2,1,374,0,0,0 +11784,14441,26285,26286,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,32,0,5,-9.696912245825171,0,0,0,66,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.56,49.35,7,1,0,0,9,3,1,614.5,0,0,0 +11784,14441,26286,26285,-9,-9,2,1,1,66,1,0,0,0,3,-9,2,1,0,4,7.276243977914866,7.786971034872138,7.007441129790002,1,0,-9,32,0,-5,30.40168160832995,0,0,0,71,3,4,3,3,2,2019,2,1,7,0,24,24,15,1,0,4,0,9.155158666453492,9.155158666453492,0,0,0,0,0,0,0,1,1,0,4.049157721891429,7.194158342994198,0,0,54.2,57.49,6,1,0,0,9,3,1,614.5,0,0,0 +11785,14442,26287,26288,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,6.482347653343443,6.658169946197063,1,0,-9,26,0,9,-47.11875488520774,0,0,0,55,2,4,1,2,2,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.362610335985031,6.489929124674344,0,0,56.16,40.3,6,1,0,0,11,4,1,530.5,0,0,0 +11785,14442,26288,26287,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.418797811995868,8.932483024746126,0,1,0,-9,25,0,0,125.4104981878343,0,0,0,64,2,4,3,2,2,2019,2,1,8,0,70,80,15,1,0,4,0,11.28234208925194,11.28234208925194,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,6,1,0,0,11,4,1,530.5,0,0,0 +11786,14443,26289,26290,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,7.962623975377038,7.932849378976881,1,0,-9,46,0,0,-75.99434915797012,0,0,0,66,3,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.839742302926243,0,0,55.96,52.6,6,1,0,0,12,3,1,1799,0,0,0 +11786,14443,26290,26289,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,0,115.7736579560988,0,0,0,66,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.561179176532293,0,0,0,57.33,53.46,4,1,0,0,12,3,1,1799,0,0,0 +11787,14444,26291,-9,-9,-9,1,1,0,26,3,0,0,0,2,-9,2,1,0,3,8.129708170917493,8.207848457062369,0,3,0,-9,0,-9,0,-963.9359834087533,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,38,0,15,1,1,-9,0,10.77256761567446,10.77256761567446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.68,55.47,6,1,0,0,10,4,1,79,0,0,0 +11788,14445,26292,26293,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.510362114417774,8.62092383653485,0,1,0,-9,6,0,1,49.34514636613841,0,1,1,28,1,2,1,2,2,2019,1,2,12,0,38,38,15,1,0,1,0,9.43451913483802,9.43451913483802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,6,1,0,0,7,5,1,590.5,0,0,0 +11788,14445,26293,26292,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,2,8.811304716240926,8.664998157751885,0,1,0,-9,6,0,-1,11.39060999660909,0,1,0,29,1,4,1,-9,-9,2019,1,1,8,1,38,40,15,1,1,1,0,16.0883798076274,16.0883798076274,0,0,0,0,0,0,0,0,0,0,7.038485329174264,0,0,0,55.2,49.4,5,1,0,0,7,5,1,590.5,0,0,0 +11789,14446,26294,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,2,0,7.639368088878521,7.469151549582739,3,0,0,0,-9,0,-938.3818165464867,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,45.79085263795207,1,1,0,6.148173058611449,7.554849898210364,0,0,38.4,30.16,2,1,0,0,1,3,1,320,0,0,0 +11790,14447,26295,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,4,0,7.251920207424314,7.371206342967702,3,0,0,0,-9,0,-952.8165744691325,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.074919198273479,0,0,60.12,54.8,6,1,0,0,12,2,1,1009,0,0,0 +11791,14448,26296,26297,-9,-9,2,1,1,47,1,0,0,0,1,-9,2,1,0,3,8.778841034508082,8.846495275915153,0,1,0,-9,1,-9,1,8.829284550971471,-9,0,0,46,1,4,1,-9,-9,2019,1,1,21,9,44,0,15,1,9,1,0,18.28282679945187,18.28282679945187,0,0,0,0,0,0,0,0,0,0,5.301063831525392,0,0,0,41.17,60.71,5,1,0,0,8,5,1,1313,0,0,0 +11791,14448,26297,26296,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,4,9.563787826202496,9.615196260344467,0,1,0,1,1,-9,-1,-107.9821082047504,0,0,0,47,1,3,1,1,1,2019,1,2,6,0,45,47,15,1,0,1,0,28.07342316463945,28.07342316463945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,8,5,1,1313,0,0,0 +11792,14449,26298,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1017.600096586722,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.5,50.28,5,1,0,0,13,1,0,271,0,0,0 +11793,14450,26299,-9,-9,-9,1,1,1,49,2,0,0,0,1,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1061.539399903024,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.461748200999801,3,62.39,56.71,6,1,0,0,4,1,1,110,0,0,0 +11794,14451,26300,26301,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,1.715874608293624,1.681626649099198,1,0,-9,8,0,-8,-85.43745124704155,0,0,0,78,3,2,3,3,3,2019,4,1,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.006033566069247,1.855666436211377,3.085184750503299,3,52,47,2,1,0,0,2,1,1,633.5,0,0,0 +11794,14451,26301,26300,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,8,-139.3188549446555,0,0,0,70,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,5.027846758770199,0,0,0,0,1,1,0,0,0,0,0,54.85,34.63,5,1,0,0,2,1,1,633.5,0,0,0 +11795,14452,26302,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,2,0,7.17398084284387,7.153317321109772,3,0,-9,0,1,0,-862.9122611915204,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.867850095423087,7.181603245891553,0,0,61.86,20.46,6,1,0,0,9,2,1,732,0,0,0 +11795,14453,26303,-9,26302,-9,2,1,0,40,2,0,0,0,1,-9,2,1,0,3,7.790091011395283,7.971896887008708,0,3,0,0,0,-9,0,-1094.265139554466,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,28,11,30,0,15,1,11,-9,1,11.2288757312594,11.2288757312594,0,0,0,0,0,0,0,1,1,0,0,0,1.600167609648159,3,30.81,37.16,2,1,0,0,9,3,1,362,0,0,0 +11796,14454,26304,26305,-9,-9,1,1,1,52,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,23,0,1,-110.9704976123759,0,0,0,51,1,5,1,3,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.855174811871834,0,0,0,60.02,56.42,6,1,0,0,9,5,1,1559.5,0,0,0 +11796,14454,26305,26304,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,5,9.536571718682877,9.71245216733675,0,2,0,-9,23,0,-1,-287.4897329793934,0,0,0,52,1,5,3,2,3,2019,2,1,6,0,50,60,15,1,0,3,0,34.78518989230278,34.78518989230278,0,0,0,0,0,0,0,0,0,0,8.139814687427608,0,0,0,57.06,57.76,7,1,0,0,9,5,1,1559.5,0,0,0 +11797,14455,26306,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,5.311957677576433,5.281138584469272,3,0,0,0,-9,0,-965.7363373052821,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.710681952219934,0,0,44.2,46.35,4,1,0,0,4,2,0,255,0,0,0 +11798,14456,26307,26308,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,3,7.696989499946802,7.668859394517899,0,2,0,-9,9,0,-1,10.54410693752093,0,0,1,42,1,3,1,2,2,2019,1,2,10,1,30,32,15,1,1,1,0,11.3781790668006,11.3781790668006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,6,1,0,0,7,5,1,698,0,0,0 +11798,14456,26308,26307,-9,-9,2,1,1,42,1,0,1,0,1,-9,2,1,0,3,9.200912843605261,9.157114113713138,0,2,0,-9,3,0,1,64.72395280027332,0,0,0,41,1,3,1,-9,-9,2019,1,1,11,3,60,60,15,1,3,1,0,22.38307446405561,22.38307446405561,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.21,50.73,4,1,0,0,7,5,1,698,0,0,0 +11798,14456,26309,-9,26307,26308,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.736824314698,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,698,0,0,0 +11799,14457,26310,26311,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,3,6.863431783988671,6.872016910452965,0,1,0,-9,39,-9,-3,-48.79348076136542,-9,0,0,69,3,1,3,-9,-9,2019,2,2,7,0,15,0,15,1,0,4,0,8.56887582001097,8.56887582001097,0,0,0,0,0,0,0,1,1,0,0,0,28.95230356160793,1,56.55,45.59,5,1,0,0,5,2,1,393.5,0,0,0 +11799,14457,26311,26310,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,39,-9,3,67.03773139351902,-9,0,0,66,3,3,1,-9,-9,2019,3,1,27,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.11,16.79,2,1,0,0,5,2,1,393.5,0,0,0 +11800,14458,26312,26313,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,10,0,-7,0,0,0,0,62,2,1,3,2,3,2019,2,1,12,0,0,13,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.77875915363344,0,73.94250833124529,1,48.8,49.1,5,1,0,0,6,2,1,613.5,0,0,0 +11800,14458,26313,26312,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,10,0,7,0,0,0,0,55,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.37,21.72,4,1,0,0,6,2,1,613.5,0,0,0 +11800,14459,26314,-9,26313,-9,3,1,0,37,2,0,0,0,1,-9,2,1,0,4,7.858754328897376,7.888655232723227,0,3,0,0,0,-9,0,-1056.742146769486,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,40,0,15,1,7,-9,1,5.619847858181648,5.619847858181648,0,0,0,0,0,0,0,1,1,0,0,0,3.410756078450295,3,35.57,63.56,3,1,0,0,6,3,1,269,0,0,0 +11801,14460,26315,26316,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,7.520201550226129,7.750358014812775,1,0,-9,8,0,-1,27.25930300160558,0,0,0,69,3,5,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.975074741539298,7.997229985634315,0,0,40.16,59.89,6,1,0,0,7,3,1,463,0,0,0 +11801,14460,26316,26315,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,8,0,1,-71.4727339280884,0,0,0,68,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.981710763828469,0,0,0,62.39,56.71,7,1,0,0,7,3,1,463,0,0,0 +11802,14461,26317,26318,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,3,9.017582288331923,9.283399777181756,0,1,0,-9,3,0,2,82.72762832959751,0,0,0,47,2,4,3,3,3,2019,2,2,17,5,34,35,15,1,5,3,0,31.56687218631467,31.56687218631467,0,0,0,0,0,0,0,0,0,0,0,0,0,3,38.15,55.39,5,1,0,0,13,5,1,532.5,0,0,0 +11802,14461,26318,26317,-9,-9,2,1,0,47,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,3,0,-2,-103.5294096719149,0,0,0,49,2,3,1,3,3,2019,3,1,20,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.3057692367960971,3,51.79,49.21,6,1,0,0,13,5,1,532.5,0,0,0 +11803,14462,26319,26320,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,32,0,5,-70.87571664319745,0,0,0,55,2,4,3,1,3,2019,4,2,8,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.53,42.78,6,1,0,0,5,2,1,490.5,0,0,0 +11803,14462,26320,26319,-9,-9,2,1,0,55,1,0,0,0,2,-9,4,3,0,4,0,7.340158100272633,7.466669624381869,1,0,-9,10,0,-5,40.82192775026147,0,0,0,60,2,3,3,2,2,2019,4,1,3,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.389461214109535,0,0,57.16,56.15,7,1,0,0,5,2,1,490.5,0,0,0 +11804,14463,26321,-9,-9,-9,1,1,1,55,3,0,0,0,3,-9,1,1,0,5,8.553604405796159,8.468617289410691,0,3,0,0,0,-9,0,-943.5040721968865,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,50,51,15,1,0,-9,0,11.09725272011431,11.09725272011431,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,332,0,0,0 +11805,14464,26322,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,1,0,7.311209478281988,7.385654850732311,3,0,0,0,-9,0,-849.491420684878,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.207388195602869,7.120817473631945,0,0,45,16.05,3,1,0,0,2,3,1,1318,0,0,0 +11806,14465,26323,26324,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,60,0,4,2.837729448287364,0,0,0,82,1,3,3,3,2,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55.03,11.91,3,1,0,0,13,3,1,1060,0,0,0 +11806,14465,26324,26323,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,8.14534596076518,7.683348741623617,1,0,-9,60,0,-4,115.8364192119965,0,0,0,86,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.689519285042461,16.06837190478251,1,48.35,45.07,6,1,0,0,13,3,1,1060,0,0,0 +11806,14466,26325,-9,26323,26324,3,1,1,56,3,0,0,0,1,-9,3,3,0,2,0,7.295614002899909,7.55735659962881,3,0,0,0,-9,0,-1038.356803986068,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.998137510688649,7.387507881007279,10.34282317297456,3,22.1,55.25,3,1,1,0,13,2,1,277,0,0,0 +11807,14467,26326,26327,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,3,9.00622647085387,8.76713294860375,0,1,0,-9,33,0,0,25.16315905541175,0,0,0,53,1,3,1,3,3,2019,1,2,10,1,50,50,15,1,1,1,0,17.6922437206645,17.6922437206645,0,0,0,0,0,0,0,0,0,0,6.022591386514057,0,0,0,50.28,51.35,6,1,0,0,8,5,0,216.5,0,0,0 +11807,14467,26327,26326,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,7.780645404991112,8.103607987215186,0,1,0,-9,33,0,0,52.49896183895486,0,0,0,53,1,3,1,2,2,2019,1,1,10,1,35,25,15,1,1,1,0,8.799642493348529,8.799642493348529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.07,56.45,5,1,0,0,8,5,0,216.5,0,0,0 +11808,14468,26328,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,4,0,8.185026743719147,8.191706852482293,3,0,0,0,-9,0,-1080.260407886935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.137261622883006,7.859306483797567,0,0,56.77,52.22,6,1,0,0,5,4,1,404,0,0,0 +11809,14469,26329,-9,26330,26331,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.0115828860879,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,2,0,946.3333333333334,0,0,0 +11809,14469,26330,26331,-9,-9,1,1,0,26,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,3,0,0,-22.48927377524886,0,1,1,26,1,4,1,3,3,2019,3,2,13,1,0,8,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,49.25,3,5,0,0,8,2,0,946.3333333333334,0,0,0 +11809,14469,26331,26330,-9,-9,2,1,1,26,1,1,1,0,1,-9,2,1,0,4,7.27478950651764,7.572223153150351,0,2,0,-9,3,0,0,-89.99917124281583,0,1,0,26,1,4,3,-9,-9,2019,2,1,10,0,20,25,15,1,1,3,0,8.744924595039357,8.744924595039357,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,8,2,0,946.3333333333334,0,0,0 +11810,14470,26332,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,4,8.398196336657714,8.429854315122515,0,3,0,0,0,-9,0,-1051.952374487539,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,13.11421163880453,13.11421163880453,0,0,0,0,0,0,0,0,0,0,0,0,12.62161980391292,3,57.16,56.15,6,1,0,0,11,4,0,962,0,0,0 +11811,14471,26333,-9,-9,-9,1,1,0,97,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-954.1571654443482,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,6.328078786473053,0,0,0,3.640930003226608,0,1,1,0,0,0,0,0,55,43,6,4,0,0,8,1,0,341,0,0,0 +11812,14472,26334,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.546628512773305,8.977535633839349,0,3,0,0,0,-9,0,-964.8022890226949,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,2,45,40,15,1,2,-9,0,12.07428137088662,12.07428137088662,0,0,0,0,0,0,0,0,0,0,4.349054552989401,0,0,0,40.79,59.57,5,1,0,0,8,5,0,781,0,0,0 +11813,14473,26335,26336,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,5.909391315597082,6.035493318398918,1,0,-9,44,0,1,32.43192227886541,0,0,0,65,2,1,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.893625166014786,66.85500018764162,1,55.93,49.95,5,1,0,0,2,2,1,387,0,0,0 +11813,14473,26336,26335,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,1,0,4.492057705207337,4.397371761163916,1,0,-9,44,0,-1,-35.11415221407352,0,0,0,66,3,3,3,2,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.652526218447509,4.356200139599188,0,0,56.28,14.91,3,1,0,0,2,2,1,387,0,0,0 +11814,14474,26337,26338,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,4,8.925391395975977,8.605044804971401,0,1,0,-9,29,0,1,-44.72873503792471,0,0,0,52,1,4,1,-9,-9,2019,1,2,10,3,60,50,15,1,3,1,0,13.03601659436777,13.03601659436777,0,0,0,0,0,0,0,1,0,1,.5777592160508104,0,.1374957512817376,3,47.15,55.39,6,4,0,0,8,5,0,1632.5,0,0,0 +11814,14474,26338,26337,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,8.536679421887408,8.772225035818561,0,1,0,-9,29,0,-1,-78.2783790640057,0,0,0,53,1,4,1,-9,-9,2019,1,1,6,0,0,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.283054082228158,0,0,0,63.6,47.67,6,4,0,0,8,5,0,1632.5,0,0,0 +11814,14475,26339,-9,26337,26338,3,1,0,26,2,0,0,0,2,-9,2,1,0,4,7.521641916274865,7.726045141633627,0,3,0,-9,0,-9,0,-948.9580004993311,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,35,0,15,1,2,-9,1,9.075202237267293,9.075202237267293,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,58,5,4,0,0,8,3,0,1718,0,0,0 +11814,14476,26340,-9,26337,26338,4,1,0,26,2,0,0,0,1,-9,2,1,0,4,7.956542296256231,7.937710926392217,0,3,0,0,0,-9,0,-953.2920531846365,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,40,0,15,1,2,-9,1,6.994103311995018,6.994103311995018,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,58,5,4,0,0,8,3,0,112,0,0,0 +11814,14477,26341,-9,26337,26338,5,1,1,19,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-912.5157769855927,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.14,60.45,5,4,1,0,8,1,0,165,0,0,0 +11815,14478,26342,26343,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,8.46252305656474,8.272837790816627,1,0,-9,45,0,4,109.292424690385,0,0,0,67,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.495671484876396,8.753607031528611,0,0,57.16,56.15,7,1,0,0,9,4,1,1374,0,0,0 +11815,14478,26343,26342,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,4.009638385321855,3.772785829012663,1,0,-9,45,0,-4,79.30929639806841,0,0,0,71,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.91554692067844,3.839438669933522,0,0,57.16,56.15,7,1,0,0,9,4,1,1374,0,0,0 +11816,14479,26344,26345,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,6,0,-6,-111.4617593613003,0,0,0,68,2,4,1,-9,-9,2019,3,1,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.74,26.78,3,1,0,1,8,3,0,285,0,0,0 +11816,14479,26345,26344,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,4,8.131906350891722,8.511762645346998,6.95958588390666,1,0,-9,6,0,6,-24.23224944909108,0,0,0,62,2,2,3,3,3,2019,2,2,9,0,43,28,15,1,0,3,0,8.291129743821843,8.291129743821843,1,0,0,0,0,0,0,1,1,0,7.230702306986077,7.189276019530546,0,0,49.46,56.91,4,1,0,0,8,3,0,285,0,0,0 +11817,14480,26346,-9,26348,26347,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.7960561158199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,0,1748.666666666667,0,0,0 +11817,14480,26347,26348,-9,-9,1,1,1,26,1,1,1,0,2,-9,1,1,0,4,5.946882183534535,6.321880754009394,0,2,0,-9,4,0,3,-98.54254035400277,0,1,0,23,2,4,1,2,3,2019,1,2,10,0,50,60,15,1,0,1,0,1.185997024930696,1.185997024930696,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,2,3,0,1748.666666666667,0,0,0 +11817,14480,26348,26347,-9,-9,2,1,0,23,1,1,1,0,2,-9,2,1,0,4,7.999018632349944,8.227465910767293,0,2,0,-9,4,0,-3,-173.4820294125358,-9,1,1,26,2,4,1,-9,-9,2019,1,1,12,0,37,0,15,1,2,1,0,11.00352398676948,11.00352398676948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,5,0,0,2,3,0,1748.666666666667,0,0,0 +11818,14481,26349,26350,-9,-9,2,1,0,57,1,0,1,0,2,-9,2,1,0,3,7.285496606075095,6.950188388353689,0,2,0,-9,19,0,4,27.40233275463661,0,0,0,53,1,4,1,2,3,2019,1,1,9,0,15,14,15,1,0,1,0,13.5211734100066,13.5211734100066,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,40.23,6,1,0,0,13,4,1,433,0,0,0 +11818,14481,26350,26349,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,4,8.936436576845894,8.751299325629143,0,2,0,-9,22,0,-4,48.37755619198131,0,0,0,57,2,3,1,2,2,2019,1,2,9,0,45,42,15,1,0,1,0,17.65393939036994,17.65393939036994,0,0,0,0,0,0,0,1,1,0,0,0,2.751340449937308,3,58.15,52.91,6,1,0,0,13,4,1,433,0,0,0 +11818,14481,26351,-9,26349,26350,3,1,1,17,2,0,1,1,2,-9,7,2,0,5,2.924785035767537,3.276021341357575,0,2,0,0,0,-9,0,-948.3693825350058,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,13,4,1,433,0,0,0 +11819,14482,26352,26353,-9,-9,2,1,1,56,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,26,0,1,116.1248401444279,0,0,0,55,2,4,1,2,2,2019,3,1,9,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,1,0,9,3,1,567.5,0,0,0 +11819,14482,26353,26352,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.39612028414062,8.208491077309301,0,1,0,-9,26,0,-1,96.0366664025869,0,0,0,56,2,4,3,3,3,2019,2,2,8,0,45,45,15,1,0,3,0,8.883356430612444,8.883356430612444,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,6,1,0,0,9,3,1,567.5,0,0,0 +11820,14483,26354,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-941.9208226057074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,46.99,4,1,0,0,13,1,1,1015,0,0,0 +11821,14484,26355,26356,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,53,0,-2,-118.3497664514499,0,0,0,71,2,4,3,3,3,2019,4,1,13,0,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.542790915990959,0,0,0,39.81,36.04,7,3,0,0,5,2,1,816.5,0,0,0 +11821,14484,26356,26355,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.003834797260015,7.038621858226753,1,0,-9,53,0,2,-54.98211953224427,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.203226740704829,128.9647089518951,1,63.24,42.39,7,3,0,0,5,2,1,816.5,0,0,0 +11822,14485,26357,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-963.5658889578656,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,72.98999999999999,28.53,6,1,0,0,5,1,0,355,0,0,0 +11823,14486,26358,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,6.517584862516623,6.855879595853356,3,0,0,0,-9,0,-911.6709669713845,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,4.811742053341565,0,0,0,3.58653199175742,47.33984310203043,1,1,0,0,6.776566184633628,0,0,52,45,6,1,0,0,10,2,0,267,0,0,0 +11824,14487,26359,26360,-9,-9,1,1,0,30,1,0,0,0,1,0,7,2,0,4,9.960992856401143,9.557754683812338,0,1,0,-9,2,0,3,-83.89745122240168,-9,0,1,27,2,4,1,2,2,2019,3,2,11,0,87,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,59.08,5,1,0,1,8,5,0,803.5,0,0,0 +11824,14487,26360,26359,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.339534394855377,8.666524422984772,0,1,0,-9,2,0,-3,-151.3005434539149,-9,1,0,30,1,4,2,-9,-9,2019,2,1,14,2,50,0,15,1,2,2,0,13.00345387074089,13.00345387074089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,5,1,0,0,8,5,0,803.5,0,0,0 +11825,14488,26361,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-991.9680376948188,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.41,25.55,2,1,0,1,4,1,0,1554,0,0,0 +11826,14489,26362,26363,-9,-9,1,1,0,52,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,15,0,-2,-46.40370224151613,0,0,0,54,2,1,3,3,3,2019,4,2,25,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.3006408388491,1,50,54,3,1,0,0,4,2,1,313,0,0,0 +11826,14489,26363,26362,-9,-9,2,1,1,54,1,0,0,0,2,-9,8,3,1,1,0,5.256052659313821,5.471623553015904,1,0,-9,15,0,2,-19.86185191314716,0,0,0,52,3,4,3,3,3,2019,4,1,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.488103261312391,5.65465533370462,0,0,16.04,23.99,1,1,0,1,4,2,1,313,0,0,0 +11827,14490,26364,26367,-9,-9,2,1,0,37,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,19,0,-4,86.95961184870616,0,0,1,41,2,3,1,3,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.2,48.66,7,3,0,0,8,2,0,799,0,0,0 +11827,14490,26365,-9,26364,26367,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-925.0207193280146,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,2,0,799,0,0,0 +11827,14490,26366,-9,26364,26367,3,1,0,16,2,1,3,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-882.614929522477,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.13,63.25,4,3,0,0,8,2,0,799,0,0,0 +11827,14490,26367,26364,-9,-9,1,1,1,41,1,1,3,0,2,-9,1,1,0,3,6.870472819367393,7.104650541216338,0,2,0,-9,19,0,4,21.13573167765494,0,0,0,37,3,3,3,3,3,2019,2,2,12,2,60,24,15,1,2,3,0,2.235386995985181,2.235386995985181,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.54,50.26,6,3,0,0,8,2,0,799,0,0,0 +11827,14490,26368,-9,26364,26367,4,1,1,13,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1125.647985964105,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,799,0,0,0 +11828,14491,26369,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,3,8.438257846922832,8.258307842312023,0,3,0,0,0,-9,0,-1029.773837311678,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,37,15,1,0,-9,1,13.35177194256744,13.35177194256744,0,0,0,0,0,0,0,0,0,0,3.94901056021725,0,0,0,49.29,54.59,5,1,0,0,6,4,1,390,0,0,0 +11829,14492,26370,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,4,0,7.565157217754034,7.384000718591833,3,0,0,0,-9,0,-871.9354289285037,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.81117562949163,7.430657066287296,0,0,49.11,42.15,5,1,0,0,7,3,1,1430,0,0,0 +11830,14493,26371,26372,-9,-9,3,1,0,56,1,0,0,0,1,-9,1,1,0,3,8.152959768069982,8.212656526149113,0,1,0,-9,3,0,-1,83.41468317125094,-9,0,0,57,2,2,1,-9,-9,2019,1,1,7,0,40,0,15,1,0,1,0,9.100382623399611,9.100382623399611,0,0,0,0,0,0,0,0,0,0,2.428371943082489,0,0,0,50.03,52.62,6,1,0,0,5,3,1,735.5,0,0,0 +11830,14493,26372,26371,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,2,6.069248134289277,6.505761781012656,6.006459237726292,1,0,-9,3,0,1,-43.39307145574766,0,0,0,56,1,3,1,1,1,2019,1,3,7,0,25,10,15,1,0,1,0,1.932345137283352,1.932345137283352,0,0,0,0,0,0,0,0,0,0,6.785667468586365,6.003209677978136,0,3,61.06,26.16,6,1,0,0,5,3,1,735.5,0,0,0 +11830,14494,26373,-9,26371,26372,2,1,0,22,2,0,0,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-966.1402818952437,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,6,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,5,1,1,0,5,1,1,1752,0,0,0 +11831,14495,26374,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,1,1,0,3,7.987808795245569,8.324157247049794,6.408912716517948,3,0,0,0,-9,0,-1044.22764002751,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,50,68,15,1,3,-9,0,6.648693859703378,6.648693859703378,0,0,0,0,0,0,0,0,0,0,0,6.366219106631992,0,0,34.9,57.07,6,1,0,0,11,4,0,2841,0,0,0 +11832,14496,26375,-9,26376,26378,5,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1136.133004747799,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,608.25,0,0,0 +11832,14496,26376,26378,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,4,7.717693404241103,7.553420545576378,0,2,0,-9,8,0,-4,126.4756572773746,0,0,1,39,2,3,1,2,3,2019,1,1,6,0,28,40,15,1,0,1,0,10.97021128077733,10.97021128077733,0,0,0,0,0,0,0,1,1,0,2.952672216428736,0,0,0,54.79,55.86,5,1,0,0,11,4,1,608.25,0,0,0 +11832,14496,26377,-9,26376,26378,4,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1050.034676534338,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,6,1,0,0,11,4,1,608.25,0,0,0 +11832,14496,26378,26376,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,3,8.71123225620491,8.683222589148542,0,2,0,-9,8,0,4,-94.42302819239582,0,0,0,35,2,4,1,3,2,2019,1,2,11,2,53,58,15,1,2,1,0,12.42464660833687,12.42464660833687,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,11,4,1,608.25,0,0,0 +11832,14497,26379,-9,26376,26378,3,1,1,18,2,0,2,0,2,-9,2,1,0,4,8.059919925685262,8.060209826482147,0,3,0,0,0,-9,0,-1063.83360487041,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,24,0,15,1,5,-9,1,17.82280902385428,17.82280902385428,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.6,61.6,6,1,0,0,11,4,1,928,0,0,0 +11833,14498,26380,-9,-9,-9,1,1,0,22,2,0,0,1,2,-9,7,2,0,5,6.703987390169148,6.943867378662756,0,3,0,-9,0,-9,0,-987.5746237589412,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,16,5,9,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.62,64.77,6,1,0,0,9,2,0,402,0,0,0 +11834,14499,26381,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,6.419107533840505,6.502713768580229,3,0,0,0,-9,0,-1010.251621219914,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.935541494912952,6.154050544553926,0,0,53.9,52.09,6,1,0,0,2,2,1,635,0,0,0 +11835,14500,26382,26383,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,4,5.901596799625224,6.483659050135203,5.731577142578627,1,0,-9,47,0,4,33.36767076265734,0,0,0,65,1,3,1,3,2,2019,1,2,8,0,15,23,15,1,0,1,0,3.588033765488193,3.588033765488193,0,0,0,0,0,0,0,1,1,0,.843567916624598,6.000427580983479,0,0,54.69,45.02,7,3,0,0,8,4,1,585,0,0,0 +11835,14500,26383,26382,-9,-9,2,1,1,65,1,0,0,0,1,-9,2,1,0,3,8.105019184600492,8.490379876190918,0,1,0,-9,8,0,-4,-91.15672832961624,-9,0,0,69,2,4,1,-9,-9,2019,1,1,13,1,30,0,15,1,1,1,0,14.70008153070085,14.70008153070085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.58,52.25,6,3,0,0,8,4,1,585,0,0,0 +11836,14501,26384,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,1,1,0,3,9.170095130754548,9.175278102040147,0,3,0,0,0,-9,0,-985.7421492455974,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,45,50,15,1,0,-9,0,35.68586942046635,35.68586942046635,0,0,0,0,0,0,0,0,0,0,5.549859754273891,0,0,0,49.86,52.97,5,1,0,0,8,5,1,302,0,0,0 +11837,14502,26385,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,8.426181434211893,8.711182189806252,0,3,0,0,0,-9,0,-959.8013740644319,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,41,40,15,1,1,-9,0,13.15316240791743,13.15316240791743,0,0,0,0,0,0,0,0,0,0,1.067887063695867,0,0,0,48.87,58.55,5,1,0,0,12,5,1,384,0,0,0 +11837,14503,26386,-9,26385,-9,2,1,1,24,2,0,0,0,2,-9,2,1,0,2,7.029978144474931,7.015132278401049,0,3,0,0,0,-9,0,-960.9034312365686,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,20,18,15,1,0,-9,1,5.638144516552169,5.638144516552169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,49.91,3,1,0,1,12,2,1,716,0,0,0 +11838,14504,26387,26388,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,3,0,0,0,0,63,2,1,3,3,3,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,28.29103219868252,1,51.31,45.18,5,1,0,0,13,1,1,620,0,0,0 +11838,14504,26388,26387,-9,-9,2,1,1,63,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-3,0,0,0,0,66,3,3,3,3,3,2019,4,1,18,6,0,0,15,3,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.11,21.07,3,1,0,0,13,1,1,620,0,0,0 +11839,14505,26389,26391,-9,-9,1,1,0,43,1,1,2,0,2,-9,2,1,0,4,7.43547580770951,6.951226113762035,0,2,0,-9,17,0,-6,79.53081864421335,0,0,1,49,3,4,1,-9,-9,2019,1,2,10,1,22,22,15,1,1,1,0,5.887169678734081,5.887169678734081,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.79,38.47,4,1,0,0,5,3,1,1807,0,0,0 +11839,14505,26390,-9,26389,26391,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1144.663387984973,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,5,3,1,1807,0,0,0 +11839,14505,26391,26389,-9,-9,2,1,1,49,1,1,2,0,3,-9,2,1,0,4,8.548840127853225,8.041948483676226,0,2,0,-9,17,0,6,66.01158324795053,0,0,0,43,2,4,1,2,2,2019,1,1,9,0,44,40,15,1,0,1,0,9.165934229732848,9.165934229732848,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.87,58.55,3,1,0,0,5,3,1,1807,0,0,0 +11840,14506,26392,-9,-9,-9,1,1,0,50,3,0,1,0,1,-9,2,1,0,3,8.576343731919394,8.773232832535902,5.519612286052324,4,0,0,0,-9,0,-1044.031206601774,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,45,50,15,1,2,-9,0,20.01468391040516,20.01468391040516,0,0,0,0,0,0,0,1,1,0,5.517855165770187,0,0,0,43.65,58.28,4,1,0,0,12,5,1,312.5,0,0,0 +11840,14506,26393,-9,26392,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-948.5653152142061,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,312.5,0,0,0 +11841,14507,26394,26395,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.133517389385121,8.274665020705248,0,1,0,-9,33,0,-13,44.04390215555369,0,0,0,71,1,3,3,2,1,2019,2,2,3,0,42,24,15,1,0,4,0,11.18313047079522,11.18313047079522,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.54,44.15,5,4,0,0,8,3,1,488.5,0,0,0 +11841,14507,26395,26394,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,4.361643627106305,4.372485597758107,1,0,-9,33,0,13,-1.601588799282638,0,0,0,58,2,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.41701886356051,0,0,53.99,48.04,5,4,0,0,8,3,1,488.5,0,0,0 +11841,14508,26396,-9,26394,26395,3,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.275575751251736,8.245562521146331,0,3,0,0,0,-9,0,-1044.97962785796,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,48,16,15,1,0,-9,1,8.404617311486858,8.404617311486858,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,6,4,0,0,8,4,1,345,0,0,0 +11842,14509,26397,-9,-9,-9,3,1,1,22,2,0,0,0,2,1,2,1,0,4,7.553399535181044,7.261923046361468,0,3,0,0,0,-9,0,-1035.735067996764,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,0,15,1,0,-9,1,5.654665414580378,5.654665414580378,0,0,0,0,0,0,0,0,0,0,0,0,0,3,43.8,49.97,1,1,0,0,4,3,1,125,0,0,0 +11843,14510,26398,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1047.651644909388,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.5,50.28,5,2,1,0,5,1,0,1519,0,0,0 +11844,14511,26399,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,2,1,0,2,7.82977160661755,7.703549360814941,0,3,0,0,0,-9,0,-1026.490002344577,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,38,38,15,1,12,-9,0,10.29605189149576,10.29605189149576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.64,55.53,3,1,0,0,5,4,0,761,0,0,0 +11845,14512,26400,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,2,1,0,4,7.091318593577829,7.072093181683461,0,3,0,0,0,-9,0,-985.1101704680876,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,22,23,15,1,0,-9,0,5.83592749635526,5.83592749635526,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.1,55.36,5,1,0,0,11,2,0,1756,0,0,0 +11845,14513,26401,-9,26400,-9,2,1,0,19,2,0,0,0,2,-9,2,1,0,5,7.260341299417022,7.235374743756583,0,3,0,0,0,-9,0,-956.1027025054613,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,42,35,15,1,0,-9,1,3.740357296292772,3.740357296292772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,11,3,0,1619,0,0,0 +11846,14514,26402,-9,-9,-9,1,1,0,62,2,0,0,0,1,-9,4,3,0,2,0,7.932118086995624,7.725132318022788,3,0,0,0,-9,0,-1008.24367114375,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.03833290628576,7.503782267697623,5.830003888014216,3,32.08,47.89,5,1,0,0,7,3,1,693,0,0,0 +11847,14515,26403,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,4,0,7.078407100360391,7.186516346896517,3,0,0,0,-9,0,-1129.851897549648,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.813643756761294,0,0,57.16,56.15,6,1,0,0,6,2,1,1104,0,0,0 +11848,14516,26404,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1024.123211345397,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,38,40,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.04,53.77,4,1,0,0,13,1,1,2464,0,0,0 +11849,14517,26405,26406,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,4,8.612890564566968,8.908599940467681,0,1,0,-9,16,0,1,-11.63707730265855,0,0,0,53,2,3,1,2,1,2019,1,1,12,0,72,37,15,1,0,1,0,11.56923089534644,11.56923089534644,0,0,0,0,0,0,0,0,0,0,4.860684155517021,0,0,0,43.43,54.3,4,1,0,1,6,5,1,1257.5,0,0,0 +11849,14517,26406,26405,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.776888480059101,9.350465304824398,0,1,0,-9,16,0,-1,147.6949966948919,0,0,0,54,2,4,1,-9,-9,2019,1,2,11,0,40,43,15,1,0,1,0,22.72980098316879,22.72980098316879,0,0,0,0,0,0,0,0,0,0,1.347350762396617,0,0,0,47.15,51.13,4,1,0,0,6,5,1,1257.5,0,0,0 +11850,14518,26407,-9,26408,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,4,8.074187990893046,8.29901315603437,0,3,0,0,0,-9,0,-1124.794248148469,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,30,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,2,0,0,8,4,1,296,0,0,0 +11850,14519,26408,-9,-9,-9,2,1,0,56,3,0,0,0,2,-9,2,1,0,3,8.228277273465068,8.303810887026531,0,3,0,0,0,-9,0,-990.7530413422143,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,35,37,15,1,3,-9,0,13.0632936039634,13.0632936039634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.01,49.59,4,2,0,0,8,4,1,214,0,0,0 +11851,14520,26409,-9,26412,26411,6,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1126.967925982307,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,6,2,1,665.25,0,0,0 +11851,14520,26410,-9,26412,26411,5,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-918.640855412195,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,6,2,1,665.25,0,0,0 +11851,14520,26411,26412,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,3,7.147438285206882,7.256987605828262,0,2,0,-9,20,0,-3,-45.11495006110427,0,0,0,50,2,4,3,3,3,2019,2,1,11,0,40,30,15,1,0,3,0,4.550234743613944,4.550234743613944,0,0,0,0,0,0,0,1,1,0,0,0,0,3,62.66,52.4,6,3,0,0,6,2,1,665.25,0,0,0 +11851,14520,26412,26411,-9,-9,1,1,0,50,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,20,0,3,96.98921663706098,0,0,0,47,2,3,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.680853006305333,3,54.2,57.49,6,3,0,0,6,2,1,665.25,0,0,0 +11851,14521,26413,-9,26412,26411,3,1,1,25,2,0,2,0,2,-9,2,1,0,5,7.710773755764214,7.778965658586653,0,3,0,0,0,-9,0,-915.4065318848429,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,33,15,1,0,-9,1,6.11256863419929,6.11256863419929,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,3,0,0,6,3,1,676,0,0,0 +11851,14522,26414,-9,26412,26411,4,1,0,24,2,0,2,0,2,1,8,3,1,3,0,0,0,3,0,0,0,-9,0,-956.8440266337001,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.71,41.12,6,3,0,0,6,1,1,765,0,0,0 +11852,14523,26415,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-978.9674192864279,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,73.8,20.32,6,1,0,1,12,1,0,2894,0,0,0 +11853,14524,26416,26417,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,5,9.062839902469705,9.355207795931229,0,1,0,-9,9,0,0,70.15228920385502,0,0,0,59,1,4,1,2,2,2019,1,1,8,0,13,15,15,1,0,1,0,83.60668569807233,83.60668569807233,0,0,0,0,0,0,0,0,0,0,8.529489040352445,0,0,0,54.1,59.11,7,1,0,0,9,5,1,881,0,0,0 +11853,14524,26417,26416,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,4,9.58740080843331,9.456829227564484,0,1,0,-9,9,0,0,54.42897867198494,0,0,0,59,1,5,1,3,2,2019,1,2,7,0,48,46,15,1,0,1,0,34.23383982515768,34.23383982515768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,9,5,1,881,0,0,0 +11853,14525,26418,-9,26416,26417,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.327656650806352,8.277314770587173,0,3,0,0,0,-9,0,-1047.325926869257,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,36,24,15,1,1,-9,1,10.26773970965287,10.26773970965287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,9,4,1,1950,0,0,0 +11853,14526,26419,-9,26416,26417,4,1,1,23,2,0,0,0,2,1,2,1,0,4,8.20452422273663,8.237122891303512,0,3,0,0,0,-9,0,-985.4991869352576,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,28,0,15,1,1,-9,1,11.10045755902783,11.10045755902783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,9,4,1,382,0,0,0 +11854,14527,26420,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,2,7.370285950843668,7.656994495572932,0,3,0,-9,0,1,0,-980.1688644229288,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,20,6,60,57,15,1,6,-9,0,3.010704758717771,3.010704758717771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.13,33.56,3,1,0,0,4,3,0,1565,0,0,0 +11855,14528,26421,26422,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,3,0,8.100243547737291,8.312099253584048,1,0,-9,31,0,-3,-44.98124383469493,0,0,0,72,2,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.145052705526737,8.687857269818796,0,0,55.36,51.57,6,1,0,0,7,4,1,498.5,0,0,0 +11855,14528,26422,26421,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,7.106134973587173,6.716996279724212,1,0,-9,8,0,3,-74.69212217743667,0,0,0,69,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.499703590392544,0,0,0,57.16,56.15,6,1,0,0,7,4,1,498.5,0,0,0 +11856,14529,26423,-9,-9,-9,1,1,0,54,3,0,1,0,2,-9,2,1,0,3,7.801102723997889,7.834157864843587,0,4,0,0,0,-9,0,-1038.56335612875,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,36,36,15,1,0,-9,0,6.891831548762825,6.891831548762825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.15,55.74,5,1,0,0,12,3,0,311,0,0,0 +11856,14530,26424,-9,-9,-9,2,1,0,48,2,0,1,0,2,-9,2,1,0,3,7.573766773782959,7.277201760602374,0,4,0,0,0,-9,0,-994.1241453532975,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,20,20,15,1,3,-9,0,10.00823703394869,10.00823703394869,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.25,52.68,4,1,0,0,12,2,0,345,0,0,0 +11856,14530,26425,-9,26424,-9,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1098.259299668242,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,2,0,345,0,0,0 +11856,14531,26426,-9,26423,-9,3,1,1,25,2,0,1,0,2,-9,2,1,0,3,8.098199697695684,8.124548458490334,0,3,0,0,0,-9,0,-953.6387265655569,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,42,42,15,1,0,-9,1,8.004638432598282,8.004638432598282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.89,51.08,6,1,0,0,12,4,0,915,0,0,0 +11857,14532,26427,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.449231225304333,8.395773262952794,6.440512903423819,3,0,-9,0,-9,0,-1047.77324415376,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,60,0,15,1,0,-9,0,8.473416711482741,8.473416711482741,0,0,0,0,0,0,0,1,1,0,6.134728408683538,0,0,0,53.62,43.07,6,1,0,0,4,5,1,161,0,0,0 +11858,14533,26428,26429,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.387758327258807,7.942845180823313,1,0,-9,9,0,2,63.24048511637581,0,0,0,62,2,2,1,3,3,2019,3,2,8,0,0,46,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.000623244384631,8.640926958269459,6.880041160622196,3,50.96,45.55,6,1,0,0,5,4,1,266,0,0,0 +11858,14533,26429,26428,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,2,6.885251642466539,7.5050814420387,4.214416098318567,1,0,-9,9,0,-2,64.89673038481202,0,0,0,64,2,3,3,3,3,2019,2,1,22,9,21,26,15,1,9,4,0,8.819255167096591,8.819255167096591,0,0,0,0,0,0,0,1,1,0,0,4.290994198360034,15.06342373570543,3,27.14,44.64,4,1,0,0,5,4,1,266,0,0,0 +11859,14534,26430,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,4,0,7.785275932768922,7.585202077779686,3,0,0,0,-9,0,-907.7728453938097,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.579220243001664,8.159412220090026,0,0,53.48,49.51,6,1,0,0,11,4,1,853,0,0,0 +11860,14535,26431,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,0,5.994352735615326,5.827496941294316,3,0,0,0,-9,0,-1087.480964871216,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.062698403176107,0,0,41.17,17.23,7,1,0,1,7,2,1,622,0,0,0 +11861,14536,26432,26433,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,4,0,6.985108846136256,6.484186664861817,1,0,-9,10,0,-2,74.77490319911873,0,0,0,61,2,4,1,2,3,2019,3,1,4,1,0,40,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.773857145413338,42.20503974387486,3,41.66,51.7,5,1,0,0,12,4,1,358,0,0,0 +11861,14536,26433,26432,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,4,8.21264106991533,8.541680118035016,0,1,0,-9,10,0,2,-26.85904116532056,0,0,0,59,2,4,3,3,3,2019,2,2,10,0,39,39,15,1,0,3,0,11.58653025851965,11.58653025851965,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.75,50.01,6,1,0,0,12,4,1,358,0,0,0 +11861,14537,26434,-9,26432,26433,3,1,1,25,2,0,0,0,1,-9,2,1,0,5,7.440574463494413,7.575971690359861,0,3,0,0,0,-9,0,-1027.913308361102,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,80,15,1,0,-9,1,7.507539331312077,7.507539331312077,0,0,0,0,0,0,0,0,0,0,3.817976935426325,0,0,0,48.89,46.49,5,1,0,0,12,3,1,373,0,0,0 +11862,14538,26435,-9,26439,26437,5,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-899.5898175372432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,0,683.8,0,0,0 +11862,14538,26436,-9,26439,26437,3,1,0,4,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.698970270576,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,0,683.8,0,0,0 +11862,14538,26437,26439,-9,-9,1,1,1,32,1,2,3,0,2,-9,1,1,0,4,8.181829138633937,8.314828990166507,0,2,0,-9,6,0,5,37.44993706370062,0,0,0,27,2,4,1,2,2,2019,1,2,10,0,60,60,15,1,0,1,0,6.963774490929469,6.963774490929469,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,3,0,683.8,0,0,0 +11862,14538,26438,-9,26439,26437,4,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1071.501344426123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,0,683.8,0,0,0 +11862,14538,26439,26437,-9,-9,2,1,0,27,1,2,3,0,2,-9,5,1,0,4,7.056033137792498,7.011552068660084,0,2,0,-9,6,0,-5,-20.47153219351495,0,1,1,32,2,4,1,2,-9,2019,1,1,8,0,21,20,15,1,0,1,0,6.752338234486189,6.752338234486189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.73,53.98,6,1,0,0,6,3,0,683.8,0,0,0 +11863,14539,26440,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1022.781795564346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.85,49.12,6,1,0,0,6,1,1,1382,0,0,0 +11864,14540,26441,26443,-9,-9,2,1,1,39,1,0,4,0,2,-9,2,1,0,2,8.372753969807471,8.102277224095753,0,2,0,-9,7,0,2,27.11775444073153,0,0,0,37,2,4,1,2,-9,2019,1,1,11,2,36,42,15,1,2,1,0,15.13593826675804,15.13593826675804,0,0,0,0,0,0,0,1,1,0,0,0,16.65337992640132,3,37.68,56.2,5,1,0,0,9,3,0,1589,0,0,0 +11864,14540,26442,-9,26443,26441,6,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.0618915734084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,0,1589,0,0,0 +11864,14540,26443,26441,-9,-9,1,1,0,37,1,0,4,0,2,-9,2,1,0,4,7.663485766531537,7.496470219257269,0,2,0,-9,7,0,-2,-32.26937526951139,0,0,1,39,2,2,1,2,3,2019,1,2,7,0,30,42,15,1,0,1,0,6.514303059434367,6.514303059434367,0,0,0,0,0,0,0,1,1,0,0,0,74.06089096947515,3,42.92,54.55,6,1,0,0,9,3,0,1589,0,0,0 +11864,14540,26444,-9,26443,26441,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-831.0719612305303,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,0,1589,0,0,0 +11864,14540,26445,-9,26443,26441,4,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.704393750993,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,3,0,1589,0,0,0 +11865,14541,26446,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,9.77774069202529,9.812294483704854,0,3,0,0,0,-9,0,-1007.458399704703,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,48,50,15,1,0,-9,0,37.82996196005566,37.82996196005566,0,0,0,0,0,0,0,1,1,0,6.567519329471792,0,0,0,57.16,56.15,6,1,0,0,10,5,1,537,0,0,0 +11866,14542,26447,26449,-9,-9,1,1,0,46,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,19,0,-8,50.14244614701816,0,0,0,54,2,3,1,3,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.97,39.46,6,3,0,0,8,2,0,541.6666666666666,0,0,0 +11866,14542,26448,-9,26447,26449,4,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.692418489205,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,3,0,0,8,2,0,541.6666666666666,0,0,0 +11866,14542,26449,26447,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,3,7.412538532744128,7.442161765137444,0,2,0,-9,18,0,8,-7.284479878240564,0,0,0,46,3,3,3,3,1,2019,2,1,14,2,24,0,15,1,2,3,0,7.545303225815316,7.545303225815316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.88,43.88,6,3,0,0,8,2,0,541.6666666666666,0,0,0 +11866,14543,26450,-9,26447,26449,3,1,0,23,2,0,1,0,1,-9,2,1,0,4,8.2365089236679,8.086475262816458,0,3,0,0,0,-9,0,-1006.368351808487,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,5,0,38,39,15,1,0,-9,1,11.34516506090532,11.34516506090532,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.55,54.33,6,3,0,0,8,4,0,73,0,0,0 +11867,14544,26451,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,7.033938128089029,7.087521700023701,3,0,0,0,-9,0,-886.3410403425293,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.739800618132592,6.80148233048757,0,0,60.47,46.56,6,1,0,0,5,2,1,1050,0,0,0 +11868,14545,26452,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-966.7396064805378,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,28,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.79628692701535,3,19.72,49.57,4,4,1,0,8,1,0,238,0,0,0 +11869,14546,26453,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,3,0,6.322164849199354,6.345315737959278,3,0,0,0,-9,0,-954.2018595492012,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.211716585231999,0,0,55,45,5,4,0,0,6,2,1,680,0,0,0 +11870,14547,26454,26455,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,2,0,8.21138699371625,8.17380390187539,1,0,-9,2,0,23,51.14719816826308,0,0,0,59,2,4,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.268221053816445,0,0,35.78,41.87,5,1,0,0,7,4,1,522.5,0,0,0 +11870,14547,26455,26454,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.51493831149114,7.455603819094236,0,1,0,-9,2,0,-23,25.81835734851946,0,0,0,82,2,2,3,-9,-9,2019,2,1,15,4,31,29,15,1,4,4,0,8.363210115313709,8.363210115313709,0,0,0,0,0,0,0,1,1,0,1.283338422705848,0,0,0,44.81,57.83,2,1,0,0,7,4,1,522.5,0,0,0 +11871,14548,26456,26457,-9,-9,2,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.220774865249485,8.312931479395656,0,1,0,-9,5,0,0,-23.00332468749492,0,1,0,25,1,4,1,-9,-9,2019,1,1,9,0,45,44,15,1,0,1,0,9.101360273696388,9.101360273696388,0,0,0,0,0,0,0,0,0,0,3.240602329622129,0,0,0,54.1,59.11,6,1,0,0,2,5,0,594.5,0,0,0 +11871,14548,26457,26456,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,4,8.017893197438296,7.888801473950361,0,1,0,-9,5,0,0,-52.87536162656004,0,1,1,25,1,5,1,1,1,2019,1,2,9,0,40,33,15,1,0,1,0,9.383717687332293,9.383717687332293,0,0,0,0,0,0,0,0,0,0,.7327124891299537,0,0,0,49.35,59.64,6,1,0,0,2,5,0,594.5,0,0,0 +11872,14549,26458,26459,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.68377591744057,8.765077738181279,0,1,0,-9,24,0,1,58.60132241523544,0,0,0,44,2,2,3,2,2,2019,2,1,12,1,48,10,15,1,1,3,0,14.67279731748078,14.67279731748078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.57,53.5,5,1,0,0,2,4,1,418.5,0,0,0 +11872,14549,26459,26458,-9,-9,1,1,1,44,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,24,0,-1,15.49412742347889,0,0,0,45,2,3,1,3,1,2019,3,2,18,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.1,55.19,3,1,0,0,2,4,1,418.5,0,0,0 +11873,14550,26460,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,4,3,0,1,0,6.766056436412202,6.686853814791674,3,0,0,0,-9,0,-914.5671523676232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.11631426537925,0,0,49.28,17.11,5,1,0,0,7,2,0,976,0,0,0 +11874,14551,26461,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,3,7.314837115155691,7.777563577031357,0,3,0,0,0,-9,0,-1155.381832849724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,22,26,15,1,0,-9,0,9.535974121914105,9.535974121914105,0,0,0,0,0,0,0,1,0,1,0,0,11.54766016952233,3,55.36,51.57,5,1,0,0,12,3,0,235,0,0,0 +11875,14552,26462,26463,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,3,9.126133818055127,9.408399414990857,0,2,0,-9,19,0,-8,42.15677363946006,0,0,1,52,1,2,1,-9,-9,2019,1,2,8,0,47,42,15,1,0,1,0,19.31532555192638,19.31532555192638,0,0,0,0,0,0,0,1,1,0,2.930847345998627,0,0,0,57.33,53.46,6,1,0,0,9,4,1,651.75,0,0,0 +11875,14552,26463,26462,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,2,0,0,0,2,0,-9,19,0,8,10.51675965376176,0,0,0,44,1,3,1,3,3,2019,1,1,14,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.514657298368253,0,0,0,49.85,50.47,4,4,0,0,9,4,1,651.75,0,0,0 +11875,14552,26464,-9,26462,26463,4,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1076.104115570104,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,2,0,0,9,4,1,651.75,0,0,0 +11875,14552,26465,-9,26462,26463,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.542386388195,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,9,4,1,651.75,0,0,0 +11876,14553,26466,26467,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.63643686513886,7.502761494109935,1,0,-9,46,0,0,8.696744120607301,0,0,0,67,1,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.265459883428746,7.461534386994174,0,0,47.16,43.1,6,1,0,0,5,3,1,1198,0,0,0 +11876,14553,26467,26466,-9,-9,2,1,0,67,1,0,0,0,1,-9,4,3,0,3,0,6.726563302016237,6.856534265922246,1,0,-9,46,0,0,40.21880073554589,0,0,0,67,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.241045679622235,7.085112104472595,0,0,54.96,53.17,6,1,0,0,5,3,1,1198,0,0,0 +11877,14554,26468,26469,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,3,8.687350467578199,8.856044304362577,0,1,0,-9,44,0,0,121.9602564004441,0,0,0,62,1,4,1,2,2,2019,1,1,10,0,40,40,15,1,0,1,0,15.90698269541381,15.90698269541381,0,0,0,0,0,0,0,1,1,0,7.420853562464925,0,0,0,54.37,54.8,6,1,0,0,11,5,1,670,0,0,0 +11877,14554,26469,26468,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,4,8.029395103686495,8.070031758948558,0,1,0,-9,44,0,0,-29.6542969855512,0,0,0,62,1,3,1,2,3,2019,1,2,11,0,40,24,15,1,0,1,0,6.36725310790483,6.36725310790483,0,0,0,0,0,0,0,1,1,0,6.166002037132223,0,0,0,46.98,59.35,6,1,0,0,11,5,1,670,0,0,0 +11878,14555,26470,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,3,8.91267740193331,8.363427531472746,0,3,0,0,0,-9,0,-868.2588498039725,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,45,50,15,1,2,-9,0,17.12148136211377,17.12148136211377,0,0,0,0,0,0,0,1,1,0,1.016650620266512,0,0,0,38.51,59.43,3,1,0,0,7,5,1,265,0,0,0 +11879,14556,26471,26472,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,4,0,8.143935566279225,7.968449053667061,1,0,-9,22,0,16,-86.80375783484233,0,0,0,60,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.265887828718705,7.988343466598277,0,0,57.16,56.15,6,1,0,0,7,4,1,369.5,0,0,0 +11879,14556,26472,26471,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,7.586330529351682,7.437195379707459,1,0,-9,25,0,-16,-9.286857577743906,0,0,0,76,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.270570449683311,7.61726895144256,0,0,55.96,49.93,6,1,0,0,7,4,1,369.5,0,0,0 +11880,14557,26473,26474,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,4,8.208260469474574,8.416660066303844,0,1,0,-9,2,0,-3,-64.92941068070022,0,1,1,25,1,5,1,-9,-9,2019,1,1,12,0,42,41,15,1,0,1,0,9.269235936554379,9.269235936554379,0,0,0,0,0,0,0,0,0,0,1.496360730833723,0,0,0,40.01,58.61,6,1,0,0,1,5,0,803,0,0,0 +11880,14557,26474,26473,-9,-9,1,1,1,25,1,0,0,0,1,-9,2,1,0,5,8.476535237287187,8.230153491190647,0,1,0,-9,2,0,3,-10.2373745643037,0,1,0,22,1,4,1,1,2,2019,1,2,16,4,45,35,15,1,4,1,0,7.150525965985648,7.150525965985648,0,0,0,0,0,0,0,0,0,0,1.623415237611844,0,0,0,43.92,62.31,6,1,0,0,1,5,0,803,0,0,0 +11881,14558,26475,26476,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,8,0,0,0,0,63,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,6,3,0,0,8,1,0,398.5,0,0,0 +11881,14558,26476,26475,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,47,0,-8,0,0,0,0,71,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,3,0,0,8,1,0,398.5,0,0,0 +11881,14559,26477,-9,26476,26475,3,1,1,35,2,0,0,0,2,-9,2,1,0,4,8.492514368856716,8.966456986057171,0,3,0,0,0,-9,0,-1056.417508802969,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,50,50,15,1,1,-9,1,14.69657158519107,14.69657158519107,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,8,5,0,273,0,0,0 +11882,14560,26478,26480,-9,-9,2,1,0,30,1,0,3,0,2,-9,2,1,0,5,6.788196977386693,6.900528127853693,0,2,0,-9,12,0,-10,-36.8866345920464,0,0,1,40,2,2,1,3,3,2019,1,1,11,0,16,0,15,1,0,1,0,6.905615282209074,6.905615282209074,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,5,2,0,715,0,0,0 +11882,14560,26479,-9,26478,26480,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.4856933816091,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,715,0,0,0 +11882,14560,26480,26478,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,2,7.378947853071356,7.495339301328129,0,2,0,-9,12,0,10,-10.84093699685271,0,0,0,30,2,5,1,-9,-9,2019,1,2,12,0,9,44,15,1,0,1,0,19.84600129150023,19.84600129150023,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,54.57,6,1,0,0,5,2,0,715,0,0,0 +11882,14560,26481,-9,26478,26480,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.341507625188,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,2,0,715,0,0,0 +11882,14560,26482,-9,26478,26480,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.282788524205,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,715,0,0,0 +11883,14561,26483,26484,-9,-9,1,1,1,69,1,0,0,0,2,-9,2,1,0,3,8.186502394558694,8.177184671285632,0,1,0,-9,9,0,1,2.856759421692617,0,0,0,68,3,1,1,3,3,2019,1,2,10,0,40,40,15,1,1,1,0,8.319078720299439,8.319078720299439,0,0,0,0,0,0,0,1,1,0,0,0,15.27741430176329,1,52,48,5,1,0,1,7,4,1,843.5,0,0,0 +11883,14561,26484,26483,-9,-9,2,1,0,68,1,0,0,0,3,-9,2,1,0,1,7.250814062880622,7.689777957870969,0,1,0,-9,9,0,-1,-63.55383625081875,0,0,0,69,2,3,1,-9,3,2019,1,1,16,4,30,30,15,1,4,1,0,6.496048730928852,6.496048730928852,1,0,0,0,0,37.22624467552752,0,1,1,0,0,0,0,0,38,25,4,1,0,1,7,4,1,843.5,0,0,0 +11883,14562,26485,-9,26486,-9,3,1,0,17,2,0,0,1,3,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-986.7719722099253,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.23487684077036,3,40.36,54.33,3,1,0,1,7,3,1,729,0,0,0 +11883,14562,26486,-9,-9,-9,4,1,0,19,2,0,0,0,2,-9,2,1,0,3,7.693784191083441,7.673948816874256,0,3,0,0,0,-9,0,-1030.843160087081,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,33,36,15,1,6,-9,0,8.44965328061995,8.44965328061995,0,0,0,0,0,0,0,1,1,0,0,0,9.791611121183152,3,44.03,39.26,6,1,0,0,7,3,1,729,0,0,0 +11884,14563,26487,26488,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,8.155093586404728,8.034550288748184,1,0,-9,10,0,-2,17.55779311987743,0,0,0,69,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.400889629258414,8.102697746698951,0,0,58.07,46.29,6,1,0,0,10,3,1,458.5,0,0,0 +11884,14563,26488,26487,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,44,0,2,-9.773212822312752,0,0,0,67,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,28.21,4,1,0,0,10,3,1,458.5,0,0,0 +11885,14564,26489,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,4,7.897411611574956,7.768152024110783,0,3,0,0,0,-9,0,-985.6023248539071,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,45,40,15,1,0,-9,0,7.7213070136518,7.7213070136518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,5,1,0,0,9,3,1,531,0,0,0 +11886,14565,26490,26491,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,4,6.606139047507948,6.637311511914757,0,1,0,-9,29,0,5,76.3390435074931,0,0,0,59,3,3,3,3,3,2019,2,2,6,0,70,50,15,1,0,4,0,1.348339200033223,1.348339200033223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,1,0,0,13,3,1,1034,0,0,0 +11886,14565,26491,26490,-9,-9,2,1,0,59,1,0,0,0,3,-9,4,3,0,3,0,6.962473836555642,7.311656645427857,1,0,-9,28,0,-5,66.34268645206629,0,0,0,64,3,4,1,2,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.21023947667009,0,0,49.04,55.86,5,1,0,0,13,3,1,1034,0,0,0 +11886,14566,26492,-9,26491,26490,3,1,1,23,2,0,0,0,1,1,2,1,0,5,0,0,0,3,0,0,0,-9,0,-981.7834586410994,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,1,13,1,1,1040,0,0,0 +11887,14567,26493,26495,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,4,8.634273831360638,8.400968544932754,0,2,0,-9,9,0,0,-79.14003080905348,0,0,1,44,2,3,1,-9,-9,2019,1,1,9,0,26,25,15,1,0,1,0,25.35276413175643,25.35276413175643,0,0,0,0,0,0,0,0,0,0,4.639334097809074,0,0,0,41.87,59.15,5,2,0,0,9,5,1,319.25,0,0,0 +11887,14567,26494,-9,26493,26495,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.1189046724643,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,9,5,1,319.25,0,0,0 +11887,14567,26495,26493,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,3,9.526876113750209,9.197166898510286,0,2,0,-9,9,0,0,-167.5843995329033,0,0,0,44,1,4,1,1,1,2019,1,2,12,2,39,39,15,1,2,1,0,38.32726123435133,38.32726123435133,0,0,0,0,0,0,0,0,0,0,4.797217813504231,0,0,0,41.47,58.08,6,1,0,0,9,5,1,319.25,0,0,0 +11887,14567,26496,-9,26493,26495,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-992.6489025448863,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,9,5,1,319.25,0,0,0 +11888,14568,26497,-9,26499,26498,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.7077189046034,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,1,511.8,0,0,0 +11888,14568,26498,26499,-9,-9,1,1,1,48,1,0,3,0,2,-9,2,1,0,3,8.634568281351896,8.52796182849918,0,2,0,-9,7,0,9,-21.46825750144713,0,0,0,39,2,4,1,-9,-9,2019,1,2,8,0,65,65,15,1,0,1,0,12.26362191845815,12.26362191845815,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.19,53.68,6,1,0,0,6,4,1,511.8,0,0,0 +11888,14568,26499,26498,-9,-9,2,1,0,39,1,0,3,0,2,-9,2,1,0,4,8.851885468049931,8.449203367293427,0,2,0,-9,7,0,0,149.6002369728995,0,0,1,48,2,3,1,3,1,2019,1,1,10,1,53,53,15,1,1,1,0,10.6648154836844,10.6648154836844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,6,4,1,511.8,0,0,0 +11888,14568,26500,-9,26499,26498,4,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1185.062185071853,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,6,4,1,511.8,0,0,0 +11888,14568,26501,-9,26499,26498,5,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1042.526133933361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,4,1,511.8,0,0,0 +11889,14569,26502,26503,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,8.962075119461675,8.84276964109997,0,1,0,-9,2,0,0,25.88181832162337,-9,0,0,59,2,4,1,-9,-9,2019,1,1,10,0,48,0,15,1,0,1,0,18.74027824865801,18.74027824865801,0,0,0,0,0,0,0,0,0,0,6.91084905491801,0,8.808043729596378,3,57.16,56.15,7,1,0,0,9,5,1,2105.5,0,0,0 +11889,14569,26503,26502,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.718921391778076,7.552760415864298,0,1,0,-9,33,0,0,15.6215223323351,0,0,0,59,2,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,6.644211918872426,6.644211918872426,0,0,0,0,0,0,0,0,0,0,.4107872358077341,0,0,3,57.16,56.15,6,1,0,0,9,5,1,2105.5,0,0,0 +11890,14570,26504,-9,26506,26507,4,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1005.755632559478,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,5,1,0,0,12,5,1,484.25,0,0,0 +11890,14570,26505,-9,26506,26507,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1050.515287275385,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.2529952583453123,0,0,0,20.49,69.16,3,1,0,0,12,5,1,484.25,0,0,0 +11890,14570,26506,26507,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,9.357815832173682,9.192805116489787,0,2,0,-9,8,0,-2,45.27392934131171,0,0,0,47,1,3,3,1,1,2019,2,2,13,2,42,24,15,1,2,3,0,34.75377993940513,34.75377993940513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,2,1,0,0,12,5,1,484.25,0,0,0 +11890,14570,26507,26506,-9,-9,2,1,1,47,1,0,2,0,1,-9,3,3,0,3,8.906582065344788,8.671641006053747,0,2,0,-9,8,0,2,59.1328556347629,0,0,0,45,1,4,1,2,2,2019,3,1,14,3,40,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.725188962699653,0,0,0,47.69,55.06,5,1,1,0,12,5,1,484.25,0,0,0 +11891,14571,26508,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,5,7.936056125069713,8.123630800632421,0,3,0,0,0,-9,0,-860.3598487482831,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,38,38,15,1,2,-9,0,9.788392327967598,9.788392327967598,0,0,0,0,0,0,0,1,1,0,1.587015233812135,0,0,0,51.26,53.44,6,1,0,0,11,4,0,342,0,0,0 +11892,14572,26509,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-944.0263094057655,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,1,0,0,7.279087211180626,6.280943858358752,0,0,1,1,0,0,0,117.0686369798727,3,40.19,16.96,4,5,0,0,8,1,0,97,0,0,0 +11892,14573,26510,-9,-9,26509,3,1,1,20,2,0,0,0,2,-9,2,1,0,3,8.392628384681419,8.127523385859723,0,3,0,0,0,-9,0,-1049.96148209631,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,0,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,52.66,7,1,0,0,8,4,0,173,0,0,0 +11893,14574,26511,26512,-9,-9,1,1,1,48,1,0,0,0,1,-9,1,1,0,4,8.426296298317242,8.335362501767388,0,1,0,-9,18,0,15,57.31307908922035,0,0,0,33,2,4,1,2,2,2019,1,2,12,0,65,50,15,1,0,1,0,8.264410657314192,8.264410657314192,0,0,0,0,0,0,0,0,0,0,2.991746026852585,0,0,0,52.23,55.6,5,1,0,0,7,5,0,466.5,0,0,0 +11893,14574,26512,26511,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,4,8.173886454013557,7.871763308632186,0,1,0,-9,10,0,-15,54.25594521962452,0,0,1,48,1,4,1,-9,-9,2019,1,1,10,1,37,38,15,1,1,1,0,9.600448557302352,9.600448557302352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,4,0,0,7,5,0,466.5,0,0,0 +11894,14575,26513,26514,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.142178927947795,7.187705846838393,0,1,0,-9,11,0,3,19.5953468925452,0,0,0,49,1,5,1,3,2,2019,1,2,13,1,15,15,15,1,1,1,0,8.246918871026121,8.246918871026121,0,0,0,0,0,0,0,0,0,0,0,0,11.82041166628871,3,42.76,33.25,5,1,0,0,7,5,1,2655,0,0,0 +11894,14575,26514,26513,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,5,9.704929819824082,9.506755238209006,0,1,0,-9,11,0,-3,24.66943461370764,0,0,0,52,2,2,1,2,3,2019,1,1,6,0,42,40,15,1,0,1,0,43.05622251206037,43.05622251206037,0,0,0,0,0,0,0,0,0,0,0,0,3.217145808691695,3,55.09,55.87,6,1,0,0,7,5,1,2655,0,0,0 +11894,14576,26515,-9,26513,26514,3,1,0,27,3,0,0,0,2,-9,2,1,0,3,8.488357907655642,7.665264490058822,0,3,0,0,0,-9,0,-1038.108005477154,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,6,0,35,15,1,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,41.57,45.88,4,1,0,0,7,4,1,1093,0,0,0 +11895,14577,26516,26517,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,4,8.029794629536593,8.01372882332857,6.408670745034576,1,0,-9,33,0,6,-78.05856883203228,0,0,0,55,3,3,1,3,3,2019,1,2,8,0,40,45,15,1,0,1,0,9.235516473262663,9.235516473262663,0,0,0,0,0,0,0,1,1,0,0,6.249285102834117,0,0,57.34,45.06,3,1,0,0,5,3,1,1047,0,0,0 +11895,14577,26517,26516,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,3,6.133063049325441,6.32220033270876,0,1,0,-9,32,0,-6,-43.69383709231912,0,0,0,61,3,4,1,3,3,2019,1,1,11,2,7,10,15,1,2,1,0,10.19733829347715,10.19733829347715,0,0,0,0,0,0,0,1,1,0,0,0,120.2251289750435,3,47,49,3,1,0,0,5,3,1,1047,0,0,0 +11895,14578,26518,-9,26517,26516,3,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.944126734747582,7.764614562283382,0,3,0,0,0,-9,0,-804.6340249585832,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,1,0,-9,1,7.230288288478294,7.230288288478294,0,0,0,0,0,0,0,1,1,0,0,0,5.301050150959489,3,59.9,39.94,7,1,0,0,5,3,1,779,0,0,0 +11896,14579,26519,-9,26521,26520,4,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.0950685125697,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,1,1020.666666666667,0,0,0 +11896,14579,26520,26521,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,7.960722680333826,7.900569677857256,0,2,0,-9,9,0,3,-68.42406499288781,0,0,0,48,2,3,1,3,3,2019,1,1,9,0,36,36,15,1,1,1,0,8.992521715946742,8.992521715946742,0,0,0,0,0,0,0,1,1,0,3.546703749257324,0,0,0,53,55,6,1,0,0,4,4,1,1020.666666666667,0,0,0 +11896,14579,26521,26520,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,8.303665152830938,7.920326460397337,0,2,0,-9,30,0,-3,44.98089750224467,0,0,0,51,2,4,1,3,3,2019,1,2,12,1,32,32,15,1,1,1,0,11.97225059449579,11.97225059449579,0,0,0,0,0,0,0,1,1,0,3.82112944823155,0,0,0,48.53,52.16,5,1,0,0,4,4,1,1020.666666666667,0,0,0 +11897,14580,26522,-9,26523,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-933.4108165883388,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,5,0,0,11,1,0,472.5,0,0,0 +11897,14580,26523,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,8,3,1,4,0,0,0,4,0,0,0,-9,0,-944.6246500717177,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,11,1,0,472.5,0,0,0 +11898,14581,26524,-9,26525,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-964.0628003947245,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,615.3333333333334,0,0,0 +11898,14581,26525,-9,-9,-9,1,1,0,33,2,1,3,0,3,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-904.3337292694189,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,0,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,29.67,2,1,0,0,6,1,0,615.3333333333334,0,0,0 +11898,14581,26526,-9,26525,-9,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1129.630974881446,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,1,0,615.3333333333334,0,0,0 +11899,14582,26527,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,4,7.971837465906661,8.009900921206524,0,3,0,0,0,-9,0,-869.602540025993,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,25,30,15,1,0,-9,0,14.28691359530591,14.28691359530591,0,0,0,0,0,0,0,1,1,0,0,0,46.4625962429238,3,57.16,56.15,6,1,0,0,13,4,1,273,0,0,0 +11899,14583,26528,-9,26527,-9,2,1,1,27,2,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1053.782614456751,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,7,0,41,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.507586836046846,0,0,0,27.27,53.09,3,1,0,0,13,1,1,302,0,0,0 +11899,14584,26529,-9,26527,-9,3,1,1,26,2,0,0,0,1,-9,2,1,0,5,8.158723418193635,8.509706383526025,0,3,0,0,0,-9,0,-944.2004486730241,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,42,37,15,1,0,-9,1,9.966633326086626,9.966633326086626,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,4,1,302,0,0,0 +11899,14585,26530,-9,26527,-9,4,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.623713438278099,7.691682460113791,0,3,0,0,0,-9,0,-936.1174769401557,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,37,37,15,1,0,-9,1,7.76809968879869,7.76809968879869,0,0,0,0,0,0,0,1,1,0,0,0,6.298421318543292,3,54.79,55.86,6,1,0,0,13,3,1,609,0,0,0 +11899,14586,26531,-9,26527,-9,5,1,1,22,2,0,0,0,2,1,2,1,0,5,8.074519150336616,8.062928589467694,0,3,0,0,0,-9,0,-1087.27544300286,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,37,0,15,1,0,-9,1,8.657108433121261,8.657108433121261,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,13,3,1,287,0,0,0 +11900,14587,26532,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,1,0,7.042243980989715,7.102891648279305,3,0,0,0,-9,0,-1144.073025771066,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.337581295611477,0,0,40.88,29,3,1,0,0,10,2,0,134,0,0,0 +11901,14588,26533,-9,26536,26534,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.489514010637,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,1,4,1,458.5,0,0,0 +11901,14588,26534,26536,-9,-9,1,1,1,35,1,0,2,0,2,-9,2,1,0,4,8.446635825546906,8.35240769724288,0,2,0,-9,7,0,0,39.96651769201413,0,0,0,35,2,4,1,2,2,2019,1,2,8,0,40,48,15,1,0,1,0,12.62513546480792,12.62513546480792,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,6,1,0,0,1,4,1,458.5,0,0,0 +11901,14588,26535,-9,26536,26534,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.852653052381,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,4,1,458.5,0,0,0 +11901,14588,26536,26534,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,4,7.794506625627661,7.532366914521915,0,2,0,-9,7,0,0,56.4546192909848,0,0,1,35,2,4,1,2,2,2019,1,1,6,0,28,23,15,1,0,1,0,10.01186945500347,10.01186945500347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,1,4,1,458.5,0,0,0 +11902,14589,26537,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,6,3,0,3,0,7.786078534674223,7.701600223818271,3,0,0,0,-9,0,-978.2979161089085,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.353426004457472,7.639648711554674,30.53873060735623,3,34.91,45.01,4,1,0,0,2,3,1,1017,0,0,0 +11903,14590,26538,26539,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,4.753201069182109,4.945448803466815,1,0,-9,37,0,1,45.65118708680836,0,0,0,73,3,3,3,-9,-9,2019,4,2,16,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.54222810433768,4.525336945509444,0,0,48.66,17.23,4,1,0,0,2,2,1,1094,0,0,0 +11903,14590,26539,26538,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,4.938059081344199,4.371088869369585,1,0,-9,7,0,-1,-6.156340535357488,0,0,0,74,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.051178394928242,4.468717785706222,16.77668374336003,1,57.33,53.46,5,1,0,0,2,2,1,1094,0,0,0 +11904,14591,26540,-9,26541,-9,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1030.697353176904,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,4,0,0,8,2,1,744.6666666666666,0,0,0 +11904,14591,26541,-9,-9,-9,1,1,0,51,3,0,2,0,1,-9,2,1,0,2,7.195002130345705,7.185259014739249,0,4,0,0,0,-9,0,-908.3279590797756,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,8,16,22,15,1,8,-9,0,11.06033854439168,11.06033854439168,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.65,35.93,2,4,0,1,8,2,1,744.6666666666666,0,0,0 +11904,14591,26542,-9,26541,-9,3,1,0,17,2,0,2,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-968.5518272839679,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,23,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.43,64.98999999999999,1,4,0,1,8,2,1,744.6666666666666,0,0,0 +11904,14592,26543,-9,26541,-9,2,1,0,18,2,0,2,0,3,-9,2,1,0,5,5.344574938146434,5.2972928532435,0,3,0,0,0,-9,0,-1092.626524715049,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,1,0,7,0,15,1,0,-9,1,2.613455501342134,2.613455501342134,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,4,0,0,8,2,1,568,0,0,0 +11905,14593,26544,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,3,8.011271866063851,8.073063793065071,0,3,0,0,0,-9,0,-989.5922487187677,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,35,41,15,1,0,-9,0,7.47825090034644,7.47825090034644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,7,1,0,0,4,3,0,440,0,0,0 +11906,14594,26545,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,2,1,0,4,8.401365902158803,8.639893971550359,0,3,0,0,0,-9,0,-1016.787741982132,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,9,0,50,42,15,1,0,-9,0,10.12844517807188,10.12844517807188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,6,4,0,0,5,4,1,667,0,0,0 +11907,14595,26546,-9,26547,26549,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.875576386069,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,1744,0,0,0 +11907,14595,26547,26549,-9,-9,1,1,0,28,1,0,2,0,2,-9,1,1,0,3,4.27077600418748,4.092124833466127,0,2,0,-9,7,0,-2,50.44779715741575,0,1,1,30,2,3,1,-9,-9,2019,1,2,6,0,0,48,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,4,3,1,1744,0,0,0 +11907,14595,26548,-9,26547,26549,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.038898620713,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,1744,0,0,0 +11907,14595,26549,26547,-9,-9,2,1,1,30,1,0,2,0,2,-9,1,1,0,3,8.029576794470236,7.836235747938048,0,2,0,-9,7,0,2,.9729890457780863,0,0,0,28,2,3,1,-9,-9,2019,1,1,11,1,0,55,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.17,49.39,5,1,0,0,4,3,1,1744,0,0,0 +11908,14596,26550,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,2,7.579291479212911,8.035187041007868,5.441429217883631,3,0,-9,0,-9,0,-980.4796879329303,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,21,0,15,1,3,-9,0,10.35018380937531,10.35018380937531,0,0,0,0,0,0,0,1,1,0,0,5.661294299964043,0,0,37.52,46.6,4,1,0,0,4,3,1,644,0,0,0 +11908,14597,26551,-9,26550,-9,2,1,0,24,2,0,0,0,1,-9,7,2,0,4,0,5.044449508516459,4.561328700810062,3,0,-9,0,-9,0,-1018.189465010593,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,17,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.573069671796044,0,0,0,51.24,58.84,5,1,0,1,4,1,1,210,0,0,0 +11909,14598,26552,-9,-9,26553,1,1,1,56,3,0,0,0,2,-9,2,1,0,3,7.683715479328364,7.566775339031475,0,3,0,0,0,-9,0,-1045.391128855053,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,1,9.347464449940727,9.347464449940727,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,5,1,0,0,2,4,1,264,0,0,0 +11909,14599,26553,-9,-9,-9,2,1,1,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-984.9587191715409,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,5,1,0,0,2,1,1,851,0,0,0 +11910,14600,26554,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-928.0551088756499,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.743157961417168,0,0,0,51.24,58.84,6,1,0,0,5,1,0,657,0,0,0 +11910,14601,26555,-9,-9,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1113.741621407284,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,5,1,0,1110,0,0,0 +11910,14602,26556,-9,-9,-9,3,1,0,21,2,0,0,1,2,0,7,2,0,3,0,4.573321040784562,4.200267434679496,3,0,0,0,-9,0,-941.5426730559477,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.821199827930879,0,0,0,25.65,57.07,5,1,0,0,5,1,0,1181,0,0,0 +11910,14603,26557,-9,-9,-9,4,1,0,21,2,0,0,1,2,0,7,2,0,5,7.356714151669453,7.444096825069933,0,3,0,0,0,-9,0,-1010.494751053465,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.07,55.46,1,1,0,0,5,2,0,121,0,0,0 +11911,14604,26558,26559,-9,-9,2,1,0,83,1,0,0,0,1,-9,4,3,0,3,0,7.380071881684692,6.755358481286069,1,0,-9,63,0,-6,121.4186743398252,0,0,0,89,1,3,3,2,1,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.864220380565184,7.102447251799885,122.1090230893374,1,59.7,53.75,6,1,0,0,4,5,1,831,0,0,0 +11911,14604,26559,26558,-9,-9,1,1,1,89,1,0,0,0,1,-9,4,3,0,3,0,8.383975936046864,8.425045827829909,1,0,-9,63,0,6,-78.12862773990388,0,0,0,83,1,3,3,3,2,2019,4,2,11,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.866934489405508,8.637690445133762,0,0,57.64,23.63,6,1,0,0,4,5,1,831,0,0,0 +11912,14605,26560,-9,26563,-9,4,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1156.116969269007,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,8,1,0,590.25,0,0,0 +11912,14605,26561,-9,26563,-9,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.195541939875,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,590.25,0,0,0 +11912,14605,26562,-9,26563,-9,2,1,1,12,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1039.780143022155,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,1,0,590.25,0,0,0 +11912,14605,26563,-9,-9,-9,1,1,0,35,3,1,3,0,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1057.800586393698,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.98,52.59,5,4,0,0,8,1,0,590.25,0,0,0 +11913,14606,26564,26565,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,6.52741977531007,6.371862420004419,1,0,-9,3,0,-2,38.63669465586734,0,0,0,75,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.414389874672016,6.828558288624019,0,0,57.16,56.15,6,1,0,0,7,2,1,908.5,0,0,0 +11913,14606,26565,26564,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,6.691034543022132,6.395157375477798,1,0,-9,3,0,2,-44.11845777140355,0,0,0,73,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.168407413925861,6.765203955082373,0,0,53.96,50.73,6,1,0,0,7,2,1,908.5,0,0,0 +11914,14607,26566,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,3,8.704834467676452,8.706454104993847,5.561921514191623,3,0,0,0,-9,0,-1162.4810596674,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,110,85,15,1,0,-9,0,4.906318734769073,4.906318734769073,0,0,0,0,0,0,0,1,1,0,0,6.066942735765123,0,0,46.97,53.06,5,1,0,0,12,5,1,387,0,0,0 +11915,14608,26567,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,4,9.404229649927217,9.276720040328664,0,3,0,-9,0,-9,0,-1137.148160052223,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,45,0,15,1,1,-9,0,26.34000222302181,26.34000222302181,0,0,0,0,0,0,0,0,0,0,6.317526764194565,0,0,0,44.02,60.7,3,1,0,0,8,5,0,1044,0,0,0 +11916,14609,26568,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,2,1,0,4,8.319648874332151,8.434250464916579,0,3,0,0,0,-9,0,-998.3969329859807,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,35,0,15,1,0,-9,0,13.22637094207773,13.22637094207773,0,0,0,0,0,0,0,1,1,0,5.687820971200702,0,0,0,48.53,58.91,5,1,0,0,12,4,1,1124,0,0,0 +11917,14610,26569,-9,26570,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1087.007934210662,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,10,2,0,585,0,0,0 +11917,14610,26570,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,6,3,0,4,0,4.326415928868989,4.457541156689023,4,0,0,0,-9,0,-1054.617000232094,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,4.608228392393385,0,0,0,30.83,62.98,3,1,0,1,10,2,0,585,0,0,0 +11917,14610,26571,-9,26570,-9,2,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1013.281488971821,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,10,2,0,585,0,0,0 +11918,14611,26572,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,2,0,7.484413897889421,7.531031061252647,3,0,0,0,-9,0,-926.8879947023769,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.171730675124778,7.558992619011509,0,0,57,32.35,5,4,0,0,8,3,1,1334,0,0,0 +11919,14612,26573,26574,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,6.99955505937902,7.392999021678322,1,0,-9,54,0,3,-55.02612219689288,0,0,0,72,3,4,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.74074505664864,7.695968517603659,0,0,61.97,37.54,2,1,0,0,10,2,1,895,0,0,0 +11919,14612,26574,26573,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.538173673495497,5.322233835477505,1,0,-9,54,0,-3,51.60234120998483,0,0,0,75,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.445961075014007,4.805320528494395,0,0,57.16,56.15,7,1,0,0,10,2,1,895,0,0,0 +11920,14613,26575,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,1,0,5.097428957023418,5.698184450150974,3,0,0,0,-9,0,-987.6866632950354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,1.076042989391975,0,0,0,0,47.50066950010307,1,1,0,0,5.525478556542573,0,0,43,19.91,5,1,0,0,1,2,0,2230,0,0,0 +11921,14614,26576,-9,26578,26580,3,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1058.845609526001,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,9,5,1,1102.6,0,0,0 +11921,14614,26577,-9,26578,26580,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.5424673222791,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,1102.6,0,0,0 +11921,14614,26578,26580,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,4,7.962404145515075,7.616137960664986,0,2,0,-9,14,0,-4,.3062583982286224,0,0,1,44,2,4,1,2,-9,2019,1,2,7,0,18,0,15,1,0,1,0,16.91362109619887,16.91362109619887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,7,1,0,0,9,5,1,1102.6,0,0,0 +11921,14614,26579,-9,26578,26580,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.1719864985109,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,1102.6,0,0,0 +11921,14614,26580,26578,-9,-9,2,1,1,44,1,0,3,0,2,-9,2,1,0,4,9.453735979721836,9.102584096289192,0,2,0,-9,8,0,4,67.42263219705352,0,0,0,40,1,4,1,-9,-9,2019,1,1,9,0,40,60,15,1,1,1,0,29.74053011874812,29.74053011874812,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,1,0,0,9,5,1,1102.6,0,0,0 +11922,14615,26581,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,7.394733950529646,7.172143038278787,3,0,0,0,-9,0,-1106.344796457056,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.800771580311065,7.187209887453477,6.675240551109376,3,33.77,37.71,3,1,0,0,11,3,1,692,0,0,0 +11923,14616,26582,-9,-9,-9,1,1,1,50,3,0,1,0,3,-9,1,1,0,3,5.912148922956367,6.341624908783627,0,4,0,0,0,-9,0,-996.0465842136556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,35,15,1,0,-9,0,1.235104722760817,1.235104722760817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,2,2,0,405,0,0,0 +11924,14617,26583,26584,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,2,7.788462239703539,7.724274118406144,0,1,0,-9,46,0,1,46.35988476029323,0,0,0,60,2,3,1,2,-9,2019,1,2,6,0,30,32,15,1,0,1,0,8.383959639611168,8.383959639611168,0,0,0,0,0,0,0,1,1,0,3.076716972013058,0,0,0,60.95,22.45,6,1,0,0,5,4,1,967,0,0,0 +11924,14617,26584,26583,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.799425920181151,7.740561839747841,0,1,0,-9,46,0,-1,-18.10165692018679,0,0,0,61,2,2,1,-9,-9,2019,1,1,12,0,25,25,15,1,0,1,0,9.070643976398358,9.070643976398358,0,0,0,0,0,0,0,1,1,0,4.114216679507681,0,0,0,48.24,53.66,6,1,0,0,5,4,1,967,0,0,0 +11925,14618,26585,26586,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,6.404584764752784,6.444536135899843,1,0,-9,6,0,3,.9816725273826152,0,0,0,66,2,3,3,2,2,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.530692542940354,6.462818186177095,3,58.37,33.26,5,1,0,0,10,2,1,885.5,0,0,0 +11925,14618,26586,26585,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.762588826028272,6.741005981022202,1,0,-9,6,0,-3,55.35641200466202,0,0,0,69,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.912352870844618,7.262087333445653,0,0,57.33,53.46,7,1,0,0,10,2,1,885.5,0,0,0 +11926,14619,26587,-9,26588,26590,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-969.8919058012158,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,10,5,1,219.75,0,0,0 +11926,14619,26588,26590,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,5,8.409833168353297,8.675397281862214,0,2,0,-9,20,0,0,-133.742713443434,0,0,0,47,1,4,1,3,2,2019,1,2,8,0,19,19,15,1,0,1,0,23.75985656194624,23.75985656194624,0,0,0,0,0,0,0,1,1,0,5.736710312991055,0,8.062962748605425,3,54.1,59.11,6,1,0,0,10,5,1,219.75,0,0,0 +11926,14619,26589,-9,26588,26590,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.2673208271201,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,219.75,0,0,0 +11926,14619,26590,26588,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.505871097656049,9.028400764888067,0,2,0,-9,19,0,0,-27.98881690353851,0,0,0,47,1,5,1,2,1,2019,1,1,18,7,41,40,15,1,7,1,0,18.06978600400023,18.06978600400023,0,0,0,0,0,0,0,1,1,0,4.812868391800209,0,0,3,40.96,61.14,5,1,0,0,10,5,1,219.75,0,0,0 +11927,14620,26591,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,2,1,0,4,7.553539598148972,7.374038524842041,0,3,0,0,0,-9,0,-967.5991266009337,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,41,40,15,1,6,-9,0,5.250905468662265,5.250905468662265,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.21,61.39,5,1,0,0,5,3,1,376,0,0,0 +11927,14621,26592,-9,-9,-9,2,1,0,83,3,0,0,0,1,-9,4,3,0,3,0,7.856400747245858,7.894575688287797,3,0,-9,0,-9,0,-1011.396173918964,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.3912337156693,8.001094326613226,0,0,54.37,54.8,7,1,0,0,5,3,1,1709,0,0,0 +11928,14622,26593,-9,26594,26595,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.843425137278,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,1380.666666666667,0,0,0 +11928,14622,26594,26595,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,3,8.05887859325399,7.829237558696322,0,2,0,-9,16,0,1,-73.24152362273195,0,0,1,38,2,5,1,2,2,2019,1,2,9,1,28,26,15,1,1,1,0,12.41581652735961,12.41581652735961,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.22,28.04,6,1,0,0,10,4,1,1380.666666666667,0,0,0 +11928,14622,26595,26594,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,5,8.403173378023906,8.561065790525085,0,2,0,-9,16,0,-1,54.01431119120519,0,0,0,39,2,3,1,2,2,2019,1,1,13,2,49,49,15,1,2,1,0,12.66699275919404,12.66699275919404,0,0,0,0,0,0,0,1,1,0,2.047582800432436,0,0,0,47.37,56.65,6,1,0,1,10,4,1,1380.666666666667,0,0,0 +11929,14623,26596,26598,-9,-9,2,1,1,52,1,0,1,0,1,-9,2,1,0,4,8.89204557833804,8.829514777062522,0,2,0,-9,28,0,2,52.21534179897656,0,0,0,50,1,4,1,2,2,2019,1,1,7,0,30,30,15,1,0,1,0,22.52342275522857,22.52342275522857,0,0,0,0,0,0,0,1,1,0,4.079534087804519,0,0,0,57.16,56.15,6,1,0,0,10,4,1,509.6666666666667,0,0,0 +11929,14623,26597,-9,26598,26596,3,1,0,16,2,0,1,1,2,-9,7,2,0,4,3.365922531966042,3.541168589540082,0,2,0,0,0,-9,0,-997.4803867144265,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,4,1,0,0,10,4,1,509.6666666666667,0,0,0 +11929,14623,26598,26596,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,4,6.326170132208486,5.787931061304643,0,2,0,-9,28,0,-2,20.88933428388751,0,0,0,52,1,4,1,2,1,2019,1,2,12,0,12,0,15,1,0,1,0,4.523830973864351,4.523830973864351,0,0,0,0,0,0,0,1,1,0,3.15768978023832,0,0,0,41.24,62.14,5,1,0,0,10,4,1,509.6666666666667,0,0,0 +11930,14624,26599,26600,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,4.366205194033631,4.188300361508643,1,0,-9,57,0,2,206.0529437293002,0,0,0,74,3,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.042344049894433,0,0,59.07,43.05,6,1,0,0,6,2,1,329.5,0,0,0 +11930,14624,26600,26599,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-2,58.3085525179761,0,0,0,76,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,7,1,0,0,6,2,1,329.5,0,0,0 +11931,14625,26601,26602,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,4,9.195834660336711,9.567561416587615,0,1,0,-9,15,0,0,2.364732301743421,0,0,0,38,1,4,1,1,1,2019,1,1,12,0,43,37,15,1,0,1,0,28.99624844035474,28.99624844035474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,2,5,1,2043,0,0,0 +11931,14625,26602,26601,-9,-9,1,1,0,38,1,0,0,0,1,-9,5,1,0,4,8.991539266061524,9.371349445081577,0,1,0,-9,15,0,0,-13.53800921506839,0,0,1,38,1,4,1,2,2,2019,1,2,8,2,50,51,15,1,2,1,0,23.11577855519206,23.11577855519206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.74,53.75,6,1,0,0,2,5,1,2043,0,0,0 +11932,14626,26603,26604,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,4,7.396753270541622,7.176117150568926,4.562090572960447,1,0,-9,8,0,-3,2.885428518767998,0,0,0,68,3,3,3,2,3,2019,2,2,8,0,37,35,15,1,0,4,0,6.724117872071867,6.724117872071867,0,0,0,0,0,0,0,1,1,0,4.763084835336386,4.182688161623988,0,0,57.16,56.15,6,1,0,0,10,2,1,421,0,0,0 +11932,14626,26604,26603,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,3,-59.14944500627069,0,0,0,65,2,4,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.12915471384353,0,9.202352754933402,3,51.17,49.39,6,1,0,0,10,2,1,421,0,0,0 +11933,14627,26605,-9,26606,26608,5,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.8968252064811,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,2,1,358.75,0,0,0 +11933,14627,26606,26608,-9,-9,2,1,0,44,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,27,0,-1,-25.03151031966527,0,0,1,45,2,4,1,2,-9,2019,3,1,17,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.654377412357161,0,119.7457595506055,3,46.76,49.9,4,1,0,1,13,2,1,358.75,0,0,0 +11933,14627,26607,-9,26606,26608,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.347238107641,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,1,358.75,0,0,0 +11933,14627,26608,26606,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,4,7.249430639334662,7.456382716823153,0,2,0,-9,27,0,1,114.2514768439041,0,0,0,44,2,3,3,-9,-9,2019,2,2,9,0,45,50,15,1,1,3,0,3.154587587802586,3.154587587802586,0,0,0,0,0,0,0,1,1,0,2.229139302543367,0,26.76746430406709,3,52,55,6,1,0,1,13,2,1,358.75,0,0,0 +11933,14628,26609,-9,26606,26608,3,1,1,25,2,0,2,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-973.4708758394343,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,13,1,1,562,0,0,0 +11934,14629,26610,26611,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,7,0,0,-64.75333596674665,0,0,0,58,1,4,1,-9,-9,2019,3,2,8,0,0,48,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.299537369195154,0,0,0,57.33,53.46,2,1,0,0,9,2,1,797.5,0,0,0 +11934,14629,26611,26610,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,7.013364497841705,7.156813026541609,0,1,0,-9,37,0,0,85.80511566138433,0,0,0,58,1,3,3,2,2,2019,2,1,11,1,17,20,15,1,1,4,0,7.758283818108158,7.758283818108158,0,0,0,0,0,0,0,0,0,0,2.600834153347621,0,0,0,45.01,57.46,6,1,0,0,9,2,1,797.5,0,0,0 +11935,14630,26612,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,4,0,6.744327773098779,7.194110164606799,3,0,0,0,-9,0,-857.1362866082117,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.405875127320722,7.036246520730317,0,0,59.74,45.34,2,1,0,0,4,2,1,145,0,0,0 +11936,14631,26613,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,2,9.328042045800693,9.179239800748457,0,3,0,0,0,-9,0,-1132.747298302048,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,82,84,15,1,0,-9,0,15.42855149585071,15.42855149585071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.08,45.41,3,1,0,0,12,5,1,187,0,0,0 +11937,14632,26614,26615,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.399082287683321,8.272145473332422,0,1,0,-9,6,0,-4,88.26009809961504,0,0,0,66,2,2,3,2,2,2019,2,2,6,0,56,50,15,1,0,4,0,10.12928650812565,10.12928650812565,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.81,43.57,7,1,0,0,13,4,1,364,0,0,0 +11937,14632,26615,26614,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,4,-74.31096168653096,0,0,0,62,2,3,1,-9,-9,2019,3,1,22,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,49.19,4,1,0,0,13,4,1,364,0,0,0 +11938,14633,26616,26617,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,32,0,-3,0,0,0,0,74,2,3,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.794630149886441,3,57.57,49.69,7,1,0,0,4,1,0,352,0,0,0 +11938,14633,26617,26616,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,32,0,3,0,0,0,0,71,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.044584239056775,3,50.56,31.68,7,1,0,0,4,1,0,352,0,0,0 +11939,14634,26618,26619,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,5,7.643437618748482,7.998132897265851,0,1,0,-9,5,0,-1,25.06715069619882,0,1,1,30,1,4,1,2,2,2019,1,1,7,0,42,40,15,1,0,1,0,5.549572702777438,5.549572702777438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,6,1,0,0,6,5,1,427,0,0,0 +11939,14634,26619,26618,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.851567958356011,8.368305697638764,0,1,0,-9,5,0,1,-.5319708812978223,0,0,0,29,2,5,1,2,2,2019,1,2,12,0,48,58,15,1,0,1,0,13.89925179265957,13.89925179265957,0,0,0,0,0,0,0,0,0,0,3.267644823950413,0,0,0,54.14,58.86,6,1,0,0,6,5,1,427,0,0,0 +11940,14635,26620,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,4,0,7.593230508502082,7.305692922656938,3,0,0,0,-9,0,-981.3955009705013,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.370008162926846,0,0,60.12,54.8,7,1,0,0,7,3,1,348,0,0,0 +11941,14636,26621,-9,26623,26624,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.4418222734711,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,0,1984.5,0,0,0 +11941,14636,26622,-9,26623,26624,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1145.11814866412,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,0,1984.5,0,0,0 +11941,14636,26623,26624,-9,-9,1,1,0,41,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,16,0,5,-10.94195615800226,0,0,1,36,2,5,3,3,-9,2019,4,2,3,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.6472257234873,3,52,57,7,1,0,0,6,3,0,1984.5,0,0,0 +11941,14636,26624,26623,-9,-9,2,1,1,36,1,0,3,0,2,-9,3,3,0,5,8.128020148106589,8.241261884956051,0,2,0,-9,18,0,-5,63.82581270153901,0,0,0,41,2,5,3,-9,3,2019,4,1,9,0,40,34,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,1,0,6,3,0,1984.5,0,0,0 +11942,14637,26625,-9,-9,-9,1,1,0,23,2,0,0,0,2,1,1,1,0,4,8.362472028003616,8.442844270593117,0,3,0,0,0,-9,0,-969.4552016470733,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,20,0,15,1,0,-9,0,16.86940866474356,16.86940866474356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,5,1,0,0,8,4,0,382,0,0,0 +11943,14638,26626,26627,-9,-9,2,1,0,30,1,0,0,0,2,-9,1,1,0,4,9.536412350680044,9.65647623997781,0,1,0,-9,3,0,0,-22.90860242658632,0,0,1,30,3,4,1,-9,-9,2019,1,1,6,0,40,41,15,1,0,1,0,48.25296126132128,48.25296126132128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,0,665,0,0,0 +11943,14638,26627,26626,-9,-9,1,1,1,30,1,0,0,0,3,-9,2,1,0,4,8.03026833630409,8.466078123060045,0,1,0,-9,3,0,0,146.0336994178421,0,0,0,30,2,4,1,2,2,2019,1,2,7,0,40,43,15,1,0,1,0,12.58632451793392,12.58632451793392,0,0,0,0,0,0,0,0,0,0,.8016068758446452,0,0,0,57.16,56.15,6,1,0,0,6,5,0,665,0,0,0 +11944,14639,26628,-9,-9,-9,1,1,0,45,3,0,0,0,1,-9,2,1,0,3,8.582552323294042,8.783041996101788,0,3,0,0,0,-9,0,-838.6077852134979,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,37,15,1,1,-9,0,19.43653402545879,19.43653402545879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.14,56.45,5,1,0,0,9,5,1,317,0,0,0 +11945,14640,26629,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,4,6.664580394338184,7.57801849078098,6.574713298780815,3,0,0,0,-9,0,-1109.38355369477,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,10,0,15,1,0,-9,0,9.22421022064265,9.22421022064265,0,0,0,0,0,0,0,1,1,0,0,6.394247093112258,16.42936890480384,3,48.81,59.91,7,1,0,0,12,3,1,653,0,0,0 +11946,14641,26630,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,2,0,5.518902198589696,5.471401105329626,3,0,0,0,-9,0,-927.1078408823848,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.108495938471431,5.686416799697189,32.00184314899114,3,42.9,21.15,1,1,0,0,9,2,1,705,0,0,0 +11947,14642,26631,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,4,8.593281609029429,8.523564421939879,0,3,0,0,0,-9,0,-1020.77831159799,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,10,0,38,41,15,1,0,-9,0,14.67152411151709,14.67152411151709,0,0,0,0,0,0,0,0,0,0,3.89204922603377,0,0,0,49.52,55.68,7,1,0,0,12,5,1,597,0,0,0 +11948,14643,26632,26633,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,5.765834815352476,5.143873405524053,1,0,-9,48,0,0,-62.15834398431282,0,0,0,72,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.988381187429115,5.734991797377205,0,0,56.61,49.68,4,1,0,0,10,4,1,274,0,0,0 +11948,14643,26633,26632,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.548984573003278,8.463987594026758,1,0,-9,48,0,0,-75.37109537889299,0,0,0,72,2,3,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.803018012162996,8.484652665533915,0,0,43.48,60.97,6,1,0,0,10,4,1,274,0,0,0 +11949,14644,26634,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-890.8073329164336,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,36.2,25.69,7,1,0,0,9,1,0,1224,0,0,0 +11950,14645,26635,26636,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,6.625321146759957,6.679253440046314,1,0,-9,7,0,0,17.15363474175343,0,0,0,72,3,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.973791841787424,0,0,66.61,34.59,6,1,0,0,13,2,1,615,0,0,0 +11950,14645,26636,26635,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,4.141920694779007,4.48280479369325,1,0,-9,7,0,0,-87.1556022925725,0,0,0,72,3,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,4.883642808838076,0,0,0,0,1,1,0,0,4.184529467421537,0,0,50.98,33.55,6,1,0,0,13,2,1,615,0,0,0 +11951,14646,26637,-9,26639,26638,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.824144992175,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,819,0,0,0 +11951,14646,26638,26639,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.238791005001701,7.770559393577596,0,2,0,-9,8,0,5,0,0,0,0,31,2,3,1,-9,-9,2019,1,1,28,12,37,8,15,1,12,1,0,14.78498479392701,14.78498479392701,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.71,64.88,2,1,0,1,9,4,1,819,0,0,0 +11951,14646,26639,26638,-9,-9,1,1,0,31,1,0,1,0,2,-9,2,1,0,3,8.210918330584713,8.247127527663659,0,2,0,-9,8,0,-5,0,0,0,1,36,2,4,1,2,2,2019,1,2,21,9,41,45,15,1,9,1,0,9.033518189636492,9.033518189636492,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,53.56,3,1,0,0,9,4,1,819,0,0,0 +11952,14647,26640,26642,-9,-9,2,1,1,29,1,0,1,0,2,-9,2,1,0,3,8.3274783383763,8.53426783045161,0,2,0,-9,7,0,1,-69.48755616734428,0,1,0,28,1,3,1,-9,-9,2019,1,1,10,1,82,45,15,1,1,1,0,4.802366435873015,4.802366435873015,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,5,1,0,0,9,5,0,533,0,0,0 +11952,14647,26641,-9,26642,26640,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.7416706001126,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,0,533,0,0,0 +11952,14647,26642,26640,-9,-9,1,1,0,28,1,0,1,0,1,-9,2,1,0,3,8.591353143953103,8.65608015648791,0,2,0,-9,7,0,-1,-111.622898989556,0,1,1,29,2,3,1,2,2,2019,1,2,9,0,60,56,15,1,0,1,0,9.211836284654872,9.211836284654872,0,0,0,0,0,0,0,1,1,0,0,0,13.30623392881507,3,54.37,54.8,6,1,0,0,9,5,0,533,0,0,0 +11953,14648,26643,26644,-9,-9,2,1,1,26,1,0,0,0,2,-9,2,1,0,4,8.332112511351685,8.183579059301756,0,1,0,-9,5,0,-5,-11.80582211572235,0,1,0,31,1,5,1,-9,-9,2019,1,1,11,0,45,43,15,1,0,1,0,7.932457900041632,7.932457900041632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.9,53.24,6,1,0,0,9,4,0,426.5,0,0,0 +11953,14648,26644,26643,-9,-9,1,1,0,31,1,0,0,0,1,-9,1,1,0,5,5.2099404045195,5.321059200446162,0,1,0,-9,5,0,5,-112.1757745888713,0,0,1,26,2,4,1,1,2,2019,1,2,8,0,34,28,15,1,0,1,0,.7377043442871735,.7377043442871735,0,0,0,0,0,0,0,0,0,0,7.503709561878466,0,0,0,54.1,59.11,6,1,0,0,9,4,0,426.5,0,0,0 +11954,14649,26645,26646,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,4,8.288155844109566,8.120913715496108,0,1,0,-9,9,0,9,-139.39485796339,0,0,0,50,2,2,1,3,2,2019,1,2,11,0,12,14,15,1,0,1,0,32.02899438586388,32.02899438586388,0,0,0,0,0,0,0,0,0,0,1.860548341767043,0,6.227106058812518,3,55.32,47.24,7,1,0,0,12,4,1,321.5,0,0,0 +11954,14649,26646,26645,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,2,8.113826408293098,7.849698753256586,0,1,0,-9,9,0,0,-2.083253890818102,0,0,0,59,2,4,1,-9,-9,2019,1,1,28,11,44,35,15,1,11,1,0,6.44614562242498,6.44614562242498,0,0,0,0,0,0,0,0,0,0,3.678410740565752,0,0,0,28.73,39.77,3,1,0,0,12,4,1,321.5,0,0,0 +11955,14650,26647,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,3,0,7.267001770933684,6.881000521545868,3,0,0,0,-9,0,-1070.58571007625,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.423105206520456,0,0,51,48,5,4,0,0,6,2,1,3421,0,0,0 +11956,14651,26648,26649,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,8.002577819782715,7.743547591148529,1,0,-9,55,0,2,-112.7508089014598,0,0,0,74,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.59150969055097,7.442614553628009,0,0,60.12,54.8,6,1,0,0,10,3,1,1755,0,0,0 +11956,14651,26649,26648,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,5.471016948425369,5.341645052355799,1,0,-9,55,0,-2,38.73975242216628,0,0,0,76,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,6.347945728594466,0,0,0,0,1,1,0,3.264708136036381,5.438578565042524,0,0,60.47,41.03,7,1,0,0,10,3,1,1755,0,0,0 +11957,14652,26650,26651,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.752025786477617,6.629677924367686,1,0,-9,10,0,6,86.46737799917273,0,0,0,65,2,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.013478156003374,6.692254615321365,0,0,49.08,32.79,6,1,0,0,11,3,1,1272,0,0,0 +11957,14652,26651,26650,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,7.25931492524726,7.173547590468837,1,0,-9,10,0,-6,-56.67507979831254,0,0,0,71,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.971764642347843,0,0,57.9,51.84,5,1,0,0,11,3,1,1272,0,0,0 +11958,14653,26652,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1042.554618132033,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,3,1,1,1,13,1,0,502,0,0,0 +11959,14654,26653,26654,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,5.18463076487766,4.852797562327081,1,0,-9,51,0,1,-15.80107557775883,0,0,0,70,3,3,3,3,2,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.669911773305075,0,0,46.14,51.88,6,1,0,0,13,2,1,3598.5,0,0,0 +11959,14654,26654,26653,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,7.454303390160552,7.763713140946926,1,0,-9,51,0,-1,-138.2614505659018,0,0,0,71,3,3,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.327579550777022,0,0,56.7,42.76,6,1,0,0,13,2,1,3598.5,0,0,0 +11960,14655,26655,-9,26656,26658,2,1,0,18,2,0,1,1,2,-9,7,2,0,4,6.678782830676521,6.787350081291228,0,3,0,-9,0,-9,0,-1069.665164793258,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,12,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,57.81,5,1,0,0,9,2,0,1810,0,0,0 +11960,14656,26656,26658,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,3,7.079360602473266,6.94535733067674,0,2,0,-9,1,-9,-1,79.94272213654719,-9,0,1,43,2,2,1,3,3,2019,1,4,12,2,16,0,15,1,2,1,0,7.955740560474845,7.955740560474845,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.84,55.68,4,2,0,0,9,3,0,935.6666666666666,0,0,0 +11960,14656,26657,-9,26656,26658,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1049.965991529982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,3,0,935.6666666666666,0,0,0 +11960,14656,26658,26656,-9,-9,4,1,1,43,1,0,1,0,2,-9,2,1,0,2,7.800717024232077,7.824987189452377,0,2,0,-9,1,-9,1,63.43376214322183,-9,0,0,42,2,3,1,-9,-9,2019,1,1,10,1,37,0,15,1,1,1,0,8.885778890791443,8.885778890791443,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.5,47.75,6,1,0,0,9,3,0,935.6666666666666,0,0,0 +11961,14657,26659,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,3,0,6.729098070160059,7.324810868716953,3,0,0,0,-9,0,-1020.744960341733,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,44.84737727282045,0,126.3999606701027,0,0,406.7647308000769,1,0,1,1.131628981182758,7.149959430694219,0,0,54,45,6,1,0,0,4,2,1,552,0,0,0 +11961,14658,26660,-9,-9,26659,2,1,0,57,3,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,-9,0,-9,0,-922.1599361532108,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,24,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,116.5252241026054,3,30.48,43.04,1,1,0,1,4,1,1,144,0,0,0 +11962,14659,26661,26662,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.149515249936534,5.954452523574184,1,0,-9,49,0,5,-8.495066349671903,0,0,0,68,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.403237244453852,6.254907550141779,0,0,55.96,49.93,7,1,0,0,2,2,1,1685.5,0,0,0 +11962,14659,26662,26661,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.982651096394726,6.311192085229393,1,0,-9,51,0,-5,112.6614967607031,0,0,0,73,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.417349088073055,6.183020786010645,0,0,63.02,35.77,6,1,0,0,2,2,1,1685.5,0,0,0 +11963,14660,26663,26664,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,8.034498507988324,8.19771023794808,1,0,-9,9,0,2,-35.76897559768794,0,0,0,63,2,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.006237396443809,8.118144387502756,0,0,58.32,50.22,4,1,0,0,12,5,1,434.5,0,0,0 +11963,14660,26664,26663,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,2,0,8.499753219170833,8.429110134828885,1,0,-9,9,0,-2,13.80181494875359,0,0,0,65,1,3,3,3,3,2019,4,1,7,0,0,50,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.501737618537732,0,0,45.73,36.31,4,1,0,0,12,5,1,434.5,0,0,0 +11964,14661,26665,26666,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.477265519944,6.678191052914113,1,0,-9,41,0,7,-78.18838566734949,0,0,0,66,1,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.071835362048184,6.593554225441073,0,0,58.56,41.85,7,1,0,0,5,3,1,349.5,0,0,0 +11964,14661,26666,26665,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,7.152012967692662,7.203730587482444,1,0,-9,42,0,-7,-15.88272561634444,0,0,0,73,2,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.671244279459375,7.223852689265514,0,0,54.2,57.49,6,1,0,0,5,3,1,349.5,0,0,0 +11965,14662,26667,-9,-9,-9,1,1,1,32,3,0,0,0,2,-9,2,1,0,4,8.576452988074932,8.341317605427063,0,3,0,-9,0,1,0,-944.9431786634109,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,45,0,15,1,0,-9,0,13.28704534243518,13.28704534243518,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,5,1,0,0,4,5,0,65,0,0,0 +11966,14663,26668,26669,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,9.032915811140409,8.859035210641778,0,1,0,-9,8,0,-4,-127.8971753650518,0,0,0,61,1,2,1,2,2,2019,1,1,6,0,52,45,15,1,0,1,0,16.75454022031549,16.75454022031549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.19,51.24,6,1,0,0,2,5,1,218,0,0,0 +11966,14663,26669,26668,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,2,0,7.392794709473762,6.918947424209192,1,0,-9,8,0,4,-13.61054946751764,0,0,0,57,2,3,1,3,3,2019,1,2,5,0,0,20,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.199986169795177,0,0,64.09,31.6,5,1,0,0,2,5,1,218,0,0,0 +11967,14664,26670,26672,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,3,8.959800318402749,9.038082636085095,0,2,0,-9,22,0,-3,14.34578353156009,0,0,0,50,1,2,1,3,3,2019,1,1,1,0,38,45,15,1,0,1,0,21.25504193921488,21.25504193921488,0,0,0,0,0,0,0,1,1,0,.9266515480488083,0,0,0,50.97,44.22,6,1,0,0,6,5,1,2695.666666666667,0,0,0 +11967,14664,26671,-9,26672,26670,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1120.977145313403,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,5,1,2695.666666666667,0,0,0 +11967,14664,26672,26670,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,2,7.995156980283816,7.958867668107745,0,2,0,-9,22,0,3,17.7737825258024,0,0,0,47,1,3,1,3,3,2019,1,2,15,4,30,45,15,1,4,1,0,12.15486294585951,12.15486294585951,0,0,0,0,0,0,0,1,1,0,2.018807654570208,0,6.771594696738958,3,45.87,42.84,2,1,0,0,6,5,1,2695.666666666667,0,0,0 +11967,14665,26673,-9,26672,26670,3,1,0,18,2,0,1,1,2,0,7,2,0,4,6.374402675397723,6.32088765750315,0,3,0,0,0,-9,0,-952.5303208253098,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,15,4,10,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,6,1,0,0,6,2,1,684,0,0,0 +11968,14666,26674,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,6.979524103479988,6.805258781473918,3,0,0,0,-9,0,-1057.749508175369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.230712399483293,0,3.837306827460954,0,1,1,0,4.285659525183383,6.761331327836526,0,0,55.9,19.3,6,1,0,0,4,2,1,233,0,0,0 +11969,14667,26675,-9,-9,-9,1,1,1,53,3,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1035.974165898396,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.79,25.03,3,1,0,0,11,1,1,510,0,0,0 +11969,14668,26676,-9,-9,26675,2,1,0,18,2,0,1,1,2,0,7,2,0,3,6.324793133706321,6.622394608668752,0,3,0,0,0,-9,0,-842.1264382894344,-9,1,1,-9,-9,-9,-9,-9,3,2019,-9,0,14,4,24,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.99965889618763,3,34.63,58.23,6,1,0,0,11,1,1,847,0,0,0 +11970,14669,26677,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-937.5705235325075,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,5,1,0,0,11,1,0,995,0,0,0 +11971,14670,26678,26679,-9,-9,2,1,1,38,1,1,1,0,2,-9,1,1,0,3,3.765318293088439,3.864259845159562,0,2,0,-9,10,0,7,-26.60264987689873,0,0,0,31,2,3,1,3,3,2019,1,1,6,0,25,25,15,1,0,1,0,.1093511879964149,.1093511879964149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.27,49.64,4,1,0,0,11,2,0,985,0,0,0 +11971,14670,26679,26678,-9,-9,1,1,0,31,1,1,1,0,2,-9,2,1,0,3,6.994545918460177,6.909279338896677,0,2,0,-9,10,0,-7,7.458926045599182,0,0,1,38,2,3,1,3,3,2019,1,2,10,0,16,19,15,1,0,1,0,9.435703119841264,9.435703119841264,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,49.9,4,1,0,0,11,2,0,985,0,0,0 +11971,14670,26680,-9,26679,26678,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.7782110049,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,11,2,0,985,0,0,0 +11972,14671,26681,26682,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,4,7.744787207621865,8.188703748316117,0,1,0,-9,7,0,2,-22.84444377674517,0,0,0,52,2,4,3,-9,-9,2019,2,1,9,0,16,32,15,1,1,3,0,16.85929773056961,16.85929773056961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,10,3,1,559,0,0,0 +11972,14671,26682,26681,-9,-9,1,1,0,52,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,34,0,-2,66.42091964381636,0,0,0,54,2,4,1,2,2,2019,3,2,20,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.729114319266937,0,27.26829436699697,3,43.42,62.33,6,1,0,0,10,3,1,559,0,0,0 +11972,14672,26683,-9,26682,26681,3,1,1,22,2,0,0,0,2,-9,1,1,0,2,8.65448864645087,8.227556630792012,0,3,0,0,0,-9,0,-1073.79953788816,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,32,15,1,0,-9,1,13.08228392902704,13.08228392902704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.98,47.84,6,1,0,0,10,5,1,591,0,0,0 +11973,14673,26684,-9,-9,-9,2,1,1,42,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1115.331015705402,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.98,52.47,3,1,0,1,11,1,0,506,0,0,0 +11973,14674,26685,-9,-9,26684,1,1,0,24,3,0,0,0,2,-9,2,1,0,4,7.52475382530782,7.575120246318622,0,3,0,0,0,-9,0,-1095.712309814505,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,10,1,50,19,15,1,1,-9,1,4.508086429964183,4.508086429964183,0,0,0,0,0,0,0,1,1,0,0,0,45.0205120701663,3,44.53,56.37,5,1,0,0,11,3,0,849,0,0,0 +11974,14675,26686,26687,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,3,8.575408997292225,8.542135000402636,0,1,0,-9,36,0,1,132.1419277813914,0,0,0,53,2,5,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,12.43448486330152,12.43448486330152,0,0,0,0,0,0,0,0,0,0,3.898392860524753,0,0,0,58.08,43.46,6,1,0,0,7,5,1,2778.5,0,0,0 +11974,14675,26687,26686,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,8.578671043885009,8.615169792215815,0,1,0,-9,36,0,-1,37.56617589562809,0,0,0,54,3,3,1,3,1,2019,1,2,20,8,57,50,15,1,8,1,0,10.26600993067554,10.26600993067554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,60.31,5,2,0,0,7,5,1,2778.5,0,0,0 +11975,14676,26688,26689,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,6.937504054602221,7.109372826569042,1,0,-9,14,0,5,98.31438514441471,0,0,0,60,2,3,3,2,2,2019,4,2,6,0,0,35,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.393818252143288,7.183334493704189,0,0,54.79,55.86,6,1,0,0,12,2,1,2687,0,0,0 +11975,14676,26689,26688,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,5.387957512820062,4.945787103954066,1,0,-9,16,0,-5,31.53467667328572,0,0,0,65,1,4,3,2,-9,2019,4,1,12,3,0,16,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.637561442584661,5.22750570352009,0,0,50.74,51,6,1,0,0,12,2,1,2687,0,0,0 +11976,14677,26690,26691,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,2,7.374885635433655,7.626593454082959,5.344247179695112,1,0,1,36,-9,-6,22.83705644741817,0,0,0,66,2,3,3,2,2,2019,2,1,9,0,24,24,15,1,0,4,0,6.349635626394242,6.349635626394242,0,0,0,0,0,0,0,1,1,0,0,5.563033820372166,10.30531414849268,2,58.75,29.84,5,1,0,0,13,3,1,967.5,0,0,0 +11976,14677,26691,26690,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,7.896270578819657,7.403673508870056,1,0,1,1,-9,6,54.06302947352778,0,0,0,60,2,2,1,-9,-9,2019,3,2,10,0,0,39,15,4,1,1,0,0,0,1,0,12.08496926093388,0,0,0,0,1,1,0,0,7.48651200485864,0,0,52,48,5,1,0,0,13,3,1,967.5,0,0,0 +11977,14678,26692,-9,26693,-9,4,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1052.250672881028,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,3,0,0,2,2,0,248.3333333333333,0,0,0 +11977,14678,26693,-9,-9,-9,1,1,0,49,3,0,2,0,2,-9,2,1,0,3,7.548163035064081,7.722361241502201,0,4,0,0,0,-9,0,-1003.587229117941,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,33,33,15,1,0,-9,0,8.648585149379644,8.648585149379644,0,0,0,0,0,0,0,1,1,0,0,0,11.6608956580146,3,34.21,51.94,3,3,0,0,2,2,0,248.3333333333333,0,0,0 +11977,14678,26694,-9,26693,-9,5,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1055.955649627767,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,2,2,0,248.3333333333333,0,0,0 +11978,14679,26695,-9,26697,26696,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.510047080597,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,1,343.5,0,0,0 +11978,14679,26696,26697,-9,-9,2,1,1,42,1,0,2,0,2,-9,1,1,0,3,7.429888171373568,6.923922127822844,0,2,0,-9,18,0,1,-131.4368854035363,0,0,0,41,2,5,1,2,2,2019,1,1,9,0,40,40,15,1,0,1,0,3.948629497085475,3.948629497085475,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,6,1,0,0,4,3,1,343.5,0,0,0 +11978,14679,26697,26696,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,5,8.581446113121617,8.509805933333402,0,2,0,-9,16,0,-1,44.919842827356,0,0,1,42,2,3,1,2,2,2019,1,2,12,0,32,35,15,1,0,1,0,14.99252419485269,14.99252419485269,0,0,0,0,0,0,0,1,1,0,7.217496495049381,0,0,0,54.1,59.11,6,1,0,0,4,3,1,343.5,0,0,0 +11978,14679,26698,-9,26697,26696,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.3956781873346,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,343.5,0,0,0 +11979,14680,26699,26701,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,3,8.770810500223096,8.224011465369296,0,2,0,-9,9,0,1,-114.7629268585383,0,0,1,36,2,3,1,-9,-9,2019,1,1,9,2,37,37,15,1,2,1,0,12.22859191637598,12.22859191637598,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,6,1,0,0,7,5,1,1159.333333333333,0,0,0 +11979,14680,26700,-9,26699,26701,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.777671452208,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,7,5,1,1159.333333333333,0,0,0 +11979,14680,26701,26699,-9,-9,1,1,1,36,1,1,1,0,2,-9,2,1,0,3,8.729654930454208,9.039045556219049,0,2,0,-9,9,0,-1,-40.30928581221013,0,0,0,37,1,3,1,2,2,2019,1,2,18,6,44,55,15,1,6,1,0,16.5978552473274,16.5978552473274,0,0,0,0,0,0,0,1,1,0,7.801292326932836,0,0,0,47.32,33.19,3,1,0,0,7,5,1,1159.333333333333,0,0,0 +11980,14681,26702,26703,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,2,8.31436486000608,8.143676084344033,0,1,0,-9,1,-9,0,-68.71096056017078,-9,0,0,49,3,5,1,3,3,2019,1,1,12,0,37,0,15,1,0,1,0,10.89577239393042,10.89577239393042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.78,41.87,5,1,0,0,11,5,0,511.5,0,0,0 +11980,14681,26703,26702,-9,-9,1,1,1,49,1,0,0,0,3,-9,2,1,0,5,8.106763745539707,8.069714357300382,0,1,0,-9,1,-9,0,27.1503989973907,-9,0,0,49,2,2,1,3,3,2019,1,2,6,0,38,0,15,1,0,1,0,11.2551538771484,11.2551538771484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,2,1,0,0,11,5,0,511.5,0,0,0 +11981,14682,26704,26705,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,6.126000408889402,6.263791287749634,1,0,-9,46,0,-2,-104.7221084594828,0,0,0,74,2,3,3,3,2,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.402042282482229,4.830928683728701,0,0,44.75,56.39,6,1,0,0,10,4,1,689,0,0,0 +11981,14682,26705,26704,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.937353731922741,8.394626687682932,1,0,-9,46,0,2,-63.28989149444121,0,0,0,72,2,3,3,2,1,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.629365315939499,8.204366444547569,0,0,55.36,51.57,6,1,0,0,10,4,1,689,0,0,0 +11982,14683,26706,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,3,9.329583195515239,9.90079271100247,6.554843839923049,3,0,0,0,-9,0,-993.523978782701,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,45,40,15,1,2,-9,0,35.65544000283774,35.65544000283774,0,0,0,0,0,0,0,1,1,0,2.968776374617263,7.011376846602599,0,0,49,48,5,1,0,0,7,5,1,320,0,0,0 +11983,14684,26707,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,7.377520319427383,7.165958363349989,0,3,0,0,0,-9,0,-954.5528605036659,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,10,10,15,1,2,-9,0,14.08019029331374,14.08019029331374,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.1,57.79,1,1,0,1,6,3,0,1528,0,0,0 +11983,14685,26708,-9,26707,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,5.703032703435858,5.852250703986286,0,3,0,0,0,-9,0,-1033.563708179712,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,37,0,15,1,0,-9,1,.9178361589122381,.9178361589122381,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.89,55.9,6,1,0,0,6,2,0,562,0,0,0 +11984,14686,26709,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,6.118008642114456,7.259125965492084,7.02235284599807,3,0,0,0,-9,0,-996.1114485160009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,9,9,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.657239122962981,6.837174503458171,0,0,56.92,46.68,5,1,0,0,11,3,1,218,0,0,0 +11985,14687,26710,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,4,8.294755420257793,8.260233033089287,0,3,0,0,0,-9,0,-1082.87219318737,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,6,0,15,1,5,-9,0,77.38686056793388,77.38686056793388,0,0,0,0,0,0,0,0,0,0,0,0,0,3,45.56,60.26,5,1,0,0,6,4,1,101,0,0,0 +11986,14688,26711,26712,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,6.838591037478722,6.867911952890979,1,0,-9,29,0,0,-64.39565986352932,0,0,0,62,1,5,3,3,3,2019,4,2,6,0,0,37,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.728236109556711,6.379259562324662,0,0,61.27,46.03,6,1,0,0,1,3,1,963,0,0,0 +11986,14688,26712,26711,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,5,0,7.483821904014047,7.378854065694862,1,0,-9,29,0,0,93.39579988613113,0,0,0,62,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.37135881555616,7.433381344230747,0,0,57.06,57.76,6,1,0,0,1,3,1,963,0,0,0 +11987,14689,26713,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,2,8.008934084719201,8.186922849420194,0,3,0,0,0,-9,0,-1144.443387853936,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,38,40,15,1,2,-9,0,9.38291399183535,9.38291399183535,0,0,0,0,0,0,0,0,0,0,2.526883815785629,0,2.193959577550144,3,34.3,48.18,3,1,0,0,4,4,1,734,0,0,0 +11988,14690,26714,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1045.403595753539,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,30.9,5,1,0,0,6,1,1,1283,0,0,0 +11989,14691,26715,26717,-9,-9,2,1,1,63,1,0,1,0,3,-9,1,1,0,4,6.887522442830199,6.772725399361448,0,2,0,-9,6,0,22,20.46349660347103,0,0,0,41,3,2,1,-9,-9,2019,1,1,15,3,56,65,15,1,3,1,0,1.875675358919182,1.875675358919182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.24,55.78,5,1,0,0,6,2,0,648.3333333333334,0,0,0 +11989,14691,26716,-9,26717,26715,3,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-861.4084470352832,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,5,3,0,0,6,2,0,648.3333333333334,0,0,0 +11989,14691,26717,26715,-9,-9,1,1,0,41,1,0,1,0,3,-9,2,1,0,2,5.709582335306733,5.869485293490973,0,2,0,-9,10,0,-22,-25.59212660256486,0,0,1,63,3,4,1,3,3,2019,1,2,10,2,15,0,15,1,2,1,0,3.407565517138707,3.407565517138707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,38.4,2,3,0,0,6,2,0,648.3333333333334,0,0,0 +11990,14692,26718,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,2,0,9.019274358381413,8.83435605997494,3,0,0,0,-9,0,-1003.707332258419,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,.4522510795367394,0,0,0,0,68.74347165126792,1,1,0,8.439047822963813,9.316406121884979,11.85044288839634,3,45.9,41.36,6,1,0,0,11,5,1,932,0,0,0 +11991,14693,26719,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-949.5032680231378,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.009142800748721,0,3.260030243027586,3,53.32,53.95,7,1,0,0,5,1,0,358,0,0,0 +11992,14694,26720,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1092.285076403997,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.62,27.7,4,1,0,1,13,1,0,651,0,0,0 +11993,14695,26721,-9,26724,26722,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-840.6904059218548,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,1,633.5,0,0,0 +11993,14695,26722,26724,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,2,8.871089795715154,8.605006312086667,0,2,0,-9,7,-9,7,-41.77982103506309,-9,0,0,38,2,1,3,2,3,2019,2,1,16,4,93,0,15,1,4,3,0,10.27094934722732,10.27094934722732,0,0,0,0,0,0,0,1,1,0,7.086722052585485,0,0,0,26.37,54.61,5,1,0,0,11,4,1,633.5,0,0,0 +11993,14695,26723,-9,26724,26722,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-892.9716532164971,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,633.5,0,0,0 +11993,14695,26724,26722,-9,-9,1,1,0,38,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,7,-9,-7,-131.0095086198467,-9,0,1,45,1,2,1,2,2,2019,3,2,28,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.700997136681597,0,0,0,18.66,51.58,6,1,0,0,11,4,1,633.5,0,0,0 +11994,14696,26725,26726,-9,-9,1,1,0,55,1,0,0,0,2,-9,1,1,0,4,8.843876187167972,9.08167290736132,0,1,0,-9,31,0,-2,42.29825948673685,0,0,0,57,2,3,1,-9,-9,2019,1,2,7,0,37,38,15,1,0,1,0,26.18750247021158,26.18750247021158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,12,5,1,723,0,0,0 +11994,14696,26726,26725,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,9.299461749238327,9.177586987378222,0,1,0,-9,31,0,2,15.79037795665474,0,0,0,55,2,4,1,2,2,2019,1,1,12,0,70,84,15,1,0,1,0,14.94124162330103,14.94124162330103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,6,1,0,0,12,5,1,723,0,0,0 +11995,14697,26727,-9,26728,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1169.897306099906,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,7,2,1,1108,0,0,0 +11995,14697,26728,-9,-9,-9,1,1,0,51,2,0,1,0,1,-9,1,1,0,2,7.165799841446142,7.298493674091073,0,4,0,0,0,-9,0,-981.9079207373611,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,16,20,15,1,4,-9,0,7.235600862379976,7.235600862379976,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.65,47.45,5,4,0,0,7,2,1,1108,0,0,0 +11995,14698,26729,-9,26728,-9,3,1,1,21,2,0,1,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-901.1387971970113,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.512142799046959,3,41.07,60.93,6,4,0,0,7,1,1,468,0,0,0 +11996,14699,26730,26731,-9,-9,2,1,1,53,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,6,0,-3,127.7990363061924,0,0,0,56,2,1,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.68622920488979,0,117.8787001673548,1,43.65,29.45,4,1,0,0,1,2,1,1588,0,0,0 +11996,14699,26731,26730,-9,-9,1,1,0,56,1,0,0,0,2,-9,8,3,1,1,0,6.610520009821608,6.182157650132072,1,0,-9,6,0,3,16.78799965698317,0,0,0,53,3,2,3,3,3,2019,4,2,11,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.893443107376334,130.6493403271804,1,26.53,42.77,1,1,0,0,1,2,1,1588,0,0,0 +11997,14700,26732,26733,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.240554977456668,8.421718985329083,0,1,0,-9,2,0,4,49.5198631897541,0,1,0,23,2,2,1,-9,-9,2019,1,1,3,0,40,50,15,1,0,1,0,14.1106564809733,14.1106564809733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,6,1,0,0,7,5,0,1074,0,0,0 +11997,14700,26733,26732,-9,-9,1,1,0,23,1,0,0,0,2,-9,2,1,0,2,7.664053680863267,8.290712301591112,0,1,0,-9,2,0,-4,-42.86765742405573,0,1,1,27,2,4,1,2,2,2019,1,2,11,3,50,7,15,1,3,1,0,5.396260877464913,5.396260877464913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,32.26,5,1,0,0,7,5,0,1074,0,0,0 +11998,14701,26734,26737,-9,-9,1,1,0,44,1,0,2,0,3,-9,2,1,0,4,7.67661223782494,7.291172428501671,0,2,0,-9,15,0,-15,-87.04617618879639,0,0,1,59,2,4,1,2,3,2019,1,2,12,1,26,22,15,1,1,1,0,9.706823658517429,9.706823658517429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.83,6,1,0,0,10,4,1,937.5,0,0,0 +11998,14701,26735,-9,26734,26737,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.0357416744298,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,937.5,0,0,0 +11998,14701,26736,-9,26734,26737,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.0255222026225,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,4,1,937.5,0,0,0 +11998,14701,26737,26734,-9,-9,2,1,1,59,1,0,2,0,2,-9,2,1,0,4,8.866879492583394,8.894061223948773,0,2,0,-9,15,0,15,34.77130431439938,0,0,0,44,3,4,1,1,1,2019,1,1,12,0,51,53,15,1,0,1,0,10.65439518105161,10.65439518105161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,4,1,0,0,10,4,1,937.5,0,0,0 +11999,14702,26738,26739,-9,-9,1,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.244885394030671,8.630130590125882,0,1,0,-9,9,0,-5,26.85377973754868,0,0,1,38,1,4,1,1,1,2019,1,2,12,1,42,47,15,1,1,1,0,11.96908675529554,11.96908675529554,0,0,0,0,0,0,0,0,0,0,3.12597758763718,0,0,0,43.48,60.97,5,1,0,0,7,5,1,1617,0,0,0 +11999,14702,26739,26738,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,4,8.382576074895203,8.291195526252324,0,1,0,-9,9,0,5,-37.72195579612968,0,0,0,33,1,4,1,-9,-9,2019,1,1,9,2,38,40,15,1,2,1,0,12.70035207752577,12.70035207752577,0,0,0,0,0,0,0,0,0,0,2.43603148203856,0,0,0,51.83,57.2,6,1,0,0,7,5,1,1617,0,0,0 +12000,14703,26740,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,3,7.512501025132838,7.514055339122484,0,3,0,0,0,-9,0,-968.410224176525,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,36,24,15,1,1,-9,0,5.66564233487837,5.66564233487837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.93,39.28,6,1,0,0,6,3,1,1431,0,0,0 +12001,14704,26741,26742,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,6.684282618840933,6.207561888701661,1,0,-9,49,0,1,29.32857808734822,0,0,0,68,2,3,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.436808803382203,6.254728554104663,0,0,52,54.51,7,1,0,0,9,4,1,645.5,0,0,0 +12001,14704,26742,26741,-9,-9,2,1,1,68,1,0,0,0,2,-9,2,1,0,3,7.502371134518369,8.350002930724592,8.181345815145665,1,0,-9,49,0,-1,-97.94461328668899,0,0,0,69,2,3,3,2,2,2019,2,1,11,0,25,15,15,1,0,4,0,7.011345269451597,7.011345269451597,0,0,0,0,0,0,0,1,1,0,3.348053345560043,7.976421692790015,5.596704167967475,3,57.91,46.31,6,1,0,0,9,4,1,645.5,0,0,0 +12002,14705,26743,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,3,7.798180932884921,8.00145368877004,4.760100053137714,3,0,0,0,-9,0,-948.4410749084055,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,9.550447969064432,9.550447969064432,0,0,0,0,0,0,0,0,0,0,0,4.711938687227879,0,0,60.29,52.11,6,1,0,0,5,4,1,462,0,0,0 +12002,14706,26744,-9,26743,-9,2,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.929043432552269,7.713020457181188,0,3,0,0,0,-9,0,-1007.156697668594,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,50,15,1,0,-9,1,7.945375445373304,7.945375445373304,0,0,0,0,0,0,0,0,0,0,0,0,10.96729555458596,3,49.38,58.29,6,1,0,0,5,4,1,520,0,0,0 +12003,14707,26745,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-958.0811592505919,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.327648982902702,0,0,0,57.48,47.92,6,1,0,0,4,1,0,111,0,0,0 +12003,14708,26746,-9,-9,26745,2,1,0,20,2,0,0,0,2,1,3,3,0,2,0,0,0,3,0,0,0,-9,0,-903.4957288894427,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,12,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.997383423038343,0,11.55749113148559,3,45.92,49.51,6,1,1,0,4,1,0,590,0,0,0 +12003,14709,26747,-9,-9,26745,3,1,0,19,3,0,0,0,2,1,2,1,0,3,6.944532221846976,6.803546518596945,0,3,0,0,0,-9,0,-951.1769974936876,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,20,0,15,1,0,-9,1,5.071842940228216,5.071842940228216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.61,50.58,3,1,0,0,4,2,0,1270,0,0,0 +12004,14710,26748,-9,26749,26750,2,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.886042938712871,8.574717890104916,0,3,0,0,0,-9,0,-1065.297200858651,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,55,0,15,1,0,-9,1,12.41268161369116,12.41268161369116,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,0,392,0,0,0 +12004,14711,26749,26750,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,4,8.722828540532023,8.441336029558698,0,1,0,-9,9,0,-3,45.69714381387921,-9,0,0,64,2,3,1,3,3,2019,1,3,7,0,36,0,15,1,0,1,0,16.94033709968341,16.94033709968341,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.81,53.56,6,1,0,0,6,5,0,480.5,0,0,0 +12004,14711,26750,26749,-9,-9,3,1,1,64,1,0,0,0,2,-9,2,1,0,3,7.182483360826303,6.900213378693138,5.802630793297642,1,0,-9,9,0,3,53.68895170815664,0,0,0,61,2,4,1,-9,-9,2019,1,1,8,1,18,31,15,1,1,1,0,7.403251678305392,7.403251678305392,0,0,0,0,0,0,0,1,1,0,5.658521549809644,0,8.363980558499444,3,51.94,55.88,6,1,0,0,6,5,0,480.5,0,0,0 +12005,14712,26751,-9,26752,26753,1,1,0,31,3,0,0,0,1,-9,2,1,0,4,9.190996422397031,8.717821287197761,0,3,0,-9,0,1,0,-998.9161941643843,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,48,40,15,1,0,-9,1,23.29835275102602,23.29835275102602,0,0,0,0,0,0,0,0,0,0,3.519813104477769,0,0,0,57.16,56.15,6,1,0,0,9,5,1,384,0,0,0 +12005,14713,26752,26753,-9,-9,3,1,0,64,1,0,0,0,1,-9,2,1,0,3,8.674686624125798,8.610432891969282,0,1,0,-9,1,-9,4,53.85959771378496,-9,0,0,60,1,4,1,-9,-9,2019,1,2,8,1,38,0,15,1,1,1,0,19.00913915210234,19.00913915210234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,6,1,0,0,9,5,1,1908.5,0,0,0 +12005,14713,26753,26752,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,4,7.801894474580138,7.527559829847428,6.031816524850144,1,0,-9,1,-9,-4,-44.84632566000936,-9,0,0,64,1,3,1,-9,-9,2019,1,3,12,1,37,0,15,1,1,1,0,9.846725819385947,9.846725819385947,0,0,0,0,0,0,0,0,0,0,6.441674349722635,0,3.429685595696481,3,59.43,49.68,6,1,0,0,9,5,1,1908.5,0,0,0 +12006,14714,26754,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,5.814122450212933,5.7284865056302,3,0,0,0,-9,0,-990.0469286960657,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.369101369367585,0,0,59.32,46.98,6,2,0,0,2,2,0,670,0,0,0 +12007,14715,26755,-9,26757,26759,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-995.0025784082827,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,0,1371.8,0,0,0 +12007,14715,26756,-9,26757,26759,3,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.147143961263,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,3,0,1371.8,0,0,0 +12007,14715,26757,26759,-9,-9,2,1,0,31,1,1,3,0,2,-9,2,1,0,4,6.550703076587075,6.152463322315973,0,2,0,-9,5,0,-2,-82.2940886858502,0,0,1,33,2,4,1,-9,-9,2019,1,1,8,0,11,11,15,1,0,1,0,8.642296564457544,8.642296564457544,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,6,3,0,1371.8,0,0,0 +12007,14715,26758,-9,26757,26759,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.059581979547,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,0,1371.8,0,0,0 +12007,14715,26759,26757,-9,-9,1,1,1,33,1,1,3,0,2,-9,2,1,0,4,8.483903114963327,8.536438855496003,0,2,0,-9,5,0,2,30.99312585388461,0,0,0,31,2,4,1,3,2,2019,1,2,6,0,41,40,15,1,0,1,0,13.30963221516417,13.30963221516417,0,0,0,0,0,0,0,1,1,0,0,0,4.12616524905345,3,58.15,52.91,7,1,0,0,6,3,0,1371.8,0,0,0 +12008,14716,26760,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,4,3,0,3,0,7.210553025650335,7.284364935683422,3,0,-9,0,-9,0,-912.1438127543553,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.709470035179418,7.060654642965569,19.71566964796227,3,49.29,54.59,5,1,0,0,9,2,1,452,0,0,0 +12008,14717,26761,-9,26760,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,3,7.901878851648409,8.081988512088072,0,3,0,-9,0,-9,0,-1146.447567269578,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,39,0,15,1,0,-9,1,10.02218009715935,10.02218009715935,0,0,0,0,0,0,0,1,1,0,7.863721215760224,0,0,0,54.37,54.8,7,1,0,0,9,4,1,1146,0,0,0 +12009,14718,26762,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,4,9.297190984098314,8.931524127672963,0,3,0,0,0,-9,0,-909.3205587749203,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,52,60,15,1,0,-9,0,19.67791926348191,19.67791926348191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,5,1,0,0,9,5,1,762,0,0,0 +12010,14719,26763,26765,-9,-9,2,1,0,38,1,1,2,0,1,-9,2,1,0,5,9.218322811434676,9.043888078253024,7.069793452457633,2,0,-9,6,0,-2,-57.39945960458618,0,0,1,40,1,4,1,-9,-9,2019,1,1,13,5,32,27,15,1,5,1,0,37.80714600051432,37.80714600051432,0,0,0,0,0,0,0,1,1,0,7.590396034499089,0,0,0,48.77,60.16,6,1,0,0,2,5,0,2103.25,0,0,0 +12010,14719,26764,-9,26763,26765,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1034.782746481715,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,5,0,2103.25,0,0,0 +12010,14719,26765,26763,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,4,8.543513698985421,8.798331236229586,0,2,0,-9,6,0,2,45.82896767797937,0,0,0,38,1,5,1,2,2,2019,1,2,7,0,39,35,15,1,0,1,0,20.97644774168543,20.97644774168543,0,0,0,0,0,0,0,1,1,0,8.281042604751184,0,0,0,51.83,57.2,6,1,0,0,2,5,0,2103.25,0,0,0 +12010,14719,26766,-9,26763,26765,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-923.3730892218762,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,5,0,2103.25,0,0,0 +12011,14720,26767,-9,26768,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1031.44525245581,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,1,630,0,0,0 +12011,14720,26768,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,6,3,0,3,0,6.943348017155529,6.991142467983574,4,0,0,0,-9,0,-1076.399628843992,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.989451440412156,0,0,0,21.76,49.56,3,1,0,0,13,2,1,630,0,0,0 +12012,14721,26769,-9,26771,26772,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.586288109507,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,785.5,0,0,0 +12012,14721,26770,-9,26771,26772,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.651426433629,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,4,1,785.5,0,0,0 +12012,14721,26771,26772,-9,-9,1,1,0,46,1,0,2,0,3,-9,2,1,0,3,7.899227635952147,7.941438443503135,6.692749823745078,2,0,-9,17,0,-15,-20.67260763728443,0,0,0,61,2,3,1,2,3,2019,1,2,11,0,32,32,15,1,0,1,0,8.660128126161217,8.660128126161217,0,0,0,0,0,0,0,1,1,0,6.903700469086771,0,0,0,40.14,38.19,5,1,0,0,10,4,1,785.5,0,0,0 +12012,14721,26772,26771,-9,-9,2,1,1,61,1,0,2,0,2,-9,2,1,0,3,8.349317229865909,8.637409061178309,5.20693631890926,2,0,-9,17,0,15,69.8499049706962,0,0,0,46,3,3,1,1,1,2019,1,1,11,0,50,50,15,1,0,1,0,9.61021873517101,9.61021873517101,0,0,0,0,0,0,0,1,1,0,0,5.491949023667401,0,0,55.96,49.93,3,1,0,0,10,4,1,785.5,0,0,0 +12013,14722,26773,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,5.736585529295336,5.609750919130665,3,0,0,0,-9,0,-1083.982183203538,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.156223571888251,5.931134414000264,0,0,48.55,40.5,6,1,0,0,12,2,1,1112,0,0,0 +12014,14723,26774,26775,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,7.241890462701889,7.291103168435453,1,0,-9,51,0,4,-41.8183353491676,0,0,0,69,3,4,3,3,3,2019,4,1,6,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.6092392884049345,7.124372416582092,10.97337971970673,1,66.73999999999999,44.98,7,3,0,0,5,2,1,1727.5,0,0,0 +12014,14723,26775,26774,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,51,0,-4,55.3010507788654,0,0,0,73,3,4,3,3,-9,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,1,0,15.53666609081208,7.498717556749201,0,3.182372387988067,0,1,1,0,3.85837181172493,0,0,0,17.28,48.79,6,3,0,0,5,2,1,1727.5,0,0,0 +12015,14724,26776,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,2,1,0,4,8.863346195801979,8.856259917503889,6.508282480869842,3,0,0,0,-9,0,-1089.246850797807,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,44,15,1,0,-9,0,18.75514107886493,18.75514107886493,0,0,0,0,0,0,0,1,1,0,6.425437698570219,0,0,0,58.15,52.91,4,1,0,0,2,5,1,219,0,0,0 +12015,14725,26777,-9,26776,-9,2,1,1,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-975.2495674928444,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.5219249991525905,0,0,0,49.51,39.11,5,1,0,0,2,1,1,237,0,0,0 +12016,14726,26778,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1092.742275199898,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,32,12,0,0,15,4,12,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,26.82,19.15,2,1,0,0,7,1,0,1099,0,0,0 +12017,14727,26779,-9,26780,26782,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.561997421811,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,0,810.25,0,0,0 +12017,14727,26780,26782,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,4,7.760604590187288,8.193171188785998,0,2,0,-9,8,0,2,-118.9803770903792,0,0,1,29,2,4,1,2,3,2019,1,2,5,0,30,26,15,1,0,1,0,10.50839523004883,10.50839523004883,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,5,4,0,810.25,0,0,0 +12017,14727,26781,-9,26780,26782,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.570372280086,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,0,810.25,0,0,0 +12017,14727,26782,26780,-9,-9,2,1,1,29,1,0,2,0,2,-9,2,1,0,4,8.515616520202883,8.338477824565286,0,2,0,-9,8,0,-2,-63.23166017560494,0,1,0,31,2,4,1,2,2,2019,1,1,22,9,41,45,15,1,9,1,0,12.51540047656434,12.51540047656434,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.32,62.74,4,1,0,0,5,4,0,810.25,0,0,0 +12018,14728,26783,26784,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,3,7.023889884618002,6.783138173548402,0,1,0,-9,5,-9,-5,53.58390210859838,-9,0,0,60,2,3,3,-9,-9,2019,2,2,7,0,40,0,15,1,0,3,0,2.373679653205095,2.373679653205095,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.57,40.11,4,1,0,0,12,2,0,1520.5,0,0,0 +12018,14728,26784,26783,-9,-9,2,1,0,60,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,1,-9,5,-28.76654055752439,-9,0,0,55,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,2,0,1520.5,0,0,0 +12019,14729,26785,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,3,7.623914096045807,7.162520553748077,0,3,0,0,0,-9,0,-998.9405710783954,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,37,0,15,1,0,-9,0,7.548833271917875,7.548833271917875,0,0,0,0,0,0,0,0,0,0,5.714745172501923,0,0,0,41.34,56.62,4,3,0,0,9,3,1,583,0,0,0 +12020,14730,26786,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,2,7.426449612506687,7.680028089929586,0,3,0,0,0,-9,0,-1027.635859363965,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,28,28,15,1,4,-9,0,8.373026082468551,8.373026082468551,0,0,0,0,0,0,0,0,0,0,5.439515616346646,0,0,0,50.77,40.78,4,1,0,0,4,3,1,271,0,0,0 +12021,14731,26787,-9,26789,26788,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.9833805795388,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,1,4,1,592.3333333333334,0,0,0 +12021,14731,26788,26789,-9,-9,1,1,1,45,1,0,1,0,3,-9,2,1,0,4,7.84950387497739,8.180547326736091,0,2,0,-9,11,0,13,-74.42086854724721,0,0,0,32,2,2,1,2,3,2019,1,2,8,1,40,37,15,1,1,1,0,7.639319892791709,7.639319892791709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,7,1,0,0,1,4,1,592.3333333333334,0,0,0 +12021,14731,26789,26788,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,2,7.368256432462293,7.938086906565723,0,2,0,-9,11,0,-13,67.7516696059491,0,0,1,45,3,4,1,3,-9,2019,1,1,8,1,36,26,15,1,1,1,0,6.921121307170961,6.921121307170961,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.49,46.93,6,3,0,0,1,4,1,592.3333333333334,0,0,0 +12022,14732,26790,-9,-9,-9,1,1,1,51,3,0,2,0,1,-9,2,1,0,3,7.331581236710164,7.497862277971394,0,4,0,-9,0,-9,0,-1012.434387872818,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,5.249096908758088,5.249096908758088,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,6,1,0,0,9,2,0,686,0,0,0 +12023,14733,26791,26792,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,8.549044531753973,8.328078611199345,1,0,-9,43,0,0,-40.28662063527648,0,0,0,63,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.187441745974201,0,0,57.33,53.46,6,1,0,0,5,3,1,1158,0,0,0 +12023,14733,26792,26791,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,0,-116.8752502524773,0,0,0,63,1,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,40.91,6,1,0,0,5,3,1,1158,0,0,0 +12024,14734,26793,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,4,8.951249285834038,8.617091313142643,0,3,0,0,0,-9,0,-884.5512939964671,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,43,15,1,0,-9,0,14.48772139571092,14.48772139571092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,6,5,1,305,0,0,0 +12024,14735,26794,-9,26793,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,4,7.852239521175793,8.071991098513331,5.546965397167414,3,0,0,0,-9,0,-1044.494428681598,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,36,42,15,1,0,-9,1,8.058969352360043,8.058969352360043,0,0,0,0,0,0,0,0,0,0,5.141648487030221,0,0,0,52.88,56.68,7,2,0,0,6,3,1,180,0,0,0 +12024,14736,26795,-9,26793,-9,3,1,1,22,2,0,0,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-914.6482338852196,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,21,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,63,5,2,0,0,6,1,1,460,0,0,0 +12024,14737,26796,-9,26793,-9,4,1,1,23,2,0,0,0,1,1,2,1,0,5,7.988766114035931,7.651535656268291,0,3,0,0,0,-9,0,-1035.720542500409,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,36,0,15,1,0,-9,1,8.760423252575187,8.760423252575187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,2,0,0,6,3,1,610,0,0,0 +12025,14738,26797,26798,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,5,0,7.136804742292737,7.303641886179897,1,0,-9,24,0,-16,-122.2862867999785,0,0,0,83,1,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.102696179427737,7.605449432644035,9.584895766294723,3,54.69,57.47,6,1,0,0,9,4,1,735.5,0,0,0 +12025,14738,26798,26797,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,3,0,7.900412457386246,8.305906029732053,1,0,-9,8,0,16,-154.4365634161487,-9,0,0,67,2,5,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.130338885355739,7.889462628060899,0,0,54,45,6,1,0,0,9,4,1,735.5,0,0,0 +12026,14739,26799,26800,-9,-9,2,1,0,54,1,0,0,0,2,-9,8,3,1,1,0,5.651603657097431,5.473596361639586,1,0,-9,7,0,-5,68.90628499573371,0,0,0,59,2,4,1,2,3,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.372688630399261,5.371356871666345,22.26777804206262,3,30.68,20.24,1,1,0,0,10,3,1,1362,0,0,0 +12026,14739,26800,26799,-9,-9,1,1,1,59,1,0,0,0,2,-9,1,1,0,4,7.106344427525698,7.98282186556493,6.751386094314876,1,0,-9,7,0,5,-33.11619289323534,0,0,0,54,2,1,3,3,3,2019,2,2,9,1,40,40,15,1,1,3,0,3.026424507434957,3.026424507434957,0,0,0,0,0,0,0,1,1,0,0,7.108918065206294,0,0,57.16,56.15,6,1,0,0,10,3,1,1362,0,0,0 +12026,14740,26801,-9,26799,26800,3,1,0,31,2,0,0,0,3,-9,2,1,0,4,7.503452580478934,7.605084590801148,0,3,0,0,0,-9,0,-1118.15781582922,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,35,37,15,1,2,-9,1,5.320604000997911,5.320604000997911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,10,3,1,375,0,0,0 +12027,14741,26802,26803,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.575969815189495,7.79901277626324,0,1,0,-9,7,0,-2,-37.91684021442629,-9,0,0,52,2,3,1,2,3,2019,1,1,8,0,30,0,15,1,0,1,0,7.888601732344523,7.888601732344523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,6,1,0,0,12,5,1,466.5,0,0,0 +12027,14741,26803,26802,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.61980952853323,8.894837226309228,0,1,0,-9,7,0,2,77.94605809098654,0,0,0,50,2,4,1,3,2,2019,1,2,6,0,45,40,15,1,0,1,0,15.35178277823687,15.35178277823687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.93,46.29,6,1,0,0,12,5,1,466.5,0,0,0 +12028,14742,26804,26805,-9,-9,2,1,0,38,1,0,2,0,3,-9,2,1,0,3,8.063397532389708,7.748664802865411,0,2,0,-9,18,0,-16,-91.05904809425378,0,0,1,54,2,3,1,3,2,2019,1,1,7,0,45,50,15,1,0,1,0,9.149265948858915,9.149265948858915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,6,3,0,0,10,4,1,778.25,0,0,0 +12028,14742,26805,26804,-9,-9,1,1,1,54,1,0,2,0,2,-9,2,1,0,3,8.50240925335123,8.701817253183016,0,2,0,-9,18,0,16,5.335125149788815,0,0,0,38,3,3,1,3,2,2019,1,2,6,0,58,58,15,1,0,1,0,10.79988504345822,10.79988504345822,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,2,1,0,0,10,4,1,778.25,0,0,0 +12028,14742,26806,-9,26804,26805,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1038.823573166323,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,2,0,0,10,4,1,778.25,0,0,0 +12028,14742,26807,-9,26804,26805,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-939.5343110872612,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,2,0,0,10,4,1,778.25,0,0,0 +12029,14743,26808,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,4,3,0,4,0,7.167679634418842,7.288547109681041,3,0,0,0,-9,0,-1013.203449440293,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.280938276071241,6.98863758032549,0,0,39.17,57.31,6,1,0,0,9,3,1,158,0,0,0 +12030,14744,26809,26810,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,2,7.992112685027053,7.919685951494266,0,2,0,-9,17,0,-8,8.242786299771845,0,0,0,53,1,4,1,2,3,2019,1,1,12,0,30,31,15,1,0,1,0,11.99971253399861,11.99971253399861,0,0,0,0,0,0,0,1,1,0,1.858634734098881,0,0,0,44.94,49.91,3,3,0,0,7,4,1,797,0,0,0 +12030,14744,26810,26809,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,4,7.966545793901883,7.91452828185214,0,2,0,-9,17,0,8,35.73696139460528,0,0,0,45,2,2,1,-9,-9,2019,1,2,6,1,20,50,15,1,1,1,0,17.76317048642321,17.76317048642321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.29,45.45,5,4,0,0,7,4,1,797,0,0,0 +12030,14744,26811,-9,26809,26810,3,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-978.7248158499549,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,2,0,0,7,4,1,797,0,0,0 +12030,14744,26812,-9,26809,26810,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.5580525486159,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,4,1,797,0,0,0 +12031,14745,26813,-9,26814,26815,4,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1027.862201668061,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.844064450835195,0,0,0,42.84,57.21,5,1,0,0,9,5,1,447,0,0,0 +12031,14745,26814,26815,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,3,8.007882094289963,8.304221005278,0,2,0,-9,29,0,-5,42.50485150450784,0,0,0,56,1,4,1,2,2,2019,1,1,6,0,20,20,15,1,0,1,0,20.51540284467591,20.51540284467591,0,0,0,0,0,0,0,1,1,0,6.709355940523129,0,12.37213982521567,3,60.29,52.11,7,1,0,0,9,5,1,447,0,0,0 +12031,14745,26815,26814,-9,-9,1,1,1,56,1,0,1,0,1,-9,2,1,0,4,8.730023632267192,9.027638599181998,0,2,0,-9,29,0,5,83.52974706202475,0,0,0,51,2,3,1,2,2,2019,1,2,6,0,39,30,15,1,0,1,0,17.56459182320916,17.56459182320916,0,0,0,0,0,0,0,1,1,0,8.292712397760569,0,0,3,55.19,54.26,6,1,0,0,9,5,1,447,0,0,0 +12031,14746,26816,-9,26814,26815,3,1,0,20,2,0,1,1,2,0,7,2,0,4,7.736627342472933,7.477286026364159,0,3,0,0,0,-9,0,-1008.919229076359,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.907088816647928,0,0,0,54.2,57.49,6,1,0,0,9,3,1,267,0,0,0 +12032,14747,26817,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,7.823452869713513,7.622584137468499,4.144067039071043,3,0,0,0,-9,0,-949.4524525377666,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,35,39,15,1,1,-9,0,6.625053012782339,6.625053012782339,0,0,0,0,0,0,0,1,1,0,4.840048661908333,4.737619105428919,0,0,52.65,51.64,2,1,0,0,12,3,1,210,0,0,0 +12033,14748,26818,26819,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,5,8.505743639381281,8.33691998696403,0,2,0,-9,11,0,7,-81.09402901923588,0,0,0,28,2,4,3,1,1,2019,2,2,11,1,40,40,15,1,1,3,0,13.99238084968585,13.99238084968585,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.28,59.36,5,3,0,0,8,3,0,461.75,0,0,0 +12033,14748,26819,26818,-9,-9,2,1,0,28,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-7,33.45077995941279,0,1,1,35,1,5,1,1,1,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.88,35.3,4,3,0,1,8,3,0,461.75,0,0,0 +12033,14748,26820,-9,26819,26818,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.892214949864,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,3,0,461.75,0,0,0 +12033,14748,26821,-9,26819,26818,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.198107773587,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,461.75,0,0,0 +12034,14749,26822,26823,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,1,0,4.495393786023588,4.347395406919095,1,0,-9,42,0,-2,37.0500915239633,0,0,0,73,2,3,3,3,2,2019,4,1,18,7,0,0,15,4,7,4,0,0,0,1,0,14.52484510852273,0,0,0,0,1,1,0,2.338760667451334,4.408866307647001,0,0,29.53,19.07,4,1,0,0,2,2,1,946,0,0,0 +12034,14749,26823,26822,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.778129318714348,6.67290727661374,1,0,-9,42,0,2,-74.86540151955857,0,0,0,71,2,1,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.222595077506796,6.263529633287286,16.00278210137565,1,57.09,38.46,6,1,0,0,2,2,1,946,0,0,0 +12035,14750,26824,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1119.979354138578,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.37,26.3,4,1,0,0,12,1,0,271,0,0,0 +12036,14751,26825,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,3,0,5.726625744005597,5.359144913226572,3,0,0,0,-9,0,-1051.807346384719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.021484124267293,0,0,54,43,6,1,0,0,2,2,1,445,0,0,0 +12037,14752,26826,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1065.372174332321,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,6,1,0,0,2,1,0,330,0,0,0 +12037,14753,26827,-9,26826,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.678665482237551,7.915380518748973,0,3,0,0,0,-9,0,-1122.670978102808,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,22,9,37,38,15,1,9,-9,1,6.812540901075288,6.812540901075288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.14,65.83,3,1,0,0,2,3,0,651,0,0,0 +12038,14754,26828,26829,-9,-9,2,1,0,45,1,0,0,0,2,-9,1,1,0,4,8.486263931548859,8.698652425296039,0,1,0,-9,10,0,0,114.3032187918553,0,0,0,45,2,3,1,2,2,2019,1,1,10,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,5,5,1,674,0,0,0 +12038,14754,26829,26828,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,3,7.987885333486653,7.859578512052832,0,1,0,-9,10,0,0,53.49501897399863,0,0,0,45,2,4,1,2,2,2019,1,2,11,2,37,40,15,1,2,1,0,10.89227961172793,10.89227961172793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.84,48.57,6,1,0,0,5,5,1,674,0,0,0 +12039,14755,26830,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,4,8.744476597433762,8.536684003016481,0,3,0,0,0,-9,0,-953.5059156743682,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,65,55,15,1,0,-9,0,10.77226644513969,10.77226644513969,0,0,0,0,0,0,0,1,1,0,4.538967248131508,0,0,3,49.97,56.66,5,1,0,0,9,5,1,317,0,0,0 +12040,14756,26831,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.195028883434125,8.451044187514436,0,3,0,0,0,-9,0,-1022.454324050336,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,41,39,15,1,1,-9,0,10.1206025644437,10.1206025644437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.86,53.77,5,1,0,0,10,4,0,1624,0,0,0 +12041,14757,26832,26833,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.394234784375464,7.273961763138571,0,1,0,-9,35,0,-2,6.961218527125975,0,0,0,60,2,4,1,3,2,2019,1,2,15,3,14,13,15,1,3,1,0,14.63718070626379,14.63718070626379,0,0,0,0,0,0,0,0,0,0,2.361443248875707,0,0,0,40.23,52.06,5,1,0,0,7,4,1,321,0,0,0 +12041,14757,26833,26832,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.472657526270929,8.156222325991207,0,1,0,-9,35,0,2,-124.7759235885508,0,0,0,58,2,2,1,3,3,2019,1,1,9,0,50,50,15,1,0,1,0,10.31173139702168,10.31173139702168,0,0,0,0,0,0,0,0,0,0,6.914184437727301,0,0,0,44.02,60.7,5,1,0,0,7,4,1,321,0,0,0 +12041,14758,26834,-9,26832,26833,3,1,1,25,2,0,0,0,2,-9,2,1,0,5,7.418839506216967,7.692650475105001,0,3,0,0,0,-9,0,-1059.484809137468,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,30,15,1,0,-9,1,4.976463063015043,4.976463063015043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.02,58.89,7,1,0,0,7,3,1,346,0,0,0 +12041,14759,26835,-9,26832,26833,4,1,1,23,2,0,0,0,2,-9,2,1,0,1,7.599041527900189,7.626319816310866,0,3,0,0,0,-9,0,-1212.293078509332,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,40,44,15,1,4,-9,1,6.402662223730977,6.402662223730977,0,0,0,0,0,0,0,0,0,0,2.031433867637011,0,0,0,40.5,31.64,3,1,0,0,7,3,1,439,0,0,0 +12042,14760,26836,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-989.0375177486114,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.8,38.87,3,4,1,0,8,1,0,1444.5,0,0,0 +12042,14760,26837,-9,26836,-9,2,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-871.0438880503395,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.59557184381498,3,57.16,56.15,4,4,0,0,8,1,0,1444.5,0,0,0 +12043,14761,26838,-9,-9,-9,1,1,0,19,2,0,0,0,2,-9,2,1,0,4,8.409517469867,8.582714958736586,0,3,0,0,0,-9,0,-1022.693891818324,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,43,15,1,0,-9,0,18.34290957511763,18.34290957511763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,4,1,0,0,2,4,1,895,0,0,0 +12044,14762,26839,26840,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,10,0,-5,0,0,0,0,67,2,3,3,3,3,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.33,53.46,6,1,0,0,13,1,0,669,0,0,0 +12044,14762,26840,26839,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,5,0,0,0,0,62,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,28.11428397098208,3,59.62,30.39,6,1,0,0,13,1,0,669,0,0,0 +12045,14763,26841,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,2,1,0,3,6.629868510302343,6.676201863284423,0,4,0,0,0,-9,0,-1045.738975982494,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,35,28,15,1,1,-9,0,2.230392565118025,2.230392565118025,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.9,45.75,6,1,0,1,11,2,0,1248,0,0,0 +12046,14764,26842,-9,26844,26843,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.617089767957,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,5,1,1433.666666666667,0,0,0 +12046,14764,26843,26844,-9,-9,1,1,1,47,1,0,2,0,2,-9,1,1,0,4,8.906764685170133,8.399711989293964,0,2,0,-9,13,0,12,-5.796298797653719,0,0,0,35,2,2,1,3,3,2019,1,2,14,3,60,60,15,1,3,1,0,11.73179214642662,11.73179214642662,0,0,0,0,0,0,0,1,1,0,7.962882419252513,0,3.079216310111507,2,33.43,56.48,6,3,0,0,8,5,1,1433.666666666667,0,0,0 +12046,14764,26844,26843,-9,-9,2,1,0,35,1,0,2,0,2,-9,1,1,0,2,8.467142378318727,8.694446481886407,0,2,0,-9,13,0,-12,134.376099347707,0,0,1,47,2,4,1,3,2,2019,1,1,17,7,35,10,15,1,7,1,0,15.75085822682743,15.75085822682743,0,0,0,0,0,0,0,1,1,0,8.662571913023287,0,126.4776316982863,2,42.47,38.78,5,3,0,0,8,5,1,1433.666666666667,0,0,0 +12047,14765,26845,-9,26847,26848,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.288652981682,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,2,1,531.75,0,0,0 +12047,14765,26846,-9,26847,26848,5,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.8719089460609,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,2,1,531.75,0,0,0 +12047,14765,26847,26848,-9,-9,2,1,0,53,1,0,2,0,3,-9,2,1,0,3,5.80985981265341,5.914086154204572,0,2,0,-9,28,0,-2,-76.26834404234353,0,0,0,55,3,3,1,3,3,2019,1,1,15,4,5,5,15,1,4,1,0,8.359156631867027,8.359156631867027,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,56.27,2,1,0,0,13,2,1,531.75,0,0,0 +12047,14765,26848,26847,-9,-9,1,1,1,55,1,0,2,0,3,-9,2,1,0,3,8.025075219118897,8.071038820036073,0,2,0,-9,29,0,2,70.54529801484387,0,0,0,53,3,3,1,3,3,2019,1,2,10,0,37,37,15,1,0,1,0,9.676526378906205,9.676526378906205,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.33,62.63,5,1,0,0,13,2,1,531.75,0,0,0 +12047,14766,26849,-9,26847,26848,3,1,0,20,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-958.6482563160681,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,5,1,0,0,13,1,1,324,0,0,0 +12048,14767,26850,26851,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,5.350015714301126,4.909253013963135,1,0,-9,36,0,-2,136.4366451292771,0,0,0,64,2,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.421463565546377,0,0,58.15,52.91,6,1,0,0,1,3,1,410.5,0,0,0 +12048,14767,26851,26850,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,8.218580809287317,7.975898738558066,1,0,-9,36,0,2,-48.99335266072159,0,0,0,62,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,0,0,0,5.93095160927622,8.33769146895647,0,0,57.16,56.15,6,1,0,0,1,3,1,410.5,0,0,0 +12049,14768,26852,26854,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.05037210813324,8.277940214797441,0,2,0,-9,6,0,-3,95.82404884694863,0,0,0,35,2,4,1,-9,-9,2019,1,1,8,1,38,40,15,1,1,1,0,10.29976037942582,10.29976037942582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,5,1,0,0,4,4,1,1210.333333333333,0,0,0 +12049,14768,26853,-9,26854,26852,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.303708921247,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,1210.333333333333,0,0,0 +12049,14768,26854,26852,-9,-9,1,1,0,35,1,1,1,0,2,-9,2,1,0,4,8.124673349389205,7.709471862446988,0,2,0,-9,6,0,3,-7.977098476651257,0,0,1,32,1,4,1,-9,-9,2019,1,2,11,0,38,38,15,1,2,1,0,8.845489518839038,8.845489518839038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,4,4,1,1210.333333333333,0,0,0 +12050,14769,26855,26856,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,6.490035794532036,6.561786323748449,1,0,-9,50,0,1,-.745766142616644,0,0,0,70,1,1,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,13.12840134944671,0,0,0,0,1,1,0,4.514151603233432,6.384385614857279,0,0,64.40000000000001,25.94,6,1,0,0,7,2,1,650,0,0,0 +12050,14769,26856,26855,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,1,0,6.750844277333177,6.682753816732212,1,0,-9,50,0,-1,1.745552593905531,0,0,0,71,3,2,3,3,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.646074643521833,6.752751006098784,0,0,53.68,21.54,5,1,0,0,7,2,1,650,0,0,0 +12051,14770,26857,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,5,0,6.458612174100315,7.022852613914833,3,0,0,0,-9,0,-1073.224242472135,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.692768930794314,0,0,62.39,56.71,7,1,0,0,9,2,1,250,0,0,0 +12052,14771,26858,26859,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.33009461403965,8.771240069187467,0,1,0,-9,29,0,-1,154.5166598349426,0,0,0,56,2,4,1,3,2,2019,1,2,8,0,65,55,15,1,0,1,0,8.734641226090233,8.734641226090233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,11,4,1,735,0,0,0 +12052,14771,26859,26858,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.398550194764142,6.78149212783603,0,1,0,-9,29,0,1,-15.031268267764,0,0,0,55,2,4,1,2,2,2019,1,1,11,0,24,26,15,1,0,1,0,5.561268412677064,5.561268412677064,0,0,0,0,0,0,0,0,0,0,0,0,12.85553807996296,3,46.2,56.93,6,1,0,0,11,4,1,735,0,0,0 +12052,14772,26860,-9,26859,26858,3,1,0,23,2,0,0,0,2,-9,2,1,0,5,7.627851210426218,7.96903659493768,0,3,0,0,0,-9,0,-1062.714382066725,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,1,5.731270228021421,5.731270228021421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,11,3,1,958,0,0,0 +12052,14773,26861,-9,26859,26858,4,1,0,20,2,0,0,1,2,0,7,2,0,4,7.421134678882572,7.23220533299475,0,3,0,0,0,-9,0,-829.2105592245778,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,24,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.35,56.16,2,1,0,0,11,3,1,1054,0,0,0 +12053,14774,26862,26864,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,4,8.731788120643124,9.062575701725343,0,2,0,-9,17,0,7,-54.78104619838466,0,0,0,41,1,3,1,2,1,2019,1,1,9,0,42,43,15,1,0,1,0,17.82088601590042,17.82088601590042,0,0,0,0,0,0,0,1,1,0,2.386663030048467,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1153,0,0,0 +12053,14774,26863,-9,26864,26862,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-809.9595916254489,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,1153,0,0,0 +12053,14774,26864,26862,-9,-9,1,1,0,41,1,0,1,0,1,-9,2,1,0,3,9.097199246574759,9.073234363255546,0,2,0,-9,18,0,-7,-30.29943406661337,0,0,1,48,1,4,1,2,2,2019,1,2,31,12,48,48,15,1,12,1,0,25.28205912878471,25.28205912878471,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.84,60.85,3,1,0,0,10,5,1,1153,0,0,0 +12054,14775,26865,-9,26866,26868,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.2621521980109,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,5,5,1,1194,0,0,0 +12054,14775,26866,26868,-9,-9,1,1,0,49,1,0,2,0,1,-9,6,3,0,5,0,0,0,2,0,-9,10,0,2,-8.327649642646366,0,0,0,47,3,2,1,2,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.144171123484251,0,0,0,51.73,58.82,6,1,0,0,5,5,1,1194,0,0,0 +12054,14775,26867,-9,26866,26868,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.806973920723,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,5,5,1,1194,0,0,0 +12054,14775,26868,26866,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,2,8.97938263085841,9.271813498601256,0,2,0,-9,10,0,-2,-10.40394690957006,0,0,0,49,1,5,3,-9,-9,2019,2,1,16,4,40,41,15,1,4,3,0,27.24985632389868,27.24985632389868,0,0,0,0,0,0,0,0,0,0,.3128204923862988,0,0,0,47.61,46.11,5,1,0,0,5,5,1,1194,0,0,0 +12055,14776,26869,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,4.571245607828798,5.179161869591599,3,0,0,0,-9,0,-1051.881809545259,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.244529014927318,4.798278538512351,0,3,57.16,56.15,6,1,0,0,7,2,1,1053,0,0,0 +12056,14777,26870,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1098.849133513107,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,34.10202000911032,3,56.01,27.43,5,1,0,0,10,1,1,620,0,0,0 +12057,14778,26871,26872,-9,-9,1,1,1,62,1,0,0,0,3,-9,4,3,0,2,0,5.825231444087986,5.758873476448949,1,0,-9,21,0,21,-126.3434700334416,0,0,0,41,2,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.220488998049889,11.97709572465835,3,32.64,40.61,5,1,0,0,4,3,0,702.5,0,0,0 +12057,14778,26872,26871,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,3,8.090473325984981,7.573647269739657,0,1,0,-9,7,0,-21,138.5135524595376,0,0,1,62,3,2,3,-9,-9,2019,2,1,11,0,39,41,15,1,0,4,0,8.180517773668083,8.180517773668083,0,0,0,0,0,0,0,0,0,0,0,0,2.548754242215452,3,31.34,60.05,5,1,0,0,4,3,0,702.5,0,0,0 +12058,14779,26873,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1084.586158217609,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.33,35.55,4,1,0,0,11,1,0,971,0,0,0 +12059,14780,26874,26877,-9,-9,2,1,1,53,1,0,2,0,2,-9,2,1,0,4,7.575608666118531,8.05487537301323,0,2,0,-9,6,0,3,-44.47343744401325,0,0,0,50,2,4,1,-9,-9,2019,1,1,8,0,50,60,15,1,0,1,0,4.635584410940004,4.635584410940004,0,0,0,0,0,0,0,1,1,0,7.162800070303732,0,0,0,52.82,53.97,6,1,0,0,2,3,1,866.5,0,0,0 +12059,14780,26875,-9,26877,26874,3,1,0,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-834.8209721801998,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.246974209900114,3,45.22,63.14,7,1,0,0,2,3,1,866.5,0,0,0 +12059,14780,26876,-9,26877,26874,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.233126759543,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,2,3,1,866.5,0,0,0 +12059,14780,26877,26874,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,4,7.849804594712541,8.050520425499329,0,2,0,-9,6,0,-3,163.0940735430864,0,0,0,53,2,4,1,2,2,2019,1,2,13,2,37,36,15,1,2,1,0,8.022010074537864,8.022010074537864,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,5,1,0,0,2,3,1,866.5,0,0,0 +12060,14781,26878,26879,-9,-9,1,1,0,53,1,0,1,0,2,-9,1,1,0,5,7.813165327598523,8.233854885071219,7.030850717231343,2,0,-9,3,0,8,16.5257489929292,0,0,0,45,2,4,1,3,3,2019,1,4,6,0,22,25,15,1,0,1,0,15.91241447434915,15.91241447434915,0,0,0,0,0,0,0,1,1,0,6.42741399989338,7.843615846951835,0,0,57.06,57.76,7,1,0,0,5,4,1,409,0,0,0 +12060,14781,26879,26878,-9,-9,4,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.069843454278155,8.194266899201168,0,2,0,-9,3,0,-8,-47.88939446351533,0,0,0,53,2,5,1,-9,-9,2019,1,1,7,0,37,37,15,1,0,1,0,11.01268779357891,11.01268779357891,0,0,0,0,0,0,0,1,1,0,7.066970258112133,0,0,0,61.51,49.96,6,1,0,0,5,4,1,409,0,0,0 +12060,14782,26880,-9,26878,26879,2,1,0,20,2,0,1,0,2,-9,2,1,0,3,7.728911419375399,7.524241012262779,0,3,0,0,0,-9,0,-1237.265419820487,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,41,47,15,1,1,-9,1,5.408980545537317,5.408980545537317,0,0,0,0,0,0,0,1,1,0,3.421217759016253,0,0,0,46.64,49.01,2,1,0,0,5,3,1,3492,0,0,0 +12060,14783,26881,-9,26878,26879,5,1,0,21,2,0,1,0,2,-9,2,1,0,3,8.014617658044061,8.107526832391761,0,3,0,0,0,-9,0,-1084.838276769224,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,48,15,1,3,-9,1,7.398992277908592,7.398992277908592,0,0,0,0,0,0,0,1,1,0,3.02741555632775,0,0,0,31.93,58.41,2,1,0,0,5,3,1,291,0,0,0 +12061,14784,26882,26883,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,4,8.969349483529927,8.898706169990671,0,2,0,-9,7,0,0,-55.58732655350799,0,0,0,52,2,3,1,1,2,2019,1,1,21,9,43,47,15,1,9,1,0,16.44618255883764,16.44618255883764,0,0,0,0,0,0,0,1,1,0,7.157946767604312,0,0,0,43.09,54.67,5,1,0,0,7,5,1,638.5,0,0,0 +12061,14784,26883,26882,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,3,8.681009586873213,8.329580885334982,0,2,0,-9,32,0,0,33.34381819599038,0,0,0,52,2,4,1,2,1,2019,1,2,13,1,37,37,15,1,1,1,0,16.32061148570923,16.32061148570923,0,0,0,0,0,0,0,1,1,0,1.096924698002447,0,0,0,38.69,53.88,6,1,0,0,7,5,1,638.5,0,0,0 +12061,14785,26884,-9,26883,26882,3,1,0,18,2,0,1,1,2,0,7,2,0,4,7.057994433379425,6.679864642594904,3.796006394433305,3,0,0,0,-9,0,-893.0182764377435,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,12,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.680279416328939,0,0,0,28.62,62.36,5,1,0,0,7,5,1,5138,0,0,0 +12062,14786,26885,26886,-9,-9,1,1,0,25,1,0,0,0,2,-9,2,1,0,3,8.154403869391716,8.350071300106332,0,1,0,-9,11,0,-4,88.70971792373706,0,1,1,29,2,4,1,-9,2,2019,1,2,10,1,38,37,15,1,1,1,0,11.68404393998091,11.68404393998091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.8,33.25,6,1,0,0,10,5,1,1054.5,0,0,0 +12062,14786,26886,26885,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,4,8.980210849506975,8.867267039863277,0,1,0,-9,11,0,4,-81.55663608030122,0,1,0,25,2,3,1,2,2,2019,1,1,5,1,61,67,15,1,1,1,0,14.47691970165913,14.47691970165913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,10,5,1,1054.5,0,0,0 +12063,14787,26887,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,2,8.338831186536565,8.119875174885166,0,3,0,0,0,-9,0,-779.8788952528216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,37,36,15,1,8,-9,0,12.62662455307585,12.62662455307585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.65,37.08,3,1,0,0,13,4,1,1360,0,0,0 +12064,14788,26888,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,5.745568852301559,5.992134509966696,3,0,0,0,-9,0,-1105.608400191388,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,21,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.599143684856714,5.746596464879669,0,0,53.23,42.9,6,1,0,0,9,2,1,346,0,0,0 +12065,14789,26889,-9,-9,-9,1,1,1,22,2,0,0,0,2,-9,2,1,0,5,5.632946059015274,5.797496533729746,0,3,0,0,0,-9,0,-1102.202579626545,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,7,12,15,1,0,-9,0,4.675429190919844,4.675429190919844,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.02,56.42,6,4,0,0,6,2,1,637,0,0,0 +12066,14790,26890,26891,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,4,7.498625462832629,7.596673121673341,0,1,0,-9,46,0,1,-11.69909348352616,0,0,0,63,1,5,1,3,2,2019,1,1,12,1,21,23,15,1,1,1,0,10.90115806501264,10.90115806501264,0,0,0,0,0,0,0,0,0,0,4.721328420846727,0,0,0,52.77,55.33,6,1,0,0,10,5,1,330,0,0,0 +12066,14790,26891,26890,-9,-9,1,1,0,63,1,0,0,0,1,-9,2,1,0,5,8.652308856478578,8.816638611978536,0,1,0,-9,46,0,-1,-69.90522035382961,0,0,0,64,1,4,1,3,2,2019,1,2,5,0,20,37,15,1,0,1,0,42.64423625877087,42.64423625877087,0,0,0,0,0,0,0,0,0,0,2.619228525626978,0,0,0,48.77,60.16,6,1,0,0,10,5,1,330,0,0,0 +12067,14791,26892,26894,-9,-9,1,1,0,33,1,1,1,0,1,-9,2,1,0,4,8.307623699083827,8.321355296388827,0,2,0,-9,8,0,1,-13.32958988586565,0,0,1,32,2,3,1,2,1,2019,1,2,6,1,39,21,15,1,1,1,0,13.2043412820323,13.2043412820323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.49,50.46,6,1,0,0,10,5,1,662,0,0,0 +12067,14791,26893,-9,26892,26894,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.8821969290431,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,662,0,0,0 +12067,14791,26894,26892,-9,-9,2,1,1,32,1,1,1,0,2,-9,2,1,0,3,8.678503248222395,8.692711444363868,0,2,0,-9,8,0,-1,-51.50744899155492,0,0,0,33,1,4,1,3,2,2019,1,1,13,1,35,55,15,1,1,1,0,29.591152838396,29.591152838396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,56.11,6,1,0,0,10,5,1,662,0,0,0 +12068,14792,26895,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.956949564973044,8.929895925385786,0,3,0,0,0,-9,0,-985.1176340662945,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,50,37,15,1,0,-9,1,21.9602647525322,21.9602647525322,0,0,0,0,0,0,0,1,1,0,.9373183489727809,0,0,0,57.06,57.76,7,3,0,0,8,5,1,1334,0,0,0 +12069,14793,26896,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,7.388914260090034,7.063857695391571,3,0,0,0,-9,0,-1039.530664852876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,1.65739411541812,0,0,0,1,1,0,3.955449752494463,7.199941385119046,0,0,54.38,19.98,3,1,0,0,11,3,1,222,0,0,0 +12070,14794,26897,-9,26898,-9,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-917.7394189195891,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,228,0,0,0 +12070,14794,26898,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,2,1,0,3,6.685507518423945,6.440829701519016,0,4,0,0,0,-9,0,-912.7243186556661,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,8,20,0,15,1,8,-9,0,5.158477674724764,5.158477674724764,0,0,0,0,0,0,0,1,1,0,0,0,68.84903010392253,3,28.46,43.55,2,3,0,1,6,2,1,228,0,0,0 +12070,14795,26899,-9,26898,-9,2,1,1,22,2,0,2,0,2,-9,2,1,0,3,7.759963061241816,7.969012523724363,0,3,0,0,0,-9,0,-969.7656622769841,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,39,44,15,1,0,-9,1,8.534591087344229,8.534591087344229,0,0,0,0,0,0,0,1,1,0,0,0,17.41626846255096,3,52,54.51,4,3,0,0,6,4,1,214,0,0,0 +12071,14796,26900,-9,-9,-9,1,1,1,37,3,0,0,0,3,-9,2,1,0,4,8.135395348408055,8.48023368976054,0,3,0,0,0,-9,0,-1025.878104994243,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,38,15,1,0,-9,0,12.09380780758749,12.09380780758749,0,0,0,0,0,0,0,0,0,0,.5573198427163597,0,0,0,49.12,57.28,6,1,0,0,13,4,1,117,0,0,0 +12072,14797,26901,26902,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.59514648099697,7.490965434462428,1,0,-9,53,0,4,43.87077730507214,0,0,0,73,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.169014742873033,7.473269862130666,0,0,61.62,34.96,6,1,0,0,10,3,1,736,0,0,0 +12072,14797,26902,26901,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,5.951751217415777,5.984158038596236,1,0,-9,53,0,-4,-91.25641216903037,0,0,0,77,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.285523474125193,5.789305002255291,0,0,61.04,39.41,6,1,0,0,10,3,1,736,0,0,0 +12073,14798,26903,26904,-9,-9,1,1,1,83,1,0,0,0,2,-9,4,3,0,2,0,7.528116069283421,7.332702863463195,1,0,-9,7,0,2,175.7603327146772,0,0,0,81,2,3,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.435626307070067,0,0,51.89,35.98,5,1,0,0,6,2,1,371,0,0,0 +12073,14798,26904,26903,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,-54.59958946160673,0,0,0,83,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.704435762827364,0,0,0,57.33,53.46,7,1,0,0,6,2,1,371,0,0,0 +12074,14799,26905,-9,-9,-9,1,1,1,36,3,0,0,0,1,-9,2,1,0,3,7.896267394657059,8.051463322443919,0,3,0,0,0,-9,0,-1048.565017744041,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,31,39,15,1,9,-9,0,13.512827841308,13.512827841308,0,0,0,0,0,0,0,0,0,0,6.874478031289163,0,6.785773749813713,3,39.51,45.46,3,1,0,0,10,4,1,641,0,0,0 +12075,14800,26906,26907,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,5,8.837914662267561,8.592299437632461,0,1,0,-9,2,0,-1,-50.7922600788449,0,1,1,30,1,4,1,-9,-9,2019,1,1,5,0,38,38,15,1,0,1,0,19.59083950540185,19.59083950540185,0,0,0,0,0,0,0,0,0,0,1.092324125004568,0,0,0,59.43,58.05,6,1,0,0,12,5,0,442.5,0,0,0 +12075,14800,26907,26906,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.435329752551178,8.651182719144684,0,1,0,-9,2,0,1,-6.779261344628326,0,0,0,29,1,5,1,1,2,2019,1,2,5,0,40,37,15,1,0,1,0,17.73887098188089,17.73887098188089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,0,442.5,0,0,0 +12076,14801,26908,26909,-9,-9,1,1,1,49,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,2,0,-4,0,0,0,0,53,2,1,3,-9,-9,2019,4,2,28,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83932425697254,1,52.21,26.48,5,1,1,0,12,1,0,817,0,0,0 +12076,14801,26909,26908,-9,-9,2,1,0,53,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,2,0,4,0,0,0,0,49,3,2,3,-9,-9,2019,4,1,32,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.44,22.46,1,1,0,0,12,1,0,817,0,0,0 +12077,14802,26910,26911,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,7.663000493343398,8.00109357434512,1,0,-9,34,0,-1,93.20115719968807,0,0,0,63,1,5,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.39993091317287,7.902514849162018,1.36478931761582,3,62.57,40.11,6,1,0,0,4,4,1,1210.5,0,0,0 +12077,14802,26911,26910,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,5,0,7.248983371686059,7.337711789124793,1,0,-9,34,0,1,-226.1847604451468,0,0,0,62,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.782927255518029,7.660045837035642,4.643445767474043,3,50.95,56.4,6,1,0,0,4,4,1,1210.5,0,0,0 +12077,14803,26912,-9,26910,26911,3,1,1,22,2,0,0,0,1,-9,97,3,0,2,0,0,0,3,0,0,0,-9,0,-1082.283320797234,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7733575539452954,0,0,0,36.6,54.12,3,1,0,0,4,1,1,1346,0,0,0 +12078,14804,26913,26914,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-1,93.35428773820337,0,0,0,72,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.4906129824530216,0,0,0,66.13,31.59,7,1,0,0,12,2,1,611.5,0,0,0 +12078,14804,26914,26913,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,5.277500655448798,5.293554337654911,1,0,-9,6,0,1,89.88069497362039,0,0,0,71,3,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.349533202220618,0,0,47.05,29.56,5,1,0,0,12,2,1,611.5,0,0,0 +12079,14805,26915,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,1,0,1.850609523672784,1.890707017036495,3,0,0,0,-9,0,-1000.34325934179,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,9.55182721002646,0,1,1,0,0,1.618111245539779,0,0,39.33,21.66,5,1,0,0,7,1,0,489,0,0,0 +12080,14806,26916,-9,-9,-9,1,1,0,20,2,0,0,1,2,0,7,2,0,4,0,6.698381321229785,6.384271178191254,3,0,0,0,-9,0,-913.8386016505858,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.590033575252539,0,0,0,24.91,65.67,5,1,0,0,12,2,0,475,0,0,0 +12081,14807,26917,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,-9,0,-9,0,-1093.02664102905,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,5.048971901735303,0,0,1,1,0,0,0,0,0,44.07,39.47,6,1,0,0,13,1,1,946,0,0,0 +12082,14808,26918,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,8,3,1,5,0,0,0,3,0,0,0,-9,0,-874.3675878442539,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.92,43.99,5,1,0,0,6,1,0,286,0,0,0 +12083,14809,26919,-9,26922,26921,4,1,0,4,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.944923103626,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,12,1,0,565.2857142857143,0,0,0 +12083,14809,26920,-9,26922,26921,5,1,1,3,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.1630734592533,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,1,0,565.2857142857143,0,0,0 +12083,14809,26921,26922,-9,-9,2,1,1,36,1,2,5,0,2,-9,3,3,0,3,0,0,0,2,0,-9,2,0,3,0,0,0,0,33,2,2,3,-9,-9,2019,4,1,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.3285272895651,2,39.15,41.42,5,1,1,0,12,1,0,565.2857142857143,0,0,0 +12083,14809,26922,26921,-9,-9,1,1,0,33,1,2,5,0,2,-9,8,3,1,2,0,0,0,2,0,-9,2,0,-3,0,0,0,1,36,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.0961288680981,3,58.96,34.45,3,1,0,0,12,1,0,565.2857142857143,0,0,0 +12083,14809,26923,-9,26922,26921,3,1,0,11,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.5738878954855,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,1,0,565.2857142857143,0,0,0 +12083,14809,26924,-9,26922,26921,7,1,0,0,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-970.5172169528726,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,1,0,565.2857142857143,0,0,0 +12083,14809,26925,-9,26922,26921,6,1,1,1,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.454342801728,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,1,0,565.2857142857143,0,0,0 +12084,14810,26926,26927,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,65,0,-4,106.7646723774383,0,0,0,88,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,77.78167849596343,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,10,2,1,552,0,0,0 +12084,14810,26927,26926,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,4,0,7.135045242081302,7.484350194990201,1,0,-9,65,0,4,5.15565965604342,0,0,0,84,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.047441214789539,7.55686727025514,19.73961866995732,1,61.02,39.27,7,1,0,0,10,2,1,552,0,0,0 +12085,14811,26928,26929,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.264840772020502,6.905287077790591,1,0,-9,53,0,2,1.633687939459856,0,0,0,75,2,2,3,3,2,2019,4,2,11,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.224835711241529,7.177792438924398,15.7495700360795,1,60.05,37.77,7,5,0,0,4,2,1,336.5,0,0,0 +12085,14811,26929,26928,-9,-9,2,1,0,75,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,53,0,-2,10.77380348747372,0,0,0,77,1,3,3,3,2,2019,4,1,21,8,0,0,15,3,8,4,0,0,0,1,1.254763806389089,82.11865568481936,0,0,0,17.68405070878811,1,1,0,1.560624232860724,0,0,0,30.71,26.64,3,1,0,0,4,2,1,336.5,0,0,0 +12086,14812,26930,26932,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,2,9.222403853970661,9.491670912543658,0,2,0,-9,9,0,-1,49.09310953621924,0,0,0,49,2,4,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,32.19409353810522,32.19409353810522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,5,1,0,0,7,5,1,1707.5,0,0,0 +12086,14812,26931,-9,26932,26930,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.448957664569,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,1707.5,0,0,0 +12086,14812,26932,26930,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,7.221000517393556,7.3757827219801,0,2,0,-9,25,0,1,2.697933605460261,0,0,0,48,1,2,1,3,-9,2019,1,2,9,0,21,24,15,1,0,1,0,6.646859447250812,6.646859447250812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,1707.5,0,0,0 +12086,14812,26933,-9,26932,26930,3,1,1,16,2,0,2,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1020.189282595639,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,6,1,0,0,7,5,1,1707.5,0,0,0 +12087,14813,26934,26935,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,7.728326557315978,8.029846546562565,1,0,-9,43,0,2,27.04249749372206,0,0,0,63,1,3,3,2,2,2019,4,2,8,0,0,42,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.078891083914382,0,0,55,53,6,1,0,0,10,3,1,539.5,0,0,0 +12087,14813,26935,26934,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,3,0,5.786877736630127,5.983045124047055,1,0,-9,42,0,-2,13.20990204537235,0,0,0,65,1,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.073356892760358,5.616166490484178,0,0,57.88,43.83,2,1,0,0,10,3,1,539.5,0,0,0 +12088,14814,26936,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,3,0,7.894274385336501,7.826258856994846,3,0,0,0,-9,0,-904.7264238258821,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,119.1663612146819,0,0,0,1,1,0,0,7.824564695917049,0,0,48.53,26.29,7,1,0,0,13,4,1,386,0,0,0 +12088,14815,26937,-9,26936,-9,2,1,0,58,2,0,0,0,1,-9,4,3,0,3,0,7.757374377987301,7.577465687165148,3,0,0,0,-9,0,-1046.042774713286,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.613298557501203,7.480524959223763,0,0,49.84,47.45,5,1,0,0,13,3,1,312,0,0,0 +12088,14816,26938,-9,26936,-9,3,1,1,55,2,0,0,0,3,-9,1,1,0,3,8.591689552975708,8.903962568922168,0,3,0,0,0,-9,0,-972.7445256715758,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,40,40,15,1,1,-9,1,22.24441031227594,22.24441031227594,0,0,0,0,0,0,0,1,1,0,6.957254369954386,0,0,0,57.33,53.46,6,1,0,0,13,5,1,768,0,0,0 +12089,14817,26939,26940,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,2,6.773652133205067,6.194841889759457,0,1,0,-9,6,0,-8,-7.073944972451418,0,0,0,61,3,1,3,3,2,2019,2,1,13,1,24,24,15,1,1,3,0,2.792219346765139,2.792219346765139,0,0,0,0,0,0,0,1,1,0,3.816678680512648,0,38.2685162473353,3,41.58,52.86,3,1,0,1,12,2,1,519,0,0,0 +12089,14817,26940,26939,-9,-9,1,1,0,61,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,6,0,8,24.48432626286078,0,0,0,53,2,2,1,3,3,2019,3,2,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.8114666691569,3,30.09,41.75,6,1,0,0,12,2,1,519,0,0,0 +12089,14818,26941,-9,26940,26939,3,1,1,37,2,0,0,0,1,-9,2,1,0,3,7.761006928554866,8.051837609686073,0,3,0,0,0,-9,0,-1046.755001223848,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,40,40,15,1,12,-9,1,6.396657204163042,6.396657204163042,0,0,0,0,0,0,0,1,1,0,0,0,.2597102455626412,3,32.42,38.97,3,1,0,0,12,3,1,269,0,0,0 +12089,14819,26942,-9,26940,26939,4,1,1,36,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1056.681368618498,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.44,38.75,4,1,0,0,12,1,1,1631,0,0,0 +12089,14820,26943,-9,26940,26939,5,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.839767266496249,7.659890015872375,0,3,0,0,0,-9,0,-981.616705693673,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,37,50,15,1,3,-9,1,9.210294689904233,9.210294689904233,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.37,57.28,4,1,0,0,12,3,1,940,0,0,0 +12089,14821,26944,-9,26940,26939,6,1,0,20,2,0,0,0,2,-9,2,1,0,4,6.18675590134146,6.172137421894995,0,3,0,0,0,-9,0,-1000.336492922712,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,14,16,15,1,0,-9,1,5.008667077920933,5.008667077920933,0,0,0,0,0,0,0,1,1,0,0,0,11.21640967881302,3,50.42,59.1,1,1,0,0,12,2,1,563,0,0,0 +12090,14822,26945,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,5.040963196565931,5.565706949764717,3,0,0,0,-9,0,-1117.70988538283,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,5.837002894786243,0,1,1,0,0,5.368943200181526,0,0,47.81,29.49,5,1,0,0,13,2,0,553,0,0,0 +12091,14823,26946,26947,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,9.218744897144033,9.208843159467767,1,0,-9,49,0,2,-21.28158578630224,0,0,0,72,1,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.598327399217937,8.965487097968783,0,0,59.07,43.05,6,1,0,0,9,5,1,275.5,0,0,0 +12091,14823,26947,26946,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,49,0,-2,-93.62925430189578,0,0,0,74,1,3,3,2,2,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,1.279916333350045,0,0,0,0,12.08144488781092,1,1,0,4.359940676849045,0,0,0,57.09,33.47,5,1,0,0,9,5,1,275.5,0,0,0 +12092,14824,26948,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,2,1,0,4,7.88547848292618,8.46266173528646,0,3,0,0,0,-9,0,-968.5483106700884,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,35,35,15,1,9,-9,0,10.92538518454556,10.92538518454556,0,0,0,0,0,0,0,0,0,0,4.188712443238444,0,0,0,18.96,64.42,5,1,0,0,8,4,0,727,0,0,0 +12093,14825,26949,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,4,3,0,3,0,7.845466513553409,7.75036409866477,3,0,0,0,-9,0,-1073.955003363587,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,43,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.302120246540804,0,0,52.4,52.91,6,1,0,0,7,4,1,1478,0,0,0 +12093,14826,26950,-9,-9,26949,2,1,0,22,2,0,0,0,2,-9,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1034.177691157573,1,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,16,4,0,43,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.312378430001871,0,0,0,34,42.78,6,1,0,0,7,1,1,846,0,0,0 +12094,14827,26951,26952,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,4,7.795379089472218,7.789920517173377,0,1,0,-9,10,0,6,-85.29253411695387,0,0,0,35,1,4,1,2,3,2019,1,1,11,1,42,42,15,1,1,1,0,8.361124789715427,8.361124789715427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.15,57.46,6,1,0,0,4,5,0,3209.5,0,0,0 +12094,14827,26952,26951,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,4,9.28938286674286,9.476218918968794,0,1,0,-9,10,0,-6,-7.986370256673887,0,0,1,41,2,4,1,2,2,2019,1,2,9,2,48,42,15,1,2,1,0,24.34160345220684,24.34160345220684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,6,1,0,0,4,5,0,3209.5,0,0,0 +12095,14828,26953,26954,-9,-9,2,1,0,36,1,0,1,0,2,-9,2,1,0,3,7.424241703190561,7.31309418106088,0,2,0,-9,14,0,-8,35.31013308622905,0,0,1,44,1,2,1,3,3,2019,1,1,4,0,34,6,15,1,0,1,0,5.002604780769068,5.002604780769068,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,44.28,1,3,0,0,9,5,0,965,0,0,0 +12095,14828,26954,26953,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,2,8.861855004058874,8.963254864964275,0,2,0,-9,13,0,8,-20.49969519026364,0,0,0,36,2,3,1,3,3,2019,1,2,7,0,38,45,15,1,0,1,0,24.12626802219314,24.12626802219314,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,47.39,4,1,0,0,9,5,0,965,0,0,0 +12095,14828,26955,-9,26953,26954,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-884.6460428280328,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,9,5,0,965,0,0,0 +12096,14829,26956,26957,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,62,0,-2,-7.383614503412257,0,0,0,82,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.14,52.5,7,1,0,0,7,2,0,894.5,0,0,0 +12096,14829,26957,26956,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,6.692598573320008,6.364890979269335,1,0,-9,62,0,2,-31.26510358092291,0,0,0,80,3,4,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,14.96510366953907,0,0,0,0,1,1,0,0,6.638265118148655,0,0,59.72,18.06,7,1,0,0,7,2,0,894.5,0,0,0 +12097,14830,26958,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,4,0,1.288420999325466,1.691096899660093,3,0,0,0,-9,0,-887.9743129619408,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1.254612389177922,0,0,50.26,48.51,5,1,0,0,1,2,1,219,0,0,0 +12098,14831,26959,-9,-9,-9,1,1,0,45,2,0,0,0,3,-9,2,1,0,5,8.485277048460958,8.61787350325436,0,3,0,0,0,-9,0,-1036.587118291065,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,50,47,15,1,0,-9,0,12.11589827695256,12.11589827695256,0,0,0,0,0,0,0,1,1,0,3.667691377694355,0,0,0,59.43,58.05,7,1,0,0,7,5,1,207,0,0,0 +12099,14832,26960,26961,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,6.303176197352133,8.019648206739689,8.304435315773638,1,0,-9,26,0,11,13.84290885389828,0,0,0,52,2,4,1,-9,-9,2019,1,3,11,0,20,0,15,1,0,1,0,2.985013294298752,2.985013294298752,0,0,0,0,0,0,0,0,0,0,2.67532663841823,8.434991850622289,0,0,60.03,45.37,6,1,0,0,9,5,1,464,0,0,0 +12099,14832,26961,26960,-9,-9,3,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.769429595994684,9.051815231389087,0,1,0,-9,5,0,-11,53.75705363048093,0,0,0,63,2,3,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,15.94114269424384,15.94114269424384,0,0,0,0,0,0,0,0,0,0,2.566238915674559,0,0,0,51,54,6,1,0,0,9,5,1,464,0,0,0 +12099,14833,26962,-9,26961,26960,2,1,1,30,2,0,0,0,2,-9,2,1,0,4,9.172721372148194,8.897911984884509,0,3,0,0,0,-9,0,-1054.317096918894,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,72,40,15,1,1,-9,1,15.22258628932715,15.22258628932715,0,0,0,0,0,0,0,0,0,0,3.572648522255815,0,0,0,50,57,5,1,0,0,9,5,1,1247,0,0,0 +12100,14834,26963,26964,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,2,7.369986027062198,7.028859905756057,0,2,0,-9,27,0,1,45.75905058846534,0,0,0,44,3,2,3,3,3,2019,2,2,8,0,24,24,15,1,0,3,0,5.378607392093042,5.378607392093042,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.96,42.39,5,3,0,1,6,2,1,929.3333333333334,0,0,0 +12100,14834,26964,26963,-9,-9,2,1,0,44,1,0,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,37,0,-1,-15.81111027483392,0,0,1,45,2,2,1,3,3,2019,3,1,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.21,38.32,7,3,0,0,6,2,1,929.3333333333334,0,0,0 +12100,14834,26965,-9,26964,26963,7,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.472100976849,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,6,2,1,929.3333333333334,0,0,0 +12100,14835,26966,-9,26964,26963,3,1,0,21,2,0,2,0,2,-9,7,2,0,4,6.716104180785579,6.490520211193323,0,3,0,0,0,-9,0,-973.1643267657495,1,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,1,24,60,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.1,55.36,7,3,0,0,6,2,1,252,0,0,0 +12101,14836,26967,26968,-9,-9,2,1,1,48,1,0,2,0,2,-9,1,1,0,4,8.962487790307396,8.66590740547198,0,2,0,-9,17,0,6,-79.96956089845771,0,0,0,42,1,5,1,1,2,2019,1,1,9,0,40,50,15,1,1,1,0,11.59279118340838,11.59279118340838,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,5,1,417.25,0,0,0 +12101,14836,26968,26967,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,5,8.841578484610624,8.900495711574887,0,2,0,-9,18,0,-6,43.23528052455923,0,0,1,48,2,4,1,2,2,2019,1,2,7,0,37,50,15,1,0,1,0,18.39644667847564,18.39644667847564,0,0,0,0,0,0,0,1,1,0,7.614830174411976,0,0,0,51.14,60.45,6,1,0,0,9,5,1,417.25,0,0,0 +12101,14836,26969,-9,26968,26967,3,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1011.68826059302,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,5,1,417.25,0,0,0 +12101,14836,26970,-9,26968,26967,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-873.2472542500332,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,5,1,417.25,0,0,0 +12102,14837,26971,-9,-9,-9,1,1,0,23,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1007.260053059874,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,43.45,6,1,1,0,5,1,0,582.5,0,0,0 +12102,14837,26972,-9,26971,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-971.3549065640091,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,0,582.5,0,0,0 +12103,14838,26973,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,3,9.190603338535215,9.247710849740306,0,3,0,0,0,-9,0,-1007.163780121729,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,48,50,15,1,0,-9,0,28.23810769658002,28.23810769658002,0,0,0,0,0,0,0,0,0,0,0,0,5.594111143376277,3,37.75,56.99,6,1,0,0,9,5,1,911,0,0,0 +12104,14839,26974,-9,26975,26977,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.181133117829,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,1082,0,0,0 +12104,14839,26975,26977,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,2,8.378681866540342,8.365760958049989,0,2,0,-9,6,0,-3,-40.35567147513007,0,0,0,48,2,2,1,2,2,2019,1,2,0,0,40,50,15,1,0,1,0,10.16942556815989,10.16942556815989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.46,39.69,7,1,0,0,6,5,1,1082,0,0,0 +12104,14839,26976,-9,26975,26977,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.428693046993,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,6,5,1,1082,0,0,0 +12104,14839,26977,26975,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,2,9.253715955276014,9.236472260622076,0,2,0,-9,6,0,3,113.2610804071925,0,0,0,45,2,2,1,2,2,2019,1,1,10,0,65,40,15,1,0,1,0,16.68023651868458,16.68023651868458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.48,46.24,5,1,0,0,6,5,1,1082,0,0,0 +12104,14840,26978,-9,26975,26977,3,1,0,18,2,0,2,0,2,-9,7,2,0,3,6.058454311006466,6.62445951848566,5.459576498429564,3,0,0,0,-9,0,-998.0363528477617,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,9,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.287946271153633,0,0,0,39.86,35.6,5,1,0,0,6,2,1,340,0,0,0 +12105,14841,26979,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1017.049801786791,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.860568663956096,0,0,1,1,0,0,0,0,0,54,45,6,1,0,0,13,1,0,674,0,0,0 +12106,14842,26980,26981,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,4,8.204835670577385,8.798962483990246,8.037421063282109,1,0,-9,39,0,0,-17.49113628732843,0,0,0,59,3,4,1,2,2,2019,1,2,7,0,30,30,15,1,0,1,0,16.18845636402212,16.18845636402212,0,0,0,0,0,0,0,0,0,0,3.00612359295443,8.44777673216459,0,0,52.38,50.07,7,1,0,0,10,5,1,569,0,0,0 +12106,14842,26981,26980,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,4,8.084028722851984,8.000187361061577,0,1,0,-9,8,0,0,21.90341619992174,-9,0,0,59,3,4,1,-9,-9,2019,1,1,7,0,47,0,15,1,0,1,0,7.639380668422184,7.639380668422184,0,0,0,0,0,0,0,0,0,0,2.836344129170414,0,0,0,62.49,55.09,6,1,0,0,10,5,1,569,0,0,0 +12107,14843,26982,26983,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,5,8.580789578743634,8.603919336887548,0,2,0,-9,28,0,7,-.2579453831825639,0,0,0,50,1,3,1,3,2,2019,1,2,10,1,50,45,15,1,1,1,0,8.7452493790221,8.7452493790221,0,0,0,0,0,0,0,1,1,0,2.49025410517656,0,0,3,59.19,51.29,6,1,0,0,2,5,1,187.6666666666667,0,0,0 +12107,14843,26983,26982,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,3,8.802539613113083,8.452488230403462,0,2,0,-9,28,0,-7,12.38872679577613,0,0,0,57,2,5,1,2,2,2019,1,1,8,0,30,32,15,1,0,1,0,22.36718234595426,22.36718234595426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.55,36.47,1,1,0,0,2,5,1,187.6666666666667,0,0,0 +12107,14843,26984,-9,26983,26982,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.5963546275378,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,187.6666666666667,0,0,0 +12108,14844,26985,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,4,0,7.423829720159719,7.204231109295864,3,0,0,0,-9,0,-920.6238532878913,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.301691647964231,7.643520635763601,0,0,47.21,52.57,6,1,0,0,9,3,1,208,0,0,0 +12109,14845,26986,26987,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,5,0,5.836714860637685,5.661391785646577,1,0,-9,9,0,3,15.85666216385282,0,0,0,72,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.339229290986569,6.104579667212482,1.208672476937099,1,62.39,56.71,7,1,0,0,11,2,0,468,0,0,0 +12109,14845,26987,26986,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-3,-73.69717315507064,0,0,0,75,3,5,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,100.456046598385,0,0,0,0,1,1,0,0,0,0,0,46.8,36.36,5,1,0,0,11,2,0,468,0,0,0 +12110,14846,26988,26990,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,4,8.844013371611744,8.708537041328922,0,2,0,-9,9,0,1,-42.12582766896831,0,0,0,33,2,4,1,2,3,2019,1,1,9,0,47,40,15,1,0,1,0,15.89458558909098,15.89458558909098,0,0,0,0,0,0,0,1,1,0,7.069420707876892,0,0,0,40.01,58.61,6,1,0,0,6,4,1,1305.75,0,0,0 +12110,14846,26989,-9,26990,26988,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.713359090359,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,1305.75,0,0,0 +12110,14846,26990,26988,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,6.90059641687494,7.13413840890307,0,2,0,-9,9,0,-1,50.16631227420694,0,0,1,34,2,4,1,2,2,2019,1,2,8,0,18,17,15,1,0,1,0,7.35149148788615,7.35149148788615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,1,0,0,6,4,1,1305.75,0,0,0 +12110,14846,26991,-9,26990,26988,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.7371227006271,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,1,1305.75,0,0,0 +12111,14847,26992,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,8,3,1,1,0,4.745327337780124,4.959993633610358,3,0,0,0,-9,0,-1130.003736562287,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.465073783794762,0,0,19.01,22.64,4,1,0,0,13,1,0,570,0,0,0 +12112,14848,26993,26995,-9,-9,1,1,0,54,1,0,2,0,2,-9,6,3,0,3,0,6.844441947220663,6.177215655491548,2,0,-9,37,0,-4,7.251714788193131,0,0,0,58,3,1,3,2,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.720753693732826,48.37619371101214,2,53.05,44.84,5,1,0,0,8,2,1,477.5,0,0,0 +12112,14848,26994,-9,26993,26995,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.396741712283,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,2,1,477.5,0,0,0 +12112,14848,26995,26993,-9,-9,2,1,1,58,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,36,0,4,91.96543381865479,0,0,0,54,2,3,3,2,3,2019,4,1,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.13,22.07,2,1,0,0,8,2,1,477.5,0,0,0 +12112,14848,26996,-9,26993,26995,3,1,1,16,2,0,2,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-966.4194924895473,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.61299244778399,3,54.96,53.17,7,1,0,0,8,2,1,477.5,0,0,0 +12113,14849,26997,26998,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.60625613114939,8.281572258623997,0,1,0,-9,30,0,1,23.33772287367364,0,0,0,51,2,4,1,3,3,2019,1,2,12,0,50,58,15,1,0,1,0,13.12927949903214,13.12927949903214,0,0,0,0,0,0,0,0,0,0,0,0,1.084647556845924,3,55.36,51.57,4,1,0,0,6,5,1,577.5,0,0,0 +12113,14849,26998,26997,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.974244300120721,8.134942261714443,0,1,0,-9,30,0,-1,-116.8363651201164,0,0,0,52,2,3,1,3,3,2019,1,1,8,0,40,40,15,1,0,1,0,7.890884707055818,7.890884707055818,0,0,0,0,0,0,0,0,0,0,0,0,14.39657921192678,3,43.54,59.6,7,1,0,0,6,5,1,577.5,0,0,0 +12113,14850,26999,-9,26998,26997,3,1,0,23,2,0,0,0,2,-9,2,1,0,1,7.941178913280733,7.894348665179415,0,3,0,0,0,-9,0,-960.7570611444032,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,40,37,15,1,3,-9,1,8.860758585786522,8.860758585786522,0,0,0,0,0,0,0,0,0,0,2.012008671423291,0,12.71960078201333,3,54.55,30.52,6,1,0,0,6,4,1,975,0,0,0 +12114,14851,27000,-9,-9,-9,1,1,1,55,2,0,1,0,2,-9,1,1,0,3,8.447718988428349,8.992493180595382,0,4,0,0,0,-9,0,-1091.066236727232,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,45,48,15,1,0,-9,0,15.15786669148923,15.15786669148923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,5,4,0,1323.5,0,0,0 +12114,14851,27001,-9,-9,27000,2,1,1,17,2,0,1,1,2,0,7,2,0,4,3.639828277134168,3.760722455350682,0,4,0,0,0,-9,0,-1140.839620864465,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,5,4,0,1323.5,0,0,0 +12115,14852,27002,27003,-9,-9,2,1,1,44,1,0,1,0,2,-9,1,1,0,5,9.651529679226314,9.549057232372009,0,2,0,-9,9,0,1,-101.8698965682132,-9,0,0,43,2,4,1,2,3,2019,1,1,6,0,40,0,15,1,0,1,0,42.47679035258595,42.47679035258595,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,9,5,1,757.5,0,0,0 +12115,14852,27003,27002,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,4,7.539199354089494,7.103994228517412,0,2,0,-9,9,0,-1,59.66772365637688,0,0,1,44,2,5,1,2,2,2019,1,2,12,0,16,20,15,1,0,1,0,12.28940820951138,12.28940820951138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,757.5,0,0,0 +12115,14853,27004,-9,27003,27002,3,1,0,21,2,0,1,0,2,-9,2,1,0,3,7.293514415208481,7.663952456360142,0,3,0,0,0,-9,0,-1028.017398946244,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,37,15,1,0,-9,1,4.981055931817221,4.981055931817221,0,0,0,0,0,0,0,1,1,0,1.952514304909569,0,0,0,43.61,56.01,5,1,0,0,9,3,1,1296,0,0,0 +12116,14854,27005,27006,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,2,7.97496103955906,8.550392169443626,0,1,0,-9,28,0,3,67.74647060566271,0,0,0,51,3,3,1,2,2,2019,1,2,21,9,50,53,15,1,9,1,0,8.768979293763106,8.768979293763106,0,0,0,0,0,0,0,0,0,0,1.223346313353959,0,0,0,42.35,30.78,3,1,0,0,11,4,1,1239,0,0,0 +12116,14854,27006,27005,-9,-9,2,1,0,51,1,0,0,0,3,-9,2,1,0,3,7.291550768329413,7.34140833967346,0,1,0,-9,28,0,-3,45.51742789198233,0,0,0,54,2,2,1,3,3,2019,1,1,14,3,18,18,15,1,3,1,0,9.929550628579985,9.929550628579985,0,0,0,0,0,0,0,0,0,0,2.975500014013687,0,0,0,30.58,57.62,3,1,0,0,11,4,1,1239,0,0,0 +12116,14855,27007,-9,27006,27005,3,1,0,22,2,0,0,0,1,-9,2,1,0,5,6.473066434989965,6.908405050749594,0,3,0,0,0,-9,0,-808.2037418331524,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,22,9,10,8,15,1,9,-9,1,8.433681077995889,8.433681077995889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.5,53.54,5,1,0,0,11,2,1,867,0,0,0 +12117,14856,27008,27010,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,4,8.059052768993455,8.104054068453621,0,2,0,-9,20,0,1,46.42187048357589,0,0,0,44,1,4,1,2,2,2019,1,1,8,0,42,42,15,1,0,1,0,9.517710586657683,9.517710586657683,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,1,5,1,368,0,0,0 +12117,14856,27009,-9,27008,27010,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.147960124807,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,5,1,368,0,0,0 +12117,14856,27010,27008,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,4,8.71540176906278,8.781371424063449,0,2,0,-9,20,0,-1,-52.05279635659412,0,0,0,45,1,4,1,2,1,2019,1,2,7,0,77,76,15,1,0,1,0,11.65892356300965,11.65892356300965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,1,5,1,368,0,0,0 +12118,14857,27011,27012,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,2,7.761517616598917,7.659745797568876,0,1,0,-9,32,0,-7,117.126131581986,0,0,0,64,2,4,1,3,3,2019,1,1,9,0,38,40,15,1,0,1,0,9.360011448874419,9.360011448874419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,4,3,0,0,6,3,1,298,0,0,0 +12118,14857,27012,27011,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,0,0,0,1,0,-9,32,0,7,-46.01367901839797,0,0,0,57,2,2,1,3,3,2019,1,2,8,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,2,3,0,0,6,3,1,298,0,0,0 +12118,14858,27013,-9,27011,27012,3,1,0,29,2,0,0,0,1,-9,2,1,0,4,8.318159145930832,8.327522544466714,0,3,0,0,0,-9,0,-1063.971151457462,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,37,15,1,0,-9,1,13.07039476984679,13.07039476984679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.05,55.41,6,3,0,0,6,4,1,873,0,0,0 +12119,14859,27014,27015,-9,-9,1,1,1,23,1,0,0,0,1,-9,2,1,0,4,7.982909124465674,8.502970928961348,0,1,0,-9,1,-9,1,87.18201134946247,-9,1,0,22,1,4,1,1,-9,2019,1,2,12,2,48,0,15,1,2,1,0,8.521940032668603,8.521940032668603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,6,1,0,0,9,5,0,2703.5,0,0,0 +12119,14859,27015,27014,-9,-9,2,1,0,22,1,0,0,0,1,-9,2,1,0,4,8.402289969202505,8.297855526795963,0,1,0,-9,1,-9,-1,13.09497572595688,-9,1,1,23,1,4,1,-9,-9,2019,1,1,12,0,37,0,15,1,2,1,0,14.25986626143509,14.25986626143509,0,0,0,0,0,0,0,0,0,0,5.28536907124192,0,0,0,46,58,5,1,0,0,9,5,0,2703.5,0,0,0 +12120,14860,27016,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,2,1,0,3,7.652994402109144,7.707164490519793,0,3,0,-9,0,-9,0,-928.5810088682283,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,42,0,15,1,0,-9,0,4.843347822214001,4.843347822214001,0,0,0,0,0,0,0,0,0,0,0,0,4.431647983341442,3,54.96,53.17,6,1,0,0,13,3,1,2245,0,0,0 +12121,14861,27017,-9,27018,27019,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.5344575411424,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,2,0,0,9,5,1,554.3333333333334,0,0,0 +12121,14861,27018,27019,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,5,8.88207035121563,8.591637935413926,0,2,0,-9,9,0,-3,-77.66232891657121,0,0,1,46,2,3,1,-9,-9,2019,1,1,1,0,37,41,15,1,0,1,0,25.91916225874875,25.91916225874875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,9,5,1,554.3333333333334,0,0,0 +12121,14861,27019,27018,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,3,9.49798293869414,9.640784150345752,0,2,0,-9,13,0,3,58.93585962715011,0,0,0,43,1,5,1,3,3,2019,1,2,9,0,70,0,15,1,0,1,0,20.05097326456171,20.05097326456171,0,0,0,0,0,0,0,0,0,0,7.620887517433372,0,0,0,48.14,53.42,6,3,0,0,9,5,1,554.3333333333334,0,0,0 +12122,14862,27020,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,3,8.343040396275578,8.727112389923452,0,1,0,-9,7,0,2,46.00848297392395,0,0,1,-9,-9,-9,-9,1,2,2019,1,2,8,1,40,46,15,1,1,-9,0,12.70609091115414,12.70609091115414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,6,1,0,0,2,5,0,322,0,0,0 +12122,14863,27021,-9,-9,-9,2,1,0,30,2,0,0,0,1,-9,2,1,0,4,8.1566675117408,7.865599687170146,0,1,0,-9,7,0,-2,-44.2478502803472,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,11,0,37,44,15,1,2,-9,0,10.60451302452267,10.60451302452267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,1,0,0,2,5,0,1473,0,0,0 +12123,14864,27022,27024,-9,-9,1,1,1,40,1,1,1,0,2,-9,2,1,0,3,8.674093561412777,8.303727399617252,0,2,0,-9,7,0,5,232.3871341235204,0,0,0,35,2,4,1,3,3,2019,1,2,14,2,37,37,15,1,2,1,0,11.95500400461136,11.95500400461136,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,6,1,0,1,5,4,1,785,0,0,0 +12123,14864,27023,-9,27024,27022,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.195698351149,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,4,1,785,0,0,0 +12123,14864,27024,27022,-9,-9,2,1,0,35,1,1,1,0,2,-9,2,1,0,4,7.358095542791004,7.268304027044302,0,2,0,-9,7,0,-5,15.27817093424204,0,0,1,40,2,3,1,-9,-9,2019,1,1,11,0,15,36,15,1,0,1,0,8.094508225304679,8.094508225304679,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,4,1,0,1,5,4,1,785,0,0,0 +12124,14865,27025,27026,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,7.360234041811358,7.59167989901709,1,0,-9,9,0,-2,64.42626110428259,0,0,0,74,3,4,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.542544944771626,7.536402265468109,0,0,56.77,52.22,6,1,0,0,9,3,1,2072.5,0,0,0 +12124,14865,27026,27025,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,4.931833468777259,4.810527071515388,1,0,-9,51,0,2,-58.20378950811367,0,0,0,72,1,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.933156384756234,4.707790559109492,0,0,59.71,50.89,6,1,0,0,9,3,1,2072.5,0,0,0 +12125,14866,27027,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,5,8.619400473742076,8.479784444276003,0,3,0,-9,0,0,0,-1072.146917626767,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,25,15,1,0,-9,0,18.92005427529726,18.92005427529726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,5,5,0,297,0,0,0 +12126,14867,27028,27029,-9,-9,2,1,0,51,1,0,1,0,3,-9,6,3,0,1,0,0,0,2,0,-9,7,0,0,-35.0677532702707,0,0,0,51,3,3,1,3,3,2019,3,1,29,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.78,17.81,1,1,0,1,13,2,1,533,0,0,0 +12126,14867,27029,27028,-9,-9,1,1,1,51,1,0,1,0,3,-9,2,1,0,3,7.969779605565092,8.241291508621245,0,2,0,-9,7,0,0,6.711171049648976,0,0,0,51,3,1,3,3,2,2019,2,2,11,0,50,0,15,1,0,3,0,5.943306777551551,5.943306777551551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,5,1,0,1,13,2,1,533,0,0,0 +12126,14867,27030,-9,27028,27029,5,1,1,17,2,0,1,1,3,0,7,2,0,5,0,5.838995358856566,5.924061731682977,2,0,0,0,-9,0,-998.3562927283174,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.831343734769658,0,0,0,62.39,56.71,6,1,0,0,13,2,1,533,0,0,0 +12126,14868,27031,-9,27028,27029,3,1,1,27,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-922.9032196494677,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,4,1,1,1,13,1,1,292,0,0,0 +12126,14869,27032,-9,27028,27029,4,1,1,25,2,0,1,0,3,-9,2,1,0,5,8.197335827750031,8.030352524690976,0,3,0,0,0,-9,0,-1015.229263264,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,50,50,15,1,0,-9,1,6.730127332664709,6.730127332664709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,13,4,1,129,0,0,0 +12127,14870,27033,27035,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,4,7.571258977983154,7.440235976424589,0,2,0,-9,17,0,9,42.20226300724729,0,0,0,38,2,4,1,2,2,2019,1,1,8,1,50,0,15,1,1,1,0,3.913134818044896,3.913134818044896,0,0,0,0,0,0,0,1,1,0,7.488230532194921,0,0,0,54.2,57.49,5,1,0,0,5,2,1,447.25,0,0,0 +12127,14870,27034,-9,27035,27033,4,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1027.864771235874,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,2,1,447.25,0,0,0 +12127,14870,27035,27033,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,4,0,0,0,2,0,-9,17,0,0,-115.4733057106146,0,0,1,47,2,4,1,3,3,2019,1,2,12,0,0,31,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,5,2,1,447.25,0,0,0 +12127,14870,27036,-9,27035,27033,3,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-933.0995508078561,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,5,2,1,447.25,0,0,0 +12128,14871,27037,27038,-9,-9,1,1,1,55,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,29,0,3,-47.6285134599897,0,0,0,52,2,3,1,2,2,2019,3,2,5,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.52,4.92,1,1,0,0,1,2,1,402.5,0,0,0 +12128,14871,27038,27037,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,3,7.724316172162503,7.803646408379057,0,2,0,-9,6,0,-3,-26.36857229788512,-9,0,0,55,2,1,3,-9,-9,2019,2,1,18,6,30,0,15,1,6,3,0,8.554407052793316,8.554407052793316,0,0,0,0,0,0,0,1,1,0,0,0,21.51403189467509,2,34.08,54.76,5,1,0,0,1,2,1,402.5,0,0,0 +12128,14872,27039,-9,27038,27037,3,1,1,26,2,0,1,0,2,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1001.540821088847,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.0632995352031,3,58.47,50.22,4,1,0,0,1,1,1,1546,0,0,0 +12128,14873,27040,-9,27038,27037,4,1,0,22,2,0,1,0,2,1,2,1,0,4,7.917088772984053,8.072667652018833,0,3,0,0,0,-9,0,-969.6709072000762,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,52,0,15,1,2,-9,1,4.580719209348846,4.580719209348846,0,0,0,0,0,0,0,1,1,0,0,0,9.043053850665778,3,43.35,52.94,4,1,0,0,1,3,1,1355,0,0,0 +12129,14874,27041,27044,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,5,8.585157941608484,8.723169638317865,0,2,0,-9,6,0,-3,6.872754522319865,0,0,1,36,1,4,1,2,2,2019,1,2,10,0,48,38,15,1,0,1,0,14.13691599812773,14.13691599812773,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,57.22,6,4,0,0,8,4,1,729.5,0,0,0 +12129,14874,27042,-9,27041,27044,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.8722348338945,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,4,1,729.5,0,0,0 +12129,14874,27043,-9,27041,27044,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.473304718183,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,4,1,729.5,0,0,0 +12129,14874,27044,27041,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,4,8.222422747244803,8.31377923569646,0,2,0,-9,10,0,3,-103.3979888253359,0,0,0,33,1,5,1,2,2,2019,1,1,1,0,32,38,15,1,0,1,0,14.27943474801119,14.27943474801119,0,0,0,0,0,0,0,1,1,0,4.523760025423543,0,0,0,57.16,56.15,5,4,0,0,8,4,1,729.5,0,0,0 +12130,14875,27045,27046,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.356047661718669,8.098890698943933,0,1,0,-9,10,0,-8,-58.84079419869944,0,0,0,62,2,3,1,3,3,2019,1,2,9,0,40,40,15,1,0,1,0,11.54726273882171,11.54726273882171,0,0,0,0,0,0,0,0,0,0,0,0,2.981433738035877,3,56.7,45.91,6,1,0,0,12,5,1,3021,0,0,0 +12130,14875,27046,27045,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,3,8.202384208896184,7.96389532999904,0,1,0,-9,10,0,8,60.67574946876336,0,0,0,54,2,2,1,2,2,2019,1,1,6,0,34,41,15,1,0,1,0,12.71174193990409,12.71174193990409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,12,5,1,3021,0,0,0 +12131,14876,27047,-9,27048,27050,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1001.445559684155,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,6,3,1,496.75,0,0,0 +12131,14876,27048,27050,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,5,7.671756220387609,7.568983168156483,0,2,0,-9,23,0,-2,.1669780737639187,0,0,1,45,2,4,1,2,2,2019,1,2,14,2,29,29,15,1,2,1,0,7.863413542159624,7.863413542159624,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,5,1,0,0,6,3,1,496.75,0,0,0 +12131,14876,27049,-9,27048,27050,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.121536027939,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,3,1,496.75,0,0,0 +12131,14876,27050,27048,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.449008397311747,8.063394861480941,0,2,0,-9,23,0,2,-19.37327237645159,0,0,0,43,2,5,1,2,2,2019,1,1,6,0,47,41,15,1,0,1,0,7.758030093933209,7.758030093933209,0,0,0,0,0,0,0,1,1,0,3.373391149647828,0,0,0,56.82,56.51,7,1,0,0,6,3,1,496.75,0,0,0 +12132,14877,27051,-9,-9,-9,1,1,1,79,2,0,0,0,3,-9,4,3,0,4,0,6.87289534382226,6.932647996652539,3,0,0,0,-9,0,-1028.059649718443,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.055411342178468,7.26866645173081,0,0,29.87,43.07,7,1,0,0,12,2,1,333,0,0,0 +12133,14878,27052,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,2,0,5.313701518104856,4.662209226110315,3,0,0,0,-9,0,-809.1100882551034,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.23261848179331,0,0,37.16,53.83,6,1,0,0,12,2,0,146,0,0,0 +12134,14879,27053,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1040.594093290145,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49,34,5,1,0,0,6,1,1,447,0,0,0 +12135,14880,27054,27055,-9,-9,2,1,0,40,1,0,1,0,1,-9,2,1,0,5,8.830938033444227,8.812961592492025,0,2,0,-9,6,0,-3,20.03328273957638,0,0,1,43,2,3,3,-9,-9,2019,2,1,0,0,38,43,15,1,0,3,0,22.41488864291118,22.41488864291118,0,0,0,0,0,0,0,1,1,0,3.482437670687414,0,0,0,62.39,56.71,7,1,0,0,9,4,1,1568,0,0,0 +12135,14880,27055,27054,-9,-9,1,1,1,43,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,10,0,3,88.27861573431018,0,0,0,40,1,5,1,3,3,2019,3,2,22,10,0,60,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.96,50.72,3,3,1,0,9,4,1,1568,0,0,0 +12135,14880,27056,-9,27054,27055,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.144632220105,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,4,1,1568,0,0,0 +12136,14881,27057,27058,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,2,8.701153549920534,8.553765572637417,0,1,0,-9,10,0,-1,-78.23862942864501,0,0,0,55,3,3,1,3,3,2019,1,1,24,11,40,39,15,1,11,1,0,15.87315640825911,15.87315640825911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.19,48.26,6,1,0,0,11,5,1,332,0,0,0 +12136,14881,27058,27057,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,3,8.469117735806982,8.255758561094261,0,1,0,-9,10,0,1,38.9921031477421,0,0,0,54,1,2,1,2,-9,2019,1,2,7,0,50,40,15,1,0,1,0,10.58192605669975,10.58192605669975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,11,5,1,332,0,0,0 +12136,14882,27059,-9,27057,27058,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.539956948212374,7.228062523800807,0,3,0,0,0,-9,0,-1108.639823382294,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,11,1,39,0,15,1,1,-9,1,5.874724638638847,5.874724638638847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,6,1,0,0,11,3,1,1111,0,0,0 +12137,14883,27060,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,1,1,0,2,7.284421115227774,7.344261661951384,0,3,0,0,0,-9,0,-921.2468997474056,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,30,15,1,0,-9,0,5.288180695178896,5.288180695178896,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.13,40.75,4,1,0,1,2,3,0,2012,0,0,0 +12138,14884,27061,-9,-9,-9,1,1,0,43,3,0,2,0,2,-9,2,1,0,5,8.106213739769768,8.169466270691281,0,4,0,0,0,-9,0,-1067.673453945876,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,40,15,1,0,-9,0,12.76919839920025,12.76919839920025,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,4,4,0,0,8,3,0,1864,0,0,0 +12139,14885,27062,27063,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,55,0,-3,54.71074091205537,0,0,0,78,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.342971507511627,0,0,0,63.64,14.36,7,2,0,0,7,3,1,551,0,0,0 +12139,14885,27063,27062,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,7.966125577530676,8.190129458767165,1,0,-9,53,0,3,120.369486232053,0,0,0,75,2,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.175246273372884,7.75155157984267,21.86310300836153,1,61.19,36.58,7,1,0,0,7,3,1,551,0,0,0 +12140,14886,27064,27065,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,8.119362737487002,7.477724102469746,0,1,0,-9,34,0,-11,-76.81948337384237,0,0,0,70,3,2,3,3,3,2019,2,1,9,0,30,38,15,1,0,4,0,10.83956390306907,10.83956390306907,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.47,52.19,6,1,0,0,2,4,1,318,0,0,0 +12140,14886,27065,27064,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,8.254801012446821,8.854857012268045,1,0,-9,30,0,11,-85.15415496500867,0,0,0,59,2,2,1,3,3,2019,3,2,10,1,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.45235102469612,8.436562995758166,0,0,39.15,48.86,1,1,0,0,2,4,1,318,0,0,0 +12141,14887,27066,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.345645646806789,8.050259655012839,0,3,0,0,0,-9,0,-929.2503085656524,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,40,0,15,1,0,-9,0,11.02780665799023,11.02780665799023,0,0,0,0,0,0,0,0,0,0,5.040275955721431,0,0,0,46.69,58.35,6,1,0,0,12,4,0,265,0,0,0 +12142,14888,27067,27068,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.813487698930628,8.118737037150268,0,1,0,-9,34,0,-6,-149.623721018092,0,0,0,57,2,3,1,3,3,2019,1,2,10,0,67,62,15,1,0,1,0,3.55025353784005,3.55025353784005,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,5,1,0,0,1,4,0,440,0,0,0 +12142,14888,27068,27067,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.028258742122061,7.737840113440349,0,1,0,-9,34,0,6,17.63144741240525,0,0,0,51,2,4,1,2,2,2019,1,1,11,0,37,36,15,1,0,1,0,9.402425078768871,9.402425078768871,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.56,40.31,2,1,0,0,1,4,0,440,0,0,0 +12142,14889,27069,-9,27067,27068,3,1,1,31,2,0,0,0,2,-9,2,1,0,3,8.083945012296683,8.25787457635735,0,3,0,0,0,-9,0,-1068.042227802038,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,52,52,15,1,0,-9,1,8.914185376199653,8.914185376199653,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,59.08,3,1,0,0,1,4,0,1060,0,0,0 +12142,14890,27070,-9,27067,27068,4,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.607768177182793,7.790348300546715,0,3,0,0,0,-9,0,-986.5953289818318,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,40,15,1,1,-9,1,7.498070600261808,7.498070600261808,0,0,0,0,0,0,0,1,1,0,.3567097965579478,0,0,0,49,58,5,1,0,0,1,3,0,955,0,0,0 +12142,14891,27071,-9,27067,27068,5,1,1,26,2,0,0,0,2,-9,2,1,0,5,8.149818575263787,8.45499872346627,0,3,0,0,0,-9,0,-989.876827205915,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,52,40,15,1,0,-9,1,8.483249559646215,8.483249559646215,0,0,0,0,0,0,0,1,1,0,.1454981910446842,0,0,0,54.69,57.47,6,1,0,0,1,4,0,316,0,0,0 +12142,14892,27072,-9,27067,27068,6,1,1,22,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1062.814347942206,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,57.88,5,1,0,0,1,1,0,411,0,0,0 +12143,14893,27073,-9,27075,27076,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.475615746841,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,1,1426.5,0,0,0 +12143,14893,27074,-9,27075,27076,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.153084798891,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,3,1,1426.5,0,0,0 +12143,14893,27075,27076,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,7.811021298306069,7.782529095615805,0,2,0,-9,7,0,-3,95.06868760556738,0,0,1,46,2,4,3,2,2,2019,2,2,16,5,24,21,15,1,5,3,0,13.71829737320335,13.71829737320335,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,1,6,3,1,1426.5,0,0,0 +12143,14893,27076,27075,-9,-9,2,1,1,46,1,0,2,0,2,-9,3,3,0,4,6.681806830537849,6.871513720155411,0,2,0,-9,7,0,3,121.7495955623878,0,0,0,43,1,4,1,2,2,2019,3,1,17,6,39,47,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.18,62.68,5,1,1,0,6,3,1,1426.5,0,0,0 +12144,14894,27077,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,2,8.026030585439569,8.180763126171911,0,3,0,0,0,-9,0,-1030.710132477906,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,38,39,15,1,2,-9,0,9.656811034744614,9.656811034744614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.78,31.77,4,1,0,0,11,4,1,702,0,0,0 +12145,14895,27078,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,2,0,6.307641460895637,6.442491320168747,3,0,-9,0,-9,0,-1020.507955343015,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.685397641275661,6.6871122576567,0,0,47.2,42.19,6,1,0,0,9,2,0,406,0,0,0 +12146,14896,27079,27080,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,3,8.659516479195638,8.573923483855667,0,2,0,-9,27,0,-2,-1.70195478164893,0,0,0,48,2,4,1,2,2,2019,1,2,8,0,36,37,15,1,0,1,0,16.37409553551412,16.37409553551412,0,0,0,0,0,0,0,1,1,0,0,0,14.91177916041802,3,54.94,53.18,6,1,0,0,8,4,1,1128.666666666667,0,0,0 +12146,14896,27080,27079,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,8.438960437013828,8.184585465821828,0,2,0,-9,6,0,2,74.289301854825,0,0,0,46,2,3,1,3,3,2019,1,1,9,0,38,38,15,1,1,1,0,13.06737220095539,13.06737220095539,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,8,4,1,1128.666666666667,0,0,0 +12146,14896,27081,-9,27079,27080,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-869.4111358796331,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,8,4,1,1128.666666666667,0,0,0 +12146,14897,27082,-9,27079,27080,3,1,1,18,2,0,2,1,2,0,7,2,0,4,6.36035506196072,6.36273858014308,0,3,0,0,0,-9,0,-1055.667166804771,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,97,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.063110386415705,0,0,0,48,59,5,1,0,0,8,4,1,2450,0,0,0 +12147,14898,27083,27084,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,3,4.449756387659355,7.433844672796628,7.60568638953394,1,0,-9,27,0,5,71.68553281649524,0,0,0,60,1,3,3,2,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.727397019562008,7.93862258072206,0,0,46.17,46.33,6,1,0,0,5,4,0,1151.5,0,0,0 +12147,14898,27084,27083,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,3,0,7.525310449748675,7.472021014414486,1,0,-9,27,0,-5,-43.39865020184454,0,0,0,65,1,3,3,3,3,2019,4,1,12,1,0,8,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.90563968818744,7.73601977608062,8.098393197889294,3,46.33,55.93,6,1,0,0,5,4,0,1151.5,0,0,0 +12148,14899,27085,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,2,1,0,3,6.757475263994321,6.466656125210662,0,4,0,0,0,-9,0,-1067.048095265452,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,24,15,1,0,-9,0,3.159309274807198,3.159309274807198,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,50.45,5,2,0,0,9,2,1,1282,0,0,0 +12149,14900,27086,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-927.1706677865268,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.15,34.19,6,4,1,0,5,1,0,178,0,0,0 +12149,14901,27087,-9,27086,-9,2,1,1,19,2,0,0,0,2,-9,2,1,0,3,7.589745820806177,7.369867602320049,0,3,0,0,0,-9,0,-812.8794166016312,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,35,25,15,1,1,-9,1,7.43939667670266,7.43939667670266,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.91,53.54,6,4,0,0,5,3,0,751,0,0,0 +12150,14902,27088,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,5.908023180677678,6.186846914343256,3,0,0,0,-9,0,-1034.670880143986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.789020931253794,0,0,60.45,38.55,7,1,0,0,12,2,0,514,0,0,0 +12151,14903,27089,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,4,9.136597193170697,8.845763267082896,0,3,0,0,0,-9,0,-1099.909785441499,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,10,15,1,0,-9,0,19.20116121973058,19.20116121973058,0,0,0,0,0,0,0,1,1,0,6.289863659784369,0,0,0,51.83,57.2,6,1,0,0,12,5,1,98,0,0,0 +12152,14904,27090,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,9.186768236313384,9.061116648500484,0,3,0,0,0,-9,0,-983.7859166223374,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,16,4,45,45,15,1,4,-9,0,24.86529834070761,24.86529834070761,0,0,0,0,0,0,0,0,0,0,8.07075367840498,0,0,0,30.59,64.25,6,1,0,0,8,5,0,235,0,0,0 +12153,14905,27091,27092,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,6.136322550581614,6.255058752850708,1,0,-9,7,0,0,-129.7266194063178,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.863544678268616,6.73778985916227,0,0,59.31,49.81,7,1,0,0,4,2,1,205,0,0,0 +12153,14905,27092,27091,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.444467317659424,6.363419440359977,1,0,-9,7,0,0,-68.3083195375399,0,0,0,67,3,3,3,3,3,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.792901319336714,6.581560742660947,0,0,58.3,47.38,6,1,0,0,4,2,1,205,0,0,0 +12154,14906,27093,-9,-9,-9,1,1,0,45,2,0,1,0,3,-9,2,1,0,4,8.291211626100829,8.405298626909946,0,4,0,0,0,-9,0,-1056.631580978412,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,80,40,15,1,0,-9,0,5.613468181076518,5.613468181076518,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,3,1,0,0,1,4,1,4507,0,0,0 +12155,14907,27094,27095,-9,-9,1,1,1,57,1,0,0,0,2,-9,1,1,0,4,0,8.24058132556137,8.066022268049233,1,0,-9,6,0,-2,15.35298219500235,0,0,0,59,2,3,1,-9,-9,2019,1,2,9,0,35,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.850406623622426,8.250169568646783,0,0,53.33,53.71,6,1,0,0,12,4,1,423,0,0,0 +12155,14907,27095,27094,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.436559743938979,7.982142605624339,6.435060376255051,1,0,-9,6,0,2,8.236140713771334,0,0,0,57,2,4,1,3,3,2019,1,1,10,0,15,16,15,1,0,1,0,15.88715904973673,15.88715904973673,0,0,0,0,0,0,0,0,0,0,0,6.900909941501371,0,0,57.33,53.46,6,1,0,0,12,4,1,423,0,0,0 +12156,14908,27096,27097,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,7.598357815236982,8.246374837563232,7.161639594169287,1,0,-9,7,0,0,68.20921499536567,0,0,0,69,1,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,.5486483679627654,0,0,0,0,4.989814449867527,1,1,0,3.663524508238929,7.556860177287774,0,0,58.33,39.49,6,1,0,0,9,5,1,169,0,0,0 +12156,14908,27097,27096,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,2,0,8.469919986620198,8.039299060069332,1,0,-9,7,0,0,19.32273439859992,0,0,0,69,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.421058292304382,8.258503608221272,0,0,35.63,47.41,6,1,0,0,9,5,1,169,0,0,0 +12157,14909,27098,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,4,3,0,1,0,5.575920232791406,5.512510831990955,3,0,0,0,-9,0,-856.6886102461452,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,5.847697177629058,0,0,0,0,50.25849739878534,1,1,0,5.668315991749179,5.828540404634059,0,0,30.08,32.94,2,1,0,0,9,2,0,331,0,0,0 +12158,14910,27099,27100,-9,-9,1,1,0,85,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,64,0,-7,-17.78395751954073,0,0,0,92,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,7.216711707982236,0,0,0,1,1,0,0,0,48.62374075194496,1,49.83,29.02,4,1,0,0,12,2,1,917.5,0,0,0 +12158,14910,27100,27099,-9,-9,2,1,1,92,1,0,0,0,3,-9,4,3,0,2,0,7.039327696932576,7.095675727242963,1,0,-9,8,0,7,-54.23778263559461,0,0,0,85,3,2,3,-9,-9,2019,4,1,12,4,0,0,15,4,4,4,0,0,0,1,0,8.907041963039466,0,0,0,0,1,1,0,2.365328871835999,7.043096751976137,0,0,46.92,26.38,5,1,0,0,12,2,1,917.5,0,0,0 +12158,14911,27101,-9,27099,27100,3,1,1,59,2,0,0,0,3,-9,2,1,0,4,7.986326009206149,8.404171327205674,5.16584173695192,3,0,0,0,-9,0,-938.8357967136724,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,47,47,15,1,0,-9,1,9.305582421674915,9.305582421674915,0,0,0,0,0,0,0,1,1,0,0,5.888561298084507,33.9997435494698,3,57.16,56.15,6,1,0,0,12,4,1,97,0,0,0 +12159,14912,27102,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,2,0,7.037190247487159,7.671342994620003,3,0,-9,0,1,0,-1033.011935541189,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.220652045871604,0,0,43.85,52.24,3,1,0,0,12,3,1,439,0,0,0 +12160,14913,27103,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,7.889375394100997,7.922370001789981,0,3,0,0,0,-9,0,-1068.897447617227,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,39,15,1,0,-9,0,7.38522152056002,7.38522152056002,0,0,0,0,0,0,0,0,0,0,.8674963229720161,0,0,0,59.31,49.81,5,1,0,0,12,4,1,241,0,0,0 +12161,14914,27104,27106,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,3,9.234702009548737,9.276268054160393,0,2,0,-9,8,0,3,-3.236189634861415,0,0,0,42,2,3,1,-9,-9,2019,1,2,7,0,40,52,15,1,0,1,0,29.10405640809998,29.10405640809998,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,5,1,0,0,13,4,1,1687.333333333333,0,0,0 +12161,14914,27105,-9,27106,27104,4,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1021.813854249127,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,13,4,1,1687.333333333333,0,0,0 +12161,14914,27106,27104,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,3,7.505761565507994,7.334023756309405,0,2,0,-9,22,0,-3,-57.5218082829943,0,0,1,45,2,3,1,3,3,2019,1,1,6,0,22,24,15,1,0,1,0,7.805025073926261,7.805025073926261,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.29,52.11,6,1,0,0,13,4,1,1687.333333333333,0,0,0 +12161,14915,27107,-9,27106,27104,3,1,1,18,2,0,2,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1032.504132260722,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,1,1,1,0,13,4,1,207,0,0,0 +12162,14916,27108,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,3,8.111282820695001,8.125515174627427,2.752282571119083,3,0,0,0,-9,0,-921.2654074528623,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,0,15,1,0,-9,0,10.42071324436144,10.42071324436144,0,0,0,0,0,0,0,0,0,0,5.204882031021609,0,0,0,43.59,59.64,6,1,0,0,9,4,0,577,0,0,0 +12163,14917,27109,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,2,0,6.938203746616145,7.164885037720364,3,0,-9,0,-9,0,-1044.684645171062,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.837252589643835,6.944408605311795,0,0,64.39,28.77,6,1,0,0,4,2,0,557,0,0,0 +12164,14918,27110,27111,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,9.350059149056769,9.503525664113498,0,1,0,-9,10,0,7,-31.50336457127728,0,0,0,53,2,2,1,2,2,2019,1,2,6,0,56,50,15,1,0,1,0,26.47549418462885,26.47549418462885,0,0,0,0,0,0,0,0,0,0,.5090919092775732,0,0,0,64.47,51.45,6,1,0,0,11,5,1,686.5,0,0,0 +12164,14918,27111,27110,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,8.201599865037014,8.296824737552301,0,1,0,-9,10,0,-7,6.076821549039236,0,0,0,60,2,4,1,3,3,2019,1,1,6,0,37,41,15,1,0,1,0,10.46101458958859,10.46101458958859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,6,1,0,0,11,5,1,686.5,0,0,0 +12164,14919,27112,-9,27111,27110,3,1,1,26,2,0,0,0,1,-9,2,1,0,5,7.723723515470082,7.840354497943475,0,3,0,0,0,-9,0,-964.1754722920175,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,37,38,15,1,0,-9,1,7.639752578984178,7.639752578984178,0,0,0,0,0,0,0,0,0,0,1.92918959184448,0,0,0,62.39,56.71,7,1,0,0,11,3,1,420,0,0,0 +12165,14920,27113,27114,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,3,8.705431628408689,8.968320597557833,7.610262194137114,1,0,-9,9,0,2,23.00188271389223,0,0,0,65,3,4,3,-9,-9,2019,2,1,10,0,45,45,15,1,1,4,0,14.9271216787852,14.9271216787852,0,0,0,0,0,0,0,1,1,0,5.050786182021592,7.69755883987916,0,0,52,48,5,1,0,0,9,5,1,267,0,0,0 +12165,14920,27114,27113,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,50,0,-2,49.40456512271251,0,0,0,67,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.087765235126655,0,0,0,51.83,57.2,6,1,0,0,9,5,1,267,0,0,0 +12166,14921,27115,27118,-9,-9,1,1,1,42,1,1,5,0,3,-9,8,3,1,4,0,0,0,2,0,-9,18,0,2,0,0,0,0,40,2,2,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,6,1,1,675.3333333333334,0,0,0 +12166,14921,27116,-9,27118,27115,7,1,1,8,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.1246137614202,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,6,1,1,675.3333333333334,0,0,0 +12166,14921,27117,-9,27118,27115,6,1,1,10,2,1,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1024.066718503925,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,3,0,0,6,1,1,675.3333333333334,0,0,0 +12166,14921,27118,27115,-9,-9,2,1,0,40,1,1,5,0,2,-9,6,3,0,2,0,0,0,2,0,-9,18,0,-2,0,0,0,1,42,3,4,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.46296177645399,1,37.41,41.3,4,3,0,0,6,1,1,675.3333333333334,0,0,0 +12166,14921,27119,-9,27118,27115,5,1,1,15,2,1,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1091.193545923259,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,6,1,1,675.3333333333334,0,0,0 +12166,14921,27120,-9,27118,27115,8,1,0,1,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.313753755209,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,3,0,0,6,1,1,675.3333333333334,0,0,0 +12167,14922,27121,27122,-9,-9,2,1,0,46,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,8,0,-12,0,0,0,0,58,2,2,3,-9,-9,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.393622771269783,1,41.6,23.15,2,1,0,0,4,1,0,1591.5,0,0,0 +12167,14922,27122,27121,-9,-9,1,1,1,58,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,8,0,12,0,0,0,0,46,2,2,3,3,3,2019,4,2,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.45741243264595,1,37.65,27.39,4,1,0,0,4,1,0,1591.5,0,0,0 +12168,14923,27123,-9,27124,27125,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.0238425850359,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,4,4,0,474.5,0,0,0 +12168,14923,27124,27125,-9,-9,1,1,0,34,1,0,2,0,1,-9,2,1,0,2,8.043959489218212,8.360451728643628,0,2,0,-9,7,0,-6,49.83756950075093,0,0,1,40,2,3,1,2,2,2019,1,2,11,1,40,35,15,1,1,1,0,11.68483096408048,11.68483096408048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,6,1,0,0,4,4,0,474.5,0,0,0 +12168,14923,27125,27124,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,3,7.746005041026073,8.18840343362568,0,2,0,-9,7,0,6,-177.789637213564,0,0,0,34,1,2,1,3,-9,2019,1,1,3,0,40,35,15,1,0,1,0,7.224335806990144,7.224335806990144,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,2,0,0,4,4,0,474.5,0,0,0 +12168,14923,27126,-9,27124,27125,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.506098060067,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,4,4,0,474.5,0,0,0 +12169,14924,27127,27128,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,3,0,3,0,0,1,0,24,2,3,1,2,2,2019,1,2,11,1,0,44,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.57,51.43,6,1,0,0,5,1,0,416.5,0,0,0 +12169,14924,27128,27127,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,3,0,-3,0,0,1,1,27,2,3,1,-9,-9,2019,1,1,7,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.53,51,6,1,0,0,5,1,0,416.5,0,0,0 +12170,14925,27129,27130,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,7.834920770952055,7.396665281296158,1,0,-9,30,0,7,-11.86291527514423,0,0,0,71,1,4,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.711490123907151,7.663721824137344,0,0,59.14,52.5,7,1,0,0,12,3,1,424.5,0,0,0 +12170,14925,27130,27129,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,4,0,6.704634881987142,6.558681952648842,1,0,-9,30,0,-7,-75.74074096739552,0,0,0,78,3,4,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.397995552911587,6.992689479062857,0,0,57.16,56.15,7,1,0,0,12,3,1,424.5,0,0,0 +12171,14926,27131,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,2,1,0,4,8.468455708758851,8.500542024667178,0,3,0,0,0,-9,0,-1040.44658151528,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,30,40,15,1,0,-9,0,11.66285849862704,11.66285849862704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.93,61.22,4,3,0,0,8,4,0,1692,0,0,0 +12172,14927,27132,27133,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,2,0,4.951908330535169,4.853498269304851,1,0,-9,6,0,4,83.32984259872319,0,0,0,77,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.972328268991119,0,0,62.9,48.63,6,1,0,0,13,1,0,1408,0,0,0 +12172,14927,27133,27132,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-4,124.9916814645789,0,0,0,81,3,2,3,3,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,3.340094161308616,0,0,0,0,1,1,0,0,0,0,0,67.89,25.82,6,1,0,0,13,1,0,1408,0,0,0 +12173,14928,27134,-9,-9,-9,1,1,0,37,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-1004.165309833851,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.33,36.87,2,2,0,1,8,1,0,655,0,0,0 +12174,14929,27135,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1132.042814264604,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.53,37.9,5,1,0,1,13,1,1,264,0,0,0 +12174,14930,27136,-9,27135,-9,2,1,0,23,2,0,0,0,1,-9,2,1,0,3,7.76933223818479,7.746979358786051,0,3,0,0,0,-9,0,-1143.459902521397,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,5,35,60,15,1,5,-9,1,8.245025779259203,8.245025779259203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,47.92,6,1,0,1,13,3,1,903,0,0,0 +12175,14931,27137,-9,-9,-9,1,1,1,53,2,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1013.50974427627,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.817738653713288,0,0,0,33,32.47,4,1,0,0,8,1,0,335,0,0,0 +12176,14932,27138,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,3,0,6.420528030825025,6.641910592222964,3,0,0,0,-9,0,-1045.370973502179,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.958927659152014,6.348875143448812,0,0,46.5,51.63,6,1,0,0,5,2,0,610,0,0,0 +12177,14933,27139,27140,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,1,0,6.107309313226775,5.916812925528347,1,0,-9,52,0,0,37.59666778413151,0,0,0,71,2,2,3,3,3,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,1,1.801099942002567,0,0,0,5.282359850770189,0,1,1,0,0,6.294493882929839,130.363406372965,1,33.53,17.55,3,1,0,0,4,2,1,741.5,0,0,0 +12177,14933,27140,27139,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,5.384520980071925,5.531971300555286,1,0,-9,10,0,0,65.23632113156127,0,0,0,71,2,1,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,3.66310147055635,0,0,0,0,16.50753652313742,1,1,0,4.506859256749973,5.297669396180913,67.19667145990881,1,47.87,22.72,3,1,0,0,4,2,1,741.5,0,0,0 +12178,14934,27141,27142,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,2,8.453670643741702,8.170214949054714,0,1,0,-9,5,0,-2,24.34150483939511,0,0,1,46,2,4,1,-9,-9,2019,1,1,25,9,36,46,15,1,9,1,0,12.14289576598387,12.14289576598387,0,0,0,0,0,0,0,0,0,0,3.894301033187548,0,0,0,35.44,44.94,4,1,0,0,2,4,1,1322.5,0,0,0 +12178,14934,27142,27141,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,4,7.546988428283044,7.549274956206378,0,1,0,-9,5,0,2,184.0950701434696,0,0,0,44,1,2,1,-9,-9,2019,1,2,11,4,25,25,15,1,4,1,0,9.984148385913242,9.984148385913242,0,0,0,0,0,0,0,0,0,0,1.994197407243797,0,0,0,56.57,57.78,7,1,0,0,2,4,1,1322.5,0,0,0 +12179,14935,27143,-9,-9,-9,1,1,0,53,3,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-955.7011269177506,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.62,44.71,5,3,0,0,2,1,0,250,0,0,0 +12179,14936,27144,-9,27143,-9,2,1,0,28,2,0,1,0,1,-9,2,1,0,3,8.093494101126666,8.303906562072598,0,3,0,0,0,-9,0,-960.7468441262349,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,38,38,15,1,0,-9,1,11.6327433014996,11.6327433014996,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,3,3,0,0,2,4,0,707,0,0,0 +12179,14937,27145,-9,27143,-9,3,1,1,24,2,0,1,0,1,-9,1,1,0,2,9.350557051818015,9.617560421580091,0,3,0,0,0,-9,0,-956.0650094998061,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,38,40,15,1,9,-9,1,40.3076359580247,40.3076359580247,0,0,0,0,0,0,0,1,1,0,8.336031131589465,0,0,0,22.73,54.89,4,3,0,0,2,5,0,473,0,0,0 +12180,14938,27146,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,0,7.385160388533179,7.108618481727364,3,0,0,0,-9,0,-919.5156625160106,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2204707147562148,7.520619242908421,0,0,40.31,32.2,5,1,0,0,2,3,1,1894,0,0,0 +12181,14939,27147,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,2,0,7.094057692888033,7.18926252398585,3,0,0,0,-9,0,-941.7648426619412,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.043287502982361,7.333528356820032,0,0,64.14,27.54,7,1,0,0,5,2,1,1133,0,0,0 +12182,14940,27148,27149,-9,-9,1,1,1,55,1,0,1,0,1,-9,2,1,0,4,8.928187875107374,8.86898606379072,0,2,0,-9,21,0,3,181.886220941894,0,0,0,52,1,4,1,2,3,2019,1,2,6,0,37,37,15,1,0,1,0,22.57820955257257,22.57820955257257,0,0,0,0,0,0,0,1,1,0,7.387894601800156,0,5.270894088142176,3,62.49,55.09,6,1,0,0,8,4,1,328,0,0,0 +12182,14940,27149,27148,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,4,7.679510388958174,7.817069534817105,0,2,0,-9,21,0,-3,-83.67590243995275,0,0,0,55,1,4,1,1,1,2019,1,1,11,2,25,25,15,1,2,1,0,9.682525801002535,9.682525801002535,0,0,0,0,0,0,0,1,1,0,3.866809363183366,0,0,0,47.58,56.39,6,1,0,0,8,4,1,328,0,0,0 +12183,14941,27150,-9,27153,27152,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.407007520594,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,5,0,0,4,5,1,483.25,0,0,0 +12183,14941,27151,-9,27153,27152,5,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.4796404855888,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,4,5,1,483.25,0,0,0 +12183,14941,27152,27153,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,5,8.47811708218714,8.937390351454912,0,2,0,-9,9,0,14,-77.53478131880176,0,0,0,39,1,5,1,-9,-9,2019,1,1,14,2,37,37,15,1,2,1,0,21.76693449799533,21.76693449799533,0,0,0,0,0,0,0,1,1,0,7.390235237146245,0,0,0,47.13,58.37,6,1,0,0,4,5,1,483.25,0,0,0 +12183,14941,27153,27152,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,5,8.453360397082257,8.57479642246799,0,2,0,-9,9,0,-14,-59.00781543150097,0,0,1,53,1,5,1,1,2,2019,1,2,26,12,28,28,15,1,12,1,0,14.44360984651884,14.44360984651884,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.5,54.1,6,1,0,0,4,5,1,483.25,0,0,0 +12184,14942,27154,27155,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,0,4.08921465369216,4.240757450195588,1,0,-9,9,0,1,10.10706752045623,0,0,0,62,1,3,1,-9,-9,2019,1,1,11,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.483855078338634,4.181016861141883,0,0,52.54,46.01,4,1,0,0,8,3,1,934.5,0,0,0 +12184,14942,27155,27154,-9,-9,1,1,0,62,1,0,0,0,1,-9,1,1,0,3,7.758687176163544,8.005466272346412,0,1,0,-9,9,0,-1,121.5936407461386,0,0,0,63,2,3,1,1,2,2019,1,2,24,12,13,0,15,1,12,1,0,25.45438166612764,25.45438166612764,0,0,0,0,0,0,0,0,0,0,.9657896996880856,0,0,0,30.28,59.01,5,1,0,0,8,3,1,934.5,0,0,0 +12185,14943,27156,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,7.809446051169998,8.006069636095535,5.095163128418851,3,0,0,0,-9,0,-1065.362030297084,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,37,31,15,1,0,-9,0,6.600109629067405,6.600109629067405,0,0,0,0,0,0,0,1,1,0,5.307572823913447,4.961236912968711,0,0,43.71,56.91,6,1,0,0,4,3,1,1116,0,0,0 +12186,14944,27157,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,3,0,6.137482497517686,6.044132397449949,3,0,0,0,-9,0,-1015.265883385479,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,.7614395645307135,0,0,0,1,1,0,5.055866389234184,5.974020921968189,0,0,40.84,36.78,5,1,0,0,9,2,1,422,0,0,0 +12187,14945,27158,27159,-9,-9,1,1,0,73,1,0,0,0,1,-9,2,1,0,3,4.817135035700358,7.455660891947717,7.445669404416639,1,0,-9,50,0,-1,-18.61497406430803,0,0,0,74,2,3,3,3,2,2019,2,2,11,0,3,3,15,1,0,4,0,4.432977763703064,4.432977763703064,0,0,0,0,0,0,0,1,1,0,0,7.231729071480996,0,0,49.04,55.86,5,1,0,0,6,2,1,396,0,0,0 +12187,14945,27159,27158,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,4.351729648362435,4.298851342039214,1,0,-9,8,0,1,-57.58518724135897,0,0,0,73,1,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.212233235113678,4.527498996015427,0,0,56.11,44.4,7,1,0,0,6,2,1,396,0,0,0 +12188,14946,27160,27161,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,5.45441172181796,5.801733646244942,1,0,-9,31,0,-1,44.70762828142081,0,0,0,73,3,2,3,3,3,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.055210233119309,5.175407186901738,0,0,52.53,48.57,6,1,0,0,12,2,1,1061.5,0,0,0 +12188,14946,27161,27160,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,6.458856997336119,6.925565540929196,1,0,-9,32,0,1,-100.4214051338935,0,0,0,72,3,4,3,2,2,2019,4,2,8,2,0,0,15,4,2,4,0,0,0,1,0,23.05595750381763,8.287935742216115,0,0,0,1,1,0,0,6.77044147325601,0,0,32.65,21.84,7,1,0,0,12,2,1,1061.5,0,0,0 +12189,14947,27162,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,9.165691306665266,9.322163887163841,0,3,0,0,0,-9,0,-962.8901746400943,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,43,42,15,1,3,-9,0,27.69075834605335,27.69075834605335,0,0,0,0,0,0,0,0,0,0,6.052061711247863,0,0,0,50.91,54.79,5,1,0,0,9,5,1,172,0,0,0 +12190,14948,27163,27164,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,5.830876881631266,6.015231854106634,1,0,-9,49,0,-3,-4.337996880442073,0,0,0,73,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.895838385230241,5.976652049623712,0,0,60.12,54.8,7,1,0,0,13,4,1,974.5,0,0,0 +12190,14948,27164,27163,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,8.122768362977308,8.19894615760092,1,0,-9,49,0,3,-9.867310306128775,0,0,0,70,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.851664340352808,8.598077728790706,0,0,61.26,51.57,7,1,0,0,13,4,1,974.5,0,0,0 +12191,14949,27165,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,4,8.109658151830986,7.833848648708109,0,3,0,0,0,-9,0,-879.7865830869036,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,46,50,15,1,0,-9,0,8.183982140614358,8.183982140614358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,4,1,0,0,5,4,1,1039,0,0,0 +12192,14950,27166,27167,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.377116848762656,8.312540590502588,0,1,0,-9,34,0,-11,-46.84090297223428,0,0,0,68,2,2,1,-9,-9,2019,1,1,10,0,37,38,15,1,0,1,0,16.50966129571737,16.50966129571737,0,0,0,0,0,0,0,1,1,0,1.951860013438929,0,0,0,54.2,57.49,6,1,0,0,8,5,1,427.5,0,0,0 +12192,14950,27167,27166,-9,-9,1,1,1,68,1,0,0,0,2,-9,1,1,0,2,9.148832580527049,9.032742096299168,6.279789999593726,1,0,-9,35,0,11,-77.77901860580705,0,0,0,57,2,4,1,-9,-9,2019,1,2,10,1,55,55,15,1,1,1,0,22.15732812450726,22.15732812450726,0,0,0,0,0,0,0,1,1,0,7.171152294540621,6.542491468831837,0,0,51.73,31.58,5,3,0,0,8,5,1,427.5,0,0,0 +12192,14951,27168,-9,27166,27167,3,1,1,27,2,0,0,0,1,-9,1,1,0,4,9.797733209570509,9.805862306945199,0,3,0,0,0,-9,0,-956.5825329727703,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,50,55,15,1,1,-9,1,35.44427976521272,35.44427976521272,0,0,0,0,0,0,0,1,1,0,2.079329162789471,0,2.140692927441486,3,42.24,58.9,6,2,0,0,8,5,1,561,0,0,0 +12193,14952,27169,27170,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,4,0,7.10107236427721,7.049391781921464,1,0,-9,49,0,2,152.5196539928209,0,0,0,73,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.653330200262355,7.286931707178016,1.639030944287157,1,63.24,42.39,6,1,0,0,4,2,1,702,0,0,0 +12193,14952,27170,27169,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,1,0,5.068654856398534,5.398036367033395,1,0,-9,49,0,-2,-10.96812023500168,0,0,0,75,2,4,3,-9,-9,2019,4,2,14,1,0,0,15,4,1,4,0,0,0,1,0,5.659259130419441,0,0,0,0,1,1,0,4.964185078857509,5.577369446553941,0,0,30.26,18.9,5,1,0,0,4,2,1,702,0,0,0 +12194,14953,27171,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,8,3,1,1,0,5.082253273449814,4.969247180648054,3,0,0,0,-9,0,-995.6852833031734,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.111912970833099,0,0,29.9,47.64,3,4,0,1,6,2,1,292,0,0,0 +12195,14954,27172,-9,27173,27174,4,1,0,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1002.357584103677,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.55,57.37,4,1,0,0,6,1,0,520.6666666666666,0,0,0 +12195,14954,27173,27174,-9,-9,1,1,0,45,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,17,0,-4,0,0,0,0,49,3,4,3,3,3,2019,4,2,26,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.371753037804612,2,28.02,36.43,1,1,0,0,6,1,0,520.6666666666666,0,0,0 +12195,14954,27174,27173,-9,-9,2,1,1,49,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,17,0,4,0,0,0,0,45,3,2,3,3,3,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,1,0,6,1,0,520.6666666666666,0,0,0 +12195,14955,27175,-9,27173,27174,3,1,1,21,2,0,1,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-944.4657699102403,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4248856731527075,0,0,0,35.23,47.8,6,1,1,0,6,1,0,915,0,0,0 +12196,14956,27176,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,4,7.863810422797094,7.947096398472297,5.378921061303943,4,0,-9,0,-9,0,-1085.465444560821,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,45,0,15,1,1,-9,0,6.989813794148117,6.989813794148117,0,0,0,0,0,0,0,1,1,0,5.67227188595897,0,0,0,31.43,61.34,4,1,0,1,6,3,0,303,0,0,0 +12197,14957,27177,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,2,7.597050242455037,7.420480710005962,3.348319572635045,3,0,0,0,-9,0,-1002.472246579236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,39,39,15,1,1,-9,0,5.575741623604382,5.575741623604382,0,0,0,0,0,0,0,1,1,0,2.816912613697099,3.191710535472994,0,0,50.43,29.76,4,1,0,0,4,3,1,519,0,0,0 +12198,14958,27178,27179,-9,-9,2,1,0,30,1,0,0,0,2,-9,1,1,0,3,7.821042517474881,7.824261854342242,0,1,0,-9,9,0,0,-33.84735720015126,0,0,1,30,3,5,1,1,1,2019,1,1,4,1,12,8,15,1,1,1,0,26.41952075083546,26.41952075083546,0,0,0,0,0,0,0,0,0,0,.6938372532194023,0,0,0,47.97,48.24,6,2,0,0,5,4,0,839.5,0,0,0 +12198,14958,27179,27178,-9,-9,1,1,1,30,1,0,0,0,3,-9,1,1,0,5,7.419060587850845,7.396470955932504,0,1,0,-9,9,0,0,34.69107215400196,0,0,0,30,2,3,1,1,1,2019,1,2,6,0,14,16,15,1,0,1,0,16.31390520249661,16.31390520249661,0,0,0,0,0,0,0,0,0,0,1.321128555876446,0,0,0,57.06,57.76,2,1,0,0,5,4,0,839.5,0,0,0 +12199,14959,27180,27181,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,2,0,7.921183564526933,7.506901724417355,1,0,-9,10,0,-3,134.7645053306659,0,0,0,62,2,3,1,2,1,2019,3,1,18,6,0,0,15,4,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.609707218157148,0,0,46.5,34.32,4,1,0,0,4,4,1,495,0,0,0 +12199,14959,27181,27180,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,7.99516998389447,8.055776733887862,0,1,0,-9,10,0,3,42.5155653590753,0,0,0,59,2,2,3,3,3,2019,2,2,9,0,37,37,15,1,0,4,0,8.789832171533401,8.789832171533401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.39,36.06,6,1,0,0,4,4,1,495,0,0,0 +12199,14960,27182,-9,27180,27181,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.754378947052057,8.042821398234397,0,3,0,0,0,-9,0,-1075.177599360427,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,42,46,15,1,1,-9,1,4.870600048774721,4.870600048774721,0,0,0,0,0,0,0,0,0,0,3.206193283462802,0,0,0,48.7,54.61,5,1,0,0,4,3,1,1080,0,0,0 +12199,14961,27183,-9,27180,27181,4,1,0,21,2,0,0,0,2,-9,2,1,0,3,8.13639077928984,8.12062162657298,0,3,0,0,0,-9,0,-1079.290538821049,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,42,42,15,1,5,-9,1,9.168512091645098,9.168512091645098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.44,55.75,5,1,0,0,4,4,1,720,0,0,0 +12200,14962,27184,-9,-9,-9,1,1,1,43,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-991.4317123567708,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,26,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.6,38.61,3,1,1,0,12,1,0,171,0,0,0 +12201,14963,27185,27186,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.634101883283387,8.360260466847867,0,1,0,-9,32,0,2,-161.0697131264931,0,0,0,55,2,3,1,3,3,2019,1,1,6,0,50,55,15,1,0,1,0,11.95142985218015,11.95142985218015,0,0,0,0,0,0,0,1,0,1,0,0,7.003633140575741,3,51.83,57.2,6,1,0,0,7,5,1,985.5,0,0,0 +12201,14963,27186,27185,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.600345276103994,7.517271434042406,0,1,0,-9,32,0,-2,-91.47301981064028,0,0,0,57,2,4,1,3,2,2019,1,2,17,6,24,24,15,1,6,1,0,12.27155943490672,12.27155943490672,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.43,59.21,2,1,0,0,7,5,1,985.5,0,0,0 +12201,14964,27187,-9,27186,27185,3,1,1,22,2,0,0,0,2,-9,2,1,0,5,0,0,0,3,0,0,0,-9,0,-1087.98678778934,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,41,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.42,60.53,6,1,0,0,7,1,1,95,0,0,0 +12201,14965,27188,-9,27186,27185,4,1,1,20,3,0,0,0,2,-9,11,3,0,2,7.029166169446902,6.783229863603577,0,3,0,0,0,-9,0,-1058.334099813597,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,35,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.82,35.19,3,1,0,0,7,2,1,1225,0,0,0 +12202,14966,27189,-9,27191,27190,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1127.534976241485,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,5,1,528.75,0,0,0 +12202,14966,27190,27191,-9,-9,1,1,1,35,1,0,2,0,1,-9,2,1,0,4,8.648218376845239,8.927933753944076,0,2,0,-9,16,0,-1,16.98060144392133,0,0,0,36,1,4,1,1,2,2019,1,2,7,0,45,42,15,1,0,1,0,17.04861157204022,17.04861157204022,0,0,0,0,0,0,0,1,1,0,2.130594164496511,0,0,0,57.16,56.15,6,1,0,0,5,5,1,528.75,0,0,0 +12202,14966,27191,27190,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.691768008521223,9.009676380284057,4.515662886922114,2,0,-9,16,0,1,262.1556188972975,0,0,1,35,1,4,1,2,1,2019,1,1,8,2,39,37,15,1,2,1,0,19.9015297712104,19.9015297712104,0,0,0,0,0,0,0,1,1,0,5.780260626849088,0,0,0,51.83,57.2,6,1,0,0,5,5,1,528.75,0,0,0 +12202,14966,27192,-9,27191,27190,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.503692936697,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,1,528.75,0,0,0 +12203,14967,27193,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1058.028996876907,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.173140903046447,0,0,0,54,44,6,1,0,0,1,1,1,3289,0,0,0 +12204,14968,27194,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,1,1,0,3,7.304188283350002,8.404566944443994,7.765346070199974,3,0,0,0,-9,0,-1055.08677039067,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,8,40,37,15,1,8,-9,0,5.67573708271446,5.67573708271446,0,0,0,0,0,0,0,1,1,0,2.850925127083277,7.622025842383221,0,0,32.34,46.08,3,1,0,0,6,4,1,1124,0,0,0 +12205,14969,27195,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,5,8.565732149208271,8.444005694166105,0,3,0,0,0,-9,0,-1046.33460698271,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,38,38,15,1,4,-9,0,16.36974284441463,16.36974284441463,0,0,0,0,0,0,0,0,0,0,6.090973449565115,0,0,0,51.14,60.45,6,1,0,0,13,5,1,1172,0,0,0 +12206,14970,27196,27197,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,4,0,7.342544269072488,7.294225035013532,1,0,-9,59,0,6,67.91202720931982,0,0,0,76,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.655499191440627,7.167555251388329,0,0,51.83,57.2,6,1,0,0,9,2,1,237.5,0,0,0 +12206,14970,27197,27196,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-6,45.59519761404971,0,0,0,82,2,4,3,3,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,10.1302763084614,10.3472946577213,0,0,0,1,1,0,3.476366529397459,0,0,0,41.88,48.45,6,1,0,0,9,2,1,237.5,0,0,0 +12207,14971,27198,27199,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.863161010708198,7.636233501891065,0,1,0,-9,40,0,-8,5.608662913064843,0,0,0,68,3,4,1,2,2,2019,1,1,15,3,28,26,15,1,3,1,0,7.287708904097578,7.287708904097578,0,0,0,0,0,0,0,1,1,0,3.492487411612486,0,0,0,45.85,61.26,6,1,0,0,11,4,1,1186,0,0,0 +12207,14971,27199,27198,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,4,6.710024318505674,8.039217760120758,7.781170223896699,1,0,-9,40,0,8,7.117087853841307,0,0,0,60,2,4,1,3,3,2019,1,2,7,0,18,18,15,1,0,1,0,7.860934226097976,7.860934226097976,0,0,0,0,0,0,0,1,1,0,4.381670435755328,7.404852282416207,0,0,57.16,56.15,6,1,0,0,11,4,1,1186,0,0,0 +12208,14972,27200,27201,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,6.108556691444492,5.911313985168989,1,0,-9,30,0,-2,-100.7633853045436,0,0,0,72,3,3,1,3,3,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.784605687923265,0,0,53,46,5,1,0,0,10,2,1,941,0,0,0 +12208,14972,27201,27200,-9,-9,1,1,0,72,1,0,0,0,3,-9,2,1,0,3,6.874354279091891,6.588609083833351,0,1,0,-9,30,0,2,63.84724105575324,0,0,0,70,2,3,3,-9,3,2019,2,2,11,0,26,20,15,1,1,4,0,3.79942943784589,3.79942943784589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,10,2,1,941,0,0,0 +12209,14973,27202,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,1,1,0,5,8.604707631214961,8.499322397206972,0,3,0,0,0,-9,0,-1060.754423235923,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,13.91473431940858,13.91473431940858,0,0,0,0,0,0,0,0,0,0,7.587998267013003,0,0,0,60.02,56.42,6,1,0,0,2,5,1,591,0,0,0 +12209,14974,27203,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,3,7.772038758628795,7.96338581855992,0,3,0,-9,0,-9,0,-1009.200223393301,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,6,12,0,15,1,6,-9,0,28.28481630668761,28.28481630668761,0,0,0,0,0,0,0,0,0,0,0,0,5.388962960889298,3,38.79,48.45,3,1,0,0,2,4,1,607,0,0,0 +12210,14975,27204,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,1,1,0,3,8.663057793810438,8.694628476601267,0,3,0,0,0,-9,0,-925.1970982829242,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,44,40,15,1,0,-9,0,10.15377239499393,10.15377239499393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,6,1,0,0,6,5,0,356,0,0,0 +12211,14976,27205,27206,-9,-9,1,1,1,66,1,0,0,0,3,-9,1,1,0,3,0,6.515622767109796,6.599085526986845,1,0,-9,7,0,10,-104.4767037721397,0,0,0,56,2,5,1,3,3,2019,1,2,12,0,40,0,15,1,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,6.973963410920471,6.632934141946584,0,0,47.55,47.03,5,1,0,0,13,4,1,952,0,0,0 +12211,14976,27206,27205,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,5,8.368402581188199,8.073814336065631,0,1,0,-9,7,0,-10,151.9552186164794,0,0,0,66,3,3,1,3,3,2019,1,1,8,0,37,38,15,1,0,1,0,11.21869629579181,11.21869629579181,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,5,1,0,1,13,4,1,952,0,0,0 +12211,14977,27207,-9,27206,27205,3,1,1,23,2,0,0,0,2,-9,2,1,0,5,7.656853917425082,7.412086226953539,0,3,0,0,0,-9,0,-1094.612048580874,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,40,8,15,1,0,-9,1,5.286651771011766,5.286651771011766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,5,1,0,0,13,3,1,546,0,0,0 +12212,14978,27208,27209,-9,-9,2,1,0,45,1,2,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-5,-39.6486772133356,0,0,0,50,3,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.9060972280472,3,50,55,6,3,0,0,8,4,1,1034,0,0,0 +12212,14978,27209,27208,-9,-9,1,1,1,50,1,2,3,0,3,-9,2,1,0,4,8.784112836761343,9.097457991651599,0,2,0,-9,23,0,5,10.14615635003879,0,0,0,45,3,4,3,3,3,2019,2,2,7,0,40,35,15,1,0,3,0,24.0724425829527,24.0724425829527,0,0,0,0,0,0,0,1,1,0,0,0,2.02340637524131,3,62.49,55.09,6,3,0,0,8,4,1,1034,0,0,0 +12212,14979,27210,27213,27208,27209,4,1,1,25,1,2,3,0,1,-9,2,1,0,4,8.126963986396699,7.92053360898805,0,2,0,-9,2,0,1,-61.28605266767725,0,1,0,24,2,4,3,3,3,2019,2,8,10,0,32,45,15,1,1,3,0,10.31915843443932,10.31915843443932,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,8,2,1,345.25,0,0,0 +12212,14979,27211,-9,27213,27210,10,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.4852807209919,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,2,1,345.25,0,0,0 +12212,14979,27212,-9,27213,27210,11,1,0,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1080.883493222085,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,1,345.25,0,0,0 +12212,14979,27213,27210,-9,-9,8,1,0,24,1,2,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-1,88.71259640274897,0,1,1,25,1,4,1,-9,-9,2019,3,4,11,0,0,16,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,2,1,345.25,0,0,0 +12212,14980,27214,-9,27208,27209,5,1,0,22,2,2,3,0,1,1,2,1,0,4,6.271752547839569,6.975255671141809,0,3,0,0,0,-9,0,-1102.762910428275,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,18,0,15,1,0,-9,1,5.562059306291397,5.562059306291397,0,0,0,0,0,0,0,1,1,0,0,0,25.48391983187733,3,42.57,48.26,1,3,0,0,8,2,1,2255,0,0,0 +12212,14981,27215,-9,27208,27209,7,1,1,23,2,2,3,0,1,-9,3,3,0,5,6.558994685656216,6.447307470975709,0,3,0,0,0,-9,0,-1047.489275472296,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,10,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,3,1,0,8,2,1,1528,0,0,0 +12212,14982,27216,27217,-9,-9,9,1,0,26,1,2,3,0,1,-9,2,1,0,4,7.158346783217223,6.971107583970288,0,2,0,-9,2,0,0,-76.07652742687669,0,1,1,26,1,4,1,-9,-9,2019,1,3,11,0,21,12,15,1,2,1,0,7.100903452555006,7.100903452555006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,3,0,0,8,3,1,270.5,0,0,0 +12212,14982,27217,27216,27208,27209,3,1,1,26,1,2,3,0,1,-9,1,1,0,4,7.713275134999724,7.217827165202678,0,2,0,-9,2,0,0,-71.42965850609332,0,1,0,26,1,4,1,3,3,2019,1,9,10,0,30,33,15,1,1,1,0,8.440236314190164,8.440236314190164,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,8,3,1,270.5,0,0,0 +12213,14983,27218,27219,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,3,7.585304113093476,7.539766514378384,0,2,0,-9,9,0,-3,-35.8170108352895,0,0,0,57,2,4,1,2,2,2019,1,1,12,0,25,25,15,1,0,1,0,8.809334762905667,8.809334762905667,0,0,0,0,0,0,0,1,1,0,2.669741327660552,0,0,0,53.98,50.87,3,1,0,0,9,5,1,516,0,0,0 +12213,14983,27219,27218,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,4,8.593684049039586,8.706133517297753,0,2,0,-9,9,0,3,-20.84075455284682,0,0,0,54,2,3,1,2,3,2019,1,2,11,0,43,43,15,1,0,1,0,18.3810617424051,18.3810617424051,0,0,0,0,0,0,0,1,1,0,5.343317141245425,0,0,0,49.33,51.63,6,1,0,0,9,5,1,516,0,0,0 +12213,14984,27220,-9,27218,27219,3,1,0,18,2,0,1,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-969.0502125492288,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,31,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.165973782285946,0,0,0,12.35,69.98,1,1,1,0,9,5,1,702,0,0,0 +12214,14985,27221,27222,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,5,6.292975846039135,8.719868917235255,8.653325576772742,1,0,-9,3,0,1,-66.29580729143623,0,0,0,58,2,4,1,3,2,2019,1,2,5,0,15,14,15,1,0,1,0,5.259642692550977,5.259642692550977,0,0,0,0,0,0,0,0,0,0,7.082194640664572,8.702030528542705,0,0,57.06,57.76,6,1,0,0,11,5,1,1249.5,0,0,0 +12214,14985,27222,27221,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.471501932097434,7.679360636949755,6.019664563594372,1,0,-9,3,0,-1,95.17722517791265,0,0,0,59,1,5,1,-9,-9,2019,1,1,10,0,26,0,15,1,0,1,0,7.746060585875099,7.746060585875099,0,0,0,0,0,0,0,0,0,0,6.708626409975548,6.470027338618178,0,0,54.2,57.49,7,1,0,0,11,5,1,1249.5,0,0,0 +12215,14986,27223,-9,27226,27224,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.924755626969,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,9,1,1,346.5,0,0,0 +12215,14986,27224,27226,-9,-9,1,1,1,50,1,0,3,0,3,-9,8,3,1,5,0,0,0,2,0,-9,30,0,1,0,0,0,0,49,3,5,3,-9,-9,2019,4,5,12,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.088500907478432,1,35.53,53.07,4,3,0,0,9,1,1,346.5,0,0,0 +12215,14986,27225,-9,27226,27224,6,1,1,17,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-967.4936253781465,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.610021352451549,3,54.69,57.47,5,3,0,0,9,1,1,346.5,0,0,0 +12215,14986,27226,27224,-9,-9,5,1,0,49,1,0,3,0,3,-9,6,3,0,5,0,0,0,2,0,-9,30,0,-1,0,0,0,0,50,3,5,3,3,-9,2019,4,1,6,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,25.37,57.85,5,3,0,0,9,1,1,346.5,0,0,0 +12215,14987,27227,-9,27226,27224,2,1,0,19,2,0,3,0,2,1,2,1,0,5,7.500065444895092,7.849118951673012,0,3,0,0,0,-9,0,-952.8389327603312,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,38,0,15,1,0,-9,1,6.004760096540339,6.004760096540339,0,0,0,0,0,0,0,1,1,0,0,0,11.58500188297774,3,39.06,64.46000000000001,6,3,0,0,9,3,1,174,0,0,0 +12215,14988,27228,-9,27226,27224,4,1,0,22,3,0,3,0,2,-9,2,1,0,2,6.647216837701515,6.513107485904646,0,3,0,0,0,-9,0,-1115.755539985611,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,12,20,15,1,5,-9,1,7.13194534559447,7.13194534559447,0,0,0,0,0,0,0,1,1,0,0,0,25.63073149558425,3,37.8,42.53,3,3,0,0,9,2,1,213,0,0,0 +12215,14989,27229,-9,27231,27230,7,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1169.216491870657,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,2,1,617.6666666666666,0,0,0 +12215,14989,27230,27231,-9,-9,9,1,1,25,1,0,3,0,2,-9,2,1,0,4,0,0,0,2,0,-9,2,0,2,-126.8584188092712,0,1,0,23,3,3,1,-9,-9,2019,1,8,18,5,0,66,15,1,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,40.01,46.17,5,3,0,0,9,2,1,617.6666666666666,0,0,0 +12215,14989,27231,27230,27226,27224,8,1,0,23,1,0,3,0,3,-9,2,1,0,3,7.335896963821174,7.57700520136662,0,2,0,-9,2,0,-2,170.5469007929283,0,1,1,25,2,4,1,3,3,2019,1,9,12,2,35,30,15,1,2,1,0,8.102741973977823,8.102741973977823,0,0,0,0,0,0,0,1,1,0,0,0,10.44760367858551,3,44.67,42.83,6,3,0,1,9,2,1,617.6666666666666,0,0,0 +12216,14990,27232,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-948.9977155365857,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,1,6,1,0,1008,0,0,0 +12217,14991,27233,-9,27239,27236,10,1,1,11,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1076.226572906348,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14991,27234,-9,27239,27236,11,1,0,10,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1027.751523733395,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14991,27235,-9,27239,27236,8,1,0,15,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-998.8037844767173,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14991,27236,27239,27245,-9,1,1,1,52,1,0,6,0,3,-9,2,1,0,4,7.281888187284292,7.176388501366834,0,2,0,-9,23,-9,8,-17.26452384744644,-9,0,0,44,3,4,3,3,3,2019,2,2,9,0,12,0,15,1,1,3,0,13.76226053760394,13.76226053760394,0,0,0,0,0,0,0,1,1,0,0,0,7.391804612282707,3,54,54,6,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14991,27237,-9,27239,27236,12,1,1,7,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-944.9345201456516,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14991,27238,-9,27239,27236,9,1,0,14,2,0,6,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-1014.900220376134,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,5,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14991,27239,27236,-9,-9,2,1,0,44,1,0,6,0,3,-9,6,3,0,4,0,0,0,2,0,-9,23,-9,-8,-120.7561100144334,-9,0,1,52,3,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,3,0,0,8,2,0,932.2857142857143,0,0,0 +12217,14992,27240,-9,27239,27236,3,1,1,26,3,0,6,0,2,-9,2,1,0,4,8.490651144269107,8.299918359681577,0,3,0,-9,0,-9,0,-1074.93725540149,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,50,0,15,1,1,-9,1,11.79176997568859,11.79176997568859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,8,5,0,259,0,0,0 +12217,14993,27241,-9,27239,27236,4,1,1,24,2,0,6,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-930.3524269976216,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,1,0,8,1,0,364,0,0,0 +12217,14994,27242,-9,27239,27236,5,1,0,22,3,0,6,0,2,-9,2,1,0,4,7.645724326403125,7.857348108963702,0,3,0,-9,0,-9,0,-919.1906548215427,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,0,15,1,0,-9,1,6.241534786635379,6.241534786635379,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.19,57.95,3,3,0,0,8,3,0,308,0,0,0 +12217,14995,27243,-9,27239,27236,6,1,0,19,2,0,6,0,2,-9,3,3,0,5,0,0,0,3,0,-9,0,-9,0,-1070.349019915646,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,4,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.42,66.36,4,3,1,0,8,1,0,3361,0,0,0 +12217,14996,27244,-9,27239,27236,7,1,1,18,2,0,6,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-1067.095859692427,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.1936707165100208,0,0,0,52.35,55.62,1,3,1,1,8,5,0,317,0,0,0 +12217,14997,27245,-9,-9,-9,13,1,0,78,3,0,6,0,3,-9,4,3,0,3,0,0,0,4,0,-9,0,-9,0,-1013.11647149315,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,6,3,0,0,8,1,0,1252,0,0,0 +12217,14998,27246,-9,-9,-9,14,1,1,19,2,0,6,0,2,-9,3,3,0,4,0,0,0,4,0,-9,0,-9,0,-960.3529572245679,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.00781211405793,3,49,58,5,3,1,0,8,1,0,863,0,0,0 +12218,14999,27247,27248,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,8,134.7354769412563,0,0,0,63,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,2,1,2506.5,0,0,0 +12218,14999,27248,27247,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,5.872595351432899,5.669618399524737,1,0,-9,6,0,-8,142.7368611799522,0,0,0,71,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.05899440157409,0,0,50,47,4,1,0,0,12,2,1,2506.5,0,0,0 +12219,15000,27249,-9,27250,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-994.0757092050903,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,13,3,1,857.3333333333334,0,0,0 +12219,15000,27250,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,2,1,0,2,8.222924793658764,8.507245862976001,4.321492285636906,4,0,0,0,-9,0,-962.9729135176092,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,16,4,30,24,15,1,4,-9,0,17.54220417346934,17.54220417346934,0,0,0,0,0,0,0,1,1,0,4.099508694931435,0,0,0,42.27,39.15,5,1,0,1,13,3,1,857.3333333333334,0,0,0 +12219,15000,27251,-9,27250,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-977.2111385092714,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,857.3333333333334,0,0,0 +12220,15001,27252,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,4,7.918683714088514,7.860678463188897,0,3,0,0,0,-9,0,-1167.593324113878,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,44,55,15,1,0,-9,0,9.63959100807006,9.63959100807006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,1,11,4,0,422,0,0,0 +12221,15002,27253,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,3,0,6.392853562150313,6.511112106902295,3,0,0,0,-9,0,-969.2526673071241,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,3.582008186635598,0,0,0,4.456662906840969,42.26236949804309,1,1,0,0,6.470437306809732,0,0,53,47,5,1,0,0,7,2,1,462,0,0,0 +12222,15003,27254,27255,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,5.305929188672314,5.086928291224677,1,0,-9,46,0,-5,25.45672843404979,0,0,0,71,1,3,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.178699780805061,0,0,61.43,43.34,5,1,0,0,12,2,1,1059.5,0,0,0 +12222,15003,27255,27254,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,7.722545473925621,7.648240476429657,1,0,-9,46,0,5,-29.01795345263605,0,0,0,66,1,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.741498234877818,7.871673428801524,0,0,54.96,53.17,6,1,0,0,12,2,1,1059.5,0,0,0 +12223,15004,27256,27257,-9,-9,2,1,0,19,1,2,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,3,0,-2,84.30618969512483,0,1,1,21,1,5,1,-9,-9,2019,3,1,12,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,12,3,0,1034.25,0,0,0 +12223,15004,27257,27256,-9,-9,1,1,1,21,1,2,2,0,1,-9,2,1,0,5,8.510951769652772,8.531775481854952,0,2,0,-9,3,0,2,-103.6170731695125,0,1,0,19,3,4,3,-9,-9,2019,2,2,0,0,30,20,15,1,0,3,0,21.21688144822597,21.21688144822597,0,0,0,0,0,0,0,1,1,0,0,0,11.52170637015867,2,32.72,43.47,5,1,0,0,12,3,0,1034.25,0,0,0 +12223,15004,27258,-9,27256,27257,4,1,1,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.739879018736,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,3,0,1034.25,0,0,0 +12223,15004,27259,-9,27256,27257,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.055324832389,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,0,1034.25,0,0,0 +12224,15005,27260,-9,27261,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1029.953985189406,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,2,0,397,0,0,0 +12224,15005,27261,-9,-9,-9,1,1,0,29,2,0,2,0,3,-9,2,1,0,4,6.994609061005265,7.114863385961467,5.488157038631861,4,0,0,0,-9,0,-963.5191566262259,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,16,0,15,1,5,-9,0,6.332136808154774,6.332136808154774,0,0,0,0,0,0,0,1,1,0,5.537495603684031,0,0,0,39.33,58.88,4,1,0,0,11,2,0,397,0,0,0 +12225,15006,27262,-9,27265,27263,5,1,0,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.9766518823811,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,1035,0,0,0 +12225,15006,27263,27265,-9,-9,2,1,1,54,1,1,3,0,2,-9,2,1,0,2,8.075147256593892,7.965892567823364,0,2,0,-9,9,0,17,-51.59537080964909,0,0,0,37,1,3,1,2,3,2019,1,1,30,10,34,36,15,1,10,1,0,8.788974601766551,8.788974601766551,0,0,0,0,0,0,0,1,1,0,5.934693830134884,0,11.86219942487833,3,16.16,61.45,1,1,0,0,4,3,1,1035,0,0,0 +12225,15006,27264,-9,27265,27263,3,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.7691444861772,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,1035,0,0,0 +12225,15006,27265,27263,-9,-9,1,1,0,37,1,1,3,0,1,-9,2,1,0,3,7.759505101584001,7.792142994305371,0,2,0,-9,9,0,-17,-66.51825069780996,0,0,1,54,2,2,1,1,2,2019,1,2,6,0,21,46,15,1,0,1,0,12.73407877916891,12.73407877916891,0,0,0,0,0,0,0,1,1,0,1.64836399223081,0,0,0,46.67,55.57,6,1,0,0,4,3,1,1035,0,0,0 +12226,15007,27266,27267,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,4,7.425781084729387,7.88736505503441,0,1,0,-9,6,0,-13,69.95404665445888,0,0,0,74,2,4,3,3,3,2019,2,2,7,0,30,30,15,1,0,4,0,11.34890447121486,11.34890447121486,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,12,3,1,1158.5,0,0,0 +12226,15007,27267,27266,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,6,0,13,46.67073667415431,0,0,0,61,3,4,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,3,1,1158.5,0,0,0 +12227,15008,27268,-9,-9,-9,3,1,0,73,3,0,1,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-984.5691766653165,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,7.930843597614285,0,0,0,1,1,0,0,0,0,0,51,46,5,4,0,0,8,1,0,180,0,0,0 +12228,15009,27269,27270,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.592283578416017,7.484451335154191,0,1,0,-9,3,0,-1,56.85709402442091,0,0,0,51,2,3,1,-9,-9,2019,1,4,6,0,30,30,15,1,0,1,0,7.622609264540479,7.622609264540479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,1,5,0,459.5,0,0,0 +12228,15009,27270,27269,-9,-9,4,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.708291738408459,8.635748612815076,0,1,0,-9,3,0,1,-112.8218341454683,0,0,0,50,2,4,1,-9,-9,2019,1,2,9,0,52,40,15,1,0,1,0,9.285785351914706,9.285785351914706,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,4,1,0,0,1,5,0,459.5,0,0,0 +12229,15010,27271,-9,-9,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,2,7.906819724093856,7.999334762762224,0,3,0,0,0,-9,0,-1043.629752704842,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,50,52,15,1,6,-9,0,7.397026514909067,7.397026514909067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,51.12,5,1,0,0,7,4,0,674,0,0,0 +12230,15011,27272,27274,-9,-9,2,1,0,40,1,0,2,0,1,-9,1,1,0,5,9.199034556817693,9.43122900844517,0,2,0,-9,6,0,1,-45.3017927173723,0,0,1,39,3,5,3,2,2,2019,2,1,6,0,40,40,15,1,0,3,0,28.32912414852956,28.32912414852956,0,0,0,0,0,0,0,1,1,0,8.893393163005959,0,0,0,57.06,57.76,1,1,0,0,2,5,1,498.75,0,0,0 +12230,15011,27273,-9,27272,27274,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.410150222081,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,5,1,498.75,0,0,0 +12230,15011,27274,27272,-9,-9,1,1,1,39,1,0,2,0,3,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-1,-22.22257001956834,0,0,0,40,1,5,1,3,2,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.633593058489129,0,0,0,62.39,56.71,7,1,0,0,2,5,1,498.75,0,0,0 +12230,15011,27275,-9,27272,27274,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.0960315190007,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,498.75,0,0,0 +12231,15012,27276,27277,-9,-9,1,1,1,60,1,0,0,0,3,-9,1,1,0,4,6.517766604710248,7.992729477824799,7.183935306569597,1,0,-9,2,0,-2,61.63021805543359,0,0,0,62,3,3,1,3,3,2019,1,2,8,1,55,46,15,1,1,1,0,1.511947790462453,1.511947790462453,0,0,0,0,0,0,0,0,0,0,6.029190861248586,6.985669272229024,0,0,57.16,56.15,6,1,0,0,12,4,1,652.5,0,0,0 +12231,15012,27277,27276,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,3,7.509722207683708,7.693046752363522,0,1,0,-9,2,0,2,10.23252892432209,0,0,0,60,3,4,1,3,3,2019,1,1,13,2,30,30,15,1,2,1,0,7.811769975951802,7.811769975951802,0,0,0,0,0,0,0,0,0,0,0,0,0,3,42.61,54.85,6,1,0,0,12,4,1,652.5,0,0,0 +12232,15013,27278,27279,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,0,0,0,1,0,1,1,-9,2,-172.4349668164469,0,0,0,29,1,5,1,2,2,2019,1,2,8,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,1,4,1,2977.5,0,0,0 +12232,15013,27279,27278,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,5,8.544171601377249,8.420422769550097,0,1,0,-9,1,-9,-2,48.92786218862469,-9,1,1,31,2,4,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,18.19193383832715,18.19193383832715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,1,4,1,2977.5,0,0,0 +12233,15014,27280,27284,-9,-9,1,1,1,42,1,0,4,0,2,-9,1,1,0,4,8.252291804962399,8.041282521857134,0,2,0,-9,5,0,-2,-212.7351170366946,0,0,0,44,2,3,1,3,2,2019,1,2,9,0,40,50,15,1,1,1,0,10.92444466026489,10.92444466026489,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,1,0,0,13,2,1,794,0,0,0 +12233,15014,27281,-9,27284,27280,5,1,1,13,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-959.1420060334382,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,1,0,0,13,2,1,794,0,0,0 +12233,15014,27282,-9,27284,27280,3,1,1,17,2,0,4,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.941802117855,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,54.48,3,1,0,0,13,2,1,794,0,0,0 +12233,15014,27283,-9,27284,27280,6,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.6960820107704,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,2,1,794,0,0,0 +12233,15014,27284,27280,-9,-9,2,1,0,44,1,0,4,0,2,-9,1,1,0,3,6.08430586593312,6.378484714691203,0,2,0,-9,5,0,2,102.5336388154408,0,0,1,42,2,4,1,2,2,2019,1,1,10,0,7,7,15,1,0,1,0,8.267701095438426,8.267701095438426,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,13,2,1,794,0,0,0 +12233,15014,27285,-9,27284,27280,4,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.629465966126,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,13,2,1,794,0,0,0 +12234,15015,27286,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,2,1,0,4,5.620999807357253,7.641486232727911,7.677498538129309,3,0,0,0,-9,0,-1048.442470205696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,2,0,15,1,0,-9,0,17.8098305593478,17.8098305593478,0,0,0,0,0,0,0,1,1,0,0,7.086638945947246,0,0,62.1,51.16,7,1,0,0,2,3,1,1173,0,0,0 +12235,15016,27287,-9,27289,27290,3,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.4950416756758,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,3,0,528.8,0,0,0 +12235,15016,27288,-9,27289,-9,2,1,1,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.100841049589,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,7,3,0,528.8,0,0,0 +12235,15016,27289,27290,-9,-9,1,1,0,38,1,0,3,0,3,-9,6,3,0,4,0,4.967136688125618,5.020452665210152,2,0,-9,5,0,-1,-80.54371675107315,0,0,1,39,2,4,1,-9,-9,2019,3,5,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.035875811190604,0,0,0,51.24,58.84,7,1,0,0,7,3,0,528.8,0,0,0 +12235,15016,27290,27289,-9,-9,5,1,1,39,1,0,3,0,2,-9,2,1,0,4,8.712139954062676,8.621971437903449,0,2,0,-9,5,0,1,-56.64833826937111,0,0,0,38,3,4,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,3,0,14.51298373173563,14.51298373173563,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,3,0,528.8,0,0,0 +12235,15016,27291,-9,27289,27290,4,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.45002230419,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,3,0,528.8,0,0,0 +12236,15017,27292,-9,-9,-9,3,1,0,83,3,1,1,0,3,-9,4,3,0,3,0,0,0,4,0,-9,0,-9,0,-950.8316217757667,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,72.99902657311218,0,0,0,1,1,0,0,0,0,0,53,45,6,1,0,0,13,1,1,314,0,0,0 +12236,15018,27293,-9,27292,-9,1,1,0,50,2,1,1,0,3,-9,2,1,0,5,6.288198723983325,6.528609327033266,0,3,0,0,0,-9,0,-891.9614630147245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,97,84,15,1,0,-9,1,.6150529986036222,.6150529986036222,0,0,0,0,0,0,0,1,1,0,0,0,117.9580565870452,3,62.39,56.71,2,1,0,0,13,2,1,362,0,0,0 +12236,15019,27294,-9,27295,-9,4,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1081.469766982751,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,5,0,0,13,2,1,673.5,0,0,0 +12236,15019,27295,-9,27293,-9,2,1,0,23,2,1,1,0,2,-9,2,1,0,4,7.239312005074651,6.686210366164076,0,3,0,0,0,-9,0,-1041.594071952052,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,3,0,20,40,15,1,0,-9,1,6.538482457866475,6.538482457866475,0,0,0,0,0,0,0,1,1,0,0,0,14.08520447790931,3,60.12,54.8,7,1,0,0,13,2,1,673.5,0,0,0 +12237,15020,27296,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,2,1,0,1,5.6990250842706,7.104253108069404,7.307825358766635,3,0,-9,0,-9,0,-1017.397318584908,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,33,12,25,0,15,1,12,-9,0,1.885010177864594,1.885010177864594,0,0,0,0,0,0,0,1,1,0,6.977116169510666,0,4.753798747031374,3,12.24,47.74,2,1,0,1,9,2,0,236,0,0,0 +12237,15021,27297,-9,-9,-9,2,1,0,22,2,0,0,1,1,-9,7,2,0,3,6.844983473172899,6.543022424442693,0,3,0,-9,0,-9,0,-1003.015027926081,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,26,10,20,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3841750640290807,0,0,0,29.86,52.59,5,2,0,0,9,2,0,676,0,0,0 +12237,15022,27298,-9,-9,-9,3,1,0,20,2,0,0,1,2,-9,7,2,0,2,4.533075453253647,4.687640251645859,0,3,0,-9,0,-9,0,-1027.075580617683,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.35,46.98,6,1,0,0,9,1,0,443,0,0,0 +12238,15023,27299,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,3,7.459490219189351,7.54930380744676,0,3,0,0,0,-9,0,-1095.621644063976,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,35,37,15,1,4,-9,0,7.38324510711271,7.38324510711271,0,0,0,0,0,0,0,1,0,1,0,0,30.80287209337157,3,42.29,34.53,5,1,0,0,13,3,0,593,0,0,0 +12238,15024,27300,-9,27299,-9,2,1,1,39,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-980.0370283435968,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.47,64.5,5,1,1,0,13,1,0,331,0,0,0 +12239,15025,27301,27303,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,5,7.93516263582081,7.964686065450461,0,2,0,-9,3,0,-6,-186.8622329743311,0,0,1,36,2,4,1,-9,-9,2019,1,2,6,0,26,40,15,1,0,1,0,16.80531526967506,16.80531526967506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,1,8,5,1,563,0,0,0 +12239,15025,27302,-9,27301,27303,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.6890403242201,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,8,5,1,563,0,0,0 +12239,15025,27303,27301,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,4,8.819838873552238,9.220002773773963,0,2,0,-9,3,0,6,134.6581257291852,0,0,0,30,1,5,1,-9,-9,2019,1,1,6,0,42,45,15,1,0,1,0,30.51334221236272,30.51334221236272,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,8,5,1,563,0,0,0 +12240,15026,27304,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,7.493870516062225,7.466044600729231,3,0,0,0,-9,0,-1178.372670324219,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.317426869364084,7.762896891479489,0,0,53.62,46.84,6,1,0,0,9,3,1,1659,0,0,0 +12241,15027,27305,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,2,8.181320546712781,8.192366951907429,0,3,0,0,0,-9,0,-1033.077397084246,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,39,37,15,1,8,-9,0,9.832788536534553,9.832788536534553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.8,52.21,2,1,0,1,10,4,1,7049,0,0,0 +12241,15028,27306,-9,27305,-9,2,1,0,25,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1011.176060700241,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,20,8,0,55,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,1,1,1,0,10,1,1,831,0,0,0 +12242,15029,27307,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-949.6099236118609,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.56,38.2,5,1,0,0,9,1,0,1638,0,0,0 +12243,15030,27308,-9,27309,-9,5,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1116.636392740327,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,4,1,1,1174.5,0,0,0 +12243,15030,27309,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-948.8070395012768,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,22,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.94843024817524,3,34.39,23.34,4,3,0,1,4,1,1,1174.5,0,0,0 +12243,15031,27310,-9,27309,-9,2,1,0,21,2,0,1,0,2,1,2,1,0,4,6.671951546883607,6.540901032219691,0,3,0,0,0,-9,0,-907.6672113583002,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,23,10,14,0,15,1,10,-9,1,7.612393235924334,7.612393235924334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.76,57.87,5,3,0,0,4,2,1,679,0,0,0 +12243,15031,27311,-9,27310,-9,6,1,0,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-851.9022831191711,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,4,2,1,679,0,0,0 +12243,15032,27312,-9,27309,-9,3,1,0,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1137.240268713511,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.95,6,3,0,0,4,1,1,903,0,0,0 +12243,15033,27313,-9,27309,-9,4,1,0,19,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-957.5775267096069,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,3,0,0,4,1,1,276,0,0,0 +12244,15034,27314,27315,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,5,0,8.879288476025913,9.313212819531776,1,0,-9,36,0,2,12.40500891780638,0,0,0,60,1,4,3,2,2,2019,4,1,2,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.768075534251366,8.811213859086314,0,0,58.62,52.91,7,1,0,0,12,5,1,1756,0,0,0 +12244,15034,27315,27314,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,4,0,7.637472817952133,8.176858907347464,1,0,-9,36,0,-2,-86.3623451819706,0,0,0,62,1,5,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.916829323171862,7.772113777006103,0,0,49.86,55.31,7,1,0,0,12,5,1,1756,0,0,0 +12245,15035,27316,-9,-9,-9,1,1,0,56,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-904.392211399525,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.42,44.54,7,1,0,0,4,1,0,652,0,0,0 +12246,15036,27317,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,4,8.649711724431675,9.00925194672144,6.769132020250844,4,0,-9,0,1,0,-948.3399386041799,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,37,37,15,1,5,-9,0,21.58757472145799,21.58757472145799,0,0,0,0,0,0,0,1,1,0,7.221548301659317,0,0,3,31.78,59.65,4,1,0,0,11,4,1,208,0,0,0 +12247,15037,27318,27319,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,4,8.754410163360989,8.588237219254371,0,1,0,-9,6,0,1,-75.95834181882147,0,0,1,42,2,5,1,1,2,2019,1,1,6,0,35,35,15,1,0,1,0,16.20456227949757,16.20456227949757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,1,5,1,638.5,0,0,0 +12247,15037,27319,27318,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,5,8.49601091910378,8.190632628143275,0,1,0,-9,6,0,-1,55.74255829766719,0,0,0,43,2,4,1,2,3,2019,1,2,6,0,55,50,15,1,0,1,0,10.80670133575553,10.80670133575553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,1,5,1,638.5,0,0,0 +12248,15038,27320,-9,27321,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-937.1457006500373,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,5,4,1,943.5,0,0,0 +12248,15038,27321,-9,-9,-9,1,1,0,30,3,0,1,0,1,-9,2,1,0,3,8.025872534889819,8.478530147714794,6.740809914256652,4,0,0,0,-9,0,-1062.856872035368,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,6,18,15,1,0,-9,0,46.59028987713931,46.59028987713931,0,0,0,0,0,0,0,1,1,0,6.491752824742428,0,0,0,57.33,53.46,6,3,0,0,5,4,1,943.5,0,0,0 +12248,15039,27322,-9,-9,-9,3,1,0,33,3,0,1,0,1,-9,2,1,0,1,8.432645825678382,8.309709069872078,0,4,0,0,0,-9,0,-1168.26241430962,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,4,37,48,15,1,4,-9,0,12.28856235557465,12.28856235557465,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.21,31.27,5,3,0,0,5,4,1,1224,0,0,0 +12249,15040,27323,27324,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-5,2.524902387026533,0,0,0,67,2,3,3,3,3,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,12,3,1,1039.5,0,0,0 +12249,15040,27324,27323,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,8.063261900809971,8.195707421847958,1,0,-9,6,0,5,-12.32153567838033,0,0,0,62,3,3,3,2,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.297053557312615,8.124278390606301,0,0,57.09,46.7,6,1,0,0,12,3,1,1039.5,0,0,0 +12250,15041,27325,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,3,8.438618148731333,8.570365161671914,0,3,0,0,0,-9,0,-1005.812699150057,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,38,34,15,1,4,-9,0,20.18824235399229,20.18824235399229,0,0,0,0,0,0,0,0,0,0,.6698189710150442,0,0,0,40.18,55.92,5,1,0,0,11,5,1,440,0,0,0 +12251,15042,27326,-9,-9,-9,1,1,0,96,3,0,0,0,3,-9,4,3,0,3,0,5.213678714476068,5.69053931883973,3,0,0,0,-9,0,-974.4589476538384,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.625089185004312,0,0,54,44,6,1,0,0,5,2,1,286,0,0,0 +12252,15043,27327,27328,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,5,9.317843397768005,9.0774961883212,0,1,0,-9,4,0,0,95.09395939494686,-9,0,1,32,1,4,1,-9,-9,2019,1,1,10,1,60,0,15,1,1,1,0,15.37226289938473,15.37226289938473,0,0,0,0,0,0,0,0,0,0,3.692837947513352,0,0,0,48.77,60.16,6,1,0,0,2,5,1,754.5,0,0,0 +12252,15043,27328,27327,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.75429593258016,8.488028242634115,0,1,0,-9,4,0,0,90.98877986949715,0,0,0,32,1,5,1,-9,-9,2019,1,2,15,6,45,40,15,1,6,1,0,12.06890111770865,12.06890111770865,0,0,0,0,0,0,0,0,0,0,4.021399332766931,0,0,0,46.9,56.66,6,1,0,0,2,5,1,754.5,0,0,0 +12253,15044,27329,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,2,8.016121968096057,7.76397947441183,0,3,0,0,0,-9,0,-950.9211468600384,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,8,45,43,15,1,8,-9,0,7.731890521636824,7.731890521636824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.3,56.37,1,1,0,0,9,4,1,471,0,0,0 +12254,15045,27330,-9,-9,-9,1,1,1,37,2,0,0,0,2,-9,2,1,0,3,8.506345536637941,8.492539501925222,0,3,0,0,0,-9,0,-991.905762556153,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,1,38,35,15,1,1,-9,0,15.40129532195798,15.40129532195798,0,0,0,0,0,0,0,0,0,0,3.176872607046466,0,0,0,31.29,61.29,3,1,0,0,2,5,1,193,0,0,0 +12255,15046,27331,-9,27333,-9,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-847.1117364177694,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,5,1,269.6666666666667,0,0,0 +12255,15046,27332,27333,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,3,9.100138968559055,8.979592590684311,0,2,0,-9,4,0,0,-10.42111244027112,0,0,0,44,2,3,3,1,2,2019,2,2,13,1,50,80,15,1,1,3,0,19.57853419382479,19.57853419382479,0,0,0,0,0,0,0,0,0,0,3.556599539982316,0,0,0,42.36,56.12,6,1,0,0,12,5,1,269.6666666666667,0,0,0 +12255,15046,27333,27332,-9,-9,2,1,0,44,1,0,1,0,2,-9,3,3,0,3,7.878446631495154,8.17872458925096,6.210846414237299,2,0,-9,4,0,0,-15.64201186247163,0,0,1,44,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.38969307061596,0,0,0,57.33,53.46,7,1,1,0,12,5,1,269.6666666666667,0,0,0 +12256,15047,27334,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,3,7.961581001078269,7.746463263464578,0,3,0,0,0,-9,0,-853.5586886035129,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,44,0,15,1,0,-9,0,7.132648917557063,7.132648917557063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,52.63,5,1,0,0,11,4,0,519,0,0,0 +12257,15048,27335,27336,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,1,0,7.883841374838843,8.207808536639677,1,0,-9,7,0,7,54.03017040780099,0,0,0,73,2,2,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.029633336060019,7.887817565645766,0,0,39.07,18.74,4,1,0,0,2,3,1,438.5,0,0,0 +12257,15048,27336,27335,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,7.09959240565726,7.091963091757782,1,0,-9,57,0,-7,-18.60039440991843,0,0,0,80,3,1,3,3,3,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.167054079301294,7.417163248985569,0,0,45.58,41.84,5,1,0,0,2,3,1,438.5,0,0,0 +12258,15049,27337,27339,-9,-9,2,1,1,43,1,0,3,0,2,-9,2,1,0,4,6.737987325070588,6.440524165046722,0,2,0,-9,14,-9,1,37.5925287890817,-9,0,0,42,2,5,1,-9,-9,2019,1,1,9,0,50,0,15,1,1,1,0,1.881275933924806,1.881275933924806,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,1,0,0,5,2,1,703.6666666666666,0,0,0 +12258,15049,27338,-9,27339,27337,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1037.637975630367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,2,1,703.6666666666666,0,0,0 +12258,15049,27339,27337,-9,-9,1,1,0,42,1,0,3,0,2,-9,2,1,0,5,7.544867016160795,7.787999342024464,0,2,0,-9,14,-9,-1,99.57671792366999,-9,0,1,43,2,4,1,3,2,2019,1,2,8,0,4,0,15,1,0,1,0,65.93566056519492,65.93566056519492,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,6,1,0,0,5,2,1,703.6666666666666,0,0,0 +12259,15050,27340,27341,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,24,0,20,-13.59294114188356,0,0,0,62,3,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,1,0,0,8,2,1,273,0,0,0 +12259,15050,27341,27340,-9,-9,2,1,0,62,1,0,0,0,3,-9,4,3,0,4,0,6.658134985683626,6.600266738957276,1,0,-9,24,0,-20,26.2518844797775,0,0,0,82,2,3,3,-9,-9,2019,4,1,7,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.765677190668456,0,0,57.16,56.15,7,1,0,0,8,2,1,273,0,0,0 +12260,15051,27342,27343,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.435127096570866,7.648530619668025,1,0,-9,34,0,-8,-.9148903415965739,0,0,0,71,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.481987187292753,7.421236775370894,0,0,54.37,54.8,6,1,0,0,4,2,1,685,0,0,0 +12260,15051,27343,27342,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,34,0,8,102.3903687985335,0,0,0,63,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.260751405061152,0,0,0,54.2,57.49,6,1,0,0,4,2,1,685,0,0,0 +12261,15052,27344,27345,-9,-9,1,1,0,68,1,0,0,0,2,-9,2,1,0,4,7.654124777628092,7.735749633584681,0,1,0,-9,44,0,0,71.39863615397449,0,0,0,68,2,4,1,-9,-9,2019,1,2,11,0,40,42,15,1,0,1,0,5.762467372911645,5.762467372911645,0,0,0,0,0,0,0,1,1,0,6.809893686116347,0,0,0,54.53,49.11,6,1,0,0,10,3,1,854,0,0,0 +12261,15052,27345,27344,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,44,0,0,11.6444419069688,0,0,0,68,2,4,1,-9,-9,2019,1,1,12,0,0,6,15,1,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,7.808522353977931,0,0,0,52.18,47.35,4,1,0,0,10,3,1,854,0,0,0 +12262,15053,27346,27347,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,7.864549249826326,7.821990182481447,0,1,0,-9,4,0,-6,-87.68285060273024,0,0,0,60,1,3,1,2,2,2019,1,2,21,10,30,25,15,1,10,1,0,8.574400350222382,8.574400350222382,0,0,0,0,0,0,0,0,0,0,.7227030006770021,0,0,0,43.38,60.06,2,1,0,1,4,4,1,411,0,0,0 +12262,15053,27347,27346,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,3,7.890340164211752,8.089329015585253,0,1,0,-9,4,0,6,-34.66855875333955,0,0,0,54,1,4,1,3,2,2019,1,1,8,0,37,35,15,1,0,1,0,9.571489562539332,9.571489562539332,0,0,0,0,0,0,0,0,0,0,7.307391898022364,0,0,0,51.94,55.88,4,1,0,0,4,4,1,411,0,0,0 +12263,15054,27348,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,5,8.878168209767837,8.742380814107795,0,3,0,0,0,-9,0,-1113.827831475087,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,37,0,15,1,0,-9,0,16.97859771187059,16.97859771187059,0,0,0,0,0,0,0,0,0,0,4.436637547271101,0,0,0,62.39,56.71,6,1,0,0,12,5,1,508,0,0,0 +12264,15055,27349,27351,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,5,7.698861797673806,7.706961415945406,0,2,0,-9,8,0,-3,-71.34324695130611,0,0,0,48,3,4,1,3,3,2019,1,2,9,0,20,20,15,1,0,1,0,11.18529817318454,11.18529817318454,0,0,0,0,0,0,0,1,1,0,1.026867175513952,0,0,0,57.06,57.76,2,1,0,0,5,4,1,967.3333333333334,0,0,0 +12264,15055,27350,-9,27349,27351,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.06703652544,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,967.3333333333334,0,0,0 +12264,15055,27351,27349,-9,-9,2,1,1,48,1,0,1,0,3,-9,2,1,0,4,8.418137660339275,8.444129778149117,0,2,0,-9,8,0,3,36.17264243275373,0,0,0,45,2,5,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,10.42457976623797,10.42457976623797,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,5,4,1,967.3333333333334,0,0,0 +12265,15056,27352,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,4,7.258999725027268,8.096400515120603,6.829673206146397,3,0,0,0,-9,0,-1087.836167027498,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,23,0,15,1,1,-9,0,10.05376747560864,10.05376747560864,0,0,0,0,0,0,0,1,1,0,6.679224626836448,0,0,0,48.87,58.55,6,1,0,0,6,3,0,1278,0,0,0 +12266,15057,27353,-9,-9,-9,1,1,0,45,3,0,0,0,1,-9,2,1,0,5,7.752811504686939,7.831430284116002,0,3,0,0,0,-9,0,-1082.801598303315,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,35,0,15,1,0,-9,0,7.057066201916896,7.057066201916896,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.56,59.44,7,1,0,1,10,3,0,263,0,0,0 +12266,15058,27354,-9,27353,-9,2,1,1,22,2,0,0,0,1,1,3,3,0,3,0,5.30308168800927,5.348836088817265,3,0,0,0,-9,0,-940.6281555272683,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,5.825628025689024,0,0,0,44.72,57.73,2,1,1,0,10,2,0,250,0,0,0 +12267,15059,27355,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,6.051732589454841,6.016096274049571,3,0,0,0,-9,0,-989.1495062754249,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.419936107853142,0,0,55.71,19.33,6,1,0,0,9,2,0,334,0,0,0 +12268,15060,27356,27357,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,34,0,-1,-64.23375351254136,0,0,0,62,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.396569706354243,0,0,0,54.1,59.11,7,1,0,0,6,2,1,304,0,0,0 +12268,15060,27357,27356,-9,-9,2,1,1,62,1,0,0,0,2,-9,4,3,0,4,0,7.30522705112977,7.537437439999861,1,0,-9,34,0,1,34.29621634482648,0,0,0,61,2,5,3,2,1,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.364372653224665,0,0,51.83,57.2,6,1,0,0,6,2,1,304,0,0,0 +12269,15061,27358,-9,27359,27361,5,1,1,29,2,0,1,0,2,-9,2,1,0,3,8.136928812689607,8.234236180808731,0,3,0,0,0,-9,0,-1051.87611203563,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,45,49,15,1,0,-9,1,9.651283943521205,9.651283943521205,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,2,0,0,8,4,1,1146,0,0,0 +12269,15062,27359,27361,-9,-9,1,1,0,55,1,0,1,0,3,-9,1,1,0,3,7.426361345450947,7.670547904443471,0,2,0,-9,24,0,3,10.0518939272006,0,0,0,52,2,5,1,-9,-9,2019,1,2,12,2,36,29,15,1,2,1,0,5.74153667892635,5.74153667892635,0,0,0,0,0,0,0,1,1,0,0,0,72.5492179752226,3,32.88,44.48,6,1,0,0,8,4,1,643.3333333333334,0,0,0 +12269,15062,27360,-9,27359,27361,4,1,1,17,2,0,1,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1150.918373689644,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.8148422445414585,3,54.37,54.8,7,2,0,0,8,4,1,643.3333333333334,0,0,0 +12269,15062,27361,27359,-9,-9,2,1,1,52,1,0,1,0,2,-9,1,1,0,5,8.523938759994721,8.927276976220263,0,2,0,-9,24,0,-3,10.0694650374901,0,0,0,55,3,3,1,2,2,2019,1,1,8,0,50,60,15,1,0,1,0,10.1393660264013,10.1393660264013,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.95,56.4,5,4,0,0,8,4,1,643.3333333333334,0,0,0 +12269,15063,27362,-9,27359,27361,3,1,0,18,2,0,1,1,2,0,7,2,0,3,5.529480410821257,5.31810811623775,0,3,0,0,0,-9,0,-999.9699493839134,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,24,8,4,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.555105688644706,3,40.65,57.36,4,2,0,0,8,2,1,612,0,0,0 +12270,15064,27363,-9,27365,27364,4,1,0,17,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-907.666814214906,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,3,0,0,9,3,1,998,0,0,0 +12270,15064,27364,27365,-9,-9,2,1,1,39,1,0,3,0,2,-9,1,1,0,3,7.891014512271713,8.006258302223044,0,2,0,-9,11,0,0,-12.97829853376824,0,0,0,39,2,2,1,-9,-9,2019,1,1,11,0,34,34,15,1,0,1,0,9.175978427187806,9.175978427187806,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,3,0,0,9,3,1,998,0,0,0 +12270,15064,27365,27364,-9,-9,1,1,0,39,1,0,3,0,2,-9,2,1,0,2,7.135465995255067,7.302656823294373,0,2,0,-9,22,0,0,96.03965379057007,0,0,1,39,2,3,1,3,2,2019,1,2,12,1,15,10,15,1,1,1,0,9.260584615361608,9.260584615361608,0,0,0,0,0,0,0,1,1,0,0,0,39.45949858493114,3,33.7,54.1,5,3,0,0,9,3,1,998,0,0,0 +12270,15064,27366,-9,27365,27364,6,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.002751693499,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,9,3,1,998,0,0,0 +12270,15065,27367,-9,27365,27364,3,1,1,18,2,0,3,0,2,-9,2,1,0,4,6.534487010452565,6.642973367687467,0,3,0,0,0,-9,0,-1028.551150039185,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,10,0,15,1,1,-9,1,9.763908047138328,9.763908047138328,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,3,0,0,9,2,1,240,0,0,0 +12271,15066,27368,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,3,0,4.67305722024728,5.020942053061048,3,0,0,0,-9,0,-957.6444451577661,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,4.847772587364579,4.734771283377137,0,0,43.59,59.64,6,1,0,0,6,1,0,452,0,0,0 +12272,15067,27369,27370,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,4.957949833780598,4.778550801257039,1,0,-9,9,0,1,-63.98191880437224,0,0,0,74,1,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.28886841721155,4.95670524726515,0,0,64,38.07,7,1,0,0,8,4,1,1114,0,0,0 +12272,15067,27370,27369,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,4,6.592228099328562,8.807876788600085,8.651958152446205,1,0,-9,53,0,-1,91.91033389578854,0,0,0,75,2,3,3,2,1,2019,4,2,6,0,3,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.188840322955694,8.85353735641953,0,0,62.49,55.09,7,1,0,0,8,4,1,1114,0,0,0 +12273,15068,27371,27372,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,4,9.157225537965713,8.827186412895239,0,1,0,-9,43,0,-2,-.8823255725519736,0,0,0,64,2,4,3,3,3,2019,2,2,6,0,40,70,15,1,0,3,0,16.03065552952952,16.03065552952952,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.08,55.93,7,1,0,0,13,5,1,772.5,0,0,0 +12273,15068,27372,27371,-9,-9,2,1,0,64,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,43,0,2,-31.26174072187317,0,0,0,62,3,4,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.265075263769333,0,0,0,57.16,56.15,6,1,0,0,13,5,1,772.5,0,0,0 +12273,15069,27373,-9,27372,27371,3,1,1,36,2,0,0,0,2,-9,2,1,0,3,7.904829894479827,7.739367193224927,0,3,0,0,0,-9,0,-1110.936711006585,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,38,40,15,1,3,-9,1,6.827749988650711,6.827749988650711,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.85,56.37,3,1,0,0,13,3,1,893,0,0,0 +12273,15070,27374,-9,-9,-9,4,1,1,24,2,0,0,0,2,-9,2,1,0,3,7.086577838440303,7.353262245717596,0,3,0,0,0,-9,0,-1041.529002966248,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,23,30,15,1,0,-9,0,6.427322129699466,6.427322129699466,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.47,52.91,6,1,0,0,13,2,1,582,0,0,0 +12274,15071,27375,-9,27376,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1069.391353374184,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,2,0,838.6666666666666,0,0,0 +12274,15071,27376,-9,-9,-9,1,1,0,35,3,0,2,0,1,-9,2,1,0,3,7.102964772817725,7.640725928482381,5.867418872401069,4,0,0,0,-9,0,-885.7760557415789,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,20,0,15,1,0,-9,0,6.342086670149733,6.342086670149733,0,0,0,0,0,0,0,1,1,0,6.032929582935545,0,0,0,43.37,57.28,5,1,0,0,6,2,0,838.6666666666666,0,0,0 +12274,15071,27377,-9,27376,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1058.382687969103,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,2,0,838.6666666666666,0,0,0 +12275,15072,27378,27379,-9,-9,1,1,1,89,1,0,0,0,3,-9,4,3,0,2,0,5.169641788834471,5.495568726613763,1,0,-9,69,0,2,-10.64868857331426,0,0,0,87,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,2,4,0,0,0,1,6.604863391457853,10.7082185289613,0,0,0,57.40797798809892,1,1,0,5.14811975107405,5.484437332625732,0,0,47,33.94,5,1,0,0,7,2,1,363,0,0,0 +12275,15072,27379,27378,-9,-9,2,1,0,87,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-2,80.22469204014732,0,0,0,89,3,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,7,2,1,363,0,0,0 +12275,15073,27380,-9,27379,27378,3,1,1,64,2,0,0,0,2,-9,2,1,0,3,6.463618967351376,6.40027944613982,0,3,0,0,0,-9,0,-1037.365353731428,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,50,45,15,1,1,-9,1,1.441286238001808,1.441286238001808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,0,0,7,2,1,530,0,0,0 +12276,15074,27381,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,5,8.016727861564981,7.599077590566877,0,3,0,0,0,-9,0,-976.659518755557,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,46,40,15,1,0,-9,0,6.234661229164725,6.234661229164725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,4,0,0,8,3,0,481,0,0,0 +12277,15075,27382,-9,27385,27383,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.8164283466759,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,805.8,0,0,0 +12277,15075,27383,27385,-9,-9,1,1,1,51,1,0,3,0,2,-9,2,1,0,4,8.53257152118889,8.998108538673502,0,2,0,-9,7,0,2,-.1774248235195147,0,0,0,49,1,4,1,3,3,2019,1,2,13,3,45,49,15,1,3,1,0,15.79261684317182,15.79261684317182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.41,58.16,6,1,0,0,9,4,1,805.8,0,0,0 +12277,15075,27384,-9,27385,27383,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.439787187395,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,805.8,0,0,0 +12277,15075,27385,27383,-9,-9,2,1,0,49,1,0,3,0,1,-9,1,1,0,4,8.4556076174458,8.243158122001773,0,2,0,-9,7,0,-2,-47.93036618447235,0,0,0,51,2,4,1,2,3,2019,1,1,10,0,27,28,15,1,0,1,0,14.609894205717,14.609894205717,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,54.91,5,1,0,0,9,4,1,805.8,0,0,0 +12277,15075,27386,-9,27385,27383,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.664854491416,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,4,1,805.8,0,0,0 +12278,15076,27387,27388,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,4,8.786156536121478,8.588851977519894,0,1,0,-9,7,0,-2,123.0592233239102,0,0,0,50,2,4,1,2,2,2019,1,1,7,0,40,0,15,1,0,1,0,18.46011624293314,18.46011624293314,0,0,0,0,0,0,0,0,0,0,7.52153732918829,0,0,0,59.29,49.68,6,1,0,0,6,5,1,476.5,0,0,0 +12278,15076,27388,27387,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.060396359462223,6.997256516910249,0,1,0,-9,7,0,2,-40.90417000849498,0,0,0,48,2,4,1,2,2,2019,1,2,22,11,20,0,15,1,11,1,0,6.823031122515765,6.823031122515765,0,0,0,0,0,0,0,0,0,0,7.887195887379804,0,18.1226230206061,3,45.81,58.99,4,1,0,0,6,5,1,476.5,0,0,0 +12279,15077,27389,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.057010655686847,8.077995460893153,5.949750000905063,3,0,0,0,-9,0,-895.493670398122,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,42,45,15,1,5,-9,0,7.274457870220163,7.274457870220163,0,0,0,0,0,0,0,0,0,0,0,5.478027343366189,8.687871008952943,3,41.53,36.02,3,2,0,1,7,4,0,844,0,0,0 +12280,15078,27390,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,6.855018656536342,6.780463665260072,3,0,0,0,-9,0,-927.990506396266,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.166999308342072,6.748832124589293,0,0,52.05,38.14,6,1,0,0,1,2,1,1216,0,0,0 +12281,15079,27391,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,5,0,5.092353277997776,5.2652630393928,3,0,0,0,-9,0,-1024.227540059473,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.20471864375855,0,0,57,52,7,1,0,0,8,2,1,54,0,0,0 +12282,15080,27392,27393,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,1,-30.91473555153781,0,0,0,68,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.135396180206588,3,58.15,52.91,6,1,0,0,2,3,1,728.5,0,0,0 +12282,15080,27393,27392,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,5,0,7.557359635729963,7.530073915304226,1,0,-9,9,0,-1,-79.19657476704076,0,0,0,69,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.567997439231381,7.668377612112752,10.8696978686901,3,62.39,56.71,1,1,0,0,2,3,1,728.5,0,0,0 +12283,15081,27394,27396,-9,-9,1,1,1,43,1,0,1,0,2,-9,1,1,0,4,7.97880303895722,7.971233460304484,0,2,0,-9,8,0,0,25.86253879255711,0,0,0,43,2,1,1,2,2,2019,1,2,9,0,40,60,15,1,0,1,0,5.865583569495083,5.865583569495083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,1,11,4,1,1057.666666666667,0,0,0 +12283,15081,27395,-9,27396,27394,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.068678550522,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,11,4,1,1057.666666666667,0,0,0 +12283,15081,27396,27394,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,1,8.206962279232441,8.242128202896271,0,2,0,-9,8,0,0,-189.0308250872008,0,0,1,43,2,4,1,3,3,2019,1,1,11,0,36,34,15,1,0,1,0,11.21017074703586,11.21017074703586,0,0,0,0,0,0,0,0,0,0,1.716175792366322,0,0,0,49.45,49.4,3,3,0,1,11,4,1,1057.666666666667,0,0,0 +12284,15082,27397,27398,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,5.88056197789753,6.509639815330695,1,0,-9,27,0,6,37.34365466845759,0,0,0,69,2,3,1,3,3,2019,3,1,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.204367576840736,5.483950263361641,0,0,58.77,41.86,2,1,0,0,4,2,1,1341,0,0,0 +12284,15082,27398,27397,-9,-9,1,1,0,69,1,0,0,0,2,-9,2,1,0,3,5.828603989870053,5.590176620957743,0,1,0,-9,27,0,-6,-175.9709751685355,0,0,0,75,2,3,3,3,2,2019,2,2,10,0,5,0,15,1,0,4,0,6.278308026295413,6.278308026295413,0,0,0,0,0,0,0,1,1,0,1.315652136248314,0,0,0,63.65,49.16,1,1,0,0,4,2,1,1341,0,0,0 +12285,15083,27399,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,3,0,9.515636175092723,9.642822598646008,3,0,0,0,-9,0,-1024.297899609214,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,37,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.923896070070109,9.489486755816218,0,0,54.9,54.53,6,1,0,0,1,5,1,287,0,0,0 +12286,15084,27400,27401,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.325910618432378,7.894678147572045,1,0,-9,3,0,11,-2.025756877080316,0,0,0,62,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.97921836870359,8.456961819904878,0,0,54.31,43.73,6,1,0,0,10,4,1,842,0,0,0 +12286,15084,27401,27400,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,7.615565106796671,7.640089039305073,1,0,-9,3,0,-11,-123.9404674689574,0,0,0,73,1,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.850703366067543,7.601407332501706,0,0,40.6,51.25,5,1,0,0,10,4,1,842,0,0,0 +12287,15085,27402,27403,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,4,9.241516617919801,9.035531484563055,0,1,0,-9,7,0,-3,60.40823714062859,0,0,0,57,2,4,3,-9,-9,2019,2,1,9,0,30,30,15,1,1,3,0,30.75644877071068,30.75644877071068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,8,5,1,633.5,0,0,0 +12287,15085,27403,27402,-9,-9,1,1,0,57,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,27,0,3,-76.638555981401,0,0,0,54,2,4,1,2,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.610036964522484,0,0,0,50.54,55.04,7,1,0,0,8,5,1,633.5,0,0,0 +12287,15086,27404,-9,27403,27402,3,1,1,21,2,0,0,0,2,1,2,1,0,4,7.832484736648196,8.25430396961773,0,3,0,0,0,-9,0,-947.6504852201622,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,6.626436724985582,6.626436724985582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,8,4,1,718,0,0,0 +12287,15087,27405,-9,27403,27402,4,1,1,20,2,0,0,1,2,0,7,2,0,4,4.70166703324371,4.885967555295962,0,3,0,0,0,-9,0,-911.0083261108249,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.086571428576434,0,0,0,48,59,5,1,0,0,8,2,1,245,0,0,0 +12288,15088,27406,27408,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,2,8.261961273159146,8.449900598482118,0,2,0,-9,10,0,0,-80.03337088513612,0,0,1,43,1,1,1,3,2,2019,1,2,13,1,40,39,15,1,1,1,0,11.69555577878459,11.69555577878459,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.85,44.94,4,1,0,1,9,5,1,1378.333333333333,0,0,0 +12288,15088,27407,-9,27406,27408,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.544713284104,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,5,1,1378.333333333333,0,0,0 +12288,15088,27408,27406,-9,-9,2,1,1,43,1,0,1,0,1,-9,2,1,0,1,8.82625707617499,8.955259163966131,0,2,0,-9,2,0,0,94.74869196923989,0,0,0,43,2,2,1,-9,-9,2019,1,1,21,9,40,37,15,1,9,1,0,19.7538699526246,19.7538699526246,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.37,35.42,2,1,0,1,9,5,1,1378.333333333333,0,0,0 +12289,15089,27409,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,2,8.018877956041996,8.13608543376098,0,3,0,0,0,-9,0,-1119.348012079977,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,45,25,15,1,2,-9,0,7.095815376289192,7.095815376289192,0,0,0,0,0,0,0,0,0,0,2.624600333153512,0,4.293891384109754,3,38.67,52.97,3,3,0,0,8,4,0,412,0,0,0 +12290,15090,27410,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,6.397480096660417,6.573470583326488,3,0,0,0,-9,0,-1221.800549449964,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,3.214310182380406,1.06044726441191,0,1,1,0,1.937963403457146,6.509861330398047,0,0,53.7,19.12,6,1,0,0,4,2,1,838,0,0,0 +12291,15091,27411,27414,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,4,8.865116337548939,8.851116945365641,0,2,0,-9,8,0,-4,106.7878490393401,0,0,0,39,1,4,1,-9,-9,2019,1,1,10,0,50,50,15,1,1,1,0,20.27063239025052,20.27063239025052,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,9,4,1,219.75,0,0,0 +12291,15091,27412,-9,27414,27411,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.669807447785,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,219.75,0,0,0 +12291,15091,27413,-9,27414,27411,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-855.4030004443027,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,219.75,0,0,0 +12291,15091,27414,27411,-9,-9,1,1,0,39,1,0,2,0,1,-9,1,1,0,4,7.381322146362204,7.248273615313398,0,2,0,-9,11,0,4,124.3437790320749,0,0,1,35,1,4,1,2,2,2019,1,2,9,0,16,8,15,1,0,1,0,8.412607327719845,8.412607327719845,0,0,0,0,0,0,0,1,1,0,7.377460996402432,0,0,0,47.01,58,6,1,0,0,9,4,1,219.75,0,0,0 +12292,15092,27415,-9,-9,-9,1,1,1,30,3,0,0,0,1,-9,2,1,0,3,8.398642785534312,8.279869797866894,0,3,0,0,0,-9,0,-1053.729112699377,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,42,40,15,1,2,-9,0,13.00554732316671,13.00554732316671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,5,1,0,0,7,4,1,351,0,0,0 +12293,15093,27416,27417,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,3,7.919027495077907,7.756513773598805,4.931244760540066,1,0,-9,21,-9,-3,32.38542675899493,-9,0,0,67,2,3,3,3,3,2019,2,2,6,0,43,0,15,1,0,3,0,6.587420031011928,6.587420031011928,0,0,0,0,0,0,0,1,1,0,0,5.410646342102197,0,0,60.29,52.11,6,1,0,0,12,3,1,1418.5,0,0,0 +12293,15093,27417,27416,-9,-9,2,1,0,67,1,0,0,0,2,-9,6,3,0,3,0,5.84446797361757,5.874296249483867,1,0,-9,21,-9,3,-27.6543141301208,-9,0,0,64,3,3,1,3,3,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.487585447064374,0,0,53.08,52.64,6,1,0,0,12,3,1,1418.5,0,0,0 +12294,15094,27418,27419,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,5,9.142058669499285,9.064213848253482,0,2,0,-9,19,0,-4,.7654784219739252,0,0,1,41,1,4,1,1,1,2019,1,2,8,0,50,47,15,1,0,1,0,21.42029975090073,21.42029975090073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,63.37,6,1,0,0,6,5,1,533.6666666666666,0,0,0 +12294,15094,27419,27418,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,9.51267317484483,9.067505280362711,0,2,0,-9,19,0,4,-74.60842643478183,0,0,0,37,1,5,1,2,3,2019,1,1,9,0,55,20,15,1,0,1,0,22.63203068419765,22.63203068419765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,533.6666666666666,0,0,0 +12294,15094,27420,-9,27418,27419,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1144.584213064167,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,533.6666666666666,0,0,0 +12295,15095,27421,27422,-9,-9,2,1,0,51,1,0,2,0,3,-9,6,3,0,5,0,0,0,2,0,-9,25,0,-1,-50.63424850898378,0,0,0,52,1,3,1,3,1,2019,3,1,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.32996036400803,0,0,0,33.57,65.97,5,3,0,1,8,2,1,1379.75,0,0,0 +12295,15095,27422,27421,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,3,7.709474767411283,7.787052398910424,0,2,0,-9,25,0,1,26.31942866102707,0,0,0,51,3,5,3,3,1,2019,2,2,9,0,32,32,15,1,0,3,0,7.548516646680536,7.548516646680536,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.44,38.96,4,3,0,1,8,2,1,1379.75,0,0,0 +12295,15095,27423,-9,27421,27422,5,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1043.147690655925,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,8,2,1,1379.75,0,0,0 +12295,15095,27424,-9,27421,27422,6,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1103.664477270861,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,3,0,0,8,2,1,1379.75,0,0,0 +12295,15096,27425,-9,27421,27422,3,1,0,21,2,0,2,1,2,0,7,2,0,3,6.370291045905763,6.423450912512484,0,3,0,0,0,-9,0,-999.1364804204527,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,7,1,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,3,0,0,8,2,1,419,0,0,0 +12295,15097,27426,-9,27421,27422,4,1,1,19,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1115.647166587143,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,16,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.86,51.1,4,3,0,0,8,1,1,136,0,0,0 +12296,15098,27427,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,4.802813832935347,4.895675088590959,3,0,0,0,-9,0,-963.5576725758639,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.713512194739105,4.753255664674161,0,0,52.99,48.57,6,1,0,0,8,2,1,1068,0,0,0 +12297,15099,27428,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,4,8.723273693351443,8.979094869110918,0,3,0,0,0,-9,0,-1094.919319722898,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,60,0,15,1,0,-9,0,11.8108774130979,11.8108774130979,0,0,0,0,0,0,0,0,0,0,2.60512713011622,0,9.057727403698147,3,57.73,54.53,6,1,0,0,12,5,1,1055,0,0,0 +12298,15100,27429,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,1,1,0,3,8.319453126766842,7.964046878779148,0,3,0,0,0,-9,0,-963.0657541735607,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,35,40,15,1,8,-9,0,11.69761885598112,11.69761885598112,0,0,0,0,0,0,0,0,0,0,1.476614374985203,0,12.19001479321585,3,33.18,60.48,4,1,0,0,12,4,1,1992,0,0,0 +12299,15101,27430,27431,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,4,8.603262797190427,8.969806870751816,0,1,0,-9,23,-9,3,-50.30393158231693,-9,0,0,50,1,2,1,3,2,2019,1,1,9,0,40,0,15,1,1,1,0,19.04575458050125,19.04575458050125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,3,0,0,8,5,1,128.5,0,0,0 +12299,15101,27431,27430,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,2,7.034572486519591,6.765670002442825,0,1,0,-9,23,-9,-3,-43.38052082238365,-9,0,0,53,1,4,1,3,1,2019,1,2,14,2,8,0,15,1,2,1,0,16.87312153209964,16.87312153209964,0,0,0,0,0,0,0,0,0,0,2.798922263746868,0,0,0,55.83,35.81,6,3,0,0,8,5,1,128.5,0,0,0 +12300,15102,27432,-9,27433,27434,4,1,0,17,2,0,0,1,2,0,7,2,0,3,0,0,0,1,0,0,0,-9,0,-1022.549999270364,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,7,1,0,0,7,5,1,574.6666666666666,0,0,0 +12300,15102,27433,27434,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,5,8.910830742845526,8.982000383353901,0,1,0,-9,28,0,-4,107.8465570203672,0,0,0,60,2,4,3,2,2,2019,2,2,14,2,40,60,15,1,2,4,0,18.87116207147893,18.87116207147893,0,0,0,0,0,0,0,0,0,0,3.421918444293859,0,0,0,55.09,55.87,7,1,0,0,7,5,1,574.6666666666666,0,0,0 +12300,15102,27434,27433,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,28,0,4,-15.00283998384649,0,0,0,56,1,5,1,3,3,2019,3,1,4,0,0,45,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,5,1,574.6666666666666,0,0,0 +12300,15103,27435,-9,27433,27434,3,1,0,20,2,0,0,1,2,0,7,2,0,4,6.517887958434358,6.718759704894685,0,3,0,0,0,-9,0,-930.5154959051382,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,3,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,7,2,1,2051,0,0,0 +12301,15104,27436,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,1,0,5.216389597550198,5.476630345280351,3,0,0,0,-9,0,-960.1680263897066,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,17,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.409898629269505,0,0,27.41,25.55,5,1,0,0,7,2,1,474,0,0,0 +12302,15105,27437,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,4,0,8.348074820734078,8.282966357693745,3,0,0,0,-9,0,-993.0494373262865,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.192042383945256,8.192342997390488,0,0,52.48,52.75,6,1,0,0,8,4,1,383,0,0,0 +12303,15106,27438,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1073.624669235554,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,0,25,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.304093627145553,0,0,0,31.3,22.33,3,1,0,0,9,1,1,1923,0,0,0 +12304,15107,27439,-9,27440,27442,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.51708596934,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,5,1,381.4,0,0,0 +12304,15107,27440,27442,-9,-9,2,1,0,44,1,0,3,0,1,-9,2,1,0,4,8.279039737386771,8.478179825578142,0,2,0,-9,24,0,0,-98.59979467880603,0,0,1,44,1,3,1,2,2,2019,1,1,12,2,32,25,15,1,2,1,0,15.98232664146696,15.98232664146696,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.36,53.7,6,1,0,0,6,5,1,381.4,0,0,0 +12304,15107,27441,-9,27440,27442,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.3859123442772,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,5,1,381.4,0,0,0 +12304,15107,27442,27440,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,3,8.738352307939184,8.899297989386611,0,2,0,-9,27,0,0,32.0941753401775,0,0,0,44,1,4,1,1,3,2019,1,2,9,0,37,37,15,1,0,1,0,22.69651007146877,22.69651007146877,0,0,0,0,0,0,0,1,1,0,5.041747107244625,0,0,0,52,54.51,5,1,0,0,6,5,1,381.4,0,0,0 +12304,15107,27443,-9,27440,27442,3,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1016.629381225472,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,6,5,1,381.4,0,0,0 +12305,15108,27444,27445,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,3,6.694071509992766,6.756414255254691,0,1,0,-9,14,0,5,140.3716255816781,0,0,0,45,2,2,3,2,-9,2019,2,1,6,0,24,17,15,1,0,3,0,3.865169125846069,3.865169125846069,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.85,47.86,5,2,0,0,6,2,0,251,0,0,0 +12305,15108,27445,27444,-9,-9,1,1,0,45,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,15,0,-5,106.4839522672773,0,0,0,50,2,3,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.126597792332896,0,0,0,50.85,32.22,6,4,1,0,6,2,0,251,0,0,0 +12306,15109,27446,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-861.5549995337004,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.798669142045965,0,0,0,48.03,29.36,5,1,0,0,7,1,1,390,0,0,0 +12307,15110,27447,-9,-9,-9,1,1,0,51,3,0,1,0,3,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1043.660494884417,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.67472125857699,3,33.33,56.25,6,1,1,1,5,1,0,678,0,0,0 +12307,15110,27448,-9,27447,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-905.5826465616811,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,5,1,0,678,0,0,0 +12308,15111,27449,27450,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.890823051063325,9.28344369555527,0,1,0,-9,31,0,1,46.11708982727983,0,0,0,50,2,4,3,2,3,2019,2,1,8,0,43,42,15,1,0,3,0,27.58615989329923,27.58615989329923,0,0,0,0,0,0,0,0,0,0,3.726224574361258,0,0,0,54.2,57.49,6,1,0,0,9,5,1,361.5,0,0,0 +12308,15111,27450,27449,-9,-9,1,1,0,50,1,0,0,0,2,-9,97,3,0,4,0,0,0,1,0,-9,31,0,-1,-141.5943788026776,0,0,0,51,2,4,1,2,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.9268304749706481,0,1.460033600113215,3,58.3,52.91,6,1,0,0,9,5,1,361.5,0,0,0 +12308,15112,27451,-9,27450,27449,3,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.705384271780888,8.34132343686597,0,3,0,0,0,-9,0,-873.5068628621419,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,38,40,15,1,4,-9,1,16.04588353185736,16.04588353185736,0,0,0,0,0,0,0,0,0,0,2.801883758876753,0,0,0,33.5,63.28,5,1,0,0,9,5,1,1004,0,0,0 +12308,15113,27452,-9,27450,27449,4,1,0,21,2,0,0,0,1,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1088.546151911612,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.767502700729283,0,0,0,38.09,63.39,5,1,1,0,9,1,1,302,0,0,0 +12309,15114,27453,-9,27454,27455,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.055233747466,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,284,0,0,0 +12309,15114,27454,27455,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,5,7.504454233343457,7.745960574385024,0,2,0,-9,26,0,-6,-11.89222307172369,0,0,0,53,1,4,1,2,2,2019,1,2,6,0,30,30,15,1,0,1,0,8.705251764095769,8.705251764095769,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,9,3,0,284,0,0,0 +12309,15114,27455,27454,-9,-9,2,1,1,53,1,0,1,0,1,-9,1,1,0,4,7.366772362700901,7.527481010595798,0,2,0,-9,6,0,6,71.01055432248806,0,0,0,47,2,5,1,-9,-9,2019,1,1,9,0,60,60,15,1,1,1,0,2.398863931669569,2.398863931669569,0,0,0,0,0,0,0,1,1,0,.4010497413110528,0,0,0,54,54,6,1,0,0,9,3,0,284,0,0,0 +12310,15115,27456,27457,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,4,9.40412756710333,9.311882071197132,0,1,0,-9,32,0,0,5.468341504551212,0,0,0,62,2,2,3,3,3,2019,2,1,10,0,38,40,15,1,0,3,0,40.11809447771847,40.11809447771847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,3,1,0,0,8,5,1,1697,0,0,0 +12310,15115,27457,27456,-9,-9,1,1,0,62,1,0,0,0,2,-9,97,3,0,2,0,0,0,1,0,-9,33,0,0,-12.99937690908014,0,0,0,62,1,4,1,3,3,2019,3,2,28,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.63,18.77,1,5,0,0,8,5,1,1697,0,0,0 +12310,15116,27458,-9,27457,27456,3,1,0,24,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-927.6007744374118,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,19,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.5,44.01,3,2,1,0,8,1,1,677,0,0,0 +12311,15117,27459,27460,-9,-9,2,1,0,61,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,39,0,-5,104.9804329671194,0,0,0,66,2,3,1,3,2,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.885898368812843,0,90.21470681703362,3,49,48,5,3,0,0,8,2,1,849,0,0,0 +12311,15117,27460,27459,-9,-9,1,1,1,66,1,0,0,0,2,-9,2,1,0,3,7.302220157450568,7.427889961619856,0,1,0,-9,39,0,5,-58.68965463260957,0,0,0,61,2,3,3,3,2,2019,2,2,10,0,25,25,15,1,1,3,0,6.591832750510621,6.591832750510621,0,0,0,0,0,0,0,1,1,0,3.464921984052648,0,73.95062475475274,3,52,48,5,3,0,0,8,2,1,849,0,0,0 +12312,15118,27461,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.293972709897053,8.260365159182435,0,3,0,0,0,-9,0,-1005.914131283268,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,31,31,15,1,0,-9,0,10.01390388442434,10.01390388442434,0,0,0,0,0,0,0,0,0,0,2.143753372640716,0,0,0,43.42,62.33,6,1,0,0,7,4,1,252,0,0,0 +12313,15119,27462,27463,-9,-9,2,1,1,44,1,0,1,0,2,-9,8,3,1,4,0,0,0,2,0,-9,7,0,0,0,-9,0,0,44,2,2,3,2,3,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,56,6,1,0,0,11,1,0,293,0,0,0 +12313,15119,27463,27462,-9,-9,1,1,0,44,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,7,0,0,0,0,0,1,44,2,4,3,3,2,2019,4,2,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.6570063856413,2,28.55,50.85,4,1,0,0,11,1,0,293,0,0,0 +12313,15119,27464,-9,27463,27462,4,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-942.9825507119267,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,11,1,0,293,0,0,0 +12313,15120,27465,-9,27463,27462,3,1,0,21,2,0,1,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-840.6327077539829,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.6567950865270318,0,0,0,46,58,5,1,0,0,11,1,0,96,0,0,0 +12314,15121,27466,27467,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,8.23365890120647,8.079519950926283,1,0,-9,11,0,0,86.47299315679273,0,0,0,72,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.759022472975315,8.421906769604085,0,0,64.40000000000001,25.94,5,1,0,0,5,3,1,1315,0,0,0 +12314,15121,27467,27466,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,51,0,0,-6.965126223196673,0,0,0,72,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.780878733408731,0,0,0,54.2,57.49,6,1,0,0,5,3,1,1315,0,0,0 +12315,15122,27468,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-878.3907001145908,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,41,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.721013987064294,0,0,0,60.87,44.96,7,1,0,0,2,1,1,217,0,0,0 +12316,15123,27469,27470,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,3,0,4.339446671691867,4.053522838729797,1,0,-9,3,0,-2,41.24175134194508,0,0,0,66,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.74227919673501,3.930668468479107,.868931883167321,3,57.33,53.46,6,1,0,0,2,3,1,386.5,0,0,0 +12316,15123,27470,27469,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,7.537805299082079,8.002092420160198,1,0,-9,3,0,2,30.70325333513424,0,0,0,64,3,3,3,-9,-9,2019,4,1,16,4,0,14,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.430022235820132,7.62205288115067,0,0,44.08,48.63,6,1,0,0,2,3,1,386.5,0,0,0 +12317,15124,27471,-9,27472,27473,3,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1128.456809766884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,1,4,1,303.3333333333333,0,0,0 +12317,15124,27472,27473,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,3,7.354252898051817,7.53947083133295,0,2,0,-9,27,0,-8,-108.8864688537159,0,0,0,57,2,4,1,3,-9,2019,1,2,11,0,24,29,15,1,0,1,0,8.668074999085555,8.668074999085555,0,0,0,0,0,0,0,1,1,0,1.165940771778414,0,1.546954500048876,3,40.38,51.94,5,1,0,0,1,4,1,303.3333333333333,0,0,0 +12317,15124,27473,27472,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,4,7.968477331636252,8.238369886436402,0,2,0,-9,9,0,8,98.53316149749168,0,0,0,49,2,3,1,-9,-9,2019,1,1,8,0,38,38,15,1,0,1,0,12.3352443467218,12.3352443467218,0,0,0,0,0,0,0,1,1,0,0,0,6.460515454924137,3,44.19,56.73,5,1,0,0,1,4,1,303.3333333333333,0,0,0 +12318,15125,27474,27475,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,8.183413871896168,7.744967822859629,1,0,-9,43,0,5,-113.7533747412084,0,0,0,62,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.064018946803042,0,0,60.12,54.8,7,1,0,0,1,5,1,549,0,0,0 +12318,15125,27475,27474,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,4,8.458105026930239,8.625034353087187,7.255362352389758,1,0,-9,43,0,-5,59.19137895756276,0,0,0,67,2,4,3,3,3,2019,2,1,11,1,38,38,15,1,1,4,0,14.1750045348209,14.1750045348209,0,0,0,0,0,0,0,1,1,0,0,7.460070306717768,0,0,48.53,58.91,6,1,0,0,1,5,1,549,0,0,0 +12319,15126,27476,-9,-9,-9,3,1,1,19,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1112.224592689751,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,3,0,0,6,1,0,202,0,0,0 +12320,15127,27477,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1124.611740288241,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,7,1,0,0,6,1,1,2041,0,0,0 +12321,15128,27478,27481,-9,-9,2,1,0,43,1,0,2,0,1,-9,1,1,0,2,7.016922108418619,7.303647852418595,6.165948258313143,2,0,-9,5,0,-3,-48.19499955449649,0,0,1,46,2,3,1,-9,-9,2019,1,1,12,3,6,0,15,1,3,1,0,16.09453609057058,16.09453609057058,0,0,0,0,0,0,0,0,0,0,6.406333053756991,0,0,0,55.19,34.27,5,1,0,0,2,5,1,1913.5,0,0,0 +12321,15128,27479,-9,27478,27481,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1027.048082465937,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,5,1,0,0,2,5,1,1913.5,0,0,0 +12321,15128,27480,-9,27478,27481,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.8290256587713,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,2,5,1,1913.5,0,0,0 +12321,15128,27481,27478,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,3,9.319978048806764,9.122542345134338,0,2,0,-9,5,0,3,6.874852055007232,0,0,0,43,1,2,1,2,2,2019,1,2,9,0,52,52,15,1,0,1,0,27.28051505010571,27.28051505010571,0,0,0,0,0,0,0,0,0,0,.2082077428525312,0,0,0,54.37,54.8,6,1,0,0,2,5,1,1913.5,0,0,0 +12322,15129,27482,-9,27483,27485,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.5711792065918,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,3,1,628.25,0,0,0 +12322,15129,27483,27485,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,3,6.989818202504291,6.876084648412653,0,2,0,-9,25,0,-4,-109.7202930863924,0,0,0,51,2,3,1,2,2,2019,1,1,15,4,8,8,15,1,4,1,0,15.93142978374409,15.93142978374409,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.6,54.09,5,1,0,0,7,3,1,628.25,0,0,0 +12322,15129,27484,-9,27483,27485,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.1601408797145,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,1,628.25,0,0,0 +12322,15129,27485,27483,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,3,8.539186475543975,8.259263648821376,0,2,0,-9,25,0,4,53.00810826121291,0,0,0,47,2,3,1,-9,-9,2019,1,2,12,1,48,38,15,1,1,1,0,10.13605184604009,10.13605184604009,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,49.35,5,1,0,0,7,3,1,628.25,0,0,0 +12323,15130,27486,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,3,8.257741044741907,8.443577996380485,0,3,0,0,0,-9,0,-972.8150926688126,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,37,37,15,1,3,-9,0,13.12623112982877,13.12623112982877,0,0,0,0,0,0,0,0,0,0,2.289178440032336,0,0,0,40.75,58.26,4,1,0,0,6,4,1,143,0,0,0 +12323,15131,27487,-9,-9,27486,2,1,1,27,2,0,0,0,2,-9,2,1,0,4,7.752794956409137,7.704837015275799,4.430688827293905,3,0,0,0,-9,0,-1044.072402269102,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,25,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.732986011501948,4.232763916686868,0,0,46.63,59.72,6,1,0,0,6,3,1,6586,0,0,0 +12324,15132,27488,-9,27491,27490,3,1,1,17,2,0,2,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-1000.764801224802,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,1,0,2,1,0,778.25,0,0,0 +12324,15132,27489,-9,27491,27490,4,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1047.095311034626,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,2,1,0,778.25,0,0,0 +12324,15132,27490,27491,-9,-9,1,1,1,30,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,8,0,-14,0,0,0,0,44,2,1,3,-9,-9,2019,4,2,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.1572395304225,1,54.2,57.49,6,1,1,0,2,1,0,778.25,0,0,0 +12324,15132,27491,27490,-9,-9,2,1,0,44,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,8,0,14,0,0,0,1,30,2,4,3,-9,-9,2019,4,1,19,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.49,37.23,4,1,0,0,2,1,0,778.25,0,0,0 +12325,15133,27492,-9,-9,-9,2,1,0,29,2,0,0,0,1,1,2,1,0,4,8.387830426467108,8.496613947741404,0,3,0,0,0,-9,0,-886.9449746322269,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,40,0,15,1,0,-9,1,11.1210387119587,11.1210387119587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,4,0,0,8,5,1,441,0,0,0 +12326,15134,27493,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1073.519389718482,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,3,1,0,0,5,1,1,144,0,0,0 +12327,15135,27494,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,4,7.745073509158482,7.570226664175561,0,3,0,0,0,-9,0,-983.3563121009774,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,35,5,15,1,3,-9,0,6.907995910020615,6.907995910020615,0,0,0,0,0,0,0,0,0,0,5.937603962262358,0,0,0,50.04,49.76,5,1,0,0,9,3,1,246,0,0,0 +12328,15136,27495,27496,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,3,9.575486887627472,9.123464521482529,0,2,0,-9,8,0,-2,68.38982938913421,0,0,0,49,2,4,1,-9,-9,2019,1,1,11,0,65,55,15,1,0,1,0,29.69363201948089,29.69363201948089,0,0,0,0,0,0,0,1,1,0,8.003181340742129,0,0,0,44.19,58.01,5,1,0,0,7,5,1,523.3333333333334,0,0,0 +12328,15136,27496,27495,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,8.174519600461387,8.300108879394005,0,2,0,-9,28,0,2,-98.71595546758655,0,0,0,47,2,3,1,3,2,2019,1,2,6,1,25,25,15,1,1,1,0,17.324483292819,17.324483292819,0,0,0,0,0,0,0,1,1,0,1.88168902080081,0,0,0,51.77,58.57,6,1,0,0,7,5,1,523.3333333333334,0,0,0 +12328,15136,27497,-9,27496,27495,5,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1132.515814465733,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,7,5,1,523.3333333333334,0,0,0 +12328,15137,27498,-9,27496,27495,3,1,0,20,2,0,2,0,2,1,2,1,0,4,7.923867644617751,7.942125181893847,0,3,0,0,0,-9,0,-998.6364707851257,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,39,0,15,1,2,-9,1,7.082187677464533,7.082187677464533,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,4,1,0,0,7,3,1,579,0,0,0 +12328,15138,27499,-9,27496,27495,4,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1075.89469886808,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,7,5,1,115,0,0,0 +12329,15139,27500,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,2,0,7.923551785908173,7.984098082098548,3,0,0,0,-9,0,-955.0849197539286,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,1,4.07317096396995,0,0,0,0,40.64174178315238,1,1,0,0,7.414315847019751,0,0,44,26.05,2,1,0,0,4,3,1,281,0,0,0 +12330,15140,27501,27502,-9,-9,2,1,0,27,1,0,1,0,1,-9,2,1,0,4,8.364555177507786,8.52829025439933,0,2,0,-9,1,-9,-3,-21.30475395433011,-9,1,1,30,2,3,1,-9,-9,2019,1,1,8,2,43,0,15,1,2,1,0,11.3919881801031,11.3919881801031,0,0,0,0,0,0,0,0,0,0,5.515685008598683,0,0,0,48.87,58.55,6,1,0,0,10,5,1,1323.666666666667,0,0,0 +12330,15140,27502,27501,-9,-9,1,1,1,30,1,0,1,0,2,-9,2,1,0,3,8.686002189049391,8.387902124155953,0,2,0,1,1,-9,3,40.04539631478244,0,0,0,27,1,4,1,-9,-9,2019,1,2,14,3,44,43,15,1,3,1,0,8.461421480803823,8.461421480803823,0,0,0,0,0,0,0,0,0,0,3.901786777697414,0,0,0,31.04,62.55,4,1,0,0,10,5,1,1323.666666666667,0,0,0 +12330,15140,27503,-9,-9,27502,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-928.36631740658,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,10,5,1,1323.666666666667,0,0,0 +12331,15141,27504,27505,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.048379082650557,8.501504543972212,7.229044162742398,1,0,-9,2,0,8,14.37373507898221,0,0,0,54,2,5,1,-9,-9,2019,1,1,5,0,19,39,15,1,0,1,0,22.81170886894733,22.81170886894733,0,0,0,0,0,0,0,0,0,0,3.728487884865517,7.357262677475995,0,0,60.3,46.58,6,1,0,0,4,5,1,2192.5,0,0,0 +12331,15141,27505,27504,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,5,7.952383496271865,7.665751239737171,0,1,0,-9,2,0,-8,46.25738447118486,0,0,0,62,2,3,1,3,2,2019,1,2,7,0,27,26,15,1,0,1,0,11.20315157059423,11.20315157059423,0,0,0,0,0,0,0,0,0,0,6.187461360971941,0,6.111775571326797,3,57.06,57.76,6,1,0,0,4,5,1,2192.5,0,0,0 +12332,15142,27506,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,2,1,0,3,8.245500995567527,8.081859951257687,0,3,0,0,0,-9,0,-989.2824896683811,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,40,38,15,1,0,-9,0,14.36810049210476,14.36810049210476,0,0,0,0,0,0,0,0,0,0,2.780975771224605,0,0,0,57.33,53.46,6,1,0,0,9,4,1,514,0,0,0 +12333,15143,27507,27508,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,1,0,5.023072434300764,4.48769442433702,1,0,-9,64,0,2,62.4175802537351,0,0,0,82,3,2,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,1,0,13.87262744432615,0,0,0,0,1,1,0,2.012672070297439,4.486619431269335,2.631833105913198,1,43,23,6,1,0,0,6,1,1,412,0,0,0 +12333,15143,27508,27507,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,64,0,-2,29.60079955268668,0,0,0,84,2,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.842289584553332,0,6.862795472580169,1,48.38,44.46,4,1,0,0,6,1,1,412,0,0,0 +12334,15144,27509,27510,-9,-9,1,1,0,49,1,0,1,0,3,-9,2,1,0,4,7.124432669165189,6.790963198194985,0,2,0,-9,12,0,6,7.227907985461967,0,0,0,43,2,4,1,2,3,2019,1,2,10,0,20,40,15,1,0,1,0,5.800596293020715,5.800596293020715,0,0,0,0,0,0,0,1,1,0,2.616068805844717,0,0,0,57.16,56.15,6,1,0,0,8,3,0,664,0,0,0 +12334,15144,27510,27509,-9,-9,2,1,1,43,1,0,1,0,2,-9,2,1,0,4,8.178458472749357,8.394569248021092,0,2,0,-9,8,0,-6,-14.94505055634298,0,0,0,49,3,4,1,-9,-9,2019,1,1,9,0,46,35,15,1,0,1,0,10.90539027926086,10.90539027926086,0,0,0,0,0,0,0,1,1,0,2.101743147121385,0,0,0,57.16,56.15,6,1,0,0,8,3,0,664,0,0,0 +12334,15144,27511,-9,27509,27510,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.743866470303,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,3,0,664,0,0,0 +12335,15145,27512,-9,27513,27515,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.224257775977,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,3,1,927.25,0,0,0 +12335,15145,27513,27515,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,4,6.209156771530388,6.167789138213019,0,2,0,-9,16,0,6,-29.02318486051722,0,0,0,47,3,5,1,2,3,2019,1,2,6,0,9,9,15,1,0,1,0,6.917543989988772,6.917543989988772,0,0,0,0,0,0,0,1,1,0,0,0,.784590755610159,3,54.79,55.86,4,1,0,1,2,3,1,927.25,0,0,0 +12335,15145,27514,-9,27513,27515,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1044.890700749907,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,3,1,927.25,0,0,0 +12335,15145,27515,27513,-9,-9,2,1,1,47,1,0,2,0,3,-9,1,1,0,5,8.22365218384865,8.260392756378396,0,2,0,-9,16,0,-6,-27.91482399708289,0,0,0,53,2,4,1,3,3,2019,1,1,6,0,50,60,15,1,0,1,0,7.783943486586429,7.783943486586429,0,0,0,0,0,0,0,1,1,0,0,0,33.23405312533447,3,62.39,56.71,6,1,0,1,2,3,1,927.25,0,0,0 +12336,15146,27516,-9,27517,27518,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.5516905791909,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,1110.5,0,0,0 +12336,15146,27517,27518,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,6.185169076762792,6.184043768300217,0,2,0,-9,19,0,-2,55.5383171193233,0,0,1,39,1,4,1,2,2,2019,1,2,11,0,10,0,15,1,0,1,0,5.521137351621094,5.521137351621094,0,0,0,0,0,0,0,0,0,0,3.970643834805936,0,0,0,46.5,58.26,6,1,0,0,8,5,1,1110.5,0,0,0 +12336,15146,27518,27517,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,4,9.173458837603629,8.974072656802145,0,2,0,-9,9,0,2,175.5177033328817,0,0,0,37,1,4,1,-9,-9,2019,1,1,13,3,39,40,15,1,3,1,0,30.08270563225351,30.08270563225351,0,0,0,0,0,0,0,0,0,0,3.614930925592774,0,0,0,43.54,59.6,5,1,0,0,8,5,1,1110.5,0,0,0 +12336,15146,27519,-9,27517,27518,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-843.4554889668578,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,1110.5,0,0,0 +12337,15147,27520,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,4,8.708055415857773,9.050698671199715,0,3,0,0,0,-9,0,-1049.431960558649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,55,45,15,1,0,-9,0,16.88899074419973,16.88899074419973,0,0,0,0,0,0,0,0,0,0,4.52281502534891,0,0,0,57.16,56.15,6,1,0,0,7,5,1,1416,0,0,0 +12338,15148,27521,27522,-9,-9,2,1,1,60,1,0,2,0,2,-9,2,1,0,3,8.306078024836637,8.262818570118158,0,2,0,-9,7,0,3,-63.10423990204904,0,0,0,57,1,3,1,1,1,2019,1,1,10,0,40,40,15,1,1,1,0,13.43046164078117,13.43046164078117,0,0,0,0,0,0,0,0,0,0,9.694066507993295,0,0,0,51,49,5,1,0,0,1,5,0,812,0,0,0 +12338,15148,27522,27521,-9,-9,1,1,0,57,1,0,2,0,1,-9,2,1,0,3,9.284839409038062,8.848505740098389,0,2,0,-9,7,0,-3,-63.98333933644665,0,0,0,60,2,3,1,2,2,2019,1,2,11,0,48,32,15,1,2,1,0,21.50878171207264,21.50878171207264,0,0,0,0,0,0,0,0,0,0,2.436239054283173,0,0,0,49,48,5,1,0,0,1,5,0,812,0,0,0 +12338,15148,27523,-9,27522,27521,4,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1019.003882953146,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,19,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.76,64.84999999999999,2,1,0,0,1,5,0,812,0,0,0 +12338,15149,27524,-9,27522,27521,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-924.5832824923938,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,5,1,0,0,1,5,0,787,0,0,0 +12339,15150,27525,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-947.7354739258449,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,27,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.78415200697169,3,31.77,45.32,3,1,0,0,9,1,1,136,0,0,0 +12340,15151,27526,-9,27529,-9,4,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-939.6058687577015,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,9,2,0,545.5,0,0,0 +12340,15151,27527,-9,27529,-9,3,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-928.9416431257474,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,9,2,0,545.5,0,0,0 +12340,15151,27528,-9,27529,-9,2,1,0,17,2,0,3,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-977.007234389343,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.365903042334121,0,0,0,57.92,51.82,6,1,0,0,9,2,0,545.5,0,0,0 +12340,15151,27529,-9,-9,-9,1,1,0,42,2,0,3,0,2,-9,2,1,0,3,6.931043281017258,6.580311989321103,0,4,0,0,0,-9,0,-999.2893310193502,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,2,16,16,15,1,2,-9,0,7.150435805961297,7.150435805961297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.59,53.29,4,1,0,0,9,2,0,545.5,0,0,0 +12341,15152,27530,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,2,1,0,3,8.458080173204523,8.436052757320898,0,3,0,0,0,-9,0,-986.4862348632039,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,40,36,15,1,0,-9,0,16.74968639773977,16.74968639773977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.09,52.41,5,4,0,0,8,5,0,627,0,0,0 +12342,15153,27531,27532,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,9.41054708303599,9.095816250968584,0,1,0,-9,4,0,2,106.5729629514645,0,0,0,62,3,3,1,3,2,2019,1,2,5,0,47,0,15,1,0,1,0,26.24139418364737,26.24139418364737,0,0,0,0,0,0,0,0,0,0,3.05906483797309,0,0,0,37.42,60.49,7,1,0,0,11,5,1,940.5,0,0,0 +12342,15153,27532,27531,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,3,7.406133275141134,7.361962661930071,0,1,0,-9,4,0,-2,2.404693784251101,0,0,0,64,2,4,1,3,3,2019,1,1,11,0,20,20,15,1,2,1,0,9.666193388216351,9.666193388216351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,1,0,0,11,5,1,940.5,0,0,0 +12343,15154,27533,27534,-9,-9,1,1,1,40,1,0,0,0,2,-9,1,1,0,4,9.762340639404753,9.582161386020688,0,1,0,-9,2,0,3,-27.77668212044783,0,0,0,37,1,4,1,2,2,2019,1,2,12,0,60,50,15,1,0,1,0,35.21020513481247,35.21020513481247,0,0,0,0,0,0,0,0,0,0,6.793634882598913,0,0,0,54.2,57.49,6,1,0,0,9,5,1,538.5,0,0,0 +12343,15154,27534,27533,-9,-9,2,1,0,37,1,0,0,0,1,-9,2,1,0,4,9.205087817465612,9.396944335880656,0,1,0,-9,2,0,-3,-12.74686473459395,-9,0,1,40,2,4,1,2,2,2019,1,1,10,1,40,0,15,1,1,1,0,26.00648186509203,26.00648186509203,0,0,0,0,0,0,0,0,0,0,1.905415378438771,0,0,0,49.41,58.28,6,1,0,0,9,5,1,538.5,0,0,0 +12344,15155,27535,-9,27539,27537,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.2570333009304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,1,844.4,0,0,0 +12344,15155,27536,-9,27539,27537,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.8007238449753,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,844.4,0,0,0 +12344,15155,27537,27539,-9,-9,2,1,1,36,1,1,3,0,2,-9,2,1,0,4,8.524632431073282,8.807475498934036,0,2,0,-9,6,0,-1,-94.45039471471941,0,0,0,37,2,5,1,2,2,2019,1,1,11,0,50,54,15,1,0,1,0,10.97300256854601,10.97300256854601,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,11,3,1,844.4,0,0,0 +12344,15155,27538,-9,27539,27537,3,1,1,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.4834171174248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,3,1,844.4,0,0,0 +12344,15155,27539,27537,-9,-9,1,1,0,37,1,1,3,0,2,-9,2,1,0,5,6.987572705397298,6.888734370775394,0,2,0,-9,6,0,1,-13.12946580788282,0,0,1,36,2,4,1,1,2,2019,1,2,10,0,25,23,15,1,0,1,0,5.323659201790127,5.323659201790127,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.14,60.45,7,1,0,0,11,3,1,844.4,0,0,0 +12345,15156,27540,-9,-9,-9,1,1,0,33,2,0,0,0,2,-9,2,1,0,4,8.558372578399027,8.432934456807448,0,3,0,-9,0,-9,0,-1100.745051529263,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,50,0,15,1,1,-9,0,9.170136761527765,9.170136761527765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.38,45.88,6,1,0,0,11,4,0,467,0,0,0 +12346,15157,27541,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,6.437361347179819,6.560779734497714,3,0,0,0,-9,0,-902.4556321776912,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,.8696768764048257,0,0,0,4.467961221993336,23.18067500725358,1,1,0,6.458995981026702,6.456077026292416,0,0,65.98999999999999,31.59,7,1,0,0,2,2,1,254,0,0,0 +12347,15158,27542,27543,-9,-9,1,1,1,59,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,2,0,3,-108.9587913530522,0,0,0,56,3,2,1,-9,-9,2019,3,2,10,0,0,20,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.07,16.26,6,1,1,1,4,2,1,471.5,0,0,0 +12347,15158,27543,27542,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,2,7.475488431899441,7.670890317245494,4.933499561723396,1,0,-9,2,0,-3,-2.808782706938006,0,0,0,59,3,2,3,-9,-9,2019,2,1,6,0,30,31,15,1,0,3,0,6.801295069466305,6.801295069466305,0,0,0,0,0,0,0,1,1,0,5.042832424527206,5.317728074473785,0,0,49.48,46.53,7,1,0,0,4,2,1,471.5,0,0,0 +12348,15159,27544,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,2,1,0,4,8.077703340659204,8.191348853535922,0,1,0,-9,2,0,15,-48.77987919576906,0,0,1,-9,-9,-9,-9,3,3,2019,1,2,9,1,54,59,15,1,1,-9,0,8.119379205712782,8.119379205712782,0,0,0,0,0,0,0,0,0,0,1.304070571741381,0,0,0,64.38,39.16,6,1,0,0,12,4,1,223,0,0,0 +12348,15160,27545,-9,-9,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,5,8.166351108409259,8.186385190407968,0,1,0,-9,2,0,-15,-13.02539552806486,0,1,1,-9,-9,-9,-9,3,2,2019,1,1,9,1,43,23,15,1,1,-9,0,10.34679095967828,10.34679095967828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,4,1,663,0,0,0 +12349,15161,27546,27547,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,5,0,7.465185821006057,7.588656804933881,1,0,-9,45,0,4,36.68561609609419,0,0,0,64,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.569144013567161,7.387718015778105,0,0,57.06,57.76,7,1,0,0,10,3,1,450.5,0,0,0 +12349,15161,27547,27546,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,7.140070586218005,7.002869662310067,1,0,-9,45,0,-4,-4.545303518128303,0,0,0,68,1,5,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.904842404965485,0,0,58.46,25.94,6,1,0,0,10,3,1,450.5,0,0,0 +12350,15162,27548,-9,27552,27550,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.2808454833955,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,13,4,1,545.2,0,0,0 +12350,15162,27549,-9,27552,27550,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.8761720774341,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,13,4,1,545.2,0,0,0 +12350,15162,27550,27552,-9,-9,2,1,1,40,1,0,3,0,2,-9,2,1,0,5,9.081854369355561,8.833734964187604,0,2,0,-9,7,0,3,-26.04312960453838,0,0,0,37,1,4,1,-9,-9,2019,1,1,8,0,46,21,15,1,0,1,0,21.45254610667385,21.45254610667385,0,0,0,0,0,0,0,0,0,0,6.241758516076248,0,0,0,51.14,60.45,6,1,0,0,13,4,1,545.2,0,0,0 +12350,15162,27551,-9,27552,27550,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-902.2328940815372,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,13,4,1,545.2,0,0,0 +12350,15162,27552,27550,-9,-9,1,1,0,37,1,0,3,0,1,-9,2,1,0,4,7.926728036597639,8.047039350738995,0,2,0,-9,7,0,-3,57.67737485009435,0,0,1,40,2,5,1,2,2,2019,1,2,7,0,31,33,15,1,0,1,0,10.21564140677316,10.21564140677316,0,0,0,0,0,0,0,0,0,0,2.395219228727686,0,0,0,57.16,56.15,6,1,0,0,13,4,1,545.2,0,0,0 +12351,15163,27553,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,2,0,7.182310755979633,7.032379038584721,3,0,0,0,-9,0,-913.1475627908633,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,.1460591314701221,0,0,0,0,25.3984908708135,1,1,0,0,6.969783685039839,0,0,62.27,37.94,6,1,0,0,6,2,1,218,0,0,0 +12352,15164,27554,27555,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,2,0,6.633340502218749,6.836081686925009,1,0,-9,7,0,0,26.04804987804987,0,0,0,76,2,3,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5106279507343037,6.439282825843701,0,0,45.99,38.65,6,1,0,0,9,2,1,194,0,0,0 +12352,15164,27555,27554,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.672719731540877,6.905504446039286,1,0,-9,7,0,0,-41.50203655392048,0,0,0,76,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.600063776670777,6.961831874500589,0,0,54,46,6,1,0,0,9,2,1,194,0,0,0 +12353,15165,27556,-9,27557,27558,6,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.7071029418823,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,4,1,847.25,0,0,0 +12353,15165,27557,27558,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,2,8.808112123477276,8.341464505423572,0,2,0,-9,10,0,-7,-24.0009868091485,0,0,0,53,2,3,1,2,2,2019,1,1,10,1,30,31,15,1,1,1,0,27.55018216014964,27.55018216014964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.11,17.61,6,1,0,0,7,4,1,847.25,0,0,0 +12353,15165,27558,27557,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,3,8.365549003641496,8.540428676648737,0,2,0,-9,9,0,7,-66.06181776409817,0,0,0,46,1,2,1,3,3,2019,1,2,6,0,42,41,15,1,0,1,0,8.945703772292447,8.945703772292447,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.22,39.68,6,1,0,0,7,4,1,847.25,0,0,0 +12353,15165,27559,-9,27557,27558,5,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.48731783541,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,4,1,847.25,0,0,0 +12353,15166,27560,-9,27557,27558,4,1,0,18,2,0,2,0,2,-9,2,1,0,3,7.488436712109387,7.860777900120007,0,3,0,0,0,-9,0,-996.8830475937356,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,14,2,8,0,15,1,2,-9,1,28.02594823611661,28.02594823611661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.54,30.78,5,1,0,0,7,3,1,196,0,0,0 +12354,15167,27561,-9,27562,27563,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-981.6714471909603,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,5,1,990.25,0,0,0 +12354,15167,27562,27563,-9,-9,2,1,0,47,1,0,2,0,2,-9,1,1,0,4,9.80820437305322,10.08391818046018,0,2,0,-9,19,0,4,125.6937455264445,0,0,0,43,1,5,1,2,1,2019,1,1,9,0,40,40,15,1,0,1,0,42.08396277571457,42.08396277571457,0,0,0,0,0,0,0,1,1,0,6.590127764367828,0,0,0,48.87,58.55,4,1,0,0,9,5,1,990.25,0,0,0 +12354,15167,27563,27562,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,5,8.632376932721055,9.004717488711503,0,2,0,-9,18,0,-4,-53.08923573812919,-9,0,0,47,2,4,1,2,1,2019,1,2,6,0,40,0,15,1,0,1,0,20.96697118382905,20.96697118382905,0,0,0,0,0,0,0,1,1,0,4.224114495757481,0,0,0,59.43,58.05,5,1,0,0,9,5,1,990.25,0,0,0 +12354,15167,27564,-9,27562,27563,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.2202509779188,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,990.25,0,0,0 +12355,15168,27565,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1075.289678515443,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.40576010296396,3,38.01,23.4,3,1,1,1,9,1,0,729,0,0,0 +12356,15169,27566,-9,-9,-9,1,1,0,94,3,0,0,0,3,-9,4,3,0,1,0,5.90186987579597,5.548181372475146,3,0,0,0,-9,0,-987.3691874912537,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,6.446625619136463,0,1,1,0,.6118269574355053,5.435341298529583,0,0,38.89,41.34,4,1,0,0,1,2,0,1245,0,0,0 +12357,15170,27567,27568,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.960066558524115,8.100098937965662,1,0,-9,49,0,3,98.37611021658363,0,0,0,68,2,3,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.373081277280931,7.702826931036639,0,0,61.43,43.34,6,1,0,0,9,3,1,627.5,0,0,0 +12357,15170,27568,27567,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-3,-49.21034107162198,0,0,0,71,2,3,3,2,2,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.792612035039173,0,16.75697428047159,3,49.52,56.95,6,1,0,0,9,3,1,627.5,0,0,0 +12358,15171,27569,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-917.3219264164252,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.497556614050186,0,0,0,61.83,36.54,3,1,1,1,2,1,1,2373,0,0,0 +12359,15172,27570,27572,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,4,7.287763409227031,7.63656400157405,0,2,0,-9,1,-9,-1,43.72339969560002,-9,0,1,38,2,4,1,-9,-9,2019,1,1,11,1,22,0,15,1,1,1,0,8.499564780550136,8.499564780550136,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,6,1,0,0,13,2,1,652,0,0,0 +12359,15172,27571,-9,27570,27572,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1159.007022098317,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,652,0,0,0 +12359,15172,27572,27570,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,4,2.098739141463723,2.202546121364318,0,2,0,-9,1,-9,1,-158.2359637625846,-9,0,0,37,2,4,1,2,2,2019,1,2,12,0,50,0,15,1,0,1,0,.0166145307642889,.0166145307642889,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,6,1,0,0,13,2,1,652,0,0,0 +12359,15172,27573,-9,27570,27572,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1050.459320937621,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,2,1,652,0,0,0 +12360,15173,27574,27575,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,3,7.275698994029717,6.961691376176873,0,2,0,-9,8,0,0,-46.78594529865084,0,0,0,44,1,3,1,-9,3,2019,1,1,24,11,45,50,15,1,11,1,0,2.526016904340972,2.526016904340972,0,0,0,0,0,0,0,1,1,0,7.934071177453204,0,0,0,50.11,46.17,4,1,0,0,9,3,1,467.3333333333333,0,0,0 +12360,15173,27575,27574,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,3,7.9985226723884,8.102584021057819,0,2,0,-9,8,0,0,-52.23239832738036,0,0,1,44,2,3,1,2,3,2019,1,2,9,0,50,24,15,1,0,1,0,7.069574227672351,7.069574227672351,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,49.95,7,1,0,0,9,3,1,467.3333333333333,0,0,0 +12360,15173,27576,-9,27575,27574,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.01077164407,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.950705987998288,3,60.12,54.8,7,1,0,0,9,3,1,467.3333333333333,0,0,0 +12361,15174,27577,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,2,0,6.6079534507957,7.049012872714086,3,0,0,0,-9,0,-910.1254873304548,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.664700191593719,6.61550953842634,0,0,51.92,34.63,6,1,0,0,10,2,0,324,0,0,0 +12362,15175,27578,27579,-9,-9,1,1,1,83,1,0,0,0,1,-9,4,3,0,3,0,7.923236396706993,7.921439504371789,1,0,-9,30,0,14,-37.92711119953826,0,0,0,69,2,3,1,1,1,2019,3,2,20,7,0,0,15,4,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.420836353545772,8.051695255084237,0,0,31.3,51.93,3,1,0,0,10,4,1,149,0,0,0 +12362,15175,27579,27578,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,3,7.447841525418509,8.301219103204838,7.872561640565086,1,0,-9,30,0,-14,-46.74596150901945,0,0,0,83,1,3,3,3,3,2019,2,1,7,0,13,8,15,1,0,4,0,16.12319937220292,16.12319937220292,0,0,0,0,0,0,0,1,1,0,5.900115281386956,7.745682195974693,0,0,62.27,42.94,5,2,0,0,10,4,1,149,0,0,0 +12363,15176,27580,27581,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,3,9.108681796586358,9.180075419016665,0,1,0,-9,31,0,3,56.57151808842805,0,0,0,59,3,2,3,2,2,2019,2,2,7,0,40,39,15,1,0,3,0,23.25536158411782,23.25536158411782,0,0,0,0,0,0,0,1,1,0,0,0,0,1,58.89,48.6,6,1,0,0,12,5,0,416,0,0,0 +12363,15176,27581,27580,-9,-9,2,1,1,59,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,31,0,-3,44.62812666799688,0,0,0,62,2,3,1,2,2,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.76,30.28,2,1,0,0,12,5,0,416,0,0,0 +12363,15177,27582,-9,27580,27581,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,7.911719356262716,8.055750640325543,0,3,0,0,0,-9,0,-867.2289738366959,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,38,37,15,1,1,-9,1,9.875869132795717,9.875869132795717,0,0,0,0,0,0,0,1,1,0,2.197898578249079,0,0,0,49.12,57.28,6,1,0,0,12,4,0,1361,0,0,0 +12364,15178,27583,-9,-9,-9,1,1,0,29,3,1,1,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1099.739876637007,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,0,6,1,1,1605.5,0,0,0 +12364,15178,27584,-9,27583,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1082.443202179083,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,1,1,1605.5,0,0,0 +12365,15179,27585,27586,-9,-9,3,1,0,56,1,0,0,0,1,-9,4,3,0,3,0,8.055638580237638,8.082729030155633,1,0,-9,33,0,-7,-19.25464771221503,0,0,0,63,1,5,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.26397441058775,8.532246831333401,0,0,55.5,47.36,6,1,0,0,11,5,1,1103,0,0,0 +12365,15179,27586,27585,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,5,7.515189585783509,8.028510036013857,6.356491737944583,1,0,-9,32,0,7,21.05491632438822,0,0,0,56,1,3,3,3,2,2019,2,3,12,0,25,37,15,1,0,4,0,10.57689705123981,10.57689705123981,0,0,0,0,0,0,0,0,0,0,6.964251857950519,6.58553174356768,5.539710698343319,3,55.63,55.6,2,1,0,0,11,5,1,1103,0,0,0 +12365,15180,27587,-9,27585,27586,2,1,1,22,2,0,0,0,2,-9,2,1,0,3,8.234734758107615,7.903997869615618,0,3,0,0,0,-9,0,-908.0706803943117,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,36,48,15,1,0,-9,1,12.2856532457064,12.2856532457064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,6,1,0,0,11,4,1,4255,0,0,0 +12366,15181,27588,27591,-9,-9,2,1,1,54,1,0,1,0,1,-9,1,1,0,3,4.150746587674674,3.956010423859563,0,2,0,-9,9,0,5,2.522805750733108,0,0,0,49,2,2,1,2,2,2019,1,1,10,0,9,34,15,1,0,1,0,.6823308820456579,.6823308820456579,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,37.91,3,1,0,0,1,3,1,594.25,0,0,0 +12366,15181,27589,-9,27591,27588,4,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-959.5385716513429,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,24,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.71,54.45,2,1,0,0,1,3,1,594.25,0,0,0 +12366,15181,27590,-9,27591,27588,3,1,0,17,2,0,1,1,2,0,7,2,0,4,4.999047200645159,4.957686506938233,0,2,0,0,0,-9,0,-1007.635683014966,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,19,8,3,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.56,40.58,6,1,0,0,1,3,1,594.25,0,0,0 +12366,15181,27591,27588,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,2,7.690034694357662,8.111438028744638,0,2,0,-9,9,0,-5,-19.21586522407927,0,0,0,54,1,3,1,2,3,2019,1,2,21,8,43,37,15,1,8,1,0,8.408028355959219,8.408028355959219,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.94,37.09,4,1,0,1,1,3,1,594.25,0,0,0 +12367,15182,27592,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,4,8.420588631662191,8.565689067945449,0,3,0,0,0,-9,0,-875.8508854096679,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,41,40,15,1,0,-9,0,14.43698026044643,14.43698026044643,0,0,0,0,0,0,0,0,0,0,3.994290589251903,0,0,0,57.16,56.15,2,1,0,0,9,4,1,577,0,0,0 +12368,15183,27593,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,3,0,4.104744311362313,4.117137313466907,3,0,0,0,-9,0,-1015.826116661377,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.314476700509438,4.218397824878833,0,0,64.73,28.09,5,1,0,1,5,1,0,275,0,0,0 +12369,15184,27594,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-913.9247216577643,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,10,0,0,15,4,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.776892454373966,0,0,0,10.88,56.99,3,1,0,0,10,1,1,1211,0,0,0 +12370,15185,27595,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,3,8.518562821849464,8.66828983127318,0,3,0,-9,0,0,0,-979.4999300955951,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,35,39,15,1,1,-9,0,17.92734596106751,17.92734596106751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.5,52.88,3,1,0,0,6,5,0,589,0,0,0 +12371,15186,27596,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,3,0,3.914640360057025,3.819627270671679,3,0,0,0,-9,0,-1004.934492999434,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.589848915431004,3.853163888798974,0,0,59.46,46.99,7,1,0,0,7,1,1,182,0,0,0 +12372,15187,27597,-9,27598,27600,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1088.249581134489,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,1,4,1,626.5,0,0,0 +12372,15187,27598,27600,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,2,8.127440950149605,7.822264866757918,0,2,0,-9,9,0,0,-46.32415372746707,0,0,1,39,2,4,1,2,2,2019,1,2,12,0,24,50,15,1,0,1,0,16.87552599084399,16.87552599084399,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.02,44.38,5,1,0,0,1,4,1,626.5,0,0,0 +12372,15187,27599,-9,27598,27600,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.4465195460604,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,4,1,626.5,0,0,0 +12372,15187,27600,27598,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.504705286783226,8.660990526219434,0,2,0,-9,9,0,0,.8667169730549247,0,0,0,39,2,2,1,-9,-9,2019,1,1,9,0,45,90,15,1,0,1,0,12.81107370291012,12.81107370291012,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.16,56.15,5,1,0,0,1,4,1,626.5,0,0,0 +12373,15188,27601,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,4,3,0,4,0,8.068709989243301,7.949729542542149,3,0,0,0,-9,0,-970.4616060067751,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.372000233936463,7.91002570668005,5.058041110005128,3,57.16,56.15,6,1,0,0,2,3,1,471,0,0,0 +12374,15189,27602,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,5.823441656348859,5.7337846339958,3,0,0,0,-9,0,-854.0570985941006,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.451880260590253,5.726491892441929,0,0,55.96,49.93,5,1,0,0,12,2,1,524,0,0,0 +12375,15190,27603,27605,-9,-9,2,1,0,44,1,0,1,0,1,-9,1,1,0,3,9.586082541266132,9.588037472492681,0,2,0,-9,20,0,1,-42.08075209067145,0,0,1,43,1,4,1,2,3,2019,1,1,11,0,30,37,15,1,0,1,0,62.72329246684006,62.72329246684006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,5,3,0,0,8,5,1,786.3333333333334,0,0,0 +12375,15190,27604,-9,27603,27605,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.564207658039,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,8,5,1,786.3333333333334,0,0,0 +12375,15190,27605,27603,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,4,9.087221533837795,9.103375910377324,0,2,0,-9,20,0,-1,83.26050471525289,0,0,0,44,1,3,1,1,1,2019,1,2,10,0,56,74,15,1,1,1,0,18.11099563072812,18.11099563072812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,5,3,0,0,8,5,1,786.3333333333334,0,0,0 +12376,15191,27606,27607,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,4,8.861213307913985,9.019884905168706,0,1,0,-9,3,0,2,75.69195554345082,-9,0,0,48,2,4,1,-9,-9,2019,1,1,10,0,39,0,15,1,0,1,0,24.65414041888637,24.65414041888637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.03,39.81,6,1,0,0,12,5,1,905,0,0,0 +12376,15191,27607,27606,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,4,8.388164951998203,8.449616562685849,0,1,0,-9,23,0,-2,-128.3439314367589,-9,0,0,50,1,4,1,2,2,2019,1,2,7,1,28,0,15,1,1,1,0,19.21242283194315,19.21242283194315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,56.13,7,1,0,0,12,5,1,905,0,0,0 +12376,15192,27608,-9,27607,27606,4,1,1,20,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-785.9840801060407,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,44,1,1,1,1,12,1,1,730,0,0,0 +12377,15193,27609,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-835.7704031615845,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,36,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.271165237597203,3,62.25,45.63,6,1,0,0,6,1,1,2711,0,0,0 +12378,15194,27610,27611,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,3,6.939157124539836,7.250678599374476,0,1,0,-9,13,0,5,-36.86470568120012,0,0,0,46,1,4,1,-9,3,2019,1,2,12,0,16,20,15,1,0,1,0,11.99968213949903,11.99968213949903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.36,44.84,5,1,0,0,10,5,1,489,0,0,0 +12378,15194,27611,27610,-9,-9,2,1,1,46,1,0,0,0,1,-9,1,1,0,4,8.503271223917917,8.920071240878668,6.878371035647421,1,0,-9,13,0,-5,-29.29475646865409,0,0,0,51,3,3,1,2,2,2019,1,1,8,0,38,37,15,1,0,1,0,18.22231894317404,18.22231894317404,0,0,0,0,0,0,0,0,0,0,0,7.558619813343729,0,0,49.12,57.28,6,1,0,0,10,5,1,489,0,0,0 +12379,15195,27612,27613,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,3,8.796295463413713,9.144233041471704,0,1,0,-9,5,0,12,-29.77007044095868,0,0,0,27,1,3,1,-9,-9,2019,1,1,14,4,38,38,15,1,4,1,0,29.27658170175751,29.27658170175751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.48,55.6,3,1,0,0,2,5,1,657,0,0,0 +12379,15195,27613,27612,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,3,8.501252024825787,8.570118394211384,0,1,0,-9,5,0,-12,41.43178955523477,0,1,1,39,2,3,1,2,2,2019,1,2,17,7,39,37,15,1,7,1,0,14.02762956283084,14.02762956283084,0,0,0,0,0,0,0,0,0,0,.4038578132065243,0,0,0,31.44,55.75,5,1,0,0,2,5,1,657,0,0,0 +12380,15196,27614,27615,-9,-9,1,1,1,44,1,1,2,0,1,-9,2,1,0,4,8.48530691609902,8.397014497315249,0,2,0,-9,10,0,3,-99.52511098425035,-9,0,0,41,1,5,1,1,1,2019,1,2,9,0,30,0,15,1,1,1,0,24.54333493445363,24.54333493445363,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,5,1,858,0,0,0 +12380,15196,27615,27614,-9,-9,2,1,0,41,1,1,2,0,1,-9,2,1,0,5,9.117220727877353,8.800601854619096,0,2,0,-9,11,0,-3,-63.87744721441277,0,0,1,44,1,4,1,1,1,2019,1,1,12,0,22,35,15,1,0,1,0,33.42771580228683,33.42771580228683,0,0,0,0,0,0,0,1,1,0,2.859590280691499,0,6.483956030881695,3,45.81,61.51,5,1,0,0,9,5,1,858,0,0,0 +12380,15196,27616,-9,27615,27614,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.460160817197,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,858,0,0,0 +12380,15196,27617,-9,27615,27614,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.794055623228,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,858,0,0,0 +12381,15197,27618,27619,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,4,9.408165220201971,9.517795415012666,0,2,0,-9,6,0,3,.7697459603347043,0,0,0,34,1,4,1,2,2,2019,1,2,16,4,42,40,15,1,4,1,0,31.99683076023407,31.99683076023407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,5,1,0,0,12,5,1,678.5,0,0,0 +12381,15197,27619,27618,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,4,8.369793447384163,8.417647486641158,0,2,0,-9,6,0,-3,-35.78336274895765,0,0,1,37,1,4,1,-9,-9,2019,1,1,10,0,25,24,15,1,0,1,0,20.21185899817271,20.21185899817271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,678.5,0,0,0 +12381,15197,27620,-9,27619,27618,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0256971452202,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,678.5,0,0,0 +12381,15197,27621,-9,27619,27618,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.3804893421578,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,12,5,1,678.5,0,0,0 +12382,15198,27622,-9,-9,-9,1,1,0,27,3,0,1,0,2,-9,2,1,0,3,6.919245290511416,7.171713461816063,0,4,0,0,0,-9,0,-948.0843739405154,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,6,18,15,1,4,-9,0,26.89661717396135,26.89661717396135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,54.53,6,3,0,0,5,2,1,720.5,0,0,0 +12382,15198,27623,-9,27622,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1040.86316775709,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,5,2,1,720.5,0,0,0 +12382,15199,27624,-9,-9,-9,3,1,0,30,3,0,1,0,1,-9,2,1,0,4,8.477008866796174,8.263309626871814,0,4,0,-9,0,-9,0,-1163.831985058582,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,50,0,15,1,3,-9,0,9.998701737775164,9.998701737775164,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.34,53.29,4,3,0,0,5,4,1,545,0,0,0 +12383,15200,27625,-9,-9,-9,1,1,1,22,2,0,2,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1063.082726849826,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,3,0,0,6,1,1,790,0,0,0 +12383,15201,27626,-9,-9,-9,2,1,0,71,3,0,2,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-1051.44791777928,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,41.26,4,3,0,0,6,1,1,891,0,0,0 +12383,15202,27627,-9,-9,-9,7,1,1,19,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,-9,0,-9,0,-1013.306374904988,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.79,56.27,3,3,0,0,6,1,1,152,0,0,0 +12383,15203,27628,-9,27631,27629,6,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.134953891533,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,6,4,1,758.25,0,0,0 +12383,15203,27629,27631,-9,-9,4,1,1,37,1,0,2,0,3,-9,2,1,0,4,7.332706068843397,7.893578772902283,0,2,0,-9,3,0,-4,-.4112129514867349,0,0,0,41,2,4,1,-9,-9,2019,1,3,6,0,35,40,15,1,0,1,0,8.018458908806114,8.018458908806114,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,3,3,0,0,6,4,1,758.25,0,0,0 +12383,15203,27630,-9,27631,27629,5,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.2052274899554,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,4,1,758.25,0,0,0 +12383,15203,27631,27629,27626,-9,3,1,0,41,1,0,2,0,2,-9,2,1,0,4,8.450737828551238,8.245760372656438,0,2,0,-9,3,0,4,-32.19461580981745,0,0,1,37,3,4,1,3,-9,2019,1,4,6,0,36,38,15,1,0,1,0,16.49922130667171,16.49922130667171,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.25,48.33,6,5,0,0,6,4,1,758.25,0,0,0 +12384,15204,27632,27633,-9,-9,1,1,0,65,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,8,0,-5,-14.64802526950389,0,0,0,70,3,3,3,3,3,2019,2,2,14,2,70,60,15,1,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.277588820765644,0,12.84147351358461,1,44.35,38.91,3,1,0,0,10,2,1,879,0,0,0 +12384,15204,27633,27632,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.587174712421997,6.523950758250283,1,0,-9,8,0,5,-83.94703130032129,0,0,0,65,2,3,1,-9,-9,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,1,0,4.706031938566943,0,0,0,0,1,1,0,6.005768825988979,6.134711969156259,0,0,64.87,28.09,6,1,0,0,10,2,1,879,0,0,0 +12385,15205,27634,-9,-9,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.155002802483706,8.238942434286491,0,3,0,0,0,-9,0,-1049.852264158273,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,38,41,15,1,1,-9,1,8.150272653480734,8.150272653480734,0,0,0,0,0,0,0,0,0,0,0,0,6.932459287794587,3,40.72,54.38,5,1,0,0,11,4,0,1423,0,0,0 +12385,15206,27635,-9,-9,-9,3,1,1,23,2,0,0,0,2,-9,2,1,0,5,7.912469165085328,8.045049984151683,0,3,0,0,0,-9,0,-994.5214382127097,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,0,15,1,0,-9,1,9.383432823746899,9.383432823746899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.7,51.58,7,1,0,0,11,4,0,184,0,0,0 +12386,15207,27636,27637,-9,-9,1,1,1,48,1,0,0,0,1,-9,2,1,0,5,9.243388345994552,8.895325838656177,0,1,0,-9,6,0,-1,-19.18138082046027,0,0,0,49,1,4,1,2,1,2019,1,2,12,0,37,42,15,1,0,1,0,23.99530402888262,23.99530402888262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,7,5,1,1708,0,0,0 +12386,15207,27637,27636,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.05690216708078,7.485715731837721,0,1,0,-9,6,0,1,-23.83478906170042,0,0,0,48,1,5,1,2,1,2019,1,1,17,5,34,21,15,1,5,1,0,10.4078173134594,10.4078173134594,0,0,0,0,0,0,0,0,0,0,2.292229562214934,0,0,0,52.82,53.97,6,1,0,0,7,5,1,1708,0,0,0 +12387,15208,27638,27639,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,38,0,-3,41.91604687386679,-9,0,0,70,2,1,3,3,3,2019,4,2,24,12,0,0,15,4,12,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,32.23146981264314,1,41.87,32.52,3,1,0,0,5,1,0,789,0,0,0 +12387,15208,27639,27638,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,1,0,1.003578947107299,.5123416685044186,1,0,-9,38,0,3,2.553469115733238,0,0,0,67,3,2,3,3,3,2019,4,1,11,3,0,0,15,4,3,4,0,0,0,1,0,73.06405193264513,0,0,0,0,1,1,0,0,.6794075141167546,0,0,61.86,12.59,4,1,0,0,5,1,0,789,0,0,0 +12388,15209,27640,27641,-9,-9,1,1,0,45,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,29,0,-3,0,0,0,0,48,3,2,3,3,3,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,35.06,4,1,1,0,4,1,0,1420,0,0,0 +12388,15209,27641,27640,-9,-9,2,1,1,48,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,29,0,3,0,0,0,0,45,3,1,3,3,3,2019,4,1,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.45,39.53,6,1,1,1,4,1,0,1420,0,0,0 +12388,15210,27642,-9,27640,27641,3,1,0,23,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1057.327588055992,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.59,42.45,3,1,1,0,4,1,0,1519,0,0,0 +12389,15211,27643,27644,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,3,0,7.752332017996498,7.868354226647638,1,0,-9,8,0,6,52.36243130922215,0,0,0,82,1,4,3,3,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,0,2.051638586341916,0,0,0,0,1,1,0,10.27756029819249,6.748783252490526,1.188187296803102,1,48.62,19.63,6,1,0,0,9,5,1,802.5,0,0,0 +12389,15211,27644,27643,-9,-9,2,1,0,82,1,0,0,0,1,-9,4,3,0,4,0,9.031427437042058,8.645701742961151,1,0,-9,8,0,-6,-53.44567882960266,0,0,0,88,2,3,3,3,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.99222034144898,9.184863647141411,15.25493635738481,1,54.35,51.96,6,1,0,0,9,5,1,802.5,0,0,0 +12390,15212,27645,27646,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,4,8.34613193753812,8.219325473462083,0,1,0,-9,9,0,2,-75.84798612819789,0,0,0,60,2,4,1,3,3,2019,1,1,7,0,37,44,15,1,0,1,0,11.62167273810456,11.62167273810456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,697.5,0,0,0 +12390,15212,27646,27645,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.408724870027593,8.457580190302439,6.885546271353184,1,0,-9,44,0,-2,31.77142277466329,0,0,0,62,2,4,1,2,2,2019,1,2,6,0,37,41,15,1,0,1,0,17.8590626195454,17.8590626195454,0,0,0,0,0,0,0,0,0,0,0,7.018798762871501,0,0,59.14,52.5,6,1,0,0,10,5,1,697.5,0,0,0 +12391,15213,27647,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-968.3793805997987,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,29.5,20.42,3,1,0,1,7,1,0,672,0,0,0 +12392,15214,27648,-9,-9,-9,1,1,1,65,2,0,0,0,2,-9,4,3,0,4,0,7.272960308639797,7.275064471258103,3,0,0,0,-9,0,-1059.250853174394,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.950127122508404,6.990392587555085,0,0,60.12,54.8,7,1,0,0,5,3,1,327,0,0,0 +12393,15215,27649,-9,-9,-9,1,1,1,51,3,0,0,0,1,-9,2,1,0,4,8.933382015418006,8.416425439550677,0,3,0,0,0,-9,0,-927.2352764569508,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,1,44,45,15,1,1,-9,0,12.93655692177177,12.93655692177177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.62,53.79,6,1,0,0,12,5,0,713,0,0,0 +12394,15216,27650,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,4,8.439816164850756,8.133218128718147,0,3,0,0,0,-9,0,-1001.318967401015,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,42,42,15,1,0,-9,0,11.31224474664257,11.31224474664257,0,0,0,0,0,0,0,0,0,0,4.450250069501782,0,0,0,54.79,55.86,6,1,0,0,8,4,0,522,0,0,0 +12395,15217,27651,27652,-9,-9,2,1,0,43,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,13,0,1,-34.97051730449021,0,0,1,42,1,3,1,3,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1038890600367,0,0,0,54.2,57.49,6,3,1,0,9,5,0,523,0,0,0 +12395,15217,27652,27651,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,3,9.085329807325552,8.872099036415433,0,1,0,-9,15,0,-1,12.57895130006577,0,0,0,43,1,4,3,1,1,2019,2,2,8,0,47,52,15,1,0,3,0,30.02551046951401,30.02551046951401,0,0,0,0,0,0,0,0,0,0,5.101314591775186,0,0,0,57.33,53.46,5,1,0,0,9,5,0,523,0,0,0 +12396,15218,27653,27654,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.598425714874641,7.252809007696067,1,0,-9,10,0,2,89.16009531518222,0,0,0,68,2,4,1,2,2,2019,3,2,24,10,0,0,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.816859573720061,7.570383211505006,0,0,34.37,43.22,3,1,0,0,9,2,1,1401.5,0,0,0 +12396,15218,27654,27653,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,4,0,0,0,1,0,-9,10,0,-2,24.33743175794784,0,0,0,70,2,4,3,2,1,2019,2,1,8,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.9,49.4,5,1,0,1,9,2,1,1401.5,0,0,0 +12397,15219,27655,27656,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,6.222262302792832,6.314378452415167,1,0,-9,51,0,0,-61.30208209099435,0,0,0,70,1,3,1,3,-9,2019,3,1,15,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.662728980677051,6.52138643569536,0,0,40.46,35.78,4,1,0,0,10,3,1,552.5,0,0,0 +12397,15219,27656,27655,-9,-9,1,1,0,70,1,0,0,0,1,-9,2,1,0,3,7.032604511806761,7.150225575665067,0,1,0,-9,51,0,0,-81.60429636789158,0,0,0,70,3,2,3,2,2,2019,2,2,6,0,25,20,15,1,0,4,0,6.875516594986443,6.875516594986443,0,0,0,0,0,0,0,1,1,0,1.880221496253096,0,0,0,52.38,52.93,6,1,0,0,10,3,1,552.5,0,0,0 +12398,15220,27657,-9,-9,27658,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-899.9764733852433,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,1,593.3333333333334,0,0,0 +12398,15220,27658,-9,-9,-9,1,1,1,39,2,0,2,0,2,-9,2,1,0,5,7.333633188461128,7.529355740481483,6.294189068123316,4,0,0,0,-9,0,-964.7528827935737,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,50,15,1,0,-9,0,3.763740231656194,3.763740231656194,0,0,0,0,0,0,0,1,1,0,8.582345173940372,6.098211471462463,0,0,57.06,57.76,4,1,0,0,7,2,1,593.3333333333334,0,0,0 +12398,15220,27659,-9,-9,27658,2,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-822.2694511936766,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,1,593.3333333333334,0,0,0 +12399,15221,27660,27661,-9,-9,2,1,1,30,1,0,0,0,2,-9,11,3,0,3,8.274304675162821,8.38299217554427,0,1,0,-9,7,0,-7,-98.19209966501224,0,0,0,37,2,3,1,-9,-9,2019,3,1,6,0,40,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,6,1,0,0,10,5,0,767.5,0,0,0 +12399,15221,27661,27660,-9,-9,1,1,0,37,1,0,0,0,2,-9,1,1,0,3,8.497507140107864,8.739746623439171,0,1,0,-9,7,0,7,29.45054264297179,0,0,1,30,2,3,3,2,3,2019,2,2,9,0,40,37,15,1,0,3,0,18.10856157497075,18.10856157497075,0,0,0,0,0,0,0,0,0,0,1.107590817159708,0,0,0,50.88,44.18,6,1,0,0,10,5,0,767.5,0,0,0 +12400,15222,27662,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,1,1,0,5,9.205090963122521,8.975225864425289,0,3,0,-9,0,-9,0,-997.3906971491326,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,0,15,1,0,-9,0,21.90444996616238,21.90444996616238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,6,3,0,0,8,5,1,1404,0,0,0 +12401,15223,27663,-9,27665,27666,4,1,1,14,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-920.2863751989247,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,7,1,0,335,0,0,0 +12401,15223,27664,-9,27665,27666,6,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-872.769662220281,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,7,1,0,335,0,0,0 +12401,15223,27665,27666,-9,-9,1,1,0,45,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,23,0,-7,0,0,0,0,52,2,2,3,3,2,2019,4,2,12,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06941427580955,3,54.66,34.54,3,1,0,0,7,1,0,335,0,0,0 +12401,15223,27666,27665,-9,-9,2,1,1,52,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,23,0,7,0,0,0,0,45,2,2,3,3,3,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.53479103202216,3,55.6,47.8,5,1,0,0,7,1,0,335,0,0,0 +12401,15223,27667,-9,27665,27666,5,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-993.4451316353835,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,7,1,0,335,0,0,0 +12401,15224,27668,-9,27665,27666,3,1,1,19,2,0,3,0,2,-9,2,1,0,5,8.018796131384223,8.136060821249867,0,3,0,0,0,-9,0,-981.961798648765,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,60,25,15,1,0,-9,1,5.095751406230941,5.095751406230941,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,7,3,0,3482,0,0,0 +12402,15225,27669,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,4,9.073608462865476,8.934511290880796,0,3,0,0,0,-9,0,-943.4018531253752,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,52,50,15,1,7,-9,0,17.78642017306039,17.78642017306039,0,0,0,0,0,0,0,0,0,0,1.394203505948821,0,0,0,31.77,61.1,6,1,0,0,10,5,1,1872,0,0,0 +12403,15226,27670,-9,27673,27672,3,1,1,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.9030508261285,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,9,2,0,1008.5,0,0,0 +12403,15226,27671,-9,27673,27672,6,1,0,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.0719682806115,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,9,2,0,1008.5,0,0,0 +12403,15226,27672,27673,-9,-9,2,1,1,33,1,0,4,0,2,-9,3,3,0,4,0,0,0,2,0,-9,12,0,3,-73.91683007345365,0,0,0,30,2,3,1,2,2,2019,3,1,15,4,0,26,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.31,58.29,3,1,1,0,9,2,0,1008.5,0,0,0 +12403,15226,27673,27672,-9,-9,1,1,0,30,1,0,4,0,2,-9,2,1,0,3,8.120327140491931,7.832951182886259,0,2,0,-9,12,0,-3,-34.17885969715773,0,0,1,33,2,4,3,2,2,2019,2,2,2,0,42,0,15,1,0,3,0,7.615440668846619,7.615440668846619,0,0,0,0,0,0,0,1,0,1,0,0,0,3,55.95,47.23,7,1,0,0,9,2,0,1008.5,0,0,0 +12403,15226,27674,-9,27673,27672,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.998757965485,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,9,2,0,1008.5,0,0,0 +12403,15226,27675,-9,27673,27672,4,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.07807291419,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,1,0,0,9,2,0,1008.5,0,0,0 +12404,15227,27676,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,1,1,0,3,7.827603949770362,7.873437253111382,0,3,0,0,0,-9,0,-1015.587999639795,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,8,1,40,40,15,1,1,-9,0,6.99758990379387,6.99758990379387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,6,1,0,0,7,3,1,140,0,0,0 +12404,15228,27677,-9,27676,-9,2,1,0,19,2,0,0,0,2,-9,1,1,0,2,7.516015834788891,7.31704878322007,0,3,0,0,0,-9,0,-869.6445513235625,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,25,9,20,50,15,1,9,-9,1,9.92158618224669,9.92158618224669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.24,55.25,2,1,0,1,7,3,1,185,0,0,0 +12405,15229,27678,-9,27679,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-917.0995970936383,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,1,198.5,0,0,0 +12405,15229,27679,-9,-9,-9,1,1,0,53,3,0,1,0,3,-9,2,1,0,3,7.219369105745852,7.430552726426216,5.868575773204143,4,0,0,0,-9,0,-791.9444741920684,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,20,21,15,1,2,-9,0,9.600800440582718,9.600800440582718,0,0,0,0,0,0,0,1,1,0,6.474365448875783,0,0,0,48,49,5,1,0,0,4,3,1,198.5,0,0,0 +12406,15230,27680,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,4,0,7.711626173454074,7.25536641115048,3,0,0,0,-9,0,-1034.999157328372,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.258882718415955,0,0,60.12,54.8,7,1,0,0,8,3,1,157,0,0,0 +12407,15231,27681,-9,-9,-9,1,1,1,65,3,0,0,0,1,-9,2,1,0,4,6.934998953324319,7.507764169879736,4.927988973326515,3,0,-9,0,1,0,-981.8617839591756,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,14,14,15,1,1,-9,0,9.42893587173838,9.42893587173838,0,0,0,0,0,0,0,1,1,0,7.24028967089559,5.082604055196643,0,0,52.23,55.6,6,1,0,0,8,3,1,347,0,0,0 +12408,15232,27682,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,6.193378446139269,6.119279204243692,3,0,0,0,-9,0,-920.5425872168167,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.315321145424628,5.710024410758215,0,0,58.33,47.36,7,1,0,0,2,2,1,79,0,0,0 +12409,15233,27683,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,4,8.386445434804745,8.512628802738879,0,3,0,0,0,-9,0,-927.8591398824167,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,77,15,1,0,-9,0,18.14205589289106,18.14205589289106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,504,0,0,0 +12410,15234,27684,27685,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,7.692219256871001,7.976499072030634,0,1,0,-9,28,0,-1,-31.1249556237997,0,0,0,48,2,3,1,2,2,2019,1,1,12,0,37,35,15,1,0,1,0,9.132099194688331,9.132099194688331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,10,5,1,3305.5,0,0,0 +12410,15234,27685,27684,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,3,9.184790165070213,9.029146822934672,0,1,0,-9,28,0,1,-53.39101838767455,0,0,0,47,2,4,1,-9,2,2019,1,2,23,8,52,58,15,1,8,1,0,14.33182707125323,14.33182707125323,0,0,0,0,0,0,0,0,0,0,6.117940634652636,0,0,0,24.15,60.56,5,1,0,0,10,5,1,3305.5,0,0,0 +12410,15235,27686,-9,27684,27685,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.281427211448886,8.325254332914543,0,3,0,0,0,-9,0,-989.3917796263889,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,48,54,15,1,1,-9,1,8.64808500259733,8.64808500259733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,10,4,1,1128,0,0,0 +12410,15236,27687,-9,27684,27685,4,1,0,18,2,0,0,0,2,-9,2,1,0,4,7.426148857710362,7.249918581173223,0,3,0,0,0,-9,0,-889.874843415281,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,28,34,15,1,0,-9,1,6.951716266596291,6.951716266596291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,2,1,0,0,10,3,1,1635,0,0,0 +12411,15237,27688,27689,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,5.759616885487785,6.239472900834492,1,0,-9,11,0,7,-91.38941189964243,0,0,0,70,2,4,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.660524359269494,0,0,47.7,49.53,6,1,0,0,6,2,1,703.5,0,0,0 +12411,15237,27689,27688,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,51,0,-7,-24.28847801107288,0,0,0,77,2,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.768601896305039,0,0,0,59.14,52.5,6,1,0,0,6,2,1,703.5,0,0,0 +12412,15238,27690,-9,27693,27691,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.670086573789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,3,1,625,0,0,0 +12412,15238,27691,27693,-9,-9,2,1,1,32,1,1,3,0,2,-9,2,1,0,2,8.68767236565362,8.748390275433454,0,2,0,-9,7,0,2,4.893378589328848,0,0,0,30,2,2,3,-9,-9,2019,2,1,8,1,54,52,15,1,1,3,0,11.55855666701749,11.55855666701749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.95,38.49,7,1,0,0,6,3,1,625,0,0,0 +12412,15238,27692,-9,27693,27691,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.9612268308799,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,625,0,0,0 +12412,15238,27693,27691,-9,-9,1,1,0,30,1,1,3,0,2,-9,97,3,0,2,0,0,0,2,0,-9,14,0,-2,-30.36505223295071,0,0,1,32,2,2,1,2,2,2019,3,2,11,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.59,32.67,6,1,0,0,6,3,1,625,0,0,0 +12412,15238,27694,-9,27693,27691,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.4770738978549,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,625,0,0,0 +12413,15239,27695,-9,27697,27696,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.8030030095312,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,1,1218.666666666667,0,0,0 +12413,15239,27696,27697,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,3,8.430472355497512,8.328906922175955,0,2,0,-9,7,0,7,-39.21171986905722,0,0,0,35,1,4,1,2,2,2019,1,1,7,0,37,37,15,1,0,1,0,11.44929438639698,11.44929438639698,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,5,1,0,0,13,5,1,1218.666666666667,0,0,0 +12413,15239,27697,27696,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,4,8.715379739326735,8.809211729237575,0,2,0,-9,7,0,-7,35.81610152837244,0,0,1,42,1,3,1,2,1,2019,1,2,12,1,40,40,15,1,1,1,0,19.15658846941901,19.15658846941901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.07,57.25,5,1,0,0,13,5,1,1218.666666666667,0,0,0 +12414,15240,27698,27699,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,2,8.128899751435215,7.856564541984691,0,2,0,-9,16,0,-8,69.71111957696152,0,0,1,52,1,5,1,2,3,2019,1,1,12,0,31,30,15,1,0,1,0,9.145776437950479,9.145776437950479,0,0,0,0,0,0,0,1,1,0,.2440996262521846,0,0,0,46.91,51.8,5,3,0,0,7,4,1,844.5,0,0,0 +12414,15240,27699,27698,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,5,8.242738822447027,8.250961879996922,0,2,0,-9,16,0,8,-44.53522437208799,0,0,0,44,2,2,1,-9,-9,2019,1,2,2,0,50,45,15,1,0,1,0,9.95615656596517,9.95615656596517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,5,4,0,0,7,4,1,844.5,0,0,0 +12414,15240,27700,-9,27698,27699,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1149.122287206534,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,4,1,844.5,0,0,0 +12414,15240,27701,-9,27698,27699,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.851783591499,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,4,1,844.5,0,0,0 +12415,15241,27702,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,3,0,5.583592754923151,5.326048687965477,3,0,0,0,-9,0,-1022.973801932511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.271300160722216,0,0,62.66,52.4,7,1,0,0,12,2,1,925,0,0,0 +12416,15242,27703,27704,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.681394673783311,7.317170625143683,1,0,-9,32,0,-2,-2.18262068974943,0,0,0,70,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.491845107153084,0,0,52,47,5,1,0,0,7,3,1,552.5,0,0,0 +12416,15242,27704,27703,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,7.692879686487085,7.965088149912742,1,0,-9,33,0,2,94.98533484348815,0,0,0,68,2,3,3,3,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.707156764459473,7.807365758987755,20.11861010837858,3,61.61,37.79,6,1,0,0,7,3,1,552.5,0,0,0 +12417,15243,27705,27706,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,4,8.652320997656352,8.620958087187097,0,1,0,-9,8,0,-16,-49.53760375411378,0,0,0,53,2,3,1,2,-9,2019,1,1,10,0,44,52,15,1,0,1,0,12.07571222444002,12.07571222444002,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,6,1,0,0,1,5,1,863.5,0,0,0 +12417,15243,27706,27705,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.048448137389103,7.743343069384613,0,1,0,-9,8,0,16,133.7245446658166,0,0,0,37,2,4,1,3,3,2019,1,2,4,0,38,38,15,1,0,1,0,8.918770999415184,8.918770999415184,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52,54.51,6,1,0,0,1,5,1,863.5,0,0,0 +12418,15244,27707,27708,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,1,0,7.400183772855779,7.045273446630612,1,0,-9,8,0,2,67.8709941204519,0,0,0,81,2,3,3,3,3,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,1.425854953612682,0,0,0,0,0,1,1,0,3.913409924139502,7.047340852477884,0,0,53.06,11.29,4,1,0,0,12,2,1,196.5,0,0,0 +12418,15244,27708,27707,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,5.830741830237068,5.869911248123968,1,0,-9,8,0,-2,55.8665778600642,0,0,0,83,3,1,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.002743785931896,6.346880550306067,0,1,53.32,25.5,6,1,0,0,12,2,1,196.5,0,0,0 +12419,15245,27709,-9,27710,-9,1,1,1,43,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1005.482936505158,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54.2,57.49,6,3,1,0,2,1,0,1012,0,0,0 +12419,15246,27710,-9,-9,-9,3,1,0,68,3,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-877.2059677928187,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.7649908064804454,3,40.56,12.97,2,3,0,1,2,1,0,412,0,0,0 +12420,15247,27711,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,1,7.377518780131262,7.572209488729879,5.859329008718029,3,0,0,0,-9,0,-1035.363307754401,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,18,18,15,1,0,-9,0,9.205859554767519,9.205859554767519,0,0,0,0,0,0,0,0,0,0,6.804217182608562,0,0,0,52.03,19.61,4,1,0,0,13,3,1,446,0,0,0 +12421,15248,27712,27713,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,2,0,7.24937092095355,7.062901451355778,1,0,-9,46,0,0,-127.7712497366595,0,0,0,67,3,4,3,-9,-9,2019,4,1,23,9,0,0,15,4,9,4,0,0,0,1,0,10.98345949483392,0,0,0,0,1,1,0,4.896262192386242,6.966708392962921,0,0,43.37,31.73,6,1,0,0,2,2,1,342,0,0,0 +12421,15248,27713,27712,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,4,0,5.932249449852483,5.708116888317482,1,0,-9,46,0,0,-47.9682764846536,0,0,0,67,3,2,3,2,-9,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.493255025741775,5.429278188622595,0,0,49.4,48.93,6,1,0,0,2,2,1,342,0,0,0 +12422,15249,27714,27715,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.450190988423062,8.673857256889329,0,1,0,-9,8,0,-6,39.51988825927078,0,0,0,52,2,3,1,-9,-9,2019,1,1,3,0,47,50,15,1,0,1,0,14.91778193409793,14.91778193409793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,5,1,0,0,11,5,1,625,0,0,0 +12422,15249,27715,27714,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.922362904514939,8.09030446295548,0,1,0,-9,8,0,6,34.24531232676354,0,0,0,46,2,4,1,3,-9,2019,1,2,14,2,32,32,15,1,2,1,0,9.257234547716115,9.257234547716115,0,0,0,0,0,0,0,0,0,0,2.775820464145185,0,0,0,54.02,40.03,6,1,0,0,11,5,1,625,0,0,0 +12423,15250,27716,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,1,1,0,4,9.009327859476855,8.926201392071363,0,1,0,-9,6,0,2,62.21031190251175,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,9,0,30,18,15,1,0,-9,0,34.02403793077364,34.02403793077364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,8,5,1,309,0,0,0 +12423,15251,27717,-9,-9,-9,2,1,1,53,2,0,0,0,3,-9,2,1,0,5,8.235159119604498,8.630677694409206,0,1,0,-9,6,0,-2,47.85196244487827,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,7,0,18,18,15,1,0,-9,0,26.47533857419829,26.47533857419829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.15,49.94,6,1,0,0,8,5,1,714,0,0,0 +12424,15252,27718,27719,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.357829586614745,8.50519708222955,0,1,0,-9,2,0,-3,-1.154271910040827,0,1,1,32,1,3,1,-9,-9,2019,1,1,11,0,35,42,15,1,2,1,0,16.09585837120527,16.09585837120527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,5,1,0,0,7,5,1,298,0,0,0 +12424,15252,27719,27718,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,3,8.772290536985521,8.58633496339568,0,1,0,-9,2,0,3,-2.985957824618087,0,0,0,29,1,4,1,2,2,2019,1,2,9,0,50,50,15,1,0,1,0,16.35106812110279,16.35106812110279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,6,1,0,0,7,5,1,298,0,0,0 +12425,15253,27720,27721,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,3,0,8.009328434161647,8.093330630902775,1,0,-9,34,0,4,-78.34654093299145,0,0,0,53,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.357336736703671,8.042273132087045,17.21077731373238,3,57.33,53.46,7,1,0,0,13,5,1,543.5,0,0,0 +12425,15253,27721,27720,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.483676861905565,8.343332066644795,0,1,0,-9,34,0,-4,1.898992741689097,0,0,0,57,2,3,3,2,2,2019,2,1,6,0,36,36,15,1,0,4,0,17.02622044458661,17.02622044458661,0,0,0,0,0,0,0,0,0,0,0,0,15.71217912424055,3,62.67,49.54,6,1,0,0,13,5,1,543.5,0,0,0 +12426,15254,27722,27723,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,7.330138593646299,7.376235393311727,1,0,-9,62,0,0,4.709235053055465,0,0,0,84,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.848948222212055,7.479185933922466,0,0,55.71,46,7,1,0,0,9,4,1,715.5,0,0,0 +12426,15254,27723,27722,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,3,0,7.881433532331634,8.242820321015175,1,0,-9,62,0,0,81.55197940346501,0,0,0,84,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.628844911389334,8.166926615192642,0,0,54.79,47.98,7,1,0,0,9,4,1,715.5,0,0,0 +12427,15255,27724,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-988.7499339084221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.92,22.81,3,1,0,1,13,1,1,435,0,0,0 +12428,15256,27725,-9,-9,-9,1,1,0,34,2,0,2,0,3,-9,3,3,0,2,0,6.246044361228321,6.671569217963101,4,0,0,0,-9,0,-998.6464889455528,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,24,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.814604452741914,0,17.76642830048735,3,28.05,39.7,4,1,1,0,2,2,0,415.5,0,0,0 +12428,15256,27726,-9,27725,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1031.592095192348,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,415.5,0,0,0 +12429,15257,27727,27728,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,8.400824522377382,8.248994480144898,1,0,-9,7,0,-1,157.2038544872425,0,0,0,70,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.384736599637451,8.369098389897093,0,0,56.9,38.7,6,1,0,0,1,5,1,1216,0,0,0 +12429,15257,27728,27727,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,8.08165024062977,7.919384600563439,1,0,-9,7,0,1,-52.4260389220843,0,0,0,69,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.664165725535924,8.553636767593535,0,0,61.12,51.57,7,1,0,0,1,5,1,1216,0,0,0 +12430,15258,27729,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,4,0,6.670488148821669,6.924259246924202,3,0,0,0,-9,0,-1109.149390602903,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.79177365401996,6.713515461976908,0,0,62.49,55.09,6,4,0,0,8,2,1,1003,0,0,0 +12431,15259,27730,-9,27731,-9,1,1,1,32,2,0,0,0,1,-9,1,1,0,3,8.578193420416609,8.326921368328813,0,3,0,0,0,-9,0,-858.8230285464826,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,40,42,15,1,5,-9,1,13.66354667629991,13.66354667629991,0,0,0,0,0,0,0,1,1,0,2.969593501228904,0,0,3,44.49,55.5,3,1,0,0,10,5,1,482,0,0,0 +12431,15260,27731,-9,-9,-9,2,1,0,64,3,0,0,0,1,-9,1,1,0,3,6.062106237559119,5.800311760527284,0,3,0,0,0,-9,0,-983.9469635074914,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,10,6,15,1,0,-9,0,3.523365656279514,3.523365656279514,0,0,0,0,0,0,0,1,1,0,8.19841951930497,0,0,0,61.59,40.51,6,1,0,0,10,2,1,2225,0,0,0 +12432,15261,27732,27733,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,5.126283147627712,5.388768507796892,1,0,-9,61,0,-3,-83.35153726001244,0,0,0,82,3,4,3,3,2,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.41081857484679,0,0,52,45,6,1,0,0,10,2,1,1624.5,0,0,0 +12432,15261,27733,27732,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,4,0,6.389363511629115,6.060546718390784,1,0,-9,61,0,3,-78.50594767559788,0,0,0,79,3,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.09307496487839,6.603933667402527,0,0,51.48,42.44,7,1,0,0,10,2,1,1624.5,0,0,0 +12433,15262,27734,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,6.01655686221892,5.936475016702704,3,0,-9,0,-9,0,-957.6682595966363,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.994326253662742,.8030376070372267,0,1,1,0,0,6.121297360059509,0,0,55.2,9.220000000000001,5,1,0,0,1,2,0,1964,0,0,0 +12434,15263,27735,27736,-9,-9,1,1,0,38,1,0,0,0,2,-9,2,1,0,4,7.84272600220108,8.198684636394951,0,1,0,-9,2,0,5,-5.38439222931609,0,0,1,33,1,1,1,2,3,2019,1,2,8,1,37,37,15,1,1,1,0,8.627624795705081,8.627624795705081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,13,4,1,389,0,0,0 +12434,15263,27736,27735,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,1,7.852162918155941,7.781791588136789,0,1,0,-9,2,0,-5,73.8300069470682,0,0,0,38,2,4,1,-9,-9,2019,1,1,20,9,37,37,15,1,9,1,0,8.080392238728239,8.080392238728239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.28,30.1,5,1,0,0,13,4,1,389,0,0,0 +12435,15264,27737,-9,27740,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-938.162391625928,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,861.6,0,0,0 +12435,15264,27738,27740,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,2,7.790863812326044,7.944155396566814,0,2,0,1,1,-9,2,-87.15009444594239,0,0,0,38,2,4,2,2,2,2019,2,2,10,2,50,40,15,1,2,2,0,6.05264885844004,6.05264885844004,0,0,0,0,0,0,0,1,1,0,0,0,9.17332669903325,3,49.08,46.92,4,1,0,0,9,3,0,861.6,0,0,0 +12435,15264,27739,-9,27740,-9,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1097.387620701442,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,861.6,0,0,0 +12435,15264,27740,27738,-9,-9,2,1,0,38,1,0,3,0,2,-9,7,2,0,4,6.987123043619992,7.174336572129842,0,2,0,-9,1,-9,-2,86.9892764104184,-9,0,1,40,2,2,1,-9,-9,2019,3,1,10,0,8,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.28,60.18,6,1,0,0,9,3,0,861.6,0,0,0 +12435,15264,27741,-9,27740,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-921.5130767875186,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,861.6,0,0,0 +12436,15265,27742,27743,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,3,8.335940869610601,8.387114268272967,0,1,0,-9,2,0,6,-79.92929036664682,0,0,0,53,2,4,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,13.0045873034987,13.0045873034987,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,44.14,4,3,0,0,7,4,1,952,0,0,0 +12436,15265,27743,27742,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.192797561291051,7.335412005092529,0,1,0,-9,2,0,-6,65.0753271694285,-9,0,0,59,1,3,1,-9,-9,2019,1,1,10,0,30,0,15,1,1,1,0,4.855558715181322,4.855558715181322,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,6,3,0,0,7,4,1,952,0,0,0 +12437,15266,27744,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,4,0,7.332019853102296,7.33642407504894,3,0,0,0,-9,0,-972.4936729656536,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.011346125873026,7.330668640606089,0,0,60.12,54.8,6,1,0,0,10,2,1,428,0,0,0 +12438,15267,27745,-9,27746,27747,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.1056978382732,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,5,0,385.75,0,0,0 +12438,15267,27746,27747,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,4,9.026805625333557,9.102259095518612,0,2,0,-9,8,0,4,8.517921107656147,0,0,1,39,2,3,1,3,3,2019,1,2,5,0,49,49,15,1,0,1,0,17.73463381407246,17.73463381407246,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.44,52.37,6,1,0,0,5,5,0,385.75,0,0,0 +12438,15267,27747,27746,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,3,7.859861661927898,7.838828529163141,0,2,0,-9,8,0,-4,17.93256183808542,0,0,0,43,1,4,1,3,3,2019,1,1,8,0,35,35,15,1,0,1,0,8.617526842280267,8.617526842280267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,55.87,6,1,0,0,5,5,0,385.75,0,0,0 +12438,15267,27748,-9,27746,27747,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1174.175735950761,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,0,385.75,0,0,0 +12439,15268,27749,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.294458558839887,8.257845364824716,0,3,0,-9,0,-9,0,-1121.418028011022,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,0,15,1,0,-9,0,10.97029286050001,10.97029286050001,0,0,0,0,0,0,0,0,0,0,1.357041451176143,0,0,0,41.17,59.31,6,1,0,0,8,4,0,246,0,0,0 +12440,15269,27750,-9,27753,27751,4,1,1,11,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1184.211019452905,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,4,1,0,0,2,4,1,273.2,0,0,0 +12440,15269,27751,27753,-9,-9,1,1,1,39,1,0,3,0,1,-9,1,1,0,3,8.781463074444275,9.209535768274057,0,2,0,-9,17,0,-3,43.02942789985142,0,0,0,42,3,3,3,2,3,2019,2,2,6,0,37,40,15,1,0,3,0,30.12468251436283,30.12468251436283,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,0,0,2,4,1,273.2,0,0,0 +12440,15269,27752,-9,27753,27751,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.3483505562915,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,1,273.2,0,0,0 +12440,15269,27753,27751,-9,-9,2,1,0,42,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,15,0,3,-167.6249216900397,0,0,1,39,1,3,1,3,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,4,1,0,0,2,4,1,273.2,0,0,0 +12440,15269,27754,-9,27753,27751,3,1,0,15,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1075.886015378388,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,1,0,0,2,4,1,273.2,0,0,0 +12441,15270,27755,27756,-9,-9,1,1,1,25,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,6,0,2,-74.73289197429007,0,1,0,23,2,3,1,2,3,2019,3,2,12,0,0,16,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,52.71,6,1,1,0,10,3,0,371.5,0,0,0 +12441,15270,27756,27755,-9,-9,2,1,0,23,1,0,0,0,2,-9,2,1,0,3,7.881985403702598,8.136986451463709,0,1,0,-9,6,0,-2,46.69956873562855,0,1,1,25,2,3,3,-9,-9,2019,2,1,8,0,21,51,15,1,0,3,0,19.2599970286858,19.2599970286858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.38,46.15,4,1,0,0,10,3,0,371.5,0,0,0 +12442,15271,27757,-9,-9,-9,1,1,0,18,2,0,0,1,2,0,7,2,0,4,0,5.523714878604706,5.744524419540055,3,0,0,0,-9,0,-1008.82196909038,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.143895133222186,0,0,0,39.22,61.48,2,1,0,0,4,2,0,1473,0,0,0 +12443,15272,27758,-9,27759,27760,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.356041859125,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,1,417.6666666666667,0,0,0 +12443,15272,27759,27760,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,3,8.05735789483558,8.110691413529654,0,2,0,-9,11,0,6,-55.75510478212281,0,0,0,39,2,4,1,3,3,2019,1,1,8,0,37,34,15,1,0,1,0,11.69574173580271,11.69574173580271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,4,0,0,7,4,1,417.6666666666667,0,0,0 +12443,15272,27760,27759,-9,-9,1,1,1,39,1,0,1,0,2,-9,2,1,0,4,8.385865501155887,8.540963260405119,0,2,0,-9,11,0,-6,48.15310749720415,0,0,0,45,2,3,1,2,2,2019,1,2,8,0,45,42,15,1,0,1,0,10.67618759272172,10.67618759272172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,52.08,6,1,0,0,7,4,1,417.6666666666667,0,0,0 +12444,15273,27761,27762,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,4,9.071211975376224,8.640202959189375,0,1,0,-9,4,0,3,-13.26151569444374,0,0,0,32,2,3,1,-9,-9,2019,1,2,11,0,50,49,15,1,0,1,0,20.01962396008502,20.01962396008502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,5,1,0,0,8,5,1,814.5,0,0,0 +12444,15273,27762,27761,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,3,8.485832246115807,8.871984238414838,0,1,0,-9,4,0,-3,76.4196579066622,0,0,1,35,1,4,1,-9,-9,2019,1,1,21,9,38,48,15,1,9,1,0,19.41620634022947,19.41620634022947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,56.19,3,1,0,0,8,5,1,814.5,0,0,0 +12445,15274,27763,27764,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,3,9.500201446601055,9.323597591315512,0,1,0,-9,2,0,-3,-49.13398526191996,-9,0,0,51,1,2,1,-9,-9,2019,1,1,14,2,65,0,15,1,2,1,0,23.7800720008891,23.7800720008891,0,0,0,0,0,0,0,0,0,0,7.322866228900919,0,0,0,43.32,54.23,4,3,0,0,7,5,1,479,0,0,0 +12445,15274,27764,27763,-9,-9,1,1,1,51,1,0,0,0,1,-9,2,1,0,2,9.207983373332544,9.110777993301756,0,1,0,-9,2,0,3,-56.03593438991326,0,0,0,48,1,3,1,2,2,2019,1,2,18,7,40,40,15,1,7,1,0,24.49032351792694,24.49032351792694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.64,43.58,4,3,0,0,7,5,1,479,0,0,0 +12446,15275,27765,27766,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,3,8.785688653408306,8.815854007521484,0,2,0,-9,23,0,0,-8.989810080787262,0,0,0,51,1,5,1,2,2,2019,1,1,17,5,50,55,15,1,5,1,0,11.66819868709757,11.66819868709757,0,0,0,0,0,0,0,0,0,0,0,0,3.995181898907203,3,29.57,58.13,4,1,0,0,1,5,1,989,0,0,0 +12446,15275,27766,27765,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,5,8.430722050057618,8.343368443606725,0,2,0,-9,23,0,0,22.48018071096451,0,0,0,51,1,3,1,3,2,2019,1,2,9,0,15,55,15,1,0,1,0,37.0361914308584,37.0361914308584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,6,1,0,0,1,5,1,989,0,0,0 +12447,15276,27767,27768,-9,-9,1,1,1,83,1,0,0,0,3,-9,4,3,0,2,0,6.917563214630378,6.7245433609837,1,0,-9,59,0,6,-65.74491812388749,0,0,0,77,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.02873104562501,6.603476772246654,14.92059402519241,1,50.74,44.75,6,1,0,0,7,2,1,373.5,0,0,0 +12447,15276,27768,27767,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,4.254586793334317,4.067432695708219,1,0,-9,49,0,-6,63.25792337331885,0,0,0,83,3,2,3,3,3,2019,4,1,20,10,0,0,15,4,10,4,0,0,0,1,0,12.56183469992927,9.395453509734779,0,6.918976354394552,0,1,1,0,.751740222895232,4.085552678148136,0,0,44.23,20.38,6,1,0,0,7,2,1,373.5,0,0,0 +12448,15277,27769,27772,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,4,9.484789216067746,9.395020777941028,0,2,0,-9,1,-9,2,-30.58632085930814,-9,0,0,48,2,3,1,2,2,2019,1,1,7,0,40,0,15,1,0,1,0,37.97165903709981,37.97165903709981,0,0,0,0,0,0,0,0,0,0,4.558865027583636,0,0,0,54.2,57.49,2,1,0,0,4,5,1,727,0,0,0 +12448,15277,27770,-9,27772,27769,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-959.3327397852038,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,4,5,1,727,0,0,0 +12448,15277,27771,-9,27772,27769,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1134.638127281822,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,4,5,1,727,0,0,0 +12448,15277,27772,27769,-9,-9,1,1,0,48,1,0,2,0,2,-9,1,1,0,3,6.880318508450951,6.951831985728874,0,2,0,-9,1,-9,-2,-62.01296621290071,-9,0,0,50,2,4,1,3,2,2019,1,2,7,0,41,0,15,1,0,1,0,2.336556300399242,2.336556300399242,0,0,0,0,0,0,0,0,0,0,7.849631972914906,0,0,0,59.31,49.81,6,1,0,0,4,5,1,727,0,0,0 +12449,15278,27773,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,2,1,0,2,8.071935448852885,8.244285712775042,0,3,0,0,0,-9,0,-912.211241442039,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,23,11,24,35,15,1,11,-9,0,20.19810753833826,20.19810753833826,0,0,0,0,0,0,0,1,1,0,2.395022746340868,0,0,0,30.1,48.83,3,1,0,0,12,4,1,309,0,0,0 +12450,15279,27774,27775,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,7.853460536635416,7.388606013908414,1,0,-9,44,0,-15,32.63593276173314,0,0,0,82,3,2,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.679215469250037,0,1,62.81,30.81,6,4,0,0,9,3,1,1200,0,0,0 +12450,15279,27775,27774,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,2,0,4.476489918265765,4.65652744229711,1,0,-9,44,0,15,9.348439461160098,0,0,0,67,2,2,3,-9,-9,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,82.3490507809132,0,0,0,0,1,1,0,5.007190017412611,4.556878699412034,0,0,46.3,29.03,3,2,0,0,9,3,1,1200,0,0,0 +12451,15280,27776,-9,27779,27777,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.374619207945,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,10,3,1,1316.25,0,0,0 +12451,15280,27777,27779,-9,-9,2,1,1,52,1,0,2,0,3,-9,2,1,0,4,8.494759754356881,8.44703268805239,0,2,0,-9,23,0,3,-73.93325160939405,0,0,0,49,2,4,1,2,2,2019,1,1,13,1,46,45,15,1,1,1,0,11.4193040210548,11.4193040210548,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,5,1,0,0,10,3,1,1316.25,0,0,0 +12451,15280,27778,-9,27779,27777,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-860.1528160098196,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,1316.25,0,0,0 +12451,15280,27779,27777,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,7.260717815144057,6.95715473628248,0,2,0,-9,23,0,-3,-47.75725279874968,0,0,0,52,3,4,1,2,2,2019,1,2,10,0,28,29,15,1,0,1,0,4.909275727236646,4.909275727236646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,4,1,0,0,10,3,1,1316.25,0,0,0 +12452,15281,27780,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,4,8.129264114116328,8.256166362478034,0,3,0,0,0,-9,0,-1072.864364927613,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,35,15,1,0,-9,0,8.579837797629633,8.579837797629633,0,0,0,0,0,0,0,0,0,0,0,0,10.48329470942029,3,54.74,57.22,7,1,0,0,2,4,1,124,0,0,0 +12453,15282,27781,27782,-9,-9,2,1,0,84,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,68,0,-1,98.82734137800578,0,0,0,85,2,2,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.0966332778434,1,50.6,47.05,4,1,0,0,7,2,1,131,0,0,0 +12453,15282,27782,27781,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,2,0,6.722396596128702,6.756199955126691,1,0,-9,68,0,1,-68.49667338230257,0,0,0,84,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,129.4184137564279,0,0,0,0,1,1,0,0,6.939953716954082,0,0,48.88,29.29,3,1,0,0,7,2,1,131,0,0,0 +12454,15283,27783,27784,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,3,6.077558033197989,7.895633863653853,7.885776076764835,1,0,-9,51,0,2,11.02044315729029,0,0,0,72,1,4,3,3,2,2019,4,1,7,0,24,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.512869652511512,7.469451045666722,0,0,59.46,46.99,6,1,0,0,4,4,1,802.5,0,0,0 +12454,15283,27784,27783,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,4,0,7.918661589934086,8.124799436655987,1,0,-9,51,0,-2,-33.12277907609163,0,0,0,74,1,3,3,2,1,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2823538108111,8.033039953138585,0,0,56.92,49.39,6,1,0,0,4,4,1,802.5,0,0,0 +12455,15284,27785,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1156.004116638363,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,35,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.5,60.14,6,1,0,0,8,1,0,773,0,0,0 +12456,15285,27786,-9,27787,27789,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.010385773842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,613.75,0,0,0 +12456,15285,27787,27789,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.430119838152995,8.503701135017794,0,2,0,-9,24,0,1,35.34843364106192,0,0,0,44,2,3,1,2,2,2019,1,2,7,0,36,34,15,1,0,1,0,16.85796636766008,16.85796636766008,0,0,0,0,0,0,0,1,1,0,2.703912225634693,0,0,0,54.79,55.86,6,1,0,0,10,5,1,613.75,0,0,0 +12456,15285,27788,-9,27787,27789,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.950031228913,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,5,1,613.75,0,0,0 +12456,15285,27789,27787,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.889078754797353,9.01080939024037,0,2,0,-9,24,0,-1,68.35015326025412,0,0,0,45,2,4,1,2,2,2019,1,1,10,0,48,46,15,1,0,1,0,16.30068067031484,16.30068067031484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,10,5,1,613.75,0,0,0 +12457,15286,27790,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,8.16117275878808,8.064710728739682,3,0,0,0,-9,0,-1025.68653026597,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.888675010555363,8.273703716521801,0,0,58.62,44.69,5,1,0,0,13,4,1,404,0,0,0 +12458,15287,27791,27795,-9,-9,1,1,0,38,1,1,4,0,2,-9,6,3,0,3,0,3.305765188430958,2.744899239697847,2,0,-9,7,0,3,-136.0962876130997,0,0,1,35,2,3,1,3,2,2019,3,4,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.102600216954369,0,0,0,50.17,43.35,6,1,0,0,7,2,0,512.6666666666666,0,0,0 +12458,15287,27792,-9,27791,27795,2,1,1,16,2,1,4,1,2,-9,7,2,0,5,4.472381509397787,4.475816353128484,0,2,0,0,0,-9,0,-997.911639941565,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.821111300111775,3,54.1,59.11,7,1,0,0,7,2,0,512.6666666666666,0,0,0 +12458,15287,27793,-9,27791,27795,5,1,0,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-856.422200451808,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,512.6666666666666,0,0,0 +12458,15287,27794,-9,27791,27795,6,1,0,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.261190720255,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,512.6666666666666,0,0,0 +12458,15287,27795,27791,-9,-9,4,1,1,35,1,1,4,0,2,-9,2,1,0,3,7.771678049095068,7.529807006604162,0,2,0,-9,7,0,-3,-37.31340582535924,0,0,0,38,2,3,3,-9,-9,2019,2,1,14,2,54,49,15,1,2,3,0,5.776553065450214,5.776553065450214,0,0,0,0,0,0,0,1,1,0,0,0,0,3,38.18,55.38,4,1,0,0,7,2,0,512.6666666666666,0,0,0 +12458,15287,27796,-9,27791,27795,3,1,1,12,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-879.8682079771472,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,2,0,512.6666666666666,0,0,0 +12459,15288,27797,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,4,8.113742560043811,8.297797687370986,0,3,0,0,0,-9,0,-980.4713958895002,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,37,37,15,1,4,-9,0,10.19845643504436,10.19845643504436,0,0,0,0,0,0,0,0,0,0,1.350612720061331,0,0,0,48.87,58.55,6,1,0,0,4,4,1,381,0,0,0 +12460,15289,27798,-9,-9,-9,1,1,0,43,2,0,0,0,1,-9,2,1,0,3,8.947351172398788,9.010489262963505,0,3,0,0,0,-9,0,-1057.467853080086,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,41,45,15,1,0,-9,0,22.90763552500857,22.90763552500857,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.9,60.31,5,1,0,0,12,5,0,1771,0,0,0 +12461,15290,27799,27800,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.38232619391912,8.427624046828418,0,1,0,-9,19,0,9,-5.55233522945779,0,0,0,44,2,5,1,-9,-9,2019,1,1,6,0,38,35,15,1,0,1,0,16.31288862803961,16.31288862803961,0,0,0,0,0,0,0,0,0,0,5.102881184950474,0,0,0,58.15,52.91,2,1,0,0,11,5,1,1844,0,0,0 +12461,15290,27800,27799,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,5,7.984517295638522,8.171988244644668,0,1,0,-9,19,0,0,-80.53704081033842,0,0,1,53,2,4,1,2,1,2019,1,2,11,0,41,49,15,1,0,1,0,8.932579302120883,8.932579302120883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.27,55.19,6,3,0,0,11,5,1,1844,0,0,0 +12462,15291,27801,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.159607454976237,8.443889717779578,0,3,0,0,0,-9,0,-989.9799563911188,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,40,60,15,1,2,-9,0,16.15277709047206,16.15277709047206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,13,5,0,1277,0,0,0 +12463,15292,27802,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,3,0,6.6389866937873,6.80935997151644,3,0,0,0,-9,0,-1041.534746504351,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.85780076432385,0,0,51,46,5,4,0,0,8,2,0,281,0,0,0 +12464,15293,27803,-9,27804,27805,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.947506504041,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,5,1,914,0,0,0 +12464,15293,27804,27805,-9,-9,2,1,0,34,1,0,1,0,1,-9,2,1,0,3,8.537310406842023,8.137441655956145,0,2,0,-9,8,0,-1,-25.88871683119609,0,0,1,35,1,4,1,2,2,2019,1,1,9,0,25,24,15,1,0,1,0,19.32065109569283,19.32065109569283,0,0,0,0,0,0,0,1,1,0,.1975631563764431,0,0,0,51.41,56.15,6,1,0,0,1,5,1,914,0,0,0 +12464,15293,27805,27804,-9,-9,1,1,1,35,1,0,1,0,1,-9,2,1,0,4,8.550892825320432,8.518448602325297,0,2,0,-9,8,0,1,78.99200559371268,0,0,0,34,1,3,1,1,1,2019,1,2,6,0,40,47,15,1,0,1,0,13.25817393015966,13.25817393015966,0,0,0,0,0,0,0,1,1,0,7.248423851979662,0,0,0,56.33,51.02,6,1,0,0,1,5,1,914,0,0,0 +12465,15294,27806,27807,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,6.559367203481877,6.446283192494104,1,0,-9,7,0,-3,13.80139148338117,0,0,0,86,2,3,3,-9,-9,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,1,0,125.1722021475831,1.507241728574527,0,0,0,1,1,0,0,6.049968452922752,124.3700617678157,1,37.55,49.39,6,1,0,0,12,2,1,3187,0,0,0 +12465,15294,27807,27806,-9,-9,1,1,0,86,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,3,-29.01108041936754,0,0,0,83,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,109.5104521709349,1,47.13,37,6,1,0,0,12,2,1,3187,0,0,0 +12466,15295,27808,27809,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.617075374773132,7.681123638164181,1,0,-9,6,0,5,76.78834760781601,0,0,0,63,2,3,1,3,3,2019,3,2,9,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.447912782286283,7.607748745514879,8.92906543974655,3,59.07,37.52,6,1,0,0,5,3,1,200,0,0,0 +12466,15295,27809,27808,-9,-9,2,1,0,63,1,0,0,0,2,-9,1,1,0,3,5.967499668416536,5.709873442865649,0,1,0,-9,6,0,-5,10.5684768979719,0,0,0,68,2,3,3,2,3,2019,2,1,7,1,12,20,15,1,1,4,0,3.273805889737312,3.273805889737312,0,0,0,0,0,0,0,1,1,0,0,0,0,3,56.6,41.86,7,1,0,0,5,3,1,200,0,0,0 +12467,15296,27810,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1091.995138592918,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.64,45.7,7,1,0,0,2,1,0,2185,0,0,0 +12468,15297,27811,27814,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,9.019309953906685,8.889887063770033,0,2,0,-9,16,0,2,18.50501844619169,0,0,0,41,1,3,1,2,3,2019,1,1,10,0,45,40,15,1,0,1,0,19.72953387883175,19.72953387883175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,6,1,0,0,9,5,1,651.75,0,0,0 +12468,15297,27812,-9,27814,27811,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.591100711209,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,9,5,1,651.75,0,0,0 +12468,15297,27813,-9,27814,27811,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.788953500414,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,1,0,0,9,5,1,651.75,0,0,0 +12468,15297,27814,27811,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,3,8.344657586652804,8.613845175728143,0,2,0,-9,16,0,-2,28.94318832107493,0,0,1,43,1,4,1,2,2,2019,1,2,6,0,25,30,15,1,0,1,0,19.43246336812292,19.43246336812292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,5,1,651.75,0,0,0 +12469,15298,27815,27816,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.131327667930737,7.267433337775383,0,1,0,-9,4,0,-1,4.64675414140515,0,0,0,59,2,2,1,3,3,2019,1,1,15,4,20,20,15,1,4,1,0,8.771899428108716,8.771899428108716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.84,58.02,3,1,0,0,9,4,0,352,0,0,0 +12469,15298,27816,27815,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.364811313156194,8.548099852953628,4.231942378465562,1,0,-9,4,0,1,-45.27971661064365,0,0,0,58,2,4,1,3,3,2019,1,2,11,0,45,45,15,1,0,1,0,12.40331240681186,12.40331240681186,0,0,0,0,0,0,0,0,0,0,7.269254749455281,4.739762419359208,0,0,50.66,47.59,5,1,0,0,9,4,0,352,0,0,0 +12469,15299,27817,-9,27815,27816,4,1,0,27,2,0,0,0,1,-9,2,1,0,4,7.547775101996993,7.890134072824015,0,3,0,-9,0,-9,0,-937.616307691466,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,14,2,46,0,15,1,2,-9,1,6.758242087240974,6.758242087240974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.48,60.97,3,1,0,1,9,3,0,423,0,0,0 +12470,15300,27818,27819,-9,-9,1,1,0,59,1,0,1,0,1,-9,2,1,0,5,7.149180530437731,6.896967542999389,0,2,0,-9,31,0,2,131.7602471196092,0,0,0,57,2,3,1,2,2,2019,1,2,4,0,18,20,15,1,0,1,0,8.546804486304817,8.546804486304817,0,0,0,0,0,0,0,1,1,0,3.652108680115821,0,0,0,60.6,49.26,6,1,0,0,9,4,1,851.3333333333334,0,0,0 +12470,15300,27819,27818,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,3,8.71261462340078,8.512363801211286,0,2,0,-9,31,0,-2,-30.09135486945058,0,0,0,59,1,5,1,2,2,2019,1,1,6,0,38,41,15,1,0,1,0,18.10646457031254,18.10646457031254,0,0,0,0,0,0,0,1,1,0,4.58437348260506,0,0,0,52.99,51.28,6,1,0,0,9,4,1,851.3333333333334,0,0,0 +12470,15300,27820,-9,27818,27819,4,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.412802465719,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.492039244503728,0,0,0,54.2,57.49,6,1,0,0,9,4,1,851.3333333333334,0,0,0 +12471,15301,27821,27822,-9,-9,1,1,1,54,1,0,0,0,3,-9,8,3,1,1,0,4.527344216772735,4.561538703325233,1,0,-9,26,0,1,11.9674596112683,0,0,0,53,3,3,3,3,3,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.959964463730755,17.03355065460768,1,42.73,21.19,5,1,0,0,5,2,1,735.5,0,0,0 +12471,15301,27822,27821,-9,-9,2,1,0,53,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,26,0,-1,-26.96566054204539,0,0,0,54,3,1,3,2,3,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.3729884945671,2,49.04,55.86,6,1,0,0,5,2,1,735.5,0,0,0 +12471,15302,27823,-9,27822,27821,3,1,1,22,2,0,0,0,2,-9,1,1,0,4,4.292962389869056,4.428737335008122,0,3,0,0,0,-9,0,-1052.340252904411,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,42,42,15,1,0,-9,1,.2634248761518682,.2634248761518682,0,0,0,0,0,0,0,1,1,0,0,0,10.7575668034449,3,52.38,55.6,6,1,0,0,5,2,1,295,0,0,0 +12472,15303,27824,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,3,8.652922041706569,8.357000868012589,0,3,0,0,0,-9,0,-767.8354937605043,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,50,45,15,1,0,-9,0,12.61990265317232,12.61990265317232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,10,5,1,211,0,0,0 +12473,15304,27825,27826,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,7.267325784406329,7.139692427904243,1,0,-9,46,0,0,-1.391960409375426,0,0,0,66,1,4,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.557422050541237,0,3,67.67,26.76,6,1,0,0,9,3,1,565.5,0,0,0 +12473,15304,27826,27825,-9,-9,2,1,0,66,1,0,0,0,1,-9,1,1,0,4,6.982327406301449,7.773937818219316,6.442701818562661,1,0,-9,46,0,0,123.320524924295,0,0,0,66,1,3,3,3,3,2019,2,1,6,0,50,30,15,1,0,4,0,2.397492383548423,2.397492383548423,0,0,0,0,0,0,0,1,1,0,3.627427367047208,6.697041427069056,0,0,61.68,47.24,6,1,0,0,9,3,1,565.5,0,0,0 +12474,15305,27827,27828,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,4,6.985902314454088,8.215284552828335,8.244254161521388,1,0,-9,42,0,2,118.8119903323944,0,0,0,60,2,4,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.855092457333209,8.290854053981722,0,0,41.17,59.31,7,1,0,0,1,3,1,738,0,0,0 +12474,15305,27828,27827,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,42,0,-2,-44.92624504607584,0,0,0,62,1,4,3,3,1,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.1,56.62,7,1,0,0,1,3,1,738,0,0,0 +12475,15306,27829,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,2,8.452335691371841,8.615575775862917,0,3,0,-9,0,-9,0,-1003.978218269006,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,22,10,100,0,15,1,10,-9,0,7.033142806343545,7.033142806343545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.1,40.06,3,1,0,0,4,5,0,2962,0,0,0 +12476,15307,27830,-9,27833,-9,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.741823285445,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,1,0,404,0,0,0 +12476,15307,27831,-9,27833,27832,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1106.806984605512,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,1,0,404,0,0,0 +12476,15307,27832,27833,-9,-9,3,1,1,22,1,1,2,0,3,-9,3,3,0,3,0,0,0,2,0,-9,2,0,-6,0,-9,1,0,28,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,7,1,1,0,11,1,0,404,0,0,0 +12476,15307,27833,27832,-9,-9,1,1,0,28,1,1,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,2,0,6,0,0,1,1,22,3,3,3,3,-9,2019,4,3,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,11,1,0,404,0,0,0 +12477,15308,27834,-9,-9,-9,1,1,1,90,2,0,0,0,3,-9,4,3,0,5,0,6.942602547924141,6.862256257947396,3,0,0,0,-9,0,-994.9392354746357,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.983446317138039,0,0,61.16,53.18,7,1,0,0,6,2,1,1700,0,0,0 +12478,15309,27835,27836,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,2,3.676348894594222,3.835459247822967,0,1,0,-9,5,0,0,35.88574222521083,0,0,0,61,1,2,3,2,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.41,42.57,6,1,0,0,7,3,1,792.5,0,0,0 +12478,15309,27836,27835,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,2,0,8.152607540055691,8.203677274895625,1,0,-9,5,0,0,22.77557776319587,0,0,0,61,1,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.03406501974208,0,0,40.71,47.62,6,1,0,0,7,3,1,792.5,0,0,0 +12479,15310,27837,27838,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,3,8.320620678721852,7.986027791302297,0,1,0,-9,3,0,14,157.4541984219319,0,0,0,33,1,4,1,2,2,2019,1,2,15,3,37,45,15,1,3,1,0,12.23333774710376,12.23333774710376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,50.67,6,1,0,0,10,5,0,758.5,0,0,0 +12479,15310,27838,27837,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.343633172287614,8.493458712253897,0,1,0,-9,3,0,-14,-57.0616467564054,0,0,1,47,2,3,1,-9,-9,2019,1,1,5,0,52,40,15,1,0,1,0,12.15803395506224,12.15803395506224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,6,1,0,0,10,5,0,758.5,0,0,0 +12480,15311,27839,-9,-9,-9,1,1,1,54,3,0,1,0,2,-9,2,1,0,4,8.045730069289576,8.443356776676431,0,4,0,-9,0,1,0,-983.6131969288598,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,35,40,15,1,0,-9,0,10.37642437736522,10.37642437736522,0,0,0,0,0,0,0,1,1,0,3.148603548791512,0,0,0,57.16,56.15,6,1,0,0,10,4,1,542,0,0,0 +12481,15312,27840,-9,27842,27841,3,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.319486606384,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.25,62.92,2,1,0,0,7,3,1,1085,0,0,0 +12481,15312,27841,27842,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.124957408123779,8.322336003022142,0,2,0,-9,23,0,-6,2.450928103685722,0,0,0,51,2,3,1,2,2,2019,1,1,10,1,50,50,15,1,1,1,0,8.478460392530172,8.478460392530172,0,0,0,0,0,0,0,1,1,0,.6740491506688452,0,3.870362629364639,3,52.77,55.33,5,1,0,0,7,3,1,1085,0,0,0 +12481,15312,27842,27841,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,3,7.224513363395532,7.400586232137139,0,2,0,-9,23,0,6,92.93429333683454,0,0,0,45,2,4,1,2,2,2019,1,2,8,0,7,7,15,1,0,1,0,22.48322153845275,22.48322153845275,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.29,54.59,6,1,0,0,7,3,1,1085,0,0,0 +12482,15313,27843,27845,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,4,9.121781482211684,8.987029353414417,0,2,0,-9,9,0,1,73.986938782653,0,0,0,49,1,5,1,2,3,2019,1,2,7,0,42,41,15,1,0,1,0,22.99548016914984,22.99548016914984,0,0,0,0,0,0,0,0,0,0,1.704442095073945,0,0,0,53.05,51.13,6,1,0,0,1,5,1,637.3333333333334,0,0,0 +12482,15313,27844,-9,27845,27843,3,1,0,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-986.7364004142541,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,1,5,1,637.3333333333334,0,0,0 +12482,15313,27845,27843,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,5,9.444063619517463,9.463764709357394,0,2,0,-9,9,0,-1,-71.79203662489351,0,0,0,50,2,4,1,3,3,2019,1,1,12,1,78,53,15,1,1,1,0,20.57094427444956,20.57094427444956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,1,5,1,637.3333333333334,0,0,0 +12483,15314,27846,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,1,1,0,4,7.728736763977811,8.062856499300183,7.167646251166714,3,0,0,0,-9,0,-1035.626994954162,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,43,45,15,1,0,-9,0,4.01201412228733,4.01201412228733,0,0,0,0,0,0,0,1,1,0,0,6.708181357288424,0,0,62.67,44.01,6,1,0,0,12,4,1,2943,0,0,0 +12484,15315,27847,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,4,8.997440582429977,8.782010944433344,0,3,0,0,0,-9,0,-1030.307167830367,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,36,0,15,1,5,-9,0,21.11085172965749,21.11085172965749,0,0,0,0,0,0,0,0,0,0,5.449089340314747,0,0,0,48.87,58.55,5,1,0,0,12,5,1,2819,0,0,0 +12485,15316,27848,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,6.198872257478358,6.498715545358671,3,0,0,0,-9,0,-902.9971799786473,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.340574231139865,0,0,60.35,18.88,6,4,0,0,8,2,0,1749,0,0,0 +12486,15317,27849,27850,-9,-9,1,1,1,55,1,1,3,0,3,-9,1,1,0,3,8.309054477355712,8.56799410755951,0,2,0,-9,32,0,7,21.13007029263965,0,0,0,48,3,3,1,3,3,2019,1,2,8,0,30,25,15,1,0,1,0,15.56367120021921,15.56367120021921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.64,45.08,6,3,0,0,4,3,1,529,0,0,0 +12486,15317,27850,27849,-9,-9,2,1,0,48,1,1,3,0,3,-9,2,1,0,3,6.372870482311996,6.275576524152298,0,2,0,-9,6,0,-7,-100.0756531996526,0,0,0,55,3,3,1,3,3,2019,1,1,9,1,10,10,15,1,1,1,0,5.875833637164155,5.875833637164155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.31,43.75,6,3,0,0,4,3,1,529,0,0,0 +12486,15318,27851,-9,27850,27849,5,1,1,24,2,1,3,0,2,-9,2,1,0,4,7.347952983700701,7.447683550608587,0,3,0,0,0,-9,0,-873.2487162074124,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,20,0,15,1,1,-9,1,10.4977388143784,10.4977388143784,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,4,3,1,1060,0,0,0 +12486,15319,27852,27855,-9,-9,6,1,0,30,1,1,3,0,1,-9,6,3,0,4,0,0,0,2,0,-9,6,0,0,-17.62042196789857,0,0,1,30,1,3,1,3,3,2019,3,3,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,4,3,1,717.4,0,0,0 +12486,15319,27853,-9,27852,27855,8,1,0,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.088404682968,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,3,1,717.4,0,0,0 +12486,15319,27854,-9,27852,27855,7,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.5437498106343,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,3,1,717.4,0,0,0 +12486,15319,27855,27852,27850,27849,3,1,1,30,1,1,3,0,1,-9,2,1,0,3,8.678818530138971,8.74517057802943,0,2,0,-9,6,0,0,-16.6446875436541,0,0,0,30,1,4,3,3,3,2019,2,6,8,0,41,0,15,1,0,3,0,14.84816867919452,14.84816867919452,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,3,0,0,4,3,1,717.4,0,0,0 +12486,15319,27856,-9,27852,27855,9,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.1257653911975,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,3,1,717.4,0,0,0 +12487,15320,27857,-9,27858,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-934.8620907874923,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,1,0,721.6666666666666,0,0,0 +12487,15320,27858,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,3,3,0,4,0,0,0,4,0,-9,0,-9,0,-996.2752285372136,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,1,1,8,1,0,721.6666666666666,0,0,0 +12487,15320,27859,-9,27858,-9,2,1,1,10,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-919.4306576164706,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,1,0,721.6666666666666,0,0,0 +12488,15321,27860,27861,-9,-9,2,1,0,41,1,0,0,0,1,-9,2,1,0,5,9.258096827061824,9.073465315556373,0,1,0,-9,18,0,-1,-12.24156495082192,0,0,1,42,1,5,1,2,2,2019,1,1,0,0,68,62,15,1,0,1,0,19.19935949958249,19.19935949958249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,2,5,1,576,0,0,0 +12488,15321,27861,27860,-9,-9,1,1,1,42,1,0,0,0,1,-9,2,1,0,5,8.999348256975999,9.105228211838803,0,1,0,-9,18,0,1,77.53129726237998,0,0,0,41,1,5,1,1,1,2019,1,2,10,0,48,47,15,1,0,1,0,22.05347414392329,22.05347414392329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,2,5,1,576,0,0,0 +12489,15322,27862,27863,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,4,8.179827942765598,8.392317594351551,6.245746323611321,2,0,-9,6,0,-10,105.4052920665908,0,0,1,46,2,2,1,2,2,2019,1,3,8,0,40,40,15,1,0,1,0,8.462729152025647,8.462729152025647,0,0,0,0,0,0,0,1,1,0,6.599317085325504,0,0,0,49.46,56.91,7,1,0,0,9,5,1,531.6666666666666,0,0,0 +12489,15322,27863,27862,-9,-9,3,1,1,46,1,0,1,0,2,-9,2,1,0,2,8.52155687567331,8.664147352962226,0,2,0,-9,6,0,10,-99.07519278233605,0,0,0,36,2,4,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,16.60012601383204,16.60012601383204,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,6,1,0,0,9,5,1,531.6666666666666,0,0,0 +12489,15322,27864,-9,27862,27863,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1137.5330314666,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,1,531.6666666666666,0,0,0 +12490,15323,27865,-9,-9,-9,1,1,0,30,2,0,0,0,2,-9,2,1,0,3,7.55363173430831,7.706604169133245,0,3,0,0,0,-9,0,-1015.986179440965,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,31,12,23,37,15,1,12,-9,0,9.667422002048301,9.667422002048301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.63,43.62,3,1,0,1,11,3,1,786,0,0,0 +12491,15324,27866,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,4,0,4.661308556685375,4.542004181780977,3,0,0,0,-9,0,-1104.272724162718,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.891035502487639,4.279560532564918,7.940942897088815,3,46.98,59.35,6,1,0,0,10,2,0,339,0,0,0 +12492,15325,27867,27868,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,8.7849810768368,9.146173942900541,1,0,-9,32,0,4,-77.1718081224754,0,0,0,65,2,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.434746708531442,9.005187417001997,0,0,57.16,56.15,6,1,0,0,4,5,1,633,0,0,0 +12492,15325,27868,27867,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,7.625545535535398,7.728547717998755,1,0,-9,32,0,-4,-138.8005725210464,0,0,0,69,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.127125015366764,8.106475274690498,0,0,57.16,56.15,6,1,0,0,4,5,1,633,0,0,0 +12493,15326,27869,27870,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.084775422210191,8.171830956972757,0,1,0,-9,8,0,-7,-55.8830766304928,0,0,0,52,2,1,3,3,2,2019,2,1,10,0,35,35,15,1,0,3,0,12.0711473910447,12.0711473910447,0,0,0,0,0,0,0,1,1,0,0,0,45.32282954301629,1,38.64,55.03,4,1,0,0,10,3,0,230,0,0,0 +12493,15326,27870,27869,-9,-9,1,1,1,52,1,0,0,0,2,-9,8,3,1,1,0,6.444067394437996,5.959514273647998,1,0,-9,8,0,7,-43.60382702558941,0,0,0,45,2,3,1,2,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.927767309042141,0,0,30.85,17.26,3,1,0,0,10,3,0,230,0,0,0 +12494,15327,27871,27872,-9,-9,1,1,1,40,1,0,1,0,1,-9,2,1,0,4,9.361230815324273,9.003873255460464,0,2,0,-9,6,0,4,-10.42603773472536,0,0,0,36,2,2,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,27.89374001850548,27.89374001850548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,13,5,1,529,0,0,0 +12494,15327,27872,27871,-9,-9,2,1,0,36,1,0,1,0,2,-9,1,1,0,2,8.604291855871145,8.331465831387682,0,2,0,-9,6,0,-4,-73.12465464290015,0,0,1,40,1,4,1,2,2,2019,1,1,20,7,30,36,15,1,7,1,0,12.72037805127971,12.72037805127971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.87,62.07,5,1,0,0,13,5,1,529,0,0,0 +12494,15327,27873,-9,27872,27871,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.371841738305,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,13,5,1,529,0,0,0 +12495,15328,27874,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1148.233355514821,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.02,34.01,6,1,0,0,4,1,1,1272,0,0,0 +12496,15329,27875,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,7.56953218694519,7.422017442454106,3,0,0,0,-9,0,-1040.763419238238,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.904244552914044,7.306938651654274,0,0,56.11,36.37,6,1,0,0,10,3,1,1408,0,0,0 +12497,15330,27876,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,1,1,0,4,7.901961040305065,7.930051976247687,0,1,0,-9,3,0,-4,129.0891874885751,0,0,0,-9,-9,-9,-9,2,2,2019,-9,2,9,0,40,35,15,1,0,-9,0,10.43473149699578,10.43473149699578,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,57.54,2,1,0,0,12,3,1,2027,0,0,0 +12498,15331,27877,27878,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,5,8.071298500083387,8.149665791811328,0,1,0,-9,17,0,-1,-90.55335709366999,0,0,0,61,1,5,1,3,3,2019,1,2,6,0,37,50,15,1,0,1,0,11.82044476049541,11.82044476049541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,856.5,0,0,0 +12498,15331,27878,27877,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,5,8.543601512750854,8.585950818964353,7.025674436053078,1,0,-9,17,0,1,-131.1528404244556,0,0,0,60,1,5,1,3,2,2019,1,1,12,0,37,37,15,1,0,1,0,12.91418939624936,12.91418939624936,0,0,0,0,0,0,0,0,0,0,0,7.267473594708824,0,0,45.1,59.17,3,1,0,0,9,5,1,856.5,0,0,0 +12498,15332,27879,-9,27877,27878,3,1,0,22,2,0,0,0,1,1,2,1,0,4,7.082186943648027,7.164571840109356,0,3,0,0,0,-9,0,-957.817506689007,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,2,25,0,15,1,2,-9,1,5.235518391664074,5.235518391664074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.21,60.79,5,1,0,0,9,2,1,543,0,0,0 +12499,15333,27880,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,8.693026457796236,8.729444742752355,0,1,0,-9,1,-9,3,34.54257714258509,-9,1,0,-9,-9,-9,-9,2,2,2019,1,2,4,0,43,0,15,1,0,-9,0,17.96232752861641,17.96232752861641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,6,1,0,0,2,5,0,1135,0,0,0 +12499,15334,27881,-9,-9,-9,2,1,1,23,2,0,0,0,1,-9,2,1,0,4,7.793312199042242,7.76928260856872,0,1,0,-9,1,-9,-3,63.7306734775202,-9,1,0,-9,-9,-9,-9,-9,-9,2019,1,1,4,0,40,0,15,1,0,-9,0,8.830690190256924,8.830690190256924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,2,5,0,5157,0,0,0 +12500,15335,27882,27883,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,5,7.106172804245118,7.445315698949488,0,1,0,-9,32,0,-1,81.97339772388585,0,0,0,59,2,4,1,2,2,2019,1,2,6,0,20,20,15,1,0,1,0,8.055034667404497,8.055034667404497,0,0,0,0,0,0,0,0,0,0,0,0,2.307062575399646,3,57.06,57.76,7,1,0,0,4,5,1,730,0,0,0 +12500,15335,27883,27882,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,9.002179610065918,8.887342925380057,0,1,0,-9,32,0,1,-90.92777253476784,0,0,0,58,2,5,1,3,2,2019,1,1,8,0,45,42,15,1,0,1,0,18.44862599217451,18.44862599217451,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,6,1,0,0,4,5,1,730,0,0,0 +12500,15336,27884,-9,27882,27883,3,1,1,22,2,0,0,0,1,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1107.071672956884,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,1,0,4,1,1,501,0,0,0 +12501,15337,27885,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,3,5.703173323112017,6.082236012816542,0,3,0,0,0,-9,0,-989.3651253705202,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,20,0,15,1,1,-9,1,2.378655237781011,2.378655237781011,0,0,0,0,0,0,0,1,1,0,1.359545277961934,0,0,0,47.32,47.16,4,3,0,0,10,2,1,266,0,0,0 +12502,15338,27886,27887,-9,-9,2,1,1,69,1,1,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,7,0,8,0,0,0,0,61,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,5,3,0,0,6,1,1,801,0,0,0 +12502,15338,27887,27886,-9,-9,1,1,0,61,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,37,0,-8,0,0,0,0,69,2,3,3,3,3,2019,4,2,11,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.1197917596258785,0,0,0,53.89,41.28,5,3,0,1,6,1,1,801,0,0,0 +12502,15339,27888,-9,27887,27886,3,1,1,31,2,1,1,0,2,-9,2,1,0,3,8.121044009274614,8.075197593141446,0,3,0,0,0,-9,0,-838.6807446740983,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,9,45,35,15,1,9,-9,1,7.554311118728418,7.554311118728418,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.7,45.14,1,3,0,1,6,4,1,312,0,0,0 +12502,15340,27889,27891,-9,-9,5,1,0,35,1,1,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,4,0,1,35.10033778085008,0,0,1,34,1,5,1,-9,-9,2019,3,4,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,5,5,1,0,6,4,1,850.6666666666666,0,0,0 +12502,15340,27890,-9,27889,27891,6,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1156.843294201694,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,4,1,850.6666666666666,0,0,0 +12502,15340,27891,27889,27887,27886,4,1,1,34,1,1,1,0,1,-9,2,1,0,5,8.764353366450845,8.978590756732798,0,2,0,-9,4,0,-1,-91.41056254568917,0,0,0,35,2,3,3,2,2,2019,2,5,20,8,48,41,15,1,8,3,0,18.66115930554267,18.66115930554267,0,0,0,0,0,0,0,1,1,0,4.664159358968835,0,0,0,56.72,58.13,3,3,0,0,6,4,1,850.6666666666666,0,0,0 +12503,15341,27892,-9,27893,-9,2,1,1,30,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1009.024228297558,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,2,0,0,8,1,1,1721,0,0,0 +12503,15342,27893,27894,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,3,6.622462059129271,6.382493713095478,0,1,0,-9,8,0,-3,27.53118197489426,0,0,0,63,2,3,1,2,2,2019,1,3,11,0,30,0,15,1,2,1,0,2.217334067204313,2.217334067204313,0,0,0,0,0,0,0,1,1,0,0,0,120.6015262036757,3,49,48,5,4,0,0,8,5,1,1158,0,0,0 +12503,15342,27894,27893,-9,-9,3,1,1,63,1,0,0,0,2,-9,2,1,0,3,9.087703573643461,8.790283445904,0,1,0,-9,8,0,3,-68.97103553272517,0,0,0,60,2,3,1,-9,-9,2019,1,1,10,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,4,0,0,8,5,1,1158,0,0,0 +12504,15343,27895,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,3,8.598824177946339,8.328965235552852,0,3,0,0,0,-9,0,-1034.642005494911,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,44,40,15,1,0,-9,0,14.99340079340302,14.99340079340302,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.05,37.73,6,1,0,0,2,5,1,1191,0,0,0 +12505,15344,27896,27897,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,7.355851838008544,7.29110839264241,1,0,-9,48,0,-6,54.08817430061928,0,0,0,74,2,4,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.04996728177162,7.286837420442876,0,0,40.29,42.14,3,1,0,0,2,3,1,668.5,0,0,0 +12505,15344,27897,27896,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.333099249056089,7.332321220060064,1,0,-9,48,0,6,-18.21861130746884,0,0,0,68,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.449284495572199,6.848785087302493,0,3,63.24,42.39,6,1,0,0,2,3,1,668.5,0,0,0 +12506,15345,27898,-9,-9,-9,1,1,1,73,3,0,0,0,1,-9,4,3,0,4,0,9.011915400590118,8.659796195404422,3,0,0,0,-9,0,-960.8750222391335,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.46638000204462,8.995921786903162,0,0,60.12,54.8,7,1,0,0,9,5,1,236,0,0,0 +12507,15346,27899,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,3,8.149570223157742,7.944952786922279,0,3,0,-9,0,-9,0,-1085.00153758164,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,53,0,15,1,5,-9,0,8.101667808250335,8.101667808250335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.91,3,1,0,0,11,4,0,848,0,0,0 +12508,15347,27900,-9,27901,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1056.849961894762,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,1,0,2130.666666666667,0,0,0 +12508,15347,27901,-9,-9,-9,1,1,0,37,3,1,2,0,3,-9,6,3,0,1,0,0,0,4,0,0,0,-9,0,-1101.883862242255,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.87321735768572,3,54.59,29.62,4,3,0,0,6,1,0,2130.666666666667,0,0,0 +12508,15347,27902,-9,27901,-9,2,1,0,16,2,1,2,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-989.432130246659,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.01,51.98,6,3,0,0,6,1,0,2130.666666666667,0,0,0 +12509,15348,27903,-9,-9,-9,1,1,0,41,2,0,0,0,1,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-876.2557134643341,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,8,30,29,15,1,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.44,62.16,3,1,0,0,6,1,0,707,0,0,0 +12510,15349,27904,27906,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,3,8.510713445740141,8.888327218521301,0,2,0,-9,8,0,1,35.6863359316576,0,0,1,38,2,2,1,2,2,2019,1,2,11,1,35,20,15,1,1,1,0,19.39113288882388,19.39113288882388,0,0,0,0,0,0,0,1,1,0,.3019769646369293,0,0,0,57.33,53.46,6,1,0,0,10,4,1,1592.75,0,0,0 +12510,15349,27905,-9,27904,27906,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.3602372869794,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,1592.75,0,0,0 +12510,15349,27906,27904,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,2,7.134985060921468,7.476090130259337,0,2,0,-9,8,0,-1,-130.4673263887381,0,0,0,39,1,3,1,2,2,2019,1,1,11,0,50,52,15,1,0,1,0,3.476855094518821,3.476855094518821,0,0,0,0,0,0,0,1,1,0,9.39551554763872,0,0,0,46.85,53.17,5,1,0,0,10,4,1,1592.75,0,0,0 +12510,15349,27907,-9,27904,27906,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.203796555012,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,1,1592.75,0,0,0 +12511,15350,27908,27909,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,3,7.952292312508565,7.551372987407561,0,1,0,-9,12,0,4,-34.36679026078819,0,0,0,34,1,3,1,2,2,2019,1,2,26,9,0,80,15,1,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.013324389866795,0,0,0,24.24,65.88,5,1,0,0,10,4,1,1269.5,0,0,0 +12511,15350,27909,27908,-9,-9,2,1,0,34,1,0,0,0,1,-9,2,1,0,3,8.113059043386846,8.034519384454367,0,1,0,-9,12,0,-4,38.75791863619351,0,0,1,38,1,3,1,1,1,2019,1,1,9,0,35,25,15,1,0,1,0,10.31448665073883,10.31448665073883,0,0,0,0,0,0,0,0,0,0,3.342804442800472,0,0,0,54.32,42.6,5,1,0,0,10,4,1,1269.5,0,0,0 +12512,15351,27910,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,2,1,0,2,8.200436364602902,7.799049402354981,0,3,0,0,0,-9,0,-1052.426139627852,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,38,39,15,1,9,-9,0,14.52388063916082,14.52388063916082,0,0,0,0,0,0,0,0,0,0,0,0,16.98200662376196,3,32.53,47.75,3,1,0,0,4,4,1,286,0,0,0 +12513,15352,27911,-9,-9,-9,1,1,0,19,2,0,0,0,2,-9,2,1,0,3,8.588996971407548,8.698748202563678,0,3,0,0,0,-9,0,-1057.489893169515,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,9,39,26,15,1,9,-9,0,16.3952787359028,16.3952787359028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.08,63.04,2,1,0,0,11,4,0,1166,0,0,0 +12514,15353,27912,27913,-9,-9,2,1,0,46,1,0,0,0,1,-9,2,1,0,4,9.392508977470834,9.300852455258495,0,1,0,-9,20,0,-1,-62.77069071002462,0,0,0,47,1,5,1,3,3,2019,1,1,5,0,50,2,15,1,0,1,0,30.05948033134436,30.05948033134436,0,0,0,0,0,0,0,0,0,0,5.964983922759565,0,0,0,57.16,56.15,6,3,0,0,8,5,1,601,0,0,0 +12514,15353,27913,27912,-9,-9,1,1,1,47,1,0,0,0,1,-9,1,1,0,5,9.59552967769911,9.598703273056612,0,1,0,-9,20,0,1,-53.11646840159391,0,0,0,46,1,4,1,2,2,2019,1,2,14,3,40,40,15,1,3,1,0,44.39393115849983,44.39393115849983,0,0,0,0,0,0,0,0,0,0,7.703377434537321,0,0,0,54.1,59.11,6,1,0,0,8,5,1,601,0,0,0 +12515,15354,27914,-9,27915,27916,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.4608023466608,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,1039,0,0,0 +12515,15354,27915,27916,-9,-9,1,1,0,54,1,0,1,0,1,-9,2,1,0,4,7.354043326212703,7.135343793533758,0,2,0,-9,7,0,1,-88.81476567913522,0,0,0,53,2,4,1,2,2,2019,1,2,12,0,5,2,15,1,0,1,0,28.9559063825459,28.9559063825459,0,0,0,0,0,0,0,1,1,0,5.248469396384176,0,0,0,49.27,56.95,6,1,0,0,9,4,1,1039,0,0,0 +12515,15354,27916,27915,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.700904538615788,8.592999014511316,0,2,0,-9,7,0,-1,-107.3839141040977,0,0,0,54,1,4,1,-9,-9,2019,1,1,9,0,55,65,15,1,1,1,0,13.12423964240635,13.12423964240635,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,9,4,1,1039,0,0,0 +12516,15355,27917,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,2,0,8.235132634396665,8.420041990170704,3,0,0,0,-9,0,-955.3515060754376,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.283693240207763,8.025108041138143,0,0,40.31,42.78,6,1,0,0,6,4,0,266,0,0,0 +12517,15356,27918,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-921.5968432478825,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.42,9.200000000000001,5,4,0,0,8,1,0,479,0,0,0 +12517,15357,27919,-9,27918,-9,2,1,1,33,2,0,0,0,1,-9,1,1,0,3,8.3751781724949,8.761284942121781,0,3,0,0,0,-9,0,-1048.774798828367,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,7,50,70,15,1,7,-9,1,11.24819254416767,11.24819254416767,0,0,0,0,0,0,0,1,1,0,0,0,6.792631798045633,3,41.34,56.62,7,4,0,0,8,5,0,511.5,0,0,0 +12517,15357,27920,-9,-9,27919,3,1,0,15,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-1064.430456957663,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,4,0,0,8,5,0,511.5,0,0,0 +12518,15358,27921,-9,27922,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1063.765448018146,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,1,4,1,759,0,0,0 +12518,15358,27922,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,2,1,0,4,8.167237274186844,8.258902171233748,5.508301346216376,4,0,0,0,-9,0,-1011.651670688492,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,2,37,37,15,1,2,-9,0,12.87082361139115,12.87082361139115,0,0,0,0,0,0,0,1,1,0,6.17033193498887,0,0,0,52.23,52.9,5,1,0,0,1,4,1,759,0,0,0 +12519,15359,27923,27924,-9,-9,2,1,0,77,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,9,0,0,-69.61044501385724,0,0,0,77,2,2,3,3,3,2019,4,1,11,2,0,0,15,3,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.558776549323879,0,0,3,63.66,22.37,4,3,0,0,8,2,1,858,0,0,0 +12519,15359,27924,27923,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,4.655004116409754,4.858529055777137,1,0,-9,9,0,0,26.75365429581261,0,0,0,77,3,2,3,3,2,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.993734020595069,4.511068090488217,0,0,58.57,35.72,6,3,0,0,8,2,1,858,0,0,0 +12520,15360,27925,-9,27926,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1031.129565586515,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,2,0,1124.5,0,0,0 +12520,15360,27926,-9,-9,-9,1,1,0,44,3,0,1,0,3,-9,2,1,0,1,7.555127071584319,7.429266356853539,5.145212158131697,4,0,-9,0,1,0,-993.4384294649861,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,42,0,15,1,8,-9,0,4.181266014312727,4.181266014312727,0,0,0,0,0,0,0,1,1,0,4.166260394345057,0,0,0,39.4,27.08,4,1,0,1,9,2,0,1124.5,0,0,0 +12521,15361,27927,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1040.092894072001,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.749591693886365,0,0,0,62.25,48.33,2,1,0,0,6,1,1,1285,0,0,0 +12522,15362,27928,27929,-9,-9,2,1,0,51,1,1,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,33,0,-7,0,0,0,0,58,3,3,3,3,2,2019,4,1,12,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,7.002248617383652,1,47,49,5,3,0,0,6,1,1,1724.5,0,0,0 +12522,15362,27929,27928,-9,-9,1,1,1,58,1,1,2,0,3,-9,8,3,1,3,0,0,0,2,0,-9,10,0,7,0,0,0,0,51,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,49,5,3,0,0,6,1,1,1724.5,0,0,0 +12522,15363,27930,-9,27928,27929,3,1,0,30,2,1,2,0,1,-9,2,1,0,3,7.76378655927723,7.565432756304708,0,3,0,0,0,-9,0,-914.7093241645478,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,2,25,0,15,1,2,-9,1,10.79299456798047,10.79299456798047,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.94,57.43,5,3,0,0,6,3,1,473,0,0,0 +12522,15364,27931,-9,27928,27929,4,1,1,26,2,1,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-968.9022486425382,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,58,5,3,1,0,6,1,1,401,0,0,0 +12522,15365,27932,-9,27933,-9,6,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-952.9533011390771,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,3,0,0,6,2,1,704,0,0,0 +12522,15365,27933,-9,27928,27929,5,1,0,28,3,1,2,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-970.7228817327031,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,57,5,3,0,1,6,2,1,704,0,0,0 +12522,15365,27934,-9,27933,-9,7,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1087.801017882572,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,3,0,0,6,2,1,704,0,0,0 +12523,15366,27935,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1091.308133223891,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.95,47.88,1,1,0,0,2,1,0,508,0,0,0 +12524,15367,27936,27937,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.139223617352897,6.878995767184547,0,1,0,-9,33,0,-3,-21.21397743609297,0,0,0,54,2,1,1,3,2,2019,1,2,6,0,18,20,15,1,0,1,0,7.068656286629432,7.068656286629432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,7,1,0,0,9,5,1,869.5,0,0,0 +12524,15367,27937,27936,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,1,8.6604472270947,8.453659368310463,0,1,0,-9,11,0,3,-144.2553590612461,-9,0,0,51,2,4,1,-9,-9,2019,1,1,12,3,40,0,15,1,3,1,0,21.39203885520397,21.39203885520397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.55,41.95,6,1,0,0,9,5,1,869.5,0,0,0 +12524,15368,27938,-9,27936,27937,3,1,1,23,2,0,0,0,1,-9,2,1,0,3,7.871369026051822,7.78328306084807,0,3,0,0,0,-9,0,-1119.672657730654,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,38,40,15,1,6,-9,1,8.983667337654643,8.983667337654643,0,0,0,0,0,0,0,0,0,0,1.974801941816097,0,0,0,25.61,62.71,3,1,0,0,9,4,1,1405,0,0,0 +12525,15369,27939,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,2,8.011959826558037,7.953856237155877,0,3,0,-9,0,-9,0,-1135.999488815764,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,39,0,15,1,0,-9,0,8.887105790780831,8.887105790780831,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.66,26.08,7,1,0,0,12,3,0,610,0,0,0 +12526,15370,27940,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,6.42578186419468,6.701933336604626,3,0,0,0,-9,0,-894.2132567924277,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,10.30183502856512,0,0,17.30129794672798,0,0,1,1,0,0,6.162779417432442,0,0,35.19,19.44,6,2,0,0,4,2,0,1007,0,0,0 +12527,15371,27941,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-944.8196401963635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.98,52.27,4,1,0,0,4,2,1,614,0,0,0 +12528,15372,27942,27943,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,4,0,7.300644746008834,7.267895949160914,1,0,-9,11,0,4,-44.86707119052342,0,0,0,73,1,4,3,-9,-9,2019,4,1,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.558567203766827,0,0,35.03,63.83,2,1,0,0,9,3,1,1786,0,0,0 +12528,15372,27943,27942,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,7.286773342334094,7.320937576279119,1,0,-9,49,0,-4,-51.82699473349108,0,0,0,77,1,4,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.780141225799582,7.469926321359693,0,0,58.15,52.91,6,1,0,0,9,3,1,1786,0,0,0 +12529,15373,27944,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,2,7.994810640812283,8.072015292011189,0,3,0,0,0,-9,0,-903.4464166387454,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,21,9,43,42,15,1,9,-9,0,9.203364949059841,9.203364949059841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.21,47.15,3,1,0,1,9,4,0,1308,0,0,0 +12530,15374,27945,-9,-9,-9,1,1,1,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1014.047372788768,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,45.19844445729906,0,0,0,1,1,0,0,0,0,0,55,45,6,3,0,0,4,1,1,709,0,0,0 +12531,15375,27946,27947,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.357667562285471,8.646958401861161,0,1,0,-9,8,0,8,-44.11220699625535,0,0,0,45,1,4,1,3,-9,2019,1,2,34,12,32,37,15,1,12,1,0,14.24307584026001,14.24307584026001,0,0,0,0,0,0,0,0,0,0,.3389616720816757,0,1.184295468165285,3,29.11,44.63,2,1,0,0,9,5,1,260,0,0,0 +12531,15375,27947,27946,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,4,9.154609805309747,8.907448515879798,0,1,0,-9,8,0,-8,-62.64009663587088,0,0,0,53,2,3,1,1,1,2019,1,1,8,0,45,47,15,1,0,1,0,20.56961504781844,20.56961504781844,0,0,0,0,0,0,0,0,0,0,1.178313483949903,0,0,0,58.72,51.29,6,1,0,0,9,5,1,260,0,0,0 +12532,15376,27948,-9,27949,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-913.1268740359315,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,4,1,0,341.5,0,0,0 +12532,15376,27949,-9,-9,-9,1,1,0,34,2,0,1,0,3,-9,97,3,0,3,0,0,0,4,0,0,0,-9,0,-1033.807362838768,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,27,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.61,50.94,3,1,0,1,4,1,0,341.5,0,0,0 +12533,15377,27950,27951,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,2,9.364822752941571,9.367897129850842,0,1,0,-9,29,0,5,-36.06536292701036,0,0,0,56,2,4,1,2,2,2019,1,1,17,4,48,48,15,1,4,1,0,30.3804284783,30.3804284783,0,0,0,0,0,0,0,0,0,0,4.117659351610402,0,0,0,58.51,17.88,3,1,0,0,6,5,1,315,0,0,0 +12533,15377,27951,27950,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.348114818369586,7.964736711399449,0,1,0,-9,29,0,-5,-78.47557184838307,0,0,0,61,1,2,1,2,2,2019,1,2,16,4,43,40,15,1,4,1,0,8.532508004650136,8.532508004650136,0,0,0,0,0,0,0,0,0,0,0,0,7.283456202281479,1,40.58,60.95,5,1,0,0,6,5,1,315,0,0,0 +12534,15378,27952,27953,-9,-9,1,1,1,78,1,0,1,0,1,-9,1,1,0,3,8.219236525551475,8.518322587459345,6.382913827395099,2,0,-9,16,0,24,-132.079938003585,0,0,0,54,1,2,3,3,3,2019,2,2,10,0,30,36,15,1,0,3,0,13.59693601333986,13.59693601333986,0,0,0,0,0,0,0,1,1,0,7.297378120262326,6.725269358659278,0,0,47.13,48.65,6,1,0,0,10,3,1,988.6666666666666,0,0,0 +12534,15378,27953,27952,-9,-9,2,1,0,54,1,0,1,0,1,-9,8,3,1,2,0,0,0,2,0,-9,16,0,-24,-8.597085678289853,0,0,0,78,1,3,1,3,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,42.31,5,1,0,1,10,3,1,988.6666666666666,0,0,0 +12534,15378,27954,-9,27953,27952,3,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1021.735540382573,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,10,3,1,988.6666666666666,0,0,0 +12535,15379,27955,-9,27958,27957,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.655360720099,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,933.25,0,0,0 +12535,15379,27956,-9,27958,27957,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-992.5901714872113,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,7,2,0,933.25,0,0,0 +12535,15379,27957,27958,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,4,7.416157503336501,7.461901711388153,0,2,0,-9,9,0,8,-83.11105684195532,0,0,0,30,2,3,1,-9,-9,2019,1,2,6,0,27,30,15,1,0,1,0,5.91803552562655,5.91803552562655,0,0,0,0,0,0,0,1,1,0,0,0,9.081079673135797,3,57.73,54.53,6,1,0,0,7,2,0,933.25,0,0,0 +12535,15379,27958,27957,-9,-9,2,1,0,30,1,0,2,0,2,-9,2,1,0,3,6.196955731290642,6.572269985672026,0,2,0,-9,9,0,-8,-110.3333034129746,0,0,1,38,2,4,1,-9,-9,2019,1,1,11,1,8,6,15,1,1,1,0,8.643423479735217,8.643423479735217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,51.23,5,1,0,0,7,2,0,933.25,0,0,0 +12536,15380,27959,27960,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,2,9.401900882079037,9.255975876294311,0,1,0,-9,4,0,-1,78.02513862552303,0,0,1,33,1,4,1,2,2,2019,1,2,16,4,45,40,15,1,4,1,0,20.13746924336706,20.13746924336706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.98,51.26,4,1,0,1,9,5,1,583.5,0,0,0 +12536,15380,27960,27959,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,4,8.119527057257722,7.87243911981594,0,1,0,-9,4,0,1,-25.33743844086668,0,0,0,32,1,2,1,2,2,2019,1,1,8,1,38,35,15,1,1,1,0,11.0921651543616,11.0921651543616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,583.5,0,0,0 +12537,15381,27961,27962,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,2,0,7.58942328512241,7.522141501652658,1,0,-9,4,0,6,1.134826008812187,0,0,0,61,3,4,1,3,1,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.425368007267921,7.795262351580784,0,0,66.51000000000001,27.83,2,1,0,0,5,4,1,857.5,0,0,0 +12537,15381,27962,27961,-9,-9,2,1,0,61,1,0,0,0,3,-9,2,1,0,4,8.390073769729145,7.946347066929713,0,1,0,-9,4,0,-6,12.54666614324798,0,0,0,67,1,2,3,-9,-9,2019,2,1,6,0,32,30,15,1,0,4,0,10.3938210583983,10.3938210583983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,6,1,0,0,5,4,1,857.5,0,0,0 +12538,15382,27963,-9,27965,27964,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.835185251407,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,355.4,0,0,0 +12538,15382,27964,27965,-9,-9,2,1,1,37,1,0,3,0,1,-9,2,1,0,4,8.161861181105651,8.355982491471238,0,2,0,-9,9,0,-3,-76.99688190141717,0,0,0,40,2,3,3,-9,-9,2019,2,1,9,0,45,45,15,1,0,3,0,10.88131786658023,10.88131786658023,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.47,53.17,6,1,0,0,11,3,0,355.4,0,0,0 +12538,15382,27965,27964,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,9,0,3,65.98560930647989,0,0,1,37,1,4,1,2,3,2019,3,2,9,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,50.54,7,1,0,0,11,3,0,355.4,0,0,0 +12538,15382,27966,-9,27965,27964,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.256958886206,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,0,355.4,0,0,0 +12538,15382,27967,-9,27965,27964,3,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-933.0594068825407,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,3,0,355.4,0,0,0 +12539,15383,27968,-9,27971,27970,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.255224876402,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,5,2,0,360.4,0,0,0 +12539,15383,27969,-9,27971,27970,3,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1065.103722393516,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,5,2,0,360.4,0,0,0 +12539,15383,27970,27971,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,5,7.738366183330567,7.674484107934515,0,2,0,-9,9,0,4,27.19033803866914,0,0,0,38,2,3,3,3,3,2019,2,1,8,0,40,48,15,1,0,3,0,8.557467264427819,8.557467264427819,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,4,3,0,0,5,2,0,360.4,0,0,0 +12539,15383,27971,27970,-9,-9,1,1,0,38,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,13,0,-4,93.32506148817009,0,0,1,42,2,5,1,3,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,44.59,4,3,0,1,5,2,0,360.4,0,0,0 +12539,15383,27972,-9,27971,27970,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.9883579875055,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,5,2,0,360.4,0,0,0 +12540,15384,27973,-9,-9,-9,1,1,1,45,3,0,0,0,1,-9,2,1,0,3,8.984081646599499,9.252488956487866,0,3,0,0,0,-9,0,-928.6803713839457,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,45,45,15,1,0,-9,0,21.69829513396378,21.69829513396378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,43.52,4,1,0,0,7,5,1,144,0,0,0 +12541,15385,27974,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1055.42505671263,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,2,0,0,15,4,2,-9,0,0,0,1,0,0,25.7796147302422,0,0,0,1,1,0,0,0,0,0,23.4,23.46,1,1,0,1,1,1,1,520,0,0,0 +12541,15386,27975,-9,27974,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,4,7.971346875020534,8.126748674671417,0,3,0,0,0,-9,0,-837.1032953443615,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,2,42,42,15,1,2,-9,1,6.1820944092552,6.1820944092552,0,0,0,0,0,0,0,1,1,0,0,0,21.35839267691336,3,49.46,56.91,3,1,0,0,1,4,1,704,0,0,0 +12542,15387,27976,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,5,8.941740559484067,9.287347885614313,0,3,0,-9,0,-9,0,-1081.783239196643,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,1,0,-9,0,24.77754602456945,24.77754602456945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,8,5,1,574,0,0,0 +12543,15388,27977,27978,-9,-9,2,1,0,45,1,0,0,0,2,-9,1,1,0,4,8.040137326564823,8.203619838970329,0,1,0,-9,8,0,-8,109.300262856229,0,0,0,53,2,5,1,2,2,2019,1,1,19,7,45,48,15,1,7,1,0,7.194573285076858,7.194573285076858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.89,52.49,6,1,0,0,11,4,1,798.5,0,0,0 +12543,15388,27978,27977,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,5,8.31111689951263,7.990050308751806,0,1,0,-9,8,0,8,-121.7700362624832,0,0,0,45,2,4,1,2,2,2019,1,2,10,0,6,8,15,1,0,1,0,64.84772435399283,64.84772435399283,0,0,0,0,0,0,0,0,0,0,7.845958006925176,0,0,0,54.1,59.11,6,1,0,0,11,4,1,798.5,0,0,0 +12544,15389,27979,27980,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,2,7.89450277479999,7.71300520265476,0,2,0,-9,6,0,-1,-28.25426794429587,0,0,0,55,1,5,1,2,1,2019,1,1,18,6,30,35,15,1,6,1,0,10.54299614629016,10.54299614629016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.82,25.25,6,1,0,0,5,5,1,1370,0,0,0 +12544,15389,27980,27979,-9,-9,1,1,1,55,1,0,1,0,1,-9,2,1,0,5,8.900366468235237,9.10762300268356,7.251085680099377,2,0,-9,6,0,1,101.5123265674401,0,0,0,54,2,2,1,1,2,2019,1,2,11,0,55,50,15,1,0,1,0,14.18047226726381,14.18047226726381,0,0,0,0,0,0,0,0,0,0,7.770317611833067,0,0,0,54.1,59.11,6,1,0,0,5,5,1,1370,0,0,0 +12544,15390,27981,-9,27979,27980,3,1,1,22,2,0,1,0,2,-9,7,2,0,4,7.649077150067052,7.529715792636915,0,3,0,0,0,-9,0,-931.8652770763209,1,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,20,20,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,5,3,1,111,0,0,0 +12544,15391,27982,-9,27979,27980,4,1,1,18,2,0,1,1,2,0,7,2,0,5,7.093124163726643,7.455285294919014,0,3,0,0,0,-9,0,-914.8096543713754,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,30,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,7,1,0,0,5,5,1,124,0,0,0 +12545,15392,27983,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,3,8.387746861927774,8.222111284579986,5.769917630409281,3,0,0,0,-9,0,-1059.537883509778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,30,30,15,1,0,-9,0,10.6864383488896,10.6864383488896,0,0,0,0,0,0,0,0,0,0,0,6.027141193183023,0,0,66.14,26.06,7,1,0,0,2,4,0,689,0,0,0 +12546,15393,27984,27985,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,5.146483627507781,4.500120894008635,1,0,-9,53,0,0,104.3040813028324,0,0,0,70,3,1,3,2,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.785345599752849,5.086952336406006,126.1148827283424,1,45.06,41.56,6,1,0,0,2,2,1,453,0,0,0 +12546,15393,27985,27984,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,1,0,6.387021092693473,6.505464816917134,1,0,-9,53,0,0,-42.88126435407753,0,0,0,70,2,3,3,-9,-9,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,129.6624864142475,0,0,0,0,1,1,0,5.931267650536816,6.566963525737635,0,0,35.52,27.44,2,1,0,0,2,2,1,453,0,0,0 +12546,15394,27986,-9,27984,27985,3,1,0,48,3,0,0,0,2,-9,2,1,0,4,8.287000452606804,8.595352793041179,5.373806490719232,3,0,0,0,-9,0,-1034.589192036823,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,38,15,1,0,-9,1,15.51911799886377,15.51911799886377,0,0,0,0,0,0,0,1,1,0,7.41901080563816,5.499589759959455,0,3,57.16,56.15,6,1,0,0,2,4,1,250,0,0,0 +12547,15395,27987,27989,-9,-9,2,1,1,53,1,0,2,0,3,-9,8,3,1,3,0,0,0,2,0,-9,7,0,14,128.288346663691,0,0,0,39,2,5,1,-9,3,2019,3,1,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.87,44.35,5,1,0,0,12,2,0,903,0,0,0 +12547,15395,27988,-9,27989,27987,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-904.9921065371082,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,12,2,0,903,0,0,0 +12547,15395,27989,27987,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,5,7.029528496536935,7.165708653506809,0,2,0,-9,7,0,-14,1.308275152782685,0,0,1,53,3,3,3,2,2,2019,2,2,5,0,29,25,15,1,0,3,0,4.318538702622878,4.318538702622878,0,0,0,0,0,0,0,1,1,0,0,0,120.5710241791221,1,57.31,56.49,6,1,0,0,12,2,0,903,0,0,0 +12547,15395,27990,-9,27989,27987,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-876.4165274737859,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,903,0,0,0 +12548,15396,27991,27993,-9,-9,1,1,1,59,1,0,1,0,2,-9,8,3,1,1,0,5.590098336962933,5.553545276500876,2,0,-9,31,0,5,-67.47863017788498,0,0,0,54,2,4,3,3,3,2019,4,2,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.64211592037521,5.466253015624846,0,0,40.72,26.18,3,1,0,0,4,2,1,523,0,0,0 +12548,15396,27992,-9,27993,27991,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.601939179051,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,1,523,0,0,0 +12548,15396,27993,27991,-9,-9,2,1,0,54,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,31,0,-5,78.14535327349519,0,0,0,59,2,1,3,2,2,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.72485449712595,1,46.48,58.28,4,1,0,0,4,2,1,523,0,0,0 +12549,15397,27994,27995,-9,-9,1,1,0,55,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,32,0,-2,211.7231474416722,0,0,0,57,1,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,12,2,1,1109.5,0,0,0 +12549,15397,27995,27994,-9,-9,2,1,1,57,1,0,0,0,1,-9,4,3,0,3,0,7.386079399305265,7.442640367872225,1,0,-9,32,0,2,93.57899836878659,0,0,0,55,3,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.405105721639318,7.373407810120417,0,0,57.33,53.46,7,1,0,0,12,2,1,1109.5,0,0,0 +12549,15398,27996,-9,27994,27995,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,8.460991461903493,8.3713098818339,0,3,0,0,0,-9,0,-947.4653861803752,0,1,1,-9,-9,-9,-9,3,1,2019,-9,0,13,3,42,37,15,1,3,-9,1,11.33131429452736,11.33131429452736,0,0,0,0,0,0,0,0,0,0,.714790347559104,0,0,0,43.06,59.91,5,1,0,0,12,4,1,1922,0,0,0 +12549,15399,27997,-9,27994,27995,4,1,1,21,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1012.815906111527,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,15,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,6,1,0,0,12,1,1,461,0,0,0 +12549,15400,27998,-9,27994,27995,5,1,1,18,2,0,0,0,2,1,2,1,0,5,7.280590569662628,7.353947580798991,0,3,0,0,0,-9,0,-979.2111465334843,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,6,0,20,0,15,1,0,-9,1,9.396481534801801,9.396481534801801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,7,1,0,0,12,3,1,568,0,0,0 +12550,15401,27999,28000,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,5.465625438790801,5.658718855887621,1,0,-9,49,0,6,-75.88600813248031,0,0,0,69,2,4,3,2,2,2019,4,1,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.291254282886468,5.910106029668265,0,0,54.9,54.53,4,1,0,0,5,2,1,846,0,0,0 +12550,15401,28000,27999,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,5.075551623263889,4.716863869356426,1,0,-9,49,0,-6,54.12003099434071,0,0,0,75,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.179064294865594,4.714719554929313,0,0,51.14,47.87,6,1,0,0,5,2,1,846,0,0,0 +12551,15402,28001,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,1,1,0,4,8.205456223396652,8.018456439093995,0,1,0,-9,5,0,-6,34.34086855838459,0,0,1,-9,-9,-9,-9,1,2,2019,1,2,7,0,45,45,15,1,0,-9,0,9.676873227934772,9.676873227934772,0,0,0,0,0,0,0,0,0,0,6.860288678180335,0,0,0,57.98,47.73,6,1,0,0,2,5,1,948,0,0,0 +12551,15403,28002,-9,-9,-9,2,1,0,50,2,0,0,0,2,-9,2,1,0,4,8.517691786807106,8.30744428426779,0,1,0,-9,5,0,6,39.01099298021342,0,0,0,-9,-9,-9,-9,3,2,2019,1,1,5,0,35,35,15,1,0,-9,0,21.26240207188006,21.26240207188006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,51.28,7,1,0,0,2,5,1,642,0,0,0 +12552,15404,28003,28004,-9,-9,2,1,0,73,1,0,1,0,2,-9,4,3,0,3,0,0,0,2,0,-9,56,0,-4,0,0,0,0,77,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,17.76571567669234,15.83284927236682,6.441405977749687,0,0,1,1,0,0,0,0,0,51,46,5,3,0,0,8,1,1,396.5,0,0,0 +12552,15404,28004,28003,-9,-9,1,1,1,77,1,0,1,0,1,-9,4,3,0,3,0,0,0,2,0,-9,56,0,4,0,0,0,0,73,2,3,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.566570946158024,0,31.31527739547279,1,47.5,37.66,6,3,0,0,8,1,1,396.5,0,0,0 +12552,15405,28005,28007,28003,28004,3,1,1,51,1,0,1,0,1,-9,2,1,0,1,8.173734281798327,8.286190388865268,0,2,0,-9,9,0,4,121.2603157995092,0,0,0,47,1,4,1,3,2,2019,1,4,31,12,38,45,15,1,12,1,0,12.31816544974831,12.31816544974831,0,0,0,0,0,0,0,1,1,0,2.769236798374052,0,0,0,31.4,48.1,1,3,0,1,8,4,1,820.6666666666666,0,0,0 +12552,15405,28006,-9,28007,28005,5,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.220887598449,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.12,46.01,5,3,0,0,8,4,1,820.6666666666666,0,0,0 +12552,15405,28007,28005,-9,-9,4,1,0,47,1,0,1,0,1,-9,2,1,0,4,7.396655002940926,7.546348649479403,0,2,0,-9,9,0,-4,4.117753809701101,0,0,0,51,1,1,1,-9,-9,2019,1,3,12,1,14,0,15,1,1,1,0,13.9450792357545,13.9450792357545,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.2,47.47,5,3,0,0,8,4,1,820.6666666666666,0,0,0 +12553,15406,28008,28009,-9,-9,2,1,1,60,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,7,0,-6,0,0,0,0,66,3,1,3,3,2,2019,4,1,7,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.46128785516652,1,58.67,47.8,6,1,1,0,13,1,1,403.5,0,0,0 +12553,15406,28009,28008,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,6,0,0,0,0,60,3,2,3,3,3,2019,4,2,19,5,0,0,15,4,5,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,47.67,28.4,4,1,0,1,13,1,1,403.5,0,0,0 +12554,15407,28010,-9,-9,-9,1,1,1,57,3,0,0,0,3,-9,2,1,0,5,6.988139258608125,6.75131226228851,0,3,0,0,0,-9,0,-914.1820735043401,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,27,25,15,1,0,-9,0,4.972628716829909,4.972628716829909,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,4,0,0,6,2,0,980,0,0,0 +12555,15408,28011,-9,-9,-9,1,1,0,84,2,0,0,0,3,-9,4,3,0,4,0,7.533925979228381,7.186477744688717,3,0,0,0,-9,0,-875.4379058035519,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.525899508433993,0,0,60.46,40.89,7,1,0,0,12,3,1,889,0,0,0 +12556,15409,28012,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,1,7.946686221418324,8.235778775921846,6.280464312599938,3,0,0,0,-9,0,-1047.192275063523,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,29,26,15,1,12,-9,0,11.96438020130958,11.96438020130958,0,0,0,0,0,0,0,1,1,0,7.141268202409954,0,0,0,31.65,37.1,2,3,0,1,8,4,1,93,0,0,0 +12557,15410,28013,-9,-9,-9,2,1,0,41,3,0,1,0,2,-9,2,1,0,4,8.040824576142493,8.235435625907973,0,4,0,-9,0,1,0,-1078.067861026401,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,29,9,37,37,15,1,9,-9,0,12.41361871601948,12.41361871601948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,63.03,5,1,0,0,12,3,0,620,0,0,0 +12558,15411,28014,28015,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,5,0,-3,7.419058950556951,0,0,0,68,2,4,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,56.11,12.43,6,1,0,0,2,3,0,2527.5,0,0,0 +12558,15411,28015,28014,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.750064336238355,8.122852127623432,1,0,-9,5,0,3,23.95626466349507,0,0,0,65,2,1,3,-9,-9,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.09020673876314,20.95714342271854,1,60.12,54.8,7,1,0,0,2,3,0,2527.5,0,0,0 +12559,15412,28016,28017,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,8.109620490376969,7.459104556737398,1,0,-9,24,0,-2,-90.37378672703065,0,0,0,68,1,3,3,-9,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.723598943196903,7.648307794249691,0,0,57.16,56.15,6,1,0,0,9,4,1,734.5,0,0,0 +12559,15412,28017,28016,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,8.479512865541894,8.222855294886681,1,0,-9,23,0,2,187.9803284823083,0,0,0,66,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.191456993032258,8.396142683627327,0,0,58.32,50.22,6,1,0,0,9,4,1,734.5,0,0,0 +12560,15413,28018,-9,28020,28019,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.2291020013313,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,3,0,787.3333333333334,0,0,0 +12560,15413,28019,28020,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,3,8.290000578548023,8.193545493254184,0,2,0,-9,10,0,3,-166.9250678942378,0,0,0,30,2,3,1,2,2,2019,1,1,12,0,68,60,15,1,0,1,0,5.842770584874548,5.842770584874548,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.51,42.98,4,1,0,1,10,3,0,787.3333333333334,0,0,0 +12560,15413,28020,28019,-9,-9,1,1,0,30,1,0,1,0,2,-9,2,1,0,3,5.573828883525818,5.696749452599896,0,2,0,-9,10,0,-3,112.9323646517564,0,0,1,33,2,3,1,2,2,2019,1,2,24,9,4,0,15,1,9,1,0,7.252123655332606,7.252123655332606,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.4,62.08,3,1,0,0,10,3,0,787.3333333333334,0,0,0 +12561,15414,28021,28022,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,2,0,6.490049991799354,6.494515712258707,1,0,-9,66,0,-1,-47.35867999508784,0,0,0,86,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.618380853838654,6.485026803912993,0,0,45.73,39.34,4,1,0,0,2,2,1,743.5,0,0,0 +12561,15414,28022,28021,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,4,0,6.394753245943139,6.356050793717707,1,0,-9,66,0,1,-55.24550144656479,0,0,0,85,2,2,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,5.16694659677518,0,0,1,1,0,5.209622918187805,6.151747359278041,0,0,48.94,30.52,4,1,0,0,2,2,1,743.5,0,0,0 +12561,15415,28023,-9,28022,28021,3,1,1,54,2,0,0,0,1,-9,2,1,0,3,7.897274155233831,7.698224170043686,0,3,0,0,0,-9,0,-1134.552655543365,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,47,40,15,1,0,-9,1,7.46311780185741,7.46311780185741,0,0,0,0,0,0,0,1,1,0,1.250440569268226,0,0,3,52.15,48.98,3,1,0,0,2,4,1,3680,0,0,0 +12562,15416,28024,28025,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.57273392953412,8.126315103443481,7.562115670138296,1,0,-9,34,0,3,-24.23116241118233,0,0,0,54,1,4,1,3,3,2019,1,1,11,1,22,23,15,1,1,1,0,13.73663814605712,13.73663814605712,0,0,0,0,0,0,0,0,0,0,0,7.642434067020562,0,0,52,54.51,6,1,0,0,10,5,1,1191,0,0,0 +12562,15416,28025,28024,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,8.933375987195886,9.246961568212164,0,1,0,-9,36,0,-3,-32.51190865022168,0,0,0,57,2,3,1,2,1,2019,1,2,4,0,47,45,15,1,0,1,0,28.56931784828987,28.56931784828987,0,0,0,0,0,0,0,0,0,0,0,0,5.283600108144318,3,60.12,54.8,6,1,0,0,10,5,1,1191,0,0,0 +12562,15417,28026,-9,28024,28025,3,1,0,26,2,0,0,0,2,-9,3,3,0,4,4.951303465616673,5.167955883725881,0,3,0,0,0,-9,0,-996.2141044390324,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,37,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,1,1,0,10,2,1,385,0,0,0 +12563,15418,28027,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,5.137803939509209,5.396741538973655,3,0,0,0,-9,0,-998.3100451816219,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.39161688735652,5.048780333159071,0,0,55.19,54.26,6,1,0,0,1,2,1,399,0,0,0 +12564,15419,28028,-9,28029,28030,4,1,0,17,2,0,0,1,2,0,7,2,0,5,4.824652513539117,5.043126837163604,0,1,0,0,0,-9,0,-1090.489676346361,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,13,1,2,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.56,65.15000000000001,6,1,0,0,6,4,1,360.3333333333333,0,0,0 +12564,15419,28029,28030,-9,-9,1,1,0,48,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,26,0,-2,.5899311613022835,0,0,0,50,1,3,1,2,2,2019,3,2,26,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.710747022022701,0,.0640804993108692,3,26.42,49.89,3,1,0,1,6,4,1,360.3333333333333,0,0,0 +12564,15419,28030,28029,-9,-9,2,1,1,50,1,0,0,0,1,-9,2,1,0,3,8.729254690473583,9.194355162692393,0,1,0,-9,25,0,2,126.6403956563791,0,0,0,48,2,3,3,2,2,2019,2,1,22,8,45,85,15,1,8,3,0,19.10527337221571,19.10527337221571,0,0,0,0,0,0,0,1,1,0,3.411277042243104,0,0,0,27.86,56.01,2,1,0,1,6,4,1,360.3333333333333,0,0,0 +12565,15420,28031,28032,-9,-9,2,1,1,51,1,0,0,0,2,-9,4,3,0,4,0,7.543107172333882,7.654648119925946,1,0,-9,24,0,2,97.28660231593319,-9,0,0,49,3,1,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.107348526967567,7.628118640140359,0,1,53,54,6,1,0,0,11,2,1,291.5,0,0,0 +12565,15420,28032,28031,-9,-9,1,1,0,49,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,24,0,-2,-40.23441423432415,0,0,0,51,2,4,3,-9,-9,2019,4,2,15,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.57363096017084,0,0,0,54.99,12.75,6,1,0,0,11,2,1,291.5,0,0,0 +12566,15421,28033,28034,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.283766502828919,7.470117269661814,1,0,-9,9,0,6,-47.34915240518893,-9,0,0,65,2,3,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.321239377132448,7.364885676508805,0,0,38.07,48.83,6,1,0,0,4,3,1,882,0,0,0 +12566,15421,28034,28033,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,6.476451632135328,6.231271032787092,1,0,-9,9,0,-6,-60.40246800074367,-9,0,0,71,2,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.745489493780544,6.39159593664203,13.98588681432671,3,50.53,50.08,7,1,0,0,4,3,1,882,0,0,0 +12567,15422,28035,-9,28036,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,4,8.21254595760937,8.204225590320727,0,3,0,0,0,-9,0,-902.6435578050061,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,47,42,15,1,0,-9,1,9.287647967312063,9.287647967312063,0,0,0,0,0,0,0,1,1,0,4.175308649269308,0,2.783539824488442,3,58.15,52.91,6,1,0,0,6,4,1,1383,0,0,0 +12567,15423,28036,-9,-9,-9,2,1,0,59,3,0,0,0,2,-9,8,3,1,2,0,6.531213518126818,6.505416240215982,3,0,0,0,-9,0,-1074.443143644711,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.627210216759919,0,0,54.98,16.88,3,1,0,0,6,2,1,326,0,0,0 +12568,15424,28037,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.232793293214101,8.153434550586176,0,3,0,0,0,-9,0,-1057.944121727518,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,39,40,15,1,2,-9,0,13.04235286780841,13.04235286780841,0,0,0,0,0,0,0,0,0,0,2.075102708960297,0,0,0,57.16,56.15,4,1,0,0,13,4,1,1397,0,0,0 +12569,15425,28038,-9,28040,28039,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.27253688559,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,5,1,2005.666666666667,0,0,0 +12569,15425,28039,28040,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,4,8.737272489089099,8.602261559441194,0,2,0,-9,19,0,0,-80.85781344146309,0,0,0,43,1,4,1,3,2,2019,1,2,7,0,47,48,15,1,0,1,0,15.88075407284752,15.88075407284752,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,2005.666666666667,0,0,0 +12569,15425,28040,28039,-9,-9,2,1,0,43,1,0,1,0,1,-9,2,1,0,4,8.707735754385018,8.693652594736049,0,2,0,-9,19,0,0,68.97139206922412,0,0,1,43,1,4,1,2,2,2019,1,1,12,1,40,35,15,1,1,1,0,23.60717579841947,23.60717579841947,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,12,5,1,2005.666666666667,0,0,0 +12570,15426,28041,-9,28043,-9,2,1,1,5,2,2,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-923.4901450618248,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,5,1,0,437.25,0,0,0 +12570,15426,28042,-9,28043,-9,4,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1136.446570346182,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,5,1,0,437.25,0,0,0 +12570,15426,28043,-9,-9,-9,1,1,0,28,2,2,3,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1016.442675159723,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.98,57.51,4,1,0,0,5,1,0,437.25,0,0,0 +12570,15426,28044,-9,28043,-9,3,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1083.267248960397,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,5,1,0,437.25,0,0,0 +12571,15427,28045,-9,28046,28047,4,1,1,16,2,0,0,0,2,-9,2,2,0,3,7.161903427764576,7.304766891653914,0,1,0,0,0,-9,0,-1015.205841386935,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,1,1,0,0,12,2,1,695.6666666666666,0,0,0 +12571,15427,28046,28047,-9,-9,2,1,0,47,1,0,0,0,2,-9,1,1,0,5,6.58444846048693,6.772139273769604,0,1,0,-9,7,0,8,46.15647736839592,0,0,0,39,2,3,1,3,-9,2019,1,1,10,0,40,45,15,1,0,1,0,2.246420980913133,2.246420980913133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,7,1,0,0,12,2,1,695.6666666666666,0,0,0 +12571,15427,28047,28046,-9,-9,1,1,1,39,1,0,0,0,2,-9,1,1,0,3,6.638192964923509,6.871710046951048,0,1,0,-9,7,0,-8,100.10394063789,0,0,0,47,2,5,1,3,2,2019,1,2,9,0,70,80,15,1,0,1,0,1.008497214505931,1.008497214505931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,12,2,1,695.6666666666666,0,0,0 +12571,15428,28048,-9,28046,28047,3,1,1,18,2,0,0,0,2,-9,1,1,0,3,7.605180942878019,7.082721628702886,0,3,0,0,0,-9,0,-1085.993260992909,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,50,0,15,1,1,-9,1,4.102941452240376,4.102941452240376,0,0,0,0,0,0,0,0,0,0,3.574897798032851,0,0,0,60.06,34.28,6,1,0,0,12,3,1,1107,0,0,0 +12572,15429,28049,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,1,1,0,4,6.765387027984207,6.488965435517168,0,3,0,-9,0,-9,0,-969.9785860281432,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,3,25,0,15,1,3,-9,0,3.681057255092059,3.681057255092059,0,0,0,0,0,0,0,0,0,0,4.631259178190319,0,0,0,54.79,55.86,6,1,0,0,6,2,0,1192,0,0,0 +12573,15430,28050,28051,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,59,0,1,0,0,0,0,76,3,4,3,3,3,2019,4,1,30,10,0,0,15,4,10,4,0,0,0,1,0,74.75533805412617,0,0,0,0,1,1,0,0,0,0,0,11.1,37.21,2,1,0,0,6,1,1,675.5,0,0,0 +12573,15430,28051,28050,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,59,0,-1,0,0,0,0,77,3,1,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.249911658587468,0,76.60951462354912,1,43.18,55.57,3,1,0,0,6,1,1,675.5,0,0,0 +12574,15431,28052,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,1,0,7.762391660173211,7.60005563052194,3,0,0,0,-9,0,-1036.320595174193,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.713358784147498,10.92835314326307,3,55.64,14.41,5,1,0,0,7,3,1,292,0,0,0 +12575,15432,28053,28054,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.279637493212345,7.386413044077989,1,0,-9,8,0,1,-133.6849524016163,0,0,0,76,2,3,3,2,2,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.550049334144189,7.544246716131074,0,0,46.26,42.16,4,1,0,0,12,3,1,1293,0,0,0 +12575,15432,28054,28053,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,7.41361688279079,7.251239494181378,1,0,-9,8,0,-1,46.41052277672769,0,0,0,77,1,3,3,1,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.547351130290991,7.265097440788082,0,0,46.84,55.68,6,1,0,0,12,3,1,1293,0,0,0 +12576,15433,28055,-9,-9,-9,1,1,0,89,2,0,0,0,1,-9,4,3,0,3,0,7.748437877840222,7.579538034801447,3,0,0,0,-9,0,-1083.528729115612,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,1.971520496663288,0,0,0,0,68.80319965085074,1,1,0,5.535270726389323,7.783943650694758,0,0,57.75,22.36,7,1,0,0,9,3,1,1112,0,0,0 +12577,15434,28056,28057,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,11,0,0,25.63674683157965,0,0,0,58,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.91965624352923,3,57.16,56.15,6,1,0,0,4,3,1,346.5,0,0,0 +12577,15434,28057,28056,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,3,0,8.228740216867797,8.020926063248833,1,0,-9,33,0,0,-29.61231425922141,0,0,0,58,2,4,3,3,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.107348246365528,8.082832402068265,16.28488279794274,3,50.87,43.99,6,1,0,0,4,3,1,346.5,0,0,0 +12578,15435,28058,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,1,1,0,3,0,6.457666871892753,6.721564249076286,3,0,0,0,-9,0,-1003.408023528623,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,30,0,15,1,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.516465263202018,6.38919714820946,0,0,48.93,39.82,5,1,0,1,11,2,1,490,0,0,0 +12579,15436,28059,-9,28061,28062,1,1,1,20,2,0,2,0,2,1,2,1,0,3,6.356979651269045,6.402103490280592,0,3,0,0,0,-9,0,-998.8936357884174,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,17,4,0,0,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2517622004485862,0,0,0,49.58,55.59,3,1,0,0,11,2,1,896,0,0,0 +12579,15437,28060,-9,28061,28062,5,1,1,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-951.9193846938583,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,11,5,1,1081,0,0,0 +12579,15438,28061,28062,-9,-9,2,1,0,39,1,0,2,0,2,-9,1,1,0,3,9.501789864949714,9.895590890080006,0,2,0,-9,5,0,-16,-26.06646270933692,0,0,1,55,2,4,3,-9,-9,2019,2,3,7,0,55,40,15,1,0,4,0,28.33242817513755,28.33242817513755,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.56,36.87,6,1,0,0,11,5,1,1693.333333333333,0,0,0 +12579,15438,28062,28061,-9,-9,3,1,1,55,1,0,2,0,2,-9,4,3,0,4,0,8.140484103788181,8.244542029911914,2,0,-9,5,0,16,-44.47102523473538,0,0,0,39,2,3,1,-9,-9,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.066893917398091,7.894987679093882,0,0,55.19,54.26,5,1,0,0,11,5,1,1693.333333333333,0,0,0 +12579,15438,28063,-9,28061,28062,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.727820879999,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,5,1,1693.333333333333,0,0,0 +12580,15439,28064,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,4,3,0,4,0,5.700983890666528,5.73365924502519,3,0,0,0,-9,0,-977.7041179090032,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.447281757312542,5.906924912683971,0,0,57.16,56.15,6,1,0,0,6,2,1,90,0,0,0 +12581,15440,28065,28066,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,4,7.157683328200116,7.315275913178382,0,1,0,-9,8,0,-2,33.22000903488402,0,0,0,57,2,4,1,3,3,2019,1,1,6,0,32,25,15,1,0,1,0,4.669780817019866,4.669780817019866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,13,5,1,496.5,0,0,0 +12581,15440,28066,28065,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,9.121060351478127,8.905379912721633,0,1,0,-9,8,0,2,-22.95200783919221,0,0,0,55,3,4,1,3,3,2019,1,2,8,0,40,37,15,1,0,1,0,24.97163180726983,24.97163180726983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,13,5,1,496.5,0,0,0 +12582,15441,28067,28068,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,5.507773898899559,6.08505171480026,1,0,-9,2,0,-18,51.53510330533978,0,0,0,86,2,3,3,-9,-9,2019,4,1,25,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.344542997650158,5.899773088158997,111.1217079681519,1,39.14,38.93,3,1,0,0,12,2,1,251,0,0,0 +12582,15441,28068,28067,-9,-9,1,1,1,86,1,0,0,0,2,-9,4,3,0,3,0,7.463199716582915,6.879354078466696,1,0,-9,2,0,18,43.06192791825335,0,0,0,68,2,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,124.092313211845,0,0,0,0,1,1,0,0,7.338520144280455,0,0,55,45,6,1,0,0,12,2,1,251,0,0,0 +12583,15442,28069,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,6.581936202812748,6.683443468177173,0,3,0,0,0,-9,0,-1078.332400746711,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,24,20,15,1,0,-9,0,4.06710662478193,4.06710662478193,0,0,0,0,0,0,0,1,1,0,6.58891369514151,0,8.021978086370162,3,63.55,39.7,3,1,0,0,12,2,1,241,0,0,0 +12584,15443,28070,28071,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,6.364147249676583,6.250204379068324,1,0,-9,3,0,2,-4.525852950360053,0,0,0,75,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.425678324189006,6.320374186428805,64.08564229583611,1,52.4,47.71,6,1,0,0,4,2,1,812,0,0,0 +12584,15443,28071,28070,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,3,0,-2,-118.24586686777,0,0,0,77,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,88.12681528820522,0,0,0,0,1,1,0,0,0,0,0,51,46,6,1,0,0,4,2,1,812,0,0,0 +12585,15444,28072,-9,28074,28076,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.3208187773687,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,0,769.8,0,0,0 +12585,15444,28073,-9,28074,28076,3,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.668349163893,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,3,0,769.8,0,0,0 +12585,15444,28074,28076,-9,-9,1,1,0,29,1,1,3,0,3,-9,2,1,0,4,7.588415606767755,7.341184039979523,0,2,0,-9,7,0,-6,32.51404686923957,0,1,1,35,1,5,1,2,3,2019,1,2,12,0,27,0,15,1,0,1,0,8.032790016827722,8.032790016827722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.83,59.68,5,3,0,0,8,3,0,769.8,0,0,0 +12585,15444,28075,-9,28074,28076,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.429306241031,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,3,0,769.8,0,0,0 +12585,15444,28076,28074,-9,-9,2,1,1,35,1,1,3,0,1,-9,2,1,0,5,7.942915454435164,8.266674036781119,0,2,0,-9,3,0,6,-70.93303710451445,0,0,0,29,3,4,1,-9,-9,2019,1,1,12,2,41,39,15,1,2,1,0,8.749102430752888,8.749102430752888,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.61,55.43,5,3,0,1,8,3,0,769.8,0,0,0 +12586,15445,28077,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-980.8445407709485,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.54518020146376,3,59.42,31.95,6,1,0,0,4,1,1,622,0,0,0 +12586,15446,28078,-9,-9,-9,2,1,0,58,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1011.738654293883,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.15,19.97,2,1,0,1,4,1,1,365,0,0,0 +12587,15447,28079,-9,28080,28081,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.742606347149,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,519.25,0,0,0 +12587,15447,28080,28081,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,5,9.716564654762569,9.62890691918847,0,2,0,-9,6,0,-3,-113.9378029252352,0,0,0,49,2,5,1,-9,-9,2019,1,1,9,0,48,43,15,1,0,1,0,45.08267520282049,45.08267520282049,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.07,47.23,6,1,0,0,5,5,1,519.25,0,0,0 +12587,15447,28081,28080,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,5,8.825191744107226,8.764042243855901,0,2,0,-9,6,0,3,10.02445270466529,0,0,0,46,1,5,1,2,2,2019,1,2,12,0,42,41,15,1,0,1,0,19.56457661194889,19.56457661194889,0,0,0,0,0,0,0,1,1,0,6.821451007183523,0,0,0,55.8,54.25,6,1,0,0,5,5,1,519.25,0,0,0 +12587,15447,28082,-9,28080,28081,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.8919732398665,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,5,1,519.25,0,0,0 +12588,15448,28083,28084,-9,-9,2,1,0,62,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,9,0,-1,-55.2701095216456,0,0,0,63,3,3,1,-9,-9,2019,3,1,18,6,0,15,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,23.68,3,1,1,0,4,3,0,1408.5,0,0,0 +12588,15448,28084,28083,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,3,7.812576706242905,8.117931027281577,0,1,0,-9,9,0,1,67.11899230726756,0,0,0,62,2,1,3,3,3,2019,2,2,8,0,42,38,15,1,0,3,0,7.503987374665407,7.503987374665407,0,0,0,0,0,0,0,0,0,0,0,0,26.68189772702656,1,49.11,45,6,1,0,0,4,3,0,1408.5,0,0,0 +12589,15449,28085,28086,-9,-9,1,1,1,87,1,0,0,0,3,-9,4,3,0,1,0,6.353877768634759,6.458255441659905,1,0,-9,67,0,1,28.96360631437304,0,0,0,86,3,4,3,3,3,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.06212437745015,6.414155835569199,0,0,32.82,19.15,6,1,0,0,1,2,1,1005.5,0,0,0 +12589,15449,28086,28085,-9,-9,2,1,0,86,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,67,0,-1,52.39886238026413,0,0,0,87,3,1,3,3,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.38154351118624,0,0,0,52.73,44.5,6,1,0,0,1,2,1,1005.5,0,0,0 +12590,15450,28087,28088,-9,-9,2,1,1,45,1,0,2,0,1,-9,2,1,0,4,9.42513636026735,9.634785657195103,0,2,0,-9,8,0,-2,-63.16332902924441,0,0,0,47,1,5,1,-9,-9,2019,1,1,9,0,42,37,15,1,0,1,0,32.21435443357191,32.21435443357191,0,0,0,0,0,0,0,0,0,0,3.671015640739416,0,6.954432948590251,3,49.35,59.64,6,1,0,0,10,5,1,695.5,0,0,0 +12590,15450,28088,28087,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,5,8.25470326577736,8.28617968041217,0,2,0,-9,21,0,2,68.05147430070133,0,0,0,45,1,4,1,2,2,2019,1,2,7,0,24,24,15,1,0,1,0,18.99833813164362,18.99833813164362,0,0,0,0,0,0,0,0,0,0,7.853188317431419,0,0,0,49.36,58.53,6,1,0,0,10,5,1,695.5,0,0,0 +12590,15450,28089,-9,28088,28087,3,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-904.3690297424841,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,15,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.1530916993514872,0,0,0,33.83,57.61,6,1,0,0,10,5,1,695.5,0,0,0 +12590,15450,28090,-9,28088,28087,4,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1006.262329908156,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,5,1,0,0,10,5,1,695.5,0,0,0 +12591,15451,28091,-9,-9,-9,1,1,0,36,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-981.4719083105184,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.25,40.89,4,1,1,1,2,1,0,90,0,0,0 +12592,15452,28092,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,2,1,0,4,8.858145647908815,9.24549737030236,0,3,0,0,0,-9,0,-1028.714508433465,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,60,50,15,1,0,-9,0,16.24820297719911,16.24820297719911,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,6,1,0,0,12,5,0,70,0,0,0 +12593,15453,28093,28096,-9,-9,1,1,1,33,1,2,2,0,1,-9,2,1,0,3,8.87712478587175,8.661681970368619,0,2,0,-9,7,0,1,10.60436748634233,0,0,0,32,1,4,1,2,2,2019,1,2,8,1,40,40,15,1,1,1,0,25.52851649614823,25.52851649614823,0,0,0,0,0,0,0,1,1,0,3.750723874633182,0,0,0,52.25,53.24,7,1,0,0,12,5,1,525.5,0,0,0 +12593,15453,28094,-9,28096,28093,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1146.717765906423,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,5,1,525.5,0,0,0 +12593,15453,28095,-9,28096,28093,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.8696626633213,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,5,1,525.5,0,0,0 +12593,15453,28096,28093,-9,-9,2,1,0,32,1,2,2,0,1,-9,5,1,0,4,7.843926681276333,8.053981271632788,0,2,0,-9,7,0,-1,-51.01610387540136,0,0,1,33,1,3,1,-9,-9,2019,1,1,10,0,24,27,15,1,0,1,0,16.13201019220454,16.13201019220454,0,0,0,0,0,0,0,1,1,0,6.61544840238637,0,0,0,51.83,57.2,6,1,0,0,12,5,1,525.5,0,0,0 +12594,15454,28097,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,2.071755156389796,1.98044965335748,3,0,0,0,-9,0,-1113.451392584909,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,2.172664401971613,0,0,44.24,35.51,4,1,0,0,9,1,0,1272,0,0,0 +12594,15455,28098,-9,-9,-9,2,1,1,71,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1009.042654787145,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,35.65,6,1,0,0,9,1,0,289,0,0,0 +12595,15456,28099,28100,-9,-9,2,1,0,28,1,0,0,0,1,-9,1,1,0,5,8.770907010045663,8.563435074215519,0,1,0,-9,7,0,-13,-.0834701157213117,0,1,1,41,1,4,1,2,1,2019,1,1,6,0,40,40,15,1,0,1,0,21.231523070896,21.231523070896,0,0,0,0,0,0,0,0,0,0,2.631015842481224,0,0,0,60.02,56.42,7,3,0,0,8,5,0,1207,0,0,0 +12595,15456,28100,28099,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,4,9.087644382017452,9.088623992453513,0,1,0,-9,7,0,13,3.912785016802518,0,0,0,28,1,5,1,2,2,2019,1,2,9,0,50,50,15,1,0,1,0,20.26085238479202,20.26085238479202,0,0,0,0,0,0,0,0,0,0,7.365410622735832,0,0,0,52.77,55.33,5,1,0,0,8,5,0,1207,0,0,0 +12596,15457,28101,28102,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.748595720467566,8.718716329260831,0,1,0,-9,7,0,2,17.08163575666508,0,0,0,55,2,3,1,3,2,2019,1,2,8,0,40,40,15,1,0,1,0,15.97312424086441,15.97312424086441,0,0,0,0,0,0,0,0,0,0,7.750384452359734,0,0,0,57.33,53.46,6,1,0,0,5,5,1,112,0,0,0 +12596,15457,28102,28101,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.611480213838102,7.854164010524635,0,1,0,-9,7,0,-2,100.8340109295108,0,0,0,57,2,3,1,3,3,2019,1,1,10,0,20,14,15,1,0,1,0,13.56245024137324,13.56245024137324,0,0,0,0,0,0,0,0,0,0,2.348025511052878,0,0,0,47.72,49.51,5,1,0,0,5,5,1,112,0,0,0 +12596,15458,28103,-9,28102,28101,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.876087299284324,8.194437814957347,0,3,0,0,0,-9,0,-1028.919117041143,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,1,10.06380593679101,10.06380593679101,0,0,0,0,0,0,0,0,0,0,1.377072547044076,0,0,0,51.83,57.2,5,1,0,0,5,4,1,1180,0,0,0 +12596,15459,28104,-9,28102,28101,4,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.088049135258277,8.106065417493129,0,3,0,0,0,-9,0,-880.0314250506348,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,46,50,15,1,3,-9,1,8.987785434574876,8.987785434574876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,62.33,6,1,0,0,5,4,1,284,0,0,0 +12597,15460,28105,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,2,0,8.106058013873715,8.122644601656308,3,0,0,0,-9,0,-1071.015279565316,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,39,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.674561547560807,7.908034282444443,0,0,46.91,51.8,5,1,0,0,9,3,0,515,0,0,0 +12598,15461,28106,-9,-9,-9,1,1,0,58,2,0,0,0,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1070.760909258985,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.225292134497201,0,1.79483715661548,3,54.61,46.27,4,1,0,0,6,1,1,1952,0,0,0 +12599,15462,28107,28108,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,42,0,-5,108.3411502322232,0,0,0,68,1,4,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.495025119483419,0,0,0,46.92,60.71,6,1,0,0,9,5,1,1230.5,0,0,0 +12599,15462,28108,28107,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,9.091232376580047,8.98560303025201,0,1,0,-9,6,0,5,-79.05046931904721,0,0,0,63,2,4,3,-9,-9,2019,4,1,8,0,8,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,52,6,1,0,0,9,5,1,1230.5,0,0,0 +12600,15463,28109,28110,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.160072187547721,8.615507071577833,0,2,0,-9,6,0,0,111.5652529103146,0,0,0,45,3,4,1,3,2,2019,1,1,12,0,30,40,15,1,0,1,0,19.1522369099183,19.1522369099183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.25,52.33,4,1,0,0,13,4,1,771.6666666666666,0,0,0 +12600,15463,28110,28109,-9,-9,1,1,1,45,1,0,2,0,3,-9,2,1,0,4,8.691376542771321,8.452923684656412,0,2,0,-9,6,0,0,42.20250246511259,-9,0,0,45,2,4,1,3,-9,2019,1,2,9,0,48,0,15,1,1,1,0,11.71811935276497,11.71811935276497,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,13,4,1,771.6666666666666,0,0,0 +12600,15463,28111,-9,28109,28110,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.527433470848,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,4,1,771.6666666666666,0,0,0 +12601,15464,28112,28113,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,1,7.448106973527533,7.528996075512656,0,2,0,-9,11,0,-19,-31.94619092033378,0,0,1,50,2,5,1,2,-9,2019,1,1,19,8,42,37,15,1,8,1,0,7.943008104050849,7.943008104050849,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.22,18.54,1,3,0,1,6,4,1,1086,0,0,0 +12601,15464,28113,28112,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,5,7.983960500425542,8.010982970105147,0,2,0,-9,11,0,19,9.923928070722345,0,0,0,31,2,1,1,2,1,2019,1,2,2,0,60,48,15,1,0,1,0,5.926965591060723,5.926965591060723,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.79,52.89,6,3,0,0,6,4,1,1086,0,0,0 +12601,15464,28114,-9,28112,28113,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.144918819813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,4,1,1086,0,0,0 +12602,15465,28115,-9,-9,-9,1,1,0,39,3,0,3,0,3,-9,2,1,0,3,7.469589180390805,7.377568730051113,0,4,0,0,0,-9,0,-1025.875047631742,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,24,24,15,1,0,-9,0,5.954281935872691,5.954281935872691,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.02,40.03,5,4,0,0,10,2,0,691,0,0,0 +12602,15465,28116,-9,28115,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1072.247186236675,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,10,2,0,691,0,0,0 +12603,15466,28117,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,3,4.55174458988021,8.081443842037896,7.942589821499512,3,0,0,0,-9,0,-1067.215770833994,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.350576188771983,7.859100331933353,7.827836987600119,3,50.18,52.62,5,1,0,0,13,4,1,1292,0,0,0 +12604,15467,28118,28119,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,3,7.900733837352133,7.886771415685835,0,1,0,-9,19,0,6,-14.29995811433967,0,0,0,48,3,4,1,2,2,2019,1,1,12,0,85,0,15,1,2,1,0,3.605823936024322,3.605823936024322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,5,1,0,0,12,5,0,318,0,0,0 +12604,15467,28119,28118,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,4,8.701541232421848,9.0761220078852,0,1,0,-9,19,0,-6,140.023880331389,0,0,0,54,3,3,1,2,-9,2019,1,2,9,0,35,0,15,1,1,1,0,17.38565098308143,17.38565098308143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,12,5,0,318,0,0,0 +12605,15468,28120,28122,-9,-9,1,1,1,34,1,2,3,0,2,-9,2,1,0,3,8.307197761764861,7.905136226787477,0,2,0,-9,7,0,1,-52.2996636028244,0,0,0,33,2,3,3,2,3,2019,2,2,9,1,44,60,15,1,1,3,0,10.94137517100216,10.94137517100216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.92,51.88,5,1,0,0,7,3,1,507.8,0,0,0 +12605,15468,28121,-9,28122,28120,4,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1158.487600385867,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,1,507.8,0,0,0 +12605,15468,28122,28120,-9,-9,2,1,0,33,1,2,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-1,25.59009247064437,0,0,1,34,2,3,1,2,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,7,3,1,507.8,0,0,0 +12605,15468,28123,-9,28122,28120,3,1,1,5,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.59267089668,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,1,507.8,0,0,0 +12605,15468,28124,-9,28122,28120,5,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1068.033357731722,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,3,1,507.8,0,0,0 +12606,15469,28125,-9,28126,28127,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.774319280183,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,5,5,1,295.6666666666667,0,0,0 +12606,15469,28126,28127,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.985514838131291,8.255524186987353,0,2,0,-9,10,0,-11,-12.19939153357023,0,0,0,59,2,4,1,2,2,2019,1,1,6,0,45,37,15,1,0,1,0,8.820214838265727,8.820214838265727,0,0,0,0,0,0,0,1,1,0,7.953629968753885,0,0,0,58.15,52.91,6,1,0,0,5,5,1,295.6666666666667,0,0,0 +12606,15469,28127,28126,-9,-9,1,1,1,59,1,0,1,0,2,-9,1,1,0,4,8.945517823079289,8.524004976286342,0,2,0,-9,10,0,11,12.32436959363609,0,0,0,48,2,4,1,3,3,2019,1,2,6,0,15,15,15,1,0,1,0,53.00951813084576,53.00951813084576,0,0,0,0,0,0,0,1,1,0,7.492949572649449,0,0,0,54.01,53.44,5,1,0,0,5,5,1,295.6666666666667,0,0,0 +12607,15470,28128,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,2,1,0,4,8.65968673629143,8.919091982548284,0,3,0,0,0,-9,0,-971.3028784452101,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,40,15,1,3,-9,0,18.89755978196659,18.89755978196659,0,0,0,0,0,0,0,1,1,0,0,0,72.43045500007111,3,46.98,53.82,6,1,0,0,11,5,1,692,0,0,0 +12607,15471,28129,-9,-9,-9,2,1,0,51,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-973.5638025805965,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,20.63,5,1,0,0,11,1,1,1200,0,0,0 +12608,15472,28130,28131,-9,-9,2,1,0,23,1,1,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,2,0,0,60.22702388147877,0,1,1,32,1,3,1,-9,-9,2019,3,1,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,48.41,6,3,0,0,10,3,1,1505.333333333333,0,0,0 +12608,15472,28131,28130,-9,-9,1,1,1,32,1,1,1,0,1,-9,1,1,0,3,7.650164808830027,7.987437808358208,0,2,0,-9,2,0,9,-19.59574449754525,0,0,0,23,2,3,3,2,1,2019,2,2,9,1,35,35,15,1,1,3,0,10.89657825951297,10.89657825951297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.91,41.93,6,2,0,0,10,3,1,1505.333333333333,0,0,0 +12608,15472,28132,-9,28130,28131,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.449100369701,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,10,3,1,1505.333333333333,0,0,0 +12609,15473,28133,28134,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,3,8.615289425537192,8.834314921467822,0,2,0,-9,7,0,4,-50.30673180653837,0,0,0,29,2,3,1,-9,-9,2019,1,1,8,0,52,42,15,1,0,1,0,14.92275809106944,14.92275809106944,0,0,0,0,0,0,0,1,1,0,0,0,11.19422098265256,3,52.4,52.91,6,1,0,0,7,4,1,761.6666666666666,0,0,0 +12609,15473,28134,28133,-9,-9,1,1,0,29,1,0,1,0,2,-9,2,1,0,3,7.814923822914881,7.920723716046723,0,2,0,-9,7,0,-4,47.68331777557251,0,1,1,33,2,3,1,2,-9,2019,1,2,6,0,28,28,15,1,0,1,0,8.927295400812104,8.927295400812104,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58.32,50.22,6,1,0,0,7,4,1,761.6666666666666,0,0,0 +12609,15473,28135,-9,28134,28133,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.881338171086,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,761.6666666666666,0,0,0 +12610,15474,28136,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,4,3,0,3,0,7.807496320439602,7.684944303482723,3,0,-9,0,-9,0,-819.2106462517861,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.719536944365821,.7287870652995909,3,56.75,36.33,6,1,0,0,11,3,1,372,0,0,0 +12611,15475,28137,28138,28139,-9,3,1,0,31,1,0,0,0,1,-9,1,1,0,4,8.710830212396434,8.839065689433669,0,1,0,-9,2,0,-4,-137.2646730795589,-9,0,1,35,1,3,1,1,-9,2019,1,1,7,0,50,0,15,1,0,1,0,13.14397076066817,13.14397076066817,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,2,0,0,8,5,1,1042.5,0,0,0 +12611,15475,28138,28137,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,3,8.981682498838193,8.504319721373289,0,1,0,-9,2,0,4,4.188867618589689,-9,0,0,31,1,4,1,-9,-9,2019,1,3,19,6,40,0,15,1,6,1,0,20.23808863950541,20.23808863950541,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,3,3,0,0,8,5,1,1042.5,0,0,0 +12611,15476,28139,-9,-9,-9,2,1,0,68,3,0,0,0,1,-9,2,1,0,4,7.615727796321868,7.759399009287232,0,3,0,-9,0,-9,0,-855.3194417550756,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,21,0,15,1,0,-9,0,12.45266359693018,12.45266359693018,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,5,3,0,0,8,3,1,827,0,0,0 +12612,15477,28140,28141,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,2,0,8.88457813929376,8.935951653990351,1,0,-9,49,0,2,101.7166643609714,0,0,0,74,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.921842185263881,9.346344479092576,0,0,58.07,35.76,7,1,0,0,7,5,1,232,0,0,0 +12612,15477,28141,28140,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,5.714862555115287,6.511653636977543,1,0,-9,49,0,-2,-149.4205068894689,0,0,0,76,1,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.867946096843163,6.331295890605919,0,3,57.31,50.61,6,1,0,0,7,5,1,232,0,0,0 +12613,15478,28142,-9,-9,-9,1,1,0,38,2,0,1,0,2,-9,2,1,0,3,7.867309480399074,7.869902796420613,0,4,0,0,0,-9,0,-1055.326061147712,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,56,43,15,1,0,-9,0,5.296212693750858,5.296212693750858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,6,1,0,0,5,3,0,929,0,0,0 +12613,15479,28143,-9,28142,-9,2,1,1,18,2,0,1,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1028.265708565041,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,5,3,0,202,0,0,0 +12614,15480,28144,-9,28145,28147,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.173655140178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,5,2,1,997,0,0,0 +12614,15480,28145,28147,-9,-9,1,1,0,43,1,0,3,0,2,-9,6,3,0,3,0,5.145256756830418,5.163817251469177,2,0,-9,14,0,-2,-22.77630159694826,0,0,1,45,2,4,1,2,1,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.915417527305769,0,10.53435991399711,3,52.54,52.91,3,1,0,0,5,2,1,997,0,0,0 +12614,15480,28146,-9,28145,28147,3,1,1,16,2,0,3,1,3,-9,7,2,0,3,4.856365691016461,4.644174681838155,0,2,0,0,0,-9,0,-965.5822968901994,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,3,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.04,55.92,6,1,0,0,5,2,1,997,0,0,0 +12614,15480,28147,28145,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,4,8.158165266308805,8.228828599925253,0,2,0,-9,13,0,2,10.9775285725164,0,0,0,43,2,3,3,2,2,2019,2,1,10,0,40,43,15,1,0,3,0,11.45952373926813,11.45952373926813,0,0,0,0,0,0,0,1,0,1,.1377330829689856,0,0,0,47.1,49.63,6,1,0,0,5,2,1,997,0,0,0 +12614,15480,28148,-9,28145,28147,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.96533176251,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,5,2,1,997,0,0,0 +12615,15481,28149,28150,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,4.55752614336307,4.412783311479139,1,0,-9,56,0,-3,-162.5452240788965,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.579129236424322,4.470254287089308,0,0,60.12,54.8,7,1,0,0,2,2,1,594,0,0,0 +12615,15481,28150,28149,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,3,198.1182727503499,0,0,0,73,3,4,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.54,44.15,6,1,0,0,2,2,1,594,0,0,0 +12616,15482,28151,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,8,3,1,2,0,5.969503558892142,6.298153143027196,3,0,0,0,-9,0,-944.0894240304953,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.008889407849471,0,0,0,51.49,33.63,3,1,0,0,6,2,0,673,0,0,0 +12616,15483,28152,-9,-9,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.60365867831239,7.336680861119374,0,3,0,0,0,-9,0,-1015.161284989024,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,7,35,20,15,1,7,-9,0,5.208533528213799,5.208533528213799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.54,63.25,2,1,0,0,6,3,0,198,0,0,0 +12617,15484,28153,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,2,0,5.143315792833834,5.511788078091086,3,0,0,0,-9,0,-1073.318625910922,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.529526484456332,5.433227950446182,0,0,59.48,33.74,6,1,0,0,6,2,1,900,0,0,0 +12618,15485,28154,28155,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,42,0,3,27.54288991891406,0,0,0,69,2,2,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,47.8,32.53,5,1,0,1,9,2,0,1758.5,0,0,0 +12618,15485,28155,28154,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,5.943027268462092,5.486930463176841,1,0,-9,42,0,-3,-22.1898998392318,0,0,0,72,3,2,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.713236848151338,5.803769205913722,0,0,53.63,29.98,6,1,0,1,9,2,0,1758.5,0,0,0 +12619,15486,28156,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,3,7.745583486716543,7.567242990951725,0,3,0,0,0,-9,0,-1004.884827326188,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,25,30,15,1,0,-9,0,8.446520825912348,8.446520825912348,0,0,0,0,0,0,0,0,0,0,3.038896443573765,0,0,0,34,61.21,5,1,0,0,12,3,1,476,0,0,0 +12620,15487,28157,-9,28159,-9,2,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1070.046561861899,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,5,1,0,0,10,1,0,724,0,0,0 +12620,15487,28158,-9,28159,-9,3,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-997.8643155454383,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,10,1,0,724,0,0,0 +12620,15487,28159,-9,-9,-9,1,1,0,25,2,1,2,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1017.089462009216,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.44,33.6,3,1,0,1,10,1,0,724,0,0,0 +12621,15488,28160,28161,-9,-9,2,1,1,69,1,0,0,0,1,-9,1,1,0,2,8.19879912008119,8.528945358395553,6.687506345388947,1,0,-9,52,0,1,2.131652852476057,0,0,0,68,2,3,3,3,3,2019,2,1,21,10,15,24,15,1,10,4,0,33.42062864060198,33.42062864060198,0,0,0,0,0,0,0,1,1,0,7.030250601893083,7.055772859572008,0,0,34.81,46.68,4,1,0,0,8,4,1,1000,0,0,0 +12621,15488,28161,28160,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.724740772168082,6.631147960708683,1,0,-9,52,0,-1,68.50506309215044,0,0,0,69,1,2,1,3,3,2019,3,2,11,1,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,2.748894810656349,6.942463308523688,0,0,48.99,43.66,6,1,0,0,8,4,1,1000,0,0,0 +12622,15489,28162,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,9,3,0,4,0,4.084607765692412,3.663941281174077,3,0,0,0,-9,0,-989.4816630948649,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.904994272717189,0,0,48.53,48.18,5,1,0,0,9,1,0,87,0,0,0 +12623,15490,28163,-9,-9,-9,1,1,0,28,2,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-993.253661601455,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,27.63,1,1,0,0,6,1,0,379.5,0,0,0 +12623,15490,28164,-9,28163,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-949.5650251079504,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,6,1,0,379.5,0,0,0 +12624,15491,28165,-9,28166,28167,4,1,1,17,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1074.48997101398,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.390289296368667,0,0,0,60.3,46.58,6,1,0,0,10,4,1,746,0,0,0 +12624,15491,28166,28167,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,4,7.568665014815243,7.734400344337985,0,2,0,-9,30,0,-1,-104.6580401511314,0,0,0,53,1,3,1,2,2,2019,1,1,12,0,29,19,15,1,0,1,0,8.274881590411182,8.274881590411182,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,3,1,0,0,10,4,1,746,0,0,0 +12624,15491,28167,28166,-9,-9,1,1,1,53,1,0,1,0,1,-9,2,1,0,3,8.793874545109929,8.706983484641244,0,2,0,-9,30,0,1,47.25014749149872,0,0,0,52,2,4,1,3,2,2019,1,2,7,0,41,42,15,1,0,1,0,17.74878647979519,17.74878647979519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,10,4,1,746,0,0,0 +12624,15492,28168,-9,28166,28167,3,1,1,18,2,0,1,0,2,-9,2,1,0,2,6.792308182868481,6.770588364040371,0,3,0,0,0,-9,0,-1000.078648255794,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,21,7,12,0,15,1,7,-9,1,9.241282853008684,9.241282853008684,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.82,53.21,2,1,0,0,10,2,1,389,0,0,0 +12625,15493,28169,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,3,0,5.18629798684856,5.481316287781971,4,0,0,0,-9,0,-1018.94424940008,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,55,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.204468527344141,0,0,0,28.06,60.16,2,1,0,0,7,2,1,255,0,0,0 +12626,15494,28170,28173,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,4,7.944460706057829,7.6218970164843,0,2,0,-9,11,0,0,119.732843482322,0,0,1,34,1,3,1,-9,-9,2019,1,1,13,2,29,27,15,1,2,1,0,12.0912202421921,12.0912202421921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.29,54.22,6,1,0,0,2,4,1,902.75,0,0,0 +12626,15494,28171,-9,28170,28173,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.0572829019964,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,4,1,902.75,0,0,0 +12626,15494,28172,-9,28170,28173,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.952492813196,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,902.75,0,0,0 +12626,15494,28173,28170,-9,-9,1,1,1,34,1,1,2,0,1,-9,2,1,0,3,8.90738733138001,8.684413339606097,0,2,0,-9,11,0,0,19.01470608319702,0,0,0,34,1,4,1,1,1,2019,1,2,8,0,37,37,15,1,0,1,0,25.75130485774673,25.75130485774673,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,51.84,6,1,0,0,2,4,1,902.75,0,0,0 +12627,15495,28174,-9,28175,-9,4,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-953.4844281262707,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,9,2,0,580.6666666666666,0,0,0 +12627,15495,28175,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,2,1,0,2,6.83760216484188,6.623493528921586,0,4,0,0,0,-9,0,-1023.166138175696,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,8,17,18,15,1,8,-9,0,6.115788823370658,6.115788823370658,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.67,47.21,3,1,0,1,9,2,0,580.6666666666666,0,0,0 +12627,15495,28176,-9,28175,-9,3,1,0,16,2,0,1,0,2,-9,11,2,0,2,7.654321103248714,7.473636854681403,0,4,0,0,0,-9,0,-1054.353298571346,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,50,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.41,34.41,4,1,0,1,9,2,0,580.6666666666666,0,0,0 +12627,15496,28177,-9,28175,-9,2,1,0,19,2,0,1,0,2,1,2,1,0,3,7.076238433803934,6.579598244090182,0,3,0,0,0,-9,0,-979.0345163816331,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,4,1,23,0,15,1,1,-9,1,4.579121104623455,4.579121104623455,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,9,2,0,1499,0,0,0 +12628,15497,28178,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1033.167571045479,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.91,60.87,4,1,0,0,11,1,1,240,0,0,0 +12628,15498,28179,-9,-9,-9,2,1,0,44,2,0,1,0,1,-9,2,1,0,3,8.390452235648038,8.572227324476213,0,4,0,0,0,-9,0,-903.7628004498563,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,15,5,30,33,15,1,5,-9,0,23.33974523996536,23.33974523996536,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,5,1,0,1,11,4,1,291.5,0,0,0 +12628,15498,28180,-9,28179,-9,3,1,1,16,2,0,1,1,3,-9,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1067.018443720998,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.742869738153199,0,0,0,56.34,46.17,6,1,0,0,11,4,1,291.5,0,0,0 +12629,15499,28181,-9,28182,28183,4,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.7509279291255,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,3,1,374.3333333333333,0,0,0 +12629,15499,28182,28183,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,2,6.45432580806548,6.856420970016131,0,2,0,-9,10,0,-3,22.23808120522831,0,0,0,48,2,3,1,-9,-9,2019,1,1,10,0,12,0,15,1,0,1,0,7.292680523370461,7.292680523370461,0,0,0,0,0,0,0,1,1,0,0,0,42.11164405602723,3,31.09,45.59,4,1,0,0,12,3,1,374.3333333333333,0,0,0 +12629,15499,28183,28182,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.460799683314667,8.022538823147473,0,2,0,-9,10,0,3,-1.400630591072499,0,0,0,45,2,2,1,-9,-9,2019,1,2,10,0,44,44,15,1,0,1,0,9.2331290567961,9.2331290567961,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,12,3,1,374.3333333333333,0,0,0 +12629,15500,28184,-9,28182,28183,3,1,0,20,2,0,1,0,2,-9,2,1,0,3,6.879329426775666,7.369994210547867,0,3,0,0,0,-9,0,-1127.932698250382,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,24,40,15,1,1,-9,1,5.84755056754197,5.84755056754197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.46,59.39,4,1,0,0,12,3,1,426,0,0,0 +12630,15501,28185,28186,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,3,8.528807852330235,8.586556017575667,6.185171239767433,1,0,-9,39,0,-12,-9.914342454865654,0,0,0,70,1,3,3,2,3,2019,2,1,9,0,29,27,15,1,0,4,0,23.35929908192521,23.35929908192521,0,0,0,0,0,0,0,1,1,0,6.329709467436114,0,0,0,51.41,56.15,6,1,0,0,5,5,1,2278,0,0,0 +12630,15501,28186,28185,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,6.17057320777193,7.758192652371975,7.667157013220841,1,0,-9,39,0,12,39.66221681603454,0,0,0,58,1,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.001887535868846,7.6626308348597,0,0,61.04,39.41,6,1,0,0,5,5,1,2278,0,0,0 +12631,15502,28187,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,8.124670921965572,7.988416697123533,3,0,0,0,-9,0,-941.754742677078,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.263275033183879,8.224791760295632,10.3208760663809,3,66.37,38.36,7,1,0,0,11,4,1,604,0,0,0 +12632,15503,28188,28189,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.25914413399555,8.129991767535181,0,1,0,-9,10,0,-2,16.33561767156276,0,1,1,31,2,5,1,2,2,2019,1,1,9,1,40,42,15,1,1,1,0,10.2269494183659,10.2269494183659,0,0,0,0,0,0,0,0,0,0,1.608555679519084,0,0,0,41.06,62.04,6,1,0,0,9,5,1,210.5,0,0,0 +12632,15503,28189,28188,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,5,8.526450106780144,9.010576611945131,0,1,0,-9,10,0,2,-77.68212761213667,0,0,0,29,1,4,1,2,-9,2019,1,2,8,1,40,40,15,1,1,1,0,17.80940279178201,17.80940279178201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,9,5,1,210.5,0,0,0 +12633,15504,28190,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,5.632368542257374,5.238686970094925,3,0,-9,0,-9,0,-1120.714890187707,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.296688537457201,0,0,57.33,53.46,7,1,0,0,9,2,1,3303,0,0,0 +12634,15505,28191,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,4,3,0,1,0,6.119798491627608,6.391752541222324,3,0,-9,0,-9,0,-1074.802041565491,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.94783435723142,6.228823987821177,0,0,41.94,20.11,3,1,0,0,12,2,0,319,0,0,0 +12635,15506,28192,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1034.204089812237,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,55.74,3,4,1,0,8,1,0,976,0,0,0 +12636,15507,28193,28194,-9,-9,2,1,1,51,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,8,0,8,0,0,0,0,43,3,4,3,-9,-9,2019,4,1,9,0,0,20,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,1,1,8,1,0,1993,0,0,0 +12636,15507,28194,28193,-9,-9,1,1,0,43,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,26,0,-8,0,0,0,1,51,3,4,3,-9,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,8,1,0,1993,0,0,0 +12636,15507,28195,-9,28194,28193,4,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.721626313815,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,3,0,0,8,1,0,1993,0,0,0 +12636,15508,28196,-9,28194,28193,3,1,1,21,2,0,1,0,2,-9,2,1,0,4,7.829370617785436,8.081190755612012,0,3,0,0,0,-9,0,-1000.103411407031,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,35,40,15,1,1,-9,1,8.685206721449193,8.685206721449193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,4,0,1153,0,0,0 +12637,15509,28197,28198,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,3,7.469140742700868,7.460357048152432,0,1,0,-9,8,0,2,71.66198228517879,0,0,0,65,3,3,3,-9,-9,2019,2,1,10,0,43,40,15,1,1,4,0,5.053641778388426,5.053641778388426,0,0,0,0,0,0,0,1,1,0,5.29545240155637,0,0,0,52,48,5,1,0,0,4,2,1,272.5,0,0,0 +12637,15509,28198,28197,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,-2,-69.56775889640775,0,0,0,67,2,3,1,3,3,2019,3,2,9,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8013098737932075,0,34.69182822251828,3,58.5,12.36,6,1,0,0,4,2,1,272.5,0,0,0 +12638,15510,28199,-9,28201,-9,3,1,0,9,2,2,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-930.0526083283024,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,1,0,1182.8,0,0,0 +12638,15510,28200,-9,28201,-9,5,1,0,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1032.70084589656,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,1,0,1182.8,0,0,0 +12638,15510,28201,-9,-9,-9,1,1,0,31,2,2,4,0,2,-9,6,3,0,4,0,0,0,4,0,-9,0,-9,0,-954.5251677656021,-9,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,4,0,1,8,1,0,1182.8,0,0,0 +12638,15510,28202,-9,28201,-9,2,1,0,9,2,2,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-971.0784089979571,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,1,0,1182.8,0,0,0 +12638,15510,28203,-9,28201,-9,4,1,1,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1031.768161491122,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,1182.8,0,0,0 +12639,15511,28204,28206,-9,-9,2,1,1,22,1,1,1,0,2,-9,2,1,0,4,8.689700064045848,8.504511435135973,0,2,0,-9,3,0,0,54.72310468663984,0,1,0,22,2,3,1,-9,-9,2019,1,1,4,0,47,58,15,1,0,1,0,14.5551586326226,14.5551586326226,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,7,1,0,0,7,4,1,989.6666666666666,0,0,0 +12639,15511,28205,-9,28206,28204,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.45524005343,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,989.6666666666666,0,0,0 +12639,15511,28206,28204,-9,-9,1,1,0,22,1,1,1,0,2,-9,2,1,0,3,6.723488977885046,6.865485304859745,0,2,0,-9,3,0,0,131.4178066190276,0,1,1,22,2,4,1,3,2,2019,1,2,6,1,20,14,15,1,1,1,0,4.505070313512808,4.505070313512808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.33,38.31,5,1,0,0,7,4,1,989.6666666666666,0,0,0 +12640,15512,28207,-9,28208,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.355981432989,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,0,1172.5,0,0,0 +12640,15512,28208,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,5,7.900790813263929,7.76072033478774,0,4,0,0,0,-9,0,-1095.695271777163,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,23,23,15,1,0,-9,0,8.782697227900325,8.782697227900325,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,0,1172.5,0,0,0 +12641,15513,28209,28210,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,10,0,-6,22.45487883155052,0,0,0,71,2,3,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,7,1,0,0,12,2,1,943.5,0,0,0 +12641,15513,28210,28209,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.975347507797386,6.958204701495771,1,0,-9,10,0,6,142.7052738304697,0,0,0,65,2,4,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.878924119061192,7.127087544468197,0,0,59.01,44.42,6,1,0,0,12,2,1,943.5,0,0,0 +12642,15514,28211,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,4,3,0,5,0,7.259383773023754,7.494723071925334,3,0,0,0,-9,0,-964.9984612337962,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.114993173599514,7.73229340223318,0,0,57.06,57.76,6,1,0,0,12,3,1,244,0,0,0 +12643,15515,28212,28213,-9,-9,2,1,0,42,1,0,1,0,2,-9,8,3,1,1,0,4.594488649079304,4.495964744185021,2,0,-9,21,0,-6,-6.785244294329923,0,0,1,48,2,3,1,2,-9,2019,3,1,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.525806534883921,0,0,39.76,23.87,3,1,0,0,13,4,1,551.6666666666666,0,0,0 +12643,15515,28213,28212,-9,-9,1,1,1,48,1,0,1,0,2,-9,1,1,0,3,8.721413178662086,8.51200887176819,0,2,0,-9,21,0,6,98.22700608950483,0,0,0,42,2,1,3,2,2,2019,2,2,11,0,35,40,15,1,0,3,0,14.93808802323534,14.93808802323534,0,0,0,0,0,0,0,1,1,0,0,0,18.33866769227775,1,51.41,56.15,6,1,0,0,13,4,1,551.6666666666666,0,0,0 +12643,15515,28214,-9,28212,28213,3,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1000.328196257332,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,4,1,551.6666666666666,0,0,0 +12644,15516,28215,-9,28216,28217,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1148.826584337605,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,5,0,643.3333333333334,0,0,0 +12644,15516,28216,28217,-9,-9,2,1,0,46,1,0,1,0,1,-9,2,1,0,1,8.778498198616777,8.569369783680129,0,2,0,-9,8,0,3,-91.67766424046918,0,0,0,43,1,4,1,1,1,2019,1,1,32,12,52,47,15,1,12,1,0,15.20105396433263,15.20105396433263,0,0,0,0,0,0,0,1,1,0,0,0,1.848347487010122,3,23.48,45.05,2,1,0,0,1,5,0,643.3333333333334,0,0,0 +12644,15516,28217,28216,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,4,7.993999088523107,8.026730980640149,0,2,0,-9,17,0,-3,-151.4947634519569,0,0,0,46,1,1,1,2,1,2019,1,2,5,0,40,41,15,1,0,1,0,8.482162418739618,8.482162418739618,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.24,58.84,6,1,0,0,1,5,0,643.3333333333334,0,0,0 +12645,15517,28218,28219,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,40,0,2,-36.01325792897715,0,0,0,65,2,3,1,-9,-9,2019,3,1,10,1,0,0,15,4,1,1,0,0,0,1,0,29.10910667674056,0,0,0,0,1,1,0,0,0,0,0,42.17,23.93,3,1,0,1,12,3,1,859,0,0,0 +12645,15517,28219,28218,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,3,7.682717130979021,7.730278416691483,0,1,0,-9,40,0,-2,-81.39623815679303,0,0,0,67,3,1,3,-9,-9,2019,2,2,14,2,25,30,15,1,2,4,0,10.61011053661246,10.61011053661246,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.55,45.17,6,1,0,0,12,3,1,859,0,0,0 +12646,15518,28220,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,2,8.109579233645416,7.901410193902413,0,3,0,0,0,-9,0,-1111.816397796653,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,37,16,15,1,0,-9,0,9.316018603979247,9.316018603979247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,6,1,0,0,6,4,0,698,0,0,0 +12647,15519,28221,-9,-9,-9,1,1,1,87,2,0,0,0,1,-9,4,3,0,1,0,5.560641821909151,5.044612682857774,3,0,0,0,-9,0,-1074.709515136141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,4,10,-9,0,0,0,1,9.416107182503955,0,9.962467703286984,0,0,101.269750894732,1,1,0,0,5.312019670977328,0,0,35.19,19.44,5,4,0,0,6,2,0,1758,0,0,0 +12648,15520,28222,-9,28223,28224,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.3100684236765,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,0,1140,0,0,0 +12648,15520,28223,28224,-9,-9,1,1,0,35,1,1,1,0,2,-9,2,1,0,2,7.139874676373753,7.005012239290368,0,2,0,-9,3,0,-14,49.58287798162738,0,0,1,49,2,3,1,2,2,2019,1,2,19,7,16,0,15,1,7,1,0,5.93292372000648,5.93292372000648,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.56,54.71,2,1,0,1,9,5,0,1140,0,0,0 +12648,15520,28224,28223,-9,-9,2,1,1,49,1,1,1,0,2,-9,1,1,0,3,9.880117807377085,9.787200472364876,0,2,0,-9,3,0,14,12.08344467160362,0,0,0,35,2,2,1,-9,-9,2019,1,1,23,9,55,60,15,1,9,1,0,26.32333481689931,26.32333481689931,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.94,61.65,2,1,0,1,9,5,0,1140,0,0,0 +12649,15521,28225,28227,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,5,8.574483966152064,8.884732867530108,0,2,0,-9,2,0,-11,-56.53925385686012,0,0,0,57,2,4,1,2,1,2019,1,1,10,0,50,38,15,1,0,1,0,15.76821488165017,15.76821488165017,0,0,0,0,0,0,0,1,1,0,7.503173969090792,0,0,0,63.14,41.3,6,1,0,0,13,4,1,301.3333333333333,0,0,0 +12649,15521,28226,-9,28225,28227,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.490511032473,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,13,4,1,301.3333333333333,0,0,0 +12649,15521,28227,28225,-9,-9,1,1,1,57,1,0,2,0,2,-9,1,1,0,4,7.79914154602982,8.335139297068523,0,2,0,-9,2,0,11,-61.35514131221831,0,0,0,46,1,5,1,1,1,2019,1,2,9,0,15,15,15,1,0,1,0,22.09449984616574,22.09449984616574,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,13,4,1,301.3333333333333,0,0,0 +12650,15522,28228,28229,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,3.955856229788025,4.105651364025268,1,0,-9,43,0,10,40.36280101227272,0,0,0,66,3,4,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.262620923310243,3.850529589634756,0,0,55.05,31.56,5,1,0,0,5,2,1,377,0,0,0 +12650,15522,28229,28228,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,6.501716035043642,6.431197878073878,1,0,-9,42,0,-10,-89.47849447549085,0,0,0,76,3,2,3,3,3,2019,4,1,14,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8135566851670879,6.549862627740529,0,0,42.45,56.21,1,1,0,0,5,2,1,377,0,0,0 +12651,15523,28230,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,5.384605995865375,5.195641465194113,3,0,0,0,-9,0,-935.6091039229834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,2.91152840620959,0,0,0,0,31.54487578706132,1,1,0,5.486893631306776,5.533349889325991,0,0,56.61,28.27,6,1,0,0,7,2,0,411,0,0,0 +12652,15524,28231,28232,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,48,0,-2,-25.19089243286862,0,0,0,73,2,5,3,2,1,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.157442051722563,0,0,3,51,47,5,3,0,0,7,2,1,335,0,0,0 +12652,15524,28232,28231,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,5,0,7.497048346450633,7.426189086647032,1,0,-9,48,0,2,-116.3296243878423,0,0,0,71,1,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.513675173634657,7.228174745919861,0,0,57.34,36.97,6,3,0,0,7,2,1,335,0,0,0 +12653,15525,28233,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1022.591283249226,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,0,11,1,0,610,0,0,0 +12654,15526,28234,28235,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,63,0,-3,0,0,0,0,86,3,1,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,50.56,6,1,0,0,1,1,1,1233.5,0,0,0 +12654,15526,28235,28234,-9,-9,1,1,1,86,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,63,0,3,0,0,0,0,83,3,2,3,3,3,2019,4,2,20,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,40.68,4,1,0,1,1,1,1,1233.5,0,0,0 +12655,15527,28236,28237,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,48.86781609654555,0,0,0,77,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,5,1,541.5,0,0,0 +12655,15527,28237,28236,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,8.793571143511882,9.148918811876145,1,0,-9,56,0,2,16.47798065083785,0,0,0,75,3,3,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.108333786458412,8.959434223538649,0,3,57.98,29.33,6,1,0,0,7,5,1,541.5,0,0,0 +12656,15528,28238,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1005.504450714734,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,1,4,1,0,1072,0,0,0 +12657,15529,28239,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,7.627848149627069,7.142017827026133,3,0,0,0,-9,0,-1074.645012024894,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.92976730156077,0,0,57.09,33.47,5,1,0,0,4,3,1,597,0,0,0 +12658,15530,28240,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,4,7.268596137211311,7.755722856422892,6.823468875262167,3,0,0,0,-9,0,-897.3445579770172,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,24,40,15,1,0,-9,0,6.877563715142524,6.877563715142524,0,0,0,0,0,0,0,1,1,0,5.254607445846618,6.968154241058772,0,0,56.74,52.23,6,1,0,0,8,3,1,139,0,0,0 +12659,15531,28241,-9,-9,-9,2,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,6.22798052952692,6.091674086885289,3,0,0,0,-9,0,-960.337748441253,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.960392105047158,0,0,56.91,49.54,6,1,0,0,7,2,0,732,0,0,0 +12659,15532,28242,-9,28241,-9,3,1,1,32,2,0,0,0,2,-9,2,1,0,3,7.866527665270719,7.694345861726783,0,3,0,0,0,-9,0,-1006.915899319383,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,56,40,15,1,0,-9,1,4.905320680422563,4.905320680422563,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,7,3,0,616,0,0,0 +12659,15533,28243,-9,-9,-9,4,1,0,51,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-950.8902267216221,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.38,45.6,5,1,1,0,7,1,0,209,0,0,0 +12660,15534,28244,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,2,0,3.490220932666636,3.672810235166839,3,0,0,0,-9,0,-1024.009938862389,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.457673245511948,0,0,53.99,16.17,5,5,0,0,8,1,0,1322,0,0,0 +12661,15535,28245,28246,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,4,7.930603672277474,7.624157241460989,0,1,0,-9,32,0,7,-99.04671045588657,0,0,0,54,2,3,3,3,3,2019,2,2,8,1,40,16,15,1,1,3,0,5.859057816394652,5.859057816394652,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,50.33,5,3,0,0,4,3,1,439,0,0,0 +12661,15535,28246,28245,-9,-9,2,1,0,54,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,32,0,-7,-8.433488601946282,0,0,0,61,2,4,1,-9,-9,2019,3,1,11,0,0,35,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,4,3,1,439,0,0,0 +12662,15536,28247,28248,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,8.043452985574849,7.96125624034785,1,0,-9,6,0,2,-3.305969893375714,0,0,0,66,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.012363278062143,0,3,48.28,60.18,6,1,0,0,12,3,1,1207.5,0,0,0 +12662,15536,28248,28247,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,5.06386743938091,4.950573626098579,1,0,-9,6,0,-2,83.82370224202143,0,0,0,68,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.21958485572451,0,3,49.06,52.91,6,1,0,0,12,3,1,1207.5,0,0,0 +12663,15537,28249,28250,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,2,0,7.564153332260075,7.847377678699243,1,0,-9,48,0,2,-185.9027364083144,0,0,0,67,1,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.994981490896927,7.575352199762713,0,0,61.85,34.03,6,1,0,0,6,4,1,701,0,0,0 +12663,15537,28250,28249,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.872696140048499,8.223654571087057,1,0,-9,48,0,-2,88.85203954973034,0,0,0,69,1,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.529908090268071,8.063885430772089,0,0,57.33,53.46,7,1,0,0,6,4,1,701,0,0,0 +12664,15538,28251,-9,28252,28254,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.456848993657,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,1,640.25,0,0,0 +12664,15538,28252,28254,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,5,7.67147891720312,7.852589281080963,0,2,0,-9,26,0,-2,37.24378169583593,0,0,0,48,2,5,1,2,2,2019,1,2,12,1,29,25,15,1,1,1,0,7.96348794795544,7.96348794795544,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,5,1,0,0,6,4,1,640.25,0,0,0 +12664,15538,28253,-9,28252,28254,3,1,0,17,2,0,2,0,2,1,3,3,0,2,0,0,0,2,0,0,0,-9,0,-831.8379632984589,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.47,55.41,3,1,1,0,6,4,1,640.25,0,0,0 +12664,15538,28254,28252,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,5,8.377619707696702,8.029674089789808,0,2,0,-9,26,0,2,-44.53801627402758,0,0,0,46,2,5,1,2,2,2019,1,1,6,0,51,48,15,1,0,1,0,9.941052537880159,9.941052537880159,0,0,0,0,0,0,0,1,1,0,3.429079487683713,0,0,0,51.67,60.18,7,1,0,0,6,4,1,640.25,0,0,0 +12665,15539,28255,-9,28256,-9,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1005.242047410703,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,1,2813,0,0,0 +12665,15539,28256,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-899.8812919560299,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,23,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0922581425303772,0,0,0,42.04,35.2,3,1,1,0,5,1,1,2813,0,0,0 +12665,15540,28257,-9,28256,-9,2,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-803.3323577795214,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,4,1,0,0,5,1,1,314,0,0,0 +12666,15541,28258,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,3.9495725575588,3.98223690310548,3,0,0,0,-9,0,-930.2363451069843,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.77175647479707,0,0,0,1,1,0,0,3.890055776928191,0,0,71.21000000000001,10.55,6,1,0,0,12,1,1,1301,0,0,0 +12667,15542,28259,28260,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,3,8.469950645881292,8.579499293995644,0,1,0,-9,19,-9,0,-43.3911419018567,-9,0,0,46,2,4,1,2,2,2019,1,2,6,0,40,0,15,1,0,1,0,9.687542037548686,9.687542037548686,0,0,0,0,0,0,0,0,0,0,.2773955544556167,0,0,0,54.96,53.17,6,1,0,0,13,4,1,1072.5,0,0,0 +12667,15542,28260,28259,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.469498911444475,7.519054525923909,0,1,0,-9,19,-9,0,-64.60482909569423,-9,0,0,46,1,3,1,2,2,2019,1,1,9,0,25,0,15,1,0,1,0,7.867792946995444,7.867792946995444,0,0,0,0,0,0,0,0,0,0,2.264060809435828,0,0,0,48.87,58.55,7,1,0,0,13,4,1,1072.5,0,0,0 +12667,15543,28261,-9,28260,28259,3,1,1,25,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-1075.333737374804,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.18,60.54,5,1,0,0,13,1,1,2059,0,0,0 +12667,15544,28262,-9,28260,28259,4,1,0,19,2,0,0,1,2,-9,7,2,0,4,6.309952936132317,6.098941567044529,0,3,0,-9,0,-9,0,-1000.219556017436,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,10,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.500592932579779,0,0,0,43.2,59.97,5,1,0,0,13,2,1,288,0,0,0 +12668,15545,28263,28264,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,6.581246654668323,6.323367009926881,0,1,0,-9,6,0,1,-10.97720167863067,0,0,0,66,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.1689350390523,0,0,0,49.29,49.06,5,1,0,0,10,2,1,2579.5,0,0,0 +12668,15545,28264,28263,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,6.977755725868543,6.674106619708648,1,0,-9,6,0,-1,-69.95250903893549,0,0,0,67,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.052558045715267,6.761317684619113,0,0,57.33,53.46,2,1,0,0,10,2,1,2579.5,0,0,0 +12668,15546,28265,-9,28263,28264,3,1,1,42,2,0,0,0,2,-9,2,1,0,4,7.61756718248955,7.291720923499218,0,3,0,0,0,-9,0,-973.3148576934851,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,25,42,15,1,4,-9,1,8.879380907307349,8.879380907307349,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.15,61.1,3,1,0,0,10,3,1,214,0,0,0 +12669,15547,28266,28267,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,2,8.563836244256951,8.693845335872695,0,2,0,-9,6,0,1,47.90586846086078,0,0,0,53,2,4,1,3,3,2019,1,1,13,2,62,45,15,1,2,1,0,8.264409162422423,8.264409162422423,0,0,0,0,0,0,0,1,1,0,6.683411517313783,0,0,0,39.66,50.06,5,1,0,0,13,4,1,162,0,0,0 +12669,15547,28267,28266,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,4,7.397687096113179,8.220571343450375,0,2,0,-9,6,0,-1,-107.7667234267913,0,0,0,54,2,2,1,-9,-9,2019,1,2,9,0,40,30,15,1,1,1,0,7.769511675295425,7.769511675295425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,5,0,0,13,4,1,162,0,0,0 +12669,15548,28268,-9,28266,28267,3,1,0,18,2,0,1,1,2,0,7,2,0,1,5.488213171506943,5.954385722513909,0,3,0,0,0,-9,0,-986.5165753030244,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,26,10,12,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.84,59.45,2,1,0,0,13,4,1,307,0,0,0 +12670,15549,28269,-9,28272,28271,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-929.4649868680544,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,827,0,0,0 +12670,15549,28270,-9,28272,28271,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.4889007166297,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,5,1,827,0,0,0 +12670,15549,28271,28272,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,3,9.113402456833718,8.924723526805153,0,2,0,-9,10,0,0,11.28256830097877,0,0,0,33,1,4,1,1,1,2019,1,2,9,0,37,37,15,1,0,1,0,23.08722129729481,23.08722129729481,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,7,1,0,0,2,5,1,827,0,0,0 +12670,15549,28272,28271,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,4,8.024929428442483,8.128642605609146,0,2,0,-9,10,0,0,-32.9552365921774,0,0,1,33,1,3,1,-9,-9,2019,1,1,11,0,27,0,15,1,0,1,0,14.62461479096313,14.62461479096313,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,6,1,0,0,2,5,1,827,0,0,0 +12671,15550,28273,-9,28275,28274,2,1,1,22,2,0,0,0,2,-9,2,1,0,5,8.117647228732132,7.855480389987285,0,3,0,0,0,-9,0,-985.8361775622566,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,0,15,1,0,-9,1,9.507676327588282,9.507676327588282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,6,1,0,0,9,4,1,408,0,0,0 +12671,15551,28274,28275,-9,-9,3,1,1,52,1,0,0,0,1,-9,2,1,0,4,9.209612043476152,9.103823511844148,0,1,0,-9,4,0,12,-14.46933126269566,0,0,0,40,1,4,1,-9,-9,2019,1,1,11,0,40,37,15,1,0,1,0,35.0247040576111,35.0247040576111,0,0,0,0,0,0,0,0,0,0,7.031160688586102,0,0,0,47.49,55.02,5,1,0,0,9,5,1,678,0,0,0 +12671,15551,28275,28274,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,4,8.834064809910204,9.100337791172418,0,1,0,-9,4,0,-12,105.5028813765199,0,0,1,52,1,4,1,-9,-9,2019,1,3,10,0,42,47,15,1,0,1,0,16.81170950580452,16.81170950580452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,55.2,6,1,0,0,9,5,1,678,0,0,0 +12672,15552,28276,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,7.864044184840751,7.955700915163017,0,3,0,0,0,-9,0,-916.9333630801663,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,32,30,15,1,3,-9,0,8.511432667593271,8.511432667593271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,52.64,5,1,0,0,5,3,0,1428,0,0,0 +12673,15553,28277,28278,-9,-9,1,1,0,53,1,0,0,0,1,-9,1,1,0,4,6.323903851469799,6.751472005475526,5.511530226949797,1,0,-9,34,0,-1,-56.50080671490444,0,0,0,54,1,4,1,2,2,2019,1,2,11,0,3,40,15,1,0,1,0,19.96119074615524,19.96119074615524,0,0,0,0,0,0,0,0,0,0,7.29890026973743,5.835841801990293,8.542556229863466,3,46.63,59.72,6,1,0,0,4,5,1,1679.5,0,0,0 +12673,15553,28278,28277,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,4,2.862253399944844,8.717616444930989,8.941595724485426,1,0,-9,34,0,1,44.1192971518098,0,0,0,53,1,4,1,1,1,2019,1,1,6,0,40,0,15,1,0,1,0,.0449056814165598,.0449056814165598,0,0,0,0,0,0,0,0,0,0,.7390646706602533,8.798847514526821,0,0,54.79,55.86,6,1,0,0,4,5,1,1679.5,0,0,0 +12673,15554,28279,-9,28277,28278,3,1,1,22,2,0,0,1,3,0,7,2,0,3,0,5.873689883411131,5.935265614275429,3,0,0,0,-9,0,-1076.304734676615,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.870351127125341,0,0,0,30.36,55.26,4,1,0,0,4,2,1,284,0,0,0 +12673,15555,28280,-9,28277,28278,4,1,0,20,2,0,0,0,2,0,7,2,0,4,4.876196941822294,4.484457984515719,0,3,0,0,0,-9,0,-841.2385070973532,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,4,1,0,0,4,2,1,632,0,0,0 +12674,15556,28281,-9,28284,28282,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-975.64496736853,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,5,1,0,0,8,5,1,839.75,0,0,0 +12674,15556,28282,28284,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,9.147609178701154,9.245673095297441,0,2,0,-9,21,0,1,51.26678662375885,0,0,0,43,1,5,1,2,1,2019,1,1,10,0,37,43,15,1,0,1,0,27.29938936935471,27.29938936935471,0,0,0,0,0,0,0,0,0,0,2.79305297261696,0,0,0,54.2,57.49,6,1,0,0,8,5,1,839.75,0,0,0 +12674,15556,28283,-9,28284,28282,3,1,0,16,2,0,2,1,2,-9,7,2,0,3,5.456614897958239,4.958532393266092,0,2,0,0,0,-9,0,-1019.729924236466,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,3,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.16,32.18,6,1,0,0,8,5,1,839.75,0,0,0 +12674,15556,28284,28282,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,5,8.067814241783127,7.958357876900318,0,2,0,-9,21,0,-1,-40.16318738306374,0,0,1,44,1,4,1,2,2,2019,1,2,13,1,27,31,15,1,1,1,0,14.94677878003215,14.94677878003215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.42,63.93,5,1,0,0,8,5,1,839.75,0,0,0 +12675,15557,28285,-9,28286,28287,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1116.590162894669,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,1368,0,0,0 +12675,15557,28286,28287,-9,-9,2,1,0,35,1,0,1,0,1,-9,2,1,0,3,8.220425389811687,8.498005216335482,0,2,0,-9,9,0,-1,-25.61975155453959,0,0,1,36,1,5,1,2,2,2019,1,1,9,0,38,25,15,1,0,1,0,12.70632039775948,12.70632039775948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,5,1,0,0,1,5,1,1368,0,0,0 +12675,15557,28287,28286,-9,-9,1,1,1,36,1,0,1,0,1,-9,2,1,0,5,8.669265458300719,8.589900227730091,0,2,0,-9,9,0,1,33.3886649365188,0,0,0,35,1,3,1,1,1,2019,1,2,7,0,40,40,15,1,0,1,0,14.92851007074792,14.92851007074792,0,0,0,0,0,0,0,1,1,0,7.80030665006395,0,0,0,57.06,57.76,7,1,0,0,1,5,1,1368,0,0,0 +12676,15558,28288,28289,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,6.736865803575272,7.136317496880317,0,2,0,-9,19,0,-4,52.78603960316662,0,0,1,41,2,3,1,2,-9,2019,1,2,8,0,40,30,15,1,0,1,0,4.084159223940746,4.084159223940746,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.75,39.09,6,1,0,0,12,4,1,990.6666666666666,0,0,0 +12676,15558,28289,28288,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,3,8.689938995937641,8.949976207012227,0,2,0,-9,10,0,4,20.51087397861135,0,0,0,37,2,4,1,2,2,2019,1,1,8,0,44,44,15,1,0,1,0,17.03328247833801,17.03328247833801,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,4,1,990.6666666666666,0,0,0 +12676,15558,28290,-9,28288,28289,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-887.7379973512092,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,990.6666666666666,0,0,0 +12677,15559,28291,-9,28294,28292,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.6731368325759,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,275.75,0,0,0 +12677,15559,28292,28294,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,2,8.525967786428827,8.716923455485047,0,2,0,-9,9,0,-1,67.4647940986419,0,0,0,40,1,4,1,2,2,2019,1,1,29,12,39,39,15,1,12,1,0,14.64122207188702,14.64122207188702,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.06,55.77,2,1,0,0,5,5,1,275.75,0,0,0 +12677,15559,28293,-9,28294,28292,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.671051369791,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,5,1,275.75,0,0,0 +12677,15559,28294,28292,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.830682109528258,8.718836098104831,0,2,0,-9,9,0,1,77.76421507648601,0,0,1,39,2,2,1,1,1,2019,1,2,18,7,35,35,15,1,7,1,0,20.86918433252623,20.86918433252623,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.68,59.67,6,1,0,0,5,5,1,275.75,0,0,0 +12678,15560,28295,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,7.081265482559568,7.08404642161181,3,0,0,0,-9,0,-1080.675442065767,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.856800328510298,0,0,58.33,47.36,7,1,0,0,5,2,1,632,0,0,0 +12679,15561,28296,28297,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,8.750735567797665,9.033663387156507,1,0,-9,9,0,3,26.32124632935607,0,0,0,62,2,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.082404837988639,8.756643368308774,0,0,38.75,53.76,6,1,0,0,7,5,1,207.5,0,0,0 +12679,15561,28297,28296,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,6.73911771930401,6.6418828516843,1,0,-9,9,0,-3,45.2566940387499,0,0,0,65,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.368897706051719,6.780086263870334,6.278954086161754,3,54.2,57.49,6,1,0,0,7,5,1,207.5,0,0,0 +12680,15562,28298,-9,-9,-9,1,1,1,90,3,0,0,0,2,-9,4,3,0,3,0,7.792449742740174,7.626539005803063,3,0,0,0,-9,0,-964.8603747227017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.402299858051221,0,0,55,45,6,1,0,0,7,3,1,1485,0,0,0 +12681,15563,28299,28300,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,8.71951851478342,8.548882721990053,0,1,0,-9,6,0,-1,46.71825018091887,0,0,0,55,1,4,1,2,2,2019,1,2,10,1,52,47,15,1,1,1,0,13.61806772828055,13.61806772828055,0,0,0,0,0,0,0,0,0,0,1.624616911501443,0,0,0,54.2,57.49,6,1,0,0,10,5,1,327.5,0,0,0 +12681,15563,28300,28299,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,4,7.920799137871036,7.804514957815011,0,1,0,-9,6,0,1,-69.28888287173815,0,0,0,54,2,4,1,2,2,2019,1,1,8,0,40,35,15,1,0,1,0,7.507302120076313,7.507302120076313,0,0,0,0,0,0,0,0,0,0,5.837610723160045,0,0,0,45.91,59.89,6,1,0,0,10,5,1,327.5,0,0,0 +12681,15564,28301,-9,28299,28300,3,1,1,19,2,0,0,1,2,0,7,2,0,4,0,6.189445864330836,5.870285649077404,3,0,0,0,-9,0,-1089.255947974214,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.355759341253575,0,0,0,57.77,46.15,2,1,0,0,10,2,1,715,0,0,0 +12682,15565,28302,28303,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,4,9.444706463849206,9.599899522516184,0,2,0,-9,22,0,0,9.51713438480008,0,0,0,44,2,4,1,2,2,2019,1,1,9,0,91,90,15,1,0,1,0,18.66402286846149,18.66402286846149,0,0,0,0,0,0,0,1,1,0,5.630426256915529,0,0,0,49.35,59.64,6,1,0,0,12,5,1,463.6666666666667,0,0,0 +12682,15565,28303,28302,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,4,8.173611039537361,8.004315048400644,0,2,0,-9,22,0,0,87.84232111105509,0,0,1,44,2,4,1,2,2,2019,1,2,7,0,34,33,15,1,0,1,0,8.570054618029069,8.570054618029069,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.55,46.11,6,1,0,0,12,5,1,463.6666666666667,0,0,0 +12682,15565,28304,-9,28303,28302,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.857814305564,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,5,1,463.6666666666667,0,0,0 +12683,15566,28305,28306,-9,-9,2,1,0,59,1,0,1,0,1,-9,2,1,0,3,8.226356209914705,8.006445778768748,0,2,0,-9,7,0,7,106.0496988597683,0,0,0,52,1,4,1,2,2,2019,1,1,1,0,10,15,15,1,0,1,0,34.50249346522624,34.50249346522624,0,0,0,0,0,0,0,1,1,0,7.517431875076735,0,0,0,57.33,53.46,6,1,0,0,10,3,1,344,0,0,0 +12683,15566,28306,28305,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,4,7.404818067006945,7.703739775003427,0,2,0,-9,7,0,-7,-178.7568753417818,0,0,0,59,1,3,1,3,3,2019,1,2,17,6,50,55,15,1,6,1,0,5.263609568694147,5.263609568694147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,59.13,3,1,0,0,10,3,1,344,0,0,0 +12683,15566,28307,-9,28305,28306,5,1,1,17,2,0,1,1,2,0,7,2,0,4,6.009491229342877,5.978231930406375,0,2,0,0,0,-9,0,-1047.882563893912,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,1,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.6187902765112689,0,0,0,57.16,56.15,7,1,0,0,10,3,1,344,0,0,0 +12683,15567,28308,-9,28305,28306,3,1,1,22,2,0,1,0,1,1,2,1,0,4,8.404339416255077,8.513734007657209,0,3,0,0,0,-9,0,-950.7258350154369,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,50,0,15,1,0,-9,1,10.50435733805864,10.50435733805864,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,55.68,6,1,0,0,10,4,1,269,0,0,0 +12683,15568,28309,-9,28305,28306,4,1,1,19,2,0,1,1,2,0,7,2,0,4,8.105844097974646,7.970253562456556,0,3,0,0,0,-9,0,-1000.213509327715,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,40,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.4,60.75,6,1,0,0,10,3,1,1860,0,0,0 +12684,15569,28310,28311,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,28,0,-18,78.69984914423976,0,0,0,77,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.639772393816478,0,14.2553143239582,3,57.16,56.15,6,1,0,0,9,3,1,1466,0,0,0 +12684,15569,28311,28310,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,4,0,7.855742139893033,7.860849084332458,1,0,-9,28,0,18,-23.51777595417673,0,0,0,59,2,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.40938538501049,7.878021009616707,0,0,51.13,53.41,6,1,0,0,9,3,1,1466,0,0,0 +12684,15570,28312,-9,28310,28311,3,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.185881834647432,8.589221396227384,0,3,0,0,0,-9,0,-998.0800215820748,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,50,38,15,1,0,-9,1,8.150621593412508,8.150621593412508,0,0,0,0,0,0,0,1,1,0,4.95814454557138,0,0,0,55.21,55.89,5,1,0,0,9,4,1,220,0,0,0 +12685,15571,28313,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,2,0,6.999959422150397,7.152516601833889,3,0,0,0,-9,0,-954.5695477183691,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.63753724183659,6.747616993233563,0,0,60.95,16.59,5,1,0,0,11,2,1,332,0,0,0 +12686,15572,28314,-9,28316,28317,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.2355010459763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,4,1,588.75,0,0,0 +12686,15572,28315,-9,28316,28317,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.7872089257456,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,9,4,1,588.75,0,0,0 +12686,15572,28316,28317,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.870984337377709,8.011922285667531,0,2,0,-9,11,0,-5,36.83438102280742,0,0,1,39,2,3,1,2,1,2019,1,1,8,0,24,36,15,1,0,1,0,12.35171541422818,12.35171541422818,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,6,2,0,0,9,4,1,588.75,0,0,0 +12686,15572,28317,28316,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,3,8.708729165841463,8.621857017647518,0,2,0,-9,11,0,5,-50.06206638590722,0,0,0,34,2,4,1,2,2,2019,1,2,11,0,35,35,15,1,0,1,0,16.47460707474437,16.47460707474437,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,56.11,4,1,0,0,9,4,1,588.75,0,0,0 +12687,15573,28318,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,3,8.626658870582801,8.400379012752103,0,3,0,0,0,-9,0,-996.3739044440183,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,50,15,1,0,-9,0,14.07821354254298,14.07821354254298,0,0,0,0,0,0,0,0,0,0,.3683573509419256,0,0,0,52,54.51,6,1,0,0,2,5,0,1036,0,0,0 +12688,15574,28319,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,7.455606777369473,7.495816688850234,3,0,0,0,-9,0,-1044.41139256365,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,9.408972084219906,0,0,0,3.694417148861303,31.93680442721418,1,1,0,0,7.410337907060552,0,0,63.81,20.79,6,1,0,0,12,3,0,533,0,0,0 +12689,15575,28320,28321,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,3,7.918897260433565,7.748328623980997,0,1,0,-9,8,0,3,52.70212271567829,0,0,0,57,2,3,3,3,3,2019,2,2,6,0,38,38,15,1,0,4,0,11.07721704641962,11.07721704641962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.11,39.83,5,1,0,0,4,4,1,884.5,0,0,0 +12689,15575,28321,28320,-9,-9,2,1,0,57,1,0,0,0,2,-9,4,3,0,3,0,7.186782690272468,7.470429990137614,1,0,-9,8,0,-3,-12.34879962091903,0,0,0,60,2,3,1,2,1,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.361037121695574,0,0,47.97,48.24,6,1,0,0,4,4,1,884.5,0,0,0 +12689,15576,28322,-9,28321,28320,3,1,1,22,2,0,0,0,2,-9,2,1,0,4,7.539541915321764,7.787392366439243,0,3,0,0,0,-9,0,-1027.263459784781,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,44,15,1,0,-9,1,6.497031698918838,6.497031698918838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,5,1,0,0,4,3,1,320,0,0,0 +12689,15577,28323,-9,28321,28320,4,1,0,19,2,0,0,0,2,-9,2,1,0,2,7.833421366460581,8.168289020736585,0,3,0,0,0,-9,0,-883.9250661772269,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,25,20,15,1,3,-9,1,13.98886940827106,13.98886940827106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.87,42.28,5,1,0,0,4,4,1,114,0,0,0 +12690,15578,28324,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-874.0606694557672,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.06,38.71,1,1,0,0,10,1,0,241,0,0,0 +12691,15579,28325,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1046.477683255839,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.344753972188765,0,0,0,53.1,25.99,3,1,0,0,6,1,0,934,0,0,0 +12692,15580,28326,28329,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,7.691474430215433,7.427422226976425,0,2,0,-9,21,0,2,-21.32313340029854,0,0,0,46,2,5,1,-9,2,2019,1,2,12,0,22,22,15,1,0,1,0,10.55449923112019,10.55449923112019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,5,2,1,478.5,0,0,0 +12692,15580,28327,-9,28326,28329,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.080129132143,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,5,2,1,478.5,0,0,0 +12692,15580,28328,-9,28326,28329,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.1199575426084,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,5,2,1,478.5,0,0,0 +12692,15580,28329,28326,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,5,0,0,0,2,0,-9,19,0,-2,33.67407742913029,0,0,0,48,2,3,1,2,1,2019,1,1,6,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,2,0,0,5,2,1,478.5,0,0,0 +12693,15581,28330,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,7.477765890387188,7.320332881637969,3,0,0,0,-9,0,-902.5525214158936,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,3.438431885077216,0,0,0,3.013135625229721,51.39116252535418,1,1,0,.7485589026575308,7.734981764121144,0,0,48,34,6,1,0,0,5,3,1,290,0,0,0 +12694,15582,28331,28332,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,6.737220405951494,6.635990813524545,1,0,-9,58,0,-1,3.938537053287073,0,0,0,78,2,3,3,3,-9,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.594505765528815,6.562337115518726,0,0,63.17,32.94,6,1,0,0,2,2,1,462.5,0,0,0 +12694,15582,28332,28331,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,5.955885239756076,6.2103149632162,1,0,-9,58,0,1,-46.10097643266897,0,0,0,77,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.844894194905769,5.895005204038988,0,0,55.77,36.73,7,1,0,0,2,2,1,462.5,0,0,0 +12695,15583,28333,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,4,3,0,5,0,8.230594658593818,8.492447821763889,3,0,0,0,-9,0,-1059.426436604208,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.916634886578099,8.661783920578248,0,3,62.39,56.71,6,1,0,0,9,4,1,307,0,0,0 +12696,15584,28334,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,3,8.208044547942485,8.566564788336207,0,3,0,0,0,-9,0,-972.0886204605855,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,3,38,39,15,1,3,-9,0,11.6532243075441,11.6532243075441,0,0,0,0,0,0,0,0,0,0,5.335771758129909,0,0,0,52.99,51.28,6,5,0,0,8,4,0,1159,0,0,0 +12697,15585,28335,28339,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,3,7.893325901021889,7.882088477068665,0,2,0,-9,16,-9,3,109.9820729863894,-9,0,0,39,2,3,1,3,3,2019,1,1,11,0,38,0,15,1,0,1,0,7.193137901493786,7.193137901493786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,3,0,0,4,3,0,916,0,0,0 +12697,15585,28336,-9,28339,28335,3,1,1,17,2,0,2,0,2,-9,11,3,0,4,7.008356325604824,7.147907865219286,0,2,0,-9,0,-9,0,-1017.910111790171,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,40,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,51.1,5,3,0,0,4,3,0,916,0,0,0 +12697,15585,28337,-9,28339,28335,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-888.9086569037624,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,3,0,916,0,0,0 +12697,15585,28338,-9,28339,28335,5,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1001.771812353077,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,3,0,916,0,0,0 +12697,15585,28339,28335,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,3,8.026843618787291,7.597359804698755,0,2,0,-9,16,-9,-3,17.90344427636824,-9,0,1,42,2,3,1,3,3,2019,1,2,10,0,37,0,15,1,0,1,0,8.913258249207029,8.913258249207029,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,3,0,0,4,3,0,916,0,0,0 +12698,15586,28340,28341,-9,-9,1,1,1,37,1,0,3,0,1,-9,2,1,0,4,8.97657092615254,9.228215106689914,0,2,0,-9,18,0,1,-5.923810517502417,0,0,0,36,2,4,1,1,3,2019,1,2,11,1,42,55,15,1,1,1,0,25.77405917166748,25.77405917166748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,10,5,1,764.6666666666666,0,0,0 +12698,15586,28341,28340,-9,-9,2,1,0,36,1,0,3,0,2,-9,2,1,0,4,7.70624205539019,7.730655529297852,0,2,0,-9,18,0,-1,-157.9662704578396,0,0,1,37,1,4,1,2,3,2019,1,1,5,0,31,25,15,1,0,1,0,9.223522143239299,9.223522143239299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.44,52.99,5,1,0,0,10,5,1,764.6666666666666,0,0,0 +12698,15586,28342,-9,28341,28340,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.7763334848893,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,10,5,1,764.6666666666666,0,0,0 +12699,15587,28343,28344,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,2,7.79455712140343,7.432929160495482,0,1,0,-9,30,0,-4,60.32955081928809,0,0,0,56,1,5,1,2,2,2019,1,2,11,2,45,43,15,1,2,1,0,8.488228326054681,8.488228326054681,0,0,0,0,0,0,0,0,0,0,0,0,8.755314107361382,3,52.96,38.06,4,1,0,1,5,5,1,601,0,0,0 +12699,15587,28344,28343,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,5,8.819172101443444,8.668315419202804,6.345439367817197,1,0,-9,30,0,4,-45.55847202606429,0,0,0,52,2,2,1,2,2,2019,1,1,6,0,41,43,15,1,0,1,0,17.58853005604664,17.58853005604664,0,0,0,0,0,0,0,0,0,0,0,6.863508092997431,0,3,57.06,57.76,6,1,0,0,5,5,1,601,0,0,0 +12699,15588,28345,-9,28343,28344,3,1,0,25,2,0,0,0,2,-9,2,1,0,5,7.782531465012887,8.027079252491378,0,3,0,0,0,-9,0,-999.236420154502,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,39,35,15,1,0,-9,1,6.664643771657977,6.664643771657977,0,0,0,0,0,0,0,0,0,0,2.461213609215692,0,0,0,60.02,56.42,6,1,0,0,5,3,1,579,0,0,0 +12699,15589,28346,-9,28343,28344,4,1,1,24,2,0,0,0,2,1,2,1,0,5,8.023818939110463,8.234268544923141,0,3,0,0,0,-9,0,-1038.144994171003,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,42,0,15,1,5,-9,1,8.036788231296764,8.036788231296764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.36,65.34999999999999,3,1,0,1,5,3,1,960,0,0,0 +12700,15590,28347,28348,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,4,8.484102109658906,8.623968695021031,0,1,0,-9,7,0,3,91.53956624683536,0,0,0,43,3,3,1,-9,-9,2019,1,1,9,0,40,30,15,1,1,1,0,13.34176092238878,13.34176092238878,0,0,0,0,0,0,0,1,1,0,3.902085387422111,0,0,0,52,55,6,1,0,0,12,4,0,609,0,0,0 +12700,15590,28348,28347,-9,-9,1,1,0,43,1,0,0,0,3,-9,2,1,0,3,7.647965282527878,7.351533628919682,0,1,0,-9,7,0,-3,-49.97299214234082,0,0,1,46,3,4,1,-9,3,2019,1,2,12,0,30,39,15,1,0,1,0,6.831920688385547,6.831920688385547,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.13,40.48,6,1,0,0,12,4,0,609,0,0,0 +12701,15591,28349,-9,-9,-9,1,1,1,28,2,0,0,0,1,0,7,2,0,4,0,0,0,1,0,-9,2,0,1,9.482100316094751,-9,1,0,-9,-9,-9,-9,1,1,2019,3,2,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.296267073198637,0,0,0,30.98,62.65,4,1,0,0,8,3,0,524,0,0,0 +12701,15592,28350,-9,-9,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,4,8.114143978567833,8.345461065387402,0,1,0,-9,2,0,-1,164.1629439918958,-9,1,0,-9,-9,-9,-9,-9,-9,2019,2,1,10,0,64,0,15,1,1,-9,0,6.799081502109141,6.799081502109141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,5,0,0,8,3,0,341,0,0,0 +12702,15593,28351,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,3,8.468099641579766,8.238490143370118,0,3,0,0,0,-9,0,-899.1608906330868,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,10,1,50,61,15,1,1,-9,0,13.11286066770153,13.11286066770153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,4,1,0,0,2,5,0,320,0,0,0 +12703,15594,28352,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,2,9.516222739429205,9.446334658844995,0,3,0,-9,0,1,0,-905.2228581321355,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,70,70,15,1,0,-9,0,22.75525387360215,22.75525387360215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.74,40.91,6,1,0,0,7,5,0,2142,0,0,0 +12704,15595,28353,28354,-9,-9,1,1,1,52,1,0,1,0,1,-9,1,1,0,5,7.944384492369714,8.054319651047688,0,2,0,-9,9,0,14,-101.5087292651975,0,0,0,38,2,5,3,2,1,2019,2,2,9,0,55,50,15,1,0,3,0,8.715185502105857,8.715185502105857,0,0,0,0,0,0,0,0,0,0,1.925097071138749,0,5.408812043571263,3,46.99,58.37,6,1,0,0,7,3,1,426.3333333333333,0,0,0 +12704,15595,28354,28353,-9,-9,2,1,0,38,1,0,1,0,2,-9,6,3,0,5,0,0,0,2,0,-9,9,0,-14,-50.91031225556027,0,0,1,52,1,5,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.35,57.84,6,1,0,0,7,3,1,426.3333333333333,0,0,0 +12704,15595,28355,-9,28354,28353,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.9114131746896,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,7,3,1,426.3333333333333,0,0,0 +12705,15596,28356,28357,-9,-9,1,1,0,61,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,24,0,4,127.4663082506968,0,0,0,57,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.150833856751264,0,17.12088346316008,3,61.27,46.03,6,1,0,0,12,5,1,486,0,0,0 +12705,15596,28357,28356,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,4,0,9.436940796116154,9.430435780223894,1,0,-9,10,0,-4,21.40548462143444,0,0,0,61,3,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101440920980617,9.633015598789722,0,0,53,54,6,1,0,0,12,5,1,486,0,0,0 +12706,15597,28358,28359,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,4,7.442288522961062,7.581484258208555,0,2,0,-9,7,0,-3,-69.26341609509845,0,0,0,53,2,4,1,3,3,2019,1,1,10,1,31,0,15,1,1,1,0,6.655568320219901,6.655568320219901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,2,1,0,0,13,3,1,513,0,0,0 +12706,15597,28359,28358,-9,-9,1,1,1,53,1,0,2,0,2,-9,2,1,0,4,8.06605616973718,8.379019266211385,0,2,0,-9,7,0,3,-1.256940669524049,0,0,0,50,2,4,1,3,3,2019,1,2,9,0,40,40,15,1,1,1,0,9.637928787735323,9.637928787735323,0,0,0,0,0,0,0,1,1,0,4.740986340200432,0,0,0,53,54,6,1,0,0,13,3,1,513,0,0,0 +12706,15597,28360,-9,28358,-9,5,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.815993026882,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,3,1,513,0,0,0 +12706,15598,28361,-9,28358,-9,3,1,1,21,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-922.7598398957902,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.69,43.77,6,1,1,1,13,1,1,980,0,0,0 +12706,15599,28362,-9,28358,-9,4,1,0,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-793.9134700173971,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.34,49.42,6,1,0,0,13,3,1,709,0,0,0 +12707,15600,28363,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,4,8.824638049799574,9.009727770523265,0,3,0,0,0,-9,0,-866.9828268721715,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,20,8,46,40,15,1,8,-9,0,24.40324975092383,24.40324975092383,0,0,0,0,0,0,0,0,0,0,5.221663987105488,0,0,0,27.36,54.89,4,3,0,0,8,5,1,327,0,0,0 +12708,15601,28364,28365,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,9.481078537856595,9.106334357659026,0,1,0,-9,30,0,1,25.99952514849634,0,0,0,49,2,4,1,-9,2,2019,1,2,11,4,51,55,15,1,4,1,0,28.18753100404819,28.18753100404819,0,0,0,0,0,0,0,0,0,0,3.920780154918126,0,0,0,40.21,58.24,5,1,0,0,10,5,1,622.5,0,0,0 +12708,15601,28365,28364,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.82966449554948,7.643728780607684,0,1,0,-9,30,0,-1,47.44085626181199,0,0,0,50,2,4,1,2,2,2019,1,1,11,0,30,30,15,1,0,1,0,10.15700196525187,10.15700196525187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.93,57.79,6,1,0,0,10,5,1,622.5,0,0,0 +12709,15602,28366,-9,-9,-9,1,1,0,58,2,0,0,0,3,-9,2,1,0,3,7.784945111753853,8.133781726714458,0,3,0,0,0,-9,0,-1033.584781651975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,40,30,15,1,1,-9,0,6.993615903089927,6.993615903089927,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.16,43.45,5,1,0,0,11,4,0,65,0,0,0 +12710,15603,28367,28368,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,6.423138969067209,6.339711619045592,1,0,-9,31,0,1,-16.48764486817109,0,0,0,78,1,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.780385988737327,6.350637630173321,116.8688070154102,1,64.15000000000001,32.53,6,1,0,0,4,4,1,217,0,0,0 +12710,15603,28368,28367,-9,-9,2,1,1,78,1,0,0,0,1,-9,4,3,0,2,0,8.375165623167229,8.711440965409611,1,0,-9,31,0,-1,5.53926187960688,0,0,0,79,2,3,3,2,3,2019,4,1,21,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.165280479037857,8.353596099548355,0,0,37.95,25.09,6,1,0,0,4,4,1,217,0,0,0 +12711,15604,28369,28370,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,3,8.419430035152653,9.004786878205756,0,2,0,-9,20,0,0,-29.20771116475439,0,0,0,42,2,2,1,3,3,2019,1,2,12,0,39,40,15,1,0,1,0,18.71004974132061,18.71004974132061,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,3,1,0,0,6,4,1,849,0,0,0 +12711,15604,28370,28369,-9,-9,2,1,0,42,1,0,2,0,2,-9,2,1,0,2,7.727241026373903,7.734368762033641,0,2,0,-9,20,0,0,33.09118310786047,0,0,1,42,2,3,1,3,3,2019,1,1,8,0,29,30,15,1,0,1,0,10.47668723671454,10.47668723671454,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.27,48.86,5,1,0,0,6,4,1,849,0,0,0 +12712,15605,28371,28372,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.622988303814807,7.250373498425187,1,0,-9,39,0,1,89.82181344574586,0,0,0,66,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.270627482793961,7.699657320995455,0,0,54.2,57.49,6,1,0,0,1,3,1,258.5,0,0,0 +12712,15605,28372,28371,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,6.779258326228423,7.180863626390738,1,0,-9,39,0,-1,-33.28526433064859,0,0,0,67,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.233954117998326,7.585619168322042,0,0,57.16,56.15,2,1,0,0,1,3,1,258.5,0,0,0 +12713,15606,28373,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,3,8.423437582925272,8.779981420869015,0,3,0,0,0,-9,0,-917.6203979711322,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,45,0,15,1,0,-9,0,12.39623850437845,12.39623850437845,0,0,0,0,0,0,0,0,0,0,0,0,3.971809386231276,3,57.33,53.46,4,1,0,0,5,5,1,1105,0,0,0 +12714,15607,28374,28375,-9,-9,1,1,1,56,1,0,0,0,3,-9,1,1,0,2,9.035870082766207,8.720445018668448,0,1,0,-9,8,0,2,-111.1265827190932,0,0,0,54,3,3,3,2,2,2019,2,2,9,0,65,60,15,1,0,3,0,13.19191055100537,13.19191055100537,0,0,0,0,0,0,0,1,0,1,2.644919372574228,0,0,0,59.7,32.49,6,1,0,0,5,5,1,960.5,0,0,0 +12714,15607,28375,28374,-9,-9,2,1,0,54,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,8,0,-2,-72.30510837449037,0,0,0,56,3,2,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.845850171245547,0,42.48008199252868,3,52.97,46.09,3,1,0,0,5,5,1,960.5,0,0,0 +12714,15608,28376,-9,28375,28374,3,1,1,26,2,0,0,0,2,-9,10,3,0,4,5.491108032963991,5.878119069100549,0,3,0,0,0,-9,0,-916.8039649291115,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.12,57.28,7,1,0,0,5,2,1,343,0,0,0 +12715,15609,28377,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1070.762892200847,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.18000000000001,43.5,7,1,0,0,12,1,0,754,0,0,0 +12716,15610,28378,-9,-9,-9,1,1,0,37,3,0,0,0,3,-9,2,1,0,3,8.540372573229758,8.449488217300122,0,3,0,-9,0,1,0,-908.6237960121633,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,45,47,15,1,0,-9,0,8.427119012536739,8.427119012536739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,4,0,0,8,4,0,227,0,0,0 +12717,15611,28379,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,2,7.507651780357777,7.872132484257408,0,3,0,0,0,-9,0,-1005.062555457513,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,25,25,15,1,1,-9,0,8.353612537111196,8.353612537111196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.42,43.32,5,4,0,1,9,3,0,301,0,0,0 +12718,15612,28380,28381,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,5,7.63859819821431,7.282423115582439,0,1,0,-9,10,0,-2,-41.399632794952,0,0,0,60,2,3,1,3,3,2019,1,1,8,0,30,30,15,1,0,1,0,7.671564142953949,7.671564142953949,0,0,0,0,0,0,0,1,1,0,1.122598929644106,0,0,0,59.43,58.05,6,1,0,0,13,5,1,872.5,0,0,0 +12718,15612,28381,28380,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,3,8.427574270338733,8.891667179949783,7.43397927539815,1,0,-9,10,0,2,221.0768627643928,0,0,0,58,2,5,1,3,2,2019,1,2,9,0,35,35,15,1,0,1,0,13.195879841102,13.195879841102,0,0,0,0,0,0,0,1,1,0,7.590038522340547,7.834951847482689,0,0,59.05,40.24,2,1,0,0,13,5,1,872.5,0,0,0 +12719,15613,28382,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,-9,0,-9,0,-1112.806511801446,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,1,0,0,11,1,1,1217,0,0,0 +12720,15614,28383,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,5,9.276594654144185,9.033811356000271,0,3,0,0,0,-9,0,-948.5172553269811,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,75,37,15,1,0,-9,0,11.42525061903953,11.42525061903953,0,0,0,0,0,0,0,0,0,0,3.878070806032358,0,0,0,51.67,60.18,6,1,0,0,12,5,1,471,0,0,0 +12721,15615,28384,28387,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.91801050410603,9.022866558792259,0,2,0,-9,27,0,1,-36.91316926348581,0,0,0,45,2,4,1,-9,-9,2019,1,1,12,0,43,39,15,1,0,1,0,18.61793723125993,18.61793723125993,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.39,54.22,5,1,0,0,2,5,1,986.75,0,0,0 +12721,15615,28385,-9,28387,28384,5,1,1,11,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-939.4686890438743,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,2,5,1,986.75,0,0,0 +12721,15615,28386,-9,28387,28384,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.392233901731,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,986.75,0,0,0 +12721,15615,28387,28384,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.241026055393052,8.221614668686902,0,2,0,-9,28,0,-1,13.19711337714373,0,0,0,46,2,4,1,3,-9,2019,1,2,8,0,41,40,15,1,0,1,0,10.01224918162607,10.01224918162607,0,0,0,0,0,0,0,1,1,0,0,0,7.500274704406275,3,49.41,58.28,6,1,0,0,2,5,1,986.75,0,0,0 +12721,15616,28388,-9,28387,28384,3,1,0,18,2,0,2,0,2,-9,7,2,0,4,7.095302740243158,7.314922611268063,0,3,0,0,0,-9,0,-1007.378730881992,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,2,2,1,909,0,0,0 +12722,15617,28389,28390,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,0,6.291009261863393,6.523006966672592,1,0,-9,6,0,7,48.46371802564845,0,0,0,66,2,4,3,2,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.884788201071955,6.398408514680275,13.01857451210179,3,47.61,20.27,4,1,0,0,2,3,1,1214.5,0,0,0 +12722,15617,28390,28389,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,7.406938725930362,7.278535551438599,1,0,-9,6,0,-7,36.98827337353104,0,0,0,73,2,1,3,2,1,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.740471298643819,7.422866345392093,9.640743226970418,3,54.2,57.49,6,1,0,0,2,3,1,1214.5,0,0,0 +12723,15618,28391,28392,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,5.486894246298039,4.980227932581356,1,0,-9,10,0,-1,-116.311261182082,0,0,0,79,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.40742491714115,4.941353870667609,0,1,43.44,48.71,1,1,0,0,11,2,1,963,0,0,0 +12723,15618,28392,28391,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,6.364877587084992,6.521973229326592,1,0,-9,10,0,1,-171.345709889791,0,0,0,78,3,3,3,3,3,2019,4,2,16,3,0,0,15,4,3,4,0,0,0,1,0,135.1782702374582,0,0,0,0,1,1,0,0,6.605709067368419,0,0,44.52,23.15,5,1,0,0,11,2,1,963,0,0,0 +12724,15619,28393,-9,28394,28395,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.438808662372,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,0,660,0,0,0 +12724,15619,28394,28395,-9,-9,1,1,0,50,1,0,1,0,3,-9,2,1,0,4,6.91881902049783,7.131468525307906,0,2,0,-9,13,0,6,15.8877380114812,0,0,0,44,2,4,1,2,3,2019,1,2,9,0,16,20,15,1,0,1,0,9.406870063762142,9.406870063762142,0,0,0,0,0,0,0,1,1,0,.6758411057188859,0,0,0,57.16,56.15,6,1,0,0,8,4,0,660,0,0,0 +12724,15619,28395,28394,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.341103106703441,8.393085255560907,0,2,0,-9,9,0,-6,-46.93864643937912,0,0,0,50,3,4,1,-9,-9,2019,1,1,9,0,45,46,15,1,0,1,0,12.67942260335812,12.67942260335812,0,0,0,0,0,0,0,1,1,0,.3073418611239055,0,0,0,57.16,56.15,6,1,0,0,8,4,0,660,0,0,0 +12725,15620,28396,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,7.604571902779329,7.048658386509874,3,0,0,0,-9,0,-1031.996649164867,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.428613333182463,0,0,56.35,51.16,7,1,0,0,1,3,1,281,0,0,0 +12726,15621,28397,28398,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,6.227505047917475,5.996665721246577,1,0,-9,9,0,1,-73.57653967493349,0,0,0,70,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.238930538153288,0,0,55.96,49.93,7,1,0,0,13,2,0,372.5,0,0,0 +12726,15621,28398,28397,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,3.008026578439874,0,0,0,71,3,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.9,40.56,7,1,0,0,13,2,0,372.5,0,0,0 +12727,15622,28399,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-953.2121632867965,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.627457351555676,3,19.01,22.64,1,3,0,1,8,1,0,2397,0,0,0 +12728,15623,28400,28401,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,7.730649877940952,8.038905134648536,1,0,-9,34,0,2,17.71807807954248,0,0,0,69,2,3,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.770646945997376,8.277567443245319,13.8995857305703,3,56.92,46.68,5,1,0,0,7,3,1,401,0,0,0 +12728,15623,28401,28400,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,5.28782954478425,5.347724181293431,1,0,-9,33,0,-2,-27.13204837285129,0,0,0,71,2,4,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.029001999337684,0,0,52,48,5,1,0,0,7,3,1,401,0,0,0 +12729,15624,28402,28403,-9,-9,2,1,0,53,1,0,1,0,1,-9,1,1,0,4,7.847350746686437,8.183042009371077,0,2,0,-9,8,0,-3,96.03554324659359,0,0,0,56,1,5,1,3,1,2019,1,1,12,0,5,45,15,1,0,1,0,60.75907983637667,60.75907983637667,0,0,0,0,0,0,0,0,0,0,8.101425009859813,0,2.721868603834366,3,49.86,55.31,6,1,0,0,12,5,1,2513,0,0,0 +12729,15624,28403,28402,-9,-9,1,1,1,56,1,0,1,0,1,-9,2,1,0,5,9.622923832276554,9.647090304779768,0,2,0,-9,8,0,3,-118.424340354922,0,0,0,53,1,4,1,2,1,2019,1,2,7,0,42,40,15,1,0,1,0,42.6429351198302,42.6429351198302,0,0,0,0,0,0,0,0,0,0,3.174779544577087,0,0,0,57.06,57.76,6,1,0,0,12,5,1,2513,0,0,0 +12729,15625,28404,-9,28402,28403,3,1,0,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-984.8706977071909,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.686871096436036,0,0,0,54.1,59.11,6,1,0,0,12,5,1,178,0,0,0 +12730,15626,28405,28406,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.175551001269287,8.132114885145466,0,1,0,-9,29,0,7,-59.3362106050925,0,0,0,44,1,4,1,3,2,2019,1,2,9,0,37,38,15,1,1,1,0,12.5628064327106,12.5628064327106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,5,1,0,0,11,5,1,1005.5,0,0,0 +12730,15626,28406,28405,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,4,8.706753233113641,8.510261243916283,0,1,0,-9,29,0,-7,62.94412791655511,0,0,1,51,2,4,1,3,1,2019,1,1,10,0,38,38,15,1,1,1,0,17.44724071075282,17.44724071075282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,5,1,0,0,11,5,1,1005.5,0,0,0 +12730,15627,28407,-9,28406,28405,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.268576409201585,7.218112018980859,0,3,0,0,0,-9,0,-991.0187213748083,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,20,15,1,2,-9,1,5.965466114371917,5.965466114371917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,5,1,0,0,11,2,1,261,0,0,0 +12731,15628,28408,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-955.7120875128833,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4607431129806339,0,0,0,46,23.63,5,1,0,0,5,1,0,330,0,0,0 +12732,15629,28409,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,3,0,6.6737172363846,6.866025719199945,3,0,0,0,-9,0,-954.5963470027725,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.763149136364161,7.031436684595565,0,0,61.79,32.24,6,1,0,0,7,2,1,4233,0,0,0 +12733,15630,28410,-9,28412,28411,6,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-943.8765847565298,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,938.3333333333334,0,0,0 +12733,15630,28411,28412,-9,-9,2,1,1,29,1,1,1,0,2,-9,2,1,0,3,7.897469116883976,7.959808363249872,0,2,0,-9,2,0,3,170.4759620657417,0,1,0,26,1,4,1,-9,-9,2019,1,1,12,0,44,20,15,1,0,1,0,7.202719329917145,7.202719329917145,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.15,55.39,4,3,0,0,6,3,1,938.3333333333334,0,0,0 +12733,15630,28412,28411,-9,-9,1,1,0,26,1,1,1,0,1,-9,1,1,0,4,6.769712820824846,6.879015956454962,0,2,0,-9,2,0,-3,-72.99033872279901,0,1,1,29,2,3,1,3,3,2019,1,2,10,0,15,30,15,1,0,1,0,6.563335624674302,6.563335624674302,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,6,3,0,0,6,3,1,938.3333333333334,0,0,0 +12734,15631,28413,28414,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,53,0,2,-114.695145937978,0,0,0,76,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.69,53.18,6,1,0,0,10,2,0,336,0,0,0 +12734,15631,28414,28413,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,7.170360556013827,6.819959217351657,1,0,-9,53,0,-2,62.83417253046274,0,0,0,78,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.70551164168279,6.77704316522,0,3,62.4,42.8,6,1,0,0,10,2,0,336,0,0,0 +12735,15632,28415,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,4,0,7.055966055141538,7.32292642083147,3,0,0,0,-9,0,-1011.552431233667,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.707416168032273,0,32.56308094004005,1,1,0,6.734339455337286,7.368512587903739,0,0,51.49,57.57,6,1,0,0,9,3,0,217,0,0,0 +12736,15633,28416,28417,-9,-9,1,1,0,30,1,1,3,0,2,-9,6,3,0,3,0,4.665242739112399,4.823680213816774,2,0,-9,1,-9,-2,32.42351051940281,-9,0,1,32,2,3,3,2,3,2019,4,4,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.775936905429607,0,0,0,46.31,51.53,6,1,0,0,9,1,0,758.4,0,0,0 +12736,15633,28417,28416,-9,-9,4,1,1,32,1,1,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,1,-9,2,-25.76544301156711,-9,0,0,30,2,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,6,1,1,0,9,1,0,758.4,0,0,0 +12736,15633,28418,-9,28416,28417,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1066.927464491241,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,758.4,0,0,0 +12736,15633,28419,-9,28416,28417,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-955.4252475255601,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,1,0,758.4,0,0,0 +12736,15633,28420,-9,28416,28417,2,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-931.7192597728182,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,758.4,0,0,0 +12737,15634,28421,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,3,8.188863546487259,8.312101623965233,0,3,0,0,0,-9,0,-969.5609862714604,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,18,5,30,30,15,1,5,-9,0,13.84297046451879,13.84297046451879,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.09,30.85,3,1,0,1,1,4,0,1159,0,0,0 +12738,15635,28422,-9,28425,28423,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1132.608202279961,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,553.75,0,0,0 +12738,15635,28423,28425,-9,-9,1,1,1,47,1,0,2,0,1,-9,2,1,0,4,9.65816833882794,9.501005247147445,0,2,0,-9,7,0,9,-68.70235290560178,0,0,0,38,2,4,3,2,2,2019,2,2,9,0,80,43,15,1,1,3,0,19.41467231334929,19.41467231334929,0,0,0,0,0,0,0,1,1,0,2.826612459127397,0,0,0,52,55,6,1,0,0,7,5,1,553.75,0,0,0 +12738,15635,28424,-9,28425,28423,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-872.2761660830975,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,1,553.75,0,0,0 +12738,15635,28425,28423,-9,-9,2,1,0,38,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,0,29.95328958679807,0,0,1,47,1,4,1,2,2,2019,3,1,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9388506110645127,0,0,0,49,56,5,1,0,0,7,5,1,553.75,0,0,0 +12739,15636,28426,-9,28427,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1146.038948011431,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,6,1,0,480.5,0,0,0 +12739,15636,28427,-9,-9,-9,1,1,0,45,2,0,1,0,2,-9,3,3,0,5,0,0,0,4,0,0,0,-9,0,-962.1717073171154,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,7,4,1,0,6,1,0,480.5,0,0,0 +12740,15637,28428,28429,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.916255311754506,7.630156347724494,0,1,0,-9,14,0,1,25.3302442665278,-9,0,0,51,2,4,1,3,3,2019,1,2,12,0,33,0,15,1,0,1,0,9.689333054838558,9.689333054838558,0,0,0,0,0,0,0,0,0,0,0,0,1.518336276792985,3,57.16,56.15,5,1,0,0,6,5,1,526,0,0,0 +12740,15637,28429,28428,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,4,8.704573226290941,9.105929625639027,0,1,0,-9,14,0,-1,41.57857578246954,-9,0,0,52,2,4,1,2,2,2019,1,1,8,0,44,0,15,1,0,1,0,15.66611172932113,15.66611172932113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,6,5,1,526,0,0,0 +12740,15638,28430,-9,28428,28429,3,1,0,27,2,0,0,0,1,-9,2,1,0,5,8.479478406149976,8.198237651809077,0,3,0,0,0,-9,0,-982.3220753086933,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,36,15,1,0,-9,1,14.01749430417164,14.01749430417164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,7,1,0,0,6,5,1,1349,0,0,0 +12741,15639,28431,28432,-9,-9,1,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,5.792420844877452,5.092465991386656,1,0,-9,49,0,2,28.6582042418156,0,0,0,79,1,2,3,2,3,2019,4,2,19,8,0,0,15,4,8,4,0,0,0,1,8.957045502777753,16.90862864834255,0,0,0,17.51330584526848,1,1,0,0,5.746046422672979,111.7182367456197,1,46.33,29.73,4,1,0,0,2,3,1,843.5,0,0,0 +12741,15639,28432,28431,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,2,0,7.837071603230301,8.360032806757275,1,0,-9,50,0,-2,-130.0126912390243,0,0,0,81,3,3,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.147038947343418,45.80843618452163,1,60.04,29.42,6,1,0,0,2,3,1,843.5,0,0,0 +12742,15640,28433,-9,28437,28435,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.441767372016,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,4,1,2196,0,0,0 +12742,15640,28434,-9,28437,28435,3,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.617751541361,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,9,4,1,2196,0,0,0 +12742,15640,28435,28437,-9,-9,1,1,1,39,1,1,3,0,2,-9,2,1,0,4,7.981725262893989,8.182488263508098,0,2,0,-9,14,0,-2,-143.6184455937099,0,0,0,41,2,3,1,2,2,2019,1,2,12,1,48,40,15,1,1,1,0,6.957066539371998,6.957066539371998,0,0,0,0,0,0,0,1,1,0,5.433465211157596,0,0,0,43.25,39.18,6,3,0,1,9,4,1,2196,0,0,0 +12742,15640,28436,-9,28437,28435,4,1,0,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.76805449624,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,9,4,1,2196,0,0,0 +12742,15640,28437,28435,-9,-9,2,1,0,41,1,1,3,0,2,-9,2,1,0,3,8.439293838832144,8.212555257681654,0,2,0,-9,14,0,2,18.21447238645117,0,0,1,39,2,4,1,-9,-9,2019,1,1,8,0,38,37,15,1,0,1,0,13.1868840618668,13.1868840618668,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,52.97,6,3,0,0,9,4,1,2196,0,0,0 +12743,15641,28438,28439,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,20,0,-5,-86.83506239648983,0,0,0,73,3,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.36,24.59,7,1,0,0,5,2,1,461,0,0,0 +12743,15641,28439,28438,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,6.391723739580185,6.606921356629127,1,0,-9,21,0,5,19.72573096712134,0,0,0,68,3,2,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.160400804392058,6.766250852198604,0,0,65.47,35.12,7,1,0,0,5,2,1,461,0,0,0 +12744,15642,28440,28441,-9,-9,2,1,1,35,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,1,-9,9,0,-9,0,0,26,2,3,3,-9,-9,2019,4,1,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,13.63860925469601,3,56.1,41.7,6,1,1,1,2,2,0,415.3333333333333,0,0,0 +12744,15642,28441,28440,-9,-9,1,1,0,26,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,0,0,-9,1,1,35,2,3,3,3,2,2019,4,2,11,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.08983934456027,3,19.18,64.19,4,1,0,1,2,2,0,415.3333333333333,0,0,0 +12744,15642,28442,-9,28441,28440,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1069.007626543522,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,2,2,0,415.3333333333333,0,0,0 +12745,15643,28443,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,2,7.559370878556242,7.731844513391027,0,3,0,0,0,-9,0,-1010.417113387331,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,39,15,1,0,-9,0,5.574874604153024,5.574874604153024,0,0,0,0,0,0,0,0,0,0,0,0,15.20001688461089,3,48.77,22.19,6,1,0,0,12,3,1,704,0,0,0 +12746,15644,28444,28445,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,3,8.507181342094864,8.866399814805318,0,2,0,-9,6,0,2,31.76358875803387,0,0,0,47,1,4,1,3,3,2019,1,2,13,2,48,50,15,1,2,1,0,15.35599845539486,15.35599845539486,0,0,0,0,0,0,0,0,0,0,2.223894550089343,0,0,0,52.41,44.88,6,1,0,0,12,5,1,563,0,0,0 +12746,15644,28445,28444,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,4,8.822064674759378,9.028417484771657,0,2,0,-9,6,0,-2,-11.97083515720908,0,0,0,49,1,3,1,2,2,2019,1,1,11,2,40,42,15,1,2,1,0,24.05730406838422,24.05730406838422,0,0,0,0,0,0,0,0,0,0,0,0,.8771403006191572,3,51.83,57.2,4,1,0,0,12,5,1,563,0,0,0 +12746,15644,28446,-9,28444,28445,4,1,1,16,2,0,1,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1016.75463444956,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.23,50.59,6,1,0,0,12,5,1,563,0,0,0 +12746,15645,28447,-9,28444,28445,3,1,1,20,2,0,1,0,2,1,2,1,0,3,6.742521258682923,6.487794962299766,0,3,0,0,0,-9,0,-965.9532062617333,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,15,0,15,1,0,-9,1,6.164206429372937,6.164206429372937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,1,0,0,12,2,1,1460,0,0,0 +12747,15646,28448,28449,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,5,6.828624195875948,8.166739551543102,7.846942134470352,1,0,-9,47,0,-1,3.740259895573267,0,0,0,68,3,5,3,3,3,2019,4,2,7,0,12,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.320744299241889,8.275794809350447,0,0,52.81,56.94,7,1,0,0,10,4,1,294.5,0,0,0 +12747,15646,28449,28448,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,47,0,1,-22.80178281818808,0,0,0,67,2,5,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.216042845981013,0,0,0,57.06,57.76,7,1,0,0,10,4,1,294.5,0,0,0 +12748,15647,28450,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-996.4306965273395,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,1.324418882808806,0,33.21158461551572,3,39.79,57.19,3,1,0,0,2,1,1,3779,0,0,0 +12748,15648,28451,-9,-9,-9,2,1,0,82,2,0,0,0,3,-9,4,3,0,1,0,4.710577065434814,4.611389990536266,3,0,0,0,-9,0,-1051.18003777045,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.586759664065858,0,0,54.39,15.72,5,1,0,0,2,2,1,286,0,0,0 +12749,15649,28452,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,-9,0,-9,0,-1059.729441045809,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,48,5,3,0,1,8,1,0,379,0,0,0 +12749,15650,28453,-9,28452,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.022023750610794,7.94448855098347,0,3,0,-9,0,-9,0,-939.2352790108811,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,0,15,1,2,-9,1,8.32216649566292,8.32216649566292,0,0,0,0,0,0,0,1,1,0,0,0,9.796962878840841,3,47,58,5,3,0,0,8,4,0,186,0,0,0 +12750,15651,28454,28455,-9,-9,2,1,1,67,1,0,0,0,2,-9,1,1,0,3,7.442688992895294,8.332387130442369,8.128431962262201,1,0,-9,6,0,1,-40.72978457659872,0,0,0,66,2,4,1,3,3,2019,1,1,11,0,20,40,15,1,0,1,0,10.45364887192689,10.45364887192689,0,0,0,0,0,0,0,1,1,0,0,8.502200839094346,0,0,57.34,47.92,6,1,0,0,11,5,1,302,0,0,0 +12750,15651,28455,28454,-9,-9,1,1,0,66,1,0,0,0,2,-9,2,1,0,4,8.723562027516186,8.928823784079537,7.076588039057344,1,0,-9,6,0,-1,-17.2996656143422,0,0,0,67,2,3,1,3,3,2019,1,2,8,0,42,43,15,1,0,1,0,15.58887047645432,15.58887047645432,0,0,0,0,0,0,0,1,1,0,0,7.395860536364256,0,0,54.79,55.86,6,1,0,0,11,5,1,302,0,0,0 +12751,15652,28456,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,7.341328636356049,7.37115053339146,3,0,0,0,-9,0,-1079.486632416972,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.87529893169741,7.139396542241506,0,0,55.12,42.1,4,1,0,0,12,3,1,580,0,0,0 +12752,15653,28457,28458,-9,-9,1,1,1,47,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,24,0,-24,0,0,0,0,71,3,2,3,3,3,2019,4,2,8,2,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,28,2,1,0,0,1,1,0,1135.5,0,0,0 +12752,15653,28458,28457,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,22,0,24,0,0,0,0,47,3,1,3,3,2,2019,4,1,12,2,0,0,15,4,2,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,131.5402823995992,1,40.37,42.45,6,1,0,0,1,1,0,1135.5,0,0,0 +12753,15654,28459,28461,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,3,8.447619335311826,8.402442406433314,0,2,0,-9,8,0,-2,20.35934094201536,0,0,0,50,2,3,1,1,1,2019,1,2,14,3,42,36,15,1,3,1,0,13.79032529197919,13.79032529197919,0,0,0,0,0,0,0,1,1,0,6.030305046186609,0,0,0,45,55.12,5,1,0,1,2,4,1,1419.666666666667,0,0,0 +12753,15654,28460,-9,28461,28459,4,1,1,16,2,0,1,0,3,-9,3,2,0,4,3.788959896208003,3.477139239716184,0,2,0,0,0,-9,0,-909.3599859458062,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0337725284109333,0,0,0,48.28,60.18,6,1,1,0,2,4,1,1419.666666666667,0,0,0 +12753,15654,28461,28459,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,3,7.884446607282128,7.802332887179446,0,2,0,-9,8,0,2,-8.684238710337892,0,0,0,48,1,3,1,1,1,2019,1,1,23,11,38,38,15,1,11,1,0,9.297206625666259,9.297206625666259,0,0,0,0,0,0,0,1,1,0,0,0,0,3,25.61,62.71,6,1,0,1,2,4,1,1419.666666666667,0,0,0 +12753,15655,28462,-9,28461,28459,3,1,1,20,2,0,1,1,2,0,7,2,0,5,6.153444379671916,5.811642241598454,0,3,0,0,0,-9,0,-1082.989936049074,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,2,1,445,0,0,0 +12754,15656,28463,28464,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,5,7.848354182573301,7.971685913444072,0,1,0,-9,1,-9,1,-.3579873459311216,-9,0,1,39,3,1,3,-9,-9,2019,2,1,4,0,29,0,15,1,0,3,0,10.75491329443459,10.75491329443459,0,0,0,0,0,0,0,1,1,0,0,0,10.5620368992708,1,53.51,60.74,7,1,0,0,12,3,0,336.5,0,0,0 +12754,15656,28464,28463,-9,-9,1,1,1,39,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,1,1,-9,-1,-18.94353724793648,0,0,0,40,2,5,1,3,3,2019,3,2,24,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.88,40.94,2,1,0,0,12,3,0,336.5,0,0,0 +12755,15657,28465,28466,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,5,0,7.18493443311664,7.511023623218287,1,0,-9,10,0,11,89.64356036281123,0,0,0,56,1,5,1,-9,-9,2019,3,1,9,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.282794656243599,6.960980197702455,0,0,60.02,56.42,6,1,0,0,12,4,1,631.5,0,0,0 +12755,15657,28466,28465,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,5,8.10289502823867,8.583869999725772,0,1,0,-9,30,0,-11,4.610474214082705,0,0,0,67,1,5,3,2,3,2019,2,2,7,0,23,23,15,1,0,4,0,19.48688553847582,19.48688553847582,0,0,0,0,0,0,0,1,1,0,2.176522381123438,0,0,0,57.06,57.76,6,1,0,0,12,4,1,631.5,0,0,0 +12756,15658,28467,28468,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,3,7.199197022740305,7.037003003029753,0,1,0,-9,6,0,0,2.642830327137232,0,0,0,54,3,2,1,3,3,2019,1,2,29,11,30,36,15,1,11,1,0,4.743614352417946,4.743614352417946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.4,53.55,4,1,0,0,13,4,1,993,0,0,0 +12756,15658,28468,28467,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,2,8.384749298692011,8.177486603654426,0,1,0,-9,6,0,0,26.82915656778094,0,0,0,54,3,3,1,-9,-9,2019,1,1,16,4,48,48,15,1,4,1,0,9.244163774960745,9.244163774960745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.7,48.99,4,1,0,0,13,4,1,993,0,0,0 +12757,15659,28469,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,5,7.991917463358548,8.156489163073017,0,3,0,0,0,-9,0,-976.1190529772601,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,15,35,15,1,1,-9,0,23.46537610357549,23.46537610357549,0,0,0,0,0,0,0,1,1,0,4.951282737408845,0,0,0,49.25,61.25,6,1,0,0,6,4,0,172,0,0,0 +12758,15660,28470,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,4,7.697612409326067,7.693418809437108,0,3,0,0,0,-9,0,-1028.342957910096,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,494,0,0,0 +12759,15661,28471,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,2,0,6.736930054498014,6.726005023807462,3,0,-9,0,-9,0,-1112.53078478847,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.720393613074614,122.4381332332292,3,28.21,40.48,1,1,0,1,10,2,1,457,0,0,0 +12759,15662,28472,-9,28471,-9,2,1,1,31,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-965.7143857382904,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.092563284509997,0,0,0,27.99,54.97,3,1,0,0,10,1,1,174,0,0,0 +12759,15663,28473,-9,28471,-9,3,1,1,37,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-1137.493786904151,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.68,56.12,2,1,0,0,10,1,1,263,0,0,0 +12759,15664,28474,-9,28471,-9,4,1,1,33,3,0,0,0,3,-9,2,1,0,3,7.658438181867147,7.656855114549977,0,3,0,-9,0,-9,0,-913.1141126798605,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,8,36,0,15,1,8,-9,1,7.599572571252551,7.599572571252551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.37,60.58,2,1,0,1,10,3,1,847,0,0,0 +12759,15665,28475,-9,-9,-9,5,1,0,33,3,0,0,0,2,-9,2,1,0,4,7.735737538564015,7.799659263286875,0,3,0,-9,0,-9,0,-957.127939103539,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,33,0,15,1,1,-9,0,9.485660192657404,9.485660192657404,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.44,65.40000000000001,6,1,0,1,10,3,1,2379,0,0,0 +12760,15666,28476,28477,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,8.033634248294488,8.510366140514273,1,0,-9,10,0,-3,-52.08069269086067,0,0,0,71,2,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,42.1090371047616,0,0,0,0,1,1,0,3.297328121350856,8.535037196711139,0,0,57.16,56.15,6,1,0,0,4,4,1,1038,0,0,0 +12760,15666,28477,28476,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,6.011813668334146,6.00297903237352,1,0,-9,48,0,3,-99.3007244435083,0,0,0,68,1,4,3,2,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.896328322989636,5.824687290468697,0,0,46.61,56.93,6,1,0,0,4,4,1,1038,0,0,0 +12761,15667,28478,-9,-9,-9,1,1,1,48,3,0,0,0,1,-9,2,1,0,5,8.855427326284465,8.582811033946637,0,3,0,0,0,-9,0,-938.3564916587804,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,39,40,15,1,7,-9,0,20.11108590872767,20.11108590872767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.1,68.28,3,1,0,0,12,5,1,819,0,0,0 +12762,15668,28479,28481,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,4,9.349755315921122,9.315943024244357,0,2,0,-9,6,0,2,55.60278724562395,0,0,0,38,1,5,1,-9,-9,2019,1,1,9,0,38,41,15,1,1,1,0,34.68098928704261,34.68098928704261,0,0,0,0,0,0,0,0,0,0,1.410889651659774,0,0,0,52,56,5,1,0,0,9,5,1,1592,0,0,0 +12762,15668,28480,-9,28481,28479,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-882.4086926953911,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,9,5,1,1592,0,0,0 +12762,15668,28481,28479,-9,-9,1,1,0,38,1,0,2,0,1,-9,1,1,0,5,6.824493571384647,6.434059229703644,0,2,0,-9,18,0,-2,-195.8550750832929,0,0,1,40,1,4,1,3,2,2019,1,2,8,0,16,8,15,1,0,1,0,5.603640596076545,5.603640596076545,0,0,0,0,0,0,0,0,0,0,2.670349230028696,0,0,0,57.06,57.76,6,1,0,0,9,5,1,1592,0,0,0 +12762,15668,28482,-9,28481,28479,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.3090434958302,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,1592,0,0,0 +12763,15669,28483,28484,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,3,7.758181481998418,7.735227059530777,0,1,0,-9,44,0,0,94.16981508914961,-9,0,0,61,2,3,1,3,3,2019,1,2,10,0,30,0,15,1,1,1,0,9.114164639771349,9.114164639771349,0,0,0,0,0,0,0,0,0,0,5.018541829480411,0,0,0,51,48,5,1,0,0,13,4,1,3357.5,0,0,0 +12763,15669,28484,28483,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.922253577839272,8.158118469571169,0,1,0,-9,44,0,0,84.18729285153113,0,0,0,61,3,3,1,3,3,2019,1,1,11,0,33,25,15,1,0,1,0,7.095504814005306,7.095504814005306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.26,38.16,6,1,0,0,13,4,1,3357.5,0,0,0 +12764,15670,28485,28487,-9,-9,1,1,1,45,1,0,2,0,2,-9,1,1,0,3,6.665840347853698,6.522079349011778,0,2,0,-9,1,-9,0,67.34149698648686,-9,0,0,45,2,2,1,2,3,2019,1,2,14,3,63,0,15,1,3,1,0,1.122835200769521,1.122835200769521,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.26,48.82,6,1,0,0,10,2,1,775.5,0,0,0 +12764,15670,28486,-9,28487,28485,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1029.674292601813,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,2,1,775.5,0,0,0 +12764,15670,28487,28485,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,2,7.033363660964532,7.00193910807755,0,2,0,-9,1,-9,0,-26.12447941331333,-9,0,0,45,2,3,1,3,2,2019,1,1,9,0,16,0,15,1,0,1,0,6.623556636654579,6.623556636654579,0,0,0,0,0,0,0,1,1,0,2.549748726512653,0,0,0,45.45,49.66,6,1,0,0,10,2,1,775.5,0,0,0 +12764,15670,28488,-9,28487,28485,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1095.180809269747,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,2,1,775.5,0,0,0 +12765,15671,28489,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,7.964983211769044,7.645956187365917,3,0,0,0,-9,0,-905.4995048080802,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.366738986107921,7.609590724980207,0,0,56.05,18.97,3,1,0,0,9,3,1,271,0,0,0 +12766,15672,28490,-9,28492,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1092.479873537164,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,13,2,0,316,0,0,0 +12766,15672,28491,-9,28492,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-910.7621395429614,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,2,0,316,0,0,0 +12766,15672,28492,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,3,7.074503841703984,7.011537197857802,0,4,0,0,0,-9,0,-1058.868690785435,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,16,15,1,0,-9,0,5.900522382147332,5.900522382147332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.27,46.93,4,1,0,0,13,2,0,316,0,0,0 +12767,15673,28493,-9,-9,-9,1,1,1,20,2,0,0,1,2,-9,7,2,0,4,0,7.43888345084588,7.751964398695699,3,0,-9,0,-9,0,-885.6526939018249,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.901592592503882,0,0,0,40.09,57.36,4,3,0,0,7,3,0,2254,0,0,0 +12768,15674,28494,28495,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,6.834785517331798,7.242817285005295,1,0,-9,46,0,-1,-86.60653002139135,0,0,0,72,1,4,3,2,2,2019,4,1,24,12,0,0,15,4,12,4,0,0,0,1,5.766095161128499,7.344025381576748,0,0,0,0,1,1,0,4.166397154282172,6.923102424136474,0,0,36.19,42.77,4,1,0,0,6,3,1,223.5,0,0,0 +12768,15674,28495,28494,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,7.910376306781441,7.387895478926144,1,0,-9,46,0,1,-39.31768855285944,0,0,0,71,2,3,3,2,2,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.899055958385969,7.40589294136867,0,0,44.26,59.43,6,1,0,0,6,3,1,223.5,0,0,0 +12769,15675,28496,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,4,8.260645704935937,8.21128910042675,0,3,0,0,0,-9,0,-908.4414758640401,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,38,38,15,1,1,-9,0,11.98032660187419,11.98032660187419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.45,42.52,5,1,0,1,13,4,1,280,0,0,0 +12769,15676,28497,-9,28496,-9,2,1,0,22,2,0,0,0,2,1,2,1,0,5,7.907398488064011,7.859743611318905,0,3,0,0,0,-9,0,-1029.061672567682,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,40,0,15,1,0,-9,1,8.619173278923272,8.619173278923272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,1,1240,0,0,0 +12769,15677,28498,-9,28496,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.637090705296358,8.039080008672725,0,3,0,0,0,-9,0,-935.798433189907,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,30,15,1,2,-9,1,7.252001900464506,7.252001900464506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,13,3,1,152,0,0,0 +12770,15678,28499,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,3,7.920062992003266,8.028449414029444,0,4,0,0,0,-9,0,-957.2896679595588,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,45,35,15,1,2,-9,0,8.199673635402132,8.199673635402132,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,56.03,2,1,0,0,12,3,1,985,0,0,0 +12770,15678,28500,-9,28499,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1054.113728747363,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,3,1,985,0,0,0 +12771,15679,28501,28502,-9,-9,2,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,6.484066549060708,6.477098693758294,1,0,-9,8,0,-1,-144.1538036355853,0,0,0,82,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,5.760417867005632,0,0,0,61.69947150933696,1,1,0,6.678547641558436,6.452020200343658,0,0,58.82,39.12,7,1,0,0,9,3,1,2366,0,0,0 +12771,15679,28502,28501,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.004395687271601,7.667027275357846,1,0,-9,61,0,1,96.56868986572721,0,0,0,81,2,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,5.55351885220125,0,0,0,0,44.81592803036389,1,1,0,4.648222588808472,7.471045089287732,1.672514383092438,1,61.43,43.34,6,1,0,0,9,3,1,2366,0,0,0 +12772,15680,28503,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-931.1686063859397,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.95,30.1,2,1,0,0,13,1,0,911,0,0,0 +12773,15681,28504,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1136.645108946063,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.3,20.24,1,4,0,1,8,1,0,555,0,0,0 +12774,15682,28505,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-991.2923478078593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,11,1,1,639,0,0,0 +12775,15683,28506,-9,-9,-9,3,1,1,26,2,0,0,0,1,-9,2,1,0,5,7.426789020362116,7.801392810768141,0,3,0,0,0,-9,0,-994.4305094486914,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,36,31,15,1,0,-9,1,6.200352226243089,6.200352226243089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.66,56.94,7,4,0,0,8,3,0,205,0,0,0 +12776,15684,28507,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1021.879913366105,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,6,1,0,813,0,0,0 +12777,15685,28508,28509,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-1,0,0,0,0,74,3,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.61,41.07,5,1,0,0,13,1,0,242,0,0,0 +12777,15685,28509,28508,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,1,0,0,0,0,73,2,4,3,3,2,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,13,1,0,242,0,0,0 +12778,15686,28510,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,3,8.227719120892472,8.023463975505621,0,3,0,-9,0,-9,0,-989.6998826855795,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,50,0,15,1,1,-9,0,7.206846975666137,7.206846975666137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.81,53.54,4,1,0,0,10,4,0,1529,0,0,0 +12779,15687,28511,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,6.897090766913546,6.750348337581214,3,0,0,0,-9,0,-963.9063648491606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.349556384212335,6.544649279949087,0,0,54.96,53.17,6,1,0,0,8,2,1,659,0,0,0 +12780,15688,28512,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,4,0,5.37469612568901,5.354718528695097,3,0,0,0,-9,0,-959.902802558468,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.180603571267028,0,0,54.79,55.86,7,1,0,0,2,2,0,1139,0,0,0 +12781,15689,28513,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,2,1,0,3,8.087611058621967,7.924194154246907,0,4,0,0,0,-9,0,-957.7859167836643,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,22,10,21,21,15,1,10,-9,0,15.03016126223595,15.03016126223595,0,0,0,0,0,0,0,1,1,0,6.60871413634128,0,0,0,36.23,54.97,3,1,0,1,6,3,1,787,0,0,0 +12781,15689,28514,-9,28513,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1026.147485295732,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,6,3,1,787,0,0,0 +12782,15690,28515,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-801.7820031549327,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,6,1,0,1,13,1,1,1809,0,0,0 +12783,15691,28516,-9,-9,-9,1,1,1,45,3,0,0,0,3,-9,2,1,0,4,8.549964812911565,8.475158090527993,0,3,0,0,0,-9,0,-942.3425414129654,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,40,40,15,1,0,-9,0,12.12035294954407,12.12035294954407,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,794,0,0,0 +12784,15692,28517,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,3,8.54129109541215,8.544151468724161,0,3,0,0,0,-9,0,-908.979624332987,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,50,50,15,1,0,-9,0,12.14299055133776,12.14299055133776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,6,1,0,0,12,5,1,180,0,0,0 +12785,15693,28518,-9,-9,-9,1,1,1,87,3,0,0,0,1,-9,4,3,0,5,0,9.210154216984154,9.324879878275858,3,0,0,0,-9,0,-1111.538769985056,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.924672004097157,9.245886749771406,0,0,57.65,56.13,7,1,0,0,11,5,1,611,0,0,0 +12786,15694,28519,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1043.543316008277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,7,1,0,0,1,1,0,1529,0,0,0 +12787,15695,28520,-9,28523,28524,3,1,0,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-916.5514557018577,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,11,2,1,484.8,0,0,0 +12787,15695,28521,-9,28523,28524,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.768313758442,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,484.8,0,0,0 +12787,15695,28522,-9,28523,28524,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-855.1020417161765,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,1,484.8,0,0,0 +12787,15695,28523,28524,-9,-9,1,1,0,35,1,0,3,0,3,-9,2,1,0,4,7.099808239541081,6.948592668695511,0,2,0,-9,6,0,-7,79.54585915445404,0,0,1,42,2,3,1,-9,-9,2019,1,2,11,0,20,18,15,1,2,1,0,7.576784714239282,7.576784714239282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,11,2,1,484.8,0,0,0 +12787,15695,28524,28523,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,3,6.962558996079513,7.416331734924492,0,2,0,-9,6,0,7,111.4865230169261,0,0,0,35,3,4,1,-9,-9,2019,1,1,9,2,32,32,15,1,2,1,0,5.779964629932073,5.779964629932073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.12,39.31,3,1,0,0,11,2,1,484.8,0,0,0 +12788,15696,28525,-9,-9,-9,1,1,1,87,3,0,0,0,1,-9,4,3,0,3,0,5.483924133623935,5.302193269143853,3,0,-9,0,1,0,-1195.187249618442,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.756030792809959,5.24389263973023,0,0,58.08,40.76,6,1,0,0,10,2,1,403,0,0,0 +12789,15697,28526,28527,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,5.784146406317826,5.799755395095329,1,0,-9,6,0,7,-4.07673824838492,0,0,0,68,1,5,1,-9,-9,2019,3,1,9,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.743765322902515,5.609840719524271,0,0,54,46,5,2,0,0,7,3,1,1318.5,0,0,0 +12789,15697,28527,28526,-9,-9,1,1,0,68,1,0,0,0,1,-9,2,1,0,5,6.949219094136168,8.006269055533664,6.787997085240587,1,0,-9,6,0,-7,-117.6496016680172,0,0,0,75,3,3,3,2,2,2019,2,2,9,0,2,20,15,1,0,4,0,88.12578267543786,88.12578267543786,0,0,0,0,0,0,0,1,1,0,2.727076660568347,6.556261135659276,0,0,52.27,58.55,6,1,0,0,7,3,1,1318.5,0,0,0 +12790,15698,28528,28530,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,5,7.762181541529932,7.727957231448228,0,2,0,-9,9,0,-2,-3.175586136301773,0,0,1,36,2,4,1,2,2,2019,1,2,7,0,23,23,15,1,0,1,0,18.75200211035539,18.75200211035539,0,0,0,0,0,0,0,0,0,0,0,0,3.27212115211879,3,51.73,58.82,7,1,0,0,11,5,1,559.3333333333334,0,0,0 +12790,15698,28529,-9,28528,28530,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.2299218558724,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,11,5,1,559.3333333333334,0,0,0 +12790,15698,28530,28528,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,4,9.762422458428899,10.00704766686748,4.567133925969809,2,0,-9,9,0,2,47.01207456182306,0,0,0,34,2,5,1,-9,-9,2019,1,1,12,0,45,50,15,1,0,1,0,56.31751717747181,56.31751717747181,0,0,0,0,0,0,0,0,0,0,4.785346716708208,0,0,0,57.73,54.53,5,1,0,0,11,5,1,559.3333333333334,0,0,0 +12791,15699,28531,-9,-9,-9,1,1,1,52,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-888.8353429791686,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,6,1,1,0,13,1,0,1169,0,0,0 +12792,15700,28532,-9,28536,28535,4,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.9098005026592,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,8,2,0,407.3333333333333,0,0,0 +12792,15700,28533,-9,28536,28535,3,1,0,11,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1016.29671261505,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,8,2,0,407.3333333333333,0,0,0 +12792,15700,28534,-9,28536,28535,6,1,1,17,2,0,4,1,2,-9,7,2,0,4,6.121076318768703,6.296053574413545,0,2,0,-9,0,-9,0,-1069.503901540701,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.533435409061023,0,0,0,57.16,56.15,2,2,0,0,8,2,0,407.3333333333333,0,0,0 +12792,15700,28535,28536,-9,-9,2,1,1,34,1,0,4,0,3,-9,2,1,0,4,8.215060477323142,8.0300620438646,0,2,0,-9,6,0,-2,-15.21965348927787,0,0,0,36,3,4,3,2,2,2019,2,1,6,0,38,42,15,1,0,3,0,10.9627238539297,10.9627238539297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.28,5,4,0,0,8,2,0,407.3333333333333,0,0,0 +12792,15700,28536,28535,-9,-9,1,1,0,36,1,0,4,0,3,-9,3,3,0,4,0,4.283811124487864,4.222683981444615,2,0,-9,6,0,2,-42.69149675155112,0,0,1,34,3,4,1,1,2,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.822460671909072,0,0,0,37,50.59,3,2,1,0,8,2,0,407.3333333333333,0,0,0 +12792,15700,28537,-9,28536,28535,5,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.1077256778408,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,2,0,407.3333333333333,0,0,0 +12793,15701,28538,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1067.096899543816,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,8.6,2,1,0,1,2,1,0,109,0,0,0 +12794,15702,28539,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,3,0,6.271756936588384,6.563476046747778,3,0,0,0,-9,0,-1031.864175413938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.548885547745299,6.362430429181163,0,0,59.01,44.42,7,2,0,0,9,2,1,3236,0,0,0 +12795,15703,28540,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,4,0,8.265794583139431,8.265473981117482,3,0,0,0,-9,0,-1078.687083931733,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25337322670228,8.438616302209772,12.85173243097938,3,49.97,56.66,6,1,0,0,4,4,1,242,0,0,0 +12796,15704,28541,-9,28548,28547,5,1,0,9,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.428739229706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28542,-9,28548,28547,4,1,0,11,2,1,6,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1039.375178869457,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28543,-9,28548,28547,3,1,0,12,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1097.507918464242,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28544,-9,28548,28547,6,1,0,5,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.106064454409,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28545,-9,28548,28547,8,1,0,1,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-836.9635037655482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28546,-9,28548,28547,7,1,1,4,2,1,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.6137906266969,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28547,28548,-9,-9,2,1,1,36,1,1,6,0,2,-9,2,1,0,4,7.82159964987109,7.509879268373418,0,2,0,-9,8,0,6,24.95703347591579,0,0,0,30,2,5,3,3,3,2019,2,1,7,0,38,0,15,1,0,3,0,7.695421203384694,7.695421203384694,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,10,2,0,455.625,0,0,0 +12796,15704,28548,28547,-9,-9,1,1,0,30,1,1,6,0,2,-9,6,3,0,5,0,0,0,2,0,-9,8,0,-6,-75.17955335457559,0,0,1,36,2,4,1,3,3,2019,3,2,3,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.02,56.42,7,1,0,0,10,2,0,455.625,0,0,0 +12797,15705,28549,28550,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,2,0,5.984381302340042,6.04936215780088,1,0,-9,47,0,3,-166.8773516538652,0,0,0,67,2,3,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.024922910901952,6.119000657939801,0,0,59.28,39.3,7,1,0,0,6,2,1,750.5,0,0,0 +12797,15705,28550,28549,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.743663608581205,6.775574569053669,1,0,-9,47,0,-3,-5.112228097323002,0,0,0,70,3,2,3,2,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.684008351343329,6.482858126792385,0,0,58.31,31.47,6,1,0,0,6,2,1,750.5,0,0,0 +12798,15706,28551,28552,-9,-9,1,1,1,65,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,45,0,4,0,0,0,0,61,3,3,3,-9,-9,2019,4,2,10,0,0,20,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,3,0,0,4,1,1,598.5,0,0,0 +12798,15706,28552,28551,-9,-9,2,1,0,61,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-4,0,0,0,0,65,3,3,3,3,3,2019,4,1,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,0,0,4,1,1,598.5,0,0,0 +12798,15707,28553,28554,28552,28551,6,1,1,29,1,0,2,0,1,-9,2,1,0,4,8.841528229527791,8.705316094072423,0,2,0,-9,2,0,8,-18.6134475390608,0,1,0,21,2,4,2,3,3,2019,2,9,10,0,40,0,15,1,1,2,0,17.34061368739905,17.34061368739905,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,5,3,0,0,4,4,1,674.5,0,0,0 +12798,15707,28554,28553,-9,-9,9,1,0,21,1,0,2,1,2,0,7,2,0,4,0,0,0,2,0,-9,2,0,-8,-45.31305067317712,-9,1,1,29,1,4,1,-9,-9,2019,3,6,11,0,0,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,5,0,0,4,4,1,674.5,0,0,0 +12798,15708,28555,-9,28557,28558,5,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.296389250373,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,3,1,993.5,0,0,0 +12798,15708,28556,-9,28557,28558,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.1216640309349,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,3,1,993.5,0,0,0 +12798,15708,28557,28558,-9,-9,3,1,0,35,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-2,22.42473610760897,0,0,1,37,2,4,1,3,2,2019,3,8,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.9,40.56,6,3,0,0,4,3,1,993.5,0,0,0 +12798,15708,28558,28557,28552,28551,8,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.222357095249922,8.069384078291959,0,2,0,-9,4,0,2,-71.00850912848762,0,0,0,35,3,3,3,3,3,2019,2,3,10,0,40,24,15,1,1,3,0,8.766167089392509,8.766167089392509,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,4,3,1,993.5,0,0,0 +12798,15709,28559,-9,-9,-9,7,1,0,44,3,0,2,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-929.156130543304,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,5,0,0,4,1,1,510,0,0,0 +12799,15710,28560,28561,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,4,8.737177371707158,8.572541172059037,0,1,0,-9,30,0,-2,-18.29512007520977,0,0,0,48,1,3,1,2,2,2019,1,2,11,0,43,49,15,1,0,1,0,15.91384950719828,15.91384950719828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,5,5,1,899.5,0,0,0 +12799,15710,28561,28560,-9,-9,2,1,1,48,1,0,0,0,1,-9,2,1,0,3,8.866587383087991,8.596473372643823,0,1,0,-9,31,0,2,118.9579716406471,0,0,0,46,2,4,1,2,3,2019,1,1,12,0,53,56,15,1,0,1,0,10.18427824216125,10.18427824216125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,6,1,0,0,5,5,1,899.5,0,0,0 +12800,15711,28562,-9,-9,-9,1,1,1,60,2,0,0,0,1,-9,2,1,0,3,8.924627551356991,9.106792448359103,0,3,0,0,0,-9,0,-1064.271914713845,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,52,40,15,1,1,-9,0,15.38710339094144,15.38710339094144,0,0,0,0,0,0,0,0,0,0,7.008426152846893,0,0,0,50,49,5,1,0,0,10,5,0,548,0,0,0 +12801,15712,28563,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,2,0,7.213035058618502,7.385328349806521,3,0,0,0,-9,0,-892.3456113986754,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.950679676831802,11.14877877167516,3,46,36,6,1,0,0,10,2,1,2245,0,0,0 +12802,15713,28564,28565,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,5,0,7.185755098133208,6.805963905882008,1,0,-9,46,0,-1,11.04627310897153,0,0,0,67,1,4,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.777096283375047,0,0,58.05,54.52,7,1,0,0,2,3,1,164,0,0,0 +12802,15713,28565,28564,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,7.852170115965572,7.921078927379666,1,0,-9,46,0,1,110.614188470265,0,0,0,66,1,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.475733261633315,7.903179640503364,0,0,62.4,48.33,6,1,0,0,2,3,1,164,0,0,0 +12803,15714,28566,28567,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,2,0,0,0,1,0,-9,44,0,-1,-22.18812800613581,0,0,0,64,3,4,1,3,3,2019,1,2,11,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,40.18,5,1,0,0,8,2,0,541.5,0,0,0 +12803,15714,28567,28566,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,4,7.441510284876499,7.490049798125201,0,1,0,-9,44,0,1,-9.835483312799717,-9,0,0,63,3,2,1,3,3,2019,1,1,10,0,37,0,15,1,0,1,0,6.387272057158084,6.387272057158084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.46,54.53,5,1,0,0,8,2,0,541.5,0,0,0 +12804,15715,28568,28569,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.718455424024315,8.15129054591605,0,1,0,-9,6,0,-15,138.9649449278384,0,0,0,65,1,2,3,-9,1,2019,2,1,18,7,45,24,15,1,7,4,0,9.112146636170912,9.112146636170912,0,0,0,0,0,0,0,1,1,0,0,0,69.70093858548847,1,45.27,44.13,4,1,0,1,2,3,1,287,0,0,0 +12804,15715,28569,28568,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,28,0,15,100.8988018921841,0,0,0,50,2,4,1,2,2,2019,3,2,14,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.281503231224561,0,0,0,41.83,32.17,4,1,0,0,2,3,1,287,0,0,0 +12805,15716,28570,28572,-9,-9,1,1,1,35,1,0,2,0,3,-9,3,3,0,3,0,0,0,2,0,1,1,-9,2,0,-9,0,0,33,2,1,3,3,3,2019,4,2,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.1116894395038,1,37.5,51.04,5,1,1,0,10,1,0,650,0,0,0 +12805,15716,28571,-9,28572,28570,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-986.7738600004647,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,10,1,0,650,0,0,0 +12805,15716,28572,28570,-9,-9,2,1,0,33,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,1,-9,-2,0,-9,0,1,35,3,3,3,-9,-9,2019,4,1,27,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.51,41.64,3,1,0,1,10,1,0,650,0,0,0 +12805,15716,28573,-9,28572,28570,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-941.3041343962446,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,1,0,650,0,0,0 +12806,15717,28574,28575,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.289285850028651,8.269916501281378,0,1,0,-9,19,0,-1,4.064965963444853,0,0,0,57,1,4,1,2,1,2019,1,2,11,0,35,35,15,1,0,1,0,10.79967924753924,10.79967924753924,0,0,0,0,0,0,0,0,0,0,1.708794928400114,0,0,0,48.87,58.55,6,1,0,0,10,5,1,947,0,0,0 +12806,15717,28575,28574,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.779367707408115,8.343942994187781,0,1,0,-9,20,0,1,-63.16424444315955,0,0,0,56,1,4,1,2,2,2019,1,1,14,5,50,47,15,1,5,1,0,13.28106854065087,13.28106854065087,0,0,0,0,0,0,0,0,0,0,.9379901924680925,0,0,0,51.77,58.57,6,1,0,0,10,5,1,947,0,0,0 +12807,15718,28576,28577,-9,-9,1,1,1,87,1,0,0,0,1,-9,4,3,0,2,0,8.210457761525205,8.467697442151929,1,0,-9,10,0,2,-40.86678254375271,0,0,0,85,2,3,3,2,2,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.925879649909001,0,0,43.09,34.68,3,1,0,0,6,3,1,357.5,0,0,0 +12807,15718,28577,28576,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-2,-43.52459069246513,0,0,0,87,1,2,3,3,2,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,1,0,14.35795715516685,0,0,0,0,1,1,0,2.215057614701887,0,0,0,33.87,45.19,3,1,0,0,6,3,1,357.5,0,0,0 +12808,15719,28578,28579,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.146381836807603,7.851797731727816,0,1,0,-9,6,0,1,-22.14447734996381,0,0,0,49,2,4,1,-9,-9,2019,1,1,8,0,43,43,15,1,0,1,0,10.4634440076718,10.4634440076718,0,0,0,0,0,0,0,0,0,0,4.099628958966266,0,0,0,51.77,58.57,6,1,0,0,11,4,1,526,0,0,0 +12808,15719,28579,28578,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,4,8.334063768330115,8.079130593057114,0,1,0,-9,6,0,-1,101.1567111914646,0,0,0,50,1,4,1,3,3,2019,1,2,6,0,37,37,15,1,0,1,0,11.10508593337991,11.10508593337991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.92,39.36,7,1,0,0,11,4,1,526,0,0,0 +12809,15720,28580,28582,-9,-9,1,1,1,59,1,0,1,0,2,-9,8,3,1,3,0,2.885147970633736,2.711428602804896,2,0,-9,13,0,14,-138.9212356062208,0,0,0,45,1,3,1,-9,-9,2019,3,2,30,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.797554203204323,0,0,29.13,25.53,4,1,0,0,2,3,1,410.3333333333333,0,0,0 +12809,15720,28581,-9,28582,28580,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.234848429265,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,3,1,410.3333333333333,0,0,0 +12809,15720,28582,28580,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,3,8.290861495286173,8.377537080473637,0,2,0,-9,14,0,-14,-73.39249462919692,0,0,0,59,2,3,3,2,2,2019,2,1,15,4,37,41,15,1,4,3,0,10.33412857673273,10.33412857673273,0,0,0,0,0,0,0,1,1,0,0,0,12.60206001325103,1,48.35,46.53,5,1,0,0,2,3,1,410.3333333333333,0,0,0 +12810,15721,28583,-9,28585,28586,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1009.244383812164,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,3,0,1512.5,0,0,0 +12810,15721,28584,-9,28585,28586,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.1583483106388,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,3,0,1512.5,0,0,0 +12810,15721,28585,28586,-9,-9,1,1,0,32,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-4,-93.44767053310861,0,0,1,36,1,5,1,3,3,2019,3,2,10,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.94,56.74,6,3,0,0,6,3,0,1512.5,0,0,0 +12810,15721,28586,28585,-9,-9,2,1,1,36,1,0,2,0,1,-9,2,1,0,5,8.55693004143825,8.726832546666952,0,2,0,-9,3,0,4,114.4859513725359,0,0,0,32,2,4,3,-9,-9,2019,2,1,0,0,36,39,15,1,0,3,0,19.2411966990623,19.2411966990623,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,6,3,0,1512.5,0,0,0 +12811,15722,28587,28588,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,3,8.128046158806347,8.04252892475785,0,2,0,-9,27,0,-5,36.25390457291641,0,0,1,49,2,4,3,2,3,2019,2,2,8,0,37,37,15,1,0,4,0,17.83767105153211,17.83767105153211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.56,44.55,5,3,0,0,4,3,1,243.5,0,0,0 +12811,15722,28588,28587,-9,-9,2,1,1,49,1,0,1,0,2,-9,4,3,0,4,0,0,0,2,0,-9,7,0,5,-89.66963799991285,0,0,0,44,2,3,1,-9,-9,2019,3,1,9,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.928820186857129,0,0,0,53,55,6,3,0,0,4,3,1,243.5,0,0,0 +12811,15723,28589,-9,28587,28588,3,1,1,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-965.83170861823,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,3,0,0,4,3,1,1091,0,0,0 +12812,15724,28590,-9,28593,28591,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1102.263449447263,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,0,1135.75,0,0,0 +12812,15724,28591,28593,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,3,7.013703317492505,7.398657244315118,4.887767059491379,2,0,-9,10,-9,0,9.855274332726266,-9,0,0,43,3,3,1,-9,-9,2019,1,1,6,0,25,0,15,1,0,1,0,5.016438581301012,5.016438581301012,0,0,0,0,0,0,0,1,1,0,4.661152189205618,4.81851785944181,0,0,63.26,31.47,2,1,0,1,9,2,0,1135.75,0,0,0 +12812,15724,28592,-9,28593,28591,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-986.8050148676278,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,0,1135.75,0,0,0 +12812,15724,28593,28591,-9,-9,1,1,0,43,1,0,2,0,3,-9,2,1,0,3,6.001315010046864,5.90418804770415,0,2,0,-9,10,-9,0,77.97838822016398,-9,0,1,43,2,3,1,-9,-9,2019,1,2,12,0,11,0,15,1,0,1,0,4.651065794887923,4.651065794887923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,7,1,0,1,9,2,0,1135.75,0,0,0 +12813,15725,28594,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,6.265685196420852,6.586931451871208,3,0,0,0,-9,0,-1078.455791750602,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,11.40995351936052,0,6.688871082633266,0,1,1,0,0,6.233217773366173,0,0,61.11,19.41,6,1,0,0,9,2,1,672,0,0,0 +12814,15726,28595,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,2,8.484033087965486,8.501118192146654,0,3,0,0,0,-9,0,-992.5517654747284,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,35,35,15,1,1,-9,0,12.87315988123394,12.87315988123394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.14,31.88,6,2,0,0,6,4,0,638,0,0,0 +12815,15727,28596,-9,28598,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1199.76845024473,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,10,3,0,956.3333333333334,0,0,0 +12815,15727,28597,-9,28598,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-932.7662430095188,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,10,3,0,956.3333333333334,0,0,0 +12815,15727,28598,-9,-9,-9,1,1,0,52,2,0,2,0,1,-9,1,1,0,5,7.655585135328453,7.490018711492216,0,4,0,0,0,-9,0,-997.3742349463563,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,16,18,15,1,0,-9,0,16.07856673137843,16.07856673137843,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.88,60.96,3,1,0,0,10,3,0,956.3333333333334,0,0,0 +12816,15728,28599,28600,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,3,8.263878564925189,8.238430696718897,0,1,0,-9,6,0,1,94.88345435632687,0,1,0,28,1,3,1,-9,-9,2019,1,2,10,1,45,50,15,1,1,1,0,10.29893029068485,10.29893029068485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,36.3,5,1,0,0,9,5,1,475.5,0,0,0 +12816,15728,28600,28599,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,3,8.445530379170313,8.212278884168681,0,1,0,-9,6,0,-1,16.0195827533752,0,1,1,29,2,3,1,-9,-9,2019,1,1,16,4,60,55,15,1,4,1,0,9.634985634773066,9.634985634773066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.82,52.79,5,1,0,0,9,5,1,475.5,0,0,0 +12817,15729,28601,28602,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,5,0,4.411627048609079,4.282979403957937,1,0,-9,13,0,-2,-37.82262628771272,0,0,0,64,2,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.205853913237008,0,0,0,46.28,62.6,5,1,0,0,9,3,1,1120.5,0,0,0 +12817,15729,28602,28601,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,7.597928538277858,7.541467314976218,1,0,-9,2,0,2,185.7629274742496,0,0,0,62,2,5,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.15653526229844,7.430149986789686,0,0,57.16,56.15,6,1,0,0,9,3,1,1120.5,0,0,0 +12818,15730,28603,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,2,7.820506760175681,7.422218481888187,0,3,0,0,0,-9,0,-1125.761940602244,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,30,32,15,1,0,-9,0,10.0373373783821,10.0373373783821,0,0,0,0,0,0,0,1,1,0,1.368457814484701,0,0,0,53.92,30.97,3,1,0,0,10,3,0,492,0,0,0 +12819,15731,28604,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,2,8.495326191422407,8.702461555940477,0,3,0,0,0,-9,0,-1058.154816385941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,41,40,15,1,0,-9,0,16.53717654310525,16.53717654310525,0,0,0,0,0,0,0,0,0,0,3.869277355502265,0,0,0,55.06,38.67,6,2,0,0,8,5,0,357,0,0,0 +12820,15732,28605,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,1,1,0,3,7.300849517433544,7.365951544513262,0,3,0,-9,0,-9,0,-935.5214105389655,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,59,0,15,1,1,-9,0,3.487544624266907,3.487544624266907,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,47.81,5,1,0,0,12,3,1,2443,0,0,0 +12820,15733,28606,-9,28605,-9,2,1,0,19,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-1107.510490960558,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,5,1,0,0,12,1,1,258,0,0,0 +12821,15734,28607,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,8,3,1,1,0,7.063462859930313,6.991942749240851,3,0,0,0,-9,0,-1046.844569335216,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,30,10,0,20,15,3,10,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.397741735260973,0,0,0,26.57,20.42,2,1,0,1,11,2,1,1674,0,0,0 +12821,15735,28608,28609,28607,-9,2,1,0,31,1,0,0,0,3,-9,2,1,0,5,7.949653000715323,7.688184409718013,0,1,0,-9,6,0,-7,51.22318002894878,0,0,1,38,2,4,1,1,3,2019,1,3,10,1,54,40,15,1,1,1,0,5.73456265556283,5.73456265556283,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,4,1,0,0,11,4,1,430,0,0,0 +12821,15735,28609,28608,-9,-9,3,1,1,38,1,0,0,0,2,-9,2,1,0,4,7.98795181381201,8.234302420075586,0,1,0,-9,6,0,7,-25.3033774967094,0,0,0,31,3,5,1,1,3,2019,1,2,8,0,44,40,15,1,0,1,0,8.269865815590368,8.269865815590368,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,430,0,0,0 +12822,15736,28610,28612,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,3,7.409653114539778,7.709632549031641,3.710140949319049,2,0,-9,6,0,-7,-110.2275668898113,0,0,1,45,2,4,3,-9,-9,2019,2,1,27,12,21,22,15,1,12,3,0,13.617282577985,13.617282577985,0,0,0,0,0,0,0,1,1,0,3.473826384800166,0,15.57160634603597,2,22.4,65.32000000000001,3,1,0,1,6,2,1,1386.333333333333,0,0,0 +12822,15736,28611,-9,28610,28612,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.68482115257,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,1,1386.333333333333,0,0,0 +12822,15736,28612,28610,-9,-9,1,1,1,45,1,0,2,0,2,-9,8,3,1,4,0,0,0,2,0,-9,6,0,7,-74.70904441156753,0,0,0,38,2,3,1,1,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.590701090161101,3,54.2,57.49,6,1,0,0,6,2,1,1386.333333333333,0,0,0 +12823,15737,28613,28614,-9,-9,1,1,1,32,1,0,2,0,2,-9,2,1,0,3,8.58326488717986,8.66070356516709,0,2,0,-9,11,0,-3,103.6047621350035,0,0,0,35,2,3,1,2,2,2019,1,2,10,0,38,39,15,1,0,1,0,22.04297067748923,22.04297067748923,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,13,4,1,608.75,0,0,0 +12823,15737,28614,28613,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,3,7.205967122552492,7.254546933410848,4.412014293900519,2,0,-9,11,0,3,76.21201358508283,0,0,1,32,2,3,1,1,2,2019,1,1,10,0,31,23,15,1,0,1,0,5.017479872438859,5.017479872438859,0,0,0,0,0,0,0,1,1,0,6.732828973787661,0,0,0,49.29,54.59,6,1,0,0,13,4,1,608.75,0,0,0 +12823,15737,28615,-9,28614,28613,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.769124221169,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,608.75,0,0,0 +12823,15737,28616,-9,28614,28613,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.795609181849,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,608.75,0,0,0 +12824,15738,28617,28618,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,5.419846833738841,5.361868112214119,1,0,-9,9,0,0,-26.02439290898037,0,0,0,61,1,4,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.153358572646641,0,0,57.16,56.15,6,1,0,0,13,2,1,336.5,0,0,0 +12824,15738,28618,28617,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,4,6.01311845207303,6.282869487045178,0,1,0,-9,9,0,0,-141.1886930767675,0,0,0,61,2,4,3,2,1,2019,2,2,9,0,8,0,15,1,0,4,0,6.900394242889287,6.900394242889287,0,0,0,0,0,0,0,0,0,0,8.192580306846223,0,0,0,54.2,57.49,6,1,0,0,13,2,1,336.5,0,0,0 +12825,15739,28619,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,7.990451009965764,8.247393043177693,3,0,0,0,-9,0,-895.4802189080369,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.132605041087903,8.146533966848057,4.435746644818533,3,54.2,57.49,6,1,0,0,2,4,1,643,0,0,0 +12826,15740,28620,28621,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,2,0,6.465868200731076,6.509854831493803,1,0,-9,7,0,-1,192.2253464668457,0,0,0,84,3,2,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,0,17.99016924186749,0,0,8.221365587115784,0,1,1,0,3.48428986174502,6.484609419346013,3.543838780025707,1,51.27,25.4,6,1,0,0,6,2,0,852.5,0,0,0 +12826,15740,28621,28620,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,2,0,6.729622191588266,6.296458647757207,1,0,-9,7,0,1,-156.3083372062607,0,0,0,83,2,2,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,13.65687576551158,0,0,0,0,1,1,0,3.417142865506027,6.60780369387679,9.887142497598289,1,54.65,20.99,5,1,0,0,6,2,0,852.5,0,0,0 +12827,15741,28622,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,4,0,6.745819691907334,6.591621975496305,3,0,0,0,-9,0,-961.4475915880556,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.092243292442292,0,0,0,54.2,57.49,6,1,0,0,1,2,0,74,0,0,0 +12827,15742,28623,-9,-9,-9,2,1,0,22,2,0,0,1,2,-9,7,2,0,2,5.765125326579525,6.030591067121282,0,3,0,-9,0,-9,0,-967.7934373757465,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.84,28.9,6,1,0,0,1,2,0,1687,0,0,0 +12827,15743,28624,-9,-9,-9,3,1,0,21,2,0,0,1,2,-9,7,2,0,4,6.159520821564287,6.518994302841028,0,3,0,-9,0,-9,0,-1045.486144903366,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,9,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.209064638858607,0,0,0,52.91,55.33,6,2,0,0,1,2,0,859,0,0,0 +12828,15744,28625,28626,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,2,0,0,0,0,72,2,3,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.092296071231953,3,51,46,6,1,0,0,7,1,1,984.5,0,0,0 +12828,15744,28626,28625,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-2,0,0,0,0,74,3,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,6,1,0,0,7,1,1,984.5,0,0,0 +12829,15745,28627,-9,28631,28632,5,1,1,6,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.4659836419557,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,12,3,1,515,0,0,0 +12829,15745,28628,-9,28631,28632,4,1,0,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.4586849517947,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,12,3,1,515,0,0,0 +12829,15745,28629,-9,28631,28632,3,1,0,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.9359673177403,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,12,3,1,515,0,0,0 +12829,15745,28630,-9,28631,28632,6,1,0,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.4779487859967,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,12,3,1,515,0,0,0 +12829,15745,28631,28632,-9,-9,1,1,0,37,1,1,4,0,1,-9,6,3,0,3,0,0,0,2,0,-9,13,0,-5,20.52416652879598,0,0,1,42,3,2,1,3,3,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.97,40.61,5,3,0,1,12,3,1,515,0,0,0 +12829,15745,28632,28631,-9,-9,2,1,1,42,1,1,4,0,3,-9,1,1,0,2,8.153813542058373,8.521581946693352,0,2,0,-9,9,0,5,80.2249445115886,0,0,0,37,1,3,3,-9,-9,2019,2,1,9,0,40,35,15,1,0,3,0,10.68459511135502,10.68459511135502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.42,34.56,4,3,0,1,12,3,1,515,0,0,0 +12830,15746,28633,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,2,0,6.762186242868776,6.540639225657294,3,0,0,0,-9,0,-954.3008497376235,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.224460763269533,0,0,50.8,22.72,6,1,0,0,7,2,1,11523,0,0,0 +12831,15747,28634,28635,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.066777375557775,7.225342125362587,1,0,-9,51,0,-3,49.41200037919366,0,0,0,71,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.316864097716712,0,0,55.36,54.24,7,1,0,0,7,5,1,824.5,0,0,0 +12831,15747,28635,28634,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.916510790628791,8.406412590507179,1,0,-9,50,0,3,39.34422440373309,0,0,0,68,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.834773272040611,0,0,57.33,53.46,7,1,0,0,7,5,1,824.5,0,0,0 +12832,15748,28636,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.397620131097201,8.488791496064636,0,3,0,0,0,-9,0,-1035.232030105596,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,5,0,45,35,15,1,0,-9,0,11.56583412610393,11.56583412610393,0,0,0,0,0,0,0,0,0,0,.7840976950799894,0,0,0,50.4,55.04,7,1,0,0,7,4,1,417,0,0,0 +12833,15749,28637,-9,28638,28639,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1032.505180911028,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,9,5,1,649,0,0,0 +12833,15749,28638,28639,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.680295182112772,8.582407360432343,0,2,0,-9,4,0,-2,-59.76718718605692,0,0,1,44,2,4,1,3,2,2019,1,4,11,0,62,70,15,1,0,1,0,8.069384385942973,8.069384385942973,0,0,0,0,0,0,0,1,1,0,7.482943897614307,0,0,0,51.83,57.2,2,3,0,0,9,5,1,649,0,0,0 +12833,15749,28639,28638,-9,-9,4,1,1,44,1,0,2,0,2,-9,2,1,0,4,9.145708734269862,9.56700627382267,0,2,0,-9,4,0,2,64.41514882092169,0,0,0,42,1,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,29.97917088466009,29.97917088466009,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,3,0,0,9,5,1,649,0,0,0 +12833,15749,28640,-9,28638,28639,2,1,1,17,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.070387539921,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,9,5,1,649,0,0,0 +12834,15750,28641,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,2,8.885867741406326,9.249059634462645,0,3,0,0,0,-9,0,-1093.882638872085,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,2,53,45,15,1,2,-9,0,15.27782814695299,15.27782814695299,0,0,0,0,0,0,0,0,0,0,.3558815902484972,0,0,0,42.11,51.13,5,1,0,0,5,5,1,432,0,0,0 +12834,15751,28642,-9,-9,28641,2,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.969593299873064,8.205190709601883,0,3,0,0,0,-9,0,-1037.412848235637,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,5,0,44,42,15,1,0,-9,1,5.127828707120984,5.127828707120984,0,0,0,0,0,0,0,0,0,0,1.212855468947745,0,0,0,69.71000000000001,32.57,7,1,0,0,5,3,1,5485,0,0,0 +12835,15752,28643,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,2,1,0,3,7.599944448297721,7.356869301547268,4.820097691641106,3,0,0,0,-9,0,-1059.934393759215,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,13,15,1,0,-9,0,4.899404999940077,4.899404999940077,1,0,0,0,0,0,0,1,1,0,6.75875730898869,0,0,0,56.29,44.49,6,1,0,0,13,3,1,333,0,0,0 +12836,15753,28644,28645,-9,-9,2,1,0,45,1,0,4,0,2,-9,2,1,0,3,6.815323317823111,6.591459064140422,0,2,0,-9,6,0,1,-74.13194994451413,0,0,0,44,2,4,1,2,2,2019,1,1,13,1,12,7,15,1,1,1,0,7.662065605281183,7.662065605281183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.86,55.66,6,1,0,0,13,2,1,461.5,0,0,0 +12836,15753,28645,28644,-9,-9,1,1,1,44,1,0,4,0,2,-9,2,1,0,4,7.938688171036211,7.904465354141212,0,2,0,-9,6,0,-1,-35.17670889173066,0,0,0,45,2,3,1,3,2,2019,1,2,9,0,35,40,15,1,1,1,0,7.660526711642268,7.660526711642268,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,13,2,1,461.5,0,0,0 +12836,15753,28646,-9,28644,28645,6,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.7612745439276,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,2,1,461.5,0,0,0 +12836,15753,28647,-9,28644,28645,4,1,0,16,2,0,4,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-966.1768480979936,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.67,58.98,6,1,0,0,13,2,1,461.5,0,0,0 +12836,15754,28648,-9,28644,28645,3,1,1,18,2,0,4,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1097.139023488543,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.34,60.95,6,1,0,0,13,2,1,876,0,0,0 +12837,15755,28649,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,1,1,0,4,6.489712026248393,6.863199383452502,0,3,0,0,0,-9,0,-968.8851124299696,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,28,20,15,1,0,-9,0,3.181142312849335,3.181142312849335,0,0,0,0,0,0,0,1,1,0,8.528832250936613,0,3.138725445281592,3,53.15,35.88,6,1,0,0,4,2,1,335,0,0,0 +12838,15756,28650,28652,-9,-9,2,1,1,49,1,1,1,0,2,-9,2,1,0,4,9.893196869367614,9.723233145491347,6.865789587722787,2,0,-9,8,0,12,-24.97278950751596,0,0,0,37,1,5,1,2,3,2019,1,1,7,0,55,50,15,1,0,1,0,32.54430745075577,32.54430745075577,0,0,0,0,0,0,0,1,1,0,5.83546442947081,7.133766813608386,0,0,57.16,56.15,7,1,0,0,10,5,1,970.6666666666666,0,0,0 +12838,15756,28651,-9,28652,28650,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-994.8574645014684,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,970.6666666666666,0,0,0 +12838,15756,28652,28650,-9,-9,1,1,0,37,1,1,1,0,1,-9,2,1,0,5,8.680136064106238,8.919492504465991,7.353524992364199,2,0,-9,8,0,-12,-90.6515768105421,0,0,1,49,2,4,1,2,2,2019,1,2,12,0,36,42,15,1,0,1,0,16.63083644098779,16.63083644098779,0,0,0,0,0,0,0,1,1,0,0,7.229024379621868,0,0,57.06,57.76,7,1,0,0,10,5,1,970.6666666666666,0,0,0 +12839,15757,28653,-9,28654,28655,5,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1000.275402743829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,2,0,0,7,2,1,418.75,0,0,0 +12839,15757,28654,28655,-9,-9,1,1,0,50,1,0,2,0,1,-9,1,1,0,4,0,0,0,2,0,-9,9,0,2,99.12201340602489,0,0,0,48,2,4,1,1,1,2019,1,2,14,2,30,30,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.851818556605284,3,38.16,52.53,5,2,0,0,7,2,1,418.75,0,0,0 +12839,15757,28655,28654,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,7.432383066391157,7.693294697758115,0,2,0,-9,9,0,-2,82.67301838779812,0,0,0,50,1,4,1,2,2,2019,1,1,9,0,30,25,15,1,0,1,0,7.366892511617528,7.366892511617528,0,0,0,0,0,0,0,1,1,0,1.085703575035294,0,0,0,54.2,57.49,6,1,0,0,7,2,1,418.75,0,0,0 +12839,15757,28656,-9,28654,28655,4,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.975206969133,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,2,0,0,7,2,1,418.75,0,0,0 +12839,15758,28657,-9,28654,28655,3,1,0,18,2,0,2,0,2,-9,2,1,0,4,5.786493178857044,6.111949768408651,0,3,0,0,0,-9,0,-922.7160854137036,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,11,1,8,0,15,1,1,-9,1,5.308971477292334,5.308971477292334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.2,63.27,6,2,0,0,7,2,1,1983,0,0,0 +12840,15759,28658,28659,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,3,6.141115816141153,6.455654245396628,0,1,0,-9,41,0,2,-58.43075657592449,0,0,0,62,3,3,3,3,3,2019,2,2,10,0,65,55,15,1,1,3,0,1.183389154768752,1.183389154768752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,5,1,0,0,13,2,1,477,0,0,0 +12840,15759,28659,28658,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,41,0,-2,-94.29224889139776,0,0,0,64,3,3,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,6,1,0,0,13,2,1,477,0,0,0 +12841,15760,28660,28661,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,6.390134967664356,6.148527878473501,1,0,-9,8,0,1,-67.85026841162389,0,0,0,77,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.154388445638906,0,0,54.21,49.46,6,4,0,0,2,3,1,508.5,0,0,0 +12841,15760,28661,28660,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.345473092773031,7.417215670792184,1,0,-9,8,0,-1,32.06080647530509,0,0,0,78,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.221455417653862,7.161387845988924,0,0,54.96,53.17,7,1,0,0,2,3,1,508.5,0,0,0 +12842,15761,28662,-9,-9,-9,1,1,1,29,2,0,0,0,3,-9,2,1,0,4,8.503601985046766,8.623712651138691,0,3,0,0,0,-9,0,-1009.087566617318,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,48,47,15,1,0,-9,0,12.04856644633218,12.04856644633218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,4,0,0,8,5,0,507,0,0,0 +12843,15762,28663,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,2,0,7.100970064934351,6.902055394031947,3,0,0,0,-9,0,-988.1503194976356,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.205837437287876,6.961366259705438,10.42243387428815,3,38.5,56.93,2,1,0,0,1,3,1,3863,0,0,0 +12844,15763,28664,28667,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,4,8.317867659021827,8.485432553446104,0,2,0,-9,6,0,7,43.80263174158151,0,0,0,26,2,3,1,1,1,2019,1,2,10,0,40,41,15,1,0,1,0,11.24686197494651,11.24686197494651,0,0,0,0,0,0,0,1,1,0,3.905194801421676,0,0,3,52.56,57.03,5,4,0,0,9,3,1,704.5,0,0,0 +12844,15763,28665,-9,28667,28664,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.923372007821,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,9,3,1,704.5,0,0,0 +12844,15763,28666,-9,28667,28664,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.94561910756,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,9,3,1,704.5,0,0,0 +12844,15763,28667,28664,-9,-9,2,1,0,26,1,1,2,0,2,-9,2,1,0,3,6.621116960485791,6.795437083802469,0,2,0,-9,6,0,-7,-31.59560272625795,0,1,1,33,2,4,1,-9,-9,2019,1,1,23,7,0,12,15,1,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.130239068884641,0,0,0,43.71,56.91,6,1,0,0,9,3,1,704.5,0,0,0 +12845,15764,28668,28669,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,3,8.024404972580687,8.152636576544189,0,1,0,-9,18,0,1,49.42842373101212,0,0,0,54,3,1,1,-9,-9,2019,1,1,9,0,39,39,15,1,0,1,0,8.885292178786026,8.885292178786026,0,0,0,0,0,0,0,1,1,0,0,0,74.95802818731914,1,57.33,53.46,6,1,0,0,7,4,1,918,0,0,0 +12845,15764,28669,28668,-9,-9,1,1,0,54,1,0,0,0,3,-9,2,1,0,1,7.269671751567198,7.404701758371105,0,1,0,-9,16,0,-1,-88.12951822341157,0,0,0,55,3,3,1,2,2,2019,1,2,21,8,39,10,15,1,8,1,0,5.155371352611796,5.155371352611796,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.69,22.93,4,1,0,0,7,4,1,918,0,0,0 +12846,15765,28670,-9,-9,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,3,8.749100256049021,8.892863954171073,0,3,0,-9,0,-9,0,-1075.257470496653,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,35,0,15,1,12,-9,0,19.73065701896354,19.73065701896354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.90000000000001,1,1,0,0,12,5,0,745,0,0,0 +12847,15766,28671,28674,-9,-9,2,1,1,46,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,28,0,2,0,0,0,0,44,3,1,3,2,2,2019,4,1,9,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.53140170093494,1,34.45,58.7,5,1,1,0,6,1,0,887.75,0,0,0 +12847,15766,28672,-9,28674,28671,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.698334910461,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,887.75,0,0,0 +12847,15766,28673,-9,28674,28671,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.294849511506,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,1,0,887.75,0,0,0 +12847,15766,28674,28671,-9,-9,1,1,0,44,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,28,0,-2,0,0,0,1,46,2,3,3,-9,-9,2019,4,2,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.64,25.68,3,1,0,0,6,1,0,887.75,0,0,0 +12848,15767,28675,-9,-9,-9,1,1,0,54,3,0,1,0,3,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1155.464387749926,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,16,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.32,36.95,4,1,0,0,12,1,0,1516,0,0,0 +12849,15768,28676,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,8.510325915006147,8.648721485230157,6.208136091959823,3,0,0,0,-9,0,-1036.299399213298,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,40,41,15,1,10,-9,0,13.53494534005124,13.53494534005124,0,0,0,0,0,0,0,1,1,0,0,6.970466591968336,0,0,37.83,54.5,5,1,0,0,1,5,1,162,0,0,0 +12850,15769,28677,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,2,1,0,4,9.320289515381488,9.530170819795417,0,3,0,0,0,-9,0,-1003.362466127322,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,60,60,15,1,0,-9,0,22.04695507588891,22.04695507588891,0,0,0,0,0,0,0,1,1,0,2.151664149228763,0,0,0,45.91,59.89,2,1,0,0,4,5,1,316,0,0,0 +12851,15770,28678,28680,28684,28683,3,1,1,21,1,0,0,0,2,-9,1,1,0,3,8.10537356494509,7.937523942117719,0,1,0,-9,3,0,0,-79.30432060359067,0,1,0,21,2,4,1,2,3,2019,1,8,12,0,40,38,15,1,2,1,0,8.788577920229139,8.788577920229139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.28,48.28,2,1,0,0,11,5,1,847.75,0,0,0 +12851,15770,28679,-9,28680,28678,6,1,1,14,2,0,0,1,3,-9,-9,2,0,3,0,0,0,1,0,0,0,-9,0,-1062.10753707439,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,5,1,847.75,0,0,0 +12851,15770,28680,28678,-9,-9,8,1,0,21,1,0,0,0,2,-9,2,1,0,4,8.670318827279186,8.4785532702401,0,1,0,-9,3,0,0,27.43101545162413,0,1,1,21,2,3,1,-9,-9,2019,1,3,15,4,52,50,15,1,4,1,0,11.03444690392159,11.03444690392159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.09,55.27,5,1,0,0,11,5,1,847.75,0,0,0 +12851,15770,28681,-9,28680,28678,7,1,1,13,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-885.0641629100726,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,5,1,847.75,0,0,0 +12851,15771,28682,-9,-9,28683,9,1,0,17,2,0,0,1,2,0,7,2,0,3,5.073838894434076,4.911749596324293,0,1,0,0,0,-9,0,-994.8979478697585,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,4,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.16,43.02,6,1,0,0,11,4,1,1125.666666666667,0,0,0 +12851,15771,28683,28684,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,5,6.992314106340999,7.041667507729803,0,1,0,-9,9,0,-1,-45.49850070777129,0,0,0,53,2,4,1,2,3,2019,1,2,7,0,40,38,15,1,0,1,0,2.833846888839958,2.833846888839958,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,53.47,7,1,0,0,11,4,1,1125.666666666667,0,0,0 +12851,15771,28684,28683,28686,28685,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.856702653638017,8.037119038068973,0,1,0,-9,9,0,1,21.41441351105169,0,0,0,52,3,5,1,2,1,2019,1,1,7,0,17,35,15,1,0,1,0,24.97509479532166,24.97509479532166,0,0,0,0,0,0,0,1,1,0,0,0,1.136851485640194,3,57.74,49,6,1,0,0,11,4,1,1125.666666666667,0,0,0 +12851,15772,28685,28686,-9,-9,4,1,1,85,1,0,0,0,1,-9,4,3,0,3,0,8.108181387683151,8.148913160185861,1,0,-9,9,0,3,16.00213256822905,0,0,0,82,2,3,3,-9,-9,2019,4,5,12,0,0,0,15,4,0,4,0,0,0,1,2.283962945271633,0,119.3734858551723,0,0,.0006890357334726,1,1,0,0,8.110828881925023,0,0,54.36,39.67,6,1,0,0,11,3,1,786,0,0,0 +12851,15772,28686,28685,-9,-9,5,1,0,82,1,0,0,0,2,-9,4,3,0,3,0,4.070981142560939,4.274435100358205,1,0,-9,9,0,-3,98.76353103530577,0,0,0,85,1,3,3,-9,-9,2019,4,4,18,6,0,0,15,4,6,4,0,0,0,1,0,1.90615095248073,0,0,0,0,1,1,0,0,4.176480382979047,0,0,48.6,26.62,4,1,0,0,11,3,1,786,0,0,0 +12852,15773,28687,28688,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,3,7.86618285030741,7.84984995723938,5.219993567017826,1,0,-9,8,0,1,-61.83624710390782,0,0,0,60,2,3,1,3,3,2019,1,2,6,0,38,37,15,1,0,1,0,9.232750347238266,9.232750347238266,0,0,0,0,0,0,0,1,1,0,3.627683983253652,5.701790631259154,.6255027798123587,3,55.96,49.93,5,1,0,0,9,3,1,180,0,0,0 +12852,15773,28688,28687,-9,-9,2,1,1,60,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,8,0,-1,19.87272184313176,0,0,0,61,2,3,1,3,3,2019,1,1,6,0,30,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.494165967426588,0,0,0,59.91,42.65,6,1,0,0,9,3,1,180,0,0,0 +12853,15774,28689,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-994.4043799225886,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.54,36.3,5,1,0,1,11,1,1,435,0,0,0 +12853,15775,28690,-9,28689,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,3,7.291937092854234,6.873942098771827,0,3,0,0,0,-9,0,-974.5088838733366,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,24,20,15,1,0,-9,1,4.682984567365287,4.682984567365287,0,0,0,0,0,0,0,1,1,0,0,0,1.473549947850627,3,46.31,51.53,5,1,0,0,11,2,1,987,0,0,0 +12854,15776,28691,-9,28693,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.289609272418,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,1,422.3333333333333,0,0,0 +12854,15776,28692,-9,28693,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1102.725760266698,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,1,0,0,7,3,1,422.3333333333333,0,0,0 +12854,15776,28693,-9,-9,-9,1,1,0,44,3,0,2,0,3,-9,2,1,0,4,7.653867056349176,8.039120147997716,6.958763914887587,4,0,0,0,-9,0,-999.1076872244699,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,29,28,15,1,0,-9,0,7.977084625575453,7.977084625575453,0,0,0,0,0,0,0,1,1,0,7.557944292864109,0,0,0,55.19,54.26,6,1,0,0,7,3,1,422.3333333333333,0,0,0 +12855,15777,28694,-9,28695,28696,3,1,0,17,2,0,0,1,2,-9,7,2,0,3,0,0,0,1,0,0,0,-9,0,-1024.315776431276,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.027818218032041,0,0,0,37.69,58.7,4,1,0,0,2,4,1,473.6666666666667,0,0,0 +12855,15777,28695,28696,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,2,6.662652493893853,6.770187414959852,0,1,0,-9,44,0,-5,23.81220691511628,0,0,0,69,2,1,3,3,3,2019,2,1,6,0,20,20,15,1,0,4,0,5.472518197008189,5.472518197008189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.31,44.67,6,1,0,0,2,4,1,473.6666666666667,0,0,0 +12855,15777,28696,28695,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,1,0,8.062463880812945,8.580766609731874,1,0,-9,44,0,5,-73.62551670829168,0,0,0,64,3,2,1,3,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.169672138825518,0,0,64.37,12.88,6,1,0,0,2,4,1,473.6666666666667,0,0,0 +12856,15778,28697,28698,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,3,8.456080544527804,8.498886817884602,0,1,0,-9,36,0,-1,99.22514685495862,0,0,0,55,2,5,1,2,1,2019,1,1,6,0,45,45,15,1,0,1,0,14.54990242654488,14.54990242654488,0,0,0,0,0,0,0,0,0,0,7.215799543668084,0,0,0,60.29,52.11,6,1,0,0,7,5,1,955.5,0,0,0 +12856,15778,28698,28697,-9,-9,1,1,0,55,1,0,0,0,2,-9,1,1,0,5,9.376944026031371,9.326713782459755,0,1,0,-9,36,0,1,-136.3610247622132,0,0,0,54,2,3,1,2,2,2019,1,2,6,0,18,20,15,1,0,1,0,73.08796964035028,73.08796964035028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,7,5,1,955.5,0,0,0 +12857,15779,28699,28700,-9,-9,1,1,0,41,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,26,0,-4,-77.89086280294208,0,0,1,45,2,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.28884675387917,0,1.10133326300265,3,36.78,43.04,6,3,0,0,8,5,1,1093,0,0,0 +12857,15779,28700,28699,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,4,9.001113834312822,8.733175484978666,0,1,0,-9,26,0,4,-119.3164122520157,0,0,0,41,2,2,3,3,2,2019,2,1,13,3,120,75,15,1,3,3,0,6.577741588144137,6.577741588144137,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.08,41.62,5,3,0,0,8,5,1,1093,0,0,0 +12857,15780,28701,-9,28699,28700,3,1,0,23,2,0,0,0,1,-9,1,1,0,5,8.749558854888377,8.334078572779189,0,3,0,0,0,-9,0,-882.8123155320761,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,16,44,15,1,0,-9,1,35.19540125282624,35.19540125282624,0,0,0,0,0,0,0,1,1,0,2.977698661765628,0,0,0,54.35,57.84,7,3,0,0,8,5,1,131,0,0,0 +12857,15781,28702,-9,28699,28700,4,1,1,18,2,0,0,1,2,0,7,2,0,4,6.561908131392557,6.827050791760926,0,3,0,0,0,-9,0,-852.3069394398665,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,0,0,8,2,1,222,0,0,0 +12858,15782,28703,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,6.133302122005365,5.580062734529827,3,0,0,0,-9,0,-989.8566227104187,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,2.255996754189213,0,0,0,0,0,1,1,0,5.044621396676651,5.934486360958551,0,0,41.1,53.94,5,1,0,0,2,2,1,786,0,0,0 +12859,15783,28704,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,4,3,0,4,0,7.820950704735311,7.922482536350612,3,0,0,0,-9,0,-895.9809633580002,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.72055235863786,8.107633728583702,0,0,43.44,58.7,3,1,0,0,8,3,1,124,0,0,0 +12860,15784,28705,-9,-9,-9,1,1,1,64,2,0,0,0,1,-9,4,3,0,4,0,5.18999537218472,4.600647995274625,3,0,0,0,-9,0,-754.3649191572866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.080009668233544,0,0,0,43.23,58.28,6,1,0,0,7,2,1,1278,0,0,0 +12861,15785,28706,28707,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,8.050559438431835,7.966802535658028,1,0,-9,48,0,4,4.271868799485398,0,0,0,70,3,2,3,3,2,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.783096456808151,8.238643480645305,0,0,46.99,27.39,6,1,0,0,9,3,1,591,0,0,0 +12861,15785,28707,28706,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,49,0,-4,-21.49404645216024,0,0,0,74,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.530731365310118,0,0,0,51.7,35.88,6,1,0,0,9,3,1,591,0,0,0 +12862,15786,28708,28709,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,5,8.251779729314462,8.46731908944521,0,1,0,-9,30,0,-1,7.341047165435964,0,0,0,53,2,3,1,2,2,2019,1,2,8,0,37,36,15,1,0,1,0,10.5288876680097,10.5288876680097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.23999999999999,39.42,6,1,0,0,2,4,1,750.5,0,0,0 +12862,15786,28709,28708,-9,-9,2,1,1,53,1,0,0,0,2,-9,1,1,0,3,8.132137899670184,8.198468312790363,0,1,0,-9,30,0,1,-120.0236221319238,0,0,0,52,2,5,1,2,2,2019,1,1,14,2,47,37,15,1,2,1,0,8.53455604789983,8.53455604789983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.25,55.37,5,1,0,0,2,4,1,750.5,0,0,0 +12863,15787,28710,-9,28711,-9,2,1,1,16,2,0,1,0,2,-9,97,2,0,5,0,0,0,4,0,0,0,-9,0,-1122.084791559292,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,4,3,0,829,0,0,0 +12863,15787,28711,-9,-9,-9,1,1,0,35,2,0,1,0,3,-9,2,1,0,4,7.643574016931287,7.711150050236844,0,4,0,0,0,-9,0,-1096.95601935202,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,21,0,15,1,0,-9,0,16.82228870746687,16.82228870746687,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,5,1,0,1,4,3,0,829,0,0,0 +12864,15788,28712,28713,-9,-9,1,1,1,49,1,0,0,0,2,-9,1,1,0,3,8.777387019001095,8.832358760616351,0,1,0,-9,3,0,4,76.21613458836875,0,0,0,45,2,3,1,2,2,2019,1,2,10,0,40,44,15,1,0,1,0,24.66895876480418,24.66895876480418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,55.03,5,1,0,0,10,5,1,634,0,0,0 +12864,15788,28713,28712,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.2114786081218,8.17589646040196,0,1,0,-9,3,0,-4,2.948445719631017,0,0,0,49,2,3,1,-9,-9,2019,1,1,10,0,18,22,15,1,0,1,0,22.55660703888151,22.55660703888151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,7,1,0,0,10,5,1,634,0,0,0 +12865,15789,28714,-9,-9,-9,1,1,1,28,2,0,0,0,3,-9,2,1,0,4,8.469476632251865,8.307741584136451,0,3,0,0,0,-9,0,-1067.215353972911,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,45,15,1,0,-9,0,15.69921379554448,15.69921379554448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,7,1,0,0,2,5,0,1133,0,0,0 +12866,15790,28715,-9,28716,28718,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1063.195984088027,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,5,1,0,0,6,5,1,669,0,0,0 +12866,15790,28716,28718,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,8.549154538177252,8.426352051140992,0,2,0,-9,8,0,-3,22.45350198052138,0,0,0,51,2,2,1,2,2,2019,1,2,4,0,38,0,15,1,0,1,0,12.955462905785,12.955462905785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,6,1,0,0,6,5,1,669,0,0,0 +12866,15790,28717,-9,28716,28718,3,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1045.557699427792,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,1,0,0,6,5,1,669,0,0,0 +12866,15790,28718,28716,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,2,9.142233302675182,9.507667873323012,0,2,0,-9,8,0,3,-60.6151234984381,-9,0,0,48,2,3,1,2,2,2019,1,1,10,0,40,0,15,1,0,1,0,35.28042176221255,35.28042176221255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,6,1,0,0,6,5,1,669,0,0,0 +12867,15791,28719,-9,28721,28720,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-948.6186741506481,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,2,5,1,415.6666666666667,0,0,0 +12867,15791,28720,28721,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,3,9.237343566592932,9.100848775709595,0,2,0,-9,4,0,5,-25.55088179245891,0,0,0,26,1,2,1,-9,-9,2019,1,1,4,0,44,42,15,1,0,1,0,28.02358664447106,28.02358664447106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,2,5,1,415.6666666666667,0,0,0 +12867,15791,28721,28720,-9,-9,1,1,0,26,1,1,1,0,1,-9,5,1,0,2,7.924039659205813,7.97930092428661,0,2,0,-9,4,0,-5,40.84244445782984,0,1,1,31,1,3,1,2,2,2019,1,2,11,1,55,37,15,1,1,1,0,6.629044418301025,6.629044418301025,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.57,47.79,6,1,0,0,2,5,1,415.6666666666667,0,0,0 +12868,15792,28722,28723,-9,-9,1,1,1,73,1,0,0,0,2,-9,3,3,0,4,0,3.158111628263144,2.898200526934603,1,0,-9,30,0,15,-59.83032545072355,0,0,0,58,2,3,1,3,2,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,1,0,21.79842669154801,0,0,0,0,1,1,0,2.855718027803197,3.131820619110002,0,0,64.97,34.82,6,4,1,0,8,3,0,493.5,0,0,0 +12868,15792,28723,28722,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.270854182604241,8.201221936594296,0,1,0,-9,30,0,-15,54.10947934629083,0,0,0,73,2,4,3,3,2,2019,2,1,6,0,35,40,15,1,0,3,0,12.48258737873471,12.48258737873471,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,4,0,0,8,3,0,493.5,0,0,0 +12869,15793,28724,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,1,0,7.440736955359661,7.725834005660539,3,0,0,0,-9,0,-995.4232539381793,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,9,0,0,15,4,9,-9,0,0,0,1,8.541493227472806,0,1.078937271057344,0,7.398847932514125,29.19516374385053,1,1,0,1.364152279908162,7.650143730163173,0,0,45.75,18.48,3,1,0,0,9,3,1,1375,0,0,0 +12870,15794,28725,28727,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,2,9.130151063171729,8.684112199337143,0,2,0,-9,12,0,3,-12.40212775336447,0,0,0,41,1,5,3,2,2,2019,2,2,18,6,45,48,15,1,6,3,0,20.69047896937739,20.69047896937739,0,0,0,0,0,0,0,1,1,0,3.018092151764966,0,0,0,35.11,46.54,6,1,0,0,8,4,1,414,0,0,0 +12870,15794,28726,-9,28727,28725,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1118.650904290565,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,1,414,0,0,0 +12870,15794,28727,28725,-9,-9,2,1,0,41,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,13,0,-3,-55.99382398517946,0,0,1,44,1,2,1,2,2,2019,3,1,7,0,0,18,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.950605918961514,3,57.06,57.76,6,1,0,0,8,4,1,414,0,0,0 +12870,15794,28728,-9,28727,28725,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.019645803235,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,4,1,414,0,0,0 +12871,15795,28729,28731,-9,-9,1,1,1,47,1,0,1,0,1,-9,2,1,0,3,9.423598136508261,9.749962900446711,0,2,0,-9,8,0,10,-4.549390167954233,0,0,0,37,1,3,1,2,2,2019,1,2,12,3,41,44,15,1,3,1,0,44.60142467831223,44.60142467831223,0,0,0,0,0,0,0,0,0,0,5.67932129770049,0,0,0,48.17,52.08,6,1,0,0,7,5,1,647,0,0,0 +12871,15795,28730,-9,28731,28729,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.2368880313131,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,7,5,1,647,0,0,0 +12871,15795,28731,28729,-9,-9,2,1,0,37,1,0,1,0,1,-9,2,1,0,3,7.96908682798169,8.094316127921092,0,2,0,-9,8,0,-10,4.265642902074279,0,0,1,47,1,3,1,2,1,2019,1,1,6,0,18,18,15,1,0,1,0,28.41109057500089,28.41109057500089,0,0,0,0,0,0,0,0,0,0,8.38370826384978,0,0,0,52,54.51,6,1,0,0,7,5,1,647,0,0,0 +12872,15796,28732,28733,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,3,8.111061051995456,7.955793252971904,0,1,0,-9,3,0,0,-18.45798472604736,0,0,1,44,2,3,1,-9,-9,2019,1,1,20,8,43,32,15,1,8,1,0,8.604125991497503,8.604125991497503,0,0,0,0,0,0,0,0,0,0,6.683159052381411,0,4.215186261142463,3,43.37,57.28,6,1,0,0,9,5,1,658.5,0,0,0 +12872,15796,28733,28732,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,3,9.044970257337795,8.429575778181182,0,1,0,-9,3,0,9,-52.76227050775841,0,0,0,35,2,3,1,-9,-9,2019,1,2,9,0,45,44,15,1,0,1,0,17.65501177123869,17.65501177123869,0,0,0,0,0,0,0,0,0,0,7.723059456118315,0,0,0,56.91,49.54,6,1,0,0,9,5,1,658.5,0,0,0 +12873,15797,28734,28735,-9,-9,2,1,0,62,1,0,0,0,3,-9,2,1,0,4,6.641134516368671,6.822622979412842,0,1,0,-9,45,0,-6,-60.21356341816634,0,0,0,68,3,3,3,3,3,2019,2,1,6,0,18,15,15,1,0,4,0,5.959480885082376,5.959480885082376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,1,1,0,0,10,2,1,1437,0,0,0 +12873,15797,28735,28734,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,3,5.979592496587261,6.768662723809548,5.641442182278836,1,0,-9,45,0,6,74.10516319486351,0,0,0,62,3,4,1,2,3,2019,3,2,7,0,8,8,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.025741022643309,0,0,55.96,49.93,6,1,0,0,10,2,1,1437,0,0,0 +12874,15798,28736,28737,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,4,7.497529127425689,8.226718828919077,7.415995560543864,1,0,-9,10,0,-2,-22.97585487686212,0,0,0,66,1,4,3,-9,-9,2019,2,1,10,0,18,17,15,1,0,4,0,11.80381087567381,11.80381087567381,0,0,0,0,0,0,0,1,1,0,.715598322045456,7.503377472346481,0,0,54.2,57.49,6,1,0,0,7,4,1,785.5,0,0,0 +12874,15798,28737,28736,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,7.987965230207042,8.27702736648458,1,0,-9,37,0,2,-117.3807698590458,0,0,0,64,1,4,1,2,1,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.228692130992815,8.010354488781166,47.56669381219362,3,47.09,56.75,6,1,0,0,7,4,1,785.5,0,0,0 +12874,15799,28738,-9,28736,28737,3,1,1,32,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-995.0479990495305,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.66,60.65,3,1,1,1,7,1,1,179,0,0,0 +12875,15800,28739,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-957.6181919602999,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,49,5,3,1,0,8,1,0,719,0,0,0 +12875,15801,28740,-9,28739,-9,2,1,1,27,2,0,0,0,2,1,2,1,0,2,0,0,0,3,0,0,0,-9,0,-906.8710471555822,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,28,11,0,0,15,1,11,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.75,37.09,2,3,0,1,8,1,0,192,0,0,0 +12876,15802,28741,-9,-9,-9,1,1,0,89,3,0,0,0,1,-9,4,3,0,4,0,7.248193713130085,6.980980256278511,3,0,0,0,-9,0,-987.0552640462071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.184244888717042,0,0,60.04,36.97,6,1,0,0,9,2,1,2935,0,0,0 +12876,15803,28742,-9,28741,-9,2,1,1,60,2,0,0,0,3,-9,2,1,0,3,7.305316886147424,7.725187831811766,0,3,0,0,0,-9,0,-964.991325674572,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,39,39,15,1,5,-9,1,6.415884608364206,6.415884608364206,0,0,0,0,0,0,0,1,1,0,1.81535254086605,0,14.93093949544096,3,33.31,61.94,6,1,0,0,9,3,1,651,0,0,0 +12877,15804,28743,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1047.088060558534,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.48146323994794,3,38.01,34.13,4,1,0,0,5,1,1,240,0,0,0 +12877,15805,28744,-9,28743,-9,2,1,1,43,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-975.6068789064342,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,5,1,1,1304,0,0,0 +12878,15806,28745,28746,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,3,7.599150115934738,7.8809444279357,0,1,0,-9,4,0,-1,-173.7339211910325,0,1,1,25,2,4,1,-9,-9,2019,1,2,13,2,40,60,15,1,2,1,0,7.499182838558437,7.499182838558437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.52,53.48,5,1,0,0,10,4,0,1506.5,0,0,0 +12878,15806,28746,28745,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,4,8.114709727291851,8.134698968274607,0,1,0,-9,4,0,1,158.8309471173572,0,1,0,24,2,3,1,-9,-9,2019,1,1,12,2,78,88,15,1,2,1,0,6.094865852791754,6.094865852791754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,10,4,0,1506.5,0,0,0 +12879,15807,28747,-9,28748,-9,3,1,1,17,2,0,0,0,3,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-954.4940953878563,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,5,3,1,0,8,2,1,322.5,0,0,0 +12879,15807,28748,-9,-9,-9,1,1,0,37,3,0,0,0,3,-9,2,1,0,1,7.210620931075871,7.057623125374386,0,3,0,-9,0,1,0,-1000.239224278793,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,32,11,30,0,15,1,11,-9,0,3.359505438493366,3.359505438493366,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34,29,2,3,0,1,8,2,1,322.5,0,0,0 +12879,15808,28749,-9,28748,-9,2,1,1,18,2,0,0,0,2,1,2,1,0,3,7.290550553993645,7.438810770813554,0,3,0,0,0,-9,0,-1168.616071004394,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,35,0,15,1,0,-9,1,4.105463352803748,4.105463352803748,0,0,0,0,0,0,0,1,1,0,3.01366262401818,0,0,0,48.45,57.49,5,3,0,0,8,3,1,1955,0,0,0 +12880,15809,28750,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,2,1,0,5,6.479992881759946,6.477305622403705,0,3,0,0,0,-9,0,-1107.23770210042,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,8,8,15,1,0,-9,0,9.083952353085163,9.083952353085163,0,0,0,0,0,0,0,1,1,0,8.024948449213451,0,0,0,62.39,56.71,7,1,0,0,12,2,1,903,0,0,0 +12881,15810,28751,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-970.7840131950641,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.369404404581426,0,0,0,58.56,43.75,4,2,0,0,10,1,0,176,0,0,0 +12882,15811,28752,28753,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,5.723809676035622,5.716899798455583,1,0,-9,30,0,9,-20.31836707301263,0,0,0,61,3,3,1,3,3,2019,3,2,15,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.623314437406549,0,0,52.83,26.08,7,4,0,1,8,3,0,199,0,0,0 +12882,15811,28753,28752,-9,-9,2,1,1,61,1,0,0,0,3,-9,2,1,0,3,7.672306559047876,7.872668184601878,0,1,0,-9,11,0,0,-85.21498824866823,0,0,0,70,3,2,3,-9,-9,2019,2,1,10,0,0,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,4,0,0,8,3,0,199,0,0,0 +12883,15812,28754,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,1,8.367687145284576,8.509128254544503,0,3,0,0,0,-9,0,-958.4680430856533,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,38,52,15,1,6,-9,0,10.40617331419106,10.40617331419106,0,0,0,0,0,0,0,1,1,0,3.604581223243263,0,0,0,45.1,21.48,2,1,0,1,6,4,0,262,0,0,0 +12884,15813,28755,-9,-9,-9,1,1,1,73,2,0,0,0,2,-9,4,3,0,5,0,7.685203830009183,7.634193532042529,3,0,0,0,-9,0,-874.1657838340686,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.312351453556254,7.461764420453514,0,3,57.06,57.76,6,1,0,0,7,3,1,410,0,0,0 +12885,15814,28756,28757,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.108602256887589,7.05422561377707,1,0,-9,7,0,6,44.7828333392151,0,0,0,62,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.574050562255224,7.074451772724939,0,0,62.27,48.47,6,1,0,0,7,2,1,1302.5,0,0,0 +12885,15814,28757,28756,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,6.638277490212823,6.287536688114089,1,0,-9,7,0,-6,113.2105509366243,0,0,0,68,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.335826825171292,0,0,45.98,56.3,4,1,0,0,7,2,1,1302.5,0,0,0 +12885,15815,28758,-9,28757,28756,3,1,1,34,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1054.047015304132,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,6,1,1,0,7,1,1,336,0,0,0 +12886,15816,28759,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1001.844218876886,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.65,35.93,6,1,0,0,7,1,0,91,0,0,0 +12887,15817,28760,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,1,1,0,1,0,0,0,3,0,0,0,-9,0,-1036.898782921204,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.85,30.02,2,1,0,1,2,1,0,1196,0,0,0 +12888,15818,28761,-9,-9,-9,1,1,1,71,3,2,2,0,2,-9,4,3,0,3,0,7.294029847265681,7.348171580348123,4,0,0,0,-9,0,-986.8601663120334,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,30.1722562922015,25.47339860481786,0,0,1,1,0,7.042744677523114,7.414970439581723,0,0,52,47,5,4,0,0,8,2,0,291,0,0,0 +12889,15819,28762,-9,28764,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.849854156,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,1130.75,0,0,0 +12889,15819,28763,28764,-9,-9,5,1,1,25,1,0,3,0,2,-9,2,1,0,4,8.9461016311192,8.69539322130665,0,2,0,-9,3,0,-5,16.81470332667221,0,1,0,30,2,4,1,-9,-9,2019,1,1,12,0,85,55,15,1,0,1,0,9.63148986452895,9.63148986452895,0,0,0,0,0,0,0,1,1,0,4.052771313495684,0,0,0,52.23,55.6,6,1,0,0,2,4,1,1130.75,0,0,0 +12889,15819,28764,28763,-9,-9,1,1,0,30,1,0,3,0,2,-9,2,1,0,4,7.975533402738913,7.882540716698422,0,2,0,-9,3,0,5,49.59623843368299,0,0,1,25,2,4,1,3,3,2019,1,5,7,0,42,20,15,1,0,1,0,6.576690606537221,6.576690606537221,0,0,0,0,0,0,0,1,1,0,3.064460856134165,0,0,0,58.77,54,7,1,0,0,2,4,1,1130.75,0,0,0 +12889,15819,28765,-9,28764,28763,4,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-884.7300176831727,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,1130.75,0,0,0 +12890,15820,28766,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,4,0,6.519413897289612,6.272799608578986,3,0,0,0,-9,0,-996.7725076984461,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.858021018045873,6.299125227034261,0,0,48.22,50.81,5,1,0,0,2,2,1,527,0,0,0 +12891,15821,28767,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,5,1,0,3,0,0,0,3,0,0,0,-9,0,-1059.793490094247,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,27,12,0,65,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.547300245261214,0,0,0,25.31,57.31,3,1,0,0,8,1,0,1293,0,0,0 +12892,15822,28768,28769,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,1,8.079421887622408,7.904550496981063,4.442591336605113,1,0,-9,2,0,-4,-77.19630249182812,-9,0,0,52,2,4,1,-9,-9,2019,1,1,8,1,40,0,15,1,1,1,0,9.158649492889237,9.158649492889237,0,0,0,0,0,0,0,0,0,0,4.606245434926429,0,0,0,53.53,27.07,5,1,0,0,5,4,1,1126,0,0,0 +12892,15822,28769,28768,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.005399134758159,7.913610588171056,0,1,0,-9,2,0,4,106.4261906397984,0,0,0,48,2,1,1,3,3,2019,1,2,8,0,39,37,15,1,0,1,0,8.447009830082036,8.447009830082036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,54.33,6,1,0,0,5,4,1,1126,0,0,0 +12892,15823,28770,-9,28768,28769,3,1,0,20,2,0,0,1,2,-9,7,2,0,5,0,0,0,3,0,-9,0,-9,0,-1069.297751459752,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.95,62.73,6,1,0,0,5,1,1,2663,0,0,0 +12893,15824,28771,28772,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,4,7.137224302463475,8.282435002752553,7.574756123448169,1,0,-9,34,0,1,-109.7685551580316,0,0,0,56,2,4,1,2,3,2019,1,1,11,0,6,10,15,1,0,1,0,21.63501655821554,21.63501655821554,0,0,0,0,0,0,0,1,1,0,1.385979448942078,7.717852363365629,4.576989290660977,3,48.53,58.91,6,1,0,0,6,5,1,553,0,0,0 +12893,15824,28772,28771,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.329015360010606,8.502487295516474,0,1,0,-9,34,0,-1,53.69351031329777,0,0,0,57,1,4,1,3,3,2019,1,2,8,1,38,38,15,1,1,1,0,18.76136570524951,18.76136570524951,0,0,0,0,0,0,0,1,1,0,2.354429201997432,0,0,0,54.51,43.6,7,1,0,0,6,5,1,553,0,0,0 +12894,15825,28773,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,1,1,0,3,8.531991262902723,8.246907838600016,0,3,0,0,0,-9,0,-969.4044516415399,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,15,3,45,44,15,1,3,-9,0,11.12494129329959,11.12494129329959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.08,60.5,5,4,0,0,8,5,0,952,0,0,0 +12895,15826,28774,28775,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,6.250020793612432,5.96980546721839,1,0,-9,52,0,-3,32.09241421213316,0,0,0,74,2,2,3,2,2,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.831221444403298,6.333640770958302,75.46102440630061,1,53.9,52.09,6,1,0,0,12,2,1,662.5,0,0,0 +12895,15826,28775,28774,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,52,0,3,69.56388543587842,0,0,0,71,2,4,3,2,3,2019,4,1,18,5,0,0,15,4,5,4,0,0,0,1,0,6.83305626387612,0,0,0,0,1,1,0,5.74726693899392,0,0,0,54.56,22.9,5,1,0,0,12,2,1,662.5,0,0,0 +12896,15827,28776,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,3,8.008403255296223,8.180209582551916,0,3,0,0,0,-9,0,-1031.987522790555,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,64,72,15,1,1,-9,0,4.166552230738157,4.166552230738157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.76,40.19,3,1,0,0,7,4,0,263,0,0,0 +12897,15828,28777,28781,-9,-9,2,1,1,34,1,2,4,0,1,-9,2,1,0,3,7.955528979415762,8.186624052832769,0,2,0,-9,9,0,-6,10.30026336943883,0,0,0,40,2,3,1,1,2,2019,1,1,9,0,37,37,15,1,0,1,0,11.78410416647504,11.78410416647504,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,3,1,0,0,6,3,1,957.8333333333334,0,0,0 +12897,15828,28778,-9,28781,28777,4,1,1,5,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.9590805844281,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,957.8333333333334,0,0,0 +12897,15828,28779,-9,28781,28777,6,1,0,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.3100929492672,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,957.8333333333334,0,0,0 +12897,15828,28780,-9,28781,28777,3,1,0,6,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.9947950282427,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,1,957.8333333333334,0,0,0 +12897,15828,28781,28777,-9,-9,1,1,0,40,1,2,4,0,2,-9,2,1,0,3,8.273569715053647,8.54628324387954,0,2,0,-9,9,0,6,25.37722665509018,0,0,1,34,1,3,1,2,2,2019,1,2,12,0,39,45,15,1,0,1,0,12.20242378642454,12.20242378642454,0,0,0,0,0,0,0,1,1,0,2.078424394416043,0,0,0,52.4,50.21,4,1,0,0,6,3,1,957.8333333333334,0,0,0 +12897,15828,28782,-9,28781,28777,5,1,1,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.052660635788,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,3,1,957.8333333333334,0,0,0 +12898,15829,28783,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,6.948810100473742,6.87256212095965,3,0,0,0,-9,0,-1010.627996965708,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.077071905517512,6.751826025421603,0,0,50.25,56.54,7,1,0,0,10,2,1,355,0,0,0 +12899,15830,28784,28785,-9,-9,2,1,0,62,1,0,0,0,3,-9,6,3,0,3,0,3.743025432601303,4.167362351721431,1,0,-9,6,0,-3,16.81868018818762,0,0,0,65,2,3,1,3,3,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.344532229446012,3.584076214537414,0,0,44.79,41.69,6,1,0,0,11,5,1,2308.5,0,0,0 +12899,15830,28785,28784,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,3,9.058137069351176,9.15257992959752,0,1,0,-9,6,0,3,-56.62912763340099,0,0,0,62,3,3,3,3,3,2019,2,2,11,0,35,40,15,1,0,3,0,31.30700762232667,31.30700762232667,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.06,49.24,5,1,0,0,11,5,1,2308.5,0,0,0 +12900,15831,28786,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,3,0,5.346935957358778,4.974693851643441,3,0,0,0,-9,0,-920.9837809422834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,6.504428537503782,0,0,0,0,0,1,1,0,0,5.220677002075391,0,0,45.61,33.48,1,1,0,0,5,2,1,1216,0,0,0 +12901,15832,28787,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,6.700144833632805,6.616201720548339,3,0,0,0,-9,0,-915.362260710355,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,.3776005212595241,0,0,0,1,1,0,1.842665762732812,6.962983352589306,0,0,59.21,26.99,5,1,0,0,7,2,0,320,0,0,0 +12902,15833,28788,-9,28789,-9,2,1,0,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1040.212284954085,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,1,0,919.6666666666666,0,0,0 +12902,15833,28789,-9,-9,-9,1,1,0,28,2,1,2,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1029.80784130282,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,13,1,0,919.6666666666666,0,0,0 +12902,15833,28790,-9,28789,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1048.970530185743,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,1,0,919.6666666666666,0,0,0 +12903,15834,28791,28792,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,2,8.627592801771863,8.812008499860781,0,1,0,-9,6,0,-5,73.35381663489579,0,0,0,52,3,3,3,-9,-9,2019,2,2,15,5,47,67,15,1,5,3,0,16.10283407175458,16.10283407175458,0,0,0,0,0,0,0,1,1,0,0,0,3.286277265107438,1,45.23,37.81,6,1,0,0,11,4,1,2166.5,0,0,0 +12903,15834,28792,28791,-9,-9,2,1,0,52,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,6,0,5,60.80254269759553,0,0,0,47,2,2,1,2,3,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.39,35.93,4,1,0,0,11,4,1,2166.5,0,0,0 +12904,15835,28793,28795,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,9.498974143204673,9.085971518142989,0,2,0,-9,17,0,-2,-100.4378730357866,0,0,1,44,2,4,1,2,2,2019,1,1,14,2,43,43,15,1,2,1,0,22.46099788211665,22.46099788211665,0,0,0,0,0,0,0,0,0,0,5.357212581070796,0,0,0,37.27,50.23,4,1,0,0,6,5,1,617.6666666666666,0,0,0 +12904,15835,28794,-9,28793,28795,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.662348412278,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,1,0,0,6,5,1,617.6666666666666,0,0,0 +12904,15835,28795,28793,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,4,9.378148576386216,9.23209331484057,0,2,0,-9,17,0,2,-56.93117542650751,0,0,0,42,1,4,1,2,2,2019,1,2,7,0,52,80,15,1,0,1,0,25.88303580371607,25.88303580371607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,617.6666666666666,0,0,0 +12905,15836,28796,28797,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.303348026596492,6.578118404281072,1,0,-9,37,0,4,-11.45344009317729,0,0,0,69,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9873455949007952,6.624070407925434,15.10522304734794,3,57.92,51.82,7,1,0,0,7,2,1,471.5,0,0,0 +12905,15836,28797,28796,-9,-9,1,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,37,0,-4,-202.5053051316835,0,0,0,73,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.165304467236012,0,18.75348847673136,3,54.96,53.17,7,1,0,0,7,2,1,471.5,0,0,0 +12906,15837,28798,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,2,0,7.332686304672167,6.893441877925776,3,0,0,0,-9,0,-873.8822559131247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.083325974962016,7.106657912713351,0,0,57.48,32.2,5,1,0,0,11,2,0,145,0,0,0 +12907,15838,28799,28800,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.867191682735721,8.075685184927197,1,0,-9,53,0,1,113.6084443263097,0,0,0,74,2,4,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.744675826493674,7.457726533011681,0,0,49.28,50.19,6,1,0,0,9,3,1,221.5,0,0,0 +12907,15838,28800,28799,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,7.656324782533901,7.977775079286531,1,0,-9,53,0,-1,-107.7428916642341,0,0,0,75,2,3,3,2,2,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.799890934369262,7.425178047548556,0,0,53.37,52.37,6,1,0,0,9,3,1,221.5,0,0,0 +12908,15839,28801,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,5,7.645458731649589,7.73277057658004,0,3,0,-9,0,-9,0,-1031.701819019909,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.62,47.99,7,1,0,0,11,3,1,796,0,0,0 +12909,15840,28802,28804,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,4,7.867974224239478,7.712522830720083,0,2,0,-9,8,0,-11,-42.03718492428924,0,0,1,43,1,4,1,-9,-9,2019,1,1,13,2,48,20,15,1,2,1,0,7.750679394609049,7.750679394609049,0,0,0,0,0,0,0,1,1,0,0,0,4.297892638099375,3,38.47,57.72,6,1,0,0,12,5,1,1541.333333333333,0,0,0 +12909,15840,28803,-9,28802,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-992.6341550913244,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,12,5,1,1541.333333333333,0,0,0 +12909,15840,28804,28802,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,4,9.002399313847699,8.730775491018351,0,2,0,-9,8,0,11,-51.72442215522165,0,0,0,32,2,4,1,-9,-9,2019,1,2,6,0,43,38,15,1,0,1,0,20.91634696486909,20.91634696486909,0,0,0,0,0,0,0,1,1,0,1.313741554272667,0,0,3,54.2,57.49,6,1,0,0,12,5,1,1541.333333333333,0,0,0 +12910,15841,28805,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,6.798825622655718,6.829664139426233,3,0,0,0,-9,0,-1013.983706047779,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9167926155749559,6.690370717090516,0,0,52.51,19.65,6,1,0,0,5,2,1,172,0,0,0 +12911,15842,28806,28807,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,8.056351850984113,7.80090597240878,1,0,-9,53,0,2,-19.48604037044113,0,0,0,71,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.532424375064096,7.941111936182003,0,0,59.29,49.68,7,1,0,0,1,3,1,899,0,0,0 +12911,15842,28807,28806,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,53,0,-2,-93.16314192964479,0,0,0,73,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.737244409077852,0,0,0,55.44,52.99,7,1,0,0,1,3,1,899,0,0,0 +12912,15843,28808,28809,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.545338866584959,5.128466590062001,1,0,-9,45,0,3,-61.38309660623271,0,0,0,65,1,3,3,2,3,2019,4,2,17,6,0,20,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.148672966769769,5.039320542302758,0,0,38.09,55.51,4,1,0,0,4,4,1,605,0,0,0 +12912,15843,28809,28808,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,8.774911502155021,8.614165351274064,1,0,-9,7,0,-3,10.51075970355893,0,0,0,68,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.517216229893566,8.343500169775714,0,0,57.33,53.46,6,1,0,0,4,4,1,605,0,0,0 +12913,15844,28810,-9,28812,28811,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1071.372567942588,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,12,5,1,490.3333333333333,0,0,0 +12913,15844,28811,28812,-9,-9,1,1,1,41,1,1,1,0,1,-9,1,1,0,3,9.387158957826788,9.716323028640129,0,2,0,-9,5,0,5,11.99394754995469,0,0,0,36,1,3,3,1,1,2019,2,2,8,0,35,40,15,1,0,3,0,46.04463997095794,46.04463997095794,0,0,0,0,0,0,0,0,0,0,2.794348853926301,0,0,0,55.47,52.91,6,1,0,0,12,5,1,490.3333333333333,0,0,0 +12913,15844,28812,28811,-9,-9,2,1,0,36,1,1,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-5,-30.56899261600257,0,0,1,41,1,3,1,-9,-9,2019,3,1,15,3,0,45,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.701070414314218,0,0,0,33.12,61.85,6,1,0,0,12,5,1,490.3333333333333,0,0,0 +12914,15845,28813,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,3,0,7.767823525624657,7.814564136854903,3,0,-9,0,-9,0,-1038.701832192854,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.156841950535926,7.4571366188159,37.01042705952032,3,49.04,55.86,4,1,0,0,6,3,1,234,0,0,0 +12915,15846,28814,-9,-9,-9,1,1,1,35,3,0,0,0,2,-9,2,1,0,4,8.326384163874456,8.415577351066331,3.893190512302036,3,0,-9,0,1,0,-1124.737152271634,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,39,37,15,1,0,-9,0,14.45280544359022,14.45280544359022,0,0,0,0,0,0,0,1,1,0,4.760356415159298,0,0,0,50.34,56.4,6,1,0,0,12,5,1,612,0,0,0 +12916,15847,28815,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,2,7.878799143476935,7.648669255896674,0,3,0,0,0,-9,0,-1016.90903562895,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,29,28,15,1,0,-9,0,9.071464595757933,9.071464595757933,0,0,0,0,0,0,0,1,1,0,3.861108141802858,0,0,0,51.35,36.25,5,1,0,0,12,3,1,1577,0,0,0 +12917,15848,28816,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,3,0,7.277452887369511,7.317233951366412,3,0,0,0,-9,0,-1110.627626094823,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.600702759818556,7.252814092787204,0,0,48.13,38.29,7,4,0,0,8,2,0,153,0,0,0 +12918,15849,28817,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,5,8.293162912727579,8.109594965489897,0,3,0,0,0,-9,0,-930.6666719317366,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,38,0,15,1,3,-9,0,10.15123260709188,10.15123260709188,0,0,0,0,0,0,0,0,0,0,4.361969573792436,0,0,0,30.2,64.86,6,1,0,0,5,4,0,348,0,0,0 +12919,15850,28818,28819,-9,-9,2,1,1,54,1,0,1,0,2,-9,1,1,0,3,8.986101213836893,8.495651759737251,0,2,0,-9,7,0,-1,20.23966618768471,-9,0,0,55,2,3,1,3,3,2019,1,1,10,0,40,0,15,1,1,1,0,21.5568553955741,21.5568553955741,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,0,2,5,1,275,0,0,0 +12919,15850,28819,28818,-9,-9,1,1,0,55,1,0,1,0,2,-9,2,1,0,3,8.246871123283178,8.305698838789528,7.407215470614728,2,0,-9,7,0,1,49.14105601837851,0,0,0,54,2,3,1,2,2,2019,1,2,6,0,47,37,15,1,0,1,0,5.892848335463952,5.892848335463952,0,0,0,0,0,0,0,1,1,0,0,7.683063863017523,0,0,54.96,53.17,6,1,0,0,2,5,1,275,0,0,0 +12919,15851,28820,-9,28819,28818,3,1,1,18,2,0,1,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-923.3838776647714,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,61.41,51.58,7,1,0,0,2,5,1,193,0,0,0 +12920,15852,28821,28822,-9,-9,2,1,0,74,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,9,0,-7,-8.087614345165626,0,0,0,81,3,4,1,2,3,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.755564973695999,0,0,0,54.79,55.86,7,1,0,0,13,2,1,899.5,0,0,0 +12920,15852,28822,28821,-9,-9,1,1,1,81,1,0,0,0,3,-9,1,1,0,4,2.43457870580407,2.00943904935365,0,1,0,-9,9,0,7,2.115440127388677,0,0,0,74,2,4,3,3,3,2019,2,2,6,0,60,65,15,1,0,3,0,.0149369513597975,.0149369513597975,1,0,10.63405568168536,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,6,1,0,0,13,2,1,899.5,0,0,0 +12921,15853,28823,28824,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-3,113.3719205865333,0,0,0,70,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.87660436429043,0,0,0,50,47,5,1,0,0,8,2,1,623.5,0,0,0 +12921,15853,28824,28823,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.969095088575824,7.097049724114649,1,0,-9,6,0,3,65.3340683386034,0,0,0,67,2,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.633092077350234,6.877459875292617,0,0,53,47,5,1,0,0,8,2,1,623.5,0,0,0 +12922,15854,28825,28826,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,7.237407895053789,7.152438091265574,1,0,-9,41,0,-4,-36.65849975163864,0,0,0,66,1,3,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.290458993911526,7.40067665255803,0,0,49.06,58.64,6,1,0,0,8,4,1,1091,0,0,0 +12922,15854,28826,28825,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.277772231084095,8.206805324290997,1,0,-9,41,0,4,19.79959912213893,0,0,0,62,1,4,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.325280511007872,8.388792376205684,0,0,57.33,53.46,6,1,0,0,8,4,1,1091,0,0,0 +12923,15855,28827,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,5.816866274918972,5.696363949637647,3,0,0,0,-9,0,-951.5702607459476,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.945433982604963,0,0,39.09,53.39,6,1,0,0,13,2,1,2503,0,0,0 +12924,15856,28828,28829,-9,-9,1,1,0,69,1,0,0,0,2,-9,1,1,0,2,3.588936626239312,6.82430002898877,6.689648867767503,1,0,-9,49,0,-5,4.394597198973329,0,0,0,74,3,3,1,3,3,2019,1,2,10,1,2,0,15,1,1,1,0,2.92901304636949,2.92901304636949,1,0,10.25941648890324,0,0,0,0,1,1,0,7.505185980955108,6.633486933831108,0,0,58.48,15.4,5,1,0,0,10,3,1,750.5,0,0,0 +12924,15856,28829,28828,-9,-9,2,1,1,74,1,0,0,0,3,-9,1,1,0,3,3.755626997262604,7.676953335204763,7.604291036333199,1,0,-9,49,0,5,-2.13617536136368,0,0,0,69,2,2,1,3,3,2019,1,1,7,0,50,40,15,1,0,1,0,.1102722191324238,.1102722191324238,1,0,0,0,0,0,0,1,1,0,8.104795473277496,7.392794973264339,.0876057941124557,1,58.32,50.22,7,1,0,0,10,3,1,750.5,0,0,0 +12925,15857,28830,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,-9,0,1,0,-911.7413832777353,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.823774613531932,0,0,0,54.1,59.11,1,1,0,0,9,1,1,178,0,0,0 +12926,15858,28831,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,5,7.813680236178526,7.722328555510228,5.501830051218797,3,0,0,0,-9,0,-1074.474576434748,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,43,43,15,1,0,-9,0,6.931431629468529,6.931431629468529,0,0,0,0,0,0,0,0,0,0,0,5.5951084355599,0,0,54.1,59.11,6,1,0,0,2,4,0,679,0,0,0 +12927,15859,28832,-9,28834,28833,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.9258895193499,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,0,383.3333333333333,0,0,0 +12927,15859,28833,28834,-9,-9,1,1,1,62,1,0,2,0,2,-9,2,1,0,3,7.84326747428011,7.820075871868434,5.665519143225675,2,0,-9,16,0,22,106.4913541148311,0,0,0,40,3,3,1,3,2,2019,1,2,8,0,39,29,15,1,0,1,0,6.238484892442234,6.238484892442234,0,0,0,0,0,0,0,1,1,0,4.928853862662582,5.797224438961069,0,0,58.32,50.22,6,1,0,0,7,4,0,383.3333333333333,0,0,0 +12927,15859,28834,28833,-9,-9,2,1,0,40,1,0,2,0,3,-9,2,1,0,3,8.181245664223166,8.114867638750429,0,2,0,-9,16,0,-22,-123.9829856925655,0,0,1,62,2,3,1,3,3,2019,1,1,8,0,40,10,15,1,0,1,0,12.09657811991056,12.09657811991056,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.6,46.99,5,3,0,0,7,4,0,383.3333333333333,0,0,0 +12928,15860,28835,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,4,8.068851383551088,8.831325902393189,7.942093382485036,3,0,0,0,-9,0,-1011.8866783729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,25,40,15,1,0,-9,0,15.07886403022238,15.07886403022238,0,0,0,0,0,0,0,1,1,0,1.769155042052152,7.990282607719252,7.251994393127014,3,65.37,35.92,6,1,0,0,9,5,1,2037,0,0,0 +12929,15861,28836,-9,-9,-9,2,1,1,63,3,0,3,0,3,-9,2,1,0,3,6.15995079912634,7.70256992078603,7.538554755706315,4,0,0,0,-9,0,-1082.551607064198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,7,11,15,1,0,-9,0,6.906853689394606,6.906853689394606,0,0,0,0,0,0,0,1,1,0,0,7.190334015664829,0,0,46.1,44.8,2,1,0,0,4,2,1,90,0,0,0 +12929,15862,28837,-9,28838,28840,3,1,1,16,2,0,3,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-981.2837529095068,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,4,3,1,297.4,0,0,0 +12929,15862,28838,28840,-9,28836,1,1,0,42,1,0,3,0,2,-9,2,1,0,4,7.668877077033843,7.650459383276741,0,2,0,-9,8,0,-3,87.63709231627556,0,0,1,45,1,5,1,3,3,2019,1,6,13,2,39,0,15,1,2,1,0,9.092675472068843,9.092675472068843,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.06,58.64,6,1,0,0,4,3,1,297.4,0,0,0 +12929,15862,28839,-9,28838,28840,4,1,1,15,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-994.7169000880384,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,4,3,1,297.4,0,0,0 +12929,15862,28840,28838,-9,-9,6,1,1,45,1,0,3,0,1,-9,2,1,0,5,8.029104946634732,8.842437836793634,7.348512354981708,2,0,-9,8,0,3,-48.02171986606434,0,0,0,42,2,4,1,-9,-9,2019,1,1,24,12,45,40,15,1,12,1,0,9.485514500290833,9.485514500290833,0,0,0,0,0,0,0,1,1,0,0,7.613080834314997,0,0,37.65,57.34,5,1,0,0,4,3,1,297.4,0,0,0 +12929,15862,28841,-9,28838,28840,5,1,1,14,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-928.6585701908147,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,3,1,297.4,0,0,0 +12930,15863,28842,-9,28843,28844,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-902.9243807675281,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,7,3,1,533.25,0,0,0 +12930,15863,28843,28844,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,2,7.754547073444176,7.983270211675923,0,2,0,-9,9,0,7,51.20038006656431,0,0,1,37,2,4,1,2,3,2019,1,2,13,1,27,32,15,1,1,1,0,11.92377063872152,11.92377063872152,0,0,0,0,0,0,0,1,1,0,.6068369390164318,0,0,0,46.23,48.12,6,1,0,0,7,3,1,533.25,0,0,0 +12930,15863,28844,28843,-9,-9,2,1,1,37,1,0,2,0,2,-9,1,1,0,4,7.696421610691677,7.476955682303452,0,2,0,-9,9,0,-7,-6.04654342348487,0,0,0,44,1,2,1,-9,-9,2019,1,1,6,0,60,60,15,1,0,1,0,3.515167583156282,3.515167583156282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,7,3,1,533.25,0,0,0 +12930,15863,28845,-9,28843,28844,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.751884701185,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,1,533.25,0,0,0 +12931,15864,28846,28847,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,4,6.301270146246674,6.266454229657858,0,2,0,-9,10,0,0,44.20987490274664,0,0,0,55,2,5,1,2,2,2019,1,1,20,9,12,13,15,1,9,1,0,4.18210251450769,4.18210251450769,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.26,61.9,3,1,0,0,10,3,1,701.3333333333334,0,0,0 +12931,15864,28847,28846,-9,-9,1,1,1,55,1,0,2,0,2,-9,2,1,0,5,8.336743461697461,8.481237805667877,5.013070623323943,2,0,-9,10,0,9,70.57677256397734,0,0,0,46,2,4,1,2,2,2019,1,2,7,0,72,72,15,1,0,1,0,6.481112203197925,6.481112203197925,0,0,0,0,0,0,0,1,1,0,5.706927446512079,0,0,0,57.06,57.76,6,1,0,0,10,3,1,701.3333333333334,0,0,0 +12931,15864,28848,-9,28846,28847,5,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.62347771726,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,1,701.3333333333334,0,0,0 +12932,15865,28849,28850,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,2,8.315131266265597,7.965352329119099,0,1,0,-9,10,0,-1,58.75700090545298,-9,0,0,64,2,2,1,3,3,2019,1,1,10,0,48,0,15,1,0,1,0,8.729970384496108,8.729970384496108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,6,4,0,1,4,3,0,810.5,0,0,0 +12932,15865,28850,28849,-9,-9,1,1,0,64,1,0,0,0,2,-9,1,1,0,2,0,0,0,1,0,-9,35,0,1,-20.82326547012841,-9,0,0,63,2,2,1,3,3,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.19,37.11,7,4,0,0,4,3,0,810.5,0,0,0 +12932,15866,28851,-9,28850,28849,3,1,1,28,2,0,0,0,2,-9,2,1,0,3,7.921646004205179,7.667590712756931,0,3,0,0,0,-9,0,-1006.576929662082,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,50,19,15,1,7,-9,1,7.48809946104409,7.48809946104409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.45,54.63,3,4,0,1,4,3,0,411,0,0,0 +12933,15867,28852,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,7.535220966897013,7.786170111646188,3,0,0,0,-9,0,-1043.095516240287,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,1,5.160684532879348,0,0,0,0,50.03448239545029,1,1,0,6.747462700982405,7.63193622469025,0,0,48.3,29.57,4,1,0,0,9,3,1,308,0,0,0 +12934,15868,28853,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,2,1,0,2,6.991006626176754,7.258318389060715,0,3,0,0,0,-9,0,-1056.433696858728,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,15,15,15,1,0,-9,0,10.19082507367044,10.19082507367044,1,12.7659510129027,0,17.17619126436493,13.73653870471043,0,123.6625143288728,1,0,1,0,0,0,0,59.11,23.39,5,1,0,0,5,3,1,291,0,0,0 +12934,15869,28854,-9,28853,-9,2,1,1,44,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1021.732701532278,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,41,3,1,1,1,5,1,1,176,0,0,0 +12935,15870,28855,-9,28856,28859,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-840.9410591984288,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,9,5,1,410.8,0,0,0 +12935,15870,28856,28859,-9,-9,1,1,0,41,1,0,3,0,1,-9,1,1,0,5,9.33060652822444,9.41733582951287,0,2,0,-9,12,0,-1,67.70749351390769,0,0,1,42,1,5,1,2,1,2019,1,2,10,1,33,35,15,1,1,1,0,32.55124168424909,32.55124168424909,0,0,0,0,0,0,0,0,0,0,2.205756773697541,0,0,0,54.1,59.11,6,1,0,0,9,5,1,410.8,0,0,0 +12935,15870,28857,-9,28856,28859,3,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0682917919507,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,410.8,0,0,0 +12935,15870,28858,-9,28856,28859,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.0005079463712,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,9,5,1,410.8,0,0,0 +12935,15870,28859,28856,-9,-9,2,1,1,42,1,0,3,0,1,-9,2,1,0,5,8.962109005499832,9.089124557219002,0,2,0,-9,12,0,1,-23.21721382230612,0,0,0,41,1,5,1,2,2,2019,1,1,7,0,38,38,15,1,0,1,0,28.11862660224621,28.11862660224621,0,0,0,0,0,0,0,0,0,0,.6670845919278962,0,0,0,57.06,57.76,7,1,0,0,9,5,1,410.8,0,0,0 +12936,15871,28860,-9,-9,28861,2,1,0,17,2,0,1,1,3,0,7,2,0,5,0,0,0,4,0,0,0,-9,0,-981.8962319836527,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,1,1,0,0,13,1,0,360.5,0,0,0 +12936,15871,28861,-9,-9,-9,1,1,1,53,2,0,1,0,3,-9,8,3,1,4,0,0,0,4,0,0,0,-9,0,-1088.502600986304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,13,1,0,360.5,0,0,0 +12937,15872,28862,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,4,0,7.928733396299787,7.740631215178142,3,0,0,0,-9,0,-944.2128709204843,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2109676310814,7.99076941460712,7.933538683097462,3,60.87,42.1,6,1,0,0,7,4,1,1817,0,0,0 +12938,15873,28863,28864,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.003903224105317,8.496520911967188,0,1,0,-9,5,0,8,-39.77182482531411,0,0,0,54,2,4,1,3,3,2019,1,2,21,9,55,51,15,1,9,1,0,8.119336316731605,8.119336316731605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.44,20.81,5,1,0,0,10,4,0,412.5,0,0,0 +12938,15873,28864,28863,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,4,7.595156054793789,7.814501033230369,4.546714374275787,1,0,-9,5,0,-8,9.894849776033759,0,0,0,62,2,2,1,-9,-9,2019,1,1,7,0,35,35,15,1,0,1,0,6.231531175011515,6.231531175011515,0,0,0,0,0,0,0,0,0,0,6.646929484234454,0,0,0,48.39,50.88,7,1,0,0,10,4,0,412.5,0,0,0 +12939,15874,28865,28866,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,5,7.800556427442996,7.272740588063537,0,1,0,-9,9,0,4,64.23738705453738,0,0,0,55,2,4,1,2,2,2019,1,2,5,0,9,0,15,1,0,1,0,28.90790797381647,28.90790797381647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.54,60.99,5,1,0,0,5,4,1,2084.5,0,0,0 +12939,15874,28866,28865,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.705118428371583,8.13911055925989,0,1,0,-9,9,0,-4,-25.12785423162788,0,0,0,59,3,5,1,2,3,2019,1,1,12,1,7,39,15,1,1,1,0,37.49910477991425,37.49910477991425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,6,1,0,0,5,4,1,2084.5,0,0,0 +12939,15875,28867,-9,28866,28865,3,1,1,23,2,0,0,0,2,-9,2,1,0,5,7.652196357587322,7.657208901046566,0,3,0,0,0,-9,0,-909.2159236044047,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,8,32,15,1,0,-9,1,31.59750905694482,31.59750905694482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,1,0,0,5,3,1,203,0,0,0 +12940,15876,28868,28869,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,10,0,4,-27.30070892942888,-9,0,0,54,2,2,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38,39.66,4,1,0,1,11,3,1,450,0,0,0 +12940,15876,28869,28868,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,2,7.969245517742174,7.774159639757271,5.811239754386287,1,0,-9,10,0,-4,-15.7674251048102,0,0,0,58,2,2,3,3,3,2019,2,1,15,4,37,17,15,1,4,4,0,10.44582289416715,10.44582289416715,0,0,0,0,0,0,0,1,0,1,0,6.032265357223105,0,0,27.14,32.21,3,1,0,1,11,3,1,450,0,0,0 +12940,15877,28870,-9,28869,28868,3,1,1,22,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-975.4120213319445,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,32,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,18.34,54.07,2,1,1,1,11,2,1,303,0,0,0 +12941,15878,28871,28872,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,5,7.875602113601359,8.096080889290159,5.403966576065022,1,0,-9,46,0,1,-99.51766946704237,0,0,0,64,3,5,1,3,-9,2019,1,2,21,9,42,37,15,1,9,1,0,6.971418152877063,6.971418152877063,1,0,0,0,0,0,0,1,1,0,.9829910895132821,5.658473261302174,0,0,29.94,47.13,1,1,0,0,5,5,1,3628,0,0,0 +12941,15878,28872,28871,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,5,7.893238426675819,8.113979503539836,7.29076293297789,1,0,-9,46,0,-1,39.92551306086875,0,0,0,65,2,5,1,3,3,2019,1,1,7,0,30,30,15,1,0,1,0,7.511781925810331,7.511781925810331,0,0,0,0,0,0,0,1,1,0,.7072156401550908,7.803952060244476,0,0,60.02,56.42,6,1,0,0,5,5,1,3628,0,0,0 +12942,15879,28873,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,3,8.473304387602777,7.953271059852005,0,3,0,0,0,-9,0,-1084.900096175428,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,36,36,15,1,0,-9,0,11.85709759880591,11.85709759880591,0,0,0,0,0,0,0,0,0,0,4.481187642287647,0,0,0,56.52,48.31,5,1,0,0,10,4,1,534,0,0,0 +12943,15880,28874,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,7.129925121727671,7.027559815318512,3,0,0,0,-9,0,-1010.95428432489,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.933757091897986,7.159037359384782,0,0,57.16,56.15,6,1,0,0,11,3,1,493,0,0,0 +12944,15881,28875,-9,28877,28876,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.700173811803,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,0,340,0,0,0 +12944,15881,28876,28877,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,4,8.509048185578648,8.411143594898803,0,2,0,-9,4,0,1,36.99321471635204,0,0,0,36,1,3,3,2,2,2019,2,2,8,0,48,40,15,1,0,3,0,10.9368830477411,10.9368830477411,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,5,3,0,0,8,3,0,340,0,0,0 +12944,15881,28877,28876,-9,-9,2,1,0,36,1,1,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,4,0,-1,91.19162789485223,0,0,1,37,1,4,1,-9,-9,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.2,51.15,6,3,0,0,8,3,0,340,0,0,0 +12945,15882,28878,28879,-9,-9,4,1,1,45,1,0,2,0,2,-9,2,1,0,2,7.68264388636752,7.772776876125786,0,2,0,-9,4,0,4,-46.06249310403589,-9,0,0,41,1,4,1,-9,-9,2019,1,1,36,12,37,0,15,1,12,1,0,6.476792357677282,6.476792357677282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.02,52.27,4,1,0,1,6,4,1,1173.333333333333,0,0,0 +12945,15882,28879,28878,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.506456216911566,8.628360588500291,6.748675988141504,2,0,-9,4,0,-4,-82.93799299214443,0,0,1,45,2,2,1,2,2,2019,1,4,9,0,38,38,15,1,0,1,0,15.84314507785606,15.84314507785606,0,0,0,0,0,0,0,1,1,0,6.310629731194013,0,0,0,63,35.63,7,1,0,0,6,4,1,1173.333333333333,0,0,0 +12945,15882,28880,-9,28879,28878,2,1,1,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-996.7858213124196,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,18,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.085946297830489,0,0,0,39.22,61.48,6,1,0,0,6,4,1,1173.333333333333,0,0,0 +12946,15883,28881,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,6.728028159128763,6.72537672221291,3,0,0,0,-9,0,-971.1377421924144,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,1.496222073867969,0,0,0,0,.9435833018220343,1,1,0,0,6.972208261011726,0,0,65.73999999999999,22.13,4,1,0,0,6,2,1,714,0,0,0 +12947,15884,28882,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,8.486724067618264,8.848730551932906,0,3,0,0,0,-9,0,-992.8828275139357,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,21.60280103470225,21.60280103470225,0,0,0,0,0,0,0,1,1,0,3.277457057685095,0,0,0,44.3,55.28,5,1,0,0,12,5,1,1154,0,0,0 +12948,15885,28883,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,4,7.1493754527511,8.287259467383008,7.893636641667234,3,0,0,0,-9,0,-1077.889930152629,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,7,30,15,1,0,-9,0,17.15071872910448,17.15071872910448,0,0,0,0,0,0,0,0,0,0,1.749050627520307,7.725971772692211,13.77174607782113,3,48.76,53.24,6,1,0,0,13,4,1,521,0,0,0 +12949,15886,28884,-9,-9,-9,1,1,0,46,3,0,2,0,2,-9,2,1,0,3,7.822004327887558,7.862758592343422,6.775646705730139,4,0,0,0,-9,0,-923.7877779865092,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,28,28,15,1,4,-9,0,6.796533870914324,6.796533870914324,0,0,0,0,0,0,0,1,1,0,6.661509250026179,0,127.4633186467278,3,35.69,56.57,6,1,0,0,7,3,1,596.6666666666666,0,0,0 +12949,15886,28885,-9,28884,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-922.8097897356938,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,3,1,596.6666666666666,0,0,0 +12949,15886,28886,-9,28884,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1104.556143084468,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,3,1,596.6666666666666,0,0,0 +12950,15887,28887,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,3,0,6.080805003877483,6.196090010466033,3,0,0,0,-9,0,-953.7067875600778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.814546075457053,6.154151796076158,0,0,53.23,42.9,5,1,0,0,12,2,1,572,0,0,0 +12951,15888,28888,-9,28891,28890,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.1172113811618,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,3,1,325.5,0,0,0 +12951,15888,28889,-9,28891,28890,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-895.9113238614686,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,2,3,1,325.5,0,0,0 +12951,15888,28890,28891,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,4,7.206253156127961,7.234393740610475,0,2,0,-9,17,0,6,144.7021044729647,0,0,0,43,3,5,1,3,3,2019,1,2,9,0,35,37,15,1,1,1,0,5.197388595677115,5.197388595677115,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,2,3,1,325.5,0,0,0 +12951,15888,28891,28890,-9,-9,2,1,0,43,1,0,2,0,3,-9,2,1,0,5,8.295529134303809,8.600796748410517,0,2,0,-9,17,0,-6,32.80578086755025,0,0,1,49,2,4,1,2,2,2019,1,1,10,0,38,50,15,1,0,1,0,14.19688985158038,14.19688985158038,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.66,54.86,5,3,0,0,2,3,1,325.5,0,0,0 +12952,15889,28892,28894,-9,-9,1,1,1,28,1,0,2,0,2,-9,1,1,0,3,8.122693754073046,7.925176560340616,0,2,0,-9,4,0,5,-8.931644729768575,0,1,0,23,3,4,1,1,3,2019,1,3,1,0,50,60,15,1,0,1,0,8.911273359160415,8.911273359160415,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,9,3,0,568.25,0,0,0 +12952,15889,28893,-9,28894,28892,5,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1142.87523829213,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,568.25,0,0,0 +12952,15889,28894,28892,-9,-9,3,1,0,23,1,0,2,0,3,-9,2,1,0,4,7.212535042889241,7.159515304934916,0,2,0,-9,4,0,-5,-23.86934959293505,0,1,1,28,2,3,1,-9,-9,2019,1,1,8,2,30,28,15,1,2,1,0,6.215720855200887,6.215720855200887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,3,1,0,0,9,3,0,568.25,0,0,0 +12952,15889,28895,-9,28894,28892,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-870.2484693709207,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,568.25,0,0,0 +12952,15890,28896,-9,-9,-9,2,1,1,20,2,0,2,0,2,-9,1,1,0,3,7.235990727841089,7.471370197633129,0,4,0,0,0,-9,0,-884.8127118507077,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,34,0,15,1,2,-9,0,5.741665818518682,5.741665818518682,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.94,59.88,5,1,0,0,9,2,0,192,0,0,0 +12953,15891,28897,-9,-9,-9,1,1,1,55,3,0,0,0,1,-9,1,1,0,5,8.800599670269081,9.123059041764984,0,3,0,-9,0,1,0,-976.4196364270769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,50,60,15,1,0,-9,0,15.6538710387028,15.6538710387028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,7,1,0,0,1,5,1,489,0,0,0 +12954,15892,28898,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,4,8.108276599852644,8.052789045415942,0,3,0,0,0,-9,0,-1026.274260301281,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,50,50,15,1,7,-9,0,6.757663054445588,6.757663054445588,0,0,0,0,0,0,0,0,0,0,6.62075663536837,0,0,0,53.37,52.37,3,2,0,0,9,4,0,426,0,0,0 +12954,15893,28899,28900,-9,-9,3,1,0,26,1,0,0,0,1,-9,2,1,0,4,7.768734486601871,7.82289715547435,0,1,0,-9,3,0,-1,12.02769098095197,0,1,1,27,2,3,1,-9,-9,2019,1,2,8,2,25,25,15,1,2,1,0,8.090368099583454,8.090368099583454,0,0,0,0,0,0,0,0,0,0,1.116829046485072,0,0,0,33.3,64.17,3,1,0,1,9,4,0,327.5,0,0,0 +12954,15893,28900,28899,-9,-9,2,1,1,27,1,0,0,0,2,-9,1,1,0,3,7.837655414794933,8.195268266902605,6.127661139391448,1,0,-9,3,0,1,34.36330523615544,0,1,0,26,1,4,1,-9,-9,2019,1,3,12,0,30,25,15,1,0,1,0,10.42368429303913,10.42368429303913,0,0,0,0,0,0,0,0,0,0,6.308173909107754,0,0,0,55.51,51.57,3,2,0,0,9,4,0,327.5,0,0,0 +12955,15894,28901,-9,-9,-9,4,1,1,26,2,0,0,0,2,-9,1,1,0,2,8.371670285213934,8.532705503910892,0,3,0,0,0,-9,0,-979.6488460179413,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,60,50,15,1,3,-9,0,9.068409612591287,9.068409612591287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.16,41.04,4,1,0,0,6,4,0,227,0,0,0 +12956,15895,28902,28903,-9,-9,2,1,0,32,1,0,0,0,2,-9,2,1,0,4,7.697750086077868,7.63822123576549,0,1,0,-9,8,0,-1,37.16216632732443,0,0,1,33,1,4,1,2,2,2019,1,1,16,5,41,40,15,1,5,1,0,7.644792932492638,7.644792932492638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,6,5,1,634.5,0,0,0 +12956,15895,28903,28902,-9,-9,1,1,1,33,1,0,0,0,1,-9,2,1,0,4,8.435739078754153,8.842398335644784,0,1,0,-9,8,0,1,29.16436713678105,0,0,0,32,2,4,1,2,2,2019,1,2,14,2,45,48,15,1,2,1,0,12.46984186417709,12.46984186417709,0,0,0,0,0,0,0,0,0,0,6.766275651574234,0,0,0,48.53,58.91,6,1,0,0,6,5,1,634.5,0,0,0 +12957,15896,28904,28905,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,3,8.309654688361318,8.405242535288254,0,1,0,-9,19,0,-5,70.40529428545565,0,0,0,61,2,3,1,3,3,2019,1,1,9,0,42,82,15,1,0,1,0,15.26726017855575,15.26726017855575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.88,43.27,6,1,0,0,12,4,0,1257,0,0,0 +12957,15896,28905,28904,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,7.151683656441253,7.682710062769729,0,1,0,-9,18,0,5,-35.05997235840383,0,0,0,56,2,3,1,2,3,2019,1,2,15,3,17,21,15,1,3,1,0,10.88427710054613,10.88427710054613,0,0,0,0,0,0,0,0,0,0,6.356716761170926,0,0,0,51.66,54.88,6,1,0,0,12,4,0,1257,0,0,0 +12958,15897,28906,28907,-9,-9,1,1,0,47,1,0,0,0,1,-9,1,1,0,3,8.977634751347134,8.86699287459281,0,1,0,-9,2,0,0,-51.82057025968182,0,0,0,47,3,2,1,2,3,2019,1,2,10,2,37,28,15,1,2,1,0,17.22201102650262,17.22201102650262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.52,35.91,5,1,0,0,2,5,0,872,0,0,0 +12958,15897,28907,28906,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,2,8.486975479044007,8.422857236637697,0,1,0,-9,2,0,0,77.81882387831875,-9,0,0,47,1,3,1,-9,-9,2019,1,1,8,0,37,0,15,1,0,1,0,11.63650037706063,11.63650037706063,0,0,0,0,0,0,0,0,0,0,6.54321266834784,0,0,0,38.1,50.63,6,1,0,0,2,5,0,872,0,0,0 +12959,15898,28908,28909,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,7.250385682618397,6.978581338577524,1,0,-9,9,0,4,103.8502547836816,0,0,0,67,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.161985213791234,6.986233049940745,0,0,56.46,49.68,6,1,0,0,4,2,1,342,0,0,0 +12959,15898,28909,28908,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-4,-102.9300829005814,0,0,0,71,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,6,1,0,0,4,2,1,342,0,0,0 +12960,15899,28910,28911,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,2,7.581676031807258,7.708247586484133,0,2,0,-9,7,0,6,-22.42123411863258,0,0,0,39,2,4,1,3,3,2019,1,2,14,4,30,30,15,1,4,1,0,7.714351199311323,7.714351199311323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.92,26.61,5,1,0,0,13,5,1,637,0,0,0 +12960,15899,28911,28910,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.930198449754082,9.155194088191168,0,2,0,-9,7,0,-6,42.35305059045691,-9,0,0,45,2,2,1,-9,-9,2019,1,1,9,0,37,0,15,1,1,1,0,26.14348324450342,26.14348324450342,0,0,0,0,0,0,0,1,1,0,2.833083726423725,0,0,0,51,56,6,1,0,0,13,5,1,637,0,0,0 +12960,15899,28912,-9,28910,28911,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.734308795524,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,5,1,637,0,0,0 +12960,15899,28913,-9,28910,28911,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.3940243992453,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,5,1,637,0,0,0 +12961,15900,28914,28915,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,2,8.746221690570552,8.889691928644577,0,1,0,-9,9,0,4,148.6144405418842,0,0,0,52,1,4,1,3,2,2019,1,1,8,0,36,36,15,1,0,1,0,19.27174641608546,19.27174641608546,0,0,0,0,0,0,0,0,0,0,5.677711748020152,0,0,0,43.46,30.35,6,1,0,0,13,5,1,165,0,0,0 +12961,15900,28915,28914,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,4,9.313952006803497,9.352576416394582,0,1,0,-9,9,0,-4,-6.224906004553587,0,0,0,56,2,2,1,3,3,2019,1,2,12,0,37,36,15,1,0,1,0,34.54331796413386,34.54331796413386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.7,58.01,5,1,0,0,13,5,1,165,0,0,0 +12961,15901,28916,-9,28914,28915,3,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1012.078598661569,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,13,1,1,759,0,0,0 +12962,15902,28917,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-993.8890716052923,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,1,0,0,13,1,0,861,0,0,0 +12963,15903,28918,28919,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,6.687577014290587,7.038837878773277,5.884124218449537,1,0,-9,32,0,1,-73.87819059501994,0,0,0,56,1,4,1,3,3,2019,1,2,10,1,6,6,15,1,1,1,0,13.26707796048214,13.26707796048214,0,0,0,0,0,0,0,0,0,0,3.640628205872974,5.808721886500938,0,0,46.98,59.35,6,1,0,0,9,5,1,355.5,0,0,0 +12963,15903,28919,28918,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,7.374864980028174,9.607232075247243,9.631695817623637,1,0,-9,32,0,-1,133.6706551617436,0,0,0,57,2,4,1,2,3,2019,1,1,6,0,18,33,15,1,0,1,0,9.743624885508181,9.743624885508181,0,0,0,0,0,0,0,0,0,0,9.171943332605215,9.432619900519487,0,0,57.16,56.15,7,1,0,0,9,5,1,355.5,0,0,0 +12963,15904,28920,-9,28918,28919,3,1,1,21,2,0,0,0,1,1,2,1,0,5,7.552178656997883,7.716351317651658,0,3,0,0,0,-9,0,-1094.966100531844,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,40,0,15,1,0,-9,1,7.138156937527759,7.138156937527759,0,0,0,0,0,0,0,0,0,0,1.453624355331603,0,0,0,54.1,59.11,6,1,0,0,9,3,1,197,0,0,0 +12964,15905,28921,28922,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,4,9.269332667179249,9.160277280375897,0,1,0,1,1,-9,3,20.46748039190575,0,1,0,23,1,4,1,1,1,2019,1,2,9,0,39,50,15,1,0,1,0,27.99676438571095,27.99676438571095,0,0,0,0,0,0,0,0,0,0,1.789423090178675,0,0,0,54.79,55.86,6,1,0,0,10,5,1,718.5,0,0,0 +12964,15905,28922,28921,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,4,8.288349848399463,8.285940621994797,6.038089457334335,1,0,-9,1,-9,-3,41.96787703736593,-9,1,1,26,1,4,1,-9,-9,2019,1,1,10,1,38,0,15,1,1,1,0,10.18482068862686,10.18482068862686,0,0,0,0,0,0,0,0,0,0,6.517521452726193,0,0,0,48.87,58.55,5,1,0,0,10,5,1,718.5,0,0,0 +12965,15906,28923,-9,28925,28924,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-993.2461790473156,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,5,1,1151.666666666667,0,0,0 +12965,15906,28924,28925,-9,-9,1,1,1,56,1,0,1,0,1,-9,2,1,0,4,9.241503762289609,9.266396622261608,0,2,0,-9,23,0,9,34.85826482892949,0,0,0,47,1,2,1,2,2,2019,1,2,9,0,50,50,15,1,1,1,0,26.67212984311512,26.67212984311512,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,3,0,0,8,5,1,1151.666666666667,0,0,0 +12965,15906,28925,28924,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,2,7.605189084699011,7.833764592463763,0,2,0,-9,23,0,0,-36.00654928281675,0,0,0,56,1,4,1,2,1,2019,1,1,13,2,35,25,15,1,2,1,0,7.193627854113712,7.193627854113712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,54.86,4,3,0,0,8,5,1,1151.666666666667,0,0,0 +12965,15907,28926,-9,28925,28924,3,1,0,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-991.5260585040218,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,3,0,0,8,1,1,228,0,0,0 +12966,15908,28927,28928,-9,-9,2,1,1,52,1,0,0,0,2,-9,4,3,0,1,0,7.9767824925443,7.945780115020816,1,0,-9,22,0,8,136.1914776773712,0,0,0,44,2,3,1,2,2,2019,3,1,22,10,0,50,15,4,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.904105081500909,8.129297027053033,120.7951601825127,3,42.43,21.33,5,1,0,0,1,4,1,590.5,0,0,0 +12966,15908,28928,28927,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,3,7.987509169196441,8.05749542147206,0,1,0,-9,25,0,-8,-44.75172335592219,0,0,1,52,2,1,3,2,2,2019,2,2,17,5,41,40,15,1,5,4,0,9.122843751171954,9.122843751171954,0,0,0,0,0,0,0,1,1,0,0,0,122.9551237559176,2,37.98,59.7,4,1,0,0,1,4,1,590.5,0,0,0 +12966,15909,28929,-9,28928,28927,3,1,1,22,2,0,0,0,3,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1124.938286022269,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4098464214394462,0,0,0,48,59,5,1,0,0,1,1,1,589,0,0,0 +12966,15910,28930,-9,28928,28927,4,1,0,18,2,0,0,1,2,0,7,2,0,4,7.400248611329249,7.402807618216342,0,3,0,0,0,-9,0,-1012.805705099435,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.76,54.51,6,1,0,0,1,3,1,730,0,0,0 +12967,15911,28931,-9,-9,-9,1,1,1,66,3,0,0,0,1,-9,4,3,0,1,0,6.350796969968892,6.888410542404737,3,0,0,0,-9,0,-978.1326753061761,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.031517230882863,6.591086232992286,0,0,56.73,12.41,6,1,0,0,4,2,0,585,0,0,0 +12968,15912,28932,-9,28933,28934,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.0115525309012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,6,4,1,686,0,0,0 +12968,15912,28933,28934,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,4,8.330954802380884,8.213349258734475,0,2,0,-9,20,0,6,-30.49800797226796,0,0,0,41,1,5,1,3,3,2019,1,2,14,2,30,80,15,1,2,1,0,15.28291895828539,15.28291895828539,0,0,0,0,0,0,0,0,0,0,2.681350148583236,0,0,0,44.08,59.33,3,1,0,0,6,4,1,686,0,0,0 +12968,15912,28934,28933,-9,-9,2,1,1,41,1,0,1,0,1,-9,1,1,0,5,8.295124956107539,8.577007541598942,0,2,0,-9,18,0,-6,95.29361052705916,0,0,0,47,1,4,1,2,2,2019,1,1,2,0,40,44,15,1,0,1,0,11.66929538636386,11.66929538636386,0,0,0,0,0,0,0,0,0,0,.2594917031250766,0,0,0,60.02,56.42,6,1,0,0,6,4,1,686,0,0,0 +12969,15913,28935,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,7.839474727925064,7.919632046872749,0,3,0,0,0,-9,0,-1039.29188326404,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,37,38,15,1,3,-9,0,10.21483072346173,10.21483072346173,0,0,0,0,0,0,0,1,1,0,4.413503400039442,0,0,0,38.54,49.61,4,1,0,1,7,4,1,726,0,0,0 +12970,15914,28936,-9,-9,-9,1,1,0,82,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1108.089168384218,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,43.1,36.84,5,1,0,0,13,1,0,312,0,0,0 +12971,15915,28937,-9,28938,28939,1,1,1,47,3,0,0,0,2,-9,2,1,0,3,8.513815229535004,8.577008157781497,0,3,0,0,0,-9,0,-1013.734592011651,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,60,65,15,1,1,-9,1,9.719220505384317,9.719220505384317,0,0,0,0,0,0,0,1,1,0,6.681373704775707,0,4.508460927142368,3,45.73,42.44,3,1,0,0,2,5,0,685,0,0,0 +12971,15916,28938,28939,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,5,0,-6,-89.02751788271658,0,0,0,86,3,1,3,-9,-9,2019,4,3,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.914513925452088,1,46.29,34.56,6,1,0,0,2,2,0,624,0,0,0 +12971,15916,28939,28938,-9,-9,3,1,1,86,1,0,0,0,3,-9,4,3,0,1,0,3.788832670284361,3.858352954454839,1,0,-9,5,0,6,-16.63916314789051,0,0,0,80,2,2,3,-9,-9,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.485695829745051,0,0,44.82,27.26,5,1,0,0,2,2,0,624,0,0,0 +12972,15917,28940,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,3,8.650232887024144,8.516496253447448,0,3,0,0,0,-9,0,-978.3828549282118,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,41,36,15,1,0,-9,0,18.31495458618697,18.31495458618697,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,4,0,0,8,5,1,607,0,0,0 +12973,15918,28941,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.419660033640897,8.112638957747762,0,3,0,-9,0,-9,0,-958.4595619675156,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,40,0,15,1,3,-9,0,10.72670191996038,10.72670191996038,0,0,0,0,0,0,0,0,0,0,3.91566177144293,0,0,0,49.09,57.3,5,1,0,0,6,4,1,489,0,0,0 +12974,15919,28942,28943,-9,-9,1,1,1,56,1,0,1,0,3,-9,2,1,0,3,8.353699489886512,8.174935781805251,0,2,0,-9,18,0,15,-86.23987726999439,0,0,0,41,2,3,1,3,3,2019,1,2,9,0,37,39,15,1,0,1,0,14.43293532500171,14.43293532500171,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,2,4,1,906.3333333333334,0,0,0 +12974,15919,28943,28942,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,3,7.451911903525712,7.359274416086182,0,2,0,-9,18,0,-15,-71.09647987714446,0,0,1,56,3,3,1,2,-9,2019,1,1,14,2,29,30,15,1,2,1,0,6.78320867002615,6.78320867002615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,6,1,0,0,2,4,1,906.3333333333334,0,0,0 +12974,15919,28944,-9,28943,28942,3,1,1,17,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-801.7002133807961,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.9,48.18,7,1,0,0,2,4,1,906.3333333333334,0,0,0 +12975,15920,28945,28947,-9,-9,2,1,0,38,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,10,0,1,-78.64279877745487,0,0,1,37,1,4,1,3,3,2019,3,1,32,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.97209312771505,3,15.08,66.28,3,3,0,1,9,4,1,2217.75,0,0,0 +12975,15920,28946,-9,28945,28947,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.659722990506,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,4,1,2217.75,0,0,0 +12975,15920,28947,28945,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,4,9.149864487778219,8.712906218581837,0,2,0,-9,10,0,-1,18.03094428614412,0,0,0,38,1,3,3,2,1,2019,2,2,10,0,55,45,15,1,1,3,0,18.32954682416109,18.32954682416109,0,0,0,0,0,0,0,1,1,0,4.093069293154397,0,0,0,51,56,5,3,0,0,9,4,1,2217.75,0,0,0 +12975,15920,28948,-9,28945,28947,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.967673305283,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,9,4,1,2217.75,0,0,0 +12976,15921,28949,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1034.974903968885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,10,0,0,15,4,10,-9,0,0,0,1,0,0,.0758136596688073,5.314613767747804,0,0,1,1,0,4.482080177301643,0,0,0,33.29,31.88,3,1,0,0,13,1,1,201,0,0,0 +12977,15922,28950,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1137.643947287751,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.1595630208926,3,30.45,64.19,6,1,0,0,4,1,1,1034,0,0,0 +12977,15923,28951,-9,28950,-9,2,1,0,51,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1043.60256313803,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35,27,4,1,0,0,4,1,1,140,0,0,0 +12978,15924,28952,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,6.636350895498752,6.673483310869011,3,0,0,0,-9,0,-929.7767966496709,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.325381279720149,6.498784089118327,0,0,62.6,34.56,7,1,0,0,10,2,1,3540,0,0,0 +12979,15925,28953,-9,28956,28954,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.07491364988,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,7,3,0,459.75,0,0,0 +12979,15925,28954,28956,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,4,7.905670833182873,7.890607354705989,0,2,0,-9,12,0,-3,-17.20199255697796,0,0,0,45,2,4,1,-9,-9,2019,1,1,11,1,72,60,15,1,1,1,0,4.59672964829663,4.59672964829663,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.09,53.39,6,1,0,0,7,3,0,459.75,0,0,0 +12979,15925,28955,-9,28956,28954,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.675139649554,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,7,3,0,459.75,0,0,0 +12979,15925,28956,28954,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,4,6.930333861820502,6.789320152408977,0,2,0,-9,18,0,3,-28.43391562178221,0,0,0,42,2,4,1,3,-9,2019,1,2,9,1,30,52,15,1,1,1,0,4.24311821124818,4.24311821124818,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.16,56.15,7,4,0,0,7,3,0,459.75,0,0,0 +12980,15926,28957,-9,-9,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,4,7.9886850326392,7.896465358518846,0,3,0,0,0,-9,0,-959.8525877548725,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,42,0,15,1,0,-9,0,6.329111511121506,6.329111511121506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,5,1,0,0,10,4,0,446,0,0,0 +12980,15927,28958,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,4,8.577907662102628,8.648509740808636,0,3,0,0,0,-9,0,-952.4318755874701,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,3,0,37,45,15,1,0,-9,0,16.64427687176292,16.64427687176292,0,0,0,0,0,0,0,0,0,0,2.292150265049195,0,0,0,54.2,57.49,7,1,0,0,10,5,0,1393,0,0,0 +12981,15928,28959,-9,28961,28960,3,1,0,6,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.701028656282,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,7,1,0,682.8571428571429,0,0,0 +12981,15928,28960,28961,-9,-9,5,1,1,43,1,1,5,0,2,-9,3,3,0,3,0,0,0,2,0,-9,5,0,16,0,0,0,0,27,3,3,3,-9,-9,2019,4,1,5,0,0,20,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,7,4,1,0,7,1,0,682.8571428571429,0,0,0 +12981,15928,28961,28960,-9,-9,1,1,0,27,1,1,5,0,3,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-16,0,0,1,1,43,2,3,3,3,3,2019,4,5,21,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.2,48.44,6,4,0,0,7,1,0,682.8571428571429,0,0,0 +12981,15928,28962,-9,28961,28960,6,1,0,3,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.0424319969406,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,7,1,0,682.8571428571429,0,0,0 +12981,15928,28963,-9,28961,28960,7,1,0,2,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.783308356089,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,4,0,0,7,1,0,682.8571428571429,0,0,0 +12981,15928,28964,-9,28961,28960,2,1,0,9,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.103246132793,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,7,1,0,682.8571428571429,0,0,0 +12981,15928,28965,-9,28961,28960,4,1,0,4,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.609250671002,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,7,1,0,682.8571428571429,0,0,0 +12982,15929,28966,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,8,3,1,1,0,5.258093452828081,4.912473916902877,3,0,0,0,-9,0,-1015.861496838548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.114518127654867,0,0,37.9,19.37,5,1,0,0,11,2,0,447,0,0,0 +12983,15930,28967,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,6,3,0,1,0,0,0,3,0,-9,0,1,0,-914.8064599417974,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,36.14,4,3,0,0,4,1,0,267,0,0,0 +12983,15931,28968,-9,28967,-9,4,1,0,19,2,0,0,0,2,-9,2,1,0,2,6.666689103767708,6.675100461991184,0,3,0,0,0,-9,0,-994.8769367610765,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,5,14,38,15,1,5,-9,1,7.202481399495448,7.202481399495448,0,0,0,0,0,0,0,1,1,0,0,0,8.964193308472931,3,38.28,49.04,5,3,0,0,4,2,0,421,0,0,0 +12984,15932,28969,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,6.219673435291902,6.252418636994259,3,0,0,0,-9,0,-1092.756302265685,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.455907859270962,0,0,53.98,50.87,7,1,0,0,4,2,0,264,0,0,0 +12985,15933,28970,-9,-9,-9,1,1,0,45,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-931.9266995258409,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.57,20.42,1,1,0,1,8,1,0,1251.5,0,0,0 +12985,15933,28971,-9,28970,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-957.9500172058048,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.81255976819131,3,49.12,57.28,6,1,0,0,8,1,0,1251.5,0,0,0 +12986,15934,28972,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,5,9.085344070401687,9.130335277381249,0,3,0,0,0,-9,0,-934.0856288956202,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,49,47,15,1,1,-9,0,24.33365599830059,24.33365599830059,0,0,0,0,0,0,0,0,0,0,4.308076978498207,0,0,0,51.14,60.45,5,1,0,0,9,5,1,850,0,0,0 +12987,15935,28973,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,4,3,0,4,0,7.750861579238579,8.316961275653485,3,0,0,0,-9,0,-981.8453535570345,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,41,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.022909908335377,8.234485118445379,0,0,57.16,56.15,6,1,0,0,2,4,1,272,0,0,0 +12987,15936,28974,-9,-9,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,5.4970552856909,5.340757795612319,3,0,-9,0,-9,0,-1045.295051839529,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.189367916477454,0,0,49,48,5,1,0,0,2,2,1,2220,0,0,0 +12988,15937,28975,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,2,8.133368349845814,7.984362472564598,0,3,0,0,0,-9,0,-855.586973825014,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,38,15,1,0,-9,0,7.950756577725268,7.950756577725268,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44.07,39.47,4,1,0,0,6,3,1,507,0,0,0 +12989,15938,28976,28977,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.428282701430808,8.514362217518293,7.752426985391226,1,0,-9,3,0,-4,-179.0929495013273,0,0,0,58,2,4,3,2,1,2019,2,2,7,0,22,0,15,1,0,4,0,16.08750392424728,16.08750392424728,0,0,0,0,0,0,0,0,0,0,4.672763828286033,7.797034069302625,0,0,51.84,51.67,7,1,0,0,2,5,1,679,0,0,0 +12989,15938,28977,28976,-9,-9,2,1,1,58,1,0,0,0,2,-9,4,3,0,4,0,7.56924573375217,8.139100858771837,1,0,-9,3,0,4,14.32957537482684,0,0,0,54,1,4,1,-9,-9,2019,3,1,11,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.075276519520662,7.828061447603959,5.012959230074944,3,48.77,57.64,6,1,0,0,2,5,1,679,0,0,0 +12989,15939,28978,-9,28976,28977,3,1,1,22,2,0,0,0,1,1,2,1,0,4,7.877376905641665,8.095887897676281,0,3,0,0,0,-9,0,-934.9906225530759,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,39,0,15,1,0,-9,1,6.835574467234585,6.835574467234585,0,0,0,0,0,0,0,0,0,0,2.693797725969692,0,0,0,54.2,57.49,6,1,0,0,2,4,1,448,0,0,0 +12990,15940,28979,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,4,3,0,2,0,7.817844299550596,7.680032488334768,3,0,0,0,-9,0,-930.3500658647949,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,27,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.572225086520641,0,0,63.66,22.37,6,1,0,0,6,3,1,362,0,0,0 +12991,15941,28980,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,4,0,7.417857937462667,6.973342260815135,3,0,0,0,-9,0,-955.8163987103504,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,2,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.454981160169942,0,0,54.6,48.52,7,1,0,0,4,3,1,369,0,0,0 +12992,15942,28981,28982,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.979959470114407,9.448481347335218,7.520249578387146,1,0,-9,36,0,1,-153.1240921006597,0,0,0,56,1,4,1,3,2,2019,1,1,7,0,47,50,15,1,0,1,0,15.95944835298475,15.95944835298475,0,0,0,0,0,0,0,0,0,0,3.405040076195093,7.843668348181621,11.76697192365718,3,61.12,51.57,2,1,0,0,6,5,1,294,0,0,0 +12992,15942,28982,28981,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.307338748688462,8.327424665654068,0,1,0,-9,36,0,-1,30.91505277256864,0,0,0,57,2,4,1,3,3,2019,1,2,8,0,38,38,15,1,0,1,0,14.14116687301337,14.14116687301337,0,0,0,0,0,0,0,0,0,0,6.929845154364531,0,0,0,57.16,56.15,7,1,0,0,6,5,1,294,0,0,0 +12993,15943,28983,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,2,1,0,3,7.266989580237914,7.310027494502616,0,3,0,-9,0,-9,0,-935.5946120375835,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,39,0,15,1,1,-9,0,5.629098200162518,5.629098200162518,0,0,0,0,0,0,0,0,0,0,.9700279414030979,0,0,0,52,48,5,1,0,0,4,3,1,444,0,0,0 +12994,15944,28984,28986,-9,-9,2,1,0,42,1,0,1,0,1,-9,2,1,0,3,8.343875105011925,8.544053859485015,0,2,0,-9,23,0,0,-84.90945663449776,0,0,1,42,2,3,1,2,3,2019,1,1,13,2,53,53,15,1,2,1,0,9.185318798594956,9.185318798594956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,30.4,5,1,0,0,4,4,1,413,0,0,0 +12994,15944,28985,-9,28984,28986,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.890201851384,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,4,4,1,413,0,0,0 +12994,15944,28986,28984,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,3,8.362384318983267,8.357421604306181,0,2,0,-9,23,0,0,20.51517504586743,0,0,0,42,1,3,1,1,2,2019,1,2,7,0,38,40,15,1,0,1,0,11.58886543933464,11.58886543933464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.81,34.42,6,1,0,0,4,4,1,413,0,0,0 +12995,15945,28987,28988,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,5,8.41234237878054,8.306848448606194,0,1,0,-9,4,0,-5,-13.10429372363737,0,0,0,60,3,4,1,3,1,2019,1,2,7,0,38,37,15,1,0,1,0,14.10742765626181,14.10742765626181,0,0,0,0,0,0,0,0,0,0,2.723835958165422,0,0,0,54.1,59.11,6,1,0,0,7,5,1,598.5,0,0,0 +12995,15945,28988,28987,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,4,8.476366852991989,8.664326455414541,6.492370090465925,1,0,-9,4,0,5,-74.61269787236478,0,0,0,55,2,5,1,-9,-9,2019,1,1,9,0,45,45,15,1,0,1,0,12.98763199593687,12.98763199593687,0,0,0,0,0,0,0,0,0,0,4.985357281737168,6.716479386516668,0,0,48.27,45.05,5,1,0,0,7,5,1,598.5,0,0,0 +12996,15946,28989,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-927.4216912582999,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.815054046382846,0,0,0,38.49,59.44,3,1,0,0,12,1,1,137,0,0,0 +12997,15947,28990,28991,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,7.094798572603529,6.910094946416821,1,0,-9,52,0,-5,-33.25224213799638,0,0,0,79,2,5,3,3,3,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.27488170563104,0,0,39.62,41.48,6,1,0,0,10,2,0,553.5,0,0,0 +12997,15947,28991,28990,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,52,0,5,23.14866968671829,0,0,0,74,3,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58,51,7,1,0,0,10,2,0,553.5,0,0,0 +12998,15948,28992,28993,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,5.597471279457682,6.074221786184916,1,0,-9,60,0,2,-51.37353063625807,0,0,0,78,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.817049011511651,0,0,60.29,52.11,7,1,0,0,7,2,0,134.5,0,0,0 +12998,15948,28993,28992,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,60,0,-2,56.15787145666832,0,0,0,80,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,1,0,0,7,2,0,134.5,0,0,0 +12999,15949,28994,-9,28997,28995,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.5251291203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,4,1,701.75,0,0,0 +12999,15949,28995,28997,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,3,9.19501341512443,9.24982772110938,0,2,0,-9,7,0,-2,-62.54370274275426,0,0,0,46,2,4,3,-9,-9,2019,2,1,11,0,40,37,15,1,0,3,0,26.90497710831828,26.90497710831828,0,0,0,0,0,0,0,0,0,0,3.499249959076105,0,0,0,49.23,55.95,6,1,0,0,12,4,1,701.75,0,0,0 +12999,15949,28996,-9,28997,28995,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.001322039073,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,4,1,701.75,0,0,0 +12999,15949,28997,28995,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,19,0,2,-63.25844829436734,0,0,0,44,2,3,1,3,2,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,12,4,1,701.75,0,0,0 +13000,15950,28998,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,7.623092140745904,7.572428532588625,0,3,0,0,0,-9,0,-937.398936358498,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,58,60,15,1,0,-9,0,2.900675092370073,2.900675092370073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.63,50.99,5,1,0,0,1,3,1,557,0,0,0 +13001,15951,28999,-9,-9,-9,1,1,0,55,3,0,0,0,1,-9,1,1,0,2,8.533892200667323,8.211905884139076,0,3,0,0,0,-9,0,-881.7909272917541,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,3,60,45,15,1,3,-9,0,7.099880953104744,7.099880953104744,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,43.19,3,1,0,0,2,4,0,429,0,0,0 +13002,15952,29000,-9,-9,-9,1,1,0,49,2,0,1,0,2,-9,1,1,0,4,8.694732680910391,8.486726061612757,0,4,0,0,0,-9,0,-963.5323304723955,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,55,50,15,1,1,-9,0,12.93944250697651,12.93944250697651,0,0,0,0,0,0,0,0,0,0,5.098328362823187,0,0,0,41.87,59.15,5,1,0,0,7,4,1,2588,0,0,0 +13002,15953,29001,-9,29000,-9,2,1,0,26,2,0,1,0,1,-9,2,1,0,5,8.065816890437045,8.04876550680172,0,3,0,0,0,-9,0,-1069.523862518773,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,45,48,15,1,8,-9,1,7.339745126976,7.339745126976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.77,65.94,5,1,0,0,7,4,1,1832,0,0,0 +13002,15954,29002,-9,29000,-9,3,1,1,18,2,0,1,1,2,0,7,2,0,2,5.707343291617768,7.263894914417445,6.487803764810933,3,0,0,0,-9,0,-1080.343209607552,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.500574140819941,0,0,0,56.14,36.8,6,1,0,0,7,4,1,2345,0,0,0 +13003,15955,29003,29004,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,5,8.475387778222357,8.308489836831333,0,1,0,1,1,-9,-1,-92.20402862807828,0,1,0,25,2,5,1,-9,-9,2019,1,2,8,0,48,0,15,1,0,1,0,12.10819957830119,12.10819957830119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,2,4,1,950.5,0,0,0 +13003,15955,29004,29003,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,5,7.744353887723543,7.340862012106182,0,1,0,-9,1,-9,1,101.1611418930409,-9,1,1,24,1,5,1,-9,-9,2019,1,1,6,0,39,0,15,1,0,1,0,7.50720786777048,7.50720786777048,0,0,0,0,0,0,0,0,0,0,4.644007307231401,0,0,0,57.06,57.76,6,1,0,0,2,4,1,950.5,0,0,0 +13004,15956,29005,29006,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,8.031642393719711,8.174578114874539,1,0,-9,56,0,-2,-7.285726847468375,0,0,0,80,2,4,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.901639415338817,8.217348865624736,0,0,44.18,42.87,6,1,0,0,8,3,1,200,0,0,0 +13004,15956,29006,29005,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,56,0,2,39.63800800080502,0,0,0,78,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.985777821770676,0,0,0,58.15,52.91,6,1,0,0,8,3,1,200,0,0,0 +13005,15957,29007,-9,29008,29009,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-951.1032905539394,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,679,0,0,0 +13005,15957,29008,29009,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,9.338193325409962,9.059335683869575,0,2,0,-9,18,0,5,10.2659432027958,0,0,0,40,1,3,1,2,1,2019,1,2,14,4,42,41,15,1,4,1,0,25.70056936089195,25.70056936089195,0,0,0,0,0,0,0,1,1,0,3.889717707165896,0,0,0,38.15,62.02,6,1,0,0,9,5,1,679,0,0,0 +13005,15957,29009,29008,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,3,9.116145591797904,9.018853366120874,0,2,0,-9,17,0,-5,15.81977222396326,0,0,0,45,1,4,1,2,2,2019,1,1,11,4,40,39,15,1,4,1,0,26.80760291916176,26.80760291916176,0,0,0,0,0,0,0,1,1,0,3.525472455358739,0,0,0,39.46,56.1,3,1,0,0,9,5,1,679,0,0,0 +13005,15957,29010,-9,29008,29009,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.998988314021,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,9,5,1,679,0,0,0 +13006,15958,29011,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,2,1,0,4,9.805406146716779,9.622901236646189,0,3,0,0,0,-9,0,-1051.073286625994,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,40,15,1,0,-9,0,50.72641852907827,50.72641852907827,0,0,0,0,0,0,0,1,1,0,8.841412504163277,0,0,3,57.16,56.15,6,1,0,0,9,5,0,260,0,0,0 +13006,15959,29012,-9,-9,29011,2,1,0,23,3,0,0,0,1,-9,2,1,0,4,8.0385748914663,8.104616906883832,0,3,0,0,0,-9,0,-1149.848674593231,0,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,4,0,40,55,15,1,0,-9,1,11.1186951855475,11.1186951855475,0,0,0,0,0,0,0,1,1,0,2.119624074994641,0,0,0,53.47,51.1,6,1,0,0,9,4,0,634,0,0,0 +13007,15960,29013,29014,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,18,0,-6,79.29309957743124,0,0,0,68,1,3,3,1,2,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.158570271407204,0,0,0,45.58,47.97,6,1,0,0,7,3,1,776.5,0,0,0 +13007,15960,29014,29013,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,7.842007017415733,7.617321306878283,1,0,-9,18,0,6,-13.15689988264311,0,0,0,62,1,3,3,3,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.831687475161255,7.764304054663651,0,0,56.26,38.87,6,1,0,0,7,3,1,776.5,0,0,0 +13008,15961,29015,29016,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.403811197912333,8.347469101295514,0,2,0,-9,16,0,0,-63.26262890904945,0,0,0,41,2,5,1,2,2,2019,1,1,10,0,37,40,15,1,1,1,0,11.12275995106904,11.12275995106904,0,0,0,0,0,0,0,1,1,0,4.059047518409865,0,0,0,50,56,5,3,0,0,4,3,1,607.5,0,0,0 +13008,15961,29016,29015,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,5,7.191043984811473,7.428085458016056,0,2,0,-9,16,0,0,-40.8177127350447,-9,0,1,41,1,4,1,2,2,2019,1,2,9,1,27,0,15,1,1,1,0,7.687824473959077,7.687824473959077,0,0,0,0,0,0,0,1,1,0,1.356061848748398,0,0,0,61.01,53.18,2,3,0,0,4,3,1,607.5,0,0,0 +13009,15962,29017,29018,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,5.582662752686325,5.488794277964761,1,0,-9,59,0,-5,72.76803817254147,0,0,0,82,1,3,3,3,3,2019,4,1,13,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.152611914695305,5.47676965368447,5.674852126861607,1,53.14,51.28,6,1,0,0,10,3,0,238,0,0,0 +13009,15962,29018,29017,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,7.495200247323805,7.750311734529005,1,0,-9,59,0,5,-155.2960481539578,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,5.932616466176956,0,0,0,0,1,1,0,.22116574467781,7.623468120555701,0,0,65.04000000000001,31.22,6,1,0,0,10,3,0,238,0,0,0 +13010,15963,29019,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-978.6474579363802,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.15,24.38,3,4,0,0,8,1,0,1603,0,0,0 +13010,15964,29020,-9,29019,-9,2,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.117237379089872,8.074482928422503,0,3,0,0,0,-9,0,-1029.681283343086,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,39,42,15,1,1,-9,1,8.861841432635302,8.861841432635302,0,0,0,0,0,0,0,1,1,0,0,0,16.68971613847338,3,48.81,59.91,4,4,0,0,8,4,0,939,0,0,0 +13011,15965,29021,-9,-9,-9,1,1,1,85,2,0,0,0,3,-9,3,3,0,3,0,6.402041382742278,6.40944428508393,3,0,0,0,-9,0,-886.9702915193683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,9.385658163039905,6.641184927658362,0,0,51.32,42.01,6,1,1,0,11,2,1,122,0,0,0 +13012,15966,29022,-9,29023,-9,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-987.0094158022594,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,2,1,332,0,0,0 +13012,15966,29023,-9,-9,-9,1,1,0,50,3,0,1,0,3,-9,2,1,0,3,6.610762071935295,7.314603268368051,6.381504408457805,4,0,0,0,-9,0,-1105.613961703033,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,8,0,15,1,2,-9,0,9.034441367050658,9.034441367050658,0,0,0,0,0,0,0,1,1,0,6.247764687655366,0,0,0,36.37,61.5,4,1,0,1,8,2,1,332,0,0,0 +13013,15967,29024,29025,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,3.947972472610364,4.223361769783513,1,0,-9,44,0,3,90.77708851355905,0,0,0,65,2,4,1,2,2,2019,3,2,9,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.169267035164552,4.046796568591108,0,0,55.41,24.54,6,1,0,0,4,2,1,1454.5,0,0,0 +13013,15967,29025,29024,-9,-9,2,1,1,65,1,0,0,0,2,-9,2,1,0,4,6.746087813622846,6.944109348175978,5.501467997490503,1,0,-9,8,0,-3,6.405930733789551,0,0,0,68,3,2,3,-9,3,2019,2,1,8,0,16,20,15,1,0,4,0,6.206734859298565,6.206734859298565,0,0,0,0,0,0,0,1,1,0,5.981838590855737,6.109089316658737,0,0,55.76,52.64,6,1,0,0,4,2,1,1454.5,0,0,0 +13014,15968,29026,-9,29029,29028,1,1,1,28,2,0,0,0,1,-9,2,1,0,5,7.889414421363472,7.912997249153573,0,3,0,0,0,-9,0,-947.7086887653519,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,45,15,1,0,-9,1,8.087217691350576,8.087217691350576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,3,0,0,6,4,1,327,0,0,0 +13014,15969,29027,-9,29029,29028,2,1,1,23,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1007.739015658832,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,5,3,0,0,6,1,1,114,0,0,0 +13014,15970,29028,29029,-9,-9,3,1,1,58,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,40,0,4,0,0,0,0,54,3,3,3,3,3,2019,4,4,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,4.673858641717252,0,0,0,47.32,52.7,6,3,0,0,6,1,1,449.5,0,0,0 +13014,15970,29029,29028,-9,-9,4,1,0,54,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,40,0,-4,0,0,0,0,58,3,3,3,3,3,2019,4,3,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.63,33.27,6,3,0,0,6,1,1,449.5,0,0,0 +13015,15971,29030,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,6.098806068094598,6.361682801508667,3,0,0,0,-9,0,-987.3333248750665,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.96502849258395,6.601894753429324,0,0,59.07,43.05,5,1,0,0,10,2,1,154,0,0,0 +13016,15972,29031,-9,-9,-9,2,1,1,57,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-983.1104854259202,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.13,10.74,4,1,0,1,12,1,0,405,0,0,0 +13017,15973,29032,29033,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,3,0,7.408089441479929,7.204794259119756,1,0,-9,35,0,0,-61.13687909157954,0,0,0,82,2,3,3,3,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.224400334045713,7.408990553729492,0,0,53.79,41.29,6,1,0,0,9,4,1,344,0,0,0 +13017,15973,29033,29032,-9,-9,2,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.712570497915507,7.862674353210875,1,0,-9,35,0,9,-69.56243394731347,0,0,0,73,1,3,3,2,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.286173420760251,7.669482756970194,0,0,46.67,55.57,7,1,0,0,9,4,1,344,0,0,0 +13018,15974,29034,-9,-9,-9,1,1,1,84,2,0,0,0,2,-9,4,3,0,3,0,6.437048402723124,6.671820448207916,3,0,0,0,-9,0,-1050.247269703941,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,9.621270132446691,0,1,1,0,0,6.874536334022689,0,0,57.77,33.07,7,1,0,0,12,2,1,390,0,0,0 +13019,15975,29035,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,3,0,6.516283464143101,6.569876366800089,3,0,0,0,-9,0,-862.9278079560578,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.89879419056025,0,0,63.41,39.7,7,1,0,0,7,2,0,774,0,0,0 +13020,15976,29036,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,9.27291091556396,8.625395518581744,3,0,0,0,-9,0,-1038.347848558934,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.461910840199872,8.60362024235279,0,0,57.51,47.91,6,1,0,0,6,5,1,993,0,0,0 +13021,15977,29037,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,6.180756704111841,6.508293697357273,3,0,0,0,-9,0,-934.8032666937047,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,1,0,0,32.42525717566953,0,0,0,1,1,0,0,6.507143916025428,0,0,30.73,36.36,4,1,0,0,4,2,1,704,0,0,0 +13022,15978,29038,29039,-9,-9,2,1,1,51,1,0,0,0,1,-9,2,1,0,3,8.909237416920046,9.117082603662915,0,1,0,-9,8,0,0,-11.96210463883978,0,0,0,51,2,5,1,2,2,2019,1,1,24,10,40,37,15,1,10,1,0,18.97876072604425,18.97876072604425,0,0,0,0,0,0,0,0,0,0,3.987179459589992,0,0,0,42.95,50.87,4,1,0,0,4,5,1,574.5,0,0,0 +13022,15978,29039,29038,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,5,8.813866941145587,8.601137218092907,0,1,0,-9,24,0,0,2.760065590240127,0,0,0,51,1,3,1,3,2,2019,1,2,13,2,42,40,15,1,2,1,0,16.35225521203454,16.35225521203454,0,0,0,0,0,0,0,0,0,0,1.944687114149715,0,0,0,43.92,62.31,5,1,0,0,4,5,1,574.5,0,0,0 +13023,15979,29040,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,1,1,0,4,9.669373283942072,9.923165318108778,7.705295715940476,3,0,0,0,-9,0,-915.4433537559033,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,20,25,15,1,0,-9,0,107.305202481926,107.305202481926,0,0,0,0,0,0,0,1,1,0,8.402901708303903,7.866171163645993,0,0,49.21,53.11,6,1,0,0,8,5,0,1935,0,0,0 +13024,15980,29041,29042,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,11,0,-2,75.77498014168313,0,0,0,68,3,3,1,3,3,2019,3,1,11,0,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.217492877957972,0,0,0,49,48,5,1,0,0,6,3,1,294,0,0,0 +13024,15980,29042,29041,-9,-9,1,1,1,68,1,0,0,0,3,-9,2,1,0,3,7.942168519130869,8.328151101858664,6.444920274395183,1,0,-9,11,0,2,-38.37916223673258,0,0,0,66,2,3,3,3,3,2019,2,2,10,0,37,44,15,1,1,4,0,7.459095528747688,7.459095528747688,0,0,0,0,0,0,0,1,1,0,0,6.564618038919172,0,0,51,48,5,1,0,0,6,3,1,294,0,0,0 +13025,15981,29043,29045,-9,-9,1,1,1,35,1,0,1,0,2,-9,2,1,0,4,8.637902979200504,8.088799526667652,0,2,0,-9,20,0,0,39.3465442702481,0,0,0,35,2,2,1,2,2,2019,1,2,14,4,38,37,15,1,4,1,0,13.90809987763647,13.90809987763647,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,4,1,0,0,4,4,1,375,0,0,0 +13025,15981,29044,-9,29045,29043,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.8599540028166,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,375,0,0,0 +13025,15981,29045,29043,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,2,7.73008614897054,7.581430597853636,0,2,0,-9,20,0,0,119.6050617260069,0,0,1,35,2,4,1,2,2,2019,1,1,11,1,25,25,15,1,1,1,0,11.25578421140728,11.25578421140728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.54,31.17,6,1,0,0,4,4,1,375,0,0,0 +13026,15982,29046,29047,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,5,8.645087970082479,8.386197208192955,0,1,0,-9,40,0,-5,39.47860102552738,0,0,0,60,3,3,3,3,3,2019,2,1,7,0,42,42,15,1,0,3,0,11.65016032742757,11.65016032742757,0,0,0,0,0,0,0,0,0,0,3.827183303463161,0,0,0,50.54,62.09,7,1,0,0,4,3,1,696,0,0,0 +13026,15982,29047,29046,-9,-9,1,1,0,60,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,39,0,5,-105.370327919356,0,0,0,55,2,5,1,-9,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.812466796128051,0,0,0,58.08,43.46,6,1,0,0,4,3,1,696,0,0,0 +13027,15983,29048,-9,29050,29049,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.1404957340135,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,795.75,0,0,0 +13027,15983,29049,29050,-9,-9,2,1,1,49,1,0,2,0,1,-9,6,3,0,2,0,0,0,2,0,-9,16,0,8,-20.9819243794199,0,0,0,41,1,4,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.214597657720356,0,0,0,52.24,50.75,5,4,0,0,9,4,1,795.75,0,0,0 +13027,15983,29050,29049,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,4,9.169733943691528,8.978901620586328,0,2,0,-9,16,0,-8,78.707763224315,0,0,1,49,1,2,3,-9,-9,2019,2,2,7,0,42,47,15,1,0,3,0,23.72667086581511,23.72667086581511,0,0,0,0,0,0,0,1,1,0,1.011883397033553,0,0,0,52.31,58.29,6,1,0,0,9,4,1,795.75,0,0,0 +13027,15983,29051,-9,29050,29049,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.9152472760535,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,9,4,1,795.75,0,0,0 +13028,15984,29052,29053,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,9.166451669105069,9.297826819580548,0,1,0,1,1,-9,-1,30.92455482301951,0,0,0,48,2,3,1,2,2,2019,1,2,30,11,45,40,15,1,11,1,0,19.05356898246892,19.05356898246892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.96,42.19,1,1,0,0,7,5,1,344.5,0,0,0 +13028,15984,29053,29052,-9,-9,2,1,1,48,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,1,-9,1,98.84101309720955,-9,0,0,47,2,3,1,-9,-9,2019,1,1,16,4,0,0,15,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4903484306587458,0,0,0,35.44,55.47,4,1,0,1,7,5,1,344.5,0,0,0 +13029,15985,29054,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,7.904670511086595,7.620626662395032,3,0,-9,0,1,0,-933.0871505210298,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.723541434837376,7.352379929283045,0,0,48.66,46.48,6,1,0,0,12,3,1,281,0,0,0 +13030,15986,29055,-9,29056,29058,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.2603017544076,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,1,500.25,0,0,0 +13030,15986,29056,29058,-9,-9,1,1,0,29,1,1,2,0,2,-9,5,1,0,2,4.442889474855817,4.212170306394847,0,2,0,-9,5,0,-1,46.6045855577693,0,1,1,30,2,3,1,2,2,2019,1,2,22,10,0,24,15,1,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.317407698346636,0,0,0,28.67,41.13,4,1,0,0,9,3,1,500.25,0,0,0 +13030,15986,29057,-9,29056,29058,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1048.781921494848,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,1,500.25,0,0,0 +13030,15986,29058,29056,-9,-9,2,1,1,30,1,1,2,0,2,-9,2,1,0,3,8.34615480035824,8.511726971726425,0,2,0,-9,5,0,1,33.59702924154443,0,0,0,29,2,2,1,-9,-9,2019,1,1,9,1,47,47,15,1,1,1,0,11.1914998387027,11.1914998387027,0,0,0,0,0,0,0,1,1,0,5.375776755842853,0,0,1,44.96,50.74,6,1,0,0,9,3,1,500.25,0,0,0 +13031,15987,29059,29060,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-4,-159.4851804186438,0,0,0,78,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,11,2,1,1240.5,0,0,0 +13031,15987,29060,29059,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,4.979886439238056,4.854789473355443,1,0,-9,10,0,4,-103.3500931127622,0,0,0,74,2,3,3,3,2,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.269012121302001,5.368932009567221,0,0,46.45,30.58,5,1,0,0,11,2,1,1240.5,0,0,0 +13032,15988,29061,-9,29065,29063,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.374523728127,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,1,902.6,0,0,0 +13032,15988,29062,-9,29065,29063,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.1627059717764,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,1,2,1,902.6,0,0,0 +13032,15988,29063,29065,-9,-9,2,1,1,30,1,0,3,0,2,-9,2,1,0,3,8.088940954877202,7.835272301955214,0,2,0,-9,10,0,1,-82.42441042880957,0,0,0,29,2,3,3,2,2,2019,2,1,8,1,39,39,15,1,1,3,0,9.279559846290498,9.279559846290498,0,0,0,0,0,0,0,1,1,0,2.785249789166297,0,0,0,60.29,52.11,6,1,0,0,1,2,1,902.6,0,0,0 +13032,15988,29064,-9,29065,29063,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.3516515621977,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,2,1,902.6,0,0,0 +13032,15988,29065,29063,-9,-9,1,1,0,29,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,10,0,-1,-6.688037752889429,0,1,1,30,2,3,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.032303991065977,0,0,0,41.53,56.72,6,1,0,0,1,2,1,902.6,0,0,0 +13033,15989,29066,29067,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,8.496271679174496,8.832720333247911,0,2,0,-9,19,0,2,14.53272261363427,0,0,1,42,1,4,1,2,1,2019,1,2,4,0,38,38,15,1,0,1,0,15.79137216305919,15.79137216305919,0,0,0,0,0,0,0,0,0,0,2.472256085431531,0,0,0,55.32,46.24,6,3,0,0,7,4,1,374,0,0,0 +13033,15989,29067,29066,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,7.876165218878192,7.388015199735899,0,2,0,-9,10,0,-2,72.69856466680112,-9,0,0,44,2,4,1,-9,-9,2019,1,1,6,0,38,0,15,1,0,1,0,6.75561289058675,6.75561289058675,0,0,0,0,0,0,0,0,0,0,2.459723135022598,0,0,0,24.14,64.69,6,3,0,0,7,4,1,374,0,0,0 +13033,15989,29068,-9,29066,29067,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.4962923587386,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,7,4,1,374,0,0,0 +13034,15990,29069,-9,-9,-9,1,1,0,48,2,0,2,0,1,-9,1,1,0,1,0,7.45671883876425,7.710629164205319,4,0,0,0,-9,0,-936.7965876525728,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,16,15,1,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.837801918789069,0,0,0,40.55,21,4,1,0,0,9,2,1,1258.666666666667,0,0,0 +13034,15990,29070,-9,29069,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-925.1660268211091,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,9,2,1,1258.666666666667,0,0,0 +13034,15990,29071,-9,29069,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1041.566286231819,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,9,2,1,1258.666666666667,0,0,0 +13035,15991,29072,29073,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,4,7.406155074744658,7.865625389258816,0,1,0,-9,42,0,-2,-124.5993248604101,0,0,0,64,2,5,3,3,3,2019,2,2,12,0,27,27,15,1,0,4,0,9.902897883772976,9.902897883772976,0,0,0,0,0,0,0,0,0,0,4.630764394129133,0,0,0,45.01,57.46,6,1,0,0,7,3,1,417,0,0,0 +13035,15991,29073,29072,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,5,0,6.000282434427606,6.000495486763124,1,0,-9,42,0,2,6.30690452533489,0,0,0,62,2,4,1,3,3,2019,3,1,14,3,0,40,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.195905614925855,5.929616968071672,6.110612559987865,3,33.97,50.7,3,1,0,0,7,3,1,417,0,0,0 +13036,15992,29074,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,5.957367593215881,6.129818261784407,3,0,0,0,-9,0,-969.1937432630966,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.016479982477921,0,0,53.14,45.74,6,1,0,0,8,2,1,963,0,0,0 +13037,15993,29075,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-920.856479995314,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,30,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,1,0,9,1,1,238,0,0,0 +13038,15994,29076,29077,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,2,0,8.622173288731235,8.384935428782198,1,0,-9,45,0,0,-116.0630171401246,0,0,0,63,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.964143701456768,0,0,44.21,50.21,4,1,0,0,11,3,1,1589.5,0,0,0 +13038,15994,29077,29076,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,2,0,3.010537484547093,2.721714017062779,1,0,-9,45,0,0,54.3040594380307,0,0,0,63,2,2,3,3,2,2019,4,2,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.28805589943041,.7354924829513871,1,39.74,41.69,4,1,0,0,11,3,1,1589.5,0,0,0 +13039,15995,29078,29079,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,4,8.533282079874899,8.421356758677874,0,1,0,1,1,-9,1,51.05960146391328,0,1,0,22,1,4,1,2,2,2019,1,1,8,0,43,40,15,1,0,1,0,13.1146659207458,13.1146659207458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,5,0,2246.5,0,0,0 +13039,15995,29079,29078,-9,-9,1,1,0,22,1,0,0,0,1,-9,2,1,0,4,8.086128168301519,7.770267918454201,0,1,0,-9,1,-9,-1,70.69030370850169,-9,1,1,23,2,4,1,-9,-9,2019,1,2,12,2,30,0,15,1,2,1,0,12.66124631671658,12.66124631671658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.73,57.01,6,1,0,0,4,5,0,2246.5,0,0,0 +13040,15996,29080,-9,29081,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1064.723747808423,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,9,2,1,339,0,0,0 +13040,15996,29081,-9,-9,-9,1,1,0,42,3,0,2,0,1,-9,7,2,0,4,0,5.471918977596845,4.792607387912062,4,0,-9,0,-9,0,-844.8717772329873,-9,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.377394002343096,0,0,3,57.16,56.15,6,4,0,1,9,2,1,339,0,0,0 +13040,15996,29082,-9,29081,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,-9,0,-9,0,-1153.536591858608,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,4,0,0,9,2,1,339,0,0,0 +13041,15997,29083,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,1,1,0,2,6.782306841690362,7.352635885129902,6.809863775081803,3,0,0,0,-9,0,-1132.829534584957,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,30,28,15,1,0,-9,0,3.65642748624243,3.65642748624243,0,0,0,0,0,0,0,0,0,0,2.952285054533939,6.220334332600401,0,0,57.18,45.76,6,1,0,0,8,3,1,65,0,0,0 +13042,15998,29084,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1042.116157029786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.035723749613264,0,0,0,59.9,48.18,7,1,0,0,1,1,0,210,0,0,0 +13043,15999,29085,29086,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,53,0,-4,-55.63907574542752,0,0,0,78,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.127893853746207,0,0,0,59.14,52.5,7,1,0,0,10,2,1,115.5,0,0,0 +13043,15999,29086,29085,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,7.472295589372184,7.442032740737615,1,0,-9,53,0,4,-10.29297525207634,0,0,0,74,2,4,3,-9,-9,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.236413596742673,7.253808651788717,0,0,48.18,42.59,7,1,0,0,10,2,1,115.5,0,0,0 +13044,16000,29087,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,3,8.698915923097573,8.569143255944391,0,3,0,0,0,-9,0,-939.7709128818142,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,43,15,1,0,-9,0,13.4568338747149,13.4568338747149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.5,44.67,6,1,0,0,2,5,1,319,0,0,0 +13045,16001,29088,29089,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,5,9.192227737179316,8.750337299174873,0,1,0,-9,5,0,-5,46.43656495131733,0,1,1,33,1,5,1,-9,-9,2019,1,2,7,0,35,45,15,1,0,1,0,19.83846991085181,19.83846991085181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,6,1,0,0,12,5,1,695.5,0,0,0 +13045,16001,29089,29088,-9,-9,2,1,1,33,1,0,0,0,1,-9,1,1,0,5,0,6.622475815379892,6.520599086550956,1,0,-9,5,0,5,-101.7693560679603,0,0,0,28,1,5,1,-9,-9,2019,1,1,6,0,50,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.794215406036803,0,0,0,62.39,56.71,7,1,0,0,12,5,1,695.5,0,0,0 +13046,16002,29090,29091,-9,-9,1,1,1,48,1,0,1,0,2,-9,2,1,0,3,8.663290225610425,8.661955764019742,0,2,0,-9,2,0,8,31.41028571313151,0,0,0,40,2,1,3,2,-9,2019,2,2,22,9,45,50,15,1,9,3,0,14.52342691525622,14.52342691525622,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.04,58.33,2,1,0,1,2,4,1,973.6666666666666,0,0,0 +13046,16002,29091,29090,-9,-9,2,1,0,40,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,2,0,-8,-42.22168082098689,0,0,1,48,2,3,1,-9,-9,2019,3,1,29,12,0,18,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.48,39.59,2,1,0,1,2,4,1,973.6666666666666,0,0,0 +13046,16002,29092,-9,29091,29090,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-945.7503789527027,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,973.6666666666666,0,0,0 +13047,16003,29093,29094,-9,-9,2,1,1,57,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,2,0,0,0,0,55,2,2,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.79,40.79,1,1,0,0,12,1,0,952.5,0,0,0 +13047,16003,29094,29093,-9,-9,1,1,0,55,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,-2,0,0,0,0,57,2,2,3,3,3,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,111.8533067916003,1,35.43,42.24,4,1,0,0,12,1,0,952.5,0,0,0 +13048,16004,29095,29096,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,7.580376702861892,7.788154140812722,1,0,-9,54,0,3,-115.0905482407567,0,0,0,75,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.509768767453885,0,0,50.52,47.59,6,1,0,0,4,2,1,829,0,0,0 +13048,16004,29096,29095,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,2,0,3.509435991968033,3.885054568268553,1,0,-9,54,0,-3,-63.68211923353162,0,0,0,78,3,2,3,3,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.766920697966191,3.849304577285825,0,0,42.12,47.05,4,1,0,0,4,2,1,829,0,0,0 +13048,16005,29097,-9,29096,29095,3,1,1,49,2,0,0,0,2,-9,2,1,0,3,8.194466045482203,8.237434987623422,0,3,0,0,0,-9,0,-899.9759203034655,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,40,40,15,1,0,-9,1,10.39162702321156,10.39162702321156,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,45.34,6,1,0,0,4,4,1,436,0,0,0 +13049,16006,29098,29099,-9,-9,2,1,0,26,1,0,1,0,1,-9,2,1,0,5,7.757723518905767,7.609849987879605,0,2,0,-9,6,0,0,-29.28523076375735,0,1,1,26,2,3,1,1,2,2019,1,1,6,0,40,35,15,1,0,1,0,7.529545502325369,7.529545502325369,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,10,4,0,694,0,0,0 +13049,16006,29099,29098,-9,-9,1,1,1,26,1,0,1,0,2,-9,2,1,0,3,8.009066945046415,8.178972337799937,0,2,0,-9,6,0,0,84.93177883459967,0,1,0,26,1,5,1,1,-9,2019,1,2,8,0,45,44,15,1,0,1,0,6.967174597673278,6.967174597673278,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,10,4,0,694,0,0,0 +13049,16006,29100,-9,29098,29099,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.3965579891436,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,0,694,0,0,0 +13050,16007,29101,-9,29102,29103,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.716929544262,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,932,0,0,0 +13050,16007,29102,29103,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,3,8.402095496435193,8.427278130209261,0,2,0,-9,19,0,-11,20.56981300533326,0,0,0,58,3,5,1,3,2,2019,1,1,8,0,21,21,15,1,0,1,0,25.34002331448957,25.34002331448957,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,6,1,0,0,10,5,1,932,0,0,0 +13050,16007,29103,29102,-9,-9,1,1,1,58,1,0,1,0,3,-9,2,1,0,5,8.730408875810035,8.785601057863222,0,2,0,-9,19,0,11,-63.5689145723658,0,0,0,47,1,3,1,3,2,2019,1,2,6,0,35,40,15,1,0,1,0,22.37226623867627,22.37226623867627,0,0,0,0,0,0,0,1,1,0,4.536054199742491,0,0,0,57.06,57.76,7,1,0,0,10,5,1,932,0,0,0 +13051,16008,29104,-9,29105,29106,4,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.3886254967496,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,0,820.5,0,0,0 +13051,16008,29105,29106,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,1,8.029242817938517,8.144286744526003,0,2,0,-9,10,0,3,74.58776602009866,0,0,1,38,2,2,1,2,2,2019,1,1,10,1,38,39,15,1,1,1,0,11.46292478912684,11.46292478912684,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,20.81,5,1,0,0,6,4,0,820.5,0,0,0 +13051,16008,29106,29105,-9,-9,1,1,1,38,1,0,1,0,2,-9,2,1,0,2,8.217249976926931,8.341897134293944,0,2,0,-9,10,0,-3,-179.2834188458317,0,0,0,41,1,1,1,2,2,2019,1,2,12,0,60,55,15,1,0,1,0,8.166154401486203,8.166154401486203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.59,47.04,5,1,0,0,6,4,0,820.5,0,0,0 +13051,16008,29107,-9,29105,-9,3,1,0,16,2,0,1,0,2,-9,2,2,0,3,6.106899452253742,6.955481775540966,6.309266797045609,2,0,0,0,-9,0,-1153.397935623812,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,28,11,15,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.573463872578754,0,0,0,28.05,56.1,3,1,0,0,6,4,0,820.5,0,0,0 +13052,16009,29108,-9,29109,29111,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1057.394859159407,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,2,0,0,8,5,1,180.75,0,0,0 +13052,16009,29109,29111,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,8.877108994345413,8.838726012938054,0,2,0,-9,18,0,4,-9.176400955638249,0,0,0,43,1,3,1,2,2,2019,1,2,10,1,64,28,15,1,1,1,0,10.45372280403924,10.45372280403924,0,0,0,0,0,0,0,0,0,0,5.204645133809435,0,0,0,51.83,57.2,6,1,0,0,8,5,1,180.75,0,0,0 +13052,16009,29110,-9,29109,29111,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-946.9630069996292,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,5,2,0,0,8,5,1,180.75,0,0,0 +13052,16009,29111,29109,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,3,9.512265095747692,9.529563780086365,0,2,0,-9,20,0,-4,-57.90352031064916,0,0,0,47,1,4,1,2,1,2019,1,1,20,8,60,50,15,1,8,1,0,27.7165623325968,27.7165623325968,0,0,0,0,0,0,0,0,0,0,2.712477683213788,0,0,0,40.56,50.59,3,2,0,0,8,5,1,180.75,0,0,0 +13053,16010,29112,29113,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,2,7.316064191436844,7.310200378641783,0,2,0,-9,5,0,0,3.244026889291123,0,0,1,33,2,1,1,-9,-9,2019,1,1,19,8,20,0,15,1,8,1,0,10.89322933537937,10.89322933537937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,45.62,3,1,0,1,2,4,1,1663,0,0,0 +13053,16010,29113,29112,-9,-9,1,1,1,33,1,0,2,0,2,-9,2,1,0,1,8.340609329416898,8.767362112069122,0,2,0,-9,5,0,0,30.29128439007694,0,0,0,33,2,2,1,3,3,2019,1,2,16,4,43,38,15,1,4,1,0,13.05584665074295,13.05584665074295,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.04,49.58,4,1,0,1,2,4,1,1663,0,0,0 +13053,16010,29114,-9,29112,29113,3,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-970.1201582436378,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,2,4,1,1663,0,0,0 +13053,16010,29115,-9,29112,29113,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.480587517687,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,1,1663,0,0,0 +13054,16011,29116,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,3,8.642404222121463,8.660401407884894,0,3,0,0,0,-9,0,-923.4923572739031,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,21,8,75,75,15,1,8,-9,0,7.917149805111047,7.917149805111047,0,0,0,0,0,0,0,0,0,0,4.460266618420629,0,0,0,43.12,58.55,2,1,0,0,2,5,1,505,0,0,0 +13055,16012,29117,-9,29120,29118,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-892.6290579532551,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,10,4,1,677.75,0,0,0 +13055,16012,29118,29120,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,4,8.729218469586806,8.474674086888982,0,2,0,-9,16,0,4,-56.56124673634511,0,0,0,46,2,4,1,2,2,2019,1,2,6,0,40,37,15,1,0,1,0,13.52579645130551,13.52579645130551,0,0,0,0,0,0,0,1,1,0,1.757067197758903,0,0,0,57.16,56.15,6,1,0,0,10,4,1,677.75,0,0,0 +13055,16012,29119,-9,29120,29118,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-918.2391745638309,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,10,4,1,677.75,0,0,0 +13055,16012,29120,29118,-9,-9,2,1,0,46,1,0,2,0,2,-9,1,1,0,4,8.214787320355036,8.221346595087395,0,2,0,-9,16,0,-4,120.5675852869422,0,0,0,50,2,4,1,2,2,2019,1,1,11,1,20,20,15,1,1,1,0,19.70237770705514,19.70237770705514,0,0,0,0,0,0,0,1,1,0,7.158702368114366,0,0,0,48.87,58.55,6,1,0,0,10,4,1,677.75,0,0,0 +13056,16013,29121,29122,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,1,0,6.695393126967269,6.556101112251473,1,0,-9,56,0,-2,101.789415118906,0,0,0,74,2,2,3,-9,2,2019,4,2,17,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.757890036840825,65.25086450867759,1,48.45,14.01,1,1,0,0,9,3,1,446,0,0,0 +13056,16013,29122,29121,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,7.636435327132039,7.727034984479379,1,0,-9,56,0,2,-23.01984628871951,0,0,0,72,3,1,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,8.23678182089262,1,1,0,3.637367561816889,7.417597980237128,7.198278450365739,1,38.3,34.13,3,1,0,0,9,3,1,446,0,0,0 +13057,16014,29123,29124,-9,-9,2,1,0,45,1,0,2,0,3,-9,6,3,0,5,0,0,0,2,0,-9,3,0,1,-45.64464341707567,0,0,0,44,2,3,1,2,3,2019,3,1,13,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.1,65.8,6,1,0,0,6,5,1,482,0,0,0 +13057,16014,29124,29123,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,3,9.450488095813434,9.505217515585944,0,2,0,-9,3,0,-1,68.01327645202852,-9,0,0,45,3,5,3,2,2,2019,2,2,8,0,65,0,15,1,0,3,0,21.17637424310783,21.17637424310783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,6,5,1,482,0,0,0 +13057,16014,29125,-9,29123,29124,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,6.092580757092516,5.958777300489849,0,2,0,0,0,-9,0,-1036.763879303219,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,13,4,10,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.36,59.47,5,1,0,0,6,5,1,482,0,0,0 +13058,16015,29126,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,6.968049235193112,6.530360097302497,3,0,0,0,-9,0,-1075.673231691084,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.10305129550604,6.690264166162951,0,0,55.75,50.3,7,1,0,0,13,2,1,1764,0,0,0 +13059,16016,29127,29128,-9,-9,1,1,0,61,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,30,0,-7,-48.78921687705113,0,0,0,68,3,1,3,3,3,2019,4,2,13,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.132723478148652,1,42.1,37.58,5,1,0,0,2,1,0,1129,0,0,0 +13059,16016,29128,29127,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,1,0,4.650257427445555,4.362284356558379,1,0,-9,30,0,7,88.02618695707444,0,0,0,61,3,2,3,-9,-9,2019,4,1,22,10,0,0,15,4,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.625494482107359,0,0,36.32,30.9,4,1,0,0,2,1,0,1129,0,0,0 +13060,16017,29129,29132,-9,-9,1,1,0,30,1,2,2,0,1,-9,5,1,0,3,0,0,0,2,0,-9,3,0,-13,40.27382747904956,0,0,1,43,2,3,1,-9,-9,2019,1,2,8,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,5,1,0,0,1,3,1,561.75,0,0,0 +13060,16017,29130,-9,29129,29132,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-895.0849960769042,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,1,3,1,561.75,0,0,0 +13060,16017,29131,-9,29129,29132,3,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-888.7581712888174,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,1,3,1,561.75,0,0,0 +13060,16017,29132,29129,-9,-9,2,1,1,43,1,2,2,0,2,-9,1,1,0,3,8.501309026532448,8.44527798903508,0,2,0,-9,3,0,13,-26.69869730287301,0,0,0,30,1,3,1,-9,-9,2019,1,1,8,0,40,40,15,1,0,1,0,14.89278862087484,14.89278862087484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,6,1,0,0,1,3,1,561.75,0,0,0 +13061,16018,29133,29134,-9,-9,1,1,1,41,1,0,0,0,1,-9,1,1,0,4,9.755830547723521,9.545755956101106,0,1,0,-9,11,0,2,57.3836022300562,0,0,0,39,1,3,1,2,2,2019,1,2,6,0,50,0,15,1,0,1,0,31.66389348157998,31.66389348157998,0,0,0,0,0,0,0,0,0,0,9.15816281743319,0,0,0,57.16,56.15,6,1,0,0,8,5,1,1142,0,0,0 +13061,16018,29134,29133,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,3,9.328766472834227,9.382360677479481,0,1,0,-9,11,0,-2,-42.21532348561267,0,0,1,41,1,4,1,2,2,2019,1,1,9,1,50,50,15,1,1,1,0,36.23131836827546,36.23131836827546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,6,1,0,0,8,5,1,1142,0,0,0 +13062,16019,29135,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,2,0,5.500594838699183,5.57633132787989,3,0,0,0,-9,0,-927.896043896885,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.33899489970201,5.067112242201953,0,0,47.88,24.16,5,1,0,0,4,2,0,542,0,0,0 +13063,16020,29136,-9,29137,29138,2,1,0,19,2,0,2,0,2,0,7,2,0,2,7.986202783831739,7.610139850234784,0,3,0,0,0,-9,0,-1019.075435467179,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,10,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.83,54.31,1,1,0,0,9,3,0,511,0,0,0 +13063,16021,29137,29138,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,3,7.302457207075265,7.384280968670163,0,2,0,-9,10,0,0,-34.29738745157124,0,0,1,43,2,3,1,3,-9,2019,1,4,12,0,26,26,15,1,0,1,0,7.530111173503565,7.530111173503565,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.6,57.32,4,1,0,0,9,4,0,765.5,0,0,0 +13063,16021,29138,29137,-9,-9,4,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.375312558075601,8.494967279418894,0,2,0,-9,10,0,0,60.46731279893842,0,0,0,43,2,3,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,14.43639700804651,14.43639700804651,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.86,46.88,3,1,0,0,9,4,0,765.5,0,0,0 +13064,16022,29139,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,3,0,6.673625216397109,6.375751621035916,3,0,0,0,-9,0,-880.9138350121723,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.118342491171137,0,0,57.9,51.84,7,1,0,0,4,2,1,420,0,0,0 +13065,16023,29140,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-991.3145567244279,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.73,50.87,6,2,0,1,5,1,1,199,0,0,0 +13066,16024,29141,-9,29142,29143,3,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-942.9919102184342,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,7,1,0,0,9,5,0,1016,0,0,0 +13066,16024,29142,29143,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,3,8.255426542536217,8.216643174782236,0,2,0,-9,19,0,-3,-97.03485722683178,0,0,1,41,2,4,1,2,2,2019,1,2,10,1,40,37,15,1,1,1,0,11.16878111505192,11.16878111505192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,7,1,0,0,9,5,0,1016,0,0,0 +13066,16024,29143,29142,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,4,9.0879705455012,8.998995386428227,0,2,0,-9,8,0,3,6.950148458969587,0,0,0,38,2,3,1,-9,-9,2019,1,1,11,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.17,25.63,6,1,0,0,9,5,0,1016,0,0,0 +13066,16025,29144,-9,29142,29143,4,1,1,19,2,0,1,0,2,-9,11,3,0,4,7.503374471298552,7.484514331780523,0,3,0,0,0,-9,0,-899.8746045602147,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.77,51.31,3,1,0,0,9,3,0,431,0,0,0 +13067,16026,29145,-9,-9,-9,1,1,0,55,3,1,1,0,2,-9,2,1,0,3,8.50643000276591,8.363895665856564,0,4,0,0,0,-9,0,-1015.112616885024,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,25,25,15,1,0,-9,0,23.90801982620638,23.90801982620638,0,0,0,0,0,0,0,1,1,0,2.790896149445413,0,27.62692767864007,3,57.33,53.46,6,1,0,0,2,4,1,868,0,0,0 +13067,16027,29146,-9,29145,-9,2,1,1,24,2,1,1,0,3,-9,2,1,0,4,7.818060294619296,7.459049145391659,0,3,0,0,0,-9,0,-1065.878924919097,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,42,40,15,1,0,-9,1,7.913841973768764,7.913841973768764,0,0,0,0,0,0,0,1,1,0,2.065167935468929,0,12.50371714475794,3,39.4,56.84,6,1,0,0,2,3,1,304,0,0,0 +13067,16028,29147,-9,29145,-9,4,1,0,21,2,1,1,0,2,-9,2,1,0,4,7.031388097555893,6.950503223851435,0,3,0,-9,0,0,0,-990.8626434613587,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,19,0,15,1,0,-9,1,6.652291548646714,6.652291548646714,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,2,2,1,651,0,0,0 +13067,16028,29148,-9,29147,-9,5,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1026.421617490224,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,2,1,651,0,0,0 +13068,16029,29149,-9,29152,29154,6,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-950.7793583257913,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,3,1,509,0,0,0 +13068,16029,29150,-9,-9,29154,2,1,1,11,2,0,4,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1105.403535406569,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,2,0,0,10,3,1,509,0,0,0 +13068,16029,29151,-9,-9,29154,3,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.0736191326187,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,10,3,1,509,0,0,0 +13068,16029,29152,29154,-9,-9,4,1,0,34,1,0,4,0,2,-9,6,3,0,2,0,3.718059520471245,3.887393710370795,2,0,-9,6,0,-6,-48.99329240544132,0,0,1,40,2,2,1,-9,-9,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.87226813584495,0,0,0,45.7,48.39,6,1,0,0,10,3,1,509,0,0,0 +13068,16029,29153,-9,29152,29154,5,1,0,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.983470134838,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,509,0,0,0 +13068,16029,29154,29152,-9,-9,1,1,1,40,1,0,4,0,2,-9,2,1,0,2,8.572554099097532,8.564778223209323,5.788120787831437,2,0,-9,6,0,6,-55.69894385395942,0,0,0,34,2,2,3,2,2,2019,2,4,6,0,40,40,15,1,0,3,0,11.32119134881879,11.32119134881879,0,0,0,0,0,0,0,1,1,0,5.700197210889695,0,0,0,57.18,45.76,6,1,0,0,10,3,1,509,0,0,0 +13069,16030,29155,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-975.059976621042,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,5,1,0,0,11,1,0,154,0,0,0 +13070,16031,29156,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,2,0,6.984896341914878,6.847164157523028,3,0,0,0,-9,0,-955.2835265096678,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.245567223006402,0,0,48.38,38.92,6,1,0,0,1,2,1,566,0,0,0 +13071,16032,29157,29158,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,4,7.3552613508826,7.232626972620438,0,1,0,-9,5,0,-4,-28.30525894035907,0,1,1,30,2,4,1,-9,-9,2019,1,1,11,0,36,36,15,1,2,1,0,4.870260426617375,4.870260426617375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,11,4,1,564,0,0,0 +13071,16032,29158,29157,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,4,7.696918889892252,8.086742228052938,0,1,0,-9,5,0,4,51.56874184117942,0,0,0,26,2,4,1,-9,-9,2019,1,2,8,1,48,48,15,1,1,1,0,7.611800475697756,7.611800475697756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,6,1,0,0,11,4,1,564,0,0,0 +13072,16033,29159,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,3,7.590811661006853,7.524295416282708,0,3,0,-9,0,-9,0,-948.2660534392764,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,0,36,0,15,1,2,-9,0,7.410767579900215,7.410767579900215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,53,6,1,0,0,2,3,1,1340,0,0,0 +13073,16034,29160,-9,-9,-9,1,1,1,25,2,0,0,0,1,1,2,1,0,5,8.07364635693953,8.118674919781784,0,3,0,0,0,-9,0,-975.2047173884467,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,39,0,15,1,0,-9,0,9.791186792004392,9.791186792004392,0,0,0,0,0,0,0,0,0,0,5.509448577348758,0,0,0,57.06,57.76,6,1,0,0,9,4,0,1076,0,0,0 +13074,16035,29161,29162,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,1,0,6.23979079670476,6.188760074977973,1,0,-9,6,0,8,168.2721375780176,0,0,0,74,1,3,3,2,2,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,1,0,28.30562717348568,0,0,0,0,1,1,0,6.488997008477606,5.949907104992441,0,0,39.47,18.91,5,2,0,0,6,2,1,380.5,0,0,0 +13074,16035,29162,29161,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-8,40.0973014917818,0,0,0,82,1,1,3,3,2,2019,4,1,28,12,0,0,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.116696935340037,0,130.5919697593423,1,27.92,50.69,3,1,0,0,6,2,1,380.5,0,0,0 +13074,16036,29163,-9,29162,29161,3,1,1,46,2,0,0,0,1,-9,2,1,0,3,7.813103272086557,7.782135497938526,0,3,0,-9,0,0,0,-1130.543936198921,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,8,52,0,15,1,8,-9,1,7.509572313498826,7.509572313498826,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.85,64.90000000000001,2,1,0,0,6,3,1,261,0,0,0 +13075,16037,29164,29165,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,2,0,7.049886928350432,7.217964715017473,1,0,-9,51,0,-3,168.3898089661665,0,0,0,73,2,3,3,2,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.096059052212682,7.485896251906192,0,0,55.95,36.7,6,1,0,0,12,4,1,981.5,0,0,0 +13075,16037,29165,29164,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,8.507405432784038,8.259314847333838,1,0,-9,51,0,3,99.45583089640272,0,0,0,70,1,2,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.375900735936906,0,0,49.04,55.86,5,1,0,0,12,4,1,981.5,0,0,0 +13076,16038,29166,29167,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,5,0,0,0,0,76,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,1,0,0,6,1,1,633,0,0,0 +13076,16038,29167,29166,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-5,0,0,0,0,81,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,44.8,6,1,0,0,6,1,1,633,0,0,0 +13077,16039,29168,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1013.971248563715,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.06,20.24,7,1,0,0,9,1,1,366,0,0,0 +13078,16040,29169,29170,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,6.149656845049227,5.888356808699393,1,0,-9,54,0,-1,57.51762889675253,0,0,0,74,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.246211859006866,6.233030464274424,0,0,62.66,52.4,6,1,0,0,9,3,1,722,0,0,0 +13078,16040,29170,29169,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.824673656070615,7.937380697359951,1,0,-9,54,0,1,22.67307804996851,0,0,0,73,2,3,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.329872619856956,7.57663720165453,0,0,57.33,53.46,6,1,0,0,9,3,1,722,0,0,0 +13079,16041,29171,29172,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.108782438187189,7.019445462840289,1,0,-9,9,0,3,55.23411531510845,0,0,0,68,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.551284107572988,7.10179841646427,0,0,57.33,53.46,6,1,0,0,4,3,1,896,0,0,0 +13079,16041,29172,29171,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.134160981966791,7.625409125795946,1,0,-9,9,0,-3,20.89319819876244,0,0,0,71,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.629378125195942,7.350037594864467,1.688185019076666,3,51.77,58.57,6,1,0,0,4,3,1,896,0,0,0 +13080,16042,29173,29174,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,6.469788123997271,6.378133676778023,1,0,-9,10,0,-5,-80.29553087712249,0,0,0,71,2,3,3,2,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.629334360283508,6.551014897431311,23.28785756430213,3,40.1,54.56,6,1,0,0,5,3,1,381.5,0,0,0 +13080,16042,29174,29173,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,7.225224284057676,7.517472394326021,1,0,-9,41,0,5,-55.75214467357567,0,0,0,66,2,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.96676198035814,7.262564352158625,0,0,50.6,45.8,5,1,0,0,5,3,1,381.5,0,0,0 +13081,16043,29175,29176,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,5.540189850769447,5.593390160410261,1,0,-9,22,0,13,-16.12788772123266,0,0,0,52,1,3,1,1,1,2019,3,2,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.836923640584113,5.481372306019811,0,0,39.56,54.83,5,1,0,0,7,5,1,1937,0,0,0 +13081,16043,29176,29175,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,3,9.168978924586174,9.654905767663612,0,1,0,-9,11,0,-13,152.9800537227237,0,0,0,65,1,3,3,1,2,2019,2,1,26,10,42,41,15,1,10,4,0,31.8146117114154,31.8146117114154,0,0,0,0,0,0,0,1,1,0,.6682712906887853,0,0,0,30.17,55.16,3,1,0,0,7,5,1,1937,0,0,0 +13082,16044,29177,-9,29179,-9,2,1,1,16,2,0,2,0,2,-9,97,2,0,3,0,0,0,4,0,0,0,-9,0,-965.8380479212735,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,27,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,28.22,2,1,0,0,4,3,1,1017.333333333333,0,0,0 +13082,16044,29178,-9,29179,-9,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1162.500564142197,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,1,1017.333333333333,0,0,0 +13082,16044,29179,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,2,1,0,3,7.413818316640246,7.733599265368066,6.235461596686055,4,0,0,0,-9,0,-1065.964753328683,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,32,15,1,0,-9,0,7.982109508588064,7.982109508588064,0,0,0,0,0,0,0,1,1,0,5.800850167985327,0,9.176807894991757,3,44.75,56.39,6,1,0,0,4,3,1,1017.333333333333,0,0,0 +13083,16045,29180,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,5.750417176602838,5.708986037519982,3,0,0,0,-9,0,-912.3269564892986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.789452743575033,0,0,46.1,59.99,3,1,0,0,7,2,1,452,0,0,0 +13084,16046,29181,29182,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,3,8.232419320115886,8.018937980186648,0,1,0,-9,2,0,-1,148.4210679529203,-9,1,0,28,1,4,1,-9,-9,2019,1,1,6,0,37,0,15,1,0,1,0,9.652064169106918,9.652064169106918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.4,45.23,7,1,0,0,1,5,1,2088,0,0,0 +13084,16046,29182,29181,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.443600288968927,8.218881116220521,0,1,0,-9,2,0,1,-72.07559232196802,0,1,1,27,2,3,1,3,2,2019,1,2,9,2,50,57,15,1,2,1,0,10.86371132626804,10.86371132626804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.4,42.78,6,1,0,0,1,5,1,2088,0,0,0 +13085,16047,29183,29184,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,4,6.791972406393462,6.515577303191124,0,1,0,-9,27,0,-5,-58.77803167944312,0,0,0,65,1,3,3,3,3,2019,2,2,6,0,12,12,15,1,0,4,0,7.831799453113021,7.831799453113021,0,0,0,0,0,0,0,1,1,0,6.393336806270368,0,0,3,60.12,54.8,6,1,0,0,2,4,1,669,0,0,0 +13085,16047,29184,29183,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,8.1950814466624,8.13143894803326,1,0,-9,34,0,5,-156.5527611795682,0,0,0,60,3,4,1,3,2,2019,3,1,10,0,0,18,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.190601133637548,7.123134709937709,3,46.11,47.7,6,1,0,0,2,4,1,669,0,0,0 +13086,16048,29185,29186,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,4,9.798985889223792,10.13582592176826,8.535779981371018,1,0,-9,43,0,5,71.0008023431986,0,0,0,59,2,2,3,2,2,2019,2,2,8,0,45,47,15,1,0,3,0,32.67815756932647,32.67815756932647,0,0,0,0,0,0,0,0,0,0,3.343986005338963,8.620455208541779,0,0,54.33,50.48,6,1,0,0,6,5,1,1303,0,0,0 +13086,16048,29186,29185,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,43,0,-5,55.7902781323986,0,0,0,64,1,4,1,3,3,2019,3,1,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.835995782579486,0,0,0,59.3,39.29,6,1,0,0,6,5,1,1303,0,0,0 +13086,16049,29187,-9,29186,29185,3,1,0,20,2,0,0,1,2,0,7,2,0,4,7.360115249186593,7.107801841821421,0,3,0,0,0,-9,0,-1075.362353140205,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,1,26,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,55.57,6,1,0,0,6,3,1,1989,0,0,0 +13087,16050,29188,29189,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,1,7.942878679940963,8.551592614726744,0,2,0,-9,7,0,-7,-76.15852681998197,0,0,1,40,2,3,1,-9,-9,2019,1,1,14,1,70,60,15,1,1,1,0,5.314244896138567,5.314244896138567,0,0,0,0,0,0,0,1,1,0,0,0,23.43705103235238,3,26.5,57.34,4,1,0,0,5,4,0,963.5,0,0,0 +13087,16050,29189,29188,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,3,8.340113726808871,8.185174797135996,0,2,0,-9,7,0,7,109.1399734105622,0,0,0,33,2,1,1,1,3,2019,1,2,14,2,50,0,15,1,2,1,0,8.293840820022677,8.293840820022677,0,0,0,0,0,0,0,1,1,0,0,0,46.69042529097906,3,41.17,52.68,4,1,0,0,5,4,0,963.5,0,0,0 +13088,16051,29190,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,3,8.52663531776026,8.507314376897973,0,3,0,0,0,-9,0,-967.6928363306025,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,9,0,38,42,15,1,0,-9,0,16.51335360598502,16.51335360598502,0,0,0,0,0,0,0,0,0,0,5.707820341407306,0,5.036619610518027,3,38.93,54.2,6,1,0,0,13,4,1,1970,0,0,0 +13089,16052,29191,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,11,3,0,5,6.92002945774641,6.76833301460224,0,3,0,0,0,-9,0,-1114.217886985502,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,37,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.02,63.11,6,1,0,0,1,2,0,524,0,0,0 +13090,16053,29192,29193,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,4,8.652017621745303,8.811574878534822,0,2,0,-9,6,0,6,-61.07620049016314,0,0,0,26,1,4,3,-9,-9,2019,2,1,9,0,38,37,15,1,0,3,0,24.46053440854456,24.46053440854456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,1,4,1,340.6666666666667,0,0,0 +13090,16053,29193,29192,-9,-9,1,1,0,26,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-6,73.22899650183714,0,1,1,32,1,4,1,2,2,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,58.28,7,1,0,0,1,4,1,340.6666666666667,0,0,0 +13090,16053,29194,-9,29193,29192,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.232337035937,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,4,1,340.6666666666667,0,0,0 +13091,16054,29195,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,7.279258611349346,7.565871736941873,0,3,0,0,0,-9,0,-1002.151065215697,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,19,30,15,1,0,-9,0,10.41018753649058,10.41018753649058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,56.37,6,1,0,0,13,3,1,339,0,0,0 +13092,16055,29196,29197,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,6.710653108089642,6.764535690522044,1,0,-9,47,0,-1,-28.12097276451263,0,0,0,67,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.10155561044292,6.471263309353055,0,0,52.91,55.33,6,1,0,0,6,3,1,1167.5,0,0,0 +13092,16055,29197,29196,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.099873035016683,7.031812751176844,1,0,-9,47,0,1,-46.30396876870007,0,0,0,66,1,4,3,-9,-9,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.641163102025813,7.242468648333506,0,0,51.96,43.81,6,1,0,0,6,3,1,1167.5,0,0,0 +13093,16056,29198,29199,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,4,0,5.607391456398623,6.151632915068656,1,0,-9,44,0,0,-54.48970414570144,0,0,0,65,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.97479155078027,5.708499404210861,0,0,57.16,56.15,6,3,0,0,9,3,1,426,0,0,0 +13093,16056,29199,29198,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.868131927652082,7.7127389773934,1,0,-9,10,0,0,124.930759630202,0,0,0,65,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.917790602494895,8.159797675620748,0,0,54.74,57.22,6,1,0,0,9,3,1,426,0,0,0 +13094,16057,29200,29201,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.075542079124686,8.189629153610994,6.538794165884758,1,0,-9,35,0,0,-10.32506562275218,0,0,0,57,2,4,1,2,2,2019,1,1,5,0,32,35,15,1,0,1,0,9.317634578196051,9.317634578196051,0,0,0,0,0,0,0,0,0,0,2.832440849100963,6.94706455602621,0,0,49.35,59.64,6,1,0,0,4,4,1,2335.5,0,0,0 +13094,16057,29201,29200,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.134840124328289,8.026144127630058,0,1,0,-9,35,0,0,-97.64602607624805,0,0,0,57,2,4,1,3,2,2019,1,2,8,0,2,40,15,1,0,1,0,164.8701267699208,164.8701267699208,0,0,0,0,0,0,0,0,0,0,6.36285190760469,0,0,0,63.63,51.86,7,1,0,0,4,4,1,2335.5,0,0,0 +13095,16058,29202,-9,-9,-9,1,1,0,50,2,0,1,0,2,-9,2,1,0,3,7.319021388114114,7.456329439216177,0,4,0,-9,0,-9,0,-1042.874489419581,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,18,0,15,1,0,-9,0,9.153812801179178,9.153812801179178,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.53,44.95,6,1,0,0,1,2,1,2948,0,0,0 +13096,16059,29203,29204,-9,-9,1,1,1,24,1,0,0,0,2,-9,2,1,0,4,7.762105430968163,8.130731950355795,0,1,0,-9,4,0,1,30.37277325397953,0,1,0,23,3,4,1,1,2,2019,1,2,10,1,33,35,15,1,1,1,0,9.257673117336701,9.257673117336701,0,0,0,0,0,0,0,1,1,0,2.82051761865343,0,0,0,51.59,50.44,5,1,0,0,12,3,1,764,0,0,0 +13096,16059,29204,29203,-9,-9,2,1,0,23,1,0,0,0,3,-9,2,1,0,4,7.121796197609993,7.207746902784844,0,1,0,-9,4,0,-1,7.531337397512186,0,1,1,24,2,4,1,-9,-9,2019,1,1,6,0,22,42,15,1,0,1,0,7.356682317186307,7.356682317186307,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,12,3,1,764,0,0,0 +13097,16060,29205,-9,29207,29208,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.3995457962245,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,2,1,513.5,0,0,0 +13097,16060,29206,-9,29207,29208,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.679852574214,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,2,1,513.5,0,0,0 +13097,16060,29207,29208,-9,-9,2,1,0,32,1,1,2,0,2,-9,2,1,0,4,6.793886330760155,7.222722269048441,0,2,0,-9,9,0,-1,19.42883087772287,0,0,1,33,2,5,1,-9,-9,2019,1,1,8,0,8,15,15,1,0,1,0,14.74987496427515,14.74987496427515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,7,1,0,0,5,2,1,513.5,0,0,0 +13097,16060,29208,29207,-9,-9,1,1,1,33,1,1,2,0,2,-9,1,1,0,5,0,0,0,2,0,-9,9,0,1,-47.5996452536737,0,0,0,32,2,4,1,2,2,2019,1,2,6,0,60,50,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,5,2,1,513.5,0,0,0 +13098,16061,29209,29210,-9,-9,1,1,1,39,1,0,3,0,1,-9,2,1,0,4,9.455929588140151,9.310932123579697,0,2,0,-9,14,0,1,25.7841771601117,0,0,0,38,1,3,3,3,3,2019,2,2,6,0,40,45,15,1,0,3,0,31.37287782173554,31.37287782173554,0,0,0,0,0,0,0,0,0,0,7.422252485639165,0,0,0,54.2,57.49,6,3,0,0,8,5,1,454,0,0,0 +13098,16061,29210,29209,-9,-9,2,1,0,38,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,14,0,-1,165.8798048345444,0,0,1,39,1,4,1,1,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.427747998855037,0,0,0,56.35,51.16,7,3,0,0,8,5,1,454,0,0,0 +13098,16061,29211,-9,29210,29209,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.080302415855,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,8,5,1,454,0,0,0 +13098,16061,29212,-9,29210,29209,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.694052049335,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,3,0,0,8,5,1,454,0,0,0 +13098,16061,29213,-9,29210,29209,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.0127503869795,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,3,0,0,8,5,1,454,0,0,0 +13099,16062,29214,-9,29218,29215,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.399761520324,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,1,0,438.6,0,0,0 +13099,16062,29215,29218,-9,-9,2,1,1,37,1,0,3,0,3,-9,8,3,1,4,0,0,0,2,0,-9,17,0,4,0,0,0,0,33,2,4,3,3,3,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,3,0,0,8,1,0,438.6,0,0,0 +13099,16062,29216,-9,29218,29215,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.6647453648727,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,0,438.6,0,0,0 +13099,16062,29217,-9,29218,29215,3,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1015.420831105831,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,8,1,0,438.6,0,0,0 +13099,16062,29218,29215,-9,-9,1,1,0,33,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,17,0,-4,0,0,0,1,37,3,4,3,3,2,2019,4,2,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.65932772686211,1,46.5,58.26,6,3,0,0,8,1,0,438.6,0,0,0 +13100,16063,29219,29220,-9,-9,2,1,1,43,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,4,0,-16,-58.38626714602304,0,0,0,59,2,4,1,-9,-9,2019,3,1,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.92527458154461,3,41.06,62.04,7,1,0,0,11,3,1,565,0,0,0 +13100,16063,29220,29219,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.205219977764568,8.275141400441575,0,1,0,-9,4,0,16,-71.70087618717024,0,0,0,43,2,4,3,-9,-9,2019,2,2,0,0,47,40,15,1,0,3,0,7.274247240661873,7.274247240661873,0,0,0,0,0,0,0,1,1,0,0,0,8.526437279408045,3,62.49,55.09,7,1,0,0,11,3,1,565,0,0,0 +13101,16064,29221,29222,-9,-9,2,1,0,56,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,28,0,-16,-51.70603628550872,0,0,0,72,3,4,3,3,2,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,6,2,0,0,5,3,1,950.5,0,0,0 +13101,16064,29222,29221,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,7.759381210728676,7.567816392438489,1,0,-9,29,0,16,-25.22279867277911,0,0,0,56,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,6.099123395908012,7.572724658341067,0,0,42.19,58.81,6,1,0,0,5,3,1,950.5,0,0,0 +13102,16065,29223,29224,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,7.192580870454478,7.162067716452015,1,0,-9,52,0,2,61.22734420260382,0,0,0,70,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.993680679891861,6.570892845373672,0,0,58.15,52.91,6,1,0,0,12,4,1,1273,0,0,0 +13102,16065,29224,29223,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.969602401753175,7.920174567873047,1,0,-9,52,0,-2,69.72236251287843,0,0,0,72,2,4,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.274635213826192,8.502039034063401,0,0,58.72,51.29,7,1,0,0,12,4,1,1273,0,0,0 +13103,16066,29225,-9,29227,29228,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.207164337702,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,643.25,0,0,0 +13103,16066,29226,-9,29227,29228,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.46776006232,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,643.25,0,0,0 +13103,16066,29227,29228,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,4,8.107037318528258,7.564354552193768,0,2,0,-9,18,0,-6,-14.66642985836152,0,0,1,43,3,4,1,-9,-9,2019,1,1,26,11,27,26,15,1,11,1,0,12.15831245335768,12.15831245335768,0,0,0,0,0,0,0,1,1,0,0,0,13.18981985159279,3,25.2,66.67,5,1,0,0,7,4,1,643.25,0,0,0 +13103,16066,29228,29227,-9,-9,1,1,1,43,1,0,2,0,3,-9,2,1,0,4,8.462582455289098,8.79966785773512,0,2,0,-9,14,0,6,157.7517067024226,-9,0,0,37,2,4,1,-9,-9,2019,1,2,9,0,40,0,15,1,1,1,0,19.61597883006061,19.61597883006061,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,7,4,1,643.25,0,0,0 +13104,16067,29229,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,2,0,6.661292684225238,6.598629440080367,3,0,0,0,-9,0,-971.3835576280463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.648619832658573,6.505123013089229,0,0,56.68,35.19,6,1,0,0,5,2,0,387,0,0,0 +13105,16068,29230,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1006.479640242956,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.908140929325696,3,46.82,50.04,7,1,1,0,5,1,0,803,0,0,0 +13106,16069,29231,29232,-9,-9,2,1,1,70,1,0,0,0,2,-9,2,1,0,3,7.038653935123874,7.550763224931017,6.646726348840823,1,0,-9,36,0,0,-34.16717106621483,0,0,0,70,1,2,1,3,3,2019,1,1,6,0,40,40,15,1,0,1,0,3.784373418994453,3.784373418994453,1,12.6765005207378,8.489123013313193,0,0,0,55.63020179126841,1,1,0,9.105597743455821,6.390225476975322,0,0,53.59,49.64,6,1,0,0,7,4,1,893.5,0,0,0 +13106,16069,29232,29231,-9,-9,1,1,0,70,1,0,0,0,1,-9,2,1,0,2,7.046206276914539,7.79851039169989,6.994940307246331,1,0,-9,36,0,0,28.20235066024133,0,0,0,70,2,3,1,2,2,2019,1,2,7,0,30,20,15,1,0,1,0,5.346769486254826,5.346769486254826,0,0,0,0,0,0,0,1,1,0,7.072399915654408,7.048039175228204,0,0,57.48,37.4,6,1,0,0,7,4,1,893.5,0,0,0 +13107,16070,29233,-9,-9,-9,1,1,0,41,2,0,2,0,1,-9,2,1,0,2,7.988519917809394,8.377051958177894,6.697276320858759,4,0,0,0,-9,0,-1140.06426614281,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,39,28,15,1,4,-9,0,11.82888429571772,11.82888429571772,0,0,0,0,0,0,0,1,1,0,7.129697940429711,0,0,0,29.77,32.8,3,1,0,1,5,3,1,510,0,0,0 +13107,16070,29234,-9,29233,-9,2,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-999.0917989018135,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,5,3,1,510,0,0,0 +13107,16070,29235,-9,29233,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.6945491231717,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,3,1,510,0,0,0 +13108,16071,29236,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1102.897801517235,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.87,26.46,2,1,0,0,9,1,0,710,0,0,0 +13109,16072,29237,-9,29239,29238,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.114542815224,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,672.75,0,0,0 +13109,16072,29238,29239,-9,-9,2,1,1,40,1,0,2,0,2,-9,1,1,0,4,8.099801021489965,8.244930572962307,0,2,0,-9,9,0,-3,-145.6005163163835,0,0,0,43,1,2,1,3,1,2019,1,1,11,0,25,14,15,1,0,1,0,18.64752404624232,18.64752404624232,0,0,0,0,0,0,0,1,1,0,0,0,21.20791736378508,3,42.3,57.54,6,1,0,0,9,5,1,672.75,0,0,0 +13109,16072,29239,29238,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,2,8.870890131572194,8.824211049453313,0,2,0,-9,9,0,3,48.31248795142137,0,0,1,40,2,4,1,2,3,2019,1,2,15,5,45,43,15,1,5,1,0,18.12217238600156,18.12217238600156,0,0,0,0,0,0,0,1,1,0,0,0,81.21718932166868,3,38.33,33.78,5,1,0,0,9,5,1,672.75,0,0,0 +13109,16072,29240,-9,29239,29238,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.7213153031079,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,672.75,0,0,0 +13110,16073,29241,29242,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,5,6.624443594438908,8.596222961913085,8.312278511390668,1,0,-9,3,0,1,-51.95059778556632,0,0,0,57,2,2,1,-9,-9,2019,1,1,6,0,15,0,15,1,0,1,0,6.461408880407735,6.461408880407735,0,0,0,0,0,0,0,0,0,0,3.248429077307806,8.57041151171077,0,0,57.06,57.76,6,1,0,0,6,5,1,492,0,0,0 +13110,16073,29242,29241,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,2,9.019708710527098,8.823996130885615,0,1,0,-9,3,0,-1,-32.9108522727015,0,0,0,58,2,5,1,2,3,2019,1,2,11,0,43,50,15,1,0,1,0,23.32003720617361,23.32003720617361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,48.45,4,2,0,0,6,5,1,492,0,0,0 +13111,16074,29243,29244,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.560779045635845,8.071700725586412,1,0,-9,9,0,0,-104.8849034081559,0,0,0,71,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.482234897694576,7.826474376146732,0,0,55.76,52.64,6,1,0,0,6,3,1,824,0,0,0 +13111,16074,29244,29243,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,9,0,0,-250.3621088390975,0,0,0,71,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.576628957445076,0,0,0,44.02,60.7,6,1,0,0,6,3,1,824,0,0,0 +13112,16075,29245,-9,29247,29246,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.1589767237779,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,3,1,661.25,0,0,0 +13112,16075,29246,29247,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.769001377304974,8.63447451278555,0,2,0,-9,20,0,2,65.08128375611818,0,0,0,42,2,4,3,2,2,2019,2,2,24,10,46,50,15,1,10,3,0,13.51109088181233,13.51109088181233,0,0,0,0,0,0,0,1,1,0,2.939403066365331,0,0,3,39.16,56.56,5,1,0,0,1,3,1,661.25,0,0,0 +13112,16075,29247,29246,-9,-9,2,1,0,42,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,19,0,-2,-53.32862305031711,0,0,1,44,2,3,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,1,3,1,661.25,0,0,0 +13112,16075,29248,-9,29247,29246,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.806616847785,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,661.25,0,0,0 +13113,16076,29249,-9,29251,29252,9,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.909295412801,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,1,1027.5,0,0,0 +13113,16076,29250,-9,29251,29252,8,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.995333578935,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,3,1,1027.5,0,0,0 +13113,16076,29251,29252,-9,-9,7,1,0,28,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-6,-88.35416591980531,0,1,1,34,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,57,5,3,0,0,8,3,1,1027.5,0,0,0 +13113,16076,29252,29251,29257,29256,1,1,1,34,1,0,3,0,2,-9,2,1,0,4,8.153868454930018,8.513372278183336,0,2,0,-9,5,0,6,97.29827308939399,0,0,0,28,3,4,3,3,3,2019,2,7,10,0,38,35,15,1,1,3,0,15.31874314641585,15.31874314641585,0,0,0,0,0,0,0,1,1,0,3.129104768214401,0,0,3,50,57,5,3,0,0,8,3,1,1027.5,0,0,0 +13113,16077,29253,-9,29257,29256,2,1,1,27,2,0,3,0,2,-9,2,1,0,4,6.835095327242212,6.975544778456856,0,3,0,0,0,-9,0,-1018.532644311708,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,30,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4195201252199474,0,0,3,49,58,5,3,0,0,8,2,1,1497,0,0,0 +13113,16078,29254,-9,29257,29256,3,1,0,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1051.742982266057,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,5,3,0,0,8,3,1,723,0,0,0 +13113,16079,29255,-9,29257,29256,4,1,0,20,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1082.913704676834,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,5,3,0,0,8,1,1,582,0,0,0 +13113,16080,29256,29257,-9,-9,6,1,1,60,1,0,3,0,3,-9,3,3,0,3,0,0,0,2,0,-9,7,0,4,0,0,0,0,56,3,3,3,-9,-9,2019,4,5,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,3,1,0,8,1,1,1203.5,0,0,0 +13113,16080,29257,29256,-9,-9,5,1,0,56,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,41,0,-4,0,0,0,0,60,3,3,3,3,2,2019,4,6,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.892829495988998,1,49,48,5,3,0,0,8,1,1,1203.5,0,0,0 +13114,16081,29258,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1037.117108336156,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55.36,54.24,7,1,0,0,12,1,0,818,0,0,0 +13115,16082,29259,29260,-9,-9,2,1,0,47,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,2,0,2,0,0,0,0,45,2,4,3,3,3,2019,4,1,32,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.11,36.59,4,1,1,1,6,1,0,1053.5,0,0,0 +13115,16082,29260,29259,-9,-9,1,1,1,45,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,2,0,-2,0,0,0,0,47,3,1,3,2,3,2019,4,2,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.79,58.33,3,1,1,1,6,1,0,1053.5,0,0,0 +13116,16083,29261,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,2,1,0,3,8.636378624268978,8.648541406124131,0,3,0,0,0,-9,0,-1076.380454360539,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,24.90440054448266,24.90440054448266,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,49.66,5,1,0,0,6,5,0,590,0,0,0 +13117,16084,29262,-9,29265,-9,2,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-849.0849916948716,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,1,0,1174.25,0,0,0 +13117,16084,29263,-9,29265,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-961.8531908261924,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,1174.25,0,0,0 +13117,16084,29264,-9,29265,-9,3,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-915.9864663998209,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,1,0,1174.25,0,0,0 +13117,16084,29265,-9,-9,-9,1,1,0,32,2,1,3,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-905.3975584657499,0,0,1,-9,-9,-9,-9,1,-9,2019,-9,0,18,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.13,54.06,4,4,0,0,8,1,0,1174.25,0,0,0 +13118,16085,29266,29267,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-4,117.1305059895255,0,0,0,70,2,2,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.691962874041121,0,0,0,60.29,52.11,6,1,0,0,5,3,1,732,0,0,0 +13118,16085,29267,29266,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,7.617631061948829,8.069160565000415,1,0,-9,49,0,4,-16.64364941805608,0,0,0,66,2,3,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.22363662890703,7.74400635203895,0,0,53.23,47.51,5,1,0,0,5,3,1,732,0,0,0 +13119,16086,29268,-9,-9,-9,2,1,0,48,3,0,0,0,1,-9,2,1,0,4,8.152938632331599,8.177942349557556,0,3,0,0,0,-9,0,-875.4877067240936,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,37,15,1,1,-9,0,12.43882084268215,12.43882084268215,0,0,0,0,0,0,0,0,0,0,2.284670064639343,0,0,0,44.21,60.79,6,1,0,0,10,4,1,405,0,0,0 +13120,16087,29269,29270,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,7.830991047337001,8.338734391840246,7.678759577556569,1,0,-9,10,0,5,31.93183805821044,0,0,0,57,2,4,1,2,2,2019,1,2,7,0,32,37,15,1,0,1,0,9.130957066926335,9.130957066926335,0,0,0,0,0,0,0,0,0,0,4.277322557551417,7.612231171698482,6.851100778300366,3,57.33,53.46,6,1,0,0,11,4,1,1633.5,0,0,0 +13120,16087,29270,29269,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.437405144193654,7.683946375828156,0,1,0,-9,10,0,-5,74.35015445982852,0,0,0,62,2,3,1,2,2,2019,1,1,10,1,33,33,15,1,1,1,0,7.710825708617327,7.710825708617327,0,0,0,0,0,0,0,0,0,0,0,0,21.00468609264179,3,51,54,6,1,0,0,11,4,1,1633.5,0,0,0 +13121,16088,29271,29272,-9,-9,2,1,0,35,1,0,0,0,1,-9,1,1,0,4,7.694151242819578,7.829969007936889,0,1,0,-9,4,0,1,0,0,0,1,34,2,4,1,-9,-9,2019,1,1,11,1,25,60,15,1,1,1,0,10.19152532288189,10.19152532288189,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.04,42.69,6,1,0,0,9,4,0,1119.5,0,0,0 +13121,16088,29272,29271,-9,-9,1,1,1,34,1,0,0,0,2,-9,1,1,0,4,8.001785427733079,7.891700644254072,0,1,0,-9,4,0,-1,0,0,0,0,35,1,4,1,2,2,2019,1,2,5,0,45,65,15,1,0,1,0,5.837028465748956,5.837028465748956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.56,38.1,6,1,0,0,9,4,0,1119.5,0,0,0 +13122,16089,29273,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,2,1,0,2,8.45731155022621,8.654334858340999,0,3,0,0,0,-9,0,-976.1833999686581,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,72,63,15,1,0,-9,0,7.494204469920076,7.494204469920076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.74,49.95,6,1,0,0,5,5,0,352,0,0,0 +13123,16090,29274,-9,-9,-9,1,1,1,45,2,0,0,0,2,-9,1,1,0,5,8.409740905990764,8.929761810928715,0,3,0,0,0,-9,0,-996.637228194965,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,35,35,15,1,0,-9,0,19.40608365111245,19.40608365111245,0,0,0,0,0,0,0,0,0,0,3.87704598272537,0,0,0,59.19,51.29,6,1,0,0,12,5,1,380,0,0,0 +13124,16091,29275,29276,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.820810978599208,6.504736356472217,1,0,-9,6,0,3,33.75526783767402,0,0,0,68,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.483301354091102,7.079597901125457,3,60.2,39.82,6,1,0,0,11,2,1,813,0,0,0 +13124,16091,29276,29275,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,-3,39.94854570303691,0,0,0,71,2,3,3,3,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.06,38.34,6,1,0,0,11,2,1,813,0,0,0 +13125,16092,29277,29278,-9,-9,2,1,0,52,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,-9,31,0,0,3.651683897733196,0,0,0,52,1,3,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.992786753465889,0,0,3,50.05,55.41,6,1,0,0,5,4,1,922,0,0,0 +13125,16092,29278,29277,-9,-9,1,1,1,52,1,0,0,0,1,-9,1,1,0,3,8.481442538667491,8.497505014797817,0,1,0,-9,6,0,0,-38.51203295379753,0,0,0,52,1,4,3,-9,-9,2019,2,2,12,3,72,60,15,1,3,3,0,10.74327193594831,10.74327193594831,0,0,0,0,0,0,0,0,0,0,4.39681177390209,0,0,3,55.19,51.92,6,1,0,0,5,4,1,922,0,0,0 +13125,16093,29279,-9,29277,29278,3,1,1,21,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-978.6929964650158,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.591534500266392,0,0,0,55.63,55.6,7,1,0,0,5,1,1,588,0,0,0 +13126,16094,29280,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,4,0,7.160539503761772,7.481034006760329,3,0,0,0,-9,0,-976.4069553885537,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.426958098441566,7.360235420346603,0,0,57.16,56.15,7,1,0,0,9,3,1,937,0,0,0 +13126,16095,29281,29282,-9,29280,2,1,0,32,1,0,0,0,1,-9,1,1,0,5,2.321734951388211,2.134091517703425,0,1,0,-9,6,0,-3,-162.8968359066858,-9,0,1,35,2,5,1,3,2,2019,1,3,10,1,30,0,15,1,1,1,0,.0340518436249607,.0340518436249607,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.31,60.71,5,1,0,0,9,5,1,685.5,0,0,0 +13126,16095,29282,29281,-9,-9,3,1,1,35,1,0,0,0,2,-9,1,1,0,5,9.270329766184769,9.207950171459682,0,1,0,-9,6,0,3,-36.02192111926099,-9,0,0,32,1,5,1,-9,-9,2019,1,2,6,0,20,0,15,1,0,1,0,53.65626417167385,53.65626417167385,0,0,0,0,0,0,0,1,1,0,7.579766447450947,0,0,0,57.06,57.76,7,1,0,0,9,5,1,685.5,0,0,0 +13127,16096,29283,29284,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.748110919025899,7.639530323759794,1,0,-9,42,0,-5,-6.183104100199389,0,0,0,68,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.15515487599122,7.833678810649571,0,0,47.3,53.21,7,1,0,0,5,4,1,678,0,0,0 +13127,16096,29284,29283,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,8.20140289908473,8.196955209980766,1,0,-9,42,0,5,28.02103414625015,0,0,0,63,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.611852199397582,8.215067356286612,0,0,52.82,53.97,6,1,0,0,5,4,1,678,0,0,0 +13128,16097,29285,-9,-9,-9,1,1,0,27,2,0,1,0,2,-9,2,1,0,4,6.864120881367461,7.214771138393235,0,4,0,0,0,-9,0,-1009.398003658967,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,16,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9402595434541929,0,0,0,46,58,5,1,0,1,9,2,0,639,0,0,0 +13128,16097,29286,-9,29285,-9,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1210.923515977113,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,0,639,0,0,0 +13129,16098,29287,29289,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.762068319300674,9.166703042354619,0,2,0,-9,2,0,6,30.08090059832114,0,0,0,43,2,4,1,2,2,2019,1,2,7,0,40,40,15,1,0,1,0,16.87714278157823,16.87714278157823,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.9,39.91,6,1,0,0,10,5,1,451.3333333333333,0,0,0 +13129,16098,29288,-9,29289,29287,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.224376529422,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,5,1,451.3333333333333,0,0,0 +13129,16098,29289,29287,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,4,6.855036971871118,7.947469944897382,6.670472916214873,2,0,-9,2,0,-6,67.46264877160712,-9,0,1,49,2,4,1,-9,-9,2019,1,1,8,0,24,0,15,1,0,1,0,7.154090708010584,7.154090708010584,0,0,0,0,0,0,0,1,1,0,0,6.993135162765458,0,0,52.94,53.98,7,1,0,0,10,5,1,451.3333333333333,0,0,0 +13130,16099,29290,29291,-9,-9,5,1,1,38,1,0,2,0,1,-9,2,1,0,4,8.968708673600977,9.159284212423081,0,2,0,-9,5,0,-7,151.8984024182672,0,0,0,45,3,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,26.62269062264291,26.62269062264291,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,0,0,9,5,1,451.4,0,0,0 +13130,16099,29291,29290,-9,-9,1,1,0,45,1,0,2,0,3,-9,2,1,0,4,7.933412133961011,8.109587329545965,0,2,0,-9,5,0,7,-63.14892685148924,0,0,0,38,1,4,1,3,3,2019,1,5,13,2,27,27,15,1,2,1,0,12.21885292942223,12.21885292942223,0,0,0,0,0,0,0,1,1,0,0,0,26.78874823085001,3,43.42,62.33,4,3,0,0,9,5,1,451.4,0,0,0 +13130,16099,29292,-9,29291,29290,2,1,1,17,2,0,2,1,2,0,7,2,0,4,6.22262690442418,6.298338790281115,0,2,0,0,0,-9,0,-1028.565321219414,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,15,3,22,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.51,59.08,5,3,0,0,9,5,1,451.4,0,0,0 +13130,16099,29293,-9,29291,29290,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.394699325642,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,5,1,451.4,0,0,0 +13130,16099,29294,-9,29291,29290,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.552275673325,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,9,5,1,451.4,0,0,0 +13131,16100,29295,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,4,0,5.223928225564008,5.185143709548636,3,0,0,0,-9,0,-935.6245900820481,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.266638072259252,5.015179677611946,0,0,62.19,30.49,5,1,0,0,12,2,0,341,0,0,0 +13132,16101,29296,29297,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.567380384325273,7.474193027863237,0,1,0,-9,8,0,-5,-78.23077981549818,0,0,0,65,2,5,3,3,3,2019,2,1,12,0,28,28,15,1,0,4,0,7.65311876799768,7.65311876799768,0,0,0,0,0,0,0,1,1,0,4.223442488016547,0,0,0,44.02,60.7,6,1,0,0,11,4,1,591,0,0,0 +13132,16101,29297,29296,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,5,0,7.817065061073675,7.975909688567281,1,0,-9,8,0,5,-29.75651250838353,0,0,0,60,2,4,1,3,3,2019,3,2,6,0,0,35,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.504378749167087,0,0,57.06,57.76,7,1,0,0,11,4,1,591,0,0,0 +13132,16102,29298,-9,29296,29297,4,1,0,34,3,0,0,0,1,-9,2,1,0,3,8.370755128658075,8.368728055027914,0,3,0,0,0,-9,0,-1074.801050094846,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,18,6,40,36,15,1,6,-9,1,11.78300019588933,11.78300019588933,0,0,0,0,0,0,0,1,1,0,6.84139230829301,0,0,0,35.8,53.97,5,1,0,0,11,5,1,774,0,0,0 +13133,16103,29299,-9,29301,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,3,8.339130980752115,8.584352305095852,0,3,0,-9,0,-9,0,-872.6398793152546,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,35,25,15,1,1,-9,1,17.32892429007345,17.32892429007345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.37,49.68,4,4,0,0,8,5,0,536,0,0,0 +13133,16104,29300,-9,29301,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,3,6.570102290809206,6.795595040163025,0,3,0,0,0,-9,0,-1071.836958459151,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,24,0,15,1,2,-9,1,3.465519409328759,3.465519409328759,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.78,52.96,4,4,0,0,8,2,0,1015,0,0,0 +13133,16105,29301,-9,-9,-9,4,1,0,57,3,0,0,0,3,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-992.0538788558107,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,4,0,1,8,1,0,558,0,0,0 +13134,16106,29302,29303,-9,-9,1,1,1,31,1,0,0,0,1,-9,1,1,0,4,8.421935902388322,8.433896254265623,0,1,0,-9,7,0,2,-126.3377728605439,0,0,0,29,1,2,1,2,2,2019,1,2,13,1,35,10,15,1,1,1,0,14.43352746435126,14.43352746435126,0,0,0,0,0,0,0,0,0,0,7.658626251524517,0,9.445400864117449,1,48.76,53.24,6,1,0,0,6,4,1,771.5,0,0,0 +13134,16106,29303,29302,-9,-9,2,1,0,29,1,0,0,0,1,-9,1,1,0,2,7.608201003019969,7.736813464897004,0,1,0,-9,7,0,-2,-90.23199110313095,0,1,1,31,1,4,1,-9,-9,2019,1,1,14,2,3,0,15,1,2,1,0,88.40174301189869,88.40174301189869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,20.16,5,1,0,0,6,4,1,771.5,0,0,0 +13135,16107,29304,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-985.7358006107039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.508124196665346,0,0,0,62.63,31.68,6,1,0,0,4,1,1,297,0,0,0 +13136,16108,29305,29306,-9,-9,1,1,1,90,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,22,0,10,0,0,0,0,80,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,5.135095929488395,0,0,24.90166777097399,0,36.94416713242501,1,1,0,0,0,0,0,56,44,6,1,0,0,11,1,1,806,0,0,0 +13136,16108,29306,29305,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,-10,0,0,0,0,90,3,3,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,24.72060037996293,0,0,1,1,0,0,0,0,0,57.48,16.73,4,1,0,0,11,1,1,806,0,0,0 +13137,16109,29307,29308,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.537302599272782,7.444906488115638,0,1,0,-9,8,0,-1,37.6087868735783,0,0,0,58,2,4,1,-9,-9,2019,1,1,18,7,27,28,15,1,7,1,0,7.889687455410519,7.889687455410519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,62.33,6,1,0,0,10,5,1,766,0,0,0 +13137,16109,29308,29307,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,9.276965608115665,9.368145103398453,0,1,0,-9,8,0,1,-82.76965374171489,0,0,0,57,2,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,34.39356923484013,34.39356923484013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,766,0,0,0 +13138,16110,29309,29310,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.660692883071436,8.586847374861632,0,1,0,-9,6,0,1,-51.10594700339227,0,0,0,55,2,1,1,-9,-9,2019,1,2,9,0,38,38,15,1,0,1,0,12.25459281972657,12.25459281972657,0,0,0,0,0,0,0,1,1,0,.5321389517551787,0,0,0,54,54,6,1,0,0,10,4,0,681.5,0,0,0 +13138,16110,29310,29309,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,1,7.191577473336687,7.189626250041751,0,1,0,-9,6,0,-1,58.58525032784985,0,0,0,56,2,4,1,3,3,2019,1,1,11,0,20,20,15,1,0,1,0,7.303643611622275,7.303643611622275,0,0,0,0,0,0,0,1,1,0,3.470986538892748,0,0,0,50.44,35.43,5,1,0,0,10,4,0,681.5,0,0,0 +13138,16111,29311,-9,29310,29309,3,1,0,35,3,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1071.689795784835,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,7,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.473079820104187,3,29.91,52.69,3,1,1,1,10,1,0,921,0,0,0 +13139,16112,29312,-9,-9,-9,1,1,1,49,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1028.363664990896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.6,26.38,5,1,0,0,13,1,1,2361,0,0,0 +13140,16113,29313,29314,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,3,7.890383594299269,7.992322700121537,0,1,0,-9,4,0,8,80.97810994326569,0,0,0,48,2,5,1,2,2,2019,1,2,6,0,35,72,15,1,0,1,0,8.560065961699484,8.560065961699484,0,0,0,0,0,0,0,1,1,0,6.53587227448772,0,0,0,60.29,52.11,6,1,0,0,1,4,1,1082,0,0,0 +13140,16113,29314,29313,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,5,8.231900956645914,8.181822270756712,0,1,0,-9,4,0,-8,-141.4165683951315,0,0,0,56,3,3,1,-9,-9,2019,1,1,6,0,37,40,15,1,0,1,0,10.2728236571093,10.2728236571093,0,0,0,0,0,0,0,1,1,0,0,0,0,3,62.39,56.71,7,1,0,0,1,4,1,1082,0,0,0 +13141,16114,29315,29318,-9,-9,2,1,0,51,1,0,2,0,1,-9,2,1,0,4,7.702220453923913,7.892995231660851,0,2,0,-9,21,0,-10,5.73707125783092,0,0,0,61,1,4,1,3,3,2019,1,1,9,0,12,12,15,1,0,1,0,22.85413354368507,22.85413354368507,0,0,0,0,0,0,0,1,1,0,3.031067098346825,0,0,0,56.01,51.37,6,1,0,0,7,4,1,586.8,0,0,0 +13141,16114,29316,-9,29315,29318,4,1,0,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1119.274761034278,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,7,4,1,586.8,0,0,0 +13141,16114,29317,-9,29315,29318,5,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.263054573321,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,586.8,0,0,0 +13141,16114,29318,29315,-9,-9,1,1,1,61,1,0,2,0,1,-9,1,1,0,4,7.648989918693267,8.54751571655609,8.466814200815731,2,0,-9,15,0,10,-31.3362498423557,0,0,0,51,1,4,1,2,3,2019,1,2,10,1,30,25,15,1,1,1,0,6.754769689035987,6.754769689035987,0,0,0,0,0,0,0,1,1,0,8.616065618868634,0,0,0,47.52,57.75,5,1,0,0,7,4,1,586.8,0,0,0 +13141,16114,29319,-9,29315,29318,3,1,1,17,2,0,2,1,2,0,7,2,0,5,7.949618188188204,7.947899479225913,0,2,0,0,0,-9,0,-892.3257316508725,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,55.66,7,1,0,0,7,4,1,586.8,0,0,0 +13142,16115,29320,-9,29324,29321,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.982251775349,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,5,1,665.4,0,0,0 +13142,16115,29321,29324,-9,-9,2,1,1,33,1,0,3,0,3,-9,1,1,0,4,9.701758145447425,9.577937083576758,0,2,0,-9,15,0,2,34.88101704181792,0,0,0,31,2,4,1,3,3,2019,1,1,10,0,20,37,15,1,1,1,0,97.25573803451019,97.25573803451019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,5,3,0,0,4,5,1,665.4,0,0,0 +13142,16115,29322,-9,29324,29321,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.6042786571428,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,5,1,665.4,0,0,0 +13142,16115,29323,-9,29324,29321,3,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-929.7888415575318,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,4,5,1,665.4,0,0,0 +13142,16115,29324,29321,-9,-9,1,1,0,31,1,0,3,0,2,-9,2,1,0,4,6.926243110996873,7.109465177388143,0,2,0,-9,15,0,-2,106.5619284413104,0,0,1,33,3,4,1,3,2,2019,1,2,8,0,11,0,15,1,0,1,0,9.142206622601456,9.142206622601456,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,3,0,0,4,5,1,665.4,0,0,0 +13143,16116,29325,29326,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,4.766056945258064,4.942038733188962,1,0,-9,53,0,1,87.66496146337406,0,0,0,72,2,2,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.168397678243782,5.063176951523825,2.525312196890707,2,44.8,44.84,6,1,0,0,8,2,1,595.5,0,0,0 +13143,16116,29326,29325,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,129.977112126846,0,0,0,73,2,3,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,1.89550303034622,0,0,0,0,1,1,0,0,0,0,0,35.22,29.93,6,1,0,1,8,2,1,595.5,0,0,0 +13144,16117,29327,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,4,8.422409538117698,8.513577568733821,0,3,0,0,0,-9,0,-933.7072154943103,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,42,40,15,1,0,-9,0,22.17800360255548,22.17800360255548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,7,5,1,186,0,0,0 +13145,16118,29328,-9,29330,29329,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.046006322311,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,707,0,0,0 +13145,16118,29329,29330,-9,-9,2,1,1,34,1,1,1,0,2,-9,2,1,0,4,8.587378699943729,8.582385131872265,0,2,0,-9,4,0,-14,68.16221806598067,0,0,0,48,2,4,1,-9,-9,2019,1,1,12,0,48,45,15,1,0,1,0,12.05852856544001,12.05852856544001,0,0,0,0,0,0,0,1,1,0,1.887835120977357,0,0,0,49.41,58.28,6,1,0,0,5,4,1,707,0,0,0 +13145,16118,29330,29329,-9,-9,1,1,0,48,1,1,1,0,2,-9,2,1,0,4,8.096604286319744,8.004602320332559,0,2,0,-9,4,0,14,20.5519994270647,0,0,0,34,2,4,1,2,3,2019,1,2,9,0,25,28,15,1,0,1,0,17.88772622913849,17.88772622913849,0,0,0,0,0,0,0,1,1,0,4.733096766911976,0,13.66826816258411,3,51.95,53.02,6,1,0,0,5,4,1,707,0,0,0 +13146,16119,29331,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,2,0,6.616197904501456,6.469980522745709,3,0,0,0,-9,0,-983.6947131408198,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,4.017433821349381,0,0,0,16.58671522819815,72.64057161259024,1,1,0,4.453217761530011,6.227503564939243,0,0,60.51,10.52,7,1,0,0,10,2,1,339,0,0,0 +13147,16120,29332,29333,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,3,8.735338585727716,8.416474939672382,0,2,0,-9,4,0,0,-14.79771037551135,0,0,0,49,1,3,1,2,2,2019,1,2,12,1,42,42,15,1,1,1,0,13.0484371244585,13.0484371244585,0,0,0,0,0,0,0,1,1,0,3.301011791041413,0,1.913291525122242,3,49.45,46.23,6,1,0,0,13,5,1,866,0,0,0 +13147,16120,29333,29332,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,3,8.641551641535642,8.635234927371423,0,2,0,-9,4,0,0,14.38749435492896,0,0,0,49,2,3,1,3,1,2019,1,1,11,0,33,28,15,1,0,1,0,23.93200766512315,23.93200766512315,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,13,5,1,866,0,0,0 +13147,16120,29334,-9,29333,29332,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.4362098285512,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,5,1,866,0,0,0 +13148,16121,29335,29336,-9,-9,1,1,0,39,1,0,0,0,3,-9,2,1,0,4,7.256903227051181,7.27293227244594,0,1,0,-9,7,0,-7,-2.219732711260447,0,0,1,46,3,3,1,2,3,2019,1,2,7,0,18,18,15,1,0,1,0,11.94387081835468,11.94387081835468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.67,48.57,6,1,0,0,4,5,0,331,0,0,0 +13148,16121,29336,29335,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,3,8.782069309627838,9.085088428388438,0,1,0,-9,7,0,7,4.317414495180865,0,0,0,39,3,4,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,23.36729459711585,23.36729459711585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,5,1,0,0,4,5,0,331,0,0,0 +13148,16122,29337,-9,29335,29336,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.447431106327209,7.641639766454581,0,3,0,0,0,-9,0,-896.8509804757485,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,37,15,1,2,-9,1,6.413057115100595,6.413057115100595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,4,3,0,731,0,0,0 +13149,16123,29338,29339,-9,-9,1,1,0,61,1,0,0,0,1,-9,3,3,0,4,0,0,0,1,0,-9,36,0,0,0,0,0,0,70,3,4,3,3,2,2019,4,2,14,2,0,45,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.37,51.38,5,1,1,1,10,1,1,678,0,0,0 +13149,16123,29339,29338,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,9,0,0,0,0,61,1,4,3,-9,3,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,10,1,1,678,0,0,0 +13150,16124,29340,-9,-9,-9,5,1,1,19,2,0,1,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1030.96575218021,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,13,1,0,4257,0,0,0 +13150,16125,29341,-9,-9,-9,7,1,0,24,2,0,1,0,3,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-1078.519992228942,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,16,0,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.66,52.2,4,1,1,0,13,1,0,394.5,0,0,0 +13150,16125,29342,-9,29341,-9,6,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1004.569458257122,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,1,0,394.5,0,0,0 +13151,16126,29343,29344,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,8.140929955321303,8.179873989464463,1,0,-9,45,0,-2,115.3965328975971,0,0,0,67,1,3,3,3,3,2019,4,1,7,0,0,7,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.173088024276915,8.408592149357437,0,3,58.15,52.91,7,1,0,0,6,5,1,1068,0,0,0 +13151,16126,29344,29343,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,8.880541162138753,8.480964656433445,1,0,-9,45,0,2,7.066795284965181,0,0,0,65,2,4,3,2,2,2019,4,2,10,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.319795065562431,8.245447468113886,0,0,54.02,40.03,7,1,0,0,6,5,1,1068,0,0,0 +13152,16127,29345,29348,-9,-9,1,1,1,50,1,0,3,0,2,-9,2,1,0,3,8.073446089913361,8.235391756087067,0,2,0,-9,24,0,2,-77.59060117945793,0,0,0,48,1,4,1,2,2,2019,1,2,8,0,42,40,15,1,0,1,0,9.466147191021445,9.466147191021445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,6,4,1,1190.6,0,0,0 +13152,16127,29346,-9,29348,29345,3,1,0,17,2,0,3,1,2,0,7,2,0,3,4.518718776032135,4.929954097020896,4.374239735524236,2,0,0,0,-9,0,-967.4773031417553,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,14,3,2,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.650914751436208,0,0,0,42.46,54.85,4,1,0,0,6,4,1,1190.6,0,0,0 +13152,16127,29347,-9,29348,29345,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.616900020992,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1190.6,0,0,0 +13152,16127,29348,29345,-9,-9,2,1,0,48,1,0,3,0,1,-9,2,1,0,4,8.528504405319843,8.521745973893148,0,2,0,-9,24,0,-2,30.69873938354772,0,0,0,50,2,3,1,2,3,2019,1,1,12,2,43,42,15,1,2,1,0,15.58971330253233,15.58971330253233,0,0,0,0,0,0,0,1,1,0,0,0,2.53842029229064,3,51.83,57.2,6,1,0,0,6,4,1,1190.6,0,0,0 +13152,16127,29349,-9,29348,29345,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.002539256557,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,1,1190.6,0,0,0 +13153,16128,29350,29352,-9,-9,2,1,0,27,1,1,1,0,1,-9,5,1,0,4,8.088338819744955,8.38256550075212,0,2,0,-9,1,-9,-1,-31.38416877507652,-9,1,1,28,1,4,1,-9,-9,2019,1,1,10,0,43,0,15,1,0,1,0,11.88605722221176,11.88605722221176,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,4,1,683.6666666666666,0,0,0 +13153,16128,29351,-9,29350,29352,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-963.4432040589148,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,4,1,683.6666666666666,0,0,0 +13153,16128,29352,29350,-9,-9,1,1,1,28,1,1,1,0,1,-9,2,1,0,4,7.653905605089091,7.788324600280733,0,2,0,-9,1,-9,1,-54.28289360019317,-9,1,0,27,1,4,1,2,2,2019,1,2,12,1,37,0,15,1,1,1,0,8.466163335414841,8.466163335414841,0,0,0,0,0,0,0,1,1,0,3.985464372613303,0,0,0,38.53,62.21,6,1,0,0,13,4,1,683.6666666666666,0,0,0 +13154,16129,29353,29354,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,4,9.211331999509564,8.991063178588432,0,1,0,-9,19,0,5,-219.1519216813109,0,0,0,47,2,4,1,2,2,2019,1,1,14,1,70,40,15,1,1,1,0,13.41846463159385,13.41846463159385,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.48,66.73999999999999,5,1,0,0,9,5,1,313,0,0,0 +13154,16129,29354,29353,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.909924116353613,8.686326793627478,0,1,0,-9,19,0,-5,-113.8565203700137,0,0,0,52,1,4,1,3,3,2019,1,2,12,1,46,50,15,1,1,1,0,14.1822603497215,14.1822603497215,0,0,0,0,0,0,0,1,1,0,0,0,6.633752335219267,3,52.47,49.93,6,1,0,0,9,5,1,313,0,0,0 +13154,16130,29355,-9,29354,29353,3,1,1,21,2,0,0,1,2,0,7,2,0,5,6.551247468891454,6.436990241899821,0,3,0,0,0,-9,0,-1085.951947062413,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.9714567815860036,0,0,0,54.1,59.11,6,1,0,0,9,2,1,1287,0,0,0 +13154,16131,29356,-9,29354,29353,4,1,0,18,2,0,0,0,2,1,2,1,0,3,5.813559917605023,5.995446301280814,0,3,0,0,0,-9,0,-1034.909951562833,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,23,0,15,1,0,-9,1,1.792438274778236,1.792438274778236,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,6,1,0,0,9,2,1,318,0,0,0 +13155,16132,29357,29358,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,10,0,7,-26.40415007669007,0,0,0,59,2,4,1,3,-9,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,6,1,0,0,10,4,1,1066.5,0,0,0 +13155,16132,29358,29357,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,4,7.834614368946323,8.330786807090146,7.703649855335733,1,0,-9,10,0,-7,-75.50130905027898,0,0,0,66,2,4,3,2,2,2019,2,1,7,0,36,36,15,1,0,4,0,9.410713674808578,9.410713674808578,0,0,0,0,0,0,0,1,1,0,0,8.023179494399185,0,0,57.16,56.15,6,1,0,0,10,4,1,1066.5,0,0,0 +13156,16133,29359,-9,-9,-9,1,1,1,86,3,0,0,0,3,-9,4,3,0,2,0,5.93422079253347,6.347176261912952,3,0,0,0,-9,0,-912.8765176676407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.241932841740126,2.607609160605879,0,0,1,1,0,0,6.097636864860766,0,0,51,35,5,1,0,0,7,2,0,114,0,0,0 +13157,16134,29360,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.783684660509717,8.70469271239666,0,3,0,0,0,-9,0,-919.8885907975287,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,16,3,52,45,15,1,3,-9,0,13.54728168451118,13.54728168451118,0,0,0,0,0,0,0,0,0,0,.8050329161213019,0,0,0,7.55,53.36,2,4,0,0,5,5,1,602,0,0,0 +13158,16135,29361,29362,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,4,7.874119911278088,7.711749692905855,0,1,0,-9,1,-9,-1,37.54176234639254,-9,0,1,42,2,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,0,1,0,6.077607380479796,6.077607380479796,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.94,60.48,4,1,0,0,9,5,1,376.5,0,0,0 +13158,16135,29362,29361,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,4,8.664267184263856,9.149597706429054,7.081056457029608,1,0,1,1,-9,1,71.36689805078392,0,0,0,41,2,4,1,3,2,2019,1,2,12,0,42,48,15,1,0,1,0,18.67260751194743,18.67260751194743,0,0,0,0,0,0,0,1,1,0,6.844933442968195,0,0,0,47.15,55.39,5,1,0,0,9,5,1,376.5,0,0,0 +13159,16136,29363,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,6.44880497563603,6.301338360453133,3,0,0,0,-9,0,-1011.960902242705,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,8.630166757870448,0,0,1,1,0,.6242849645040183,6.262476342646715,0,0,52.65,27.68,6,1,0,0,9,2,1,2033,0,0,0 +13160,16137,29364,29365,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,3,9.136010397418127,9.104112097109594,0,1,0,-9,6,0,2,-125.8254048830099,0,0,0,53,2,4,1,2,2,2019,1,2,7,0,36,35,15,1,0,1,0,25.43974967567155,25.43974967567155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,2,1,0,0,10,5,1,660.5,0,0,0 +13160,16137,29365,29364,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.773183778392267,7.965686660186984,0,1,0,-9,6,0,-2,18.98183550238663,0,0,0,55,3,3,1,2,2,2019,1,1,6,0,23,22,15,1,0,1,0,14.45107713565626,14.45107713565626,0,0,0,0,0,0,0,0,0,0,10.29134028327427,0,0,0,57.16,56.15,6,1,0,0,10,5,1,660.5,0,0,0 +13161,16138,29366,29368,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,4,8.872340169061298,8.728904459351078,0,2,0,-9,28,0,-5,90.04108595534896,0,0,0,55,1,4,1,2,2,2019,1,1,9,2,20,0,15,1,2,1,0,32.50528889018923,32.50528889018923,0,0,0,0,0,0,0,1,1,0,7.737709322864471,0,0,3,54.2,57.49,6,1,0,0,9,5,1,1023.666666666667,0,0,0 +13161,16138,29367,-9,29366,29368,4,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1018.114615132142,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,9,5,1,1023.666666666667,0,0,0 +13161,16138,29368,29366,-9,-9,1,1,1,55,1,0,1,0,1,-9,2,1,0,4,8.7165571696345,8.704016954597364,0,2,0,-9,28,0,5,-3.978944867358554,0,0,0,50,2,4,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,22.85625967384414,22.85625967384414,0,0,0,0,0,0,0,1,1,0,.6517144023289144,0,0,0,59.29,49.68,6,1,0,0,9,5,1,1023.666666666667,0,0,0 +13161,16139,29369,-9,29366,29368,3,1,0,19,2,0,1,1,2,0,7,2,0,4,4.862142668362577,4.332479157842676,0,3,0,0,0,-9,0,-1078.388218599548,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,9,2,1,2235,0,0,0 +13162,16140,29370,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,4,8.17110230850955,7.820890994804107,0,3,0,0,0,-9,0,-1078.619804138842,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,20,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,48.86,6,1,0,0,2,4,0,1805,0,0,0 +13163,16141,29371,29372,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,5,7.525817207799557,7.46486982405558,0,1,0,-9,49,0,1,121.1411660331154,0,0,0,67,3,2,3,3,3,2019,2,1,22,9,50,50,15,1,9,4,0,3.89983582289199,3.89983582289199,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.61,65.55,3,1,0,0,6,2,1,266,0,0,0 +13163,16141,29372,29371,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,5.678733668823992,5.820227439483265,1,0,-9,49,0,-1,-4.338252855171933,0,0,0,68,2,5,1,3,3,2019,3,2,14,2,0,16,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.958273500677428,0,0,32.62,36.55,3,1,0,0,6,2,1,266,0,0,0 +13164,16142,29373,29374,-9,-9,1,1,0,41,1,1,2,0,3,-9,3,3,0,1,0,0,0,2,0,-9,26,0,-3,0,0,0,1,44,2,4,3,-9,-9,2019,4,2,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.73,19.11,1,1,1,0,6,1,0,879.3333333333334,0,0,0 +13164,16142,29374,29373,-9,-9,2,1,1,44,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,26,0,3,0,0,0,0,41,3,1,3,2,2,2019,4,1,5,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.58182503368726,1,57.16,56.15,6,1,0,0,6,1,0,879.3333333333334,0,0,0 +13164,16142,29375,-9,29373,29374,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.5885922923779,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,1,0,879.3333333333334,0,0,0 +13165,16143,29376,29377,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,2,0,7.616775265872001,7.49575964098333,1,0,-9,5,0,4,-38.97210341716053,0,0,0,65,3,4,3,3,3,2019,4,2,12,2,0,38,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5539907166419926,7.627754311521158,0,0,56.17,35.45,4,1,0,0,9,2,1,1024,0,0,0 +13165,16143,29377,29376,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,5,0,-4,34.21026568937693,0,0,0,69,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5492339760797751,0,0,0,57.16,56.15,5,1,0,0,9,2,1,1024,0,0,0 +13166,16144,29378,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,-9,0,-9,0,-1042.90748688397,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,97,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125.9143892176482,3,57.33,53.46,6,4,0,0,5,1,0,409,0,0,0 +13167,16145,29379,29380,-9,-9,2,1,0,32,1,0,0,0,1,-9,8,3,1,1,0,0,0,1,0,-9,3,0,-6,57.96191753174298,0,0,1,38,1,5,1,-9,-9,2019,3,1,21,9,0,53,15,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,27.97,3,1,0,0,2,5,1,326,0,0,0 +13167,16145,29380,29379,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,5,9.571720223468709,9.147815860887423,0,1,0,-9,3,0,6,-137.0086269332987,0,0,0,32,1,1,3,2,2,2019,2,2,7,0,68,56,15,1,0,3,0,16.64849918604169,16.64849918604169,0,0,0,0,0,0,0,0,0,0,6.772635732647189,0,66.56861440050857,1,45.75,62.87,7,3,0,0,2,5,1,326,0,0,0 +13168,16146,29381,-9,-9,-9,3,1,0,21,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-988.4484974658207,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,30,12,0,38,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,15.9,52.8,2,1,1,1,9,1,1,382,0,0,0 +13169,16147,29382,29383,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,50,0,3,80.78188155739942,0,0,0,69,1,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.744114898927011,0,0,0,63.56,18.11,6,1,0,0,6,2,1,419,0,0,0 +13169,16147,29383,29382,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.645527195094409,7.448836624264167,1,0,-9,50,0,-3,-25.59209200889464,0,0,0,72,1,2,3,3,2,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.716350729741543,7.741087807590078,0,0,56.26,41.57,6,1,0,0,6,2,1,419,0,0,0 +13170,16148,29384,29385,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.80593965590158,7.86131720939326,1,0,-9,10,0,1,.2504376893432396,0,0,0,69,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.553507187408325,0,0,54.44,51.82,6,1,0,0,2,3,1,535,0,0,0 +13170,16148,29385,29384,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.377311534804744,7.191761546782199,1,0,-9,10,0,-1,-155.0935593774782,0,0,0,70,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.514472559052798,7.419044824489061,0,0,40.23,48.88,6,1,0,0,2,3,1,535,0,0,0 +13171,16149,29386,29387,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,4,8.042446678109222,8.206517135311218,0,1,0,-9,5,0,-3,80.66190412197832,0,0,0,51,1,3,1,1,1,2019,1,1,11,0,38,38,15,1,0,1,0,10.11498318990193,10.11498318990193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,6,1,0,0,11,5,1,667,0,0,0 +13171,16149,29387,29386,-9,-9,1,1,1,51,1,0,0,0,1,-9,1,1,0,3,9.120127416976397,8.895842241766303,0,1,0,-9,5,0,3,70.26847965690625,0,0,0,48,1,4,1,2,2,2019,1,2,8,0,50,70,15,1,0,1,0,19.17391215719826,19.17391215719826,0,0,0,0,0,0,0,0,0,0,.1739359008479816,0,0,0,57.33,53.46,6,1,0,0,11,5,1,667,0,0,0 +13171,16150,29388,-9,29386,29387,3,1,1,22,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-993.2162967909675,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,11,1,1,966,0,0,0 +13172,16151,29389,-9,-9,-9,1,1,0,21,2,0,0,1,1,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-879.6458894675583,-9,1,1,-9,-9,-9,-9,-9,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.24,6,1,0,0,7,1,0,269,0,0,0 +13173,16152,29390,29391,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,6.67180779587835,6.784464990953147,1,0,-9,6,0,4,103.0140256043436,0,0,0,68,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.529679347879586,6.953996262310993,0,0,54.02,37.2,6,1,0,0,9,2,1,516,0,0,0 +13173,16152,29391,29390,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.63716967095895,5.477918581134228,1,0,-9,48,0,-4,17.60764865085745,0,0,0,72,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.186614511038561,5.430087464514112,0,0,63.17,32.94,5,1,0,0,9,2,1,516,0,0,0 +13173,16153,29392,-9,29391,29390,3,1,1,41,3,0,0,0,2,-9,2,1,0,4,7.958755417073447,7.980131221827616,0,3,0,0,0,-9,0,-993.7869610168807,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,1,37,37,15,1,1,-9,1,9.11918113224197,9.11918113224197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,9,4,1,1146,0,0,0 +13174,16154,29393,29394,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,3,8.895837029641518,9.0671984473741,0,1,0,-9,7,0,6,-46.52061720076107,0,0,0,49,1,3,1,2,2,2019,1,2,13,1,37,41,15,1,1,1,0,25.60315522276563,25.60315522276563,0,0,0,0,0,0,0,0,0,0,7.141087951921326,0,0,0,54.37,54.8,6,1,0,0,2,5,1,333,0,0,0 +13174,16154,29394,29393,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,3,8.675410930685032,8.781620336161362,0,1,0,-9,7,0,-6,24.36195361359104,0,0,0,55,1,3,1,3,2,2019,1,1,18,6,49,47,15,1,6,1,0,12.85080585345849,12.85080585345849,0,0,0,0,0,0,0,0,0,0,3.613149446518514,0,0,0,43.12,58.55,4,1,0,0,2,5,1,333,0,0,0 +13175,16155,29395,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,3,8.521688731718637,8.662916121810657,0,3,0,0,0,-9,0,-1011.701659592549,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,40,15,1,0,-9,0,17.61798600769739,17.61798600769739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.07,56.45,6,1,0,0,7,5,0,863,0,0,0 +13176,16156,29396,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,1,0,6.538958458915997,6.638515703820344,3,0,0,0,-9,0,-906.5532375575089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,10.78312824230672,0,0,0,1,1,0,4.797305585536039,6.224473514438082,0,0,30.34,28.16,5,1,0,0,12,2,0,435,0,0,0 +13177,16157,29397,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1095.120811544093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.290772452546698,0,0,0,41.92,50.69,5,1,0,0,6,1,1,1537,0,0,0 +13178,16158,29398,29399,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,5,8.345803678720065,8.547959373366833,7.542931802383166,1,0,-9,29,0,8,19.51906552061126,0,0,0,55,2,4,1,3,2,2019,1,2,7,0,44,43,15,1,0,1,0,8.2594448779661,8.2594448779661,0,0,0,0,0,0,0,0,0,0,6.932633541798391,7.019402380429276,0,0,57.06,57.76,6,1,0,0,13,5,1,1022,0,0,0 +13178,16158,29399,29398,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,9.007041010960275,8.896877830604597,0,1,0,-9,29,0,-8,-23.0014520598744,0,0,0,63,3,5,1,3,3,2019,1,1,12,1,38,38,15,1,1,1,0,17.73005427143369,17.73005427143369,0,0,0,0,0,0,0,0,0,0,4.834965652760175,0,0,0,66.37,27.15,6,1,0,0,13,5,1,1022,0,0,0 +13178,16159,29400,-9,29399,29398,3,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.678663759060345,8.628725678826715,0,3,0,0,0,-9,0,-1040.331081528673,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,48,45,15,1,0,-9,1,12.51705300396663,12.51705300396663,0,0,0,0,0,0,0,0,0,0,4.266224066441614,0,0,0,51.49,57.57,6,1,0,0,13,5,1,1276,0,0,0 +13178,16160,29401,-9,29399,29398,4,1,0,20,2,0,0,1,2,0,7,2,0,4,7.004626931826209,7.091265206507722,0,3,0,0,0,-9,0,-1019.227033645472,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,4,1,0,0,13,2,1,1646,0,0,0 +13179,16161,29402,29403,-9,-9,2,1,1,41,1,1,2,0,2,-9,2,1,0,3,9.315488158058695,9.150921712659949,0,2,0,-9,14,0,3,221.173941740743,0,0,0,38,1,3,1,2,2,2019,1,1,8,1,60,50,15,1,1,1,0,14.83350459616547,14.83350459616547,0,0,0,0,0,0,0,0,0,0,3.757547217545185,0,0,0,53.08,52.64,5,1,0,0,7,5,1,634,0,0,0 +13179,16161,29403,29402,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,3,7.516194989855332,7.860123097393644,0,2,0,-9,15,0,-3,-78.08679259131164,0,0,1,41,2,3,1,2,1,2019,1,2,8,0,22,23,15,1,0,1,0,13.78144963695978,13.78144963695978,0,0,0,0,0,0,0,0,0,0,4.37283835037978,0,0,0,58.82,33.59,6,1,0,0,7,5,1,634,0,0,0 +13179,16161,29404,-9,29403,29402,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1036.412391304721,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,634,0,0,0 +13179,16161,29405,-9,29403,29402,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.681558294943,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,7,5,1,634,0,0,0 +13180,16162,29406,29407,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,3,8.092024907948725,8.078269599712426,0,1,0,-9,2,0,-3,-18.8284451604375,0,1,1,29,2,4,1,-9,-9,2019,1,1,22,7,37,37,15,1,7,1,0,9.577728236989724,9.577728236989724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.49,55.78,4,1,0,0,10,5,1,564,0,0,0 +13180,16162,29407,29406,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,4,8.254789998971827,8.400533607379247,0,1,0,-9,2,0,3,27.60726690888457,0,1,0,26,2,3,1,-9,-9,2019,1,2,8,0,45,40,15,1,0,1,0,12.23188195380116,12.23188195380116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,564,0,0,0 +13181,16163,29408,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,5,8.288628848777366,8.60694864238992,0,3,0,0,0,-9,0,-946.8883888632064,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,46,44,15,1,0,-9,1,14.39773335579729,14.39773335579729,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,6,1,0,0,12,5,1,289,0,0,0 +13182,16164,29409,29410,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.255494902646529,8.403867091205532,0,1,0,-9,2,0,-1,95.87372247107933,0,1,1,27,1,4,1,-9,-9,2019,1,1,17,5,37,37,15,1,5,1,0,14.51414507937544,14.51414507937544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.97,58.59,4,1,0,0,9,5,1,599.5,0,0,0 +13182,16164,29410,29409,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.5487952361801,8.668691971313113,0,1,0,-9,2,0,1,162.1723658727555,0,1,0,26,1,4,1,2,2,2019,1,2,12,3,40,43,15,1,3,1,0,15.86857688767837,15.86857688767837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,1,599.5,0,0,0 +13183,16165,29411,-9,-9,-9,1,1,0,69,2,0,0,0,2,-9,4,3,0,2,0,7.764244856978983,7.749418122561254,3,0,0,0,-9,0,-846.7379086251656,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.577108034231243,7.658138276546634,7.065681611306631,3,60.65,24.95,6,1,0,0,9,3,1,189,0,0,0 +13184,16166,29412,29413,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,60,0,-3,-26.31993252709116,0,0,0,76,3,5,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,7.029770254423105,0,0,0,0,1,1,0,0,0,0,0,46.96,18.26,1,1,0,0,11,2,0,161.5,0,0,0 +13184,16166,29413,29412,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,5,0,6.100381892106136,5.695034554601076,1,0,-9,60,0,3,33.60964924799573,0,0,0,73,3,2,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.978625651830026,32.45419664100258,1,62.39,56.71,7,1,0,0,11,2,0,161.5,0,0,0 +13185,16167,29414,-9,-9,-9,1,1,0,63,2,0,0,0,1,-9,2,1,0,3,7.874238781140292,7.969876967784437,0,3,0,0,0,-9,0,-1033.125867242668,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,17,18,15,1,0,-9,0,19.96908335195635,19.96908335195635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,51.16,5,4,0,0,4,3,0,665,0,0,0 +13185,16168,29415,-9,29414,-9,2,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.049731902394924,6.827695873569525,0,3,0,0,0,-9,0,-916.951366234267,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,9,2,20,15,1,9,-9,1,55.5453113218184,55.5453113218184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.64,54.12,3,4,0,1,4,2,0,463,0,0,0 +13186,16169,29416,-9,-9,-9,1,1,0,23,2,0,0,1,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-922.6317751696214,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,7,1,0,0,8,1,0,1086,0,0,0 +13187,16170,29417,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,5.954654727975723,5.941517851188724,3,0,0,0,-9,0,-926.2597834568056,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.638273201170339,0,0,39.72,27.69,3,1,0,0,5,2,1,1083,0,0,0 +13187,16171,29418,-9,29417,-9,2,1,0,43,2,0,0,0,2,-9,1,1,0,3,6.657116267624174,6.672625229970976,0,3,0,0,0,-9,0,-962.8778168535899,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,55,60,15,1,0,-9,1,1.438757014160881,1.438757014160881,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.4,47.17,5,1,0,0,5,2,1,328,0,0,0 +13188,16172,29419,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,5.879153789963894,6.007238581194608,3,0,0,0,-9,0,-969.7971001671075,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.774353592589434,5.979545074717496,0,0,52,46,6,1,0,0,9,2,0,267,0,0,0 +13189,16173,29420,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,4,0,6.865130743613064,6.713287724061143,3,0,0,0,-9,0,-982.3580890532035,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.951932877197221,12.44322739948493,3,57.16,56.15,7,1,0,0,7,2,1,510,0,0,0 +13190,16174,29421,29422,-9,-9,1,1,1,48,1,0,0,0,1,-9,1,1,0,4,9.82714324674564,9.661672073029008,0,1,0,-9,21,0,1,-26.2959506028557,0,0,0,47,1,3,1,2,2,2019,1,2,8,1,36,40,15,1,1,1,0,44.15791395021453,44.15791395021453,0,0,0,0,0,0,0,0,0,0,5.017790870766102,0,0,0,57.16,56.15,6,1,0,0,8,5,1,327,0,0,0 +13190,16174,29422,29421,-9,-9,2,1,0,47,1,0,0,0,1,-9,2,1,0,3,9.209806218572119,9.270360883024734,0,1,0,-9,21,0,-1,59.91055035984242,0,0,0,48,1,4,1,3,3,2019,1,1,12,0,2,50,15,1,0,1,0,560.714180146158,560.714180146158,0,0,0,0,0,0,0,0,0,0,4.718386602348073,0,0,0,43.09,39.67,6,3,0,0,8,5,1,327,0,0,0 +13191,16175,29423,29424,-9,-9,2,1,0,29,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,8,0,0,-36.80454176497387,0,1,1,29,1,5,1,-9,-9,2019,3,1,24,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,44.97,6,1,1,0,8,4,0,2061.5,0,0,0 +13191,16175,29424,29423,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,5,8.495785278967803,8.586274328297192,0,1,0,-9,8,0,0,-34.29522210602511,0,1,0,29,2,2,3,1,1,2019,2,2,22,11,40,40,15,1,11,3,0,15.91755212224516,15.91755212224516,0,0,0,0,0,0,0,0,0,0,0,0,25.1432653341499,1,27.71,67.3,4,1,0,0,8,4,0,2061.5,0,0,0 +13191,16176,29425,-9,-9,-9,3,1,0,21,2,0,0,0,1,1,2,1,0,4,8.223236562623288,7.796634581965209,5.495470504400901,3,0,0,0,-9,0,-1179.120781601925,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,7,39,0,15,1,7,-9,0,7.882909266469023,7.882909266469023,0,0,0,0,0,0,0,0,0,0,4.489652318202536,0,0,0,36.79,57.48,3,1,0,0,8,4,0,2056,0,0,0 +13192,16177,29426,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,3,6.968149339520206,7.364042263965832,5.782451129199485,3,0,0,0,-9,0,-1067.164859765071,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,15,15,15,1,0,-9,0,8.360426252736168,8.360426252736168,0,0,0,0,0,0,0,1,1,0,0,5.538597371920274,0,0,54.96,53.17,6,1,0,0,4,3,1,448,0,0,0 +13193,16178,29427,-9,29428,29429,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.2830348567513,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,2,1,669.6666666666666,0,0,0 +13193,16178,29428,29429,-9,-9,2,1,0,35,1,1,1,0,1,-9,1,1,0,5,6.856374940736237,6.896322927193966,0,2,0,-9,7,0,-10,-32.04465976889835,0,0,1,45,1,4,1,-9,-9,2019,1,1,7,2,40,40,15,1,2,1,0,3.136230401158522,3.136230401158522,0,0,0,0,0,0,0,1,1,0,2.774453588721937,0,0,0,57.06,57.76,6,1,0,0,8,2,1,669.6666666666666,0,0,0 +13193,16178,29429,29428,-9,-9,1,1,1,45,1,1,1,0,1,-9,1,1,0,4,0,0,0,2,0,-9,7,0,10,73.75276088774591,0,0,0,35,1,5,1,1,1,2019,1,2,8,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.700777491839804,0,0,0,51.24,58.84,7,1,0,0,8,2,1,669.6666666666666,0,0,0 +13194,16179,29430,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,2,1,0,4,9.419878258976787,9.764486567656464,8.985399185497991,3,0,0,0,-9,0,-994.9834410316413,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,55,50,15,1,0,-9,0,27.06043470215581,27.06043470215581,0,0,0,0,0,0,0,0,0,0,8.938035878371565,9.452595913661701,0,3,60.52,53.2,5,1,0,0,8,5,1,1932,0,0,0 +13195,16180,29431,29432,-9,-9,1,1,0,57,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,3,0,1,40.96057661921213,0,0,0,56,3,1,1,3,3,2019,3,3,21,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.64916391248222,3,17.16,45.11,4,1,0,0,5,3,1,287,0,0,0 +13195,16180,29432,29431,-9,-9,3,1,1,56,1,0,0,0,3,-9,2,1,0,1,7.554717061612786,7.679908882097003,0,1,0,-9,3,0,-1,106.5919319755118,0,0,0,57,3,2,3,-9,-9,2019,2,1,14,2,40,40,15,1,2,3,0,5.197857740477935,5.197857740477935,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.72,25.62,4,1,0,0,5,3,1,287,0,0,0 +13195,16180,29433,-9,-9,29432,2,1,0,15,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1000.607023289975,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,287,0,0,0 +13196,16181,29434,29435,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,3,8.141099921488241,8.069545853960143,0,1,0,-9,10,0,-14,-37.94659109074728,0,0,0,70,2,4,3,2,1,2019,2,1,9,0,37,37,15,1,0,4,0,9.205690725508694,9.205690725508694,0,0,0,0,0,0,0,1,1,0,4.622642358233597,0,.5483583214776504,3,50.91,46.91,7,1,0,0,10,4,0,931.5,0,0,0 +13196,16181,29435,29434,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,7.078806025476668,7.479720997180507,1,0,-9,10,0,14,7.460547997111371,0,0,0,56,3,3,1,2,2,2019,3,2,15,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.990653052832505,7.313463200917912,.0857457666232158,3,51.5,50.45,6,1,0,0,10,4,0,931.5,0,0,0 +13197,16182,29436,29437,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,4,8.491723007025879,8.476197579035693,6.978490818272514,2,0,-9,28,0,-1,66.91439135129426,0,0,0,54,3,2,3,2,3,2019,2,1,15,4,37,48,15,1,4,3,0,16.9471698880757,16.9471698880757,0,0,0,0,0,0,0,1,1,0,0,6.930712196920852,0,0,40.38,59.14,3,1,0,0,2,4,1,766,0,0,0 +13197,16182,29437,29436,-9,-9,1,1,0,54,1,0,1,0,3,-9,8,3,1,2,0,0,0,2,0,-9,28,0,1,62.71128114626389,0,0,0,53,2,4,1,2,3,2019,3,2,23,10,0,3,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.42326736778843,3,42.96,19.78,6,1,0,0,2,4,1,766,0,0,0 +13197,16183,29438,-9,29437,29436,3,1,1,21,2,0,1,0,2,-9,2,1,0,5,7.773546012180955,7.985805405808728,0,3,0,0,0,-9,0,-979.8255706366416,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,60,60,15,1,0,-9,1,5.509754932160789,5.509754932160789,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,4,1,0,0,2,3,1,888,0,0,0 +13197,16184,29439,-9,29437,29436,4,1,1,20,2,0,1,0,2,-9,2,1,0,5,7.522605218184704,7.803063315187455,0,3,0,0,0,-9,0,-1005.488107297657,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,30,40,15,1,1,-9,1,8.504203713352409,8.504203713352409,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,2,3,1,206,0,0,0 +13197,16185,29440,-9,29437,29436,5,1,0,18,2,0,1,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-925.7151074580805,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,1,0,2,4,1,576,0,0,0 +13198,16186,29441,29442,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,3,7.442392281858094,8.257457787216717,7.988940871151749,1,0,-9,10,0,0,43.91522864501452,0,0,0,54,1,5,3,2,3,2019,2,2,6,0,48,29,15,1,0,3,0,4.151922432731939,4.151922432731939,0,0,0,0,0,0,0,0,0,0,3.243630982241851,8.053813669407011,0,0,57.33,53.46,6,1,0,0,13,4,1,880,0,0,0 +13198,16186,29442,29441,-9,-9,2,1,0,54,1,0,0,0,1,-9,97,3,0,5,0,0,0,1,0,-9,10,0,0,57.50246745646908,0,0,0,54,2,3,1,2,2,2019,3,1,7,0,0,6,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.237972669199455,0,0,0,62.39,56.71,6,1,0,0,13,4,1,880,0,0,0 +13198,16187,29443,-9,29442,29441,3,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.552715252978823,8.567288040097804,0,3,0,0,0,-9,0,-850.1031106439174,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,4,38,39,15,1,4,-9,1,13.99568316399994,13.99568316399994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,4,1,0,0,13,4,1,221,0,0,0 +13198,16188,29444,-9,29442,29441,4,1,1,23,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-978.7950845275052,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,3,0,40,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.43,39.68,5,1,1,0,13,1,1,168,0,0,0 +13198,16189,29445,-9,29442,29441,5,1,1,20,2,0,0,1,2,0,7,2,0,5,6.646368918026522,6.414921085525283,0,3,0,0,0,-9,0,-1051.927247417206,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,11,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,7,1,0,0,13,2,1,442,0,0,0 +13199,16190,29446,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,5.847537881464547,6.114568966248618,3,0,0,0,-9,0,-1026.430815385796,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.389919677648082,5.567535035840665,0,0,53,44,5,1,0,0,11,2,1,1306,0,0,0 +13200,16191,29447,-9,29449,29448,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-983.9770414564409,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,3,1,1152.333333333333,0,0,0 +13200,16191,29448,29449,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,5,0,0,0,2,0,-9,8,0,0,2.787857357990793,0,0,0,30,2,4,1,1,2,2019,1,1,8,0,0,55,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.65,52.89,6,1,0,0,12,3,1,1152.333333333333,0,0,0 +13200,16191,29449,29448,-9,-9,1,1,0,30,1,1,1,0,2,-9,5,1,0,4,8.008712943360571,8.359837584744282,0,2,0,-9,8,0,0,12.54552001685097,0,0,1,30,2,5,1,2,3,2019,1,2,6,0,37,40,15,1,0,1,0,12.44906122313224,12.44906122313224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,12,3,1,1152.333333333333,0,0,0 +13201,16192,29450,-9,-9,-9,1,1,0,97,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-948.0575804998977,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,9.408077897953925,0,1,1,0,0,0,0,0,53.05,18.38,6,1,0,0,11,1,0,382,0,0,0 +13202,16193,29451,29454,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,5,8.345251718410184,8.384689399040573,0,2,0,-9,8,0,0,-20.89832692437561,0,0,1,37,1,5,1,-9,-9,2019,1,1,7,0,28,28,15,1,0,1,0,17.03351958077146,17.03351958077146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,13,5,1,811.25,0,0,0 +13202,16193,29452,-9,29451,29454,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.704036359954,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,811.25,0,0,0 +13202,16193,29453,-9,29451,29454,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.837033866253,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,5,1,811.25,0,0,0 +13202,16193,29454,29451,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,5,9.325745097687241,9.619627337246186,0,2,0,-9,8,0,0,-27.77403030273858,0,0,0,37,2,5,1,2,2,2019,1,2,9,0,40,45,15,1,0,1,0,34.65074176502191,34.65074176502191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.53,61.33,6,1,0,0,13,5,1,811.25,0,0,0 +13203,16194,29455,29458,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.959947600295587,8.964910714892977,0,2,0,-9,7,0,-2,66.19186617053151,0,0,1,45,1,2,1,3,3,2019,1,1,5,0,80,35,15,1,0,1,0,9.062960204497609,9.062960204497609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,6,5,1,745,0,0,0 +13203,16194,29456,-9,29455,29458,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.79468833623,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,745,0,0,0 +13203,16194,29457,-9,29455,29458,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-842.849386024249,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,5,1,745,0,0,0 +13203,16194,29458,29455,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,2,9.4835287683019,9.659484920814288,0,2,0,-9,16,0,2,23.82713417711986,0,0,0,43,1,4,1,2,2,2019,1,2,24,12,50,43,15,1,12,1,0,26.54198793159783,26.54198793159783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.6,45.89,4,1,0,0,6,5,1,745,0,0,0 +13204,16195,29459,-9,29461,29463,4,1,1,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1065.14100554174,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,6,4,1,1117.8,0,0,0 +13204,16195,29460,-9,29461,29463,3,1,1,16,2,0,3,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1056.773613789761,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,5,1,0,0,6,4,1,1117.8,0,0,0 +13204,16195,29461,29463,-9,-9,1,1,0,43,1,0,3,0,1,-9,2,1,0,3,7.882119221639813,7.97970849840041,0,2,0,-9,23,0,-1,-61.98262570913472,0,0,1,44,1,4,1,3,3,2019,1,2,12,1,25,10,15,1,1,1,0,16.41076317112763,16.41076317112763,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.28,36.12,4,1,0,0,6,4,1,1117.8,0,0,0 +13204,16195,29462,-9,29461,29463,5,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1020.90956162571,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,4,1,1117.8,0,0,0 +13204,16195,29463,29461,-9,-9,2,1,1,44,1,0,3,0,1,-9,2,1,0,4,9.089876168244832,8.98631979431447,0,2,0,-9,23,0,1,-13.24246757696202,0,0,0,43,1,3,1,2,1,2019,1,1,11,0,50,60,15,1,0,1,0,18.73190320809821,18.73190320809821,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,4,1,0,0,6,4,1,1117.8,0,0,0 +13205,16196,29464,29467,-9,-9,1,1,1,30,1,2,2,0,3,-9,2,1,0,5,7.42792750356448,7.758967719039736,0,2,0,-9,6,0,0,92.91196423588899,0,0,0,30,1,2,3,3,2,2019,2,2,9,0,39,39,15,1,0,3,0,5.433222696306682,5.433222696306682,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,41.42,4,1,0,0,13,2,0,733.75,0,0,0 +13205,16196,29465,-9,29467,29464,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1175.727092323066,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,2,0,733.75,0,0,0 +13205,16196,29466,-9,29467,29464,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.709832955408,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,0,733.75,0,0,0 +13205,16196,29467,29464,-9,-9,2,1,0,30,1,2,2,0,1,-9,6,3,0,2,0,0,0,2,0,-9,6,0,0,-23.36712214514964,0,0,1,30,3,5,1,2,3,2019,3,1,13,1,0,20,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.06,38.71,5,1,0,0,13,2,0,733.75,0,0,0 +13206,16197,29468,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1092.335813804078,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5903744663528103,0,0,0,64.37,44.69,6,1,0,0,6,1,1,463,0,0,0 +13207,16198,29469,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,5.796027362871228,6.062837762841071,3,0,0,0,-9,0,-1039.206672700985,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.828265470971141,5.764899101513324,0,0,52.75,47.35,7,1,0,0,7,2,1,460,0,0,0 +13208,16199,29470,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,2,0,7.484080121202282,7.703626430927923,3,0,0,0,-9,0,-959.8071443560841,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.427235366466203,7.696530922355554,0,0,58.41,41.06,2,1,0,0,5,3,1,457,0,0,0 +13209,16200,29471,29472,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,3,8.828205816935904,8.798481537562637,0,1,0,-9,28,0,2,103.8062282518098,0,0,0,51,2,3,3,2,2,2019,2,1,18,6,44,50,15,1,6,3,0,27.7176339255512,27.7176339255512,0,0,0,0,0,0,0,0,0,0,4.850798888034999,0,0,0,33,50.9,2,1,0,1,6,5,1,1132,0,0,0 +13209,16200,29472,29471,-9,-9,1,1,0,51,1,0,0,0,2,-9,97,3,0,3,0,0,0,1,0,-9,29,0,-2,-33.31123605531864,0,0,0,53,1,3,1,2,2,2019,3,2,25,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.315894301882275,0,0,0,35.31,54.01,4,1,0,1,6,5,1,1132,0,0,0 +13209,16201,29473,-9,29472,29471,3,1,0,23,2,0,0,1,1,0,7,2,0,3,5.1614632124491,5.311514224501164,0,3,0,0,0,-9,0,-887.4679422437583,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,20,6,1,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.288078007970828,0,0,0,32.08,58.42,4,1,0,0,6,2,1,325,0,0,0 +13209,16202,29474,-9,29472,29471,4,1,0,20,2,0,0,1,2,0,7,2,0,3,7.488231239299582,7.570343258584187,0,3,0,0,0,-9,0,-1098.038222625842,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,26,10,20,0,15,2,10,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.0914080729985849,0,0,0,29.31,54,4,1,0,0,6,3,1,840,0,0,0 +13210,16203,29475,-9,29476,29477,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.949923241913,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,1,721.75,0,0,0 +13210,16203,29476,29477,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,3,6.758064642640266,6.500835643304799,0,2,0,-9,10,0,1,4.429028320185646,0,0,1,41,2,4,1,3,3,2019,1,2,2,0,15,15,15,1,0,1,0,7.016428778753564,7.016428778753564,0,0,0,0,0,0,0,0,0,0,.5879235047775395,0,0,0,50.51,53.71,6,1,0,0,8,5,1,721.75,0,0,0 +13210,16203,29477,29476,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,9.854246830319145,9.664719926152115,0,2,0,-9,9,0,-1,38.07946134575224,0,0,0,42,1,3,1,2,2,2019,1,1,7,0,45,52,15,1,0,1,0,36.73907102059729,36.73907102059729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,56.95,6,1,0,0,8,5,1,721.75,0,0,0 +13210,16203,29478,-9,29476,29477,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1112.337409052561,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,8,5,1,721.75,0,0,0 +13211,16204,29479,29480,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,4,7.364325555530165,7.29504949281296,4.817529646136879,1,0,-9,40,0,-1,-15.33721222948879,0,0,0,64,1,3,1,3,2,2019,1,1,12,0,20,22,15,1,0,1,0,7.327712351805895,7.327712351805895,0,0,0,0,0,0,0,0,0,0,6.183446231394954,5.151035953707504,0,0,46.9,56.66,2,1,0,0,5,3,0,1242.5,0,0,0 +13211,16204,29480,29479,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,3,0,6.421144170882924,6.356626111617599,1,0,-9,40,0,1,-80.37155436113017,0,0,0,63,2,4,1,2,3,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.445058433457424,6.91942317044743,0,0,57.33,53.46,6,1,0,0,5,3,0,1242.5,0,0,0 +13212,16205,29481,29482,-9,-9,2,1,0,75,1,0,0,0,1,-9,4,3,0,3,0,5.592338351020022,5.878588960067729,1,0,-9,50,0,-7,-63.76837918312373,0,0,0,82,2,3,3,1,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.273353363488147,5.532967823042077,0,0,54.26,30.29,6,1,0,0,7,2,1,729.5,0,0,0 +13212,16205,29482,29481,-9,-9,1,1,1,82,1,0,0,0,2,-9,4,3,0,3,0,7.174398251527868,7.114611660383163,1,0,-9,50,0,7,148.4232194095079,0,0,0,75,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.954417859121019,6.939825311448446,0,0,55.53,51.55,6,1,0,0,7,2,1,729.5,0,0,0 +13212,16206,29483,-9,29481,29482,3,1,1,36,2,0,0,0,2,-9,2,1,0,3,8.019149117387109,7.918110138040136,0,3,0,0,0,-9,0,-974.180810407197,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,37,37,15,1,0,-9,1,8.322792720410151,8.322792720410151,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.07,49.95,6,1,0,0,7,4,1,186,0,0,0 +13213,16207,29484,29485,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,3,0,0,-40.93513837431916,0,0,0,60,2,4,3,1,1,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.820025772577598,0,14.46355551876388,3,49.18,50.53,6,1,0,0,10,5,1,661,0,0,0 +13213,16207,29485,29484,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,4,0,9.237709372611839,9.190786648620083,1,0,-9,3,0,0,54.25147837336345,0,0,0,60,2,5,3,2,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.009544570620036,9.06733873379962,7.002018862047701,3,47.2,58.1,6,1,0,0,10,5,1,661,0,0,0 +13214,16208,29486,29487,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,3,0,7.128988761241523,7.139707916499408,1,0,-9,6,0,-2,16.55416448456262,0,0,0,60,2,4,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.526054112318423,7.016892249251226,25.88332505876612,3,66.37,38.36,7,1,0,0,4,5,1,240,0,0,0 +13214,16208,29487,29486,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,4,8.952112341548988,8.928273512398365,0,1,0,-9,6,0,2,99.29338524771279,0,0,0,58,2,3,3,-9,-9,2019,2,2,10,0,30,0,15,1,0,4,0,28.83774506024636,28.83774506024636,0,0,0,0,0,0,0,0,0,0,5.40442699992159,0,0,0,67.19,35.11,5,1,0,0,4,5,1,240,0,0,0 +13215,16209,29488,29490,-9,-9,2,1,1,28,1,1,2,0,1,-9,2,1,0,3,8.922472577518656,8.963357169673117,0,2,0,-9,3,0,-2,36.07382620107892,-9,1,0,30,1,5,1,-9,-9,2019,1,1,12,3,51,0,15,1,3,1,0,15.08430610699567,15.08430610699567,0,0,0,0,0,0,0,1,1,0,7.407439294582031,0,0,0,43.12,58.55,5,1,0,0,7,4,1,597,0,0,0 +13215,16209,29489,-9,29490,29488,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.623328787595,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,7,4,1,597,0,0,0 +13215,16209,29490,29488,-9,-9,1,1,0,30,1,1,2,0,1,-9,1,1,0,5,0,.1992539167676578,0,2,0,-9,3,0,2,-34.1824775542422,-9,0,1,28,1,3,1,1,1,2019,1,2,8,0,60,0,15,1,0,1,0,.0003031892220402,.0003031892220402,0,0,0,0,0,0,0,1,1,0,2.644366650332493,0,0,0,37.52,63.91,6,3,0,0,7,4,1,597,0,0,0 +13215,16209,29491,-9,29490,29488,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.7465206387342,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,7,4,1,597,0,0,0 +13216,16210,29492,29493,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,4,0,5.801359489696363,6.087878188346251,1,0,-9,8,0,8,77.09980938788078,0,0,0,65,2,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.050611907717597,0,0,57.16,56.15,6,1,0,0,12,2,1,3112,0,0,0 +13216,16210,29493,29492,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-8,-101.9929451529409,0,0,0,73,3,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,39.68,50.64,4,1,0,0,12,2,1,3112,0,0,0 +13217,16211,29494,29496,-9,-9,2,1,1,31,1,1,2,0,2,-9,2,1,0,4,8.941564936325481,8.557343468117526,0,2,0,-9,6,0,-4,-83.53625636495889,0,0,0,35,2,5,1,-9,-9,2019,1,1,10,0,0,45,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,1,0,0,2,5,1,860.5,0,0,0 +13217,16211,29495,-9,29496,29494,4,1,0,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.4908651710589,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,2,5,1,860.5,0,0,0 +13217,16211,29496,29494,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,5,8.054942896859181,7.713867571035284,0,2,0,-9,13,0,4,-126.015769907433,0,0,1,31,2,4,1,2,3,2019,1,2,4,0,30,25,15,1,0,1,0,10.30222255591907,10.30222255591907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,2,5,1,860.5,0,0,0 +13217,16211,29497,-9,29496,29494,5,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.78940673686,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,5,1,860.5,0,0,0 +13218,16212,29498,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-932.4639603887387,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,6,1,0,740,0,0,0 +13219,16213,29499,29500,-9,-9,5,1,0,50,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,31,0,-1,0,0,0,0,51,3,2,3,3,-9,2019,4,1,26,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.4,29.03,5,3,0,1,9,1,1,1199,0,0,0 +13219,16213,29500,29499,-9,-9,1,1,1,51,1,0,2,0,3,-9,8,3,1,2,0,0,0,2,0,-9,31,0,1,0,0,0,0,50,3,1,3,-9,-9,2019,4,5,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.4723635076228,1,34.06,38.71,2,3,0,0,9,1,1,1199,0,0,0 +13219,16213,29501,-9,29499,29500,3,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1005.992489372022,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,9,1,1,1199,0,0,0 +13219,16214,29502,-9,29499,29500,2,1,0,20,2,0,2,0,2,-9,2,1,0,5,7.443208540442858,7.741802719663459,0,3,0,0,0,-9,0,-899.164338365601,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,38,38,15,1,0,-9,1,5.238807227566567,5.238807227566567,0,0,0,0,0,0,0,1,1,0,0,0,9.411443762650894,3,56.47,59.4,7,3,0,0,9,3,1,2025,0,0,0 +13219,16215,29503,-9,29499,29500,6,1,1,18,2,0,2,1,2,0,7,2,0,5,0,4.736478714411347,5.059858703699164,3,0,0,0,-9,0,-920.2869234155713,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.950453001612268,0,123.0651155360489,3,56.47,59.4,7,3,0,0,9,3,1,373,0,0,0 +13219,16216,29504,29505,29499,29500,4,1,0,23,1,0,2,0,2,-9,2,1,0,4,6.555106246955968,6.718918925447078,0,2,0,1,1,-9,-1,8.534005656893608,0,1,1,24,3,4,1,3,3,2019,1,10,12,0,20,12,15,1,0,1,0,3.392876109633725,3.392876109633725,0,0,0,0,0,0,0,1,1,0,0,0,77.02276946822363,3,38.98,44.11,4,3,0,0,9,2,1,391.5,0,0,0 +13219,16216,29505,29504,-9,-9,10,1,1,24,1,0,2,0,3,-9,2,1,0,4,7.497397132827294,7.378230023247386,0,2,0,-9,1,-9,1,9.966809674788221,-9,1,0,23,2,4,1,-9,-9,2019,1,4,5,0,40,0,15,1,0,1,0,5.118592986207432,5.118592986207432,0,0,0,0,0,0,0,1,1,0,0,0,.3570434907657445,3,70.39,40.52,7,3,0,0,9,2,1,391.5,0,0,0 +13219,16217,29506,-9,-9,29508,7,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.149542093213,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,9,3,1,974.6666666666666,0,0,0 +13219,16217,29507,29508,29499,29500,8,1,0,24,1,0,2,0,3,-9,2,1,0,2,7.539522631970153,7.43216089037694,0,2,0,-9,3,0,-2,-105.6282260231478,0,1,1,26,2,4,1,3,3,2019,1,9,15,3,10,35,15,1,3,1,0,17.43983283341797,17.43983283341797,0,0,0,0,0,0,0,1,1,0,0,0,34.60842918650017,3,42.35,33.61,4,3,0,0,9,3,1,974.6666666666666,0,0,0 +13219,16217,29508,29507,-9,-9,9,1,1,26,1,0,2,0,2,-9,2,1,0,4,7.673427828961712,8.027222077241476,0,2,0,-9,3,0,2,288.115951879766,0,1,0,24,3,2,1,-9,-9,2019,1,8,4,1,48,0,15,1,1,1,0,4.773590864692191,4.773590864692191,0,0,0,0,0,0,0,1,1,0,0,0,77.26351343633866,1,41.17,59.31,7,3,0,0,9,3,1,974.6666666666666,0,0,0 +13220,16218,29509,29510,-9,-9,2,1,0,33,1,0,1,0,1,-9,2,1,0,4,8.043297800747952,8.149762329425856,0,2,0,-9,7,0,-1,-96.38279803799944,0,0,1,34,1,4,1,2,2,2019,1,1,9,2,24,25,15,1,2,1,0,13.49486696948807,13.49486696948807,0,0,0,0,0,0,0,1,1,0,1.758131060742743,0,0,0,48.53,58.91,6,1,0,0,1,4,1,919.3333333333334,0,0,0 +13220,16218,29510,29509,-9,-9,1,1,1,34,1,0,1,0,1,-9,2,1,0,4,8.725527060026955,8.413452864835341,0,2,0,-9,7,0,1,-59.71077583166181,0,0,0,33,1,4,1,1,1,2019,1,2,7,0,47,47,15,1,0,1,0,12.78285139232615,12.78285139232615,0,0,0,0,0,0,0,1,1,0,6.635452858555455,0,0,0,52.02,57.3,7,1,0,0,1,4,1,919.3333333333334,0,0,0 +13220,16218,29511,-9,29509,29510,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.017949895221,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,919.3333333333334,0,0,0 +13221,16219,29512,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1218.740536177074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,0,0,15,4,2,-9,0,0,0,1,8.132711963052639,0,0,0,0,0,1,1,0,7.180135452758179,0,0,0,56.31,20.2,5,1,0,0,9,1,0,387,0,0,0 +13222,16220,29513,-9,-9,-9,1,1,1,65,2,0,0,0,1,-9,1,1,0,4,2.378666947830411,2.394791320874952,0,3,0,-9,0,-9,0,-975.1156366763803,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,40,0,15,1,11,-9,0,.0248574371596703,.0248574371596703,1,0,0,0,0,0,0,0,0,0,8.170347273298399,0,5.079630303017118,3,33.81,63.92,4,1,0,0,6,2,1,494,0,0,0 +13223,16221,29514,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,3.941104566136703,4.140648516947293,3,0,0,0,-9,0,-979.297656709461,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,6.759771416649948,0,0,0,1,1,0,2.743158913433156,3.877831872348049,0,0,56.6,23.1,5,1,0,0,11,2,0,198,0,0,0 +13224,16222,29515,29517,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,4,7.011620105743188,6.852006053332063,0,2,0,-9,25,0,-6,98.37993794305119,0,0,1,48,1,2,3,2,2,2019,2,2,10,0,15,0,15,1,1,3,0,8.508922019165135,8.508922019165135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,6,3,0,0,8,2,0,1045,0,0,0 +13224,16222,29516,-9,29515,29517,4,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.5834523379136,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,1045,0,0,0 +13224,16222,29517,29515,-9,-9,2,1,1,48,1,0,1,0,1,-9,6,3,0,2,0,0,0,2,0,-9,25,0,6,-70.70117969232849,0,0,0,42,2,4,1,2,1,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.73462327269348,1,65.62,37.83,6,3,0,0,8,2,0,1045,0,0,0 +13224,16223,29518,-9,29515,29517,3,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1011.137846095328,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.67930973000616,3,54.2,57.49,7,3,0,0,8,1,0,3463,0,0,0 +13225,16224,29519,29520,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,5,148.6983844058274,0,0,0,64,2,3,1,-9,-9,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.948580041474127,0,0,0,53,47,5,1,0,0,1,4,1,475.5,0,0,0 +13225,16224,29520,29519,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,3,8.221277889402236,8.283986598024381,7.120321324252969,1,0,-9,47,0,-5,30.73854313960159,0,0,0,69,3,3,3,3,3,2019,2,2,9,0,24,24,15,1,0,4,0,16.06966254829833,16.06966254829833,0,0,0,0,0,0,0,1,1,0,4.002983928945651,7.361966834860095,2.49357932186057,3,58.32,50.22,6,1,0,0,1,4,1,475.5,0,0,0 +13226,16225,29521,29522,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,4,8.344232959381747,8.499390372356995,0,2,0,-9,13,0,-5,46.40291937564505,0,0,0,47,2,2,1,2,2,2019,1,2,9,0,42,40,15,1,0,1,0,10.84990486722092,10.84990486722092,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,58.37,2,1,0,0,7,4,1,601.3333333333334,0,0,0 +13226,16225,29522,29521,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,2,8.016305426597318,7.96484474833761,0,2,0,-9,13,0,5,5.266514620834217,0,0,0,42,2,4,1,3,3,2019,1,1,15,5,38,38,15,1,5,1,0,9.921020309051199,9.921020309051199,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.94,49.91,1,4,0,0,7,4,1,601.3333333333334,0,0,0 +13226,16225,29523,-9,29522,29521,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-887.182625551657,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,7,4,1,601.3333333333334,0,0,0 +13227,16226,29524,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1079.252279908729,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.68892806081325,3,44.42,29.96,3,1,0,1,7,1,0,146,0,0,0 +13228,16227,29525,-9,29526,29527,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.6172654856722,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,961.75,0,0,0 +13228,16227,29526,29527,-9,-9,2,1,0,38,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,20,0,-8,61.36056081212392,0,0,1,46,1,4,1,3,3,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,6,3,1,961.75,0,0,0 +13228,16227,29527,29526,-9,-9,1,1,1,46,1,0,3,0,1,-9,2,1,0,4,8.522261817277121,8.59385718712608,0,2,0,-9,20,0,8,113.2788352911284,0,0,0,38,2,4,3,3,3,2019,2,2,9,0,37,37,15,1,1,3,0,15.10131251116587,15.10131251116587,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,6,3,1,961.75,0,0,0 +13228,16227,29528,-9,29526,29527,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.984575088428,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,3,1,961.75,0,0,0 +13229,16228,29529,29530,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,1,0,7.928474822219568,7.989026556991483,1,0,-9,6,0,10,56.2182657366188,0,0,0,61,2,5,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.720572337015319,7.848677597377652,0,0,46.34,27.58,4,1,0,0,12,4,1,384,0,0,0 +13229,16228,29530,29529,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,7.401301648901407,7.54750755922226,1,0,-9,6,0,-10,39.87147225129993,0,0,0,71,2,1,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.661864497584831,7.486162646471069,0,2,40.61,64.02,6,1,0,0,12,4,1,384,0,0,0 +13230,16229,29531,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,8.372545858427078,8.153696447772463,3,0,0,0,-9,0,-950.4693845542876,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.642381511811695,8.405499334667317,0,0,60.87,42.1,6,1,0,0,9,4,1,225,0,0,0 +13231,16230,29532,-9,-9,-9,1,1,0,41,3,0,2,0,1,-9,2,1,0,2,6.412261390907522,6.3009943875908,0,4,0,0,0,-9,0,-836.6420331299063,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,22,8,40,0,15,1,8,-9,0,1.396237820521121,1.396237820521121,0,0,0,0,0,0,0,1,1,0,0,0,34.45070055428547,3,37.59,30.22,3,5,0,1,6,2,1,327,0,0,0 +13231,16230,29533,-9,29532,-9,3,1,0,17,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1131.426920872054,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.25,53.5,6,5,0,0,6,2,1,327,0,0,0 +13231,16230,29534,-9,29532,-9,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-965.3775821280083,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,5,0,0,6,2,1,327,0,0,0 +13232,16231,29535,-9,29538,29536,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.8651423872461,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,1,784,0,0,0 +13232,16231,29536,29538,-9,-9,2,1,1,61,1,0,3,0,3,-9,2,1,0,2,7.997906591029394,8.264067614777026,7.699998285477818,2,0,-9,11,0,23,-10.96924287329412,0,0,0,38,2,4,1,3,2,2019,1,1,12,1,37,37,15,1,1,1,0,8.244330980468705,8.244330980468705,0,0,0,0,0,0,0,1,1,0,0,8.00305650136591,0,0,43.26,25.18,5,1,0,0,12,3,1,784,0,0,0 +13232,16231,29537,-9,29538,29536,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-868.1698025655589,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,3,1,784,0,0,0 +13232,16231,29538,29536,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,4,5.628541998793716,5.732101327420651,0,2,0,-9,12,0,-23,31.05798354514446,0,0,1,61,3,2,1,3,3,2019,1,2,7,0,4,4,15,1,0,1,0,8.719423018919962,8.719423018919962,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,12,3,1,784,0,0,0 +13232,16231,29539,-9,29538,29536,3,1,1,16,2,0,3,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-962.5589719423454,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,52.37,6,1,0,0,12,3,1,784,0,0,0 +13233,16232,29540,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,4,3,0,3,0,7.925793321790644,7.905379143039185,3,0,0,0,-9,0,-1068.732945253795,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.745951688901057,7.796816011939406,0,0,39.75,54.92,5,1,0,0,9,3,1,1016,0,0,0 +13234,16233,29541,-9,-9,-9,1,1,0,36,3,0,2,0,2,-9,2,1,0,5,8.519344187254507,8.775958529223562,0,4,0,0,0,-9,0,-886.0428857929467,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,39,39,15,1,0,-9,0,13.07315057897793,13.07315057897793,0,0,0,0,0,0,0,1,1,0,0,0,8.034604206822205,3,57.06,57.76,6,1,0,0,2,4,0,751,0,0,0 +13234,16233,29542,-9,29541,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1032.441625658443,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,751,0,0,0 +13234,16233,29543,-9,29541,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-984.6298951211446,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,751,0,0,0 +13235,16234,29544,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,2,8.881604097442445,8.719420302095473,0,3,0,0,0,-9,0,-894.3136946509439,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,50,55,15,1,0,-9,0,11.56970244367904,11.56970244367904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,5,1,0,0,9,5,1,1159,0,0,0 +13236,16235,29545,29546,-9,-9,2,1,0,44,1,0,1,0,2,-9,2,1,0,3,9.099673900568883,9.095090745394893,0,2,0,-9,13,0,-3,147.403604172384,-9,0,1,47,2,4,1,-9,-9,2019,1,1,7,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.24,38.82,7,3,0,1,6,5,1,667,0,0,0 +13236,16235,29546,29545,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.202887802203902,8.246451467758767,0,2,0,-9,20,0,3,-174.8108836832705,-9,0,0,44,2,3,1,-9,-9,2019,1,2,8,2,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.02,41.39,7,3,0,1,6,5,1,667,0,0,0 +13236,16235,29547,-9,29545,29546,5,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1022.306996863215,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,5,3,0,0,6,5,1,667,0,0,0 +13236,16236,29548,-9,29545,29546,3,1,0,23,3,0,1,0,2,-9,2,1,0,1,0,0,0,3,0,0,0,-9,0,-918.7851782886901,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,4,0,0,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.83,33.04,7,3,0,0,6,1,1,666,0,0,0 +13236,16237,29549,-9,29545,29546,4,1,0,20,3,0,1,0,2,-9,7,2,0,1,6.15919685098557,6.233846615800601,0,3,0,0,0,-9,0,-990.6274646211425,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,2,10,12,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.75,50.17,7,3,0,0,6,2,1,489,0,0,0 +13237,16238,29550,-9,29552,29551,3,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-998.3044951003416,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.79,60.82,5,1,0,0,1,5,1,500.6666666666667,0,0,0 +13237,16238,29551,29552,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,2,8.661179053899488,8.723666733055959,0,2,0,-9,8,0,-3,-40.5002360695069,0,0,0,49,2,3,1,2,2,2019,1,2,17,5,37,37,15,1,5,1,0,18.51014178771502,18.51014178771502,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.19,50.44,3,1,0,1,1,5,1,500.6666666666667,0,0,0 +13237,16238,29552,29551,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,3,8.827856983272033,8.893369794511399,0,2,0,-9,8,0,3,-2.407472800500878,0,0,0,46,2,2,1,2,2,2019,1,1,11,3,38,37,15,1,3,1,0,26.90697394835966,26.90697394835966,0,0,0,0,0,0,0,1,1,0,0,0,.5688138427739444,3,43.61,56.01,5,1,0,0,1,5,1,500.6666666666667,0,0,0 +13238,16239,29553,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,2,9.134681705628397,9.000325058984386,0,3,0,0,0,-9,0,-1039.74455992859,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,6,37,39,15,1,6,-9,0,24.84797204729455,24.84797204729455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.82,34.3,5,1,0,0,7,5,0,169,0,0,0 +13239,16240,29554,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.727793305515421,8.525294181189032,0,3,0,0,0,-9,0,-959.2562702901612,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,50,55,15,1,0,-9,0,11.22173711415872,11.22173711415872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,12,5,1,744,0,0,0 +13240,16241,29555,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,3,0,5.775726594032982,6.109079300028631,3,0,0,0,-9,0,-894.5774133334379,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.843972927771603,7.040692480801686,3,56.05,45.76,5,1,0,0,6,2,0,1032,0,0,0 +13241,16242,29556,29557,-9,-9,1,1,0,28,1,0,0,0,2,-9,5,1,0,4,7.911294501514727,8.024687560843066,0,1,0,-9,6,0,-1,48.85917066028807,0,1,1,29,2,4,1,2,2,2019,1,2,12,2,38,37,15,1,2,1,0,8.620802549313662,8.620802549313662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,42.22,7,1,0,0,13,5,1,183.5,0,0,0 +13241,16242,29557,29556,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,4,8.230900121669858,8.315067226158124,0,1,0,-9,6,0,1,-73.48546040068128,0,1,0,28,2,4,1,-9,-9,2019,1,1,8,1,53,52,15,1,1,1,0,10.74316570726614,10.74316570726614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,6,1,0,0,13,5,1,183.5,0,0,0 +13242,16243,29558,-9,-9,-9,1,1,0,20,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-907.8206323365876,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,2,0,66,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.19,36.58,7,1,1,0,13,1,0,170,0,0,0 +13243,16244,29559,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1044.24156867321,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,40,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,4,3,0,1,8,1,0,556,0,0,0 +13244,16245,29560,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-1048.483643059785,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,11,0,38,15,1,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.69,62.8,1,1,0,0,9,1,0,588,0,0,0 +13245,16246,29561,29562,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,51,0,-3,0,0,0,0,77,1,5,3,3,1,2019,4,1,4,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.39,57.93,6,3,0,0,8,1,1,591,0,0,0 +13245,16246,29562,29561,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,51,0,3,0,0,0,0,74,1,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.709401448788192,0,0,0,66.34,49.42,7,3,0,0,8,1,1,591,0,0,0 +13246,16247,29563,-9,29564,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-925.7361564405093,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,0,350.5,0,0,0 +13246,16247,29564,-9,-9,-9,1,1,0,26,2,0,1,0,2,-9,2,1,0,2,7.280266335626065,7.071510753674419,0,4,0,0,0,-9,0,-982.6197311221863,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,20,20,15,1,0,-9,0,6.345710996317802,6.345710996317802,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,45.29,1,1,0,0,13,2,0,350.5,0,0,0 +13247,16248,29565,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,5.943029973669781,5.479855222633449,3,0,0,0,-9,0,-1014.544260068018,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.018209262375999,0,0,37.79,55.65,6,1,0,0,12,2,0,513,0,0,0 +13248,16249,29566,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1059.437013747615,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,5.85862506400432,0,1,1,0,0,0,0,0,33.56,17.19,4,1,0,0,9,1,1,105,0,0,0 +13249,16250,29567,29569,-9,-9,2,1,0,43,1,0,2,0,3,-9,3,3,0,5,0,0,0,2,0,-9,21,0,-6,41.18788194649174,0,0,1,49,2,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,6,3,1,0,6,3,1,1654.333333333333,0,0,0 +13249,16250,29568,-9,29567,29569,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.0285120416899,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,3,0,0,6,3,1,1654.333333333333,0,0,0 +13249,16250,29569,29567,-9,-9,1,1,1,49,1,0,2,0,2,-9,2,1,0,4,8.207381237204014,7.903807814190316,0,2,0,-9,21,0,6,86.41585692122223,0,0,0,43,3,5,3,-9,-9,2019,2,2,6,0,48,47,15,1,0,3,0,10.24964436844845,10.24964436844845,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.78,59.39,6,3,0,0,6,3,1,1654.333333333333,0,0,0 +13249,16251,29570,-9,29567,29569,3,1,0,18,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1111.413032324782,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.04,55.86,5,3,0,0,6,3,1,1399,0,0,0 +13250,16252,29571,29572,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.691151249474451,8.850519149144503,0,1,0,1,1,-9,-1,53.20432386296932,0,0,0,56,2,4,1,-9,-9,2019,1,1,7,0,52,45,15,1,0,1,0,12.52322992369202,12.52322992369202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,7,1,0,0,12,5,1,490,0,0,0 +13250,16252,29572,29571,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.070569651930095,8.197461362326878,0,1,0,1,1,-9,1,12.22447926827522,0,0,0,55,2,4,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,9.903322449997056,9.903322449997056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,12,5,1,490,0,0,0 +13251,16253,29573,29574,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,3,10.42664250273026,10.20238034935704,0,1,0,-9,26,0,2,142.4083018355915,0,0,0,50,1,3,1,2,2,2019,1,1,11,1,58,50,15,1,1,1,0,66.35037563375917,66.35037563375917,0,0,0,0,0,0,0,0,0,0,2.056037614738368,0,0,0,44.9,52.44,6,1,0,0,2,5,1,209.5,0,0,0 +13251,16253,29574,29573,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,3,9.778055002871675,9.006012189540883,0,1,0,-9,27,0,-2,-98.13147312849988,0,0,0,52,1,3,1,2,3,2019,1,2,23,11,42,44,15,1,11,1,0,39.03326934252112,39.03326934252112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.91,52.63,5,1,0,0,2,5,1,209.5,0,0,0 +13252,16254,29575,29576,-9,-9,2,1,1,46,1,0,0,0,1,-9,2,1,0,4,8.696262940363596,9.023397542788979,0,1,0,-9,7,0,3,-141.045774093552,0,0,0,43,1,3,1,-9,-9,2019,1,1,13,1,59,80,15,1,1,1,0,16.8400196399048,16.8400196399048,0,0,0,0,0,0,0,0,0,0,7.271854114526128,0,0,0,48.28,60.18,4,1,0,0,5,5,1,468,0,0,0 +13252,16254,29576,29575,-9,-9,1,1,0,43,1,0,0,0,1,-9,2,1,0,3,8.714179082759943,8.613178516529125,0,1,0,-9,7,0,-3,73.91927756419852,0,0,1,46,1,4,1,2,3,2019,1,2,9,0,37,53,15,1,0,1,0,17.77891108979996,17.77891108979996,0,0,0,0,0,0,0,0,0,0,7.526471712989381,0,0,0,54.13,48.04,6,1,0,0,5,5,1,468,0,0,0 +13253,16255,29577,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,2,1,0,3,7.622092891074662,7.948599281987839,6.016655799810526,3,0,0,0,-9,0,-909.0487966930522,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,30,15,1,0,-9,0,8.990759614507397,8.990759614507397,0,0,0,0,0,0,0,1,1,0,5.090486439357407,5.988517711381882,0,0,60.3,46.58,6,1,0,0,9,3,1,549,0,0,0 +13254,16256,29578,29579,-9,-9,2,1,1,56,1,0,0,0,1,-9,3,3,0,2,0,0,0,1,0,1,7,-9,10,0,0,0,0,46,3,4,3,3,3,2019,4,1,15,5,0,37,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.867490919917621,1,58.96,34.12,3,1,1,1,12,1,0,217,0,0,0 +13254,16256,29579,29578,-9,-9,1,1,0,46,1,0,0,0,3,-9,8,3,1,4,0,0,0,1,0,1,7,-9,-10,0,0,0,0,56,1,2,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,1,12,1,0,217,0,0,0 +13255,16257,29580,29581,-9,-9,1,1,0,29,1,0,1,0,2,-9,1,1,0,3,0,0,0,2,0,-9,7,0,2,-6.181577656540156,0,1,1,27,2,3,1,2,3,2019,1,2,12,0,15,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47.19,45.82,5,1,0,0,2,3,0,344,0,0,0 +13255,16257,29581,29580,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,3,7.872590139533401,7.845060806351113,0,2,0,-9,7,0,-2,-20.23745526651361,0,1,0,29,2,3,1,-9,-9,2019,1,1,11,0,42,43,15,1,0,1,0,10.11867442183339,10.11867442183339,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.3,52.04,6,1,0,0,2,3,0,344,0,0,0 +13255,16257,29582,-9,29580,29581,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.7352627811673,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,0,344,0,0,0 +13256,16258,29583,-9,29584,29585,4,1,1,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1004.172376187961,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.56,51.83,5,1,0,0,9,5,1,1494.666666666667,0,0,0 +13256,16258,29584,29585,-9,-9,2,1,0,52,1,0,1,0,2,-9,2,1,0,5,8.30277792080896,8.088825781726722,0,2,0,-9,27,0,-10,-90.3778059603387,0,0,0,62,2,3,1,-9,2,2019,1,1,13,1,35,30,15,1,1,1,0,13.53542044565941,13.53542044565941,0,0,0,0,0,0,0,1,1,0,1.469243921482493,0,0,0,54.67,57.49,6,1,0,0,9,5,1,1494.666666666667,0,0,0 +13256,16258,29585,29584,-9,-9,1,1,1,62,1,0,1,0,2,-9,1,1,0,3,8.572361571258465,9.294431879796411,8.242241322094545,2,0,-9,27,0,10,49.38448549445453,0,0,0,52,2,5,1,3,3,2019,1,2,12,1,40,30,15,1,1,1,0,15.07312756353507,15.07312756353507,0,0,0,0,0,0,0,1,1,0,4.071887836459547,8.255286054545028,0,0,56.11,44.4,5,1,0,0,9,5,1,1494.666666666667,0,0,0 +13256,16259,29586,-9,29584,29585,3,1,1,18,2,0,1,1,2,0,7,2,0,3,6.886509835316971,6.885125760565194,0,3,0,0,0,-9,0,-954.5333412288314,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,18,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.29,56.12,6,1,0,0,9,2,1,2378,0,0,0 +13257,16260,29587,29588,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,5,0,7.900061200598372,7.473557552161913,1,0,-9,51,0,2,106.9427153279933,0,0,0,68,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.671335019145658,0,0,46.99,58.24,7,1,0,0,4,3,0,4028.5,0,0,0 +13257,16260,29588,29587,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,-73.61775752951691,0,0,0,70,1,5,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,6,1,0,0,4,3,0,4028.5,0,0,0 +13258,16261,29589,-9,-9,-9,1,1,0,92,2,0,0,0,3,-9,4,3,0,3,0,5.478732542320818,5.835544037307468,3,0,0,0,-9,0,-1006.058262659831,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,.4653516383448753,0,1,1,0,0,5.610543556059577,0,0,53,44,6,1,0,0,6,2,1,1126,0,0,0 +13259,16262,29590,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,5,8.671404011513525,8.683174508843925,0,3,0,0,0,-9,0,-992.6181262009799,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,41,40,15,1,7,-9,0,19.12236069420008,19.12236069420008,0,0,0,0,0,0,0,1,1,0,6.294322886852806,0,12.15568295055503,3,40.32,63.02,4,1,0,0,12,5,1,886,0,0,0 +13260,16263,29591,29592,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,4.252595692854976,8.155477266637405,7.667834101814529,1,0,-9,34,0,-2,18.69322343663065,0,0,0,69,1,4,3,2,2,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.196716503578566,8.228626488210724,0,0,48.11,56.11,5,1,0,0,10,4,1,468,0,0,0 +13260,16263,29592,29591,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.991873194113579,7.649984547116938,1,0,-9,34,0,2,33.63641756540403,0,0,0,67,2,4,3,2,2,2019,4,1,12,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.402049810987541,7.817613207196972,0,0,48.99,54.36,6,1,0,0,10,4,1,468,0,0,0 +13261,16264,29593,29595,-9,-9,2,1,0,44,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,15,0,2,17.83332102272096,0,0,1,42,1,4,1,2,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,9,4,1,691.5,0,0,0 +13261,16264,29594,-9,29593,29595,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.5522840934035,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,691.5,0,0,0 +13261,16264,29595,29593,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,4,9.15671976881344,8.827572551428682,0,2,0,-9,14,0,-2,24.32040411594329,0,0,0,44,2,3,3,3,3,2019,2,2,9,0,42,41,15,1,0,3,0,23.0948703460861,23.0948703460861,0,0,0,0,0,0,0,1,1,0,2.949990651019136,0,0,0,43.54,59.6,5,1,0,0,9,4,1,691.5,0,0,0 +13261,16264,29596,-9,29593,29595,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.8429449366845,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,691.5,0,0,0 +13262,16265,29597,-9,-9,-9,1,1,0,34,2,0,0,0,1,-9,1,1,0,5,7.56501053877416,7.352027814362011,0,3,0,0,0,-9,0,-868.9833135159874,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,4.538721880472118,4.538721880472118,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.9,54.9,6,3,0,0,6,3,1,681,0,0,0 +13262,16266,29598,-9,-9,-9,3,1,1,28,2,0,0,0,1,-9,97,3,0,4,8.054832897259871,7.736057685129438,0,3,0,0,0,-9,0,-1078.272457960511,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,25,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.04,52.16,6,3,0,0,6,4,1,1678,0,0,0 +13262,16267,29599,-9,-9,-9,4,1,0,29,2,0,0,0,1,-9,2,1,0,3,7.784349657339627,8.203126000288117,0,3,0,0,0,-9,0,-1013.049327667784,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,30,0,15,1,0,-9,1,13.02446990109618,13.02446990109618,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.36,49.48,5,3,0,0,6,4,1,458,0,0,0 +13262,16268,29600,-9,-9,-9,5,1,0,33,2,0,0,0,1,-9,2,1,0,4,7.527822796354867,7.633973454266782,0,3,0,0,0,-9,0,-1154.377371616718,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.95,5,3,0,0,6,3,1,2229,0,0,0 +13262,16269,29601,-9,-9,-9,2,1,1,26,2,0,0,0,2,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-1161.48965809752,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.3,56.21,6,3,0,0,6,1,1,753,0,0,0 +13263,16270,29602,29604,-9,-9,1,1,0,49,1,0,2,0,1,-9,1,1,0,5,6.965320120816354,7.257867513336439,0,2,0,-9,6,0,1,-97.87219055633439,0,0,0,48,2,5,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,4.358884605112235,4.358884605112235,0,0,0,0,0,0,0,1,1,0,4.578101263598748,0,0,0,57.06,57.76,6,1,0,0,2,2,1,497,0,0,0 +13263,16270,29603,-9,29602,29604,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.0887295500917,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,1,497,0,0,0 +13263,16270,29604,29602,-9,-9,2,1,1,48,1,0,2,0,2,-9,1,1,0,5,6.807859312651357,6.819349762413442,0,2,0,-9,6,0,-1,-50.67735726376994,0,0,0,49,1,5,1,2,2,2019,1,1,7,0,30,30,15,1,0,1,0,4.279645122896627,4.279645122896627,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,0,2,2,1,497,0,0,0 +13263,16270,29605,-9,29602,29604,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.0568229420911,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,2,1,497,0,0,0 +13264,16271,29606,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,4,8.349571525047342,8.413391526588695,0,3,0,0,0,-9,0,-1073.500979533881,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,46,43,15,1,1,-9,0,12.80903519431413,12.80903519431413,0,0,0,0,0,0,0,1,1,0,7.134948390676328,0,2.610017165147314,3,60.52,53.2,6,1,0,0,12,5,1,315,0,0,0 +13265,16272,29607,-9,29608,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-866.9498322994775,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,1,0,930,0,0,0 +13265,16272,29608,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-972.2120893113311,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,24,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.64,35.4,1,1,1,0,7,1,0,930,0,0,0 +13266,16273,29609,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,3,0,4.836561753524832,4.933443332200648,3,0,0,0,-9,0,-893.6389818737317,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.512848382350697,0,0,61.43,43.34,2,1,0,0,2,2,1,328,0,0,0 +13267,16274,29610,29611,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.75198101367873,9.131472402465146,0,2,0,-9,20,0,-3,88.22435393797922,0,0,0,46,1,4,1,2,3,2019,1,1,7,0,43,40,15,1,0,1,0,16.7235980632618,16.7235980632618,0,0,0,0,0,0,0,1,1,0,4.232433771454119,0,0,0,58.15,52.91,6,1,0,0,7,5,1,364,0,0,0 +13267,16274,29611,29610,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,4,8.257420029183766,8.100000843156176,0,2,0,-9,20,0,3,3.960358646914285,0,0,0,43,1,4,1,3,3,2019,1,2,7,0,29,28,15,1,0,1,0,13.59232152265088,13.59232152265088,0,0,0,0,0,0,0,1,1,0,2.437398131883425,0,0,0,57.16,56.15,6,1,0,0,7,5,1,364,0,0,0 +13267,16274,29612,-9,29611,29610,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.699862180414,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,364,0,0,0 +13267,16274,29613,-9,29611,29610,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.245724345171,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,364,0,0,0 +13268,16275,29614,29615,-9,-9,2,1,1,61,1,0,0,0,2,-9,6,3,0,2,0,5.606004903320917,5.230185857799302,1,0,-9,7,0,-1,14.83201117049811,0,0,0,62,2,4,3,3,3,2019,4,1,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.645199321694223,5.272374976416881,10.9426193397002,3,49.37,35.69,3,1,0,0,10,2,1,528.8,0,0,0 +13268,16275,29615,29614,-9,-9,1,1,0,62,1,0,0,0,2,-9,6,3,0,4,0,5.790240373367282,5.798305816302589,1,0,-9,7,0,1,59.83420536160663,0,0,0,61,2,2,3,3,3,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.237646912033632,5.620077253220422,2.309101502876566,3,57.34,50.6,7,1,0,0,10,2,1,528.8,0,0,0 +13268,16275,29616,-9,-9,29614,4,1,0,7,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-991.3155103412684,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,528.8,0,0,0 +13268,16275,29617,-9,-9,29614,5,1,1,6,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1005.02580505362,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,1,528.8,0,0,0 +13268,16275,29618,-9,-9,29614,3,1,0,9,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1013.253797662898,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,1,528.8,0,0,0 +13269,16276,29619,29620,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,5,8.689967505675162,8.464792529645297,0,1,0,-9,5,0,0,56.00719465177112,0,1,1,29,1,4,1,-9,-9,2019,1,1,14,2,39,44,15,1,2,1,0,14.68189925780852,14.68189925780852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.97,60.02,6,1,0,0,13,5,1,561.5,0,0,0 +13269,16276,29620,29619,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.610235538503364,8.469812252065129,0,1,0,-9,5,0,0,21.90338014457549,0,1,0,29,1,5,1,2,1,2019,1,2,4,0,39,38,15,1,0,1,0,12.61431728998721,12.61431728998721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,13,5,1,561.5,0,0,0 +13270,16277,29621,-9,-9,-9,1,1,0,24,3,0,0,0,2,-9,2,1,0,4,7.826316631904636,7.917099541006161,0,3,0,-9,0,1,0,-1131.67305207896,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,38,0,15,1,2,-9,0,8.578540053060966,8.578540053060966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.23,61.31,5,1,0,0,6,3,1,2218,0,0,0 +13271,16278,29622,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,4,8.144900903221517,8.53319663356468,5.96837287291638,3,0,0,0,-9,0,-984.8777721682558,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,39,40,15,1,0,-9,0,11.22931923264706,11.22931923264706,0,0,0,0,0,0,0,1,1,0,0,6.438426717337533,0,0,54.2,57.49,7,1,0,0,9,5,1,195,0,0,0 +13272,16279,29623,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1005.395510418314,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,7,1,0,1754,0,0,0 +13273,16280,29624,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,2,0,7.719996864538953,7.923697247361161,3,0,0,0,-9,0,-1037.489837798899,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.762614004535648,0,0,56.29,25.73,5,1,0,0,2,4,1,670,0,0,0 +13274,16281,29625,29626,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,3,8.492804017250489,8.08590876352463,0,1,0,-9,9,0,6,13.8206978220198,0,0,0,55,2,4,1,3,3,2019,1,2,10,0,40,0,15,1,1,1,0,11.32976126770791,11.32976126770791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,6,1,0,0,9,4,1,412.5,0,0,0 +13274,16281,29626,29625,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.515903484229704,7.250239485847592,0,1,0,-9,9,0,-6,-171.5524344276768,0,0,0,61,2,3,1,-9,-9,2019,1,1,10,0,20,10,15,1,0,1,0,10.7327990526498,10.7327990526498,0,0,0,0,0,0,0,0,0,0,2.824081789996052,0,0,0,51.77,58.57,6,1,0,0,9,4,1,412.5,0,0,0 +13275,16282,29627,29628,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,53,0,0,94.48156789866825,0,0,0,79,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.603766498269589,0,0,0,54.27,48.04,6,1,0,0,2,2,1,224,0,0,0 +13275,16282,29628,29627,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,7.55640343277028,7.454248843315897,1,0,-9,53,0,0,5.000607730135281,0,0,0,79,3,3,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.624929644708192,7.509005464410465,0,0,55.36,51.57,6,1,0,0,2,2,1,224,0,0,0 +13276,16283,29629,29630,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,8.086597002071059,7.974166491699705,1,0,-9,10,0,1,65.90555281235059,0,0,0,64,2,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.04142513568206,6.834640167584632,1,54.37,54.8,5,1,0,0,9,3,1,1136,0,0,0 +13276,16283,29630,29629,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,5.808733390022639,6.075821881819672,1,0,-9,48,0,-1,141.0200725412999,0,0,0,65,2,3,3,2,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.213895450665651,5.808544318497233,0,0,55.51,30.31,4,1,0,0,9,3,1,1136,0,0,0 +13277,16284,29631,-9,-9,-9,1,1,0,78,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1105.188571197474,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,0,0,0,2.363550609255681,0,0,0,51,46,5,1,0,0,11,1,1,271,0,0,0 +13278,16285,29632,29633,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,4,7.706507087684276,7.846989777145083,0,2,0,-9,25,0,5,51.69343053202026,0,0,0,51,2,3,1,3,3,2019,1,1,9,0,37,92,15,1,0,1,0,7.222136247306997,7.222136247306997,0,0,0,0,0,0,0,1,1,0,0,0,14.25712809888585,3,57.16,56.15,6,1,0,0,9,4,1,364.3333333333333,0,0,0 +13278,16285,29633,29632,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,8.541685065938616,8.527757300490293,0,2,0,-9,25,0,-5,-139.4773046819103,0,0,0,56,2,4,1,2,2,2019,1,2,10,1,50,42,15,1,1,1,0,10.50156477317348,10.50156477317348,0,0,0,0,0,0,0,1,1,0,2.11522098746823,0,0,0,56.89,48.06,6,1,0,0,9,4,1,364.3333333333333,0,0,0 +13278,16285,29634,-9,29632,29633,4,1,1,17,2,0,1,1,2,0,7,2,0,4,6.604066160675652,6.535455155964555,0,2,0,0,0,-9,0,-1032.695766675357,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,33,11,12,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.95,70.31,4,1,0,0,9,4,1,364.3333333333333,0,0,0 +13278,16286,29635,-9,29632,29633,3,1,0,20,2,0,1,1,2,0,7,2,0,4,6.382623609142335,6.337453131768002,0,3,0,0,0,-9,0,-1011.994535309398,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,13,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.3278862191987,0,0,0,49.12,57.28,6,1,0,0,9,2,1,595,0,0,0 +13279,16287,29636,-9,-9,-9,1,1,0,80,2,0,0,0,1,-9,4,3,0,3,0,7.620241899954735,7.574201076431569,3,0,0,0,-9,0,-1032.476121775569,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,1,37.68187155855678,0,0,0,0,387.3933722009188,1,1,0,6.823312927666872,7.762456507579954,0,0,41.85,52.41,7,1,0,0,9,3,1,911,0,0,0 +13280,16288,29637,-9,-9,-9,1,1,0,95,3,0,0,0,2,-9,4,3,0,5,0,8.352342486998275,8.34171767232043,3,0,0,0,-9,0,-1030.897960840284,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,17.1302592229763,0,0,1,1,0,0,8.392868713894522,0,0,55.24,55.87,2,1,0,0,10,4,1,532,0,0,0 +13280,16289,29638,-9,29637,-9,2,1,1,66,2,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-965.5902065502447,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.130671009436773,0,11.21809827336489,3,62.49,55.09,7,1,0,0,10,1,1,472,0,0,0 +13281,16290,29639,-9,-9,-9,1,1,1,29,2,1,2,0,3,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1016.528503709802,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.71,35.95,4,1,1,0,13,1,0,1268,0,0,0 +13281,16291,29640,29641,-9,-9,2,1,0,26,1,1,2,0,3,-9,6,3,0,2,0,0,0,2,0,1,1,-9,-1,0,0,1,1,27,3,2,3,3,3,2019,4,3,21,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.011566206990143,3,39.28,28.28,5,1,0,0,13,1,0,547.5,0,0,0 +13281,16291,29641,29640,-9,-9,3,1,1,27,1,1,2,0,3,-9,3,3,0,2,0,0,0,2,0,1,1,-9,1,0,0,1,0,26,3,2,3,-9,-9,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.16,37.37,4,1,1,0,13,1,0,547.5,0,0,0 +13281,16291,29642,-9,29640,29641,5,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.274491760476,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,547.5,0,0,0 +13281,16291,29643,-9,29640,29641,4,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.18507479962,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,1,0,547.5,0,0,0 +13282,16292,29644,29645,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.688660042840359,7.537867770330413,1,0,-9,10,0,-2,-115.6982615827984,0,0,0,69,1,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.355903366140791,7.91687474356652,0,0,60.2,39.82,6,1,0,0,4,3,1,948,0,0,0 +13282,16292,29645,29644,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,3,6.490975293869134,6.807517094439614,5.655639546505154,1,0,-9,10,0,2,-55.21216998122676,0,0,0,67,2,3,3,2,1,2019,4,2,8,0,16,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.818702396584713,5.988911460046611,0,0,57.33,53.46,6,1,0,0,4,3,1,948,0,0,0 +13283,16293,29646,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.431406701953032,8.410310739008468,0,3,0,-9,0,-9,0,-931.19524359771,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,50,0,15,1,2,-9,0,9.415291310119539,9.415291310119539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,3,0,0,8,4,0,1620,0,0,0 +13284,16294,29647,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,1,0,4.906794490810884,4.660289800757396,3,0,0,0,-9,0,-1031.044680143107,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.100049225268791,4.841438142501161,0,0,35.61,20.78,4,1,0,0,7,2,1,616,0,0,0 +13285,16295,29648,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,2,0,5.201296909391153,5.173913780286462,3,0,0,0,-9,0,-998.2946202393503,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,.4617055032387753,5.048833283610135,0,0,53.65,16.41,7,1,0,0,10,2,1,379,0,0,0 +13286,16296,29649,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,4,8.095393528188023,8.073052511677181,0,3,0,0,0,-9,0,-955.0421992266823,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,10.11155098973365,10.11155098973365,0,0,0,0,0,0,0,1,1,0,4.158966912381616,0,19.1526757573827,3,54.2,57.49,6,1,0,0,6,4,1,350,0,0,0 +13287,16297,29650,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,2,8.156311875211063,8.101059854421806,6.345779130015035,3,0,0,0,-9,0,-1045.472288481625,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,34,32,15,1,1,-9,0,9.975312078891415,9.975312078891415,0,0,0,0,0,0,0,1,1,0,4.68655095543534,6.854889472445679,0,0,59.7,32.49,6,1,0,0,2,4,1,913,0,0,0 +13288,16298,29651,29652,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,7.59864282885629,7.601898368287794,1,0,-9,9,0,13,49.71304349540408,0,0,0,53,2,4,1,-9,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,6.177604710539697,0,0,0,0,1,1,0,0,7.578574578339095,0,0,49.91,36.45,2,1,0,0,12,4,1,949.5,0,0,0 +13288,16298,29652,29651,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.653521989388667,8.0252159724309,6.965160707106183,1,0,-9,24,0,-13,-63.23058461274994,0,0,0,66,2,4,3,2,3,2019,2,2,12,0,32,0,15,1,0,4,0,6.012499984052339,6.012499984052339,0,0,0,0,0,0,0,1,1,0,0,6.63760929589467,0,0,59.38,38.6,6,1,0,0,12,4,1,949.5,0,0,0 +13289,16299,29653,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,4,3,0,3,0,4.771971160951593,4.44326331254241,3,0,0,0,-9,0,-931.0906806838796,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.366778800424366,4.626436976221729,32.56417076780573,3,54.96,53.17,6,1,0,0,11,1,1,1113,0,0,0 +13290,16300,29654,-9,29656,29655,2,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-955.6570677088665,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.252734372756139,3,39.45,54.69,6,1,0,0,13,1,0,1295,0,0,0 +13290,16301,29655,29656,-9,-9,3,1,1,50,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,6,0,10,0,0,0,0,40,2,1,3,-9,-9,2019,4,1,33,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.14527944000873,2,36.53,15.84,1,1,0,0,13,1,0,762.5,0,0,0 +13290,16301,29656,29655,-9,-9,1,1,0,40,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,-10,0,0,0,1,50,3,1,3,3,3,2019,4,3,18,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.52296646252638,2,44.92,27.03,3,1,0,0,13,1,0,762.5,0,0,0 +13291,16302,29657,29658,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-6,68.99726304740423,0,0,0,69,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,7,3,1,823,0,0,0 +13291,16302,29658,29657,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.472739469040993,8.027938047120392,1,0,-9,46,0,6,-106.9784883080447,0,0,0,63,2,3,3,3,-9,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.79668609777829,0,0,57.16,56.15,7,1,0,0,7,3,1,823,0,0,0 +13292,16303,29659,-9,-9,-9,1,1,1,31,2,0,0,0,1,-9,2,1,0,4,9.680445846701424,9.156926251400337,0,3,0,0,0,-9,0,-936.656256881506,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,55,45,15,1,0,-9,0,24.54083545900771,24.54083545900771,0,0,0,0,0,0,0,1,1,0,6.641527709428559,0,0,0,54.98,55.95,7,1,0,0,12,5,1,856,0,0,0 +13293,16304,29660,-9,29661,29663,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.878406898331,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,7,5,1,429.75,0,0,0 +13293,16304,29661,29663,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,4,7.845299779865629,7.84811295403356,0,2,0,-9,21,0,-3,-78.66665905127677,0,0,0,57,1,5,1,3,2,2019,1,2,8,0,17,17,15,1,0,1,0,15.76764355098509,15.76764355098509,0,0,0,0,0,0,0,1,1,0,5.725445563968031,0,0,0,39.69,51.64,6,1,0,0,7,5,1,429.75,0,0,0 +13293,16304,29662,-9,29661,29663,3,1,0,17,2,0,1,0,2,1,2,3,0,4,5.415578002053289,5.273116743730903,0,2,0,0,0,-9,0,-960.5600050962046,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,16,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,5,1,429.75,0,0,0 +13293,16304,29663,29661,-9,-9,2,1,1,57,1,0,1,0,1,-9,2,1,0,5,9.626878089316627,9.373801388355091,0,2,0,-9,10,0,3,-114.6793350323901,0,0,0,54,2,4,1,-9,-9,2019,1,1,7,0,50,49,15,1,0,1,0,32.02500535788706,32.02500535788706,0,0,0,0,0,0,0,1,1,0,4.993187585864226,0,0,0,55.77,55.6,6,1,0,0,7,5,1,429.75,0,0,0 +13294,16305,29664,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,2,7.412925152511296,7.484266638351762,5.983192132855308,3,0,0,0,-9,0,-971.0393154640128,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,25,21,15,1,5,-9,0,8.365307646399415,8.365307646399415,0,0,0,0,0,0,0,1,1,0,.8706196768722496,5.602152206674692,0,0,34.4,38.35,4,1,0,0,4,3,1,316,0,0,0 +13294,16306,29665,-9,29664,-9,2,1,0,25,2,0,0,0,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-933.4907059818711,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.19407480921991,0,0,0,59.14,52.5,3,1,0,0,4,1,1,954,0,0,0 +13295,16307,29666,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,4,7.984208268334172,8.354599480504495,0,3,0,0,0,-9,0,-857.2360568920847,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,42,48,15,1,1,-9,0,10.02055518082539,10.02055518082539,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,7,4,1,538,0,0,0 +13296,16308,29667,-9,-9,-9,1,1,1,22,2,0,0,0,1,-9,2,1,0,4,8.462750221023983,8.466888494462403,0,3,0,0,0,-9,0,-1043.966213587239,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,37,38,15,1,3,-9,0,11.34811018288882,11.34811018288882,0,0,0,0,0,0,0,0,0,0,2.112698439389367,0,0,0,46.04,61.35,6,1,0,0,8,4,0,341,0,0,0 +13297,16309,29668,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1021.248069564676,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.54,22.31,2,1,0,1,13,1,0,265,0,0,0 +13298,16310,29669,29670,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,5,8.073629984034243,8.251473322613958,0,1,0,1,1,-9,2,-27.93937128353833,0,0,1,30,1,5,1,3,3,2019,1,2,5,0,37,37,15,1,0,1,0,12.24908300051531,12.24908300051531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,7,3,0,0,6,5,1,1637.5,0,0,0 +13298,16310,29670,29669,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,5,8.989672390936754,8.628858591386422,0,1,0,-9,1,-9,-2,60.93950026851122,-9,0,0,32,2,5,1,-9,-9,2019,1,1,17,6,45,0,15,1,6,1,0,17.31501139152433,17.31501139152433,0,0,0,0,0,0,0,0,0,0,6.706550393568421,0,0,0,37.05,60.3,5,1,0,0,6,5,1,1637.5,0,0,0 +13299,16311,29671,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.460787618027976,6.99716379948134,0,3,0,0,0,-9,0,-1099.099152574572,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,43,15,1,0,-9,0,4.068314733312725,4.068314733312725,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,55.65,6,1,0,0,2,3,0,1109,0,0,0 +13300,16312,29672,29673,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,7.312852896529288,7.389215381531718,1,0,-9,43,0,2,-83.60014213984358,0,0,0,68,3,3,3,3,1,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.327126737839102,0,0,51.77,50.69,4,1,0,0,2,2,1,584.5,0,0,0 +13300,16312,29673,29672,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,4.955966669730167,5.129277308358517,1,0,-9,43,0,-2,-82.16365796221001,0,0,0,70,3,3,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.882976837731368,4.943891126988258,0,0,49.58,55.59,6,1,0,0,2,2,1,584.5,0,0,0 +13301,16313,29674,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,3,7.777166604985863,7.92112770358193,0,3,0,-9,0,-9,0,-1064.942356142834,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,25,0,15,1,0,-9,0,10.01837672556545,10.01837672556545,0,0,0,0,0,0,0,1,0,1,0,0,13.50004278174633,3,54.37,54.8,6,4,0,0,6,3,0,151,0,0,0 +13302,16314,29675,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,4,8.83882631528378,8.726408196815607,0,3,0,0,0,-9,0,-898.0943923977051,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,40,15,1,0,-9,0,18.74482841837153,18.74482841837153,0,0,0,0,0,0,0,1,1,0,0,0,12.06927080034566,3,67.19,37.81,7,1,0,0,9,5,1,333,0,0,0 +13303,16315,29676,29677,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,5.141420146943887,5.074490139556994,1,0,-9,51,0,2,-8.346399410000101,0,0,0,70,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.890466755028759,5.083044675406378,2.428981692890544,3,55.51,29.97,6,1,0,0,2,2,1,788.5,0,0,0 +13303,16315,29677,29676,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.3710670192852,5.155463035577212,1,0,-9,53,0,-2,-34.63120705995472,0,0,0,72,2,2,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.43981901394153,5.198914464370744,0,0,57.92,51.82,7,1,0,0,2,2,1,788.5,0,0,0 +13304,16316,29678,29679,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,7.038815322242342,6.686898650801748,1,0,-9,31,0,-1,-53.99123086263531,0,0,0,72,1,3,3,1,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.679547805486841,0,0,51.41,56.15,6,1,0,0,2,3,1,876,0,0,0 +13304,16316,29679,29678,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,8.2426927281684,8.238599608276154,1,0,-9,31,0,1,69.86517650040662,0,0,0,71,2,3,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.881832892392936,0,0,52.01,40.95,6,1,0,0,2,3,1,876,0,0,0 +13305,16317,29680,29681,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.588137897100093,7.670438461954582,5.104892687681859,1,0,-9,7,0,-5,-10.13750966971952,0,0,0,65,3,3,1,3,-9,2019,1,2,12,1,25,30,15,1,1,1,0,7.125254066230941,7.125254066230941,0,0,0,0,0,0,0,1,1,0,0,4.972552712480632,0,0,55.36,51.57,6,1,0,0,2,4,1,486.5,0,0,0 +13305,16317,29681,29680,-9,-9,2,1,1,65,1,0,0,0,3,-9,2,1,0,3,8.379221127476654,8.365451176712057,7.185312310443873,1,0,-9,7,0,5,-112.2813680799668,0,0,0,60,2,3,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,12.42619392794348,12.42619392794348,0,0,0,0,0,0,0,1,1,0,5.937436402757952,6.808621826575138,0,0,52,48,5,1,0,0,2,4,1,486.5,0,0,0 +13306,16318,29682,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,7,2,0,5,6.828146132439092,7.115778520482156,6.06078282866143,3,0,0,0,-9,0,-986.7227549575591,1,1,1,-9,-9,-9,-9,1,2,2019,-9,0,8,0,15,56,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.11336030453197,0,0,0,57.06,57.76,7,1,0,0,9,2,0,1914,0,0,0 +13306,16319,29683,-9,-9,-9,5,1,1,21,2,0,0,1,2,-9,7,2,0,2,5.453359861526975,6.660139701970382,5.70305159209471,3,0,-9,0,-9,0,-1027.189802230198,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,4,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.177330205366035,0,0,0,42.81,52.43,6,1,0,0,9,2,0,356,0,0,0 +13307,16320,29684,-9,-9,-9,1,1,0,25,2,1,1,0,2,-9,2,1,0,4,7.349171004871531,7.362106706490554,0,4,0,0,0,-9,0,-927.8415222437845,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,25,30,15,1,0,-9,0,7.944232216746292,7.944232216746292,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,4,3,0,272.5,0,0,0 +13307,16320,29685,-9,29684,-9,2,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1103.204742459293,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,0,272.5,0,0,0 +13308,16321,29686,-9,-9,-9,1,1,0,47,2,0,0,0,3,-9,2,1,0,5,8.816389418056135,8.746354610696212,0,3,0,0,0,-9,0,-1108.55492626445,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,50,45,15,1,0,-9,0,15.81635481313277,15.81635481313277,0,0,0,0,0,0,0,0,0,0,2.517474687166597,0,0,0,59.43,58.05,6,1,0,0,7,5,1,320,0,0,0 +13309,16322,29687,-9,29689,29688,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1133.159239792281,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,1,627.6666666666666,0,0,0 +13309,16322,29688,29689,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,8.620809044182046,8.715593953779651,0,2,0,-9,18,0,3,-49.01551059167279,0,0,0,48,2,4,1,2,2,2019,1,1,6,0,44,37,15,1,0,1,0,14.25423692332096,14.25423692332096,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.09,47.92,6,1,0,0,6,4,1,627.6666666666666,0,0,0 +13309,16322,29689,29688,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.351432674867777,7.388992774386866,0,2,0,-9,18,0,-3,191.1734342201081,0,0,0,51,2,4,1,2,2,2019,1,2,11,0,29,29,15,1,0,1,0,7.240781512675142,7.240781512675142,0,0,0,0,0,0,0,1,1,0,0,0,6.538236642789874,3,55.34,48.72,6,1,0,0,6,4,1,627.6666666666666,0,0,0 +13309,16323,29690,-9,29689,29688,3,1,0,20,2,0,1,0,2,1,2,1,0,3,6.759023457465204,6.920983354743468,0,3,0,0,0,-9,0,-1089.338339586509,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,60,0,15,1,2,-9,1,1.941956714714485,1.941956714714485,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,51.28,6,1,0,0,6,2,1,1082,0,0,0 +13310,16324,29691,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,5,0,5.636671929024025,5.746641095822834,3,0,0,0,-9,0,-1037.42564616548,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.595933946528642,0,0,57.65,56.13,5,1,0,0,1,2,1,255,0,0,0 +13311,16325,29692,29693,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,3,7.486076114212153,8.483184559085895,6.446755332794747,1,0,-9,8,0,2,-47.79530454093796,0,0,0,63,2,4,3,3,3,2019,2,2,6,0,39,39,15,1,0,4,0,7.781150695034613,7.781150695034613,0,0,0,0,0,0,0,1,1,0,4.619692040989976,6.773259406094775,0,0,55.96,49.93,6,1,0,0,6,3,1,1188,0,0,0 +13311,16325,29693,29692,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-2,-23.48222511926251,0,0,0,65,3,3,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.798781114883266,0,0,0,57.16,56.15,5,1,0,0,6,3,1,1188,0,0,0 +13312,16326,29694,-9,29697,29696,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1182.454833820288,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,0,636.25,0,0,0 +13312,16326,29695,-9,29697,29696,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-898.6051911486514,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,3,0,636.25,0,0,0 +13312,16326,29696,29697,-9,-9,1,1,1,40,1,1,2,0,2,-9,2,1,0,4,8.06349712255963,8.412627489743061,0,2,0,-9,1,-9,13,-148.5035719275776,-9,0,0,27,2,4,3,-9,-9,2019,2,2,10,0,52,0,15,1,1,3,0,8.092386824182974,8.092386824182974,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,9,3,0,636.25,0,0,0 +13312,16326,29697,29696,-9,-9,2,1,0,27,1,1,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,-13,-112.3474087186681,-9,1,1,40,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,9,3,0,636.25,0,0,0 +13313,16327,29698,-9,-9,-9,1,1,1,58,2,0,0,0,3,-9,2,1,0,4,6.667866373500017,6.88484558766118,0,3,0,0,0,-9,0,-1010.462038092498,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,26,26,15,1,2,-9,0,4.147500589116661,4.147500589116661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,54.7,6,1,0,0,2,2,1,440,0,0,0 +13314,16328,29699,29701,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,4,8.486967007660022,8.302955117559419,0,2,0,-9,22,0,3,-27.08092165495426,0,0,0,40,2,4,1,1,1,2019,1,2,13,1,36,0,15,1,1,1,0,13.96907860654361,13.96907860654361,0,0,0,0,0,0,0,1,1,0,.4983789368298692,0,0,3,33.69,55,3,3,0,1,8,3,1,1150,0,0,0 +13314,16328,29700,-9,29701,29699,3,1,0,17,2,0,3,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-958.6469875533567,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,23,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.56,52.4,4,3,0,0,8,3,1,1150,0,0,0 +13314,16328,29701,29699,-9,-9,2,1,0,40,1,0,3,0,2,-9,2,1,0,4,7.629059271565469,7.602968775874631,0,2,0,-9,22,0,-3,64.26613074094141,0,0,1,43,1,4,1,-9,-9,2019,1,1,24,10,38,0,15,1,10,1,0,5.929225876482498,5.929225876482498,0,0,0,0,0,0,0,1,1,0,2.158782048301508,0,0,0,46.9,56.66,3,3,0,1,8,3,1,1150,0,0,0 +13314,16328,29702,-9,29701,29699,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.6341490908153,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,1,1150,0,0,0 +13314,16328,29703,-9,29701,29699,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1175.887500541013,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,3,1,1150,0,0,0 +13315,16329,29704,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,2,7.175755270642796,7.333846629401304,0,3,0,0,0,-9,0,-990.2510329458908,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,9,20,31,15,1,9,-9,0,7.86260278837829,7.86260278837829,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.99,24.02,2,3,0,0,5,2,0,386,0,0,0 +13316,16330,29705,-9,29707,29706,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.226193332636,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,5,1,1302,0,0,0 +13316,16330,29706,29707,-9,-9,1,1,1,44,1,1,2,0,2,-9,2,1,0,3,8.114582418796047,8.381196217411496,0,2,0,-9,15,0,5,-74.07053453642355,0,0,0,39,1,4,1,2,2,2019,1,2,7,0,48,48,15,1,0,1,0,10.0452402505472,10.0452402505472,0,0,0,0,0,0,0,1,1,0,2.037662723133587,0,0,0,52,54.51,6,1,0,0,1,5,1,1302,0,0,0 +13316,16330,29707,29706,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,4,8.60706570106511,8.491454452044582,0,2,0,-9,17,0,-5,-104.7608315428284,0,0,1,44,2,3,1,2,3,2019,1,1,10,1,47,46,15,1,1,1,0,15.33191133577036,15.33191133577036,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,7,1,0,0,1,5,1,1302,0,0,0 +13316,16330,29708,-9,29707,29706,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.158889735103,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,1302,0,0,0 +13317,16331,29709,29710,-9,-9,2,1,0,23,1,1,1,0,1,-9,2,1,0,3,6.67736589060273,6.323914458207244,0,2,0,-9,3,0,0,45.54310165141906,0,1,1,23,2,3,1,-9,-9,2019,1,1,15,3,11,16,15,1,3,1,0,7.894849876601228,7.894849876601228,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.08,57.26,4,1,0,0,13,3,0,742.6666666666666,0,0,0 +13317,16331,29710,29709,-9,-9,1,1,1,23,1,1,1,0,2,-9,2,1,0,3,8.093395672712075,8.143338585391776,0,2,0,-9,3,0,0,-59.70019554270673,0,1,0,23,1,3,1,2,3,2019,1,2,13,2,56,55,15,1,2,1,0,6.635698861242989,6.635698861242989,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.25,56.64,3,1,0,0,13,3,0,742.6666666666666,0,0,0 +13317,16331,29711,-9,29709,29710,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.6973045078608,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,3,0,742.6666666666666,0,0,0 +13318,16332,29712,29713,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.726039713328831,5.438989717741656,1,0,-9,38,-9,3,-91.69467748280707,-9,0,0,67,2,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.6017390677279937,5.467181310397876,0,0,57.16,56.15,7,1,0,0,2,2,1,745,0,0,0 +13318,16332,29713,29712,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,7.164469056076872,7.614779057344807,0,1,0,-9,1,-9,-3,54.60659993915091,-9,0,0,70,2,4,3,-9,-9,2019,4,1,7,0,5,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5683385167181539,0,0,0,57.16,56.15,7,1,0,0,2,2,1,745,0,0,0 +13319,16333,29714,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,3,3,0,5,6.74434038681176,7.417860549696817,6.507726841300709,3,0,0,0,-9,0,-1175.067166225732,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,12,40,40,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.308646907675178,6.361134587285564,2.807341539073827,3,30.74,63.26,2,1,1,0,10,3,1,541,0,0,0 +13320,16334,29715,29716,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,3,8.239976576496199,8.27914352917848,0,1,0,-9,8,0,-14,-82.25668125849658,0,0,0,68,2,4,3,2,1,2019,2,1,9,1,37,37,15,1,1,4,0,9.333256199950993,9.333256199950993,0,0,0,0,0,0,0,1,1,0,.2517813074185344,0,6.406092647019128,3,60.87,44.96,7,1,0,0,10,4,0,3270.5,0,0,0 +13320,16334,29716,29715,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.033016648325706,7.05674919586839,1,0,-9,8,0,14,32.11669931564105,0,0,0,54,3,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.59430104120865,7.124874577404711,0,3,61.69,41.71,6,1,0,0,10,4,0,3270.5,0,0,0 +13321,16335,29717,-9,-9,-9,1,1,1,60,3,0,0,0,3,-9,2,1,0,2,8.988915369855311,9.177753949002071,0,3,0,0,0,-9,0,-997.2902953490524,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,38,35,15,1,6,-9,0,26.85121819481996,26.85121819481996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.62,23.5,3,1,0,0,10,5,1,720,0,0,0 +13322,16336,29718,29719,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.250288255575398,8.378296308181072,0,2,0,-9,24,0,2,-47.00403326293146,0,0,0,44,2,5,1,2,2,2019,1,1,8,0,48,47,15,1,0,1,0,10.37706810845286,10.37706810845286,0,0,0,0,0,0,0,1,1,0,3.441357661017964,0,0,0,44.44,55.46,6,1,0,0,6,4,1,410.5,0,0,0 +13322,16336,29719,29718,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,5,7.720171608968325,7.395299412762752,0,2,0,-9,24,0,-2,-167.2182635920838,0,0,1,46,2,4,1,2,2,2019,1,2,13,2,28,29,15,1,2,1,0,5.730914614407423,5.730914614407423,0,0,0,0,0,0,0,1,1,0,3.382904319051923,0,0,0,49.02,58.89,6,1,0,0,6,4,1,410.5,0,0,0 +13323,16337,29720,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,4,0,6.816972646555133,6.448847126588794,3,0,0,0,-9,0,-974.487094722748,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.365773969543332,6.472362521924838,0,0,60.12,54.8,7,1,0,0,11,2,1,1184,0,0,0 +13324,16338,29721,29722,-9,-9,2,1,0,53,1,0,0,0,3,-9,2,1,0,5,7.942172344671679,8.020388886000676,0,1,0,-9,11,0,-17,-124.5323646473693,0,0,0,70,2,2,3,3,3,2019,2,1,6,0,56,50,15,1,0,4,0,6.836207669719447,6.836207669719447,0,0,0,0,0,0,0,1,1,0,2.669105444939511,0,1.763554119739472,1,62.39,56.71,7,3,0,0,7,3,0,447,0,0,0 +13324,16338,29722,29721,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,11,0,17,-85.34374865004601,0,0,0,53,3,5,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.243018456249451,0,0,0,49.71,35.78,6,1,0,0,7,3,0,447,0,0,0 +13325,16339,29723,-9,-9,-9,1,1,0,52,3,0,1,0,2,-9,2,1,0,3,7.912815763492244,8.117513165900762,6.021716081643164,4,0,0,0,-9,0,-933.1143965665736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,28,27,15,1,0,-9,0,17.18914314098319,17.18914314098319,0,0,0,0,0,0,0,1,1,0,6.181154366970762,0,0,0,54.97,47.63,6,1,0,0,13,3,0,163,0,0,0 +13325,16340,29724,-9,29723,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,4,0,3.620815576036277,3.892283560949301,3,0,0,0,-9,0,-1007.924809006386,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.008120610950971,0,0,0,52.82,53.97,7,1,0,0,13,3,0,383,0,0,0 +13326,16341,29725,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,2,0,7.085983814573414,7.073989911537519,3,0,0,0,-9,0,-1050.026375939828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,21,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.016657453550014,0,0,60.29,38.88,6,1,0,0,9,2,1,152,0,0,0 +13327,16342,29726,29727,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,8.03131684160862,8.180062612349476,0,1,0,-9,12,0,-8,-129.8211261002893,0,0,0,61,3,5,1,3,3,2019,1,1,9,0,38,33,15,1,0,1,0,8.251094419254143,8.251094419254143,0,0,0,0,0,0,0,0,0,0,.418128441525253,0,0,3,46.64,39.4,4,1,0,0,5,4,0,489.5,0,0,0 +13327,16342,29727,29726,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,5,7.609518455717576,7.99905019216127,7.342977803410225,1,0,-9,6,0,8,7.662947618160441,0,0,0,53,2,2,1,3,2,2019,1,2,12,2,38,37,15,1,2,1,0,5.932967045388266,5.932967045388266,0,0,0,0,0,0,0,0,0,0,.0960470308649587,7.264914295406821,0,0,37.37,58.84,4,1,0,0,5,4,0,489.5,0,0,0 +13328,16343,29728,29731,-9,-9,1,1,0,47,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-6,47.19613250760587,0,0,0,53,1,4,1,3,2,2019,3,2,14,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,61.53,4,3,0,0,8,2,0,1169.25,0,0,0 +13328,16343,29729,-9,29728,29731,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.153647833114,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,2,0,1169.25,0,0,0 +13328,16343,29730,-9,29728,29731,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-957.8884531893742,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,8,2,0,1169.25,0,0,0 +13328,16343,29731,29728,-9,-9,2,1,1,53,1,0,2,0,1,-9,2,1,0,4,7.942772507590139,7.709028601483312,0,2,0,-9,9,0,6,5.746349668704497,0,0,0,47,2,4,3,-9,-9,2019,2,1,9,0,0,24,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,0,0,8,2,0,1169.25,0,0,0 +13329,16344,29732,29733,-9,-9,1,1,1,53,1,0,1,0,2,-9,2,1,0,3,8.888265033704034,8.874619557976036,0,2,0,-9,7,0,13,48.7824891755003,0,0,0,40,1,4,1,2,2,2019,1,2,16,4,40,40,15,1,4,1,0,27.39334936308656,27.39334936308656,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.9,60.31,2,1,0,0,2,5,1,448.6666666666667,0,0,0 +13329,16344,29733,29732,-9,-9,2,1,0,40,1,0,1,0,1,-9,2,1,0,4,8.677584369376746,8.816093195928818,0,2,0,-9,7,0,-13,-52.27443580408102,0,0,1,53,2,3,1,2,1,2019,1,1,14,4,44,40,15,1,4,1,0,14.70975867275952,14.70975867275952,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,5,1,0,0,2,5,1,448.6666666666667,0,0,0 +13329,16344,29734,-9,29733,29732,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.2140242606123,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,5,1,448.6666666666667,0,0,0 +13330,16345,29735,29737,-9,-9,1,1,1,44,1,0,3,0,3,-9,2,1,0,3,8.372678017893465,8.676209286342338,0,2,0,-9,6,0,-5,25.61131420548024,0,0,0,49,1,3,1,3,3,2019,1,2,18,6,42,40,15,1,6,1,0,16.32351502814277,16.32351502814277,0,0,0,0,0,0,0,1,1,0,6.739310868259366,0,0,0,18.59,63.33,6,1,0,0,13,3,1,476.2,0,0,0 +13330,16345,29736,-9,29737,29735,5,1,1,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.163709414252,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,1,476.2,0,0,0 +13330,16345,29737,29735,-9,-9,2,1,0,49,1,0,3,0,1,-9,2,1,0,3,7.724926182740538,7.809356658892852,0,2,0,-9,6,0,5,-25.23642639699108,0,0,0,44,3,3,1,2,3,2019,1,1,2,0,18,22,15,1,0,1,0,13.11078652208872,13.11078652208872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,6,1,0,0,13,3,1,476.2,0,0,0 +13330,16345,29738,-9,29737,29735,3,1,1,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1139.222616246315,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,18,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.24,53.7,7,1,0,1,13,3,1,476.2,0,0,0 +13330,16345,29739,-9,29737,29735,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.4377272584728,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,3,1,476.2,0,0,0 +13331,16346,29740,29742,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,2,8.996802272797767,9.57491322341448,0,2,0,-9,28,0,-1,54.4514120079742,0,0,0,50,1,4,1,3,2,2019,1,1,10,1,49,58,15,1,1,1,0,25.42928659557853,25.42928659557853,0,0,0,0,0,0,0,0,0,0,0,0,5.169776261228957,3,43.69,32.71,6,3,0,0,8,5,1,332,0,0,0 +13331,16346,29741,-9,29740,29742,5,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1188.188107791674,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,5,2,0,0,8,5,1,332,0,0,0 +13331,16346,29742,29740,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,4,8.847317868509265,9.038888693269625,0,2,0,-9,28,0,1,-52.55507756747972,0,0,0,49,1,2,1,1,1,2019,1,2,9,0,42,50,15,1,0,1,0,21.3498466367154,21.3498466367154,0,0,0,0,0,0,0,0,0,0,2.209194225158349,0,0,0,48.87,58.55,6,1,0,0,8,5,1,332,0,0,0 +13331,16347,29743,-9,29740,29742,3,1,0,20,2,0,2,0,2,0,7,2,0,4,0,6.466640381193608,5.940199073945767,3,0,0,0,-9,0,-1046.778845401478,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,31,12,0,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.073982865215278,0,0,0,28.67,65.07000000000001,4,2,0,0,8,2,1,1020,0,0,0 +13331,16348,29744,-9,29740,29742,4,1,1,18,2,0,2,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-962.3216181366015,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.99,56.43,4,2,0,0,8,5,1,193,0,0,0 +13332,16349,29745,29746,-9,-9,2,1,0,52,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-8,103.4087488454601,0,0,0,60,3,3,1,-9,-9,2019,3,1,12,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,6,2,1,891.5,0,0,0 +13332,16349,29746,29745,-9,-9,1,1,1,60,1,1,3,0,3,-9,2,1,0,3,7.262885384525912,7.438082798029037,0,2,0,-9,29,0,8,-18.47851476865564,0,0,0,52,3,3,3,3,3,2019,2,2,10,0,16,30,15,1,1,3,0,12.60596202610146,12.60596202610146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,5,3,0,0,6,2,1,891.5,0,0,0 +13332,16350,29747,29750,-9,-9,5,1,0,29,1,1,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,5,0,-2,-43.52282801373755,0,1,1,31,2,3,1,-9,-9,2019,3,3,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.06,57.69,7,3,0,0,6,2,1,893.2,0,0,0 +13332,16350,29748,-9,29747,29750,6,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.390076358118,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,893.2,0,0,0 +13332,16350,29749,-9,29747,29750,7,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.064953663789,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,6,2,1,893.2,0,0,0 +13332,16350,29750,29747,29745,29746,3,1,1,31,1,1,3,0,2,-9,2,1,0,3,7.482551898069647,7.785057653066449,0,2,0,-9,5,0,2,63.6781717130669,0,0,0,29,2,5,3,3,3,2019,2,5,7,0,27,27,15,1,0,3,0,7.702431248334464,7.702431248334464,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.86,49.03,6,3,0,0,6,2,1,893.2,0,0,0 +13332,16350,29751,-9,29747,29750,8,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-974.838858521363,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,2,1,893.2,0,0,0 +13332,16351,29752,-9,29745,29746,4,1,1,24,2,1,3,0,2,-9,2,1,0,4,8.149236683906334,8.183496544163193,0,3,0,0,0,-9,0,-1085.024088408619,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,44,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,6,4,1,480,0,0,0 +13333,16352,29753,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,4,3,0,3,0,7.152985634287416,7.344746798236938,3,0,-9,0,-9,0,-1164.846387084043,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.599071138724905,7.304861570280051,0,0,58.72,43.42,6,1,0,0,11,3,1,690,0,0,0 +13334,16353,29754,29755,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,4,0,7.92224303329148,7.63635842313808,1,0,-9,48,0,1,-155.9838024922586,0,0,0,76,2,2,3,-9,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.53843920969694,7.427608626331919,0,0,57.76,54.51,6,1,0,0,9,3,1,445,0,0,0 +13334,16353,29755,29754,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,4.480687131911242,4.153394151386891,1,0,-9,48,0,-1,37.52733711410605,0,0,0,77,1,4,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,4.87468049489776,0,0,0,0,1,1,0,4.087481751548869,4.246710756355099,0,0,56.1,33.87,4,1,0,0,9,3,1,445,0,0,0 +13335,16354,29756,-9,-9,-9,1,1,1,64,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1086.021918080082,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.69,31.73,4,1,0,0,12,1,1,287,0,0,0 +13336,16355,29757,-9,-9,-9,1,1,0,69,2,0,0,0,1,-9,4,3,0,4,0,7.566732189430375,7.167780555085621,3,0,0,0,-9,0,-1062.051953681893,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.3477375569430483,7.71015699324179,0,0,60.12,54.8,7,1,0,0,12,3,1,534,0,0,0 +13337,16356,29758,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,7.560013706342304,6.972554475446954,3,0,0,0,-9,0,-914.7711974996049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.954600748071203,7.589023874181836,0,0,62.66,52.4,6,1,0,0,12,3,1,727,0,0,0 +13338,16357,29759,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1095.916801676733,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,55,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.908434416646804,0,0,0,36.03,61.86,5,1,0,0,1,2,1,4018,0,0,0 +13339,16358,29760,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,2,0,2.85623744389179,2.56601077911984,3,0,0,0,-9,0,-1031.38939342209,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,2.842541786094236,0,0,51.42,29.35,4,1,0,0,4,2,0,345,0,0,0 +13340,16359,29761,29762,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,6.397066009423884,6.281541068695854,1,0,-9,9,0,3,59.10618905461756,0,0,0,65,2,5,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.624372244225158,6.53451074295022,0,0,55.93,52.62,6,1,0,0,9,5,1,1154.5,0,0,0 +13340,16359,29762,29761,-9,-9,2,1,0,65,1,0,0,0,2,-9,2,1,0,5,8.51493091782064,9.373744329702959,8.623428851504279,1,0,-9,9,0,-3,39.37923135756862,0,0,0,68,1,4,3,2,3,2019,2,1,6,0,19,0,15,1,0,4,0,36.74535010090651,36.74535010090651,0,0,0,0,0,0,0,1,1,0,6.323139876828012,8.808171794567917,0,3,57.06,57.76,6,1,0,0,9,5,1,1154.5,0,0,0 +13341,16360,29763,29764,-9,-9,2,1,0,57,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,34,0,-4,-9.518256426236791,0,0,0,61,1,3,1,3,3,2019,3,1,12,0,0,6,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,2,3,1,351,0,0,0 +13341,16360,29764,29763,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,3,7.614228000675655,7.868330305290827,0,1,0,-9,34,0,4,16.49962926541759,0,0,0,57,2,3,3,3,3,2019,2,2,13,2,2,6,15,1,2,3,0,120.5655245825197,120.5655245825197,0,0,0,0,0,0,0,1,1,0,7.783180801027504,0,0,0,48.54,46.62,6,3,0,0,2,3,1,351,0,0,0 +13342,16361,29765,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,2,1,0,3,6.758053701466928,6.769482144871292,5.561866722682762,3,0,0,0,-9,0,-874.3234568596655,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,10,10,15,1,1,-9,0,9.792647386709955,9.792647386709955,0,0,0,0,0,0,0,1,1,0,0,5.474396705195323,0,0,51,46,5,1,0,1,5,2,1,342,0,0,0 +13343,16362,29766,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,4.062848510689753,3.914102331863493,3,0,0,0,-9,0,-1007.366136895219,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.236912352611867,3.918150396167303,0,0,62.66,52.4,6,1,0,0,7,2,1,679,0,0,0 +13344,16363,29767,-9,-9,-9,1,1,1,49,3,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-914.4912541964602,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.42,30.58,2,1,1,0,12,1,0,1150,0,0,0 +13345,16364,29768,29769,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,6.605593279895707,6.572206631033679,1,0,-9,56,0,-3,124.5085090752291,0,0,0,73,2,3,3,-9,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.912723942906465,6.747487818602653,0,0,56.35,43.13,6,1,0,0,4,2,1,546.5,0,0,0 +13345,16364,29769,29768,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,5.845879530897832,6.148189572996322,1,0,-9,56,0,3,54.39336021297186,0,0,0,70,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,2.93504184165073,0,0,0,0,20.38442201307929,1,1,0,5.903737688133993,5.586210489311616,0,0,57.93,46.29,6,1,0,0,4,2,1,546.5,0,0,0 +13346,16365,29770,-9,-9,-9,1,1,1,50,3,0,0,0,1,-9,2,1,0,3,8.702719723650473,8.369712986169471,0,3,0,0,0,-9,0,-1226.499863964759,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,9,42,37,15,1,9,-9,0,15.14160900206786,15.14160900206786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.17,47.85,5,1,0,0,11,5,1,1651,0,0,0 +13347,16366,29771,29772,-9,-9,2,1,0,37,1,0,1,0,2,-9,8,3,1,5,0,0,0,2,0,-9,6,0,-7,141.8507439322166,0,0,1,44,2,5,1,-9,-9,2019,3,1,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.51,51.55,6,3,0,0,9,2,1,1419.666666666667,0,0,0 +13347,16366,29772,29771,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,5,7.466199158567736,7.460205015428451,0,2,0,-9,15,0,7,60.41625779216327,0,0,0,37,2,5,3,3,3,2019,2,2,7,0,30,30,15,1,0,3,0,7.227924356617669,7.227924356617669,0,0,0,0,0,0,0,1,1,0,0,0,3.995620571967922,1,60.02,56.42,6,2,0,0,9,2,1,1419.666666666667,0,0,0 +13347,16366,29773,-9,29771,29772,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.255422925045,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,9,2,1,1419.666666666667,0,0,0 +13348,16367,29774,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,2,0,7.470121923401869,7.199290926670773,3,0,0,0,-9,0,-1086.104908112203,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.486448319160198,0,0,35.79,39.04,4,1,0,0,4,3,1,1409,0,0,0 +13349,16368,29775,-9,29776,29777,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-950.8941304268702,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,5,1,972.6,0,0,0 +13349,16368,29776,29777,-9,-9,2,1,0,47,1,0,3,0,1,-9,2,1,0,3,9.05717916896824,9.134840560324946,0,2,0,-9,23,0,-3,-61.32378056848019,0,0,0,50,1,4,1,3,2,2019,1,1,11,1,38,40,15,1,1,1,0,29.73238001870707,29.73238001870707,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,1,2,5,1,972.6,0,0,0 +13349,16368,29777,29776,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,4,9.229559775895375,8.980827158567873,0,2,0,-9,16,0,3,99.55592634594829,0,0,0,47,1,3,1,2,1,2019,1,2,1,0,40,45,15,1,0,1,0,26.9887022642995,26.9887022642995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.56,59.1,5,1,0,1,2,5,1,972.6,0,0,0 +13349,16368,29778,-9,29776,29777,3,1,0,17,2,0,3,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-969.991411241912,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.82,62.33,7,1,0,0,2,5,1,972.6,0,0,0 +13349,16368,29779,-9,29776,29777,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.328890619479,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,972.6,0,0,0 +13350,16369,29780,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,3,7.996470672563584,7.899222456722661,0,3,0,0,0,-9,0,-1004.01239307466,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,47,35,15,1,9,-9,0,7.446456585427229,7.446456585427229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.44,35.36,6,1,0,0,12,4,0,534,0,0,0 +13350,16370,29781,-9,29780,-9,2,1,1,22,2,0,0,0,3,1,2,1,0,4,7.769068788677255,7.534607559719711,0,3,0,0,0,-9,0,-959.4749018989046,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,0,15,1,0,-9,1,5.692594782192117,5.692594782192117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,6,1,0,0,12,3,0,141,0,0,0 +13351,16371,29782,-9,-9,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,4,8.109294778454181,8.018706015480245,0,3,0,0,0,-9,0,-945.6517558846896,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,38,15,1,0,-9,0,9.617112870806066,9.617112870806066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.71,50.89,7,1,0,0,4,4,1,634,0,0,0 +13352,16372,29783,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,1,1,0,3,5.185952004841006,7.63989466343741,7.170066194924013,3,0,0,0,-9,0,-1049.957215186963,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,7,8,15,1,0,-9,0,3.154140928160531,3.154140928160531,0,0,0,0,0,0,0,1,1,0,0,7.07096532354487,0,0,66.22,41.19,6,1,0,0,12,3,1,310,0,0,0 +13353,16373,29784,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,3,6.806302509689254,6.859314846138796,5.152906174437399,3,0,0,0,-9,0,-955.9502014108257,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,8,30,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.333453833739678,5.070228023417836,0,0,43.94,41.97,6,1,0,1,11,2,1,332,0,0,0 +13354,16374,29785,-9,-9,-9,1,1,0,26,2,0,0,0,2,1,2,1,0,4,8.381941244975614,8.489376665636524,0,3,0,0,0,-9,0,-1020.280255385689,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,52,0,15,1,3,-9,0,9.107605548252938,9.107605548252938,0,0,0,0,0,0,0,0,0,0,1.1869743688598,0,0,0,40.23,61.31,6,1,0,0,2,4,1,134,0,0,0 +13355,16375,29786,-9,-9,-9,1,1,1,47,3,0,0,0,1,-9,2,1,0,3,9.47329842650783,10.0102212047095,0,3,0,0,0,-9,0,-992.5103603708723,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,40,40,15,1,0,-9,0,45.39769982795801,45.39769982795801,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.42,50.81,4,1,0,0,11,5,1,397,0,0,0 +13356,16376,29787,-9,-9,-9,1,1,0,44,3,0,0,0,2,-9,2,1,0,3,7.779345753879545,7.587438516061508,0,3,0,0,0,-9,0,-927.7692234298253,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,30,0,15,1,0,-9,0,9.93534297448284,9.93534297448284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.73,49.64,5,3,0,0,4,3,1,1030,0,0,0 +13357,16377,29788,-9,-9,-9,1,1,0,87,2,0,0,0,2,-9,4,3,0,1,0,8.659812474952593,8.512678838541406,3,0,0,0,-9,0,-991.1892102313245,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.814649100914769,0,0,29.54,35.45,4,1,0,0,11,5,1,116,0,0,0 +13358,16378,29789,29790,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,3,0,0,0,0,74,3,3,3,-9,-9,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123.1615244691441,1,43.1,23.61,3,1,0,0,13,1,1,1236,0,0,0 +13358,16378,29790,29789,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,4,0,-3,0,0,0,0,77,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,122.8738278881598,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,13,1,1,1236,0,0,0 +13359,16379,29791,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,7.687187492903258,7.305011312708706,3,0,0,0,-9,0,-1014.638935525557,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7251484807415,7.894739299378095,0,0,40.96,43.46,6,1,0,0,1,3,1,776,0,0,0 +13360,16380,29792,29793,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.861388709068399,7.806818945820877,1,0,-9,44,0,0,49.05122945708604,0,0,0,67,2,4,3,-9,-9,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.655919924883417,5.918847798815692,3,42.56,42.65,5,1,0,0,10,3,0,137,0,0,0 +13360,16380,29793,29792,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,5.84586080090424,5.819656256985025,1,0,-9,44,0,0,-177.9115586747481,-9,0,0,67,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.065205514661464,0,0,57.16,56.15,6,1,0,0,10,3,0,137,0,0,0 +13361,16381,29794,-9,29795,-9,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-893.157615958817,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,880,0,0,0 +13361,16381,29795,-9,-9,-9,1,1,0,46,3,0,3,0,3,-9,2,1,0,3,6.955691495980911,7.038436311911315,0,4,0,0,0,-9,0,-1037.551337599499,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,18,16,15,1,1,-9,0,7.22334828946672,7.22334828946672,0,0,0,0,0,0,0,1,1,0,0,0,3.761809033692585,3,32.82,51.25,2,1,0,0,12,2,0,880,0,0,0 +13361,16381,29796,-9,29795,-9,2,1,0,17,2,0,3,1,3,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-989.6595231427702,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,35.97,61.83,3,1,0,0,12,2,0,880,0,0,0 +13361,16381,29797,-9,29795,-9,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1024.789401224899,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,2,0,880,0,0,0 +13362,16382,29798,29799,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,6.115114543699915,6.406414282142045,1,0,-9,9,0,5,124.2314526025759,0,0,0,67,3,1,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.161704825365465,6.405815873347528,0,0,58.1,28.75,6,1,0,0,2,2,1,206.5,0,0,0 +13362,16382,29799,29798,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,9,0,-5,17.75863373111662,0,0,0,72,3,2,3,-9,-9,2019,4,1,24,12,0,0,15,4,12,4,0,0,0,1,0,8.870851308088117,0,0,0,0,1,1,0,0,0,0,0,34.69,21.98,3,1,0,1,2,2,1,206.5,0,0,0 +13363,16383,29800,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,-9,0,1,0,-1016.508724266651,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,1.464891281174368,0,0,0,0,0,1,1,0,0,0,0,0,44.81,31.19,2,1,0,0,11,1,1,336,0,0,0 +13364,16384,29801,29802,-9,-9,1,1,1,58,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,-9,30,0,1,46.94231392738064,0,0,0,57,1,4,1,2,3,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,3,1,1,0,7,5,1,641,0,0,0 +13364,16384,29802,29801,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,4,9.404350327781362,9.37955688229477,0,1,0,-9,30,0,-1,6.851045591386736,0,0,0,58,2,5,3,3,3,2019,2,1,12,3,45,43,15,1,3,3,0,27.52615505971086,27.52615505971086,0,0,0,0,0,0,0,0,0,0,3.354095841122789,0,0,0,47.62,56.48,5,1,0,0,7,5,1,641,0,0,0 +13364,16385,29803,-9,29802,29801,3,1,1,22,2,0,0,0,2,0,7,2,0,4,7.936133574506174,7.875561926468431,0,3,0,0,0,-9,0,-1108.934251861361,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,1,1,0,0,7,3,1,566,0,0,0 +13364,16386,29804,-9,29802,29801,4,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.163609700243741,8.080630643075192,0,3,0,0,0,-9,0,-1078.184614613985,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,1,0,46,37,15,1,0,-9,1,7.258971014967951,7.258971014967951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,1,118,0,0,0 +13365,16387,29805,29806,-9,-9,3,1,1,36,1,0,0,0,1,-9,2,1,0,4,8.155280079309218,8.430046365128023,0,1,0,-9,3,0,0,0,0,0,0,45,1,3,1,-9,-9,2019,1,1,8,0,33,38,15,1,0,1,0,13.36126908322945,13.36126908322945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,5,2,0,0,2,5,1,931.5,0,0,0 +13365,16387,29806,29805,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,3,8.134912542966205,8.278534647771467,0,1,0,-9,3,0,9,0,0,0,0,36,1,4,1,2,2,2019,1,3,12,0,37,37,15,1,0,1,0,11.73742292471358,11.73742292471358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,6,1,0,0,2,5,1,931.5,0,0,0 +13366,16388,29807,29808,-9,-9,2,1,1,70,1,0,0,0,1,-9,1,1,0,4,7.81184540895729,9.551172944339934,9.629381373253352,1,0,-9,7,0,6,-44.08075767890841,0,0,0,64,2,5,1,-9,-9,2019,1,1,6,0,4,10,15,1,0,1,0,49.4946105580922,49.4946105580922,0,0,0,0,0,0,0,1,1,0,5.886266367834229,9.284566718541061,0,0,59.53,56.44,7,1,0,0,10,5,1,643,0,0,0 +13366,16388,29808,29807,-9,-9,1,1,0,64,1,0,0,0,2,-9,2,1,0,5,6.644536748265693,7.33097767829061,0,1,0,-9,44,0,-6,14.12559406716521,0,0,0,70,1,4,1,2,1,2019,1,2,6,0,5,0,15,1,0,1,0,31.11873869005044,31.11873869005044,0,0,0,0,0,0,0,1,1,0,7.945543918935375,0,0,0,57.06,57.76,7,1,0,0,10,5,1,643,0,0,0 +13367,16389,29809,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1009.021274154345,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4293888551563,0,0,0,48.32,46.55,5,1,0,0,8,1,1,109,0,0,0 +13368,16390,29810,29811,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.93342098701538,8.404083799923121,6.533120068936574,1,0,-9,22,0,-5,25.34693527260128,0,0,0,59,2,2,1,3,2,2019,1,1,12,0,27,27,15,1,0,1,0,12.51153108897859,12.51153108897859,0,0,0,0,0,0,0,0,0,0,1.357339329781537,6.948290789257015,10.29765337357393,3,55.93,49.95,6,1,0,0,8,5,1,471.3333333333333,0,0,0 +13368,16390,29811,29810,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,2,8.855886295265375,8.896085167853546,0,1,0,-9,21,0,5,-100.1979031485182,0,0,0,54,2,3,1,2,2,2019,1,2,11,0,40,44,15,1,0,1,0,20.90128029151079,20.90128029151079,0,0,0,0,0,0,0,0,0,0,.8633340717368162,0,0,0,47.56,48.93,4,1,0,0,8,5,1,471.3333333333333,0,0,0 +13368,16390,29812,-9,29810,29811,3,1,0,17,2,0,0,1,2,0,7,2,0,3,5.746248284609701,5.741149136267916,0,1,0,0,0,-9,0,-973.3157450268526,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.5,56.8,6,1,0,0,8,5,1,471.3333333333333,0,0,0 +13369,16391,29813,-9,29818,29816,5,1,0,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1000.390987857878,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,3,0,0,2,3,1,618.6666666666666,0,0,0 +13369,16391,29814,-9,29818,29816,4,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.8573931883508,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,2,3,1,618.6666666666666,0,0,0 +13369,16391,29815,-9,29818,29816,6,1,1,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.560381598117,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,2,3,1,618.6666666666666,0,0,0 +13369,16391,29816,29818,-9,-9,1,1,1,40,1,0,4,0,1,-9,2,1,0,5,8.728921336888908,8.605271018687677,0,2,0,-9,21,0,-4,40.13662650561957,0,0,0,44,1,3,3,3,3,2019,2,2,5,0,40,50,15,1,0,3,0,21.97207925754478,21.97207925754478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.81,56.94,7,3,0,0,2,3,1,618.6666666666666,0,0,0 +13369,16391,29817,-9,29818,29816,3,1,0,17,2,0,4,1,3,0,7,2,0,5,0,4.922712374429947,5.261690604267256,2,0,0,0,-9,0,-996.7852523695726,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.618179857595156,0,0,0,50.48,56.75,7,3,0,0,2,3,1,618.6666666666666,0,0,0 +13369,16391,29818,29816,-9,-9,2,1,0,44,1,0,4,0,1,-9,6,3,0,3,0,0,0,2,0,-9,21,0,4,-123.4502907473688,0,0,1,40,1,5,1,3,1,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.671681686575536,0,0,0,46,50,6,3,0,0,2,3,1,618.6666666666666,0,0,0 +13370,16392,29819,29820,-9,-9,1,1,0,41,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,17,0,0,15.99680146337458,0,0,1,41,2,5,1,2,2,2019,3,2,19,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,3,2,0,0,7,3,1,981.3333333333334,0,0,0 +13370,16392,29820,29819,-9,-9,2,1,1,41,1,0,2,0,2,-9,1,1,0,5,8.172278997339571,8.335722770872785,0,2,0,-9,17,0,0,40.43177959321802,0,0,0,41,2,1,3,-9,-9,2019,2,1,8,0,24,24,15,1,0,3,0,23.60295075825054,23.60295075825054,0,0,0,0,0,0,0,1,1,0,0,0,2.669370672110351,1,54.69,57.47,5,1,0,0,7,3,1,981.3333333333334,0,0,0 +13370,16392,29821,-9,29819,29820,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-939.3821112779788,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,52.94,4,2,0,0,7,3,1,981.3333333333334,0,0,0 +13371,16393,29822,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,2,0,6.072323124899179,6.457529801064895,3,0,0,0,-9,0,-979.0347645907769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.555911235487082,6.220995395272863,0,0,60.19,32.12,6,1,0,0,2,2,0,967,0,0,0 +13372,16394,29823,29824,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,15,0,0,-50.78470500444717,0,0,0,80,2,2,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,8.734379664886621,0,1,1,0,.8900192116654713,0,0,0,51.48,13.33,6,1,0,0,5,3,1,334,0,0,0 +13372,16394,29824,29823,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,2,0,7.762409084577012,7.789876431980983,1,0,-9,15,0,9,41.33027198340022,0,0,0,71,2,1,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.911839402968156,7.956387856055366,0,0,59.11,26.09,5,1,0,0,5,3,1,334,0,0,0 +13372,16395,29825,-9,29823,29824,3,1,1,49,3,0,0,0,2,-9,2,1,0,2,7.834893607885584,7.985808248166907,0,3,0,0,0,-9,0,-852.6297179109906,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,39,39,15,1,0,-9,1,6.107714621880533,6.107714621880533,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.75,39.77,5,1,0,0,5,3,1,633,0,0,0 +13373,16396,29826,-9,-9,29828,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-955.3309340800768,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,3,1,2530,0,0,0 +13373,16396,29827,-9,-9,29828,2,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,5.744671791441891,5.603435178052583,4,0,0,0,-9,0,-1126.140662957198,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.565066918582397,0,0,0,48.62,53.12,6,1,0,0,12,3,1,2530,0,0,0 +13373,16396,29828,-9,-9,-9,1,1,1,52,3,0,2,0,2,-9,2,1,0,3,8.541724425286617,8.181483782808222,0,4,0,-9,0,1,0,-894.362526300505,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,37,15,1,0,-9,0,13.60537618610376,13.60537618610376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.08,40.76,4,1,0,0,12,3,1,2530,0,0,0 +13374,16397,29829,29830,-9,-9,2,1,1,64,1,0,0,0,3,-9,2,1,0,3,7.159245279996303,7.114884992933711,0,1,0,-9,6,0,-2,-123.9579675306727,0,0,0,66,3,4,3,3,3,2019,2,1,7,0,16,18,15,1,0,4,0,8.296213439146646,8.296213439146646,0,0,0,0,0,0,0,1,1,0,3.074893082964078,0,0,0,57.03,45.36,6,1,0,0,5,2,1,689.5,0,0,0 +13374,16397,29830,29829,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,5.94938659939041,6.059869314120266,1,0,-9,6,0,2,-20.24629654678273,0,0,0,64,3,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.779880313115391,5.678738050032937,0,0,57.16,56.15,6,1,0,0,5,2,1,689.5,0,0,0 +13375,16398,29831,-9,-9,-9,1,1,1,90,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1005.158426051243,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,6,1,0,0,7,1,0,864,0,0,0 +13376,16399,29832,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-928.3327096018095,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.5958651870911,3,30.23,44.75,2,4,0,0,8,1,0,143,0,0,0 +13377,16400,29833,29834,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,7.529066531791365,7.513065845935365,1,0,-9,45,0,8,22.69947016553734,0,0,0,65,2,5,3,2,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.420757019604954,7.352365585391841,0,0,51.4,43.72,6,1,0,0,7,2,1,1098.5,0,0,0 +13377,16400,29834,29833,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,5,0,5.835456859041142,5.670862262030906,1,0,-9,45,0,-8,121.6387477319395,0,0,0,73,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.965622816029353,5.938049327888653,0,0,49.25,61.25,6,1,0,0,7,2,1,1098.5,0,0,0 +13378,16401,29835,29837,-9,-9,3,1,1,29,1,2,4,0,2,-9,2,1,0,4,7.949260745280108,7.882414993216732,0,2,0,-9,5,0,2,-61.13987446942825,0,1,0,27,2,4,3,-9,-9,2019,2,1,6,0,40,39,15,1,0,3,0,10.00193572969916,10.00193572969916,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,7,2,1,573.6666666666666,0,0,0 +13378,16401,29836,-9,29837,29835,4,1,0,3,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.6477272949487,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,1,573.6666666666666,0,0,0 +13378,16401,29837,29835,-9,-9,1,1,0,27,1,2,4,0,2,-9,6,3,0,4,0,4.650351831235558,4.483659849028298,2,0,-9,5,0,-2,-52.27299319792787,0,1,1,29,2,4,1,-9,-9,2019,3,3,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.548576146951829,0,0,0,35.96,52.23,7,1,0,0,7,2,1,573.6666666666666,0,0,0 +13378,16401,29838,-9,29837,29835,2,1,0,7,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.171079106501,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,7,2,1,573.6666666666666,0,0,0 +13378,16401,29839,-9,29837,29835,6,1,0,1,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.9371797976038,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,7,2,1,573.6666666666666,0,0,0 +13378,16401,29840,-9,29837,29835,5,1,0,1,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.397782833542,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,7,2,1,573.6666666666666,0,0,0 +13379,16402,29841,29842,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,5,0,6.238084426131423,6.146316338826077,1,0,-9,7,0,9,208.0294236587081,0,0,0,55,2,4,1,3,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.136236338281134,0,0,48.18,61.8,6,1,0,0,10,4,1,425.5,0,0,0 +13379,16402,29842,29841,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.291695291797934,8.4579782524903,0,1,0,-9,7,0,0,-37.32117227733802,0,0,0,64,1,5,3,2,2,2019,2,1,13,1,39,39,15,1,1,4,0,12.25172243305401,12.25172243305401,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,43.32,4,1,0,0,10,4,1,425.5,0,0,0 +13380,16403,29843,29844,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,3,7.180208077106543,7.317611502385883,0,1,0,-9,6,0,-1,-244.4502252687927,0,0,0,59,2,3,3,3,3,2019,2,2,8,0,30,30,15,1,0,3,0,3.996922564996273,3.996922564996273,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.62,4,1,0,1,13,2,1,597,0,0,0 +13380,16403,29844,29843,-9,-9,2,1,1,59,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,6,0,1,27.52464421793182,0,0,0,58,1,3,1,3,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.08113507047551,3,60.05,45.35,5,1,1,0,13,2,1,597,0,0,0 +13381,16404,29845,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,2,7.489745702428448,7.626754832575147,0,3,0,0,0,-9,0,-1003.925499831709,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,30,20,15,1,1,-9,0,6.237397288848306,6.237397288848306,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.35,38.4,2,1,0,0,5,3,1,1366,0,0,0 +13382,16405,29846,29847,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,4,0,4.648669882603366,4.539566428399342,1,0,-9,56,0,-5,177.6985744987222,0,0,0,79,2,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.710760398791198,4.858260040556758,67.79856898001769,1,51.73,56.3,6,1,0,0,4,3,1,575.5,0,0,0 +13382,16405,29847,29846,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,7.836156309799849,8.108373865195793,1,0,-9,56,0,5,-26.97313428754796,0,0,0,74,3,4,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,7.353010447126032,0,0,0,0,1,1,0,0,7.671991825494591,0,0,39.23,22.52,5,1,0,0,4,3,1,575.5,0,0,0 +13383,16406,29848,-9,-9,-9,1,1,1,66,2,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-934.0609578795509,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.33,23.79,5,4,0,0,2,1,0,303,0,0,0 +13384,16407,29849,29850,-9,-9,1,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,7.107727022287336,7.257659983773205,1,0,-9,3,0,0,-43.32281560910617,0,0,0,70,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.313537554513108,0,0,57.34,50.6,6,1,0,0,4,3,1,362.5,0,0,0 +13384,16407,29850,29849,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,7.886556266738355,7.785479218293343,1,0,-9,3,0,0,-66.44135619126078,0,0,0,70,1,4,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.477026948205332,7.609298922590119,0,0,57.16,56.15,6,1,0,0,4,3,1,362.5,0,0,0 +13385,16408,29851,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,6.58737062209159,6.657477979193469,3,0,0,0,-9,0,-1046.756970422975,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,4.741126567649623,0,0,0,1,1,0,0,6.555890573479108,0,0,49.24,19.67,6,1,0,0,13,2,1,556,0,0,0 +13386,16409,29852,29853,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.915568999159831,8.973006575778044,1,0,-9,8,0,0,6.214639402078016,0,0,0,71,2,4,3,2,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.003502867945784,9.143755669114372,0,0,57.16,56.15,7,1,0,0,9,5,1,434.5,0,0,0 +13386,16409,29853,29852,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,4.686152538007196,4.621058315244789,1,0,-9,8,0,0,71.56811031355764,0,0,0,71,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.517628740053286,4.864851637597858,0,0,54.2,57.49,6,1,0,0,9,5,1,434.5,0,0,0 +13387,16410,29854,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,6.395045606209954,6.730283373135721,3,0,0,0,-9,0,-994.4427138792906,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.50632376686702,0,3,58.47,50.22,6,1,0,0,9,2,1,871,0,0,0 +13388,16411,29855,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-902.5643948505466,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.87,41.3,7,4,0,0,8,1,0,410,0,0,0 +13389,16412,29856,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1026.971933127088,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.2,30.86,1,1,0,1,12,1,0,184,0,0,0 +13390,16413,29857,29858,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,3,7.803594283384807,7.752808498602583,0,2,0,-9,20,0,10,8.818283208439468,0,0,0,42,2,2,1,-9,-9,2019,1,1,11,2,44,40,15,1,2,1,0,5.824833647256455,5.824833647256455,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,52.03,5,1,0,0,11,3,1,1067.333333333333,0,0,0 +13390,16413,29858,29857,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,2,7.646205722201053,7.566236579392181,0,2,0,-9,20,0,-10,59.04876751766894,0,0,1,52,2,3,1,2,2,2019,1,2,20,8,80,40,15,1,8,1,0,2.616388009347451,2.616388009347451,0,0,0,0,0,0,0,1,1,0,3.693607468414646,0,0,0,40.5,46.83,3,1,0,0,11,3,1,1067.333333333333,0,0,0 +13390,16413,29859,-9,29858,29857,3,1,1,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-940.7616790045041,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,3,1,1067.333333333333,0,0,0 +13391,16414,29860,29862,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.791370560773331,8.866324180571612,0,2,0,-9,8,0,2,71.20579343073513,0,0,0,42,2,2,1,3,2,2019,1,2,12,0,40,50,15,1,0,1,0,24.16047916404316,24.16047916404316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,9,5,1,905,0,0,0 +13391,16414,29861,-9,29862,29860,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.281306661911,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,5,1,905,0,0,0 +13391,16414,29862,29860,-9,-9,2,1,0,42,1,0,1,0,2,-9,2,1,0,2,7.431700593901708,7.391508661809213,0,2,0,-9,8,0,-2,81.8982462604594,0,0,1,44,2,4,1,-9,-9,2019,1,1,12,0,20,20,15,1,0,1,0,8.54254279859911,8.54254279859911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.39,52.89,6,1,0,0,9,5,1,905,0,0,0 +13392,16415,29863,29864,-9,-9,2,1,1,54,1,0,0,0,3,-9,2,1,0,4,8.321080337723012,8.265210539684928,0,1,0,-9,17,0,1,-8.290817103117034,0,0,0,53,3,2,1,-9,-9,2019,1,1,13,1,39,39,15,1,1,1,0,11.23833241170638,11.23833241170638,0,0,0,0,0,0,0,0,0,0,0,0,15.8456523107064,2,57.16,56.15,6,1,0,0,7,4,1,483.5,0,0,0 +13392,16415,29864,29863,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,2,7.307109979673622,6.930009376032974,0,1,0,-9,15,0,-1,-3.003844332963983,0,0,0,54,3,4,1,2,2,2019,1,2,16,5,10,25,15,1,5,1,0,13.59997205409383,13.59997205409383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.35,32.05,5,1,0,0,7,4,1,483.5,0,0,0 +13393,16416,29865,29866,-9,-9,1,1,0,47,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,6,0,-15,0,0,0,0,62,3,3,3,3,1,2019,4,2,1,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,33.48,7,1,0,0,5,1,0,819,0,0,0 +13393,16416,29866,29865,-9,-9,2,1,1,62,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,6,0,15,0,0,0,0,47,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,0,0,5,1,0,819,0,0,0 +13394,16417,29867,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.527563068007353,8.415775538150609,0,3,0,-9,0,-9,0,-998.6051015990369,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,49,0,15,1,0,-9,0,9.601245944171813,9.601245944171813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.83,55.13,5,1,0,0,9,4,0,873,0,0,0 +13395,16418,29868,29869,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,6.186306272987762,6.095127811153351,1,0,-9,9,0,1,113.6641833594971,-9,0,0,67,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.143120761127435,6.121520601529993,0,0,57.16,56.15,6,1,0,0,5,2,1,330.5,0,0,0 +13395,16418,29869,29868,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,44,0,-1,111.1673277341821,0,0,0,68,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.057160202372815,0,0,0,57.16,56.15,7,1,0,0,5,2,1,330.5,0,0,0 +13396,16419,29870,29871,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,3.806826909121774,3.763079470200291,1,0,-9,10,0,3,57.38498364357695,0,0,0,78,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.854702870515203,0,0,60.12,54.8,6,1,0,0,12,2,1,1148,0,0,0 +13396,16419,29871,29870,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,4,0,5.246153407941613,5.213564188764437,1,0,-9,10,0,-3,295.3438600414234,0,0,0,81,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.157525538594743,0,0,57.16,56.15,6,1,0,0,12,2,1,1148,0,0,0 +13397,16420,29872,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,3,0,6.463448324301426,6.186086458830082,3,0,0,0,-9,0,-1051.956358724845,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.374852761424425,0,0,52.33,43.43,5,1,0,0,2,2,0,314,0,0,0 +13398,16421,29873,29874,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,47,0,-5,-107.0763517211962,0,0,0,70,3,4,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,13,3,1,612.5,0,0,0 +13398,16421,29874,29873,-9,-9,1,1,1,70,1,0,0,0,3,-9,1,1,0,4,8.113643886675405,8.161729577386618,4.880080918102229,1,0,-9,47,0,5,-67.25197811728131,0,0,0,65,2,4,3,3,3,2019,2,2,6,0,40,57,15,1,0,4,0,9.766235727895831,9.766235727895831,1,0,7.149085622861025,0,0,0,0,1,1,0,5.050277651930211,4.572312563790284,0,0,58.72,51.29,1,1,0,0,13,3,1,612.5,0,0,0 +13399,16422,29875,29876,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,6.9633077746934,7.224950385584019,1,0,-9,9,0,0,-40.27071070330592,0,0,0,72,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.820547642582232,0,0,58.32,50.22,6,1,0,0,4,2,1,154,0,0,0 +13399,16422,29876,29875,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,5.76914836830168,5.881581805627024,1,0,-9,9,0,0,-72.93698860094955,0,0,0,72,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.333175619357897,5.543904946506602,0,0,56.69,29.53,4,1,0,0,4,2,1,154,0,0,0 +13400,16423,29877,-9,29880,29879,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1048.402537833179,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,7,4,0,0,7,3,0,1214,0,0,0 +13400,16423,29878,-9,29880,29879,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.2430324595691,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,4,0,0,7,3,0,1214,0,0,0 +13400,16423,29879,29880,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,5,7.353181175325812,7.483361353779357,0,2,0,-9,25,0,1,-35.19643248763883,0,0,0,47,2,4,1,3,3,2019,1,2,11,4,38,16,15,1,4,1,0,6.666464848340113,6.666464848340113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.62,40.11,4,4,0,0,7,3,0,1214,0,0,0 +13400,16423,29880,29879,-9,-9,2,1,0,47,1,0,2,0,2,-9,1,1,0,4,7.581529606929566,7.497051326313532,0,2,0,-9,25,0,-1,81.98277862351617,0,0,0,48,2,5,1,2,1,2019,1,1,10,0,28,29,15,1,0,1,0,8.366234752050273,8.366234752050273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,4,0,0,7,3,0,1214,0,0,0 +13401,16424,29881,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,1,0,6.795063445209818,6.906901840673378,3,0,0,0,-9,0,-1019.659633046638,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.112960131662291,6.995560611437695,0,0,61.11,22.59,5,1,0,0,11,2,1,952,0,0,0 +13402,16425,29882,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,2,0,5.735891700834907,5.844120947531621,3,0,0,0,-9,0,-880.3459450549085,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.840391477917731,5.693476784830515,0,0,59.54,30.92,6,1,0,0,12,2,1,737,0,0,0 +13403,16426,29883,29884,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,6.801067083824378,6.83906790899516,0,1,0,-9,15,0,-5,1.017039032295499,0,0,0,65,3,2,3,2,2,2019,2,1,5,0,16,15,15,1,0,4,0,7.309235766258151,7.309235766258151,0,0,0,0,0,0,0,1,1,0,0,0,12.10907682074084,3,51.41,56.15,7,1,0,0,2,3,0,254.5,0,0,0 +13403,16426,29884,29883,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,7.539628718930632,7.019272730217756,1,0,-9,7,0,5,139.6168281395574,0,0,0,60,2,3,1,-9,-9,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.136101726419147,0,0,44.22,33.94,4,1,0,0,2,3,0,254.5,0,0,0 +13404,16427,29885,29886,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,4,0,7.640646094713729,7.790385661223066,1,0,-9,40,0,-5,117.6966953115741,0,0,0,66,3,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.628062648904661,7.619324327832786,0,0,54.2,57.49,7,1,0,0,10,3,1,2680,0,0,0 +13404,16427,29886,29885,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,6.072432921684503,5.371679799451508,1,0,-9,40,0,5,33.31809183353559,0,0,0,61,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.52559243785743,5.88361750290664,0,0,62.1,51.16,6,1,0,0,10,3,1,2680,0,0,0 +13405,16428,29887,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.38534500884837,8.375655990287667,0,3,0,0,0,-9,0,-910.8157459233506,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,1,0,45,40,15,1,0,-9,0,11.23096986798565,11.23096986798565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,12,5,1,800,0,0,0 +13406,16429,29888,-9,29893,-9,2,1,1,9,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1069.580114790581,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,1,0,985,0,0,0 +13406,16429,29889,-9,29893,-9,6,1,0,0,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-964.4363876863013,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,1,0,985,0,0,0 +13406,16429,29890,-9,29893,-9,3,1,0,7,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1000.987695138944,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,985,0,0,0 +13406,16429,29891,-9,29893,-9,4,1,0,5,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-912.9820443736795,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,1,0,985,0,0,0 +13406,16429,29892,-9,29893,-9,5,1,1,2,2,2,5,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-991.5489366468179,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,1,0,985,0,0,0 +13406,16429,29893,-9,-9,-9,1,1,0,33,2,2,5,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1022.95167227233,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,53.05,4,1,0,1,9,1,0,985,0,0,0 +13407,16430,29894,29895,-9,-9,2,1,0,28,1,1,1,0,2,-9,2,1,0,5,7.795149170034997,8.176810769646622,0,2,0,-9,11,0,-5,-8.607900616948911,0,1,1,33,2,5,1,2,2,2019,1,1,2,0,34,48,15,1,0,1,0,9.946426891566851,9.946426891566851,0,0,0,0,0,0,0,1,1,0,4.518703658786714,0,2.045986875082929,3,54.1,59.11,6,1,0,0,10,4,1,416,0,0,0 +13407,16430,29895,29894,-9,-9,1,1,1,33,1,1,1,0,2,-9,2,1,0,5,8.245036999968072,8.279382553013139,0,2,0,-9,11,0,5,-61.90940150087562,0,0,0,28,2,5,1,2,2,2019,1,2,24,12,45,40,15,1,12,1,0,10.02721170003727,10.02721170003727,0,0,0,0,0,0,0,1,1,0,4.827044856883426,0,11.95815130270688,3,33.04,66.23999999999999,5,1,0,0,10,4,1,416,0,0,0 +13407,16430,29896,-9,29894,29895,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.2021258742922,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,416,0,0,0 +13408,16431,29897,-9,-9,-9,1,1,0,68,2,0,0,0,2,-9,4,3,0,2,0,6.974833946780126,6.766921895328081,3,0,0,0,-9,0,-1026.763462602552,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1284672504728286,7.401592583094127,0,0,43.43,30.37,5,1,0,0,11,2,1,629,0,0,0 +13409,16432,29898,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,5,8.243075508889918,8.48281520451332,6.635148394253746,3,0,0,0,-9,0,-979.9693392012042,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,39,15,1,0,-9,0,13.48065619302674,13.48065619302674,0,0,0,0,0,0,0,1,1,0,0,6.924880762533788,0,0,43.92,62.31,3,1,0,0,7,5,1,117,0,0,0 +13410,16433,29899,29900,-9,-9,1,1,0,60,1,0,0,0,1,-9,4,3,0,3,0,5.581940318529467,5.411305676133737,1,0,-9,10,0,0,-126.9972732955026,0,0,0,60,1,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.895733606018168,5.119392797175163,0,0,57.33,53.46,6,1,0,0,2,3,1,333,0,0,0 +13410,16433,29900,29899,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,3,0,8.336857318074399,7.828455184513019,1,0,-9,10,0,0,-16.35515333196371,0,0,0,60,1,3,3,1,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.369309083082811,8.203446542604771,0,3,51.5,45.28,6,1,0,0,2,3,1,333,0,0,0 +13411,16434,29901,-9,-9,-9,1,1,1,28,2,0,0,0,2,-9,1,1,0,4,8.692230687086491,8.515110816933806,0,3,0,0,0,-9,0,-1002.247169398735,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,20,7,45,32,15,1,7,-9,0,10.6260285517262,10.6260285517262,0,0,0,0,0,0,0,0,0,0,.514075709724348,0,0,0,15.51,67.33,2,1,0,1,4,4,1,170,0,0,0 +13412,16435,29902,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-937.1825573499817,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.75,36.14,2,1,1,1,13,1,0,179,0,0,0 +13413,16436,29903,29904,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,4,0,8.083860324420565,7.937480566301412,1,0,-9,6,0,2,58.77310407357596,0,0,0,60,1,3,3,-9,-9,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.173225425401436,7.936505222213758,0,0,60.14,46.44,7,1,0,0,8,4,1,645,0,0,0 +13413,16436,29904,29903,-9,-9,2,1,0,60,1,0,0,0,1,-9,4,3,0,3,0,8.275136459394471,8.201292870149441,1,0,-9,6,0,-2,-8.24285993571119,0,0,0,62,1,4,3,2,2,2019,4,1,20,7,0,60,15,4,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.336843348478092,8.26313166694295,28.72723451148356,3,43.37,57.28,6,3,0,0,8,4,1,645,0,0,0 +13414,16437,29905,29906,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,7.231785521803047,7.205854447767462,1,0,-9,47,0,0,119.8787093225393,0,0,0,67,2,3,3,3,3,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.304758865574147,0,0,38.39,48.48,3,1,0,0,9,2,1,345,0,0,0 +13414,16437,29906,29905,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,8,0,0,-109.115842133472,0,0,0,67,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.780723331054573,0,0,0,52,48,5,1,0,0,9,2,1,345,0,0,0 +13415,16438,29907,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,7.084424571360752,6.854024411336226,0,3,0,0,0,-9,0,-1080.767173250109,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,16,0,15,1,5,-9,0,7.261336125289056,7.261336125289056,0,0,0,0,0,0,0,1,1,0,4.788525023011101,0,0,0,48.14,53.42,4,1,0,1,9,2,1,861,0,0,0 +13415,16439,29908,-9,29907,-9,2,1,0,21,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1036.125046921325,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.21,49.58,5,1,1,0,9,1,1,633,0,0,0 +13416,16440,29909,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,3,0,6.979645570548466,7.171243298680507,3,0,0,0,-9,0,-1109.300726960404,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.105151625605271,7.034405193937979,0,0,55.47,52.91,6,1,0,0,10,2,1,738,0,0,0 +13417,16441,29910,29911,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,4,7.609399170531466,8.270373125473109,7.38557785516901,1,0,-9,7,0,-2,74.51227528515238,0,0,0,63,1,4,3,-9,-9,2019,2,1,9,0,16,11,15,1,0,4,0,17.46561986882326,17.46561986882326,0,0,0,0,0,0,0,1,1,0,1.788808350641219,7.667657839000865,0,0,54.2,57.49,6,1,0,0,7,4,1,152.5,0,0,0 +13417,16441,29911,29910,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,8.212916665881655,7.809635219438828,1,0,-9,34,0,2,-148.5888040801839,0,0,0,61,1,4,1,2,1,2019,3,2,13,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.376676669871221,7.872891402376203,73.20923085742866,3,49.8,56.68,6,1,0,0,7,4,1,152.5,0,0,0 +13418,16442,29912,29913,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,5.825363921276815,6.118418691277223,1,0,-9,50,0,7,-34.48252980768959,0,0,0,67,3,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0540597231099529,6.177564296369816,0,0,59.04,43.07,6,1,0,0,9,3,1,489,0,0,0 +13418,16442,29913,29912,-9,-9,1,1,0,67,1,0,0,0,3,-9,2,1,0,3,7.773580841845238,7.696656751636862,0,1,0,-9,50,0,-7,-52.04357517074449,0,0,0,74,3,3,3,3,-9,2019,2,2,11,0,0,12,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.754291915154654,0,0,0,49,47,5,1,0,0,9,3,1,489,0,0,0 +13419,16443,29914,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,5,0,7.41976513675178,7.356437201967937,3,0,0,0,-9,0,-1043.813280374025,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.751152299825735,7.089603415020971,0,0,51.34,46.65,7,1,0,0,2,3,0,85,0,0,0 +13420,16444,29915,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,2,0,6.379642671443295,6.361552337461386,3,0,0,0,-9,0,-1046.113220870081,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,1.490365207308053,0,0,0,0,54.57567315744322,1,1,0,0,6.715530867698746,0,0,50.52,23.09,4,1,0,0,10,2,0,347,0,0,0 +13421,16445,29916,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.459799902282674,8.40966327814473,0,3,0,0,0,-9,0,-948.732021752216,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,1,50,60,15,1,1,-9,0,9.123223973475028,9.123223973475028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,6,1,0,0,9,4,0,822,0,0,0 +13422,16446,29917,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,3,3,0,4,0,6.089998616180873,5.843760407631571,3,0,0,0,-9,0,-959.2507619309025,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.910405200731005,5.613810391593326,0,0,51.24,58.84,5,1,1,0,13,2,1,166,0,0,0 +13423,16447,29918,29919,-9,-9,1,1,1,71,1,0,0,0,1,-9,1,1,0,4,8.120141111747669,8.145730883347072,5.040696320416295,1,0,-9,9,0,7,-24.26827778593183,0,0,0,64,2,4,3,3,3,2019,2,2,8,0,10,0,15,1,0,4,0,35.30658481159574,35.30658481159574,0,0,0,0,0,0,0,1,1,0,8.893455642079379,5.2937130242347,0,0,55.93,52.62,6,1,0,0,12,4,0,464,0,0,0 +13423,16447,29919,29918,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.698107758405764,7.760730150232797,1,0,-9,9,0,-7,39.88434247366887,0,0,0,71,1,4,1,2,3,2019,3,1,12,0,0,7,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.83330429821495,8.053573071418628,0,0,51.24,58.84,6,1,0,0,12,4,0,464,0,0,0 +13424,16448,29920,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,4,0,4.797105804060108,4.951391031887695,3,0,0,0,-9,0,-1108.153573515502,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.791569563419245,4.582407982771675,0,0,69.47,25.81,6,1,0,0,7,2,1,720,0,0,0 +13425,16449,29921,-9,29925,29923,5,1,1,15,2,0,2,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-1059.90878542131,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,3,1,0,0,9,4,1,1135.8,0,0,0 +13425,16449,29922,-9,29925,29923,6,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1057.935455456869,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,4,1,1135.8,0,0,0 +13425,16449,29923,29925,-9,-9,2,1,1,57,1,0,2,0,2,-9,1,1,0,4,7.338443793286157,7.972130133304949,7.043686142185149,2,0,-9,28,0,4,-153.3461427619793,0,0,0,53,2,2,1,3,2,2019,1,1,11,0,30,35,15,1,0,1,0,6.240504657607323,6.240504657607323,0,0,0,0,0,0,0,1,1,0,0,7.249485074614063,0,0,54.2,57.49,4,1,0,0,9,4,1,1135.8,0,0,0 +13425,16449,29924,-9,29925,29923,4,1,0,17,2,0,2,1,2,0,7,2,0,3,6.074718569897994,6.220709459872992,0,2,0,0,0,-9,0,-1073.015555674011,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,7,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.078434669236611,0,0,0,27.73,64.27,4,1,0,0,9,4,1,1135.8,0,0,0 +13425,16449,29925,29923,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,2,8.559085992736053,8.50375383314868,0,2,0,-9,28,0,-4,-41.27459730569855,0,0,0,57,2,4,1,3,2,2019,1,2,15,3,42,45,15,1,3,1,0,15.4287282158401,15.4287282158401,0,0,0,0,0,0,0,1,1,0,0,0,.9766548596185349,3,37.46,47.97,2,1,0,1,9,4,1,1135.8,0,0,0 +13425,16450,29926,-9,29925,29923,3,1,1,20,2,0,2,0,2,-9,2,1,0,4,8.182058233516448,8.539074780584439,0,3,0,0,0,-9,0,-973.2315963022318,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,41,41,15,1,0,-9,1,9.360995815776533,9.360995815776533,0,0,0,0,0,0,0,1,1,0,4.013901372234999,0,0,0,51.83,57.2,5,1,0,0,9,4,1,177,0,0,0 +13426,16451,29927,29928,-9,-9,1,1,0,46,1,0,0,0,1,-9,2,1,0,2,8.379074137006443,8.548195397648854,0,1,0,-9,21,0,1,-119.4407797242063,0,0,0,45,1,4,1,2,2,2019,1,2,12,0,38,40,15,1,0,1,0,11.95621617518587,11.95621617518587,0,0,0,0,0,0,0,0,0,0,7.829754396120578,0,0,0,40.82,42.52,6,3,0,0,12,5,1,157,0,0,0 +13426,16451,29928,29927,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,4,8.89209873213121,9.261018752890868,0,1,0,-9,21,0,-1,74.07813641655396,0,0,0,46,1,2,1,3,3,2019,1,1,11,2,38,39,15,1,2,1,0,26.79471656516306,26.79471656516306,0,0,0,0,0,0,0,0,0,0,7.907173298322448,0,0,0,52.82,53.97,6,3,0,0,12,5,1,157,0,0,0 +13427,16452,29929,29930,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,1,0,7.789491402321744,7.422635168169979,1,0,-9,31,0,10,-83.36679326587746,0,0,0,49,2,3,1,3,3,2019,3,2,25,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.757725562757901,7.690489510079289,0,0,24.33,21.59,3,3,0,0,8,3,1,731.5,0,0,0 +13427,16452,29930,29929,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.531434555216634,7.218749551614642,0,1,0,-9,29,0,-10,60.09888308194773,0,0,0,59,1,1,3,2,2,2019,2,1,14,2,23,23,15,1,2,4,0,8.722084123392197,8.722084123392197,0,0,0,0,0,0,0,1,1,0,.384569196226245,0,0,0,36.35,53.49,5,3,0,0,8,3,1,731.5,0,0,0 +13427,16453,29931,-9,29930,29929,3,1,1,27,2,0,0,0,2,-9,2,1,0,3,8.287589033474045,8.128128345970726,0,3,0,0,0,-9,0,-992.8312269869964,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,41,0,15,1,0,-9,1,8.258159996034451,8.258159996034451,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,57.03,5,3,0,0,8,4,1,245,0,0,0 +13427,16454,29932,-9,29930,29929,4,1,0,25,2,0,0,0,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-957.9048638462001,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,15,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.932341731993058,0,0,0,34.44,48.18,5,3,0,0,8,1,1,1213,0,0,0 +13428,16455,29933,-9,-9,-9,1,1,0,85,3,0,1,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-991.2429521278074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,0,0,13.16558373013101,0,0,0,1,1,0,0,0,0,0,45.77,21.27,7,1,0,0,8,1,0,149,0,0,0 +13428,16456,29934,29936,-9,-9,5,1,1,59,1,0,1,0,2,-9,2,1,0,1,8.769582300827354,8.9775218011647,0,2,0,-9,8,0,-1,85.02827143211324,0,0,0,60,3,4,3,-9,-9,2019,2,2,15,4,40,50,15,1,4,3,0,20.18469209556128,20.18469209556128,0,0,0,0,0,0,0,1,1,0,1.958868856729998,0,2.760349501107784,3,50.57,28.42,3,1,0,0,8,4,0,1523.333333333333,0,0,0 +13428,16456,29935,-9,29936,29934,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-942.7161349880855,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.134545168919377,3,54.79,55.86,6,1,0,1,8,4,0,1523.333333333333,0,0,0 +13428,16456,29936,29934,29933,-9,2,1,0,60,1,0,1,0,3,-9,10,3,0,4,5.994613989180364,5.780369327362503,0,2,0,-9,8,0,1,3.148515208854963,0,0,0,59,2,1,1,3,3,2019,3,5,9,0,6,6,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.174540462700609,3,54.2,57.49,6,1,0,0,8,4,0,1523.333333333333,0,0,0 +13428,16457,29937,-9,29936,29934,3,1,1,21,2,0,1,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1090.29734678641,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,26,11,0,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25,67.38,3,1,0,0,8,1,0,1356,0,0,0 +13429,16458,29938,29941,-9,-9,1,1,1,32,1,1,2,0,2,-9,2,1,0,4,7.975663832263683,8.034707125930209,0,2,0,-9,6,0,1,-102.5787641583924,0,0,0,31,1,4,1,2,2,2019,1,2,8,0,41,70,15,1,0,1,0,8.676859048774112,8.676859048774112,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,1,766.25,0,0,0 +13429,16458,29939,-9,29941,29938,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.013448916807,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,766.25,0,0,0 +13429,16458,29940,-9,29941,29938,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.4044688145558,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,766.25,0,0,0 +13429,16458,29941,29938,-9,-9,2,1,0,31,1,1,2,0,1,-9,2,1,0,4,8.366008462525853,8.69481957626787,0,2,0,-9,6,0,-1,117.6345808391021,0,0,1,32,2,4,1,-9,-9,2019,1,1,9,1,37,41,15,1,1,1,0,17.80721410832185,17.80721410832185,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,13,4,1,766.25,0,0,0 +13430,16459,29942,29943,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,3,8.801253300187371,9.031098032396908,0,1,0,-9,1,-9,5,92.21610046885931,-9,0,0,36,2,5,1,-9,-9,2019,1,1,15,4,40,0,15,1,4,1,0,23.33229190522663,23.33229190522663,0,0,0,0,0,0,0,0,0,0,7.393173187687502,0,10.80251588744982,3,49.29,54.59,6,1,0,0,9,5,1,614,0,0,0 +13430,16459,29943,29942,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,5,9.455352996448857,9.689451185705352,0,1,0,1,1,-9,-5,-93.99159219213929,0,0,1,41,2,3,1,2,2,2019,1,2,10,1,47,50,15,1,1,1,0,27.17519214080333,27.17519214080333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,6,1,0,0,9,5,1,614,0,0,0 +13431,16460,29944,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,5,0,6.631841318844352,6.825832363292501,3,0,0,0,-9,0,-1161.019410318836,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.854869593672995,6.681671888554109,0,0,46.85,60.98,6,1,0,0,5,2,1,1938,0,0,0 +13432,16461,29945,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,1,1,0,4,7.014286271569807,6.574022301312644,0,3,0,0,0,-9,0,-1095.608404496588,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,12,15,15,1,1,-9,0,8.245299465249349,8.245299465249349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,7,2,0,0,7,2,0,583,0,0,0 +13432,16462,29946,-9,29945,-9,2,1,0,36,2,0,0,0,1,-9,2,1,0,5,7.605406670958259,7.238221053868193,0,3,0,0,0,-9,0,-1046.143823717721,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,24,26,15,1,0,-9,1,10.63498065259978,10.63498065259978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,46.27,7,4,0,0,7,3,0,471,0,0,0 +13433,16463,29947,29948,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,4,8.273683556901167,8.093321201531728,0,2,0,-9,7,0,-4,47.85738547406945,0,0,1,37,1,4,1,-9,-9,2019,1,1,9,0,26,0,15,1,0,1,0,20.58503848105356,20.58503848105356,0,0,0,0,0,0,0,1,1,0,4.315885541027155,0,0,0,46.98,59.35,6,1,0,0,9,5,1,500.6666666666667,0,0,0 +13433,16463,29948,29947,-9,-9,1,1,1,37,1,1,1,0,1,-9,2,1,0,4,9.023036017704946,8.905653035966422,0,2,0,-9,7,0,4,-33.67138391729281,0,0,0,33,1,4,1,2,2,2019,1,2,7,0,38,37,15,1,0,1,0,22.27900838591693,22.27900838591693,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,5,1,500.6666666666667,0,0,0 +13433,16463,29949,-9,29947,29948,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-943.5770061258655,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,5,1,500.6666666666667,0,0,0 +13434,16464,29950,-9,29952,29951,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.359086553038,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,1100.666666666667,0,0,0 +13434,16464,29951,29952,-9,-9,1,1,1,34,1,0,1,0,2,-9,2,1,0,2,8.532174987660577,8.812711963574102,0,2,0,-9,6,0,-2,-73.38784572534128,0,0,0,36,3,3,1,2,2,2019,1,2,12,1,50,42,15,1,1,1,0,14.11839007892219,14.11839007892219,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,5,1,0,0,12,4,1,1100.666666666667,0,0,0 +13434,16464,29952,29951,-9,-9,2,1,0,36,1,0,1,0,3,-9,2,1,0,3,7.491709111470764,7.47093652130152,0,2,0,-9,6,0,2,-25.02309369005499,0,0,1,34,2,2,1,-9,-9,2019,1,1,12,0,32,32,15,1,0,1,0,7.668825832373064,7.668825832373064,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.41,42.18,4,1,0,0,12,4,1,1100.666666666667,0,0,0 +13435,16465,29953,-9,-9,-9,1,1,0,48,3,0,2,0,3,-9,2,1,0,3,7.310974375745901,7.37222552002981,0,4,0,0,0,-9,0,-793.0076329701584,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,26,15,1,0,-9,0,6.478508839268459,6.478508839268459,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.94,50.38,2,1,0,0,12,2,0,413,0,0,0 +13435,16465,29954,-9,29953,-9,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1012.08893202178,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,2,0,413,0,0,0 +13435,16465,29955,-9,29953,-9,3,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-939.977571776991,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,12,2,0,413,0,0,0 +13435,16466,29956,-9,29953,-9,2,1,0,19,2,0,2,1,2,0,7,2,0,4,6.65653371302851,6.61920639437069,0,3,0,0,0,-9,0,-1044.239062414956,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,23,9,15,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.98,65.13,2,1,0,0,12,2,0,131,0,0,0 +13436,16467,29957,-9,-9,-9,1,1,0,38,2,0,0,0,3,-9,97,3,0,2,0,0,0,3,0,0,0,-9,0,-1068.735755936511,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48023296541136,3,59.93,34.85,4,1,0,0,13,1,0,3611,0,0,0 +13437,16468,29958,29959,-9,-9,1,1,1,33,1,0,0,0,2,-9,2,1,0,4,7.878590880760929,7.852932341427773,0,1,0,-9,2,0,1,-50.10750435725119,0,0,0,32,1,4,1,-9,-9,2019,1,2,7,0,45,62,15,1,0,1,0,7.643000499217051,7.643000499217051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,7,1,0,0,11,4,1,266,0,0,0 +13437,16468,29959,29958,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.083323539561526,7.768931011525733,0,1,0,-9,2,0,-1,76.7985655905034,-9,0,1,33,2,4,1,-9,-9,2019,1,1,10,0,38,0,15,1,0,1,0,8.856564565649382,8.856564565649382,0,0,0,0,0,0,0,0,0,0,2.640294143989691,0,0,0,49.41,58.28,6,2,0,0,11,4,1,266,0,0,0 +13438,16469,29960,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1128.396596274325,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,4.505371992450229,0,0,0,1,1,0,0,0,0,0,41.05,20.3,4,1,0,0,12,1,0,147,0,0,0 +13439,16470,29961,29962,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,4,8.695736729857275,8.440552958117364,0,1,0,-9,2,0,-13,-5.78237223171818,0,0,0,58,2,2,1,-9,-9,2019,1,1,9,0,0,38,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.7189063970073534,0,0,0,52,55,6,1,0,0,4,4,0,310.5,0,0,0 +13439,16470,29962,29961,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.398674706758753,7.620862887334065,0,1,0,-9,7,0,13,-110.8839708969017,0,0,0,45,2,4,1,3,2,2019,1,2,18,5,24,24,15,1,5,1,0,7.962158318913493,7.962158318913493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.47,25.97,6,1,0,0,4,4,0,310.5,0,0,0 +13440,16471,29963,29964,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,5.747098494046956,5.295224651862673,1,0,-9,4,0,4,-16.96475681139858,0,0,0,72,2,3,3,-9,-9,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,1.603853622244503,0,0,0,0,1,1,0,0,5.374673735453134,0,0,47.55,33.8,4,2,0,0,9,3,1,871.5,0,0,0 +13440,16471,29964,29963,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,8.295439207789084,7.760211653935782,1,0,-9,4,0,-4,-27.66090069722681,0,0,0,76,2,2,3,2,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.252543161531716,8.146129336002604,0,0,51.94,55.88,3,1,0,0,9,3,1,871.5,0,0,0 +13441,16472,29965,-9,-9,-9,1,1,1,78,3,0,0,0,1,-9,4,3,0,4,0,8.67560618781312,8.582331049818642,3,0,0,0,-9,0,-914.3090990365621,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.867917271046107,8.236938146893088,0,0,55.42,51.42,1,1,0,0,8,5,1,1625,0,0,0 +13442,16473,29966,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1025.443628648831,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.32,38.2,4,1,0,0,2,1,0,1190,0,0,0 +13443,16474,29967,29968,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,5,8.993538559901525,8.791539417359827,3.101938580520284,1,0,-9,27,0,0,38.95154732183043,0,0,0,60,2,4,1,2,2,2019,1,1,8,0,44,45,15,1,0,1,0,22.61376071621202,22.61376071621202,0,0,0,0,0,0,0,0,0,0,4.688413919975384,3.440544002087235,0,0,57.06,57.76,6,1,0,0,1,5,1,950.5,0,0,0 +13443,16474,29968,29967,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.314247259857996,8.290951174632408,0,1,0,-9,27,0,0,-143.4873361821178,0,0,0,60,1,5,1,3,3,2019,1,2,9,0,37,37,15,1,0,1,0,13.12502029150892,13.12502029150892,0,0,0,0,0,0,0,0,0,0,3.889001193179779,0,0,3,52.23,55.6,2,1,0,0,1,5,1,950.5,0,0,0 +13444,16475,29969,-9,29970,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1052.988495965601,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,2,1,2874.5,0,0,0 +13444,16475,29970,-9,-9,-9,1,1,0,28,2,1,1,0,2,-9,2,1,0,5,6.988675286586735,6.694493617864672,0,4,0,0,0,-9,0,-1097.502273157814,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,0,0,21,16,15,1,0,-9,0,7.483065173030147,7.483065173030147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.96000000000001,43.19,7,1,0,0,13,2,1,2874.5,0,0,0 +13445,16476,29971,-9,29974,29972,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1001.869524237971,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,495.25,0,0,0 +13445,16476,29972,29974,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,4,7.76317494706999,8.045483308618884,0,2,0,-9,6,0,2,-13.77999309367589,0,0,0,34,1,3,1,2,2,2019,1,1,15,4,30,30,15,1,4,1,0,8.668396128010814,8.668396128010814,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,62.84,5,1,0,0,9,4,1,495.25,0,0,0 +13445,16476,29973,-9,29974,29972,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1134.714734672473,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,495.25,0,0,0 +13445,16476,29974,29972,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,3,8.557876836935836,8.688719364958629,0,2,0,-9,6,0,-2,35.92633769557919,0,0,1,36,1,4,1,1,1,2019,1,2,8,2,30,30,15,1,2,1,0,25.84105290070861,25.84105290070861,0,0,0,0,0,0,0,1,1,0,2.742131840685201,0,0,0,50.63,50.99,6,1,0,0,9,4,1,495.25,0,0,0 +13446,16477,29975,-9,-9,-9,1,1,1,63,3,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-982.0034029761816,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.54,21.1,2,2,0,0,10,1,0,545,0,0,0 +13447,16478,29976,29977,-9,-9,2,1,1,53,1,0,2,0,2,-9,1,1,0,3,7.52587327217005,7.495683451466694,0,2,0,-9,1,-9,9,-95.74598397012869,-9,0,0,44,1,4,1,-9,-9,2019,1,1,6,1,30,0,15,1,1,1,0,6.416716660475505,6.416716660475505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.54,38.7,5,4,0,0,8,2,1,780.5,0,0,0 +13447,16478,29977,29976,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,1,-9,0,-16.48754152718427,-9,0,1,53,2,3,1,2,2,2019,1,2,7,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.3189132572486488,0,0,0,28.65,44.86,1,4,0,0,8,2,1,780.5,0,0,0 +13447,16478,29978,-9,29977,29976,6,1,1,16,2,0,2,0,-9,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1053.530072874577,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,4,0,0,8,2,1,780.5,0,0,0 +13447,16478,29979,-9,29977,29976,5,1,1,16,2,0,2,0,-9,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-987.9650856335223,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,5,4,0,0,8,2,1,780.5,0,0,0 +13447,16479,29980,-9,29977,29976,3,1,1,21,2,0,2,0,2,-9,2,1,0,5,1.722248580072645,1.844512016648384,0,3,0,-9,0,-9,0,-931.8505076040777,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,6,4,0,0,8,1,1,2132,0,0,0 +13447,16480,29981,-9,29977,29976,4,1,0,19,2,0,2,1,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-1091.489933323216,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,38.08,2,4,0,0,8,1,1,89,0,0,0 +13448,16481,29982,-9,-9,-9,1,1,1,59,2,0,0,0,3,-9,2,1,0,3,8.521859643499193,8.9648322367088,0,3,0,0,0,-9,0,-1186.477125003699,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,40,45,15,1,0,-9,0,15.95024713548101,15.95024713548101,0,0,0,0,0,0,0,1,1,0,1.430931580313964,0,0,0,54.9,35.37,3,1,0,0,6,5,1,436,0,0,0 +13449,16482,29983,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,2,8.55033200927414,8.792338882943014,0,3,0,0,0,-9,0,-1089.424895076707,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,60,72,15,1,0,-9,0,9.930007435041432,9.930007435041432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.14,35.64,3,1,0,0,11,5,1,546,0,0,0 +13450,16483,29984,29985,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,4,7.330062634814028,7.503691229032225,5.201068081795239,1,0,-9,7,0,-2,-81.97364744446662,0,1,1,30,1,4,1,-9,-9,2019,1,2,2,0,24,25,15,1,0,1,0,8.014150760577142,8.014150760577142,0,0,0,0,0,0,0,0,0,0,5.302184190892423,0,0,0,58.15,52.91,7,1,0,0,10,4,0,225.5,0,0,0 +13450,16483,29985,29984,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,4,7.688035560287848,8.0750005235128,6.112739088017459,1,0,-9,7,0,2,-24.89042751613407,0,0,0,28,1,4,1,-9,-9,2019,1,1,6,0,42,44,15,1,0,1,0,8.142708746190044,8.142708746190044,0,0,0,0,0,0,0,0,0,0,6.889157818987595,0,0,0,57.16,56.15,6,1,0,0,10,4,0,225.5,0,0,0 +13451,16484,29986,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,4,7.978954478104416,8.101239837021863,0,3,0,0,0,-9,0,-900.0395514422257,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,39,42,15,1,10,-9,0,10.68743563241889,10.68743563241889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.95,61.3,3,1,0,0,7,4,0,263,0,0,0 +13452,16485,29987,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-978.5514514630505,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,38.94,35.22,6,1,0,0,4,1,1,145,0,0,0 +13453,16486,29988,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,4,8.307557951961599,8.32909512197916,0,3,0,0,0,-9,0,-1051.475805146635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,40,41,15,1,0,-9,0,12.63113025210812,12.63113025210812,0,0,0,0,0,0,0,0,0,0,4.550236434818902,0,0,0,57.16,56.15,6,1,0,0,2,4,1,98,0,0,0 +13454,16487,29989,29990,-9,-9,2,1,1,23,1,0,1,0,2,-9,2,1,0,4,8.215230477081478,7.939862647941245,0,2,0,-9,5,0,-2,31.52850593653129,0,1,0,25,1,4,1,-9,-9,2019,1,1,10,0,43,56,15,1,1,1,0,7.566619084102592,7.566619084102592,0,0,0,0,0,0,0,1,1,0,0,0,4.618348204864174,3,48,59,5,1,0,0,2,4,0,1896.666666666667,0,0,0 +13454,16487,29990,29989,-9,-9,1,1,0,25,1,0,1,0,1,-9,2,1,0,4,7.686107728761471,7.802576911554561,0,2,0,-9,5,0,2,-8.159698269763842,0,1,1,23,2,4,1,2,2,2019,1,2,12,0,24,35,15,1,0,1,0,10.27087151702888,10.27087151702888,0,0,0,0,0,0,0,1,1,0,2.686702940363095,0,0,0,44.12,48.5,6,1,0,0,2,4,0,1896.666666666667,0,0,0 +13454,16487,29991,-9,29990,29989,3,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1143.502751503728,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,0,1896.666666666667,0,0,0 +13455,16488,29992,-9,29994,29995,5,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.0546320323836,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,7,5,1,1507.25,0,0,0 +13455,16488,29993,-9,29994,29995,4,1,1,17,2,0,2,1,2,-9,7,2,0,4,6.605984476844823,6.344949057898254,0,2,0,0,0,-9,0,-1144.573089607024,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,16,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.295686117715881,0,0,0,48,59,5,1,0,0,7,5,1,1507.25,0,0,0 +13455,16488,29994,29995,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,3,7.721288935413678,8.038281536083401,0,2,0,-9,27,0,1,-64.92962592634547,0,0,0,46,2,3,1,3,2,2019,1,2,11,1,25,20,15,1,1,1,0,11.81222800409007,11.81222800409007,0,0,0,0,0,0,0,0,0,0,.6312378228482053,0,0,0,46.61,56.93,6,1,0,0,7,5,1,1507.25,0,0,0 +13455,16488,29995,29994,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,3,9.231335925142536,9.934729092273084,0,2,0,-9,7,0,-1,-25.3999113778115,0,0,0,47,2,3,1,-9,-9,2019,1,1,11,0,55,50,15,1,1,1,0,25.01174060828644,25.01174060828644,0,0,0,0,0,0,0,0,0,0,8.125445846168152,0,0,0,36.62,60.23,4,1,0,0,7,5,1,1507.25,0,0,0 +13455,16489,29996,-9,29994,29995,3,1,0,19,2,0,2,0,2,-9,7,2,0,4,7.357213013301161,7.171126912515463,0,3,0,0,0,-9,0,-990.4236399147053,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,24,10,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,7,3,1,202,0,0,0 +13456,16490,29997,29998,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,5.852302257524145,5.704995671783418,1,0,-9,52,0,-2,40.49924600684854,0,0,0,79,2,1,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.523172382613437,0,0,52,45,6,1,0,0,1,2,0,308,0,0,0 +13456,16490,29998,29997,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,50,0,2,27.6710198369229,0,0,0,77,2,3,3,3,2,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.36,20.96,2,1,0,0,1,2,0,308,0,0,0 +13457,16491,29999,-9,30003,30002,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.9803406375556,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,5,1,0,1230.6,0,0,0 +13457,16491,30000,-9,30003,30002,3,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.178252045077,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,3,0,0,5,1,0,1230.6,0,0,0 +13457,16491,30001,-9,30003,30002,4,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.7337382687123,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,1,0,1230.6,0,0,0 +13457,16491,30002,30003,-9,-9,1,1,1,44,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,20,0,2,0,0,0,0,42,2,3,3,3,-9,2019,4,2,25,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,.8164642511616188,0,0,0,29.4,42.33,3,3,1,1,5,1,0,1230.6,0,0,0 +13457,16491,30003,30002,-9,-9,2,1,0,42,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,20,0,-2,0,0,0,1,44,2,2,3,3,2,2019,4,1,15,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,6,3,0,1,5,1,0,1230.6,0,0,0 +13458,16492,30004,-9,30005,30006,2,1,0,18,2,0,1,0,2,1,2,1,0,4,4.338338960623831,4.5937752129228,0,3,0,0,0,-9,0,-933.2951579182663,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,1,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2835440331907441,0,0,0,30.77,64.34,5,1,0,0,7,2,1,1537,0,0,0 +13458,16493,30005,30006,-9,-9,1,1,0,38,1,0,1,0,1,0,7,2,0,4,0,0,0,2,0,-9,5,0,-2,116.6602543026342,-9,0,1,40,2,3,1,2,1,2019,3,4,6,1,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.94,58.01,6,1,0,0,7,3,1,921.5,0,0,0 +13458,16493,30006,30005,-9,-9,4,1,1,40,1,0,1,0,2,-9,2,1,0,3,8.384328752348376,8.700254889215321,0,2,0,-9,5,0,2,-90.41151430429072,0,0,0,38,1,4,2,-9,-9,2019,2,1,12,0,40,50,15,1,0,2,0,14.60837355419646,14.60837355419646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,1,0,0,7,3,1,921.5,0,0,0 +13459,16494,30007,30008,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,3,0,7.620533968658941,7.38730619515065,1,0,-9,22,0,2,-11.04223903332191,0,0,0,65,2,3,1,3,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.50786456014759,7.620874739034733,0,0,54.81,42.24,7,1,0,0,10,3,1,648.5,0,0,0 +13459,16494,30008,30007,-9,-9,2,1,0,65,1,0,0,0,2,-9,1,1,0,3,6.663101463013634,6.876326733040148,0,1,0,-9,11,0,-2,-26.33126109210658,0,0,0,67,3,3,3,-9,-9,2019,2,1,11,0,25,25,15,1,2,4,0,4.691679651959396,4.691679651959396,0,0,0,0,0,0,0,1,1,0,.0194781667378997,0,0,0,49,48,5,1,0,0,10,3,1,648.5,0,0,0 +13460,16495,30009,30010,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.816305604234246,7.840887951353917,0,1,0,-9,9,0,-6,-23.16643781648918,0,0,0,63,3,2,3,3,3,2019,2,1,11,0,38,38,15,1,0,3,0,7.852040901103317,7.852040901103317,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,883.5,0,0,0 +13460,16495,30010,30009,-9,-9,1,1,1,63,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,9,0,6,-49.85447664191449,0,0,0,57,2,4,1,3,3,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.35,43.93,3,1,1,1,13,3,1,883.5,0,0,0 +13461,16496,30011,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,8.749873440479981,8.55311287982202,0,3,0,0,0,-9,0,-1024.650533820435,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,50,45,15,1,0,-9,0,12.69339240679116,12.69339240679116,0,0,0,0,0,0,0,1,1,0,6.402613374159823,0,0,0,46.98,59.35,6,1,0,0,9,5,1,222,0,0,0 +13462,16497,30012,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,3,7.986461753113836,8.033048318968962,0,3,0,-9,0,0,0,-909.3324357334027,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,12,40,15,1,0,-9,0,37.62968916145849,37.62968916145849,0,0,0,0,0,0,0,0,0,0,5.874272090369319,0,0,0,36.93,56.27,4,1,0,0,12,4,1,813,0,0,0 +13463,16498,30013,-9,30015,30017,6,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.266785842005,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,861.8333333333334,0,0,0 +13463,16498,30014,-9,30015,30017,3,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.3261471277734,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,1,861.8333333333334,0,0,0 +13463,16498,30015,30017,-9,-9,1,1,0,41,1,0,4,0,2,-9,2,1,0,3,8.524016301725746,8.306682442888352,0,2,0,-9,10,0,6,-96.41441563402309,0,0,1,35,1,3,1,2,2,2019,1,2,11,0,37,39,15,1,0,1,0,13.98842617534547,13.98842617534547,0,0,0,0,0,0,0,1,1,0,2.539393843186735,0,0,0,49.44,54.26,4,1,0,0,6,3,1,861.8333333333334,0,0,0 +13463,16498,30016,-9,30015,30017,5,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.114037270022,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,3,1,861.8333333333334,0,0,0 +13463,16498,30017,30015,-9,-9,2,1,1,35,1,0,4,0,1,-9,2,1,0,3,7.970616720304758,7.89461274516175,0,2,0,-9,10,0,-6,40.08019065760045,0,0,0,41,2,3,1,1,2,2019,1,1,10,0,38,37,15,1,0,1,0,7.19982316221775,7.19982316221775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,4,1,0,1,6,3,1,861.8333333333334,0,0,0 +13463,16498,30018,-9,30015,30017,4,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-829.0723635439689,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,3,1,861.8333333333334,0,0,0 +13464,16499,30019,30020,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,-2,-60.77683289700408,-9,0,0,73,1,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,12,2,1,508,0,0,0 +13464,16499,30020,30019,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,4,0,6.876235712512825,6.902162821528381,1,0,-9,48,0,2,50.84940949429176,0,0,0,71,3,3,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.296652312366421,6.986781895737226,0,0,69.16,37,7,1,0,0,12,2,1,508,0,0,0 +13465,16500,30021,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,1,7.508812376693857,7.623884957821274,0,3,0,0,0,-9,0,-976.5253919092178,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,20,0,15,1,9,-9,0,10.82875203558232,10.82875203558232,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.21,35.26,1,1,0,0,12,3,0,1097,0,0,0 +13466,16501,30022,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,6.959822804430324,7.338504174357416,3,0,0,0,-9,0,-1142.694899024,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.251730766927168,7.054058252135294,21.51453161791053,3,51.83,57.2,6,1,0,0,9,2,1,451,0,0,0 +13467,16502,30023,30026,-9,-9,2,1,1,34,1,1,3,0,2,-9,2,1,0,4,8.092864440493001,7.612820340123665,0,2,0,-9,9,0,-7,22.75830567301925,-9,0,0,41,2,4,3,-9,-9,2019,2,1,10,0,48,0,15,1,0,3,0,7.447989084658211,7.447989084658211,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.24,58.84,6,1,0,0,7,2,0,187.75,0,0,0 +13467,16502,30024,-9,30026,30023,5,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.206898261982,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,0,187.75,0,0,0 +13467,16502,30025,-9,30026,30023,6,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.711629559657,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,187.75,0,0,0 +13467,16502,30026,30023,-9,-9,1,1,0,41,1,1,3,0,2,-9,97,3,0,4,0,0,0,2,0,-9,9,0,7,29.78800121074094,-9,0,1,34,2,4,1,2,-9,2019,3,2,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28965946133538,3,62.49,55.09,4,1,0,1,7,2,0,187.75,0,0,0 +13468,16503,30027,-9,-9,-9,1,1,0,47,2,0,1,0,1,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1161.673693730497,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,35.63,62.19,2,1,0,1,8,1,0,973.5,0,0,0 +13468,16503,30028,-9,30027,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1077.474960384304,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,1,0,973.5,0,0,0 +13469,16504,30029,30030,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.480203897436256,8.115225452734792,0,1,0,-9,8,0,-3,-66.80928123965157,0,0,0,55,2,2,1,2,3,2019,1,1,11,0,40,0,15,1,0,1,0,12.86444948487158,12.86444948487158,0,0,0,0,0,0,0,0,0,0,0,0,11.70595704460404,3,42.02,48.45,5,1,0,0,12,5,1,692,0,0,0 +13469,16504,30030,30029,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,2,8.298484047478469,8.489093649875882,0,1,0,-9,8,0,3,9.230011975205201,0,0,0,52,2,3,1,3,2,2019,1,2,14,3,40,40,15,1,3,1,0,11.12927164163128,11.12927164163128,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.38,28.01,3,1,0,0,12,5,1,692,0,0,0 +13469,16505,30031,-9,30029,30030,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.022686496900089,7.81821455866995,0,3,0,0,0,-9,0,-1022.855758198517,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,44,42,15,1,0,-9,1,7.794234129150767,7.794234129150767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,6,1,0,0,12,4,1,446,0,0,0 +13470,16506,30032,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,4,3,0,4,0,7.323127271911949,7.282647771079914,1,0,-9,10,0,-1,2.625638269906911,0,0,0,-9,-9,-9,-9,3,3,2019,3,2,3,1,0,47,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.241210010768076,6.862145909599302,0,0,57.16,56.15,6,1,0,0,2,3,1,509,0,0,0 +13470,16507,30033,-9,-9,-9,2,1,0,60,2,0,0,0,2,-9,1,1,0,5,6.434699311689892,6.216785693028028,0,1,0,-9,10,0,1,-2.921857809415681,0,0,0,-9,-9,-9,-9,-9,-9,2019,2,1,5,0,5,20,15,1,0,-9,0,13.9121417873804,13.9121417873804,0,0,0,0,0,0,0,0,0,0,6.290552554386596,0,0,0,57.06,57.76,7,1,0,0,2,3,1,541,0,0,0 +13471,16508,30034,-9,-9,-9,1,1,0,84,3,0,0,0,1,-9,4,3,0,2,0,7.837251829603192,7.8600294727012,3,0,0,0,-9,0,-899.3984867177927,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,1,0,0,8.360558874212728,0,0,33.29543683651234,1,1,0,0,7.644105050372604,0,0,50.08,27.76,5,1,0,0,12,3,1,1290,0,0,0 +13472,16509,30035,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,7.746389261636045,7.291430015380946,3,0,0,0,-9,0,-1007.737218806577,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,9.535633071596074,0,0,0,0,0,1,1,0,0,7.300644328795225,0,0,59.46,44.28,6,1,0,0,13,3,1,245,0,0,0 +13473,16510,30036,-9,-9,-9,4,1,0,21,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1088.848677352868,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,6,1,0,0,2,1,0,751,0,0,0 +13474,16511,30037,30038,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,39,0,-1,-169.9048208981767,0,0,0,78,3,2,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.368910961488981,0,0,0,57.16,56.15,6,1,0,0,8,2,1,534,0,0,0 +13474,16511,30038,30037,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,2,0,5.513761502408653,5.676663107437514,1,0,-9,38,0,1,60.21820657943598,0,0,0,77,3,4,3,3,2,2019,4,1,3,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.684890257634552,5.411748149057605,0,0,62.9,48.63,7,4,0,0,8,2,1,534,0,0,0 +13475,16512,30039,30043,-9,-9,1,1,0,37,1,0,3,0,2,-9,2,1,0,3,7.9952450810178,8.123686682481686,0,2,0,-9,9,0,-8,22.05444226796538,0,0,1,45,2,4,1,2,2,2019,1,2,12,0,24,23,15,1,0,1,0,14.01400529629023,14.01400529629023,0,0,0,0,0,0,0,1,1,0,0,0,110.7151271178877,3,41.43,40.35,6,1,0,0,7,4,1,705.2,0,0,0 +13475,16512,30040,-9,30039,30043,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.9196999183023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,705.2,0,0,0 +13475,16512,30041,-9,30039,30043,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.5018047555324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,705.2,0,0,0 +13475,16512,30042,-9,30039,30043,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.548430107931,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,4,1,705.2,0,0,0 +13475,16512,30043,30039,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,4,8.610555652066255,8.43510252764476,0,2,0,-9,9,0,8,193.2016666174496,0,0,0,37,2,3,1,2,2,2019,1,1,10,0,41,41,15,1,0,1,0,14.94646697626622,14.94646697626622,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.93,57.25,5,1,0,0,7,4,1,705.2,0,0,0 +13476,16513,30044,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1005.331041108724,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.94,42.23,2,1,0,0,5,1,0,248,0,0,0 +13477,16514,30045,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,5.182043627438622,4.931714587358987,3,0,0,0,-9,0,-1000.649656270041,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,6.025803796272244,5.140859774074597,0,0,49.28,50.19,6,1,0,0,7,2,0,1360,0,0,0 +13478,16515,30046,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-932.8665806522633,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,0,14,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.27,20.92,3,1,0,0,10,1,1,1170,0,0,0 +13479,16516,30047,30048,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.584982545718775,7.440177034984411,1,0,-9,56,0,2,14.16614068599815,0,0,0,74,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.098953809285772,7.599503162515435,0,0,49.54,53.32,6,1,0,0,7,2,1,1180.5,0,0,0 +13479,16516,30048,30047,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-2,-13.26832645029029,0,0,0,76,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.436194582225003,0,0,0,57.33,53.46,7,1,0,0,7,2,1,1180.5,0,0,0 +13479,16517,30049,-9,30048,30047,3,1,0,49,2,0,0,0,2,-9,2,1,0,3,7.017456528854888,6.790891174976691,0,3,0,-9,0,-9,0,-1023.763355453006,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,17,5,16,0,15,1,5,-9,1,8.29613640033643,8.29613640033643,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,43.59,4,1,0,1,7,2,1,654,0,0,0 +13479,16518,30050,-9,30049,-9,4,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.101868160788681,6.688368346607855,0,3,0,-9,0,-9,0,-1016.588927956158,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,22,10,14,0,15,1,10,-9,1,7.65731781259855,7.65731781259855,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.23,54.97,4,1,0,0,7,2,1,883,0,0,0 +13480,16519,30051,30052,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,7.447767374787072,7.744186242183722,1,0,-9,7,0,-1,-62.83750275531481,0,0,0,74,2,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,7.01898592271051,0,0,0,0,1,1,0,3.31348018418824,7.480469655913982,0,0,64.02,27.56,6,1,0,0,12,2,1,1198.5,0,0,0 +13480,16519,30052,30051,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,1,24.21453351297906,0,0,0,73,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,13.53034636546475,0,5.133679840441998,0,1,1,0,2.235658508547356,0,0,0,46.96,45.96,5,1,0,0,12,2,1,1198.5,0,0,0 +13481,16520,30053,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,4,0,7.866304148390719,7.799165082839417,3,0,0,0,-9,0,-976.3357014002913,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.17694320723808,7.771905916040324,0,0,54.2,57.49,2,1,0,0,13,3,1,429,0,0,0 +13481,16521,30054,-9,30053,-9,2,1,1,33,2,0,0,0,1,-9,1,1,0,4,8.042669585063233,8.039803725784973,0,3,0,0,0,-9,0,-986.185825801874,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,55,55,15,1,0,-9,1,7.395435051485133,7.395435051485133,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,46.44,7,1,0,0,13,4,1,246,0,0,0 +13482,16522,30055,30056,-9,-9,1,1,1,43,1,1,2,0,1,-9,2,1,0,5,8.83097685765299,8.753456326794662,0,2,0,-9,6,0,4,189.1898616109721,0,0,0,39,1,5,1,1,1,2019,1,2,6,0,40,43,15,1,0,1,0,16.78768908953247,16.78768908953247,0,0,0,0,0,0,0,1,1,0,7.589574731745516,0,0,0,59.43,58.05,7,1,0,0,10,4,1,713.25,0,0,0 +13482,16522,30056,30055,-9,-9,2,1,0,39,1,1,2,0,1,-9,2,1,0,5,6.808300891556203,6.845883875734674,0,2,0,-9,6,0,-4,-25.66351475053935,0,0,1,43,1,5,1,-9,-9,2019,1,1,3,0,12,11,15,1,0,1,0,8.254009870526023,8.254009870526023,0,0,0,0,0,0,0,1,1,0,6.816042909747381,0,0,0,59.43,58.05,7,3,0,0,10,4,1,713.25,0,0,0 +13482,16522,30057,-9,30056,30055,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.913754911249,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,10,4,1,713.25,0,0,0 +13482,16522,30058,-9,30056,30055,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1107.18350956636,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,10,4,1,713.25,0,0,0 +13483,16523,30059,30060,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,4,4.37690883097962,8.629475310164343,8.726867303195929,1,0,-9,52,0,1,143.1813817405019,0,0,0,73,1,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.996925458287838,8.698175076130648,0,0,68.03,40.23,6,1,0,0,2,5,1,757.5,0,0,0 +13483,16523,30060,30059,-9,-9,1,1,0,73,1,0,0,0,1,-9,4,3,0,5,0,7.796790001289097,7.551959713686825,1,0,-9,52,0,-1,33.3887331264812,0,0,0,74,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.067937324651229,7.45412451980572,0,0,56.96,51,7,1,0,0,2,5,1,757.5,0,0,0 +13484,16524,30061,30062,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,2,0,6.588126719006909,6.461183809796063,1,0,-9,43,0,2,19.83884937287338,0,0,0,67,1,3,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.915720007146622,6.362339705648232,0,3,35.03,43.84,3,1,0,0,4,3,1,406,0,0,0 +13484,16524,30062,30061,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.295717322452823,7.635784428306879,1,0,-9,43,0,-2,-57.20855090342668,0,0,0,69,1,2,3,2,2,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.525969870773262,7.600714149550129,0,0,48.7,56.22,6,1,0,0,4,3,1,406,0,0,0 +13485,16525,30063,-9,30064,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-941.8404304360803,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,1,345.5,0,0,0 +13485,16525,30064,-9,-9,-9,1,1,0,51,3,0,1,0,1,-9,2,1,0,3,8.167547757274086,8.173573695774655,5.122447054569527,4,0,0,0,-9,0,-1041.136808846278,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,37,33,15,1,1,-9,0,11.65673900416487,11.65673900416487,0,0,0,0,0,0,0,1,1,0,5.360909289545853,0,0,0,55.21,40.64,5,1,0,0,9,3,1,345.5,0,0,0 +13485,16526,30065,-9,30064,-9,2,1,1,20,2,0,1,0,2,-9,7,2,0,3,6.142579642138829,5.989136626850631,0,3,0,0,0,-9,0,-896.1696532271058,1,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,9,0,7,7,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,6,1,0,0,9,2,1,248,0,0,0 +13486,16527,30066,30067,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,3,5.446050468332502,7.552611422366605,7.044447812354678,1,0,-9,2,0,0,-105.4461313403401,-9,0,0,58,2,2,1,3,3,2019,1,2,12,0,40,0,15,1,0,1,0,.7167167555013877,.7167167555013877,0,0,0,0,0,0,0,0,0,0,0,7.429282343483591,0,0,37.77,45.93,4,1,0,0,2,3,0,342.5,0,0,0 +13486,16527,30067,30066,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.526332838268889,7.224705892052019,0,1,0,-9,2,0,0,-23.25525968030927,-9,0,0,58,2,3,1,3,3,2019,1,1,12,0,24,0,15,1,0,1,0,9.46066059407441,9.46066059407441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.79,40.56,5,1,0,0,2,3,0,342.5,0,0,0 +13487,16528,30068,30069,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.106289208281323,7.687582962944459,0,1,0,-9,28,0,0,-71.34749886760675,0,0,0,50,2,3,1,2,2,2019,1,2,11,0,40,44,15,1,0,1,0,7.65329282425239,7.65329282425239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.77,56.48,6,1,0,0,7,4,0,412.5,0,0,0 +13487,16528,30069,30068,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.889216075341519,7.958936391488042,0,1,0,-9,28,0,0,-44.34142675799859,0,0,0,50,2,4,1,2,2,2019,1,1,6,0,40,46,15,1,0,1,0,9.481792260354137,9.481792260354137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,50.19,6,1,0,0,7,4,0,412.5,0,0,0 +13488,16529,30070,-9,30073,30072,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.1984075422222,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,2,1,578,0,0,0 +13488,16529,30071,-9,30073,30072,3,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1065.160223651397,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,5,1,0,0,8,2,1,578,0,0,0 +13488,16529,30072,30073,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,4,0,0,0,2,0,-9,9,0,-3,-113.5582781606682,0,0,0,47,2,2,1,3,2,2019,1,1,21,8,55,0,15,1,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.625621790785961,0,5.509869451063117,3,48.53,58.91,5,1,0,0,8,2,1,578,0,0,0 +13488,16529,30073,30072,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,2,7.035444626429531,7.101498121649293,0,2,0,-9,13,0,3,-74.26345064795163,0,0,0,44,2,4,1,2,3,2019,1,2,10,0,14,34,15,1,0,1,0,10.88742649036051,10.88742649036051,0,0,0,0,0,0,0,0,0,0,0,0,12.7115559439308,3,61.88,28.48,5,1,0,0,8,2,1,578,0,0,0 +13489,16530,30074,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,3,0,5.745991330123037,6.355693028697422,3,0,0,0,-9,0,-1030.204382535017,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,8.086751189908316,5.954063448292231,0,0,53,47,5,3,0,0,8,2,1,467,0,0,0 +13490,16531,30075,-9,30076,30077,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.021812188763,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,1,707.75,0,0,0 +13490,16531,30076,30077,-9,-9,1,1,0,44,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,9,0,-2,11.42038568426434,0,0,1,46,3,3,1,-9,-9,2019,3,2,11,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,4,2,1,707.75,0,0,0 +13490,16531,30077,30076,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,3,7.950818830691332,7.875430733177157,0,2,0,-9,9,0,2,55.24952872381312,0,0,0,44,2,3,3,3,2,2019,2,1,8,0,40,0,15,1,0,3,0,7.913369193456791,7.913369193456791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,4,2,1,707.75,0,0,0 +13490,16531,30078,-9,30076,30077,3,1,0,14,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1057.673267785968,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,4,2,1,707.75,0,0,0 +13491,16532,30079,30080,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.515993294677001,8.305172022104985,0,2,0,-9,11,0,0,.5310764941454698,0,0,1,37,1,5,1,2,2,2019,1,2,21,7,30,30,15,1,7,1,0,17.3747771592381,17.3747771592381,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,60.33,6,1,0,0,8,5,1,820,0,0,0 +13491,16532,30080,30079,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,5,9.342647728443501,8.904503986484292,0,2,0,-9,11,0,0,40.38473469931671,0,0,0,37,1,4,1,2,2,2019,1,1,7,0,56,58,15,1,0,1,0,16.83879920168267,16.83879920168267,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,7,1,0,0,8,5,1,820,0,0,0 +13491,16532,30081,-9,30079,30080,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.7399641669557,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,8,5,1,820,0,0,0 +13491,16532,30082,-9,30079,30080,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.8463825387774,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,5,1,820,0,0,0 +13492,16533,30083,-9,30087,30085,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-984.2067625949705,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,2,0,531.4,0,0,0 +13492,16533,30084,-9,30087,30085,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.826919883663,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,2,0,531.4,0,0,0 +13492,16533,30085,30087,-9,-9,4,1,1,32,1,0,3,0,2,-9,2,1,0,5,7.610279189371345,7.560589310001425,0,2,0,-9,6,0,1,-1.253527768566772,0,0,0,31,1,5,3,-9,-9,2019,2,1,10,2,38,40,15,1,2,3,0,4.466267676567007,4.466267676567007,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,5,2,0,531.4,0,0,0 +13492,16533,30086,-9,30087,30085,2,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.565437891509,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,2,0,531.4,0,0,0 +13492,16533,30087,30085,-9,-9,1,1,0,31,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-1,12.2054780541134,0,0,1,32,2,5,1,3,3,2019,3,4,1,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,5,2,0,531.4,0,0,0 +13493,16534,30088,30090,-9,-9,2,1,0,24,1,1,1,0,2,-9,7,2,0,3,0,0,0,2,0,-9,4,0,-2,67.07606093962744,1,1,1,26,2,4,1,-9,-9,2019,3,1,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,11,3,0,386.6666666666667,0,0,0 +13493,16534,30089,-9,30088,30090,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.777983191272,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,3,0,386.6666666666667,0,0,0 +13493,16534,30090,30088,-9,-9,1,1,1,26,1,1,1,0,2,-9,2,1,0,4,7.972094643097217,7.7666756288262,0,2,0,-9,4,0,2,159.0958996564394,0,1,0,24,2,3,2,2,-9,2019,2,2,9,0,52,50,15,1,0,2,0,5.02587093171535,5.02587093171535,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,3,0,386.6666666666667,0,0,0 +13494,16535,30091,-9,30093,30094,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.356888627914,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,1382.5,0,0,0 +13494,16535,30092,-9,30093,30094,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.1432172170281,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1382.5,0,0,0 +13494,16535,30093,30094,-9,-9,2,1,0,38,1,0,2,0,2,-9,2,1,0,3,7.753252133006301,7.482428317419954,0,2,0,-9,19,0,-6,-43.15822140740779,0,0,1,44,3,4,1,-9,-9,2019,1,1,9,1,26,27,15,1,1,1,0,7.38769066432537,7.38769066432537,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,53.68,6,1,0,0,7,4,1,1382.5,0,0,0 +13494,16535,30094,30093,-9,-9,1,1,1,44,1,0,2,0,3,-9,2,1,0,4,8.298852295790779,8.60831594633348,0,2,0,-9,15,0,6,43.73137291747729,0,0,0,38,2,3,1,-9,-9,2019,1,2,9,0,60,40,15,1,1,1,0,8.529904572686098,8.529904572686098,0,0,0,0,0,0,0,1,1,0,2.504737602436701,0,0,0,51,56,5,1,0,0,7,4,1,1382.5,0,0,0 +13495,16536,30095,-9,30097,30096,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.489471720323,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,11,5,1,200.6666666666667,0,0,0 +13495,16536,30096,30097,-9,-9,2,1,1,35,1,1,1,0,2,-9,1,1,0,4,8.787222229791606,8.950629091540788,0,2,0,-9,4,0,5,6.095703888497434,0,0,0,30,1,4,1,-9,-9,2019,1,1,11,1,70,50,15,1,1,1,0,10.48637616989112,10.48637616989112,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.11,53.42,6,1,0,0,11,5,1,200.6666666666667,0,0,0 +13495,16536,30097,30096,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,4,8.506609376681144,8.634019311352613,0,2,0,-9,4,0,-5,-24.47198367695784,0,0,1,35,2,4,1,-9,-9,2019,1,2,9,1,38,45,15,1,1,1,0,16.35569539308709,16.35569539308709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,11,5,1,200.6666666666667,0,0,0 +13496,16537,30098,30099,-9,-9,2,1,0,35,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,17,0,-4,-30.63165336120409,0,0,1,39,2,3,1,2,1,2019,3,1,27,12,0,35,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.786370198496826,0,0,0,25.07,34.64,2,1,0,0,11,3,1,2643.5,0,0,0 +13496,16537,30099,30098,-9,-9,1,1,1,39,1,0,0,0,2,-9,2,1,0,3,8.475008045993517,8.32672663445082,0,1,0,-9,17,0,4,98.71176452435334,0,0,0,35,2,1,3,2,-9,2019,2,2,16,5,39,39,15,1,5,3,0,11.42486106591353,11.42486106591353,0,0,0,0,0,0,0,1,1,0,4.955323665519095,0,.8582602377075383,2,30.46,56.16,3,1,0,0,11,3,1,2643.5,0,0,0 +13497,16538,30100,-9,30101,-9,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1066.538818615697,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,1,0,1253.5,0,0,0 +13497,16538,30101,-9,-9,-9,1,1,0,43,2,0,1,0,1,-9,1,1,0,3,3.881202417701301,3.802360121040932,0,4,0,0,0,-9,0,-1023.92333898276,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,60,40,15,1,1,-9,0,.1028881748316169,.1028881748316169,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.24,62.48,3,1,0,0,2,1,0,1253.5,0,0,0 +13497,16539,30102,-9,30101,-9,2,1,0,20,2,0,1,0,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-965.7584625495731,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,4,1,0,0,2,1,0,1682,0,0,0 +13498,16540,30103,30104,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,1,0,5.571086237355455,5.843081715834064,1,0,-9,51,0,3,-60.40827768653642,0,0,0,69,3,5,3,-9,2,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,1,0,7.655085982746138,0,0,0,0,1,1,0,5.966968831585309,5.401685293502169,0,0,58.73,13.95,6,1,0,0,5,2,0,2067,0,0,0 +13498,16540,30104,30103,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,51,0,-3,-9.402799204762754,0,0,0,72,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.866729440994765,1,52.72,55.58,6,1,0,0,5,2,0,2067,0,0,0 +13499,16541,30105,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,5.908666932966796,6.3387901810632,3,0,0,0,-9,0,-980.8061158371727,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.382413772343023,6.311723851684958,0,0,57.33,53.46,7,1,0,0,12,2,1,966,0,0,0 +13500,16542,30106,30107,-9,-9,2,1,0,40,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,-9,6,0,-21,0,0,0,1,61,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.34677180969476,1,51.14,60.45,5,5,1,0,10,1,1,1153,0,0,0 +13500,16542,30107,30106,-9,-9,1,1,1,61,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,6,0,21,0,0,0,0,40,2,5,3,-9,3,2019,4,2,24,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.48,20.44,3,1,0,1,10,1,1,1153,0,0,0 +13501,16543,30108,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,6.889379952669716,6.570960555630597,3,0,-9,0,-9,0,-884.0897532533938,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.457492230915214,0,3,47.79,53.79,3,1,0,0,12,2,1,898,0,0,0 +13502,16544,30109,30110,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,7.175890272678329,7.23643305082917,1,0,-9,31,0,0,-185.1977462672304,0,0,0,66,3,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,5.672807929814888,0,0,0,0,1,1,0,2.732857198983281,6.842468938468631,0,0,48.06,48.03,6,1,0,0,2,2,1,267,0,0,0 +13502,16544,30110,30109,-9,-9,1,1,1,66,1,0,0,0,3,-9,4,3,0,5,0,6.389611893833035,6.209452479076271,1,0,-9,31,0,0,79.82081566041386,0,0,0,66,2,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.927873730218544,0,0,50.63,56.75,2,1,0,0,2,2,1,267,0,0,0 +13502,16545,30111,-9,30109,30110,3,1,1,29,2,0,0,0,1,-9,2,1,0,4,8.436024500782066,8.11489861253923,0,3,0,0,0,-9,0,-884.617974771956,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,40,15,1,0,-9,1,12.26369484634594,12.26369484634594,0,0,0,0,0,0,0,1,1,0,.9649364702713661,0,0,0,46.98,59.35,5,1,0,0,2,4,1,1113,0,0,0 +13502,16546,30112,-9,30109,30110,4,1,1,28,2,0,0,0,1,-9,1,1,0,5,6.174712591255617,6.377491495249924,0,3,0,0,0,-9,0,-811.6439445394808,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,1,2.162183901197679,2.162183901197679,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,2,2,1,592,0,0,0 +13503,16547,30113,30114,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.815098370385861,8.731630887125139,0,1,0,-9,8,0,8,171.1395443950825,0,0,0,52,2,3,1,2,2,2019,1,1,6,0,50,46,15,1,0,1,0,10.92747356633003,10.92747356633003,0,0,0,0,0,0,0,0,0,0,0,0,5.204358543491719,3,57.16,56.15,6,1,0,0,12,5,1,247,0,0,0 +13503,16547,30114,30113,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.575196122452239,8.376719203188145,0,1,0,-9,8,0,-8,-33.44992850540454,0,0,0,60,2,4,1,3,3,2019,1,2,8,0,40,40,15,1,0,1,0,11.17164055514079,11.17164055514079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,43.9,6,1,0,0,12,5,1,247,0,0,0 +13504,16548,30115,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,2,1,0,4,7.68622200871961,7.936298663508982,5.571827392653159,3,0,0,0,-9,0,-1084.020800538653,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,4,40,7,15,1,4,-9,0,7.532753840383546,7.532753840383546,0,0,0,0,0,0,0,0,0,0,4.961574592474851,5.465626368401439,0,0,43.87,44.23,7,1,0,0,8,4,0,205,0,0,0 +13505,16549,30116,-9,-9,-9,1,1,1,87,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-903.064190476632,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,5,1,0,0,12,1,0,392,0,0,0 +13506,16550,30117,-9,30118,30120,5,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.691567472356,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,2,1,307,0,0,0 +13506,16550,30118,30120,-9,-9,1,1,0,43,1,2,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,0,-28.97371229662349,0,0,1,43,2,3,1,2,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.594172590319422,0,0,0,54.79,55.86,5,1,0,0,7,2,1,307,0,0,0 +13506,16550,30119,-9,30118,30120,3,1,0,4,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1083.149202916075,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,1,307,0,0,0 +13506,16550,30120,30118,-9,-9,2,1,1,43,1,2,3,0,2,-9,1,1,0,3,7.201384039136138,7.227640433221927,0,2,0,-9,6,0,0,7.533221222132936,0,0,0,43,2,4,3,-9,-9,2019,2,1,8,0,30,35,15,1,0,3,0,4.046756407968655,4.046756407968655,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,7,2,1,307,0,0,0 +13506,16550,30121,-9,30118,30120,4,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.6407898529154,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,7,2,1,307,0,0,0 +13507,16551,30122,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-868.1221827405084,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,34,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.25,26.93,3,1,0,0,1,1,0,618,0,0,0 +13508,16552,30123,30124,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,4.845837211353925,5.048301085474482,1,0,-9,57,0,-1,-18.19900333719944,0,0,0,77,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.493192163247308,4.476110568280412,0,0,53.46,37.24,5,1,0,0,6,3,1,1239.5,0,0,0 +13508,16552,30124,30123,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,7.788718346492953,7.504095433175968,1,0,-9,57,0,1,-25.79486755251039,0,0,0,76,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.700508989514338,8.015524433078953,0,0,58.15,52.91,6,1,0,0,6,3,1,1239.5,0,0,0 +13509,16553,30125,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,5.678342603212472,6.027150155214176,3,0,0,0,-9,0,-957.9179810072102,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.490726886691708,0,0,56.6,33.83,5,1,0,0,12,2,1,329,0,0,0 +13510,16554,30126,30127,-9,-9,4,1,1,29,1,1,2,0,2,-9,2,1,0,2,7.99583819155063,8.01150078041587,0,2,0,-9,2,0,3,-12.14268303134781,0,1,0,26,2,2,3,-9,-9,2019,2,1,2,0,43,40,15,1,0,3,0,8.377791752732739,8.377791752732739,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,6,1,0,0,4,3,0,576,0,0,0 +13510,16554,30127,30126,-9,-9,1,1,0,26,1,1,2,0,2,-9,9,3,0,2,0,6.233038592673654,6.080724479883465,2,0,-9,2,0,-3,-69.23361887641471,0,1,1,29,2,2,1,2,2,2019,3,4,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.343891039486059,0,25.03168502998496,3,44.2,51.88,5,1,0,0,4,3,0,576,0,0,0 +13510,16554,30128,-9,30127,30126,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.874644229785,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,0,576,0,0,0 +13510,16554,30129,-9,30127,30126,2,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.7569871149619,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,0,576,0,0,0 +13511,16555,30130,30131,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,6.483455486836963,7.807346402381384,6.770907181966967,1,0,-9,19,0,-4,-95.66335587791107,0,0,0,58,1,2,3,3,3,2019,2,2,14,2,15,0,15,1,2,4,0,5.421181989265283,5.421181989265283,0,0,0,0,0,0,0,0,0,0,3.718217478821447,6.817124214578322,0,0,36.34,53.7,2,1,0,0,7,4,1,788,0,0,0 +13511,16555,30131,30130,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,2,0,8.143948630448602,8.012110883700421,1,0,-9,19,0,4,7.449365318438646,0,0,0,54,2,3,1,3,2,2019,3,1,14,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.580794372324303,7.946468528732132,0,0,47.54,39.33,6,1,0,0,7,4,1,788,0,0,0 +13512,16556,30132,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,2,5.774787819259541,6.372803859801685,6.063485406393289,3,0,0,0,-9,0,-950.1121562142151,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,9,0,15,1,0,-9,0,5.673492979127538,5.673492979127538,0,0,0,0,0,0,0,1,1,0,6.064473404403962,0,0,0,38.75,26.96,3,1,0,0,10,2,1,313,0,0,0 +13513,16557,30133,-9,-9,-9,1,1,0,60,2,0,0,0,2,-9,2,1,0,3,8.441362689984118,8.557964290982319,0,3,0,0,0,-9,0,-990.390754793539,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,43,40,15,1,5,-9,0,13.46395924779895,13.46395924779895,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.98,63,3,1,0,0,8,4,1,373,0,0,0 +13514,16558,30134,-9,-9,-9,3,1,0,23,2,0,0,0,2,-9,2,1,0,3,8.488557073616068,8.17644823679948,0,3,0,-9,0,-9,0,-1128.540088732528,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,2,39,38,15,1,2,-9,1,13.39801788566277,13.39801788566277,0,0,0,0,0,0,0,0,0,0,.7296189796821291,0,0,0,41.09,48.62,4,1,0,0,7,4,1,605,0,0,0 +13514,16559,30135,-9,-9,-9,4,1,1,21,2,0,0,0,2,-9,2,1,0,3,7.786710740503637,8.100299215303723,0,3,0,0,0,-9,0,-1023.747729932226,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,38,39,15,1,2,-9,1,9.046262740574104,9.046262740574104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.87,58.96,3,1,0,0,7,4,1,842,0,0,0 +13515,16560,30136,-9,-9,-9,1,1,1,53,3,0,0,0,3,-9,2,1,0,4,7.975937698850069,7.773084528795355,0,3,0,0,0,-9,0,-1129.87732846032,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,9,0,41,15,15,1,1,-9,0,9.162920491088581,9.162920491088581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,6,4,0,0,8,4,0,240,0,0,0 +13516,16561,30137,30141,-9,-9,2,1,1,50,1,0,3,0,1,-9,2,1,0,3,9.073934264712674,9.27246312807244,0,2,0,-9,8,0,12,25.15747068184596,0,0,0,38,1,3,1,3,3,2019,1,1,9,0,45,45,15,1,0,1,0,28.48233858646472,28.48233858646472,0,0,0,0,0,0,0,0,0,0,2.916208740211358,0,0,0,50.85,49.73,6,1,0,0,9,5,1,808.4,0,0,0 +13516,16561,30138,-9,30141,30137,3,1,1,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-897.5717684485517,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,5,1,0,0,9,5,1,808.4,0,0,0 +13516,16561,30139,-9,30141,30137,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-894.6573952755814,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,808.4,0,0,0 +13516,16561,30140,-9,30141,30137,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.398729150802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,9,5,1,808.4,0,0,0 +13516,16561,30141,30137,-9,-9,1,1,0,38,1,0,3,0,1,-9,2,1,0,3,8.978501493165401,9.083528814759083,0,2,0,-9,8,0,-12,-42.74265731955602,0,0,1,50,1,3,1,1,1,2019,1,2,10,0,40,50,15,1,0,1,0,23.46637118799845,23.46637118799845,0,0,0,0,0,0,0,0,0,0,2.705415106196766,0,0,0,51.19,49.37,5,1,0,0,9,5,1,808.4,0,0,0 +13517,16562,30142,30143,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-1,0,0,0,0,70,2,3,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,1,0,43.81441948483724,0,0,0,0,1,1,0,0,0,0,0,27.23,23.84,4,1,0,0,2,1,1,309,0,0,0 +13517,16562,30143,30142,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,1,0,0,0,0,69,2,2,3,-9,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,9.736831496755689,0,0,0,0,1,1,0,0,0,34.84439570603891,1,41.21,51.34,5,1,0,0,2,1,1,309,0,0,0 +13518,16563,30144,-9,-9,-9,2,1,1,55,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1052.048975694789,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,56.98,40.59,3,1,1,0,13,1,0,3173,0,0,0 +13518,16564,30145,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-788.1288710191311,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.4,46.23,2,1,0,0,13,1,0,871,0,0,0 +13519,16565,30146,30147,-9,-9,1,1,1,92,1,0,0,0,3,-9,4,3,0,3,0,6.512065285139404,6.756236351681593,1,0,-9,69,0,0,-69.7999997816249,0,0,0,92,3,3,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.91434496250674,6.730161319905495,0,0,57,43,6,1,0,0,7,2,0,500,0,0,0 +13519,16565,30147,30146,-9,-9,2,1,0,92,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,0,71.06557808910706,0,0,0,92,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.749386596544964,0,0,0,55,43,6,1,0,0,7,2,0,500,0,0,0 +13520,16566,30148,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,4,3,0,3,0,5.517341408893628,5.779900835619332,3,0,0,0,-9,0,-956.6918115920803,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.657451739696496,5.605405691794278,10.44004724129031,3,57.33,53.46,6,1,0,0,13,2,1,153,0,0,0 +13521,16567,30149,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,1,1,0,3,5.914866901638628,5.773244269175295,0,3,0,0,0,-9,0,-1139.886894541514,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,30,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,4,1,0,0,10,2,0,500,0,0,0 +13522,16568,30150,30151,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.721451078106719,8.403441599516647,0,1,0,-9,5,0,-6,-101.3371417831471,0,0,0,63,1,4,1,2,3,2019,1,2,14,5,50,84,15,1,5,1,0,11.42877121023733,11.42877121023733,0,0,0,0,0,0,0,0,0,0,2.392245882438421,0,0,0,51.33,33.65,6,1,0,0,4,5,1,693,0,0,0 +13522,16568,30151,30150,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,4,8.211929338413967,8.518576590054495,0,1,0,-9,5,0,6,-23.58553074834912,0,0,0,57,2,3,1,3,2,2019,1,1,6,0,48,75,15,1,0,1,0,7.760222796718831,7.760222796718831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,40.46,7,1,0,0,4,5,1,693,0,0,0 +13523,16569,30152,-9,-9,-9,1,1,0,36,3,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1102.709743851317,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,0,8,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.3072158158455,3,37.91,47.36,3,3,1,0,8,1,0,1708,0,0,0 +13523,16569,30153,-9,30152,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-936.6609323653539,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,8,1,0,1708,0,0,0 +13524,16570,30154,-9,30155,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-961.4258818975588,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,1,0,1400,0,0,0 +13524,16570,30155,-9,-9,-9,1,1,0,39,2,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-967.1563478015161,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.3,36.08,2,1,0,0,5,1,0,1400,0,0,0 +13525,16571,30156,30158,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,2,7.88011147933273,7.487386378018511,0,2,0,-9,9,0,1,39.82202509823843,0,0,1,35,1,4,1,2,2,2019,1,2,11,0,16,22,15,1,0,1,0,17.28271853781947,17.28271853781947,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.69,29.25,7,1,0,0,9,4,1,810.3333333333334,0,0,0 +13525,16571,30157,-9,30156,30158,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.3598710566471,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,4,1,810.3333333333334,0,0,0 +13525,16571,30158,30156,-9,-9,2,1,1,35,1,0,1,0,1,-9,2,1,0,4,8.042640567343771,8.163227261856386,0,2,0,-9,9,0,-1,-133.087674376936,0,0,0,36,1,2,1,1,2,2019,1,1,7,1,38,39,15,1,1,1,0,13.25485908902769,13.25485908902769,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,6,1,0,0,9,4,1,810.3333333333334,0,0,0 +13526,16572,30159,30160,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.629759682425177,8.101057149166612,1,0,-9,48,0,-2,10.37431592331728,0,0,0,71,1,4,3,2,1,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.798930857879999,7.693935922719926,0,0,56.35,51.16,6,1,0,0,12,4,1,387.5,0,0,0 +13526,16572,30160,30159,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.465421225318034,8.21033776030291,1,0,-9,48,0,2,105.35642232432,0,0,0,69,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.364372803346307,8.860030108395602,0,0,57.16,56.15,6,1,0,0,12,4,1,387.5,0,0,0 +13527,16573,30161,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,2,8.378481484902029,8.494386936350647,5.481405293790485,3,0,-9,0,-9,0,-1057.07751400633,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,20,0,15,1,0,-9,0,28.81620445067012,28.81620445067012,0,0,0,0,0,0,0,1,1,0,8.868228231513164,0,0,0,59.96,20.15,5,1,0,0,5,5,0,1322,0,0,0 +13528,16574,30162,30163,-9,-9,2,1,1,56,1,0,0,0,2,-9,1,1,0,4,7.171068489667051,6.705421635811194,0,1,0,-9,8,0,0,-72.10274573060217,0,0,0,56,2,1,1,-9,-9,2019,1,1,7,0,40,45,15,1,0,1,0,3.251032395473258,3.251032395473258,0,0,0,0,0,0,0,0,0,0,0,0,39.47014429383443,2,53.44,55.06,6,1,0,0,12,3,0,449,0,0,0 +13528,16574,30163,30162,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,1,7.596336285355918,8.03960789032565,0,1,0,-9,8,0,0,109.2757234505184,0,0,0,56,2,4,1,2,2,2019,1,2,13,3,26,28,15,1,3,1,0,12.03269175508058,12.03269175508058,0,0,0,0,0,0,0,0,0,0,0,0,39.59092492476848,3,44.59,33.59,5,1,0,0,12,3,0,449,0,0,0 +13529,16575,30164,30167,-9,-9,2,1,0,33,1,1,2,0,1,-9,2,1,0,4,8.241203459495598,7.87111365255549,0,2,0,-9,10,0,-3,-27.7257960336394,0,0,1,36,1,4,1,1,1,2019,1,1,13,3,33,30,15,1,3,1,0,13.67527712270011,13.67527712270011,0,0,0,0,0,0,0,1,1,0,.1414662838642108,0,0,0,43.48,60.97,6,1,0,0,5,4,1,3671,0,0,0 +13529,16575,30165,-9,30164,30167,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.731481860956,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,3671,0,0,0 +13529,16575,30166,-9,30164,30167,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1136.040791426742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,3671,0,0,0 +13529,16575,30167,30164,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,4,8.67132272194533,8.386698180895639,0,2,0,-9,11,0,3,-33.85079582075292,0,0,0,33,1,4,1,1,1,2019,1,2,9,0,38,38,15,1,0,1,0,15.71510699021559,15.71510699021559,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.39,52.35,5,1,0,0,5,4,1,3671,0,0,0 +13530,16576,30168,-9,30171,30169,3,1,0,17,2,0,2,1,2,0,7,2,0,5,5.069405014048163,5.344986751720746,0,2,0,0,0,-9,0,-888.5015327512808,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,6,1,0,0,12,4,1,1163,0,0,0 +13530,16576,30169,30171,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,4,9.23584226510596,9.460727373441404,0,2,0,-9,23,0,-2,-24.48023382425152,0,0,0,51,1,3,3,2,1,2019,2,1,6,0,35,35,15,1,0,3,0,32.02693396482987,32.02693396482987,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,12,4,1,1163,0,0,0 +13530,16576,30170,-9,30171,30169,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.880602540429,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,1163,0,0,0 +13530,16576,30171,30169,-9,-9,1,1,0,51,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,26,0,2,74.46328745866811,0,0,0,49,1,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.070523171338335,0,5.768317433926693,3,46.61,56.93,6,1,0,0,12,4,1,1163,0,0,0 +13531,16577,30172,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,3,8.262879039690443,8.698264486024431,0,3,0,0,0,-9,0,-947.6748952962309,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,52,60,15,1,1,-9,0,13.19349290364398,13.19349290364398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,6,1,0,0,12,5,0,241,0,0,0 +13532,16578,30173,-9,30177,30174,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.7797400697135,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,3,0,2304,0,0,0 +13532,16578,30174,30177,-9,-9,2,1,1,34,1,0,3,0,2,-9,2,1,0,2,8.121237800007021,7.72982133663205,0,2,0,-9,7,0,1,153.771200058092,0,0,0,33,2,4,1,2,2,2019,1,1,15,3,45,46,15,1,3,1,0,8.231361982750482,8.231361982750482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.16,35.62,4,1,0,0,1,3,0,2304,0,0,0 +13532,16578,30175,-9,30177,30174,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.5953845627952,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,3,0,2304,0,0,0 +13532,16578,30176,-9,30177,30174,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.67533818762,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,3,0,2304,0,0,0 +13532,16578,30177,30174,-9,-9,1,1,0,33,1,0,3,0,2,-9,2,1,0,4,7.790102140089328,7.327053508125831,0,2,0,-9,7,0,-1,-32.88718953381277,0,0,1,34,2,2,1,2,2,2019,1,2,7,0,40,0,15,1,0,1,0,7.11045047231906,7.11045047231906,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,1,1,3,0,2304,0,0,0 +13533,16579,30178,-9,-9,-9,1,1,1,64,3,0,0,0,1,-9,4,3,0,4,7.330097004834435,7.516187846654597,4.532116983812601,3,0,0,0,-9,0,-1046.091877579686,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,5,20,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.480055134826864,4.461116455066063,0,0,62.25,48.33,6,1,0,0,7,3,1,1373,0,0,0 +13534,16580,30179,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,3,0,6.771818840220185,6.883317269363797,3,0,0,0,-9,0,-1165.710770542572,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.633467247094495,0,0,68.60000000000001,38.64,5,1,0,0,2,2,1,709,0,0,0 +13535,16581,30180,30181,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,0,8.022022787495606,8.179467382396938,1,0,-9,43,0,-2,66.16461166521495,0,0,0,67,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.407294954499536,8.182986818517467,0,0,61.43,43.34,6,1,0,0,4,4,1,280,0,0,0 +13535,16581,30181,30180,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,5.747518827201177,5.673477973991475,1,0,-9,43,0,2,-68.03486851676753,0,0,0,65,1,3,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.381991170796538,5.968271001239608,0,0,48.15,50.56,6,1,0,0,4,4,1,280,0,0,0 +13536,16582,30182,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1077.936115966746,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.11,20.42,3,1,0,0,2,1,0,17864,0,0,0 +13536,16583,30183,-9,30182,-9,2,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.601434031741721,7.88572804813613,0,3,0,0,0,-9,0,-1149.009752941476,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,35,15,1,2,-9,1,6.88300340459947,6.88300340459947,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46,58,5,1,0,0,2,3,0,544,0,0,0 +13536,16584,30184,-9,30182,-9,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.915959226192105,7.505608732840503,0,3,0,0,0,-9,0,-955.926250236499,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,35,15,1,2,-9,1,8.018010824801173,8.018010824801173,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,2,3,0,131,0,0,0 +13537,16585,30185,30186,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,3,7.224235608849028,6.844742554654764,0,2,0,-9,1,-9,2,-43.23292610354898,-9,0,0,49,2,4,1,-9,-9,2019,1,1,12,0,23,0,15,1,0,1,0,6.290898718906708,6.290898718906708,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,4,1,0,1,10,4,1,2159.5,0,0,0 +13537,16585,30186,30185,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,4,8.894677319387926,8.673163815873268,0,2,0,-9,1,-9,-2,20.44923537220331,-9,0,0,51,2,3,1,-9,-9,2019,1,2,11,0,38,0,15,1,0,1,0,18.22073730435245,18.22073730435245,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,4,1,0,1,10,4,1,2159.5,0,0,0 +13537,16586,30187,-9,30185,30186,3,1,1,27,2,0,1,0,2,-9,2,1,0,5,7.239390109658834,7.236099265446742,0,3,0,-9,0,-9,0,-874.4565585383773,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,64.2,6,1,0,1,10,2,1,140,0,0,0 +13537,16587,30188,-9,30185,30186,4,1,1,26,3,0,1,0,2,-9,2,1,0,4,7.40139645743236,7.277123125271251,0,3,0,-9,0,-9,0,-959.3137155411064,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,1,0,-9,1,5.472216346923437,5.472216346923437,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,4,1,0,1,10,3,1,10645,0,0,0 +13538,16588,30189,30191,-9,-9,1,1,0,43,1,0,1,0,1,-9,2,1,0,4,9.220317277164012,9.075641925207691,0,2,0,-9,7,0,-2,-51.91317067259972,0,0,1,45,1,3,1,3,3,2019,1,2,25,12,44,65,15,1,12,1,0,20.70305400732133,20.70305400732133,0,0,0,0,0,0,0,0,0,0,5.605869940762255,0,6.042797553771354,3,43.42,62.33,5,3,0,0,6,5,1,350,0,0,0 +13538,16588,30190,-9,30189,30191,4,1,1,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1093.589328031597,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,7,3,0,0,6,5,1,350,0,0,0 +13538,16588,30191,30189,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,3,9.492522855158159,9.682103997345877,0,2,0,-9,7,0,2,-58.74288010214276,0,0,0,43,1,4,1,3,3,2019,1,1,12,0,50,70,15,1,0,1,0,36.72953612774341,36.72953612774341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,58.37,5,3,0,0,6,5,1,350,0,0,0 +13539,16589,30192,-9,-9,-9,1,1,1,44,2,0,0,0,1,-9,2,1,0,3,9.15727345727348,8.989644609871171,0,3,0,0,0,-9,0,-985.6427607385751,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,45,0,15,1,0,-9,0,18.51899585143555,18.51899585143555,0,0,0,0,0,0,0,0,0,0,1.308013052941568,0,0,0,46.97,53.06,6,1,0,0,4,5,1,428,0,0,0 +13539,16590,30193,-9,-9,30192,2,1,1,20,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-999.1487921457493,1,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,15,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.732341426835237,0,0,0,41.93,57.79,6,1,0,0,4,1,1,1968,0,0,0 +13540,16591,30194,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,1,1,0,3,8.53416574033688,8.579114892362915,0,3,0,-9,0,1,0,-1112.995244798753,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,4,60,60,15,1,4,-9,0,12.06326011975194,12.06326011975194,0,0,0,0,0,0,0,0,0,0,8.599045397161966,0,0,0,42.32,56.35,3,1,0,0,6,5,1,582,0,0,0 +13541,16592,30195,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,4,7.565226081715659,7.741321749467426,0,3,0,0,0,-9,0,-1025.67012676396,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,23,23,15,1,0,-9,0,11.79465649177971,11.79465649177971,0,0,0,0,0,0,0,1,1,0,3.714915844099874,0,6.440817066315938,3,57.16,56.15,6,1,0,0,8,3,1,342,0,0,0 +13542,16593,30196,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,1,7.58408816877646,7.420925124488373,0,3,0,0,0,-9,0,-976.6123526098866,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,8,76,40,15,1,8,-9,0,2.136498580113495,2.136498580113495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.02,28.52,3,1,0,0,10,3,1,624,0,0,0 +13543,16594,30197,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.292777281974919,8.125962067843687,0,3,0,0,0,-9,0,-1006.898525341117,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,41,40,15,1,1,-9,0,13.06108665757259,13.06108665757259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.95,47.23,6,1,0,0,4,4,1,350,0,0,0 +13544,16595,30198,-9,30199,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1145.016225993623,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,61,5,3,0,0,2,2,1,257,0,0,0 +13544,16595,30199,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,3,7.772890875524761,7.556149639693326,0,4,0,0,0,-9,0,-936.0564470547691,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,30,30,15,1,1,-9,0,8.146985200883869,8.146985200883869,0,0,0,0,0,0,0,1,0,1,1.654656163497866,0,0,0,38.01,50.19,4,3,0,0,2,2,1,257,0,0,0 +13545,16596,30200,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1098.42245644221,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.317519060664736,0,16.58686486026326,3,49.68,37.85,6,1,0,0,10,1,0,627,0,0,0 +13546,16597,30201,30204,-9,-9,2,1,1,36,1,0,3,0,1,-9,2,1,0,2,8.509292040225816,8.531182971970662,0,2,0,-9,13,0,3,-132.7753958338943,0,0,0,33,2,4,3,2,2,2019,2,1,13,3,37,0,15,1,3,3,0,14.49715004525899,14.49715004525899,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.12,51.26,2,1,0,1,2,3,1,1014.6,0,0,0 +13546,16597,30202,-9,30204,30201,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.226576017398,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,3,1,1014.6,0,0,0 +13546,16597,30203,-9,30204,30201,3,1,1,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1034.557627139761,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,2,3,1,1014.6,0,0,0 +13546,16597,30204,30201,-9,-9,1,1,0,33,1,0,3,0,2,-9,3,3,0,4,0,6.08331330195204,5.795511788461541,2,0,-9,13,0,-3,-77.12866901994238,0,0,1,36,1,2,1,2,2,2019,3,2,14,3,0,15,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.65362404513693,0,0,0,41.74,56.24,2,1,1,0,2,3,1,1014.6,0,0,0 +13546,16597,30205,-9,30204,30201,4,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-976.1542213940631,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,3,1,1014.6,0,0,0 +13547,16598,30206,30207,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,7.949026632609284,7.789483859392305,1,0,-9,48,0,1,-82.82910233559858,0,0,0,69,1,4,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.428364284507627,8.125694516989086,11.90309447060778,3,57.31,50.61,6,1,0,0,1,4,1,402.5,0,0,0 +13547,16598,30207,30206,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.480858410908072,7.724295578016688,1,0,-9,50,0,-1,128.6486083214208,0,0,0,70,1,4,3,1,1,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.156942745102368,7.312814321431516,23.68554422279088,3,56.57,57.78,6,1,0,0,1,4,1,402.5,0,0,0 +13548,16599,30208,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,6.483971990066089,6.682919907430226,3,0,0,0,-9,0,-1122.485702215673,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.008702968516603,6.234403360353008,0,0,57.16,56.15,7,1,0,0,7,2,1,1965,0,0,0 +13549,16600,30209,30210,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,7.732148516372623,7.644170504504002,1,0,-9,43,0,5,-40.25760396212322,0,0,0,65,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.124920521968333,8.183561223466146,4.234196214587284,3,58.32,50.22,6,1,0,0,2,4,1,899,0,0,0 +13549,16600,30210,30209,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,4,0,7.272932359794826,7.910011836742177,1,0,-9,43,0,-5,-55.46304105814692,0,0,0,70,1,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.296784829079962,7.595269334016469,15.47117512624147,3,57.16,56.15,6,1,0,0,2,4,1,899,0,0,0 +13550,16601,30211,-9,30212,30214,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-989.958986304113,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,401.5,0,0,0 +13550,16601,30212,30214,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.733608952213466,8.404469176374368,0,2,0,-9,1,-9,-2,84.42681992223284,-9,0,1,42,1,4,1,1,1,2019,1,1,21,9,30,0,15,1,9,1,0,19.68498696875733,19.68498696875733,0,0,0,0,0,0,0,1,1,0,2.878258926125278,0,0,0,33.49,64.26000000000001,5,1,0,0,7,5,1,401.5,0,0,0 +13550,16601,30213,-9,30212,30214,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-926.9252870914098,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,5,1,401.5,0,0,0 +13550,16601,30214,30212,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,4,8.80480941041578,8.805636463565772,0,2,0,-9,1,-9,2,-29.16570071344367,-9,0,0,40,1,4,1,2,3,2019,1,2,9,0,40,0,15,1,0,1,0,16.00288868587929,16.00288868587929,0,0,0,0,0,0,0,1,1,0,2.49872421527409,0,0,0,54.2,57.49,5,1,0,0,7,5,1,401.5,0,0,0 +13551,16602,30215,30216,-9,-9,2,1,1,84,1,0,0,0,3,-9,4,3,0,3,0,6.423932798128961,6.804970613801808,1,0,-9,59,0,5,-17.45135986887682,0,0,0,79,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,9.946284960015417,0,0,0,0,1,1,0,6.568042467140693,6.245776327912599,0,0,57.85,28.46,5,1,0,0,7,2,1,486,0,0,0 +13551,16602,30216,30215,-9,-9,1,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,4.493360623452507,4.601666677997091,1,0,-9,59,0,-5,86.10240534877592,0,0,0,84,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.823408742011537,4.656769111575407,0,0,54.96,53.17,6,1,0,0,7,2,1,486,0,0,0 +13552,16603,30217,30218,-9,-9,2,1,0,63,1,0,0,0,2,-9,6,3,0,4,0,6.279474635168088,6.231742226512432,1,0,-9,46,0,-11,5.885172359744857,0,0,0,74,3,4,3,3,3,2019,4,1,9,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.413995585046925,0,0,53.9,52.09,6,1,0,0,13,2,1,375.5,0,0,0 +13552,16603,30218,30217,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,5.810089112852094,6.116022033709202,1,0,-9,46,0,11,61.14690075972084,0,0,0,63,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.832640857815185,5.913165817507645,0,0,59.86,48.06,6,1,0,0,13,2,1,375.5,0,0,0 +13553,16604,30219,30220,-9,-9,2,1,1,66,1,0,0,0,1,-9,2,1,0,4,8.24436862575409,9.253012319428208,7.768147784319882,1,0,-9,43,0,2,36.13259109809015,0,0,0,64,1,4,3,-9,-9,2019,2,1,9,0,38,37,15,1,0,4,0,13.02674490997181,13.02674490997181,0,0,0,0,0,0,0,1,1,0,4.854819098672499,8.420918620115801,11.80444288334852,3,51.83,57.2,6,1,0,0,4,5,1,259,0,0,0 +13553,16604,30220,30219,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,6.803423075335557,6.837583591754287,1,0,-9,43,0,-2,17.43916562259902,0,0,0,66,1,4,1,-9,-9,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.076268024236965,6.948734244980473,7.751156414326855,3,46.43,51.61,6,1,0,0,4,5,1,259,0,0,0 +13554,16605,30221,30222,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,2,0,7.653032842689984,7.450680613856008,1,0,-9,8,0,6,122.7465825576277,0,0,0,72,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.479548238456393,7.319459020008147,0,0,55.24,38.57,5,1,0,0,2,2,1,423.5,0,0,0 +13554,16605,30222,30221,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-6,-90.26921797393895,0,0,0,78,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.717360267962635,0,0,0,49.02,55.87,5,1,0,0,2,2,1,423.5,0,0,0 +13555,16606,30223,30224,-9,-9,2,1,1,34,1,0,0,0,3,-9,2,1,0,4,8.517282199999045,8.749783548761609,0,1,0,-9,2,0,2,-81.79970435901281,0,0,0,32,2,1,1,-9,-9,2019,1,1,10,0,40,50,15,1,1,1,0,13.83240930857062,13.83240930857062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,5,0,0,2,5,1,411,0,0,0 +13555,16606,30224,30223,-9,-9,1,1,0,32,1,0,0,0,2,-9,2,1,0,1,8.05078288276467,8.077751194332347,0,1,0,-9,2,0,-2,89.58823971958864,0,0,1,34,3,4,1,2,2,2019,1,2,7,1,38,37,15,1,1,1,0,9.988048245604762,9.988048245604762,0,0,0,0,0,0,0,0,0,0,7.231245374718751,0,0,0,47.89,46.23,5,1,0,0,2,5,1,411,0,0,0 +13556,16607,30225,30226,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,4,7.825000165566004,8.109252279740323,5.330986008215461,1,0,-9,37,0,1,-54.85235441747474,0,0,0,59,3,5,1,3,3,2019,1,1,8,0,43,42,15,1,0,1,0,6.392764799088386,6.392764799088386,0,0,0,0,0,0,0,0,0,0,0,5.424734504972161,0,0,59.14,52.5,2,1,0,0,8,5,1,535.5,0,0,0 +13556,16607,30226,30225,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,5,8.743689260760853,8.72149005657757,6.47262750508439,1,0,-9,37,0,-1,-16.77835743096752,0,0,0,60,2,4,1,-9,-9,2019,1,2,2,1,60,0,15,1,1,1,0,11.38278893870878,11.38278893870878,0,0,0,0,0,0,0,0,0,0,0,6.990535646830497,0,0,30.43,52.53,1,1,0,0,8,5,1,535.5,0,0,0 +13557,16608,30227,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,2,1,0,3,8.772238346954719,8.963750347466251,0,3,0,0,0,-9,0,-943.4633029363181,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,44,45,15,1,0,-9,0,23.21160691730174,23.21160691730174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.94,53.79,5,3,0,0,7,5,1,315,0,0,0 +13558,16609,30228,-9,-9,-9,1,1,1,67,2,0,0,0,3,-9,4,3,0,4,0,5.249252498890037,5.057688029592464,3,0,0,0,-9,0,-1030.294681916827,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.270149688395354,0,0,48.28,60.18,6,1,0,0,10,2,0,927,0,0,0 +13559,16610,30229,30231,-9,-9,1,1,1,36,1,0,1,0,1,-9,2,1,0,3,9.230165481612909,8.976330147001198,0,2,0,-9,14,0,2,-134.7566720715545,0,0,0,34,1,5,1,2,1,2019,1,2,10,1,55,50,15,1,1,1,0,12.9975982936657,12.9975982936657,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.22,53.26,6,5,0,0,10,5,0,1014.666666666667,0,0,0 +13559,16610,30230,-9,30231,30229,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.816102425773,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,5,0,0,10,5,0,1014.666666666667,0,0,0 +13559,16610,30231,30229,-9,-9,2,1,0,34,1,0,1,0,1,-9,2,1,0,5,8.675001318653186,9.196173576685206,6.511284769607767,2,0,-9,14,0,-2,-80.29856930322642,0,0,1,36,1,3,1,2,2,2019,1,1,12,3,47,44,15,1,3,1,0,17.24512821839539,17.24512821839539,0,0,0,0,0,0,0,1,1,0,6.417234007190102,0,0,0,55.68,54.24,6,5,0,0,10,5,0,1014.666666666667,0,0,0 +13560,16611,30232,30233,-9,-9,3,1,1,23,1,0,1,0,2,-9,2,1,0,4,7.73111750356682,7.765080865526552,0,2,0,-9,1,-9,-10,145.7591871098737,-9,1,0,33,2,4,3,-9,-9,2019,2,1,10,0,40,0,15,1,1,3,0,7.269534409914253,7.269534409914253,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,5,0,0,4,2,0,356.5,0,0,0 +13560,16611,30233,30232,-9,-9,1,1,0,33,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,1,1,-9,10,-43.28664759352543,0,0,1,23,2,4,1,1,-9,2019,3,3,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,2,0,356.5,0,0,0 +13561,16612,30234,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,5,0,7.280421552714476,7.517994524067292,3,0,0,0,-9,0,-955.0583822339114,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.239934722655776,7.360492844102111,0,0,50.24,58.02,6,1,0,0,5,3,1,146,0,0,0 +13562,16613,30235,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,4,7.046438593460728,7.879348130995391,5.734599943251308,3,0,0,0,-9,0,-1078.591025323453,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,15,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.558045699521153,0,0,0,34.13,61.39,3,1,0,0,2,3,0,4603,0,0,0 +13563,16614,30236,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1049.677368989321,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.201230259289408,0,0,0,58.27,48.72,6,1,0,0,2,1,1,161,0,0,0 +13564,16615,30237,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,2,1,0,3,8.739702671510472,9.079528013587549,0,1,0,-9,2,0,0,-44.75022708995606,0,0,0,-9,-9,-9,-9,3,3,2019,-9,2,24,11,50,47,15,1,11,-9,0,14.66249101009459,14.66249101009459,0,0,0,0,0,0,0,0,0,0,2.15154918573074,0,0,0,32.68,51.25,5,1,0,0,10,4,1,643,0,0,0 +13565,16616,30238,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,2,0,5.388886517940708,5.267360721993017,3,0,0,0,-9,0,-1109.958472411463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.29495427135214,0,0,51.52,33.27,2,1,0,0,2,2,0,1095,0,0,0 +13566,16617,30239,30241,-9,-9,1,1,1,40,1,1,2,0,1,-9,2,1,0,4,9.645163471842729,9.649296056414956,0,2,0,-9,9,0,-2,-32.74590566038664,0,0,0,42,1,3,3,2,3,2019,2,2,15,4,34,27,15,1,4,3,0,57.08612878644578,57.08612878644578,0,0,0,0,0,0,0,0,0,0,5.192855184160347,0,0,0,31.41,55.83,5,1,0,0,12,5,1,446.25,0,0,0 +13566,16617,30240,-9,30241,30239,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.030721910731,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,12,5,1,446.25,0,0,0 +13566,16617,30241,30239,-9,-9,2,1,0,42,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,9,0,2,-122.8295817759157,0,0,1,40,1,4,1,-9,-9,2019,3,1,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,5,1,0,0,12,5,1,446.25,0,0,0 +13566,16617,30242,-9,30241,30239,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1041.769840306235,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,12,5,1,446.25,0,0,0 +13567,16618,30243,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,6.024392791375193,5.943289863871926,3,0,0,0,-9,0,-940.9393823033815,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,13.3604272855624,17.96501602273586,0,0,1,1,0,0,5.906622573605491,0,0,53.08,19.74,6,1,0,0,12,2,1,465,0,0,0 +13568,16619,30244,30245,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.946122038219625,7.906980243944838,0,1,0,-9,2,0,5,3.808238363016947,0,0,0,52,2,4,1,3,3,2019,1,3,9,0,38,38,15,1,0,1,0,8.530600300490164,8.530600300490164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.01,43.45,4,1,0,0,2,4,0,970,0,0,0 +13568,16619,30245,30244,-9,-9,3,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.054911427596442,8.091411012813447,0,1,0,-9,2,0,-5,104.6320572381032,0,0,0,57,2,3,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,6.411514241724446,6.411514241724446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,4,1,0,0,2,4,0,970,0,0,0 +13569,16620,30246,30247,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,5.137749244781975,5.275680788954832,1,0,-9,6,0,15,10.3238557206403,0,0,0,51,2,2,1,3,3,2019,3,2,14,3,0,0,15,4,3,1,0,0,0,1,0,5.876282706955618,0,0,0,0,1,1,0,5.31869796376037,4.936534115540789,0,0,55.06,14.3,6,1,0,0,5,4,1,754,0,0,0 +13569,16620,30247,30246,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,2,8.923582536236488,8.592061316458139,0,1,0,-9,6,0,-15,70.5793386387643,0,0,0,66,2,2,3,3,3,2019,2,1,9,0,38,38,15,1,0,4,0,20.52696665592332,20.52696665592332,0,0,0,0,0,0,0,1,1,0,0,0,78.88862591502171,1,43.27,49.46,5,1,0,0,5,4,1,754,0,0,0 +13570,16621,30248,30249,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,7.5460134544656,8.003279737454289,0,1,0,-9,50,0,1,145.0192723604509,0,0,0,68,3,2,3,3,3,2019,4,1,17,5,20,50,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.687767608139477,0,0,0,43.21,58.3,5,1,0,0,6,3,1,1061.5,0,0,0 +13570,16621,30249,30248,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,5.916861212611112,5.81094580125678,1,0,-9,50,0,-1,-34.66509187872056,0,0,0,69,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.880407968528504,0,0,39.39,37.66,4,1,0,0,6,3,1,1061.5,0,0,0 +13571,16622,30250,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1013.019959997447,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,1,24.19020380511243,0,8.494345997727859,9.620758991736935,15.05291008686205,214.8038947501686,1,1,0,3.571932190591848,0,0,0,42.99,18.31,6,1,0,0,13,1,0,667,0,0,0 +13572,16623,30251,30252,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,4,8.045078320255238,7.891319341327691,0,2,0,-9,28,0,0,-20.44375047660202,0,0,0,51,1,4,1,2,2,2019,1,1,23,11,40,42,15,1,11,1,0,10.0116424556186,10.0116424556186,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,5,1,0,0,2,5,1,632.6666666666666,0,0,0 +13572,16623,30252,30251,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,4,8.821044549494195,9.215485390925565,0,2,0,-9,28,0,0,-12.06406310449225,0,0,0,51,1,4,1,2,2,2019,1,2,10,1,48,42,15,1,1,1,0,16.36591441234607,16.36591441234607,0,0,0,0,0,0,0,1,1,0,0,0,3.955254413363697,3,54.79,55.86,6,1,0,0,2,5,1,632.6666666666666,0,0,0 +13572,16623,30253,-9,30251,30252,5,1,0,17,2,0,1,1,2,0,7,2,0,4,0,4.154027422141366,3.97729754419192,2,0,0,0,-9,0,-917.9240811011575,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.415531091437122,0,0,0,43.2,51.94,6,1,0,0,2,5,1,632.6666666666666,0,0,0 +13572,16624,30254,-9,30251,30252,3,1,1,22,2,0,1,0,1,1,11,3,0,5,0,2.916664935701613,2.977323255907983,3,0,0,0,-9,0,-889.9307449603222,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.200045557329339,0,0,0,49.87,58.27,6,1,0,0,2,1,1,446,0,0,0 +13572,16625,30255,-9,30251,30252,4,1,0,20,2,0,1,0,2,1,97,3,0,4,0,1.496605774086706,1.565930409553232,3,0,0,0,-9,0,-1015.988300905683,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.862018756313138,0,0,0,46,58,5,1,0,0,2,1,1,573,0,0,0 +13573,16626,30256,30257,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,5.962224507691015,5.71552969392975,1,0,-9,9,0,-5,-62.89900483650937,0,0,0,70,2,5,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.735538290639177,5.939399651242102,0,0,57.16,56.15,7,1,0,0,2,3,1,555.5,0,0,0 +13573,16626,30257,30256,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,5,5.192820443150191,8.028553344724941,8.01527350769658,1,0,-9,9,0,5,-53.30217993558502,0,0,0,65,2,4,3,3,3,2019,4,1,9,0,3,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.485609628964378,7.816222128387568,0,0,57.06,57.76,7,1,0,0,2,3,1,555.5,0,0,0 +13574,16627,30258,-9,-9,-9,1,1,1,34,2,0,0,0,1,-9,2,1,0,5,7.831816188431203,8.176865486894028,0,1,0,-9,6,0,-3,36.50531963437886,0,0,0,-9,-9,-9,-9,1,1,2019,1,2,9,0,43,39,15,1,0,-9,0,7.652296355893954,7.652296355893954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,3,0,0,10,5,1,672,0,0,0 +13574,16628,30259,-9,-9,-9,2,1,1,37,2,0,0,0,1,-9,2,1,0,4,8.371892333844279,8.344576238962212,0,1,0,-9,6,0,3,-76.0498087118162,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,1,0,41,43,15,1,0,-9,0,9.241696120925072,9.241696120925072,0,0,0,0,0,0,0,0,0,0,1.371084419471947,0,0,0,59.29,49.68,6,1,0,0,10,5,1,115,0,0,0 +13575,16629,30260,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-971.1385289827933,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.8,19.2,3,1,0,0,7,1,0,391,0,0,0 +13576,16630,30261,30262,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,50,0,-3,0,0,0,0,69,2,3,3,3,3,2019,4,1,21,10,0,0,15,4,10,4,0,0,0,1,0,20.40992635208699,0,0,14.99226599165361,0,1,1,0,0,0,0,0,37.13,24.03,3,1,0,0,11,1,1,808.5,0,0,0 +13576,16630,30262,30261,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,3,0,0,0,0,66,2,2,3,3,3,2019,4,2,13,5,0,60,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.8688137126871,1,45.57,56,4,1,0,0,11,1,1,808.5,0,0,0 +13577,16631,30263,30264,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,3,8.90036992957665,8.959621507823119,0,1,0,-9,6,0,-1,-118.6149079635759,-9,0,0,58,2,3,3,2,3,2019,2,1,9,0,50,0,15,1,0,3,0,16.25836175148075,16.25836175148075,0,0,0,0,0,0,0,1,1,0,0,0,1.344338190281643,3,54.65,36.72,3,1,0,0,12,5,1,904,0,0,0 +13577,16631,30264,30263,-9,-9,1,1,0,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,6,0,1,-94.74559036842732,0,0,0,57,2,3,1,2,3,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,109.0710991702496,3,46.11,47.7,5,1,0,0,12,5,1,904,0,0,0 +13578,16632,30265,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,6.849659681012372,6.939136719875022,3,0,0,0,-9,0,-865.3654785702781,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.136659054500095,6.715346519032305,0,0,63.41,39.7,6,1,0,0,9,2,1,296,0,0,0 +13579,16633,30266,30267,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.726741209233356,7.795424432559865,1,0,-9,9,0,3,43.52244764457352,0,0,0,65,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.067893873088273,7.554036330726825,0,0,54.2,57.49,6,1,0,0,13,3,1,458,0,0,0 +13579,16633,30267,30266,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,-3,-72.79529874200125,0,0,0,68,2,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.473225616377901,0,0,0,58.15,52.91,6,1,0,0,13,3,1,458,0,0,0 +13580,16634,30268,30269,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,1,0,5.963829905582476,6.356832407654947,1,0,-9,8,0,3,-26.9718565681292,0,0,0,77,3,3,3,3,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,1.297855168357397,0,0,0,0,1,1,0,0,6.201710405915402,0,0,38.01,24.67,4,1,0,0,13,2,1,708.5,0,0,0 +13580,16634,30269,30268,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-3,131.0356236769922,0,0,0,80,2,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8375578798482075,0,9.067432724521204,1,44.78,56.37,5,1,0,0,13,2,1,708.5,0,0,0 +13581,16635,30270,30271,-9,-9,2,1,0,50,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,2,0,-1,-126.4984678541923,0,0,0,51,1,2,1,3,2,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,50.26,6,1,0,0,13,4,1,1087.666666666667,0,0,0 +13581,16635,30271,30270,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,2,8.698436829369099,8.988570085122946,0,2,0,-9,2,0,1,126.6763371766729,0,0,0,50,1,3,3,2,1,2019,2,2,11,0,40,40,15,1,0,3,0,19.92829958066983,19.92829958066983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,52.09,6,1,0,0,13,4,1,1087.666666666667,0,0,0 +13581,16635,30272,-9,30270,30271,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.157221186506,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,1087.666666666667,0,0,0 +13582,16636,30273,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1016.543275642059,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,14.80035281365445,0,0,3.788320573110102,0,134.3806498914766,1,1,0,0,0,0,0,47.5,16.4,4,1,0,0,12,1,1,448,0,0,0 +13583,16637,30274,30275,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,7.325978174020254,7.428489229719733,1,0,-9,5,0,9,-109.0894517454713,0,0,0,65,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.86520138953456,7.23861499166053,0,0,43.6,51.61,4,1,0,0,9,3,1,496,0,0,0 +13583,16637,30275,30274,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,6.707684667408323,7.206177909227014,1,0,-9,5,0,0,.5012373525543579,0,0,0,74,1,3,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.789537578868218,6.826032840914116,0,0,49.35,59.64,6,1,0,0,9,3,1,496,0,0,0 +13584,16638,30276,30277,-9,-9,1,1,1,48,1,0,3,0,1,-9,2,1,0,4,8.810801988384853,9.029626543846916,0,2,0,-9,16,0,1,50.30717694025262,0,0,0,47,1,5,1,-9,-9,2019,1,2,4,0,50,49,15,1,0,1,0,15.74856446937903,15.74856446937903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,4,0,0,8,4,1,1320.6,0,0,0 +13584,16638,30277,30276,-9,-9,2,1,0,47,1,0,3,0,1,-9,2,1,0,5,8.525863415557643,8.332534602464159,0,2,0,-9,16,0,-1,19.99480705193576,0,0,0,48,1,4,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,14.89742083572111,14.89742083572111,0,0,0,0,0,0,0,0,0,0,7.632407222698747,0,0,0,60.02,56.42,6,4,0,0,8,4,1,1320.6,0,0,0 +13584,16638,30278,-9,30277,30276,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1033.247975743462,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,4,0,0,8,4,1,1320.6,0,0,0 +13584,16638,30279,-9,30277,30276,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.617607496126,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,4,0,0,8,4,1,1320.6,0,0,0 +13584,16638,30280,-9,30277,30276,5,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.395727319291,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,4,0,0,8,4,1,1320.6,0,0,0 +13585,16639,30281,-9,30284,-9,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1043.78241481423,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,2,3,1,768.25,0,0,0 +13585,16639,30282,-9,30284,-9,2,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-942.7356428866293,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,2,3,1,768.25,0,0,0 +13585,16639,30283,-9,30284,-9,3,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-944.802738470956,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,2,3,1,768.25,0,0,0 +13585,16639,30284,-9,-9,-9,1,1,0,43,3,0,3,0,1,-9,2,1,0,4,7.45345590541508,7.637952652906217,6.53145102578816,4,0,0,0,-9,0,-864.8014381208513,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,20,22,15,1,1,-9,0,10.30934667717261,10.30934667717261,0,0,0,0,0,0,0,1,1,0,7.638927289470899,0,0,0,39.48,58.88,6,1,0,0,2,3,1,768.25,0,0,0 +13586,16640,30285,30286,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,7.138188183619244,7.329531742119904,1,0,-9,48,0,-1,3.811475686189556,0,0,0,70,1,3,3,3,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.06155346050724,7.142249549248693,0,2,54.2,57.49,6,1,0,0,13,5,1,539,0,0,0 +13586,16640,30286,30285,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.502864599917276,8.426253853289738,1,0,-9,48,0,1,-98.18990722480454,0,0,0,69,1,4,3,3,2,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.939230381091177,0,0,59.6,46.99,6,1,0,0,13,5,1,539,0,0,0 +13587,16641,30287,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.937260594307293,8.521218083329552,0,3,0,0,0,-9,0,-945.878925566401,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,10,0,43,53,15,1,0,-9,1,13.50169351451286,13.50169351451286,0,0,0,0,0,0,0,0,0,0,1.245182718769604,0,0,0,48.19,54.86,6,4,0,0,9,5,1,1711,0,0,0 +13588,16642,30288,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,2,0,8.838561371859329,8.560917104520477,3,0,0,0,-9,0,-888.1782925465324,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.400918527661454,8.82778631025063,0,0,53.05,28.78,5,1,0,0,9,5,1,885,0,0,0 +13589,16643,30289,30290,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,2.873625956815378,3.401693147953118,1,0,-9,6,0,3,92.84732169069561,0,0,0,68,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.561886053017868,0,0,53,47,6,1,0,0,4,1,1,515,0,0,0 +13589,16643,30290,30289,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,4.333480347273745,4.729018471640118,1,0,-9,6,0,-3,68.04695992871621,0,0,0,71,3,3,3,3,3,2019,4,1,28,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.437334843637155,33.2968470180144,1,11.22,65.19,6,1,0,0,4,1,1,515,0,0,0 +13590,16644,30291,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,2,1,0,3,8.374489075721881,8.263852128990424,0,3,0,0,0,-9,0,-964.1156116636834,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,46,45,15,1,0,-9,0,10.84428566986889,10.84428566986889,0,0,0,0,0,0,0,0,0,0,6.631248407537164,0,0,0,52.88,43.27,5,1,0,0,7,4,0,1096,0,0,0 +13591,16645,30292,30295,-9,-9,2,1,0,30,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,-7,0,-9,0,1,37,2,2,1,2,2,2019,3,1,15,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.22,44.29,5,3,0,1,8,1,0,1573.75,0,0,0 +13591,16645,30293,-9,30292,30295,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-951.1313193763574,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,0,1573.75,0,0,0 +13591,16645,30294,-9,30292,-9,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-900.4901456648104,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,1,0,1573.75,0,0,0 +13591,16645,30295,30292,-9,-9,1,1,1,37,1,0,2,0,2,-9,1,1,0,2,0,0,0,2,0,-9,1,-9,7,0,-9,0,0,30,2,3,3,-9,-9,2019,2,2,18,7,0,0,15,1,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.24,25.76,3,3,0,1,8,1,0,1573.75,0,0,0 +13592,16646,30296,-9,-9,-9,1,1,1,34,3,0,0,0,2,-9,2,1,0,3,8.068390681340357,7.623547057110158,0,3,0,-9,0,1,0,-945.357555019787,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,7,40,40,15,1,7,-9,1,6.672940485269336,6.672940485269336,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,6,1,0,0,9,3,1,927,0,0,0 +13593,16647,30297,30298,-9,-9,1,1,1,62,1,0,0,0,1,-9,1,1,0,3,8.947123426338189,8.875693596879177,7.276070428108871,1,0,-9,39,0,4,-8.247058872936014,0,0,0,58,2,2,3,3,2,2019,2,2,6,0,30,20,15,1,0,4,0,23.87143077793585,23.87143077793585,0,0,0,0,0,0,0,0,0,0,0,7.351239999211351,0,0,54.37,54.8,6,1,0,0,9,5,1,731.5,0,0,0 +13593,16647,30298,30297,-9,-9,2,1,0,58,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,39,0,-4,-37.42295687479653,0,0,0,62,1,3,1,2,3,2019,3,1,14,2,0,50,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,51.26,6,1,0,0,9,5,1,731.5,0,0,0 +13594,16648,30299,30300,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.656626831792136,7.871752661957954,1,0,-9,25,0,-2,-5.618386168250676,0,0,0,69,1,4,3,-9,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.326264734078114,7.764135931295495,0,0,54.2,57.49,7,1,0,0,9,4,1,656.5,0,0,0 +13594,16648,30300,30299,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.346456838305816,8.446139121135227,1,0,-9,24,0,2,-74.04816672648046,0,0,0,67,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.48429547705195,8.286899005541482,0,0,57.16,56.15,6,1,0,0,9,4,1,656.5,0,0,0 +13595,16649,30301,30302,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,1,0,4.685022078804892,4.624594048544735,1,0,-9,6,0,5,84.54829702852096,0,0,0,57,2,3,1,3,3,2019,3,2,16,4,0,30,15,4,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.407506429765948,0,0,48.82,20.07,6,1,0,0,12,4,1,364,0,0,0 +13595,16649,30302,30301,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.086199665399857,8.549147514060891,4.559910601430202,1,0,-9,6,0,-5,-89.96462619781242,0,0,0,62,2,1,3,3,2,2019,2,1,8,0,50,50,15,1,0,4,0,12.25431871235998,12.25431871235998,0,0,0,0,0,0,0,0,0,0,1.445260099168027,4.881815445682771,0,0,58.47,50.22,6,1,0,0,12,4,1,364,0,0,0 +13596,16650,30303,30304,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,5,0,7.997133440365943,7.942388617045652,1,0,-9,7,0,-1,21.83767189461205,0,0,0,79,2,2,3,3,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,.6838641028484767,0,1,1,0,4.59997626264935,7.651127796110066,0,0,49.17,47.83,4,1,0,0,11,3,1,1481.5,0,0,0 +13596,16650,30304,30303,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,2,0,7.371216086121552,7.298418083738034,1,0,-9,7,0,1,-72.55355099859604,0,0,0,78,2,5,3,3,-9,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,1,1.439297620794615,5.327432966822975,0,0,0,65.70611122676628,1,1,0,3.828867685243778,6.773707131068926,0,0,47.88,28.69,3,1,0,0,11,3,1,1481.5,0,0,0 +13597,16651,30305,30306,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.740892246389922,8.550736657312189,0,1,0,-9,12,0,-3,-89.22709351901992,0,0,0,60,2,4,1,2,1,2019,1,1,6,0,50,40,15,1,0,1,0,16.41717929135651,16.41717929135651,0,0,0,0,0,0,0,0,0,0,7.170559559972135,0,0,0,54.2,57.49,2,1,0,0,2,5,0,778.5,0,0,0 +13597,16651,30306,30305,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.481891051009921,8.746394678275713,0,1,0,-9,12,0,3,76.00959707437983,0,0,0,57,1,4,1,3,3,2019,1,2,4,0,47,37,15,1,0,1,0,11.89776204217424,11.89776204217424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.15,49.67,6,1,0,0,2,5,0,778.5,0,0,0 +13598,16652,30307,30308,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.580177901012997,8.285702990347842,0,1,0,-9,11,0,-1,-45.14572511158165,0,0,0,55,1,4,1,2,2,2019,1,2,6,0,30,24,15,1,0,1,0,15.01336939593454,15.01336939593454,0,0,0,0,0,0,0,0,0,0,7.950158639410335,0,0,3,54.79,55.86,6,1,0,0,8,5,1,2085,0,0,0 +13598,16652,30308,30307,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,4,9.472020935946965,9.887591355449709,0,1,0,-9,11,0,1,-74.69321258497639,0,0,0,54,1,4,1,2,2,2019,1,1,7,0,55,50,15,1,0,1,0,44.24612736769353,44.24612736769353,0,0,0,0,0,0,0,0,0,0,7.372125959719125,0,0,0,54.2,57.49,6,1,0,0,8,5,1,2085,0,0,0 +13599,16653,30309,-9,30312,30310,5,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-961.5519042741496,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,5,1,0,0,2,5,1,618,0,0,0 +13599,16653,30310,30312,-9,-9,1,1,1,49,1,0,3,0,1,-9,2,1,0,4,9.554565849787782,9.693602814262755,0,2,0,-9,25,0,2,33.48209346155055,0,0,0,47,2,5,1,1,1,2019,1,2,12,1,56,55,15,1,1,1,0,30.80635892396743,30.80635892396743,0,0,0,0,0,0,0,0,0,0,2.786837668560091,0,0,0,57.16,56.15,6,1,0,0,2,5,1,618,0,0,0 +13599,16653,30311,-9,30312,30310,4,1,0,16,2,0,3,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-937.5420890993995,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,2,5,1,618,0,0,0 +13599,16653,30312,30310,-9,-9,2,1,0,47,1,0,3,0,2,-9,2,1,0,5,8.050809851391099,7.416688623338981,0,2,0,-9,25,0,-2,-55.42889284786027,0,0,0,49,1,4,1,2,1,2019,1,1,7,0,21,22,15,1,0,1,0,14.4282801980115,14.4282801980115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,2,5,1,618,0,0,0 +13599,16654,30313,-9,30312,30310,3,1,1,18,2,0,3,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1079.80202417762,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,7,1,0,0,2,5,1,1667,0,0,0 +13600,16655,30314,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1096.634030723566,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.74125363543537,3,37.51,49.12,3,1,0,0,9,1,1,571,0,0,0 +13601,16656,30315,30317,-9,-9,1,1,0,43,1,0,1,0,3,-9,2,1,0,4,8.1867431346854,8.254097701546305,0,2,0,-9,19,0,-11,16.80067366065678,0,0,1,54,2,4,1,3,2,2019,1,2,9,0,35,35,15,1,0,1,0,12.46157916860878,12.46157916860878,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,6,1,0,0,10,4,1,859.3333333333334,0,0,0 +13601,16656,30316,-9,30315,30317,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.8671437517618,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,859.3333333333334,0,0,0 +13601,16656,30317,30315,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,4,8.216736619900747,8.38859774851478,0,2,0,-9,19,0,11,6.504706441773213,0,0,0,43,3,4,1,3,3,2019,1,1,8,0,46,50,15,1,0,1,0,10.63851208502699,10.63851208502699,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,4,1,859.3333333333334,0,0,0 +13602,16657,30318,30319,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-5,-160.1832392585045,0,0,0,78,3,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.606902121430075,0,0,0,58.32,50.22,7,1,0,0,9,3,1,2828.5,0,0,0 +13602,16657,30319,30318,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,7.90620245721444,7.742241806323859,1,0,-9,57,0,5,-51.39219159020809,0,0,0,73,3,3,3,3,3,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.147622297409873,7.792388667617025,0,0,58.64,25.59,2,1,0,0,9,3,1,2828.5,0,0,0 +13603,16658,30320,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,10,3,0,3,0,0,0,3,0,0,0,-9,0,-1103.543240783222,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.6667127004932747,0,0,0,39.79,57.19,1,1,0,0,6,1,1,772,0,0,0 +13604,16659,30321,30322,-9,-9,2,1,1,64,1,0,0,0,2,-9,1,1,0,4,8.342421127257911,8.368278405398907,4.905861123943962,1,0,-9,41,0,3,57.51901630324192,0,0,0,61,1,4,1,2,3,2019,1,1,5,0,40,40,15,1,0,1,0,8.597964725380017,8.597964725380017,0,0,0,0,0,0,0,1,1,0,6.479034986712567,5.02976606182992,0,0,58.15,52.91,6,1,0,0,2,4,1,499,0,0,0 +13604,16659,30322,30321,-9,-9,1,1,0,61,1,0,0,0,1,-9,2,1,0,4,7.451933298630243,7.335350791924257,5.074980609818771,1,0,-9,41,0,-3,138.1361229778635,0,0,0,64,2,4,1,3,3,2019,1,2,6,0,16,17,15,1,0,1,0,11.04745754516394,11.04745754516394,0,0,0,0,0,0,0,1,1,0,3.553692606857472,4.711239079993424,0,3,52.31,58.29,6,1,0,0,2,4,1,499,0,0,0 +13604,16660,30323,-9,30322,30321,3,1,1,34,2,0,0,0,2,-9,2,1,0,5,6.796223331634708,6.678935915931223,0,3,0,0,0,-9,0,-1020.840537079347,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,19,19,15,1,0,-9,1,5.729829448074461,5.729829448074461,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,1,0,0,2,2,1,474,0,0,0 +13605,16661,30324,30325,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,8.552451573196656,8.212785359000717,0,1,0,-9,16,0,14,105.327819104149,0,0,0,49,1,3,1,3,2,2019,1,3,6,0,38,38,15,1,0,1,0,13.85703807919091,13.85703807919091,0,0,0,0,0,0,0,1,1,0,0,0,3.98394758291876,3,62.66,52.4,6,1,0,0,8,5,1,1017.5,0,0,0 +13605,16661,30325,30324,30326,-9,3,1,0,49,1,0,0,0,1,-9,2,1,0,3,8.195011567482975,8.380422498987276,0,1,0,-9,16,0,-14,-27.8975919405127,0,0,0,63,2,3,1,3,3,2019,1,1,12,0,42,44,15,1,0,1,0,10.9381612786133,10.9381612786133,0,0,0,0,0,0,0,1,1,0,3.033617712545687,0,3.694831186011086,3,50.29,48.44,5,4,0,0,8,5,1,1017.5,0,0,0 +13605,16662,30326,-9,-9,-9,2,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,6.998277447188527,6.280518075622777,3,0,0,0,-9,0,-955.3989214454539,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.500992855981963,0,0,57.93,46.29,6,4,0,0,8,2,1,2843,0,0,0 +13606,16663,30327,30329,-9,-9,1,1,1,48,1,1,2,0,1,-9,2,1,0,4,9.68895348815909,9.786670562710501,0,2,0,-9,8,0,8,-31.01743894573327,0,0,0,40,1,4,1,3,2,2019,1,2,11,0,44,43,15,1,0,1,0,45.13445899485004,45.13445899485004,0,0,0,0,0,0,0,1,1,0,2.191606823849753,0,0,0,51.49,57.57,6,1,0,0,7,5,1,473,0,0,0 +13606,16663,30328,-9,30329,30327,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.6203390979259,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,473,0,0,0 +13606,16663,30329,30327,-9,-9,2,1,0,40,1,1,2,0,1,-9,2,1,0,4,7.236612763955607,7.451750416222642,0,2,0,-9,8,0,-8,-35.09203375929319,0,0,1,48,1,4,1,-9,-9,2019,1,1,33,12,20,0,15,1,12,1,0,10.77453872275992,10.77453872275992,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.85,67.03,5,1,0,0,7,5,1,473,0,0,0 +13606,16663,30330,-9,30329,30327,3,1,1,12,2,1,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1081.155502424761,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,5,1,473,0,0,0 +13607,16664,30331,30332,-9,-9,2,1,1,35,1,0,0,0,2,-9,1,1,0,5,7.896436515150746,7.864856037364008,0,1,0,-9,6,0,-2,52.53820944542409,0,0,0,37,2,2,1,-9,-9,2019,1,1,8,0,35,35,15,1,0,1,0,10.39937595464542,10.39937595464542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,0,819,0,0,0 +13607,16664,30332,30331,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,2,8.720626115355923,8.601484020234041,0,1,0,-9,6,0,2,43.37643792082835,0,0,1,35,2,5,1,2,2,2019,1,2,12,0,37,30,15,1,0,1,0,15.27525285284408,15.27525285284408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,54.04,5,2,0,0,9,5,0,819,0,0,0 +13608,16665,30333,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,4,6.850853959769656,7.971864059089144,8.086003223469424,3,0,0,0,-9,0,-876.7500683450706,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,8,4,15,1,0,-9,0,18.60231702023003,18.60231702023003,0,0,0,0,0,0,0,1,1,0,5.053486328786724,7.756543421383076,0,0,51.77,58.57,6,1,0,0,4,4,1,1007,0,0,0 +13609,16666,30334,30335,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,4,8.897329591785418,9.696583738023737,8.626965538730134,1,0,-9,16,0,7,52.63206875105288,0,0,0,56,1,4,1,1,3,2019,3,1,7,1,0,42,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.439052143568802,9.044739473424857,0,0,51.73,56.3,6,1,0,0,6,5,1,3266.5,0,0,0 +13609,16666,30335,30334,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.322410083236925,8.221386746372,0,1,0,-9,16,0,-7,-51.0901269134714,0,0,0,63,1,4,3,2,2,2019,2,2,10,0,43,40,15,1,0,4,0,11.34821607873414,11.34821607873414,0,0,0,0,0,0,0,0,0,0,4.609875163132068,0,0,0,54.2,57.49,6,1,0,0,6,5,1,3266.5,0,0,0 +13610,16667,30336,30339,-9,-9,2,1,0,41,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,18,0,-2,-73.40472135251844,0,0,1,43,2,4,1,2,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.22459413913539,0,20.18553832980106,3,57.33,53.46,6,1,0,0,1,3,1,748.75,0,0,0 +13610,16667,30337,-9,30336,30339,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-845.4848147569936,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,1,3,1,748.75,0,0,0 +13610,16667,30338,-9,30336,30339,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.4369752731295,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,3,1,748.75,0,0,0 +13610,16667,30339,30336,-9,-9,1,1,1,43,1,1,2,0,2,-9,2,1,0,4,8.44963331707954,8.797287201173617,0,2,0,-9,19,0,2,63.00944175754778,0,0,0,41,2,3,3,2,2,2019,2,2,11,0,50,48,15,1,0,3,0,11.11513075191298,11.11513075191298,0,0,0,0,0,0,0,1,1,0,4.73826475347835,0,0,3,46.8,55.75,6,1,0,0,1,3,1,748.75,0,0,0 +13611,16668,30340,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,2,7.819881024184608,8.28160610399611,8.01031832399509,3,0,0,0,-9,0,-891.5077553447187,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,23,26,15,1,0,-9,0,14.78670073057676,14.78670073057676,0,0,0,0,0,0,0,1,1,0,2.731753167365861,7.705431280861927,0,0,56.49,29.9,5,5,0,0,6,5,1,806,0,0,0 +13612,16669,30341,-9,30343,30344,4,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1004.876672513292,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,3,1,1520,0,0,0 +13612,16669,30342,-9,30343,30344,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1113.962485013923,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,3,1,1520,0,0,0 +13612,16669,30343,30344,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,4,5.846562414867653,5.588993230058623,0,2,0,-9,7,0,-10,-41.1597315235008,0,0,1,52,2,4,1,3,2,2019,1,2,11,0,18,21,15,1,0,1,0,2.064404325932734,2.064404325932734,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.88,56.68,5,1,0,0,9,3,1,1520,0,0,0 +13612,16669,30344,30343,-9,-9,2,1,1,52,1,0,2,0,2,-9,1,1,0,4,8.216293653740346,8.255163708775171,0,2,0,-9,7,0,10,-5.622968568780416,0,0,0,42,2,4,1,-9,-9,2019,1,1,12,0,54,55,15,1,0,1,0,8.243406332914187,8.243406332914187,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.92,51.53,6,1,0,0,9,3,1,1520,0,0,0 +13613,16670,30345,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,2,9.51743224604097,9.362712619085894,6.083323616587194,3,0,0,0,-9,0,-972.9903350975432,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,65,60,15,1,2,-9,0,17.35757193266721,17.35757193266721,0,0,0,0,0,0,0,0,0,0,0,6.314402720462332,0,0,42.56,44.55,3,1,0,0,9,5,1,616,0,0,0 +13614,16671,30346,-9,-9,-9,1,1,1,68,2,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-844.6227066790881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.86,33.73,6,1,0,0,12,1,0,319,0,0,0 +13615,16672,30347,-9,30349,30348,6,1,0,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1011.387006348736,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,2,0,478.75,0,0,0 +13615,16672,30348,30349,-9,-9,5,1,1,32,1,1,4,0,1,1,6,3,0,4,0,0,0,2,0,-9,2,0,-5,-26.66507538575449,-9,0,0,37,3,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,3,0,0,8,2,0,478.75,0,0,0 +13615,16672,30349,30348,-9,-9,1,1,0,37,1,1,4,0,3,-9,2,1,0,4,7.068850428200391,7.33934306199987,0,2,0,-9,2,0,5,8.627020243947914,0,0,1,32,1,4,3,3,3,2019,2,5,11,0,24,0,15,1,2,3,0,8.138454594889122,8.138454594889122,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,3,0,0,8,2,0,478.75,0,0,0 +13615,16672,30350,-9,30349,30348,4,1,0,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.445360739589,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,478.75,0,0,0 +13615,16673,30351,-9,30349,30348,2,1,1,18,2,1,4,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1029.760538038387,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,54.84,2,3,1,0,8,2,0,1807,0,0,0 +13616,16674,30352,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.935470780933384,6.036019071213966,3,0,0,0,-9,0,-933.5511050831653,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.10350547562395,5.879663524111733,0,0,58.72,27.36,6,1,0,0,9,2,0,1604,0,0,0 +13617,16675,30353,30354,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,1,6.185310590808541,7.787345382939876,7.564854331508495,1,0,-9,11,0,0,17.1160250319006,0,0,1,36,1,4,3,1,1,2019,2,2,27,10,9,3,15,1,10,3,0,5.919013990700898,5.919013990700898,0,0,0,0,0,0,0,0,0,0,7.140474894930562,0,0,0,37.11,26.78,3,2,0,0,7,3,1,187,0,0,0 +13617,16675,30354,30353,-9,-9,2,1,1,36,1,0,0,0,1,-9,3,3,0,4,5.428822378316922,5.094398221917459,0,1,0,-9,11,0,0,-111.9804306141773,0,0,0,36,1,1,1,1,1,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.918273104179487,0,0,0,44.83,57.81,6,1,1,0,7,3,1,187,0,0,0 +13618,16676,30355,30356,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,3,8.194740416894806,8.610336569119585,0,1,0,-9,9,0,-1,-80.03373725719409,0,0,0,59,1,4,1,2,2,2019,1,2,8,0,33,32,15,1,0,1,0,13.94660589037312,13.94660589037312,0,0,0,0,0,0,0,0,0,0,4.359520761511887,0,0,0,59.31,49.81,6,1,0,0,12,5,1,763.5,0,0,0 +13618,16676,30356,30355,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.924551468647865,8.730429296378912,0,1,0,-9,9,0,1,-16.51107963589075,0,0,0,58,1,3,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,13.30051962305954,13.30051962305954,0,0,0,0,0,0,0,0,0,0,4.316644701091038,0,0,0,45.91,59.89,3,1,0,0,12,5,1,763.5,0,0,0 +13618,16677,30357,-9,30355,30356,3,1,1,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1028.07392798517,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,6.867964919824745,0,0,0,57.06,57.76,6,1,0,0,12,1,1,167,0,0,0 +13619,16678,30358,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,5.942985774484262,6.161295673521645,3,0,0,0,-9,0,-1010.763169623184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.893718791698168,6.167392766368318,0,0,49.28,50.19,6,1,0,0,9,2,1,241,0,0,0 +13620,16679,30359,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,7.998319255836558,7.716989868177923,3,0,0,0,-9,0,-959.4517388432213,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.379909121591371,7.989390836216906,0,0,50.09,52.47,6,1,0,0,9,3,1,1960,0,0,0 +13621,16680,30360,-9,30362,30361,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.3224778005729,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,2,1,581,0,0,0 +13621,16680,30361,30362,-9,-9,2,1,1,42,1,1,1,0,2,-9,1,1,0,2,5.76282302501658,5.556474465078555,0,2,0,-9,22,0,-2,0,0,0,0,44,2,2,1,-9,-9,2019,1,1,17,4,60,0,15,1,4,1,0,.6512313038882271,.6512313038882271,0,0,0,0,0,0,0,1,1,0,0,0,2.82155466103965,1,36.18,29.54,4,1,0,1,8,2,1,581,0,0,0 +13621,16680,30362,30361,-9,-9,1,1,0,44,1,1,1,0,2,-9,1,1,0,2,6.237228023824651,5.97777900859801,0,2,0,-9,22,0,2,0,0,0,1,42,2,2,1,2,2,2019,1,2,27,9,37,60,15,1,9,1,0,1.149219882187283,1.149219882187283,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.35,43.06,3,1,0,1,8,2,1,581,0,0,0 +13622,16681,30363,-9,-9,-9,1,1,0,46,3,0,1,0,3,-9,6,3,0,3,0,0,0,4,0,-9,0,-9,0,-1010.187854669196,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.14,36.1,5,3,0,0,11,1,1,1987.5,0,0,0 +13622,16681,30364,-9,30363,-9,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1040.399197624201,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,11,1,1,1987.5,0,0,0 +13623,16682,30365,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,2,7.029731041675865,7.294908386837059,0,4,0,0,0,-9,0,-1016.194138279739,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,18,22,15,1,7,-9,0,7.238708045934046,7.238708045934046,0,0,0,0,0,0,0,1,0,1,0,0,0,3,39.89,46.89,5,1,0,0,12,2,0,1327,0,0,0 +13623,16682,30366,-9,30365,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-935.3670773850272,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,12,2,0,1327,0,0,0 +13623,16683,30367,-9,30365,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1053.493419956001,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,0,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,14.57,71.85000000000001,4,1,0,0,12,2,0,593,0,0,0 +13624,16684,30368,30370,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,3,8.553451816185534,8.241442637381352,0,2,0,-9,10,0,0,25.79792468684056,0,0,0,45,2,4,1,3,3,2019,1,1,12,0,39,38,15,1,2,1,0,12.52768027588705,12.52768027588705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,51,5,3,0,0,11,4,1,408.3333333333333,0,0,0 +13624,16684,30369,-9,30368,30370,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.82590123232,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,2,0,0,11,4,1,408.3333333333333,0,0,0 +13624,16684,30370,30368,-9,-9,1,1,1,45,1,0,1,0,2,-9,1,1,0,4,8.026882491137954,7.982607163846299,0,2,0,-9,10,0,0,74.81103764097453,0,0,0,45,2,3,1,2,2,2019,1,2,14,3,45,40,15,1,3,1,0,7.578393361331281,7.578393361331281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,11,4,1,408.3333333333333,0,0,0 +13625,16685,30371,30372,-9,-9,3,1,1,58,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,5,0,0,-85.74552202761683,0,0,0,58,2,1,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,12,4,0,827,0,0,0 +13625,16685,30372,30371,-9,-9,1,1,0,58,1,0,1,0,2,-9,2,1,0,1,8.930072065275349,8.790983742742966,0,2,0,-9,41,0,0,-13.74484123074225,0,0,0,58,3,4,3,-9,-9,2019,2,3,11,1,39,35,15,1,1,3,0,21.81178220182946,21.81178220182946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,30.58,3,1,0,0,12,4,0,827,0,0,0 +13626,16686,30373,30374,-9,-9,2,1,1,61,1,0,0,0,1,-9,2,1,0,5,8.429185638933927,8.861843457980006,7.712991031893503,1,0,-9,9,-9,13,-27.67313397762901,-9,0,0,48,1,4,1,-9,-9,2019,1,1,8,0,24,0,15,1,0,1,0,23.10870741602388,23.10870741602388,0,0,0,0,0,0,0,0,0,0,0,8.015550967697873,0,0,57.06,57.76,7,1,0,0,8,5,1,533.5,0,0,0 +13626,16686,30374,30373,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,4,8.36436494243244,8.682094540996086,0,1,0,-9,9,-9,-13,3.389766678424645,-9,0,0,61,1,5,1,1,2,2019,1,2,6,0,40,0,15,1,0,1,0,13.84741804353668,13.84741804353668,0,0,0,0,0,0,0,0,0,0,0,0,6.346030033106253,3,61.12,51.57,7,2,0,0,8,5,1,533.5,0,0,0 +13626,16687,30375,-9,30374,30373,3,1,1,24,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-961.42506295285,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.1,57.51,5,4,0,0,8,1,1,243,0,0,0 +13626,16688,30376,-9,30374,30373,4,1,1,22,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,-9,0,-9,0,-833.9234187321724,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.38,54.35,6,2,0,0,8,1,1,804,0,0,0 +13627,16689,30377,30378,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,7.810990902925305,7.604641685754661,1,0,-9,33,0,-1,-39.34315618360281,0,0,0,62,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.609803023617377,7.769894940417151,5.816996745024598,3,58.32,50.22,6,1,0,0,4,3,1,1288,0,0,0 +13627,16689,30378,30377,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,33,0,1,-5.043881240494387,0,0,0,61,1,3,3,3,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.553224394864746,0,13.74718886463456,3,36.93,56.27,4,1,0,0,4,3,1,1288,0,0,0 +13627,16690,30379,-9,30377,30378,3,1,1,21,2,0,0,0,1,1,97,3,0,3,0,0,0,3,0,0,0,-9,0,-1010.283309008451,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.7550889437945286,0,0,0,30.94,61.65,3,1,0,0,4,1,1,158,0,0,0 +13628,16691,30380,-9,-9,-9,1,1,1,44,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1065.650627782877,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,1,7,1,0,405,0,0,0 +13629,16692,30381,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,7.138491839959029,7.442441573721905,3,0,0,0,-9,0,-954.9066006806514,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,8.538821903559068,0,2.178521618380957,0,0,15.6335422280358,1,1,0,2.218196736113087,7.26211866267801,0,0,51.96,19.59,1,1,0,0,10,3,0,177,0,0,0 +13630,16693,30382,-9,30385,30384,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.539717510753,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,2,4,1,682.75,0,0,0 +13630,16693,30383,-9,30385,30384,2,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.4173973218305,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,682.75,0,0,0 +13630,16693,30384,30385,-9,-9,3,1,1,40,1,0,2,0,1,-9,2,1,0,2,9.001476083623546,8.799994913902284,0,2,0,-9,9,0,3,44.00976181964369,0,0,0,37,1,4,1,-9,-9,2019,1,1,17,5,42,42,15,1,5,1,0,18.91591222153034,18.91591222153034,0,0,0,0,0,0,0,1,1,0,2.326125561892275,0,0,0,21.74,55.51,2,1,0,0,2,4,1,682.75,0,0,0 +13630,16693,30385,30384,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,6.87785537341755,7.109593578559409,0,2,0,-9,9,0,-3,45.10579403644766,0,0,1,40,1,2,1,2,1,2019,1,3,12,1,16,0,15,1,1,1,0,9.751699023911536,9.751699023911536,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,6,1,0,0,2,4,1,682.75,0,0,0 +13631,16694,30386,30387,-9,-9,1,1,1,51,1,0,0,0,3,-9,2,1,0,5,8.231445653819907,8.147045661896197,0,1,0,-9,30,0,3,-36.54209756835592,0,0,0,48,2,2,3,-9,2,2019,2,2,6,0,99,39,15,1,0,3,0,4.393692360717599,4.393692360717599,0,0,0,0,0,0,0,1,1,0,.2895927430348234,0,0,0,62.39,56.71,7,1,0,0,2,3,1,591,0,0,0 +13631,16694,30387,30386,-9,-9,2,1,0,48,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,30,0,-3,-21.10442696649037,0,0,0,51,3,5,1,3,2,2019,3,1,22,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.39,42.21,3,1,0,1,2,3,1,591,0,0,0 +13631,16695,30388,-9,-9,30389,4,1,0,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-945.4093164564958,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,1052,0,0,0 +13631,16695,30389,-9,30387,30386,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,7.793621088718032,7.537236906444032,0,3,0,0,0,-9,0,-892.63330273192,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,30,0,15,1,0,-9,1,10.09483117016536,10.09483117016536,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,4,1,0,0,2,3,1,1052,0,0,0 +13632,16696,30390,-9,-9,-9,2,1,0,62,3,0,0,0,2,-9,97,3,0,4,0,0,0,3,0,-9,0,1,0,-1138.743027968473,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,28,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.647253996075328,0,71.00952408730163,0,25.58,65.87,1,1,0,0,8,1,1,525,0,0,0 +13633,16697,30391,-9,-9,-9,1,1,1,48,3,0,1,0,2,-9,2,1,0,3,8.723620828504886,8.855876926316112,0,4,0,0,0,-9,0,-944.1095341239219,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,43,42,15,1,0,-9,0,14.76574542326077,14.76574542326077,0,0,0,0,0,0,0,1,1,0,4.508614053821177,0,0,0,55.48,47.38,6,1,0,0,9,4,1,1091,0,0,0 +13633,16697,30392,-9,-9,30391,2,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1039.955161381952,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,9,4,1,1091,0,0,0 +13634,16698,30393,30395,-9,-9,1,1,1,42,1,1,2,0,1,-9,2,1,0,4,8.97442379185409,8.794332990122097,0,2,0,-9,8,0,2,144.3690502408151,0,0,0,40,1,5,1,2,2,2019,1,2,10,0,37,39,15,1,0,1,0,20.86575496302771,20.86575496302771,0,0,0,0,0,0,0,1,1,0,7.556592314856776,0,0,0,46.16,58.62,2,1,0,0,2,5,1,772.25,0,0,0 +13634,16698,30394,-9,30395,30393,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.746663789208,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,772.25,0,0,0 +13634,16698,30395,30393,-9,-9,2,1,0,40,1,1,2,0,1,-9,2,1,0,5,8.920151637865041,9.047330586585293,0,2,0,-9,8,0,-2,-93.09011489524195,0,0,1,42,1,4,1,-9,-9,2019,1,1,12,2,38,36,15,1,2,1,0,27.00662892464467,27.00662892464467,0,0,0,0,0,0,0,1,1,0,6.928772144410998,0,0,0,48.18,61.8,7,1,0,0,2,5,1,772.25,0,0,0 +13634,16698,30396,-9,30395,30393,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.9384307179281,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,5,1,772.25,0,0,0 +13635,16699,30397,30398,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,3,9.244607287569137,9.602517774022683,7.366650873075376,1,0,-9,29,0,-1,6.001580757738252,0,0,0,62,2,3,1,2,2,2019,1,2,11,1,35,35,15,1,1,1,0,36.62579835829874,36.62579835829874,0,0,0,0,0,0,0,0,0,0,4.676005308819992,7.183896921502369,0,0,41.28,57.99,6,4,0,0,8,5,1,427.5,0,0,0 +13635,16699,30398,30397,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,3,7.868138051056596,7.644025826477598,0,1,0,-9,31,0,1,119.5981782602351,0,0,0,61,1,3,1,3,3,2019,1,1,7,0,36,30,15,1,0,1,0,7.093258993381845,7.093258993381845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,5,2,0,0,8,5,1,427.5,0,0,0 +13635,16700,30399,-9,30398,30397,3,1,1,27,2,0,0,0,2,-9,2,1,0,3,7.947540511285781,8.042459111596667,0,3,0,0,0,-9,0,-1008.275560003144,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,38,38,15,1,7,-9,1,9.101530161702184,9.101530161702184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.25,52.08,2,4,0,0,8,4,1,1017,0,0,0 +13636,16701,30400,-9,30402,30401,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1048.569386378149,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,367,0,0,0 +13636,16701,30401,30402,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,5,8.151452201787757,8.038865553968648,0,2,0,-9,5,0,-3,8.566252380896525,0,0,0,34,2,5,1,-9,-9,2019,1,1,5,0,40,41,15,1,0,1,0,10.81937053921108,10.81937053921108,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,4,4,1,367,0,0,0 +13636,16701,30402,30401,-9,-9,1,1,0,34,1,1,1,0,2,-9,2,1,0,5,7.462268242451119,7.621189571195443,0,2,0,-9,5,0,3,25.74059623033101,0,0,1,31,1,5,1,-9,-9,2019,1,2,6,0,38,43,15,1,0,1,0,6.641855063800358,6.641855063800358,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,0,0,4,4,1,367,0,0,0 +13637,16702,30403,-9,30406,30404,2,1,1,14,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-870.5561153695296,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,11,4,1,1438.25,0,0,0 +13637,16702,30404,30406,-9,-9,3,1,1,32,1,1,2,0,2,-9,2,1,0,5,8.133514696727797,8.152230245146175,0,2,0,-9,5,0,1,46.1616622929885,0,0,0,31,1,5,1,-9,-9,2019,1,1,4,0,50,45,15,1,0,1,0,7.808764143487731,7.808764143487731,0,0,0,0,0,0,0,1,1,0,4.644022824974008,0,0,0,64.97,40.36,6,1,0,0,11,4,1,1438.25,0,0,0 +13637,16702,30405,-9,30406,30404,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.326634223823,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,1,1438.25,0,0,0 +13637,16702,30406,30404,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,5,8.395397629467013,8.320789037131345,5.597305090702945,2,0,-9,5,0,-1,41.54853429015274,0,0,1,32,2,5,1,2,-9,2019,1,3,7,0,39,37,15,1,0,1,0,13.33553762735862,13.33553762735862,0,0,0,0,0,0,0,1,1,0,6.033235615364787,0,0,0,57.65,56.13,5,1,0,0,11,4,1,1438.25,0,0,0 +13638,16703,30407,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,2,8.49616264282909,8.389527856310348,0,3,0,0,0,-9,0,-969.6583007200386,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,43,15,1,0,-9,0,13.0023560688774,13.0023560688774,0,0,0,0,0,0,0,0,0,0,.2648252530410619,0,0,0,56.51,40.62,5,1,0,0,11,4,0,1131,0,0,0 +13639,16704,30408,30410,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,1,6.956971180436319,7.477276206611133,6.171729366519786,2,0,-9,7,0,6,-85.44167079495224,0,0,1,36,2,2,1,3,-9,2019,1,4,12,4,14,17,15,1,4,1,0,8.547912699490706,8.547912699490706,0,0,0,0,0,0,0,1,1,0,5.624229167322996,0,8.432731729042469,3,33.02,25.49,5,1,0,0,12,3,0,2045.25,0,0,0 +13639,16704,30409,-9,30408,30410,2,1,1,16,2,0,2,1,2,-9,7,2,0,2,4.825568724428861,4.697429771861981,0,2,0,0,0,-9,0,-967.4887981331784,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.80736116935665,0,0,0,26.38,58.67,2,1,0,0,12,3,0,2045.25,0,0,0 +13639,16704,30410,30408,-9,-9,4,1,1,36,1,0,2,0,2,-9,1,1,0,2,8.043568688371524,8.443090500855545,0,2,0,-9,7,0,-6,29.14385756538039,0,0,0,42,2,1,1,-9,-9,2019,1,1,9,0,60,98,15,1,0,1,0,9.172841042366445,9.172841042366445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,42.25,5,1,0,0,12,3,0,2045.25,0,0,0 +13639,16704,30411,-9,30408,30410,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.063700854068,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,0,2045.25,0,0,0 +13640,16705,30412,30413,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,5,0,0,0,0,69,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.402731662853894,3,52.48,55.6,6,1,0,0,10,1,0,362,0,0,0 +13640,16705,30413,30412,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-5,0,0,0,0,74,3,3,3,3,-9,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.58,55.77,5,1,0,0,10,1,0,362,0,0,0 +13641,16706,30414,30415,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,5,8.881866162159589,9.201139192056017,0,1,0,-9,7,0,4,-116.6875351129177,0,0,0,58,1,5,1,-9,-9,2019,1,1,6,0,35,40,15,1,0,1,0,29.16015790797684,29.16015790797684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,4,1,0,0,4,5,1,622.5,0,0,0 +13641,16706,30415,30414,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,5,8.786708011204643,8.852196175453862,0,1,0,-9,7,0,-4,89.30077614344783,0,0,0,62,1,5,1,2,2,2019,1,2,6,0,35,18,15,1,0,1,0,25.34235512658914,25.34235512658914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,1,2,0,0,4,5,1,622.5,0,0,0 +13642,16707,30416,30417,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,5.998460775629754,5.824450810409879,1,0,-9,47,0,-2,41.47527225468539,0,0,0,73,2,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.643387932840934,6.347040371400169,70.14932956894602,1,46.57,39.53,5,1,0,0,11,2,1,293.5,0,0,0 +13642,16707,30417,30416,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.761362757781102,7.175378240016378,1,0,-9,47,0,2,-61.72215484947492,0,0,0,71,2,3,3,2,2,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,0,128.7500559771597,0,0,0,0,1,1,0,6.139801366900548,6.986869178565519,0,0,53,47,6,1,0,0,11,2,1,293.5,0,0,0 +13643,16708,30418,30419,-9,-9,1,1,1,93,1,0,0,0,2,-9,4,3,0,3,0,5.590170716102821,5.676216178404771,1,0,-9,71,0,5,-7.589180734774619,0,0,0,88,3,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.091099827581459,5.833312405115549,0,0,56,44,6,1,0,0,7,2,1,1228,0,0,0 +13643,16708,30419,30418,-9,-9,2,1,0,88,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,71,0,-5,27.51580608691308,0,0,0,93,2,3,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.735485140413715,0,27.52588679075912,1,36.41,57.29,5,1,0,0,7,2,1,1228,0,0,0 +13644,16709,30420,30421,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,6.444522463025856,6.522977831459878,1,0,-9,56,0,4,21.29008540243945,0,0,0,74,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.495284640750007,0,0,61.28,48.88,7,1,0,0,4,2,0,279.5,0,0,0 +13644,16709,30421,30420,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-4,-57.8049303642368,0,0,0,78,3,3,3,3,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,7,1,0,0,4,2,0,279.5,0,0,0 +13645,16710,30422,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,5.882664162423805,5.755082363257889,3,0,0,0,-9,0,-927.2474825901361,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,2.506754584052208,0,0,1,1,0,0,5.841084440363136,0,0,66.55,29.98,6,1,0,0,1,2,1,149,0,0,0 +13645,16711,30423,-9,30422,-9,2,1,1,55,3,0,0,0,2,-9,1,1,0,3,6.781305480849085,6.897714500854457,0,3,0,0,0,-9,0,-846.5710134663284,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,40,45,15,1,1,-9,1,2.670362127240136,2.670362127240136,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44.7,53.68,5,1,0,1,1,2,1,477,0,0,0 +13646,16712,30424,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,4,8.198684115429014,8.136940397579618,0,3,0,0,0,-9,0,-1047.506271181779,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,39,51,15,1,0,-9,0,10.65707851100744,10.65707851100744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,60.56,5,1,0,0,4,4,1,104,0,0,0 +13647,16713,30425,30426,-9,-9,1,1,0,41,1,0,1,0,2,-9,2,1,0,2,6.970215579438184,6.934214708453745,0,2,0,-9,9,0,-4,77.79441224421883,0,0,1,45,2,2,1,-9,3,2019,1,2,16,4,23,0,15,1,4,1,0,5.722290231453925,5.722290231453925,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.62,42.08,3,1,0,0,6,3,0,186.5,0,0,0 +13647,16713,30426,30425,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,2,7.874289693602399,8.353505132814487,0,2,0,-9,9,0,4,-8.704536221786864,0,0,0,41,2,2,1,2,2,2019,1,1,13,1,40,40,15,1,1,1,0,9.467402338116875,9.467402338116875,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.45,52.35,4,1,0,0,6,3,0,186.5,0,0,0 +13648,16714,30427,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,3,8.981632321129892,9.079200498208573,7.146767060567202,4,0,0,0,-9,0,-979.6586229353818,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,40,48,15,1,3,-9,0,17.85060520951766,17.85060520951766,0,0,0,0,0,0,0,1,1,0,7.862216732911381,0,0,0,38.69,53.88,3,1,0,0,12,4,1,352,0,0,0 +13648,16714,30428,-9,30427,-9,2,1,0,17,2,0,2,1,2,-9,7,2,0,3,5.83146592024213,5.617462588329815,4.702620689271125,4,0,0,0,-9,0,-1041.077709574555,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,29,11,8,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.413926311084563,0,0,0,28.07,42.32,1,1,0,1,12,4,1,352,0,0,0 +13648,16714,30429,-9,30427,-9,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1079.241124913932,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,352,0,0,0 +13649,16715,30430,-9,-9,-9,3,1,0,82,2,0,1,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1041.959945764198,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,46.77,6,1,0,0,12,1,0,64,0,0,0 +13649,16716,30431,-9,-9,-9,1,1,0,23,3,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1080.15203561095,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.87,57.07,6,1,1,0,12,1,0,619.5,0,0,0 +13649,16716,30432,-9,30431,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-979.4967530704456,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,1,0,619.5,0,0,0 +13650,16717,30433,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-961.6059531382118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,14.41557585972298,0,0,0,27.27855744475973,144.4995661970385,1,1,0,0,0,0,0,68.23999999999999,10.55,6,1,0,0,11,1,1,399,0,0,0 +13651,16718,30434,-9,30435,30437,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.9173562356384,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,294.5,0,0,0 +13651,16718,30435,30437,-9,-9,1,1,0,31,1,1,2,0,1,-9,2,1,0,4,8.368771769296584,8.694790555376763,0,2,0,-9,2,0,-1,-161.677535902471,0,0,1,32,1,4,1,2,2,2019,1,2,7,0,22,24,15,1,0,1,0,33.82669492187482,33.82669492187482,0,0,0,0,0,0,0,1,1,0,6.851526066681542,0,0,0,52.43,55.57,6,1,0,0,9,5,1,294.5,0,0,0 +13651,16718,30436,-9,30435,30437,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.067243283614,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,5,1,294.5,0,0,0 +13651,16718,30437,30435,-9,-9,2,1,1,32,1,1,2,0,1,-9,2,1,0,4,9.204532068023347,8.980003835257765,0,2,0,-9,2,0,1,25.16722236490535,0,0,0,31,1,4,1,-9,-9,2019,1,1,8,0,40,37,15,1,0,1,0,27.87624239221154,27.87624239221154,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,1,294.5,0,0,0 +13652,16719,30438,30439,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,3,8.409314218683416,8.331926367695182,0,1,0,-9,8,0,3,-74.04153142302492,0,0,0,55,2,2,1,-9,-9,2019,1,1,10,0,40,39,15,1,1,1,0,12.85622710072218,12.85622710072218,0,0,0,0,0,0,0,0,0,0,.2750038502670591,0,0,0,51,49,5,1,0,0,7,5,1,807.5,0,0,0 +13652,16719,30439,30438,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,2,8.697222456540011,8.328334518114955,0,1,0,-9,37,0,-3,154.7942185468262,0,0,0,58,2,3,1,2,2,2019,1,2,23,11,41,39,15,1,11,1,0,13.13358703815633,13.13358703815633,0,0,0,0,0,0,0,0,0,0,2.519552208370105,0,0,0,37.52,52.14,3,1,0,0,7,5,1,807.5,0,0,0 +13652,16720,30440,-9,30439,30438,3,1,1,23,2,0,0,1,2,0,7,2,0,4,7.356703226088319,7.304044578554509,0,3,0,0,0,-9,0,-935.5717754307522,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,10,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.12,61.5,5,1,0,0,7,3,1,171,0,0,0 +13653,16721,30441,30443,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,4,7.551279956497186,7.665961460345659,0,2,0,-9,29,0,3,43.82548727014915,0,0,0,47,1,4,1,2,1,2019,1,2,9,0,12,12,15,1,0,1,0,18.84150585615391,18.84150585615391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,6,4,1,574.75,0,0,0 +13653,16721,30442,-9,30441,30443,5,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.834373642727,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,574.75,0,0,0 +13653,16721,30443,30441,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,8.981067078469449,8.680691410872591,0,2,0,-9,29,0,-3,-18.30303070867397,0,0,0,50,2,4,1,2,2,2019,1,1,7,0,43,38,15,1,0,1,0,20.95803945141658,20.95803945141658,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,2,0,0,6,4,1,574.75,0,0,0 +13653,16721,30444,-9,30441,30443,3,1,1,17,2,0,2,1,2,0,7,2,0,5,4.505112270835044,4.184017705822433,0,2,0,0,0,-9,0,-1074.062150840731,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,1,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.997023382114755,0,0,0,57.06,57.76,6,1,0,0,6,4,1,574.75,0,0,0 +13654,16722,30445,30446,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,4.604649139133618,4.75150685080055,1,0,-9,52,0,-3,-14.37142038638774,0,0,0,77,1,3,3,2,1,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.106167506604907,4.471845059202624,0,0,56.19,27,5,3,0,0,9,2,1,296,0,0,0 +13654,16722,30446,30445,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,3,0,6.673248291893972,6.504084678224747,1,0,-9,6,0,3,54.50165703615544,-9,0,0,74,2,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.397372677005294,6.889193220692614,0,0,51,46,5,3,0,0,9,2,1,296,0,0,0 +13655,16723,30447,30448,-9,-9,2,1,0,62,1,0,0,0,2,-9,1,1,0,4,6.945230766552584,7.805537948129431,6.941870993888183,1,0,-9,9,0,-2,-36.70508537482795,0,0,0,64,2,2,3,2,2,2019,2,1,8,0,30,30,15,1,0,4,0,2.912586713492153,2.912586713492153,0,0,0,0,0,0,0,0,0,0,2.85456719727936,7.270815763931362,0,0,60.13,49.27,6,1,0,0,10,5,1,1504.5,0,0,0 +13655,16723,30448,30447,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,2,8.216462882545802,8.944665141974792,7.889710509755422,1,0,-9,9,0,2,-8.445666833791286,0,0,0,62,2,4,1,2,2,2019,3,2,7,0,0,20,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.605059205809003,7.704207925298241,0,0,59.3,39.29,6,1,0,0,10,5,1,1504.5,0,0,0 +13656,16724,30449,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,5,8.092274290738448,8.004606943790014,0,3,0,0,0,-9,0,-956.3177728811231,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,37,37,15,1,0,-9,0,8.890876386661622,8.890876386661622,0,0,0,0,0,0,0,1,1,0,2.395226492700546,0,3.403933402535313,3,57.06,57.76,2,1,0,0,6,4,1,699,0,0,0 +13657,16725,30450,-9,30452,30451,3,1,0,17,2,0,1,0,2,-9,2,3,0,3,7.52571328878432,7.754587345285874,0,2,0,0,0,-9,0,-1093.751155023348,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,26,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,6,1,0,0,10,5,1,1531.5,0,0,0 +13657,16725,30451,30452,-9,-9,2,1,1,38,1,0,1,0,2,-9,2,1,0,5,8.613494729797271,8.443616944768722,0,2,0,-9,10,0,2,102.6701313663541,0,0,0,36,1,4,1,3,3,2019,1,1,7,0,47,49,15,1,0,1,0,11.11128377420104,11.11128377420104,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,10,5,1,1531.5,0,0,0 +13657,16725,30452,30451,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,4,8.349428637171645,8.183919374313236,4.538025740560469,2,0,-9,10,0,-2,5.821026579878714,0,0,1,38,2,5,1,2,-9,2019,1,2,12,0,38,38,15,1,0,1,0,13.07362320924742,13.07362320924742,0,0,0,0,0,0,0,1,1,0,5.225766677345253,0,0,0,48.87,58.55,6,1,0,0,10,5,1,1531.5,0,0,0 +13657,16725,30453,-9,30452,30451,4,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.0966282203243,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,5,1,1531.5,0,0,0 +13658,16726,30454,-9,-9,-9,1,1,1,30,2,0,0,0,3,-9,2,1,0,4,7.8552842995872,8.136718714304521,0,3,0,0,0,-9,0,-978.2546484595329,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,40,40,15,1,1,-9,0,5.450358613972171,5.450358613972171,0,0,0,0,0,0,0,0,0,0,0,0,5.48288799577576,3,18.87,64.38,4,1,0,0,11,3,1,239,0,0,0 +13659,16727,30455,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,2,1,0,3,8.503616321941621,8.734538779011626,0,3,0,0,0,-9,0,-1031.150122004572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,50,50,15,1,0,-9,0,12.57362520179784,12.57362520179784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.86,50.49,6,1,0,0,10,5,0,1199,0,0,0 +13660,16728,30456,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,5,7.551190361687716,7.662368246989781,0,4,0,0,0,-9,0,-1076.950585647618,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,1,0,31,0,15,1,0,-9,0,9.568034069465904,9.568034069465904,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,4,0,0,8,3,0,376,0,0,0 +13660,16728,30457,-9,30456,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-871.8612582443958,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,8,3,0,376,0,0,0 +13661,16729,30458,-9,-9,-9,1,1,1,70,2,0,0,0,1,-9,4,3,0,4,0,5.481014467006745,5.44498970050925,3,0,0,0,-9,0,-1084.677113195603,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.648739070591129,5.412243625465359,0,0,52.18,46.1,4,1,0,0,2,2,1,213,0,0,0 +13662,16730,30459,-9,-9,-9,1,1,1,46,2,0,0,0,2,-9,2,1,0,4,8.520014658625207,8.318337659205259,0,3,0,0,0,-9,0,-928.663245682927,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,40,15,1,0,-9,0,18.31716414494387,18.31716414494387,0,0,0,0,0,0,0,0,0,0,7.720401210662278,0,0,0,41.09,56.74,6,1,0,0,10,5,1,217,0,0,0 +13663,16731,30460,30461,-9,-9,2,1,0,19,1,0,0,0,2,-9,2,1,0,4,7.34947225587934,7.430174678663079,0,1,0,-9,1,-9,-12,81.69052989204312,-9,1,1,31,2,5,1,-9,-9,2019,1,1,7,0,33,0,15,1,0,1,0,5.460524406395244,5.460524406395244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.43,53.69,6,1,0,0,11,5,0,1113,0,0,0 +13663,16731,30461,30460,-9,-9,1,1,1,31,1,0,0,0,2,-9,1,1,0,5,8.583592662515795,8.494054126124521,0,1,0,1,1,-9,12,94.84083049091619,0,0,0,19,2,4,1,-9,-9,2019,1,2,8,0,60,55,15,1,0,1,0,12.03242791507532,12.03242791507532,0,0,0,0,0,0,0,0,0,0,1.707555027585329,0,0,0,57.06,57.76,6,1,0,0,11,5,0,1113,0,0,0 +13664,16732,30462,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,2,8.275181835974497,8.231616125911723,5.148741021745999,3,0,0,0,-9,0,-1019.320755145646,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,42,37,15,1,2,-9,0,10.96395269000067,10.96395269000067,0,0,0,0,0,0,0,0,0,0,5.354705664169152,5.164958179218085,0,0,45.23,37.81,3,1,0,0,2,4,1,201,0,0,0 +13664,16733,30463,-9,30462,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,4,8.009923084234496,8.23163579773972,0,3,0,0,0,-9,0,-926.3217276034228,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,21,22,15,1,1,-9,1,20.3201054227137,20.3201054227137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,56.19,5,1,0,0,2,4,1,273,0,0,0 +13665,16734,30464,30465,-9,-9,2,1,0,46,1,0,0,0,3,-9,2,1,0,4,7.931073241466071,7.972574573640814,0,1,0,-9,3,0,-6,74.20374333644897,-9,0,0,52,3,2,1,3,3,2019,1,1,12,0,37,0,15,1,0,1,0,9.049718524832022,9.049718524832022,0,0,0,0,0,0,0,1,1,0,.2288955127704367,0,0,0,57.71,46.52,6,3,0,0,9,3,1,1246.5,0,0,0 +13665,16734,30465,30464,-9,-9,1,1,1,52,1,0,0,0,3,-9,2,1,0,2,0,0,0,1,0,-9,25,0,6,-48.22093426505808,0,0,0,46,3,4,1,3,3,2019,1,2,12,0,0,36,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.183025658316819,0,0,0,52.86,27.23,5,3,0,0,9,3,1,1246.5,0,0,0 +13666,16735,30466,30469,-9,-9,1,1,1,37,1,0,3,0,2,-9,2,1,0,2,8.8030263573906,8.72830641902233,0,2,0,-9,6,0,4,-63.39547553036537,0,0,0,33,2,4,1,3,2,2019,1,2,11,1,58,80,15,1,1,1,0,12.55304753100715,12.55304753100715,0,0,0,0,0,0,0,1,1,0,.8094740612647652,0,0,0,36.13,56.64,5,1,0,0,11,4,1,456.6,0,0,0 +13666,16735,30467,-9,30469,30466,4,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-980.8472184535748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,11,4,1,456.6,0,0,0 +13666,16735,30468,-9,30469,30466,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.035699889658,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,456.6,0,0,0 +13666,16735,30469,30466,-9,-9,2,1,0,33,1,0,3,0,2,-9,2,1,0,4,7.749290169164355,7.554076084849078,0,2,0,-9,6,0,-4,-31.22519854157955,0,0,1,37,2,2,1,2,3,2019,1,1,6,0,40,45,15,1,0,1,0,8.0631952713287,8.0631952713287,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,11,4,1,456.6,0,0,0 +13666,16735,30470,-9,30469,30466,3,1,1,16,2,0,3,1,2,-9,7,2,0,5,7.739210103279488,7.89337900365306,0,2,0,0,0,-9,0,-917.8794765904937,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,8,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.92,55.55,6,1,0,0,11,4,1,456.6,0,0,0 +13667,16736,30471,30472,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,5,7.059330884525549,8.159202872793681,7.414036838638614,1,0,-9,39,0,-1,-145.9178410482876,0,0,0,62,3,3,1,3,3,2019,1,2,10,0,24,23,15,1,0,1,0,10.27792829654856,10.27792829654856,0,0,0,0,0,0,0,0,0,0,7.605472626245572,5.663036797257148,21.57255905759407,3,54.1,59.11,7,1,0,0,4,4,1,418.5,0,0,0 +13667,16736,30472,30471,-9,-9,2,1,1,62,1,0,0,0,3,-9,2,1,0,3,7.945132056072616,8.000246770632863,0,1,0,-9,37,0,1,82.31596059678863,0,0,0,61,3,5,1,3,3,2019,1,1,7,0,40,41,15,1,0,1,0,7.742649624221779,7.742649624221779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,4,4,1,418.5,0,0,0 +13668,16737,30473,-9,-9,-9,1,1,0,75,2,0,0,0,2,-9,4,3,0,3,0,7.266621275738087,7.159263159084199,3,0,0,0,-9,0,-933.3902882150354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.178507181920429,7.580631424046963,0,0,55.36,51.57,6,1,0,0,2,3,1,495,0,0,0 +13669,16738,30474,-9,30475,30476,3,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-947.1641885899523,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,8,3,0,590.8,0,0,0 +13669,16738,30475,30476,-9,-9,1,1,0,33,1,0,3,0,2,1,2,1,0,4,0,0,0,2,0,-9,17,0,-2,38.25897624395196,-9,0,1,35,2,3,1,2,2,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,4,0,0,8,3,0,590.8,0,0,0 +13669,16738,30476,30475,-9,-9,2,1,1,35,1,0,3,0,2,-9,2,1,0,3,8.414262615254767,8.053540426529818,0,2,0,-9,17,0,2,240.471597652757,0,0,0,33,2,4,1,3,3,2019,1,1,9,0,35,40,15,1,0,1,0,13.34580525184086,13.34580525184086,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,4,0,0,8,3,0,590.8,0,0,0 +13669,16738,30477,-9,30475,30476,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.0178565310157,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,3,0,590.8,0,0,0 +13669,16738,30478,-9,30475,30476,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.777428613386,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,3,0,590.8,0,0,0 +13670,16739,30479,30481,-9,-9,2,1,0,50,1,0,1,0,3,-9,2,1,0,3,8.414002833235333,8.39098790861949,0,2,0,-9,23,0,-13,67.40079430698957,0,0,0,63,2,2,1,2,3,2019,1,1,18,6,44,50,15,1,6,1,0,11.92760560350951,11.92760560350951,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,52.09,5,1,0,0,5,4,0,569.3333333333334,0,0,0 +13670,16739,30480,-9,30479,30481,5,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1136.301084918633,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.77,58.98,3,1,0,0,5,4,0,569.3333333333334,0,0,0 +13670,16739,30481,30479,-9,-9,1,1,1,63,1,0,1,0,2,-9,2,1,0,2,8.075418150840006,7.794934406681823,0,2,0,-9,23,0,13,46.51834455652546,0,0,0,50,3,3,1,3,3,2019,1,2,24,12,43,43,15,1,12,1,0,6.49115160694305,6.49115160694305,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.96,38.67,3,1,0,0,5,4,0,569.3333333333334,0,0,0 +13670,16740,30482,-9,30479,30481,4,1,0,19,2,0,1,0,2,-9,2,1,0,4,7.490172721587073,7.581168692243883,0,3,0,0,0,-9,0,-1091.576919447379,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,20,8,28,21,15,1,8,-9,1,6.92539443878971,6.92539443878971,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.19,57.34,2,1,0,0,5,3,0,572,0,0,0 +13671,16741,30483,-9,30484,30486,6,1,0,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.03174787849,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,0,398.4,0,0,0 +13671,16741,30484,30486,-9,-9,1,1,0,40,1,0,4,0,2,-9,6,3,0,3,0,0,0,2,0,-9,22,0,1,20.98920959707596,0,0,1,39,2,4,1,3,2,2019,3,2,29,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.309878035792532,0,132.3398306244636,3,19.83,32.62,2,3,0,1,4,2,0,398.4,0,0,0 +13671,16741,30485,-9,30484,30486,5,1,0,14,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.7727787402197,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,2,0,398.4,0,0,0 +13671,16741,30486,30484,-9,-9,2,1,1,39,1,0,4,0,2,-9,2,1,0,4,7.523426825797113,7.421230540188438,0,2,0,-9,7,0,-1,-65.54987649720913,0,0,0,40,2,3,3,-9,-9,2019,2,1,9,0,9,16,15,1,1,3,0,25.41796949498909,25.41796949498909,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,6,3,0,0,4,2,0,398.4,0,0,0 +13671,16741,30487,-9,30484,30486,4,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.9688718142304,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,4,2,0,398.4,0,0,0 +13672,16742,30488,30492,-9,-9,4,1,1,39,1,2,6,0,2,-9,1,1,0,4,4.523388492723328,4.31438693316259,0,2,0,-9,7,0,10,49.05581552913965,0,0,0,29,2,5,3,-9,-9,2019,2,1,10,0,40,50,15,1,1,3,0,.2557969665789289,.2557969665789289,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,5,1,0,0,8,1,0,1295.285714285714,0,0,0 +13672,16742,30489,-9,30492,30488,5,1,0,5,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-899.6570203662499,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,8,1,0,1295.285714285714,0,0,0 +13672,16742,30490,-9,30492,30488,8,1,1,0,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-957.5512020479852,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,8,1,0,1295.285714285714,0,0,0 +13672,16742,30491,-9,30492,30488,2,1,0,9,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.484352272896,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,8,1,0,1295.285714285714,0,0,0 +13672,16742,30492,30488,-9,-9,1,1,0,29,1,2,6,0,2,-9,6,3,0,5,0,0,0,2,0,-9,7,0,-10,-180.8356519735233,0,1,1,39,2,4,1,2,2,2019,3,4,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,7,1,0,0,8,1,0,1295.285714285714,0,0,0 +13672,16742,30493,-9,30492,30488,7,1,0,2,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.350370204492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,8,1,0,1295.285714285714,0,0,0 +13672,16742,30494,-9,30492,30488,3,1,0,7,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.5166549105703,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,8,1,0,1295.285714285714,0,0,0 +13673,16743,30495,30496,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.244571272468081,7.518161469851789,0,1,0,-9,3,0,-3,53.52478267148511,0,0,0,55,1,3,1,-9,2,2019,1,2,15,3,38,38,15,1,3,1,0,8.359657614718467,8.359657614718467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,7,5,1,883.5,0,0,0 +13673,16743,30496,30495,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,3,9.540755986382198,9.586235993604515,0,1,0,-9,3,0,3,-.4039946124734757,0,0,0,52,2,4,1,-9,-9,2019,1,1,18,6,86,50,15,1,6,1,0,19.16528714173457,19.16528714173457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.6,53.06,5,1,0,0,7,5,1,883.5,0,0,0 +13674,16744,30497,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,3,0,7.87071291937421,7.466012829890584,3,0,0,0,-9,0,-927.6815780901067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.494309148989534,0,0,61.19,39.41,6,1,0,0,10,3,1,331,0,0,0 +13675,16745,30498,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-966.1224870104718,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.94,27.47,2,1,0,0,8,1,0,216,0,0,0 +13676,16746,30499,30500,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,8.049977715668996,7.938437822827485,1,0,-9,29,0,3,17.24707321525479,0,0,0,64,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.260658780927509,8.068211879906077,0,3,55.35,41.97,6,1,0,0,8,4,1,704,0,0,0 +13676,16746,30500,30499,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,7.628694473303822,7.699793102376505,1,0,-9,10,0,-3,-11.97421722594585,0,0,0,67,2,3,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.390467357515049,7.351086270658532,0,3,58.72,43.42,5,1,0,0,8,4,1,704,0,0,0 +13677,16747,30501,-9,-9,-9,1,1,1,38,3,0,0,0,1,-9,2,1,0,4,8.677216006681727,8.727803509660873,0,3,0,-9,0,1,0,-1161.908865614434,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,6,38,38,15,1,6,-9,0,20.83647706714689,20.83647706714689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.15,62.08,6,1,0,0,6,5,0,229,0,0,0 +13678,16748,30502,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,2,7.814271329922543,8.103529413891373,0,3,0,0,0,-9,0,-1160.089411214165,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,33,34,15,1,0,-9,0,10.52220525699909,10.52220525699909,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.75,17.21,6,1,0,0,6,4,1,1355,0,0,0 +13679,16749,30503,30506,-9,-9,4,1,1,28,1,0,2,0,2,-9,2,1,0,3,7.84047175627131,8.202284393106716,0,2,0,-9,1,-9,-1,-79.13664997065638,-9,1,0,29,2,3,3,-9,-9,2019,2,1,10,2,39,0,15,1,2,3,0,11.34968386120411,11.34968386120411,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.68,49.13,6,1,0,0,12,3,0,456.75,0,0,0 +13679,16749,30504,-9,30506,30503,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1006.403503703571,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,0,456.75,0,0,0 +13679,16749,30505,-9,30506,30503,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1078.758409972363,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,0,456.75,0,0,0 +13679,16749,30506,30503,-9,-9,1,1,0,29,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,1,-9,1,-176.0361614408999,-9,1,1,28,2,3,1,-9,-9,2019,3,4,18,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,58.16,6,1,0,0,12,3,0,456.75,0,0,0 +13680,16750,30507,30508,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,2,8.504310422349189,8.640527366067706,0,1,0,-9,37,0,-1,-179.6190533912166,0,0,0,56,2,1,3,3,2,2019,2,2,11,0,40,37,15,1,0,4,0,13.10362694662922,13.10362694662922,0,0,0,0,0,0,0,0,0,0,.5996336239416818,0,0,0,50.42,43.32,4,1,0,0,12,4,1,269.5,0,0,0 +13680,16750,30508,30507,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,1,0,7.01509492777528,7.330425260554621,1,0,-9,37,0,1,93.15512681660948,0,0,0,55,2,2,1,3,2,2019,3,1,24,11,0,0,15,4,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.229504108022452,0,3,40.47,22.25,2,1,0,0,12,4,1,269.5,0,0,0 +13681,16751,30509,30510,-9,-9,2,1,0,60,1,0,0,0,3,-9,2,1,0,3,7.563515389127227,7.318846137981205,0,1,0,-9,10,0,1,-9.009398252641647,0,0,0,59,3,3,1,-9,-9,2019,1,1,9,0,30,30,15,1,0,1,0,6.860068469406508,6.860068469406508,0,0,0,0,0,0,0,0,0,0,1.45944074106483,0,0,0,45.96,53.23,6,1,0,0,4,4,1,540.5,0,0,0 +13681,16751,30510,30509,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,3,8.231497811609048,8.561535655929196,0,1,0,-9,41,0,-1,59.95749359920067,0,0,0,60,3,3,1,2,2,2019,1,2,9,0,35,0,15,1,0,1,0,14.37099116484182,14.37099116484182,0,0,0,0,0,0,0,0,0,0,2.845261971511288,0,0,0,54.96,53.17,5,1,0,0,4,4,1,540.5,0,0,0 +13681,16752,30511,-9,30509,30510,3,1,0,21,2,0,0,0,1,1,2,1,0,4,7.743991394995487,8.01721876314358,0,3,0,0,0,-9,0,-967.8167418815721,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,36,0,15,1,0,-9,1,8.79963338561824,8.79963338561824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.37,43.78,5,1,0,0,4,3,1,955,0,0,0 +13682,16753,30512,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-969.4932144586875,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.58,37.68,3,1,0,0,9,1,0,2038,0,0,0 +13682,16753,30513,-9,30512,-9,4,1,1,17,2,0,0,0,2,1,2,3,0,4,7.718550809093627,7.902068455407086,0,3,0,0,0,-9,0,-916.3803282544318,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,49,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,9,1,0,2038,0,0,0 +13682,16754,30514,-9,30512,-9,2,1,0,21,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1072.853590484185,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,9,1,0,1964,0,0,0 +13682,16755,30515,-9,30512,-9,3,1,0,19,2,0,0,0,1,1,2,1,0,4,6.680897056757506,6.612577352984789,0,3,0,0,0,-9,0,-1042.099400704403,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,27,12,32,0,15,1,12,-9,1,3.036049510050753,3.036049510050753,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.86,59,5,1,0,1,9,2,0,619,0,0,0 +13683,16756,30516,-9,30520,30519,3,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.0345309218918,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,1,869.8,0,0,0 +13683,16756,30517,-9,30520,30519,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.043193015558,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,2,1,869.8,0,0,0 +13683,16756,30518,-9,30520,30519,4,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1008.915282493231,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,2,1,869.8,0,0,0 +13683,16756,30519,30520,-9,-9,2,1,1,45,1,0,3,0,2,-9,2,1,0,5,7.892132850491271,7.779830811006001,0,2,0,-9,15,0,5,137.4607120784431,0,0,0,40,2,1,3,2,2,2019,2,1,7,0,38,38,15,1,0,3,0,11.29653074306065,11.29653074306065,0,0,0,0,0,0,0,1,1,0,0,0,124.9686912904995,2,48.77,60.16,4,1,0,0,2,2,1,869.8,0,0,0 +13683,16756,30520,30519,-9,-9,1,1,0,40,1,0,3,0,2,-9,6,3,0,1,0,0,0,2,0,-9,14,0,-5,-9.645413065139691,0,0,1,45,2,5,1,3,3,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.9226730245103,3,32.96,33.84,3,1,0,0,2,2,1,869.8,0,0,0 +13684,16757,30521,-9,30522,-9,2,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1160.700275315452,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,5,4,0,1044,0,0,0 +13684,16757,30522,-9,-9,-9,1,1,0,36,3,0,1,0,2,-9,2,1,0,3,8.35364663308248,8.427003704677425,0,4,0,0,0,-9,0,-1053.889243581173,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,6,0,38,37,15,1,0,-9,0,13.14114567302664,13.14114567302664,0,0,0,0,0,0,0,1,1,0,0,0,8.620690831497178,3,59.31,49.81,6,3,0,0,5,4,0,1044,0,0,0 +13685,16758,30523,30524,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,9.058020640513995,8.536109737734032,0,1,0,-9,29,0,2,8.561629180114149,0,0,0,53,2,5,1,2,2,2019,1,1,6,0,45,44,15,1,0,1,0,19.55583934859735,19.55583934859735,0,0,0,0,0,0,0,0,0,0,6.250541323568738,0,0,0,60.12,54.8,7,1,0,0,5,5,1,442.5,0,0,0 +13685,16758,30524,30523,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,7.884401357298917,8.04791016766089,0,1,0,-9,31,0,-2,124.3446461125118,0,0,0,55,2,4,1,2,1,2019,1,2,7,0,40,39,15,1,0,1,0,10.08491721793648,10.08491721793648,0,0,0,0,0,0,0,0,0,0,4.029645286124327,0,0,0,58.05,54.52,7,1,0,0,5,5,1,442.5,0,0,0 +13685,16759,30525,-9,30524,30523,3,1,0,24,2,0,0,0,1,-9,2,1,0,2,8.208812650922635,7.737743397339921,0,3,0,0,0,-9,0,-1041.416132683035,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,13,15,1,0,-9,1,6.476385536835018,6.476385536835018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.37,50.97,5,1,0,0,5,3,1,225,0,0,0 +13686,16760,30526,-9,30527,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1034.282808435629,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,1,0,788.3333333333334,0,0,0 +13686,16760,30527,-9,-9,-9,1,1,0,38,2,0,2,0,2,-9,7,2,0,3,0,0,0,4,0,-9,0,0,0,-1007.275205023342,1,0,1,-9,-9,-9,-9,1,1,2019,-9,0,11,1,0,23,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.6446148187319,3,46.87,54.33,6,1,0,0,8,1,0,788.3333333333334,0,0,0 +13686,16760,30528,-9,30527,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-896.5109295494303,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,8,1,0,788.3333333333334,0,0,0 +13687,16761,30529,30530,-9,-9,1,1,0,33,1,2,3,0,1,-9,2,1,0,5,7.792896082662389,7.943261063424345,0,2,0,-9,4,0,-2,-86.98106965358197,0,0,1,35,2,3,1,2,-9,2019,1,2,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,1,1,0,0,9,5,1,2359.4,0,0,0 +13687,16761,30530,30529,-9,-9,2,1,1,35,1,2,3,0,2,-9,2,1,0,3,9.047814346777804,9.095620679692775,0,2,0,-9,4,0,2,74.60029357644721,0,0,0,33,1,5,1,1,2,2019,1,1,12,1,44,45,15,1,1,1,0,25.06498576727031,25.06498576727031,0,0,0,0,0,0,0,0,0,0,1.61399393509658,0,0,0,52.41,34.15,6,1,0,0,9,5,1,2359.4,0,0,0 +13687,16761,30531,-9,30529,30530,4,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.979537992357,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,9,5,1,2359.4,0,0,0 +13687,16761,30532,-9,30529,30530,5,1,1,0,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1001.229803593771,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,9,5,1,2359.4,0,0,0 +13687,16761,30533,-9,30529,30530,3,1,1,5,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-883.3319905900676,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,9,5,1,2359.4,0,0,0 +13688,16762,30534,30535,-9,-9,1,1,0,60,1,0,1,0,2,-9,7,2,0,4,0,7.19686972846177,7.364197020114706,2,0,-9,8,0,1,62.52092156254359,1,0,0,59,1,4,1,2,1,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.272229632682621,0,0,44.59,59.08,6,1,0,0,9,5,1,286.3333333333333,0,0,0 +13688,16762,30535,30534,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,4,9.260412450256775,8.815710091266121,0,2,0,-9,8,0,-1,193.5558372249334,0,0,0,60,2,4,2,2,2,2019,2,1,8,0,38,40,15,1,0,2,0,27.66544221784562,27.66544221784562,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,286.3333333333333,0,0,0 +13688,16762,30536,-9,30534,30535,3,1,0,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1142.898044280673,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,6,1,0,0,9,5,1,286.3333333333333,0,0,0 +13689,16763,30537,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,4,8.558068435715741,8.960957337495266,0,3,0,-9,0,-9,0,-958.5532265224338,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,48,0,15,1,1,-9,0,10.77497324764661,10.77497324764661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,2,5,1,4808,0,0,0 +13690,16764,30538,30539,-9,-9,2,1,0,47,1,0,0,0,3,-9,2,1,0,3,7.915247264649292,8.074954753922494,0,1,0,-9,6,0,-2,-11.11122261754227,0,0,0,49,2,3,1,3,-9,2019,1,1,6,0,38,38,15,1,0,1,0,9.874065672290724,9.874065672290724,0,0,0,0,0,0,0,0,0,0,3.395002661378724,0,0,0,63.83,38.08,6,1,0,0,1,5,1,999,0,0,0 +13690,16764,30539,30538,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,3,8.615841782181711,8.474305071214003,0,1,0,-9,6,0,2,38.59116366195061,0,0,0,47,3,3,1,2,2,2019,1,2,6,0,38,47,15,1,0,1,0,19.23460538387845,19.23460538387845,0,0,0,0,0,0,0,0,0,0,4.49134888890895,0,0,0,55.36,51.57,6,1,0,0,1,5,1,999,0,0,0 +13691,16765,30540,-9,-9,-9,1,1,0,44,3,0,2,0,2,-9,2,1,0,3,7.963306755085581,8.354297192452588,6.382520055013496,4,0,0,0,-9,0,-1051.374431715364,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,32,32,15,1,0,-9,0,14.50036911259736,14.50036911259736,0,0,0,0,0,0,0,1,1,0,6.84487070281698,0,0,0,52,54.51,4,1,0,0,1,3,1,655,0,0,0 +13691,16765,30541,-9,30540,-9,2,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-936.3280402977464,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,7,1,0,0,1,3,1,655,0,0,0 +13691,16765,30542,-9,30540,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-955.9135170442462,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,3,1,655,0,0,0 +13692,16766,30543,30544,-9,-9,2,1,1,73,1,0,0,0,3,-9,1,1,0,4,0,6.856534355685603,6.870416084646067,1,0,-9,48,0,5,-132.4974979893254,0,0,0,68,2,2,1,3,3,2019,1,1,6,0,40,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.158028872874484,7.055462218904316,0,1,56.35,51,6,1,0,0,10,2,1,550.5,0,0,0 +13692,16766,30544,30543,-9,-9,1,1,0,68,1,0,0,0,2,-9,1,1,0,2,0,6.632825810694865,6.554710390177938,1,0,-9,48,0,-5,76.90333696515989,0,0,0,73,3,4,1,3,3,2019,1,2,12,1,0,0,15,1,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,6.691570992400136,6.688819279043416,0,0,46.85,23.35,3,1,0,0,10,2,1,550.5,0,0,0 +13693,16767,30545,30546,-9,-9,1,1,1,70,1,0,0,0,1,-9,1,1,0,3,0,7.468147401532958,7.910720217999942,1,0,-9,22,0,3,131.2354085664191,0,0,0,67,2,4,1,2,2,2019,1,2,7,0,0,6,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.925047411098833,7.778604999802016,0,0,58.23,43.46,5,1,0,0,5,5,1,572,0,0,0 +13693,16767,30546,30545,-9,-9,2,1,0,67,1,0,0,0,2,-9,1,1,0,4,7.555815806499082,8.947920595182277,8.264815960817836,1,0,-9,10,0,-3,34.58029385508771,0,0,0,70,1,3,1,2,2,2019,1,1,9,0,10,16,15,1,0,1,0,18.13539897533012,18.13539897533012,0,0,0,0,0,0,0,1,1,0,7.951476342414465,8.493483941264213,0,0,49.2,44.97,5,1,0,0,5,5,1,572,0,0,0 +13694,16768,30547,30548,-9,-9,1,1,0,60,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,43,0,-3,0,0,0,0,63,3,2,1,3,3,2019,3,2,33,12,0,20,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,2,1,0,1,7,1,0,216,0,0,0 +13694,16768,30548,30547,-9,-9,2,1,1,63,1,0,0,0,3,-9,1,1,0,2,0,0,0,1,0,-9,43,0,3,0,0,0,0,60,3,1,3,-9,3,2019,2,1,23,11,0,0,15,1,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.13909618218814,1,25.25,34.71,3,1,0,1,7,1,0,216,0,0,0 +13694,16769,30549,-9,30547,30548,3,1,0,32,2,0,0,0,2,-9,2,1,0,4,8.182159035944073,8.116103901518596,0,3,0,0,0,-9,0,-985.2668289139182,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,42,37,15,1,0,-9,1,10.89438363320858,10.89438363320858,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.26,59.43,5,1,0,0,7,4,0,1075,0,0,0 +13695,16770,30550,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,2,0,6.562177172608978,7.190757619988309,3,0,0,0,-9,0,-1047.539028085918,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,4.00014448351331,0,1,1,0,0,6.778711766769106,0,0,59,36.72,7,1,0,0,11,2,0,725,0,0,0 +13696,16771,30551,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,3,8.530345264647206,8.540078110381829,0,3,0,0,0,-9,0,-1004.699874544013,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,47,47,15,1,0,-9,0,9.053722561127648,9.053722561127648,0,0,0,0,0,0,0,0,0,0,0,0,15.87880401764177,3,56.74,55.09,5,4,0,0,8,4,0,1228,0,0,0 +13697,16772,30552,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,5,8.315550072292051,8.307983179163976,2.748878648086365,3,0,0,0,-9,0,-923.3332696434194,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,47,45,15,1,0,-9,0,10.61672621337413,10.61672621337413,0,0,0,0,0,0,0,1,1,0,2.683497830003859,3.410196638948985,0,3,50.23,42.88,6,1,0,0,9,4,0,1104,0,0,0 +13698,16773,30553,30555,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,5,0,0,0,2,0,-9,26,0,5,0,0,0,0,43,1,5,3,2,2,2019,2,2,3,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,8,1,1,274.6666666666667,0,0,0 +13698,16773,30554,-9,30555,30553,4,1,1,17,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1091.158280689874,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,8,1,1,274.6666666666667,0,0,0 +13698,16773,30555,30553,-9,-9,2,1,0,43,1,0,1,0,1,-9,3,3,0,5,0,0,0,2,0,-9,10,0,-5,0,0,0,1,48,1,5,1,-9,-9,2019,3,1,0,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.57000000000001,38.36,7,3,1,0,8,1,1,274.6666666666667,0,0,0 +13698,16774,30556,-9,30555,30553,3,1,1,21,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1046.076136870077,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,8,1,1,81,0,0,0 +13699,16775,30557,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,5.918250262401053,5.816895916079736,3,0,0,0,-9,0,-964.2835878070205,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.188644216660347,5.005769548731736,0,0,52.39,37.78,6,1,0,0,12,2,1,607,0,0,0 +13700,16776,30558,30559,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,3,0,6.713516422733099,6.596302617624721,1,0,-9,9,0,-1,-41.16483092807456,0,0,0,71,3,3,3,2,3,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.020153691410802,6.698710475204308,0,0,45.05,40.21,5,1,0,0,9,3,1,588,0,0,0 +13700,16776,30559,30558,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,7.256549052700286,7.27041172897644,1,0,-9,9,0,1,-50.95754492818223,0,0,0,70,1,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.189771024154154,7.207697841506828,0,0,42.21,52.5,5,1,0,0,9,3,1,588,0,0,0 +13701,16777,30560,-9,30562,-9,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-970.6909450494068,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,4,1,0,454.3333333333333,0,0,0 +13701,16777,30561,-9,30562,-9,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-920.6588440199328,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,1,0,454.3333333333333,0,0,0 +13701,16777,30562,-9,-9,-9,1,1,0,45,2,1,2,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-886.7928496095333,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.85,50.34,3,1,0,1,4,1,0,454.3333333333333,0,0,0 +13701,16778,30563,-9,30562,-9,2,1,1,20,2,1,2,0,2,-9,2,1,0,2,7.411225642438079,7.435890684921675,0,3,0,0,0,-9,0,-1072.688746976499,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,6,0,35,15,1,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.3,47.01,4,2,0,1,4,3,0,1560,0,0,0 +13702,16779,30564,30565,-9,-9,1,1,0,48,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,28,0,-11,0,0,0,0,59,2,5,3,2,3,2019,4,2,15,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.20218494177218,3,48.45,57.49,6,1,0,0,1,1,1,795,0,0,0 +13702,16779,30565,30564,-9,-9,2,1,1,59,1,0,1,0,2,-9,4,3,0,5,0,0,0,2,0,-9,28,0,11,0,0,0,0,48,2,3,3,-9,1,2019,4,1,13,2,0,0,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.929061830753477,0,0,0,51.14,60.45,6,1,0,0,1,1,1,795,0,0,0 +13703,16780,30566,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,4,9.319028683564152,8.576751769523465,0,3,0,0,0,-9,0,-1046.82339891849,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,1,47,42,15,1,1,-9,0,20.80379102686864,20.80379102686864,0,0,0,0,0,0,0,0,0,0,8.197352584526644,0,0,0,46.39,52.95,6,2,0,0,8,5,1,217,0,0,0 +13704,16781,30567,30568,-9,-9,1,1,1,85,1,0,0,0,2,-9,4,3,0,3,0,7.524085745381559,7.239455116651353,1,0,-9,64,0,2,.0691868449495274,0,0,0,83,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.390053729843109,7.678570469620501,0,0,57.56,45.08,4,1,0,0,7,2,1,823.5,0,0,0 +13704,16781,30568,30567,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,2.673755187985846,2.439171282239884,1,0,-9,64,0,-2,85.20949956426244,0,0,0,85,2,3,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.368994072532006,0,0,53.96,45.35,5,1,0,0,7,2,1,823.5,0,0,0 +13705,16782,30569,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,4,3,0,2,0,7.85456448975775,7.694323155938448,3,0,0,0,-9,0,-909.0497510175879,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,1.431532994708377,0,0,0,1,1,0,0,7.712463406902046,0,0,61.43,32.82,6,1,0,0,7,3,0,451,0,0,0 +13706,16783,30570,30571,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,5,8.548534359095674,8.805846538924845,0,1,0,-9,4,0,-2,-25.20913461765259,0,0,0,54,2,3,1,-9,-9,2019,1,2,8,0,45,43,15,1,0,1,0,18.79300641597201,18.79300641597201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.47,40.16,5,1,0,0,10,5,1,1812,0,0,0 +13706,16783,30571,30570,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,6.909237624498778,7.085337782801472,0,1,0,-9,4,0,2,59.01041798974935,0,0,0,52,2,5,1,-9,-9,2019,1,1,5,0,23,27,15,1,0,1,0,6.983942270604001,6.983942270604001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,6,1,0,0,10,5,1,1812,0,0,0 +13706,16784,30572,-9,30571,30570,3,1,1,30,2,0,0,0,2,-9,2,1,0,4,7.623995779405433,7.436372396168617,0,3,0,0,0,-9,0,-919.3055495792648,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,32,15,1,0,-9,1,5.943581801397762,5.943581801397762,0,0,0,0,0,0,0,0,0,0,1.00786499059323,0,0,0,57.7,55.88,4,1,0,0,10,3,1,592,0,0,0 +13706,16785,30573,-9,30571,30570,4,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.375709069338714,7.641873941871206,0,3,0,0,0,-9,0,-963.3834229201052,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,60,15,1,0,-9,1,5.984388169882609,5.984388169882609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,1,0,0,10,3,1,2680,0,0,0 +13706,16786,30574,-9,30571,30570,5,1,1,18,2,0,0,1,2,0,7,2,0,5,5.824123865614554,5.992641121345327,0,3,0,0,0,-9,0,-1009.422251492702,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,32,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,10,2,1,600,0,0,0 +13707,16787,30575,-9,30577,30576,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.5084744947469,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,5,0,0,4,4,1,386,0,0,0 +13707,16787,30576,30577,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,4,8.567240380619415,8.371558350974302,4.611987616965389,2,0,-9,10,0,-5,18.47879514905074,0,0,0,46,2,4,1,2,2,2019,1,1,10,0,43,51,15,1,0,1,0,8.198465741232232,8.198465741232232,0,0,0,0,0,0,0,1,1,0,5.165830913791016,4.840742890559095,0,0,57.16,56.15,6,1,0,0,4,4,1,386,0,0,0 +13707,16787,30577,30576,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,4,7.88221738529668,7.760068742738103,0,2,0,-9,10,0,5,24.37844633893345,0,0,0,41,2,4,1,2,2,2019,1,2,8,0,28,22,15,1,0,1,0,10.33011751215135,10.33011751215135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,4,4,1,386,0,0,0 +13708,16788,30578,-9,30579,30580,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.922255525742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,5,5,1,1991,0,0,0 +13708,16788,30579,30580,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,8.565560215100485,8.378600797021216,0,2,0,-9,10,0,0,-69.22301487958202,0,0,0,47,1,3,1,2,2,2019,1,2,9,0,45,51,15,1,0,1,0,10.90928090950977,10.90928090950977,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,5,5,1,1991,0,0,0 +13708,16788,30580,30579,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,3,8.540667740516334,8.803375641844248,0,2,0,-9,10,0,0,137.0772277757194,0,0,0,47,1,4,1,2,2,2019,1,1,14,2,39,40,15,1,2,1,0,15.47897120901127,15.47897120901127,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,3,2,0,0,5,5,1,1991,0,0,0 +13708,16788,30581,-9,30579,30580,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.2545041115927,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,5,5,1,1991,0,0,0 +13709,16789,30582,-9,-9,-9,1,1,0,46,3,0,0,0,1,-9,2,1,0,2,7.662212576469343,7.821330186704824,0,3,0,0,0,-9,0,-844.9755699530567,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,30,35,15,1,2,-9,0,11.13241858751834,11.13241858751834,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.67,40.72,2,1,0,1,4,4,1,331,0,0,0 +13710,16790,30583,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,4,8.349363961398771,8.263503935705263,0,3,0,0,0,-9,0,-1039.029617365444,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,40,45,15,1,0,-9,0,12.54385699685564,12.54385699685564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,4,1,0,0,2,4,0,550,0,0,0 +13711,16791,30584,-9,30585,-9,1,1,0,25,2,0,0,0,1,0,7,2,0,4,5.077075830719457,5.322249297434767,0,3,0,0,0,-9,0,-982.6848038808887,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,0,0,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.541150815818471,0,0,0,43.18,55.57,6,4,0,0,8,2,0,416,0,0,0 +13711,16792,30585,-9,-9,-9,2,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.84008863900471,8.316015692232039,0,3,0,0,0,-9,0,-1042.094334733267,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,38,38,15,1,1,-9,0,10.40271289983255,10.40271289983255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,5,4,0,1,8,4,0,138,0,0,0 +13712,16793,30586,30587,-9,-9,1,1,0,57,1,0,0,0,2,-9,1,1,0,3,6.107704729621704,5.844945166629865,0,1,0,-9,34,0,-2,-6.121738612524506,0,0,0,59,1,4,1,2,2,2019,1,2,23,8,5,12,15,1,8,1,0,11.80991184921557,11.80991184921557,0,0,0,0,0,0,0,1,1,0,2.042388229378322,0,0,0,37.53,28.43,4,1,0,0,9,5,1,746.5,0,0,0 +13712,16793,30587,30586,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,9.471009482716982,9.46260372230854,0,1,0,-9,34,0,2,-5.2694631620456,0,0,0,57,2,3,1,2,1,2019,1,1,12,1,45,45,15,1,1,1,0,26.60743633916914,26.60743633916914,0,0,0,0,0,0,0,1,1,0,4.617704719889853,0,0,0,35.38,63.46,5,1,0,0,9,5,1,746.5,0,0,0 +13713,16794,30588,-9,-9,-9,1,1,1,49,2,0,0,0,3,-9,2,1,0,3,8.05058137489015,8.174189941580625,0,3,0,0,0,-9,0,-1027.078507313495,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,43,43,15,1,0,-9,0,6.830605075433764,6.830605075433764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,56.99,4,3,0,0,2,4,1,515,0,0,0 +13714,16795,30589,-9,30593,30590,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-870.2795871453295,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,536.4,0,0,0 +13714,16795,30590,30593,-9,-9,2,1,1,36,1,1,3,0,1,-9,2,1,0,5,8.658989547625083,8.460823300050423,0,2,0,-9,10,0,-4,-83.82485444102164,0,0,0,40,1,2,1,-9,-9,2019,1,1,11,2,37,37,15,1,2,1,0,14.72238202009085,14.72238202009085,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,7,1,0,0,5,4,1,536.4,0,0,0 +13714,16795,30591,-9,30593,30590,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1059.000613830686,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,4,1,536.4,0,0,0 +13714,16795,30592,-9,30593,30590,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.279673684509,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,536.4,0,0,0 +13714,16795,30593,30590,-9,-9,1,1,0,40,1,1,3,0,1,-9,5,1,0,2,8.470289774027817,8.766102770210246,0,2,0,-9,10,0,4,33.06566971222609,0,0,1,36,1,5,1,2,2,2019,1,2,5,0,29,29,15,1,0,1,0,16.99702805640671,16.99702805640671,0,0,0,0,0,0,0,1,1,0,2.350124243713516,0,0,0,50.46,48.82,6,1,0,0,5,4,1,536.4,0,0,0 +13715,16796,30594,30595,-9,-9,1,1,1,30,1,1,1,0,2,-9,1,1,0,4,8.546921689095118,9.000338969099863,0,2,0,1,1,-9,9,-49.19795592104563,0,0,0,21,2,4,3,2,2,2019,2,3,10,0,50,50,15,1,1,3,0,14.65862794483531,14.65862794483531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,54.67,6,1,0,0,8,4,0,550.3333333333334,0,0,0 +13715,16796,30595,30594,-9,-9,3,1,0,21,1,1,1,0,2,-9,6,3,0,4,0,0,0,2,0,1,1,-9,0,50.32190774422888,0,1,1,30,2,4,1,-9,-9,2019,3,1,11,0,0,8,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,8,4,0,550.3333333333334,0,0,0 +13715,16796,30596,-9,30595,30594,2,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.73732499916,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,8,4,0,550.3333333333334,0,0,0 +13716,16797,30597,30599,-9,-9,1,1,0,42,1,0,2,0,2,-9,1,1,0,4,7.730982511035662,8.075705827348878,0,2,0,-9,17,0,-1,35.59548984870769,0,0,1,43,1,3,1,3,3,2019,1,2,18,6,10,25,15,1,6,1,0,29.18713252221576,29.18713252221576,0,0,0,0,0,0,0,1,1,0,1.229478052148278,0,0,0,38.06,61.12,5,1,0,0,9,5,1,1238.5,0,0,0 +13716,16797,30598,-9,30597,30599,4,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1021.694749885783,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,5,1,1238.5,0,0,0 +13716,16797,30599,30597,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,3,9.903152269165227,9.797592398646156,0,2,0,-9,18,0,1,-101.0266050310726,0,0,0,42,2,4,1,1,1,2019,1,1,9,0,55,45,15,1,0,1,0,41.24637232830666,41.24637232830666,0,0,0,0,0,0,0,1,1,0,1.952439801834934,0,0,0,55.36,51.57,4,1,0,0,9,5,1,1238.5,0,0,0 +13716,16797,30600,-9,30597,30599,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.761712893833,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,1238.5,0,0,0 +13717,16798,30601,30602,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,2,7.775005628710872,7.933325186084359,0,1,0,-9,10,0,-12,-88.05162041380007,0,0,0,68,2,3,3,-9,-9,2019,2,1,15,4,38,38,15,1,4,4,0,7.680998145045556,7.680998145045556,0,0,0,0,0,0,0,1,1,0,3.625643021504576,0,0,0,26.32,53.06,3,1,0,0,6,3,1,273,0,0,0 +13717,16798,30602,30601,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.381301275119217,6.37551541082707,1,0,-9,10,0,12,-12.47251525432618,0,0,0,56,2,2,1,3,3,2019,3,2,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.565684134652355,6.580602063432083,0,0,43.18,47.7,5,1,0,0,6,3,1,273,0,0,0 +13718,16799,30603,-9,30605,30604,4,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1012.89143652162,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,5,1,0,0,7,5,1,608.6666666666666,0,0,0 +13718,16799,30604,30605,-9,-9,2,1,1,42,1,0,2,0,1,-9,1,1,0,4,9.517233999550609,9.449906475902374,0,2,0,-9,6,0,1,-1.498041852441208,0,0,0,41,1,4,1,-9,-9,2019,1,1,9,0,40,50,15,1,1,1,0,30.09448400971931,30.09448400971931,0,0,0,0,0,0,0,0,0,0,6.828725192234892,0,0,0,52,55,5,1,0,0,7,5,1,608.6666666666666,0,0,0 +13718,16799,30605,30604,-9,-9,1,1,0,41,1,0,2,0,1,-9,1,1,0,4,9.803851471757993,10.05315928536764,0,2,0,-9,21,0,-1,46.52629391244128,0,0,1,42,1,4,1,2,3,2019,1,2,7,0,37,37,15,1,0,1,0,53.89048665208241,53.89048665208241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.28,46.44,6,1,0,0,7,5,1,608.6666666666666,0,0,0 +13718,16800,30606,-9,30605,30604,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1157.731772752548,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,6,1,0,0,7,5,1,157,0,0,0 +13719,16801,30607,30608,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,3,7.705352622843463,7.956190027317207,6.540960615543353,1,0,-9,43,0,3,-54.88225047639421,0,0,0,60,2,3,1,3,3,2019,1,2,12,0,40,49,15,1,0,1,0,8.353353217784592,8.353353217784592,0,0,0,0,0,0,0,0,0,0,2.896622020526642,7.07284135261515,0,0,58.32,50.22,6,1,0,0,5,4,1,836.5,0,0,0 +13719,16801,30608,30607,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.168610373296474,7.279554884908936,0,1,0,-9,43,0,-3,52.65397077214061,0,0,0,63,3,3,1,3,2,2019,1,1,13,1,18,18,15,1,1,1,0,9.452427020943105,9.452427020943105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.64,52.96,6,1,0,0,5,4,1,836.5,0,0,0 +13720,16802,30609,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,31,0,1,-145.2792421197975,0,0,0,-9,-9,-9,-9,2,3,2019,4,2,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,10,2,1,747,0,0,0 +13720,16803,30610,-9,-9,-9,2,1,1,54,2,0,0,0,2,-9,4,3,0,5,0,7.078535218686381,7.180395951412587,1,0,-9,31,0,-1,2.904119583206791,0,0,0,-9,-9,-9,-9,2,2,2019,4,1,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.014563841174562,0,0,3,53.86,52.34,6,1,0,0,10,2,1,343,0,0,0 +13721,16804,30611,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,6.209144252833021,6.207072895469021,3,0,0,0,-9,0,-1021.749523518586,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.197641232319318,6.284745754797115,0,0,57.33,53.46,6,1,0,0,9,2,1,492,0,0,0 +13722,16805,30612,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,3,0,5.202901363273034,5.308510896254041,3,0,0,0,-9,0,-1154.05981447313,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.760439680605572,5.447812696797244,0,0,45.49,58.84,6,1,0,0,13,2,0,6419,0,0,0 +13723,16806,30613,-9,30616,30615,4,1,0,15,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1129.094101770248,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,3,0,0,10,2,0,1657.166666666667,0,0,0 +13723,16806,30614,-9,30616,30615,7,1,0,10,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-996.2640612220954,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,3,0,0,10,2,0,1657.166666666667,0,0,0 +13723,16806,30615,30616,-9,-9,8,1,1,43,1,0,4,0,2,-9,1,1,0,3,4.869899682607014,4.81186315168245,0,2,0,-9,1,-9,-4,-2.590915052124049,-9,0,0,47,1,5,1,-9,-9,2019,1,1,12,0,30,0,15,1,0,1,0,.457670943092203,.457670943092203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.01,42.56,3,3,0,0,10,2,0,1657.166666666667,0,0,0 +13723,16806,30616,30615,-9,-9,1,1,0,47,1,0,4,0,1,-9,2,1,0,5,7.969125105347976,7.992120457865679,0,2,0,1,1,-9,4,33.68994881828746,0,0,0,43,2,3,1,2,2,2019,1,8,8,0,48,35,15,1,0,1,0,9.776295143356279,9.776295143356279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.77,49.13,7,3,0,0,10,2,0,1657.166666666667,0,0,0 +13723,16806,30617,-9,30616,30615,5,1,1,14,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-938.5573708564441,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,3,0,0,10,2,0,1657.166666666667,0,0,0 +13723,16806,30618,-9,30616,30615,6,1,0,12,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.992441828785,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,10,2,0,1657.166666666667,0,0,0 +13723,16807,30619,-9,30616,30615,2,1,1,18,2,0,4,0,2,-9,7,2,0,5,7.041541655674658,7.384858765815148,0,3,0,0,0,-9,0,-1119.670746919312,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.3861238226667869,0,0,0,67.33,43.48,7,3,0,0,10,3,0,430,0,0,0 +13724,16808,30620,30621,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,4,7.848944610040975,8.027464614203314,0,1,0,-9,5,0,5,-163.074865310821,0,0,0,35,2,5,1,3,3,2019,1,1,12,1,40,40,15,1,1,1,0,8.350372960938463,8.350372960938463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,6,1,0,0,5,5,1,1518,0,0,0 +13724,16808,30621,30620,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,5,8.593267278665648,8.601483418020335,0,1,0,-9,5,0,-5,70.5995882540678,0,0,1,40,2,4,1,2,2,2019,1,2,9,1,40,40,15,1,1,1,0,18.95539173276355,18.95539173276355,0,0,0,0,0,0,0,0,0,0,1.459487897283471,0,0,0,57.06,57.76,6,1,0,0,5,5,1,1518,0,0,0 +13725,16809,30622,30623,-9,-9,1,1,1,61,1,0,0,0,2,-9,2,1,0,2,8.079030992214607,7.861474119715119,0,1,0,-9,43,0,-2,-140.5466020445661,0,0,0,63,1,3,1,3,2,2019,1,2,14,2,48,0,15,1,2,1,0,7.038518122976329,7.038518122976329,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,31.65,3,1,0,0,8,4,0,2094.5,0,0,0 +13725,16809,30623,30622,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,3,7.684722283269048,7.708487836882056,4.54704780881554,1,0,-9,43,0,2,51.34130164404634,0,0,0,61,2,2,1,-9,-9,2019,1,1,12,1,35,0,15,1,1,1,0,7.1011020760751,7.1011020760751,0,0,0,0,0,0,0,1,1,0,4.233552183840438,4.214732275338002,0,0,54.38,49.27,2,1,0,0,8,4,0,2094.5,0,0,0 +13726,16810,30624,-9,30626,-9,4,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1048.006345665339,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,1,1140.5,0,0,0 +13726,16810,30625,-9,30626,-9,2,1,1,12,2,0,4,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1024.232267642112,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,2,2,1,1140.5,0,0,0 +13726,16810,30626,-9,-9,-9,1,1,0,39,3,0,4,0,2,-9,2,1,0,4,7.748040234342118,7.831175905955889,0,4,0,0,0,-9,0,-896.8083445156374,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,17,18,15,1,0,-9,0,13.87756172502519,13.87756172502519,0,0,0,0,0,0,0,1,1,0,0,0,39.80759177504522,3,49.46,56.91,6,1,0,1,2,2,1,1140.5,0,0,0 +13726,16810,30627,-9,30626,-9,5,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-968.1769513664167,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,1,1140.5,0,0,0 +13727,16811,30628,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,3,2.772184509879817,6.919692814912514,6.584201542214087,3,0,0,0,-9,0,-1160.03930178702,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.738340096360569,0,0,0,38.91,57.83,2,1,0,0,4,2,0,1051,0,0,0 +13728,16812,30629,30630,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,4,0,8.504077913456646,8.698346494518974,1,0,-9,28,0,9,-34.1430091358525,0,0,0,71,2,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.744189728665617,8.297298869283505,0,0,56.18,53.85,6,1,0,0,9,5,1,965.5,0,0,0 +13728,16812,30630,30629,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,8.387104271901693,7.949396317754427,1,0,-9,35,0,0,89.21117240250126,0,0,0,80,2,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.505331668347676,8.132026527368064,12.99494217038906,3,51.24,58.84,6,1,0,0,9,5,1,965.5,0,0,0 +13729,16813,30631,30632,-9,-9,1,1,0,54,1,0,3,0,2,-9,1,1,0,3,7.226639359527507,7.270526393814073,0,2,0,-9,22,0,3,-53.27935500832872,0,0,0,51,2,3,1,3,2,2019,1,2,12,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,4,1,0,0,2,5,0,1688.333333333333,0,0,0 +13729,16813,30632,30631,-9,-9,2,1,1,51,1,0,3,0,2,-9,2,1,0,3,9.612810710081748,9.677045980987206,0,2,0,-9,22,0,-3,-104.4822750610815,0,0,0,54,2,3,1,3,2,2019,1,1,3,0,40,0,15,1,0,1,0,53.04823635326375,53.04823635326375,0,0,0,0,0,0,0,1,1,0,9.586660196996906,0,0,0,49.04,55.86,6,1,0,0,2,5,0,1688.333333333333,0,0,0 +13729,16813,30633,-9,30631,30632,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.514421177334,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,0,1688.333333333333,0,0,0 +13729,16814,30634,-9,30631,30632,4,1,1,29,3,0,3,0,2,-9,7,2,0,3,0,6.469685879229253,6.342137416147367,3,0,0,0,-9,0,-1109.730869905911,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.627927008895997,0,0,0,43.92,51.26,6,1,0,0,2,2,0,613,0,0,0 +13729,16814,30635,-9,-9,30634,6,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1148.62418831344,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,2,2,0,613,0,0,0 +13729,16814,30636,-9,-9,30634,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1070.106639504498,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,613,0,0,0 +13730,16815,30637,30638,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,8.085982046410344,7.979996750512752,1,0,-9,15,0,-1,46.51130466628568,0,0,0,65,1,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.018904900995964,7.92355545318265,0,0,61.43,43.34,5,1,0,0,7,4,0,815,0,0,0 +13730,16815,30638,30637,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,5,0,7.92469854499933,7.797517605796736,1,0,-9,15,0,1,85.67526290039943,0,0,0,64,1,3,3,2,2,2019,4,2,3,0,0,42,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.745360262462832,7.862144343080351,0,0,62.39,56.71,7,1,0,0,7,4,0,815,0,0,0 +13731,16816,30639,30640,-9,-9,1,1,0,26,1,1,1,0,1,-9,2,1,0,3,8.500999455305298,8.479148276075348,0,2,0,-9,3,0,-1,11.42157501458192,0,1,1,27,2,3,1,1,1,2019,1,2,9,0,37,38,15,1,0,1,0,15.60313237409107,15.60313237409107,0,0,0,0,0,0,0,1,1,0,1.952261775082516,0,0,0,50.03,52.62,6,1,0,0,6,3,1,371.6666666666667,0,0,0 +13731,16816,30640,30639,-9,-9,2,1,1,27,1,1,1,0,2,-9,2,1,0,3,0,0,0,2,0,-9,3,0,1,.1241493662212978,0,1,0,26,1,3,1,-9,-9,2019,1,1,12,0,0,40,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.310492116504359,0,0,0,46,53,5,1,0,0,6,3,1,371.6666666666667,0,0,0 +13731,16816,30641,-9,30639,30640,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.9103332347246,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,371.6666666666667,0,0,0 +13732,16817,30642,30643,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,45,0,0,78.48399026286374,0,0,0,67,3,4,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.915479285587353,0,0,0,48.04,13.58,6,1,0,0,2,2,0,603.5,0,0,0 +13732,16817,30643,30642,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,6.767591752688191,6.781762631988938,1,0,-9,45,0,0,-38.73948421525051,0,0,0,67,2,1,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.078342204696427,6.754273493466098,67.78762571152528,1,54.77,55.87,5,1,0,0,2,2,0,603.5,0,0,0 +13733,16818,30644,30645,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,3,0,8.244207925682762,8.443555627390648,1,0,-9,7,0,3,86.07967530895034,0,0,0,58,1,4,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.747418503239055,0,0,51,48,5,1,0,0,2,5,1,197.5,0,0,0 +13733,16818,30645,30644,-9,-9,1,1,0,58,1,0,0,0,1,-9,4,3,0,4,0,8.503820206546179,8.294865245158626,1,0,-9,26,0,-3,-21.14937467271018,0,0,0,61,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.82185878523627,8.343674993412922,0,3,54.79,55.86,7,1,0,0,2,5,1,197.5,0,0,0 +13734,16819,30646,-9,30648,30647,3,1,0,18,2,0,0,0,2,1,2,1,0,4,5.029339762564258,4.625690037131933,0,3,0,0,0,-9,0,-898.5649138411237,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,2,0,15,1,0,-9,1,8.122929298578008,8.122929298578008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,4,1,0,0,11,2,1,476,0,0,0 +13734,16820,30647,30648,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,8.039607993106021,7.915334402171533,0,1,0,-9,8,0,-5,-62.3321150671709,0,0,0,48,2,3,1,3,-9,2019,1,2,6,0,39,40,15,1,0,1,0,9.345186194301291,9.345186194301291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.29,51.8,6,1,0,0,11,4,1,883,0,0,0 +13734,16820,30648,30647,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,8.085536310687369,7.893353216052637,0,1,0,-9,8,0,5,29.79153937574447,0,0,0,43,2,4,1,-9,-9,2019,1,1,11,1,10,100,15,1,1,1,0,32.90599258554037,32.90599258554037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.64,42.03,4,1,0,0,11,4,1,883,0,0,0 +13735,16821,30649,-9,-9,-9,1,1,1,75,2,0,0,0,3,-9,4,3,0,4,0,7.049256715378276,7.146067940900465,3,0,0,0,-9,0,-975.0317252617779,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.012651286315781,6.61287535240225,0,0,42.47,53.57,6,1,0,0,13,2,0,3761,0,0,0 +13736,16822,30650,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,3,8.399240256000537,8.62895304383553,0,3,0,0,0,-9,0,-836.1999746422041,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,45,15,1,0,-9,0,11.81634098943336,11.81634098943336,0,0,0,0,0,0,0,1,1,0,2.593390174577887,0,0,0,54.37,54.8,5,1,0,0,1,5,1,1349,0,0,0 +13737,16823,30651,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,7.765114009721571,7.852232663991729,0,3,0,-9,0,-9,0,-971.4231131015883,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,37,15,1,0,-9,0,8.769982122035545,8.769982122035545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,12,3,0,262,0,0,0 +13737,16824,30652,-9,-9,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,3,8.425577875090028,8.25381990983708,0,3,0,-9,0,-9,0,-943.870306100898,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,0,15,1,0,-9,0,10.09152060332798,10.09152060332798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,44.4,6,1,0,0,12,4,0,623,0,0,0 +13738,16825,30653,-9,30657,30656,5,1,1,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1173.179046423184,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,1,0,402.4,0,0,0 +13738,16825,30654,-9,30657,30656,3,1,1,5,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.0057488686584,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,1,0,402.4,0,0,0 +13738,16825,30655,-9,30657,30656,6,1,1,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1002.614549419061,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,1,0,402.4,0,0,0 +13738,16825,30656,30657,-9,-9,4,1,1,28,1,2,4,0,2,-9,3,3,0,5,0,0,0,2,0,-9,4,0,-1,0,0,1,0,29,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,1,0,4,1,0,402.4,0,0,0 +13738,16825,30657,30656,-9,-9,1,1,0,29,1,2,4,0,3,-9,6,3,0,2,0,0,0,2,0,-9,4,0,1,0,0,1,1,28,2,5,3,3,-9,2019,4,4,11,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.82,42.64,7,1,0,0,4,1,0,402.4,0,0,0 +13739,16826,30658,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1122.188622629632,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,52,6,3,0,0,9,1,0,441,0,0,0 +13740,16827,30659,-9,-9,-9,2,1,0,23,2,0,1,0,2,-9,2,1,0,4,7.797456002305789,7.674085427987822,0,3,0,0,0,-9,0,-949.158722842438,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,40,40,15,1,2,-9,1,8.033499932462139,8.033499932462139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,3,0,0,8,3,1,459,0,0,0 +13741,16828,30660,-9,-9,-9,1,1,0,42,2,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-957.2245095145821,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,55.07,3,1,0,0,8,1,1,966,0,0,0 +13742,16829,30661,30662,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,8.806854187553542,9.274641175369247,0,1,0,-9,8,0,12,-68.23625138647256,0,0,0,49,2,3,1,2,2,2019,1,1,6,0,32,45,15,1,0,1,0,20.2127669541341,20.2127669541341,0,0,0,0,0,0,0,0,0,0,5.492392522341653,0,0,0,55.79,52.62,6,1,0,0,4,5,1,1122,0,0,0 +13742,16829,30662,30661,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.820984812391147,9.022943740516645,0,1,0,-9,8,0,-12,-79.23629042363015,0,0,0,61,2,4,1,2,2,2019,1,2,6,0,38,40,15,1,0,1,0,24.25206914174857,24.25206914174857,0,0,0,0,0,0,0,0,0,0,5.495294648515101,0,0,0,57.94,27.53,5,1,0,0,4,5,1,1122,0,0,0 +13743,16830,30663,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,2,0,5.959044374535419,6.154552135720037,3,0,0,0,-9,0,-930.6184272930865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,5.477647734157221,0,0,6.123401846932882,0,20.34617008267221,1,1,0,0,5.801405620114285,0,0,44.35,23.51,4,1,0,0,5,2,1,129,0,0,0 +13744,16831,30664,-9,30667,30665,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.9580294924169,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,483.25,0,0,0 +13744,16831,30665,30667,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,4,9.173298039018354,9.248719945313912,0,2,0,-9,11,0,-2,-7.649364868296103,0,0,0,42,1,4,1,2,2,2019,1,1,7,0,50,55,15,1,0,1,0,23.14001812709627,23.14001812709627,0,0,0,0,0,0,0,0,0,0,1.3146757593356,0,0,0,53.07,52.7,6,1,0,0,8,5,1,483.25,0,0,0 +13744,16831,30666,-9,30667,30665,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.0874345306532,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,483.25,0,0,0 +13744,16831,30667,30665,-9,-9,1,1,0,42,1,0,2,0,1,-9,1,1,0,4,7.743664977334054,7.696147947616486,0,2,0,-9,11,0,2,-39.12315061667013,0,0,1,40,1,4,1,3,3,2019,1,2,11,0,20,15,15,1,0,1,0,9.063523829169801,9.063523829169801,0,0,0,0,0,0,0,0,0,0,2.112464517178881,0,0,0,46.16,58.62,6,1,0,0,8,5,1,483.25,0,0,0 +13745,16832,30668,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1098.901812585478,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,9.151970577102066,0,0,0,1,1,0,0,0,17.43385149747125,3,57.04,13.39,5,1,0,0,10,1,0,364,0,0,0 +13745,16833,30669,-9,30668,-9,2,1,0,29,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1067.868272715036,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.43,40.78,4,1,0,1,10,1,0,1798,0,0,0 +13746,16834,30670,-9,30671,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,5,0,0,0,4,0,0,0,-9,0,-979.0608800217293,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.162603452949491,0,0,3,59.43,58.05,6,1,0,0,5,2,1,360.5,0,0,0 +13746,16834,30671,-9,-9,-9,1,1,0,54,3,0,1,0,1,-9,7,2,0,3,5.079054406919521,5.121304522415909,0,4,0,0,0,-9,0,-1029.541161805784,1,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,46,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,4,1,0,0,5,2,1,360.5,0,0,0 +13746,16835,30672,-9,30671,-9,2,1,0,20,2,0,1,0,2,-9,11,3,0,2,8.224892432536242,8.166250769224771,0,3,0,0,0,-9,0,-958.2232810559858,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,15,3,37,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.402428223805582,0,0,0,42.96,48.48,6,1,0,0,5,4,1,1051,0,0,0 +13747,16836,30673,30674,-9,-9,2,1,0,75,1,0,0,0,1,-9,1,1,0,5,8.826091797350298,8.500262809426649,0,1,0,-9,6,0,5,-65.80326711716233,0,0,0,70,1,2,1,-9,-9,2019,1,1,14,1,4,3,15,1,1,1,0,150.9804837926555,150.9804837926555,0,0,0,0,0,0,0,1,1,0,5.418543512928878,0,12.5530594929832,3,48.18,61.8,6,1,0,0,8,5,1,325,0,0,0 +13747,16836,30674,30673,-9,-9,1,1,1,70,1,0,0,0,1,-9,2,1,0,2,8.792015745412773,8.918032473085276,6.930113022799115,1,0,-9,40,0,-5,1.290629722829791,0,0,0,75,1,5,1,-9,-9,2019,1,2,15,4,40,40,15,1,4,1,0,17.15707924845722,17.15707924845722,0,0,0,0,0,0,0,1,1,0,0,7.120224324020533,0,0,56.74,39.03,3,1,0,0,8,5,1,325,0,0,0 +13748,16837,30675,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,2,8.463623290308588,8.610807580907926,0,3,0,0,0,-9,0,-906.8609476280743,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,6,40,55,15,1,6,-9,0,15.20525148331487,15.20525148331487,0,0,0,0,0,0,0,0,0,0,3.438612074184177,0,0,0,37.25,41.19,3,1,0,0,11,5,1,1004,0,0,0 +13748,16838,30676,-9,30675,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.161878313256599,8.312200099130891,0,3,0,0,0,-9,0,-1004.298405886172,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,20,7,41,40,15,1,7,-9,1,10.11200595030275,10.11200595030275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.05,55.69,3,1,0,0,11,4,1,905,0,0,0 +13749,16839,30677,-9,30678,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1072.130918917344,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.7,59.52,4,1,0,0,10,2,0,1242.5,0,0,0 +13749,16839,30678,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,2,6.985372998035754,7.586273672225337,6.383894217041851,4,0,0,0,-9,0,-1049.370993729409,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,11,21,21,15,1,11,-9,0,6.024056324168656,6.024056324168656,0,0,0,0,0,0,0,1,1,0,6.86741215711069,0,0,0,18.8,56.84,4,1,0,0,10,2,0,1242.5,0,0,0 +13750,16840,30679,-9,30681,30682,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.6503332947523,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,5,1,313,0,0,0 +13750,16840,30680,-9,30681,30682,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.7585222424639,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,313,0,0,0 +13750,16840,30681,30682,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,4,8.844817681621608,8.661089933619746,0,2,0,-9,16,0,-4,-125.7984796022122,0,0,1,39,1,2,1,2,2,2019,1,2,8,0,43,38,15,1,0,1,0,16.17690609243524,16.17690609243524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,60.41,6,1,0,0,2,5,1,313,0,0,0 +13750,16840,30682,30681,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,2,8.912558897419686,8.823573886710436,0,2,0,-9,17,0,4,-58.63366849918609,0,0,0,35,2,4,1,2,2,2019,1,1,8,0,43,45,15,1,0,1,0,18.44222900666697,18.44222900666697,0,0,0,0,0,0,0,1,1,0,1.283386733898453,0,0,0,52.77,50.48,6,1,0,0,2,5,1,313,0,0,0 +13751,16841,30683,-9,-9,-9,1,1,0,72,3,2,2,0,3,-9,4,3,0,1,0,0,0,4,0,0,0,-9,0,-933.4106517602631,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,17.41950147196368,5.076608534753541,0,0,1,1,0,0,0,0,0,59.29,12.67,4,3,0,1,6,1,1,613,0,0,0 +13752,16842,30684,30685,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,7.283125037589449,7.289813203171983,1,0,-9,9,0,0,-132.7107153865237,0,0,0,71,1,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.232963199798735,6.964259671412074,0,0,67.69,24.04,6,1,0,0,9,4,1,1129.5,0,0,0 +13752,16842,30685,30684,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,8.43542358008542,8.242070139985573,1,0,-9,9,0,0,27.48694641298228,0,0,0,71,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.334262303549821,8.237111057378648,0,0,48,46.89,6,1,0,0,9,4,1,1129.5,0,0,0 +13753,16843,30686,-9,-9,-9,1,1,0,59,3,0,0,0,3,-9,2,1,0,3,8.239633557665719,7.920859916725306,0,3,0,0,0,-9,0,-884.2699352544197,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,34,34,15,1,0,-9,0,11.42364042917528,11.42364042917528,0,0,0,0,0,0,0,1,0,1,0,0,25.52457569363147,3,47.15,56.66,6,1,0,0,4,4,1,645,0,0,0 +13753,16844,30687,-9,30686,-9,2,1,0,19,2,0,0,0,2,1,5,1,0,5,6.204306146685566,6.357726007845147,0,3,0,0,0,-9,0,-785.3915870208145,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,28,12,8,0,15,1,12,-9,1,5.51052442024177,5.51052442024177,0,0,0,0,0,0,0,1,0,1,0,0,0,0,17.54,62.14,4,1,0,0,4,2,1,1116,0,0,0 +13754,16845,30688,30689,-9,-9,1,1,1,41,1,0,1,0,1,-9,2,1,0,4,8.758764967547602,8.927637492804442,0,2,0,-9,14,0,9,-13.96659721552764,0,0,0,32,2,4,1,2,2,2019,1,2,9,0,40,48,15,1,0,1,0,17.94153606697123,17.94153606697123,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,1055.333333333333,0,0,0 +13754,16845,30689,30688,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,4,8.329116352316749,8.104133981697666,0,2,0,-9,14,0,0,22.69465072717961,0,0,1,41,1,4,1,2,2,2019,1,1,12,2,40,40,15,1,2,1,0,15.4618387605725,15.4618387605725,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,5,1,0,0,2,5,1,1055.333333333333,0,0,0 +13754,16845,30690,-9,30689,30688,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-971.7548751260956,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,5,1,1055.333333333333,0,0,0 +13755,16846,30691,-9,-9,-9,2,1,1,46,2,0,0,0,2,-9,1,1,0,1,6.813034257262043,6.850180595722204,0,3,0,0,0,-9,0,-995.1581425047422,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,45,15,1,0,-9,0,2.640708394764733,2.640708394764733,0,0,0,0,0,0,0,1,1,0,1.869509267395955,0,0,0,52.66,46.79,6,1,0,0,9,2,1,983,0,0,0 +13756,16847,30692,-9,30695,30693,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.3989211858565,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1293.5,0,0,0 +13756,16847,30693,30695,-9,-9,1,1,1,38,1,0,2,0,2,-9,2,1,0,3,8.830000434685097,8.863732917264048,0,2,0,-9,16,0,0,24.4930421598098,0,0,0,38,2,3,1,3,2,2019,1,2,11,0,39,40,15,1,0,1,0,15.14588111140727,15.14588111140727,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,50.19,5,1,0,0,5,4,1,1293.5,0,0,0 +13756,16847,30694,-9,30695,30693,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.757159557235,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1293.5,0,0,0 +13756,16847,30695,30693,-9,-9,2,1,0,38,1,0,2,0,2,-9,1,1,0,3,7.205409909877929,7.243446670154992,0,2,0,-9,14,0,0,154.058662527523,0,0,1,38,2,3,1,3,3,2019,1,1,13,2,22,19,15,1,2,1,0,7.009431383424875,7.009431383424875,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,54.04,3,1,0,0,5,4,1,1293.5,0,0,0 +13757,16848,30696,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,4,0,6.786248698580099,6.703587825686077,3,0,-9,0,-9,0,-966.1910043781406,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.199439180093761,0,1,1,0,0,7.169578602170083,0,0,62.01,36.16,6,1,0,0,9,2,1,670,0,0,0 +13758,16849,30697,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,3,0,5.595970793460107,5.376097693857475,3,0,0,0,-9,0,-1035.233225914985,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.591507538752184,0,0,68.89,35.82,5,1,0,0,9,2,1,182,0,0,0 +13759,16850,30698,30701,-9,-9,1,1,1,38,1,1,3,0,2,-9,1,1,0,3,7.479352526393641,7.43590910807449,0,2,0,-9,6,0,1,-14.74726765778597,0,0,0,37,2,3,3,-9,-9,2019,2,2,10,0,40,40,15,1,0,3,0,4.887304912504606,4.887304912504606,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,4,1,0,0,4,2,1,1364.5,0,0,0 +13759,16850,30699,-9,30701,30698,4,1,1,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.7018906301194,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,1,1364.5,0,0,0 +13759,16850,30700,-9,30701,30698,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.8851554981538,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,1,1364.5,0,0,0 +13759,16850,30701,30698,-9,-9,2,1,0,37,1,1,3,0,2,-9,6,3,0,3,0,7.219197928874707,7.221745800636027,2,0,-9,6,0,-1,-146.7234936258018,0,0,1,38,2,3,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.929855026714554,0,0,0,54.37,54.8,6,1,0,0,4,2,1,1364.5,0,0,0 +13760,16851,30702,30703,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,2,0,6.52017503040227,7.082458960672853,1,0,-9,56,0,-2,13.4677446300577,0,0,0,77,1,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.195477520665997,7.15774196176493,0,0,57.33,42.93,6,1,0,0,9,3,1,673,0,0,0 +13760,16851,30703,30702,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,2,0,7.868432552441937,8.139792062544139,1,0,-9,56,0,2,28.07641907260234,0,0,0,75,2,2,3,3,-9,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.79258636336519,7.879194363783474,5.183515719770508,3,33.65,51.05,6,1,0,0,9,3,1,673,0,0,0 +13761,16852,30704,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,6.509503808505676,6.934221440860481,3,0,0,0,-9,0,-1022.703677444322,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.195872456874199,0,0,64.22,41.99,6,1,0,0,5,2,1,2735,0,0,0 +13762,16853,30705,30706,-9,-9,2,1,1,34,1,0,2,0,2,-9,1,1,0,4,8.54774435118561,8.680751866632139,0,2,0,-9,7,0,4,110.5280542005811,0,0,0,30,1,4,1,2,2,2019,1,1,7,0,35,40,15,1,0,1,0,20.94129847512139,20.94129847512139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,0,735.5,0,0,0 +13762,16853,30706,30705,-9,-9,1,1,0,30,1,0,2,0,1,-9,2,1,0,4,8.715047655777603,8.612553256480298,0,2,0,-9,7,0,-4,-53.09834149624866,0,0,1,34,2,4,1,2,2,2019,1,2,10,0,38,43,15,1,0,1,0,13.7745403578983,13.7745403578983,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,0,735.5,0,0,0 +13762,16853,30707,-9,30706,30705,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-841.4611479297794,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,5,0,735.5,0,0,0 +13762,16853,30708,-9,30706,30705,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.17028231724,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,0,735.5,0,0,0 +13763,16854,30709,30710,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,4,7.528929182739558,7.956323623970705,0,1,0,-9,45,0,-4,-40.85421770901708,0,0,0,68,2,3,3,3,-9,2019,2,1,6,0,29,28,15,1,0,4,0,8.310651101146506,8.310651101146506,0,0,0,0,0,0,0,1,1,0,2.976300314731875,0,13.7152469208503,3,57.16,56.15,6,1,0,0,5,3,1,661,0,0,0 +13763,16854,30710,30709,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.334603095481805,7.440939299747606,1,0,-9,45,0,4,57.68056167443599,0,0,0,64,3,4,1,3,3,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,2.739961933083153,7.867009254180637,0,0,53.93,44.2,6,1,0,0,5,3,1,661,0,0,0 +13763,16855,30711,-9,30709,30710,3,1,1,35,2,0,0,0,2,-9,2,1,0,4,7.148009000079282,7.285985547158494,0,3,0,0,0,-9,0,-1029.356095732176,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,30,25,15,1,0,-9,1,5.465220764306171,5.465220764306171,0,0,0,0,0,0,0,1,1,0,3.052823272890286,0,0,0,57.16,56.15,6,1,0,0,5,3,1,298,0,0,0 +13764,16856,30712,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,2,0,4.454635751729813,4.306783991165926,3,0,0,0,-9,0,-1047.440269075339,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,2.715970429129996,0,0,0,0,30.80911237570464,1,1,0,0,3.985598823205415,0,0,54.56,22.12,2,1,0,0,12,2,1,3487,0,0,0 +13764,16857,30713,-9,30712,-9,2,1,0,59,3,0,0,0,2,-9,2,1,0,3,6.944307631288571,6.700426003072309,0,3,0,0,0,-9,0,-927.0996460817747,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,16,15,1,0,-9,1,10.85133104261279,10.85133104261279,0,0,0,0,0,0,0,1,1,0,0,0,7.603654042819634,3,60.89,42.24,7,1,0,0,12,2,1,568,0,0,0 +13765,16858,30714,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,3,8.195243524548282,8.382107499289834,0,1,0,1,1,-9,3,-25.369895754852,0,1,0,-9,-9,-9,-9,2,2,2019,-9,2,18,6,42,40,15,1,6,-9,0,10.20813414512393,10.20813414512393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.26,60.7,5,1,0,0,2,3,0,887,0,0,0 +13766,16859,30715,-9,-9,-9,1,1,0,51,2,0,0,0,1,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1043.408886177215,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.61,17.2,3,1,0,1,2,1,0,827,0,0,0 +13767,16860,30716,30717,-9,-9,1,1,0,45,1,0,0,0,1,-9,2,1,0,4,8.830840848869908,9.004243579564356,0,1,0,-9,3,0,2,-90.95787152139292,0,0,0,43,2,5,1,3,3,2019,1,2,11,0,45,45,15,1,0,1,0,19.07930044794486,19.07930044794486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.23,56.21,6,1,0,0,7,5,1,1070.5,0,0,0 +13767,16860,30717,30716,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,5,8.93070076018032,8.769741860056772,0,1,0,-9,3,0,-2,-78.21501850120589,0,0,0,45,1,4,1,-9,-9,2019,1,1,6,0,42,42,15,1,0,1,0,21.91701500772936,21.91701500772936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,7,5,1,1070.5,0,0,0 +13768,16861,30718,30720,-9,-9,2,1,1,33,1,0,1,0,2,-9,1,1,0,3,7.733711749815283,7.996565130613897,0,2,0,-9,6,0,1,85.29503865178665,0,0,0,32,2,3,1,-9,-9,2019,1,1,15,5,40,40,15,1,5,1,0,9.218694448875748,9.218694448875748,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,50.6,3,1,0,0,4,3,0,833.6666666666666,0,0,0 +13768,16861,30719,-9,30720,30718,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1163.090837554533,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,0,833.6666666666666,0,0,0 +13768,16861,30720,30718,-9,-9,1,1,0,32,1,0,1,0,2,-9,2,1,0,3,7.178458807163582,7.089459443363787,0,2,0,-9,6,0,-1,-5.052580369277407,0,0,1,33,2,3,1,-9,-9,2019,1,2,13,2,23,22,15,1,2,1,0,5.258229536514775,5.258229536514775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.51,43.94,4,1,0,0,4,3,0,833.6666666666666,0,0,0 +13769,16862,30721,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,2,7.644262028364379,7.37489234593314,0,3,0,0,0,-9,0,-948.1056364337016,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,38,15,1,0,-9,0,6.668607852252764,6.668607852252764,0,0,0,0,0,0,0,0,0,0,3.474393509188744,0,0,0,57.57,49.69,4,1,0,0,11,3,1,92,0,0,0 +13770,16863,30722,30723,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,6.864174529088364,6.893113204686815,1,0,-9,46,0,-2,-30.54472479441973,0,0,0,69,1,4,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.068147425226741,6.673042783566379,5.814456653007923,3,54.2,57.49,6,1,0,0,4,4,1,465,0,0,0 +13770,16863,30723,30722,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.357567602798044,8.242519760674343,1,0,-9,46,0,2,-59.84292442820747,0,0,0,67,1,4,3,-9,-9,2019,4,1,9,0,0,38,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.100816882625239,8.699152511970226,0,0,57.73,54.53,6,1,0,0,4,4,1,465,0,0,0 +13771,16864,30724,-9,30725,30726,4,1,0,16,2,0,0,0,2,-9,2,2,0,3,7.451393042482951,7.636944157221599,0,1,0,0,0,-9,0,-972.8807430976887,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,7,1,0,0,12,5,1,821.6666666666666,0,0,0 +13771,16864,30725,30726,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,3,8.171958658260518,7.939752267601429,0,1,0,-9,7,0,1,91.59132608752573,0,0,1,43,2,3,1,-9,-9,2019,1,1,10,0,35,35,15,1,0,1,0,9.678080651271907,9.678080651271907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,6,1,0,0,12,5,1,821.6666666666666,0,0,0 +13771,16864,30726,30725,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,3,8.812688757677574,8.708506483464907,0,1,0,-9,26,0,-1,-61.27106779853987,0,0,0,44,2,3,1,2,2,2019,1,2,6,0,48,40,15,1,0,1,0,17.17372082730057,17.17372082730057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,6,1,0,0,12,5,1,821.6666666666666,0,0,0 +13772,16865,30727,30728,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,4,8.193036925675965,8.169054673369866,0,2,0,-9,20,0,0,-132.0433685893934,0,0,0,45,2,4,1,3,3,2019,1,3,8,0,35,30,15,1,0,1,0,12.76890276876275,12.76890276876275,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,6,3,0,0,8,4,0,459,0,0,0 +13772,16865,30728,30727,30731,-9,3,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.381657311668812,7.982352101119948,0,2,0,-9,9,0,0,26.54749640088415,0,0,0,45,2,4,1,3,3,2019,1,1,7,0,40,30,15,1,0,1,0,12.50167462631879,12.50167462631879,0,0,0,0,0,0,0,1,1,0,7.572214229115716,0,7.09239856076716,3,50.55,53.71,3,3,0,0,8,4,0,459,0,0,0 +13772,16865,30729,-9,30727,30728,5,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1128.630723209578,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,8,4,0,459,0,0,0 +13772,16865,30730,-9,30727,30728,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-948.6182645648706,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,8,4,0,459,0,0,0 +13772,16866,30731,-9,-9,-9,2,1,0,76,3,0,2,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1052.479714221928,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,11.82303105711349,0,0,21.08737155934588,0,135.6055861585009,1,1,0,0,0,0,0,51,46,5,3,0,0,8,1,0,938,0,0,0 +13773,16867,30732,30733,-9,-9,2,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,7.590455844501038,7.737881959942742,1,0,-9,49,0,2,70.36258242229538,0,0,0,71,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.623160440531719,7.572680150854516,0,0,59.06,48.59,6,1,0,0,6,4,1,523,0,0,0 +13773,16867,30733,30732,-9,-9,1,1,0,71,1,0,0,0,1,-9,4,3,0,3,0,7.64398707797554,7.337693898113759,1,0,-9,49,0,-2,-168.1695030193571,0,0,0,73,1,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.42901683969391,7.675411252039849,0,0,42.33,57.46,6,1,0,0,6,4,1,523,0,0,0 +13774,16868,30734,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,3.874558770413838,4.050494414149641,3,0,0,0,-9,0,-1024.623287145663,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.058253725285754,4.023060980531419,82.01100311059226,3,50.37,17.76,6,1,0,0,12,1,1,203,0,0,0 +13774,16869,30735,-9,30734,-9,2,1,0,57,2,0,0,0,2,-9,2,1,0,3,6.828537502029,7.013463450415995,0,3,0,0,0,-9,0,-1007.490553348478,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,16,15,1,0,-9,1,8.092894952257042,8.092894952257042,0,0,0,0,0,0,0,1,1,0,1.69705712469908,0,77.79442757992098,3,58.71,34.82,7,1,0,0,12,2,1,457,0,0,0 +13775,16870,30736,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-894.7278896264291,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.71,39.08,2,1,1,1,9,1,1,567,0,0,0 +13775,16871,30737,-9,-9,-9,2,1,0,81,3,0,0,0,2,-9,4,3,0,1,0,5.056302558234772,4.52715863951608,3,0,0,0,-9,0,-1059.674144637364,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,1.2362058997028,3.847967070604981,0,1,1,0,3.048107396807644,4.884826549081129,28.11070491494257,3,24.41,32.44,2,1,0,1,9,2,1,382,0,0,0 +13776,16872,30738,30740,-9,-9,2,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.201822204179569,9.331386610236876,0,2,0,-9,16,0,-2,19.22502630578767,0,0,0,50,1,3,1,-9,-9,2019,1,1,7,0,43,0,15,1,0,1,0,36.8036724839392,36.8036724839392,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,52.06,4,1,0,0,7,5,1,609.6666666666666,0,0,0 +13776,16872,30739,-9,30740,30738,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.7356007581077,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,609.6666666666666,0,0,0 +13776,16872,30740,30738,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,3,8.704340231853855,8.471066976463625,0,2,0,-9,16,0,2,-49.0703220105617,0,0,0,48,1,4,1,2,1,2019,1,2,15,3,43,44,15,1,3,1,0,14.23054819819151,14.23054819819151,0,0,0,0,0,0,0,1,1,0,4.307761838808364,0,0,0,36.49,50.87,4,1,0,0,7,5,1,609.6666666666666,0,0,0 +13777,16873,30741,-9,-9,-9,1,1,1,64,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-940.5509193205247,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.944635440297002,0,0,0,25.5,36.14,3,1,0,0,2,1,1,251,0,0,0 +13778,16874,30742,-9,30745,30744,4,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-875.6977734446842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,11,4,1,883,0,0,0 +13778,16874,30743,-9,30745,30744,3,1,0,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1029.774301731332,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,1,0,0,11,4,1,883,0,0,0 +13778,16874,30744,30745,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.863997431686304,8.570272929108096,0,2,0,-9,8,0,-2,-102.2271933824433,0,0,0,49,2,4,1,2,3,2019,1,2,7,0,49,40,15,1,0,1,0,15.27602354753054,15.27602354753054,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,883,0,0,0 +13778,16874,30745,30744,-9,-9,2,1,0,49,1,0,2,0,2,-9,1,1,0,4,7.750392230002785,8.001104764904616,0,2,0,-9,8,0,2,79.73412281182694,0,0,0,47,2,4,1,2,2,2019,1,1,11,0,9,9,15,1,0,1,0,40.9421956671285,40.9421956671285,0,0,0,0,0,0,0,1,1,0,1.735469248336452,0,0,0,55.78,49.92,6,1,0,0,11,4,1,883,0,0,0 +13779,16875,30746,30748,-9,-9,1,1,1,67,1,0,1,0,3,-9,4,3,0,3,0,0,0,2,0,-9,28,0,15,0,0,0,0,52,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,3,0,0,8,1,0,526.6666666666666,0,0,0 +13779,16875,30747,-9,30748,30746,4,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.972997373241,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,1,0,526.6666666666666,0,0,0 +13779,16875,30748,30746,-9,-9,2,1,0,52,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,37,0,-15,0,0,0,0,67,3,3,3,-9,-9,2019,4,1,12,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,8,1,0,526.6666666666666,0,0,0 +13779,16876,30749,-9,30748,30746,3,1,1,24,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-934.9297553239174,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,1,0,8,1,0,389,0,0,0 +13780,16877,30750,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,3,3,0,3,0,6.861633274898724,6.604946785055997,3,0,0,0,-9,0,-947.8897897742489,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,0,35,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.494861594251441,6.744347410399745,0,0,44.45,50.99,2,1,1,0,9,2,1,212,0,0,0 +13781,16878,30751,30752,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,6.081291303706712,5.841777336301113,1,0,-9,53,0,-2,158.0006745666247,0,0,0,73,2,3,3,-9,-9,2019,4,2,8,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.385677048350674,5.417454736157703,3,52.18,52.11,7,1,0,0,10,2,1,445,0,0,0 +13781,16878,30752,30751,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,7.267664696564223,7.226086961742045,1,0,-9,53,0,2,70.44722560518311,0,0,0,71,3,2,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.951170624760268,6.626781323347631,3,56.74,34.43,6,1,0,0,10,2,1,445,0,0,0 +13782,16879,30753,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,4,8.948507623762284,8.697934097630503,0,3,0,0,0,-9,0,-1032.202910129816,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,38,38,15,1,2,-9,0,27.25790374783068,27.25790374783068,0,0,0,0,0,0,0,0,0,0,3.535188979700794,0,0,0,28.41,64.05,4,1,0,0,8,5,0,186,0,0,0 +13783,16880,30754,30755,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,5.673495939382539,5.88284261196436,3.944867509056898,1,0,-9,8,0,13,90.8342913993705,0,0,0,53,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.049826864779009,4.264374740282924,0,0,43.59,31.81,5,3,0,0,6,2,1,1863,0,0,0 +13783,16880,30755,30754,-9,-9,2,1,0,53,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,8,0,-13,40.67303129399892,0,0,0,66,2,2,3,3,3,2019,4,1,11,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,53.35,4,3,0,0,6,2,1,1863,0,0,0 +13783,16881,30756,-9,30755,30754,3,1,1,20,2,0,0,0,2,1,3,3,0,5,4.933812525069533,4.987125908190483,0,3,0,0,0,-9,0,-1037.158856058738,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,58.07,6,3,1,0,6,2,1,274,0,0,0 +13783,16882,30757,-9,30755,30754,4,1,1,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-952.4295566798145,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,7,3,0,0,6,1,1,425,0,0,0 +13784,16883,30758,-9,30761,30759,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.326093119238,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,604.4,0,0,0 +13784,16883,30759,30761,-9,-9,2,1,1,47,1,0,3,0,1,-9,1,1,0,4,8.177114701076231,8.07728384988471,0,2,0,-9,18,0,0,60.52039839663522,0,0,0,47,1,5,1,2,1,2019,1,1,10,3,30,28,15,1,3,1,0,12.70953449304983,12.70953449304983,0,0,0,0,0,0,0,1,1,0,5.317371530060746,0,22.96897420263123,3,54.2,57.49,6,1,0,0,10,4,1,604.4,0,0,0 +13784,16883,30760,-9,30761,30759,4,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1015.083032025076,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,10,4,1,604.4,0,0,0 +13784,16883,30761,30759,-9,-9,1,1,0,47,1,0,3,0,1,-9,2,1,0,5,8.4800452272955,8.643175822541801,0,2,0,-9,18,0,0,34.59276956532152,0,0,0,47,1,4,1,1,1,2019,1,2,19,8,48,32,15,1,8,1,0,12.1802717008248,12.1802717008248,0,0,0,0,0,0,0,1,1,0,5.689022389894459,0,0,3,41.01,62.29,5,1,0,0,10,4,1,604.4,0,0,0 +13784,16883,30762,-9,30761,30759,3,1,1,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1032.758360626664,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,10,4,1,604.4,0,0,0 +13785,16884,30763,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,5,0,7.304137143843861,7.129341271445927,3,0,0,0,-9,0,-1098.54763981143,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.37673323481806,7.488077255044032,0,0,49.17,56.72,6,1,0,0,6,3,1,1233,0,0,0 +13786,16885,30764,30765,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,4,8.707603517068675,8.501959328429972,0,1,0,-9,10,0,-1,-32.40383395505744,0,0,0,50,1,4,1,-9,-9,2019,1,1,8,0,37,37,15,1,0,1,0,19.28662275959942,19.28662275959942,0,0,0,0,0,0,0,0,0,0,.6693395534113337,0,0,0,49.46,56.91,6,1,0,0,11,5,1,833,0,0,0 +13786,16885,30765,30764,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.852624164029395,9.146421119392874,0,1,0,-9,10,0,1,-51.77618706325921,0,0,0,49,2,4,1,2,2,2019,1,2,9,0,37,37,15,1,0,1,0,23.98288736696179,23.98288736696179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,11,5,1,833,0,0,0 +13787,16886,30766,30767,-9,-9,2,1,0,50,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,5,0,7,0,0,0,0,43,3,5,3,-9,-9,2019,4,1,24,11,0,0,15,3,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5206271553292124,0,35.98531518393229,2,25.17,29.39,4,1,0,0,6,1,0,415.5,0,0,0 +13787,16886,30767,30766,-9,-9,1,1,1,43,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,5,0,-7,0,0,0,0,50,2,2,3,2,3,2019,4,2,19,5,0,0,15,4,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.27,28.34,5,1,0,0,6,1,0,415.5,0,0,0 +13788,16887,30768,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,3,8.92910332902272,8.78583791360734,0,3,0,0,0,-9,0,-877.0564646104401,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,40,15,1,0,-9,0,18.13465713315305,18.13465713315305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.81,43.21,7,1,0,0,13,5,1,931,0,0,0 +13789,16888,30769,30770,-9,-9,1,1,1,46,1,0,1,0,2,-9,3,3,0,3,0,0,0,2,0,-9,6,0,-6,127.2508433180118,0,0,0,52,1,4,1,2,2,2019,3,2,21,8,0,25,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.648379100359158,3,39.03,45.61,3,1,1,0,10,4,1,640,0,0,0 +13789,16888,30770,30769,30771,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,4,8.408952753751896,8.660916268144906,0,2,0,-9,6,0,6,96.57540454412572,0,0,0,46,2,3,3,2,2,2019,2,1,9,0,50,42,15,1,0,3,0,11.92517812480624,11.92517812480624,0,0,0,0,0,0,0,1,1,0,0,0,32.90584483820491,3,53.07,52.7,6,1,0,0,10,4,1,640,0,0,0 +13789,16889,30771,-9,-9,-9,3,1,0,87,3,0,1,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-1021.430406285878,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,74.7442684956514,0,79.03686250284557,0,1,1,0,5.315323858804487,0,0,0,46.23,23.96,6,1,0,0,10,1,1,428,0,0,0 +13790,16890,30772,-9,-9,-9,1,1,0,75,2,0,0,0,2,-9,4,3,0,3,0,6.926041106394825,7.083768005711397,3,0,0,0,-9,0,-1108.970379751222,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.42725696255735,7.37741806814306,0,0,58.47,44.69,6,1,0,0,7,2,1,273,0,0,0 +13791,16891,30773,30774,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,3,7.789337933294552,7.846801073026968,0,1,0,-9,1,-9,-2,193.5788515311162,-9,1,0,29,1,4,1,2,2,2019,1,2,9,2,38,0,15,1,2,1,0,8.551422624118661,8.551422624118661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,2,4,1,429,0,0,0 +13791,16891,30774,30773,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.163748073859466,8.367179439263889,0,1,0,-9,1,-9,2,-72.8114091163323,-9,1,1,27,2,3,1,-9,-9,2019,1,1,8,0,38,0,15,1,0,1,0,13.9184317813061,13.9184317813061,0,0,0,0,0,0,0,0,0,0,3.075067238470089,0,0,0,54.79,55.86,7,1,0,0,2,4,1,429,0,0,0 +13792,16892,30775,-9,-9,-9,1,1,1,59,2,0,0,0,1,-9,1,1,0,3,5.914464627504271,6.223997835340859,0,3,0,0,0,-9,0,-992.3432670709132,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,40,35,15,1,0,-9,0,.976007340272143,.976007340272143,0,0,0,0,0,0,0,0,0,0,4.120459786375585,0,0,0,48.98,57.22,5,1,0,0,8,2,0,995,0,0,0 +13793,16893,30776,-9,-9,-9,1,1,1,38,2,0,0,0,1,-9,2,1,0,3,8.922771926406615,8.570013581104305,0,1,0,-9,3,0,1,235.7754079034878,0,0,0,-9,-9,-9,-9,1,1,2019,2,2,13,3,37,35,15,1,3,-9,0,22.31032931407101,22.31032931407101,0,0,0,0,0,0,0,1,1,0,0,0,9.680719122416578,1,35.78,55.1,6,1,0,0,1,4,1,855,0,0,0 +13793,16894,30777,-9,-9,-9,2,1,1,37,2,0,0,0,2,-9,8,3,1,1,0,5.606520354632949,5.636826013726361,1,0,-9,3,0,-1,46.36004638877529,0,0,0,-9,-9,-9,-9,2,2,2019,3,1,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.349403894546633,0,0,0,34.64,24.8,3,1,0,0,1,4,1,277,0,0,0 +13794,16895,30778,30779,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,5.998250626941855,5.999194706387966,1,0,-9,26,0,0,63.56753752988127,0,0,0,78,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.772643298543764,5.585481299981493,0,0,48.88,43.53,6,1,0,0,7,2,0,1201.5,0,0,0 +13794,16895,30779,30778,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,6.172834961011816,6.236772644799657,1,0,-9,29,0,0,-12.34892828644087,0,0,0,78,3,4,3,2,2,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.487782193022028,0,0,61.4,38.37,1,1,0,0,7,2,0,1201.5,0,0,0 +13795,16896,30780,30781,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.041698695003205,5.384082465773827,1,0,-9,47,0,-2,61.1790765723302,0,0,0,72,2,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.946221316240534,0,0,54.96,53.17,7,1,0,0,2,2,1,958,0,0,0 +13795,16896,30781,30780,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,7.26332459122215,6.82962716777843,1,0,-9,47,0,2,-35.74147234088063,0,0,0,70,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.713025981834511,0,0,57.16,56.15,7,1,0,0,2,2,1,958,0,0,0 +13796,16897,30782,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,6.456725320804087,6.551406388498767,3,0,-9,0,1,0,-1086.61716778242,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5246504858368842,6.505726414475743,5.130078732063518,3,15.1,47.3,2,1,0,0,5,2,1,317,0,0,0 +13797,16898,30783,-9,30785,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1018.742155650515,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,2,0,1156.333333333333,0,0,0 +13797,16898,30784,-9,30785,-9,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-992.5125781588924,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,2,0,1156.333333333333,0,0,0 +13797,16898,30785,-9,-9,-9,2,1,0,30,2,0,2,0,2,-9,2,1,0,3,6.904706267258555,6.998109890168443,6.0420667142932,3,0,0,0,-9,0,-1042.919848573841,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,12,0,17,17,15,1,0,-9,1,6.854278824225691,6.854278824225691,0,0,0,0,0,0,0,1,1,0,6.366074555178364,0,0,0,30.45,64.19,5,1,0,0,6,2,0,1156.333333333333,0,0,0 +13798,16899,30786,30787,-9,-9,2,1,0,48,1,0,0,0,2,-9,1,1,0,4,0,.1848250794388394,0,1,0,-9,10,0,6,-98.74687510552988,0,0,0,42,2,5,1,3,3,2019,1,1,13,1,35,30,15,1,1,1,0,.0005195115089112,.0005195115089112,0,0,0,0,0,0,0,0,0,0,0,0,6.666707599806129,3,51.83,57.2,6,1,0,0,11,5,1,522.5,0,0,0 +13798,16899,30787,30786,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,5,8.858035644199925,9.179595912545567,0,1,0,-9,10,0,-6,-1.003820254400212,0,0,0,48,2,4,1,1,1,2019,1,2,7,0,90,0,15,1,0,1,0,11.9370586840406,11.9370586840406,0,0,0,0,0,0,0,0,0,0,0,0,0,3,55.66,54.25,5,1,0,0,11,5,1,522.5,0,0,0 +13799,16900,30788,-9,-9,-9,1,1,0,39,3,0,2,0,2,-9,2,1,0,2,7.822952842375834,7.903463929556136,6.142985602796649,4,0,0,0,-9,0,-1026.341783025244,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,13,3,17,16,15,1,3,-9,0,13.37255329336753,13.37255329336753,0,0,0,0,0,0,0,1,1,0,6.266767481803465,0,0,0,46.39,27.56,6,1,0,0,13,3,0,477,0,0,0 +13800,16901,30789,-9,30793,30790,7,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.965742967726,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,3,1,1359.4,0,0,0 +13800,16901,30790,30793,-9,-9,2,1,1,43,1,0,4,0,1,-9,2,1,0,4,8.36554875324755,8.69786357812349,0,2,0,-9,7,0,-5,66.64050287785136,0,0,0,48,2,3,3,-9,-9,2019,2,1,9,0,45,40,15,1,1,3,0,12.76606149544819,12.76606149544819,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,4,0,0,8,3,1,1359.4,0,0,0 +13800,16901,30791,-9,30793,30790,6,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.3994618947879,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,3,1,1359.4,0,0,0 +13800,16901,30792,-9,30793,30790,8,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.5127006694073,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,3,1,1359.4,0,0,0 +13800,16901,30793,30790,-9,-9,1,1,0,48,1,0,4,0,2,-9,6,3,0,3,0,5.863159712413971,5.729066245267353,2,0,-9,8,0,5,30.42655458350517,0,0,0,43,1,4,1,-9,-9,2019,3,2,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.942373304023732,0,0,43.12,58.55,3,4,0,0,8,3,1,1359.4,0,0,0 +13800,16902,30794,-9,30793,30790,3,1,1,23,2,0,4,0,2,-9,2,1,0,4,7.716929515020981,7.689632623577972,0,3,0,0,0,-9,0,-881.2088788348112,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,0,15,1,1,-9,1,8.502520294722137,8.502520294722137,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,4,0,0,8,3,1,397,0,0,0 +13800,16903,30795,-9,30793,30790,4,1,0,19,2,0,4,0,2,-9,7,2,0,4,8.021337891466356,7.642490438874181,0,3,0,0,0,-9,0,-939.1175327444957,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,20,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,4,0,0,8,3,1,627,0,0,0 +13801,16904,30796,30797,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,3,7.678946674738601,8.01515694457853,0,1,0,-9,9,0,-21,-71.37850815233122,0,0,1,64,3,2,3,-9,-9,2019,2,1,17,4,39,39,15,1,4,4,0,7.017355053420459,7.017355053420459,0,0,0,0,0,0,0,0,0,0,0,0,0,2,30.96,53.29,3,1,0,1,4,3,0,446,0,0,0 +13801,16904,30797,30796,-9,-9,1,1,1,64,1,0,0,0,3,-9,4,3,0,2,0,5.838934277021767,5.756792913656781,1,0,-9,23,0,21,-21.07084131560332,0,0,0,43,2,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.674692711712695,6.853318849747621,3,46.41,42.57,2,1,0,0,4,3,0,446,0,0,0 +13802,16905,30798,30799,-9,-9,2,1,0,84,1,0,0,0,2,-9,4,3,0,3,0,7.701307720172825,7.277664625984937,1,0,-9,9,0,-1,41.45897488526944,0,0,0,85,1,5,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,12.16407721893546,0,0,0,0,1,1,0,5.169218658285079,7.638526523777102,0,0,59.82,30.35,6,1,0,0,12,3,1,1034,0,0,0 +13802,16905,30799,30798,-9,-9,1,1,1,85,1,0,0,0,1,-9,4,3,0,5,4.526763491532175,6.894290991387387,6.679212952772533,1,0,-9,9,0,1,126.8199814145663,0,0,0,84,2,3,3,3,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.852354890081492,6.764686374396658,0,0,62.39,56.71,7,1,0,0,12,3,1,1034,0,0,0 +13803,16906,30800,-9,30802,30801,5,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1017.322281019759,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,2,3,1,336.6666666666667,0,0,0 +13803,16906,30801,30802,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.025954959607725,8.095792636057162,0,2,0,-9,17,0,-3,14.51495790497697,0,0,0,47,2,3,1,-9,-9,2019,1,1,6,0,45,45,15,1,0,1,0,6.996714903332363,6.996714903332363,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,336.6666666666667,0,0,0 +13803,16906,30802,30801,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.283537503723808,7.125753970120963,0,2,0,-9,17,0,3,87.2251274130128,0,0,0,44,2,4,1,2,2,2019,1,2,9,0,15,15,15,1,0,1,0,9.932487101923224,9.932487101923224,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.21,55.3,6,1,0,0,2,3,1,336.6666666666667,0,0,0 +13803,16907,30803,-9,30802,30801,3,1,0,18,2,0,1,0,2,1,2,1,0,3,7.347432328548874,7.52142803489664,0,3,0,0,0,-9,0,-1041.71815702199,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,0,15,1,0,-9,1,5.21705529070395,5.21705529070395,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,7,1,0,0,2,3,1,679,0,0,0 +13803,16908,30804,-9,30802,30801,4,1,1,21,2,0,1,0,2,-9,2,1,0,2,7.293684307800925,7.508480097202411,0,3,0,0,0,-9,0,-911.2892006077338,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,39,44,15,1,0,-9,1,4.943652393909843,4.943652393909843,0,0,0,0,0,0,0,1,1,0,3.510980692511769,0,0,0,57.57,49.69,4,1,0,0,2,3,1,561,0,0,0 +13804,16909,30805,-9,30808,30807,3,1,1,17,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-834.7467000603119,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.370315131165845,0,0,0,45.82,53.48,5,1,0,0,13,4,1,599,0,0,0 +13804,16909,30806,-9,30808,30807,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-852.843022954143,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,13,4,1,599,0,0,0 +13804,16909,30807,30808,-9,-9,1,1,1,50,1,0,2,0,2,-9,4,3,0,3,5.439477094012063,5.037240084544551,0,2,0,-9,5,0,0,50.48123741987951,0,0,0,50,1,3,1,2,2,2019,3,2,11,0,12,42,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.57285467948368,3,58.73,37.89,6,1,0,0,13,4,1,599,0,0,0 +13804,16909,30808,30807,-9,-9,2,1,0,50,1,0,2,0,1,-9,2,1,0,3,8.926452496162165,8.973662514650702,0,2,0,-9,5,0,0,115.6053928077075,0,0,0,50,2,3,3,3,1,2019,2,1,11,0,33,33,15,1,0,4,0,22.4131520686966,22.4131520686966,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,13,4,1,599,0,0,0 +13805,16910,30809,30810,-9,-9,3,1,0,49,1,0,0,0,2,-9,2,1,0,5,8.057077411065878,7.929974433717601,0,1,0,-9,9,0,3,-70.46303294529604,0,0,0,46,2,4,1,2,2,2019,1,2,11,0,30,30,15,1,0,1,0,11.52628832736517,11.52628832736517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,5,3,0,0,12,5,1,285,0,0,0 +13805,16910,30810,30809,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.442694124631243,8.426662808718218,0,1,0,-9,9,0,-3,-75.33037921955329,0,0,0,49,2,5,1,3,-9,2019,1,3,9,0,37,37,15,1,1,1,0,10.87124463692435,10.87124463692435,0,0,0,0,0,0,0,1,1,0,0,0,9.121355197604743,3,33.05,57.87,3,3,0,0,12,5,1,285,0,0,0 +13805,16911,30811,-9,30809,30810,4,1,0,21,2,0,0,1,2,-9,7,2,0,4,6.847547284153672,7.065993314874214,0,3,0,0,0,-9,0,-944.6272457044116,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,58,5,3,0,0,12,2,1,239,0,0,0 +13805,16912,30812,-9,30809,30810,5,1,0,20,2,0,0,1,2,0,7,2,0,2,5.95041256130369,6.039458392592141,0,3,0,0,0,-9,0,-1196.807759223947,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.7,47.77,5,3,0,0,12,2,1,619,0,0,0 +13806,16913,30813,30814,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,3,8.667365558021142,8.369615279737618,0,1,0,-9,2,0,-7,-23.65246381904873,-9,0,0,39,1,3,1,-9,-9,2019,1,1,19,7,45,0,15,1,7,1,0,12.6170770753936,12.6170770753936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,5,1,0,0,1,5,0,462.5,0,0,0 +13806,16913,30814,30813,-9,-9,1,1,0,39,1,0,0,0,1,-9,2,1,0,3,7.941867003438456,7.906995883088763,0,1,0,-9,2,0,7,70.80573658142866,0,0,1,32,1,3,1,-9,-9,2019,1,2,13,1,42,38,15,1,1,1,0,6.42228430641838,6.42228430641838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,51,5,1,0,0,1,5,0,462.5,0,0,0 +13807,16914,30815,30816,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,7.584888056462669,7.72476831437313,1,0,-9,54,0,0,8.369720480779524,0,0,0,76,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.664889878170648,0,0,48.24,45.43,6,1,0,0,13,3,1,780,0,0,0 +13807,16914,30816,30815,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.324975918504464,6.205238005146979,1,0,-9,11,0,0,-41.55231479427873,0,0,0,76,3,3,3,-9,-9,2019,4,1,8,0,0,15,15,4,0,4,0,0,0,1,0,3.112777074156231,2.055150563984612,.8095430263101471,0,0,1,1,0,4.677180138751401,6.534964279740085,0,0,57.49,34.36,6,1,0,0,13,3,1,780,0,0,0 +13808,16915,30817,-9,30818,30819,4,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-975.1877145275737,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,4,4,0,1124.666666666667,0,0,0 +13808,16915,30818,30819,-9,-9,1,1,0,54,1,0,1,0,2,-9,2,1,0,2,7.990479081390799,8.151918852785487,0,2,0,-9,11,0,-1,44.08187527015777,0,0,0,55,2,3,1,-9,-9,2019,1,2,12,2,45,40,15,1,2,1,0,9.470950492613074,9.470950492613074,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,6,4,0,0,4,4,0,1124.666666666667,0,0,0 +13808,16915,30819,30818,-9,-9,2,1,1,55,1,0,1,0,2,-9,2,1,0,3,8.291051886855067,8.101429968141092,0,2,0,-9,11,0,1,42.20786613220157,0,0,0,54,2,2,1,2,2,2019,1,1,6,0,49,49,15,1,0,1,0,10.30955454748533,10.30955454748533,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.46,49.68,6,4,0,0,4,4,0,1124.666666666667,0,0,0 +13808,16916,30820,-9,30818,30819,3,1,1,19,2,0,1,0,2,1,2,1,0,3,6.680345606506751,6.723327950101337,0,3,0,0,0,-9,0,-1068.528561466439,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,0,15,1,0,-9,1,8.44174214312025,8.44174214312025,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,7,4,0,0,4,2,0,1571,0,0,0 +13809,16917,30821,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,8,0,-8,0,0,0,1,-9,-9,-9,-9,2,3,2019,4,2,13,1,0,40,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.09720933007043,1,44.16,58.02,7,1,0,0,13,1,0,268,0,0,0 +13809,16918,30822,-9,-9,-9,2,1,0,47,2,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,8,0,8,0,0,0,0,-9,-9,-9,-9,-9,-9,2019,4,1,25,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.33,21.59,1,1,1,0,13,1,0,295,0,0,0 +13809,16919,30823,-9,30822,-9,3,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.818037708071525,7.696923422927744,0,3,0,0,0,-9,0,-1039.644740675249,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,45,42,15,1,0,-9,1,5.895902059284209,5.895902059284209,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.45,57.49,6,1,0,0,13,3,0,1035,0,0,0 +13810,16920,30824,30825,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,51,0,-2,0,0,0,0,70,2,3,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8312523348967729,0,0,0,56.52,48.31,6,1,0,0,4,1,1,402,0,0,0 +13810,16920,30825,30824,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,2,0,0,0,0,68,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.791333869945629,0,0,0,53,47,5,1,0,0,4,1,1,402,0,0,0 +13811,16921,30826,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-994.1279903599809,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.81,58.99,3,1,1,1,1,1,0,1925,0,0,0 +13812,16922,30827,30828,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,5,0,7.976008736504895,7.905537240718727,1,0,-9,40,0,-21,-77.3409432305973,0,0,0,93,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.976309701015704,7.629467043178905,0,0,62.39,56.71,6,1,0,0,7,4,1,437,0,0,0 +13812,16922,30828,30827,-9,-9,2,1,1,93,1,0,0,0,1,-9,4,3,0,3,0,8.22941400112729,8.349396528456426,1,0,-9,40,0,21,-44.57960593807057,0,0,0,72,1,5,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.950737926445168,8.254556753580454,0,0,56,44,6,1,0,0,7,4,1,437,0,0,0 +13813,16923,30829,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,4,7.563905961643147,7.68836571667736,0,3,0,0,0,-9,0,-989.7077860581105,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,1,0,40,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,7,1,0,1,5,3,0,571,0,0,0 +13813,16924,30830,-9,-9,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,3,8.195613012183706,8.22952249363389,0,3,0,-9,0,-9,0,-921.9331681130766,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,42,0,15,1,0,-9,0,8.588302437914285,8.588302437914285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.62,60.23,6,1,0,0,5,4,0,861,0,0,0 +13814,16925,30831,30832,-9,-9,2,1,0,27,1,1,2,0,2,-9,2,1,0,4,8.288227215844133,8.138794241466474,0,2,0,-9,1,-9,-3,-37.82087303560308,-9,1,1,30,2,5,3,-9,-9,2019,2,1,6,0,34,0,15,1,0,3,0,12.70599318334125,12.70599318334125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,6,1,0,0,10,4,0,1509,0,0,0 +13814,16925,30832,30831,-9,-9,1,1,1,30,1,1,2,0,2,-9,6,3,0,5,8.453346016204831,8.794460707982637,0,2,0,-9,1,-9,3,-1.055852858210659,-9,0,0,27,2,4,1,3,2,2019,3,2,10,0,40,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,10,4,0,1509,0,0,0 +13814,16925,30833,-9,30831,30832,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1050.593930427103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,4,0,1509,0,0,0 +13814,16925,30834,-9,30831,30832,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1012.024759092103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,0,1509,0,0,0 +13815,16926,30835,30836,-9,-9,2,1,0,25,1,0,0,0,2,-9,2,1,0,4,6.051200035109342,5.664975931162379,0,1,0,-9,1,-9,-6,-82.04418633509249,-9,1,1,31,2,4,1,-9,-9,2019,1,1,11,1,40,0,15,1,1,1,0,.9467042302473782,.9467042302473782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,6,1,0,0,2,4,1,232,0,0,0 +13815,16926,30836,30835,-9,-9,1,1,1,31,1,0,0,0,2,-9,1,1,0,4,8.300739661084148,8.089016455529844,0,1,0,1,1,-9,6,-41.16185820564705,0,0,0,25,2,4,1,2,2,2019,1,2,13,3,40,50,15,1,3,1,0,12.15870559748085,12.15870559748085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,4,1,0,0,2,4,1,232,0,0,0 +13816,16927,30837,30838,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,6.362848856423143,6.104849871019351,1,0,-9,9,0,1,102.1922431781128,0,0,0,77,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.535792179638035,6.413084816991518,0,0,55.43,45.88,6,1,0,0,8,2,1,295.5,0,0,0 +13816,16927,30838,30837,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,4,0,4.949563303409281,4.880814625469412,1,0,-9,9,0,-1,-59.50861037990544,0,0,0,78,3,4,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.819282710585061,0,0,63.09,47.92,6,1,0,0,8,2,1,295.5,0,0,0 +13817,16928,30839,30840,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,4,7.579666529421769,7.910394432935782,0,1,0,-9,2,0,1,-53.87045069450773,0,0,0,46,2,4,1,2,2,2019,1,2,3,0,32,37,15,1,0,1,0,9.058690314464513,9.058690314464513,0,0,0,0,0,0,0,0,0,0,3.987412548774272,0,0,0,53.48,53.71,5,1,0,0,10,5,1,601,0,0,0 +13817,16928,30840,30839,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,8.277807570028941,8.452255004641076,0,1,0,-9,2,0,-1,-90.00156507158992,0,0,0,47,2,4,1,-9,-9,2019,1,1,6,0,37,37,15,1,0,1,0,14.56456119959353,14.56456119959353,0,0,0,0,0,0,0,0,0,0,4.153996935213392,0,0,0,58.15,52.91,6,1,0,0,10,5,1,601,0,0,0 +13818,16929,30841,30842,-9,-9,1,1,0,50,1,0,0,0,3,-9,3,3,0,5,0,0,0,1,0,-9,8,0,-13,0,0,0,0,63,2,4,3,3,3,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,1,0,13,1,0,321.5,0,0,0 +13818,16929,30842,30841,-9,-9,2,1,1,63,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,8,0,13,0,0,0,0,50,3,5,3,3,3,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.95,42.36,4,1,1,0,13,1,0,321.5,0,0,0 +13818,16930,30843,-9,30841,30842,3,1,1,22,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-892.9325219017438,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,25,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,1,1,0,13,1,0,132,0,0,0 +13818,16931,30844,-9,30841,30842,4,1,0,19,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-935.5205725312491,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,13,1,0,1169,0,0,0 +13819,16932,30845,-9,-9,-9,1,1,0,31,2,0,1,0,3,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-874.4837909173883,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,8,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.32,18.46,7,1,0,0,6,1,0,221,0,0,0 +13820,16933,30846,30847,-9,-9,1,1,0,75,1,0,0,0,1,-9,4,3,0,3,0,5.834973449310101,6.081424761734072,1,0,-9,52,0,0,131.0261559778568,0,0,0,75,2,3,3,3,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.82918850745078,6.427764658423167,0,0,51,46,6,1,0,0,4,3,1,480.5,0,0,0 +13820,16933,30847,30846,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.784563708661852,7.85584907351716,1,0,-9,5,0,0,17.26938125896972,0,0,0,75,1,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,10.81031542128649,0,0,0,0,1,1,0,3.906581474370426,7.703983518608926,0,0,53,46,6,1,0,0,4,3,1,480.5,0,0,0 +13821,16934,30848,30849,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,4,7.746854205505928,7.763601429736188,0,1,0,-9,4,0,1,15.24927332177962,0,1,1,27,1,5,1,-9,-9,2019,1,1,22,10,37,30,15,1,10,1,0,7.654894954138401,7.654894954138401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,4,1,0,0,2,5,1,1670,0,0,0 +13821,16934,30849,30848,-9,-9,1,1,1,27,1,0,0,0,1,-9,2,1,0,5,8.8845158988549,9.101824611916916,0,1,0,-9,4,0,-1,11.96804907887917,0,1,0,28,2,4,1,-9,-9,2019,1,2,7,0,43,44,15,1,0,1,0,25.23173938893934,25.23173938893934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,2,5,1,1670,0,0,0 +13822,16935,30850,30851,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,46,0,11,0,0,0,0,65,3,2,3,3,3,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.9241442015485,3,51.85,48.84,5,1,0,0,7,1,1,457.5,0,0,0 +13822,16935,30851,30850,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,46,0,-11,0,0,0,0,76,3,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22371329464465,3,53.71,37.87,6,1,0,0,7,1,1,457.5,0,0,0 +13822,16936,30852,-9,30850,30851,3,1,1,42,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1046.19345110216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,1,1,442,0,0,0 +13822,16937,30853,-9,30850,30851,4,1,1,31,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-950.9867325651771,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,7,1,1,453,0,0,0 +13823,16938,30854,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,2,1,0,4,5.073695827192464,6.80103993644244,6.615689991691657,3,0,0,0,-9,0,-958.4426711584161,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,5,0,15,1,0,-9,0,3.858207248879217,3.858207248879217,0,0,0,0,0,0,0,1,1,0,4.998453491332732,6.461459958624605,0,0,54.79,55.86,6,1,0,0,4,2,1,3897,0,0,0 +13824,16939,30855,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,5,8.534026484365025,8.299974527178861,0,3,0,0,0,-9,0,-845.1468716846276,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,45,40,15,1,0,-9,0,11.84910047418514,11.84910047418514,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,8,4,1,1155,0,0,0 +13825,16940,30856,30857,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,1,0,8.273206529967034,8.443946894786022,1,0,-9,36,0,-3,146.1544548690857,0,0,0,64,3,4,3,2,2,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.12026496038356,0,0,55.35,8.880000000000001,2,1,0,0,10,3,1,1361,0,0,0 +13825,16940,30857,30856,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,4,0,5.780557470790681,5.988881751426746,1,0,-9,36,0,3,-38.02028269536014,0,0,0,61,2,1,3,2,2,2019,4,2,2,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.519187429430906,14.59514671482991,1,55.59,47.45,7,1,0,0,10,3,1,1361,0,0,0 +13826,16941,30858,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1045.584619112155,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,36,12,0,6,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.13178672953055,3,16.04,23.99,1,1,0,1,6,1,0,299,0,0,0 +13827,16942,30859,30860,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,2,0,7.839602893210728,7.873071870036632,1,0,-9,44,0,8,9.460146239986869,0,0,0,72,2,2,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.121598943964908,7.738752802798866,0,0,58.32,28.96,6,1,0,0,9,3,1,221.5,0,0,0 +13827,16942,30860,30859,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,44,0,-8,4.720244071612312,0,0,0,80,2,2,3,2,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,0,22.6806252967807,0,0,0,0,1,1,0,7.372547667710044,0,7.28744956819503,1,43.6,27.65,6,1,0,0,9,3,1,221.5,0,0,0 +13828,16943,30861,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,6.764243236633449,6.748436763227643,3,0,0,0,-9,0,-947.710085069187,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.018125021540386,6.623214270895917,0,0,43.56,27.3,5,1,0,0,4,2,1,264,0,0,0 +13829,16944,30862,-9,30863,30867,4,1,0,6,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.568242565918,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,11,2,1,793.4285714285714,0,0,0 +13829,16944,30863,30867,-9,-9,1,1,0,30,1,2,5,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,2,-33.98735492753374,0,0,1,28,2,4,1,2,2,2019,3,2,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.49,57.57,6,1,0,0,11,2,1,793.4285714285714,0,0,0 +13829,16944,30864,-9,30863,30867,3,1,1,8,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.273653410648,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,1,0,0,11,2,1,793.4285714285714,0,0,0 +13829,16944,30865,-9,30863,30867,6,1,1,1,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1117.383622431323,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,11,2,1,793.4285714285714,0,0,0 +13829,16944,30866,-9,30863,30867,7,1,1,0,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1086.052795192161,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,11,2,1,793.4285714285714,0,0,0 +13829,16944,30867,30863,-9,-9,2,1,1,28,1,2,5,0,2,-9,2,1,0,4,8.049490272943025,8.262858469198996,0,2,0,-9,7,0,-2,95.81222922863255,0,1,0,30,2,4,3,-9,-9,2019,2,1,9,0,60,43,15,1,0,3,0,6.601153105706898,6.601153105706898,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.35,55.32,7,1,0,0,11,2,1,793.4285714285714,0,0,0 +13829,16944,30868,-9,30863,30867,5,1,0,4,2,2,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-976.4498736274443,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,11,2,1,793.4285714285714,0,0,0 +13830,16945,30869,30870,-9,-9,1,1,0,61,1,0,0,0,2,-9,1,1,0,4,6.614209455896398,7.089437096067726,6.369705348502825,1,0,-9,35,0,2,-116.5753606814022,0,0,0,59,1,4,1,3,3,2019,1,2,11,0,8,4,15,1,0,1,0,10.02970122067791,10.02970122067791,0,0,0,0,0,0,0,0,0,0,4.428688705259598,6.263514576898731,0,0,48.87,58.55,6,1,0,0,9,5,1,381.5,0,0,0 +13830,16945,30870,30869,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,8.586599291453853,9.385961881622912,8.924798895619029,1,0,-9,35,0,-2,45.17752204498053,0,0,0,61,2,4,1,2,3,2019,1,1,8,0,20,40,15,1,0,1,0,25.79371642947536,25.79371642947536,0,0,0,0,0,0,0,0,0,0,4.659438211237883,9.329008298530294,0,0,54.2,57.49,7,1,0,0,9,5,1,381.5,0,0,0 +13830,16946,30871,-9,30869,30870,3,1,0,26,2,0,0,0,1,-9,2,1,0,4,8.815426682086805,8.905007017426646,0,3,0,0,0,-9,0,-950.555026655455,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,20,8,75,50,15,1,8,-9,1,12.52461331155334,12.52461331155334,0,0,0,0,0,0,0,0,0,0,2.383417689495639,0,0,0,30.53,65.61,3,1,0,0,9,5,1,110,0,0,0 +13831,16947,30872,30873,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,3,7.08602636387004,7.70192404723333,6.571189487677677,1,0,-9,7,0,-1,-17.12469729826606,0,0,0,57,2,5,1,3,3,2019,1,2,8,0,45,50,15,1,0,1,0,3.299459023838297,3.299459023838297,0,0,0,0,0,0,0,0,0,0,4.726743648564102,6.627002140082099,0,0,46.33,55.93,6,1,0,0,12,3,1,1156,0,0,0 +13831,16947,30873,30872,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,5,7.169318086090177,7.294300450571032,0,1,0,-9,7,0,1,65.08737482699443,0,0,0,56,2,3,1,3,2,2019,1,1,9,0,20,20,15,1,0,1,0,7.056884810361586,7.056884810361586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,3,1,1156,0,0,0 +13832,16948,30874,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,4,3,0,3,0,7.7225524221167,7.364969870663555,3,0,0,0,-9,0,-1000.639984239599,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.052810847143694,7.585809982879221,0,0,41.64,54.12,5,3,0,0,12,3,1,1650,0,0,0 +13833,16949,30875,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,4,6.988341323986991,6.967498213697133,0,3,0,0,0,-9,0,-951.904161281439,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,18,18,15,1,0,-9,0,6.157087904111732,6.157087904111732,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,6,1,0,0,7,2,1,1652,0,0,0 +13834,16950,30876,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,2,1,0,3,7.457823521286527,7.404671982689081,7.209834748507389,3,0,0,0,-9,0,-994.4860868296628,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,29,28,15,1,1,-9,0,8.057769435249526,8.057769435249526,0,0,0,0,0,0,0,1,1,0,0,7.056423741896095,0,0,51.08,52.1,6,4,0,0,8,4,1,777,0,0,0 +13835,16951,30877,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1015.952394661191,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.9825230164094608,0,0,0,57.68,18.42,5,1,0,0,13,2,0,334,0,0,0 +13836,16952,30878,30879,-9,-9,1,1,1,56,1,0,0,0,3,-9,2,1,0,2,8.241076452793035,8.089350268365942,0,1,0,-9,4,0,5,32.26518903671634,0,0,0,51,3,4,3,3,2,2019,2,2,12,0,38,38,15,1,0,3,0,10.83719240827185,10.83719240827185,0,0,0,0,0,0,0,1,1,0,2.711622852464344,0,0,0,52.24,50.75,2,1,0,0,13,3,1,984,0,0,0 +13836,16952,30879,30878,-9,-9,2,1,0,51,1,0,0,0,3,-9,97,3,0,4,6.145715151787755,6.422978075607555,0,1,0,-9,4,0,-5,-26.21269997037346,0,0,0,56,3,2,1,3,2,2019,3,1,7,0,36,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.15406200608955,3,54.74,57.22,5,1,0,0,13,3,1,984,0,0,0 +13837,16953,30880,30881,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,4,0,7.375617153038624,7.543914040152251,1,0,-9,43,0,-3,30.68946175434652,0,0,0,64,3,2,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33452577704176,7.58048559813014,0,0,55.79,52.62,6,1,0,0,1,4,1,458,0,0,0 +13837,16953,30881,30880,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,2,8.061901555788809,8.11641632175947,6.429390367347745,1,0,-9,43,0,3,171.5669284988858,0,0,0,61,1,4,3,-9,-9,2019,2,2,10,0,35,45,15,1,0,4,0,11.01551043480706,11.01551043480706,0,0,0,0,0,0,0,0,0,0,2.613671606663873,6.859716862468166,0,0,50.52,47.59,6,1,0,0,1,4,1,458,0,0,0 +13838,16954,30882,-9,30885,30884,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.37976491025,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,1039.5,0,0,0 +13838,16954,30883,-9,30885,30884,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-830.6245887507213,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,7,1,0,0,10,4,1,1039.5,0,0,0 +13838,16954,30884,30885,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,5,8.914583435124092,8.691000626149627,0,2,0,-9,8,0,1,-10.242217666911,0,0,0,46,2,4,1,-9,-9,2019,1,1,8,0,44,41,15,1,0,1,0,17.6222373593755,17.6222373593755,0,0,0,0,0,0,0,1,1,0,1.815163356707495,0,0,0,59.43,58.05,4,1,0,0,10,4,1,1039.5,0,0,0 +13838,16954,30885,30884,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,8.144591579044254,8.037177671014291,0,2,0,-9,24,0,-1,46.92494154840217,0,0,0,47,1,5,1,2,2,2019,1,2,10,0,41,38,15,1,0,1,0,9.535470905650261,9.535470905650261,0,0,0,0,0,0,0,1,1,0,2.155092219878845,0,0,0,54.74,57.22,4,1,0,0,10,4,1,1039.5,0,0,0 +13839,16955,30886,-9,30890,30889,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.556394332557,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,2,0,465.8,0,0,0 +13839,16955,30887,-9,30890,30889,3,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.533857725884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,0,465.8,0,0,0 +13839,16955,30888,-9,30890,30889,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.6699870923759,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,0,465.8,0,0,0 +13839,16955,30889,30890,-9,-9,2,1,1,34,1,0,3,0,2,-9,2,1,0,1,7.726217130714761,7.862297256619574,0,2,0,-9,7,0,5,-73.08966478408676,0,0,0,29,2,3,3,2,2,2019,2,1,15,3,50,40,15,1,3,3,0,5.212745373619373,5.212745373619373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.98,43.38,4,1,0,1,6,2,0,465.8,0,0,0 +13839,16955,30890,30889,-9,-9,1,1,0,29,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,7,0,-5,20.36452546978402,0,1,1,34,2,1,1,2,2,2019,3,2,9,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,53.53,6,1,1,1,6,2,0,465.8,0,0,0 +13840,16956,30891,30892,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,8.065635338821732,7.637069861349748,1,0,-9,10,0,2,14.74571103235203,0,0,0,68,3,2,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.838862887101786,7.750200677741495,0,0,58.67,39.12,6,1,0,0,2,3,1,3703,0,0,0 +13840,16956,30892,30891,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,7.4210553273644,7.610183561680524,1,0,-9,47,0,-2,-72.5950774857326,0,0,0,70,1,3,3,3,2,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,1,0,.5587868603549777,0,0,0,0,1,1,0,.1947837600894164,7.583040146399807,0,0,44.08,36.64,6,1,0,0,2,3,1,3703,0,0,0 +13841,16957,30893,-9,30894,-9,2,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-985.7796857696252,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,1,1,377,0,0,0 +13841,16957,30894,-9,-9,-9,1,1,0,39,3,0,1,0,1,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-886.3724961014941,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,17,6,0,29,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.975562902774099,0,0,0,36.18,53.83,5,1,0,0,9,1,1,377,0,0,0 +13842,16958,30895,-9,-9,-9,1,1,0,48,2,0,1,0,1,-9,2,1,0,4,7.565303035230744,7.518171333042901,5.866437366061939,4,0,0,0,-9,0,-918.4980449530866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,26,30,15,1,0,-9,0,8.012572994126415,8.012572994126415,0,0,0,0,0,0,0,1,1,0,5.284625944752543,0,23.42081413609017,3,51.83,57.2,6,1,0,0,5,3,1,1508,0,0,0 +13842,16958,30896,-9,30895,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-882.4747310732123,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,5,3,1,1508,0,0,0 +13842,16959,30897,-9,30895,-9,3,1,1,23,2,0,1,0,2,-9,2,1,0,3,7.796416013479926,7.763060631712872,0,3,0,0,0,-9,0,-1037.852323485082,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,1,37,37,15,1,1,-9,1,7.00693301476856,7.00693301476856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,4,1,0,0,5,3,1,405,0,0,0 +13843,16960,30898,30900,-9,-9,2,1,0,27,1,1,1,0,2,-9,2,1,0,5,8.021706932876647,7.957486967136641,0,2,0,-9,3,0,-3,68.52572904531563,0,1,1,30,2,5,1,-9,-9,2019,1,1,16,4,21,38,15,1,4,1,0,14.42948837480057,14.42948837480057,0,0,0,0,0,0,0,1,1,0,3.390194270365345,0,13.90188966390093,3,37.17,64.27,5,1,0,0,12,4,1,468,0,0,0 +13843,16960,30899,-9,30898,30900,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-967.1800922603036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,4,1,468,0,0,0 +13843,16960,30900,30898,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,5,8.187371367514036,8.272381409197067,0,2,0,-9,3,0,3,73.50955326577881,0,0,0,27,2,5,1,3,3,2019,1,2,10,1,37,38,15,1,1,1,0,11.98853764345807,11.98853764345807,0,0,0,0,0,0,0,1,1,0,3.544518429496505,0,0,0,38.26,40.59,7,1,0,0,12,4,1,468,0,0,0 +13844,16961,30901,-9,-9,-9,1,1,0,40,2,0,1,0,2,-9,2,1,0,2,7.280428012021324,7.55129797671691,0,4,0,-9,0,-9,0,-1139.922462852545,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,22,0,15,1,0,-9,0,7.250506439189191,7.250506439189191,0,0,0,0,0,0,0,1,0,1,0,0,2.030567403582475,3,42.28,52.7,6,1,0,0,12,2,1,1251,0,0,0 +13844,16962,30902,-9,30901,-9,2,1,1,21,2,0,1,0,2,-9,3,3,0,2,0,0,0,3,0,-9,0,-9,0,-920.3027779139644,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.44,44.52,4,1,1,0,12,1,1,1159,0,0,0 +13845,16963,30903,-9,30907,30905,4,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1028.483511630339,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,6,3,1,951.2,0,0,0 +13845,16963,30904,-9,30907,30905,3,1,1,16,2,0,3,1,3,-9,7,2,0,5,5.905398307185918,5.678645604619674,0,2,0,0,0,-9,0,-1027.311011913197,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,6,1,0,0,6,3,1,951.2,0,0,0 +13845,16963,30905,30907,-9,-9,2,1,1,41,1,0,3,0,2,-9,2,1,0,4,7.799419095284845,8.127717876184418,0,2,0,-9,19,0,4,-40.6313702601452,0,0,0,37,2,4,1,2,2,2019,1,1,9,0,45,45,15,1,0,1,0,7.585678108891608,7.585678108891608,0,0,0,0,0,0,0,1,1,0,1.106966094766535,0,0,0,45.52,42.86,5,1,0,0,6,3,1,951.2,0,0,0 +13845,16963,30906,-9,30907,30905,5,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1033.983263907066,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,6,3,1,951.2,0,0,0 +13845,16963,30907,30905,-9,-9,1,1,0,37,1,0,3,0,2,-9,2,1,0,4,7.486870923956109,7.59360984546589,0,2,0,-9,19,0,-4,-13.02639425615065,-9,0,1,41,2,4,1,2,3,2019,1,2,8,0,31,0,15,1,0,1,0,7.911422700717692,7.911422700717692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,4,1,0,0,6,3,1,951.2,0,0,0 +13846,16964,30908,-9,-9,-9,1,1,1,26,2,0,0,0,3,-9,2,1,0,5,8.109285187348164,8.255901841873417,0,3,0,0,0,-9,0,-946.4966209272807,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,55,55,15,1,4,-9,0,9.528809979613147,9.528809979613147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,4,4,0,0,8,4,0,1101,0,0,0 +13847,16965,30909,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,3.84901321849844,3.555436901254486,3,0,0,0,-9,0,-1015.490209088739,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.605552045097832,3.992724392041651,0,0,45.04,27.23,6,1,0,0,7,2,1,143,0,0,0 +13848,16966,30910,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,2,1,0,4,7.620579785430978,8.256027707445218,5.943901576179514,4,0,-9,0,1,0,-1040.085686762929,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,2,23,23,15,1,2,-9,0,15.30757496813661,15.30757496813661,0,0,0,0,0,0,0,1,0,1,6.034148939005241,0,0,0,51,52.08,6,1,0,0,9,3,1,287.5,0,0,0 +13848,16966,30911,-9,30910,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1001.851202880483,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,1,0,0,9,3,1,287.5,0,0,0 +13849,16967,30912,30913,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,2,8.291771914706251,8.234421464696965,0,1,0,-9,34,0,-1,29.14011350863244,0,0,0,59,2,2,3,3,2,2019,2,1,29,12,39,39,15,1,12,3,0,12.76683274319893,12.76683274319893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.55,39.51,5,1,0,1,12,5,0,2138,0,0,0 +13849,16967,30913,30912,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,2,8.032944748531385,8.197882864437831,0,1,0,-9,34,0,1,-115.8646183338156,0,0,0,58,3,2,1,3,3,2019,3,2,32,11,40,45,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.78,50.29,4,1,0,1,12,5,0,2138,0,0,0 +13850,16968,30914,30915,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,2,0,5.924374780728685,5.870084434208829,1,0,-9,7,0,4,87.42216826042022,0,0,0,63,3,1,3,3,3,2019,4,2,22,10,0,0,15,4,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.795834102008423,67.05683096092494,1,30.28,37.74,3,1,0,0,4,2,0,1768,0,0,0 +13850,16968,30915,30914,-9,-9,2,1,0,63,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-4,36.19389788614804,0,0,0,67,3,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,19.19,5,1,0,0,4,2,0,1768,0,0,0 +13851,16969,30916,30917,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.19219336422676,8.597968410909942,0,1,0,-9,30,0,-5,-41.75208628046093,0,0,0,61,1,3,3,2,2,2019,2,1,11,0,37,37,15,1,0,4,0,15.6276908420426,15.6276908420426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,6,1,0,0,13,4,1,229.5,0,0,0 +13851,16969,30917,30916,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,3,0,7.731527646694657,7.589750598527058,1,0,-9,30,0,5,-32.18445512356811,0,0,0,56,1,4,1,3,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.740701291060749,7.521705369184515,0,0,54.37,54.8,6,1,0,0,13,4,1,229.5,0,0,0 +13852,16970,30918,-9,30921,-9,1,1,1,36,2,0,0,0,2,-9,2,1,0,3,8.132104349737407,8.317206913996442,0,3,0,0,0,-9,0,-1033.136430936599,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,46,45,15,1,0,-9,1,7.486688853433735,7.486688853433735,0,0,0,0,0,0,0,1,1,0,6.805223632126079,0,12.97645694145311,3,59.22,37.52,4,3,0,0,6,4,1,1078,0,0,0 +13852,16971,30919,-9,30921,-9,2,1,1,32,2,0,0,0,2,-9,2,1,0,2,8.124584867989844,8.167981857975098,0,3,0,0,0,-9,0,-869.7524005468404,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,38,38,15,1,0,-9,1,11.80981672986622,11.80981672986622,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.49,37.8,4,3,0,0,6,4,1,159,0,0,0 +13852,16972,30920,-9,30921,-9,3,1,1,26,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-936.4572586930825,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.57,41.44,3,3,0,0,6,1,1,644,0,0,0 +13852,16973,30921,-9,-9,-9,4,1,0,61,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-998.8682235960119,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,109.2856605740765,3,39.39,37.66,3,3,0,0,6,1,1,61,0,0,0 +13853,16974,30922,-9,-9,-9,2,1,1,39,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-936.9708307724629,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.16,45.4,1,1,0,0,11,1,0,266,0,0,0 +13853,16975,30923,-9,-9,30922,1,1,0,22,2,0,0,0,2,-9,97,3,0,5,0,0,0,3,0,0,0,-9,0,-964.1927143250983,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.7659154348501,3,40.61,64.02,4,1,0,0,11,1,0,351,0,0,0 +13854,16976,30924,30925,-9,-9,3,1,1,25,1,0,1,0,2,-9,2,1,0,4,8.171283239669304,8.138485533517439,0,2,0,-9,1,-9,-1,-26.52600896171203,-9,1,0,26,2,1,1,-9,-9,2019,1,1,10,0,39,0,15,1,1,1,0,8.980925874319203,8.980925874319203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,5,4,0,542,0,0,0 +13854,16976,30925,30924,-9,-9,1,1,0,26,1,0,1,0,2,-9,2,1,0,1,7.252996622609286,7.236235851630722,0,2,0,1,1,-9,1,33.49106914265838,0,1,1,25,2,4,1,3,-9,2019,1,3,22,10,23,0,15,1,10,1,0,8.41912534380104,8.41912534380104,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.37,22.05,4,1,0,1,5,4,0,542,0,0,0 +13854,16976,30926,-9,30925,30924,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.644069111419,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,0,542,0,0,0 +13855,16977,30927,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,2,1,0,3,8.283303405239685,8.520860423585674,0,3,0,0,0,-9,0,-1001.013903764757,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,35,37,15,1,0,-9,0,17.24774531548775,17.24774531548775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,6,1,0,0,10,4,1,2157,0,0,0 +13856,16978,30928,30929,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,7,0,-11,-19.61109948291115,0,0,0,67,3,4,3,3,3,2019,4,1,16,5,0,0,15,3,5,4,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,48,1,1,0,0,7,2,1,963.5,0,0,0 +13856,16978,30929,30928,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,6.559544236760807,6.667194979145887,1,0,-9,7,0,11,-65.66615376348331,0,0,0,56,3,3,3,3,3,2019,4,2,8,2,0,0,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,3.683618209890368,6.377311531512662,47.03978634146969,1,34.68,56.05,7,1,0,0,7,2,1,963.5,0,0,0 +13857,16979,30930,30931,-9,-9,2,1,0,31,1,0,0,0,2,-9,2,1,0,4,8.390816239530889,8.350251938056699,0,1,0,-9,6,0,-3,-45.35229945317268,0,0,1,34,2,1,1,2,3,2019,1,1,12,2,35,40,15,1,2,1,0,9.666817134343505,9.666817134343505,0,0,0,0,0,0,0,0,0,0,6.246634814069569,0,0,0,36.79,58.94,6,1,0,0,13,4,1,443,0,0,0 +13857,16979,30931,30930,-9,-9,1,1,1,34,1,0,0,0,2,-9,2,1,0,1,7.922947727336941,7.648945049801005,0,1,0,-9,6,0,3,6.375167458106052,0,0,0,31,2,4,1,2,-9,2019,1,2,23,10,39,46,15,1,10,1,0,7.813595660428793,7.813595660428793,0,0,0,0,0,0,0,0,0,0,1.119971300695015,0,0,0,39.76,34.6,3,1,0,0,13,4,1,443,0,0,0 +13858,16980,30932,30933,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,3,7.834682977166541,8.113388328692155,0,1,0,-9,6,0,11,14.02884109897087,0,0,0,39,1,4,1,2,1,2019,1,1,18,6,30,37,15,1,6,1,0,10.34162603462926,10.34162603462926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,37.6,3,1,0,0,6,5,1,2213.5,0,0,0 +13858,16980,30933,30932,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,4,8.479392507290122,8.407489474103141,0,1,0,-9,6,0,-11,-76.50133772725647,0,0,0,50,1,3,1,2,1,2019,1,2,9,0,37,37,15,1,1,1,0,14.24503631262245,14.24503631262245,0,0,0,0,0,0,0,0,0,0,.6982364374025074,0,0,0,51,56,6,1,0,0,6,5,1,2213.5,0,0,0 +13859,16981,30934,30935,-9,-9,2,1,1,45,1,0,0,0,2,-9,2,1,0,4,8.647337187776907,8.498310449965336,0,1,0,-9,4,0,-11,83.75894872456215,0,0,0,56,3,5,1,2,2,2019,1,1,3,0,45,55,15,1,0,1,0,16.0147064271433,16.0147064271433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,6,1,0,0,5,5,1,926,0,0,0 +13859,16981,30935,30934,-9,-9,1,1,0,56,1,0,0,0,3,-9,2,1,0,5,8.340381193218336,8.337356396276979,0,1,0,-9,4,0,11,-63.14428961463511,0,0,0,45,2,4,1,3,2,2019,1,2,11,0,37,39,15,1,0,1,0,12.23468788088308,12.23468788088308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.72,58.06,2,1,0,0,5,5,1,926,0,0,0 +13860,16982,30936,30937,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.807444459622509,7.580538689218606,0,1,0,-9,6,0,1,55.19234137403656,0,0,0,50,2,4,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,8.243604519924967,8.243604519924967,0,0,0,0,0,0,0,0,0,0,4.907839340214975,0,16.85955355594138,3,54.2,57.49,6,1,0,0,13,5,1,430.5,0,0,0 +13860,16982,30937,30936,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.705367349472526,8.522519857316553,0,1,0,-9,6,0,-1,-47.18942984564077,0,0,0,51,2,4,1,-9,-9,2019,1,1,9,0,60,37,15,1,1,1,0,9.652426332803982,9.652426332803982,0,0,0,0,0,0,0,0,0,0,5.150707112815592,0,0,0,53,55,6,1,0,0,13,5,1,430.5,0,0,0 +13861,16983,30938,30939,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,3,0,6.983692161567686,7.027700738379452,1,0,-9,8,0,-8,18.04677354809794,0,0,0,74,3,2,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.199439167136295,6.969999837598498,1.843267544561019,3,48.78,38.38,3,1,0,0,10,2,1,432,0,0,0 +13861,16983,30939,30938,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,6.602687620406106,6.369984246306903,1,0,-9,8,0,8,26.59005133124206,0,0,0,66,3,3,3,3,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.38272868083286,0,0,50.21,45.02,6,1,0,0,10,2,1,432,0,0,0 +13862,16984,30940,-9,30941,30943,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.4950153739489,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,2,1,771.75,0,0,0 +13862,16984,30941,30943,30944,-9,2,1,0,38,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,18,0,-12,-.81531332346366,0,0,1,50,3,4,1,1,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.939244330761019,3,54.1,59.11,7,1,0,0,13,2,1,771.75,0,0,0 +13862,16984,30942,-9,30941,30943,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.0647672667752,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,1,771.75,0,0,0 +13862,16984,30943,30941,-9,-9,1,1,1,50,1,0,3,0,3,-9,1,1,0,4,7.808414873007762,7.736823000880102,0,2,0,-9,8,0,12,88.79523664743775,0,0,0,38,2,5,3,-9,-9,2019,2,2,9,0,60,0,15,1,1,3,0,7.588935260473711,7.588935260473711,0,0,0,0,0,0,0,1,1,0,5.948456276464759,0,0,0,53,55,6,5,0,0,13,2,1,771.75,0,0,0 +13862,16985,30944,-9,-9,-9,6,1,0,67,3,0,3,0,2,-9,4,3,0,4,0,0,0,4,0,-9,0,-9,0,-914.6614691547564,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5973934485964,0,0,0,55.19,54.26,6,1,0,0,13,1,1,4856,0,0,0 +13863,16986,30945,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,5,0,7.10727403648001,7.098511687330839,3,0,0,0,-9,0,-919.2176207714886,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.418379765280329,7.215113266559919,0,0,57.06,57.76,7,1,0,0,13,2,1,1209,0,0,0 +13864,16987,30946,30947,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.525575017920515,8.738891124565919,0,1,0,-9,11,0,1,27.25407391276808,0,0,0,51,2,3,1,-9,-9,2019,1,1,14,2,40,42,15,1,2,1,0,12.94640806781162,12.94640806781162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.75,41.81,3,1,0,0,4,5,1,1576,0,0,0 +13864,16987,30947,30946,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.064019613918861,7.789912716374085,0,1,0,-9,31,0,-1,60.13265111690655,0,0,0,52,2,3,1,2,3,2019,1,2,18,6,40,40,15,1,6,1,0,9.690305809270676,9.690305809270676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.29,46.1,3,1,0,0,4,5,1,1576,0,0,0 +13865,16988,30948,-9,-9,-9,1,1,1,52,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1064.91692500841,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.48,32.85,3,1,0,0,5,1,0,2063,0,0,0 +13866,16989,30949,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1124.367973227619,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.02,37.42,3,1,0,0,13,1,0,794,0,0,0 +13866,16990,30950,-9,30949,-9,2,1,0,21,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1038.047178389854,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,5,1,1,13,1,0,379,0,0,0 +13866,16991,30951,-9,-9,-9,3,1,0,21,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-925.9276283831942,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,5,1,1,13,1,0,1961,0,0,0 +13867,16992,30952,-9,-9,-9,1,1,1,20,2,0,0,0,2,1,2,1,0,3,7.989991747329473,7.890208355753622,0,3,0,0,0,-9,0,-1077.357677174198,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,50,0,15,1,0,-9,0,7.863778851243665,7.863778851243665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,8,4,0,268,0,0,0 +13868,16993,30953,30954,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,5,8.743722078750967,8.767674456177957,0,1,0,-9,12,0,-2,59.88264456264168,0,0,0,54,2,5,1,2,2,2019,1,2,10,0,37,40,15,1,0,1,0,19.48921074915248,19.48921074915248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.06,43.79,4,2,0,0,8,5,1,548,0,0,0 +13868,16993,30954,30953,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,5,8.247438291638566,8.162296881104385,0,1,0,-9,11,0,2,67.70254471220807,0,0,0,52,2,5,1,2,-9,2019,1,1,11,0,35,35,15,1,0,1,0,9.738801729300912,9.738801729300912,0,0,0,0,0,0,0,0,0,0,2.334073812031129,0,0,0,38.01,61.37,4,4,0,0,8,5,1,548,0,0,0 +13869,16994,30955,30956,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,4,8.571473360988277,8.347359488879977,0,1,0,-9,6,0,4,-75.26882479767278,-9,0,0,31,1,5,1,2,2,2019,1,2,8,2,42,0,15,1,2,1,0,12.67382036295094,12.67382036295094,0,0,0,0,0,0,0,1,1,0,.8464911506883172,0,0,0,50.4,55.04,6,1,0,0,12,5,1,429,0,0,0 +13869,16994,30956,30955,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,5,8.070066598978642,8.024722765526692,0,1,0,-9,6,0,-4,-34.21523944375536,-9,0,1,35,1,4,1,-9,-9,2019,1,1,4,0,18,0,15,1,0,1,0,22.29868404340765,22.29868404340765,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.72,55.58,7,1,0,0,12,5,1,429,0,0,0 +13870,16995,30957,30958,-9,-9,2,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.338692744454166,8.509762802415793,0,1,0,-9,1,-9,-4,-64.63173646645895,-9,0,1,36,2,3,1,-9,-9,2019,1,1,9,0,35,0,15,1,0,1,0,19.53872274989066,19.53872274989066,0,0,0,0,0,0,0,0,0,0,5.450844639482691,0,0,0,42.3,57.54,6,1,0,0,8,5,1,4222.5,0,0,0 +13870,16995,30958,30957,-9,-9,1,1,1,36,1,0,0,0,2,-9,2,1,0,3,9.491834405117681,9.171882135440507,0,1,0,1,1,-9,4,-.1739914789752578,0,0,0,32,1,4,1,1,1,2019,1,2,5,0,40,41,15,1,0,1,0,29.2589160689968,29.2589160689968,0,0,0,0,0,0,0,0,0,0,4.601081431702581,0,0,0,50.57,52.35,6,1,0,0,8,5,1,4222.5,0,0,0 +13871,16996,30959,-9,30961,30960,1,1,1,46,3,0,0,0,2,-9,2,1,0,3,8.607670474415297,8.654256121790853,0,3,0,0,0,-9,0,-989.5524286403804,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,65,71,15,1,0,-9,1,9.441670593839552,9.441670593839552,0,0,0,0,0,0,0,1,1,0,6.535655042152991,0,.2928625850419346,3,51.26,41.01,5,1,0,0,2,5,0,496,0,0,0 +13871,16997,30960,30961,-9,-9,3,1,1,85,1,0,0,0,3,-9,4,3,0,2,0,3.589109234605908,3.714194880766565,1,0,-9,4,0,6,9.430534257577166,0,0,0,79,2,2,3,-9,-9,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.343094284275115,0,0,42.27,23.22,6,1,0,0,2,1,0,1023.5,0,0,0 +13871,16997,30961,30960,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,-6,96.8768700539589,0,0,0,85,3,2,3,-9,-9,2019,4,3,21,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.79,38.29,6,1,0,0,2,1,0,1023.5,0,0,0 +13872,16998,30962,-9,30964,30965,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.8250133624958,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,511.25,0,0,0 +13872,16998,30963,-9,30964,30965,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.1859179840036,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,511.25,0,0,0 +13872,16998,30964,30965,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,5,8.820840341204297,8.610884585758853,0,2,0,-9,11,0,-8,-40.04666473690333,0,0,0,53,2,4,1,1,2,2019,1,2,13,2,40,43,15,1,2,1,0,26.15477743742274,26.15477743742274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,62.87,6,1,0,0,2,5,1,511.25,0,0,0 +13872,16998,30965,30964,-9,-9,2,1,1,53,1,0,2,0,2,-9,2,1,0,4,8.578871952168885,8.817862251209689,0,2,0,-9,11,0,8,-32.96333263457888,0,0,0,45,1,5,1,2,3,2019,1,1,7,0,45,40,15,1,0,1,0,19.97037324236691,19.97037324236691,0,0,0,0,0,0,0,1,1,0,8.014959186505832,0,0,0,48.28,60.18,6,1,0,0,2,5,1,511.25,0,0,0 +13873,16999,30966,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,3,8.989885375870188,8.710313727249854,0,1,0,-9,5,0,-7,1.639318945361657,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,9,1,51,53,15,1,1,-9,0,15.0441312217528,15.0441312217528,0,0,0,0,0,0,0,0,0,0,3.632591095156602,0,0,0,47.15,56.66,6,1,0,0,12,5,1,347,0,0,0 +13873,17000,30967,-9,-9,-9,3,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.727096907427095,8.361055000645278,0,3,0,-9,0,-9,0,-1077.45236887731,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,40,0,15,1,0,-9,0,12.81472139565863,12.81472139565863,0,0,0,0,0,0,0,0,0,0,7.326037632250697,0,0,0,59.43,58.05,7,3,0,0,12,4,1,340,0,0,0 +13873,17001,30968,-9,-9,-9,2,1,1,40,2,0,0,0,1,-9,2,1,0,3,9.210991430809717,9.232897126318013,0,1,0,-9,5,0,7,53.63686597031791,0,0,0,-9,-9,-9,-9,1,1,2019,1,1,7,0,58,55,15,1,0,-9,0,17.4542055821801,17.4542055821801,0,0,0,0,0,0,0,0,0,0,7.096138815993634,0,0,0,54.18,50.75,6,1,0,0,12,5,1,399,0,0,0 +13874,17002,30969,-9,-9,-9,1,1,1,88,3,0,0,0,1,-9,4,3,0,5,0,8.960375362894554,8.732124455101854,3,0,0,0,-9,0,-1000.943072844261,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.971398915018868,9.227106280277008,0,0,56.71,41.41,6,1,0,0,11,5,1,735,0,0,0 +13875,17003,30970,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-968.1754703809224,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,4,8,-9,0,0,0,1,0,0,4.430173761626834,0,0,0,1,1,0,0,0,0,0,30.32,17.53,4,1,0,0,11,1,0,968,0,0,0 +13876,17004,30971,30972,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,10,0,-1,-3.431461257118854,0,0,0,52,2,3,1,3,3,2019,1,1,18,6,0,30,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.11,39.86,2,1,0,0,11,4,1,344,0,0,0 +13876,17004,30972,30971,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.177992069409106,8.428617730849718,0,1,0,-9,10,0,1,21.03423686250012,0,0,0,51,2,2,1,2,2,2019,1,2,10,0,47,55,15,1,0,1,0,14.14442389786087,14.14442389786087,0,0,0,0,0,0,0,0,0,0,0,0,5.5178696529781,3,51.94,55.88,4,1,0,0,11,4,1,344,0,0,0 +13877,17005,30973,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,7.075229248363776,6.944804903198508,3,0,0,0,-9,0,-932.6776383188799,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.892050944633146,0,0,50.19,41.56,6,1,0,0,11,2,0,502,0,0,0 +13878,17006,30974,30975,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,2,0,7.882137248699177,7.607286692907167,1,0,-9,10,0,4,-38.8162984384145,0,0,0,64,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9556726384022609,7.7453570810399,0,0,60.29,38.88,6,1,0,0,13,4,1,427.5,0,0,0 +13878,17006,30975,30974,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,3,0,7.77931515055608,7.85455580690389,1,0,-9,10,0,-4,-38.51663936335783,0,0,0,68,1,2,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.168579727140424,7.922801554109395,0,0,60.87,44.96,6,1,0,0,13,4,1,427.5,0,0,0 +13879,17007,30976,-9,30977,30979,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.0120211421857,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,12,5,1,523.25,0,0,0 +13879,17007,30977,30979,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,5,9.324412328149512,9.260863294479604,0,2,0,-9,18,0,-2,-63.7221007784993,0,0,1,42,1,3,1,2,2,2019,1,2,6,0,40,38,15,1,0,1,0,29.99025411778187,29.99025411778187,0,0,0,0,0,0,0,0,0,0,6.83792549736674,0,0,0,54.1,59.11,6,1,0,0,12,5,1,523.25,0,0,0 +13879,17007,30978,-9,30977,30979,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1188.765174385073,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,12,5,1,523.25,0,0,0 +13879,17007,30979,30977,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,3,9.502036412640697,9.81508319552578,0,2,0,-9,18,0,2,10.6861991731619,0,0,0,40,1,5,1,2,2,2019,1,1,12,2,42,41,15,1,2,1,0,40.42520033452015,40.42520033452015,0,0,0,0,0,0,0,0,0,0,6.265202361192197,0,0,0,41.32,53.68,5,1,0,0,12,5,1,523.25,0,0,0 +13880,17008,30980,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,2,1,0,4,8.149059962449174,8.360971389753669,0,3,0,-9,0,1,0,-1033.820569198612,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,42,46,15,1,0,-9,0,8.564205115284418,8.564205115284418,0,0,0,0,0,0,0,1,1,0,.0939072702008708,0,0,0,57.16,56.15,6,1,0,0,10,4,1,383,0,0,0 +13881,17009,30981,-9,-9,-9,1,1,0,55,3,1,2,0,2,-9,8,3,1,1,8.667450000518391,8.743406752519268,0,4,0,-9,0,1,0,-821.5573840227265,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,18,7,38,48,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.25,15.6,3,1,0,1,7,4,0,510,0,0,0 +13881,17010,30982,-9,30984,30983,6,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1075.022237286117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,7,3,0,768,0,0,0 +13881,17010,30983,30984,30981,-9,2,1,1,21,1,1,2,0,2,-9,2,1,0,4,8.017474331086605,8.298484449854252,0,2,0,-9,4,0,-1,6.135743715618842,0,1,0,22,2,4,1,2,-9,2019,1,5,10,0,61,60,15,1,0,1,0,6.040772378822615,6.040772378822615,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,7,1,0,0,7,3,0,768,0,0,0 +13881,17010,30984,30983,-9,-9,5,1,0,22,1,1,2,0,2,-9,2,1,0,4,6.940522498864043,7.10012236984922,0,2,0,-9,4,0,1,-66.20875003350207,0,1,1,21,2,4,1,-9,-9,2019,1,2,19,8,16,0,15,1,8,1,0,7.280371489694308,7.280371489694308,0,0,0,0,0,0,0,1,0,1,0,0,13.92828728488663,3,27.06,57.72,7,1,0,0,7,3,0,768,0,0,0 +13882,17011,30985,-9,-9,-9,1,1,0,54,3,0,2,0,1,-9,2,1,0,5,2.576170639484267,6.694395587792794,6.872075576414277,4,0,0,0,-9,0,-1037.527731199493,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,10,5,15,1,2,-9,0,.1417020336124296,.1417020336124296,0,0,0,0,0,0,0,1,1,0,6.972079665955789,0,0,0,55.09,55.87,6,1,0,0,12,2,1,300.3333333333333,0,0,0 +13882,17011,30986,-9,30985,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-868.1584403247502,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,24,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.47,60.56,5,1,0,0,12,2,1,300.3333333333333,0,0,0 +13882,17011,30987,-9,30985,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-892.1819425964158,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,2,1,300.3333333333333,0,0,0 +13883,17012,30988,-9,30990,30991,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.6302777633894,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1109.5,0,0,0 +13883,17012,30989,-9,30990,30991,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.2972897766953,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,1109.5,0,0,0 +13883,17012,30990,30991,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,2,8.083136569730346,8.285154240672535,0,2,0,-9,10,0,2,63.14866518044046,0,0,1,37,1,4,1,-9,2,2019,1,2,17,4,38,14,15,1,4,1,0,9.239106223388564,9.239106223388564,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.1,46.97,4,1,0,0,12,4,1,1109.5,0,0,0 +13883,17012,30991,30990,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,4,8.833775060700729,8.555492941258263,0,2,0,-9,10,0,-2,31.25442096898687,0,0,0,39,2,2,1,-9,-9,2019,1,1,11,0,49,45,15,1,0,1,0,12.73179146604573,12.73179146604573,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,6,1,0,0,12,4,1,1109.5,0,0,0 +13884,17013,30992,-9,-9,-9,1,1,0,40,3,0,3,0,1,-9,2,1,0,4,7.875596881842635,7.717759976769741,0,4,0,0,0,-9,0,-866.3948753261124,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,20,8,18,19,15,1,8,-9,0,12.26849157698198,12.26849157698198,0,0,0,0,0,0,0,1,1,0,0,0,44.81077167481281,3,45.91,59.89,2,1,0,0,9,2,1,2382.5,0,0,0 +13884,17013,30993,-9,30992,-9,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-976.7086454915589,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,2,1,2382.5,0,0,0 +13885,17014,30994,30995,-9,-9,1,1,1,48,1,0,1,0,1,-9,2,1,0,4,9.636063224245266,9.741074816654887,0,2,0,-9,8,0,2,108.4684094432068,0,0,0,46,2,5,1,2,2,2019,1,2,7,0,45,45,15,1,0,1,0,26.86847351305827,26.86847351305827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,8,5,1,440.6666666666667,0,0,0 +13885,17014,30995,30994,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,5,8.860751918646029,8.827025558192874,0,2,0,-9,8,0,-2,17.26287112629927,0,0,0,48,1,4,1,2,2,2019,1,1,10,1,44,30,15,1,1,1,0,17.73729253137586,17.73729253137586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,8,5,1,440.6666666666667,0,0,0 +13885,17014,30996,-9,30995,30994,3,1,1,15,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-967.902824595344,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,5,1,0,0,8,5,1,440.6666666666667,0,0,0 +13886,17015,30997,30998,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,5.271977588850369,5.541153899055754,1,0,-9,53,0,-2,-45.11702729787984,0,0,0,74,3,2,3,3,3,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.262220427381874,5.229780179071604,3.385546291483361,3,41.37,25.98,6,1,0,0,1,2,1,1244,0,0,0 +13886,17015,30998,30997,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,7.269143458201885,7.509969313482426,1,0,-9,53,0,2,-47.83530901643432,0,0,0,72,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.27159548365039,7.176796373261988,6.235626798494358,3,51.01,39.19,5,1,0,0,1,2,1,1244,0,0,0 +13887,17016,30999,31000,-9,-9,1,1,1,60,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,40,0,1,-53.09123189219482,0,0,0,59,2,3,1,-9,-9,2019,3,2,5,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.566260044741452,0,0,0,51.33,43.71,6,1,0,0,10,3,1,545,0,0,0 +13887,17016,31000,30999,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.074616152750306,7.514755806099499,0,1,0,-9,40,0,-1,58.33448129036361,0,0,0,60,3,3,3,-9,-9,2019,2,1,3,1,21,23,15,1,1,4,0,18.61884376751053,18.61884376751053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,20.06,7,1,0,0,10,3,1,545,0,0,0 +13888,17017,31001,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,4,0,6.805299301939676,6.949881486383469,3,0,0,0,-9,0,-897.3881454143899,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.859336385765952,0,0,52.08,55.93,7,2,0,0,8,2,1,398,0,0,0 +13889,17018,31002,31003,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,6.046118948409201,6.102938119873647,1,0,-9,47,0,4,108.600143997309,0,0,0,66,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.969924931157133,6.471647523746396,0,0,48.69,42.21,7,1,0,0,2,2,1,258,0,0,0 +13889,17018,31003,31002,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,5.930938278885224,6.049683720653558,1,0,-9,49,0,-4,-124.8517769890873,0,0,0,70,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.418344275115714,6.066956339840454,0,0,58.33,47.36,6,1,0,0,2,2,1,258,0,0,0 +13890,17019,31004,31005,-9,-9,1,1,1,68,1,0,0,0,2,-9,1,1,0,3,8.603376635664128,9.038506754080419,0,1,0,-9,44,0,1,-96.11541211638412,0,0,0,67,2,3,3,-9,2,2019,2,2,8,0,20,30,15,1,0,4,0,42.24207578886017,42.24207578886017,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,9,5,1,342.5,0,0,0 +13890,17019,31005,31004,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,44,0,-1,-9.544828835385626,0,0,0,68,2,3,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.74,44.11,6,1,0,0,9,5,1,342.5,0,0,0 +13891,17020,31006,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,3,6.752871861826928,7.086324090982751,0,3,0,0,0,-9,0,-915.9999580850517,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,60,15,15,1,2,-9,0,1.742539143181125,1.742539143181125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,4,3,0,0,5,2,0,1354,0,0,0 +13892,17021,31007,-9,31009,-9,2,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1046.334360020857,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,562,0,0,0 +13892,17021,31008,-9,31009,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1249.626603620251,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,1,0,562,0,0,0 +13892,17021,31009,-9,-9,-9,1,1,0,26,2,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,-9,0,0,0,-1007.439480866119,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.53,53.36,4,1,0,0,13,1,0,562,0,0,0 +13893,17022,31010,31012,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.661778265020311,8.573079602833335,0,2,0,-9,6,0,2,-52.4626971033911,0,0,0,42,1,4,1,2,1,2019,1,2,11,0,36,0,15,1,0,1,0,21.25865170239209,21.25865170239209,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,6,1,0,0,12,5,1,286.25,0,0,0 +13893,17022,31011,-9,31012,31010,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1075.627214566107,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,5,1,286.25,0,0,0 +13893,17022,31012,31010,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.439194294512406,8.462173396116984,0,2,0,-9,6,0,-2,-101.5677889783529,0,0,1,44,2,4,1,2,1,2019,1,1,18,6,39,0,15,1,6,1,0,12.88478566955931,12.88478566955931,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,61.24,5,1,0,0,12,5,1,286.25,0,0,0 +13893,17022,31013,-9,31012,31010,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.9448519272785,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,5,1,286.25,0,0,0 +13894,17023,31014,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,3,7.636979923409028,7.939792198748831,0,3,0,0,0,-9,0,-1114.769039530973,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,63,15,15,1,4,-9,0,4.361300834145805,4.361300834145805,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.95,54.89,4,1,0,1,11,3,0,335,0,0,0 +13895,17024,31015,31016,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-3,-91.65270963942447,0,0,0,79,1,3,3,2,1,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,4.773697724909791,0,0,0,0,1,1,0,0,0,0,0,58.07,46.29,6,1,0,0,4,3,1,470,0,0,0 +13895,17024,31016,31015,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,7.868262787731287,8.037379726217862,1,0,-9,56,0,3,49.14928150815201,0,0,0,76,1,3,3,-9,3,2019,4,1,6,0,0,22,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.671572616188633,0,0,58.32,50.22,6,1,0,0,4,3,1,470,0,0,0 +13896,17025,31017,31018,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,5,8.256781644656442,8.147223443770095,0,1,0,-9,8,0,-1,52.46951030712333,0,0,0,48,3,3,1,-9,-9,2019,1,1,9,0,50,50,15,1,0,1,0,8.943690517078503,8.943690517078503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,4,1,0,0,11,4,0,565,0,0,0 +13896,17025,31018,31017,-9,-9,1,1,0,48,1,0,0,0,3,-9,2,1,0,3,6.421179449520445,6.519156118744883,0,1,0,-9,8,0,1,-32.01760544258413,0,0,0,47,3,5,1,-9,-9,2019,1,2,7,0,8,8,15,1,0,1,0,11.58420244078703,11.58420244078703,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,1,11,4,0,565,0,0,0 +13896,17026,31019,-9,31018,31017,3,1,0,18,2,0,0,1,2,0,7,2,0,4,4.668453260494065,4.785395396334295,0,3,0,0,0,-9,0,-950.7901360893572,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,2,1,0,0,11,2,0,630,0,0,0 +13897,17027,31020,31021,-9,-9,1,1,0,36,1,1,1,0,1,-9,2,1,0,2,7.761103719587799,7.583357022165254,0,2,0,-9,11,0,-2,68.4655893134484,0,0,1,38,1,4,1,1,1,2019,1,2,13,2,25,53,15,1,2,1,0,13.33233142134136,13.33233142134136,0,0,0,0,0,0,0,0,0,0,1.323177061470643,0,0,0,41.46,55.58,5,1,0,0,7,5,0,721.3333333333334,0,0,0 +13897,17027,31021,31020,-9,-9,2,1,1,38,1,1,1,0,1,-9,2,1,0,4,9.707510558334842,9.732728749757397,0,2,0,-9,11,0,2,-75.71545320636154,0,0,0,36,1,2,1,2,1,2019,1,1,11,0,50,50,15,1,0,1,0,40.76345901302705,40.76345901302705,0,0,0,0,0,0,0,0,0,0,5.438952241018491,0,0,0,49.35,59.64,6,1,0,0,7,5,0,721.3333333333334,0,0,0 +13897,17027,31022,-9,31020,31021,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.1884743786247,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,5,1,0,0,7,5,0,721.3333333333334,0,0,0 +13898,17028,31023,31025,-9,-9,1,1,0,55,1,0,1,0,2,-9,1,1,0,4,5.117806606000188,4.620567663341451,0,2,0,-9,33,0,-7,.4895420533264794,0,0,0,62,1,3,1,1,2,2019,1,2,8,0,40,50,15,1,0,1,0,.3648014606483361,.3648014606483361,0,0,0,0,0,0,0,1,1,0,8.556346487841111,0,4.889880443769881,3,55.44,52.99,6,1,0,0,10,5,1,748.3333333333334,0,0,0 +13898,17028,31024,-9,31023,31025,4,1,1,16,2,0,1,1,2,-9,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1023.236057581965,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,27,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.27,46.39,2,1,0,0,10,5,1,748.3333333333334,0,0,0 +13898,17028,31025,31023,-9,-9,2,1,1,62,1,0,1,0,1,-9,1,1,0,3,9.406199676569056,9.572434307901602,0,2,0,-9,8,0,7,30.53579462289981,0,0,0,55,2,4,1,2,1,2019,1,1,10,0,70,97,15,1,1,1,0,27.15616562550982,27.15616562550982,0,0,0,0,0,0,0,1,1,0,2.378241846566783,0,0,0,51,48,5,1,0,0,10,5,1,748.3333333333334,0,0,0 +13898,17029,31026,-9,31023,31025,3,1,0,18,2,0,1,0,2,1,2,1,0,4,6.666642991211832,6.860813335542978,0,3,0,0,0,-9,0,-1141.78320038615,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,60,0,15,1,2,-9,1,1.384884749661206,1.384884749661206,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,10,2,1,1002,0,0,0 +13899,17030,31027,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,3,0,6.768481847717579,6.583791996498261,3,0,0,0,-9,0,-1005.596176238467,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.252932327981573,0,0,57.51,42.37,6,1,0,0,10,2,1,511,0,0,0 +13900,17031,31028,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,3,0,7.273887171955073,6.880672472304081,3,0,0,0,-9,0,-1000.45081300807,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,30.00467999706368,0,0,0,1,1,0,2.743448692071901,7.150981185391207,0,0,52,48,5,1,0,0,13,2,1,781,0,0,0 +13901,17032,31029,-9,31032,31030,5,1,0,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-883.775424051923,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,3,0,0,8,2,1,551,0,0,0 +13901,17032,31030,31032,-9,-9,1,1,1,49,1,0,4,0,1,-9,2,1,0,3,7.956715667721792,7.792542674434586,0,2,0,-9,22,0,1,-60.85154751997846,0,0,0,48,3,5,3,3,1,2019,2,2,12,1,35,31,15,1,1,3,0,8.217192929435608,8.217192929435608,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,4,3,0,0,8,2,1,551,0,0,0 +13901,17032,31031,-9,31032,31030,6,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.267929018478,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,1,551,0,0,0 +13901,17032,31032,31030,-9,-9,2,1,0,48,1,0,4,0,3,-9,3,3,0,5,0,0,0,2,0,-9,22,0,-1,35.15297016089187,0,0,0,49,1,3,1,3,1,2019,3,1,16,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,74.57242022802717,3,43.57,62.68,5,3,1,0,8,2,1,551,0,0,0 +13901,17032,31033,-9,31032,31030,4,1,1,16,2,0,4,1,3,-9,7,2,0,1,0,0,0,2,0,0,0,-9,0,-1023.865583089333,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.56,33.38,2,3,0,0,8,2,1,551,0,0,0 +13901,17033,31034,-9,31032,31030,3,1,0,18,2,0,4,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-884.6279980976906,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.75,66.17,4,3,0,0,8,2,1,146,0,0,0 +13902,17034,31035,31036,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,3,0,6.078153349860321,5.674120288878829,1,0,-9,59,0,1,-62.76383331013816,0,0,0,79,2,4,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.158719914963509,6.075456627537474,1.590536512411709,3,43.71,56.91,2,1,0,0,4,2,1,2581,0,0,0 +13902,17034,31036,31035,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,59,0,-1,101.8661399921597,0,0,0,80,2,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.167142887898316,3,46.16,53.09,1,1,0,0,4,2,1,2581,0,0,0 +13902,17035,31037,-9,31036,31035,3,1,0,45,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-928.2488057133096,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.938065807457377,0,0,0,25.82,33.12,2,1,0,0,4,1,1,747,0,0,0 +13903,17036,31038,-9,-9,-9,1,1,1,33,2,0,0,0,1,-9,2,1,0,2,7.921087993410676,8.116185615684048,0,3,0,0,0,-9,0,-883.5910905970956,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,35,0,15,1,0,-9,0,9.568219144422951,9.568219144422951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.32,54.65,6,1,0,0,7,4,0,365,0,0,0 +13904,17037,31039,31040,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,3.53971287736458,3.292258682966038,1,0,-9,3,0,6,54.44794855987755,0,0,0,59,2,2,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.58843835057319,0,0,58.98,15.36,5,1,0,0,2,4,0,485.5,0,0,0 +13904,17037,31040,31039,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,2,8.28290998470985,8.359193596972537,5.58056190254636,1,0,-9,3,0,-6,112.8098756862801,0,0,0,65,2,2,3,3,3,2019,2,2,23,8,98,60,15,1,8,4,0,5.412304054542913,5.412304054542913,0,0,0,0,0,0,0,1,1,0,0,5.691891001465024,1.022745883455833,2,41.95,22.45,3,1,0,0,2,4,0,485.5,0,0,0 +13905,17038,31041,31042,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,2,8.436603571214819,8.901102795774083,0,1,0,-9,14,0,-1,-111.8163299263656,0,0,0,56,2,5,1,2,3,2019,1,2,18,6,45,42,15,1,6,1,0,17.6720895360565,17.6720895360565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,41.82,3,1,0,0,10,5,1,433.5,0,0,0 +13905,17038,31042,31041,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,5,8.286297860675445,8.369696110519008,0,1,0,-9,7,0,1,-12.15536320839878,0,0,0,55,1,2,1,-9,3,2019,1,1,13,1,60,50,15,1,1,1,0,7.666544624733121,7.666544624733121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.71,67.3,4,1,0,0,10,5,1,433.5,0,0,0 +13906,17039,31043,31044,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.392963870886092,7.400836159718885,5.081188940232029,1,0,-9,40,0,-4,39.26267676235249,0,0,0,64,2,3,1,-9,2,2019,1,1,11,0,20,21,15,1,0,1,0,13.71457699218971,13.71457699218971,0,0,0,0,0,0,0,1,1,0,7.85242872929462,4.802216752188609,0,0,58.08,40.76,6,1,0,0,1,4,1,733.5,0,0,0 +13906,17039,31044,31043,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,3,8.192988879265211,8.451031750449843,0,1,0,-9,40,0,4,19.27555887746359,0,0,0,60,2,3,1,3,2,2019,1,2,6,0,40,40,15,1,0,1,0,14.17910562513822,14.17910562513822,0,0,0,0,0,0,0,1,1,0,.780466890077441,0,11.63485603959731,3,62.66,52.4,7,1,0,0,1,4,1,733.5,0,0,0 +13906,17040,31045,-9,31043,31044,3,1,1,31,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1109.081774455119,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.741046567626987,0,0,0,31.7,50.64,2,1,1,0,1,1,1,198,0,0,0 +13907,17041,31046,31047,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,2,8.944602697511359,8.750815449801715,0,1,0,-9,25,0,10,-61.58345100976773,0,0,0,54,1,4,1,2,2,2019,1,1,11,0,37,35,15,1,0,1,0,13.99165037917895,13.99165037917895,0,0,0,0,0,0,0,0,0,0,0,0,10.89761680933591,3,59.17,33.75,6,1,0,0,13,5,1,949,0,0,0 +13907,17041,31047,31046,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,8.663135424427134,8.618334430176889,0,1,0,-9,27,0,-10,4.970155185881105,0,0,0,64,1,2,1,3,3,2019,1,2,10,0,40,45,15,1,0,1,0,16.89418420641767,16.89418420641767,0,0,0,0,0,0,0,0,0,0,0,0,15.03053072615681,3,57.89,43.46,5,1,0,0,13,5,1,949,0,0,0 +13907,17042,31048,-9,31046,31047,3,1,0,20,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-837.1651021869711,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,13,1,1,862,0,0,0 +13908,17043,31049,31050,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.157555087645651,8.061691412677664,6.51157371493809,1,0,-9,1,-9,2,-9.585391592044839,-9,0,0,56,1,4,1,2,2,2019,1,2,9,0,41,0,15,1,0,1,0,10.2103099130603,10.2103099130603,0,0,0,0,0,0,0,0,0,0,0,6.913271506204307,0,0,53.78,48.41,6,1,0,0,4,4,1,726.5,0,0,0 +13908,17043,31050,31049,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,4,7.065165538408126,6.867832837125879,0,1,0,-9,1,-9,-2,79.5458329479692,-9,0,0,58,2,3,1,-9,-9,2019,1,1,12,0,38,0,15,1,0,1,0,2.948391780443102,2.948391780443102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,5,1,0,0,4,4,1,726.5,0,0,0 +13909,17044,31051,31054,-9,-9,2,1,0,44,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,8,0,-6,33.76842576532016,0,0,1,50,2,3,1,2,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,12,2,1,245,0,0,0 +13909,17044,31052,-9,31051,31054,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-998.8568983381663,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,245,0,0,0 +13909,17044,31053,-9,31051,31054,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.798863047788,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,1,245,0,0,0 +13909,17044,31054,31051,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,3,7.750420071659087,7.725667066915682,0,2,0,-9,8,0,6,76.95606592104532,0,0,0,44,1,4,3,2,3,2019,2,2,11,1,30,40,15,1,1,3,0,6.767614419806801,6.767614419806801,0,0,0,0,0,0,0,1,1,0,0,0,72.65532432781573,1,42.38,52.48,4,1,0,0,12,2,1,245,0,0,0 +13910,17045,31055,31058,-9,-9,4,1,1,36,1,0,2,0,2,-9,2,1,0,2,8.069572393843305,7.90280829019467,0,2,0,-9,3,0,5,43.78625281720168,0,0,0,31,2,2,1,-9,-9,2019,1,1,16,5,42,40,15,1,5,1,0,11.12342887149862,11.12342887149862,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.81,36.04,5,3,0,1,8,3,0,1230.25,0,0,0 +13910,17045,31056,-9,31058,31055,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.566762379854,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,3,0,1230.25,0,0,0 +13910,17045,31057,-9,31058,31055,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.45879320023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,3,0,1230.25,0,0,0 +13910,17045,31058,31055,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,2,7.366416224030743,7.556935617136501,0,2,0,-9,3,0,-5,89.36157957116072,0,0,1,36,2,2,1,2,2,2019,1,4,11,0,27,15,15,1,0,1,0,5.912331337164576,5.912331337164576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,48.18,6,3,0,1,8,3,0,1230.25,0,0,0 +13911,17046,31059,31060,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,4,9.594530429854188,9.712780441896095,0,1,0,-9,29,0,-1,0,0,0,0,56,2,4,1,1,1,2019,1,1,14,5,35,20,15,1,5,1,0,41.43464844771623,41.43464844771623,0,0,0,0,0,0,0,0,0,0,4.499335332754967,0,0,0,42.05,58.8,5,1,0,0,8,5,1,300.5,0,0,0 +13911,17046,31060,31059,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,9.909768581027285,9.5844521046489,0,1,0,-9,29,0,1,0,-9,0,0,55,1,4,1,2,3,2019,1,2,23,11,88,0,15,1,11,1,0,18.58387490307346,18.58387490307346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.7,64.33,4,1,0,0,8,5,1,300.5,0,0,0 +13911,17047,31061,-9,31059,31060,3,1,0,23,3,0,0,1,2,-9,7,2,0,5,7.440897843322908,7.999496712077936,7.391554622443761,3,0,0,0,-9,0,-1078.682718584206,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,1,6,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,7.580906487055578,0,0,0,36.43,57.42,5,1,0,0,8,4,1,361,0,0,0 +13912,17048,31062,31063,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,3,8.33534551486459,8.773064813104344,0,1,0,1,1,-9,-2,-101.3953378064926,0,1,1,27,1,2,1,2,2,2019,1,2,12,0,45,44,15,1,0,1,0,9.524225408154406,9.524225408154406,0,0,0,0,0,0,0,0,0,0,3.10204192847709,0,0,0,41.23,59.35,5,1,0,0,9,4,1,470,0,0,0 +13912,17048,31063,31062,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,2,7.25672834004563,7.122387488515148,0,1,0,-9,1,-9,2,-11.77270025057925,-9,1,0,25,1,3,1,-9,-9,2019,1,1,12,0,31,0,15,1,0,1,0,4.71180916109357,4.71180916109357,0,0,0,0,0,0,0,0,0,0,1.870706910905551,0,0,0,37.6,54.5,5,1,0,0,9,4,1,470,0,0,0 +13913,17049,31064,31065,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.695295624555274,7.55930476808188,0,1,0,-9,7,0,0,25.90401435075735,0,0,0,51,2,3,1,2,2,2019,1,2,9,0,32,30,15,1,0,1,0,8.226047439884141,8.226047439884141,0,0,0,0,0,0,0,0,0,0,0,0,25.18379647045801,3,48.28,60.18,6,1,0,0,13,4,1,341,0,0,0 +13913,17049,31065,31064,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.744708137092664,8.436595534416195,0,1,0,-9,7,0,0,-70.27220951978464,0,0,0,51,2,4,1,-9,-9,2019,1,1,8,0,36,60,15,1,0,1,0,18.39155064527966,18.39155064527966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.1,52.62,6,1,0,0,13,4,1,341,0,0,0 +13914,17050,31066,31067,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,7.789843961549179,7.63165401809062,1,0,-9,52,0,-5,70.44594185436199,0,0,0,76,1,5,3,2,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.104033678055718,7.78482117780413,0,0,52.23,55.6,6,1,0,0,7,5,1,745,0,0,0 +13914,17050,31067,31066,-9,-9,1,1,1,76,1,0,0,0,1,-9,4,3,0,5,0,8.864028776266206,8.918346031342217,1,0,-9,53,0,5,138.7882344988946,0,0,0,71,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.91772733783097,9.220455694486439,0,3,62.39,56.71,7,1,0,0,7,5,1,745,0,0,0 +13915,17051,31068,31069,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,45,0,-1,-19.84158707390035,0,0,0,68,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,2.829629504309877,0,0,0,0,1,1,0,6.064170307652495,0,0,0,60.13,49.27,7,1,0,0,2,3,1,1003.5,0,0,0 +13915,17051,31069,31068,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,4,0,7.768809719325064,8.05883087530716,1,0,-9,45,0,1,-67.992457321326,0,0,0,67,2,4,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.088185393733168,7.600737117766352,0,0,57.16,56.15,6,1,0,0,2,3,1,1003.5,0,0,0 +13916,17052,31070,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1052.246162167576,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,6.339762051309549,3,57.11,41.24,6,1,0,0,9,1,0,170,0,0,0 +13917,17053,31071,31072,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,3,6.799549173293398,7.043273500016224,0,1,0,-9,26,0,3,-29.51180150946286,0,0,0,49,1,4,1,2,2,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.196030585482331,0,0,0,53.14,45.74,6,1,0,0,4,4,1,501,0,0,0 +13917,17053,31072,31071,-9,-9,2,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.440576770688534,8.403228720187641,0,1,0,-9,22,0,-3,-31.68804525724773,0,0,0,52,2,3,1,2,3,2019,1,1,6,0,37,37,15,1,0,1,0,12.26103715202597,12.26103715202597,0,0,0,0,0,0,0,0,0,0,2.996529439567436,0,0,0,57.16,56.15,6,2,0,0,4,4,1,501,0,0,0 +13918,17054,31073,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,8.149089768955836,7.970555654323516,0,3,0,-9,0,-9,0,-1025.584827964554,-9,1,1,-9,-9,-9,-9,3,1,2019,-9,0,10,2,32,0,15,1,2,-9,1,10.61839819576218,10.61839819576218,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,4,1,0,0,10,4,1,1209,0,0,0 +13918,17055,31074,-9,-9,-9,2,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.611861956864201,7.462817916633224,0,3,0,-9,0,-9,0,-949.4320630274914,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,47,0,15,1,0,-9,1,4.708016080434653,4.708016080434653,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,10,3,1,3547,0,0,0 +13919,17056,31075,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,2,1,0,5,8.803664428780198,8.578325942839188,0,3,0,-9,0,-9,0,-973.1270869849748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,0,15,1,0,-9,0,14.07783572305116,14.07783572305116,0,0,0,0,0,0,0,0,0,0,5.597873545483468,0,0,0,48.18,61.8,6,1,0,0,1,5,0,2267,0,0,0 +13920,17057,31076,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,3,8.494735967525109,8.109587003381893,0,3,0,0,0,-9,0,-1014.157690015707,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,1,51,48,15,1,1,-9,0,12.26504862190635,12.26504862190635,0,0,0,0,0,0,0,1,1,0,7.685175512234246,0,0,0,57.34,47.92,4,1,0,0,9,4,1,1312,0,0,0 +13921,17058,31077,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,1,1,0,5,6.04059815130397,6.221457638284527,0,1,0,-9,10,0,0,-136.5391974646101,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,8,0,7,10,15,1,0,-9,0,9.278239707395276,9.278239707395276,0,0,0,0,0,0,0,0,0,0,3.363033424326374,0,0,0,54.1,59.11,7,1,0,0,10,5,1,112,0,0,0 +13921,17059,31078,-9,-9,-9,2,1,1,52,2,0,0,0,1,-9,2,1,0,4,9.05202509932978,9.024762485472541,0,1,0,-9,10,0,0,6.483915190623748,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,6,0,12,56,15,1,0,-9,0,81.06744519684791,81.06744519684791,0,0,0,0,0,0,0,0,0,0,4.05574873263511,0,0,0,57.16,56.15,7,1,0,0,10,5,1,1388,0,0,0 +13922,17060,31079,-9,-9,-9,1,1,1,92,2,0,0,0,3,-9,4,3,0,5,0,7.147265571332308,6.997832744187215,3,0,0,0,-9,0,-940.9109252162565,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.927167672156588,0,0,60.02,56.42,6,1,0,0,6,2,1,892,0,0,0 +13923,17061,31080,-9,-9,-9,1,1,1,36,2,0,0,0,1,-9,1,1,0,3,8.484678755110888,8.466692995017825,0,3,0,0,0,-9,0,-904.6258517773609,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,20,34,15,1,0,-9,0,26.47308345784924,26.47308345784924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.99,51.88,4,1,0,0,2,4,1,242,0,0,0 +13924,17062,31081,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,2,0,5.826107566445835,5.639874708021424,3,0,0,0,-9,0,-954.0736557079194,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.560961463198919,0,0,57.75,38.61,5,1,0,0,2,2,1,938,0,0,0 +13925,17063,31082,-9,-9,-9,1,1,0,58,3,0,0,0,1,-9,1,1,0,3,8.73572023262936,9.070120864586835,0,3,0,-9,0,1,0,-956.4882900232703,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,98,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.765039853586973,0,124.5133127851193,3,57.33,53.46,6,1,0,0,11,5,1,492,0,0,0 +13925,17064,31083,-9,31082,-9,4,1,1,28,2,0,0,0,1,-9,1,1,0,4,7.310749492124848,7.389232601607124,0,3,0,0,0,-9,0,-961.7675630003704,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,30,35,15,1,0,-9,1,6.418723848638092,6.418723848638092,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,6,1,0,0,11,3,1,529,0,0,0 +13925,17065,31084,-9,-9,-9,3,1,0,48,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1027.493529326687,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.39,54.22,7,1,0,0,11,1,1,137,0,0,0 +13925,17066,31085,-9,-9,-9,2,1,1,25,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-959.8639190725155,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,7,1,0,0,11,1,1,903,0,0,0 +13926,17067,31086,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,4.982352917976674,5.083689749139748,3,0,0,0,-9,0,-1053.139495734317,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,10.95937259023206,0,12.79288317735937,0,1,1,0,0,5.343176724636647,0,0,51,46,6,1,0,0,11,2,0,347,0,0,0 +13927,17068,31087,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,3,9.166482106151966,8.738778804514959,0,3,0,0,0,-9,0,-874.5856990668622,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,35,0,15,1,0,-9,0,25.60974458444575,25.60974458444575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,2,1,0,0,12,5,1,1941,0,0,0 +13928,17069,31088,31089,31090,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,4,8.95868158823302,9.30810525079848,0,1,0,-9,32,0,2,86.88680674775561,0,0,0,58,2,5,1,3,2,2019,1,2,8,0,70,70,15,1,0,1,0,14.25991449993836,14.25991449993836,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,3,0,0,7,5,1,194.5,0,0,0 +13928,17069,31089,31088,-9,-9,2,1,0,58,1,0,0,0,2,-9,1,1,0,5,6.398967260169251,6.506540735416388,0,1,0,-9,2,0,-2,31.76329432970671,0,0,0,60,1,4,1,3,3,2019,1,1,8,0,7,45,15,1,0,1,0,7.609624493065164,7.609624493065164,0,0,0,0,0,0,0,1,1,0,5.354342020084636,0,0,0,58.05,54.52,7,3,0,0,7,5,1,194.5,0,0,0 +13928,17070,31090,-9,-9,-9,3,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1018.289409376238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,3,0,0,7,1,1,1110,0,0,0 +13928,17071,31091,-9,31089,31088,4,1,1,30,3,0,0,0,1,-9,2,1,0,4,8.327423540992102,8.763271127455454,0,3,0,0,0,-9,0,-1079.565936791246,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,70,63,15,1,1,-9,1,9.116108802845002,9.116108802845002,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,7,5,1,550,0,0,0 +13929,17072,31092,31093,-9,-9,1,1,1,44,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,1,-9,-2,0,-9,0,0,46,3,1,3,2,3,2019,4,2,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,124.4828709385788,1,48.68,53.73,4,1,1,0,6,1,0,385.5,0,0,0 +13929,17072,31093,31092,-9,-9,2,1,0,46,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,1,-9,2,0,-9,0,0,44,2,2,3,3,3,2019,4,1,31,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.61,21.77,6,1,0,0,6,1,0,385.5,0,0,0 +13930,17073,31094,31098,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,5,7.182374203710411,7.400168645685285,0,2,0,-9,2,0,0,-58.80676109089596,0,0,1,44,3,5,1,3,3,2019,1,2,12,1,20,28,15,1,1,1,0,6.514552718522294,6.514552718522294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.9,47.09,5,3,0,0,8,3,1,492,0,0,0 +13930,17073,31095,-9,31094,31098,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.125022899847,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,492,0,0,0 +13930,17073,31096,-9,31094,31098,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.378182514322,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,3,1,492,0,0,0 +13930,17073,31097,-9,31094,31098,4,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.5668447853959,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,3,1,492,0,0,0 +13930,17073,31098,31094,-9,-9,2,1,1,44,1,0,3,0,3,-9,1,1,0,5,8.22159512941446,8.916091329275268,0,2,0,-9,2,0,9,-.6430490686146475,0,0,0,35,2,5,1,3,1,2019,1,1,12,3,50,40,15,1,3,1,0,10.78351873600621,10.78351873600621,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,40.91,6,3,0,0,8,3,1,492,0,0,0 +13931,17074,31099,31100,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,3,8.444587067062708,8.294729083157904,0,1,0,-9,8,0,-5,-45.95735945174005,0,0,1,42,2,4,1,-9,-9,2019,1,1,12,0,46,43,15,1,0,1,0,11.74896348228684,11.74896348228684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,44.62,5,1,0,0,9,5,1,809.5,0,0,0 +13931,17074,31100,31099,-9,-9,1,1,1,42,1,0,0,0,2,-9,2,1,0,4,9.013892086871044,9.115954968441834,0,1,0,-9,8,0,5,50.47413665433577,0,0,0,37,2,3,1,2,2,2019,1,2,12,0,50,55,15,1,0,1,0,17.43168186492962,17.43168186492962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,1,0,0,9,5,1,809.5,0,0,0 +13932,17075,31101,31102,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,1,0,6.309815989242651,6.110412315849179,1,0,-9,55,0,-2,22.18821210701429,0,0,0,73,2,2,3,-9,2,2019,4,2,15,4,0,0,15,4,4,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.096533178075172,0,0,38.9,27.9,3,1,0,0,9,3,1,678,0,0,0 +13932,17075,31102,31101,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,8.21388039114848,8.065178789313098,1,0,-9,55,0,2,5.680867591728377,0,0,0,71,3,1,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,64.23542011600952,1,1,0,3.875601362650003,8.320302743492654,120.7208810137033,1,45.39,40.29,3,1,0,0,9,3,1,678,0,0,0 +13933,17076,31103,31104,-9,-9,1,1,1,42,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,22,0,-1,-76.02898673004155,0,0,0,43,2,4,1,3,1,2019,3,2,18,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.47,52.37,5,1,1,0,2,4,1,633.5,0,0,0 +13933,17076,31104,31103,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,4,8.429322170312208,8.250340173802295,0,1,0,-9,22,0,1,97.20861287042548,0,0,1,42,2,3,3,2,2,2019,2,1,15,5,46,50,15,1,5,3,0,10.23174376437818,10.23174376437818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,55.8,6,1,0,0,2,4,1,633.5,0,0,0 +13934,17077,31105,31106,-9,-9,2,1,0,47,1,0,1,0,3,-9,2,1,0,3,8.579791414834363,8.359580223232228,0,2,0,-9,21,0,-14,-70.80035564468618,0,0,0,61,2,2,1,2,3,2019,1,1,8,0,46,53,15,1,0,1,0,13.05490931406866,13.05490931406866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,6,1,0,0,5,4,0,507.75,0,0,0 +13934,17077,31106,31105,-9,-9,1,1,1,61,1,0,1,0,2,-9,2,1,0,2,8.167915155779063,8.025188394682814,0,2,0,-9,21,0,14,-103.7231972468137,0,0,0,47,3,3,1,3,3,2019,1,2,24,12,48,48,15,1,12,1,0,7.199963009172157,7.199963009172157,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,34.34,3,1,0,0,5,4,0,507.75,0,0,0 +13934,17077,31107,-9,31105,31106,4,1,0,17,2,0,1,0,2,1,2,3,0,4,6.245078267125949,6.488919147859795,0,2,0,0,0,-9,0,-1007.65856407122,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,9,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,6,1,0,0,5,4,0,507.75,0,0,0 +13934,17077,31108,-9,31105,31106,5,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1083.030585012465,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,5,4,0,507.75,0,0,0 +13935,17078,31109,31110,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,38,0,-1,-34.53511548839234,0,0,0,56,3,3,1,3,3,2019,1,2,19,7,0,38,15,1,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.05,57.83,6,1,0,1,12,2,0,493.5,0,0,0 +13935,17078,31110,31109,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,3,7.541613977032587,7.548538007305885,0,1,0,-9,6,0,1,-14.47234810093848,0,0,0,55,3,3,1,-9,-9,2019,1,1,1,0,40,40,15,1,0,1,0,5.829785850809414,5.829785850809414,0,0,0,0,0,0,0,0,0,0,0,0,.4897992693490281,3,59.7,53.75,5,1,0,0,12,2,0,493.5,0,0,0 +13936,17079,31111,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,4,3,0,3,0,7.430527141631424,7.944729372640974,3,0,0,0,-9,0,-1043.684225580336,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.429769895540898,7.949973793761312,0,0,46.14,46.35,6,3,0,0,12,3,1,252,0,0,0 +13937,17080,31112,31113,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,5,8.883886858832888,8.719153059010878,0,1,0,-9,2,0,-7,-38.84580956430726,0,1,1,36,1,5,1,-9,-9,2019,1,1,8,0,50,37,15,1,0,1,0,15.47741442708857,15.47741442708857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,6,1,0,0,7,5,1,343,0,0,0 +13937,17080,31113,31112,-9,-9,1,1,1,36,1,0,0,0,1,-9,2,1,0,5,9.544881259962448,9.63224777338168,0,1,0,-9,2,0,7,115.5690444266575,0,0,0,29,2,5,1,1,1,2019,1,2,0,0,45,50,15,1,0,1,0,40.8809133312241,40.8809133312241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,7,5,1,343,0,0,0 +13938,17081,31114,-9,-9,-9,1,1,1,96,3,0,0,0,2,-9,4,3,0,1,0,6.866895582339481,7.230187292639184,3,0,0,0,-9,0,-1060.642525583502,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.018878252766465,0,0,30.75,36.5,2,1,0,0,11,3,1,962,0,0,0 +13939,17082,31115,-9,31116,31117,3,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-952.5341705030937,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,3,1,2289,0,0,0 +13939,17082,31116,31117,-9,-9,2,1,0,52,1,0,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,9,0,3,111.136502134459,0,0,0,49,3,2,1,1,1,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,58.02,6,1,0,0,2,3,1,2289,0,0,0 +13939,17082,31117,31116,-9,-9,1,1,1,49,1,0,1,0,3,-9,2,1,0,2,8.092237226474758,8.228842477543461,0,2,0,-9,9,0,-3,80.24525556774255,0,0,0,52,1,4,3,3,3,2019,2,2,12,3,40,40,15,1,3,3,0,9.832836738248448,9.832836738248448,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,40,4,1,0,1,2,3,1,2289,0,0,0 +13940,17083,31118,-9,-9,-9,1,1,1,44,3,0,0,0,2,-9,2,1,0,4,7.92886778618941,7.7504790053062,0,3,0,0,0,-9,0,-862.2361132317292,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,50,15,1,0,-9,0,6.304073152297505,6.304073152297505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,11,3,1,1916,0,0,0 +13941,17084,31119,31120,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,50,0,-1,-27.22795621058303,-9,0,0,78,3,4,3,2,1,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,0,2.667312309537988,0,2.428009226812645,0,0,1,1,0,4.650077957794196,0,0,0,32.96,36.55,4,1,0,0,8,2,1,715.5,0,0,0 +13941,17084,31120,31119,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,7.275083980674292,7.534841758157069,1,0,-9,50,0,1,-144.9665335399643,0,0,0,77,2,1,3,2,1,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.323188666570598,6.86989890208968,0,2,53.36,53.7,6,1,0,0,8,2,1,715.5,0,0,0 +13942,17085,31121,31122,-9,-9,2,1,1,48,1,0,3,0,1,-9,2,1,0,5,9.523420028389769,8.964098686966619,0,2,0,-9,6,0,6,-181.3077947498548,0,0,0,42,2,4,1,-9,-9,2019,1,1,6,1,37,39,15,1,1,1,0,42.21825152732059,42.21825152732059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,5,5,1,1395.5,0,0,0 +13942,17085,31122,31121,-9,-9,1,1,0,42,1,0,3,0,2,-9,2,1,0,4,7.318221053553644,7.397798844010855,0,2,0,-9,6,0,-6,-8.517958635912636,0,0,1,48,1,5,1,2,2,2019,1,2,5,0,30,17,15,1,0,1,0,8.045081436851975,8.045081436851975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,2,0,0,5,5,1,1395.5,0,0,0 +13942,17085,31123,-9,31122,31121,4,1,1,16,2,0,3,0,-9,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.222161016338,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,5,5,1,1395.5,0,0,0 +13942,17085,31124,-9,31122,31121,5,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.903896740602,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,5,5,1,1395.5,0,0,0 +13942,17086,31125,-9,31122,31121,3,1,0,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-966.6661760742207,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.29,52.15,6,1,0,0,5,5,1,266,0,0,0 +13943,17087,31126,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,1,1,0,5,0,0,0,1,0,-9,17,0,-2,-15.13993771524738,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,17,5,0,45,15,1,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.424146617353641,0,0,0,35.28,65.08,5,1,0,0,8,5,1,626,0,0,0 +13943,17088,31127,-9,-9,-9,2,1,1,52,2,0,0,0,1,-9,1,1,0,4,8.712798452623744,8.731099646601136,0,1,0,-9,5,0,2,-8.201441232450341,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,18,5,50,40,15,1,5,-9,0,12.98239824266589,12.98239824266589,0,0,0,0,0,0,0,0,0,0,4.829413241010061,0,0,0,48.13,54.98,3,1,0,0,8,5,1,424,0,0,0 +13944,17089,31128,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,1,4.136641906065383,5.727842177501364,5.378358298582321,3,0,0,0,-9,0,-1049.305715123122,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,15,0,15,1,11,-9,0,.4257959842409483,.4257959842409483,0,0,0,0,0,0,0,0,0,0,6.065493656844662,0,0,0,20.89,48.04,3,1,0,0,9,2,1,634,0,0,0 +13945,17090,31129,-9,-9,-9,1,1,1,76,3,0,0,0,1,-9,4,3,0,4,0,7.833916917988796,7.814090863124071,3,0,0,0,-9,0,-957.6686838584928,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,2.995159413026952,7.611852954408303,5.004964528656425,3,60.27,49.27,7,1,0,0,6,3,1,801,0,0,0 +13945,17091,31130,-9,-9,31129,2,1,1,48,2,0,0,0,2,-9,2,1,0,3,7.497666686071851,7.547353364977236,0,3,0,0,0,-9,0,-1006.504262163533,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,42,0,15,1,0,-9,1,5.363166677333246,5.363166677333246,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.02,43.9,6,1,0,0,6,3,1,660,0,0,0 +13946,17092,31131,31132,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,4,8.687583625782683,8.6313227704865,0,2,0,-9,24,0,-1,-37.86332480089816,0,0,1,44,1,4,1,2,2,2019,1,2,7,0,38,33,15,1,0,1,0,17.14294861059825,17.14294861059825,0,0,0,0,0,0,0,0,0,0,7.251346908753238,0,0,0,52.4,55.58,6,1,0,0,6,5,1,1760.666666666667,0,0,0 +13946,17092,31132,31131,-9,-9,2,1,1,44,1,0,1,0,1,-9,2,1,0,4,9.821270854454992,9.86570874262172,0,2,0,-9,24,0,1,26.00001279298181,0,0,0,43,2,4,1,2,2,2019,1,1,8,2,37,41,15,1,2,1,0,49.12933655835217,49.12933655835217,0,0,0,0,0,0,0,0,0,0,3.116281550344734,0,0,0,57.16,56.15,6,1,0,0,6,5,1,1760.666666666667,0,0,0 +13946,17092,31133,-9,31131,31132,3,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.8004253430221,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,6,5,1,1760.666666666667,0,0,0 +13947,17093,31134,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,3,8.059455754427805,7.872122186474796,0,3,0,0,0,-9,0,-892.5091553494289,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,11,0,39,38,15,1,0,-9,0,9.062984386652037,9.062984386652037,0,0,0,0,0,0,0,0,0,0,.5448816596046335,0,0,0,33.43,41.25,5,1,0,1,11,3,1,817,0,0,0 +13948,17094,31135,31136,-9,-9,2,1,1,38,1,0,0,0,2,-9,2,1,0,3,8.81689934374011,8.651087600456725,0,1,0,-9,2,0,6,-154.5739335871992,0,0,0,32,2,3,1,-9,-9,2019,1,1,18,6,55,50,15,1,6,1,0,16.31132782812551,16.31132782812551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.81,54.48,6,1,0,0,4,4,1,831.5,0,0,0 +13948,17094,31136,31135,-9,-9,1,1,0,32,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,2,0,-6,-36.03099157678818,0,0,1,38,2,3,1,-9,-9,2019,1,2,7,0,40,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,47.62,6,1,0,0,4,4,1,831.5,0,0,0 +13949,17095,31137,31139,31142,-9,1,1,1,37,1,1,3,0,1,-9,1,1,0,3,6.351483944464706,6.277485657270601,0,2,0,-9,13,0,1,-143.7612684765714,0,0,0,36,1,4,1,2,2,2019,1,2,15,6,40,84,15,1,6,1,0,1.23402490598863,1.23402490598863,0,0,0,0,0,0,0,1,0,1,6.635762230750285,0,5.028641658960908,3,50.81,45.35,2,3,0,1,8,2,1,660,0,0,0 +13949,17095,31138,-9,31139,31137,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1110.53292386297,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,3,0,0,8,2,1,660,0,0,0 +13949,17095,31139,31137,-9,-9,2,1,0,36,1,1,3,0,1,-9,1,1,0,4,5.632173997323644,5.347003094197904,0,2,0,-9,13,0,-1,-7.370016359300234,0,0,1,37,1,3,1,2,1,2019,1,1,10,0,8,0,15,1,0,1,0,3.719122945870464,3.719122945870464,0,0,0,0,0,0,0,1,0,1,0,0,3.329069722438057,3,43.97,54.03,4,3,0,0,8,2,1,660,0,0,0 +13949,17095,31140,-9,31139,31137,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.4775636825964,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,3,0,0,8,2,1,660,0,0,0 +13949,17095,31141,-9,31139,31137,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.982751127531,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,3,0,0,8,2,1,660,0,0,0 +13949,17096,31142,-9,-9,-9,6,1,0,73,3,1,3,0,2,-9,4,3,0,3,0,6.15363537195057,5.99061003397957,4,0,-9,0,-9,0,-933.9120301700586,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,35.50268612150538,0,6.868471767077141,14.35109082065688,0,254.1625671677509,1,0,1,0,6.205343110574158,0,0,51,46,6,3,0,0,8,2,1,283,0,0,0 +13950,17097,31143,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1019.765985781902,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,19,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.71,60.27,3,1,0,0,2,1,0,690,0,0,0 +13950,17097,31144,-9,31143,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1105.324758670262,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,690,0,0,0 +13951,17098,31145,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,4,9.095300179171989,9.040914952083684,0,3,0,0,0,-9,0,-1157.375869733102,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,0,15,1,0,-9,0,23.67704750775811,23.67704750775811,0,0,0,0,0,0,0,0,0,0,1.46391657412161,0,0,0,53.33,53.71,3,1,0,0,4,5,1,316,0,0,0 +13951,17099,31146,-9,-9,31145,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,7.883559162187596,7.795893839495399,0,3,0,0,0,-9,0,-1030.917266021271,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,47,0,15,1,0,-9,1,7.375972368963114,7.375972368963114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,4,3,1,653,0,0,0 +13952,17100,31147,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,2,1,0,3,7.173782628139433,7.58634936952963,6.739189399161215,3,0,0,0,-9,0,-1003.87538123786,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,18,20,15,1,0,-9,0,7.481642460087743,7.481642460087743,1,0,0,0,0,0,0,1,1,0,0,6.626319469205868,0,0,48.45,57.49,6,1,0,0,2,3,1,1738,0,0,0 +13953,17101,31148,31149,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,7.406154394981452,7.529039898240153,0,1,0,-9,39,0,-12,-30.48176586484088,0,0,0,68,2,5,3,3,3,2019,2,2,11,0,25,26,15,1,0,4,0,7.897494758769972,7.897494758769972,0,0,0,0,0,0,0,1,1,0,1.226341516156543,0,0,0,54.79,55.86,6,1,0,0,10,2,1,493.5,0,0,0 +13953,17101,31149,31148,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,39,0,12,-44.71578919246939,0,0,0,56,2,4,1,3,3,2019,3,1,6,0,0,36,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,10,2,1,493.5,0,0,0 +13954,17102,31150,31151,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.444994422928645,8.582541852485347,8.391203802766061,1,0,-9,9,0,8,45.10906749443997,0,0,0,55,2,3,1,2,2,2019,1,2,20,9,37,45,15,1,9,1,0,3.927857122382262,3.927857122382262,0,0,0,0,0,0,0,0,0,0,4.27627515801869,8.05863588262245,0,0,36.08,60.5,5,1,0,1,7,4,1,545,0,0,0 +13954,17102,31151,31150,-9,-9,2,1,0,55,1,0,0,0,2,-9,1,1,0,3,6.622429945912286,6.141404256591374,0,1,0,-9,9,0,-8,113.8059186344989,0,0,0,63,2,3,1,3,2,2019,1,1,12,0,18,0,15,1,2,1,0,4.130450082100455,4.130450082100455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,49,5,1,0,0,7,4,1,545,0,0,0 +13955,17103,31152,31153,-9,-9,2,1,1,49,1,0,2,0,1,-9,2,1,0,4,9.028752230441484,9.180731683714781,0,2,0,-9,7,0,-4,122.9909472801438,0,0,0,53,1,4,1,3,2,2019,1,1,10,0,38,38,15,1,0,1,0,23.58682905203095,23.58682905203095,0,0,0,0,0,0,0,1,1,0,.460073175322451,0,0,0,53.33,53.71,6,1,0,0,9,4,1,989.6666666666666,0,0,0 +13955,17103,31153,31152,-9,-9,1,1,0,53,1,0,2,0,1,-9,2,1,0,4,7.603665978020164,7.776050065387769,0,2,0,-9,7,0,4,-104.9140968448872,0,0,0,49,1,4,1,2,2,2019,1,2,14,2,17,15,15,1,2,1,0,13.39993852095063,13.39993852095063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.92,52.49,6,1,0,0,9,4,1,989.6666666666666,0,0,0 +13955,17103,31154,-9,31153,31152,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-836.7290568285566,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,989.6666666666666,0,0,0 +13956,17104,31155,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,3,0,7.831821656568176,7.464006178214433,3,0,0,0,-9,0,-943.8370586725616,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.233677619641555,7.872041560032597,0,0,50.04,44.59,6,1,0,0,4,3,1,1937,0,0,0 +13957,17105,31156,31157,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-4,-8.124996009396041,0,0,0,76,1,4,1,2,1,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,6,1,0,0,4,4,1,1121,0,0,0 +13957,17105,31157,31156,-9,-9,2,1,1,76,1,0,0,0,1,-9,2,1,0,4,7.871370106121169,8.692566316780459,8.007546789275308,1,0,-9,52,0,4,2.155830430770681,0,0,0,72,1,3,3,-9,3,2019,2,1,7,0,21,28,15,1,0,4,0,19.03263760904085,19.03263760904085,0,0,0,0,0,0,0,1,1,0,0,7.694606299248795,0,0,58.15,52.91,7,1,0,0,4,4,1,1121,0,0,0 +13958,17106,31158,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,3,0,6.908408514015102,6.338892389350367,1,0,1,1,-9,9,-15.36771668840634,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.972553392767558,6.723192790983381,5.636350149087356,1,60.8,32.65,4,1,0,0,10,4,1,1700,0,0,0 +13958,17107,31159,-9,-9,-9,2,1,1,60,2,0,0,0,3,-9,3,3,0,2,0,8.650739020764107,8.533495055211457,1,0,1,1,-9,0,-3.954297117339931,0,0,0,-9,-9,-9,-9,3,3,2019,4,1,29,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.059170524807547,8.451181330823832,0,0,26.7,39.24,4,1,1,0,10,4,1,2092,0,0,0 +13959,17108,31160,31162,-9,-9,1,1,1,54,1,0,2,0,1,-9,2,1,0,3,8.650446705170404,9.464375424208285,0,2,0,-9,8,0,2,-135.378319047556,0,0,0,52,1,5,3,3,2,2019,2,2,15,4,45,45,15,1,4,4,0,17.31837980778208,17.31837980778208,0,0,0,0,0,0,0,1,1,0,4.882499517344642,0,0,0,41.82,57.72,4,1,0,0,2,4,1,1507.25,0,0,0 +13959,17108,31161,-9,31162,31160,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-906.6796658926337,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,4,1,1507.25,0,0,0 +13959,17108,31162,31160,-9,-9,2,1,0,52,1,0,2,0,1,-9,4,3,0,5,0,0,0,2,0,-9,8,0,-2,.8049092391554975,0,0,0,54,1,3,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.420738770221394,0,25.42003092124146,3,60.02,56.42,7,1,0,0,2,4,1,1507.25,0,0,0 +13959,17108,31163,-9,31162,31160,3,1,1,17,2,0,2,1,2,0,7,2,0,5,6.69520181862943,6.880567194346437,0,2,0,0,0,-9,0,-938.6860044807906,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,20,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0850556051532439,0,0,0,45.81,61.51,6,1,0,0,2,4,1,1507.25,0,0,0 +13960,17109,31164,31165,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,4,7.975016991607171,8.036298962663109,0,1,0,-9,1,-9,1,118.3152118125543,-9,1,0,25,1,5,1,-9,-9,2019,1,1,10,1,38,0,15,1,1,1,0,9.884197676921053,9.884197676921053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.51,34.45,6,1,0,0,1,4,1,1515,0,0,0 +13960,17109,31165,31164,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,5,7.80310983639778,7.48174207252623,4.321312796884944,1,0,-9,1,-9,-1,128.6259107371407,-9,1,1,26,1,4,1,-9,-9,2019,1,2,6,0,38,0,15,1,0,1,0,9.506222265287231,9.506222265287231,0,0,0,0,0,0,0,0,0,0,4.668155506560509,0,0,0,57.06,57.76,6,1,0,0,1,4,1,1515,0,0,0 +13961,17110,31166,-9,31167,31168,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.6061328587671,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,1,620.6666666666666,0,0,0 +13961,17110,31167,31168,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,2,7.59157484763217,7.81628021282807,0,2,0,-9,10,0,-4,-60.10103175170416,0,0,1,42,2,3,1,3,3,2019,1,2,7,0,17,0,15,1,0,1,0,17.29102930219586,17.29102930219586,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.95,40,6,1,0,0,11,3,1,620.6666666666666,0,0,0 +13961,17110,31168,31167,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,3,7.838496734218377,8.14114876707545,0,2,0,-9,10,0,4,-10.48810474149866,0,0,0,38,2,2,1,3,3,2019,1,1,11,0,37,37,15,1,0,1,0,9.731620437262865,9.731620437262865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.61,50.3,3,1,0,0,11,3,1,620.6666666666666,0,0,0 +13962,17111,31169,-9,31172,31171,5,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-803.303338953602,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,1313.833333333333,0,0,0 +13962,17111,31170,-9,31172,31171,3,1,1,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.402507242449,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,1313.833333333333,0,0,0 +13962,17111,31171,31172,-9,-9,2,1,1,43,1,0,4,0,1,-9,2,1,0,3,9.229598790312217,9.294395331479056,0,2,0,-9,20,0,1,-160.0842868349962,0,0,0,42,2,5,1,2,3,2019,1,1,7,0,53,38,15,1,0,1,0,24.30899026307263,24.30899026307263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,6,1,0,0,8,5,1,1313.833333333333,0,0,0 +13962,17111,31172,31171,-9,-9,1,1,0,42,1,0,4,0,2,-9,2,1,0,5,7.398567024226431,7.526414247797597,0,2,0,-9,20,0,-1,-6.379504171265282,0,0,1,43,1,3,1,1,2,2019,1,2,6,0,32,28,15,1,0,1,0,5.537556243201931,5.537556243201931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,8,5,1,1313.833333333333,0,0,0 +13962,17111,31173,-9,31172,31171,6,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.960743740607,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,1313.833333333333,0,0,0 +13962,17111,31174,-9,31172,31171,4,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.1627937181914,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,8,5,1,1313.833333333333,0,0,0 +13963,17112,31175,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-990.2324997694448,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.04,55.86,6,1,0,0,12,1,1,305,0,0,0 +13964,17113,31176,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,7.276518570297518,7.049808545003849,3,0,0,0,-9,0,-1057.050589082844,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.950719836687659,0,3,53,45,6,1,0,0,9,2,1,1799,0,0,0 +13965,17114,31177,31178,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,4,0,6.3091551283508,6.324480886492522,1,0,-9,31,0,14,-81.48475708234572,0,0,0,70,2,3,3,1,1,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.003271564108189,6.089112320626615,0,0,29.76,48.39,6,1,0,0,10,3,1,428.5,0,0,0 +13965,17114,31178,31177,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,7.738241836083824,7.938484096482575,1,0,-9,31,0,-14,-26.23493855733184,0,0,0,84,1,4,3,3,3,2019,4,1,8,1,0,13,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.685422910281241,7.637952288448464,0,0,65.54000000000001,33.23,5,2,0,0,10,3,1,428.5,0,0,0 +13966,17115,31179,31180,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,2,6.986523292353493,7.166623800937806,0,1,0,-9,7,0,6,-93.0664948971165,0,0,0,50,2,4,1,3,3,2019,1,1,5,0,24,28,15,1,0,1,0,5.728205013022698,5.728205013022698,0,0,0,0,0,0,0,0,0,0,0,0,12.04555741801524,3,42.72,49.62,6,1,0,0,9,4,1,443,0,0,0 +13966,17115,31180,31179,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.530550262565091,8.44236298616201,0,1,0,-9,7,0,-6,-35.55367703839612,0,0,0,56,3,2,1,3,3,2019,1,2,12,2,60,58,15,1,2,1,0,11.28796074637007,11.28796074637007,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.5,51.28,6,1,0,0,9,4,1,443,0,0,0 +13967,17116,31181,31182,-9,-9,2,1,1,59,1,0,0,0,1,-9,4,3,0,4,0,8.700838051307333,8.71376313361346,1,0,-9,41,0,0,19.73130836944518,0,0,0,59,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.041006466099724,8.930500135245294,0,0,57.16,56.15,6,1,0,0,5,5,1,1008.5,0,0,0 +13967,17116,31182,31181,-9,-9,1,1,0,59,1,0,0,0,3,-9,4,3,0,3,0,6.057421511068775,6.003192539230828,1,0,-9,41,0,0,-78.42943587671523,0,0,0,59,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.200290772962646,5.814129886437996,0,0,58.32,50.22,6,1,0,0,5,5,1,1008.5,0,0,0 +13968,17117,31183,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1053.862455121513,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.49,22.42,2,2,0,0,2,1,0,2292,0,0,0 +13969,17118,31184,-9,31186,31185,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.6534387245342,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,344.6666666666667,0,0,0 +13969,17118,31185,31186,-9,-9,1,1,1,47,1,1,1,0,3,-9,2,1,0,3,8.646253372426946,8.537807727260589,0,2,0,-9,7,0,2,83.75976018133244,0,0,0,45,3,4,1,2,2,2019,1,2,10,1,40,42,15,1,1,1,0,17.52192482994131,17.52192482994131,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,9,5,1,344.6666666666667,0,0,0 +13969,17118,31186,31185,-9,-9,2,1,0,45,1,1,1,0,3,-9,2,1,0,4,8.435878763118685,8.175287310294307,0,2,0,-9,7,0,-2,-56.59820249810889,0,0,0,47,3,3,1,2,3,2019,1,1,12,1,35,30,15,1,1,1,0,16.81078998277096,16.81078998277096,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.07,51.53,5,1,0,0,9,5,1,344.6666666666667,0,0,0 +13970,17119,31187,31188,-9,-9,2,1,0,45,1,0,0,0,3,-9,2,1,0,2,7.693897905529789,7.651182373758008,0,1,0,-9,25,0,-6,-143.6591245703133,0,0,0,51,2,2,1,-9,3,2019,1,1,24,11,37,43,15,1,11,1,0,5.971108172358717,5.971108172358717,0,0,0,0,0,0,0,0,0,0,0,0,24.19849996064251,3,37.92,39.8,5,1,0,0,9,4,0,352,0,0,0 +13970,17119,31188,31187,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,8.270992521222405,7.912420768231372,0,1,0,-9,25,0,6,46.60642330994754,0,0,0,45,3,2,1,-9,-9,2019,1,2,14,2,51,48,15,1,2,1,0,6.373853289505665,6.373853289505665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,33.08,4,1,0,0,9,4,0,352,0,0,0 +13971,17120,31189,31190,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,4,8.271773773684766,8.385112136296298,6.589849086256439,1,0,-9,8,0,-1,35.18089575958442,0,0,0,59,2,3,1,2,1,2019,1,1,9,0,36,35,15,1,0,1,0,18.76485548533347,18.76485548533347,0,0,0,0,0,0,0,0,0,0,5.363308401067973,7.114649545002972,0,0,54,54,6,1,0,0,12,5,0,347.5,0,0,0 +13971,17120,31190,31189,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.89264029699185,7.92932231166956,0,1,0,-9,40,0,1,-73.3191156838177,0,0,0,58,1,4,1,2,1,2019,1,2,12,3,32,31,15,1,3,1,0,9.526089049987259,9.526089049987259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76,53.33,6,1,0,0,12,5,0,347.5,0,0,0 +13972,17121,31191,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,4,3,0,4,0,7.430471624262275,7.634154540700545,3,0,0,0,-9,0,-895.0222951405136,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.701740988163742,0,0,56.18,53.85,6,1,0,0,2,3,1,187,0,0,0 +13973,17122,31192,31193,-9,-9,2,1,1,66,1,0,0,0,2,-9,2,1,0,3,8.215550032971935,8.094579254969132,6.847082415654536,1,0,-9,40,0,0,-86.72676152465084,0,0,0,66,2,4,3,3,3,2019,2,1,7,0,37,40,15,1,0,4,0,11.93572718236839,11.93572718236839,0,0,0,0,0,0,0,1,1,0,0,6.894499834279888,0,0,54.96,53.17,6,1,0,0,12,4,1,247.5,0,0,0 +13973,17122,31193,31192,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,7.703519029830413,7.3930720339993,1,0,-9,40,0,0,-31.43975607808856,0,0,0,66,2,3,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.280946420789598,7.436450274080125,0,0,61.68,49.95,7,1,0,0,12,4,1,247.5,0,0,0 +13974,17123,31194,-9,31195,-9,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-987.4883308713185,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,0,733.3333333333334,0,0,0 +13974,17123,31195,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,4,7.400398943015966,7.398413864102853,0,4,0,0,0,-9,0,-1071.9282450173,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,27,32,15,1,0,-9,0,6.631486490551287,6.631486490551287,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,6,1,0,0,11,2,0,733.3333333333334,0,0,0 +13974,17123,31196,-9,31195,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1050.138624258862,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,2,0,733.3333333333334,0,0,0 +13975,17124,31197,31198,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,5,9.685583860148133,9.337342699106838,0,2,0,-9,26,0,0,112.4906973679248,0,0,0,55,1,2,1,2,2,2019,1,2,6,0,45,32,15,1,0,1,0,33.37715118919802,33.37715118919802,0,0,0,0,0,0,0,1,1,0,1.146521515078722,0,0,0,52.3,57.2,7,1,0,0,6,5,1,1063.666666666667,0,0,0 +13975,17124,31198,31197,-9,-9,2,1,1,55,1,0,2,0,1,-9,1,1,0,2,8.446810057936185,8.357301334655833,0,2,0,-9,8,0,9,5.439236619977587,0,0,0,46,1,5,1,-9,-9,2019,1,1,11,1,40,28,15,1,1,1,0,12.09296222440726,12.09296222440726,0,0,0,0,0,0,0,1,1,0,0,0,.5744646220456697,3,52.65,35.58,4,1,0,0,6,5,1,1063.666666666667,0,0,0 +13975,17124,31199,-9,31197,31198,4,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1003.224005916014,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,6,5,1,1063.666666666667,0,0,0 +13975,17125,31200,-9,31197,31198,3,1,0,18,2,0,2,1,2,0,7,2,0,4,5.28981953521731,5.337443265806632,0,3,0,0,0,-9,0,-1121.230135021839,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,8,0,4,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.26,59.43,6,1,0,0,6,5,1,397,0,0,0 +13976,17126,31201,-9,-9,-9,1,1,0,22,2,0,0,0,1,-9,2,1,0,4,8.264601143809417,8.10807227885922,0,3,0,-9,0,-9,0,-1015.826270455153,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,0,10.3899373528732,10.3899373528732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,7,1,0,0,2,4,0,114,0,0,0 +13977,17127,31202,31205,-9,-9,2,1,0,45,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,14,0,-26,0,0,0,0,71,3,4,3,3,3,2019,4,1,4,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,49.15,1,3,0,0,5,1,1,559,0,0,0 +13977,17127,31203,-9,31202,31205,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.2753670609628,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,5,1,1,559,0,0,0 +13977,17127,31204,-9,31202,31205,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.862718359529,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,5,1,1,559,0,0,0 +13977,17127,31205,31202,-9,-9,1,1,1,71,1,0,2,0,3,-9,4,3,0,4,0,0,0,2,0,-9,14,0,26,0,0,0,0,45,3,4,3,3,3,2019,4,2,8,2,0,0,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,47.36,7,3,0,0,5,1,1,559,0,0,0 +13978,17128,31206,31207,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.388480328114348,8.703066108542972,0,2,0,-9,17,0,0,19.69798638052777,0,0,0,45,2,4,1,2,2,2019,1,2,12,0,44,48,15,1,0,1,0,10.73348780638451,10.73348780638451,0,0,0,0,0,0,0,1,1,0,1.897697001038775,0,0,0,43.6,51.61,6,1,0,0,7,4,1,477.75,0,0,0 +13978,17128,31207,31206,-9,-9,2,1,0,45,1,0,2,0,2,-9,2,1,0,4,7.810059621542893,7.346220402111165,0,2,0,-9,18,0,0,-33.08602657664778,0,0,0,45,2,3,1,2,1,2019,1,1,16,5,24,22,15,1,5,1,0,9.334188881959605,9.334188881959605,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58.15,52.91,6,1,0,0,7,4,1,477.75,0,0,0 +13978,17128,31208,-9,31207,31206,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.586919876459,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,477.75,0,0,0 +13978,17128,31209,-9,31207,31206,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-922.6522720189472,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,7,4,1,477.75,0,0,0 +13979,17129,31210,31212,-9,-9,1,1,0,32,1,1,2,0,1,-9,2,1,0,4,7.818223885168189,7.760505453414974,0,2,0,-9,7,0,-8,40.77700131264176,0,0,1,40,2,2,1,2,1,2019,1,2,11,0,24,30,15,1,0,1,0,12.03832613304998,12.03832613304998,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,11,4,0,1591.5,0,0,0 +13979,17129,31211,-9,31210,31212,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.454314324345,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,0,1591.5,0,0,0 +13979,17129,31212,31210,-9,-9,2,1,1,40,1,1,2,0,2,-9,2,1,0,2,8.714338049149964,8.386307593267638,0,2,0,-9,7,0,8,-113.3145710958009,0,0,0,32,1,4,1,-9,-9,2019,1,1,13,1,40,40,15,1,1,1,0,17.40746772881584,17.40746772881584,0,0,0,0,0,0,0,1,1,0,7.365792082630148,0,0,0,49.92,34.09,5,1,0,0,11,4,0,1591.5,0,0,0 +13979,17129,31213,-9,31210,31212,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.5051160283031,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,0,1591.5,0,0,0 +13980,17130,31214,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,3,3,0,3,0,5.387159332455745,5.343069686586702,3,0,0,0,-9,0,-984.9911621266775,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.601806667617272,11.10636413550918,3,34.72,55.65,3,1,1,1,9,2,0,1419,0,0,0 +13981,17131,31215,31216,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.571079480326924,8.41087964006047,0,2,0,-9,14,0,4,-39.66755011299093,0,0,0,39,2,1,1,2,2,2019,1,1,7,0,38,37,15,1,0,1,0,14.61702973266149,14.61702973266149,0,0,0,0,0,0,0,1,1,0,0,0,13.93002847114232,1,57.16,56.15,5,4,0,0,8,4,0,640.5,0,0,0 +13981,17131,31216,31215,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,1,8.245838936225061,7.93932928343445,0,2,0,-9,14,0,-4,-109.386226530242,0,0,1,43,1,4,1,3,3,2019,1,2,18,7,45,35,15,1,7,1,0,7.486369428518577,7.486369428518577,0,0,0,0,0,0,0,1,1,0,1.592863588125179,0,0,0,42.13,24.16,4,4,0,0,8,4,0,640.5,0,0,0 +13981,17131,31217,-9,31216,31215,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-871.6105614106748,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,4,0,640.5,0,0,0 +13981,17131,31218,-9,31216,31215,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1008.451116214777,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,4,0,0,8,4,0,640.5,0,0,0 +13982,17132,31219,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,4,7.500818905188614,7.931706062450386,6.405490767254054,3,0,0,0,-9,0,-755.5765243270101,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,0,15,1,1,-9,0,6.11237498869213,6.11237498869213,0,0,0,0,0,0,0,1,1,0,0,6.543852238377517,0,3,52,53,6,1,0,0,4,3,1,948,0,0,0 +13982,17133,31220,-9,31219,-9,2,1,1,30,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-987.8432638135604,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,0,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.19,57.08,4,2,1,0,4,1,1,206,0,0,0 +13983,17134,31221,31222,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,16,0,-10,-25.56364119571344,0,0,0,81,3,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,50.46,6,1,0,0,10,2,1,632,0,0,0 +13983,17134,31222,31221,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,4.850235494004902,4.641657492660649,1,0,-9,22,0,10,-4.594506099617945,0,0,0,71,2,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.066382554744967,4.977890912019289,0,0,47.48,48.28,6,1,0,0,10,2,1,632,0,0,0 +13984,17135,31223,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,4,8.597243387390762,8.49507504624607,0,3,0,0,0,-9,0,-797.112148928226,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,40,39,15,1,0,-9,0,14.62286587807925,14.62286587807925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.96,50.73,2,1,0,0,12,5,1,1092,0,0,0 +13985,17136,31224,-9,31225,-9,2,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1096.00800788215,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,314.5,0,0,0 +13985,17136,31225,-9,-9,-9,1,1,0,27,2,0,1,0,2,-9,2,1,0,4,7.088215299171305,7.017921534631967,0,4,0,0,0,-9,0,-968.742572959412,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,23,16,15,1,2,-9,0,5.235548000489109,5.235548000489109,0,0,0,0,0,0,0,1,1,0,0,0,5.19271249546245,3,41.47,56.81,5,1,0,0,4,2,0,314.5,0,0,0 +13986,17137,31226,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,3,0,7.673668875008217,7.272946234629,3,0,0,0,-9,0,-890.7813539398722,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.688870803417311,7.596556283385374,0,0,50.3,42.9,5,1,0,0,7,3,1,1457,0,0,0 +13987,17138,31227,31228,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,2,0,6.868874414423292,6.788899604995245,1,0,-9,54,0,10,-100.3150487779443,0,0,0,72,3,4,3,3,3,2019,4,1,10,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.679223373530928,6.291954939334272,0,0,47.87,35.22,6,1,0,0,6,2,1,1226.5,0,0,0 +13987,17138,31228,31227,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,7.040572385358645,6.654193683752856,1,0,-9,29,0,-10,58.82488969143546,0,0,0,82,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.743208513057551,6.882910673133952,0,0,57.16,56.15,1,1,0,0,6,2,1,1226.5,0,0,0 +13988,17139,31229,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,6.57877157349359,6.860309261637282,3,0,0,0,-9,0,-1099.551711457213,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,9.540667516633366,0,8.050247068939083,0,0,24.49974344717112,1,1,0,2.876060218305251,6.953181249927745,0,3,53,45,6,1,0,0,9,2,1,1304,0,0,0 +13989,17140,31230,31231,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,4,9.05316600096555,9.074415352431812,0,1,0,-9,2,0,-3,66.22318652334889,0,1,1,32,1,4,1,-9,-9,2019,1,2,11,0,50,52,15,1,2,1,0,15.83037325632835,15.83037325632835,0,0,0,0,0,0,0,0,0,0,5.058663161081715,0,0,0,48,56,5,1,0,0,8,5,0,550,0,0,0 +13989,17140,31231,31230,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,4,8.536413696273263,8.662489805893482,0,1,0,-9,2,0,3,-28.11700599426514,0,0,0,29,1,4,1,-9,-9,2019,1,1,10,0,55,55,15,1,0,1,0,10.52783391511237,10.52783391511237,0,0,0,0,0,0,0,0,0,0,3.958174954931894,0,0,0,54.79,55.86,6,1,0,0,8,5,0,550,0,0,0 +13990,17141,31232,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-998.2302041512024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.0305479823907873,0,0,0,53.76,49.63,6,4,0,0,8,1,0,827,0,0,0 +13991,17142,31233,-9,-9,-9,1,1,0,46,2,0,0,0,2,-9,2,1,0,3,6.535991776233504,6.477021475933824,0,3,0,0,0,-9,0,-911.7819431452054,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,10,10,15,1,0,-9,0,9.013446258443839,9.013446258443839,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,4,1,0,1,2,2,0,372,0,0,0 +13991,17143,31234,-9,31233,-9,2,1,0,21,2,0,0,0,2,-9,2,1,0,4,6.891845573170245,7.243226600415215,0,3,0,0,0,-9,0,-1024.611721056423,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,20,8,15,1,0,-9,1,6.431849360778282,6.431849360778282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,2,2,0,624,0,0,0 +13992,17144,31235,31236,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,4,8.52112046265346,8.658357870486233,0,1,0,-9,9,0,3,-136.1560903338055,0,0,0,43,2,5,1,-9,-9,2019,1,2,11,0,47,37,15,1,0,1,0,14.18586646884281,14.18586646884281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.45,49.53,6,1,0,0,4,5,1,826,0,0,0 +13992,17144,31236,31235,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,5,8.479677304805655,8.546790256684668,0,1,0,-9,9,0,-3,-75.27792445298282,0,0,0,46,2,4,1,2,2,2019,1,1,6,0,37,39,15,1,0,1,0,13.69797424644991,13.69797424644991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.12,62.24,3,1,0,0,4,5,1,826,0,0,0 +13993,17145,31237,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,2,0,6.659523464400377,6.899725317247384,3,0,0,0,-9,0,-903.7066627884629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.207598105622816,6.62623846615154,0,0,51.89,35.98,4,1,0,0,5,2,0,761,0,0,0 +13994,17146,31238,31239,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,5,6.50975800076979,7.104360863891898,0,2,0,-9,23,0,-11,123.5694237086152,0,0,0,62,1,4,1,2,1,2019,1,2,7,0,20,20,15,1,0,1,0,6.118685787731346,6.118685787731346,0,0,0,0,0,0,0,0,0,0,8.147962786099878,0,0,0,59.43,58.05,7,1,0,0,4,5,1,584.3333333333334,0,0,0 +13994,17146,31239,31238,-9,-9,2,1,1,62,1,0,1,0,1,-9,2,1,0,4,8.234229559721394,8.900572573442798,7.918337885490174,2,0,-9,24,0,11,-99.69527944876994,0,0,0,51,2,5,1,2,2,2019,1,1,12,0,24,40,15,1,0,1,0,31.20988949346293,31.20988949346293,0,0,0,0,0,0,0,0,0,0,4.294862086107006,7.898797189249399,0,0,57.16,56.15,6,1,0,0,4,5,1,584.3333333333334,0,0,0 +13994,17146,31240,-9,31238,31239,4,1,0,16,2,0,1,0,-9,-9,2,2,0,4,4.183981661763108,4.689824057738622,0,2,0,0,0,-9,0,-901.1140150897454,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,6,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,584.3333333333334,0,0,0 +13994,17147,31241,-9,31238,31239,3,1,0,18,2,0,1,1,2,0,7,2,0,5,5.863453283572186,5.84993235538132,0,3,0,0,0,-9,0,-1066.614912494061,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,16,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,6,1,0,0,4,5,1,856,0,0,0 +13995,17148,31242,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,3,8.400670421268421,8.705133522924976,0,3,0,0,0,-9,0,-1059.292215434667,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,42,40,15,1,0,-9,0,12.98442044852882,12.98442044852882,0,0,0,0,0,0,0,0,0,0,3.495992757969142,0,0,0,52.99,51.28,5,1,0,0,7,5,1,312,0,0,0 +13996,17149,31243,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,4,9.034648868038694,8.975207966792063,0,3,0,0,0,-9,0,-852.1906829807236,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,40,15,1,0,-9,0,17.01300033558154,17.01300033558154,0,0,0,0,0,0,0,0,0,0,3.147721912245283,0,0,0,57.16,56.15,5,1,0,0,12,5,1,321,0,0,0 +13997,17150,31244,-9,31245,31248,6,1,0,5,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.15964333217,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,1,0,496.5714285714286,0,0,0 +13997,17150,31245,31248,-9,-9,2,1,0,37,1,1,5,0,3,-9,3,3,0,4,0,0,0,2,0,-9,7,0,2,0,0,0,1,35,2,2,3,-9,-9,2019,4,1,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.04,46.1,2,1,1,0,2,1,0,496.5714285714286,0,0,0 +13997,17150,31246,-9,31245,31248,3,1,0,15,2,1,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-970.0896030470999,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,1,0,496.5714285714286,0,0,0 +13997,17150,31247,-9,31245,31248,5,1,1,8,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.240346263963,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,1,0,496.5714285714286,0,0,0 +13997,17150,31248,31245,-9,-9,1,1,1,35,1,1,5,0,2,-9,3,3,0,2,0,0,0,2,0,-9,7,0,-2,0,0,0,0,37,3,4,3,2,3,2019,4,2,27,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.69,37.16,2,1,1,0,2,1,0,496.5714285714286,0,0,0 +13997,17150,31249,-9,31245,31248,7,1,0,1,2,1,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-871.5823516908473,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,1,0,496.5714285714286,0,0,0 +13997,17150,31250,-9,31245,31248,4,1,1,10,2,1,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1132.0802177981,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,2,1,0,496.5714285714286,0,0,0 +13998,17151,31251,31252,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,7.168265244171932,7.422431343056205,1,0,-9,10,0,-5,61.29559270504521,0,0,0,78,2,4,3,1,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.568150596676444,7.009760684162071,6.964073029501568,3,63.24,42.39,6,1,0,0,6,3,1,794.5,0,0,0 +13998,17151,31252,31251,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,4,0,7.841351993116656,7.545699101099952,1,0,-9,10,0,5,31.30609084936987,0,0,0,73,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.290659922692177,7.462039605310976,.0337800828229244,3,55.36,54.24,6,1,0,0,6,3,1,794.5,0,0,0 +13999,17152,31253,-9,31256,31254,3,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1005.59230772962,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,62,5,1,0,0,4,3,0,838.5,0,0,0 +13999,17152,31254,31256,-9,-9,2,1,1,26,1,2,2,0,2,-9,2,1,0,3,7.760132296409815,7.976493845574417,5.110559928073978,2,0,-9,1,-9,-3,-35.40422049948863,-9,1,0,29,2,5,3,-9,-9,2019,2,1,17,5,70,0,15,1,5,3,0,5.15451094358855,5.15451094358855,0,0,0,0,0,0,0,1,0,1,4.954980786587941,0,0,0,37.79,42.3,5,1,0,0,4,3,0,838.5,0,0,0 +13999,17152,31255,-9,31256,31254,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1091.257856585257,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,4,3,0,838.5,0,0,0 +13999,17152,31256,31254,-9,-9,1,1,0,29,1,2,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,1,0,3,-120.4637085913618,0,1,1,26,2,3,1,2,2,2019,3,2,11,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.77,60.16,4,1,0,0,4,3,0,838.5,0,0,0 +14000,17153,31257,31258,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.458582078700475,7.085753128025674,0,2,0,-9,7,0,14,26.69936573544928,0,0,0,32,1,4,1,2,3,2019,1,1,6,0,20,28,15,1,0,1,0,8.26339018697905,8.26339018697905,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.1,49.93,6,1,0,0,2,4,0,797,0,0,0 +14000,17153,31258,31257,-9,-9,1,1,1,32,1,0,1,0,1,-9,2,1,0,4,8.466554438744833,8.725187328315647,0,2,0,-9,7,0,-14,-83.43919318629266,0,0,0,46,2,3,1,2,2,2019,1,2,5,0,46,40,15,1,0,1,0,15.87670672352512,15.87670672352512,0,0,0,0,0,0,0,1,1,0,5.583934097156686,0,0,0,60.12,54.8,6,1,0,0,2,4,0,797,0,0,0 +14000,17153,31259,-9,31257,31258,4,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.017674248141,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,0,797,0,0,0 +14001,17154,31260,31261,-9,-9,2,1,0,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,35,0,-4,0,0,0,0,62,1,3,3,3,3,2019,4,1,12,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,3,0,0,2,1,1,1199,0,0,0 +14001,17154,31261,31260,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,35,0,4,0,0,0,0,58,2,3,3,3,3,2019,4,2,14,2,0,2,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,8.022137380315968,0,0,0,47.7,47.03,4,3,0,0,2,1,1,1199,0,0,0 +14002,17155,31262,-9,-9,31264,3,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-913.0091904014178,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,5,1,0,0,5,5,1,1895.666666666667,0,0,0 +14002,17155,31263,-9,-9,31264,2,1,0,17,2,0,1,0,2,1,11,3,0,4,6.428294794445646,6.969994372605036,0,4,0,0,0,-9,0,-901.603540689964,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,7,1,15,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,5,1,0,0,5,5,1,1895.666666666667,0,0,0 +14002,17155,31264,-9,-9,-9,1,1,1,51,3,0,1,0,1,-9,2,1,0,5,9.613478172468447,9.431454380526704,0,4,0,0,0,-9,0,-937.1354423604607,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,47,52,15,1,0,-9,0,28.50679218633546,28.50679218633546,0,0,0,0,0,0,0,0,0,0,3.340348551706817,0,0,0,42.85,62.85,6,1,0,0,5,5,1,1895.666666666667,0,0,0 +14003,17156,31265,31267,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,3,8.602974278563309,8.621525395966803,0,1,0,-9,28,0,5,-51.53477413302993,0,0,0,53,2,3,1,2,2,2019,1,1,14,4,37,40,15,1,4,1,0,20.42867925968866,20.42867925968866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.7,59.52,5,1,0,0,9,5,1,670,0,0,0 +14003,17156,31266,-9,31267,31265,4,1,1,17,2,0,0,0,2,1,2,3,0,4,7.143008091740297,6.748174267134221,0,1,0,0,0,-9,0,-1032.295085456982,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,15,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9132333831166238,0,0,0,45.66,53.59,5,1,0,0,9,5,1,670,0,0,0 +14003,17156,31267,31265,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.645494928593413,7.63107230153745,0,1,0,-9,26,0,-5,149.9633726408743,0,0,0,58,1,3,1,2,2,2019,1,2,9,0,33,30,15,1,0,1,0,7.811827176310681,7.811827176310681,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.32,38.32,6,1,0,0,9,5,1,670,0,0,0 +14003,17157,31268,-9,31267,31265,3,1,1,22,2,0,0,0,1,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1146.215484224929,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,6,1,0,0,9,1,1,1355,0,0,0 +14004,17158,31269,31270,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,6.619832919663178,7.476505822213873,7.330696958566389,1,0,-9,39,0,0,-10.16294208739115,0,0,0,63,1,4,3,2,-9,2019,4,1,11,0,0,31,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.660625383315667,7.543073516426914,8.272017927763763,3,49.04,55.86,2,1,0,0,10,4,1,934.5,0,0,0 +14004,17158,31270,31269,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,4,6.730092706410287,7.946289147341659,7.245028017582209,1,0,-9,39,0,0,11.39713150117664,0,0,0,63,2,3,3,-9,2,2019,4,2,12,0,5,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.382908999291702,7.253717928467267,0,0,51.83,57.2,6,1,0,0,10,4,1,934.5,0,0,0 +14004,17159,31271,-9,31269,31270,3,1,1,31,2,0,0,0,2,-9,3,3,0,1,5.844784394843032,5.937779016311845,0,3,0,0,0,-9,0,-996.4146626467235,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,31,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,64.44,2,1,1,0,10,2,1,794,0,0,0 +14005,17160,31272,31273,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,5.176701619795328,4.653024581597746,1,0,-9,44,0,2,-140.6934476734205,0,0,0,67,2,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.049366365708203,4.724595537485759,0,0,56.34,40.63,6,1,0,0,12,3,1,1520,0,0,0 +14005,17160,31273,31272,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,8.065639031238007,7.997792906227085,1,0,-9,9,0,-2,-3.031188430751845,0,0,0,69,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.885259877272823,0,0,58.39,41.27,5,1,0,0,12,3,1,1520,0,0,0 +14006,17161,31274,31275,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,4,8.189218507069253,8.395910045718265,0,2,0,-9,26,0,1,116.9391554166018,0,0,0,49,1,3,1,2,2,2019,1,2,9,0,31,23,15,1,1,1,0,20.4573085368479,20.4573085368479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,10,5,1,406.75,0,0,0 +14006,17161,31275,31274,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,3,9.046642991209477,9.084145684089615,0,2,0,-9,6,0,-1,-102.3692616792934,0,0,0,50,1,4,1,2,1,2019,1,1,15,3,37,37,15,1,3,1,0,24.79529348242394,24.79529348242394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.53,55.55,4,1,0,0,10,5,1,406.75,0,0,0 +14006,17161,31276,-9,31275,31274,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1090.613624015823,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,10,5,1,406.75,0,0,0 +14006,17161,31277,-9,31275,31274,4,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.173455468301,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,10,5,1,406.75,0,0,0 +14007,17162,31278,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,-9,0,1,0,-1058.495453633112,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.629434383942696,0,0,0,49,47,6,3,0,0,9,1,1,471,0,0,0 +14008,17163,31279,31280,-9,-9,2,1,0,80,1,0,0,0,2,-9,4,3,0,2,0,7.351617896066338,7.251661362650289,1,0,-9,7,0,-2,-12.50470967057851,0,0,0,82,3,2,3,3,3,2019,4,1,14,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7705364690895,7.203632536523394,0,0,45.9,38.86,6,1,0,0,13,2,1,615.5,0,0,0 +14008,17163,31280,31279,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,2,6.046909738521374,0,0,0,80,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.099229134429325,0,0,0,60.44,36.05,7,1,0,0,13,2,1,615.5,0,0,0 +14009,17164,31281,-9,-9,-9,1,1,1,76,2,0,0,0,3,-9,4,3,0,3,0,6.368279279763236,6.240595090893001,3,0,0,0,-9,0,-948.3902076106251,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.326034956474506,0,0,61.43,48.88,6,1,0,0,2,2,1,69,0,0,0 +14009,17165,31282,-9,-9,-9,2,1,1,54,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-994.3970967534559,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.472200034681498,0,0,0,35.22,45.99,4,1,0,0,2,1,1,568,0,0,0 +14010,17166,31283,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,3,6.382248941932181,6.156089172540104,0,3,0,0,0,-9,0,-1065.985342040315,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,0,15,1,0,-9,0,2.242777368628784,2.242777368628784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,5,4,0,0,8,2,0,770,0,0,0 +14010,17167,31284,-9,31283,-9,2,1,0,23,2,0,0,0,2,-9,2,1,0,3,6.812057112096215,6.876649744335608,0,3,0,0,0,-9,0,-985.846988559248,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,48,30,15,1,0,-9,1,1.918525207564509,1.918525207564509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.25,51.94,2,4,0,0,8,2,0,412,0,0,0 +14011,17168,31285,31288,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.434592608228561,8.860062895179832,0,2,0,-9,21,0,4,47.18501610229769,0,0,0,39,2,2,1,-9,-9,2019,1,2,12,0,40,40,15,1,0,1,0,17.90382748657132,17.90382748657132,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.61,48.15,4,1,0,0,8,4,1,1229,0,0,0 +14011,17168,31286,-9,31288,31285,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-938.6740903923443,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,4,1,1229,0,0,0 +14011,17168,31287,-9,31288,31285,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.351681722221,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,8,4,1,1229,0,0,0 +14011,17168,31288,31285,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,2,7.701640318777336,7.285502908174924,0,2,0,-9,21,0,-4,-101.699312184551,0,0,1,43,2,3,1,2,2,2019,1,1,11,0,23,24,15,1,0,1,0,8.375563908007786,8.375563908007786,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,4,1,0,0,8,4,1,1229,0,0,0 +14012,17169,31289,31290,-9,-9,2,1,1,35,1,0,1,0,2,-9,2,1,0,3,7.744998116936755,7.706442250060781,0,2,0,-9,7,0,0,47.98644058203949,0,0,0,35,2,2,1,1,2,2019,1,1,13,1,38,38,15,1,1,1,0,7.175527115289651,7.175527115289651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,2,3,0,749.3333333333334,0,0,0 +14012,17169,31290,31289,-9,-9,1,1,0,35,1,0,1,0,2,-9,2,1,0,2,7.433446596592962,7.520634783035598,0,2,0,-9,7,0,0,117.4206655717124,0,0,1,35,2,3,1,3,3,2019,1,2,15,4,39,37,15,1,4,1,0,5.750890806399661,5.750890806399661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.61,31.18,4,1,0,0,2,3,0,749.3333333333334,0,0,0 +14012,17169,31291,-9,31290,31289,3,1,1,17,2,0,1,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-913.6556780665835,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.25,48.33,6,1,1,0,2,3,0,749.3333333333334,0,0,0 +14013,17170,31292,31293,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,4,6.806969835462553,6.872384839013716,0,1,0,-9,7,0,-1,111.7613817950593,0,0,0,58,2,4,1,3,3,2019,1,1,7,0,13,13,15,1,0,1,0,7.013902902738457,7.013902902738457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,3,1,667,0,0,0 +14013,17170,31293,31292,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,8.103378363062498,7.977537774952452,4.136217431000902,1,0,-9,7,0,1,131.8949099759101,0,0,0,57,2,4,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,7.566498180784293,7.566498180784293,0,0,0,0,0,0,0,0,0,0,0,4.282997301443173,0,0,58.15,52.91,6,1,0,0,6,3,1,667,0,0,0 +14014,17171,31294,-9,-9,-9,1,1,1,62,2,0,0,0,1,-9,4,3,0,5,0,8.01207389588134,7.88648409692318,3,0,0,0,-9,0,-985.9334775663895,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.45032628189023,7.915272038473636,0,0,49.25,61.25,6,1,0,0,9,3,1,1028,0,0,0 +14015,17172,31295,31296,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,4,35.0711527499208,0,0,0,77,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,9,2,0,381,0,0,0 +14015,17172,31296,31295,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,5.062102434263799,5.134301823003868,1,0,-9,60,0,-4,-144.0154554920714,0,0,0,81,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,7.258950157164412,0,0,0,0,1,1,0,0,5.190032086925123,0,0,54.9,38.15,7,1,0,0,9,2,0,381,0,0,0 +14016,17173,31297,31299,-9,-9,1,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.411772974038163,8.272565566070675,0,2,0,-9,20,0,1,98.25265633285117,0,0,0,45,1,4,1,2,2,2019,1,2,8,0,37,37,15,1,0,1,0,12.29351209635746,12.29351209635746,0,0,0,0,0,0,0,1,1,0,3.874508440152359,0,0,0,54.79,55.86,6,1,0,0,2,4,1,672,0,0,0 +14016,17173,31298,-9,31299,31297,3,1,0,11,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1111.592564750379,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,2,4,1,672,0,0,0 +14016,17173,31299,31297,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,4,8.375645057350869,7.771652119758764,0,2,0,-9,20,0,-1,-28.94142030581534,0,0,0,46,2,4,1,2,2,2019,1,1,14,2,36,34,15,1,2,1,0,13.46368000280541,13.46368000280541,0,0,0,0,0,0,0,1,1,0,2.019393871946018,0,0,0,51.83,57.2,5,1,0,0,2,4,1,672,0,0,0 +14017,17174,31300,31301,-9,-9,1,1,1,32,1,0,0,0,1,-9,2,1,0,5,8.764146259583795,8.285410545708043,0,1,0,-9,6,0,-1,-88.2754859673571,0,0,0,33,1,4,1,1,2,2019,1,2,7,1,40,41,15,1,1,1,0,13.13387354503256,13.13387354503256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,12,5,1,1275.5,0,0,0 +14017,17174,31301,31300,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.562777345784264,8.132952484680384,0,1,0,-9,6,0,1,-218.0195095550073,0,0,1,32,1,5,1,-9,-9,2019,1,1,8,0,38,40,15,1,0,1,0,10.28453795002087,10.28453795002087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,12,5,1,1275.5,0,0,0 +14018,17175,31302,-9,-9,-9,1,1,1,36,2,0,0,0,2,-9,1,1,0,2,5.688337475304274,5.947343912455684,0,3,0,0,0,-9,0,-959.7758239633761,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,6,60,60,15,1,6,-9,0,.642651082661027,.642651082661027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.93,47.89,3,4,0,1,12,2,0,711,0,0,0 +14019,17176,31303,31306,-9,-9,2,1,0,30,1,1,2,0,2,-9,2,1,0,4,7.495977057403778,7.554238108212741,0,2,0,-9,6,0,0,-65.84124778255062,0,0,1,30,2,3,1,-9,-9,2019,1,1,14,2,8,6,15,1,2,1,0,25.39765809354629,25.39765809354629,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.29,60.01,6,1,0,0,11,5,1,721,0,0,0 +14019,17176,31304,-9,31303,31306,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.456990848138,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,5,1,721,0,0,0 +14019,17176,31305,-9,31303,31306,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.9096283142778,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,721,0,0,0 +14019,17176,31306,31303,-9,-9,1,1,1,30,1,1,2,0,2,-9,1,1,0,3,9.636950420410386,9.452932290565078,0,2,0,-9,6,0,0,22.9489844427865,0,0,0,30,2,4,1,1,2,2019,1,2,9,0,60,48,15,1,0,1,0,23.64757636863445,23.64757636863445,0,0,0,0,0,0,0,1,1,0,7.570185090139619,0,0,0,49.04,55.86,6,1,0,0,11,5,1,721,0,0,0 +14020,17177,31307,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,3,0,7.362190357935984,7.73313377658631,3,0,0,0,-9,0,-953.101594821756,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.234540920359622,7.643954222540769,0,0,54.96,53.17,6,1,0,0,7,3,1,276,0,0,0 +14021,17178,31308,-9,31309,31311,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.9628979467337,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,0,1016.8,0,0,0 +14021,17178,31309,31311,-9,-9,1,1,0,35,1,1,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,14,0,0,-67.66697808458672,0,0,1,35,2,3,1,3,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.2,51.14,5,3,0,0,4,2,0,1016.8,0,0,0 +14021,17178,31310,-9,31309,31311,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1206.530445849522,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,0,1016.8,0,0,0 +14021,17178,31311,31309,-9,-9,2,1,1,35,1,1,3,0,2,-9,2,1,0,3,6.754596801617692,6.761200254955311,0,2,0,-9,8,0,0,81.41103368798123,0,0,0,35,3,3,3,-9,-9,2019,2,1,11,0,16,16,15,1,0,3,0,7.658099415080712,7.658099415080712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,3,0,0,4,2,0,1016.8,0,0,0 +14021,17178,31312,-9,31309,31311,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.0070030901151,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,2,0,1016.8,0,0,0 +14022,17179,31313,31314,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,3,7.728346306931885,7.721936786703351,0,1,0,-9,3,0,-17,-57.74632609065885,0,0,0,62,2,3,1,-9,-9,2019,1,1,1,0,63,0,15,1,0,1,0,4.551585992093339,4.551585992093339,0,0,0,0,0,0,0,1,1,0,.4141584428007505,0,0,0,65.2,47.14,6,1,0,0,10,5,1,770,0,0,0 +14022,17179,31314,31313,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,3,8.682229702513535,8.519315431868135,0,1,0,-9,3,0,17,180.5510672132557,0,0,0,45,2,3,1,3,3,2019,1,2,9,0,70,60,15,1,0,1,0,12.03909394236428,12.03909394236428,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.69,50.51,6,1,0,0,10,5,1,770,0,0,0 +14022,17180,31315,-9,31313,-9,3,1,1,23,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-961.8345049433664,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,33,11,0,0,15,3,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.08,40.88,1,1,1,0,10,1,1,1710,0,0,0 +14023,17181,31316,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,7.854035831535517,7.80379733110639,3,0,0,0,-9,0,-963.8553760087983,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.960397758331325,8.102793972773087,0,0,48.53,52.16,6,1,0,0,9,3,1,130,0,0,0 +14024,17182,31317,31319,-9,-9,2,1,1,56,1,0,2,0,1,-9,2,1,0,5,9.41758811475041,9.700949450646794,0,2,0,-9,9,0,3,3.09124200218282,0,0,0,53,2,3,1,-9,-9,2019,1,1,7,0,49,51,15,1,0,1,0,33.44577620731668,33.44577620731668,0,0,0,0,0,0,0,1,1,0,5.10126591248854,0,0,0,57.06,57.76,6,1,0,0,7,5,1,650,0,0,0 +14024,17182,31318,-9,31319,31317,4,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-988.5569334425168,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,7,5,1,650,0,0,0 +14024,17182,31319,31317,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,3,7.92679337638059,7.923028245145174,0,2,0,-9,20,0,-3,-68.37006438951246,0,0,0,56,1,5,1,3,2,2019,1,2,8,0,17,17,15,1,0,1,0,19.07220998951279,19.07220998951279,0,0,0,0,0,0,0,1,1,0,5.697816425272823,0,0,0,53.47,49.67,6,1,0,0,7,5,1,650,0,0,0 +14024,17182,31320,-9,31319,31317,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,2.241383833643048,2.5321491873978,2,0,0,0,-9,0,-974.3842401917384,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.139481825596549,0,0,0,52.87,55.58,7,1,0,0,7,5,1,650,0,0,0 +14025,17183,31321,31322,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,7.077437913488971,7.401786306749376,0,1,0,-9,7,0,2,17.62434610588294,0,0,0,50,2,4,1,2,2,2019,1,2,5,0,20,21,15,1,0,1,0,6.141565463741769,6.141565463741769,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,7,1,0,0,11,4,0,913,0,0,0 +14025,17183,31322,31321,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.311753312758395,8.022328352296828,0,1,0,-9,7,0,-2,8.999283156531662,0,0,0,52,2,4,1,2,2,2019,1,1,14,3,45,37,15,1,3,1,0,10.93839421372476,10.93839421372476,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,5,1,0,0,11,4,0,913,0,0,0 +14025,17184,31323,-9,31322,31321,3,1,1,26,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1104.511213674976,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,30,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,11,1,0,163,0,0,0 +14026,17185,31324,-9,-9,-9,1,1,1,48,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1055.789328133368,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.9053403335308877,0,0,0,37.51,58.26,3,1,1,0,2,1,1,239,0,0,0 +14027,17186,31325,31326,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,2,7.155540494015709,7.935903720791438,7.098828900975774,1,0,-9,45,0,-3,4.853773877030313,0,0,0,67,2,4,3,3,3,2019,2,2,7,0,25,36,15,1,0,4,0,7.670076443539404,7.670076443539404,0,0,0,0,0,0,0,1,1,0,0,7.01110296969969,0,0,58.07,35.76,4,1,0,0,12,4,1,559,0,0,0 +14027,17186,31326,31325,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.909487856551097,7.519392268986597,1,0,-9,45,0,3,33.16648619165986,0,0,0,64,2,2,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.639900955412947,7.254987612271466,0,0,41.17,59.31,7,1,0,0,12,4,1,559,0,0,0 +14028,17187,31327,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,3,0,7.144370554283404,7.189255375228713,3,0,0,0,-9,0,-993.1095338406519,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.532133361686888,7.116124011254474,6.965252857702098,3,48,52.43,6,1,0,0,6,3,1,877,0,0,0 +14029,17188,31328,-9,31329,31330,4,1,0,17,2,0,1,0,3,1,3,3,0,2,0,0,0,2,0,0,0,-9,0,-1051.546961402186,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.72,41.41,1,1,1,0,1,2,0,256.6666666666667,0,0,0 +14029,17188,31329,31330,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.651032121721312,7.49391060621685,0,2,0,-9,26,0,-2,54.21001049409975,0,0,0,50,3,4,1,-9,-9,2019,1,2,6,0,22,22,15,1,0,1,0,11.01726215530303,11.01726215530303,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,6,1,0,0,1,2,0,256.6666666666667,0,0,0 +14029,17188,31330,31329,-9,-9,2,1,1,50,1,0,1,0,3,-9,2,1,0,4,0,0,0,2,0,-9,26,0,2,-69.44495012533687,0,0,0,48,2,3,1,-9,2,2019,1,1,12,2,0,40,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.061527199836848,0,0,0,45.79,62.62,7,1,0,0,1,2,0,256.6666666666667,0,0,0 +14029,17189,31331,-9,31329,31330,3,1,1,21,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-921.4108344496094,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,4,0,0,22,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,7,1,1,0,1,1,0,1924,0,0,0 +14030,17190,31332,31333,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,6.302933026476542,6.368562858628781,1,0,-9,62,0,-3,0,0,0,0,77,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.516913458184725,0,0,64.58,30.92,6,3,0,0,7,2,1,442.5,0,0,0 +14030,17190,31333,31332,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,6.475200086668909,6.321633394579647,1,0,-9,62,0,3,0,0,0,0,74,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.549523894992509,0,0,58.34,42.51,6,3,0,0,7,2,1,442.5,0,0,0 +14031,17191,31334,31338,-9,-9,1,1,0,35,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,16,0,-7,59.93727465290328,0,0,1,42,2,3,1,3,3,2019,3,2,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,58.88,5,3,0,0,6,3,1,1123.8,0,0,0 +14031,17191,31335,-9,31334,31338,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.759010046252,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,3,1,1123.8,0,0,0 +14031,17191,31336,-9,31334,31338,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.6854006438136,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,6,3,1,1123.8,0,0,0 +14031,17191,31337,-9,31334,31338,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.840235145025,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,6,3,1,1123.8,0,0,0 +14031,17191,31338,31334,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,3,8.66848867704155,8.62897442136806,0,2,0,-9,16,0,7,33.60432076091821,0,0,0,35,3,4,3,-9,-9,2019,2,1,14,3,53,55,15,1,3,3,0,9.297282752156915,9.297282752156915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.33,44.92,4,3,0,1,6,3,1,1123.8,0,0,0 +14032,17192,31339,31340,-9,-9,1,1,0,35,1,0,0,0,2,-9,2,1,0,3,7.638224219859474,7.997866149115456,0,1,0,-9,1,-9,-8,-82.74757895033339,-9,0,1,43,1,4,1,2,2,2019,1,2,27,11,25,0,15,1,11,1,0,12.12094809528198,12.12094809528198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.37,64.58,5,1,0,0,7,5,1,502.5,0,0,0 +14032,17192,31340,31339,-9,-9,2,1,1,43,1,0,0,0,1,-9,2,1,0,4,9.360437920595167,9.420512940505281,0,1,0,-9,1,-9,8,37.79229061489855,-9,0,0,35,2,3,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,35.81099136265199,35.81099136265199,0,0,0,0,0,0,0,0,0,0,7.368703432445981,0,0,0,51,56,6,5,0,0,7,5,1,502.5,0,0,0 +14033,17193,31341,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.999844303022632,7.666354108471727,0,3,0,0,0,-9,0,-921.8884293771641,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,44,15,15,1,0,-9,0,5.432968620923654,5.432968620923654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.74,46.29,4,1,0,0,2,3,0,4176,0,0,0 +14034,17194,31342,31343,-9,-9,2,1,1,79,1,0,0,0,1,-9,1,1,0,2,7.517496996449554,8.447830413750811,7.41035004270466,1,0,-9,57,0,2,-34.63618789657522,0,0,0,77,2,4,3,3,2,2019,2,1,8,1,30,20,15,1,1,4,0,7.243604682810526,7.243604682810526,1,0,0,0,0,0,0,1,1,0,7.195990602618908,7.175262104895093,0,0,62.2,22.93,6,1,0,0,10,4,1,614,0,0,0 +14034,17194,31343,31342,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,7.365085095921607,7.248892647969281,1,0,-9,57,0,-2,31.07436773739565,0,0,0,79,1,2,1,3,3,2019,3,2,12,4,0,0,15,4,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.337635463326397,7.485820493524441,6.657532281532117,3,48.87,58.55,6,1,0,0,10,4,1,614,0,0,0 +14035,17195,31344,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,4,3,0,1,0,7.183509213594223,7.553954646829873,3,0,0,0,-9,0,-1064.099622434035,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.578597698191852,7.406743096048703,0,0,44.12,44.92,5,1,0,0,11,3,1,9359,0,0,0 +14036,17196,31345,31346,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,3,9.776467331360646,9.893480872787976,0,2,0,-9,8,0,1,20.20166623478732,0,0,0,51,1,3,1,3,3,2019,1,2,12,0,64,72,15,1,0,1,0,28.73871482067021,28.73871482067021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.89,54.38,4,3,0,0,2,5,1,211.3333333333333,0,0,0 +14036,17196,31346,31345,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,3,8.839108297461344,8.39195983809096,0,2,0,-9,8,0,-1,-17.2329074548658,0,0,0,52,1,3,1,-9,-9,2019,1,1,12,0,38,39,15,1,0,1,0,16.48945516070176,16.48945516070176,0,0,0,0,0,0,0,0,0,0,3.130058379973662,0,0,0,49.04,55.86,4,3,0,0,2,5,1,211.3333333333333,0,0,0 +14036,17196,31347,-9,31346,31345,4,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-955.4247081839389,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,5,3,0,0,2,5,1,211.3333333333333,0,0,0 +14036,17197,31348,-9,31346,31345,3,1,1,20,2,0,1,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-979.1608310936459,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.004211618198716,0,0,0,27.41,54.09,4,3,0,0,2,1,1,1079,0,0,0 +14037,17198,31349,31352,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,3,8.178148838278993,8.172941509254878,0,2,0,-9,21,0,-3,-41.66612805443433,0,0,0,48,1,3,1,2,2,2019,1,1,10,0,37,19,15,1,0,1,0,10.58726120175844,10.58726120175844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,5,1,0,0,4,4,0,571.25,0,0,0 +14037,17198,31350,-9,31349,31352,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-988.9880137624821,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,4,4,0,571.25,0,0,0 +14037,17198,31351,-9,31349,31352,5,1,0,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1037.050754351241,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,4,4,0,571.25,0,0,0 +14037,17198,31352,31349,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,3,8.907602844438687,8.899668620789891,0,2,0,-9,21,0,3,17.06524240244973,0,0,0,45,1,3,1,2,2,2019,1,2,10,0,41,40,15,1,0,1,0,21.62403158218162,21.62403158218162,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,49.73,5,1,0,0,4,4,0,571.25,0,0,0 +14038,17199,31353,31354,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,3,8.003770466131735,8.029900168396747,0,1,0,-9,10,0,-8,58.9132779075426,0,0,0,67,1,3,3,2,2,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.039384195704823,0,0,0,35.53,52.76,4,1,0,0,12,5,1,350.5,0,0,0 +14038,17199,31354,31353,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,8.658773091108726,8.390225499373777,1,0,-9,10,0,8,-61.37823949433683,0,0,0,59,1,3,3,2,2,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.474747736347105,7.931973334152707,0,0,41.8,37.6,3,1,0,0,12,5,1,350.5,0,0,0 +14039,17200,31355,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,4,8.292704844544422,8.927523541542472,7.207347349055319,4,0,-9,0,-9,0,-1025.122272458488,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,53,0,15,1,0,-9,0,11.59118667762738,11.59118667762738,0,0,0,0,0,0,0,1,1,0,7.448958223307633,0,0,0,46.16,58.62,4,1,0,1,8,4,1,364.5,0,0,0 +14039,17200,31356,-9,31355,-9,4,1,1,16,2,0,1,0,2,-9,3,2,0,5,0,0,0,4,0,-9,0,-9,0,-957.2970894455228,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,5,1,1,0,8,4,1,364.5,0,0,0 +14040,17201,31357,31359,-9,-9,4,1,1,44,1,0,1,0,3,-9,2,1,0,3,8.921933356168347,8.762507731122264,0,2,0,-9,7,0,0,32.20342191298616,0,0,0,44,2,1,3,-9,-9,2019,2,1,11,0,57,60,15,1,0,3,0,15.42184478024963,15.42184478024963,0,0,0,0,0,0,0,1,1,0,0,0,11.34240462889927,1,49.51,41.82,5,1,0,0,12,4,1,610.3333333333334,0,0,0 +14040,17201,31358,-9,31359,31357,3,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-974.2395202802622,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.936857611066564,3,58.22,40.76,5,1,0,0,12,4,1,610.3333333333334,0,0,0 +14040,17201,31359,31357,-9,-9,1,1,0,44,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,7,0,0,-1.202917548760162,0,0,1,44,3,3,1,3,-9,2019,3,4,36,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.24056164668887,3,20.33,23.46,1,1,0,0,12,4,1,610.3333333333334,0,0,0 +14040,17202,31360,-9,31359,31357,2,1,0,19,2,0,1,0,2,-9,2,1,0,5,7.750359241761172,7.672240861703743,0,3,0,0,0,-9,0,-1003.799066746968,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,1,37,0,15,1,1,-9,1,6.195512590173049,6.195512590173049,0,0,0,0,0,0,0,1,1,0,0,0,18.13839283674722,3,49.03,50.53,6,1,0,0,12,3,1,7591,0,0,0 +14041,17203,31361,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,5.637258927288126,5.538518572598831,3,0,0,0,-9,0,-1065.449710719498,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,5.359412548356169,0,0,1.504601007494317,0,27.76000823803207,1,1,0,4.988934092923158,0,0,0,44.99,43.48,4,1,0,0,5,2,1,804,0,0,0 +14041,17204,31362,-9,31361,-9,2,1,1,46,2,0,0,0,2,-9,2,1,0,4,7.433326854319382,7.413862819187561,0,3,0,0,0,-9,0,-1033.895786924974,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,40,37,15,1,1,-9,1,4.673671881815867,4.673671881815867,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,6,1,0,0,5,3,1,1707,0,0,0 +14042,17205,31363,-9,-9,-9,1,1,1,34,2,0,0,0,2,-9,2,1,0,3,8.220024924888826,8.497292887078927,0,3,0,0,0,-9,0,-1114.77493700781,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,45,3,15,1,1,-9,0,8.465497829204452,8.465497829204452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.3,45.59,5,1,0,0,7,4,1,249,0,0,0 +14043,17206,31364,31365,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,48,0,-2,0,0,0,0,69,2,4,3,2,2,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,1,0,23.52349212880649,0,0,0,0,1,1,0,0,0,0,0,42.28,32.03,3,1,0,0,12,1,1,95.5,0,0,0 +14043,17206,31365,31364,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,2,0,0,0,0,67,2,2,3,-9,-9,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.9438618772304,1,43.5,54.1,2,1,0,0,12,1,1,95.5,0,0,0 +14044,17207,31366,-9,-9,-9,2,1,0,57,3,0,0,0,2,-9,2,1,0,2,8.674892739128699,8.136335945895688,0,3,0,0,0,-9,0,-922.3894538354301,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,2,35,35,15,1,2,-9,0,12.32351439637678,12.32351439637678,0,0,0,0,0,0,0,0,0,0,2.43031859783346,0,0,0,40.71,44.01,3,2,0,0,8,4,1,364,0,0,0 +14045,17208,31367,31368,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,3,8.418976800383925,8.198533813901195,0,1,0,-9,5,0,-2,-11.82770116207182,0,0,0,54,2,3,1,-9,-9,2019,1,1,15,4,37,37,15,1,4,1,0,13.22583341519781,13.22583341519781,0,0,0,0,0,0,0,0,0,0,4.977878759349136,0,0,0,33.73,50.85,3,1,0,0,9,5,1,428,0,0,0 +14045,17208,31368,31367,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.556677344779397,8.76815909135871,0,1,0,-9,5,0,2,12.54689264077228,0,0,0,52,1,3,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,20.35889073529638,20.35889073529638,0,0,0,0,0,0,0,0,0,0,1.876652163162353,0,1.069540509204213,3,49.04,55.86,6,1,0,0,9,5,1,428,0,0,0 +14046,17209,31369,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,3,8.823165618157395,8.839730248532211,0,3,0,-9,0,1,0,-978.4954583576334,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,43,39,15,1,0,-9,0,17.2504811587701,17.2504811587701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.85,53.68,5,1,0,0,9,5,1,500,0,0,0 +14046,17210,31370,-9,-9,31369,2,1,1,20,2,0,0,0,2,-9,11,3,0,4,7.7102229111202,7.335032153461538,0,3,0,0,0,-9,0,-1069.267963138847,0,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,47,48,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.23,52.55,6,1,0,1,9,3,1,855,0,0,0 +14047,17211,31371,31372,-9,-9,1,1,1,50,1,0,2,0,3,-9,2,1,0,3,7.784927012642615,7.822065853567819,0,2,0,-9,20,0,13,7.612956504251458,0,0,0,37,2,3,1,2,-9,2019,1,2,10,0,9,40,15,1,0,1,0,34.56433594817125,34.56433594817125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.2,39.82,1,1,0,0,8,4,0,591.5,0,0,0 +14047,17211,31372,31371,-9,-9,2,1,0,37,1,0,2,0,2,-9,2,1,0,3,8.094223749845758,8.146384254278837,0,2,0,-9,20,0,-13,.3368775523772337,0,0,1,50,3,3,1,-9,-9,2019,1,1,9,0,10,40,15,1,0,1,0,51.51183272858979,51.51183272858979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.97,47.28,6,1,0,0,8,4,0,591.5,0,0,0 +14048,17212,31373,31374,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,3,8.464255041324439,7.987708689093223,0,1,0,-9,8,0,1,92.60828924873496,0,0,0,55,3,3,1,-9,-9,2019,1,1,10,0,40,44,15,1,1,1,0,12.23483975663436,12.23483975663436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,5,1,0,0,4,4,1,528.5,0,0,0 +14048,17212,31374,31373,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,3,7.392548970483311,7.694551256843034,0,1,0,-9,22,0,-1,21.59077732379279,0,0,0,56,2,3,1,3,3,2019,1,2,9,1,34,20,15,1,1,1,0,6.633716493014151,6.633716493014151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.92,44,6,1,0,0,4,4,1,528.5,0,0,0 +14048,17213,31375,-9,31374,31373,3,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.670159808741395,7.502734069207543,0,3,0,0,0,-9,0,-1044.185220016838,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,38,40,15,1,2,-9,1,4.426462993883423,4.426462993883423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,4,3,1,885,0,0,0 +14049,17214,31376,31377,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,1,24,-9,1,0,0,0,0,67,2,1,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.218352517134053,0,117.2878803542512,1,50.16,32.82,6,1,0,0,10,1,1,991.5,0,0,0 +14049,17214,31377,31376,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,24,-9,-1,0,-9,0,0,68,3,2,3,3,3,2019,4,1,23,10,0,0,15,4,10,4,0,0,0,1,0,116.4931067961999,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,1,1,0,0,10,1,1,991.5,0,0,0 +14050,17215,31378,31379,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,3,7.61408411103891,7.632552480189925,0,1,0,-9,38,0,1,160.4962322101665,0,0,0,61,2,4,1,2,2,2019,1,2,20,8,22,0,15,1,8,1,0,12.70644481110316,12.70644481110316,0,0,0,0,0,0,0,0,0,0,1.292943464798981,0,0,0,33.48,53.45,3,1,0,0,9,5,1,725.5,0,0,0 +14050,17215,31379,31378,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,9.371607998557726,9.257954809753478,0,1,0,-9,38,0,-1,-89.66009267591579,0,0,0,62,1,3,1,3,2,2019,1,1,11,2,60,50,15,1,2,1,0,19.81666246868991,19.81666246868991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,59.08,6,1,0,0,9,5,1,725.5,0,0,0 +14050,17216,31380,-9,31378,31379,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.369984977292592,8.495078447495709,0,3,0,0,0,-9,0,-1031.691988780568,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,44,43,15,1,1,-9,1,11.98014483624868,11.98014483624868,0,0,0,0,0,0,0,0,0,0,0,0,0,3,43.73,59.7,5,1,0,0,9,5,1,415,0,0,0 +14050,17217,31381,-9,31378,31379,4,1,0,19,2,0,0,0,2,-9,2,1,0,3,8.107219861359697,7.959335364646751,0,3,0,0,0,-9,0,-879.1563772496603,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,38,75,15,1,0,-9,1,6.377646621573944,6.377646621573944,0,0,0,0,0,0,0,0,0,0,2.660835680011405,0,0,0,33.47,48.38,5,1,0,0,9,3,1,523,0,0,0 +14051,17218,31382,-9,-9,-9,1,1,0,74,2,0,0,0,2,-9,4,3,0,3,0,7.209401556082981,6.938171760252615,3,0,0,0,-9,0,-1015.022203517802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.118378213316136,0,0,64.55,36.47,7,1,0,0,2,2,1,308,0,0,0 +14052,17219,31383,31384,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,52,0,1,-110.5477468331016,0,0,0,69,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.52056297001326,1,37.64,38.46,6,1,0,0,4,2,1,794.5,0,0,0 +14052,17219,31384,31383,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,2,0,6.401243043421258,6.306325015016357,1,0,-9,52,0,-1,-15.80682579090165,0,0,0,70,2,2,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,0,0,1.48688281487165,0,0,1,1,0,0,6.376494676425906,77.36283026813986,1,43.43,30.37,7,1,0,0,4,2,1,794.5,0,0,0 +14053,17220,31385,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,2,1,0,4,7.841540634632073,8.346335301653209,0,3,0,0,0,-9,0,-919.4873952871089,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,45,15,1,0,-9,0,9.233674948005955,9.233674948005955,0,0,0,0,0,0,0,1,1,0,4.041865447708251,0,10.06340703289208,3,64.62,48.62,6,1,0,0,5,4,1,517,0,0,0 +14054,17221,31386,31389,-9,-9,2,1,1,49,1,0,3,0,2,-9,1,1,0,4,7.647521744783838,7.105280740200645,0,2,0,-9,23,0,10,56.05309520645323,0,0,0,39,3,4,3,-9,-9,2019,2,1,9,0,70,40,15,1,1,3,0,2.797242982278191,2.797242982278191,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,4,2,1,593.25,0,0,0 +14054,17221,31387,-9,31389,31386,7,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.121130194303,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,2,1,593.25,0,0,0 +14054,17221,31388,-9,31389,31386,6,1,1,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-909.3160598689118,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,5,3,0,0,4,2,1,593.25,0,0,0 +14054,17221,31389,31386,-9,-9,1,1,0,39,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-10,-16.7402702326152,0,0,1,49,2,4,1,3,-9,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,5,3,0,0,4,2,1,593.25,0,0,0 +14054,17222,31390,-9,31389,31386,3,1,1,21,2,0,3,0,2,1,2,1,0,4,8.067722595403428,8.182985900403096,0,3,0,0,0,-9,0,-1031.579202442107,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,0,15,1,1,-9,1,7.344911828765021,7.344911828765021,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,3,0,0,4,3,1,695,0,0,0 +14054,17223,31391,-9,31389,31386,4,1,0,19,2,0,3,0,2,-9,2,1,0,2,6.531603148203429,6.555480627778527,0,3,0,0,0,-9,0,-915.122816447185,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,6,0,15,1,1,-9,1,13.04176029851428,13.04176029851428,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.87,48.71,4,3,0,0,4,2,1,370,0,0,0 +14055,17224,31392,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,2,1,0,4,6.857129951740289,7.033493710688566,4.867020993745077,4,0,0,0,-9,0,-1121.644283128637,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,4,0,19,25,15,1,0,-9,0,8.398041334113643,8.398041334113643,0,0,0,0,0,0,0,1,1,0,4.395042143840818,0,0,0,34.48,50.3,3,1,0,0,1,2,0,1273,0,0,0 +14055,17224,31393,-9,31392,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.3762121775302,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,1,2,0,1273,0,0,0 +14055,17225,31394,-9,31392,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1101.988152306521,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.72,61.25,5,1,0,0,1,2,0,701,0,0,0 +14056,17226,31395,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,6.255300852447524,6.574658438188922,3,0,0,0,-9,0,-1108.63816170171,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.118506365412118,0,0,54.37,54.8,7,1,0,0,12,2,1,1007,0,0,0 +14057,17227,31396,31399,-9,-9,1,1,0,27,1,0,2,0,2,-9,2,1,0,4,6.918014880444491,6.875879626402588,0,2,0,-9,9,0,-2,-4.673018390287089,0,1,1,29,2,4,1,2,2,2019,1,2,5,0,12,36,15,1,0,1,0,9.396704907636863,9.396704907636863,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,4,3,0,642.25,0,0,0 +14057,17227,31397,-9,31396,31399,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.676395703897,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,0,642.25,0,0,0 +14057,17227,31398,-9,31396,31399,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.449537498871,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,0,642.25,0,0,0 +14057,17227,31399,31396,-9,-9,2,1,1,29,1,0,2,0,2,-9,2,1,0,4,8.210002290575632,7.96893167842776,0,2,0,-9,9,0,2,91.18249361875354,0,1,0,27,2,4,1,2,2,2019,1,1,6,0,48,48,15,1,0,1,0,6.4157264245367,6.4157264245367,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,4,3,0,642.25,0,0,0 +14058,17228,31400,-9,-9,-9,1,1,0,41,2,0,0,0,2,-9,2,1,0,4,8.047434620103676,7.775251542506698,0,3,0,-9,0,-9,0,-981.0079290949275,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,0,15,1,0,-9,0,6.839800327123223,6.839800327123223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,6,1,0,1,10,3,0,705,0,0,0 +14059,17229,31401,31402,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,7.984409679701601,8.101837753588892,6.102476268426484,2,0,-9,7,0,-1,106.7279942958693,0,0,0,49,1,3,1,2,3,2019,1,5,8,0,21,21,15,1,0,1,0,16.41171945875131,16.41171945875131,0,0,0,0,0,0,0,1,1,0,5.88909063099451,0,0,0,56.35,51.16,6,1,0,0,7,5,1,890,0,0,0 +14059,17229,31402,31401,-9,-9,5,1,1,49,1,0,2,0,1,-9,2,1,0,3,9.623145160301876,9.661885115676496,0,2,0,-9,7,0,1,-26.64709045796766,0,0,0,48,2,3,1,-9,-9,2019,1,1,7,0,55,60,15,1,0,1,0,35.90702335364646,35.90702335364646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,7,5,1,890,0,0,0 +14059,17229,31403,-9,31401,31402,3,1,0,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1172.284250762407,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,15,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,63.56,4,1,0,0,7,5,1,890,0,0,0 +14059,17229,31404,-9,31401,31402,4,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1065.817992676324,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,7,5,1,890,0,0,0 +14060,17230,31405,31407,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,4,8.666984171666334,8.994868224325716,0,2,0,-9,1,-9,-2,-74.18268114127028,-9,0,1,36,1,4,1,-9,-9,2019,1,1,11,1,38,0,15,1,1,1,0,17.2308602788334,17.2308602788334,0,0,0,0,0,0,0,1,1,0,0,0,1.017991147918802,3,33.2,63.27,6,1,0,0,13,5,1,1001,0,0,0 +14060,17230,31406,-9,31405,31407,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1156.978240843454,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,13,5,1,1001,0,0,0 +14060,17230,31407,31405,-9,-9,1,1,1,36,1,1,2,0,1,-9,2,1,0,4,8.748763335456312,8.920619216246941,0,2,0,-9,1,-9,2,58.99257380028893,-9,0,0,34,1,4,1,2,2,2019,1,2,10,0,80,0,15,1,0,1,0,11.01764186798214,11.01764186798214,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,61.23,6,1,0,0,13,5,1,1001,0,0,0 +14060,17230,31408,-9,31405,31407,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1068.534552610563,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,5,1,1001,0,0,0 +14061,17231,31409,31410,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,8.017063400211399,8.025656030582489,1,0,-9,46,0,0,-51.63479234216461,0,0,0,66,2,2,3,3,3,2019,4,1,6,0,0,50,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.876560405019439,8.037125476292022,0,0,62.49,55.09,6,1,0,0,7,4,1,164.5,0,0,0 +14061,17231,31410,31409,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,6.876542581082782,6.75472526598289,1,0,-9,46,0,0,39.13220710565825,0,0,0,66,3,4,3,3,3,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,1,0,1.101312528023232,0,0,0,0,1,1,0,0,6.531571774213142,0,0,37.77,24.67,3,1,0,0,7,4,1,164.5,0,0,0 +14062,17232,31411,31412,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,2,5.173455443992491,7.611372542726004,7.208941474817331,1,0,-9,10,0,-5,-61.7998458887698,0,0,0,64,1,4,3,2,3,2019,4,1,7,0,4,4,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.68402579637787,7.509061694639868,0,0,56.74,33.83,7,1,0,0,2,4,1,1040.5,0,0,0 +14062,17232,31412,31411,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,8.419005862781448,8.554028945190352,1,0,-9,10,0,5,73.56647025707794,0,0,0,59,1,2,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.80380675120626,8.278573638556551,0,0,57.73,54.53,7,1,0,0,2,4,1,1040.5,0,0,0 +14063,17233,31413,31415,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,3,8.688760839238366,8.577663618550108,0,2,0,-9,6,0,0,-29.15327011035763,0,0,0,50,2,5,1,2,2,2019,1,1,10,1,50,50,15,1,1,1,0,9.493763362170855,9.493763362170855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.91,47.75,6,1,0,0,2,5,1,3441.666666666667,0,0,0 +14063,17233,31414,-9,31413,31415,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1002.593678064925,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,2,5,1,3441.666666666667,0,0,0 +14063,17233,31415,31413,-9,-9,1,1,1,50,1,0,2,0,2,-9,2,1,0,5,8.72535695745874,9.17957913399658,0,2,0,-9,6,0,0,-15.95173733060375,0,0,0,50,2,3,1,2,2,2019,1,2,6,0,41,44,15,1,0,1,0,23.01639471421407,23.01639471421407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,2,5,1,3441.666666666667,0,0,0 +14063,17234,31416,-9,31413,31415,3,1,0,18,2,0,2,1,2,0,7,2,0,1,0,0,0,3,0,0,0,-9,0,-1031.126753399674,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.4,45.17,6,1,0,0,2,5,1,643,0,0,0 +14064,17235,31417,31418,-9,-9,2,1,0,64,1,0,0,0,1,-9,1,1,0,3,8.06866299223425,8.08489296423611,0,1,0,-9,44,0,0,-46.83415030355955,0,0,0,64,2,3,1,3,2,2019,1,1,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.024219727332291,0,0,0,60.62,41.03,6,1,0,0,4,5,1,871.5,0,0,0 +14064,17235,31418,31417,-9,-9,1,1,1,64,1,0,0,0,2,-9,1,1,0,3,9.569120160053151,9.666711163910517,5.841052096952909,1,0,-9,44,0,0,82.28689958045892,0,0,0,64,1,3,1,3,3,2019,1,2,7,0,0,60,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.402269181823033,6.527460849909601,0,0,60.29,52.11,6,1,0,0,4,5,1,871.5,0,0,0 +14065,17236,31419,31420,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,2,7.617564631762077,7.279268606622387,0,1,0,-9,38,0,0,86.45142292629103,0,0,0,61,3,2,3,2,3,2019,2,2,11,0,30,31,15,1,0,4,0,5.358037637784775,5.358037637784775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.62,49.1,4,1,0,1,11,3,1,1166,0,0,0 +14065,17236,31420,31419,-9,-9,2,1,1,61,1,0,0,0,3,-9,4,3,0,2,0,6.042727409013,6.135148169796389,1,0,-9,41,0,0,-33.6278021410609,0,0,0,61,2,2,1,3,2,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.083722978319059,0,0,53.38,41.98,5,1,0,0,11,3,1,1166,0,0,0 +14066,17237,31421,-9,-9,-9,1,1,0,57,3,0,1,0,3,-9,8,3,1,3,0,0,0,4,0,0,0,-9,0,-1116.956549723221,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,4,1,0,559,0,0,0 +14066,17238,31422,-9,31421,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-773.2339926321192,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.73180658432986,3,54.63,58.83,6,1,0,0,4,1,0,395,0,0,0 +14067,17239,31423,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,6.537468370623193,7.182951610930728,5.512725228778332,3,0,0,0,-9,0,-1002.979395664913,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,9,35,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.29619789918535,0,0,44,18.14,2,1,0,1,10,2,1,155,0,0,0 +14068,17240,31424,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,2,0,6.960332137947234,6.793381500954762,3,0,0,0,-9,0,-1057.662074867691,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,1,0,0,14.50055043949799,0,0,0,1,1,0,0,6.678499551529138,0,0,47.95,21.46,3,1,0,0,8,2,1,861,0,0,0 +14068,17241,31425,-9,31424,-9,2,1,0,52,2,0,0,0,3,-9,2,1,0,3,7.278821017976949,6.980091533608624,0,3,0,0,0,-9,0,-1062.641523999597,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,21,21,15,1,1,-9,1,7.037476783089498,7.037476783089498,0,0,0,0,0,0,0,1,1,0,0,0,17.38307791058607,3,48.45,57.49,6,1,0,0,8,3,1,619,0,0,0 +14069,17242,31426,31427,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,2,0,7.880934436747244,7.63788053230098,1,0,-9,6,0,-1,-27.65339619639234,0,0,0,65,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.389879124475989,7.333070284431806,2.63235502601445,3,47,38,6,1,0,0,6,3,1,414,0,0,0 +14069,17242,31427,31426,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,6.857702067502702,6.493249483454258,1,0,-9,3,0,1,59.35075349800982,0,0,0,64,1,2,3,-9,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.031404764143375,0,0,44.74,48.37,6,1,0,0,6,3,1,414,0,0,0 +14070,17243,31428,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,3,8.245733035350559,8.242710923603472,6.426910468722298,4,0,0,0,-9,0,-990.4827140834911,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,12,30,38,15,1,12,-9,0,14.43746277854946,14.43746277854946,0,0,0,0,0,0,0,1,1,0,6.608968558047794,0,0,0,15.66,68.27,5,1,0,0,11,4,1,292,0,0,0 +14070,17244,31429,-9,31428,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,3,8.006365764641739,7.448798231645395,0,3,0,0,0,-9,0,-966.0316100264171,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,38,37,15,1,0,-9,1,5.861278817010868,5.861278817010868,0,0,0,0,0,0,0,1,1,0,2.301947071606816,0,0,0,41.71,49.71,5,1,0,0,11,3,1,903,0,0,0 +14071,17245,31430,31431,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.296187877774909,7.830980428188271,0,1,0,-9,7,0,0,-23.30448548405627,0,0,0,49,2,2,1,2,2,2019,1,1,15,4,42,37,15,1,4,1,0,9.599482829327505,9.599482829327505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,5,1,0,0,7,5,1,507,0,0,0 +14071,17245,31431,31430,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,2,8.470966678562439,8.503275850458065,0,1,0,-9,7,0,0,-137.2019241813387,0,0,0,49,2,3,1,2,2,2019,1,2,10,0,65,61,15,1,0,1,0,8.220379943976525,8.220379943976525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.38,47.51,6,1,0,0,7,5,1,507,0,0,0 +14071,17246,31432,-9,31430,31431,3,1,0,25,2,0,0,0,1,-9,2,1,0,3,8.531517311785615,8.526222874946864,0,3,0,0,0,-9,0,-885.7285411487621,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,28,12,38,37,15,1,12,-9,1,13.26986713872658,13.26986713872658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.07,59.74,2,1,0,0,7,4,1,362,0,0,0 +14072,17247,31433,-9,-9,-9,1,1,1,31,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1078.085311327557,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.44,44.94,6,1,1,0,11,1,0,1468,0,0,0 +14073,17248,31434,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,4,8.504385649204901,8.958198735801092,7.280314678571854,3,0,0,0,-9,0,-997.9299833822081,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,20,15,15,1,0,-9,0,31.68275886369215,31.68275886369215,0,0,0,0,0,0,0,1,1,0,5.323912841387932,7.59841345683567,0,0,57.73,54.53,5,1,0,0,8,5,1,462,0,0,0 +14074,17249,31435,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1037.735099345292,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,32.67,5,1,0,0,2,1,0,588,0,0,0 +14074,17250,31436,-9,31435,-9,2,1,1,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1038.707381552811,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.1,57.51,7,1,0,0,2,1,0,204,0,0,0 +14075,17251,31437,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,4,7.772871571668717,8.394418104846039,7.595665331213994,3,0,0,0,-9,0,-1089.618543629085,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,24,24,15,1,0,-9,0,10.42403212576289,10.42403212576289,0,0,0,0,0,0,0,0,0,0,4.673728514796546,7.579987417909792,.6928388499366138,3,59.14,52.5,6,1,0,0,4,5,1,420,0,0,0 +14076,17252,31438,31439,-9,-9,2,1,0,34,1,1,3,0,1,-9,2,1,0,4,7.303224074756239,7.009239438080386,0,2,0,-9,10,0,0,65.38704097161353,0,0,1,34,1,3,1,2,2,2019,1,1,9,0,15,15,15,1,0,1,0,10.41698222551599,10.41698222551599,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,870.4,0,0,0 +14076,17252,31439,31438,-9,-9,1,1,1,34,1,1,3,0,1,-9,2,1,0,3,8.949889290666672,8.713381483424573,0,2,0,-9,10,0,0,-30.10340111402592,0,0,0,34,1,4,1,2,1,2019,1,2,9,0,46,45,15,1,0,1,0,17.81072381925915,17.81072381925915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,6,1,0,0,9,4,1,870.4,0,0,0 +14076,17252,31440,-9,31438,31439,4,1,0,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1151.055394655124,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,870.4,0,0,0 +14076,17252,31441,-9,31438,31439,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-996.3606680132162,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,9,4,1,870.4,0,0,0 +14076,17252,31442,-9,31438,31439,3,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.504971783763,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,870.4,0,0,0 +14077,17253,31443,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,4,3,0,3,0,7.015343377250629,7.01844571581726,3,0,0,0,-9,0,-1016.64288814525,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.206018788256374,6.96916336649604,0,0,52,48,5,4,0,0,6,2,1,543,0,0,0 +14078,17254,31444,31445,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,7.148553576801138,7.219668348227064,1,0,-9,47,0,1,7.723779974623703,0,0,0,71,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.689073918787045,7.238628778671277,73.17488680809028,1,51.08,54.77,7,1,0,0,12,2,1,1046.5,0,0,0 +14078,17254,31445,31444,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,4.861850714132308,4.871965596146442,1,0,-9,47,0,-1,35.93731632061246,0,0,0,72,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,3.500532947163798,0,0,7.261070252550528,0,1,1,0,4.369234367106351,4.562638724342071,0,0,34.64,32.68,5,1,0,0,12,2,1,1046.5,0,0,0 +14079,17255,31446,31447,-9,-9,2,1,0,23,1,0,0,0,1,-9,2,1,0,4,8.167326329196962,7.810511023289038,0,1,0,-9,2,0,0,17.45076120347668,0,1,1,23,1,5,1,-9,-9,2019,1,1,11,0,36,35,15,1,2,1,0,7.95446834200318,7.95446834200318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,5,1,0,0,8,4,0,223,0,0,0 +14079,17255,31447,31446,-9,-9,1,1,1,23,1,0,0,0,1,1,2,1,0,5,7.806171759830937,7.563524560781467,0,1,0,-9,2,0,0,-78.54526232297653,-9,1,0,23,1,4,1,-9,-9,2019,1,2,1,0,36,0,15,1,0,1,0,9.161097160676812,9.161097160676812,0,0,0,0,0,0,0,0,0,0,2.353168919902658,0,0,0,57.06,57.76,7,1,0,0,8,4,0,223,0,0,0 +14080,17256,31448,31449,-9,-9,1,1,1,61,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,42,0,0,0,0,0,0,61,3,2,3,3,3,2019,4,2,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,35.01,4,3,1,0,6,1,1,348.5,0,0,0 +14080,17256,31449,31448,-9,-9,2,1,0,61,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,42,0,0,0,0,0,0,61,3,2,3,3,3,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.465156626086555,3,43.45,38.38,5,3,0,0,6,1,1,348.5,0,0,0 +14080,17257,31450,-9,31449,31448,3,1,1,38,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-919.8012207737268,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.88,23.34,2,3,0,0,6,1,1,497,0,0,0 +14080,17258,31451,-9,31449,31448,4,1,1,32,3,0,0,0,2,-9,2,1,0,3,7.407816215134875,6.996517587973947,0,3,0,-9,0,1,0,-986.4133225694148,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,24,25,15,1,0,-9,1,6.393348573098995,6.393348573098995,0,0,0,0,0,0,0,1,1,0,0,0,3.157277447725924,3,57.33,53.46,6,3,0,0,6,2,1,99,0,0,0 +14081,17259,31452,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,8,3,1,2,0,6.207916559451889,6.456140280634317,3,0,0,0,-9,0,-909.860332635472,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,0,18,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.77479340803788,0,0,0,29.59,24.13,1,1,0,1,4,2,0,360,0,0,0 +14082,17260,31453,-9,-9,-9,2,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1068.30677996673,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,40.70241962563698,0,0,0,1,1,0,0,0,0,0,37.88,21.72,4,3,0,0,6,1,1,119,0,0,0 +14082,17261,31454,-9,31453,-9,3,1,0,63,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-918.0102633891931,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.49,34.65,4,3,1,0,6,1,1,234,0,0,0 +14082,17262,31455,-9,31453,-9,4,1,0,55,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-969.2626629707507,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.8,47.61,4,3,1,0,6,1,1,322,0,0,0 +14082,17263,31456,-9,31453,-9,5,1,0,51,2,0,0,0,3,-9,2,1,0,5,7.238234971723791,7.267165717263357,0,3,0,0,0,-9,0,-1008.594976488925,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,37,35,15,1,0,-9,1,4.1672842307629,4.1672842307629,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.67,55.62,4,3,0,0,6,3,1,641,0,0,0 +14083,17264,31457,31458,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,3,8.910946468087582,8.872562606250117,0,1,0,-9,16,0,3,-50.00723022027399,0,0,0,46,3,3,1,1,1,2019,1,2,10,2,50,53,15,1,2,1,0,17.44891841833532,17.44891841833532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,5,2,0,0,9,5,0,406.5,0,0,0 +14083,17264,31458,31457,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,3,7.871690977486073,8.160987506891212,0,1,0,-9,7,0,-3,-58.41615437068549,0,0,0,49,1,3,1,-9,-9,2019,1,1,35,12,34,41,15,1,12,1,0,8.723463175673309,8.723463175673309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.9,49.02,4,2,0,0,9,5,0,406.5,0,0,0 +14084,17265,31459,31460,-9,-9,2,1,0,62,1,0,0,0,1,-9,1,1,0,4,7.697335926345462,7.648247437153444,0,1,0,-9,9,0,-1,-24.92169189363656,0,0,0,63,1,3,3,2,1,2019,2,1,8,2,33,20,15,1,2,4,0,9.299426129473112,9.299426129473112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,7,1,0,0,12,5,1,485,0,0,0 +14084,17265,31460,31459,-9,-9,1,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,8.659440956241484,8.544213562704771,1,0,-9,9,0,1,-197.5481935654667,0,0,0,62,1,4,1,2,1,2019,3,2,11,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.397986385002167,8.684635779912606,0,0,47.87,43.07,6,1,0,0,12,5,1,485,0,0,0 +14085,17266,31461,31462,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,2,0,6.337054457504291,6.257087170507236,1,0,-9,36,0,-8,27.5152321191696,0,0,0,74,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.69634864129391,6.138366075089697,0,0,60.71,37.26,6,1,0,0,5,2,1,431.5,0,0,0 +14085,17266,31462,31461,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,3.377636853210896,3.616488286915946,1,0,-9,36,0,8,-75.85365525579363,0,0,0,66,3,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.188075459611135,3.684267294371526,16.38817324699971,3,52,45,6,1,0,0,5,2,1,431.5,0,0,0 +14086,17267,31463,-9,-9,-9,1,1,0,38,3,0,2,0,1,-9,1,1,0,5,6.513450577169445,7.326472837010363,5.788350361937095,4,0,0,0,-9,0,-972.2788390485273,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,21,32,15,1,0,-9,0,4.87899777457142,4.87899777457142,0,0,0,0,0,0,0,1,1,0,6.098537741044336,0,107.1949477763211,3,51.73,58.82,6,1,0,0,4,2,1,418.3333333333333,0,0,0 +14086,17267,31464,-9,31463,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-849.8989300772336,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,2,1,418.3333333333333,0,0,0 +14086,17267,31465,-9,31463,-9,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1114.379691473073,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,2,1,418.3333333333333,0,0,0 +14087,17268,31466,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,2,1,0,4,7.843923580573094,7.965393157243689,6.999472630488127,4,0,0,0,-9,0,-1093.233185474169,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,32,32,15,1,0,-9,0,7.172431220341807,7.172431220341807,0,0,0,0,0,0,0,1,1,0,6.36778602957537,0,0,0,46.39,52.95,6,1,0,0,13,3,0,573,0,0,0 +14088,17269,31467,-9,31472,31469,3,1,1,15,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-965.2159216437592,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,2,1,0,923.4285714285714,0,0,0 +14088,17269,31468,-9,31472,31469,6,1,0,10,2,0,5,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-850.8703576483066,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,5,3,0,0,2,1,0,923.4285714285714,0,0,0 +14088,17269,31469,31472,-9,-9,7,1,1,42,1,0,5,0,3,-9,6,3,0,4,0,0,0,2,0,-9,2,0,4,0,0,0,0,38,2,1,3,-9,-9,2019,4,1,7,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.64307567876168,1,50,57,5,3,0,0,2,1,0,923.4285714285714,0,0,0 +14088,17269,31470,-9,31472,31469,5,1,1,12,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.695821933303,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,2,1,0,923.4285714285714,0,0,0 +14088,17269,31471,-9,31472,31469,4,1,1,14,2,0,5,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1170.873722275757,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,2,1,0,923.4285714285714,0,0,0 +14088,17269,31472,31469,-9,-9,1,1,0,38,1,0,5,0,2,-9,6,3,0,1,0,0,0,2,0,-9,2,0,-4,0,0,0,1,42,3,4,3,3,3,2019,4,7,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.84,27.72,4,3,0,0,2,1,0,923.4285714285714,0,0,0 +14088,17269,31473,-9,31472,31469,2,1,1,17,2,0,5,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.603150961272,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.96,46.76,6,3,0,0,2,1,0,923.4285714285714,0,0,0 +14089,17270,31474,31475,-9,-9,1,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,4.468214886893869,4.63820192468335,1,0,-9,60,0,-5,86.30401918948959,0,0,0,85,3,3,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.908227241723925,4.135987525569012,0,0,59.06,40.35,6,1,0,0,7,2,1,332.5,0,0,0 +14089,17270,31475,31474,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,3,0,6.53506090463339,7.110937734556309,1,0,-9,60,0,5,32.82108325445022,0,0,0,80,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,14.67404689549976,0,0,0,0,1,1,0,6.681955408315122,6.680749096393707,0,0,61.19,33.88,6,1,0,0,7,2,1,332.5,0,0,0 +14090,17271,31476,-9,31478,31477,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.3926837484133,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,0,1573.333333333333,0,0,0 +14090,17271,31477,31478,-9,-9,2,1,1,33,1,0,1,0,2,-9,2,1,0,4,8.605295908864305,8.435269877270001,0,2,0,-9,5,0,7,74.62693964645898,0,0,0,26,2,3,1,-9,-9,2019,1,1,10,0,40,43,15,1,0,1,0,12.35407858619203,12.35407858619203,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,5,4,0,1573.333333333333,0,0,0 +14090,17271,31478,31477,-9,-9,1,1,0,26,1,0,1,0,2,-9,2,1,0,3,7.454401102396574,7.142468583186782,0,2,0,-9,5,0,-7,-37.72434212274403,0,1,1,33,2,4,1,2,2,2019,1,2,13,2,23,16,15,1,2,1,0,7.385981194509872,7.385981194509872,0,0,0,0,0,0,0,1,1,0,1.675855630371778,0,0,0,49.52,56.95,6,1,0,0,5,4,0,1573.333333333333,0,0,0 +14091,17272,31479,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,2,1,0,3,7.846110354910145,8.116208993865289,0,3,0,0,0,-9,0,-981.6109381723352,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,42,42,15,1,0,-9,0,11.27868800726687,11.27868800726687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,6,1,0,0,10,4,1,3482,0,0,0 +14092,17273,31480,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1009.71859567836,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.34,24.82,2,2,0,1,9,1,0,774,0,0,0 +14093,17274,31481,31484,-9,-9,1,1,0,35,1,0,2,0,2,0,7,2,0,3,6.910587323587914,7.232315257627536,0,2,0,-9,10,0,-5,-2.139522040668817,-9,0,1,40,1,3,1,2,2,2019,3,3,10,0,26,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,43.46,4,1,0,0,9,5,0,1565.75,0,0,0 +14093,17274,31482,-9,31481,31484,4,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1091.718829914201,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,9,5,0,1565.75,0,0,0 +14093,17274,31483,-9,31481,31484,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1107.004927220534,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,0,1565.75,0,0,0 +14093,17274,31484,31481,-9,-9,3,1,1,40,1,0,2,0,1,-9,2,1,0,3,9.814915523429164,9.34108181030051,0,2,0,-9,10,0,5,-34.51971630784802,0,0,0,35,2,3,2,-9,-9,2019,2,1,8,0,45,40,15,1,0,2,0,41.90121654803058,41.90121654803058,0,0,0,0,0,0,0,1,1,0,.5459020486365338,0,0,0,53.08,47.11,5,1,0,0,9,5,0,1565.75,0,0,0 +14094,17275,31485,-9,31486,31487,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.225805067291,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,2,0,592.25,0,0,0 +14094,17275,31486,31487,-9,-9,1,1,0,41,1,0,2,0,2,-9,97,3,0,1,0,0,0,2,0,-9,26,0,-2,-21.28396042760031,0,0,1,43,2,5,1,2,1,2019,3,2,15,6,0,3,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.94,32.3,3,1,0,1,10,2,0,592.25,0,0,0 +14094,17275,31487,31486,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,5,7.985827836808586,7.971120317286896,0,2,0,-9,26,0,2,135.1085807368567,0,0,0,41,2,1,3,2,2,2019,2,1,11,0,45,40,15,1,0,3,0,7.346734747944341,7.346734747944341,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.84,51.94,3,1,0,0,10,2,0,592.25,0,0,0 +14094,17275,31488,-9,31486,31487,3,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1007.998854387678,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.42,51.99,7,1,0,0,10,2,0,592.25,0,0,0 +14095,17276,31489,31490,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,3,8.524809043325577,8.054713886629624,0,1,0,-9,6,0,-10,-6.193157057912657,0,0,0,58,2,2,1,2,2,2019,1,1,13,1,48,42,15,1,1,1,0,9.702300395721174,9.702300395721174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,54.26,5,1,0,0,2,5,1,457,0,0,0 +14095,17276,31490,31489,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,8.129153625922717,8.348316537475112,0,1,0,-9,6,0,10,-48.47736462740137,0,0,0,48,2,3,1,3,-9,2019,1,2,26,12,37,37,15,1,12,1,0,11.28777155033025,11.28777155033025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,50.17,1,1,0,0,2,5,1,457,0,0,0 +14096,17277,31491,31492,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,6.842530126692903,6.769626331016123,1,0,-9,51,0,0,-13.93683620988001,0,0,0,71,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.072354203496708,6.803632339902162,17.48525052660302,2,49.22,40.82,6,1,0,0,9,2,1,606,0,0,0 +14096,17277,31492,31491,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,4.342807157928921,4.482388744138087,1,0,-9,51,0,0,-16.75929898285883,0,0,0,71,2,3,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,4.429881798863479,5.327941806421329,0,0,0,105.0385520715729,1,1,0,0,4.34015768642169,0,0,58.49,50.2,6,1,0,0,9,2,1,606,0,0,0 +14097,17278,31493,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,3,0,6.831178114749098,7.171749136003341,3,0,0,0,-9,0,-1089.805254228909,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.468394991036782,7.166953355901053,0,0,55,45,6,1,0,0,5,2,1,885,0,0,0 +14098,17279,31494,31495,-9,-9,1,1,1,60,1,0,0,0,2,-9,1,1,0,3,0,8.549772162867026,8.43791530737799,1,0,-9,6,0,8,66.26292074230221,0,0,0,52,2,4,1,2,2,2019,1,2,16,5,40,42,15,1,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.706079740717446,0,0,54.37,54.8,3,1,0,1,7,5,1,675.5,0,0,0 +14098,17279,31495,31494,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.40957946788928,7.39108229993963,5.474652303735064,1,0,-9,6,0,-8,-51.86927542724752,0,0,0,60,2,3,1,3,2,2019,1,1,10,0,12,12,15,1,1,1,0,17.66658250893105,17.66658250893105,0,0,0,0,0,0,0,0,0,0,5.05282281818085,5.528801937776403,0,0,51,54,6,1,0,0,7,5,1,675.5,0,0,0 +14099,17280,31496,-9,-9,-9,1,1,0,52,2,0,1,0,2,-9,2,1,0,4,8.127863672708584,8.319554670883502,0,4,0,0,0,-9,0,-1097.751270178499,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,34,36,15,1,0,-9,0,12.38125383810524,12.38125383810524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,5,4,0,0,8,3,0,249,0,0,0 +14099,17281,31497,-9,31496,-9,2,1,1,21,2,0,1,0,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-955.7952324360903,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,6,4,0,0,8,1,0,377,0,0,0 +14099,17282,31498,-9,31496,-9,3,1,1,21,2,0,1,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-945.5748730310738,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,5,4,0,0,8,1,0,1405,0,0,0 +14100,17283,31499,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,2,8.537935040864591,8.386529292368712,0,3,0,0,0,-9,0,-932.7798817413108,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,50,50,15,1,10,-9,0,10.71948170367036,10.71948170367036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.89,63.58,3,1,0,0,8,5,0,278,0,0,0 +14101,17284,31500,31502,-9,-9,1,1,1,55,1,0,2,0,1,-9,2,1,0,4,9.194661150713825,8.84280671210024,0,2,0,-9,22,0,-1,-10.23536091522,0,0,0,56,3,4,1,2,3,2019,1,2,9,0,40,40,15,1,0,1,0,21.17237381479855,21.17237381479855,0,0,0,0,0,0,0,1,1,0,6.789440014337896,0,0,0,54.77,55.87,6,1,0,0,9,4,1,1149,0,0,0 +14101,17284,31501,-9,31502,31500,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.9719588169867,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,1149,0,0,0 +14101,17284,31502,31500,-9,-9,2,1,0,56,1,0,2,0,3,-9,2,1,0,4,6.112459081835633,6.218748128779455,4.518557270213077,2,0,-9,21,0,1,-112.0356661391449,0,0,0,55,1,4,1,3,3,2019,1,1,7,0,4,5,15,1,0,1,0,9.338363171922198,9.338363171922198,0,0,0,0,0,0,0,1,1,0,3.891114066387757,4.38771709714466,0,0,57.16,56.15,7,4,0,0,9,4,1,1149,0,0,0 +14101,17284,31503,-9,31502,31500,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.5647149557786,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,1149,0,0,0 +14102,17285,31504,31505,-9,-9,2,1,1,50,1,0,1,0,2,-9,1,1,0,3,9.451872124590615,9.310120664201721,0,2,0,-9,15,0,7,-75.53480716375886,0,0,0,43,2,5,1,2,2,2019,1,1,6,0,40,60,15,1,0,1,0,33.77409830265979,33.77409830265979,0,0,0,0,0,0,0,1,1,0,9.732392592220606,0,0,0,60.27,52.13,7,1,0,0,4,5,1,1113,0,0,0 +14102,17285,31505,31504,-9,-9,1,1,0,43,1,0,1,0,2,-9,2,1,0,5,7.498470752280775,7.618536550779676,0,2,0,-9,14,0,-7,-89.83686689224473,0,0,1,50,2,3,1,2,2,2019,1,2,6,0,18,18,15,1,0,1,0,13.48826043379913,13.48826043379913,0,0,0,0,0,0,0,1,1,0,2.750555358407787,0,0,0,60.02,56.42,7,1,0,0,4,5,1,1113,0,0,0 +14102,17285,31506,-9,31505,31504,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.8327430308157,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,5,1,1113,0,0,0 +14103,17286,31507,31509,-9,-9,2,1,1,61,1,0,1,0,2,-9,2,1,0,3,0,0,0,2,0,-9,9,0,10,0,0,0,0,51,1,3,1,-9,-9,2019,1,1,10,0,0,36,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.281371617825716,0,0,0,47.61,52.37,4,1,0,0,12,1,1,639,0,0,0 +14103,17286,31508,-9,31509,31507,3,1,1,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1019.687759260365,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,12,1,1,639,0,0,0 +14103,17286,31509,31507,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,3,0,0,0,2,0,-9,9,0,-10,0,0,0,0,61,2,3,1,2,2,2019,1,2,17,5,0,49,15,1,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,47.07,4,1,0,0,12,1,1,639,0,0,0 +14104,17287,31510,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,3,7.871032202600011,8.074299277346316,0,3,0,0,0,-9,0,-840.4602177103275,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,37,39,15,1,0,-9,0,7.008001088313162,7.008001088313162,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,35.22,6,1,0,0,5,4,0,75,0,0,0 +14105,17288,31511,31512,-9,-9,1,1,1,26,1,0,0,0,3,-9,2,1,0,4,7.729653188252969,7.971669795521097,0,1,0,-9,2,0,3,-45.97520566628117,0,1,0,23,2,3,1,-9,-9,2019,1,2,2,0,40,55,15,1,0,1,0,7.292861562349601,7.292861562349601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,11,4,0,845.5,0,0,0 +14105,17288,31512,31511,-9,-9,2,1,0,23,1,0,0,0,2,-9,2,1,0,3,7.751267083854404,8.005535686344981,0,1,0,-9,2,0,-3,-37.09474423065846,0,1,1,26,3,4,1,-9,-9,2019,1,1,7,0,32,30,15,1,0,1,0,8.238799718806996,8.238799718806996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.6,46.99,5,1,0,0,11,4,0,845.5,0,0,0 +14106,17289,31513,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,2,7.951950803132497,7.901007218464635,0,3,0,0,0,-9,0,-1078.466274191002,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,35,40,15,1,1,-9,0,9.294998462419903,9.294998462419903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.22,53.46,6,1,0,0,4,4,0,1276,0,0,0 +14107,17290,31514,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,5,0,6.108935087027985,6.038753827008443,3,0,0,0,-9,0,-911.4256026859858,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.400801923359794,0,0,41.07,60.93,6,1,0,0,2,2,1,957,0,0,0 +14108,17291,31515,31516,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.513982823533917,8.75707754436487,0,1,0,-9,7,0,1,-38.38998676210455,0,0,0,52,1,4,1,2,2,2019,1,1,7,0,45,48,15,1,0,1,0,17.46287132312628,17.46287132312628,0,0,0,0,0,0,0,0,0,0,5.738276240690255,0,0,0,54.2,57.49,6,1,0,0,11,5,1,732.5,0,0,0 +14108,17291,31516,31515,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,4,8.128221324322086,8.325090357816917,0,1,0,-9,7,0,-1,-111.7982728729064,0,0,0,53,2,4,1,2,3,2019,1,2,7,0,26,28,15,1,0,1,0,14.12295510096727,14.12295510096727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,11,5,1,732.5,0,0,0 +14108,17292,31517,-9,31516,31515,3,1,1,21,2,0,0,0,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1095.358397975164,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.782100219833332,0,0,0,60.02,56.42,7,1,0,0,11,1,1,1187,0,0,0 +14109,17293,31518,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,2,0,5.329916974302012,5.653812315869864,3,0,0,0,-9,0,-1166.874159967414,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,10.80792041303798,0,11.81039063603787,0,0,114.6812260539215,1,1,0,4.904383364218739,5.316767446833691,.2951943536139199,3,41.36,34.01,4,1,0,1,13,2,1,222,0,0,0 +14109,17294,31519,-9,31518,-9,2,1,1,49,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1076.422982553955,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,25,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.22,25.98,4,1,0,1,13,1,1,1732,0,0,0 +14109,17295,31520,-9,31518,-9,3,1,0,47,2,0,0,0,2,-9,2,1,0,1,7.351471193774492,7.081104852731213,0,3,0,0,0,-9,0,-965.6761917032246,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,32,12,27,27,15,1,12,-9,1,7.323146563910581,7.323146563910581,0,0,0,0,0,0,0,1,1,0,0,0,0,3,22.71,24.86,1,1,0,1,13,3,1,353,0,0,0 +14110,17296,31521,31523,-9,-9,2,1,0,33,1,1,1,0,1,-9,2,1,0,3,7.814630592996392,8.035448919706763,0,2,0,-9,10,0,2,-136.6914828672413,0,0,1,31,1,4,1,-9,-9,2019,1,1,11,1,37,37,15,1,1,1,0,9.311692769664708,9.311692769664708,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,56.01,5,1,0,0,10,4,1,355.6666666666667,0,0,0 +14110,17296,31522,-9,31521,31523,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.7990228371665,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,10,4,1,355.6666666666667,0,0,0 +14110,17296,31523,31521,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,4,8.206268789878044,8.573428165770919,0,2,0,-9,10,0,-2,-11.95872960054874,0,0,0,33,1,3,1,-9,-9,2019,1,2,8,0,40,40,15,1,0,1,0,14.36514140114795,14.36514140114795,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,1,355.6666666666667,0,0,0 +14111,17297,31524,-9,31525,-9,1,1,1,27,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1092.477639253075,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,50.46,4,1,1,1,4,1,0,1045,0,0,0 +14111,17298,31525,-9,-9,-9,2,1,0,55,2,0,0,0,3,-9,2,1,0,3,7.459635099361168,7.31980212767042,0,3,0,0,0,-9,0,-1067.009350481238,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,30,19,15,1,2,-9,0,6.330953776731826,6.330953776731826,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,1,4,3,0,920,0,0,0 +14111,17299,31526,-9,31525,-9,3,1,1,20,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-841.1733867696789,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.27,70.98,4,1,1,1,4,1,0,261,0,0,0 +14112,17300,31527,-9,31528,31529,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.812829490634,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,305.25,0,0,0 +14112,17300,31528,31529,-9,-9,2,1,0,55,1,0,2,0,2,-9,2,1,0,4,7.629859850586595,7.6735987921728,0,2,0,-9,20,0,4,91.93798998205524,0,0,0,51,1,4,1,2,1,2019,1,1,11,1,12,0,15,1,1,1,0,25.74937354585932,25.74937354585932,0,0,0,0,0,0,0,0,0,0,5.550340770446089,0,0,0,54.2,57.49,6,1,0,0,8,5,1,305.25,0,0,0 +14112,17300,31529,31528,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,4,9.574806694360779,9.585746332361357,0,2,0,-9,11,0,-4,-14.10688424408242,0,0,0,55,2,4,1,-9,-9,2019,1,2,11,2,37,40,15,1,2,1,0,43.05402422294733,43.05402422294733,0,0,0,0,0,0,0,0,0,0,7.94736461808251,0,0,0,53.13,37.57,6,1,0,0,8,5,1,305.25,0,0,0 +14112,17300,31530,-9,31528,31529,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.838847626307,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,305.25,0,0,0 +14113,17301,31531,31532,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,6.802262477260234,7.191998353299733,1,0,-9,6,0,4,61.22008571298205,0,0,0,75,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.232017018623234,7.199672523117795,19.0127307469139,1,48.69,42.99,6,1,0,0,7,2,1,687,0,0,0 +14113,17301,31532,31531,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-4,65.1897182479496,0,0,0,79,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,5.63537035401682,0,0,0,0,1,1,0,0,0,0,0,51,46,6,1,0,0,7,2,1,687,0,0,0 +14114,17302,31533,31535,-9,-9,1,1,0,47,1,0,1,0,2,-9,1,1,0,4,7.520012698071771,7.611387774734115,0,2,0,-9,8,0,-4,-160.9580378017523,0,0,0,51,2,4,1,2,2,2019,1,2,10,0,20,45,15,1,0,1,0,9.868039504036961,9.868039504036961,0,0,0,0,0,0,0,1,1,0,2.769668857844179,0,0,0,54.2,57.49,5,1,0,0,10,4,1,1851,0,0,0 +14114,17302,31534,-9,31533,31535,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-872.0424825982877,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,1851,0,0,0 +14114,17302,31535,31533,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,4,8.749013983714754,8.915421672383729,0,2,0,-9,8,0,4,15.38773020798491,0,0,0,47,2,4,1,-9,-9,2019,1,1,10,0,39,41,15,1,0,1,0,16.31229741256107,16.31229741256107,0,0,0,0,0,0,0,1,1,0,4.313830240323705,0,0,0,54.2,57.49,6,1,0,0,10,4,1,1851,0,0,0 +14115,17303,31536,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,3,0,7.973339887841001,7.896934468967936,3,0,0,0,-9,0,-1078.653115393738,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.710794466000778,7.919189401136403,0,0,51.91,42.22,3,1,0,0,9,4,1,1345,0,0,0 +14116,17304,31537,31539,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,4,7.388865261689297,7.103382460135956,0,2,0,-9,6,0,2,15.47182601138597,0,1,1,27,2,4,1,2,3,2019,1,2,7,1,29,28,15,1,1,1,0,7.575424155050515,7.575424155050515,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,6,1,0,0,5,3,1,663.75,0,0,0 +14116,17304,31538,-9,31537,31539,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.252476695036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,663.75,0,0,0 +14116,17304,31539,31537,-9,-9,2,1,1,27,1,1,2,0,2,-9,2,1,0,4,8.046639897710357,8.15925694288857,0,2,0,-9,6,0,-2,41.80535235855739,0,1,0,29,2,4,1,2,2,2019,1,1,19,6,43,42,15,1,6,1,0,11.62185150635236,11.62185150635236,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.47,55.65,4,1,0,0,5,3,1,663.75,0,0,0 +14116,17304,31540,-9,31537,31539,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-976.9063125054977,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,3,1,663.75,0,0,0 +14117,17305,31541,-9,31542,31543,6,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-948.9601831950274,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,54,5,3,0,0,2,1,0,599.6666666666666,0,0,0 +14117,17305,31542,31543,-9,-9,2,1,0,46,1,0,3,0,3,-9,6,3,0,1,0,0,0,2,0,-9,29,0,-6,0,0,0,0,52,3,2,3,3,3,2019,4,1,25,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.85,37.67,3,3,0,0,2,1,0,599.6666666666666,0,0,0 +14117,17305,31543,31542,-9,-9,1,1,1,52,1,0,3,0,3,-9,8,3,1,2,0,0,0,2,0,-9,29,0,6,0,0,0,0,46,3,1,3,3,3,2019,4,2,24,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.35507267328339,1,35.3,34.21,2,3,0,1,2,1,0,599.6666666666666,0,0,0 +14117,17306,31544,-9,31542,31543,3,1,1,24,2,0,3,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1087.532799388301,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,33,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.86,22.41,2,3,0,1,2,1,0,649,0,0,0 +14117,17307,31545,-9,-9,-9,8,1,0,21,2,0,3,0,2,-9,3,3,0,1,0,0,0,4,0,-9,0,-9,0,-1048.238601655662,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,8.52,48.15,1,1,1,1,2,1,0,1117,0,0,0 +14118,17308,31546,-9,-9,-9,1,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.883682969697029,7.825537845214419,0,3,0,0,0,-9,0,-947.6379991631393,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,40,15,1,0,-9,0,7.703642312541936,7.703642312541936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,1,2000,0,0,0 +14119,17309,31547,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,3,8.855251209252289,8.319768271435452,0,3,0,0,0,-9,0,-1047.354838691794,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,29,12,50,60,15,1,12,-9,0,10.96686096612468,10.96686096612468,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,38,3,1,0,0,4,5,0,151,0,0,0 +14120,17310,31548,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1109.923058588656,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,1,4,1,0,255,0,0,0 +14121,17311,31549,31550,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,0,-130.0188540126733,0,0,0,75,2,1,3,2,2,2019,4,1,27,8,0,10,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.700502034737075,0,123.7099516018384,1,31.82,41.93,3,1,0,0,4,2,1,742,0,0,0 +14121,17311,31550,31549,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,1,0,6.090751474814873,6.519310350314476,1,0,-9,50,0,0,-39.17067644236518,0,0,0,75,3,3,3,2,2,2019,4,2,17,6,0,0,15,4,6,4,0,0,0,1,0,2.62503619628209,0,.8317287995347693,0,0,1,1,0,2.407604019267628,6.216280635315359,0,0,34.52,27.53,4,1,0,0,4,2,1,742,0,0,0 +14122,17312,31551,-9,31552,31553,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-877.265727821175,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,5,1,407.3333333333333,0,0,0 +14122,17312,31552,31553,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.696024265116423,8.000806866258301,0,2,0,-9,14,0,5,-187.3859784672884,0,0,0,43,1,3,1,-9,2,2019,1,1,9,0,35,32,15,1,0,1,0,8.459694962190541,8.459694962190541,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,8,5,1,407.3333333333333,0,0,0 +14122,17312,31553,31552,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,3,9.080059676145959,9.018246331411726,0,2,0,-9,14,0,-5,-69.96663645567845,0,0,0,48,2,4,1,2,2,2019,1,2,10,0,51,49,15,1,0,1,0,14.7554592880294,14.7554592880294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,1,8,5,1,407.3333333333333,0,0,0 +14123,17313,31554,31555,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,4,0,4.177316218562963,4.347381719001191,1,0,-9,58,0,1,-21.54371661932262,0,0,0,77,2,4,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,4.180970528804693,0,0,0,0,1,1,0,0,4.237063654112267,0,0,60.12,54.8,6,1,0,0,7,2,0,437,0,0,0 +14123,17313,31555,31554,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,58,0,-1,13.83778885169351,0,0,0,78,1,4,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54,51,5,1,0,0,7,2,0,437,0,0,0 +14124,17314,31556,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1125.781671050454,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.057650049066837,0,0,0,47.27,46.94,7,1,0,0,6,1,1,490,0,0,0 +14125,17315,31557,-9,31558,-9,2,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1033.30737027948,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,1,0,2298.5,0,0,0 +14125,17315,31558,-9,-9,-9,1,1,0,20,2,1,1,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1068.658744624393,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.68,71.40000000000001,6,1,0,0,13,1,0,2298.5,0,0,0 +14126,17316,31559,31560,-9,-9,1,1,1,32,1,1,1,0,2,-9,1,1,0,3,9.939748405073042,9.375473985329954,0,2,0,-9,4,0,0,11.91024406966286,0,0,0,32,1,4,1,2,2,2019,1,2,9,0,12,10,15,1,0,1,0,151.5979515906668,151.5979515906668,0,0,0,0,0,0,0,1,1,0,8.235039884456837,0,0,0,39.86,50.54,6,1,0,0,6,5,1,483,0,0,0 +14126,17316,31560,31559,-9,-9,2,1,0,32,1,1,1,0,1,-9,2,1,0,4,7.11099864032691,7.253986792208948,0,2,0,-9,4,0,0,-93.1061114923626,0,0,1,32,2,3,1,-9,-9,2019,1,1,10,0,21,42,15,1,0,1,0,8.127481797252329,8.127481797252329,0,0,0,0,0,0,0,1,1,0,2.381735122000333,0,0,0,57.16,56.15,6,1,0,0,6,5,1,483,0,0,0 +14126,17316,31561,-9,31560,31559,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.932335845344,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,483,0,0,0 +14127,17317,31562,-9,-9,-9,1,1,0,22,2,0,0,1,1,0,7,2,0,5,0,7.141842103056215,7.389504487437249,3,0,0,0,-9,0,-1010.108387798497,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.597817757141819,0,0,0,45.46,61.87,7,1,0,0,12,3,0,676,0,0,0 +14128,17318,31563,-9,31564,31566,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1070.186196708391,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,715.2,0,0,0 +14128,17318,31564,31566,-9,-9,2,1,0,42,1,0,3,0,1,-9,2,1,0,3,9.376633808280628,9.098678308008278,0,2,0,-9,25,0,-5,-59.25096493659117,0,0,1,47,1,5,1,3,2,2019,1,1,8,0,34,32,15,1,0,1,0,40.80711730719833,40.80711730719833,0,0,0,0,0,0,0,0,0,0,1.893154424253378,0,0,0,47.32,52.7,6,1,0,0,8,5,1,715.2,0,0,0 +14128,17318,31565,-9,31564,31566,3,1,1,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.039198263135,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,715.2,0,0,0 +14128,17318,31566,31564,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,5,9.274507325430781,9.473902922476467,0,2,0,-9,25,0,5,-8.568000597550586,0,0,0,42,1,3,1,2,2,2019,1,2,12,0,38,42,15,1,0,1,0,39.32203471189239,39.32203471189239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,5,1,0,0,8,5,1,715.2,0,0,0 +14128,17318,31567,-9,31564,31566,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-955.4365026463606,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,715.2,0,0,0 +14129,17319,31568,31569,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,5,0,6.394551242635163,6.108406183653411,1,0,-9,50,0,-6,140.4858121398311,0,0,0,73,2,5,3,2,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.73029811234388,6.239875665728639,0,0,57.06,57.76,6,1,0,0,12,2,1,475.5,0,0,0 +14129,17319,31569,31568,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,5,0,5.255085142464367,5.918156036748892,1,0,-9,50,0,6,104.806332580028,0,0,0,67,2,5,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.019293298873498,5.39843650944184,0,0,57.65,56.13,7,1,0,0,12,2,1,475.5,0,0,0 +14130,17320,31570,31571,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.572237216579694,8.719506063380988,0,1,0,-9,10,0,2,-68.96809896584034,0,0,0,57,2,4,3,3,3,2019,2,1,4,0,38,37,15,1,0,4,0,17.89479580377016,17.89479580377016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,818,0,0,0 +14130,17320,31571,31570,-9,-9,1,1,1,57,1,0,0,0,2,-9,4,3,0,4,0,8.519471096883539,8.182235797942631,1,0,-9,10,0,-2,96.7496707656007,0,0,0,59,2,4,1,2,2,2019,3,2,4,0,0,37,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.275443064385664,0,0,58.15,52.91,6,1,0,0,13,5,1,818,0,0,0 +14130,17321,31572,-9,31570,31571,3,1,1,26,2,0,0,0,2,-9,2,1,0,4,7.755719775180923,7.707840588761524,0,3,0,0,0,-9,0,-963.2446438122597,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.238286929452378,0,0,0,48,59,5,1,0,0,13,3,1,768,0,0,0 +14130,17322,31573,-9,31570,31571,4,1,0,22,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-880.3510732915677,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,13,1,1,751,0,0,0 +14131,17323,31574,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,6.709143779585077,6.566594350252072,3,0,0,0,-9,0,-975.5378419750785,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.441374716540732,2.295613532408522,3,55.65,47.36,5,1,0,0,12,2,1,356,0,0,0 +14132,17324,31575,31576,-9,-9,2,1,0,33,1,0,1,0,2,-9,2,1,0,3,7.700947759222571,7.793809088600458,0,2,0,-9,10,0,-4,54.05629418335401,0,0,1,37,3,4,1,2,2,2019,1,1,9,0,23,23,15,1,0,1,0,12.39636919461236,12.39636919461236,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,9,4,1,913.3333333333334,0,0,0 +14132,17324,31576,31575,-9,-9,1,1,1,37,1,0,1,0,3,-9,2,1,0,4,8.240349109297485,8.300685681287646,0,2,0,-9,10,0,4,-55.78007576227935,0,0,0,33,2,3,1,2,3,2019,1,2,7,0,39,37,15,1,0,1,0,11.95142738297032,11.95142738297032,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,913.3333333333334,0,0,0 +14132,17324,31577,-9,31575,31576,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.356690635675,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,913.3333333333334,0,0,0 +14133,17325,31578,31579,-9,-9,1,1,0,57,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,44,0,-3,-17.7260110544561,0,0,0,60,3,4,3,-9,-9,2019,4,2,33,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.47,33.84,1,1,0,0,10,2,0,618,0,0,0 +14133,17325,31579,31578,-9,-9,2,1,1,60,1,0,0,0,3,-9,8,3,1,4,0,4.835387038520833,4.937252524573022,1,0,-9,44,0,3,-70.89649147933481,0,0,0,57,3,1,3,-9,2,2019,4,1,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.042685908517146,0,1,54,53,6,1,0,0,10,2,0,618,0,0,0 +14134,17326,31580,-9,31583,31584,3,1,0,14,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.5310277996259,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,2,1,969.6,0,0,0 +14134,17326,31581,-9,31583,31584,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.339556766774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,969.6,0,0,0 +14134,17326,31582,-9,31583,31584,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1136.350292795182,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,2,1,969.6,0,0,0 +14134,17326,31583,31584,-9,-9,2,1,0,35,1,1,3,0,2,-9,3,3,0,4,0,4.852372408700185,4.494493969056887,2,0,-9,9,0,-7,105.6003330322343,0,0,1,42,2,3,1,2,2,2019,3,1,14,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.772120104806993,0,0,0,45.03,53.83,6,1,1,0,11,2,1,969.6,0,0,0 +14134,17326,31584,31583,-9,-9,1,1,1,42,1,1,3,0,2,-9,2,1,0,3,7.889497292632339,7.690157807052479,0,2,0,-9,9,0,7,51.71438001377385,0,0,0,35,2,4,3,3,3,2019,2,2,5,0,38,37,15,1,0,3,0,6.111186001817791,6.111186001817791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.62,47.75,6,1,0,0,11,2,1,969.6,0,0,0 +14135,17327,31585,31586,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,3,9.089971379600396,9.233842142821796,0,1,0,-9,33,0,2,7.305852725696161,0,0,0,57,2,5,1,2,3,2019,1,1,8,0,37,38,15,1,0,1,0,35.51738292383036,35.51738292383036,0,0,0,0,0,0,0,0,0,0,6.327981182869187,0,11.22246865118955,3,59.88,48.2,6,1,0,0,10,5,1,307.5,0,0,0 +14135,17327,31586,31585,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,5,8.082047941818303,8.31294076158877,0,1,0,-9,33,0,-2,5.210404661452113,0,0,0,59,1,3,1,2,3,2019,1,2,6,0,31,34,15,1,0,1,0,13.09411106879359,13.09411106879359,0,0,0,0,0,0,0,0,0,0,5.769255188029904,0,0,0,59.76,49.67,6,1,0,0,10,5,1,307.5,0,0,0 +14136,17328,31587,-9,31590,31589,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.7691450334787,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,315,0,0,0 +14136,17328,31588,-9,31590,31589,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.9139218705044,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,315,0,0,0 +14136,17328,31589,31590,-9,-9,2,1,1,58,1,0,2,0,2,-9,2,1,0,2,8.371130077896696,8.738690117297999,7.384018642063761,2,0,-9,10,0,19,12.84712039106939,0,0,0,39,1,2,1,2,3,2019,1,1,17,5,45,46,15,1,5,1,0,11.18481284814104,11.18481284814104,0,0,0,0,0,0,0,1,1,0,0,7.270051870375438,0,0,37.66,44.23,3,1,0,1,5,4,1,315,0,0,0 +14136,17328,31590,31589,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,2,8.281230601107469,8.000058263799264,0,2,0,-9,10,0,-19,-135.0917596752933,0,0,1,58,2,2,1,2,2,2019,1,2,12,2,32,0,15,1,2,1,0,14.93003903724467,14.93003903724467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.3,46.96,5,1,0,0,5,4,1,315,0,0,0 +14137,17329,31591,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,9.225260167748464,9.583419158971047,0,3,0,0,0,-9,0,-1073.905924565787,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,41,37,15,1,0,-9,0,31.89869184662701,31.89869184662701,0,0,0,0,0,0,0,0,0,0,8.77197737179778,0,0,0,57.16,56.15,6,1,0,0,8,5,1,319,0,0,0 +14138,17330,31592,31593,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,4,8.768358092946457,8.90989751413766,7.936400857642908,1,0,-9,7,0,1,40.14418705643185,0,0,0,55,1,2,1,2,2,2019,1,2,9,0,55,50,15,1,0,1,0,14.14034811277564,14.14034811277564,0,0,0,0,0,0,0,0,0,0,3.876314462883636,8.187298723923524,0,0,54,54,6,1,0,0,10,5,1,319.5,0,0,0 +14138,17330,31593,31592,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,2,8.231574579230827,8.062479501774565,0,1,0,-9,30,0,-1,-54.88793383571863,0,0,0,56,1,4,1,1,1,2019,1,1,1,0,20,22,15,1,0,1,0,21.58147596175771,21.58147596175771,0,0,0,0,0,0,0,0,0,0,5.050715868772083,0,0,0,65.23,28.36,7,1,0,0,10,5,1,319.5,0,0,0 +14138,17331,31594,-9,31593,31592,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.012408539878988,8.160176295376838,0,3,0,0,0,-9,0,-869.0783081405625,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,3,45,46,15,1,3,-9,1,6.68729432790379,6.68729432790379,0,0,0,0,0,0,0,0,0,0,2.972370361558286,0,0,0,45.85,61.26,6,1,0,0,10,4,1,1992,0,0,0 +14138,17332,31595,-9,31593,31592,4,1,0,21,2,0,0,0,2,-9,1,1,0,4,7.530942313282172,7.52506569609862,0,3,0,0,0,-9,0,-919.3400887366523,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,21,8,37,38,15,1,8,-9,1,6.099073922549294,6.099073922549294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.62,62.29,5,1,0,0,10,3,1,494,0,0,0 +14139,17333,31596,31597,-9,-9,2,1,1,60,1,0,0,0,3,-9,2,1,0,4,7.52698876972999,7.894479715783834,0,1,0,-9,41,0,-3,-13.08600635988851,0,0,0,63,3,3,3,3,3,2019,2,1,9,3,39,39,15,1,3,4,0,5.745077873786863,5.745077873786863,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,7,1,0,0,4,3,0,393.5,0,0,0 +14139,17333,31597,31596,-9,-9,1,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,40,0,3,99.81088069352909,0,0,0,60,3,4,1,3,2,2019,3,2,7,0,0,5,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,51.16,7,1,0,0,4,3,0,393.5,0,0,0 +14140,17334,31598,31601,-9,-9,1,1,1,49,1,0,2,0,1,-9,1,1,0,5,7.393119150870741,7.647860097865903,0,2,0,-9,15,0,2,-88.54248256613869,0,0,0,47,1,4,1,2,2,2019,1,2,6,0,15,15,15,1,0,1,0,13.79393214966351,13.79393214966351,0,0,0,0,0,0,0,1,1,0,8.305661562886689,0,0,0,54.1,59.11,6,1,0,0,9,5,1,566.25,0,0,0 +14140,17334,31599,-9,31601,31598,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.7772130186169,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,566.25,0,0,0 +14140,17334,31600,-9,31601,31598,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.604848632287,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,1,566.25,0,0,0 +14140,17334,31601,31598,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,4,9.217718934721415,8.812307441664617,0,2,0,-9,7,0,-2,20.59463423288818,0,0,0,49,1,5,1,-9,-9,2019,1,1,10,0,35,40,15,1,1,1,0,25.17792502607152,25.17792502607152,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,1,0,0,9,5,1,566.25,0,0,0 +14141,17335,31602,-9,-9,-9,1,1,0,63,2,0,0,0,2,-9,4,3,0,4,0,6.234141511443064,6.084787189153641,3,0,0,0,-9,0,-1097.889508474555,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.928916876584171,5.609489303315174,0,0,62.84,43.99,6,1,0,0,9,2,1,337,0,0,0 +14142,17336,31603,-9,31605,31606,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.519679039812,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,9,4,1,497,0,0,0 +14142,17336,31604,-9,31605,31606,5,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1100.109235652936,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,4,1,497,0,0,0 +14142,17336,31605,31606,-9,-9,1,1,0,52,1,0,2,0,1,-9,2,1,0,3,8.536789637120652,8.763372024312813,0,2,0,-9,26,0,-5,-73.8623163037918,0,0,0,57,1,5,1,2,2,2019,1,2,1,0,30,30,15,1,0,1,0,20.5188795943639,20.5188795943639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,42.8,6,1,0,0,9,4,1,497,0,0,0 +14142,17336,31606,31605,-9,-9,2,1,1,57,1,0,2,0,1,-9,1,1,0,5,7.003589028381366,7.532199492112717,0,2,0,-9,7,0,5,-35.37892837500663,0,0,0,52,1,3,1,-9,-9,2019,1,1,13,1,40,40,15,1,1,1,0,3.428228299505224,3.428228299505224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,4,1,0,0,9,4,1,497,0,0,0 +14142,17337,31607,-9,31605,31606,3,1,0,19,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1059.344735772799,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,1,1,831,0,0,0 +14143,17338,31608,31609,-9,-9,2,1,1,56,1,0,0,0,3,-9,2,1,0,3,7.970882860069597,7.306680187433395,0,1,0,-9,35,0,-1,23.09112375410115,0,0,0,57,2,3,1,3,3,2019,1,1,11,4,45,51,15,1,4,1,0,8.424683942596229,8.424683942596229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.33,39.49,5,3,0,0,5,5,1,499.5,0,0,0 +14143,17338,31609,31608,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,8.721844833237464,8.598524319221038,0,1,0,-9,35,0,1,23.4352327920391,0,0,0,56,3,3,1,-9,-9,2019,1,2,7,2,51,54,15,1,2,1,0,14.45317416671854,14.45317416671854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.44,50.84,5,3,0,0,5,5,1,499.5,0,0,0 +14143,17339,31610,-9,31609,31608,3,1,0,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-901.9636765035767,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,18,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.01,54.4,6,3,0,0,5,1,1,190,0,0,0 +14144,17340,31611,-9,31613,31614,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.6992517653641,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,4,1,1533,0,0,0 +14144,17340,31612,-9,31613,31614,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-972.4580425105593,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,8,4,1,1533,0,0,0 +14144,17340,31613,31614,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.405538842931934,8.648548735381389,0,2,0,-9,16,0,-5,-121.9149727484476,0,0,1,45,2,4,1,2,3,2019,1,1,12,0,43,46,15,1,0,1,0,14.00542261594137,14.00542261594137,0,0,0,0,0,0,0,1,1,0,0,0,3.002712037056512,3,46.16,58.62,6,3,0,0,8,4,1,1533,0,0,0 +14144,17340,31614,31613,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.675239999492213,8.602209030110494,0,2,0,-9,16,0,5,60.60969415326517,0,0,0,40,1,4,1,2,2,2019,1,2,2,0,40,40,15,1,0,1,0,14.36188459627047,14.36188459627047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,6,3,0,0,8,4,1,1533,0,0,0 +14145,17341,31615,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,2,8.08111092396142,8.268944234701484,6.553481477408829,3,0,0,0,-9,0,-942.6245628854463,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,25,11,30,35,15,1,11,-9,0,10.2024267541225,10.2024267541225,0,0,0,0,0,0,0,1,1,0,6.235256531917425,6.816895613433082,0,0,38.35,28.69,2,1,0,1,2,4,1,89,0,0,0 +14146,17342,31616,31617,-9,-9,2,1,0,78,1,0,0,0,1,-9,4,3,0,4,0,7.59396565799777,7.367084011255774,1,0,-9,6,0,-1,-58.8115316772345,0,0,0,79,1,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.882756503864504,7.552522869899739,0,0,56.92,49.39,7,1,0,0,13,4,1,1075.5,0,0,0 +14146,17342,31617,31616,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,4,0,7.976868211084226,7.97271253360742,1,0,-9,6,0,1,-63.34653768615757,0,0,0,78,1,4,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.44942774719676,8.296654885827103,0,0,46.29,54.22,6,1,0,0,13,4,1,1075.5,0,0,0 +14147,17343,31618,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,7.218074686089772,7.058162282404354,3,0,0,0,-9,0,-894.5072128472216,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.408598134945774,0,0,54.79,55.86,7,1,0,0,10,3,1,2171,0,0,0 +14148,17344,31619,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-958.9445289971522,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.15,50.58,3,1,0,1,13,1,0,1087,0,0,0 +14149,17345,31620,31621,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.628220503061108,7.469468645430413,0,1,0,-9,40,0,-3,39.16376175513549,0,0,0,62,1,3,1,3,2,2019,1,2,9,0,28,29,15,1,0,1,0,7.509056242388072,7.509056242388072,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51.24,58.84,6,1,0,0,2,4,1,1437,0,0,0 +14149,17345,31621,31620,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,3,8.548872404037017,8.562331905426062,0,1,0,-9,41,0,3,-100.7553727631634,0,0,0,59,2,4,1,2,2,2019,1,1,9,1,40,40,15,1,1,1,0,15.16563202815768,15.16563202815768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,58.84,6,1,0,0,2,4,1,1437,0,0,0 +14149,17346,31622,-9,31620,31621,3,1,1,34,2,0,0,0,2,-9,2,1,0,4,7.769830819000276,7.786677426623271,0,3,0,0,0,-9,0,-1072.735880250024,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,34,40,15,1,0,-9,1,9.304790654715125,9.304790654715125,0,0,0,0,0,0,0,0,0,0,1.041454923970914,0,0,0,38.34,62.12,2,1,0,0,2,3,1,298,0,0,0 +14150,17347,31623,-9,-9,-9,1,1,1,42,2,0,0,0,3,-9,1,1,0,4,7.293517910563731,7.266972303529915,0,3,0,0,0,-9,0,-1079.523307798815,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,40,15,1,1,-9,0,3.220510017046299,3.220510017046299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,5,1,0,0,10,2,1,283,0,0,0 +14151,17348,31624,-9,-9,-9,1,1,0,52,2,0,2,0,2,-9,2,1,0,4,5.719317593109793,7.442447136775909,6.770360698683418,4,0,-9,0,0,0,-940.993143696144,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,6,0,15,1,2,-9,0,6.250911843414695,6.250911843414695,0,0,0,0,0,0,0,1,1,0,6.949908171032164,0,85.67550564465185,3,51.24,58.84,6,1,0,0,9,2,1,955,0,0,0 +14151,17348,31625,-9,31624,-9,4,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1049.969147898284,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,9,2,1,955,0,0,0 +14152,17349,31626,31627,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,6.426104992341718,7.540240533811139,7.493146891991937,1,0,-9,36,0,4,75.16993451494224,0,0,0,60,2,4,1,3,-9,2019,3,1,12,0,8,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.092764650667107,7.428011047513949,0,0,54.2,57.49,6,1,0,0,11,5,1,316,0,0,0 +14152,17349,31627,31626,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.354530631055798,8.536158817251824,7.775223475857036,1,0,-9,36,0,-4,59.09926858011239,0,0,0,64,2,4,3,2,-9,2019,2,2,11,0,60,40,15,1,0,4,0,7.799073812753645,7.799073812753645,0,0,0,0,0,0,0,1,1,0,5.727645595276045,7.821661996297882,0,0,57.16,56.15,6,1,0,0,11,5,1,316,0,0,0 +14152,17350,31628,-9,31626,31627,3,1,0,29,2,0,0,0,1,-9,2,1,0,3,8.192375364190704,8.173716634126304,0,3,0,0,0,-9,0,-1107.306822774279,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,38,37,15,1,3,-9,1,9.929957704155251,9.929957704155251,0,0,0,0,0,0,0,1,1,0,3.868461303105722,0,0,0,35.9,60.41,4,1,0,0,11,4,1,699,0,0,0 +14153,17351,31629,31630,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,7.66416087332689,7.605387384943724,1,0,-9,44,0,-2,-132.1518871513124,0,0,0,66,1,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.700124213947724,7.720068915053043,0,0,55.11,47.63,6,1,0,0,4,4,1,483,0,0,0 +14153,17351,31630,31629,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,8.344995991278807,8.002013615188751,1,0,-9,44,0,2,104.9981974353036,0,0,0,64,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.259973004794359,8.080170205194319,9.77337899953076,3,54.2,57.49,6,1,0,0,4,4,1,483,0,0,0 +14154,17352,31631,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,2,0,6.850121837443459,6.671813289280195,3,0,0,0,-9,0,-1027.733444351437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,16.84898420099333,0,0,0,1,1,0,3.853849897112257,6.982514763094807,0,0,48.25,38.12,6,1,0,0,2,2,1,482,0,0,0 +14155,17353,31632,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1066.004458381747,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.08,27.83,4,1,0,0,9,1,0,1225,0,0,0 +14156,17354,31633,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,3,0,8.4463317034459,8.369143466600814,3,0,0,0,-9,0,-1039.487404242364,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.938760551088782,8.084877973703607,0,0,52.69,48.71,6,1,0,0,13,4,1,443,0,0,0 +14157,17355,31634,31636,-9,-9,1,1,1,47,1,0,1,0,3,-9,2,1,0,3,8.695884650545013,8.784964516265633,0,2,0,-9,10,0,9,88.66883549765856,0,0,0,38,1,4,1,2,2,2019,1,2,6,0,45,45,15,1,0,1,0,14.75129652456026,14.75129652456026,0,0,0,0,0,0,0,1,1,0,2.287922088817831,0,0,0,49.04,55.86,6,1,0,0,9,5,1,502.6666666666667,0,0,0 +14157,17355,31635,-9,31636,31634,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.2295160156639,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,5,1,502.6666666666667,0,0,0 +14157,17355,31636,31634,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,4,9.072532042239835,8.647574715704151,5.197593800018934,2,0,-9,10,0,0,-64.77215064650923,0,0,1,47,3,3,1,3,2,2019,1,1,9,0,32,35,15,1,0,1,0,30.33126148903824,30.33126148903824,0,0,0,0,0,0,0,1,1,0,5.75124643200042,0,0,0,48.6,51.67,6,1,0,0,9,5,1,502.6666666666667,0,0,0 +14158,17356,31637,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,5,7.956806755281387,7.90298696764152,4.446449258146631,3,0,0,0,-9,0,-930.6538064277527,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,7.952523883123714,7.952523883123714,0,0,0,0,0,0,0,0,0,0,0,4.588217175972488,0,0,60.02,56.42,6,1,0,0,5,4,1,466,0,0,0 +14158,17357,31638,-9,31637,-9,2,1,1,29,2,0,0,0,2,-9,2,1,0,4,8.377100899297318,7.966460102916164,0,3,0,0,0,-9,0,-961.3183125240453,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,50,40,15,1,0,-9,1,7.04532059830338,7.04532059830338,0,0,0,0,0,0,0,0,0,0,0,0,1.118488201744165,3,40.82,55.28,6,1,0,0,5,4,1,264,0,0,0 +14159,17358,31639,-9,-9,-9,1,1,1,60,3,0,1,0,1,-9,2,1,0,3,9.087030237502349,8.881983101023501,0,4,0,0,0,-9,0,-845.8954609434021,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,35,40,15,1,1,-9,0,25.73580381019202,25.73580381019202,0,0,0,0,0,0,0,0,0,0,4.857058493900333,0,0,0,53,40.54,6,1,0,0,11,5,1,241,0,0,0 +14160,17359,31640,31641,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,7.910213650529982,8.022535739462668,1,0,-9,45,0,2,-72.25953953337991,0,0,0,71,2,2,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.506011512116821,7.844759376700235,2.710433790892275,3,55.37,40.83,6,1,0,0,13,3,0,814.5,0,0,0 +14160,17359,31641,31640,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,45,0,-2,-6.476292558763937,0,0,0,73,2,3,3,3,3,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,1,0,9.723947262179475,0,0,0,0,1,1,0,2.190363476613643,0,0,0,50.45,23.08,6,1,0,0,13,3,0,814.5,0,0,0 +14161,17360,31642,31643,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,7.464932517900841,7.666087763663205,1,0,-9,6,0,-6,150.4713290167521,0,0,0,79,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.578737823463497,0,0,61.68,47.24,6,1,0,0,13,3,1,750.5,0,0,0 +14161,17360,31643,31642,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,6.38345955962659,6.722295396562926,1,0,-9,6,0,6,56.59959531258794,0,0,0,73,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.63468620629835,0,0,51.4,42.92,2,1,0,0,13,3,1,750.5,0,0,0 +14162,17361,31644,31645,-9,-9,2,1,0,57,1,0,0,0,1,-9,2,1,0,3,8.190679378200866,8.151689633155744,0,1,0,-9,38,0,-6,25.56615174650046,0,0,0,63,1,3,3,2,1,2019,2,1,7,0,54,54,15,1,0,3,0,8.485086712950551,8.485086712950551,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.71,36.52,5,1,0,0,10,3,1,918.5,0,0,0 +14162,17361,31645,31644,-9,-9,1,1,1,63,1,0,0,0,1,-9,8,3,1,3,0,0,0,1,0,-9,36,0,6,-63.88401470820466,0,0,0,57,1,3,1,3,3,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.86,45.86,5,1,0,0,10,3,1,918.5,0,0,0 +14162,17362,31646,-9,31644,31645,3,1,0,18,2,0,0,1,2,0,7,2,0,4,6.585593660182706,6.714081293959246,0,3,0,0,0,-9,0,-869.1005534826877,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,2,15,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.4788600738169673,0,0,0,47.97,56.11,6,1,0,0,10,2,1,2242,0,0,0 +14163,17363,31647,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,4,0,6.103875828782104,5.962829919261436,3,0,0,0,-9,0,-1157.401908536115,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.301825572333815,6.138897336985742,8.188269065807305,3,46.66,49.9,4,1,0,0,11,2,1,2044,0,0,0 +14164,17364,31648,31649,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,6.968839722671283,6.963234640112333,1,0,-9,6,0,-10,-122.4244026983105,0,0,0,74,2,5,3,-9,-9,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.733862256416741,6.872983734615786,3.422403261507519,3,51.68,49.13,7,1,0,0,11,2,1,184.5,0,0,0 +14164,17364,31649,31648,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,6,0,10,7.040215663282392,0,0,0,64,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.567872686056337,0,0,3,62.39,56.71,1,1,0,0,11,2,1,184.5,0,0,0 +14165,17365,31650,31651,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.33110783493564,7.114507787622924,1,0,-9,5,0,1,-113.6691425308805,0,0,0,67,2,2,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.252689629389026,7.291392497655153,0,0,54.2,57.49,6,1,0,0,12,5,1,1130.5,0,0,0 +14165,17365,31651,31650,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,8.987713413261673,9.439034943163941,1,0,-9,5,0,-1,-73.68728058850031,0,0,0,68,1,4,3,-9,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.285460444822437,9.708728057930742,0,0,54.78,23.91,5,1,0,0,12,5,1,1130.5,0,0,0 +14166,17366,31652,-9,31654,31653,7,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.560523578812,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,2,1,532.5,0,0,0 +14166,17366,31653,31654,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.044410568452401,8.097251433746894,0,2,0,-9,7,0,1,76.39706372128454,0,0,0,46,3,4,3,3,3,2019,2,1,6,0,45,45,15,1,0,3,0,7.219774676137904,7.219774676137904,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,3,0,0,9,2,1,532.5,0,0,0 +14166,17366,31654,31653,-9,-9,1,1,0,46,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,27,0,-1,72.20635844425841,-9,0,0,47,2,4,1,3,1,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,9,2,1,532.5,0,0,0 +14166,17366,31655,-9,31654,31653,6,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.5915162568181,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,9,2,1,532.5,0,0,0 +14166,17367,31656,-9,31654,31653,3,1,0,23,3,0,2,0,2,-9,2,1,0,3,7.810868692523877,8.026934973479479,0,3,0,0,0,-9,0,-1046.736418086563,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,3,37,0,15,1,3,-9,1,7.188542431880221,7.188542431880221,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,44.97,5,3,0,0,9,3,1,314,0,0,0 +14166,17368,31657,-9,31654,31653,5,1,0,18,3,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1071.12678600941,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,73.7,32.43,7,3,0,0,9,1,1,597,0,0,0 +14167,17369,31658,31659,-9,-9,1,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,44,0,-1,87.32315775017025,0,0,0,65,2,3,3,-9,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.217516363263607,0,0,0,51.92,53.03,5,1,0,0,2,3,1,1894.5,0,0,0 +14167,17369,31659,31658,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,8.089130621580644,7.9531551753794,1,0,-9,44,0,1,3.190153046709523,0,0,0,64,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.136584796344869,7.480237369202846,0,0,59.91,42.65,2,1,0,0,2,3,1,1894.5,0,0,0 +14168,17370,31660,31661,-9,-9,1,1,0,49,1,1,1,0,3,-9,2,1,0,3,6.657222677389221,6.662246779077467,0,2,0,-9,23,0,4,37.47044114676352,0,0,0,45,2,3,1,-9,-9,2019,1,2,12,0,11,13,15,1,2,1,0,7.516049498336887,7.516049498336887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.39,36.95,6,1,0,0,4,5,1,364.5,0,0,0 +14168,17370,31661,31660,-9,-9,2,1,1,45,1,1,1,0,2,-9,2,1,0,3,8.934392782082956,8.983623781983116,0,2,0,-9,6,0,-4,-120.0354616518479,0,0,0,49,3,3,1,-9,-9,2019,1,1,6,0,49,44,15,1,0,1,0,21.34546509591878,21.34546509591878,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,4,5,1,364.5,0,0,0 +14168,17371,31662,-9,31660,31661,3,1,1,20,2,1,1,0,2,-9,2,1,0,5,7.397838294200215,7.620687727564558,0,3,0,0,0,-9,0,-1027.787873482141,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,0,0,40,40,15,1,0,-9,1,7.085256415117235,7.085256415117235,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.48,46.19,7,1,0,0,4,3,1,231,0,0,0 +14168,17372,31663,-9,31660,31661,4,1,0,20,2,1,1,0,2,-9,2,1,0,4,6.400564972219945,6.33622134482605,0,3,0,0,0,-9,0,-940.5155476885999,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,16,15,1,0,-9,1,5.279589611891471,5.279589611891471,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,1,1,0,0,4,2,1,302,0,0,0 +14168,17372,31664,-9,31663,-9,5,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1012.548028603857,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,1,302,0,0,0 +14169,17373,31665,31666,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,6.988433866453153,7.221853911046522,1,0,-9,9,0,1,-177.3101411726872,0,0,0,67,3,2,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.11963602520404,0,0,61.14,35.64,6,1,0,0,1,2,1,2323.5,0,0,0 +14169,17373,31666,31665,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,73.68666249969847,0,0,0,68,2,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,46.16,7,1,0,0,1,2,1,2323.5,0,0,0 +14169,17374,31667,-9,31666,31665,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-987.2024951708152,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,0,37,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,1,1,1,263,0,0,0 +14170,17375,31668,31669,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,1,0,5.651482248817683,5.957396554804927,1,0,-9,6,0,2,-31.12808157101738,0,0,0,74,3,2,3,3,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,1,0,9.330569068289048,0,0,0,0,1,1,0,5.43628703038786,5.739667290756688,0,0,44.11,18.02,3,1,0,0,11,2,1,495.5,0,0,0 +14170,17375,31669,31668,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-2,117.7606558601822,0,0,0,76,2,1,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.2751625777793,1,53.46,39.14,2,1,0,0,11,2,1,495.5,0,0,0 +14171,17376,31670,31671,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,1,0,5.995977550712461,5.805103683169069,1,0,-9,43,0,4,-59.92766885586048,0,0,0,72,3,4,3,3,2,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,0,122.8975543071916,0,0,0,0,1,1,0,0,5.988056794514337,0,0,44.33,20.38,5,1,0,0,2,2,1,665,0,0,0 +14171,17376,31671,31670,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,43,0,-4,119.1377361827757,0,0,0,76,3,1,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.15,41.01,7,1,0,0,2,2,1,665,0,0,0 +14172,17377,31672,-9,-9,-9,1,1,1,62,3,0,0,0,1,-9,2,1,0,3,9.241322426614822,9.200978951564474,6.720768653031842,3,0,0,0,-9,0,-980.1109024277083,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,45,47,15,1,1,-9,0,27.10435456764536,27.10435456764536,0,0,0,0,0,0,0,0,0,0,7.722490412973051,7.61134718961272,0,0,52.99,51.28,1,3,0,0,6,5,1,276,0,0,0 +14173,17378,31673,31674,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,51,0,-2,-11.12409269360857,0,0,0,72,1,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.153712526625438,0,13.05112442527872,1,46.98,35.42,7,1,0,0,6,2,1,1523,0,0,0 +14173,17378,31674,31673,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,2,0,7.540842742417378,7.276679573222523,1,0,-9,51,0,2,-33.82412291727565,0,0,0,70,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,1.559095966891484,0,0,0,0,1,1,0,6.389075904681459,7.491765241510755,0,0,52.65,30.38,6,1,0,0,6,2,1,1523,0,0,0 +14174,17379,31675,31679,-9,-9,2,1,1,46,1,0,4,0,3,-9,2,1,0,3,8.441714648005581,7.786965263470184,0,2,0,-9,1,-9,5,-15.74296499967394,-9,0,0,41,2,4,3,-9,-9,2019,2,1,12,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.27,44.25,5,3,0,0,8,2,0,668.3333333333334,0,0,0 +14174,17379,31676,-9,31679,31675,6,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1116.111535175961,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,668.3333333333334,0,0,0 +14174,17379,31677,-9,31679,31675,5,1,0,12,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-879.5544468192412,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,3,0,0,8,2,0,668.3333333333334,0,0,0 +14174,17379,31678,-9,31679,31675,4,1,0,15,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-951.4048786193887,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,8,2,0,668.3333333333334,0,0,0 +14174,17379,31679,31675,-9,-9,1,1,0,41,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,16,-9,-5,-5.233945419958562,-9,0,1,46,3,3,1,3,3,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.32,45.08,6,3,0,0,8,2,0,668.3333333333334,0,0,0 +14174,17379,31680,-9,31679,31675,3,1,0,17,2,0,4,1,2,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-1061.717098020329,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,4,3,0,0,8,2,0,668.3333333333334,0,0,0 +14175,17380,31681,-9,-9,-9,2,1,1,37,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-981.9808215705139,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,28,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.339529548085514,3,31.45,40.14,2,1,0,0,13,1,1,221,0,0,0 +14175,17381,31682,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-807.4051512051086,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,27.93999753233384,0,0,0,76.01141064867872,258.730756024878,1,1,0,0,0,0,0,52,45,6,1,0,0,13,1,1,773,0,0,0 +14176,17382,31683,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1034.570456189516,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,29.32,31.5,2,1,0,1,4,1,1,1898,0,0,0 +14177,17383,31684,-9,-9,-9,1,1,0,38,3,0,3,0,3,-9,2,1,0,5,8.414463056090874,8.61663878855798,0,4,0,0,0,-9,0,-1019.894258855354,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,2,24,48,15,1,2,-9,0,21.85883245370617,21.85883245370617,0,0,0,0,0,0,0,1,1,0,1.14049212184997,0,0,0,57.06,57.76,6,4,0,0,10,3,0,1004,0,0,0 +14177,17383,31685,-9,31684,-9,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-809.2934219871086,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,10,3,0,1004,0,0,0 +14178,17384,31686,-9,31687,31688,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-935.9531823105785,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,3,1,1691.333333333333,0,0,0 +14178,17384,31687,31688,-9,-9,2,1,0,26,1,1,1,0,2,-9,5,1,0,5,6.698769777762865,7.069280376150672,0,2,0,-9,1,-9,-2,86.74076519637504,-9,1,1,28,2,4,1,-9,-9,2019,1,1,4,0,16,0,15,1,0,1,0,6.202756065628982,6.202756065628982,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,6,1,0,0,13,3,1,1691.333333333333,0,0,0 +14178,17384,31688,31687,-9,-9,1,1,1,28,1,1,1,0,2,-9,2,1,0,4,8.126866344066615,7.878606206488154,0,2,0,-9,1,-9,2,-22.69651443452118,-9,1,0,26,2,5,1,2,2,2019,1,2,10,0,37,0,15,1,1,1,0,13.94614198542679,13.94614198542679,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,13,3,1,1691.333333333333,0,0,0 +14179,17385,31689,31690,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,6.850367350621361,7.272703419094939,1,0,-9,9,0,3,-80.75146135547442,0,0,0,73,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.046659527549546,6.701441127755653,0,0,54.2,57.49,7,1,0,0,13,3,1,1139,0,0,0 +14179,17385,31690,31689,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,7.047600967692029,7.150750517325661,1,0,-9,9,0,-3,-76.82257404539192,0,0,0,76,3,4,3,2,2,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.172882015460894,7.266983034164794,0,0,40.58,43.59,4,1,0,0,13,3,1,1139,0,0,0 +14180,17386,31691,-9,31693,31692,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.956773339712,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,4,1,405.6666666666667,0,0,0 +14180,17386,31692,31693,-9,-9,3,1,1,33,1,0,1,0,1,-9,2,1,0,3,8.889340809288869,8.483171946747063,0,2,0,-9,2,0,7,61.40757307018099,-9,0,0,26,2,4,2,-9,-9,2019,2,1,14,3,47,0,15,1,3,2,0,14.49958747874995,14.49958747874995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.82,47.1,4,1,0,0,4,4,1,405.6666666666667,0,0,0 +14180,17386,31693,31692,-9,-9,1,1,0,26,1,0,1,0,2,-9,7,2,0,4,7.380122523534519,7.535588984876712,0,2,0,-9,2,0,-7,-14.48872414374434,1,1,1,33,1,3,1,2,-9,2019,3,3,10,0,24,25,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,56.48,5,1,0,0,4,4,1,405.6666666666667,0,0,0 +14181,17387,31694,-9,-9,-9,1,1,1,56,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-899.3689736252419,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.48,28.06,1,1,0,0,11,1,1,158.5,0,0,0 +14181,17387,31695,-9,-9,31694,3,1,1,15,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-946.8653290357673,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,1,1,158.5,0,0,0 +14182,17388,31696,-9,31699,31698,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-980.4341463714153,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,1,5,1,1370.75,0,0,0 +14182,17388,31697,-9,31699,31698,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1133.315362919523,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,1,5,1,1370.75,0,0,0 +14182,17388,31698,31699,-9,-9,2,1,1,42,1,1,2,0,3,-9,2,1,0,4,9.336522234277245,9.091119219756264,0,2,0,-9,1,-9,13,-20.4321219746351,-9,0,0,29,2,5,1,-9,-9,2019,1,1,9,0,97,0,15,1,1,1,0,9.20916698987465,9.20916698987465,0,0,0,0,0,0,0,1,1,0,9.390507218592431,0,0,0,52,55,5,1,0,0,1,5,1,1370.75,0,0,0 +14182,17388,31699,31698,-9,-9,1,1,0,29,1,1,2,0,2,-9,2,1,0,5,7.545426428203974,6.856968684616023,0,2,0,-9,1,-9,-13,-44.9372246350557,-9,1,1,42,3,4,1,2,2,2019,1,2,7,0,32,0,15,1,0,1,0,5.3627427761896,5.3627427761896,0,0,0,0,0,0,0,1,1,0,6.730855136467029,0,7.390804509731881,3,59.43,58.05,6,2,0,0,1,5,1,1370.75,0,0,0 +14183,17389,31700,31701,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,2,0,6.686612730824448,7.322557514926086,1,0,-9,49,0,-4,79.02594636920863,0,0,0,70,1,4,1,2,2,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,1,0,15.32886825669893,0,0,0,0,1,1,0,2.891222118143481,6.891770622531712,0,0,45,14.78,5,1,0,0,5,5,1,723.5,0,0,0 +14183,17389,31701,31700,-9,-9,1,1,1,70,1,0,0,0,1,-9,1,1,0,4,7.117021351520946,9.329810121014562,9.023541227551192,1,0,-9,49,0,4,18.55365212292512,0,0,0,66,1,2,3,2,2,2019,2,2,8,0,8,12,15,1,0,4,0,17.85305092252508,17.85305092252508,0,0,0,0,0,0,0,1,1,0,2.671058794712962,9.136412093801306,17.68134393132946,1,60.12,54.8,7,1,0,0,5,5,1,723.5,0,0,0 +14184,17390,31702,-9,-9,-9,1,1,0,88,3,0,0,0,2,-9,4,3,0,3,0,8.143953890363189,7.404698197209221,3,0,0,0,-9,0,-1051.795738766845,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,6.614955326379069,0,0,0,0,6.946527924621282,1,1,0,4.138892082153225,7.535019503407479,0,0,45.63,46.6,6,1,0,0,2,3,1,388,0,0,0 +14185,17391,31703,31704,-9,-9,1,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.614318494819329,7.789591158219218,0,1,0,-9,19,0,-3,-48.4536717625361,0,0,0,49,2,4,1,2,2,2019,1,2,12,0,37,38,15,1,0,1,0,6.625904510510135,6.625904510510135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,6,3,1,586,0,0,0 +14185,17391,31704,31703,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,4,6.478298649654271,6.408309193509212,0,1,0,-9,19,0,3,34.02811945317992,-9,0,0,46,2,4,1,2,2,2019,1,1,10,0,40,0,15,1,0,1,0,1.689818516858934,1.689818516858934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,6,3,1,586,0,0,0 +14185,17392,31705,-9,31703,31704,4,1,0,18,2,0,0,0,2,-9,2,1,0,4,7.751304134318731,8.000796469501083,0,3,0,0,0,-9,0,-888.8940752267355,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,4,38,0,15,1,4,-9,1,6.41339033662931,6.41339033662931,0,0,0,0,0,0,0,0,0,0,2.973576070827552,0,0,0,35.77,48.43,5,1,0,0,6,3,1,663,0,0,0 +14186,17393,31706,31708,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,5,9.824440283242025,9.284809484959352,0,2,0,-9,11,0,-2,29.21474681997405,0,0,0,39,1,4,1,-9,-9,2019,1,1,8,1,60,40,15,1,1,1,0,29.55652677894402,29.55652677894402,0,0,0,0,0,0,0,0,0,0,4.043642679435102,0,0,3,59.43,58.05,6,1,0,0,8,5,1,758,0,0,0 +14186,17393,31707,-9,31708,31706,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.1703770752626,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,758,0,0,0 +14186,17393,31708,31706,-9,-9,1,1,0,39,1,0,2,0,1,-9,1,1,0,4,6.745536306344053,6.859977852204419,0,2,0,-9,11,0,2,26.50782827358533,0,0,1,37,1,5,1,2,2,2019,1,2,8,0,40,24,15,1,0,1,0,3.612746814195164,3.612746814195164,0,0,0,0,0,0,0,0,0,0,3.245634757808801,0,0,0,59.53,56.44,6,1,0,0,8,5,1,758,0,0,0 +14186,17393,31709,-9,31708,31706,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-894.2637720940008,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,758,0,0,0 +14187,17394,31710,31711,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,4.706787470520641,5.098873331193802,1,0,-9,4,0,-2,74.48056564961108,0,0,0,67,2,5,1,2,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.072402968138458,5.118080133437314,0,0,60.3,46.58,5,1,0,0,10,5,1,184.5,0,0,0 +14187,17394,31711,31710,-9,-9,2,1,1,67,1,0,0,0,2,-9,2,1,0,5,7.961998929767692,9.015209823156789,8.523185694373772,1,0,-9,4,0,2,7.804862348879784,0,0,0,65,2,3,3,3,2,2019,2,1,8,0,28,29,15,1,0,4,0,12.33450033441963,12.33450033441963,0,0,0,0,0,0,0,1,1,0,7.07261987286843,8.553511737490258,0,0,60.02,56.42,6,1,0,0,10,5,1,184.5,0,0,0 +14187,17395,31712,-9,31710,31711,3,1,0,19,2,0,0,0,2,-9,2,1,0,5,7.460844047927268,7.449446878121026,0,3,0,0,0,-9,0,-1009.959128947681,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,38,40,15,1,2,-9,1,4.012045218333584,4.012045218333584,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.3,62.97,5,1,0,0,10,3,1,196,0,0,0 +14188,17396,31713,31715,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,1,0,0,0,2,0,-9,10,0,-2,6.67451213935847,-9,0,1,42,1,3,1,-9,-9,2019,1,1,19,7,0,0,15,1,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.26,17.69,6,1,0,0,4,3,1,652.5,0,0,0 +14188,17396,31714,-9,31713,31715,3,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-975.5049335274281,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,4,3,1,652.5,0,0,0 +14188,17396,31715,31713,-9,-9,1,1,1,42,1,0,2,0,1,-9,2,1,0,3,8.290059604833843,8.124514923672189,0,2,0,-9,10,0,2,93.05855024293817,0,0,0,40,2,1,1,2,2,2019,1,2,8,1,37,37,15,1,1,1,0,13.30035775445269,13.30035775445269,0,0,0,0,0,0,0,1,1,0,.8179788946428315,0,39.7357081363776,3,56.91,49.54,5,1,0,1,4,3,1,652.5,0,0,0 +14188,17396,31716,-9,31713,31715,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-929.6946605150557,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,4,3,1,652.5,0,0,0 +14189,17397,31717,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,4,3,0,1,0,7.605000020728865,8.094229457445607,3,0,0,0,-9,0,-884.5858985244511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.023858290523968,7.979523129102903,0,0,47.87,38.01,4,1,0,0,11,3,1,592,0,0,0 +14190,17398,31718,-9,-9,-9,2,1,1,58,3,0,3,0,2,-9,2,1,0,4,8.235918237789111,8.169770843815909,0,4,0,0,0,-9,0,-835.0813845588682,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,37,15,1,0,-9,0,9.85860210701291,9.85860210701291,0,0,0,0,0,0,0,1,1,0,2.143424447531443,0,0,0,57.16,56.15,5,1,0,0,2,3,1,1377,0,0,0 +14191,17399,31719,-9,-9,-9,1,1,0,95,3,0,0,0,3,-9,4,3,0,3,0,4.892263857643538,4.68857944877393,3,0,0,0,-9,0,-1119.749874587502,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.51437017611098,0,0,54,43,6,1,0,0,2,2,1,374,0,0,0 +14192,17400,31720,31721,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,-4,-6.239956264177756,0,0,0,79,2,5,1,3,2,2019,3,1,11,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.8,26.26,6,1,0,0,13,3,1,258,0,0,0 +14192,17400,31721,31720,-9,-9,1,1,1,79,1,0,0,0,2,-9,2,1,0,5,7.650748257130823,8.585653750273481,7.37628327575295,1,0,-9,7,0,4,-20.34201680198964,0,0,0,75,2,4,3,3,3,2019,2,2,8,0,38,50,15,1,0,4,0,5.249763147719817,5.249763147719817,0,0,0,0,0,0,0,1,1,0,7.124637031701622,7.366890699625903,0,0,52.13,57.22,6,1,0,0,13,3,1,258,0,0,0 +14193,17401,31722,-9,-9,-9,3,1,0,23,2,0,1,0,2,-9,2,1,0,4,7.278832948544102,7.612925112476661,0,3,0,0,0,-9,0,-1020.498936920647,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,25,12,20,0,15,1,12,-9,1,8.147724404174996,8.147724404174996,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.3,64.17,3,1,0,0,2,3,1,413,0,0,0 +14194,17402,31723,-9,-9,-9,1,1,1,59,3,0,0,0,2,-9,2,1,0,4,0,8.293497252639444,8.587066054691325,3,0,0,0,-9,0,-991.4149691278659,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,16,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.555920541684383,0,0,57.16,56.15,6,1,0,0,2,4,1,577,0,0,0 +14195,17403,31724,-9,-9,-9,1,1,0,39,2,0,2,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-981.2386316699565,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.341415086028003,3,53.61,59.13,7,1,0,0,5,1,0,603,0,0,0 +14195,17403,31725,-9,31724,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1048.872485817677,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,1,0,603,0,0,0 +14195,17403,31726,-9,31724,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-963.1155161689569,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,1,0,603,0,0,0 +14196,17404,31727,31728,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.146978330529953,8.558227674988478,0,1,0,-9,3,0,5,-72.0271121474259,0,0,0,55,2,3,1,-9,-9,2019,1,1,11,0,47,49,15,1,0,1,0,10.65488751396359,10.65488751396359,0,0,0,0,0,0,0,0,0,0,2.015220681128088,0,0,0,46.08,57.2,5,1,0,0,11,5,1,222.5,0,0,0 +14196,17404,31728,31727,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.855570999566581,7.87843082539271,5.047405940053223,1,0,-9,3,0,-5,13.98151059821632,0,0,0,60,2,3,1,2,-9,2019,1,2,12,0,32,40,15,1,0,1,0,10.09598938594384,10.09598938594384,0,0,0,0,0,0,0,0,0,0,0,5.217455673107431,0,0,49.04,55.86,5,1,0,0,11,5,1,222.5,0,0,0 +14197,17405,31729,31730,-9,-9,1,1,1,57,1,0,0,0,3,-9,97,3,0,2,0,0,0,1,0,-9,35,0,1,0,0,0,0,56,3,1,3,3,3,2019,4,2,24,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,122.4390113657712,1,50.68,28.49,5,1,0,0,2,1,1,1326.5,0,0,0 +14197,17405,31730,31729,-9,-9,2,1,0,56,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,35,0,-1,0,0,0,0,57,3,2,3,3,3,2019,4,1,14,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.94,23.19,1,1,0,0,2,1,1,1326.5,0,0,0 +14198,17406,31731,31732,-9,-9,1,1,1,64,1,0,0,0,1,-9,1,1,0,4,0,7.02605209709164,7.557125723463969,1,0,-9,36,0,5,-79.48798551186594,0,0,0,59,1,4,1,3,3,2019,1,2,9,1,0,42,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211809720444892,6.958016155749895,0,0,66.2,41.05,6,1,0,0,10,5,1,462.5,0,0,0 +14198,17406,31732,31731,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,8.99043567767086,8.443531984211594,0,1,0,-9,35,0,-5,-137.3222758162945,0,0,0,64,1,4,1,2,-9,2019,1,1,6,0,42,43,15,1,0,1,0,16.26370039505652,16.26370039505652,0,0,0,0,0,0,0,0,0,0,1.959275387371092,0,0,0,39.39,57.52,5,1,0,0,10,5,1,462.5,0,0,0 +14199,17407,31733,31736,-9,-9,2,1,1,43,1,0,3,0,3,-9,2,1,0,5,8.66790541684966,8.584495664434648,0,2,0,-9,6,0,7,-1.71740799193499,-9,0,0,36,1,4,1,-9,-9,2019,1,1,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,13,5,1,468.8,0,0,0 +14199,17407,31734,-9,31736,31733,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.4188550362204,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,5,1,468.8,0,0,0 +14199,17407,31735,-9,31736,31733,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-973.1526238099967,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,468.8,0,0,0 +14199,17407,31736,31733,-9,-9,1,1,0,36,1,0,3,0,1,-9,2,1,0,4,8.683317629162653,8.981178635905193,0,2,0,-9,13,0,-7,40.59828736653706,0,0,1,43,3,5,1,2,1,2019,1,2,7,0,43,53,15,1,0,1,0,18.75926200323078,18.75926200323078,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,468.8,0,0,0 +14199,17407,31737,-9,31736,31733,3,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.054966886041,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,5,1,468.8,0,0,0 +14200,17408,31738,-9,-9,-9,1,1,1,45,3,0,0,0,1,-9,2,1,0,4,8.749232672474244,8.49279537367512,0,3,0,0,0,-9,0,-967.9154648357796,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,38,37,15,1,5,-9,0,14.70585734718956,14.70585734718956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.01,57.46,4,1,0,0,7,5,0,612,0,0,0 +14201,17409,31739,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,4,0,6.723847389056456,6.96080193720976,3,0,0,0,-9,0,-879.6973756778241,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.140679362434367,6.674143956330196,0,0,47.53,49.72,7,1,0,0,11,2,1,2289,0,0,0 +14202,17410,31740,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,4,3,0,3,0,7.728123285134783,7.765356716723764,3,0,0,0,-9,0,-980.6636746792219,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.177421142024223,7.613686661071433,0,0,54.37,54.8,6,1,0,0,2,3,1,51,0,0,0 +14203,17411,31741,-9,31743,31742,5,1,0,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-943.2629248822265,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,11,3,1,396.3333333333333,0,0,0 +14203,17411,31742,31743,-9,-9,1,1,1,44,1,0,2,0,3,-9,2,1,0,2,8.76401736717248,8.739139390596854,0,2,0,-9,15,-9,5,1.177161860904586,-9,0,0,39,2,4,1,2,3,2019,1,2,9,0,100,0,15,1,0,1,0,6.12911781384534,6.12911781384534,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.52,28.44,5,1,0,0,11,3,1,396.3333333333333,0,0,0 +14203,17411,31743,31742,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,4,6.774591758456323,6.542143598162781,0,2,0,-9,15,-9,-5,114.8597126143285,-9,0,1,44,3,2,1,2,2,2019,1,1,6,0,16,0,15,1,0,1,0,5.432778482872799,5.432778482872799,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,3,1,396.3333333333333,0,0,0 +14204,17412,31744,-9,31746,-9,3,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1020.049528136101,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,1,573.3333333333334,0,0,0 +14204,17412,31745,-9,31746,-9,2,1,0,17,2,0,1,0,3,1,11,3,0,5,7.030142434977534,6.833156839762646,0,4,0,0,0,-9,0,-879.5060760004669,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,37,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.193494994331286,0,.9530292823703808,3,57.06,57.76,7,1,0,0,6,4,1,573.3333333333334,0,0,0 +14204,17412,31746,-9,-9,-9,1,1,0,35,2,0,1,0,2,-9,2,1,0,4,8.482306125227415,8.573578605747709,6.140941135623867,4,0,0,0,-9,0,-919.7385980444267,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,36,48,15,1,1,-9,0,16.28156321579959,16.28156321579959,0,0,0,0,0,0,0,1,1,0,5.940936550950716,0,2.971312384279917,3,43.42,62.33,6,1,0,0,6,4,1,573.3333333333334,0,0,0 +14205,17413,31747,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,2,7.462341510730808,8.121571587107516,7.106462783714997,3,0,0,0,-9,0,-941.0510160507772,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,32,32,15,1,0,-9,0,6.77846650604025,6.77846650604025,0,0,0,0,0,0,0,1,1,0,5.876940167191283,6.92486473718089,0,0,47.31,50.2,6,1,0,0,6,4,1,346,0,0,0 +14206,17414,31748,31749,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,1,0,7.917623609163914,7.870674524676147,1,0,-9,59,0,1,-53.57798443255374,0,0,0,83,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.859564438211514,7.632347911501379,0,0,54.78,14.45,6,1,0,0,9,3,1,578,0,0,0 +14206,17414,31749,31748,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,4.860738437230258,4.371435004984328,1,0,-9,59,0,-1,70.37571361604594,0,0,0,84,2,1,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.847205017475662,5.035277495905493,0,0,53,44,6,1,0,0,9,3,1,578,0,0,0 +14207,17415,31750,-9,31752,31751,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-863.3910295778593,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,4,1,455.6666666666667,0,0,0 +14207,17415,31751,31752,-9,-9,3,1,1,24,1,1,1,0,2,-9,2,1,0,4,8.41724974462098,8.389228149541328,0,2,0,-9,2,0,0,-56.06038036365306,-9,1,0,24,2,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,17.25386336694479,17.25386336694479,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,5,0,0,11,4,1,455.6666666666667,0,0,0 +14207,17415,31752,31751,-9,-9,1,1,0,24,1,1,1,0,2,-9,2,1,0,4,7.191839815595514,7.374387530935586,0,2,0,-9,2,0,0,34.78278799349892,0,1,1,24,2,4,1,-9,-9,2019,1,3,5,0,24,0,15,1,0,1,0,6.675949895634007,6.675949895634007,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,455.6666666666667,0,0,0 +14208,17416,31753,-9,-9,-9,1,1,0,84,2,0,0,0,2,-9,4,3,0,4,0,6.955237555885008,6.237310607753888,3,0,0,0,-9,0,-1009.715429579254,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,1.471578569935866,0,1,1,0,0,6.900206159929322,0,0,57.25,47.77,6,1,0,0,5,2,1,735,0,0,0 +14209,17417,31754,31755,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,4,7.426838601930283,7.246879086166263,5.169693640036196,1,0,-9,38,0,1,-87.83424458242628,0,0,0,62,2,3,1,3,1,2019,1,1,10,0,20,20,15,1,0,1,0,6.622369758190772,6.622369758190772,0,0,0,0,0,0,0,0,0,0,0,5.020730126147325,0,0,44.83,57.81,5,1,0,0,9,4,1,192,0,0,0 +14209,17417,31755,31754,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.70017356632769,8.471138316999863,0,1,0,-9,37,0,-1,102.8021608910607,0,0,0,63,1,4,1,3,3,2019,1,2,6,0,48,50,15,1,0,1,0,12.05287961023065,12.05287961023065,0,0,0,0,0,0,0,0,0,0,.5022127999963141,0,0,0,48.22,54.79,6,1,0,0,9,4,1,192,0,0,0 +14210,17418,31756,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-978.1988226360436,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,47,35,4,1,0,0,11,1,1,772,0,0,0 +14211,17419,31757,31758,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,6.376083596895119,6.709279210227707,1,0,-9,28,0,-1,-74.4134170627043,0,0,0,67,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.257411235971644,6.425334508083703,2.564048218892308,3,55.19,54.26,6,1,0,0,10,2,1,579,0,0,0 +14211,17419,31758,31757,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,5.398807858130957,5.327274889335701,1,0,-9,28,0,1,-141.1840987218143,0,0,0,66,2,4,3,3,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.505416399692895,5.441703229939951,0,0,49.2,42.29,6,1,0,0,10,2,1,579,0,0,0 +14212,17420,31759,-9,31761,31760,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.891014365393,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,5,2,1,846.6666666666666,0,0,0 +14212,17420,31760,31761,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,3,7.73320843077976,7.844138728868808,0,2,0,-9,10,0,-5,-20.71995866110735,0,0,0,58,2,2,3,-9,-9,2019,2,1,11,0,39,39,15,1,1,3,0,6.994978092766743,6.994978092766743,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49,50,5,1,0,0,5,2,1,846.6666666666666,0,0,0 +14212,17420,31761,31760,-9,-9,1,1,0,58,1,0,1,0,2,-9,8,3,1,2,0,0,0,2,0,-9,10,0,5,-36.91953042492481,0,0,0,53,2,3,1,3,3,2019,3,2,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.87298754938151,3,39.59,26.56,3,1,0,1,5,2,1,846.6666666666666,0,0,0 +14212,17421,31762,-9,31761,31760,3,1,1,19,2,0,1,0,2,-9,2,1,0,4,8.067031156679336,8.396370585115852,0,3,0,0,0,-9,0,-895.6313007562278,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,40,47,15,1,1,-9,1,10.06410106686377,10.06410106686377,0,0,0,0,0,0,0,1,1,0,0,0,1.891850077182583,3,61,36.59,5,1,0,0,5,4,1,431,0,0,0 +14213,17422,31763,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,3,7.980548642672908,8.279286781621723,7.26641621075454,3,0,0,0,-9,0,-1040.169325286264,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,40,38,15,1,4,-9,0,8.189050126595847,8.189050126595847,0,0,0,0,0,0,0,0,0,0,.8848725737342601,7.601100808425029,0,0,34.11,58.61,3,1,0,0,13,4,1,334,0,0,0 +14213,17423,31764,-9,31763,-9,2,1,1,25,2,0,0,0,1,1,2,1,0,4,8.335277472753431,8.380635379683754,0,3,0,0,0,-9,0,-1032.821979457213,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,37,0,15,1,1,-9,1,11.89434082119924,11.89434082119924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,51.79,5,1,0,0,13,4,1,485,0,0,0 +14214,17424,31765,31767,-9,-9,1,1,1,34,1,1,1,0,2,-9,2,1,0,4,8.637890782686828,8.496376104720847,0,2,0,-9,4,0,3,-32.80123448097167,0,0,0,31,1,3,1,2,2,2019,1,2,12,0,42,42,15,1,0,1,0,14.41735763142961,14.41735763142961,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,43.09,5,1,0,0,2,4,1,1113.666666666667,0,0,0 +14214,17424,31766,-9,31767,31765,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.686294834151,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,1,1113.666666666667,0,0,0 +14214,17424,31767,31765,-9,-9,2,1,0,31,1,1,1,0,1,-9,2,1,0,3,7.619929448155728,7.635581171494829,0,2,0,-9,4,0,-3,-38.17789812585396,0,0,1,34,2,4,1,-9,-9,2019,1,1,16,5,34,39,15,1,5,1,0,6.881058471137022,6.881058471137022,0,0,0,0,0,0,0,1,1,0,7.66228846251036,0,0,0,45.48,52.14,6,1,0,0,2,4,1,1113.666666666667,0,0,0 +14215,17425,31768,-9,31770,31769,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.743868183977,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,3,0,320.6666666666667,0,0,0 +14215,17425,31769,31770,-9,-9,2,1,1,25,1,1,1,0,2,-9,2,1,0,2,8.370063632593661,8.304993267428763,0,2,0,-9,3,0,0,12.56813937800063,0,1,0,25,2,3,1,-9,-9,2019,1,1,11,0,45,44,15,1,0,1,0,9.777402693232037,9.777402693232037,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,3,1,0,1,5,3,0,320.6666666666667,0,0,0 +14215,17425,31770,31769,-9,-9,1,1,0,25,1,1,1,0,2,-9,2,1,0,3,0,0,0,2,0,-9,3,0,0,-58.96720139959537,0,1,1,25,2,2,1,-9,-9,2019,1,2,11,0,0,28,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,4,1,0,0,5,3,0,320.6666666666667,0,0,0 +14216,17426,31771,31772,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,44,0,-2,0,0,0,0,61,3,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.747222743691341,0,0,0,54.37,54.8,7,3,0,0,11,1,1,1080,0,0,0 +14216,17426,31772,31771,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,43,0,2,0,0,0,0,59,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.23,52.59,6,3,0,0,11,1,1,1080,0,0,0 +14217,17427,31773,31774,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,3,0,7.9764115973623,8.061563243386521,1,0,-9,7,0,0,47.04307572725919,0,0,0,69,2,3,3,2,1,2019,4,1,14,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.449067884777492,7.672920615794196,0,0,21.93,45.58,3,1,0,0,13,4,1,931,0,0,0 +14217,17427,31774,31773,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.730815565524084,7.888142744967484,1,0,-9,7,0,0,13.89215801809237,0,0,0,69,1,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.838045122976271,7.757005597812834,0,0,62.66,52.4,6,1,0,0,13,4,1,931,0,0,0 +14218,17428,31775,-9,-9,-9,1,1,0,67,3,0,0,0,1,-9,4,3,0,3,0,5.500886652338997,5.610005915111521,3,0,0,0,-9,0,-1045.460566989927,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,23,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.700309049908281,5.49693984640315,0,0,52.99,51.28,6,1,0,0,5,2,1,165,0,0,0 +14219,17429,31776,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,4,0,6.69811797957584,6.733112536377028,3,0,0,0,-9,0,-987.6336073638404,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.946295128856172,6.867855974119421,0,0,59.29,46.97,6,1,0,0,6,2,1,798,0,0,0 +14220,17430,31777,-9,31778,31779,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-866.7768664588532,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,12,4,1,946.3333333333334,0,0,0 +14220,17430,31778,31779,-9,-9,2,1,0,31,1,1,1,0,1,-9,5,1,0,5,0,0,0,2,0,-9,9,0,1,28.13250646506174,0,0,1,30,1,5,1,-9,-9,2019,1,1,9,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,61.53,7,1,0,0,12,4,1,946.3333333333334,0,0,0 +14220,17430,31779,31778,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,5,8.713227885998684,8.817447111897334,0,2,0,-9,9,0,-1,-96.47480000175463,0,0,0,31,1,5,1,2,2,2019,1,2,8,0,40,45,15,1,0,1,0,13.08318111824852,13.08318111824852,0,0,0,0,0,0,0,1,1,0,1.366857991226326,0,0,0,54.1,59.11,6,1,0,0,12,4,1,946.3333333333334,0,0,0 +14221,17431,31780,31781,-9,-9,2,1,1,91,1,0,0,0,1,-9,4,3,0,3,0,7.818403191534843,7.269889226038352,1,0,-9,11,0,4,-45.81804263667131,0,0,0,87,2,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.227690234035355,7.747954616573803,0,0,55,45,6,1,0,0,6,4,1,601,0,0,0 +14221,17431,31781,31780,-9,-9,1,1,0,87,1,0,0,0,2,-9,4,3,0,3,0,7.876115644022651,7.585844094948371,1,0,-9,41,0,-4,-110.1881852797813,0,0,0,91,1,3,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.198672995862313,7.951645826493092,78.62866511768264,1,65.53,36.06,7,1,0,0,6,4,1,601,0,0,0 +14222,17432,31782,31783,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,5,8.688220699090783,8.544745210073931,0,1,0,-9,7,0,-5,88.73975394376077,0,1,1,32,2,3,1,2,2,2019,1,1,8,0,38,40,15,1,0,1,0,14.59789304538839,14.59789304538839,0,0,0,0,0,0,0,0,0,0,3.383741395720476,0,0,0,54.1,59.11,6,1,0,0,9,5,1,847,0,0,0 +14222,17432,31783,31782,-9,-9,1,1,1,32,1,0,0,0,2,-9,2,1,0,3,8.703474946872687,8.9484389127032,0,1,0,-9,7,0,5,-67.21487979765061,0,0,0,27,1,5,1,2,2,2019,1,2,10,0,57,52,15,1,0,1,0,12.20352248513021,12.20352248513021,0,0,0,0,0,0,0,0,0,0,4.243341450655659,0,0,0,55.37,40.83,5,1,0,0,9,5,1,847,0,0,0 +14223,17433,31784,-9,31785,31786,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.768896607422,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,0,458.3333333333333,0,0,0 +14223,17433,31785,31786,-9,-9,2,1,0,30,1,1,1,0,2,-9,2,1,0,4,8.073475598497158,8.124733777203474,0,2,0,-9,5,0,-4,-28.37976875425282,0,0,1,34,1,4,1,2,2,2019,1,1,17,5,24,0,15,1,5,1,0,14.49073767532233,14.49073767532233,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,6,1,0,0,9,5,0,458.3333333333333,0,0,0 +14223,17433,31786,31785,-9,-9,1,1,1,34,1,1,1,0,1,-9,2,1,0,4,8.638657937957998,8.494800351541803,0,2,0,-9,9,0,4,39.58811399509518,0,0,0,30,2,4,1,2,2,2019,1,2,6,0,37,37,15,1,0,1,0,12.76760370728469,12.76760370728469,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.48,55.86,6,1,0,0,9,5,0,458.3333333333333,0,0,0 +14224,17434,31787,31790,-9,-9,2,1,0,36,1,0,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-10,-18.22465056415361,0,0,1,46,2,4,1,3,3,2019,3,1,11,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.23999999999999,31.12,6,3,0,0,8,2,0,310.5,0,0,0 +14224,17434,31788,-9,31787,31790,5,1,0,12,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1083.643057043033,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,8,2,0,310.5,0,0,0 +14224,17434,31789,-9,31787,31790,4,1,1,14,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-993.708605677823,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,3,0,0,8,2,0,310.5,0,0,0 +14224,17434,31790,31787,-9,-9,1,1,1,46,1,0,4,0,2,-9,2,1,0,4,7.507193890946272,7.886975859172654,0,2,0,-9,19,0,10,76.53957018565661,0,0,0,36,2,4,3,2,2,2019,2,2,9,0,39,30,15,1,1,3,0,6.40831543166736,6.40831543166736,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,0,0,8,2,0,310.5,0,0,0 +14224,17434,31791,-9,31787,31790,3,1,1,16,2,0,4,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-904.1994076391388,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.02,43.89,6,3,0,0,8,2,0,310.5,0,0,0 +14224,17434,31792,-9,31787,31790,6,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.2121287601274,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,310.5,0,0,0 +14225,17435,31793,-9,-9,-9,1,1,0,44,2,0,0,0,1,-9,2,1,0,4,8.878245346941446,8.484886694442761,0,3,0,0,0,-9,0,-957.2369183711961,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,55,57,15,1,0,-9,0,17.17942084247324,17.17942084247324,0,0,0,0,0,0,0,0,0,0,5.469480328213531,0,0,0,49.35,59.64,6,1,0,0,7,5,1,1257,0,0,0 +14226,17436,31794,31795,-9,-9,1,1,0,78,1,0,0,0,1,-9,4,3,0,3,0,7.470901187240668,7.800874177530653,1,0,-9,55,0,-1,-20.37723676227118,0,0,0,79,1,2,3,2,1,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.795917193201387,7.565653408202015,27.99953180710051,1,43.48,49.14,5,1,0,0,1,3,0,803.5,0,0,0 +14226,17436,31795,31794,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,2,0,7.502535018123214,7.58907535187704,1,0,-9,10,0,1,40.44733890553032,0,0,0,78,1,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.655370790633219,7.45105227390178,0,0,53.96,28.04,6,1,0,0,1,3,0,803.5,0,0,0 +14227,17437,31796,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,6.899406578146207,6.946410839374997,3,0,0,0,-9,0,-1069.11339029906,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.48003560995341,7.02980162113129,0,0,52,47,5,1,0,0,6,2,1,666,0,0,0 +14228,17438,31797,-9,31801,31799,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.049749528706,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,9,3,1,276.4,0,0,0 +14228,17438,31798,-9,31801,31799,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.096346592776,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,3,1,276.4,0,0,0 +14228,17438,31799,31801,-9,-9,2,1,1,48,1,0,3,0,1,-9,2,1,0,4,8.619524040810528,8.633096331362781,0,2,0,-9,6,0,2,10.6801153829533,0,0,0,46,1,4,1,-9,-9,2019,1,1,9,0,70,60,15,1,1,1,0,7.394455286293793,7.394455286293793,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,1,0,0,9,3,1,276.4,0,0,0 +14228,17438,31800,-9,31801,31799,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.210490079878,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,1,276.4,0,0,0 +14228,17438,31801,31799,-9,-9,1,1,0,46,1,0,3,0,1,-9,2,1,0,4,7.246541567259261,7.119021965386997,0,2,0,-9,26,0,-2,34.96569043132941,0,0,0,48,1,4,1,2,1,2019,1,2,10,0,18,0,15,1,1,1,0,9.399102220743513,9.399102220743513,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,1,0,0,9,3,1,276.4,0,0,0 +14229,17439,31802,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-950.7149547704068,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,0,35,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.542502156442102,0,0,0,57.16,56.15,6,1,0,0,9,1,0,146,0,0,0 +14230,17440,31803,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-921.5447256291216,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.61,46.62,6,1,0,0,12,1,1,1175,0,0,0 +14231,17441,31804,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,3,7.270564067711807,7.340866214274666,0,3,0,-9,0,1,0,-1014.828561181614,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,17,5,10,9,15,1,5,-9,0,17.44194710907399,17.44194710907399,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.71,56.91,2,1,0,1,6,3,0,860,0,0,0 +14231,17442,31805,-9,31804,-9,3,1,1,26,3,0,0,0,2,-9,2,1,0,4,8.336314034437491,8.254853037910696,0,3,0,0,0,-9,0,-1035.543129147243,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,18,6,45,27,15,1,6,-9,1,7.778947234107137,7.778947234107137,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.92,60.71,5,1,0,0,6,4,0,64,0,0,0 +14231,17443,31806,-9,31804,-9,2,1,0,22,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1081.821556595155,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.78,55.1,5,1,1,0,6,1,0,853,0,0,0 +14232,17444,31807,31808,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,2,8.458837553654357,7.98673011334973,0,2,0,-9,21,0,0,82.29866660918518,0,0,0,47,2,4,1,2,2,2019,1,2,9,0,41,41,15,1,0,1,0,12.60808449485832,12.60808449485832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.43,42.62,5,1,0,0,7,3,1,783.5,0,0,0 +14232,17444,31808,31807,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,4,6.837759953311873,7.221872701497126,4.225808118099585,2,0,-9,21,0,0,-149.1186444015352,0,0,0,47,2,2,1,2,2,2019,1,1,20,6,38,38,15,1,6,1,0,2.853129128685395,2.853129128685395,0,0,0,0,0,0,0,0,0,0,4.658102099674593,4.283327961207403,0,0,50.26,53.71,5,1,0,0,7,3,1,783.5,0,0,0 +14233,17445,31809,31810,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,5,7.881543467695584,8.285826964701078,0,1,0,-9,2,0,0,40.20304183682611,0,1,1,36,2,4,1,2,2,2019,1,2,7,0,31,27,15,1,0,1,0,11.13218997107213,11.13218997107213,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,1,1,0,0,7,5,1,450,0,0,0 +14233,17445,31810,31809,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,4,8.172438386250205,8.719440807690953,0,1,0,-9,2,0,9,-96.08562561868152,0,0,0,27,2,5,1,-9,-9,2019,1,1,10,0,45,45,15,1,1,1,0,13.71662954354785,13.71662954354785,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,5,1,450,0,0,0 +14234,17446,31811,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-909.565689149605,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,29.62,48.33,5,1,0,0,2,1,1,524,0,0,0 +14235,17447,31812,31813,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,6,0,0,-46.16447780928992,0,0,0,66,1,2,3,2,2,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.534189316729421,0,0,0,54.02,43.98,7,1,0,0,12,3,1,339,0,0,0 +14235,17447,31813,31812,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,2,0,8.344582124258112,8.403279239815996,1,0,-9,6,0,0,107.4211325141394,0,0,0,66,1,5,3,2,2,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.964856312504181,8.178073342483929,0,0,51.8,44.35,6,1,0,0,12,3,1,339,0,0,0 +14236,17448,31814,-9,31815,-9,3,1,0,17,2,0,1,0,2,-9,2,3,0,4,5.60182887056669,5.779946367481048,0,4,0,0,0,-9,0,-1026.483490698366,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,2,6,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5917573736998193,0,0,0,45.26,56.19,6,1,0,0,9,4,1,942,0,0,0 +14236,17448,31815,-9,-9,-9,1,1,0,49,3,0,1,0,2,-9,2,1,0,3,7.846928792862762,8.643603601075142,6.68508983333353,4,0,0,0,-9,0,-981.9263672989666,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,18,6,30,0,15,1,6,-9,0,12.59051960684979,12.59051960684979,0,0,0,0,0,0,0,1,1,0,6.956244276806805,0,0,0,38.91,52.63,5,1,0,0,9,4,1,942,0,0,0 +14236,17448,31816,-9,31815,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1084.476939749694,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,4,1,942,0,0,0 +14237,17449,31817,31818,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,2,0,0,0,0,68,3,3,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,18.50392498036533,0,0,0,0,1,1,0,0,0,0,0,61.53,44.9,2,1,0,0,13,1,1,1070,0,0,0 +14237,17449,31818,31817,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-2,0,0,0,0,70,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,1,0,0,13,1,1,1070,0,0,0 +14237,17450,31819,-9,31818,31817,3,1,1,46,3,0,0,0,2,-9,2,1,0,4,8.024142602661591,8.214656568928209,0,3,0,0,0,-9,0,-1065.7211190651,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,49,15,1,0,-9,1,8.201275993153917,8.201275993153917,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.67,44.01,5,1,0,0,13,4,1,387,0,0,0 +14238,17451,31820,31821,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,5.586829718958472,5.553021956061592,1,0,-9,54,0,-2,-174.0075002811844,0,0,0,77,2,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,6.77028407820958,0,0,0,0,1,1,0,0,5.50384602283292,0,0,64.11,20.33,6,1,0,0,2,2,1,697,0,0,0 +14238,17451,31821,31820,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,2,0,5.492000327469329,5.682638213698136,1,0,-9,54,0,2,-26.54824572813348,0,0,0,75,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.619402231378845,5.499905656775512,13.36181039567636,1,60.99,26.22,6,1,0,0,2,2,1,697,0,0,0 +14239,17452,31822,-9,31824,31827,4,1,0,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-850.8271258512681,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,0,1292.5,0,0,0 +14239,17452,31823,-9,31824,31827,5,1,0,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.0269942546245,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,0,1292.5,0,0,0 +14239,17452,31824,31827,-9,-9,1,1,0,36,1,2,4,0,3,-9,6,3,0,3,0,0,0,2,0,-9,3,0,-1,-48.16343947764572,0,0,1,37,3,4,1,-9,-9,2019,3,6,12,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.895184122483787,1,45.36,42.78,5,1,0,0,7,5,0,1292.5,0,0,0 +14239,17452,31825,-9,31824,-9,2,1,0,17,2,2,4,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1199.365381573014,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,4,1,0,1,7,5,0,1292.5,0,0,0 +14239,17452,31826,-9,31824,-9,3,1,1,14,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.861318503097,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,7,5,0,1292.5,0,0,0 +14239,17452,31827,31824,-9,-9,6,1,1,37,1,2,4,0,3,-9,1,1,0,4,9.608081125118158,10.282171706985,0,2,0,-9,3,0,1,-6.073102866686135,0,0,0,36,3,3,3,-9,-9,2019,2,1,10,0,40,40,15,1,1,3,0,41.11918829546776,41.11918829546776,0,0,0,0,0,0,0,1,1,0,4.894983408466059,0,0,0,51,56,5,1,0,0,7,5,0,1292.5,0,0,0 +14240,17453,31828,31829,-9,-9,2,1,1,53,1,0,0,0,1,-9,2,1,0,4,8.373338693576217,8.099339326473448,0,1,0,-9,34,0,0,12.80167634216271,0,0,0,53,2,3,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,9.923281860372862,9.923281860372862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,9,4,1,808.5,0,0,0 +14240,17453,31829,31828,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.69049945226099,7.535363820397214,0,1,0,-9,34,0,0,-35.17492889659879,0,0,0,53,1,4,1,2,2,2019,1,2,7,0,25,25,15,1,0,1,0,6.912526818214243,6.912526818214243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.17,49.39,7,1,0,0,9,4,1,808.5,0,0,0 +14240,17454,31830,-9,31829,31828,3,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.231344597449478,8.317940762637605,0,3,0,0,0,-9,0,-1048.064980007909,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,3,0,43,38,15,1,0,-9,1,9.906266071305449,9.906266071305449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,1966,0,0,0 +14240,17455,31831,-9,31829,31828,4,1,0,22,2,0,0,0,2,-9,2,1,0,4,8.323652164460844,8.07914360968816,0,3,0,0,0,-9,0,-917.5214130679909,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,12,0,45,48,15,1,2,-9,1,11.63891343399205,11.63891343399205,0,0,0,0,0,0,0,0,0,0,4.149717832523558,0,0,0,46,58,5,1,0,0,9,4,1,173,0,0,0 +14241,17456,31832,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,4,7.641232879466159,7.413900224201711,0,3,0,0,0,-9,0,-1124.337683896234,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,30,0,15,1,0,-9,0,8.347009120905131,8.347009120905131,0,0,0,0,0,0,0,0,0,0,1.071681674874235,0,0,0,49.06,58.64,6,1,0,0,6,3,0,563,0,0,0 +14242,17457,31833,31834,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,4,8.472077986443258,8.180346214878227,0,1,0,1,1,-9,1,105.8684197293767,0,0,0,30,1,3,1,-9,-9,2019,1,2,6,0,52,60,15,1,0,1,0,10.60893922798645,10.60893922798645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,5,1,0,0,1,5,0,809.5,0,0,0 +14242,17457,31834,31833,-9,-9,2,1,0,30,1,0,0,0,1,-9,2,1,0,3,8.348235986962116,8.417201065750694,0,1,0,-9,1,-9,-1,43.81116787474993,-9,0,1,31,2,4,1,-9,-9,2019,1,1,12,0,58,0,15,1,0,1,0,6.784979137594906,6.784979137594906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,6,1,0,1,1,5,0,809.5,0,0,0 +14243,17458,31835,31836,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,4.562485966460708,4.675813310501889,1,0,-9,21,0,15,45.68570977575305,0,0,0,62,1,2,1,3,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.591447755444091,4.538633867872354,1.411272370355583,3,58.89,48.6,7,1,0,0,7,4,1,481,0,0,0 +14243,17458,31836,31835,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,2,8.783182693480637,8.494097240384184,6.422158483542598,1,0,-9,21,0,-15,-72.32267073391398,0,0,0,77,2,3,3,2,2,2019,2,2,7,0,37,42,15,1,0,4,0,17.64811329739667,17.64811329739667,0,0,0,0,0,0,0,1,1,0,7.550470972335219,6.822329651259114,0,0,61.28,35.65,6,1,0,0,7,4,1,481,0,0,0 +14244,17459,31837,31838,-9,-9,1,1,1,70,1,0,0,0,3,-9,1,1,0,4,0,4.92731887674523,4.426488741501061,1,0,-9,9,0,1,67.40925529749292,0,0,0,69,3,4,1,3,2,2019,1,2,6,0,0,10,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.375997242157281,4.730651941821457,0,0,64.17,46.05,7,1,0,0,11,2,0,206,0,0,0 +14244,17459,31838,31837,-9,-9,2,1,0,69,1,0,0,0,3,-9,2,1,0,4,6.404680813695478,6.457839907640677,0,1,0,-9,9,0,-1,-50.47891631408003,0,0,0,70,3,4,1,3,3,2019,1,1,12,0,20,10,15,1,0,1,0,4.395667079426667,4.395667079426667,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,11,2,0,206,0,0,0 +14244,17460,31839,-9,31838,31837,3,1,1,41,2,0,0,0,3,-9,1,1,0,4,7.384654275965261,7.297394668791396,0,3,0,0,0,-9,0,-997.0180476871393,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,0,15,1,0,-9,1,8.13000356232393,8.13000356232393,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.73,53.98,4,1,0,0,11,3,0,1132,0,0,0 +14245,17461,31840,31841,-9,-9,2,1,0,35,1,0,1,0,2,-9,2,1,0,4,8.230407211393077,8.530670053486935,0,2,0,-9,13,0,-2,-42.99621153716672,0,0,1,37,2,2,1,2,2,2019,1,1,24,12,30,30,15,1,12,1,0,16.27808184647098,16.27808184647098,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.26,61.9,6,1,0,0,6,4,1,1297.333333333333,0,0,0 +14245,17461,31841,31840,-9,-9,1,1,1,37,1,0,1,0,2,-9,2,1,0,2,8.197791065918402,8.003904443156095,0,2,0,-9,13,0,2,-24.60314423510582,0,0,0,35,2,4,1,2,2,2019,1,2,15,4,44,38,15,1,4,1,0,7.134449499760608,7.134449499760608,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.74,43.58,4,1,0,0,6,4,1,1297.333333333333,0,0,0 +14245,17461,31842,-9,31840,31841,3,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.306647502197,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1297.333333333333,0,0,0 +14246,17462,31843,31844,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,5,8.841917332464716,8.439779287911607,0,2,0,-9,9,0,4,-8.251419928915245,0,0,0,49,2,3,1,2,2,2019,1,1,13,1,60,84,15,1,1,1,0,11.13697480413902,11.13697480413902,0,0,0,0,0,0,0,1,1,0,1.699802592956029,0,0,0,40.61,64.02,6,1,0,0,12,5,1,427,0,0,0 +14246,17462,31844,31843,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,3,8.219040549468835,8.4309372265256,0,2,0,-9,9,0,-4,30.46032747574163,-9,0,0,53,2,5,1,3,3,2019,1,2,11,2,16,0,15,1,2,1,0,30.78304891827879,30.78304891827879,0,0,0,0,0,0,0,1,1,0,0,0,7.087920784129381,3,40.72,55.65,6,1,0,0,12,5,1,427,0,0,0 +14246,17463,31845,-9,31844,31843,3,1,0,22,2,0,1,0,2,-9,7,2,0,2,6.639702333270123,6.605756337145517,0,3,0,0,0,-9,0,-1034.98776635013,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,27,11,15,35,15,2,11,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.5394514767771204,0,0,0,13.52,60.6,4,1,0,0,12,2,1,737,0,0,0 +14247,17464,31846,31847,-9,-9,1,1,1,64,1,0,0,0,3,-9,1,1,0,3,9.173113638522203,9.120001343506031,0,1,0,-9,45,0,4,-82.12680316575792,0,0,0,60,1,1,3,3,-9,2019,2,2,11,1,50,60,15,1,1,3,0,20.38982462398519,20.38982462398519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,3,1,0,0,9,5,1,1394.5,0,0,0 +14247,17464,31847,31846,-9,-9,2,1,0,60,1,0,0,0,1,-9,8,3,1,1,7.560306955555008,7.473527429298907,3.700191048948771,1,0,-9,45,0,-4,61.04179418015505,0,0,0,64,3,3,1,3,2,2019,3,1,22,11,20,20,15,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.785524259343195,4.155025455465305,0,0,43.95,27.31,3,1,0,0,9,5,1,1394.5,0,0,0 +14248,17465,31848,31849,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.563986949112129,8.173799997569557,0,1,0,-9,30,0,-8,-27.29039469239283,0,0,0,55,1,4,1,3,-9,2019,1,1,10,0,0,40,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,6,3,0,0,9,5,1,495,0,0,0 +14248,17465,31849,31848,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,8.829301969513828,8.592780993254362,0,1,0,-9,30,0,8,112.9219735674698,0,0,0,47,2,4,1,3,3,2019,1,2,7,0,37,37,15,1,0,1,0,23.45793028420691,23.45793028420691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,9,5,1,495,0,0,0 +14248,17466,31850,-9,31848,31849,4,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.164917574311767,8.253756397025981,0,3,0,0,0,-9,0,-1077.675000641691,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,37,15,1,0,-9,1,12.47855904972594,12.47855904972594,0,0,0,0,0,0,0,0,0,0,3.370282779525557,0,0,0,54.1,59.11,6,3,0,0,9,4,1,149,0,0,0 +14248,17467,31851,-9,31848,31849,3,1,0,21,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1024.860843564963,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,3,0,0,9,1,1,809,0,0,0 +14249,17468,31852,-9,-9,-9,2,1,1,19,2,0,0,0,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1010.197941576227,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,33,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,12,1,0,332,0,0,0 +14250,17469,31853,-9,-9,-9,1,1,1,32,3,0,0,0,2,-9,2,1,0,5,9.00565965320607,8.682232785377307,0,3,0,0,0,-9,0,-1050.092057872293,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,47,57,15,1,1,-9,0,14.12556633426964,14.12556633426964,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,6,1,0,0,5,5,1,284,0,0,0 +14251,17470,31854,31855,-9,-9,2,1,0,48,1,0,0,0,1,-9,2,1,0,4,7.64093121564768,7.946155153092195,0,1,0,-9,23,0,-7,-7.36751487646848,0,0,0,55,1,3,1,3,1,2019,1,1,10,0,40,40,15,1,1,1,0,6.369643508361281,6.369643508361281,0,0,0,0,0,0,0,0,0,0,6.620837758165661,0,0,0,50,55,6,3,0,0,8,5,1,555.5,0,0,0 +14251,17470,31855,31854,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,3,8.963492733561422,8.905767452962916,0,1,0,-9,23,0,7,3.461078772908522,0,0,0,48,1,4,1,3,3,2019,1,2,17,5,35,39,15,1,5,1,0,34.59518172518344,34.59518172518344,0,0,0,0,0,0,0,0,0,0,4.482824761975527,0,0,0,26.16,61.11,5,3,0,0,8,5,1,555.5,0,0,0 +14251,17471,31856,-9,31854,31855,3,1,0,21,2,0,0,1,2,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1054.062607113838,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.42,63.93,5,3,0,0,8,1,1,801,0,0,0 +14251,17472,31857,-9,31854,31855,4,1,1,20,2,0,0,1,2,0,7,2,0,3,8.061900988844041,7.992723449089703,0,3,0,0,0,-9,0,-949.915433310852,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,38,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,5,3,0,0,8,4,1,597,0,0,0 +14252,17473,31858,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1091.999245550465,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.91,28.62,7,1,0,0,4,1,0,2902,0,0,0 +14253,17474,31859,31860,-9,-9,1,1,1,33,1,0,3,0,2,-9,2,1,0,4,8.054620930685671,8.307609060684509,0,2,0,-9,7,0,0,-90.15546504774596,0,0,0,33,2,3,1,2,2,2019,1,2,11,1,39,39,15,1,1,1,0,8.804750172185788,8.804750172185788,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.12,52.17,6,1,0,0,2,4,0,1803,0,0,0 +14253,17474,31860,31859,-9,-9,2,1,0,33,1,0,3,0,2,-9,2,1,0,3,8.530018768484606,8.197244418904159,0,2,0,-9,7,0,0,76.94509721744529,0,0,1,33,2,4,1,-9,-9,2019,1,1,10,0,38,32,15,1,0,1,0,11.86725677308138,11.86725677308138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.79,57.73,6,1,0,0,2,4,0,1803,0,0,0 +14253,17474,31861,-9,31860,31859,4,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.6695712070965,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,0,1803,0,0,0 +14253,17474,31862,-9,31860,-9,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.3039244016297,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,0,1803,0,0,0 +14253,17474,31863,-9,31860,31859,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1188.133753050432,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,4,0,1803,0,0,0 +14254,17475,31864,31865,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,6.192655989090455,6.563069056699618,1,0,-9,6,0,-11,-70.08553928774178,0,0,0,81,1,3,3,-9,-9,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.72743309427706,6.107999046253263,22.68565924225324,1,62.27,42.94,6,1,0,0,7,4,1,1240.5,0,0,0 +14254,17475,31865,31864,-9,-9,2,1,1,81,1,0,0,0,1,-9,4,3,0,3,0,8.343465479888188,8.307303060400878,1,0,-9,6,0,11,38.10471062834922,0,0,0,70,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.695767005938224,8.472541256993134,0,0,46.61,32.31,6,1,0,0,7,4,1,1240.5,0,0,0 +14255,17476,31866,31867,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.956091804027344,7.999286545716465,1,0,-9,9,0,-2,-85.27867890581491,0,0,0,69,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.58382257614254,8.208960773096658,0,0,59.14,52.5,6,1,0,0,10,3,1,888.5,0,0,0 +14255,17476,31867,31866,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,5.662315753201167,5.911847796757122,1,0,-9,9,0,2,28.73341452269187,0,0,0,67,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.313057083889286,5.91193317987312,0,0,54.37,54.8,6,1,0,0,10,3,1,888.5,0,0,0 +14256,17477,31868,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.181235365193169,7.896978789025053,0,3,0,0,0,-9,0,-1062.154930750024,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,42,21,15,1,0,-9,0,8.15609826386742,8.15609826386742,0,0,0,0,0,0,0,0,0,0,0,0,6.496854148864431,3,39.88,47.82,5,1,0,0,13,4,1,146,0,0,0 +14257,17478,31869,31870,-9,-9,1,1,1,61,1,0,0,0,3,-9,4,3,0,2,0,6.206391659783173,5.959312852105307,1,0,-9,20,0,21,-22.02482858848028,0,0,0,40,2,4,1,3,3,2019,3,2,15,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.973593639739288,3.433941182114318,3,33.6,41.68,5,1,0,1,4,3,0,863.5,0,0,0 +14257,17478,31870,31869,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,4,7.900264067004451,8.188060627432574,0,1,0,-9,6,0,-21,96.74774517576314,0,0,1,61,3,2,3,-9,-9,2019,2,1,13,1,41,40,15,1,1,4,0,8.646282455386171,8.646282455386171,0,0,0,0,0,0,0,0,0,0,0,0,9.459982775318156,3,34.35,51.67,4,1,0,0,4,3,0,863.5,0,0,0 +14258,17479,31871,-9,-9,-9,4,1,0,20,3,0,0,0,2,-9,2,1,0,3,6.255173365564151,6.195127081921409,0,3,0,0,0,-9,0,-1061.981164711527,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,1,19,14,15,1,1,-9,1,3.342686948491142,3.342686948491142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.13,31.59,4,3,0,0,4,2,0,344,0,0,0 +14259,17480,31872,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,3,8.56455988108983,8.444656819316073,0,3,0,0,0,-9,0,-1079.344900033015,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,42,46,15,1,1,-9,0,13.3340754207096,13.3340754207096,0,0,0,0,0,0,0,1,1,0,1.31450478320228,0,14.65993288006952,3,47.7,41.5,3,1,0,0,7,5,0,557,0,0,0 +14260,17481,31873,-9,-9,-9,1,1,1,80,2,0,0,0,2,-9,4,3,0,3,6.876863455652664,6.93304277095078,0,1,0,-9,9,0,32,-65.52782591798649,0,0,0,-9,-9,-9,-9,3,3,2019,3,2,7,0,0,10,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,5,5,1,192,0,0,0 +14260,17482,31874,-9,-9,-9,2,1,1,48,2,0,0,0,3,-9,1,1,0,3,9.847956622307771,9.467629510992172,0,1,0,-9,9,0,-32,-43.39519763880455,0,0,0,-9,-9,-9,-9,2,2,2019,2,1,10,0,30,30,15,1,0,-9,0,67.97408943931435,67.97408943931435,0,0,0,0,0,0,0,1,1,0,2.51508163525937,0,3.822871376311261,3,56.94,49.53,6,1,0,0,5,5,1,1838,0,0,0 +14261,17483,31875,31876,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,4,9.68495434207569,9.836386834463367,0,1,0,-9,9,0,-2,-20.56976681608674,0,0,0,56,1,2,1,-9,-9,2019,1,1,11,1,48,43,15,1,1,1,0,36.41012450370613,36.41012450370613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,5,1,0,0,6,5,1,1021,0,0,0 +14261,17483,31876,31875,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,2,8.169580463152339,8.088798178733628,0,1,0,-9,24,0,2,19.6882265669478,0,0,0,54,1,4,1,3,3,2019,1,2,27,12,37,47,15,1,12,1,0,11.04941193386103,11.04941193386103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.4,43.88,5,1,0,0,6,5,1,1021,0,0,0 +14261,17484,31877,-9,31876,31875,3,1,1,20,2,0,0,1,2,0,7,2,0,5,7.958854490090454,7.748537731717192,0,3,0,0,0,-9,0,-930.350988228477,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,38,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,6,1,0,0,6,3,1,225,0,0,0 +14261,17485,31878,-9,31876,31875,4,1,1,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-986.0720946949987,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,6,1,1,516,0,0,0 +14262,17486,31879,-9,31882,31880,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.2929598274806,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,601,0,0,0 +14262,17486,31880,31882,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,5,9.474993966555237,9.778959679178639,0,2,0,-9,7,0,4,45.78561391876018,0,0,0,36,1,4,1,2,2,2019,1,2,8,0,53,53,15,1,0,1,0,38.53956909981984,38.53956909981984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,6,1,0,0,12,5,1,601,0,0,0 +14262,17486,31881,-9,31882,31880,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.984552988815,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,601,0,0,0 +14262,17486,31882,31880,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.726924136697399,8.733937748285312,0,2,0,-9,7,0,-4,33.15710666611059,0,0,1,40,2,5,1,-9,-9,2019,1,1,8,0,24,25,15,1,0,1,0,23.89526573383132,23.89526573383132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,601,0,0,0 +14263,17487,31883,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,2,1,0,3,7.613598376565879,8.276566404319581,5.259827762406935,3,0,0,0,-9,0,-1025.117622018146,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,38,37,15,1,7,-9,0,7.799815398394238,7.799815398394238,0,0,0,0,0,0,0,1,1,0,1.93171504415346,6.066926854410346,0,0,34.55,54.08,2,1,0,0,6,4,1,961,0,0,0 +14264,17488,31884,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1123.659927529277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.45,19.48,7,1,0,0,9,1,0,252,0,0,0 +14265,17489,31885,-9,31886,-9,3,1,1,16,2,0,2,1,3,-9,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1120.974125337804,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,24,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.33,52.99,3,1,0,0,10,3,1,1019.5,0,0,0 +14265,17489,31886,-9,-9,-9,1,1,0,53,3,0,2,0,1,-9,2,1,0,3,7.665437591321266,8.259576795211194,7.606357175839546,4,0,0,0,-9,0,-1112.740059752708,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,37,40,15,1,0,-9,0,8.9172048159549,8.9172048159549,0,0,0,0,0,0,0,1,1,0,7.633265533471921,0,0,0,23.4,62.08,2,1,0,0,10,3,1,1019.5,0,0,0 +14265,17490,31887,-9,31886,-9,2,1,0,18,2,0,2,1,2,0,7,2,0,4,5.811650848542422,5.776080628540717,0,3,0,0,0,-9,0,-1019.55136646622,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,29,9,7,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.05,65.5,4,1,0,0,10,3,1,151,0,0,0 +14266,17491,31888,31890,-9,-9,1,1,0,46,1,0,2,0,1,-9,2,1,0,5,9.013647481168546,9.331332659291856,0,2,0,-9,26,0,-1,16.24969327748605,0,0,0,47,1,4,1,2,2,2019,1,2,8,0,42,42,15,1,0,1,0,30.09379616900629,30.09379616900629,0,0,0,0,0,0,0,0,0,0,3.627089546633501,0,0,0,62.39,56.71,6,1,0,0,9,5,1,848.5,0,0,0 +14266,17491,31889,-9,31888,31890,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.9188394815665,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,848.5,0,0,0 +14266,17491,31890,31888,-9,-9,2,1,1,47,1,0,2,0,1,-9,2,1,0,4,9.483658681085405,9.530013196527943,0,2,0,-9,26,0,1,95.337167509303,0,0,0,46,1,5,1,2,2,2019,1,1,8,0,42,44,15,1,0,1,0,26.16059536602435,26.16059536602435,0,0,0,0,0,0,0,0,0,0,4.012614439983541,0,0,0,57.16,56.15,6,1,0,0,9,5,1,848.5,0,0,0 +14266,17491,31891,-9,31888,31890,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.003329186601,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,848.5,0,0,0 +14267,17492,31892,31893,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,6.542456251753611,6.590246989553604,1,0,-9,54,0,6,48.00316354424918,0,0,0,74,3,5,3,-9,-9,2019,4,1,9,1,0,0,15,4,1,4,0,0,0,1,0,2.556009048458159,0,0,0,0,1,1,0,0,6.410369780149361,0,0,43.17,39.74,4,1,0,0,6,2,0,246,0,0,0 +14267,17492,31893,31892,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,54,0,-6,-61.35083653044931,0,0,0,80,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.711888075567806,1,66.93000000000001,43.76,7,1,0,0,6,2,0,246,0,0,0 +14268,17493,31894,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,3,0,4.45599824232879,4.059322334671957,3,0,0,0,-9,0,-940.5007238759576,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.313626514693757,0,0,52,47,5,1,0,0,13,2,0,126,0,0,0 +14269,17494,31895,31896,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,2,8.695327375009448,9.063591463986789,0,2,0,-9,17,0,-8,-26.590125552664,0,0,0,57,2,4,1,2,1,2019,1,1,9,1,65,60,15,1,1,1,0,15.37748894702446,15.37748894702446,0,0,0,0,0,0,0,1,1,0,7.261344351787971,0,23.51273483682128,3,49.18,33.22,5,1,0,0,10,5,1,316.3333333333333,0,0,0 +14269,17494,31896,31895,-9,-9,1,1,1,57,1,0,1,0,2,-9,1,1,0,4,7.90243378014291,8.312629526679975,7.951281784048136,2,0,-9,18,0,8,34.29899980028907,0,0,0,49,1,2,1,2,2,2019,1,2,6,0,35,28,15,1,0,1,0,6.554178451323417,6.554178451323417,0,0,0,0,0,0,0,1,1,0,8.250688494167839,7.782106551466239,0,0,56.17,37.81,6,1,0,0,10,5,1,316.3333333333333,0,0,0 +14269,17494,31897,-9,31895,31896,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.9133820705423,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,5,1,316.3333333333333,0,0,0 +14270,17495,31898,31899,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,2,8.32069191125248,8.099416966384092,0,1,0,-9,7,0,-5,-51.53854971109443,0,0,0,59,2,2,1,2,2,2019,1,2,8,0,40,42,15,1,0,1,0,7.445991925561784,7.445991925561784,0,0,0,0,0,0,0,1,1,0,5.397038365729085,0,0,0,63.41,29.17,4,1,0,0,10,4,1,502.5,0,0,0 +14270,17495,31899,31898,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,2,7.512144827390683,7.291049349504625,0,1,0,-9,7,0,5,125.2596539912585,0,0,0,54,3,2,1,-9,-9,2019,1,1,11,1,25,25,15,1,1,1,0,8.448518350801233,8.448518350801233,0,0,0,0,0,0,0,1,1,0,2.637276063738599,0,8.835182878879181,3,63.09,32.02,6,1,0,0,10,4,1,502.5,0,0,0 +14271,17496,31900,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,2,1,0,5,9.167468350960888,8.554603675661397,0,3,0,0,0,-9,0,-907.7972169981825,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,40,40,15,1,0,-9,0,19.90145431161139,19.90145431161139,0,0,0,0,0,0,0,0,0,0,6.686709890099787,0,0,0,49.25,61.25,6,1,0,0,11,5,1,1205,0,0,0 +14272,17497,31901,31902,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,7.500999470502588,7.562167967767207,1,0,-9,5,0,-2,-71.10632109764028,0,0,0,66,3,3,1,3,3,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.199003275538285,0,0,56.52,48.31,6,1,0,0,11,2,1,905.5,0,0,0 +14272,17497,31902,31901,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,3,0,0,0,1,0,-9,5,0,2,-111.3912194016041,0,0,0,64,2,3,3,3,-9,2019,2,2,7,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,49.66,7,1,0,0,11,2,1,905.5,0,0,0 +14273,17498,31903,31905,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,2,9.165542144465485,8.894952723625007,0,2,0,-9,10,-9,-6,-26.83879538294305,-9,0,1,48,2,4,3,3,2,2019,2,2,11,2,39,0,15,1,2,3,0,25.35227164328803,25.35227164328803,0,0,0,0,0,0,0,1,1,0,6.428436309274878,0,0,0,50.51,32.45,5,1,0,0,11,4,1,384.5,0,0,0 +14273,17498,31904,-9,31903,31905,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-985.5070773761802,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,384.5,0,0,0 +14273,17498,31905,31903,-9,-9,2,1,1,48,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,10,-9,6,118.479989451949,-9,0,0,42,1,2,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.01536496682677,3,57.98,47.73,6,1,0,0,11,4,1,384.5,0,0,0 +14273,17498,31906,-9,31903,31905,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-961.9985176929729,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,384.5,0,0,0 +14274,17499,31907,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,0,7.082618231981117,7.703650391811535,3,0,0,0,-9,0,-1190.994996531866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,1.681102495004362,0,0,1,1,0,3.133962311064184,7.321470323617338,0,0,60.8,32.65,6,1,0,0,13,3,1,262,0,0,0 +14275,17500,31908,31909,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,2,0,8.836924574669943,8.644361070542235,1,0,-9,50,0,2,-70.57994830335684,0,0,0,75,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.353832025535011,8.589198515962194,0,0,61.84,39.56,7,1,0,0,7,4,1,2032.5,0,0,0 +14275,17500,31909,31908,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,4,0,6.06068968814489,6.151894040046974,1,0,-9,50,0,-2,122.7860180068209,0,0,0,77,1,2,3,2,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.015866659612184,5.924353796323349,3.45537858658399,3,53.06,45.59,6,1,0,0,7,4,1,2032.5,0,0,0 +14276,17501,31910,-9,-9,-9,1,1,0,94,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1020.32449023571,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,12.41826892991309,1,1,0,1.896633160679776,0,0,0,46.66,40.44,5,1,0,0,12,1,0,239,0,0,0 +14277,17502,31911,-9,-9,-9,1,1,0,69,3,0,0,0,1,-9,97,3,0,1,0,8.43640528007329,8.630244277667385,3,0,0,0,-9,0,-1084.518363934524,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,1,11.61810851508312,0,0,0,0,106.9901739700178,1,1,0,0,8.837520768270565,0,3,51.32,24.19,6,1,0,0,10,5,1,325,0,0,0 +14278,17503,31912,31913,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,6.724794901333117,6.548392503886033,1,0,-9,8,0,1,-79.94539521979733,0,0,0,64,3,5,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.542510397778728,6.713992975121866,0,0,52,48,5,1,0,0,2,2,1,920.5,0,0,0 +14278,17503,31913,31912,-9,-9,1,1,0,64,1,0,0,0,3,-9,4,3,0,5,0,6.33180987229108,6.23703758596663,1,0,-9,38,0,-1,-52.63193434270252,0,0,0,65,2,3,3,-9,3,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.394617857602549,6.074351550178631,0,0,51.39,59.18,6,1,0,0,2,2,1,920.5,0,0,0 +14278,17504,31914,-9,31913,31912,3,1,1,29,2,0,0,0,2,-9,2,1,0,4,7.763273587789202,7.682234388817378,0,3,0,0,0,-9,0,-1072.769860940288,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,37,38,15,1,1,-9,1,7.061348840271878,7.061348840271878,0,0,0,0,0,0,0,1,1,0,2.867407890850063,0,0,0,49,58,5,1,0,0,2,3,1,1314,0,0,0 +14279,17505,31915,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-976.4367044570565,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,27.27369586925742,0,.5974494067747236,0,0,264.6859677339976,1,1,0,0,0,0,0,60.48,24.97,6,1,0,1,2,1,0,790,0,0,0 +14280,17506,31916,31917,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,1,0,6.339263396263806,6.752682696456929,1,0,-9,9,0,1,-69.14369906079538,0,0,0,58,2,4,1,3,2,2019,3,3,16,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.084299595178069,0,0,45.52,25.4,5,1,0,0,4,4,1,810,0,0,0 +14280,17506,31917,31916,-9,-9,3,1,1,58,1,0,0,0,2,-9,2,1,0,4,8.345046716408115,8.213920353411689,0,1,0,-9,9,0,-1,135.951564327506,0,0,0,59,2,1,3,-9,2,2019,2,1,8,0,36,48,15,1,0,3,0,13.38752457041458,13.38752457041458,0,0,0,0,0,0,0,1,1,0,0,0,21.9833992134779,1,44.13,57.97,4,1,0,0,4,4,1,810,0,0,0 +14280,17507,31918,-9,31916,-9,2,1,1,37,2,0,0,0,1,-9,2,1,0,4,8.03335427482841,7.927589971721108,0,3,0,0,0,-9,0,-913.0428179190259,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,29,49,15,1,0,-9,1,10.32230621299241,10.32230621299241,0,0,0,0,0,0,0,1,1,0,0,0,28.56293784834888,3,60.12,54.8,6,1,0,0,4,3,1,207,0,0,0 +14281,17508,31919,-9,31920,31921,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.2602685734486,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,972.3333333333334,0,0,0 +14281,17508,31920,31921,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,4,8.429137169431542,8.211694853736795,0,2,0,-9,6,0,-8,-98.27709866529129,0,0,1,42,2,4,1,1,1,2019,1,2,11,0,28,41,15,1,2,1,0,16.19103166672402,16.19103166672402,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,9,5,1,972.3333333333334,0,0,0 +14281,17508,31921,31920,-9,-9,2,1,1,42,1,1,1,0,2,-9,2,1,0,4,8.827536523932771,8.89373729586956,0,2,0,-9,6,0,8,15.62429530774519,0,0,0,34,1,4,1,-9,-9,2019,1,1,9,0,44,45,15,1,1,1,0,23.12636297591517,23.12636297591517,0,0,0,0,0,0,0,1,1,0,2.787406197197623,0,0,0,51,56,6,1,0,0,9,5,1,972.3333333333334,0,0,0 +14282,17509,31922,31923,-9,-9,2,1,1,56,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,9,0,0,-41.90957067855078,0,0,0,56,2,4,3,-9,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.844133684854552,0,0,0,57.16,56.15,6,1,0,0,4,3,1,572.5,0,0,0 +14282,17509,31923,31922,-9,-9,1,1,0,56,1,0,0,0,2,-9,4,3,0,4,0,8.070730641188257,7.829402560728127,1,0,-9,31,0,0,-7.513236715492901,0,0,0,56,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.001508522038113,7.767198496317586,2.204401628280187,3,57.16,56.15,6,1,0,0,4,3,1,572.5,0,0,0 +14283,17510,31924,31925,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,2,0,7.420587512676061,7.432976773441966,1,0,-9,53,0,-3,27.11453173125654,0,0,0,78,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.931918326544293,7.690730183200563,0,0,67.65000000000001,19.06,6,1,0,0,2,2,1,1184.5,0,0,0 +14283,17510,31925,31924,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,3,52.91043251905766,0,0,0,75,2,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,49.42,6,1,0,0,2,2,1,1184.5,0,0,0 +14284,17511,31926,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-928.8307794541304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.349105814867925,0,0,0,52.06,32.02,5,1,0,0,9,1,1,837,0,0,0 +14285,17512,31927,31928,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,6.814356707020606,6.837933244713901,1,0,-9,9,0,4,-14.7803590871328,0,0,0,71,2,2,3,-9,-9,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.668424689204752,6.969527427154151,0,0,35.79,36.55,6,1,0,0,9,2,1,625,0,0,0 +14285,17512,31928,31927,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,5.778691957279465,5.807035103583866,1,0,-9,51,0,-4,-44.11705875045437,0,0,0,75,3,2,3,3,3,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,1,0,3.169458632166325,0,0,0,0,1,1,0,0,5.651930481621496,0,0,45.34,32.38,5,1,0,0,9,2,1,625,0,0,0 +14286,17513,31929,31930,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,5.182257750274025,5.099772376736793,1,0,-9,48,0,1,-60.56231347814639,0,0,0,71,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.752968960071347,5.34172720315918,0,0,57.03,48.06,7,1,0,0,4,2,1,603,0,0,0 +14286,17513,31930,31929,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,48,0,-1,83.75817810034133,0,0,0,72,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.654820071515294,0,0,0,48.83,46.29,6,1,0,0,4,2,1,603,0,0,0 +14287,17514,31931,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,5,8.50651387132285,8.453728395015265,0,3,0,0,0,-9,0,-830.1518635991464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,11.15326959704494,11.15326959704494,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.1,59.11,6,1,0,0,2,4,1,439,0,0,0 +14288,17515,31932,-9,31933,31934,4,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-995.4197199260798,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,4,0,0,8,5,1,754,0,0,0 +14288,17515,31933,31934,-9,-9,1,1,0,39,1,1,3,0,1,-9,2,1,0,4,8.062754926870175,8.114170441006209,0,2,0,-9,7,-9,-5,82.85336981756552,-9,0,1,44,1,4,1,2,2,2019,1,2,2,0,49,0,15,1,0,1,0,7.882103072528929,7.882103072528929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,7,4,0,0,8,5,1,754,0,0,0 +14288,17515,31934,31933,-9,-9,2,1,1,44,1,1,3,0,1,-9,2,1,0,4,9.261038862157186,9.104011191415767,0,2,0,-9,7,-9,5,87.95340920925156,-9,0,0,39,1,4,1,3,2,2019,1,1,7,0,41,0,15,1,0,1,0,26.49321175025923,26.49321175025923,0,0,0,0,0,0,0,0,0,0,.6963812562861953,0,0,0,58.15,52.91,6,4,0,0,8,5,1,754,0,0,0 +14288,17515,31935,-9,31933,31934,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1020.214067881248,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,4,0,0,8,5,1,754,0,0,0 +14289,17516,31936,31937,-9,-9,2,1,1,61,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,9,0,0,-30.10049370069174,0,0,0,61,1,3,3,3,3,2019,4,1,30,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.914205388645423,0,39.73419455623696,3,37.41,31.84,3,1,0,1,13,2,1,395,0,0,0 +14289,17516,31937,31936,-9,-9,1,1,0,61,1,0,0,0,1,-9,6,3,0,3,0,6.140085784163561,5.948792358576551,1,0,-9,9,0,0,16.58166176026455,0,0,0,61,2,1,3,3,3,2019,4,2,10,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.847827871423113,8.52420581166453,3,48.45,57.49,5,1,0,0,13,2,1,395,0,0,0 +14289,17517,31938,-9,31937,31936,4,1,1,24,2,0,0,1,1,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1092.702529970471,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.34,50.99,2,1,0,0,13,1,1,92,0,0,0 +14290,17518,31939,-9,31940,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-958.5517272167419,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.692589467189056,3,46.57,46.63,4,1,0,0,11,3,1,766,0,0,0 +14290,17518,31940,-9,-9,-9,1,1,0,54,2,0,1,0,2,-9,2,1,0,4,7.787868348244665,7.979643246441786,0,4,0,0,0,-9,0,-864.083670951223,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,35,35,15,1,1,-9,0,12.79020783159672,12.79020783159672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,5,2,0,0,11,3,1,766,0,0,0 +14291,17519,31941,31942,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,3,0,7.242571157053829,7.22097526452765,1,0,-9,6,0,-4,-35.61210056615335,0,0,0,65,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.979600507538005,7.124639704163251,0,0,49,48,5,1,0,0,4,3,1,476,0,0,0 +14291,17519,31942,31941,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,6.659756917531684,7.030865784279198,1,0,-9,6,0,4,25.70027339232249,0,0,0,61,1,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.941370815816692,6.910583756044241,0,0,52,48,5,1,0,0,4,3,1,476,0,0,0 +14292,17520,31943,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,5,9.967084919326648,10.56637953947953,0,3,0,0,0,-9,0,-1148.22463787606,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,2,0,40,15,1,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.556623767729366,0,0,0,51.71,58.83,5,1,0,0,9,5,1,607,0,0,0 +14293,17521,31944,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1060.817497526761,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.953313690030054,0,0,0,45.13,47.11,7,1,0,0,6,1,1,236,0,0,0 +14294,17522,31945,31946,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,5,8.838965928025528,8.884359190759618,0,1,0,-9,9,0,2,15.29867838388068,0,0,0,43,3,4,1,2,2,2019,1,2,6,0,46,46,15,1,0,1,0,14.50921330293752,14.50921330293752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,2,5,1,606,0,0,0 +14294,17522,31946,31945,-9,-9,2,1,0,43,1,0,0,0,3,-9,2,1,0,4,7.984056785951216,7.986107446204453,0,1,0,-9,9,0,-2,118.9552366016119,0,0,1,45,2,5,1,2,2,2019,1,1,10,0,30,16,15,1,0,1,0,12.55070499829493,12.55070499829493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,6,1,0,0,2,5,1,606,0,0,0 +14294,17523,31947,-9,31946,31945,3,1,0,23,2,0,0,0,2,-9,2,1,0,4,7.958955943270782,8.239603929896687,0,3,0,0,0,-9,0,-1024.772675789889,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,39,45,15,1,0,-9,1,13.5983639508995,13.5983639508995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,1,271,0,0,0 +14295,17524,31948,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,1,1,0,3,7.913494688968884,8.245615173180877,6.659804821070098,3,0,0,0,-9,0,-1053.716258381085,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,44,48,15,1,0,-9,0,5.728535001763728,5.728535001763728,0,0,0,0,0,0,0,1,1,0,6.255602965164522,6.73904023495752,0,0,58.5,44.67,6,1,0,0,10,4,1,179,0,0,0 +14296,17525,31949,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,2,8.315866046925379,8.634356503322712,0,3,0,0,0,-9,0,-801.5504490481308,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,43,42,15,1,1,-9,0,10.15776474564256,10.15776474564256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.41,46.83,3,1,0,0,7,4,0,282,0,0,0 +14297,17526,31950,-9,-9,-9,1,1,0,27,2,0,0,0,1,-9,2,1,0,3,7.368673708141373,7.565380014557054,0,3,0,0,0,-9,0,-1103.923847406804,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,25,30,15,1,5,-9,0,8.931676347446448,8.931676347446448,0,0,0,0,0,0,0,0,0,0,2.255797314794424,0,0,0,35.5,54.11,4,1,0,0,10,3,0,393,0,0,0 +14298,17527,31951,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,4,0,5.98653555856613,6.363119475498111,3,0,0,0,-9,0,-1099.71693241238,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.332364627643198,0,0,64.34,40.5,7,1,0,0,12,2,1,752,0,0,0 +14299,17528,31952,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,3,0,7.338332357993652,7.231174703007086,3,0,0,0,-9,0,-993.5006716702387,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.452811511103458,10.70928437893323,3,67.67,26.76,6,1,0,0,2,3,1,750,0,0,0 +14300,17529,31953,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,3,0,6.511885135385078,6.540388691618687,3,0,0,0,-9,0,-1137.527053719976,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,1.770208032017257,6.828259075790823,0,0,54,44,6,1,0,0,2,2,1,633,0,0,0 +14301,17530,31954,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,4,7.134884018171011,6.967453418442024,0,3,0,0,0,-9,0,-981.9113293893004,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,8,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.05,55.41,6,1,0,0,9,3,0,186,0,0,0 +14302,17531,31955,-9,-9,-9,1,1,0,38,3,0,2,0,2,-9,2,1,0,4,7.719220036868751,7.424742872591856,0,4,0,-9,0,-9,0,-1068.620444405118,-9,0,1,-9,-9,-9,-9,1,2,2019,-9,0,9,0,28,0,15,1,0,-9,0,9.337899609960024,9.337899609960024,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,5,1,0,0,11,2,0,1097,0,0,0 +14303,17532,31956,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-1043.152537428368,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,4,0,1,8,1,0,597,0,0,0 +14304,17533,31957,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,5,0,6.989769185968399,6.801023424622033,3,0,0,0,-9,0,-1065.424305540556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.588054651865292,0,0,57.06,57.76,7,1,0,0,6,2,1,183,0,0,0 +14305,17534,31958,31959,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-3,-4.149126307577636,0,0,0,76,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,5.249160046715366,0,0,0,1,1,0,5.887366824838591,0,6.458698693914963,1,55.71,40.47,7,1,0,0,10,2,0,1108.5,0,0,0 +14305,17534,31959,31958,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,6.680697090817706,6.686819744248075,1,0,-9,52,0,3,-44.36443931722663,0,0,0,73,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,6.502588533693479,0,0,0,0,1,1,0,6.48585452544004,6.484831273787537,0,0,50.28,28.63,6,1,0,0,10,2,0,1108.5,0,0,0 +14306,17535,31960,-9,31961,31962,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.407922452836,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,938,0,0,0 +14306,17535,31961,31962,-9,-9,1,1,0,33,1,1,2,0,2,-9,1,1,0,3,2.781825685054839,2.784438880219681,0,2,0,-9,16,0,0,122.2058934554578,0,0,1,42,2,2,1,-9,-9,2019,1,2,11,1,2,2,15,1,1,1,0,1.269879401577057,1.269879401577057,0,0,0,0,0,0,0,1,1,0,0,0,120.8802415338541,3,41.23,51.32,2,1,0,0,10,4,1,938,0,0,0 +14306,17535,31962,31961,-9,-9,2,1,1,42,1,1,2,0,2,-9,2,1,0,2,8.925567495449879,8.906878648988284,0,2,0,-9,16,0,9,-74.85249786183931,0,0,0,33,2,3,1,2,2,2019,1,1,11,1,40,40,15,1,1,1,0,20.27997461929823,20.27997461929823,0,0,0,0,0,0,0,1,1,0,2.648744917033308,0,25.73542972017741,3,45,44.59,5,1,0,0,10,4,1,938,0,0,0 +14306,17535,31963,-9,31961,31962,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.6323842852433,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,1,938,0,0,0 +14307,17536,31964,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,0,6.347610587697857,6.306191119445811,3,0,0,0,-9,0,-979.6411280975756,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.286339048846206,0,0,45.41,22.46,6,4,0,0,8,2,1,4661,0,0,0 +14308,17537,31965,31966,-9,-9,1,1,0,61,1,0,0,0,1,-9,1,1,0,5,7.414454485122577,7.020584346758474,0,1,0,-9,35,0,-3,30.2932145298277,0,0,0,64,1,3,1,2,2,2019,1,2,12,0,25,28,15,1,0,1,0,7.050223095224012,7.050223095224012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,11,5,1,1577.5,0,0,0 +14308,17537,31966,31965,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,3,9.00973764422881,8.738044802793775,0,1,0,-9,33,0,3,-14.78935425949368,0,0,0,61,1,5,1,2,2,2019,1,1,10,0,12,20,15,1,1,1,0,59.01024224978962,59.01024224978962,0,0,0,0,0,0,0,0,0,0,1.231234174205781,0,0,0,52,47,5,1,0,0,11,5,1,1577.5,0,0,0 +14309,17538,31967,31968,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,3,8.243060228085895,8.328235228739418,5.418823238674473,1,0,-9,2,0,3,-35.1620235029585,0,1,0,23,2,3,2,-9,-9,2019,2,1,10,1,43,48,15,1,1,2,0,13.23694825259466,13.23694825259466,0,0,0,0,0,0,0,0,0,0,5.273223821726869,0,0,0,44.89,53.77,6,1,0,0,9,4,0,181.5,0,0,0 +14309,17538,31968,31967,-9,-9,1,1,0,23,1,0,0,0,2,-9,7,2,0,3,0,6.660510049803412,6.943811800338761,1,0,-9,2,0,-3,48.53555936905815,1,1,1,26,1,3,1,-9,-9,2019,3,2,16,3,0,40,15,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.61273291076484,0,0,0,34.22,59.96,6,3,0,0,9,4,0,181.5,0,0,0 +14310,17539,31969,31970,-9,-9,1,1,1,54,1,0,2,0,2,-9,1,1,0,4,6.459247367204698,6.598508236628799,0,2,0,-9,33,0,4,0,0,0,0,50,3,5,1,3,3,2019,1,2,13,4,24,24,15,1,4,1,0,3.023549810719184,3.023549810719184,0,0,0,0,0,0,0,1,0,1,0,0,6.982330503400037,3,42.33,49.53,2,4,0,0,8,2,0,336,0,0,0 +14310,17539,31970,31969,-9,-9,2,1,0,50,1,0,2,0,3,-9,1,1,0,5,6.434641226144988,6.036211853190141,0,2,0,-9,33,0,-4,0,0,0,0,54,2,4,1,3,2,2019,1,1,6,0,12,24,15,1,0,1,0,5.850492595949789,5.850492595949789,0,0,0,0,0,0,0,1,0,1,0,0,39.29867937031425,3,36.34,43,7,4,0,0,8,2,0,336,0,0,0 +14310,17540,31971,-9,31970,31969,4,1,0,20,2,0,2,0,2,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1012.051248519498,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.87,21.28,7,4,1,0,8,1,0,325,0,0,0 +14310,17541,31972,-9,31970,31969,5,1,0,19,2,0,2,0,2,1,8,3,1,2,0,0,0,3,0,0,0,-9,0,-926.5700472160847,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.91,27.8,4,4,0,0,8,1,0,1060,0,0,0 +14310,17542,31973,-9,31970,31969,8,1,1,30,2,0,2,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-952.5353907054058,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,9.981175441295518,3,54.56,31.65,6,4,1,1,8,1,0,993,0,0,0 +14311,17543,31974,-9,31975,31976,4,1,1,17,2,0,0,0,2,-9,2,3,0,4,7.722318672401673,7.60901183150297,0,1,0,0,0,-9,0,-1044.359297271552,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,6,3,1,651.6666666666666,0,0,0 +14311,17543,31975,31976,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,4,7.222157656975466,7.24595276995613,0,1,0,-9,26,0,1,59.3591392688088,0,0,0,46,2,4,1,1,2,2019,1,2,13,2,45,35,15,1,2,1,0,3.593340425351321,3.593340425351321,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,55.57,6,1,0,0,6,3,1,651.6666666666666,0,0,0 +14311,17543,31976,31975,-9,-9,2,1,1,46,1,0,0,0,2,-9,2,1,0,4,7.912571483770984,7.583780879727513,0,1,0,-9,7,0,-1,27.50906936930168,0,0,0,47,2,4,1,-9,-9,2019,1,1,9,0,75,80,15,1,1,1,0,3.676609960853264,3.676609960853264,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,6,3,1,651.6666666666666,0,0,0 +14311,17544,31977,-9,31975,31976,3,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.416276048189371,7.582667319457325,0,3,0,0,0,-9,0,-905.1682556638552,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,2,-9,1,3.692957611046929,3.692957611046929,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,6,3,1,1107,0,0,0 +14312,17545,31978,-9,-9,-9,1,1,1,48,3,0,0,0,2,-9,1,1,0,3,7.820471436890271,7.280073923640716,0,3,0,0,0,-9,0,-1043.0735709264,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,35,35,15,1,0,-9,0,6.420034306113247,6.420034306113247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,5,1,0,0,11,3,1,3360,0,0,0 +14313,17546,31979,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,3,8.445392952441525,8.293212994139001,0,3,0,0,0,-9,0,-946.0744418496112,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,36,48,15,1,0,-9,1,13.31062108782437,13.31062108782437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.5,52.88,6,1,0,0,4,4,1,438,0,0,0 +14314,17547,31980,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-969.6529678595023,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.09,22.86,2,4,0,0,8,1,0,121,0,0,0 +14315,17548,31981,31984,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.744882741762547,9.244931442738771,0,2,0,-9,18,0,-4,-78.40766654182457,0,0,0,45,2,3,1,2,2,2019,1,1,6,0,38,38,15,1,0,1,0,18.94177431233106,18.94177431233106,0,0,0,0,0,0,0,1,1,0,3.539840751404467,0,0,0,54.2,57.49,6,1,0,0,9,5,1,771,0,0,0 +14315,17548,31982,-9,31984,31981,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1145.941890171569,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,1,771,0,0,0 +14315,17548,31983,-9,31984,31981,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.6190180920378,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,5,1,771,0,0,0 +14315,17548,31984,31981,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,3,8.063199782763729,8.452807527312469,0,2,0,-9,18,0,4,77.18907900115994,0,0,0,41,1,4,1,3,2,2019,1,2,10,0,39,35,15,1,0,1,0,11.15361204102743,11.15361204102743,0,0,0,0,0,0,0,1,1,0,3.094463308948396,0,0,0,38.26,60.7,6,1,0,0,9,5,1,771,0,0,0 +14316,17549,31985,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,4,9.207834309555123,8.936068773951799,0,3,0,0,0,-9,0,-916.1293953904213,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,42,41,15,1,2,-9,0,33.18409723109725,33.18409723109725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.02,59.77,6,1,0,0,10,5,1,1649,0,0,0 +14317,17550,31986,-9,31987,-9,2,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-896.1456859403272,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,12,2,0,277,0,0,0 +14317,17550,31987,-9,-9,-9,1,1,0,52,2,0,1,0,2,-9,2,1,0,3,7.3042438506099,7.516302344829397,4.85221241395628,4,0,0,0,-9,0,-954.8348564878572,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,3,21,22,15,1,3,-9,0,9.764648258579241,9.764648258579241,0,0,0,0,0,0,0,1,1,0,4.739360401705561,0,8.29283188131989,3,43.49,48.68,5,1,0,0,12,2,0,277,0,0,0 +14318,17551,31988,31989,-9,-9,1,1,0,49,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,9,0,1,0,0,0,0,48,2,2,3,2,2,2019,4,2,16,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.8793398357447,1,54.78,26.41,6,1,1,0,1,1,0,515.5,0,0,0 +14318,17551,31989,31988,-9,-9,2,1,1,48,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,9,0,-1,0,0,0,0,49,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.7,34.68,7,1,0,0,1,1,0,515.5,0,0,0 +14319,17552,31990,31991,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,9.062871645511246,9.292460864768604,0,1,0,-9,10,0,4,12.82091982017253,0,0,0,54,1,4,1,2,2,2019,1,1,17,5,46,44,15,1,5,1,0,19.69792713564017,19.69792713564017,0,0,0,0,0,0,0,0,0,0,4.402319512607712,0,0,0,30.41,61.92,5,1,0,0,6,5,1,432,0,0,0 +14319,17552,31991,31990,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,4,7.834050555420212,8.144267966121976,0,1,0,-9,10,0,-4,43.00556741953541,0,0,0,58,2,3,1,3,3,2019,1,2,8,0,26,21,15,1,0,1,0,14.59935807681615,14.59935807681615,0,0,0,0,0,0,0,0,0,0,3.013373422832421,0,0,0,45.91,59.89,5,1,0,0,6,5,1,432,0,0,0 +14320,17553,31992,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,3,0,6.836787118212718,6.728380185416074,3,0,0,0,-9,0,-953.5832591460681,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,1,1,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.296449178309973,7.330392947700194,0,0,51.41,56.15,4,1,0,0,5,2,1,195,0,0,0 +14321,17554,31993,31995,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,4,9.355989244408349,9.282101885358573,0,1,0,-9,26,0,1,19.2386256400379,0,0,0,45,2,5,1,2,2,2019,1,2,7,0,55,60,15,1,0,1,0,18.22495328293651,18.22495328293651,0,0,0,0,0,0,0,0,0,0,6.723119739149763,0,0,0,57.16,56.15,6,1,0,0,5,5,1,718.6666666666666,0,0,0 +14321,17554,31994,-9,31995,31993,4,1,1,17,2,0,0,1,2,0,7,2,0,4,6.229101270424082,6.12564207495294,3.573184644183195,1,0,0,0,-9,0,-993.6503007834499,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.848071642825127,0,0,0,51.24,58.84,6,1,0,0,5,5,1,718.6666666666666,0,0,0 +14321,17554,31995,31993,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,5,8.683276079684413,8.756981060320046,0,1,0,-9,26,0,-1,119.2665509897198,0,0,0,46,2,4,1,2,2,2019,1,1,5,0,42,47,15,1,0,1,0,18.30824380266901,18.30824380266901,0,0,0,0,0,0,0,0,0,0,3.908338034793297,0,0,0,57.06,57.76,7,1,0,0,5,5,1,718.6666666666666,0,0,0 +14321,17555,31996,-9,31995,31993,3,1,0,22,2,0,0,0,1,1,2,1,0,4,8.158791683449051,8.547928392219189,0,3,0,0,0,-9,0,-959.7575025908224,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,13.13171556163178,13.13171556163178,0,0,0,0,0,0,0,0,0,0,.1328788951674023,0,0,0,41,63.4,7,1,0,0,5,4,1,280,0,0,0 +14322,17556,31997,31998,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.735847902453348,8.359529059028107,0,1,0,-9,39,0,-3,-18.08886662201432,0,0,0,60,3,3,1,3,3,2019,1,2,12,0,35,35,15,1,0,1,0,10.55401383495668,10.55401383495668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,4,1,0,0,7,5,1,709,0,0,0 +14322,17556,31998,31997,-9,-9,2,1,1,60,1,0,0,0,3,-9,1,1,0,3,8.988786145270838,8.474091808332256,0,1,0,-9,39,0,3,110.4346516577308,-9,0,0,57,2,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,22.15920970874311,22.15920970874311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,5,1,0,0,7,5,1,709,0,0,0 +14323,17557,31999,-9,32001,32000,3,1,1,10,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.285593363007,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,3,1,1002.2,0,0,0 +14323,17557,32000,32001,-9,-9,1,1,1,48,1,1,3,0,2,-9,2,1,0,2,8.223467889929742,8.557676057153527,0,2,0,-9,6,0,11,44.46379474695835,0,0,0,37,2,4,3,3,2,2019,2,2,20,8,39,43,15,1,8,3,0,9.372647229919286,9.372647229919286,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.18,45.38,3,1,0,1,11,3,1,1002.2,0,0,0 +14323,17557,32001,32000,-9,-9,2,1,0,37,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-11,-196.2650806763336,0,0,1,48,2,2,1,-9,-9,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.86,53.77,6,1,0,0,11,3,1,1002.2,0,0,0 +14323,17557,32002,-9,32001,32000,4,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.85137293673,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,3,1,1002.2,0,0,0 +14323,17557,32003,-9,32001,32000,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-916.1936876392494,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,1,1002.2,0,0,0 +14324,17558,32004,32005,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,5,8.360729348793759,9.039270040730347,8.50084976684907,1,0,-9,8,0,1,57.761093138438,0,0,0,58,2,2,1,3,3,2019,1,2,6,0,35,0,15,1,0,1,0,15.34481844910198,15.34481844910198,0,0,0,0,0,0,0,0,0,0,0,8.823099786130784,0,0,62.29,49.94,7,1,0,0,11,5,1,581,0,0,0 +14324,17558,32005,32004,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.759049527462157,7.564506734823816,0,1,0,-9,8,0,-1,-14.27690993093849,0,0,0,59,2,5,1,2,2,2019,1,1,9,0,20,20,15,1,0,1,0,10.48195326258692,10.48195326258692,0,0,0,0,0,0,0,0,0,0,4.311081247666631,0,0,0,52.25,45.21,6,1,0,0,11,5,1,581,0,0,0 +14325,17559,32006,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1011.954653596009,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,60,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.834792923774924,0,0,0,41.17,33.92,3,4,1,0,8,1,1,629,0,0,0 +14326,17560,32007,32010,-9,-9,2,1,0,38,1,0,3,0,1,-9,2,1,0,4,8.703707002261755,8.511724337015703,0,2,0,-9,6,0,-15,27.4204865683165,0,0,1,53,2,4,1,-9,-9,2019,1,1,16,4,60,53,15,1,4,1,0,9.648332801506927,9.648332801506927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.1,6,1,0,0,6,5,1,738.2,0,0,0 +14326,17560,32008,-9,32007,32010,4,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.8476226290474,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,6,5,1,738.2,0,0,0 +14326,17560,32009,-9,32007,32010,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.939573318359,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,738.2,0,0,0 +14326,17560,32010,32007,-9,-9,1,1,1,53,1,0,3,0,2,-9,2,1,0,4,8.639812933666486,9.09719498394103,6.33598988585778,2,0,-9,6,0,15,89.71219263348679,0,0,0,38,1,4,1,2,3,2019,1,2,8,0,38,39,15,1,0,1,0,20.2975397648636,20.2975397648636,0,0,0,0,0,0,0,1,1,0,6.73556315348167,0,0,0,58.13,52.93,6,1,0,0,6,5,1,738.2,0,0,0 +14326,17560,32011,-9,32007,32010,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.7481156166463,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,738.2,0,0,0 +14327,17561,32012,32013,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.793476564912536,8.713604648546502,0,1,0,-9,6,0,1,56.94881670450584,0,0,0,54,1,4,1,2,2,2019,1,2,18,6,38,0,15,1,6,1,0,17.3155219218808,17.3155219218808,0,0,0,0,0,0,0,0,0,0,5.075460404906373,0,0,3,42.05,58.8,3,1,0,0,1,5,1,533,0,0,0 +14327,17561,32013,32012,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,4,8.760077014620865,9.257730427329204,0,1,0,-9,6,0,-1,-9.755453231844957,0,0,0,55,1,4,1,2,3,2019,1,1,7,0,35,0,15,1,0,1,0,26.23680878644087,26.23680878644087,0,0,0,0,0,0,0,0,0,0,8.50708627643154,0,0,0,51.24,58.84,6,1,0,0,1,5,1,533,0,0,0 +14328,17562,32014,-9,-9,-9,1,1,0,39,3,0,1,0,2,-9,2,1,0,3,6.944073667374976,6.874368650082805,0,4,0,0,0,-9,0,-1011.042284660727,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,28,15,1,0,-9,0,6.929883219974873,6.929883219974873,0,0,0,0,0,0,0,1,0,1,0,0,9.139518926322349,3,47.07,53.97,4,1,0,0,2,2,1,423.5,0,0,0 +14328,17562,32015,-9,32014,-9,2,1,0,14,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1088.04519391745,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,54,5,1,0,0,2,2,1,423.5,0,0,0 +14329,17563,32016,32017,-9,-9,1,1,0,58,1,0,0,0,2,-9,4,3,0,5,0,7.064924312448609,7.036931236639205,1,0,-9,33,0,-2,-8.713860622249356,0,0,0,60,2,4,3,2,2,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.338050263231305,6.867131597798211,2.468702820863413,3,52.11,53.15,5,1,0,0,6,2,1,1723.5,0,0,0 +14329,17563,32017,32016,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,4,0,6.935365648134877,6.975503080215837,1,0,-9,33,0,2,-23.43542349905455,0,0,0,58,2,5,3,3,2,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.926759230156408,6.92916467425152,3.049573299607441,3,51.47,53.17,6,1,0,0,6,2,1,1723.5,0,0,0 +14330,17564,32018,-9,32019,32021,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.778094580158,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,941,0,0,0 +14330,17564,32019,32021,-9,-9,1,1,0,44,1,0,2,0,3,-9,2,1,0,4,7.712712078169403,7.604731304856728,0,2,0,-9,21,0,-3,-108.7137628340267,0,0,1,47,3,4,1,3,2,2019,1,2,11,0,50,52,15,1,0,1,0,4.44557473758973,4.44557473758973,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.42,35.02,4,1,0,0,9,4,1,941,0,0,0 +14330,17564,32020,-9,32019,32021,5,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.079377504485,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,941,0,0,0 +14330,17564,32021,32019,-9,-9,2,1,1,47,1,0,2,0,3,-9,2,1,0,4,8.75761170073236,8.282014377590718,0,2,0,-9,7,0,3,63.74899473397868,0,0,0,44,3,4,1,-9,-9,2019,1,1,9,0,45,42,15,1,1,1,0,11.28847115155936,11.28847115155936,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,4,1,941,0,0,0 +14330,17565,32022,-9,32019,32021,3,1,1,22,2,0,2,0,2,-9,2,1,0,4,7.757659934181548,8.050035909255755,0,3,0,0,0,-9,0,-1055.181042957922,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,45,15,1,1,-9,1,8.637726662331307,8.637726662331307,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,9,4,1,938,0,0,0 +14331,17566,32023,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-955.7184469915572,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,6,4,1,1,8,1,0,368,0,0,0 +14332,17567,32024,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,5,8.109473295734613,8.311277987322818,0,3,0,0,0,-9,0,-1017.158946460547,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,30,58,15,1,0,-9,0,11.87934769556499,11.87934769556499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.24,52.51,7,1,0,1,13,4,1,188,0,0,0 +14333,17568,32025,32027,-9,-9,1,1,1,33,1,1,3,0,1,-9,2,1,0,3,8.914305395438044,8.377165771992646,0,2,0,-9,12,0,0,-102.2127584628509,0,0,0,33,1,3,1,2,1,2019,1,2,6,0,46,44,15,1,0,1,0,10.78048760294086,10.78048760294086,0,0,0,0,0,0,0,1,1,0,4.754967012611352,0,0,0,57.33,53.46,6,1,0,0,2,3,1,569,0,0,0 +14333,17568,32026,-9,32027,32025,4,1,0,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.801302566253,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,569,0,0,0 +14333,17568,32027,32025,-9,-9,2,1,0,33,1,1,3,0,1,-9,5,1,0,3,7.175826956411204,7.095644394254007,0,2,0,-9,12,0,0,106.1155035546552,0,0,1,33,1,3,1,1,1,2019,1,1,10,0,6,14,15,1,0,1,0,22.88078291706195,22.88078291706195,0,0,0,0,0,0,0,1,1,0,4.106459746820049,0,3.612521677149954,3,50.2,33.53,6,1,0,0,2,3,1,569,0,0,0 +14333,17568,32028,-9,32027,32025,3,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1204.813230335548,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,1,569,0,0,0 +14333,17568,32029,-9,32027,32025,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-906.2230892416997,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,3,1,569,0,0,0 +14334,17569,32030,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1018.111672508759,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,1,0,0,3.364721117932432,0,2.184940940628624,0,1,1,0,0,0,0,0,42.68,14.53,6,1,0,0,1,1,0,526,0,0,0 +14335,17570,32031,32032,-9,-9,2,1,1,52,1,0,0,0,2,-9,1,1,0,4,7.87594842138027,7.928639747869171,0,1,0,-9,7,0,-7,-38.11846457240228,-9,0,0,59,2,2,3,2,3,2019,2,1,9,0,40,0,15,1,1,3,0,10.07038579548323,10.07038579548323,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,54,6,1,0,0,6,3,1,899.5,0,0,0 +14335,17570,32032,32031,-9,-9,1,1,0,59,1,0,0,0,2,-9,6,3,0,2,0,5.523812167492482,5.752590809356837,1,0,-9,7,0,7,-99.19560989251251,0,0,0,52,2,4,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.611643822923122,0,0,0,46.71,28.67,4,1,0,0,6,3,1,899.5,0,0,0 +14335,17571,32033,-9,32032,-9,3,1,0,34,2,0,0,0,1,-9,2,1,0,5,8.052241444686995,8.038362793425771,0,3,0,0,0,-9,0,-1031.651076245287,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,50,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,5,1,0,0,6,3,1,379,0,0,0 +14336,17572,32034,-9,-9,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.877828762178621,7.727509036871306,0,3,0,0,0,-9,0,-1023.875118050632,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,30,30,15,1,1,-9,1,8.539138321454336,8.539138321454336,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,4,1,0,0,13,3,0,417,0,0,0 +14337,17573,32035,-9,32037,32036,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.852341459712,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,7,5,1,1484.75,0,0,0 +14337,17573,32036,32037,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,3,9.009836639776184,9.086588318715622,0,2,0,-9,16,0,3,-19.19878755183503,0,0,0,40,1,3,1,2,2,2019,1,1,8,0,49,55,15,1,0,1,0,18.36403306085653,18.36403306085653,0,0,0,0,0,0,0,0,0,0,3.207175522728461,0,0,0,51.11,50.75,5,1,0,0,7,5,1,1484.75,0,0,0 +14337,17573,32037,32036,-9,-9,1,1,0,40,1,0,2,0,1,-9,2,1,0,3,7.948832377530301,7.801376138525216,0,2,0,-9,17,0,-3,-76.58313633268595,0,0,1,43,2,3,1,2,1,2019,1,2,10,0,27,22,15,1,0,1,0,10.15679129929234,10.15679129929234,0,0,0,0,0,0,0,0,0,0,4.070195299888839,0,0,0,53.74,44.11,6,1,0,0,7,5,1,1484.75,0,0,0 +14337,17573,32038,-9,32037,32036,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.4929966830678,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,7,5,1,1484.75,0,0,0 +14338,17574,32039,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,5.505120772288274,5.59478784358481,3,0,0,0,-9,0,-1084.947879921599,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.778773542036799,5.203957524818479,4.669569863359942,3,57.33,53.46,7,4,0,0,9,2,1,1797,0,0,0 +14339,17575,32040,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,5,9.457057582806517,9.77383695082815,0,3,0,0,0,-9,0,-1036.407816353009,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,44.129182801238,44.129182801238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,8,5,0,223,0,0,0 +14340,17576,32041,32042,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,4,7.884217039429526,7.655381034583274,0,1,0,-9,6,0,8,-62.28776525700349,0,0,0,44,1,5,1,1,2,2019,1,2,7,0,40,35,15,1,0,1,0,7.165702252594491,7.165702252594491,0,0,0,0,0,0,0,0,0,0,0,0,.6225528995036875,3,51.77,58.57,5,1,0,0,4,5,1,818,0,0,0 +14340,17576,32042,32041,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,5,8.91715078690228,9.170717247395205,0,1,0,-9,6,0,-8,-17.92466416040702,0,0,1,52,2,4,1,-9,-9,2019,1,1,12,0,47,45,15,1,0,1,0,20.46748843052554,20.46748843052554,0,0,0,0,0,0,0,0,0,0,8.197753062935465,0,0,0,51.14,60.45,5,1,0,0,4,5,1,818,0,0,0 +14341,17577,32043,-9,32045,32044,2,1,0,20,2,0,4,0,2,1,97,3,0,2,4.758911283137797,4.621513230149492,0,3,0,0,0,-9,0,-942.7461139723322,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,24,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.68270236171544,3,11.32,41.13,1,1,0,0,2,2,0,360,0,0,0 +14341,17578,32044,32045,-9,-9,6,1,1,44,1,0,4,0,2,-9,2,1,0,3,7.87258479492644,7.920075319408586,0,2,0,-9,7,0,3,-153.393510040304,0,0,0,41,1,3,3,-9,-9,2019,2,1,13,1,36,48,15,1,1,3,0,7.961961179957824,7.961961179957824,0,0,0,0,0,0,0,1,1,0,0,0,116.0388611598929,2,37.78,53.03,4,1,0,0,2,2,0,690.8333333333334,0,0,0 +14341,17578,32045,32044,-9,-9,1,1,0,41,1,0,4,0,1,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-3,85.78591507479986,0,0,1,44,2,3,1,1,2,2019,3,6,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.7582979885766,3,39.27,37.24,6,1,0,0,2,2,0,690.8333333333334,0,0,0 +14341,17578,32046,-9,32045,32044,3,1,0,12,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1051.357347081148,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,2,0,690.8333333333334,0,0,0 +14341,17578,32047,-9,32045,32044,7,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.297314597987,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,2,0,690.8333333333334,0,0,0 +14341,17578,32048,-9,32045,32044,4,1,0,12,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1001.523038451018,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,2,2,0,690.8333333333334,0,0,0 +14341,17578,32049,-9,32045,32044,5,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.321067928448,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,2,0,690.8333333333334,0,0,0 +14342,17579,32050,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,8,3,1,1,0,6.143310296358253,6.066970893219371,3,0,0,0,-9,0,-1031.750604618509,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.352223542108334,19.36702046261079,3,30.48,28.25,3,1,0,1,4,2,1,1023,0,0,0 +14343,17580,32051,32052,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,6.862391257259217,6.998683819025366,1,0,-9,1,-9,12,-79.94082674045626,-9,0,0,62,2,2,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.683256013154572,0,0,60.3,46.58,6,1,0,0,4,2,1,380,0,0,0 +14343,17580,32052,32051,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,2,7.052931590577594,7.343807482561496,0,1,0,-9,1,-9,-12,81.94348636925049,-9,0,0,74,2,3,3,2,1,2019,2,1,12,1,20,0,15,1,1,4,0,7.03237955181553,7.03237955181553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.86,31.98,6,1,0,0,4,2,1,380,0,0,0 +14344,17581,32053,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,5,0,5.16374899787723,5.287865006131279,3,0,0,0,-9,0,-856.6723472044432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,5,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.938893860584951,5.320852608636865,12.91391781519906,3,54.1,59.11,2,3,0,0,8,2,1,177,0,0,0 +14345,17582,32054,-9,-9,-9,2,1,1,23,2,0,3,0,1,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-956.3834950065299,1,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,37,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.1180690737817976,0,0,0,54.79,55.86,5,1,0,1,7,1,0,208,0,0,0 +14346,17583,32055,-9,-9,32057,3,1,1,4,2,0,0,1,3,-9,6,2,0,4,0,0,0,1,0,-9,0,-9,0,-1114.521652214734,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,1,10,4,1,1189.333333333333,0,0,0 +14346,17583,32056,32057,-9,-9,2,1,0,27,1,0,0,0,2,1,2,1,0,2,8.026262717656378,8.000936670083073,0,1,0,-9,5,0,0,55.21919049090398,-9,1,1,27,2,4,1,-9,-9,2019,1,1,16,4,44,0,15,1,4,1,0,6.480141424889712,6.480141424889712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,53.22,4,1,0,0,10,4,1,1189.333333333333,0,0,0 +14346,17583,32057,32056,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,4,8.265521199094096,8.27164689566346,0,1,0,-9,5,0,0,-86.91417788487581,0,1,0,27,2,2,1,-9,-9,2019,1,2,14,2,40,0,15,1,2,1,0,8.791092088685883,8.791092088685883,0,0,0,0,0,0,0,1,1,0,.7981766218727594,0,0,0,46.1,59.99,4,1,0,0,10,4,1,1189.333333333333,0,0,0 +14347,17584,32058,32059,-9,-9,2,1,0,49,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,28,0,-5,0,0,0,0,54,3,3,3,3,3,2019,4,1,12,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,120.6821087964466,3,46,50,5,3,0,0,8,1,0,3210.333333333333,0,0,0 +14347,17584,32059,32058,-9,-9,1,1,1,54,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,28,0,5,0,0,0,0,49,3,3,3,3,3,2019,4,2,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,121.8253780733681,3,38.75,43.02,5,3,0,1,8,1,0,3210.333333333333,0,0,0 +14347,17584,32060,-9,32058,32059,5,1,1,16,2,0,1,0,3,-9,8,2,1,4,0,0,0,2,0,0,0,-9,0,-1019.500000863253,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,3,0,0,8,1,0,3210.333333333333,0,0,0 +14347,17585,32061,-9,32058,32059,3,1,0,21,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1058.049616319139,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.09,60.15,5,3,0,0,8,1,0,845,0,0,0 +14347,17586,32062,-9,32058,32059,4,1,1,18,2,0,1,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-951.5312643043992,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.87250660791447,3,48.87,58.55,6,3,1,0,8,1,0,426,0,0,0 +14348,17587,32063,32064,-9,-9,1,1,1,39,1,0,1,0,2,-9,1,1,0,4,8.553093753717178,8.511584080363901,0,2,0,-9,5,0,5,0,0,0,0,34,1,4,1,2,2,2019,1,2,12,1,52,42,15,1,1,1,0,9.317424494547618,9.317424494547618,0,0,0,0,0,0,0,1,1,0,0,0,11.12786681869412,3,38,44.52,5,1,0,0,2,5,1,288,0,0,0 +14348,17587,32064,32063,-9,-9,2,1,0,34,1,0,1,0,1,-9,2,1,0,4,8.515178322585829,8.485519981755377,0,2,0,-9,5,0,-5,0,0,0,1,39,2,4,1,-9,-9,2019,1,1,11,1,39,40,15,1,1,1,0,14.91177633551561,14.91177633551561,0,0,0,0,0,0,0,1,1,0,1.022652276645562,0,0,0,43.76,58.35,5,1,0,0,2,5,1,288,0,0,0 +14348,17587,32065,-9,32064,32063,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.6279109060201,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,288,0,0,0 +14349,17588,32066,32067,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,4,0,3.876674819570054,3.722499151089551,1,0,-9,5,0,4,3.982293569441665,0,0,0,74,2,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.859078381956211,3.813572230409634,0,0,49.76,54.41,6,1,0,0,2,2,0,933.5,0,0,0 +14349,17588,32067,32066,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,5.287516255848543,5.022944550234589,1,0,-9,5,0,-4,-56.47491486841074,0,0,0,78,3,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.021210371535938,4.526595854273375,0,0,60.13,41.04,6,1,0,0,2,2,0,933.5,0,0,0 +14350,17589,32068,-9,-9,-9,1,1,0,56,2,0,0,0,2,-9,2,1,0,3,8.254015533231104,8.168084265559544,0,3,0,0,0,-9,0,-1098.282119953315,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,43,43,15,1,0,-9,0,9.106135798965513,9.106135798965513,0,0,0,0,0,0,0,0,0,0,.6331102713807012,0,0,0,46.88,46.3,5,1,0,0,6,4,1,547,0,0,0 +14351,17590,32069,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,4,0,9.267455950617611,9.240105107383787,3,0,0,0,-9,0,-1007.080141278815,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.828922970463439,9.179755882290419,0,0,57.16,56.15,6,1,0,0,12,5,1,519,0,0,0 +14352,17591,32070,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,2,0,5.71561227773712,5.768983361671904,3,0,0,0,-9,0,-990.7206241497227,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7377107705263,0,0,47.91,28.34,5,1,0,1,6,2,1,1575,0,0,0 +14353,17592,32071,-9,-9,-9,1,1,1,24,2,0,0,0,2,-9,2,1,0,5,8.415743089747654,8.68055526168788,0,3,0,0,0,-9,0,-874.5974650466097,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,40,40,15,1,0,-9,0,11.30401267291255,11.30401267291255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,6,1,0,0,12,4,1,500,0,0,0 +14354,17593,32072,32073,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,4,8.706337487997864,8.645723485637253,0,2,0,-9,10,0,-3,86.32243898509563,0,0,1,42,2,1,3,1,1,2019,2,1,8,0,47,52,15,1,0,3,0,15.42823798175538,15.42823798175538,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.12,58.81,6,1,0,0,7,4,1,1029,0,0,0 +14354,17593,32073,32072,-9,-9,1,1,1,42,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,10,0,3,15.19769043517809,0,0,0,39,1,4,1,2,2,2019,3,2,8,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.21,31.62,6,1,0,0,7,4,1,1029,0,0,0 +14354,17593,32074,-9,32072,32073,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.025502689693,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1029,0,0,0 +14354,17593,32075,-9,32072,32073,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-864.6134333283147,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1029,0,0,0 +14355,17594,32076,-9,32078,32077,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-927.6930742701339,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,13,4,1,558.75,0,0,0 +14355,17594,32077,32078,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,3,8.78058422618559,8.610733258664744,0,2,0,-9,13,0,4,106.1084531669292,0,0,0,42,1,4,1,3,3,2019,1,2,11,3,50,0,15,1,3,1,0,12.72270960560224,12.72270960560224,0,0,0,0,0,0,0,1,1,0,.9065023148336575,0,0,0,46.65,47.55,5,1,0,0,13,4,1,558.75,0,0,0 +14355,17594,32078,32077,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,4,8.35470205138439,8.2384484117391,0,2,0,-9,14,0,-4,-36.26747323641976,0,0,1,46,1,3,1,1,1,2019,1,1,8,0,18,0,15,1,0,1,0,21.67458046787068,21.67458046787068,0,0,0,0,0,0,0,1,1,0,1.49267048092519,0,0,0,39.33,58.88,4,1,0,0,13,4,1,558.75,0,0,0 +14355,17594,32079,-9,32078,32077,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.475273962295,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,558.75,0,0,0 +14356,17595,32080,-9,-9,-9,1,1,0,64,2,0,0,0,3,-9,1,1,0,4,6.852433139699784,6.844237648337249,0,3,0,0,0,-9,0,-960.3080315543828,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,22,16,15,1,0,-9,0,5.302690998217171,5.302690998217171,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,2,1,0,0,8,2,0,1250,0,0,0 +14357,17596,32081,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,3,7.961657829508373,7.544474660766983,0,3,0,0,0,-9,0,-1041.722296721729,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,0,15,1,2,-9,0,8.674262739721215,8.674262739721215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,4,0,0,8,4,0,852,0,0,0 +14357,17597,32082,-9,32081,-9,2,1,1,31,2,0,0,0,1,-9,2,1,0,4,8.782886127559928,8.42330617481937,0,3,0,0,0,-9,0,-973.5778192718693,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,40,0,15,1,1,-9,1,15.31706245438724,15.31706245438724,0,0,0,0,0,0,0,0,0,0,2.959743572029837,0,0,0,50,57,5,4,0,0,8,5,0,385,0,0,0 +14357,17598,32083,-9,32081,-9,3,1,1,27,2,0,0,0,1,-9,2,1,0,4,7.867820710406722,7.709641722300896,0,3,0,0,0,-9,0,-968.8343705595332,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,41,36,15,1,0,-9,1,6.077678762875889,6.077678762875889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,46.92,7,4,0,0,8,3,0,386,0,0,0 +14357,17599,32084,-9,32081,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.614878904136256,7.593135550911648,0,3,0,0,0,-9,0,-1079.06511660263,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,40,0,15,1,2,-9,1,5.774162750047978,5.774162750047978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,4,0,0,8,3,0,3113,0,0,0 +14358,17600,32085,32086,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,5,7.98982334965465,7.789254852034572,0,1,0,-9,4,0,6,16.48545147414051,0,0,0,56,2,4,1,3,2,2019,1,1,5,0,75,70,15,1,0,1,0,4.82651305637153,4.82651305637153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,53.4,7,1,0,0,4,5,1,195.5,0,0,0 +14358,17600,32086,32085,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.385702487186846,8.506701441633494,0,1,0,-9,4,0,-6,141.4919404588809,0,0,0,62,1,5,1,2,3,2019,1,2,11,0,84,60,15,1,0,1,0,5.890751436018096,5.890751436018096,0,0,0,0,0,0,0,0,0,0,5.590672382721204,0,0,0,45.32,61.53,7,1,0,0,4,5,1,195.5,0,0,0 +14359,17601,32087,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,5.996408786338149,6.224434486927168,3,0,0,0,-9,0,-1100.429406884377,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.484365756919684,0,0,52,45,6,1,0,0,6,2,1,264,0,0,0 +14359,17602,32088,-9,32087,-9,2,1,0,59,2,0,0,0,2,-9,2,1,0,4,7.964473421565565,7.918325194743281,0,3,0,0,0,-9,0,-1047.737528565878,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,26,9,36,40,15,1,9,-9,1,6.745325358894678,6.745325358894678,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.38,55.91,5,1,0,0,6,3,1,1309,0,0,0 +14360,17603,32089,32090,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,8.240459466590897,8.423099549262743,1,0,-9,54,0,3,-83.67788579960843,0,0,0,69,2,2,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.977308887984259,8.666124006930952,1.750982230985244,3,62.18,36.18,5,1,0,0,9,4,1,333.5,0,0,0 +14360,17603,32090,32089,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,6.347433560447721,6.73849832791083,1,0,-9,54,0,-3,46.20166336064433,0,0,0,72,1,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.245770639138323,3.467369596702171,3,56.49,35.1,6,1,0,0,9,4,1,333.5,0,0,0 +14360,17604,32091,-9,32090,32089,3,1,1,28,2,0,0,0,2,-9,2,1,0,4,7.852053567960672,7.258396434979338,0,3,0,0,0,-9,0,-1074.295548038698,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,29,21,15,1,0,-9,1,9.127161716613521,9.127161716613521,0,0,0,0,0,0,0,1,1,0,2.087833150712934,0,0,0,46.39,60.99,3,1,0,0,9,3,1,217,0,0,0 +14361,17605,32092,-9,-9,-9,3,1,1,30,2,1,1,0,2,-9,2,1,0,3,7.999533851711307,7.818133716594513,0,4,0,0,0,-9,0,-973.9183338112809,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,40,40,15,1,0,-9,0,5.723547462896279,5.723547462896279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.36,44.23,3,1,0,1,6,3,1,716,0,0,0 +14361,17606,32093,32095,-9,-9,1,1,0,31,1,1,1,0,2,-9,5,1,0,3,8.447305411714357,8.587845943324647,0,2,0,-9,9,0,-3,-17.29953773771854,0,0,1,34,1,4,1,1,2,2019,1,2,8,0,63,68,15,1,0,1,0,8.835974192186772,8.835974192186772,0,0,0,0,0,0,0,1,1,0,7.157043142901032,0,0,0,46.31,51.53,5,1,0,0,6,5,1,425.6666666666667,0,0,0 +14361,17606,32094,-9,32093,32095,4,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1015.948912394496,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,6,5,1,425.6666666666667,0,0,0 +14361,17606,32095,32093,-9,-9,2,1,1,34,1,1,1,0,1,-9,2,1,0,4,8.354462476551733,8.323280551716252,0,2,0,-9,9,0,3,-96.58585612011788,0,0,0,31,2,3,1,-9,-9,2019,1,1,11,0,63,65,15,1,0,1,0,7.571569042699787,7.571569042699787,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,5,1,0,0,6,5,1,425.6666666666667,0,0,0 +14362,17607,32096,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,5,0,7.692510234380427,7.890283682239308,3,0,0,0,-9,0,-1097.806949602991,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.307296798023289,8.14775667098424,0,0,48.18,61.8,6,1,0,0,10,3,1,519,0,0,0 +14363,17608,32097,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1019.989160846875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.625085374783341,0,0,0,52.09,35.61,5,1,0,0,10,1,1,828,0,0,0 +14364,17609,32098,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,3,8.813741712627067,9.308929668834589,0,3,0,-9,0,-9,0,-973.8634496983486,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,0,15,1,0,-9,0,33.53950506142672,33.53950506142672,0,0,0,0,0,0,0,0,0,0,0,0,17.94588850739313,3,54.99,46.16,7,1,0,0,4,5,1,219,0,0,0 +14365,17610,32099,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-999.9966282055304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,26.57,4,1,0,0,4,1,0,934,0,0,0 +14366,17611,32100,-9,-9,-9,1,1,1,74,3,0,0,0,2,-9,4,3,0,3,0,7.749290575306652,7.796924560205392,3,0,0,0,-9,0,-1081.771401222499,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.781726235978829,7.625086402515032,2.445615839165967,3,48.93,50.55,6,1,0,0,7,3,0,1461,0,0,0 +14367,17612,32101,-9,32102,-9,2,1,0,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1066.72384783848,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,51.1,6,1,0,0,8,1,0,403.5,0,0,0 +14367,17612,32102,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1026.825255435757,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.59,22.34,1,1,0,1,8,1,0,403.5,0,0,0 +14368,17613,32103,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,3,0,6.304261566769939,5.845079834753021,3,0,0,0,-9,0,-993.6891421495521,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.962836930397474,6.015477063890841,0,0,42.48,53.39,6,1,0,0,10,2,1,2208,0,0,0 +14369,17614,32104,-9,32105,32106,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.8818228008279,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,436.6666666666667,0,0,0 +14369,17614,32105,32106,-9,-9,1,1,0,39,1,0,1,0,1,-9,2,1,0,3,8.120835762954547,7.737365052501547,0,2,0,-9,13,0,-2,98.89779291798639,0,0,1,41,3,2,1,1,2,2019,1,2,24,12,43,42,15,1,12,1,0,7.516928277841228,7.516928277841228,0,0,0,0,0,0,0,1,1,0,2.769511241995728,0,0,0,19.4,51.97,3,1,0,0,7,4,1,436.6666666666667,0,0,0 +14369,17614,32106,32105,-9,-9,2,1,1,41,1,0,1,0,3,-9,1,1,0,2,8.430050040418141,8.367886564847625,0,2,0,-9,13,0,2,56.9109216956699,0,0,0,39,1,3,1,3,3,2019,1,1,20,8,55,50,15,1,8,1,0,11.41772630760421,11.41772630760421,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.28,34.98,4,1,0,1,7,4,1,436.6666666666667,0,0,0 +14370,17615,32107,-9,32110,32109,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1141.520529379398,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,0,991.5,0,0,0 +14370,17615,32108,-9,32110,32109,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.1330979327857,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,0,991.5,0,0,0 +14370,17615,32109,32110,-9,-9,2,1,1,33,1,1,2,0,1,-9,2,1,0,3,8.281754628599661,8.788238507312292,0,2,0,-9,6,0,-2,107.4301657293281,0,0,0,35,2,3,1,-9,-9,2019,1,1,11,1,49,55,15,1,1,1,0,10.9264317681625,10.9264317681625,0,0,0,0,0,0,0,1,1,0,7.244135635413241,0,0,0,49.29,54.59,6,1,0,0,12,4,0,991.5,0,0,0 +14370,17615,32110,32109,-9,-9,1,1,0,35,1,1,2,0,2,-9,2,1,0,3,8.146994442755204,8.430722621321218,0,2,0,-9,6,0,2,-73.10465487250912,0,0,1,33,1,3,1,-9,2,2019,1,2,21,9,15,55,15,1,9,1,0,24.12301835022613,24.12301835022613,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,48.3,3,1,0,0,12,4,0,991.5,0,0,0 +14371,17616,32111,32112,-9,-9,1,1,1,49,1,0,0,0,2,-9,2,1,0,3,7.948951200007063,7.957435792392492,0,1,0,-9,30,0,0,-51.9945547683949,0,0,0,49,2,3,1,2,1,2019,1,2,12,0,40,40,15,1,0,1,0,6.940843692188366,6.940843692188366,0,0,0,0,0,0,0,0,0,0,3.000590591302677,0,9.33159364897854,3,47.49,45.69,6,1,0,0,2,5,1,264,0,0,0 +14371,17616,32112,32111,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,8.820498111480541,8.976687249018942,0,1,0,-9,29,0,0,148.1548220269046,0,0,0,49,2,3,1,2,2,2019,1,1,21,9,37,38,15,1,9,1,0,19.93801213359876,19.93801213359876,0,0,0,0,0,0,0,0,0,0,4.289216745164991,0,0,0,33.37,60.58,3,1,0,0,2,5,1,264,0,0,0 +14372,17617,32113,32114,-9,-9,1,1,1,80,1,0,0,0,2,-9,4,3,0,1,0,6.247369786893778,5.976009380615557,1,0,-9,45,0,7,-113.6208113962604,0,0,0,73,2,5,3,3,3,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,1,0,4.268174869900946,0,0,0,0,1,1,0,6.161697009956281,5.751629924745325,0,0,38.92,35.01,7,1,0,0,7,2,1,683,0,0,0 +14372,17617,32114,32113,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,5,0,6.302657107039685,6.405376660818082,1,0,-9,45,0,-7,-43.41463253206248,0,0,0,80,2,1,3,2,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.472656082374105,.8816029013146416,1,55.09,55.87,7,1,0,0,7,2,1,683,0,0,0 +14373,17618,32115,-9,32116,32119,4,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.2892045323489,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,646.8,0,0,0 +14373,17618,32116,32119,-9,-9,1,1,0,40,1,0,3,0,2,-9,1,1,0,4,6.561914573124445,6.529580252328201,0,2,0,-9,10,0,-5,80.8681341430413,0,0,1,45,1,5,1,2,-9,2019,1,2,8,0,37,40,15,1,0,1,0,2.287939148814397,2.287939148814397,0,0,0,0,0,0,0,1,1,0,2.775752372777618,0,0,0,48.94,52.9,6,1,0,0,6,5,1,646.8,0,0,0 +14373,17618,32117,-9,32116,32119,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.08837731997,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,646.8,0,0,0 +14373,17618,32118,-9,32116,32119,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.351860830391,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,5,1,646.8,0,0,0 +14373,17618,32119,32116,-9,-9,2,1,1,45,1,0,3,0,1,-9,1,1,0,5,9.750851630469692,9.882824539497268,0,2,0,-9,10,0,5,6.869512564128457,0,0,0,40,2,4,1,-9,-9,2019,1,1,12,0,35,35,15,1,0,1,0,47.88728618307422,47.88728618307422,0,0,0,0,0,0,0,1,1,0,7.360562420444714,0,0,0,46.53,61.33,6,1,0,0,6,5,1,646.8,0,0,0 +14374,17619,32120,32121,-9,-9,1,1,1,52,1,0,0,0,1,-9,2,1,0,4,9.281653992463847,9.263302905148253,0,1,0,-9,31,0,1,-34.03242446238447,-9,0,0,51,2,3,1,2,1,2019,1,2,11,0,45,0,15,1,0,1,0,28.2217218672507,28.2217218672507,0,0,0,0,0,0,0,0,0,0,2.939650583700391,0,0,0,51.83,57.2,6,1,0,0,7,5,1,181,0,0,0 +14374,17619,32121,32120,-9,-9,2,1,0,51,1,0,0,0,2,-9,1,1,0,3,7.436293471159587,7.315542451164517,0,1,0,-9,31,0,-1,-27.35439153077677,0,0,0,52,1,4,1,1,1,2019,1,1,16,6,0,0,15,1,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.977429094632632,0,39.94583914403525,3,44.48,40.37,6,1,0,0,7,5,1,181,0,0,0 +14374,17620,32122,-9,32121,32120,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.19964196215864,8.248103143055951,0,3,0,0,0,-9,0,-976.4676931107413,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,11.68859682260471,11.68859682260471,0,0,0,0,0,0,0,0,0,0,2.284019346291432,0,0,0,62.49,55.09,6,1,0,0,7,4,1,1588,0,0,0 +14375,17621,32123,-9,-9,-9,1,1,0,42,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1117.166637883174,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.528291702540905,3,26.73,21.86,1,3,0,1,8,1,0,1129,0,0,0 +14376,17622,32124,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,5,8.408517143189625,8.879748526024263,0,3,0,0,0,-9,0,-986.4152957842739,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,39,15,1,0,-9,0,15.60984488819046,15.60984488819046,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,379,0,0,0 +14377,17623,32125,32126,-9,-9,2,1,0,63,1,0,0,0,3,-9,4,3,0,3,0,5.76196044398951,6.35952771145842,1,0,-9,5,0,0,-54.80206230657635,0,0,0,72,3,1,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.789791488095803,6.185991084887703,49.60369262017934,1,41.15,56.66,6,1,0,0,11,2,1,657.5,0,0,0 +14377,17623,32126,32125,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,1,0,4.97984128035719,5.127770039040602,1,0,-9,5,0,9,-45.76544885156233,0,0,0,63,3,3,3,3,3,2019,4,2,23,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.87307858030679,0,0,51.34,23.73,5,1,0,0,11,2,1,657.5,0,0,0 +14377,17624,32127,-9,32125,32126,3,1,1,33,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-966.7511749328676,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,6,1,1,0,11,1,1,1837,0,0,0 +14378,17625,32128,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,4,9.149475346021964,9.336246204919291,0,3,0,0,0,-9,0,-971.2282505560373,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,55,55,15,1,1,-9,0,17.50920946095504,17.50920946095504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.44,50.28,6,1,0,0,9,5,0,939,0,0,0 +14379,17626,32129,32130,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.278985513699721,8.553035577598473,0,1,0,-9,24,0,-4,47.64721202409441,0,0,0,61,3,2,1,3,2,2019,1,1,11,0,40,40,15,1,0,1,0,10.9786132506222,10.9786132506222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,5,1,0,0,2,4,1,712,0,0,0 +14379,17626,32130,32129,-9,-9,1,1,0,61,1,0,0,0,3,-9,2,1,0,2,7.696570117805493,7.948810436652009,0,1,0,-9,26,0,4,-83.881097967993,0,0,0,57,2,3,1,2,-9,2019,1,2,27,12,30,47,15,1,12,1,0,10.12840309082923,10.12840309082923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.32,29.61,5,1,0,0,2,4,1,712,0,0,0 +14379,17627,32131,-9,32130,32129,3,1,0,30,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1071.73525711032,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,2,1,1,350,0,0,0 +14380,17628,32132,32133,-9,-9,2,1,0,33,1,2,2,0,1,-9,5,1,0,4,0,0,0,2,0,-9,6,0,-2,0,0,0,1,35,1,3,2,2,3,2019,2,1,10,3,0,33,15,1,3,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,47.16,6,1,0,0,6,1,1,485.5,0,0,0 +14380,17628,32133,32132,-9,-9,1,1,1,35,1,2,2,0,1,-9,7,2,0,3,0,0,0,2,0,-9,6,0,2,0,1,0,0,33,1,4,1,2,2,2019,3,2,13,2,0,0,15,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.35,50.73,6,1,0,0,6,1,1,485.5,0,0,0 +14380,17628,32134,-9,32132,32133,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1058.804324876408,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,6,1,1,485.5,0,0,0 +14380,17628,32135,-9,32132,32133,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.7298362882782,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,1,1,485.5,0,0,0 +14381,17629,32136,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,2,0,5.75400868450946,5.914974741606807,3,0,0,0,-9,0,-1060.367734350195,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.521198948201946,5.486812161058539,0,0,64.23999999999999,34.3,7,1,0,0,7,2,0,235,0,0,0 +14382,17630,32137,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,1,1,0,3,8.036795975784457,7.897500414944056,0,3,0,0,0,-9,0,-1086.599503638481,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,30,35,15,1,3,-9,0,9.499167059719598,9.499167059719598,0,0,0,0,0,0,0,1,1,0,3.552644547823366,0,0,0,45.78,51.81,3,1,0,0,12,3,1,609,0,0,0 +14383,17631,32138,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,6.799277800065339,6.313164202932971,3,0,0,0,-9,0,-1083.64996193921,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,5.295635424537558,0,0,1,1,0,0,6.761436015871785,0,0,41.12,37.78,3,1,0,0,10,2,0,682,0,0,0 +14384,17632,32139,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,2,1,0,2,7.904719470944787,7.898476072213061,0,3,0,-9,0,0,0,-990.8830234363976,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,7,40,38,15,1,7,-9,0,9.878802937320888,9.878802937320888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.05,54.95,5,1,0,0,4,3,0,1622,0,0,0 +14385,17633,32140,32142,-9,-9,1,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.186878693910614,6.897281677186889,0,1,0,-9,21,0,4,-95.58770512768658,0,0,0,59,1,4,1,3,3,2019,1,2,7,0,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4694560664952584,0,0,0,59.01,44.42,6,1,0,0,9,4,1,450.6666666666667,0,0,0 +14385,17633,32141,-9,32142,32140,3,1,0,17,2,0,0,1,2,0,7,2,0,3,6.23841754952094,6.745121204855023,0,1,0,0,0,-9,0,-1039.708025387681,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,1,6,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.5559893302540652,0,0,0,54.37,54.8,7,1,0,0,9,4,1,450.6666666666667,0,0,0 +14385,17633,32142,32140,-9,-9,2,1,0,59,1,0,0,0,1,-9,2,1,0,4,7.711706022663807,8.064204238202766,7.548664573148905,1,0,-9,22,0,-4,134.8825505326105,0,0,0,63,2,3,1,2,2,2019,1,1,5,0,18,50,15,1,0,1,0,13.11761299872436,13.11761299872436,0,0,0,0,0,0,0,0,0,0,2.998511042607757,7.261917586909308,0,0,58.3,52.91,7,1,0,0,9,4,1,450.6666666666667,0,0,0 +14386,17634,32143,-9,-9,-9,1,1,0,22,2,0,1,0,2,-9,6,3,0,4,0,6.130005079270865,5.776137146090965,4,0,0,0,-9,0,-1110.64612153345,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.32058966640828,0,0,0,57.16,56.15,7,1,0,0,5,2,0,3411.5,0,0,0 +14386,17634,32144,-9,32143,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1011.935467170101,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,5,2,0,3411.5,0,0,0 +14387,17635,32145,32146,-9,-9,1,1,0,42,1,0,0,0,1,-9,8,3,1,2,8.268535815887461,8.305893995307736,0,1,0,-9,7,0,-8,-106.6658784095206,0,0,1,50,2,4,1,2,2,2019,3,2,14,4,37,55,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.63,18.77,3,1,0,1,9,5,0,567.5,0,0,0 +14387,17635,32146,32145,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.311548981989505,8.324149122716582,0,1,0,-9,3,0,8,-5.569040556326976,0,0,0,42,1,2,3,-9,-9,2019,2,1,9,0,50,40,15,1,1,3,0,10.49060422813086,10.49060422813086,0,0,0,0,0,0,0,1,1,0,4.834495561801242,0,0,0,52,55,6,1,0,0,9,5,0,567.5,0,0,0 +14388,17636,32147,32148,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,7.612948925210162,7.742611446844302,1,0,-9,8,0,-2,6.572695170452062,0,0,0,65,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.51244060435494,7.28676058820508,0,0,55.94,47.09,6,1,0,0,2,4,1,345.5,0,0,0 +14388,17636,32148,32147,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.640053726255021,7.680306058814908,1,0,-9,8,0,2,-30.30645517359968,0,0,0,63,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.126941672937684,7.929385800072669,0,0,57.73,54.53,2,1,0,0,2,4,1,345.5,0,0,0 +14389,17637,32149,32150,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,33,0,3,-83.51586906135975,0,0,0,71,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,42.46878523184858,0,0,0,0,1,1,0,0,0,0,0,43.96,37.54,6,1,0,0,2,2,1,1143,0,0,0 +14389,17637,32150,32149,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,5.155425322882611,4.94279602335493,1,0,-9,33,0,-3,-54.99515844328742,0,0,0,74,3,2,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,1,0,12.25622004016214,0,0,0,0,1,1,0,4.820929501326044,5.083595099564846,75.40911489494971,1,52.97,30.03,5,1,0,0,2,2,1,1143,0,0,0 +14390,17638,32151,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-899.4014133352409,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,35,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.86,53.05,4,1,1,0,6,1,0,922,0,0,0 +14391,17639,32152,-9,32155,32154,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-995.3304627848051,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,10,5,1,340.5,0,0,0 +14391,17639,32153,-9,32155,32154,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.118688351063,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,1,0,0,10,5,1,340.5,0,0,0 +14391,17639,32154,32155,-9,-9,2,1,1,39,1,1,2,0,1,-9,2,1,0,3,9.855826994251162,9.428616240725249,0,2,0,-9,17,0,3,-38.16155358291286,0,0,0,36,1,4,1,1,3,2019,1,1,11,1,56,72,15,1,1,1,0,32.82613542631142,32.82613542631142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.53,56.72,6,1,0,0,10,5,1,340.5,0,0,0 +14391,17639,32155,32154,-9,-9,1,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.219861243330335,8.505542371295419,0,2,0,-9,16,0,-3,-87.85799934383473,0,0,1,39,1,3,1,1,1,2019,1,2,11,1,21,28,15,1,1,1,0,19.54419600171547,19.54419600171547,0,0,0,0,0,0,0,0,0,0,3.829184690519222,0,0,0,46.44,59.62,6,1,0,0,10,5,1,340.5,0,0,0 +14392,17640,32156,-9,-9,-9,1,1,0,43,2,0,2,0,2,-9,1,1,0,4,6.60476634273975,6.634227402497281,0,4,0,0,0,-9,0,-1082.222272696828,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,16,16,15,1,0,-9,0,5.751252866513659,5.751252866513659,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,5,1,0,0,10,2,0,629.3333333333334,0,0,0 +14392,17640,32157,-9,32156,-9,2,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1094.900924544786,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.71,51.45,7,1,0,0,10,2,0,629.3333333333334,0,0,0 +14392,17640,32158,-9,32156,-9,3,1,0,16,2,0,2,0,-9,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1117.930839049998,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,10,2,0,629.3333333333334,0,0,0 +14393,17641,32159,-9,-9,-9,1,1,1,29,2,0,0,0,1,-9,2,1,0,5,8.014540795498812,7.79922406881308,0,3,0,-9,0,-9,0,-959.3229434433737,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,38,0,15,1,0,-9,0,7.344867948304331,7.344867948304331,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,5,4,0,0,4,4,0,3088,0,0,0 +14394,17642,32160,-9,32162,-9,5,1,0,17,2,0,1,1,2,0,7,2,0,3,5.737570274885756,5.256863115872749,0,2,0,0,0,-9,0,-954.7157545931728,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,26,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.01,61.09,3,1,0,0,13,3,1,378.3333333333333,0,0,0 +14394,17642,32161,32162,-9,-9,1,1,1,57,1,0,1,0,2,-9,2,1,0,3,7.931196675407882,8.072397249201121,0,2,0,-9,11,0,3,15.00584458340808,0,0,0,54,2,3,1,3,3,2019,1,2,8,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.252005995727111,0,0,0,52,54.51,4,1,0,0,13,3,1,378.3333333333333,0,0,0 +14394,17642,32162,32161,-9,-9,2,1,0,54,1,0,1,0,2,-9,2,1,0,3,7.378569887017253,7.48317278902611,0,2,0,-9,11,0,-3,-78.79213858088183,0,0,0,57,2,3,1,3,3,2019,1,1,9,0,31,32,15,1,0,1,0,5.612230615804785,5.612230615804785,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,1,0,0,13,3,1,378.3333333333333,0,0,0 +14394,17643,32163,-9,32162,-9,3,1,1,25,2,0,1,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-920.1165053541856,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,34,12,0,0,15,1,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.110213505694193,0,0,0,11.09,43.39,2,1,0,0,13,1,1,869,0,0,0 +14394,17644,32164,-9,32162,-9,4,1,0,22,2,0,1,0,1,-9,2,1,0,3,7.875454534084733,7.951404030233879,0,3,0,0,0,-9,0,-954.0884647070436,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,72,15,1,0,-9,1,8.646350809163646,8.646350809163646,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,5,1,0,0,13,4,1,131,0,0,0 +14395,17645,32165,-9,32166,32167,4,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-968.5237009082566,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,5,1,0,0,9,5,1,728,0,0,0 +14395,17645,32166,32167,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.7439365620753,7.819892293870279,0,2,0,-9,29,0,0,12.335713153585,0,0,0,46,1,4,1,1,3,2019,1,2,23,11,22,26,15,1,11,1,0,14.04810879062848,14.04810879062848,0,0,0,0,0,0,0,0,0,0,2.774503720555829,0,0,0,33.66,60.3,6,1,0,0,9,5,1,728,0,0,0 +14395,17645,32167,32166,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.633295032393722,9.596984205254888,0,2,0,-9,27,0,0,-89.14766089208632,0,0,0,46,2,4,1,3,3,2019,1,1,18,6,65,60,15,1,6,1,0,29.34333841905475,29.34333841905475,0,0,0,0,0,0,0,0,0,0,0,0,.1702409466522923,3,45.32,61.53,3,1,0,0,9,5,1,728,0,0,0 +14395,17646,32168,-9,32166,32167,3,1,1,18,2,0,2,0,2,0,7,2,0,4,6.656033642260505,6.932065341609915,0,3,0,0,0,-9,0,-935.8625688233649,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,9,5,1,2850,0,0,0 +14396,17647,32169,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,1,1,0,4,8.322039915443705,8.584258876351262,6.041847035821788,1,0,-9,5,0,-3,77.57192363906373,0,0,0,-9,-9,-9,-9,2,2,2019,-9,2,9,0,35,35,15,1,0,-9,0,12.78619076868602,12.78619076868602,0,0,0,0,0,0,0,1,1,0,5.951033315243933,0,0,0,46.16,58.62,5,1,0,0,12,4,1,581,0,0,0 +14397,17648,32170,-9,32173,32172,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.231816897854,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,13,4,0,1244.25,0,0,0 +14397,17648,32171,-9,32173,32172,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-824.5060700303909,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,13,4,0,1244.25,0,0,0 +14397,17648,32172,32173,-9,-9,1,1,1,36,1,0,2,0,1,-9,1,1,0,5,8.35118640735409,8.57511439845052,0,2,0,-9,10,0,1,-2.859110646760327,0,0,0,35,2,4,1,-9,-9,2019,1,2,0,0,40,60,15,1,0,1,0,10.42205087231397,10.42205087231397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,2,3,0,0,13,4,0,1244.25,0,0,0 +14397,17648,32173,32172,-9,-9,2,1,0,35,1,0,2,0,2,-9,2,1,0,4,8.361279809562628,8.604322671505372,0,2,0,-9,11,0,-1,-51.61440904919198,0,0,1,36,1,5,1,2,3,2019,1,1,1,0,24,60,15,1,0,1,0,29.90078803244397,29.90078803244397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.63,58.55,7,3,0,0,13,4,0,1244.25,0,0,0 +14398,17649,32174,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,9.041117776054268,9.317440479236092,0,3,0,0,0,-9,0,-999.5396795919771,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,25,10,56,39,15,1,10,-9,0,19.26037744540036,19.26037744540036,0,0,0,0,0,0,0,0,0,0,7.461150065330685,0,9.761612125874118,3,25.31,65.34,2,1,0,0,8,5,0,461,0,0,0 +14399,17650,32175,32176,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,4,7.403064188815867,7.318631606778857,0,1,0,-9,37,0,-6,-91.92893501563147,0,0,0,61,2,4,3,2,2,2019,2,2,12,0,24,28,15,1,0,4,0,9.584785443152979,9.584785443152979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.71,48.44,3,1,0,0,6,4,1,343.5,0,0,0 +14399,17650,32176,32175,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,4,0,8.472950413984456,8.855868310874767,1,0,-9,37,0,6,-39.9115384941063,0,0,0,55,3,4,1,3,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.83403364454777,8.240565284880395,0,0,57.16,56.15,2,1,0,0,6,4,1,343.5,0,0,0 +14400,17651,32177,32178,-9,-9,2,1,0,28,1,1,1,0,1,-9,5,1,0,3,9.297823642185644,8.900770860957451,0,2,0,-9,1,-9,-8,126.7799547267269,-9,1,1,36,1,5,1,-9,-9,2019,1,1,11,0,37,0,15,1,0,1,0,37.55366281684764,37.55366281684764,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,53,5,1,0,0,1,5,1,907,0,0,0 +14400,17651,32178,32177,-9,-9,1,1,1,36,1,1,1,0,1,-9,2,1,0,5,8.184433228711057,8.115364566362636,0,2,0,-9,1,-9,8,16.75790039734619,-9,0,0,28,1,3,1,1,1,2019,1,2,6,0,39,0,15,1,0,1,0,12.83309152767672,12.83309152767672,0,0,0,0,0,0,0,1,1,0,.6080621568319774,0,0,0,57.06,57.76,6,1,0,0,1,5,1,907,0,0,0 +14400,17651,32179,-9,32177,32178,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1016.326231614149,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,5,1,907,0,0,0 +14401,17652,32180,32181,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,2,0,7.548627690626569,7.514769981205251,1,0,-9,10,0,0,36.06952931215353,0,0,0,63,2,4,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.73914657914666,0,0,34.44,48.18,5,1,0,0,12,4,1,1165.5,0,0,0 +14401,17652,32181,32180,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,7.781380693322514,7.9395718930001,1,0,-9,10,0,0,86.49929588929011,0,0,0,63,2,2,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.347250846383188,0,0,53.48,53.71,6,1,0,0,12,4,1,1165.5,0,0,0 +14402,17653,32182,-9,-9,-9,1,1,0,54,2,0,2,0,2,-9,2,1,0,2,7.895441028785174,7.881879703695096,0,4,0,-9,0,-9,0,-931.0940086890528,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,0,15,1,0,-9,0,7.94801292467109,7.94801292467109,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.8,47.66,3,4,0,1,8,3,0,447,0,0,0 +14403,17654,32183,-9,-9,-9,1,1,0,36,3,1,1,0,2,-9,6,3,0,2,0,5.523932578764223,5.268461058166085,4,0,-9,0,1,0,-1065.549206206295,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,2,0,48,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.457087368116673,0,0,0,52.64,38.41,5,1,0,0,13,2,1,428.5,0,0,0 +14403,17654,32184,-9,32183,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1078.202004617592,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,1,428.5,0,0,0 +14404,17655,32185,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,4,3,0,2,0,8.48203441551127,8.659849028956769,3,0,0,0,-9,0,-1029.872003797216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.159664594231923,.5255200081060587,3,46,39,4,1,0,0,2,5,1,441,0,0,0 +14405,17656,32186,-9,-9,-9,1,1,0,80,3,0,0,0,1,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1038.536399653379,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.97,37.89,5,1,0,0,8,1,1,1203,0,0,0 +14406,17657,32187,-9,32189,32190,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1035.216628795473,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,5,1,678.6,0,0,0 +14406,17657,32188,-9,32189,32190,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-910.6234103730709,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,4,5,1,678.6,0,0,0 +14406,17657,32189,32190,-9,-9,1,1,0,36,1,1,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,9,0,2,103.3386246515656,0,0,1,34,1,4,1,2,2,2019,3,2,7,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,3,0,0,4,5,1,678.6,0,0,0 +14406,17657,32190,32189,-9,-9,2,1,1,34,1,1,3,0,1,-9,1,1,0,4,9.686994605809156,9.677454603653286,0,2,0,-9,9,0,-2,142.4688514912112,0,0,0,36,1,5,3,3,2,2019,2,1,9,0,40,40,15,1,0,3,0,51.33755380302478,51.33755380302478,0,0,0,0,0,0,0,1,1,0,6.005811696928567,0,0,0,66.44,47.81,6,3,0,0,4,5,1,678.6,0,0,0 +14406,17657,32191,-9,32189,32190,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.810702057783,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,5,1,678.6,0,0,0 +14407,17658,32192,32193,-9,-9,2,1,0,85,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,66,0,-4,-37.28596745985717,0,0,0,89,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,7.423569462818926,0,0,0,0,1,1,0,0,0,0,0,72.35000000000001,17.84,7,1,0,0,10,2,1,357,0,0,0 +14407,17658,32193,32192,-9,-9,1,1,1,89,1,0,0,0,2,-9,4,3,0,3,0,7.488062831711243,7.905788555434309,1,0,-9,66,0,4,55.60129070981534,0,0,0,85,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.515004139552335,7.705652516985729,.931050579586558,1,53.82,41.27,6,1,0,0,10,2,1,357,0,0,0 +14408,17659,32194,32195,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,1,0,8.138673382201157,8.449828179108943,1,0,-9,61,0,0,-156.0774910479219,0,0,0,81,3,3,3,2,3,2019,4,2,24,11,0,0,15,4,11,4,0,0,0,1,0,0,2.319033816047185,0,0,0,1,1,0,7.055945325404008,7.975745369460614,72.2422147663401,1,36.2,27.18,3,1,0,0,8,3,1,1121,0,0,0 +14408,17659,32195,32194,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,61,0,0,26.60421900199389,0,0,0,81,2,1,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,129.4756148472484,6.380490734816235,0,0,0,1,1,0,0,0,0,0,51,45,6,1,0,0,8,3,1,1121,0,0,0 +14409,17660,32196,32197,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.071299016782717,7.910029540289925,1,0,-9,33,0,-1,-25.68363264912774,0,0,0,72,3,2,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.801864674648546,8.629808085334215,0,0,54.37,54.8,6,1,0,0,10,3,1,447,0,0,0 +14409,17660,32197,32196,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,21,0,1,90.48104137221949,0,0,0,71,2,3,3,3,-9,2019,4,1,26,12,0,0,15,4,12,4,0,0,0,1,0,4.579457067402611,0,0,0,0,1,1,0,0,0,0,0,39.9,33.33,3,1,0,0,10,3,1,447,0,0,0 +14410,17661,32198,32199,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,0,0,0,0,0,75,3,1,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.93429823855178,1,64.40000000000001,42,7,1,0,0,12,1,1,314,0,0,0 +14410,17661,32199,32198,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,0,0,0,0,0,75,3,3,3,3,3,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.12,27.62,2,1,0,0,12,1,1,314,0,0,0 +14411,17662,32200,32203,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.018021878841351,6.786697536562227,0,2,0,-9,19,0,3,60.22244122805185,0,0,0,43,2,4,1,3,-9,2019,1,2,6,0,28,30,15,1,0,1,0,5.020484488349345,5.020484488349345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,4,4,0,0,7,3,0,757,0,0,0 +14411,17662,32201,-9,32200,32203,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1092.953241856763,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,2,0,0,7,3,0,757,0,0,0 +14411,17662,32202,-9,32200,32203,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-888.1451237327652,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,2,0,0,7,3,0,757,0,0,0 +14411,17662,32203,32200,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.245116218754763,8.026620113313461,0,2,0,-9,13,0,-3,-9.498633666134383,0,0,0,46,2,4,1,-9,-9,2019,1,1,6,0,45,72,15,1,0,1,0,8.771369990615675,8.771369990615675,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.42,52.33,6,1,0,0,7,3,0,757,0,0,0 +14412,17663,32204,32205,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,5.698119826241729,5.848701440815216,1,0,-9,9,0,-1,14.42849558502206,0,0,0,74,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.383386726486008,5.86819150810795,0,0,57.33,53.46,6,1,0,0,2,3,1,262.5,0,0,0 +14412,17663,32205,32204,-9,-9,1,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.271211649364373,7.205637612519797,1,0,-9,9,0,1,7.184147186673707,0,0,0,73,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.531231383089093,7.752408694004156,0,0,57.33,53.46,7,1,0,0,2,3,1,262.5,0,0,0 +14413,17664,32206,-9,32208,32209,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-952.3932252902437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,9,3,1,898.25,0,0,0 +14413,17664,32207,-9,32208,32209,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.8134313386111,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,898.25,0,0,0 +14413,17664,32208,32209,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.214526945257054,7.886398770764519,0,2,0,-9,21,0,-2,-12.54494043946094,0,0,1,45,2,5,1,2,3,2019,1,1,19,7,37,50,15,1,7,1,0,9.606080252459032,9.606080252459032,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,57.46,5,1,0,0,9,3,1,898.25,0,0,0 +14413,17664,32209,32208,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,5,0,0,0,2,0,-9,21,0,2,-45.69516949533649,0,0,0,43,2,4,1,2,2,2019,1,2,10,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,1,0,0,9,3,1,898.25,0,0,0 +14414,17665,32210,32211,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,3,8.621308674726702,8.672084251972288,0,1,0,-9,3,0,-1,-51.01970177676047,0,1,1,30,1,3,1,3,3,2019,1,2,16,6,40,35,15,1,6,1,0,20.37043525933332,20.37043525933332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.37,60.58,3,3,0,0,8,5,1,833,0,0,0 +14414,17665,32211,32210,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,3,8.725158803617232,8.756701490254786,0,1,0,-9,3,0,1,42.56654327194441,0,0,0,29,1,3,1,-9,-9,2019,1,1,22,9,36,39,15,1,9,1,0,20.80750496507485,20.80750496507485,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.34,56.74,3,3,0,0,8,5,1,833,0,0,0 +14414,17666,32212,-9,-9,-9,3,1,0,65,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1031.809282971993,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,5,3,0,0,8,1,1,1197,0,0,0 +14415,17667,32213,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1038.259336317694,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,1,7,1,0,1676,0,0,0 +14415,17668,32214,-9,32213,-9,2,1,0,38,2,0,0,0,2,-9,1,1,0,4,6.610536122117527,6.394414162178163,0,3,0,0,0,-9,0,-988.6613209428297,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,12,0,15,1,0,-9,1,7.682085523867809,7.682085523867809,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.97,56.11,5,1,0,1,7,2,0,1651,0,0,0 +14416,17669,32215,-9,32216,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.8244629280093,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,3,0,1042,0,0,0 +14416,17669,32216,-9,-9,-9,1,1,0,30,2,0,2,0,2,-9,2,1,0,2,8.115567253281478,7.845076993133332,0,4,0,0,0,-9,0,-982.3263419933131,0,0,1,-9,-9,-9,-9,3,1,2019,-9,0,19,7,25,33,15,1,7,-9,0,14.75740887044213,14.75740887044213,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.35,53.92,4,1,0,1,4,3,0,1042,0,0,0 +14417,17670,32217,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,3,8.389153820252382,8.210412077671837,0,3,0,0,0,-9,0,-1033.571526059131,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,37,37,15,1,1,-9,0,9.335922682485633,9.335922682485633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,6,1,0,0,10,4,0,565,0,0,0 +14417,17671,32218,-9,32217,-9,2,1,0,24,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-943.6842828602489,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,21,8,0,20,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.100000000000001,72.46000000000001,2,1,1,0,10,1,0,753,0,0,0 +14417,17672,32219,-9,32217,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,3,7.913030664378164,7.873688997597087,0,3,0,0,0,-9,0,-925.9434980760585,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,40,42,15,1,0,-9,1,7.891394462890042,7.891394462890042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.73,46.3,4,1,0,0,10,3,0,385,0,0,0 +14418,17673,32220,32221,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.630570484572241,8.350135485933265,0,1,0,-9,26,0,3,-121.8351425350258,0,0,0,51,2,5,1,3,3,2019,1,1,10,1,52,60,15,1,1,1,0,12.78386980023921,12.78386980023921,0,0,0,0,0,0,0,0,0,0,3.792904107156901,0,0,0,41.4,55.39,6,1,0,0,2,5,1,1295.5,0,0,0 +14418,17673,32221,32220,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,5,8.315610275697168,8.679146477925384,0,1,0,-9,26,0,-3,42.85266956384243,0,0,0,54,2,3,1,2,3,2019,1,2,18,6,37,37,15,1,6,1,0,11.77819670447103,11.77819670447103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,50.87,5,1,0,0,2,5,1,1295.5,0,0,0 +14418,17674,32222,-9,32221,32220,3,1,1,18,2,0,0,0,2,-9,1,1,0,4,7.781228834872707,7.513164903492314,0,3,0,0,0,-9,0,-1090.099226212108,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,25,0,15,1,0,-9,1,9.537068253459831,9.537068253459831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,2,3,1,134,0,0,0 +14418,17675,32223,-9,32221,32220,4,1,1,18,2,0,0,0,2,-9,1,1,0,5,7.740052199623462,7.97013967443964,0,3,0,0,0,-9,0,-992.3414794294026,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,1,7.182456739481354,7.182456739481354,0,0,0,0,0,0,0,0,0,0,1.025987554116707,0,0,0,48.65,53.42,6,1,0,0,2,3,1,359,0,0,0 +14419,17676,32224,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,1,1,0,3,8.164955219106036,8.349526561456935,5.403964178261172,4,0,0,0,-9,0,-1025.765176837125,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,30,15,1,0,-9,0,11.58495895310051,11.58495895310051,0,0,0,0,0,0,0,1,1,0,5.138776054208374,0,0,0,49.52,56.95,6,1,0,0,11,4,0,278,0,0,0 +14419,17676,32225,-9,32224,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-994.1284055369208,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,4,0,278,0,0,0 +14420,17677,32226,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,3,0,7.259292220516934,7.061810247264043,3,0,0,0,-9,0,-1074.648861720209,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.53550369172481,6.92657480962657,0,0,56.75,47.06,6,1,0,0,8,2,0,400,0,0,0 +14421,17678,32227,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,7.131205095869852,7.461905282895155,3,0,0,0,-9,0,-1112.899366611414,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.319371047877831,7.219644924579849,0,0,50.23,52.59,6,1,0,0,2,3,1,176,0,0,0 +14422,17679,32228,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,2,1,0,2,9.646522328369104,9.275149527375779,0,3,0,0,0,-9,0,-1047.25883167772,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,43,43,15,1,5,-9,0,35.74955085797325,35.74955085797325,0,0,0,0,0,0,0,0,0,0,7.427711635998359,0,5.429771136718313,3,49.09,33.36,4,1,0,0,2,5,1,1165,0,0,0 +14423,17680,32229,-9,-9,-9,5,1,1,29,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-963.5494419680068,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,52.56,6,3,1,0,4,1,0,553,0,0,0 +14424,17681,32230,32231,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,6.493096882025071,6.452916635550554,1,0,-9,9,0,1,-3.392031287332873,0,0,0,74,3,3,3,2,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.265148840797265,6.910757106301759,0,0,52,54.51,6,1,0,0,11,2,1,630.5,0,0,0 +14424,17681,32231,32230,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,9,0,-1,31.2744249612891,0,0,0,75,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.713832053608407,0,0,0,57.45,43.74,1,1,0,0,11,2,1,630.5,0,0,0 +14425,17682,32232,-9,-9,-9,1,1,0,92,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1021.376513183558,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,19.60295912215118,0,0,0,0,121.9136543213478,1,1,0,1.107311188970625,0,0,0,53,44,6,1,0,0,13,1,0,536,0,0,0 +14426,17683,32233,-9,-9,-9,1,1,1,66,2,0,0,0,1,-9,2,1,0,3,9.472626373502452,9.372445843219992,0,3,0,0,0,-9,0,-981.8930973129608,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,60,60,15,1,1,-9,0,22.5672581996847,22.5672581996847,0,0,0,0,0,0,0,0,0,0,1.88721104208921,0,0,0,38.86,59.06,2,1,0,0,4,5,1,3194,0,0,0 +14427,17684,32234,32235,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,5,8.168200037897172,7.959129071030986,0,2,0,-9,23,0,-12,-82.49458777357604,0,0,0,59,1,4,1,2,1,2019,1,2,12,0,18,19,15,1,0,1,0,24.41831397459351,24.41831397459351,0,0,0,0,0,0,0,0,0,0,7.275813708646455,0,0,0,57.06,57.76,6,1,0,0,9,5,1,713,0,0,0 +14427,17684,32235,32234,-9,-9,2,1,1,59,1,0,1,0,1,-9,2,1,0,4,9.060583262477676,9.483183846971427,8.200379955844941,2,0,-9,7,0,12,-129.0392482457054,0,0,0,47,1,5,1,-9,-9,2019,1,1,10,0,42,0,15,1,0,1,0,29.91405793168275,29.91405793168275,0,0,0,0,0,0,0,0,0,0,1.320877902741134,8.850682661091088,0,0,55.19,54.26,6,1,0,0,9,5,1,713,0,0,0 +14427,17684,32236,-9,32234,32235,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.6432639732795,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,9,5,1,713,0,0,0 +14428,17685,32237,-9,32239,32238,4,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.8996731142213,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,3,0,1383.333333333333,0,0,0 +14428,17685,32238,32239,-9,-9,1,1,1,39,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,2,-35.23866203046422,0,0,0,37,2,3,1,-9,-9,2019,3,2,19,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.38,28.87,2,1,0,0,12,3,0,1383.333333333333,0,0,0 +14428,17685,32239,32238,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,3,8.429504219458963,8.383249526353818,0,2,0,-9,6,0,-2,45.68784521078708,0,0,1,39,2,1,3,-9,-9,2019,2,1,6,0,38,40,15,1,0,3,0,14.30562442535381,14.30562442535381,0,0,0,0,0,0,0,1,1,0,0,0,67.52651346844517,1,57.33,53.46,6,1,0,0,12,3,0,1383.333333333333,0,0,0 +14428,17686,32240,-9,32239,32238,3,1,0,19,2,0,1,0,2,-9,2,1,0,3,6.779219624915613,6.572730621373311,0,3,0,0,0,-9,0,-1019.734143509305,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,36,0,15,1,1,-9,1,2.946651502679222,2.946651502679222,0,0,0,0,0,0,0,1,1,0,0,0,6.406888530670996,3,54.37,54.8,4,1,0,0,12,2,0,126,0,0,0 +14429,17687,32241,-9,32242,32246,4,1,0,6,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-910.4876705574762,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,1,0,1018.666666666667,0,0,0 +14429,17687,32242,32246,-9,-9,1,1,0,20,1,2,4,0,2,-9,3,3,0,5,0,3.290412423021289,2.95295216620785,2,0,-9,1,-9,-8,-18.75795792665644,-9,1,1,28,2,3,3,-9,-9,2019,4,2,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.407344908195268,0,0,0,40.03,62.02,5,1,1,0,10,1,0,1018.666666666667,0,0,0 +14429,17687,32243,-9,32242,32246,5,1,0,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1006.179374263782,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,1,0,1018.666666666667,0,0,0 +14429,17687,32244,-9,32242,32246,6,1,1,0,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-960.4596768496293,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,1,0,1018.666666666667,0,0,0 +14429,17687,32245,-9,32242,32246,3,1,1,8,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-954.2407608563599,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,1,0,1018.666666666667,0,0,0 +14429,17687,32246,32242,-9,-9,2,1,1,28,1,2,4,0,2,-9,3,3,0,3,0,0,0,2,0,-9,1,-9,8,20.83558661101548,-9,1,0,20,2,5,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,47.44,5,1,1,0,10,1,0,1018.666666666667,0,0,0 +14430,17688,32247,32248,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,7.758135992406883,7.574563012873366,1,0,-9,4,0,0,-2.770827219468444,0,0,0,67,2,5,3,-9,-9,2019,4,1,11,0,2,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.65131117284223,7.722254870247961,0,0,51.24,58.84,6,1,0,0,12,3,1,612.5,0,0,0 +14430,17688,32248,32247,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,5,0,6.687135488714798,6.242376860723283,1,0,-9,36,0,0,77.09663482758398,0,0,0,67,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.90868579180381,6.849489676465836,0,0,57.06,57.76,6,1,0,0,12,3,1,612.5,0,0,0 +14431,17689,32249,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,2,0,3.210754893913181,3.317432402273558,3,0,0,0,-9,0,-979.4972666020258,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3.044025768826188,0,0,62.45,26.86,6,1,0,0,12,1,1,275,0,0,0 +14432,17690,32250,32251,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,5.477439132206075,5.195562283156417,1,0,-9,51,0,-1,6.060220768866229,0,0,0,83,3,4,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.299587933611865,5.275615065398133,0,0,46.95,59.37,7,1,0,0,9,2,1,924,0,0,0 +14432,17690,32251,32250,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,4,0,6.979867968938215,6.803633637700472,1,0,-9,51,0,1,92.1599572853827,0,0,0,82,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.999383329226122,6.777674965637447,0,0,57.76,54.51,6,1,0,0,9,2,1,924,0,0,0 +14433,17691,32252,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,6.277906248133688,5.778693390341359,3,0,0,0,-9,0,-945.5103599692087,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.763125934318285,0,0,69.15000000000001,7.75,1,1,0,0,12,2,1,3460,0,0,0 +14434,17692,32253,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-981.4264969041952,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.23,40.5,4,1,1,0,2,1,0,141,0,0,0 +14435,17693,32254,32255,-9,-9,2,1,1,29,1,0,0,0,3,-9,2,1,0,4,9.340207108904576,9.158935835380211,0,1,0,-9,2,0,1,48.9596634002588,0,1,0,28,2,4,1,-9,-9,2019,1,1,8,0,0,140,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,7,1,0,0,9,5,1,274,0,0,0 +14435,17693,32255,32254,-9,-9,1,1,0,28,1,0,0,0,2,-9,2,1,0,4,7.700445057180096,7.200465037454475,0,1,0,-9,2,0,-1,-100.651905600632,0,1,1,29,3,4,1,2,2,2019,1,2,12,1,33,30,15,1,1,1,0,5.196367592134237,5.196367592134237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.51,56.39,6,1,0,0,9,5,1,274,0,0,0 +14436,17694,32256,32257,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,3,6.967181829751978,7.213552653477555,0,1,0,-9,6,0,5,-42.43327962259131,0,0,0,47,2,4,1,2,2,2019,1,2,5,0,18,0,15,1,0,1,0,7.727181232224178,7.727181232224178,0,0,0,0,0,0,0,0,0,0,4.163129848245068,0,0,0,52.12,44.79,6,1,0,0,10,5,1,683.5,0,0,0 +14436,17694,32257,32256,-9,-9,2,1,1,47,1,0,0,0,2,-9,1,1,0,4,8.99189444534302,8.916380469410097,0,1,0,-9,6,0,-5,151.5563088227393,0,0,0,52,2,3,1,2,2,2019,1,1,7,0,30,40,15,1,0,1,0,32.49707738232286,32.49707738232286,0,0,0,0,0,0,0,0,0,0,5.397909520253283,0,0,0,57.16,56.15,6,1,0,0,10,5,1,683.5,0,0,0 +14437,17695,32258,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,4,3,0,3,0,5.597561437655627,6.082437240947617,3,0,0,0,-9,0,-1137.933414078964,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.651601839042243,0,3,61.58,37.81,7,1,0,0,7,2,1,450,0,0,0 +14438,17696,32259,-9,32260,32261,3,1,1,17,2,0,1,1,2,0,7,2,0,4,6.797743781381613,7.05831661996322,0,2,0,0,0,-9,0,-1104.84900971243,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,8,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,58.15,5,1,0,0,7,3,1,363.75,0,0,0 +14438,17696,32260,32261,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.889889796261804,7.371516429330295,0,2,0,-9,8,0,2,-46.18349103344099,0,0,0,44,2,4,3,2,2,2019,2,1,11,0,31,29,15,1,0,3,0,9.204538385011492,9.204538385011492,0,0,0,0,0,0,0,1,1,0,1.616975382292417,0,0,0,41.79,57.73,6,1,0,0,7,3,1,363.75,0,0,0 +14438,17696,32261,32260,-9,-9,1,1,1,44,1,0,1,0,2,-9,11,3,0,4,7.815586975598612,7.781893871684277,0,2,0,-9,8,0,-2,40.72813729769259,0,0,0,46,2,3,1,2,1,2019,3,2,2,0,35,35,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.974307685444964,0,0,0,58.54,54.14,6,1,0,0,7,3,1,363.75,0,0,0 +14438,17696,32262,-9,32260,32261,4,1,0,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-945.1458672065766,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,7,3,1,363.75,0,0,0 +14439,17697,32263,-9,-9,-9,1,1,1,47,3,0,2,0,2,-9,3,3,0,1,0,4.323624089946446,4.422349327858867,4,0,0,0,-9,0,-1006.882909083255,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.136137062834196,0,85.06835740530263,3,15.29,36.69,3,1,1,0,12,1,0,956,0,0,0 +14440,17698,32264,-9,32268,32267,4,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-985.6681997717288,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,13,4,1,1091.4,0,0,0 +14440,17698,32265,-9,32268,32267,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-918.2192245843685,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,4,1,1091.4,0,0,0 +14440,17698,32266,-9,32268,32267,3,1,0,16,2,0,3,0,2,-9,3,2,0,3,0,0,0,2,0,-9,0,-9,0,-1006.207246826125,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,32,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.96,58.02,1,1,1,0,13,4,1,1091.4,0,0,0 +14440,17698,32267,32268,-9,-9,1,1,1,47,1,0,3,0,1,-9,2,1,0,5,8.9022616013517,8.827083662531965,0,2,0,-9,1,-9,1,-49.36894457004339,-9,0,0,46,1,4,1,2,2,2019,1,2,8,1,45,0,15,1,1,1,0,13.87263000446726,13.87263000446726,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,6,1,0,0,13,4,1,1091.4,0,0,0 +14440,17698,32268,32267,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,4,8.527808680199513,8.407284215625275,0,2,0,-9,1,-9,-1,44.50512406884311,-9,0,0,47,1,5,1,3,3,2019,1,1,9,0,41,0,15,1,0,1,0,12.26966681757364,12.26966681757364,0,0,0,0,0,0,0,1,1,0,2.391617972632445,0,0,0,54.2,57.49,6,1,0,0,13,4,1,1091.4,0,0,0 +14441,17699,32269,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.986563797700102,8.314897656189835,0,3,0,-9,0,-9,0,-1027.051579225385,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,50,0,15,1,0,-9,0,8.64816316174522,8.64816316174522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.58,44.31,5,1,0,0,12,4,0,2776,0,0,0 +14442,17700,32270,-9,-9,-9,1,1,0,51,2,0,0,0,2,-9,2,1,0,1,6.763328538861076,7.269827610896895,0,3,0,0,0,-9,0,-944.362956023247,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,16,16,15,1,8,-9,0,8.091303114554544,8.091303114554544,0,0,0,0,0,0,0,1,1,0,0,0,67.12980221622938,3,28.52,33.26,3,1,0,1,10,2,0,219,0,0,0 +14442,17701,32271,-9,32270,-9,2,1,1,23,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-989.5387194867263,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.42,60.53,5,1,1,0,10,1,0,561,0,0,0 +14443,17702,32272,32273,-9,-9,1,1,1,71,1,0,0,0,1,-9,2,1,0,4,7.423077003757348,8.403832042790143,7.50775050914456,1,0,-9,48,0,1,98.39321964698252,0,0,0,70,3,3,3,3,3,2019,2,2,10,1,16,24,15,1,1,4,0,15.09596215162831,15.09596215162831,1,0,0,0,0,0,5.241508888555092,1,1,0,8.411761627459734,7.360019748673706,25.14026678349286,1,55.73,53.98,6,1,0,0,4,4,1,862,0,0,0 +14443,17702,32273,32272,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,5.002595008216728,4.98997770669759,1,0,-9,49,0,-1,141.968294837606,0,0,0,71,1,4,1,3,2,2019,3,1,11,0,0,0,15,4,1,1,0,0,0,1,9.451395773525949,32.57534533105699,0,0,0,39.03398631560117,1,1,0,2.992200540510362,5.062774453910356,0,0,50,47,5,1,0,0,4,4,1,862,0,0,0 +14444,17703,32274,32275,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,7.000532610420148,7.024530225382793,1,0,-9,15,0,0,-51.50476661357476,0,0,0,68,2,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.004297986997766,0,0,53.44,55.06,6,1,0,0,1,2,1,292,0,0,0 +14444,17703,32275,32274,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,15,0,0,-69.34148392353536,0,0,0,68,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,61.04,28.88,6,1,0,0,1,2,1,292,0,0,0 +14445,17704,32276,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,4,0,7.046144963297648,6.839448613571514,3,0,0,0,-9,0,-1027.661306269337,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,3.912457690109657,0,1,1,0,0,6.90341190812873,0,0,58.15,52.91,7,1,0,0,2,2,1,334,0,0,0 +14446,17705,32277,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-937.5271517207783,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.24,42.21,3,3,0,0,4,1,1,407,0,0,0 +14446,17706,32278,-9,32277,-9,4,1,1,30,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,-9,0,-9,0,-930.5767605795783,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,6,3,1,0,4,1,1,449,0,0,0 +14446,17707,32279,-9,32277,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,3,7.872478932259376,7.578390622023541,0,3,0,0,0,-9,0,-966.7998130377675,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,24,8,37,16,15,1,8,-9,1,7.150438761770619,7.150438761770619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.15,42.59,7,3,0,0,4,3,1,1589,0,0,0 +14447,17708,32280,-9,32281,32282,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.0798015787576,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,11,5,1,527.75,0,0,0 +14447,17708,32281,32282,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,4,8.336635521492132,8.560998937281919,0,2,0,-9,2,0,9,26.94227155537626,0,0,1,33,2,4,1,2,3,2019,1,2,7,0,80,45,15,1,0,1,0,6.245719020130816,6.245719020130816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,6,1,0,0,11,5,1,527.75,0,0,0 +14447,17708,32282,32281,-9,-9,2,1,1,33,1,0,2,0,2,-9,2,1,0,4,8.568009091181192,8.745236951917226,0,2,0,-9,2,0,0,-156.9821374921768,0,0,0,42,2,4,1,-9,-9,2019,1,1,6,0,64,60,15,1,0,1,0,10.79569462244845,10.79569462244845,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,7,1,0,0,11,5,1,527.75,0,0,0 +14447,17708,32283,-9,32281,32282,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-914.7873583622351,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,5,1,0,0,11,5,1,527.75,0,0,0 +14448,17709,32284,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,3,5.629526936492936,5.551475087982946,0,3,0,0,0,-9,0,-1179.736651514421,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,28,10,0,70,15,1,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.073385153626313,0,0,0,17.19,54.62,2,1,0,0,11,2,1,132,0,0,0 +14449,17710,32285,32286,-9,-9,2,1,0,62,1,0,0,0,1,-9,2,1,0,5,8.663209500293373,8.441424334081914,0,1,0,-9,7,0,-2,53.49267794152945,0,0,0,64,2,3,3,2,2,2019,2,1,7,0,50,0,15,1,0,3,0,15.01226091706132,15.01226091706132,0,0,0,0,0,0,0,0,0,0,7.527982705344092,0,0,0,59.43,58.05,7,1,0,0,12,5,1,805.5,0,0,0 +14449,17710,32286,32285,-9,-9,1,1,1,64,1,0,0,0,2,-9,3,3,0,3,0,7.344133345332953,7.571927312939208,1,0,-9,28,0,2,79.05805813374946,0,0,0,62,1,5,1,2,2,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09816628354311,7.289337809767862,0,0,56.52,48.31,6,1,1,0,12,5,1,805.5,0,0,0 +14450,17711,32287,-9,32289,32290,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1222.409201259512,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,1,306.75,0,0,0 +14450,17711,32288,-9,32289,32290,4,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-994.9533165404141,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,4,3,1,306.75,0,0,0 +14450,17711,32289,32290,-9,-9,1,1,0,35,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,8,0,-4,-14.83000863530675,0,0,1,39,2,4,1,2,-9,2019,3,2,24,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.8233349311166,3,28.97,20.69,4,1,0,0,4,3,1,306.75,0,0,0 +14450,17711,32290,32289,-9,-9,2,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.220229446174697,8.503198587267304,0,2,0,-9,2,0,4,-44.05014222406082,0,0,0,35,2,1,3,-9,-9,2019,2,1,10,0,40,37,15,1,1,3,0,13.37335434412577,13.37335434412577,0,0,0,0,0,0,0,1,1,0,0,0,0,1,50,57,5,1,0,0,4,3,1,306.75,0,0,0 +14451,17712,32291,32292,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.351691153647085,8.110924032889752,0,1,0,-9,9,0,1,25.58606503937265,0,0,0,61,2,3,3,-9,-9,2019,2,1,10,0,38,40,15,1,1,3,0,12.11784858207076,12.11784858207076,0,0,0,0,0,0,0,0,0,0,4.646695933056371,0,0,0,51,49,5,1,0,0,5,4,1,790,0,0,0 +14451,17712,32292,32291,-9,-9,1,1,0,61,1,0,0,0,2,-9,3,3,0,3,0,5.441676797580165,5.251710005373023,1,0,-9,38,0,-1,-37.17941948980791,0,0,0,62,2,3,1,2,2,2019,3,2,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.424318687954098,5.409239654864361,0,0,47.07,53.97,6,1,1,0,5,4,1,790,0,0,0 +14452,17713,32293,-9,-9,-9,1,1,0,73,2,0,0,0,2,-9,4,3,0,5,0,7.824983711873204,7.513876071774042,3,0,0,0,-9,0,-901.508486190193,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.575421750152671,7.653109639025368,3.36858951979139,3,62.39,56.71,7,1,0,0,4,3,1,521,0,0,0 +14453,17714,32294,32295,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,5.569769566822047,5.358330871667687,1,0,-9,6,0,-2,109.6370144921521,0,0,0,71,3,2,3,-9,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.216464005584534,5.212956691628735,0,0,53.98,50.87,6,1,0,0,8,2,0,539.5,0,0,0 +14453,17714,32295,32294,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,5.955082501823448,6.079574985388247,1,0,-9,6,0,2,80.36560386221822,0,0,0,69,3,3,3,3,-9,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.504390910803541,6.15129071289497,0,0,40.86,44.79,4,1,0,0,8,2,0,539.5,0,0,0 +14454,17715,32296,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,4,3,0,2,0,8.148836147743188,7.834043932185796,3,0,-9,0,1,0,-1005.194951362661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,36,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.638900367925331,0,0,4.01,54.19,1,1,0,0,11,3,1,366,0,0,0 +14455,17716,32297,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,5,0,6.611278753979387,6.94528007524072,3,0,0,0,-9,0,-1101.603155054107,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.14243852521223,6.811019735214169,0,0,39.79,63.29,2,1,0,0,10,2,1,518,0,0,0 +14456,17717,32298,-9,32299,32300,3,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-996.7144475392682,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,4,1,0,0,11,2,1,717.75,0,0,0 +14456,17717,32299,32300,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,4,7.43145176911491,7.634682582880246,0,2,0,-9,10,0,-3,-73.30360364965522,0,0,1,42,3,3,1,2,2,2019,1,2,10,1,20,20,15,1,1,1,0,11.14576526704194,11.14576526704194,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,6,1,0,0,11,2,1,717.75,0,0,0 +14456,17717,32300,32299,-9,-9,2,1,1,42,1,0,2,0,3,-9,1,1,0,3,5.429847136929126,5.302812243981739,0,2,0,-9,10,0,3,22.41404625600648,0,0,0,39,2,4,1,-9,-9,2019,1,1,7,1,4,4,15,1,1,1,0,7.057972612477118,7.057972612477118,0,0,0,0,0,0,0,1,1,0,0,0,4.181780393790856,3,45.44,52.04,6,1,0,0,11,2,1,717.75,0,0,0 +14456,17717,32301,-9,32299,32300,4,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-930.7986189925695,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,11,2,1,717.75,0,0,0 +14457,17718,32302,32303,-9,-9,2,1,1,65,1,0,3,0,1,-9,1,1,0,3,6.005762214681828,5.976924515197872,0,2,0,-9,36,0,3,5.329106579568482,0,0,0,62,3,3,3,3,2,2019,2,1,10,0,23,30,15,1,1,3,0,2.188153243326586,2.188153243326586,0,0,0,0,0,0,0,1,1,0,4.428249438651736,0,0,0,52,48,5,3,0,0,4,2,1,566.5,0,0,0 +14457,17718,32303,32302,-9,-9,1,1,0,62,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,36,0,-3,92.61898205431032,0,0,0,65,1,3,1,3,2,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,0,0,4,2,1,566.5,0,0,0 +14457,17719,32304,-9,32306,32307,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-903.7391091297714,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,617.4,0,0,0 +14457,17719,32305,-9,32306,32307,7,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.872926661086,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,2,1,617.4,0,0,0 +14457,17719,32306,32307,-9,-9,4,1,0,31,1,0,3,0,1,-9,3,3,0,4,0,0,0,2,0,-9,3,0,-2,-57.48449513575437,0,0,1,33,1,5,1,3,2,2019,3,3,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8735034767824598,0,0,0,48,57,5,3,1,0,4,2,1,617.4,0,0,0 +14457,17719,32307,32306,32303,32302,3,1,1,33,1,0,3,0,1,-9,2,1,0,5,7.530987366609824,7.861648663349392,0,2,0,-9,3,0,2,142.7961547461593,0,0,0,31,1,4,3,3,2,2019,2,4,5,0,33,32,15,1,0,3,0,10.1927190915289,10.1927190915289,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.04,60.47,6,3,0,0,4,2,1,617.4,0,0,0 +14457,17719,32308,-9,32306,32307,6,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.141560253982,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,4,2,1,617.4,0,0,0 +14458,17720,32309,32310,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,7,0,7,-83.14612973331769,0,0,0,61,1,3,3,3,2,2019,4,2,10,0,0,30,15,4,1,4,0,0,0,1,0,12.4220761619315,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,13,4,1,747.5,0,0,0 +14458,17720,32310,32309,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,3,7.914723205975789,8.812784084245084,8.453434274535462,1,0,-9,7,0,-7,40.9066630722532,0,0,0,68,1,3,3,2,1,2019,4,1,11,0,19,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.912601588174181,8.052604161949141,0,0,49,48,5,1,0,0,13,4,1,747.5,0,0,0 +14459,17721,32311,-9,32314,32313,5,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-984.6661359267832,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.97,57.26,4,3,0,0,8,1,0,926.5,0,0,0 +14459,17721,32312,-9,32314,32313,6,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.631136304122,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,1,0,926.5,0,0,0 +14459,17721,32313,32314,-9,-9,1,1,1,50,1,0,3,0,2,-9,1,1,0,4,0,0,0,2,0,-9,23,0,10,0,0,0,0,40,2,4,3,2,2,2019,2,2,9,0,40,63,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,1,0,926.5,0,0,0 +14459,17721,32314,32313,-9,-9,2,1,0,40,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,10,0,-10,0,0,0,1,50,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,8,1,0,926.5,0,0,0 +14459,17722,32315,-9,32314,32313,3,1,1,20,2,0,3,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-981.7507210185852,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,1,0,8,1,0,344,0,0,0 +14459,17723,32316,-9,32314,32313,4,1,1,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1018.956268042364,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,3,0,0,8,1,0,703,0,0,0 +14460,17724,32317,-9,-9,-9,1,1,1,74,3,0,0,0,3,-9,4,3,0,3,6.51619116380515,7.375316634760584,7.354837725389514,3,0,0,0,-9,0,-1069.096466802121,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.368776896434909,7.228405463736878,0,0,55.96,49.93,6,1,0,0,13,3,1,337,0,0,0 +14461,17725,32318,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,3,7.921677989896004,8.302981914672444,0,3,0,0,0,-9,0,-1067.441045435986,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,37,37,15,1,1,-9,0,9.066751620099492,9.066751620099492,0,0,0,0,0,0,0,0,0,0,0,0,8.707875017709735,3,50.51,53.71,5,1,0,0,1,3,1,2076,0,0,0 +14461,17726,32319,-9,32318,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.788293772772448,7.809402475818458,0,3,0,0,0,-9,0,-930.968552744385,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,2,0,38,0,15,1,0,-9,1,5.787868775460739,5.787868775460739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,2,0,1,1,3,1,760,0,0,0 +14462,17727,32320,32321,-9,-9,1,1,0,54,1,0,0,0,1,-9,6,3,0,3,0,0,0,1,0,-9,6,0,1,213.7752699242309,0,0,0,53,1,3,1,2,2,2019,3,3,8,0,0,60,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.789095081026631,0,0,3,48.71,51.81,6,1,0,0,9,4,1,1534,0,0,0 +14462,17727,32321,32320,-9,-9,3,1,1,53,1,0,0,0,1,-9,2,1,0,3,8.953218418152888,8.777748569132999,0,1,0,-9,6,0,-1,117.6308353132599,0,0,0,54,1,3,3,3,2,2019,2,1,16,5,41,37,15,1,5,3,0,20.97701957849661,20.97701957849661,0,0,0,0,0,0,0,0,0,0,4.59963731325866,0,0,0,47.96,49.83,5,1,0,0,9,4,1,1534,0,0,0 +14462,17728,32322,-9,32320,32321,2,1,1,27,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-972.2904110205619,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,40,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,1,0,9,1,1,414,0,0,0 +14463,17729,32323,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,3,0,6.798598753244684,6.330161013325627,3,0,0,0,-9,0,-1069.552948222481,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.099308492757016,6.579792276078077,0,0,60.44,46.58,6,1,0,0,9,2,1,754,0,0,0 +14464,17730,32324,32325,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,6.878605463551106,6.825567434239124,1,0,-9,10,0,4,18.83307953753348,0,0,0,68,2,3,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.726632400955153,6.806484652635454,0,0,59.29,49.68,7,1,0,0,11,2,1,183.5,0,0,0 +14464,17730,32325,32324,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.059259997124712,5.390982842661763,1,0,-9,10,0,-4,59.22662380414724,0,0,0,72,2,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.414629448618987,5.02710933935588,0,0,52.8,47.23,7,1,0,0,11,2,1,183.5,0,0,0 +14465,17731,32326,32327,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,5,-24.53618764541422,0,0,0,70,3,2,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,15.00120651408244,10.30078306892887,0,0,0,109.5927772229131,1,1,0,6.451382467015793,0,0,0,53,46,6,1,0,0,13,2,1,555,0,0,0 +14465,17731,32327,32326,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,7.116618288807826,7.198993248060932,1,0,-9,7,0,-5,-36.34541717322768,0,0,0,75,3,3,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.89384571523702,130.2027569439032,1,48.54,30.56,6,1,0,0,13,2,1,555,0,0,0 +14466,17732,32328,32329,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,4,7.749807192843396,7.463251302225148,0,1,0,-9,17,0,6,50.19642617683279,0,0,0,48,1,3,1,1,3,2019,1,1,8,0,60,55,15,1,0,1,0,4.707017332983269,4.707017332983269,0,0,0,0,0,0,0,0,0,0,6.659450286801058,0,0,0,54.2,57.49,6,1,0,0,11,5,1,442,0,0,0 +14466,17732,32329,32328,-9,-9,1,1,0,48,1,0,0,0,1,-9,1,1,0,3,9.527142228632648,9.839931722112498,0,1,0,-9,17,0,-6,20.71703300431783,0,0,0,54,2,4,1,3,2,2019,1,2,7,0,45,45,15,1,0,1,0,40.99966077913259,40.99966077913259,0,0,0,0,0,0,0,0,0,0,2.405416477132457,0,0,0,53.78,48.41,6,1,0,0,11,5,1,442,0,0,0 +14467,17733,32330,32331,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.054463821575148,7.795498532973844,1,0,-9,10,0,13,-11.13405657483126,0,0,0,58,1,2,1,2,1,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.35417202821054,7.761484742919536,6.918525960107119,3,51.77,58.57,6,1,0,0,12,5,1,1309.5,0,0,0 +14467,17733,32331,32330,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,2,8.917577914954459,9.093709969055878,0,1,0,-9,10,0,-13,10.17412451821582,0,0,0,71,1,4,3,3,3,2019,2,1,17,4,46,46,15,1,4,4,0,19.29767298612511,19.29767298612511,0,0,0,0,0,0,0,1,1,0,6.054228928923131,0,0,0,48.7,32.13,6,1,0,0,12,5,1,1309.5,0,0,0 +14468,17734,32332,-9,-9,-9,1,1,0,40,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1128.426934548684,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.46,31.63,1,1,0,0,10,1,0,1392,0,0,0 +14469,17735,32333,-9,-9,-9,1,1,0,40,2,1,3,0,2,-9,3,3,0,4,0,5.963349227536819,6.114929602555128,4,0,-9,0,-9,0,-998.6324649942077,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.789371721701045,0,0,0,38.4,60.75,3,1,1,0,2,2,1,720.5,0,0,0 +14469,17735,32334,-9,32333,-9,4,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1073.406068450689,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,2,2,1,720.5,0,0,0 +14469,17736,32335,-9,32333,-9,2,1,0,20,2,1,3,0,2,-9,5,1,0,4,6.559724087225433,6.505046095282397,0,3,0,-9,0,-9,0,-985.4907965033027,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,5,1,12,0,15,1,1,-9,1,6.485272446869974,6.485272446869974,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,6,1,0,0,2,2,1,298,0,0,0 +14469,17736,32336,-9,32335,-9,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-969.5888279639768,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,2,2,1,298,0,0,0 +14470,17737,32337,32338,-9,-9,1,1,1,45,1,0,1,0,1,-9,2,1,0,2,7.916183469039842,7.770897113531517,0,2,0,-9,7,0,-4,63.52451194963617,0,0,0,49,1,5,3,1,1,2019,2,2,9,1,60,70,15,1,1,3,0,5.018685829429381,5.018685829429381,0,0,0,0,0,0,0,1,1,0,8.283492178475427,0,0,0,41.36,42.25,6,2,0,0,12,4,1,628.3333333333334,0,0,0 +14470,17737,32338,32337,-9,-9,2,1,0,49,1,0,1,0,1,-9,10,3,0,5,8.617368841172905,8.319670188907736,0,2,0,-9,7,0,4,170.7769702572771,0,0,0,45,1,2,1,2,2,2019,3,1,8,0,21,8,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.311864701960327,0,0,0,51.73,58.82,5,1,0,0,12,4,1,628.3333333333334,0,0,0 +14470,17737,32339,-9,32338,32337,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.002712366108,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,628.3333333333334,0,0,0 +14471,17738,32340,-9,32343,32342,4,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.404906627781,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,4,0,570.2,0,0,0 +14471,17738,32341,-9,32343,32342,3,1,1,10,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.0744169077565,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,0,570.2,0,0,0 +14471,17738,32342,32343,-9,-9,5,1,1,45,1,1,3,0,2,-9,2,1,0,2,9.045643697291737,9.325366929078529,0,2,0,-9,1,-9,17,44.31802966583445,-9,0,0,28,2,4,1,-9,-9,2019,1,1,10,0,50,0,15,1,0,1,0,20.49023230302516,20.49023230302516,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.62,31.11,5,1,0,0,10,4,0,570.2,0,0,0 +14471,17738,32343,32342,-9,-9,1,1,0,28,1,1,3,0,2,-9,2,1,0,4,6.621621574817747,6.563112837222755,0,2,0,1,1,-9,-17,26.29408038555597,0,1,1,45,2,2,1,2,2,2019,1,5,9,0,15,0,15,1,0,1,0,6.836827764064098,6.836827764064098,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,4,0,570.2,0,0,0 +14471,17738,32344,-9,32343,32342,2,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.923673094894,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,4,0,570.2,0,0,0 +14472,17739,32345,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1020.721360109002,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,1,0,0,0,14.7590896475929,0,0,1,1,0,0,0,0,0,16.04,23.99,3,1,0,0,10,1,0,967,0,0,0 +14472,17740,32346,-9,32345,-9,2,1,1,48,2,0,0,0,3,-9,2,1,0,4,6.983264654363905,7.094074695497885,0,3,0,0,0,-9,0,-944.1852655603074,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,44,54,15,1,0,-9,1,2.913229990512118,2.913229990512118,0,0,0,0,0,0,0,1,1,0,.222551365930796,0,25.77584603579266,3,51.14,52.08,4,1,0,0,10,2,0,3720,0,0,0 +14473,17741,32347,-9,32348,32350,4,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-950.0197022738805,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,2,4,1,1806.25,0,0,0 +14473,17741,32348,32350,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,5,7.619724589960702,7.97955028799998,0,2,0,-9,6,0,1,34.63421379961606,0,0,0,44,1,4,1,2,2,2019,1,1,6,0,34,27,15,1,0,1,0,10.07059541945246,10.07059541945246,0,0,0,0,0,0,0,1,1,0,.8455492835606875,0,0,0,59.04,51.29,6,1,0,0,2,4,1,1806.25,0,0,0 +14473,17741,32349,-9,32348,32350,3,1,1,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1102.105856143294,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.41,60.69,6,1,0,0,2,4,1,1806.25,0,0,0 +14473,17741,32350,32348,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.844967929578017,8.976001774558394,0,2,0,-9,6,0,-1,-55.50216084200267,0,0,0,45,1,5,1,2,2,2019,1,2,10,0,60,60,15,1,0,1,0,12.46319273916047,12.46319273916047,0,0,0,0,0,0,0,1,1,0,5.395769166859618,0,0,0,57.16,56.15,6,1,0,0,2,4,1,1806.25,0,0,0 +14474,17742,32351,32352,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,6.960100435767906,6.864542906686341,1,0,-9,8,0,-8,-10.45109450383218,0,0,0,74,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.694848199218589,0,0,68.57000000000001,41.34,1,1,0,0,7,2,0,210.5,0,0,0 +14474,17742,32352,32351,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,3.010617950607445,3.07235592672887,1,0,-9,8,0,8,100.9868083658483,0,0,0,66,3,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.160755439309159,3.071789359109167,0,0,63.24,42.39,6,1,0,0,7,2,0,210.5,0,0,0 +14475,17743,32353,32354,-9,-9,1,1,1,57,1,0,0,0,3,-9,2,1,0,4,8.405502646496936,8.655982572010297,0,1,0,-9,25,0,-7,-72.61374715284089,0,0,0,64,2,1,3,3,2,2019,2,2,6,0,48,50,15,1,0,4,0,13.3956892098329,13.3956892098329,0,0,0,0,0,0,0,1,1,0,4.214427645329797,0,14.70357141713045,1,57.16,56.15,1,1,0,0,13,4,1,366,0,0,0 +14475,17743,32354,32353,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,25,0,7,30.3752485769587,0,0,0,57,3,4,1,2,2,2019,3,1,10,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.712347390334182,0,11.12739267576421,3,61.12,13.9,5,1,0,0,13,4,1,366,0,0,0 +14476,17744,32355,-9,-9,-9,1,1,0,51,3,0,0,0,3,-9,2,1,0,3,8.02612093483541,8.234233915414029,0,3,0,0,0,-9,0,-1004.225345835502,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,40,40,15,1,1,-9,0,8.979518057695101,8.979518057695101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.93,47.5,3,1,0,0,7,4,0,2497,0,0,0 +14476,17745,32356,-9,32355,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,4,7.184289945889707,7.765060650605265,0,3,0,0,0,-9,0,-984.2009423345,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,43,50,15,1,2,-9,1,5.678702966331899,5.678702966331899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,7,3,0,356,0,0,0 +14477,17746,32357,-9,32358,32359,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-905.305710099785,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,657.5,0,0,0 +14477,17746,32358,-9,-9,-9,1,1,0,43,3,0,1,0,1,-9,2,1,0,3,7.681355612658101,7.443644056363937,0,4,0,-9,0,1,0,-1058.516848762076,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,18,15,15,1,3,-9,0,14.18077980937081,14.18077980937081,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,4,1,0,0,10,3,1,657.5,0,0,0 +14477,17747,32359,-9,-9,-9,2,1,1,42,3,0,1,0,2,-9,2,1,0,3,8.568941820236427,8.692115244163746,0,4,0,-9,0,1,0,-996.2570826413631,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,43,43,15,1,1,-9,0,11.22994771232469,11.22994771232469,0,0,0,0,0,0,0,1,1,0,1.580875263010012,0,0,0,42.38,37.02,3,1,0,0,10,4,1,385,0,0,0 +14478,17748,32360,32361,-9,-9,2,1,1,62,1,0,0,0,1,-9,1,1,0,5,9.18288156535827,9.543533563112417,8.729885614375149,1,0,-9,2,0,0,-31.08901140476261,0,0,0,62,1,4,1,-9,-9,2019,1,1,7,0,30,30,15,1,0,1,0,41.65191478757019,41.65191478757019,0,0,0,0,0,0,0,0,0,0,9.812310667784045,7.425239226891222,0,0,57.06,57.76,6,1,0,0,8,5,1,442.5,0,0,0 +14478,17748,32361,32360,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,4,9.393126373606412,9.616395461581632,5.820809360833781,1,0,-9,30,0,0,42.51382278865481,0,0,0,62,1,5,1,1,1,2019,1,2,7,0,40,40,15,1,0,1,0,45.01879133669351,45.01879133669351,0,0,0,0,0,0,0,0,0,0,6.926775944060121,6.733755838829495,0,0,57.16,56.15,6,1,0,0,8,5,1,442.5,0,0,0 +14479,17749,32362,32363,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,5,0,-1,174.9950043637015,0,0,0,79,2,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.635260838452865,0,0,0,57.73,41.12,2,1,0,0,12,2,1,1365.5,0,0,0 +14479,17749,32363,32362,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,6.278326850668293,6.061291209796892,1,0,-9,61,0,1,65.09488149733144,0,0,0,78,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.765788740141049,6.66345036462933,0,0,57.16,56.15,6,1,0,0,12,2,1,1365.5,0,0,0 +14479,17750,32364,-9,32362,32363,3,1,0,55,3,0,0,0,2,-9,2,1,0,4,7.462469315283035,7.865129313339093,7.076975556210019,3,0,0,0,-9,0,-977.7344621358649,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,20,20,15,1,0,-9,1,11.01624640962975,11.01624640962975,0,0,0,0,0,0,0,1,1,0,6.749003840043621,0,0,0,54.2,57.49,5,1,0,0,12,3,1,452,0,0,0 +14480,17751,32365,32367,-9,-9,2,1,1,40,1,0,2,0,2,-9,1,1,0,5,6.665074881462164,6.430503103381646,0,2,0,-9,21,0,0,62.65498324149168,-9,0,0,40,2,5,1,-9,-9,2019,1,1,9,1,45,0,15,1,1,1,0,2.26806813988091,2.26806813988091,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,7,2,1,541.25,0,0,0 +14480,17751,32366,-9,32367,32365,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1021.467835657512,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,7,2,1,541.25,0,0,0 +14480,17751,32367,32365,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,5,7.709595739215889,7.585962323132128,0,2,0,-9,20,0,0,-46.04371721768945,0,0,1,40,2,5,1,2,2,2019,1,2,11,0,18,18,15,1,0,1,0,13.59288028402007,13.59288028402007,0,0,0,0,0,0,0,1,1,0,7.626317121286906,0,0,0,46.34,61.24,5,1,0,0,7,2,1,541.25,0,0,0 +14480,17751,32368,-9,32367,32365,3,1,1,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-902.5049300861599,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,2,1,541.25,0,0,0 +14481,17752,32369,32370,-9,-9,2,1,1,30,1,0,1,0,2,-9,2,1,0,2,8.032242971031321,8.363038695914643,0,2,0,-9,4,0,7,87.51420760576262,0,0,0,23,1,2,2,-9,-9,2019,2,1,28,10,45,45,15,1,10,2,0,8.859908933164006,8.859908933164006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,52.42,3,1,0,0,6,3,0,1015.666666666667,0,0,0 +14481,17752,32370,32369,-9,-9,1,1,0,23,1,0,1,0,1,0,7,2,0,2,0,0,0,2,0,-9,4,0,-7,-109.5470696960532,-9,1,1,30,2,2,1,-9,-9,2019,3,2,26,11,0,0,15,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.75809531825877,3,25.43,55.03,3,1,0,1,6,3,0,1015.666666666667,0,0,0 +14481,17752,32371,-9,32370,32369,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1076.015581892301,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,3,0,1015.666666666667,0,0,0 +14482,17753,32372,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,2,8.022534385400506,8.233986684384345,0,3,0,0,0,-9,0,-1075.773344253035,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,4,36,37,15,1,4,-9,0,12.49073371888208,12.49073371888208,0,0,0,0,0,0,0,0,0,0,0,0,0,3,36.1,39.35,4,4,0,1,8,4,0,745,0,0,0 +14483,17754,32373,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-904.7729788201735,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.64,28.46,2,1,0,1,1,1,0,1481,0,0,0 +14484,17755,32374,32375,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,2,7.308063441791654,7.069813219553446,0,1,0,-9,3,0,-3,111.2149528607965,0,0,0,68,2,2,1,3,-9,2019,1,2,7,0,20,12,15,1,0,1,0,5.526421983969148,5.526421983969148,0,0,0,0,0,0,0,1,1,0,6.939186354928173,0,0,0,52.71,51.84,6,1,0,0,10,3,1,939,0,0,0 +14484,17755,32375,32374,-9,-9,2,1,1,68,1,0,0,0,2,-9,1,1,0,2,6.98875861038585,7.109475713621729,0,1,0,-9,3,0,3,14.70886724978949,0,0,0,65,2,2,1,-9,-9,2019,1,1,7,0,20,60,15,1,0,1,0,5.111038793545355,5.111038793545355,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,7,1,0,0,10,3,1,939,0,0,0 +14485,17756,32376,-9,-9,-9,1,1,0,24,2,0,0,0,1,1,2,1,0,2,8.101858349434755,8.167119026223249,0,3,0,0,0,-9,0,-997.9587467576822,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,1,50,0,15,1,1,-9,0,7.992534642082472,7.992534642082472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,43.15,5,3,0,0,9,4,1,803,0,0,0 +14486,17757,32377,32378,-9,-9,1,1,1,60,1,0,0,0,3,-9,2,1,0,4,7.784754344478318,7.836484127333704,0,1,0,-9,6,0,1,-100.0885268513238,0,0,0,59,2,4,1,3,3,2019,1,2,10,0,36,0,15,1,0,1,0,9.927057500332724,9.927057500332724,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,6,1,0,0,13,5,1,165,0,0,0 +14486,17757,32378,32377,-9,-9,2,1,0,59,1,0,0,0,2,-9,1,1,0,4,9.132936832753609,9.003500662615064,0,1,0,-9,6,0,-1,34.05818788670231,0,0,0,60,3,4,1,3,3,2019,1,1,13,3,32,29,15,1,3,1,0,44.02113239827029,44.02113239827029,0,0,0,0,0,0,0,1,1,0,0,0,2.832771877626921,3,48.28,60.18,6,1,0,0,13,5,1,165,0,0,0 +14486,17758,32379,-9,-9,32380,5,1,0,16,2,0,0,1,3,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1034.944384363437,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,7,1,0,0,13,3,1,630.3333333333334,0,0,0 +14486,17758,32380,-9,32378,32377,3,1,1,30,2,0,0,0,2,-9,1,1,0,4,7.442011623277077,6.977249087448748,0,3,0,0,0,-9,0,-948.0525942598887,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,50,15,1,1,-9,1,3.624510033906073,3.624510033906073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,13,3,1,630.3333333333334,0,0,0 +14486,17758,32381,-9,-9,32380,6,1,1,14,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1030.008219761248,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,3,1,630.3333333333334,0,0,0 +14486,17759,32382,-9,-9,-9,4,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.90501663557152,7.612030608717959,0,3,0,0,0,-9,0,-946.451499254949,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,40,40,15,1,2,-9,0,6.286689422616925,6.286689422616925,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,1,0,0,13,3,1,1181,0,0,0 +14487,17760,32383,-9,-9,-9,1,1,0,49,3,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-932.6054626275337,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,3,0,0,8,1,0,199,0,0,0 +14487,17761,32384,-9,32383,-9,2,1,0,21,2,0,0,1,2,0,7,2,0,5,5.532037634559819,5.779638931197547,0,3,0,0,0,-9,0,-1062.608776809426,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,1,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.58698744307193,3,43.44,61.22,5,3,0,0,8,2,0,446,0,0,0 +14488,17762,32385,32386,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,3,7.930194204892183,7.914758448106867,0,2,0,-9,6,0,-10,-32.9428473208254,0,0,0,58,2,4,1,2,2,2019,1,2,19,7,40,18,15,1,7,1,0,10.48259534186364,10.48259534186364,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.72,50.1,5,1,0,0,12,5,1,1029.666666666667,0,0,0 +14488,17762,32386,32385,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,4,8.783399488084026,8.948421405124396,0,2,0,-9,6,0,10,-95.68401308714628,0,0,0,48,1,3,1,-9,-9,2019,1,1,7,0,37,43,15,1,0,1,0,18.57101419890651,18.57101419890651,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,3,1,0,0,12,5,1,1029.666666666667,0,0,0 +14488,17762,32387,-9,32385,32386,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.5504868270227,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,5,1,1029.666666666667,0,0,0 +14489,17763,32388,32389,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,59,0,-2,75.26010424836841,0,0,0,80,1,4,3,2,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.227198262905326,0,0,0,62.39,56.71,7,1,0,0,8,5,1,405,0,0,0 +14489,17763,32389,32388,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,4,0,9.250544074464418,9.229752759812209,1,0,-9,59,0,2,29.14143267968151,0,0,0,78,2,5,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.369031750723094,8.83531549373437,0,0,60.12,54.8,7,1,0,0,8,5,1,405,0,0,0 +14490,17764,32390,32391,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,4,7.046531599025481,7.13447937526076,0,1,0,-9,2,0,3,28.48581438906814,0,0,0,43,2,5,1,-9,-9,2019,1,1,9,0,45,0,15,1,0,1,0,3.129242657410607,3.129242657410607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,3,3,0,0,4,3,0,525.5,0,0,0 +14490,17764,32391,32390,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,5,7.833804127216201,7.966931246111372,0,1,0,-9,2,0,-3,-154.0584070638033,0,0,0,46,2,4,1,2,2,2019,1,2,7,0,23,20,15,1,0,1,0,12.65782323260888,12.65782323260888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,5,1,0,0,4,3,0,525.5,0,0,0 +14491,17765,32392,32393,-9,-9,2,1,0,62,1,0,0,0,2,-9,6,3,0,1,0,2.956778801095158,3.608331040277566,1,0,-9,10,0,-3,-74.80282728378137,0,0,0,65,3,1,3,3,-9,2019,4,1,3,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.12255368402654,3.118163615445913,73.50291780131117,2,69.90000000000001,22.19,6,1,0,0,5,2,0,349,0,0,0 +14491,17765,32393,32392,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,1,0,3.5324538718297,3.551848313559353,1,0,-9,10,0,3,-15.49100332300113,0,0,0,62,2,1,3,3,3,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,1,0,25.73326929063676,3.587504545137826,0,0,0,1,1,0,3.383993375771511,3.615984001091538,28.31860699279667,2,41.88,22.93,6,1,0,0,5,2,0,349,0,0,0 +14491,17766,32394,-9,32392,32393,3,1,0,27,2,0,0,0,2,-9,2,1,0,4,8.180291745225212,7.932452006355575,0,3,0,0,0,-9,0,-1019.180499910404,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,41,38,15,1,1,-9,1,7.993334705016039,7.993334705016039,0,0,0,0,0,0,0,1,1,0,.2859576910086237,0,12.45642466896181,3,43,45.99,5,1,0,0,5,4,0,1195,0,0,0 +14492,17767,32395,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,2,7.598208482473888,8.152201189783446,0,3,0,0,0,-9,0,-926.9254861524245,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,33,33,15,1,0,-9,0,9.052960720833545,9.052960720833545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.39,28.77,6,4,0,0,8,4,0,417,0,0,0 +14493,17768,32396,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,4,7.974588321258035,8.216223827757466,0,1,0,-9,1,-9,4,99.65076159197017,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,2,14,3,80,0,15,1,3,-9,0,5.445016496660351,5.445016496660351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,4,3,1,332,0,0,0 +14494,17769,32397,32398,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.506112329486227,8.49336331950968,0,2,0,-9,16,0,-1,79.16452052768655,0,0,0,45,1,4,1,-9,-9,2019,1,1,10,0,45,42,15,1,0,1,0,10.26914116377208,10.26914116377208,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.83,43.87,2,1,0,0,4,5,1,466.25,0,0,0 +14494,17769,32398,32397,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.568228298312214,8.968687606806309,0,2,0,-9,22,0,1,-97.10117352328082,0,0,0,44,2,3,1,2,2,2019,1,2,13,2,38,52,15,1,2,1,0,18.69005163201208,18.69005163201208,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.54,60.21,5,1,0,0,4,5,1,466.25,0,0,0 +14494,17769,32399,-9,32398,32397,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.495962173363,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,5,1,466.25,0,0,0 +14494,17769,32400,-9,32398,32397,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1166.756691269152,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,466.25,0,0,0 +14495,17770,32401,-9,32402,32403,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.273923686148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,3,0,887,0,0,0 +14495,17770,32402,32403,-9,-9,1,1,0,28,1,1,1,0,2,-9,2,1,0,3,6.85645045270532,6.954076057090001,0,2,0,-9,6,0,-2,-105.9625385333098,0,1,1,30,2,4,1,2,2,2019,1,2,4,0,10,40,15,1,0,1,0,10.2055615144685,10.2055615144685,0,0,0,0,0,0,0,1,1,0,.0901429960655833,0,0,0,57.33,53.46,6,1,0,0,7,3,0,887,0,0,0 +14495,17770,32403,32402,-9,-9,2,1,1,30,1,1,1,0,2,-9,2,1,0,4,8.035317050065769,8.72055044115425,0,2,0,-9,6,0,2,3.421251765569486,0,0,0,28,2,3,1,-9,-9,2019,1,1,10,0,60,63,15,1,0,1,0,6.75892932420956,6.75892932420956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,4,1,0,0,7,3,0,887,0,0,0 +14496,17771,32404,-9,32406,32407,2,1,0,19,2,0,1,1,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-977.2896310218047,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.03,55.35,6,1,0,0,8,1,0,460,0,0,0 +14496,17772,32405,-9,32406,32407,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-916.4221827595021,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,8,2,0,923,0,0,0 +14496,17772,32406,32407,-9,-9,1,1,0,36,1,0,1,0,3,-9,6,3,0,1,0,0,0,2,0,-9,1,-9,-8,6.073991594732247,-9,0,1,44,3,2,1,3,3,2019,3,4,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.86,20.5,2,1,0,1,8,2,0,923,0,0,0 +14496,17772,32407,32406,-9,-9,4,1,1,44,1,0,1,0,3,-9,2,1,0,2,6.95788952478383,6.798901255357223,0,2,0,-9,1,-9,8,11.74312983319473,-9,0,0,36,3,1,3,-9,-9,2019,2,1,23,8,26,0,15,1,8,3,0,4.512984505448784,4.512984505448784,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.15,37.59,4,5,0,1,8,2,0,923,0,0,0 +14497,17773,32408,32409,-9,-9,2,1,0,73,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,8,0,-4,0,0,0,0,77,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,3,0,0,8,1,1,1461,0,0,0 +14497,17773,32409,32408,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,4,0,0,0,0,73,3,3,3,3,-9,2019,4,2,9,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,3,0,0,8,1,1,1461,0,0,0 +14498,17774,32410,32411,-9,-9,1,1,0,22,1,0,2,0,2,-9,2,1,0,4,7.366850159844272,7.533643814333013,0,2,0,-9,1,-9,-1,-26.94781184928374,-9,1,1,23,2,4,1,-9,-9,2019,1,2,8,0,27,0,15,1,0,1,0,8.496424819345011,8.496424819345011,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,4,3,1,721.75,0,0,0 +14498,17774,32411,32410,-9,-9,2,1,1,23,1,0,2,0,2,-9,2,1,0,4,7.910096604559692,8.169358120006843,0,2,0,-9,1,-9,1,-107.0200053109032,-9,1,0,22,2,4,1,-9,-9,2019,1,1,10,0,45,0,15,1,1,1,0,9.088994687718582,9.088994687718582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,4,3,1,721.75,0,0,0 +14498,17774,32412,-9,32410,32411,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1000.621008261008,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,3,1,721.75,0,0,0 +14498,17774,32413,-9,32410,32411,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1172.839927029522,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,3,1,721.75,0,0,0 +14499,17775,32414,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,4,0,6.395845472243859,6.842760375689794,3,0,0,0,-9,0,-1073.556621741155,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,1.49587272100286,54.55863369639094,1,1,0,3.761285840596746,6.668057114824313,0,0,48.26,50.58,6,1,0,0,10,2,1,1332,0,0,0 +14500,17776,32415,32416,-9,-9,2,1,1,36,1,1,1,0,1,-9,2,1,0,4,8.953688359551732,8.969145386799509,0,2,0,-9,8,0,3,42.54238900450174,0,0,0,33,1,5,1,2,2,2019,1,1,8,0,55,52,15,1,0,1,0,16.51707306933242,16.51707306933242,0,0,0,0,0,0,0,1,1,0,3.504970880219366,0,0,0,54.2,57.49,6,1,0,0,5,4,1,977.6666666666666,0,0,0 +14500,17776,32416,32415,-9,-9,1,1,0,33,1,1,1,0,1,-9,5,1,0,5,0,0,0,2,0,-9,8,0,-3,-77.94719363798337,0,0,1,36,1,4,1,2,2,2019,1,2,12,4,0,42,15,1,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.41,59.77,6,1,0,0,5,4,1,977.6666666666666,0,0,0 +14500,17776,32417,-9,32416,32415,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1064.72081830125,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,977.6666666666666,0,0,0 +14501,17777,32418,-9,-9,-9,1,1,0,32,2,0,0,0,2,-9,1,1,0,3,7.563993749074324,7.575670702009872,0,3,0,0,0,-9,0,-944.2664139626906,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,3,45,12,15,1,3,-9,0,5.697426381585762,5.697426381585762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,43.67,3,1,0,0,5,3,0,1971,0,0,0 +14502,17778,32419,32420,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.182904403247473,8.35828537631774,0,1,0,-9,2,0,-1,113.7947392984604,0,0,0,57,2,4,1,-9,-9,2019,1,1,11,1,44,52,15,1,1,1,0,11.53397481854767,11.53397481854767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,1,1,0,0,12,5,1,1003.5,0,0,0 +14502,17778,32420,32419,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,7.97017377359245,8.200561979601861,0,1,0,-9,2,0,1,-40.63763952083849,0,0,0,56,2,4,1,-9,-9,2019,1,2,7,0,40,40,15,1,0,1,0,9.212177524122199,9.212177524122199,0,0,0,0,0,0,0,0,0,0,2.438728157578415,0,0,0,54,54,6,1,0,0,12,5,1,1003.5,0,0,0 +14503,17779,32421,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,4,0,6.964057107839857,6.754888011215097,3,0,0,0,-9,0,-1012.811128652139,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.78973134867184,7.046421926795097,0,0,57.07,49.39,7,1,0,0,1,2,0,531,0,0,0 +14504,17780,32422,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,5,9.001249407772269,8.964848735388063,0,3,0,0,0,-9,0,-988.9676682380441,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,80,44,15,1,0,-9,0,14.30942293973827,14.30942293973827,0,0,0,0,0,0,0,0,0,0,6.32130702590496,0,0,0,59.43,58.05,2,1,0,0,13,5,1,107,0,0,0 +14505,17781,32423,32424,-9,-9,1,1,0,42,1,0,1,0,1,-9,2,1,0,3,8.405995880882008,8.494476389192059,0,2,0,-9,22,0,0,-46.75480955732299,0,0,1,51,3,3,1,-9,-9,2019,1,2,6,0,0,40,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,3,0,0,2,5,1,1407.5,0,0,0 +14505,17781,32424,32423,-9,-9,2,1,1,51,1,0,1,0,3,-9,1,1,0,3,8.723758726520989,8.515200801607763,0,2,0,-9,22,0,9,-7.056844181481663,0,0,0,42,1,3,1,-9,-9,2019,1,1,11,0,0,20,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,6,3,0,0,2,5,1,1407.5,0,0,0 +14505,17782,32425,-9,32423,32424,3,1,1,22,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-901.8518175876131,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,3,0,0,2,1,1,805,0,0,0 +14505,17783,32426,-9,32423,32424,4,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-975.3741892290833,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,3,0,0,2,5,1,1189,0,0,0 +14506,17784,32427,32428,-9,-9,1,1,1,48,1,0,0,0,2,-9,1,1,0,3,7.930707544095373,7.973823157079583,0,1,0,-9,7,0,-2,151.4517226213913,0,0,0,50,1,3,1,3,-9,2019,1,2,6,0,37,42,15,1,0,1,0,9.675913487082187,9.675913487082187,0,0,0,0,0,0,0,0,0,0,7.005848592705109,0,0,0,57.33,53.46,6,1,0,0,10,4,1,476,0,0,0 +14506,17784,32428,32427,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,3,7.824856397554938,8.144253880100587,6.929381677626252,1,0,-9,7,0,2,-149.1167175811112,0,0,0,48,2,3,1,3,3,2019,1,1,8,0,19,19,15,1,0,1,0,14.07673734028677,14.07673734028677,0,0,0,0,0,0,0,0,0,0,7.910841551381536,0,0,0,57.33,53.46,6,1,0,0,10,4,1,476,0,0,0 +14506,17785,32429,-9,32428,-9,3,1,1,23,2,0,0,0,1,-9,2,1,0,5,7.048533169006739,7.107195207771897,0,3,0,0,0,-9,0,-877.1658326602135,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,8,8,15,1,1,-9,1,14.79442370633127,14.79442370633127,0,0,0,0,0,0,0,0,0,0,9.33485437463022,0,0,0,55.64,46.24,7,1,0,0,10,2,1,352,0,0,0 +14507,17786,32430,32431,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,4.877746045811983,5.145725319775074,1,0,-9,56,0,3,52.42835938374578,0,0,0,72,2,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,124.2104124245966,0,0,0,0,1,1,0,5.012507376682237,4.817401080832039,0,0,36.62,32.31,4,1,0,0,9,2,1,544.5,0,0,0 +14507,17786,32431,32430,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,6.293294049720602,6.35804018440454,1,0,-9,56,0,-3,-15.74694910233086,0,0,0,75,3,2,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.131138586806811,116.0974468511707,1,51.09,38.53,6,1,0,0,9,2,1,544.5,0,0,0 +14508,17787,32432,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,4,8.11002271200055,8.425449905026406,4.794947380053255,2,0,-9,5,0,-1,-12.7098969943101,0,0,1,-9,-9,-9,-9,2,2,2019,1,3,12,1,45,37,15,1,1,-9,0,13.63542392058703,13.63542392058703,0,0,0,0,0,0,0,1,1,0,5.197965915736659,0,0,0,38.6,55.31,6,1,0,0,5,4,0,442.5,0,0,0 +14508,17787,32433,-9,32432,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.941174574296,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,4,0,442.5,0,0,0 +14508,17788,32434,-9,-9,-9,3,1,0,34,2,0,1,0,2,-9,2,1,0,5,8.221693346267443,8.081141778570579,0,2,0,-9,5,0,1,59.3157387397213,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,22,10,44,42,15,1,10,-9,0,9.615348138076097,9.615348138076097,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.53,63.81,5,1,0,0,5,4,0,425,0,0,0 +14509,17789,32435,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,1,1,0,4,7.553080726094255,7.724230937806232,0,3,0,0,0,-9,0,-1031.641477181439,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,25,25,15,1,0,-9,0,10.20161150628691,10.20161150628691,0,0,0,0,0,0,0,0,0,0,5.020260892445191,0,0,0,58.15,52.91,6,1,0,0,12,3,1,293,0,0,0 +14510,17790,32436,-9,-9,-9,1,1,0,34,2,0,0,0,2,-9,1,1,0,4,8.269782950181254,8.367875182059089,0,3,0,0,0,-9,0,-979.5592090372451,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,30,12,15,1,2,-9,0,17.9080465470095,17.9080465470095,0,0,0,0,0,0,0,0,0,0,1.756700902166383,0,0,0,43.35,39.18,6,1,0,0,5,4,0,131,0,0,0 +14511,17791,32437,32438,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,6.910219202919094,6.353602279269614,1,0,-9,10,0,-3,-24.71048123892272,0,0,0,67,2,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.611672643842096,0,0,59.58,42.8,7,1,0,0,7,2,1,741.5,0,0,0 +14511,17791,32438,32437,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,10,0,3,-49.1692830964707,0,0,0,64,2,3,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.847562585733398,0,0,0,54.79,55.86,6,1,0,0,7,2,1,741.5,0,0,0 +14512,17792,32439,32440,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.416300157104395,8.279328957785372,0,1,0,-9,6,0,4,-75.72066007420594,0,0,0,49,3,4,1,3,3,2019,1,1,5,0,24,24,15,1,0,1,0,21.21751663024195,21.21751663024195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,1,1,0,0,4,5,1,1350,0,0,0 +14512,17792,32440,32439,-9,-9,1,1,1,49,1,0,0,0,3,-9,1,1,0,4,9.055231476862065,8.752365452283509,0,1,0,-9,6,0,-4,33.18761481633672,0,0,0,53,2,3,1,2,2,2019,1,2,15,3,55,50,15,1,3,1,0,17.61939471689003,17.61939471689003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.74,60.45,5,1,0,0,4,5,1,1350,0,0,0 +14512,17793,32441,-9,32439,32440,3,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.657387338213287,8.636786446643065,0,3,0,0,0,-9,0,-925.530948538865,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,38,38,15,1,0,-9,1,16.07619372411927,16.07619372411927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,4,1,1537,0,0,0 +14513,17794,32442,32443,-9,-9,2,1,1,35,1,0,2,0,1,-9,2,1,0,3,8.937483220313561,8.81642244342461,0,2,0,-9,16,0,0,-.2151942797597759,0,0,0,35,1,5,1,2,2,2019,1,1,22,9,48,48,15,1,9,1,0,17.5197934372259,17.5197934372259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,57.36,4,1,0,0,7,5,1,907.6666666666666,0,0,0 +14513,17794,32443,32442,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,5,8.254837131369113,8.28204652921808,0,2,0,-9,16,0,0,1.663437472339854,0,0,1,35,1,3,1,2,2,2019,1,2,9,0,40,40,15,1,0,1,0,11.38524714628975,11.38524714628975,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,7,5,1,907.6666666666666,0,0,0 +14513,17794,32444,-9,32443,32442,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.432598590418,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,5,1,907.6666666666666,0,0,0 +14514,17795,32445,32450,-9,-9,2,1,0,32,1,1,4,0,2,-9,2,1,0,3,5.854714235709718,6.161304789504626,0,2,0,-9,11,0,0,131.7251795472313,0,0,1,41,2,3,1,2,2,2019,1,1,12,0,6,0,15,1,0,1,0,6.052322132508532,6.052322132508532,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.68,55.46,4,1,0,0,7,2,0,410.1666666666667,0,0,0 +14514,17795,32446,-9,32445,32450,4,1,0,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.3313193944621,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,410.1666666666667,0,0,0 +14514,17795,32447,-9,32445,32450,5,1,0,5,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.9984892118955,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,410.1666666666667,0,0,0 +14514,17795,32448,-9,32445,32450,3,1,0,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.294233861384,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,2,0,410.1666666666667,0,0,0 +14514,17795,32449,-9,32445,32450,6,1,0,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.158800409103,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,2,0,410.1666666666667,0,0,0 +14514,17795,32450,32445,-9,-9,1,1,1,41,1,1,4,0,2,-9,2,1,0,3,7.457413470522337,7.305700152204253,0,2,0,-9,11,0,9,61.54374604855176,0,0,0,32,2,3,1,2,2,2019,1,2,7,0,30,35,15,1,0,1,0,6.599202210547213,6.599202210547213,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.79,51.64,7,1,0,0,7,2,0,410.1666666666667,0,0,0 +14515,17796,32451,-9,-9,-9,1,1,0,91,3,0,0,0,3,-9,4,3,0,4,0,7.706087690373778,7.434332273897632,3,0,0,0,-9,0,-860.0355555571341,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,.2678749977336539,0,0,0,0,34.53986477802842,1,1,0,0,7.62393893852421,0,0,62.7,27.53,7,1,0,0,10,3,1,1862,0,0,0 +14516,17797,32452,32453,-9,-9,3,1,1,50,1,0,0,0,3,-9,2,1,0,3,8.447823057838226,8.633513619517377,0,1,0,-9,3,0,-6,-1.612421095544113,0,0,0,56,1,4,1,-9,-9,2019,1,1,12,0,40,36,15,1,0,1,0,9.719321439706937,9.719321439706937,0,0,0,0,0,0,0,1,1,0,0,0,17.59763649181029,3,46.08,57.2,3,1,0,0,11,5,1,634.5,0,0,0 +14516,17797,32453,32452,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,4,8.504755237472502,8.77400661042387,0,1,0,-9,3,0,6,-20.81757126685756,0,0,0,50,3,3,1,2,2,2019,1,3,8,0,12,18,15,1,0,1,0,56.76476457631387,56.76476457631387,0,0,0,0,0,0,0,1,1,0,7.020969847044766,0,0,0,57.16,56.15,6,1,0,0,11,5,1,634.5,0,0,0 +14516,17798,32454,-9,32453,32452,5,1,1,26,2,0,0,0,1,-9,1,1,0,4,7.559618709380654,7.780361549817464,0,3,0,-9,0,-9,0,-1001.841238783163,-9,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,40,0,15,1,1,-9,1,7.232018426223301,7.232018426223301,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,11,3,1,113,0,0,0 +14516,17799,32455,-9,-9,-9,4,1,0,46,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-995.8103878396781,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,11,1,1,540,0,0,0 +14516,17800,32456,-9,-9,-9,2,1,1,23,2,0,0,0,3,1,8,3,1,4,0,0,0,3,0,0,0,-9,0,-849.7469016414226,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,5,1,0,0,11,1,1,273,0,0,0 +14517,17801,32457,32458,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,6.374549159171387,7.043657262655781,1,0,-9,42,0,-5,139.8008415546527,0,0,0,74,2,4,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.720548869423697,6.573977835116626,0,0,57.16,56.15,6,1,0,0,6,3,1,752,0,0,0 +14517,17801,32458,32457,-9,-9,1,1,1,74,1,0,0,0,2,-9,2,1,0,4,4.960991079728515,7.100076445327836,7.214662968701822,1,0,-9,42,0,5,72.89275282597914,0,0,0,69,1,4,3,-9,-9,2019,2,2,6,0,4,8,15,1,0,4,0,4.302930728617201,4.302930728617201,0,0,0,0,0,0,0,1,1,0,4.498407755006025,6.896366685335614,0,0,62.4,48.33,7,1,0,0,6,3,1,752,0,0,0 +14518,17802,32459,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,3,3,0,4,7.604383331679705,7.701101503957726,0,3,0,0,0,-9,0,-950.5558142749596,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,40,38,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,4,1,0,4,3,0,281,0,0,0 +14519,17803,32460,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1096.280976995335,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.42,54.81,7,1,0,0,10,1,0,819,0,0,0 +14519,17804,32461,-9,32460,-9,2,1,0,45,2,0,0,0,2,-9,2,1,0,3,7.560293306398822,7.552078844242616,0,3,0,0,0,-9,0,-995.7111497755119,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,38,15,1,0,-9,1,6.893289509943013,6.893289509943013,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,35.78,4,1,0,0,10,3,0,952,0,0,0 +14520,17805,32462,32463,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-8,86.53086336174196,0,0,0,82,1,3,3,-9,2,2019,4,1,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.687304258587921,0,124.4745277237221,1,47.99,42.49,4,1,0,0,7,4,1,567.5,0,0,0 +14520,17805,32463,32462,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,3,0,8.749416882023247,8.895464210512456,1,0,-9,49,0,8,13.66255880111162,0,0,0,74,1,3,3,1,1,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.557048990765868,0,0,54,45,6,1,0,0,7,4,1,567.5,0,0,0 +14521,17806,32464,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,2,0,6.549383070605324,6.548354105882312,3,0,0,0,-9,0,-1043.379134050205,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.386624460041666,0,0,56.77,28.28,5,1,0,0,11,2,1,355,0,0,0 +14522,17807,32465,32466,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,4,8.48730977410165,8.332983939457371,0,1,0,-9,2,0,2,31.1387508934275,0,1,0,27,1,4,1,-9,-9,2019,1,1,10,0,48,35,15,1,0,1,0,9.012539597301849,9.012539597301849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,7,1,0,0,12,5,1,274,0,0,0 +14522,17807,32466,32465,-9,-9,1,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.51937319232219,8.552439458854513,0,1,0,-9,2,0,-2,-47.04086726064386,0,1,1,29,2,4,1,2,1,2019,1,2,8,0,60,70,15,1,0,1,0,7.607211963627172,7.607211963627172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,12,5,1,274,0,0,0 +14523,17808,32467,32468,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,3,7.267462414001746,7.414134239546935,0,1,0,-9,10,0,0,99.8294037506907,0,0,0,48,3,3,1,-9,-9,2019,1,1,10,0,0,12,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,4,1,0,0,4,4,0,404,0,0,0 +14523,17808,32468,32467,-9,-9,1,1,1,48,1,0,0,0,3,-9,2,1,0,3,8.093902225385362,7.995178017221146,0,1,0,-9,28,0,0,-27.57141430654456,0,0,0,48,2,3,1,3,2,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.79,50.48,5,1,0,0,4,4,0,404,0,0,0 +14523,17809,32469,-9,32467,32468,3,1,0,21,2,0,0,0,2,1,2,1,0,4,7.685092215487797,7.494373780063065,0,3,0,0,0,-9,0,-1042.013861693465,-9,1,1,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,5,1,0,0,4,3,0,951,0,0,0 +14524,17810,32470,32471,-9,-9,2,1,0,36,1,1,1,0,2,-9,2,1,0,4,7.9452088555409,7.707004202983954,0,2,0,-9,1,-9,-2,27.54702982924821,-9,0,1,38,2,4,1,-9,-9,2019,1,1,5,0,24,0,15,1,0,1,0,10.31953226171512,10.31953226171512,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,2,4,1,567.3333333333334,0,0,0 +14524,17810,32471,32470,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,4,8.100995305848054,8.063448290555556,0,2,0,-9,1,-9,2,-114.396152904766,-9,0,0,36,2,4,1,-9,-9,2019,1,2,12,2,55,0,15,1,2,1,0,8.138030894271015,8.138030894271015,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,2,4,1,567.3333333333334,0,0,0 +14524,17810,32472,-9,32470,32471,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-802.5104845316556,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,2,4,1,567.3333333333334,0,0,0 +14525,17811,32473,-9,-9,-9,1,1,1,54,3,0,0,0,3,-9,1,1,0,4,8.651662748562529,8.357526833566878,0,3,0,0,0,-9,0,-969.0283214819112,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,32,30,15,1,1,-9,0,16.06148491963079,16.06148491963079,0,0,0,0,0,0,0,0,0,0,6.263962238796602,0,0,0,53,54,6,1,0,0,13,5,1,411,0,0,0 +14526,17812,32474,-9,-9,-9,1,1,1,45,2,0,0,0,1,-9,2,1,0,4,8.577363767281593,8.204775591551305,0,3,0,0,0,-9,0,-1037.966449188156,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,2,65,75,15,1,2,-9,0,6.402242501541918,6.402242501541918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,6,1,0,0,9,4,1,343,0,0,0 +14527,17813,32475,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1129.421586355953,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,7.153706626700303,0,0,0,1,1,0,0,0,9.923522345413087,3,62.18,36.18,7,1,0,0,9,1,0,281,0,0,0 +14527,17814,32476,-9,32475,-9,2,1,0,46,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-904.3682411661518,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.08,33.57,1,1,0,1,9,1,0,394,0,0,0 +14528,17815,32477,32478,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,5,8.631988310895524,9.045041520216577,7.825627397113948,1,0,-9,39,0,4,33.31982346234016,0,0,0,58,1,4,1,2,2,2019,1,2,11,0,45,47,15,1,0,1,0,14.45669317665748,14.45669317665748,0,0,0,0,0,0,0,1,1,0,0,8.18190076346832,1.133629797342094,3,54.69,57.47,6,1,0,0,5,5,1,519.5,0,0,0 +14528,17815,32478,32477,-9,32479,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,8.983040326896397,8.938177498268786,0,1,0,-9,39,0,-4,-33.36451992752541,0,0,0,62,1,5,1,1,1,2019,1,1,8,0,55,50,15,1,0,1,0,21.65083833342442,21.65083833342442,0,0,0,0,0,0,0,1,1,0,0,0,4.940904469548856,3,58.33,47.36,2,1,0,0,5,5,1,519.5,0,0,0 +14528,17816,32479,-9,-9,-9,3,1,1,86,3,0,0,0,1,-9,4,3,0,3,0,7.268516439108901,7.535862957913859,3,0,0,0,-9,0,-938.622375742845,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.660747256910347,7.307928315128088,0,0,61.61,37.79,6,1,0,0,5,3,1,325,0,0,0 +14529,17817,32480,32481,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,-2,0,-9,0,0,81,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,3,0,0,7,1,1,1032,0,0,0 +14529,17817,32481,32480,-9,-9,1,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,1,-9,2,0,-9,0,0,79,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,70.56,37.83,7,3,0,0,7,1,1,1032,0,0,0 +14530,17818,32482,32483,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,6.846321279345385,7.431384275710951,0,1,0,-9,8,0,-2,20.83939829571312,0,0,0,53,2,4,1,3,3,2019,1,1,17,6,15,15,15,1,6,1,0,9.212188851160708,9.212188851160708,0,0,0,0,0,0,0,0,0,0,0,0,13.33206004716648,3,47.74,53.75,6,1,0,0,6,5,1,298,0,0,0 +14530,17818,32483,32482,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,9.126426693288032,8.768741858808092,0,1,0,-9,8,0,2,66.8149010777622,0,0,0,51,2,4,1,3,3,2019,1,2,11,0,45,44,15,1,0,1,0,21.60028159345684,21.60028159345684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.53,56.37,6,1,0,0,6,5,1,298,0,0,0 +14530,17819,32484,-9,32482,32483,3,1,0,21,2,0,0,0,1,1,2,1,0,5,7.511641008039777,7.555735000850968,0,3,0,0,0,-9,0,-975.0165589362682,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,0,15,1,0,-9,1,5.869804338231812,5.869804338231812,0,0,0,0,0,0,0,0,0,0,0,0,1.907099398493026,3,46.06,60.24,6,1,0,0,6,3,1,166,0,0,0 +14531,17820,32485,32486,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,6.185389816358771,6.251018644368729,1,0,-9,7,0,-1,-36.66007676861209,0,0,0,73,3,3,1,2,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.650641617550772,6.350125688418284,0,0,57.16,56.15,6,1,0,0,11,2,1,401.5,0,0,0 +14531,17820,32486,32485,-9,-9,1,1,1,73,1,0,0,0,3,-9,1,1,0,3,0,0,0,1,0,-9,7,0,1,-60.82217741378019,0,0,0,72,2,4,3,3,3,2019,2,2,9,0,66,50,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.702358370145555,0,0,0,53,47,6,1,0,0,11,2,1,401.5,0,0,0 +14532,17821,32487,32490,-9,-9,2,1,1,44,1,0,2,0,1,-9,2,1,0,4,8.448089223048393,8.676356706696239,0,2,0,-9,7,0,0,-13.37889274537955,0,0,0,44,1,5,1,2,2,2019,1,1,10,1,45,40,15,1,1,1,0,15.23838249477907,15.23838249477907,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,2,0,0,5,4,1,368.75,0,0,0 +14532,17821,32488,-9,32490,32487,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.6258585125138,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,5,4,1,368.75,0,0,0 +14532,17821,32489,-9,32490,32487,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-997.7261825547632,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,2,0,0,5,4,1,368.75,0,0,0 +14532,17821,32490,32487,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,5,8.22841527300292,7.75996917245549,0,2,0,-9,7,0,0,-59.14392122855838,0,0,1,44,1,4,1,2,2,2019,1,2,6,0,34,50,15,1,0,1,0,10.08051557041912,10.08051557041912,0,0,0,0,0,0,0,1,1,0,1.153459398952372,0,0,0,51.39,59.18,6,1,0,0,5,4,1,368.75,0,0,0 +14533,17822,32491,-9,32492,32493,3,1,1,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.806184647312,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,12,5,1,479.75,0,0,0 +14533,17822,32492,32493,-9,-9,1,1,0,38,1,1,2,0,1,-9,2,1,0,4,7.863773016901717,7.759570596294084,0,2,0,-9,13,0,-3,60.48676757101046,0,0,1,41,1,4,1,2,2,2019,1,2,9,0,22,20,15,1,0,1,0,16.94068125380629,16.94068125380629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,6,1,0,0,12,5,1,479.75,0,0,0 +14533,17822,32493,32492,-9,-9,2,1,1,41,1,1,2,0,1,-9,2,1,0,4,9.061861145606944,9.177909954309042,0,2,0,-9,13,0,3,19.63159458779388,0,0,0,38,1,4,1,2,1,2019,1,1,9,0,37,39,15,1,0,1,0,25.83606777903424,25.83606777903424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,4,1,0,0,12,5,1,479.75,0,0,0 +14533,17822,32494,-9,32492,32493,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.4857937246294,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,12,5,1,479.75,0,0,0 +14534,17823,32495,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,4,3,0,4,0,8.191741007474242,8.327447735879751,3,0,0,0,-9,0,-976.141896851747,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.545673171402016,8.847152470405543,0,0,46.44,59.62,5,1,0,0,4,5,1,608,0,0,0 +14535,17824,32496,32498,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,4,8.95953185248001,8.853878509489306,0,2,0,-9,6,0,0,-24.21643295440195,0,0,1,39,2,4,1,2,2,2019,1,2,6,0,60,45,15,1,0,1,0,18.16481479406146,18.16481479406146,0,0,0,0,0,0,0,1,1,0,6.681438656284461,0,0,0,61.27,46.03,6,1,0,0,4,5,1,1510,0,0,0 +14535,17824,32497,-9,32496,32498,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.0032980392371,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,5,1,1510,0,0,0 +14535,17824,32498,32496,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,4,9.607445048689563,9.609321901534774,0,2,0,-9,6,0,0,17.45906762075148,0,0,0,39,2,4,1,2,2,2019,1,1,15,4,80,80,15,1,4,1,0,24.35151320367887,24.35151320367887,0,0,0,0,0,0,0,1,1,0,1.255942283907505,0,0,0,49.35,59.64,5,1,0,1,4,5,1,1510,0,0,0 +14536,17825,32499,-9,32501,32500,3,1,1,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.2346451074312,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,6,5,1,789.3333333333334,0,0,0 +14536,17825,32500,32501,-9,-9,2,1,1,51,1,0,1,0,2,-9,2,1,0,3,9.212174583965671,9.254376497263349,0,2,0,-9,10,0,7,-82.01588871495599,0,0,0,44,2,3,1,-9,-9,2019,1,1,12,1,75,70,15,1,1,1,0,13.73214497461544,13.73214497461544,0,0,0,0,0,0,0,0,0,0,1.742007381249914,0,0,0,51.41,56.15,5,1,0,0,6,5,1,789.3333333333334,0,0,0 +14536,17825,32501,32500,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,3,7.302776353271091,7.27478271510483,0,2,0,-9,10,0,-7,20.11320492157831,0,0,1,51,2,3,1,3,2,2019,1,2,12,1,0,19,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.75,53.7,5,1,0,0,6,5,1,789.3333333333334,0,0,0 +14537,17826,32502,32504,-9,-9,1,1,1,50,1,0,1,0,2,-9,1,1,0,2,9.601974112762134,9.98829401080641,0,2,0,-9,9,0,3,45.32180005493822,0,0,0,47,1,4,1,2,3,2019,1,2,11,0,50,50,15,1,0,1,0,38.56722311208225,38.56722311208225,0,0,0,0,0,0,0,1,1,0,7.457020881054747,0,9.416895081052717,3,58.56,46.45,7,1,0,0,12,5,1,822.6666666666666,0,0,0 +14537,17826,32503,-9,32504,32502,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.2772098410695,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,12,5,1,822.6666666666666,0,0,0 +14537,17826,32504,32502,-9,-9,2,1,0,47,1,0,1,0,1,-9,2,1,0,4,7.751534411338659,7.841682971332094,0,2,0,-9,9,0,-3,76.45847269499272,0,0,0,50,2,2,1,2,2,2019,1,1,20,8,38,35,15,1,8,1,0,7.511430485841709,7.511430485841709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.85,56.63,5,1,0,0,12,5,1,822.6666666666666,0,0,0 +14538,17827,32505,32506,-9,-9,2,1,0,47,1,0,0,0,1,-9,1,1,0,4,1.340684368798279,1.31248539502092,0,1,0,-9,8,0,6,-229.8607113069529,0,0,0,41,1,4,1,2,2,2019,1,1,8,1,20,25,15,1,1,1,0,.0189131802156908,.0189131802156908,0,0,0,0,0,0,0,0,0,0,.6786401602108842,0,0,0,39.68,58.52,5,1,0,0,8,5,0,653.5,0,0,0 +14538,17827,32506,32505,-9,-9,1,1,1,41,1,0,0,0,1,-9,2,1,0,4,9.412988980843728,9.577427326099247,5.307541790688789,1,0,-9,8,0,-6,91.78255498025975,-9,0,0,47,1,4,1,2,2,2019,1,2,8,2,80,0,15,1,2,1,0,15.19044282939266,15.19044282939266,0,0,0,0,0,0,0,0,0,0,5.380711816329816,5.280950660097745,0,0,38.04,56.72,3,1,0,0,8,5,0,653.5,0,0,0 +14539,17828,32507,32510,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.354790297384133,8.606920611226487,0,2,0,-9,19,0,3,26.0469297965481,0,0,0,42,1,4,1,3,3,2019,1,2,9,0,28,25,15,1,0,1,0,14.95550749327933,14.95550749327933,0,0,0,0,0,0,0,1,1,0,3.33808955780106,0,0,0,57.16,56.15,6,1,0,0,7,5,1,323.25,0,0,0 +14539,17828,32508,-9,32507,32510,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.542642006881,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,323.25,0,0,0 +14539,17828,32509,-9,32507,32510,3,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-839.4923559058689,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,7,5,1,323.25,0,0,0 +14539,17828,32510,32507,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,4,9.218419282560442,9.168994584645677,0,2,0,-9,19,0,-3,55.62623654498054,0,0,0,45,1,4,1,2,3,2019,1,1,8,0,40,40,15,1,0,1,0,21.91208833083704,21.91208833083704,0,0,0,0,0,0,0,1,1,0,1.105106539597715,0,0,0,54.2,57.49,6,1,0,0,7,5,1,323.25,0,0,0 +14540,17829,32511,32512,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,55,0,-3,0,0,0,0,76,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,19.46992862461433,1,50.69,52.35,7,1,0,0,13,1,1,2915.5,0,0,0 +14540,17829,32512,32511,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,3,0,0,0,0,73,3,5,3,3,-9,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.72505072511146,0,0,0,53,46,6,1,0,0,13,1,1,2915.5,0,0,0 +14541,17830,32513,32514,-9,-9,1,1,0,39,1,0,1,0,2,-9,2,1,0,1,7.765750130848734,7.70651015841835,0,2,0,-9,9,0,-2,-29.19566666497661,0,0,1,41,2,1,1,2,2,2019,1,2,35,12,38,26,15,1,12,1,0,6.633636983500795,6.633636983500795,0,0,0,0,0,0,0,1,1,0,0,0,8.218162289903585,3,16.11,37.76,3,1,0,1,4,4,0,695,0,0,0 +14541,17830,32514,32513,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,1,8.590862277937486,8.497795967628068,0,2,0,-9,9,0,2,-17.53369935496326,0,0,0,39,2,1,1,2,1,2019,1,1,12,3,38,43,15,1,3,1,0,12.6756171403876,12.6756171403876,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,19.45,6,1,0,1,4,4,0,695,0,0,0 +14541,17830,32515,-9,32513,32514,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.824491880901,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,0,695,0,0,0 +14542,17831,32516,-9,-9,-9,1,1,0,34,2,0,1,0,2,-9,2,1,0,1,6.990902082511976,7.240532325814392,0,4,0,-9,0,-9,0,-1118.568556165864,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,18,0,15,1,1,-9,0,8.602678166513256,8.602678166513256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.56,46.74,3,1,0,1,5,2,0,642,0,0,0 +14543,17832,32517,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-919.7080439320463,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.626324188112996,3,57.06,57.76,7,1,0,0,9,1,0,566,0,0,0 +14544,17833,32518,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,2,0,5.927451373056536,5.834392762911534,3,0,0,0,-9,0,-895.8120656082826,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,27,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.329745694915403,0,0,51.66,28.08,1,1,0,0,4,2,1,608,0,0,0 +14545,17834,32519,-9,32520,32521,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-969.4520760435763,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,1,1,880.6666666666666,0,0,0 +14545,17834,32520,32521,-9,-9,1,1,0,33,1,1,1,0,1,-9,5,1,0,4,0,0,0,2,0,-9,6,0,1,0,0,0,1,32,1,3,1,-9,2,2019,1,2,6,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.146626992546067,0,0,0,51.83,57.2,7,1,0,0,6,1,1,880.6666666666666,0,0,0 +14545,17834,32521,32520,-9,-9,2,1,1,32,1,1,1,0,1,-9,2,1,0,3,0,0,0,2,0,-9,6,0,-1,0,0,0,0,33,1,4,1,-9,-9,2019,1,1,11,0,0,39,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.997083404694766,0,0,0,45.18,54.77,6,1,0,0,6,1,1,880.6666666666666,0,0,0 +14546,17835,32522,32525,-9,-9,2,1,0,37,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-8,0,0,0,1,45,3,4,3,3,3,2019,4,1,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,1,0,575.5,0,0,0 +14546,17835,32523,-9,32522,32525,6,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.328599339365,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,0,575.5,0,0,0 +14546,17835,32524,-9,32522,32525,4,1,0,11,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.978964418182,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,0,575.5,0,0,0 +14546,17835,32525,32522,-9,-9,1,1,1,45,1,0,4,0,3,-9,3,3,0,4,0,0,0,2,0,-9,20,0,8,0,0,0,0,37,3,4,3,3,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,1,0,8,1,0,575.5,0,0,0 +14546,17835,32526,-9,32522,32525,5,1,0,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.7570069290319,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,1,0,575.5,0,0,0 +14546,17835,32527,-9,32522,32525,3,1,0,17,2,0,4,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.318056697071,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,8,1,0,575.5,0,0,0 +14547,17836,32528,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,2,1,0,4,7.410181738249903,8.222837500544484,7.358367804472179,3,0,0,0,-9,0,-891.8416258167227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,22,15,1,0,-9,0,7.317946297758972,7.317946297758972,0,0,0,0,0,0,0,1,1,0,6.381545646742319,7.866113059665259,0,0,54.2,57.49,6,1,0,0,7,4,1,824,0,0,0 +14548,17837,32529,32530,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,5.484837094336031,5.769080113924533,1,0,-9,46,0,-4,-126.7666398519305,0,0,0,76,3,2,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,13.55478214317024,0,0,0,0,1,1,0,4.382147542931787,5.984857518517622,0,0,61.28,28.21,6,1,0,0,9,2,1,685,0,0,0 +14548,17837,32530,32529,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,6.349037252648113,6.055947560369541,1,0,-9,46,0,4,35.22152390352494,0,0,0,72,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.191134079850927,6.246523741940819,0,0,48,36,5,1,0,0,9,2,1,685,0,0,0 +14549,17838,32531,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,3,0,6.112961581601704,6.51659996248335,3,0,0,0,-9,0,-932.6841476953118,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,9.557125192201902,0,2.156434685289991,0,1,1,0,3.751118387152674,6.391665599183667,0,0,54.03,33.7,6,1,0,0,9,2,1,220,0,0,0 +14549,17839,32532,-9,-9,32531,2,1,0,60,3,0,0,0,2,-9,2,1,0,4,7.026151506598705,7.44026410425068,5.799569513168503,3,0,0,0,-9,0,-883.9524086013525,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,15,17,15,1,0,-9,1,8.758931714763817,8.758931714763817,0,0,0,0,0,0,0,1,1,0,3.234527755542792,5.996137785853829,4.540865952006111,3,51.24,58.84,6,1,0,0,9,3,1,2052,0,0,0 +14550,17840,32533,32534,-9,-9,3,1,1,45,1,0,2,0,1,-9,2,1,0,2,8.311366560204782,8.702743221728092,0,2,0,-9,7,0,5,-52.05751899324638,0,0,0,40,1,3,3,-9,-9,2019,2,1,12,2,41,45,15,1,2,3,0,11.05479703719855,11.05479703719855,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.19,46.58,6,4,0,0,8,3,0,583,0,0,0 +14550,17840,32534,32533,-9,-9,1,1,0,40,1,0,2,0,1,1,3,3,0,3,0,0,0,2,0,-9,7,0,-5,47.00789418707269,-9,0,1,45,1,2,1,1,1,2019,3,3,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,5,4,1,0,8,3,0,583,0,0,0 +14550,17840,32535,-9,32534,32533,2,1,1,11,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-929.3683660744578,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,4,0,0,8,3,0,583,0,0,0 +14550,17840,32536,-9,32534,32533,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-829.7124175244664,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,3,0,583,0,0,0 +14551,17841,32537,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1062.167918277643,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,23,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.38,46.16,2,4,1,1,8,1,0,442,0,0,0 +14552,17842,32538,32539,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,6.278049752283864,5.874737000130042,1,0,-9,48,0,0,8.054795755139256,0,0,0,69,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.112277641639569,0,0,57.33,53.46,6,1,0,0,2,2,1,467.5,0,0,0 +14552,17842,32539,32538,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,48,0,0,50.21128971062929,0,0,0,69,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,1,0,0,2,2,1,467.5,0,0,0 +14553,17843,32540,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1005.827131601622,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,65.95,23.91,6,1,0,0,5,1,0,609,0,0,0 +14554,17844,32541,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,4,7.741546765562983,7.291963877780792,0,3,0,0,0,-9,0,-1125.584780451402,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,22,22,15,1,0,-9,0,8.874140432899367,8.874140432899367,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.34,54.26,6,1,0,1,2,3,0,112,0,0,0 +14554,17845,32542,-9,-9,-9,2,1,1,45,2,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-1025.182855336208,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.93,58.41,5,1,1,1,2,1,0,1130,0,0,0 +14555,17846,32543,32544,-9,-9,1,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.168988853437575,7.83226033132515,0,1,0,-9,7,0,6,90.12253895822164,0,0,0,50,1,4,1,3,3,2019,1,2,12,0,38,38,15,1,0,1,0,8.794524400476931,8.794524400476931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,1830,0,0,0 +14555,17846,32544,32543,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,4,8.798993626396035,8.550046943242874,0,1,0,-9,7,0,-6,-28.55856268423315,0,0,0,56,2,4,1,3,3,2019,1,1,10,0,38,38,15,1,0,1,0,16.78174390592741,16.78174390592741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.11,45.63,6,1,0,0,13,5,1,1830,0,0,0 +14555,17847,32545,-9,32544,32543,3,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.502970902615997,7.530233987897367,0,3,0,0,0,-9,0,-1066.12063759701,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,42,43,15,1,0,-9,1,4.715018444681825,4.715018444681825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,6,1,0,0,13,3,1,184,0,0,0 +14556,17848,32546,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,2,0,8.191123504543356,7.793367543398368,3,0,0,0,-9,0,-1031.037624702635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.226032222882361,7.884450839123132,0,0,44.77,35.24,5,1,0,0,2,4,1,2365,0,0,0 +14557,17849,32547,-9,32549,32551,4,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.634728485243,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,6,4,1,771.2,0,0,0 +14557,17849,32548,-9,32549,32551,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.9202684104055,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,6,4,1,771.2,0,0,0 +14557,17849,32549,32551,-9,-9,1,1,0,35,1,1,3,0,2,-9,2,1,0,5,8.466380882927,8.794647863495126,0,2,0,-9,17,0,-6,-32.38432338748446,0,0,1,41,2,5,1,3,2,2019,1,2,10,0,38,41,15,1,0,1,0,15.13498063191322,15.13498063191322,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,4,0,0,6,4,1,771.2,0,0,0 +14557,17849,32550,-9,32549,32551,3,1,1,14,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.2849844120874,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,6,4,1,771.2,0,0,0 +14557,17849,32551,32549,-9,-9,2,1,1,41,1,1,3,0,2,-9,2,1,0,5,7.74286554337979,8.070668828896558,0,2,0,-9,7,0,6,-123.9824529519991,0,0,0,35,2,5,1,-9,-9,2019,1,1,8,0,39,39,15,1,0,1,0,9.65097041730121,9.65097041730121,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,6,4,1,771.2,0,0,0 +14558,17850,32552,-9,32553,32555,7,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.9064331033752,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,9,5,1,1328.25,0,0,0 +14558,17850,32553,32555,-9,-9,1,1,0,48,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,30,0,-14,252.2507384208485,0,0,0,62,2,2,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2759040681273,0,0,0,42.58,54.86,6,1,0,0,9,5,1,1328.25,0,0,0 +14558,17850,32554,-9,32553,32555,6,1,1,17,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1007.4894358828,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,5,1,0,0,9,5,1,1328.25,0,0,0 +14558,17850,32555,32553,-9,-9,2,1,1,62,1,0,2,0,2,-9,2,1,0,2,9.495729950217056,9.325380021816311,7.056750371237135,2,0,-9,30,0,14,109.9492312467444,0,0,0,48,2,3,3,2,2,2019,2,1,8,0,55,60,15,1,0,3,0,23.51794249934267,23.51794249934267,0,0,0,0,0,0,0,0,0,0,0,7.359541308116571,0,0,56.58,47.39,5,1,0,0,9,5,1,1328.25,0,0,0 +14558,17851,32556,-9,32553,32555,3,1,1,24,2,0,2,0,1,-9,2,1,0,4,8.119206936409451,8.600354967235392,0,3,0,0,0,-9,0,-846.3055290895066,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,0,15,1,0,-9,1,12.10406667001258,12.10406667001258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,4,1,367,0,0,0 +14558,17852,32557,-9,32553,32555,4,1,0,21,2,0,2,0,2,-9,2,1,0,4,7.224460503795919,7.526301246606887,0,3,0,0,0,-9,0,-920.1003423641532,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,0,35,0,15,1,0,-9,1,5.324515527274708,5.324515527274708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,7,1,0,0,9,3,1,571,0,0,0 +14558,17853,32558,-9,32553,32555,5,1,1,19,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1121.950465765684,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,9,1,1,144,0,0,0 +14559,17854,32559,-9,-9,-9,1,1,1,73,3,0,0,0,2,-9,4,3,0,3,0,8.176431410070473,8.872123960559088,3,0,-9,0,1,0,-1111.890050889898,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.279142282222663,0,0,57.34,47.92,6,1,0,0,12,4,1,832,0,0,0 +14560,17855,32560,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,5,0,7.215103270573258,7.111879401952659,3,0,0,0,-9,0,-882.1828232985318,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.809491801750101,7.224296316701335,0,0,61.01,53.18,7,1,0,0,6,3,1,307,0,0,0 +14561,17856,32561,32563,-9,-9,2,1,1,41,1,0,2,0,3,-9,2,1,0,4,8.901377162758523,8.928350346372181,0,2,0,-9,20,0,2,9.072575482559632,0,0,0,39,2,3,1,3,3,2019,1,1,9,0,45,55,15,1,1,1,0,15.99107703742677,15.99107703742677,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,5,4,1,855.5,0,0,0 +14561,17856,32562,-9,32563,32561,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.238837745482,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,1,855.5,0,0,0 +14561,17856,32563,32561,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,3,7.053892409670487,7.44048392509217,0,2,0,-9,17,0,-2,-44.30489391680319,0,0,1,41,3,4,1,3,3,2019,1,2,9,0,22,22,15,1,0,1,0,8.707491800842941,8.707491800842941,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,5,1,0,0,5,4,1,855.5,0,0,0 +14561,17856,32564,-9,32563,32561,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.519405104945,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,4,1,855.5,0,0,0 +14562,17857,32565,32566,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.94078650023051,9.274597701296608,0,1,0,-9,3,0,-1,16.10195036162121,0,1,0,30,2,4,1,-9,-9,2019,1,1,3,0,45,60,15,1,0,1,0,20.50921011634053,20.50921011634053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,2,5,1,763,0,0,0 +14562,17857,32566,32565,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,4,8.293102231651547,8.100654729901786,0,1,0,-9,3,0,1,70.69673137790403,0,0,1,29,1,4,1,-9,1,2019,1,2,12,1,38,38,15,1,1,1,0,8.408319479630434,8.408319479630434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,3,3,0,0,2,5,1,763,0,0,0 +14563,17858,32567,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,3,8.003719920434159,8.098923589044498,5.771516939807469,3,0,0,0,-9,0,-873.2248164719067,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,39,42,15,1,0,-9,0,11.02938567540458,11.02938567540458,0,0,0,0,0,0,0,1,1,0,5.687456221875022,6.040131488632341,0,0,51.41,50.61,6,1,0,0,6,4,1,1761,0,0,0 +14564,17859,32568,32569,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,8.072626321967174,7.824508172627879,0,2,0,-9,20,0,-11,21.7006483888044,0,0,0,56,2,2,3,3,3,2019,2,2,8,0,0,50,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,11,3,1,914,0,0,0 +14564,17859,32569,32568,-9,-9,2,1,1,56,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,20,0,11,-86.21043340326072,0,0,0,45,2,4,1,3,3,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.82947749037252,0,5.40348474602278,3,53.23,47.51,4,1,0,0,11,3,1,914,0,0,0 +14565,17860,32570,32571,-9,-9,1,1,0,65,1,0,0,0,3,-9,6,3,0,2,0,4.588630562178916,4.540222446621354,1,0,-9,41,0,1,-11.9134733953364,0,0,0,64,1,3,1,2,-9,2019,3,2,19,6,0,0,15,3,6,1,0,0,0,1,0,6.127811942552024,.6870048658959946,3.382897981057155,0,0,1,1,0,0,4.609469872646937,0,0,36.53,31.88,3,1,0,0,4,5,1,969,0,0,0 +14565,17860,32571,32570,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,3,8.451002578914515,9.135854251943643,7.24911563944671,1,0,-9,11,0,-1,149.8653034065288,0,0,0,65,3,2,3,-9,-9,2019,2,1,14,3,38,45,15,1,3,3,0,19.55036837422564,19.55036837422564,0,0,0,0,0,0,0,1,1,0,7.197140619353307,8.084659027727822,0,0,50.72,46.82,6,1,0,0,4,5,1,969,0,0,0 +14565,17861,32572,-9,32570,32571,4,1,0,26,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-912.4291486806383,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,36,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.25733923345933,3,6.86,55.47,1,1,0,0,4,1,1,321,0,0,0 +14566,17862,32573,32575,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.641956814225281,8.467569552572195,0,2,0,-9,9,0,-3,86.97586540926137,0,0,1,39,1,3,1,-9,-9,2019,1,1,10,0,42,44,15,1,0,1,0,14.32600768543708,14.32600768543708,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.14,53.11,6,3,0,0,8,4,1,613,0,0,0 +14566,17862,32574,-9,32573,32575,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.2086436946071,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,4,1,613,0,0,0 +14566,17862,32575,32573,-9,-9,1,1,1,39,1,1,2,0,1,-9,2,1,0,3,8.356558794901771,8.388190733820203,0,2,0,-9,9,0,3,42.01141304838104,-9,0,0,36,1,4,1,-9,-9,2019,1,2,12,3,45,0,15,1,3,1,0,11.08531509865027,11.08531509865027,0,0,0,0,0,0,0,1,1,0,1.911562981376903,0,10.09270291735492,3,51.41,56.15,6,3,0,0,8,4,1,613,0,0,0 +14566,17862,32576,-9,32573,32575,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1179.903192295855,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,8,4,1,613,0,0,0 +14567,17863,32577,-9,32578,32580,5,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1089.028305946895,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,10,3,1,365.5,0,0,0 +14567,17863,32578,32580,-9,-9,1,1,0,53,1,0,2,0,2,-9,2,1,0,2,7.850267643180048,7.844728222317605,0,2,0,-9,36,0,0,-1.302460800123673,0,0,0,62,2,3,1,2,2,2019,1,2,7,0,22,25,15,1,0,1,0,10.45669181840841,10.45669181840841,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,49.11,6,1,0,0,10,3,1,365.5,0,0,0 +14567,17863,32579,-9,32578,32580,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.3772542899707,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,365.5,0,0,0 +14567,17863,32580,32578,-9,-9,2,1,1,62,1,0,2,0,2,-9,2,1,0,3,7.50004632812091,7.328803347399924,0,2,0,-9,36,0,9,-98.23867462865458,0,0,0,53,2,2,1,-9,2,2019,1,1,17,5,24,20,15,1,5,1,0,7.528661255952314,7.528661255952314,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.38,53.47,5,1,0,0,10,3,1,365.5,0,0,0 +14567,17864,32581,-9,32578,32580,3,1,1,18,2,0,2,0,2,1,2,1,0,4,6.925809965566175,7.004371763428276,4.149489718991276,3,0,0,0,-9,0,-977.8591201651949,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,16,0,15,1,0,-9,1,5.270315773771098,5.270315773771098,0,0,0,0,0,0,0,1,1,0,4.272554376304871,0,0,0,47,59,6,1,0,0,10,2,1,250,0,0,0 +14568,17865,32582,-9,-9,-9,1,1,1,83,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-976.5304941381875,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.63,52.48,6,1,0,0,11,1,0,422,0,0,0 +14569,17866,32583,-9,32584,32585,3,1,0,17,2,0,0,0,2,-9,2,3,0,3,5.714913778643631,5.697482234652645,0,1,0,0,0,-9,0,-1017.238857744272,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,6,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,7,1,0,0,4,5,1,1182,0,0,0 +14569,17866,32584,32585,-9,-9,2,1,0,56,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,30,0,1,25.83771606510928,0,0,0,55,1,3,1,1,3,2019,3,1,7,0,0,41,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.26,29.17,6,1,0,0,4,5,1,1182,0,0,0 +14569,17866,32585,32584,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,3,9.851599184599094,9.559059310221706,0,1,0,-9,31,0,-1,178.406639713873,0,0,0,56,2,2,3,3,3,2019,2,2,10,0,58,62,15,1,0,3,0,28.51425355152199,28.51425355152199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,6,1,0,0,4,5,1,1182,0,0,0 +14570,17867,32586,32587,-9,-9,1,1,1,54,1,0,1,0,3,-9,1,1,0,3,8.223789791375232,8.109944244775464,0,2,0,-9,25,0,5,-68.51776582764421,0,0,0,49,2,4,1,-9,-9,2019,1,2,11,0,60,60,15,1,0,1,0,5.431070328186567,5.431070328186567,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,0,0,8,5,1,397.3333333333333,0,0,0 +14570,17867,32587,32586,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,4,8.710610057060443,8.501933148076855,0,2,0,-9,25,0,-5,38.02527859830403,0,0,0,54,3,3,1,3,3,2019,1,1,10,0,45,45,15,1,0,1,0,16.52018866894578,16.52018866894578,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,57.75,7,1,0,0,8,5,1,397.3333333333333,0,0,0 +14570,17867,32588,-9,32587,32586,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-893.0801379839926,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,5,1,397.3333333333333,0,0,0 +14571,17868,32589,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,97,3,0,2,0,0,0,3,0,-9,0,1,0,-934.6623684450984,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.31,34.97,5,1,0,0,13,1,1,715,0,0,0 +14571,17869,32590,-9,32591,-9,5,1,1,12,2,0,0,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-1062.759447660257,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,13,3,1,525.5,0,0,0 +14571,17869,32591,-9,-9,-9,2,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.29445539429344,7.405067794221083,0,3,0,0,0,-9,0,-939.1741733875589,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,30,30,15,1,3,-9,0,5.931070742740661,5.931070742740661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,13,3,1,525.5,0,0,0 +14572,17870,32592,32594,-9,-9,1,1,0,39,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-1,39.62325529115671,0,0,1,40,1,3,1,2,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.762809537876755,0,0,0,57.16,56.15,6,1,0,0,1,4,1,731.5,0,0,0 +14572,17870,32593,-9,32592,32594,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.704601701431,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,731.5,0,0,0 +14572,17870,32594,32592,-9,-9,2,1,1,40,1,0,2,0,1,-9,2,1,0,3,8.904636724156367,8.53892916442998,0,2,0,-9,7,0,1,-20.08704274397838,0,0,0,39,1,4,3,2,2,2019,2,1,17,6,43,43,15,1,6,3,0,19.86045168699128,19.86045168699128,0,0,0,0,0,0,0,1,1,0,2.654744682854655,0,0,0,39.79,57.19,6,1,0,0,1,4,1,731.5,0,0,0 +14572,17870,32595,-9,32592,32594,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.709451328975,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,4,1,731.5,0,0,0 +14573,17871,32596,32597,-9,-9,2,1,0,66,1,0,0,0,1,-9,2,1,0,5,8.045148983743585,8.231063219214995,0,1,0,-9,1,-9,-2,73.95455383665089,-9,0,0,68,2,3,1,2,2,2019,1,1,9,0,45,0,15,1,0,1,0,10.40151698965565,10.40151698965565,0,0,0,0,0,0,0,1,1,0,7.322692975843333,0,0,0,59.43,58.05,7,1,0,0,12,4,1,1755.5,0,0,0 +14573,17871,32597,32596,-9,-9,1,1,1,68,1,0,0,0,2,-9,2,1,0,3,5.880355964320639,7.535741005125971,7.352440526546616,1,0,-9,22,-9,2,117.8047005947934,-9,0,0,66,1,5,1,2,2,2019,1,2,6,0,3,0,15,1,0,1,0,13.11042137516731,13.11042137516731,0,0,0,0,0,0,0,1,1,0,6.668816742456653,7.301840082261164,0,0,57.03,48.06,6,1,0,0,12,4,1,1755.5,0,0,0 +14574,17872,32598,32599,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,4,7.503186707476225,7.620843949389528,0,1,0,-9,10,0,-17,-92.84763973366096,0,0,1,53,1,3,1,1,1,2019,1,2,7,0,20,25,15,1,0,1,0,12.55783012021541,12.55783012021541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,4,5,1,1293,0,0,0 +14574,17872,32599,32598,-9,-9,2,1,1,53,1,0,0,0,1,-9,1,1,0,3,8.743597619145422,8.718828574163464,0,1,0,-9,9,0,17,57.27750214840461,0,0,0,36,1,4,1,2,1,2019,1,1,13,1,35,45,15,1,1,1,0,19.17722041694554,19.17722041694554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.7,47.03,6,1,0,0,4,5,1,1293,0,0,0 +14575,17873,32600,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,4,0,7.826541058002928,7.859155826165469,3,0,0,0,-9,0,-1032.151102944871,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.181159135209175,8.122984923485923,0,0,61.12,51.57,6,1,0,0,9,3,1,543,0,0,0 +14576,17874,32601,32602,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,3.336926147054978,3.049476262304592,1,0,-9,10,0,-6,159.1564297260782,0,0,0,80,3,2,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,1,14.66025077207326,0,0,0,0,47.54570638748822,1,1,0,0,3.332759454195075,78.13729049376204,1,45.5,40.07,7,1,0,0,11,2,1,1692,0,0,0 +14576,17874,32602,32601,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,7.552850208437944,7.488885231466171,1,0,-9,10,0,6,82.8789859781797,0,0,0,74,3,3,3,2,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,1,7.03879249927542,0,0,0,0,34.88735134037576,1,1,0,0,7.032878064733588,0,0,44,19,6,1,0,0,11,2,1,1692,0,0,0 +14577,17875,32603,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-976.830504454119,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.720304118593809,0,0,0,47.74,33.89,5,1,0,0,5,1,1,374,0,0,0 +14578,17876,32604,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,6.075182977969839,5.941698295147201,3,0,0,0,-9,0,-1125.057333081799,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.178873815827636,6.006052852994241,0,0,57.16,56.15,6,1,0,0,11,2,1,640,0,0,0 +14579,17877,32605,-9,-9,-9,1,1,1,75,2,0,0,0,2,-9,4,3,0,5,0,6.856090872152309,7.200895183510521,3,0,0,0,-9,0,-1157.304405105921,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8303314035569384,7.140426310988771,0,0,58.29,46.15,6,1,0,0,9,2,1,1272,0,0,0 +14580,17878,32606,-9,-9,-9,1,1,1,53,2,0,0,0,3,-9,2,1,0,2,0,0,0,3,0,0,0,-9,0,-1104.682629931839,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,0,30,15,1,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.67,45.95,3,1,0,0,13,1,0,1217,0,0,0 +14581,17879,32607,32608,-9,-9,2,1,1,50,1,0,2,0,3,-9,3,3,0,4,0,0,0,2,0,-9,10,0,11,120.8554415703679,0,0,0,39,2,3,1,-9,-9,2019,3,1,24,12,0,55,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.086545345690142,0,0,0,29.84,60.48,3,1,1,1,12,3,1,444.75,0,0,0 +14581,17879,32608,32607,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,3,8.442329364333951,8.54884303167732,0,2,0,-9,10,0,-11,-18.64309897306275,0,0,1,50,3,4,3,2,3,2019,2,2,12,1,28,21,15,1,1,3,0,17.371097715603,17.371097715603,0,0,0,0,0,0,0,1,1,0,2.674971132396558,0,0,0,50.18,52.62,5,1,0,0,12,3,1,444.75,0,0,0 +14581,17879,32609,-9,32608,32607,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1012.619906651644,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,1,444.75,0,0,0 +14581,17879,32610,-9,32608,32607,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-906.4228053429291,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,1,444.75,0,0,0 +14582,17880,32611,32612,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.70898303377735,7.611728799815709,0,2,0,-9,13,0,-19,-120.1643392596294,0,0,0,65,1,3,3,3,2,2019,2,2,10,3,35,24,15,1,3,4,0,7.497038640885912,7.497038640885912,0,0,0,0,0,0,0,1,1,0,0,0,4.74342018751514,3,63.78,31.42,5,4,0,1,8,3,0,751,0,0,0 +14582,17880,32612,32611,-9,-9,2,1,1,65,1,0,1,0,1,-9,4,3,0,3,0,6.153461547007343,6.099161402619782,2,0,-9,14,0,19,42.83248145164048,0,0,0,46,2,3,1,3,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.293887857202067,0,0,54.97,47.63,6,4,0,1,8,3,0,751,0,0,0 +14582,17880,32613,-9,32611,32612,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.377991303585,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,3,0,751,0,0,0 +14583,17881,32614,32615,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,2,0,6.154691043354582,6.494776772782217,1,0,-9,37,0,-8,43.36484148597272,0,0,0,75,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.504090453067108,6.339979655170118,0,0,58.7,46.46,6,1,0,0,5,2,1,492,0,0,0 +14583,17881,32615,32614,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,3.510026546397885,3.641952733525769,1,0,-9,37,0,8,-9.886857000868206,0,0,0,67,3,2,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.420938021290934,3.480509645942788,0,0,49.24,50.42,6,1,0,0,5,2,1,492,0,0,0 +14584,17882,32616,-9,-9,-9,1,1,0,45,2,0,1,0,3,-9,2,1,0,4,7.056523008554194,7.152528583065858,0,4,0,-9,0,-9,0,-1030.815943011506,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,17,0,15,1,1,-9,0,8.514724211564195,8.514724211564195,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,4,0,0,8,2,0,1595.5,0,0,0 +14584,17882,32617,-9,32616,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1000.466264510832,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,2,0,1595.5,0,0,0 +14585,17883,32618,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1034.80188382604,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.34,37.62,4,1,0,0,11,1,0,346,0,0,0 +14586,17884,32619,32620,-9,-9,2,1,0,57,1,0,0,0,2,-9,8,3,1,5,0,5.233591448657249,5.107247105321941,1,0,-9,36,0,-15,-75.299274528122,0,0,0,72,3,1,3,2,2,2019,4,1,22,10,0,0,15,3,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.251084324123644,5.40226537848853,0,2,37.2,34.1,5,1,0,0,7,4,0,536,0,0,0 +14586,17884,32620,32619,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,1,0,8.290786617129699,8.375643615877507,1,0,-9,36,0,15,-40.09359039543155,0,0,0,57,2,5,3,-9,-9,2019,4,2,7,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.343173580923398,8.272399576641376,14.93051793808549,3,62.99,9.35,7,1,0,0,7,4,0,536,0,0,0 +14586,17885,32621,-9,32619,32620,3,1,1,32,2,0,0,0,2,-9,8,3,1,2,0,8.387666519836259,8.724617577830475,3,0,0,0,-9,0,-1034.26826467324,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,20,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,8.029460585490263,0,0,31.73,22.05,3,1,0,0,7,4,0,1008,0,0,0 +14587,17886,32622,-9,-9,-9,1,1,1,41,2,0,0,0,2,-9,2,1,0,2,6.754667931481643,6.532696476173109,0,3,0,0,0,-9,0,-935.8762899370837,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,16,16,15,1,0,-9,0,5.845683525443506,5.845683525443506,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.59,44.56,6,2,0,1,9,2,0,587,0,0,0 +14588,17887,32623,32624,-9,-9,2,1,1,67,1,0,0,0,1,-9,1,1,0,4,7.810134736303529,7.625480136580684,0,1,0,-9,4,0,0,36.89332105188314,0,0,0,67,1,5,3,2,2,2019,2,1,9,0,8,24,15,1,0,4,0,28.78340941420425,28.78340941420425,0,0,0,0,0,0,0,1,1,0,7.820361218476832,0,0,0,61.12,51.57,6,1,0,0,11,4,1,412,0,0,0 +14588,17887,32624,32623,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,5,0,7.705323450801289,8.202807790370233,1,0,-9,4,0,0,-76.6263387451713,0,0,0,67,1,4,1,2,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.403402647004755,7.675896829116555,0,0,60.02,56.42,6,1,0,0,11,4,1,412,0,0,0 +14589,17888,32625,-9,32627,32626,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-956.0364496785093,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,1330,0,0,0 +14589,17888,32626,32627,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,5,8.175064182930337,8.059654339509366,0,2,0,-9,4,0,3,128.9151963833398,0,0,0,33,1,5,1,-9,-9,2019,1,1,12,0,57,0,15,1,0,1,0,8.858959596548907,8.858959596548907,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.8,45.74,6,1,0,0,2,3,1,1330,0,0,0 +14589,17888,32627,32626,-9,-9,1,1,0,33,1,1,1,0,1,-9,2,1,0,5,0,0,0,2,0,-9,4,0,-3,43.65681746791412,0,0,1,36,2,5,1,2,3,2019,1,2,6,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,7,1,0,0,2,3,1,1330,0,0,0 +14590,17889,32628,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,2,1,0,3,8.208342988115223,7.966784359889686,0,3,0,0,0,-9,0,-1119.74055632939,0,0,1,-9,-9,-9,-9,1,2,2019,-9,0,13,0,40,0,15,1,2,-9,0,9.233146402314127,9.233146402314127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,52,5,1,0,0,12,4,1,390,0,0,0 +14591,17890,32629,-9,-9,-9,1,1,0,72,3,0,0,0,1,-9,4,3,0,3,0,8.017168838010878,7.988864586796237,3,0,0,0,-9,0,-1011.326294175886,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.398824753209976,8.06261148382864,13.6505695966872,3,51.94,55.88,6,1,0,0,10,4,1,385,0,0,0 +14592,17891,32630,32631,-9,-9,1,1,0,21,1,1,2,0,3,-9,6,3,0,5,0,0,0,2,0,-9,3,0,-2,0,0,1,1,23,3,4,3,3,-9,2019,4,3,11,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,43.43,7,1,0,0,13,1,0,311,0,0,0 +14592,17891,32631,32630,-9,-9,3,1,1,23,1,1,2,0,3,-9,3,3,0,4,0,0,0,2,0,-9,3,0,2,0,0,1,0,21,3,5,3,-9,-9,2019,4,1,5,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.39,52.35,6,1,1,0,13,1,0,311,0,0,0 +14592,17891,32632,-9,32630,32631,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.8870546309312,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,1,0,311,0,0,0 +14592,17891,32633,-9,32630,32631,2,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1150.021319366796,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,1,0,311,0,0,0 +14593,17892,32634,-9,-9,-9,1,1,0,51,3,0,2,0,3,-9,1,1,0,4,9.825183935099542,9.606097995960665,0,4,0,0,0,-9,0,-997.8650094820771,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,30,35,15,1,0,-9,0,52.23400710169395,52.23400710169395,0,0,0,0,0,0,0,1,1,0,0,0,8.642665715701671,3,53.42,52.33,6,1,0,0,11,5,1,824.3333333333334,0,0,0 +14593,17892,32635,-9,32634,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-934.214154582917,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,5,1,824.3333333333334,0,0,0 +14593,17892,32636,-9,32634,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.7043864816523,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,5,1,824.3333333333334,0,0,0 +14594,17893,32637,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,7.800524057046927,8.372708776892487,0,3,0,0,0,-9,0,-1108.867268249187,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,25,38,15,1,1,-9,0,12.75631055571717,12.75631055571717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.85,61.26,4,1,0,0,2,3,1,990,0,0,0 +14594,17894,32638,-9,32637,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.118828540722962,7.913329458026274,0,3,0,0,0,-9,0,-1018.107897596818,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,24,8,15,1,1,-9,1,16.99844818393662,16.99844818393662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,2,4,1,718,0,0,0 +14595,17895,32639,-9,-9,-9,1,1,0,22,2,0,0,1,2,0,7,2,0,4,6.911632687369243,7.204980180322583,0,3,0,0,0,-9,0,-1028.815169461387,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,4,2,0,280,0,0,0 +14596,17896,32640,-9,-9,-9,1,1,0,92,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1067.86836981531,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,43,6,1,0,0,9,1,1,296,0,0,0 +14596,17897,32641,-9,32640,-9,3,1,1,60,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-909.0181089118162,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.2020213164434,3,55,53,6,1,0,0,9,1,1,212,0,0,0 +14597,17898,32642,32644,-9,-9,1,1,0,39,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,16,0,-19,75.6477604047018,0,0,1,58,2,3,1,3,3,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,56.11,6,1,1,0,5,3,1,921,0,0,0 +14597,17898,32643,-9,32642,32644,4,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1045.283766124448,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,3,1,921,0,0,0 +14597,17898,32644,32642,-9,-9,2,1,1,58,1,0,2,0,2,-9,2,1,0,3,8.178020489924066,8.208081536107599,0,2,0,-9,10,0,19,18.6766144620427,-9,0,0,39,2,4,3,-9,-9,2019,2,1,11,0,40,0,15,1,0,3,0,10.82148046121761,10.82148046121761,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.07,53.41,6,1,0,0,5,3,1,921,0,0,0 +14597,17898,32645,-9,32642,32644,3,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-952.8807298385008,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,5,3,1,921,0,0,0 +14598,17899,32646,32647,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,2.305873221950739,2.37220021600089,1,0,-9,9,0,-6,-37.39572026206555,0,0,0,79,2,2,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,26.72400226823548,1.493959248060742,0,0,0,1,1,0,0,2.289746473162426,0,0,48.54,40.15,6,1,0,0,10,3,1,202.5,0,0,0 +14598,17899,32647,32646,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,8.044115797388804,7.386537911260225,1,0,-9,9,0,6,161.1895151915879,0,0,0,73,2,4,3,3,3,2019,4,2,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.523394801453451,0,0,44.05,35.41,5,1,0,0,10,3,1,202.5,0,0,0 +14599,17900,32648,32649,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,3,7.659095165535425,7.982583608489808,7.129587168056416,1,0,-9,39,0,-16,7.943789289423347,0,0,0,79,3,3,3,3,3,2019,2,1,11,0,24,12,15,1,2,4,0,7.845955110303646,7.845955110303646,0,0,0,0,0,0,0,1,1,0,0,7.050940270856929,0,0,49,48,5,4,0,0,8,3,1,2158.5,0,0,0 +14599,17900,32649,32648,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,5.988302043606409,6.162103081079004,1,0,-9,39,0,16,163.4641344135625,0,0,0,63,1,3,1,2,2,2019,3,2,9,0,0,0,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.195994441687217,117.2452621723138,3,53,46,5,4,0,1,8,3,1,2158.5,0,0,0 +14599,17901,32650,-9,32648,32649,3,1,1,29,2,0,0,0,2,-9,2,1,0,4,6.803671982724818,6.967736551817978,0,3,0,0,0,-9,0,-998.1383201660002,0,1,0,-9,-9,-9,-9,1,3,2019,-9,0,10,0,8,8,15,1,1,-9,1,15.30472817875615,15.30472817875615,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,4,0,0,8,2,1,344,0,0,0 +14599,17902,32651,-9,32648,32649,4,1,1,52,2,0,0,0,2,-9,1,1,0,4,8.080892779378804,8.278404803316578,0,3,0,0,0,-9,0,-984.8790611296946,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,9,0,30,30,15,1,1,-9,0,15.14622985167729,15.14622985167729,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,4,0,0,8,4,1,181,0,0,0 +14600,17903,32652,-9,-9,-9,1,1,0,39,2,0,1,0,3,-9,8,3,1,1,0,4.989331741430068,4.25025465841065,4,0,0,0,-9,0,-1100.389560847638,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.74807722839242,0,1.9774103992473,3,31.27,29.34,2,2,0,0,2,2,0,1479,0,0,0 +14600,17904,32653,-9,32652,-9,2,1,1,18,2,0,1,1,3,0,7,2,0,1,0,0,0,3,0,0,0,-9,0,-979.1179444925391,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,24,9,0,0,15,2,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.57,38.46,1,2,0,1,2,2,0,194,0,0,0 +14601,17905,32654,32655,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,7.825014036387714,7.67273595024144,1,0,-9,45,-9,2,-20.66240740451599,-9,0,0,66,3,3,3,3,3,2019,4,2,18,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.813586856209885,7.593447568900619,0,0,43.03,53.23,5,1,0,0,4,2,1,671.5,0,0,0 +14601,17905,32655,32654,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,45,-9,-2,100.6424276211665,-9,0,0,68,2,3,3,3,3,2019,4,1,22,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.498613202093722,0,0,0,37.02,52.1,3,1,0,0,4,2,1,671.5,0,0,0 +14602,17906,32656,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,4,6.207929749403629,6.313316459982476,0,3,0,0,0,-9,0,-1013.73462049479,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,15,0,15,1,0,-9,0,2.904642056258731,2.904642056258731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,2,2,1,1015,0,0,0 +14603,17907,32657,32658,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,6.5862263115016,6.620907050293326,1,0,-9,48,0,0,-60.3693838480762,0,0,0,76,3,4,3,3,2,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.857720722156232,8.809063419264824,3,54.37,54.8,6,1,0,0,9,2,1,908,0,0,0 +14603,17907,32658,32657,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,48,0,0,-102.2817514981185,0,0,0,76,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,2.072062989856599,0,0,0,0,1,1,0,0,0,0,0,53.59,46.78,6,1,0,0,9,2,1,908,0,0,0 +14604,17908,32659,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,2,8.290263052986138,8.499078228342604,0,3,0,0,0,-9,0,-919.3872277901818,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,21,20,15,1,0,-9,0,24.45733662418382,24.45733662418382,0,0,0,0,0,0,0,1,1,0,2.145262291474354,0,0,0,46.41,37.03,3,1,0,0,8,4,1,192,0,0,0 +14605,17909,32660,-9,-9,-9,1,1,1,90,3,0,0,0,1,-9,4,3,0,3,0,5.077715822269569,5.220737780595452,3,0,0,0,-9,0,-1100.166916616369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.792026465310298,5.126396195957594,0,0,53.23,42.9,5,1,0,1,10,2,1,675,0,0,0 +14606,17910,32661,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1023.680087155039,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,37.68,26.05,3,2,1,1,8,1,0,345,0,0,0 +14606,17911,32662,-9,32661,-9,2,1,1,25,2,0,0,0,2,-9,1,1,0,3,8.781068103905879,8.688358941464339,3.982404975732885,3,0,0,0,-9,0,-982.4708689067347,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,4,5,0,15,1,4,-9,1,136.9088792880342,136.9088792880342,0,0,0,0,0,0,0,1,1,0,3.714738833554302,0,0,0,49.12,53.02,5,4,0,0,8,5,0,821,0,0,0 +14607,17912,32663,-9,32666,32664,2,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1030.190598115453,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,5,1,0,0,2,3,1,898.75,0,0,0 +14607,17912,32664,32666,-9,-9,3,1,1,33,1,0,2,0,2,-9,2,1,0,3,8.06927323097686,7.805763663608267,0,2,0,-9,6,0,-4,54.33952915582176,0,0,0,37,2,3,1,-9,-9,2019,1,1,7,1,38,38,15,1,1,1,0,8.549138666270608,8.549138666270608,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.09,46.7,6,1,0,0,2,3,1,898.75,0,0,0 +14607,17912,32665,-9,32666,32664,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.225961344373,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,2,3,1,898.75,0,0,0 +14607,17912,32666,32664,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,3,6.821331595696937,6.958026935099044,0,2,0,-9,6,0,4,7.76488984787623,0,0,1,33,2,3,1,2,2,2019,1,3,11,0,12,12,15,1,0,1,0,7.217067911258848,7.217067911258848,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.08,57.2,6,1,0,0,2,3,1,898.75,0,0,0 +14608,17913,32667,32668,-9,-9,2,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,42,-9,4,0,-9,0,0,65,2,3,3,-9,1,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.210836806519903,0,0,0,47.77,56.48,6,1,0,0,12,1,1,912,0,0,0 +14608,17913,32668,32667,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,42,-9,-4,0,-9,0,0,69,1,4,3,2,1,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,12,1,1,912,0,0,0 +14609,17914,32669,-9,32670,32671,5,1,1,14,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1156.174269256119,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,4,3,0,0,6,2,0,725,0,0,0 +14609,17914,32670,32671,-9,-9,2,1,0,46,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,28,0,0,57.10419383826418,0,0,0,55,1,4,1,-9,-9,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.471287098930227,0,0,0,51,54,6,3,0,0,6,2,0,725,0,0,0 +14609,17914,32671,32670,-9,-9,1,1,1,55,1,0,1,0,1,-9,1,1,0,4,7.849808916885897,7.684142334453282,0,2,0,-9,28,0,9,100.2808372718239,0,0,0,46,3,4,3,-9,-9,2019,2,2,9,0,0,50,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,3,0,1,6,2,0,725,0,0,0 +14609,17915,32672,-9,32670,32671,3,1,1,21,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1122.979692108531,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,3,3,0,0,6,1,0,308,0,0,0 +14609,17916,32673,-9,32670,32671,4,1,0,20,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-976.5959263347032,1,1,1,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,30,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,3,0,0,6,1,0,1138,0,0,0 +14610,17917,32674,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1046.438902560796,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.1231953526653,3,51.61,50.58,6,1,0,0,12,1,0,602,0,0,0 +14611,17918,32675,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-974.9364339526171,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,21,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.82008561256298,3,22.89,34.45,3,1,0,0,1,1,0,353,0,0,0 +14611,17919,32676,-9,32675,-9,2,1,1,22,2,0,1,0,2,-9,7,2,0,4,6.82437501436159,6.618911385385195,0,3,0,0,0,-9,0,-1120.019609337705,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,18,30,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,40.55,57.01,6,1,0,0,1,2,0,630,0,0,0 +14612,17920,32677,32678,-9,-9,2,1,0,55,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,33,0,-7,17.31469207104353,0,0,0,62,2,4,1,-9,-9,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.374011128029508,3,48.11,56.11,6,3,0,0,4,3,1,395,0,0,0 +14612,17920,32678,32677,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,4,7.570310395200795,7.427947140078278,0,1,0,-9,33,0,7,31.9123733510864,0,0,0,55,2,4,3,3,3,2019,2,2,8,0,37,40,15,1,0,3,0,5.670173584429348,5.670173584429348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,3,0,0,4,3,1,395,0,0,0 +14613,17921,32679,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,4,0,7.15396665061214,6.835238724279641,3,0,0,0,-9,0,-1007.742449482445,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.953508620186164,0,0,57.16,56.15,6,1,0,1,2,2,1,701,0,0,0 +14614,17922,32680,32681,-9,-9,1,1,1,28,1,0,0,0,1,-9,2,1,0,5,8.295827959161736,8.292710934751947,0,1,0,-9,1,-9,0,.3950960945469516,-9,1,0,28,1,4,1,1,2,2019,1,2,7,0,35,0,15,1,0,1,0,11.58107645039977,11.58107645039977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,9,5,0,1424.5,0,0,0 +14614,17922,32681,32680,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.631333196770774,9.112586242227636,0,1,0,-9,1,-9,0,-113.5359265654808,-9,1,1,28,1,5,1,-9,-9,2019,1,1,10,0,68,0,15,1,0,1,0,8.746428826245184,8.746428826245184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,0,1424.5,0,0,0 +14615,17923,32682,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,4,8.61830240685892,8.665670546230603,0,3,0,-9,0,1,0,-975.9384579165551,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,37,76,15,1,0,-9,0,17.4089631767584,17.4089631767584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,6,3,0,0,7,5,1,920,0,0,0 +14615,17924,32683,-9,32682,-9,2,1,0,19,2,0,0,1,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-962.9156333028594,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.62075842322826,0,0,0,46,59,5,3,0,0,7,1,1,311,0,0,0 +14616,17925,32684,-9,32685,32688,6,1,1,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.4682001945673,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,8,5,1,762.3333333333334,0,0,0 +14616,17925,32685,32688,-9,-9,1,1,0,45,1,0,4,0,2,-9,2,1,0,5,7.208991956677113,7.169576133945957,0,2,0,-9,23,0,-1,36.1396807416091,0,0,0,46,1,3,1,1,2,2019,1,2,8,0,27,28,15,1,0,1,0,4.925659104355935,4.925659104355935,0,0,0,0,0,0,0,0,0,0,3.091561709689126,0,0,0,54.1,59.11,7,1,0,0,8,5,1,762.3333333333334,0,0,0 +14616,17925,32686,-9,32685,32688,3,1,1,16,2,0,4,1,2,-9,7,2,0,5,6.108787476582891,6.245677394573351,0,2,0,0,0,-9,0,-1083.430713081075,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,8,5,1,762.3333333333334,0,0,0 +14616,17925,32687,-9,32685,32688,5,1,0,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-939.7498494291958,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,8,5,1,762.3333333333334,0,0,0 +14616,17925,32688,32685,-9,-9,2,1,1,46,1,0,4,0,1,-9,2,1,0,3,9.389610979665347,9.555021154326891,0,2,0,-9,23,0,1,-79.85666652041566,0,0,0,45,2,5,1,2,3,2019,1,1,11,0,55,41,15,1,0,1,0,26.20277327394061,26.20277327394061,0,0,0,0,0,0,0,0,0,0,2.87220687709073,0,0,0,46.56,50.26,6,1,0,0,8,5,1,762.3333333333334,0,0,0 +14616,17925,32689,-9,32685,32688,4,1,0,14,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1080.052709275178,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,5,1,0,0,8,5,1,762.3333333333334,0,0,0 +14617,17926,32690,32691,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.406646232916906,8.398078242594442,6.839509605835703,1,0,-9,37,0,0,73.89681306763951,0,0,0,59,2,4,1,2,2,2019,1,1,9,0,28,30,15,1,0,1,0,14.12264900366559,14.12264900366559,0,0,0,0,0,0,0,0,0,0,7.447741567164128,7.563115382007036,0,0,54.2,57.49,6,1,0,0,4,4,1,1384.5,0,0,0 +14617,17926,32691,32690,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,6.90443934553144,6.504926416073269,0,1,0,-9,37,0,0,56.73492902406016,0,0,0,59,2,4,1,3,2,2019,1,2,6,0,25,24,15,1,0,1,0,4.252829828849459,4.252829828849459,0,0,0,0,0,0,0,0,0,0,6.567676533953078,0,0,0,57.16,56.15,6,1,0,0,4,4,1,1384.5,0,0,0 +14618,17927,32692,-9,32695,32693,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.725735857494,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,1,489.8,0,0,0 +14618,17927,32693,32695,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,2,0,0,0,2,0,-9,20,0,-1,-3.86404827531637,0,0,0,40,2,3,1,3,3,2019,1,2,9,0,0,20,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.3,44.82,5,1,0,0,4,2,1,489.8,0,0,0 +14618,17927,32694,-9,32695,32693,4,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-924.3689966165527,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,2,1,489.8,0,0,0 +14618,17927,32695,32693,-9,-9,2,1,0,40,1,0,2,0,2,-9,2,1,0,3,7.700318681273838,7.884584864611331,0,2,0,-9,20,0,1,27.02429921430891,-9,0,1,39,2,2,1,3,3,2019,1,1,11,0,32,0,15,1,0,1,0,9.611187735160447,9.611187735160447,0,0,0,0,0,0,0,1,1,0,4.716051209549157,0,0,0,33.79,46.44,5,1,0,0,4,2,1,489.8,0,0,0 +14618,17927,32696,-9,-9,32693,5,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.103824970351,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,2,1,489.8,0,0,0 +14619,17928,32697,32698,-9,-9,1,1,1,60,1,0,0,0,2,-9,4,3,0,2,0,7.669727572137885,7.062510771813183,1,0,-9,34,0,5,-33.98132069734449,0,0,0,55,2,3,1,3,2,2019,3,2,20,8,0,0,15,4,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.295465449570067,7.762561360821981,0,0,38.45,50.26,3,1,0,0,7,4,1,985.5,0,0,0 +14619,17928,32698,32697,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,8.20378820088898,8.237499865667596,0,1,0,-9,34,0,-5,-91.93032024541731,0,0,0,60,2,2,3,3,3,2019,2,1,20,9,40,40,15,1,9,4,0,12.58321342804806,12.58321342804806,0,0,0,0,0,0,0,0,0,0,0,0,9.608577315224414,3,16.22,63.04,3,1,0,0,7,4,1,985.5,0,0,0 +14620,17929,32699,-9,32702,32700,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.2809471457742,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,2,5,1,408,0,0,0 +14620,17929,32700,32702,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,3,7.946039441375128,8.502193756187518,0,2,0,-9,9,0,7,-167.5922175848576,0,0,0,35,1,5,1,3,2,2019,1,1,9,0,37,37,15,1,0,1,0,11.72908250204417,11.72908250204417,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.07,49.95,5,3,0,0,2,5,1,408,0,0,0 +14620,17929,32701,-9,32702,32700,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.995121011994,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,5,1,408,0,0,0 +14620,17929,32702,32700,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,5,8.724461085513765,9.025600091315175,0,2,0,-9,9,0,-7,-5.454573719143801,0,0,1,42,1,3,1,3,3,2019,1,2,9,0,45,45,15,1,0,1,0,13.89121359204203,13.89121359204203,0,0,0,0,0,0,0,1,1,0,7.165601701026353,0,0,3,54.35,57.84,6,3,0,0,2,5,1,408,0,0,0 +14621,17930,32703,-9,32705,32707,5,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-979.159142889783,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,3,1,316.2,0,0,0 +14621,17930,32704,-9,32705,32707,3,1,1,15,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1032.530722778097,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,1,316.2,0,0,0 +14621,17930,32705,32707,-9,-9,2,1,0,31,1,1,3,0,2,-9,2,1,0,3,7.785939065605193,7.998195300353803,0,2,0,-9,1,-9,-5,27.86705470996697,-9,0,1,36,2,3,1,-9,-9,2019,1,1,19,7,50,0,15,1,7,1,0,5.636193979609154,5.636193979609154,0,0,0,0,0,0,0,1,1,0,0,0,9.968197343729113,3,33.37,60.58,6,1,0,0,4,3,1,316.2,0,0,0 +14621,17930,32706,-9,32705,32707,4,1,0,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,-9,0,-9,0,-930.435788800367,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,4,3,1,316.2,0,0,0 +14621,17930,32707,32705,-9,-9,1,1,1,36,1,1,3,0,2,-9,2,1,0,3,8.404029448545243,8.35597084087456,0,2,0,1,1,-9,5,87.02239483216457,0,0,0,31,2,3,1,2,2,2019,1,2,8,1,50,84,15,1,1,1,0,9.244825516532336,9.244825516532336,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.02,58.57,6,1,0,0,4,3,1,316.2,0,0,0 +14622,17931,32708,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-1009.164971439593,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.37,21.76,1,1,0,1,10,1,0,82,0,0,0 +14623,17932,32709,32710,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,3,0,8.325551651309558,8.131568388197131,1,0,-9,65,0,-4,-84.06978741775308,0,0,0,87,1,3,3,3,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.470832855195491,136.3606864101926,1,34.46,45.14,4,1,0,0,5,3,1,691.5,0,0,0 +14623,17932,32710,32709,-9,-9,1,1,1,87,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,65,0,4,-99.13358297270682,0,0,0,83,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.000051857131049,0,0,0,55,45,6,1,0,0,5,3,1,691.5,0,0,0 +14624,17933,32711,32712,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,4,0,6.971074272763583,6.506956817878346,1,0,-9,55,0,0,-27.63263223433059,0,0,0,73,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.115343115584467,7.081573161320464,0,0,57.16,56.15,1,1,0,0,2,2,1,612.5,0,0,0 +14624,17933,32712,32711,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,0,-41.54606110624663,0,0,0,73,2,4,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.429192294700051,0,0,0,57.33,53.46,6,1,0,0,2,2,1,612.5,0,0,0 +14625,17934,32713,32714,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,0,0,0,0,0,68,3,1,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.06391844012351,1,62.57,40.11,6,1,0,0,1,1,0,201,0,0,0 +14625,17934,32714,32713,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,49,0,0,0,0,0,0,68,2,3,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.46,12.38,3,1,0,0,1,1,0,201,0,0,0 +14626,17935,32715,-9,-9,-9,1,1,1,82,2,0,0,0,2,-9,4,3,0,3,0,6.768627078553275,6.564267270261484,3,0,0,0,-9,0,-1033.073256489363,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.921786041964406,16.60760449531179,3,58.47,39.49,6,1,0,0,12,2,1,188,0,0,0 +14626,17936,32716,-9,-9,-9,2,1,1,89,2,0,0,0,2,-9,4,3,0,1,0,6.30937407814976,6.463606286034624,3,0,0,0,-9,0,-1101.894369082028,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,14.20478534158921,0,1,1,0,0,6.424954815574683,0,0,45.48,21.54,5,1,0,0,12,2,1,992,0,0,0 +14626,17937,32717,-9,-9,-9,3,1,0,84,2,0,0,0,3,-9,4,3,0,2,0,6.180258080824295,6.455039796564909,3,0,0,0,-9,0,-941.8341604333168,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.529097324626997,32.94968006021335,3,42.94,34.68,4,1,0,0,12,2,1,127,0,0,0 +14627,17938,32718,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,9.122501255658937,9.027949205080782,0,3,0,0,0,-9,0,-1096.854127851599,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,37,38,15,1,0,-9,0,23.87886330804928,23.87886330804928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,6,1,0,0,6,5,1,4040,0,0,0 +14628,17939,32719,-9,-9,-9,1,1,0,28,3,0,0,0,2,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-1134.495772978573,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,11,20,44,15,1,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.75,61.44,3,1,0,0,10,1,0,1181,0,0,0 +14629,17940,32720,32721,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,6.768072881130183,6.646218480959138,1,0,-9,8,0,4,41.17651983993891,0,0,0,65,3,3,1,-9,-9,2019,3,1,10,0,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.592132524724327,0,0,52,47,5,1,0,0,10,2,1,1032.5,0,0,0 +14629,17940,32721,32720,-9,-9,1,1,0,65,1,0,0,0,3,-9,2,1,0,3,5.323191683932866,5.435511758073458,0,1,0,-9,45,0,-4,44.57440787067158,0,0,0,69,2,3,3,3,3,2019,2,2,8,0,5,5,15,1,0,4,0,6.380254734097601,6.380254734097601,0,0,0,0,0,0,0,1,1,0,2.56465623503551,0,0,0,51.02,52.22,6,1,0,0,10,2,1,1032.5,0,0,0 +14629,17941,32722,-9,32721,32720,3,1,0,30,2,0,0,0,2,-9,2,1,0,4,8.171190127237589,7.910976057987253,0,3,0,0,0,-9,0,-1040.176500903557,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,40,40,15,1,2,-9,1,9.670294305480526,9.670294305480526,0,0,0,0,0,0,0,1,1,0,7.049795477916765,0,0,0,48,57,5,1,0,0,10,4,1,775,0,0,0 +14630,17942,32723,-9,32724,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,1,0,0,0,4,0,0,0,-9,0,-1062.804901306438,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,0,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,3,1,0,0,12,3,1,180.5,0,0,0 +14630,17942,32724,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,2,8.144986586475971,7.823718903116355,0,4,0,0,0,-9,0,-1017.228900889868,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,35,45,15,1,2,-9,0,9.839554852459338,9.839554852459338,0,0,0,0,0,0,0,1,1,0,2.012848646600392,0,0,0,25.58,52.2,2,1,0,0,12,3,1,180.5,0,0,0 +14631,17943,32725,32726,-9,-9,2,1,0,31,1,1,2,0,2,-9,2,1,0,3,7.08340723274295,7.361055233785148,4.822789391624652,2,0,-9,7,0,2,37.95776377592424,0,0,1,29,2,3,1,1,2,2019,1,1,9,0,21,21,15,1,0,1,0,7.899226283889677,7.899226283889677,0,0,0,0,0,0,0,1,1,0,6.823500411702873,0,0,0,53.14,51.28,6,1,0,0,13,4,1,750.25,0,0,0 +14631,17943,32726,32725,-9,-9,1,1,1,29,1,1,2,0,2,-9,2,1,0,3,8.609620398926225,8.630042347351926,0,2,0,-9,7,0,-2,-113.8285384776273,0,1,0,31,2,3,1,2,2,2019,1,2,11,2,38,43,15,1,2,1,0,15.66789634854954,15.66789634854954,0,0,0,0,0,0,0,1,1,0,.8512849518144689,0,0,0,54.94,53.18,2,1,0,0,13,4,1,750.25,0,0,0 +14631,17943,32727,-9,32725,32726,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.0376315820089,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,750.25,0,0,0 +14631,17943,32728,-9,32725,32726,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.051808238343,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,750.25,0,0,0 +14632,17944,32729,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,1,0,6.19870351607307,5.624879823932777,3,0,0,0,-9,0,-1002.523271523134,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.854499087597125,0,0,59.71,11.05,7,1,0,0,12,2,1,726,0,0,0 +14633,17945,32730,-9,-9,-9,1,1,0,71,3,0,0,0,1,-9,4,3,0,5,0,7.665293958785359,7.399875237022652,3,0,0,0,-9,0,-969.7485942827268,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.615162900040301,7.689345671493701,0,0,54.1,59.11,6,1,0,0,10,3,1,752,0,0,0 +14634,17946,32731,32732,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,2,0,8.176855977495519,8.184894039473367,1,0,-9,7,0,0,-34.67351073124982,0,0,0,71,3,2,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.706369340885562,8.146974862208523,0,0,42.52,41.5,4,1,0,0,8,3,1,535.5,0,0,0 +14634,17946,32732,32731,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,7,0,0,-138.6877658090165,0,0,0,71,2,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.898793449525184,0,0,0,65.78,29.46,6,1,0,0,8,3,1,535.5,0,0,0 +14635,17947,32733,32734,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,30,0,-8,-51.61703924727009,0,0,0,71,1,5,3,1,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,57.99,7,1,0,0,10,4,1,867.5,0,0,0 +14635,17947,32734,32733,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,5,0,8.305864885453353,8.259064137137184,1,0,-9,11,0,8,-116.3233722641624,0,0,0,63,1,5,3,-9,-9,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.152128418618206,8.464718881048837,0,0,55.63,55.6,7,1,0,0,10,4,1,867.5,0,0,0 +14636,17948,32735,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,2,1,0,4,8.141793613509533,8.118119997186438,0,3,0,0,0,-9,0,-877.7379940111865,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,39,15,1,0,-9,0,8.39435177389797,8.39435177389797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.61,50.48,2,1,0,0,11,4,1,371,0,0,0 +14636,17949,32736,-9,-9,32735,3,1,1,28,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1065.369280537212,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,35,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,52.37,6,1,0,0,11,1,1,1121,0,0,0 +14637,17950,32737,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,2,8.350693136745354,8.190611910072709,0,3,0,0,0,-9,0,-842.0179337980304,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,23,11,42,44,15,1,11,-9,0,10.71685827354965,10.71685827354965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.09,45.59,3,1,0,0,9,4,0,421,0,0,0 +14638,17951,32738,32739,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-2,9.252926575286125,0,0,0,68,2,2,3,3,3,2019,4,1,31,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.330345158629112,0,124.0299575513494,1,36.84,59.11,3,1,0,0,10,2,1,410,0,0,0 +14638,17951,32739,32738,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,2,0,7.362595529747983,7.3979773994903,1,0,-9,6,0,2,.6987666333699343,0,0,0,66,3,2,3,-9,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.214239616683894,7.216386088778787,0,0,36.86,55.13,3,1,0,0,10,2,1,410,0,0,0 +14639,17952,32740,32741,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,5.918075943111988,5.817824502513228,1,0,-9,49,0,0,-.1743131548867169,0,0,0,76,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.966362033621067,0,0,54.78,43.58,6,1,0,0,7,2,1,611,0,0,0 +14639,17952,32741,32740,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,3.873134677494344,3.9255033106251,1,0,-9,48,0,0,-87.44425373207517,0,0,0,76,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.695035871417823,0,0,0,62.15,31.99,6,1,0,0,7,2,1,611,0,0,0 +14640,17953,32742,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,3,7.917162473920533,7.916567306742709,0,3,0,-9,0,-9,0,-933.8031149195333,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,44,0,15,1,1,-9,0,7.743838668187694,7.743838668187694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.89,49.21,7,1,0,0,12,4,0,409,0,0,0 +14640,17954,32743,-9,32742,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.094254685483468,8.327783429904802,0,3,0,-9,0,-9,0,-870.1322519601599,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,40,0,15,1,0,-9,1,8.8842734652837,8.8842734652837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,12,4,0,386,0,0,0 +14641,17955,32744,32745,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,4.593317398070074,4.335805707468969,1,0,-9,3,0,-4,24.59137942004773,0,0,0,76,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.345712740668593,0,0,52.69,47.38,6,1,0,0,2,2,0,813,0,0,0 +14641,17955,32745,32744,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,4.537664671234138,4.300062976986087,1,0,-9,3,0,4,-69.52885371105364,0,0,0,72,2,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.633623346617923,4.274416618249654,0,0,52.48,55.6,1,1,0,0,2,2,0,813,0,0,0 +14642,17956,32746,32749,-9,-9,2,1,0,45,1,0,4,0,1,-9,6,3,0,2,0,0,0,2,0,-9,24,0,-3,45.93020188084326,0,0,0,48,1,5,1,2,2,2019,3,1,29,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,113.165868662893,3,25.51,41.47,3,1,0,0,9,5,1,801,0,0,0 +14642,17956,32747,-9,32746,32749,4,1,0,11,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-998.3741307955009,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,5,1,801,0,0,0 +14642,17956,32748,-9,32746,32749,6,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1147.941248645275,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,5,1,801,0,0,0 +14642,17956,32749,32746,-9,-9,1,1,1,48,1,0,4,0,1,-9,1,1,0,5,9.606352830701347,9.279681881071726,0,2,0,-9,24,0,3,-45.96140889857303,0,0,0,45,1,2,3,2,3,2019,2,2,10,0,70,70,15,1,0,3,0,30.04658146161689,30.04658146161689,0,0,0,0,0,0,0,1,1,0,1.985347129356454,0,0,0,45.22,63.14,3,1,0,0,9,5,1,801,0,0,0 +14642,17956,32750,-9,32746,32749,3,1,0,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.20050858811,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,5,1,801,0,0,0 +14642,17956,32751,-9,32746,32749,5,1,1,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.4274606016558,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,801,0,0,0 +14643,17957,32752,32753,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.490629109359975,7.30172942767084,0,2,0,-9,25,0,-7,102.6643804658893,0,0,0,55,3,5,1,2,2,2019,1,2,8,0,20,20,15,1,0,1,0,8.117335531402304,8.117335531402304,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,43.46,6,1,0,0,12,4,1,4070,0,0,0 +14643,17957,32753,32752,-9,-9,2,1,1,55,1,0,1,0,3,-9,2,1,0,5,8.982004109784476,8.752857648885467,0,2,0,-9,25,0,7,-15.06108552154219,0,0,0,48,2,3,1,2,2,2019,1,1,6,0,84,84,15,1,0,1,0,9.051441051511313,9.051441051511313,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,12,4,1,4070,0,0,0 +14644,17958,32754,32755,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.107362669785012,6.958612335714775,0,1,0,-9,38,0,-3,24.60496646520691,0,0,0,61,1,5,1,-9,-9,2019,1,1,6,0,24,16,15,1,0,1,0,5.926628128541581,5.926628128541581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,5,1,534,0,0,0 +14644,17958,32755,32754,-9,-9,1,1,1,61,1,0,0,0,1,-9,2,1,0,5,8.416561652331186,9.073671869798654,8.13632381937583,1,0,-9,38,0,3,-37.00179745285421,0,0,0,58,2,4,1,-9,-9,2019,1,2,8,0,19,37,15,1,0,1,0,25.09118041213278,25.09118041213278,0,0,0,0,0,0,0,0,0,0,7.430823054174982,8.099880550011484,0,0,60.02,56.42,2,1,0,0,13,5,1,534,0,0,0 +14645,17959,32756,32757,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,54,0,-1,-39.10933394572506,0,0,0,76,2,4,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.214780251233504,0,0,0,58.05,54.52,6,1,0,0,10,3,1,1765.5,0,0,0 +14645,17959,32757,32756,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,8.311485336480825,8.102810878699701,1,0,-9,54,0,1,-35.7187202416938,0,0,0,75,2,5,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.75959327678665,8.516207234687297,0,0,59.71,50.89,6,1,0,0,10,3,1,1765.5,0,0,0 +14646,17960,32758,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,1,1,0,3,5.691817101424876,5.231890810775695,0,3,0,0,0,-9,0,-1033.903883492128,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,40,40,15,1,0,-9,0,.7299231178290936,.7299231178290936,0,0,0,0,0,0,0,0,0,0,6.32592232289424,0,0,0,57.33,53.46,6,1,0,0,10,2,1,1727,0,0,0 +14647,17961,32759,32761,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,4,9.341193104982194,9.595444760336012,0,2,0,-9,10,0,3,38.19013790358875,0,0,0,45,1,5,1,-9,-9,2019,1,1,10,0,50,70,15,1,0,1,0,27.51373672610503,27.51373672610503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,1,12,5,1,686,0,0,0 +14647,17961,32760,-9,32761,32759,4,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-872.1684245509157,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,12,5,1,686,0,0,0 +14647,17961,32761,32759,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,5,8.241054887128184,8.38503424765895,0,2,0,-9,10,0,-3,-92.66832094515821,0,0,0,48,2,4,1,-9,-9,2019,1,2,12,0,30,31,15,1,0,1,0,20.24302689091715,20.24302689091715,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.23,58.95,6,1,0,1,12,5,1,686,0,0,0 +14647,17961,32762,-9,32761,32759,3,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1042.766980435259,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,12,5,1,686,0,0,0 +14648,17962,32763,32764,-9,-9,1,1,1,61,1,0,0,0,1,-9,1,1,0,3,9.824630078629653,9.547083484501965,0,1,0,-9,38,0,-3,-80.63150384173031,0,0,0,64,1,5,1,-9,2,2019,1,2,12,3,65,70,15,1,3,1,0,32.01912404974294,32.01912404974294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,4,1,0,0,5,5,1,561,0,0,0 +14648,17962,32764,32763,-9,-9,2,1,0,64,1,0,0,0,1,-9,2,1,0,5,7.93254272655355,8.630136726117827,7.445035206596309,1,0,-9,7,0,3,-83.10737377352079,0,0,0,61,1,3,1,2,1,2019,1,1,6,0,20,25,15,1,0,1,0,14.87583934385058,14.87583934385058,0,0,0,0,0,0,0,1,1,0,0,8.018164502355626,0,0,54.69,57.47,6,1,0,0,5,5,1,561,0,0,0 +14649,17963,32765,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1067.993283380701,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,7,1,0,0,11,1,0,270,0,0,0 +14650,17964,32766,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,3,0,5.103615676734778,5.001319721879021,3,0,0,0,-9,0,-1083.473150234687,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.902375007196093,4.914311536099352,.5063833841615268,3,46.63,47.57,6,1,0,0,7,2,1,558,0,0,0 +14651,17965,32767,32768,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,7.981327706957981,7.580141704359061,1,0,-9,14,0,-11,6.096373506467758,0,0,0,71,2,4,3,2,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.802569333390436,0,0,61.12,51.57,6,1,0,0,6,4,1,401,0,0,0 +14651,17965,32768,32767,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,8.033853009234955,7.956040455517429,1,0,-9,14,0,11,-74.9031792084934,0,0,0,60,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8234452856402672,8.15178161026031,0,0,58.3,52.91,6,1,0,0,6,4,1,401,0,0,0 +14651,17966,32769,-9,32767,32768,3,1,0,33,2,0,0,0,1,-9,2,1,0,5,7.798809885467716,7.74605269468751,0,3,0,0,0,-9,0,-938.5157275416753,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,40,38,15,1,0,-9,1,6.251876102497445,6.251876102497445,0,0,0,0,0,0,0,1,1,0,4.001348807146514,0,0,0,54.69,57.47,6,1,0,0,6,3,1,807,0,0,0 +14652,17967,32770,-9,-9,-9,1,1,1,37,3,0,0,0,1,-9,2,1,0,4,8.426614671493953,8.172592868718297,0,3,0,0,0,-9,0,-1033.925247671681,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,41,15,1,0,-9,0,13.86638770889595,13.86638770889595,0,0,0,0,0,0,0,1,1,0,1.576040414011223,0,0,0,58.15,52.91,6,1,0,0,7,5,1,475,0,0,0 +14653,17968,32771,-9,32775,32774,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.481806120325,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1221.4,0,0,0 +14653,17968,32772,-9,32775,32774,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.691830135606,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,1221.4,0,0,0 +14653,17968,32773,-9,32775,32774,3,1,1,14,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1067.082497934717,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,4,1,1221.4,0,0,0 +14653,17968,32774,32775,-9,-9,2,1,1,46,1,0,3,0,2,-9,2,1,0,5,8.766528626562803,8.255771680702155,0,2,0,-9,8,0,4,-62.43895046040086,0,0,0,42,2,4,1,3,3,2019,1,1,11,0,60,60,15,1,0,1,0,9.690891051145714,9.690891051145714,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,4,1,0,0,7,4,1,1221.4,0,0,0 +14653,17968,32775,32774,-9,-9,1,1,0,42,1,0,3,0,2,-9,2,1,0,4,6.90572329314548,6.875844764798245,0,2,0,-9,8,0,-4,-28.4128883020116,0,0,1,46,2,5,1,2,2,2019,1,2,8,0,18,18,15,1,0,1,0,7.530360665448429,7.530360665448429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,1,1221.4,0,0,0 +14654,17969,32776,32777,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,6.001194785611377,5.970314824416288,1,0,-9,6,0,1,-46.52222237166342,0,0,0,66,1,4,3,2,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.918847216714279,11.10196483260921,3,56.53,42.78,6,1,0,0,7,3,1,819,0,0,0 +14654,17969,32777,32776,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,7.621576383335213,7.770789365737618,1,0,-9,6,0,-1,19.28743538953828,0,0,0,67,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.483954807716869,7.379845199302856,0,0,51.83,57.2,6,1,0,0,7,3,1,819,0,0,0 +14655,17970,32778,-9,32779,-9,3,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-919.7259856205361,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,7,1,0,0,8,2,0,762.5,0,0,0 +14655,17970,32779,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,4,7.355076315890034,7.120659061710113,0,4,0,0,0,-9,0,-991.3720603463174,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,13,5,16,22,15,1,5,-9,0,7.709590487099982,7.709590487099982,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.74,52.66,6,1,0,0,8,2,0,762.5,0,0,0 +14655,17971,32780,-9,32779,-9,2,1,1,19,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-956.8346500210353,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,8,1,0,293,0,0,0 +14656,17972,32781,32782,-9,-9,2,1,0,54,1,0,0,0,1,-9,1,1,0,4,7.473581884018619,7.135108518852581,0,1,0,-9,35,0,-5,19.57895690588463,0,0,0,59,1,5,3,2,2,2019,2,1,11,0,18,13,15,1,0,4,0,10.39733025006101,10.39733025006101,0,0,0,0,0,0,0,0,0,0,5.592760512990826,0,0,0,49.18,54.46,7,1,0,0,12,3,1,1081,0,0,0 +14656,17972,32782,32781,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,5,5.752407507719415,7.489213236182673,7.493935604559008,1,0,-9,35,0,5,22.70478082357733,0,0,0,54,1,4,1,2,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.286053180353296,7.538930904467509,0,0,57.06,57.76,6,1,0,0,12,3,1,1081,0,0,0 +14657,17973,32783,-9,-9,-9,1,1,1,77,2,0,0,0,2,-9,4,3,0,3,0,7.211147503700161,7.088810750756974,3,0,0,0,-9,0,-990.421157047643,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.639604662678805,7.053495529477863,0,0,55.2,41.97,6,1,0,0,9,2,1,396,0,0,0 +14658,17974,32784,32786,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.230906361569089,8.265856031277895,0,2,0,-9,7,0,2,39.72035158406685,0,0,1,34,2,4,1,-9,-9,2019,1,1,10,0,24,31,15,1,0,1,0,18.52323153814114,18.52323153814114,0,0,0,0,0,0,0,0,0,0,7.070189023617777,0,0,0,54.2,57.49,7,1,0,0,7,5,1,412.5,0,0,0 +14658,17974,32785,-9,32784,32786,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.6984420937822,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,7,5,1,412.5,0,0,0 +14658,17974,32786,32784,-9,-9,1,1,1,34,1,1,2,0,2,-9,2,1,0,4,8.978766035234925,8.975816189737721,0,2,0,-9,7,0,-2,-60.47678945401485,0,0,0,36,1,4,1,3,2,2019,1,2,7,0,48,48,15,1,0,1,0,21.10976794787062,21.10976794787062,0,0,0,0,0,0,0,0,0,0,5.610119996309845,0,0,0,57.16,56.15,6,1,0,0,7,5,1,412.5,0,0,0 +14658,17974,32787,-9,32784,32786,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-932.3507324231617,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,5,1,0,0,7,5,1,412.5,0,0,0 +14659,17975,32788,-9,-9,-9,1,1,1,56,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-996.0514237496642,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.26,30.38,5,1,0,0,4,1,0,411,0,0,0 +14660,17976,32789,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,2,1,0,4,7.241639850067153,7.557436670765627,0,3,0,0,0,-9,0,-1081.177714963456,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,30,30,15,1,0,-9,0,6.514660288949012,6.514660288949012,0,0,0,0,0,0,0,1,1,0,3.065141614716796,0,0,0,51.24,58.84,1,1,0,0,5,3,1,1414,0,0,0 +14661,17977,32790,-9,-9,-9,1,1,0,25,2,0,0,1,1,0,7,2,0,4,6.950025155984267,6.644941602517805,0,3,0,0,0,-9,0,-975.0990495173388,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,8,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,5,4,0,0,7,2,0,1175,0,0,0 +14662,17978,32791,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,1,1,0,5,9.871164478752744,9.830995461929303,0,3,0,0,0,-9,0,-1034.455022496291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,48,40,15,1,0,-9,0,35.60513264728801,35.60513264728801,0,0,0,0,0,0,0,0,0,0,0,0,0,3,69.18000000000001,41.33,1,3,0,0,8,5,0,823,0,0,0 +14663,17979,32792,32793,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,5,9.202011287700236,9.45824842325155,0,1,0,-9,40,0,0,-1.653679422512718,0,0,0,56,1,4,1,2,1,2019,1,1,7,0,43,45,15,1,0,1,0,27.23285990052064,27.23285990052064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,2,5,1,281,0,0,0 +14663,17979,32793,32792,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,7.420235490903532,8.451135992609771,7.543385167388369,1,0,-9,38,0,0,-70.28278761554058,0,0,0,56,1,5,1,1,-9,2019,1,2,4,0,15,45,15,1,0,1,0,15.83834929290279,15.83834929290279,0,0,0,0,0,0,0,0,0,0,1.465779504769968,7.708773659189497,0,0,49.97,56.66,6,1,0,0,2,5,1,281,0,0,0 +14664,17980,32794,32795,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,50,0,-3,-23.41876230328829,0,0,0,73,2,3,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,63.24,42.39,7,1,0,0,10,2,1,528,0,0,0 +14664,17980,32795,32794,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,5.15745055999151,5.311059708306324,1,0,-9,50,0,3,46.99736035385578,0,0,0,70,2,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.948849641892239,5.196547262550884,0,3,57.33,53.46,7,1,0,0,10,2,1,528,0,0,0 +14665,17981,32796,-9,-9,-9,1,1,1,85,3,0,0,0,2,-9,4,3,0,3,0,9.377794964411615,9.07586945487696,3,0,-9,0,1,0,-1036.82902809243,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.209049932015136,9.245830401218935,0,0,35.84,61.77,5,1,0,0,10,5,1,1443,0,0,0 +14666,17982,32797,32798,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,38,0,-1,69.69835975081381,0,0,0,77,3,2,3,-9,-9,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.953569002117919,0,0,0,57.16,56.15,6,1,0,0,8,2,1,1368,0,0,0 +14666,17982,32798,32797,-9,-9,2,1,0,77,1,0,0,0,3,-9,4,3,0,2,0,5.257307933660704,5.059350097945608,1,0,-9,37,0,1,113.3527380599861,0,0,0,76,3,4,3,3,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.45452556201581,0,0,45.53,45.57,6,4,0,0,8,2,1,1368,0,0,0 +14667,17983,32799,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,4,8.613013035608896,8.907732759365897,0,3,0,0,0,-9,0,-1034.302350012067,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,36,37,15,1,1,-9,0,21.8071924232878,21.8071924232878,0,0,0,0,0,0,0,0,0,0,5.724723106458362,0,0,0,48.53,58.91,6,1,0,0,8,5,0,1401,0,0,0 +14668,17984,32800,-9,32802,32801,4,1,0,17,2,0,0,1,2,0,7,2,0,2,5.569447000113679,6.035658204358429,0,1,0,0,0,-9,0,-962.6010136209453,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,9,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.111265014814906,0,8.437282924531527,3,39.14,41.63,5,1,0,0,4,4,1,477.3333333333333,0,0,0 +14668,17984,32801,32802,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.484585942607341,8.902477808320466,6.675150525889046,1,0,-9,31,0,1,51.49027978208093,0,0,0,53,2,1,3,3,3,2019,2,1,12,0,38,46,15,1,0,3,0,11.93104094724031,11.93104094724031,0,0,0,0,0,0,0,1,1,0,4.017803845447214,6.649956964239048,0,0,47.84,49.93,3,1,0,0,4,4,1,477.3333333333333,0,0,0 +14668,17984,32802,32801,-9,-9,1,1,0,53,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,31,0,-1,38.37807722380278,0,0,0,54,2,2,1,2,2,2019,3,2,28,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.83791023797097,3,30.37,24.2,2,1,0,0,4,4,1,477.3333333333333,0,0,0 +14668,17985,32803,-9,32802,32801,3,1,0,22,2,0,0,0,1,-9,2,1,0,4,7.642875332227073,7.399623813851934,0,3,0,0,0,-9,0,-1063.388543890213,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,40,18,15,1,2,-9,1,5.767943883680646,5.767943883680646,0,0,0,0,0,0,0,1,1,0,.6679264121364791,0,0,0,54.2,57.49,7,1,0,0,4,3,1,267,0,0,0 +14669,17986,32804,32805,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,4,8.020821848155832,8.007305583079024,0,1,0,-9,1,-9,5,81.13981178189314,-9,0,1,32,1,2,1,2,3,2019,1,2,9,0,37,0,15,1,0,1,0,10.62482527041276,10.62482527041276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.33,52.79,6,1,0,0,13,4,0,450,0,0,0 +14669,17986,32805,32804,-9,-9,2,1,1,32,1,0,0,0,1,-9,2,1,0,2,7.917380810590887,7.899755665201893,0,1,0,-9,1,-9,-5,-88.73106055690801,-9,0,0,37,2,4,1,-9,-9,2019,1,1,15,4,37,0,15,1,4,1,0,11.33254298964277,11.33254298964277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,50.79,5,1,0,0,13,4,0,450,0,0,0 +14670,17987,32806,-9,-9,-9,1,1,0,21,3,0,0,0,2,-9,2,1,0,3,7.602780449800731,7.659946304184583,0,3,0,-9,0,-9,0,-1077.383369355274,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,47,0,15,1,0,-9,0,6.503839605401057,6.503839605401057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.24,43.71,2,3,0,0,9,3,1,2652,0,0,0 +14671,17988,32807,-9,-9,-9,1,1,1,69,3,0,0,0,3,-9,4,3,0,2,0,3.900550238162899,3.728815262007246,3,0,0,0,-9,0,-1079.292215754346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.794231640406359,3.9544354628186,0,3,49.7,24.61,4,1,0,1,7,1,1,232,0,0,0 +14672,17989,32808,-9,-9,-9,1,1,1,48,2,0,0,0,1,-9,2,1,0,4,8.757221625377277,8.894268939127313,0,3,0,0,0,-9,0,-1071.137028316852,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,35,30,15,1,0,-9,0,19.86955660590058,19.86955660590058,0,0,0,0,0,0,0,0,0,0,4.657425632269112,0,0,0,51.24,58.84,5,1,0,0,4,5,1,438,0,0,0 +14673,17990,32809,32810,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,5,8.584345996614633,8.297772204040388,0,2,0,-9,23,0,1,135.7193371398519,0,0,0,47,1,4,1,2,2,2019,1,1,17,5,39,39,15,1,5,1,0,19.24537708626839,19.24537708626839,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,7,1,0,0,6,5,1,2866,0,0,0 +14673,17990,32810,32809,-9,-9,1,1,0,47,1,0,1,0,1,-9,2,1,0,4,8.486428699752723,8.780087411922958,0,2,0,-9,25,0,-1,-12.69417057917108,0,0,0,48,2,5,1,2,2,2019,1,2,6,0,49,55,15,1,0,1,0,11.70834251102491,11.70834251102491,0,0,0,0,0,0,0,1,1,0,7.386012229035649,0,0,0,57.16,56.15,6,1,0,0,6,5,1,2866,0,0,0 +14674,17991,32811,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-995.1200349763828,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.55,19.9,4,1,0,0,12,1,0,708,0,0,0 +14675,17992,32812,32813,-9,-9,2,1,1,34,1,0,0,0,2,-9,2,1,0,4,7.86247372859676,8.021710537391307,0,1,0,-9,1,-9,10,0,-9,0,0,24,2,3,1,-9,-9,2019,1,1,9,0,47,0,15,1,0,1,0,9.20240433324452,9.20240433324452,0,0,0,0,0,0,0,0,0,0,2.836017958515749,0,0,0,55.79,52.62,5,1,0,0,6,4,0,670,0,0,0 +14675,17992,32813,32812,-9,-9,1,1,0,24,1,0,0,0,2,-9,2,1,0,3,8.031146108064725,7.898058509618771,0,1,0,1,1,-9,-10,0,0,1,1,34,2,4,1,2,2,2019,1,2,12,0,41,40,15,1,0,1,0,9.465635296506354,9.465635296506354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.88,45.75,5,1,0,0,6,4,0,670,0,0,0 +14676,17993,32814,-9,-9,-9,1,1,0,33,2,0,0,0,1,-9,2,1,0,5,8.474263575302295,8.324263919271793,0,3,0,-9,0,-9,0,-1044.064765683731,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,38,0,15,1,0,-9,0,16.90139426004536,16.90139426004536,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.32,48.05,2,1,0,0,2,5,1,352,0,0,0 +14677,17994,32815,32816,-9,-9,1,1,1,56,1,2,2,0,3,-9,1,1,0,5,6.609458646586056,7.394926018917441,6.800253249743131,2,0,-9,37,0,1,31.4425077083671,0,0,0,55,3,5,1,-9,-9,2019,1,2,10,0,60,40,15,1,0,1,0,2.07954116164302,2.07954116164302,0,0,0,0,0,0,0,1,1,0,0,6.681032489969042,0,0,48.08,42.6,6,1,0,0,4,2,1,2185.5,0,0,0 +14677,17994,32816,32815,-9,-9,2,1,0,55,1,2,2,0,3,-9,2,1,0,5,6.965659682481039,6.949824469963794,0,2,0,-9,37,0,-1,-44.98845645755484,0,0,0,56,3,5,1,3,3,2019,1,1,11,1,6,6,15,1,1,1,0,22.53442977678497,22.53442977678497,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.24,58.02,5,1,0,0,4,2,1,2185.5,0,0,0 +14677,17995,32817,-9,32818,-9,4,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-949.0135279302062,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,548,0,0,0 +14677,17995,32818,-9,32816,32815,3,1,0,26,2,2,2,0,1,-9,5,1,0,3,8.306421016944361,8.127382491484731,0,3,0,0,0,-9,0,-888.4874256555008,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,17,5,36,36,15,1,5,-9,1,12.79173534750066,12.79173534750066,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.03,43.91,6,1,0,0,4,4,1,548,0,0,0 +14677,17995,32819,-9,32818,-9,5,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1048.748723313858,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,4,1,548,0,0,0 +14678,17996,32820,32821,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,6.697081558157693,8.1755002264262,8.053031447367562,1,0,-9,41,0,3,28.19784709015961,0,0,0,55,2,1,3,3,3,2019,2,2,7,0,13,13,15,1,0,3,0,7.944116606912207,7.944116606912207,0,0,0,0,0,0,0,1,1,0,6.981173755908836,7.954392664735331,14.14778069441036,3,57.16,56.15,6,1,0,0,5,3,1,1287,0,0,0 +14678,17996,32821,32820,32822,-9,2,1,0,55,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,6,0,-3,-49.15494489982458,0,0,0,58,2,4,1,2,1,2019,3,1,18,5,0,41,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.131138719392793,0,9.415264472698713,3,36.42,21.2,2,1,0,0,5,3,1,1287,0,0,0 +14678,17997,32822,-9,-9,-9,3,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-869.5107171289023,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.343443492015322,0,0,0,52,45,6,1,0,0,5,1,1,160,0,0,0 +14678,17998,32823,-9,32821,32820,4,1,1,33,2,0,0,0,2,-9,2,1,0,2,8.370870380739454,8.537331900816076,0,3,0,0,0,-9,0,-995.395277947566,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,45,0,15,1,5,-9,1,12.65661953791848,12.65661953791848,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.96,40.82,4,1,0,0,5,4,1,691,0,0,0 +14679,17999,32824,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,2,1,0,3,7.796118582292388,7.986361540535763,4.965462465003159,3,0,0,0,-9,0,-1056.925823264427,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,38,15,1,0,-9,0,7.621709543854678,7.621709543854678,0,0,0,0,0,0,0,1,1,0,0,5.168736056357726,0,0,50.63,50.99,6,1,0,1,11,3,1,212,0,0,0 +14680,18000,32825,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1064.227809647866,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,44.82,5,1,0,0,13,1,1,496,0,0,0 +14681,18001,32826,32827,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,7.155304289132635,7.288152086671507,1,0,-9,10,0,3,-48.13765647824833,0,0,0,71,1,3,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.636718388213233,7.457201432202781,0,0,58.3,52.91,6,1,0,0,11,4,1,1359.5,0,0,0 +14681,18001,32827,32826,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,8.175651141829261,7.91128953656289,1,0,-9,10,0,-3,-17.28085998184286,0,0,0,74,2,4,3,2,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.695650739118618,7.84144070639926,0,0,56.19,41.56,7,1,0,0,11,4,1,1359.5,0,0,0 +14682,18002,32828,-9,-9,-9,1,1,0,55,2,0,0,0,2,-9,2,1,0,2,7.697733175819186,7.564479630263078,0,3,0,0,0,-9,0,-987.1757457317912,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,10,30,30,15,1,10,-9,0,6.71646093226349,6.71646093226349,0,0,0,0,0,0,0,1,0,1,3.285782867554331,0,0,0,17.94,50.14,2,1,0,0,4,3,1,134,0,0,0 +14683,18003,32829,32832,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,4,7.922862292229184,7.716105897717596,0,2,0,-9,17,0,-3,46.29629335219502,0,0,1,44,2,4,1,2,3,2019,1,2,11,0,23,26,15,1,0,1,0,12.00488416264091,12.00488416264091,0,0,0,0,0,0,0,1,1,0,3.312316285082161,0,0,0,59.15,49.67,5,1,0,0,10,5,1,1388.25,0,0,0 +14683,18003,32830,-9,32829,32832,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1135.021823549981,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,5,1,1388.25,0,0,0 +14683,18003,32831,-9,32829,32832,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1131.665110241001,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,5,1,1388.25,0,0,0 +14683,18003,32832,32829,-9,-9,2,1,1,44,1,0,2,0,2,-9,1,1,0,4,8.983076116419371,9.21556449940271,0,2,0,-9,17,0,3,-88.28583049059021,0,0,0,41,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,23.83256258833259,23.83256258833259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,5,1,1388.25,0,0,0 +14684,18004,32833,-9,-9,-9,1,1,0,22,2,0,0,1,2,-9,7,2,0,3,0,4.871761271023665,4.987884252678224,3,0,-9,0,-9,0,-998.8016924031612,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,21,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.801172740708703,0,0,0,21.67,59.26,5,1,0,0,6,1,0,732,0,0,0 +14684,18005,32834,-9,-9,-9,3,1,0,19,2,0,0,1,2,-9,7,2,0,4,3.718246978743817,7.711791935084205,7.358022983564135,3,0,-9,0,-9,0,-985.3931462935831,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.411625960567561,0,0,0,32.03,56.92,5,3,0,0,6,3,0,118,0,0,0 +14685,18006,32835,32836,-9,-9,1,1,1,30,1,1,1,0,2,-9,2,1,0,5,9.143215245391502,9.001341039576223,0,2,0,-9,1,-9,-5,11.23713806168653,-9,0,0,35,1,3,1,-9,-9,2019,1,2,9,0,20,0,15,1,0,1,0,37.18184822600567,37.18184822600567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,5,1,0,0,1,5,1,1234.666666666667,0,0,0 +14685,18006,32836,32835,-9,-9,2,1,0,35,1,1,1,0,1,-9,2,1,0,3,8.438175434408192,8.464607948894409,0,2,0,-9,1,-9,5,-139.3871761503089,-9,0,1,30,2,5,1,-9,-9,2019,1,1,12,1,41,0,15,1,1,1,0,17.05226697128054,17.05226697128054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.01,46.14,3,1,0,0,1,5,1,1234.666666666667,0,0,0 +14685,18006,32837,-9,32836,32835,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1048.683170062786,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,1,5,1,1234.666666666667,0,0,0 +14686,18007,32838,32840,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,3,9.32587122268248,8.64989479542591,0,2,0,-9,14,0,3,88.65924057718996,0,0,0,44,3,4,1,2,2,2019,1,2,6,0,49,52,15,1,0,1,0,14.76172071311944,14.76172071311944,0,0,0,0,0,0,0,1,1,0,.0837064379784929,0,0,0,58.32,50.22,6,3,0,0,10,5,1,982.3333333333334,0,0,0 +14686,18007,32839,-9,32838,32840,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.111412346584,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,10,5,1,982.3333333333334,0,0,0 +14686,18007,32840,32838,-9,-9,2,1,1,44,1,0,1,0,3,-9,2,1,0,4,8.131911077356026,7.941435152270145,0,2,0,-9,14,0,-3,-17.26834000146853,0,0,0,47,3,3,1,1,1,2019,1,1,7,0,56,44,15,1,0,1,0,6.363013012567098,6.363013012567098,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,10,5,1,982.3333333333334,0,0,0 +14687,18008,32841,-9,-9,-9,1,1,0,28,2,1,1,0,2,-9,2,1,0,4,7.013128234082138,7.103219752617141,0,4,0,0,0,-9,0,-985.462895981169,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,2,0,16,16,15,1,0,-9,0,8.285187736652631,8.285187736652631,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,10,2,0,585.5,0,0,0 +14687,18008,32842,-9,32841,-9,2,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1094.877123042951,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,2,0,585.5,0,0,0 +14688,18009,32843,-9,-9,-9,1,1,1,55,3,0,0,0,2,-9,1,1,0,3,7.999740591928942,7.858807175016176,0,3,0,0,0,-9,0,-1059.864300145416,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,20,30,15,1,3,-9,0,18.04190050989114,18.04190050989114,0,0,0,0,0,0,0,0,0,0,9.126515192404781,0,0,0,48.13,38.29,3,1,0,0,4,3,1,106,0,0,0 +14688,18010,32844,-9,-9,32843,2,1,0,19,2,0,0,0,2,-9,2,1,0,2,6.227254048921553,6.19467658038576,0,3,0,0,0,-9,0,-1058.952312809685,0,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,16,0,0,17,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.59,59.52,5,3,0,0,4,2,1,84,0,0,0 +14689,18011,32845,32846,-9,-9,3,1,0,44,1,0,0,0,2,-9,2,1,0,4,8.675047469683024,8.686372279793682,0,1,0,-9,1,-9,-21,-35.95452047708552,-9,0,1,65,2,3,1,-9,-9,2019,1,1,15,3,50,0,15,1,3,1,0,14.25719478629639,14.25719478629639,0,0,0,0,0,0,0,1,1,0,2.834507623691517,0,0,0,39.29,58.79,3,1,0,0,4,5,1,279,0,0,0 +14689,18011,32846,32845,-9,-9,1,1,1,65,1,0,0,0,2,-9,1,1,0,3,8.358560707756249,8.074788770670054,0,1,0,1,1,-9,21,-5.639658760514153,0,0,0,44,2,4,1,2,3,2019,1,3,15,3,65,65,15,1,3,1,0,7.546142731889153,7.546142731889153,0,0,0,0,0,0,0,1,1,0,3.208238935865032,0,0,0,39.68,50.64,5,1,0,0,4,5,1,279,0,0,0 +14689,18012,32847,-9,-9,32846,2,1,1,27,2,0,0,0,2,-9,2,1,0,3,7.476895628115264,7.421995735429785,0,3,0,0,0,-9,0,-1054.852968756805,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,3,70,75,15,1,3,-9,1,3.417618617609398,3.417618617609398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.05,55.75,3,1,0,0,4,3,1,468,0,0,0 +14690,18013,32848,32849,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,1,0,5.05545391829148,4.918342334846091,1,0,-9,54,0,2,85.11650457420022,0,0,0,70,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.689963136624688,5.029850648551833,0,0,60.33,25.24,7,1,0,0,9,1,0,483.5,0,0,0 +14690,18013,32849,32848,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,54,0,-2,93.81416680151526,0,0,0,72,3,1,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,3.7604629771555,0,0,0,0,1,1,0,0,0,0,0,63.98,38.08,7,1,0,0,9,1,0,483.5,0,0,0 +14691,18014,32850,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-950.6722727584537,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,1.847031412146589,0,10.42666588825829,0,0,12.27100743760612,1,1,0,0,0,0,0,38.55,16.5,1,1,0,0,5,1,0,425,0,0,0 +14692,18015,32851,32852,-9,-9,1,1,0,25,1,0,0,0,1,-9,1,1,0,2,7.484113772729692,7.524661135281264,0,1,0,1,1,-9,-2,-83.1875796605369,0,1,1,27,1,4,1,-9,-9,2019,1,2,11,1,18,0,15,1,1,1,0,10.99601906069476,10.99601906069476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.68,43.71,7,3,0,0,7,5,0,658,0,0,0 +14692,18015,32852,32851,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.653687768791333,8.522330828375658,0,1,0,-9,1,-9,2,-116.3205642040909,-9,1,0,25,1,2,1,-9,-9,2019,1,1,8,0,38,0,15,1,0,1,0,21.21739128683546,21.21739128683546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,6,3,0,0,7,5,0,658,0,0,0 +14693,18016,32853,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,3,0,6.371938905310937,6.970667577370235,3,0,-9,0,1,0,-1013.343453663517,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.411388029078348,6.652539532156553,1.944569537098667,3,54.37,54.8,6,1,0,0,10,2,1,959,0,0,0 +14694,18017,32854,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-961.6706589332359,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.1,29.68,3,1,0,0,12,1,0,209,0,0,0 +14694,18018,32855,-9,32854,-9,2,1,0,34,2,0,0,0,2,-9,2,1,0,1,7.500177227680444,7.399662928070598,0,3,0,0,0,-9,0,-1032.975430079643,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,27,11,34,34,15,1,11,-9,1,5.80510297151829,5.80510297151829,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.45,12.16,2,1,0,0,12,3,0,347,0,0,0 +14695,18019,32856,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-945.1628246589202,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,32,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,15.45587874611801,3,30.6,18.53,1,1,0,1,6,1,0,493,0,0,0 +14695,18020,32857,-9,32856,-9,2,1,0,21,2,0,0,0,2,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-938.825962738738,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,5.316724988539184,0,0,0,46.59,43.6,4,1,0,0,6,1,0,295,0,0,0 +14696,18021,32858,32859,-9,-9,2,1,1,43,1,0,3,0,1,-9,3,3,0,1,0,0,0,2,0,-9,15,0,4,0,0,0,0,39,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.69,33,5,3,1,1,8,1,1,589.6666666666666,0,0,0 +14696,18021,32859,32858,-9,-9,1,1,0,39,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,14,0,-4,0,0,0,1,43,1,1,3,3,2,2019,4,2,8,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.757138395225859,3,47.79,53.79,5,3,0,0,8,1,1,589.6666666666666,0,0,0 +14696,18021,32860,-9,32859,32858,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.0593816210396,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,1,589.6666666666666,0,0,0 +14697,18022,32861,-9,-9,-9,1,1,1,62,2,0,0,0,3,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-994.1983829648221,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.45,48.95,5,1,1,0,12,1,0,775,0,0,0 +14698,18023,32862,-9,32863,-9,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1001.594413137962,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,767.6666666666666,0,0,0 +14698,18023,32863,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,3,8.013463374914306,8.3397124062122,6.143936549834054,4,0,0,0,-9,0,-970.4596643545487,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,20,8,37,37,15,1,8,-9,0,7.753879418792613,7.753879418792613,0,0,0,0,0,0,0,1,1,0,7.062084582428124,0,0,0,34.11,53.41,4,1,0,0,5,3,1,767.6666666666666,0,0,0 +14698,18023,32864,-9,32863,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1056.555258909285,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,767.6666666666666,0,0,0 +14699,18024,32865,32866,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,9.041040199629208,9.219993936503354,1,0,-9,52,0,1,-44.63927446297717,0,0,0,71,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.870835242360296,9.286317812447065,0,0,60.02,56.42,6,1,0,0,9,5,1,3123,0,0,0 +14699,18024,32866,32865,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,6.491471063487113,5.898781791649758,1,0,-9,52,0,-1,-106.7086568573178,0,0,0,72,2,5,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.317626296818475,0,0,47.16,47.96,6,1,0,0,9,5,1,3123,0,0,0 +14700,18025,32867,-9,-9,-9,1,1,1,79,3,0,0,0,3,-9,4,3,0,2,0,6.459802334316398,6.327988898458544,3,0,0,0,-9,0,-1006.855619164073,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.423053968791351,6.454115177964634,0,0,55.86,32.97,6,1,0,0,1,2,0,761,0,0,0 +14701,18026,32868,-9,32871,32872,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.070250715522,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,3,0,0,8,5,1,983,0,0,0 +14701,18026,32869,-9,32871,32872,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1057.568242645012,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,3,0,0,8,5,1,983,0,0,0 +14701,18026,32870,-9,32871,32872,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.9224580302778,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,5,3,0,0,8,5,1,983,0,0,0 +14701,18026,32871,32872,-9,-9,2,1,0,37,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,13,0,-1,23.99968809181563,0,0,1,38,1,4,1,1,1,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.405142953750502,0,0,0,43.71,56.91,6,3,0,0,8,5,1,983,0,0,0 +14701,18026,32872,32871,-9,-9,1,1,1,38,1,0,3,0,1,-9,2,1,0,4,9.49341293359061,9.916854509193609,0,2,0,-9,13,0,1,-66.33232297443648,0,0,0,37,1,3,3,3,3,2019,2,2,9,1,45,40,15,1,1,3,0,32.84686143570354,32.84686143570354,0,0,0,0,0,0,0,0,0,0,8.285748564693131,0,0,0,55.3,55.6,6,3,0,0,8,5,1,983,0,0,0 +14702,18027,32873,32874,-9,-9,1,1,1,65,1,0,0,0,1,-9,2,1,0,4,5.948393969413091,8.431797032472302,8.362349141315709,1,0,-9,46,0,-1,136.808660081792,0,0,0,66,2,4,3,3,2,2019,2,2,5,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.87723495343189,8.166956015007456,0,0,60.13,49.27,6,1,0,0,4,4,1,186,0,0,0 +14702,18027,32874,32873,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,7.399754670677852,7.281034262814475,1,0,-9,46,0,1,66.06430147198695,0,0,0,65,1,4,1,-9,-9,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.890597931422498,7.563595442826304,0,0,54.95,44.79,6,1,0,0,4,4,1,186,0,0,0 +14703,18028,32875,-9,32877,32876,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.1091451651829,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,7,5,1,1567,0,0,0 +14703,18028,32876,32877,-9,-9,2,1,1,46,1,0,3,0,2,-9,1,1,0,4,7.160879833859494,7.313550554522126,0,2,0,-9,7,0,-2,68.55745948991311,0,0,0,48,1,3,1,2,2,2019,1,1,1,0,30,30,15,1,0,1,0,6.610291289472118,6.610291289472118,0,0,0,0,0,0,0,1,1,0,1.847371631326483,0,0,0,57.74,49,2,1,0,0,7,5,1,1567,0,0,0 +14703,18028,32877,32876,-9,-9,1,1,0,48,1,0,3,0,1,-9,1,1,0,3,9.294961728987428,9.226966360546296,0,2,0,-9,7,0,2,50.62335656038391,0,0,0,46,2,4,1,1,1,2019,1,2,12,1,30,0,15,1,1,1,0,42.4210056949416,42.4210056949416,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.8,50.31,5,2,0,0,7,5,1,1567,0,0,0 +14703,18028,32878,-9,32877,32876,5,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-881.038074197937,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,2,0,0,7,5,1,1567,0,0,0 +14703,18028,32879,-9,32877,32876,3,1,0,16,2,0,3,1,2,-9,7,2,0,5,4.712255813025743,4.599023469401993,0,2,0,0,0,-9,0,-1083.560236720885,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,2,0,0,7,5,1,1567,0,0,0 +14704,18029,32880,-9,32882,32881,3,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.805291784433,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,5,1,0,0,9,5,1,578,0,0,0 +14704,18029,32881,32882,-9,-9,1,1,1,61,1,0,1,0,1,-9,1,1,0,4,9.57784270465277,9.968885402421073,8.988299229490034,2,0,-9,21,0,8,39.67475142127478,0,0,0,53,1,4,2,1,1,2019,2,2,8,0,40,0,15,1,0,2,0,39.42405156048691,39.42405156048691,0,0,0,0,0,0,0,0,0,0,9.382383955732294,9.37659302218489,0,0,60.12,54.8,6,1,0,0,9,5,1,578,0,0,0 +14704,18029,32882,32881,-9,-9,2,1,0,53,1,0,1,0,1,-9,7,2,0,4,0,0,0,2,0,-9,22,0,-8,-18.46497083972756,1,0,0,61,1,4,1,3,2,2019,3,1,6,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.731331479476064,0,0,0,51.83,57.2,7,1,0,0,9,5,1,578,0,0,0 +14705,18030,32883,32884,-9,-9,1,1,1,90,1,0,0,0,2,-9,4,3,0,4,0,8.299918561255762,7.739114471237754,1,0,-9,8,0,7,-44.51329080817455,0,0,0,83,2,1,3,3,2,2019,4,2,8,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.399486806519745,8.315173680364273,0,1,48.61,53.58,7,1,0,0,1,3,1,530,0,0,0 +14705,18030,32884,32883,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,8,0,-7,16.1824638861752,0,0,0,90,2,4,3,3,3,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,1,5.342237961608508,0,0,0,0,51.92125848525021,1,1,0,0,0,0,1,37.19,34.68,7,1,0,0,1,3,1,530,0,0,0 +14706,18031,32885,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,3,7.660236613026558,7.740358026420717,0,3,0,0,0,-9,0,-849.2475674278418,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,37,37,15,1,1,-9,0,9.675061020124966,9.675061020124966,0,0,0,0,0,0,0,1,1,0,0,0,6.090982222723203,3,52.97,51.29,6,1,0,0,10,4,1,366,0,0,0 +14707,18032,32886,32887,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.944394900505861,8.017832284343793,0,1,0,-9,35,0,1,-32.85601185325429,0,0,0,58,2,4,1,-9,2,2019,1,2,9,0,30,30,15,1,0,1,0,13.04272886869225,13.04272886869225,0,0,0,0,0,0,0,0,0,0,6.008651456051822,0,.4991966422367908,3,54.8,50.32,6,1,0,0,7,4,1,564.5,0,0,0 +14707,18032,32887,32886,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,4,7.467408636305215,7.60807136351074,0,1,0,-9,35,0,-1,20.2037211849218,0,0,0,59,2,4,1,2,2,2019,1,1,10,0,45,45,15,1,0,1,0,6.460153501227116,6.460153501227116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.42,49.34,6,1,0,0,7,4,1,564.5,0,0,0 +14708,18033,32888,32889,-9,-9,1,1,0,47,1,0,1,0,2,-9,3,3,0,1,0,0,0,2,0,-9,30,0,-5,0,0,0,0,52,3,4,3,3,3,2019,4,2,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.04,33.14,3,1,1,0,10,1,0,538.6666666666666,0,0,0 +14708,18033,32889,32888,-9,-9,2,1,1,52,1,0,1,0,3,-9,3,3,0,4,0,0,0,2,0,-9,30,0,5,0,-9,0,0,47,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,1,0,10,1,0,538.6666666666666,0,0,0 +14708,18033,32890,-9,32888,32889,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.8051288270138,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,1,0,538.6666666666666,0,0,0 +14709,18034,32891,32892,-9,-9,1,1,0,75,1,0,0,0,3,-9,2,1,0,3,6.81917225438796,7.199600756699827,6.319999786388348,1,0,-9,56,0,-5,29.90006211967149,0,0,0,80,2,4,3,-9,-9,2019,2,2,6,0,15,15,15,1,0,4,0,6.416250908890865,6.416250908890865,0,0,0,0,0,0,0,1,1,0,0,5.889581408289163,0,0,59.31,49.81,7,1,0,0,12,3,1,681,0,0,0 +14709,18034,32892,32891,-9,-9,2,1,1,80,1,0,0,0,2,-9,4,3,0,4,0,7.270812052545549,7.066283276838408,1,0,-9,56,0,5,-38.71353287027541,0,0,0,75,3,3,1,2,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.909540068367973,0,0,54.79,55.86,6,1,0,0,12,3,1,681,0,0,0 +14710,18035,32893,32894,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,4,8.087677440008614,8.151610868626094,0,2,0,-9,5,0,0,-39.40481880030691,0,0,0,36,2,3,1,-9,-9,2019,1,1,7,0,40,40,15,1,0,1,0,10.19093966570117,10.19093966570117,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,4,1,2243.333333333333,0,0,0 +14710,18035,32894,32893,-9,-9,1,1,0,36,1,1,1,0,2,-9,2,1,0,3,7.54185505834434,8.010225244743632,0,2,0,-9,5,0,0,-29.71509101284389,0,0,1,36,2,4,1,1,1,2019,1,2,8,0,25,43,15,1,0,1,0,8.670415193570463,8.670415193570463,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,6,1,0,0,5,4,1,2243.333333333333,0,0,0 +14710,18035,32895,-9,32894,32893,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.2338541467345,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,4,1,2243.333333333333,0,0,0 +14711,18036,32896,-9,32899,32897,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.3630253866003,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,6,5,1,427.25,0,0,0 +14711,18036,32897,32899,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.029251147884015,9.251587542282673,0,2,0,-9,6,0,5,-81.49047560378611,0,0,0,41,1,3,1,-9,-9,2019,1,1,9,0,39,37,15,1,1,1,0,29.13895112170477,29.13895112170477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,3,0,0,6,5,1,427.25,0,0,0 +14711,18036,32898,-9,32899,32897,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-909.9909817808312,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,6,5,1,427.25,0,0,0 +14711,18036,32899,32897,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,3,8.313345078371334,8.581755765577984,0,2,0,-9,20,0,-5,52.87569437812437,0,0,1,46,1,4,1,3,2,2019,1,2,16,6,34,35,15,1,6,1,0,14.60663278948081,14.60663278948081,0,0,0,0,0,0,0,1,1,0,0,0,0,3,38.12,55.5,3,3,0,0,6,5,1,427.25,0,0,0 +14712,18037,32900,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1045.74115940039,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,116.7498639047601,3,39.69,33.32,4,1,0,0,13,1,1,881,0,0,0 +14712,18038,32901,-9,32900,-9,3,1,1,30,2,0,0,0,2,-9,1,1,0,5,7.235852362427875,7.288181828721902,0,3,0,0,0,-9,0,-1092.715425565564,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,20,12,15,1,0,-9,1,7.922383262027742,7.922383262027742,0,0,0,0,0,0,0,1,1,0,0,0,13.30132218191116,3,62.39,56.71,7,1,0,0,13,3,1,400,0,0,0 +14713,18039,32902,32903,-9,-9,2,1,0,34,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,10,0,-4,0,-9,0,1,38,2,1,3,3,3,2019,4,1,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.86,51.46,3,1,0,0,13,1,1,277.5,0,0,0 +14713,18039,32903,32902,-9,-9,1,1,1,38,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,14,0,4,0,0,0,0,34,3,1,3,3,3,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.48659001959089,1,38.33,21.71,5,1,0,0,13,1,1,277.5,0,0,0 +14714,18040,32904,-9,32906,32905,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-872.7643903930203,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,0,775.25,0,0,0 +14714,18040,32905,32906,-9,-9,2,1,1,51,1,0,2,0,2,-9,2,1,0,4,8.310903437043853,8.420015891510541,0,2,0,-9,11,0,10,56.26486990126639,0,0,0,41,2,2,3,2,-9,2019,2,1,7,0,45,37,15,1,0,3,0,12.56180657067856,12.56180657067856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,7,1,0,0,2,3,0,775.25,0,0,0 +14714,18040,32906,32905,-9,-9,1,1,0,41,1,0,2,0,2,-9,3,3,0,2,0,0,0,2,0,-9,11,0,-10,-62.65937194615833,0,0,1,51,2,4,1,3,3,2019,3,2,14,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.17973572893317,3,42.55,34.95,6,1,1,0,2,3,0,775.25,0,0,0 +14714,18040,32907,-9,32906,32905,3,1,0,17,2,0,2,1,2,0,7,2,0,4,6.073714772232083,6.143842155293343,0,2,0,0,0,-9,0,-914.9732154039041,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,49.19,6,1,0,0,2,3,0,775.25,0,0,0 +14715,18041,32908,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,3,8.465646832811469,8.844603134510351,0,3,0,-9,0,-9,0,-982.6878247149064,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,43,0,15,1,2,-9,0,11.71189125268393,11.71189125268393,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.05,54.52,5,1,0,0,5,4,1,1636,0,0,0 +14715,18042,32909,-9,32908,-9,2,1,1,19,2,0,0,1,2,-9,7,2,0,4,6.399600676308919,6.434130187179234,0,3,0,-9,0,-9,0,-1007.128647615503,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,1,10,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,5,2,1,514,0,0,0 +14716,18043,32910,32911,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,47,0,0,84.89711419756385,0,0,0,75,3,2,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53.77,36.51,6,1,0,0,7,2,1,714.5,0,0,0 +14716,18043,32911,32910,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,2,0,6.084212262988608,6.034890097773967,1,0,-9,48,0,0,-7.736112566284698,0,0,0,75,3,2,3,3,3,2019,4,1,8,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.984978788688271,0,0,53.33,32.61,4,1,0,0,7,2,1,714.5,0,0,0 +14717,18044,32912,32913,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,5,8.075614810277074,7.963992696842139,0,1,0,-9,7,0,-7,-58.53131368746666,0,1,1,35,2,5,1,-9,-9,2019,1,1,6,0,44,41,15,1,0,1,0,9.143870392409749,9.143870392409749,0,0,0,0,0,0,0,0,0,0,2.402793216104517,0,0,0,56.25,52.62,6,1,0,0,4,5,1,533,0,0,0 +14717,18044,32913,32912,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,5,8.695009436658253,8.930572644948757,0,1,0,-9,7,0,7,71.83620138959134,0,0,0,28,2,5,1,2,2,2019,1,2,8,0,67,60,15,1,0,1,0,13.42878325305145,13.42878325305145,0,0,0,0,0,0,0,0,0,0,4.098115736628355,0,0,0,54.1,59.11,6,1,0,0,4,5,1,533,0,0,0 +14718,18045,32914,32915,-9,-9,1,1,1,43,1,0,3,0,1,-9,1,1,0,3,9.264599955684041,9.221205907740762,0,2,0,-9,17,0,-5,104.5011706378875,0,0,0,48,1,5,3,3,3,2019,2,2,8,0,37,40,15,1,0,3,0,23.85307851949893,23.85307851949893,0,0,0,0,0,0,0,1,1,0,0,0,13.09121376489533,3,43.71,56.91,5,1,0,0,13,4,1,1258.5,0,0,0 +14718,18045,32915,32914,-9,-9,2,1,0,48,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,17,0,5,-50.6812971917528,0,0,0,43,1,3,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.34905343731829,3,57.06,57.76,6,1,0,0,13,4,1,1258.5,0,0,0 +14719,18046,32916,32917,-9,-9,1,1,1,26,1,0,0,0,1,-9,2,1,0,4,8.391703010894071,8.546611329295896,0,1,0,-9,3,0,-1,97.28064839478205,0,1,0,27,1,4,1,2,2,2019,1,2,8,0,103,37,15,1,0,1,0,5.07663353040791,5.07663353040791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,1,0,0,4,5,1,724,0,0,0 +14719,18046,32917,32916,-9,-9,2,1,0,27,1,0,0,0,1,-9,2,1,0,4,8.227577940377603,8.414700609550655,0,1,0,-9,3,0,1,-25.88453224313346,0,1,1,26,1,4,1,-9,-9,2019,1,1,6,0,44,45,15,1,0,1,0,9.595811831219997,9.595811831219997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.98,57.51,6,1,0,0,4,5,1,724,0,0,0 +14720,18047,32918,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1063.198257871332,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,1,10.71537307190977,0,0,0,0,193.9460485641226,0,0,0,3.183671198312803,0,0,0,54,44,6,1,0,0,13,1,0,567,0,0,0 +14721,18048,32919,32920,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,2,0,5.071198717194347,5.218958934804873,1,0,-9,47,0,-1,-62.41207083862527,0,0,0,65,3,2,3,3,-9,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,1,0,0,23.94165055366273,0,0,0,1,1,0,2.81254699926154,5.030058704802619,0,0,36.16,24.1,4,1,0,0,2,2,1,244.5,0,0,0 +14721,18048,32920,32919,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,47,0,1,-29.44003887316823,0,0,0,64,3,2,3,3,2,2019,4,2,10,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.8660148132383281,0,0,0,34.85,27.81,6,1,0,0,2,2,1,244.5,0,0,0 +14722,18049,32921,32924,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.64749981298685,7.3756575642372,0,2,0,-9,6,0,-3,-86.1697835230534,0,0,0,48,2,3,1,3,2,2019,1,2,11,0,25,16,15,1,0,1,0,7.783494930795877,7.783494930795877,0,0,0,0,0,0,0,1,1,0,2.456219090256885,0,0,0,51.24,58.84,6,1,0,0,7,5,1,624.25,0,0,0 +14722,18049,32922,-9,32921,32924,3,1,1,17,2,0,1,1,2,0,7,2,0,5,6.088455559190971,5.935622263384444,0,2,0,0,0,-9,0,-1076.427565625374,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,8,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.182542001275436,0,0,0,55.09,55.87,6,1,0,0,7,5,1,624.25,0,0,0 +14722,18049,32923,-9,32921,32924,4,1,1,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.455779571795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,5,1,624.25,0,0,0 +14722,18049,32924,32921,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,3,9.234613369245453,8.98278920204176,0,2,0,-9,6,0,3,-19.52937502447881,0,0,0,45,2,4,1,3,3,2019,1,1,17,6,44,42,15,1,6,1,0,25.41196114636614,25.41196114636614,0,0,0,0,0,0,0,1,1,0,1.628444628139794,0,0,0,34.6,58.25,4,1,0,0,7,5,1,624.25,0,0,0 +14723,18050,32925,-9,-9,-9,1,1,0,48,3,0,2,0,1,-9,2,1,0,3,8.640351598907429,9.152948984977199,6.763545277252383,4,0,0,0,-9,0,-1092.742599345927,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,3,38,38,15,1,3,-9,0,23.93059529402975,23.93059529402975,0,0,0,0,0,0,0,1,1,0,6.794846670528922,0,0,0,37.53,54.63,4,1,0,0,6,5,0,311.6666666666667,0,0,0 +14723,18050,32926,-9,32925,-9,2,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1092.175997768248,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,5,0,311.6666666666667,0,0,0 +14723,18050,32927,-9,32925,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1082.038742478499,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,5,0,311.6666666666667,0,0,0 +14724,18051,32928,32929,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,4,7.89702164446932,8.304524177505154,0,2,0,-9,14,0,2,59.22186347243608,0,0,0,37,1,4,1,-9,-9,2019,1,1,9,0,58,60,15,1,0,1,0,8.652309017045148,8.652309017045148,0,0,0,0,0,0,0,1,1,0,6.495647694246694,0,0,0,59.15,49.67,6,1,0,0,1,4,1,1472,0,0,0 +14724,18051,32929,32928,-9,-9,1,1,0,37,1,0,2,0,1,-9,2,1,0,4,8.450947202524013,8.561793382745892,0,2,0,-9,14,0,-2,66.85531430434506,0,0,1,39,2,4,1,-9,-9,2019,1,2,5,0,45,45,15,1,0,1,0,13.52898141000368,13.52898141000368,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,1,4,1,1472,0,0,0 +14725,18052,32930,-9,32933,32931,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.673254559989,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,2,1,535,0,0,0 +14725,18052,32931,32933,-9,-9,1,1,1,38,1,1,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,10,0,3,126.6590435473064,0,0,0,35,1,4,1,2,2,2019,1,2,10,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,6,1,0,0,11,2,1,535,0,0,0 +14725,18052,32932,-9,32933,32931,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-901.6411498168729,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,11,2,1,535,0,0,0 +14725,18052,32933,32931,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,4,7.690224428088444,7.822289969034967,0,2,0,-9,10,0,-3,37.32492196235089,0,0,1,38,1,4,1,1,2,2019,1,1,8,0,0,24,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,2,1,535,0,0,0 +14726,18053,32934,32936,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,7.747090437765249,7.718066659295858,0,2,0,-9,7,0,-2,-2.526764120992863,0,0,0,49,3,4,1,-9,2,2019,1,3,11,0,23,25,15,1,0,1,0,10.90650477431972,10.90650477431972,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,45.74,6,1,0,0,9,4,1,813,0,0,0 +14726,18053,32935,-9,32934,32936,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.2437016454036,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,813,0,0,0 +14726,18053,32936,32934,-9,-9,3,1,1,49,1,0,1,0,3,-9,2,1,0,4,8.70386424377911,8.659436439331747,0,2,0,-9,7,0,2,-47.12962780316249,0,0,0,47,2,3,1,-9,-9,2019,1,1,10,0,43,43,15,1,0,1,0,14.40035657379566,14.40035657379566,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,7,1,0,0,9,4,1,813,0,0,0 +14727,18054,32937,32939,-9,-9,1,1,0,59,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,34,0,-1,0,0,0,0,60,1,4,3,3,1,2019,4,2,22,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.48,37.7,5,3,0,1,9,1,1,1041.333333333333,0,0,0 +14727,18054,32938,-9,32937,32939,5,1,1,16,2,0,1,1,3,-9,7,2,0,4,5.985005910925512,5.882099769277073,0,2,0,0,0,-9,0,-1043.174597347399,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,8,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.33,46.98,5,3,0,0,9,1,1,1041.333333333333,0,0,0 +14727,18054,32939,32937,-9,-9,2,1,1,60,1,0,1,0,1,-9,3,3,0,4,0,0,0,2,0,-9,7,0,1,0,0,0,0,59,2,2,3,-9,-9,2019,4,1,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.08,58.06,3,3,1,1,9,1,1,1041.333333333333,0,0,0 +14727,18055,32940,-9,32937,32939,3,1,1,29,2,0,1,0,1,-9,2,1,0,3,8.425569151901263,8.543574780091184,0,3,0,0,0,-9,0,-915.863680990404,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,2,50,45,15,1,2,-9,1,10.62041493568766,10.62041493568766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.24,49.99,5,3,0,0,9,5,1,145,0,0,0 +14727,18056,32941,-9,32937,32939,4,1,1,19,2,0,1,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-801.7775334283467,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.38,50.2,6,3,0,0,9,1,1,2054,0,0,0 +14727,18057,32942,-9,32937,32939,6,1,1,25,2,0,1,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1064.27677207496,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,70,50,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,3,0,0,9,1,1,422,0,0,0 +14728,18058,32943,-9,-9,-9,1,1,1,52,3,0,0,0,2,-9,2,1,0,4,8.771703730027946,8.758185256038843,0,3,0,0,0,-9,0,-879.2690720732404,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,40,41,15,1,1,-9,0,12.83291930618415,12.83291930618415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,57.64,6,1,0,0,13,5,0,1100,0,0,0 +14729,18059,32944,-9,-9,-9,1,1,1,62,3,0,0,0,3,-9,4,3,0,2,0,7.20614922027524,7.553924589129511,3,0,0,0,-9,0,-1001.702028165719,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.327240830302325,72.6634567354776,3,54.45,30.7,6,1,0,0,11,3,0,1109,0,0,0 +14730,18060,32945,-9,-9,-9,1,1,0,33,2,0,1,0,2,-9,2,1,0,4,8.276581381185666,8.68432857579649,6.462527731728197,4,0,0,0,-9,0,-1027.03282715193,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,37,15,1,0,-9,0,18.59064218602008,18.59064218602008,0,0,0,0,0,0,0,1,1,0,6.898915632941978,0,0,0,57.16,56.15,6,1,0,0,2,4,0,425.5,0,0,0 +14730,18060,32946,-9,32945,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1045.601533755047,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,0,425.5,0,0,0 +14731,18061,32947,32948,-9,-9,2,1,0,44,1,0,0,0,1,-9,2,1,0,3,8.484389735264582,8.699646859358358,0,1,0,-9,8,0,-6,-10.11836517087166,0,0,1,50,2,4,1,-9,-9,2019,1,1,10,1,42,50,15,1,1,1,0,19.68888146822434,19.68888146822434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,50.06,6,1,0,0,8,5,1,957,0,0,0 +14731,18061,32948,32947,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,9.147298243795202,8.811649354413895,0,1,0,-9,8,0,6,11.54285625742162,0,0,0,44,1,3,1,2,2,2019,1,2,6,0,35,35,15,1,0,1,0,24.97269249859787,24.97269249859787,0,0,0,0,0,0,0,0,0,0,8.167212204705407,0,0,0,54.2,57.49,6,1,0,0,8,5,1,957,0,0,0 +14732,18062,32949,-9,-9,-9,1,1,0,32,2,0,0,0,1,-9,2,1,0,4,7.862201666267105,8.139137494735481,0,3,0,0,0,-9,0,-943.2254087349756,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,40,15,1,0,-9,0,9.903243512175031,9.903243512175031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.53,45.16,6,1,0,0,13,4,0,742,0,0,0 +14733,18063,32950,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1047.091969391462,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,58.41,16.97,5,1,0,0,10,1,1,201,0,0,0 +14734,18064,32951,32953,-9,-9,1,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.788356002685987,8.423875813024148,0,2,0,-9,14,-9,3,87.51764047731335,-9,0,0,38,1,5,1,2,2,2019,1,2,9,0,83,0,15,1,0,1,0,7.834550402638365,7.834550402638365,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,51.02,7,1,0,0,9,4,1,1003.75,0,0,0 +14734,18064,32952,-9,32953,32951,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-986.2204378908749,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,1003.75,0,0,0 +14734,18064,32953,32951,-9,-9,2,1,0,38,1,0,2,0,1,-9,2,1,0,5,8.542743808306986,8.193693453665629,0,2,0,-9,14,-9,-3,-36.83709555204119,-9,0,1,41,1,4,1,1,1,2019,1,1,11,1,69,0,15,1,1,1,0,7.184076402357978,7.184076402357978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,58.83,5,1,0,0,9,4,1,1003.75,0,0,0 +14734,18064,32954,-9,32953,32951,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-988.7673305436765,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,1003.75,0,0,0 +14735,18065,32955,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-970.1715407955201,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,21.18,22.84,3,1,0,0,10,1,0,806,0,0,0 +14736,18066,32956,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,2,1,0,2,8.605508285485353,8.615968876159496,0,3,0,0,0,-9,0,-985.8238841395789,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,37,70,15,1,0,-9,1,16.29298675641184,16.29298675641184,0,0,0,0,0,0,0,1,1,0,1.133473269141295,0,0,3,34.55,53.48,5,1,0,0,9,5,1,155,0,0,0 +14737,18067,32957,32958,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,6.59325657536093,6.491306236192436,1,0,-9,53,0,4,-29.10259527640705,0,0,0,68,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.428504484949798,6.759209184211323,0,1,43.71,56.91,7,1,0,0,5,4,1,1083.5,0,0,0 +14737,18067,32958,32957,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,8.643547680084875,8.590989514563571,1,0,-9,53,0,-4,94.76099453222059,0,0,0,72,3,3,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,10.09563304982746,0,0,0,0,1,1,0,8.224319172968295,5.814798455562142,0,0,46.63,24.26,6,1,0,0,5,4,1,1083.5,0,0,0 +14738,18068,32959,32960,-9,-9,1,1,0,36,1,0,1,0,2,-9,2,1,0,4,8.076045123514422,7.931705585805704,0,2,0,-9,7,0,3,-125.0443451045629,0,0,1,33,1,4,1,-9,-9,2019,1,2,3,0,40,38,15,1,0,1,0,8.832868993276159,8.832868993276159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,1,0,0,4,4,1,1123.666666666667,0,0,0 +14738,18068,32960,32959,-9,-9,2,1,1,33,1,0,1,0,1,-9,2,1,0,4,7.830644741494883,8.140576588057074,0,2,0,-9,7,0,-3,-85.01542498018512,0,0,0,36,2,4,1,-9,-9,2019,1,1,7,0,40,38,15,1,0,1,0,9.707454261716492,9.707454261716492,0,0,0,0,0,0,0,1,1,0,1.930635219147557,0,0,0,51.24,58.84,6,1,0,0,4,4,1,1123.666666666667,0,0,0 +14738,18068,32961,-9,32959,32960,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1113.354063761398,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,4,1,1123.666666666667,0,0,0 +14739,18069,32962,32963,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,6.682014310821001,6.64446905495464,1,0,-9,52,0,5,184.8389679695457,0,0,0,72,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.561162256554184,6.532885059309407,0,0,49.57,40.45,5,1,0,0,10,2,1,644.5,0,0,0 +14739,18069,32963,32962,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,6.136503109110691,6.329991602028773,1,0,-9,52,0,-5,16.53610426757632,0,0,0,77,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.284824941550646,5.917057959476234,0,0,59.21,43.05,4,1,0,0,10,2,1,644.5,0,0,0 +14740,18070,32964,32965,-9,-9,2,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.693162084523306,7.575068716460921,1,0,-9,24,0,1,181.6231127737285,0,0,0,62,1,5,3,2,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.567311474102832,7.474595017977107,0,0,49.44,56.93,6,1,0,0,4,5,1,1712,0,0,0 +14740,18070,32965,32964,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,5,0,8.867582824054798,8.640372929718044,1,0,-9,24,0,-1,-227.8964390152336,0,0,0,63,1,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.351459899065754,8.971211950984589,0,0,57.06,57.76,6,1,0,0,4,5,1,1712,0,0,0 +14741,18071,32966,32967,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,7.237347066790015,7.820438660775202,0,1,0,-9,38,0,4,-38.27813560044059,0,0,0,53,2,2,3,3,3,2019,2,2,9,0,40,45,15,1,0,3,0,5.1549142643688,5.1549142643688,0,0,0,0,0,0,0,1,1,0,0,0,0,1,54,54,6,1,0,0,9,2,0,2011.5,0,0,0 +14741,18071,32967,32966,-9,-9,2,1,0,53,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,38,0,-4,6.681037072960706,0,0,0,57,2,4,1,3,3,2019,3,1,24,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.23,32.62,5,1,0,0,9,2,0,2011.5,0,0,0 +14742,18072,32968,32969,-9,-9,1,1,1,59,1,0,1,0,1,-9,2,1,0,5,8.969402112568908,8.644539876351654,0,2,0,-9,10,0,0,63.40753854292489,0,0,0,59,2,1,3,2,2,2019,2,2,10,0,37,38,15,1,0,3,0,21.1863256202649,21.1863256202649,0,0,0,0,0,0,0,0,0,0,0,0,9.10462311482342,1,57.06,57.76,6,1,0,0,13,4,1,1067.5,0,0,0 +14742,18072,32969,32968,-9,-9,2,1,0,59,1,0,1,0,2,-9,3,3,0,1,0,0,0,2,0,-9,10,0,0,-11.4589860365728,0,0,0,59,1,5,1,3,2,2019,3,1,29,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.79,20.5,6,1,1,0,13,4,1,1067.5,0,0,0 +14742,18073,32970,-9,32969,32968,3,1,1,18,2,0,1,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1155.6302871815,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,34,12,0,0,15,2,12,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.965407648079496,3,10.28,64.56,3,1,0,0,13,4,1,2249,0,0,0 +14743,18074,32971,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,3,0,7.069329240500545,7.312097717746612,3,0,0,0,-9,0,-952.8173575917426,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.428814718987355,0,0,50.96,35.62,6,1,0,0,7,3,1,318,0,0,0 +14744,18075,32972,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,3,0,6.594154044296079,6.465059899341029,3,0,0,0,-9,0,-891.3144065140796,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,6.668103532425778,0,1,1,0,0,6.77629288561898,0,0,45.32,54.77,5,1,0,0,9,2,1,129,0,0,0 +14745,18076,32973,-9,32974,-9,3,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1084.218045242701,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,2,0,1213,0,0,0 +14745,18076,32974,-9,-9,-9,1,1,0,35,2,1,2,0,2,-9,2,1,0,2,7.661800790866466,7.401009022710443,0,4,0,0,0,-9,0,-935.5638179652597,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,32,32,15,1,0,-9,0,7.904069948070162,7.904069948070162,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.65,49.52,4,1,0,0,4,2,0,1213,0,0,0 +14746,18077,32975,32976,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,7.268783187393955,7.252796453723433,1,0,-9,55,0,3,118.969842637865,0,0,0,73,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.027283829537987,7.036574799574234,0,0,54.37,54.8,6,1,0,0,8,2,1,528,0,0,0 +14746,18077,32976,32975,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,55,0,-3,-46.76219735248552,0,0,0,76,3,3,3,3,-9,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.2463893884162167,0,0,0,56.41,48.18,6,1,0,0,8,2,1,528,0,0,0 +14747,18078,32977,-9,-9,-9,1,1,0,44,2,0,0,0,2,-9,2,1,0,4,8.382584856810396,8.040381945791616,0,3,0,0,0,-9,0,-1144.304671001477,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,37,15,1,0,-9,0,8.585811207824809,8.585811207824809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,5,1,0,0,1,4,1,670,0,0,0 +14748,18079,32978,32979,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,7.564185428855835,7.750017736378508,0,1,0,-9,38,0,-3,7.102071465374765,0,0,0,62,3,2,3,3,3,2019,2,2,11,0,26,26,15,1,0,3,0,9.95543314611955,9.95543314611955,0,0,0,0,0,0,0,1,1,0,0,0,7.215654084027777,1,42.27,55.97,6,2,0,1,5,3,0,560.5,0,0,0 +14748,18079,32979,32978,-9,-9,2,1,1,62,1,0,0,0,3,-9,8,3,1,2,0,3.918430130510262,4.098648983435282,1,0,-9,38,0,3,-39.87219472713047,0,0,0,59,2,4,1,3,3,2019,3,1,12,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.930926588811581,3.529534932698718,0,0,46.46,25.4,4,4,0,1,5,3,0,560.5,0,0,0 +14749,18080,32980,-9,32981,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-990.8432056830327,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.1781243179407044,3,49.41,58.28,5,1,0,0,8,1,0,562,0,0,0 +14749,18080,32981,-9,-9,-9,1,1,0,46,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-966.1077613859618,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.72,22.57,1,1,0,1,8,1,0,562,0,0,0 +14750,18081,32982,32983,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,2,7.752916944969785,7.819588926747175,0,1,0,-9,38,0,-2,7.74356845494856,0,0,0,65,3,2,3,-9,-9,2019,2,2,11,0,25,25,15,1,0,4,0,10.23394664862305,10.23394664862305,0,0,0,0,0,0,0,1,1,0,.423660161443624,0,0,0,39.09,55.3,4,1,0,1,12,3,1,271,0,0,0 +14750,18081,32983,32982,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,38,0,2,57.38723032198583,0,0,0,63,2,2,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6564447588943625,0,0,0,55.7,35.47,4,1,0,1,12,3,1,271,0,0,0 +14751,18082,32984,32985,-9,-9,2,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.65011049420008,9.527771184824848,7.713063930924138,1,0,-9,10,0,0,-12.50766108118321,0,0,0,69,1,4,3,2,3,2019,2,1,18,6,0,12,15,1,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.454674063536262,0,0,36.35,53.49,3,1,0,0,5,5,1,485,0,0,0 +14751,18082,32985,32984,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.311966058225508,8.18603450948854,1,0,-9,10,0,9,-114.6941382782317,0,0,0,60,1,3,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,1,0,6.398274281694839,0,0,0,0,1,1,0,6.256855007832354,8.318067983647065,0,0,44.06,49.86,6,1,0,0,5,5,1,485,0,0,0 +14751,18083,32986,-9,32984,32985,3,1,0,31,2,0,0,0,1,-9,2,1,0,3,7.918531469730178,7.926342634308377,0,3,0,0,0,-9,0,-948.7200038325882,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,37,45,15,1,1,-9,1,8.169632500325617,8.169632500325617,0,0,0,0,0,0,0,1,1,0,0,0,6.830822259742481,3,54.94,53.18,5,1,0,1,5,3,1,1348,0,0,0 +14752,18084,32987,32988,-9,-9,2,1,0,33,1,0,0,0,1,-9,2,1,0,4,8.591568095455415,8.455303938746596,0,1,0,-9,2,0,-5,95.00701528051174,0,0,1,38,1,3,1,-9,-9,2019,1,1,6,0,40,40,15,1,0,1,0,14.68492396760987,14.68492396760987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,12,5,1,1306.5,0,0,0 +14752,18084,32988,32987,-9,-9,1,1,1,38,1,0,0,0,1,-9,1,1,0,3,9.292038053705674,9.494590105964248,0,1,0,-9,2,0,5,-137.9128948808769,0,0,0,33,1,4,1,1,1,2019,1,2,1,0,40,40,15,1,0,1,0,37.02742429002583,37.02742429002583,0,0,0,0,0,0,0,0,0,0,4.689685783603773,0,0,0,50.14,53.97,6,1,0,0,12,5,1,1306.5,0,0,0 +14753,18085,32989,-9,-9,-9,1,1,1,57,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,0,0,-951.7915138615916,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.3,26.82,5,1,0,0,12,1,0,1779,0,0,0 +14753,18086,32990,-9,-9,-9,2,1,0,52,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,0,0,-925.2307212570366,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.29,21.51,4,1,0,0,12,1,0,584,0,0,0 +14754,18087,32991,32992,-9,-9,1,1,1,51,1,0,2,0,1,-9,1,1,0,3,9.341310930049865,9.467985881044102,0,2,0,-9,8,0,1,32.72640496613208,0,0,0,50,2,3,1,2,1,2019,1,2,24,12,32,36,15,1,12,1,0,46.38627140567129,46.38627140567129,0,0,0,0,0,0,0,0,0,0,0,0,31.0895232622631,3,23.03,58.38,4,1,0,1,9,5,1,681.3333333333334,0,0,0 +14754,18087,32992,32991,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,3,8.001699512370321,8.007796903700195,0,2,0,-9,8,0,-1,-23.65757502507638,0,0,0,51,1,3,1,3,1,2019,1,1,22,10,30,30,15,1,10,1,0,10.85748055701622,10.85748055701622,0,0,0,0,0,0,0,0,0,0,1.282405630735069,0,82.37909963224941,3,48.45,57.49,4,1,0,0,9,5,1,681.3333333333334,0,0,0 +14754,18087,32993,-9,32992,32991,3,1,1,17,2,0,2,1,-9,0,7,2,0,5,5.332477715606204,5.494355549115558,0,2,0,0,0,-9,0,-943.563317587979,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,22,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.37,68.59,4,1,0,0,9,5,1,681.3333333333334,0,0,0 +14755,18088,32994,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,1,1,0,3,7.921066510131204,7.859365126010823,6.156749196930701,3,0,0,0,-9,0,-903.0399022321114,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,45,46,15,1,0,-9,0,7.300702683376185,7.300702683376185,0,0,0,0,0,0,0,1,1,0,6.249157695713568,0,0,0,53.29,45.74,4,1,0,0,11,4,1,540,0,0,0 +14756,18089,32995,32996,-9,-9,2,1,1,65,1,0,0,0,3,-9,1,1,0,4,7.276927785255836,7.428851501567109,4.291105328158991,1,0,-9,46,0,-1,7.327098736818927,0,0,0,66,2,2,3,-9,-9,2019,2,1,6,0,16,40,15,1,0,4,0,11.32930955671576,11.32930955671576,0,0,0,0,0,0,0,1,1,0,4.856963682032362,4.147044190955794,0,0,41.17,59.31,2,1,0,0,11,2,1,517.5,0,0,0 +14756,18089,32996,32995,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,46,0,1,13.59175954290551,0,0,0,65,3,4,1,-9,-9,2019,3,2,11,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,32.21,6,1,0,0,11,2,1,517.5,0,0,0 +14757,18090,32997,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-984.2423848261789,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,11.94055383125848,0,0,1,1,0,0,0,0,0,39.32,17.47,5,1,0,0,9,1,1,277,0,0,0 +14757,18091,32998,-9,-9,32997,2,1,1,26,2,0,0,0,2,-9,2,1,0,4,7.837800015983567,8.053168504810936,0,3,0,0,0,-9,0,-920.6520494110487,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,39,43,15,1,0,-9,1,9.186349845334833,9.186349845334833,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.19,56.11,5,1,0,0,9,4,1,380,0,0,0 +14758,18092,32999,33000,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,5,8.931483453960961,8.787748739668261,0,1,0,-9,5,0,0,-10.77222363920252,0,1,1,29,1,4,1,2,1,2019,1,2,10,1,55,52,15,1,1,1,0,16.83064139977606,16.83064139977606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,9,5,1,962,0,0,0 +14758,18092,33000,32999,-9,-9,2,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.942104703930468,9.0072256568927,0,1,0,-9,5,0,0,-45.59624382736212,0,1,0,29,1,5,1,-9,-9,2019,1,1,14,5,39,35,15,1,5,1,0,18.49547973175752,18.49547973175752,0,0,0,0,0,0,0,0,0,0,4.884106989373359,0,0,0,43.46,42.31,5,1,0,0,9,5,1,962,0,0,0 +14759,18093,33001,33004,-9,-9,2,1,1,43,1,0,2,0,2,-9,1,1,0,3,8.727164274795912,8.980075963680262,0,2,0,-9,7,0,0,31.89106361766194,0,0,0,43,1,3,1,-9,3,2019,1,1,12,0,50,40,15,1,0,1,0,13.46034464787456,13.46034464787456,0,0,0,0,0,0,0,1,1,0,7.33103217005359,0,0,0,59.32,46.98,5,1,0,0,9,4,1,1224.5,0,0,0 +14759,18093,33002,-9,33004,33001,4,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-899.1966796884626,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,9,4,1,1224.5,0,0,0 +14759,18093,33003,-9,33004,33001,3,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1064.03016373416,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,9,4,1,1224.5,0,0,0 +14759,18093,33004,33001,-9,-9,1,1,0,43,1,0,2,0,1,-9,2,1,0,3,7.415715700571053,7.561694909761608,0,2,0,-9,7,0,0,-102.5547464440522,0,0,1,43,2,3,1,2,3,2019,1,2,11,0,24,12,15,1,0,1,0,8.149618898971882,8.149618898971882,0,0,0,0,0,0,0,1,1,0,1.058728786296331,0,0,0,58.32,50.22,6,1,0,0,9,4,1,1224.5,0,0,0 +14760,18094,33005,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,1,1,0,5,0,0,0,3,0,0,0,-9,0,-937.02127462442,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,45,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,6,1,0,0,6,1,1,1128,0,0,0 +14761,18095,33006,33007,-9,-9,2,1,1,74,1,0,0,0,2,-9,2,1,0,2,8.127529235223284,7.854987651784855,0,1,0,-9,53,0,3,129.5896383807567,0,0,0,71,2,3,3,2,3,2019,2,1,6,0,25,26,15,1,0,4,0,19.30677433833657,19.30677433833657,1,0,0,0,0,0,0,1,1,0,0,0,0,0,56.88,40.36,6,1,0,0,9,3,0,334.5,0,0,0 +14761,18095,33007,33006,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,53,0,-3,-60.56817026359608,0,0,0,74,2,2,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.141710010538761,0,0,0,54.96,53.17,7,1,0,0,9,3,0,334.5,0,0,0 +14762,18096,33008,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,7.062885002991528,7.325698784247018,3,0,0,0,-9,0,-1034.493782500627,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.700698620731905,7.081410794182444,0,0,58.47,44.69,6,1,0,0,4,2,1,707,0,0,0 +14763,18097,33009,33011,-9,-9,2,1,0,33,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,18,0,-10,158.7435876603412,-9,0,1,43,1,4,1,3,3,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,5,2,1,650.4,0,0,0 +14763,18097,33010,-9,33009,33011,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.3967743182718,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,2,1,650.4,0,0,0 +14763,18097,33011,33009,-9,-9,1,1,1,43,1,0,3,0,1,-9,2,1,0,4,8.008682493454376,8.200902231365658,0,2,0,-9,18,0,10,74.76453406815746,0,0,0,33,2,4,3,3,3,2019,2,2,8,1,38,23,15,1,1,3,0,8.283699004698105,8.283699004698105,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,5,3,0,0,5,2,1,650.4,0,0,0 +14763,18097,33012,-9,33009,33011,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.5298170126289,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,5,2,1,650.4,0,0,0 +14763,18097,33013,-9,33009,33011,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.4546051215,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,5,2,1,650.4,0,0,0 +14764,18098,33014,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,3,7.846343720947955,7.726523860243497,5.604928862536502,3,0,0,0,-9,0,-967.3539586980738,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,32,39,15,1,0,-9,0,7.045712897598373,7.045712897598373,0,0,0,0,0,0,0,1,1,0,0,6.06835377775892,0,0,47.07,53.97,6,1,0,0,6,3,1,518,0,0,0 +14765,18099,33015,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,5,8.503081326635197,8.485592081525985,0,3,0,0,0,-9,0,-1034.986894501878,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,89,0,15,1,1,-9,0,6.710268261811756,6.710268261811756,0,0,0,0,0,0,0,0,0,0,0,0,3.552872807017951,3,51.14,60.45,6,1,0,0,10,4,0,601,0,0,0 +14766,18100,33016,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,3,7.215232934829439,7.247086505684798,0,3,0,0,0,-9,0,-1040.906147215895,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,40,30,15,1,10,-9,0,4.387567629145336,4.387567629145336,0,0,0,0,0,0,0,1,1,0,0,0,18.82805329495076,3,36.78,41.13,3,3,0,0,2,3,1,1026,0,0,0 +14767,18101,33017,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,2,0,6.615635163202604,6.626055224151734,3,0,0,0,-9,0,-1014.785699881885,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,.9188202909768604,0,0,1,1,0,0,6.803765377933732,0,0,45.75,22.74,5,1,0,0,7,2,1,598,0,0,0 +14768,18102,33018,33019,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,4,0,7.413185304720409,7.493026687519495,1,0,-9,58,0,-1,12.0052479745852,0,0,0,79,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.26390774068348,7.36328273912207,3.461844729717053,3,57.01,50.75,6,1,0,0,5,2,1,1341.5,0,0,0 +14768,18102,33019,33018,-9,-9,1,1,1,79,1,0,0,0,1,-9,4,3,0,4,0,6.367524815525199,6.369227173753711,1,0,-9,58,0,1,-154.39213949557,0,0,0,78,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.419541904471725,6.064781583578302,0,0,55.81,41.67,6,1,0,0,5,2,1,1341.5,0,0,0 +14769,18103,33020,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-995.8482137458677,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,40,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.550244828682777,0,0,0,43.2,51.94,3,1,1,0,9,1,1,862,0,0,0 +14770,18104,33021,-9,-9,-9,1,1,0,46,2,0,0,0,1,-9,2,1,0,2,9.157848863896836,9.07894303228445,0,1,0,-9,4,0,8,54.89566017358646,0,0,0,-9,-9,-9,-9,2,3,2019,-9,2,12,0,41,41,15,1,0,-9,0,32.06084138543638,32.06084138543638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.88,50.35,6,1,0,0,8,5,1,332,0,0,0 +14771,18105,33022,-9,-9,-9,1,1,1,72,2,0,0,0,1,-9,4,3,0,3,0,7.078919060515126,7.4085670516914,3,0,0,0,-9,0,-1152.420299867972,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.955084210744342,7.24732270955257,0,0,56.67,48.31,6,1,0,0,9,2,1,115,0,0,0 +14772,18106,33023,33025,-9,-9,1,1,0,38,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,15,0,0,-79.08562017200995,-9,0,1,38,1,4,1,1,1,2019,3,2,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.24,58.84,6,1,0,0,8,3,0,987.25,0,0,0 +14772,18106,33024,-9,33023,33025,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.6720970815765,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,3,0,987.25,0,0,0 +14772,18106,33025,33023,-9,-9,2,1,1,38,1,0,2,0,1,-9,1,1,0,4,8.162667863774592,8.005376407702062,0,2,0,-9,16,0,0,23.57012416450646,-9,0,0,38,1,4,3,2,1,2019,2,1,12,0,35,0,15,1,0,3,0,10.21256210826948,10.21256210826948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,4,1,0,0,8,3,0,987.25,0,0,0 +14772,18106,33026,-9,33023,33025,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1086.361383745794,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,3,0,987.25,0,0,0 +14773,18107,33027,-9,-9,-9,1,1,0,47,3,0,0,0,3,-9,2,1,0,4,8.457955847097045,8.457199465637869,0,3,0,0,0,-9,0,-1049.361723803437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,39,40,15,1,0,-9,0,12.47088296835814,12.47088296835814,0,0,0,0,0,0,0,0,0,0,2.331051985212771,0,0,0,51.83,57.2,4,1,0,0,5,4,1,187,0,0,0 +14774,18108,33028,33029,-9,-9,1,1,1,30,1,0,0,0,2,-9,2,1,0,5,8.011953998474292,7.871884153840349,0,1,0,-9,1,-9,-1,83.19435476859,-9,0,0,31,1,3,1,-9,-9,2019,1,2,14,5,39,0,15,1,5,1,0,6.88647425514961,6.88647425514961,0,0,0,0,0,0,0,0,0,0,0,0,11.20014530623084,3,56.59,44.13,7,1,0,0,5,4,0,393.5,0,0,0 +14774,18108,33029,33028,-9,-9,2,1,0,31,1,0,0,0,1,-9,2,1,0,3,8.326777737394059,8.417806976573852,0,1,0,-9,1,-9,1,-57.26964796546678,-9,0,1,30,2,5,1,-9,-9,2019,1,1,11,0,55,0,15,1,0,1,0,8.2392650609891,8.2392650609891,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52,54.51,7,1,0,0,5,4,0,393.5,0,0,0 +14775,18109,33030,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-966.7055497875823,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,38,3,1,0,0,13,1,1,1194,0,0,0 +14776,18110,33031,33032,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,6,0,1,116.914654374263,0,0,0,73,2,3,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.923081982119746,0,0,0,58.32,52.89,7,1,0,0,6,3,1,314.5,0,0,0 +14776,18110,33032,33031,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,3,6.108020014803802,8.087733820009081,7.913504114378558,1,0,-9,6,0,-1,33.78670071774734,0,0,0,74,2,4,3,3,2,2019,2,1,8,0,11,8,15,1,0,4,0,7.097573202479376,7.097573202479376,0,0,0,0,0,0,0,1,1,0,0,7.926967534336944,0,0,60.29,52.11,7,1,0,0,6,3,1,314.5,0,0,0 +14777,18111,33033,33034,-9,-9,1,1,1,48,1,0,2,0,1,-9,2,1,0,5,9.672217554391464,9.631587662459278,0,2,0,-9,21,0,2,-22.20145600441435,0,0,0,46,2,3,3,-9,-9,2019,2,2,9,0,55,50,15,1,0,3,0,30.59028723156185,30.59028723156185,0,0,0,0,0,0,0,1,1,0,5.302447479101994,0,0,0,57.06,57.76,6,1,0,0,7,5,1,627.3333333333334,0,0,0 +14777,18111,33034,33033,-9,-9,2,1,0,46,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,21,0,-2,-72.74556354811939,0,0,0,48,1,5,1,2,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.378880303657843,0,0,0,47.07,53.97,6,1,0,0,7,5,1,627.3333333333334,0,0,0 +14777,18111,33035,-9,33034,33033,3,1,1,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1101.903841788109,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.015200657404411,0,0,0,45.91,59.89,6,1,0,0,7,5,1,627.3333333333334,0,0,0 +14778,18112,33036,-9,33037,33038,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.187915017199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,4,0,451.3333333333333,0,0,0 +14778,18112,33037,33038,-9,-9,1,1,0,28,1,0,1,0,2,-9,2,1,0,3,6.923365057693879,7.112135984033057,0,2,0,1,1,-9,-12,-73.2144719409702,0,1,1,40,2,4,1,-9,-9,2019,1,3,17,4,18,0,15,1,4,1,0,8.388643470951704,8.388643470951704,0,0,0,0,0,0,0,1,1,0,0,0,1.562013437544214,3,36.31,55.17,6,1,0,0,11,4,0,451.3333333333333,0,0,0 +14778,18112,33038,33037,-9,-9,3,1,1,40,1,0,1,0,2,-9,2,1,0,4,8.50887603186729,8.41200270997146,0,2,0,-9,1,-9,12,136.6604848235014,-9,0,0,28,2,3,1,-9,-9,2019,1,1,9,0,50,0,15,1,1,1,0,11.09355066589246,11.09355066589246,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,5,0,0,11,4,0,451.3333333333333,0,0,0 +14779,18113,33039,-9,-9,-9,1,1,1,75,2,0,0,0,1,-9,4,3,0,3,0,7.920411165745045,8.174776066001328,3,0,0,0,-9,0,-990.1813829894141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.767493831544765,8.128422194738294,0,0,35.78,55.1,5,1,0,0,6,3,1,437,0,0,0 +14780,18114,33040,-9,-9,-9,1,1,0,77,3,0,0,0,1,-9,4,3,0,3,0,6.398787340755511,6.359567621409262,3,0,0,0,-9,0,-994.6014458561242,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.693651072360622,6.289916921710076,0,0,51,32.01,5,1,0,0,9,2,1,784,0,0,0 +14781,18115,33041,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,2,0,4.015835888161083,3.917705869371461,3,0,0,0,-9,0,-1148.285884894723,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,1,11.78593313667519,0,14.41097173035663,0,0,131.0130129179853,1,1,0,2.674180627924673,4.224400213479649,0,0,46.72,27.74,4,1,0,0,5,2,1,3790,0,0,0 +14782,18116,33042,33043,-9,-9,1,1,0,29,1,0,0,0,1,-9,2,1,0,4,9.004426972416262,8.962770605770457,0,1,0,-9,1,-9,-1,168.7493774923352,-9,1,1,30,1,5,1,1,1,2019,1,2,10,0,43,0,15,1,0,1,0,19.09203464656997,19.09203464656997,0,0,0,0,0,0,0,0,0,0,4.222000740884034,0,0,0,51.24,58.84,6,1,0,0,8,5,1,1387,0,0,0 +14782,18116,33043,33042,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,5,9.697577624320004,9.715818637915735,0,1,0,-9,1,-9,1,-97.27382895725586,-9,0,0,29,1,4,1,2,1,2019,1,1,7,0,55,0,15,1,0,1,0,34.50538014525666,34.50538014525666,0,0,0,0,0,0,0,0,0,0,4.289470691887574,0,0,0,59.43,58.05,6,1,0,0,8,5,1,1387,0,0,0 +14783,18117,33044,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-994.1240044813167,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.21000000000001,44.28,6,1,0,0,12,1,0,2508,0,0,0 +14784,18118,33045,33046,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,4,7.056046315298315,7.16326507759549,0,1,0,-9,6,0,1,-80.23841926486416,0,0,0,65,3,4,1,3,3,2019,1,1,12,1,24,24,15,1,1,1,0,4.88748178346999,4.88748178346999,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.51,50.31,6,1,0,0,13,3,1,580,0,0,0 +14784,18118,33046,33045,-9,-9,1,1,1,65,1,0,0,0,3,-9,2,1,0,4,7.970268645871202,7.35414244136666,0,1,0,-9,6,0,-1,-42.16921266814564,0,0,0,66,2,4,1,3,3,2019,1,2,9,0,35,35,15,1,0,1,0,8.378774361045524,8.378774361045524,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,13,3,1,580,0,0,0 +14785,18119,33047,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,1,1,0,2,6.765966940528769,6.949812027972483,0,3,0,0,0,-9,0,-1015.836915259372,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,11,25,20,15,1,11,-9,0,3.859928731990536,3.859928731990536,0,0,0,0,0,0,0,0,0,0,3.385558200369669,0,0,0,35.82,26.05,5,1,0,0,7,2,1,365,0,0,0 +14786,18120,33048,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,1,0,7.343208251423602,7.396841691123804,3,0,0,0,-9,0,-972.6419296321205,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,4.296382446105595,0,1.958579258402642,0,0,0,1,1,0,1.175837355804364,7.487575433766451,0,0,50.98,29.63,1,1,0,0,2,3,1,1656,0,0,0 +14787,18121,33049,33050,-9,-9,2,1,1,47,1,0,3,0,3,-9,2,1,0,5,8.367625534721082,8.43880407097852,0,2,0,-9,10,0,7,-54.76952422609889,0,0,0,40,1,4,1,-9,-9,2019,1,1,7,0,40,46,15,1,0,1,0,11.78274641690666,11.78274641690666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,13,4,1,1119.4,0,0,0 +14787,18121,33050,33049,-9,-9,1,1,0,40,1,0,3,0,1,-9,2,1,0,4,8.625163222490206,8.682457516677454,0,2,0,-9,17,0,-7,-35.67132462054612,0,0,1,47,3,5,1,2,1,2019,1,2,9,0,38,40,15,1,0,1,0,18.88041405917604,18.88041405917604,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,4,1,1119.4,0,0,0 +14787,18121,33051,-9,33050,33049,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.5730676345958,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,1119.4,0,0,0 +14787,18121,33052,-9,33050,33049,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.6122589259159,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,13,4,1,1119.4,0,0,0 +14787,18121,33053,-9,33050,33049,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.352668454035,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,4,1,1119.4,0,0,0 +14788,18122,33054,33055,-9,-9,2,1,0,28,1,0,0,0,2,-9,2,1,0,3,8.367481258717032,8.216343310290226,0,1,0,-9,2,0,-7,74.32226185771198,0,1,1,35,1,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,0,1,0,9.642127783002245,9.642127783002245,0,0,0,0,0,0,0,0,0,0,4.15744425024807,0,0,0,49.42,50.19,6,1,0,0,4,5,0,2935,0,0,0 +14788,18122,33055,33054,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,4,8.2939365309715,8.402410569502875,0,1,0,-9,2,0,7,85.62669139272357,0,0,0,28,2,3,1,-9,-9,2019,1,2,13,1,40,40,15,1,1,1,0,11.69428809057648,11.69428809057648,0,0,0,0,0,0,0,0,0,0,7.574981188958943,0,0,0,60.42,43.74,6,1,0,0,4,5,0,2935,0,0,0 +14789,18123,33056,-9,33057,33059,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.008466923297,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,1,5,1,386.5,0,0,0 +14789,18123,33057,33059,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.645689369320975,8.47118948327396,0,2,0,-9,11,0,1,7.849452328045695,0,0,1,39,1,3,1,2,1,2019,1,1,10,0,35,30,15,1,0,1,0,19.6208290754733,19.6208290754733,0,0,0,0,0,0,0,1,1,0,6.663352036902626,0,0,0,49.41,58.28,6,1,0,0,1,5,1,386.5,0,0,0 +14789,18123,33058,-9,33057,33059,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.92370354493,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,1,5,1,386.5,0,0,0 +14789,18123,33059,33057,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,3,9.007475324294917,8.670290883429084,0,2,0,-9,11,0,-1,-206.5123456650478,0,0,0,40,1,4,1,2,1,2019,1,2,16,5,44,42,15,1,5,1,0,15.76186261468197,15.76186261468197,0,0,0,0,0,0,0,1,1,0,3.547145122893927,0,0,0,33.24,59.12,4,1,0,0,1,5,1,386.5,0,0,0 +14790,18124,33060,-9,33061,-9,1,1,1,56,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1062.785263387437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,0,38,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.169212262180076,3,46.55,44.15,4,1,1,0,12,1,1,641,0,0,0 +14790,18125,33061,-9,-9,-9,2,1,0,81,3,0,0,0,2,-9,6,3,0,4,0,5.128576174358452,5.245424366445149,3,0,0,0,-9,0,-980.4498079660883,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.090557065001464,0,0,51.24,58.84,7,1,0,0,12,2,1,108,0,0,0 +14791,18126,33062,33063,-9,-9,1,1,0,67,1,0,0,0,3,-9,2,1,0,5,7.515480410407013,7.679813945544904,0,1,0,-9,6,0,-1,-28.2975132944915,0,0,0,68,3,3,3,3,3,2019,2,2,9,0,40,20,15,1,0,4,0,5.982545546556852,5.982545546556852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,6,1,0,0,13,3,1,1156.5,0,0,0 +14791,18126,33063,33062,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,7.040593588457829,7.240730206345917,1,0,-9,6,0,1,-11.20660405850965,0,0,0,67,3,5,1,3,3,2019,3,1,10,0,0,30,15,4,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.089082427822376,0,0,52,47,5,1,0,0,13,3,1,1156.5,0,0,0 +14792,18127,33064,33066,-9,-9,2,1,0,40,1,1,2,0,1,-9,5,1,0,4,9.031492015895504,8.981364847600958,0,2,0,-9,10,0,-17,66.3079239055036,0,0,1,57,2,3,1,2,1,2019,1,1,20,9,43,35,15,1,9,1,0,21.63684137186122,21.63684137186122,0,0,0,0,0,0,0,1,1,0,4.21552048995099,0,0,0,31.19,61.28,6,1,0,0,10,5,1,1020.25,0,0,0 +14792,18127,33065,-9,33064,33066,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-946.2429827073572,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,10,5,1,1020.25,0,0,0 +14792,18127,33066,33064,-9,-9,1,1,1,57,1,1,2,0,2,-9,2,1,0,3,8.780829650364973,9.054690446515764,0,2,0,-9,10,0,17,-105.7851926161569,0,0,0,40,1,4,1,2,3,2019,1,2,15,4,46,48,15,1,4,1,0,19.87674063123826,19.87674063123826,0,0,0,0,0,0,0,1,1,0,4.895228457487355,0,0,0,46.82,50.04,5,1,0,0,10,5,1,1020.25,0,0,0 +14792,18127,33067,-9,33064,33066,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-858.3827986653621,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,1020.25,0,0,0 +14793,18128,33068,33069,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,4,8.828744534116241,9.330658094368163,0,1,0,-9,36,0,1,58.73017701951104,0,0,0,56,1,3,1,-9,2,2019,1,1,8,0,53,38,15,1,0,1,0,16.77871870862646,16.77871870862646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,609.5,0,0,0 +14793,18128,33069,33068,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.402404116502007,8.46579530031314,0,1,0,-9,36,0,-1,-20.44923778574748,0,0,0,57,1,4,1,1,2,2019,1,2,8,0,40,38,15,1,0,1,0,14.20600009617301,14.20600009617301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.5,37.66,6,1,0,0,9,5,1,609.5,0,0,0 +14793,18129,33070,-9,33069,33068,3,1,0,23,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-922.2689282253491,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.12,60.58,3,1,0,0,9,1,1,310,0,0,0 +14794,18130,33071,-9,-9,-9,1,1,0,25,2,0,0,0,2,-9,2,1,0,4,7.787357621313091,7.911419465438251,0,3,0,0,0,-9,0,-1055.678086122686,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,49,44,15,1,0,-9,0,6.864452498112954,6.864452498112954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,5,1,0,0,9,3,0,190,0,0,0 +14795,18131,33072,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,2,0,6.488619921136693,6.131172012760025,3,0,0,0,-9,0,-936.6614402469932,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,12.30899301899816,0,0,0,13.4458622426928,56.35240921375127,1,1,0,.0626987858170923,6.54686570685368,0,0,37.16,34.67,3,1,0,0,2,2,1,672,0,0,0 +14796,18132,33073,-9,33075,33074,3,1,0,17,2,0,1,1,3,0,7,2,0,2,3.447462508479592,3.23322962346881,0,2,0,0,0,-9,0,-922.9095184782645,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,27,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.56,25.09,2,1,0,1,6,3,0,461.3333333333333,0,0,0 +14796,18132,33074,33075,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,3,8.013053700752273,7.506972714710906,0,2,0,-9,6,0,5,-106.0955023585022,0,0,0,37,2,3,1,-9,-9,2019,1,2,11,0,42,40,15,1,0,1,0,8.444155578710967,8.444155578710967,0,0,0,0,0,0,0,1,1,0,0,0,36.98669307262909,3,38.56,43.06,6,1,0,0,6,3,0,461.3333333333333,0,0,0 +14796,18132,33075,33074,-9,-9,2,1,0,37,1,0,1,0,2,-9,2,1,0,3,7.900419265369147,7.739183967204798,5.890191575368799,2,0,-9,6,0,-5,46.00837248756484,0,0,1,42,2,3,1,3,3,2019,1,1,11,0,52,45,15,1,0,1,0,6.921691353530939,6.921691353530939,0,0,0,0,0,0,0,1,1,0,5.455892164036981,0,39.10160314595771,3,45.38,42.8,7,1,0,0,6,3,0,461.3333333333333,0,0,0 +14797,18133,33076,33077,-9,-9,2,1,1,44,1,0,0,0,2,-9,1,1,0,4,8.882472956740214,8.831218180016084,0,1,0,-9,6,0,-10,26.71267729460611,0,0,0,54,2,4,1,2,2,2019,1,1,7,0,48,45,15,1,0,1,0,19.74973433869745,19.74973433869745,0,0,0,0,0,0,0,0,0,0,2.866839020480898,0,0,0,51.24,58.84,5,1,0,0,9,5,1,488,0,0,0 +14797,18133,33077,33076,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,7.832368760451374,8.053456521860751,0,1,0,-9,6,0,10,-6.979608271180497,0,0,0,44,2,4,1,3,3,2019,1,2,5,0,36,33,15,1,0,1,0,8.809085195469981,8.809085195469981,0,0,0,0,0,0,0,0,0,0,2.031747708900237,0,0,0,48.54,54.5,6,1,0,0,9,5,1,488,0,0,0 +14798,18134,33078,-9,-9,-9,1,1,1,72,3,0,0,0,3,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-933.5953965003176,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,6.166692556699504,0,0,0,1,1,0,2.64019769787547,0,0,0,63.56,42.39,6,1,0,0,7,1,1,555,0,0,0 +14799,18135,33079,-9,-9,-9,1,1,0,50,2,0,1,0,1,-9,2,1,0,4,8.427695216208322,8.48851731000194,6.301959924211276,4,0,0,0,-9,0,-865.8067774094316,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,3,52,30,15,1,3,-9,0,8.399371238395295,8.399371238395295,0,0,0,0,0,0,0,1,1,0,5.89371120418709,0,0,0,48.64,54.73,5,4,0,1,2,4,0,228,0,0,0 +14799,18135,33080,-9,33079,-9,3,1,0,13,2,0,1,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1034.604247776355,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,4,0,0,2,4,0,228,0,0,0 +14799,18136,33081,-9,33079,-9,2,1,0,19,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1097.505700735934,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,11,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,6,4,0,0,2,1,0,282,0,0,0 +14800,18137,33082,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,5,9.276191713395153,9.055687399767159,0,3,0,0,0,-9,0,-968.3674760520256,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,50,45,15,1,0,-9,0,20.78591517530637,20.78591517530637,0,0,0,0,0,0,0,1,1,0,2.943692242478163,0,0,3,60.02,56.42,6,1,0,0,6,5,1,2671,0,0,0 +14800,18138,33083,-9,33082,-9,2,1,1,20,2,0,0,0,2,1,2,1,0,4,7.51053653970808,7.440375744884127,0,3,0,0,0,-9,0,-1064.586522404378,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,1,0,15,1,0,-9,1,170.7758322919979,170.7758322919979,0,0,0,0,0,0,0,1,1,0,0,0,3.121983475364935,3,60.52,53.2,6,1,0,0,6,3,1,1071,0,0,0 +14800,18139,33084,-9,33082,-9,3,1,1,19,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-971.9039312653957,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,0,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,59.53,56.44,7,1,0,0,6,1,1,649,0,0,0 +14801,18140,33085,33086,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.8887092058624,9.204286640976969,1,0,-9,10,0,7,193.9307696485594,0,0,0,54,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.842060859236048,8.776286581833455,0,0,57.16,56.15,7,1,0,0,5,5,1,831,0,0,0 +14801,18140,33086,33085,-9,-9,1,1,0,54,1,0,0,0,1,-9,1,1,0,4,8.066893720808128,8.118273940152317,0,1,0,-9,32,0,-7,1.739452113744711,0,0,0,61,1,4,3,2,2,2019,2,2,7,0,30,40,15,1,0,4,0,15.36445709499377,15.36445709499377,0,0,0,0,0,0,0,0,0,0,7.557940089338832,0,0,0,55.19,54.26,6,1,0,0,5,5,1,831,0,0,0 +14801,18141,33087,-9,33086,33085,3,1,1,22,2,0,0,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1009.522664873877,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,6,1,0,0,5,1,1,689,0,0,0 +14801,18142,33088,-9,33086,33085,4,1,1,20,2,0,0,0,1,1,2,1,0,5,0,4.639081413442792,4.63564982774289,3,0,0,0,-9,0,-957.9819710489965,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,3,0,0,0,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.78687650777945,0,0,0,54.1,59.11,7,1,0,0,5,2,1,504,0,0,0 +14802,18143,33089,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,6.384602190060217,6.281873757917608,3,0,0,0,-9,0,-1000.509902196563,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.98185518272287,6.292483394407152,0,0,58.67,39.12,6,1,0,0,5,2,0,193,0,0,0 +14803,18144,33090,33091,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,3,0,8.832295105092774,8.62682524409812,1,0,-9,4,0,-1,-94.17977062420125,0,0,0,72,2,3,3,2,1,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.554398355694066,8.437200453117363,0,0,55.77,36.73,7,1,0,0,9,4,1,845,0,0,0 +14803,18144,33091,33090,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,5.843139651155098,5.948256137120726,1,0,-9,4,0,1,200.3745739821721,0,0,0,71,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.389330375869068,5.731530260951833,0,0,57.33,53.46,7,1,0,0,9,4,1,845,0,0,0 +14804,18145,33092,-9,-9,-9,1,1,0,99,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1098.333942386873,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.693239525544104,0,0,0,55,42,6,1,0,0,9,1,1,845,0,0,0 +14804,18146,33093,-9,33092,-9,2,1,0,64,3,0,0,0,2,-9,2,1,0,4,6.154840922754208,7.198914475130823,6.214691429078173,3,0,0,0,-9,0,-1050.047483584841,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,10,10,15,1,0,-9,1,5.371008812699618,5.371008812699618,0,0,0,0,0,0,0,1,1,0,7.161914637765592,6.256171556327977,72.22439562802707,3,45.86,53.23,5,1,0,0,9,2,1,362,0,0,0 +14805,18147,33094,33096,-9,-9,2,1,1,50,1,0,1,0,1,-9,2,1,0,5,9.298691908111227,9.222947309447937,0,2,0,-9,8,0,-4,-74.27719699294391,0,0,0,54,1,4,1,-9,-9,2019,1,1,7,0,49,45,15,1,0,1,0,25.60158994053652,25.60158994053652,0,0,0,0,0,0,0,0,0,0,7.940710656988151,0,0,3,57.06,57.76,6,1,0,0,12,5,1,516.6666666666666,0,0,0 +14805,18147,33095,-9,33096,33094,3,1,0,17,2,0,1,0,2,1,97,3,0,5,4.603698010978985,4.654313111316243,0,2,0,0,0,-9,0,-968.2411705119291,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.668358271078223,0,0,0,43.92,62.31,6,1,0,0,12,5,1,516.6666666666666,0,0,0 +14805,18147,33096,33094,-9,-9,1,1,0,54,1,0,1,0,1,-9,1,1,0,4,5.043230830187538,4.441569221661447,0,2,0,-9,8,0,4,-52.34514880559145,0,0,0,50,1,5,1,1,1,2019,1,2,9,0,1,0,15,1,0,1,0,12.17449599632336,12.17449599632336,0,0,0,0,0,0,0,0,0,0,2.259748043713227,0,0,3,51.83,57.2,2,1,0,0,12,5,1,516.6666666666666,0,0,0 +14806,18148,33097,33098,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,5.660752105102802,5.867876209210454,1,0,-9,58,0,3,54.98552051958669,0,0,0,75,3,1,3,3,3,2019,4,1,9,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.460754703588653,5.733349314577088,15.19652437323265,1,50.82,57.78,7,1,0,0,1,2,1,364.5,0,0,0 +14806,18148,33098,33097,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,0,4.231528961443015,4.629187429246408,1,0,-9,57,0,-3,-81.0011572833624,0,0,0,78,2,3,3,3,3,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,1,0,24.39809045803227,0,0,0,0,1,1,0,5.257137273260747,4.616272066450784,0,0,40,23,6,1,0,0,1,2,1,364.5,0,0,0 +14807,18149,33099,33100,-9,-9,1,1,0,36,1,0,0,0,1,-9,1,1,0,3,7.149057774830242,7.428598270957099,0,1,0,-9,10,0,-2,-29.00668527662029,0,0,1,38,1,4,1,2,2,2019,1,2,4,0,40,16,15,1,0,1,0,4.511445409927834,4.511445409927834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,6,3,0,0,8,4,0,171.5,0,0,0 +14807,18149,33100,33099,-9,-9,2,1,1,38,1,0,0,0,1,-9,2,1,0,4,8.019545369027181,8.017284713022921,0,1,0,-9,2,0,2,103.3437154046783,0,0,0,36,1,3,1,2,2,2019,1,1,13,1,40,55,15,1,1,1,0,11.47100346142178,11.47100346142178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,34.15,5,3,0,0,8,4,0,171.5,0,0,0 +14808,18150,33101,33102,-9,-9,2,1,1,64,1,0,0,0,2,-9,4,3,0,3,0,8.118575088928354,8.349298000257171,1,0,-9,6,0,7,-28.3786263074235,0,0,0,57,1,4,1,3,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.502822111824769,8.182729595167357,0,0,57.9,51.84,6,1,0,0,7,5,1,901.5,0,0,0 +14808,18150,33102,33101,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,4,8.822393810588336,8.799258599427919,0,1,0,-9,6,0,-7,-9.659171626164515,0,0,0,64,2,3,3,1,1,2019,2,2,11,0,57,58,15,1,0,4,0,16.45596730615673,16.45596730615673,0,0,0,0,0,0,0,1,1,0,7.503575690270281,0,0,0,41.35,55.01,6,1,0,0,7,5,1,901.5,0,0,0 +14808,18151,33103,33104,-9,-9,4,1,0,24,1,0,0,0,2,-9,2,1,0,4,7.06118309205759,7.186651961326845,0,1,0,-9,1,-9,-4,115.9378482379787,-9,1,1,28,2,4,1,-9,-9,2019,1,3,7,0,15,0,15,1,0,1,0,9.185680695116904,9.185680695116904,0,0,0,0,0,0,0,1,1,0,2.479514664160203,0,0,0,43.93,55.38,6,1,0,0,7,2,1,498,0,0,0 +14808,18151,33104,33103,33102,33101,3,1,1,28,1,0,0,0,2,-9,1,1,0,4,6.690492042829143,6.841235771131773,0,1,0,1,1,-9,4,-42.54556367377697,0,1,0,24,2,4,1,1,1,2019,1,4,14,3,38,30,15,1,3,1,0,2.97825218527918,2.97825218527918,0,0,0,0,0,0,0,1,1,0,3.591566058960321,0,0,0,47.66,55.13,5,1,0,0,7,2,1,498,0,0,0 +14809,18152,33105,33108,-9,-9,1,1,1,52,1,0,3,0,2,-9,3,3,0,3,0,0,0,2,0,-9,33,0,3,0,0,0,0,49,3,4,3,-9,-9,2019,4,2,10,0,0,40,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,50,4,3,1,0,10,1,1,458,0,0,0 +14809,18152,33106,-9,33108,33105,4,1,0,16,2,0,3,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1105.34134393095,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,6,3,0,0,10,1,1,458,0,0,0 +14809,18152,33107,-9,33108,33105,6,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.0096424976134,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,10,1,1,458,0,0,0 +14809,18152,33108,33105,-9,-9,2,1,0,49,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,33,0,-3,0,0,0,0,52,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,3,0,0,10,1,1,458,0,0,0 +14809,18152,33109,-9,33108,33105,5,1,1,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1015.526090191804,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,10,1,1,458,0,0,0 +14809,18153,33110,-9,33108,33105,3,1,1,24,2,0,3,0,1,-9,2,1,0,4,8.0691857030272,8.056332374535099,0,3,0,0,0,-9,0,-931.4888771672038,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,35,35,15,1,0,-9,1,9.294952722740824,9.294952722740824,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,3,0,0,10,4,1,250,0,0,0 +14810,18154,33111,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,1,6.365671628256144,6.323316298412069,0,3,0,0,0,-9,0,-949.2671850320597,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,16,4,14,19,15,1,4,-9,0,5.906246460059857,5.906246460059857,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.17,32.75,3,1,0,0,10,2,1,1004,0,0,0 +14811,18155,33112,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,3,8.381889582906972,8.408196041218448,0,3,0,0,0,-9,0,-1024.044708979773,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,40,49,15,1,0,-9,0,12.11926118466829,12.11926118466829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,5,1,0,0,5,4,0,786,0,0,0 +14812,18156,33113,33114,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,6.678471514302682,6.975169727443769,1,0,-9,7,0,0,68.04409915988906,0,0,0,76,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.542249809837969,0,0,54.38,46.77,6,4,0,0,2,3,1,556.5,0,0,0 +14812,18156,33114,33113,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.622456858850076,7.548112792320614,1,0,-9,7,0,0,121.3035622101606,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.757938258638312,7.711828821883928,0,0,57.33,53.46,1,1,0,0,2,3,1,556.5,0,0,0 +14813,18157,33115,33116,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,2,0,0,0,1,0,-9,18,0,-4,-138.9333121162472,0,0,1,40,2,3,1,2,1,2019,1,1,5,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.64204662301107,0,0,0,48.89,38.67,3,1,0,0,11,3,1,166.5,0,0,0 +14813,18157,33116,33115,-9,-9,1,1,1,40,1,0,0,0,2,-9,2,1,0,3,8.285426103993061,8.082598541183755,0,1,0,-9,18,0,4,-87.09618937498581,0,0,0,36,2,2,1,2,-9,2019,1,2,10,0,39,39,15,1,0,1,0,9.342788270877856,9.342788270877856,0,0,0,0,0,0,0,1,1,0,3.650823526588119,0,2.694178882472215,3,46.37,50.17,5,1,0,0,11,3,1,166.5,0,0,0 +14814,18158,33117,33118,-9,-9,1,1,1,34,1,0,0,0,1,-9,2,1,0,3,8.133578506775292,7.957382372086322,0,1,0,-9,1,-9,1,-25.07433669085981,-9,0,0,33,2,3,1,-9,-9,2019,1,2,9,1,40,0,15,1,1,1,0,10.10631991413225,10.10631991413225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.85,56.43,4,1,0,0,2,4,1,768.5,0,0,0 +14814,18158,33118,33117,-9,-9,2,1,0,33,1,0,0,0,2,-9,2,1,0,3,8.39962999499889,8.236268123099455,0,1,0,-9,1,-9,-1,.5026129229040971,-9,0,1,34,1,3,1,-9,-9,2019,1,1,11,1,60,0,15,1,1,1,0,5.127418381538408,5.127418381538408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,5,1,0,0,2,4,1,768.5,0,0,0 +14815,18159,33119,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.783683701337303,8.536552553396804,0,3,0,0,0,-9,0,-973.2947840108208,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,3,40,45,15,1,3,-9,0,13.56512348573194,13.56512348573194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,6,1,0,0,8,5,1,1170,0,0,0 +14815,18160,33120,-9,33119,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.273976198329574,7.958600793526121,0,3,0,0,0,-9,0,-1018.460561983714,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,44,50,15,1,1,-9,1,10.18461148079838,10.18461148079838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,8,4,1,1387,0,0,0 +14816,18161,33121,33122,-9,-9,2,1,1,36,1,0,0,0,1,-9,1,1,0,5,3.923096474226969,4.056840125664481,0,1,0,-9,8,0,5,72.66742351064366,0,0,0,31,1,4,1,-9,-9,2019,1,1,6,0,45,50,15,1,0,1,0,.1397740688062584,.1397740688062584,0,0,0,0,0,0,0,0,0,0,4.066327473004262,0,0,0,62.39,56.71,7,1,0,0,12,5,1,1235.5,0,0,0 +14816,18161,33122,33121,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,4,8.7715046642173,8.874593483605398,0,1,0,-9,8,0,-5,18.74158881528204,0,0,1,36,1,5,1,-9,-9,2019,1,2,11,0,43,45,15,1,0,1,0,19.19616077319919,19.19616077319919,0,0,0,0,0,0,0,0,0,0,6.307012765177815,0,0,0,39.68,58.52,6,1,0,0,12,5,1,1235.5,0,0,0 +14817,18162,33123,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,1,1,0,3,8.853314186509317,8.518545081294366,0,3,0,0,0,-9,0,-952.2337302553906,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,40,15,1,0,-9,0,15.57772974795838,15.57772974795838,0,0,0,0,0,0,0,0,0,0,7.780054259287948,0,0,0,54.27,48.04,4,1,0,0,10,5,0,241,0,0,0 +14818,18163,33124,33125,-9,-9,2,1,0,46,1,0,2,0,1,-9,2,1,0,3,8.91646651749917,9.02518954988123,0,2,0,-9,3,0,-6,32.34499386343642,0,0,0,52,2,5,1,2,3,2019,1,1,10,0,38,37,15,1,0,1,0,18.2663467635188,18.2663467635188,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.37,52.72,6,1,0,0,13,4,1,372,0,0,0 +14818,18163,33125,33124,-9,-9,1,1,1,52,1,0,2,0,2,-9,2,1,0,5,8.390996283983728,8.417243117113562,0,2,0,-9,3,0,6,1.532355877453736,0,0,0,46,1,3,1,3,3,2019,1,2,11,1,45,40,15,1,1,1,0,13.6922146752636,13.6922146752636,0,0,0,0,0,0,0,1,1,0,0,0,12.46168379590474,3,48.18,61.8,6,1,0,0,13,4,1,372,0,0,0 +14818,18164,33126,-9,33124,33125,3,1,1,20,2,0,2,0,2,-9,7,2,0,4,7.060111203647026,6.810317688736073,0,3,0,0,0,-9,0,-1040.00097274058,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,12,16,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,13,2,1,1149,0,0,0 +14818,18165,33127,-9,33124,33125,4,1,1,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-979.3968591192698,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,1,13,4,1,1463,0,0,0 +14819,18166,33128,33132,-9,-9,2,1,1,42,1,0,3,0,1,-9,1,1,0,4,9.48602701146552,9.374287983413502,0,2,0,-9,9,0,1,52.02060941057469,0,0,0,41,1,5,1,2,2,2019,1,1,12,0,40,35,15,1,0,1,0,45.59384310096163,45.59384310096163,0,0,0,0,0,0,0,0,0,0,2.948941693565386,0,0,0,46.39,60.99,6,1,0,0,12,5,1,998.8,0,0,0 +14819,18166,33129,-9,33132,33128,5,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.44185988759,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,998.8,0,0,0 +14819,18166,33130,-9,33132,33128,3,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-981.9673232166894,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,5,1,0,0,12,5,1,998.8,0,0,0 +14819,18166,33131,-9,33132,33128,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1089.179979109508,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,12,5,1,998.8,0,0,0 +14819,18166,33132,33128,-9,-9,1,1,0,41,1,0,3,0,1,-9,1,1,0,5,6.685058427754899,6.986422850860963,0,2,0,-9,9,0,-1,2.980183602788804,0,0,1,42,1,4,1,2,1,2019,1,2,8,0,10,12,15,1,0,1,0,13.45454005345319,13.45454005345319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,998.8,0,0,0 +14820,18167,33133,33134,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,2,0,4.17689711642594,4.014661611420451,1,0,-9,7,0,10,59.07317110592362,0,0,0,68,2,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,131.5523963425549,0,0,0,0,1,1,0,3.621649917331121,3.967946551264792,0,0,54.51,44.28,6,1,0,0,11,2,0,369.5,0,0,0 +14820,18167,33134,33133,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.643564600522065,6.56697759408997,1,0,-9,7,0,-10,55.21156347771733,0,0,0,78,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.587568823792113,114.0683361559115,1,56.26,38.87,6,1,0,0,11,2,0,369.5,0,0,0 +14821,18168,33135,-9,33136,33137,3,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-968.6404561658807,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,10,4,1,378,0,0,0 +14821,18168,33136,33137,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,2,7.941488713447176,7.972456466022392,0,2,0,-9,7,0,1,-113.0097247883887,0,0,0,45,2,4,1,3,3,2019,1,2,10,3,35,35,15,1,3,1,0,11.15412980322682,11.15412980322682,0,0,0,0,0,0,0,1,1,0,4.249488359765076,0,0,0,41.55,43.6,3,1,0,0,10,4,1,378,0,0,0 +14821,18168,33137,33136,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.40008671425201,8.266321591970458,0,2,0,-9,7,0,-1,67.76764738379632,0,0,0,46,2,2,1,2,1,2019,1,1,6,0,37,43,15,1,0,1,0,16.63766756348084,16.63766756348084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,1,378,0,0,0 +14822,18169,33138,-9,-9,-9,1,1,0,74,3,0,0,0,1,-9,4,3,0,3,0,8.074796303625664,7.950455762932143,3,0,0,0,-9,0,-895.8543146089461,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.581956865416779,8.055304871696972,0,0,51.94,40.74,3,1,0,0,9,4,1,6632,0,0,0 +14823,18170,33139,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,4,0,7.934554879955289,7.942435097138013,3,0,0,0,-9,0,-1072.302851453693,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.216780055917949,7.918958951428327,0,0,56.47,44.11,6,1,0,0,7,4,1,1319,0,0,0 +14824,18171,33140,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,2,1,0,4,6.888296546465816,7.632736971840663,7.046667966176244,3,0,0,0,-9,0,-956.5489606960992,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,17,17,15,1,2,-9,0,7.675941434611318,7.675941434611318,0,0,0,0,0,0,0,1,1,0,6.68904682134328,7.072643284551434,0,0,41.45,55.24,5,1,0,0,7,3,1,233,0,0,0 +14825,18172,33141,-9,33144,33143,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1088.973684041447,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,4,1,606.75,0,0,0 +14825,18172,33142,-9,33144,33143,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.4295124120522,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,4,1,606.75,0,0,0 +14825,18172,33143,33144,-9,-9,1,1,1,39,1,0,2,0,1,-9,2,1,0,2,8.555673351159561,8.830510925917594,0,2,0,-9,9,0,-4,-106.1149088252083,0,0,0,43,1,4,1,2,2,2019,1,2,5,0,40,48,15,1,0,1,0,18.33299237408575,18.33299237408575,0,0,0,0,0,0,0,1,1,0,4.573782600205178,0,0,0,51.65,52.38,6,3,0,0,8,4,1,606.75,0,0,0 +14825,18172,33144,33143,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,0,0,0,2,0,-9,9,0,4,68.74017098472366,0,0,1,39,1,2,1,3,1,2019,1,1,5,0,0,35,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.235700077965864,0,0,0,56.08,47.09,6,1,0,1,8,4,1,606.75,0,0,0 +14826,18173,33145,33146,-9,-9,2,1,0,52,1,0,1,0,1,-9,2,1,0,2,8.806032854471407,8.782594210990089,5.97065054012559,2,0,-9,18,0,8,42.4188185062082,0,0,0,44,2,5,1,2,2,2019,1,1,9,1,10,40,15,1,1,1,0,75.85942589189195,75.85942589189195,0,0,0,0,0,0,0,1,1,0,0,6.418973545545913,0,0,64.40000000000001,25.94,6,1,0,0,9,5,1,570.5,0,0,0 +14826,18173,33146,33145,-9,-9,1,1,1,44,1,0,1,0,2,-9,1,1,0,5,8.319756989126562,8.247184833658338,0,2,0,-9,18,0,-8,-12.30033266662242,0,0,0,52,1,2,1,2,2,2019,1,2,6,0,38,40,15,1,0,1,0,16.6395189152558,16.6395189152558,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,570.5,0,0,0 +14827,18174,33147,33149,-9,-9,2,1,1,31,1,1,1,0,2,-9,2,1,0,4,9.030615144613774,8.640873504005816,0,2,0,-9,7,0,0,4.744568494001917,0,0,0,31,1,4,1,2,2,2019,1,1,11,0,42,41,15,1,0,1,0,16.49110963633297,16.49110963633297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,7,1,0,0,12,5,1,546.6666666666666,0,0,0 +14827,18174,33148,-9,33149,33147,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.859075278228,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,12,5,1,546.6666666666666,0,0,0 +14827,18174,33149,33147,-9,-9,1,1,0,31,1,1,1,0,1,-9,2,1,0,4,9.612386506964402,9.090129604682323,0,2,0,-9,7,0,0,-123.1039235913933,0,0,1,31,2,4,1,2,2,2019,1,2,8,1,35,35,15,1,1,1,0,36.2636592430302,36.2636592430302,0,0,0,0,0,0,0,0,0,0,4.393442677785669,0,0,0,62.01,38.87,7,1,0,0,12,5,1,546.6666666666666,0,0,0 +14828,18175,33150,33151,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,51,0,3,46.65775227839036,0,0,0,68,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,129.2966071390996,0,0,0,0,1,1,0,0,0,0,0,57.81,16.27,6,1,0,0,4,2,1,301.5,0,0,0 +14828,18175,33151,33150,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.102276977447223,6.165007349202655,1,0,-9,51,0,-3,2.409841056101355,0,0,0,71,3,1,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.189796877443863,121.7873887442331,2,38.75,52.43,6,1,0,0,4,2,1,301.5,0,0,0 +14828,18176,33152,-9,33151,33150,3,1,1,48,3,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1037.785076815392,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,4,1,1,1467,0,0,0 +14829,18177,33153,-9,33154,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-908.7427120974327,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,12,2,0,391.3333333333333,0,0,0 +14829,18177,33154,-9,-9,-9,1,1,0,34,2,0,2,0,2,-9,2,1,0,3,7.229883270410911,6.853271190167924,0,4,0,0,0,-9,0,-1076.404071241438,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,16,16,15,1,0,-9,0,8.424908539561367,8.424908539561367,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,12,2,0,391.3333333333333,0,0,0 +14829,18177,33155,-9,33154,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-977.3989335192763,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,2,0,391.3333333333333,0,0,0 +14830,18178,33156,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,1,1,0,3,9.397949849257785,9.430748437328875,0,3,0,0,0,-9,0,-957.7465390412277,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,40,15,1,0,-9,0,30.30797897394631,30.30797897394631,0,0,0,0,0,0,0,0,0,0,1.550934650071603,0,0,0,54.96,53.17,5,1,0,0,12,5,1,1506,0,0,0 +14831,18179,33157,-9,-9,-9,1,1,1,89,3,0,0,0,3,-9,4,3,0,2,0,2.625787333571604,2.957746126472332,3,0,0,0,-9,0,-1048.972606767161,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,1,0,0,9.597598119597603,17.1209324337847,0,0,1,1,0,2.173432256599736,2.94724395535643,0,0,47.29,19.93,6,1,0,0,4,1,1,227,0,0,0 +14832,18180,33158,-9,-9,33159,2,1,0,16,2,0,0,1,3,-9,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1004.514548705634,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.43,58.05,7,1,0,0,9,1,0,436,0,0,0 +14832,18180,33159,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-905.6462373384668,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.21,26.19,6,1,0,0,9,1,0,436,0,0,0 +14833,18181,33160,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,3,0,5.754913632342479,6.11953742694847,3,0,0,0,-9,0,-889.2284626340213,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.254508805297665,5.230615646307197,0,0,53,45,6,1,0,0,9,2,1,377,0,0,0 +14834,18182,33161,-9,33162,33163,3,1,0,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-929.341610005994,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.44,47.81,7,1,0,0,1,2,0,784,0,0,0 +14834,18182,33162,33163,-9,-9,2,1,0,52,1,0,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,27,0,-1,-5.324071430940643,0,0,0,53,3,1,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.31874147121461,3,36.55,49.51,2,1,0,1,1,2,0,784,0,0,0 +14834,18182,33163,33162,-9,-9,1,1,1,53,1,0,2,0,3,-9,2,1,0,1,7.529431852583805,7.225702545449426,0,2,0,-9,27,0,1,-45.41534673941182,0,0,0,52,2,3,3,-9,2,2019,2,2,16,4,32,32,15,1,4,3,0,4.835309335744122,4.835309335744122,0,0,0,0,0,0,0,1,1,0,0,0,3.565543710025985,3,35.79,20.44,4,1,0,0,1,2,0,784,0,0,0 +14835,18183,33164,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,6,3,0,1,0,8.277786147050277,8.512454769172756,3,0,0,0,-9,0,-1067.392376568257,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,11,0,40,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.716994090565627,0,79.28955614537982,3,29.78,25.84,2,1,0,1,5,4,1,1605,0,0,0 +14836,18184,33165,-9,-9,-9,1,1,0,70,3,0,0,0,1,-9,4,3,0,2,0,7.403336179336065,7.079184319703851,3,0,0,0,-9,0,-966.498039688398,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,23,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.767926655624244,7.567968647688431,0,0,44.48,29.84,3,1,0,1,10,3,1,179,0,0,0 +14837,18185,33166,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1074.0737148086,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,19.03,4,1,0,0,13,1,0,1210,0,0,0 +14838,18186,33167,-9,33171,33170,3,1,1,16,2,0,3,1,2,-9,7,2,0,4,4.67830502619808,4.357375089223638,0,2,0,0,0,-9,0,-965.3470747387812,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,2,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.167652424125962,0,0,0,51.83,57.2,6,1,0,0,6,4,1,1097.2,0,0,0 +14838,18186,33168,-9,33171,33170,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-824.6056435027635,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1097.2,0,0,0 +14838,18186,33169,-9,33171,33170,4,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.268805305593,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,1,1097.2,0,0,0 +14838,18186,33170,33171,-9,-9,2,1,1,46,1,0,3,0,1,-9,2,1,0,4,8.857019962170888,8.913273011434832,0,2,0,-9,28,0,-3,-146.8906875675897,0,0,0,49,2,4,1,2,2,2019,1,1,5,0,38,41,15,1,0,1,0,22.20821698941766,22.20821698941766,0,0,0,0,0,0,0,1,1,0,3.679298084346382,0,3.314501750701052,3,54.2,57.49,6,2,0,0,6,4,1,1097.2,0,0,0 +14838,18186,33171,33170,-9,-9,1,1,0,49,1,0,3,0,2,-9,2,1,0,4,7.43690974942539,7.746032757436915,0,2,0,-9,28,0,3,-47.96007588885205,0,0,0,46,1,4,1,2,1,2019,1,2,9,0,12,12,15,1,0,1,0,20.9865828603249,20.9865828603249,0,0,0,0,0,0,0,1,1,0,4.778530555911912,0,0,3,54.79,55.86,7,1,0,0,6,4,1,1097.2,0,0,0 +14839,18187,33172,33173,-9,-9,1,1,1,63,1,0,0,0,3,-9,2,1,0,3,7.315717365469977,7.487425402054482,0,1,0,-9,38,0,5,11.15607796000958,0,0,0,58,3,2,3,3,3,2019,2,2,6,0,40,32,15,1,0,3,0,5.346230462274473,5.346230462274473,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.73,54.34,6,3,0,1,5,2,0,649.5,0,0,0 +14839,18187,33173,33172,-9,-9,2,1,0,58,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,38,0,-5,19.75844732006457,0,0,0,63,3,3,1,3,3,2019,3,1,16,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.978543065196709,0,0,0,38.81,36.33,6,3,0,1,5,2,0,649.5,0,0,0 +14839,18188,33174,-9,33173,33172,3,1,1,22,2,0,0,0,1,1,1,1,0,4,8.746172537238758,8.650828923571019,0,3,0,0,0,-9,0,-806.558307899342,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,37,0,15,1,6,-9,1,19.47258785962078,19.47258785962078,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.76,57.87,5,3,0,0,5,5,0,1692,0,0,0 +14840,18189,33175,-9,-9,-9,1,1,0,53,2,0,0,0,2,-9,2,1,0,2,7.393016322023226,7.561099961997041,0,3,0,0,0,-9,0,-1030.847124493481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,15,12,15,1,0,-9,0,11.49510343201981,11.49510343201981,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.7,26.41,5,1,0,1,7,3,1,834,0,0,0 +14841,18190,33176,33177,-9,-9,2,1,0,73,1,0,0,0,1,-9,4,3,0,4,0,6.922021158570188,6.956979331585597,1,0,-9,31,0,0,88.67488919802356,0,0,0,73,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.326212259026896,7.161708749107733,0,0,51.77,58.57,6,1,0,0,10,5,1,3040.5,0,0,0 +14841,18190,33177,33176,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.54516662911821,8.553456635488942,1,0,-9,31,0,0,-95.91511329777033,0,0,0,73,1,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.512069045116347,8.862054493788914,0,0,48.21,50.73,6,1,0,0,10,5,1,3040.5,0,0,0 +14842,18191,33178,33179,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,7.886379956574444,7.578240538881071,0,1,0,-9,32,0,5,-61.78451973465739,0,0,0,54,2,4,1,-9,-9,2019,1,1,6,0,36,36,15,1,0,1,0,7.271528798899318,7.271528798899318,0,0,0,0,0,0,0,0,0,0,4.478858074100785,0,0,0,51.9,53.61,5,1,0,0,8,4,1,410.5,0,0,0 +14842,18191,33179,33178,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,4,8.16386531417486,8.085778882303961,0,1,0,-9,32,0,-5,-29.90548356885038,0,0,0,59,2,3,1,2,2,2019,1,2,7,0,40,50,15,1,0,1,0,12.40957122303341,12.40957122303341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,51,6,1,0,0,8,4,1,410.5,0,0,0 +14843,18192,33180,-9,-9,-9,1,1,0,42,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-998.1033844155894,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.53,23.71,4,1,0,1,13,1,0,2362,0,0,0 +14844,18193,33181,-9,-9,-9,1,1,1,22,2,0,0,0,1,0,7,2,0,3,6.906026055409596,7.065366131380635,0,3,0,0,0,-9,0,-946.1408962859007,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,16,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.266254041335092,0,0,0,52,54.51,6,1,0,0,12,2,1,807,0,0,0 +14845,18194,33182,33183,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,3,8.312423624707984,8.148042516757275,0,1,0,-9,31,0,-4,0,0,0,0,53,2,4,1,2,1,2019,1,2,19,7,42,42,15,1,7,1,0,10.02434374871542,10.02434374871542,0,0,0,0,0,0,0,0,0,0,0,0,41.01358657473285,3,35.39,32.09,5,1,0,0,1,5,1,1128.5,0,0,0 +14845,18194,33183,33182,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,4,8.045976136377313,8.07220091180394,0,1,0,-9,32,0,4,0,0,0,0,49,1,3,1,2,3,2019,1,1,6,0,24,28,15,1,0,1,0,15.98941397613775,15.98941397613775,0,0,0,0,0,0,0,0,0,0,0,0,9.144376301203533,3,61.42,40.5,5,1,0,0,1,5,1,1128.5,0,0,0 +14846,18195,33184,-9,33186,33185,5,1,1,17,2,0,1,1,3,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-999.6503424286974,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,12,4,1,4059,0,0,0 +14846,18195,33185,33186,-9,-9,2,1,1,57,1,0,1,0,1,-9,2,1,0,4,8.590623324220717,8.850074153749604,0,2,0,-9,32,0,0,102.4084789695185,0,0,0,57,1,5,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,14.57693495510922,14.57693495510922,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,6,1,0,0,12,4,1,4059,0,0,0 +14846,18195,33186,33185,-9,-9,1,1,0,57,1,0,1,0,1,-9,2,1,0,5,8.278324585006125,8.226433177511678,0,2,0,-9,33,0,0,-83.63189804551919,0,0,0,57,1,4,1,3,3,2019,1,2,7,0,12,6,15,1,0,1,0,35.29819639072436,35.29819639072436,0,0,0,0,0,0,0,1,1,0,3.37199536801238,0,0,0,54.1,59.11,6,1,0,0,12,4,1,4059,0,0,0 +14846,18196,33187,-9,33186,33185,3,1,1,23,2,0,1,0,1,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1042.715592378919,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,12,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.994337484168176,0,0,0,38.99,60.52,4,1,0,0,12,1,1,284,0,0,0 +14846,18197,33188,-9,33186,33185,4,1,1,20,2,0,1,0,2,0,7,2,0,5,5.243211636021908,4.877282885099244,0,3,0,0,0,-9,0,-919.9383163650321,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,4,1,0,0,12,2,1,156,0,0,0 +14847,18198,33189,33190,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.320828314540845,7.443652059137971,1,0,-9,5,0,1,39.97118710955493,0,0,0,68,1,3,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.515390567975619,7.047761161775309,0,0,60.13,49.27,6,1,0,0,9,4,1,1405.5,0,0,0 +14847,18198,33190,33189,-9,-9,2,1,1,68,1,0,0,0,1,-9,1,1,0,3,8.209047788256072,8.559168618125229,0,1,0,-9,5,0,-1,29.81837095182585,0,0,0,69,2,4,3,3,3,2019,2,1,12,1,60,35,15,1,1,4,0,7.523444758897484,7.523444758897484,0,0,0,0,0,0,0,1,1,0,7.590515638991001,0,3.074315653218332,3,54.27,48.04,6,1,0,0,9,4,1,1405.5,0,0,0 +14848,18199,33191,-9,33192,-9,2,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-991.4132970045836,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,13,2,0,743,0,0,0 +14848,18199,33192,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,3,7.192387113136281,7.540420114002949,5.063896918668505,4,0,0,0,-9,0,-1015.663216452248,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,1,27,28,15,1,1,-9,0,6.430315421084388,6.430315421084388,0,0,0,0,0,0,0,1,1,0,5.495832710087821,0,0,0,46.26,42.16,5,1,0,0,13,2,0,743,0,0,0 +14849,18200,33193,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,4,3,0,2,0,8.140055373230433,8.024545840795435,3,0,0,0,-9,0,-1050.467159159345,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.690787825118794,8.155737106412236,0,0,52.64,43.94,6,1,0,0,12,4,1,381,0,0,0 +14850,18201,33194,-9,-9,-9,1,1,0,54,3,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1001.340969922238,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,16.89,5,1,1,0,13,1,0,394,0,0,0 +14850,18202,33195,-9,33194,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.000558913511435,8.148072584638175,0,3,0,0,0,-9,0,-988.0215281053091,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,43,41,15,1,2,-9,1,8.013182561471888,8.013182561471888,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.19,60.03,6,1,0,0,13,4,0,180,0,0,0 +14851,18203,33196,-9,33199,33197,3,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-917.1201495542351,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,904.5,0,0,0 +14851,18203,33197,33199,-9,-9,1,1,1,40,1,0,4,0,2,-9,2,1,0,3,8.052137251595532,8.262707634377758,0,2,0,-9,7,0,8,1.096641459689755,0,0,0,32,1,4,1,2,2,2019,1,2,17,5,37,37,15,1,5,1,0,9.911489705715772,9.911489705715772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.35,50.81,5,1,0,0,13,3,1,904.5,0,0,0 +14851,18203,33198,-9,33199,33197,5,1,1,4,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.829865390179,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,1,904.5,0,0,0 +14851,18203,33199,33197,-9,-9,2,1,0,32,1,0,4,0,1,-9,2,1,0,4,7.937289146702462,8.076555710765488,0,2,0,-9,7,0,-8,-8.92697624017881,0,0,1,40,2,3,1,-9,-9,2019,1,1,13,1,33,33,15,1,1,1,0,9.806302366334055,9.806302366334055,0,0,0,0,0,0,0,1,1,0,2.617758252841124,0,0,0,41.3,60.77,5,1,0,0,13,3,1,904.5,0,0,0 +14851,18203,33200,-9,33199,33197,6,1,0,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.7710246093576,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,3,1,904.5,0,0,0 +14851,18203,33201,-9,33199,33197,4,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.4018337418592,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,904.5,0,0,0 +14852,18204,33202,-9,33203,-9,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-943.3031430818791,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,1,1,801.6666666666666,0,0,0 +14852,18204,33203,-9,-9,-9,1,1,0,33,3,0,2,0,2,-9,8,3,1,1,0,0,0,4,0,-9,0,1,0,-1000.701487254464,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,74.23377044579937,3,37.35,15.58,4,1,0,0,4,1,1,801.6666666666666,0,0,0 +14852,18204,33204,-9,33203,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-953.2791481267325,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,1,1,801.6666666666666,0,0,0 +14853,18205,33205,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1001.740506149146,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.032576205417757,0,0,0,35.22,32.79,2,3,0,1,6,1,1,407,0,0,0 +14853,18206,33206,-9,33205,-9,2,1,1,29,2,0,0,0,2,-9,1,1,0,3,6.834974200169951,6.416587757168791,0,3,0,0,0,-9,0,-1034.125481712495,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,40,24,15,1,6,-9,1,2.769448857994421,2.769448857994421,0,0,0,0,0,0,0,1,1,0,6.682219114751712,0,0,0,28.22,57.33,3,3,0,0,6,2,1,166,0,0,0 +14853,18207,33207,-9,33205,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,5,7.838501734374161,7.573250423911444,0,3,0,0,0,-9,0,-1002.120953326959,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,9,0,38,13,15,1,0,-9,1,4.58659022970933,4.58659022970933,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.21,58,7,3,0,0,6,3,1,228,0,0,0 +14854,18208,33208,33209,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,6.372520016642352,6.51037425258902,1,0,-9,6,0,2,-44.93192882184145,0,0,0,63,2,3,3,-9,-9,2019,4,1,10,0,0,35,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.078312051151194,6.505773850834857,0,0,52,47,5,1,0,0,1,2,1,1614.5,0,0,0 +14854,18208,33209,33208,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,6.361688750518919,6.404803290053546,1,0,-9,43,0,-2,-52.22420170983682,0,0,0,65,2,3,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.549352919524092,6.242966317793347,0,0,43.9,57.01,6,1,0,0,1,2,1,1614.5,0,0,0 +14855,18209,33210,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,4,0,7.242871312672879,7.236098352073968,3,0,0,0,-9,0,-1057.837673044868,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.448029176365679,7.370634305286356,0,0,57.76,48.98,6,1,0,0,10,2,1,1300,0,0,0 +14856,18210,33211,-9,33212,33213,1,1,1,34,2,0,0,0,2,-9,2,1,0,3,8.147039692699233,8.294332700116511,0,3,0,0,0,-9,0,-918.1877575056258,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,42,37,15,1,0,-9,1,8.704795076688145,8.704795076688145,0,0,0,0,0,0,0,1,1,0,2.345367581393145,0,0,0,57.33,53.46,6,1,0,0,12,4,1,620,0,0,0 +14856,18211,33212,33213,-9,-9,2,1,0,58,1,0,0,0,3,-9,2,1,0,3,7.628975378671567,7.603418989925088,0,1,0,-9,5,0,-6,16.70071164494185,0,0,0,64,2,4,3,-9,-9,2019,2,3,9,2,27,27,15,1,2,4,0,10.09300657158211,10.09300657158211,0,0,0,0,0,0,0,1,1,0,1.380917199444391,0,0,0,44.11,47.15,7,1,0,0,12,3,1,474.5,0,0,0 +14856,18211,33213,33212,-9,-9,3,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,5,0,6,39.2024432273998,0,0,0,58,3,3,1,-9,-9,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,52,6,5,0,0,12,3,1,474.5,0,0,0 +14857,18212,33214,-9,-9,-9,1,1,1,35,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,-9,0,0,0,-1010.323955168719,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,5,1,0,0,4,1,0,145,0,0,0 +14858,18213,33215,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,3,7.632239458415203,8.125919927118259,0,3,0,0,0,-9,0,-1008.643083019187,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,38,15,1,0,-9,0,7.120952815704804,7.120952815704804,0,0,0,0,0,0,0,1,1,0,4.568952077613388,0,0,0,57.33,53.46,6,1,0,0,12,3,1,366,0,0,0 +14859,18214,33216,33217,-9,-9,1,1,1,63,1,0,0,0,1,-9,2,1,0,3,9.411671364054582,9.563998785059981,6.539489462369002,1,0,-9,22,0,-15,21.74547127866654,0,0,0,78,2,3,3,2,2,2019,2,2,8,0,50,37,15,1,0,4,0,29.49497363065577,29.49497363065577,0,0,0,0,0,0,0,1,1,0,7.183537568027293,6.821977639505144,0,0,63.73,36.85,6,1,0,0,7,5,1,731,0,0,0 +14859,18214,33217,33216,-9,-9,2,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,4.588903921001068,4.474024021795886,1,0,-9,22,0,15,-162.564963212348,0,0,0,63,1,3,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.578754709818085,4.42365739609737,0,0,59.07,43.05,6,1,0,0,7,5,1,731,0,0,0 +14860,18215,33218,33219,-9,-9,2,1,0,62,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-4,0,0,0,0,66,3,3,3,3,3,2019,4,1,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,0,0,4,1,1,2054.5,0,0,0 +14860,18215,33219,33218,-9,-9,1,1,1,66,1,0,2,0,3,-9,4,3,0,3,0,0,0,2,0,-9,46,0,4,0,0,0,0,62,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,3,0,0,4,1,1,2054.5,0,0,0 +14860,18216,33220,33222,33218,33219,6,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.220786027462614,8.058421752411082,0,2,0,-9,5,0,2,49.41351145813636,0,0,0,36,3,3,3,3,3,2019,2,3,10,0,0,40,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,4,3,1,480,0,0,0 +14860,18216,33221,-9,33222,33220,5,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1191.459045957185,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,3,1,480,0,0,0 +14860,18216,33222,33220,-9,-9,3,1,0,36,1,0,2,0,3,-9,6,3,0,3,0,0,0,2,0,-9,5,0,-2,28.75575158751226,0,0,1,38,2,4,1,3,2,2019,3,6,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.82,37.85,6,3,0,0,4,3,1,480,0,0,0 +14860,18216,33223,-9,33222,33220,4,1,1,15,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-985.3989713842263,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,6,3,0,0,4,3,1,480,0,0,0 +14861,18217,33224,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,4,9.002137653423272,9.038802055335063,0,3,0,0,0,-9,0,-998.5900957456761,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,32,120,15,1,0,-9,0,35.49799277729478,35.49799277729478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,49.75,6,1,0,0,6,5,1,2424,0,0,0 +14862,18218,33225,33226,-9,-9,1,1,0,48,1,0,1,0,3,-9,1,1,0,5,9.885466397386946,9.792859588702063,0,2,0,-9,7,0,0,29.21361020619158,0,0,0,48,2,4,1,3,3,2019,1,2,7,0,30,25,15,1,0,1,0,70.27571287020859,70.27571287020859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,10,5,1,439,0,0,0 +14862,18218,33226,33225,-9,-9,2,1,1,48,1,0,1,0,2,-9,2,1,0,4,8.243951154056187,8.421468384960205,0,2,0,-9,7,0,0,-74.52971205324619,0,0,0,48,3,5,1,2,2,2019,1,1,6,0,40,40,15,1,0,1,0,12.7760848208041,12.7760848208041,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,1,1,0,0,10,5,1,439,0,0,0 +14862,18218,33227,-9,33225,33226,4,1,0,17,2,0,1,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1013.356803045621,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,18,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.93,50.29,7,1,0,0,10,5,1,439,0,0,0 +14862,18219,33228,-9,33225,33226,3,1,0,19,2,0,1,0,2,-9,2,1,0,4,7.758610842422629,8.104567939540743,0,3,0,0,0,-9,0,-998.5991838316514,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,0,38,0,15,1,0,-9,1,8.602180533760491,8.602180533760491,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,6,1,0,0,10,3,1,441,0,0,0 +14863,18220,33229,33230,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,4,9.414154035585131,9.930191698346814,0,1,0,-9,10,0,0,115.1562237034609,0,0,0,54,1,3,1,1,1,2019,1,2,7,1,76,40,15,1,1,1,0,25.33819652978799,25.33819652978799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.37,55.06,6,1,0,0,6,5,1,1884,0,0,0 +14863,18220,33230,33229,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,3,6.786383610740821,6.844818513801309,0,1,0,-9,10,0,0,75.6516655287702,0,0,0,54,1,4,1,3,2,2019,1,1,10,0,20,0,15,1,0,1,0,6.936897558665226,6.936897558665226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,54.48,5,1,0,0,6,5,1,1884,0,0,0 +14863,18221,33231,-9,33230,33229,3,1,1,24,3,0,0,0,1,-9,2,1,0,3,8.726746023665626,8.33050738915559,0,3,0,0,0,-9,0,-1006.524182076496,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,5,46,50,15,1,5,-9,1,10.86820336744902,10.86820336744902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.07,57.33,2,1,0,0,6,5,1,513,0,0,0 +14864,18222,33232,-9,33233,33234,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.3457524823494,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,0,273.3333333333333,0,0,0 +14864,18222,33233,33234,-9,-9,1,1,0,38,1,0,1,0,2,-9,2,1,0,4,7.893253356056963,7.727253025782316,0,2,0,-9,5,0,0,78.06000184015795,0,0,1,38,3,4,1,2,2,2019,1,2,13,2,37,37,15,1,2,1,0,9.08737767719888,9.08737767719888,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.83,6,1,0,0,13,3,0,273.3333333333333,0,0,0 +14864,18222,33234,33233,-9,-9,2,1,1,38,1,0,1,0,3,-9,2,1,0,4,6.534622589953657,6.642798221381737,0,2,0,-9,5,0,0,85.47368715347054,-9,0,0,38,2,4,1,2,2,2019,1,1,9,0,24,0,15,1,0,1,0,3.361090030479319,3.361090030479319,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,1,0,0,13,3,0,273.3333333333333,0,0,0 +14865,18223,33235,33236,-9,-9,2,1,0,62,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,34,0,5,-111.3022497336075,0,0,0,57,2,2,1,2,3,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.056764635987566,0,15.27976407650297,3,23.03,42.32,4,1,0,0,13,4,1,492.5,0,0,0 +14865,18223,33236,33235,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,2,7.703790891545603,8.540770827073056,7.649763525633269,1,0,-9,35,0,-5,33.54780703108624,0,0,0,62,2,2,3,3,3,2019,2,2,7,0,55,28,15,1,0,3,0,4.416013177064182,4.416013177064182,0,0,0,0,0,0,0,1,1,0,7.715870063795554,7.198437068863397,0,0,63.79,38.64,5,1,0,0,13,4,1,492.5,0,0,0 +14866,18224,33237,33238,-9,-9,1,1,0,47,1,0,1,0,3,-9,2,1,0,3,7.438861211150578,7.307639569981498,0,2,0,-9,23,0,0,3.15491945196888,0,0,0,47,2,4,1,2,2,2019,1,2,13,3,22,20,15,1,3,1,0,7.363146523819223,7.363146523819223,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,22.03,4,1,0,0,7,4,1,674,0,0,0 +14866,18224,33238,33237,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,4,8.403748564828787,8.482680666604464,0,2,0,-9,6,0,0,-15.3760337977926,0,0,0,47,3,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,14.82159713347125,14.82159713347125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,7,4,1,674,0,0,0 +14866,18224,33239,-9,33237,33238,4,1,1,17,2,0,1,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1112.217259725282,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.85,45.17,3,1,0,0,7,4,1,674,0,0,0 +14866,18225,33240,-9,33237,33238,3,1,0,19,2,0,1,0,2,1,2,1,0,3,7.427635635059779,7.956634679777813,0,3,0,0,0,-9,0,-949.6438804716798,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,1,38,0,15,1,1,-9,1,8.306706685932911,8.306706685932911,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.22,61.83,5,1,0,0,7,3,1,234,0,0,0 +14867,18226,33241,33242,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,3,7.551343386657592,7.993023067153771,0,1,0,-9,23,0,0,-7.46395791087853,0,0,0,55,2,2,1,2,2,2019,1,1,5,0,35,35,15,1,0,1,0,7.063987930995599,7.063987930995599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,53.24,6,1,0,0,12,5,1,1421,0,0,0 +14867,18226,33242,33241,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,2,8.657947357788549,8.334379502748977,0,1,0,-9,23,0,0,-23.28630643717999,0,0,0,55,3,3,1,2,2,2019,1,2,12,1,40,46,15,1,1,1,0,16.30704187643122,16.30704187643122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.19,33.98,6,1,0,0,12,5,1,1421,0,0,0 +14867,18226,33243,-9,33241,33242,3,1,1,16,2,0,0,0,2,-9,11,2,0,4,7.735516486990002,7.676270473514466,0,1,0,0,0,-9,0,-1107.673602802114,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,38,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,6,1,0,0,12,5,1,1421,0,0,0 +14868,18227,33244,33246,-9,-9,1,1,0,44,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,13,0,-5,69.40907679787489,0,0,1,49,2,3,1,2,3,2019,3,2,19,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.13463758851355,0,0,0,39.15,26.64,3,1,0,0,9,3,0,679.25,0,0,0 +14868,18227,33245,-9,33244,33246,5,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.9076038459,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,0,679.25,0,0,0 +14868,18227,33246,33244,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,3,8.677782112480125,8.563897594067736,0,2,0,-9,14,0,5,-17.69446807224352,0,0,0,44,2,1,3,2,-9,2019,2,1,14,2,40,50,15,1,2,3,0,13.38331245709928,13.38331245709928,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,48.41,3,1,0,1,9,3,0,679.25,0,0,0 +14868,18227,33247,-9,33244,33246,4,1,0,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1065.498467542226,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,9,3,0,679.25,0,0,0 +14869,18228,33248,33249,-9,-9,2,1,1,69,1,0,0,0,1,-9,2,1,0,2,7.505059559531784,7.517586128590521,5.121539422485048,1,0,-9,49,0,-2,-72.09494577325967,0,0,0,71,3,3,3,2,3,2019,2,1,10,0,18,18,15,1,0,4,0,10.15369542234317,10.15369542234317,0,0,0,0,0,0,0,1,1,0,0,5.217518259676587,0,0,40.6,43.77,5,1,0,0,11,2,1,909.5,0,0,0 +14869,18228,33249,33248,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,2,-28.6987464748649,0,0,0,69,1,2,1,2,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,4.447719092386248,0,0,0,56.35,51.16,6,1,0,0,11,2,1,909.5,0,0,0 +14870,18229,33250,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,2,1,0,3,8.968634181468195,9.030046169529751,0,3,0,0,0,-9,0,-1024.640601798605,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,38,41,15,1,0,-9,0,24.41939202855821,24.41939202855821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,6,2,0,0,8,5,1,823,0,0,0 +14870,18230,33251,-9,-9,33250,2,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.067836655606927,8.061113300097821,0,3,0,-9,0,-9,0,-962.2883625960155,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,38,0,15,1,2,-9,1,8.701827897452739,8.701827897452739,0,0,0,0,0,0,0,0,0,0,3.388746696992847,0,0,0,47,58,5,2,0,0,8,4,1,302,0,0,0 +14871,18231,33252,33253,-9,-9,1,1,0,37,1,0,0,0,2,-9,2,1,0,3,8.423981660326088,8.223569663460472,0,1,0,-9,5,0,-3,74.94564736601907,0,0,1,40,2,4,1,2,2,2019,1,2,10,0,44,42,15,1,0,1,0,10.96110467393888,10.96110467393888,0,0,0,0,0,0,0,0,0,0,0,0,.237313111524593,3,44.36,54.04,5,1,0,0,11,5,1,2036,0,0,0 +14871,18231,33253,33252,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,4,8.440459204402647,8.284126557034757,0,1,0,-9,5,0,3,23.25385575736871,0,0,0,37,2,3,1,-9,-9,2019,1,1,9,0,61,58,15,1,1,1,0,8.581599595250514,8.581599595250514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,6,1,0,0,11,5,1,2036,0,0,0 +14872,18232,33254,33257,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,4,7.694374327631036,7.707126653419575,0,2,0,-9,14,0,-1,9.461140561372979,0,0,1,37,2,2,1,2,2,2019,1,2,16,4,20,20,15,1,4,1,0,10.8262030586872,10.8262030586872,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.35,65.41,4,1,0,0,7,4,1,1046.25,0,0,0 +14872,18232,33255,-9,33254,33257,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.426328896688,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,1046.25,0,0,0 +14872,18232,33256,-9,33254,33257,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.7075905342631,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,7,4,1,1046.25,0,0,0 +14872,18232,33257,33254,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,2,8.432199756045634,8.478323118321974,0,2,0,-9,14,0,1,-44.54392566793904,0,0,0,36,1,4,1,1,2,2019,1,1,20,7,41,43,15,1,7,1,0,13.59970050931499,13.59970050931499,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.21,56.54,5,1,0,0,7,4,1,1046.25,0,0,0 +14873,18233,33258,33259,-9,-9,1,1,0,44,1,0,0,0,2,-9,2,1,0,4,7.499682058452039,7.322774537392034,0,1,0,-9,7,0,-4,80.70981263056957,0,0,1,48,2,2,1,-9,-9,2019,1,2,24,12,33,43,15,1,12,1,0,4.191001841747055,4.191001841747055,0,0,0,0,0,0,0,0,0,0,2.323334433208681,0,0,0,32.76,57.87,4,1,0,0,4,4,1,230,0,0,0 +14873,18233,33259,33258,-9,-9,2,1,1,48,1,0,0,0,2,-9,2,1,0,2,8.118854500247087,8.265433774879801,0,1,0,-9,7,0,4,77.536712690972,0,0,0,44,2,4,1,3,2,2019,1,1,22,10,40,43,15,1,10,1,0,11.34515434233744,11.34515434233744,0,0,0,0,0,0,0,0,0,0,1.295081632885421,0,0,0,37.85,53.23,3,1,0,0,4,4,1,230,0,0,0 +14873,18234,33260,-9,33258,33259,3,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.605956871307944,7.699818822007914,0,3,0,0,0,-9,0,-1121.762355781359,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,44,15,1,1,-9,1,6.073739514561195,6.073739514561195,0,0,0,0,0,0,0,0,0,0,.2297923459862798,0,0,0,47.38,57.75,5,1,0,0,4,3,1,282,0,0,0 +14874,18235,33261,33262,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,3,8.289594242524865,8.049866501844315,0,2,0,-9,7,0,0,-66.40355252338493,0,0,0,47,2,3,3,2,2,2019,2,1,8,0,44,44,15,1,0,4,0,12.98716454476172,12.98716454476172,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,1,0,0,12,4,1,713.3333333333334,0,0,0 +14874,18235,33262,33261,-9,-9,1,1,0,47,1,0,2,0,2,-9,4,3,0,3,8.122375505741584,8.401409032174497,0,2,0,-9,7,0,0,131.5853378402992,0,0,0,47,2,3,1,3,3,2019,3,2,8,0,32,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.960437636611153,3,52.99,51.28,2,1,0,0,12,4,1,713.3333333333334,0,0,0 +14874,18235,33263,-9,33262,33261,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-900.8506160085507,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,6,1,0,0,12,4,1,713.3333333333334,0,0,0 +14875,18236,33264,-9,-9,-9,1,1,0,48,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1088.01057095161,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,4,1,0,8,1,1,725.5,0,0,0 +14875,18236,33265,-9,33264,-9,2,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1006.880139261194,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,1,1,725.5,0,0,0 +14876,18237,33266,33267,-9,-9,1,1,0,52,1,0,0,0,1,-9,2,1,0,3,8.764818650767966,8.471065206982592,0,1,0,-9,35,0,-5,-36.82668586611341,0,0,0,57,2,4,1,2,2,2019,1,2,11,0,44,43,15,1,0,1,0,16.77648448271426,16.77648448271426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,52.47,5,1,0,0,10,5,1,914,0,0,0 +14876,18237,33267,33266,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.22892641200697,8.413776797288396,0,1,0,-9,35,0,5,-58.18845201141062,0,0,0,52,1,3,1,3,2,2019,1,1,9,0,38,37,15,1,1,1,0,13.08127470969923,13.08127470969923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,10,5,1,914,0,0,0 +14876,18238,33268,-9,33266,33267,3,1,0,30,2,0,0,0,2,-9,2,1,0,3,8.029412568529747,8.689825209290564,0,3,0,0,0,-9,0,-990.905855509323,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,47,48,15,1,1,-9,1,10.83165973163074,10.83165973163074,0,0,0,0,0,0,0,0,0,0,1.99373099344671,0,0,0,40.32,50.6,6,1,0,0,10,4,1,743,0,0,0 +14877,18239,33269,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,1,1,0,3,7.505349121851689,6.952662563972051,0,4,0,-9,0,-9,0,-1048.971170342386,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,16,16,15,1,1,-9,0,8.985109068325652,8.985109068325652,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.15,55.74,6,1,0,0,2,2,1,466.5,0,0,0 +14877,18239,33270,-9,33269,-9,2,1,1,17,2,0,1,1,2,-9,7,2,0,3,7.485978928311288,7.768232987233296,5.012009409233691,4,0,0,0,-9,0,-992.5725071935481,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,2,22,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.315824902043923,0,0,0,48,46.89,6,1,0,0,2,2,1,466.5,0,0,0 +14878,18240,33271,33274,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,4,8.317698971537959,8.569458013217663,0,2,0,-9,6,0,9,-57.16536157789132,0,0,0,36,1,3,1,2,1,2019,1,1,11,1,38,38,15,1,1,1,0,10.80080261603625,10.80080261603625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,5,1,0,1,12,4,1,341.25,0,0,0 +14878,18240,33272,-9,33274,33271,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.927556263378,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,341.25,0,0,0 +14878,18240,33273,-9,33274,33271,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.077668343798,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,341.25,0,0,0 +14878,18240,33274,33271,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,3,8.077319219003106,8.074302035328531,0,2,0,-9,8,0,0,-131.5279936032111,0,0,1,45,2,4,1,3,3,2019,1,2,11,0,28,30,15,1,0,1,0,13.44044421862277,13.44044421862277,0,0,0,0,0,0,0,1,1,0,0,0,0,3,35.5,54.11,3,1,0,1,12,4,1,341.25,0,0,0 +14879,18241,33275,33276,-9,-9,1,1,0,60,1,0,0,0,1,-9,1,1,0,4,7.694108993108391,8.894234394151789,8.177603645585741,1,0,-9,8,0,-4,-5.158158018163438,0,0,0,64,1,4,1,-9,-9,2019,1,2,12,2,20,25,15,1,2,1,0,14.86308162859618,14.86308162859618,0,0,0,0,0,0,0,0,0,0,0,7.939024290762258,9.222910255679196,3,59.86,48.06,6,1,0,0,9,5,1,345,0,0,0 +14879,18241,33276,33275,-9,-9,2,1,1,64,1,0,0,0,1,-9,1,1,0,4,8.877171950261976,8.948316555471486,7.013497076703749,1,0,-9,8,0,4,5.868887471407709,0,0,0,60,1,4,1,-9,-9,2019,1,1,14,2,40,40,15,1,2,1,0,18.47612386292949,18.47612386292949,0,0,0,0,0,0,0,0,0,0,7.797101389713168,7.161243191076079,0,3,52.38,55.6,6,1,0,0,9,5,1,345,0,0,0 +14880,18242,33277,-9,-9,-9,1,1,1,53,3,0,0,0,2,-9,2,1,0,2,8.549345621551531,8.315497809741567,0,3,0,0,0,-9,0,-1009.093194224595,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,7,38,42,15,1,7,-9,0,11.19429745287098,11.19429745287098,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.19,33.72,4,1,0,0,4,4,1,346,0,0,0 +14881,18243,33278,33279,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,4,0,7.10653450040637,6.910452892600337,1,0,-9,8,0,2,11.79291652819468,0,0,0,64,3,1,3,-9,-9,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.07834629296414,7.054780935507289,3.727452453279573,2,57.16,56.15,6,1,0,0,5,2,1,694,0,0,0 +14881,18243,33279,33278,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,-2,22.94785592249237,0,0,0,66,2,4,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.119784697598116,0,0,0,62.65,9.720000000000001,6,1,0,0,5,2,1,694,0,0,0 +14882,18244,33280,33281,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,7.761466172615905,7.859313059304405,0,1,0,-9,8,0,-14,21.40622727631367,0,0,0,76,2,3,3,-9,-9,2019,4,1,12,1,0,21,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.231754343790428,0,30.46130361320612,3,57.16,56.15,6,1,0,0,7,3,1,365.5,0,0,0 +14882,18244,33281,33280,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,4.273278256043529,7.027391302676802,7.022844478125707,1,0,-9,42,0,14,-7.218327758533955,0,0,0,62,2,4,3,3,3,2019,4,2,8,0,5,4,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,3.491621955426272,7.149499984457769,0,0,53,46,6,1,0,0,7,3,1,365.5,0,0,0 +14883,18245,33282,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,3,8.397936523378135,8.985864536064268,7.354236082488288,3,0,0,0,-9,0,-971.9876293017944,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,32,49,15,1,2,-9,0,15.9106667285,15.9106667285,0,0,0,0,0,0,0,1,1,0,0,7.746887926851462,0,0,38.8,60.42,6,4,0,0,6,5,1,198,0,0,0 +14884,18246,33283,-9,33287,33284,4,1,1,12,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-960.7146377713133,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,4,3,1,499,0,0,0 +14884,18246,33284,33287,-9,-9,1,1,1,37,1,0,3,0,2,-9,2,1,0,3,7.634242971613923,7.875498870302899,0,2,0,-9,18,0,-1,43.49925491022368,0,0,0,38,2,4,1,3,3,2019,1,2,8,0,16,0,15,1,0,1,0,16.8389296519941,16.8389296519941,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,4,1,0,0,4,3,1,499,0,0,0 +14884,18246,33285,-9,33287,33284,5,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-969.4153862711581,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,4,3,1,499,0,0,0 +14884,18246,33286,-9,33287,33284,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.74726484081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,3,1,499,0,0,0 +14884,18246,33287,33284,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,4,7.305275409123737,7.692892312228188,0,2,0,-9,18,0,1,110.1890533325861,0,0,1,37,2,3,1,3,3,2019,1,1,13,2,32,32,15,1,2,1,0,6.256782431881456,6.256782431881456,0,0,0,0,0,0,0,1,1,0,0,0,2.538101123780571,3,33.55,62.9,6,1,0,0,4,3,1,499,0,0,0 +14885,18247,33288,-9,-9,-9,1,1,0,53,3,0,0,0,1,-9,1,1,0,3,7.816317212965415,7.902259987723781,0,3,0,0,0,-9,0,-884.5192507776601,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,20,0,15,1,0,-9,0,19.52978174691638,19.52978174691638,0,0,0,0,0,0,0,1,1,0,6.56663356980417,0,74.59757293201683,3,45,34.45,5,2,0,0,8,4,0,234,0,0,0 +14886,18248,33289,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,4,0,5.831980299487369,5.833809480842877,3,0,0,0,-9,0,-1115.86420748801,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,4.951179104480062,0,0,1,1,0,0,5.705780042736387,0,0,48.12,50.58,6,1,0,0,4,2,0,425,0,0,0 +14887,18249,33290,-9,33291,-9,2,1,0,17,2,0,0,0,2,1,2,3,0,4,5.963166041229695,6.073089878669372,0,3,0,0,0,-9,0,-1175.452001370157,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,8,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,7,1,0,0,4,4,1,1393.5,0,0,0 +14887,18249,33291,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,2,1,0,4,8.173930517474945,8.166057341612509,0,3,0,0,0,-9,0,-956.5624485262305,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,34,34,15,1,0,-9,0,13.34426926399067,13.34426926399067,0,0,0,0,0,0,0,1,1,0,0,0,29.44588379344566,3,42.05,58.8,4,1,0,0,4,4,1,1393.5,0,0,0 +14888,18250,33292,-9,-9,-9,1,1,0,44,2,0,0,0,3,-9,2,1,0,3,8.594279930776834,8.666087472074169,0,3,0,0,0,-9,0,-997.3482221068821,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,36,0,15,1,0,-9,0,18.56790761070494,18.56790761070494,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,4,1,0,1,11,5,0,1013,0,0,0 +14888,18251,33293,-9,33292,-9,2,1,1,21,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-855.8143762446839,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.81,47.49,5,1,1,1,11,1,0,2280,0,0,0 +14888,18252,33294,-9,33292,-9,3,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.46042127903576,7.408770028278624,0,3,0,0,0,-9,0,-949.4276586613063,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,14,3,36,36,15,1,3,-9,1,5.551259958900562,5.551259958900562,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.93,59.67,4,1,0,0,11,3,0,350,0,0,0 +14889,18253,33295,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,8.439162656337007,8.314688963106555,3,0,0,0,-9,0,-1021.167826732081,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,1,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.62710782638163,8.419966333843936,0,0,58.9,45.74,6,1,0,0,4,4,0,206,0,0,0 +14890,18254,33296,33297,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,5,7.732502345878865,7.850355807460064,0,1,0,-9,2,0,-2,75.76785848170945,0,1,1,23,2,4,1,3,3,2019,1,2,8,0,37,7,15,1,0,1,0,9.080922465007436,9.080922465007436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,7,1,0,0,2,5,1,300,0,0,0 +14890,18254,33297,33296,-9,-9,2,1,1,23,1,0,0,0,2,-9,2,1,0,4,8.413670678179791,8.427948412676095,0,1,0,-9,2,0,2,16.21411386786097,0,1,0,21,2,5,1,-9,-9,2019,1,1,10,0,40,45,15,1,2,1,0,12.9037630130178,12.9037630130178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,2,5,1,300,0,0,0 +14891,18255,33298,-9,-9,-9,1,1,0,65,3,0,0,0,3,-9,4,3,0,3,0,6.160965602938582,6.263342716103199,3,0,0,0,-9,0,-958.7930287668351,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.285410832348494,6.323613493932819,6.001572241369511,3,55.3,39.26,3,1,0,1,9,2,0,280,0,0,0 +14892,18256,33299,-9,-9,-9,1,1,0,46,3,0,0,0,2,-9,2,1,0,3,8.415276237981592,8.421426519920946,0,3,0,0,0,-9,0,-1034.359034821544,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,25,11,48,43,15,1,11,-9,0,10.50319196938958,10.50319196938958,0,0,0,0,0,0,0,1,1,0,0,0,10.55628148026749,3,31.29,55.75,3,1,0,1,2,5,1,404,0,0,0 +14893,18257,33300,33301,-9,-9,1,1,0,38,1,0,0,0,1,-9,2,1,0,4,7.958891505339714,8.140036523248678,0,1,0,-9,5,0,4,141.1077180665583,0,0,1,34,1,4,1,3,3,2019,1,2,11,0,37,37,15,1,1,1,0,10.58091307053207,10.58091307053207,0,0,0,0,0,0,0,0,0,0,3.849525322271664,0,0,0,49,56,5,3,0,0,4,5,1,176,0,0,0 +14893,18257,33301,33300,-9,-9,2,1,1,34,1,0,0,0,1,-9,2,1,0,4,8.89664618979438,8.934102583741053,0,1,0,-9,5,0,-4,-44.88946915206169,-9,0,0,38,1,4,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,24.78841786980545,24.78841786980545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,3,0,0,4,5,1,176,0,0,0 +14894,18258,33302,-9,33304,33303,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-860.3323142742438,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,5,0,1951.75,0,0,0 +14894,18258,33303,33304,-9,-9,1,1,1,44,1,1,2,0,1,-9,1,1,0,3,9.827397670169631,9.474428699735443,0,2,0,-9,7,0,8,-29.01911063500707,0,0,0,36,1,4,1,1,1,2019,1,2,20,9,50,40,15,1,9,1,0,43.83314557529161,43.83314557529161,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.79,59.6,3,2,0,0,9,5,0,1951.75,0,0,0 +14894,18258,33304,33303,-9,-9,2,1,0,36,1,1,2,0,1,-9,2,1,0,4,8.60446176254025,8.34298492917134,0,2,0,-9,7,0,-8,89.16537291019452,0,0,1,44,1,3,1,-9,-9,2019,1,1,6,0,40,48,15,1,0,1,0,12.72779818339772,12.72779818339772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,1,9,5,0,1951.75,0,0,0 +14894,18258,33305,-9,33304,33303,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-943.257663039277,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,9,5,0,1951.75,0,0,0 +14895,18259,33306,-9,-9,-9,1,1,1,78,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1103.528315116421,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.022377435100413,0,0,0,56.51,48.77,6,4,0,0,8,1,0,498,0,0,0 +14896,18260,33307,-9,33308,-9,2,1,0,16,2,0,2,1,3,-9,7,2,0,1,0,0,0,4,0,0,0,-9,0,-1111.247688280387,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,27,11,0,0,15,2,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,13.29,54.11,2,1,0,0,5,2,1,421.6666666666667,0,0,0 +14896,18260,33308,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,6,3,0,2,0,6.804473107322828,7.16361001497174,4,0,0,0,-9,0,-1121.046595840769,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,19,7,0,22,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.872619658585714,0,72.44218285869401,3,29.41,54.63,2,1,0,1,5,2,1,421.6666666666667,0,0,0 +14896,18260,33309,-9,33308,-9,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-969.0787445229765,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,5,2,1,421.6666666666667,0,0,0 +14897,18261,33310,33311,-9,-9,3,1,1,42,1,0,1,0,2,-9,2,1,0,5,7.336152424438374,7.270822893643341,0,2,0,-9,2,0,2,36.03298464828342,0,0,0,40,2,4,1,-9,-9,2019,1,1,12,4,0,57,15,1,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,52.35,3,1,0,0,5,3,0,455,0,0,0 +14897,18261,33311,33310,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,4,7.362853564468696,7.731447607600711,4.763319359574949,2,0,-9,2,0,-2,-116.340163310927,0,0,1,42,2,5,1,2,2,2019,1,3,8,0,32,25,15,1,0,1,0,4.883579188826371,4.883579188826371,0,0,0,0,0,0,0,1,1,0,5.469204026105396,0,0,0,43.79,58.33,4,1,0,0,5,3,0,455,0,0,0 +14897,18261,33312,-9,33311,33310,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.2611391225786,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,3,0,455,0,0,0 +14898,18262,33313,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,2,0,6.479293327621784,6.454731510508824,3,0,0,0,-9,0,-1053.65412849403,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,4.376505722859808,0,0,0,0,0,1,1,0,0,6.020951963327112,0,0,54.72,33.18,6,1,0,0,9,2,1,3597,0,0,0 +14899,18263,33314,-9,-9,-9,1,1,0,41,3,0,1,0,2,-9,2,1,0,4,8.178172199943942,8.37846411533646,6.203818829392802,4,0,-9,0,1,0,-895.3300260831509,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,38,38,15,1,0,-9,0,12.00094946017508,12.00094946017508,0,0,0,0,0,0,0,1,1,0,5.987194158751999,0,0,0,53.33,53.71,6,1,0,0,6,4,1,1078,0,0,0 +14900,18264,33315,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,4,0,7.675096367967774,8.294042036112838,3,0,0,0,-9,0,-1070.789962542372,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.167328511589993,7.985137770332977,8.995608463693735,3,64.47,51.45,6,1,0,0,12,4,1,187,0,0,0 +14901,18265,33316,33317,-9,-9,2,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.854188612550859,8.849478980495764,0,1,0,-9,2,0,0,1.849328345543622,0,0,0,31,1,5,1,-9,-9,2019,1,1,3,1,65,37,15,1,1,1,0,14.22192246791186,14.22192246791186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,6,2,0,0,8,5,1,536,0,0,0 +14901,18265,33317,33316,-9,-9,1,1,0,31,1,0,0,0,1,-9,2,1,0,5,8.376031746730929,8.279359722016894,0,1,0,-9,2,0,0,97.13331307254897,0,0,1,31,1,4,1,1,1,2019,1,2,12,1,50,52,15,1,1,1,0,9.53389841716492,9.53389841716492,0,0,0,0,0,0,0,0,0,0,4.903205054649511,0,0,0,25.22,69.73999999999999,5,1,0,0,8,5,1,536,0,0,0 +14902,18266,33318,33319,-9,-9,1,1,1,84,1,0,0,0,1,-9,4,3,0,5,4.582874662428064,7.060445190946505,6.586501038481833,1,0,-9,8,0,1,-10.23402154748315,0,0,0,83,2,3,3,3,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.729687440983207,6.490230505404372,0,0,62.39,56.71,7,1,0,0,12,3,1,747,0,0,0 +14902,18266,33319,33318,-9,-9,2,1,0,83,1,0,0,0,2,-9,4,3,0,3,0,7.427451927349458,7.392368750191844,1,0,-9,8,0,-1,-22.90409621458369,0,0,0,84,1,5,3,2,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,8.014627068304085,0,0,0,0,1,1,0,4.592987370909808,7.705857331583303,0,0,65.15000000000001,29.3,6,1,0,0,12,3,1,747,0,0,0 +14903,18267,33320,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,4,3,0,4,0,7.224821648705131,7.606223587346266,3,0,0,0,-9,0,-1067.656028414017,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.202596407763571,7.127278365991504,8.327535049492862,3,57.16,56.15,6,1,0,0,5,3,1,475,0,0,0 +14904,18268,33321,33322,-9,-9,2,1,1,72,1,0,0,0,2,-9,97,3,0,4,0,9.289739674359735,8.878212288327061,1,0,-9,50,0,3,5.214746512892483,0,0,0,69,1,2,3,2,2,2019,4,1,13,1,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.210995781606455,7.158231744923407,2,42.14,52.14,6,1,0,0,12,5,1,331.5,0,0,0 +14904,18268,33322,33321,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,2,0,7.170939146793748,7.177334110746277,1,0,-9,50,0,-3,.6743074233650279,0,0,0,72,2,4,3,2,3,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,1.740579139190144,7.456359910366577,0,0,51.01,41.69,6,1,0,0,12,5,1,331.5,0,0,0 +14905,18269,33323,-9,-9,-9,1,1,1,83,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1097.220959884105,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,6,1,0,0,8,1,0,1340,0,0,0 +14906,18270,33324,33325,-9,-9,2,1,0,50,1,0,1,0,1,-9,2,1,0,4,8.431872560215993,7.983828664554498,0,2,0,-9,6,0,-1,-86.25307376307501,0,0,0,51,2,2,1,2,2,2019,1,1,9,1,18,0,15,1,1,1,0,21.84146279259419,21.84146279259419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.62,51.31,7,1,0,0,13,5,1,553,0,0,0 +14906,18270,33325,33324,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,2,9.022065673142864,8.856098228722974,0,2,0,-9,6,0,1,-90.97506457659722,0,0,0,50,1,4,1,2,3,2019,1,2,8,0,40,0,15,1,0,1,0,14.93525596410036,14.93525596410036,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,5,1,0,0,13,5,1,553,0,0,0 +14906,18270,33326,-9,33324,33325,5,1,1,16,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.3425919792,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,13,5,1,553,0,0,0 +14906,18271,33327,-9,33324,33325,3,1,0,22,2,0,1,0,1,1,2,1,0,4,6.3875819397919,6.338589059646195,0,3,0,0,0,-9,0,-1096.151166332218,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,35,0,15,1,2,-9,1,1.953325083747135,1.953325083747135,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,6,1,0,0,13,2,1,326,0,0,0 +14906,18272,33328,-9,33324,33325,4,1,1,20,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-948.6425559371041,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,13,1,1,1078,0,0,0 +14907,18273,33329,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,3,8.666772033232879,8.653183004120159,0,3,0,0,0,-9,0,-1163.711668706981,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,0,42,40,15,1,0,-9,0,14.233701448078,14.233701448078,0,0,0,0,0,0,0,1,1,0,2.634143071445242,0,0,0,52.99,51.28,6,1,0,0,12,5,1,457,0,0,0 +14908,18274,33330,-9,-9,-9,1,1,1,68,2,0,0,0,2,-9,2,1,0,2,7.483725909574875,8.247864047820487,7.14706713240594,3,0,0,0,-9,0,-1087.119343239402,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,23,10,32,32,15,1,10,-9,0,6.887960258439261,6.887960258439261,1,0,0,0,0,0,0,1,1,0,.3449762742429235,7.344926676925067,0,0,32.62,36.55,3,1,0,1,7,4,1,735,0,0,0 +14909,18275,33331,-9,33334,33336,6,1,1,1,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1128.971190625468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,4,2,1,496.8333333333333,0,0,0 +14909,18275,33332,-9,33334,33336,3,1,1,9,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.689973016738,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,4,2,1,496.8333333333333,0,0,0 +14909,18275,33333,-9,33334,33336,4,1,1,6,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.117563643035,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,2,1,496.8333333333333,0,0,0 +14909,18275,33334,33336,-9,-9,1,1,0,27,1,2,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,13,0,-11,33.63529599691835,0,1,1,38,2,4,1,3,3,2019,3,2,19,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.44,62.16,2,3,0,0,4,2,1,496.8333333333333,0,0,0 +14909,18275,33335,-9,33334,33336,5,1,1,2,2,2,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.704115300344,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,4,2,1,496.8333333333333,0,0,0 +14909,18275,33336,33334,-9,-9,2,1,1,38,1,2,4,0,2,-9,2,1,0,4,7.760933095433521,7.657314092318591,0,2,0,-9,8,0,11,-137.2158663842794,0,0,0,27,2,4,3,-9,-9,2019,2,1,10,0,24,24,15,1,1,3,0,9.805229523478433,9.805229523478433,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,4,2,1,496.8333333333333,0,0,0 +14910,18276,33337,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,4,0,7.12402610487816,7.297262644831504,3,0,0,0,-9,0,-988.8579367038055,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.992995326336834,7.148941502559744,0,0,62.49,55.09,7,1,0,0,7,2,1,627,0,0,0 +14911,18277,33338,-9,-9,-9,1,1,0,80,3,0,0,0,2,-9,4,3,0,5,0,7.422117723428785,7.172537943382935,3,0,0,0,-9,0,-897.603342396841,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,.6300502965351451,0,0,0,0,5.553795856791776,1,1,0,0,7.303163574426566,0,0,67.38,39.42,6,1,0,0,9,3,0,66,0,0,0 +14912,18278,33339,-9,33340,33341,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.460584785147,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,1,1068,0,0,0 +14912,18278,33340,33341,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,4,7.41182934420736,7.037850007564226,0,2,0,-9,20,0,-7,10.27559284707017,0,0,0,52,2,4,1,3,3,2019,1,2,9,0,19,19,15,1,0,1,0,9.11176765701029,9.11176765701029,0,0,0,0,0,0,0,1,1,0,3.316412424580276,0,0,0,57.16,56.15,6,1,0,0,4,5,1,1068,0,0,0 +14912,18278,33341,33340,-9,-9,2,1,1,52,1,0,1,0,2,-9,2,1,0,4,8.725146034285668,8.564605877433618,0,2,0,-9,10,0,7,-84.65554151544519,0,0,0,45,3,4,1,-9,-9,2019,1,1,8,0,37,40,15,1,0,1,0,21.59838502277838,21.59838502277838,0,0,0,0,0,0,0,1,1,0,2.575544650843703,0,0,0,57.16,56.15,6,1,0,0,4,5,1,1068,0,0,0 +14913,18279,33342,-9,-9,-9,1,1,0,32,3,0,1,0,1,-9,1,1,0,5,7.057691922796482,7.070941897815884,0,4,0,0,0,-9,0,-986.5365443816687,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,10,25,15,1,0,-9,0,16.69783326506862,16.69783326506862,0,0,0,0,0,0,0,1,1,0,8.670900310038084,0,70.45396691989093,3,57.06,57.76,6,3,0,0,8,2,1,268.5,0,0,0 +14913,18279,33343,-9,33342,-9,2,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1030.859674919996,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,1,268.5,0,0,0 +14913,18280,33344,-9,-9,-9,3,1,0,25,2,0,1,0,2,-9,3,3,0,4,0,0,0,4,0,-9,0,-9,0,-1039.84631402417,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,4,1,0,8,1,1,196,0,0,0 +14914,18281,33345,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,1,0,3.93453200684168,4.171917598171908,3,0,0,0,-9,0,-1030.418075537673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.445330634074731,0,0,43.36,30.38,3,1,0,0,12,2,0,358,0,0,0 +14915,18282,33346,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,4.717833097925356,4.641289604692722,3,0,0,0,-9,0,-949.3436937650092,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.447384433495167,4.984391186514058,0,0,47.01,58,5,1,0,0,6,2,1,726,0,0,0 +14916,18283,33347,-9,33348,-9,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-960.7072960994295,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,1,0,1050.5,0,0,0 +14916,18283,33348,-9,-9,-9,1,1,0,40,3,0,3,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-920.0906969292666,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.17337500252671,3,42.69,57.21,5,3,0,1,8,1,0,1050.5,0,0,0 +14917,18284,33349,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,4,8.423394556564903,8.363924020973664,0,3,0,0,0,-9,0,-1023.402606525936,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,48,38,15,1,0,-9,0,10.03896857739702,10.03896857739702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,1,0,0,5,4,0,430,0,0,0 +14918,18285,33350,-9,-9,-9,1,1,0,23,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1015.17408817909,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,4,1,0,545.5,0,0,0 +14918,18285,33351,-9,33350,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-918.3477393152864,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,1,0,545.5,0,0,0 +14919,18286,33352,33353,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,7.909710136696643,8.303250324069133,1,0,-9,44,0,-1,8.52860074234254,0,0,0,67,2,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.454731102877401,8.259496510409839,0,0,57.16,56.15,6,1,0,0,12,4,1,299.5,0,0,0 +14919,18286,33353,33352,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,7.12259442897338,7.129870842198002,1,0,-9,44,0,1,-164.5600660012763,0,0,0,66,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.872796979706282,7.392747308579031,0,0,57.16,56.15,6,1,0,0,12,4,1,299.5,0,0,0 +14920,18287,33354,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1060.698541690333,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,59.7,32.49,6,1,1,0,12,1,1,1280,0,0,0 +14921,18288,33355,33356,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,8,-19.53592210929838,0,0,0,67,2,4,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,6,1,0,0,7,2,1,288.5,0,0,0 +14921,18288,33356,33355,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,5.731995972423853,6.07571735429931,1,0,-9,48,0,-8,-82.84591487401477,0,0,0,75,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.902345593032232,5.624248779729279,0,0,54.2,57.49,4,1,0,0,7,2,1,288.5,0,0,0 +14922,18289,33357,-9,33359,33358,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.2612129196353,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,0,886.6666666666666,0,0,0 +14922,18289,33358,33359,-9,-9,1,1,1,43,1,1,1,0,2,-9,2,1,0,5,8.077855952346518,8.435119848415152,0,2,0,-9,6,0,8,32.22692902001992,0,0,0,35,1,4,3,3,3,2019,2,2,5,0,40,40,15,1,0,3,0,12.64846843957342,12.64846843957342,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.99,43.47,7,1,0,0,7,3,0,886.6666666666666,0,0,0 +14922,18289,33359,33358,-9,-9,2,1,0,35,1,1,1,0,1,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-8,-58.41251043919461,0,0,1,43,2,5,1,2,2,2019,3,1,7,0,0,38,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,7,3,0,886.6666666666666,0,0,0 +14923,18290,33360,-9,33364,33363,4,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1170.892978847569,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,2,0,382.8333333333333,0,0,0 +14923,18290,33361,-9,33364,-9,2,1,0,14,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1025.49940516393,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,5,1,0,0,4,2,0,382.8333333333333,0,0,0 +14923,18290,33362,-9,33364,-9,3,1,0,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.951261145384,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,4,2,0,382.8333333333333,0,0,0 +14923,18290,33363,33364,-9,-9,6,1,1,36,1,0,4,0,2,-9,2,1,0,4,7.671468760165725,7.103059861859997,0,2,0,-9,3,0,2,2.247461500834621,0,0,0,34,2,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,0,1,0,5.198055512003215,5.198055512003215,0,0,0,0,0,0,0,1,1,0,0,0,45.40110314685094,3,49.39,52.76,5,1,0,0,4,2,0,382.8333333333333,0,0,0 +14923,18290,33364,33363,-9,-9,1,1,0,34,1,0,4,0,2,-9,2,1,0,3,6.648721383755944,6.248546156012745,0,2,0,-9,3,0,-2,33.21233198590983,0,0,1,36,2,4,1,2,2,2019,1,6,15,3,10,10,15,1,3,1,0,6.614172360543909,6.614172360543909,0,0,0,0,0,0,0,1,1,0,0,0,77.96050093650894,3,48.7,56.22,4,1,0,0,4,2,0,382.8333333333333,0,0,0 +14923,18290,33365,-9,33364,33363,5,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-815.2596484610358,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,2,0,382.8333333333333,0,0,0 +14924,18291,33366,-9,-9,-9,1,1,0,47,3,0,2,0,1,-9,1,1,0,4,5.574251016373823,5.914144260126823,0,4,0,-9,0,1,0,-1067.002512777371,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,2,40,40,15,1,2,-9,0,.8871629889647801,.8871629889647801,0,0,0,0,0,0,0,0,0,0,.614265258812689,0,0,0,49.52,55.68,5,2,0,0,6,2,1,1236.5,0,0,0 +14924,18291,33367,-9,33366,-9,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-958.4376144368554,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,6,2,1,1236.5,0,0,0 +14925,18292,33368,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,6.702431999160854,7.001209356585298,3,0,0,0,-9,0,-897.3221735987839,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0202609861934,32.49574145418877,3,47.06,38.83,5,1,0,0,7,2,0,906,0,0,0 +14926,18293,33369,33371,-9,-9,1,1,0,32,1,0,2,0,2,-9,2,1,0,4,8.174193638676037,8.371583403176214,0,2,0,-9,11,0,-7,-63.78420648828128,0,0,1,39,2,2,1,2,-9,2019,1,2,12,2,37,37,15,1,2,1,0,14.04919366550287,14.04919366550287,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,6,1,0,0,7,5,1,330.3333333333333,0,0,0 +14926,18293,33370,-9,33369,33371,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1167.749369820668,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,330.3333333333333,0,0,0 +14926,18293,33371,33369,-9,-9,2,1,1,39,1,0,2,0,2,-9,1,1,0,2,8.717368018405628,8.515757846147508,0,2,0,-9,11,0,7,11.82558162453406,0,0,0,32,2,4,1,-9,-9,2019,1,1,9,0,30,40,15,1,0,1,0,20.63348046273766,20.63348046273766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.09,49.2,5,1,0,0,7,5,1,330.3333333333333,0,0,0 +14927,18294,33372,33373,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,8.500262622746305,8.732164651702019,1,0,-9,22,0,6,-.7961543155457869,0,0,0,65,1,4,3,3,2,2019,4,1,12,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,9.554007853490891,8.849532611601459,15.08172268341861,3,45.57,53.5,6,1,0,0,8,5,1,704.5,0,0,0 +14927,18294,33373,33372,-9,-9,1,1,0,65,1,0,0,0,1,-9,6,3,0,4,0,6.63320947051241,6.423045581634939,1,0,-9,9,0,-6,-13.42573472538786,0,0,0,71,3,3,3,3,2,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.026326503949904,6.383515859698884,13.39262572495493,3,47.44,56.39,5,1,0,0,8,5,1,704.5,0,0,0 +14927,18295,33374,-9,33373,33372,3,1,1,28,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-936.7357844065492,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.512029451701178,0,0,0,42.02,48.45,2,1,1,0,8,1,1,393,0,0,0 +14928,18296,33375,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,2,8.157091715710427,8.136879849365812,4.25124890401885,3,0,0,0,-9,0,-1085.354039249471,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,37,37,15,1,0,-9,0,9.046793117619012,9.046793117619012,0,0,0,0,0,0,0,1,0,1,0,4.74374318846189,0,0,54.62,32.27,4,1,0,0,9,4,1,980,0,0,0 +14928,18297,33376,-9,33375,-9,2,1,0,34,2,0,0,0,1,-9,2,1,0,4,7.804503888438044,7.907098801240516,0,3,0,0,0,-9,0,-987.4794071748452,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,24,9,35,39,15,1,9,-9,1,7.592387378238274,7.592387378238274,0,0,0,0,0,0,0,1,0,1,3.88156437959708,0,0,0,23.13,63.87,3,1,0,0,9,4,1,317,0,0,0 +14929,18298,33377,33378,-9,-9,1,1,1,88,1,0,0,0,3,-9,4,3,0,3,0,7.467481874062853,7.78666038279261,1,0,-9,9,0,2,-69.41947856562282,0,0,0,86,2,2,3,3,3,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.036540463310902,7.713771988308533,0,0,44.6,46.11,6,1,0,0,7,4,1,430,0,0,0 +14929,18298,33378,33377,-9,-9,2,1,0,86,1,0,0,0,2,-9,4,3,0,2,0,7.392499882632344,7.204381633825633,1,0,-9,9,0,-2,56.60523236721674,0,0,0,88,3,3,3,2,2,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,1,0,15.1956169893583,0,0,0,28.30941916237215,1,1,0,2.592167310459888,6.712923575926713,0,1,53.05,18.05,5,1,0,0,7,4,1,430,0,0,0 +14930,18299,33379,-9,-9,-9,1,1,0,37,2,1,1,0,1,-9,2,1,0,2,8.50730925232566,8.995702263291687,0,4,0,-9,0,0,0,-1069.200060032923,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,16,5,41,37,15,1,5,-9,0,16.63170780054568,16.63170780054568,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.05,48.57,3,1,0,0,13,4,1,907,0,0,0 +14930,18299,33380,-9,33379,-9,2,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-995.5360201695396,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,907,0,0,0 +14931,18300,33381,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,2,1,0,3,8.497918414032634,8.313842656651344,0,3,0,0,0,-9,0,-977.6982290813106,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,39,0,15,1,1,-9,0,14.15090919589107,14.15090919589107,0,0,0,0,0,0,0,0,0,0,8.983685445179374,0,0,0,54.36,45.2,5,4,0,0,8,5,1,639,0,0,0 +14931,18301,33382,-9,33381,-9,2,1,1,28,2,0,0,0,1,-9,2,1,0,4,8.681416608423872,8.772791430181444,0,3,0,0,0,-9,0,-1010.114194460256,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,7,0,45,30,15,1,0,-9,1,16.8726427369998,16.8726427369998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,6,4,0,0,8,5,1,1344,0,0,0 +14931,18302,33383,-9,33381,-9,3,1,0,27,2,0,0,0,1,-9,2,1,0,4,8.384671191506001,8.148325440015064,0,3,0,0,0,-9,0,-1091.406285623675,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,35,37,15,1,0,-9,1,17.59933452445765,17.59933452445765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.04,40.97,6,4,0,0,8,5,1,459,0,0,0 +14932,18303,33384,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,3,7.857660836155391,7.6727918196975,0,3,0,0,0,-9,0,-949.5608178417317,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,28,30,15,1,2,-9,0,9.894465649574629,9.894465649574629,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.31,49.46,4,1,0,1,7,4,1,282,0,0,0 +14932,18304,33385,-9,33384,-9,2,1,1,19,2,0,0,1,2,0,7,2,0,4,0,8.182910848126989,8.334522295026199,3,0,0,0,-9,0,-1024.396976790025,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,8.240282254670189,0,0,0,57.16,56.15,7,1,0,0,7,5,1,1074,0,0,0 +14933,18305,33386,33387,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,7.352337940654412,7.280288942878749,1,0,-9,52,0,-1,17.40590230223684,0,0,0,72,3,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.301689787992865,0,0,56.37,40.62,7,1,0,0,13,2,1,373.5,0,0,0 +14933,18305,33387,33386,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,4.956832388603686,4.669056377300868,1,0,-9,52,0,1,39.84369349258768,0,0,0,71,3,2,3,3,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.261156996231849,0,0,53.14,45.74,6,1,0,0,13,2,1,373.5,0,0,0 +14934,18306,33388,33389,-9,-9,1,1,0,37,1,2,2,0,1,-9,5,1,0,4,8.811699422661183,8.825758987246278,0,2,0,-9,6,0,1,-70.92704729619575,0,0,1,36,1,5,1,2,2,2019,1,2,17,5,40,38,15,1,5,1,0,19.33630469564957,19.33630469564957,0,0,0,0,0,0,0,1,1,0,1.580090273044226,0,0,0,28.16,65.32000000000001,6,1,0,0,12,5,1,891,0,0,0 +14934,18306,33389,33388,-9,-9,2,1,1,36,1,2,2,0,1,-9,2,1,0,5,9.005380258164081,9.184524815306164,0,2,0,-9,6,0,-1,149.5966700690304,0,0,0,37,1,4,1,-9,-9,2019,1,1,10,0,37,37,15,1,0,1,0,36.34099282868852,36.34099282868852,0,0,0,0,0,0,0,1,1,0,7.740053880014981,0,0,0,54.1,59.11,6,1,0,0,12,5,1,891,0,0,0 +14934,18306,33390,-9,33388,33389,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-951.8574047296954,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,5,1,891,0,0,0 +14934,18306,33391,-9,33388,33389,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.1549859296595,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,5,1,891,0,0,0 +14935,18307,33392,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-990.2649950252736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.99,22.81,5,1,0,0,12,1,0,1483.5,0,0,0 +14935,18307,33393,-9,33392,-9,2,1,0,17,2,0,0,1,3,0,7,2,0,4,6.390469875847523,6.40913767312046,0,3,0,0,0,-9,0,-947.5830398981132,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,22,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,12,1,0,1483.5,0,0,0 +14936,18308,33394,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,2,1,0,4,8.222076337982241,8.334274280650879,0,4,0,0,0,-9,0,-1048.441581803805,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,55,57,15,1,1,-9,0,9.892929577775217,9.892929577775217,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.31,6,1,0,1,7,3,0,305,0,0,0 +14937,18309,33395,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1008.545963818758,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.047368488822742,3,36.19,36.11,5,1,1,0,11,1,0,932,0,0,0 +14938,18310,33396,33397,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,3,7.928164648082683,8.227156373937856,0,1,0,-9,8,0,-3,-11.71835120800951,0,0,1,39,2,4,1,-9,-9,2019,1,2,10,0,35,35,15,1,0,1,0,10.25100557796907,10.25100557796907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,10,5,1,1418,0,0,0 +14938,18310,33397,33396,-9,-9,2,1,1,39,1,0,0,0,2,-9,2,1,0,4,8.759443245325347,8.845612481581899,0,1,0,-9,8,0,3,-106.9293944199667,0,0,0,36,1,3,1,-9,-9,2019,1,1,14,2,37,37,15,1,2,1,0,16.32255553976828,16.32255553976828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.36,53.96,5,1,0,0,10,5,1,1418,0,0,0 +14939,18311,33398,-9,33400,33401,3,1,0,15,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-981.8587521371173,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,17,0,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,4,2,0,0,8,4,1,902.25,0,0,0 +14939,18311,33399,-9,33400,33401,4,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1062.519513977477,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,2,0,0,8,4,1,902.25,0,0,0 +14939,18311,33400,33401,-9,-9,2,1,0,49,1,0,2,0,1,-9,2,1,0,3,8.135867600820005,8.429843216016581,0,2,0,-9,10,0,-1,81.02988794049196,0,0,0,50,1,3,1,2,3,2019,1,1,11,1,58,25,15,1,1,1,0,5.876007646827138,5.876007646827138,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,8,4,1,902.25,0,0,0 +14939,18311,33401,33400,-9,-9,1,1,1,50,1,0,2,0,1,-9,2,1,0,3,8.740499151488951,8.943595011189981,0,2,0,-9,10,0,1,29.8510227956175,0,0,0,49,1,3,1,2,2,2019,1,2,10,2,35,35,15,1,2,1,0,24.03027686762048,24.03027686762048,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.9,57.01,4,3,0,0,8,4,1,902.25,0,0,0 +14940,18312,33402,33403,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,1,8.075565500474791,8.177096704998299,0,1,0,-9,1,-9,-7,-82.444287502818,-9,0,0,62,2,4,1,-9,-9,2019,1,1,24,9,42,0,15,1,9,1,0,9.480538758236946,9.480538758236946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.05,33.95,3,1,0,0,6,3,1,347.5,0,0,0 +14940,18312,33403,33402,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,4,5.371522132010562,5.728085676970372,0,1,0,-9,1,-9,7,8.07455932483566,-9,0,0,55,2,1,1,3,3,2019,1,2,12,0,22,0,15,1,0,1,0,1.711440347239292,1.711440347239292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,7,1,0,0,6,3,1,347.5,0,0,0 +14941,18313,33404,33405,-9,-9,2,1,1,47,1,0,1,0,1,-9,2,1,0,2,8.691628501529891,8.659350384467713,0,2,0,-9,8,0,11,-26.95793893590078,0,0,0,36,1,4,1,1,2,2019,1,1,16,6,41,42,15,1,6,1,0,18.67017020948835,18.67017020948835,0,0,0,0,0,0,0,1,1,0,2.723213156389001,0,0,0,47.31,50.2,6,1,0,0,9,5,1,1386.333333333333,0,0,0 +14941,18313,33405,33404,-9,-9,1,1,0,36,1,0,1,0,1,-9,2,1,0,4,8.841283055042512,8.950243813141379,0,2,0,-9,8,0,-11,107.3124152740821,0,0,1,47,1,2,1,2,2,2019,1,2,11,1,58,64,15,1,1,1,0,14.22269211014624,14.22269211014624,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,5,1,1386.333333333333,0,0,0 +14941,18313,33406,-9,33405,33404,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-858.8970345484977,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,5,1,1386.333333333333,0,0,0 +14942,18314,33407,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.185027035881292,8.335171344354494,0,3,0,0,0,-9,0,-863.2523184107234,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,25,40,15,1,1,-9,0,21.30327520458361,21.30327520458361,0,0,0,0,0,0,0,0,0,0,1.803065993928954,0,0,0,48.71,61.53,6,1,0,1,12,4,1,139,0,0,0 +14943,18315,33408,-9,-9,-9,1,1,1,22,2,0,0,1,-9,0,7,2,0,4,7.194938102643179,7.294910417603779,0,3,0,0,0,-9,0,-932.2544690787997,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,20,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.2283616045241366,0,0,0,40.96,61.14,6,1,0,0,12,2,0,579,0,0,0 +14944,18316,33409,33410,-9,-9,1,1,1,63,1,0,0,0,3,-9,1,1,0,3,9.604137958409872,9.572583923094095,0,1,0,-9,1,-9,2,31.01348352334051,-9,0,0,61,1,3,1,3,3,2019,1,2,10,0,90,0,15,1,1,1,0,20.30693955273504,20.30693955273504,0,0,0,0,0,0,0,0,0,0,4.319292355412155,0,0,0,52,47,5,1,0,0,5,5,1,449.5,0,0,0 +14944,18316,33410,33409,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,3,7.358792834962522,8.191009917230026,7.411249404815804,1,0,-9,1,-9,-2,83.87108925656915,-9,0,0,63,3,3,1,-9,-9,2019,1,1,11,0,35,0,15,1,2,1,0,5.20742025667816,5.20742025667816,0,0,0,0,0,0,0,0,0,0,0,7.532706465742904,0,0,50,47,5,1,0,0,5,5,1,449.5,0,0,0 +14945,18317,33411,33412,-9,-9,2,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.74881488441337,8.697469040000801,0,1,0,-9,4,0,-7,-28.71790970253732,0,0,0,37,1,4,1,-9,-9,2019,1,1,11,2,41,40,15,1,2,1,0,15.84018187144308,15.84018187144308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,41.77,5,1,0,0,10,5,0,419.5,0,0,0 +14945,18317,33412,33411,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,4,8.101413957176804,7.874922724926056,0,1,0,-9,4,0,7,-48.41191372056726,0,0,1,30,1,4,1,2,2,2019,1,2,17,5,38,40,15,1,5,1,0,11.70224948103176,11.70224948103176,0,0,0,0,0,0,0,0,0,0,1.952158060842399,0,0,0,36.85,61.32,6,1,0,0,10,5,0,419.5,0,0,0 +14946,18318,33413,33414,-9,-9,2,1,0,35,1,0,0,0,2,-9,2,1,0,4,8.810230465455083,8.99073631414212,0,1,0,-9,8,0,-2,-93.21179640563987,0,0,1,37,2,3,1,-9,-9,2019,1,1,10,1,48,53,15,1,1,1,0,13.56793013016635,13.56793013016635,0,0,0,0,0,0,0,0,0,0,2.620931938758278,0,0,0,54.2,57.49,6,1,0,0,7,5,1,713.5,0,0,0 +14946,18318,33414,33413,-9,-9,1,1,1,37,1,0,0,0,2,-9,2,1,0,3,8.781247540165468,8.700151755181263,0,1,0,-9,8,0,2,58.18751610044635,0,0,0,35,2,4,1,2,2,2019,1,2,17,6,47,49,15,1,6,1,0,16.60906250855256,16.60906250855256,0,0,0,0,0,0,0,0,0,0,4.070716627155188,0,0,0,33.9,60.31,5,1,0,0,7,5,1,713.5,0,0,0 +14947,18319,33415,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-975.1436054007446,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.226995286189724,0,0,0,61.43,30.11,5,1,0,0,1,1,1,885,0,0,0 +14948,18320,33416,-9,-9,-9,1,1,0,52,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-948.4543032430659,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.66,19.3,3,1,0,0,13,1,0,694,0,0,0 +14949,18321,33417,33418,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,5,8.637320652665737,8.642227106918606,0,1,0,-9,34,0,-4,111.1763200813558,0,0,0,59,2,3,1,3,3,2019,1,2,7,0,38,38,15,1,0,1,0,16.00539367031566,16.00539367031566,0,0,0,0,0,0,0,0,0,0,3.644165665780622,0,0,0,57.06,57.76,5,1,0,0,12,5,1,423.5,0,0,0 +14949,18321,33418,33417,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,3,9.112701971730328,8.98797249860508,0,1,0,-9,6,0,4,32.86118355083737,0,0,0,55,1,5,1,2,3,2019,1,1,7,0,35,38,15,1,0,1,0,27.77561559648749,27.77561559648749,0,0,0,0,0,0,0,0,0,0,4.385233359924525,0,0,0,54.96,53.17,6,1,0,0,12,5,1,423.5,0,0,0 +14950,18322,33419,33420,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,4,0,7.21059228019109,7.401648896974689,1,0,-9,31,0,-3,42.05812873942957,0,0,0,72,3,2,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.100153023044821,0,0,65.07000000000001,44.28,7,1,0,0,10,3,0,321.5,0,0,0 +14950,18322,33420,33419,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,6.878429910994005,6.93749894513764,1,0,-9,31,0,3,-15.04980151472629,0,0,0,69,3,4,3,3,3,2019,4,2,4,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.267281702927409,6.696582642040704,0,0,45.34,48.3,7,1,0,0,10,3,0,321.5,0,0,0 +14951,18323,33421,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,1,1,0,3,7.194437312739614,7.783092646561654,7.174684378944663,3,0,0,0,-9,0,-1041.526476293899,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,70,20,15,1,0,-9,0,2.324547568206694,2.324547568206694,0,0,0,0,0,0,0,1,1,0,.7132823042375664,6.730115470887666,0,0,53.98,32.91,6,1,0,0,6,3,1,501,0,0,0 +14952,18324,33422,-9,33423,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.887138233829,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,11,2,0,871.6666666666666,0,0,0 +14952,18324,33423,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,2,1,0,4,6.102170224356692,6.406187958751638,0,4,0,0,0,-9,0,-901.2833812362338,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,8,12,15,1,0,-9,0,8.626741614095076,8.626741614095076,0,0,0,0,0,0,0,1,0,1,0,0,5.473290067035449,3,54.2,57.49,6,1,0,0,11,2,0,871.6666666666666,0,0,0 +14952,18324,33424,-9,33423,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1083.924389624565,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,11,2,0,871.6666666666666,0,0,0 +14953,18325,33425,33426,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.744427193040011,8.894446933586043,1,0,-9,33,0,4,-40.3379326415418,0,0,0,62,1,4,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.309688336945606,8.806551298013741,0,0,62.56,45.64,7,1,0,0,7,5,1,892,0,0,0 +14953,18325,33426,33425,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,33,0,-4,22.39894226404235,0,0,0,66,1,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.50318453885267,0,.9884448386503863,3,55.36,54.24,6,1,0,0,7,5,1,892,0,0,0 +14954,18326,33427,33428,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,3,6.352580787877061,8.134849217889613,7.580472343887175,1,0,-9,40,0,0,1.438983040326544,0,0,0,64,1,5,3,2,2,2019,2,2,4,0,0,5,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.667468257756812,7.914821050774986,0,0,55.72,51.64,7,1,0,0,7,3,1,1027,0,0,0 +14954,18326,33428,33427,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,5,0,6.884590470566317,6.627701012812279,1,0,-9,42,0,0,7.700478327808353,0,0,0,64,1,3,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.787416055929095,6.753843865077936,0,0,57.06,57.76,7,1,0,0,7,3,1,1027,0,0,0 +14955,18327,33429,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-852.2541599258286,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,35.78,7,1,0,0,13,1,0,1283,0,0,0 +14955,18328,33430,-9,33429,-9,2,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.843254364064385,7.887213723726421,0,3,0,0,0,-9,0,-944.8458387869779,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,41,47,15,1,2,-9,1,6.695552826920125,6.695552826920125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.23,54.42,6,1,0,0,13,3,0,594,0,0,0 +14956,18329,33431,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,3,8.566012366870778,8.873256354624454,0,3,0,0,0,-9,0,-931.7407603465541,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,13,1,37,0,15,1,1,-9,0,15.93863547959757,15.93863547959757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.67,43.39,6,1,0,0,8,5,1,812,0,0,0 +14957,18330,33432,-9,-9,-9,2,1,1,33,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1004.397447676064,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.9960301015839,3,36.14,48.61,4,1,0,1,13,1,1,2342,0,0,0 +14957,18331,33433,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1001.574756016667,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,21.31878250647821,0,0,0,1,1,0,0,0,0,0,53,45,6,1,0,0,13,1,1,116,0,0,0 +14958,18332,33434,-9,33436,33435,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.1715261227654,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,1570,0,0,0 +14958,18332,33435,33436,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,2,8.685920365224973,8.353677264618222,0,2,0,-9,23,0,0,6.33205410610045,0,0,0,44,1,5,1,3,-9,2019,1,2,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,41,5,1,0,0,6,5,1,1570,0,0,0 +14958,18332,33436,33435,-9,-9,2,1,0,44,1,0,2,0,1,-9,2,1,0,5,8.963667457650258,8.800868628470035,0,2,0,-9,23,0,0,21.34379665138633,0,0,1,44,1,2,1,3,2,2019,1,1,7,0,42,20,15,1,0,1,0,17.58598466783576,17.58598466783576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,6,5,1,1570,0,0,0 +14959,18333,33437,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,6.169919298009259,6.048130678264693,3,0,0,0,-9,0,-1047.374399883048,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.785339788758313,0,0,52,45,6,4,0,1,6,2,1,1034,0,0,0 +14960,18334,33438,33439,-9,-9,1,1,1,45,1,0,0,0,1,-9,2,1,0,4,8.356304896949336,8.446880666129795,0,1,0,-9,16,0,6,4.058367839676918,0,0,0,39,1,5,1,2,1,2019,1,2,8,0,50,55,15,1,0,1,0,13.71816642733222,13.71816642733222,0,0,0,0,0,0,0,0,0,0,4.39573744468793,0,0,0,54.2,57.49,2,1,0,0,10,5,1,1134.5,0,0,0 +14960,18334,33439,33438,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,5,9.292078650280901,9.231811326350917,0,1,0,-9,16,0,-6,-3.89940297352132,0,0,1,45,1,4,1,2,1,2019,1,1,7,0,50,55,15,1,0,1,0,23.26248950880668,23.26248950880668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,10,5,1,1134.5,0,0,0 +14961,18335,33440,33442,-9,-9,2,1,0,55,1,0,2,0,2,-9,6,3,0,1,0,0,0,2,0,-9,7,0,-2,-55.66136589523189,0,0,0,57,2,4,1,2,2,2019,3,1,25,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.072454491648069,0,0,0,45.13,21.47,3,1,0,1,7,4,1,532.5,0,0,0 +14961,18335,33441,-9,33440,33442,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.819541906298,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,532.5,0,0,0 +14961,18335,33442,33440,-9,-9,1,1,1,57,1,0,2,0,2,-9,2,1,0,4,9.036671232504764,9.244702180520546,0,2,0,-9,7,0,2,30.17478501086019,0,0,0,55,2,1,3,3,3,2019,2,2,6,0,46,47,15,1,0,3,0,20.00627440511275,20.00627440511275,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.66,46.31,6,1,0,0,7,4,1,532.5,0,0,0 +14961,18335,33443,-9,33440,33442,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.0242702274068,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,4,1,532.5,0,0,0 +14962,18336,33444,33445,-9,-9,2,1,0,26,1,0,1,0,2,-9,2,1,0,3,8.019412965010288,7.95637211039161,0,2,0,-9,4,0,0,-13.07473714277068,0,1,1,26,2,4,3,-9,-9,2019,2,1,20,7,44,0,15,1,7,3,0,6.901954092262271,6.901954092262271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,54.77,5,1,0,1,1,3,1,406.3333333333333,0,0,0 +14962,18336,33445,33444,-9,-9,1,1,1,26,1,0,1,0,2,-9,8,3,1,4,0,0,0,2,0,-9,4,0,0,-38.4680385563277,-9,1,0,26,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,46.84,5,1,0,0,1,3,1,406.3333333333333,0,0,0 +14962,18336,33446,-9,33444,33445,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-930.6779588461023,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,1,3,1,406.3333333333333,0,0,0 +14963,18337,33447,-9,-9,-9,1,1,0,55,3,0,2,0,3,-9,6,3,0,4,0,3.63850386261317,3.171244493573735,4,0,0,0,-9,0,-931.2211704249406,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.411155319413139,64.53223270592724,3,47.78,40.21,6,1,0,0,12,1,0,398.6666666666667,0,0,0 +14963,18337,33448,-9,33447,-9,2,1,1,16,2,0,2,1,3,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-940.9872825635562,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.25,56.52,4,1,0,0,12,1,0,398.6666666666667,0,0,0 +14963,18337,33449,-9,33447,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-924.8691992314714,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,12,1,0,398.6666666666667,0,0,0 +14964,18338,33450,33451,-9,-9,1,1,1,31,1,0,0,0,2,-9,2,1,0,3,8.226653991554221,8.117295697827934,0,1,0,-9,2,0,7,-17.5689452860184,0,0,0,24,1,4,1,2,2,2019,1,2,8,0,38,39,15,1,0,1,0,8.387782590444347,8.387782590444347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.59,46.3,4,1,0,0,4,4,1,321,0,0,0 +14964,18338,33451,33450,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,4,8.194408542208429,8.22469149024929,0,1,0,-9,2,0,-7,78.38363998030439,0,1,1,31,2,3,1,-9,-9,2019,1,1,11,2,38,57,15,1,2,1,0,12.05865080153208,12.05865080153208,0,0,0,0,0,0,0,0,0,0,.5933248336958794,0,0,0,40.01,58.61,5,1,0,0,4,4,1,321,0,0,0 +14965,18339,33452,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,4,3,0,4,0,8.32314075430574,8.37781240701654,3,0,0,0,-9,0,-1024.469560586346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.067390425857399,7.938908640175764,0,0,57.16,56.15,6,1,0,0,10,4,1,523,0,0,0 +14966,18340,33453,33454,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,7.645452916636886,7.886770262823127,1,0,-9,8,0,2,25.48395159725561,0,0,0,64,3,3,3,3,3,2019,4,2,8,0,0,48,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.062443847964281,7.481267847297887,5.455027072692946,3,52.63,43.63,6,1,0,0,11,3,1,516.5,0,0,0 +14966,18340,33454,33453,-9,-9,2,1,0,64,1,0,0,0,3,-9,4,3,0,3,0,6.428830943733225,6.160396775411467,1,0,-9,8,0,-2,-41.08827402465238,0,0,0,66,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.759119890511755,6.282674747076571,13.80377852499335,3,51.07,48.48,6,1,0,0,11,3,1,516.5,0,0,0 +14967,18341,33455,-9,-9,-9,1,1,1,20,2,0,0,0,2,-9,2,1,0,4,7.399236705752767,7.185497918990938,0,3,0,0,0,-9,0,-1009.846175444115,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,24,41,15,1,0,-9,0,7.855297349094797,7.855297349094797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,5,1,0,1,13,3,1,414,0,0,0 +14968,18342,33456,33457,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,5,6.398509057566816,6.558600918156686,0,2,0,-9,28,0,-13,85.4120381586258,0,0,0,61,2,2,1,-9,-9,2019,1,2,6,0,15,15,15,1,0,1,0,4.58104543454467,4.58104543454467,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,4,3,1,1638.5,0,0,0 +14968,18342,33457,33456,-9,-9,2,1,1,61,1,0,2,0,2,-9,2,1,0,2,8.798238891632117,8.56337645095377,0,2,0,-9,28,0,13,-15.43167062758567,0,0,0,48,2,5,1,-9,-9,2019,1,1,6,0,35,35,15,1,0,1,0,15.93425615260366,15.93425615260366,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.38,24.67,1,1,0,0,4,3,1,1638.5,0,0,0 +14968,18343,33458,-9,33456,33457,3,1,1,20,2,0,2,0,2,-9,2,1,0,3,7.926162104496036,7.699958967415409,0,3,0,0,0,-9,0,-996.3013649673122,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,35,35,15,1,0,-9,1,8.488947286130514,8.488947286130514,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,53.79,7,1,0,0,4,3,1,234,0,0,0 +14969,18344,33459,-9,33462,33460,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-983.4372856981437,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,545.25,0,0,0 +14969,18344,33460,33462,-9,-9,2,1,1,37,1,0,2,0,2,-9,1,1,0,4,7.463253976803738,7.283766049510826,0,2,0,-9,7,0,3,-79.25571852038679,0,0,0,34,2,5,1,-9,-9,2019,1,1,10,0,45,50,15,1,1,1,0,3.884383126511391,3.884383126511391,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,10,3,1,545.25,0,0,0 +14969,18344,33461,-9,33462,33460,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.399122170842,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,545.25,0,0,0 +14969,18344,33462,33460,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,5,7.754956492685042,7.269952436436379,0,2,0,-9,16,0,-3,-41.75035473423794,0,0,1,37,2,4,1,1,2,2019,1,2,9,0,26,31,15,1,0,1,0,8.775886375790645,8.775886375790645,0,0,0,0,0,0,0,1,1,0,.4894503109804119,0,0,0,57.06,57.76,7,1,0,0,10,3,1,545.25,0,0,0 +14970,18345,33463,-9,-9,-9,1,1,1,70,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-956.0949862092091,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.627431494923598,0,0,0,46.85,40.53,6,1,0,1,11,1,1,661,0,0,0 +14971,18346,33464,33465,-9,-9,1,1,0,54,1,0,0,0,2,-9,1,1,0,2,6.773715388250551,6.560480224396802,0,1,0,-9,28,0,-2,78.70411961578259,-9,0,0,56,2,4,1,3,3,2019,1,2,10,1,42,0,15,1,1,1,0,2.825890658065745,2.825890658065745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,42.93,3,1,0,0,6,4,1,2123,0,0,0 +14971,18346,33465,33464,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.640229989710285,8.525146389459303,0,1,0,-9,5,0,2,5.531229719151741,0,0,0,54,2,2,1,-9,-9,2019,1,1,8,0,45,45,15,1,0,1,0,12.76291993447159,12.76291993447159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.39,54.22,6,1,0,0,6,4,1,2123,0,0,0 +14972,18347,33466,33467,-9,-9,1,1,1,46,1,0,0,0,1,-9,2,1,0,4,7.857678145993768,8.340298371357784,0,1,0,-9,17,0,8,68.7166092914119,0,0,0,38,1,4,1,2,2,2019,1,2,13,1,36,37,15,1,1,1,0,10.91323318258099,10.91323318258099,0,0,0,0,0,0,0,0,0,0,1.984954171722832,0,0,0,39.05,57.88,5,1,0,0,2,5,1,459,0,0,0 +14972,18347,33467,33466,-9,-9,2,1,0,38,1,0,0,0,1,-9,2,1,0,4,8.951740466788751,8.868888449294097,0,1,0,-9,17,0,-8,-17.97772426588058,0,0,1,46,1,4,1,2,2,2019,1,1,22,11,43,40,15,1,11,1,0,19.69598374543156,19.69598374543156,0,0,0,0,0,0,0,0,0,0,1.011262360185161,0,0,0,44.83,56.69,5,1,0,0,2,5,1,459,0,0,0 +14973,18348,33468,33469,-9,-9,2,1,0,90,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,68,0,2,0,0,0,0,88,2,5,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,1.763920002166426,7.356858837918364,0,0,0,1,1,0,0,0,0,0,43.18,32.88,6,1,0,0,9,1,1,926,0,0,0 +14973,18348,33469,33468,-9,-9,1,1,1,88,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,68,0,-2,0,0,0,0,90,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.563286904801128,0,10.20607580746318,1,62.99,49.54,7,1,0,0,9,1,1,926,0,0,0 +14974,18349,33470,33471,-9,-9,1,1,0,72,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,40,0,-17,-21.13903714595504,0,0,0,89,2,2,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.61754708544236,0,0,0,60.87,44.96,6,1,0,0,7,5,1,254.5,0,0,0 +14974,18349,33471,33470,-9,-9,2,1,1,89,1,0,0,0,2,-9,4,3,0,2,0,9.312584293069349,9.150226339157429,1,0,-9,39,0,17,-76.05758691813752,0,0,0,72,3,3,3,3,3,2019,4,1,19,8,0,0,15,4,8,4,0,0,0,1,18.83619492074108,4.529274644519094,0,0,0,116.4170789658977,1,1,0,7.435722215999678,9.268952761079847,0,0,47.39,34.26,5,1,0,0,7,5,1,254.5,0,0,0 +14975,18350,33472,33473,-9,-9,2,1,0,51,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,22,0,-1,0,0,0,0,52,2,1,3,3,3,2019,4,1,22,10,0,0,15,3,10,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,80.33948574599654,1,24.45,29.59,3,1,0,0,5,1,0,352.5,0,0,0 +14975,18350,33473,33472,-9,-9,1,1,1,52,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,22,0,1,0,0,0,0,51,2,1,3,3,3,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,2.145730128569812,0,0,1,56.57,20.77,3,1,0,0,5,1,0,352.5,0,0,0 +14976,18351,33474,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,8.767847542312698,8.787733503048758,0,3,0,0,0,-9,0,-968.6940629765452,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,4,20,0,15,4,4,-9,0,0,0,1,9.088918820166269,0,0,0,0,137.8157076949079,1,1,0,1.359429358982767,0,0,0,51.36,30.72,5,1,0,0,1,5,0,270,0,0,0 +14977,18352,33475,-9,-9,-9,1,1,1,40,2,0,0,0,2,-9,2,1,0,2,8.040887920624936,8.03927956751658,0,3,0,0,0,-9,0,-959.9750962482351,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,30,12,37,37,15,1,12,-9,0,11.8686601744295,11.8686601744295,0,0,0,0,0,0,0,1,1,0,0,0,.2444602977764525,3,21.47,62.18,2,1,0,0,5,4,1,772,0,0,0 +14978,18353,33476,-9,-9,-9,1,1,0,22,2,0,0,1,2,0,7,2,0,5,0,5.916031974481934,6.208253747803734,3,0,0,0,-9,0,-984.2966766454997,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.03780896386796,0,0,0,33.39,65.88,6,1,0,0,5,2,0,1099,0,0,0 +14978,18354,33477,-9,-9,-9,4,1,0,20,2,0,0,1,2,0,7,2,0,3,0,5.191477551470641,5.16835485205235,3,0,0,0,-9,0,-909.3439166013715,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.998832993264864,0,0,0,54.37,54.8,7,1,0,0,5,2,0,880,0,0,0 +14978,18355,33478,-9,-9,-9,5,1,0,21,2,0,0,1,2,-9,7,2,0,5,0,6.874757748906742,7.052378182902098,3,0,0,0,-9,0,-1073.377948442838,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.627806747285689,0,0,0,49.53,58.64,7,1,0,0,5,2,0,762,0,0,0 +14979,18356,33479,33480,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,2,0,8.451020961564751,8.099349668875682,1,0,-9,42,0,7,28.71797971478034,0,0,0,66,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.266909097764028,8.12263432866278,0,0,51.61,32.15,5,1,0,0,4,3,1,609.5,0,0,0 +14979,18356,33480,33479,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,4,0,5.811170199698704,6.18138636430427,1,0,-9,42,0,-7,-80.32793807095317,0,0,0,73,2,2,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.478638464594773,5.959727892011726,0,0,58.72,51.29,6,1,0,0,4,3,1,609.5,0,0,0 +14980,18357,33481,33482,-9,-9,1,1,0,82,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,35,0,-4,6.874092552086461,0,0,0,86,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.792650563007082,0,122.7560926539174,1,57.04,57.78,7,1,0,0,7,2,1,323.5,0,0,0 +14980,18357,33482,33481,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,4,0,6.077835523724375,5.772563817484442,1,0,-9,35,0,4,214.5949087356289,0,0,0,82,3,5,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,123.6261245304549,123.7478421672908,0,0,0,1157.549083087403,1,1,0,2.367761826970672,6.419673321824305,0,0,57.16,56.15,7,1,0,0,7,2,1,323.5,0,0,0 +14981,18358,33483,-9,-9,-9,1,1,1,68,3,0,0,0,3,-9,4,3,0,2,0,6.090026083193433,5.803014966499039,3,0,0,0,-9,0,-964.9212096722454,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.129706432945232,6.016750676916612,33.4016383459165,3,48.44,46.97,6,1,0,0,2,2,0,403,0,0,0 +14982,18359,33484,-9,33488,33487,3,1,1,12,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-848.2316774930172,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,7,2,1,3195,0,0,0 +14982,18359,33485,-9,33488,33487,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1047.327849840907,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,7,2,1,3195,0,0,0 +14982,18359,33486,-9,33488,33487,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.834654422243,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,1,3195,0,0,0 +14982,18359,33487,33488,-9,-9,2,1,1,55,1,0,3,0,2,-9,1,1,0,3,7.660599175722252,7.598713499869286,0,2,0,-9,14,0,10,-75.03256343510606,0,0,0,45,1,2,1,2,2,2019,1,1,9,0,50,55,15,1,0,1,0,5.230797586948796,5.230797586948796,0,0,0,0,0,0,0,1,1,0,1.704767059124486,0,0,0,54.05,41.39,4,1,0,0,7,2,1,3195,0,0,0 +14982,18359,33488,33487,-9,-9,1,1,0,45,1,0,3,0,1,-9,2,1,0,2,6.054195447484071,6.180203289420183,0,2,0,-9,14,0,-10,-95.66357471764356,0,0,0,55,2,3,1,3,3,2019,1,2,13,1,6,6,15,1,1,1,0,10.17411615052916,10.17411615052916,0,0,0,0,0,0,0,1,1,0,3.46151414636333,0,0,0,51.2,41.78,6,1,0,0,7,2,1,3195,0,0,0 +14983,18360,33489,33490,-9,-9,1,1,0,25,1,0,0,0,1,-9,2,1,0,3,8.081310793210266,8.154655113020635,0,1,0,-9,2,0,1,-111.0499312575115,0,1,1,24,2,3,1,-9,-9,2019,1,2,11,0,41,40,15,1,0,1,0,8.114276994758354,8.114276994758354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,54.85,6,1,0,0,5,5,1,607,0,0,0 +14983,18360,33490,33489,-9,-9,2,1,1,24,1,0,0,0,2,-9,2,1,0,3,8.821287979379504,8.653227627816438,0,1,0,-9,2,0,-1,-36.73205475284588,0,1,0,25,1,3,1,-9,-9,2019,1,1,9,0,50,50,15,1,0,1,0,13.81486360300731,13.81486360300731,0,0,0,0,0,0,0,0,0,0,1.31183200156115,0,0,0,57.33,53.46,6,1,0,0,5,5,1,607,0,0,0 +14984,18361,33491,33493,-9,-9,1,1,0,51,1,0,1,0,2,-9,2,1,0,3,7.938992608888867,7.614928317129184,0,2,0,-9,14,-9,5,47.26651163316031,-9,0,0,46,1,4,1,2,3,2019,1,2,12,0,32,0,15,1,0,1,0,8.052627958900766,8.052627958900766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,44.76,6,1,0,0,10,4,1,748.6666666666666,0,0,0 +14984,18361,33492,-9,33491,33493,3,1,0,17,2,0,1,1,2,-9,7,2,0,4,3.69167124342408,3.737405066993788,0,2,0,-9,0,-9,0,-1128.381008913347,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.06,58.64,6,1,0,0,10,4,1,748.6666666666666,0,0,0 +14984,18361,33493,33491,-9,-9,2,1,1,46,1,0,1,0,1,-9,2,1,0,4,8.694807844935877,8.783820673876539,0,2,0,-9,15,-9,-5,114.5406131357922,-9,0,0,51,2,3,1,2,2,2019,1,1,12,0,35,0,15,1,0,1,0,20.03336918874941,20.03336918874941,0,0,0,0,0,0,0,1,1,0,2.68584186570317,0,0,0,43.2,59.97,4,1,0,0,10,4,1,748.6666666666666,0,0,0 +14985,18362,33494,-9,-9,-9,1,1,1,67,2,0,0,0,2,-9,1,1,0,3,6.225537673265864,6.738676979893334,5.371831310773665,3,0,0,0,-9,0,-1063.375979885876,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.516589921112676,5.280743161274058,0,0,57.33,53.46,2,1,0,0,12,2,1,1099,0,0,0 +14986,18363,33495,33496,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,7.92653837736099,8.040369182805446,6.756994234158975,1,0,-9,10,0,-4,-69.96441520958511,0,0,1,48,2,5,1,2,1,2019,1,1,24,12,60,40,15,1,12,1,0,5.459059621838344,5.459059621838344,0,0,0,0,0,0,0,1,1,0,6.455059398101424,6.610634344393853,0,0,41.2,47.04,4,1,0,0,8,5,1,286,0,0,0 +14986,18363,33496,33495,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,5,8.655803193243571,8.348715780823529,0,1,0,-9,10,0,4,-37.71851385406701,0,0,0,44,2,4,1,-9,-9,2019,1,2,6,2,45,52,15,1,2,1,0,12.88603385243903,12.88603385243903,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.98,66.69,7,1,0,0,8,5,1,286,0,0,0 +14987,18364,33497,33498,-9,-9,2,1,0,26,1,0,0,0,2,-9,2,1,0,4,8.176741378909808,8.215419015159174,0,1,0,-9,4,0,-3,-16.92004536261454,0,1,1,29,2,4,1,-9,-9,2019,1,1,4,0,33,43,15,1,0,1,0,12.28970364405308,12.28970364405308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,7,1,0,0,7,5,1,550.5,0,0,0 +14987,18364,33498,33497,-9,-9,1,1,1,29,1,0,0,0,2,-9,1,1,0,4,8.762632354989551,8.89910523989702,0,1,0,-9,4,0,3,-8.9012162126673,0,1,0,26,2,4,1,1,1,2019,1,2,9,0,40,46,15,1,0,1,0,27.54525905862446,27.54525905862446,0,0,0,0,0,0,0,0,0,0,1.374567299442884,0,0,0,57.16,56.15,6,1,0,0,7,5,1,550.5,0,0,0 +14988,18365,33499,33500,-9,-9,2,1,1,60,1,0,0,0,1,-9,1,1,0,5,9.760667424417468,9.988056993538949,7.600235515914291,1,0,-9,39,0,3,.6649746877876315,0,0,0,57,1,1,1,3,3,2019,1,1,9,0,50,55,15,1,0,1,0,46.96093922931473,46.96093922931473,0,0,0,0,0,0,0,0,0,0,5.129230431139751,7.935908876262877,0,0,54.35,57.84,7,1,0,0,9,5,1,994,0,0,0 +14988,18365,33500,33499,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,1,8.501851965653179,8.34926268496198,0,1,0,-9,39,0,-3,83.89388017081664,0,0,0,60,1,5,1,3,3,2019,1,2,27,10,43,48,15,1,10,1,0,12.39565082134729,12.39565082134729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.87,19.45,2,2,0,0,9,5,1,994,0,0,0 +14989,18366,33501,-9,-9,-9,1,1,1,76,3,0,0,0,3,-9,4,3,0,3,0,6.454813644057281,6.863054897642902,3,0,0,0,-9,0,-976.6987712527979,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.51171450043462,6.66343244305695,0,0,70.37,24.31,7,1,0,0,10,2,1,313,0,0,0 +14990,18367,33502,-9,-9,-9,1,1,0,32,3,0,1,0,2,-9,8,3,1,3,0,0,0,4,0,0,0,-9,0,-926.1218666483824,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,22,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.09,25.35,2,5,0,1,8,1,0,370.5,0,0,0 +14990,18367,33503,-9,33502,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1115.901810726745,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,1,0,370.5,0,0,0 +14991,18368,33504,-9,33507,33505,5,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.382558566656,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,4,4,1,389,0,0,0 +14991,18368,33505,33507,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,3,8.236786761356209,7.940749902679173,0,2,0,-9,18,0,3,160.2069400035529,0,0,0,41,2,4,1,3,3,2019,1,1,27,12,58,37,15,1,12,1,0,7.169155873551937,7.169155873551937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.14,59.2,3,3,0,0,4,4,1,389,0,0,0 +14991,18368,33506,-9,33507,33505,4,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-955.8771040196768,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,3,0,0,4,4,1,389,0,0,0 +14991,18368,33507,33505,-9,-9,1,1,0,41,1,0,2,0,2,-9,2,1,0,4,8.169732242796155,8.540886943924098,0,2,0,-9,18,0,-3,32.22490306836666,0,0,1,44,2,3,1,3,3,2019,1,2,10,0,43,37,15,1,0,1,0,10.91460674592936,10.91460674592936,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,3,0,0,4,4,1,389,0,0,0 +14991,18369,33508,-9,33507,33505,3,1,1,19,2,0,2,0,2,-9,2,1,0,5,7.765727354233376,7.84130628520762,0,3,0,0,0,-9,0,-998.0994549024668,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,53,42,15,1,0,-9,1,4.844331434233204,4.844331434233204,0,0,0,0,0,0,0,1,1,0,5.479427751013096,0,0,0,40.13,62.93,4,3,0,0,4,3,1,585,0,0,0 +14992,18370,33509,-9,33510,33511,2,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.9206774624865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,3,0,632,0,0,0 +14992,18370,33510,33511,-9,-9,1,1,0,31,1,0,4,0,2,-9,2,1,0,3,7.56168609019267,7.131277964011677,0,2,0,-9,9,0,-1,-71.04703479587852,0,0,1,32,2,2,1,2,2,2019,1,3,17,5,32,0,15,1,5,1,0,6.277992657101256,6.277992657101256,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,57.61,4,1,0,0,9,3,0,632,0,0,0 +14992,18370,33511,33510,-9,-9,3,1,1,32,1,0,4,0,2,-9,2,1,0,2,8.17379154977947,8.226248614293814,0,2,0,-9,9,0,1,-48.35458269620372,0,0,0,31,2,3,1,-9,-9,2019,1,1,19,7,55,50,15,1,7,1,0,5.886427887155597,5.886427887155597,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.92,55.3,2,1,0,0,9,3,0,632,0,0,0 +14992,18370,33512,-9,33510,33511,6,1,1,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.7714237732711,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,0,632,0,0,0 +14992,18370,33513,-9,33510,33511,4,1,1,10,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.3399182756095,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,0,632,0,0,0 +14992,18370,33514,-9,33510,33511,5,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1084.466005054634,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,0,632,0,0,0 +14993,18371,33515,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1119.631232092549,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,0,37,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.166068965512261,0,0,0,46.45,54.09,4,1,1,0,9,1,1,1838,0,0,0 +14994,18372,33516,33517,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,7.572961566307579,7.67651701119313,1,0,-9,7,0,1,-15.67792916407548,0,0,0,68,1,3,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.957562494919591,7.5542478980162,0,0,42.61,54.85,6,1,0,0,9,3,1,272.5,0,0,0 +14994,18372,33517,33516,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,3,0,6.885817916290196,6.97647872760815,1,0,-9,7,0,-1,8.672516385276367,0,0,0,69,3,3,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.434348222469477,6.574286724152444,0,0,41.35,51.34,5,1,0,0,9,3,1,272.5,0,0,0 +14995,18373,33518,-9,33519,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-996.5058288136065,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,3,0,485.5,0,0,0 +14995,18373,33519,-9,-9,-9,1,1,0,32,2,0,1,0,1,-9,2,1,0,4,7.352991753938508,7.54774255018586,0,4,0,0,0,-9,0,-1030.464885410687,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,28,28,15,1,0,-9,0,8.76465680603447,8.76465680603447,0,0,0,0,0,0,0,1,1,0,0,0,.7524538205733431,3,51.83,57.2,6,1,0,1,7,3,0,485.5,0,0,0 +14996,18374,33520,-9,-9,-9,1,1,1,77,3,0,0,0,3,-9,4,3,0,2,0,5.945293481396448,5.96073198521868,3,0,0,0,-9,0,-966.9291668049225,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,3.082367386125847,0,0,0,0,11.13191597083886,1,1,0,0,5.877273149966944,0,0,40.93,46.37,5,1,0,0,9,2,1,261,0,0,0 +14997,18375,33521,-9,33523,33524,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1034.3399141628,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,10,2,0,956.75,0,0,0 +14997,18375,33522,-9,33523,33524,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.624574746253,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,0,956.75,0,0,0 +14997,18375,33523,33524,-9,-9,1,1,0,32,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-6,-120.1086086067375,0,0,1,38,2,4,1,-9,-9,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,6,1,0,0,10,2,0,956.75,0,0,0 +14997,18375,33524,33523,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,4,7.700819582029174,7.581781468640865,0,2,0,-9,6,0,6,21.50838041027432,0,0,0,32,2,5,3,-9,-9,2019,2,1,5,0,37,35,15,1,0,3,0,6.277317024165199,6.277317024165199,0,0,0,0,0,0,0,1,1,0,0,0,0,3,46.98,59.35,6,1,0,0,10,2,0,956.75,0,0,0 +14998,18376,33525,-9,33526,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,3,8.38139935721806,8.540823586317309,0,3,0,0,0,-9,0,-1064.546573411141,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,38,14,15,1,1,-9,1,16.74134557760625,16.74134557760625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,4,3,0,0,6,4,0,184,0,0,0 +14998,18377,33526,-9,-9,-9,2,1,0,49,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-982.7399726520437,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,5,3,0,0,6,1,0,374,0,0,0 +14998,18378,33527,-9,33526,-9,3,1,0,26,2,0,0,0,2,-9,2,1,0,3,7.252401122560819,7.783677885138808,0,3,0,0,0,-9,0,-1024.39995132975,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,30,0,15,1,1,-9,1,7.890526508142197,7.890526508142197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.79,51.64,5,3,0,0,6,3,0,1974,0,0,0 +14998,18379,33528,-9,33526,-9,4,1,0,22,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1078.426349589017,1,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,37,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.06,41.28,5,3,0,0,6,1,0,283,0,0,0 +14998,18380,33529,-9,33526,-9,5,1,0,21,2,0,0,0,2,-9,11,3,0,4,7.596687961193442,7.855538302363937,0,3,0,0,0,-9,0,-891.898720581733,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,30,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,57.72,5,3,0,0,6,3,0,387,0,0,0 +14999,18381,33530,-9,-9,-9,1,1,0,52,2,0,0,0,1,-9,2,1,0,4,9.505538150058829,9.09919022748643,0,3,0,0,0,-9,0,-1114.050586598331,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,58,53,15,1,0,-9,0,20.44577551427592,20.44577551427592,0,0,0,0,0,0,0,0,0,0,6.818278080672759,0,6.078239548552286,3,44.44,55.46,5,1,0,0,9,5,1,247,0,0,0 +15000,18382,33531,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,3,3,0,4,0,8.045192595805018,8.154796804854398,3,0,0,0,-9,0,-926.473657992181,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,0,8,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.318216172064226,5.874857865067367,0,0,46.54,47.42,6,1,1,0,9,4,1,730,0,0,0 +15001,18383,33532,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,2,1,0,5,8.632481303159436,8.378829789363405,0,3,0,0,0,-9,0,-1145.716396389739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,41,91,15,1,0,-9,0,17.6128356105829,17.6128356105829,0,0,0,0,0,0,0,1,1,0,0,0,15.46706113620954,3,46.85,60.98,6,1,0,0,5,5,1,571,0,0,0 +15002,18384,33533,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,4,7.884091434027831,7.96794419900226,0,3,0,0,0,-9,0,-1002.914257077786,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,37,15,1,0,-9,0,10.75591476612846,10.75591476612846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,4,0,515,0,0,0 +15003,18385,33534,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-992.9031977575074,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.98,50.34,5,1,0,0,4,1,1,387,0,0,0 +15004,18386,33535,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,2,0,7.83213310830758,7.194435238809668,3,0,0,0,-9,0,-994.7983986827921,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.871120031305594,7.919081545611526,0,0,59.31,33.75,3,1,0,0,7,3,1,240,0,0,0 +15005,18387,33536,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,4,3,0,4,0,7.49208018250004,7.604525933282458,1,0,-9,6,0,0,25.80076797010538,0,0,0,-9,-9,-9,-9,3,3,2019,4,2,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.649133340151061,7.800985342103713,0,0,53.37,41.63,6,1,0,0,4,3,1,435,0,0,0 +15005,18388,33537,-9,-9,-9,2,1,0,62,2,0,0,0,2,-9,4,3,0,3,0,7.159393129650048,7.231019046769291,1,0,-9,6,0,0,-15.5530026668867,0,0,0,-9,-9,-9,-9,3,3,2019,4,1,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.33683130286805,7.137216761387856,0,0,52.43,42.16,6,1,0,0,4,3,1,1889,0,0,0 +15006,18389,33538,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,2,8.473665900302448,8.327967048550708,0,3,0,0,0,-9,0,-840.9519103348182,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,53,49,15,1,0,-9,0,10.14760577140665,10.14760577140665,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.27,34.89,4,1,0,0,7,5,0,1206,0,0,0 +15007,18390,33539,-9,-9,-9,1,1,0,21,2,0,0,1,2,0,7,2,0,4,7.360609492435813,7.72930951874919,5.21783434927758,3,0,0,0,-9,0,-1060.042079654532,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.053320434342844,0,0,0,51.24,58.84,6,1,0,0,12,3,1,1617,0,0,0 +15008,18391,33540,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,3,8.841295584993103,8.596263748881903,0,3,0,0,0,-9,0,-1033.862187125105,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,43,44,15,1,0,-9,0,15.95366930319705,15.95366930319705,0,0,0,0,0,0,0,0,0,0,5.061016974034316,0,0,0,60.27,52.13,6,1,0,0,8,5,1,2690,0,0,0 +15009,18392,33541,33542,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.843259703351604,7.935970620436067,0,1,0,-9,24,0,-18,171.2956428502397,0,0,0,73,2,3,1,3,2,2019,1,2,11,0,16,18,15,1,2,1,0,20.82358169391784,20.82358169391784,0,0,0,0,0,0,0,1,1,0,6.425189324195883,0,0,0,48,49,5,1,0,0,11,3,1,357,0,0,0 +15009,18392,33542,33541,-9,-9,2,1,1,73,1,0,0,0,2,-9,2,1,0,3,6.45761968092392,7.01218202992551,6.589911334755564,1,0,-9,24,0,18,-.6158146055771255,0,0,0,55,2,3,1,2,3,2019,1,1,5,0,14,13,15,1,0,1,0,5.794025783137985,5.794025783137985,0,0,0,0,0,0,0,1,1,0,0,6.749854695892807,0,0,53.37,45.61,4,1,0,0,11,3,1,357,0,0,0 +15009,18393,33543,-9,33541,33542,3,1,1,19,2,0,0,0,2,-9,7,2,0,4,5.725644063193836,5.482766247142473,0,3,0,0,0,-9,0,-968.9123886650747,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,6,8,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,2,1,416,0,0,0 +15010,18394,33544,-9,33546,33545,4,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.2776641643254,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,5,1,809.6666666666666,0,0,0 +15010,18394,33545,33546,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.921680752046758,9.478230655577018,0,2,0,-9,8,0,2,-6.419007511376222,0,0,0,47,2,4,1,3,3,2019,1,1,16,5,43,43,15,1,5,1,0,26.35234144135416,26.35234144135416,0,0,0,0,0,0,0,1,1,0,2.964354307746143,0,0,3,46.08,57.2,3,1,0,0,7,5,1,809.6666666666666,0,0,0 +15010,18394,33546,33545,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,4,7.427706552546308,7.364647037788163,0,2,0,-9,8,0,-2,32.49516281467331,0,0,0,49,2,3,1,3,2,2019,1,2,12,1,24,24,15,1,1,1,0,9.836121941876682,9.836121941876682,0,0,0,0,0,0,0,1,1,0,.0695173403928022,0,17.771753342652,3,46.44,59.62,6,1,0,0,7,5,1,809.6666666666666,0,0,0 +15010,18395,33547,-9,33546,33545,3,1,1,19,2,0,1,1,2,0,7,2,0,4,6.721446355375199,7.486429791019602,6.85496164654516,3,0,0,0,-9,0,-1014.111484457571,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.49671617954511,0,0,0,38.34,62.12,6,1,0,0,7,3,1,131,0,0,0 +15011,18396,33548,-9,33552,33550,4,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.8421174261388,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,2,4,1,1115,0,0,0 +15011,18396,33549,-9,33552,33550,5,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-918.8784490833052,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,1115,0,0,0 +15011,18396,33550,33552,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,3,9.019027482190827,9.185457351348497,0,2,0,-9,6,0,1,28.66847022619057,0,0,0,50,1,4,3,3,2,2019,2,2,13,4,45,50,15,1,4,3,0,15.91279499616923,15.91279499616923,0,0,0,0,0,0,0,1,1,0,3.824600395029215,0,0,0,40.53,55.55,5,1,0,0,2,4,1,1115,0,0,0 +15011,18396,33551,-9,33552,33550,3,1,1,17,2,0,2,1,2,0,7,2,0,5,7.398937790462241,7.325928628999144,0,2,0,0,0,-9,0,-956.7902741031314,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.645044216985138,0,0,0,57.06,57.76,7,1,0,0,2,4,1,1115,0,0,0 +15011,18396,33552,33550,-9,-9,2,1,0,50,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-1,-47.61226297339753,0,0,0,51,1,3,1,2,2,2019,3,1,14,4,0,8,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.202852106565627,0,0,0,49.27,56.95,4,1,0,0,2,4,1,1115,0,0,0 +15012,18397,33553,33554,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,3,7.808491521540235,8.436849661616215,0,1,0,-9,4,0,-1,-25.40571717295616,0,0,1,45,2,5,1,-9,-9,2019,1,1,12,2,37,37,15,1,2,1,0,12.05488681765237,12.05488681765237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.56,54.83,3,1,0,0,9,5,1,305.5,0,0,0 +15012,18397,33554,33553,-9,-9,1,1,1,45,1,0,0,0,2,-9,2,1,0,5,8.495843047335805,8.412949823690848,0,1,0,-9,4,0,1,7.852679733727705,0,0,0,44,2,3,1,3,2,2019,1,2,12,0,50,45,15,1,0,1,0,12.27889672747997,12.27889672747997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.23,58.35,5,1,0,0,9,5,1,305.5,0,0,0 +15012,18398,33555,-9,33553,33554,3,1,0,18,2,0,0,0,2,-9,2,1,0,2,7.886633858239811,7.70872559775847,0,3,0,0,0,-9,0,-1024.113065577354,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,24,10,47,0,15,1,10,-9,1,4.885272787006931,4.885272787006931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.32,41.85,2,1,0,1,9,3,1,676,0,0,0 +15013,18399,33556,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-922.3535576629826,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,32.79211144926391,0,1.909107815921342,0,0,290.3475276835939,1,1,0,0,0,0,0,53,44,6,4,0,0,8,1,0,1097,0,0,0 +15014,18400,33557,33558,-9,-9,2,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,5.133943809654602,5.340674123476856,1,0,-9,42,0,0,-106.8739558967723,0,0,0,67,2,4,3,3,3,2019,4,1,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.054757428133275,4.707111878510846,69.68825796390753,1,57.54,28.6,6,1,0,0,2,3,1,1718.5,0,0,0 +15014,18400,33558,33557,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,8.070525743170959,7.975224507079987,1,0,-9,42,0,0,56.01341996416907,0,0,0,67,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.087947989113252,0,0,49.27,56.95,6,1,0,0,2,3,1,1718.5,0,0,0 +15015,18401,33559,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,4,6.226418990443298,6.419059841423545,0,3,0,0,0,-9,0,-947.4828888245761,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,10,16,15,1,0,-9,0,7.77800209226517,7.77800209226517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,2,0,446,0,0,0 +15016,18402,33560,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-970.7108793357762,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,8.594345916775376,0,5.862945696058997,0,0,83.07256398434144,1,1,0,0,0,0,0,57.98,32.94,6,1,0,0,13,1,1,316,0,0,0 +15017,18403,33561,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,1,1,0,4,7.380098466353164,7.496114161987424,0,3,0,-9,0,1,0,-1047.861611700093,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,3,0,40,15,1,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.372253901566149,0,0,3,48.34,54.86,6,1,0,0,5,3,1,1033,0,0,0 +15018,18404,33562,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,4,3,0,3,0,7.146857750565746,7.486955258421461,3,0,0,0,-9,0,-1023.681769372254,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.402704412437909,7.6962232140023,11.81368717564698,3,31.26,61.3,5,1,0,0,9,3,1,593,0,0,0 +15018,18405,33563,-9,33562,-9,2,1,1,23,2,0,0,0,2,-9,1,1,0,3,7.741070778017743,7.479240133896162,0,3,0,0,0,-9,0,-922.3464408477406,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,40,15,1,0,-9,1,5.279019559280969,5.279019559280969,0,0,0,0,0,0,0,0,0,0,3.52866056125825,0,0,0,46.67,55.57,6,1,0,0,9,3,1,533,0,0,0 +15018,18406,33564,-9,33562,-9,3,1,1,19,2,0,0,0,2,1,2,1,0,4,7.294236898271473,7.122594261690749,0,3,0,0,0,-9,0,-983.5975310340032,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,16,0,15,1,0,-9,1,8.38978674348413,8.38978674348413,0,0,0,0,0,0,0,0,0,0,3.093939585220316,0,0,0,48.06,53.4,5,1,0,0,9,2,1,862,0,0,0 +15019,18407,33565,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-991.9094092925761,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.37,52.2,7,1,0,0,12,1,0,263,0,0,0 +15020,18408,33566,-9,33567,33568,1,1,1,24,2,0,0,0,1,-9,2,1,0,5,7.405610116584961,6.995379906957682,0,3,0,0,0,-9,0,-963.630807093325,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,4,15,24,15,1,4,-9,1,9.498682771047291,9.498682771047291,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,59.91,3,3,0,0,4,2,1,559,0,0,0 +15020,18409,33567,33568,-9,-9,3,1,0,48,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,26,0,-6,48.39693899788354,0,0,0,54,2,3,1,-9,-9,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,3,0,0,4,2,1,881.5,0,0,0 +15020,18409,33568,33567,-9,-9,2,1,1,54,1,0,0,0,2,-9,1,1,0,3,7.138184810413637,6.854688538518026,0,1,0,-9,26,0,6,-84.84796841733205,0,0,0,48,2,4,3,-9,-9,2019,2,3,9,0,35,35,15,1,0,3,0,3.106082370721625,3.106082370721625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,5,3,0,1,4,2,1,881.5,0,0,0 +15021,18410,33569,-9,-9,-9,1,1,1,52,2,0,0,0,1,-9,1,1,0,3,9.062881686369526,9.001258945207013,0,3,0,0,0,-9,0,-1023.470986831656,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,25,30,15,1,0,-9,0,42.96630870000507,42.96630870000507,0,0,0,0,0,0,0,0,0,0,7.462816637246832,0,0,0,57.33,53.46,5,1,0,0,8,5,1,1992,0,0,0 +15022,18411,33570,-9,33572,-9,5,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-991.0897018742301,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,1,0,653,0,0,0 +15022,18411,33571,-9,33572,-9,4,1,1,4,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-937.0903745176117,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,1,0,653,0,0,0 +15022,18411,33572,-9,-9,-9,1,1,0,30,2,1,4,0,2,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1015.177961667754,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,1,1,0,0,13,1,0,653,0,0,0 +15022,18411,33573,-9,33572,-9,3,1,1,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-936.472226222391,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,1,0,653,0,0,0 +15023,18412,33574,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,2,1,0,4,8.132975781829451,8.13172636736026,0,3,0,-9,0,-9,0,-1171.417420365516,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,40,0,15,1,1,-9,0,10.62702459900461,10.62702459900461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,8,4,0,135,0,0,0 +15024,18413,33575,33576,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,4,5.102934601839913,5.247337013523618,0,1,0,-9,6,0,2,-43.72973568646113,0,0,0,51,2,2,3,2,2,2019,2,2,7,0,50,45,15,1,0,3,0,.3903819450458602,.3903819450458602,0,0,0,0,0,0,0,1,1,0,2.318944721510576,0,0,0,57.16,56.15,6,1,0,0,10,2,1,291,0,0,0 +15024,18413,33576,33575,-9,-9,2,1,0,51,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,6,0,-2,91.64528851884299,0,0,0,53,2,4,1,-9,-9,2019,3,1,6,0,0,31,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.86,13.45,5,1,0,0,10,2,1,291,0,0,0 +15025,18414,33577,33578,-9,-9,2,1,1,49,1,0,0,0,1,-9,2,1,0,5,8.969408893736945,8.704042829180372,0,1,0,-9,9,0,-4,-33.40555718930556,0,0,0,53,1,3,1,-9,-9,2019,1,1,6,0,40,33,15,1,0,1,0,18.30036795659474,18.30036795659474,0,0,0,0,0,0,0,0,0,0,6.761827640367158,0,0,0,60.02,56.42,7,1,0,0,12,5,1,359,0,0,0 +15025,18414,33578,33577,-9,-9,1,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.012883182526453,7.430154152088876,0,1,0,-9,9,0,4,39.11618957145072,0,0,0,49,1,5,1,-9,-9,2019,1,2,10,1,29,38,15,1,1,1,0,10.9375250893677,10.9375250893677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,50.99,7,1,0,0,12,5,1,359,0,0,0 +15026,18415,33579,-9,33580,-9,1,1,1,35,2,0,0,0,2,-9,2,1,0,2,0,0,0,3,0,0,0,-9,0,-1031.431291828964,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,70,15,1,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.373101979286946,0,0,0,48.53,44.13,3,1,0,0,9,1,1,184,0,0,0 +15026,18416,33580,-9,-9,-9,2,1,0,63,3,0,0,0,2,-9,2,1,0,2,7.916779336401102,7.945825571080187,5.258270614016126,3,0,0,0,-9,0,-1018.565377200831,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,29,29,15,1,5,-9,0,8.609158995537365,8.609158995537365,0,0,0,0,0,0,0,0,0,0,1.333396169791879,5.781080793631822,0,0,33.52,50.25,6,1,0,0,9,3,1,136,0,0,0 +15027,18417,33581,-9,33582,33583,5,1,0,21,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1055.190686009518,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.83,47.21,4,3,0,0,8,1,0,444,0,0,0 +15027,18418,33582,33583,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,2,7.322328314412776,7.402767413855782,0,1,0,-9,9,0,-13,-25.25084429719681,0,0,0,61,3,1,3,-9,3,2019,2,6,24,8,4,35,15,1,8,3,0,46.47368317597255,46.47368317597255,0,0,0,0,0,0,0,1,1,0,0,0,3.12362538544604,2,39.35,29.86,5,3,0,1,8,2,0,392,0,0,0 +15027,18418,33583,33582,-9,-9,6,1,1,61,1,0,0,0,3,-9,3,3,0,1,0,0,0,1,0,-9,9,0,13,13.44487295410087,0,0,0,48,2,2,1,-9,-9,2019,3,1,33,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.01,20.17,5,3,1,1,8,2,0,392,0,0,0 +15028,18419,33584,33585,-9,-9,1,1,0,58,1,0,0,0,1,-9,6,3,0,3,8.892829898404917,8.482252133469329,0,1,0,-9,37,0,0,46.8908206477671,0,0,0,58,1,4,3,2,3,2019,4,2,12,0,28,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.518587373899577,0,0,0,52.99,51.28,6,1,0,0,9,5,1,1300.5,0,0,0 +15028,18419,33585,33584,-9,-9,2,1,1,58,1,0,0,0,1,-9,4,3,0,4,0,8.830038527232272,8.92979933188307,1,0,-9,37,0,0,-101.2138203387998,0,0,0,58,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,7.79951560222951,8.882966240105734,0,0,54.2,57.49,7,1,0,0,9,5,1,1300.5,0,0,0 +15029,18420,33586,33587,-9,-9,1,1,0,24,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,1,1,-9,0,0,0,1,1,24,2,5,3,3,-9,2019,4,2,9,2,0,16,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.09,53.66,2,1,1,0,5,1,0,373.5,0,0,0 +15029,18420,33587,33586,-9,-9,2,1,1,24,1,0,0,0,2,-9,3,3,0,5,0,0,0,1,0,-9,1,-9,0,0,-9,1,0,24,2,5,3,-9,-9,2019,4,1,8,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,1,1,1,0,5,1,0,373.5,0,0,0 +15030,18421,33588,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,5,8.805154668228559,8.887488780679865,0,3,0,0,0,-9,0,-874.0014913959013,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,40,15,1,0,-9,0,20.89766095778681,20.89766095778681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,4,1,0,0,12,5,1,732,0,0,0 +15031,18422,33589,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,5.137765662709565,5.565287340515518,3,0,0,0,-9,0,-942.0075273222346,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.744373918622713,5.478065385530867,0,0,33.5,18.89,4,1,0,0,2,2,1,340,0,0,0 +15032,18423,33590,33591,-9,-9,2,1,1,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,4,3.968903889299466,0,0,0,67,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.897452671909761,0,0,0,52,48,5,1,0,0,5,2,0,986.5,0,0,0 +15032,18423,33591,33590,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,3,0,7.222021469299082,7.215788987576179,1,0,-9,8,0,-4,-26.57085629541874,0,0,0,71,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.732129114876415,0,0,40.64,52.96,6,1,0,0,5,2,0,986.5,0,0,0 +15033,18424,33592,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,4,8.829879414387126,8.77377913473512,0,3,0,0,0,-9,0,-997.5585466136886,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,41,43,15,1,0,-9,0,20.53381734382169,20.53381734382169,0,0,0,0,0,0,0,0,0,0,3.458796098793183,0,0,0,54.2,57.49,6,1,0,0,12,5,1,680,0,0,0 +15034,18425,33593,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,6.775537105979721,6.819149351162696,3,0,-9,0,1,0,-1105.216481007366,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.532263905229378,0,0,15.39,57.91,4,1,0,0,11,2,1,894,0,0,0 +15035,18426,33594,33595,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,5.43519725012662,5.233425901128077,1,0,-9,9,0,20,16.88903351250753,0,0,0,58,2,2,3,-9,-9,2019,4,2,10,0,0,0,15,4,0,3,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.415055127182689,8.273029507275671,2,44.68,34.8,6,1,0,0,5,2,1,338,0,0,0 +15035,18426,33595,33594,-9,-9,2,1,0,58,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,9,0,-20,114.8111396144546,0,0,0,78,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,48.11,17.83,5,1,0,0,5,2,1,338,0,0,0 +15035,18427,33596,-9,33595,33594,3,1,0,24,2,0,0,0,2,-9,2,1,0,4,7.918280663170835,7.623999073040544,0,3,0,0,0,-9,0,-993.6956957150769,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,47,32,15,1,0,-9,1,6.211155348561672,6.211155348561672,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.29,43.57,5,1,0,0,5,3,1,427,0,0,0 +15036,18428,33597,33598,-9,-9,1,1,1,81,1,0,0,0,2,-9,4,3,0,3,0,7.888767225970071,7.738012549932153,1,0,-9,6,0,2,-105.5248861971203,0,0,0,79,3,3,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.33559975420907,7.820013103080925,0,0,60.24,37.21,5,1,0,0,7,3,1,520,0,0,0 +15036,18428,33598,33597,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-2,-76.22989731664441,0,0,0,81,2,3,3,2,3,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.310781137960274,0,0,0,52,45,3,1,0,0,7,3,1,520,0,0,0 +15037,18429,33599,33600,-9,-9,2,1,0,49,1,0,0,0,2,-9,1,1,0,5,9.656686181637975,9.865291318267252,0,1,0,-9,15,0,-4,28.51618357086839,0,0,0,53,1,4,1,2,3,2019,1,1,6,0,20,20,15,1,0,1,0,95.99107448116034,95.99107448116034,0,0,0,0,0,0,0,0,0,0,0,0,9.713807120356689,3,62.39,56.71,7,1,0,0,2,5,1,478,0,0,0 +15037,18429,33600,33599,-9,-9,1,1,1,53,1,0,0,0,1,-9,1,1,0,4,9.478982452099785,9.869495397395532,8.382065500193869,1,0,-9,15,0,4,-37.16958572202994,0,0,0,49,2,5,1,2,2,2019,1,2,6,0,45,50,15,1,0,1,0,43.08164265032455,43.08164265032455,0,0,0,0,0,0,0,0,0,0,0,8.353628245444421,0,0,57.16,56.15,7,1,0,0,2,5,1,478,0,0,0 +15037,18430,33601,-9,33599,33600,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.428135038728505,7.238957809212626,0,3,0,0,0,-9,0,-1092.563123273336,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,15,30,15,1,1,-9,1,12.61741075580752,12.61741075580752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,2,3,1,807,0,0,0 +15037,18431,33602,-9,33599,33600,4,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.788826471968305,8.229866172194448,0,3,0,0,0,-9,0,-902.5548777236182,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,10,0,15,1,2,-9,1,31.7874572931443,31.7874572931443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,2,3,1,830,0,0,0 +15038,18432,33603,33604,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,4,8.695366869503466,8.810583346043552,0,1,0,-9,2,0,-3,-11.87107960338257,0,0,1,33,2,3,1,1,1,2019,1,2,12,1,38,38,15,1,1,1,0,19.26986731159831,19.26986731159831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,2,5,0,1034,0,0,0 +15038,18432,33604,33603,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,3,8.032196706040402,8.317201975700916,0,1,0,-9,2,0,3,-123.7101165961841,0,0,0,30,1,4,1,-9,-9,2019,1,1,8,1,38,45,15,1,1,1,0,9.124003789298678,9.124003789298678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,2,5,0,1034,0,0,0 +15039,18433,33605,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.59768292424994,8.31284757092161,0,3,0,0,0,-9,0,-739.6741077697462,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,1,37,37,15,1,1,-9,0,19.31892918736959,19.31892918736959,0,0,0,0,0,0,0,1,1,0,3.773294782230778,0,0,0,52.08,55.93,6,1,0,0,10,5,0,320,0,0,0 +15040,18434,33606,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,5,0,0,0,3,0,0,0,-9,0,-1117.282041723568,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.15977890647851,3,57.06,57.76,6,1,0,0,9,1,0,217,0,0,0 +15041,18435,33607,-9,33610,33608,5,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.193478191112,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,1,0,748.4,0,0,0 +15041,18435,33608,33610,-9,-9,1,1,1,39,1,0,3,0,3,-9,8,3,1,2,0,0,0,2,0,-9,18,0,2,0,0,0,0,37,2,2,3,3,3,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.4022272444218,2,31.44,22.39,3,1,0,0,9,1,0,748.4,0,0,0 +15041,18435,33609,-9,33610,33608,6,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.120674522379,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,1,0,748.4,0,0,0 +15041,18435,33610,33608,-9,-9,2,1,0,37,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,9,0,-2,0,0,0,1,39,3,2,3,3,3,2019,4,1,36,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,118.0940922127601,2,14.65,38.29,2,1,0,0,9,1,0,748.4,0,0,0 +15041,18435,33611,-9,33610,33608,4,1,1,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1038.753707858102,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,9,1,0,748.4,0,0,0 +15041,18436,33612,-9,33610,33608,3,1,1,20,2,0,3,0,2,0,7,2,0,3,7.559656238261145,7.541618017465059,0,3,0,0,0,-9,0,-973.5137470591188,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,14,2,31,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,2,1,0,0,9,3,0,616,0,0,0 +15042,18437,33613,-9,-9,-9,1,1,1,20,2,0,0,0,2,0,7,2,0,4,0,6.743147853486441,6.514065187901128,3,0,0,0,-9,0,-964.4744282189907,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.853754331822668,0,0,0,55.19,54.26,6,1,0,0,1,2,0,475,0,0,0 +15042,18438,33614,-9,-9,-9,3,1,1,20,2,0,0,1,2,-9,7,2,0,4,0,7.245356230732204,6.652179873494496,3,0,-9,0,-9,0,-938.2696649797706,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,23,10,0,0,15,2,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.089959263824033,0,0,0,30.53,65.61,5,1,0,0,1,2,0,224,0,0,0 +15042,18439,33615,-9,-9,-9,4,1,1,19,2,0,0,1,2,-9,7,2,0,4,0,5.54877569229294,5.753524366928307,3,0,-9,0,-9,0,-937.6287513018187,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.092972868636732,0,0,0,51.24,58.84,6,1,0,0,1,2,0,930,0,0,0 +15043,18440,33616,33617,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,59,0,-5,5.522115279751636,0,0,0,80,3,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,55.09,7,1,0,0,9,3,1,441.5,0,0,0 +15043,18440,33617,33616,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,7.875235086783887,7.770972738189125,1,0,-9,59,0,5,-75.74427308027245,0,0,0,75,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,12.20216706869512,0,0,0,0,1,1,0,2.378536365164469,7.702648391709841,0,0,52.99,51.28,7,1,0,0,9,3,1,441.5,0,0,0 +15044,18441,33618,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,3,8.606255852334943,8.609680043392059,0,3,0,0,0,-9,0,-1094.28784552349,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,38,15,1,0,-9,0,16.92325978402219,16.92325978402219,0,0,0,0,0,0,0,0,0,0,4.428677904814174,0,0,0,54.62,53.53,6,1,0,0,2,5,1,515,0,0,0 +15045,18442,33619,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,4,0,5.762219320583728,5.738242590700093,3,0,0,0,-9,0,-1091.843193153624,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,2,0,0,15,4,2,-9,0,0,0,1,0,0,8.374851325228668,2.37345228066711,0,0,1,1,0,5.788479658749125,5.633396250700033,0,0,65.12,26.79,7,1,0,0,12,2,0,418,0,0,0 +15046,18443,33620,33621,-9,-9,2,1,0,36,1,0,0,0,1,-9,2,1,0,3,8.403020465304989,8.18125989066726,0,1,0,-9,10,0,1,-78.65887107048042,0,0,1,35,1,2,1,1,1,2019,1,1,14,3,37,37,15,1,3,1,0,11.31344527087573,11.31344527087573,0,0,0,0,0,0,0,0,0,0,1.426563676211465,0,0,0,49.94,44.6,6,1,0,0,10,5,1,190,0,0,0 +15046,18443,33621,33620,-9,-9,1,1,1,35,1,0,0,0,1,-9,2,1,0,2,8.72779400814626,8.927981144371588,0,1,0,-9,10,0,-1,-77.22210692011681,0,0,0,36,1,3,1,1,1,2019,1,2,11,0,38,35,15,1,0,1,0,21.61034343742151,21.61034343742151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.37,52.14,6,1,0,0,10,5,1,190,0,0,0 +15047,18444,33622,33623,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,5.560909905245992,5.509564201932312,1,0,-9,56,0,2,-62.26544633432805,0,0,0,76,3,4,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.859583899411243,5.645303328918988,0,0,43.1,23.61,2,1,0,0,4,2,1,395,0,0,0 +15047,18444,33623,33622,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,7.117615468761112,7.245459970082504,1,0,-9,56,0,-2,40.36460670812425,0,0,0,78,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.307953845769463,7.109074861390207,0,0,56.86,50.75,6,1,0,0,4,2,1,395,0,0,0 +15048,18445,33624,33625,-9,-9,1,1,1,48,1,0,0,0,2,-9,2,1,0,4,7.959673746923194,7.554705422094058,4.496176537799654,1,0,-9,8,0,-1,50.99855133975751,0,0,0,49,2,4,1,2,2,2019,1,2,9,0,44,41,15,1,0,1,0,7.41205506038869,7.41205506038869,0,0,0,0,0,0,0,0,0,0,0,4.761612875624074,0,0,58.15,52.91,6,1,0,0,11,4,1,771.5,0,0,0 +15048,18445,33625,33624,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,8.34892921391201,8.061157367709567,0,1,0,-9,8,0,1,71.98042586038383,0,0,0,48,2,4,1,3,3,2019,1,1,12,0,33,30,15,1,0,1,0,10.47169557866219,10.47169557866219,0,0,0,0,0,0,0,0,0,0,3.9862192361196,0,0,0,57.16,56.15,6,1,0,0,11,4,1,771.5,0,0,0 +15049,18446,33626,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,7.924554756015524,7.80544553568104,3,0,0,0,-9,0,-952.4933405458208,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.247625409599108,8.095237573314026,0,0,60.05,42.65,6,1,0,0,4,3,1,90,0,0,0 +15050,18447,33627,-9,33628,33629,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1158.749725736083,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,2,0,972.5,0,0,0 +15050,18447,33628,33629,-9,-9,2,1,0,23,1,0,2,1,2,0,7,2,0,4,0,0,0,2,0,-9,2,0,-1,-61.98953726643494,-9,1,1,24,2,3,1,-9,-9,2019,3,1,8,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,2,0,972.5,0,0,0 +15050,18447,33629,33628,-9,-9,1,1,1,24,1,0,2,0,2,-9,2,1,0,3,7.583935868201817,7.299841524263184,0,2,0,-9,2,0,1,-43.15489784953258,0,1,0,23,2,4,2,2,3,2019,2,2,5,0,50,0,15,1,0,2,0,3.950214856026304,3.950214856026304,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,6,1,0,0,10,2,0,972.5,0,0,0 +15050,18447,33630,-9,33628,33629,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1068.727724483246,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,2,0,972.5,0,0,0 +15051,18448,33631,33632,-9,-9,2,1,0,28,1,1,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,5,0,0,200.13361127329,0,1,1,37,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,5,3,0,0,6,3,1,517.25,0,0,0 +15051,18448,33632,33631,-9,-9,1,1,1,37,1,1,2,0,2,-9,2,1,0,4,8.400918301210735,8.303727916660684,0,2,0,-9,5,0,9,16.11050432545592,0,0,0,28,3,4,3,-9,-9,2019,2,2,10,0,45,48,15,1,0,3,0,10.8336566645366,10.8336566645366,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,6,3,0,0,6,3,1,517.25,0,0,0 +15051,18448,33633,-9,33631,33632,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1108.339233548454,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,3,1,517.25,0,0,0 +15051,18448,33634,-9,33631,33632,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-961.8699413493576,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,3,1,517.25,0,0,0 +15052,18449,33635,-9,33637,33638,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-940.9070693355748,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,1,957.75,0,0,0 +15052,18449,33636,-9,33637,33638,4,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.081967634046,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,3,1,957.75,0,0,0 +15052,18449,33637,33638,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,1,6.965743466094809,7.075618520363125,0,2,0,-9,6,0,-1,-17.232530518547,0,0,1,35,2,3,1,2,3,2019,1,2,29,11,20,22,15,1,11,1,0,6.369236387672482,6.369236387672482,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.02,13.24,4,1,0,0,7,3,1,957.75,0,0,0 +15052,18449,33638,33637,-9,-9,2,1,1,35,1,0,2,0,2,-9,2,1,0,3,8.302010321634034,8.138752208910773,0,2,0,-9,6,0,1,-55.20951420524695,0,0,0,34,2,1,1,2,3,2019,1,1,8,0,37,37,15,1,0,1,0,12.33736817453701,12.33736817453701,0,0,0,0,0,0,0,1,1,0,3.458067886673049,0,0,0,52,54.51,6,1,0,0,7,3,1,957.75,0,0,0 +15053,18450,33639,-9,33640,-9,2,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1030.258547954978,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,1,0,917.5,0,0,0 +15053,18450,33640,-9,-9,-9,1,1,0,20,2,0,1,0,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1006.640475855976,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,63.56,6,1,0,0,2,1,0,917.5,0,0,0 +15054,18451,33641,33642,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,9.413548679608336,9.080401640247583,0,1,0,-9,7,0,4,37.4224237743378,0,0,0,53,2,2,1,-9,-9,2019,1,1,19,8,50,45,15,1,8,1,0,29.43731719779631,29.43731719779631,0,0,0,0,0,0,0,0,0,0,3.896957338968524,0,0,0,37.53,58.25,2,1,0,0,2,5,1,579.5,0,0,0 +15054,18451,33642,33641,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,2,7.354271474438168,7.355520030443861,0,1,0,-9,32,0,-4,2.904544404123415,0,0,0,57,2,3,1,3,2,2019,1,2,10,0,21,18,15,1,0,1,0,8.076388105502611,8.076388105502611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.08,27.72,7,1,0,0,2,5,1,579.5,0,0,0 +15054,18452,33643,-9,33642,33641,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,7.733850142544273,7.770872205706762,0,3,0,0,0,-9,0,-1055.871849180215,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,0,15,1,1,-9,1,8.751401907497826,8.751401907497826,0,0,0,0,0,0,0,0,0,0,6.112050039862233,0,0,0,49,58,5,1,0,0,2,3,1,718,0,0,0 +15055,18453,33644,-9,33645,33646,3,1,0,17,2,0,0,0,2,-9,2,3,0,2,6.554156202331756,6.937214501431737,0,1,0,0,0,-9,0,-981.8560080019633,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,24,11,11,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.0962461466900711,0,0,0,37.58,55.3,5,1,0,0,12,5,1,807.3333333333334,0,0,0 +15055,18453,33645,33646,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,2,9.19219604714009,9.184028930239002,0,1,0,-9,7,0,-3,20.21507572049296,0,0,0,58,2,3,3,2,-9,2019,2,2,13,1,38,38,15,1,1,3,0,33.11526653559727,33.11526653559727,0,0,0,0,0,0,0,0,0,0,4.660371943020747,0,0,0,37.3,41.2,6,1,0,0,12,5,1,807.3333333333334,0,0,0 +15055,18453,33646,33645,-9,-9,2,1,1,58,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,7,0,3,8.882798502174927,0,0,0,55,1,2,1,2,2,2019,3,1,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.240416172252825,0,0,0,32.65,56.8,4,1,0,0,12,5,1,807.3333333333334,0,0,0 +15056,18454,33647,-9,-9,-9,1,1,0,61,2,0,0,0,1,-9,4,3,0,4,7.458740376800949,8.703436008343168,8.023657148766517,3,0,0,0,-9,0,-987.3798456187091,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.171466873649645,7.969048781027842,0,0,48.87,58.55,6,1,0,0,10,4,1,675,0,0,0 +15057,18455,33648,33649,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,8.70339217724708,8.713968738129129,0,1,0,-9,31,0,-7,-112.9958871076661,0,0,0,59,3,4,1,2,-9,2019,1,1,14,3,41,41,15,1,3,1,0,14.57300515499926,14.57300515499926,0,0,0,0,0,0,0,0,0,0,0,0,8.578187446239532,3,43.14,61.33,6,1,0,0,9,5,1,374,0,0,0 +15057,18455,33649,33648,-9,-9,1,1,1,59,1,0,0,0,3,-9,2,1,0,4,8.254881133688475,8.307322803319501,0,1,0,-9,31,0,7,-91.26344462201327,0,0,0,52,2,4,1,2,3,2019,1,2,8,0,38,38,15,1,0,1,0,14.80744649001281,14.80744649001281,0,0,0,0,0,0,0,0,0,0,.5637134173214674,0,0,0,57.16,56.15,6,1,0,0,9,5,1,374,0,0,0 +15058,18456,33650,33651,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,53,0,-7,-51.74963634378773,0,0,0,79,3,3,3,3,3,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,44.7983615769308,0,0,0,0,1,1,0,0,0,64.40052657876186,1,43.19,30.37,4,1,0,0,5,2,1,855,0,0,0 +15058,18456,33651,33650,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,7.518334133538389,7.368962612545664,1,0,-9,54,0,7,130.5748454773154,0,0,0,72,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.599744520085634,7.266867197168241,123.6983654383173,1,48.92,35.42,7,1,0,0,5,2,1,855,0,0,0 +15059,18457,33652,33654,-9,-9,2,1,1,48,1,0,1,0,3,-9,2,1,0,4,8.933614682365871,8.612396047734684,0,2,0,-9,27,0,5,46.99521819897966,0,0,0,43,2,3,3,2,3,2019,2,1,12,1,42,42,15,1,1,3,0,13.25666375636827,13.25666375636827,0,0,0,0,0,0,0,1,1,0,2.046952195172855,0,8.819713789406938,3,51.83,57.2,6,1,0,0,9,4,1,290.3333333333333,0,0,0 +15059,18457,33653,-9,33654,33652,4,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.711058654979,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,9,4,1,290.3333333333333,0,0,0 +15059,18457,33654,33652,-9,-9,1,1,0,43,1,0,1,0,2,-9,6,3,0,3,0,0,0,2,0,-9,27,0,-5,43.19267776653943,0,0,1,48,3,4,1,3,3,2019,3,2,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,53.79,6,1,0,0,9,4,1,290.3333333333333,0,0,0 +15059,18458,33655,-9,33654,33652,3,1,1,19,2,0,1,0,2,1,1,1,0,4,8.010717637298072,7.686305184024185,0,3,0,0,0,-9,0,-963.4912411610575,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,35,0,15,1,0,-9,1,8.434975555488425,8.434975555488425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,3,1,290,0,0,0 +15060,18459,33656,33657,-9,-9,1,1,1,61,1,0,0,0,3,-9,2,1,0,3,7.656396752638046,8.055316700940978,7.503145300049355,1,0,-9,41,0,3,74.42544652900646,0,0,0,58,2,4,1,3,3,2019,1,2,11,0,40,40,15,1,0,1,0,6.030395816718187,6.030395816718187,0,0,0,0,0,0,0,0,0,0,0,7.293714148712497,0,0,51.82,44.93,2,1,0,0,5,4,1,578,0,0,0 +15060,18459,33657,33656,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.436932427902908,7.325483481407997,0,1,0,-9,41,0,-3,-16.05038572861739,0,0,0,61,3,3,1,3,2,2019,1,1,9,0,18,18,15,1,0,1,0,8.802464837749014,8.802464837749014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,7,1,0,0,5,4,1,578,0,0,0 +15061,18460,33658,33659,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,7.367076754873002,7.358874419322986,0,1,0,-9,27,0,-12,-86.37626145376503,0,0,0,64,1,2,1,1,2,2019,1,1,11,0,20,19,15,1,0,1,0,7.845723644444967,7.845723644444967,0,0,0,0,0,0,0,0,0,0,3.077553406438462,0,0,0,50.27,44.25,4,1,0,0,5,4,1,1074,0,0,0 +15061,18460,33659,33658,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,2,7.959172931667155,7.966066104853905,6.232444237041879,1,0,-9,27,0,12,38.74320795799058,0,0,0,52,2,3,1,3,2,2019,1,2,13,1,24,38,15,1,1,1,0,15.27385997824161,15.27385997824161,0,0,0,0,0,0,0,0,0,0,.2578718537177407,6.52196462584865,0,0,46.56,42.23,4,1,0,0,5,4,1,1074,0,0,0 +15062,18461,33660,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,4,0,4.099607131243362,4.13465019188241,3,0,0,0,-9,0,-1143.485074870125,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.445138023760909,4.281062646058801,0,0,51.24,58.84,6,1,0,0,5,2,1,602,0,0,0 +15063,18462,33661,33662,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,4,9.167414839622598,9.429891189712711,0,2,0,-9,14,0,4,-76.48884597629615,0,0,0,40,1,5,1,-9,-9,2019,1,2,9,0,37,37,15,1,1,1,0,30.42239461367214,30.42239461367214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,5,1,0,0,1,5,1,1124.666666666667,0,0,0 +15063,18462,33662,33661,-9,-9,2,1,0,40,1,0,1,0,1,-9,2,1,0,5,7.618084737849633,7.948017393522526,0,2,0,-9,6,0,-4,37.37408556938232,0,0,1,44,2,4,1,2,2,2019,1,1,2,0,21,21,15,1,0,1,0,16.21859308824685,16.21859308824685,0,0,0,0,0,0,0,0,0,0,2.830760813861795,0,0,0,59.58,42.78,7,1,0,0,1,5,1,1124.666666666667,0,0,0 +15063,18462,33663,-9,33662,33661,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.1701917252105,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,1,5,1,1124.666666666667,0,0,0 +15064,18463,33664,33665,-9,-9,2,1,0,38,1,0,1,0,2,-9,2,1,0,2,7.729427379017005,7.954028374205733,0,2,0,-9,10,0,-4,-6.182904311858647,0,0,1,42,2,2,1,3,-9,2019,1,1,12,2,29,35,15,1,2,1,0,10.2540198116413,10.2540198116413,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.92,51.7,3,2,0,0,11,3,0,2075,0,0,0 +15064,18463,33665,33664,-9,-9,1,1,1,42,1,0,1,0,2,-9,2,1,0,2,7.782149682792978,7.884730224706493,0,2,0,-9,10,0,4,40.92726224432879,0,0,0,38,2,2,1,2,2,2019,1,2,11,1,40,0,15,1,1,1,0,7.59686596395119,7.59686596395119,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.49,48.49,6,1,0,0,11,3,0,2075,0,0,0 +15065,18464,33666,-9,-9,-9,1,1,1,69,2,0,0,0,2,-9,4,3,0,2,0,7.566361490262232,7.696729224238966,3,0,0,0,-9,0,-1095.803634731834,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,1.838381401691656,0,0,0,1,1,0,0,7.395935820660036,0,0,65.97,26.73,4,1,0,0,7,3,0,980,0,0,0 +15066,18465,33667,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,4,7.407542726604015,7.344297513502404,0,3,0,-9,0,-9,0,-1049.802451865881,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,6,3,0,0,4,3,1,478,0,0,0 +15067,18466,33668,33669,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,3,8.705878246647698,8.728972676836488,0,1,0,-9,31,0,3,41.31190127586612,0,0,0,52,1,3,1,3,3,2019,1,2,7,1,48,40,15,1,1,1,0,10.67610674325636,10.67610674325636,0,0,0,0,0,0,0,0,0,0,6.773221944329345,0,0,0,49,49,6,3,0,0,8,4,1,549.5,0,0,0 +15067,18466,33669,33668,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,3,0,0,0,1,0,-9,10,0,-3,19.33498485941308,0,0,0,55,2,3,1,-9,-9,2019,1,1,6,0,0,37,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.23,43.51,6,3,0,0,8,4,1,549.5,0,0,0 +15067,18467,33670,-9,33669,33668,3,1,1,27,2,0,0,0,2,-9,2,1,0,3,8.914884071505197,8.769987962069944,0,3,0,0,0,-9,0,-1144.187523903528,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,40,40,15,1,2,-9,1,15.81407426680722,15.81407426680722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.79,50.48,4,3,0,0,8,5,1,361,0,0,0 +15068,18468,33671,33672,-9,-9,1,1,1,52,1,0,1,0,1,-9,2,1,0,4,8.819821181376785,9.129061786052182,0,2,0,-9,30,0,1,-106.4699803473906,0,0,0,51,1,2,1,1,1,2019,1,2,10,0,42,42,15,1,0,1,0,25.02624969184857,25.02624969184857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,6,1,0,0,8,5,1,355,0,0,0 +15068,18468,33672,33671,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,2,9.109927274570207,9.260493948025246,0,2,0,-9,30,0,-1,138.9888260652521,0,0,0,52,1,4,1,3,2,2019,1,1,11,2,53,12,15,1,2,1,0,23.4421847581979,23.4421847581979,0,0,0,0,0,0,0,0,0,0,0,0,3.809277687345286,3,53.33,30.11,5,3,0,0,8,5,1,355,0,0,0 +15068,18469,33673,-9,33672,33671,3,1,1,20,2,0,1,0,2,-9,2,1,0,4,6.523430655664232,6.146480359203063,0,3,0,0,0,-9,0,-843.806370013919,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,18,6,9,17,15,1,6,-9,1,6.171199666496777,6.171199666496777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.26,61.9,4,2,0,0,8,2,1,252,0,0,0 +15069,18470,33674,33675,-9,-9,2,1,1,45,1,0,1,0,3,-9,1,1,0,4,0,0,0,2,0,-9,29,0,0,0,0,0,0,45,2,4,3,3,3,2019,2,1,9,0,30,24,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,.4933417941230704,3,51,56,5,3,0,1,8,1,0,306,0,0,0 +15069,18470,33675,33674,-9,-9,1,1,0,45,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,29,0,0,0,0,0,0,45,3,4,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.94964542592439,3,49,55,6,3,0,1,8,1,0,306,0,0,0 +15069,18471,33676,-9,33675,33674,4,1,0,24,2,0,1,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-996.5815519713359,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,2,0,42,15,1,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.64,53.56,5,3,0,0,8,1,0,1050,0,0,0 +15070,18472,33677,33678,-9,-9,1,1,1,43,1,0,1,0,1,-9,2,1,0,5,8.847473471903882,8.96611747372395,0,2,0,-9,15,0,2,-6.441320878866157,0,0,0,41,1,4,1,2,2,2019,1,2,6,0,36,50,15,1,0,1,0,22.5686180790507,22.5686180790507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.96,55.09,7,1,0,0,8,5,1,6608.333333333333,0,0,0 +15070,18472,33678,33677,-9,-9,2,1,0,41,1,0,1,0,1,-9,2,1,0,4,8.376242852797105,8.277189275313484,0,2,0,-9,8,0,-2,79.48376893220056,0,0,1,43,1,5,1,2,2,2019,1,1,6,0,35,35,15,1,0,1,0,16.57095168336282,16.57095168336282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,3,0,0,8,5,1,6608.333333333333,0,0,0 +15070,18472,33679,-9,33678,33677,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.5014040285317,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,2,0,0,8,5,1,6608.333333333333,0,0,0 +15071,18473,33680,33681,-9,-9,1,1,0,58,1,0,1,0,1,-9,2,1,0,4,1.188974515156092,1.50080090196334,0,2,0,-9,11,0,1,-119.0888441316559,0,0,0,57,2,4,1,2,2,2019,1,2,12,0,7,7,15,1,0,1,0,.0533720743679892,.0533720743679892,0,0,0,0,0,0,0,1,1,0,4.695047982515222,0,0,0,57.16,56.15,6,1,0,0,9,4,1,1120.333333333333,0,0,0 +15071,18473,33681,33680,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,4,8.704440493712909,8.740000023468362,0,2,0,-9,11,0,-1,69.2972288461217,0,0,0,58,1,4,1,-9,-9,2019,1,1,12,0,45,42,15,1,0,1,0,17.47494441829602,17.47494441829602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,9,4,1,1120.333333333333,0,0,0 +15071,18473,33682,-9,33680,33681,3,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1099.330464695886,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,9,4,1,1120.333333333333,0,0,0 +15072,18474,33683,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,6.014427721642953,6.278461010447466,3,0,0,0,-9,0,-948.1955600895656,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,.4007308390738552,6.176683032445182,0,0,39.74,26.56,6,1,0,0,11,2,1,164,0,0,0 +15073,18475,33684,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,2,0,7.667745221181163,7.882960987320092,3,0,0,0,-9,0,-1039.466475005869,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,25.51655028982361,0,0,1,1,0,7.468707831350635,0,0,0,44.17,19.58,2,1,0,0,5,3,1,860,0,0,0 +15073,18476,33685,-9,33684,-9,2,1,1,66,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1047.331899969793,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,1,0,0,1,0,0,0,0,0,0,1,1,0,6.932913216112524,0,44.80144272900476,3,43.6,40.88,4,1,0,0,5,1,1,180,0,0,0 +15074,18477,33686,-9,-9,-9,1,1,0,45,2,0,1,0,3,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-958.1123155046736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.01,43.31,2,1,0,0,12,2,0,440,0,0,0 +15074,18477,33687,-9,33686,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-940.8801933660941,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,2,0,440,0,0,0 +15075,18478,33688,-9,33693,33692,5,1,1,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.7148546346372,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,9,3,0,545.3333333333334,0,0,0 +15075,18478,33689,-9,33693,33692,3,1,0,10,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1054.11231250148,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40,56,5,1,0,0,9,3,0,545.3333333333334,0,0,0 +15075,18478,33690,-9,33693,33692,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.9205951279943,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,9,3,0,545.3333333333334,0,0,0 +15075,18478,33691,-9,33693,33692,2,1,0,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1028.307117973884,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,5,1,0,0,9,3,0,545.3333333333334,0,0,0 +15075,18478,33692,33693,-9,-9,4,1,1,40,1,0,4,0,2,-9,1,1,0,4,8.251969225180906,8.25304792704139,0,2,0,-9,9,0,3,-88.76531592704512,0,0,0,37,2,1,3,-9,-9,2019,2,1,10,0,60,55,15,1,1,3,0,8.164159481839771,8.164159481839771,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,5,1,0,0,9,3,0,545.3333333333334,0,0,0 +15075,18478,33693,33692,-9,-9,1,1,0,37,1,0,4,0,2,-9,6,3,0,1,0,0,0,2,0,-9,9,0,-3,141.4469799361816,0,0,1,40,2,4,1,2,3,2019,3,4,23,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,9.169755348898811,3,41.74,27.13,3,1,0,1,9,3,0,545.3333333333334,0,0,0 +15076,18479,33694,-9,-9,-9,1,1,0,54,3,0,0,0,1,-9,97,3,0,4,0,0,0,3,0,0,0,-9,0,-1044.78418940141,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,35,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,2,1,1,789,0,0,0 +15077,18480,33695,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,7,2,0,2,0,7.62800322289768,7.342002127911526,3,0,0,0,-9,0,-822.3743205297769,1,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.660133966935298,0,0,0,48.94,30.67,6,1,0,0,6,3,1,198,0,0,0 +15077,18481,33696,-9,33695,-9,2,1,0,19,2,0,0,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1040.808935930565,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,6,1,1,298,0,0,0 +15078,18482,33697,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,7.885567344684129,8.129739000894181,0,3,0,0,0,-9,0,-1028.537336214909,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,34,41,15,1,0,-9,0,10.19264598659101,10.19264598659101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,6,1,0,0,9,4,0,1371,0,0,0 +15079,18483,33698,-9,-9,-9,1,1,1,27,2,0,0,0,2,-9,2,1,0,4,8.048323759883067,8.263270470577023,0,3,0,-9,0,-9,0,-925.840656157222,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,11,3,38,0,15,1,3,-9,0,13.06878084520467,13.06878084520467,0,0,0,0,0,0,0,1,1,0,3.193119839562105,0,0,0,58.15,52.91,6,1,0,0,12,4,1,818,0,0,0 +15080,18484,33699,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,2,7.546126913083484,7.268060465843475,0,3,0,-9,0,-9,0,-1047.258596084854,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,19,0,15,1,0,-9,0,12.38518624785134,12.38518624785134,0,0,0,0,0,0,0,1,1,0,4.000798777816186,0,78.69436708011919,3,64.40000000000001,25.94,4,1,0,0,6,3,0,408,0,0,0 +15080,18485,33700,-9,-9,-9,2,1,1,49,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,-9,0,-9,0,-963.535184557164,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.46,45.88,4,1,0,0,6,1,0,330,0,0,0 +15081,18486,33701,33702,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,5.236096059958506,5.182421197664741,1,0,-9,50,0,-1,-22.20699879120922,0,0,0,71,2,3,3,3,3,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,17.15103338048183,0,0,0,0,1,1,0,0,5.080744270559214,0,0,40.61,26.05,5,1,0,0,13,1,1,1220.5,0,0,0 +15081,18486,33702,33701,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,50,0,1,-60.11088250086986,0,0,0,70,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,47,6,1,0,0,13,1,1,1220.5,0,0,0 +15082,18487,33703,-9,-9,33704,4,1,1,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-1051.124410120407,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,4,3,1,520.5,0,0,0 +15082,18487,33704,-9,-9,-9,1,1,1,36,2,0,1,0,2,-9,2,1,0,2,7.795624133157611,7.495762430669228,0,3,0,0,0,-9,0,-889.2202935328329,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,30,28,15,1,2,-9,1,7.67749313058516,7.67749313058516,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,38.38,3,1,0,0,4,3,1,520.5,0,0,0 +15083,18488,33705,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,2,8.25385506933765,8.62843658044755,0,3,0,0,0,-9,0,-975.7710452344074,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,18,7,60,50,15,1,7,-9,0,7.227277976662462,7.227277976662462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,25.97,3,1,0,0,4,4,0,415,0,0,0 +15084,18489,33706,33707,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,3,8.419345069608875,8.142643929799105,0,1,0,-9,41,0,0,2.705402571241462,0,0,0,61,2,2,1,3,2,2019,1,1,9,0,12,15,15,1,0,1,0,35.90703641623369,35.90703641623369,0,0,0,0,0,0,0,0,0,0,4.836235515060752,0,0,0,58.07,46.29,6,1,0,0,4,5,1,1520,0,0,0 +15084,18489,33707,33706,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,2,8.468778232061704,8.46841650331752,6.525076802279491,1,0,-9,41,0,0,66.72251300864741,0,0,0,61,1,3,1,3,3,2019,1,2,7,0,70,60,15,1,0,1,0,7.20024004281898,7.20024004281898,0,0,0,0,0,0,0,0,0,0,6.216677099370735,6.603065014605066,0,0,57.76,30.58,7,1,0,0,4,5,1,1520,0,0,0 +15085,18490,33708,33709,-9,-9,2,1,1,29,1,0,0,0,2,-9,2,1,0,5,9.009246022354363,9.232239911068771,0,1,0,-9,4,0,2,-8.780601323969075,0,1,0,27,2,4,1,-9,-9,2019,1,1,2,0,48,60,15,1,0,1,0,20.23148302339622,20.23148302339622,0,0,0,0,0,0,0,0,0,0,6.190845834608042,0,0,0,48.77,60.16,6,1,0,0,5,5,1,951,0,0,0 +15085,18490,33709,33708,-9,-9,1,1,0,27,1,0,0,0,2,-9,1,1,0,4,9.424008217146676,9.571662354442728,0,1,0,-9,4,0,-2,63.93860888642017,0,1,1,29,2,5,1,3,-9,2019,1,2,7,0,38,12,15,1,0,1,0,36.56198597915568,36.56198597915568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,5,1,951,0,0,0 +15086,18491,33710,33711,-9,-9,1,1,0,36,1,0,0,0,2,-9,1,1,0,4,7.96659281165909,7.773833942270323,0,1,0,-9,4,0,3,-12.39430772153594,0,0,1,33,1,5,1,-9,-9,2019,1,2,11,0,40,30,15,1,0,1,0,9.544636369428234,9.544636369428234,0,0,0,0,0,0,0,0,0,0,2.03371383017264,0,0,0,51.83,57.2,6,1,0,0,1,5,1,519,0,0,0 +15086,18491,33711,33710,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,5,9.257667721769497,9.283495054901771,0,1,0,-9,4,0,-3,13.01657385829504,0,0,0,36,2,4,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,27.940574575702,27.940574575702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,61.66,6,1,0,0,1,5,1,519,0,0,0 +15087,18492,33712,33713,-9,-9,1,1,1,61,1,0,1,0,2,-9,2,1,0,3,8.847238493255691,8.734798673602311,0,2,0,-9,21,0,3,-125.4181352044937,0,0,0,58,2,3,1,3,3,2019,1,2,5,0,40,40,15,1,0,1,0,16.69422488008191,16.69422488008191,0,0,0,0,0,0,0,1,1,0,4.357421965848882,0,0,0,57.33,53.46,6,1,0,0,10,5,1,1291.333333333333,0,0,0 +15087,18492,33713,33712,-9,-9,2,1,0,58,1,0,1,0,2,-9,2,1,0,3,8.262827596127027,8.392056003651714,0,2,0,-9,9,0,-3,-7.915262028492851,0,0,0,61,2,3,1,-9,-9,2019,1,1,7,0,37,38,15,1,0,1,0,12.28921897616477,12.28921897616477,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,6,1,0,0,10,5,1,1291.333333333333,0,0,0 +15087,18492,33714,-9,33713,33712,3,1,0,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1027.655028746691,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,10,5,1,1291.333333333333,0,0,0 +15088,18493,33715,33716,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,5,8.710724858042251,8.350546396804093,0,1,0,-9,7,0,-1,46.06699324277258,0,0,0,60,2,4,1,3,3,2019,1,1,7,0,55,60,15,1,0,1,0,10.40945549704999,10.40945549704999,0,0,0,0,0,0,0,0,0,0,1.844472628432519,0,0,0,67.33,43.48,6,1,0,0,9,5,1,468,0,0,0 +15088,18493,33716,33715,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,4,8.302872784106814,8.36798243471498,0,1,0,-9,37,0,1,98.08968198718081,0,0,0,59,2,5,1,3,3,2019,1,2,13,1,36,36,15,1,1,1,0,14.24409772528066,14.24409772528066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,5,1,0,1,9,5,1,468,0,0,0 +15089,18494,33717,33719,-9,-9,2,1,0,40,1,0,1,0,1,-9,2,1,0,4,8.403101988438529,8.140538297983028,0,2,0,-9,6,0,1,-13.15040265157493,0,0,1,39,1,4,3,-9,-9,2019,2,1,9,1,30,30,15,1,1,3,0,12.28733730883024,12.28733730883024,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.02,42.1,6,1,0,0,9,3,1,577.3333333333334,0,0,0 +15089,18494,33718,-9,33717,33719,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1003.961918811159,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,577.3333333333334,0,0,0 +15089,18494,33719,33717,-9,-9,1,1,1,39,1,0,1,0,1,-9,3,3,0,4,0,0,0,2,0,-9,6,0,-1,-79.4183824935333,0,0,0,40,1,4,1,-9,2,2019,3,2,18,6,0,45,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.884974184457503,0,0,0,49.27,56.95,3,1,1,1,9,3,1,577.3333333333334,0,0,0 +15090,18495,33720,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,3,0,8.976935973855335,8.872798436234085,3,0,0,0,-9,0,-1015.01285841755,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.445752110749588,9.142927322044764,0,0,52.86,35.26,2,1,0,0,2,5,1,805,0,0,0 +15091,18496,33721,33722,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,4.384111454407409,4.843750873525672,1,0,-9,48,0,-4,114.8321383891602,0,0,0,70,1,4,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.619912098908093,5.06795962774511,0,0,51.83,57.2,6,1,0,0,12,3,1,649.5,0,0,0 +15091,18496,33722,33721,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,4,0,8.078313236185741,8.087556689822479,1,0,-9,48,0,4,106.4321087389037,0,0,0,66,3,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.246409632069179,8.423861814803926,0,0,51.83,57.2,6,1,0,0,12,3,1,649.5,0,0,0 +15092,18497,33723,-9,-9,-9,2,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.801645650118002,7.830787837233674,0,3,0,0,0,-9,0,-930.3305904764983,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,41,45,15,1,3,-9,1,6.039421626955257,6.039421626955257,0,0,0,0,0,0,0,0,0,0,2.748230706205162,0,0,0,25.16,64.40000000000001,5,1,0,0,9,3,1,388,0,0,0 +15093,18498,33724,33725,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,7.040492366952003,7.478045994428026,1,0,-9,51,0,1,179.3602815685911,0,0,0,65,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.505469940752771,7.299164672704379,0,0,57.16,56.15,6,1,0,0,10,2,1,619.5,0,0,0 +15093,18498,33725,33724,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,51,0,-1,-9.340749257423566,0,0,0,66,3,4,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.09,45.26,5,1,0,0,10,2,1,619.5,0,0,0 +15094,18499,33726,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,2,1,0,4,9.243353291317344,9.084625176440355,0,3,0,0,0,-9,0,-1125.971218649413,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,42,42,15,1,3,-9,0,29.62434006174348,29.62434006174348,0,0,0,0,0,0,0,0,0,0,7.657840332863277,0,0,0,43.67,61.06,4,2,0,0,8,5,1,779,0,0,0 +15095,18500,33727,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,2,0,8.04230834272796,8.197467312830042,3,0,0,0,-9,0,-1040.963162802639,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.343065477138243,8.282749275447268,0,0,52.34,33.01,6,1,0,0,9,4,1,1588,0,0,0 +15096,18501,33728,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,5,6.9368250644468,7.420505466172632,0,3,0,-9,0,-9,0,-1018.413113437955,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,26,0,15,1,0,-9,0,5.244015005661159,5.244015005661159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,1,1,0,0,10,2,0,619,0,0,0 +15097,18502,33729,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-871.7188744371315,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.29,30.35,5,1,0,0,12,1,0,649,0,0,0 +15098,18503,33730,33731,-9,-9,1,1,1,73,1,0,0,0,2,-9,2,1,0,4,0,9.01869910324046,8.589695622001088,1,0,-9,41,-9,1,-15.29149871672123,-9,0,0,72,2,3,3,3,3,2019,2,2,8,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.595576111817244,8.574224841286771,0,0,62.02,36.04,7,1,0,0,4,4,1,502,0,0,0 +15098,18503,33731,33730,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,41,-9,-1,173.1481196172356,-9,0,0,73,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,51.84,7,1,0,0,4,4,1,502,0,0,0 +15099,18504,33732,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,3,3,0,3,0,8.095384093421726,8.056356550991161,3,0,0,0,-9,0,-1047.697109522396,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.276720214032689,0,0,57.73,51.86,6,1,1,0,13,4,1,582,0,0,0 +15100,18505,33733,33734,-9,-9,2,1,1,58,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,14,0,8,19.96103567279469,0,0,0,50,2,2,3,3,3,2019,4,1,11,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,20.1,5,1,0,0,12,2,0,1264,0,0,0 +15100,18505,33734,33733,-9,-9,1,1,0,50,1,0,0,0,2,-9,8,3,1,2,0,4.556714896655608,4.702478108413419,1,0,-9,14,0,-8,-112.090385345453,0,0,0,58,2,2,3,-9,-9,2019,4,2,12,1,0,44,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,4.23251869954155,4.511944422729059,25.11108891782637,1,61.29,32.81,5,1,0,0,12,2,0,1264,0,0,0 +15101,18506,33735,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,4,0,6.577995361292426,6.996673935470961,3,0,0,0,-9,0,-995.6390105091534,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.001992070317169,0,0,47.76,52.08,7,1,0,0,9,2,1,649,0,0,0 +15101,18507,33736,33737,33735,-9,2,1,1,50,1,0,0,0,3,-9,2,1,0,4,8.626306078602783,9.194180235931569,0,1,0,-9,2,0,0,16.50409228448062,0,0,0,50,2,5,1,3,-9,2019,1,3,8,0,44,37,15,1,0,1,0,13.72255492629113,13.72255492629113,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,55.31,6,1,0,0,9,5,1,275,0,0,0 +15101,18507,33737,33736,-9,-9,3,1,0,50,1,0,0,0,2,-9,2,1,0,5,8.331630075037662,8.137193574970192,0,1,0,-9,2,0,0,-30.70264569357214,0,0,0,50,3,4,1,-9,-9,2019,1,2,10,0,39,37,15,1,0,1,0,12.23228924312439,12.23228924312439,0,0,0,0,0,0,0,1,1,0,1.050062566535213,0,0,0,57.06,57.76,6,1,0,0,9,5,1,275,0,0,0 +15102,18508,33738,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,2,7.551671053424669,7.821643137122883,0,3,0,0,0,-9,0,-1036.289467903294,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,35,35,15,1,2,-9,0,10.32316509228224,10.32316509228224,0,0,0,0,0,0,0,0,0,0,6.840448892533204,0,0,0,44.64,41.81,1,2,0,0,5,4,0,90,0,0,0 +15103,18509,33739,-9,-9,-9,1,1,0,89,3,0,0,0,3,-9,4,3,0,2,0,6.684165942459124,6.847111578944893,3,0,0,0,-9,0,-970.3068032627289,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,3,0,0,15,4,3,-9,0,0,0,1,.840376700184607,0,0,5.158884000288941,0,37.52383668502954,1,1,0,2.122469170129727,6.927377393625581,0,0,47.53,26.7,5,1,0,0,13,2,0,270,0,0,0 +15104,18510,33740,-9,-9,-9,1,1,1,86,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-960.8795434557758,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,2.93624294529476,0,1,1,0,0,0,0,0,55,45,6,1,0,0,4,1,0,689,0,0,0 +15105,18511,33741,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,4,0,7.195815595248302,6.975237444102667,3,0,-9,0,-9,0,-1045.390635765203,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.57275344445508,6.9534871097857,0,0,55.19,54.26,6,1,0,0,8,3,1,734,0,0,0 +15106,18512,33742,33743,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,5,8.247193026727695,8.193892537038289,0,1,0,-9,8,0,-1,-53.49814072454974,0,0,0,48,3,4,1,2,3,2019,1,2,6,0,42,41,15,1,0,1,0,8.723502506098276,8.723502506098276,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,1,1,0,0,13,4,1,855,0,0,0 +15106,18512,33743,33742,-9,-9,2,1,0,48,1,0,0,0,3,-9,2,1,0,4,7.025300896124805,6.906657826925769,0,1,0,-9,8,0,1,-1.040573427556133,0,0,0,47,2,5,1,3,3,2019,1,1,6,0,10,10,15,1,0,1,0,11.85392399323479,11.85392399323479,0,0,0,0,0,0,0,1,1,0,0,0,35.22472583370616,3,57.16,56.15,2,1,0,0,13,4,1,855,0,0,0 +15107,18513,33744,33745,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,5,8.833076132112515,8.935170184749579,0,1,0,-9,6,0,-1,-6.140647375727379,0,0,0,53,2,4,1,3,2,2019,1,2,10,1,44,42,15,1,1,1,0,14.38856692030364,14.38856692030364,0,0,0,0,0,0,0,0,0,0,8.078934052697797,0,0,0,54.1,59.11,6,1,0,0,7,5,1,698.5,0,0,0 +15107,18513,33745,33744,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.420992315568553,8.30273009727177,0,1,0,-9,6,0,1,-72.15867771078844,0,0,0,52,2,5,1,-9,-9,2019,1,1,13,1,42,42,15,1,1,1,0,11.95384360684289,11.95384360684289,0,0,0,0,0,0,0,0,0,0,7.319103398264392,0,0,0,50.46,53.68,6,1,0,0,7,5,1,698.5,0,0,0 +15108,18514,33746,-9,33747,-9,1,1,0,66,2,0,0,0,3,-9,4,3,0,2,0,5.901320476168351,5.902846039691452,3,0,0,0,-9,0,-903.4744771264335,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,20,9,0,0,15,4,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,6.107357043767249,115.8270292332593,3,43.22,40.09,4,4,0,0,8,2,0,1497,0,0,0 +15108,18515,33747,-9,-9,-9,2,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1125.559110960396,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,4,0,0,8,1,0,1124,0,0,0 +15109,18516,33748,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,1,1,0,3,9.374411690262161,9.062781808901198,0,3,0,0,0,-9,0,-1115.986473255834,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,42,45,15,1,0,-9,0,28.76981456690312,28.76981456690312,0,0,0,0,0,0,0,1,1,0,3.114738999597986,0,.9083852943156283,3,58.32,50.22,6,1,0,0,11,5,1,666,0,0,0 +15110,18517,33749,33750,-9,-9,2,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,5.894416122149904,5.773765852672923,1,0,-9,6,0,3,-28.64346921395035,0,0,0,67,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.016217834876497,8.437963748738783,1,52.93,52.64,6,1,0,0,6,2,1,573,0,0,0 +15110,18517,33750,33749,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,2,0,4.200132777476261,3.78992262740696,1,0,-9,6,0,-3,-43.67761826653761,0,0,0,70,3,3,3,3,3,2019,4,2,20,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.01169207941469,4.060768976393706,0,0,29.28,39.61,7,1,0,0,6,2,1,573,0,0,0 +15111,18518,33751,33752,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,4,9.29427940828954,9.337158045083937,0,1,0,-9,2,0,1,116.2902816675986,0,1,1,24,1,3,1,-9,-9,2019,1,1,8,0,58,40,15,1,0,1,0,20.90575798304754,20.90575798304754,0,0,0,0,0,0,0,0,0,0,.6055819420839386,0,0,0,51.24,58.84,6,1,0,0,9,5,1,612.5,0,0,0 +15111,18518,33752,33751,-9,-9,1,1,1,24,1,0,0,0,1,-9,2,1,0,3,8.078518007572567,8.14606856834777,0,1,0,-9,2,0,-1,-111.8204092354894,0,1,0,25,1,4,1,-9,-9,2019,1,2,19,7,41,36,15,1,7,1,0,7.66554641566722,7.66554641566722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.55,60.77,5,1,0,0,9,5,1,612.5,0,0,0 +15112,18519,33753,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-950.9706520305836,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.63193717643146,3,37.53,37.11,2,1,1,0,4,1,0,1882,0,0,0 +15113,18520,33754,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,2,8.079379106127611,8.406342805193773,0,3,0,0,0,-9,0,-910.2735505858907,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,43,15,1,0,-9,0,8.576497770160257,8.576497770160257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.66,29.67,5,1,0,0,5,4,1,711,0,0,0 +15114,18521,33755,33759,-9,-9,1,1,1,40,1,0,3,0,2,-9,2,1,0,4,8.723633590801697,8.491929467245125,0,2,0,-9,13,0,4,-29.53834970661346,0,0,0,36,2,3,1,2,2,2019,1,2,9,0,54,39,15,1,0,1,0,9.988910818070586,9.988910818070586,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,7,4,1,884.6,0,0,0 +15114,18521,33756,-9,33759,33755,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.466900220658,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,884.6,0,0,0 +15114,18521,33757,-9,33759,33755,4,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.394793784444,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,4,1,884.6,0,0,0 +15114,18521,33758,-9,33759,33755,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.837046417309,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,1,884.6,0,0,0 +15114,18521,33759,33755,-9,-9,2,1,0,36,1,0,3,0,2,-9,2,1,0,3,7.889157128199388,7.624108195519027,0,2,0,-9,13,0,-4,-55.57476708666082,0,0,1,40,2,4,1,2,2,2019,1,1,9,0,18,18,15,1,0,1,0,13.46827288490497,13.46827288490497,0,0,0,0,0,0,0,1,1,0,7.016106720364833,0,0,0,43.96,55.64,6,1,0,0,7,4,1,884.6,0,0,0 +15115,18522,33760,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,3,0,8.176042532246795,7.751029478412007,3,0,0,0,-9,0,-1067.193749976208,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.731017925744053,7.804588559537016,0,0,39.61,38.46,5,1,0,0,4,3,1,1904,0,0,0 +15116,18523,33761,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1085.854191018042,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,32,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.71,18.35,2,1,0,1,12,1,0,560,0,0,0 +15117,18524,33762,33763,-9,-9,1,1,0,56,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,37,0,-1,89.7350422992545,0,0,0,57,3,2,3,-9,-9,2019,4,2,6,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.3823922598574,1,49.75,38.05,6,1,0,0,8,2,0,461.5,0,0,0 +15117,18524,33763,33762,-9,-9,2,1,1,57,1,0,0,0,3,-9,8,3,1,2,0,6.229955689975452,6.087815010730147,1,0,-9,37,0,1,-13.80495327346756,0,0,0,56,3,2,3,2,2,2019,4,1,9,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.059729011202246,0,0,29.1,24.82,4,1,0,0,8,2,0,461.5,0,0,0 +15117,18525,33764,-9,33762,33763,3,1,0,25,2,0,0,0,2,-9,2,1,0,3,7.967422486475651,7.537008930928002,0,3,0,0,0,-9,0,-994.4970921267272,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,49,30,15,1,0,-9,1,6.044691441251511,6.044691441251511,0,0,0,0,0,0,0,1,1,0,0,0,53.58147873542797,3,55.36,51.57,5,1,0,0,8,3,0,973.5,0,0,0 +15117,18525,33765,-9,33764,-9,5,1,0,8,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-929.0050770295124,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,3,0,973.5,0,0,0 +15117,18525,33766,-9,33764,-9,6,1,1,5,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-945.1284354576911,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,8,3,0,973.5,0,0,0 +15117,18525,33767,-9,33764,-9,4,1,0,13,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-933.4300841756813,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,3,0,973.5,0,0,0 +15118,18526,33768,33769,-9,-9,2,1,0,62,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,32,0,3,0,0,0,0,59,3,1,3,-9,-9,2019,4,1,11,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.87985199425974,1,53.08,52.64,6,1,1,0,6,1,0,487,0,0,0 +15118,18526,33769,33768,-9,-9,1,1,1,59,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,31,0,-3,0,0,0,0,62,2,3,3,-9,-9,2019,4,2,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,3,3,0,0,6,1,0,487,0,0,0 +15119,18527,33770,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,3,8.755874819142672,8.695231777587164,0,3,0,0,0,-9,0,-906.0936446667328,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,50,50,15,1,0,-9,0,14.97417480331542,14.97417480331542,0,0,0,0,0,0,0,0,0,0,3.397140731651982,0,0,0,49.04,55.86,6,3,0,0,2,5,1,728,0,0,0 +15120,18528,33771,33772,-9,-9,2,1,1,32,1,0,2,0,2,-9,2,1,0,3,8.49755740118132,8.280804371299473,0,2,0,-9,7,0,1,33.88541120347762,0,0,0,31,2,3,1,2,3,2019,1,1,10,1,52,53,15,1,1,1,0,11.34870165176301,11.34870165176301,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,5,1,0,0,2,4,1,1151,0,0,0 +15120,18528,33772,33771,-9,-9,1,1,0,31,1,0,2,0,2,-9,2,1,0,3,7.57207168428437,7.435291530192029,0,2,0,-9,7,0,-1,-7.443544128624319,0,0,1,32,2,3,1,2,3,2019,1,2,14,4,25,25,15,1,4,1,0,5.872330992443767,5.872330992443767,0,0,0,0,0,0,0,1,1,0,0,0,2.524887516959894,3,39.65,56.19,4,1,0,0,2,4,1,1151,0,0,0 +15120,18528,33773,-9,33772,33771,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.970776201862,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,1,1151,0,0,0 +15120,18528,33774,-9,33772,33771,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.3162848119908,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,1,1151,0,0,0 +15121,18529,33775,-9,33776,33777,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.5665171583156,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,4,1,1298,0,0,0 +15121,18529,33776,33777,-9,-9,2,1,0,37,1,0,2,0,1,-9,6,3,0,1,7.288042088089172,7.162380771367403,0,2,0,-9,13,0,0,17.5116776408604,0,0,1,37,1,3,1,3,1,2019,3,1,10,1,15,30,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.528366847231666,0,0,0,44.49,35.51,6,3,0,0,8,4,1,1298,0,0,0 +15121,18529,33777,33776,-9,-9,1,1,1,37,1,0,2,0,1,-9,2,1,0,3,8.565372316754445,8.591076608308949,0,2,0,-9,13,0,0,-42.53031810621881,0,0,0,37,1,1,3,1,1,2019,2,2,8,1,40,40,15,1,1,3,0,11.35814339820218,11.35814339820218,0,0,0,0,0,0,0,1,1,0,4.077755789045921,0,0,0,57.33,53.46,6,3,0,0,8,4,1,1298,0,0,0 +15121,18529,33778,-9,33776,33777,3,1,1,10,2,0,2,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-993.785248787837,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,3,3,0,0,8,4,1,1298,0,0,0 +15122,18530,33779,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,4,8.692349727140341,8.783924724616355,0,3,0,-9,0,0,0,-985.0951096696332,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,6,0,38,40,15,1,0,-9,0,16.35202161815086,16.35202161815086,0,0,0,0,0,0,0,0,0,0,3.640842326779308,0,0,0,54.2,57.49,6,1,0,0,8,5,0,900,0,0,0 +15123,18531,33780,-9,33781,33782,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-942.2541166903176,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,3,0,1248.666666666667,0,0,0 +15123,18531,33781,33782,-9,-9,1,1,0,43,1,0,2,0,1,-9,1,1,0,3,7.515813256311102,7.236016203674041,0,2,0,-9,14,0,5,14.30601999975707,0,0,1,38,1,5,1,2,2,2019,1,2,5,0,37,35,15,1,0,1,0,5.464421710832839,5.464421710832839,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.9,39.41,5,3,0,0,2,3,0,1248.666666666667,0,0,0 +15123,18531,33782,33781,-9,-9,2,1,1,38,1,0,2,0,1,-9,1,1,0,5,7.592924039191155,7.306090818805654,0,2,0,-9,8,0,-5,180.8165021394012,0,0,0,43,1,3,1,-9,-9,2019,1,1,6,0,40,50,15,1,0,1,0,5.663218233075995,5.663218233075995,0,0,0,0,0,0,0,1,1,0,4.939225049593239,0,0,0,60.67,53.55,6,3,0,0,2,3,0,1248.666666666667,0,0,0 +15124,18532,33783,-9,33787,-9,4,1,0,12,2,0,4,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1029.438762593756,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,4,0,0,8,2,0,505.4,0,0,0 +15124,18532,33784,-9,33787,-9,5,1,0,8,2,0,4,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-964.8213805416874,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,2,0,505.4,0,0,0 +15124,18532,33785,-9,33787,-9,3,1,1,15,2,0,4,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1044.323494309349,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,6,1,0,0,8,2,0,505.4,0,0,0 +15124,18532,33786,-9,33787,-9,2,1,1,17,2,0,4,1,3,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1076.481128464201,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,2,0,505.4,0,0,0 +15124,18532,33787,-9,-9,-9,1,1,0,41,2,0,4,0,3,-9,2,1,0,4,7.790003290982678,7.879145997788222,0,4,0,0,0,-9,0,-984.7222400171668,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,2,0,25,23,15,1,0,-9,0,12.03712659341675,12.03712659341675,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,55.4,7,4,0,0,8,2,0,505.4,0,0,0 +15125,18533,33788,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,4,0,6.180795576677245,6.492603263334882,3,0,0,0,-9,0,-964.510691008765,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.294245425503499,6.560440155798325,0,0,65.12,31.99,6,1,0,0,11,2,1,105,0,0,0 +15126,18534,33789,-9,-9,-9,1,1,0,52,3,0,0,0,1,-9,2,1,0,5,6.993573978941896,7.889379967088174,7.110056387498246,3,0,0,0,-9,0,-1021.364833547067,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,9,9,15,1,0,-9,0,14.12383500458143,14.12383500458143,0,0,0,0,0,0,0,0,0,0,4.481586699515417,7.195850414532324,0,0,57.06,57.76,6,1,0,0,6,3,1,782,0,0,0 +15127,18535,33790,-9,-9,33791,2,1,0,6,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1108.783834399622,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,2,1,0,370,0,0,0 +15127,18535,33791,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1103.372488107743,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,17.23,2,4,0,0,2,1,0,370,0,0,0 +15128,18536,33792,-9,-9,-9,1,1,0,42,3,0,0,0,1,-9,2,1,0,1,7.719561853243364,7.811630112925279,0,3,0,0,0,-9,0,-1054.868960365306,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,23,9,19,0,15,1,9,-9,0,14.9444661512445,14.9444661512445,0,0,0,0,0,0,0,0,0,0,2.764278536238419,0,0,3,35.47,20.78,2,1,0,0,12,3,1,699,0,0,0 +15129,18537,33793,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,7.501085622075412,7.636512497803426,3,0,0,0,-9,0,-1022.477258068448,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.65331973630455,7.827085638906013,0,0,54.74,57.22,6,1,0,0,9,3,1,1540,0,0,0 +15130,18538,33794,-9,33796,33795,1,1,0,45,2,0,0,0,2,-9,2,1,0,3,7.949173906448437,7.900833286980174,0,3,0,0,0,-9,0,-1021.2311381952,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,45,38,15,1,1,-9,1,7.305378991409166,7.305378991409166,0,0,0,0,0,0,0,1,1,0,6.651330729414999,0,0,0,47.9,43.96,6,1,0,0,9,3,1,492,0,0,0 +15130,18539,33795,33796,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,5.785962399118286,5.577449582438098,1,0,-9,6,0,0,-55.16072495067833,0,0,0,71,2,5,3,3,-9,2019,4,3,2,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.903473965104026,5.709002625640554,0,0,48.85,58.56,2,1,0,0,9,2,1,1092.5,0,0,0 +15130,18539,33796,33795,-9,-9,3,1,0,71,1,0,0,0,2,-9,4,3,0,5,0,4.955532041432813,4.851180330806558,1,0,-9,6,0,0,4.574798609414696,0,0,0,71,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.166517140828695,4.840949512385104,0,0,57.8,50.59,6,1,0,0,9,2,1,1092.5,0,0,0 +15131,18540,33797,33798,-9,-9,1,1,1,29,1,0,0,0,3,-9,2,1,0,5,8.481877287982639,8.223814200217211,0,1,0,-9,2,0,0,-31.3119768244366,0,1,0,29,2,4,1,2,2,2019,1,2,8,0,43,44,15,1,0,1,0,10.42865932702038,10.42865932702038,0,0,0,0,0,0,0,0,0,0,1.020548519536268,0,0,0,57.06,57.76,6,1,0,0,6,4,0,305,0,0,0 +15131,18540,33798,33797,-9,-9,2,1,0,29,1,0,0,0,2,-9,2,1,0,4,7.277177318005353,7.582710682824825,0,1,0,-9,2,0,0,8.281882582746805,-9,1,1,29,3,5,1,-9,-9,2019,1,1,2,0,41,0,15,1,0,1,0,4.221928634147616,4.221928634147616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,6,4,0,305,0,0,0 +15132,18541,33799,33800,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,57,0,0,106.9127042583195,0,0,0,77,3,2,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,6,2,1,674.5,0,0,0 +15132,18541,33800,33799,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,2,0,6.895507168922337,6.837441796298254,1,0,-9,57,0,0,-7.532056902015056,0,0,0,77,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.126977873038579,6.627318414385469,0,0,54.3,44.26,6,1,0,0,6,2,1,674.5,0,0,0 +15133,18542,33801,33802,-9,-9,2,1,1,54,1,0,0,0,1,-9,2,1,0,3,8.949789377244352,9.030155054466661,0,1,0,-9,21,0,5,-31.48124992509563,0,0,0,49,2,4,1,2,2,2019,1,1,6,0,40,50,15,1,0,1,0,23.69718966091197,23.69718966091197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.11,55.32,6,1,0,0,9,5,1,885,0,0,0 +15133,18542,33802,33801,-9,-9,1,1,0,49,1,0,0,0,2,-9,2,1,0,4,9.056851022555065,8.88979908354381,0,1,0,-9,21,0,-5,-107.6117410014475,0,0,0,54,1,3,1,3,3,2019,1,2,8,1,44,44,15,1,1,1,0,18.53260152613075,18.53260152613075,0,0,0,0,0,0,0,0,0,0,2.278891319922101,0,0,0,48.81,47.48,6,1,0,0,9,5,1,885,0,0,0 +15133,18543,33803,-9,33802,33801,3,1,1,23,2,0,0,0,1,-9,2,1,0,5,8.121728086601165,7.961823703218988,0,3,0,0,0,-9,0,-1086.114827494661,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,0,0,43,0,15,1,0,-9,1,9.163630012217288,9.163630012217288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,6,1,0,0,9,4,1,460,0,0,0 +15133,18544,33804,-9,33802,33801,4,1,0,20,2,0,0,0,2,-9,7,2,0,4,6.765403963864005,6.620575662045344,0,3,0,0,0,-9,0,-950.4013164959736,1,1,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,30,29,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,2,1,449,0,0,0 +15134,18545,33805,33806,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,4,0,7.817274851313524,7.86170898196998,1,0,-9,43,0,-3,49.59076050277201,0,0,0,68,1,3,3,3,3,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.701531962934341,8.10395305417598,0,0,51.24,58.84,6,1,0,0,8,5,1,597.5,0,0,0 +15134,18545,33806,33805,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,8.242666870022154,8.001049995425848,1,0,-9,43,0,3,99.68136481961865,0,0,0,65,1,4,3,3,2,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.353884969015478,8.375993315645053,0,0,48.48,39.75,5,1,0,0,8,5,1,597.5,0,0,0 +15135,18546,33807,-9,33809,33808,4,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.4316460079087,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,5,1,675.3333333333334,0,0,0 +15135,18546,33808,33809,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.896413875827186,8.999577561698986,0,2,0,-9,29,0,0,132.6776268176089,0,0,0,49,2,2,1,2,2,2019,1,1,20,8,40,79,15,1,8,1,0,21.6083814271633,21.6083814271633,0,0,0,0,0,0,0,1,1,0,4.419886878819188,0,0,0,40.94,58.35,5,1,0,0,5,5,1,675.3333333333334,0,0,0 +15135,18546,33809,33808,-9,-9,1,1,0,49,1,0,1,0,2,-9,2,1,0,2,8.284841620599016,8.522563300238431,0,2,0,-9,30,0,0,10.99771013552179,0,0,0,49,2,3,1,2,3,2019,1,2,12,0,35,33,15,1,0,1,0,13.02071866316116,13.02071866316116,0,0,0,0,0,0,0,1,1,0,2.959919052430981,0,0,0,43.6,53.51,4,1,0,0,5,5,1,675.3333333333334,0,0,0 +15135,18547,33810,-9,33809,33808,3,1,0,21,2,0,1,0,2,-9,2,1,0,4,7.733906653040855,7.888239283517964,0,3,0,0,0,-9,0,-1020.386240679322,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,3,42,46,15,1,3,-9,1,7.408258109319569,7.408258109319569,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,51.02,5,1,0,0,5,4,1,245,0,0,0 +15136,18548,33811,-9,33812,33813,4,1,0,16,2,0,1,1,2,-9,7,2,0,4,5.528373883716395,5.935597735069873,0,2,0,0,0,-9,0,-970.0509153217337,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,7,2,0,438.6666666666667,0,0,0 +15136,18548,33812,33813,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,2,7.003793414084138,6.669186052179788,0,2,0,-9,27,0,0,43.92344261376516,0,0,1,42,3,2,1,3,3,2019,1,2,11,0,30,16,15,1,0,1,0,4.021477772146022,4.021477772146022,0,0,0,0,0,0,0,1,1,0,0,0,4.37741726892664,2,53.05,37.93,6,1,0,0,7,2,0,438.6666666666667,0,0,0 +15136,18548,33813,33812,-9,-9,2,1,1,42,1,0,1,0,3,-9,2,1,0,2,7.558154090581687,7.662849805108332,0,2,0,-9,27,0,0,25.71228606977316,0,0,0,42,2,2,1,2,3,2019,1,1,11,0,25,16,15,1,0,1,0,7.638877985522695,7.638877985522695,0,0,0,0,0,0,0,1,1,0,0,0,5.260882672379665,3,42.86,31.98,4,1,0,0,7,2,0,438.6666666666667,0,0,0 +15136,18549,33814,-9,33812,33813,3,1,1,19,2,0,1,0,2,1,2,1,0,3,7.104573199564683,7.271742472182097,0,3,0,0,0,-9,0,-1117.782164740024,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,25,0,15,1,0,-9,1,7.326507315085053,7.326507315085053,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,7,3,0,666,0,0,0 +15137,18550,33815,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,2,1,0,4,8.758303831868711,8.404634662560774,0,3,0,0,0,-9,0,-938.8646785217575,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,37,37,15,1,0,-9,0,12.64321705405422,12.64321705405422,0,0,0,0,0,0,0,0,0,0,0,0,2.745451218247326,3,53.37,52.37,6,1,0,1,1,5,1,79,0,0,0 +15138,18551,33816,33817,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,5,8.505587512430678,8.553899267407827,0,1,0,-9,2,0,1,81.94935651917108,0,0,0,57,2,3,1,2,2,2019,1,2,8,1,66,62,15,1,1,1,0,8.933621809214063,8.933621809214063,0,0,0,0,0,0,0,0,0,0,2.242629941713211,0,0,0,57.06,57.76,6,1,0,0,9,5,1,868.5,0,0,0 +15138,18551,33817,33816,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.83975134039842,8.14634221488755,0,1,0,-9,2,0,-1,-33.21399696385049,-9,0,0,58,2,5,1,-9,-9,2019,1,1,7,0,25,0,15,1,0,1,0,15.3875292078549,15.3875292078549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,9,5,1,868.5,0,0,0 +15139,18552,33818,33819,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,3,8.789593203094787,8.844844687548896,0,1,0,-9,33,0,0,19.33041610789112,0,0,0,53,2,3,1,2,1,2019,1,2,21,9,39,37,15,1,9,1,0,15.55510437039665,15.55510437039665,0,0,0,0,0,0,0,0,0,0,3.052524702993933,0,0,0,26.9,53.94,3,1,0,0,7,5,1,4149.5,0,0,0 +15139,18552,33819,33818,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,9.03561395278631,9.02874896650324,0,1,0,-9,8,0,0,14.45421631166111,0,0,0,53,2,3,1,1,2,2019,1,1,8,2,36,43,15,1,2,1,0,26.27235844874897,26.27235844874897,0,0,0,0,0,0,0,0,0,0,7.237507627398208,0,0,0,46.87,50.13,6,1,0,0,7,5,1,4149.5,0,0,0 +15139,18553,33820,-9,33818,33819,3,1,0,19,2,0,0,1,2,0,7,2,0,3,6.424337516582137,6.239783459612442,3.890145396495402,3,0,0,0,-9,0,-959.9838490700056,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,7,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,3.803344025622287,0,0,0,29.65,59.83,5,1,0,0,7,2,1,816,0,0,0 +15140,18554,33821,-9,-9,-9,1,1,0,91,2,0,0,0,3,-9,4,3,0,1,0,7.621655453393956,7.647581006581464,3,0,0,0,-9,0,-931.4892752223794,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,6.014466830580636,0,0,0,0,69.99009675441275,1,1,0,7.542510114163274,7.483166929528405,0,0,25.75,19.69,1,1,0,1,10,3,1,196,0,0,0 +15141,18555,33822,33823,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,4,7.623306369955474,7.691934356816438,0,1,0,-9,16,0,5,-4.762356112957447,0,0,0,54,2,3,1,2,3,2019,1,2,12,0,26,28,15,1,0,1,0,7.702139127574018,7.702139127574018,0,0,0,0,0,0,0,0,0,0,6.592013927183585,0,0,0,50.01,55.31,6,1,0,0,12,5,0,249,0,0,0 +15141,18555,33823,33822,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.733561388172848,8.62116349167475,0,1,0,-9,17,0,-5,-71.5903446839767,0,0,0,59,2,4,1,3,3,2019,1,1,13,1,42,40,15,1,1,1,0,12.65810050588382,12.65810050588382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.78,53.03,6,1,0,0,12,5,0,249,0,0,0 +15142,18556,33824,33825,-9,-9,1,1,1,51,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,7,0,-15,16.32218870651635,0,0,0,66,2,3,1,1,1,2019,3,2,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.559279962903044,0,0,0,51.49,32.64,3,2,1,0,7,3,0,2559.5,0,0,0 +15142,18556,33825,33824,-9,-9,2,1,0,66,1,0,0,0,2,-9,2,1,0,3,7.620915598892578,8.148809046070548,5.825904435299906,1,0,-9,7,0,15,48.49038838992979,0,0,0,51,2,3,3,2,3,2019,2,1,6,2,37,50,15,1,2,3,0,8.730136822680326,8.730136822680326,1,0,5.649999945059175,0,0,0,0,1,1,0,7.083297899538269,6.252403350796817,0,0,39.74,43.74,6,1,0,0,7,3,0,2559.5,0,0,0 +15143,18557,33826,-9,-9,-9,1,1,0,49,2,0,0,0,2,-9,2,1,0,3,8.436891971373216,8.566934405403133,0,1,0,-9,1,-9,-7,-65.19689041527516,-9,0,0,-9,-9,-9,-9,2,-9,2019,1,2,28,11,80,0,15,1,11,-9,0,7.501933353100652,7.501933353100652,0,0,0,0,0,0,0,0,0,0,3.24361247239746,0,0,0,24.54,42.58,2,1,0,0,9,5,1,555,0,0,0 +15143,18558,33827,-9,-9,-9,2,1,0,56,2,0,0,0,2,-9,2,1,0,3,9.280345909849173,9.033436912375755,0,1,0,-9,1,-9,7,-12.67460834064379,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,18,7,40,0,15,1,7,-9,0,19.22051839617637,19.22051839617637,0,0,0,0,0,0,0,0,0,0,6.244494941493128,0,0,0,48,48,4,1,0,0,9,5,1,829,0,0,0 +15144,18559,33828,33829,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,6.505082517356102,6.147365032891742,1,0,-9,49,0,-3,32.55637260796204,0,0,0,72,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.011188970090723,6.716428083389276,0,0,55.34,54.26,7,1,0,0,12,2,1,827,0,0,0 +15144,18559,33829,33828,-9,-9,1,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,7.241945098974067,7.112282464355968,1,0,-9,49,0,3,69.90345516469793,0,0,0,69,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.037104258742557,7.22253692215661,0,0,50.45,44.34,6,1,0,0,12,2,1,827,0,0,0 +15145,18560,33830,-9,33831,33832,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.7249265357152,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,1,0,406,0,0,0 +15145,18560,33831,33832,-9,-9,1,1,0,53,1,0,3,0,2,-9,3,3,0,2,0,0,0,2,0,-9,21,0,3,0,0,0,0,50,2,3,1,3,2,2019,3,2,24,11,0,8,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.48,38.91,4,1,1,0,2,1,0,406,0,0,0 +15145,18560,33832,33831,-9,-9,2,1,1,50,1,0,3,0,2,-9,1,1,0,3,0,0,0,2,0,-9,21,0,-3,0,0,0,0,53,2,2,3,3,2,2019,2,1,9,0,0,42,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,5,1,0,0,2,1,0,406,0,0,0 +15146,18561,33833,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,5,8.393024790703125,8.230804198174916,0,3,0,0,0,-9,0,-1001.649391237151,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,50,39,15,1,2,-9,0,10.52108152252106,10.52108152252106,0,0,0,0,0,0,0,0,0,0,3.75121379283416,0,0,0,54.1,59.11,6,1,0,0,9,4,0,877,0,0,0 +15147,18562,33834,-9,33836,33837,3,1,0,15,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-942.1440880009355,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,5,2,0,0,9,4,1,878.8,0,0,0 +15147,18562,33835,-9,33836,33837,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-932.8727510918992,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,878.8,0,0,0 +15147,18562,33836,33837,-9,-9,1,1,0,36,1,0,3,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-5,34.63750299746769,0,0,1,41,2,3,1,2,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,2,0,0,9,4,1,878.8,0,0,0 +15147,18562,33837,33836,-9,-9,2,1,1,41,1,0,3,0,2,-9,1,1,0,3,9.14620822005195,9.337911999467842,0,2,0,-9,6,0,5,40.62714130231798,0,0,0,36,2,3,3,2,2,2019,2,1,19,7,35,25,15,1,7,3,0,35.70080811590093,35.70080811590093,0,0,0,0,0,0,0,1,1,0,8.079998394941908,0,0,0,30.47,60.56,5,2,0,0,9,4,1,878.8,0,0,0 +15147,18562,33838,-9,33836,33837,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1220.549415851413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,9,4,1,878.8,0,0,0 +15148,18563,33839,33840,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,8.530457341569207,8.214229229988605,0,1,0,-9,10,0,2,54.56745541183196,0,0,0,56,2,4,1,2,2,2019,1,1,10,0,50,52,15,1,0,1,0,15.17596487173907,15.17596487173907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,2,1,0,0,11,4,1,1001.5,0,0,0 +15148,18563,33840,33839,-9,-9,1,1,1,56,1,0,0,0,2,-9,1,1,0,4,7.349757566423198,6.813503214287245,0,1,0,-9,10,0,-2,36.37623133935075,0,0,0,58,1,4,1,2,3,2019,1,2,11,0,56,90,15,1,0,1,0,2.506548997365306,2.506548997365306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,6,1,0,0,11,4,1,1001.5,0,0,0 +15148,18564,33841,-9,33839,33840,3,1,1,25,2,0,0,0,2,-9,2,1,0,5,8.685947868452853,8.536116759110287,0,3,0,0,0,-9,0,-1061.080520035171,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,60,45,15,1,0,-9,1,8.908777976595198,8.908777976595198,0,0,0,0,0,0,0,0,0,0,.7521655663201954,0,0,0,60.02,56.42,6,1,0,0,11,5,1,2247,0,0,0 +15149,18565,33842,-9,-9,-9,1,1,1,75,3,0,0,0,3,-9,4,3,0,3,0,4.596463311159695,4.466839430064818,3,0,0,0,-9,0,-1047.582987060471,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.652724330228045,4.655702399639095,0,0,54,46,5,1,0,0,8,1,1,63,0,0,0 +15150,18566,33843,33844,-9,-9,2,1,1,52,1,0,0,0,1,-9,3,3,0,2,0,0,0,1,0,-9,8,0,2,3.331319255125063,0,0,0,50,2,4,1,-9,-9,2019,3,1,22,10,0,37,15,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.13,50.01,5,1,1,0,9,4,1,306.5,0,0,0 +15150,18566,33844,33843,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,4,8.96290425371588,8.977030095018367,0,1,0,-9,25,0,-2,13.42735820879137,0,0,0,52,1,2,3,2,2,2019,2,2,7,0,42,41,15,1,0,3,0,16.00562229448741,16.00562229448741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,4,1,306.5,0,0,0 +15151,18567,33845,33846,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,6.525798735722407,6.504656096227763,1,0,-9,53,0,-3,-95.64056132096817,0,0,0,74,3,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.210618298170116,6.185742285412034,27.73570201308005,1,49.46,29.96,5,1,0,0,4,2,1,531.5,0,0,0 +15151,18567,33846,33845,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,6.942988102499617,6.771097875968953,1,0,-9,7,0,3,-64.11089917336329,0,0,0,71,2,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.66471875860701,0,0,53,46,6,1,0,0,4,2,1,531.5,0,0,0 +15152,18568,33847,-9,33849,33848,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1081.52135225472,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,11,4,1,1135,0,0,0 +15152,18568,33848,33849,-9,-9,1,1,1,42,1,0,2,0,2,-9,2,1,0,4,7.984198315064501,7.873003305850465,0,2,0,-9,8,0,5,-5.181144861791516,0,0,0,37,1,3,1,2,2,2019,1,2,12,1,37,35,15,1,1,1,0,11.22921523457811,11.22921523457811,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,11,4,1,1135,0,0,0 +15152,18568,33849,33848,-9,-9,2,1,0,37,1,0,2,0,1,-9,2,1,0,3,7.980320326785637,8.279747203420369,0,2,0,-9,8,0,-5,47.09843759897019,0,0,1,42,2,4,1,-9,-9,2019,1,1,17,5,37,20,15,1,5,1,0,11.3447913052414,11.3447913052414,0,0,0,0,0,0,0,1,1,0,.3093632164775972,0,0,0,33.18,60.48,5,2,0,0,11,4,1,1135,0,0,0 +15152,18568,33850,-9,33849,33848,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.9899205872506,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,11,4,1,1135,0,0,0 +15153,18569,33851,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,3,0,8.020190774126981,8.458235469085523,3,0,0,0,-9,0,-1097.086279117165,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,13,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.532274204539303,7.98963838077019,0,0,59.9,48.18,5,1,0,0,7,4,1,1159,0,0,0 +15154,18570,33852,-9,33853,33854,3,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-963.2784547005647,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,10,4,1,738,0,0,0 +15154,18570,33853,33854,-9,-9,1,1,0,39,1,0,1,0,3,-9,2,1,0,3,6.801272672150002,6.509435354400478,0,2,0,-9,5,0,-7,-70.10697377028342,0,0,1,46,2,4,1,2,3,2019,1,2,12,0,16,16,15,1,0,1,0,7.055263717678002,7.055263717678002,0,0,0,0,0,0,0,1,1,0,0,0,2.868919554146348,1,57.33,53.46,6,1,0,0,10,4,1,738,0,0,0 +15154,18570,33854,33853,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,4,8.677746321320797,8.642451932604507,0,2,0,-9,5,0,7,.6130265033410081,0,0,0,39,3,3,1,2,1,2019,1,1,11,0,40,50,15,1,0,1,0,19.80461184723206,19.80461184723206,0,0,0,0,0,0,0,1,1,0,2.95853242391336,0,0,0,55.71,43.27,6,1,0,0,10,4,1,738,0,0,0 +15155,18571,33855,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.41259055633161,8.462442804164944,0,3,0,0,0,-9,0,-944.836705615285,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,90,40,15,1,0,-9,0,6.029469719782808,6.029469719782808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,6,1,0,0,9,4,1,2227,0,0,0 +15156,18572,33856,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,4,9.067781870941872,9.072521852923996,0,3,0,0,0,-9,0,-1100.279922601581,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,19,7,40,40,15,1,7,-9,0,23.15472069105311,23.15472069105311,0,0,0,0,0,0,0,0,0,0,7.766260703254003,0,0,0,40.23,61.31,5,1,0,0,8,5,1,285,0,0,0 +15157,18573,33857,33858,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,5,8.248292576997326,8.320856141625327,0,2,0,-9,25,0,-5,-22.12536599383423,-9,0,0,51,2,3,1,2,2,2019,1,1,14,3,23,0,15,1,3,1,0,20.63680550555754,20.63680550555754,0,0,0,0,0,0,0,0,0,0,3.138786445280045,0,0,0,48.18,61.8,6,1,0,0,7,5,1,390,0,0,0 +15157,18573,33858,33857,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,3,9.370257459446977,8.914412508530196,0,2,0,-9,25,0,5,6.34754787169275,0,0,0,46,2,5,1,3,3,2019,1,2,10,0,53,93,15,1,0,1,0,22.57233447863345,22.57233447863345,0,0,0,0,0,0,0,0,0,0,6.229349442711894,0,0,0,56.89,48.06,6,1,0,0,7,5,1,390,0,0,0 +15158,18574,33859,33860,-9,-9,2,1,1,60,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,43,0,0,.1879325388887771,0,0,0,60,1,5,1,3,2,2019,3,1,13,2,0,42,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.986313752234818,0,0,0,49.95,56.68,6,1,0,0,10,5,1,562.5,0,0,0 +15158,18574,33860,33859,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,5,9.178928795406661,9.109342269375626,0,1,0,-9,43,0,0,-66.59738838994667,0,0,0,60,1,4,3,3,2,2019,2,2,5,0,50,50,15,1,0,4,0,16.84413545185884,16.84413545185884,0,0,0,0,0,0,0,0,0,0,2.312596282266018,0,0,0,53.86,52.34,6,1,0,0,10,5,1,562.5,0,0,0 +15159,18575,33861,33862,-9,-9,1,1,1,64,1,0,0,0,3,-9,2,1,0,4,8.094217249155614,8.419533900832615,0,1,0,-9,41,0,6,-20.84662482902441,0,0,0,58,3,2,3,3,2,2019,2,2,9,0,38,40,15,1,0,3,0,10.24969050420744,10.24969050420744,0,0,0,0,0,0,0,1,1,0,0,0,0,1,58.34,50.3,6,3,0,0,8,3,1,413,0,0,0 +15159,18575,33862,33861,-9,-9,2,1,0,58,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,41,0,-6,-17.95143310283726,0,0,0,64,3,4,1,3,2,2019,3,1,16,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.35,25.03,6,3,0,0,8,3,1,413,0,0,0 +15159,18576,33863,-9,33862,33861,3,1,0,29,3,0,0,0,2,-9,2,1,0,4,8.094809656288163,7.868746383191839,0,3,0,0,0,-9,0,-916.8197124216179,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,50,15,1,0,-9,1,11.70123424192894,11.70123424192894,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.74,44.68,6,3,0,0,8,4,1,309,0,0,0 +15159,18577,33864,-9,33862,33861,4,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.342677741218496,8.408381908971032,0,3,0,0,0,-9,0,-957.9193316674971,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,40,0,15,1,0,-9,1,13.84035288743446,13.84035288743446,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,3,0,0,8,4,1,174,0,0,0 +15160,18578,33865,33866,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,3,7.797625976996273,7.889346896902525,0,1,0,-9,15,0,16,-164.2109209852839,0,0,0,36,2,3,1,2,3,2019,1,2,13,2,40,37,15,1,2,1,0,9.459950023986719,9.459950023986719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.59,46.23,5,1,0,0,10,4,0,226,0,0,0 +15160,18578,33866,33865,-9,-9,2,1,0,36,1,0,0,0,2,-9,2,1,0,3,8.210444755282609,7.937663023982897,0,1,0,-9,15,0,-16,-18.30873106950849,0,0,1,52,2,3,1,3,2,2019,1,1,8,0,50,40,15,1,0,1,0,9.242360130522435,9.242360130522435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,10,4,0,226,0,0,0 +15161,18579,33867,33868,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,6.753451581602092,6.85755845089089,1,0,-9,54,0,5,56.69182727116404,0,0,0,74,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.809624965336783,0,0,54.2,57.49,1,1,0,0,9,2,1,674.5,0,0,0 +15161,18579,33868,33867,-9,-9,1,1,0,74,1,0,0,0,1,-9,4,3,0,4,0,0,0,1,0,-9,54,0,-5,100.3420604084603,0,0,0,79,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,2,1,674.5,0,0,0 +15162,18580,33869,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,3,8.012666578759994,8.360913460298335,0,3,0,0,0,-9,0,-986.4542316457126,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,38,38,15,1,4,-9,0,12.94096702534789,12.94096702534789,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.23,55.95,5,1,0,0,2,4,1,1345,0,0,0 +15163,18581,33870,-9,-9,-9,1,1,1,61,2,0,0,0,1,-9,4,3,0,4,0,7.82662973045153,8.31623808536323,3,0,0,0,-9,0,-902.6797454907136,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.176478419088376,7.910898465554397,23.73559081000126,3,51.77,58.57,4,1,0,0,9,3,1,586,0,0,0 +15164,18582,33871,33873,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.53212544724927,7.48930269834684,0,2,0,-9,24,0,-2,-41.13218084813413,0,0,0,47,2,5,1,3,2,2019,1,2,12,0,27,30,15,1,0,1,0,7.535490538311373,7.535490538311373,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.83,59.68,6,3,0,0,5,5,1,155.6666666666667,0,0,0 +15164,18582,33872,-9,33871,33873,5,1,0,16,2,0,1,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-997.411095446422,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,3,0,0,5,5,1,155.6666666666667,0,0,0 +15164,18582,33873,33871,-9,-9,2,1,1,47,1,0,1,0,2,-9,1,1,0,5,8.822317023944192,9.291593305532516,0,2,0,-9,24,0,2,85.4091256952795,0,0,0,45,2,4,1,-9,-9,2019,1,1,0,0,80,30,15,1,0,1,0,10.16685189947407,10.16685189947407,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,4,3,0,0,5,5,1,155.6666666666667,0,0,0 +15165,18583,33874,33875,-9,-9,1,1,0,69,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,52,0,-6,-49.45636216898227,0,0,0,75,1,2,3,2,2,2019,4,2,14,3,0,0,15,3,3,4,0,0,0,1,0,126.5102143506981,37.69951486697546,0,0,0,1,1,0,0,0,0,0,42.86,16.85,5,1,0,0,5,2,1,398,0,0,0 +15165,18583,33875,33874,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,2,0,7.471433328918675,7.625478342979395,1,0,-9,52,0,6,84.08313056710143,0,0,0,69,2,2,3,3,3,2019,4,1,12,3,0,0,15,4,3,3,0,0,0,1,0,124.7708157100043,6.342870927284435,0,0,0,1,1,0,4.698997920522142,7.775899067859936,126.814679663464,2,60.45,11.88,6,1,0,0,5,2,1,398,0,0,0 +15166,18584,33876,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-987.4932971196338,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,45.63,7,1,0,0,6,1,1,1083,0,0,0 +15167,18585,33877,33878,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,55,0,-2,-91.7707021663082,0,0,0,76,2,4,3,3,3,2019,4,1,25,10,0,0,15,4,10,4,0,0,0,1,0,122.2164862823335,0,0,0,0,1,1,0,0,0,0,0,49.03,13.18,4,1,0,0,5,2,1,2184.5,0,0,0 +15167,18585,33878,33877,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,6.294845055637331,6.247976842559771,1,0,-9,55,0,2,-19.53300531074821,0,0,0,74,3,1,3,2,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.007455059323953,6.085670840339596,123.5216617233399,1,52.94,49.78,6,1,0,0,5,2,1,2184.5,0,0,0 +15168,18586,33879,33880,-9,-9,1,1,0,90,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,7,-32.88502163431318,0,0,0,83,2,2,3,2,2,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,36.32777159388787,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,9,2,1,633,0,0,0 +15168,18586,33880,33879,-9,-9,2,1,1,83,1,0,0,0,2,-9,4,3,0,2,0,4.320840991416865,4.369601879314948,1,0,-9,8,0,-7,149.5723392321156,0,0,0,90,3,3,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.271430382890975,4.500729721070127,16.57426615967617,1,54.44,37.82,6,1,0,0,9,2,1,633,0,0,0 +15169,18587,33881,33882,-9,-9,2,1,1,34,1,0,1,0,2,-9,2,1,0,4,8.338090910680544,7.920577153413273,0,2,0,-9,5,-9,-7,-117.2703173151081,-9,0,0,41,2,2,3,-9,2,2019,2,1,10,0,39,0,15,1,1,3,0,9.451426882132504,9.451426882132504,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,5,1,0,0,5,3,0,1219,0,0,0 +15169,18587,33882,33881,-9,-9,1,1,0,41,1,0,1,0,2,-9,6,3,0,2,0,0,0,2,0,-9,5,-9,7,-20.25228561160084,-9,0,1,34,2,4,1,-9,2,2019,3,2,2,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.99,27.95,5,1,0,0,5,3,0,1219,0,0,0 +15169,18587,33883,-9,33882,33881,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1092.718009585081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,0,1219,0,0,0 +15170,18588,33884,33885,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.731718794421712,8.080388251849046,0,1,0,-9,8,0,-3,-128.3308184893401,-9,0,0,58,1,3,3,2,1,2019,2,1,10,0,24,0,15,1,1,4,0,14.23723251649755,14.23723251649755,0,0,0,0,0,0,0,0,0,0,4.73163768708481,0,0,0,52,53,6,5,0,0,7,4,1,1346,0,0,0 +15170,18588,33885,33884,-9,-9,1,1,1,58,1,0,0,0,1,-9,4,3,0,3,0,7.913286103563403,7.361744017366941,1,0,-9,8,0,3,-15.03909258572917,0,0,0,55,2,4,1,3,3,2019,3,2,8,0,0,35,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.879983623421372,0,0,54.07,49.4,5,1,0,0,7,4,1,1346,0,0,0 +15171,18589,33886,33887,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.763424460016685,8.333301352113581,0,1,0,-9,38,0,0,-42.13549065418001,0,0,0,65,2,2,3,2,2,2019,2,2,13,2,70,0,15,1,2,4,0,8.773064289309678,8.773064289309678,0,0,0,0,0,0,0,1,1,0,0,0,78.37618750360895,1,48.28,44.28,6,1,0,0,7,5,1,400,0,0,0 +15171,18589,33887,33886,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,2,5.056951093583555,7.689317563093444,7.813599166442459,1,0,-9,9,0,9,62.98513569407528,0,0,0,56,1,3,1,2,2,2019,3,1,11,2,0,0,15,4,2,1,0,0,0,1,0,72.17130304065782,4.083476800459379,2.759464085749189,0,0,1,1,0,0,7.854263324638172,0,0,50.62,27.15,3,1,0,0,7,5,1,400,0,0,0 +15172,18590,33888,-9,-9,-9,1,1,1,26,2,0,0,0,3,-9,2,1,0,4,6.967074484351226,6.808950975594904,0,3,0,0,0,-9,0,-991.1544530672643,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,20,0,15,1,1,-9,0,5.794587455352244,5.794587455352244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,5,1,0,1,11,2,0,721,0,0,0 +15173,18591,33889,33890,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.242669477970571,8.01601855117956,0,1,0,-9,3,0,0,62.8209287418631,0,0,0,57,2,4,1,-9,-9,2019,1,1,9,0,35,36,15,1,0,1,0,11.97006442095268,11.97006442095268,0,0,0,0,0,0,0,0,0,0,1.384812704445,0,0,0,54,54,6,1,0,0,5,4,1,404.5,0,0,0 +15173,18591,33890,33889,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,7.80129453404396,8.102237041406472,0,1,0,-9,5,0,0,-119.3688482324551,0,0,0,57,2,4,1,-9,2,2019,1,2,8,0,45,45,15,1,0,1,0,6.938181001009162,6.938181001009162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.36,53.7,6,1,0,0,5,4,1,404.5,0,0,0 +15174,18592,33891,-9,33893,33892,1,1,1,27,2,0,0,0,1,-9,2,1,0,3,8.180368051038695,8.022939989128805,0,3,0,0,0,-9,0,-986.4432496884772,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,35,40,15,1,0,-9,1,9.757318787534908,9.757318787534908,0,0,0,0,0,0,0,0,0,0,2.784542263209673,0,0,0,57.33,53.46,6,4,0,0,7,4,1,305,0,0,0 +15174,18593,33892,33893,-9,-9,3,1,1,58,1,0,0,0,1,-9,2,1,0,4,7.827673874158854,7.744987557727286,0,1,0,-9,28,0,3,20.65611563394072,0,0,0,55,1,3,1,3,3,2019,1,2,7,0,49,45,15,1,0,1,0,4.468853708396736,4.468853708396736,0,0,0,0,0,0,0,0,0,0,3.253530918955139,0,0,0,55.28,55.62,6,4,0,0,7,3,1,957,0,0,0 +15174,18593,33893,33892,-9,-9,2,1,0,55,1,0,0,0,1,-9,1,1,0,3,7.054518717253759,7.107886329788919,0,1,0,-9,28,0,-3,28.14151206636283,0,0,0,58,1,4,1,3,1,2019,1,3,9,0,36,18,15,1,0,1,0,4.135256161080917,4.135256161080917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.67,42.24,6,4,0,0,7,3,1,957,0,0,0 +15174,18594,33894,-9,33893,33892,4,1,0,23,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1001.945465798304,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,14,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.21,63.1,4,4,1,0,7,1,1,579,0,0,0 +15174,18595,33895,-9,33893,33892,5,1,0,21,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1013.220146311116,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,5,4,0,0,7,1,1,263,0,0,0 +15175,18596,33896,33897,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,5,8.546566712039414,8.352624794052355,0,2,0,-9,28,0,0,108.7432664925578,0,0,0,52,2,5,1,2,1,2019,1,2,8,0,30,25,15,1,0,1,0,14.40790913829609,14.40790913829609,0,0,0,0,0,0,0,0,0,0,.3463746937938265,0,0,0,45.81,61.51,6,1,0,0,9,4,1,427.5,0,0,0 +15175,18596,33897,33896,-9,-9,2,1,1,52,1,0,1,0,2,-9,1,1,0,5,8.178112564662467,7.924007412730218,0,2,0,-9,7,0,0,.0902737541494652,0,0,0,52,2,5,1,2,-9,2019,1,1,5,0,55,70,15,1,0,1,0,8.146275940646229,8.146275940646229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.99,55,6,1,0,0,9,4,1,427.5,0,0,0 +15176,18597,33898,33899,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,43,0,-3,99.56238640194027,0,0,0,69,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.08,41.91,6,1,0,0,12,2,1,918,0,0,0 +15176,18597,33899,33898,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,6.125930557418859,5.958862477141514,1,0,-9,32,0,3,-12.59128512641029,0,0,0,66,3,3,3,3,3,2019,4,2,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.23462251383528,0,0,54.78,26.41,4,1,0,0,12,2,1,918,0,0,0 +15177,18598,33900,-9,33903,-9,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-886.2818958931141,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,0,609.25,0,0,0 +15177,18598,33901,-9,33903,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-927.6150978195921,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,0,609.25,0,0,0 +15177,18598,33902,-9,33903,-9,2,1,0,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1080.687296993637,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,6,2,0,609.25,0,0,0 +15177,18598,33903,-9,-9,-9,1,1,0,29,2,0,3,0,2,-9,1,1,0,3,7.323899118174117,7.739437199530921,5.983237663001191,4,0,0,0,-9,0,-926.0962734796171,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,40,16,15,1,0,-9,0,6.268052485398238,6.268052485398238,0,0,0,0,0,0,0,1,1,0,6.135834246402805,0,0,0,41.47,58.08,4,1,0,0,6,2,0,609.25,0,0,0 +15178,18599,33904,33905,-9,-9,1,1,0,62,1,0,0,0,3,-9,4,3,0,3,0,5.611113077504529,5.687138843039945,1,0,-9,19,0,9,-17.86194831457148,0,0,0,53,3,3,1,-9,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.891385032999877,0,0,46.72,31.17,7,1,0,0,1,4,1,596,0,0,0 +15178,18599,33905,33904,-9,-9,2,1,1,53,1,0,0,0,3,-9,2,1,0,3,8.441083179529855,8.491635574407217,0,1,0,-9,19,0,0,-18.6586711332027,0,0,0,62,3,3,3,3,2,2019,2,1,22,8,40,43,15,1,8,4,0,13.73425608582008,13.73425608582008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,5,1,0,0,1,4,1,596,0,0,0 +15179,18600,33906,33909,-9,-9,1,1,0,27,1,1,2,0,3,-9,6,3,0,2,0,0,0,2,0,-9,2,0,-1,0,0,1,1,28,3,3,3,3,3,2019,4,2,29,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.680305785266833,3,35.05,35.48,5,1,0,0,13,1,0,537,0,0,0 +15179,18600,33907,-9,33906,33909,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-835.2096445165889,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,1,0,537,0,0,0 +15179,18600,33908,-9,33906,33909,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-981.7286337027878,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,1,0,537,0,0,0 +15179,18600,33909,33906,-9,-9,2,1,1,28,1,1,2,0,3,-9,3,3,0,3,0,0,0,2,0,-9,2,0,1,0,0,1,0,27,3,2,3,-9,-9,2019,4,1,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.75271293991439,1,41.28,34.95,7,1,1,0,13,1,0,537,0,0,0 +15180,18601,33910,33912,-9,-9,2,1,1,49,1,0,2,0,3,-9,2,1,0,3,7.111559349652632,7.103770022329076,0,2,0,-9,15,0,13,74.50139274546757,0,0,0,36,2,3,3,-9,-9,2019,2,1,7,0,25,0,15,1,0,3,0,5.893020763886665,5.893020763886665,0,0,0,0,0,0,0,1,1,0,0,0,42.27865018579264,2,54.96,53.17,6,1,0,0,6,2,0,1087.75,0,0,0 +15180,18601,33911,-9,33912,33910,3,1,1,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-940.2129640862967,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,6,2,0,1087.75,0,0,0 +15180,18601,33912,33910,-9,-9,1,1,0,36,1,0,2,0,2,-9,8,3,1,3,0,0,0,2,0,-9,15,0,-13,-72.99974732771216,0,0,1,49,3,3,1,2,-9,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,26.26,59.84,4,1,0,0,6,2,0,1087.75,0,0,0 +15180,18601,33913,-9,33912,33910,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.9967646293637,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,0,1087.75,0,0,0 +15181,18602,33914,-9,-9,-9,1,1,0,86,3,0,0,0,2,-9,4,3,0,4,0,7.345532549665169,7.58202083937311,3,0,0,0,-9,0,-942.9714783444127,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.144998104326412,0,0,57.16,56.15,6,1,0,0,2,3,1,607,0,0,0 +15182,18603,33915,-9,-9,-9,1,1,1,44,2,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-975.5308647107385,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.75,53.18,6,1,1,0,2,1,0,494,0,0,0 +15183,18604,33916,-9,33917,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1065.882146785453,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,7,3,1,1032.5,0,0,0 +15183,18604,33917,-9,-9,-9,1,1,0,40,3,0,1,0,2,-9,1,1,0,4,8.159816372491759,8.224465462026748,0,4,0,0,0,-9,0,-1067.550132296201,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,29,15,1,0,-9,0,10.5178033070052,10.5178033070052,0,0,0,0,0,0,0,1,1,0,.6641870483136254,0,0,0,60.12,54.8,6,1,0,0,7,3,1,1032.5,0,0,0 +15184,18605,33918,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,2,1,0,2,8.286236482367698,8.392147907395513,0,3,0,0,0,-9,0,-886.5804598756569,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,37,38,15,1,5,-9,0,12.98365081564353,12.98365081564353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.55,34.34,2,1,0,0,8,4,0,448,0,0,0 +15184,18606,33919,-9,33918,-9,2,1,1,28,2,0,0,0,2,-9,2,1,0,3,7.772303257948981,7.949380152845861,0,3,0,0,0,-9,0,-1050.815615021757,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,40,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,4,1,0,0,8,3,0,470,0,0,0 +15185,18607,33920,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-998.5713914349109,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.55,25.2,4,1,0,1,5,1,1,1034,0,0,0 +15186,18608,33921,-9,33923,33922,1,1,1,25,2,0,0,0,3,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-904.9070709196801,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,1,0,5,1,0,1026,0,0,0 +15186,18609,33922,33923,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,3,8.13113687592447,8.271091175451515,0,1,0,-9,9,0,9,-33.40954597049329,0,0,0,50,3,3,1,-9,-9,2019,1,3,8,2,43,50,15,1,2,1,0,8.362778067719649,8.362778067719649,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,56.01,7,1,0,0,5,3,0,167.5,0,0,0 +15186,18609,33923,33922,-9,-9,3,1,0,50,1,0,0,0,3,-9,2,1,0,3,6.129467685313193,6.071138405743997,0,1,0,-9,9,0,0,-22.88835075818818,0,0,0,59,3,3,1,-9,-9,2019,1,2,12,0,7,7,15,1,2,1,0,8.880233520862685,8.880233520862685,0,0,0,0,0,0,0,1,1,0,0,0,123.7801344209222,3,47,50,5,1,0,0,5,3,0,167.5,0,0,0 +15187,18610,33924,-9,33925,33927,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.657061906695,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,963,0,0,0 +15187,18610,33925,33927,-9,-9,1,1,0,31,1,0,2,0,1,-9,2,1,0,5,7.11479283110403,7.103925613262528,0,2,0,-9,7,0,-3,-38.78699604606486,0,0,1,34,2,4,1,2,2,2019,1,4,8,0,24,27,15,1,0,1,0,5.49581366256147,5.49581366256147,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,4,4,1,963,0,0,0 +15187,18610,33926,-9,33925,33927,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.452862277734,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,963,0,0,0 +15187,18610,33927,33925,-9,-9,4,1,1,34,1,0,2,0,2,-9,2,1,0,4,8.409419307401105,8.653826771697466,0,2,0,-9,7,0,3,-5.860791041593155,0,0,0,31,1,5,1,-9,-9,2019,1,1,10,0,45,40,15,1,1,1,0,9.874452670859778,9.874452670859778,0,0,0,0,0,0,0,1,1,0,7.443099618080916,0,0,0,50,57,5,1,0,0,4,4,1,963,0,0,0 +15188,18611,33928,33931,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,5,9.252426104259531,9.543103365676155,0,2,0,-9,7,0,-2,57.41916795415744,0,0,1,46,3,3,1,1,1,2019,1,2,7,0,30,36,15,1,0,1,0,51.17894990424127,51.17894990424127,0,0,0,0,0,0,0,0,0,0,6.777322495437475,0,0,0,54.1,59.11,6,1,0,0,8,5,1,609,0,0,0 +15188,18611,33929,-9,33928,33931,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-957.1021048928344,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,609,0,0,0 +15188,18611,33930,-9,33928,33931,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.8480547091858,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,8,5,1,609,0,0,0 +15188,18611,33931,33928,-9,-9,2,1,1,46,1,0,2,0,3,-9,2,1,0,3,0,.0052602262854169,0,2,0,-9,7,0,2,-11.68607864838915,0,0,0,44,1,5,1,-9,-9,2019,1,1,14,2,32,43,15,1,2,1,0,.0006997373226055,.0006997373226055,0,0,0,0,0,0,0,0,0,0,4.988655490139155,0,0,0,41.47,58.08,6,1,0,0,8,5,1,609,0,0,0 +15189,18612,33932,33933,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.259103993374872,8.280949337235509,6.060919065226508,1,0,-9,34,0,-4,16.54141533824276,0,0,0,62,2,2,1,3,-9,2019,1,2,9,0,38,40,15,1,0,1,0,10.57303526450624,10.57303526450624,0,0,0,0,0,0,0,0,0,0,0,6.427827592341929,0,0,38.99,60.52,5,1,0,0,2,5,1,656.5,0,0,0 +15189,18612,33933,33932,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,2,8.820203245104775,9.200517117896753,7.03376235163807,1,0,-9,34,0,4,1.018541002217108,0,0,0,58,2,3,1,3,3,2019,1,1,11,0,40,41,15,1,0,1,0,18.50436930734627,18.50436930734627,0,0,0,0,0,0,0,0,0,0,0,7.683096852545549,0,0,54.12,29.15,4,1,0,0,2,5,1,656.5,0,0,0 +15190,18613,33934,-9,-9,-9,1,1,0,54,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1047.19976163408,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.97,16.63,5,1,0,0,2,1,0,370,0,0,0 +15190,18614,33935,-9,33934,-9,2,1,1,22,2,0,0,0,2,-9,2,1,0,4,8.069066326720915,7.79722397422498,0,3,0,0,0,-9,0,-1066.639849121617,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,40,40,15,1,1,-9,1,7.171135782851988,7.171135782851988,0,0,0,0,0,0,0,1,0,1,0,0,0,3,47,59,5,1,0,0,2,4,0,202,0,0,0 +15191,18615,33936,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,2,1,0,5,9.699972789536785,9.680720922543406,0,1,0,-9,3,0,0,3.445495787402626,0,0,0,-9,-9,-9,-9,2,1,2019,1,2,8,0,60,52,15,1,0,-9,0,35.55091206605476,35.55091206605476,0,0,0,0,0,0,0,0,0,0,9.361959116340433,0,0,0,57.06,57.76,5,1,0,0,8,5,0,651,0,0,0 +15191,18616,33937,-9,-9,-9,2,1,1,30,2,0,0,0,1,-9,2,1,0,4,8.500896312148743,8.489904417040265,0,1,0,-9,3,0,0,-98.49348565083665,-9,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,10,0,50,0,15,1,1,-9,0,12.68040131022245,12.68040131022245,0,0,0,0,0,0,0,0,0,0,3.914475510629516,0,0,0,50,57,5,1,0,0,8,5,0,1815,0,0,0 +15192,18617,33938,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,9.160573453762662,8.871449989791829,0,3,0,0,0,-9,0,-1046.623395562072,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,42,52,15,1,0,-9,0,22.92407863007987,22.92407863007987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,5,1,0,0,7,5,1,271,0,0,0 +15193,18618,33939,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-968.7108650842663,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.06,34.62,7,1,0,0,9,1,1,725,0,0,0 +15194,18619,33940,33941,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,6.938967193445816,6.890111923414564,1,0,-9,45,0,3,-20.94314155985277,0,0,0,66,3,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.508206291149747,6.878463198730745,0,0,57.16,56.15,6,1,0,0,2,2,1,1255,0,0,0 +15194,18619,33941,33940,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,4,0,5.420140240933588,5.301092366589981,1,0,-9,45,0,-3,-17.50711938913154,0,0,0,69,2,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.540267819425109,5.709966188712829,0,0,57.16,56.15,6,1,0,0,2,2,1,1255,0,0,0 +15194,18620,33942,-9,33941,33940,3,1,1,37,2,0,0,0,2,-9,2,1,0,4,7.819546053115187,8.11489419972308,0,3,0,0,0,-9,0,-999.553579408705,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,44,44,15,1,0,-9,1,7.725374277427054,7.725374277427054,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,4,1,268,0,0,0 +15195,18621,33943,33944,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,4,9.576166878942876,9.807195272216367,0,2,0,-9,9,0,2,69.65599253169967,0,0,0,49,2,4,1,2,2,2019,1,2,23,11,55,53,15,1,11,1,0,34.00624786018984,34.00624786018984,0,0,0,0,0,0,0,0,0,0,5.481236630446081,0,0,0,38.57,64.48,5,1,0,0,5,5,1,615,0,0,0 +15195,18621,33944,33943,-9,-9,2,1,0,49,1,0,1,0,2,-9,1,1,0,4,4.159727725174068,3.948837172858256,0,2,0,-9,9,0,-2,-62.652832785999,0,0,0,51,1,4,1,2,2,2019,1,1,30,11,0,0,15,1,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,5,1,0,1,5,5,1,615,0,0,0 +15196,18622,33945,33946,-9,-9,1,1,1,56,1,0,0,0,3,-9,4,3,0,3,0,7.265668303296267,7.112638469485559,1,0,-9,7,0,1,88.55654868222319,0,0,0,55,2,2,3,3,2,2019,4,2,10,0,0,39,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.802700789267499,7.224940417196274,0,0,57.33,53.46,5,1,0,0,5,2,1,540.5,0,0,0 +15196,18622,33946,33945,-9,-9,2,1,0,55,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-1,165.6799923400146,0,0,0,56,3,3,3,-9,-9,2019,4,1,6,0,0,40,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.139129905006824,0,0,0,63.41,29.17,7,1,0,0,5,2,1,540.5,0,0,0 +15197,18623,33947,-9,-9,-9,1,1,1,67,3,0,0,0,2,-9,4,3,0,2,0,7.157425153832129,6.849258669298536,3,0,0,0,-9,0,-1054.023829462802,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.256764619011091,7.302762649722883,0,0,47.38,28.61,4,1,0,0,9,2,1,690,0,0,0 +15198,18624,33948,33949,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.889453946506899,8.996211177380253,0,1,0,-9,32,0,1,-13.7455252103475,0,0,0,49,2,4,1,2,3,2019,1,2,7,0,42,46,15,1,0,1,0,19.62976708576258,19.62976708576258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,6,5,1,475,0,0,0 +15198,18624,33949,33948,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,4,7.889460146695788,8.082845117672059,0,1,0,-9,32,0,-1,-164.2278550111674,0,0,0,50,2,4,1,3,-9,2019,1,1,12,2,39,40,15,1,2,1,0,7.595480971484664,7.595480971484664,0,0,0,0,0,0,0,0,0,0,5.93820327114361,0,0,0,38.38,56.81,5,1,0,0,6,5,1,475,0,0,0 +15198,18625,33950,-9,33949,33948,3,1,1,28,2,0,0,0,2,-9,2,1,0,3,8.489218686586581,8.512453448670303,0,3,0,0,0,-9,0,-1039.87279774042,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,0,-9,1,16.09167185655981,16.09167185655981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.57,53.14,6,1,0,0,6,5,1,684,0,0,0 +15199,18626,33951,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-861.4566050487776,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,11,1,0,1967,0,0,0 +15200,18627,33952,33953,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,1,0,8.353080582036982,8.070666929502659,1,0,-9,6,0,1,23.58574349931023,0,0,0,69,2,4,1,3,3,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,5.178501358004467,7.959308309549583,0,0,61.23,23.47,5,1,0,0,5,4,1,649.5,0,0,0 +15200,18627,33953,33952,-9,-9,2,1,0,69,1,0,0,0,2,-9,2,1,0,4,7.40278994729556,7.35291302070929,5.109061116134958,1,0,-9,6,0,-1,27.41588706617642,0,0,0,70,1,1,3,3,3,2019,2,1,15,3,22,22,15,1,3,4,0,7.552679281818532,7.552679281818532,0,0,0,0,0,0,0,1,1,0,2.84309817272653,5.111022298723642,0,0,47.38,57.75,2,1,0,0,5,4,1,649.5,0,0,0 +15201,18628,33954,-9,-9,-9,1,1,0,68,2,0,0,0,3,-9,4,3,0,3,0,8.256495462407683,7.958490974416923,3,0,0,0,-9,0,-991.58558405012,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,4,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.843542882901199,0,0,56.11,44.4,6,1,0,0,10,4,1,1371,0,0,0 +15202,18629,33955,-9,33957,33956,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.332976455519,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,5,1,428.25,0,0,0 +15202,18629,33956,33957,-9,-9,1,1,1,36,1,0,2,0,2,-9,2,1,0,4,9.065586542275142,8.95969554709203,0,2,0,-9,7,0,3,10.55313068183047,0,0,0,33,1,3,1,2,2,2019,1,2,19,7,45,40,15,1,7,1,0,23.28279666355458,23.28279666355458,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,1,428.25,0,0,0 +15202,18629,33957,33956,-9,-9,2,1,0,33,1,0,2,0,1,-9,2,1,0,3,8.304697117167249,8.325758686856588,0,2,0,-9,7,0,-3,151.0941834036629,0,0,1,36,2,4,1,-9,-9,2019,1,1,22,10,32,34,15,1,10,1,0,14.42885531777277,14.42885531777277,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,57.36,5,1,0,0,7,5,1,428.25,0,0,0 +15202,18629,33958,-9,33957,33956,3,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-842.620157822364,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,428.25,0,0,0 +15203,18630,33959,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,2,1,0,2,8.725137162778644,8.703738399265598,6.192800061662458,3,0,0,0,-9,0,-1075.864550512371,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,39,44,15,1,0,-9,0,13.23695720329564,13.23695720329564,0,0,0,0,0,0,0,1,1,0,4.867873294372657,6.505435502294497,0,0,52.24,50.75,4,1,0,0,9,5,0,852,0,0,0 +15204,18631,33960,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,2,1,0,2,9.499175635564521,9.562972587143092,0,3,0,0,0,-9,0,-962.9442646439129,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,0,45,45,15,1,0,-9,0,44.42280946212739,44.42280946212739,0,0,0,0,0,0,0,0,0,0,7.262864455762044,0,10.42415180285387,3,56.19,46.16,5,1,0,0,9,5,1,485,0,0,0 +15204,18632,33961,-9,-9,33960,2,1,1,25,2,0,0,0,1,-9,2,1,0,5,7.738906820998205,8.26234907718303,0,3,0,0,0,-9,0,-980.3089710728058,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,38,0,15,1,0,-9,1,8.222581342157859,8.222581342157859,0,0,0,0,0,0,0,0,0,0,4.474225419786145,0,0,0,54.63,58.83,6,1,0,0,9,3,1,241,0,0,0 +15205,18633,33962,-9,-9,-9,1,1,1,24,2,0,0,0,1,-9,2,1,0,3,7.855590309138988,8.153364129736467,0,3,0,0,0,-9,0,-939.1041984083835,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,1,42,38,15,1,1,-9,0,9.328498771449464,9.328498771449464,0,0,0,0,0,0,0,0,0,0,.8289824329003569,0,0,0,26.15,62.44,5,1,0,0,2,4,0,1474,0,0,0 +15206,18634,33963,-9,33965,33964,3,1,0,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-942.8313607585674,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.42,63.93,6,1,0,0,13,5,1,1079,0,0,0 +15206,18634,33964,33965,-9,-9,1,1,1,63,1,0,1,0,2,-9,2,1,0,4,8.845302757884106,8.344341046611813,0,2,0,-9,35,0,7,20.89318688992666,0,0,0,56,2,3,1,3,3,2019,1,2,12,0,36,45,15,1,0,1,0,21.58486931867019,21.58486931867019,0,0,0,0,0,0,0,1,1,0,2.248980808935875,0,0,0,33.14,64.63,6,1,0,0,13,5,1,1079,0,0,0 +15206,18634,33965,33964,-9,-9,2,1,0,56,1,0,1,0,2,-9,2,1,0,3,8.040091050661447,8.059752641823927,0,2,0,-9,35,0,-7,7.698277971946215,0,0,0,63,2,4,1,2,2,2019,1,1,11,1,21,21,15,1,1,1,0,18.86693924405577,18.86693924405577,0,0,0,0,0,0,0,1,1,0,0,0,13.3764330399897,3,52.01,48.98,3,1,0,0,13,5,1,1079,0,0,0 +15207,18635,33966,-9,33967,-9,1,1,1,28,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-968.6045282101257,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.85,50.47,2,1,0,1,4,1,0,1170,0,0,0 +15207,18636,33967,-9,-9,-9,2,1,0,56,3,0,0,0,3,-9,2,1,0,3,7.521346471793217,7.56541322212521,0,3,0,0,0,-9,0,-979.2841677931565,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,27,30,15,1,2,-9,0,7.645440846226101,7.645440846226101,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,4,3,0,881,0,0,0 +15207,18637,33968,-9,33967,-9,3,1,1,21,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1107.540456383262,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.3697057675674799,0,0,0,41.75,50.17,5,1,0,0,4,1,0,487,0,0,0 +15208,18638,33969,33970,-9,-9,2,1,0,38,1,0,1,0,1,-9,2,1,0,3,8.379212412046046,8.180197904306379,0,2,0,-9,20,0,-6,-147.3818651166074,0,0,1,44,2,4,1,3,3,2019,1,1,19,7,55,38,15,1,7,1,0,7.383233488389119,7.383233488389119,0,0,0,0,0,0,0,1,1,0,0,0,29.15322012860901,3,19.78,58.73,2,1,0,1,2,5,1,272,0,0,0 +15208,18638,33970,33969,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.643257995923173,8.617618197594757,0,2,0,-9,20,0,6,30.2760221776296,0,0,0,38,1,3,1,3,3,2019,1,2,6,0,40,50,15,1,0,1,0,15.80986797341606,15.80986797341606,0,0,0,0,0,0,0,1,1,0,0,0,22.1769076757502,3,57.16,56.15,6,1,0,0,2,5,1,272,0,0,0 +15209,18639,33971,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,7.464554552390004,7.841428065968644,3,0,0,0,-9,0,-1018.735932510919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.424999927420198,7.785672076973131,0,0,54.18,16.14,6,1,0,0,11,3,1,382,0,0,0 +15210,18640,33972,-9,-9,-9,1,1,0,85,3,0,0,0,2,-9,4,3,0,2,0,5.27889919991412,5.570273334878793,3,0,0,0,-9,0,-1105.482445888675,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,7,0,0,15,4,7,-9,0,0,0,1,0,0,0,43.8760583328915,0,0,1,1,0,5.41321331099009,5.928222799134482,0,0,45.54,25.94,3,1,0,0,1,2,0,432,0,0,0 +15211,18641,33973,33974,-9,-9,1,1,0,35,1,0,0,0,1,-9,6,3,0,4,0,0,0,1,0,1,1,-9,6,109.1257226954868,0,0,1,29,2,3,1,-9,-9,2019,3,2,6,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,7,3,0,0,8,2,0,411.5,0,0,0 +15211,18641,33974,33973,-9,-9,2,1,1,29,1,0,0,0,2,-9,1,1,0,3,7.082379395027107,7.73905354805837,0,1,0,-9,1,-9,-6,32.64945892310706,-9,1,0,35,1,4,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,4.593893893107129,4.593893893107129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.65,38.31,6,3,0,0,8,2,0,411.5,0,0,0 +15212,18642,33975,33977,-9,-9,1,1,0,32,1,1,2,0,1,-9,2,1,0,3,8.283377776712161,8.306286987719659,5.66018433676039,2,0,-9,6,0,-1,76.88130373774281,0,0,1,33,2,5,1,2,-9,2019,1,3,10,1,30,39,15,1,1,1,0,14.40709006094295,14.40709006094295,0,0,0,0,0,0,0,1,1,0,5.608224929497086,0,0,0,52,54.51,5,1,0,0,11,4,1,811.3333333333334,0,0,0 +15212,18642,33976,-9,33975,33977,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.9738098941896,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,811.3333333333334,0,0,0 +15212,18642,33977,33975,-9,-9,3,1,1,33,1,1,2,0,2,-9,2,1,0,5,8.207597314497617,8.579019221787558,0,2,0,-9,6,0,1,143.6866136753934,0,0,0,32,1,3,1,-9,-9,2019,1,1,2,0,50,50,15,1,0,1,0,7.935814245327994,7.935814245327994,0,0,0,0,0,0,0,1,1,0,4.003030460861702,0,0,0,57.06,57.76,7,1,0,0,11,4,1,811.3333333333334,0,0,0 +15213,18643,33978,-9,-9,-9,1,1,0,50,2,0,0,0,2,-9,2,1,0,3,7.642278042391112,7.395452685200523,0,3,0,0,0,-9,0,-1026.982123022237,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,14,9,15,1,0,-9,0,15.78133330391966,15.78133330391966,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,1,5,3,0,1496,0,0,0 +15214,18644,33979,33980,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,5,8.274696306230322,8.254465341341062,0,1,0,-9,9,0,-2,-37.21864171963799,0,0,0,61,2,5,3,3,3,2019,2,1,18,6,34,34,15,1,6,4,0,12.3904350290197,12.3904350290197,0,0,0,0,0,0,0,0,0,0,7.063411651214269,0,6.275152486643933,3,40.61,64.02,6,1,0,0,4,5,1,355,0,0,0 +15214,18644,33980,33979,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,5,0,8.27737218107891,8.412314674112846,1,0,-9,9,0,2,-113.224780117641,0,0,0,59,2,5,1,3,2,2019,3,2,8,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.224235391973271,8.585278443025091,0,0,58.2,54.53,6,1,0,0,4,5,1,355,0,0,0 +15215,18645,33981,-9,33982,33983,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1141.782873027451,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,5,1,460.75,0,0,0 +15215,18645,33982,33983,-9,-9,2,1,0,46,1,0,2,0,2,-9,2,1,0,4,7.887103725245946,8.066227332051993,0,2,0,-9,8,0,-7,-99.46885018965254,0,0,0,53,1,5,1,2,2,2019,1,1,12,0,29,26,15,1,0,1,0,10.79466799443146,10.79466799443146,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.01,51.37,6,1,0,0,7,5,1,460.75,0,0,0 +15215,18645,33983,33982,-9,-9,1,1,1,53,1,0,2,0,1,-9,2,1,0,5,9.194890433801408,9.077663008881416,0,2,0,-9,8,0,7,33.78965147739848,0,0,0,46,2,4,1,2,1,2019,1,2,8,0,37,75,15,1,0,1,0,22.36311050129738,22.36311050129738,0,0,0,0,0,0,0,1,1,0,.9472902722272801,0,0,0,57.06,57.76,6,1,0,0,7,5,1,460.75,0,0,0 +15215,18645,33984,-9,33982,33983,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.658731552357,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,5,1,460.75,0,0,0 +15216,18646,33985,33986,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,3,36.35269207059745,0,0,0,72,3,4,3,3,-9,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,61.86,22.96,6,1,0,0,11,2,0,346,0,0,0 +15216,18646,33986,33985,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,4,0,6.876734956836137,6.832147199559454,1,0,-9,9,0,-3,103.9573810470519,0,0,0,75,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.564737795626943,0,0,43.99,60.71,6,1,0,0,11,2,0,346,0,0,0 +15217,18647,33987,-9,-9,-9,1,1,1,71,3,0,0,0,3,-9,4,3,0,3,0,6.114719121023517,6.035032647489062,3,0,0,0,-9,0,-1067.510645748971,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,28,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.931785896427868,5.837576605543191,0,0,36.83,58.53,2,1,0,0,8,2,1,177,0,0,0 +15218,18648,33988,33989,-9,-9,2,1,1,63,1,0,0,0,2,-9,2,1,0,2,8.661075662564398,8.440671002702652,6.07439671327115,1,0,-9,9,0,-5,122.6122442319035,0,0,0,68,3,2,3,3,3,2019,2,1,10,0,40,40,15,1,0,4,0,15.44907154544607,15.44907154544607,0,0,0,0,0,0,0,1,1,0,3.87972396608957,6.02967499957476,0,0,57.47,42.93,5,1,0,0,1,4,1,382,0,0,0 +15218,18648,33989,33988,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,42,0,5,-51.53441960724543,0,0,0,63,2,2,1,3,3,2019,3,2,13,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1295112097279,0,0,0,36.03,40.6,5,1,0,0,1,4,1,382,0,0,0 +15219,18649,33990,33991,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,5,8.307622419105336,8.07845310048349,7.069236863853353,1,0,-9,41,0,-2,-56.07671318335286,0,0,0,59,2,3,3,2,2,2019,2,2,7,0,18,30,15,1,0,4,0,17.47155900034956,17.47155900034956,0,0,0,0,0,0,0,0,0,0,5.574452313894531,7.292880485381765,0,0,61.01,53.18,6,1,0,0,9,5,1,299.5,0,0,0 +15219,18649,33991,33990,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,3,0,8.418249240069068,8.237452448556841,1,0,-9,41,0,2,-212.9332651967253,0,0,0,57,2,5,1,2,1,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.155806250509968,8.183571836002072,0,0,54.53,41.24,5,1,0,0,9,5,1,299.5,0,0,0 +15220,18650,33992,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,8.24234550386794,8.138092637389756,3,0,0,0,-9,0,-960.770417089428,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.298992712688427,7.742117904842634,0,0,60.44,46.58,6,1,0,0,5,3,1,338,0,0,0 +15221,18651,33993,33994,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,3,8.716914246369223,8.913586928752709,0,2,0,-9,20,0,2,-1.194907229130043,0,0,0,35,1,3,1,2,2,2019,1,1,5,0,43,58,15,1,0,1,0,22.7791711719981,22.7791711719981,0,0,0,0,0,0,0,1,1,0,2.801576810349012,0,0,0,59.88,48.2,6,1,0,0,4,4,1,409.75,0,0,0 +15221,18651,33994,33993,-9,-9,1,1,0,35,1,0,2,0,1,-9,2,1,0,3,7.334842368206858,7.658947880227757,0,2,0,-9,20,0,-2,-84.19479122306002,0,0,1,37,1,3,1,2,3,2019,1,2,12,0,19,19,15,1,0,1,0,12.01860876061637,12.01860876061637,0,0,0,0,0,0,0,1,1,0,2.592720888887827,0,0,0,42.04,56.46,6,1,0,0,4,4,1,409.75,0,0,0 +15221,18651,33995,-9,33994,33993,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.47765445702,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,409.75,0,0,0 +15221,18651,33996,-9,33994,33993,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.576935717161,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,4,1,409.75,0,0,0 +15222,18652,33997,33998,-9,-9,1,1,1,75,1,0,0,0,1,-9,4,3,0,3,0,8.571997697337784,8.806422171790727,1,0,-9,50,0,0,-64.85866351062738,0,0,0,75,2,3,3,3,1,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.228715177910214,8.772335528925623,0,0,39.82,40.71,4,5,0,0,8,5,1,326.5,0,0,0 +15222,18652,33998,33997,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,3,0,7.840768350400395,7.77440166434133,1,0,-9,50,0,0,-13.46719065673713,0,0,0,75,1,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.621282461301702,7.911645782737908,0,0,57.34,47.92,6,1,0,0,8,5,1,326.5,0,0,0 +15223,18653,33999,-9,-9,-9,1,1,0,24,2,0,0,1,2,0,7,2,0,4,7.152754320512591,7.34418891702992,0,3,0,0,0,-9,0,-976.438136281621,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,16,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.4,50.47,6,4,0,0,1,2,0,730,0,0,0 +15224,18654,34000,-9,34002,34001,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.399292053394,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,4,1,1143.333333333333,0,0,0 +15224,18654,34001,34002,-9,-9,1,1,1,31,1,0,1,0,2,-9,2,1,0,4,8.376266080678969,8.21489060217011,0,2,0,-9,6,0,1,-12.96863469907285,0,0,0,30,2,3,1,2,2,2019,1,2,15,3,45,52,15,1,3,1,0,8.044431926043304,8.044431926043304,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,47.6,3,1,0,0,6,4,1,1143.333333333333,0,0,0 +15224,18654,34002,34001,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,3,8.426364956337352,8.602218671428865,0,2,0,-9,6,0,-1,55.61955960168312,0,0,1,31,2,4,1,-9,-9,2019,1,1,9,0,50,55,15,1,0,1,0,11.97128152211795,11.97128152211795,0,0,0,0,0,0,0,1,1,0,1.604483332664781,0,0,0,35.9,60.41,6,1,0,0,6,4,1,1143.333333333333,0,0,0 +15225,18655,34003,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,3,0,5.729655879873781,6.228612061048481,3,0,0,0,-9,0,-962.2962380579553,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.784038637573519,5.789384188259472,116.5799544056423,3,37.69,58.7,4,1,0,0,5,2,1,295,0,0,0 +15226,18656,34004,-9,-9,-9,1,1,0,21,2,0,0,0,1,1,2,1,0,4,8.010805672048955,8.076142769182795,4.172638290434985,3,0,0,0,-9,0,-1139.240691031567,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,0,15,1,0,-9,0,7.653709729566796,7.653709729566796,0,0,0,0,0,0,0,0,0,0,3.511782183127327,0,0,0,45.92,51.86,6,2,0,0,7,4,0,3090,0,0,0 +15227,18657,34005,-9,-9,-9,1,1,1,47,2,0,0,0,1,-9,3,3,0,3,0,4.452848260914172,4.397228516147012,3,0,0,0,-9,0,-842.2772152968555,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.769392770945077,0,0,0,31.93,58.41,2,3,1,1,8,2,0,440,0,0,0 +15228,18658,34006,-9,-9,-9,1,1,1,29,3,0,0,0,2,-9,2,1,0,4,7.691099000163881,8.137905042100771,0,3,0,0,0,-9,0,-990.1347832899614,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,21,6,65,0,15,1,6,-9,0,4.526257783567885,4.526257783567885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.13,54.99,4,1,0,0,7,3,0,180,0,0,0 +15229,18659,34007,34008,-9,-9,2,1,0,46,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,3,0,-8,0,0,0,0,54,3,3,3,3,3,2019,4,1,5,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.53,19.08,4,1,0,0,10,1,0,846,0,0,0 +15229,18659,34008,34007,-9,-9,1,1,1,54,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,3,0,8,0,0,0,0,46,2,1,3,-9,3,2019,4,2,1,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.4168538401411,2,62.66,52.4,5,1,0,0,10,1,0,846,0,0,0 +15230,18660,34009,34010,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,2,0,5.527832354313403,5.512518578999179,1,0,-9,7,0,-5,-29.56716540993793,0,0,0,76,3,3,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.313184711088239,4.899338555449223,3,52.19,38.55,6,1,0,0,5,3,1,1956,0,0,0 +15230,18660,34010,34009,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,8.082338541504734,7.88412716635516,1,0,-9,7,0,5,-28.54677220763976,0,0,0,71,2,2,3,2,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.805684438251207,8.156191779006956,0,3,51.88,36.57,6,1,0,0,5,3,1,1956,0,0,0 +15231,18661,34011,34012,-9,-9,1,1,1,58,1,0,0,0,2,-9,2,1,0,4,8.731436943215808,8.587879355010287,0,1,0,-9,9,0,2,-138.1463381723327,0,0,0,56,3,4,1,3,3,2019,1,2,8,0,37,40,15,1,0,1,0,17.58682974112782,17.58682974112782,0,0,0,0,0,0,0,0,0,0,.3337189162702913,0,0,0,54.79,55.86,6,1,0,0,13,5,1,278,0,0,0 +15231,18661,34012,34011,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,4,7.505501483595004,7.088649497421985,0,1,0,-9,9,0,-2,-7.323738622363301,0,0,0,58,2,4,1,3,3,2019,1,1,6,0,30,32,15,1,0,1,0,6.608607100105101,6.608607100105101,0,0,0,0,0,0,0,0,0,0,2.386358176788103,0,0,0,54.79,55.86,6,1,0,0,13,5,1,278,0,0,0 +15232,18662,34013,34015,-9,-9,2,1,1,39,1,0,4,0,2,-9,2,1,0,4,8.460880005487383,8.670225266040234,0,2,0,-9,19,0,1,75.20928308969785,0,0,0,38,3,4,3,-9,-9,2019,2,1,10,0,0,37,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,13,3,1,903,0,0,0 +15232,18662,34014,-9,34015,34013,3,1,0,11,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1173.10900153687,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,13,3,1,903,0,0,0 +15232,18662,34015,34013,-9,-9,1,1,0,38,1,0,4,0,3,-9,3,3,0,4,0,0,0,2,0,-9,19,0,-1,-55.53273999263109,0,0,1,39,2,4,1,-9,2,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.686551078658706,0,0,3,57.73,54.53,6,1,1,0,13,3,1,903,0,0,0 +15232,18662,34016,-9,34015,34013,6,1,0,5,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.773242985518,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,903,0,0,0 +15232,18662,34017,-9,34015,34013,4,1,0,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.281507988346,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,903,0,0,0 +15232,18662,34018,-9,34015,34013,5,1,0,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-948.5503742938743,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,3,1,903,0,0,0 +15233,18663,34019,34020,-9,-9,2,1,1,58,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,6,0,8,0,0,0,0,50,3,2,3,-9,-9,2019,4,1,15,3,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.78,35.79,3,1,0,0,5,1,0,1454,0,0,0 +15233,18663,34020,34019,-9,-9,1,1,0,50,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,6,0,-8,0,0,0,0,58,3,1,3,-9,2,2019,4,2,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,125.7755299708595,1,55.96,31.17,5,1,0,0,5,1,0,1454,0,0,0 +15234,18664,34021,-9,34022,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-1013.209480555697,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,1,0,0,8,1,0,582.5,0,0,0 +15234,18664,34022,-9,-9,-9,1,1,0,53,3,0,2,0,1,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-922.6683230966706,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,20,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,123.9097005299785,3,38.32,26.68,6,5,0,1,8,1,0,582.5,0,0,0 +15235,18665,34023,34025,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.696803867579346,8.515155581385114,6.599422412488848,2,0,-9,12,0,-15,29.55911711719855,0,0,1,51,2,4,1,3,2,2019,1,1,7,0,40,44,15,1,0,1,0,12.61858881719333,12.61858881719333,0,0,0,0,0,0,0,1,1,0,6.818168837176285,0,.1266527444012171,3,57.16,56.15,6,1,0,0,11,4,0,663.25,0,0,0 +15235,18665,34024,-9,34023,34025,3,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-857.8835117348358,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,4,0,663.25,0,0,0 +15235,18665,34025,34023,-9,-9,1,1,1,51,1,0,2,0,2,-9,2,1,0,4,8.669763740427678,8.364522315361324,0,2,0,-9,12,0,15,-113.1822497533311,0,0,0,36,1,4,1,3,3,2019,1,2,5,0,40,38,15,1,0,1,0,13.63939478067954,13.63939478067954,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,0,663.25,0,0,0 +15235,18665,34026,-9,34023,34025,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.886310097807,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,11,4,0,663.25,0,0,0 +15236,18666,34027,-9,-9,34028,1,1,0,47,2,0,0,0,2,-9,2,1,0,4,8.626902536257921,8.426035976372301,0,3,0,0,0,-9,0,-904.7137069680616,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,1,18,19,15,1,1,-9,1,34.71504938706005,34.71504938706005,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,7,4,0,0,8,5,0,918,0,0,0 +15236,18667,34028,-9,-9,-9,2,1,1,78,2,0,0,0,1,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-987.9760318637232,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,62.42,45.64,5,4,0,0,8,1,0,2396,0,0,0 +15236,18668,34029,-9,34027,-9,3,1,0,21,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-869.8118893871176,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,4,0,0,8,1,0,205,0,0,0 +15237,18669,34030,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-933.3339406228102,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,13.11414768061723,3,41.96,41.66,6,1,0,0,10,1,1,2351,0,0,0 +15238,18670,34031,34032,-9,-9,1,1,0,21,1,0,0,0,2,-9,2,1,0,4,7.42693178024563,7.635190281357007,0,1,0,-9,2,0,-6,-114.5514810372227,-9,1,1,27,2,4,1,-9,-9,2019,1,2,8,0,29,0,15,1,0,1,0,5.622510864330002,5.622510864330002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,58.99,5,1,0,0,10,4,0,348.5,0,0,0 +15238,18670,34032,34031,-9,-9,2,1,1,27,1,0,0,0,2,-9,2,1,0,4,7.741940641659575,7.907205933790014,0,1,0,-9,2,0,6,-54.49373604763666,-9,1,0,21,2,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,0,1,0,8.363358211864517,8.363358211864517,0,0,0,0,0,0,0,0,0,0,2.017262222761869,0,0,0,54.2,57.49,4,1,0,0,10,4,0,348.5,0,0,0 +15239,18671,34033,-9,34036,34035,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.927621189879,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,11,4,1,336.5,0,0,0 +15239,18671,34034,-9,34036,34035,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,5.565083464443295,5.91402042792075,0,2,0,0,0,-9,0,-978.3919967671072,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,1,4,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,11,4,1,336.5,0,0,0 +15239,18671,34035,34036,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,3,7.659588499257535,8.313844348029038,0,2,0,-9,10,0,4,64.74014609528587,0,0,0,44,1,5,1,3,3,2019,1,1,6,0,45,40,15,1,0,1,0,6.66360317076268,6.66360317076268,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.48,46.97,6,2,0,0,11,4,1,336.5,0,0,0 +15239,18671,34036,34035,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,5,9.018484976416664,8.668413110918985,0,2,0,-9,10,0,-4,89.06168901369338,0,0,1,48,2,3,1,3,3,2019,1,2,7,0,15,40,15,1,0,1,0,50.64627091754694,50.64627091754694,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,6,1,0,0,11,4,1,336.5,0,0,0 +15240,18672,34037,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,2,1,0,5,8.631455829819853,8.665448732696067,6.822703314928121,3,0,0,0,-9,0,-1022.189366402085,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,36,36,15,1,0,-9,0,16.75553647068593,16.75553647068593,0,0,0,0,0,0,0,0,0,0,4.332472224918719,7.077927533556185,0,0,60.02,56.42,7,4,0,0,8,5,0,151,0,0,0 +15240,18673,34038,-9,34037,-9,2,1,0,27,2,0,0,0,1,-9,2,1,0,3,8.395698160851115,8.414032307766744,0,3,0,0,0,-9,0,-989.9971500738473,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,17,5,41,40,15,1,5,-9,1,10.65348904115085,10.65348904115085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.71,57.2,4,4,0,0,8,4,0,643,0,0,0 +15240,18674,34039,-9,34037,-9,3,1,0,23,2,0,0,0,1,-9,2,1,0,3,8.311539436771834,8.55116474116419,0,3,0,0,0,-9,0,-910.2880394486651,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,18,7,35,35,15,1,7,-9,1,16.10016467043477,16.10016467043477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,4,4,0,0,8,4,0,1426,0,0,0 +15241,18675,34040,-9,-9,-9,1,1,0,25,2,0,0,0,1,1,2,1,0,5,8.004838368436715,8.010016206423487,0,3,0,0,0,-9,0,-1134.126625184792,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,45,0,15,1,1,-9,0,9.50132920992221,9.50132920992221,0,0,0,0,0,0,0,0,0,0,3.363362669485177,0,0,0,44.45,62.04,6,1,0,0,1,4,1,1597,0,0,0 +15242,18676,34041,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,3,0,6.188405563524362,6.158432956750564,3,0,0,0,-9,0,-1053.391487343592,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.06453919401863,6.138414851993719,0,0,46.88,46.3,5,1,0,0,9,2,1,504,0,0,0 +15243,18677,34042,34043,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,2,0,7.976471294176768,8.085858163906472,1,0,-9,8,0,3,87.04738735205774,0,0,0,64,2,2,3,2,2,2019,4,2,8,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,7.030181683589445,8.552589548840645,115.2757440677885,1,55.36,41.04,6,1,0,0,5,3,1,756,0,0,0 +15243,18677,34043,34042,-9,-9,2,1,0,64,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,8,0,-3,-126.993726928216,0,0,0,67,2,2,3,-9,-9,2019,4,1,12,0,0,0,15,3,0,4,0,0,0,1,0,24.46662360070837,0,0,0,0,1,1,0,5.549762635396415,0,0,0,35.87,21.86,4,1,0,0,5,3,1,756,0,0,0 +15244,18678,34044,34045,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,30,0,-18,27.92034474843239,0,0,0,79,2,2,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.82731996573843,3,57.06,57.76,6,1,0,0,9,2,1,793.5,0,0,0 +15244,18678,34045,34044,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,2,0,7.198439526828118,7.000210972362096,1,0,-9,30,0,18,-12.73853841096678,0,0,0,61,2,5,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.18698228688875,7.104771970061092,0,0,54.22,44.61,6,1,0,0,9,2,1,793.5,0,0,0 +15245,18679,34046,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,2,0,6.258800435194802,6.357379834806148,3,0,0,0,-9,0,-979.455137385336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.473278126301604,0,0,50,35,6,1,0,0,7,2,1,1390,0,0,0 +15246,18680,34047,34048,-9,-9,2,1,1,67,1,0,1,0,2,-9,4,3,0,4,0,7.806336252302403,7.936395414259139,2,0,-9,7,0,5,110.7696475765391,0,0,0,62,2,4,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.301890359192201,7.53798511634051,0,0,51,52.08,3,1,0,0,11,2,1,1106,0,0,0 +15246,18680,34048,34047,-9,-9,1,1,0,62,1,0,1,0,2,-9,4,3,0,4,0,5.055435291369737,5.279986239116712,2,0,-9,7,0,-5,-1.939450897725737,0,0,0,67,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.591637962741073,5.261900853294359,10.46236239730198,3,46.16,58.62,5,1,0,0,11,2,1,1106,0,0,0 +15246,18681,34049,-9,34048,34047,3,1,1,39,2,0,1,0,3,-9,2,1,0,1,8.405212496008291,8.647602226045981,0,3,0,0,0,-9,0,-1091.461869073521,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,34,12,60,53,15,1,12,-9,1,7.558551541564787,7.558551541564787,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.88,37.09,1,1,0,0,11,4,1,220,0,0,0 +15246,18681,34050,-9,-9,34049,4,1,1,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,3,0,0,0,-9,0,-864.7981177644708,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,4,1,220,0,0,0 +15247,18682,34051,-9,-9,-9,1,1,1,21,2,0,0,1,2,0,7,2,0,4,0,6.158293230817957,6.105350521091785,3,0,0,0,-9,0,-968.0460726540862,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.625248014170021,0,0,0,57.16,56.15,7,1,0,0,12,2,0,616,0,0,0 +15248,18683,34052,34053,-9,-9,1,1,0,57,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,34,0,-2,-105.6242008894752,0,0,0,59,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.79131179951763,3,57.33,53.46,7,1,0,0,6,3,1,649,0,0,0 +15248,18683,34053,34052,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,3,0,7.986193824243433,8.220896618809734,1,0,-9,34,0,2,95.24126383289004,0,0,0,57,2,3,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.504918961117015,0,0,57.33,53.46,7,1,0,0,6,3,1,649,0,0,0 +15249,18684,34054,-9,34056,34055,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1111.623371192042,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,597.75,0,0,0 +15249,18684,34055,34056,-9,-9,1,1,1,30,1,0,2,0,2,-9,2,1,0,3,8.184459372709535,8.479605448662854,0,2,0,-9,9,0,-13,136.0402684647284,0,0,0,43,2,4,1,2,2,2019,1,2,19,6,37,37,15,1,6,1,0,14.36812381788438,14.36812381788438,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.11,55.92,3,1,0,0,5,4,1,597.75,0,0,0 +15249,18684,34056,34055,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,4,8.03185130226597,7.672604438223382,0,2,0,-9,9,0,13,-89.18679664991413,0,0,1,30,2,3,1,2,2,2019,1,1,10,0,18,19,15,1,0,1,0,16.33597914438668,16.33597914438668,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,6,1,0,0,5,4,1,597.75,0,0,0 +15249,18684,34057,-9,34056,34055,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.7697095598028,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,597.75,0,0,0 +15250,18685,34058,-9,-9,-9,1,1,0,83,3,0,0,0,2,-9,4,3,0,2,0,6.999083471041987,6.938042604290627,3,0,0,0,-9,0,-853.3766691123674,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,1,0,0,.6466297108658836,10.00161022193941,0,0,1,1,0,4.049752328737825,6.863670077619584,0,0,53.79,16.41,6,1,0,0,12,2,1,146,0,0,0 +15251,18686,34059,-9,34062,34064,6,1,0,6,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.620936283271,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,895.6666666666666,0,0,0 +15251,18686,34060,-9,34062,34064,4,1,0,11,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1063.736488206748,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,10,4,1,895.6666666666666,0,0,0 +15251,18686,34061,-9,34062,34064,5,1,1,9,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1077.159370168928,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,10,4,1,895.6666666666666,0,0,0 +15251,18686,34062,34064,-9,-9,2,1,0,46,1,0,4,0,2,-9,2,1,0,3,7.636298029098922,7.478910383271028,0,2,0,-9,8,0,0,-4.156094238665226,0,0,0,46,1,4,1,2,2,2019,1,1,7,0,38,30,15,1,0,1,0,4.353962607343088,4.353962607343088,0,0,0,0,0,0,0,1,1,0,0,0,.6273927988862422,3,58.32,50.22,6,1,0,0,10,4,1,895.6666666666666,0,0,0 +15251,18686,34063,-9,34062,34064,3,1,0,13,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.9263736249618,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,1,895.6666666666666,0,0,0 +15251,18686,34064,34062,-9,-9,1,1,1,46,1,0,4,0,1,-9,2,1,0,4,8.762470848942868,8.506677177856298,0,2,0,-9,19,0,0,-47.20588138345576,0,0,0,46,2,3,1,2,2,2019,1,2,10,1,50,50,15,1,1,1,0,17.66179613714835,17.66179613714835,0,0,0,0,0,0,0,1,1,0,4.937471761644765,0,0,0,54.2,57.49,6,1,0,0,10,4,1,895.6666666666666,0,0,0 +15252,18687,34065,34067,-9,-9,2,1,1,41,1,0,1,0,2,-9,2,1,0,3,8.824066887065294,8.393747046798177,0,2,0,-9,11,0,-1,23.06287839584493,0,0,0,42,2,4,1,-9,-9,2019,1,1,11,0,38,38,15,1,0,1,0,13.4134719891924,13.4134719891924,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.64,52.35,4,1,0,0,10,4,0,442.3333333333333,0,0,0 +15252,18687,34066,-9,34067,34065,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.8127983355097,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,4,0,442.3333333333333,0,0,0 +15252,18687,34067,34065,-9,-9,1,1,0,42,1,0,1,0,2,-9,1,1,0,4,5.803172104416269,6.095836654478019,0,2,0,-9,18,0,1,73.06242955276808,0,0,1,41,2,3,1,2,3,2019,1,2,11,0,22,31,15,1,0,1,0,1.698831192537249,1.698831192537249,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.06,55.28,6,1,0,0,10,4,0,442.3333333333333,0,0,0 +15253,18688,34068,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,1,1,0,4,7.273938164138825,7.129630742340823,0,3,0,-9,0,-9,0,-1061.144955725196,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,40,0,15,1,0,-9,0,3.631466652306061,3.631466652306061,0,0,0,0,0,0,0,1,1,0,0,0,21.73460517893545,3,57.91,48.98,6,1,0,0,13,2,1,838,0,0,0 +15254,18689,34069,34070,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,8.197474309591541,8.446788239310234,0,1,0,-9,1,-9,8,-37.8644253229934,-9,0,0,53,2,5,1,-9,-9,2019,1,1,6,1,39,0,15,1,1,1,0,10.02643874661161,10.02643874661161,0,0,0,0,0,0,0,0,0,0,3.620843189076425,0,0,0,54.79,55.86,2,1,0,0,4,4,1,395,0,0,0 +15254,18689,34070,34069,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,5,8.100033455647585,7.895107606870162,0,1,0,1,1,-9,-8,79.32849350189102,0,0,0,61,2,4,1,3,2,2019,1,2,6,0,26,27,15,1,0,1,0,14.39694656330534,14.39694656330534,0,0,0,0,0,0,0,0,0,0,6.082830622484093,0,9.320102084302889,3,54.69,57.47,7,1,0,0,4,4,1,395,0,0,0 +15255,18690,34071,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,4,8.868083283490895,8.817548950455866,0,3,0,0,0,-9,0,-1135.544454399336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,22,10,40,40,15,1,10,-9,0,17.89507059665431,17.89507059665431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.78,51.68,3,1,0,0,13,5,1,635,0,0,0 +15256,18691,34072,-9,34073,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-989.5697708437102,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,3,1,253.5,0,0,0 +15256,18691,34073,-9,-9,-9,1,1,0,59,3,0,1,0,2,-9,2,1,0,3,7.762132165508564,8.057965124208385,6.057541853309389,4,0,0,0,-9,0,-932.2327378400734,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,31,29,15,1,1,-9,0,9.386135515359856,9.386135515359856,0,0,0,0,0,0,0,1,1,0,8.323654345016717,6.233724384455253,0,0,26.69,60.83,3,1,0,0,6,3,1,253.5,0,0,0 +15257,18692,34074,34077,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,5,7.914489921279595,8.276043188123376,0,2,0,-9,4,0,3,106.7222116151311,-9,0,0,36,3,5,1,2,2,2019,1,2,8,0,25,0,15,1,0,1,0,21.11703395353699,21.11703395353699,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,10,3,0,1471.5,0,0,0 +15257,18692,34075,-9,34077,34074,6,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1151.36997376272,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,0,1471.5,0,0,0 +15257,18692,34076,-9,34077,34074,4,1,0,17,2,0,2,0,2,-9,2,3,0,5,6.266491628797472,6.43736819061339,0,2,0,0,0,-9,0,-1077.777561429856,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,12,2,10,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.13,61.76,4,1,0,0,10,3,0,1471.5,0,0,0 +15257,18692,34077,34074,-9,-9,2,1,0,36,1,0,2,0,3,-9,2,1,0,5,7.391939592339723,7.807123044834117,0,2,0,-9,4,0,-3,45.14138536921034,0,0,1,39,2,5,1,-9,-9,2019,1,1,6,0,25,14,15,1,0,1,0,7.088375480102852,7.088375480102852,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,10,3,0,1471.5,0,0,0 +15257,18693,34078,-9,34077,34074,3,1,0,19,2,0,2,0,2,-9,11,3,0,3,7.123760498699876,7.078057612525297,0,3,0,0,0,-9,0,-964.5868883098474,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,27,9,8,4,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.48,58.33,5,1,0,0,10,2,0,536,0,0,0 +15258,18694,34079,-9,-9,-9,1,1,0,87,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1045.806481878391,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.638565314456171,0,0,0,57.26,27.92,5,1,0,0,4,1,1,709,0,0,0 +15259,18695,34080,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,2,1,0,3,6.54913116386496,6.811809066393026,6.148247080127334,3,0,0,0,-9,0,-959.5252167595726,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,16,0,15,1,9,-9,0,4.742136869709574,4.742136869709574,0,0,0,0,0,0,0,1,1,0,4.024716418460458,6.737373669012752,0,0,45.73,57.57,3,1,0,0,9,2,1,999,0,0,0 +15260,18696,34081,34082,-9,-9,1,1,0,38,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,7,0,-6,42.29877246091498,0,0,1,44,2,4,1,2,2,2019,3,2,16,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.7,11.82,6,1,0,0,12,4,0,721,0,0,0 +15260,18696,34082,34081,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,4,8.453077338889992,8.841254029565714,6.85174353401409,1,0,-9,7,0,6,-74.87600305400441,0,0,0,38,2,1,3,-9,-9,2019,2,1,15,3,52,0,15,1,3,3,0,9.973452296294596,9.973452296294596,0,0,0,0,0,0,0,1,1,0,6.509078770420496,0,65.40512413285229,2,23.95,64.59999999999999,5,1,0,0,12,4,0,721,0,0,0 +15261,18697,34083,-9,-9,-9,1,1,0,43,2,0,1,0,2,-9,2,1,0,3,7.878154913275593,7.374140153076928,0,4,0,0,0,-9,0,-940.0608256434418,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,31,31,15,1,1,-9,0,7.853137826736517,7.853137826736517,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.03,53.83,4,1,0,1,6,3,1,1570.5,0,0,0 +15261,18697,34084,-9,34083,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-892.0224311200922,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,6,3,1,1570.5,0,0,0 +15262,18698,34085,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1009.360377160466,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,35,12,0,0,15,4,12,-9,0,0,0,1,0,0,.4567799799661878,0,1.335467679267662,0,1,1,0,0,0,0,0,24.36,21.57,1,1,0,1,11,1,0,737,0,0,0 +15263,18699,34086,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,2,1,0,3,7.55702793177609,8.219885667169354,7.255231829947594,3,0,0,0,-9,0,-989.3284458284481,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,32,40,15,1,0,-9,0,8.27299785744893,8.27299785744893,0,0,0,0,0,0,0,1,1,0,0,6.884683764197937,5.981280186397674,3,56.35,51.16,6,1,0,0,12,4,0,713,0,0,0 +15264,18700,34087,34088,-9,-9,1,1,0,52,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,3,0,0,0,0,0,0,52,3,1,3,3,2,2019,4,2,13,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.92,24.27,3,1,0,1,13,1,1,405.5,0,0,0 +15264,18700,34088,34087,-9,-9,2,1,1,52,1,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,3,0,0,0,0,0,0,52,2,1,3,2,2,2019,4,1,10,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.14454732994299,1,60.48,14.6,4,1,0,1,13,1,1,405.5,0,0,0 +15265,18701,34089,-9,34091,34090,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.25547060629,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,4,1,1829.75,0,0,0 +15265,18701,34090,34091,-9,-9,1,1,1,39,1,0,2,0,2,-9,2,1,0,4,8.749154069216535,8.554712792260045,0,2,0,-9,5,0,3,-79.41152322104774,0,0,0,36,1,4,1,3,1,2019,1,2,9,1,37,36,15,1,1,1,0,21.05820029699537,21.05820029699537,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,7,3,0,0,8,4,1,1829.75,0,0,0 +15265,18701,34091,34090,-9,-9,2,1,0,36,1,0,2,0,1,-9,2,1,0,4,7.801823783772819,8.089509819173966,0,2,0,-9,5,0,-3,-71.28047106202847,0,0,1,39,2,4,1,-9,-9,2019,1,1,4,0,38,38,15,1,0,1,0,9.322895947381939,9.322895947381939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.12,49.66,6,3,0,0,8,4,1,1829.75,0,0,0 +15265,18701,34092,-9,34091,34090,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.834236280673,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,1829.75,0,0,0 +15266,18702,34093,-9,-9,-9,1,1,0,57,2,0,0,0,2,-9,4,3,0,4,0,7.636421019874642,7.093761968344073,3,0,0,0,-9,0,-1048.189597181617,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.8163383489122429,7.635484040645302,127.043872845807,3,62.5,49.56,2,1,0,0,2,3,1,1270,0,0,0 +15266,18703,34094,-9,-9,-9,2,1,1,52,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-953.1744233176121,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5382531986822785,0,0,0,53,54,6,1,0,0,2,1,1,170,0,0,0 +15267,18704,34095,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.225333380228127,8.178146439217379,0,3,0,0,0,-9,0,-967.8736117173327,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,37,37,15,1,1,-9,0,9.413064827996068,9.413064827996068,0,0,0,0,0,0,0,0,0,0,1.02107283734421,0,0,0,41.87,59.15,5,1,0,0,12,4,0,436,0,0,0 +15268,18705,34096,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1082.732718890653,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,19,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,57.36,4,1,0,1,1,1,0,303.3333333333333,0,0,0 +15268,18705,34097,-9,34096,-9,2,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1038.276999139268,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,1,0,303.3333333333333,0,0,0 +15268,18705,34098,-9,34096,-9,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1050.800505659005,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,1,0,303.3333333333333,0,0,0 +15269,18706,34099,34100,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-8,-77.30386684090533,0,0,0,83,3,3,3,3,2,2019,4,2,9,2,0,3,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,1.467836064196783,3,49.07,36.55,7,1,0,0,10,3,1,844.5,0,0,0 +15269,18706,34100,34099,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,3,0,7.984922014398338,7.863497943488555,1,0,-9,56,0,8,10.25847220196226,0,0,0,75,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.255809397878423,0,0,55.51,51.57,6,1,0,0,10,3,1,844.5,0,0,0 +15270,18707,34101,-9,-9,-9,1,1,0,90,3,0,0,0,2,-9,4,3,0,2,0,5.505344008429592,5.657639010471648,3,0,0,0,-9,0,-1077.78378091793,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,4,6,-9,0,0,0,1,0,0,0,2.152033184221238,0,0,1,1,0,1.071966866935005,5.587976981003545,0,0,46.82,32.13,6,1,0,0,1,2,1,877,0,0,0 +15271,18708,34102,-9,34104,34103,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.1133836367153,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,0,782.25,0,0,0 +15271,18708,34103,34104,-9,-9,1,1,1,27,1,1,2,0,2,-9,1,1,0,2,8.577683978397275,8.767261418381119,0,2,0,-9,3,0,5,-13.49784707537562,0,1,0,22,3,4,1,1,3,2019,1,2,26,10,60,25,15,1,10,1,0,11.26001069068501,11.26001069068501,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.05,57.64,3,1,0,0,9,4,0,782.25,0,0,0 +15271,18708,34104,34103,-9,-9,2,1,0,22,1,1,2,0,3,-9,2,1,0,4,7.336353282284737,7.379515920379179,0,2,0,-9,3,0,-5,-44.29891515889246,0,1,1,27,2,2,1,-9,-9,2019,1,1,6,0,28,0,15,1,0,1,0,6.708674162713672,6.708674162713672,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.68,55.12,6,1,0,0,9,4,0,782.25,0,0,0 +15271,18708,34105,-9,34104,34103,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1071.079390014303,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,0,782.25,0,0,0 +15271,18709,34106,-9,-9,-9,5,1,1,19,2,1,2,0,2,-9,3,3,0,3,0,3.532508275060486,3.741379152227491,4,0,0,0,-9,0,-1044.75634025342,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,32,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.105945801471203,0,0,0,50.28,48.65,3,1,1,0,9,1,0,156,0,0,0 +15272,18710,34107,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,4,9.197356340103347,9.224872859009107,0,3,0,0,0,-9,0,-947.5950529030456,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,11,50,56,15,1,11,-9,0,25.17400175823475,25.17400175823475,0,0,0,0,0,0,0,0,0,0,0,0,72.47611571973709,3,4.14,73.8,1,1,0,0,8,5,1,1397,0,0,0 +15273,18711,34108,-9,-9,-9,1,1,0,65,3,0,0,0,1,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1152.207224017145,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,1,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55.79,7,1,0,0,8,1,1,143,0,0,0 +15273,18712,34109,-9,34108,-9,2,1,0,29,2,0,0,0,1,-9,2,1,0,5,8.836747277903182,8.72822285549943,0,3,0,0,0,-9,0,-989.8850622880402,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,4,1,8,39,15,1,1,-9,1,110.513744307187,110.513744307187,0,0,0,0,0,0,0,1,1,0,4.585853602765867,0,0,0,62.39,56.71,7,1,0,0,8,5,1,293,0,0,0 +15274,18713,34110,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,3,9.145625687764253,9.015632567891565,0,3,0,0,0,-9,0,-936.6843304626925,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,50,55,15,1,3,-9,0,20.64373577012404,20.64373577012404,0,0,0,0,0,0,0,0,0,0,5.557624220984508,0,0,0,48.36,52.17,6,1,0,0,8,5,0,609,0,0,0 +15275,18714,34111,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,1,8.761069352060764,8.697117906845985,0,3,0,0,0,-9,0,-844.6891691037274,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,36,12,38,48,15,1,12,-9,0,15.31292007039141,15.31292007039141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.86,54.33,2,1,0,0,5,5,1,1739,0,0,0 +15276,18715,34112,-9,-9,-9,1,1,0,42,2,0,1,0,2,-9,2,1,0,3,8.989144539313193,8.984074339500506,6.301236804634268,4,0,-9,0,-9,0,-1047.960181879236,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,7,1,38,0,15,1,1,-9,0,21.98856768428243,21.98856768428243,0,0,0,0,0,0,0,0,0,0,7.310887250809886,0,0,0,56.52,48.31,6,1,0,0,8,5,1,530.5,0,0,0 +15276,18715,34113,-9,34112,-9,2,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-993.3571055958918,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,530.5,0,0,0 +15277,18716,34114,-9,-9,-9,1,1,0,98,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1119.494758423634,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,29.40202896407521,0,31.97937729013155,0,0,268.4924002895303,1,1,0,0,0,0,0,55,43,6,1,0,0,5,1,0,692,0,0,0 +15277,18717,34115,-9,34114,-9,2,1,0,67,3,0,0,0,2,-9,4,3,0,3,2.254477404117306,2.138151551473702,0,3,0,0,0,-9,0,-1002.772081784337,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,2,36,15,4,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.92771261114051,3,50.03,52.62,6,1,0,0,5,1,0,1483,0,0,0 +15278,18718,34116,-9,-9,-9,1,1,0,70,3,0,2,0,2,-9,4,3,0,4,0,7.429771149250198,6.776893322503247,4,0,0,0,-9,0,-1172.885724474963,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.725683469247828,6.918140196746688,0,0,60.13,49.27,6,1,0,0,9,2,1,130,0,0,0 +15279,18719,34117,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,4.244563287838001,4.449328825663763,3,0,0,0,-9,0,-983.2737781559016,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.536426873636989,4.324016159207352,0,0,51.73,31.58,6,1,0,0,9,1,1,470,0,0,0 +15280,18720,34118,-9,-9,-9,1,1,1,22,2,0,0,0,1,1,2,1,0,5,8.299416170906545,8.327102898500645,0,3,0,0,0,-9,0,-963.2716990918336,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,37,0,15,1,2,-9,0,13.45185773234417,13.45185773234417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.58,61.28,5,1,0,0,12,4,0,136,0,0,0 +15281,18721,34119,34120,-9,-9,1,1,1,52,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,9,0,-7,0,0,0,0,59,2,2,3,2,2,2019,4,2,16,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.669544748087196,3,21.97,21.3,2,1,0,0,11,1,0,357,0,0,0 +15281,18721,34120,34119,-9,-9,2,1,0,59,1,0,0,0,2,-9,6,3,0,2,0,0,0,1,0,-9,9,0,7,0,0,0,0,52,2,1,3,-9,-9,2019,4,1,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.15137437903055,1,63.56,23.64,4,1,0,0,11,1,0,357,0,0,0 +15282,18722,34121,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,5.900790121277431,6.128857576692971,3,0,0,0,-9,0,-1023.108638963542,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,4.093781861812921,0,0,1,1,0,2.837840813101407,5.696270542779522,0,0,61.35,28.88,4,1,0,0,2,2,1,283,0,0,0 +15282,18723,34122,-9,34121,-9,2,1,1,56,2,0,0,0,1,-9,2,1,0,4,8.089878578730417,7.723581111614413,0,3,0,0,0,-9,0,-1082.539789924894,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,40,39,15,1,0,-9,1,6.712109182423079,6.712109182423079,0,0,0,0,0,0,0,1,1,0,2.86919441207232,0,0,3,53,54,4,1,0,0,2,4,1,1008,0,0,0 +15283,18724,34123,34124,-9,-9,1,1,0,49,1,0,1,0,2,-9,1,1,0,3,6.643896007659073,6.59539446714713,0,2,0,-9,9,0,-6,48.7585298198378,0,0,0,55,2,4,1,2,2,2019,1,2,7,0,45,55,15,1,0,1,0,2.026966148074697,2.026966148074697,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.94,50.13,6,1,0,0,12,5,1,245.5,0,0,0 +15283,18724,34124,34123,-9,-9,2,1,1,55,1,0,1,0,2,-9,1,1,0,4,8.768307968782011,8.845430162994782,0,2,0,-9,9,0,6,123.6301776012746,0,0,0,49,2,3,1,2,2,2019,1,1,11,0,75,70,15,1,0,1,0,11.35461270706222,11.35461270706222,0,0,0,0,0,0,0,1,1,0,6.885564083727632,0,0,0,53.33,53.71,6,1,0,0,12,5,1,245.5,0,0,0 +15284,18725,34125,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,3,7.393841664281369,7.285292378654835,0,4,0,0,0,-9,0,-1056.144269885849,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,24,10,15,1,0,-9,0,7.95538864508762,7.95538864508762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.37,40.83,6,1,0,0,8,2,1,1374,0,0,0 +15285,18726,34126,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,3,8.869326816350618,8.696871733227519,0,3,0,0,0,-9,0,-950.3606780807607,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,38,37,15,1,0,-9,1,18.43870110413346,18.43870110413346,0,0,0,0,0,0,0,1,1,0,4.651234090927884,0,.586193703373002,3,27.74,56.23,5,1,0,0,2,5,1,725,0,0,0 +15286,18727,34127,-9,-9,-9,1,1,1,76,2,0,0,0,3,-9,4,3,0,5,0,6.87370586601153,7.074217856914853,3,0,0,0,-9,0,-994.3642904446336,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9754941350677,0,0,41.07,60.93,7,1,0,0,12,2,1,403,0,0,0 +15287,18728,34128,-9,34129,34130,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1120.329998654548,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,8,5,1,610,0,0,0 +15287,18728,34129,34130,-9,-9,2,1,0,47,1,0,2,0,1,-9,2,1,0,5,8.835642807062833,8.921921852812213,6.187658169036043,2,0,-9,19,0,-2,-3.457106677234363,0,0,0,49,1,4,1,1,1,2019,1,1,10,0,25,32,15,1,0,1,0,35.53205647722631,35.53205647722631,0,0,0,0,0,0,0,1,1,0,6.133943472324869,0,0,0,46.28,62.6,6,1,0,0,8,5,1,610,0,0,0 +15287,18728,34130,34129,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,4,8.904937577710815,8.955140568110563,0,2,0,-9,19,0,2,-11.42462139347663,0,0,0,47,1,5,1,1,1,2019,1,2,8,0,40,40,15,1,0,1,0,22.62922998028196,22.62922998028196,0,0,0,0,0,0,0,1,1,0,7.141372248114624,0,0,0,55.19,54.26,6,1,0,0,8,5,1,610,0,0,0 +15287,18728,34131,-9,34129,34130,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.6316771132085,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,5,1,610,0,0,0 +15288,18729,34132,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,2,1,0,3,8.12533570113324,7.749425724424088,0,3,0,0,0,-9,0,-1039.961323715973,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,37,38,15,1,1,-9,0,8.365251400479583,8.365251400479583,0,0,0,0,0,0,0,0,0,0,.6720527296267281,0,0,0,36.93,56.27,2,1,0,0,6,4,1,361,0,0,0 +15289,18730,34133,-9,34136,-9,11,1,1,2,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-936.1035117843786,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,1,0,656.8,0,0,0 +15289,18730,34134,-9,34136,-9,12,1,1,2,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1213.335719326287,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,1,0,656.8,0,0,0 +15289,18730,34135,-9,34136,-9,7,1,0,11,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1055.468040727503,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,5,0,0,8,1,0,656.8,0,0,0 +15289,18730,34136,-9,-9,-9,1,1,0,38,2,2,10,0,3,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1040.099471356494,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,22,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,43.54,3,1,0,0,8,1,0,656.8,0,0,0 +15289,18730,34137,-9,34136,-9,8,1,1,9,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1114.909162127576,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,8,1,0,656.8,0,0,0 +15289,18730,34138,-9,34136,-9,10,1,1,3,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-927.8921635244072,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,8,1,0,656.8,0,0,0 +15289,18730,34139,-9,34136,-9,6,1,0,13,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1061.319293512189,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,5,0,0,8,1,0,656.8,0,0,0 +15289,18730,34140,-9,34136,-9,5,1,1,15,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-929.075152134474,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,5,0,0,8,1,0,656.8,0,0,0 +15289,18730,34141,-9,34136,-9,9,1,1,7,2,2,10,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1152.024498261058,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,8,1,0,656.8,0,0,0 +15289,18730,34142,-9,34136,-9,4,1,1,16,2,2,10,0,3,-9,3,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.625955232608,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,5,1,0,8,1,0,656.8,0,0,0 +15289,18731,34143,-9,34136,-9,2,1,0,20,2,2,10,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1085.429688619594,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.14,48.85,6,5,1,1,8,1,0,172,0,0,0 +15289,18732,34144,-9,34136,-9,3,1,1,18,2,2,10,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1108.287986423676,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,6,5,1,1,8,1,0,1553,0,0,0 +15290,18733,34145,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,2,1,0,4,8.624274957873263,8.613449407927382,0,3,0,0,0,-9,0,-1046.5100896601,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,50,44,15,1,0,-9,0,14.32014386809109,14.32014386809109,0,0,0,0,0,0,0,0,0,0,7.365669533488678,0,0,0,57.16,56.15,6,1,0,0,12,5,1,627,0,0,0 +15291,18734,34146,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1036.683834998295,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,41.32,24.55,3,1,0,0,10,1,0,165,0,0,0 +15292,18735,34147,-9,-9,-9,1,1,1,49,3,0,0,0,1,-9,2,1,0,5,8.114493388334878,8.272902987164375,0,3,0,0,0,-9,0,-1055.406420982345,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,37,15,1,0,-9,0,9.739775476881453,9.739775476881453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,6,1,0,0,12,4,1,367,0,0,0 +15292,18736,34148,-9,-9,34147,2,1,1,19,2,0,0,1,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-847.8543818839127,-9,1,0,-9,-9,-9,-9,-9,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.350843346909656,0,0,0,55.43,41.03,6,1,0,0,12,1,1,407,0,0,0 +15293,18737,34149,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,3,7.712845116066962,7.859374537948464,0,3,0,0,0,-9,0,-936.5571553328989,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,37,12,15,1,0,-9,0,7.646850485051882,7.646850485051882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,6,1,0,0,4,3,0,556,0,0,0 +15294,18738,34150,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,7.270394778087353,7.377049181453878,3,0,0,0,-9,0,-1023.287505393998,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,3.13335757368351,0,0,1,1,0,0,7.142713928534113,0,0,48.89,45.33,6,1,0,0,4,3,0,263,0,0,0 +15295,18739,34151,-9,-9,-9,1,1,0,39,2,0,0,0,1,-9,2,1,0,4,9.06236697303844,9.021543172987583,0,3,0,0,0,-9,0,-1079.10058782303,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,15,5,41,40,15,1,5,-9,0,15.91702726208042,15.91702726208042,0,0,0,0,0,0,0,0,0,0,1.496281461260442,0,0,0,42.95,57.28,2,1,0,0,4,5,1,223,0,0,0 +15296,18740,34152,-9,-9,-9,1,1,1,30,2,0,0,0,1,1,2,1,0,4,8.836624875953856,8.678946840328209,0,1,0,-9,4,0,1,33.05424216656824,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,2,17,5,35,0,15,1,5,-9,0,17.23249281981298,17.23249281981298,0,0,0,0,0,0,0,0,0,0,3.14099029214777,0,0,0,33.89,62.66,4,1,0,0,8,4,0,581,0,0,0 +15297,18741,34153,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,4,7.726886064746593,7.723040509097764,0,3,0,0,0,-9,0,-964.3451886526796,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,32,30,15,1,0,-9,1,9.122695543806582,9.122695543806582,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.7,53.34,5,3,0,0,8,3,1,290,0,0,0 +15298,18742,34154,-9,-9,-9,1,1,1,42,2,0,0,0,2,-9,2,1,0,3,8.23082323419122,8.376976610060447,0,3,0,0,0,-9,0,-1061.241153916181,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,65,70,15,1,9,-9,0,7.614794940501037,7.614794940501037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,5,1,0,0,4,4,1,565,0,0,0 +15299,18743,34155,34156,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,8.172095820226788,8.216872454944273,1,0,-9,50,0,3,75.76727225378032,0,0,0,71,3,5,3,3,3,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.104143787579917,8.253811562754102,0,0,54,46,5,1,0,0,4,3,1,353.5,0,0,0 +15299,18743,34156,34155,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,50,0,-3,40.38913773150815,0,0,0,74,2,3,3,2,2,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.513068438162084,0,0,0,62.39,56.71,7,1,0,0,4,3,1,353.5,0,0,0 +15300,18744,34157,34158,-9,-9,4,1,1,62,1,0,1,0,2,-9,2,1,0,3,7.836986966077436,7.469806952125257,0,2,0,-9,4,0,7,-40.57399919754538,0,0,0,55,2,5,1,-9,-9,2019,1,1,18,7,20,0,15,1,7,1,0,12.84013639211652,12.84013639211652,0,0,0,0,0,0,0,1,1,0,6.734427777153164,0,0,0,49.69,52.99,3,1,0,0,11,4,1,894,0,0,0 +15300,18744,34158,34157,-9,-9,1,1,0,55,1,0,1,0,2,-9,1,1,0,5,7.399770066218222,8.166317108750814,8.307549311533846,2,0,-9,4,0,-7,-30.97545595187896,0,0,0,62,2,3,1,1,-9,2019,1,4,6,0,38,36,15,1,0,1,0,3.900957224152497,3.900957224152497,0,0,0,0,0,0,0,1,1,0,5.654594543972718,7.999911904430046,0,0,57.06,57.76,6,1,0,0,11,4,1,894,0,0,0 +15300,18744,34159,-9,34158,-9,3,1,1,17,2,0,1,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1021.765667574119,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,2,1,0,0,11,4,1,894,0,0,0 +15300,18745,34160,-9,34158,-9,2,1,0,19,2,0,1,0,2,-9,2,1,0,3,7.487986847927198,7.724839325131749,0,3,0,0,0,-9,0,-966.9957747038134,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,10,15,1,0,-9,1,6.912151374446523,6.912151374446523,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.72,42.53,6,1,0,0,11,3,1,117,0,0,0 +15301,18746,34161,34162,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,8.262040274915659,8.133912065316814,0,1,0,-9,6,0,-2,-104.5749482535102,0,0,0,53,2,3,1,2,2,2019,1,1,11,2,30,45,15,1,2,1,0,13.05000500191156,13.05000500191156,0,0,0,0,0,0,0,0,0,0,3.162919460055011,0,7.146193654159579,3,43.71,56.91,6,1,0,0,4,5,1,385,0,0,0 +15301,18746,34162,34161,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,7.760173030702616,7.976745048339556,5.387479683767782,1,0,-9,6,0,2,-20.08795548818079,0,0,0,51,2,3,1,2,2,2019,1,2,11,2,30,30,15,1,2,1,0,13.80947630068782,13.80947630068782,0,0,0,0,0,0,0,0,0,0,6.719943661950537,0,0,0,51.94,55.88,6,1,0,0,4,5,1,385,0,0,0 +15302,18747,34163,34164,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,53,0,0,-36.44397610911584,0,0,0,76,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.78,39.92,6,1,0,0,12,3,1,782,0,0,0 +15302,18747,34164,34163,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,2,0,7.748642186310712,7.873759482343778,1,0,-9,53,0,0,93.13544332673507,0,0,0,76,3,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.735963143334969,0,0,45.31,34.97,4,1,0,0,12,3,1,782,0,0,0 +15303,18748,34165,34166,-9,-9,1,1,0,76,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,9,0,19,52.78925951903084,0,0,0,57,1,3,1,2,2,2019,3,2,13,2,0,0,15,4,2,1,0,0,0,1,0,.1358618587444589,0,0,0,0,1,1,0,0,0,0,0,46.5,21.71,6,1,0,0,2,2,1,715.5,0,0,0 +15303,18748,34166,34165,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,7.230549180420798,7.048891922734095,0,1,0,-9,9,0,-19,13.14153009389114,0,0,0,76,3,1,3,3,3,2019,2,1,12,1,0,0,15,1,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.63307385946009,1,42.13,53.75,5,1,0,0,2,2,1,715.5,0,0,0 +15304,18749,34167,34168,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,5.331172781665692,5.528618007017209,1,0,-9,48,0,-5,-31.94820645466001,0,0,0,76,2,3,3,-9,-9,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.599259410723418,5.257231830903031,0,0,51.98,51.67,6,1,0,0,12,2,1,453,0,0,0 +15304,18749,34168,34167,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.272389217932432,7.410040610625598,1,0,-9,48,0,5,56.15763945616544,0,0,0,71,2,4,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.021198233118916,7.288792054611799,0,0,43.3,43.51,5,1,0,0,12,2,1,453,0,0,0 +15305,18750,34169,34171,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.205745793351378,8.688115389295902,0,2,0,-9,23,0,2,-46.56430532403154,0,0,0,45,2,2,1,2,1,2019,1,1,11,2,36,36,15,1,2,1,0,12.28550630426991,12.28550630426991,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,6,1,0,0,8,3,1,920,0,0,0 +15305,18750,34170,-9,34171,34169,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.9876726319766,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,8,3,1,920,0,0,0 +15305,18750,34171,34169,-9,-9,1,1,0,45,1,0,2,0,2,-9,2,1,0,2,7.173807443004335,7.117544047107147,0,2,0,-9,22,0,-2,54.40406071662929,0,0,0,47,2,4,1,2,2,2019,1,2,22,11,17,17,15,1,11,1,0,9.350514763091411,9.350514763091411,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.97,60.5,5,1,0,0,8,3,1,920,0,0,0 +15305,18750,34172,-9,34171,34169,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.2555104755106,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,3,1,920,0,0,0 +15306,18751,34173,34174,-9,-9,2,1,0,34,1,0,1,0,2,-9,2,1,0,1,6.869620571980095,7.051268063194659,0,2,0,-9,11,0,-2,-15.29320976773906,0,0,1,36,2,4,1,3,3,2019,1,1,21,8,16,19,15,1,8,1,0,10.28015668291512,10.28015668291512,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.8,36.49,2,1,0,0,10,3,1,947.6666666666666,0,0,0 +15306,18751,34174,34173,-9,-9,1,1,1,36,1,0,1,0,2,-9,2,1,0,4,8.170716164153978,7.989192754286935,0,2,0,-9,11,0,2,-47.70914412296047,0,0,0,34,2,1,1,2,-9,2019,1,2,10,2,47,47,15,1,2,1,0,10.2001609648279,10.2001609648279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,55.39,5,1,0,0,10,3,1,947.6666666666666,0,0,0 +15306,18751,34175,-9,34173,34174,3,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.218976414797,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,3,1,947.6666666666666,0,0,0 +15307,18752,34176,34177,-9,-9,1,1,1,57,1,0,0,0,1,-9,2,1,0,2,7.772482838081961,8.158182526339832,5.976195971592789,1,0,-9,31,0,5,21.41322552933059,0,0,0,52,2,3,1,2,2,2019,1,2,6,0,30,30,15,1,0,1,0,8.671408352728811,8.671408352728811,0,0,0,0,0,0,0,1,1,0,.8962604436126453,5.587399088041468,0,0,61.85,34.03,6,1,0,0,1,5,0,424.5,0,0,0 +15307,18752,34177,34176,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.597836489004081,8.570157375218241,0,1,0,-9,31,0,-5,-25.36562932806862,0,0,0,57,1,2,1,2,-9,2019,1,1,12,0,37,37,15,1,0,1,0,19.77354285860822,19.77354285860822,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,34.29,6,1,0,0,1,5,0,424.5,0,0,0 +15307,18753,34178,-9,34177,34176,3,1,0,24,2,0,0,0,1,1,2,1,0,4,8.555703795353208,8.410630641237679,0,3,0,0,0,-9,0,-1103.81398175294,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,37,0,15,1,1,-9,1,15.1715439662398,15.1715439662398,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,0,1,4,0,381,0,0,0 +15308,18754,34179,34181,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,4,9.548094949788311,9.498804286507564,0,2,0,-9,9,0,2,-.6608736921360583,0,0,0,47,2,3,1,-9,-9,2019,1,1,7,0,81,84,15,1,0,1,0,19.38891213514257,19.38891213514257,0,0,0,0,0,0,0,1,1,0,3.684068677896293,0,0,0,59.53,56.44,6,1,0,0,10,5,1,794,0,0,0 +15308,18754,34180,-9,34181,34179,3,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-916.5012616878777,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,10,5,1,794,0,0,0 +15308,18754,34181,34179,-9,-9,1,1,0,47,1,0,1,0,2,-9,2,1,0,3,6.703592042483547,6.887752728717558,0,2,0,-9,9,0,-2,-58.09101361744565,0,0,0,49,1,4,1,2,2,2019,1,2,9,0,24,12,15,1,0,1,0,3.84698654950898,3.84698654950898,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,5,1,0,0,10,5,1,794,0,0,0 +15309,18755,34182,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-1053.044096293575,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,26.56811977993728,0,0,1,1,0,0,0,0,3,44.35,29.98,4,1,0,1,7,1,0,208,0,0,0 +15309,18756,34183,-9,34182,-9,2,1,1,42,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-984.3202831566784,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.21571472918468,3,54.13,24.11,3,1,0,1,7,1,0,226,0,0,0 +15310,18757,34184,-9,34188,34186,4,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-906.6627849507812,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,3,0,565.6,0,0,0 +15310,18757,34185,-9,34188,34186,3,1,1,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-967.2279037203067,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,11,3,0,565.6,0,0,0 +15310,18757,34186,34188,-9,-9,6,1,1,54,1,0,3,0,2,-9,2,1,0,3,8.427830918448615,8.5452637678392,0,2,0,-9,5,0,4,-51.2782475313114,0,0,0,50,2,4,3,-9,-9,2019,2,1,11,0,39,39,15,1,0,3,0,14.34258062601472,14.34258062601472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.01,48.98,4,1,0,0,11,3,0,565.6,0,0,0 +15310,18757,34187,-9,34188,34186,2,1,0,15,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-979.7246076232573,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,6,1,0,0,11,3,0,565.6,0,0,0 +15310,18757,34188,34186,-9,-9,1,1,0,50,1,0,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,5,0,-4,52.77806088350965,0,0,0,54,2,3,1,3,2,2019,3,6,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,1,0,0,11,3,0,565.6,0,0,0 +15310,18758,34189,-9,34188,34186,5,1,1,23,2,0,3,0,2,-9,2,1,0,3,7.653180352179852,8.086756912754982,0,3,0,0,0,-9,0,-973.12629544427,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,40,15,1,0,-9,1,6.919683893018791,6.919683893018791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,5,1,0,0,11,3,0,1236,0,0,0 +15311,18759,34190,34191,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,43,0,-10,69.06311490216353,0,0,0,72,2,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.238412571131795,0,0,0,57.06,57.76,6,1,0,0,10,3,1,670.5,0,0,0 +15311,18759,34191,34190,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,4,6.65181358364066,7.300973153268672,7.350177878818506,1,0,-9,43,0,10,46.22219463113385,0,0,0,62,2,5,3,2,2,2019,4,2,6,0,4,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.952541171826625,7.095706291865829,0,0,57.16,56.15,6,1,0,0,10,3,1,670.5,0,0,0 +15312,18760,34192,34194,-9,-9,1,1,1,38,1,0,3,0,3,-9,1,1,0,4,7.985146335617484,7.718468822816725,0,2,0,-9,9,0,1,67.22996453260822,0,0,0,37,2,4,1,-9,-9,2019,1,2,10,0,40,50,15,1,1,1,0,5.7732476076934,5.7732476076934,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,1,0,0,13,2,0,613.6,0,0,0 +15312,18760,34193,-9,34194,34192,3,1,0,17,2,0,3,0,3,-9,9,3,0,5,0,0,0,2,0,0,0,-9,0,-1105.902341806323,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.71,60.6,1,1,0,0,13,2,0,613.6,0,0,0 +15312,18760,34194,34192,-9,-9,2,1,0,37,1,0,3,0,2,-9,2,1,0,4,.0669315065916103,0,0,2,0,-9,14,0,-1,-63.25026185727558,0,0,1,38,3,4,1,2,3,2019,1,1,9,0,3,4,15,1,0,1,0,.0062322408098192,.0062322408098192,0,0,0,0,0,0,0,1,1,0,0,0,21.71639001768464,3,51.24,58.84,6,1,0,0,13,2,0,613.6,0,0,0 +15312,18760,34195,-9,34194,34192,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.968840369017,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,2,0,613.6,0,0,0 +15312,18760,34196,-9,34194,34192,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.94423512549,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,2,0,613.6,0,0,0 +15313,18761,34197,34198,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,3,7.880999984058234,8.297036243112144,0,1,0,-9,9,0,-8,48.7523652336444,0,0,0,62,2,3,1,3,3,2019,1,2,11,0,30,37,15,1,0,1,0,11.1694135053466,11.1694135053466,0,0,0,0,0,0,0,0,0,0,3.595023890808329,0,8.481543557526766,3,52.26,47.71,6,1,0,0,1,5,1,493.5,0,0,0 +15313,18761,34198,34197,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.035471035791559,8.39241050062725,7.591986054518386,1,0,-9,9,0,8,-42.35386826381523,0,0,0,54,2,3,1,3,3,2019,1,1,10,0,40,40,15,1,0,1,0,8.208086035162902,8.208086035162902,0,0,0,0,0,0,0,0,0,0,3.652123137547875,7.531631651691333,0,0,52.99,51.28,6,1,0,0,1,5,1,493.5,0,0,0 +15314,18762,34199,34200,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,8,0,3,25.40953170271231,0,0,0,67,1,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,13.47114165312984,3,36.65,30.75,3,1,0,1,12,3,0,434.5,0,0,0 +15314,18762,34200,34199,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,7.267603465060493,7.822128316826451,1,0,-9,8,0,-3,-55.00865393380381,0,0,0,70,2,1,3,2,2,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.447650872653702,7.785572084344391,9.09059639978075,2,43.46,43.58,6,1,0,0,12,3,0,434.5,0,0,0 +15315,18763,34201,-9,-9,-9,1,1,1,79,3,0,0,0,2,-9,4,3,0,5,0,5.833116228752531,5.806473765642831,3,0,0,0,-9,0,-1110.947250031181,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.308461594999828,6.190105160534928,12.06066872282975,3,53.51,60.74,6,1,0,0,9,2,1,195,0,0,0 +15316,18764,34202,34203,-9,-9,2,1,0,55,1,0,2,0,3,-9,2,1,0,2,5.165061577685892,5.441770531994492,0,2,0,-9,30,0,-2,61.37248871010087,0,0,0,57,3,2,1,3,3,2019,1,1,16,5,5,5,15,1,5,1,0,4.577467580932757,4.577467580932757,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.46,44.67,3,1,0,0,13,3,1,279.5,0,0,0 +15316,18764,34203,34202,-9,-9,1,1,1,57,1,0,2,0,3,-9,2,1,0,2,8.06083328303505,7.999709890366842,0,2,0,-9,31,0,2,70.78909157036992,0,0,0,55,3,2,1,3,3,2019,1,2,11,0,37,0,15,1,0,1,0,8.8637006770497,8.8637006770497,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,39,6,1,0,0,13,3,1,279.5,0,0,0 +15316,18764,34204,-9,34202,34203,4,1,1,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-924.888230233496,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.39,42.39,6,1,0,0,13,3,1,279.5,0,0,0 +15316,18764,34205,-9,34202,34203,5,1,0,17,2,0,2,1,2,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1066.678365753489,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,6,1,0,0,13,3,1,279.5,0,0,0 +15316,18765,34206,-9,34202,34203,3,1,0,22,2,0,2,0,1,1,2,1,0,4,7.820859726760483,7.852986818487208,0,3,0,0,0,-9,0,-1080.34069910888,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,0,15,1,0,-9,1,9.536698105841289,9.536698105841289,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.12,59.65,4,1,0,0,13,3,1,416,0,0,0 +15317,18766,34207,-9,-9,-9,1,1,0,64,3,0,0,0,1,-9,4,3,0,4,0,4.178940724736227,4.47827509006061,3,0,0,0,-9,0,-1067.627528859842,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.505911286431941,4.11158406611252,.2814964885158879,3,57.74,49,6,1,0,0,10,2,1,1976,0,0,0 +15318,18767,34208,-9,34211,34210,3,1,0,14,2,2,6,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-905.9459663978178,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34209,-9,34211,34210,8,1,0,1,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.8482865207507,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34210,34211,-9,-9,2,1,1,34,1,2,6,0,2,-9,2,1,0,4,7.922085698603349,7.86823780550096,0,2,0,-9,16,0,0,56.93241040976714,0,0,0,34,3,4,3,3,3,2019,2,1,6,0,40,55,15,1,0,3,0,7.621455497278201,7.621455497278201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34211,34210,-9,-9,1,1,0,34,1,2,6,0,3,-9,6,3,0,4,0,0,0,2,0,-9,6,0,0,-55.09330309680423,0,0,1,34,2,4,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,7,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34212,-9,34211,34210,7,1,1,2,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1007.988836248025,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34213,-9,34211,34210,6,1,0,6,2,2,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1118.822316145428,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34214,-9,34211,34210,4,1,0,12,2,2,6,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1043.66290854477,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,3,0,0,2,2,1,814.625,0,0,0 +15318,18767,34215,-9,34211,34210,5,1,1,10,2,2,6,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1162.162176885424,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,3,0,0,2,2,1,814.625,0,0,0 +15319,18768,34216,-9,-9,-9,1,1,0,51,2,0,2,0,3,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-1066.768231391514,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,38,5,4,0,0,8,1,0,914.3333333333334,0,0,0 +15319,18768,34217,-9,34216,-9,3,1,0,17,2,0,2,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1036.19328109619,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,4,0,0,8,1,0,914.3333333333334,0,0,0 +15319,18768,34218,-9,34216,-9,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-928.687790589568,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,1,0,914.3333333333334,0,0,0 +15319,18769,34219,-9,34216,-9,2,1,0,23,2,0,2,0,1,1,3,3,0,1,4.386227189262487,4.982979255017017,0,3,0,0,0,-9,0,-1106.439813665105,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,18,5,0,0,15,3,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.38,47.15,3,4,1,1,8,1,0,369,0,0,0 +15320,18770,34220,34222,-9,-9,1,1,1,31,1,1,1,0,1,-9,2,1,0,3,8.374019638997627,8.148407207274792,0,2,0,-9,7,0,0,-37.6041387970554,0,0,0,31,1,4,1,2,1,2019,1,2,9,1,39,39,15,1,1,1,0,13.02759352910767,13.02759352910767,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,13,5,1,1056,0,0,0 +15320,18770,34221,-9,34222,34220,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.6192418196035,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,5,1,1056,0,0,0 +15320,18770,34222,34220,-9,-9,2,1,0,31,1,1,1,0,1,-9,2,1,0,4,8.647617084175875,8.682434048976571,0,2,0,-9,7,0,0,-10.4722039367595,0,0,1,31,1,3,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,15.47209785398047,15.47209785398047,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,57.44,5,1,0,0,13,5,1,1056,0,0,0 +15321,18771,34223,34224,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,4,0,0,0,1,0,-9,19,0,3,-41.18094137317918,0,0,0,56,1,3,3,2,2,2019,2,2,13,4,0,6,15,1,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,0,8,4,1,491.5,0,0,0 +15321,18771,34224,34223,-9,-9,2,1,0,56,1,0,0,0,1,-9,4,3,0,3,7.555031096705037,8.701455527842626,8.288192843653217,1,0,-9,29,0,-3,92.20458237517742,0,0,0,59,1,4,1,3,2,2019,3,1,12,0,14,43,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.431896127763443,8.148093226077799,0,0,38.51,59.43,6,1,0,0,8,4,1,491.5,0,0,0 +15321,18772,34225,-9,34224,34223,3,1,1,25,2,0,0,0,1,-9,2,1,0,4,8.832893826170858,8.48687731618238,0,3,0,0,0,-9,0,-971.2022001543471,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,35,47,15,1,0,-9,1,23.1725394485033,23.1725394485033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.15,57.46,5,1,0,0,8,5,1,469,0,0,0 +15321,18773,34226,-9,34224,34223,4,1,1,20,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1073.382385923526,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,2,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,6,1,0,0,8,1,1,171,0,0,0 +15322,18774,34227,34228,-9,-9,2,1,1,69,1,0,0,0,2,-9,4,3,0,3,0,7.33864995151936,7.28500686899781,1,0,-9,8,0,2,-14.91220975600342,0,0,0,67,3,2,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.845366975538823,0,0,54.96,53.17,6,1,0,0,1,2,1,347,0,0,0 +15322,18774,34228,34227,-9,-9,1,1,0,67,1,0,0,0,3,-9,6,3,0,2,0,1.230706106437222,1.391656188488507,1,0,-9,50,0,-2,94.53110607132324,0,0,0,69,2,3,3,3,3,2019,4,2,11,0,0,0,15,3,0,4,0,0,0,1,0,6.687875989408146,0,0,0,0,1,1,0,0,1.325950268856875,0,0,55.95,36.7,6,1,0,0,1,2,1,347,0,0,0 +15323,18775,34229,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,-9,0,1,0,-1031.108529781957,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.97,48.55,3,1,0,1,7,1,1,1100,0,0,0 +15324,18776,34230,34231,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,6.029488000175204,6.277298898889702,1,0,-9,7,0,13,112.666153128645,0,0,0,69,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.460986068953985,122.1539994079913,1,56.18,45.98,6,1,0,0,13,2,0,1021,0,0,0 +15324,18776,34231,34230,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-13,-45.38285909968335,-9,0,0,82,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.195269477930887,0,0,0,50,47,5,1,0,0,13,2,0,1021,0,0,0 +15325,18777,34232,34233,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,2,8.655923060377702,8.066436435590523,0,1,0,-9,10,0,-5,32.20388520842412,0,0,0,59,2,1,3,3,3,2019,2,1,36,12,55,55,15,1,12,3,0,10.86409246304354,10.86409246304354,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.56,61.34,3,1,0,0,2,4,1,1211.5,0,0,0 +15325,18777,34233,34232,-9,-9,1,1,0,59,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,10,0,5,60.06729263023355,0,0,0,54,2,2,1,3,3,2019,3,2,35,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,2,1,0,0,2,4,1,1211.5,0,0,0 +15326,18778,34234,34235,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.600080414060365,8.509981345635662,0,1,0,-9,3,0,1,66.93618836610479,0,1,0,28,1,3,1,1,1,2019,1,2,11,1,43,44,15,1,1,1,0,19.57509434797645,19.57509434797645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,6,1,0,0,9,5,1,576.5,0,0,0 +15326,18778,34235,34234,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,3,8.520298650249805,8.421356496350908,0,1,0,-9,3,0,-1,-82.78567001661742,0,1,1,29,1,4,1,-9,-9,2019,1,1,11,1,55,94,15,1,1,1,0,11.00705117947348,11.00705117947348,0,0,0,0,0,0,0,0,0,0,3.169956707088857,0,0,0,30.7,54.89,6,1,0,0,9,5,1,576.5,0,0,0 +15327,18779,34236,-9,34238,34237,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1004.96717650593,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,11,4,1,569.75,0,0,0 +15327,18779,34237,34238,-9,-9,1,1,1,32,1,1,2,0,1,-9,2,1,0,3,8.237276015192032,8.438963103683514,0,2,0,-9,7,0,3,46.51067209258353,0,0,0,29,2,5,1,3,2,2019,1,2,11,0,40,0,15,1,0,1,0,12.96599032573294,12.96599032573294,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,1,0,0,11,4,1,569.75,0,0,0 +15327,18779,34238,34237,-9,-9,2,1,0,29,1,1,2,0,2,-9,2,1,0,5,7.603407737618108,7.766724013252835,0,2,0,-9,7,0,-3,51.65089254078083,0,1,1,32,1,3,1,-9,-9,2019,1,1,11,0,24,24,15,1,0,1,0,13.09181866865625,13.09181866865625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,61.22,4,1,0,0,11,4,1,569.75,0,0,0 +15327,18779,34239,-9,34238,34237,3,1,0,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1095.586869562461,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,11,4,1,569.75,0,0,0 +15328,18780,34240,-9,-9,-9,1,1,0,31,3,0,2,0,2,-9,2,1,0,4,8.89906920633393,9.004523687748733,6.696175213938438,4,0,-9,0,1,0,-884.2276490407611,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,11,35,50,15,1,11,-9,0,23.34980055438463,23.34980055438463,0,0,0,0,0,0,0,1,1,0,6.718067591301053,0,0,0,23.02,66.47,5,1,0,0,11,5,1,384.3333333333333,0,0,0 +15328,18780,34241,-9,34240,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.3719254426878,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,5,1,384.3333333333333,0,0,0 +15328,18780,34242,-9,34240,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-994.6292954828779,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,5,1,384.3333333333333,0,0,0 +15329,18781,34243,34244,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.328292026400531,8.11905038014895,0,1,0,-9,9,0,-10,75.67676704867016,0,0,0,57,2,2,1,-9,-9,2019,1,2,9,0,45,42,15,1,0,1,0,8.580060007704656,8.580060007704656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,12,4,0,766.5,0,0,0 +15329,18781,34244,34243,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,2,7.503189473313324,7.598241106255234,0,1,0,-9,9,0,10,-50.73763364125395,0,0,0,47,2,4,1,-9,-9,2019,1,1,9,0,45,42,15,1,0,1,0,4.206370795539659,4.206370795539659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.52,42.41,4,1,0,0,12,4,0,766.5,0,0,0 +15330,18782,34245,34246,-9,-9,1,1,1,56,1,0,0,0,1,-9,4,3,0,4,0,9.904142866585529,9.272557777905231,1,0,-9,31,0,1,21.75350987217663,0,0,0,55,2,4,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9.504726410602036,8.994805426271041,0,0,58.15,52.91,6,1,0,0,9,5,1,955,0,0,0 +15330,18782,34246,34245,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,4,7.597827565757109,7.408371011882127,0,1,0,-9,31,0,-1,-85.68250137273768,0,0,0,56,1,4,3,2,2,2019,2,1,11,1,25,25,15,1,1,4,0,7.146186235611595,7.146186235611595,0,0,0,0,0,0,0,0,0,0,2.372551420468568,0,0,0,54.2,57.49,6,1,0,0,9,5,1,955,0,0,0 +15331,18783,34247,34248,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,8.561524233198901,8.321204588521031,1,0,-9,49,0,1,-10.49403084258467,0,0,0,68,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.625896198994916,8.407410380489507,0,0,51.83,57.2,6,1,0,0,9,4,1,169,0,0,0 +15331,18783,34248,34247,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,2,0,6.409529207708577,6.690070511013798,1,0,-9,49,0,-1,93.58816418195384,0,0,0,69,2,4,3,-9,-9,2019,4,1,17,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.188830357560257,6.644774963721109,0,0,48.02,37.72,4,1,0,0,9,4,1,169,0,0,0 +15332,18784,34249,-9,-9,-9,1,1,1,99,3,0,0,0,3,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-974.159669201174,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,1.210542930548549,0,0,0,0,0,1,1,0,0,0,0,0,54.87,37.88,6,1,0,0,13,1,0,2843,0,0,0 +15333,18785,34250,34251,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,6.963470685527436,7.251774869676511,0,1,0,-9,40,0,-1,-5.897586384701324,0,0,0,58,3,3,1,-9,-9,2019,1,2,7,0,20,26,15,1,0,1,0,6.084961934037985,6.084961934037985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,7,3,1,900.5,0,0,0 +15333,18785,34251,34250,-9,-9,2,1,1,58,1,0,0,0,3,-9,2,1,0,3,7.390089942389592,7.303776604804299,0,1,0,-9,40,0,1,-75.8530539132251,0,0,0,57,2,4,1,-9,-9,2019,1,1,6,0,25,20,15,1,0,1,0,7.360800307225063,7.360800307225063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,5,1,0,0,7,3,1,900.5,0,0,0 +15334,18786,34252,34253,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,4,8.150270246414966,8.07200396255168,0,2,0,-9,12,0,3,39.7998646587226,0,0,0,35,2,5,1,-9,-9,2019,1,1,9,0,40,47,15,1,1,1,0,13.37951934085726,13.37951934085726,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,5,4,1,1731.25,0,0,0 +15334,18786,34253,34252,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,5,7.933053863785466,7.948693661811268,0,2,0,-9,11,0,-3,7.282523343372403,0,0,1,38,2,4,1,-9,-9,2019,1,2,10,2,21,21,15,1,2,1,0,14.58247408194666,14.58247408194666,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,5,4,1,1731.25,0,0,0 +15334,18786,34254,-9,34253,34252,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.0597987442001,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,1731.25,0,0,0 +15334,18786,34255,-9,34253,34252,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.185506406335,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,1731.25,0,0,0 +15335,18787,34256,34258,-9,-9,1,1,1,50,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,18,0,0,0,0,0,0,50,3,1,3,-9,-9,2019,4,2,26,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.79487585000983,3,30.91,22.6,4,1,0,1,7,1,0,1098.75,0,0,0 +15335,18787,34257,-9,34258,34256,4,1,0,17,2,0,1,1,2,0,7,2,0,4,7.426345806419887,7.362689957193829,4.915920665037379,2,0,0,0,-9,0,-1064.148983313806,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,25,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.478645204700917,0,29.46638459074507,3,54.2,57.49,6,1,0,0,7,1,0,1098.75,0,0,0 +15335,18787,34258,34256,-9,-9,2,1,0,50,1,0,1,0,3,-9,6,3,0,1,0,0,0,2,0,-9,19,0,0,0,0,0,0,50,3,1,3,2,2,2019,4,1,13,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,126.3125611041692,2,46.16,35.96,4,1,0,1,7,1,0,1098.75,0,0,0 +15335,18787,34259,-9,34258,34256,5,1,0,13,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-970.7114997514625,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,7,1,0,1098.75,0,0,0 +15335,18788,34260,-9,34258,34256,3,1,0,18,2,0,1,0,2,-9,2,1,0,3,7.638098291662332,7.922822684516019,0,3,0,0,0,-9,0,-979.4268481181808,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,11,3,43,0,15,1,3,-9,1,6.544937422831453,6.544937422831453,0,0,0,0,0,0,0,1,1,0,5.536297188234781,0,1.577764212148901,3,32.76,65.84,5,1,0,0,7,3,0,2700,0,0,0 +15336,18789,34261,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,8,3,1,1,0,0,0,4,0,0,0,-9,0,-1082.663031840553,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.76,28.13,4,1,0,0,1,1,0,79,0,0,0 +15337,18790,34262,34264,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,3,9.123874084028637,9.251634975881277,0,2,0,-9,8,0,0,-122.021740894247,0,0,0,43,1,4,1,2,2,2019,1,2,10,1,59,40,15,1,1,1,0,17.13398018397709,17.13398018397709,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.12,42.1,6,1,0,0,7,5,1,726.3333333333334,0,0,0 +15337,18790,34263,-9,34264,34262,4,1,0,14,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1041.247374651265,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,7,5,1,726.3333333333334,0,0,0 +15337,18790,34264,34262,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.892452361441332,8.793293889841346,0,2,0,-9,8,0,0,-181.3663273334504,0,0,1,43,2,3,1,2,3,2019,1,1,20,6,50,59,15,1,6,1,0,18.46100222596313,18.46100222596313,0,0,0,0,0,0,0,1,1,0,.8582527102271672,0,0,0,42.38,49.16,5,1,0,0,7,5,1,726.3333333333334,0,0,0 +15337,18791,34265,-9,34264,34262,3,1,1,18,2,0,2,1,2,0,7,2,0,4,7.061937953472992,6.804918466874626,0,3,0,0,0,-9,0,-924.572833664936,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,14,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.655070084019697,0,0,0,45.34,57.55,5,1,0,0,7,5,1,183,0,0,0 +15338,18792,34266,34267,-9,-9,4,1,0,27,1,0,0,0,2,-9,2,1,0,5,6.249475970353113,6.484668768767746,0,1,0,-9,2,0,2,22.44475316428924,0,1,1,25,2,3,1,-9,-9,2019,1,1,8,3,16,0,15,1,3,1,0,4.644890682364808,4.644890682364808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,53.67,4,3,0,0,6,3,0,611.5,0,0,0 +15338,18792,34267,34266,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,3,7.862751268212397,8.194486008564084,0,1,0,-9,2,0,-2,-25.268405731427,0,1,0,27,2,5,1,-9,3,2019,1,4,7,1,60,37,15,1,1,1,0,6.577164496046128,6.577164496046128,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,46.99,6,3,0,0,6,3,0,611.5,0,0,0 +15338,18793,34268,34269,-9,-9,3,1,0,26,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,4,0,1,18.18699065807782,0,1,1,25,2,5,1,-9,-9,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.65,30.37,5,3,0,0,6,2,0,1228,0,0,0 +15338,18793,34269,34268,-9,-9,2,1,1,25,1,0,0,0,2,-9,2,1,0,5,7.619282237060346,7.454526864836186,0,1,0,-9,4,0,-1,84.76163721458656,0,1,0,26,2,3,3,-9,3,2019,2,3,5,0,50,43,15,1,0,3,0,4.612107706547453,4.612107706547453,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.11,59.91,6,3,0,0,6,2,0,1228,0,0,0 +15339,18794,34270,34271,-9,-9,1,1,0,49,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,32,0,-3,-27.98995182949138,0,0,0,52,2,2,1,3,-9,2019,3,2,8,0,0,21,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,6,3,0,1188.5,0,0,0 +15339,18794,34271,34270,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,2,8.268381928198854,8.213805173390485,0,1,0,-9,32,0,3,-39.33390831840067,0,0,0,49,3,3,3,3,3,2019,2,1,20,7,40,40,15,1,7,3,0,10.13594431942423,10.13594431942423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,35.48,3,1,0,0,6,3,0,1188.5,0,0,0 +15340,18795,34272,-9,-9,-9,1,1,0,69,2,0,0,0,1,-9,4,3,0,5,0,8.480509518144151,8.75448636535846,3,0,0,0,-9,0,-1049.722666351568,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.874950269831392,8.675518830563641,0,0,59.43,58.05,6,1,0,0,9,5,1,885,0,0,0 +15341,18796,34273,34274,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,2,8.521865536135426,8.550973758766951,0,2,0,-9,2,0,0,-.3710315487117189,0,0,0,47,2,4,1,3,3,2019,1,2,19,8,35,35,15,1,8,1,0,13.21374952511307,13.21374952511307,0,0,0,0,0,0,0,1,1,0,0,0,10.68541561265277,3,43,39,2,1,0,1,12,4,1,198.5,0,0,0 +15341,18796,34274,34273,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.211968968994517,8.289279039643809,0,2,0,-9,2,0,0,-51.39247431001423,0,0,0,47,2,2,1,2,2,2019,1,1,10,0,44,49,15,1,0,1,0,8.745203965112502,8.745203965112502,0,0,0,0,0,0,0,1,1,0,0,0,11.8537125186859,3,49.35,59.64,6,1,0,0,12,4,1,198.5,0,0,0 +15342,18797,34275,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,4,0,8.231359390872422,8.347741307909164,3,0,0,0,-9,0,-872.5141581761984,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.999783356651393,8.359328657580434,0,0,54.74,57.22,7,1,0,0,2,4,1,526,0,0,0 +15343,18798,34276,34277,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,2,6.686519101108482,6.122697201562608,0,1,0,-9,22,0,-2,9.226480460402666,0,0,0,55,2,3,1,-9,-9,2019,1,1,12,1,14,17,15,1,1,1,0,5.09872572188111,5.09872572188111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.52,22.54,3,1,0,1,2,2,1,2076,0,0,0 +15343,18798,34277,34276,-9,-9,1,1,1,55,1,0,0,0,2,-9,2,1,0,3,6.973125009995258,7.21301665313567,0,1,0,-9,22,0,2,54.33412890753653,0,0,0,53,2,2,1,-9,-9,2019,1,2,6,0,25,26,15,1,0,1,0,5.27410724952507,5.27410724952507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,1,0,1,2,2,1,2076,0,0,0 +15344,18799,34278,34279,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,3,0,7.614143569050094,7.348493739491165,1,0,-9,50,0,-1,-51.05532477236302,0,0,0,72,1,4,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.584748628887087,7.748550202885163,0,0,50,47,5,1,0,0,6,4,1,639.5,0,0,0 +15344,18799,34279,34278,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,7.755494852289056,7.980991367382773,1,0,-9,50,0,1,-1.370683442074747,0,0,0,71,2,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.546349906798263,8.01028635049194,0,0,59.05,42.91,7,1,0,0,6,4,1,639.5,0,0,0 +15345,18800,34280,34281,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,4,0,5.505743070738842,5.341529478909368,1,0,-9,46,0,-7,20.30252732507204,0,0,0,78,2,3,3,1,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.487287018269989,5.473313557332145,0,0,57.92,35.42,6,1,0,0,7,2,1,649,0,0,0 +15345,18800,34281,34280,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,6.972243073161513,7.219026213141564,1,0,-9,46,0,7,57.81562131919308,0,0,0,71,1,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.538940131593169,6.786094916576944,0,0,57.31,45.44,5,1,0,0,7,2,1,649,0,0,0 +15345,18801,34282,-9,34280,34281,3,1,1,32,2,0,0,0,2,-9,2,1,0,4,7.975075486453697,8.097426595147049,0,3,0,0,0,-9,0,-920.7196194108124,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,36,35,15,1,1,-9,1,7.39726823919142,7.39726823919142,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,5,1,0,0,7,3,1,1505,0,0,0 +15346,18802,34283,34284,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,6.99993090711886,7.006187556291011,1,0,-9,7,0,0,15.59533538663803,0,0,0,70,1,3,3,2,2,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,10.21637991262218,6.455081860022492,0,0,48.53,58.91,6,1,0,0,9,5,1,1019.5,0,0,0 +15346,18802,34284,34283,-9,-9,1,1,1,70,1,0,0,0,1,-9,4,3,0,3,0,9.293929459413024,9.343845837917701,1,0,-9,7,0,0,-141.6739849230668,0,0,0,70,2,4,3,2,1,2019,4,2,23,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.489697244862711,8.705672621402933,0,0,41.23,59.35,6,1,0,0,9,5,1,1019.5,0,0,0 +15347,18803,34285,34286,-9,-9,1,1,1,80,1,0,0,0,1,-9,4,3,0,3,0,7.58205140617317,7.684530795862855,1,0,-9,7,0,1,72.67763725651311,0,0,0,79,1,4,3,2,1,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.205598186021335,7.938129697354547,0,0,45.78,51.81,6,1,0,0,13,4,1,547,0,0,0 +15347,18803,34286,34285,-9,-9,2,1,0,79,1,0,0,0,1,-9,4,3,0,4,0,7.467270399467457,7.453263922111381,1,0,-9,7,0,-1,-13.67854715183185,0,0,0,80,1,3,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.937234553752847,7.426579982348466,0,0,57.16,56.15,6,1,0,0,13,4,1,547,0,0,0 +15348,18804,34287,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,2,1,0,5,8.76982216791885,8.751596590415657,6.582686545869164,3,0,0,0,-9,0,-1019.42021066606,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,46,42,15,1,0,-9,0,24.28367663116266,24.28367663116266,0,0,0,0,0,0,0,1,1,0,6.286604347265155,6.981888189900889,9.734486861815029,3,40.86,62.75,1,1,0,0,12,5,1,1207,0,0,0 +15349,18805,34288,34289,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,5,8.891460847596893,8.382355411598677,0,1,0,-9,6,0,-11,23.77501456793572,0,0,0,64,3,3,1,2,1,2019,1,2,9,0,53,52,15,1,0,1,0,12.88385460582061,12.88385460582061,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.2,54.53,6,1,0,0,6,4,1,391.5,0,0,0 +15349,18805,34289,34288,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,3,7.094588972142808,6.719012168329684,0,1,0,-9,6,0,11,-189.2624620199049,0,0,0,53,2,5,1,3,3,2019,1,1,6,0,20,20,15,1,0,1,0,6.099144365093538,6.099144365093538,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,6,4,1,391.5,0,0,0 +15350,18806,34290,-9,-9,-9,1,1,0,44,3,0,1,0,2,-9,2,1,0,2,7.796400518550089,8.023844080927603,0,4,0,0,0,-9,0,-1046.041549098644,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,8,40,35,15,1,8,-9,0,6.996143439746997,6.996143439746997,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,29.02,5,1,0,0,10,3,0,962.5,0,0,0 +15350,18806,34291,-9,34290,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-945.1651504038298,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,0,962.5,0,0,0 +15351,18807,34292,-9,-9,-9,1,1,0,63,2,0,0,0,3,-9,2,1,0,2,7.307864759193471,7.322776246837865,6.150241346314067,3,0,0,0,-9,0,-911.4705303382216,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,22,10,22,23,15,1,10,-9,0,6.577756611361493,6.577756611361493,0,0,0,0,0,0,0,1,1,0,1.002412498930497,5.751937390750658,0,0,40.38,34.42,5,1,0,0,4,3,0,1172,0,0,0 +15352,18808,34293,-9,-9,-9,1,1,1,38,3,0,0,0,2,-9,2,1,0,4,8.543488054687773,8.462035270603042,0,3,0,0,0,-9,0,-1031.647669044433,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,44,54,15,1,0,-9,0,10.20543775489432,10.20543775489432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,6,1,0,0,1,4,1,324,0,0,0 +15353,18809,34294,34295,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,4,8.038766348668718,8.48258179232641,7.175987479427273,1,0,-9,42,0,-10,4.291839307939088,0,0,0,73,3,3,3,3,3,2019,2,2,10,0,37,37,15,1,0,4,0,11.16291036006037,11.16291036006037,0,0,0,0,0,0,0,1,1,0,4.66999303215642,7.659309844167682,0,0,57.16,56.15,6,1,0,0,7,5,1,228.5,0,0,0 +15353,18809,34295,34294,-9,-9,2,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,8.606319650904341,8.689702684566235,1,0,-9,45,0,10,.5277962643487433,0,0,0,63,2,4,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.305979164243062,8.553932730502416,0,0,59.46,46.99,6,1,0,0,7,5,1,228.5,0,0,0 +15354,18810,34296,34297,-9,-9,2,1,0,27,1,1,1,0,1,-9,2,1,0,5,7.607017214007496,7.616289254882816,0,2,0,-9,6,0,-3,-52.14338394665789,0,1,1,30,1,3,1,-9,-9,2019,1,1,3,0,36,35,15,1,0,1,0,8.217262483964829,8.217262483964829,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,6,1,0,0,4,5,1,1298.666666666667,0,0,0 +15354,18810,34297,34296,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,3,9.225716467194978,9.159171936159151,0,2,0,-9,6,0,3,.4968887499379669,0,0,0,27,1,5,1,2,2,2019,1,2,11,0,36,43,15,1,0,1,0,27.02072717455585,27.02072717455585,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,48.78,6,1,0,0,4,5,1,1298.666666666667,0,0,0 +15354,18810,34298,-9,34296,34297,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.4685988163802,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,1,1298.666666666667,0,0,0 +15355,18811,34299,-9,34303,34302,7,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.070891747162,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,1,1742.166666666667,0,0,0 +15355,18811,34300,-9,34303,34302,4,1,1,12,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1056.767332635795,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,2,1,1742.166666666667,0,0,0 +15355,18811,34301,-9,34303,34302,2,1,0,10,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-972.9255917767547,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,5,2,1,1742.166666666667,0,0,0 +15355,18811,34302,34303,-9,-9,1,1,1,37,1,0,4,0,1,-9,2,1,0,3,8.284261632179803,8.075896672619601,0,2,0,-9,5,0,-5,-76.15145008914993,0,0,0,42,1,3,3,1,1,2019,2,3,13,1,45,48,15,1,1,3,0,9.664276425040896,9.664276425040896,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.84,53.13,2,1,0,1,5,2,1,1742.166666666667,0,0,0 +15355,18811,34303,34302,-9,-9,3,1,0,42,1,0,4,0,1,-9,6,3,0,3,0,0,0,2,0,-9,5,0,5,139.126879256058,0,0,1,37,1,3,1,-9,-9,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.88,47.84,5,1,0,1,5,2,1,1742.166666666667,0,0,0 +15355,18811,34304,-9,34303,34302,6,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.5028056427545,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,1,1742.166666666667,0,0,0 +15355,18812,34305,-9,34303,34302,5,1,1,19,2,0,4,1,2,0,7,2,0,3,7.066314486819764,6.958059071242134,0,3,0,0,0,-9,0,-1007.639930207702,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,14,3,0,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.89,54.92,6,1,0,0,5,2,1,200,0,0,0 +15356,18813,34306,34307,-9,-9,2,1,1,88,1,0,0,0,2,-9,4,3,0,3,0,7.901122938993225,8.07763969949851,1,0,-9,8,0,2,79.80701823221877,0,0,0,86,2,4,3,-9,-9,2019,4,1,9,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.293099721388817,7.779674909712099,0,0,62.12,32.34,6,1,0,0,10,4,1,428.5,0,0,0 +15356,18813,34307,34306,-9,-9,1,1,0,86,1,0,0,0,2,-9,4,3,0,4,0,7.776772791603372,7.937674877463179,1,0,-9,8,0,-2,21.34071611496159,0,0,0,88,2,3,3,2,2,2019,4,2,18,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.922701728347496,7.347925750929512,4.068853922921443,1,49.37,39.55,6,1,0,0,10,4,1,428.5,0,0,0 +15357,18814,34308,34309,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,5,54.0379615289734,0,0,0,68,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,6,1,0,0,5,2,0,365.5,0,0,0 +15357,18814,34309,34308,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,6.884478709196005,6.853978345500863,0,1,0,-9,6,0,-5,52.5334182586103,0,0,0,73,3,3,3,2,2,2019,4,1,15,3,16,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.992145629058736,3,43.12,58.55,5,1,0,0,5,2,0,365.5,0,0,0 +15358,18815,34310,34311,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,5,0,5.929162573327792,6.050641084650893,1,0,-9,39,0,2,173.7288382815616,0,0,0,61,1,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.870498612167563,9.406768469165158,3,49.87,58.27,6,1,0,0,4,3,1,510.5,0,0,0 +15358,18815,34311,34310,-9,-9,2,1,1,61,1,0,0,0,1,-9,4,3,0,3,0,8.526951930624572,8.258758217370888,1,0,-9,39,0,-2,-81.83378811043227,0,0,0,63,1,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.606816322853458,4.587498632419352,3,59.07,43.05,6,1,0,0,4,3,1,510.5,0,0,0 +15359,18816,34312,34313,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,2,0,8.192632834036749,8.082430385137121,1,0,-9,47,0,2,-43.37247766915204,0,0,0,68,2,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.161597946173562,7.872625133745573,0,0,40.07,41.34,4,1,0,0,11,4,1,493,0,0,0 +15359,18816,34313,34312,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.328313513111095,7.162782397873937,1,0,-9,47,0,-2,-29.34219385027573,0,0,0,70,2,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.274441750392132,7.246658397103768,2.90858833753755,3,57.16,56.15,6,1,0,0,11,4,1,493,0,0,0 +15360,18817,34314,-9,34316,34315,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-901.5326928206393,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,13,4,1,998,0,0,0 +15360,18817,34315,34316,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.542548050114471,8.416302864431437,0,2,0,-9,8,0,0,-65.571300535158,0,0,0,43,1,4,1,-9,-9,2019,1,2,6,0,40,40,15,1,0,1,0,14.46172882462343,14.46172882462343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,59.66,6,1,0,0,13,4,1,998,0,0,0 +15360,18817,34316,34315,-9,-9,2,1,0,43,1,0,2,0,1,-9,2,1,0,4,8.267917448075536,7.993690379943915,0,2,0,-9,19,0,0,13.63796575828976,0,0,1,43,1,4,1,3,3,2019,1,1,8,0,30,32,15,1,0,1,0,12.63467114238394,12.63467114238394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,13,4,1,998,0,0,0 +15360,18817,34317,-9,34316,34315,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.560076652477,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,13,4,1,998,0,0,0 +15361,18818,34318,34319,-9,-9,2,1,0,83,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-1,48.01657381366022,0,0,0,84,2,3,3,2,3,2019,4,1,18,6,0,0,15,4,6,4,0,0,0,1,0,5.9417828703158,0,0,0,0,1,1,0,.9593574941300381,0,0,0,48.27,20.2,7,1,0,0,7,3,1,2107.5,0,0,0 +15361,18818,34319,34318,-9,-9,1,1,1,84,1,0,0,0,2,-9,4,3,0,3,0,7.540533927715491,7.723412756264405,1,0,-9,9,0,1,118.793696095034,0,0,0,83,3,2,3,3,3,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.609550715255621,7.66179623068722,0,0,50.44,32.26,5,1,0,0,7,3,1,2107.5,0,0,0 +15362,18819,34320,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,4,3,0,5,0,6.684650562610392,6.955625813762129,3,0,0,0,-9,0,-897.3216623636662,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.911200566767016,6.690442810605511,0,0,52.08,48.96,2,1,0,0,12,2,1,298,0,0,0 +15363,18820,34321,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,4,0,5.015439936679677,4.801590142771304,3,0,0,0,-9,0,-929.8094992809683,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.857337173441971,4.870026641100818,0,0,56.33,51.02,6,1,0,0,2,2,1,1108,0,0,0 +15364,18821,34322,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.2549311664383,8.475104433454426,0,3,0,0,0,-9,0,-1091.831331650833,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,45,40,15,1,0,-9,0,9.985649231150264,9.985649231150264,0,0,0,0,0,0,0,0,0,0,1.18165119665135,0,0,0,46.16,58.62,6,4,0,0,8,4,0,188,0,0,0 +15365,18822,34323,-9,34324,34326,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.579463044249,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,0,731.25,0,0,0 +15365,18822,34324,34326,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,4,7.760342388701488,7.882223482207245,0,2,0,-9,8,0,-10,-195.6411471243239,0,0,1,43,2,3,1,-9,-9,2019,1,1,11,0,25,15,15,1,0,1,0,11.06020352812921,11.06020352812921,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,2,1,0,0,9,4,0,731.25,0,0,0 +15365,18822,34325,-9,34324,34326,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1038.764251579305,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,0,731.25,0,0,0 +15365,18822,34326,34324,-9,-9,1,1,1,43,1,0,2,0,2,-9,2,1,0,3,8.950841105407161,8.906110245771528,0,2,0,-9,8,0,10,-120.8907983247258,0,0,0,33,2,4,1,2,2,2019,1,2,8,0,52,4,15,1,0,1,0,14.74178779308417,14.74178779308417,0,0,0,0,0,0,0,1,1,0,3.391612915465956,0,0,0,54.96,53.17,6,1,0,0,9,4,0,731.25,0,0,0 +15366,18823,34327,34328,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,52,0,-2,76.9015803436689,0,0,0,70,2,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,10.12014932653445,0,0,0,0,1,1,0,2.544518155047125,0,0,0,57.68,42.36,6,3,0,0,8,2,1,696,0,0,0 +15366,18823,34328,34327,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,7.25561509083771,7.556861742156956,1,0,-9,52,0,2,170.542820657257,0,0,0,68,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.557818971788528,7.376127662126645,0,0,51.36,49.35,7,3,0,0,8,2,1,696,0,0,0 +15366,18824,34329,-9,34327,34328,3,1,0,49,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1164.956212326558,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,6,3,1,0,8,1,1,511,0,0,0 +15367,18825,34330,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,3,0,6.119078100060547,6.143231937100964,3,0,0,0,-9,0,-1120.454015609439,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,.1813597227647046,3.207566152843066,0,0,1,1,0,0,6.341250489093157,0,0,54,43,6,1,0,0,6,2,1,644,0,0,0 +15368,18826,34331,-9,-9,-9,1,1,1,59,3,0,0,0,1,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1079.791454503916,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.07,63.14,5,5,0,0,10,1,0,289,0,0,0 +15369,18827,34332,-9,-9,-9,1,1,0,42,2,0,1,0,1,1,2,1,0,5,8.273105433653512,8.512808104893267,0,4,0,0,0,-9,0,-997.8993081155802,-9,0,1,-9,-9,-9,-9,3,2,2019,-9,0,5,1,48,0,15,1,1,-9,0,12.09372620176886,12.09372620176886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,4,0,0,8,4,0,323,0,0,0 +15369,18827,34333,-9,34332,-9,2,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-897.4503460967103,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,4,0,323,0,0,0 +15370,18828,34334,-9,34338,34336,3,1,0,17,2,1,4,1,3,0,7,2,0,3,6.499139830477706,6.48824069979805,0,2,0,0,0,-9,0,-937.1427343105536,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.74,51,5,1,0,0,4,2,0,934.6,0,0,0 +15370,18828,34335,-9,34338,34336,6,1,1,0,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1049.287150961351,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,2,0,934.6,0,0,0 +15370,18828,34336,34338,-9,-9,1,1,1,46,1,1,4,0,2,-9,6,3,0,4,0,0,0,2,0,-9,16,0,11,-40.74447712484596,0,0,0,35,2,4,1,2,-9,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.56,54.55,6,1,0,0,4,2,0,934.6,0,0,0 +15370,18828,34337,-9,34338,34336,5,1,1,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1091.260562202945,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,2,0,934.6,0,0,0 +15370,18828,34338,34336,-9,-9,2,1,0,35,1,1,4,0,2,-9,2,1,0,4,6.968185783628061,7.125550248479801,0,2,0,-9,16,0,-11,39.41793949250452,0,0,1,46,2,4,3,-9,-9,2019,2,1,6,0,24,27,15,1,0,3,0,6.171551410588091,6.171551410588091,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,4,2,0,934.6,0,0,0 +15371,18829,34339,34340,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,3,5.398404030670366,5.268413637918655,0,1,0,-9,10,0,4,53.16198774393479,0,0,0,52,1,5,1,1,1,2019,1,2,13,3,8,0,15,1,3,1,0,3.545714480620161,3.545714480620161,0,0,0,0,0,0,0,0,0,0,3.910753333784253,0,0,0,51.41,56.15,6,1,0,0,12,5,1,389,0,0,0 +15371,18829,34340,34339,-9,-9,2,1,1,52,1,0,0,0,1,-9,2,1,0,5,9.252412103483014,9.382718954436758,0,1,0,-9,10,0,-4,9.001039277146091,0,0,0,56,1,3,1,-9,-9,2019,1,1,9,0,48,50,15,1,0,1,0,23.18150733228616,23.18150733228616,0,0,0,0,0,0,0,0,0,0,7.788814581112931,0,0,0,54.1,59.11,6,1,0,0,12,5,1,389,0,0,0 +15371,18830,34341,-9,34339,34340,3,1,0,19,2,0,0,0,2,-9,7,2,0,5,7.781695427199108,7.764586411856937,0,3,0,0,0,-9,0,-823.0598542516899,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,10,0,38,38,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.832284575878118,0,0,0,38.24,63.73,3,1,0,0,12,3,1,825,0,0,0 +15372,18831,34342,-9,34343,34345,5,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.2404745211406,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,9,4,1,857.6,0,0,0 +15372,18831,34343,34345,-9,-9,2,1,0,47,1,0,3,0,1,-9,2,1,0,4,8.373831952990574,8.39271170990855,0,2,0,-9,24,0,-8,-84.75206398089134,0,0,0,55,1,4,1,-9,-9,2019,1,1,12,0,35,30,15,1,0,1,0,14.74383714819549,14.74383714819549,0,0,0,0,0,0,0,1,1,0,4.028610992116137,0,0,0,46.9,56.66,6,1,0,0,9,4,1,857.6,0,0,0 +15372,18831,34344,-9,34343,34345,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1109.408785632889,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,857.6,0,0,0 +15372,18831,34345,34343,-9,-9,1,1,1,55,1,0,3,0,1,-9,2,1,0,4,8.852058946068489,9.099516861121513,0,2,0,-9,25,0,8,105.280670386307,0,0,0,47,1,4,1,3,2,2019,1,2,11,1,60,55,15,1,1,1,0,17.34572892699778,17.34572892699778,0,0,0,0,0,0,0,1,1,0,4.707557362029203,0,0,0,54.2,57.49,6,2,0,0,9,4,1,857.6,0,0,0 +15372,18831,34346,-9,34343,34345,3,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.535762618994,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,9,4,1,857.6,0,0,0 +15373,18832,34347,-9,-9,-9,1,1,1,50,2,0,0,0,2,-9,1,1,0,3,8.313206755838255,8.563043685197025,0,3,0,0,0,-9,0,-872.5519160631823,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,38,40,15,1,0,-9,0,12.06967523342274,12.06967523342274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,11,4,1,2655,0,0,0 +15374,18833,34348,-9,-9,-9,1,1,1,42,3,0,0,0,2,-9,2,1,0,3,8.333021088934503,8.325134720964243,0,3,0,0,0,-9,0,-966.8725173406901,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,55,51,15,1,0,-9,0,10.37913776241828,10.37913776241828,0,0,0,0,0,0,0,1,1,0,.8165230541125789,0,0,0,50.43,45.82,4,1,0,0,6,4,0,1560,0,0,0 +15375,18834,34349,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-964.3077776033979,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,0,0,15,4,2,-9,0,0,0,1,12.06507241189335,0,6.720235130910866,0,0,115.2685392157087,1,1,0,0,0,0,0,35.78,17.81,6,1,0,0,13,1,1,193,0,0,0 +15376,18835,34350,-9,34351,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1079.190160941735,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,1,0,346.6666666666667,0,0,0 +15376,18835,34351,-9,-9,-9,1,1,0,36,2,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-1062.064909374323,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,48.24,6,1,0,1,5,1,0,346.6666666666667,0,0,0 +15376,18835,34352,-9,34351,-9,3,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-968.1753054800945,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,1,0,346.6666666666667,0,0,0 +15377,18836,34353,34354,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,5,8.33371896065448,8.47152561343777,0,1,0,-9,11,0,-2,12.09458839057601,0,0,0,53,2,4,1,2,2,2019,1,1,10,0,13,45,15,1,0,1,0,47.51965125974233,47.51965125974233,0,0,0,0,0,0,0,0,0,0,6.285809630559432,0,0,3,55.09,55.87,6,1,0,0,10,5,1,430.5,0,0,0 +15377,18836,34354,34353,-9,-9,1,1,1,53,1,0,0,0,2,-9,1,1,0,4,7.520635658188154,8.923462271001496,8.53075673413989,1,0,-9,11,0,2,-4.837066980578528,0,0,0,51,1,5,1,2,1,2019,1,2,9,1,48,50,15,1,1,1,0,3.742022852868491,3.742022852868491,0,0,0,0,0,0,0,0,0,0,8.727287697515543,0,0,0,59.86,48.06,5,1,0,0,10,5,1,430.5,0,0,0 +15378,18837,34355,-9,34358,34357,4,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-993.5371872828263,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,4,3,1,431,0,0,0 +15378,18837,34356,-9,34358,34357,5,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.4337445181168,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,1,431,0,0,0 +15378,18837,34357,34358,-9,-9,2,1,1,59,1,0,2,0,2,-9,2,1,0,1,8.120118399041374,8.10014252851315,0,2,0,-9,26,0,13,-55.07674881108689,0,0,0,46,2,4,1,-9,-9,2019,1,1,12,0,35,35,15,1,0,1,0,12.53138750158891,12.53138750158891,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.86,18.02,6,1,0,0,4,3,1,431,0,0,0 +15378,18837,34358,34357,-9,-9,1,1,0,46,1,0,2,0,2,-9,2,1,0,4,6.830252833103475,7.105108785485161,0,2,0,-9,26,0,-13,-158.3490621549137,0,0,0,59,2,1,1,-9,-9,2019,1,2,9,0,15,15,15,1,0,1,0,6.880656735283913,6.880656735283913,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,7,1,0,0,4,3,1,431,0,0,0 +15378,18838,34359,-9,34358,34357,3,1,1,18,2,0,2,0,2,1,2,1,0,3,7.563722179791337,7.768330443678176,0,3,0,0,0,-9,0,-997.7755069299956,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,35,0,15,1,0,-9,1,9.06104408456059,9.06104408456059,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,1,0,0,4,3,1,215,0,0,0 +15379,18839,34360,34362,-9,-9,2,1,0,40,1,0,2,0,3,-9,6,3,0,1,0,0,0,2,0,-9,7,0,-2,-112.4236844907354,0,0,1,42,3,2,1,2,1,2019,3,1,20,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.24,41.05,3,3,0,0,2,3,1,418.25,0,0,0 +15379,18839,34361,-9,34360,34362,4,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-995.890139753299,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,3,0,0,2,3,1,418.25,0,0,0 +15379,18839,34362,34360,-9,-9,1,1,1,42,1,0,2,0,3,-9,2,1,0,2,8.201907788557053,7.987834851175394,0,2,0,-9,7,0,2,19.428902863028,0,0,0,40,3,1,3,2,2,2019,2,2,21,10,62,52,15,1,10,3,0,8.648719009515077,8.648719009515077,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.74,39.59,2,3,0,1,2,3,1,418.25,0,0,0 +15379,18839,34363,-9,34360,34362,3,1,1,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-978.1789179848214,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.95,66.2,2,3,0,0,2,3,1,418.25,0,0,0 +15380,18840,34364,-9,34366,34365,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1013.124455689658,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,0,773,0,0,0 +15380,18840,34365,34366,-9,-9,2,1,1,44,1,0,1,0,3,-9,1,1,0,4,8.397502624578202,8.161248175629227,0,2,0,-9,7,0,-1,99.00658390879525,0,0,0,45,3,2,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,11.56634814906771,11.56634814906771,0,0,0,0,0,0,0,1,1,0,1.311856562531136,0,0,0,52,55,6,1,0,0,9,4,0,773,0,0,0 +15380,18840,34366,34365,-9,-9,1,1,0,45,1,0,1,0,3,-9,2,1,0,2,7.896275397800083,7.961476521901234,0,2,0,-9,7,0,1,45.67305895346553,0,0,0,44,3,4,1,-9,-9,2019,1,2,10,0,42,0,15,1,0,1,0,7.724962149875274,7.724962149875274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,43.01,5,1,0,0,9,4,0,773,0,0,0 +15381,18841,34367,34368,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,55,0,-1,-30.3769200464999,0,0,0,79,1,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.821022322960883,0,0,0,59.07,43.05,5,1,0,0,9,3,1,568,0,0,0 +15381,18841,34368,34367,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,8.628126219232726,8.302104407907503,1,0,-9,55,0,1,-61.83139793165179,0,0,0,78,2,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.9354012351602484,8.247495407979036,0,0,61.28,48.88,6,1,0,0,9,3,1,568,0,0,0 +15382,18842,34369,34370,-9,-9,2,1,0,55,1,0,0,0,3,-9,2,1,0,5,7.485080884342289,7.854910393397362,0,1,0,-9,33,0,-4,18.20805806417725,0,0,0,59,2,5,1,-9,-9,2019,1,1,12,0,24,25,15,1,0,1,0,8.260579268746858,8.260579268746858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.51,51.62,4,3,0,0,8,5,1,457.5,0,0,0 +15382,18842,34370,34369,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,5,9.073376872468852,9.511539723498677,7.627615496292711,1,0,-9,33,0,4,164.7880736235735,0,0,0,55,3,5,1,2,2,2019,1,2,12,0,40,45,15,1,0,1,0,29.61302349274387,29.61302349274387,0,0,0,0,0,0,0,0,0,0,0,7.896066738417269,0,0,43.33,55.91,6,3,0,0,8,5,1,457.5,0,0,0 +15382,18843,34371,-9,34369,34370,3,1,1,26,2,0,0,0,1,-9,2,1,0,5,8.670497995825487,8.623266180404441,0,3,0,0,0,-9,0,-864.7661334316539,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,50,46,15,1,0,-9,1,14.757316830212,14.757316830212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,6,3,0,0,8,5,1,535,0,0,0 +15383,18844,34372,-9,-9,-9,1,1,0,87,2,0,0,0,1,-9,4,3,0,3,0,4.322978072336908,4.098022775773432,3,0,0,0,-9,0,-1020.146319750215,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.064093308047182,4.250204842187777,0,0,52,44,6,1,0,0,6,2,1,718,0,0,0 +15384,18845,34373,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-966.4744866569331,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.67,48.65,5,1,0,0,6,1,1,889,0,0,0 +15385,18846,34374,-9,-9,-9,1,1,0,36,3,1,2,0,2,-9,6,3,0,1,0,5.906286571399563,5.127918732697563,4,0,0,0,-9,0,-1057.76593096182,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,28,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.720195011363487,0,1.394998013393674,3,35.22,22.05,4,1,0,1,10,2,0,649.6666666666666,0,0,0 +15385,18846,34375,-9,34374,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1013.137236663964,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,2,0,649.6666666666666,0,0,0 +15385,18846,34376,-9,34374,-9,2,1,1,9,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-923.8077064848669,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,0,649.6666666666666,0,0,0 +15386,18847,34377,34378,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,7.210702692005324,7.215137697063158,1,0,-9,7,0,-1,-64.68922710989919,0,0,0,67,2,3,3,3,3,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.80176951879628,7.358959990493329,0,0,49.67,43.39,6,1,0,0,2,4,1,347,0,0,0 +15386,18847,34378,34377,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,6.594117262739091,7.853950076292576,7.876496542990248,1,0,-9,7,0,1,-115.0107307225549,0,0,0,66,2,3,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.545756803863839,0,0,59.07,43.05,6,1,0,0,2,4,1,347,0,0,0 +15387,18848,34379,-9,-9,-9,1,1,0,28,2,0,0,0,1,-9,2,1,0,4,8.035201876521111,8.26501967651893,0,3,0,0,0,-9,0,-1036.864080673456,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,38,35,15,1,0,-9,0,10.94483176439038,10.94483176439038,0,0,0,0,0,0,0,0,0,0,.4447629855248914,0,0,0,49.46,56.91,5,1,0,0,6,4,1,407,0,0,0 +15388,18849,34380,34381,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,6.349202333439313,6.851009980802976,1,0,-9,6,0,11,-87.32705843747189,0,0,0,63,2,3,3,3,2,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.80820197793593,6.453010397550695,0,0,49.61,24.43,5,1,0,0,9,3,1,243,0,0,0 +15388,18849,34381,34380,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.499326236126644,7.817843444091907,1,0,-9,6,0,-11,-52.647588083797,0,0,0,74,3,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.64606390209283,8.19202407636714,0,3,58.32,50.22,6,1,0,0,9,3,1,243,0,0,0 +15389,18850,34382,34383,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,4,0,7.058383118284459,7.139948835515156,1,0,-9,10,0,0,54.31663643090981,0,0,0,72,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.163671056426796,0,0,61.27,46.03,6,1,0,0,9,4,1,588.5,0,0,0 +15389,18850,34383,34382,-9,-9,2,1,1,72,1,0,0,0,2,-9,4,3,0,4,0,8.631489531467848,8.764771775894774,1,0,-9,10,0,0,20.27506624476433,0,0,0,72,2,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3034824340653673,8.636291353108899,0,0,45.52,52.01,6,1,0,0,9,4,1,588.5,0,0,0 +15390,18851,34384,-9,-9,-9,1,1,1,51,3,0,0,0,2,-9,2,1,0,2,7.74229540666801,8.038752270932077,0,3,0,0,0,-9,0,-973.5965773130565,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,12,0,54,53,15,1,0,-9,0,6.500873794619803,6.500873794619803,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,40,5,1,0,0,4,4,0,966,0,0,0 +15390,18852,34385,-9,-9,-9,2,1,1,48,2,0,0,0,2,-9,1,1,0,3,6.964656572577312,6.864491630742723,0,3,0,0,0,-9,0,-1127.664399065579,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,40,45,15,1,1,-9,0,4.127278244896074,4.127278244896074,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.1,49.39,3,1,0,1,4,2,0,515,0,0,0 +15391,18853,34386,34387,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,3,9.576786045528664,9.712706625745193,0,1,0,-9,4,0,1,88.46022235680277,-9,1,1,27,1,3,1,-9,-9,2019,1,2,10,0,50,0,15,1,0,1,0,36.12261872881235,36.12261872881235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,51.87,5,1,0,0,8,5,1,384,0,0,0 +15391,18853,34387,34386,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,3,8.716873815261895,8.716313212385414,0,1,0,-9,4,0,-1,36.27541740398729,0,1,0,28,1,3,1,-9,-9,2019,1,1,10,0,40,56,15,1,0,1,0,18.37653621592818,18.37653621592818,0,0,0,0,0,0,0,0,0,0,2.608354057868003,0,0,0,47.15,56.66,6,1,0,0,8,5,1,384,0,0,0 +15392,18854,34388,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-840.1986148910287,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.68,35.38,3,1,0,0,13,1,0,866,0,0,0 +15393,18855,34389,-9,34390,-9,4,1,1,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-974.1566620689673,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.27,54.82,6,2,0,1,8,2,0,371,0,0,0 +15393,18855,34390,-9,-9,-9,1,1,0,52,3,0,2,0,2,-9,3,3,0,3,0,6.675100283220343,6.209783688782651,4,0,0,0,-9,0,-952.0795713073227,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.899442912529953,0,0,0,41.8,47,6,1,1,0,8,2,0,371,0,0,0 +15393,18855,34391,-9,34390,-9,5,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-887.8533780403933,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,2,0,0,8,2,0,371,0,0,0 +15393,18856,34392,-9,34390,-9,2,1,1,30,2,0,2,0,2,-9,2,1,0,4,8.08306387793073,8.120063380032477,0,3,0,0,0,-9,0,-961.602477095482,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,24,30,15,1,1,-9,1,14.536685345844,14.536685345844,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,2,0,0,8,3,0,1554,0,0,0 +15393,18857,34393,-9,34390,-9,3,1,0,24,2,0,2,0,2,-9,2,1,0,4,6.588883166004099,7.013149829754981,0,3,0,0,0,-9,0,-1038.061568227879,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,28,12,38,30,15,1,12,-9,1,2.55909504242507,2.55909504242507,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.79,65.7,2,2,0,0,8,2,0,421,0,0,0 +15394,18858,34394,-9,34398,34397,4,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-945.9451621585252,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,5,0,0,8,2,0,983.4,0,0,0 +15394,18858,34395,-9,34398,34397,5,1,1,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1083.745239410536,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,5,0,0,8,2,0,983.4,0,0,0 +15394,18858,34396,-9,34398,34397,3,1,1,17,2,0,3,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-999.1222244762819,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,5,0,0,8,2,0,983.4,0,0,0 +15394,18858,34397,34398,-9,-9,1,1,1,50,1,0,3,0,3,-9,1,1,0,4,6.951832416338889,6.595125354409344,0,2,0,-9,19,0,0,51.58403434545531,0,0,0,50,3,5,3,3,3,2019,2,2,9,0,8,40,15,1,1,3,0,11.58470836505821,11.58470836505821,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,5,0,0,8,2,0,983.4,0,0,0 +15394,18858,34398,34397,-9,-9,2,1,0,50,1,0,3,0,3,-9,6,3,0,5,0,0,0,2,0,-9,19,0,0,120.9567174829342,0,0,0,50,3,4,1,3,3,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,55.11,6,5,0,0,8,2,0,983.4,0,0,0 +15395,18859,34399,-9,34400,34401,3,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1052.572386664483,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,4,1,956,0,0,0 +15395,18859,34400,34401,-9,-9,1,1,0,45,1,0,2,0,1,-9,2,1,0,4,8.800034137248153,8.616833258647317,0,2,0,-9,13,-9,-4,121.7917875407276,-9,0,0,49,1,3,3,3,3,2019,2,2,10,0,37,0,15,1,1,4,0,18.29339229881255,18.29339229881255,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,6,3,0,0,9,4,1,956,0,0,0 +15395,18859,34401,34400,-9,34403,2,1,1,49,1,0,2,0,1,-9,4,3,0,3,0,0,0,2,0,-9,1,-9,4,74.64429711254299,-9,0,0,45,1,4,1,-9,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.748667409561156,0,0,0,58.47,50.22,5,3,0,0,9,4,1,956,0,0,0 +15395,18859,34402,-9,34400,34401,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-962.5080513174172,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,3,0,0,9,4,1,956,0,0,0 +15395,18860,34403,-9,-9,-9,5,1,1,71,3,0,2,0,3,-9,4,3,0,3,0,0,0,4,0,-9,0,-9,0,-993.8032996898352,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,5,0,0,9,1,1,247,0,0,0 +15396,18861,34404,34405,-9,-9,1,1,0,67,1,0,0,0,3,-9,2,1,0,4,7.205156353942646,7.738197945998367,6.194515142251966,1,0,-9,42,0,-4,-52.61247083152809,0,0,0,71,1,2,3,2,3,2019,2,2,7,0,17,17,15,1,0,4,0,8.564480394849561,8.564480394849561,0,0,0,0,0,0,0,1,1,0,6.899853628158377,6.257589033736507,0,0,57.16,56.15,5,1,0,0,9,3,1,1240,0,0,0 +15396,18861,34405,34404,-9,-9,2,1,1,71,1,0,0,0,1,-9,4,3,0,2,0,6.965675907829753,7.320140134888317,1,0,-9,43,0,4,103.3875519251505,0,0,0,67,3,4,1,3,1,2019,3,1,17,5,0,0,15,4,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.313613474999514,7.012420225561709,0,0,50.21,45.02,6,1,0,0,9,3,1,1240,0,0,0 +15397,18862,34406,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,2,1,0,3,7.222483435933098,7.085827014386061,0,4,0,0,0,-9,0,-855.0277042025817,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,20,20,15,1,1,-9,0,7.06728623930323,7.06728623930323,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,6,1,0,0,2,2,0,299.5,0,0,0 +15397,18862,34407,-9,34406,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.149673554825,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,2,0,299.5,0,0,0 +15398,18863,34408,34409,-9,-9,2,1,1,63,1,0,0,0,1,-9,2,1,0,4,9.187959978529399,9.344310291452194,0,1,0,-9,33,0,0,19.01999360736438,0,0,0,63,2,3,3,3,3,2019,2,1,14,3,42,38,15,1,3,3,0,31.02081690123083,31.02081690123083,0,0,0,0,0,0,0,0,0,0,0,0,0,1,42.95,61.24,4,1,0,0,8,5,1,900,0,0,0 +15398,18863,34409,34408,-9,-9,1,1,0,63,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,34,0,0,12.65163004918344,0,0,0,63,1,4,1,3,3,2019,3,2,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,5,0,0,8,5,1,900,0,0,0 +15398,18864,34410,-9,34409,34408,3,1,0,25,2,0,0,0,2,-9,2,1,0,4,6.922583172632145,7.118628262943246,0,3,0,0,0,-9,0,-1030.730844704616,0,1,1,-9,-9,-9,-9,2,1,2019,-9,0,14,4,14,0,15,1,4,-9,1,9.909395140953078,9.909395140953078,0,0,0,0,0,0,0,0,0,0,0,0,3.514229459088843,3,41.3,60.77,6,2,0,0,8,2,1,2222,0,0,0 +15399,18865,34411,34412,-9,-9,1,1,1,38,1,0,0,0,2,-9,2,1,0,2,7.797980937433111,7.871684321736315,0,1,0,-9,8,0,1,-66.28932750071564,0,0,0,37,2,2,1,3,2,2019,1,2,12,1,38,39,15,1,1,1,0,6.005962543632096,6.005962543632096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,46.68,4,1,0,0,1,4,1,198,0,0,0 +15399,18865,34412,34411,-9,-9,2,1,0,37,1,0,0,0,2,-9,2,1,0,2,8.290037017198932,8.402661082305299,0,1,0,-9,8,0,-1,-31.09916042009572,0,0,1,38,2,2,1,-9,-9,2019,1,1,12,0,37,22,15,1,0,1,0,12.62612385452508,12.62612385452508,0,0,0,0,0,0,0,0,0,0,2.141635858474924,0,0,0,48.54,48.53,5,1,0,0,1,4,1,198,0,0,0 +15400,18866,34413,-9,34416,-9,7,1,0,5,2,0,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-971.5157916737708,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,0,630.6666666666666,0,0,0 +15400,18866,34414,-9,34416,-9,6,1,0,15,2,0,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-926.6617831278556,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,2,2,0,630.6666666666666,0,0,0 +15400,18866,34415,-9,34416,-9,4,1,1,10,2,0,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-955.9741806359502,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,2,2,0,630.6666666666666,0,0,0 +15400,18866,34416,-9,-9,-9,1,1,0,39,3,0,6,0,2,-9,6,3,0,4,0,7.814703621969534,7.922570948370358,4,0,0,0,-9,0,-935.5215906108964,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.003305645200344,0,0,0,48.65,55.84,7,3,0,0,2,2,0,630.6666666666666,0,0,0 +15400,18866,34417,-9,34416,-9,2,1,0,13,2,0,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1002.78614905949,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,2,2,0,630.6666666666666,0,0,0 +15400,18866,34418,-9,34416,-9,3,1,1,11,2,0,6,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.1845001430423,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,2,2,0,630.6666666666666,0,0,0 +15401,18867,34419,34422,-9,-9,2,1,1,35,1,1,2,0,2,-9,2,1,0,4,8.5029811033887,8.233776303065518,0,2,0,-9,6,0,3,31.15906175152907,0,0,0,32,1,3,1,-9,-9,2019,1,1,9,1,58,53,15,1,1,1,0,10.19215256519562,10.19215256519562,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,6,1,0,0,2,4,0,790.75,0,0,0 +15401,18867,34420,-9,34422,34419,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-920.7856562492823,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,4,0,790.75,0,0,0 +15401,18867,34421,-9,34422,34419,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.0721275489159,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,4,0,790.75,0,0,0 +15401,18867,34422,34419,-9,-9,1,1,0,32,1,1,2,0,1,-9,2,1,0,3,7.708275758291546,7.519132525837767,0,2,0,-9,6,0,-3,-4.842317958878893,0,0,1,35,2,4,1,2,2,2019,1,2,24,8,25,25,15,1,8,1,0,8.778178140406041,8.778178140406041,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.34,62.53,6,1,0,0,2,4,0,790.75,0,0,0 +15402,18868,34423,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,8,3,1,2,0,5.614695789711277,6.067240153221372,3,0,0,0,-9,0,-1126.902361595978,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.846316840184304,69.04721000250881,3,32.08,47.89,3,1,0,1,12,2,0,581,0,0,0 +15403,18869,34424,34425,-9,-9,1,1,0,51,1,0,0,0,1,-9,1,1,0,4,9.413110807744721,9.696874576422736,0,1,0,-9,7,0,5,-57.36848708207481,0,0,0,46,2,4,1,2,2,2019,1,2,2,0,30,55,15,1,0,1,0,54.91780269026706,54.91780269026706,0,0,0,0,0,0,0,0,0,0,5.82616539444506,0,0,0,54.2,57.49,6,1,0,0,5,5,1,848.5,0,0,0 +15403,18869,34425,34424,-9,-9,2,1,1,46,1,0,0,0,2,-9,1,1,0,4,8.780270496047706,8.362893815768045,0,1,0,-9,7,0,-5,-65.31779073796042,0,0,0,51,1,4,1,2,2,2019,1,1,11,2,45,40,15,1,2,1,0,12.89915885503505,12.89915885503505,0,0,0,0,0,0,0,0,0,0,5.024215107526132,0,0,0,44.24,59.44,6,1,0,0,5,5,1,848.5,0,0,0 +15404,18870,34426,34427,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.063450586228186,7.163904416193003,1,0,-9,38,0,-13,-72.1248935721238,0,0,0,82,1,4,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.503681157255193,6.910208740213066,0,0,57.73,54.53,7,1,0,0,10,3,1,575.5,0,0,0 +15404,18870,34427,34426,-9,-9,1,1,1,82,1,0,0,0,1,-9,4,3,0,4,0,7.495030286049233,7.454085946802572,1,0,-9,38,0,13,131.5887085899716,0,0,0,69,2,4,3,3,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.948764305425192,7.243406934776218,0,0,51.19,52.17,6,1,0,0,10,3,1,575.5,0,0,0 +15405,18871,34428,-9,-9,-9,1,1,0,31,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1145.312115138046,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,4,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,4,3,1,1,7,1,1,473,0,0,0 +15405,18872,34429,-9,-9,-9,4,1,0,26,2,0,1,0,2,-9,2,1,0,5,7.808777860112754,7.974443908400774,0,3,0,0,0,-9,0,-888.8661858290207,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,4,0,41,40,15,1,0,-9,1,7.626569661175573,7.626569661175573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.59,54.8,7,3,0,0,7,3,1,445,0,0,0 +15405,18873,34430,-9,-9,-9,5,1,0,19,2,0,1,0,2,1,2,1,0,3,7.656798722433061,7.553042233642861,0,3,0,0,0,-9,0,-977.2763689535419,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,30,0,15,1,7,-9,1,7.208292139270529,7.208292139270529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.81,60.31,5,3,0,0,7,3,1,470,0,0,0 +15406,18874,34431,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,4,8.373626613266822,8.443015095499188,0,3,0,0,0,-9,0,-926.2398104872345,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,38,38,15,1,0,-9,0,12.81431359744099,12.81431359744099,0,0,0,0,0,0,0,0,0,0,.688995848641736,0,0,0,54.79,55.86,6,1,0,0,2,4,1,123,0,0,0 +15407,18875,34432,34433,-9,-9,1,1,0,56,1,0,0,0,2,-9,2,1,0,4,8.048423397375222,8.201942941666804,0,1,0,-9,38,0,-5,-31.88724405085404,0,0,0,61,2,4,1,3,3,2019,1,2,12,0,37,37,15,1,0,1,0,13.19055603634317,13.19055603634317,0,0,0,0,0,0,0,0,0,0,.3115138845392136,0,0,0,50.85,52.08,4,1,0,0,5,5,1,1026,0,0,0 +15407,18875,34433,34432,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,4,7.462400108993917,8.592481578784266,8.749370918367323,1,0,-9,38,0,5,-98.56431001500067,0,0,0,56,2,4,1,2,3,2019,1,1,12,0,19,19,15,1,0,1,0,11.51668364911926,11.51668364911926,0,0,0,0,0,0,0,0,0,0,9.031051400866652,8.768066995037683,0,0,57.16,56.15,6,1,0,0,5,5,1,1026,0,0,0 +15407,18876,34434,-9,34432,34433,3,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.611065821297439,8.422756722773217,0,3,0,0,0,-9,0,-1022.716891705028,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,50,37,15,1,0,-9,1,13.88812291482135,13.88812291482135,0,0,0,0,0,0,0,0,0,0,6.637841031995801,0,0,0,58.15,52.91,6,1,0,0,5,5,1,393,0,0,0 +15408,18877,34435,-9,-9,-9,1,1,1,35,2,0,0,0,1,-9,2,1,0,4,8.310976258469925,8.301515463892535,0,1,0,-9,8,0,-26,60.2409113557209,0,0,0,-9,-9,-9,-9,3,2,2019,2,2,5,0,0,70,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.639074978955541,0,0,2,57.16,56.15,7,3,0,0,8,4,0,1149,0,0,0 +15408,18878,34436,-9,-9,-9,2,1,1,61,2,0,0,0,3,-9,8,3,1,1,0,0,0,1,0,-9,8,0,26,73.57253068710645,0,0,0,-9,-9,-9,-9,-9,-9,2019,3,1,28,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.01,25.88,1,1,0,0,8,4,0,1128,0,0,0 +15409,18879,34437,34438,-9,-9,2,1,0,69,1,0,0,0,1,-9,4,3,0,4,0,8.414618191284525,8.479152548582771,1,0,-9,41,0,-3,16.64819894187071,0,0,0,72,1,5,3,2,2,2019,4,1,14,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.804649774939931,8.797173960625155,0,3,54.6,55.89,3,1,0,0,9,5,1,2450.5,0,0,0 +15409,18879,34438,34437,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,5,0,9.857639232275288,9.792440462812817,1,0,-9,41,0,3,-18.21913186609723,0,0,0,69,1,4,3,1,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,9.20820357278906,9.683175056487451,0,0,51.14,60.45,6,1,0,0,9,5,1,2450.5,0,0,0 +15410,18880,34439,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1043.678275175043,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,3.278311453933725,0,7.895277786630061,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,13,1,1,264,0,0,0 +15411,18881,34440,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1031.693909065217,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,13.21712859738681,0,0,0,0,134.0006507389884,1,1,0,0,0,0,0,50,47,7,1,0,0,4,1,0,1126,0,0,0 +15412,18882,34441,34442,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,5,9.470424077950021,9.612549995651866,0,2,0,-9,15,0,2,40.86913976699832,0,0,0,44,1,3,1,-9,-9,2019,1,1,6,0,38,48,15,1,0,1,0,34.96266485775634,34.96266485775634,0,0,0,0,0,0,0,1,1,0,4.627514045424363,0,0,0,57.06,57.76,6,1,0,0,9,5,1,1041.5,0,0,0 +15412,18882,34442,34441,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,3,6.042437669789503,5.960084861513444,0,2,0,-9,17,0,-2,-107.4065620633621,0,0,1,46,1,5,1,2,2,2019,1,2,9,0,7,0,15,1,0,1,0,7.011696219024198,7.011696219024198,0,0,0,0,0,0,0,1,1,0,1.561782181926209,0,0,0,53.56,49.66,6,1,0,0,9,5,1,1041.5,0,0,0 +15412,18882,34443,-9,34442,34441,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.860382556718,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,5,1,1041.5,0,0,0 +15412,18882,34444,-9,34442,34441,3,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1019.041869610847,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,5,1,0,0,9,5,1,1041.5,0,0,0 +15413,18883,34445,-9,-9,34446,2,1,0,12,2,0,0,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-1044.341320036881,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,5,1,0,0,2,2,1,577,0,0,0 +15413,18883,34446,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,2,0,7.098631277690531,7.140282245492534,3,0,0,0,-9,0,-1158.40277464618,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.388106203370654,6.740643658264768,4.097678854318866,3,47.95,39.63,6,1,0,0,2,2,1,577,0,0,0 +15414,18884,34447,34448,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,4.499061521773663,4.270536064521424,1,0,-9,7,0,5,-70.17730282794132,0,0,0,74,3,2,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,4.245037127043108,0,0,59.8,39.25,5,1,0,0,5,1,0,422,0,0,0 +15414,18884,34448,34447,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,54,0,-5,-23.84828217121586,0,0,0,79,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.14,18.77,4,1,0,0,5,1,0,422,0,0,0 +15415,18885,34449,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.64309879908504,8.861344757886011,0,3,0,0,0,-9,0,-953.6512115660998,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,5,0,45,44,15,1,0,-9,0,14.23192961779164,14.23192961779164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,8,5,0,742,0,0,0 +15415,18886,34450,-9,-9,-9,2,1,1,24,2,0,0,0,1,-9,2,1,0,4,8.310365005248661,8.651113625121718,0,3,0,0,0,-9,0,-1022.574949691382,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,35,0,15,1,1,-9,0,18.34413071801489,18.34413071801489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,8,5,0,537,0,0,0 +15415,18887,34451,-9,-9,-9,3,1,0,24,2,0,0,0,1,-9,2,1,0,4,8.52376426889888,8.426494369638068,0,3,0,0,0,-9,0,-965.2231365672671,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,41,0,15,1,2,-9,0,13.05786983731075,13.05786983731075,0,0,0,0,0,0,0,0,0,0,.8468816150194745,0,0,0,46,58,5,2,0,0,8,4,0,1238,0,0,0 +15416,18888,34452,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,3,0,6.732531777939832,6.581786171281145,3,0,0,0,-9,0,-1109.766565138464,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.202068652116774,6.786151487439854,0,0,53,44,6,1,0,0,5,2,1,92,0,0,0 +15416,18889,34453,-9,34452,-9,2,1,0,58,3,0,0,0,2,-9,2,1,0,4,8.413779241457238,7.958217971090916,0,3,0,0,0,-9,0,-1104.229181277881,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,30,30,15,1,0,-9,1,16.8819273960485,16.8819273960485,0,0,0,0,0,0,0,1,1,0,6.923631147190396,0,0,3,62.49,55.09,7,1,0,0,5,4,1,1346,0,0,0 +15417,18890,34454,-9,34457,34455,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.401366168849,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,270.75,0,0,0 +15417,18890,34455,34457,-9,-9,1,1,1,31,1,1,2,0,1,-9,2,1,0,3,9.130985926721987,9.082413964951735,0,2,0,-9,13,0,2,-123.6320505487625,0,0,0,29,2,4,1,3,2,2019,1,2,14,2,37,0,15,1,2,1,0,33.99765026299504,33.99765026299504,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.24,54.01,5,1,0,0,2,5,1,270.75,0,0,0 +15417,18890,34456,-9,34457,34455,3,1,1,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.225214462431,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,5,1,270.75,0,0,0 +15417,18890,34457,34455,-9,-9,2,1,0,29,1,1,2,0,2,-9,1,1,0,4,6.236732587881468,6.25189196634167,0,2,0,-9,12,0,-2,144.5407076477503,0,1,1,31,1,3,1,2,2,2019,1,1,11,0,4,0,15,1,0,1,0,15.98253822853231,15.98253822853231,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,2,5,1,270.75,0,0,0 +15418,18891,34458,34459,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,6.841270656587182,6.937924192915943,1,0,-9,54,0,-5,82.77408755771165,0,0,0,81,2,3,3,3,3,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.018367851800481,7.263686854739923,5.320216597959224,1,51.51,38.41,5,1,0,0,10,2,0,1647.5,0,0,0 +15418,18891,34459,34458,-9,-9,1,1,0,81,1,0,0,0,2,-9,4,3,0,3,0,6.527918520180198,6.608424515355714,1,0,-9,54,0,5,92.98126187598351,-9,0,0,76,3,3,3,-9,-9,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.183388512871623,6.36939918910143,0,0,52,45,6,1,0,0,10,2,0,1647.5,0,0,0 +15419,18892,34460,34461,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,4,6.618379162742355,6.267862758355274,0,1,0,-9,8,0,-1,127.3797599101288,0,0,0,44,2,4,1,2,2,2019,1,2,8,0,60,40,15,1,0,1,0,1.320939683190237,1.320939683190237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,703.5,0,0,0 +15419,18892,34461,34460,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,7.489678808934918,7.299007472344122,0,1,0,-9,8,0,1,42.32282833191604,0,0,1,43,2,4,1,2,2,2019,1,1,7,0,32,10,15,1,0,1,0,5.342746865269496,5.342746865269496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,13,3,1,703.5,0,0,0 +15419,18893,34462,-9,34461,34460,3,1,0,23,2,0,0,0,2,-9,2,1,0,5,7.543119810852493,7.665103276072593,0,3,0,0,0,-9,0,-1116.143641916201,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,32,15,1,0,-9,1,6.074627367161041,6.074627367161041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,1,209,0,0,0 +15420,18894,34463,-9,-9,-9,1,1,1,79,3,0,0,0,1,-9,4,3,0,4,0,8.838534124716874,9.011934698658605,3,0,0,0,-9,0,-901.1511500215609,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.870087211152296,8.730300205641631,0,0,54.79,55.86,7,1,0,0,12,5,1,215,0,0,0 +15421,18895,34464,34465,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,1,0,7.66955844815339,7.351056613472016,1,0,-9,21,0,5,-178.7360144604473,0,0,0,69,1,2,3,2,2,2019,4,1,8,2,0,0,15,4,2,4,0,0,0,1,0,.8649722203319317,0,0,0,0,1,1,0,3.757441298001718,7.13415581713371,3.748598071861243,1,52.19,19.15,6,2,0,0,10,4,1,369.5,0,0,0 +15421,18895,34465,34464,-9,-9,1,1,0,69,1,0,0,0,1,-9,4,3,0,2,0,7.853362792654377,7.58527424762435,1,0,-9,22,0,-5,-44.04633542625096,0,0,0,74,2,1,3,2,2,2019,4,2,29,12,0,0,15,4,12,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.091343860791163,7.978815536700417,4.596217498150087,1,26.54,47.6,3,1,0,0,10,4,1,369.5,0,0,0 +15422,18896,34466,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,1,8.878794364195965,9.029080383116241,0,3,0,0,0,-9,0,-953.2946111232214,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,6,37,37,15,1,6,-9,0,35.20310867672024,35.20310867672024,0,0,0,0,0,0,0,0,0,0,3.697153163516128,0,0,0,47.94,33.47,5,2,0,0,8,5,1,215,0,0,0 +15423,18897,34467,34468,-9,-9,2,1,1,62,1,0,0,0,1,-9,2,1,0,5,9.051420332038568,9.31374025960689,8.273004259181652,1,0,-9,10,0,13,-56.66155280531483,0,0,0,49,1,3,1,-9,-9,2019,1,1,7,0,36,24,15,1,0,1,0,21.00080468025244,21.00080468025244,0,0,0,0,0,0,0,0,0,0,0,8.733998362852756,0,0,64.37,50.23,7,1,0,0,8,5,1,2187,0,0,0 +15423,18897,34468,34467,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,3,8.405506534975755,8.465890359836516,0,1,0,-9,10,0,-13,33.69141918952491,0,0,0,62,1,5,1,1,2,2019,1,2,13,3,44,40,15,1,3,1,0,14.35454524953644,14.35454524953644,0,0,0,0,0,0,0,0,0,0,0,0,0,3,60.55,45.31,6,2,0,0,8,5,1,2187,0,0,0 +15423,18898,34469,-9,34468,34467,3,1,1,25,2,0,0,0,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-1099.225601994987,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.97,46.55,4,4,0,0,8,1,1,434,0,0,0 +15424,18899,34470,34471,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,8.156909869739971,8.317543785457488,1,0,-9,37,0,7,124.4812119131203,0,0,0,61,1,4,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.294603274751798,7.953395450058728,0,0,57.16,56.15,6,1,0,0,5,4,1,1131.5,0,0,0 +15424,18899,34471,34470,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,7.761320932751696,7.487517509473038,1,0,-9,37,0,-7,18.57577238461762,0,0,0,68,1,4,3,2,1,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.346724396380534,7.638537098116021,0,0,57.16,56.15,7,1,0,0,5,4,1,1131.5,0,0,0 +15425,18900,34472,34473,-9,-9,3,1,1,38,1,0,1,0,2,-9,2,1,0,4,8.688075635391176,8.887753414972188,0,2,0,-9,19,0,-5,-80.17940188483563,-9,0,0,43,2,3,1,2,2,2019,1,2,7,0,43,0,15,1,0,1,0,21.51631332798212,21.51631332798212,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,9,5,1,347,0,0,0 +15425,18900,34473,34472,-9,-9,2,1,0,43,1,0,1,0,2,-9,2,1,0,3,8.035264495650623,7.808247284671443,0,2,0,-9,20,0,5,-95.27329475753906,-9,0,1,38,2,4,1,3,-9,2019,1,3,6,0,42,0,15,1,0,1,0,7.433610528875549,7.433610528875549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,7,1,0,0,9,5,1,347,0,0,0 +15426,18901,34474,34475,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,5,8.313553912762895,8.501005705366584,0,1,0,-9,7,0,-6,94.79701722249591,0,0,0,61,3,3,3,3,3,2019,2,1,10,0,38,38,15,1,0,3,0,12.69132414028837,12.69132414028837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,1,708,0,0,0 +15426,18901,34475,34474,-9,-9,1,1,1,61,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,7,0,6,-133.8132277361233,0,0,0,55,2,5,1,3,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.306743235606183,3,41.47,58.08,4,1,1,1,13,3,1,708,0,0,0 +15426,18902,34476,-9,34474,34475,4,1,0,26,2,0,0,0,1,-9,2,1,0,3,8.141983557340717,8.474756017130321,0,3,0,0,0,-9,0,-932.5093459006951,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,38,38,15,1,0,-9,1,10.72569585564636,10.72569585564636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,6,1,0,0,13,4,1,491,0,0,0 +15427,18903,34477,-9,-9,-9,1,1,1,23,2,0,0,1,1,0,7,2,0,5,8.244009866866152,8.734928524107794,0,3,0,0,0,-9,0,-892.8789462954697,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,41,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.144715279957722,0,0,0,51.14,60.45,6,1,0,0,11,5,1,217,0,0,0 +15428,18904,34478,34479,-9,-9,2,1,1,49,1,0,2,0,2,-9,3,3,0,5,0,0,0,2,0,-9,18,0,0,-52.39494755057451,0,0,0,49,2,4,1,2,2,2019,3,1,9,1,0,41,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.71,59.08,4,1,1,1,12,2,1,1742,0,0,0 +15428,18904,34479,34478,-9,-9,1,1,0,49,1,0,2,0,2,-9,2,1,0,4,7.385224692640332,7.33526767233898,0,2,0,-9,16,0,0,92.29867577939588,0,0,0,49,2,5,3,3,3,2019,2,2,11,0,23,20,15,1,0,3,0,8.066883771462386,8.066883771462386,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,5,1,0,1,12,2,1,1742,0,0,0 +15429,18905,34480,34481,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,6.186690847846381,6.780310881826561,1,0,-9,53,0,6,188.6995446102704,0,0,0,73,3,4,3,-9,-9,2019,4,1,14,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.303126875436449,0,0,48.44,31.83,6,1,0,0,6,2,0,1515.5,0,0,0 +15429,18905,34481,34480,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,53,0,-6,51.34694511474869,0,0,0,79,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.687102660322148,3,36.26,62.83,6,1,0,0,6,2,0,1515.5,0,0,0 +15430,18906,34482,34483,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,3,8.48659247486586,8.564230853894951,4.90021230705283,1,0,-9,38,0,5,78.2932002825718,0,0,0,62,1,4,3,3,3,2019,2,2,9,0,14,16,15,1,0,4,0,46.7406663429887,46.7406663429887,0,0,0,0,0,0,0,1,1,0,5.179816025113445,5.328162715883733,0,0,52.99,51.28,6,1,0,0,2,4,1,591,0,0,0 +15430,18906,34483,34482,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,5.822618620169346,5.862151777801889,1,0,-9,38,0,-5,-13.5183758044369,0,0,0,67,2,3,1,3,2,2019,3,1,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.704118125421078,5.779695665631766,0,0,48.87,58.55,6,1,0,0,2,4,1,591,0,0,0 +15431,18907,34484,-9,-9,-9,1,1,1,37,3,0,0,0,2,-9,2,1,0,5,8.942480856326055,9.152244016905771,0,3,0,0,0,-9,0,-974.1018463275591,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,57,57,15,1,0,-9,0,20.10566961803278,20.10566961803278,0,0,0,0,0,0,0,1,1,0,4.837899918750264,0,0,0,57.06,57.76,6,1,0,0,6,5,1,458,0,0,0 +15432,18908,34485,-9,-9,-9,1,1,0,76,3,0,0,0,1,-9,4,3,0,3,0,7.96037632668717,7.884911575836775,3,0,0,0,-9,0,-869.1681249955134,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.774282447099211,8.356636593628522,0,0,61.04,39.41,6,1,0,0,11,4,1,1260,0,0,0 +15433,18909,34486,34487,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.094239376195633,7.73968390383807,0,2,0,-9,23,0,4,44.46249911692848,0,0,0,40,2,4,1,2,2,2019,1,1,9,0,39,42,15,1,1,1,0,8.377849431171654,8.377849431171654,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,3,0,581,0,0,0 +15433,18909,34487,34486,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,4,6.494455136673916,6.277187323263027,0,2,0,-9,23,0,-4,3.823177272551008,0,0,1,44,2,4,1,2,2,2019,1,2,11,0,11,7,15,1,0,1,0,7.827286343724594,7.827286343724594,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,5,1,0,0,9,3,0,581,0,0,0 +15433,18909,34488,-9,34487,34486,5,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1115.63675392386,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,3,0,581,0,0,0 +15433,18910,34489,-9,34487,34486,4,1,1,19,2,0,1,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1006.312367950212,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,1,1,9,1,0,155,0,0,0 +15434,18911,34490,-9,-9,-9,1,1,1,49,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-873.0292817064305,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.38,41.41,2,1,0,0,10,1,0,403,0,0,0 +15435,18912,34491,34492,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,4,0,-1,0,0,0,0,68,2,4,3,3,3,2019,4,2,24,10,0,0,15,4,10,4,0,0,0,1,0,13.01213256444349,0,0,0,0,1,1,0,0,0,0,0,37.43,17,1,1,0,0,7,1,1,875.5,0,0,0 +15435,18912,34492,34491,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,4,0,1,0,0,0,0,67,2,2,3,-9,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,7,1,1,875.5,0,0,0 +15436,18913,34493,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,2,1,0,2,7.910757801896833,8.582537087895782,6.750266542975652,3,0,0,0,-9,0,-1041.217113719015,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,2,39,39,15,1,2,-9,0,7.716054073837137,7.716054073837137,0,0,0,0,0,0,0,1,1,0,6.618828959206035,7.428258311937951,0,0,45.96,44.2,4,1,0,0,1,4,1,260,0,0,0 +15437,18914,34494,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-945.564546297707,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.18,40.77,7,1,1,0,13,1,0,1259,0,0,0 +15438,18915,34495,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,3,0,7.017683532500207,6.906084998682391,3,0,0,0,-9,0,-811.2312028535132,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.51348283824914,6.797289071842003,0,0,41.34,56.62,5,1,0,0,7,2,0,80,0,0,0 +15439,18916,34496,34497,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,7.277523454419157,7.289367173501706,1,0,-9,40,0,-1,70.1371505947766,0,0,0,61,2,3,3,3,3,2019,4,2,20,8,0,21,15,4,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.558681038738926,7.351280987462881,11.29718957078375,3,35.63,62.19,6,1,0,0,10,3,1,554,0,0,0 +15439,18916,34497,34496,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,3,0,7.66539903008222,7.64723502702893,1,0,-9,40,0,1,122.8126811329097,0,0,0,60,2,4,3,3,-9,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.63893263264691,7.359640328669866,14.79526118285996,3,51.64,50.48,6,1,0,0,10,3,1,554,0,0,0 +15440,18917,34498,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,4,0,7.187701520537262,6.964644392069536,3,0,0,0,-9,0,-923.6853127704637,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.993652771213396,7.28204724125166,0,0,58.87,51.29,6,1,0,0,5,3,1,857,0,0,0 +15441,18918,34499,-9,34502,34501,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-881.606213999072,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,1327.25,0,0,0 +15441,18918,34500,-9,34502,34501,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.473999141023,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,4,1,1327.25,0,0,0 +15441,18918,34501,34502,-9,-9,2,1,1,35,1,1,2,0,2,-9,1,1,0,4,6.995083523108678,7.008715786371395,0,2,0,-9,12,0,2,36.21465684962523,0,0,0,33,1,3,1,2,2,2019,1,1,18,6,14,16,15,1,6,1,0,9.991653804217913,9.991653804217913,0,0,0,0,0,0,0,1,1,0,0,0,1.340202700067172,3,38.74,55.32,4,1,0,0,5,4,1,1327.25,0,0,0 +15441,18918,34502,34501,-9,-9,1,1,0,33,1,1,2,0,1,-9,2,1,0,3,8.700712514241003,8.849827453655569,0,2,0,-9,13,0,-2,20.18875130378898,0,0,1,35,2,4,1,2,2,2019,1,2,13,2,50,48,15,1,2,1,0,16.77562192682552,16.77562192682552,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.1,60.27,3,1,0,0,5,4,1,1327.25,0,0,0 +15442,18919,34503,34504,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,6.646499900418953,6.429067047182169,1,0,-9,51,0,0,12.23565383668321,0,0,0,73,2,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.114969243455013,6.326238674751208,0,0,58.32,50.22,7,1,0,0,9,4,1,280.5,0,0,0 +15442,18919,34504,34503,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,8.563862421214383,8.452375227380982,1,0,-9,51,0,0,135.4487175394866,0,0,0,73,3,3,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.303171037754198,8.138700072934537,0,0,64.40000000000001,42,6,1,0,0,9,4,1,280.5,0,0,0 +15443,18920,34505,34506,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,2,7.735689403885888,7.795512772439872,3.023598484268236,1,0,1,1,-9,-23,-30.7030183911324,0,1,1,47,2,1,3,-9,-9,2019,2,1,14,4,48,48,15,1,4,3,0,5.321480735149321,5.321480735149321,0,0,0,0,0,0,0,1,1,0,3.405345375678576,0,77.28407153508704,1,52.34,37.87,6,1,0,0,10,3,0,482.5,0,0,0 +15443,18920,34506,34505,-9,-9,1,1,1,47,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,1,1,-9,23,-115.3631386663406,0,0,0,24,2,2,1,3,-9,2019,3,2,19,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.53,36.14,1,1,0,1,10,3,0,482.5,0,0,0 +15444,18921,34507,-9,34510,-9,3,1,1,13,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-963.9541786896045,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,5,2,0,1248.75,0,0,0 +15444,18921,34508,-9,34510,-9,4,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-872.3129949953155,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,2,0,1248.75,0,0,0 +15444,18921,34509,-9,34510,-9,2,1,1,10,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-981.224238314113,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,5,2,0,1248.75,0,0,0 +15444,18921,34510,-9,-9,-9,1,1,0,39,2,0,3,0,2,-9,2,1,0,4,7.459226893833466,7.247631997694632,3.812872896116365,4,0,0,0,-9,0,-947.5268399031019,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,31,17,15,1,0,-9,0,6.771254019663737,6.771254019663737,0,0,0,0,0,0,0,1,1,0,4.159018761461143,0,0,0,57.16,56.15,6,1,0,0,5,2,0,1248.75,0,0,0 +15445,18922,34511,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,3,8.349972412713813,8.312143394687922,0,3,0,0,0,-9,0,-1100.552485789858,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,1,28,28,15,1,1,-9,0,20.60169573381705,20.60169573381705,0,0,0,0,0,0,0,0,0,0,8.909448153921709,0,0,3,39.1,57.79,5,1,0,0,8,5,1,360,0,0,0 +15446,18923,34512,34513,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,3,0,8.039298217708591,8.299451546730928,1,0,-9,37,0,-3,-118.454068484444,0,0,0,62,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.199073997551196,0,0,59.32,36.25,6,1,0,0,7,3,1,895.5,0,0,0 +15446,18923,34513,34512,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,5.645844010724937,5.933335415717369,1,0,-9,37,0,3,21.46593163433195,0,0,0,59,2,3,3,3,2,2019,4,2,11,0,0,15,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.365776363660568,5.762176601534277,0,0,49,48,5,1,0,0,7,3,1,895.5,0,0,0 +15447,18924,34514,34515,-9,-9,2,1,1,43,1,0,2,0,2,-9,2,1,0,4,8.66944014664694,8.952323057058081,0,2,0,-9,8,0,3,31.11248307790496,-9,0,0,40,2,4,3,-9,-9,2019,2,1,9,0,40,0,15,1,1,3,0,14.30404417507755,14.30404417507755,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,7,3,0,783.5,0,0,0 +15447,18924,34515,34514,-9,-9,1,1,0,40,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,21,0,-3,83.05309155892185,0,0,1,43,2,4,1,3,2,2019,3,2,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,1,0,0,7,3,0,783.5,0,0,0 +15448,18925,34516,-9,-9,-9,1,1,0,23,2,0,0,0,1,-9,2,1,0,3,8.09893437234687,8.158771948059954,0,3,0,0,0,-9,0,-1027.303659954609,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,41,36,15,1,3,-9,0,10.56411180013016,10.56411180013016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,5,1,0,0,7,4,0,504,0,0,0 +15449,18926,34517,34518,-9,-9,2,1,0,71,1,0,0,0,1,-9,4,3,0,4,0,7.429702848442585,7.397535298788999,1,0,-9,30,0,-1,54.29820442305856,0,0,0,72,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.491535411701683,7.487677148181397,0,0,57.16,56.15,6,1,0,0,10,5,1,1425.5,0,0,0 +15449,18926,34518,34517,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,8.37351783429626,8.7396806290685,1,0,-9,30,0,1,30.38786907079486,0,0,0,71,1,4,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.579085868039549,8.648869744317839,0,0,48.04,53.42,6,1,0,0,10,5,1,1425.5,0,0,0 +15450,18927,34519,-9,34521,34522,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.964112650739,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,655,0,0,0 +15450,18927,34520,-9,34521,34522,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.01837203027,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,1,655,0,0,0 +15450,18927,34521,34522,-9,-9,1,1,0,38,1,0,2,0,2,-9,1,1,0,4,7.093153443674329,7.071405200522017,0,2,0,-9,19,0,-4,19.76131675824359,0,0,1,42,2,3,1,2,2,2019,1,2,24,12,10,20,15,1,12,1,0,13.42167702654197,13.42167702654197,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.37,60.83,5,1,0,0,10,4,1,655,0,0,0 +15450,18927,34522,34521,-9,-9,2,1,1,42,1,0,2,0,2,-9,2,1,0,3,8.857286126570104,9.008718241111916,0,2,0,-9,19,0,4,2.703717092366777,0,0,0,38,2,4,1,2,3,2019,1,1,8,1,44,44,15,1,1,1,0,27.95010750739895,27.95010750739895,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,6,1,0,0,10,4,1,655,0,0,0 +15451,18928,34523,34524,-9,-9,1,1,1,20,1,0,0,1,2,0,7,2,0,3,0,0,0,1,0,1,1,-9,2,0,-9,1,0,18,2,4,2,-9,-9,2019,4,2,14,3,0,0,15,2,3,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,44.2,5,1,0,0,1,1,0,682.5,0,0,0 +15451,18928,34524,34523,-9,-9,2,1,0,18,1,0,0,1,2,0,7,2,0,4,0,0,0,1,0,1,1,-9,-2,0,-9,1,1,20,2,3,2,-9,-9,2019,4,1,28,12,0,0,15,2,12,2,0,0,0,0,0,0,0,0,0,0,1,1,0,.2466512999538254,0,0,0,10.95,60,3,1,0,1,1,1,0,682.5,0,0,0 +15452,18929,34525,34526,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,5.845606780801134,6.014702891785245,1,0,-9,24,0,-1,19.10390678160947,0,0,0,73,2,1,3,3,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,6.729142742175719,5.531402887406642,0,0,51.64,31.71,5,1,0,0,4,2,1,604,0,0,0 +15452,18929,34526,34525,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,1,0,6.104498717578529,6.149871705016298,1,0,-9,25,0,1,55.42933761494886,0,0,0,72,2,2,3,2,2,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.996508008895972,5.857310352054244,0,0,67.53,19.2,6,1,0,0,4,2,1,604,0,0,0 +15453,18930,34527,-9,-9,-9,1,1,0,66,2,0,0,0,1,-9,2,1,0,4,0,7.112709876178967,6.759326327965764,3,0,0,0,-9,0,-1056.674512850494,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.242266230515769,7.279831338971639,0,0,60.12,54.8,7,1,0,0,12,2,1,733,0,0,0 +15454,18931,34528,-9,-9,-9,1,1,1,84,3,0,0,0,3,-9,4,3,0,1,0,6.44197533445301,6.471573664609947,3,0,0,0,-9,0,-991.9902603902731,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,2.743020895041319,0,0,1,1,0,0,6.826402619251132,0,0,42.02,28.46,2,1,0,0,12,2,1,226,0,0,0 +15455,18932,34529,34530,-9,-9,2,1,0,44,1,0,0,0,1,-9,1,1,0,4,8.019243834034937,7.793070673711784,0,1,0,-9,14,0,6,113.4847442895883,0,0,1,38,1,4,1,2,2,2019,1,1,8,1,60,50,15,1,1,1,0,3.894432274290784,3.894432274290784,0,0,0,0,0,0,0,0,0,0,1.05617997501234,0,0,0,49.24,50.26,6,1,0,0,8,4,0,214.5,0,0,0 +15455,18932,34530,34529,-9,-9,1,1,1,38,1,0,0,0,1,-9,1,1,0,4,8.193983672549361,7.741745983780141,0,1,0,-9,14,0,-6,-24.52200382994259,0,0,0,44,1,4,1,2,2,2019,1,2,8,2,50,50,15,1,2,1,0,7.425396670608555,7.425396670608555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.54,57.19,6,1,0,0,8,4,0,214.5,0,0,0 +15456,18933,34531,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,3,7.848704466397787,7.967372834082146,0,3,0,0,0,-9,0,-1034.660763255518,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,38,40,15,1,1,-9,0,9.021043224716676,9.021043224716676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.5,51.02,6,4,0,0,8,3,0,323,0,0,0 +15456,18934,34532,-9,34531,-9,2,1,1,25,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1049.590999472876,1,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,4,0,0,8,1,0,95,0,0,0 +15457,18935,34533,34534,-9,-9,4,1,0,38,1,0,1,0,1,-9,2,1,0,3,8.162548699274048,8.257560945270246,0,2,0,-9,5,0,-4,-78.07555149005169,0,0,1,42,1,4,1,-9,-9,2019,1,1,8,0,44,35,15,1,0,1,0,9.443603983527716,9.443603983527716,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.46,52.7,6,1,0,0,11,4,1,697.6666666666666,0,0,0 +15457,18935,34534,34533,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,4,8.467370204936493,8.522636150643093,0,2,0,-9,5,0,4,86.47722561370315,0,0,0,38,1,3,1,2,2,2019,1,4,12,0,40,45,15,1,0,1,0,14.91256530120692,14.91256530120692,0,0,0,0,0,0,0,1,1,0,3.851981943680004,0,0,0,52.08,55.93,5,1,0,0,11,4,1,697.6666666666666,0,0,0 +15457,18935,34535,-9,-9,34534,3,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1142.38325674594,-9,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,4,1,697.6666666666666,0,0,0 +15457,18936,34536,-9,-9,34534,2,1,1,22,2,0,1,0,2,-9,11,3,0,5,7.826432615796231,7.755360664206973,0,3,0,0,0,-9,0,-776.0649848617861,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,38,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,7,1,0,0,11,4,1,196,0,0,0 +15458,18937,34537,-9,-9,-9,1,1,1,56,3,0,0,0,2,-9,1,1,0,3,7.656275868050578,7.889891917214913,0,3,0,0,0,-9,0,-1002.084216415044,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,30,40,15,1,1,-9,0,6.819299997348023,6.819299997348023,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.31,49.46,4,1,0,0,11,3,1,359,0,0,0 +15458,18938,34538,-9,-9,34537,2,1,1,26,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1094.816728781101,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,1,0,11,1,1,155,0,0,0 +15459,18939,34539,-9,-9,-9,1,1,0,42,3,0,1,0,2,-9,2,1,0,3,7.327380124431643,7.682325095497612,5.395996506029499,4,0,-9,0,-9,0,-1041.369760538141,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,20,0,15,1,1,-9,0,9.889684135478833,9.889684135478833,0,0,0,0,0,0,0,1,1,0,5.875711668320371,0,0,0,31.36,56.42,4,4,0,1,2,2,0,807.5,0,0,0 +15459,18939,34540,-9,34539,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1063.212547332418,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,2,2,0,807.5,0,0,0 +15460,18940,34541,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1084.889038643587,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,27,12,0,0,15,4,12,-9,0,0,0,1,0,0,21.30504988727592,0,0,0,1,1,0,0,0,0,0,32.8,23.13,3,1,0,0,13,1,0,2057,0,0,0 +15461,18941,34542,-9,-9,-9,1,1,1,39,2,0,0,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1009.112874785594,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.72,55.58,7,1,1,0,12,1,0,204,0,0,0 +15462,18942,34543,34544,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,42,0,-1,-10.2126527196824,0,0,0,63,2,4,3,3,2,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.372089058993764,0,0,0,57.31,50.61,6,1,0,0,4,3,1,1908.5,0,0,0 +15462,18942,34544,34543,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,8.189346847515575,7.83719558905171,1,0,-9,42,0,1,135.687430335668,0,0,0,62,2,4,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.624732030904039,7.89903659340182,0,0,54.2,57.49,6,1,0,0,4,3,1,1908.5,0,0,0 +15463,18943,34545,-9,-9,-9,1,1,1,45,2,0,0,0,3,-9,3,3,0,1,0,0,0,3,0,0,0,-9,0,-1083.582189615,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.45,28,5,1,1,0,11,1,0,303,0,0,0 +15464,18944,34546,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,3,3,0,3,0,6.657064306231677,6.75832053683502,3,0,0,0,-9,0,-973.4990215140889,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.355410494596356,0,0,54.38,49.27,6,3,1,0,9,2,1,1081,0,0,0 +15465,18945,34547,34548,-9,-9,2,1,0,41,1,0,2,0,1,-9,2,1,0,4,8.278630986127146,8.542746631609988,0,2,0,-9,18,0,-3,-73.67567442149219,-9,0,1,44,1,3,1,2,2,2019,1,1,11,0,43,0,15,1,0,1,0,9.85952010154918,9.85952010154918,0,0,0,0,0,0,0,1,1,0,0,0,8.070408898930758,3,43.04,54.57,5,1,0,0,6,5,1,433.5,0,0,0 +15465,18945,34548,34547,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,3,8.809054781825061,8.998299402115199,0,2,0,-9,8,0,3,-7.393190280773123,-9,0,0,41,1,4,1,2,3,2019,1,2,12,1,44,0,15,1,1,1,0,20.28540704757736,20.28540704757736,0,0,0,0,0,0,0,1,1,0,3.269334347266548,0,0,0,51.38,32.09,6,1,0,0,6,5,1,433.5,0,0,0 +15466,18946,34549,-9,-9,-9,1,1,1,61,2,0,0,0,2,-9,4,3,0,2,0,8.589271837813458,8.69115655276175,3,0,0,0,-9,0,-1002.520830773929,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.120603404731741,8.522331885421123,0,0,47.1,21.74,6,1,0,0,6,5,1,1126,0,0,0 +15467,18947,34550,34551,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,3,7.827140180520848,7.383261652011467,0,1,0,-9,23,-9,-4,-83.00907174074872,-9,0,0,53,1,3,1,-9,-9,2019,1,1,9,1,37,0,15,1,1,1,0,7.691307894229137,7.691307894229137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.38,46.77,6,1,0,0,4,5,1,374.5,0,0,0 +15467,18947,34551,34550,-9,-9,1,1,1,53,1,0,0,0,1,-9,2,1,0,3,9.024860507323121,8.610312312526023,0,1,0,-9,23,-9,4,82.0007086996377,-9,0,0,49,2,3,1,2,3,2019,1,2,6,0,45,0,15,1,0,1,0,16.93690331984699,16.93690331984699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,4,5,1,374.5,0,0,0 +15468,18948,34552,34554,-9,-9,2,1,0,36,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,13,0,1,-54.44424825369239,0,0,1,35,1,4,1,1,1,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3556687711837376,0,0,0,52,54.51,6,1,0,0,9,4,1,664.5,0,0,0 +15468,18948,34553,-9,34552,34554,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.114514679762,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,4,1,664.5,0,0,0 +15468,18948,34554,34552,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,4,9.078788040391949,9.318601222860263,0,2,0,-9,13,0,-1,35.96768185068431,0,0,0,36,1,3,3,2,1,2019,2,2,10,0,45,42,15,1,0,3,0,24.79134005353121,24.79134005353121,0,0,0,0,0,0,0,1,1,0,2.21261306238499,0,0,0,54.79,55.86,6,1,0,0,9,4,1,664.5,0,0,0 +15468,18948,34555,-9,34552,34554,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-879.3035971869242,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,9,4,1,664.5,0,0,0 +15469,18949,34556,34557,-9,-9,2,1,1,51,1,0,0,0,3,-9,1,1,0,2,4.360670315209813,4.493397502809881,0,1,0,-9,10,0,-2,133.3070921860911,0,0,0,53,2,3,1,3,2,2019,1,1,18,6,38,40,15,1,6,1,0,.2403306317200456,.2403306317200456,0,0,0,0,0,0,0,0,0,0,7.379621002856293,0,0,0,40.59,48.19,5,1,0,0,9,2,0,1105,0,0,0 +15469,18949,34557,34556,-9,-9,1,1,0,53,1,0,0,0,2,-9,1,1,0,3,0,0,0,1,0,-9,10,0,2,95.81160958029352,0,0,0,51,3,2,1,2,2,2019,1,2,14,2,20,28,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.1754808010409,3,51.87,30.02,5,1,0,1,9,2,0,1105,0,0,0 +15470,18950,34558,-9,34559,34560,3,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1064.372960284087,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,5,1,1092.333333333333,0,0,0 +15470,18950,34559,34560,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,2,8.556672169661361,9.359803839013681,0,2,0,-9,7,0,-5,15.66386741518199,-9,0,1,44,3,4,1,3,3,2019,1,1,8,0,10,0,15,1,0,1,0,106.3495425868915,106.3495425868915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,6,1,0,0,6,5,1,1092.333333333333,0,0,0 +15470,18950,34560,34559,-9,-9,1,1,1,44,1,0,1,0,3,-9,2,1,0,4,8.616114931603002,8.612297734731268,0,2,0,-9,7,0,5,-28.23708629225206,0,0,0,39,2,2,1,2,2,2019,1,2,6,0,44,48,15,1,0,1,0,17.86809838350317,17.86809838350317,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,1092.333333333333,0,0,0 +15471,18951,34561,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1049.989498185332,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,1,0,0,16.09640585541136,5.748203214092111,5.452841748592119,0,1,1,0,0,0,0,0,33.15,33.58,5,1,0,0,2,1,0,1151,0,0,0 +15472,18952,34562,34563,-9,-9,1,1,0,55,1,0,1,0,2,-9,2,1,0,4,7.256260927034234,8.014785346446864,7.113483666022263,2,0,-9,35,0,-3,-48.13106472730385,0,0,0,58,2,3,3,3,2,2019,2,2,7,0,35,36,15,1,0,3,0,8.693853698893268,8.693853698893268,0,0,0,0,0,0,0,1,1,0,5.88371901396595,7.345004824650861,19.95842715404634,3,54.2,57.49,6,1,0,0,10,3,1,1109,0,0,0 +15472,18952,34563,34562,-9,-9,2,1,1,58,1,0,1,0,2,-9,6,3,0,3,5.573537874679438,7.447622345975908,7.364933440927556,2,0,-9,35,0,3,-147.1785698486072,0,0,0,55,2,4,1,2,3,2019,3,1,11,0,5,11,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.711307167051636,7.352112879493278,10.54503451180864,3,49.6,35.49,6,1,0,0,10,3,1,1109,0,0,0 +15473,18953,34564,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,0,5.944612219149436,6.531335785931737,3,0,0,0,-9,0,-988.1410913513745,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.083760059730558,0,3,41.87,35.22,6,1,0,0,4,2,1,351,0,0,0 +15474,18954,34565,34566,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,0,5.757061208784674,5.474292990627223,1,0,1,1,-9,-2,-14.45079335925291,0,0,0,77,3,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,18.57934072240348,0,0,0,0,1,1,0,4.634643857989074,5.84705221136892,13.44279204392881,1,61.39,15.11,5,1,0,0,11,2,0,396.5,0,0,0 +15474,18954,34566,34565,-9,-9,2,1,1,77,1,0,0,0,3,-9,4,3,0,4,0,4.551899246817372,4.913228847509217,1,0,-9,1,-9,2,-22.30970674393199,-9,0,0,75,3,1,3,-9,-9,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,22.47030201528355,0,0,0,0,1,1,0,4.219126611237319,4.525170989842948,0,0,57.96,31.81,6,1,0,0,11,2,0,396.5,0,0,0 +15475,18955,34567,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1067.915763944417,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.338214891704135,0,0,0,1,1,0,0,0,0,0,56.73,39.36,6,1,0,0,10,1,0,505,0,0,0 +15476,18956,34568,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,-9,0,-9,0,-1049.914127219371,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,6.367206995412847,0,0,0,2.978646676470722,62.21568817610581,1,1,0,0,0,0,0,55.45,9.790000000000001,5,1,0,0,2,1,1,604,0,0,0 +15477,18957,34569,34570,-9,-9,2,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,48,0,7,38.43646579350379,0,0,0,67,1,2,3,2,1,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,5,1,0,0,8,3,1,1186.5,0,0,0 +15477,18957,34570,34569,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,2,0,7.502948748879366,7.629733062081038,1,0,-9,48,0,-7,49.01857544605702,0,0,0,74,1,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.043213032518757,7.932062983339684,0,0,61.69,36.86,7,1,0,0,8,3,1,1186.5,0,0,0 +15478,18958,34571,34572,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,6.986613970416441,7.034088319921891,1,0,-9,8,0,-2,-58.7995312378922,0,0,0,75,3,4,3,3,-9,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.450725538781019,7.3119067290749,0,0,55.19,54.26,6,1,0,0,12,3,1,525.5,0,0,0 +15478,18958,34572,34571,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,4,0,7.646729484523004,7.781795083509537,1,0,-9,8,0,2,54.44224923834839,0,0,0,73,2,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.599043514201755,0,0,48.53,58.91,5,1,0,0,12,3,1,525.5,0,0,0 +15479,18959,34573,-9,-9,-9,1,1,1,56,2,0,0,0,2,-9,2,1,0,5,9.088490358805007,9.521280483513701,0,3,0,0,0,-9,0,-1055.889037382064,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,38,15,1,0,-9,0,30.79947806983026,30.79947806983026,0,0,0,0,0,0,0,0,0,0,1.662827877102576,0,0,0,57.06,57.76,7,1,0,0,8,5,1,473,0,0,0 +15480,18960,34574,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,1,1,0,1,0,3.341284680225183,3.266818900524338,3,0,0,0,-9,0,-1004.939769390645,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,35,12,0,0,15,1,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.886023477264395,0,26.67192531737588,3,43.32,35.49,2,3,0,1,6,2,1,1202,0,0,0 +15481,18961,34575,34577,-9,-9,1,1,0,33,1,1,2,0,2,-9,5,1,0,2,8.367949464422958,8.232394519194758,0,2,0,-9,3,0,-5,45.6871520732599,0,0,1,38,1,3,1,2,2,2019,1,3,14,3,49,57,15,1,3,1,0,9.055116750910454,9.055116750910454,0,0,0,0,0,0,0,1,1,0,1.845561366624551,0,0,0,26.38,58.67,6,4,0,0,8,4,0,848.75,0,0,0 +15481,18961,34576,-9,34575,34577,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1003.896775573349,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,4,0,0,8,4,0,848.75,0,0,0 +15481,18961,34577,34575,-9,-9,3,1,1,38,1,1,2,0,1,-9,2,1,0,3,7.916778153086864,7.64790922684374,0,2,0,-9,3,0,5,-133.6263244461437,0,0,0,33,2,2,1,-9,-9,2019,1,1,9,0,48,40,15,1,0,1,0,7.180358428002901,7.180358428002901,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.26,35.46,5,4,0,0,8,4,0,848.75,0,0,0 +15481,18961,34578,-9,34575,34577,2,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-892.734671560132,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,8,4,0,848.75,0,0,0 +15482,18962,34579,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,5.073384701104144,5.093397256597253,3,0,0,0,-9,0,-952.1416047633176,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.816433718658789,0,0,56.37,32.74,4,1,0,1,2,2,0,454,0,0,0 +15483,18963,34580,-9,-9,-9,1,1,1,50,2,0,0,0,1,-9,3,3,0,2,0,6.811651148859014,6.241912398425815,3,0,0,0,-9,0,-895.659434505688,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.654741313643301,0,0,0,15.92,55.34,2,1,1,0,9,2,1,268,0,0,0 +15484,18964,34581,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,5.68347731349624,5.607766995793414,3,0,0,0,-9,0,-937.3234127923757,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.330235748394275,5.735730885378675,0,0,57.73,54.53,6,1,0,0,9,2,1,1180,0,0,0 +15485,18965,34582,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,2,1,0,3,8.201369968750221,8.525563330316661,7.222371869461659,3,0,0,0,-9,0,-911.7154239354882,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,28,28,15,1,0,-9,0,12.51415751552986,12.51415751552986,0,0,0,0,0,0,0,1,1,0,0,7.530794154626743,0,0,53,43.25,5,1,0,0,4,5,1,535,0,0,0 +15486,18966,34583,34584,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,4,0,8.009485297033311,8.033441677034059,1,0,-9,41,0,1,-10.73537808489669,0,0,0,62,1,4,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.77848903874437,7.983440137657291,12.86298031467937,3,50.11,54.04,6,1,0,0,2,5,1,295.5,0,0,0 +15486,18966,34584,34583,-9,-9,1,1,0,62,1,0,0,0,1,-9,4,3,0,4,0,8.705958843657045,8.737826889881873,1,0,-9,41,0,-1,37.65554137578204,0,0,0,63,1,4,3,2,1,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.428350623361127,8.660207357570995,9.474538441789177,3,57.16,56.15,6,1,0,0,2,5,1,295.5,0,0,0 +15487,18967,34585,34586,-9,-9,2,1,1,82,1,0,0,0,1,-9,4,3,0,4,0,7.973508014241239,8.389153631833283,1,0,-9,9,0,6,-62.45951575289162,0,0,0,76,2,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.642489206927251,7.719322481193179,0,0,58.3,52.91,6,1,0,0,9,3,1,1235,0,0,0 +15487,18967,34586,34585,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,57,0,-6,-35.79266204575146,0,0,0,82,1,4,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,3.230916797922024,0,0,0,0,1,1,0,.437181979374767,0,0,0,59.22,37.52,6,1,0,0,9,3,1,1235,0,0,0 +15488,18968,34587,34588,-9,-9,2,1,0,65,1,0,0,0,3,-9,4,3,0,3,0,5.907946333037393,5.618654747611073,1,0,-9,9,0,-5,-90.33174624910077,0,0,0,70,3,4,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.608615427578536,0,0,57.63,40.89,6,1,0,0,7,2,0,407,0,0,0 +15488,18968,34588,34587,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,5.098449725959071,4.876975145948149,1,0,-9,9,0,5,-110.9253521143061,0,0,0,65,3,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.996998381780468,0,0,55,50.21,7,1,0,0,7,2,0,407,0,0,0 +15489,18969,34589,34591,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,4,8.637340608374403,8.606969577652748,0,2,0,-9,28,0,1,-51.94875034901795,0,0,0,50,1,3,1,1,2,2019,1,1,8,0,40,45,15,1,0,1,0,21.94925915510842,21.94925915510842,0,0,0,0,0,0,0,1,1,0,4.159034171886886,0,6.130550463958546,3,52.23,55.6,6,1,0,0,4,5,1,571.3333333333334,0,0,0 +15489,18969,34590,-9,34591,34589,4,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1104.063869121135,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,4,5,1,571.3333333333334,0,0,0 +15489,18969,34591,34589,-9,-9,1,1,0,50,1,0,1,0,1,-9,2,1,0,3,8.691807487907681,8.721469760591324,0,2,0,-9,28,0,-1,-65.22360809659074,0,0,0,51,1,4,1,2,1,2019,1,2,13,2,20,20,15,1,2,1,0,35.41384967310208,35.41384967310208,0,0,0,0,0,0,0,1,1,0,0,0,10.60737235009893,3,49.55,55.6,6,1,0,0,4,5,1,571.3333333333334,0,0,0 +15489,18970,34592,-9,34591,34589,3,1,0,18,2,0,1,0,2,1,2,1,0,4,7.477567777482155,7.267207327962102,0,3,0,0,0,-9,0,-1016.758159585077,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,27,0,15,1,0,-9,1,6.249277399956322,6.249277399956322,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,4,3,1,599,0,0,0 +15490,18971,34593,34594,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,6.758006597972178,6.962038942329734,1,0,-9,45,0,-3,-29.77792261250724,0,0,0,72,3,2,3,2,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.568358336705476,7.153965869870665,0,0,59.53,56.44,7,1,0,0,4,4,0,445.5,0,0,0 +15490,18971,34594,34593,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,2,0,8.779584149906235,8.400834656837587,1,0,-9,45,0,3,-9.134156224008295,0,0,0,69,2,4,3,3,3,2019,4,1,21,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.6615412859210432,8.357885414606063,0,0,29.97,48.61,2,1,0,0,4,4,0,445.5,0,0,0 +15491,18972,34595,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,1,0,7.528934484184648,7.127839642328097,3,0,0,0,-9,0,-916.0283394778,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,10,0,0,15,4,10,-9,0,0,0,1,5.528434106821316,0,0,0,7.180302173208588,29.37419907174905,1,1,0,0,7.182817711903439,0,0,20.96,32.9,6,1,0,0,12,3,0,546,0,0,0 +15492,18973,34596,34597,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,4.561075624339132,4.384782784049479,1,0,-9,8,0,-1,-68.6877747802571,0,0,0,78,2,3,3,3,2,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.479874161250352,0,0,56.07,45.75,6,1,0,0,13,4,1,135.5,0,0,0 +15492,18973,34597,34596,-9,-9,1,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,8.51650777156885,8.142819470298809,1,0,-9,8,0,1,13.90054517519754,0,0,0,77,2,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.293406694974918,0,0,56.47,38.94,6,1,0,0,13,4,1,135.5,0,0,0 +15493,18974,34598,-9,34601,34599,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1152.843469345257,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,1728.75,0,0,0 +15493,18974,34599,34601,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,4,9.173812630918892,9.182916267898005,0,2,0,-9,15,0,0,22.8518091831981,0,0,0,33,1,4,3,1,1,2019,2,2,5,0,37,37,15,1,0,3,0,28.36924107356223,28.36924107356223,0,0,0,0,0,0,0,1,1,0,5.297539985151636,0,0,0,55.79,52.62,2,1,0,0,5,4,1,1728.75,0,0,0 +15493,18974,34600,-9,34601,34599,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.576163423494,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,4,1,1728.75,0,0,0 +15493,18974,34601,34599,-9,-9,2,1,0,33,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,16,0,0,14.3858223445546,0,0,1,33,1,4,1,2,3,2019,3,1,7,0,0,25,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.83,48.07,6,1,0,0,5,4,1,1728.75,0,0,0 +15494,18975,34602,-9,-9,-9,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,5.920605725366812,5.744085789896642,0,3,0,0,0,-9,0,-1085.380329248294,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,5,1,8,35,15,1,1,-9,1,4.766499282696327,4.766499282696327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,6,1,0,0,11,2,1,5003,0,0,0 +15495,18976,34603,34604,-9,-9,1,1,1,47,1,0,0,0,2,-9,2,1,0,4,7.473246600882227,7.511250047741035,0,1,0,-9,7,0,-1,32.99428106505643,0,0,0,48,2,5,1,2,2,2019,1,2,10,0,41,15,15,1,0,1,0,5.284889773652083,5.284889773652083,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,6,1,0,0,11,4,1,1323,0,0,0 +15495,18976,34604,34603,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,5,8.233559025748722,8.310021376881826,6.951168822073168,1,0,-9,7,0,1,-112.2160706606484,0,0,0,47,2,4,1,3,3,2019,1,1,15,3,30,33,15,1,3,1,0,13.4922518190303,13.4922518190303,0,0,0,0,0,0,0,0,0,0,3.807059092605758,6.951066982907744,0,0,33.39,65.88,7,1,0,0,11,4,1,1323,0,0,0 +15495,18977,34605,-9,34604,34603,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,8.098783183692284,8.300025954396382,0,3,0,0,0,-9,0,-970.4656935400234,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,35,37,15,1,1,-9,1,10.43912440136889,10.43912440136889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,5,1,0,0,11,4,1,321,0,0,0 +15496,18978,34606,-9,-9,-9,1,1,0,54,3,0,0,0,2,-9,2,1,0,3,7.345935849112472,8.014471923873236,5.75411945420468,3,0,0,0,-9,0,-1081.623191398975,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,24,60,15,1,0,-9,0,5.783239279028604,5.783239279028604,0,0,0,0,0,0,0,0,0,0,0,5.77304683078385,8.377734168594809,3,54.96,53.17,6,1,0,0,13,3,1,243,0,0,0 +15497,18979,34607,-9,-9,-9,1,1,0,43,3,0,2,0,1,-9,2,1,0,4,8.862648306937658,8.572444580894537,0,4,0,0,0,-9,0,-1067.785038162864,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,2,37,30,15,1,2,-9,0,18.30548034812356,18.30548034812356,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,5,1,0,1,9,4,1,512,0,0,0 +15497,18979,34608,-9,34607,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1055.486576408788,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,4,1,512,0,0,0 +15497,18979,34609,-9,34607,-9,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1004.858526822976,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,512,0,0,0 +15498,18980,34610,34613,-9,-9,2,1,0,50,1,0,2,0,2,-9,2,1,0,4,7.544056809491986,7.70557225071734,0,2,0,-9,6,0,-4,-130.4624944926448,0,0,0,54,2,3,1,2,2,2019,1,1,8,0,25,25,15,1,0,1,0,7.822659617059034,7.822659617059034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,442.25,0,0,0 +15498,18980,34611,-9,34610,34613,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.8875343329548,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,9,5,1,442.25,0,0,0 +15498,18980,34612,-9,34610,34613,3,1,0,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1026.54703405835,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,15,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.36,65.29000000000001,5,1,0,0,9,5,1,442.25,0,0,0 +15498,18980,34613,34610,-9,-9,1,1,1,54,1,0,2,0,2,-9,2,1,0,3,9.360470851152154,9.749827607050747,0,2,0,-9,6,0,4,-91.19905034237811,0,0,0,50,2,4,1,2,2,2019,1,2,7,0,46,48,15,1,0,1,0,30.35612730613614,30.35612730613614,0,0,0,0,0,0,0,0,0,0,7.506753660520435,0,0,0,57.33,53.46,6,1,0,0,9,5,1,442.25,0,0,0 +15499,18981,34614,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,1,1,0,4,4.187044744098799,6.508993387760394,6.033922102348065,3,0,0,0,-9,0,-1044.777555221305,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,5,0,15,1,0,-9,0,1.608861088556835,1.608861088556835,0,0,0,0,0,0,0,1,1,0,5.829043797474654,6.246392740751862,0,0,55.19,54.26,6,1,0,0,5,2,1,283,0,0,0 +15500,18982,34615,-9,34616,34618,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.848722105903,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,1852.25,0,0,0 +15500,18982,34616,34618,-9,-9,1,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.627962901127066,8.633108634431458,0,2,0,-9,9,0,0,72.09332460513188,0,0,0,48,2,2,1,2,1,2019,1,2,10,0,31,40,15,1,0,1,0,17.5796301161312,17.5796301161312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,5,1,0,0,7,4,1,1852.25,0,0,0 +15500,18982,34617,-9,34616,34618,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.3216138808236,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,1852.25,0,0,0 +15500,18982,34618,34616,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,2,8.508220145021269,8.369132245924407,0,2,0,-9,9,0,0,-169.0711820729169,0,0,0,48,1,4,1,-9,3,2019,1,1,12,0,48,40,15,1,0,1,0,11.17828994239244,11.17828994239244,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.3,48.1,4,1,0,0,7,4,1,1852.25,0,0,0 +15501,18983,34619,34620,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,2,0,6.010544034949461,5.836832632313283,1,0,-9,64,0,-2,-1.933907871599084,0,0,0,88,2,3,3,3,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,1,27.90783625135643,0,39.29652229966111,0,0,262.6791851859443,1,1,0,4.863739900003755,5.707907736121169,24.18939298120278,1,60.95,17.25,6,1,0,0,2,2,1,505,0,0,0 +15501,18983,34620,34619,-9,-9,2,1,1,88,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,64,0,2,3.200300061657059,0,0,0,86,3,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,17.67868120678059,0,11.33038883722383,0,0,95.29330622508479,1,1,0,1.873958603729523,0,0,0,55,45,6,1,0,0,2,2,1,505,0,0,0 +15502,18984,34621,-9,34623,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-902.9463918177006,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,13,1,0,419.3333333333333,0,0,0 +15502,18984,34622,-9,34623,-9,2,1,1,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-928.8260189838863,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,5,1,0,0,13,1,0,419.3333333333333,0,0,0 +15502,18984,34623,-9,-9,-9,1,1,0,42,2,0,2,0,2,-9,6,3,0,3,0,0,0,4,0,0,0,-9,0,-987.0867293384289,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,3,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.74,23.94,3,1,0,0,13,1,0,419.3333333333333,0,0,0 +15503,18985,34624,34625,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,57,0,2,-100.5877096629149,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.32208213233767,2,62.49,55.09,1,1,0,0,1,2,1,364.5,0,0,0 +15503,18985,34625,34624,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,6.817659621038239,7.028644045058908,1,0,-9,57,0,-2,-52.51936393836731,0,0,0,79,2,4,3,3,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,8.885562041721288,0,0,0,0,1,1,0,0,6.808377766318278,0,0,52.67,36.49,6,1,0,0,1,2,1,364.5,0,0,0 +15504,18986,34626,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.200359526831864,8.292768337622153,0,3,0,0,0,-9,0,-889.1392747694997,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,27,39,15,1,0,-9,0,17.24703986013179,17.24703986013179,0,0,0,0,0,0,0,0,0,0,3.502626357519463,0,1.339953960571708,3,48.53,58.91,5,1,0,0,12,4,1,955,0,0,0 +15505,18987,34627,34628,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.278801695478077,7.887049895830879,0,1,0,-9,35,0,-2,105.978720131262,0,0,0,59,2,5,3,2,2,2019,2,2,8,0,38,37,15,1,0,4,0,10.96967762987891,10.96967762987891,0,0,0,0,0,0,0,0,0,0,2.343240636908274,0,7.05579677705765,3,57.16,56.15,7,1,0,0,5,3,1,1828.5,0,0,0 +15505,18987,34628,34627,-9,-9,2,1,1,59,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,35,0,2,-48.1657937517796,0,0,0,57,2,4,1,3,3,2019,3,1,10,3,0,40,15,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.53262394724054,3,57.06,57.76,7,1,0,0,5,3,1,1828.5,0,0,0 +15506,18988,34629,34630,-9,-9,1,1,0,70,1,0,1,0,1,-9,4,3,0,3,0,5.984764482276256,5.615433932208234,2,0,-9,48,0,1,-85.31103191148686,-9,0,0,69,1,4,3,2,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.93853350928846,43.67446684076143,3,51.61,50.58,6,1,0,0,9,3,1,853.5,0,0,0 +15506,18988,34630,34629,-9,-9,2,1,1,69,1,0,1,0,1,-9,4,3,0,4,0,8.033762865304105,7.851797147362314,2,0,-9,48,0,-1,-65.37473338010052,-9,0,0,70,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.605299137295432,7.930857246637625,43.99648325691773,3,53.44,55.06,6,1,0,0,9,3,1,853.5,0,0,0 +15506,18989,34631,-9,34632,34633,6,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-928.6316426906124,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,2,1,412.3333333333333,0,0,0 +15506,18989,34632,34633,34629,34630,4,1,0,37,1,0,1,0,2,-9,2,1,0,1,7.388860982048739,6.815503779818901,0,2,0,-9,5,0,5,-15.00743804332389,0,0,1,32,2,1,3,1,1,2019,2,5,17,5,18,18,15,1,5,3,0,7.316395870929563,7.316395870929563,0,0,0,0,0,0,0,1,1,0,0,0,.8202170291490116,3,34.47,34.75,3,1,0,0,9,2,1,412.3333333333333,0,0,0 +15506,18989,34633,34632,-9,-9,5,1,1,32,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,5,0,-5,73.69587517397129,0,0,0,37,2,1,1,-9,-9,2019,3,4,25,10,0,0,15,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.94,37.16,3,1,0,0,9,2,1,412.3333333333333,0,0,0 +15507,18990,34634,34635,-9,-9,1,1,0,44,1,0,0,0,1,-9,2,1,0,4,9.693196207003203,9.786108497333821,0,1,0,-9,19,0,-1,13.92734818098471,0,0,1,45,1,4,1,2,1,2019,1,2,9,0,50,52,15,1,0,1,0,39.99336924384098,39.99336924384098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,4,1,0,0,6,5,1,420,0,0,0 +15507,18990,34635,34634,-9,-9,2,1,1,45,1,0,0,0,1,-9,2,1,0,4,9.530007399894181,9.701250914889094,6.703593578224517,1,0,-9,19,0,1,99.48062339275289,0,0,0,44,1,4,1,3,2,2019,1,1,7,0,30,40,15,1,0,1,0,61.18354259353401,61.18354259353401,0,0,0,0,0,0,0,0,0,0,6.758030147981346,7.208917758797735,0,0,54.79,55.86,6,1,0,0,6,5,1,420,0,0,0 +15508,18991,34636,-9,34637,-9,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-893.3459118713238,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,2,0,784.6666666666666,0,0,0 +15508,18991,34637,-9,-9,-9,1,1,0,35,2,0,2,0,2,-9,6,3,0,2,0,5.585553300204604,5.085958364779378,4,0,0,0,-9,0,-989.0318026518291,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.939173294613071,0,46.86332139411104,3,12.61,62.59,3,1,0,0,11,2,0,784.6666666666666,0,0,0 +15508,18991,34638,-9,34637,-9,2,1,1,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-933.63933460259,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,11,2,0,784.6666666666666,0,0,0 +15509,18992,34639,-9,34640,34642,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.5369721746379,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,0,348.75,0,0,0 +15509,18992,34640,34642,-9,-9,1,1,0,28,1,1,2,0,2,-9,2,1,0,4,7.734278456537764,7.650314968857391,0,2,0,-9,8,0,-3,40.93731652204475,0,1,1,31,2,3,1,-9,-9,2019,1,2,11,1,32,24,15,1,1,1,0,7.792612432243392,7.792612432243392,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.87,57.99,6,1,0,0,5,4,0,348.75,0,0,0 +15509,18992,34641,-9,34640,34642,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.5981465217117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,5,4,0,348.75,0,0,0 +15509,18992,34642,34640,-9,-9,2,1,1,31,1,1,2,0,2,-9,1,1,0,3,8.564152443172146,8.637179323336147,0,2,0,-9,8,0,3,7.255360927777163,0,0,0,28,2,4,1,-9,-9,2019,1,1,12,0,50,40,15,1,0,1,0,11.56315036341478,11.56315036341478,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,6,1,0,0,5,4,0,348.75,0,0,0 +15510,18993,34643,-9,34644,34645,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1079.045719142411,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,4,1,629,0,0,0 +15510,18993,34644,34645,-9,-9,1,1,0,26,1,1,1,0,2,-9,2,1,0,5,8.03800697494361,7.879272738467499,0,2,0,-9,3,0,-2,-86.56627023394796,0,1,1,28,2,2,1,2,2,2019,1,2,8,0,14,8,15,1,0,1,0,22.24926571096925,22.24926571096925,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,6,1,0,0,12,4,1,629,0,0,0 +15510,18993,34645,34644,-9,-9,2,1,1,28,1,1,1,0,2,-9,2,1,0,2,8.57080768559617,8.603527356357267,0,2,0,-9,3,0,2,46.59082240130724,0,1,0,26,2,5,1,-9,-9,2019,1,1,11,3,38,41,15,1,3,1,0,12.83391011147263,12.83391011147263,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.78,46.7,6,1,0,0,12,4,1,629,0,0,0 +15511,18994,34646,-9,34650,34649,7,1,0,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1026.136814382769,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,3,0,0,4,2,1,972,0,0,0 +15511,18994,34647,-9,34650,34649,5,1,0,15,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-859.5264477982382,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,5,3,0,0,4,2,1,972,0,0,0 +15511,18994,34648,-9,34650,34649,6,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-945.9399266528075,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,5,3,0,0,4,2,1,972,0,0,0 +15511,18994,34649,34650,-9,-9,1,1,1,41,1,0,3,0,2,-9,2,1,0,3,7.927937332173761,7.96773264868688,0,2,0,-9,27,0,-2,24.81243750695337,0,0,0,43,3,4,3,3,3,2019,2,2,12,0,37,37,15,1,0,3,0,7.163327944954507,7.163327944954507,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.04,35.51,4,3,0,0,4,2,1,972,0,0,0 +15511,18994,34650,34649,-9,-9,2,1,0,43,1,0,3,0,3,-9,6,3,0,4,0,0,0,2,0,-9,27,0,2,120.594127372505,0,0,1,41,2,3,1,3,3,2019,3,1,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,55,6,3,0,0,4,2,1,972,0,0,0 +15511,18995,34651,-9,34650,34649,3,1,0,21,2,0,3,0,2,-9,2,1,0,5,7.793318639870191,7.563535945016176,0,3,0,0,0,-9,0,-921.6870301420074,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,2,0,25,25,15,1,0,-9,1,10.49601962084867,10.49601962084867,0,0,0,0,0,0,0,1,0,1,0,0,0,0,67.48,46.19,7,3,0,0,4,3,1,385,0,0,0 +15511,18996,34652,-9,34650,34649,4,1,0,19,2,0,3,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-989.5229235429068,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,3,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.12,54.8,7,3,1,1,4,1,1,303,0,0,0 +15512,18997,34653,34654,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,55,0,0,97.14826097166274,0,0,0,70,3,4,3,3,3,2019,4,1,19,6,0,0,15,4,6,4,0,0,0,1,0,35.86269264452207,0,0,0,0,1,1,0,0,0,0,0,42.46,49.11,6,1,0,0,2,2,1,968,0,0,0 +15512,18997,34654,34653,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,4,0,6.937641829408143,6.503922279527616,1,0,-9,55,0,0,-19.11746582240736,0,0,0,70,3,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.537256358429015,80.9135288255444,1,55.19,54.26,6,1,0,0,2,2,1,968,0,0,0 +15513,18998,34655,34656,-9,-9,2,1,0,35,1,1,2,0,1,-9,2,1,0,4,8.371355911752842,8.773191113969537,0,2,0,-9,2,0,-2,38.84313670333835,0,0,1,37,1,3,1,-9,-9,2019,1,1,6,0,38,38,15,1,0,1,0,17.99096403013063,17.99096403013063,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,5,1,387.75,0,0,0 +15513,18998,34656,34655,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,3,8.592496864271101,8.918235854259144,0,2,0,-9,2,0,2,-161.1366809571656,-9,0,0,35,1,4,1,1,1,2019,1,2,7,0,40,0,15,1,0,1,0,16.98052502973979,16.98052502973979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,12,5,1,387.75,0,0,0 +15513,18998,34657,-9,34655,34656,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.601510446839,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,12,5,1,387.75,0,0,0 +15513,18998,34658,-9,34655,34656,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.9825817380839,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,12,5,1,387.75,0,0,0 +15514,18999,34659,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,2,1,0,4,8.743252801865426,9.070985602872845,0,3,0,0,0,-9,0,-894.8829288727997,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,9,0,70,60,15,1,0,-9,0,12.79316109123907,12.79316109123907,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51.83,57.2,6,1,0,0,12,5,1,90,0,0,0 +15515,19000,34660,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.577127441621407,7.737620251670835,0,3,0,0,0,-9,0,-1038.040013647191,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,17,4,55,46,15,1,4,-9,0,4.082784375264827,4.082784375264827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,4,1,0,0,10,3,0,284,0,0,0 +15516,19001,34661,34662,-9,-9,1,1,1,52,1,0,2,0,2,-9,1,1,0,4,7.473861598835874,7.520794244632062,0,2,0,-9,6,0,5,-104.3059672047853,0,0,0,47,3,4,3,2,2,2019,2,2,10,0,32,32,15,1,0,3,0,6.338432734349165,6.338432734349165,0,0,0,0,0,0,0,1,1,0,0,0,9.244779069813728,3,53.07,52.7,2,1,0,0,1,2,0,840,0,0,0 +15516,19001,34662,34661,-9,-9,2,1,0,47,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-5,113.2585388483325,0,0,0,52,2,4,1,-9,3,2019,3,1,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,5,1,0,0,1,2,0,840,0,0,0 +15517,19002,34663,-9,-9,-9,1,1,1,45,3,0,0,0,2,-9,2,1,0,4,8.357361118398078,8.359548622576682,0,3,0,0,0,-9,0,-910.4390624768416,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,50,38,15,1,0,-9,0,11.63006650174213,11.63006650174213,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.02,57.3,6,4,0,0,8,5,0,813,0,0,0 +15518,19003,34664,34665,-9,-9,2,1,0,54,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,12,0,-12,61.44849449913523,0,0,0,66,2,2,3,3,3,2019,4,1,8,0,0,0,15,3,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.87450444063632,1,49.86,55.31,5,3,0,1,7,2,0,444,0,0,0 +15518,19003,34665,34664,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,2,0,6.540088428285074,6.26381984746858,1,0,-9,12,0,12,108.7190577288218,0,0,0,54,3,4,3,2,3,2019,4,2,13,2,0,0,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.375005026457868,0,0,44.75,36.71,3,1,0,1,7,2,0,444,0,0,0 +15519,19004,34666,-9,-9,-9,1,1,0,48,3,0,0,0,1,-9,2,1,0,3,8.757436017020087,8.498601752320624,0,3,0,0,0,-9,0,-947.3485670856336,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,47,43,15,1,0,-9,0,16.76756991426506,16.76756991426506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,4,1,0,0,9,5,1,709,0,0,0 +15520,19005,34667,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,4,3,0,4,0,5.194799067861628,5.29624793799251,3,0,0,0,-9,0,-957.1949136215035,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01729091483058,5.297615939660345,0,0,57.16,56.15,6,1,0,0,6,2,1,245,0,0,0 +15521,19006,34668,-9,34670,34669,3,1,1,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.0894560678331,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,1,0,725.6666666666666,0,0,0 +15521,19006,34669,34670,-9,-9,2,1,1,56,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,27,0,5,0,0,0,0,51,2,1,3,-9,-9,2019,4,1,21,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.39,25.76,2,1,0,0,10,1,0,725.6666666666666,0,0,0 +15521,19006,34670,34669,-9,-9,1,1,0,51,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,27,0,-5,0,0,0,0,56,3,1,3,3,3,2019,4,2,20,8,0,0,15,3,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.19,28.59,5,1,0,0,10,1,0,725.6666666666666,0,0,0 +15522,19007,34671,34672,-9,-9,1,1,0,26,1,1,1,0,2,-9,97,3,0,2,0,0,0,2,0,1,1,-9,0,-51.34602845843173,-9,1,1,26,2,4,1,2,-9,2019,3,2,23,8,0,0,15,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.59,57.03,3,2,0,0,4,3,1,374.5,0,0,0 +15522,19007,34672,34671,-9,-9,2,1,1,26,1,1,1,0,2,-9,2,1,0,4,7.997272902037197,7.869434178394656,0,2,0,-9,1,-9,0,-69.8090640306046,-9,1,0,26,2,2,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,3,0,7.208282999343394,7.208282999343394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.15,42.53,7,3,0,0,4,3,1,374.5,0,0,0 +15523,19008,34673,34675,-9,-9,2,1,0,54,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,23,0,0,0,0,0,0,54,3,1,3,2,2,2019,4,1,22,9,0,0,15,3,9,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.8743844047697,1,40.78,23.36,3,1,0,1,7,1,0,344,0,0,0 +15523,19008,34674,-9,34673,34675,5,1,0,17,2,0,1,1,3,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1060.01914676479,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.38,33.42,6,1,0,1,7,1,0,344,0,0,0 +15523,19008,34675,34673,-9,-9,1,1,1,54,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,22,0,0,0,0,0,0,54,3,1,3,-9,-9,2019,4,2,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.8,26.18,3,1,0,1,7,1,0,344,0,0,0 +15523,19009,34676,-9,34673,34675,3,1,0,22,2,0,1,0,2,-9,2,1,0,4,8.065734094011544,7.947447992611086,0,3,0,0,0,-9,0,-962.4838341778147,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,1,38,38,15,1,1,-9,1,8.777574304095205,8.777574304095205,0,0,0,0,0,0,0,1,1,0,0,0,4.037805158835711,3,51.83,57.2,6,1,0,1,7,4,0,454,0,0,0 +15523,19010,34677,-9,34673,34675,4,1,0,21,2,0,1,0,2,-9,2,1,0,4,7.815103704454245,7.887620613554458,0,3,0,0,0,-9,0,-1057.551476056763,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,43,45,15,1,0,-9,1,8.341827770356932,8.341827770356932,0,0,0,0,0,0,0,1,1,0,0,0,2.005279729021509,3,38.59,60.85,6,1,0,0,7,4,0,440,0,0,0 +15524,19011,34678,-9,34680,34679,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.7350138841063,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,3,1,1161.5,0,0,0 +15524,19011,34679,34680,-9,-9,1,1,1,25,1,1,2,0,2,-9,2,1,0,5,8.750302336275759,8.368387684309633,0,2,0,-9,6,0,0,-46.86466475085759,0,1,0,25,2,4,1,1,2,2019,1,2,8,1,42,40,15,1,1,1,0,17.3366946785046,17.3366946785046,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,5,1,0,0,5,3,1,1161.5,0,0,0 +15524,19011,34680,34679,-9,-9,2,1,0,25,1,1,2,0,2,-9,1,1,0,4,6.223277015668018,5.970028859782749,0,2,0,-9,6,0,0,-111.5834863976756,0,1,1,25,2,5,1,-9,-9,2019,1,1,12,0,30,42,15,1,0,1,0,2.136295616943702,2.136295616943702,0,0,0,0,0,0,0,1,1,0,0,0,29.36069878638287,3,42.19,58.81,5,1,0,0,5,3,1,1161.5,0,0,0 +15524,19011,34681,-9,34680,34679,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.4199073144462,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,3,1,1161.5,0,0,0 +15525,19012,34682,-9,-9,-9,1,1,1,22,2,0,0,0,1,1,2,1,0,5,8.279317902565898,8.40668751751104,0,3,0,0,0,-9,0,-1006.198990181471,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,39,0,15,1,0,-9,0,13.53598611227335,13.53598611227335,0,0,0,0,0,0,0,0,0,0,.9800210565299898,0,0,0,48.96,60.26,6,1,0,0,12,4,0,375,0,0,0 +15526,19013,34683,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,0,6.295867924642442,6.293888018174616,3,0,0,0,-9,0,-852.9994082829119,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,0,0,15,4,8,-9,0,0,0,1,0,0,0,0,45.47117719314517,0,1,1,0,0,6.599277362242307,0,0,35.76,21.78,3,1,0,0,2,2,1,1521,0,0,0 +15526,19014,34684,-9,-9,-9,2,1,1,33,2,0,0,0,2,-9,2,1,0,3,8.530542542208225,8.379391412353042,0,3,0,0,0,-9,0,-948.1084933835609,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,1,35,40,15,1,1,-9,0,18.51173262480518,18.51173262480518,0,0,0,0,0,0,0,1,1,0,0,0,15.14739091496665,3,51.41,56.15,6,1,0,0,2,5,1,610,0,0,0 +15527,19015,34685,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,4,3,0,3,0,6.574125831424614,6.669211974364321,3,0,0,0,-9,0,-913.6208386116322,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.626009322923172,6.039310165978089,0,0,47.3,43.1,6,1,0,0,12,2,1,368,0,0,0 +15528,19016,34686,-9,34687,34689,3,1,1,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-996.4658402978587,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,2,3,1,1390.25,0,0,0 +15528,19016,34687,34689,-9,-9,2,1,0,51,1,0,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,7,0,-1,74.76816030746015,0,0,0,52,1,3,1,2,2,2019,3,1,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.7908137091359,3,54.37,54.8,6,1,0,0,2,3,1,1390.25,0,0,0 +15528,19016,34688,-9,34687,34689,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.2782681663188,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,1,1390.25,0,0,0 +15528,19016,34689,34687,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,3,8.458437752291465,8.583476206728392,0,2,0,-9,7,0,1,-59.09347618612401,0,0,0,51,1,3,3,3,2,2019,2,2,12,3,45,45,15,1,3,3,0,10.57740221744249,10.57740221744249,0,0,0,0,0,0,0,1,1,0,3.949999208112378,0,0,0,50.45,51.34,4,1,0,0,2,3,1,1390.25,0,0,0 +15529,19017,34690,34691,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.422632503185076,8.387234581461362,0,1,0,-9,42,0,1,-135.8313486799526,0,0,0,59,2,3,1,3,3,2019,1,2,10,0,40,40,15,1,0,1,0,10.79633862705421,10.79633862705421,0,0,0,0,0,0,0,0,0,0,1.5607872276778,0,0,0,54.2,57.49,5,1,0,0,7,4,1,1146,0,0,0 +15529,19017,34691,34690,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.091917718636648,8.205547464736503,0,1,0,-9,42,0,-1,-104.205029282223,0,0,0,60,2,4,1,3,3,2019,1,1,15,4,38,37,15,1,4,1,0,8.308288218626432,8.308288218626432,0,0,0,0,0,0,0,0,0,0,0,0,5.604726554434998,3,41.23,59.35,5,1,0,0,7,4,1,1146,0,0,0 +15530,19018,34692,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,4,8.047850167638552,8.583273017805308,5.112526784953036,4,0,0,0,-9,0,-965.9472381440216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,42,70,15,1,4,-9,0,9.90627618228077,9.90627618228077,0,0,0,0,0,0,0,1,1,0,5.664578953642603,0,0,0,35.67,64.46000000000001,4,1,0,0,4,3,1,397,0,0,0 +15531,19019,34693,-9,-9,-9,1,1,0,76,3,0,1,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-936.3028491276381,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,28.41818483998103,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,6,1,1,389,0,0,0 +15531,19020,34694,-9,34695,-9,3,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-857.6992778387389,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,6,2,1,1101,0,0,0 +15531,19020,34695,-9,34693,-9,2,1,0,51,2,0,1,0,3,-9,1,1,0,3,6.830343286287513,6.702807020205482,0,3,0,0,0,-9,0,-904.4575658546747,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,16,16,15,1,2,-9,1,7.539649436884152,7.539649436884152,0,0,0,0,0,0,0,1,1,0,0,0,18.78448236137899,3,47,49,5,1,0,0,6,2,1,1101,0,0,0 +15532,19021,34696,-9,-9,-9,1,1,0,31,3,0,0,0,1,-9,2,1,0,5,8.25975669193015,8.100861345898084,0,3,0,0,0,-9,0,-1043.616088801755,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,37,20,15,1,0,-9,0,11.08725160032372,11.08725160032372,0,0,0,0,0,0,0,0,0,0,1.726369870095516,0,0,0,57.06,57.76,6,1,0,0,9,4,1,384,0,0,0 +15533,19022,34697,-9,-9,-9,1,1,0,86,3,0,0,0,1,-9,4,3,0,3,0,8.024352977462149,7.669279275385823,3,0,0,0,-9,0,-1005.063970123922,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,9.492465509406681,0,0,0,0,61.84131510241359,1,1,0,5.866099443244625,7.948745278178505,0,0,53,45,6,1,0,0,11,3,1,675,0,0,0 +15534,19023,34698,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,3,0,5.216711874017835,5.253861002380364,3,0,0,0,-9,0,-861.4566508268908,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.94401621949142,27.4219389024672,3,49.51,41.82,5,4,0,1,8,2,0,634,0,0,0 +15534,19024,34699,-9,34698,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,2,6.874168018326079,7.094154815306727,0,3,0,0,0,-9,0,-1000.639703032091,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,20,20,15,1,0,-9,1,8.110252016168502,8.110252016168502,0,0,0,0,0,0,0,1,1,0,5.085376734612205,0,0,0,28.57,53.33,4,4,0,0,8,2,0,663,0,0,0 +15535,19025,34700,34701,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,53,0,3,0,0,0,0,73,3,5,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,119.5563593818642,3,53,47,7,1,0,0,2,1,1,2513,0,0,0 +15535,19025,34701,34700,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,53,0,-3,0,0,0,0,76,2,3,3,-9,-9,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,4.618078152738824,0,0,0,0,1,1,0,.901332398577233,0,122.9229814700243,3,65.48999999999999,34.69,6,1,0,0,2,1,1,2513,0,0,0 +15535,19026,34702,-9,34701,34700,3,1,1,47,2,0,0,0,3,-9,8,3,1,5,0,0,0,3,0,0,0,-9,0,-906.9190708443886,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.22,25.37,1,1,0,0,2,1,1,1030,0,0,0 +15536,19027,34703,34704,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,16,0,-2,-46.06828037179986,0,0,0,62,2,5,1,-9,-9,2019,3,2,6,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,1,1,0,0,7,4,1,2162,0,0,0 +15536,19027,34704,34703,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,5,9.00679279331934,8.969143598054067,0,1,0,-9,16,0,2,-77.56518729943473,0,0,0,60,2,5,3,-9,-9,2019,2,1,7,0,35,52,15,1,0,4,0,22.55390528918388,22.55390528918388,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.01,53.18,1,1,0,0,7,4,1,2162,0,0,0 +15537,19028,34705,-9,-9,-9,1,1,1,78,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1007.90845971388,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,5,1,0,1,13,1,1,183,0,0,0 +15538,19029,34706,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,4,0,6.900068801119888,6.621070383037098,3,0,0,0,-9,0,-982.489602107335,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.535399545554366,0,0,60.27,49.27,6,1,0,0,4,2,1,376,0,0,0 +15539,19030,34707,-9,-9,-9,1,1,0,45,3,0,0,0,3,-9,2,1,0,5,8.343047511045803,8.44933007195557,0,3,0,0,0,-9,0,-1038.135618975313,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,16,4,38,35,15,1,4,-9,0,12.84496223769014,12.84496223769014,0,0,0,0,0,0,0,0,0,0,2.695614332574162,0,0,0,32.54,56.35,6,1,0,0,10,4,0,1182,0,0,0 +15540,19031,34708,34709,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,3,8.351117660213898,8.338806034148499,0,1,0,-9,1,-9,5,-100.1309720718895,-9,0,1,31,1,4,1,2,2,2019,1,3,10,0,43,0,15,1,0,1,0,10.60558065268467,10.60558065268467,0,0,0,0,0,0,0,0,0,0,6.705876439423274,0,0,0,56.75,47.06,6,1,0,0,9,5,1,381,0,0,0 +15540,19031,34709,34708,-9,-9,3,1,1,31,1,0,0,0,1,-9,2,1,0,4,8.392699453261434,8.448593356874589,0,1,0,-9,1,-9,-5,125.7894821104006,-9,0,0,36,2,3,1,-9,-9,2019,1,1,10,0,40,0,15,1,1,1,0,9.685599321092552,9.685599321092552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,5,5,0,0,9,5,1,381,0,0,0 +15541,19032,34710,-9,-9,-9,1,1,0,73,2,0,0,0,1,-9,4,3,0,4,0,5.826743749668898,5.552222509069921,3,0,0,0,-9,0,-950.9786382718264,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.563993506347138,5.447654628196459,0,0,55.94,47.09,6,4,0,0,8,2,1,533,0,0,0 +15542,19033,34711,34712,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,4,9.176447421455821,9.21275152676699,0,2,0,-9,29,0,0,-94.97730337888271,0,0,0,49,2,4,1,2,2,2019,1,2,8,0,47,57,15,1,0,1,0,25.7271620330138,25.7271620330138,0,0,0,0,0,0,0,0,0,0,5.255562014231296,0,0,0,54.2,57.49,6,1,0,0,4,5,1,2828,0,0,0 +15542,19033,34712,34711,-9,-9,2,1,1,49,1,0,1,0,2,-9,1,1,0,4,5.337792348211565,5.677194462699635,0,2,0,-9,29,0,0,-216.8997515086256,0,0,0,49,1,4,1,3,3,2019,1,1,9,0,40,60,15,1,1,1,0,.5486067580638273,.5486067580638273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,6,1,0,0,4,5,1,2828,0,0,0 +15542,19034,34713,-9,34711,34712,3,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-920.4182631788682,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,5,1,0,0,4,5,1,156,0,0,0 +15543,19035,34714,-9,-9,-9,1,1,0,70,3,0,0,0,3,-9,4,3,0,2,0,7.492344178170751,7.287879797896617,3,0,0,0,-9,0,-1075.442593927591,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.219553158476155,0,0,52.81,49.13,6,1,0,0,4,3,1,709,0,0,0 +15544,19036,34715,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,3,0,5.895108783414789,5.721176631819142,3,0,0,0,-9,0,-1097.198178204679,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,45.44997201904532,0,1,1,0,0,5.531927335000086,0,0,54,46,6,1,0,1,13,2,0,3898,0,0,0 +15545,19037,34716,-9,34721,34722,3,1,1,16,2,0,5,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-953.9032355794083,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,6,3,0,0,4,2,1,1023.285714285714,0,0,0 +15545,19037,34717,-9,34721,34722,4,1,1,15,2,0,5,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-973.7320935571397,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,4,3,0,0,4,2,1,1023.285714285714,0,0,0 +15545,19037,34718,-9,34721,34722,7,1,0,3,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-954.7759823973948,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,2,1,1023.285714285714,0,0,0 +15545,19037,34719,-9,34721,34722,6,1,1,9,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.841163897491,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,4,2,1,1023.285714285714,0,0,0 +15545,19037,34720,-9,34721,34722,5,1,0,11,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.858941188518,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,4,2,1,1023.285714285714,0,0,0 +15545,19037,34721,34722,-9,-9,1,1,0,39,1,0,5,0,1,-9,6,3,0,2,0,0,0,2,0,-9,22,0,3,-37.16199061704171,0,0,1,36,2,4,1,3,3,2019,3,2,4,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.282419697953364,3,42.35,36.31,6,3,0,1,4,2,1,1023.285714285714,0,0,0 +15545,19037,34722,34721,-9,-9,2,1,1,36,1,0,5,0,2,-9,2,1,0,4,8.091623247914661,7.708078200332075,0,2,0,-9,8,0,-3,163.4618324458902,0,0,0,39,1,2,3,-9,-9,2019,2,1,10,0,40,38,15,1,1,3,0,7.774641542709019,7.774641542709019,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,4,2,1,1023.285714285714,0,0,0 +15546,19038,34723,34724,-9,-9,2,1,1,52,1,0,2,0,1,-9,1,1,0,2,9.588774509976858,9.610793130296805,0,2,0,-9,10,0,-2,111.4748638215023,0,0,0,54,1,5,1,2,2,2019,1,1,8,0,50,50,15,1,0,1,0,33.10594719477294,33.10594719477294,0,0,0,0,0,0,0,0,0,0,2.308147958139281,0,8.890692288390539,3,57.57,49.69,7,1,0,0,9,5,1,1046,0,0,0 +15546,19038,34724,34723,-9,-9,1,1,0,54,1,0,2,0,1,-9,2,1,0,5,8.24977294654037,7.975886829656137,0,2,0,-9,24,0,2,-33.14623304390496,0,0,0,52,1,2,1,1,2,2019,1,2,23,10,33,55,15,1,10,1,0,16.77663031480777,16.77663031480777,0,0,0,0,0,0,0,0,0,0,0,0,11.59573241844447,3,48.71,61.53,3,1,0,0,9,5,1,1046,0,0,0 +15546,19039,34725,-9,34724,34723,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-985.3310913985619,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,1.164826833326677,0,0,0,45,59,5,1,0,0,9,5,1,848,0,0,0 +15547,19040,34726,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,2,0,4.440644423275764,4.645958575495101,3,0,0,0,-9,0,-1089.536443836505,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,24,10,0,30,15,4,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.927746640652878,4.617037457962057,0,0,27.97,37.34,4,1,0,1,11,1,1,286,0,0,0 +15548,19041,34727,34728,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,4,7.522479661164829,7.243162579405429,0,1,0,-9,9,0,0,-31.14631819158932,0,0,0,53,2,4,1,-9,-9,2019,1,2,9,0,50,50,15,1,1,1,0,5.004083662017537,5.004083662017537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,6,1,0,0,5,3,1,745,0,0,0 +15548,19041,34728,34727,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,7.439630110222556,7.741246385122865,0,1,0,-9,30,0,0,16.71874697168773,0,0,0,53,2,4,1,3,3,2019,1,1,11,0,20,16,15,1,0,1,0,8.884730118278725,8.884730118278725,0,0,0,0,0,0,0,0,0,0,6.794577494773467,0,0,0,57.16,56.15,6,1,0,0,5,3,1,745,0,0,0 +15549,19042,34729,-9,-9,-9,1,1,1,86,3,0,0,0,2,-9,4,3,0,3,0,8.12257352003366,7.624383952448612,3,0,0,0,-9,0,-936.8516882365739,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.735099566609581,7.987240631146983,0,0,58.61,46.02,6,1,0,0,11,3,1,86,0,0,0 +15550,19043,34730,-9,-9,-9,1,1,0,37,3,0,0,0,1,-9,2,1,0,4,8.031373274390608,7.913400784436394,0,3,0,-9,0,1,0,-1037.900804948893,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,41,39,15,1,0,-9,0,9.333116495279482,9.333116495279482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,7,1,0,0,5,4,0,1512,0,0,0 +15551,19044,34731,34732,-9,-9,2,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,8.467243829795493,8.874723242938328,1,0,-9,51,0,1,3.616992322312739,0,0,0,71,3,3,3,3,3,2019,4,1,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.741092541182464,8.669302904501931,0,0,51.41,56.15,6,1,0,0,1,5,1,460.5,0,0,0 +15551,19044,34732,34731,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,7.068136701127495,6.65346702397786,1,0,-9,51,0,-1,-.6725180928344443,0,0,0,72,1,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.457388131505541,0,0,57.9,51.84,7,1,0,0,1,5,1,460.5,0,0,0 +15552,19045,34733,34734,-9,-9,2,1,1,80,1,0,0,0,1,-9,4,3,0,1,0,7.645145301556995,7.898569456225032,1,0,-9,57,0,4,126.375943982472,0,0,0,76,2,2,3,3,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.508567566717102,7.644209355544491,121.4716632628922,1,47.86,26.91,3,1,0,0,4,3,1,973.5,0,0,0 +15552,19045,34734,34733,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,57,0,-4,-8.842132423413652,0,0,0,80,1,1,3,3,2,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,1,0,30.78354146656319,3.430227308814918,0,0,0,1,1,0,0,0,0,0,50.83,21.37,3,1,0,0,4,3,1,973.5,0,0,0 +15553,19046,34735,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,1,1,0,4,7.650634875936153,7.211311692394189,0,3,0,0,0,-9,0,-1055.638771011355,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,40,15,1,0,-9,0,6.636297538831379,6.636297538831379,0,0,0,0,0,0,0,0,0,0,8.658172018792037,0,0,0,46.63,59.72,5,1,0,0,11,3,1,131,0,0,0 +15554,19047,34736,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,4,8.175017045090458,7.994603586446315,0,3,0,0,0,-9,0,-1026.834767022911,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,38,35,15,1,0,-9,0,11.76292737989236,11.76292737989236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,6,4,0,0,8,4,0,721,0,0,0 +15555,19048,34737,34738,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,4,0,7.332217060775792,7.480743937372459,1,0,-9,50,0,2,-201.195596273876,0,0,0,74,2,1,3,-9,-9,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.421998918020562,7.247221093887649,0,1,57.97,43.33,7,1,0,0,4,3,1,622.5,0,0,0 +15555,19048,34738,34737,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,1,0,5.522505623191848,5.393765971524297,1,0,-9,50,0,-2,-36.87532285028191,0,0,0,76,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,1,0,32.71716503076546,0,0,0,0,1,1,0,5.581554896923638,5.346686183360696,0,0,51.65,15.81,6,1,0,0,4,3,1,622.5,0,0,0 +15556,19049,34739,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,2,7.907396253222744,7.865121209505949,2.627152690626824,3,0,0,0,-9,0,-898.2334977234352,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,8,42,37,15,1,8,-9,0,9.058764493720245,9.058764493720245,0,0,0,0,0,0,0,0,0,0,3.508179201909768,0,8.443289258675168,3,22.89,60.29,5,1,0,0,2,4,1,876,0,0,0 +15557,19050,34740,34741,-9,-9,1,1,0,50,1,0,0,0,1,-9,2,1,0,3,7.752298087815238,7.835922189378162,0,1,0,-9,21,0,7,179.6150772575866,0,0,0,43,2,1,3,3,3,2019,2,2,32,12,38,43,15,1,12,3,0,8.671362221131695,8.671362221131695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.99,38.56,1,1,0,1,4,3,0,623.5,0,0,0 +15557,19050,34741,34740,-9,-9,2,1,1,43,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,20,0,-7,-42.70120152418475,0,0,0,50,1,3,1,-9,-9,2019,3,1,35,12,0,38,15,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.18,21.31,1,1,1,1,4,3,0,623.5,0,0,0 +15558,19051,34742,34743,-9,-9,2,1,1,91,1,0,0,0,3,-9,4,3,0,3,0,8.207193322524011,8.088028031129461,1,0,-9,70,0,3,-95.49387898676099,-9,0,0,88,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.982198975618334,7.80748844345197,0,1,55,44,6,1,0,0,6,3,1,1279,0,0,0 +15558,19051,34743,34742,-9,-9,1,1,0,88,1,0,0,0,3,-9,4,3,0,3,0,7.074152965217083,6.919268804914343,1,0,-9,70,0,-3,-1.80252781010809,0,0,0,91,3,3,3,3,3,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,0,27.63918351166594,5.165976942647179,6.787172916797577,13.81806384775274,1,1,0,1.363324643691527,6.790871302453939,34.32108133621382,2,56.5,43.13,7,1,0,0,6,3,1,1279,0,0,0 +15558,19052,34744,-9,-9,-9,3,1,1,41,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-938.8466414492682,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,6,1,1,517,0,0,0 +15559,19053,34745,-9,-9,-9,1,1,0,23,2,0,0,0,2,-9,2,1,0,4,8.013468633018228,8.194071703633902,0,1,0,1,1,-9,2,60.28609066822338,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,2,11,0,38,43,15,1,0,-9,0,10.30860665115735,10.30860665115735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,6,1,0,0,5,3,0,717,0,0,0 +15560,19054,34746,-9,-9,-9,1,1,1,98,3,0,0,0,1,-9,4,3,0,3,0,8.41106905743238,8.990388742595639,3,0,0,0,-9,0,-1064.693119813912,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,0,0,15,4,1,-9,0,0,0,1,0,0,14.06777615140446,0,0,0,1,1,0,6.949357284392953,9.038317352866903,0,0,51.25,41.35,6,1,0,0,9,5,1,318,0,0,0 +15561,19055,34747,34748,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,5.660414682618616,6.179640043199046,1,0,-9,56,0,-2,8.5219434441606,0,0,0,75,3,5,3,3,3,2019,4,1,25,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.185025205630815,0,0,38.77,23.93,6,1,0,0,11,5,1,655,0,0,0 +15561,19055,34748,34747,-9,-9,1,1,1,75,1,0,0,0,3,-9,4,3,0,5,0,9.185238505081513,8.806237380658402,1,0,-9,56,0,2,21.081874069612,0,0,0,73,3,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7444441540702,41.56013399394901,2,61.17,44.82,6,1,0,1,11,5,1,655,0,0,0 +15562,19056,34749,34750,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,3,8.13117644073689,8.573061421714765,6.523851385104589,1,0,-9,2,0,2,-29.69104781546544,0,0,0,48,2,3,1,3,3,2019,1,3,12,0,37,37,15,1,0,1,0,13.72992173375541,13.72992173375541,0,0,0,0,0,0,0,1,1,0,6.871053839413716,0,0,3,52.24,43.31,4,1,0,0,4,4,1,767.6666666666666,0,0,0 +15562,19056,34750,34749,-9,-9,3,1,1,48,1,0,0,0,2,-9,1,1,0,3,0,5.448629398447933,5.659258466320629,1,0,-9,2,0,-2,-22.88837084704915,0,0,0,50,2,3,1,-9,-9,2019,1,1,15,3,0,40,15,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.469154611791618,0,0,0,34.81,44.78,3,1,0,1,4,4,1,767.6666666666666,0,0,0 +15562,19056,34751,-9,-9,34750,4,1,0,16,2,0,0,0,2,-9,2,2,0,4,7.017547732207927,6.845310974287089,0,1,0,0,0,-9,0,-1036.810487995758,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,2,35,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,56.48,6,1,0,0,4,4,1,767.6666666666666,0,0,0 +15562,19057,34752,-9,34749,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,3,7.710255077263446,7.816212193644167,0,3,0,0,0,-9,0,-1057.331688617434,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,3,37,0,15,1,3,-9,1,5.716797002846783,5.716797002846783,0,0,0,0,0,0,0,1,1,0,.2082385818430851,0,0,0,45.84,48.98,4,1,0,0,4,3,1,406,0,0,0 +15563,19058,34753,34754,-9,-9,2,1,0,44,1,0,0,0,2,-9,2,1,0,4,7.001400164502436,7.147000084305249,0,1,0,-9,9,0,-6,43.81244271663093,0,0,1,50,2,3,1,2,2,2019,1,1,6,0,18,6,15,1,0,1,0,7.906583799959409,7.906583799959409,0,0,0,0,0,0,0,1,1,0,0,0,4.20871493072778,3,57.16,56.15,6,1,0,0,10,4,1,735.5,0,0,0 +15563,19058,34754,34753,-9,-9,1,1,1,50,1,0,0,0,2,-9,2,1,0,3,8.107089133929057,7.933586062441704,0,1,0,-9,9,0,6,27.41700537778455,0,0,0,44,2,4,1,-9,-9,2019,1,2,6,0,42,44,15,1,0,1,0,6.934014154248534,6.934014154248534,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,10,4,1,735.5,0,0,0 +15563,19059,34755,-9,34753,34754,4,1,0,18,2,0,0,0,2,1,2,1,0,4,6.618687961802962,6.591155004401189,0,3,0,0,0,-9,0,-999.858635200197,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,18,0,15,1,0,-9,1,5.256122975680809,5.256122975680809,0,0,0,0,0,0,0,1,1,0,.1208940636359425,0,8.624560444483883,3,44.72,56.46,6,1,0,0,10,2,1,708,0,0,0 +15564,19060,34756,34757,-9,-9,2,1,1,61,1,0,0,0,2,-9,4,3,0,4,0,8.880585323729804,8.601078972552509,1,0,-9,37,0,3,10.6530454065509,0,0,0,58,2,3,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.940464904271756,8.636039190616806,4.53021203838173,3,58.15,52.91,6,1,0,0,6,5,1,1544,0,0,0 +15564,19060,34757,34756,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.488694567966654,8.695848377629066,0,1,0,-9,37,0,-3,-10.31859198658877,0,0,0,61,2,4,3,2,3,2019,2,2,11,0,37,37,15,1,0,4,0,15.06562006227093,15.06562006227093,0,0,0,0,0,0,0,0,0,0,5.105904130799062,0,4.938631777352782,3,46.46,46,3,1,0,0,6,5,1,1544,0,0,0 +15565,19061,34758,34759,-9,-9,2,1,1,62,1,0,1,0,2,-9,4,3,0,4,0,8.724189694751249,8.747989374887151,2,0,-9,11,0,9,-63.46099468351716,0,0,0,53,1,4,1,-9,-9,2019,3,1,6,0,0,38,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.195633596040127,8.569083252404978,0,0,57.16,56.15,6,1,0,0,5,4,1,1609,0,0,0 +15565,19061,34759,34758,-9,-9,1,1,0,53,1,0,1,0,1,-9,2,1,0,4,7.938252860630342,7.233691677704467,0,2,0,-9,25,0,0,50.26119240454909,0,0,0,62,2,4,3,2,2,2019,2,2,6,0,23,27,15,1,0,4,0,12.44882045918989,12.44882045918989,0,0,0,0,0,0,0,0,0,0,4.665987363325722,0,0,0,57.16,56.15,7,1,0,0,5,4,1,1609,0,0,0 +15565,19062,34760,-9,34759,34758,3,1,1,18,2,0,1,1,2,0,7,2,0,3,6.413420147789961,6.502000497900259,0,3,0,0,0,-9,0,-890.4135384722828,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,6,0,3,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.038966304111457,0,0,0,52,54.51,6,1,0,0,5,4,1,313,0,0,0 +15566,19063,34761,34762,-9,-9,2,1,1,63,1,0,0,0,1,-9,4,3,0,3,0,7.283623845029259,7.343907406927914,1,0,-9,8,0,-4,-43.62108088983451,0,0,0,67,2,4,3,2,1,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.015928196590798,6.946732139455524,0,0,54.96,53.17,6,1,0,0,7,3,1,430.5,0,0,0 +15566,19063,34762,34761,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,4,0,6.617993602341262,6.462614494778102,1,0,-9,8,0,4,-76.57778858910096,0,0,0,63,1,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.100091946671433,6.542718862385327,0,0,57.16,56.15,6,1,0,0,7,3,1,430.5,0,0,0 +15567,19064,34763,-9,-9,-9,1,1,0,24,2,0,0,0,1,-9,2,1,0,2,8.841936183725881,8.50352982294949,0,3,0,0,0,-9,0,-989.8138242201906,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,28,11,38,48,15,1,11,-9,0,14.70308414879461,14.70308414879461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,46.84,6,1,0,0,5,5,1,1556,0,0,0 +15568,19065,34764,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1087.452102516064,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.07,47.32,6,2,0,0,8,1,0,286,0,0,0 +15569,19066,34765,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-931.7287433607748,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.12,15.13,4,1,0,0,4,1,0,692,0,0,0 +15570,19067,34766,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,8,3,1,3,5.613260350614988,5.484756627844479,0,3,0,0,0,-9,0,-1027.183802158998,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,46,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.52,41.71,3,1,0,0,10,2,0,247,0,0,0 +15571,19068,34767,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,2,1,0,3,5.063162220848022,4.81548313037571,0,3,0,0,0,-9,0,-927.8573163447775,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,8,8,15,1,0,-9,0,2.174676796497116,2.174676796497116,0,0,0,0,0,0,0,1,1,0,1.199519751333399,0,0,0,56.74,46.86,7,1,0,0,13,2,0,543,0,0,0 +15572,19069,34768,-9,-9,-9,1,1,1,58,2,0,0,0,2,-9,8,3,1,2,0,5.985667108291056,6.000928503411512,3,0,0,0,-9,0,-939.7127579159036,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,5.889662265114429,0,0,0,51.98,27.74,3,1,0,1,6,2,0,518,0,0,0 +15572,19070,34769,-9,-9,-9,2,1,1,24,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-936.95279307097,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,25,9,0,35,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.30361583248841,3,30.96,59.86,1,1,1,1,6,1,0,162,0,0,0 +15573,19071,34770,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,2,1,0,3,7.617415592887482,7.491435509827758,0,4,0,0,0,-9,0,-1026.955398597387,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,32,12,28,28,15,1,12,-9,0,9.261395808328839,9.261395808328839,0,0,0,0,0,0,0,1,1,0,0,0,7.348759200732045,3,18.67,61.95,3,1,0,1,12,3,0,993,0,0,0 +15574,19072,34771,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,6.119457207522249,6.159007933365645,3,0,0,0,-9,0,-923.3551648022923,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,20,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.185572123221777,0,0,32.68,35.19,5,1,0,0,1,2,0,698,0,0,0 +15574,19073,34772,-9,34771,-9,2,1,1,53,3,0,0,0,2,-9,1,1,0,4,6.488852043522275,6.459779179355955,0,3,0,0,0,-9,0,-1060.489914787735,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,40,40,15,1,1,-9,1,1.82857492862624,1.82857492862624,0,0,0,0,0,0,0,1,1,0,.2870299100405506,0,0,0,54,54,6,1,0,0,1,2,0,868,0,0,0 +15575,19074,34773,34774,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.739481766655889,7.628897145129182,0,1,0,-9,20,0,-2,7.811458990982246,0,0,0,52,2,4,1,3,3,2019,1,2,7,0,39,43,15,1,0,1,0,7.566499378965982,7.566499378965982,0,0,0,0,0,0,0,0,0,0,0,0,6.402041537346999,3,54.96,53.17,5,1,0,0,2,4,1,1492,0,0,0 +15575,19074,34774,34773,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.484975690776388,7.830041920792241,0,1,0,-9,20,0,2,23.13513204305664,0,0,0,50,2,3,1,2,2,2019,1,1,5,0,37,38,15,1,0,1,0,12.08704773528567,12.08704773528567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,7,1,0,0,2,4,1,1492,0,0,0 +15576,19075,34775,34776,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,3,7.628032328782369,7.515816462670448,0,1,0,-9,4,0,-10,-83.16359355338197,0,0,1,40,1,4,1,2,2,2019,1,2,6,0,35,21,15,1,0,1,0,6.525354993658595,6.525354993658595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,53.31,6,1,0,0,2,4,1,475,0,0,0 +15576,19075,34776,34775,-9,-9,2,1,1,40,1,0,0,0,1,-9,2,1,0,4,8.645576189649578,8.350065441428747,0,1,0,-9,4,0,10,-96.39959276666218,0,0,0,30,1,3,1,-9,-9,2019,1,1,10,0,40,45,15,1,1,1,0,17.37550313063067,17.37550313063067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,5,1,0,0,2,4,1,475,0,0,0 +15577,19076,34777,-9,34780,34779,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.9578326447496,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,9,5,1,660,0,0,0 +15577,19076,34778,-9,34780,34779,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1053.626477674108,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,9,5,1,660,0,0,0 +15577,19076,34779,34780,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.701491412300101,8.542934040561182,0,2,0,-9,8,0,-4,-16.01253508699818,0,0,0,41,1,5,1,2,-9,2019,1,1,5,0,35,35,15,1,0,1,0,26.56372015649223,26.56372015649223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,660,0,0,0 +15577,19076,34780,34779,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,9.501151568076017,9.554241219730981,0,2,0,-9,16,0,4,-78.5848696297821,0,0,1,37,2,4,1,2,2,2019,1,2,6,0,40,44,15,1,0,1,0,42.51490384852482,42.51490384852482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,9,5,1,660,0,0,0 +15578,19077,34781,34782,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.331734806573554,8.376838308117074,0,1,0,-9,1,-9,5,36.87720614959672,-9,0,0,41,2,3,1,2,2,2019,1,2,10,0,38,0,15,1,0,1,0,12.53809012855248,12.53809012855248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,2,5,0,1176,0,0,0 +15578,19077,34782,34781,-9,-9,2,1,0,41,1,0,0,0,2,-9,2,1,0,3,8.093851842179742,8.18589417198128,0,1,0,-9,1,-9,-5,-40.9177977682973,-9,0,1,46,2,4,1,2,2,2019,1,1,12,1,35,0,15,1,1,1,0,14.88081641911862,14.88081641911862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,50.4,6,1,0,0,2,5,0,1176,0,0,0 +15578,19078,34783,-9,34782,34781,3,1,1,20,2,0,0,0,2,-9,2,1,0,5,8.022689834963664,8.138887915602032,0,3,0,-9,0,-9,0,-1158.038032356397,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,46,0,15,1,0,-9,1,12.53131226108294,12.53131226108294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,1,2,4,0,1686,0,0,0 +15579,19079,34784,34785,-9,-9,2,1,1,51,1,0,3,0,2,-9,2,1,0,2,8.055060477495974,8.009856484825553,0,2,0,-9,7,0,2,26.29574365443872,0,0,0,49,2,2,3,2,2,2019,2,1,18,7,35,45,15,1,7,3,0,8.968846529094272,8.968846529094272,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.21,30.35,2,3,0,0,5,2,1,534,0,0,0 +15579,19079,34785,34784,-9,-9,1,1,0,49,1,0,3,0,2,-9,6,3,0,2,0,0,0,2,0,-9,21,0,-2,-74.16154555612937,0,0,0,51,2,2,1,3,3,2019,3,2,26,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,34.71,6,2,0,0,5,2,1,534,0,0,0 +15579,19079,34786,-9,34785,34784,4,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.2451650165248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,5,2,1,534,0,0,0 +15579,19079,34787,-9,34785,34784,5,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-970.6104004704764,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,2,1,534,0,0,0 +15579,19080,34788,-9,34785,34784,3,1,0,18,2,0,3,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-988.6903568959958,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.72,54.38,6,3,0,0,5,2,1,406,0,0,0 +15580,19081,34789,34790,-9,-9,1,1,0,70,1,0,0,0,3,-9,1,1,0,3,5.800310396474549,5.893332873655302,1.841990532362545,1,0,-9,10,0,7,88.31890977785338,0,0,0,63,2,3,1,3,3,2019,1,2,9,0,12,8,15,1,0,1,0,2.944471968621605,2.944471968621605,0,0,0,0,0,0,0,1,1,0,1.154657521938561,1.880258889510834,3.774938375366089,3,61.85,47.26,6,1,0,0,10,3,1,689,0,0,0 +15580,19081,34790,34789,-9,-9,2,1,1,63,1,0,0,0,2,-9,1,1,0,3,7.686595646954938,7.920605675182906,0,1,0,-9,10,0,-7,-12.15328677036963,0,0,0,70,3,3,1,-9,-9,2019,1,1,11,0,34,35,15,1,0,1,0,9.269973082288782,9.269973082288782,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,10,3,1,689,0,0,0 +15581,19082,34791,34792,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,34,0,7,0,0,0,0,65,3,2,3,-9,-9,2019,4,1,21,7,0,0,15,4,7,3,0,0,0,1,0,24.40727100952034,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,2,1,0,0,2,1,0,556,0,0,0 +15581,19082,34792,34791,-9,-9,1,1,0,65,1,0,0,0,3,-9,6,3,0,2,0,0,0,1,0,-9,34,0,-7,0,0,0,0,72,3,1,3,3,3,2019,4,2,13,2,0,0,15,3,2,4,0,0,0,1,0,3.815111973773544,0,0,0,0,1,1,0,0,0,72.23901219460677,1,35.63,36.67,4,1,0,0,2,1,0,556,0,0,0 +15582,19083,34793,-9,-9,-9,1,1,0,48,3,0,2,0,2,-9,2,1,0,3,7.42649995927994,7.653548521670754,6.515787026215413,4,0,0,0,-9,0,-1036.90335829354,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,30,32,15,1,0,-9,0,4.692717180651856,4.692717180651856,0,0,0,0,0,0,0,1,1,0,6.539033358544971,0,0,0,57.33,53.46,6,1,0,0,5,3,1,735,0,0,0 +15583,19084,34794,-9,-9,-9,1,1,1,43,3,0,1,0,2,-9,2,1,0,4,8.240811257920306,8.317418888317876,0,4,0,-9,0,-9,0,-952.6523323173635,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,0,15,1,2,-9,0,12.06763301303523,12.06763301303523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,7,4,0,459.5,0,0,0 +15583,19084,34795,-9,-9,34794,2,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-931.1955447516083,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,7,4,0,459.5,0,0,0 +15584,19085,34796,-9,-9,-9,1,1,0,20,2,0,0,0,2,1,97,3,0,4,0,8.462326286703053,8.324383142092262,3,0,0,0,-9,0,-986.6730807897975,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.646818602694811,0,0,0,54.79,55.86,7,2,0,0,6,4,0,442,0,0,0 +15585,19086,34797,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,5,7.562717150551373,7.978673728945068,0,3,0,0,0,-9,0,-1114.73162439495,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,37,41,15,1,1,-9,0,6.735902797435881,6.735902797435881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,3,1,0,1,8,3,0,1331,0,0,0 +15586,19087,34798,-9,34799,34800,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.0473709283423,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,5,1,1064.666666666667,0,0,0 +15586,19087,34799,34800,-9,-9,1,1,0,48,1,0,1,0,1,-9,2,1,0,2,8.817675576499866,8.958099437742021,0,2,0,-9,21,0,6,75.64328719618828,0,0,0,42,1,5,1,3,3,2019,1,2,19,5,67,30,15,1,5,1,0,10.85974168463906,10.85974168463906,0,0,0,0,0,0,0,1,1,0,0,0,11.26517032578358,3,29.9,55.26,2,1,0,0,6,5,1,1064.666666666667,0,0,0 +15586,19087,34800,34799,-9,-9,2,1,1,42,1,0,1,0,1,-9,1,1,0,5,9.550789851136376,9.820762975040012,0,2,0,-9,19,0,-6,53.94790119056561,0,0,0,48,1,2,1,2,2,2019,1,1,4,1,39,40,15,1,1,1,0,48.55030528074128,48.55030528074128,0,0,0,0,0,0,0,1,1,0,.1322095667300805,0,13.80432264020976,3,57.06,57.76,6,1,0,0,6,5,1,1064.666666666667,0,0,0 +15587,19088,34801,34802,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,57,0,3,44.28399788975202,0,0,0,77,1,3,3,2,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.522039867189838,0,0,0,62.25,48.33,6,1,0,0,10,3,1,487.5,0,0,0 +15587,19088,34802,34801,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.763899520694767,7.972788828376348,1,0,-9,57,0,-3,-59.37177797299736,0,0,0,80,3,4,3,2,2,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.421101571418595,7.412245999886172,0,0,51.98,54.53,6,1,0,0,10,3,1,487.5,0,0,0 +15588,19089,34803,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,8.373856625585116,8.501312837857609,3,0,0,0,-9,0,-973.5940336984844,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.508538562005119,0,0,57.16,56.15,7,1,0,0,9,4,1,398,0,0,0 +15589,19090,34804,-9,-9,-9,1,1,1,59,3,0,1,0,1,-9,2,1,0,4,9.299447172097191,9.124299314953047,0,4,0,0,0,-9,0,-1053.350530337935,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,40,40,15,1,0,-9,0,29.90097049402522,29.90097049402522,0,0,0,0,0,0,0,0,0,0,3.196769460487983,0,0,0,46.75,56.99,6,1,0,0,11,5,1,737,0,0,0 +15590,19091,34805,34806,-9,-9,2,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,40,0,0,102.2736002285028,0,0,0,76,1,5,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.35,57.86,5,1,0,0,2,2,1,846.5,0,0,0 +15590,19091,34806,34805,-9,-9,1,1,0,76,1,0,0,0,1,-9,4,3,0,5,0,5.905253233678033,6.228658942036738,1,0,-9,40,0,0,64.46208856548142,0,0,0,76,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.833802373370163,6.204154935392177,0,0,57.06,57.76,6,1,0,0,2,2,1,846.5,0,0,0 +15591,19092,34807,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,2,1,0,5,7.442906608793125,7.126093378693772,0,3,0,0,0,-9,0,-911.0303652300685,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,31,22,15,1,0,-9,0,5.992943760140607,5.992943760140607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.06,57.69,5,1,0,0,13,3,1,187,0,0,0 +15592,19093,34808,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,3,8.000408843974133,8.42655732985345,0,3,0,0,0,-9,0,-1061.3287813281,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,38,53,15,1,0,-9,0,11.58939606051518,11.58939606051518,0,0,0,0,0,0,0,0,0,0,2.402873872457664,0,23.56003904664307,3,34.21,51.94,4,1,0,0,2,4,0,167,0,0,0 +15593,19094,34809,34810,-9,-9,1,1,0,34,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,1,1,-9,-8,-67.1848188640969,0,0,1,42,2,4,1,-9,-9,2019,3,4,1,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,3,0,670.5,0,0,0 +15593,19094,34810,34809,-9,-9,4,1,1,42,1,0,2,0,2,-9,1,1,0,4,8.248354811226042,8.308609954472267,0,2,0,-9,1,-9,8,101.1458315087039,-9,0,0,34,1,4,3,-9,-9,2019,2,1,9,0,40,0,15,1,1,3,0,10.52550684985039,10.52550684985039,0,0,0,0,0,0,0,1,1,0,7.982698359808462,0,0,0,51,56,6,1,0,0,12,3,0,670.5,0,0,0 +15593,19094,34811,-9,34809,34810,2,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-926.300481693586,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,0,670.5,0,0,0 +15593,19094,34812,-9,34809,34810,3,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.185914512533,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,3,0,670.5,0,0,0 +15594,19095,34813,34814,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,3,8.616126999046191,8.884997713763306,0,2,0,-9,8,0,-7,168.0193238060883,0,0,0,53,3,3,1,-9,-9,2019,1,1,9,0,55,50,15,1,0,1,0,13.32949869237729,13.32949869237729,0,0,0,0,0,0,0,1,1,0,3.067454510166768,0,0,0,52.65,51.64,6,1,0,0,13,4,1,381.5,0,0,0 +15594,19095,34814,34813,-9,-9,1,1,0,53,1,0,1,0,3,-9,2,1,0,3,6.831357108894609,7.085348252455671,0,2,0,-9,25,0,7,23.02339487801913,0,0,0,46,2,3,1,2,2,2019,1,2,17,5,24,16,15,1,5,1,0,5.280093564395233,5.280093564395233,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,55.18,4,1,0,0,13,4,1,381.5,0,0,0 +15595,19096,34815,34816,-9,-9,1,1,1,71,1,0,0,0,1,-9,4,3,0,4,0,8.408900379675229,7.946519339346358,1,0,-9,50,0,3,96.74072327780154,0,0,0,68,2,5,3,3,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.170923027917557,8.258394013463029,0,0,47.41,56.4,6,1,0,0,10,4,1,606,0,0,0 +15595,19096,34816,34815,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,5,0,7.677268604727147,7.670114875497967,1,0,-9,50,0,-3,-88.74181764504303,0,0,0,71,1,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.934710034374373,7.318692550505671,0,0,49.81,59.64,6,1,0,0,10,4,1,606,0,0,0 +15596,19097,34817,-9,-9,-9,1,1,0,55,2,0,1,0,2,-9,2,1,0,3,7.644200373909776,7.585918391275907,0,4,0,0,0,-9,0,-1034.70846008965,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,33,33,15,1,1,-9,0,8.08207776823523,8.08207776823523,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.29,56.74,6,4,0,0,8,3,0,754,0,0,0 +15596,19098,34818,-9,34817,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,4,6.711166833970301,6.436499133739589,2.085753967975938,3,0,0,0,-9,0,-876.2032143826614,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,1,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.755579238682217,0,0,0,46,58,5,4,0,0,8,3,0,441,0,0,0 +15597,19099,34819,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-918.3918330621183,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,7.500394876498369,47.51764917502742,0,1,1,0,0,0,0,0,40.65,26.16,2,1,0,0,9,1,1,1673,0,0,0 +15598,19100,34820,-9,34821,34824,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-993.014963488137,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,4,1,2159.8,0,0,0 +15598,19100,34821,34824,-9,-9,2,1,0,35,1,0,3,0,2,-9,2,1,0,3,8.714287551451836,8.892163483915448,0,2,0,-9,11,0,-4,-42.68605951515509,0,0,1,39,2,4,1,3,2,2019,1,1,7,0,38,38,15,1,0,1,0,16.53537753222087,16.53537753222087,0,0,0,0,0,0,0,1,1,0,0,0,.1928141434608543,3,49.3,46.56,6,1,0,0,11,4,1,2159.8,0,0,0 +15598,19100,34822,-9,34821,34824,4,1,0,12,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.108886738846,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,4,1,2159.8,0,0,0 +15598,19100,34823,-9,34821,34824,3,1,0,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1006.512634893467,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,11,4,1,2159.8,0,0,0 +15598,19100,34824,34821,-9,-9,1,1,1,39,1,0,3,0,2,-9,2,1,0,4,8.62027155363379,8.646932453088329,0,2,0,-9,11,0,4,31.29096931218169,0,0,0,35,2,3,1,3,2,2019,1,2,7,0,46,51,15,1,0,1,0,12.80290089470865,12.80290089470865,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,51,6,1,0,0,11,4,1,2159.8,0,0,0 +15599,19101,34825,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,5,0,6.835573013326618,7.194083067546164,3,0,0,0,-9,0,-1022.314805548491,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.731272484573447,6.791121727491148,0,0,57.06,57.76,7,1,0,0,10,2,1,835,0,0,0 +15600,19102,34826,34827,-9,-9,2,1,1,59,1,0,1,0,3,-9,1,1,0,3,8.066895362053902,8.265445328987566,0,2,0,-9,16,0,17,-34.17854867172615,0,0,0,42,3,3,3,2,2,2019,2,1,16,4,54,50,15,1,4,3,0,6.1217043940873,6.1217043940873,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,38.13,4,1,0,0,4,3,1,405.6666666666667,0,0,0 +15600,19102,34827,34826,-9,-9,1,1,0,42,1,0,1,0,3,-9,6,3,0,3,0,0,0,2,0,-9,17,0,-17,44.39996602239953,0,0,1,59,3,3,1,1,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.790145558552599,0,0,0,51.94,55.88,4,1,0,0,4,3,1,405.6666666666667,0,0,0 +15600,19102,34828,-9,34827,34826,5,1,1,14,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1064.941967514429,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,5,1,0,0,4,3,1,405.6666666666667,0,0,0 +15600,19103,34829,-9,34827,34826,3,1,0,22,2,0,1,0,1,-9,2,1,0,3,7.43523326031582,7.13787525819886,0,3,0,0,0,-9,0,-1060.99927152085,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,19,7,32,25,15,1,7,-9,1,5.233182098746412,5.233182098746412,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.29,54.21,3,1,0,0,4,3,1,302,0,0,0 +15600,19104,34830,-9,34827,34826,4,1,1,19,2,0,1,1,2,0,7,2,0,1,7.438420596033612,7.437206371361959,0,3,0,0,0,-9,0,-1097.747841294886,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,36,0,15,2,3,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,3,1,0,0,4,3,1,844,0,0,0 +15601,19105,34831,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-933.4121867049549,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.55,21.98,5,1,0,0,13,1,0,2472,0,0,0 +15602,19106,34832,34834,-9,-9,1,1,1,47,1,0,3,0,2,-9,2,1,0,3,8.853885428010898,8.969327485586309,0,2,0,-9,6,0,9,130.3909833849957,0,0,0,38,2,4,1,-9,-9,2019,1,2,7,0,65,48,15,1,0,1,0,9.729363905675086,9.729363905675086,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.23,52.59,7,1,0,0,6,4,1,1011.8,0,0,0 +15602,19106,34833,-9,34834,34832,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1043.677529358173,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,1,1011.8,0,0,0 +15602,19106,34834,34832,-9,-9,2,1,0,38,1,0,3,0,2,-9,2,1,0,4,8.781769835649886,8.401031667866334,0,2,0,-9,6,0,0,-57.86027908090151,0,0,1,47,2,3,1,3,1,2019,1,1,10,0,53,50,15,1,0,1,0,11.56891443454039,11.56891443454039,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,3,1,0,0,6,4,1,1011.8,0,0,0 +15602,19106,34835,-9,34834,34832,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.678925869011,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,6,4,1,1011.8,0,0,0 +15602,19106,34836,-9,34834,34832,4,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.283428159902,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,6,4,1,1011.8,0,0,0 +15603,19107,34837,34839,-9,-9,2,1,0,29,1,0,1,0,2,-9,2,1,0,1,7.153485655715133,6.553983168932809,0,2,0,-9,5,0,-4,80.3946843289193,0,1,1,33,2,3,1,-9,-9,2019,1,1,20,8,19,28,15,1,8,1,0,5.862217313782001,5.862217313782001,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.55,21,2,1,0,0,12,4,1,602,0,0,0 +15603,19107,34838,-9,34837,34839,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.687841393423,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,602,0,0,0 +15603,19107,34839,34837,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,3,8.392732588365613,8.443206064333244,0,2,0,-9,5,0,4,-17.79808126139578,0,0,0,29,2,1,1,2,2,2019,1,2,11,0,37,46,15,1,0,1,0,17.16341081278279,17.16341081278279,0,0,0,0,0,0,0,1,1,0,1.742523297066469,0,0,0,38.76,58.16,3,1,0,0,12,4,1,602,0,0,0 +15604,19108,34840,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,4,8.688699545657009,9.176278453705331,0,3,0,0,0,-9,0,-913.6199896369017,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,12,65,15,1,0,-9,0,81.36362148763459,81.36362148763459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,6,1,0,0,9,5,0,1681,0,0,0 +15605,19109,34841,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,3,7.82846749249315,7.842215931674155,0,3,0,0,0,-9,0,-921.720902170894,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,30,30,15,1,0,-9,0,6.699668476160936,6.699668476160936,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.05,39.59,6,1,0,0,13,3,1,352,0,0,0 +15606,19110,34842,-9,-9,-9,1,1,1,33,2,0,0,0,2,-9,2,1,0,5,9.341492434093604,9.146062517143216,0,3,0,0,0,-9,0,-1006.679770277606,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,1,70,72,15,1,1,-9,0,13.31779459076046,13.31779459076046,0,0,0,0,0,0,0,0,0,0,3.525808643546569,0,0,0,48.12,63.16,6,1,0,0,4,5,1,390,0,0,0 +15607,19111,34843,-9,-9,-9,1,1,1,59,2,0,0,0,2,-9,1,1,0,2,7.605432503615078,7.038837094772129,0,3,0,0,0,-9,0,-1106.850060046731,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,34,15,1,0,-9,0,5.043920166099182,5.043920166099182,0,0,0,0,0,0,0,0,0,0,2.990323521486001,0,0,0,52.47,45.08,5,1,0,0,9,3,1,636,0,0,0 +15608,19112,34844,-9,-9,-9,1,1,1,54,2,0,0,0,1,-9,2,1,0,4,8.835843788333488,8.994860412473297,0,3,0,0,0,-9,0,-874.1454377121927,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,56,53,15,1,0,-9,0,15.58090803455342,15.58090803455342,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,6,4,0,0,10,5,1,301,0,0,0 +15609,19113,34845,34846,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,6.441589586246204,6.812641189729546,1,0,-9,7,0,3,34.94306996513046,0,0,0,74,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.695952051109224,0,0,60.29,52.11,7,1,0,0,9,2,0,351.5,0,0,0 +15609,19113,34846,34845,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-3,48.36029709369497,0,0,0,77,2,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.05,45.35,7,1,0,0,9,2,0,351.5,0,0,0 +15610,19114,34847,34848,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,4,6.236919520694486,6.010552209392699,0,1,0,-9,7,0,0,-1.96876476468522,0,0,0,59,2,4,3,2,1,2019,4,2,11,0,8,10,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.42037514923468,0,0,0,54.2,57.49,6,1,0,0,13,2,1,954.5,0,0,0 +15610,19114,34848,34847,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,7,0,0,-116.9050876150205,0,0,0,59,1,4,3,2,3,2019,4,1,3,0,0,24,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.485635395553272,0,0,0,57.16,56.15,6,1,0,0,13,2,1,954.5,0,0,0 +15611,19115,34849,-9,34850,34852,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-907.4957594672901,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,442.25,0,0,0 +15611,19115,34850,34852,-9,-9,1,1,0,26,1,1,2,0,2,-9,2,1,0,4,7.475132897365127,7.202858269976809,0,2,0,-9,5,0,-2,-95.46756757364624,0,1,1,28,2,5,1,-9,-9,2019,1,2,7,0,26,33,15,1,0,1,0,6.71872666506078,6.71872666506078,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,9,4,1,442.25,0,0,0 +15611,19115,34851,-9,34850,34852,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.0022783966294,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,4,1,442.25,0,0,0 +15611,19115,34852,34850,-9,-9,2,1,1,28,1,1,2,0,2,-9,2,1,0,5,8.388614527019625,8.578970823194915,0,2,0,-9,5,0,2,108.6074412937412,0,1,0,26,2,4,1,-9,-9,2019,1,1,11,4,37,37,15,1,4,1,0,16.98319767651501,16.98319767651501,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,9,4,1,442.25,0,0,0 +15612,19116,34853,-9,34855,-9,5,1,0,13,2,0,3,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1145.738202496966,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,3,0,0,4,2,0,365.75,0,0,0 +15612,19116,34854,-9,34855,-9,4,1,0,17,2,0,3,1,2,0,7,2,0,2,0,0,0,4,0,0,0,-9,0,-1001.492298836856,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,0,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.48,41.06,7,3,0,0,4,2,0,365.75,0,0,0 +15612,19116,34855,-9,-9,-9,1,1,0,39,3,0,3,0,3,-9,2,1,0,4,6.697989104718643,6.796199778157217,0,4,0,0,0,-9,0,-1003.278111743079,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,16,15,1,1,-9,0,7.518407128852676,7.518407128852676,0,0,0,0,0,0,0,1,1,0,3.374830586337647,0,0,0,49,56,5,3,0,0,4,2,0,365.75,0,0,0 +15612,19116,34856,-9,34855,-9,6,1,1,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1033.62199143062,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,3,0,0,4,2,0,365.75,0,0,0 +15612,19117,34857,-9,34855,-9,2,1,1,20,2,0,3,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-963.3619919033772,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,1,1,4,1,0,531,0,0,0 +15612,19118,34858,-9,34855,-9,3,1,1,19,2,0,3,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-795.7059120273053,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,29,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,2.553653303671376,0,0,0,45.56,34.85,6,3,1,0,4,1,0,446,0,0,0 +15613,19119,34859,-9,-9,-9,1,1,0,49,2,0,1,0,1,-9,1,1,0,4,8.358652374080298,8.358164366442775,6.154471103846243,4,0,0,0,-9,0,-1059.652212630593,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,4,0,25,10,15,1,0,-9,0,19.62277925425095,19.62277925425095,0,0,0,0,0,0,0,1,1,0,6.443001772731575,0,0,0,56.18,53.85,6,1,0,0,13,4,1,501,0,0,0 +15613,19119,34860,-9,34859,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-923.0362722329301,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,13,4,1,501,0,0,0 +15614,19120,34861,-9,34862,-9,1,1,0,34,3,0,0,0,2,-9,2,1,0,3,8.294060329102338,8.0864340114074,0,3,0,0,0,-9,0,-1024.133798298014,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,3,38,41,15,1,3,-9,1,8.796691669844659,8.796691669844659,0,0,0,0,0,0,0,1,1,0,0,0,4.828573367024987,3,38.31,55.59,3,1,0,0,4,4,1,865,0,0,0 +15614,19121,34862,-9,-9,-9,2,1,0,63,3,0,0,0,2,-9,8,3,1,1,0,5.456319114140749,5.425914517332736,3,0,0,0,-9,0,-944.1373964722121,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.995269737636366,5.13636384180577,0,0,32.59,30.02,2,1,0,0,4,2,1,939,0,0,0 +15615,19122,34863,34864,-9,-9,1,1,1,25,1,0,0,0,2,-9,2,1,0,4,7.942256267193947,7.723578873950841,0,1,0,-9,1,-9,-2,22.86467312618915,-9,1,0,27,2,5,1,-9,-9,2019,1,2,14,2,42,0,15,1,2,1,0,7.358288666851177,7.358288666851177,0,0,0,0,0,0,0,0,0,0,0,0,0,3,43.42,62.33,5,1,0,1,5,4,1,499,0,0,0 +15615,19122,34864,34863,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,5,8.100166551813231,8.109725593528925,0,1,0,-9,1,-9,2,-6.877865904360695,-9,1,1,25,2,4,1,-9,-9,2019,1,1,10,2,39,0,15,1,2,1,0,11.2527564929989,11.2527564929989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,6,1,0,0,5,4,1,499,0,0,0 +15616,19123,34865,-9,-9,-9,1,1,1,27,2,0,0,0,1,-9,2,1,0,5,8.872717215718978,8.818701651507858,0,3,0,0,0,-9,0,-951.7574422060931,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,38,15,1,0,-9,0,21.2470213950903,21.2470213950903,0,0,0,0,0,0,0,0,0,0,6.296880091077113,0,0,0,44.45,62.04,6,1,0,0,7,5,1,1562,0,0,0 +15617,19124,34866,34867,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,7.443081393264655,7.144375586554768,1,0,-9,8,0,11,-35.71828307965814,-9,0,0,54,1,5,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.056365710053277,0,0,54.2,57.49,6,1,0,0,12,4,1,1074,0,0,0 +15617,19124,34867,34866,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,5,8.151664382828031,7.73380349207244,0,1,0,-9,28,0,-11,9.306156807195366,0,0,0,65,1,4,3,2,3,2019,2,2,7,0,30,30,15,1,0,4,0,11.09508964926832,11.09508964926832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,4,1,1074,0,0,0 +15618,19125,34868,34869,-9,-9,1,1,1,62,1,0,0,0,1,-9,2,1,0,2,7.259349861355409,8.498079775470954,8.397915048130738,1,0,-9,7,0,1,61.19637242072868,0,0,0,61,2,3,1,3,3,2019,1,2,10,0,18,0,15,1,0,1,0,9.458271296542117,9.458271296542117,0,0,0,0,0,0,0,0,0,0,0,8.436808091541439,0,0,46.58,47.75,5,1,0,0,13,5,1,409,0,0,0 +15618,19125,34869,34868,-9,-9,2,1,0,61,1,0,0,0,2,-9,2,1,0,3,9.005302903654806,9.002898471438746,0,1,0,-9,7,0,-1,31.07383809599939,-9,0,0,62,1,2,1,3,3,2019,1,1,11,0,37,0,15,1,0,1,0,27.08458255750617,27.08458255750617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.46,51.61,6,1,0,0,13,5,1,409,0,0,0 +15619,19126,34870,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,2,1,0,3,7.988035538772282,7.847802240398408,0,3,0,-9,0,-9,0,-1029.44903572244,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,23,11,33,0,15,1,11,-9,0,11.5900309895442,11.5900309895442,0,0,0,0,0,0,0,0,0,0,1.858928911969538,0,0,0,26.76,53.94,3,4,0,0,8,4,0,887,0,0,0 +15620,19127,34871,34872,-9,-9,2,1,1,37,1,0,0,0,2,-9,2,1,0,4,9.116996000731294,9.063831572678307,0,1,0,-9,5,0,0,109.9277864494889,0,0,0,37,1,4,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,23.14558875001075,23.14558875001075,0,0,0,0,0,0,0,0,0,0,.325950856444643,0,0,0,51,57,5,1,0,0,9,5,1,517.5,0,0,0 +15620,19127,34872,34871,-9,-9,1,1,0,37,1,0,0,0,1,-9,2,1,0,4,9.31414571201676,9.01528648751661,0,1,0,-9,11,0,0,13.18842695621278,0,0,1,37,2,4,1,2,1,2019,1,2,11,0,40,40,15,1,2,1,0,23.67605791928139,23.67605791928139,0,0,0,0,0,0,0,0,0,0,6.959219433597527,0,0,0,49,56,5,1,0,0,9,5,1,517.5,0,0,0 +15621,19128,34873,34874,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,3,0,4.657505595766049,4.744394373704643,1,0,-9,2,0,9,-28.37049722570931,0,0,0,71,3,3,3,-9,-9,2019,4,3,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.52198975109035,4.45363980477568,41.38584032413463,1,55.32,36.78,6,1,0,0,12,1,1,1094,0,0,0 +15621,19128,34874,34873,-9,-9,3,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,2,0,0,-135.2885031173986,0,0,0,80,3,3,3,-9,-9,2019,4,2,11,0,0,0,15,4,1,4,0,0,0,1,0,22.05614811633878,0,0,0,0,1,1,0,7.480241899894103,0,0,0,51,46,5,1,0,0,12,1,1,1094,0,0,0 +15621,19129,34875,-9,34874,34873,1,1,1,46,2,0,0,0,2,-9,2,1,0,4,8.41753726892186,8.025024960808617,0,3,0,0,0,-9,0,-912.5317380293428,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,37,15,1,0,-9,1,13.64580613067744,13.64580613067744,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,126,0,0,0 +15622,19130,34876,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,3,0,7.237921700853647,7.045482577885067,3,0,0,0,-9,0,-1038.05023017476,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.012127495231687,7.272264768606854,0,0,48.97,42.09,6,1,0,0,10,3,1,390,0,0,0 +15622,19131,34877,-9,34876,-9,2,1,1,54,2,0,0,0,2,-9,2,1,0,3,8.398878963220614,7.880303916211209,0,3,0,0,0,-9,0,-1064.687009604224,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,35,35,15,1,0,-9,1,13.3101775464397,13.3101775464397,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.13,48.65,4,1,0,0,10,4,1,508,0,0,0 +15623,19132,34878,34879,-9,-9,1,1,0,36,1,0,0,0,2,-9,2,1,0,5,9.23893901089604,8.876540918018362,0,1,0,-9,7,0,3,-21.31059732887104,0,0,1,33,1,5,1,2,1,2019,1,2,16,5,50,55,15,1,5,1,0,22.0102784651468,22.0102784651468,0,0,0,0,0,0,0,0,0,0,2.102180893353888,0,0,0,49.25,61.25,6,1,0,0,12,5,1,717.5,0,0,0 +15623,19132,34879,34878,-9,-9,2,1,1,33,1,0,0,0,1,-9,2,1,0,5,8.975007349129577,8.892754837411706,0,1,0,-9,7,0,-3,-37.52691462192264,0,0,0,36,2,5,1,2,2,2019,1,1,11,3,50,55,15,1,3,1,0,20.5806076652066,20.5806076652066,0,0,0,0,0,0,0,0,0,0,2.22632342544994,0,0,0,51.95,57.56,6,1,0,0,12,5,1,717.5,0,0,0 +15624,19133,34880,-9,34881,34883,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-875.9563483904162,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,4,1,1210,0,0,0 +15624,19133,34881,34883,-9,-9,2,1,0,44,1,0,2,0,1,-9,1,1,0,4,5.883150678293596,5.864133655001678,0,2,0,-9,11,0,-1,15.99952744508848,0,0,1,45,2,3,1,2,2,2019,1,1,15,3,10,16,15,1,3,1,0,3.332286835302937,3.332286835302937,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,5,1,0,0,7,4,1,1210,0,0,0 +15624,19133,34882,-9,34881,34883,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.8663067624868,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,1210,0,0,0 +15624,19133,34883,34881,-9,-9,1,1,1,45,1,0,2,0,2,-9,2,1,0,3,8.926273801000743,8.683637552838281,0,2,0,-9,11,0,1,3.037426174572489,0,0,0,44,1,4,1,2,2,2019,1,2,20,8,47,53,15,1,8,1,0,18.4219126352236,18.4219126352236,0,0,0,0,0,0,0,1,1,0,0,0,0,3,35.8,59.5,5,1,0,0,7,4,1,1210,0,0,0 +15625,19134,34884,-9,-9,-9,1,1,1,82,3,0,0,0,2,-9,4,3,0,2,0,7.250765812638891,7.170640368431722,3,0,0,0,-9,0,-1031.516730152027,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,36.20624573935991,1,1,0,3.319672189188695,7.781157546973757,0,0,65.3,11.06,7,1,0,0,4,3,1,1328,0,0,0 +15626,19135,34885,34886,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,3,8.771538857347293,8.932849356232804,0,1,0,-9,8,0,-5,-45.40226833689051,0,0,0,57,2,3,1,1,1,2019,1,1,6,0,39,40,15,1,0,1,0,19.10284316404848,19.10284316404848,0,0,0,0,0,0,0,0,0,0,0,0,11.13104672210851,3,60.29,52.11,6,1,0,0,12,5,1,1203,0,0,0 +15626,19135,34886,34885,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,3,7.628297568687144,7.201159358819193,0,1,0,-9,8,0,5,113.2398462424052,0,0,0,52,2,3,1,3,2,2019,1,2,11,0,25,26,15,1,0,1,0,9.331810958580256,9.331810958580256,0,0,0,0,0,0,0,0,0,0,0,0,11.99424018897634,3,44.59,56.4,4,1,0,0,12,5,1,1203,0,0,0 +15627,19136,34887,34888,-9,-9,1,1,0,45,1,0,1,0,2,-9,2,1,0,2,8.94954149703652,8.715612304644171,0,2,0,-9,23,0,0,-42.82329270776085,0,0,0,54,3,4,1,2,2,2019,1,2,7,0,42,0,15,1,0,1,0,18.71558446695564,18.71558446695564,0,0,0,0,0,0,0,0,0,0,3.611328801732528,0,0,0,59.87,37.67,7,1,0,0,7,5,1,308,0,0,0 +15627,19136,34888,34887,-9,-9,2,1,1,54,1,0,1,0,3,-9,2,1,0,4,8.386979657251159,8.428612588005928,0,2,0,-9,23,0,9,-48.75470642836613,0,0,0,45,2,2,1,-9,-9,2019,1,1,12,0,40,40,15,1,0,1,0,15.43481962046228,15.43481962046228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,1,308,0,0,0 +15627,19137,34889,-9,34887,34888,3,1,1,21,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1046.365500279758,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,7,1,0,0,7,1,1,1357,0,0,0 +15627,19138,34890,-9,34887,34888,4,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1061.287346793111,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.964682168843789,0,0,0,62.39,56.71,7,1,0,0,7,5,1,925,0,0,0 +15628,19139,34891,34892,-9,-9,2,1,1,47,1,0,1,0,2,-9,2,1,0,2,8.108893365688713,8.025449684720344,0,2,0,-9,11,0,4,-48.24715935275727,0,0,0,43,2,1,3,2,2,2019,2,1,22,9,40,40,15,1,9,3,0,13.82039223273162,13.82039223273162,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.02,52.6,4,1,0,1,6,3,0,811.3333333333334,0,0,0 +15628,19139,34892,34891,-9,-9,1,1,0,43,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,11,0,-4,72.11390828484986,0,0,1,47,2,2,1,-9,3,2019,3,2,16,7,0,16,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,24.49,2,1,0,1,6,3,0,811.3333333333334,0,0,0 +15628,19139,34893,-9,34892,34891,3,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1055.797724803468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,6,3,0,811.3333333333334,0,0,0 +15629,19140,34894,-9,34896,34895,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-974.2173188670042,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,0,379.5,0,0,0 +15629,19140,34895,34896,-9,-9,1,1,1,28,1,1,2,0,2,-9,2,1,0,4,8.06410282802956,7.769647868700318,0,2,0,1,1,-9,4,76.57560976791441,0,1,0,24,2,3,1,2,-9,2019,1,2,12,0,42,64,15,1,0,1,0,6.149658144098013,6.149658144098013,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,57.54,6,1,0,0,10,3,0,379.5,0,0,0 +15629,19140,34896,34895,-9,-9,2,1,0,24,1,1,2,0,2,-9,2,1,0,3,6.284578617305307,7.012659076725122,6.282946136313062,2,0,-9,1,-9,-4,-61.82954163810833,-9,1,1,28,2,4,1,-9,-9,2019,1,1,9,0,16,0,15,1,0,1,0,4.096213166797471,4.096213166797471,0,0,0,0,0,0,0,1,1,0,6.539868395284762,0,0,0,53.82,42.86,6,1,0,0,10,3,0,379.5,0,0,0 +15629,19140,34897,-9,34896,34895,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1182.080376744389,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,10,3,0,379.5,0,0,0 +15630,19141,34898,-9,-9,-9,1,1,1,61,3,0,0,0,1,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1024.125144224942,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,23.9,4,3,0,0,7,1,1,821,0,0,0 +15630,19142,34899,-9,-9,34898,2,1,1,29,2,0,0,0,2,-9,2,1,0,5,8.348703065019173,8.061629266633568,0,3,0,0,0,-9,0,-1052.91697889106,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,48,40,15,1,1,-9,1,8.922163891156435,8.922163891156435,0,0,0,0,0,0,0,1,1,0,0,0,24.64197151662481,3,44.16,61.04,7,3,0,0,7,4,1,335,0,0,0 +15631,19143,34900,-9,-9,-9,1,1,0,43,3,0,0,0,2,-9,2,1,0,4,8.233027406956833,8.398820948231419,0,3,0,0,0,-9,0,-1088.361991848305,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,15,4,40,39,15,1,4,-9,0,10.09094855203022,10.09094855203022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.48,55.86,6,1,0,0,13,4,1,491,0,0,0 +15632,19144,34901,-9,-9,-9,1,1,1,26,2,0,0,0,2,-9,2,1,0,2,8.131428248026255,7.657210125702698,0,3,0,-9,0,0,0,-973.2524371960178,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,41,37,15,1,2,-9,0,7.573494396867868,7.573494396867868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,46.68,4,1,0,0,1,4,0,903,0,0,0 +15633,19145,34902,34903,-9,-9,1,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,4.119029841584706,4.307656727883132,1,0,-9,38,0,0,-27.86405015980632,0,0,0,60,2,2,3,2,3,2019,4,2,16,5,0,38,15,4,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79901662682693,3.979285342106156,0,0,40.13,49.25,6,1,0,0,13,4,1,684.5,0,0,0 +15633,19145,34903,34902,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,2,0,8.294562309811589,8.585755543025599,1,0,-9,38,0,0,-16.54239281882934,0,0,0,60,2,3,3,3,3,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.125059277992648,8.304932496306318,0,0,54.61,51.04,6,1,0,0,13,4,1,684.5,0,0,0 +15634,19146,34904,-9,34905,-9,3,1,0,16,2,0,2,1,2,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-958.6602169220777,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,28,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.09,41.54,3,1,0,0,4,2,0,396,0,0,0 +15634,19146,34905,-9,-9,-9,1,1,0,51,3,0,2,0,2,-9,6,3,0,1,0,6.1070589893783,5.914501674975604,4,0,0,0,-9,0,-1070.832093678373,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.926664306053515,0,109.9341498612559,3,54.81,10.49,2,1,0,0,4,2,0,396,0,0,0 +15634,19146,34906,-9,34905,-9,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-918.54098376354,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,2,0,396,0,0,0 +15634,19147,34907,-9,34905,-9,2,1,1,19,2,0,2,0,2,1,11,3,0,3,7.248182710043415,7.311325789697823,0,3,0,0,0,-9,0,-882.3940941447538,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,2,38,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.6113232647399752,0,0,0,46.85,51.26,6,1,0,0,4,2,0,1237,0,0,0 +15635,19148,34908,34909,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,4,8.248248449888049,8.239269868672608,0,1,0,-9,46,0,-2,-18.8134774591625,0,0,0,67,1,5,1,3,2,2019,1,2,7,0,38,38,15,1,0,1,0,10.57810537343169,10.57810537343169,0,0,0,0,0,0,0,0,0,0,0,0,13.79851900965524,3,62.1,51.16,6,1,0,0,11,5,1,454,0,0,0 +15635,19148,34909,34908,-9,-9,2,1,1,67,1,0,0,0,1,-9,2,1,0,5,8.932833793424775,8.852945587183102,0,1,0,-9,46,0,2,-64.21591116153401,0,0,0,65,2,4,1,2,3,2019,1,1,5,0,38,38,15,1,0,1,0,23.2224644626458,23.2224644626458,0,0,0,0,0,0,0,0,0,0,2.62731405404046,0,0,0,62.39,56.71,7,1,0,0,11,5,1,454,0,0,0 +15636,19149,34910,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,1,1,0,2,7.656194036022308,8.324271772015486,7.9305356287393,3,0,0,0,-9,0,-986.4509148970753,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,20,16,15,1,1,-9,0,10.35902571709558,10.35902571709558,0,0,0,0,0,0,0,1,1,0,5.829658407912106,7.753104380059753,0,0,40.6,41.07,4,1,0,0,13,5,1,254,0,0,0 +15637,19150,34911,-9,-9,-9,1,1,0,48,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-922.1862203058972,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.45,60.79,4,4,1,1,8,1,0,610,0,0,0 +15637,19151,34912,-9,34911,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,5,7.972052802505156,7.642017471257905,0,3,0,0,0,-9,0,-868.0815975674977,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,35,16,15,1,0,-9,1,7.130669870057387,7.130669870057387,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,62.68,6,4,0,0,8,3,0,216,0,0,0 +15638,19152,34913,34914,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.021694361087899,7.635517175718062,1,0,-9,33,0,7,-98.18864512853537,0,0,0,64,2,4,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.033638738675039,8.039468327173836,11.93333620153527,3,56.52,48.31,6,1,0,0,5,4,1,1410.5,0,0,0 +15638,19152,34914,34913,-9,-9,2,1,0,64,1,0,0,0,2,-9,4,3,0,4,0,7.197033152926252,7.295455530236091,1,0,-9,11,0,-7,121.0353808981258,0,0,0,71,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.682022162914009,7.069923220093548,0,0,57.16,56.15,7,1,0,0,5,4,1,1410.5,0,0,0 +15639,19153,34915,34918,-9,-9,2,1,0,36,1,1,2,0,2,-9,6,3,0,3,0,0,0,2,0,-9,6,0,-5,-112.9926519221705,0,0,1,41,1,5,1,2,2,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.91536826420274,3,45.98,56.3,5,1,0,0,2,3,1,365.25,0,0,0 +15639,19153,34916,-9,34915,34918,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.3892510355693,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,1,365.25,0,0,0 +15639,19153,34917,-9,34915,34918,3,1,0,7,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.156383483489,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,3,1,365.25,0,0,0 +15639,19153,34918,34915,-9,-9,1,1,1,41,1,1,2,0,1,-9,1,1,0,5,8.618383369659968,8.231176792018204,0,2,0,-9,6,0,5,-30.848236265133,0,0,0,36,2,3,3,2,3,2019,2,2,7,0,45,50,15,1,0,3,0,14.16152794455781,14.16152794455781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,2,3,1,365.25,0,0,0 +15640,19154,34919,-9,-9,-9,1,1,1,77,2,0,0,0,1,-9,4,3,0,4,5.860795851646197,7.995100181077043,8.047918273414798,1,0,-9,6,0,18,-46.49221657793716,0,0,0,-9,-9,-9,-9,2,2,2019,3,2,10,2,4,7,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.714805187499078,8.028661679667843,0,0,44.58,55.46,6,1,0,0,10,4,1,265,0,0,0 +15640,19155,34920,-9,-9,-9,2,1,1,59,2,0,0,0,2,-9,2,1,0,3,8.151910352401666,7.840576899197546,0,1,0,-9,6,0,-18,92.71967996588664,0,0,0,-9,-9,-9,-9,3,2,2019,2,1,5,0,28,52,15,1,0,-9,0,10.2007198008656,10.2007198008656,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,6,1,0,0,10,4,1,486,0,0,0 +15641,19156,34921,34922,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,4,0,7.772987955303977,8.138497949117973,1,0,-9,51,0,-1,123.5695745596025,0,0,0,73,1,3,3,3,1,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.664929782385511,8.145335227210678,0,2,54.2,57.49,6,1,0,0,13,5,1,1756,0,0,0 +15641,19156,34922,34921,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,8.438952543593171,8.274276633543186,1,0,-9,51,0,1,-4.23857585905914,0,0,0,72,1,4,3,3,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.58496445707292,8.117816775455129,0,0,51.22,41.36,6,1,0,0,13,5,1,1756,0,0,0 +15642,19157,34923,34925,-9,-9,2,1,1,36,1,0,3,0,2,-9,2,1,0,4,8.536196071174437,8.338691823549444,0,2,0,-9,9,0,1,18.11106834307017,0,0,0,35,2,3,1,-9,-9,2019,1,1,8,0,44,40,15,1,0,1,0,11.60828186345984,11.60828186345984,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,5,1,0,0,5,4,1,567.75,0,0,0 +15642,19157,34924,-9,34925,34923,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.058230447837,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,5,4,1,567.75,0,0,0 +15642,19157,34925,34923,-9,-9,1,1,0,35,1,0,3,0,2,-9,2,1,0,3,7.943032626732861,8.191549013338539,0,2,0,-9,14,0,-1,-52.86348444698853,-9,0,1,36,2,4,1,2,2,2019,1,2,13,0,45,0,15,1,2,1,0,8.698549679838678,8.698549679838678,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.25,39.53,5,1,0,0,5,4,1,567.75,0,0,0 +15642,19157,34926,-9,34925,34923,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.190736500293,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,4,1,567.75,0,0,0 +15643,19158,34927,34928,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,5,0,8.125798060925803,8.309268978789078,1,0,-9,7,0,1,-26.43371627193821,0,0,0,59,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.419966012472986,8.050593909024762,22.24185182540025,3,62.39,56.71,7,1,0,0,12,4,1,303.5,0,0,0 +15643,19158,34928,34927,-9,-9,2,1,0,59,1,0,0,0,3,-9,4,3,0,4,0,8.412302287554894,7.77501246701924,1,0,-9,7,0,-1,-27.74580619211241,0,0,0,60,1,5,3,3,3,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.059032443601583,8.309003910688002,7.958255131223232,3,57.16,56.15,7,1,0,0,12,4,1,303.5,0,0,0 +15644,19159,34929,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,1,1,0,3,6.423648776759423,6.801280284014419,0,3,0,0,0,-9,0,-1009.614885148746,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,19,14,15,1,2,-9,0,4.135094686026234,4.135094686026234,0,0,0,0,0,0,0,1,1,0,6.327497993608777,0,0,0,46.97,53.06,5,1,0,0,12,2,0,684,0,0,0 +15645,19160,34930,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1084.930361467795,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,6.097600882253105,20.82420909258972,1,1,0,.62643895574401,0,0,0,51,46,6,1,0,0,2,1,0,1893,0,0,0 +15646,19161,34931,34932,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,4,8.567683311987267,8.428759645314692,0,1,0,-9,26,0,2,72.32990789415555,0,0,0,45,2,3,1,2,2,2019,1,1,10,1,44,49,15,1,1,1,0,12.03483220994337,12.03483220994337,0,0,0,0,0,0,0,0,0,0,1.403753424959708,0,0,0,51.83,57.2,6,1,0,0,9,5,1,191.5,0,0,0 +15646,19161,34932,34931,-9,-9,1,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.228653845251641,8.074169832261864,0,1,0,-9,26,0,-2,-89.83579272762384,0,0,0,47,2,4,1,2,2,2019,1,2,22,11,39,42,15,1,11,1,0,8.862596234833669,8.862596234833669,0,0,0,0,0,0,0,0,0,0,.9910120312908096,0,0,0,25.72,44.97,6,1,0,0,9,5,1,191.5,0,0,0 +15646,19162,34933,-9,34932,34931,3,1,0,23,2,0,0,0,2,-9,2,1,0,5,7.242383931755552,7.264998606999222,0,3,0,0,0,-9,0,-928.0622670838329,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,35,12,14,24,15,1,12,-9,1,8.488159148942909,8.488159148942909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.34,69.48999999999999,2,1,0,0,9,3,1,302,0,0,0 +15647,19163,34934,-9,-9,-9,1,1,0,67,3,0,0,0,3,-9,4,3,0,4,0,7.765776622497742,7.365971312337938,3,0,0,0,-9,0,-952.8087182600136,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.299842025683065,0,0,59.29,49.68,7,1,0,0,1,3,1,198,0,0,0 +15648,19164,34935,-9,34936,34937,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.666393780483,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,7,3,0,466,0,0,0 +15648,19164,34936,34937,-9,-9,1,1,0,36,1,1,1,0,3,-9,2,1,0,3,7.026639404135339,7.216145314550183,0,2,0,-9,10,0,-10,-94.7113243022396,0,0,1,46,2,4,1,2,2,2019,1,2,13,1,15,0,15,1,1,1,0,7.177521197281552,7.177521197281552,0,0,0,0,0,0,0,1,1,0,.6788889283828183,0,0,0,42.61,49.31,5,1,0,0,7,3,0,466,0,0,0 +15648,19164,34937,34936,-9,-9,2,1,1,46,1,1,1,0,2,-9,2,1,0,4,8.183769162781076,8.195706103901063,0,2,0,-9,10,0,10,-7.861372210261357,-9,0,0,36,3,3,1,-9,-9,2019,1,1,9,0,36,0,15,1,0,1,0,10.35671784120208,10.35671784120208,0,0,0,0,0,0,0,1,1,0,2.074020498885822,0,0,0,48.87,58.55,6,1,0,0,7,3,0,466,0,0,0 +15649,19165,34938,34940,-9,-9,1,1,0,40,1,0,1,0,2,-9,1,1,0,4,6.365432074955358,6.121433786172823,0,2,0,-9,26,0,0,52.57363521020839,0,0,1,40,3,2,1,3,2,2019,1,2,20,8,6,0,15,1,8,1,0,10.70694461247613,10.70694461247613,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,3,1,0,1,9,3,0,1201,0,0,0 +15649,19165,34939,-9,34938,34940,4,1,0,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1059.932101216269,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,4,1,0,0,9,3,0,1201,0,0,0 +15649,19165,34940,34938,-9,-9,2,1,1,40,1,0,1,0,3,-9,1,1,0,2,8.00907334728298,8.335593538139028,0,2,0,-9,23,0,0,-92.62026316186767,0,0,0,40,2,4,1,3,3,2019,1,1,14,3,35,44,15,1,3,1,0,14.56227793355033,14.56227793355033,0,0,0,0,0,0,0,1,1,0,.4947580675149307,0,0,0,45.13,50.01,4,1,0,1,9,3,0,1201,0,0,0 +15649,19166,34941,-9,34938,34940,3,1,0,20,2,0,1,0,2,-9,2,1,0,4,7.437521883029599,7.854857378576401,0,3,0,0,0,-9,0,-989.8352943978458,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,26,12,32,28,15,1,12,-9,1,9.239042254250752,9.239042254250752,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.44,62.16,4,1,0,0,9,3,0,403,0,0,0 +15650,19167,34942,34943,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,2,7.338435596925777,7.078884218031376,0,2,0,-9,6,0,7,-112.6465373673803,0,0,1,37,1,3,1,3,1,2019,1,2,11,0,16,16,15,1,0,1,0,8.420960403070319,8.420960403070319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.8,51.61,5,1,0,0,9,5,1,189.3333333333333,0,0,0 +15650,19167,34943,34942,-9,-9,2,1,1,37,1,0,1,0,1,-9,2,1,0,3,9.184642998421328,8.959381309411189,0,2,0,-9,6,0,-7,9.70102348573222,0,0,0,44,1,2,1,-9,-9,2019,1,1,7,0,55,45,15,1,0,1,0,17.39103781440841,17.39103781440841,0,0,0,0,0,0,0,0,0,0,1.735432433931292,0,0,0,55.96,49.93,5,1,0,0,9,5,1,189.3333333333333,0,0,0 +15650,19167,34944,-9,34942,34943,3,1,1,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1063.241660870757,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,9,5,1,189.3333333333333,0,0,0 +15651,19168,34945,-9,34947,-9,2,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-988.0849786251922,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,2122.333333333333,0,0,0 +15651,19168,34946,-9,34947,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1039.298756155999,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,2122.333333333333,0,0,0 +15651,19168,34947,-9,-9,-9,1,1,0,45,3,0,2,0,3,-9,6,3,0,3,0,5.854728444241061,5.834639425084506,4,0,0,0,-9,0,-1087.070806893272,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,26,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.088317131994296,0,0,0,26.02,54.58,3,1,0,0,9,2,0,2122.333333333333,0,0,0 +15652,19169,34948,-9,34950,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1040.849306675654,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,1,0,862.3333333333334,0,0,0 +15652,19169,34949,-9,34950,-9,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1000.851633658611,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,1,0,862.3333333333334,0,0,0 +15652,19169,34950,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-1064.412581011891,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.19,40.17,4,1,0,0,12,1,0,862.3333333333334,0,0,0 +15653,19170,34951,-9,-9,-9,1,1,1,65,3,0,0,0,2,-9,2,1,0,3,8.434138669921639,8.324607433466301,0,3,0,0,0,-9,0,-913.3349072587082,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,47,35,15,1,0,-9,0,11.90935863427006,11.90935863427006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,6,1,0,0,13,5,1,352,0,0,0 +15654,19171,34952,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,-9,0,0,0,-1000.125501085389,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.53,48.82,6,1,0,0,11,1,0,973,0,0,0 +15655,19172,34953,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,4,0,6.932625228315461,7.219593795367523,3,0,0,0,-9,0,-947.8115424312338,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.434128600334516,7.81082994198943,0,0,57.16,56.15,7,1,0,0,2,3,1,526,0,0,0 +15656,19173,34954,34956,-9,-9,2,1,1,51,1,0,1,0,3,-9,2,1,0,3,8.230342320234721,8.430413426508196,0,2,0,-9,7,0,3,68.61308596909394,0,0,0,48,2,3,1,2,2,2019,1,1,10,1,62,67,15,1,1,1,0,7.300487746491251,7.300487746491251,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,3,1,0,1,12,3,0,1232,0,0,0 +15656,19173,34955,-9,34956,34954,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-918.3382531274362,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,6,1,0,0,12,3,0,1232,0,0,0 +15656,19173,34956,34954,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.060698467249803,7.06613465772687,0,2,0,-9,7,0,-3,44.68380496237823,0,0,0,51,3,3,1,3,3,2019,1,2,13,1,18,20,15,1,1,1,0,8.093177716267554,8.093177716267554,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,6,1,0,0,12,3,0,1232,0,0,0 +15656,19174,34957,-9,34956,34954,3,1,0,21,2,0,1,0,2,-9,2,1,0,4,7.321339137284384,7.565197254638891,0,3,0,0,0,-9,0,-890.506141215548,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,1,33,47,15,1,1,-9,1,7.359946739212376,7.359946739212376,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,50.73,5,1,0,0,12,3,0,273,0,0,0 +15657,19175,34958,-9,-9,-9,1,1,1,19,2,0,0,1,2,0,7,2,0,5,0,6.708851050439938,6.816836137452015,3,0,0,0,-9,0,-938.687231185061,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.336749791404036,0,0,0,54.69,57.47,6,1,0,0,4,2,0,464,0,0,0 +15658,19176,34959,34961,-9,-9,2,1,1,57,1,0,2,0,2,-9,2,1,0,4,9.348161293116775,9.224348202218817,0,2,0,-9,7,0,17,-86.16110043874039,0,0,0,40,3,3,1,3,2,2019,1,1,7,0,60,40,15,1,0,1,0,20.34059937970671,20.34059937970671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,0,378.75,0,0,0 +15658,19176,34960,-9,34961,34959,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1032.944429860923,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,1,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,12,4,0,378.75,0,0,0 +15658,19176,34961,34959,-9,-9,1,1,0,40,1,0,2,0,3,-9,2,1,0,3,7.320952332885286,7.119260540023248,0,2,0,-9,7,0,-17,223.0910557284171,0,0,1,57,2,4,1,2,2,2019,1,2,13,2,14,20,15,1,2,1,0,10.34588653836548,10.34588653836548,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,48.15,5,1,0,0,12,4,0,378.75,0,0,0 +15658,19176,34962,-9,34961,34959,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-843.8707584358568,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,0,378.75,0,0,0 +15659,19177,34963,34964,-9,-9,2,1,1,76,1,0,0,0,1,-9,4,3,0,1,0,7.478287303851269,7.411661886178929,1,0,-9,43,0,0,-118.2288092419452,0,0,0,76,2,2,3,3,-9,2019,4,1,17,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.405924640191647,0,0,46.89,15.25,3,1,0,0,10,2,1,481.5,0,0,0 +15659,19177,34964,34963,-9,-9,1,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,3.231518906633394,3.033829250630854,1,0,-9,44,0,0,101.7261554894625,0,0,0,76,1,1,3,2,2,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7454205207627,3.857189980530631,123.5010649898325,1,43.36,46.75,3,1,0,0,10,2,1,481.5,0,0,0 +15660,19178,34965,34966,-9,-9,1,1,1,33,1,1,2,0,2,-9,2,1,0,3,9.294029468849525,9.467604189075274,0,2,0,-9,11,0,-1,-15.79778348718847,0,0,0,34,1,3,1,2,2,2019,1,2,7,0,45,50,15,1,0,1,0,22.38133940831728,22.38133940831728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,6,1,0,0,7,5,1,796.75,0,0,0 +15660,19178,34966,34965,-9,-9,2,1,0,34,1,1,2,0,1,-9,2,1,0,3,8.112590115754593,8.143973017952401,0,2,0,-9,11,0,1,81.4611882792946,0,0,1,33,2,3,1,2,2,2019,1,1,16,4,33,34,15,1,4,1,0,9.349602813459763,9.349602813459763,0,0,0,0,0,0,0,1,1,0,.585620086227888,0,0,0,38.69,53.88,5,1,0,0,7,5,1,796.75,0,0,0 +15660,19178,34967,-9,34966,34965,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-946.9912057295792,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,7,5,1,796.75,0,0,0 +15660,19178,34968,-9,34966,34965,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-935.7013314309639,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,796.75,0,0,0 +15661,19179,34969,34970,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,5,9.609606402209174,9.448847538455263,0,2,0,-9,8,0,-2,167.2778250798027,0,0,0,51,1,2,1,2,2,2019,1,1,14,2,45,44,15,1,2,1,0,34.58040686554969,34.58040686554969,0,0,0,0,0,0,0,0,0,0,2.796008499743618,0,0,0,42.85,62.85,5,1,0,0,8,5,1,467,0,0,0 +15661,19179,34970,34969,-9,-9,1,1,0,51,1,0,1,0,1,-9,2,1,0,2,8.62752440347422,9.083133341518209,0,2,0,-9,8,0,2,-56.09492295359364,0,0,0,49,1,5,1,2,2,2019,1,2,11,3,40,44,15,1,3,1,0,16.92094521070462,16.92094521070462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.41,33.7,5,4,0,0,8,5,1,467,0,0,0 +15661,19179,34971,-9,34970,34969,3,1,1,16,2,0,1,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1069.502478285179,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.83,62.1,5,2,0,0,8,5,1,467,0,0,0 +15662,19180,34972,34973,-9,-9,2,1,0,64,1,0,0,0,3,-9,2,1,0,3,7.089033002432264,7.666673209711314,0,1,0,-9,40,0,0,46.47387911231514,0,0,0,64,2,3,1,3,3,2019,1,1,12,0,25,26,15,1,0,1,0,8.69059880632776,8.69059880632776,1,0,0,0,0,0,0,1,1,0,4.117750012375337,0,0,0,36.79,56.27,5,1,0,0,6,4,1,458.5,0,0,0 +15662,19180,34973,34972,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,3,8.049392505319487,7.912469137277353,5.420910558192186,1,0,-9,40,0,0,20.4995881418257,0,0,0,64,3,3,1,3,-9,2019,1,2,7,0,40,40,15,1,0,1,0,8.229599501457908,8.229599501457908,1,0,0,0,0,0,0,1,1,0,5.669073948796743,4.93481020431478,0,0,55.53,51.55,7,1,0,0,6,4,1,458.5,0,0,0 +15663,19181,34974,34975,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,6.839684458140088,7.080072335926383,1,0,-9,49,0,0,-104.395114882489,0,0,0,71,3,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.704447255776397,0,0,53.92,52.23,7,1,0,0,2,2,1,790.5,0,0,0 +15663,19181,34975,34974,-9,-9,1,1,1,71,1,0,0,0,3,-9,4,3,0,2,0,7.159656994920077,7.007309196914616,1,0,-9,49,0,0,58.88460318108249,0,0,0,71,3,3,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.592071714859005,7.048783545440592,0,0,59.79,22.55,7,1,0,0,2,2,1,790.5,0,0,0 +15664,19182,34976,34977,-9,-9,1,1,1,67,1,0,0,0,1,-9,4,3,0,4,0,8.088640010809485,8.076748043480066,1,0,-9,44,0,4,-84.65596999983167,0,0,0,63,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.759834046723315,8.105111338464585,0,0,56.33,51.02,7,1,0,0,5,4,1,379.5,0,0,0 +15664,19182,34977,34976,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,7.856174796331425,7.815382658454829,1,0,-9,44,0,-4,-65.24133135654237,0,0,0,67,1,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.332861403520996,7.81315108922951,0,0,53.3,55.06,6,1,0,0,5,4,1,379.5,0,0,0 +15665,19183,34978,34979,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,4,8.86141344083242,8.626749774209253,0,1,0,-9,31,0,-1,3.996808264248044,0,0,0,58,2,3,1,2,2,2019,1,2,12,1,39,42,15,1,1,1,0,14.60385010387776,14.60385010387776,0,0,0,0,0,0,0,0,0,0,7.352382731578953,0,0,0,48.87,58.55,6,1,0,0,9,5,1,484,0,0,0 +15665,19183,34979,34978,-9,-9,2,1,1,58,1,0,0,0,2,-9,1,1,0,3,8.199801095033148,8.326973318667699,0,1,0,-9,31,0,1,72.52214230274808,0,0,0,57,2,4,1,2,2,2019,1,1,29,12,45,45,15,1,12,1,0,10.61630914113134,10.61630914113134,0,0,0,0,0,0,0,0,0,0,2.345159353635421,0,0,0,29.83,48.41,3,1,0,1,9,5,1,484,0,0,0 +15665,19184,34980,-9,34978,34979,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.48456341706302,8.13392713124977,0,3,0,0,0,-9,0,-924.716083677166,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,60,65,15,1,0,-9,1,7.190319690851426,7.190319690851426,0,0,0,0,0,0,0,0,0,0,4.819996929044543,0,0,0,57.16,56.15,6,1,0,0,9,4,1,158,0,0,0 +15666,19185,34981,-9,-9,-9,1,1,0,49,2,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-934.2757464969103,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,81.38901582850389,3,29.77,26.17,2,1,0,0,13,1,0,388,0,0,0 +15666,19186,34982,-9,34981,-9,2,1,0,25,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-958.8068455640696,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.79423691471606,3,16.21,59.64,3,1,0,0,13,1,0,283,0,0,0 +15666,19187,34983,-9,34981,-9,3,1,1,24,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-990.7269974115629,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,19.65,60.29,5,1,0,1,13,1,0,494,0,0,0 +15667,19188,34984,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,2,1,0,4,7.286538235486987,7.561524141034263,6.255625683014746,3,0,0,0,-9,0,-808.4637226087511,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,20,22,15,1,1,-9,0,7.945303570047999,7.945303570047999,0,0,0,0,0,0,0,0,0,0,0,6.015381081574135,4.287202412057823,3,38.34,62.12,5,1,0,0,2,3,1,270,0,0,0 +15668,19189,34985,-9,-9,-9,1,1,1,61,3,0,0,0,3,-9,2,1,0,4,8.228685277621175,8.133799498630431,0,3,0,0,0,-9,0,-1019.292797404134,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,37,42,15,1,0,-9,0,11.39991653962556,11.39991653962556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.74,56.23,7,4,0,0,4,4,0,791,0,0,0 +15669,19190,34986,-9,34988,-9,2,1,1,17,2,0,2,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-1144.410734050701,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,2,2,1,242,0,0,0 +15669,19190,34987,-9,34988,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-941.3542155943828,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,4,1,0,0,2,2,1,242,0,0,0 +15669,19190,34988,-9,-9,-9,1,1,0,51,2,0,2,0,2,-9,2,1,0,2,6.84227218723112,7.150041663246615,0,4,0,0,0,-9,0,-937.4228773248309,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,16,0,15,1,0,-9,0,8.57859098108273,8.57859098108273,0,0,0,0,0,0,0,1,1,0,0,0,.8314478085087318,3,50.41,48.86,4,1,0,0,2,2,1,242,0,0,0 +15669,19191,34989,-9,34988,-9,4,1,0,24,2,0,2,0,1,-9,2,1,0,4,7.55271180566782,7.904200328012784,0,3,0,-9,0,-9,0,-897.0711719999308,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,37,0,15,1,2,-9,1,5.79806994369237,5.79806994369237,0,0,0,0,0,0,0,1,1,0,.9770417952138146,0,0,0,47,57,5,1,0,0,2,3,1,783,0,0,0 +15670,19192,34990,-9,34991,34992,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.44102354854,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,12,3,1,1086.666666666667,0,0,0 +15670,19192,34991,34992,-9,-9,1,1,0,54,1,0,1,0,1,-9,1,1,0,4,7.759318322774547,7.519074241055007,0,2,0,-9,26,0,3,-98.3406727904534,0,0,0,51,2,4,3,3,2,2019,2,2,15,4,35,30,15,1,4,3,0,9.159101998111876,9.159101998111876,0,0,0,0,0,0,0,1,1,0,0,0,3.452251391117102,3,40.77,61.04,4,3,0,0,12,3,1,1086.666666666667,0,0,0 +15670,19192,34992,34991,-9,-9,2,1,1,51,1,0,1,0,2,-9,3,3,0,4,0,0,0,2,0,-9,26,0,-3,-50.97239344902177,0,0,0,54,1,4,1,2,1,2019,3,1,21,9,0,38,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.47,57.72,2,1,1,0,12,3,1,1086.666666666667,0,0,0 +15671,19193,34993,34994,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,7.53012180315276,7.495585716852314,1,0,-9,43,-9,1,8.227743161239101,-9,0,0,74,3,2,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,125.2586423761006,0,0,0,0,1,1,0,5.796965236240805,7.709926927804071,0,0,53,46,6,1,0,0,8,2,0,251,0,0,0 +15671,19193,34994,34993,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,43,-9,-1,34.73930127109148,-9,0,0,75,3,3,3,3,3,2019,4,2,18,8,0,0,15,4,8,4,0,0,0,1,0,0,17.04755069352498,25.94742184807581,0,0,1,1,0,0,0,71.7251100115184,1,26.81,39.68,4,1,0,0,8,2,0,251,0,0,0 +15672,19194,34995,34996,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,3,7.554486363481298,8.458722790473049,7.540128673710949,1,0,-9,30,0,-4,-48.59368289110588,0,0,0,65,1,3,3,3,-9,2019,4,2,8,0,15,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.888900000588046,7.811082411940666,0,0,61.43,43.34,6,1,0,0,7,5,1,205,0,0,0 +15672,19194,34996,34995,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,3,6.57608351844842,8.086677108889257,8.162416270606625,1,0,-9,31,0,4,-37.49859851335376,0,0,0,61,2,3,3,3,3,2019,4,1,8,0,3,4,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,8.022963680020597,0,0,55.53,51.55,5,3,0,0,7,5,1,205,0,0,0 +15672,19195,34997,-9,34995,34996,3,1,0,25,2,0,0,0,1,-9,2,1,0,3,8.1614435077044,7.981375326023845,0,3,0,0,0,-9,0,-966.9490593734097,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,32,37,15,1,0,-9,1,12.26303890031024,12.26303890031024,0,0,0,0,0,0,0,1,1,0,2.924255714701534,0,0,0,40.65,57.36,6,2,0,0,7,4,1,239,0,0,0 +15672,19196,34998,-9,34995,34996,4,1,1,20,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-983.113478113428,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,10,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.55,60.42,5,2,0,0,7,1,1,117,0,0,0 +15673,19197,34999,35000,-9,-9,1,1,1,44,1,0,1,0,1,-9,1,1,0,5,9.420249422988991,9.463607877217594,6.334706988375292,2,0,-9,13,0,-1,44.44072680604052,0,0,0,45,1,4,1,2,3,2019,1,2,12,0,37,0,15,1,0,1,0,34.22118435457313,34.22118435457313,0,0,0,0,0,0,0,0,0,0,0,6.988713793215292,0,0,43.63,57.36,6,3,0,0,4,5,1,942.3333333333334,0,0,0 +15673,19197,35000,34999,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,4,8.496436594002946,8.648092835174241,0,2,0,-9,13,0,1,57.79944169205186,-9,0,0,44,1,5,1,2,1,2019,1,1,8,0,39,0,15,1,0,1,0,20.32679594824013,20.32679594824013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,4,5,1,942.3333333333334,0,0,0 +15673,19197,35001,-9,35000,34999,3,1,1,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-961.1092997307517,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,5,2,0,0,4,5,1,942.3333333333334,0,0,0 +15674,19198,35002,35003,-9,-9,1,1,1,64,1,0,0,0,2,-9,4,3,0,4,0,7.624205031825047,7.604644535189077,1,0,-9,2,0,10,-50.98870332815076,0,0,0,54,2,3,1,2,2,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.458636210351614,7.50721521685801,0,0,48.87,58.55,6,1,0,0,7,4,1,318,0,0,0 +15674,19198,35003,35002,-9,-9,2,1,0,54,1,0,0,0,2,-9,1,1,0,3,7.893133937529417,8.088794541902097,0,1,0,-9,2,0,-10,-86.05703712829963,0,0,0,64,2,4,3,2,2,2019,2,1,10,0,16,20,15,1,0,4,0,19.82108176284761,19.82108176284761,0,0,0,0,0,0,0,0,0,0,0,0,7.832090101913767,3,51.94,55.88,5,1,0,0,7,4,1,318,0,0,0 +15675,19199,35004,35005,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,4,8.671972353627664,8.578627243110638,0,2,0,-9,8,0,14,-27.7068803849101,0,0,0,38,1,4,1,-9,-9,2019,1,1,12,0,37,37,15,1,0,1,0,18.46133136595106,18.46133136595106,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,54.24,6,1,0,0,4,5,1,614.5,0,0,0 +15675,19199,35005,35004,-9,-9,1,1,0,38,1,0,2,0,1,-9,2,1,0,4,8.492021874037956,8.500533516736096,0,2,0,-9,8,0,-14,-52.41685363641704,0,0,1,52,1,4,1,1,2,2019,1,2,12,0,28,24,15,1,0,1,0,15.65110138815889,15.65110138815889,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,7,1,0,0,4,5,1,614.5,0,0,0 +15675,19199,35006,-9,35005,35004,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.565310162276,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,4,5,1,614.5,0,0,0 +15675,19199,35007,-9,35005,35004,5,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.0271216803617,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,4,5,1,614.5,0,0,0 +15676,19200,35008,-9,-9,-9,1,1,1,67,3,0,0,0,1,-9,1,1,0,3,7.924216392232462,8.732919498515026,6.722645593998413,3,0,0,0,-9,0,-945.0326114624244,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,20,16,15,1,0,-9,0,21.62295918781961,21.62295918781961,0,0,0,0,0,0,0,1,1,0,7.875247043519513,0,0,0,58.22,40.76,6,1,0,0,2,4,1,328,0,0,0 +15677,19201,35009,-9,-9,-9,1,1,0,37,2,0,1,0,2,-9,2,1,0,3,8.116588644546013,8.183420315715109,5.753755688550131,4,0,0,0,-9,0,-1045.922326730438,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,47,35,15,1,0,-9,0,6.819833697336983,6.819833697336983,0,0,0,0,0,0,0,1,1,0,5.243946372519908,0,0,0,52.54,48.71,3,1,0,1,7,3,0,134,0,0,0 +15678,19202,35010,35013,-9,-9,2,1,0,29,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,-13,-85.36164220894452,0,1,1,42,3,3,1,-9,-9,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,5,0,0,6,3,0,1003.8,0,0,0 +15678,19202,35011,-9,35010,35013,4,1,1,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-945.3175269148406,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,6,3,0,1003.8,0,0,0 +15678,19202,35012,-9,35010,35013,3,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1023.024404736086,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,5,0,0,6,3,0,1003.8,0,0,0 +15678,19202,35013,35010,-9,-9,1,1,1,42,1,1,3,0,3,-9,2,1,0,3,8.294106440328175,8.038025061561108,0,2,0,-9,12,0,13,24.41371421478236,0,0,0,29,2,4,3,3,2,2019,2,2,21,9,24,60,15,1,9,3,0,19.42924725244447,19.42924725244447,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.96,46.57,4,5,0,1,6,3,0,1003.8,0,0,0 +15678,19202,35014,-9,35010,35013,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1049.111295734652,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,5,0,0,6,3,0,1003.8,0,0,0 +15679,19203,35015,-9,35018,35017,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1001.262984353803,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,2,0,0,9,4,1,586.25,0,0,0 +15679,19203,35016,-9,35018,35017,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-841.0701406855109,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,586.25,0,0,0 +15679,19203,35017,35018,-9,-9,2,1,1,53,1,1,2,0,3,-9,2,1,0,2,8.458629673192204,8.47475359803139,0,2,0,-9,18,0,9,36.9614150475133,0,0,0,44,2,3,1,3,3,2019,1,1,27,11,66,103,15,1,11,1,0,10.71874532535964,10.71874532535964,0,0,0,0,0,0,0,1,1,0,.4827603159853789,0,0,0,26.76,55.84,3,1,0,0,9,4,1,586.25,0,0,0 +15679,19203,35018,35017,-9,-9,1,1,0,44,1,1,2,0,2,-9,1,1,0,3,7.955798150967782,8.018041399666789,0,2,0,-9,18,0,0,56.5772444430032,0,0,1,53,3,2,1,1,1,2019,1,2,7,1,25,25,15,1,1,1,0,14.07328818444807,14.07328818444807,0,0,0,0,0,0,0,1,1,0,0,0,8.436717835723202,3,52,54.51,6,2,0,0,9,4,1,586.25,0,0,0 +15680,19204,35019,-9,35020,35021,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-869.9480618004083,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,11,4,1,1044.25,0,0,0 +15680,19204,35020,35021,-9,-9,1,1,0,38,1,0,2,0,2,-9,2,1,0,4,8.129518927809594,8.442246385400216,0,2,0,-9,21,0,-4,-61.49897518033329,0,0,1,42,1,3,1,2,2,2019,1,2,7,1,30,35,15,1,1,1,0,11.69555286787125,11.69555286787125,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.14,46.44,6,3,0,0,11,4,1,1044.25,0,0,0 +15680,19204,35021,35020,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,3,8.199707102738428,7.978680246509526,0,2,0,-9,21,0,4,-48.02730984154206,0,0,0,38,2,4,1,-9,-9,2019,1,1,12,0,54,60,15,1,0,1,0,7.459790368423934,7.459790368423934,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.41,42.78,2,3,0,0,11,4,1,1044.25,0,0,0 +15680,19204,35022,-9,35020,35021,3,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-940.7065623813677,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.97,46.18,6,3,0,0,11,4,1,1044.25,0,0,0 +15681,19205,35023,35025,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,9.338862120060503,9.448578846608727,0,2,0,-9,10,0,-2,18.75657239579944,0,0,1,43,1,3,1,2,1,2019,1,2,11,0,40,40,15,1,0,1,0,31.51767591907884,31.51767591907884,0,0,0,0,0,0,0,1,1,0,0,0,5.644917452866696,3,43.32,63.94,5,1,0,0,6,5,1,828.5,0,0,0 +15681,19205,35024,-9,35023,35025,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.251678003314,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,6,5,1,828.5,0,0,0 +15681,19205,35025,35023,-9,-9,2,1,1,43,1,0,2,0,1,-9,1,1,0,3,8.909617591421759,9.293913429398728,0,2,0,-9,10,0,2,-15.03279624141301,0,0,0,41,1,5,1,2,2,2019,1,1,11,0,25,25,15,1,0,1,0,33.57337381483546,33.57337381483546,0,0,0,0,0,0,0,1,1,0,9.960090262422103,0,0,0,46.99,51.26,6,1,0,0,6,5,1,828.5,0,0,0 +15681,19205,35026,-9,35023,35025,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.863827101304,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,828.5,0,0,0 +15682,19206,35027,35028,-9,-9,2,1,1,64,1,0,0,0,3,-9,1,1,0,3,6.351187267500027,6.816718196893833,0,1,0,-9,45,0,-4,29.62039414136013,-9,0,0,68,2,3,3,-9,3,2019,2,1,11,0,35,0,15,1,0,4,0,1.800451164765874,1.800451164765874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.05,36.56,7,1,0,0,9,2,1,1293,0,0,0 +15682,19206,35028,35027,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,5.587664746238925,5.769660794804358,1,0,-9,46,0,4,-28.89998098715044,-9,0,0,64,3,3,1,3,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.790238968335044,0,0,49.54,53.32,6,1,0,0,9,2,1,1293,0,0,0 +15683,19207,35029,35030,-9,-9,1,1,0,68,1,0,0,0,3,-9,2,1,0,3,5.126045174100615,5.292357259644008,0,1,0,-9,47,0,-2,-59.90994788943099,0,0,0,70,3,4,1,3,2,2019,1,2,8,0,10,12,15,1,0,1,0,1.761756327069894,1.761756327069894,0,0,0,0,0,0,0,1,1,0,5.019112164059004,0,0,3,54.37,54.8,6,1,0,0,9,3,1,596.5,0,0,0 +15683,19207,35030,35029,-9,-9,2,1,1,70,1,0,0,0,3,-9,2,1,0,4,6.889525359196951,8.002033161172795,7.253149699403941,1,0,-9,47,0,2,20.25790441768204,0,0,0,68,3,3,1,-9,-9,2019,1,1,8,0,26,28,15,1,0,1,0,5.980937327866574,5.980937327866574,1,0,0,0,0,0,0,1,1,0,4.544042180828165,7.467111646713273,4.706294174456516,3,54.79,55.86,6,1,0,0,9,3,1,596.5,0,0,0 +15684,19208,35031,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,1,0,7.386063901785024,7.241120054650229,3,0,-9,0,1,0,-961.2734232874624,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,6,0,0,15,4,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.667555439041507,0,0,41.51,36.41,4,1,0,1,9,3,1,665,0,0,0 +15685,19209,35032,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,1,1,0,2,8.108106849868868,7.893589724818753,0,3,0,0,0,-9,0,-1058.81896675329,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,45,40,15,1,0,-9,0,6.809800815430345,6.809800815430345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.12,47.12,5,1,0,0,5,3,0,498,0,0,0 +15686,19210,35033,35037,-9,-9,2,1,0,42,1,0,6,0,1,-9,2,1,0,3,7.150064849526115,7.20413966351363,0,2,0,-9,17,0,-4,-115.1962781603771,0,0,1,46,2,4,1,2,2,2019,1,1,9,3,16,16,15,1,3,1,0,10.30911543408549,10.30911543408549,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,50,2,4,0,1,8,2,0,812.2857142857143,0,0,0 +15686,19210,35034,-9,35033,35037,8,1,1,7,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.367780250259,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,2,0,812.2857142857143,0,0,0 +15686,19210,35035,-9,35033,35037,5,1,1,11,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1058.920235538276,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,4,0,0,8,2,0,812.2857142857143,0,0,0 +15686,19210,35036,-9,35033,35037,4,1,0,16,2,0,6,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-940.0267684564028,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,5,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,4,0,0,8,2,0,812.2857142857143,0,0,0 +15686,19210,35037,35033,-9,-9,1,1,1,46,1,0,6,0,2,-9,1,1,0,4,0,0,0,2,0,-9,18,0,4,59.14117409798946,0,0,0,42,1,3,1,3,3,2019,1,2,12,0,12,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.51,40.54,4,4,0,0,8,2,0,812.2857142857143,0,0,0 +15686,19210,35038,-9,35033,35037,3,1,0,13,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-937.7329057576706,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,2,0,812.2857142857143,0,0,0 +15686,19210,35039,-9,35033,35037,7,1,1,4,2,0,6,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1085.442940267342,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,8,2,0,812.2857142857143,0,0,0 +15686,19211,35040,-9,35033,35037,6,1,1,18,2,0,6,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1017.059187193638,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,4,0,0,8,2,0,677,0,0,0 +15687,19212,35041,-9,-9,-9,1,1,0,82,3,0,0,0,2,-9,4,3,0,4,0,7.60049707830417,7.519683491200147,3,0,0,0,-9,0,-949.4638729826014,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.062821302651467,7.415593867619823,8.563883402030051,3,52.23,55.6,6,1,0,0,9,3,1,201,0,0,0 +15688,19213,35042,35043,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,1,8.942616196630899,8.978476452588108,0,1,0,-9,9,0,21,-30.13713408580166,0,0,0,51,1,5,1,-9,3,2019,3,2,11,2,40,48,15,4,2,1,0,0,0,1,0,14.01888171943255,0,0,0,0,1,1,0,0,0,0,0,51.78,25.17,5,1,0,0,7,5,1,1099,0,0,0 +15688,19213,35043,35042,-9,-9,2,1,0,51,1,0,0,0,1,-9,2,1,0,5,8.874325705735695,8.726749205967739,0,1,0,-9,9,0,-21,10.56597438521762,0,0,0,72,1,1,3,-9,-9,2019,2,1,7,0,40,0,15,1,0,4,0,14.06322953834334,14.06322953834334,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,7,5,1,1099,0,0,0 +15689,19214,35044,35045,-9,-9,2,1,0,32,1,1,2,0,1,-9,5,1,0,4,7.532121887468437,7.612339808189628,0,2,0,-9,9,0,0,17.88826413556091,0,0,1,41,2,5,1,2,2,2019,1,1,6,0,19,22,15,1,0,1,0,14.38524751897197,14.38524751897197,0,0,0,0,0,0,0,1,1,0,6.78597447747017,0,0,0,51.83,57.2,7,1,0,0,10,5,1,901.5,0,0,0 +15689,19214,35045,35044,-9,-9,1,1,1,41,1,1,2,0,2,-9,2,1,0,5,9.358490059230069,9.548155926412942,0,2,0,-9,9,0,9,-55.72959563868535,0,0,0,32,1,4,1,2,2,2019,1,2,7,0,38,37,15,1,0,1,0,39.61775930087718,39.61775930087718,0,0,0,0,0,0,0,1,1,0,6.534805374356015,0,0,0,57.06,57.76,2,1,0,0,10,5,1,901.5,0,0,0 +15689,19214,35046,-9,35044,35045,5,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-817.810721623605,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,5,1,901.5,0,0,0 +15689,19214,35047,-9,35044,35045,4,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1132.614019408391,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,10,5,1,901.5,0,0,0 +15689,19215,35048,-9,35044,35045,3,1,0,21,2,1,2,0,2,-9,2,1,0,3,7.895842847402382,8.156491926047385,0,4,0,0,0,-9,0,-982.3615789480971,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,17,5,40,37,15,1,5,-9,0,8.369069795369839,8.369069795369839,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.59,55.68,4,1,0,1,10,3,1,497,0,0,0 +15690,19216,35049,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,5,1,0,4,0,0,0,3,0,0,0,-9,0,-978.7539561928704,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,49,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,9,1,0,1176,0,0,0 +15691,19217,35050,35051,-9,-9,1,1,0,67,1,0,0,0,2,-9,4,3,0,2,6.06573443990791,5.943802176486771,0,1,0,-9,46,0,2,-94.9474306414869,0,0,0,65,2,4,1,3,2,2019,3,2,3,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.2,47.32,6,1,0,0,7,3,1,286,0,0,0 +15691,19217,35051,35050,-9,-9,2,1,1,65,1,0,0,0,2,-9,1,1,0,4,8.423742322100559,8.149077427470271,0,1,0,-9,46,0,-2,-50.80381208041955,0,0,0,67,2,2,3,3,3,2019,2,1,8,0,16,20,15,1,0,4,0,26.36954950367521,26.36954950367521,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,6,1,0,0,7,3,1,286,0,0,0 +15692,19218,35052,35054,-9,-9,2,1,1,56,1,0,1,0,2,-9,2,1,0,4,8.582257183177409,9.012578038622806,7.411796057822103,2,0,-9,6,0,8,59.22627989330239,0,0,0,48,2,4,1,1,1,2019,1,1,8,0,40,40,15,1,0,1,0,17.14820015324601,17.14820015324601,0,0,0,0,0,0,0,1,1,0,0,7.390112571552464,0,0,52.82,53.97,6,1,0,0,13,5,1,1286,0,0,0 +15692,19218,35053,-9,35054,35052,4,1,0,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.622692014546,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,13,5,1,1286,0,0,0 +15692,19218,35054,35052,-9,-9,1,1,0,48,1,0,1,0,2,-9,2,1,0,4,7.908798683853679,7.891736775917749,5.884131569845388,2,0,-9,6,0,-8,-46.09295200887146,0,0,0,56,2,4,1,3,3,2019,1,2,11,0,40,48,15,1,0,1,0,8.476835752718525,8.476835752718525,0,0,0,0,0,0,0,1,1,0,0,6.376395026142897,0,0,44.02,60.7,7,1,0,0,13,5,1,1286,0,0,0 +15692,19219,35055,-9,35054,35052,3,1,0,21,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1229.011494820887,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,13,1,1,611,0,0,0 +15693,19220,35056,35057,-9,-9,2,1,0,59,1,0,0,0,1,-9,4,3,0,4,0,6.645780506223383,6.550502037541587,1,0,-9,26,0,-3,14.17589052502095,0,0,0,62,1,4,3,3,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.699424577968497,6.579157276802248,0,3,48.28,60.18,6,1,0,0,10,3,1,500,0,0,0 +15693,19220,35057,35056,-9,-9,1,1,1,62,1,0,0,0,1,-9,4,3,0,4,0,7.92789817313649,7.517373722065705,1,0,-9,26,0,3,29.1699436945692,0,0,0,59,1,4,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,9.05466075135317,7.652393626094706,0,0,54.2,57.49,6,1,0,0,10,3,1,500,0,0,0 +15694,19221,35058,35059,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,3,0,6.122794995680284,6.075466690203547,1,0,-9,10,0,7,-40.4165457363411,0,0,0,61,1,4,1,2,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,6.143175486624621,5.931266140350906,0,0,47.15,56.66,5,1,0,0,11,4,1,1065.5,0,0,0 +15694,19221,35059,35058,-9,-9,2,1,0,61,1,0,0,0,1,-9,2,1,0,4,8.601690309647015,8.656687029430891,0,1,0,-9,10,0,-7,-66.73572800724625,0,0,0,68,1,3,3,2,2,2019,2,1,12,0,36,41,15,1,0,4,0,17.59774863308796,17.59774863308796,0,0,0,0,0,0,0,1,1,0,4.296160192805046,0,0,0,38.34,62.12,5,1,0,0,11,4,1,1065.5,0,0,0 +15695,19222,35060,35061,-9,-9,1,1,0,66,1,0,0,0,3,-9,2,1,0,4,7.130463931417565,6.892013437351521,0,1,0,-9,41,0,-4,-38.10751662596475,0,0,0,70,1,3,3,2,3,2019,2,2,5,0,17,17,15,1,0,4,0,8.76857071085913,8.76857071085913,1,0,0,0,0,0,0,1,1,0,3.077701600249133,0,10.63928633893774,3,57.16,56.15,6,1,0,0,9,3,1,183,0,0,0 +15695,19222,35061,35060,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,3,6.010691285276802,7.504083996164876,7.310796171534014,1,0,-9,42,0,4,-62.63372715904395,0,0,0,66,3,4,1,3,1,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.196554146095322,7.171995724599158,2.304244101075442,3,53.68,45.47,5,1,0,0,9,3,1,183,0,0,0 +15696,19223,35062,-9,-9,-9,1,1,0,22,2,0,0,0,2,0,7,2,0,4,0,5.823268746575303,5.558611375005134,3,0,0,0,-9,0,-1070.97408246933,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.263849490778306,0,0,0,43.98,52.9,5,1,0,0,10,2,0,3520,0,0,0 +15697,19224,35063,-9,35064,35066,3,1,1,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1090.427940107214,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,5,1,0,0,2,5,1,674.5,0,0,0 +15697,19224,35064,35066,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,4,9.601354838353402,9.328089428539229,0,2,0,-9,10,0,0,122.8573672498149,0,0,1,39,2,4,3,2,2,2019,2,1,5,0,42,38,15,1,0,3,0,42.27470136728179,42.27470136728179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.75,54.92,6,1,0,0,2,5,1,674.5,0,0,0 +15697,19224,35065,-9,35064,35066,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-974.2818629144904,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,2,5,1,674.5,0,0,0 +15697,19224,35066,35064,-9,-9,1,1,1,39,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,10,0,0,-27.11347030264992,0,0,0,39,1,4,1,2,2,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.52,59.9,5,1,0,0,2,5,1,674.5,0,0,0 +15698,19225,35067,35068,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,3,16.72473081959309,0,0,0,68,3,3,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.917743998835153,0,0,0,51,46,5,1,0,0,1,2,1,1013,0,0,0 +15698,19225,35068,35067,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,7.116751643038419,7.012268587677847,1,0,-9,7,0,-3,119.9657141653531,0,0,0,71,3,3,3,3,3,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.194184181283665,6.980432205605291,0,0,51.41,56.15,6,1,0,0,1,2,1,1013,0,0,0 +15699,19226,35069,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,7.523552927074488,8.051885921270587,3,0,0,0,-9,0,-948.3882093554902,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.130738545503798,7.754849746081121,0,0,57.16,56.15,6,1,0,0,12,3,1,433,0,0,0 +15700,19227,35070,35071,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,5,9.073983118554075,9.029316369003595,0,2,0,-9,6,0,-7,.3744190096786921,0,0,1,51,1,4,1,3,2,2019,1,2,8,0,40,0,15,1,0,1,0,23.37167948276049,23.37167948276049,0,0,0,0,0,0,0,1,1,0,2.944156300326281,0,0,0,54.1,59.11,6,1,0,0,9,5,1,375.6666666666667,0,0,0 +15700,19227,35071,35070,-9,-9,2,1,1,51,1,0,1,0,1,-9,2,1,0,4,9.06146809422015,8.939363887913206,0,2,0,-9,6,0,7,79.48796782754165,0,0,0,44,1,5,1,3,3,2019,1,1,14,3,47,0,15,1,3,1,0,24.78970662988725,24.78970662988725,0,0,0,0,0,0,0,1,1,0,2.320798688997453,0,0,0,54.2,57.49,6,1,0,0,9,5,1,375.6666666666667,0,0,0 +15700,19227,35072,-9,35070,35071,4,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,3.758053518632777,4.053537104248931,2,0,0,0,-9,0,-951.5022106937827,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.146210470055297,0,0,0,57.09,43.99,6,1,0,0,9,5,1,375.6666666666667,0,0,0 +15700,19228,35073,-9,35070,35071,3,1,0,18,2,0,1,0,2,1,2,1,0,5,7.47277181935499,7.367162622116859,0,3,0,0,0,-9,0,-1046.280097365326,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,4,1,24,0,15,1,1,-9,1,6.90002326398228,6.90002326398228,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,60.74,7,1,0,0,9,3,1,1366,0,0,0 +15701,19229,35074,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,2,1,0,2,8.279396247216193,8.733401515646845,0,3,0,0,0,-9,0,-1032.098535993655,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,55,57,15,1,7,-9,0,8.97425101066451,8.97425101066451,0,0,0,0,0,0,0,1,1,0,3.831488865610228,0,16.03023101076071,3,35.47,39.39,3,2,0,0,6,4,1,3807,0,0,0 +15702,19230,35075,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,8.509893524785562,8.373114324624474,4.247941431612698,3,0,-9,0,-9,0,-819.6287808282178,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,28,0,15,1,0,-9,0,18.5512678398206,18.5512678398206,0,0,0,0,0,0,0,1,1,0,4.805099849887667,4.398255494757162,0,0,54.2,57.49,7,1,0,0,5,5,1,414,0,0,0 +15703,19231,35076,35079,-9,-9,2,1,1,50,1,0,2,0,1,-9,2,1,0,3,8.892414691522616,8.895373729113462,0,2,0,-9,8,0,14,17.75675535827206,0,0,0,36,1,4,1,-9,-9,2019,1,1,9,0,46,49,15,1,0,1,0,19.00131852753641,19.00131852753641,0,0,0,0,0,0,0,1,1,0,3.874153178643279,0,0,0,50.42,41.42,6,1,0,0,5,5,1,858.75,0,0,0 +15703,19231,35077,-9,35079,35076,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1069.758103769324,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,858.75,0,0,0 +15703,19231,35078,-9,35079,35076,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1052.09965573589,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,5,1,858.75,0,0,0 +15703,19231,35079,35076,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.518281125679213,8.552821639877829,0,2,0,-9,8,0,-14,89.19666451032111,0,0,1,50,1,3,1,1,2,2019,1,2,6,0,30,24,15,1,0,1,0,17.00049882822639,17.00049882822639,0,0,0,0,0,0,0,1,1,0,1.695527807483491,0,0,0,59.29,49.68,7,1,0,0,5,5,1,858.75,0,0,0 +15704,19232,35080,35081,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,3,0,6.911893587826558,6.460528061453047,1,0,-9,40,0,-1,-81.65283522677703,0,0,0,62,2,3,1,3,3,2019,3,2,14,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8682030857127538,6.398909490834757,0,0,46.08,57.2,4,1,0,0,2,4,1,382,0,0,0 +15704,19232,35081,35080,-9,-9,2,1,1,62,1,0,0,0,2,-9,2,1,0,3,8.536107965519925,8.400841243239919,0,1,0,-9,40,0,1,148.2185385440575,0,0,0,61,2,3,3,3,3,2019,2,1,9,0,40,43,15,1,0,4,0,19.97114570387706,19.97114570387706,0,0,0,0,0,0,0,0,0,0,.7628348686178785,0,0,0,54.96,53.17,4,1,0,0,2,4,1,382,0,0,0 +15705,19233,35082,-9,35084,35083,1,1,0,41,3,0,0,0,1,-9,1,1,0,3,7.212771130158199,7.496523776351253,0,3,0,0,0,-9,0,-996.5684508422706,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,12,3,40,40,15,1,3,-9,1,3.99971182347706,3.99971182347706,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,51.24,6,1,0,0,10,3,1,258,0,0,0 +15705,19234,35083,35084,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,1,0,6.132714472972181,5.720962321151272,1,0,-9,2,0,7,103.4177691532125,0,0,0,67,2,2,3,-9,-9,2019,4,3,21,8,0,0,15,4,8,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.61584892411742,6.464054038653646,0,3,15.15,48.8,3,1,0,0,10,2,1,321,0,0,0 +15705,19234,35084,35083,35085,-9,3,1,0,67,1,0,0,0,2,-9,4,3,0,2,0,6.896342797695991,6.765728177954485,1,0,-9,2,0,-7,7.892918173782533,0,0,0,74,2,1,3,3,-9,2019,4,2,24,12,0,15,15,4,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.748203849778738,6.574090825219681,47.92024944042331,3,33.07,44.65,3,1,0,0,10,2,1,321,0,0,0 +15705,19235,35085,-9,-9,-9,4,1,0,95,3,0,0,0,3,-9,4,3,0,3,0,4.119886211764942,4.108770945378472,3,0,0,0,-9,0,-1019.347919806195,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,15.86995126136673,0,0,0,1,1,0,2.807892541928781,3.983579907782859,0,0,47.37,38.69,6,1,0,0,10,1,1,1949,0,0,0 +15706,19236,35086,-9,-9,-9,1,1,0,83,3,0,0,0,3,-9,4,3,0,3,0,5.370489435069861,5.310094345984791,3,0,0,0,-9,0,-1092.175571421022,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.879490726118002,5.334134603648199,0,0,66.38,32.82,6,1,0,0,10,2,1,1039,0,0,0 +15707,19237,35087,-9,-9,-9,1,1,0,79,3,0,1,0,3,-9,4,3,0,3,0,6.205344832373583,6.119560436645042,4,0,0,0,-9,0,-922.976278945581,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,127.2516960923621,0,129.1982199540779,0,1,1,0,0,6.403119118240338,0,0,52,46,6,1,0,0,2,2,1,569,0,0,0 +15707,19238,35088,-9,35087,-9,2,1,0,51,3,0,1,0,2,-9,2,1,0,2,7.79573312484048,8.015402813108624,0,3,0,0,0,-9,0,-1012.125540907938,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,40,40,15,1,0,-9,1,9.51827669188282,9.51827669188282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,4,1,0,0,2,4,1,615,0,0,0 +15707,19238,35089,-9,35088,-9,3,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,3,0,0,0,-9,0,-1040.847915008192,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,2,4,1,615,0,0,0 +15708,19239,35090,-9,-9,-9,1,1,0,69,3,0,0,0,3,-9,4,3,0,4,0,6.663072800866837,6.343322953040146,3,0,0,0,-9,0,-829.1282892854919,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.280344326983885,6.650328456963162,32.48164501479538,3,54.34,50.92,1,1,0,0,6,2,1,754,0,0,0 +15709,19240,35091,-9,35092,35093,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.1515345581823,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,3,0,0,8,5,0,1208,0,0,0 +15709,19240,35092,35093,-9,-9,2,1,0,39,1,0,2,0,1,-9,3,3,0,4,0,0,0,2,0,-9,4,0,-7,-78.02009980916259,0,0,1,46,1,4,1,-9,-9,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,6,3,1,0,8,5,0,1208,0,0,0 +15709,19240,35093,35092,-9,-9,1,1,1,46,1,0,2,0,1,-9,2,1,0,4,9.620230907716678,9.853419682744027,0,2,0,-9,4,0,7,36.19363900669567,0,0,0,39,1,4,3,3,3,2019,2,2,6,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,7,3,0,0,8,5,0,1208,0,0,0 +15710,19241,35094,35095,-9,-9,2,1,1,43,1,1,2,0,2,-9,2,1,0,4,8.64727040149366,8.645216257223321,0,2,0,-9,5,-9,8,129.8730390261058,-9,0,0,35,1,2,1,2,1,2019,1,1,10,0,38,0,15,1,0,1,0,16.72324161247126,16.72324161247126,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,5,1,0,1,12,4,1,428.75,0,0,0 +15710,19241,35095,35094,-9,-9,1,1,0,35,1,1,2,0,1,-9,2,1,0,2,8.219624334875908,8.495196594473819,0,2,0,-9,7,-9,-8,-13.67257072398818,-9,0,1,43,2,4,1,3,3,2019,1,2,25,12,30,0,15,1,12,1,0,15.28351901006118,15.28351901006118,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.76,52.45,3,1,0,1,12,4,1,428.75,0,0,0 +15710,19241,35096,-9,35095,35094,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1047.018560153117,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,428.75,0,0,0 +15710,19241,35097,-9,35095,35094,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1005.652360616232,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,4,1,428.75,0,0,0 +15711,19242,35098,-9,-9,-9,1,1,0,77,3,0,0,0,3,-9,4,3,0,4,0,5.769422414240963,5.981573850357876,3,0,0,0,-9,0,-1153.348855777754,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.085809389575876,0,3,57.76,54.51,7,1,0,0,9,2,0,530,0,0,0 +15712,19243,35099,-9,-9,-9,1,1,0,40,3,0,2,0,2,-9,2,1,0,4,9.08206088953602,8.727905770394512,0,4,0,0,0,-9,0,-1080.956335923774,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,45,48,15,1,0,-9,0,20.08299266247109,20.08299266247109,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,4,1,0,0,4,5,0,588,0,0,0 +15712,19243,35100,-9,35099,-9,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1230.19398266051,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,4,5,0,588,0,0,0 +15713,19244,35101,35102,-9,-9,2,1,1,55,1,0,0,0,1,-9,2,1,0,2,8.295123169065061,7.991689345445845,0,1,0,-9,30,0,1,-113.4421227642386,-9,0,0,54,1,3,1,2,3,2019,1,1,20,9,42,0,15,1,9,1,0,12.44533660957025,12.44533660957025,0,0,0,0,0,0,0,0,0,0,7.115581587755746,0,0,0,44.46,52.89,3,4,0,0,5,5,1,979.5,0,0,0 +15713,19244,35102,35101,-9,-9,1,1,0,54,1,0,0,0,1,-9,2,1,0,3,9.356665404132766,9.483780176458191,0,1,0,-9,32,0,-1,75.53997487013017,0,0,0,55,1,2,1,2,2,2019,1,2,19,7,50,50,15,1,7,1,0,34.31046183888115,34.31046183888115,0,0,0,0,0,0,0,0,0,0,2.475277896410315,0,11.07860681270643,3,31.46,57.32,2,1,0,0,5,5,1,979.5,0,0,0 +15713,19245,35103,-9,35102,35101,3,1,1,23,2,0,0,1,1,0,7,2,0,3,6.106570370048475,6.257387099120329,0,3,0,0,0,-9,0,-1002.754305168473,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,21,7,6,0,15,2,7,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.5287651227358259,0,0,0,35.32,58.41,2,2,0,1,5,2,1,1100,0,0,0 +15714,19246,35104,35105,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,5,0,6.428015218193297,6.742365624906434,1,0,-9,51,0,-3,183.5899037550122,0,0,0,80,3,3,3,3,3,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.951188767022298,6.454556655052579,0,0,63.38,53.47,6,1,0,0,7,2,1,638.5,0,0,0 +15714,19246,35105,35104,-9,-9,2,1,0,80,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,51,0,3,-51.24014037468828,0,0,0,77,1,5,3,2,1,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,7,2,1,638.5,0,0,0 +15715,19247,35106,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1078.516974116105,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,55.60890728819287,1,1,0,0,0,0,0,48.66,38.36,5,1,0,0,8,1,0,145,0,0,0 +15716,19248,35107,35109,-9,-9,1,1,1,50,1,0,1,0,2,-9,2,1,0,3,7.924143087276292,7.87899434834359,0,2,0,-9,6,0,5,-32.57168581707924,0,0,0,45,2,5,1,2,-9,2019,1,2,12,0,37,0,15,1,0,1,0,10.59246026072712,10.59246026072712,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,6,1,0,0,11,4,1,535.6666666666666,0,0,0 +15716,19248,35108,-9,35109,35107,4,1,1,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.299544829081,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,11,4,1,535.6666666666666,0,0,0 +15716,19248,35109,35107,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,5,8.820800360579574,8.34083617077426,0,2,0,-9,6,0,-5,-28.74385386718991,0,0,0,50,2,3,1,2,2,2019,1,1,11,1,41,0,15,1,1,1,0,15.75465090943581,15.75465090943581,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.24,63.73,6,1,0,0,11,4,1,535.6666666666666,0,0,0 +15716,19249,35110,-9,35109,35107,3,1,0,21,2,0,1,0,2,-9,2,1,0,4,7.186634723942517,7.112338373180439,0,3,0,0,0,-9,0,-1030.549915537955,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,8,0,27,0,15,1,0,-9,1,6.92236865464271,6.92236865464271,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.73,53.98,6,1,0,0,11,2,1,1856,0,0,0 +15717,19250,35111,35112,-9,-9,1,1,1,35,1,0,0,0,2,-9,2,1,0,3,8.520344472378833,8.285571056046997,0,1,0,-9,1,-9,8,51.01625144122918,-9,0,0,27,2,3,1,3,-9,2019,1,2,13,3,80,0,15,1,3,1,0,6.735585859207601,6.735585859207601,0,0,0,0,0,0,0,0,0,0,6.675626018191208,0,0,0,48.69,41.09,5,1,0,1,8,5,0,298,0,0,0 +15717,19250,35112,35111,-9,-9,2,1,0,27,1,0,0,0,2,-9,2,1,0,3,8.937197544913197,8.691051307963203,0,1,0,-9,1,-9,-8,-15.55161224061897,-9,1,1,35,2,3,1,-9,-9,2019,1,1,12,2,43,0,15,1,2,1,0,15.9230378675244,15.9230378675244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,6,2,0,0,8,5,0,298,0,0,0 +15718,19251,35113,35114,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,4,0,5.035649776836439,5.461868062445907,1,0,-9,53,0,-3,142.6422336509227,0,0,0,75,2,3,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.326806665134037,0,0,62.58,34.42,1,1,0,0,11,2,1,791.5,0,0,0 +15718,19251,35114,35113,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,5.295568554228802,5.263715842432492,1,0,-9,53,0,3,-49.75836839424021,0,0,0,72,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.078774394432091,0,0,58.47,50.22,6,1,0,0,11,2,1,791.5,0,0,0 +15719,19252,35115,35116,-9,-9,2,1,1,47,1,0,0,0,3,-9,2,1,0,3,7.188421916530825,7.444114018296887,0,1,0,-9,10,0,-13,-40.66920169296359,0,0,0,60,3,1,1,3,3,2019,1,1,12,2,35,35,15,1,2,1,0,5.826822527119841,5.826822527119841,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,51,2,4,0,0,6,3,0,1562.5,0,0,0 +15719,19252,35116,35115,-9,-9,1,1,0,60,1,0,0,0,3,-9,2,1,0,1,7.380674145353348,7.554030694269245,0,1,0,-9,11,0,13,68.30642080610734,0,0,0,47,3,3,1,3,3,2019,1,2,18,6,25,20,15,1,6,1,0,6.195398041452798,6.195398041452798,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.32,23.88,1,1,0,1,6,3,0,1562.5,0,0,0 +15720,19253,35117,35118,-9,-9,1,1,1,58,1,0,0,0,2,-9,1,1,0,4,9.836944839808737,9.834809365456241,0,1,0,-9,6,0,1,11.8090867217605,0,0,0,57,2,3,3,-9,-9,2019,2,2,8,0,40,40,15,1,0,3,0,45.13253868549517,45.13253868549517,0,0,0,0,0,0,0,1,1,0,8.454365025913175,0,0,0,54,54,6,1,0,0,12,5,1,2061.5,0,0,0 +15720,19253,35118,35117,-9,-9,2,1,0,57,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,6,0,-1,-200.998691278283,0,0,0,58,2,4,1,2,2,2019,3,1,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.06,37.97,5,1,1,0,12,5,1,2061.5,0,0,0 +15720,19254,35119,-9,35118,35117,3,1,0,21,2,0,0,0,2,1,2,1,0,4,7.639137716005814,7.885006543199737,0,3,0,0,0,-9,0,-1053.208617992341,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,16,0,15,1,2,-9,1,19.45373768142643,19.45373768142643,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,12,3,1,292,0,0,0 +15721,19255,35120,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,2,1,0,3,7.626493233633845,8.823507494398827,8.491083838446627,3,0,0,0,-9,0,-967.0287135792449,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,5,0,20,0,15,1,0,-9,0,11.6910943162299,11.6910943162299,0,0,0,0,0,0,0,0,0,0,1.821160312493512,7.967266814113419,0,0,57.33,53.46,6,1,0,0,2,5,1,352,0,0,0 +15722,19256,35121,35123,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,3,8.779175191599117,8.996689270321131,0,2,0,-9,15,0,-5,-20.45791959942351,0,0,0,49,2,4,1,2,2,2019,1,2,9,0,45,51,15,1,0,1,0,20.22281660783935,20.22281660783935,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.98,48.01,7,1,0,0,8,5,1,681.3333333333334,0,0,0 +15722,19256,35122,-9,35123,35121,3,1,0,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-898.1678792984688,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,8,5,1,681.3333333333334,0,0,0 +15722,19256,35123,35121,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,4,8.109281878668259,8.148768883128373,0,2,0,-9,15,0,5,51.58704481543712,0,0,0,44,1,3,1,-9,2,2019,1,1,11,0,31,35,15,1,0,1,0,13.16121610311283,13.16121610311283,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,6,1,0,0,8,5,1,681.3333333333334,0,0,0 +15723,19257,35124,35126,-9,-9,2,1,0,46,1,0,3,0,1,-9,2,1,0,3,7.746893873052815,7.722327000427475,0,2,0,-9,8,0,-2,62.75589766283275,0,0,0,48,2,4,1,-9,-9,2019,1,1,12,0,28,28,15,1,0,1,0,8.228070953217768,8.228070953217768,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.81,54.48,4,1,0,0,13,3,1,451.75,0,0,0 +15723,19257,35125,-9,35124,35126,5,1,0,12,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1158.173803850616,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,13,3,1,451.75,0,0,0 +15723,19257,35126,35124,-9,-9,1,1,1,48,1,0,3,0,2,-9,1,1,0,4,8.258229192724322,8.43216305120041,0,2,0,-9,8,0,2,-7.252023480285957,0,0,0,46,1,3,1,2,2,2019,1,2,8,0,50,50,15,1,0,1,0,9.243684716059438,9.243684716059438,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,13,3,1,451.75,0,0,0 +15723,19257,35127,-9,35124,35126,4,1,1,14,2,0,3,1,3,-9,-9,2,0,1,0,0,0,2,0,0,0,-9,0,-888.9264366662173,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,20,0,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,3,1,0,0,13,3,1,451.75,0,0,0 +15723,19258,35128,-9,35124,35126,3,1,1,18,2,0,3,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1019.732425949893,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,17,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.7,60.37,2,1,0,0,13,3,1,727,0,0,0 +15724,19259,35129,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,2,1,0,4,7.574669791804975,7.712741962522547,0,3,0,0,0,-9,0,-914.2261498938899,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,30,30,15,1,1,-9,0,7.579507198186088,7.579507198186088,0,0,0,0,0,0,0,1,1,0,1.874093835023951,0,0,0,46.62,54.07,6,1,0,0,13,3,1,321,0,0,0 +15724,19260,35130,-9,35129,-9,2,1,1,26,2,0,0,0,1,-9,2,1,0,2,7.682199480040695,7.938322287884572,0,3,0,0,0,-9,0,-1043.723214017432,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,18,8,44,0,15,1,8,-9,1,7.550276583050048,7.550276583050048,0,0,0,0,0,0,0,1,1,0,2.909154262243632,0,0,0,32.77,51.68,4,1,0,0,13,4,1,568,0,0,0 +15725,19261,35131,35132,-9,-9,2,1,1,41,1,0,0,0,2,-9,2,1,0,4,8.66696768124503,8.983937580177274,0,1,0,-9,9,0,12,271.3025429291122,0,0,0,29,1,4,1,2,2,2019,1,1,7,0,45,44,15,1,0,1,0,15.0799903625588,15.0799903625588,0,0,0,0,0,0,0,0,0,0,4.443520880210448,0,0,0,60.52,53.2,5,1,0,0,10,5,1,562,0,0,0 +15725,19261,35132,35131,-9,-9,1,1,0,29,1,0,0,0,1,-9,1,1,0,4,9.506648562228987,9.542854599543217,0,1,0,-9,9,0,-12,23.72882189285065,0,1,1,41,2,4,1,3,2,2019,1,2,1,0,0,25,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.437661676124975,3,58.15,52.91,5,1,0,0,10,5,1,562,0,0,0 +15726,19262,35133,-9,35134,35136,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1039.584994627246,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,2,5,1,603.5,0,0,0 +15726,19262,35134,35136,-9,-9,2,1,0,40,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,17,0,-1,71.30355171805537,0,0,1,41,1,4,1,3,3,2019,3,1,12,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.487973904800972,0,0,0,49.47,51.38,6,1,0,0,2,5,1,603.5,0,0,0 +15726,19262,35135,-9,35134,35136,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.5537614737837,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,2,5,1,603.5,0,0,0 +15726,19262,35136,35134,-9,-9,1,1,1,41,1,1,2,0,1,-9,2,1,0,4,9.729073422384278,9.480722961584345,0,2,0,-9,17,0,1,68.75535639189474,0,0,0,40,1,4,3,2,3,2019,2,2,4,0,60,60,15,1,0,3,0,25.98913480994042,25.98913480994042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,2,5,1,603.5,0,0,0 +15727,19263,35137,35138,-9,-9,2,1,0,49,1,0,1,0,2,-9,2,1,0,4,8.090763774815841,8.397279423936794,0,2,0,-9,7,0,-2,83.42824047991382,0,0,0,51,3,3,1,-9,-9,2019,1,1,9,0,37,37,15,1,0,1,0,8.581584320118326,8.581584320118326,0,0,0,0,0,0,0,1,1,0,3.389938278875074,0,0,0,57.16,56.15,6,1,0,0,11,4,1,402.5,0,0,0 +15727,19263,35138,35137,-9,-9,1,1,1,51,1,0,1,0,3,-9,2,1,0,3,8.200460267600398,8.035847354933368,0,2,0,-9,7,0,2,-58.38373562465722,0,0,0,49,2,4,1,-9,-9,2019,1,2,12,0,40,40,15,1,0,1,0,7.953443344453691,7.953443344453691,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,5,1,0,0,11,4,1,402.5,0,0,0 +15727,19264,35139,-9,35137,35138,4,1,1,18,2,0,1,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1008.859146628991,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.12,58.81,4,1,1,0,11,4,1,375,0,0,0 +15728,19265,35140,35141,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,5,7.619120492110154,8.211646801012215,7.866765763457015,1,0,-9,35,0,1,-15.59480468804644,0,0,0,54,3,4,1,2,1,2019,1,2,8,0,30,32,15,1,0,1,0,7.008851143505403,7.008851143505403,0,0,0,0,0,0,0,0,0,0,0,8.056929800355375,0,3,57.06,57.76,6,1,0,0,2,5,1,255.5,0,0,0 +15728,19265,35141,35140,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,4,8.323361628858954,8.002612457395257,0,1,0,-9,35,0,-1,-17.34349316151467,0,0,0,55,1,5,1,3,3,2019,1,1,9,2,49,37,15,1,2,1,0,7.801003831271099,7.801003831271099,0,0,0,0,0,0,0,0,0,0,0,0,0,3,51.24,58.84,7,1,0,0,2,5,1,255.5,0,0,0 +15728,19266,35142,-9,35141,35140,3,1,1,20,2,0,0,0,2,-9,2,1,0,5,7.316103674818578,6.9038260508656,0,3,0,0,0,-9,0,-804.3981270388924,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,8,0,35,39,15,1,0,-9,1,4.794458231688622,4.794458231688622,0,0,0,0,0,0,0,0,0,0,2.18266743897947,0,0,0,60.02,56.42,7,1,0,0,2,3,1,402,0,0,0 +15729,19267,35143,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-959.4008225296133,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,25,10,0,0,15,3,10,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,4,1,0,0,13,1,0,987,0,0,0 +15729,19268,35144,-9,35143,-9,2,1,0,26,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-971.7358182049452,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,20,7,0,0,15,3,7,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,112.482533664329,3,30.47,60.56,5,1,1,1,13,1,0,2059,0,0,0 +15730,19269,35145,-9,-9,-9,1,1,0,19,2,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-1045.481709034453,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,35.46,34.79,6,1,0,0,13,1,0,884,0,0,0 +15730,19269,35146,-9,35145,-9,2,1,1,3,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-951.733803704045,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,1,0,884,0,0,0 +15731,19270,35147,35148,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,3,7.614533941717348,7.464024920788058,0,1,0,-9,9,0,1,-70.55415209624658,0,0,0,56,3,3,1,3,3,2019,1,2,11,0,24,0,15,1,0,1,0,6.692022000364365,6.692022000364365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.86,46.88,6,1,0,0,12,3,0,1247.5,0,0,0 +15731,19270,35148,35147,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,3,7.295312696493265,7.389128181013965,0,1,0,-9,9,0,-1,-53.67616998653338,0,0,0,57,2,3,1,3,3,2019,1,1,11,0,28,18,15,1,0,1,0,7.016744908212292,7.016744908212292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.68,51.82,6,1,0,0,12,3,0,1247.5,0,0,0 +15732,19271,35149,35150,-9,-9,1,1,0,30,1,0,0,0,1,-9,1,1,0,5,9.25112323714983,9.294261199176406,0,1,0,1,1,-9,2,-17.97327272242935,0,0,1,28,1,4,1,-9,-9,2019,1,4,10,0,50,40,15,1,0,1,0,21.32568199489192,21.32568199489192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,6,1,0,0,8,5,0,977,0,0,0 +15732,19271,35150,35149,-9,-9,4,1,1,28,1,0,0,0,1,-9,2,1,0,4,9.160775318769462,8.820052761043765,0,1,0,-9,1,-9,-2,-24.45910280434896,-9,1,0,30,1,5,1,-9,-9,2019,1,1,10,0,50,0,15,1,1,1,0,23.42361181238863,23.42361181238863,0,0,0,0,0,0,0,0,0,0,7.840538621829563,0,0,0,50,57,5,5,0,0,8,5,0,977,0,0,0 +15733,19272,35151,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,0,6.930373583559144,7.020729107515479,3,0,0,0,-9,0,-1099.734161319467,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.080993265823173,0,0,45.8,51.89,2,1,0,0,13,2,1,2062,0,0,0 +15734,19273,35152,35153,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,2,8.659063034720244,8.123358210648297,0,1,0,-9,11,0,1,-59.77718532513347,0,0,0,58,2,3,1,-9,-9,2019,1,2,5,0,37,37,15,1,0,1,0,12.24918622836181,12.24918622836181,0,0,0,0,0,0,0,0,0,0,8.324002651559178,0,0,0,61.14,35.64,5,4,0,0,8,5,1,530.5,0,0,0 +15734,19273,35153,35152,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.438956921747485,8.16556027967402,0,1,0,-9,11,0,-1,11.68467264001465,0,0,0,59,2,2,1,-9,-9,2019,1,1,6,0,35,45,15,1,0,1,0,15.53444679803965,15.53444679803965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,5,4,0,0,8,5,1,530.5,0,0,0 +15735,19274,35154,35155,-9,-9,1,1,0,56,1,0,0,0,1,-9,8,3,1,1,0,7.817328339415123,7.348798658816278,1,0,-9,7,0,-8,-77.04201412508081,0,0,0,64,1,3,1,2,2,2019,3,2,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.051819954820603,7.598070155561694,0,0,49.1,23.9,5,1,0,0,8,5,1,805.5,0,0,0 +15735,19274,35155,35154,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,3,8.826697457377847,8.806972760390906,7.077973900142353,1,0,-9,7,0,8,41.11516121241581,0,0,0,56,1,1,3,-9,-9,2019,2,1,10,0,14,12,15,1,1,3,0,48.78576584345875,48.78576584345875,0,0,0,0,0,0,0,1,1,0,.7943533645513845,7.257748616357779,0,0,52,48,5,1,0,0,8,5,1,805.5,0,0,0 +15736,19275,35156,35157,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,4,0,6.605774146606373,6.577309309950351,1,0,-9,53,0,0,-130.5358296426502,0,0,0,73,3,3,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.394420199835831,0,0,57.01,50.75,7,1,0,0,1,2,1,1141,0,0,0 +15736,19275,35157,35156,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,3,0,6.231618969579085,5.984054343949217,1,0,-9,53,0,0,14.44630375490763,0,0,0,73,2,4,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,.7343977248788709,0,0,0,0,1,1,0,6.490176570596659,6.178211048553771,0,0,50.24,37.57,6,1,0,0,1,2,1,1141,0,0,0 +15737,19276,35158,35159,-9,-9,2,1,0,55,1,0,0,0,2,-9,2,1,0,3,6.95995159063132,7.045535953014488,0,1,0,-9,8,0,-4,-1.843245367065491,0,0,0,59,2,5,3,-9,-9,2019,2,1,11,0,16,0,15,1,0,4,0,6.543587893258352,6.543587893258352,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.13,48.04,5,1,0,0,2,2,1,618,0,0,0 +15737,19276,35159,35158,-9,-9,1,1,1,59,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,8,0,4,-55.49535628820139,0,0,0,55,2,3,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.201685729706488,0,0,0,57.06,57.76,6,1,0,0,2,2,1,618,0,0,0 +15738,19277,35160,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,1,1,0,4,7.261270579274306,7.472311835663948,0,3,0,0,0,-9,0,-960.0974164496088,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,23,30,15,1,1,-9,0,8.491489067450866,8.491489067450866,0,0,0,0,0,0,0,0,0,0,4.280358942200345,0,0,0,35.63,62.19,5,1,0,0,13,3,1,277,0,0,0 +15739,19278,35161,35162,-9,-9,1,1,0,87,1,0,0,0,2,-9,4,3,0,2,0,5.920388638945682,5.353046317764356,1,0,-9,60,0,6,-30.28105702448369,0,0,0,81,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.75202764199874,0,0,35.67,36.57,3,1,0,0,2,2,1,355.5,0,0,0 +15739,19278,35162,35161,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,6.620591220657392,6.857898588271325,1,0,-9,60,0,-6,57.53908790030133,0,0,0,87,2,2,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,1,10.29175075299644,20.50402174373798,0,0,0,62.57592364966458,1,1,0,6.006483906833665,6.748913206460905,80.24807774114309,1,40.59,39.27,4,1,0,0,2,2,1,355.5,0,0,0 +15740,19279,35163,35164,-9,-9,1,1,1,49,1,0,1,0,3,-9,2,1,0,4,8.24624367264083,8.765894033508358,0,2,0,-9,26,0,4,95.50162155877231,0,0,0,45,2,4,1,2,2,2019,1,2,9,0,46,92,15,1,0,1,0,17.5739906781815,17.5739906781815,0,0,0,0,0,0,0,1,1,0,5.874335713100854,0,0,0,54.2,57.49,2,1,0,0,5,4,1,654.3333333333334,0,0,0 +15740,19279,35164,35163,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,7.544698952792661,7.395800527971456,0,2,0,-9,26,0,-4,-122.4742457807537,0,0,0,49,3,4,1,2,2,2019,1,1,14,3,19,23,15,1,3,1,0,9.999508718920435,9.999508718920435,0,0,0,0,0,0,0,1,1,0,3.322187617089962,0,0,0,48.87,58.55,6,1,0,0,5,4,1,654.3333333333334,0,0,0 +15740,19279,35165,-9,35164,35163,3,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-878.360607870905,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,5,4,1,654.3333333333334,0,0,0 +15741,19280,35166,35167,-9,-9,1,1,1,70,1,0,0,0,2,-9,4,3,0,4,0,8.527360666101025,8.246149600162106,1,0,-9,48,0,-1,-67.6752086306349,0,0,0,71,2,4,3,2,2,2019,4,2,8,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.548257618696814,8.504304334228781,0,0,68.55,33.32,6,1,0,0,9,4,1,484.5,0,0,0 +15741,19280,35167,35166,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,48,0,1,-37.67715774750452,0,0,0,70,2,4,3,3,2,2019,4,1,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.245025315695808,0,0,0,54.04,47.89,6,1,0,0,9,4,1,484.5,0,0,0 +15742,19281,35168,-9,-9,-9,1,1,0,64,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,-9,0,-9,0,-1149.025942992324,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,8,0,0,15,3,8,-9,0,0,0,1,0,0,17.38558251868461,0,0,0,1,1,0,0,0,0,0,48.67,14.09,5,1,0,0,4,1,0,66,0,0,0 +15743,19282,35169,35170,-9,-9,1,1,0,77,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,10,0,23,0,0,0,0,54,2,1,3,-9,-9,2019,4,2,6,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,57.16,56.15,6,1,0,0,4,1,0,707.5,0,0,0 +15743,19282,35170,35169,-9,-9,2,1,1,54,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,10,0,-23,0,0,0,0,77,3,4,3,-9,-9,2019,4,1,15,3,0,0,15,3,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.17,33.92,4,1,0,0,4,1,0,707.5,0,0,0 +15744,19283,35171,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-978.829007251317,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.02,42.1,7,1,0,0,12,1,1,1707,0,0,0 +15745,19284,35172,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,2,1,0,3,7.590835736145755,7.306130385367315,4.670931764623869,3,0,0,0,-9,0,-1056.330359859086,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,30,0,15,1,0,-9,0,7.38859504378517,7.38859504378517,0,0,0,0,0,0,0,1,1,0,0,4.632800401493088,0,0,54.96,53.17,5,1,0,0,2,3,1,2208,0,0,0 +15746,19285,35173,35174,-9,-9,1,1,1,43,1,1,3,0,1,-9,3,3,0,4,0,0,0,2,0,-9,15,0,10,-79.02954497504588,-9,0,0,33,2,4,1,2,2,2019,3,2,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,3,1,0,8,2,0,452.75,0,0,0 +15746,19285,35174,35173,-9,-9,2,1,0,33,1,1,3,0,2,-9,5,1,0,4,7.78664031850415,7.147647750580471,0,2,0,-9,15,0,-10,36.43925206986808,0,0,1,43,1,4,3,3,3,2019,2,1,11,0,36,30,15,1,2,3,0,6.856181753999841,6.856181753999841,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,3,0,0,8,2,0,452.75,0,0,0 +15746,19285,35175,-9,35174,35173,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-938.5560938621375,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,452.75,0,0,0 +15746,19285,35176,-9,35174,35173,4,1,0,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-895.9272526499866,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,452.75,0,0,0 +15747,19286,35177,-9,35178,35180,2,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-995.5145514937778,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,3,0,946.25,0,0,0 +15747,19286,35178,35180,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,6.994580560668799,7.274260400385562,5.867718400272218,2,0,-9,2,0,-1,-22.61315786592045,0,0,1,34,2,5,1,1,1,2019,1,4,11,1,20,28,15,1,1,1,0,6.754269399128924,6.754269399128924,0,0,0,0,0,0,0,1,1,0,5.624337757183337,0,0,0,46.63,59.72,5,1,0,0,2,3,0,946.25,0,0,0 +15747,19286,35179,-9,35178,35180,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1016.650365433669,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,0,946.25,0,0,0 +15747,19286,35180,35178,-9,-9,4,1,1,34,1,0,2,0,2,-9,2,1,0,5,8.318308394488056,8.058433661361136,0,2,0,-9,2,0,1,-35.34079721784953,0,0,0,33,2,4,1,-9,-9,2019,1,1,11,2,43,38,15,1,2,1,0,9.192894582173665,9.192894582173665,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.42,60.53,5,1,0,0,2,3,0,946.25,0,0,0 +15748,19287,35181,35182,-9,-9,1,1,0,61,1,0,0,0,1,-9,4,3,0,5,0,0,0,1,0,-9,41,0,-3,94.30539498288667,0,0,0,64,1,4,1,1,2,2019,3,2,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.551203071355267,0,0,0,57.06,57.76,6,1,0,0,9,5,1,653.5,0,0,0 +15748,19287,35182,35181,-9,-9,2,1,1,64,1,0,0,0,1,-9,1,1,0,4,9.055632200586826,9.491287960489117,8.171278207842919,1,0,-9,41,0,3,6.243343199647079,0,0,0,61,1,5,3,2,2,2019,2,1,8,0,30,20,15,1,0,4,0,45.45177751579868,45.45177751579868,0,0,0,0,0,0,0,0,0,0,8.058585167594474,8.540830275236042,0,0,57.16,56.15,1,1,0,0,9,5,1,653.5,0,0,0 +15749,19288,35183,-9,-9,35184,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1007.841709949781,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,2,1,478,0,0,0 +15749,19288,35184,-9,-9,-9,1,1,1,42,3,0,2,0,3,-9,2,1,0,3,7.679498416665067,7.40226335448613,0,4,0,0,0,-9,0,-991.337166775177,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,37,32,15,1,0,-9,0,5.712443422319902,5.712443422319902,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,5,1,0,0,10,2,1,478,0,0,0 +15749,19288,35185,-9,-9,35184,2,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-988.9925607695683,-9,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,10,2,1,478,0,0,0 +15750,19289,35186,-9,35188,35189,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.4595078457867,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,9,4,1,972,0,0,0 +15750,19289,35187,-9,35188,35189,4,1,0,10,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1096.018685390802,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,4,1,972,0,0,0 +15750,19289,35188,35189,-9,-9,1,1,0,43,1,0,3,0,2,-9,1,1,0,5,7.661752657848159,7.75660432205936,0,2,0,-9,10,0,-1,69.97713196005041,0,0,1,44,2,4,1,-9,-9,2019,1,2,9,0,21,18,15,1,0,1,0,17.30289994276666,17.30289994276666,0,0,0,0,0,0,0,1,1,0,7.346903263166777,0,0,0,54.1,59.11,2,1,0,0,9,4,1,972,0,0,0 +15750,19289,35189,35188,-9,-9,2,1,1,44,1,0,3,0,2,-9,1,1,0,4,8.438476123710126,8.888664046121134,0,2,0,-9,5,0,1,-97.11729566371675,0,0,0,43,2,5,1,-9,-9,2019,1,1,9,0,50,45,15,1,1,1,0,9.65402591657528,9.65402591657528,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,9,4,1,972,0,0,0 +15751,19290,35190,-9,-9,-9,1,1,0,75,3,0,0,0,1,-9,4,3,0,3,0,5.190733265566069,5.241250128622944,3,0,-9,0,1,0,-974.7150403749769,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.152642782712139,5.217863239362515,0,0,54.96,53.17,5,1,0,0,6,2,1,336,0,0,0 +15751,19291,35191,-9,35190,-9,2,1,1,47,2,0,0,0,1,-9,2,1,0,5,8.301295088883169,8.448662327697212,0,3,0,0,0,-9,0,-1033.069076998076,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,3,66,52,15,1,3,-9,1,7.585041475221076,7.585041475221076,0,0,0,0,0,0,0,1,1,0,1.781371454377499,0,0,0,34.09,52.17,6,1,0,0,6,4,1,722,0,0,0 +15752,19292,35192,35193,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,1,7.834628937804596,8.29036966139337,0,1,0,-9,5,0,-2,-57.24415740414046,0,1,1,28,2,4,1,-9,-9,2019,1,2,16,4,39,45,15,1,4,1,0,11.77335702730207,11.77335702730207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.44,42.13,3,1,0,0,2,4,1,596.5,0,0,0 +15752,19292,35193,35192,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,4,7.99915275368687,7.973620924907052,0,1,0,-9,5,0,2,-85.98745595819926,0,1,0,26,2,1,1,-9,-9,2019,1,1,11,0,40,40,15,1,0,1,0,9.648951213961309,9.648951213961309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.86,57.79,3,1,0,0,2,4,1,596.5,0,0,0 +15753,19293,35194,35195,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,2,0,7.017242108579325,6.936728807922182,1,0,-9,36,0,3,32.20648016121697,0,0,0,65,1,3,1,1,1,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,1,0,3.186960125642271,0,0,0,0,1,1,0,0,7.318033749392441,0,0,48.45,30.77,4,1,0,0,8,4,1,601.5,0,0,0 +15753,19293,35195,35194,-9,-9,2,1,1,65,1,0,0,0,1,-9,1,1,0,3,7.41183551739288,8.550379450878363,8.307541006186206,1,0,-9,36,0,-3,-30.89236418884629,0,0,0,68,1,2,3,-9,-9,2019,2,1,12,0,25,30,15,1,0,4,0,7.469994233322485,7.469994233322485,0,0,0,0,0,0,0,1,1,0,3.059870729947123,7.854345047252725,0,0,49.52,56.95,6,1,0,0,8,4,1,601.5,0,0,0 +15753,19294,35196,-9,35194,35195,3,1,0,26,2,0,0,0,2,-9,2,1,0,4,8.181640880216008,8.420184815256794,0,3,0,0,0,-9,0,-987.7630257380694,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,46,15,1,0,-9,1,8.895262314745819,8.895262314745819,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,45.82,5,1,0,0,8,4,1,360,0,0,0 +15754,19295,35197,35198,-9,-9,2,1,0,47,1,0,1,0,2,-9,2,1,0,2,7.148248109123194,6.987510511110575,0,2,0,-9,8,0,2,58.52687771726858,0,0,0,45,2,4,1,3,2,2019,1,1,27,12,16,16,15,1,12,1,0,6.988236742879637,6.988236742879637,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.37,58.32,1,1,0,0,11,3,1,1552,0,0,0 +15754,19295,35198,35197,-9,-9,1,1,1,45,1,0,1,0,2,-9,2,1,0,4,8.091092233881374,8.288547451737353,0,2,0,-9,8,0,-2,-7.948211183084508,0,0,0,47,2,2,1,2,2,2019,1,2,12,0,39,39,15,1,0,1,0,11.44684416796114,11.44684416796114,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.03,6,1,0,0,11,3,1,1552,0,0,0 +15755,19296,35199,35200,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.846049469871517,8.911421312336287,8.237946492486376,1,0,-9,35,0,1,-46.62481258256722,0,0,0,55,1,4,1,3,2,2019,1,1,6,0,50,55,15,1,0,1,0,21.66285477066399,21.66285477066399,0,0,0,0,0,0,0,0,0,0,0,8.019496844356549,0,3,58.15,52.91,6,1,0,0,6,5,1,353,0,0,0 +15755,19296,35200,35199,-9,-9,1,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.375559859092034,8.449643951859064,0,1,0,-9,35,0,-1,133.9281191296091,0,0,0,56,2,4,1,3,3,2019,1,2,8,0,38,38,15,1,0,1,0,16.66148661466795,16.66148661466795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,6,5,1,353,0,0,0 +15756,19297,35201,-9,-9,-9,1,1,0,91,3,0,0,0,1,-9,4,3,0,5,0,6.95624150355621,6.804501665361262,3,0,0,0,-9,0,-1016.621922017755,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,7.617767537426769,6.959379062570452,0,0,63.13,49.54,7,1,0,0,6,2,1,264,0,0,0 +15757,19298,35202,35203,-9,-9,2,1,0,79,1,0,0,0,2,-9,4,3,0,2,0,7.623960687485612,7.452497667780202,1,0,-9,59,0,-3,58.78605124832035,0,0,0,82,3,1,3,-9,-9,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.267092899509841,7.416790910921551,0,0,58.05,30.25,5,1,0,0,8,2,1,298,0,0,0 +15757,19298,35203,35202,-9,-9,1,1,1,82,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,59,0,3,-92.68789163565037,0,0,0,79,2,2,3,2,2,2019,4,2,17,0,0,0,15,4,5,4,0,0,0,1,0,12.89193190757376,0,0,0,0,1,1,0,0,0,0,0,23.9,22.76,3,1,0,0,8,2,1,298,0,0,0 +15758,19299,35204,-9,35205,-9,1,1,0,59,3,0,0,0,2,-9,4,3,0,5,0,7.460232112158739,7.483376714424783,3,0,0,0,-9,0,-976.1210853643287,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,0,0,15,4,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5024383026146,3.681214065944844,3,57.06,57.76,7,1,0,0,5,3,1,1176,0,0,0 +15758,19300,35205,-9,-9,-9,2,1,0,86,3,0,0,0,3,-9,4,3,0,3,0,7.702754083886767,8.141707072980363,3,0,0,0,-9,0,-934.8109274995326,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,3.564550407450787,0,0,0,1,1,0,8.45226161608125,7.949780374147093,0,0,65,29.3,7,1,0,0,5,4,1,146,0,0,0 +15759,19301,35206,35207,-9,-9,2,1,0,57,1,0,0,0,3,-9,8,3,1,1,0,5.370874740638548,5.362434141947179,1,0,-9,3,0,-5,132.9748253022584,0,0,0,62,3,4,3,-9,-9,2019,4,1,17,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.456405172760844,.9574982345761169,3,34.92,16.66,6,1,0,0,1,2,1,414.5,0,0,0 +15759,19301,35207,35206,-9,-9,1,1,1,62,1,0,0,0,3,-9,3,3,0,4,0,6.177214081445471,6.346463795421167,1,0,-9,3,0,5,89.1221725587948,0,0,0,57,3,1,3,3,3,2019,4,2,7,0,0,16,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.235828655966175,64.7559346910857,1,57.16,56.15,6,1,1,0,1,2,1,414.5,0,0,0 +15760,19302,35208,35209,-9,-9,1,1,0,39,1,1,4,0,2,-9,2,1,0,4,7.788330786877198,7.643027072568613,0,2,0,-9,26,0,-6,-20.94780847053335,0,0,1,45,3,4,1,3,3,2019,1,2,11,0,30,0,15,1,1,1,0,9.240080096506563,9.240080096506563,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,2,0,477.5,0,0,0 +15760,19302,35209,35208,-9,-9,2,1,1,45,1,1,4,0,3,-9,2,1,0,4,6.760655226669648,6.936755708120586,0,2,0,-9,8,0,6,-134.4002834250967,0,0,0,39,2,4,1,-9,-9,2019,1,1,9,0,22,24,15,1,1,1,0,5.448725628017103,5.448725628017103,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,0,0,8,2,0,477.5,0,0,0 +15760,19302,35210,-9,35208,35209,6,1,1,9,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.9580282999957,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,477.5,0,0,0 +15760,19302,35211,-9,35208,35209,4,1,1,17,2,1,4,1,2,0,7,2,0,4,6.727598489422639,6.583484392258906,0,2,0,0,0,-9,0,-951.1339250734308,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,26,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,2,0,477.5,0,0,0 +15760,19302,35212,-9,35208,35209,5,1,1,14,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.514858347293,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,2,0,477.5,0,0,0 +15760,19302,35213,-9,35208,35209,7,1,1,1,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.681385702553,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,2,0,477.5,0,0,0 +15760,19303,35214,-9,35208,35209,3,1,1,20,2,1,4,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1051.379921142724,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,8,1,0,138,0,0,0 +15761,19304,35215,-9,-9,-9,1,1,0,53,2,0,2,0,2,-9,2,1,0,4,6.819068484193668,7.334456319121445,6.791906734003353,4,0,0,0,-9,0,-980.0793484279808,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,12,6,15,1,0,-9,0,7.491752271939745,7.491752271939745,0,0,0,0,0,0,0,1,1,0,7.011845097472489,0,116.6555124858335,3,57.16,56.15,6,1,0,0,9,2,1,165,0,0,0 +15762,19305,35216,35217,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.745363328173763,8.741281098452628,0,1,0,-9,7,0,3,74.07205597604435,0,0,0,61,2,2,3,3,3,2019,2,2,7,0,38,38,15,1,0,3,0,18.02769237300906,18.02769237300906,0,0,0,0,0,0,0,1,1,0,2.978942578643302,0,1.61772385964956,3,60.12,54.8,7,1,0,0,12,4,1,895.5,0,0,0 +15762,19305,35217,35216,-9,-9,2,1,0,61,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,7,0,-3,116.0012401844864,0,0,0,64,2,4,1,2,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52.88,32.74,6,1,1,0,12,4,1,895.5,0,0,0 +15763,19306,35218,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,5.460807747391731,5.390371095284868,3,0,0,0,-9,0,-962.2393436389132,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.010805174396418,5.250751858875454,0,0,61.04,39.41,6,1,0,0,9,2,1,713,0,0,0 +15764,19307,35219,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,4,3,0,3,0,4.508570592182441,4.886008516161173,3,0,0,0,-9,0,-1167.304441615878,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9209925800833,4.146217679287441,121.1316691415726,3,49.04,55.86,5,1,0,0,11,2,1,275,0,0,0 +15765,19308,35220,-9,-9,-9,1,1,1,66,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1017.153879595911,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.72,37.28,6,1,0,0,13,1,0,667,0,0,0 +15766,19309,35221,35222,-9,-9,2,1,0,60,1,0,0,0,2,-9,1,1,0,4,8.573536510461576,8.51003396108726,4.557677147356386,1,0,-9,20,0,-1,-86.31200613625056,0,0,0,61,3,4,1,3,3,2019,1,1,9,0,55,60,15,1,0,1,0,9.357248442846682,9.357248442846682,0,0,0,0,0,0,0,0,0,0,5.057778117871763,4.782463680032077,17.11305669499041,3,54.63,43.68,7,1,0,0,6,5,1,691.5,0,0,0 +15766,19309,35222,35221,-9,-9,1,1,1,61,1,0,0,0,3,-9,1,1,0,4,8.302240560397308,7.899044489038907,0,1,0,-9,20,0,1,72.95664796994423,0,0,0,60,2,4,1,3,3,2019,1,2,8,0,45,40,15,1,0,1,0,8.721373275468926,8.721373275468926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,6,1,0,0,6,5,1,691.5,0,0,0 +15767,19310,35223,-9,-9,-9,1,1,0,50,2,0,0,0,1,-9,2,1,0,2,7.90399849284044,8.219623772461688,0,3,0,0,0,-9,0,-950.6278284290025,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,18,8,26,35,15,1,8,-9,0,14.80241955587774,14.80241955587774,0,0,0,0,0,0,0,0,0,0,2.23730236536081,0,0,0,46.82,31.61,3,1,0,0,6,4,0,93,0,0,0 +15768,19311,35224,35225,-9,-9,1,1,0,63,1,0,0,0,2,-9,2,1,0,3,7.866763278810348,8.19447800102143,0,1,0,-9,46,0,-4,-151.5540782722417,0,0,0,67,2,3,3,2,2,2019,2,2,10,0,16,25,15,1,0,4,0,21.7579770455186,21.7579770455186,0,0,0,0,0,0,0,1,1,0,8.605679792450179,0,0,3,57.33,53.46,6,1,0,0,6,4,1,395.5,0,0,0 +15768,19311,35225,35224,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,3,0,7.716375423950145,7.874757833956523,1,0,-9,46,0,4,37.6744245244067,0,0,0,63,2,3,1,-9,-9,2019,3,1,18,7,0,0,15,4,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.557474537196118,7.557838653630206,0,3,46.95,33.53,6,1,0,0,6,4,1,395.5,0,0,0 +15769,19312,35226,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,4,3,0,1,0,5.442411998487612,5.375051491939474,3,0,0,0,-9,0,-1031.073567193166,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5528276033646802,4.930064183371936,111.4306266654896,3,35.08,22.05,4,1,0,1,9,2,0,1077,0,0,0 +15770,19313,35227,-9,-9,-9,1,1,1,72,3,0,0,0,1,-9,4,3,0,3,0,6.915600423992962,7.529713041785872,3,0,0,0,-9,0,-846.6116141675832,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.367611288019846,6.925950393255849,14.83102930680263,3,44.25,56.64,5,1,0,0,11,3,1,986,0,0,0 +15771,19314,35228,-9,35230,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-998.8387950369737,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,0,645.6666666666666,0,0,0 +15771,19314,35229,-9,35230,-9,2,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-981.8552894924314,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,0,645.6666666666666,0,0,0 +15771,19314,35230,-9,-9,-9,1,1,0,36,2,0,2,0,1,-9,2,1,0,4,8.546738980376174,8.677994706522997,5.931291352771386,4,0,0,0,-9,0,-961.5514523382088,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,7,0,43,40,15,1,0,-9,0,12.81313790179207,12.81313790179207,0,0,0,0,0,0,0,1,1,0,5.77086476503645,0,0,0,58.3,52.91,6,1,0,0,10,4,0,645.6666666666666,0,0,0 +15772,19315,35231,-9,-9,-9,1,1,1,76,3,0,0,0,2,-9,4,3,0,3,0,7.633229355873755,7.512084618171293,3,0,0,0,-9,0,-950.8964160671469,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.828047472316127,0,0,52,47,5,1,0,0,12,3,1,195,0,0,0 +15773,19316,35232,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,2,0,4.845542459740418,4.86012834264394,3,0,0,0,-9,0,-1015.859997346471,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.20507701197046,4.931465566828017,0,0,49.27,27.22,6,1,0,0,7,2,1,252,0,0,0 +15774,19317,35233,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1070.958549319592,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.63,27.97,4,3,0,0,6,1,0,344,0,0,0 +15775,19318,35234,-9,35237,35235,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1087.714024341051,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,12,4,1,1115.25,0,0,0 +15775,19318,35235,35237,-9,-9,1,1,1,38,1,2,2,0,1,-9,2,1,0,4,8.545962627847086,8.379521721450427,0,2,0,-9,8,0,5,-83.50940233834116,0,0,0,33,1,4,1,2,2,2019,1,2,6,0,38,40,15,1,0,1,0,17.16659767871956,17.16659767871956,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,6,1,0,0,12,4,1,1115.25,0,0,0 +15775,19318,35236,-9,35237,35235,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-959.2901649631633,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,12,4,1,1115.25,0,0,0 +15775,19318,35237,35235,-9,-9,2,1,0,33,1,2,2,0,1,-9,2,1,0,4,7.888258524941114,8.033533926963845,0,2,0,-9,8,0,-5,-55.43116790609754,0,0,1,38,1,4,1,-9,-9,2019,1,1,18,5,26,28,15,1,5,1,0,12.2860327478298,12.2860327478298,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.04,53.42,7,1,0,0,12,4,1,1115.25,0,0,0 +15776,19319,35238,35240,-9,-9,1,1,0,45,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,11,0,7,162.1107905839211,0,0,0,38,3,3,1,3,3,2019,3,2,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,7,3,0,0,6,2,1,1474.6,0,0,0 +15776,19319,35239,-9,35238,35240,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1061.634524783373,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,1474.6,0,0,0 +15776,19319,35240,35238,-9,-9,2,1,1,38,1,0,3,0,3,-9,2,1,0,3,7.115127656789847,6.966336356436881,0,2,0,-9,11,0,-7,30.98194550439356,0,0,0,45,2,5,3,3,3,2019,2,1,10,1,30,24,15,1,1,3,0,3.49795297389178,3.49795297389178,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,52.93,4,3,0,0,6,2,1,1474.6,0,0,0 +15776,19319,35241,-9,35238,35240,4,1,0,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-988.8999242520854,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,6,2,1,1474.6,0,0,0 +15776,19319,35242,-9,35238,35240,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-949.2071542331619,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,6,2,1,1474.6,0,0,0 +15777,19320,35243,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-998.2220817175137,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,30,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.08,24.12,1,1,0,1,12,1,0,1434,0,0,0 +15778,19321,35244,-9,-9,-9,1,1,0,40,3,0,0,0,1,-9,6,3,0,3,0,0,0,3,0,0,0,-9,0,-996.8842661218674,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.19,49.37,5,1,0,0,7,1,1,349,0,0,0 +15779,19322,35245,35246,-9,-9,2,1,1,53,1,0,0,0,2,-9,2,1,0,3,8.832956656293383,8.787936335834246,0,1,0,-9,33,0,-3,-207.9104788528315,0,0,0,56,1,4,1,3,3,2019,1,1,11,0,45,40,15,1,1,1,0,23.57947320205163,23.57947320205163,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,6,1,0,0,7,5,1,449,0,0,0 +15779,19322,35246,35245,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,4,8.91687767818553,8.866210702499354,0,1,0,-9,34,0,3,-73.78730728609435,0,0,0,53,2,3,1,-9,-9,2019,1,2,9,1,37,38,15,1,1,1,0,17.17344763163043,17.17344763163043,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,48.98,6,1,0,0,7,5,1,449,0,0,0 +15780,19323,35247,-9,35250,35249,4,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-984.2087090935769,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,3,1,925.75,0,0,0 +15780,19323,35248,-9,35250,35249,3,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-852.7735009964596,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,3,1,925.75,0,0,0 +15780,19323,35249,35250,-9,-9,1,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.164264171190935,7.949616566282502,0,2,0,-9,1,-9,5,-72.56050696659644,-9,0,0,39,2,4,1,-9,-9,2019,1,2,6,0,50,0,15,1,0,1,0,4.514987845764822,4.514987845764822,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,7,1,0,0,7,3,1,925.75,0,0,0 +15780,19323,35250,35249,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,4,7.983861017798779,8.116121608340384,0,2,0,-9,1,-9,-5,-99.45576602540416,-9,0,1,44,2,4,1,2,2,2019,1,1,10,0,40,0,15,1,0,1,0,7.073475070495508,7.073475070495508,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,1,1,0,0,7,3,1,925.75,0,0,0 +15781,19324,35251,-9,35253,-9,3,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1012.204402636529,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,1,0,1046,0,0,0 +15781,19324,35252,-9,35253,-9,1,1,0,17,2,0,3,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-989.4852810673605,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,7,1,0,0,7,1,0,1046,0,0,0 +15781,19324,35253,-9,-9,-9,2,1,0,30,2,0,3,0,3,-9,6,3,0,4,0,0,0,4,0,0,0,-9,0,-1019.00803527425,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,63.56,5,1,0,0,7,1,0,1046,0,0,0 +15781,19324,35254,-9,35253,-9,5,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-992.7963115301875,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,1,0,1046,0,0,0 +15781,19324,35255,-9,35253,-9,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1036.874178954873,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,1,0,1046,0,0,0 +15782,19325,35256,-9,-9,-9,1,1,0,25,2,0,0,0,1,-9,2,1,0,4,8.178597686071623,8.040679345136894,0,3,0,0,0,-9,0,-1019.548292477087,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,2,69,39,15,1,2,-9,0,6.663999640541133,6.663999640541133,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,5,1,0,0,12,4,0,504,0,0,0 +15783,19326,35257,35258,-9,-9,1,1,1,66,1,0,0,0,2,-9,1,1,0,5,8.425520646822887,8.518022486657593,7.299119622439183,1,0,-9,13,0,9,30.76162186233409,0,0,0,57,1,2,3,3,2,2019,2,2,6,0,40,35,15,1,0,4,0,10.5339114613826,10.5339114613826,0,0,0,0,0,0,0,1,1,0,8.007939879125944,7.507384827945223,23.23941391298345,1,60.02,56.42,6,1,0,0,2,5,1,648.5,0,0,0 +15783,19326,35258,35257,-9,-9,2,1,0,57,1,0,0,0,1,-9,4,3,0,2,0,8.226841117834629,8.135845009858883,1,0,-9,15,0,0,73.36223631141067,0,0,0,66,2,5,1,2,2,2019,3,1,8,0,0,40,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.66147255586097,7.891059179728534,4.886859255391457,3,61.06,18.26,6,1,0,0,2,5,1,648.5,0,0,0 +15784,19327,35259,-9,35260,35262,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-960.8045033978992,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,5,1,0,0,12,5,1,225,0,0,0 +15784,19327,35260,35262,-9,-9,1,1,0,39,1,0,2,0,1,-9,2,1,0,5,9.174872589189754,9.05732814283971,0,2,0,-9,17,0,-2,0,0,0,1,41,1,2,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,32.02571973119237,32.02571973119237,0,0,0,0,0,0,0,0,0,0,6.045161529248293,0,0,0,54.69,57.47,7,1,0,0,12,5,1,225,0,0,0 +15784,19327,35261,-9,35260,35262,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.6122414761489,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,5,1,225,0,0,0 +15784,19327,35262,35260,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,2,9.174281991226207,9.372819659913144,0,2,0,-9,17,0,2,0,0,0,0,39,1,5,1,2,2,2019,1,1,9,0,41,38,15,1,0,1,0,24.5377341267361,24.5377341267361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,42.38,6,1,0,0,12,5,1,225,0,0,0 +15785,19328,35263,-9,-9,-9,1,1,0,93,3,0,0,0,3,-9,4,3,0,3,0,3.661281327760212,3.878616903210152,3,0,0,0,-9,0,-1037.326373052473,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,15.92234793796464,0,0,0,0,89.7268426412106,1,1,0,.0945847281082846,3.402783185555353,0,0,54,44,7,1,0,0,5,2,1,659,0,0,0 +15786,19329,35264,35265,-9,-9,1,1,0,50,1,0,2,0,2,-9,2,1,0,4,7.552959052278903,7.706391630667409,6.135563485014753,2,0,-9,2,0,-2,-29.86427259688637,0,0,0,52,1,4,1,2,-9,2019,1,4,22,10,30,23,15,1,10,1,0,6.334558665795084,6.334558665795084,0,0,0,0,0,0,0,1,1,0,6.380223462690216,0,0,0,28.65,61.01,3,1,0,0,10,4,1,628,0,0,0 +15786,19329,35265,35264,-9,-9,4,1,1,52,1,0,2,0,1,-9,2,1,0,4,8.740521722235021,8.557871613072525,0,2,0,-9,2,0,2,2.065049341418589,-9,0,0,50,2,4,1,-9,-9,2019,1,1,9,0,39,0,15,1,1,1,0,16.27557194604258,16.27557194604258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,5,0,0,10,4,1,628,0,0,0 +15786,19329,35266,-9,35264,-9,2,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-947.8980180218364,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,1,0,0,10,4,1,628,0,0,0 +15786,19329,35267,-9,35264,-9,3,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1026.280241384774,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,10,4,1,628,0,0,0 +15787,19330,35268,-9,-9,-9,1,1,0,33,3,0,0,0,2,-9,2,1,0,3,9.161701527705638,9.060718018916276,0,3,0,-9,0,1,0,-902.7386160507891,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,41,15,1,0,-9,0,22.47219188567304,22.47219188567304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,3,0,0,8,5,1,587,0,0,0 +15788,19331,35269,35270,-9,-9,1,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,7.076366073744071,6.794101769605033,1,0,-9,7,0,5,15.55512809922441,0,0,0,75,3,4,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.246968667824312,7.006208705526988,0,0,58.31,42.52,6,1,0,0,10,2,1,280.5,0,0,0 +15788,19331,35270,35269,-9,-9,2,1,0,75,1,0,0,0,3,-9,4,3,0,4,0,3.427061505842926,3.310157183976882,1,0,-9,7,0,-5,61.86781856092168,0,0,0,80,3,2,3,-9,2,2019,4,1,20,7,0,0,15,4,7,4,0,0,0,1,0,2.244641967564076,0,0,0,0,1,1,0,4.895512092583623,3.315069490561428,0,0,41.47,38.85,5,1,0,0,10,2,1,280.5,0,0,0 +15789,19332,35271,-9,-9,-9,1,1,1,88,3,0,0,0,2,-9,4,3,0,3,0,7.391491294649057,7.425436847147715,3,0,0,0,-9,0,-975.9475862957541,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.848385060464614,7.911268669287385,0,0,64.16,27,6,1,0,0,2,3,1,588,0,0,0 +15790,19333,35272,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,3,8.407443852365846,8.498608516007677,0,3,0,0,0,-9,0,-1001.736761633771,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,40,35,15,1,2,-9,0,17.9228819884886,17.9228819884886,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,4,3,0,0,7,5,1,1104,0,0,0 +15791,19334,35273,35274,-9,-9,2,1,0,68,1,0,0,0,3,-9,2,1,0,5,6.407905166491235,7.321308697721646,6.72312097377056,1,0,-9,8,0,13,73.0547788814614,0,0,0,55,1,4,1,3,3,2019,1,1,8,0,20,26,15,1,0,1,0,3.289415617860394,3.289415617860394,0,0,0,0,0,0,0,1,1,0,0,6.868387698878559,0,0,57.06,57.76,6,1,0,0,11,5,1,414.5,0,0,0 +15791,19334,35274,35273,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,8.901964062837486,8.576592969899606,0,1,0,-9,8,0,-13,-78.46204715863618,0,0,0,68,3,5,1,-9,-9,2019,1,2,7,0,40,50,15,1,0,1,0,17.95206819121429,17.95206819121429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,11,5,1,414.5,0,0,0 +15792,19335,35275,35276,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,3.701734911640926,3.915176417807642,1,0,-9,52,0,-2,-198.1847293363324,0,0,0,75,3,3,3,3,-9,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.63625172437262,3.705489774424942,0,0,50.27,46.15,6,1,0,0,4,2,1,2262.5,0,0,0 +15792,19335,35276,35275,-9,-9,2,1,1,75,1,0,0,0,3,-9,4,3,0,3,0,7.778006082621019,7.56797936343858,1,0,-9,52,0,2,-54.53047302233101,0,0,0,73,2,2,3,3,3,2019,4,1,4,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.294821167155648,0,0,60.29,52.11,5,1,0,0,4,2,1,2262.5,0,0,0 +15793,19336,35277,35278,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,5,0,7.692645553530053,7.685480501157486,1,0,-9,51,0,3,-86.1418130058631,0,0,0,69,2,4,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.500978783305867,7.777836425280971,3.382800591151711,3,54.1,59.11,6,1,0,0,5,4,1,286.5,0,0,0 +15793,19336,35278,35277,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,4,0,7.75560322587399,8.005552121332627,1,0,-9,51,0,-3,17.49137398236175,0,0,0,72,1,5,3,2,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.715727681510129,7.907874828452702,.4635785877660117,3,54.2,57.49,6,1,0,0,5,4,1,286.5,0,0,0 +15794,19337,35279,-9,35281,35280,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-967.9301385296073,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,1052.25,0,0,0 +15794,19337,35280,35281,-9,-9,1,1,1,59,1,0,2,0,2,-9,1,1,0,2,8.235270279258746,8.543508272225376,8.256584682681559,2,0,-9,24,0,10,65.72354848991817,0,0,0,49,2,4,1,3,3,2019,1,2,12,1,18,65,15,1,1,1,0,19.92247755578135,19.92247755578135,0,0,0,0,0,0,0,1,1,0,3.88041197434356,8.29007264645827,0,0,44.99,43.48,4,1,0,0,9,4,1,1052.25,0,0,0 +15794,19337,35281,35280,-9,-9,2,1,0,49,1,0,2,0,2,-9,2,1,0,4,7.162970404620939,7.563194417397794,0,2,0,-9,24,0,-10,91.82595964592001,0,0,0,59,2,2,1,-9,2,2019,1,1,6,0,27,25,15,1,0,1,0,6.452173623861147,6.452173623861147,0,0,0,0,0,0,0,1,1,0,6.702273516998585,0,0,0,58.3,47.38,6,1,0,0,9,4,1,1052.25,0,0,0 +15794,19337,35282,-9,35281,35280,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.462695001199,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,9,4,1,1052.25,0,0,0 +15795,19338,35283,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,4,0,9.301562522846654,8.996366875441639,3,0,0,0,-9,0,-1062.927809485502,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.301574700090999,0,0,57.16,56.15,6,1,0,0,12,5,1,510,0,0,0 +15796,19339,35284,35285,-9,-9,2,1,0,51,1,0,1,0,1,-9,2,1,0,4,9.530390179299198,9.251507279255794,0,2,0,-9,28,0,-1,-15.85818271682684,0,0,0,52,1,3,2,2,2,2019,2,1,13,1,53,57,15,1,1,2,0,39.76730539399379,39.76730539399379,0,0,0,0,0,0,0,0,0,0,3.864643547176308,0,0,0,49.12,51.75,6,1,0,0,6,5,1,625,0,0,0 +15796,19339,35285,35284,-9,-9,1,1,1,52,1,0,1,0,1,0,7,2,0,3,0,0,0,2,0,-9,27,0,1,5.930576777592229,-9,0,0,51,1,4,1,2,3,2019,3,2,12,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.52,56.95,3,1,0,0,6,5,1,625,0,0,0 +15796,19340,35286,-9,35284,35285,4,1,1,18,2,0,1,1,2,0,7,2,0,4,0,4.157564793030434,4.224341445474711,3,0,0,0,-9,0,-1014.419865540649,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,4.01024662679436,0,0,0,57.16,56.15,6,1,0,0,6,5,1,254,0,0,0 +15797,19341,35287,35288,-9,-9,1,1,1,61,1,0,0,0,2,-9,4,3,0,2,0,7.772897047502098,7.468458149657794,1,0,-9,36,0,-5,-90.07060926996216,0,0,0,66,2,3,3,3,3,2019,4,2,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.397875622002636,0,0,25.42,41.48,3,1,0,0,13,3,1,1837.5,0,0,0 +15797,19341,35288,35287,-9,-9,2,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,5.364287327755788,5.527084582834455,1,0,-9,36,0,5,-82.78383576846551,0,0,0,61,2,2,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.977474618615012,0,0,49.44,43.52,6,1,0,0,13,3,1,1837.5,0,0,0 +15798,19342,35289,-9,-9,-9,1,1,1,60,3,0,0,0,1,-9,2,1,0,4,0,0,0,3,0,0,0,-9,0,-1057.079564650915,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,37,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,8.005260353923147,0,0,0,63.48,51.85,6,1,0,0,13,1,1,388,0,0,0 +15799,19343,35290,35292,-9,-9,1,1,0,45,1,0,1,0,2,-9,1,1,0,5,8.112718158794289,8.527182633944337,0,2,0,-9,10,0,1,3.949028547567338,0,0,0,44,1,5,1,3,1,2019,1,2,6,0,35,40,15,1,0,1,0,14.63948224324503,14.63948224324503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,12,5,1,825,0,0,0 +15799,19343,35291,-9,35290,35292,3,1,1,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-970.6247279879836,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,5,1,0,0,12,5,1,825,0,0,0 +15799,19343,35292,35290,-9,-9,2,1,1,44,1,0,1,0,1,-9,2,1,0,5,9.139475494031728,9.313291874724447,0,2,0,-9,10,0,-1,-107.4908914392621,0,0,0,45,2,5,1,-9,-9,2019,1,1,7,0,47,48,15,1,0,1,0,24.00022954283054,24.00022954283054,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,6,1,0,0,12,5,1,825,0,0,0 +15800,19344,35293,-9,35294,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-989.0018566125773,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,2,0,0,11,4,0,398,0,0,0 +15800,19344,35294,-9,-9,-9,1,1,0,45,3,0,2,0,2,-9,1,1,0,5,8.7028526561856,8.224584176672199,0,4,0,0,0,-9,0,-920.3566210171929,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,16,15,1,0,-9,0,37.39358973332181,37.39358973332181,0,0,0,0,0,0,0,1,1,0,0,0,120.2676891286146,3,41.07,60.93,1,3,0,0,11,4,0,398,0,0,0 +15800,19345,35295,-9,35294,-9,2,1,0,18,2,0,2,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1135.721922205625,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,15,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,1,2,0,0,11,4,0,744,0,0,0 +15801,19346,35296,-9,-9,-9,1,1,1,30,2,0,0,0,1,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-810.8422626053216,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,4,1,0,4,1,0,404,0,0,0 +15802,19347,35297,-9,-9,-9,2,1,0,18,2,0,0,0,2,1,2,1,0,4,6.996594486756068,7.084716747388321,0,3,0,0,0,-9,0,-1042.540959356498,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,20,0,15,1,5,-9,1,8.681438273783755,8.681438273783755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.89,59.55,4,1,0,0,12,2,0,776,0,0,0 +15803,19348,35298,35299,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,3,6.587408492027642,8.127175276997294,7.129466008299962,1,0,-9,7,0,2,4.455231846603271,0,0,0,62,2,3,3,3,3,2019,2,2,7,0,15,0,15,1,0,4,0,5.795792788442759,5.795792788442759,0,0,0,0,0,0,0,0,0,0,4.363053105982351,7.775635418416375,0,0,61.28,48.88,7,1,0,0,7,4,1,755,0,0,0 +15803,19348,35299,35298,-9,-9,2,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,7.377614373975215,7.571794581357265,1,0,-9,7,0,-2,63.64808493338678,0,0,0,64,1,3,1,2,2,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.553936990175044,0,0,61.86,41.72,6,1,0,0,7,4,1,755,0,0,0 +15804,19349,35300,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-927.6854362154869,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.3,17.77,5,1,0,0,9,1,0,490,0,0,0 +15805,19350,35301,-9,-9,-9,1,1,1,42,2,0,0,0,1,-9,2,1,0,4,8.659662943764374,8.759297622465905,0,3,0,0,0,-9,0,-1065.108094009627,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,44,44,15,1,0,-9,0,15.7111410425749,15.7111410425749,0,0,0,0,0,0,0,0,0,0,0,0,1.974160484591178,3,54.2,57.49,4,3,0,0,7,5,1,336,0,0,0 +15806,19351,35302,-9,-9,-9,1,1,0,40,2,0,0,0,1,-9,2,1,0,4,8.633581276374509,8.213831247473506,0,3,0,0,0,-9,0,-994.4522767548324,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,2,39,38,15,1,2,-9,0,17.10577431951778,17.10577431951778,0,0,0,0,0,0,0,0,0,0,1.436850255970047,0,0,0,45.56,60.26,5,1,0,0,8,5,0,1105,0,0,0 +15807,19352,35303,35304,-9,-9,1,1,1,61,1,0,0,0,2,-9,1,1,0,4,9.669324966346828,9.801515272180172,0,1,0,-9,1,-9,-2,42.02964076531914,-9,0,0,63,1,4,1,-9,-9,2019,1,2,8,0,35,0,15,1,0,1,0,49.8764985449732,49.8764985449732,0,0,0,0,0,0,0,1,1,0,3.932342222778178,0,0,0,55,53,6,1,0,0,12,5,1,1402.5,0,0,0 +15807,19352,35304,35303,-9,-9,2,1,0,63,1,0,0,0,1,-9,2,1,0,4,8.852202814075344,8.705587128675338,6.416982575683281,1,0,-9,1,-9,2,30.41603407078238,-9,0,0,61,2,4,1,2,2,2019,1,1,8,0,50,0,15,1,0,1,0,13.55743768600547,13.55743768600547,0,0,0,0,0,0,0,1,1,0,0,5.933964506246332,3.074088677303979,3,48.77,57.64,6,1,0,0,12,5,1,1402.5,0,0,0 +15808,19353,35305,35306,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,3,8.871254052756296,8.850872095194298,0,1,0,-9,23,0,-2,-66.17532630698767,0,0,0,50,2,4,1,-9,-9,2019,1,2,3,0,37,63,15,1,0,1,0,20.57699478988012,20.57699478988012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,6,2,0,0,7,5,1,2496.5,0,0,0 +15808,19353,35306,35305,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.353154635250313,8.541727445815566,0,1,0,-9,4,0,2,-24.80790778128904,0,0,0,48,1,3,1,-9,-9,2019,1,1,6,0,50,50,15,1,0,1,0,10.965498603896,10.965498603896,0,0,0,0,0,0,0,0,0,0,3.458625533298065,0,0,0,44.98,57.48,6,2,0,0,7,5,1,2496.5,0,0,0 +15809,19354,35307,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1129.10910008661,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.854056987026174,0,0,0,53,44,6,1,0,0,4,1,1,2194,0,0,0 +15810,19355,35308,-9,35309,35310,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.5911004716752,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,636.25,0,0,0 +15810,19355,35309,35310,-9,-9,1,1,0,44,1,0,2,0,1,-9,2,1,0,3,7.998200113192716,8.066464829861326,0,2,0,-9,18,0,3,-94.34551880876296,0,0,1,41,1,4,1,3,3,2019,1,2,8,0,25,24,15,1,0,1,0,12.97205156112183,12.97205156112183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,7,4,1,636.25,0,0,0 +15810,19355,35310,35309,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.836571111512239,8.86268241612958,0,2,0,-9,18,0,-3,-70.3431130274604,0,0,0,44,1,3,1,2,3,2019,1,1,8,0,40,40,15,1,0,1,0,20.76773883095477,20.76773883095477,0,0,0,0,0,0,0,1,1,0,3.536842774693276,0,0,0,54.2,57.49,6,1,0,0,7,4,1,636.25,0,0,0 +15810,19355,35311,-9,35309,35310,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.1931130992972,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,636.25,0,0,0 +15811,19356,35312,35313,-9,-9,2,1,1,56,1,0,0,0,2,-9,2,1,0,4,8.91068084522438,9.238586041618376,0,1,0,-9,23,0,-5,-72.42945452239915,0,0,0,61,2,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,31.92526471207624,31.92526471207624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,6,1,0,0,10,5,1,444,0,0,0 +15811,19356,35313,35312,-9,-9,1,1,0,61,1,0,0,0,2,-9,2,1,0,3,6.923594580504595,6.547176378990466,0,1,0,-9,23,0,5,61.11402140806569,0,0,0,56,2,4,1,3,2,2019,1,2,15,3,34,28,15,1,3,1,0,2.874514759276825,2.874514759276825,0,0,0,0,0,0,0,0,0,0,2.510150696197199,0,0,0,55.06,43.47,5,1,0,0,10,5,1,444,0,0,0 +15811,19357,35314,-9,35313,35312,3,1,1,20,2,0,0,0,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1090.603585402733,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,10,1,1,1134,0,0,0 +15812,19358,35315,-9,35317,35316,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1027.451044553415,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,425,0,0,0 +15812,19358,35316,35317,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,3,8.981776519751877,8.777612381744119,0,2,0,-9,5,0,10,-31.30100800514651,0,0,0,28,2,5,1,2,2,2019,1,2,9,0,42,40,15,1,0,1,0,17.95829686904066,17.95829686904066,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,2,5,1,425,0,0,0 +15812,19358,35317,35316,-9,-9,2,1,0,28,1,1,1,0,2,-9,2,1,0,5,7.518269182852502,7.937253951201347,0,2,0,-9,5,0,-10,-18.38242666080664,0,1,1,38,2,3,1,-9,-9,2019,1,1,8,0,41,41,15,1,0,1,0,7.331129383996265,7.331129383996265,0,0,0,0,0,0,0,1,1,0,1.801444983855805,0,0,0,57.06,57.76,7,1,0,0,2,5,1,425,0,0,0 +15813,19359,35318,-9,-9,-9,1,1,1,65,3,0,0,0,3,-9,4,3,0,1,0,5.313635204942033,5.370472016282269,3,0,0,0,-9,0,-990.8946873427574,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,27,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,5.769129986570336,0,1,1,0,0,5.236103798786189,0,0,18.41,24.28,1,1,0,1,9,2,0,590,0,0,0 +15813,19360,35319,-9,-9,-9,2,1,1,18,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-828.9356282378873,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.288706121228313,0,10.29971757606614,3,52.82,53.97,4,1,0,0,9,1,0,771,0,0,0 +15814,19361,35320,-9,35321,35323,4,1,1,17,2,0,3,1,3,0,7,2,0,5,0,0,0,2,0,0,0,-9,0,-888.881333047575,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.63,57.91,6,1,0,0,4,3,0,942.8,0,0,0 +15814,19361,35321,35323,-9,-9,1,1,0,38,1,0,3,0,2,-9,2,1,0,3,7.733142513139605,8.360699489885608,0,2,0,-9,15,0,-4,36.62658065314947,0,0,1,42,2,3,1,2,2,2019,1,2,8,0,46,40,15,1,0,1,0,4.959824621188621,4.959824621188621,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.67,36.39,6,1,0,0,4,3,0,942.8,0,0,0 +15814,19361,35322,-9,35321,35323,6,1,1,11,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-908.8300437541068,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,1,0,0,4,3,0,942.8,0,0,0 +15814,19361,35323,35321,-9,-9,2,1,1,42,1,0,3,0,2,-9,2,1,0,3,8.248160494131989,8.183138966510056,0,2,0,-9,9,0,4,-1.746174104724442,0,0,0,38,2,3,1,2,2,2019,1,1,11,0,48,40,15,1,0,1,0,7.794196303808139,7.794196303808139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,5,1,0,0,4,3,0,942.8,0,0,0 +15814,19361,35324,-9,35321,35323,5,1,0,14,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-821.0287528589599,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,4,3,0,942.8,0,0,0 +15814,19362,35325,-9,35321,35323,3,1,0,19,2,0,3,0,2,1,2,1,0,4,7.683231383285136,7.396593720208854,0,3,0,0,0,-9,0,-1070.761239674771,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,48,0,15,1,0,-9,1,3.030517870114361,3.030517870114361,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.7,41.29,7,1,0,0,4,3,0,370,0,0,0 +15815,19363,35326,35327,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,6.713407635652858,7.127751650941863,1,0,-9,39,0,6,-64.00033304454001,0,0,0,66,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.555179494612929,6.939963384251071,0,0,47.94,55.04,6,1,0,0,7,2,1,383,0,0,0 +15815,19363,35327,35326,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,6.343147196921675,6.051382235688482,1,0,-9,32,0,-6,-10.81558055023977,0,0,0,72,2,5,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.575756340819652,6.636277499919094,3.342817384163231,3,45.12,45.4,6,1,0,0,7,2,1,383,0,0,0 +15816,19364,35328,-9,35329,-9,2,1,0,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-997.0988340994855,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,5,1,0,0,9,4,1,1020,0,0,0 +15816,19364,35329,-9,-9,-9,1,1,0,50,3,0,1,0,1,-9,2,1,0,4,8.760210310857588,8.37997238651934,0,4,0,0,0,-9,0,-976.4246144748303,0,0,0,-9,-9,-9,-9,1,3,2019,-9,0,6,0,37,43,15,1,0,-9,0,17.36898045200325,17.36898045200325,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,6,1,0,0,9,4,1,1020,0,0,0 +15817,19365,35330,35334,-9,-9,1,1,1,46,1,0,4,0,3,-9,3,3,0,4,0,0,0,2,0,-9,23,0,7,0,0,0,0,39,3,4,3,3,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,3,1,0,8,1,0,641.8,0,0,0 +15817,19365,35331,-9,35334,35330,5,1,0,16,2,0,4,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-982.6460217617039,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,1,0,641.8,0,0,0 +15817,19365,35332,-9,35334,35330,6,1,1,15,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.753335577708,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,1,0,641.8,0,0,0 +15817,19365,35333,-9,35334,35330,7,1,1,3,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1106.008586104746,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,1,0,641.8,0,0,0 +15817,19365,35334,35330,-9,-9,2,1,0,39,1,0,4,0,3,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-7,0,0,0,1,46,3,4,3,3,3,2019,4,1,11,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,5,3,0,0,8,1,0,641.8,0,0,0 +15817,19366,35335,-9,35334,35330,3,1,1,20,2,0,4,1,2,0,7,2,0,4,5.680038354102059,5.785735832709172,0,3,0,0,0,-9,0,-913.9076687373207,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,1,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.19474445446572,3,48,59,5,3,0,0,8,2,0,955,0,0,0 +15817,19367,35336,-9,35334,35330,4,1,0,18,2,0,4,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-930.197971061404,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,3,0,0,8,2,0,56,0,0,0 +15818,19368,35337,35338,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,3,0,4.901191257702139,4.824524167012219,1,0,-9,50,0,1,101.4601574449783,0,0,0,69,3,2,3,3,2,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.916569751505424,4.781426160299907,0,0,46.31,51.53,6,1,0,0,13,2,1,1723,0,0,0 +15818,19368,35338,35337,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,2,0,7.397907885712792,7.585645639651332,1,0,-9,50,0,-1,66.1647521650544,0,0,0,70,3,3,3,-9,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.921593067610172,7.370605019916963,0,0,48.79,41.4,2,1,0,0,13,2,1,1723,0,0,0 +15819,19369,35339,-9,35340,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-854.9900329490457,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,6,5,1,599.5,0,0,0 +15819,19369,35340,-9,-9,-9,1,1,0,46,3,0,1,0,1,-9,2,1,0,4,8.763938350775158,9.041669692427257,6.152530163266649,4,0,0,0,-9,0,-985.0548975478719,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,53,85,15,1,2,-9,0,14.45470508369572,14.45470508369572,0,0,0,0,0,0,0,1,1,0,6.709709714390181,0,0,0,45.91,59.89,4,1,0,0,6,5,1,599.5,0,0,0 +15820,19370,35341,35342,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,4,9.043077838888436,9.21891680263532,0,1,0,-9,9,0,4,39.00859419070191,0,0,0,49,1,4,1,-9,-9,2019,1,1,13,3,43,43,15,1,3,1,0,29.35749491297895,29.35749491297895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.85,54.91,6,1,0,0,12,5,1,2066.5,0,0,0 +15820,19370,35342,35341,-9,-9,1,1,1,49,1,0,0,0,1,-9,2,1,0,4,8.186543800173665,7.995129058178263,0,1,0,-9,9,0,-4,57.64651533536457,0,0,0,53,2,4,1,-9,-9,2019,1,2,12,1,40,40,15,1,1,1,0,11.56471753487615,11.56471753487615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.2,64.19,4,1,0,0,12,5,1,2066.5,0,0,0 +15821,19371,35343,-9,-9,-9,1,1,1,45,3,0,1,0,2,-9,6,3,0,2,0,0,0,4,0,0,0,-9,0,-920.439602885672,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,120.007681764472,3,34.77,44.07,3,1,0,1,9,1,0,271.5,0,0,0 +15821,19371,35344,-9,-9,35343,2,1,1,17,2,0,1,0,-9,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-894.884323472774,-9,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,14,4,0,0,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.87,55.8,7,1,1,0,9,1,0,271.5,0,0,0 +15822,19372,35345,-9,-9,-9,1,1,1,51,2,0,0,0,1,-9,2,1,0,3,9.158185164606927,8.936073867536571,0,3,0,0,0,-9,0,-918.1779064862101,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,40,35,15,1,0,-9,0,21.51628070157955,21.51628070157955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.83,51.82,5,1,0,0,8,5,1,234,0,0,0 +15823,19373,35346,-9,-9,-9,1,1,1,70,2,0,0,0,1,-9,4,3,0,3,0,8.046652405053843,7.939551476796345,3,0,0,0,-9,0,-1087.37406306052,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,50,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.381521975168762,7.951098171868664,0,0,45.17,49.37,2,1,0,0,4,4,1,694,0,0,0 +15824,19374,35347,-9,-9,-9,1,1,0,47,3,0,1,0,1,-9,2,1,0,3,8.731652264733773,8.756231209126137,6.450572553372907,4,0,0,0,-9,0,-1019.375466068038,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,21,9,37,36,15,1,9,-9,0,20.86834369586959,20.86834369586959,0,0,0,0,0,0,0,1,1,0,6.5877855107799,0,0,0,39.93,57.19,6,1,0,0,12,5,1,166.5,0,0,0 +15824,19374,35348,-9,35347,-9,2,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1060.7967740724,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,166.5,0,0,0 +15825,19375,35349,35350,-9,-9,2,1,0,76,1,0,0,0,2,-9,4,3,0,2,0,6.073891464262282,5.951978941919819,1,0,-9,58,0,-1,24.72107881369135,0,0,0,77,2,3,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.251459679103081,5.852049462026627,0,0,53.61,39.14,6,1,0,0,10,2,1,816,0,0,0 +15825,19375,35350,35349,-9,-9,1,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,7.50619262609292,7.10596522448926,1,0,-9,58,0,1,-94.22843097548883,0,0,0,76,2,2,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.459815135727978,7.101731307766057,0,0,58.5,44.67,4,1,0,0,10,2,1,816,0,0,0 +15826,19376,35351,35352,-9,-9,1,1,1,65,1,0,0,0,2,-9,2,1,0,3,7.281748612225567,8.408986116494033,8.050137552207861,1,0,-9,44,0,2,101.0485749902212,0,0,0,63,3,1,3,3,3,2019,2,2,9,0,17,7,15,1,0,3,0,8.220329091635678,8.220329091635678,0,0,0,0,0,0,0,1,1,0,4.73070813230226,8.148493141017509,0,0,55.71,46,4,1,0,0,9,4,1,1602,0,0,0 +15826,19376,35352,35351,-9,-9,2,1,0,63,1,0,0,0,3,-9,8,3,1,1,0,3.941763912930812,4.201894183512,1,0,-9,44,0,-2,-85.57755786989212,0,0,0,65,2,3,1,3,3,2019,3,1,30,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.381683464163511,4.003001891122803,0,0,29.53,19.07,2,2,0,1,9,4,1,1602,0,0,0 +15827,19377,35353,-9,-9,-9,1,1,0,59,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-998.4366985227085,0,0,0,-9,-9,-9,-9,-9,1,2019,-9,0,7,1,0,10,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,4,1,1,1,8,1,0,229,0,0,0 +15828,19378,35354,-9,-9,-9,1,1,1,25,2,0,0,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1072.374704580775,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,5,1,0,0,6,1,0,339,0,0,0 +15829,19379,35355,35356,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,3,0,8.480326468444035,8.037963914174208,1,0,-9,49,0,0,-11.92138146737493,0,0,0,72,1,3,3,3,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.7183178485642845,8.052352206593318,0,0,51.08,41.36,6,1,0,0,10,4,1,1386.5,0,0,0 +15829,19379,35356,35355,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,7.832789091190788,7.855339073334407,1,0,-9,49,0,0,-152.8726951842752,0,0,0,72,1,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.961575778589268,7.822854449513959,0,0,58.02,42.12,6,1,0,0,10,4,1,1386.5,0,0,0 +15830,19380,35357,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,2,0,6.651464416732836,6.383664536002174,3,0,0,0,-9,0,-968.6598964476237,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,26,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.261436504966018,6.793329275219367,0,3,26.84,55.7,1,1,0,0,8,2,1,1667,0,0,0 +15831,19381,35358,35359,-9,-9,1,1,0,48,1,0,1,0,3,-9,2,1,0,3,5.603790861528448,5.873445685929368,0,2,0,-9,30,0,-4,-158.4356831361484,0,0,0,52,3,1,1,-9,-9,2019,1,2,15,3,6,6,15,1,3,1,0,6.184667150549688,6.184667150549688,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.94,48.26,6,1,0,0,10,4,0,1075.5,0,0,0 +15831,19381,35359,35358,-9,-9,2,1,1,52,1,0,1,0,3,-9,1,1,0,1,8.240913889398984,8.595273234903532,0,2,0,-9,30,0,4,103.0900760047615,-9,0,0,48,3,3,1,-9,-9,2019,1,1,12,0,55,0,15,1,0,1,0,11.34607868433958,11.34607868433958,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,30.66,5,1,0,0,10,4,0,1075.5,0,0,0 +15832,19382,35360,-9,35361,-9,1,1,0,34,3,0,0,0,2,-9,2,1,0,3,7.326266142011608,7.57641363549336,0,3,0,0,0,-9,0,-977.0365403114184,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,21,28,15,1,7,-9,1,8.198039297944238,8.198039297944238,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,5,1,0,0,9,3,0,332,0,0,0 +15832,19383,35361,-9,-9,-9,2,1,0,67,3,0,0,0,3,-9,1,1,0,2,7.070544566711773,6.869551013204976,0,3,0,0,0,-9,0,-1048.944767386993,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,5,0,15,1,2,-9,0,25.44270961026145,25.44270961026145,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,39.22,5,5,0,1,9,2,0,557,0,0,0 +15833,19384,35362,-9,-9,-9,1,1,1,74,3,0,0,0,1,-9,4,3,0,3,0,8.340185192481933,8.009177394580499,3,0,0,0,-9,0,-911.2194146558443,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1179196782887,8.371441701526738,0,0,51,43.86,7,1,0,0,4,4,1,240,0,0,0 +15834,19385,35363,-9,-9,-9,1,1,0,73,2,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-992.2232645451165,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,1,0,0,25.48357850148425,0,0,0,1,1,0,0,0,0,0,47.48,20.03,4,1,0,0,13,1,0,161,0,0,0 +15835,19386,35364,-9,35366,35367,4,1,0,16,2,0,2,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1109.391680695897,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,44.8,7,3,0,0,8,3,1,581.5,0,0,0 +15835,19386,35365,-9,35366,35367,5,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.219110926202,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,3,1,581.5,0,0,0 +15835,19386,35366,35367,-9,-9,2,1,0,46,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,21,0,-5,-113.0822330250805,0,0,0,51,1,3,1,3,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,3,0,0,8,3,1,581.5,0,0,0 +15835,19386,35367,35366,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,3,8.660492781728735,8.823947557358521,0,2,0,-9,21,0,5,-24.99280435047503,0,0,0,46,2,5,3,3,2,2019,2,2,8,0,40,35,15,1,0,3,0,18.04727730489429,18.04727730489429,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,3,0,0,8,3,1,581.5,0,0,0 +15835,19387,35368,-9,35366,35367,3,1,0,19,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-978.1153017492531,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.65,56.13,7,3,0,0,8,1,1,1040,0,0,0 +15836,19388,35369,-9,-9,-9,1,1,0,24,2,0,0,1,1,0,7,2,0,5,0,7.347155265404005,6.980208570242894,3,0,0,0,-9,0,-1038.447608689289,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,11,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.641929336753074,0,.0100752483398223,3,46.53,61.33,6,1,0,0,5,3,0,452,0,0,0 +15836,19389,35370,-9,-9,-9,3,1,0,23,2,0,0,1,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1006.927342202038,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.88,59.97,6,1,0,0,5,1,0,705,0,0,0 +15836,19390,35371,-9,-9,-9,4,1,0,22,2,0,0,1,2,0,7,2,0,3,5.572917852706661,6.552633501651524,5.715157993717707,3,0,0,0,-9,0,-1031.906696998428,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.885166377086792,0,0,0,44.38,58.1,6,1,0,0,5,2,0,605,0,0,0 +15837,19391,35372,-9,-9,-9,1,1,0,66,3,0,0,0,1,-9,4,3,0,3,0,4.831712042468625,4.864156220035593,3,0,0,0,-9,0,-1191.634926691791,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.943021528359258,2.989340152653979,3,49.02,47.84,3,4,0,1,8,2,0,477,0,0,0 +15838,19392,35373,35374,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,3,8.703436670276314,8.40062416964412,0,1,0,-9,26,0,0,-104.9454277545676,0,0,0,68,2,4,3,-9,-9,2019,2,2,16,4,44,57,15,1,4,4,0,11.47120202826853,11.47120202826853,0,0,0,0,0,0,0,1,1,0,2.091021999595056,0,0,0,38.17,54.26,6,1,0,0,5,5,1,295.5,0,0,0 +15838,19392,35374,35373,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,8.23862301855886,8.40203102503337,1,0,-9,30,0,9,-53.19140397341575,0,0,0,59,2,3,1,3,3,2019,3,1,6,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.584065331180133,8.339782752348572,0,0,60.12,54.8,1,1,0,0,5,5,1,295.5,0,0,0 +15838,19393,35375,-9,35373,35374,3,1,0,23,2,0,0,0,1,-9,2,1,0,5,8.382259181202622,7.984865555673561,0,3,0,0,0,-9,0,-1008.157983725255,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,0,60,25,15,1,0,-9,1,8.125776198702933,8.125776198702933,0,0,0,0,0,0,0,1,1,0,.3220473593564702,0,0,0,54.1,59.11,6,1,0,0,5,4,1,790,0,0,0 +15838,19394,35376,-9,35373,35374,4,1,1,20,2,0,0,1,2,0,7,2,0,4,6.63582641405057,8.012927392275234,7.808279732495513,3,0,0,0,-9,0,-902.7004071615179,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,9,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.993287600255301,0,0,0,49.95,56.68,6,1,0,0,5,4,1,1291,0,0,0 +15839,19395,35377,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-999.1105768858188,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,1.687052702370992,0,3.872864106292542,.8444171471559836,4.905892800946376,0,1,1,0,0,0,0,0,42.46,39.71,5,1,0,0,13,1,0,1336,0,0,0 +15840,19396,35378,-9,-9,-9,1,1,0,79,3,0,0,0,2,-9,4,3,0,4,0,6.350356125911925,5.928120671686323,3,0,0,0,-9,0,-1066.434975047629,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.286399966671842,6.005756978061268,.4246749661533946,3,59.14,52.5,7,1,0,0,2,2,1,615,0,0,0 +15841,19397,35379,-9,-9,-9,1,1,1,57,3,0,1,0,3,-9,2,1,0,3,0,0,0,4,0,0,0,-9,0,-1055.288454034317,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,38,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.055124322665634,0,0,0,34.21,51.94,5,1,0,0,4,1,1,452,0,0,0 +15841,19397,35380,-9,-9,35379,2,1,0,17,2,0,1,1,2,0,7,2,0,3,0,7.158316941494385,7.134237173260487,4,0,0,0,-9,0,-1122.447122828307,-9,1,0,-9,-9,-9,-9,-9,3,2019,-9,0,19,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,7.266250571272557,0,0,0,35.56,52.74,2,1,0,0,4,1,1,452,0,0,0 +15842,19398,35381,35382,-9,-9,1,1,0,43,1,0,2,0,2,-9,1,1,0,5,6.480298647909373,6.387141816485663,0,2,0,-9,18,0,0,129.3595121145651,0,0,1,43,1,3,1,3,3,2019,1,2,12,0,16,10,15,1,0,1,0,4.054946189795696,4.054946189795696,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.3,62.37,5,1,0,0,9,4,1,872,0,0,0 +15842,19398,35382,35381,-9,-9,2,1,1,43,1,0,2,0,1,-9,2,1,0,3,8.730768101781541,9.029898354811014,0,2,0,-9,19,0,0,-38.8210793305999,0,0,0,43,2,5,1,1,1,2019,1,1,8,0,20,55,15,1,0,1,0,38.46737817477332,38.46737817477332,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,6,1,0,0,9,4,1,872,0,0,0 +15842,19398,35383,-9,35381,35382,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1093.465256670953,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,4,1,872,0,0,0 +15842,19398,35384,-9,35381,35382,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.648881177084,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,4,1,872,0,0,0 +15843,19399,35385,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,5,0,6.782483569927429,6.888809632116831,3,0,0,0,-9,0,-1074.91175121198,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.321090078037644,0,0,59.43,58.05,7,1,0,0,2,2,1,637,0,0,0 +15844,19400,35386,-9,35388,35387,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1008.355366352774,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,2,4,1,1112.333333333333,0,0,0 +15844,19400,35387,35388,-9,-9,2,1,1,44,1,0,1,0,2,-9,2,1,0,4,8.708904959597909,8.120574270473448,0,2,0,-9,25,0,2,32.0404206306297,0,0,0,42,2,4,1,3,3,2019,1,1,8,0,42,40,15,1,0,1,0,11.97876036072128,11.97876036072128,0,0,0,0,0,0,0,1,1,0,2.484289477489346,0,0,0,55.79,52.62,6,1,0,0,2,4,1,1112.333333333333,0,0,0 +15844,19400,35388,35387,-9,-9,1,1,0,42,1,0,1,0,2,-9,2,1,0,4,7.968870532901131,8.209564702862737,0,2,0,-9,25,0,-2,63.32349072395765,0,0,1,44,2,4,1,3,3,2019,1,2,8,0,21,28,15,1,0,1,0,14.58581966433352,14.58581966433352,0,0,0,0,0,0,0,1,1,0,.3392807126605327,0,0,0,46.44,59.62,2,1,0,0,2,4,1,1112.333333333333,0,0,0 +15845,19401,35389,35391,-9,-9,1,1,1,51,1,0,1,0,1,-9,2,1,0,4,8.836862951229387,9.032328982412695,0,2,0,-9,3,0,6,-16.15694284457679,0,0,0,45,1,4,1,3,3,2019,1,2,6,0,40,40,15,1,0,1,0,19.12504048164597,19.12504048164597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,2,5,1,459,0,0,0 +15845,19401,35390,-9,35391,35389,3,1,1,17,2,0,1,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-946.5061573871469,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,2,5,1,459,0,0,0 +15845,19401,35391,35389,-9,-9,2,1,0,45,1,0,1,0,1,-9,2,1,0,4,9.596063051622828,9.748119695276824,0,2,0,-9,3,0,-6,-47.77651555438067,0,0,0,51,1,4,1,-9,-9,2019,1,1,10,0,40,50,15,1,1,1,0,44.10536015588426,44.10536015588426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,5,1,0,0,2,5,1,459,0,0,0 +15846,19402,35392,-9,-9,-9,1,1,1,55,2,0,0,0,1,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-955.9489529533676,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,20,7,0,0,15,3,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.760891317228921,0,0,0,45.18,32.54,2,4,0,1,8,1,1,144,0,0,0 +15847,19403,35393,-9,-9,-9,1,1,0,55,2,0,0,0,1,-9,4,3,0,3,0,8.334734255272766,8.146673996090962,3,0,0,0,-9,0,-929.0131267423479,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,40,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,3.705661420840626,8.083571432597529,0,3,48.24,41.22,6,1,0,0,12,4,1,434,0,0,0 +15848,19404,35394,-9,-9,-9,1,1,0,82,3,0,0,0,1,-9,4,3,0,3,0,6.138757609986833,6.648056290874322,3,0,0,0,-9,0,-1062.8692766369,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,6.865641010916106,0,0,0,0,52.21256785077046,1,1,0,3.179673822593562,6.896967448664962,0,0,52,45,6,1,0,0,2,2,1,1563,0,0,0 +15849,19405,35395,35396,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,1,0,6.392576230861363,6.237278254392933,1,0,-9,40,0,-8,-72.27917486232454,0,0,0,71,2,1,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.165350941533878,6.419331986800485,65.21035492625765,1,46.9,24.85,4,1,0,0,9,2,1,202,0,0,0 +15849,19405,35396,35395,-9,-9,1,1,0,71,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,40,0,8,-167.9707121449789,0,0,0,63,3,1,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,1,0,3.719815718236662,0,0,0,0,1,1,0,0,0,0,0,51.83,30.93,6,1,0,0,9,2,1,202,0,0,0 +15850,19406,35397,35398,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,6,0,-2,0,0,0,0,62,2,5,3,-9,-9,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.935159243431207,0,8.842826086583333,3,56.18,51.02,6,1,0,0,7,1,1,2309.5,0,0,0 +15850,19406,35398,35397,-9,-9,1,1,1,62,1,0,0,0,2,-9,4,3,0,5,0,0,0,1,0,-9,34,0,2,0,0,0,0,60,2,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.325120893246877,0,2.856047755326969,3,58.05,54.52,6,1,0,0,7,1,1,2309.5,0,0,0 +15851,19407,35399,-9,35402,35400,5,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.890857272542,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,1,779.5,0,0,0 +15851,19407,35400,35402,-9,-9,4,1,1,41,1,0,2,0,3,-9,1,1,0,4,8.609475569032762,9.002334705657653,0,2,0,-9,7,0,-5,-27.96490961232607,0,0,0,46,2,4,3,3,3,2019,2,1,9,0,18,30,15,1,1,3,0,46.73414097510815,46.73414097510815,0,0,0,0,0,0,0,1,1,0,0,0,3.464493678751027,3,51,56,6,1,0,0,10,4,1,779.5,0,0,0 +15851,19407,35401,-9,35402,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.0403881504069,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,4,1,779.5,0,0,0 +15851,19407,35402,35400,-9,-9,1,1,0,46,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,7,0,5,60.73899970171161,0,0,0,41,3,4,1,2,2,2019,3,4,17,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3106916879995,3,28.06,58.56,4,1,0,0,10,4,1,779.5,0,0,0 +15851,19408,35403,-9,35402,-9,2,1,1,24,2,0,2,0,2,-9,2,1,0,4,7.78617284046035,7.559207092432592,0,3,0,0,0,-9,0,-1019.470379545583,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,38,24,15,1,0,-9,1,6.79122857974769,6.79122857974769,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.3,57.54,6,1,0,0,10,3,1,637,0,0,0 +15852,19409,35404,35405,-9,-9,2,1,1,60,1,0,0,0,1,-9,2,1,0,4,8.448674217471952,8.256119693340827,0,1,0,-9,1,-9,0,-9.917046510205374,-9,0,0,60,1,3,1,-9,-9,2019,1,1,7,0,38,0,15,1,0,1,0,14.86340808959591,14.86340808959591,0,0,0,0,0,0,0,0,0,0,4.145047368333194,0,0,0,52.4,55.58,6,1,0,0,9,5,1,741.5,0,0,0 +15852,19409,35405,35404,-9,-9,1,1,0,60,1,0,0,0,1,-9,2,1,0,3,8.734823676224796,8.972246961706347,0,1,0,1,1,-9,0,24.47506909503096,0,0,0,60,1,4,1,3,2,2019,1,2,5,2,47,104,15,1,2,1,0,17.78014854530679,17.78014854530679,0,0,0,0,0,0,0,0,0,0,5.33359837454138,0,6.834283381547428,3,56.94,49.53,6,1,0,0,9,5,1,741.5,0,0,0 +15853,19410,35406,35408,-9,-9,1,1,0,52,1,0,1,0,1,-9,97,3,0,4,0,0,0,2,0,-9,2,0,8,12.03364172894221,0,0,0,44,2,5,1,2,3,2019,3,3,8,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.628340232031121,0,0,0,58.15,52.91,6,1,0,0,6,4,1,524,0,0,0 +15853,19410,35407,-9,35406,35408,2,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-898.1691303511856,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,6,4,1,524,0,0,0 +15853,19410,35408,35406,-9,-9,3,1,1,44,1,0,1,0,2,-9,2,1,0,5,8.771907746104255,8.887689027050607,0,2,0,-9,2,0,-8,115.4464758738008,0,0,0,52,1,4,3,-9,-9,2019,2,1,6,0,40,41,15,1,0,3,0,18.57859157363239,18.57859157363239,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,6,4,1,524,0,0,0 +15854,19411,35409,-9,-9,-9,1,1,1,41,2,0,0,0,1,-9,2,1,0,3,8.283508880906414,8.82459630802461,6.959074078542344,3,0,-9,0,-9,0,-857.6397016406091,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,52,0,15,1,0,-9,1,9.796420546361919,9.796420546361919,0,0,0,0,0,0,0,1,1,0,7.258320613364782,0,0,0,53.56,49.66,5,1,0,0,11,5,1,157,0,0,0 +15855,19412,35410,35411,-9,-9,2,1,1,67,1,0,0,0,1,-9,4,3,0,3,0,8.219566788951525,7.890848922787947,1,0,-9,42,0,4,110.018117682215,0,0,0,63,2,3,3,2,1,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0375210247981,7.755355852066208,0,0,62.27,42.94,6,1,0,0,9,3,1,880,0,0,0 +15855,19412,35411,35410,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,6.488897574864495,6.546901933535978,1,0,-9,42,0,-4,-124.4348193600874,0,0,0,67,1,3,3,2,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.906433128316123,6.442049502872743,0,0,41.51,56.74,6,1,0,0,9,3,1,880,0,0,0 +15856,19413,35412,-9,-9,-9,1,1,1,53,2,0,0,0,2,-9,1,1,0,3,8.584239040087697,8.343472570925226,0,3,0,0,0,-9,0,-995.8988911546799,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,0,30,30,15,1,0,-9,0,17.86503190206419,17.86503190206419,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,5,1,0,0,10,4,0,315,0,0,0 +15857,19414,35413,-9,-9,-9,1,1,0,38,2,0,1,0,1,-9,2,1,0,2,8.449966049358425,8.372128223262857,0,4,0,0,0,-9,0,-964.9427514534926,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,14,3,38,41,15,1,3,-9,0,16.55452144097153,16.55452144097153,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,50.23,3,1,0,1,13,4,1,563,0,0,0 +15857,19414,35414,-9,35413,-9,2,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-964.5585158608683,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,13,4,1,563,0,0,0 +15858,19415,35415,35416,-9,-9,1,1,1,48,1,0,2,0,2,-9,2,1,0,5,9.554656479552294,9.64604635424821,0,2,0,-9,8,0,0,42.95395463088396,0,0,0,48,1,4,1,2,2,2019,1,2,8,0,40,40,15,1,0,1,0,33.93263900595896,33.93263900595896,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,51.82,1,1,0,0,12,5,1,562.5,0,0,0 +15858,19415,35416,35415,-9,-9,2,1,0,48,1,0,2,0,1,-9,2,1,0,4,8.796365009421629,8.506545856094673,0,2,0,-9,8,0,0,6.6306716033406,0,0,0,48,2,5,1,-9,-9,2019,1,1,10,0,17,20,15,1,0,1,0,43.02477647059828,43.02477647059828,0,0,0,0,0,0,0,1,1,0,6.916687631006122,0,0,0,51.81,57.22,6,1,0,0,12,5,1,562.5,0,0,0 +15858,19415,35417,-9,35416,35415,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-898.9022411653247,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,5,1,562.5,0,0,0 +15858,19415,35418,-9,35416,35415,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.542424221809,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,5,1,562.5,0,0,0 +15859,19416,35419,-9,35420,-9,1,1,0,29,2,0,0,0,1,-9,2,1,0,5,8.842111846707217,8.527772281458025,0,3,0,-9,0,-9,0,-844.5945917628235,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,1,35,0,15,1,1,-9,1,22.85257564715129,22.85257564715129,0,0,0,0,0,0,0,1,1,0,1.242339893569666,0,0,0,62.39,56.71,7,3,0,0,8,5,1,625,0,0,0 +15859,19417,35420,-9,-9,-9,2,1,0,67,3,0,0,0,3,-9,6,3,0,3,0,0,0,3,0,-9,0,-9,0,-1021.563614598312,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,3,0,0,8,1,1,846,0,0,0 +15859,19418,35421,-9,35420,-9,3,1,0,37,3,0,0,0,1,-9,3,3,0,3,0,0,0,3,0,-9,0,-9,0,-967.6218975893653,-9,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.04,51.3,6,3,1,1,8,1,1,163,0,0,0 +15859,19419,35422,35423,35420,-9,5,1,1,42,1,0,0,0,2,-9,2,1,0,4,6.761897559934782,6.951142780018036,0,1,0,-9,1,-9,13,-20.34276230953662,-9,0,0,29,2,4,3,3,-9,2019,2,4,9,0,20,0,15,1,1,3,0,4.890419608117726,4.890419608117726,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,5,3,0,1,8,2,1,1295,0,0,0 +15859,19419,35423,35422,-9,-9,4,1,0,29,1,0,0,0,2,-9,6,3,0,4,0,0,0,1,0,-9,1,-9,-13,12.46985823826459,-9,0,1,42,2,4,1,-9,-9,2019,3,5,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,3,0,0,8,2,1,1295,0,0,0 +15859,19420,35424,-9,-9,-9,6,1,0,20,2,0,0,0,2,-9,2,1,0,3,7.881459073737133,8.175964763379543,0,3,0,-9,0,-9,0,-1026.532710652083,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,35,0,15,1,0,-9,0,10.2110651265193,10.2110651265193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,47.92,6,3,0,0,8,3,1,805,0,0,0 +15859,19421,35425,-9,-9,-9,7,1,0,20,2,0,0,1,2,-9,7,2,0,4,6.528169199441623,6.586816503694187,0,3,0,-9,0,-9,0,-917.4575671981297,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,1,14,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,52.46,6,3,0,0,8,2,1,297,0,0,0 +15859,19422,35426,-9,-9,-9,8,1,0,20,2,0,0,1,2,-9,7,2,0,3,0,0,0,3,0,-9,0,-9,0,-990.2997764159711,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,34,12,0,0,15,2,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.61,62.71,4,3,0,0,8,1,1,315,0,0,0 +15859,19423,35427,-9,-9,-9,9,1,1,40,2,0,0,0,2,-9,2,1,0,4,8.277100967762491,8.195499023364002,0,3,0,-9,0,-9,0,-941.6195908902732,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,46,0,15,1,1,-9,0,10.63178442224988,10.63178442224988,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,5,3,0,0,8,4,1,515,0,0,0 +15859,19424,35428,-9,-9,-9,10,1,0,49,2,0,0,0,2,-9,6,3,0,4,0,0,0,3,0,-9,0,-9,0,-888.6358894451062,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,3,0,0,8,1,1,1046,0,0,0 +15860,19425,35429,-9,35432,35430,3,1,0,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-948.7709068417024,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,9,4,1,1332,0,0,0 +15860,19425,35430,35432,-9,-9,1,1,1,54,1,0,2,0,2,-9,1,1,0,4,7.636500717520285,7.757516831749618,0,2,0,-9,17,0,12,-6.428381458542368,0,0,0,42,1,3,1,2,1,2019,1,2,9,0,50,50,15,1,0,1,0,4.806693959644702,4.806693959644702,0,0,0,0,0,0,0,1,1,0,5.201494787002145,0,0,0,54.2,57.49,6,1,0,0,9,4,1,1332,0,0,0 +15860,19425,35431,-9,35432,35430,4,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-906.4279935074546,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,9,4,1,1332,0,0,0 +15860,19425,35432,35430,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,3,8.560613425642714,8.587455075556678,6.339205423571755,2,0,-9,20,0,-12,-43.0182621480745,0,0,1,54,2,4,1,3,2,2019,1,1,7,0,30,34,15,1,0,1,0,19.42088024567061,19.42088024567061,0,0,0,0,0,0,0,1,1,0,6.225082831511298,0,0,0,50.11,55.32,6,1,0,0,9,4,1,1332,0,0,0 +15861,19426,35433,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-997.972442433772,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,5,1,0,0,12,1,0,958,0,0,0 +15862,19427,35434,-9,35438,-9,3,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.875542028736,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,4,0,1056.2,0,0,0 +15862,19427,35435,35438,-9,-9,1,1,1,32,1,0,3,0,2,-9,2,1,0,4,8.195219647746667,8.272041065739131,0,2,0,-9,6,0,0,-40.10135463523086,0,0,0,32,2,3,1,2,2,2019,1,2,11,0,39,40,15,1,0,1,0,9.754737001588264,9.754737001588264,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,58.29,6,1,0,0,2,4,0,1056.2,0,0,0 +15862,19427,35436,-9,35438,35435,4,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-969.7328553060964,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,0,1056.2,0,0,0 +15862,19427,35437,-9,35438,35435,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-867.7838159429407,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,4,0,1056.2,0,0,0 +15862,19427,35438,35435,-9,-9,2,1,0,32,1,0,3,0,2,-9,2,1,0,3,8.25018024809904,8.692997894157156,0,2,0,-9,6,0,0,-106.567462730922,0,0,1,32,2,4,1,-9,-9,2019,1,1,7,0,32,30,15,1,0,1,0,13.91338736073184,13.91338736073184,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.02,42.66,6,1,0,0,2,4,0,1056.2,0,0,0 +15863,19428,35439,35440,-9,-9,1,1,0,80,1,0,0,0,2,-9,4,3,0,4,0,5.899991753310714,5.889745690810464,1,0,-9,7,0,-2,37.6663293099224,0,0,0,82,3,1,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,0,.4742402455384518,0,0,0,1,1,0,5.409877428273037,5.773355442802441,12.41902802835204,1,59.58,39.94,7,1,0,0,12,2,1,506,0,0,0 +15863,19428,35440,35439,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,1,0,7.190735905603026,7.318925447876755,1,0,-9,7,0,2,-188.9135719209806,0,0,0,80,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,8.865780585682483,0,0,0,0,1,1,0,0,7.160709907299108,0,0,57.91,9.140000000000001,4,1,0,0,12,2,1,506,0,0,0 +15864,19429,35441,-9,-9,-9,1,1,0,19,3,0,0,0,2,-9,3,3,0,2,3.915725794887639,3.982631982044806,0,3,0,-9,0,-9,0,-964.4207520212863,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.03,57.05,2,1,1,0,1,1,1,454,0,0,0 +15865,19430,35442,-9,35443,35447,5,1,1,7,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1078.908022747172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,6,2,1,501.3333333333333,0,0,0 +15865,19430,35443,35447,-9,-9,2,1,0,33,1,1,4,0,2,-9,2,1,0,4,6.91898804380055,7.270307034111597,4.858259015719965,2,0,-9,8,0,-13,-94.30681901226885,0,0,1,46,2,4,1,2,2,2019,1,1,7,0,18,16,15,1,0,1,0,5.613483403964125,5.613483403964125,0,0,0,0,0,0,0,1,0,1,5.762131784370238,0,0,0,51.83,57.2,6,1,0,0,6,2,1,501.3333333333333,0,0,0 +15865,19430,35444,-9,35443,35447,4,1,1,8,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1027.294802376463,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,1,0,0,6,2,1,501.3333333333333,0,0,0 +15865,19430,35445,-9,35443,35447,3,1,0,16,2,1,4,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-935.1948775215644,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.29,54.59,6,1,0,0,6,2,1,501.3333333333333,0,0,0 +15865,19430,35446,-9,35443,35447,6,1,1,2,2,1,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.420152922891,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,6,2,1,501.3333333333333,0,0,0 +15865,19430,35447,35443,-9,-9,1,1,1,46,1,1,4,0,2,-9,2,1,0,4,7.746601452554781,7.611400005784647,0,2,0,-9,8,0,13,20.71520956299948,0,0,0,33,2,4,1,2,-9,2019,1,2,20,7,37,38,15,1,7,1,0,5.69583712731493,5.69583712731493,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.14,57.86,5,1,0,0,6,2,1,501.3333333333333,0,0,0 +15866,19431,35448,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1097.101200029907,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,1.256440857011947,0,0,0,1.639593872448353,49.8262626761498,1,1,0,0,0,0,0,53,44,6,1,0,0,9,1,0,1268,0,0,0 +15867,19432,35449,35450,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,2.368156216315833,2.4429845455633,1,0,-9,44,0,-1,13.62260362825848,0,0,0,67,3,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.702606756989412,2.265030038627722,0,0,54.97,47.63,6,1,0,0,4,2,1,608.5,0,0,0 +15867,19432,35450,35449,-9,-9,1,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,5.845375751495632,5.631279655281854,1,0,-9,45,0,1,17.49941510859868,0,0,0,66,3,3,3,2,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2978941771724,6.216181704833059,0,0,60.12,54.8,2,1,0,0,4,2,1,608.5,0,0,0 +15868,19433,35451,35452,-9,-9,1,1,0,68,1,0,1,0,3,-9,6,3,0,4,0,0,0,2,0,-9,32,0,14,58.5243305481226,0,0,0,54,2,1,1,3,2,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.49561457046737,2,25.26,57.4,5,1,0,0,11,3,1,919.5,0,0,0 +15868,19433,35452,35451,-9,-9,2,1,1,54,1,0,1,0,2,-9,2,1,0,1,8.435380969837567,8.204940944952346,0,2,0,-9,32,0,-14,-62.69025485992761,0,0,0,68,3,4,3,2,2,2019,2,1,7,1,21,20,15,1,1,3,0,22.55884997356969,22.55884997356969,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,4.64,7,1,0,0,11,3,1,919.5,0,0,0 +15868,19434,35453,-9,35451,35452,3,1,0,31,2,0,1,0,2,-9,6,3,0,4,0,6.082325360368759,5.652373703252596,3,0,0,0,-9,0,-967.155794881835,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,20,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,5.563123885649276,0,119.4472077090566,3,46.63,59.72,6,1,0,0,11,2,1,618.5,0,0,0 +15868,19434,35454,-9,35453,-9,4,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-922.8049719279252,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,11,2,1,618.5,0,0,0 +15869,19435,35455,-9,-9,-9,1,1,0,65,2,0,0,0,3,-9,4,3,0,4,0,7.191524154369804,7.074541302180062,3,0,0,0,-9,0,-1098.276614031179,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.017616868154442,0,0,44.87,55.13,7,1,0,0,7,2,0,240,0,0,0 +15870,19436,35456,35457,-9,-9,1,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,8.203170648210808,8.467986288139539,1,0,-9,44,0,0,107.3359928985449,0,0,0,65,1,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.619285845550763,8.314422260735405,0,0,54.2,57.49,7,1,0,0,10,4,1,125,0,0,0 +15870,19436,35457,35456,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,7.276894379502048,6.877675327544239,1,0,-9,42,0,0,13.05133393521201,0,0,0,65,1,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.00584276091281,7.25100012746978,.207397374727307,3,56.1,49.93,7,1,0,0,10,4,1,125,0,0,0 +15871,19437,35458,35459,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,7.700746119237285,7.551132496062054,1,0,-9,6,0,2,-189.2537818115057,0,0,0,72,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.902241388162969,7.487225511717194,0,0,52,54.51,6,1,0,0,2,3,1,409.5,0,0,0 +15871,19437,35459,35458,-9,-9,2,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,6,0,-2,-8.999147753542076,0,0,0,74,1,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.855276802697805,0,0,0,50.07,47.32,7,1,0,0,2,3,1,409.5,0,0,0 +15872,19438,35460,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,4,0,5.384992818028573,5.430616688571599,3,0,0,0,-9,0,-925.4920925994519,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,3.914269400386548,0,1,1,0,.6753427098262927,5.331174644718686,0,0,58.9,43.04,6,1,0,0,5,2,0,182,0,0,0 +15873,19439,35461,-9,-9,-9,1,1,0,35,2,0,0,0,1,-9,2,1,0,4,9.207411814096359,9.251174921477345,0,3,0,0,0,-9,0,-1043.119925880654,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,20,8,46,78,15,1,8,-9,0,21.00694258364327,21.00694258364327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,3,3,0,0,9,5,1,681,0,0,0 +15874,19440,35462,35464,-9,-9,2,1,0,40,1,0,2,0,2,-9,3,3,0,3,0,0,0,2,0,-9,11,0,0,0,0,0,1,40,1,2,3,2,2,2019,4,1,9,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.75328701629716,1,37.64,55.65,4,3,1,0,10,1,0,548.75,0,0,0 +15874,19440,35463,-9,35462,35464,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.6945987508325,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,10,1,0,548.75,0,0,0 +15874,19440,35464,35462,-9,-9,1,1,1,40,1,0,2,0,1,-9,8,3,1,2,0,0,0,2,0,-9,11,0,0,0,0,0,0,40,2,3,3,1,1,2019,4,2,20,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.07,25.5,4,3,0,0,10,1,0,548.75,0,0,0 +15874,19440,35465,-9,35462,35464,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1010.983743138922,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,10,1,0,548.75,0,0,0 +15875,19441,35466,-9,-9,-9,1,1,0,55,2,0,1,0,2,-9,2,1,0,3,7.426398928378145,7.305714276382336,0,4,0,0,0,-9,0,-985.3890223085268,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,16,6,22,25,15,1,6,-9,0,8.914845830556121,8.914845830556121,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,52.72,5,1,0,1,12,2,1,720.5,0,0,0 +15875,19441,35467,-9,35466,-9,2,1,0,17,2,0,1,0,2,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-852.8714900495263,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.16,43.17,3,2,1,1,12,2,1,720.5,0,0,0 +15876,19442,35468,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,5,0,5.671517398831681,5.492380923008332,3,0,0,0,-9,0,-1082.027100041752,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.653469701138309,5.440485184296305,0,0,57.06,57.76,7,1,0,0,13,2,1,403,0,0,0 +15877,19443,35469,-9,-9,-9,1,1,0,62,2,0,0,0,2,-9,1,1,0,3,0,6.893247297517596,6.758147188994617,3,0,0,0,-9,0,-967.5904832915469,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,60,48,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.753620385962011,0,0,52.95,39.08,6,1,0,0,11,2,0,874,0,0,0 +15878,19444,35470,35471,-9,-9,2,1,1,47,1,0,0,0,2,-9,2,1,0,5,9.994001810921739,9.996214400654106,6.797911978409934,1,0,-9,6,0,12,82.25603023894966,0,0,0,35,1,5,1,2,3,2019,1,1,6,0,38,50,15,1,0,1,0,41.79411352066542,41.79411352066542,0,0,0,0,0,0,0,1,1,0,5.676056903460355,7.087800768716416,0,0,57.06,57.76,7,1,0,0,10,5,1,722,0,0,0 +15878,19444,35471,35470,-9,-9,1,1,0,35,1,0,0,0,1,-9,2,1,0,5,8.763006775867751,8.550597587020071,0,1,0,-9,6,0,-12,82.3126879366053,0,0,1,47,2,5,1,2,2,2019,1,2,8,0,54,48,15,1,0,1,0,10.49966652660609,10.49966652660609,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,10,5,1,722,0,0,0 +15879,19445,35472,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-966.3928808778001,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,0,0,1.886369362434761,0,0,0,1,1,0,1.701687481568918,0,0,0,33.03,17.46,2,1,0,0,6,1,1,871,0,0,0 +15880,19446,35473,35474,-9,-9,2,1,1,55,1,0,0,0,3,-9,2,1,0,3,8.421752206937912,8.23406930640434,0,1,0,-9,37,0,1,-87.58865536809618,0,0,0,54,2,5,1,2,2,2019,1,1,11,2,40,37,15,1,2,1,0,11.89018155387961,11.89018155387961,0,0,0,0,0,0,0,0,0,0,5.016111868823292,0,0,0,59.29,37.6,6,1,0,0,7,5,1,686,0,0,0 +15880,19446,35474,35473,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,5,8.610139855554543,8.187024161404871,0,1,0,-9,37,0,-1,-193.7649243987319,0,0,0,55,3,3,1,3,1,2019,1,2,16,4,47,57,15,1,4,1,0,11.77005370057928,11.77005370057928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.94,65.38,5,2,0,0,7,5,1,686,0,0,0 +15881,19447,35475,-9,35478,35477,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-914.0271628323865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,3,0,1311.5,0,0,0 +15881,19447,35476,-9,35478,35477,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.1064276613215,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,8,3,0,1311.5,0,0,0 +15881,19447,35477,35478,-9,-9,1,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.653135614594515,8.702666660601105,0,2,0,-9,14,0,-3,8.514149132158808,0,0,0,43,2,5,3,-9,-9,2019,2,2,5,0,50,50,15,1,0,3,0,14.24483714836337,14.24483714836337,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,5,1,0,0,8,3,0,1311.5,0,0,0 +15881,19447,35478,35477,-9,-9,2,1,0,43,1,0,2,0,2,-9,6,3,0,5,0,0,0,2,0,-9,14,0,3,-93.483604754578,0,0,1,40,2,4,1,2,2,2019,3,1,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,53.11,5,4,0,0,8,3,0,1311.5,0,0,0 +15882,19448,35479,35480,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,3,8.277936364680485,8.404462612561238,0,1,0,-9,36,0,2,172.9756865499303,0,0,0,55,2,4,1,3,3,2019,1,1,5,0,37,37,15,1,0,1,0,12.51534173498449,12.51534173498449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.89,48.06,7,1,0,0,2,5,1,681.5,0,0,0 +15882,19448,35480,35479,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.249502287154733,8.170250318343662,0,1,0,-9,35,0,-2,.4169428877433774,0,0,0,57,2,3,1,1,3,2019,1,2,12,0,38,38,15,1,0,1,0,9.866487695582467,9.866487695582467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.37,56.01,6,1,0,0,2,5,1,681.5,0,0,0 +15883,19449,35481,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,4,6.784029857613785,8.094707330878235,7.364658999823338,3,0,0,0,-9,0,-1056.626084512589,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,16,40,15,1,0,-9,0,7.952322055650949,7.952322055650949,0,0,0,0,0,0,0,0,0,0,5.802129301999243,7.261982347028807,8.045994237088868,3,54.79,55.86,6,1,0,0,10,4,1,702,0,0,0 +15884,19450,35482,-9,-9,-9,1,1,1,48,2,0,0,0,2,-9,2,1,0,4,8.250519479305868,8.221891721023974,0,3,0,0,0,-9,0,-1062.381472967637,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,1,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.306501796064371,0,0,0,53,54,6,4,0,0,8,4,0,663,0,0,0 +15885,19451,35483,35484,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,4.231826422381015,3.93356031323148,1,0,-9,51,0,-6,-133.0620758045017,0,0,0,85,3,2,3,3,3,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,1,0,29.2748238235702,0,0,0,0,1,1,0,0,3.783251628967034,0,0,52.24,30.08,6,1,0,0,7,2,1,765,0,0,0 +15885,19451,35484,35483,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,2,0,6.695612858956824,6.956941541494172,1,0,-9,61,0,6,54.67828341903652,0,0,0,79,3,2,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,0,9.386453304523915,0,0,0,1,1,0,5.141016883762537,6.860016245821837,4.172212804990123,1,58.88,40.91,6,1,0,0,7,2,1,765,0,0,0 +15886,19452,35485,35486,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,8.934855453310462,8.95781575268359,0,1,0,-9,11,0,2,50.57136125368438,0,0,0,61,3,3,3,3,3,2019,2,2,7,0,36,36,15,1,0,4,0,17.93334167921064,17.93334167921064,0,0,0,0,0,0,0,0,0,0,7.694177768571641,0,0,0,60.05,45.35,6,1,0,0,13,5,1,799.5,0,0,0 +15886,19452,35486,35485,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,3,0,6.832747272574313,7.631427738712694,1,0,-9,40,0,-2,-48.70890544455612,0,0,0,63,2,3,1,3,3,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.053211116572177,7.332836135798962,0,0,57.33,53.46,6,1,0,0,13,5,1,799.5,0,0,0 +15887,19453,35487,-9,-9,-9,1,1,0,75,3,0,0,0,2,-9,4,3,0,4,0,5.965186360502233,5.528651307360093,3,0,0,0,-9,0,-898.4829808120303,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.223765743572404,5.484844356217645,0,0,57.73,54.53,6,1,0,0,12,2,1,488,0,0,0 +15888,19454,35488,35489,-9,-9,1,1,0,53,1,0,0,0,2,-9,2,1,0,4,8.500205992657389,8.740590201499066,0,1,0,-9,18,0,10,-114.5506161734443,0,0,0,43,2,3,1,2,3,2019,1,2,0,0,50,40,15,1,0,1,0,14.84195909374071,14.84195909374071,0,0,0,0,0,0,0,0,0,0,7.635492288464305,0,20.21003634522071,3,58.26,54.26,6,1,0,0,7,5,1,1997,0,0,0 +15888,19454,35489,35488,-9,-9,2,1,1,43,1,0,0,0,2,-9,2,1,0,3,7.428370263814788,7.707791745624506,0,1,0,-9,18,0,-10,97.94442741387174,0,0,0,53,2,4,1,3,3,2019,1,1,6,0,100,60,15,1,0,1,0,2.212834297749901,2.212834297749901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,7,5,1,1997,0,0,0 +15888,19455,35490,-9,35488,35489,3,1,0,22,2,0,0,0,2,-9,2,1,0,3,8.192944494998116,7.997749747355217,0,3,0,0,0,-9,0,-932.2452495975562,-9,1,1,-9,-9,-9,-9,1,3,2019,-9,0,8,0,37,0,15,1,0,-9,1,9.687040365479726,9.687040365479726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.79,53.17,6,1,0,0,7,4,1,1042,0,0,0 +15889,19456,35491,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,6.556145998243704,6.516345608137421,3,0,0,0,-9,0,-970.8026206741765,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.929406971510627,6.631198876454611,0,0,43.88,28.33,3,1,0,0,8,2,1,297,0,0,0 +15890,19457,35492,-9,-9,-9,1,1,1,29,2,0,0,0,2,-9,2,1,0,3,7.796628827304981,7.737380063710533,0,3,0,0,0,-9,0,-909.1867940827686,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,39,39,15,1,0,-9,1,7.57653079285183,7.57653079285183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.01,40.66,6,1,0,0,2,3,1,651,0,0,0 +15891,19458,35493,-9,-9,-9,1,1,1,64,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-1003.706424829759,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,71.7,24.07,7,1,0,0,9,1,0,728,0,0,0 +15892,19459,35494,35495,-9,-9,2,1,0,59,1,0,0,0,2,-9,2,1,0,3,0,0,0,1,0,-9,9,0,-1,-133.6612991455803,0,0,0,60,2,2,1,-9,-9,2019,1,1,12,0,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,5,1,0,0,11,3,1,379.5,0,0,0 +15892,19459,35495,35494,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,2,8.137913466456792,8.04835474814741,0,1,0,-9,9,0,1,24.57885545005342,0,0,0,59,2,3,1,3,3,2019,1,2,7,0,37,0,15,1,0,1,0,12.15858197957134,12.15858197957134,0,0,0,0,0,0,0,0,0,0,.4131237376722804,0,0,0,52.83,49.11,5,1,0,0,11,3,1,379.5,0,0,0 +15893,19460,35496,-9,-9,-9,2,1,1,45,2,0,0,0,1,-9,2,1,0,4,8.49215496821529,8.537835741991397,0,1,0,-9,4,0,6,-64.22686123225567,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,1,18,6,82,44,15,1,6,-9,0,8.995864052484276,8.995864052484276,0,0,0,0,0,0,0,0,0,0,7.976086311128724,0,0,0,35.37,59.06,5,1,0,0,11,5,1,1358,0,0,0 +15893,19461,35497,-9,-9,-9,1,1,1,39,2,0,0,0,1,-9,2,1,0,3,8.870198667188685,8.589282589489608,0,1,0,-9,4,0,-6,-77.5002642600049,0,0,0,-9,-9,-9,-9,-9,-9,2019,1,2,7,0,41,40,15,1,0,-9,0,17.69510366808406,17.69510366808406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,6,1,0,0,11,5,1,176,0,0,0 +15894,19462,35498,-9,-9,-9,1,1,1,77,3,0,0,0,2,-9,4,3,0,4,0,7.077705662924752,7.518741759647789,3,0,0,0,-9,0,-1055.22278320351,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.533343241755689,0,0,60.12,54.8,7,1,0,0,13,3,1,249,0,0,0 +15895,19463,35499,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,4,3,0,3,0,7.399360434956235,6.987011581080504,3,0,0,0,-9,0,-964.9271008165124,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.336344528783445,7.173469095987681,0,0,54.13,48.04,6,1,0,0,7,3,1,3990,0,0,0 +15896,19464,35500,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,1,0,5.58333998095127,5.531135872156076,3,0,0,0,-9,0,-871.2629076585126,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,24.24558935226325,0,0,0,1,1,0,3.418612899010304,5.256756247396784,0,0,50.89,16.49,7,1,0,0,11,2,0,234,0,0,0 +15897,19465,35501,-9,-9,-9,1,1,0,53,2,0,0,0,3,-9,2,1,0,2,7.893218123701263,7.865419321902658,0,3,0,0,0,-9,0,-1111.31257109219,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,20,22,15,1,0,-9,0,22.69651663349243,22.69651663349243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.27,33.02,6,1,0,0,2,4,0,896,0,0,0 +15898,19466,35502,35503,-9,-9,1,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,8,0,-4,-76.00197981390363,0,0,0,74,2,2,3,-9,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.797398449576754,0,0,0,57.16,56.15,7,1,0,0,4,2,1,713.5,0,0,0 +15898,19466,35503,35502,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,4.698944533839306,5.185598798838664,1,0,-9,8,0,4,88.96527103719872,-9,0,0,70,3,4,3,-9,-9,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.5357660511211813,4.932173616379198,0,0,45.53,47.41,3,1,0,0,4,2,1,713.5,0,0,0 +15899,19467,35504,-9,-9,-9,1,1,1,73,3,0,0,0,3,-9,4,3,0,3,0,6.484765315170025,6.316186446173062,3,0,0,0,-9,0,-965.4195504335232,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.194546715925718,0,0,51.76,47.75,6,1,0,0,7,2,1,527,0,0,0 +15900,19468,35505,35506,-9,-9,2,1,0,76,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,-1,0,0,0,0,77,3,2,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.83565468364594,1,58.98,42.9,7,1,0,0,13,1,1,1117,0,0,0 +15900,19468,35506,35505,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,6,0,1,0,0,0,0,76,3,4,3,3,3,2019,4,2,7,1,0,0,15,4,1,4,0,0,0,1,0,14.12792988876321,9.410045392353549,12.34964267332339,0,0,1,1,0,0,0,0,0,64.89,20.7,6,1,0,0,13,1,1,1117,0,0,0 +15901,19469,35507,35508,-9,-9,2,1,0,74,1,0,0,0,1,-9,4,3,0,3,0,6.312837661402441,6.560910901951574,1,0,-9,50,0,0,-57.15363484261709,0,0,0,74,1,4,3,3,3,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.531918347457403,6.453312558718738,0,0,53.15,40.21,3,1,0,0,9,2,1,841.5,0,0,0 +15901,19469,35508,35507,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,6.769658771286852,6.818531321302022,1,0,-9,50,0,0,61.06639527297021,0,0,0,74,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.219298213312896,6.946483669830014,0,0,57.16,56.15,6,1,0,0,9,2,1,841.5,0,0,0 +15902,19470,35509,-9,-9,-9,1,1,1,57,3,0,0,0,2,-9,4,3,0,5,0,6.760631071348279,6.840063138626634,3,0,0,0,-9,0,-1035.161123648425,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.844613135321999,6.583358422002227,0,3,58.05,54.52,6,1,0,0,12,2,0,582,0,0,0 +15903,19471,35510,-9,-9,-9,1,1,1,33,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,-9,0,-9,0,-1189.99086247564,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,5,3,0,1,5,1,0,176,0,0,0 +15904,19472,35511,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,4,3,0,3,0,7.95869669098776,7.904367034446318,3,0,0,0,-9,0,-985.0600695462375,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.467717037739671,6.621021062831685,0,0,51.42,48.12,7,1,0,0,11,4,1,488,0,0,0 +15905,19473,35512,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,5,0,6.526781703871268,6.105350592413418,3,0,0,0,-9,0,-889.2282922020541,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.821087388076156,6.162860517315961,0,0,58.2,54.53,7,1,0,0,7,2,1,214,0,0,0 +15906,19474,35513,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,3,7.926051539028625,8.016308518972039,0,3,0,0,0,-9,0,-878.8064577606089,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,48,37,15,1,0,-9,0,8.651997056618002,8.651997056618002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,56.93,7,1,0,0,7,4,1,1240,0,0,0 +15907,19475,35514,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,5,6.963435867521157,6.677946735267261,0,3,0,0,0,-9,0,-974.9516186495763,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,16,20,15,1,0,-9,0,6.552706366591948,6.552706366591948,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.41,56.11,6,1,0,0,12,2,0,1783,0,0,0 +15908,19476,35515,-9,35517,35516,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-934.2556792155997,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,4,0,849,0,0,0 +15908,19476,35516,35517,-9,-9,1,1,1,36,1,0,2,0,3,-9,2,1,0,3,8.671704221275242,8.568232656328551,0,2,0,-9,6,0,2,2.990185280930214,0,0,0,34,2,4,1,2,2,2019,1,2,6,0,61,57,15,1,0,1,0,10.44683275834548,10.44683275834548,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,6,1,0,0,10,4,0,849,0,0,0 +15908,19476,35517,35516,-9,-9,2,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.785186829012046,7.695424309321854,0,2,0,-9,6,0,-2,34.51357546904556,0,0,1,36,3,3,1,3,2,2019,1,1,6,0,37,37,15,1,0,1,0,6.325856264487394,6.325856264487394,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,10,4,0,849,0,0,0 +15908,19476,35518,-9,35517,35516,3,1,0,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-914.0614917861552,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,10,4,0,849,0,0,0 +15909,19477,35519,-9,-9,-9,1,1,1,28,2,0,0,0,1,-9,2,1,0,3,7.792562706306158,7.923222397226152,0,3,0,0,0,-9,0,-975.2345299228851,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,35,15,1,0,-9,0,8.437640398679134,8.437640398679134,0,0,0,0,0,0,0,0,0,0,3.005945112425382,0,0,0,46.67,55.57,5,1,0,0,9,4,0,271,0,0,0 +15910,19478,35520,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,3,0,5.386334238108749,5.306258425384256,3,0,0,0,-9,0,-998.1152293055728,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.567025899267616,5.350701450913142,6.978349245069901,3,41.86,41.35,6,1,0,0,4,2,1,522,0,0,0 +15911,19479,35521,35522,-9,-9,2,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,7.422575550602931,7.178771838247257,1,0,-9,4,0,-5,-7.551104012578783,0,0,0,73,2,3,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.565051626757704,7.418587804472987,0,0,43.43,54.3,5,1,0,0,4,2,1,311,0,0,0 +15911,19479,35522,35521,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.482158950340048,6.703601278381477,1,0,-9,4,0,5,-17.04374066135711,0,0,0,68,1,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.850028202764904,6.924490451943873,0,0,43.61,56.01,6,1,0,0,4,2,1,311,0,0,0 +15912,19480,35523,35524,-9,-9,1,1,0,71,1,0,0,0,3,-9,4,3,0,5,0,0,0,1,0,-9,48,0,3,-14.56928083178789,0,0,0,68,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.616815963638541,0,0,0,49.25,61.25,6,1,0,0,10,2,1,1528,0,0,0 +15912,19480,35524,35523,-9,-9,2,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,7.469526367660719,7.676803443905626,1,0,-9,48,0,-3,-109.6600894912536,0,0,0,71,3,5,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.452854923320515,7.493641823172131,0,0,61.85,44.55,1,1,0,0,10,2,1,1528,0,0,0 +15913,19481,35525,35526,-9,-9,1,1,1,53,1,0,0,0,2,-9,2,1,0,3,7.921969096346546,8.129517405639662,0,1,0,-9,27,0,1,-69.51812260492331,0,0,0,52,2,3,1,3,-9,2019,1,2,9,0,45,45,15,1,0,1,0,8.206013100174058,8.206013100174058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.42,48.12,6,1,0,0,7,4,1,799.5,0,0,0 +15913,19481,35526,35525,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.199933715032522,8.020499416823153,0,1,0,-9,27,0,-1,-8.815646404222989,0,0,0,53,2,3,1,-9,3,2019,1,1,13,2,39,39,15,1,2,1,0,7.328896963023423,7.328896963023423,0,0,0,0,0,0,0,0,0,0,2.786696029170305,0,0,0,48.45,57.49,3,1,0,0,7,4,1,799.5,0,0,0 +15914,19482,35527,35528,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,4,0,7.473840808822447,7.871790700465644,1,0,-9,44,0,3,-42.6690790708761,0,0,0,62,2,4,1,3,3,2019,3,1,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.439008267902539,7.424423071534642,0,0,62.25,45.63,6,1,0,0,1,3,1,264,0,0,0 +15914,19482,35528,35527,-9,-9,1,1,0,62,1,0,0,0,2,-9,2,1,0,4,7.68404735278383,7.063725694808633,5.013664789022878,1,0,-9,42,0,-3,95.44546388699339,0,0,0,65,2,4,3,3,3,2019,2,2,6,0,22,22,15,1,0,4,0,10.36984551859755,10.36984551859755,0,0,0,0,0,0,0,0,0,0,4.816307477142566,4.606827191952939,0,0,60.12,54.8,6,1,0,0,1,3,1,264,0,0,0 +15914,19483,35529,-9,35528,35527,3,1,0,26,3,0,0,0,1,-9,2,1,0,4,8.406657742342315,8.529345435013388,0,3,0,-9,0,-9,0,-1008.978396857884,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,16,5,37,0,15,1,5,-9,1,12.37483045775091,12.37483045775091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,59.95,4,1,0,0,1,4,1,458,0,0,0 +15915,19484,35530,35531,-9,-9,1,1,1,54,1,0,0,0,2,-9,2,1,0,5,8.369982582583765,8.606554374538456,0,1,0,-9,9,0,-10,-53.66535754658857,0,0,0,64,1,4,3,2,2,2019,2,2,9,0,40,49,15,1,0,4,0,17.79837125204524,17.79837125204524,0,0,0,0,0,0,0,0,0,0,2.314536275782362,0,12.69780071867481,3,57.06,57.76,6,1,0,0,11,5,1,249.5,0,0,0 +15915,19484,35531,35530,-9,-9,2,1,0,64,1,0,0,0,1,-9,4,3,0,4,0,7.957596922944746,7.925744366493785,1,0,-9,9,0,10,-59.57582317556947,0,0,0,54,2,5,1,2,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.909690960474999,7.716333850128996,0,0,54.2,57.49,2,1,0,0,11,5,1,249.5,0,0,0 +15916,19485,35532,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,3,0,6.150561691451701,6.148834647299788,3,0,0,0,-9,0,-1130.535938523685,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,26,12,0,0,15,4,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.998680020531128,6.31796102600719,0,0,30.59,37.08,3,1,0,0,2,2,1,130,0,0,0 +15917,19486,35533,35534,-9,-9,2,1,1,64,1,0,0,0,1,-9,4,3,0,4,0,7.296689260220335,7.751393989319357,1,0,-9,28,0,2,98.15179888502426,0,0,0,62,2,3,3,-9,-9,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,3.391194873273708,7.889709326590022,0,0,51.24,58.84,5,1,0,0,2,4,1,805,0,0,0 +15917,19486,35534,35533,-9,-9,1,1,0,62,1,0,0,0,2,-9,4,3,0,3,0,8.115575961562874,8.097929668317185,1,0,-9,31,0,-2,-75.58448147256074,0,0,0,64,1,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,0,1,3.320263080558763,8.08274902767435,0,0,45.44,50.58,6,1,0,0,2,4,1,805,0,0,0 +15917,19487,35535,-9,35534,35533,3,1,1,27,2,0,0,0,1,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-900.7585648568088,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,49.59,58.37,6,1,1,1,2,1,1,924,0,0,0 +15917,19488,35536,-9,35534,35533,4,1,1,29,2,0,0,0,1,-9,2,1,0,3,7.426248202847007,7.816992779114244,0,3,0,0,0,-9,0,-963.8922515977092,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,24,10,35,28,15,1,10,-9,1,8.570113091735907,8.570113091735907,0,0,0,0,0,0,0,1,0,1,.3187588249880376,0,0,0,12.72,65.98999999999999,2,1,0,0,2,3,1,509,0,0,0 +15918,19489,35537,-9,35539,35538,3,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.210754681801,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,4,4,1,1216.2,0,0,0 +15918,19489,35538,35539,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,3,8.983634760473162,9.185691778948369,0,2,0,-9,18,0,0,18.14023449187574,0,0,0,41,1,3,3,2,1,2019,2,1,9,1,43,46,15,1,1,3,0,24.94555653975934,24.94555653975934,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.15,50.5,6,1,0,0,4,4,1,1216.2,0,0,0 +15918,19489,35539,35538,35542,-9,1,1,0,41,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,18,0,0,97.01351748630663,0,0,1,41,1,3,1,1,1,2019,3,2,9,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.563109283247049,0,0,0,62.03,36.18,5,1,0,0,4,4,1,1216.2,0,0,0 +15918,19489,35540,-9,35539,35538,4,1,0,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1004.831736881503,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,1216.2,0,0,0 +15918,19489,35541,-9,35539,35538,5,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.415730129828,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,4,4,1,1216.2,0,0,0 +15918,19490,35542,-9,-9,-9,6,1,0,70,3,0,3,0,1,-9,4,3,0,3,0,6.896449593584436,7.180874965479812,4,0,0,0,-9,0,-982.9717991234446,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.089284327104662,6.980570400086786,0,0,58.49,20.39,6,1,0,0,4,2,1,1870,0,0,0 +15919,19491,35543,35544,-9,-9,2,1,1,77,1,0,0,0,2,-9,4,3,0,3,0,6.727719190957323,6.746162447807357,1,0,-9,9,0,-6,-8.215287554387761,0,0,0,83,3,4,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.172660704798683,0,0,55.62,43.18,6,1,0,0,9,2,1,457,0,0,0 +15919,19491,35544,35543,-9,-9,1,1,0,83,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,9,0,6,-72.16060411813417,0,0,0,77,2,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,54.24,7,1,0,0,9,2,1,457,0,0,0 +15920,19492,35545,-9,-9,-9,1,1,1,68,2,0,0,0,1,-9,2,1,0,3,6.437842510262644,7.404573565671463,6.706108551318938,3,0,0,0,-9,0,-1019.336442131673,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,7,0,10,0,15,1,0,-9,0,8.436916233720108,8.436916233720108,0,0,0,0,0,0,0,1,1,0,0,7.047426425225876,5.518208094091818,3,50.28,51.35,5,1,0,0,6,3,1,832,0,0,0 +15921,19493,35546,-9,35547,-9,2,1,0,12,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1048.502566214526,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,1,2,0,755.5,0,0,0 +15921,19493,35547,-9,-9,-9,1,1,0,46,2,0,1,0,2,-9,2,1,0,3,7.214137447689303,6.905369806802149,0,4,0,0,0,-9,0,-1091.365683008233,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,16,6,15,1,0,-9,0,6.162301974081023,6.162301974081023,0,0,0,0,0,0,0,1,1,0,1.225818630862411,0,0,0,39.33,60.15,5,1,0,0,1,2,0,755.5,0,0,0 +15922,19494,35548,-9,-9,-9,3,1,0,47,3,0,2,0,2,-9,8,3,1,2,0,0,0,4,0,0,0,-9,0,-993.5154028574478,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.89,19.18,4,1,0,0,4,1,0,703.5,0,0,0 +15922,19494,35549,-9,35548,-9,2,1,0,13,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-1012.009062296869,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,4,1,0,703.5,0,0,0 +15923,19495,35550,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-909.1265215676065,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.980883460119295,0,0,0,50,46,5,1,0,0,6,1,1,271,0,0,0 +15924,19496,35551,35552,-9,-9,2,1,1,33,1,1,1,0,1,-9,2,1,0,3,8.157162042740527,8.742190189980695,0,2,0,-9,5,0,1,79.86943867102353,0,0,0,32,1,5,1,-9,-9,2019,1,1,12,2,35,42,15,1,2,1,0,15.73508732545343,15.73508732545343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,5,1,0,0,8,5,1,430.6666666666667,0,0,0 +15924,19496,35552,35551,-9,-9,1,1,0,32,1,1,1,0,1,-9,2,1,0,5,8.870279676841626,8.662491615848557,0,2,0,-9,5,0,-1,-123.4794201070944,0,0,1,33,1,3,1,2,1,2019,1,2,5,0,30,45,15,1,0,1,0,23.81554959794978,23.81554959794978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,8,5,1,430.6666666666667,0,0,0 +15924,19496,35553,-9,35552,35551,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1000.890799584652,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,8,5,1,430.6666666666667,0,0,0 +15925,19497,35554,35555,-9,-9,1,1,1,31,1,0,0,0,3,-9,2,1,0,4,8.264408030424423,8.114591017138423,0,1,0,-9,6,0,2,-3.847598074466726,0,0,0,29,1,4,1,3,3,2019,1,2,6,0,37,36,15,1,0,1,0,11.09922721512713,11.09922721512713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,4,1,296,0,0,0 +15925,19497,35555,35554,-9,-9,2,1,0,29,1,0,0,0,1,-9,2,1,0,4,8.015919549290489,8.037924195392995,0,1,0,-9,6,0,-2,-13.56076875804226,0,1,1,31,3,4,1,-9,-9,2019,1,1,7,0,43,38,15,1,0,1,0,8.550917987593719,8.550917987593719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,5,4,1,296,0,0,0 +15926,19498,35556,-9,-9,-9,1,1,1,71,3,0,0,0,1,-9,4,3,0,3,0,6.712481279150172,6.953234412206184,3,0,0,0,-9,0,-1018.172281803443,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.60075347958744,2.545477394281086,3,60.29,52.11,7,1,0,0,12,2,0,52,0,0,0 +15927,19499,35557,35558,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,7.086448835259535,7.360715699102483,1,0,-9,54,0,0,-185.8736204441461,0,0,0,79,1,3,3,3,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.737634198655069,6.945465206518763,0,0,59.07,43.05,7,1,0,0,8,3,1,526,0,0,0 +15927,19499,35558,35557,-9,-9,2,1,1,79,1,0,0,0,1,-9,4,3,0,3,0,6.921883440629868,7.066552131702316,1,0,-9,54,0,0,-123.710660239665,0,0,0,79,2,3,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.251882384563062,6.69212874481532,0,0,57.33,53.46,6,1,0,0,8,3,1,526,0,0,0 +15928,19500,35559,-9,35561,35560,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-921.0987406797718,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,5,1,0,0,5,2,0,505.5,0,0,0 +15928,19500,35560,35561,-9,-9,1,1,1,30,1,1,2,0,2,-9,2,1,0,3,7.630118022781798,7.916835107901147,0,2,0,-9,7,0,5,-10.80047161279743,0,0,0,25,2,4,3,-9,2,2019,2,2,6,0,26,35,15,1,0,3,0,12.00761973100458,12.00761973100458,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.33,53.46,6,1,0,0,5,2,0,505.5,0,0,0 +15928,19500,35561,35560,-9,-9,2,1,0,25,1,1,2,0,2,-9,6,3,0,4,5.14592560511689,4.891074691829552,0,2,0,-9,7,0,-5,46.09623002403593,0,1,1,30,2,3,1,2,2,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.79,52.62,6,1,0,0,5,2,0,505.5,0,0,0 +15928,19500,35562,-9,35561,35560,3,1,0,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-965.9745662523598,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,5,1,0,0,5,2,0,505.5,0,0,0 +15929,19501,35563,-9,-9,-9,1,1,1,93,3,0,0,0,2,-9,4,3,0,1,0,6.198594866740057,5.958485539489563,3,0,0,0,-9,0,-1052.847533582118,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,1,0,0,7.773111117142346,0,0,0,1,1,0,0,6.531858154011145,0,0,51.92,22.55,4,1,0,1,11,2,1,284,0,0,0 +15930,19502,35564,35565,-9,-9,2,1,0,56,1,0,0,0,2,-9,2,1,0,2,7.350008250991142,7.427849599664466,0,1,0,-9,7,0,-1,-70.97282636546646,0,0,0,57,2,4,1,3,3,2019,1,1,14,2,20,20,15,1,2,1,0,10.23617488853724,10.23617488853724,0,0,0,0,0,0,0,1,1,0,3.792423044651374,0,0,0,46.41,42.57,4,1,0,0,10,4,0,259.5,0,0,0 +15930,19502,35565,35564,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,8.090326131842357,8.318949172651715,0,1,0,-9,7,0,1,-101.5332442145082,0,0,0,56,2,2,1,-9,-9,2019,1,2,9,0,38,38,15,1,0,1,0,9.474237131004347,9.474237131004347,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,10,4,0,259.5,0,0,0 +15931,19503,35566,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,2,0,6.710158426826414,6.649732262621883,3,0,0,0,-9,0,-1122.25082723653,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,2.549369543177785,0,0,0,1,1,0,0,6.752703622994622,0,0,61.82,39.58,7,1,0,0,12,2,1,433,0,0,0 +15932,19504,35567,35568,-9,-9,2,1,1,49,1,0,0,0,2,-9,2,1,0,2,6.461528928510881,6.820176255747612,0,1,0,-9,8,0,2,-24.91053098850589,0,0,0,47,2,3,1,3,2,2019,1,1,12,1,16,12,15,1,1,1,0,5.616137074280293,5.616137074280293,0,0,0,0,0,0,0,1,1,0,0,0,0,3,42.06,53.95,4,1,0,1,10,3,1,261,0,0,0 +15932,19504,35568,35567,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,3,7.89850831615847,7.587734413791014,0,1,0,-9,26,0,-2,-121.9167538393918,0,0,0,49,2,2,1,2,2,2019,1,2,32,12,39,37,15,1,12,1,0,7.595064049771731,7.595064049771731,0,0,0,0,0,0,0,1,1,0,0,0,11.17276247011971,3,16.46,61.33,3,1,0,1,10,3,1,261,0,0,0 +15932,19505,35569,-9,35568,35567,3,1,1,22,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1006.546490349018,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,18,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.53,44.72,2,1,0,0,10,1,1,869,0,0,0 +15933,19506,35570,35571,-9,-9,1,1,1,37,1,2,2,0,1,-9,2,1,0,5,9.680018679896456,9.839963316021057,0,2,0,-9,6,0,2,12.56454515203487,0,0,0,35,2,5,1,-9,-9,2019,1,2,7,0,41,50,15,1,0,1,0,51.81607008774134,51.81607008774134,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,4,5,1,506,0,0,0 +15933,19506,35571,35570,-9,-9,2,1,0,35,1,2,2,0,2,-9,5,1,0,5,7.284495822253475,7.763433576387605,0,2,0,-9,6,0,-2,-64.71841128350411,0,0,1,37,1,5,1,-9,-9,2019,1,1,5,0,10,15,15,1,0,1,0,21.0202870127674,21.0202870127674,0,0,0,0,0,0,0,1,1,0,7.546848756411688,0,0,0,57.06,57.76,7,1,0,0,4,5,1,506,0,0,0 +15933,19506,35572,-9,35571,35570,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1170.70837482927,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,5,1,506,0,0,0 +15933,19506,35573,-9,35571,35570,4,1,1,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-925.7444020580268,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,5,1,506,0,0,0 +15934,19507,35574,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,3,6.095563928436786,5.88045977532265,0,3,0,0,0,-9,0,-909.3419265406648,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,15,0,15,1,4,-9,0,3.27501818145028,3.27501818145028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.35,55.36,3,4,0,0,8,2,0,434,0,0,0 +15935,19508,35575,-9,-9,-9,1,1,0,46,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-998.8812996514547,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,0,0,13,1,0,356,0,0,0 +15935,19509,35576,-9,-9,-9,2,1,1,37,2,0,0,0,3,-9,1,1,0,4,9.644507959820624,9.573495862403899,0,3,0,0,0,-9,0,-1014.286328187472,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,40,35,15,1,1,-9,0,43.71194836184917,43.71194836184917,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,13,5,0,227,0,0,0 +15935,19510,35577,-9,-9,-9,3,1,1,40,2,0,0,0,2,-9,1,1,0,4,9.630696173069209,9.875593896598367,0,3,0,0,0,-9,0,-931.8862747086289,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,35,15,1,1,-9,0,52.03932337319274,52.03932337319274,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,13,5,0,1018,0,0,0 +15935,19511,35578,-9,-9,-9,4,1,1,39,2,0,0,0,2,-9,1,1,0,4,8.769824724341902,8.501220106670372,0,3,0,0,0,-9,0,-1065.022424427253,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,40,15,1,1,-9,0,16.01530915668013,16.01530915668013,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,6,1,0,0,13,5,0,590,0,0,0 +15936,19512,35579,-9,35581,35582,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-897.9219792647114,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,5,4,1,623,0,0,0 +15936,19512,35580,-9,35581,35582,3,1,0,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-920.1636206093691,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,4,1,623,0,0,0 +15936,19512,35581,35582,-9,-9,1,1,0,43,1,1,2,0,1,-9,2,1,0,4,8.104456328274063,7.98570321396764,0,2,0,-9,10,0,-1,29.59773810808444,0,0,1,44,1,3,1,1,1,2019,1,2,8,1,26,21,15,1,1,1,0,13.39360980691939,13.39360980691939,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,5,1,0,0,5,4,1,623,0,0,0 +15936,19512,35582,35581,-9,-9,2,1,1,44,1,1,2,0,1,-9,1,1,0,3,8.529480377881752,8.823953691534191,0,2,0,-9,10,0,1,45.27859566050316,0,0,0,43,1,4,1,-9,-9,2019,1,1,13,1,40,40,15,1,1,1,0,13.51384052396293,13.51384052396293,0,0,0,0,0,0,0,1,1,0,3.30214175277178,0,0,0,36.08,60.5,3,1,0,0,5,4,1,623,0,0,0 +15937,19513,35583,35584,-9,-9,1,1,0,70,1,0,0,0,2,-9,1,1,0,3,5.069954555782414,4.955985965289083,0,1,0,-9,8,0,5,-141.789029027138,0,0,0,65,3,1,3,2,2,2019,2,2,10,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.973595118946465,1,47.37,55.41,6,1,0,0,9,5,1,341,0,0,0 +15937,19513,35584,35583,-9,-9,2,1,1,65,1,0,0,0,3,-9,4,3,0,1,8.896817198329385,8.884299031327343,0,1,0,-9,8,0,-5,-49.84705139942965,0,0,0,70,2,3,1,3,3,2019,3,1,25,11,55,53,15,4,11,1,0,0,0,1,0,2.39746005521267,0,0,0,0,1,1,0,0,0,0,0,26.5,28.65,1,1,0,0,9,5,1,341,0,0,0 +15938,19514,35585,-9,35587,35588,3,1,0,1,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-894.346065857667,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,2,0,711.25,0,0,0 +15938,19514,35586,-9,35587,35588,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1092.718078085881,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,2,0,711.25,0,0,0 +15938,19514,35587,35588,-9,-9,2,1,0,20,1,2,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,1,-9,-3,-1.604948982038128,-9,1,1,23,2,3,1,-9,-9,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42063741480418,3,43.2,59.97,6,1,0,0,12,2,0,711.25,0,0,0 +15938,19514,35588,35587,-9,-9,1,1,1,23,1,2,2,0,2,-9,2,1,0,3,7.60650009003397,7.468332684283992,0,2,0,-9,1,-9,3,20.00427526629425,-9,1,0,20,2,4,3,2,2,2019,2,2,12,0,50,0,15,1,0,3,0,3.39540922859631,3.39540922859631,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,5,1,0,0,12,2,0,711.25,0,0,0 +15939,19515,35589,35590,-9,-9,1,1,1,37,1,0,0,0,2,-9,2,1,0,4,8.590854692392803,8.65046063331565,0,1,0,-9,9,0,-11,45.43756044041755,0,0,0,48,2,4,1,1,2,2019,1,2,6,0,46,37,15,1,0,1,0,17.36983208585366,17.36983208585366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,7,1,0,0,4,4,1,476.5,0,0,0 +15939,19515,35590,35589,-9,-9,2,1,0,48,1,0,0,0,2,-9,2,1,0,4,7.032273191164935,7.245007811006664,0,1,0,-9,9,0,11,-176.7286640115727,0,0,0,37,2,4,1,3,3,2019,1,1,12,0,19,27,15,1,0,1,0,6.530429026174428,6.530429026174428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,57.61,6,1,0,0,4,4,1,476.5,0,0,0 +15940,19516,35591,-9,-9,-9,1,1,0,50,3,0,0,0,1,-9,2,1,0,4,8.302645977775255,8.354493621404258,0,3,0,0,0,-9,0,-987.0595478564882,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,22,10,60,55,15,1,10,-9,0,10.44849272264062,10.44849272264062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.38,63.46,4,1,0,1,10,4,0,843,0,0,0 +15941,19517,35592,35593,-9,-9,1,1,0,54,1,0,0,0,2,-9,2,1,0,4,8.569171583113375,8.577524733580155,0,1,0,-9,25,0,-7,-142.9229762713049,0,0,0,61,2,2,1,3,3,2019,1,2,16,5,55,52,15,1,5,1,0,15.68559799724041,15.68559799724041,0,0,0,0,0,0,0,0,0,0,3.67119162481767,0,.2736212220187888,3,50.37,55.06,5,1,0,0,6,5,1,425,0,0,0 +15941,19517,35593,35592,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,2,6.950470600738532,9.834005438275588,10.01559532681925,1,0,-9,7,0,7,-124.7537419293785,0,0,0,54,2,4,1,3,3,2019,1,1,14,3,18,22,15,1,3,1,0,9.122191840624726,9.122191840624726,0,0,0,0,0,0,0,0,0,0,7.433982112996354,9.950816247884806,0,0,56.1,23.27,6,1,0,0,6,5,1,425,0,0,0 +15942,19518,35594,-9,-9,-9,1,1,0,43,2,0,0,0,2,-9,1,1,0,5,8.299070945820885,8.546035164880102,0,3,0,0,0,-9,0,-1059.746609211067,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,40,30,15,1,1,-9,0,9.570664956856934,9.570664956856934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,6,1,0,0,9,4,1,1359,0,0,0 +15943,19519,35595,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,4,0,6.23096578621483,6.551800392366844,3,0,0,0,-9,0,-946.6600730279358,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.063013813311494,6.630641118664708,0,0,54.2,57.49,6,1,0,0,4,2,1,186,0,0,0 +15944,19520,35596,-9,35599,-9,4,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1025.739697562491,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,8,2,0,517.75,0,0,0 +15944,19520,35597,-9,35599,-9,2,1,0,11,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-916.2065314486028,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,3,0,0,8,2,0,517.75,0,0,0 +15944,19520,35598,-9,35599,-9,3,1,1,9,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-916.0590650697442,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,517.75,0,0,0 +15944,19520,35599,-9,-9,-9,1,1,0,34,3,1,3,0,2,-9,2,1,0,3,6.894409485591042,7.047839955317611,4.226806324420157,4,0,0,0,-9,0,-982.9318090035657,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,20,7,16,0,15,1,7,-9,0,7.028437566284556,7.028437566284556,0,0,0,0,0,0,0,1,1,0,4.666308416180021,0,0,0,45,51,3,3,0,0,8,2,0,517.75,0,0,0 +15945,19521,35600,35601,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,4,9.581296310794167,9.674320923775651,0,2,0,-9,26,0,0,73.7380371134841,0,0,0,49,1,3,1,3,3,2019,1,2,10,0,50,50,15,1,1,1,0,27.19785867362005,27.19785867362005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,3,0,0,5,5,1,796.5,0,0,0 +15945,19521,35601,35600,-9,-9,2,1,1,49,1,0,1,0,1,-9,2,1,0,3,9.244562034457708,9.244681116639155,0,2,0,-9,26,0,0,56.98109067737926,0,0,0,49,1,4,1,2,2,2019,1,1,9,0,37,48,15,1,0,1,0,25.70118457736744,25.70118457736744,0,0,0,0,0,0,0,0,0,0,5.329914060562828,0,0,0,58.32,50.22,2,3,0,0,5,5,1,796.5,0,0,0 +15946,19522,35602,35603,-9,-9,1,1,1,85,1,0,0,0,3,-9,4,3,0,4,0,7.626520095198074,7.694380847160502,1,0,-9,67,0,3,-41.05581376511214,0,0,0,82,3,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.424426551104342,0,0,61.02,42.1,7,1,0,0,5,2,1,654.5,0,0,0 +15946,19522,35603,35602,-9,-9,2,1,0,82,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,67,0,-3,-42.5722127423462,0,0,0,85,3,4,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,7,1,0,0,5,2,1,654.5,0,0,0 +15947,19523,35604,-9,35606,35605,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.599154117751,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,8,5,0,1454.25,0,0,0 +15947,19523,35605,35606,-9,-9,1,1,1,49,1,0,2,0,1,-9,2,1,0,4,8.383312257296819,8.270380942403754,0,2,0,-9,11,0,9,0,0,0,0,40,1,4,1,2,1,2019,1,2,11,0,40,57,15,1,0,1,0,21.28413244230885,21.28413244230885,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,6,3,0,0,8,5,0,1454.25,0,0,0 +15947,19523,35606,35605,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.850590585284156,8.796046418775601,0,2,0,-9,11,0,0,0,0,0,1,49,1,4,1,3,2,2019,1,1,10,0,45,45,15,1,1,1,0,15.3228106618496,15.3228106618496,0,0,0,0,0,0,0,1,1,0,6.8368338143778,0,0,0,50,55,5,3,0,0,8,5,0,1454.25,0,0,0 +15947,19523,35607,-9,35606,35605,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.431414888355,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,5,0,1454.25,0,0,0 +15948,19524,35608,35609,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,4,7.568620227167398,7.762066801194526,0,1,0,-9,29,0,-3,136.1514285006125,0,0,0,56,3,2,3,3,3,2019,2,2,20,8,35,40,15,1,8,3,0,7.298910980171565,7.298910980171565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.05,44.11,3,1,0,1,11,3,1,436,0,0,0 +15948,19524,35609,35608,-9,-9,2,1,1,56,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,29,0,3,-9.801999866191428,0,0,0,53,3,4,1,2,3,2019,3,1,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,31.33,3,1,1,1,11,3,1,436,0,0,0 +15949,19525,35610,35611,-9,-9,2,1,0,62,1,0,0,0,1,-9,4,3,0,3,0,5.95797134899515,5.498342499242461,1,0,-9,41,0,-2,-101.8216325289282,0,0,0,64,1,4,1,3,2,2019,3,1,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.584267359935904,5.497083460187944,0,0,59.07,43.05,2,1,0,0,10,5,1,724.5,0,0,0 +15949,19525,35611,35610,-9,-9,1,1,1,64,1,0,0,0,1,-9,2,1,0,4,9.612881153006793,9.694718850029465,0,1,0,-9,42,0,2,-68.97568037953863,0,0,0,62,1,3,3,2,2,2019,2,2,10,0,42,45,15,1,0,4,0,44.4837979613257,44.4837979613257,0,0,0,0,0,0,0,0,0,0,3.744188214305076,0,0,0,55.19,54.26,6,1,0,0,10,5,1,724.5,0,0,0 +15950,19526,35612,35613,-9,-9,1,1,1,60,1,0,0,0,1,-9,4,3,0,2,0,8.189400131249315,8.231902889822488,1,0,-9,37,0,2,-5.511313605407074,0,0,0,58,1,3,1,2,1,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.165536529239102,8.332185450206774,4.568102644024561,3,53.46,44.67,6,3,0,0,8,4,1,284.5,0,0,0 +15950,19526,35613,35612,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,3,6.108846538198172,5.890724316109544,0,1,0,-9,10,0,-2,-8.223953494545816,0,0,0,60,1,2,3,1,1,2019,2,1,6,0,4,4,15,1,0,4,0,10.50857351701302,10.50857351701302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,6,3,0,0,8,4,1,284.5,0,0,0 +15950,19527,35614,-9,35613,35612,3,1,1,28,2,0,0,0,1,-9,2,1,0,1,9.021083274414654,8.680003795069114,0,3,0,0,0,-9,0,-977.297584748306,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,36,12,0,40,15,1,12,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.75,50.17,7,3,0,0,8,5,1,2462,0,0,0 +15951,19528,35615,35616,-9,-9,1,1,1,55,1,0,0,0,1,-9,2,1,0,4,9.433356786081939,9.638873318258545,0,1,0,-9,9,0,4,141.7817830903519,0,0,0,51,1,2,3,1,2,2019,2,2,8,0,45,50,15,1,0,3,0,49.12442382480465,49.12442382480465,0,0,0,0,0,0,0,1,1,0,4.503355538354336,0,16.40100385511359,1,48.81,59.91,6,1,0,0,8,5,1,280,0,0,0 +15951,19528,35616,35615,-9,-9,2,1,0,51,1,0,0,0,1,-9,8,3,1,2,0,0,0,1,0,-9,9,0,-4,-30.81288989946324,0,0,0,55,1,4,1,1,1,2019,3,1,10,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.723677235788124,0,0,0,67.02,14.22,5,1,0,0,8,5,1,280,0,0,0 +15952,19529,35617,35618,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.906097790025548,8.721862698962857,0,2,0,-9,11,0,-2,-3.349325779722999,0,0,0,51,2,5,1,3,2,2019,1,2,8,0,10,0,15,1,0,1,0,84.99749702812832,84.99749702812832,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,2,1,0,0,5,4,1,557,0,0,0 +15952,19529,35618,35617,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,5,7.006944976909694,6.973850129973163,0,2,0,-9,11,0,2,-24.72585542269115,0,0,0,49,2,3,1,3,3,2019,1,1,10,0,26,24,15,1,0,1,0,5.222821213712643,5.222821213712643,0,0,0,0,0,0,0,1,1,0,7.25185640297255,0,0,0,51.14,60.45,6,1,0,0,5,4,1,557,0,0,0 +15952,19529,35619,-9,35618,35617,3,1,1,16,2,0,1,0,2,-9,11,2,0,5,7.373038677014141,7.449277407774372,0,2,0,0,0,-9,0,-959.580551017179,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,7,1,0,0,5,4,1,557,0,0,0 +15952,19529,35620,-9,35618,35617,4,1,0,12,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-988.331802661178,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,5,4,1,557,0,0,0 +15953,19530,35621,-9,-9,-9,1,1,0,80,3,0,0,0,3,-9,4,3,0,2,0,6.709811270813948,7.01649151184859,3,0,0,0,-9,0,-989.6006926020997,0,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,3.497484645070721,6.627959830429967,0,0,59.95,25.68,6,2,0,0,6,2,1,102,0,0,0 +15954,19531,35622,35623,-9,-9,1,1,0,51,1,0,0,0,1,-9,1,1,0,2,7.352804170016102,7.475686152114307,0,1,0,-9,30,0,1,-162.7548425284475,0,0,0,50,1,3,1,3,3,2019,1,2,15,4,12,50,15,1,4,1,0,15.66363134101742,15.66363134101742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,30.67,4,1,0,0,7,3,1,392,0,0,0 +15954,19531,35623,35622,-9,-9,2,1,1,50,1,0,0,0,1,-9,1,1,0,3,7.095962820547959,7.202639447268045,0,1,0,-9,31,0,-1,-37.43218356872974,0,0,0,51,1,2,1,2,2,2019,1,1,9,0,45,0,15,1,0,1,0,2.870350911936428,2.870350911936428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.6,43.75,6,1,0,0,7,3,1,392,0,0,0 +15954,19532,35624,-9,35622,35623,3,1,0,22,2,0,0,0,2,-9,7,2,0,5,7.133443482819029,6.963435209308991,0,3,0,0,0,-9,0,-922.3228955182326,1,1,1,-9,-9,-9,-9,1,1,2019,-9,0,20,8,20,37,15,2,8,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.52,48.67,5,1,0,0,7,2,1,377,0,0,0 +15954,19533,35625,-9,35622,35623,4,1,1,21,2,0,0,1,2,-9,7,2,0,4,7.044442620276389,6.994976897452022,0,3,0,0,0,-9,0,-996.6651523664844,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,20,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.647048732972516,0,0,0,54.45,56.22,6,1,0,0,7,2,1,3628,0,0,0 +15955,19534,35626,35627,-9,-9,1,1,1,60,1,0,0,0,1,-9,1,1,0,5,9.898410590075335,9.657985716142143,0,1,0,-9,35,0,2,-69.95811793199583,0,0,0,58,1,4,1,3,3,2019,1,2,10,0,30,30,15,1,0,1,0,59.76761479641597,59.76761479641597,0,0,0,0,0,0,0,0,0,0,3.969013390905166,0,0,0,57.06,57.76,6,1,0,0,2,5,1,860.5,0,0,0 +15955,19534,35627,35626,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,4,6.905372186889062,7.685083340361244,7.087406706051722,1,0,-9,7,0,-2,39.46817644501401,0,0,0,60,1,5,1,-9,-9,2019,1,1,7,0,7,7,15,1,0,1,0,19.76647502564542,19.76647502564542,0,0,0,0,0,0,0,0,0,0,0,7.234599053720189,0,3,51.83,57.2,6,1,0,0,2,5,1,860.5,0,0,0 +15956,19535,35628,35629,-9,-9,1,1,1,69,1,0,0,0,3,-9,2,1,0,4,8.144855951434396,8.609600610440257,7.088594978640117,1,0,-9,7,0,3,-142.8680516384806,0,0,0,66,3,3,3,-9,-9,2019,2,2,9,0,40,40,15,1,0,4,0,11.60516062004962,11.60516062004962,1,0,0,0,0,0,0,1,1,0,6.036177685142178,7.294808873371934,0,0,56.33,51.02,6,1,0,0,7,4,1,421,0,0,0 +15956,19535,35629,35628,-9,-9,2,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,5.2418826094963,5.406650744115977,1,0,-9,7,0,-3,156.9792700849904,0,0,0,69,3,4,1,3,3,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.121572056765581,5.663270414654569,0,0,45.98,35.63,6,1,0,0,7,4,1,421,0,0,0 +15957,19536,35630,35631,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,55,0,2,-86.84232612058715,0,0,0,72,2,2,3,2,3,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,6,1,0,0,6,3,1,245,0,0,0 +15957,19536,35631,35630,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,7.419689396318622,7.693323690557455,1,0,-9,55,0,-2,9.232656636152793,0,0,0,74,2,4,3,3,3,2019,4,2,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.612644435520715,0,0,43.33,38.61,6,1,0,0,6,3,1,245,0,0,0 +15958,19537,35632,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,4,0,6.788554648256617,6.75133265338256,3,0,0,0,-9,0,-1084.426238776413,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.07142114495086,6.689634715139352,0,0,60.12,54.8,6,1,0,0,5,2,1,914,0,0,0 +15959,19538,35633,35634,-9,-9,1,1,1,34,1,0,1,0,2,-9,2,1,0,2,8.317658928022176,7.927896451879459,0,2,0,-9,10,0,5,1.148486920108862,0,0,0,29,2,4,1,2,2,2019,1,2,12,1,40,45,15,1,1,1,0,7.159994751757762,7.159994751757762,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.16,16.35,2,1,0,0,4,4,1,237.3333333333333,0,0,0 +15959,19538,35634,35633,-9,-9,2,1,0,29,1,0,1,0,2,-9,2,1,0,4,7.381570210241836,7.801314300049444,0,2,0,-9,10,0,-5,17.26031241157647,0,1,1,34,2,2,1,-9,-9,2019,1,1,8,0,30,32,15,1,0,1,0,6.780675708841509,6.780675708841509,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,6,1,0,0,4,4,1,237.3333333333333,0,0,0 +15959,19538,35635,-9,35634,35633,3,1,0,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1031.094057078324,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,4,1,237.3333333333333,0,0,0 +15960,19539,35636,-9,-9,-9,1,1,0,24,2,0,0,0,1,1,2,1,0,4,8.740446255387466,8.635497440471678,0,3,0,0,0,-9,0,-1185.16236513624,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,2,48,0,15,1,2,-9,0,11.52256767359635,11.52256767359635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.03,53.83,6,1,0,0,5,5,0,819,0,0,0 +15961,19540,35637,35638,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.599119938874772,8.40039983364051,0,1,0,-9,7,0,-4,-126.3384704932995,0,0,0,62,2,2,1,2,2,2019,1,1,12,1,37,43,15,1,1,1,0,12.05871400342627,12.05871400342627,0,0,0,0,0,0,0,0,0,0,4.605980695228099,0,0,0,58.72,43.42,6,1,0,0,10,4,1,797,0,0,0 +15961,19540,35638,35637,-9,-9,1,1,1,62,1,0,0,0,2,-9,2,1,0,2,7.502239039896003,7.645534924121718,6.092066308651986,1,0,-9,7,0,4,22.16820403677928,0,0,0,58,2,3,1,3,2,2019,1,2,7,1,22,38,15,1,1,1,0,10.80204919521693,10.80204919521693,0,0,0,0,0,0,0,0,0,0,6.448124934628575,6.483146945724881,0,0,52.74,42.67,5,1,0,0,10,4,1,797,0,0,0 +15962,19541,35639,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,1,1,0,3,8.178697688236527,9.218381189931684,8.715328970678156,1,0,-9,26,0,0,-45.34237675000935,0,0,0,-9,-9,-9,-9,3,3,2019,-9,2,8,0,98,12,15,1,0,-9,0,4.483001053146877,4.483001053146877,0,0,0,0,0,0,0,1,1,0,8.576554561883009,5.539760377911699,66.78558105714593,3,51.02,52.22,6,1,0,0,9,5,1,973,0,0,0 +15962,19541,35640,-9,35639,-9,4,1,1,9,2,0,0,1,3,-9,-9,2,0,4,0,0,0,1,0,0,0,-9,0,-1120.254500554065,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,5,0,0,9,5,1,973,0,0,0 +15963,19542,35641,35642,-9,-9,2,1,0,69,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,-3,0,0,0,0,72,2,2,3,3,3,2019,4,1,30,11,0,0,15,4,11,4,0,0,0,1,0,129.4585849404647,0,0,0,0,1,1,0,0,0,0,0,29.17,23.07,1,1,0,0,6,1,0,517.5,0,0,0 +15963,19542,35642,35641,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,8,0,3,0,0,0,0,69,3,1,3,-9,-9,2019,4,2,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,115.039738067044,1,41.67,40.53,4,1,0,0,6,1,0,517.5,0,0,0 +15964,19543,35643,35644,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,8,0,-2,0,0,0,0,73,3,2,3,3,3,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,1,0,0,0,.068104352172528,0,0,1,1,0,.3169511205806478,0,32.88868309582442,1,51,47,5,1,0,0,13,1,1,1419,0,0,0 +15964,19543,35644,35643,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,2,0,0,0,0,71,3,3,3,3,3,2019,4,2,16,4,0,0,15,4,4,4,0,0,0,1,0,28.06386996552941,0,15.94355686416933,0,0,1,1,0,0,0,26.93021548385547,1,32.2,31.51,5,1,0,0,13,1,1,1419,0,0,0 +15964,19544,35645,-9,35643,35644,3,1,1,39,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1025.893089567616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.34284031846769,3,52.8,51.31,6,1,0,0,13,1,1,659,0,0,0 +15964,19545,35646,-9,35643,35644,4,1,1,39,3,0,0,0,2,-9,2,1,0,4,7.132262369883047,7.152665755328555,0,3,0,0,0,-9,0,-1040.837421005052,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,1,20,20,15,1,1,-9,1,7.260606394208002,7.260606394208002,0,0,0,0,0,0,0,1,1,0,0,0,9.262482540093234,3,33.92,46.63,6,1,0,0,13,2,1,246,0,0,0 +15964,19546,35647,-9,35643,35644,5,1,1,35,2,0,0,0,2,-9,2,1,0,5,6.015338927571213,6.110514370068644,0,3,0,0,0,-9,0,-995.6728083391959,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,0,0,40,40,15,1,0,-9,1,1.400133973166139,1.400133973166139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.69,62.39,7,1,0,0,13,2,1,1175,0,0,0 +15965,19547,35648,35649,-9,-9,2,1,0,36,1,0,0,0,1,-9,1,1,0,4,7.208963783260709,7.430737794050391,0,1,0,-9,2,0,-2,-100.3502375147446,0,0,1,38,1,4,1,-9,-9,2019,1,1,11,0,5,60,15,1,0,1,0,23.3175005459687,23.3175005459687,0,0,0,0,0,0,0,0,0,0,6.567664989773927,0,0,0,56.18,53.85,3,1,0,0,6,5,0,929.5,0,0,0 +15965,19547,35649,35648,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,4,8.857453830773531,8.982374992666053,0,1,0,-9,2,0,2,-141.5939967144067,0,0,0,36,1,4,1,2,2,2019,1,2,6,0,36,38,15,1,0,1,0,20.2091959340229,20.2091959340229,0,0,0,0,0,0,0,0,0,0,6.815070608369411,0,0,0,58.15,52.91,6,1,0,0,6,5,0,929.5,0,0,0 +15966,19548,35650,35651,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,3,7.379430484608251,7.183440661748655,0,1,0,-9,21,0,-14,-5.195374995526758,0,0,1,57,2,4,1,-9,-9,2019,1,1,8,0,32,32,15,1,0,1,0,5.249749328827775,5.249749328827775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,4,1,0,0,6,4,1,569,0,0,0 +15966,19548,35651,35650,-9,-9,1,1,1,57,1,0,0,0,2,-9,2,1,0,4,7.820154280875438,8.028785756161719,0,1,0,-9,21,0,14,-53.47117462987938,0,0,0,43,2,3,1,2,3,2019,1,2,11,0,37,37,15,1,0,1,0,8.676949989903656,8.676949989903656,0,0,0,0,0,0,0,0,0,0,0,0,11.37333424912802,0,50.52,55.06,6,1,0,0,6,4,1,569,0,0,0 +15966,19549,35652,-9,35650,35651,4,1,0,21,2,0,0,1,2,0,7,2,0,3,6.548912770805905,6.273104868307299,0,3,0,0,0,-9,0,-1049.795348902894,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,2,5,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,54.3,6,1,0,1,6,2,1,661,0,0,0 +15967,19550,35653,-9,-9,-9,1,1,0,59,3,0,0,0,1,-9,2,1,0,4,8.747375911225278,8.890982718426915,6.959778823372298,3,0,0,0,-9,0,-1024.548428701049,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,40,38,15,1,0,-9,0,19.75539888123935,19.75539888123935,0,0,0,0,0,0,0,1,1,0,4.171707788671877,7.257012802930151,0,0,59.71,45.35,6,1,0,0,10,5,1,581,0,0,0 +15968,19551,35654,-9,35657,-9,4,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-887.4910040915343,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,9,2,0,449.25,0,0,0 +15968,19551,35655,-9,35657,-9,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-979.0579492358978,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,2,0,449.25,0,0,0 +15968,19551,35656,-9,35657,-9,2,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1102.669104730421,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,2,0,449.25,0,0,0 +15968,19551,35657,-9,-9,-9,1,1,0,32,3,0,1,0,2,-9,1,1,0,5,5.89436826124133,6.560969810886929,6.451568863483777,4,0,0,0,-9,0,-1011.690434595219,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,10,0,38,40,15,1,0,-9,0,1.286162904864221,1.286162904864221,0,0,0,0,0,0,0,1,1,0,6.059963396899008,0,0,0,47.73,56.73,6,1,0,0,9,2,0,449.25,0,0,0 +15969,19552,35658,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,2,0,6.311326827818096,6.275051915452696,3,0,0,0,-9,0,-925.4957957530195,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,3.648570775587654,0,0,0,1,1,0,0,6.256072001616096,0,0,55.62,23.5,4,1,0,0,6,2,1,495,0,0,0 +15970,19553,35659,35660,-9,-9,1,1,1,38,1,1,1,0,2,-9,2,1,0,3,9.106627068994573,8.867522570789825,0,2,0,-9,4,0,2,86.84336598889008,0,0,0,36,1,5,1,2,2,2019,1,2,9,0,48,50,15,1,0,1,0,17.99610601487382,17.99610601487382,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,5,1,0,0,4,5,0,646.6666666666666,0,0,0 +15970,19553,35660,35659,-9,-9,2,1,0,36,1,1,1,0,1,-9,2,1,0,5,8.393258717909074,8.370197407026906,0,2,0,-9,4,0,-2,40.19359859909037,0,0,1,38,2,3,1,-9,-9,2019,1,1,8,0,52,47,15,1,0,1,0,9.542940600366155,9.542940600366155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,4,5,0,646.6666666666666,0,0,0 +15970,19553,35661,-9,35660,35659,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-893.5335748334086,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,5,0,646.6666666666666,0,0,0 +15971,19554,35662,35663,-9,-9,2,1,1,65,1,0,0,0,2,-9,4,3,0,2,0,8.492644375095571,8.62411202750191,1,0,-9,44,0,-2,41.57380885902315,0,0,0,67,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.546324010622595,0,0,61.28,35.65,3,1,0,0,7,4,1,695.5,0,0,0 +15971,19554,35663,35662,-9,-9,1,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,44,0,2,-60.99712032520777,0,0,0,65,2,2,3,3,2,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.272907631862144,0,0,0,59.7,53.75,6,1,0,0,7,4,1,695.5,0,0,0 +15972,19555,35664,-9,35666,-9,2,1,0,16,2,0,3,1,2,-9,7,2,0,4,0,0,0,4,0,0,0,-9,0,-983.4824237876646,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,3,0,0,8,2,0,488.3333333333333,0,0,0 +15972,19555,35665,-9,35666,-9,5,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1047.653866062231,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,2,0,488.3333333333333,0,0,0 +15972,19555,35666,-9,-9,-9,1,1,0,38,3,0,3,0,3,-9,2,1,0,4,6.731722778250394,6.827818945987417,0,4,0,0,0,-9,0,-1017.691443793827,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,11,0,16,0,15,1,2,-9,0,7.347621290908947,7.347621290908947,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,5,3,0,1,8,2,0,488.3333333333333,0,0,0 +15973,19556,35667,35668,-9,-9,1,1,0,55,1,0,1,0,1,-9,2,1,0,4,9.254526477741063,9.515748269726332,0,2,0,-9,27,0,-15,42.83673071369883,0,0,0,70,1,4,3,2,2,2019,2,2,8,0,50,40,15,1,0,4,0,23.5730919177267,23.5730919177267,0,0,0,0,0,0,0,1,1,0,2.980577916329123,0,0,0,54.2,57.49,6,1,0,0,5,5,1,442,0,0,0 +15973,19556,35668,35667,-9,-9,2,1,1,70,1,0,1,0,1,-9,4,3,0,4,7.561773452575428,8.691886818973076,8.338180402493506,2,0,-9,26,0,15,89.10514969450786,0,0,0,55,1,4,1,2,2,2019,3,1,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.752814717381105,8.203552497635807,0,0,59.88,45.34,7,1,0,0,5,5,1,442,0,0,0 +15973,19557,35669,-9,35667,35668,3,1,1,19,2,0,1,1,2,0,7,2,0,3,0,0,0,3,0,0,0,-9,0,-949.9122838663005,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,16,6,0,0,15,2,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,4,1,0,0,5,1,1,1381,0,0,0 +15974,19558,35670,35671,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,5.306032639211854,5.216653987315088,1,0,-9,53,0,5,176.3140318361252,0,0,0,70,2,3,3,-9,-9,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.06490179659914,5.556729716190969,0,0,40.3,46.2,3,1,0,0,12,2,1,1031.5,0,0,0 +15974,19558,35671,35670,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,53,0,-5,82.43292827134589,0,0,0,75,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.3641441947971893,0,0,0,59.31,49.81,7,1,0,0,12,2,1,1031.5,0,0,0 +15975,19559,35672,35673,-9,-9,2,1,0,74,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-4,-33.79359362056979,0,0,0,78,3,2,3,3,2,2019,4,1,12,1,0,0,15,4,1,4,0,0,0,1,0,1.158226917665653,0,0,0,0,1,1,0,0,0,0,0,42.35,33.61,5,1,0,0,11,2,1,607.5,0,0,0 +15975,19559,35673,35672,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,2,0,6.362230565139757,6.138579748498108,1,0,-9,10,0,4,-35.62335214432468,0,0,0,74,3,2,3,3,3,2019,4,2,10,0,0,0,15,4,0,4,0,0,0,1,0,14.56272563797826,0,0,0,0,1,1,0,0,6.076896681433946,0,0,42.95,29.14,4,1,0,0,11,2,1,607.5,0,0,0 +15976,19560,35674,-9,-9,-9,1,1,1,51,2,0,0,0,3,-9,1,1,0,3,8.027058194040206,8.223082078503666,0,3,0,0,0,-9,0,-1088.563165549468,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,25,35,15,1,0,-9,0,18.68448760119491,18.68448760119491,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,9,4,0,332,0,0,0 +15977,19561,35675,35676,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,5,0,7.616543229969304,7.842093375630295,1,0,-9,47,0,2,-16.75351437507602,0,0,0,70,1,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.584241499024121,7.431490746816229,0,0,57.06,57.76,7,1,0,0,6,3,1,957,0,0,0 +15977,19561,35676,35675,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,6.694940470591429,6.854439239699349,1,0,-9,47,0,-2,34.97853065854831,0,0,0,72,2,5,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.286119279982844,6.643070221472188,0,3,36.45,62.92,6,1,0,0,6,3,1,957,0,0,0 +15978,19562,35677,35678,-9,-9,1,1,1,59,1,0,0,0,2,-9,2,1,0,5,8.69179539813851,9.204871652089089,8.572690720274059,1,0,-9,40,0,3,-3.857312720299062,0,0,0,56,2,3,3,3,3,2019,2,2,6,0,30,24,15,1,0,4,0,21.3789831543674,21.3789831543674,0,0,0,0,0,0,0,0,0,0,6.085232502623738,8.447125870327188,0,0,62.39,56.71,6,1,0,0,6,5,1,456,0,0,0 +15978,19562,35678,35677,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,40,0,-3,-173.6954540655844,0,0,0,59,2,5,1,3,3,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824742458757928,0,0,0,59.04,48.6,7,1,0,0,6,5,1,456,0,0,0 +15979,19563,35679,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,1,0,6.698056046126741,6.807451031250149,3,0,0,0,-9,0,-923.2229890793709,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.716179451418408,0,0,55.04,22.12,6,1,0,0,4,2,1,996,0,0,0 +15980,19564,35680,35681,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,3,7.670296125138268,7.45422753992513,0,1,0,-9,47,0,-5,74.5103902494544,0,0,0,68,3,3,3,3,3,2019,2,1,11,0,35,36,15,1,2,4,0,6.062829749971893,6.062829749971893,0,0,0,0,0,0,0,1,1,0,5.120658837793728,0,0,0,50,47,5,3,0,0,5,3,1,465.5,0,0,0 +15980,19564,35681,35680,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,6.042473170299002,5.966133016420522,1,0,-9,47,0,5,49.7526559485668,0,0,0,63,2,3,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.500133300975605,5.62877322135303,0,0,62.66,52.4,7,3,0,0,5,3,1,465.5,0,0,0 +15981,19565,35682,-9,-9,-9,1,1,1,60,2,0,0,0,2,-9,2,1,0,3,8.50573961633641,8.452297138442956,0,3,0,0,0,-9,0,-1015.807640296731,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,40,15,1,0,-9,0,11.24449313924299,11.24449313924299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.95,40.58,6,1,0,0,12,4,0,873,0,0,0 +15982,19566,35683,-9,35684,-9,3,1,1,13,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-972.2716951222072,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,4,0,0,8,3,0,934.3333333333334,0,0,0 +15982,19566,35684,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,5,7.912401776835326,7.88320138167184,0,4,0,0,0,-9,0,-1076.611585224896,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,31,47,15,1,0,-9,0,12.34238875141155,12.34238875141155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,6,2,0,0,8,3,0,934.3333333333334,0,0,0 +15982,19566,35685,-9,35684,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1036.278087867914,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,4,0,0,8,3,0,934.3333333333334,0,0,0 +15983,19567,35686,35687,-9,-9,2,1,1,45,1,0,1,0,1,-9,2,1,0,3,7.293360918098013,7.087201865871275,0,2,0,-9,6,0,1,-6.180530874644824,0,0,0,44,1,4,1,-9,-9,2019,1,1,9,1,60,54,15,1,1,1,0,2.944480212421312,2.944480212421312,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.01,46.14,5,1,0,0,7,3,1,454,0,0,0 +15983,19567,35687,35686,-9,-9,1,1,0,44,1,0,1,0,1,-9,2,1,0,4,8.106173219512305,7.476135340173939,0,2,0,-9,12,0,-1,-26.60805026832794,-9,0,1,45,1,3,1,2,2,2019,1,2,8,1,30,0,15,1,1,1,0,12.16981826758854,12.16981826758854,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.48,53.71,5,1,0,0,7,3,1,454,0,0,0 +15983,19567,35688,-9,35687,35686,3,1,1,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1083.310631846587,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,7,3,1,454,0,0,0 +15984,19568,35689,-9,-9,-9,1,1,0,54,2,0,1,0,1,-9,1,1,0,4,8.281594253180732,7.667989466576572,0,4,0,0,0,-9,0,-926.9747844884339,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,30,25,15,1,0,-9,0,11.01529716974303,11.01529716974303,0,0,0,0,0,0,0,0,0,0,1.887595679287364,0,0,0,45.37,52,5,1,0,0,12,3,1,1145,0,0,0 +15984,19569,35690,-9,35689,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,4,6.356191818136842,6.381939453566997,0,3,0,0,0,-9,0,-1017.819961795192,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,1,16,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.55,57.73,6,1,0,0,12,3,1,239,0,0,0 +15985,19570,35691,-9,-9,-9,1,1,0,70,3,0,0,0,2,-9,2,1,0,3,7.486052473868072,7.499647753041305,0,3,0,0,0,-9,0,-1086.374125391567,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,1,16,30,15,1,1,-9,0,12.23482420202149,12.23482420202149,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.72,39.2,5,1,0,0,8,2,0,1683,0,0,0 +15986,19571,35692,35693,-9,-9,2,1,1,53,1,0,1,0,2,-9,2,1,0,3,8.247679746664414,7.994850117767085,0,2,0,-9,27,0,9,37.74576294394336,0,0,0,44,2,4,3,2,2,2019,2,1,10,0,40,40,15,1,0,3,0,10.07230651686472,10.07230651686472,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,51.29,5,1,0,0,5,3,0,579,0,0,0 +15986,19571,35693,35692,-9,-9,1,1,0,44,1,0,1,0,2,-9,6,3,0,4,0,0,0,2,0,-9,28,0,0,68.34615180542268,0,0,1,53,2,3,1,-9,-9,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,1,0,0,5,3,0,579,0,0,0 +15986,19572,35694,-9,35693,35692,3,1,0,20,2,0,1,0,2,-9,2,1,0,3,7.453338012646564,7.350967851457654,0,3,0,0,0,-9,0,-983.0748996045537,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,37,16,15,1,1,-9,1,5.462120129288874,5.462120129288874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.62,46.84,6,1,0,0,5,3,0,297,0,0,0 +15987,19573,35695,35696,-9,-9,2,1,1,70,1,0,0,0,2,-9,1,1,0,3,8.368844746776281,8.504477828338221,0,1,0,-9,5,0,4,-34.94166613547969,0,0,0,66,3,3,3,-9,-9,2019,2,1,10,0,25,30,15,1,1,4,0,18.81299318330755,18.81299318330755,0,0,0,0,0,0,0,1,1,0,7.146028850114189,0,0,0,53,46,5,1,0,0,9,3,1,1282.5,0,0,0 +15987,19573,35696,35695,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,5.075610312896615,4.897191767267334,1,0,-9,43,0,-4,-5.629057046370573,0,0,0,70,2,3,1,3,3,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.989054300075324,0,0,66.09999999999999,37.14,6,1,0,0,9,3,1,1282.5,0,0,0 +15988,19574,35697,-9,-9,-9,1,1,1,38,2,0,0,0,2,-9,2,1,0,3,8.216506853758009,8.196450227829681,0,3,0,0,0,-9,0,-1122.216618577638,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,52,58,15,1,0,-9,0,10.38261614689707,10.38261614689707,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,3,1,0,0,2,4,0,232,0,0,0 +15989,19575,35698,35699,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,2,7.836599347009974,8.024509154114842,0,1,0,-9,35,0,-5,132.8766555533053,0,0,0,60,2,2,3,2,2,2019,2,2,11,0,36,35,15,1,0,4,0,11.47231413074948,11.47231413074948,0,0,0,0,0,0,0,0,0,0,1.300628327008999,0,0,0,45.62,44.11,6,1,0,0,2,4,1,1904,0,0,0 +15989,19575,35699,35698,-9,-9,2,1,1,60,1,0,0,0,2,-9,4,3,0,2,0,7.490607907473162,7.723688428330314,1,0,-9,35,0,5,-94.13904065151088,0,0,0,55,2,2,1,2,2,2019,3,1,12,2,0,40,15,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.485125749336474,0,0,49.84,35.34,5,1,0,0,2,4,1,1904,0,0,0 +15989,19576,35700,-9,35698,35699,3,1,0,25,2,0,0,0,1,1,2,1,0,4,7.573006982693122,7.469822421824813,0,3,0,0,0,-9,0,-911.2531523181868,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,19,7,37,0,15,1,7,-9,1,5.715443030253864,5.715443030253864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.74,63,5,1,0,0,2,3,1,246,0,0,0 +15990,19577,35701,-9,-9,-9,1,1,1,66,2,0,0,0,2,-9,4,3,0,3,0,7.249531490492559,7.391204236828412,3,0,0,0,-9,0,-978.2322171261304,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.0327076320406,0,0,33.2,56.85,5,1,0,0,2,3,0,3814,0,0,0 +15991,19578,35702,-9,35704,35703,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-833.0624345179035,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,5,0,642.3333333333334,0,0,0 +15991,19578,35703,35704,-9,-9,1,1,1,39,1,1,1,0,2,-9,2,1,0,2,9.056745119942944,9.250947411662127,0,2,0,-9,5,0,2,46.33358352427638,0,0,0,37,1,4,1,2,2,2019,1,2,8,1,80,48,15,1,1,1,0,12.81544862123936,12.81544862123936,0,0,0,0,0,0,0,1,1,0,.708899921223507,0,0,0,52.24,50.75,6,1,0,0,4,5,0,642.3333333333334,0,0,0 +15991,19578,35704,35703,-9,-9,2,1,0,37,1,1,1,0,1,-9,2,1,0,4,8.757203789951483,8.606913106582958,0,2,0,-9,5,0,-2,55.81091758028817,0,0,1,39,2,2,1,-9,-9,2019,1,1,11,0,40,52,15,1,0,1,0,16.67482583325166,16.67482583325166,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,4,5,0,642.3333333333334,0,0,0 +15992,19579,35705,-9,35706,35707,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1092.841355569635,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,4,1,1069.5,0,0,0 +15992,19579,35706,35707,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,3,7.727116757122212,8.937980642095548,8.299992932136519,2,0,-9,24,0,-23,-26.2559774811532,0,0,1,63,1,4,3,3,3,2019,2,1,8,0,30,30,15,1,0,4,0,10.48670853417951,10.48670853417951,0,0,0,0,0,0,0,1,1,0,3.618811005483825,8.213126575819556,0,0,56.11,44.4,6,1,0,0,6,4,1,1069.5,0,0,0 +15992,19579,35707,35706,-9,-9,1,1,1,63,1,0,2,0,1,-9,4,3,0,4,7.592819366857045,7.44313468727236,3.765575286758284,2,0,-9,23,0,23,-68.5185062948446,0,0,0,40,1,3,1,3,3,2019,3,2,11,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.099732011711667,3.916679483211468,0,0,51.24,58.84,4,1,0,0,6,4,1,1069.5,0,0,0 +15992,19579,35708,-9,35706,35707,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-937.7757555598614,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,1,0,0,6,4,1,1069.5,0,0,0 +15993,19580,35709,35710,-9,-9,2,1,1,26,1,0,0,0,1,-9,2,1,0,5,8.398418163929399,8.58339866915809,0,1,0,-9,1,-9,2,25.91970007968017,-9,1,0,24,1,3,1,-9,-9,2019,1,1,7,1,40,0,15,1,1,1,0,11.8727882507214,11.8727882507214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,6,1,0,0,8,5,0,944,0,0,0 +15993,19580,35710,35709,-9,-9,1,1,0,24,1,0,0,0,1,-9,2,1,0,3,8.415868144559578,8.192524903897024,0,1,0,-9,1,-9,-2,-21.67443064144822,-9,1,1,26,1,5,1,-9,-9,2019,1,2,13,2,44,0,15,1,2,1,0,11.57556188833706,11.57556188833706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,4,3,0,0,8,5,0,944,0,0,0 +15994,19581,35711,-9,-9,-9,1,1,0,20,2,0,0,1,2,0,7,2,0,3,5.719605223255504,6.093744424835008,0,3,0,0,0,-9,0,-930.5670483633037,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,7,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.61,59.41,5,1,0,0,11,2,0,833,0,0,0 +15995,19582,35712,-9,-9,-9,1,1,0,57,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-933.7026691767559,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,0,0,8,1,0,1932,0,0,0 +15995,19583,35713,-9,35712,-9,2,1,0,19,2,0,0,1,3,0,7,2,0,4,5.985969911163282,6.402383122439017,0,3,0,0,0,-9,0,-949.6355574135142,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,18,5,9,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.62,58.96,3,3,0,0,8,2,0,75,0,0,0 +15996,19584,35714,35715,-9,-9,1,1,0,58,1,0,0,0,1,-9,2,1,0,5,7.863871944901137,8.162246705803144,0,1,0,-9,15,0,0,223.7520572298886,0,0,0,58,1,5,1,3,3,2019,1,2,7,0,49,49,15,1,0,1,0,9.515329269960528,9.515329269960528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,6,1,0,0,9,5,1,1078.5,0,0,0 +15996,19584,35715,35714,-9,-9,2,1,1,58,1,0,0,0,1,-9,2,1,0,5,9.341864938123118,9.370008326180669,6.95704045335427,1,0,-9,15,0,0,-41.33574931659039,0,0,0,58,1,5,1,3,2,2019,1,1,12,0,40,40,15,1,0,1,0,31.70537462379155,31.70537462379155,0,0,0,0,0,0,0,0,0,0,0,6.843425921307792,0,0,51.14,60.45,4,1,0,0,9,5,1,1078.5,0,0,0 +15996,19585,35716,-9,35714,35715,3,1,0,20,2,0,0,0,2,-9,2,1,0,2,7.778753301142165,8.267950468260352,0,3,0,0,0,-9,0,-944.1583391865544,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,1,35,0,15,1,1,-9,1,9.441243808030645,9.441243808030645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,54.61,5,1,0,0,9,3,1,272,0,0,0 +15997,19586,35717,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,0,6.026525415766933,6.107172993743369,3,0,0,0,-9,0,-895.0215425248532,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.045078256658591,0,0,62.66,52.4,7,1,0,0,2,2,1,1678,0,0,0 +15998,19587,35718,35719,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,2,0,8.166935376312239,8.288015408317852,1,0,-9,51,0,3,-8.754833036456727,0,0,0,72,1,3,3,2,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.884161345232366,8.063191239039666,0,0,54.59,41.44,5,1,0,0,7,4,1,624,0,0,0 +15998,19587,35719,35718,-9,-9,1,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,7.030225871186955,7.377066633074933,1,0,-9,51,0,-3,-25.37116748809968,0,0,0,75,2,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,1,0,23.16614178522978,0,0,0,0,1,1,0,0,7.284904993842702,0,0,56.64,44.13,6,1,0,0,7,4,1,624,0,0,0 +15999,19588,35720,-9,35721,35722,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.1147829829455,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,725.25,0,0,0 +15999,19588,35721,35722,-9,-9,1,1,0,47,1,0,2,0,1,-9,2,1,0,4,6.481741036822704,6.739331800031427,0,2,0,-9,6,0,1,88.24340980298975,0,0,0,46,2,4,1,1,3,2019,1,2,8,0,10,50,15,1,0,1,0,6.815228804826527,6.815228804826527,0,0,0,0,0,0,0,1,1,0,7.683616361483524,0,0,0,40.77,61.04,6,1,0,0,12,4,1,725.25,0,0,0 +15999,19588,35722,35721,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.472496613322795,8.842807458191238,0,2,0,-9,6,0,-1,-38.37128975430103,-9,0,0,47,1,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,1,1,0,15.99657550398259,15.99657550398259,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,12,4,1,725.25,0,0,0 +15999,19588,35723,-9,35721,35722,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1074.200114797387,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,725.25,0,0,0 +16000,19589,35724,35725,-9,-9,1,1,0,33,1,1,1,0,2,-9,2,1,0,5,7.51723627036724,7.711685437587421,0,2,0,-9,8,0,-2,73.63995110791096,0,0,1,35,2,4,1,3,3,2019,1,2,11,0,53,45,15,1,0,1,0,4.759907162716194,4.759907162716194,0,0,0,0,0,0,0,1,1,0,.4328714811753055,0,9.517615296649481,3,51.14,60.45,6,1,0,0,13,4,0,355.3333333333333,0,0,0 +16000,19589,35725,35724,-9,-9,2,1,1,35,1,1,1,0,2,-9,2,1,0,4,8.238027135263911,8.735255838079553,0,2,0,-9,8,0,2,30.52819740270493,-9,0,0,33,2,5,1,-9,-9,2019,1,1,10,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,5,5,0,0,13,4,0,355.3333333333333,0,0,0 +16000,19589,35726,-9,35724,35725,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-964.6719715769248,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,4,0,355.3333333333333,0,0,0 +16001,19590,35727,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,3,0,8.111212268405556,8.075226886394361,3,0,0,0,-9,0,-989.5677322888893,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.898148859433162,8.090567155082271,0,0,54.96,53.17,6,1,0,0,9,3,1,1205,0,0,0 +16002,19591,35728,35730,-9,-9,3,1,1,39,1,0,2,0,2,-9,1,1,0,4,8.305655169878881,7.744326083721859,0,2,0,-9,9,0,4,-38.17012067581481,-9,0,0,35,2,4,1,-9,-9,2019,1,1,9,0,40,0,15,1,0,1,0,7.716461680484046,7.716461680484046,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,1,0,0,4,3,0,1154,0,0,0 +16002,19591,35729,-9,35730,35728,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.5001729666992,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,4,3,0,1154,0,0,0 +16002,19591,35730,35728,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,4,6.665067142629275,7.083182267404247,5.426054420692344,2,0,-9,9,0,-4,138.6184055278147,0,0,1,39,2,4,1,2,2,2019,1,3,8,0,12,10,15,1,0,1,0,8.968268078197999,8.968268078197999,0,0,0,0,0,0,0,1,1,0,5.512193014469386,0,0,0,54.79,55.86,6,1,0,0,4,3,0,1154,0,0,0 +16003,19592,35731,35732,-9,-9,1,1,1,58,1,0,0,0,1,-9,2,1,0,3,8.925090706616071,8.477227045359266,0,1,0,-9,7,0,6,-39.6441469922793,0,0,0,52,2,3,1,-9,2,2019,1,2,11,0,43,42,15,1,0,1,0,18.54799250738952,18.54799250738952,0,0,0,0,0,0,0,1,1,0,8.991423759128763,0,0,0,48.98,43.55,5,1,0,0,6,5,1,576.5,0,0,0 +16003,19592,35732,35731,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,9.328368781053669,9.078736710064147,0,1,0,-9,7,0,-6,102.092670317402,0,0,0,58,1,3,1,3,2,2019,1,1,11,0,42,42,15,1,0,1,0,25.80182999969201,25.80182999969201,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,6,1,0,0,6,5,1,576.5,0,0,0 +16004,19593,35733,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,8,3,1,1,0,6.287881714350142,6.304473530693433,3,0,0,0,-9,0,-994.8328187443057,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,24,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.423537979054013,10.00790218427884,3,33.39,22.74,2,1,0,1,4,2,1,587,0,0,0 +16005,19594,35734,35735,-9,-9,2,1,0,82,1,0,0,0,2,-9,4,3,0,2,0,7.285794365604042,7.015385394996182,1,0,-9,9,0,-2,-11.51708599181019,0,0,0,84,3,2,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.045820145747187,0,0,65.38,31.06,7,1,0,0,13,2,1,2153,0,0,0 +16005,19594,35735,35734,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,2,41.54842627419423,0,0,0,82,2,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.73999999999999,28.12,7,1,0,0,13,2,1,2153,0,0,0 +16006,19595,35736,-9,-9,-9,1,1,0,71,3,0,0,0,2,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1067.954066755142,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,12,0,0,15,4,12,-9,0,0,0,1,3.063270973046551,0,8.854626166692052,0,19.60442019510582,39.20782609632792,1,1,0,0,0,0,0,32.34,28.79,4,1,0,0,8,1,0,582,0,0,0 +16007,19596,35737,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,4,0,7.001903417916347,7.742398306025874,3,0,0,0,-9,0,-1000.453913533832,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.389130690101376,4.713194619240181,3,46.31,58.29,7,1,0,0,12,3,1,105,0,0,0 +16008,19597,35738,-9,-9,-9,1,1,0,89,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1039.561460643258,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,5,1,1,954,0,0,0 +16009,19598,35739,35740,-9,-9,1,1,1,29,1,0,0,0,2,-9,2,1,0,3,8.923337913553803,8.868980150956935,0,1,0,-9,1,-9,5,110.5608813487852,-9,1,0,24,2,4,1,2,2,2019,1,2,8,0,41,0,15,1,0,1,0,21.16831765944244,21.16831765944244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,7,1,0,0,5,5,0,2059.5,0,0,0 +16009,19598,35740,35739,-9,-9,2,1,0,24,1,0,0,0,2,-9,2,1,0,4,8.162741871121009,7.987425212085371,0,1,0,-9,1,-9,-5,-9.813641171189889,-9,1,1,29,2,3,1,-9,-9,2019,1,1,5,0,35,0,15,1,0,1,0,9.950376586189595,9.950376586189595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,6,1,0,0,5,5,0,2059.5,0,0,0 +16010,19599,35741,-9,-9,-9,1,1,1,32,3,0,0,0,1,-9,2,1,0,2,8.836906606863554,8.864858416982472,0,3,0,0,0,-9,0,-1097.962882252973,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,16,7,44,43,15,1,7,-9,0,19.09659111180083,19.09659111180083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,44.49,5,1,0,0,9,5,1,472,0,0,0 +16011,19600,35742,35743,-9,-9,1,1,0,30,1,0,0,0,2,-9,2,1,0,4,7.376767451533323,7.029232235062165,0,1,0,-9,5,0,0,20.37613236643031,0,0,1,30,2,5,1,-9,2,2019,1,2,11,0,26,40,15,1,0,1,0,7.779755897133796,7.779755897133796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,59.68,5,1,0,0,1,4,1,2134,0,0,0 +16011,19600,35743,35742,-9,-9,2,1,1,30,1,0,0,0,2,-9,2,1,0,5,8.141783769828562,8.216610721452955,0,1,0,-9,5,0,0,-41.71576343139941,0,0,0,30,2,4,1,-9,-9,2019,1,1,3,1,45,38,15,1,1,1,0,8.61277775087696,8.61277775087696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,1,4,1,2134,0,0,0 +16012,19601,35744,-9,-9,-9,1,1,1,35,2,0,2,0,2,-9,3,3,0,4,0,0,0,4,0,0,0,-9,0,-1013.012425731735,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,7,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,1,0,1,1,0,1245,0,0,0 +16013,19602,35745,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,2,7.757186267754475,8.043385107593563,0,3,0,0,0,-9,0,-925.8703576313194,0,0,0,-9,-9,-9,-9,1,2,2019,-9,0,23,10,37,37,15,1,10,-9,0,8.299426159265021,8.299426159265021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.26,51.94,2,2,0,0,9,4,0,1024,0,0,0 +16014,19603,35746,35750,-9,-9,1,1,0,27,1,1,3,0,2,0,7,2,0,3,0,5.610970887520874,5.710172827724431,2,0,-9,2,0,1,6.166257521903404,-9,1,1,26,2,4,3,2,1,2019,4,4,11,0,0,0,15,2,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,5.688987384814289,0,0,0,48.93,47.85,6,2,0,0,6,2,0,782.4,0,0,0 +16014,19603,35747,-9,35746,35750,5,1,1,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1000.904723358667,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,2,0,0,6,2,0,782.4,0,0,0 +16014,19603,35748,-9,35746,35750,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-888.8979205287036,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,6,2,0,782.4,0,0,0 +16014,19603,35749,-9,35746,35750,2,1,1,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1105.593367999306,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,6,2,0,782.4,0,0,0 +16014,19603,35750,35746,-9,-9,4,1,1,26,1,1,3,0,2,-9,6,3,0,4,0,0,0,2,0,-9,2,0,-1,-10.13152345951054,0,1,0,27,2,3,2,-9,-9,2019,4,1,10,0,0,0,15,3,1,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,6,2,0,782.4,0,0,0 +16015,19604,35751,-9,-9,-9,1,1,1,62,2,0,0,0,2,-9,4,3,0,4,0,7.618960493192716,7.594380761263935,3,0,0,0,-9,0,-1021.497249352587,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.394985141489155,0,3,55.44,52.99,6,1,0,0,12,3,1,318,0,0,0 +16016,19605,35752,35753,-9,-9,1,1,1,43,1,0,0,0,2,-9,2,1,0,5,8.602497289792106,8.82776770764079,0,1,0,-9,6,0,-7,-4.093435441629998,0,0,0,50,2,4,1,2,2,2019,1,2,7,0,47,50,15,1,0,1,0,14.61587508292546,14.61587508292546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,7,5,1,233.5,0,0,0 +16016,19605,35753,35752,-9,-9,2,1,0,50,1,0,0,0,2,-9,2,1,0,4,7.670360763497509,7.643734138896375,0,1,0,-9,6,0,7,-75.32186288663281,-9,0,0,43,2,5,1,2,2,2019,1,1,10,0,10,0,15,1,1,1,0,26.2044270846965,26.2044270846965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,6,1,0,0,7,5,1,233.5,0,0,0 +16016,19606,35754,-9,35753,35752,3,1,1,18,2,0,0,0,2,-9,2,1,0,4,7.451714544348648,7.651778931456428,0,3,0,0,0,-9,0,-1003.668503792983,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,40,0,15,1,2,-9,1,5.132246688880802,5.132246688880802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,7,3,1,231,0,0,0 +16017,19607,35755,35756,-9,-9,1,1,0,48,1,0,2,0,2,-9,2,1,0,3,8.348123835427831,8.648403903899855,0,2,0,-9,6,0,-11,100.9675992787949,0,0,0,59,2,4,1,2,2,2019,1,2,10,0,42,40,15,1,0,1,0,12.14612309316422,12.14612309316422,0,0,0,0,0,0,0,1,1,0,2.960274850940197,0,0,0,54.62,53.53,6,1,0,0,9,5,0,398,0,0,0 +16017,19607,35756,35755,-9,-9,2,1,1,59,1,0,2,0,2,-9,2,1,0,4,8.485965980877104,8.62534062598127,0,2,0,-9,6,0,11,32.81516952346809,0,0,0,48,2,3,1,2,3,2019,1,1,8,0,39,40,15,1,0,1,0,20.65385020029316,20.65385020029316,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,6,1,0,0,9,5,0,398,0,0,0 +16017,19608,35757,-9,35755,35756,3,1,0,27,2,0,2,0,2,-9,2,1,0,4,7.976239862150406,7.579527749191104,0,3,0,-9,0,-9,0,-999.8926685195504,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,0,15,1,2,-9,1,8.214070707260781,8.214070707260781,0,0,0,0,0,0,0,1,1,0,5.823111543196812,0,0,0,47,57,5,2,0,0,9,4,0,1063.5,0,0,0 +16017,19608,35758,-9,35757,-9,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1061.083924428906,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,2,0,0,9,4,0,1063.5,0,0,0 +16018,19609,35759,35760,-9,-9,1,1,1,61,1,0,0,0,1,-9,4,3,0,4,0,8.223376535966469,7.576023809324722,1,0,-9,39,0,-10,-79.74081697458433,0,0,0,71,2,1,3,2,3,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.022020270657963,120.3287872064094,1,60.12,54.8,6,1,0,0,12,3,1,2497,0,0,0 +16018,19609,35760,35759,-9,-9,2,1,0,71,1,0,0,0,2,-9,4,3,0,1,0,5.865805797762578,5.948313671675876,1,0,-9,39,0,10,-2.912293308880329,0,0,0,61,1,4,3,3,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.780304814795386,0,0,46.85,12.98,6,1,0,0,12,3,1,2497,0,0,0 +16019,19610,35761,35762,-9,-9,2,1,1,42,1,0,0,0,2,-9,2,1,0,1,0,0,0,1,0,-9,6,0,2,0,0,0,0,40,2,2,3,-9,-9,2019,2,1,22,8,0,0,15,1,8,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.14,25.52,3,1,0,1,12,1,0,2481.5,0,0,0 +16019,19610,35762,35761,-9,-9,1,1,0,40,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,6,0,-2,0,0,0,1,42,2,1,1,2,3,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.009653304327838,3,34.05,44.25,4,1,1,1,12,1,0,2481.5,0,0,0 +16020,19611,35763,-9,-9,-9,1,1,0,36,2,0,3,0,2,-9,2,1,0,3,6.970513816705878,6.71818677343821,0,4,0,-9,0,-9,0,-874.0650138954097,-9,0,1,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,0,-9,0,7.033771666197108,7.033771666197108,0,0,0,0,0,0,0,1,1,0,0,0,125.0141354607315,3,49.04,55.86,6,1,0,0,9,2,1,802.6666666666666,0,0,0 +16020,19611,35764,-9,35763,-9,3,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1049.549389664495,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,2,1,802.6666666666666,0,0,0 +16020,19611,35765,-9,35763,-9,4,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-988.5026329338554,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,9,2,1,802.6666666666666,0,0,0 +16021,19612,35766,-9,-9,-9,1,1,0,41,2,0,1,0,2,-9,2,1,0,3,7.928833606532798,8.326228462431954,0,4,0,0,0,-9,0,-1120.254884950982,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,40,35,15,1,0,-9,0,7.447551234635772,7.447551234635772,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,5,3,0,0,7,3,0,997,0,0,0 +16021,19612,35767,-9,35766,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1062.118479310942,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.97,55.54,2,2,0,0,7,3,0,997,0,0,0 +16022,19613,35768,35769,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,54,0,-2,-251.1682052023621,0,0,0,74,2,3,3,2,2,2019,4,2,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.087729845583922,0,0,0,44.17,44.46,5,1,0,0,6,2,1,556,0,0,0 +16022,19613,35769,35768,-9,-9,2,1,1,74,1,0,0,0,2,-9,4,3,0,3,0,7.922995889546481,7.512405298958632,1,0,-9,54,0,2,-117.1565694664469,0,0,0,72,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.84480116937774,7.466583620379643,0,0,60.29,52.11,6,1,0,0,6,2,1,556,0,0,0 +16023,19614,35770,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,0,8.001228603865016,8.181195196123086,3,0,0,0,-9,0,-920.0682396887121,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.034686851362641,7.716540487837411,0,0,56.75,36.33,5,1,0,0,2,4,1,3035,0,0,0 +16024,19615,35771,35772,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,2,0,0,0,1,0,-9,29,0,3,.5521849681999704,0,0,0,52,1,2,1,2,2,2019,1,2,8,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.058577552749186,0,0,0,37.16,48.89,5,1,0,0,4,4,1,589,0,0,0 +16024,19615,35772,35771,-9,-9,2,1,0,52,1,0,0,0,1,-9,2,1,0,2,8.957288619611759,8.755196967282401,0,1,0,-9,25,0,-3,48.75801837613469,0,0,0,55,2,2,1,2,3,2019,1,1,17,5,37,37,15,1,5,1,0,20.75151111525647,20.75151111525647,0,0,0,0,0,0,0,0,0,0,1.431114534736094,0,0,0,41.54,49.13,3,2,0,0,4,4,1,589,0,0,0 +16025,19616,35773,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,5,0,8.672116607483702,8.856370064266883,3,0,0,0,-9,0,-904.872297579717,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.401954673588113,8.932956275059263,5.449339156024436,3,57.06,57.76,6,1,0,0,12,5,1,388,0,0,0 +16026,19617,35774,-9,-9,-9,1,1,1,39,2,0,0,0,2,-9,1,1,0,4,8.510475807188442,8.429294072281001,0,3,0,0,0,-9,0,-913.2885885896193,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,45,42,15,1,0,-9,0,13.90413816258675,13.90413816258675,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,5,1,0,0,4,5,1,581,0,0,0 +16027,19618,35775,-9,-9,-9,1,1,0,87,3,0,0,0,3,-9,4,3,0,4,0,5.132044713297202,5.278020719585284,3,0,0,0,-9,0,-894.6551027974034,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.7764658486008282,4.610188766368879,0,0,55.79,52.62,6,1,0,0,5,2,0,184,0,0,0 +16028,19619,35776,35777,-9,-9,1,1,1,76,1,0,0,0,2,-9,4,3,0,3,0,7.499634766772209,7.535467904775928,1,0,-9,3,0,12,14.33438779359879,0,0,0,64,2,2,1,3,2,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.295067591750031,7.313226768400957,0,0,60.6,43.75,6,1,0,0,4,3,1,2829,0,0,0 +16028,19619,35777,35776,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,2,6.977838199387181,6.892287105845852,0,1,0,-9,3,0,-12,-2.98218350217356,0,0,0,76,2,3,3,2,1,2019,2,1,11,0,20,20,15,1,0,4,0,6.656271926606965,6.656271926606965,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.07,38.32,5,1,0,0,4,3,1,2829,0,0,0 +16029,19620,35778,35779,-9,-9,1,1,0,50,1,0,0,0,2,-9,2,1,0,3,7.994298951510698,8.145693550881798,0,1,0,-9,30,0,-1,27.44411321009678,0,0,0,51,2,3,1,2,3,2019,1,2,15,3,40,40,15,1,3,1,0,9.010700894160756,9.010700894160756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,49.75,3,1,0,0,4,5,1,1526.5,0,0,0 +16029,19620,35779,35778,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.380840680714151,8.53298917055232,0,1,0,-9,10,0,1,-106.5533504886116,0,0,0,50,2,3,1,-9,-9,2019,1,1,14,2,42,42,15,1,2,1,0,13.81675567868148,13.81675567868148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.89,41.27,3,1,0,0,4,5,1,1526.5,0,0,0 +16030,19621,35780,-9,-9,-9,1,1,1,53,3,0,0,0,1,-9,2,1,0,3,9.259688874559988,9.126715252695641,0,3,0,0,0,-9,0,-1028.590775056559,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,40,35,15,1,0,-9,0,18.97610155023504,18.97610155023504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,3,0,0,8,5,1,462,0,0,0 +16031,19622,35781,-9,-9,-9,1,1,0,73,3,0,0,0,1,-9,4,3,0,4,0,8.169002126478153,8.320379217001083,3,0,-9,0,1,0,-1073.764780949235,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.847231471687811,8.313691431862681,0,0,45.16,51.93,3,1,0,0,9,4,1,445,0,0,0 +16032,19623,35782,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-935.18952558834,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,6,1,0,232,0,0,0 +16033,19624,35783,35784,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,2,7.150002322713244,7.25638459658855,4.689591609292632,1,0,-9,35,0,-1,131.167973136961,0,0,0,59,2,5,1,3,3,2019,1,2,12,0,19,19,15,1,0,1,0,6.212927304916715,6.212927304916715,0,0,0,0,0,0,0,0,0,0,4.703238353931089,5.365178133785275,0,0,60.08,40.24,4,1,0,0,6,4,1,609,0,0,0 +16033,19624,35784,35783,-9,-9,2,1,1,59,1,0,0,0,2,-9,2,1,0,5,7.991745082206998,8.703423565901806,7.741811195445212,1,0,-9,10,0,1,176.2183869481144,0,0,0,58,2,2,1,-9,-9,2019,1,1,7,0,37,37,15,1,0,1,0,8.984424673437617,8.984424673437617,0,0,0,0,0,0,0,0,0,0,4.329462946564542,7.95672831857994,0,0,62.39,56.71,2,1,0,0,6,4,1,609,0,0,0 +16033,19625,35785,-9,35783,35784,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.46666259070062,8.711888265318358,0,3,0,0,0,-9,0,-1074.457083700568,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,43,15,1,0,-9,1,14.69601923848035,14.69601923848035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,46.44,6,1,0,0,6,5,1,601,0,0,0 +16034,19626,35786,-9,-9,-9,1,1,0,39,3,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-990.8648162906807,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,23,11,0,37,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.51,47.63,1,1,1,1,2,1,0,380,0,0,0 +16035,19627,35787,-9,-9,-9,1,1,1,67,2,0,0,0,1,-9,2,1,0,4,8.763561688184193,9.515869535785399,8.181645891404317,3,0,0,0,-9,0,-1051.299572643313,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,1,44,60,15,1,1,-9,0,22.2304548156174,22.2304548156174,0,0,0,0,0,0,0,0,0,0,9.48543699763489,8.757425565696121,10.57411675640592,3,55.44,52.99,6,1,0,0,8,5,1,398,0,0,0 +16036,19628,35788,35789,-9,-9,2,1,1,55,1,0,1,0,1,-9,2,1,0,4,9.635315817103153,9.854066354332172,0,2,0,-9,24,0,1,23.06098564778435,0,0,0,54,1,3,3,3,2,2019,2,1,6,0,37,55,15,1,0,3,0,46.08812241023468,46.08812241023468,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.76,47.53,7,1,0,0,8,5,1,926.5,0,0,0 +16036,19628,35789,35788,-9,-9,1,1,0,54,1,0,1,0,1,-9,6,3,0,3,0,0,0,2,0,-9,25,0,-1,48.4016013464669,0,0,0,55,1,4,1,2,1,2019,3,2,13,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.54,58.08,5,1,0,0,8,5,1,926.5,0,0,0 +16036,19629,35790,-9,35789,35788,3,1,1,19,2,0,1,1,2,-9,7,2,0,5,7.545482680262377,7.421230599634083,0,3,0,0,0,-9,0,-908.8836229089811,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,6,0,22,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,8,3,1,470,0,0,0 +16037,19630,35791,35792,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,7.1994602877914,6.941526182258443,1,0,-9,49,0,3,74.68529822020841,0,0,0,68,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.453214483561412,7.032242441577753,0,0,57.16,56.15,7,1,0,0,1,2,1,635.5,0,0,0 +16037,19630,35792,35791,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-3,65.07857982929444,0,0,0,71,2,4,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.325562296033291,0,0,0,50.27,46.95,7,1,0,0,1,2,1,635.5,0,0,0 +16038,19631,35793,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,4,3,0,3,0,8.233591576981098,8.466032153898217,3,0,0,0,-9,0,-911.0487091562923,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,6.127177358305813,8.344637274497066,0,0,60.86,50.49,6,1,0,0,10,4,1,264,0,0,0 +16039,19632,35794,-9,-9,-9,1,1,1,20,2,0,0,1,2,0,7,2,0,4,7.176996948975003,7.277713826006393,0,3,0,0,0,-9,0,-1123.758380394683,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,4,0,0,9,3,0,325,0,0,0 +16040,19633,35795,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-1008.003719007878,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.398974387406537,0,0,0,44.12,42.96,6,1,0,0,7,1,0,298,0,0,0 +16041,19634,35796,-9,-9,-9,1,1,0,26,2,0,0,0,2,-9,2,1,0,5,7.960106848791899,8.280277795012076,0,3,0,0,0,-9,0,-955.669566298069,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,6,0,60,57,15,1,0,-9,0,6.868834663310909,6.868834663310909,0,0,0,0,0,0,0,0,0,0,3.949347895823019,0,0,0,57.06,57.76,6,1,0,0,6,4,1,212,0,0,0 +16042,19635,35797,35798,-9,-9,2,1,1,55,1,0,0,0,2,-9,2,1,0,4,8.807694633433895,9.23916069030933,0,1,0,-9,3,0,8,76.49757623015505,-9,0,0,47,2,1,1,-9,-9,2019,1,1,9,0,36,0,15,1,1,1,0,26.34691697906916,26.34691697906916,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,4,0,0,8,5,1,295,0,0,0 +16042,19635,35798,35797,-9,-9,1,1,0,47,1,0,0,0,2,-9,2,1,0,1,7.719723659858539,8.067183335485529,0,1,0,-9,6,0,-8,.5588363990612835,0,0,0,55,2,4,1,3,3,2019,1,2,18,6,39,52,15,1,6,1,0,8.377536275304017,8.377536275304017,0,0,0,0,0,0,0,1,1,0,3.067103903241025,0,0,0,50.25,12.3,3,4,0,0,8,5,1,295,0,0,0 +16043,19636,35799,-9,35800,35801,4,1,0,12,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-985.3982633586016,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,6,4,1,1182.666666666667,0,0,0 +16043,19636,35800,35801,-9,-9,1,1,0,46,1,0,1,0,2,-9,2,1,0,3,7.281762739221086,7.577090588103702,0,2,0,-9,16,0,-3,8.997060567190776,0,0,0,49,2,3,1,2,2,2019,1,2,11,0,18,16,15,1,0,1,0,10.32347767232664,10.32347767232664,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,47.92,5,1,0,0,6,4,1,1182.666666666667,0,0,0 +16043,19636,35801,35800,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,3,8.434816866806203,8.655744045623745,0,2,0,-9,16,0,3,123.9282219904253,0,0,0,46,2,3,1,2,2,2019,1,1,7,0,39,41,15,1,0,1,0,16.78306670335365,16.78306670335365,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,6,1,0,0,6,4,1,1182.666666666667,0,0,0 +16043,19637,35802,-9,35800,35801,3,1,0,18,2,0,1,0,2,1,2,1,0,5,7.144337837705183,6.937090583769454,0,3,0,0,0,-9,0,-831.7297459880136,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,20,8,20,0,15,1,8,-9,1,6.961462804284634,6.961462804284634,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.52,60.57,5,1,0,0,6,2,1,520,0,0,0 +16044,19638,35803,-9,-9,-9,1,1,1,63,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-988.6607346111975,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.56,31.15,5,1,0,0,13,1,1,667,0,0,0 +16045,19639,35804,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,3,0,7.535577630244574,7.394850624592889,3,0,0,0,-9,0,-975.2822107227616,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,25.43501609161466,0,0,1,1,0,0,7.54542404622617,0,0,55,45,6,1,0,0,4,3,1,339,0,0,0 +16046,19640,35805,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,8.563091902975845,8.832528227241832,0,3,0,0,0,-9,0,-997.281066900637,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,5,35,36,15,1,5,-9,0,17.02122777466919,17.02122777466919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.51,56.99,5,1,0,0,8,5,1,293,0,0,0 +16047,19641,35806,-9,35809,35808,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-910.2504623024752,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,4,3,1,1153.25,0,0,0 +16047,19641,35807,-9,35809,35808,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.459835269413,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,1,1153.25,0,0,0 +16047,19641,35808,35809,-9,-9,2,1,1,50,1,0,2,0,2,-9,2,1,0,3,8.445314799253026,8.258208966371312,0,2,0,-9,18,0,10,-126.5930958944261,0,0,0,40,2,2,1,2,2,2019,1,1,5,0,48,48,15,1,0,1,0,12.26702167882481,12.26702167882481,0,0,0,0,0,0,0,1,1,0,0,0,41.260494165735,3,58.89,48.6,6,1,0,0,4,3,1,1153.25,0,0,0 +16047,19641,35809,35808,-9,-9,1,1,0,40,1,0,2,0,2,-9,2,1,0,2,7.143323412158881,6.663244833337857,0,2,0,-9,19,0,-10,-21.46135382799598,0,0,1,50,2,3,1,3,-9,2019,1,2,15,3,8,8,15,1,3,1,0,12.05516436708371,12.05516436708371,0,0,0,0,0,0,0,1,1,0,0,0,40.60568096835524,3,27.18,32.65,6,1,0,0,4,3,1,1153.25,0,0,0 +16048,19642,35810,35811,-9,-9,2,1,0,53,1,0,0,0,2,-9,2,1,0,3,7.366735307676566,7.496093705240401,0,1,0,-9,38,0,0,10.12738646148813,0,0,0,53,3,5,1,-9,-9,2019,1,1,4,0,18,23,15,1,0,1,0,11.12731796748209,11.12731796748209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,7,1,0,0,2,3,1,387.5,0,0,0 +16048,19642,35811,35810,-9,-9,1,1,1,53,1,0,0,0,3,-9,2,1,0,5,7.173177033836251,6.915287450731896,0,1,0,-9,39,0,0,-16.73299176846826,0,0,0,53,2,3,1,-9,-9,2019,1,2,7,0,40,46,15,1,0,1,0,3.133886434554619,3.133886434554619,0,0,0,0,0,0,0,0,0,0,3.881247082129415,0,0,0,60.02,56.42,6,1,0,0,2,3,1,387.5,0,0,0 +16049,19643,35812,35813,-9,-9,1,1,0,28,1,0,0,0,1,-9,2,1,0,3,7.663008261398891,7.859424324206882,0,1,0,-9,3,0,-5,49.61285282487404,0,1,1,33,2,4,1,2,-9,2019,1,2,14,2,37,40,15,1,2,1,0,10.13573285159111,10.13573285159111,0,0,0,0,0,0,0,0,0,0,3.456886548007864,0,0,0,36.83,53.33,5,1,0,0,9,4,1,1343.5,0,0,0 +16049,19643,35813,35812,-9,-9,2,1,1,33,1,0,0,0,2,-9,2,1,0,4,7.691208526212565,7.709872388850743,0,1,0,-9,3,0,5,50.45369404232991,-9,0,0,28,1,3,1,-9,-9,2019,1,1,11,0,21,0,15,1,0,1,0,10.55848555491104,10.55848555491104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.36,52.41,3,1,0,0,9,4,1,1343.5,0,0,0 +16050,19644,35814,-9,35816,35815,5,1,1,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.3015928060619,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,5,1,735.8,0,0,0 +16050,19644,35815,35816,-9,-9,2,1,1,39,1,0,3,0,1,-9,2,1,0,3,9.850932960786105,9.621754436079673,0,2,0,-9,17,0,0,-50.81832570255482,0,0,0,39,1,3,1,2,2,2019,1,1,8,0,55,50,15,1,0,1,0,32.36694917428448,32.36694917428448,0,0,0,0,0,0,0,1,1,0,8.621819291455001,0,0,0,47.07,53.97,3,3,0,0,8,5,1,735.8,0,0,0 +16050,19644,35816,35815,-9,-9,1,1,0,39,1,0,3,0,1,-9,2,1,0,3,7.49227231844968,7.273749405395101,0,2,0,-9,17,0,0,-157.6233020342488,0,0,1,39,1,3,1,2,2,2019,1,2,8,0,13,14,15,1,0,1,0,11.88442874069139,11.88442874069139,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,4,3,0,0,8,5,1,735.8,0,0,0 +16050,19644,35817,-9,35816,35815,4,1,1,11,2,0,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1011.084305523129,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,3,0,0,8,5,1,735.8,0,0,0 +16050,19644,35818,-9,35816,35815,3,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-885.3927184990268,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,5,1,735.8,0,0,0 +16051,19645,35819,35821,-9,-9,2,1,0,64,1,0,0,0,2,-9,2,1,0,3,7.268650407422458,7.484518221512092,0,1,0,-9,9,0,11,-26.17478890733005,0,0,0,53,3,2,1,3,3,2019,1,1,12,0,19,17,15,1,0,1,0,10.77734671143218,10.77734671143218,0,0,0,0,0,0,0,1,1,0,6.237881619810288,0,0,0,46.33,55.93,4,1,0,0,11,2,1,476.6666666666667,0,0,0 +16051,19645,35820,-9,35819,35821,3,1,0,16,2,0,0,0,2,-9,2,2,0,4,5.775115761980049,5.715575102809984,0,1,0,0,0,-9,0,-1049.63387964605,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,11,2,16,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.99,61.32,6,1,0,0,11,2,1,476.6666666666667,0,0,0 +16051,19645,35821,35819,-9,-9,1,1,1,53,1,0,0,0,3,-9,1,1,0,2,4.199900543456,4.350964301416855,0,1,0,-9,9,0,-11,-22.59907273746764,0,0,0,64,2,3,1,2,3,2019,1,2,10,0,90,90,15,1,0,1,0,.1079911104489685,.1079911104489685,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,5,1,0,0,11,2,1,476.6666666666667,0,0,0 +16052,19646,35822,-9,35824,35823,5,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1094.837006335022,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,11,3,1,1233.666666666667,0,0,0 +16052,19646,35823,35824,-9,-9,1,1,1,43,1,0,1,0,2,-9,2,1,0,4,8.260511469760612,8.253434284156258,0,2,0,-9,5,0,2,74.90183607428428,0,0,0,41,2,4,1,3,3,2019,1,2,6,0,42,37,15,1,0,1,0,9.472346099711109,9.472346099711109,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.13,58.64,6,1,0,0,11,3,1,1233.666666666667,0,0,0 +16052,19646,35824,35823,-9,-9,2,1,0,41,1,0,1,0,2,-9,1,1,0,4,7.134852920758531,7.065998904453991,0,2,0,-9,5,0,-2,86.12419624663184,0,0,1,43,2,4,1,3,3,2019,1,1,10,0,0,84,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,11,3,1,1233.666666666667,0,0,0 +16052,19647,35825,-9,35824,35823,3,1,1,21,2,0,1,0,2,-9,2,1,0,4,7.107180338953432,6.854495226325045,0,3,0,0,0,-9,0,-968.3960834445571,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,10,37,15,1,1,-9,1,13.17211652486531,13.17211652486531,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,1,0,0,11,2,1,272,0,0,0 +16052,19648,35826,-9,35824,35823,4,1,0,19,2,0,1,0,2,-9,2,1,0,4,6.315075016801398,6.675249365824987,0,3,0,0,0,-9,0,-1003.680449792404,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,16,35,15,1,2,-9,1,4.029210450515831,4.029210450515831,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,11,2,1,616,0,0,0 +16053,19649,35827,35828,-9,-9,1,1,0,45,1,0,3,0,1,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-3,7.376187141060271,0,0,0,48,1,4,1,1,1,2019,3,2,15,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.592018673341068,0,0,0,36.18,48.3,5,1,0,0,12,4,1,867.4,0,0,0 +16053,19649,35828,35827,-9,-9,2,1,1,48,1,0,3,0,1,-9,1,1,0,4,9.344175822559247,9.358814847759046,0,2,0,-9,8,0,3,-95.3867157745108,0,0,0,45,1,3,3,2,3,2019,2,1,10,0,52,55,15,1,0,3,0,28.43373863213153,28.43373863213153,0,0,0,0,0,0,0,1,1,0,5.781841853796363,0,0,0,49.46,56.91,2,1,0,0,12,4,1,867.4,0,0,0 +16053,19649,35829,-9,35827,35828,3,1,1,15,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1060.862553762666,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,867.4,0,0,0 +16053,19649,35830,-9,35827,35828,5,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-991.5502383329368,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,867.4,0,0,0 +16053,19649,35831,-9,35827,35828,4,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-863.62495210419,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,4,1,867.4,0,0,0 +16054,19650,35832,35833,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,5.414938766869834,5.382625344804594,1,0,-9,1,-9,4,-64.2966474906619,-9,0,0,69,2,4,3,-9,-9,2019,4,1,20,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.951345709806786,0,0,34.62,37.09,4,2,0,0,9,3,1,291,0,0,0 +16054,19650,35833,35832,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,7.716749704547422,7.289257663931486,1,0,-9,1,-9,-4,-54.7803055284969,-9,0,0,73,2,2,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.943382531437902,7.658975336335016,0,0,51.77,58.57,6,1,0,0,9,3,1,291,0,0,0 +16055,19651,35834,35835,-9,-9,2,1,0,63,1,0,0,0,2,-9,2,1,0,5,8.324645488554784,8.634050934214303,5.365130635514221,1,0,-9,31,0,-8,-11.13301877348153,0,0,0,71,2,4,3,3,3,2019,2,1,11,1,50,45,15,1,1,4,0,8.181970619967949,8.181970619967949,0,0,0,0,0,0,0,1,1,0,2.386188964957148,5.630223073356718,0,0,48.18,61.8,6,1,0,0,2,3,1,92.5,0,0,0 +16055,19651,35835,35834,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,6.042838358614925,6.582802202222523,1,0,-9,31,0,8,160.4170338677692,0,0,0,63,2,5,1,3,3,2019,3,2,5,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.436199603144185,0,0,57.16,56.15,6,1,0,0,2,3,1,92.5,0,0,0 +16055,19652,35836,-9,35834,35835,3,1,0,29,2,0,0,0,1,-9,2,1,0,4,8.450385325096164,8.34774065349017,0,3,0,0,0,-9,0,-1002.512241403062,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,40,37,15,1,2,-9,1,13.30911914996978,13.30911914996978,0,0,0,0,0,0,0,1,1,0,2.929319614296721,0,0,0,48,56,5,1,0,0,2,4,1,904,0,0,0 +16056,19653,35837,-9,-9,-9,1,1,0,37,2,0,0,0,2,-9,8,3,1,2,5.293070427557635,5.406105404329018,0,3,0,0,0,-9,0,-861.306019249578,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,16,4,3,6,15,3,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.114170715089342,0,0,0,26.58,48.96,3,1,0,0,7,2,1,1865,0,0,0 +16057,19654,35838,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,2,0,5.934138441566238,5.977239026628267,3,0,0,0,-9,0,-946.963203108837,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.096117528579767,0,0,51.54,22.34,5,1,0,0,6,2,0,376,0,0,0 +16058,19655,35839,35840,-9,-9,1,1,0,59,1,0,0,0,2,-9,2,1,0,4,8.197224270232629,8.186556173243229,0,1,0,1,1,-9,0,4.657333929845911,0,0,0,68,1,4,3,2,2,2019,2,2,5,0,30,34,15,1,0,4,0,14.86663631287345,14.86663631287345,0,0,0,0,0,0,0,1,1,0,7.619975159143408,0,0,0,57.16,56.15,6,1,0,0,8,5,1,676.5,0,0,0 +16058,19655,35840,35839,-9,-9,2,1,1,68,1,0,0,0,1,-9,4,3,0,4,0,8.308089196444685,8.611273721880227,1,0,-9,1,-9,9,138.550917357592,-9,0,0,59,2,4,1,-9,-9,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.252805122407976,8.93532483211867,0,3,56.77,52.22,7,1,0,0,8,5,1,676.5,0,0,0 +16059,19656,35841,35842,-9,-9,2,1,0,60,1,0,0,0,2,-9,2,1,0,3,7.39457405490001,7.401087730178962,0,1,0,-9,29,0,1,-97.62171407696121,0,0,0,59,1,3,1,3,3,2019,1,1,14,3,30,35,15,1,3,1,0,8.456220168330324,8.456220168330324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,3,2,0,0,8,5,1,1549,0,0,0 +16059,19656,35842,35841,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,3,9.315224529407741,9.497422325456526,0,1,0,-9,27,0,-1,21.46150201530823,0,0,0,60,2,3,1,2,2,2019,1,2,14,4,35,40,15,1,4,1,0,40.43497918793287,40.43497918793287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.15,55.74,6,4,0,0,8,5,1,1549,0,0,0 +16059,19657,35843,-9,35841,35842,3,1,1,25,2,0,0,0,2,-9,2,1,0,3,8.141659600730698,7.772397600533239,0,3,0,0,0,-9,0,-975.0636730275111,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,38,37,15,1,2,-9,1,10.50585878670427,10.50585878670427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.93,56.27,3,4,0,0,8,4,1,274,0,0,0 +16060,19658,35844,-9,-9,-9,1,1,1,40,2,0,0,0,1,-9,2,1,0,3,8.64707741367012,8.810241325092962,0,3,0,0,0,-9,0,-924.1775725981209,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,4,50,58,15,1,4,-9,0,18.01132755629764,18.01132755629764,0,0,0,0,0,0,0,0,0,0,1.763732556062598,0,1.86788848739841,3,53.04,29.71,5,1,0,0,7,5,1,621,0,0,0 +16061,19659,35845,35846,-9,-9,1,1,1,72,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,29,0,12,-18.41622462523924,0,0,0,60,1,4,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.279693221813027,0,0,0,48.94,45.02,6,1,0,0,9,3,1,454,0,0,0 +16061,19659,35846,35845,-9,-9,2,1,0,60,1,0,0,0,1,-9,1,1,0,4,8.158626599351804,8.621927422245307,0,1,0,-9,6,0,-12,-31.54917206597317,-9,0,0,72,2,3,3,-9,-9,2019,2,1,9,0,32,0,15,1,1,4,0,14.25328031117255,14.25328031117255,0,0,0,0,0,0,0,1,1,0,8.590928183754833,0,0,0,53,52,6,1,0,0,9,3,1,454,0,0,0 +16062,19660,35847,35848,-9,-9,1,1,0,56,1,0,1,0,2,-9,2,1,0,4,6.940696366915296,6.995361432924817,0,2,0,-9,40,0,-2,-66.68270052189388,0,0,0,58,3,2,1,3,3,2019,1,2,9,0,7,16,15,1,0,1,0,14.74744883055519,14.74744883055519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.58,57.61,6,1,0,1,2,2,1,799.6666666666666,0,0,0 +16062,19660,35848,35847,-9,-9,2,1,1,58,1,0,1,0,3,-9,1,1,0,2,6.490944863518346,7.007966557679831,0,2,0,-9,39,0,2,-66.16580673029775,-9,0,0,56,2,4,1,3,3,2019,1,1,13,3,45,0,15,1,3,1,0,1.870231699584598,1.870231699584598,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,37.4,4,1,0,0,2,2,1,799.6666666666666,0,0,0 +16062,19660,35849,-9,35847,35848,3,1,1,16,2,0,1,1,3,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1041.379216166056,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,8,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,6,1,0,1,2,2,1,799.6666666666666,0,0,0 +16063,19661,35850,-9,-9,-9,1,1,0,57,3,0,0,0,2,-9,2,1,0,4,7.863601901252862,7.966646918442661,0,3,0,0,0,-9,0,-987.0203805286556,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,3,40,35,15,1,3,-9,0,7.66416448876197,7.66416448876197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.99,43.64,5,4,0,0,9,4,1,1159,0,0,0 +16064,19662,35851,-9,-9,-9,1,1,1,50,3,0,0,0,2,-9,2,1,0,3,8.80522761042797,8.962137180866414,0,3,0,0,0,-9,0,-1027.328653942453,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,32,36,15,1,0,-9,0,21.53243241060777,21.53243241060777,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,6,1,0,0,1,5,1,1154,0,0,0 +16065,19663,35852,35853,-9,-9,2,1,1,57,1,0,0,0,2,-9,2,1,0,5,8.949390869051442,9.249008512956467,0,1,0,-9,35,0,1,45.58333994169489,0,0,0,56,1,2,1,2,2,2019,1,1,7,0,41,40,15,1,0,1,0,21.70694475415423,21.70694475415423,0,0,0,0,0,0,0,0,0,0,4.656214322952692,0,0,0,57.06,57.76,6,1,0,0,4,5,1,866.5,0,0,0 +16065,19663,35853,35852,-9,-9,1,1,0,56,1,0,0,0,1,-9,2,1,0,2,8.60446562815744,8.584838467704003,0,1,0,-9,35,0,-1,31.97062188031814,0,0,0,57,2,5,1,2,2,2019,1,2,9,0,37,38,15,1,0,1,0,23.32371592305203,23.32371592305203,0,0,0,0,0,0,0,0,0,0,3.050870771382156,0,0,0,54.18,36.28,6,1,0,0,4,5,1,866.5,0,0,0 +16066,19664,35854,35855,-9,-9,1,1,0,60,1,0,0,0,1,-9,6,3,0,4,0,4.798253623050692,4.813399621743667,1,0,-9,9,0,4,-39.55190838981888,0,0,0,56,1,5,1,2,1,2019,3,2,19,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.665829625983396,4.777839283368536,0,0,30.28,26.41,5,1,0,0,10,5,1,831.5,0,0,0 +16066,19664,35855,35854,-9,-9,2,1,1,56,1,0,0,0,1,-9,2,1,0,5,9.636586021835001,9.517602551654381,0,1,0,-9,9,0,-4,32.04223885058734,0,0,0,60,1,4,3,1,2,2019,2,1,4,0,60,52,15,1,0,3,0,27.99504059239862,27.99504059239862,0,0,0,0,0,0,0,1,1,0,0,0,73.75031551948101,1,50.35,59.36,7,1,0,0,10,5,1,831.5,0,0,0 +16067,19665,35856,-9,35859,35858,4,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1021.119714501468,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,5,2,0,0,5,2,0,912.5,0,0,0 +16067,19665,35857,-9,35859,35858,3,1,0,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1050.720912570108,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,5,2,0,0,5,2,0,912.5,0,0,0 +16067,19665,35858,35859,-9,-9,1,1,1,38,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,7,0,5,79.96475641147384,0,0,0,33,2,4,1,2,-9,2019,3,2,9,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,6,4,1,0,5,2,0,912.5,0,0,0 +16067,19665,35859,35858,-9,-9,2,1,0,33,1,0,2,0,2,-9,2,1,0,4,6.856302615594425,6.760014399070529,0,2,0,-9,7,0,-5,-32.57222596981303,0,0,1,38,2,4,3,-9,-9,2019,2,1,7,0,22,22,15,1,0,3,0,4.888986662631595,4.888986662631595,0,0,0,0,0,0,0,1,0,1,0,0,9.508008418055134,3,54.2,57.49,7,1,0,0,5,2,0,912.5,0,0,0 +16068,19666,35860,35861,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,4,5.809980777594961,5.852596275340282,0,1,0,-9,28,0,10,61.52350732250016,0,0,0,50,1,3,1,2,1,2019,1,2,10,0,40,35,15,1,0,1,0,1.042474772172525,1.042474772172525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,6,1,0,0,7,4,1,368,0,0,0 +16068,19666,35861,35860,-9,-9,2,1,0,50,1,0,0,0,1,-9,2,1,0,3,8.589471441200009,8.51919961100484,0,1,0,-9,28,0,-10,-121.3035289382038,0,0,0,60,1,4,1,2,2,2019,1,1,12,0,38,37,15,1,0,1,0,11.1826531018655,11.1826531018655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,6,1,0,0,7,4,1,368,0,0,0 +16068,19667,35862,-9,35861,35860,4,1,0,24,2,0,0,0,1,-9,2,1,0,3,7.714949132631896,7.37889581905358,0,3,0,-9,0,-9,0,-1040.091578961033,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,7,0,40,0,15,1,0,-9,1,5.793158187944035,5.793158187944035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.06,59.85,4,1,0,0,7,3,1,775,0,0,0 +16068,19668,35863,-9,35861,35860,3,1,1,19,2,0,0,0,2,0,7,2,0,2,0,0,0,3,0,0,0,-9,0,-920.3453197216552,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.84,55.7,2,1,0,0,7,1,1,462,0,0,0 +16069,19669,35864,35865,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,3,8.267548955317634,8.196583982701673,0,2,0,-9,9,0,1,-82.43901913653906,0,0,0,46,2,4,1,-9,-9,2019,1,1,9,0,42,20,15,1,0,1,0,10.3576088391677,10.3576088391677,0,0,0,0,0,0,0,1,1,0,.9459654989468224,0,0,0,52.79,51.64,6,1,0,0,13,4,1,348,0,0,0 +16069,19669,35865,35864,-9,-9,1,1,1,46,1,0,2,0,2,-9,2,1,0,4,8.535215258986087,8.315603734213672,0,2,0,-9,19,0,-1,89.62220205882821,0,0,0,47,2,3,1,2,3,2019,1,2,9,0,37,37,15,1,0,1,0,16.6422421818094,16.6422421818094,0,0,0,0,0,0,0,1,1,0,2.296309577711277,0,0,0,54.2,57.49,6,1,0,0,13,4,1,348,0,0,0 +16069,19669,35866,-9,35864,35865,3,1,0,13,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1018.090468139032,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,13,4,1,348,0,0,0 +16069,19669,35867,-9,35864,35865,4,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1147.942058129366,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,4,1,348,0,0,0 +16070,19670,35868,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,0,5.899892223985199,5.328658438919188,3,0,0,0,-9,0,-873.7906416470432,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.200564299375446,5.620935352849332,0,0,39.57,16.2,3,1,0,0,2,2,1,367,0,0,0 +16070,19671,35869,-9,-9,35868,2,1,1,53,2,0,0,0,2,-9,2,1,0,4,7.609089751714513,7.771574120836271,0,3,0,0,0,-9,0,-1109.591838058368,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,10,1,47,39,15,1,1,-9,1,6.021319937773017,6.021319937773017,0,0,0,0,0,0,0,1,1,0,0,0,7.979375487659135,3,55.36,54.24,6,1,0,0,2,3,1,3051,0,0,0 +16071,19672,35870,-9,35871,35872,3,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1145.879772895799,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,0,1435,0,0,0 +16071,19672,35871,35872,-9,-9,2,1,0,36,1,0,2,0,3,-9,2,1,0,2,7.115230158222737,7.333596080325089,0,2,0,-9,1,-9,0,47.96624918045127,-9,0,1,45,3,2,3,-9,-9,2019,2,1,13,1,20,0,15,1,1,3,0,7.046427690437537,7.046427690437537,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,41,4,1,0,0,6,2,0,1435,0,0,0 +16071,19672,35872,35871,-9,-9,1,1,1,45,1,0,2,0,3,-9,3,3,0,2,0,0,0,2,0,-9,1,-9,9,169.7429706122765,-9,0,0,36,3,2,1,2,2,2019,3,2,21,9,0,0,15,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.89658655453411,1,36.79,45.74,3,1,1,0,6,2,0,1435,0,0,0 +16071,19673,35873,-9,35871,35872,4,1,0,18,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-954.1827287980709,-9,1,1,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.246559123254741,0,0,0,47.15,55.39,6,1,1,0,6,2,0,1284,0,0,0 +16072,19674,35874,-9,35876,-9,4,1,0,13,2,0,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-960.0069729659007,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,4,1,0,0,5,2,0,520,0,0,0 +16072,19674,35875,-9,35876,-9,5,1,1,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-961.9191346151478,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,5,1,0,0,5,2,0,520,0,0,0 +16072,19674,35876,-9,-9,-9,1,1,0,40,2,0,2,0,3,-9,2,1,0,3,7.61839555495065,7.544708786100701,5.918013791621973,4,0,0,0,-9,0,-1043.263737201173,0,0,1,-9,-9,-9,-9,2,3,2019,-9,0,11,0,28,35,15,1,0,-9,0,6.765789316957818,6.765789316957818,0,0,0,0,0,0,0,1,1,0,6.222134290896192,0,1.342852695333205,3,34.92,44.55,5,1,0,0,5,2,0,520,0,0,0 +16072,19674,35877,-9,35876,-9,3,1,0,17,2,0,2,1,2,0,7,2,0,3,6.500846148097457,6.687961611415552,0,4,0,0,0,-9,0,-919.0643197910204,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,15,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.1,53.57,2,1,0,0,5,2,0,520,0,0,0 +16073,19675,35878,35879,-9,-9,2,1,1,31,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,3,0,-2,-131.68747785469,0,0,0,33,2,4,1,-9,-9,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.77,27.66,5,1,0,0,11,3,0,1234,0,0,0 +16073,19675,35879,35878,-9,-9,1,1,0,33,1,0,0,0,2,-9,2,1,0,4,7.969808133652152,8.170971611266484,0,1,0,-9,3,0,2,-4.690080460808026,0,0,1,31,2,2,3,3,3,2019,2,2,12,0,40,40,15,1,0,3,0,9.55949348599888,9.55949348599888,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,5,1,0,0,11,3,0,1234,0,0,0 +16074,19676,35880,-9,-9,-9,1,1,1,84,3,0,0,0,2,-9,4,3,0,3,0,7.445902349088867,7.251945890197793,3,0,-9,0,-9,0,-954.5793809418532,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.15394404562849,0,0,51.84,50.44,5,1,0,0,13,2,1,851,0,0,0 +16075,19677,35881,35883,-9,-9,2,1,1,39,1,0,2,0,1,-9,2,1,0,3,8.530553375945441,9.086694245007605,0,2,0,-9,9,0,6,-2.80298030189124,0,0,0,33,1,4,1,1,1,2019,1,1,19,8,43,50,15,1,8,1,0,18.37607200987705,18.37607200987705,0,0,0,0,0,0,0,1,1,0,1.151553860632284,0,0,0,32.74,54.09,5,1,0,0,7,4,1,372.5,0,0,0 +16075,19677,35882,-9,35883,35881,3,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1024.914095544223,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,1,372.5,0,0,0 +16075,19677,35883,35881,-9,-9,1,1,0,33,1,0,2,0,1,-9,2,1,0,4,8.065467583059659,7.565237609659172,0,2,0,-9,9,0,-6,-160.694613568279,0,0,1,39,1,3,1,2,2,2019,1,2,9,0,27,21,15,1,0,1,0,11.69388133326015,11.69388133326015,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,7,4,1,372.5,0,0,0 +16075,19677,35884,-9,35883,35881,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.263692868273,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,4,1,372.5,0,0,0 +16076,19678,35885,35886,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,8.104995139831232,8.459568117724,0,1,0,-9,6,0,4,29.13836860298225,0,0,0,47,2,4,1,3,3,2019,1,2,12,0,54,59,15,1,0,1,0,8.336907018476632,8.336907018476632,0,0,0,0,0,0,0,0,0,0,7.266177464289192,0,0,0,38.51,48.9,3,1,0,0,9,5,1,665,0,0,0 +16076,19678,35886,35885,-9,-9,2,1,0,47,1,0,0,0,2,-9,2,1,0,4,8.3701645947956,8.256737274852531,0,1,0,-9,6,0,-4,-93.75810821948311,0,0,0,51,2,2,1,-9,-9,2019,1,1,7,0,37,35,15,1,0,1,0,13.47013855398556,13.47013855398556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,6,1,0,0,9,5,1,665,0,0,0 +16077,19679,35887,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-1140.250369894272,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,36,12,0,0,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.07038566996423,3,31.58,33.12,1,1,0,1,4,1,0,341,0,0,0 +16077,19680,35888,-9,35887,-9,2,1,0,23,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-973.571663533535,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,1,0,4,1,0,216,0,0,0 +16077,19681,35889,-9,35887,-9,3,1,0,19,2,0,0,0,3,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1052.821613975219,0,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,1,4,1,0,572,0,0,0 +16078,19682,35890,35891,-9,-9,2,1,1,46,1,0,0,0,3,-9,2,1,0,2,7.661358169208611,7.715821528713201,0,1,0,-9,9,0,-13,9.000251916064455,0,0,0,59,3,1,1,3,3,2019,1,1,8,0,35,35,15,1,0,1,0,7.051245267373882,7.051245267373882,0,0,0,0,0,0,0,1,1,0,0,0,20.51938715732202,1,43.31,35.92,6,4,0,1,6,3,0,674.5,0,0,0 +16078,19682,35891,35890,-9,-9,1,1,0,59,1,0,0,0,3,-9,2,1,0,1,6.804095090692412,7.037805295989546,0,1,0,-9,10,0,13,102.3920708628378,0,0,0,46,3,2,1,3,3,2019,1,2,17,6,20,25,15,1,6,1,0,5.372578447390415,5.372578447390415,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,4,1,0,1,6,3,0,674.5,0,0,0 +16079,19683,35892,-9,35894,35893,1,1,0,70,2,0,0,0,3,-9,4,3,0,3,0,8.208447350530292,8.219036837160099,3,0,0,0,-9,0,-1041.08944667061,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,1,0,0,1,.8009957390916034,0,0,0,0,53.81448673552305,1,1,0,1.414554197764741,8.049793928156847,76.67793633047432,3,32.83,45.72,4,1,0,0,8,4,1,656,0,0,0 +16079,19684,35893,35894,-9,-9,3,1,1,90,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,-1,0,0,0,0,91,3,3,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.035700123814391,0,0,0,55,45,6,1,0,0,8,1,1,406,0,0,0 +16079,19684,35894,35893,-9,-9,2,1,0,91,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,1,0,0,0,0,90,3,3,3,-9,-9,2019,4,3,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,6,1,0,0,8,1,1,406,0,0,0 +16080,19685,35895,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,3,7.973371874920529,7.806000628083016,0,3,0,0,0,-9,0,-1047.18435494123,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,31,12,33,39,15,1,12,-9,0,8.980347912845586,8.980347912845586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.98,65.47,3,1,0,0,9,3,1,687,0,0,0 +16081,19686,35896,35897,-9,-9,2,1,0,35,1,0,0,0,1,-9,2,1,0,4,7.8023012921032,7.708512902061381,0,1,0,-9,3,0,-4,5.420483950970104,0,0,1,39,1,4,1,-9,-9,2019,1,1,8,0,18,35,15,1,0,1,0,13.67387232759953,13.67387232759953,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,6,3,0,0,2,5,1,773,0,0,0 +16081,19686,35897,35896,-9,-9,1,1,1,39,1,0,0,0,1,-9,2,1,0,4,8.429528212455999,8.543233993448133,0,1,0,-9,3,0,4,47.72474349555484,0,0,0,35,1,4,1,2,2,2019,1,2,8,1,37,38,15,1,1,1,0,16.00092630804503,16.00092630804503,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,2,3,0,0,2,5,1,773,0,0,0 +16082,19687,35898,-9,35899,-9,2,1,1,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-980.8685188124425,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,1,0,0,7,2,0,599.5,0,0,0 +16082,19687,35899,-9,-9,-9,1,1,0,30,2,0,1,0,2,-9,2,1,0,5,7.150539031744138,7.450605865435034,0,4,0,0,0,-9,0,-956.9790573410482,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,4,0,25,21,15,1,0,-9,0,5.70899093972639,5.70899093972639,0,0,0,0,0,0,0,1,0,1,0,0,77.6085521712407,3,54.1,59.11,6,1,0,0,7,2,0,599.5,0,0,0 +16083,19688,35900,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-1063.067327339378,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,11,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.21,47.1,2,1,0,0,8,1,0,693,0,0,0 +16084,19689,35901,-9,35903,35902,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1073.666303593289,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,3,0,0,8,2,0,1686.25,0,0,0 +16084,19689,35902,35903,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,2,7.584646161965347,7.425347601115173,0,2,0,-9,11,0,3,-77.26847923885147,0,0,0,31,3,4,3,3,2,2019,2,1,28,12,30,24,15,1,12,3,0,7.346392234366253,7.346392234366253,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,47.06,4,3,0,0,8,2,0,1686.25,0,0,0 +16084,19689,35903,35902,-9,-9,1,1,0,31,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,11,0,-3,22.94372011096958,0,0,1,34,2,2,1,2,2,2019,3,2,12,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.79,47.07,6,3,0,0,8,2,0,1686.25,0,0,0 +16084,19689,35904,-9,35903,35902,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.019620099416,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,2,0,1686.25,0,0,0 +16085,19690,35905,35906,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,4,7.808578480475683,7.899201319490394,0,1,0,-9,3,0,2,-11.8853915846701,0,1,0,26,1,2,1,-9,-9,2019,1,1,10,1,31,31,15,1,1,1,0,9.122091941605719,9.122091941605719,0,0,0,0,0,0,0,0,0,0,0,0,11.44165639185635,2,38.04,56.72,2,1,0,0,11,3,0,390,0,0,0 +16085,19690,35906,35905,-9,-9,1,1,0,26,1,0,0,0,1,-9,1,1,0,2,2.125673410848045,1.939973677743357,0,1,0,-9,3,0,-2,19.07165854146869,0,1,1,28,2,4,1,-9,-9,2019,1,2,16,4,36,12,15,1,4,1,0,.020506121715806,.020506121715806,0,0,0,0,0,0,0,0,0,0,0,0,3.650655436038158,3,37.02,37.37,6,1,0,0,11,3,0,390,0,0,0 +16086,19691,35907,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,8,3,1,3,0,6.740221395814031,6.468416547248282,3,0,0,0,-9,0,-1079.179308700376,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.432056838616186,0,0,51,46,5,1,0,0,2,2,0,146,0,0,0 +16087,19692,35908,-9,-9,-9,1,1,0,56,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,-9,0,1,0,-1053.320044269061,0,0,0,-9,-9,-9,-9,-9,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,3,1,0,0,10,1,0,2032,0,0,0 +16088,19693,35909,35910,-9,-9,1,1,1,24,1,0,0,0,1,-9,7,2,0,4,0,0,0,1,0,-9,2,0,-2,100.3377980333157,1,1,0,26,1,3,1,1,1,2019,3,2,10,0,0,38,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.734318925293413,0,0,0,49,58,5,1,0,0,11,3,1,356.5,0,0,0 +16088,19693,35910,35909,-9,-9,2,1,0,26,1,0,0,0,1,-9,2,1,0,3,7.839662258862066,7.724120819993463,0,1,0,-9,2,0,2,33.59909280469179,0,1,1,24,1,4,2,-9,-9,2019,2,1,21,7,35,14,15,1,7,2,0,7.304730413669128,7.304730413669128,0,0,0,0,0,0,0,1,1,0,.6779444088793232,0,0,0,38.86,46.95,5,3,0,0,11,3,1,356.5,0,0,0 +16089,19694,35911,-9,-9,-9,1,1,0,53,2,0,0,0,1,-9,97,3,0,4,7.948444644617584,7.914883923273272,0,3,0,0,0,-9,0,-991.771572383736,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,45,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78.29834178570002,3,50.54,55.04,5,1,0,0,13,3,1,617,0,0,0 +16090,19695,35912,35914,-9,-9,1,1,1,38,1,0,2,0,1,-9,2,1,0,4,8.818136178755317,8.520506733046805,0,2,0,-9,20,0,-2,78.80112148639344,0,0,0,40,1,4,1,2,1,2019,1,2,14,2,40,0,15,1,2,1,0,14.49448024857968,14.49448024857968,0,0,0,0,0,0,0,0,0,0,.4578924175293173,0,0,0,46.39,60.99,5,1,0,0,8,5,1,682.5,0,0,0 +16090,19695,35913,-9,35914,35912,3,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1082.966627898127,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,8,5,1,682.5,0,0,0 +16090,19695,35914,35912,-9,-9,2,1,0,40,1,0,2,0,1,-9,2,1,0,4,8.958009804681346,8.246693300802733,0,2,0,-9,20,0,2,-4.917044774883834,0,0,1,38,1,4,1,1,1,2019,1,1,9,0,44,0,15,1,0,1,0,17.00021035841375,17.00021035841375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.61,55.04,6,1,0,0,8,5,1,682.5,0,0,0 +16090,19695,35915,-9,35914,35912,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.2331872794398,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,1,0,0,8,5,1,682.5,0,0,0 +16091,19696,35916,35917,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,3,0,6.663558209255366,7.118366416839963,1,0,-9,39,0,0,51.04292498074204,0,0,0,68,1,5,3,3,3,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.306587275192662,6.920624191144641,13.95426417448884,3,35.79,47.07,4,2,0,0,7,3,1,294.5,0,0,0 +16091,19696,35917,35916,-9,-9,1,1,1,68,1,0,0,0,1,-9,4,3,0,5,0,7.681096539507312,7.817217975713308,1,0,-9,39,0,0,94.56503148527942,0,0,0,68,2,3,3,2,1,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.25631042177927,7.62424584370369,0,0,57.06,57.76,6,1,0,0,7,3,1,294.5,0,0,0 +16092,19697,35918,-9,-9,-9,1,1,1,81,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-856.4612687891029,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,2.327617249386433,0,1,1,0,0,0,0,0,42.46,25.71,5,1,0,0,10,1,1,1429,0,0,0 +16092,19698,35919,-9,-9,-9,2,1,0,25,2,0,0,0,1,-9,2,1,0,3,7.946600844342059,7.656237048626373,0,3,0,0,0,-9,0,-1016.02813568544,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,39,36,15,1,2,-9,0,7.278093426281727,7.278093426281727,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.41,56.15,6,1,0,0,10,3,1,422,0,0,0 +16093,19699,35920,-9,-9,-9,1,1,0,56,2,0,0,0,1,-9,2,1,0,3,8.876132772935238,8.937668527920504,0,3,0,0,0,-9,0,-826.7185669277267,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,45,45,15,1,0,-9,0,16.80803369353399,16.80803369353399,0,0,0,0,0,0,0,0,0,0,5.480960049299357,0,1.696026419246059,3,52.94,41.91,6,1,0,0,6,5,0,463,0,0,0 +16094,19700,35921,-9,35922,35923,2,1,1,23,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-998.2577523066125,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,6,1,0,1077,0,0,0 +16094,19701,35922,35923,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,2,7.351517498531335,7.420057342524607,0,1,0,-9,3,0,-5,-63.15641659034234,0,0,0,56,2,3,2,2,2,2019,2,3,15,4,10,15,15,1,4,2,0,15.31020723450504,15.31020723450504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,33.06,4,2,0,0,6,3,0,1592,0,0,0 +16094,19701,35923,35922,-9,-9,3,1,1,56,1,0,0,0,2,0,7,2,0,3,0,6.896608822851127,6.943748705318406,1,0,-9,3,0,5,-41.45436722023184,-9,0,0,51,2,2,1,-9,-9,2019,3,1,10,0,0,0,15,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.078312517655541,0,0,58.41,47.38,5,1,0,0,6,3,0,1592,0,0,0 +16095,19702,35924,35925,-9,-9,1,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,5.72290465425095,6.063967224552245,1,0,-9,8,0,11,47.94364186666183,0,0,0,56,2,3,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.708754736489797,0,0,60.12,54.8,6,1,0,0,2,3,0,192.5,0,0,0 +16095,19702,35925,35924,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,3,7.979922829927541,8.116278745229813,0,1,0,-9,8,0,-11,-56.0129942595159,0,0,0,67,2,4,3,-9,-9,2019,4,1,11,0,38,40,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,5,1,0,0,2,3,0,192.5,0,0,0 +16096,19703,35926,35927,-9,-9,2,1,0,63,1,0,0,0,3,-9,3,3,0,2,0,0,0,1,0,-9,44,0,0,81.7295666147932,0,0,0,63,2,3,1,3,3,2019,3,1,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.99,31.1,5,3,1,0,6,4,1,502.5,0,0,0 +16096,19703,35927,35926,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,8.371106231056237,8.678883558367369,0,1,0,-9,44,0,0,-1.805248330998616,0,0,0,63,3,2,3,3,2,2019,2,2,4,0,36,37,15,1,0,3,0,14.67136719540075,14.67136719540075,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.87,35.77,6,3,0,0,6,4,1,502.5,0,0,0 +16097,19704,35928,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,1,0,4.805161675393288,4.984906822823639,3,0,0,0,-9,0,-998.5964372444168,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.234544823968849,5.213151016022165,0,0,62.98,28.45,6,1,0,0,8,2,1,965,0,0,0 +16098,19705,35929,-9,-9,-9,1,1,1,71,2,0,0,0,2,-9,2,1,0,4,6.866548090694378,7.646729642909907,5.512447994635339,3,0,0,0,-9,0,-948.4423340524266,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,40,40,15,1,0,-9,0,3.899528499244845,3.899528499244845,0,0,0,0,0,0,0,1,1,0,0,5.922861182252438,15.34245623579488,3,60.12,54.8,7,1,0,0,9,3,1,1011,0,0,0 +16099,19706,35930,35931,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,4,7.723330888830358,7.856945858118459,5.570326609412669,1,0,-9,10,0,-1,81.57570600517748,0,0,0,69,2,2,3,-9,-9,2019,2,1,9,0,40,45,15,1,0,4,0,7.663364605349601,7.663364605349601,0,0,0,0,0,0,0,1,0,1,5.88087239458781,5.588904894333983,22.0060616302294,2,52.82,53.97,6,1,0,0,7,3,0,225,0,0,0 +16099,19706,35931,35930,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,4.808839316691061,4.687767639826206,1,0,-9,50,0,1,-81.16990444536319,0,0,0,68,3,4,1,3,2,2019,3,2,14,2,0,0,15,4,2,1,0,0,0,1,0,3.018003391921977,0,0,0,0,1,0,1,4.545610867675085,4.995527529030537,0,0,38.18,27.12,5,1,0,0,7,3,0,225,0,0,0 +16099,19707,35932,-9,-9,-9,3,1,1,20,2,0,0,0,2,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-994.3740916187687,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.95,39.12,3,1,1,0,7,1,0,308,0,0,0 +16100,19708,35933,-9,35936,35934,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-895.44968572839,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,3,1,870.25,0,0,0 +16100,19708,35934,35936,-9,-9,2,1,1,47,1,0,2,0,2,-9,1,1,0,4,8.004822757798532,8.08783980822068,0,2,0,-9,17,0,5,3.304798613630233,0,0,0,42,1,5,1,3,3,2019,1,1,9,0,40,40,15,1,1,1,0,7.128878237845793,7.128878237845793,0,0,0,0,0,0,0,1,1,0,5.504186940383359,0,0,0,52,55,6,1,0,0,13,3,1,870.25,0,0,0 +16100,19708,35935,-9,35936,35934,3,1,0,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1035.481407951298,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,13,3,1,870.25,0,0,0 +16100,19708,35936,35934,-9,-9,1,1,0,42,1,0,2,0,1,-9,2,1,0,5,7.193526965125008,7.201832148493887,0,2,0,-9,17,0,-5,10.5183609253922,0,0,1,47,2,4,1,2,3,2019,1,2,9,0,23,22,15,1,0,1,0,5.508544465521067,5.508544465521067,0,0,0,0,0,0,0,1,1,0,3.868532217506337,0,0,3,60.02,56.42,6,1,0,0,13,3,1,870.25,0,0,0 +16101,19709,35937,35938,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,2,8.114748816367454,8.082345534420318,0,1,0,-9,7,0,6,29.21492542952522,0,0,0,30,1,3,1,-9,-9,2019,1,1,8,0,42,48,15,1,0,1,0,10.10484887639016,10.10484887639016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,45.88,5,1,0,0,11,4,1,421.5,0,0,0 +16101,19709,35938,35937,-9,-9,1,1,0,30,1,0,0,0,1,-9,2,1,0,3,7.860494446538099,8.157174418087266,0,1,0,-9,7,0,-6,39.98533417928208,0,0,1,36,2,2,1,2,2,2019,1,2,22,8,39,34,15,1,8,1,0,12.182565871963,12.182565871963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.63,55.43,5,1,0,0,11,4,1,421.5,0,0,0 +16102,19710,35939,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,4,8.140394740738264,8.095079921143855,0,3,0,0,0,-9,0,-964.688396755947,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,41,15,1,0,-9,0,8.221827033167376,8.221827033167376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,4,0,0,6,4,1,275,0,0,0 +16103,19711,35940,35941,-9,-9,2,1,0,52,1,0,0,0,2,-9,8,3,1,2,0,0,0,1,0,-9,10,0,1,0,0,0,0,51,3,2,3,2,2,2019,4,1,23,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.81,29.85,3,1,0,0,13,1,0,884.5,0,0,0 +16103,19711,35941,35940,-9,-9,1,1,1,51,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,10,0,-1,0,0,0,0,52,2,2,3,3,2,2019,4,2,26,11,0,0,15,3,11,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,76.258266390969,1,27.72,32.03,2,1,0,1,13,1,0,884.5,0,0,0 +16104,19712,35942,35943,-9,-9,2,1,1,31,1,1,1,0,1,-9,2,1,0,4,8.884034668637819,8.43502065217292,0,2,0,-9,6,0,1,80.50297067677162,0,0,0,30,1,5,1,-9,-9,2019,1,1,8,0,42,40,15,1,0,1,0,13.03631992902553,13.03631992902553,0,0,0,0,0,0,0,0,0,0,2.973369649582448,0,0,0,57.16,56.15,6,1,0,0,10,5,1,380.3333333333333,0,0,0 +16104,19712,35943,35942,-9,-9,1,1,0,30,1,1,1,0,1,-9,2,1,0,5,8.671511874561059,8.719955185684643,0,2,0,-9,6,0,-1,.3096792334000825,0,0,1,31,1,4,1,1,1,2019,1,2,9,0,29,50,15,1,0,1,0,28.51664862646977,28.51664862646977,0,0,0,0,0,0,0,0,0,0,4.263047750321166,0,0,0,50,59,6,1,0,0,10,5,1,380.3333333333333,0,0,0 +16104,19712,35944,-9,35943,35942,3,1,0,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1032.435562595644,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,10,5,1,380.3333333333333,0,0,0 +16105,19713,35945,35946,-9,-9,1,1,0,75,1,0,0,0,2,-9,4,3,0,4,6.185386261765395,6.256810224635031,4.750964003264904,1,0,-9,55,0,0,106.7367821661203,0,0,0,75,2,3,3,3,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.923282488022923,4.539638673114501,0,0,52.46,52.76,7,1,0,0,12,4,1,170,0,0,0 +16105,19713,35946,35945,-9,-9,2,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,8.265757249878844,8.250457908081724,1,0,-9,55,0,0,-83.90584825776097,0,0,0,75,2,4,3,-9,-9,2019,4,1,7,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.889884303744959,8.238133913583182,0,0,53.53,51,6,1,0,0,12,4,1,170,0,0,0 +16106,19714,35947,-9,-9,-9,1,1,1,25,2,0,0,0,1,-9,2,1,0,4,7.525465973063471,7.350096007909777,0,3,0,0,0,-9,0,-1039.049081338129,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,3,0,18,0,15,1,0,-9,0,9.813332381140825,9.813332381140825,0,0,0,0,0,0,0,0,0,0,.7461977058359919,0,0,0,53.33,53.71,6,3,0,0,10,3,0,433,0,0,0 +16107,19715,35948,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,3,7.329384892789657,7.817538210310595,4.990706225570123,3,0,0,0,-9,0,-1020.949716901977,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,15,23,15,1,0,-9,0,11.64251279007765,11.64251279007765,0,0,0,0,0,0,0,1,1,0,4.803237092043888,5.255721851366194,0,0,56.94,49.53,6,1,0,0,13,3,1,1674,0,0,0 +16108,19716,35949,35950,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,2,0,4.861550313232208,4.416085929250636,1,0,-9,7,0,-14,-67.55110224106218,0,0,0,80,3,2,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.43145838147689,5.170521893695677,0,0,60.14,38.88,7,1,0,0,4,2,1,495.5,0,0,0 +16108,19716,35950,35949,-9,-9,2,1,1,80,1,0,0,0,3,-9,4,3,0,2,0,5.637474715937438,5.477702446622454,1,0,-9,7,0,14,153.5987404898823,0,0,0,66,1,2,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.472512412927713,0,0,56.52,35.08,6,1,0,0,4,2,1,495.5,0,0,0 +16109,19717,35951,35952,-9,-9,1,1,1,56,1,0,0,0,1,-9,2,1,0,4,7.695495994902738,7.575640819580675,0,1,0,-9,10,0,1,32.15756671322919,0,0,0,55,1,4,1,2,2,2019,1,2,7,0,22,37,15,1,0,1,0,10.75677004128356,10.75677004128356,0,0,0,0,0,0,0,0,0,0,4.433186072539467,0,0,0,57.16,56.15,6,1,0,0,12,4,1,703,0,0,0 +16109,19717,35952,35951,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,8.194374170979231,8.042124870541468,0,1,0,-9,10,0,-1,52.64523361055966,0,0,0,56,1,4,1,2,2,2019,1,1,6,0,18,21,15,1,0,1,0,24.02204844044944,24.02204844044944,0,0,0,0,0,0,0,0,0,0,2.891617723459194,0,6.121456525898584,3,63.24,42.39,6,1,0,0,12,4,1,703,0,0,0 +16110,19718,35953,35954,-9,-9,2,1,0,67,1,0,0,0,3,-9,4,3,0,3,0,3.587165684368147,3.903752768161238,1,0,-9,45,0,-1,-22.40987058679478,0,0,0,68,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.442607490787077,3.722726533351087,0,0,61.43,43.34,6,1,0,0,4,2,1,504,0,0,0 +16110,19718,35954,35953,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,3,0,6.103660227724887,6.055800339999777,1,0,-9,46,0,1,62.9011942353575,0,0,0,67,3,3,3,2,2,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.960138233523258,5.794445192209008,0,0,57.33,53.46,6,1,0,0,4,2,1,504,0,0,0 +16111,19719,35955,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.302582669764517,8.377938979045256,0,3,0,0,0,-9,0,-924.2770575151503,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,37,37,15,1,0,-9,0,12.31754751839389,12.31754751839389,0,0,0,0,0,0,0,0,0,0,2.277038327259744,0,0,0,57.33,53.46,6,1,0,0,4,4,1,369,0,0,0 +16112,19720,35956,35958,-9,-9,2,1,1,35,1,1,1,0,2,-9,1,1,0,3,8.440679056126289,7.61148076230342,0,2,0,-9,12,0,1,97.06612330766733,0,0,0,34,1,4,1,2,3,2019,1,1,11,0,42,45,15,1,0,1,0,7.734483689494931,7.734483689494931,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,58.34,6,1,0,0,7,4,1,835.3333333333334,0,0,0 +16112,19720,35957,-9,35958,35956,3,1,1,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1059.255284626053,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,4,1,835.3333333333334,0,0,0 +16112,19720,35958,35956,-9,-9,1,1,0,34,1,1,1,0,1,-9,2,1,0,4,8.346246769133412,8.488126201091573,0,2,0,-9,12,0,-1,-23.74518496141878,0,0,1,35,2,3,1,2,1,2019,1,2,10,0,36,57,15,1,0,1,0,17.32747046669248,17.32747046669248,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,6,1,0,0,7,4,1,835.3333333333334,0,0,0 +16113,19721,35959,-9,-9,-9,1,1,0,92,3,0,0,0,2,-9,4,3,0,2,0,7.058870533751585,7.217505622453304,3,0,0,0,-9,0,-1119.637907121615,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,0,0,5.082575360185642,0,0,0,1,1,0,0,7.447032879883949,0,0,51.58,21.3,6,1,0,0,4,3,0,570,0,0,0 +16114,19722,35960,-9,-9,-9,1,1,0,36,2,0,0,0,1,-9,2,1,0,4,8.403068746088284,8.469060335317268,0,3,0,-9,0,-9,0,-948.3651730507212,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,38,0,15,1,0,-9,0,16.12779122754079,16.12779122754079,0,0,0,0,0,0,0,0,0,0,7.315804818587997,0,0,0,62.67,44.01,6,1,0,0,9,5,0,1103,0,0,0 +16115,19723,35961,35962,-9,-9,2,1,0,60,1,0,0,0,3,-9,3,3,0,4,0,0,0,1,0,-9,5,0,-3,38.41050657144727,0,0,0,63,2,3,1,3,2,2019,3,1,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.73,53.06,6,3,1,0,8,5,1,1232,0,0,0 +16115,19723,35962,35961,-9,-9,1,1,1,63,1,0,0,0,2,-9,2,1,0,3,9.142289069354167,9.21175808920635,0,1,0,-9,5,0,3,75.52747885293728,0,0,0,60,3,4,3,3,3,2019,2,2,8,0,43,42,15,1,0,3,0,28.71424019279077,28.71424019279077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,5,3,0,0,8,5,1,1232,0,0,0 +16116,19724,35963,-9,35966,35965,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-891.8103506800473,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,6,4,1,863,0,0,0 +16116,19724,35964,-9,35966,35965,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1160.059020223445,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,4,1,863,0,0,0 +16116,19724,35965,35966,-9,-9,1,1,1,39,1,1,2,0,2,-9,2,1,0,4,8.439336673466768,8.848151530552535,0,2,0,-9,7,0,0,30.57788056164749,0,0,0,39,1,4,3,2,2,2019,2,2,6,0,37,39,15,1,0,3,0,23.41450489784266,23.41450489784266,0,0,0,0,0,0,0,1,1,0,6.994286401101936,0,0,0,54.79,55.86,6,1,0,0,6,4,1,863,0,0,0 +16116,19724,35966,35965,-9,-9,2,1,0,39,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,7,0,0,-44.98605559914992,0,0,1,39,2,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.545571756916596,0,0,0,46.5,58.26,6,1,0,0,6,4,1,863,0,0,0 +16117,19725,35967,35968,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,4,8.306752961480669,8.337788250882751,0,1,0,-9,2,0,2,101.442865254113,0,0,0,49,1,3,1,2,2,2019,1,3,5,0,37,38,15,1,0,1,0,14.82389336978991,14.82389336978991,0,0,0,0,0,0,0,0,0,0,6.343116397174409,0,15.94971590672573,3,59.47,44.13,2,1,0,0,13,5,1,487,0,0,0 +16117,19725,35968,35967,-9,-9,3,1,1,49,1,0,0,0,1,-9,2,1,0,3,8.985227868272775,9.06820589794952,0,1,0,-9,2,0,-2,-123.5573562460201,0,0,0,51,2,4,1,-9,-9,2019,1,1,9,0,45,40,15,1,0,1,0,20.52065202731399,20.52065202731399,0,0,0,0,0,0,0,0,0,0,7.019999846660203,0,0,0,52,54.51,6,1,0,0,13,5,1,487,0,0,0 +16117,19726,35969,-9,35967,35968,2,1,0,21,2,0,0,0,2,0,7,2,0,4,6.714240692567448,6.48423328349615,0,3,0,0,0,-9,0,-1100.127593242565,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,4,0,15,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,7,1,0,0,13,2,1,146,0,0,0 +16118,19727,35970,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,0,4.857683908021849,4.812650949890231,3,0,0,0,-9,0,-1133.773181241245,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,28,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.090097049513185,0,0,21.97,21.3,2,1,0,0,11,2,1,512,0,0,0 +16119,19728,35971,35972,-9,-9,2,1,1,72,1,0,0,0,2,-9,1,1,0,4,7.752543250422186,7.538368983068581,0,1,0,-9,6,0,1,30.94170802088532,0,0,0,71,2,3,1,-9,-9,2019,1,1,8,0,0,20,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.908156999715683,0,0,0,63.08,32.79,2,1,0,0,12,3,1,238.5,0,0,0 +16119,19728,35972,35971,-9,-9,1,1,0,71,1,0,0,0,2,-9,1,1,0,3,6.274213092636844,6.386592918291949,0,1,0,-9,52,0,-1,-89.00503664165053,0,0,0,72,2,4,1,3,-9,2019,1,2,6,0,0,12,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.440859446729013,0,6.418075351747706,1,61.58,39.14,6,1,0,0,12,3,1,238.5,0,0,0 +16120,19729,35973,35974,-9,-9,1,1,1,57,1,0,0,0,3,-9,4,3,0,3,0,6.901196653247291,6.920779659248121,1,0,-9,8,0,1,-10.78976574575699,0,0,0,56,2,3,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.874782280273163,6.846375337711788,0,0,57.33,53.46,6,1,0,0,5,3,1,567.5,0,0,0 +16120,19729,35974,35973,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,3,4.97424866471213,7.110147135310305,6.905380332106474,1,0,-9,8,0,-1,-16.90497309078989,0,0,0,57,3,3,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.994435965757875,6.526240712910503,0,0,62.18,36.18,6,1,0,0,5,3,1,567.5,0,0,0 +16121,19730,35975,35976,-9,-9,1,1,0,57,1,0,0,0,2,-9,2,1,0,5,7.265838239488309,7.148135827871112,0,1,0,-9,36,0,-2,-156.9399608610366,0,0,0,59,3,4,3,3,3,2019,2,2,6,0,25,26,15,1,0,4,0,6.895242360811001,6.895242360811001,0,0,0,0,0,0,0,0,0,0,3.676813089647185,0,3.543463820259632,3,60.02,56.42,7,1,0,0,4,2,1,743.5,0,0,0 +16121,19730,35976,35975,-9,-9,2,1,1,59,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,6,0,2,52.20183523246762,-9,0,0,57,2,5,1,-9,-9,2019,3,1,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,53,6,1,0,0,4,2,1,743.5,0,0,0 +16122,19731,35977,35978,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,7.970936215840751,7.661938269415588,1,0,-9,39,0,-20,-28.16523283506654,0,0,0,81,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.486601301211144,7.537285141900605,0,0,57.06,57.76,6,1,0,0,7,3,1,620,0,0,0 +16122,19731,35978,35977,-9,-9,2,1,1,81,1,0,0,0,3,-9,4,3,0,3,0,6.121204213639408,6.56780614467898,1,0,-9,37,0,20,6.873991125864963,0,0,0,61,2,5,3,-9,-9,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.757641403567085,6.020835903106829,0,0,56.94,49.53,7,1,0,0,7,3,1,620,0,0,0 +16123,19732,35979,-9,35980,-9,2,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1035.00960825037,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,838.6666666666666,0,0,0 +16123,19732,35980,-9,-9,-9,1,1,0,33,2,0,2,0,2,-9,2,1,0,4,7.100870063813754,7.252545445706668,0,4,0,0,0,-9,0,-1068.894578996627,0,0,1,-9,-9,-9,-9,-9,1,2019,-9,0,13,2,25,25,15,1,2,-9,0,8.420705359306655,8.420705359306655,0,0,0,0,0,0,0,1,1,0,3.278899983198013,0,0,0,45.91,59.89,6,1,0,1,9,2,0,838.6666666666666,0,0,0 +16123,19732,35981,-9,35980,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1070.239666778001,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,838.6666666666666,0,0,0 +16124,19733,35982,-9,-9,-9,1,1,0,48,3,0,0,0,2,-9,8,3,1,1,0,6.064661694801523,6.638709513251439,3,0,0,0,-9,0,-1002.74414067745,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,31,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.410747453935706,0,0,0,27.81,23.94,1,1,0,0,4,2,0,942,0,0,0 +16125,19734,35983,-9,35984,-9,3,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-960.3066040390252,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,10,4,1,465,0,0,0 +16125,19734,35984,-9,-9,-9,1,1,0,32,3,1,2,0,1,-9,2,1,0,3,9.12977565767714,9.244311842178359,0,4,0,-9,0,-9,0,-903.7132289404948,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,12,60,0,15,1,12,-9,0,13.18047493754804,13.18047493754804,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.85,62.14,5,1,0,1,10,4,1,465,0,0,0 +16125,19734,35985,-9,35984,-9,2,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-906.3113031126276,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,4,1,465,0,0,0 +16126,19735,35986,35988,-9,-9,1,1,1,47,1,0,1,0,2,-9,2,1,0,5,9.398427652185964,9.058560222732327,0,2,0,-9,8,0,2,90.33654708560621,0,0,0,45,2,4,1,3,2,2019,1,2,10,0,55,50,15,1,0,1,0,15.77935455176384,15.77935455176384,0,0,0,0,0,0,0,1,1,0,2.972202504357591,0,0,0,45.81,61.51,5,1,0,0,11,5,1,334.6666666666667,0,0,0 +16126,19735,35987,-9,35988,35986,3,1,0,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-987.9346518860907,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,5,5,0,0,11,5,1,334.6666666666667,0,0,0 +16126,19735,35988,35986,-9,-9,2,1,0,45,1,0,1,0,2,-9,2,1,0,4,8.843886492647894,8.96320804517565,0,2,0,-9,8,0,-2,-39.18048828606058,0,0,0,47,2,5,1,2,2,2019,1,1,11,0,43,37,15,1,0,1,0,17.516184058073,17.516184058073,0,0,0,0,0,0,0,1,1,0,0,0,6.890695858164734,3,54.2,57.49,2,1,0,0,11,5,1,334.6666666666667,0,0,0 +16127,19736,35989,-9,-9,-9,1,1,0,21,2,0,0,1,1,-9,7,2,0,2,0,0,0,3,0,-9,0,-9,0,-900.6209709180025,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.18,28.07,3,1,0,0,7,1,0,282,0,0,0 +16128,19737,35990,35991,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,43,0,2,10.47177818813586,0,0,0,66,1,3,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.797414278901392,0,0,0,62.92,29.01,4,1,0,0,10,3,1,300.5,0,0,0 +16128,19737,35991,35990,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.033429680894372,8.195787437698344,1,0,-9,9,0,-2,-58.63578432847557,0,0,0,68,3,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.532627742605597,8.552507706935611,0,0,57.51,47.91,6,1,0,0,10,3,1,300.5,0,0,0 +16129,19738,35992,-9,-9,-9,1,1,0,55,3,0,0,0,3,-9,2,1,0,3,7.377960688525741,7.460981741705735,0,3,0,0,0,-9,0,-962.4555709163963,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,12,24,24,15,1,12,-9,0,8.314684388624194,8.314684388624194,0,0,0,0,0,0,0,1,0,1,.9370343506273577,0,0,0,20.59,55.4,1,1,0,0,2,3,1,1347,0,0,0 +16129,19739,35993,-9,35992,-9,2,1,0,19,2,0,0,0,2,1,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1012.122587481752,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,8,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.12,47.3,7,1,1,0,2,1,1,525,0,0,0 +16130,19740,35994,35995,-9,-9,1,1,0,66,1,0,0,0,1,-9,4,3,0,3,0,6.393813795929613,6.365664876031341,1,0,-9,10,0,-6,-154.8808739313411,0,0,0,72,3,3,3,3,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.802590653668979,6.756324564899281,0,0,41.52,52.32,6,1,0,0,8,5,1,374.5,0,0,0 +16130,19740,35995,35994,-9,-9,2,1,1,72,1,0,0,0,3,-9,4,3,0,3,0,8.593204090459654,8.937768220575963,1,0,-9,23,0,6,-21.73004250436531,0,0,0,66,1,3,3,3,2,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.957868851858523,8.880853524035741,0,0,46.08,57.2,5,1,0,0,8,5,1,374.5,0,0,0 +16130,19741,35996,-9,35994,35995,3,1,1,29,2,0,0,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1029.018027625623,0,1,0,-9,-9,-9,-9,1,1,2019,-9,0,19,8,0,0,15,3,8,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,7.743343193060882,0,0,0,44.49,49.64,3,1,1,0,8,1,1,1406,0,0,0 +16131,19742,35997,35998,-9,-9,2,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,8.208931766681483,8.134353047657223,1,0,-9,52,0,0,-13.96714316939944,0,0,0,77,2,3,3,2,2,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.122354581799637,8.098328911057312,0,0,51.66,54.88,6,1,0,0,8,4,1,272,0,0,0 +16131,19742,35998,35997,-9,-9,1,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,7.330417861956325,7.374013305994527,1,0,-9,52,0,0,47.06492335839697,0,0,0,77,1,3,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.38634549601527,7.034177847617031,0,0,43.21,47.68,6,1,0,0,8,4,1,272,0,0,0 +16132,19743,35999,-9,-9,-9,1,1,1,47,3,0,0,0,2,-9,2,1,0,4,9.469068019688718,9.521476459694282,0,3,0,-9,0,-9,0,-1038.910329607761,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,9,0,50,52,15,1,0,-9,0,34.06377074782064,34.06377074782064,0,0,0,0,0,0,0,0,0,0,1.569090568973165,0,0,0,57.16,56.15,5,1,0,0,11,5,1,726,0,0,0 +16132,19744,36000,-9,-9,35999,2,1,1,19,2,0,0,0,2,-9,7,2,0,4,5.691088478247447,5.939455430910555,4.970823609937895,3,0,-9,0,-9,0,-990.8725074717184,1,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,0,9,16,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.031982752674122,0,0,0,57.16,56.15,6,1,0,0,11,2,1,89,0,0,0 +16133,19745,36001,36002,-9,-9,1,1,0,56,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,8,0,-6,0,-9,0,0,62,3,3,3,3,3,2019,4,2,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,48,5,1,1,0,2,1,0,1001.5,0,0,0 +16133,19745,36002,36001,-9,-9,2,1,1,62,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,8,0,6,0,-9,0,0,56,2,3,3,3,2,2019,4,1,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,1,1,0,2,1,0,1001.5,0,0,0 +16133,19746,36003,-9,36001,36002,4,1,1,27,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-938.3791547774633,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,24,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.73,70.04000000000001,2,1,0,1,2,1,0,244,0,0,0 +16134,19747,36004,-9,-9,-9,1,1,0,54,2,0,0,0,1,-9,2,1,0,5,8.812171152420314,8.904210978421034,0,3,0,0,0,-9,0,-1113.588232951006,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,41,48,15,1,0,-9,0,16.92186741017658,16.92186741017658,0,0,0,0,0,0,0,0,0,0,0,0,24.87623305499846,3,35.37,58.41,3,1,0,0,12,5,1,468,0,0,0 +16135,19748,36005,36006,-9,-9,1,1,0,31,1,0,0,0,2,-9,2,1,0,4,8.309093950335852,8.46031706329277,0,1,0,-9,6,0,-11,-54.06237940247026,0,0,1,42,1,4,1,2,2,2019,1,2,21,10,50,45,15,1,10,1,0,12.07030844918917,12.07030844918917,0,0,0,0,0,0,0,0,0,0,6.98390536472144,0,0,0,36.51,61.56,6,1,0,0,9,5,1,3590.5,0,0,0 +16135,19748,36006,36005,-9,-9,2,1,1,42,1,0,0,0,1,-9,2,1,0,4,9.016975754357908,9.159193275716868,0,1,0,-9,6,0,11,66.23252448393561,0,0,0,31,2,4,1,-9,-9,2019,1,1,6,0,41,43,15,1,0,1,0,20.84222524981845,20.84222524981845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,3590.5,0,0,0 +16136,19749,36007,-9,36008,36010,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-980.0554866122391,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,4,1,562,0,0,0 +16136,19749,36008,36010,-9,-9,1,1,0,35,1,0,2,0,2,-9,2,1,0,5,7.854638483109912,7.997564185992279,0,2,0,-9,19,0,-2,37.13478872681534,0,0,1,37,2,4,1,2,2,2019,1,2,8,0,21,10,15,1,0,1,0,12.90964117102602,12.90964117102602,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,6,1,0,0,7,4,1,562,0,0,0 +16136,19749,36009,-9,36008,36010,4,1,1,10,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-876.581910472675,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,562,0,0,0 +16136,19749,36010,36008,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.486004109308221,8.169568999306216,0,2,0,-9,7,0,2,-59.96101996347698,0,0,0,35,2,5,1,-9,-9,2019,1,1,10,0,40,40,15,1,1,1,0,14.28503381161605,14.28503381161605,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,0,0,7,4,1,562,0,0,0 +16137,19750,36011,-9,-9,-9,1,1,0,51,3,0,0,0,1,-9,2,1,0,4,8.468591713728332,7.991085137708139,0,3,0,0,0,-9,0,-979.8301958898846,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,2,37,35,15,1,2,-9,0,14.06155339285332,14.06155339285332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,6,1,0,1,2,4,1,608,0,0,0 +16137,19751,36012,-9,36011,-9,2,1,0,18,2,0,0,0,2,1,11,3,0,4,8.14755889585385,7.787741273251651,0,3,0,0,0,-9,0,-976.9938727713976,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,13,3,37,0,15,3,3,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,4,1,0,0,2,3,1,370,0,0,0 +16138,19752,36013,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-952.2919938472451,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,0,0,15,4,3,-9,0,0,0,1,0,37.76468721224717,0,0,0,0,0,0,0,0,0,0,0,54.5,30.27,4,1,0,0,8,1,0,363,0,0,0 +16139,19753,36014,-9,-9,-9,1,1,0,43,2,0,2,0,1,-9,2,1,0,3,8.183912016579841,8.161713263544724,0,4,0,0,0,-9,0,-1017.257153258292,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,7,0,34,32,15,1,0,-9,0,11.32316480606486,11.32316480606486,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,4,3,1,547,0,0,0 +16139,19753,36015,-9,36014,-9,3,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1105.835331569555,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,4,3,1,547,0,0,0 +16139,19753,36016,-9,36014,-9,2,1,0,12,2,0,2,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1041.898647832896,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,2,0,0,4,3,1,547,0,0,0 +16140,19754,36017,-9,-9,-9,1,1,0,67,3,0,0,0,2,-9,4,3,0,5,0,7.323012907863228,7.943622205845945,3,0,0,0,-9,0,-896.3498168415376,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.391617261847539,8.099884886949846,0,0,60.02,56.42,7,1,0,0,2,3,1,190,0,0,0 +16141,19755,36018,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,0,8.544741521190423,8.36601763488912,3,0,0,0,-9,0,-1045.311958915701,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.677577926291578,0,0,57.16,56.15,6,1,0,0,7,4,1,580,0,0,0 +16142,19756,36019,36020,-9,-9,1,1,1,42,1,0,1,0,1,-9,2,1,0,2,8.171208131061492,8.238454140450546,0,2,0,-9,7,0,0,64.91946399047467,0,0,0,51,2,4,1,3,2,2019,1,2,10,0,38,39,15,1,0,1,0,12.35412234617519,12.35412234617519,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,55.66,5,1,0,0,12,4,1,805.6666666666666,0,0,0 +16142,19756,36020,36019,-9,-9,2,1,0,51,1,0,1,0,2,-9,2,1,0,4,8.183286943990367,8.278789167329046,0,2,0,-9,7,0,9,-94.16362376939541,0,0,0,42,1,2,1,-9,-9,2019,1,1,10,0,35,17,15,1,0,1,0,14.31116299717484,14.31116299717484,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,805.6666666666666,0,0,0 +16142,19756,36021,-9,36020,36019,4,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1049.352567309018,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,12,4,1,805.6666666666666,0,0,0 +16143,19757,36022,-9,-9,-9,1,1,0,49,2,0,0,0,1,-9,2,1,0,2,9.005169014834848,8.683517720373295,0,3,0,0,0,-9,0,-939.1192456999528,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,21,9,35,35,15,1,9,-9,0,21.04205568461666,21.04205568461666,0,0,0,0,0,0,0,0,0,0,4.284322208775471,0,0,0,14.94,55.75,1,1,0,0,7,5,1,213,0,0,0 +16144,19758,36023,-9,-9,-9,1,1,1,60,2,0,0,0,3,-9,1,1,0,2,7.310886942709597,7.355837043573385,0,3,0,0,0,-9,0,-969.1818200902405,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,2,30,48,15,1,2,-9,0,5.32742278287027,5.32742278287027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,38.11,3,1,0,1,4,3,1,3501,0,0,0 +16145,19759,36024,-9,-9,-9,1,1,0,31,2,0,0,0,1,-9,2,1,0,4,8.182385503666481,8.159298541786006,0,3,0,0,0,-9,0,-1017.210026366662,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,41,40,15,1,0,-9,1,8.839454436208293,8.839454436208293,0,0,0,0,0,0,0,0,0,0,1.227847620546872,0,9.697049162444358,3,44.91,56.56,6,3,0,0,6,4,1,731,0,0,0 +16146,19760,36025,36026,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.618888584344246,7.33356111129708,1,0,-9,47,0,-1,3.080087731023318,0,0,0,69,3,3,3,2,3,2019,4,2,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.896932856557541,7.672130683150892,0,0,59.74,45.34,7,1,0,0,2,3,1,434,0,0,0 +16146,19760,36026,36025,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,3,0,7.352447719590729,7.468110426911808,1,0,-9,47,0,1,16.8138413753975,0,0,0,68,2,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.740306576567297,6.938750665142034,0,0,60.45,43.75,7,1,0,0,2,3,1,434,0,0,0 +16147,19761,36027,-9,36029,36028,1,1,1,44,3,0,0,0,1,-9,2,1,0,5,9.281928321381683,8.983255982008139,0,3,0,0,0,-9,0,-886.9645520710701,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,50,53,15,1,0,-9,1,19.66973847492722,19.66973847492722,0,0,0,0,0,0,0,1,1,0,2.208200633560251,0,0,0,58.05,54.52,5,1,0,0,2,5,1,1249,0,0,0 +16147,19762,36028,36029,-9,-9,2,1,1,67,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,5,0,-1,0,0,0,0,68,3,3,3,-9,-9,2019,4,3,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,6,1,0,0,2,1,1,916,0,0,0 +16147,19762,36029,36028,-9,-9,3,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,5,0,1,0,0,0,0,67,3,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.35,50.81,4,1,0,0,2,1,1,916,0,0,0 +16148,19763,36030,-9,-9,-9,1,1,1,69,3,0,0,0,1,-9,4,3,0,2,0,7.487098275953983,7.24822744117615,3,0,0,0,-9,0,-901.3570952750435,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.007876259902593,0,0,59.95,25.68,6,1,0,0,6,2,1,110,0,0,0 +16149,19764,36031,-9,36032,-9,4,1,1,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1048.30257498464,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,12,1,0,1117,0,0,0 +16149,19764,36032,-9,-9,-9,1,1,0,38,3,1,3,0,2,-9,3,3,0,3,0,0,0,4,0,0,0,-9,0,-1144.62377151235,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,4,1,1,1,12,1,0,1117,0,0,0 +16150,19765,36033,36034,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,2,0,7.741547167043139,7.719349006293292,1,0,-9,35,0,-6,-119.9294733379722,0,0,0,67,2,2,1,3,3,2019,3,1,12,3,0,0,15,4,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.549144681630027,7.300638782180649,16.18171398291561,3,46.5,38.4,6,1,0,0,2,4,1,605.5,0,0,0 +16150,19765,36034,36033,-9,-9,1,1,1,67,1,0,0,0,2,-9,1,1,0,2,8.40653911080746,8.170083554346299,0,1,0,-9,35,0,6,-80.69342559561953,0,0,0,61,2,2,3,3,3,2019,2,2,9,1,35,0,15,1,1,4,0,16.24453412575676,16.24453412575676,0,0,0,0,0,0,0,1,1,0,4.083364872925076,0,0,0,62.42,32.41,6,1,0,0,2,4,1,605.5,0,0,0 +16151,19766,36035,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,5,8.430020848756882,8.430787845708263,0,3,0,-9,0,-9,0,-1074.518711133565,-9,0,1,-9,-9,-9,-9,2,3,2019,-9,0,8,1,91,0,15,1,1,-9,0,6.484241281247344,6.484241281247344,0,0,0,0,0,0,0,0,0,0,2.747619103456746,0,0,0,59.43,58.05,7,1,0,0,2,5,1,743,0,0,0 +16152,19767,36036,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,4,9.182365193393414,9.079430578931182,0,3,0,0,0,-9,0,-954.7564634238888,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,6,0,50,44,15,1,0,-9,0,20.63944500737152,20.63944500737152,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.16,56.15,6,1,0,0,12,5,1,130,0,0,0 +16153,19768,36037,-9,-9,-9,1,1,0,54,2,0,0,0,3,-9,2,1,0,5,7.880768072279913,8.403241289907948,0,3,0,0,0,-9,0,-947.5734986894813,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,37,37,15,1,1,-9,0,10.83402662725138,10.83402662725138,0,0,0,0,0,0,0,0,0,0,0,0,22.46840807278885,3,44.03,59.58,3,1,0,1,12,4,1,295,0,0,0 +16154,19769,36038,36039,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,3,0,7.741709127844893,7.758943143125135,1,0,-9,6,0,-1,-15.71233356204333,0,0,0,65,1,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.631605460578313,7.502725564630053,0,0,55.61,50.3,6,1,0,0,11,4,1,811.5,0,0,0 +16154,19769,36039,36038,-9,-9,2,1,1,65,1,0,0,0,1,-9,4,3,0,4,0,7.857069097674759,7.825717093342504,1,0,-9,6,0,1,19.6748563102276,0,0,0,64,2,3,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.505173281293829,0,0,57.16,56.15,6,1,0,0,11,4,1,811.5,0,0,0 +16155,19770,36040,-9,-9,-9,1,1,0,68,3,0,0,0,1,-9,4,3,0,5,0,8.017345711718647,8.143460980471293,3,0,0,0,-9,0,-1049.097171747417,0,0,0,-9,-9,-9,-9,3,1,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.764906745645531,8.154809599640453,22.37223361818071,3,51.14,60.45,3,1,0,0,9,3,1,617,0,0,0 +16156,19771,36041,36042,-9,-9,2,1,0,66,1,0,0,0,1,-9,4,3,0,4,0,6.742644870977347,6.392472130798361,1,0,-9,7,0,-3,25.80710843009221,0,0,0,69,1,4,1,2,1,2019,3,1,13,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.103849871592447,6.458510765429694,0,0,52.97,48.43,6,1,0,0,12,4,1,331,0,0,0 +16156,19771,36042,36041,-9,-9,1,1,1,69,1,0,0,0,1,-9,1,1,0,4,7.478432224246064,8.293931366880434,8.008988987814284,1,0,-9,7,0,3,223.7716392307308,0,0,0,66,1,4,3,3,3,2019,2,2,6,0,0,0,15,1,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.326802298515211,7.899308214334465,0,0,47.64,55.02,6,1,0,0,12,4,1,331,0,0,0 +16157,19772,36043,36044,-9,-9,2,1,1,49,1,0,1,0,2,-9,2,1,0,2,8.765436368044192,8.858829255024972,0,2,0,-9,10,0,-3,53.51896113232593,0,0,0,52,2,4,1,3,3,2019,1,1,9,2,37,37,15,1,2,1,0,19.05337648697747,19.05337648697747,0,0,0,0,0,0,0,1,1,0,.1120334016488034,0,0,0,53.8,29.96,6,1,0,0,2,5,1,393.3333333333333,0,0,0 +16157,19772,36044,36043,-9,-9,1,1,0,52,1,0,1,0,2,-9,2,1,0,4,8.228131500998886,8.050966146608996,0,2,0,-9,10,0,3,31.62607692414981,0,0,0,49,2,2,1,2,2,2019,1,2,12,1,35,35,15,1,1,1,0,11.10843417714685,11.10843417714685,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,54.57,6,1,0,0,2,5,1,393.3333333333333,0,0,0 +16157,19772,36045,-9,36044,36043,4,1,0,16,2,0,1,0,2,-9,3,2,0,4,0,0,0,2,0,0,0,-9,0,-953.6827391650361,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.96,61.14,5,1,1,0,2,5,1,393.3333333333333,0,0,0 +16157,19773,36046,-9,36044,36043,3,1,0,20,2,0,1,0,2,-9,2,1,0,3,6.805327156471076,6.940370472281566,0,3,0,0,0,-9,0,-978.4391245119368,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,25,32,15,1,0,-9,1,5.931063432847483,5.931063432847483,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.39,51.17,5,1,0,0,2,2,1,780,0,0,0 +16158,19774,36047,36050,-9,-9,1,1,1,36,1,1,2,0,2,-9,2,1,0,5,8.755924624598368,8.63959034076982,0,2,0,-9,11,0,-1,109.6374056641169,0,0,0,37,2,2,1,2,2,2019,1,2,7,0,44,44,15,1,0,1,0,13.81380478812297,13.81380478812297,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,1,0,0,7,4,0,1011,0,0,0 +16158,19774,36048,-9,36050,36047,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1072.544723698164,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,4,0,1011,0,0,0 +16158,19774,36049,-9,36050,36047,3,1,1,8,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-922.3688497831795,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,4,0,1011,0,0,0 +16158,19774,36050,36047,-9,-9,2,1,0,37,1,1,2,0,2,-9,2,1,0,2,8.16017991516982,8.007899412892931,0,2,0,-9,11,0,1,76.43165861431399,0,0,1,36,2,5,1,2,2,2019,1,1,10,2,19,19,15,1,2,1,0,17.60954830471792,17.60954830471792,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,43.99,6,1,0,0,7,4,0,1011,0,0,0 +16159,19775,36051,-9,-9,-9,1,1,1,89,2,0,0,0,1,-9,4,3,0,3,0,5.885351792227274,6.326129063386951,3,0,0,0,-9,0,-995.3288822582651,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.8709749357279,0,0,55,45,6,4,0,1,6,2,0,361,0,0,0 +16160,19776,36052,-9,-9,-9,1,1,0,57,3,0,0,0,1,-9,2,1,0,4,8.999348294518343,8.857955440394143,0,3,0,0,0,-9,0,-1000.803676292769,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,46,12,15,1,0,-9,0,18.26892127368868,18.26892127368868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,6,1,0,0,9,5,0,1211,0,0,0 +16161,19777,36053,-9,-9,-9,1,1,0,58,2,0,0,0,2,-9,2,1,0,3,8.278037899519848,7.912323484170477,0,3,0,0,0,-9,0,-961.4280895633028,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,43,15,1,0,-9,0,6.433345139949853,6.433345139949853,0,0,0,0,0,0,0,0,0,0,.9104265949433236,0,0,0,57.33,53.46,6,1,0,0,10,4,1,505,0,0,0 +16162,19778,36054,36055,-9,-9,1,1,0,53,1,0,0,0,3,-9,2,1,0,3,6.739587252230566,7.377103789687938,6.582928814455154,1,0,-9,9,0,-5,87.32710010430165,0,0,0,58,2,2,1,2,2,2019,1,2,15,3,15,15,15,1,3,1,0,8.105719641807255,8.105719641807255,0,0,0,0,0,0,0,0,0,0,3.662042755184236,7.014244966954302,3.45510912371516,3,31.69,51.65,3,1,0,0,12,4,1,568.5,0,0,0 +16162,19778,36055,36054,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,2,7.708391447341906,8.126472582173452,0,1,0,-9,9,0,5,58.63769875535458,0,0,0,53,3,3,1,3,3,2019,1,1,18,6,35,35,15,1,6,1,0,9.320002890097491,9.320002890097491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.37,21.76,3,1,0,0,12,4,1,568.5,0,0,0 +16163,19779,36056,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,5,6.53333036484296,6.670654747023771,0,3,0,0,0,-9,0,-969.6409451684198,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,0,0,17,31,15,1,0,-9,0,5.123644914190104,5.123644914190104,0,0,0,0,0,0,0,1,1,0,0,0,3.636072715227162,3,57.65,56.13,6,1,0,0,11,2,0,256,0,0,0 +16164,19780,36057,-9,-9,-9,1,1,0,62,3,0,0,0,1,-9,2,1,0,3,7.708356992136104,7.841077306155743,5.818380338581941,3,0,-9,0,1,0,-1057.386842298204,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,2,38,38,15,1,2,-9,0,9.123027011093065,9.123027011093065,0,0,0,0,0,0,0,1,1,0,0,6.124137964811736,0,0,62.43,40.11,4,1,0,0,4,4,0,707,0,0,0 +16165,19781,36058,-9,-9,-9,1,1,1,78,3,0,0,0,2,-9,4,3,0,3,4.768624656843556,4.528525211633291,0,3,0,0,0,-9,0,-953.6860026902574,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.642159065173706,0,0,0,62.66,52.4,1,1,0,0,4,2,1,430,0,0,0 +16166,19782,36059,36060,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,4,0,7.359656660360319,7.620799878502813,1,0,-9,26,0,6,3.269792618304254,0,0,0,68,1,4,3,2,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.725278319798388,7.718502979733967,0,0,57.16,56.15,7,1,0,0,12,3,1,282,0,0,0 +16166,19782,36060,36059,-9,-9,1,1,0,68,1,0,0,0,1,-9,4,3,0,4,0,6.821692459364899,6.934618584148531,1,0,-9,26,0,-6,-11.52982665496772,0,0,0,74,3,4,3,2,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.018359931913703,6.727265419068172,0,0,57.16,56.15,7,1,0,0,12,3,1,282,0,0,0 +16167,19783,36061,-9,-9,-9,1,1,1,54,3,0,0,0,2,-9,2,1,0,3,8.807504910520548,8.739193072236164,0,3,0,0,0,-9,0,-1024.659302036347,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,1,39,39,15,1,1,-9,0,17.47013337402518,17.47013337402518,0,0,0,0,0,0,0,1,1,0,1.328030191591741,0,0,0,56.52,48.31,5,1,0,0,4,5,1,498,0,0,0 +16168,19784,36062,36063,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,5,8.358623286319958,8.227520676747675,0,1,0,-9,32,0,-1,117.3040924257424,0,0,0,55,2,4,1,2,2,2019,1,1,11,0,41,40,15,1,0,1,0,17.09294992295802,17.09294992295802,0,0,0,0,0,0,0,0,0,0,6.773373912254439,0,0,0,55.09,55.87,6,1,0,0,4,4,1,483.5,0,0,0 +16168,19784,36063,36062,-9,-9,1,1,1,55,1,0,0,0,2,-9,1,1,0,4,6.705479763364156,7.16162379196907,0,1,0,-9,32,0,1,-81.38205019270997,0,0,0,54,2,5,1,3,2,2019,1,2,6,0,2,10,15,1,0,1,0,50.13956750200067,50.13956750200067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,2,1,0,0,4,4,1,483.5,0,0,0 +16168,19785,36064,-9,36062,36063,3,1,0,21,2,0,0,1,2,0,7,2,0,5,5.344892774386715,5.414786589778361,0,3,0,0,0,-9,0,-884.5053374950661,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,12,0,6,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.5491486003604173,0,0,0,51.39,59.18,6,1,0,0,4,2,1,164,0,0,0 +16169,19786,36065,36067,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,2,7.375583526730144,7.073112261751954,0,1,0,-9,6,0,2,-96.45715151726961,0,0,0,49,2,2,1,2,2,2019,1,2,13,2,25,0,15,1,2,1,0,7.972059678311115,7.972059678311115,0,0,0,0,0,0,0,0,0,0,4.480286818994091,0,0,0,50.8,48.58,5,1,0,0,6,4,1,871,0,0,0 +16169,19786,36066,-9,36067,36065,3,1,1,16,2,0,0,0,2,-9,11,2,0,5,6.998841844741593,6.805418946654098,0,1,0,0,0,-9,0,-934.8526185215007,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,40,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000427703008522,0,0,0,60.42,54.81,6,1,0,0,6,4,1,871,0,0,0 +16169,19786,36067,36065,-9,-9,2,1,0,49,1,0,0,0,2,-9,2,1,0,2,8.591333694506293,8.296763102472893,0,1,0,-9,6,0,-2,-86.53291606089407,0,0,0,51,2,2,1,3,3,2019,1,1,14,2,35,28,15,1,2,1,0,14.75781342010168,14.75781342010168,0,0,0,0,0,0,0,0,0,0,4.594958829914639,0,0,1,36.63,54.1,4,1,0,0,6,4,1,871,0,0,0 +16170,19787,36068,36069,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,7.380469339259974,7.446345869469403,1,0,-9,29,0,8,42.4782202839962,0,0,0,58,1,4,1,2,2,2019,3,2,12,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.01722904097249,7.311621797117496,0,0,48.87,58.55,6,1,0,0,9,4,1,349.5,0,0,0 +16170,19787,36069,36068,-9,-9,2,1,0,58,1,0,0,0,1,-9,2,1,0,4,8.170768159730574,8.03828345376596,0,1,0,-9,10,0,-8,-36.99633630368923,0,0,0,66,1,4,3,3,2,2019,2,1,11,0,41,43,15,1,0,4,0,11.49177203338309,11.49177203338309,0,0,0,0,0,0,0,1,1,0,6.9917350677046,0,0,0,55.79,52.62,5,4,0,0,9,4,1,349.5,0,0,0 +16171,19788,36070,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-971.2193505889942,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,2.494569511257134,0,0,0,54.44,13.54,6,1,0,0,12,1,1,2108,0,0,0 +16172,19789,36071,-9,-9,-9,1,1,1,72,3,0,0,0,2,-9,4,3,0,4,0,8.011678271598839,8.152485825329551,3,0,0,0,-9,0,-1027.659172979068,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.661574399052791,7.946173712106605,0,0,54.44,51.82,5,1,0,0,5,4,1,995,0,0,0 +16173,19790,36072,36073,-9,-9,1,1,0,37,1,1,1,0,3,-9,2,1,0,5,9.208366847058764,9.007606213710714,0,2,0,-9,7,0,1,-78.71424324070998,0,0,1,36,2,3,1,-9,-9,2019,1,2,8,0,40,42,15,1,0,1,0,33.6945228444233,33.6945228444233,0,0,0,0,0,0,0,0,0,0,4.48026264032146,0,0,0,54.69,57.47,6,1,0,0,8,5,0,671,0,0,0 +16173,19790,36073,36072,-9,-9,2,1,1,36,1,1,1,0,2,-9,2,1,0,3,8.561210670911754,9.003898982224102,0,2,0,-9,7,0,-1,-34.0324754743344,0,0,0,37,3,5,1,2,-9,2019,1,1,7,0,38,26,15,1,0,1,0,17.52453372026661,17.52453372026661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.17,32.94,6,1,0,0,8,5,0,671,0,0,0 +16173,19790,36074,-9,36072,36073,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.9886229149447,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,5,1,0,0,8,5,0,671,0,0,0 +16174,19791,36075,36076,-9,-9,2,1,1,82,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,6,0,0,-6.257272074104216,0,0,0,82,2,1,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,119.3087720698026,1,62.18,36.18,7,1,0,0,9,2,1,888,0,0,0 +16174,19791,36076,36075,-9,-9,1,1,0,82,1,0,0,0,2,-9,4,3,0,1,0,6.628720877205867,6.950895709066914,1,0,-9,61,0,0,95.44867348330186,0,0,0,82,3,3,3,-9,-9,2019,4,2,27,12,0,0,15,4,12,4,0,0,0,1,0,11.93541548048597,0,0,0,0,1,1,0,0,6.649925881604696,0,0,37.6,14.31,3,1,0,0,9,2,1,888,0,0,0 +16175,19792,36077,-9,-9,-9,1,1,0,72,3,0,0,0,3,-9,4,3,0,4,0,6.167752253753092,6.223261926549213,3,0,0,0,-9,0,-990.2545029535764,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.030666557560862,6.119302570316564,0,0,58.15,52.91,6,1,0,0,9,2,1,158,0,0,0 +16176,19793,36078,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,2,1,0,3,8.946146929811848,9.270971274826991,0,4,0,0,0,-9,0,-1024.121343770123,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,19,7,45,30,15,1,7,-9,0,22.05973120914481,22.05973120914481,0,0,0,0,0,0,0,0,0,0,6.988119002240092,0,0,0,33.75,58.86,6,1,0,0,10,5,0,765,0,0,0 +16177,19794,36079,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,5,8.480208870976217,8.354681073354415,0,3,0,-9,0,-9,0,-1064.769367596713,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,2,0,38,0,15,1,0,-9,0,15.96153766137545,15.96153766137545,0,0,0,0,0,0,0,0,0,0,1.547291754547032,0,0,0,62.39,56.71,7,1,0,0,5,5,0,1551,0,0,0 +16178,19795,36080,-9,-9,-9,1,1,0,47,3,0,2,0,2,-9,2,1,0,3,7.588321363839188,7.871398613649853,6.360032630063421,4,0,0,0,-9,0,-961.7109976646411,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,33,38,15,1,1,-9,0,6.303477846628985,6.303477846628985,0,0,0,0,0,0,0,1,0,1,6.732031331559033,0,0,0,50.27,46.95,6,1,0,0,10,2,1,1251,0,0,0 +16178,19795,36081,-9,36080,-9,3,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1048.274594519116,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,1,0,0,10,2,1,1251,0,0,0 +16178,19795,36082,-9,36080,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-890.7842390702626,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,1,0,0,10,2,1,1251,0,0,0 +16179,19796,36083,36084,-9,-9,2,1,0,48,1,0,1,0,2,-9,2,1,0,3,7.585446525184691,7.789319301651356,0,2,0,-9,7,0,2,102.9568044473701,0,0,0,46,1,3,1,2,3,2019,1,1,21,9,38,37,15,1,9,1,0,7.938059686728137,7.938059686728137,0,0,0,0,0,0,0,1,1,0,1.341307698673414,0,4.386640722436189,3,40.93,53.95,4,1,0,0,2,5,1,501,0,0,0 +16179,19796,36084,36083,-9,-9,1,1,1,46,1,0,1,0,1,-9,2,1,0,3,9.018021489255023,8.926469869833092,0,2,0,-9,7,0,-2,33.22414975213363,0,0,0,48,2,3,1,2,3,2019,1,2,16,4,50,60,15,1,4,1,0,20.84268809648373,20.84268809648373,0,0,0,0,0,0,0,1,1,0,3.750810427163129,0,13.32628096423262,3,47.96,34.69,5,1,0,0,2,5,1,501,0,0,0 +16180,19797,36085,-9,-9,-9,2,1,0,21,2,0,0,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1090.385417391869,-9,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,29,12,0,0,15,3,12,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.29,57.33,3,1,1,0,9,1,1,638,0,0,0 +16181,19798,36086,36088,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,5,7.653826137013683,7.459829861546924,0,2,0,-9,20,0,0,-1.325894084099639,0,0,1,41,2,4,1,1,3,2019,1,2,6,0,15,14,15,1,0,1,0,13.48382159637265,13.48382159637265,0,0,0,0,0,0,0,1,1,0,5.587640863689916,0,0,3,57.06,57.76,6,1,0,0,12,4,1,1058,0,0,0 +16181,19798,36087,-9,36086,36088,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.5537305017415,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,12,4,1,1058,0,0,0 +16181,19798,36088,36086,-9,-9,2,1,1,41,1,0,2,0,2,-9,2,1,0,4,8.763518029662118,8.31249360597814,0,2,0,-9,16,0,0,46.60917919714822,0,0,0,41,1,5,1,2,3,2019,1,1,11,0,35,37,15,1,0,1,0,16.76727227763898,16.76727227763898,0,0,0,0,0,0,0,1,1,0,0,0,76.43893519750718,3,57.16,56.15,6,1,0,0,12,4,1,1058,0,0,0 +16181,19798,36089,-9,36086,36088,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1065.740240011587,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,12,4,1,1058,0,0,0 +16182,19799,36090,36091,-9,-9,1,1,1,43,1,0,0,0,3,-9,8,3,1,2,0,0,0,1,0,-9,2,0,22,0,0,0,0,21,2,3,3,-9,-9,2019,4,2,12,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.95,40.36,3,1,0,1,4,1,0,468,0,0,0 +16182,19799,36091,36090,-9,-9,2,1,0,21,1,0,0,0,2,-9,3,3,0,3,0,0,0,1,0,-9,2,0,-22,0,0,1,1,43,3,2,3,-9,-9,2019,4,1,13,4,0,0,15,3,4,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.54,52.91,6,1,1,1,4,1,0,468,0,0,0 +16183,19800,36092,-9,-9,-9,1,1,1,71,3,0,0,0,2,-9,4,3,0,3,0,8.099608320070857,8.023219017042726,3,0,0,0,-9,0,-1049.337201755638,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.134135578078516,8.258648807391257,0,0,57.33,53.46,6,1,0,0,8,4,1,677,0,0,0 +16184,19801,36093,36094,-9,-9,1,1,0,22,1,0,0,0,2,-9,2,1,0,4,7.780964990943716,7.445483690958162,0,1,0,1,1,-9,0,53.56971114825299,0,1,1,22,2,3,1,-9,-9,2019,1,2,15,2,45,31,15,1,2,1,0,4.894444203066604,4.894444203066604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,42.63,6,1,0,0,6,4,0,355.5,0,0,0 +16184,19801,36094,36093,-9,-9,2,1,1,22,1,0,0,0,2,-9,2,1,0,3,7.765565782029559,8.067374249823862,0,1,0,-9,1,-9,0,37.998067731827,-9,1,0,22,2,4,1,-9,-9,2019,1,1,6,0,40,0,15,1,0,1,0,7.369741399531732,7.369741399531732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,7,1,0,0,6,4,0,355.5,0,0,0 +16185,19802,36095,36097,-9,-9,2,1,0,45,1,0,2,0,1,-9,2,1,0,3,7.319835524274653,7.56423484282979,0,2,0,-9,20,0,-7,28.87185243333527,0,0,0,52,1,3,1,3,1,2019,1,1,6,0,38,44,15,1,0,1,0,6.800390979916325,6.800390979916325,0,0,0,0,0,0,0,1,1,0,7.262779126610188,0,0,0,62.66,52.4,7,3,0,0,8,4,1,2162.333333333333,0,0,0 +16185,19802,36096,-9,36095,36097,4,1,1,17,2,0,2,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1122.090326163144,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.09,56.75,4,3,0,0,8,4,1,2162.333333333333,0,0,0 +16185,19802,36097,36095,-9,-9,1,1,1,52,1,0,2,0,1,-9,2,1,0,3,9.196337912350165,9.163163265364808,0,2,0,-9,20,0,7,16.69335011146792,0,0,0,45,1,3,1,3,3,2019,1,2,11,1,39,39,15,1,1,1,0,26.21570911589247,26.21570911589247,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.95,50.89,5,3,0,0,8,4,1,2162.333333333333,0,0,0 +16185,19803,36098,-9,36095,36097,3,1,0,18,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-932.2235580415869,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,6,3,0,0,8,4,1,605,0,0,0 +16186,19804,36099,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-945.3242856598065,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.65,27.39,3,1,0,0,2,1,1,942,0,0,0 +16187,19805,36100,-9,36104,36103,4,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-880.1529344813287,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,3,1,448.4,0,0,0 +16187,19805,36101,-9,36104,36103,3,1,0,7,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.828495415893,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,1,448.4,0,0,0 +16187,19805,36102,-9,36104,36103,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-986.4352721204712,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,1,448.4,0,0,0 +16187,19805,36103,36104,-9,-9,1,1,1,44,1,1,3,0,2,-9,1,1,0,3,8.281167452653763,8.279796304638763,0,2,0,-9,7,0,15,23.28008957143677,0,0,0,29,2,3,1,2,2,2019,1,2,12,0,40,40,15,1,0,1,0,9.225965126969419,9.225965126969419,0,0,0,0,0,0,0,1,1,0,1.533681238872564,0,0,0,53.14,45.74,4,1,0,0,9,3,1,448.4,0,0,0 +16187,19805,36104,36103,-9,-9,2,1,0,29,1,1,3,0,2,-9,1,1,0,3,6.620746656210741,7.030679598845127,0,2,0,-9,7,0,-15,34.03947973855659,0,1,1,44,2,3,1,2,2,2019,1,1,9,0,25,16,15,1,0,1,0,2.852291984794374,2.852291984794374,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,1,0,0,9,3,1,448.4,0,0,0 +16188,19806,36105,36106,-9,-9,1,1,0,72,1,0,0,0,2,-9,4,3,0,2,0,7.042535548646074,6.91575815921877,1,0,-9,51,0,-2,-30.04640900485025,0,0,0,74,3,3,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.048176618431936,0,0,57.52,26.31,5,1,0,0,9,3,1,267,0,0,0 +16188,19806,36106,36105,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,3,0,7.87412599173347,7.483532228225773,1,0,-9,7,0,2,169.4491653196561,-9,0,0,72,2,2,3,-9,-9,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.995657606557027,7.555653362657879,0,0,53,46,6,1,0,0,9,3,1,267,0,0,0 +16189,19807,36107,-9,36109,36111,5,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-925.7775733100623,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,3,0,0,6,1,1,680.4,0,0,0 +16189,19807,36108,-9,36109,36111,6,1,0,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-992.6309405948524,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,5,3,0,0,6,1,1,680.4,0,0,0 +16189,19807,36109,36111,-9,-9,1,1,0,47,1,0,3,0,3,-9,6,3,0,2,0,0,0,2,0,-9,25,0,-10,0,0,0,0,57,3,2,3,3,3,2019,4,2,3,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.67613704993141,3,66.75,34.59,7,3,0,0,6,1,1,680.4,0,0,0 +16189,19807,36110,-9,36109,36111,7,1,1,11,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1187.802863307367,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,5,3,0,0,6,1,1,680.4,0,0,0 +16189,19807,36111,36109,36112,-9,2,1,1,57,1,0,3,0,3,-9,3,3,0,2,0,0,0,2,0,-9,25,0,10,0,0,0,0,47,3,2,3,3,3,2019,4,1,19,7,0,0,15,3,7,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,14.04165440969692,3,35.15,41.24,4,3,1,0,6,1,1,680.4,0,0,0 +16189,19808,36112,-9,-9,-9,3,1,0,73,3,0,3,0,3,-9,97,3,0,1,0,0,0,4,0,0,0,-9,0,-1070.75769860848,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,29,12,0,0,15,3,12,-9,0,0,0,1,5.886980762163973,0,0,11.07680908231875,7.997293159246651,51.38451350609689,1,0,1,0,0,0,0,36.74,22.62,3,3,0,0,6,1,1,122,0,0,0 +16189,19809,36113,-9,36109,36111,4,1,0,19,2,0,3,0,2,-9,2,1,0,5,7.148719674812466,7.30355036581067,0,3,0,0,0,-9,0,-1113.521602568917,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,3,0,40,0,15,1,0,-9,1,4.093808713745439,4.093808713745439,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.96,56.86,7,3,0,0,6,2,1,167,0,0,0 +16190,19810,36114,36117,-9,-9,1,1,1,46,1,0,2,0,3,-9,1,1,0,4,8.256367401994133,8.44264122555596,0,2,0,-9,16,0,4,-31.341229777319,-9,0,0,42,1,3,1,3,3,2019,1,2,11,0,48,0,15,1,0,1,0,9.196375168643867,9.196375168643867,0,0,0,0,0,0,0,1,1,0,7.035267215148699,0,0,0,41.53,63.13,6,1,0,0,7,5,1,802.5,0,0,0 +16190,19810,36115,-9,36117,36114,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-919.0097470259627,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,7,5,1,802.5,0,0,0 +16190,19810,36116,-9,36117,36114,4,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-877.0710811401539,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,7,5,1,802.5,0,0,0 +16190,19810,36117,36114,-9,-9,2,1,0,42,1,0,2,0,1,-9,2,1,0,3,8.894103534406764,8.984090302851071,0,2,0,-9,10,0,-4,-62.55289445571671,0,0,1,46,3,4,1,2,3,2019,1,1,10,0,46,45,15,1,0,1,0,19.87891483821915,19.87891483821915,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.28,38.3,6,1,0,0,7,5,1,802.5,0,0,0 +16191,19811,36118,-9,-9,-9,1,1,0,48,3,0,1,0,2,-9,1,1,0,4,6.310278520766206,7.204454978722725,6.494307213232954,4,0,0,0,-9,0,-950.2158068873657,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,16,0,15,1,0,-9,0,5.099175542276416,5.099175542276416,0,0,0,0,0,0,0,1,1,0,5.943837886473007,0,19.46167020201896,3,60.13,49.27,6,1,0,0,7,2,0,592,0,0,0 +16191,19811,36119,-9,36118,-9,2,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-845.9312044243427,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,7,2,0,592,0,0,0 +16192,19812,36120,-9,-9,-9,1,1,0,32,2,0,1,0,2,-9,1,1,0,3,6.808697500378811,7.462090712145435,6.306070778193852,4,0,0,0,-9,0,-986.9739925774622,0,0,1,-9,-9,-9,-9,1,3,2019,-9,0,21,10,16,10,15,1,10,-9,0,7.703620489144015,7.703620489144015,0,0,0,0,0,0,0,1,1,0,6.504516028279753,0,0,0,47.47,44.67,6,1,0,0,9,2,1,1384.5,0,0,0 +16192,19812,36121,-9,36120,-9,2,1,1,10,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-957.1623794938479,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,9,2,1,1384.5,0,0,0 +16193,19813,36122,-9,-9,-9,1,1,0,72,2,0,0,0,2,-9,4,3,0,1,0,7.557751454825276,7.216181861404809,3,0,0,0,-9,0,-920.1059323447294,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.280551976573172,0,0,46.87,27.31,4,1,0,0,2,2,1,762,0,0,0 +16194,19814,36123,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,5,7.840495164581368,7.897573021238911,0,3,0,-9,0,-9,0,-1103.092540140665,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,30,0,15,1,0,-9,0,12.48675518297108,12.48675518297108,0,0,0,0,0,0,0,0,0,0,.1194982606297824,0,0,0,62.39,56.71,6,1,0,0,11,4,1,335,0,0,0 +16195,19815,36124,36125,-9,-9,1,1,1,30,1,0,0,0,1,-9,2,1,0,4,8.504762689444634,9.087055555264728,0,1,0,-9,9,0,-13,-55.42746097501055,0,0,0,43,2,4,3,-9,-9,2019,2,2,10,0,0,40,15,1,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,4,0,0,6,4,0,527.5,0,0,0 +16195,19815,36125,36124,-9,-9,2,1,0,43,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,9,0,13,105.4726338469124,0,0,1,30,1,4,1,-9,-9,2019,3,1,11,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,5,1,1,0,6,4,0,527.5,0,0,0 +16196,19816,36126,36127,-9,-9,2,1,0,60,1,0,0,0,3,-9,8,3,1,3,0,0,0,1,0,-9,8,0,-5,-30.35303123289907,0,0,0,65,2,5,3,-9,-9,2019,4,1,11,0,0,0,15,3,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,1,3,0,543.5,0,0,0 +16196,19816,36127,36126,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,5,5.383490453033957,7.763886893539858,7.084467821601082,1,0,-9,30,0,5,96.570482646407,0,0,0,60,3,3,3,3,3,2019,4,2,10,2,4,44,15,4,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.26941217460662,17.38113686424202,1,50.27,56.67,7,1,0,0,1,3,0,543.5,0,0,0 +16197,19817,36128,-9,36130,36131,4,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1015.91636835108,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,4,2,0,944.25,0,0,0 +16197,19817,36129,-9,36130,36131,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-939.9357535497095,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,2,0,0,4,2,0,944.25,0,0,0 +16197,19817,36130,36131,-9,-9,1,1,0,43,1,0,2,0,2,-9,2,1,0,2,7.961456035357171,7.656246091211139,0,2,0,-9,15,0,-1,-28.46640993187466,0,0,1,44,3,1,3,2,2,2019,2,2,7,0,30,30,15,1,0,3,0,9.326576862095051,9.326576862095051,0,0,0,0,0,0,0,1,1,0,0,0,43.71940711114925,2,55.2,49.4,6,1,0,0,4,2,0,944.25,0,0,0 +16197,19817,36131,36130,-9,-9,2,1,1,44,1,0,2,0,3,-9,8,3,1,1,0,0,0,2,0,-9,15,0,1,61.442598266997,0,0,0,43,2,2,1,3,3,2019,3,1,36,12,0,52,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.811046084269838,2,24.6,44.73,1,3,0,1,4,2,0,944.25,0,0,0 +16198,19818,36132,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,4,8.220761869060127,8.090854104584235,0,3,0,0,0,-9,0,-988.1529784581662,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,30,38,15,1,0,-9,0,13.04165838298801,13.04165838298801,0,0,0,0,0,0,0,0,0,0,3.058076730428148,0,0,0,48.87,58.55,6,1,0,0,9,4,1,131,0,0,0 +16198,19819,36133,-9,36132,-9,2,1,1,26,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-938.96226698353,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,5,1,1,0,9,1,1,268,0,0,0 +16199,19820,36134,36135,-9,-9,2,1,0,81,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,58,0,3,-36.36821103795942,0,0,0,78,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.74,42.24,6,1,0,0,10,3,1,1361,0,0,0 +16199,19820,36135,36134,-9,-9,1,1,1,78,1,0,0,0,1,-9,4,3,0,4,0,8.054365282327051,7.806790663931521,1,0,-9,58,0,-3,65.76536004522653,0,0,0,81,3,3,3,2,2,2019,4,2,17,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.636975796924511,0,0,59.71,50.89,6,1,0,0,10,3,1,1361,0,0,0 +16200,19821,36136,36137,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,40,-9,-1,-125.5918662169649,-9,0,0,66,3,4,3,3,3,2019,4,2,18,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,5,1,0,0,7,3,1,571.5,0,0,0 +16200,19821,36137,36136,-9,-9,2,1,1,66,1,0,0,0,3,-9,4,3,0,4,0,8.149473519189987,7.768600724226352,1,0,-9,1,-9,1,-107.3675294836209,-9,0,0,65,2,3,3,3,3,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.6435184811425868,8.156862383285997,0,0,57.16,56.15,6,1,0,0,7,3,1,571.5,0,0,0 +16200,19822,36138,-9,36136,36137,3,1,1,26,2,0,0,0,2,-9,2,1,0,5,8.105933750925924,8.210937475474008,0,3,0,-9,0,-9,0,-973.763003903588,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,9,2,52,0,15,1,2,-9,1,6.989257803288609,6.989257803288609,0,0,0,0,0,0,0,1,1,0,5.175371304708838,0,0,0,47.9,56.38,5,1,0,0,7,4,1,308,0,0,0 +16201,19823,36139,-9,-9,-9,1,1,0,30,2,0,0,0,1,-9,2,1,0,5,8.630768160314656,8.71402884659612,0,3,0,0,0,-9,0,-921.1783040761062,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,65,60,15,1,0,-9,0,9.8845542719825,9.8845542719825,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,6,1,0,0,2,5,1,206,0,0,0 +16202,19824,36140,36141,-9,-9,2,1,1,57,1,0,0,0,1,-9,2,1,0,3,7.529981998196618,7.506620749507672,5.451432957095714,1,0,-9,3,0,2,18.32941839397607,0,0,0,55,2,3,1,2,2,2019,1,1,9,1,60,50,15,1,1,1,0,5.33459128660489,5.33459128660489,0,0,0,0,0,0,0,0,0,0,0,5.480401060064721,0,0,57.03,48.06,6,1,0,0,7,4,1,356.5,0,0,0 +16202,19824,36141,36140,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.447219070509538,7.731171438307268,0,1,0,-9,3,0,-2,-20.09173820995871,0,0,0,57,1,3,1,2,2,2019,1,2,10,0,29,0,15,1,0,1,0,7.959673360644471,7.959673360644471,0,0,0,0,0,0,0,0,0,0,2.295013512263856,0,0,0,45.01,49.59,5,1,0,0,7,4,1,356.5,0,0,0 +16203,19825,36142,-9,-9,-9,1,1,0,49,2,1,3,0,2,-9,2,1,0,3,6.991846551612149,6.979860806515936,0,4,0,0,0,-9,0,-907.7344216564659,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,1,16,16,15,1,1,-9,0,9.101492227035626,9.101492227035626,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,4,1,0,0,2,2,0,323,0,0,0 +16203,19826,36143,-9,36145,-9,4,1,1,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1101.99353313102,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,2,1,0,500.3333333333333,0,0,0 +16203,19826,36144,-9,36145,-9,5,1,0,0,2,1,3,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-888.783654802685,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,2,1,0,500.3333333333333,0,0,0 +16203,19826,36145,-9,36142,-9,3,1,0,20,2,1,3,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-942.0645536985616,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,2,1,0,500.3333333333333,0,0,0 +16204,19827,36146,36147,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,5,0,7.801619718759182,7.781169300487852,1,0,-9,6,0,2,81.73580070216333,0,0,0,61,2,2,3,2,2,2019,4,1,21,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295506251561227,7.884195704256862,0,3,41.77,60.77,6,1,0,0,2,3,1,407.5,0,0,0 +16204,19827,36147,36146,-9,-9,1,1,0,61,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,6,0,-2,-28.43972851818449,0,0,0,63,2,5,3,3,3,2019,4,2,23,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.827634455959027,0,0,0,29.8,54.36,5,1,0,0,2,3,1,407.5,0,0,0 +16205,19828,36148,-9,-9,-9,1,1,1,52,3,0,0,0,3,-9,1,1,0,5,7.358537843656498,6.864425647009596,0,3,0,0,0,-9,0,-1115.363747306257,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,45,40,15,1,0,-9,0,3.313434837418925,3.313434837418925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,6,1,0,0,13,3,1,441,0,0,0 +16206,19829,36149,-9,-9,-9,1,1,0,38,2,0,0,0,2,-9,2,1,0,3,7.347596717990534,7.371920238598709,0,3,0,0,0,-9,0,-1030.038742525205,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,30,35,15,1,0,-9,0,5.928827596791616,5.928827596791616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.96,51.08,5,1,0,0,12,3,1,611,0,0,0 +16207,19830,36150,-9,36152,36151,4,1,0,4,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-982.6408416688075,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,4,0,0,6,1,0,187.6666666666667,0,0,0 +16207,19830,36151,36152,-9,-9,1,1,1,59,1,0,1,0,2,1,3,3,0,3,0,0,0,2,0,-9,6,0,23,0,-9,0,0,36,3,5,3,2,2,2019,4,2,16,5,0,0,15,3,5,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,4,4,1,1,6,1,0,187.6666666666667,0,0,0 +16207,19830,36152,36151,-9,-9,2,1,0,36,1,0,1,0,3,-9,6,3,0,5,0,0,0,2,0,-9,6,0,-23,0,0,0,1,59,2,3,3,3,3,2019,4,1,14,2,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,4,4,0,1,6,1,0,187.6666666666667,0,0,0 +16208,19831,36153,-9,-9,-9,1,1,0,37,3,0,2,0,2,-9,2,1,0,4,8.097146089920431,7.982737952644137,5.565182453989799,4,0,0,0,-9,0,-1001.114975375008,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,39,38,15,1,0,-9,0,8.370396185789732,8.370396185789732,0,0,0,0,0,0,0,1,1,0,5.467056382372741,0,0,0,54.2,57.49,5,1,0,0,4,3,0,776.6666666666666,0,0,0 +16208,19831,36154,-9,36153,-9,2,1,0,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1027.913413505591,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,3,0,776.6666666666666,0,0,0 +16208,19831,36155,-9,36153,-9,3,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-969.9025326645973,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,3,0,776.6666666666666,0,0,0 +16209,19832,36156,-9,-9,-9,1,1,0,60,2,0,0,0,1,-9,2,1,0,2,7.336616889252948,8.113786463322979,7.696292292594626,3,0,0,0,-9,0,-984.7263151831067,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,3,32,40,15,1,3,-9,0,5.856862392245327,5.856862392245327,0,0,0,0,0,0,0,0,0,0,6.362245850795896,7.438717107207685,0,0,43.82,40.74,5,1,0,0,9,4,1,2790,0,0,0 +16210,19833,36157,-9,36158,-9,2,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1049.046748167341,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,7,4,1,741.5,0,0,0 +16210,19833,36158,-9,-9,-9,1,1,0,37,3,0,1,0,1,-9,2,1,0,3,8.451165907129743,8.49572504965316,0,4,0,-9,0,-9,0,-983.6115931183401,-9,0,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,22,0,15,1,1,-9,0,32.129940299856,32.129940299856,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.9,57.07,6,1,0,0,7,4,1,741.5,0,0,0 +16211,19834,36159,36160,-9,-9,2,1,0,57,1,0,0,0,2,-9,2,1,0,5,8.073175403736096,8.73630882660165,0,1,0,-9,26,0,3,55.42149917040514,0,0,0,54,1,3,1,2,2,2019,1,1,8,1,25,29,15,1,1,1,0,19.98049316487555,19.98049316487555,0,0,0,0,0,0,0,1,1,0,2.444668007279142,0,0,3,54.1,59.11,6,1,0,0,10,5,1,150,0,0,0 +16211,19834,36160,36159,-9,-9,1,1,1,54,1,0,0,0,1,-9,2,1,0,3,9.124626321752771,8.689201344200553,0,1,0,-9,26,0,-3,29.91500277202213,0,0,0,57,2,5,1,3,3,2019,1,2,11,0,48,60,15,1,0,1,0,19.78086226998652,19.78086226998652,0,0,0,0,0,0,0,1,1,0,3.16753381253069,0,0,0,53.08,52.64,5,1,0,0,10,5,1,150,0,0,0 +16211,19835,36161,-9,36159,36160,4,1,0,21,2,0,0,1,2,0,7,2,0,4,5.946631485147645,6.962674705616617,6.191738016007437,3,0,0,0,-9,0,-996.1795902104831,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,8,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.381811484067641,0,0,0,46,58,5,1,0,0,10,2,1,2861,0,0,0 +16211,19836,36162,-9,36159,36160,5,1,0,18,2,0,0,1,2,0,7,2,0,4,6.760696582066785,6.273500718421676,0,3,0,0,0,-9,0,-1025.520157620686,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,13,2,12,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,1.124828582831437,0,0,0,47.55,43.97,6,1,0,0,10,2,1,764,0,0,0 +16212,19837,36163,36164,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,4,0,7.438478945401124,7.436774768681975,1,0,-9,9,0,-1,-47.40626659951086,0,0,0,71,2,4,3,2,2,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.384988053585051,7.256487300957247,0,0,51.77,58.57,6,1,0,0,7,4,1,962,0,0,0 +16212,19837,36164,36163,-9,-9,1,1,1,71,1,0,0,0,2,-9,4,3,0,4,0,8.034661445873983,8.348004311552248,1,0,-9,9,0,1,-58.32186699182495,0,0,0,70,1,4,3,3,3,2019,4,2,5,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.735650548908207,8.734682780222807,0,0,57.16,56.15,7,1,0,0,7,4,1,962,0,0,0 +16213,19838,36165,36166,-9,-9,1,1,1,40,1,0,2,0,1,-9,2,1,0,3,8.820331755628011,8.736307032624071,0,2,0,-9,7,0,-4,-124.8065350505014,0,0,0,44,1,4,3,2,2,2019,2,2,11,2,48,45,15,1,2,3,0,21.06395732374992,21.06395732374992,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.14,53.97,6,1,0,0,4,4,1,356.75,0,0,0 +16213,19838,36166,36165,-9,-9,2,1,0,44,1,0,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,7,0,4,-23.16327858374619,0,0,1,40,1,3,1,-9,-9,2019,3,1,8,0,0,10,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,4,1,356.75,0,0,0 +16213,19838,36167,-9,36166,36165,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.1636184786888,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,356.75,0,0,0 +16213,19838,36168,-9,36166,36165,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.982113253212,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,356.75,0,0,0 +16214,19839,36169,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,1,1,0,4,7.61693799683824,7.745732662829774,0,1,0,-9,5,0,-6,60.97185962799352,0,1,1,-9,-9,-9,-9,-9,-9,2019,1,2,17,6,24,24,15,1,6,-9,0,9.712918797596975,9.712918797596975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,60.95,6,1,0,0,12,4,0,1496,0,0,0 +16214,19840,36170,-9,-9,-9,2,1,0,32,2,0,0,0,1,-9,2,1,0,4,8.558987560660492,7.993511849756523,0,1,0,-9,5,0,6,43.82027534131443,0,0,1,-9,-9,-9,-9,-9,-9,2019,1,1,10,0,50,40,15,1,0,-9,0,9.268085148928177,9.268085148928177,0,0,0,0,0,0,0,0,0,0,3.304250427508622,0,0,0,57.46,47.78,6,1,0,0,12,4,0,1596,0,0,0 +16215,19841,36171,-9,36172,36173,3,1,0,17,2,0,3,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1005.585369208229,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.43,50.71,6,4,0,0,8,4,1,653.2,0,0,0 +16215,19841,36172,36173,-9,-9,2,1,0,49,1,0,3,0,1,-9,2,1,0,4,8.837551830527438,8.801465244997953,0,2,0,-9,18,0,-1,-13.09390373321211,0,0,0,50,1,5,1,-9,-9,2019,1,1,7,0,41,37,15,1,0,1,0,15.65743634822058,15.65743634822058,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.16,55.59,6,4,0,1,8,4,1,653.2,0,0,0 +16215,19841,36173,36172,-9,-9,1,1,1,50,1,0,3,0,1,-9,2,1,0,5,8.7337418665099,8.742772132601159,0,2,0,-9,18,0,1,26.24729644553415,0,0,0,49,1,4,1,-9,-9,2019,1,2,5,0,49,56,15,1,0,1,0,17.63592781246622,17.63592781246622,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,6,4,0,1,8,4,1,653.2,0,0,0 +16215,19841,36174,-9,36172,36173,5,1,0,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1022.831910004369,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,4,1,653.2,0,0,0 +16215,19841,36175,-9,36172,36173,4,1,0,17,2,0,3,1,2,0,7,2,0,3,0,0,0,2,0,0,0,-9,0,-943.1980564565695,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.58,47.97,6,4,0,0,8,4,1,653.2,0,0,0 +16216,19842,36176,-9,-9,-9,1,1,1,46,3,0,0,0,2,-9,2,1,0,4,8.522952327091463,8.30909807980345,0,3,0,0,0,-9,0,-1072.289492735383,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,37,38,15,1,0,-9,0,14.43500201734118,14.43500201734118,0,0,0,0,0,0,0,1,1,0,1.626998910966036,0,0,0,57.16,56.15,6,4,0,0,5,5,1,407,0,0,0 +16217,19843,36177,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,5,7.967289680407756,8.028183842684184,6.029513074721052,4,0,0,0,-9,0,-1231.374967492729,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,37,37,15,1,0,-9,0,9.041947828260398,9.041947828260398,0,0,0,0,0,0,0,1,1,0,6.170158180019342,0,7.231912157036413,3,51.73,58.82,5,1,0,0,10,3,1,2213,0,0,0 +16217,19844,36178,-9,36177,-9,2,1,1,18,2,0,1,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-960.0611072972164,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.2970385575211081,0,0,3,39.03,60.86,7,1,0,0,10,3,1,306,0,0,0 +16218,19845,36179,-9,-9,-9,1,1,0,24,2,0,0,0,2,-9,2,1,0,4,8.055184648691119,8.323591048649661,0,3,0,0,0,-9,0,-1011.052870534449,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,15,3,48,53,15,1,3,-9,0,9.049747780883195,9.049747780883195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.4,51.97,5,1,0,0,10,4,0,537,0,0,0 +16219,19846,36180,36181,-9,-9,1,1,1,69,1,0,0,0,1,-9,4,3,0,4,0,8.94664161482754,8.833776264323227,1,0,-9,7,0,8,-156.0815533372595,0,0,0,61,1,5,3,2,1,2019,4,2,17,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.997615243226199,8.929717589156247,0,0,55.9,31.06,6,1,0,0,13,5,1,1280,0,0,0 +16219,19846,36181,36180,-9,-9,2,1,0,61,1,0,0,0,1,-9,4,3,0,5,0,8.194091287333007,8.188861689350077,1,0,-9,7,0,-8,-121.5209751601079,0,0,0,69,1,4,3,2,1,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.773567908646546,8.116922954020456,0,0,57.06,57.76,7,1,0,0,13,5,1,1280,0,0,0 +16220,19847,36182,-9,-9,-9,1,1,0,24,2,0,0,0,1,1,2,1,0,4,8.01286827883637,8.104699212175614,0,3,0,0,0,-9,0,-1004.298289069941,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,48,0,15,1,1,-9,0,9.222034579332599,9.222034579332599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,5,1,0,0,10,4,0,667,0,0,0 +16221,19848,36183,36184,-9,-9,2,1,1,81,1,0,0,0,2,-9,4,3,0,4,0,7.820231252975555,8.227799951552042,1,0,-9,58,0,2,-97.53183718205591,0,0,0,79,1,4,3,3,2,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,8.636971126108785,8.085274585302017,0,0,56.53,45.45,7,1,0,0,12,4,1,2317.5,0,0,0 +16221,19848,36184,36183,-9,-9,1,1,0,79,1,0,0,0,1,-9,4,3,0,4,0,7.367011774288555,7.316889981429901,1,0,-9,58,0,-2,-54.47805602002585,0,0,0,81,2,4,3,2,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.091030713706608,7.019740954357726,0,0,56.11,47.07,6,1,0,0,12,4,1,2317.5,0,0,0 +16222,19849,36185,-9,-9,-9,1,1,1,25,2,0,0,0,2,-9,7,2,0,5,8.388259058051418,8.483163608258911,0,3,0,-9,0,0,0,-1148.790143174652,1,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,6,0,0,37,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.032716929320662,0,0,0,57.06,57.76,1,1,0,0,12,4,1,210,0,0,0 +16223,19850,36186,-9,-9,-9,1,1,0,53,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,-9,0,-9,0,-1042.846746075119,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,5,3,0,0,5,1,0,1284,0,0,0 +16224,19851,36187,36189,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,3,9.113928137188271,8.853731622641376,0,2,0,-9,7,0,1,34.15347371130053,0,0,0,45,2,3,1,-9,-9,2019,1,1,13,3,37,42,15,1,3,1,0,26.65253498457729,26.65253498457729,0,0,0,0,0,0,0,1,1,0,0,0,1.774534802478365,3,45.32,53.65,5,1,0,0,4,4,1,510.5,0,0,0 +16224,19851,36188,-9,36189,36187,4,1,0,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.169950927448,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,4,4,1,510.5,0,0,0 +16224,19851,36189,36187,-9,-9,1,1,0,45,1,0,2,0,2,-9,1,1,0,3,5.238112337525052,5.165680687940919,0,2,0,-9,24,0,-1,-32.38914728129907,0,0,0,46,1,3,1,2,2,2019,1,2,12,3,5,10,15,1,3,1,0,4.301576447715973,4.301576447715973,0,0,0,0,0,0,0,1,1,0,0,0,72.73712950363297,3,53.08,47.11,6,1,0,0,4,4,1,510.5,0,0,0 +16224,19851,36190,-9,36189,36187,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-900.3673482096913,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,4,4,1,510.5,0,0,0 +16224,19852,36191,-9,36189,36187,5,1,1,19,2,0,2,0,2,-9,3,3,0,4,0,0,0,3,0,-9,0,0,0,-899.4521167455224,0,1,0,-9,-9,-9,-9,2,1,2019,-9,0,27,9,0,40,15,3,9,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29613811742436,3,7.3,71.22,1,1,1,0,4,1,1,409,0,0,0 +16225,19853,36192,36194,-9,-9,2,1,0,25,1,1,1,0,2,-9,1,1,0,4,7.344450213666707,7.448003997632865,0,2,0,-9,4,0,-3,-36.69644382540517,0,1,1,28,2,4,1,-9,-9,2019,1,1,10,0,12,20,15,1,0,1,0,12.59300596276657,12.59300596276657,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.72,55.84,7,1,0,0,9,2,0,495.6666666666667,0,0,0 +16225,19853,36193,-9,36192,36194,3,1,0,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1013.579634205953,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,9,2,0,495.6666666666667,0,0,0 +16225,19853,36194,36192,-9,-9,1,1,1,28,1,1,1,0,2,-9,1,1,0,4,5.355268370242138,5.344770945762993,0,2,0,-9,4,0,3,21.21427128676382,0,1,0,25,2,4,1,2,2,2019,1,2,16,5,40,35,15,1,5,1,0,.8989391029855301,.8989391029855301,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.03,51.4,6,1,0,0,9,2,0,495.6666666666667,0,0,0 +16226,19854,36195,36196,-9,-9,1,1,1,38,1,0,0,0,1,-9,2,1,0,3,8.812632380770518,8.754088058326213,0,1,0,-9,7,0,-8,-113.1877377756324,0,0,0,46,2,3,1,2,2,2019,1,2,11,0,40,40,15,1,0,1,0,19.70580960732993,19.70580960732993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,46.89,6,1,0,0,11,5,1,851.5,0,0,0 +16226,19854,36196,36195,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,3,8.377793275286734,8.586828728272051,0,1,0,-9,7,0,8,39.19847259908813,0,0,0,38,1,3,1,-9,-9,2019,1,1,12,2,40,37,15,1,2,1,0,10.883212003082,10.883212003082,0,0,0,0,0,0,0,0,0,0,8.259556406960982,0,0,0,48.14,53.42,6,1,0,0,11,5,1,851.5,0,0,0 +16227,19855,36197,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,6.923918237810422,7.009121666742509,3,0,0,0,-9,0,-1100.255046670747,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.141310281029052,6.707912222982195,2.556677793316662,3,48.99,54.36,6,1,0,0,9,2,0,653,0,0,0 +16228,19856,36198,-9,-9,-9,1,1,1,88,2,0,0,0,2,-9,4,3,0,3,0,7.264330262650578,7.051491540298493,3,0,0,0,-9,0,-957.4191578984818,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,3.582116956610189,0,0,0,0,1,1,0,4.550477546610313,7.397257622490468,0,0,54,45,6,1,0,0,9,2,1,866,0,0,0 +16229,19857,36199,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,3,7.676013112125099,7.313789388999817,0,3,0,0,0,-9,0,-828.7540786251161,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,14,2,38,34,15,1,2,-9,0,5.941891653549775,5.941891653549775,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.13,53.21,3,1,0,1,1,3,1,904,0,0,0 +16230,19858,36200,-9,36202,36201,4,1,0,0,2,1,0,1,3,-9,-9,2,0,4,0,0,0,1,0,-9,0,-9,0,-1019.140941950303,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,5,0,0,9,5,1,406,0,0,0 +16230,19858,36201,36202,-9,-9,2,1,1,50,1,1,0,0,2,-9,2,1,0,5,9.006206412706305,8.674335610925734,0,1,0,-9,9,0,-2,53.56569911150991,0,0,0,52,2,4,1,2,3,2019,1,1,11,0,57,53,15,1,0,1,0,16.23414117867542,16.23414117867542,0,0,0,0,0,0,0,1,1,0,7.536847478541684,0,0,0,41.6,60.78,6,1,0,0,9,5,1,406,0,0,0 +16230,19858,36202,36201,-9,-9,1,1,0,52,1,1,0,0,2,-9,1,1,0,4,6.214991642478137,6.427426234269935,0,1,0,-9,9,0,2,-24.7322890287488,0,0,0,50,2,5,1,2,-9,2019,1,2,7,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,9,5,1,406,0,0,0 +16231,19859,36203,-9,36206,36204,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.5432970662266,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,8,5,1,679.25,0,0,0 +16231,19859,36204,36206,-9,-9,2,1,1,41,1,0,2,0,1,-9,2,1,0,4,8.909020388652042,8.802477377833265,0,2,0,-9,16,0,0,80.68275289935998,0,0,0,41,1,2,1,3,1,2019,1,1,7,0,39,35,15,1,0,1,0,21.23892795920811,21.23892795920811,0,0,0,0,0,0,0,1,1,0,0,0,4.147851380880397,3,60.85,44.82,6,3,0,0,8,5,1,679.25,0,0,0 +16231,19859,36205,-9,36206,36204,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-890.5082660288882,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,8,5,1,679.25,0,0,0 +16231,19859,36206,36204,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,2,8.886940490504129,9.185385740695894,0,2,0,-9,16,0,0,147.1199275715618,0,0,1,41,1,4,1,2,2,2019,1,2,32,12,35,35,15,1,12,1,0,18.40877036876262,18.40877036876262,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.01,49.03,2,3,0,0,8,5,1,679.25,0,0,0 +16232,19860,36207,36208,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.66174924044657,8.628838139952625,0,1,0,-9,8,0,12,-94.46480808046725,0,0,0,40,1,4,1,2,2,2019,1,1,9,0,38,38,15,1,0,1,0,17.06406646264527,17.06406646264527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,12,5,1,3009.5,0,0,0 +16232,19860,36208,36207,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,4,8.700935781341631,8.780436740922442,0,1,0,-9,8,0,-12,-44.64526159154891,0,0,1,52,2,4,1,2,2,2019,1,2,1,0,38,37,15,1,0,1,0,21.93308337638572,21.93308337638572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.02,57.3,6,1,0,0,12,5,1,3009.5,0,0,0 +16233,19861,36209,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,2,7.04732045271216,7.043559715702099,5.939201880075165,3,0,0,0,-9,0,-875.4857029651857,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,16,0,15,1,0,-9,0,9.495709474653346,9.495709474653346,0,0,0,0,0,0,0,1,1,0,0,6.243344584559955,0,3,52.89,19.18,4,1,0,0,5,3,0,633,0,0,0 +16234,19862,36210,-9,-9,-9,1,1,0,48,3,0,0,0,3,-9,1,1,0,3,7.392750420852077,7.117439532815116,0,3,0,0,0,-9,0,-1064.298907999214,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,8,20,15,1,0,-9,0,21.38839299163634,21.38839299163634,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,4,1,0,1,9,3,0,519,0,0,0 +16234,19863,36211,-9,36210,-9,2,1,1,20,2,0,0,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1026.949681671271,1,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,.3959683649892875,0,0,0,48.96,46.59,1,1,0,1,9,1,0,172,0,0,0 +16235,19864,36212,36213,-9,-9,1,1,0,26,1,0,0,0,1,-9,7,2,0,3,6.586544743084954,6.55444315735858,0,1,0,-9,5,0,-1,-70.84929021306925,1,1,1,27,1,4,1,-9,-9,2019,3,2,12,0,24,8,15,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.78,50.87,5,1,0,0,5,4,1,555.5,0,0,0 +16235,19864,36213,36212,-9,-9,2,1,1,27,1,0,0,0,1,-9,2,1,0,4,8.583598428520066,8.640349186179952,0,1,0,-9,5,0,1,79.10309159230508,0,1,0,26,1,3,2,-9,-9,2019,2,1,9,1,50,80,15,1,1,2,0,10.21341690594801,10.21341690594801,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,6,1,0,0,5,4,1,555.5,0,0,0 +16236,19865,36214,36215,-9,-9,2,1,0,72,1,0,0,0,3,-9,2,1,0,3,7.528260851607613,7.223555220226666,0,1,0,-9,54,0,-1,1.310499146347077,0,0,0,73,2,3,3,2,3,2019,2,1,11,0,21,27,15,1,0,4,0,8.218836452989201,8.218836452989201,0,0,0,0,0,0,0,1,1,0,2.073199735649538,0,0,0,43.37,57.28,6,1,0,0,9,3,1,725,0,0,0 +16236,19865,36215,36214,-9,-9,1,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,6.244285965755536,6.252701200503209,1,0,-9,54,0,1,20.33450814194493,0,0,0,72,3,3,1,2,2,2019,3,2,9,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.216680390180754,5.906827030820407,0,0,30.49,56.93,5,1,0,0,9,3,1,725,0,0,0 +16237,19866,36216,36217,-9,-9,1,1,0,55,1,0,0,0,1,-9,6,3,0,5,0,0,0,1,0,-9,29,0,0,-56.93063612411305,0,0,0,64,1,3,1,1,1,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.68,54.24,6,1,0,0,10,5,1,310.5,0,0,0 +16237,19866,36217,36216,-9,-9,2,1,1,64,1,0,0,0,1,-9,2,1,0,3,9.737720047122108,9.701486268777799,6.617864018585371,1,0,-9,27,0,9,55.67721932744575,0,0,0,55,1,5,3,2,2,2019,2,1,6,0,49,52,15,1,0,3,0,32.64669436017811,32.64669436017811,0,0,0,0,0,0,0,0,0,0,4.18297000471153,7.124500071420517,0,0,54.37,54.8,6,1,0,0,10,5,1,310.5,0,0,0 +16237,19867,36218,-9,36216,36217,3,1,1,20,2,0,0,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1042.587492763971,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,5,1,1,0,10,1,1,224,0,0,0 +16238,19868,36219,-9,-9,-9,1,1,1,89,3,0,0,0,2,-9,4,3,0,5,0,7.150386957663406,7.25880488952609,3,0,-9,0,1,0,-946.13304289339,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.017092750421073,0,0,46.4,59.87,7,1,0,0,1,2,0,654,0,0,0 +16239,19869,36220,-9,-9,-9,1,1,0,65,2,0,0,0,1,-9,4,3,0,4,0,8.345458859046913,8.011476149796549,3,0,0,0,-9,0,-893.5094265633959,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.040559788447395,7.664241740371494,.8325091259862427,3,42.52,52.2,6,1,0,0,13,4,1,242,0,0,0 +16240,19870,36221,36222,-9,-9,2,1,0,73,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,9,0,0,117.5596479284035,0,0,0,73,3,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,39.21,6,1,0,0,13,4,1,1979.5,0,0,0 +16240,19870,36222,36221,-9,-9,1,1,1,73,1,0,0,0,3,-9,4,3,0,2,0,8.2669819480111,8.497599723406667,1,0,-9,9,0,0,39.88959707985769,0,0,0,73,3,2,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.312053281034219,0,0,52.33,34.34,6,1,0,0,13,4,1,1979.5,0,0,0 +16241,19871,36223,-9,36225,36224,4,1,0,17,2,0,2,1,2,0,7,2,0,4,4.586597985294663,4.991000739781621,0,2,0,0,0,-9,0,-966.2820661606314,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,0,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.24,62.14,6,3,0,0,5,4,1,1078.5,0,0,0 +16241,19871,36224,36225,-9,-9,2,1,1,44,1,0,2,0,2,-9,2,1,0,4,8.501487973709526,8.452415064134019,0,2,0,-9,7,0,0,50.56933803031592,0,0,0,44,2,4,1,2,-9,2019,1,1,6,0,40,40,15,1,0,1,0,18.08821454493185,18.08821454493185,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,4,1,1078.5,0,0,0 +16241,19871,36225,36224,-9,-9,1,1,0,44,1,0,2,0,2,-9,2,1,0,4,7.533937999859909,7.494377167757704,0,2,0,-9,7,0,0,41.89183858265448,0,0,1,44,2,4,1,2,2,2019,1,2,7,0,38,0,15,1,0,1,0,7.1316713474086,7.1316713474086,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,5,4,1,1078.5,0,0,0 +16241,19871,36226,-9,36225,36224,5,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-972.1708857912157,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,5,4,1,1078.5,0,0,0 +16241,19872,36227,-9,36225,36224,3,1,0,19,2,0,2,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1034.859263100258,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,5,1,1,1341,0,0,0 +16242,19873,36228,36229,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,4,8.831830495208928,8.380717843904527,5.591705716571631,1,0,-9,6,0,-5,18.87717097493378,0,0,0,65,3,2,3,3,3,2019,2,1,7,0,40,40,15,1,0,4,0,15.6278496247731,15.6278496247731,0,0,0,0,0,0,0,1,1,0,6.018237848490316,5.866945388335999,0,0,57.16,56.15,6,1,0,0,1,4,1,536.5,0,0,0 +16242,19873,36229,36228,-9,-9,1,1,0,65,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,39,0,5,27.79253746196121,0,0,0,60,2,4,1,3,3,2019,3,2,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.390319714862989,0,0,0,65.62,32.29,6,1,0,0,1,4,1,536.5,0,0,0 +16243,19874,36230,-9,36232,36231,3,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1007.821830991478,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,454.5,0,0,0 +16243,19874,36231,36232,-9,-9,2,1,1,34,1,0,2,0,2,-9,2,1,0,5,8.796383580987033,9.062377082762566,0,2,0,-9,1,-9,4,20.10714640024274,-9,0,0,30,3,4,1,-9,-9,2019,1,1,6,0,49,0,15,1,0,1,0,15.04430254826776,15.04430254826776,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.3,57.2,7,1,0,0,9,5,1,454.5,0,0,0 +16243,19874,36232,36231,-9,-9,1,1,0,30,1,0,2,0,3,-9,2,1,0,4,8.521159368089627,8.315394476738438,0,2,0,-9,1,-9,-4,36.51039678016836,-9,0,1,34,2,5,1,2,2,2019,1,2,12,1,37,0,15,1,1,1,0,15.50323320967216,15.50323320967216,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,9,5,1,454.5,0,0,0 +16243,19874,36233,-9,36232,36231,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1148.981469875425,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,5,1,454.5,0,0,0 +16244,19875,36234,-9,36236,-9,2,1,0,18,2,0,0,0,2,-9,2,1,0,3,6.426657008735308,6.479792312521057,0,3,0,0,0,-9,0,-1042.115035307972,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,16,0,15,1,0,-9,1,4.050420208100232,4.050420208100232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.5,54.11,4,1,0,0,7,2,0,956,0,0,0 +16244,19876,36235,36236,-9,-9,3,1,1,56,1,0,0,0,3,-9,2,1,0,2,8.024319916649629,8.499497264359526,0,1,0,-9,2,0,5,112.3888666623477,-9,0,0,51,2,3,1,-9,-9,2019,1,1,14,3,30,0,15,1,3,1,0,12.16283342043326,12.16283342043326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.79,54.57,5,1,0,0,7,4,0,655,0,0,0 +16244,19876,36236,36235,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.119687863251684,7.290895579190594,0,1,0,-9,2,0,-5,-56.12867125163378,0,0,0,56,3,2,1,-9,-9,2019,1,3,12,1,24,22,15,1,1,1,0,6.345386957283773,6.345386957283773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.1,52.08,4,1,0,0,7,4,0,655,0,0,0 +16245,19877,36237,-9,-9,-9,1,1,0,21,2,1,2,0,2,-9,5,1,0,3,5.91481667005484,5.864084329077994,0,4,0,0,0,-9,0,-971.5945134213065,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,8,0,15,1,3,-9,0,4.694218027834122,4.694218027834122,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.92,53.03,5,1,0,0,13,2,0,475.3333333333333,0,0,0 +16245,19877,36238,-9,36237,-9,2,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1041.053657725519,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,13,2,0,475.3333333333333,0,0,0 +16245,19877,36239,-9,36237,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-946.7589487534668,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,5,1,0,0,13,2,0,475.3333333333333,0,0,0 +16246,19878,36240,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,4,5.843252912505259,7.074996852992317,6.611718327214987,3,0,0,0,-9,0,-1182.171543465143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.562679180192242,6.721013066436767,0,0,55.3,55.6,7,1,0,0,12,3,1,498,0,0,0 +16247,19879,36241,36242,-9,-9,2,1,1,75,1,0,0,0,1,-9,4,3,0,4,0,7.190149291523539,6.931780195198805,1,0,-9,54,0,1,-60.84399097871047,0,0,0,74,2,3,3,3,3,2019,4,1,17,7,0,0,15,4,7,4,0,0,0,0,0,0,0,0,0,0,1,1,0,.2594786345417948,7.101950022563905,0,0,40.47,55.65,5,1,0,0,4,2,1,377.5,0,0,0 +16247,19879,36242,36241,-9,-9,1,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,54,0,-1,53.02901399906642,0,0,0,75,1,4,3,3,-9,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.285717259671496,0,0,0,60.95,32.97,6,1,0,0,4,2,1,377.5,0,0,0 +16248,19880,36243,36244,-9,-9,1,1,1,58,1,0,0,0,2,-9,4,3,0,3,0,7.117236141053717,7.255940427959819,1,0,-9,34,0,0,2.005358015638605,0,0,0,58,2,4,1,3,-9,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.297712105854944,7.208874624891171,0,0,55.96,49.93,7,1,0,0,6,3,1,845,0,0,0 +16248,19880,36244,36243,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.935099622546828,7.856124533907873,0,1,0,-9,7,0,0,-43.4562247978036,0,0,0,58,2,3,3,-9,-9,2019,2,1,8,0,20,19,15,1,0,4,0,12.67687524653177,12.67687524653177,0,0,0,0,0,0,0,0,0,0,.930872416253239,0,0,0,57.16,56.15,6,1,0,0,6,3,1,845,0,0,0 +16249,19881,36245,-9,-9,-9,1,1,0,47,3,0,1,0,2,-9,2,1,0,3,7.276061944772971,7.585516149182023,0,4,0,0,0,-9,0,-892.6932728724415,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,21,9,18,19,15,1,9,-9,0,14.00262315583671,14.00262315583671,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,45.77,5,1,0,0,9,2,1,1656,0,0,0 +16249,19882,36246,-9,36245,-9,2,1,0,20,2,0,1,0,2,-9,2,1,0,3,7.493638045139831,7.385984217027544,0,3,0,0,0,-9,0,-1015.563603672168,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,7,0,37,38,15,1,0,-9,1,5.270210417215215,5.270210417215215,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,58.53,6,1,0,0,9,3,1,1823,0,0,0 +16249,19883,36247,-9,36245,-9,3,1,1,18,2,0,1,0,2,1,3,3,0,5,5.403365066873558,5.634758095580982,4.08504090893646,3,0,0,0,-9,0,-1089.814151312128,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,5,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,4.69114610009739,0,0,0,62.39,56.71,7,1,1,1,9,3,1,441,0,0,0 +16250,19884,36248,-9,-9,-9,1,1,1,23,2,0,0,1,1,-9,7,2,0,5,7.170386634464813,6.989510448183828,0,3,0,-9,0,-9,0,-977.9918652327253,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,11,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,7,1,0,0,12,2,0,559,0,0,0 +16251,19885,36249,-9,-9,-9,1,1,0,37,2,0,2,0,1,-9,2,1,0,5,8.201648023224994,8.871207895155642,6.535281259408668,4,0,0,0,-9,0,-889.3440652339166,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,43,15,1,0,-9,0,17.1817955861459,17.1817955861459,0,0,0,0,0,0,0,1,1,0,6.14568406590322,0,0,0,58.2,54.53,6,1,0,0,10,4,0,577.3333333333334,0,0,0 +16251,19885,36250,-9,36249,-9,3,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1033.37664364496,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,4,0,577.3333333333334,0,0,0 +16251,19885,36251,-9,36249,-9,2,1,1,12,2,0,2,1,3,-9,-9,2,0,5,0,0,0,4,0,0,0,-9,0,-923.5881337568075,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,5,1,0,0,10,4,0,577.3333333333334,0,0,0 +16252,19886,36252,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,2,8.76371057134379,8.421196105627827,0,3,0,-9,0,-9,0,-839.7388885150517,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,24,11,48,0,15,1,11,-9,0,13.81034914512039,13.81034914512039,0,0,0,0,0,0,0,0,0,0,4.275016173305221,0,0,0,24.67,54.18,2,1,0,0,7,5,1,507,0,0,0 +16253,19887,36253,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,3,0,6.599285911663134,6.811669953742898,3,0,0,0,-9,0,-1091.299041009546,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.916552843411676,6.663080706192384,0,0,51,46,5,1,0,0,4,2,1,237,0,0,0 +16254,19888,36254,-9,-9,-9,1,1,1,51,2,0,0,0,2,-9,2,1,0,1,8.328051087024512,8.15085185905496,0,3,0,0,0,-9,0,-935.7437134215496,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,27,12,40,40,15,1,12,-9,0,8.753354064039788,8.753354064039788,0,0,0,0,0,0,0,0,0,0,0,0,0,3,29.93,23.01,1,1,0,1,5,4,1,271,0,0,0 +16255,19889,36255,-9,36258,36257,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-959.6511520092089,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,4,2,1,661.75,0,0,0 +16255,19889,36256,-9,36258,36257,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-933.1618251055397,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,4,2,1,661.75,0,0,0 +16255,19889,36257,36258,-9,-9,1,1,1,30,1,1,2,0,2,-9,2,1,0,4,8.004476475978393,7.432390181166124,0,2,0,-9,1,-9,2,-9.618539255229294,-9,0,0,28,1,4,3,-9,-9,2019,2,2,10,0,38,0,15,1,1,3,0,7.308715485671437,7.308715485671437,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,3,0,0,4,2,1,661.75,0,0,0 +16255,19889,36258,36257,-9,-9,2,1,0,28,1,1,2,0,1,-9,6,3,0,4,0,0,0,2,0,-9,4,-9,-2,51.84320455981389,-9,1,1,30,2,4,1,2,2,2019,3,1,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.85,67.03,3,3,0,0,4,2,1,661.75,0,0,0 +16256,19890,36259,-9,-9,-9,1,1,1,82,3,0,0,0,3,-9,4,3,0,4,0,7.799334012647706,8.189768469354744,3,0,0,0,-9,0,-1015.676080543705,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,8.424212283535093,8.111682697164836,0,0,43.8,52.8,6,1,0,0,1,4,1,369,0,0,0 +16257,19891,36260,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,5.983922041130512,5.952146299747631,3,0,0,0,-9,0,-977.1882383701931,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.269465219333326,6.038384805650402,0,0,46.73,43.6,6,1,0,0,9,2,1,847,0,0,0 +16258,19892,36261,36262,-9,-9,1,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,7.501401752614567,7.907782614558848,1,0,-9,34,0,-2,28.35793922378253,0,0,0,71,3,2,3,2,3,2019,4,2,30,11,0,0,15,4,11,4,0,0,0,1,0,0,0,0,0,0,1,1,0,7.451735307854157,8.04981790555286,0,0,36.04,22.78,3,1,0,0,4,3,1,342,0,0,0 +16258,19892,36262,36261,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,34,0,2,-5.749866750434318,0,0,0,69,3,1,3,2,2,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.265145678381793,0,0,0,41.34,40.68,6,1,0,0,4,3,1,342,0,0,0 +16259,19893,36263,-9,-9,-9,1,1,1,43,2,0,0,0,1,-9,1,1,0,2,8.077868406775677,8.621077026179981,0,3,0,0,0,-9,0,-1020.834542833872,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,20,20,15,1,7,-9,0,21.88552807260409,21.88552807260409,0,0,0,0,0,0,0,0,0,0,7.962973940740026,0,0,0,35.43,42.24,6,3,0,0,7,4,1,755,0,0,0 +16260,19894,36264,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,2,8.465769724559125,8.606433088569018,0,3,0,0,0,-9,0,-1013.783922407751,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,20,8,30,30,15,1,8,-9,0,18.50696690964815,18.50696690964815,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.69,33.25,3,1,0,0,9,4,1,422,0,0,0 +16261,19895,36265,36266,-9,-9,2,1,0,32,1,0,0,0,3,-9,3,3,0,3,0,0,0,1,0,-9,2,0,3,-27.81757882026469,0,0,1,29,1,4,1,-9,-9,2019,3,1,1,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.43397834396811,0,0,0,57.92,51.82,6,3,1,0,6,4,0,633.5,0,0,0 +16261,19895,36266,36265,-9,-9,1,1,1,29,1,0,0,0,1,-9,2,1,0,4,8.648026903463521,8.680178016384577,0,1,0,-9,2,0,-3,90.73804582322087,0,1,0,32,3,3,3,3,2,2019,2,2,4,0,0,0,15,1,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1569485916425,0,0,0,46.06,57.72,7,3,0,1,6,4,0,633.5,0,0,0 +16262,19896,36267,-9,36270,36269,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1025.016668806473,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,4,3,0,1208,0,0,0 +16262,19896,36268,-9,36270,36269,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.910104529617,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,4,3,0,1208,0,0,0 +16262,19896,36269,36270,-9,-9,2,1,1,46,1,0,2,0,2,-9,2,1,0,4,0,0,0,2,0,-9,10,0,13,36.40295519219603,0,0,0,33,2,4,1,-9,-9,2019,1,1,7,0,70,70,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,4,3,0,1208,0,0,0 +16262,19896,36270,36269,-9,-9,1,1,0,33,1,0,2,0,2,-9,2,1,0,4,8.447714578153587,8.40905830818078,0,2,0,-9,10,0,-13,72.38544328701553,0,0,1,46,2,4,1,2,2,2019,1,2,12,0,45,45,15,1,0,1,0,9.723260475718396,9.723260475718396,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,6,1,0,0,4,3,0,1208,0,0,0 +16263,19897,36271,-9,-9,-9,1,1,1,46,2,0,0,0,1,-9,2,1,0,3,9.246852999081382,9.417251451275966,0,1,0,-9,17,0,1,-7.449368876024965,0,0,0,-9,-9,-9,-9,2,2,2019,1,2,12,0,50,60,15,1,0,-9,0,22.7575459153112,22.7575459153112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,6,1,0,0,10,5,1,2682,0,0,0 +16263,19898,36272,-9,-9,-9,2,1,1,45,2,0,0,0,2,-9,2,1,0,4,8.976100920585305,9.005707813660516,0,1,0,-9,16,0,-1,6.949367197566689,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,11,2,45,45,15,1,2,-9,0,19.94596011252674,19.94596011252674,0,0,0,0,0,0,0,0,0,0,6.443381580494578,0,0,0,54.2,57.49,6,1,0,0,10,5,1,593,0,0,0 +16264,19899,36273,-9,-9,-9,1,1,1,91,3,0,0,0,2,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-1119.281342566521,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.83,36.83,2,1,0,0,1,2,1,127,0,0,0 +16265,19900,36274,36275,-9,-9,2,1,0,39,1,0,1,0,2,-9,2,1,0,4,7.883981728274181,8.054499484413951,0,2,0,-9,1,-9,-5,-42.91976607824922,-9,0,1,44,1,4,1,2,2,2019,1,1,12,0,40,0,15,1,0,1,0,7.71909336816893,7.71909336816893,0,0,0,0,0,0,0,1,1,0,6.958280480137836,0,0,0,57.16,56.15,4,1,0,0,4,5,0,613.6666666666666,0,0,0 +16265,19900,36275,36274,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,4,9.162926348991601,9.096280731564891,0,2,0,-9,1,-9,5,193.0013349202152,-9,0,0,39,2,4,1,2,2,2019,1,2,12,0,41,0,15,1,0,1,0,20.61932562894435,20.61932562894435,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,5,1,0,0,4,5,0,613.6666666666666,0,0,0 +16265,19900,36276,-9,36274,36275,4,1,0,7,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-995.8725989464441,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,5,0,613.6666666666666,0,0,0 +16265,19901,36277,-9,36274,36275,3,1,1,19,2,0,1,1,2,-9,7,2,0,4,6.546854699524208,7.37781064016543,6.526043767300711,3,0,-9,0,-9,0,-968.5976171820279,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,12,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,6.491159762752266,0,0,0,54.79,55.86,7,1,0,0,4,3,0,896,0,0,0 +16266,19902,36278,-9,-9,-9,1,1,0,76,3,0,0,0,2,-9,4,3,0,3,0,7.747436990145478,7.2742650832796,3,0,0,0,-9,0,-1012.784072415698,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,9.141285724748519,0,0,0,0,32.9941543105309,1,1,0,3.853668653010759,7.162111646625421,0,3,58.83,36.29,6,1,0,0,12,3,1,2556,0,0,0 +16267,19903,36279,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,5.956255191392522,6.23848298141529,3,0,0,0,-9,0,-890.5604198224213,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.225815713804447,0,0,50,47,6,1,0,0,6,2,0,161,0,0,0 +16268,19904,36280,36281,-9,-9,1,1,0,66,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,15,0,2,3.904395265589438,0,0,0,64,2,4,1,3,3,2019,3,2,12,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,44.91,4,1,0,0,10,5,1,1561.5,0,0,0 +16268,19904,36281,36280,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.85142847290742,9.232607465835288,7.71482553175561,1,0,-9,14,0,-2,-118.5786937937409,0,0,0,66,2,3,3,2,2,2019,2,1,7,0,38,37,15,1,0,4,0,15.92258360936658,15.92258360936658,0,0,0,0,0,0,0,1,1,0,0,8.019343845991013,0,0,51.83,57.2,6,1,0,0,10,5,1,1561.5,0,0,0 +16269,19905,36282,36283,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,4,9.085114857241626,9.118971068086925,0,1,0,-9,10,0,-3,213.5640748676206,0,0,0,55,3,3,1,2,2,2019,1,1,8,0,52,95,15,1,0,1,0,20.4404892222725,20.4404892222725,0,0,0,0,0,0,0,0,0,0,4.255702052408424,0,0,0,57.16,56.15,1,1,0,0,13,5,1,344,0,0,0 +16269,19905,36283,36282,-9,-9,1,1,1,55,1,0,0,0,3,-9,2,1,0,3,7.869752851234171,7.867823052032344,0,1,0,-9,10,0,3,-25.90966944607409,0,0,0,52,2,4,1,3,2,2019,1,2,11,0,37,37,15,1,1,1,0,7.841275091715644,7.841275091715644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,5,1,0,0,13,5,1,344,0,0,0 +16270,19906,36284,36285,-9,-9,1,1,1,65,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,10,0,4,-136.6900141598246,0,0,0,61,3,4,3,-9,-9,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,8.266230516824791,0,0,0,0,1,1,0,0,0,30.44136754496705,3,49.04,55.86,6,1,0,0,6,2,1,1563,0,0,0 +16270,19906,36285,36284,-9,-9,2,1,0,61,1,0,0,0,3,-9,4,3,0,4,0,6.275960711572504,6.032229631769177,1,0,-9,10,0,-4,-105.6553286355237,0,0,0,65,3,3,3,3,3,2019,4,1,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.328493408971928,6.17755466312722,38.96565236170137,3,49.91,58.02,6,1,0,0,6,2,1,1563,0,0,0 +16270,19907,36286,-9,36285,36284,3,1,1,27,2,0,0,0,2,-9,2,1,0,3,7.007844497215467,7.115017462289033,0,3,0,0,0,-9,0,-1082.363532763948,0,1,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,45,0,15,1,0,-9,1,2.526706258461553,2.526706258461553,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,2,1,0,0,6,2,1,1261,0,0,0 +16271,19908,36287,-9,36288,-9,2,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-889.8527753878359,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,11,3,0,220.5,0,0,0 +16271,19908,36288,-9,-9,-9,1,1,0,29,2,0,1,0,2,-9,1,1,0,4,7.835896337010427,7.687495087204556,5.644933221040627,4,0,0,0,-9,0,-1033.431634518346,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,8,0,35,37,15,1,0,-9,0,7.947000576175678,7.947000576175678,0,0,0,0,0,0,0,1,1,0,5.272565268109703,0,0,0,48.28,60.18,6,1,0,0,11,3,0,220.5,0,0,0 +16272,19909,36289,-9,-9,-9,1,1,0,55,3,0,0,0,2,-9,2,1,0,4,8.413306498444197,8.564962040008062,0,3,0,0,0,-9,0,-1021.246158169544,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,2,37,41,15,1,2,-9,0,19.29339757234368,19.29339757234368,0,0,0,0,0,0,0,0,0,0,0,0,.7762582406489031,3,54.2,57.49,6,1,0,1,1,5,1,366,0,0,0 +16273,19910,36290,-9,36291,-9,3,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-870.6554920258995,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,5,2,0,330.3333333333333,0,0,0 +16273,19910,36291,-9,-9,-9,1,1,0,42,2,1,2,0,2,-9,6,3,0,3,0,6.518977311965767,6.316151790699874,4,0,0,0,-9,0,-906.395330892699,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,12,1,0,12,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.362552155967055,0,10.82493673571222,3,41.47,58.08,4,1,0,0,5,2,0,330.3333333333333,0,0,0 +16273,19910,36292,-9,36291,-9,2,1,0,15,2,1,2,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-993.0203104520857,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,16,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,43,4,1,0,0,5,2,0,330.3333333333333,0,0,0 +16274,19911,36293,36294,-9,-9,2,1,0,85,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,65,0,-4,-59.95198849346962,0,0,0,89,1,2,3,-9,-9,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.153680720375165,0,0,0,54,44,6,1,0,0,7,3,1,848.5,0,0,0 +16274,19911,36294,36293,-9,-9,1,1,1,89,1,0,0,0,1,-9,4,3,0,2,0,8.383990354692905,8.376213511245108,1,0,-9,65,0,4,36.40116737347235,0,0,0,85,3,3,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.321760259459127,8.354650678583655,0,0,57.33,32.2,6,1,0,0,7,3,1,848.5,0,0,0 +16275,19912,36295,36297,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,4,7.299004396254573,7.614531856107087,0,2,0,-9,7,0,1,115.6264179658673,0,1,0,26,2,3,1,-9,-9,2019,1,1,10,0,28,22,15,1,1,1,0,6.652261083463102,6.652261083463102,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,1,0,0,12,3,0,262.6666666666667,0,0,0 +16275,19912,36296,-9,36297,36295,3,1,0,5,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.220833215025,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,3,0,262.6666666666667,0,0,0 +16275,19912,36297,36295,-9,-9,1,1,0,26,1,0,1,0,2,-9,2,1,0,3,7.010883740397931,6.989345739963846,0,2,0,-9,7,0,-1,-8.856648361779973,0,1,1,27,2,4,1,2,2,2019,1,2,15,2,20,16,15,1,2,1,0,6.564809781598222,6.564809781598222,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.22,53.97,3,1,0,0,12,3,0,262.6666666666667,0,0,0 +16276,19913,36298,36299,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,7.721303391937128,7.685941723440833,0,1,0,-9,7,0,-10,-50.33163532762507,0,0,0,68,3,4,1,-9,-9,2019,1,2,10,0,20,20,15,1,1,1,0,11.64978845553589,11.64978845553589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,6,1,0,0,9,4,1,1319.5,0,0,0 +16276,19913,36299,36298,-9,-9,2,1,1,68,1,0,0,0,3,-9,2,1,0,4,7.422367808968372,7.876263967757478,7.467753958486017,1,0,-9,7,0,10,8.402813449545169,0,0,0,58,2,4,1,2,3,2019,1,1,11,0,13,15,15,1,0,1,0,11.25454640440785,11.25454640440785,0,0,0,0,0,0,0,1,1,0,6.926726654784098,6.3675743462744,13.00350451908909,3,57.16,56.15,6,1,0,0,9,4,1,1319.5,0,0,0 +16277,19914,36300,-9,36301,36302,5,1,0,16,2,0,3,0,2,-9,3,2,0,2,0,0,0,2,0,0,0,-9,0,-907.7101984872721,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,9,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.077569834687061,0,0,0,38,44,5,3,1,0,2,2,1,800,0,0,0 +16277,19914,36301,36302,-9,-9,2,1,0,57,1,0,3,0,3,-9,3,3,0,3,0,0,0,2,0,-9,8,0,-4,-12.54722108206281,0,0,0,61,3,3,1,3,2,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,3,1,0,2,2,1,800,0,0,0 +16277,19914,36302,36301,-9,-9,1,1,1,61,1,0,3,0,3,-9,1,1,0,3,7.006116913490225,7.40253005105667,0,2,0,-9,8,0,4,-23.30867780546157,-9,0,0,57,3,3,3,3,2,2019,2,2,10,0,40,0,15,1,1,3,0,5.273338069260695,5.273338069260695,0,0,0,0,0,0,0,1,1,0,2.574935906007067,0,0,0,51,48,5,3,0,0,2,2,1,800,0,0,0 +16277,19915,36303,36305,-9,-9,4,1,0,27,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,10,0,-3,13.05193284271759,0,1,1,30,2,5,1,3,2,2019,3,3,17,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.997105401474499,0,0,0,52.39,37.22,2,3,0,0,2,2,1,1086.75,0,0,0 +16277,19915,36304,-9,36303,36305,7,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.820906719963,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,2,2,1,1086.75,0,0,0 +16277,19915,36305,36303,36301,36302,3,1,1,30,1,0,3,0,2,-9,1,1,0,5,7.345863561711248,7.124005174585079,0,2,0,-9,10,0,3,150.3800810081289,0,0,0,27,2,5,3,3,3,2019,2,4,6,0,45,35,15,1,0,3,0,4.179295271604162,4.179295271604162,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.92,58.05,7,3,0,0,2,2,1,1086.75,0,0,0 +16277,19915,36306,-9,36303,36305,6,1,0,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.992764326925,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,2,2,1,1086.75,0,0,0 +16278,19916,36307,-9,-9,-9,1,1,1,92,3,0,0,0,3,-9,4,3,0,4,0,5.629562668896648,5.50572056117536,3,0,0,0,-9,0,-1159.403291248092,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.483989625749479,5.472022850105583,0,0,60.12,54.8,7,1,0,0,6,2,1,973,0,0,0 +16279,19917,36308,-9,-9,-9,1,1,0,32,3,0,2,0,2,-9,2,1,0,4,7.559874662364632,8.089895101744009,7.129343209175887,4,0,0,0,-9,0,-916.9627772991792,0,0,1,-9,-9,-9,-9,-9,3,2019,-9,0,16,5,30,30,15,1,5,-9,0,7.793814671882067,7.793814671882067,0,0,0,0,0,0,0,1,1,0,6.995424388504921,0,0,0,43.81,52.59,6,1,0,0,12,3,0,420,0,0,0 +16279,19917,36309,-9,36308,-9,2,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-954.369943535543,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,5,1,0,0,12,3,0,420,0,0,0 +16279,19917,36310,-9,36308,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-863.9455437836032,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,12,3,0,420,0,0,0 +16280,19918,36311,36312,-9,-9,2,1,1,86,1,0,0,0,2,-9,4,3,0,1,0,5.741762058954767,5.698623600883066,1,0,-9,7,0,-4,8.720857416847553,0,0,0,90,3,1,3,3,3,2019,4,1,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.434340485611769,5.446718996621094,125.421739532598,1,44.24,31.92,6,1,0,0,11,2,1,703,0,0,0 +16280,19918,36312,36311,-9,-9,1,1,0,90,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,4,31.77453456176735,0,0,0,86,2,1,3,3,3,2019,4,2,18,5,0,0,15,4,5,4,0,0,0,1,0,68.29508927935814,0,0,0,0,1,1,0,0,0,0,0,41.37,21.07,6,1,0,0,11,2,1,703,0,0,0 +16281,19919,36313,-9,36314,36315,1,1,1,46,3,0,0,0,3,-9,2,1,0,4,8.090841515394084,8.274099377644811,0,3,0,0,0,-9,0,-978.7559305597346,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,25,40,15,1,1,-9,1,14.36178808749442,14.36178808749442,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,2,4,1,590,0,0,0 +16281,19920,36314,36315,-9,-9,3,1,0,66,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-1,1.324064860591754,0,0,0,67,3,2,1,3,3,2019,3,2,21,8,0,0,15,4,8,1,0,0,0,1,0,0,0,0,0,0,1,1,0,3.214234058594125,0,0,0,35.59,49.94,2,1,0,0,2,3,1,1128,0,0,0 +16281,19920,36315,36314,-9,-9,2,1,1,67,1,0,0,0,3,-9,2,1,0,2,7.141474476391121,7.890276151623685,6.907937606040468,1,0,-9,7,0,1,58.75551936365991,0,0,0,66,3,3,3,3,3,2019,2,3,9,1,18,18,15,1,1,4,0,7.715881589910236,7.715881589910236,1,0,0,0,0,0,0,1,1,0,6.555326617555572,6.894418068814117,0,0,57.73,36.13,6,1,0,0,2,3,1,1128,0,0,0 +16282,19921,36316,36317,-9,-9,1,1,0,68,1,0,0,0,2,-9,4,3,0,1,0,7.896268280109783,7.751148612758072,1,0,-9,9,0,4,-37.03124721915085,0,0,0,64,2,1,3,-9,2,2019,4,2,9,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.656350601472028,6.411461565677329,2,55.97,34.01,6,1,0,0,6,3,1,800.5,0,0,0 +16282,19921,36317,36316,-9,-9,2,1,1,64,1,0,0,0,2,-9,8,3,1,1,0,0,0,1,0,-9,9,0,-4,72.25417192624597,0,0,0,68,2,1,3,-9,2,2019,4,1,28,12,0,0,15,3,12,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.745509478850983,3,27.8,29.48,2,1,0,1,6,3,1,800.5,0,0,0 +16283,19922,36318,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,2,1,0,4,7.759503736440669,8.125194252992474,6.19199911770946,3,0,0,0,-9,0,-1042.721364069709,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,31,37,15,1,0,-9,0,8.519082659401059,8.519082659401059,0,0,0,0,0,0,0,0,0,0,5.923321192818325,0,0,0,57.16,56.15,5,1,0,0,2,4,1,97,0,0,0 +16283,19923,36319,-9,36318,-9,2,1,1,25,2,0,0,0,1,-9,2,1,0,5,8.322332957937871,8.364400433806994,0,3,0,0,0,-9,0,-961.4391828139696,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,36,37,15,1,0,-9,1,11.29174653488395,11.29174653488395,0,0,0,0,0,0,0,0,0,0,2.594019380315232,0,0,0,57.06,57.76,7,1,0,0,2,4,1,363,0,0,0 +16283,19924,36320,-9,36318,-9,3,1,0,20,2,0,0,1,2,0,7,2,0,4,0,4.346649232347576,4.862746977887606,3,0,0,0,-9,0,-920.035781795463,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,5.018295624501317,0,0,0,54.79,55.86,6,1,0,0,2,2,1,410,0,0,0 +16284,19925,36321,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-840.9964391764033,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65971969024576,3,44.67,35.01,5,1,0,0,4,1,1,1088,0,0,0 +16284,19926,36322,-9,-9,-9,2,1,1,88,2,0,0,0,3,-9,4,3,0,1,0,4.486840712988511,4.767237613222409,3,0,0,0,-9,0,-992.4365786646268,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,13,3,0,0,15,4,3,-9,0,0,0,1,4.836752022419798,0,0,0,37.33213826903166,35.04668952563874,1,1,0,1.409265611468482,4.596070333833669,0,0,32.82,19.15,5,1,0,0,4,2,1,248,0,0,0 +16285,19927,36323,-9,-9,-9,1,1,1,43,2,0,0,0,2,-9,2,1,0,3,7.513729566300553,7.509002559256315,0,3,0,0,0,-9,0,-959.2237893405847,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,48,48,15,1,0,-9,0,6.019400809525319,6.019400809525319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,48.71,6,3,0,0,9,3,0,344,0,0,0 +16286,19928,36324,36325,-9,-9,1,1,1,56,1,0,1,0,1,-9,1,1,0,4,9.673993323378321,9.547526056409772,0,2,0,-9,24,0,3,-52.37006812981164,0,0,0,53,1,4,1,2,3,2019,1,2,10,1,38,35,15,1,1,1,0,43.10093184388896,43.10093184388896,0,0,0,0,0,0,0,0,0,0,7.122710207334819,0,0,0,43.73,59.7,5,2,0,0,8,5,0,719.6666666666666,0,0,0 +16286,19928,36325,36324,-9,-9,2,1,0,53,1,0,1,0,1,-9,1,1,0,4,8.961092905288988,9.099715311936833,0,2,0,-9,23,0,-3,-50.0997775134803,0,0,0,56,1,4,1,-9,-9,2019,1,1,7,0,35,35,15,1,0,1,0,25.49337007200402,25.49337007200402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,6,1,0,0,8,5,0,719.6666666666666,0,0,0 +16286,19928,36326,-9,36325,36324,4,1,0,17,2,0,1,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-913.2079179500416,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,17,5,0,0,15,3,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.806759166443707,0,0,0,31.28,55.61,5,2,1,0,8,5,0,719.6666666666666,0,0,0 +16286,19929,36327,-9,36325,36324,3,1,0,20,2,0,1,1,1,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1049.581403634053,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,17,4,0,0,15,2,4,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.28,63.48,6,2,0,0,8,1,0,2122,0,0,0 +16287,19930,36328,-9,36330,36329,3,1,1,11,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1026.867035037306,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,1234,0,0,0 +16287,19930,36329,36330,-9,-9,2,1,1,39,1,0,1,0,2,-9,2,1,0,3,8.328137650063386,8.126973452022126,0,2,0,-9,10,-9,-1,-86.29690595907397,-9,0,0,40,2,2,1,1,3,2019,1,1,12,0,36,0,15,1,0,1,0,14.31716451901222,14.31716451901222,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,56.01,4,1,0,0,2,5,1,1234,0,0,0 +16287,19930,36330,36329,-9,-9,1,1,0,40,1,0,1,0,2,-9,2,1,0,2,8.552712762020883,8.336129521716336,0,2,0,-9,8,-9,1,76.92000236000683,-9,0,1,39,2,3,1,3,-9,2019,1,2,19,8,38,0,15,1,8,1,0,15.0217211215728,15.0217211215728,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.49,30.53,4,1,0,0,2,5,1,1234,0,0,0 +16288,19931,36331,36332,-9,-9,2,1,1,28,1,0,0,0,2,-9,2,1,0,3,8.59876438956373,8.434008103762563,0,1,0,-9,7,0,1,-4.853619974196706,0,1,0,27,2,3,1,-9,-9,2019,1,1,7,0,46,47,15,1,0,1,0,16.58426298709006,16.58426298709006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,6,1,0,0,9,5,1,1955,0,0,0 +16288,19931,36332,36331,-9,-9,1,1,0,27,1,0,0,0,2,-9,2,1,0,3,7.834511135926511,8.066192977496659,0,1,0,-9,7,0,-1,67.74857082162347,-9,1,1,28,2,3,1,1,2,2019,1,2,7,0,45,0,15,1,0,1,0,9.064762151872998,9.064762151872998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,9,5,1,1955,0,0,0 +16289,19932,36333,-9,36336,36335,4,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1080.12198920938,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,4,1,521,0,0,0 +16289,19932,36334,-9,36336,36335,3,1,0,16,2,0,2,1,3,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-968.8314764873984,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,20,8,0,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.81,59.97,6,1,0,0,9,4,1,521,0,0,0 +16289,19932,36335,36336,-9,-9,2,1,1,52,1,0,2,0,1,-9,2,1,0,4,9.179613154805436,9.13579421545092,0,2,0,-9,7,0,7,-79.30687655250297,0,0,0,45,2,4,2,-9,-9,2019,2,1,9,0,0,65,15,1,1,2,0,0,0,0,0,0,0,0,0,0,1,1,0,7.241043016546701,0,0,0,53,54,6,1,0,0,9,4,1,521,0,0,0 +16289,19932,36336,36335,-9,-9,1,1,0,45,1,0,2,0,2,0,7,2,0,4,0,0,0,2,0,-9,28,0,-7,-66.49151304889658,-9,0,0,52,1,4,1,2,2,2019,3,2,13,3,0,0,15,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.95,59.37,5,1,0,0,9,4,1,521,0,0,0 +16290,19933,36337,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,3,8.037365360380599,8.301943596602321,0,3,0,0,0,-9,0,-1176.124942249006,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,1,37,45,15,1,1,-9,0,8.312784868791443,8.312784868791443,0,0,0,0,0,0,0,0,0,0,.039061931991479,0,0,0,50.63,50.99,3,1,0,0,12,4,1,1260,0,0,0 +16291,19934,36338,36339,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,4,0,8.328916925594184,8.498033437307644,1,0,-9,51,0,2,-53.04563284604478,0,0,0,72,1,3,3,2,2,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.234113606503459,8.742190958137918,0,0,52.91,55.33,6,1,0,0,12,4,1,291.5,0,0,0 +16291,19934,36339,36338,-9,-9,2,1,0,72,1,0,0,0,1,-9,4,3,0,3,0,7.450397283990485,7.556819854424229,1,0,-9,51,0,-2,22.74140177553006,0,0,0,74,1,4,3,2,1,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.844951193518606,7.5442446830438,0,0,58.5,44.67,6,1,0,0,12,4,1,291.5,0,0,0 +16292,19935,36340,-9,36343,36341,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.634683889324,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,5,1,0,0,9,5,0,346.5,0,0,0 +16292,19935,36341,36343,-9,-9,2,1,1,35,1,1,2,0,1,-9,2,1,0,5,9.939378308137572,9.542916435068937,0,2,0,-9,11,0,1,50.31189557641387,0,0,0,34,1,4,1,-9,-9,2019,1,1,10,1,98,70,15,1,1,1,0,16.14497706964995,16.14497706964995,0,0,0,0,0,0,0,0,0,0,7.961099005456727,0,0,0,54.1,59.11,6,1,0,0,9,5,0,346.5,0,0,0 +16292,19935,36342,-9,36343,36341,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1018.016375274267,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,5,1,0,0,9,5,0,346.5,0,0,0 +16292,19935,36343,36341,-9,-9,1,1,0,34,1,1,2,0,1,-9,2,1,0,4,5.330294841488396,5.032362477542737,0,2,0,-9,11,0,-1,126.7613995113705,0,0,1,35,1,5,1,2,2,2019,1,2,12,0,3,0,15,1,0,1,0,8.251758401774634,8.251758401774634,0,0,0,0,0,0,0,0,0,0,4.042844722194721,0,0,0,48.87,58.55,6,1,0,0,9,5,0,346.5,0,0,0 +16293,19936,36344,-9,36346,36345,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.086655358687,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,4,1,515.6666666666666,0,0,0 +16293,19936,36345,36346,-9,-9,2,1,1,38,1,0,1,0,3,-9,2,1,0,3,8.216164785401633,8.075037688412172,0,2,0,-9,9,0,4,103.7215596707581,0,0,0,34,2,3,1,3,3,2019,1,1,9,0,43,43,15,1,0,1,0,11.69798011651027,11.69798011651027,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.92,53.03,5,1,0,0,9,4,1,515.6666666666666,0,0,0 +16293,19936,36346,36345,-9,-9,1,1,0,34,1,0,1,0,2,-9,2,1,0,3,7.384307134089079,7.083868706868239,0,2,0,-9,9,0,-4,49.05853625939405,0,0,1,38,3,3,1,2,-9,2019,1,2,13,1,26,28,15,1,1,1,0,5.996032321359192,5.996032321359192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,6,1,0,0,9,4,1,515.6666666666666,0,0,0 +16294,19937,36347,-9,-9,-9,1,1,0,77,3,0,0,0,2,-9,4,3,0,3,0,5.24767209624422,5.326581324166344,3,0,0,0,-9,0,-943.3876556641947,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.21378994905426,5.456830501177006,0,0,57.01,33.14,7,1,0,0,2,2,1,1273,0,0,0 +16295,19938,36348,-9,-9,-9,1,1,0,74,3,0,0,0,2,-9,4,3,0,2,0,7.674177961926683,8.016948982584442,3,0,0,0,-9,0,-1041.256693861282,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,17,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.293809993274365,0,3,44.98,34.8,6,4,0,1,8,3,1,770,0,0,0 +16296,19939,36349,-9,-9,-9,1,1,1,27,3,0,1,0,1,-9,1,1,0,1,9.692913463383674,9.658796356342183,0,3,0,-9,0,1,0,-978.8667912141249,0,1,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,55,60,15,1,7,-9,1,36.6749896817357,36.6749896817357,0,0,0,0,0,0,0,1,1,0,0,0,.8812848971195479,3,37.58,35.91,2,3,0,0,6,5,1,258,0,0,0 +16297,19940,36350,-9,36351,36352,3,1,1,15,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.64176840404,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,5,1,0,0,5,3,1,246.75,0,0,0 +16297,19940,36351,36352,-9,-9,1,1,0,54,1,0,2,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,5,-105.4979038993713,0,0,0,49,2,4,1,3,3,2019,3,2,16,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.5,18.89,5,1,0,0,5,3,1,246.75,0,0,0 +16297,19940,36352,36351,-9,-9,2,1,1,49,1,0,2,0,2,-9,2,1,0,4,8.203047234456418,8.054997919879849,0,2,0,-9,6,0,-5,150.6984387685988,0,0,0,54,2,1,3,-9,-9,2019,2,1,9,0,40,39,15,1,1,3,0,9.24825173454278,9.24825173454278,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,5,3,1,246.75,0,0,0 +16297,19940,36353,-9,36351,36352,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-990.5012288405167,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,5,3,1,246.75,0,0,0 +16298,19941,36354,-9,-9,-9,1,1,0,54,2,0,0,0,2,-9,2,1,0,3,8.251920345677442,8.344075636548439,0,3,0,0,0,-9,0,-1009.888797776585,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,36,15,1,0,-9,0,13.83944648764076,13.83944648764076,0,0,0,0,0,0,0,0,0,0,5.093288161491572,0,0,0,44.43,56.74,5,4,0,0,8,4,1,956,0,0,0 +16299,19942,36355,36356,-9,-9,2,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,6.409084221949599,6.246309404141956,1,0,-9,8,0,-6,-11.5780806166185,0,0,0,84,3,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,1,0,6.134517528815353,0,0,0,0,1,1,0,0,6.372444008450589,0,0,60.7,47.65,6,1,0,0,5,2,1,391.5,0,0,0 +16299,19942,36356,36355,-9,-9,1,1,1,84,1,0,0,0,3,-9,4,3,0,3,0,7.412837330733315,6.808601564188082,1,0,-9,60,0,6,-75.60411319918015,0,0,0,78,3,4,3,-9,-9,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,1,0,7.502355050342969,0,0,0,0,1,1,0,0,6.895303082332871,0,0,59.07,43.05,6,1,0,0,5,2,1,391.5,0,0,0 +16300,19943,36357,36358,-9,-9,1,1,0,66,1,0,0,0,3,-9,4,3,0,2,0,8.283107753206876,8.197195801048517,1,0,-9,41,0,-7,-168.4720460333604,0,0,0,73,2,3,3,2,3,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,8.413951395349274,0,0,0,0,1,1,0,1.935725010748297,8.331591898489732,6.665095221335034,3,32.62,36.55,5,1,0,0,9,3,1,862.5,0,0,0 +16300,19943,36358,36357,-9,-9,2,1,1,73,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,9,0,7,21.81270505466405,0,0,0,66,3,2,3,3,2,2019,4,1,12,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.591813187444656,0,.9512285397555464,3,45.97,41.17,5,1,0,0,9,3,1,862.5,0,0,0 +16301,19944,36359,-9,-9,-9,1,1,0,36,2,0,1,0,2,-9,2,1,0,4,7.635795341183512,7.539398370419873,6.10489146016965,4,0,0,0,-9,0,-1077.764497769159,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,22,8,28,27,15,1,8,-9,0,8.225813777150162,8.225813777150162,0,0,0,0,0,0,0,1,1,0,6.455559076056036,0,65.42873540792888,3,25.44,65.40000000000001,2,1,0,0,12,3,0,707,0,0,0 +16302,19945,36360,-9,36361,36362,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-988.3437589790618,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,1454.75,0,0,0 +16302,19945,36361,36362,-9,-9,1,1,0,36,1,2,2,0,1,-9,2,1,0,4,8.44044460423277,8.56280130211047,0,2,0,-9,15,0,-1,-93.83032605906189,0,0,1,37,1,5,1,2,2,2019,1,2,14,4,46,38,15,1,4,1,0,15.17353368595738,15.17353368595738,0,0,0,0,0,0,0,1,1,0,4.325344923589038,0,0,0,40.58,60.95,6,1,0,0,6,5,1,1454.75,0,0,0 +16302,19945,36362,36361,-9,-9,2,1,1,37,1,2,2,0,1,-9,2,1,0,5,8.901043276254271,8.961936830257622,2.715221004066615,2,0,-9,15,0,1,73.6341899436013,0,0,0,36,1,4,1,2,1,2019,1,1,12,2,0,56,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.918671266210275,0,0,0,44.43,57.98,4,1,0,0,6,5,1,1454.75,0,0,0 +16302,19945,36363,-9,36361,36362,3,1,0,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-979.456351717811,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,5,1,1454.75,0,0,0 +16303,19946,36364,-9,-9,-9,1,1,1,76,2,0,0,0,2,-9,1,1,0,3,6.856359578568197,6.769819336264933,0,1,0,-9,6,0,31,34.97916040586988,0,0,0,-9,-9,-9,-9,3,3,2019,1,2,7,0,10,8,15,1,0,-9,0,12.23397796566384,12.23397796566384,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,48.6,1,1,0,0,5,5,1,336,0,0,0 +16303,19947,36365,-9,-9,-9,2,1,1,45,2,0,0,0,3,-9,1,1,0,4,9.850229363228802,9.474442722876349,0,1,0,-9,6,0,-31,2.980010777327867,0,0,0,-9,-9,-9,-9,2,2,2019,1,1,9,0,40,35,15,1,0,-9,0,40.11952193156758,40.11952193156758,0,0,0,0,0,0,0,1,1,0,3.613730960640265,0,1.12395427632798,3,54.34,53.29,6,1,0,0,5,5,1,253,0,0,0 +16304,19948,36366,36367,-9,-9,1,1,1,59,1,0,1,0,1,-9,1,1,0,3,8.132195181903084,8.01971780202121,0,2,0,-9,27,0,10,110.2549237291288,0,0,0,49,1,2,1,2,1,2019,1,2,23,9,35,35,15,1,9,1,0,9.002527579903715,9.002527579903715,0,0,0,0,0,0,0,1,1,0,0,0,15.02766309641131,3,27.15,57.87,2,1,0,0,7,4,1,1193.5,0,0,0 +16304,19948,36367,36366,-9,-9,2,1,0,49,1,0,1,0,1,-9,2,1,0,2,8.359496079607208,8.384121724448926,0,2,0,-9,27,0,-10,38.29712622021005,0,0,0,59,1,3,1,2,2,2019,1,1,12,2,37,37,15,1,2,1,0,14.56828981495986,14.56828981495986,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.52,51.53,5,1,0,0,7,4,1,1193.5,0,0,0 +16304,19949,36368,-9,36367,36366,3,1,1,18,2,0,1,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1014.808740765616,1,1,0,-9,-9,-9,-9,1,1,2019,-9,0,4,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,7,4,1,327,0,0,0 +16305,19950,36369,36370,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,6.831993063706015,6.965288650759782,0,1,0,-9,24,0,-7,1.282761009856563,0,0,0,59,3,4,1,3,3,2019,1,2,9,1,16,16,15,1,1,1,0,7.122300028912589,7.122300028912589,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,6,1,0,0,2,4,1,765.6666666666666,0,0,0 +16305,19950,36370,36369,-9,-9,2,1,1,59,1,0,0,0,3,-9,2,1,0,4,8.786431705325185,8.861202340582464,0,1,0,-9,23,0,7,-80.36428033423047,0,0,0,52,2,4,1,3,3,2019,1,1,7,0,48,50,15,1,0,1,0,15.6635862356343,15.6635862356343,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,51.28,6,1,0,0,2,4,1,765.6666666666666,0,0,0 +16305,19950,36371,-9,36369,36370,5,1,1,17,2,0,0,1,2,0,7,2,0,5,6.091568401385443,6.029854293229684,0,1,0,0,0,-9,0,-1071.59730415021,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,5,0,10,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,6,1,0,0,2,4,1,765.6666666666666,0,0,0 +16305,19951,36372,-9,36369,36370,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.12023633049593,8.488135579948581,0,3,0,0,0,-9,0,-888.3492492680842,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,2,41,48,15,1,2,-9,1,10.83190481495018,10.83190481495018,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,6,1,0,0,2,4,1,2682,0,0,0 +16305,19952,36373,-9,36369,36370,4,1,0,19,2,0,0,0,2,-9,2,1,0,4,7.435273707263709,7.465847495190427,0,3,0,0,0,-9,0,-1040.1073230558,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,6,0,37,0,15,1,0,-9,1,5.511121784889766,5.511121784889766,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,7,1,0,0,2,3,1,222,0,0,0 +16306,19953,36374,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,4,3,0,1,0,5.729330363730958,5.532788427923798,3,0,0,0,-9,0,-1070.755349215917,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,24.24915975369488,0,1,1,0,0,5.780626150505975,0,0,68.67,13.13,6,1,0,0,6,2,1,327,0,0,0 +16307,19954,36375,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,2,0,6.12778810440247,5.854655166734104,3,0,-9,0,-9,0,-1023.028274344391,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,25.41912720162241,0,0,1,1,0,0,6.025781088779211,0,0,61.19,23.35,6,1,0,0,7,2,0,1433,0,0,0 +16308,19955,36376,-9,-9,-9,1,1,1,52,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-941.5010643762233,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,24,8,0,0,15,3,8,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.488346819367662,0,0,3,39.14,14.86,4,1,0,0,7,1,1,163,0,0,0 +16309,19956,36377,36378,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,2,8.382492052364645,8.351190475900198,0,1,0,-9,39,0,-2,118.3004368952382,0,0,0,64,2,4,1,2,3,2019,1,2,7,0,42,45,15,1,0,1,0,10.16315391603572,10.16315391603572,0,0,0,0,0,0,0,0,0,0,1.937697546660091,0,0,0,61.52,45.11,7,1,0,0,10,5,1,463.5,0,0,0 +16309,19956,36378,36377,-9,-9,2,1,1,64,1,0,0,0,2,-9,2,1,0,4,8.846010482032703,8.684883282748858,0,1,0,-9,40,0,2,-55.03980143700161,0,0,0,62,1,2,1,3,3,2019,1,1,6,0,48,48,15,1,0,1,0,16.00705281967429,16.00705281967429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,6,1,0,0,10,5,1,463.5,0,0,0 +16310,19957,36379,-9,-9,-9,1,1,1,67,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-1037.510696211045,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.831847062093394,0,0,0,46.89,15.25,2,1,0,0,9,1,1,234,0,0,0 +16310,19958,36380,-9,-9,36379,2,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.604233845499788,7.908074607277087,0,3,0,0,0,-9,0,-944.9732306618907,0,1,0,-9,-9,-9,-9,-9,2,2019,-9,0,11,0,48,40,15,1,0,-9,1,6.762856921208527,6.762856921208527,0,0,0,0,0,0,0,1,1,0,0,0,.7152462155305741,3,38.34,62.12,6,1,0,0,9,3,1,1107,0,0,0 +16311,19959,36381,-9,36383,36382,5,1,1,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.294823554225,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,5,1,811,0,0,0 +16311,19959,36382,36383,-9,-9,1,1,1,44,1,0,3,0,1,-9,2,1,0,3,9.221088881278234,9.531470477482683,0,2,0,-9,20,0,2,111.5759689208474,0,0,0,42,1,4,1,2,1,2019,1,2,11,0,55,45,15,1,0,1,0,35.17617191774738,35.17617191774738,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,6,1,0,0,2,5,1,811,0,0,0 +16311,19959,36383,36382,-9,-9,2,1,0,42,1,0,3,0,1,-9,2,1,0,4,7.462038847775961,7.813526009308232,0,2,0,-9,10,0,-2,5.744599660972995,-9,0,1,44,1,3,1,2,2,2019,1,1,12,2,17,0,15,1,2,1,0,12.49922130249132,12.49922130249132,0,0,0,0,0,0,0,1,1,0,3.396815114551036,0,0,0,46.1,59.99,2,1,0,0,2,5,1,811,0,0,0 +16311,19959,36384,-9,36383,36382,3,1,1,13,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1147.969495967624,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,5,1,811,0,0,0 +16312,19960,36385,36386,-9,-9,1,1,1,79,1,0,0,0,2,-9,4,3,0,4,0,8.933055642308613,8.378311902956417,1,0,-9,8,0,0,-126.900849998328,0,0,0,79,3,1,3,3,3,2019,4,2,16,6,0,0,15,4,6,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.287386966732289,8.543694527131684,121.3305315371911,1,54.2,57.49,6,1,0,0,12,4,1,603,0,0,0 +16312,19960,36386,36385,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,8,0,0,80.18974475456355,0,0,0,79,2,4,3,3,3,2019,4,1,21,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.650508618338614,0,0,0,28.63,34.94,4,1,0,0,12,4,1,603,0,0,0 +16313,19961,36387,-9,-9,-9,1,1,1,70,2,0,0,0,3,-9,4,3,0,2,0,5.324885821348434,4.725338162393028,3,0,0,0,-9,0,-895.6464069750323,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.854766677514509,0,0,34.44,48.18,3,1,0,1,2,2,0,180,0,0,0 +16314,19962,36388,36389,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,5,0,8.371161187378556,7.951601313544233,1,0,-9,48,0,1,-56.25061795020402,0,0,0,68,3,3,3,-9,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.436322604234515,8.043822379408894,0,0,62.39,56.71,7,1,0,0,8,3,1,200,0,0,0 +16314,19962,36389,36388,-9,-9,2,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,5.767409396727945,5.542096986847677,1,0,-9,48,0,-1,122.094473957955,0,0,0,69,2,5,3,-9,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.501254281267606,5.418568861708745,0,3,52.69,48.71,6,1,0,0,8,3,1,200,0,0,0 +16315,19963,36390,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,4,0,6.65002696087337,6.829040418366677,3,0,0,0,-9,0,-947.6258808772752,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.030447941154599,7.0014819989773,0,0,46.73,57.01,6,1,0,0,10,2,1,325,0,0,0 +16316,19964,36391,-9,-9,-9,1,1,1,40,2,0,1,0,3,-9,8,3,1,4,0,0,0,4,0,0,0,-9,0,-1001.86029193972,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,3,0,0,6,1,0,1449,0,0,0 +16316,19965,36392,-9,36395,36393,5,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-881.560925937162,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,6,3,0,791.5,0,0,0 +16316,19965,36393,36395,-9,-9,2,1,1,36,1,0,1,0,2,-9,2,1,0,5,7.55880976895405,8.066474025172017,0,2,0,-9,4,0,7,5.853364162262078,0,0,0,29,2,5,3,-9,-9,2019,2,4,12,2,40,30,15,1,2,3,0,9.169479404725514,9.169479404725514,0,0,0,0,0,0,0,1,1,0,0,0,16.56826084155936,3,46.48,49.72,6,3,0,0,6,3,0,791.5,0,0,0 +16316,19965,36394,-9,-9,36393,3,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1125.976082348324,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,6,3,0,791.5,0,0,0 +16316,19965,36395,36393,-9,-9,4,1,0,29,1,0,1,0,2,-9,6,3,0,5,0,0,0,2,0,-9,4,0,-7,112.232861448215,0,1,1,36,2,5,1,-9,-9,2019,3,2,10,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.293377939516173,3,33.73,56.61,6,3,0,0,6,3,0,791.5,0,0,0 +16317,19966,36396,-9,-9,-9,1,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.892001354100706,7.855149581324969,0,3,0,-9,0,-9,0,-1037.123397127981,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,5,37,0,15,1,5,-9,0,8.356171966391111,8.356171966391111,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.85,61.6,3,1,0,0,11,3,1,767,0,0,0 +16318,19967,36397,-9,-9,-9,1,1,0,53,3,0,0,0,2,-9,6,3,0,2,0,0,0,3,0,0,0,-9,0,-956.3466327004795,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.72691008788766,3,51.89,35.98,4,1,0,0,7,1,1,250,0,0,0 +16318,19968,36398,-9,36397,-9,2,1,0,22,2,0,0,0,2,-9,2,1,0,4,8.211952261884349,8.013815796469979,0,3,0,0,0,-9,0,-976.1699122776877,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,40,36,15,1,2,-9,1,10.31233922931753,10.31233922931753,0,0,0,0,0,0,0,1,1,0,1.831666434432644,0,0,0,46,58,5,1,0,0,7,4,1,243,0,0,0 +16318,19969,36399,-9,36397,-9,3,1,0,19,2,0,0,0,3,1,8,3,1,4,0,0,0,3,0,0,0,-9,0,-1008.546141839647,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,7,1,1,538,0,0,0 +16319,19970,36400,36401,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,4,0,0,0,1,0,-9,51,0,0,7.027965483366059,0,0,0,70,3,3,3,3,-9,2019,4,1,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.988273123260064,0,0,0,44.42,59.09,6,1,0,0,9,2,1,2045,0,0,0 +16319,19970,36401,36400,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,7.181418276449206,6.897909023200587,1,0,-9,51,0,0,51.55842553343912,0,0,0,70,3,4,3,-9,-9,2019,4,2,16,5,0,0,15,4,5,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.904915156503264,7.112467861403596,0,0,50.29,37.79,6,1,0,0,9,2,1,2045,0,0,0 +16320,19971,36402,-9,-9,-9,1,1,1,66,3,0,0,0,3,-9,4,3,0,5,0,7.428177239122967,7.13817186366641,3,0,0,0,-9,0,-1017.755613503801,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.033148451440886,0,0,60.02,56.42,1,1,0,0,1,2,0,1946,0,0,0 +16321,19972,36403,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,3,0,5.174290134704632,5.065079242159523,3,0,0,0,-9,0,-966.846554360959,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.177335042278334,0,0,56.13,44.38,4,1,0,0,9,2,0,643,0,0,0 +16322,19973,36404,36405,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,56,0,-1,-16.61315323037602,0,0,0,75,2,3,3,3,2,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.341726458450184,0,0,0,57.33,53.46,6,1,0,0,10,2,1,328,0,0,0 +16322,19973,36405,36404,-9,-9,1,1,1,75,1,0,0,0,2,-9,4,3,0,3,0,7.034584660641736,6.976384005617668,1,0,-9,56,0,1,-77.90641469358361,0,0,0,74,2,3,3,-9,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.518151747347622,7.127067217935005,0,0,56.94,49.53,5,1,0,0,10,2,1,328,0,0,0 +16323,19974,36406,36407,-9,-9,1,1,0,59,1,0,0,0,1,-9,2,1,0,2,8.287479150203728,8.457463045305294,0,1,0,-9,6,0,-10,94.39204752803761,0,0,0,69,3,1,3,3,3,2019,2,2,9,0,37,40,15,1,0,4,0,12.94717218213533,12.94717218213533,0,0,0,0,0,0,0,1,1,0,6.820128495855249,0,12.72112597997471,2,50.27,48.86,5,1,0,0,10,4,1,1176.5,0,0,0 +16323,19974,36407,36406,-9,-9,2,1,1,69,1,0,0,0,3,-9,4,3,0,1,0,7.422356043343006,6.808208995234311,1,0,-9,6,0,10,9.326616309816368,0,0,0,59,1,2,1,-9,-9,2019,3,1,12,0,0,0,15,4,0,1,0,0,0,1,0,9.377578605506422,0,0,0,0,1,1,0,.173101397597603,6.892199759027701,0,0,37.36,19.77,3,1,0,0,10,4,1,1176.5,0,0,0 +16324,19975,36408,36409,-9,-9,1,1,1,76,1,0,0,0,3,-9,4,3,0,3,0,5.542437075650359,5.715570199551436,1,0,-9,7,0,20,-86.71613231499161,0,0,0,56,2,2,3,-9,-9,2019,4,2,9,2,0,0,15,4,2,4,0,0,0,1,0,0,8.991737211684455,0,0,0,1,1,0,0,5.779121590019341,5.1037329079034,1,48.03,34.7,7,1,0,0,5,2,1,880.5,0,0,0 +16324,19975,36409,36408,-9,-9,2,1,0,56,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,7,0,-20,-61.25353949690589,0,0,0,76,3,3,3,-9,-9,2019,4,1,9,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.86,41.78,5,1,0,1,5,2,1,880.5,0,0,0 +16324,19976,36410,-9,36409,36408,3,1,0,22,2,0,0,0,2,-9,2,1,0,4,7.441347309969335,7.32191988359881,0,3,0,-9,0,0,0,-1028.404411834782,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,13,1,0,30,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.632428998810475,3,45.41,50.66,5,1,0,0,5,2,1,682,0,0,0 +16325,19977,36411,-9,-9,-9,1,1,0,65,3,0,0,0,2,-9,4,3,0,3,0,5.489621872040041,5.44832138287204,3,0,0,0,-9,0,-1100.206133108959,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,43,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.400339494903846,41.96153899210879,3,46.98,51.48,6,1,0,0,9,2,0,2192,0,0,0 +16326,19978,36412,-9,-9,-9,1,1,0,58,3,0,0,0,3,-9,2,1,0,4,8.052332838485984,8.095919327640168,5.719537416933608,3,0,0,0,-9,0,-934.0151531007738,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,40,38,15,1,0,-9,0,7.595566154136777,7.595566154136777,0,0,0,0,0,0,0,1,1,0,6.439559534101347,0,1.667170886861476,3,57.16,56.15,6,1,0,0,10,4,0,675,0,0,0 +16327,19979,36413,36414,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,3,8.383054703317276,8.183284951405289,6.927840310672095,1,0,-9,31,0,3,103.9452863771273,0,0,0,55,2,3,1,3,3,2019,1,1,10,0,40,40,15,1,1,1,0,12.41592792172703,12.41592792172703,0,0,0,0,0,0,0,0,0,0,1.907338786495359,6.710738146354256,0,0,51,49,5,1,0,0,5,4,1,2785,0,0,0 +16327,19979,36414,36413,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,3,7.665582428159854,7.7243974988152,0,1,0,-9,30,0,-3,-3.906951695525219,0,0,0,58,2,3,1,2,2,2019,1,2,13,1,35,34,15,1,1,1,0,8.243356844085444,8.243356844085444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.92,50.34,4,1,0,1,5,4,1,2785,0,0,0 +16327,19980,36415,-9,36414,36413,3,1,1,25,2,0,0,0,2,-9,2,1,0,3,7.66159325057346,7.189317186047917,0,3,0,0,0,-9,0,-1012.642007803404,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,30,15,1,0,-9,1,4.415400973718605,4.415400973718605,0,0,0,0,0,0,0,0,0,0,1.907089782020389,0,0,0,28.97,54.56,4,1,0,0,5,3,1,267,0,0,0 +16328,19981,36416,36417,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,4,8.092542437461832,7.988083802964437,0,2,0,-9,6,0,1,90.62116991165654,0,0,0,32,2,3,1,2,1,2019,1,2,6,0,48,24,15,1,0,1,0,8.658233165265022,8.658233165265022,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,12,4,1,578,0,0,0 +16328,19981,36417,36416,-9,-9,2,1,0,32,1,0,1,0,2,-9,2,1,0,3,7.801421111179426,7.78022888089062,0,2,0,-9,6,0,-1,68.120926195328,0,0,1,33,2,4,1,-9,-9,2019,1,1,7,1,40,34,15,1,1,1,0,8.191376639238824,8.191376639238824,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,5,1,0,0,12,4,1,578,0,0,0 +16328,19981,36418,-9,36417,36416,3,1,0,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.154635299544,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,12,4,1,578,0,0,0 +16329,19982,36419,36420,-9,-9,2,1,0,50,1,0,1,0,2,-9,1,1,0,4,7.560703274569532,7.403342858380463,0,2,0,-9,5,0,-4,-65.08474783371987,0,0,0,54,2,4,1,2,3,2019,1,1,25,10,36,35,15,1,10,1,0,7.479281523370859,7.479281523370859,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.65,67.17,6,1,0,0,11,3,1,131,0,0,0 +16329,19982,36420,36419,-9,-9,1,1,1,54,1,0,1,0,2,-9,2,1,0,4,8.280143100401897,8.129639635309266,0,2,0,-9,5,0,4,-111.7680681394476,0,0,0,50,2,4,1,2,3,2019,1,2,9,0,37,37,15,1,1,1,0,10.57975615200778,10.57975615200778,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,6,1,0,0,11,3,1,131,0,0,0 +16329,19983,36421,-9,36419,36420,4,1,1,18,2,0,1,1,2,0,7,2,0,4,3.841817774073256,4.245862149016403,0,3,0,0,0,-9,0,-996.3730458247868,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,3.046421736759292,0,0,0,48,59,5,1,0,0,11,3,1,134,0,0,0 +16330,19984,36422,-9,36424,-9,1,1,1,26,2,0,1,0,2,-9,2,1,0,4,7.810929982906101,7.816250874567669,0,3,0,0,0,-9,0,-1005.594422498475,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,37,37,15,1,0,-9,1,7.229190675923492,7.229190675923492,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,1,3,0,435,0,0,0 +16330,19985,36423,-9,36424,-9,3,1,1,15,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-917.8982330181286,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,5,1,0,0,1,3,0,190.5,0,0,0 +16330,19985,36424,-9,-9,-9,2,1,0,49,3,0,1,0,3,-9,2,1,0,4,7.648423943278624,7.709911526721275,0,4,0,0,0,-9,0,-1005.339342421541,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,1,37,37,15,1,1,-9,0,10.18409145346691,10.18409145346691,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.44,52.99,7,1,0,0,1,3,0,190.5,0,0,0 +16331,19986,36425,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,2,1,0,3,6.921429503096585,7.070572808431252,0,3,0,0,0,-9,0,-1076.497772980393,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,20,20,15,1,1,-9,0,5.554299684612874,5.554299684612874,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,52.96,5,1,0,0,13,2,0,186,0,0,0 +16332,19987,36426,-9,-9,-9,1,1,1,32,2,0,0,0,2,-9,2,1,0,4,8.795113864776656,8.371514020364545,0,3,0,0,0,-9,0,-1049.568621974443,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,43,50,15,1,5,-9,0,16.27105836441842,16.27105836441842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.91,60.5,5,1,0,0,1,5,1,543,0,0,0 +16333,19988,36427,36428,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,39,0,-2,0,0,0,0,63,2,4,3,3,2,2019,4,1,32,11,0,0,15,4,11,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.39,20.22,1,1,0,0,2,1,1,873.5,0,0,0 +16333,19988,36428,36427,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,39,0,2,0,0,0,0,61,2,1,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,107.3296738326471,1,57.91,43.45,5,1,0,0,2,1,1,873.5,0,0,0 +16334,19989,36429,-9,-9,-9,1,1,0,84,3,0,0,0,2,-9,4,3,0,3,0,6.536913302308196,7.007294455578118,3,0,0,0,-9,0,-1017.982205915864,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,6,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.593308390867719,6.876205580508698,0,0,63.98,35.38,6,1,0,0,9,2,1,640,0,0,0 +16335,19990,36430,-9,-9,-9,1,1,0,43,2,0,2,0,1,-9,2,1,0,4,7.103336504006654,7.053092462638051,0,4,0,0,0,-9,0,-981.0630489896811,0,0,1,-9,-9,-9,-9,1,1,2019,-9,0,12,0,20,22,15,1,0,-9,0,5.79072736452084,5.79072736452084,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,6,1,0,0,8,2,0,258,0,0,0 +16335,19990,36431,-9,36430,-9,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1040.246613894455,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,8,2,0,258,0,0,0 +16335,19991,36432,-9,36430,-9,2,1,1,18,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1083.115902813196,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,4,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,7,1,0,0,8,2,0,2142,0,0,0 +16336,19992,36433,36434,-9,-9,1,1,1,59,1,0,0,0,1,-9,1,1,0,4,6.905674053235304,7.029947057806686,0,1,0,-9,9,0,1,55.05186049773702,0,0,0,58,1,4,1,3,2,2019,1,2,10,0,40,50,15,1,0,1,0,2.415540497006554,2.415540497006554,0,0,0,0,0,0,0,0,0,0,3.321699235800212,0,11.65596798089057,3,51.77,58.57,6,1,0,0,10,2,1,1020.5,0,0,0 +16336,19992,36434,36433,-9,-9,2,1,0,58,1,0,0,0,1,-9,1,1,0,4,5.294446688346356,5.059483598172542,0,1,0,-9,9,0,-1,169.0740939180921,0,0,0,59,1,4,1,2,2,2019,1,1,9,1,30,0,15,1,1,1,0,.9590280809769681,.9590280809769681,0,0,0,0,0,0,0,0,0,0,0,0,0,3,58.15,52.91,6,1,0,0,10,2,1,1020.5,0,0,0 +16337,19993,36435,36436,-9,-9,1,1,1,62,1,0,0,0,3,-9,2,1,0,3,7.676473321151865,7.687222208164131,0,1,0,-9,5,0,4,-151.3009864835551,0,0,0,58,2,5,1,3,3,2019,1,2,10,0,35,32,15,1,1,1,0,7.420145878839609,7.420145878839609,0,0,0,0,0,0,0,0,0,0,.9228471520298984,0,0,0,50,48,5,1,0,0,8,4,1,630.5,0,0,0 +16337,19993,36436,36435,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,5,8.611878532526337,8.751474727605316,0,1,0,-9,5,0,-4,50.8969887434203,0,0,0,62,3,3,1,3,3,2019,1,1,6,0,39,37,15,1,0,1,0,12.74596944359424,12.74596944359424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.31,47.65,7,1,0,0,8,4,1,630.5,0,0,0 +16338,19994,36437,-9,-9,-9,1,1,1,37,2,0,0,0,1,-9,2,1,0,4,7.19451287471796,7.180442057847092,0,3,0,0,0,-9,0,-1039.928821553508,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,7,0,16,16,15,1,0,-9,0,11.20620991390902,11.20620991390902,0,0,0,0,0,0,0,1,1,0,7.698789679121864,0,0,0,54.79,55.86,5,1,0,0,7,3,1,237,0,0,0 +16339,19995,36438,-9,-9,-9,1,1,1,90,3,0,0,0,1,-9,4,3,0,2,0,9.195513948957087,8.965417409834444,3,0,0,0,-9,0,-1132.676531569984,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,1,0,0,15,4,1,-9,0,0,0,1,18.81732887344482,0,0,5.432818438566976,0,167.578091742745,1,1,0,2.476457275197492,8.839486402141807,0,0,55.28,32.21,7,1,0,0,9,5,1,240,0,0,0 +16340,19996,36439,36442,-9,-9,1,1,1,41,1,0,2,0,2,-9,2,1,0,5,8.418098214618542,8.447621345239124,0,2,0,-9,9,0,2,-91.94872557406927,0,0,0,39,2,3,1,-9,-9,2019,1,2,13,2,42,53,15,1,2,1,0,11.12316269555006,11.12316269555006,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,5,1,0,1,10,3,1,1240.5,0,0,0 +16340,19996,36440,-9,36442,36439,3,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.7433567849172,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,1240.5,0,0,0 +16340,19996,36441,-9,36442,36439,4,1,1,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.089807638363,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,10,3,1,1240.5,0,0,0 +16340,19996,36442,36439,-9,-9,2,1,0,39,1,0,2,0,2,-9,2,1,0,3,7.309713342032552,7.250950712964642,0,2,0,-9,9,0,-2,75.14646007590764,0,0,1,41,2,5,1,2,2,2019,1,1,12,0,26,26,15,1,0,1,0,6.330298516242543,6.330298516242543,0,0,0,0,0,0,0,1,1,0,0,0,10.07642957571255,3,49.25,50.21,5,1,0,0,10,3,1,1240.5,0,0,0 +16341,19997,36443,-9,-9,-9,1,1,0,90,3,0,0,0,1,-9,4,3,0,4,0,6.865890151322383,7.110317161271403,3,0,0,0,-9,0,-1014.189371222915,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.045902038351982,0,0,52.43,55.57,6,1,0,0,9,2,1,783,0,0,0 +16341,19998,36444,-9,36443,-9,2,1,1,61,2,0,0,0,3,-9,2,1,0,3,7.986862463879072,7.985363640848344,0,3,0,0,0,-9,0,-1085.372327938052,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,7,39,39,15,1,7,-9,1,6.936402729728056,6.936402729728056,0,0,0,0,0,0,0,1,1,0,.6998901704949131,0,13.46608328167276,3,39.37,58.81,3,1,0,0,9,3,1,1818,0,0,0 +16342,19999,36445,36446,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,8,0,4,0,0,0,0,70,3,2,3,3,3,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,53.45,36.32,3,1,0,0,12,1,0,386,0,0,0 +16342,19999,36446,36445,-9,-9,2,1,0,70,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,-4,0,0,0,0,74,2,2,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,30.58,6,1,0,0,12,1,0,386,0,0,0 +16343,20000,36447,-9,-9,-9,1,1,0,53,3,0,1,0,3,-9,2,1,0,1,7.006310261127437,6.927401913611487,0,4,0,0,0,-9,0,-1100.045055025094,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,33,12,26,28,15,1,12,-9,0,5.070128046374816,5.070128046374816,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.67,33.26,2,1,0,0,13,2,1,697.5,0,0,0 +16343,20000,36448,-9,36447,-9,2,1,1,11,2,0,1,1,3,-9,-9,2,0,3,0,0,0,4,0,0,0,-9,0,-1008.791457167461,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,13,2,1,697.5,0,0,0 +16344,20001,36449,36450,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,2,0,7.599644625855897,7.390679586440537,1,0,-9,28,0,-4,-54.88104197101203,0,0,0,72,3,2,3,3,3,2019,4,2,21,8,0,0,15,4,8,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.628119171747231,0,0,42.12,39.15,2,1,0,0,6,3,1,762,0,0,0 +16344,20001,36450,36449,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,5.604391336030602,6.221102918456411,1,0,-9,28,0,4,18.79982018636357,0,0,0,68,3,2,3,-9,-9,2019,4,1,19,7,0,0,15,4,7,4,0,0,0,1,0,0,0,0,0,0,1,1,0,5.014481962024274,5.742048696536498,0,0,45.17,41.54,6,1,0,0,6,3,1,762,0,0,0 +16345,20002,36451,-9,36453,36452,4,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1056.102289564325,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,3,0,0,6,4,1,1770.5,0,0,0 +16345,20002,36452,36453,-9,-9,1,1,1,35,1,1,3,0,2,-9,2,1,0,5,8.222773434707069,8.454547402919854,0,2,0,-9,14,0,1,-2.674779939050832,0,0,0,34,1,3,1,3,2,2019,1,2,5,0,48,43,15,1,0,1,0,8.598539690099653,8.598539690099653,0,0,0,0,0,0,0,1,1,0,3.687911471105111,0,0,0,35.64,61.08,7,3,0,0,6,4,1,1770.5,0,0,0 +16345,20002,36453,36452,-9,-9,2,1,0,34,1,1,3,0,1,-9,2,1,0,3,9.027975405872558,8.706382308032001,0,2,0,-9,14,0,-1,-90.72054483659977,0,0,1,35,2,5,1,3,2,2019,1,1,6,0,39,46,15,1,0,1,0,21.5044489837496,21.5044489837496,0,0,0,0,0,0,0,1,1,0,3.441499121297434,0,0,0,53.64,48.41,1,3,0,0,6,4,1,1770.5,0,0,0 +16345,20002,36454,-9,36453,36452,3,1,1,6,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-956.4304633943985,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,4,1,1770.5,0,0,0 +16345,20003,36455,-9,-9,-9,5,1,0,30,3,1,3,0,2,-9,2,1,0,2,6.947099796465682,6.823845783144838,0,4,0,-9,0,-9,0,-974.5659490334511,-9,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,18,6,20,0,15,1,6,-9,0,5.4254782808789,5.4254782808789,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.76,36.61,5,3,0,0,6,2,1,445,0,0,0 +16345,20003,36456,-9,36455,-9,6,1,1,4,2,1,3,1,3,-9,-9,2,0,4,0,0,0,4,0,-9,0,-9,0,-1041.018663918135,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,445,0,0,0 +16346,20004,36457,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,2,0,5.027486604133188,4.844928658583875,3,0,0,0,-9,0,-919.9832631705708,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,14,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.613301105891827,5.220423815702456,0,0,41.1,39.66,4,1,0,0,4,2,1,486,0,0,0 +16347,20005,36458,36459,-9,-9,2,1,0,65,1,0,0,0,2,-9,4,3,0,4,0,7.666778185521454,7.862301836121808,1,0,-9,47,0,-1,128.8372500250139,0,0,0,66,1,3,3,3,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.970983692770345,7.71949104406299,0,0,45.47,53.5,7,1,0,0,5,4,1,478.5,0,0,0 +16347,20005,36459,36458,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.152452734410211,7.986145572419342,1,0,-9,47,0,1,-113.9641601503704,0,0,0,65,2,4,3,3,2,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.763205251206692,7.814654046169506,0,0,63.96,30.07,6,1,0,0,5,4,1,478.5,0,0,0 +16348,20006,36460,-9,36465,36463,3,1,1,12,2,0,4,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-944.0413975591555,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,9,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,5,1,0,0,9,3,1,1133.833333333333,0,0,0 +16348,20006,36461,-9,36465,36463,5,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.2949022853612,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,1,1133.833333333333,0,0,0 +16348,20006,36462,-9,36465,36463,6,1,1,7,2,0,4,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-977.3384895106685,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,9,3,1,1133.833333333333,0,0,0 +16348,20006,36463,36465,-9,-9,2,1,1,42,1,0,4,0,2,-9,2,1,0,3,8.53569188150821,8.6768662429154,0,2,0,-9,20,0,-1,-52.48965193538432,0,0,0,43,1,4,1,2,2,2019,1,1,9,0,55,55,15,1,0,1,0,9.307255253210645,9.307255253210645,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,45.63,5,1,0,0,9,3,1,1133.833333333333,0,0,0 +16348,20006,36464,-9,36465,36463,4,1,0,10,2,0,4,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1032.970381195754,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,5,1,0,0,9,3,1,1133.833333333333,0,0,0 +16348,20006,36465,36463,-9,-9,1,1,0,43,1,0,4,0,1,-9,2,1,0,4,6.472543178047241,6.278428003737421,0,2,0,-9,18,0,1,73.09484708014183,0,0,1,42,2,3,1,2,2,2019,1,2,8,0,15,20,15,1,0,1,0,4.090462405675661,4.090462405675661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,5,1,0,0,9,3,1,1133.833333333333,0,0,0 +16349,20007,36466,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-876.7915409139184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,1,6.682826000699903,0,0,0,0,50.99829184606528,1,1,0,0,0,0,0,53,45,6,1,0,0,13,1,1,3291,0,0,0 +16350,20008,36467,-9,-9,-9,1,1,0,57,2,0,0,0,1,-9,2,1,0,2,8.57048410903864,8.65623102276796,0,3,0,0,0,-9,0,-1074.04882135704,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,9,0,60,55,15,1,0,-9,0,12.3574243488885,12.3574243488885,0,0,0,0,0,0,0,0,0,0,6.746769501844275,0,0,0,50.03,39.39,6,1,0,0,9,5,1,350,0,0,0 +16350,20009,36468,-9,36467,-9,2,1,0,26,2,0,0,0,2,-9,2,1,0,3,8.37410516446012,8.19024131787021,0,3,0,0,0,-9,0,-1137.498951524677,0,1,1,-9,-9,-9,-9,1,-9,2019,-9,0,12,2,37,45,15,1,2,-9,1,9.340757515961435,9.340757515961435,0,0,0,0,0,0,0,0,0,0,.6477357957065126,0,0,0,38.86,59.06,5,1,0,0,9,4,1,431,0,0,0 +16350,20010,36469,-9,-9,-9,3,1,0,25,2,0,0,0,3,-9,2,1,0,4,7.897768163569856,8.241857277349837,0,3,0,0,0,-9,0,-951.9889430859492,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,45,0,15,1,2,-9,0,7.170232970991291,7.170232970991291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.08,53.5,4,1,0,0,9,3,1,314,0,0,0 +16351,20011,36470,-9,36472,36473,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-975.4809745897818,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,1088,0,0,0 +16351,20011,36471,-9,36472,36473,4,1,0,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1066.247195608575,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,5,1,1088,0,0,0 +16351,20011,36472,36473,-9,-9,2,1,0,43,1,0,2,0,2,-9,2,1,0,3,8.216321846771207,8.511360213464533,0,2,0,-9,8,0,0,-68.73939141444541,0,0,1,43,1,4,1,-9,-9,2019,1,1,9,0,37,36,15,1,0,1,0,16.86207010153117,16.86207010153117,0,0,0,0,0,0,0,1,1,0,1.447310892216136,0,0,0,49.69,52.99,6,1,0,0,9,5,1,1088,0,0,0 +16351,20011,36473,36472,-9,-9,1,1,1,43,1,0,2,0,1,-9,2,1,0,4,8.445831986653552,8.369794244583902,5.117441561451394,2,0,-9,8,0,0,-5.460155411856767,0,0,0,43,2,3,1,2,1,2019,1,2,7,0,48,38,15,1,0,1,0,12.24264359509871,12.24264359509871,0,0,0,0,0,0,0,1,1,0,5.623569660936494,0,0,0,54.12,42.37,6,1,0,0,9,5,1,1088,0,0,0 +16352,20012,36474,36475,-9,-9,2,1,0,54,1,0,0,0,2,-9,2,1,0,3,8.63519470221018,8.565797532330642,0,1,0,-9,7,0,-3,-35.61471601731107,0,0,0,57,3,3,1,3,3,2019,1,1,9,0,34,34,15,1,0,1,0,16.96440388417518,16.96440388417518,0,0,0,0,0,0,0,0,0,0,4.013447506384854,0,13.66069014703783,3,53.39,44.47,6,1,0,0,13,5,1,1771.5,0,0,0 +16352,20012,36475,36474,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,3,8.03604972649484,7.66853483764542,0,1,0,-9,7,0,3,-62.27457857933906,0,0,0,54,2,3,1,-9,-9,2019,1,2,10,0,40,40,15,1,1,1,0,7.973961813454207,7.973961813454207,0,0,0,0,0,0,0,0,0,0,1.350259724672541,0,0,0,51,49,5,1,0,0,13,5,1,1771.5,0,0,0 +16352,20013,36476,-9,36474,36475,3,1,1,25,2,0,0,0,2,-9,2,1,0,4,8.086705588316702,7.877445427321698,0,3,0,0,0,-9,0,-1145.357478668699,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,37,37,15,1,1,-9,1,8.709369776407566,8.709369776407566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,5,1,0,0,13,4,1,1177,0,0,0 +16353,20014,36477,36478,-9,-9,1,1,0,50,1,0,1,0,2,-9,2,1,0,4,8.100364897893487,8.195755237691079,0,2,0,-9,24,0,3,-43.3920370739717,0,0,0,47,3,1,3,2,2,2019,2,2,11,0,35,45,15,1,0,3,0,8.429113111205695,8.429113111205695,0,0,0,0,0,0,0,1,1,0,3.02658035104875,0,114.9877787963054,2,54.79,55.86,5,1,0,0,6,3,1,851,0,0,0 +16353,20014,36478,36477,-9,-9,2,1,1,47,1,0,1,0,3,-9,8,3,1,1,0,0,0,2,0,-9,24,0,-3,-34.64393441581051,0,0,0,50,2,4,1,2,2,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.38,30.14,3,1,0,0,6,3,1,851,0,0,0 +16354,20015,36479,-9,-9,-9,1,1,0,55,2,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1052.012235630802,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.37,38.64,3,1,0,0,6,1,0,678,0,0,0 +16355,20016,36480,-9,36481,-9,3,1,1,31,2,0,0,0,2,-9,2,1,0,3,8.456944125145542,8.354230361124745,0,3,0,-9,0,0,0,-810.8788108726853,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,47,40,15,1,0,-9,1,9.343152519799471,9.343152519799471,0,0,0,0,0,0,0,0,0,0,1.671073944759167,0,0,0,54.37,54.8,5,1,0,0,2,4,1,542,0,0,0 +16355,20017,36481,36482,-9,-9,1,1,0,55,1,0,0,0,3,-9,2,1,0,3,7.399557911108768,7.171702858888318,5.470713927065479,1,0,-9,3,0,-2,43.54071724933413,0,0,0,57,2,5,3,3,2,2019,2,2,7,0,23,24,15,1,0,4,0,6.564184458689245,6.564184458689245,0,0,0,0,0,0,0,0,0,0,0,5.972306738503398,7.139019316699104,3,58.32,50.22,6,1,0,0,2,4,1,444.5,0,0,0 +16355,20017,36482,36481,-9,-9,2,1,1,57,1,0,0,0,2,-9,4,3,0,5,0,7.719294666515872,7.948544651729623,1,0,-9,3,0,2,98.26307055258454,0,0,0,55,3,3,1,-9,-9,2019,3,1,10,0,0,16,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.305010964873535,8.024329016795807,18.63092045292816,3,57.06,57.76,7,1,0,0,2,4,1,444.5,0,0,0 +16356,20018,36483,36484,-9,-9,2,1,0,52,1,0,0,0,1,-9,1,1,0,3,7.755338800382772,7.912361279903816,0,1,0,-9,8,0,0,-6.687591543835068,0,0,0,52,2,4,1,1,2,2019,1,1,9,0,40,31,15,1,0,1,0,7.199816711465639,7.199816711465639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,51.86,6,1,0,0,5,5,0,1318,0,0,0 +16356,20018,36484,36483,-9,-9,1,1,1,52,1,0,0,0,2,-9,1,1,0,4,9.263628980089164,9.337159960645154,0,1,0,-9,8,0,0,46.72036568618096,0,0,0,52,1,3,1,2,2,2019,1,2,8,0,72,72,15,1,0,1,0,20.26045004651011,20.26045004651011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,6,1,0,0,5,5,0,1318,0,0,0 +16356,20019,36485,-9,36483,36484,3,1,1,22,2,0,0,0,2,-9,7,2,0,5,7.990879436182028,7.761286666254358,0,3,0,0,0,-9,0,-938.324597926062,1,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,40,43,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,61.66,6,1,0,0,5,4,0,338,0,0,0 +16357,20020,36486,36487,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,2,1.948232211841401,1.944369444775915,0,1,0,-9,7,0,3,-13.86940428294141,0,0,0,54,2,3,3,3,3,2019,2,2,23,11,12,12,15,1,11,3,0,.0649356311762844,.0649356311762844,0,0,0,0,0,0,0,1,1,0,6.737488976409251,0,0,0,41.49,46.42,4,1,0,0,5,1,1,338.5,0,0,0 +16357,20020,36487,36486,-9,-9,2,1,0,54,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,7,0,-3,42.48247067556509,0,0,0,57,3,2,1,3,3,2019,3,1,11,0,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,1,0,0,5,1,1,338.5,0,0,0 +16358,20021,36488,-9,-9,-9,1,1,0,79,2,0,0,0,2,-9,4,3,0,2,0,2.675795986271931,2.389218606777928,3,0,0,0,-9,0,-1070.708206860899,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,4,0,0,15,4,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.735732018946795,2.38369901675685,0,0,45.83,30.64,6,1,0,0,4,1,0,359,0,0,0 +16359,20022,36489,-9,-9,-9,1,1,1,35,2,0,0,0,2,-9,1,1,0,4,6.669146937990434,6.449136849849635,0,3,0,-9,0,-9,0,-1099.424570736094,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,45,0,15,1,0,-9,0,1.753926784100261,1.753926784100261,0,0,0,0,0,0,0,0,0,0,8.619046335049303,0,0,0,54.68,58.58,6,1,0,0,10,2,1,220,0,0,0 +16360,20023,36490,36491,-9,-9,2,1,0,79,1,0,0,0,3,-9,4,3,0,2,0,7.497371120585092,7.322741702883935,1,0,-9,7,0,5,-3.627770493251778,0,0,0,74,2,4,3,-9,-9,2019,4,1,15,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.514265944815553,6.855752970632401,0,0,48.2,25.39,7,1,0,0,4,3,0,2210,0,0,0 +16360,20023,36491,36490,-9,-9,1,1,1,74,1,0,0,0,2,-9,4,3,0,4,0,7.062866566363618,6.911327577463732,1,0,-9,7,0,-5,82.41221608824875,0,0,0,79,3,2,3,3,3,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.436130121760254,7.240957562192883,0,0,51.83,57.2,6,1,0,0,4,3,0,2210,0,0,0 +16361,20024,36492,-9,-9,-9,1,1,1,49,2,0,0,0,2,-9,2,1,0,4,8.72282141979896,8.797459795420012,0,3,0,0,0,-9,0,-1074.549589060367,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,45,50,15,1,0,-9,0,12.165175407268,12.165175407268,0,0,0,0,0,0,0,1,1,0,6.722889003496483,0,0,0,51.83,57.2,6,1,0,0,9,5,1,965,0,0,0 +16362,20025,36493,36494,-9,-9,1,1,1,27,1,0,0,0,2,-9,2,1,0,3,8.083414811974025,8.165436074979951,0,1,0,-9,3,0,2,-38.52316519095216,0,1,0,25,1,3,1,-9,-9,2019,1,2,12,1,50,45,15,1,1,1,0,6.565495932896239,6.565495932896239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.1,46.88,6,1,0,0,9,5,1,472.5,0,0,0 +16362,20025,36494,36493,-9,-9,2,1,0,25,1,0,0,0,1,-9,2,1,0,3,8.492344284143195,8.451952307165437,0,1,0,-9,3,0,-2,45.2437080595265,0,1,1,27,2,3,1,-9,-9,2019,1,1,24,9,62,49,15,1,9,1,0,7.112142665098304,7.112142665098304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.39,56.34,5,1,0,0,9,5,1,472.5,0,0,0 +16363,20026,36495,36497,-9,-9,2,1,1,41,1,0,3,0,1,-9,2,1,0,4,9.365005071059292,9.111631714997612,0,2,0,-9,4,0,2,-49.30642761524798,0,0,0,39,2,5,3,-9,-9,2019,2,1,9,0,35,50,15,1,1,3,0,26.9293292453561,26.9293292453561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,5,1,0,0,12,4,1,1399.4,0,0,0 +16363,20026,36496,-9,36497,36495,3,1,0,7,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.584211311039,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,1,0,0,12,4,1,1399.4,0,0,0 +16363,20026,36497,36495,-9,-9,1,1,0,39,1,0,3,0,2,-9,6,3,0,5,0,0,0,2,0,-9,10,0,-2,126.7436089046311,0,0,1,41,1,4,1,-9,-9,2019,3,2,5,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.03,44.82,6,1,0,0,12,4,1,1399.4,0,0,0 +16363,20026,36498,-9,36497,36495,4,1,1,5,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1112.291309479934,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,5,1,0,0,12,4,1,1399.4,0,0,0 +16363,20026,36499,-9,36497,36495,5,1,1,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1047.964866062649,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,5,1,0,0,12,4,1,1399.4,0,0,0 +16364,20027,36500,36501,-9,-9,1,1,1,59,1,0,0,0,2,-9,4,3,0,3,0,6.748272808373667,6.554247867721717,1,0,-9,33,0,1,47.39262004474278,0,0,0,58,2,3,1,3,3,2019,3,2,12,1,0,0,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.567625050414994,6.174240567267869,0,0,34.32,57.25,6,3,0,0,8,5,1,778.5,0,0,0 +16364,20027,36501,36500,-9,-9,2,1,0,58,1,0,0,0,2,-9,2,1,0,3,8.602480164422889,8.575250472383161,0,1,0,-9,35,0,-1,-113.1399270955859,0,0,0,59,2,3,3,3,3,2019,2,1,11,0,37,40,15,1,2,4,0,24.78454528386776,24.78454528386776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,5,5,0,0,8,5,1,778.5,0,0,0 +16364,20028,36502,-9,36501,36500,3,1,1,21,2,0,0,0,2,-9,2,1,0,4,7.758696905074546,7.728547832259169,0,3,0,0,0,-9,0,-1063.741337667267,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,35,0,15,1,1,-9,1,6.103483514257653,6.103483514257653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,2,0,0,8,3,1,342,0,0,0 +16365,20029,36503,-9,-9,-9,1,1,0,79,3,0,0,0,3,-9,4,3,0,3,0,7.1155752865983,7.422937289641743,3,0,-9,0,1,0,-900.2159000982235,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,1.008580206461312,7.188766275266839,0,0,45.08,33.2,6,2,0,0,10,2,1,640,0,0,0 +16366,20030,36504,36505,-9,-9,1,1,1,27,1,0,0,0,1,-9,3,3,0,3,0,0,0,1,0,-9,5,0,-1,-106.2515968824907,0,1,0,28,1,4,1,-9,-9,2019,3,2,12,0,0,32,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.185004147427575,0,0,0,53.14,51.28,6,1,1,0,6,4,1,657.5,0,0,0 +16366,20030,36505,36504,-9,-9,2,1,0,28,1,0,0,0,1,-9,2,1,0,4,8.548600902940894,8.649611383983386,0,1,0,-9,5,0,1,-19.83924794955739,0,1,1,27,1,3,3,-9,-9,2019,2,1,7,1,35,35,15,1,1,3,0,15.53357543601744,15.53357543601744,0,0,0,0,0,0,0,0,0,0,3.021451932796343,0,0,0,58.55,51.64,6,1,0,0,6,4,1,657.5,0,0,0 +16367,20031,36506,-9,-9,-9,1,1,1,70,2,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-951.0297348839216,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,4,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.983075607468314,0,0,0,55,52,6,1,0,0,12,1,1,235,0,0,0 +16368,20032,36507,-9,-9,-9,1,1,0,92,2,0,0,0,3,-9,4,3,0,3,0,7.69329820488282,7.303032087635287,3,0,0,0,-9,0,-1055.574653199019,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.90851510589899,7.512663276080846,0,0,54.72,43.7,6,1,0,0,7,3,1,846,0,0,0 +16369,20033,36508,-9,36509,36511,3,1,0,8,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1027.889047566818,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,764.4,0,0,0 +16369,20033,36509,36511,-9,-9,2,1,0,36,1,1,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,1,-9,-1,3.278005212709557,-9,0,1,37,1,3,1,2,1,2019,3,1,13,4,0,0,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,6,1,0,0,9,3,0,764.4,0,0,0 +16369,20033,36510,-9,36509,36511,4,1,0,5,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-928.4844643849927,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,9,3,0,764.4,0,0,0 +16369,20033,36511,36509,-9,-9,1,1,1,37,1,1,3,0,1,-9,2,1,0,3,8.267934359274099,8.366740513534928,0,2,0,-9,1,-9,1,45.82996121616995,-9,0,0,36,1,5,3,2,1,2019,2,2,12,3,58,0,15,1,3,3,0,8.508849586086251,8.508849586086251,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,47.34,6,1,0,0,9,3,0,764.4,0,0,0 +16369,20033,36512,-9,36509,36511,5,1,0,2,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-920.6828373780198,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,9,3,0,764.4,0,0,0 +16370,20034,36513,-9,36516,36514,3,1,1,14,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1007.108856886521,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,12,4,1,819.25,0,0,0 +16370,20034,36514,36516,-9,-9,2,1,1,48,1,0,2,0,1,-9,2,1,0,1,8.889424260782601,8.750151140378769,0,2,0,-9,6,0,1,79.08146767424536,0,0,0,47,2,4,1,-9,-9,2019,1,1,15,5,47,61,15,1,5,1,0,10.92957172710454,10.92957172710454,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,18.74,5,1,0,0,12,4,1,819.25,0,0,0 +16370,20034,36515,-9,36516,36514,4,1,0,11,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-929.2828707085918,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,5,1,0,0,12,4,1,819.25,0,0,0 +16370,20034,36516,36514,-9,-9,1,1,0,47,1,0,2,0,2,-9,2,1,0,4,8.567422384941148,8.606484041061007,0,2,0,-9,14,0,-1,6.090370054613716,0,0,0,48,1,1,1,1,2,2019,1,2,9,0,45,20,15,1,0,1,0,13.0010183113611,13.0010183113611,0,0,0,0,0,0,0,1,1,0,0,0,0,1,46.9,56.66,6,1,0,0,12,4,1,819.25,0,0,0 +16371,20035,36517,-9,-9,-9,1,1,1,58,3,0,0,0,2,-9,2,1,0,4,7.92777889943855,7.939947570797339,0,3,0,0,0,-9,0,-1049.807160439783,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,50,50,15,1,0,-9,0,7.363549001741064,7.363549001741064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,6,1,0,0,10,4,1,1734,0,0,0 +16372,20036,36518,-9,-9,-9,1,1,0,52,3,0,0,0,2,-9,2,1,0,4,8.137215450904753,8.622990042348006,6.179646306643148,3,0,0,0,-9,0,-908.5125798752554,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,1,40,39,15,1,1,-9,0,14.199426416998,14.199426416998,0,0,0,0,0,0,0,0,0,0,0,6.518090537099896,0,3,51.77,58.57,6,1,0,0,9,5,1,1081,0,0,0 +16373,20037,36519,-9,-9,-9,1,1,1,83,3,0,0,0,3,-9,4,3,0,2,0,4.291898428901697,4.025788568972558,3,0,0,0,-9,0,-1035.232719395915,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,9,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.351595218319198,3.735742683352679,0,0,53.22,32.38,6,1,0,0,10,2,1,47,0,0,0 +16374,20038,36520,-9,36522,36523,3,1,1,16,2,0,2,1,2,-9,7,2,0,5,0,0,0,2,0,0,0,-9,0,-1088.690874656221,-9,1,0,-9,-9,-9,-9,3,1,2019,-9,0,3,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1.269443488353404,3,43.38,62.58,5,3,0,0,9,4,1,741,0,0,0 +16374,20038,36521,-9,36522,36523,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-941.896091458986,-9,0,0,-9,-9,-9,-9,3,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,4,1,741,0,0,0 +16374,20038,36522,36523,-9,-9,1,1,0,48,1,0,2,0,3,-9,2,1,0,3,6.981528776987405,7.070148072615726,0,2,0,-9,8,0,7,-210.5432511254198,0,0,0,41,1,3,1,3,3,2019,1,5,15,3,16,16,15,1,3,1,0,7.437756441668353,7.437756441668353,0,0,0,0,0,0,0,1,1,0,0,0,16.18276750650874,3,43.12,58.55,4,3,0,0,9,4,1,741,0,0,0 +16374,20038,36523,36522,-9,-9,5,1,1,41,1,0,2,0,1,-9,2,1,0,3,9.058973322712927,9.235539185720668,0,2,0,-9,8,0,-7,-72.38473928835599,0,0,0,48,3,3,1,-9,-9,2019,1,1,12,0,40,0,15,1,0,1,0,24.1690499382425,24.1690499382425,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,3,3,0,0,9,4,1,741,0,0,0 +16374,20039,36524,-9,36522,36523,2,1,1,20,2,0,2,0,2,-9,2,1,0,4,7.778921662032154,7.731611451911798,0,3,0,0,0,-9,0,-1047.575694676578,0,1,0,-9,-9,-9,-9,3,1,2019,-9,0,12,2,41,38,15,1,2,-9,1,8.419350649106768,8.419350649106768,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.24,62.14,5,3,0,0,9,3,1,226,0,0,0 +16375,20040,36525,-9,36527,36526,3,1,1,1,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.957039199789,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,9,4,1,2161.666666666667,0,0,0 +16375,20040,36526,36527,-9,-9,1,1,1,30,1,1,1,0,1,-9,2,1,0,4,7.994021407094282,7.841891506459711,0,2,0,-9,4,0,1,55.48369038740503,0,0,0,29,2,3,1,2,2,2019,1,2,13,2,41,44,15,1,2,1,0,8.033283264767849,8.033283264767849,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,64.26000000000001,6,1,0,0,9,4,1,2161.666666666667,0,0,0 +16375,20040,36527,36526,-9,-9,2,1,0,29,1,1,1,0,2,-9,2,1,0,3,7.874171057373586,7.869774227850257,0,2,0,-9,4,0,-1,-19.1382514619261,0,1,1,30,1,4,1,-9,-9,2019,1,1,23,10,14,48,15,1,10,1,0,18.90688091144185,18.90688091144185,0,0,0,0,0,0,0,1,1,0,3.031376252894261,0,0,0,34.95,49.98,5,1,0,0,9,4,1,2161.666666666667,0,0,0 +16376,20041,36528,-9,-9,-9,1,1,0,50,3,0,1,0,2,-9,2,1,0,4,7.980508276072475,7.935041821120437,0,4,0,0,0,-9,0,-973.5614048799308,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,37,37,15,1,0,-9,0,8.927910436148991,8.927910436148991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,5,1,0,0,10,3,1,167,0,0,0 +16376,20042,36529,-9,36528,-9,2,1,1,22,2,0,1,0,1,1,2,1,0,4,7.583807142157699,7.505492840264853,0,3,0,0,0,-9,0,-992.0385389793582,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,1,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.502906515520685,0,0,0,51.83,57.2,5,1,0,0,10,3,1,793,0,0,0 +16376,20043,36530,-9,36528,-9,3,1,1,18,2,0,1,0,2,1,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1028.014469209927,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,2.15986500042083,0,0,0,55.19,54.26,1,1,1,0,10,3,1,971,0,0,0 +16377,20044,36531,-9,36532,36533,7,1,0,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-952.74906201141,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,3,1,614,0,0,0 +16377,20044,36532,36533,-9,-9,1,1,0,47,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,29,0,-1,-48.29055171143869,0,0,0,48,2,3,1,3,1,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,3,0,0,9,3,1,614,0,0,0 +16377,20044,36533,36532,-9,-9,2,1,1,48,1,0,2,0,2,-9,2,1,0,3,7.922716033245147,7.807979867727849,0,2,0,-9,9,0,1,44.6244129675212,-9,0,0,47,3,4,3,3,3,2019,2,1,10,0,45,0,15,1,0,3,0,8.541231110309159,8.541231110309159,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,5,3,0,0,9,3,1,614,0,0,0 +16377,20044,36534,-9,36532,36533,6,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1108.063718146806,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,9,3,1,614,0,0,0 +16377,20045,36535,-9,36532,36533,3,1,0,25,2,0,2,0,2,-9,2,1,0,5,8.143412543194556,7.862188381018278,0,3,0,0,0,-9,0,-867.9672145008805,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,10,2,40,0,15,1,2,-9,1,6.779164269859093,6.779164269859093,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,51.8,7,3,0,0,9,4,1,814,0,0,0 +16377,20046,36536,-9,36532,36533,5,1,0,20,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1064.624529355935,-9,1,1,-9,-9,-9,-9,3,2,2019,-9,0,3,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,63.53,53.47,7,3,0,0,9,1,1,185,0,0,0 +16378,20047,36537,36538,-9,-9,2,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,6.567870226490567,6.420037383026061,1,0,-9,49,0,-3,4.884790175617904,0,0,0,68,2,4,3,-9,-9,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,2.951491601755242,0,0,0,0,1,1,0,0,5.941004543835587,0,0,55.39,35.09,6,1,0,0,5,2,1,130,0,0,0 +16378,20047,36538,36537,-9,-9,1,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,6.99400393341611,6.75213513775135,1,0,-9,49,0,3,-28.22030295547832,0,0,0,65,1,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.83893782307513,7.089790648511554,0,0,60.43,46.44,6,1,0,0,5,2,1,130,0,0,0 +16379,20048,36539,36540,-9,-9,1,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.415608549187317,8.264545039578756,0,1,0,-9,28,0,7,6.02821971572852,0,0,0,45,2,4,1,3,3,2019,1,2,9,0,39,40,15,1,0,1,0,11.32961293388139,11.32961293388139,0,0,0,0,0,0,0,0,0,0,3.305570087036444,0,1.087382678942058,3,45.32,61.53,6,1,0,0,5,4,0,1360,0,0,0 +16379,20048,36540,36539,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,4,8.171087452817059,7.728251051682835,0,1,0,-9,28,0,-7,105.1769299594325,0,0,0,52,2,4,1,2,2,2019,1,1,6,0,36,32,15,1,0,1,0,10.55181982365379,10.55181982365379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,2,1,0,0,5,4,0,1360,0,0,0 +16379,20049,36541,-9,36540,36539,3,1,1,22,2,0,0,0,2,-9,2,1,0,5,7.86548241088177,7.853081090121131,0,3,0,0,0,-9,0,-925.8389353092589,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,45,40,15,1,0,-9,1,6.851340879504337,6.851340879504337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.68,54.24,7,1,0,0,5,3,0,1306,0,0,0 +16380,20050,36542,-9,36543,36544,3,1,1,8,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1041.777332911512,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,4,4,0,1042.666666666667,0,0,0 +16380,20050,36543,36544,-9,-9,1,1,0,27,1,0,1,0,2,-9,5,1,0,4,7.689458761513512,7.725318614505698,0,2,0,-9,6,0,0,-55.31409422197238,0,1,1,27,2,4,1,2,2,2019,1,2,19,6,32,38,15,1,6,1,0,7.693619905115908,7.693619905115908,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.1,51.16,7,1,0,0,4,4,0,1042.666666666667,0,0,0 +16380,20050,36544,36543,-9,-9,2,1,1,27,1,0,1,0,2,-9,2,1,0,4,8.224439547267929,8.293248334585583,0,2,0,-9,6,0,0,28.10533638030061,0,1,0,27,2,4,1,2,2,2019,1,1,10,0,38,38,15,1,1,1,0,11.26515368712304,11.26515368712304,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,4,4,0,1042.666666666667,0,0,0 +16381,20051,36545,-9,-9,-9,1,1,1,54,2,0,0,0,2,-9,2,1,0,4,9.097669125847501,8.783647126370282,0,3,0,0,0,-9,0,-1069.905301955497,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,15,4,40,36,15,1,4,-9,0,22.13984291024533,22.13984291024533,0,0,0,0,0,0,0,0,0,0,0,0,7.870807950301991,3,51.24,58.84,6,1,0,0,8,5,1,235,0,0,0 +16382,20052,36546,-9,-9,-9,1,1,0,68,3,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-878.7626044273858,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.185892006779976,0,0,0,52.25,53.24,5,1,0,0,9,1,0,845,0,0,0 +16383,20053,36547,36548,-9,-9,2,1,0,61,1,0,0,0,2,-9,4,3,0,5,0,6.577838826308635,6.255887321256581,1,0,-9,18,0,4,150.974275211716,0,0,0,57,3,4,1,-9,-9,2019,3,1,8,1,0,38,15,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.880096805762934,5.918630216715817,9.388360488487997,3,57.06,57.76,6,1,0,0,1,2,1,955,0,0,0 +16383,20053,36548,36547,-9,-9,1,1,1,57,1,0,0,0,3,-9,1,1,0,4,6.927677464154683,6.847858939136049,3.627569988169495,1,0,-9,18,0,-4,-6.762637349301851,0,0,0,61,2,5,3,3,2,2019,2,2,11,1,35,35,15,1,1,4,0,3.380343815240614,3.380343815240614,0,0,0,0,0,0,0,0,0,0,0,3.633663997069157,0,3,50.34,56.4,6,1,0,0,1,2,1,955,0,0,0 +16384,20054,36549,36550,-9,-9,6,1,1,44,1,0,4,0,1,-9,1,1,0,3,5.042663450665259,5.14914589047927,0,2,0,-9,20,0,4,67.26309167727074,0,0,0,40,2,1,3,-9,-9,2019,2,1,10,0,35,35,15,1,0,3,0,.498346104784721,.498346104784721,0,0,0,0,0,0,0,1,1,0,7.399035127174914,0,0,0,45.86,54.5,5,3,0,1,6,2,0,473.5,0,0,0 +16384,20054,36550,36549,-9,-9,1,1,0,40,1,0,4,0,2,-9,6,3,0,1,0,0,0,2,0,-9,20,0,-4,-106.3061970679699,0,0,1,44,1,3,1,2,2,2019,3,6,35,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.08,28.39,3,3,0,1,6,2,0,473.5,0,0,0 +16385,20055,36551,-9,-9,-9,1,1,0,84,3,0,0,0,3,-9,4,3,0,3,0,5.346372559001241,5.08177015541674,3,0,0,0,-9,0,-991.5212550601694,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.123634854563552,0,0,54.37,31.64,6,1,0,0,12,2,1,242,0,0,0 +16386,20056,36552,-9,-9,-9,1,1,0,78,2,0,0,0,3,-9,4,3,0,3,0,0,0,3,0,0,0,-9,0,-990.9632924775038,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,0,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,6,1,0,0,8,1,0,412,0,0,0 +16387,20057,36553,36554,-9,-9,2,1,1,59,1,0,0,0,1,-9,2,1,0,4,9.198685936362729,9.093615141941296,0,1,0,-9,39,0,3,80.46258205441823,0,0,0,56,1,3,1,1,2,2019,1,1,7,0,47,45,15,1,0,1,0,26.97122709369657,26.97122709369657,0,0,0,0,0,0,0,0,0,0,2.494383891908343,0,5.500283031098016,3,54.2,57.49,5,1,0,0,9,5,1,2039,0,0,0 +16387,20057,36554,36553,-9,-9,1,1,0,56,1,0,0,0,1,-9,1,1,0,3,5.115750300081054,4.984123113642368,0,1,0,-9,39,0,-3,24.13609961998234,0,0,0,59,1,4,1,2,2,2019,1,2,17,5,0,0,15,1,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,3,1,0,1,9,5,1,2039,0,0,0 +16387,20058,36555,-9,36554,36553,3,1,1,23,2,0,0,0,2,-9,2,1,0,4,7.964429665512002,8.083816272464984,0,3,0,0,0,-9,0,-959.6360417002599,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,13,3,45,0,15,1,3,-9,1,7.086607389475278,7.086607389475278,0,0,0,0,0,0,0,0,0,0,.6100387269522984,0,0,0,42.86,55.92,4,1,0,0,9,3,1,702,0,0,0 +16388,20059,36556,36559,-9,-9,1,1,1,51,1,0,2,0,1,-9,2,1,0,3,8.563716276433839,8.242434137022432,0,2,0,-9,24,0,4,26.40289011315144,0,0,0,47,2,2,1,2,2,2019,1,2,8,0,40,39,15,1,0,1,0,12.87268895864262,12.87268895864262,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.24,46.7,3,1,0,1,8,3,1,1017.5,0,0,0 +16388,20059,36557,-9,36559,36556,6,1,1,14,2,0,2,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-1025.720020718577,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,2,0,0,8,3,1,1017.5,0,0,0 +16388,20059,36558,-9,36559,36556,5,1,0,17,2,0,2,0,2,1,3,3,0,4,0,0,0,2,0,0,0,-9,0,-969.3234814848166,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,9,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.69,59.88,5,2,1,1,8,3,1,1017.5,0,0,0 +16388,20059,36559,36556,-9,-9,2,1,0,47,1,0,2,0,2,-9,2,1,0,2,0,4.488083836278945,4.736612849760459,2,0,-9,24,0,-4,-94.8215635511288,0,0,0,51,1,3,1,2,3,2019,1,1,14,3,0,0,15,1,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.848689698967093,0,0,0,50.52,47.59,3,5,0,1,8,3,1,1017.5,0,0,0 +16388,20060,36560,-9,36559,36556,3,1,0,20,2,0,2,1,2,0,7,2,0,4,5.919594585808931,5.884824621058797,0,3,0,0,0,-9,0,-1043.148725848196,-9,1,1,-9,-9,-9,-9,2,1,2019,-9,0,16,5,12,0,15,2,5,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.43,59.41,5,2,0,0,8,2,1,442,0,0,0 +16388,20061,36561,-9,36559,36556,4,1,1,19,2,0,2,1,2,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1068.682230250792,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,6,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.96,55.09,1,2,0,0,8,1,1,602,0,0,0 +16389,20062,36562,36563,-9,-9,2,1,1,78,1,0,0,0,2,-9,4,3,0,3,0,8.463181076115815,7.995134018012124,1,0,-9,55,0,4,31.29457148998991,0,0,0,74,3,3,3,3,2,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,.6614804586996914,71.88582197128544,0,0,0,0,1,1,0,7.417137500929368,7.872371508840279,0,0,54,46,6,1,0,0,5,3,1,684,0,0,0 +16389,20062,36563,36562,-9,-9,1,1,0,74,1,0,0,0,3,-9,4,3,0,3,0,7.077123182330694,6.616420680892264,1,0,-9,55,0,-4,-49.33796704310165,0,0,0,78,2,3,3,3,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,4.234907046883383,6.794393660513892,73.79075070146089,1,49.85,37.84,6,1,0,0,5,3,1,684,0,0,0 +16390,20063,36564,-9,-9,-9,1,1,0,38,2,0,0,0,1,-9,2,1,0,2,8.572595817214401,8.50007332333672,0,3,0,0,0,-9,0,-929.0525039785721,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,19,8,38,37,15,1,8,-9,0,17.98703563569258,17.98703563569258,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,21.95,3,1,0,0,13,5,1,916,0,0,0 +16391,20064,36565,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,4,0,7.40992398021127,7.579331219820014,3,0,0,0,-9,0,-880.7910988458493,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.399107772393871,0,0,52.24,44.87,4,1,0,0,11,3,1,264,0,0,0 +16392,20065,36566,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,1,0,6.516894808394233,6.924650221790182,3,0,0,0,-9,0,-1061.467016121788,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.984756643970219,7.208103095795337,0,0,36.83,19.91,2,1,0,1,13,2,1,402,0,0,0 +16393,20066,36567,-9,36570,-9,5,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-970.9423130846318,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,0,1172.5,0,0,0 +16393,20066,36568,-9,36570,-9,4,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-952.9060510150798,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,9,3,0,1172.5,0,0,0 +16393,20066,36569,-9,36570,-9,3,1,1,16,2,0,3,1,3,-9,7,2,0,4,0,4.159333354045023,3.802783460033147,4,0,0,0,-9,0,-927.2680229507736,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,4,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.836975168094371,0,0,0,48.88,47.81,5,1,0,0,9,3,0,1172.5,0,0,0 +16393,20066,36570,-9,-9,-9,1,1,0,43,3,0,3,0,2,-9,2,1,0,2,8.033939180770306,8.009008307576824,6.248670943007183,4,0,-9,0,1,0,-1056.07293454781,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,34,12,26,27,15,1,12,-9,0,10.01807318822422,10.01807318822422,0,0,0,0,0,0,0,1,1,0,6.59927533693391,0,0,0,32.2,32.64,2,1,0,0,9,3,0,1172.5,0,0,0 +16393,20067,36571,-9,36570,-9,2,1,0,19,2,0,3,0,2,1,2,1,0,3,8.247974842346263,7.759750571733909,0,3,0,0,0,-9,0,-1112.976186904163,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,14,2,50,0,15,1,2,-9,1,6.647752743519417,6.647752743519417,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.84,60.85,4,1,0,0,9,4,0,501,0,0,0 +16394,20068,36572,-9,-9,-9,1,1,1,81,3,0,0,0,2,-9,4,3,0,3,0,6.803759938183282,7.065408210721881,3,0,0,0,-9,0,-977.8703839633291,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,1,19.00129591481512,0,131.5997078723428,126.4526094037153,0,154.6186776650236,1,1,0,6.12781389751007,6.918277455930686,0,0,50.28,51.35,5,1,0,0,12,2,1,198,0,0,0 +16395,20069,36573,36574,-9,-9,1,1,1,77,1,0,0,0,3,-9,4,3,0,3,0,4.919209802649228,5.397638898460616,1,0,-9,10,0,5,5.760621179771793,0,0,0,72,3,2,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.814774111815698,4.880017938845807,0,0,54.36,39.67,5,1,0,0,9,2,1,413.5,0,0,0 +16395,20069,36574,36573,-9,-9,2,1,0,72,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,10,0,-5,-191.4778894371364,0,0,0,77,3,3,3,3,3,2019,4,1,8,1,0,0,15,4,1,4,0,0,0,1,0,4.97020937720524,0,0,0,0,1,1,0,.9200321047775494,0,0,0,48.27,30.92,5,1,0,0,9,2,1,413.5,0,0,0 +16396,20070,36575,36576,-9,-9,2,1,0,56,1,0,0,0,1,-9,2,1,0,3,8.361106621446368,8.780820137515637,0,1,0,-9,4,0,-16,-5.603551973074016,0,0,0,72,1,4,3,-9,-9,2019,2,1,17,6,37,37,15,1,6,4,0,12.71500432674606,12.71500432674606,0,0,0,0,0,0,0,1,1,0,1.402421632272083,0,0,0,47.31,42.76,5,1,0,0,5,4,1,1275,0,0,0 +16396,20070,36576,36575,-9,-9,1,1,1,72,1,0,0,0,1,-9,4,3,0,4,0,7.518682110556155,7.511485403153118,1,0,-9,4,0,16,2.004842504866569,0,0,0,56,1,3,1,2,2,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,.8358652267543248,7.728832977086783,0,0,52.48,54.33,6,1,0,0,5,4,1,1275,0,0,0 +16397,20071,36577,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-933.6257422540848,1,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,1,1,0,0,13,1,0,328,0,0,0 +16398,20072,36578,36579,-9,-9,2,1,0,40,1,0,1,0,2,-9,3,3,0,3,0,7.066245376258534,7.055418025664188,2,0,-9,6,0,-4,-37.90425077605451,0,0,1,44,2,3,1,2,1,2019,3,1,12,4,0,38,15,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.601298742385357,5.8145207218585,0,0,38.65,32.19,5,1,1,0,8,4,1,1010.666666666667,0,0,0 +16398,20072,36579,36578,-9,-9,1,1,1,44,1,0,1,0,2,-9,2,1,0,3,8.524353252450261,8.313606046398727,0,2,0,-9,6,0,4,-133.3199287610786,0,0,0,40,2,3,3,-9,-9,2019,2,2,11,0,48,44,15,1,2,3,0,11.67163143769422,11.67163143769422,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.28,45.57,6,1,0,0,8,4,1,1010.666666666667,0,0,0 +16398,20072,36580,-9,36578,36579,4,1,0,13,2,0,1,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-1050.482557545174,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,5,1,0,0,8,4,1,1010.666666666667,0,0,0 +16398,20073,36581,-9,36578,36579,3,1,0,19,2,0,1,0,2,-9,2,1,0,3,7.093303186325691,7.232500542427919,0,3,0,0,0,-9,0,-880.193945057234,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,7,0,54,52,15,1,0,-9,1,2.641370658741192,2.641370658741192,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,7,1,0,0,8,2,1,434,0,0,0 +16399,20074,36582,36584,-9,-9,2,1,1,47,1,0,2,0,2,-9,2,1,0,4,8.634710600093886,8.499433417783097,0,2,0,-9,1,-9,3,43.63809485443188,-9,0,0,44,2,4,3,2,2,2019,2,1,9,0,37,0,15,1,1,3,0,18.98592096948998,18.98592096948998,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,6,1,0,0,2,3,1,1178.25,0,0,0 +16399,20074,36583,-9,36584,36582,4,1,1,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-1102.25798548117,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,5,1,0,0,2,3,1,1178.25,0,0,0 +16399,20074,36584,36582,-9,-9,1,1,0,44,1,0,2,0,2,-9,3,3,0,4,0,0,0,2,0,-9,1,-9,-3,39.54305447054721,-9,0,1,47,2,4,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,1,1,0,2,3,1,1178.25,0,0,0 +16399,20074,36585,-9,36584,36582,3,1,0,17,2,0,2,1,2,-9,7,2,0,3,0,0,0,2,0,-9,0,-9,0,-935.0923895722777,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,13,2,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,57.72,3,1,0,0,2,3,1,1178.25,0,0,0 +16400,20075,36586,36587,-9,-9,2,1,1,36,1,0,0,0,2,-9,2,1,0,2,8.103429186900321,8.415874651058715,0,1,0,-9,4,0,4,-5.300011542898027,0,0,0,32,1,3,1,-9,-9,2019,1,1,21,7,38,38,15,1,7,1,0,9.412059675472889,9.412059675472889,0,0,0,0,0,0,0,0,0,0,3.141705335996531,0,0,0,43.36,46.75,4,1,0,0,10,5,1,1046.5,0,0,0 +16400,20075,36587,36586,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,3,8.407231645040786,8.31552220663716,0,1,0,-9,4,0,-4,137.5699836686873,0,0,1,36,2,2,1,2,2,2019,1,2,11,3,37,37,15,1,3,1,0,16.39240679998588,16.39240679998588,0,0,0,0,0,0,0,0,0,0,1.560658472277751,0,0,0,43.88,51.23,6,1,0,0,10,5,1,1046.5,0,0,0 +16401,20076,36588,-9,36589,36590,4,1,0,16,2,0,1,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1020.391031418469,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,19,7,0,0,15,2,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.62,57.75,4,1,0,0,2,3,1,472,0,0,0 +16401,20076,36589,36590,-9,-9,1,1,0,46,1,0,1,0,2,1,2,1,0,2,6.814698497307028,6.823390000771706,0,2,0,-9,14,0,0,55.40890191603538,-9,0,0,46,2,2,1,2,-9,2019,1,2,9,0,17,0,15,1,0,1,0,5.781782974505168,5.781782974505168,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,30.17,6,1,0,0,2,3,1,472,0,0,0 +16401,20076,36590,36589,-9,-9,2,1,1,46,1,0,1,0,2,-9,2,1,0,2,7.895101708844178,7.921786191418335,0,2,0,-9,21,0,0,-13.94650650592179,0,0,0,46,2,2,1,2,-9,2019,1,1,15,3,39,42,15,1,3,1,0,7.651901985314423,7.651901985314423,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,41.9,3,1,0,0,2,3,1,472,0,0,0 +16401,20077,36591,-9,36589,36590,3,1,0,22,2,0,1,0,2,-9,2,1,0,2,7.791446917302527,7.694136752892677,0,3,0,0,0,-9,0,-1060.943787815796,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,2,40,20,15,1,2,-9,1,7.25104523710756,7.25104523710756,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.71,38.47,5,1,0,0,2,4,1,835,0,0,0 +16402,20078,36592,36593,-9,-9,2,1,1,78,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,5,0,0,0,0,73,3,3,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,6,1,0,0,13,1,1,232,0,0,0 +16402,20078,36593,36592,-9,-9,1,1,0,73,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,50,0,-5,0,0,0,0,78,3,3,3,3,3,2019,4,2,10,0,0,0,15,4,1,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,3.368312851402544,1,51,46,6,1,0,0,13,1,1,232,0,0,0 +16403,20079,36594,-9,-9,-9,1,1,0,68,3,0,0,0,2,-9,4,3,0,1,0,5.34931602482123,5.706740955831181,3,0,0,0,-9,0,-1024.421751599136,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.91137641401227,5.370686912131294,0,0,30.37,24.2,6,1,0,0,9,2,1,967,0,0,0 +16404,20080,36595,36596,-9,-9,2,1,1,74,1,0,0,0,3,-9,2,1,0,5,7.2320285724019,7.095204994375707,4.93469172353241,1,0,-9,27,0,16,-28.68517709503569,0,0,0,58,2,4,1,3,3,2019,1,1,5,0,24,24,15,1,0,1,0,7.431586132076699,7.431586132076699,0,0,0,0,0,0,0,1,1,0,4.501380375006424,4.845090879543061,0,0,62.39,56.71,7,1,0,0,2,3,1,504.5,0,0,0 +16404,20080,36596,36595,-9,-9,1,1,0,58,1,0,0,0,2,-9,2,1,0,4,8.194603064933714,8.200032831139865,0,1,0,-9,36,0,-16,34.95523362973964,0,0,0,74,3,5,1,2,2,2019,1,2,8,0,36,53,15,1,0,1,0,9.096945535082801,9.096945535082801,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,2,3,1,504.5,0,0,0 +16405,20081,36597,36598,-9,-9,2,1,0,24,1,0,0,0,1,-9,2,1,0,3,8.099662652832453,7.981404027885817,0,1,0,-9,1,-9,-5,1.198326956764795,-9,1,1,29,1,5,1,-9,-9,2019,1,1,10,0,37,0,15,1,0,1,0,10.40473417145407,10.40473417145407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,5,1,0,0,4,5,0,1689.5,0,0,0 +16405,20081,36598,36597,-9,-9,1,1,1,29,1,0,0,0,1,-9,1,1,0,5,9.429881459403267,9.78096133587761,0,1,0,1,1,-9,5,53.18983307883622,0,1,0,24,1,3,1,-9,-9,2019,1,2,7,0,40,45,15,1,0,1,0,43.80622996187154,43.80622996187154,0,0,0,0,0,0,0,0,0,0,2.164185550310081,0,0,0,57.06,57.76,7,1,0,0,4,5,0,1689.5,0,0,0 +16406,20082,36599,36600,-9,-9,2,1,1,62,1,0,0,0,1,-9,4,3,0,4,6.217600927556384,8.39328210748962,8.509458879964196,1,0,-9,42,0,-1,32.17462060246836,0,0,0,63,1,4,3,2,2,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.513741517133493,8.494302738734186,0,0,60.12,54.8,6,1,0,0,4,5,1,1916.5,0,0,0 +16406,20082,36600,36599,-9,-9,1,1,0,63,1,0,0,0,1,-9,4,3,0,4,0,7.43737641221138,7.896656063226883,1,0,-9,42,0,1,48.95939604429826,0,0,0,62,1,4,3,2,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.990673023433057,7.626382541883882,0,0,38.69,61.75,6,1,0,0,4,5,1,1916.5,0,0,0 +16407,20083,36601,36604,-9,-9,1,1,0,33,1,1,3,0,2,-9,1,1,0,3,5.034323151953199,5.735700244731875,5.120127386459588,2,0,-9,5,0,-1,46.26433171517564,0,0,1,34,2,4,1,2,2,2019,1,3,7,0,15,0,15,1,0,1,0,1.027850455015428,1.027850455015428,0,0,0,0,0,0,0,1,1,0,5.78630401023466,0,0,0,59.14,47.33,6,1,0,0,6,3,1,627,0,0,0 +16407,20083,36602,-9,36601,36604,4,1,0,3,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-912.4968919248482,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,6,3,1,627,0,0,0 +16407,20083,36603,-9,36601,36604,2,1,1,10,2,1,3,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-958.4085942829739,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,6,3,1,627,0,0,0 +16407,20083,36604,36601,-9,-9,3,1,1,34,1,1,3,0,2,-9,2,1,0,4,8.389631728672567,8.791485093156961,0,2,0,-9,5,0,1,108.0389825171587,0,0,0,33,2,3,1,-9,-9,2019,1,1,10,0,50,63,15,1,1,1,0,10.44395384262749,10.44395384262749,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,5,1,0,0,6,3,1,627,0,0,0 +16407,20083,36605,-9,36601,36604,5,1,1,1,2,1,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-902.7048004452372,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,6,3,1,627,0,0,0 +16408,20084,36606,36607,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,3,7.916191734728551,8.008297795365362,0,1,0,-9,2,0,1,-52.02749867771484,0,0,0,40,2,4,1,2,2,2019,1,2,12,0,37,37,15,1,0,1,0,8.748922212921254,8.748922212921254,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52,54.51,4,1,0,0,2,4,1,391.5,0,0,0 +16408,20084,36607,36606,-9,-9,2,1,0,40,1,0,0,0,2,-9,2,1,0,4,8.005741785890445,7.810413743423938,0,1,0,-9,2,0,-1,58.5042739531472,-9,0,1,41,2,3,1,-9,-9,2019,1,1,16,4,39,0,15,1,4,1,0,8.923626378383844,8.923626378383844,0,0,0,0,0,0,0,0,0,0,0,0,4.708782948046601,3,36.2,64.19,6,1,0,0,2,4,1,391.5,0,0,0 +16409,20085,36608,-9,36609,-9,2,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-954.5825050993284,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,2,0,0,7,2,0,284,0,0,0 +16409,20085,36609,-9,-9,-9,1,1,0,32,2,0,2,0,2,-9,6,3,0,2,5.885102278845085,6.669526319866102,5.694798007401312,4,0,0,0,-9,0,-1051.670805175211,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,30,12,4,4,15,3,12,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.356542937248637,0,76.2541260162611,3,11.77,42.33,1,1,0,1,7,2,0,284,0,0,0 +16409,20085,36610,-9,36609,-9,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-975.136430131513,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,2,0,284,0,0,0 +16410,20086,36611,36612,-9,-9,1,1,0,40,1,0,0,0,1,-9,2,1,0,4,9.075158684595454,8.825355796179581,0,1,0,-9,16,0,-4,-59.31405760132684,0,0,1,44,2,3,1,2,2,2019,1,2,8,0,44,39,15,1,0,1,0,27.00274511585451,27.00274511585451,0,0,0,0,0,0,0,0,0,0,3.601689057701881,0,0,0,48.87,58.55,6,1,0,0,11,5,1,897,0,0,0 +16410,20086,36612,36611,-9,-9,2,1,1,44,1,0,0,0,2,-9,2,1,0,3,9.120732906317697,9.063135002166115,0,1,0,-9,6,0,4,-8.581537222168615,0,0,0,40,1,4,1,-9,-9,2019,1,1,11,0,41,45,15,1,0,1,0,26.13306470383962,26.13306470383962,0,0,0,0,0,0,0,0,0,0,6.214771233488284,0,0,0,48.45,57.49,6,1,0,0,11,5,1,897,0,0,0 +16411,20087,36613,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,7.041195748995164,6.89978039440234,3,0,0,0,-9,0,-974.123395834023,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.817736777713102,0,0,53.82,50.73,7,1,0,0,13,2,1,442,0,0,0 +16412,20088,36614,-9,36615,36617,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-996.7705583987918,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,5,1,0,0,9,5,1,575.75,0,0,0 +16412,20088,36615,36617,-9,-9,1,1,0,41,1,0,2,0,1,-9,1,1,0,3,8.758121281537003,8.932057336293799,0,2,0,-9,13,0,4,-85.19643963898349,0,0,1,37,1,3,1,2,2,2019,1,2,16,6,10,3,15,1,6,1,0,70.99995884209982,70.99995884209982,0,0,0,0,0,0,0,0,0,0,7.162394197213159,0,0,0,45.09,26.67,6,1,0,0,9,5,1,575.75,0,0,0 +16412,20088,36616,-9,36615,36617,3,1,0,10,2,0,2,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1004.674651815127,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,5,1,0,0,9,5,1,575.75,0,0,0 +16412,20088,36617,36615,-9,-9,2,1,1,37,1,0,2,0,1,-9,2,1,0,3,9.229624953888429,9.206834700274621,0,2,0,-9,10,0,-4,-78.70327380777348,0,0,0,41,1,3,1,-9,-9,2019,1,1,11,0,45,40,15,1,0,1,0,31.71943621672188,31.71943621672188,0,0,0,0,0,0,0,0,0,0,8.344065694802072,0,0,0,49.04,55.86,6,1,0,0,9,5,1,575.75,0,0,0 +16413,20089,36618,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-975.4543669201239,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.48999999999999,13.77,5,1,0,0,4,1,0,938,0,0,0 +16414,20090,36619,-9,-9,-9,1,1,0,57,3,0,0,0,3,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-931.4927781561698,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.52,13.76,6,1,0,0,12,1,0,1074,0,0,0 +16415,20091,36620,-9,-9,-9,1,1,1,56,3,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-986.1448265183332,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,5,1,1,1,8,1,0,735,0,0,0 +16416,20092,36621,36622,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,4,0,8.543194133766875,7.998374269127419,1,0,-9,58,0,0,93.73766173590937,0,0,0,77,1,4,3,2,2,2019,4,2,13,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.901487152861619,8.648158644052067,0,0,51.81,57.22,6,2,0,0,7,5,1,533.5,0,0,0 +16416,20092,36622,36621,-9,-9,2,1,0,77,1,0,0,0,1,-9,4,3,0,4,0,8.780524519095303,8.88837468216602,1,0,-9,55,0,0,-51.39706871196669,0,0,0,77,1,4,3,2,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.577764874812548,8.989524744735434,0,0,51.77,58.57,6,1,0,0,7,5,1,533.5,0,0,0 +16417,20093,36623,-9,-9,-9,1,1,0,35,2,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-924.5156088075059,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.1,35.07,3,1,0,0,10,1,0,93,0,0,0 +16418,20094,36624,36625,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,7,0,-2,-166.9665705184282,0,0,0,79,3,3,3,3,3,2019,4,1,10,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,6,1,0,0,10,2,0,2405.5,0,0,0 +16418,20094,36625,36624,-9,-9,1,1,1,79,1,0,0,0,3,-9,4,3,0,3,0,7.471374426140132,7.459787891673406,1,0,-9,58,0,2,137.9215563670443,0,0,0,77,2,3,3,3,3,2019,4,2,16,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.42443563515524,0,0,45.43,29.01,4,1,0,0,10,2,0,2405.5,0,0,0 +16419,20095,36626,-9,-9,-9,1,1,0,49,3,0,0,0,1,-9,2,1,0,5,9.011950597295089,8.738577790815926,0,3,0,0,0,-9,0,-1052.836400149195,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,38,15,1,0,-9,0,20.29871017106537,20.29871017106537,0,0,0,0,0,0,0,1,1,0,.5007584183312332,0,0,0,62.39,56.71,6,1,0,0,7,5,1,979,0,0,0 +16420,20096,36627,-9,-9,-9,1,1,1,56,3,0,0,0,3,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1109.112458183881,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,5,1,0,1,2,1,0,905,0,0,0 +16421,20097,36628,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,4,0,7.168671558085028,7.231198374609431,3,0,0,0,-9,0,-962.6944318668532,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.798974225434376,6.848614189335487,0,0,47.07,55.18,5,1,0,0,10,2,1,1935,0,0,0 +16422,20098,36629,36633,-9,-9,2,1,1,38,1,0,2,0,2,-9,2,1,0,3,8.363655417900162,8.056957519947812,0,2,0,-9,20,0,-5,-26.94101177332015,0,0,0,43,2,4,3,-9,3,2019,2,1,6,0,80,45,15,1,0,3,0,6.678526594727606,6.678526594727606,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.33,53.46,6,1,0,0,6,3,1,734.2,0,0,0 +16422,20098,36630,-9,36633,36629,3,1,0,17,2,0,2,0,2,-9,2,3,0,4,6.4962955755317,6.664064045817393,0,2,0,0,0,-9,0,-1106.445647054763,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,25,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,4,1,0,0,6,3,1,734.2,0,0,0 +16422,20098,36631,-9,36633,36629,5,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1028.529347495939,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,5,1,0,0,6,3,1,734.2,0,0,0 +16422,20098,36632,-9,36633,36629,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-999.9607676888486,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,6,3,1,734.2,0,0,0 +16422,20098,36633,36629,-9,-9,1,1,0,43,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,18,0,5,.8101583996604997,0,0,1,38,2,3,1,3,-9,2019,3,2,6,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.15,52.91,7,1,0,0,6,3,1,734.2,0,0,0 +16423,20099,36634,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,4,3,0,3,0,7.786516524807482,7.634776966705682,3,0,0,0,-9,0,-864.3792977323404,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.642863083410743,7.666556673229735,9.223451019937599,3,55.31,42.2,5,1,0,0,2,3,1,173,0,0,0 +16424,20100,36635,36636,-9,-9,1,1,0,60,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,30,0,3,57.12450802338913,0,0,0,57,2,5,1,2,2,2019,3,2,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.557738444905402,0,0,0,50.71,52.35,6,1,0,0,8,3,1,359,0,0,0 +16424,20100,36636,36635,-9,-9,2,1,1,57,1,0,0,0,2,-9,1,1,0,5,8.022187941213087,8.223490415830661,0,1,0,-9,10,0,-3,48.26915813422465,0,0,0,60,2,3,3,-9,-9,2019,2,1,10,0,20,20,15,1,0,3,0,19.05276586359857,19.05276586359857,0,0,0,0,0,0,0,0,0,0,10.27160271529946,0,0,3,55.17,53.03,7,1,0,0,8,3,1,359,0,0,0 +16424,20101,36637,-9,36635,36636,3,1,1,24,2,0,0,0,1,-9,2,1,0,3,7.963734683062916,8.177751235819571,0,3,0,0,0,-9,0,-1008.122670382297,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,17,5,50,40,15,1,5,-9,1,8.254392090489441,8.254392090489441,0,0,0,0,0,0,0,0,0,0,3.903430503795134,0,0,0,41.2,59.37,3,1,0,0,8,4,1,867,0,0,0 +16425,20102,36638,-9,36639,36640,3,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-966.5197976647482,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,9,4,1,788,0,0,0 +16425,20102,36639,36640,-9,-9,1,1,0,41,1,0,2,0,2,-9,1,1,0,4,5.950254417279996,5.993434866029429,0,2,0,-9,16,0,-1,39.46588571340634,0,0,1,42,1,3,1,3,3,2019,1,2,12,0,25,31,15,1,0,1,0,1.713809116123781,1.713809116123781,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,6,1,0,0,9,4,1,788,0,0,0 +16425,20102,36640,36639,-9,-9,2,1,1,42,1,0,2,0,1,-9,2,1,0,3,8.678370612866711,9.215173285235394,0,2,0,-9,17,0,1,-39.280450343603,0,0,0,41,2,4,1,1,1,2019,1,1,15,3,45,50,15,1,3,1,0,15.11106774714299,15.11106774714299,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.62,45.88,6,1,0,0,9,4,1,788,0,0,0 +16426,20103,36641,-9,-9,-9,1,1,0,69,3,0,0,0,2,-9,4,3,0,3,0,7.512178280695712,7.640047941999861,3,0,0,0,-9,0,-938.0860567689635,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.387453161453498,7.540178152563216,0,0,55.36,51.57,2,1,0,0,12,3,1,551,0,0,0 +16427,20104,36642,36645,-9,-9,1,1,1,37,1,1,2,0,1,-9,2,1,0,2,8.554738990070707,8.492513124405848,0,2,0,-9,7,0,-4,46.85457009747996,0,0,0,41,1,4,1,2,2,2019,1,2,20,7,43,41,15,1,7,1,0,12.89420682488332,12.89420682488332,0,0,0,0,0,0,0,1,1,0,3.801841948733119,0,0,0,40.73,49.19,3,3,0,1,8,4,1,1048.75,0,0,0 +16427,20104,36643,-9,36645,36642,4,1,0,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1098.343317361979,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,2,0,0,8,4,1,1048.75,0,0,0 +16427,20104,36644,-9,36645,36642,3,1,1,3,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1139.969733912437,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,2,0,0,8,4,1,1048.75,0,0,0 +16427,20104,36645,36642,-9,-9,2,1,0,41,1,1,2,0,1,-9,2,1,0,4,8.354145085780603,8.380973955904969,6.799176928170467,2,0,-9,7,0,4,68.62013871657317,0,0,1,37,1,2,1,3,1,2019,1,1,12,2,29,33,15,1,2,1,0,10.66094490052748,10.66094490052748,0,0,0,0,0,0,0,1,1,0,7.141751864728109,0,0,0,50.06,43.02,6,1,0,1,8,4,1,1048.75,0,0,0 +16428,20105,36646,36647,-9,-9,2,1,1,52,1,0,0,0,2,-9,2,1,0,4,8.591381126694669,8.884320407363768,6.640071649998349,1,0,-9,34,0,0,54.82405534000938,0,0,0,52,2,4,1,2,2,2019,1,1,10,0,47,55,15,1,0,1,0,12.38390546165516,12.38390546165516,0,0,0,0,0,0,0,0,0,0,0,6.979116299743695,0,0,51.24,58.84,6,1,0,0,1,5,1,423,0,0,0 +16428,20105,36647,36646,-9,-9,1,1,0,52,1,0,0,0,2,-9,2,1,0,4,7.495584078007993,8.219437254158366,0,1,0,-9,34,0,0,-26.14971092141571,0,0,0,52,2,4,1,3,2,2019,1,2,6,0,35,35,15,1,0,1,0,7.462253987774591,7.462253987774591,0,0,0,0,0,0,0,0,0,0,0,0,10.22883624564398,3,57.16,56.15,6,1,0,0,1,5,1,423,0,0,0 +16428,20106,36648,-9,36647,36646,3,1,0,29,2,0,0,0,2,-9,2,1,0,3,8.531032270765131,8.304532210933841,0,3,0,0,0,-9,0,-1064.395157877266,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,4,0,45,48,15,1,0,-9,1,11.37690638826372,11.37690638826372,0,0,0,0,0,0,0,0,0,0,.5401266294225741,0,0,0,52,54.51,6,1,0,0,1,4,1,300,0,0,0 +16429,20107,36649,-9,36651,36653,9,1,1,4,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.0806131420462,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,7,3,1,578.2,0,0,0 +16429,20107,36650,-9,36651,36653,8,1,0,6,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1062.049843221819,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,7,3,1,578.2,0,0,0 +16429,20107,36651,36653,-9,-9,2,1,0,45,1,0,5,0,2,-9,2,1,0,5,6.665935983026089,6.584626787815402,0,2,0,-9,8,0,-2,-91.1558593366326,0,0,0,47,2,4,1,3,3,2019,1,1,8,0,10,0,15,1,0,1,0,11.19550972784107,11.19550972784107,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,4,1,0,0,7,3,1,578.2,0,0,0 +16429,20107,36652,-9,36651,36653,7,1,1,10,2,0,5,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-958.3835586685323,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,3,1,578.2,0,0,0 +16429,20107,36653,36651,-9,-9,1,1,1,47,1,0,5,0,2,-9,2,1,0,4,8.84564859278006,8.550429923568037,0,2,0,-9,8,0,2,-31.60176806149207,0,0,0,45,2,5,1,3,3,2019,1,2,5,0,42,60,15,1,0,1,0,15.97222610383625,15.97222610383625,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,6,1,0,0,7,3,1,578.2,0,0,0 +16429,20108,36654,-9,36651,36653,3,1,1,21,2,0,5,0,2,-9,2,1,0,3,7.770244678375001,7.494314342771239,0,3,0,0,0,-9,0,-1023.469615031781,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,30,30,15,1,0,-9,1,6.894348151796326,6.894348151796326,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,4,1,0,0,7,3,1,311,0,0,0 +16429,20109,36655,-9,36651,36653,4,1,1,19,2,0,5,0,2,1,3,3,0,3,0,0,0,3,0,0,0,-9,0,-962.2659189587604,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,8,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,55.35,6,1,1,0,7,1,1,277,0,0,0 +16430,20110,36656,36658,-9,-9,3,1,1,36,1,1,2,0,2,-9,8,3,1,2,0,0,0,2,0,-9,4,0,3,0,0,0,0,33,3,4,3,-9,-9,2019,4,1,15,6,0,0,15,3,6,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.67262404962919,3,43.61,42.78,5,1,0,0,7,1,0,740.3333333333334,0,0,0 +16430,20110,36657,-9,36658,36656,4,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-902.4341648391728,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,7,1,0,740.3333333333334,0,0,0 +16430,20110,36658,36656,-9,-9,1,1,0,33,1,1,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,4,0,-3,0,0,0,1,36,2,2,3,2,-9,2019,4,3,9,0,0,0,15,3,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.21209001856733,3,42.62,57.19,6,1,0,0,7,1,0,740.3333333333334,0,0,0 +16431,20111,36659,-9,-9,-9,1,1,0,90,3,0,0,0,3,-9,4,3,0,4,0,5.54594598149962,5.007621988728935,3,0,0,0,-9,0,-980.1206139340233,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,8.180270938079483,0,2.468583242462986,0,0,39.76630618171185,1,1,0,0,5.483503826241191,0,0,50.1,38.91,1,1,0,0,2,2,1,534,0,0,0 +16432,20112,36660,36662,-9,-9,1,1,1,45,1,0,2,0,1,-9,2,1,0,3,8.986829294585101,9.130425383303775,0,2,0,-9,22,0,1,-41.11076818185771,0,0,0,44,2,2,1,2,2,2019,1,2,6,0,41,43,15,1,0,1,0,22.74903878925091,22.74903878925091,0,0,0,0,0,0,0,1,1,0,.3870303866349187,0,0,0,57.33,53.46,6,1,0,0,2,5,1,446.25,0,0,0 +16432,20112,36661,-9,36662,36660,4,1,0,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-884.5460474021594,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,5,1,446.25,0,0,0 +16432,20112,36662,36660,-9,-9,2,1,0,44,1,0,2,0,2,-9,2,1,0,2,8.890730493813159,9.069296468345017,0,2,0,-9,22,0,-1,93.00713750728337,0,0,1,45,1,3,1,2,2,2019,1,1,7,0,40,40,15,1,0,1,0,20.11925056086103,20.11925056086103,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.21,43.87,5,1,0,0,2,5,1,446.25,0,0,0 +16432,20112,36663,-9,36662,36660,3,1,1,13,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1184.896828469776,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,5,1,446.25,0,0,0 +16433,20113,36664,-9,-9,-9,1,1,0,91,3,0,2,0,3,-9,4,3,0,1,0,0,0,4,0,0,0,-9,0,-978.9181343722349,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,21,9,0,0,15,4,9,-9,0,0,0,1,0,0,0,14.21238534756109,0,0,1,1,0,1.124445209940664,0,0,0,18.02,28.58,3,1,0,0,6,1,1,1322,0,0,0 +16434,20114,36665,-9,36666,36667,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-908.2898591605683,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,12,5,1,542.6666666666666,0,0,0 +16434,20114,36666,36667,-9,-9,2,1,0,41,1,0,1,0,2,-9,2,1,0,3,8.347529076123843,7.821362487819868,0,2,0,-9,19,0,-3,-1.308938781192774,0,0,1,44,1,5,1,2,2,2019,1,1,12,0,40,48,15,1,0,1,0,11.35422344152333,11.35422344152333,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,4,1,0,0,12,5,1,542.6666666666666,0,0,0 +16434,20114,36667,36666,-9,-9,1,1,1,44,1,0,1,0,1,-9,2,1,0,5,8.651369299888488,8.559337399311822,0,2,0,-9,19,0,3,2.896074927875979,0,0,0,41,2,3,1,2,1,2019,1,2,5,0,37,38,15,1,0,1,0,18.99136296275924,18.99136296275924,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,5,1,542.6666666666666,0,0,0 +16435,20115,36668,36669,-9,-9,2,1,0,36,1,1,1,0,2,-9,2,1,0,4,7.355217941699449,7.298448964308752,0,2,0,-9,4,0,8,-31.42970682561901,0,0,1,28,1,4,1,-9,-9,2019,1,1,8,0,21,18,15,1,0,1,0,7.92689390348183,7.92689390348183,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,7,1,0,0,7,4,1,524.6666666666666,0,0,0 +16435,20115,36669,36668,-9,-9,1,1,1,28,1,1,1,0,1,-9,2,1,0,4,8.619348918868319,8.829968990788462,0,2,0,-9,4,0,-8,-27.52397025712155,0,1,0,36,2,4,1,1,1,2019,1,2,9,1,41,42,15,1,1,1,0,16.17418748269703,16.17418748269703,0,0,0,0,0,0,0,1,1,0,2.062670011476204,0,0,0,54.2,57.49,6,1,0,0,7,4,1,524.6666666666666,0,0,0 +16435,20115,36670,-9,36668,36669,3,1,0,2,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-936.209953644537,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,7,4,1,524.6666666666666,0,0,0 +16436,20116,36671,-9,36672,36673,4,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-968.6462420262325,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,416.5,0,0,0 +16436,20116,36672,36673,-9,-9,1,1,0,36,1,0,2,0,1,-9,2,1,0,4,8.282550615221382,7.996177476594731,0,2,0,-9,16,0,-3,-9.164072904978621,0,0,1,39,3,3,1,2,2,2019,1,2,2,0,37,17,15,1,0,1,0,14.60430946903094,14.60430946903094,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,6,1,0,0,1,4,1,416.5,0,0,0 +16436,20116,36673,36672,-9,-9,2,1,1,39,1,0,2,0,3,-9,1,1,0,3,7.977273104216718,8.118213491098182,0,2,0,-9,16,0,3,-46.06690841194384,0,0,0,36,1,4,1,2,3,2019,1,1,8,0,50,55,15,1,0,1,0,7.092851146183279,7.092851146183279,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,6,1,0,1,1,4,1,416.5,0,0,0 +16436,20116,36674,-9,36672,36673,3,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1118.928049406417,-9,0,0,-9,-9,-9,-9,1,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,1,4,1,416.5,0,0,0 +16437,20117,36675,-9,-9,-9,1,1,0,47,2,0,1,0,2,-9,2,1,0,4,8.334942448457991,7.794924137003433,0,4,0,0,0,-9,0,-1080.845700866587,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,7,0,23,30,15,1,0,-9,0,16.76268859187737,16.76268859187737,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,55.11,6,1,0,1,2,3,1,475,0,0,0 +16437,20117,36676,-9,36675,-9,3,1,0,9,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-868.193330211663,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,2,3,1,475,0,0,0 +16437,20118,36677,-9,36675,-9,2,1,1,22,2,0,1,0,2,-9,2,1,0,4,8.829752303513308,8.764025390805008,0,3,0,0,0,-9,0,-957.7911766290146,0,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,66,0,15,1,0,-9,1,10.49558116187487,10.49558116187487,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.08,49.28,6,1,0,0,2,5,1,179,0,0,0 +16438,20119,36678,36679,-9,-9,4,1,1,27,1,0,0,0,2,-9,3,3,0,2,0,0,0,1,0,-9,7,0,5,19.21949123392046,0,1,0,22,1,2,2,-9,-9,2019,4,3,16,4,0,0,15,3,4,2,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.88,49.19,5,1,1,1,9,2,1,1202.5,0,0,0 +16438,20119,36679,36678,36681,-9,3,1,0,22,1,0,0,1,1,0,7,2,0,2,0,5.966297636356104,5.755787549241868,1,0,-9,7,0,-5,47.1082251286501,-9,1,1,27,2,2,3,2,-9,2019,4,4,16,0,0,0,15,2,4,3,0,0,0,0,0,0,0,0,0,0,1,0,1,6.564323839139032,0,0,0,26.54,47.6,2,1,0,1,9,2,1,1202.5,0,0,0 +16438,20120,36680,36681,-9,-9,2,1,1,60,1,0,0,0,2,-9,2,1,0,1,8.351937085776274,8.09900661934728,0,1,0,-9,9,0,0,41.55313321492367,0,0,0,60,2,2,1,-9,-9,2019,1,1,21,9,50,50,15,1,9,1,0,8.265785658862821,8.265785658862821,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.16,41.13,2,1,0,0,9,5,1,837.5,0,0,0 +16438,20120,36681,36680,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,2,8.398968033802676,8.222122263920054,0,1,0,-9,9,0,0,-66.83060576578883,0,0,0,60,2,1,1,1,1,2019,1,2,13,1,45,40,15,1,1,1,0,10.90781792969402,10.90781792969402,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.94,49.91,3,1,0,1,9,5,1,837.5,0,0,0 +16439,20121,36682,-9,36683,-9,3,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1073.793606545815,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,6,2,0,1138.333333333333,0,0,0 +16439,20121,36683,-9,-9,-9,1,1,0,44,2,0,1,0,2,-9,2,1,0,4,7.130548984027146,7.540802873083218,5.396476411299814,4,0,0,0,-9,0,-1226.654681157753,0,0,1,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,21,25,15,1,1,-9,0,9.964508734334805,9.964508734334805,0,0,0,0,0,0,0,1,1,0,5.453130753927298,0,0,0,50,55,6,1,0,0,6,2,0,1138.333333333333,0,0,0 +16439,20121,36684,-9,36683,-9,2,1,0,17,2,0,1,0,2,1,11,3,0,3,6.771457360996455,6.903875544512768,0,4,0,0,0,-9,0,-1022.999937584998,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,30,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,6,2,0,0,6,2,0,1138.333333333333,0,0,0 +16440,20122,36685,36686,-9,-9,1,1,0,65,1,0,0,0,1,-9,4,3,0,3,0,5.840340306960607,5.777703300982985,1,0,-9,6,0,2,-51.35854201693959,0,0,0,63,2,4,3,2,1,2019,4,2,8,0,0,6,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.831790214026491,5.552342673840912,0,0,58.32,50.22,6,1,0,0,4,3,1,1062.5,0,0,0 +16440,20122,36686,36685,-9,-9,2,1,1,63,1,0,0,0,2,-9,4,3,0,4,0,8.107206463945845,7.93012775005476,1,0,-9,6,0,-2,-57.56138591901584,0,0,0,65,1,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.49991507986217,8.007679582553335,0,0,61.27,46.03,6,1,0,0,4,3,1,1062.5,0,0,0 +16441,20123,36687,36688,-9,-9,2,1,1,76,1,0,0,0,2,-9,4,3,0,1,0,0,0,1,0,-9,9,0,6,0,0,0,0,70,2,2,3,3,3,2019,4,1,21,9,0,0,15,4,9,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.412299798949814,0,0,0,37.18,19.54,3,1,0,0,10,1,1,1359,0,0,0 +16441,20123,36688,36687,-9,-9,1,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-6,0,0,0,0,76,2,1,3,2,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,8.105326156124105,0,0,0,46.72,35.64,6,1,0,0,10,1,1,1359,0,0,0 +16442,20124,36689,36690,-9,-9,2,1,0,56,1,0,0,0,3,-9,2,1,0,2,6.809107973907577,6.922603782887989,0,1,0,-9,6,0,2,110.3530152491379,0,0,0,54,3,5,1,3,3,2019,1,1,9,0,12,10,15,1,0,1,0,8.877407845468831,8.877407845468831,0,0,0,0,0,0,0,0,0,0,0,0,0,3,60.89,31.71,6,1,0,1,13,4,1,1148,0,0,0 +16442,20124,36690,36689,-9,-9,1,1,1,54,1,0,0,0,3,-9,2,1,0,5,8.17034023056458,8.287771588651365,0,1,0,-9,6,0,-2,88.44217700089042,0,0,0,56,3,2,1,3,-9,2019,1,2,7,0,39,45,15,1,0,1,0,11.6654138359969,11.6654138359969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.89,41.71,4,1,0,0,13,4,1,1148,0,0,0 +16443,20125,36691,-9,-9,-9,1,1,0,47,2,0,0,0,2,-9,2,1,0,3,8.394836481006337,8.247332397627673,6.700555454283072,3,0,0,0,-9,0,-1138.890744846092,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,35,35,15,1,0,-9,0,13.77403793252318,13.77403793252318,0,0,0,0,0,0,0,1,1,0,0,6.844073578025068,0,0,62.66,52.4,6,1,0,0,13,5,1,220,0,0,0 +16443,20126,36692,-9,36691,-9,2,1,1,22,2,0,0,0,2,1,97,3,0,2,0,0,0,3,0,0,0,-9,0,-927.2022102449131,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.57,15.79,4,1,0,0,13,1,1,324,0,0,0 +16444,20127,36693,36694,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,3,0,7.297897265543712,6.970992938099218,1,0,-9,10,0,3,65.61733573335394,0,0,0,70,2,2,3,2,3,2019,4,2,22,10,0,0,15,4,10,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.408539227031621,123.5318791487533,3,44.92,25.65,3,1,0,0,12,3,1,1014,0,0,0 +16444,20127,36694,36693,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,2,0,6.3238001689342,6.56429883886339,1,0,-9,10,0,-3,39.20658590962873,0,0,0,73,1,3,3,3,2,2019,4,1,18,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,6.594163200278497,118.0597682365127,3,45,37,3,1,0,0,12,3,1,1014,0,0,0 +16444,20128,36695,-9,36694,36693,3,1,0,40,2,0,0,0,2,-9,8,3,1,4,0,0,0,3,0,0,0,-9,0,-983.341046516019,0,0,1,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,5,1,0,0,12,1,1,929,0,0,0 +16445,20129,36696,36697,-9,-9,1,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.647498557477125,7.496431353893346,0,1,0,-9,6,0,1,-82.48741042004951,0,0,0,50,2,4,1,3,2,2019,1,2,11,0,28,26,15,1,0,1,0,7.325890200265899,7.325890200265899,0,0,0,0,0,0,0,0,0,0,0,0,3.031451442750574,3,49.04,55.86,6,1,0,0,4,4,1,852.5,0,0,0 +16445,20129,36697,36696,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.465924733855735,8.501414661429216,0,1,0,-9,6,0,-1,-76.31708186439569,0,0,0,51,2,3,1,-9,-9,2019,1,1,9,0,40,40,15,1,1,1,0,15.24180939762292,15.24180939762292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,6,5,0,0,4,4,1,852.5,0,0,0 +16446,20130,36698,-9,-9,-9,1,1,0,26,2,0,0,0,1,-9,2,1,0,3,8.703550858202769,8.661690253735763,0,3,0,0,0,-9,0,-909.6971061258344,0,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,50,35,15,1,0,-9,0,12.93262107809607,12.93262107809607,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.9,57.01,6,3,0,0,2,5,1,450,0,0,0 +16447,20131,36699,36701,-9,-9,1,1,1,51,1,0,1,0,2,-9,2,1,0,4,8.195191466533094,7.942243962027227,0,2,0,-9,27,0,5,-36.14893414703098,0,0,0,46,2,5,1,2,2,2019,1,2,7,0,19,24,15,1,0,1,0,17.42096594343813,17.42096594343813,0,0,0,0,0,0,0,1,1,0,0,0,4.213096047061413,3,62.49,55.09,6,1,0,0,5,4,1,407.6666666666667,0,0,0 +16447,20131,36700,-9,36701,36699,3,1,1,16,2,0,1,1,2,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-949.0418525034628,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,6,1,0,0,5,4,1,407.6666666666667,0,0,0 +16447,20131,36701,36699,-9,-9,2,1,0,46,1,0,1,0,2,-9,2,1,0,5,7.919314294346297,8.07527088781538,0,2,0,-9,27,0,-5,107.745518230183,0,0,0,51,2,4,1,2,2,2019,1,1,7,0,35,42,15,1,0,1,0,12.17712075327584,12.17712075327584,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,1,1,0,0,5,4,1,407.6666666666667,0,0,0 +16448,20132,36702,36703,-9,-9,3,1,1,55,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,1,-9,0,56.18668896180564,-9,0,0,64,2,2,3,-9,-9,2019,4,1,11,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,49,5,1,0,0,5,2,0,338.5,0,0,0 +16448,20132,36703,36702,-9,-9,1,1,0,64,1,0,0,0,2,-9,4,3,0,2,0,4.691361001814923,5.068128030406456,1,0,-9,1,-9,9,-46.30920234628817,-9,0,0,55,2,3,3,-9,-9,2019,4,3,8,0,0,0,15,4,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.06482176762105,122.7759004823435,1,51.1,37.52,4,1,0,0,5,2,0,338.5,0,0,0 +16449,20133,36704,36705,-9,-9,1,1,1,40,1,2,2,0,1,-9,2,1,0,5,8.706246272769533,8.672567269162835,0,2,0,-9,3,0,5,55.70330025227015,0,0,0,35,1,3,1,2,3,2019,1,2,5,0,48,50,15,1,0,1,0,15.13206205639721,15.13206205639721,0,0,0,0,0,0,0,1,1,0,2.854231169258925,0,0,0,57.06,57.76,7,1,0,0,5,5,1,480,0,0,0 +16449,20133,36705,36704,-9,-9,2,1,0,35,1,2,2,0,1,-9,2,1,0,3,8.280291573528819,7.978408726074773,0,2,0,-9,3,0,-5,-77.26470154272624,0,0,1,40,1,5,1,3,3,2019,1,1,14,4,55,24,15,1,4,1,0,8.793969196392009,8.793969196392009,0,0,0,0,0,0,0,1,1,0,1.80044751976483,0,0,0,49.98,43.25,6,1,0,0,5,5,1,480,0,0,0 +16449,20133,36706,-9,36705,36704,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1054.746455394908,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,5,5,1,480,0,0,0 +16449,20133,36707,-9,36705,36704,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1081.51208695855,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,5,1,480,0,0,0 +16450,20134,36708,36709,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,4,7.380477804772826,7.5392555464171,0,1,0,-9,10,0,0,-44.13790547188197,0,0,0,51,2,3,1,2,2,2019,1,1,11,0,40,40,15,1,0,1,0,6.651257252004393,6.651257252004393,0,0,0,0,0,0,0,0,0,0,0,0,6.267002687066835,3,51.77,58.57,6,1,0,0,2,5,1,479,0,0,0 +16450,20134,36709,36708,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.840384393537345,8.796623655792638,0,1,0,-9,7,0,0,60.43607469491171,0,0,0,51,2,4,1,2,2,2019,1,2,16,4,41,41,15,1,4,1,0,18.27938313123143,18.27938313123143,0,0,0,0,0,0,0,0,0,0,6.641120550301913,0,6.998929308989031,3,41.23,51.32,5,1,0,0,2,5,1,479,0,0,0 +16451,20135,36710,-9,-9,-9,1,1,0,83,2,0,0,0,3,-9,4,3,0,2,0,6.736698495266667,6.459248224250032,3,0,0,0,-9,0,-1050.370666116143,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.847744089253315,6.570767866213691,0,0,38.65,28.56,6,1,0,0,7,2,1,856,0,0,0 +16452,20136,36711,-9,-9,-9,1,1,0,78,3,0,0,0,2,-9,4,3,0,3,0,7.80017250045124,7.86558937374366,3,0,0,0,-9,0,-1100.244087863945,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,3,0,0,0,15,4,0,-9,0,0,0,1,0,0,3.145611599052213,0,10.97364758561227,0,1,1,0,4.960194214624785,7.59926611289785,0,0,50.6,51,7,1,0,0,9,3,0,996,0,0,0 +16453,20137,36712,-9,-9,-9,1,1,0,81,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-954.8730290097926,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,37.76,6,1,0,0,2,1,0,1139,0,0,0 +16454,20138,36713,-9,-9,-9,1,1,0,61,3,0,0,0,2,-9,1,1,0,2,0,0,0,3,0,0,0,-9,0,-1040.260670459389,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,18,6,0,50,15,1,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5163921239949032,0,0,0,34.65,47.81,5,1,0,0,6,1,1,1135,0,0,0 +16455,20139,36714,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,3,8.120133583020968,8.184414120954584,0,3,0,0,0,-9,0,-978.0854495537238,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,3,40,38,15,1,3,-9,0,8.329084234032662,8.329084234032662,0,0,0,0,0,0,0,1,1,0,4.102204435111099,0,0,0,28.33,62.63,6,1,0,0,2,4,1,696,0,0,0 +16456,20140,36715,-9,-9,-9,1,1,1,57,3,0,0,0,1,-9,2,1,0,4,9.858930573858943,9.531567662459212,0,3,0,0,0,-9,0,-1052.43759322181,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,47,57,15,1,2,-9,0,36.65860948767791,36.65860948767791,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.01,63.24,5,1,0,0,12,5,0,1043,0,0,0 +16457,20141,36716,-9,-9,-9,1,1,0,61,2,0,0,0,2,-9,2,1,0,3,8.149581973720547,8.019518468360046,0,3,0,0,0,-9,0,-998.7845011941389,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,8,1,35,34,15,1,1,-9,0,10.6357053960661,10.6357053960661,0,0,0,0,0,0,0,0,0,0,4.410166980097769,0,0,0,42.93,54.5,4,1,0,0,9,4,1,324,0,0,0 +16458,20142,36717,-9,-9,-9,1,1,1,57,2,0,0,0,1,-9,2,1,0,4,8.448021107311677,8.510810734185062,0,3,0,0,0,-9,0,-1009.50397153797,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,2,37,37,15,1,2,-9,0,13.65770316208529,13.65770316208529,0,0,0,0,0,0,0,0,0,0,6.682963589963355,0,0,0,49.46,56.91,5,1,0,0,9,5,1,647,0,0,0 +16459,20143,36718,-9,-9,-9,1,1,1,80,3,0,0,0,3,-9,4,3,0,3,0,5.129880530435796,5.288751193695384,3,0,0,0,-9,0,-1024.022998085922,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.587760411876714,5.207971603138894,0,0,54.53,41.24,2,1,0,0,6,2,1,169,0,0,0 +16460,20144,36719,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,4,3,0,2,0,5.541795161179943,5.632016747504098,3,0,0,0,-9,0,-998.8078075777501,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.85677469287114,5.564713841971162,0,0,45.86,50.87,5,1,0,1,5,2,1,531,0,0,0 +16461,20145,36720,36721,-9,-9,1,1,1,73,1,0,0,0,1,-9,4,3,0,4,0,7.425642345037303,6.974367213590482,1,0,-9,9,0,0,-43.50550946206289,0,0,0,73,2,3,3,3,1,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.687193629586902,7.074329200075334,0,0,57.16,56.15,6,1,0,0,12,3,1,519,0,0,0 +16461,20145,36721,36720,-9,-9,2,1,0,73,1,0,0,0,2,-9,4,3,0,3,0,6.522953569580812,7.099014994676384,1,0,-9,9,0,0,5.037634693318943,0,0,0,73,1,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.16249071652501,6.7308836454774,0,0,52.54,54.24,6,1,0,0,12,3,1,519,0,0,0 +16462,20146,36722,36723,-9,-9,2,1,0,77,1,0,0,0,2,-9,4,3,0,4,0,8.669922819617646,8.987195965638401,1,0,-9,52,0,0,-18.58802520172877,0,0,0,77,1,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.67320176859891,8.76079975876968,0,0,51.83,57.2,6,1,0,0,8,5,1,856.5,0,0,0 +16462,20146,36723,36722,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,0,0,1,0,-9,52,0,0,-27.03394319595099,0,0,0,77,2,4,3,3,1,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.682045736660693,0,0,0,46.07,42.07,6,5,0,0,8,5,1,856.5,0,0,0 +16463,20147,36724,36726,-9,-9,2,1,1,31,1,1,2,0,1,-9,2,1,0,2,8.796885866035842,8.363204132851669,0,2,0,-9,6,0,3,167.5522929164439,0,0,0,28,1,3,1,-9,-9,2019,1,1,14,2,45,45,15,1,2,1,0,15.16545674167756,15.16545674167756,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,46.13,5,1,0,0,5,5,1,1301.25,0,0,0 +16463,20147,36725,-9,36726,36724,3,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-852.5147019959244,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,5,5,1,1301.25,0,0,0 +16463,20147,36726,36724,-9,-9,1,1,0,28,1,1,2,0,1,-9,2,1,0,3,8.708155174061391,8.618733611008562,0,2,0,-9,6,0,-3,115.0573480258461,0,1,1,31,1,2,1,1,1,2019,1,2,11,0,28,35,15,1,0,1,0,30.65129955352307,30.65129955352307,0,0,0,0,0,0,0,1,1,0,2.018548791050906,0,0,0,52.03,38.03,5,1,0,0,5,5,1,1301.25,0,0,0 +16463,20147,36727,-9,36726,36724,4,1,0,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1069.159255329231,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,5,1,1301.25,0,0,0 +16464,20148,36728,36729,-9,-9,1,1,0,28,1,0,0,0,3,-9,1,1,0,4,7.344139136548685,7.490846197804506,0,1,0,-9,5,0,0,-11.24104474928607,0,1,1,28,1,3,1,2,2,2019,1,2,6,0,38,38,15,1,0,1,0,5.847594262217365,5.847594262217365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,7,5,0,1147.5,0,0,0 +16464,20148,36729,36728,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,3,8.957355870629815,9.513371761995344,0,1,0,-9,5,0,0,-6.308911484192191,0,1,0,28,3,4,1,-9,-9,2019,1,1,10,1,43,49,15,1,1,1,0,27.7715141106381,27.7715141106381,0,0,0,0,0,0,0,0,0,0,5.48993039949676,0,0,0,44.95,52.41,5,2,0,0,7,5,0,1147.5,0,0,0 +16465,20149,36730,36733,-9,-9,1,1,0,48,1,0,1,0,2,-9,1,1,0,2,7.37648429664356,7.327962881818674,6.010833300871822,2,0,-9,12,0,17,54.21724442733733,0,0,0,31,2,4,1,3,2,2019,1,2,20,7,60,60,15,1,7,1,0,2.99633271542548,2.99633271542548,0,0,0,0,0,0,0,1,1,0,5.701246939522887,0,0,0,32.88,39.02,3,1,0,0,4,4,1,703.75,0,0,0 +16465,20149,36731,-9,36730,36733,4,1,0,17,2,0,1,0,2,-9,7,2,0,4,6.765818357961472,6.917329512063173,0,2,0,0,0,-9,0,-1027.901300760186,1,1,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,29,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,6,1,0,0,4,4,1,703.75,0,0,0 +16465,20149,36732,-9,36730,36733,5,1,1,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-994.3541377761017,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,4,4,1,703.75,0,0,0 +16465,20149,36733,36730,-9,-9,2,1,1,31,1,0,1,0,2,-9,2,1,0,4,8.240382608765037,8.110285358045292,0,2,0,-9,7,0,-17,58.6036228594011,0,0,0,48,2,2,1,-9,-9,2019,1,1,8,0,38,45,15,1,0,1,0,10.55026118996927,10.55026118996927,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,6,1,0,0,4,4,1,703.75,0,0,0 +16465,20150,36734,-9,36730,36733,3,1,1,20,2,0,1,0,2,1,2,1,0,5,7.858063893913154,8.227118710442879,0,4,0,0,0,-9,0,-956.6034828628406,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,40,0,15,1,0,-9,0,5.839429367171958,5.839429367171958,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,7,1,0,0,4,3,1,245,0,0,0 +16466,20151,36735,36736,-9,-9,1,1,1,60,1,0,0,0,1,-9,2,1,0,3,8.959512660443307,8.723377227030408,0,1,0,-9,36,0,7,-106.6745090831196,0,0,0,53,1,3,1,2,2,2019,1,2,11,0,60,63,15,1,0,1,0,14.50955414709319,14.50955414709319,0,0,0,0,0,0,0,0,0,0,3.479253607453958,0,0,0,61.08,36.8,6,4,0,0,8,5,1,935.5,0,0,0 +16466,20151,36736,36735,-9,-9,2,1,0,53,1,0,0,0,1,-9,2,1,0,3,8.979581351164844,9.184624337022512,0,1,0,-9,8,0,-7,109.3037507404773,0,0,0,60,1,3,1,-9,-9,2019,1,1,11,0,38,45,15,1,0,1,0,27.39502205575856,27.39502205575856,0,0,0,0,0,0,0,0,0,0,0,0,14.5417731170367,3,45.73,57.57,5,4,0,0,8,5,1,935.5,0,0,0 +16467,20152,36737,36739,-9,-9,1,1,1,58,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,25,0,8,140.8325376160639,0,0,0,50,2,2,1,2,3,2019,3,2,23,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.6,14.31,3,1,0,1,13,2,1,1362.666666666667,0,0,0 +16467,20152,36738,-9,36739,36737,4,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-853.5977500583082,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,13,2,1,1362.666666666667,0,0,0 +16467,20152,36739,36737,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,2,7.63394204711287,7.493888427361896,0,2,0,-9,15,0,-8,134.9398697386921,0,0,0,58,2,1,3,2,2,2019,2,1,15,3,27,24,15,1,3,3,0,8.493269764275768,8.493269764275768,0,0,0,0,0,0,0,1,1,0,3.65869892019614,0,5.560648129241297,2,22.68,45.52,2,1,0,0,13,2,1,1362.666666666667,0,0,0 +16467,20153,36740,-9,36739,36737,3,1,0,18,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-885.9830582178172,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,9,1,0,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,6,1,0,0,13,1,1,346,0,0,0 +16468,20154,36741,-9,-9,-9,1,1,0,58,3,0,0,0,2,-9,2,1,0,4,7.750330235659828,8.262690223091212,7.306597497050906,3,0,0,0,-9,0,-1082.19272220951,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,16,5,37,37,15,1,5,-9,0,7.963689845880117,7.963689845880117,0,0,0,0,0,0,0,0,0,0,7.388592056118287,0,7.619219264103252,3,23.55,65.21000000000001,4,1,0,0,12,4,0,205,0,0,0 +16469,20155,36742,36744,-9,-9,2,1,1,45,1,0,1,0,2,-9,2,1,0,3,8.700426091382656,8.457865290596438,0,2,0,-9,26,0,1,-59.44941910301891,0,0,0,44,2,4,1,3,3,2019,1,1,8,0,43,42,15,1,0,1,0,14.49137017345687,14.49137017345687,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,6,1,0,0,2,4,1,576.6666666666666,0,0,0 +16469,20155,36743,-9,36744,36742,3,1,0,11,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-972.1752296247332,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,5,1,0,0,2,4,1,576.6666666666666,0,0,0 +16469,20155,36744,36742,-9,-9,1,1,0,44,1,0,1,0,2,-9,2,1,0,4,8.250785386122553,8.417262596951781,0,2,0,-9,26,0,-1,114.6618558909416,0,0,1,45,2,3,1,3,3,2019,1,2,8,0,23,21,15,1,0,1,0,15.05351534437385,15.05351534437385,0,0,0,0,0,0,0,1,1,0,3.187347470792507,0,0,0,49.46,56.91,6,1,0,0,2,4,1,576.6666666666666,0,0,0 +16470,20156,36745,36746,-9,-9,1,1,0,51,1,0,0,0,3,-9,2,1,0,2,7.189994899510796,7.257598617059755,0,1,0,-9,5,0,-7,65.76452318436976,0,0,0,58,3,4,1,3,3,2019,1,2,24,12,20,22,15,1,12,1,0,9.614076033342702,9.614076033342702,0,0,0,0,0,0,0,0,0,0,6.89166365831373,0,0,0,22.54,45.52,4,1,0,0,11,2,1,417,0,0,0 +16470,20156,36746,36745,-9,-9,2,1,1,58,1,0,0,0,3,-9,1,1,0,4,0,0,0,1,0,-9,5,0,7,-49.40925314922821,0,0,0,51,3,2,1,-9,-9,2019,1,1,7,1,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.471911915343117,0,0,0,58.15,52.91,1,1,0,0,11,2,1,417,0,0,0 +16471,20157,36747,-9,-9,-9,1,1,0,59,2,0,0,0,2,-9,8,3,1,3,0,0,0,3,0,0,0,-9,0,-1156.173607329946,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,5,1,0,0,12,1,0,173,0,0,0 +16472,20158,36748,-9,-9,-9,1,1,1,26,2,0,0,0,1,-9,2,1,0,4,9.200635599757256,8.998938045406396,0,3,0,0,0,-9,0,-806.9997712218774,0,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,47,45,15,1,0,-9,0,21.95941082803922,21.95941082803922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,56.64,5,1,0,0,6,5,0,575,0,0,0 +16473,20159,36749,36751,-9,-9,1,1,1,55,1,0,1,0,3,-9,2,1,0,4,7.353454259318037,7.692149319715203,0,2,0,-9,7,0,6,66.19210736337894,0,0,0,49,3,2,3,-9,-9,2019,2,2,9,0,30,24,15,1,1,3,0,7.641253715708984,7.641253715708984,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,5,2,0,1059.666666666667,0,0,0 +16473,20159,36750,-9,36751,36749,6,1,1,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1136.928884750007,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,2,0,1059.666666666667,0,0,0 +16473,20159,36751,36749,-9,-9,2,1,0,49,1,0,1,0,3,-9,6,3,0,2,0,0,0,2,0,-9,25,0,-6,-125.8918444892524,0,0,0,55,3,4,1,-9,-9,2019,3,1,19,5,0,0,15,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.32,33.88,4,3,0,0,5,2,0,1059.666666666667,0,0,0 +16473,20160,36752,-9,36751,36749,3,1,1,22,2,0,1,0,2,-9,2,1,0,4,7.32800913242967,7.525417144812909,0,3,0,0,0,-9,0,-945.8685167509559,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,39,0,15,1,1,-9,1,6.370861693502858,6.370861693502858,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,5,3,0,431,0,0,0 +16473,20161,36753,-9,36751,36749,4,1,1,20,2,0,1,0,2,-9,2,1,0,4,7.027195287498917,6.938511711976853,0,3,0,0,0,-9,0,-1082.089652236627,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,30,0,15,1,1,-9,1,3.881150038064754,3.881150038064754,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,5,2,0,341,0,0,0 +16473,20162,36754,-9,36751,36749,5,1,1,19,2,0,1,0,2,-9,2,1,0,4,7.932505350806253,7.56275610306108,0,3,0,0,0,-9,0,-1084.55767479553,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,16,0,15,1,2,-9,1,16.49675779674887,16.49675779674887,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,3,0,0,5,3,0,288,0,0,0 +16474,20163,36755,-9,-9,-9,1,1,0,56,3,0,0,0,1,-9,1,1,0,4,0,0,0,3,0,0,0,-9,0,-1016.65208816647,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,10,0,30,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,7.07474270186436,0,11.76886056796366,3,56.77,43.98,6,1,0,0,8,1,1,346,0,0,0 +16475,20164,36756,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1019.378365453721,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,6,0,0,15,3,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,2,1,0,0,12,1,0,334,0,0,0 +16476,20165,36757,36758,-9,-9,1,1,1,64,1,0,0,0,2,-9,8,3,1,3,0,6.703700241909953,6.85695622779383,1,0,-9,33,-9,1,-103.6437579685242,-9,0,0,63,2,2,1,3,3,2019,3,2,10,0,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.033570791601426,6.700288146168979,0,0,51,48,5,1,0,0,1,3,1,608,0,0,0 +16476,20165,36758,36757,-9,-9,2,1,0,63,1,0,0,0,2,-9,1,1,0,2,6.27382786777937,7.029253763137073,6.46610308242384,1,0,-9,33,-9,-1,-48.69921587268349,-9,0,0,64,2,3,3,3,3,2019,2,1,8,0,18,0,15,1,0,3,0,3.08694304469008,3.08694304469008,0,0,0,0,0,0,0,1,1,0,0,6.482383352462691,5.361237837567081,2,62.26,35.24,6,1,0,0,1,3,1,608,0,0,0 +16477,20166,36759,-9,-9,-9,1,1,0,78,3,0,0,0,3,-9,4,3,0,4,0,5.724583652695865,5.570399025523479,3,0,0,0,-9,0,-1044.523888019627,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,15.11464026750442,1,1,0,0,5.177016088797805,0,0,57.72,30.25,6,1,0,0,12,2,1,437,0,0,0 +16478,20167,36760,-9,36761,36762,4,1,0,17,2,0,1,1,2,0,7,2,0,2,0,0,0,2,0,0,0,-9,0,-1025.883380758799,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,21,6,0,0,15,2,6,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.88,56.07,2,1,0,1,6,2,0,2227,0,0,0 +16478,20167,36761,36762,-9,-9,2,1,0,46,1,0,1,0,2,-9,1,1,0,2,7.257991763386647,7.131232111944975,0,2,0,-9,8,0,-2,-25.79571130249817,0,0,0,48,2,1,3,2,2,2019,2,1,13,1,25,19,15,1,1,3,0,7.281273391046934,7.281273391046934,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,39.49,4,1,0,0,6,2,0,2227,0,0,0 +16478,20167,36762,36761,-9,-9,1,1,1,48,1,0,1,0,2,-9,3,3,0,1,0,0,0,2,0,-9,8,0,2,65.3900458738423,0,0,0,46,2,2,1,-9,-9,2019,3,2,24,11,0,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.98,39.44,4,1,1,0,6,2,0,2227,0,0,0 +16478,20168,36763,-9,36761,36762,3,1,0,21,2,0,1,0,2,-9,1,1,0,4,7.617667767842159,7.577543379057981,0,3,0,0,0,-9,0,-874.8028368409932,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,3,0,24,17,15,1,0,-9,1,10.73947387415659,10.73947387415659,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,6,1,0,0,6,3,0,1090,0,0,0 +16479,20169,36764,-9,36766,36765,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-911.1517657776872,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,9,4,1,484,0,0,0 +16479,20169,36765,36766,-9,-9,1,1,1,32,1,0,1,0,1,-9,2,1,0,4,8.232090936980306,8.595339805012332,0,2,0,-9,6,0,1,-48.92950547211039,-9,0,0,31,2,3,1,2,2,2019,1,2,11,0,42,0,15,1,0,1,0,9.553282663019187,9.553282663019187,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.9,58.41,6,1,0,0,9,4,1,484,0,0,0 +16479,20169,36766,36765,-9,-9,2,1,0,31,1,0,1,0,2,-9,2,1,0,3,7.560787864799029,7.458539617174894,0,2,0,-9,6,0,-1,133.0159485445044,0,0,1,32,1,4,1,-9,-9,2019,1,1,24,12,15,15,15,1,12,1,0,14.72324990270376,14.72324990270376,0,0,0,0,0,0,0,1,1,0,3.199018869254456,0,0,0,26.58,59.49,6,1,0,0,9,4,1,484,0,0,0 +16480,20170,36767,-9,-9,-9,1,1,1,68,3,0,0,0,1,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-960.6438045732034,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,9,0,0,20,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,8.477315118746143,0,0,0,56.58,47.39,6,1,0,0,2,1,1,470,0,0,0 +16481,20171,36768,36769,-9,-9,2,1,0,71,1,0,0,0,3,-9,1,1,0,4,6.281948427430886,7.907480771881634,7.596544942797527,1,0,-9,8,0,5,102.8524408291478,0,0,0,66,1,4,3,3,3,2019,2,1,10,0,15,12,15,1,0,4,0,3.892408873247233,3.892408873247233,1,5.538188817977895,4.659019393486998,0,0,.3956150445335442,23.07204871893837,1,1,0,4.906860365804023,7.7349170746065,0,0,61.02,36.57,7,1,0,0,5,3,1,1343.5,0,0,0 +16481,20171,36769,36768,-9,-9,1,1,1,66,1,0,0,0,1,-9,4,3,0,4,0,7.334431126327682,7.007856523818367,1,0,-9,8,0,-5,-10.33891983297629,0,0,0,71,3,4,1,3,3,2019,3,2,24,12,0,0,15,4,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.160354753817556,7.29793835511506,0,0,46.29,36.59,6,1,0,0,5,3,1,1343.5,0,0,0 +16482,20172,36770,36771,-9,-9,1,1,1,64,1,0,0,0,1,-9,4,3,0,3,0,7.295312229995851,7.604444105275647,1,0,-9,41,0,4,-7.076223070564406,0,0,0,60,2,3,3,3,2,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4.558455315402718,7.605527242640648,0,0,58.32,50.22,6,1,0,0,9,2,1,1049.5,0,0,0 +16482,20172,36771,36770,-9,-9,2,1,0,60,1,0,0,0,2,-9,4,3,0,3,0,5.658887997166809,5.589256967670298,1,0,-9,41,0,-4,111.4350113104206,0,0,0,64,1,3,3,2,3,2019,4,1,14,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.4910004981257526,5.663789422142941,0,0,52.88,43.27,6,1,0,0,9,2,1,1049.5,0,0,0 +16483,20173,36772,36773,-9,-9,1,1,0,26,1,0,0,0,1,-9,2,1,0,4,8.498000566864528,8.708644390720593,0,1,0,-9,2,0,-2,-59.63657413635619,0,1,1,28,1,4,1,1,1,2019,1,2,23,10,60,45,15,1,10,1,0,10.14094511171717,10.14094511171717,0,0,0,0,0,0,0,1,1,0,1.131752667114337,0,0,0,39.48,58.88,5,1,0,0,7,5,1,1415,0,0,0 +16483,20173,36773,36772,-9,-9,2,1,1,28,1,0,0,0,1,-9,2,1,0,4,9.082504422758525,9.222237798827081,0,1,0,-9,2,0,2,31.65633522649435,0,1,0,26,1,4,1,-9,-9,2019,1,1,10,0,40,60,15,1,1,1,0,26.31543918432978,26.31543918432978,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,5,5,0,0,7,5,1,1415,0,0,0 +16484,20174,36774,-9,-9,-9,1,1,0,82,3,0,0,0,3,-9,4,3,0,2,0,5.397464331270521,5.208963118987152,3,0,0,0,-9,0,-987.9987705673667,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,8,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,5.166994907830462,5.315705113291819,0,0,53.41,41.96,6,1,0,0,6,2,1,2483,0,0,0 +16485,20175,36775,36776,-9,-9,2,1,1,86,1,0,0,0,3,-9,4,3,0,3,0,7.875160971626535,7.825443885693674,1,0,-9,66,0,0,61.45532853476341,0,0,0,86,3,3,3,3,3,2019,4,1,11,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,2.594469737070996,7.591902785224213,0,0,55.92,31.2,7,1,0,0,9,3,1,4448.5,0,0,0 +16485,20175,36776,36775,-9,-9,1,1,0,86,1,0,0,0,3,-9,4,3,0,3,0,4.624929874326809,4.978595808210895,1,0,-9,66,0,0,27.46801181685595,0,0,0,86,3,3,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.314689181668333,0,0,54.98,44.8,7,1,0,0,9,3,1,4448.5,0,0,0 +16486,20176,36777,-9,-9,-9,1,1,0,62,3,0,0,0,2,-9,8,3,1,2,0,3.735646659206808,3.777604611177241,3,0,0,0,-9,0,-1104.88074827882,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,26,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.850167219552512,3.709289856788048,0,0,27.46,26.98,3,1,0,0,2,1,0,671,0,0,0 +16486,20177,36778,-9,-9,-9,2,1,0,65,3,0,0,0,2,-9,4,3,0,2,0,6.241387991973762,6.296684666531396,3,0,0,0,-9,0,-875.4320621491692,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,14,1,0,0,15,4,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.373156143145266,6.306049761437488,3,48.13,41.78,5,1,0,0,2,2,0,217,0,0,0 +16487,20178,36779,36780,-9,-9,1,1,1,46,1,0,0,0,2,-9,2,1,0,4,8.382375320326066,8.158286527939019,6.885834206592786,1,0,-9,26,0,0,-167.339189464777,0,0,0,46,2,3,1,2,2,2019,1,2,8,0,38,39,15,1,0,1,0,14.30184992569189,14.30184992569189,0,0,0,0,0,0,0,0,0,0,3.079113403198524,7.0435815187477,0,0,58.15,52.91,6,1,0,0,10,5,1,176,0,0,0 +16487,20178,36780,36779,-9,-9,2,1,0,46,1,0,0,0,2,-9,2,1,0,3,7.838580701969568,7.7530440802582,0,1,0,-9,26,0,0,17.05141131497869,0,0,0,46,2,4,1,3,2,2019,1,1,11,2,38,38,15,1,2,1,0,8.008663992330151,8.008663992330151,0,0,0,0,0,0,0,0,0,0,3.236828182083185,0,0,0,45.27,52.06,6,1,0,0,10,5,1,176,0,0,0 +16487,20179,36781,-9,36780,36779,3,1,0,21,2,0,0,0,2,-9,2,1,0,4,7.769306189308264,7.839560647786882,0,3,0,0,0,-9,0,-1168.892576812658,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,29,19,15,1,1,-9,1,10.78395207004128,10.78395207004128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,60.56,4,1,0,0,10,4,1,728,0,0,0 +16488,20180,36782,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,4,9.378217228808941,9.439087094547391,7.57722131208197,4,0,0,0,-9,0,-1070.749994070331,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,15,3,40,35,15,1,3,-9,0,28.48877118804754,28.48877118804754,0,0,0,0,0,0,0,0,0,0,7.366245194485298,0,0,0,29.99,65.88,6,1,0,0,4,5,1,490,0,0,0 +16488,20180,36783,-9,36782,-9,2,1,0,17,2,0,1,1,2,0,7,2,0,4,0,0,0,4,0,0,0,-9,0,-995.0835393016025,-9,1,0,-9,-9,-9,-9,1,-9,2019,-9,0,6,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.634793782450997,0,0,0,54.2,57.49,6,1,0,0,4,5,1,490,0,0,0 +16489,20181,36784,-9,-9,-9,1,1,1,49,3,0,0,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-979.5166574257184,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,36.86,4,1,0,0,4,1,0,557,0,0,0 +16490,20182,36785,-9,-9,-9,1,1,0,63,3,0,0,0,1,-9,4,3,0,2,0,7.059358752774515,6.781686190980064,3,0,-9,0,1,0,-994.6746705922393,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,18,5,0,0,15,4,5,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.203442450420665,6.876245010471831,0,0,32.13,54.55,2,1,0,0,1,3,1,308,0,0,0 +16491,20183,36786,36787,-9,-9,2,1,0,43,1,0,0,0,2,-9,2,1,0,5,8.997969284265835,8.887520937910908,0,1,0,-9,3,0,-4,-58.83206088263781,-9,0,1,47,3,5,1,-9,-9,2019,1,1,8,0,40,0,15,1,0,1,0,21.79977633290325,21.79977633290325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,57,6,1,0,0,8,5,0,1341.5,0,0,0 +16491,20183,36787,36786,-9,-9,1,1,1,47,1,0,0,0,3,-9,1,1,0,5,9.527000029826988,9.263770580379461,0,1,0,-9,18,0,4,15.74030710327278,-9,0,0,43,2,5,1,-9,-9,2019,1,2,9,0,0,0,15,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,57,6,1,0,0,8,5,0,1341.5,0,0,0 +16491,20184,36788,-9,36786,36787,3,1,1,18,2,0,0,0,2,-9,2,1,0,4,7.922589133237161,8.06039149294455,0,3,0,0,0,-9,0,-1103.962092087642,-9,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,12,0,15,1,0,-9,1,27.66618271494976,27.66618271494976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.19,60.95,4,1,0,0,8,3,0,984,0,0,0 +16491,20185,36789,-9,36786,36787,4,1,0,21,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-989.9693256628868,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,.9703189555117895,0,0,0,46,58,5,1,1,0,8,1,0,2352,0,0,0 +16492,20186,36790,-9,-9,-9,1,1,0,40,2,0,0,0,2,-9,2,1,0,3,8.553014406233103,8.267075277697474,0,3,0,0,0,-9,0,-1003.575705035908,0,0,1,-9,-9,-9,-9,-9,2,2019,-9,0,10,0,39,40,15,1,0,-9,0,14.15235552919237,14.15235552919237,0,0,0,0,0,0,0,0,0,0,1.285759730474465,0,0,0,45.18,54.77,6,1,0,0,7,4,1,1510,0,0,0 +16493,20187,36791,36792,-9,-9,1,1,1,59,1,0,0,0,1,-9,2,1,0,5,8.844265188204661,8.793212934405227,7.735796337929226,1,0,-9,36,0,4,71.9239911344673,0,0,0,55,1,5,1,2,2,2019,1,2,6,0,55,52,15,1,0,1,0,9.730970672086116,9.730970672086116,0,0,0,0,0,0,0,1,1,0,0,7.521324498134303,7.572490175635578,3,58.05,54.52,6,1,0,0,5,5,1,685,0,0,0 +16493,20187,36792,36791,-9,36793,2,1,0,55,1,0,0,0,1,-9,2,1,0,5,9.415382330076728,9.681710245202524,0,1,0,-9,36,0,-4,-32.82918081329014,0,0,0,59,1,5,1,1,1,2019,1,1,8,0,55,50,15,1,0,1,0,19.00794514584418,19.00794514584418,0,0,0,0,0,0,0,1,1,0,3.266577519944882,0,0,0,59.43,58.05,1,1,0,0,5,5,1,685,0,0,0 +16493,20188,36793,-9,-9,-9,3,1,1,84,3,0,0,0,1,-9,4,3,0,4,0,7.687806870833381,7.827110864951849,3,0,-9,0,-9,0,-1055.739961643319,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.810101563950785,7.896585961963503,0,0,58.9,45.74,6,1,0,0,5,3,1,236,0,0,0 +16494,20189,36794,-9,-9,-9,1,1,0,71,3,0,0,0,3,-9,4,3,0,3,0,6.744367739086429,6.453449459195866,3,0,0,0,-9,0,-1048.015928721552,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,5,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.817357369254998,0,0,57.33,53.46,7,1,0,0,10,2,1,791,0,0,0 +16495,20190,36795,-9,-9,-9,1,1,1,46,3,0,0,0,3,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-1095.239700566632,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.01,54.16,3,1,0,0,13,1,0,670,0,0,0 +16496,20191,36796,36797,-9,-9,1,1,0,36,1,1,2,0,1,-9,6,3,0,3,4.476289507748692,4.739904090399548,0,2,0,-9,19,0,0,-35.82588662360996,0,0,1,36,1,5,1,2,2,2019,3,2,23,11,1,0,15,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.25,55.98,2,1,0,1,11,3,1,480.5,0,0,0 +16496,20191,36797,36796,-9,-9,2,1,1,36,1,1,2,0,1,-9,2,1,0,5,8.557756084624772,8.228404874643138,0,2,0,-9,19,0,0,38.12873698154616,0,0,0,36,1,3,3,1,1,2019,2,1,8,1,70,55,15,1,1,3,0,8.051455761844741,8.051455761844741,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,7,1,0,0,11,3,1,480.5,0,0,0 +16496,20191,36798,-9,36796,36797,3,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-978.585680207322,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,11,3,1,480.5,0,0,0 +16496,20191,36799,-9,36796,36797,4,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1042.077777697486,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,3,1,480.5,0,0,0 +16497,20192,36800,-9,-9,-9,1,1,1,47,2,0,0,0,2,-9,2,1,0,4,8.457923598996063,8.419691981433788,0,3,0,0,0,-9,0,-1122.604689767302,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,5,0,48,46,15,1,0,-9,0,9.360005990487217,9.360005990487217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,7,4,0,1,8,4,0,202,0,0,0 +16498,20193,36801,36802,-9,-9,2,1,1,80,1,0,0,0,1,-9,1,1,0,2,8.019746069895112,8.96373090513117,8.025199325905923,1,0,-9,58,0,2,39.62569796342498,0,0,0,78,2,3,3,3,2,2019,2,1,9,0,25,30,15,1,0,4,0,15.83749707851844,15.83749707851844,1,0,0,0,0,0,0,1,1,0,7.424847885739779,8.106123349339676,0,0,57.04,19.68,6,1,0,0,10,5,1,238.5,0,0,0 +16498,20193,36802,36801,-9,-9,1,1,0,78,1,0,0,0,2,-9,4,3,0,3,0,7.438821648338346,7.472810690329386,1,0,-9,58,0,-2,-70.8281528315847,0,0,0,80,1,2,1,3,3,2019,3,2,8,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.304671927872531,0,0,57.34,47.92,5,1,0,0,10,5,1,238.5,0,0,0 +16499,20194,36803,36806,-9,-9,1,1,1,44,1,0,2,0,1,-9,2,1,0,4,9.183951540774876,9.39907682025118,0,2,0,-9,19,0,5,75.70836999076018,0,0,0,39,1,4,1,3,2,2019,1,2,6,0,35,35,15,1,0,1,0,34.87956900070596,34.87956900070596,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,56.21,6,3,0,0,8,4,1,802.25,0,0,0 +16499,20194,36804,-9,36806,36803,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-933.4942891232208,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,3,0,0,8,4,1,802.25,0,0,0 +16499,20194,36805,-9,36806,36803,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.6294953771255,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,8,4,1,802.25,0,0,0 +16499,20194,36806,36803,-9,-9,2,1,0,39,1,0,2,0,1,-9,1,1,0,4,0,0,0,2,0,-9,19,0,-5,216.7594177707131,0,0,1,44,1,4,1,2,1,2019,1,1,6,0,0,15,15,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,6,3,0,0,8,4,1,802.25,0,0,0 +16500,20195,36807,-9,-9,-9,1,1,1,63,3,0,0,0,2,-9,2,1,0,4,9.644896952464407,9.784477854406703,0,3,0,0,0,-9,0,-1061.175021609655,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,7,0,60,60,15,1,0,-9,0,29.53216953190024,29.53216953190024,0,0,0,0,0,0,0,0,0,0,8.845020551259589,0,4.798375453049188,3,62.49,55.09,5,1,0,0,9,5,0,246,0,0,0 +16501,20196,36808,-9,-9,-9,1,1,0,81,2,0,0,0,2,-9,4,3,0,2,0,7.732411492187305,7.796181714580307,3,0,0,0,-9,0,-1115.53244574374,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,1,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,7.59467676623578,0,0,54.62,26.74,6,1,0,0,10,3,1,1481,0,0,0 +16501,20197,36809,-9,-9,-9,2,1,0,79,2,0,0,0,2,-9,4,3,0,3,0,7.579635950010722,7.875318267822154,3,0,0,0,-9,0,-798.1196942501836,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.380397980008739,7.803235447897263,0,0,51.94,55.88,6,1,0,0,10,3,1,230,0,0,0 +16502,20198,36810,-9,-9,-9,1,1,0,49,3,0,1,0,1,-9,2,1,0,3,8.711587249103154,8.646381996283806,0,4,0,0,0,-9,0,-906.7521965651625,0,0,0,-9,-9,-9,-9,1,1,2019,-9,0,8,0,41,38,15,1,0,-9,0,19.63823702406576,19.63823702406576,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.88,48.2,6,4,0,1,7,5,1,148,0,0,0 +16503,20199,36811,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,2,1,0,3,8.67470637660707,8.426443304257718,0,3,0,0,0,-9,0,-1033.465359288249,0,0,0,-9,-9,-9,-9,2,1,2019,-9,0,9,0,37,37,15,1,0,-9,0,12.41824718623372,12.41824718623372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.37,45.05,5,4,0,0,2,5,1,3257,0,0,0 +16504,20200,36812,-9,-9,-9,1,1,0,60,3,0,0,0,2,-9,2,1,0,4,7.433506797466171,7.24749258173589,0,3,0,-9,0,-9,0,-1046.968327200608,-9,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,20,8,36,0,15,1,8,-9,0,6.971479968822785,6.971479968822785,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,3,1,0,1,12,3,1,193,0,0,0 +16504,20201,36813,-9,36812,-9,2,1,0,23,2,0,0,0,2,-9,5,1,0,3,6.995210508378801,7.114986116506402,0,3,0,-9,0,-9,0,-1122.08304687372,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,23,8,16,0,15,1,8,-9,1,7.367263278592097,7.367263278592097,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.2,54.42,5,1,0,0,12,2,1,429,0,0,0 +16505,20202,36814,36817,-9,-9,1,1,1,47,1,0,2,0,2,-9,2,1,0,3,9.582265741332826,9.571394864985608,0,2,0,-9,6,0,3,51.36736548579083,0,0,0,44,1,2,1,2,2,2019,1,2,9,0,52,52,15,1,0,1,0,24.79707271702783,24.79707271702783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,6,1,0,0,2,5,1,764.8,0,0,0 +16505,20202,36815,-9,36817,36814,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-919.7868323841424,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,2,5,1,764.8,0,0,0 +16505,20202,36816,-9,36817,36814,5,1,1,17,2,0,2,1,2,-9,7,2,0,4,0,4.354841458934421,4.545828708244715,2,0,-9,0,-9,0,-1015.654728281087,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,12,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,4.95494321543408,0,0,0,49.35,59.64,6,1,0,0,2,5,1,764.8,0,0,0 +16505,20202,36817,36814,-9,-9,2,1,0,44,1,0,2,0,1,-9,1,1,0,2,7.479252292435871,7.785017638881568,6.394962771485588,2,0,-9,6,0,-3,31.45972066022648,0,0,1,47,2,3,1,-9,-9,2019,1,1,20,8,12,6,15,1,8,1,0,18.31136444207946,18.31136444207946,0,0,0,0,0,0,0,0,0,0,6.574700085649572,0,0,0,41.42,37.85,3,1,0,0,2,5,1,764.8,0,0,0 +16505,20202,36818,-9,36817,36814,4,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-963.9953351326014,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,2,5,1,764.8,0,0,0 +16506,20203,36819,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,2,6.502176124946145,7.401782047828793,6.64983342854786,3,0,0,0,-9,0,-989.7392366739583,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,2,1,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.778054525812141,0,0,60.05,29.29,6,1,0,0,9,3,0,973,0,0,0 +16507,20204,36820,-9,-9,-9,1,1,1,31,2,0,0,0,3,-9,2,1,0,3,7.908960977566641,7.721519619889485,0,3,0,0,0,-9,0,-858.6208435656711,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,24,9,40,40,15,1,9,-9,0,7.50420707831285,7.50420707831285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.16,53.08,2,1,0,0,11,3,1,296,0,0,0 +16508,20205,36821,-9,-9,-9,1,1,0,47,3,0,0,0,2,-9,2,1,0,4,8.783668418874321,8.795037837516057,0,3,0,0,0,-9,0,-1077.11356846205,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,40,45,15,1,0,-9,0,19.07320708716135,19.07320708716135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,6,4,0,0,8,5,1,341,0,0,0 +16508,20206,36822,-9,36821,-9,2,1,1,27,2,0,0,0,1,-9,2,1,0,5,7.552489429065028,7.879381494727928,0,3,0,0,0,-9,0,-1003.423525208419,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,2,0,22,16,15,1,0,-9,1,9.892202813539338,9.892202813539338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,6,4,0,0,8,3,1,389,0,0,0 +16508,20207,36823,-9,36821,-9,3,1,1,24,2,0,0,0,2,-9,2,1,0,4,7.833273776046862,7.789629593417456,0,3,0,0,0,-9,0,-1037.526474634411,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,3,0,40,40,15,1,0,-9,1,7.18096169576313,7.18096169576313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.58,45.78,7,4,0,0,8,3,1,1062,0,0,0 +16509,20208,36824,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,3,0,8.017670849373449,8.247680377434707,3,0,-9,0,1,0,-907.2719822128854,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,13,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.83554160532717,8.259793297963709,0,3,49.97,48.78,6,1,0,0,2,4,1,639,0,0,0 +16510,20209,36825,-9,-9,-9,1,1,0,19,2,0,0,1,2,0,7,2,0,3,4.735403941944941,4.526244495094108,0,3,0,0,0,-9,0,-870.2324886268173,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,14,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,.372388879056579,0,0,0,19.94,64.13,3,1,0,0,5,2,0,1072,0,0,0 +16511,20210,36826,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,1,0,6.361919769677201,6.458312770593414,3,0,0,0,-9,0,-1131.688211966087,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,1,0,0,7.481090944475511,0,0,0,1,1,0,0,6.253451060642551,0,0,42.61,19.39,2,1,0,0,2,2,1,319,0,0,0 +16512,20211,36827,-9,-9,-9,1,1,0,18,2,0,0,1,2,0,7,2,0,5,0,6.039420171168373,5.592895082557288,3,0,0,0,-9,0,-928.8892060944154,-9,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,10,1,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.233901611613631,0,0,0,48.42,60.53,6,1,0,0,2,2,0,590,0,0,0 +16513,20212,36828,36829,-9,-9,2,1,1,66,1,0,0,0,1,-9,4,3,0,3,0,8.785318810214664,8.481340817504796,1,0,-9,8,0,1,-44.47363974963542,0,0,0,65,2,2,3,2,2,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.598283309171065,8.57639395057341,0,0,44.19,58.01,5,1,0,0,11,4,1,1994,0,0,0 +16513,20212,36829,36828,-9,-9,1,1,0,65,1,0,0,0,2,-9,4,3,0,2,0,4.839134435734211,4.897739724615867,1,0,-9,8,0,-1,132.5340833827863,0,0,0,66,1,3,3,2,2,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.19011491255399,4.756616917340359,0,0,48.7,38.58,4,1,0,0,11,4,1,1994,0,0,0 +16514,20213,36830,36831,-9,-9,4,1,1,43,1,0,1,0,3,-9,2,1,0,2,8.965228505399439,8.996910473135534,0,2,0,-9,6,0,0,40.28175142450766,0,0,0,43,2,1,3,-9,-9,2019,2,1,8,0,60,52,15,1,0,3,0,16.68881753403117,16.68881753403117,0,0,0,0,0,0,0,1,1,0,0,0,34.34175336908446,1,44.21,50.21,3,1,0,0,12,4,1,399.5,0,0,0 +16514,20213,36831,36830,-9,-9,1,1,0,43,1,0,1,0,2,-9,8,3,1,1,0,0,0,2,0,-9,6,0,0,23.68473488941915,0,0,1,43,3,2,1,3,-9,2019,3,4,35,12,0,0,15,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.43,21.57,1,1,0,0,12,4,1,399.5,0,0,0 +16515,20214,36832,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,2,7.140622358832163,7.185150277771403,4.999771780208938,3,0,0,0,-9,0,-865.5422101903457,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,20,20,15,1,0,-9,0,7.04540755737567,7.04540755737567,0,0,0,0,0,0,0,1,1,0,3.536135562795615,5.33188379029592,36.49764149117595,3,44.55,36.49,5,1,0,0,5,2,1,404,0,0,0 +16516,20215,36833,36835,-9,-9,1,1,0,42,1,0,2,0,2,-9,2,1,0,5,7.545514812294117,7.36080584213623,0,2,0,-9,22,0,-4,-7.858317964413398,0,0,1,46,1,5,1,2,2,2019,1,2,10,1,24,35,15,1,1,1,0,9.479637816181011,9.479637816181011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,6,1,0,0,12,4,1,338.5,0,0,0 +16516,20215,36834,-9,36833,36835,3,1,0,16,2,0,2,1,2,-9,7,2,0,5,4.217982416568739,4.051069840995662,0,2,0,0,0,-9,0,-1043.228937782842,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,16,5,4,0,15,2,5,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.51,64.58,6,1,0,0,12,4,1,338.5,0,0,0 +16516,20215,36835,36833,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,5,9.039631138393244,9.150731176678537,4.036681909551016,2,0,-9,22,0,4,2.638877138317496,0,0,0,42,2,5,1,2,2,2019,1,1,7,0,45,44,15,1,0,1,0,21.72319294692676,21.72319294692676,0,0,0,0,0,0,0,0,0,0,4.785652076576956,0,0,0,49.17,58.56,6,1,0,0,12,4,1,338.5,0,0,0 +16516,20215,36836,-9,36833,36835,4,1,0,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1048.095320761556,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,5,1,0,0,12,4,1,338.5,0,0,0 +16517,20216,36837,-9,-9,-9,1,1,0,60,3,0,0,0,1,-9,1,1,0,3,0,0,0,3,0,0,0,-9,0,-1033.764888393529,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,19,8,35,20,15,1,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.79635072821653,0,0,0,30.95,56.12,5,1,0,0,6,1,1,487,0,0,0 +16518,20217,36838,36839,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,3,0,6.615684184072808,6.561478708823503,1,0,-9,63,0,-1,32.25294539195853,0,0,0,79,3,2,3,3,3,2019,4,2,9,1,0,0,15,4,1,4,0,0,0,1,0,0,9.996698118770563,0,0,0,1,1,0,1.738748356016301,6.632898201432623,0,0,40.21,25.75,4,1,0,0,12,2,0,1304,0,0,0 +16518,20217,36839,36838,-9,-9,2,1,1,79,1,0,0,0,3,-9,4,3,0,2,0,4.55965544189944,4.246701084604235,1,0,-9,63,0,1,23.05693623765439,0,0,0,78,3,3,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.75848727076312,4.518410068682206,0,0,60.05,26.59,6,1,0,0,12,2,0,1304,0,0,0 +16519,20218,36840,-9,-9,-9,1,1,1,46,2,0,0,0,3,-9,1,1,0,2,6.398898344761352,6.331787627843802,0,3,0,-9,0,0,0,-1034.545939903014,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,17,6,30,25,15,1,6,-9,0,2.209072612350282,2.209072612350282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.81,54.3,5,1,0,1,9,2,0,437,0,0,0 +16520,20219,36841,-9,36842,36845,4,1,1,14,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1017.820314648063,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,11,4,1,509.6,0,0,0 +16520,20219,36842,36845,-9,-9,1,1,0,45,1,0,3,0,2,-9,2,1,0,4,7.653782686379247,8.11636506539133,0,2,0,-9,8,0,0,-27.86399109411448,0,0,0,45,1,4,1,2,2,2019,1,2,6,0,30,35,15,1,0,1,0,10.43241895032543,10.43241895032543,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,11,4,1,509.6,0,0,0 +16520,20219,36843,-9,36842,36845,3,1,0,16,2,0,3,1,3,-9,7,2,0,3,0,0,0,2,0,0,0,-9,0,-1042.888135387319,-9,1,0,-9,-9,-9,-9,2,1,2019,-9,0,14,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.05,59.16,5,1,0,0,11,4,1,509.6,0,0,0 +16520,20219,36844,-9,36842,36845,5,1,0,10,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-912.5111134384341,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,11,4,1,509.6,0,0,0 +16520,20219,36845,36842,-9,-9,2,1,1,45,1,0,3,0,1,-9,2,1,0,4,8.855568174406271,9.044188360571766,0,2,0,-9,8,0,0,-27.10491703187399,0,0,0,45,2,4,1,2,3,2019,1,1,6,0,37,37,15,1,0,1,0,18.74234865810591,18.74234865810591,0,0,0,0,0,0,0,1,1,0,1.025553878488431,0,0,0,57.16,56.15,6,1,0,0,11,4,1,509.6,0,0,0 +16521,20220,36846,36847,-9,-9,2,1,1,63,1,0,0,0,3,-9,4,3,0,3,0,8.351359563824566,8.022765992549187,1,0,-9,43,0,0,-8.829364111816091,0,0,0,63,2,4,3,3,3,2019,4,1,9,0,0,43,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,.9270314003640518,8.214275937554293,0,0,52,54.51,6,1,0,0,5,4,1,600.5,0,0,0 +16521,20220,36847,36846,-9,-9,1,1,0,63,1,0,0,0,2,-9,4,3,0,4,0,4.12428419333823,4.187831104200737,1,0,-9,43,0,0,38.48563633744566,0,0,0,63,3,3,3,3,2,2019,4,2,9,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,3.069662940696374,4.412445266030036,0,3,55.79,52.62,6,1,0,0,5,4,1,600.5,0,0,0 +16522,20221,36848,36849,-9,-9,1,1,1,63,1,0,0,0,2,-9,4,3,0,3,0,7.489948198128626,7.591136686558615,1,0,-9,8,0,4,-50.47478479778739,0,0,0,59,2,2,3,2,1,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.253575496650994,7.164760032405141,8.561626256514186,3,55.03,38.37,6,1,0,0,11,3,1,704,0,0,0 +16522,20221,36849,36848,-9,-9,2,1,0,59,1,0,0,0,2,-9,4,3,0,2,0,5.659782692245254,6.038083576503712,1,0,-9,8,0,-4,50.89999826895298,0,0,0,63,2,3,3,2,3,2019,4,1,13,2,0,0,15,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.986199768279191,5.793235576449169,0,0,34.89,43.84,6,1,0,0,11,3,1,704,0,0,0 +16523,20222,36850,36851,-9,-9,2,1,0,71,1,0,0,0,3,-9,4,3,0,2,0,0,0,1,0,-9,8,0,3,86.18302068145555,0,0,0,68,3,4,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,.194371522519539,0,0,0,0,1,1,0,0,0,0,0,50.79,28.25,5,1,0,0,13,2,1,288.5,0,0,0 +16523,20222,36851,36850,-9,-9,1,1,1,68,1,0,0,0,3,-9,4,3,0,4,0,5.987181187261386,5.656115126434123,1,0,-9,8,0,-3,-11.74336508347427,0,0,0,71,3,2,3,-9,-9,2019,4,2,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.914747255917478,5.911691197183039,0,0,52.93,55.31,6,1,0,0,13,2,1,288.5,0,0,0 +16524,20223,36852,-9,-9,-9,1,1,0,76,3,0,0,0,3,-9,4,3,0,4,0,5.360403512236841,4.928378766999086,3,0,0,0,-9,0,-971.9832409864003,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.667828045691933,5.124106506940726,0,0,57.45,46.41,6,1,0,0,6,2,1,173,0,0,0 +16525,20224,36853,-9,-9,-9,1,1,0,63,3,0,0,0,3,-9,2,1,0,2,7.670411297375382,7.527287861884386,0,3,0,0,0,-9,0,-944.7887265520873,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,17,5,30,30,15,1,5,-9,0,7.498030967710504,7.498030967710504,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.17,41.58,4,1,0,0,8,3,0,602,0,0,0 +16526,20225,36854,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,3,0,5.793317198508396,5.92141538836642,3,0,0,0,-9,0,-1037.908271099342,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,1,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.896952371522072,0,0,50,47,5,1,0,0,11,2,0,227,0,0,0 +16527,20226,36855,-9,-9,-9,1,1,1,69,3,0,0,0,2,-9,4,3,0,4,0,7.832671503239952,7.775766679957369,3,0,0,0,-9,0,-963.9520628675107,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.873311863186056,8.037324080786357,0,0,43.54,55.65,6,1,0,0,8,4,1,90,0,0,0 +16528,20227,36856,-9,36860,36859,4,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1046.804701562844,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,5,1,894,0,0,0 +16528,20227,36857,-9,36860,36859,3,1,0,4,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-962.8418602301813,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,2,0,0,8,5,1,894,0,0,0 +16528,20227,36858,-9,36860,36859,5,1,1,2,2,2,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.59506909075,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,2,0,0,8,5,1,894,0,0,0 +16528,20227,36859,36860,-9,-9,1,1,1,47,1,2,3,0,1,-9,1,1,0,5,9.490789864901986,9.173607219214905,0,2,0,-9,14,0,3,-4.000640229089083,0,0,0,44,1,4,1,3,1,2019,1,2,6,0,40,80,15,1,0,1,0,42.9986987162998,42.9986987162998,0,0,0,0,0,0,0,1,1,0,8.190739757726536,0,0,0,54.1,59.11,2,2,0,0,8,5,1,894,0,0,0 +16528,20227,36860,36859,-9,-9,2,1,0,44,1,2,3,0,1,-9,1,1,0,4,8.470547525072272,8.577271999576363,0,2,0,-9,14,0,-3,27.14560260373744,-9,0,1,47,1,5,1,-9,-9,2019,1,1,10,0,0,0,15,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.132665660152712,0,0,0,50,55,6,1,0,0,8,5,1,894,0,0,0 +16529,20228,36861,36862,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,49,0,0,0,0,0,0,68,2,4,3,-9,-9,2019,4,2,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.92,51.82,4,1,0,0,12,2,1,609.5,0,0,0 +16529,20228,36862,36861,-9,-9,2,1,1,68,1,0,0,0,2,-9,4,3,0,4,0,0,0,1,0,-9,10,0,0,0,0,0,0,68,3,3,3,3,3,2019,4,1,7,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.29,52.37,6,1,0,0,12,2,1,609.5,0,0,0 +16530,20229,36863,-9,-9,-9,3,1,1,18,2,0,1,0,2,-9,2,1,0,3,7.879036560232507,7.892683665550575,0,3,0,0,0,-9,0,-922.8988742341737,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,36,0,15,1,0,-9,1,8.545422874469683,8.545422874469683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.95,56.35,5,1,0,0,5,4,1,1612,0,0,0 +16531,20230,36864,36865,-9,-9,2,1,1,40,1,0,2,0,2,-9,2,1,0,4,8.612596793793763,8.355340994136384,0,2,0,-9,6,0,3,-63.10133015432442,0,0,0,37,2,4,1,-9,-9,2019,1,1,10,0,44,40,15,1,0,1,0,8.622899515868555,8.622899515868555,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.49,57.5,6,1,0,0,10,3,1,997,0,0,0 +16531,20230,36865,36864,-9,-9,1,1,0,37,1,0,2,0,2,-9,2,1,0,4,7.576840248510536,7.857201536235243,0,2,0,-9,6,0,-3,-44.18939566964006,0,0,1,40,2,4,1,2,2,2019,1,2,10,0,22,22,15,1,0,1,0,11.53110513333813,11.53110513333813,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,5,1,0,0,10,3,1,997,0,0,0 +16531,20230,36866,-9,36865,36864,3,1,0,11,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1019.539390613557,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,1,0,0,10,3,1,997,0,0,0 +16531,20230,36867,-9,36865,36864,4,1,0,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1099.525353720487,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,10,3,1,997,0,0,0 +16532,20231,36868,-9,-9,-9,1,1,0,64,3,0,0,0,2,-9,4,3,0,2,0,4.938225079441724,4.482001106216299,3,0,0,0,-9,0,-1012.679243386695,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,8,0,0,30,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.68588259403337,4.875709305696519,0,0,50.43,35.29,6,1,0,0,2,2,0,217,0,0,0 +16533,20232,36869,-9,-9,-9,1,1,0,72,3,0,0,0,2,-9,4,3,0,3,0,4.930135866838895,4.863657614435954,3,0,0,0,-9,0,-1050.585024691099,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,17,4,0,0,15,4,4,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,4.881511688849009,4.872191670452182,0,0,40.68,44.49,2,1,0,1,10,2,1,285,0,0,0 +16534,20233,36870,36874,-9,-9,2,1,0,39,1,0,3,0,3,-9,6,3,0,3,0,0,0,2,0,-9,2,0,2,31.7373666282416,-9,0,1,37,2,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2.579763300847778,3,43.68,50.36,4,3,0,0,6,2,1,752.6,0,0,0 +16534,20233,36871,-9,36870,36874,3,1,1,10,2,0,3,1,3,-9,-9,2,0,2,0,0,0,2,0,0,0,-9,0,-991.3846078429613,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,4,3,0,0,6,2,1,752.6,0,0,0 +16534,20233,36872,-9,36870,36874,6,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1055.658637443254,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,3,0,0,6,2,1,752.6,0,0,0 +16534,20233,36873,-9,36870,36874,4,1,1,8,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1029.66726789713,-9,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,3,0,0,6,2,1,752.6,0,0,0 +16534,20233,36874,36870,36875,-9,1,1,1,37,1,0,3,0,2,-9,2,1,0,4,7.463504111235598,7.525944115242472,0,2,0,-9,2,0,-2,-49.70847386710246,0,0,0,39,3,3,3,3,-9,2019,2,2,10,0,25,40,15,1,1,3,0,7.972308627274991,7.972308627274991,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,57,5,3,0,0,6,2,1,752.6,0,0,0 +16534,20234,36875,-9,-9,-9,5,1,0,79,3,0,3,0,3,-9,4,3,0,2,0,0,0,4,0,0,0,-9,0,-1132.906791303999,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,19,8,0,0,15,4,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.835350747357219,0,0,0,39.62,29.29,5,3,0,0,6,1,1,1262,0,0,0 +16535,20235,36876,-9,36877,-9,5,1,0,16,2,0,3,1,3,-9,7,2,0,3,0,0,0,4,0,0,0,-9,0,-1012.693088812864,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,21,9,0,0,15,2,9,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,13.46,64.02,4,1,0,0,1,3,1,673.3333333333334,0,0,0 +16535,20235,36877,-9,-9,-9,1,1,0,41,3,0,3,0,2,-9,2,1,0,4,7.84593257354557,7.747171547691486,0,4,0,0,0,-9,0,-965.6666649795135,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,16,5,38,37,15,1,5,-9,0,9.585719063659139,9.585719063659139,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.33,58.88,5,1,0,1,1,3,1,673.3333333333334,0,0,0 +16535,20235,36878,-9,36877,-9,6,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-919.7367558004374,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,5,1,0,0,1,3,1,673.3333333333334,0,0,0 +16535,20236,36879,-9,36877,-9,2,1,1,21,2,0,3,0,2,-9,2,1,0,4,7.883362524359158,7.620479376528875,0,3,0,0,0,-9,0,-1129.284581763569,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,6,0,40,40,15,1,0,-9,1,8.052415839332944,8.052415839332944,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.82,53.97,6,1,0,0,1,3,1,269,0,0,0 +16535,20237,36880,-9,36877,-9,3,1,1,20,2,0,3,0,2,-9,2,1,0,5,7.698078317558593,7.540327975917473,0,3,0,0,0,-9,0,-913.5989150826683,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,2,35,35,15,1,2,-9,1,8.112001307518867,8.112001307518867,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.2,54.53,6,1,0,0,1,3,1,147,0,0,0 +16535,20238,36881,-9,36877,-9,4,1,1,18,2,0,3,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1045.33679735926,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.28,60.18,5,1,1,0,1,3,1,1275,0,0,0 +16536,20239,36882,36883,-9,-9,1,1,0,55,1,0,0,0,2,-9,2,1,0,4,8.209760233940056,8.020527355559489,0,1,0,-9,6,0,1,-94.95079531170398,0,0,0,54,2,3,1,3,2,2019,1,2,11,1,46,36,15,1,1,1,0,7.24460953539167,7.24460953539167,0,0,0,0,0,0,0,0,0,0,.6060437012467311,0,0,0,52.34,56.95,5,1,0,0,8,4,0,518,0,0,0 +16536,20239,36883,36882,-9,-9,2,1,1,54,1,0,0,0,2,-9,2,1,0,3,8.123775587208716,7.853314540694043,0,1,0,-9,6,0,-1,-10.98241062934665,0,0,0,55,2,4,1,-9,-9,2019,1,1,19,7,39,39,15,1,7,1,0,8.860362839246394,8.860362839246394,0,0,0,0,0,0,0,0,0,0,2.971196672529653,0,11.50613248937935,3,39.46,56.1,4,1,0,0,8,4,0,518,0,0,0 +16537,20240,36884,-9,-9,-9,1,1,1,60,3,0,0,0,2,-9,1,1,0,4,8.262766343540903,8.464027008807326,0,3,0,0,0,-9,0,-825.5016165028394,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,25,12,50,0,15,1,12,-9,0,8.292292019358962,8.292292019358962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.76,45.61,1,1,0,1,7,4,1,331,0,0,0 +16538,20241,36885,-9,36888,36887,4,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-913.4897571852551,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,2,3,1,1312.25,0,0,0 +16538,20241,36886,-9,36888,36887,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1040.624246510738,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,2,3,1,1312.25,0,0,0 +16538,20241,36887,36888,-9,-9,2,1,1,35,1,0,2,0,3,-9,1,1,0,3,7.755256746089087,7.859952160861758,0,2,0,-9,4,0,1,-52.00321598084347,-9,0,0,34,2,4,1,2,2,2019,1,1,13,2,40,0,15,1,2,1,0,6.790469981077705,6.790469981077705,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.1,49.55,4,1,0,0,2,3,1,1312.25,0,0,0 +16538,20241,36888,36887,-9,-9,1,1,0,34,1,0,2,0,2,-9,2,1,0,4,7.614943407116177,7.525285083022039,0,2,0,-9,4,0,-1,7.662201415198989,0,0,1,35,3,3,1,2,2,2019,1,2,9,0,30,30,15,1,0,1,0,7.042142346074488,7.042142346074488,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,5,1,0,0,2,3,1,1312.25,0,0,0 +16539,20242,36889,-9,-9,-9,1,1,0,61,3,0,0,0,3,-9,3,3,0,2,0,0,0,3,0,0,0,-9,0,-1096.562116642839,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,4,1,1,0,13,1,0,630,0,0,0 +16540,20243,36890,36891,-9,-9,2,1,0,70,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,9,0,11,0,0,0,0,59,1,2,3,3,2,2019,4,1,11,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.99,54.49,4,1,0,0,10,1,0,444.5,0,0,0 +16540,20243,36891,36890,-9,-9,1,1,1,59,1,0,0,0,1,-9,4,3,0,2,0,0,0,1,0,-9,9,0,-11,0,0,0,0,70,1,2,3,-9,-9,2019,4,2,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.54,31.77,2,1,0,0,10,1,0,444.5,0,0,0 +16541,20244,36892,-9,-9,-9,1,1,0,56,3,0,0,0,3,-9,2,1,0,2,7.099035791131985,6.789168295965356,0,3,0,0,0,-9,0,-1021.510885503031,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,12,0,13,14,15,1,0,-9,0,6.472046728682111,6.472046728682111,0,0,0,0,0,0,0,0,0,0,6.982121872531782,0,0,0,46.3,31.73,1,1,0,0,5,2,1,527,0,0,0 +16541,20245,36893,-9,36892,-9,2,1,1,23,2,0,0,0,2,-9,2,1,0,3,7.64069436848285,7.634038197835616,0,3,0,0,0,-9,0,-1001.244136335073,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,38,37,15,1,0,-9,1,5.5253402991571,5.5253402991571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,55.35,6,1,0,0,5,3,1,846,0,0,0 +16542,20246,36894,-9,36895,36896,4,1,1,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1045.967090303219,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,1,4,1,572.3333333333334,0,0,0 +16542,20246,36895,36896,-9,-9,1,1,0,56,1,0,1,0,2,-9,2,1,0,3,8.35291233757412,8.455797867594606,4.331104938350554,2,0,-9,35,0,-5,-48.66920391445895,0,0,0,61,2,4,1,3,2,2019,1,2,12,1,32,32,15,1,1,1,0,19.69549735509315,19.69549735509315,0,0,0,0,0,0,0,1,1,0,0,4.854372953081485,13.55125663621876,3,60.46,33.02,6,1,0,0,1,4,1,572.3333333333334,0,0,0 +16542,20246,36896,36895,-9,-9,2,1,1,61,1,0,1,0,2,-9,2,1,0,4,7.997359670899853,8.208095889380598,0,2,0,-9,35,0,5,-87.8493234000602,0,0,0,56,2,3,1,3,3,2019,1,1,13,2,37,37,15,1,2,1,0,8.134061443120611,8.134061443120611,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.27,48.36,6,1,0,0,1,4,1,572.3333333333334,0,0,0 +16542,20247,36897,-9,36895,36896,3,1,0,21,2,0,1,1,2,0,7,2,0,5,6.74982812776452,7.387546477883725,0,3,0,0,0,-9,0,-923.6150902557706,-9,1,1,-9,-9,-9,-9,2,2,2019,-9,0,13,1,30,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.42432456618961,3,40.65,59.59,6,1,0,0,1,2,1,276,0,0,0 +16543,20248,36898,-9,-9,-9,1,1,0,52,2,0,0,0,2,-9,2,1,0,5,8.731770673900114,8.400590329451871,0,3,0,0,0,-9,0,-1048.527531181508,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,10,0,44,77,15,1,0,-9,0,12.02557440894512,12.02557440894512,0,0,0,0,0,0,0,0,0,0,7.466380878460862,0,0,0,26.38,62.87,5,1,0,0,1,5,1,1358,0,0,0 +16543,20249,36899,-9,-9,-9,2,1,0,52,2,0,0,0,2,-9,2,1,0,5,9.723708701916889,9.431712119179611,0,3,0,0,0,-9,0,-984.26210817956,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,60,90,15,1,0,-9,0,26.23203340668461,26.23203340668461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,6,1,0,0,1,5,1,843,0,0,0 +16544,20250,36900,-9,-9,-9,1,1,0,45,3,1,1,0,2,-9,2,1,0,3,7.273856100999895,7.445050356388885,0,4,0,0,0,-9,0,-969.0216276014484,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,27,21,15,1,0,-9,0,6.634599822953946,6.634599822953946,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.36,51.24,2,1,0,0,11,2,0,59,0,0,0 +16544,20251,36901,-9,36902,-9,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-1005.267080853349,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,11,3,0,427,0,0,0 +16544,20251,36902,-9,36900,-9,2,1,0,21,2,1,1,0,2,-9,5,1,0,3,7.612586923033763,7.544257444458078,0,3,0,0,0,-9,0,-1058.275768524614,0,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,8,0,42,35,15,1,0,-9,1,5.126461802959577,5.126461802959577,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.28,37.38,5,1,0,0,11,3,0,427,0,0,0 +16545,20252,36903,36905,-9,-9,2,1,0,55,1,0,1,0,1,-9,2,1,0,3,8.403278560355764,8.396448363137999,0,2,0,-9,27,0,6,-34.65898529542238,0,0,0,49,2,5,1,2,1,2019,1,1,11,0,22,20,15,1,2,1,0,33.11251186656808,33.11251186656808,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,5,2,0,0,8,5,1,466.3333333333333,0,0,0 +16545,20252,36904,-9,36903,36905,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1044.384750357082,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,4,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.354185871928509,0,0,0,41.17,59.31,1,4,0,0,8,5,1,466.3333333333333,0,0,0 +16545,20252,36905,36903,-9,-9,1,1,1,49,1,0,1,0,2,-9,2,1,0,5,8.732835695414535,8.988677152707641,0,2,0,-9,26,0,-6,70.9803279883419,0,0,0,55,1,3,1,2,2,2019,1,2,5,0,46,36,15,1,0,1,0,23.44192445862851,23.44192445862851,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,6,4,0,0,8,5,1,466.3333333333333,0,0,0 +16545,20253,36906,-9,36903,36905,3,1,0,28,2,0,1,0,1,-9,2,1,0,2,8.27371739166442,8.480802313443876,0,3,0,0,0,-9,0,-1094.048585221131,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,12,2,43,42,15,1,2,-9,1,10.02892531378903,10.02892531378903,0,0,0,0,0,0,0,1,1,0,.4182377847847673,0,0,0,38,42.16,4,4,0,0,8,4,1,1050,0,0,0 +16546,20254,36907,36908,-9,-9,2,1,0,35,1,0,3,0,2,-9,2,1,0,3,7.55648780831868,7.510438758355623,0,2,0,-9,8,-9,0,135.4074387787794,-9,0,1,35,2,4,1,2,3,2019,1,1,9,1,34,0,15,1,1,1,0,7.358009774618905,7.358009774618905,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.88,44.11,5,1,0,0,4,2,1,1757.2,0,0,0 +16546,20254,36908,36907,-9,-9,1,1,1,35,1,0,3,0,2,-9,1,1,0,4,6.478032265981792,6.646896627426265,0,2,0,-9,8,-9,0,-25.68022480574662,-9,0,0,35,2,3,1,3,3,2019,1,2,10,0,40,0,15,1,1,1,0,2.624475471701315,2.624475471701315,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,4,2,1,1757.2,0,0,0 +16546,20254,36909,-9,36907,36908,3,1,0,11,2,0,3,1,3,-9,-9,2,0,3,0,0,0,2,0,-9,0,-9,0,-930.1571127666957,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,5,1,0,0,4,2,1,1757.2,0,0,0 +16546,20254,36910,-9,36907,36908,4,1,0,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-980.6124640767185,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,4,2,1,1757.2,0,0,0 +16546,20254,36911,-9,36907,36908,5,1,0,4,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1229.950997118018,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,4,2,1,1757.2,0,0,0 +16547,20255,36912,-9,36913,36914,3,1,1,2,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.389111434838,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,5,1,0,0,13,4,1,917.25,0,0,0 +16547,20255,36913,36914,-9,-9,2,1,0,29,1,2,2,0,1,-9,5,1,0,4,8.274517485836791,8.137953912696313,0,2,0,-9,3,0,-1,-46.81935138173604,0,1,1,30,1,4,1,-9,-9,2019,1,1,4,0,42,42,15,1,0,1,0,8.363600473207843,8.363600473207843,0,0,0,0,0,0,0,1,1,0,3.296822518693836,0,0,0,51.83,57.2,6,1,0,0,13,4,1,917.25,0,0,0 +16547,20255,36914,36913,-9,-9,1,1,1,30,1,2,2,0,1,-9,2,1,0,4,7.83484190125867,7.878800707458617,0,2,0,-9,3,0,1,-157.7479677119805,0,0,0,29,1,4,1,2,2,2019,1,2,7,0,40,41,15,1,0,1,0,9.092811994349029,9.092811994349029,0,0,0,0,0,0,0,1,1,0,2.88794173522682,0,0,0,52.93,55.31,6,1,0,0,13,4,1,917.25,0,0,0 +16547,20255,36915,-9,36913,36914,4,1,0,0,2,2,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1104.457712291269,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,5,1,0,0,13,4,1,917.25,0,0,0 +16548,20256,36916,36917,-9,-9,1,1,1,64,1,0,0,0,2,-9,2,1,0,4,7.711667141499164,8.521847047513148,7.964237374443575,1,0,-9,6,0,3,52.83705191284866,0,0,0,61,1,3,1,3,3,2019,1,2,12,0,30,25,15,1,0,1,0,9.08850904002575,9.08850904002575,0,0,0,0,0,0,0,1,1,0,2.812025831123274,7.771744996019097,0,0,48.87,58.55,6,1,0,0,12,5,1,1077,0,0,0 +16548,20256,36917,36916,-9,-9,2,1,0,61,1,0,0,0,1,-9,1,1,0,3,7.239610571326901,8.234105678557137,7.52501929648793,1,0,-9,6,0,-3,-58.15618442854851,-9,0,0,64,2,4,1,-9,-9,2019,1,1,11,0,0,0,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.192003543052477,7.719526429649681,0,0,49,48,5,5,0,0,12,5,1,1077,0,0,0 +16549,20257,36918,-9,-9,-9,1,1,1,61,3,0,0,0,2,-9,1,1,0,3,6.21232732890919,6.689677015469908,0,3,0,-9,0,1,0,-1132.327604485128,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,40,0,15,1,1,-9,0,1.748676867703361,1.748676867703361,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,5,4,0,1,8,2,0,1278,0,0,0 +16549,20258,36919,-9,-9,-9,2,1,0,46,3,0,0,0,2,-9,6,3,0,4,0,0,0,3,0,-9,0,1,0,-966.7042382387825,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,6,4,0,0,8,1,0,1177,0,0,0 +16549,20259,36920,-9,-9,-9,3,1,0,25,2,0,0,0,1,-9,2,1,0,4,7.881133288682486,8.051467460943794,0,3,0,0,0,-9,0,-1018.01136649215,0,1,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,35,40,15,1,2,-9,0,7.432721567809959,7.432721567809959,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,5,4,0,0,8,3,0,149,0,0,0 +16549,20260,36921,-9,-9,-9,4,1,0,22,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-962.6727204974439,1,1,1,-9,-9,-9,-9,3,2,2019,-9,0,13,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,32.64,3,4,0,0,8,1,0,196,0,0,0 +16549,20261,36922,-9,-9,-9,5,1,0,20,2,0,0,0,2,-9,7,2,0,4,0,0,0,3,0,0,0,-9,0,-985.737340505854,1,1,1,-9,-9,-9,-9,-9,-9,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,5,4,0,0,8,1,0,889,0,0,0 +16549,20262,36923,-9,-9,-9,6,1,1,18,2,0,0,1,3,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-954.7630881491651,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,10,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,5,4,0,0,8,1,0,658,0,0,0 +16549,20263,36924,-9,-9,-9,7,1,1,27,2,0,0,1,1,0,7,2,0,5,0,0,0,3,0,0,0,-9,0,-1044.25369158424,-9,1,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,7,4,0,0,8,1,0,324.5,0,0,0 +16549,20263,36925,-9,-9,36924,9,1,0,14,2,0,0,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-935.8936150922873,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,5,4,0,0,8,1,0,324.5,0,0,0 +16550,20264,36926,-9,-9,-9,1,1,0,51,3,0,0,0,2,-9,2,1,0,3,8.583895967472056,8.856023592403069,0,3,0,-9,0,1,0,-977.2933767960673,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,15,4,40,32,15,1,4,-9,0,16.29913987238413,16.29913987238413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,3,1,0,1,12,5,0,603,0,0,0 +16551,20265,36927,-9,-9,-9,1,1,0,71,2,0,0,0,2,-9,2,1,0,3,7.269014307172318,7.249113405856265,5.708794088587218,3,0,0,0,-9,0,-884.0102571499867,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,15,3,42,30,15,1,3,-9,0,5.518364816897418,5.518364816897418,0,0,0,0,0,0,0,0,0,0,0,5.844035021340837,9.266847219931179,3,46.87,36.37,5,4,0,1,9,3,1,790,0,0,0 +16552,20266,36928,36929,-9,-9,1,1,0,48,1,0,0,0,1,-9,2,1,0,2,8.685591691856333,8.400886645713095,0,1,0,-9,3,0,18,-88.99472616482603,0,0,0,30,2,2,1,3,3,2019,1,3,10,0,45,37,15,1,0,1,0,15.35618384631086,15.35618384631086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.95,36.7,4,1,0,0,9,5,0,480,0,0,0 +16552,20266,36929,36928,-9,-9,3,1,1,30,1,0,0,0,2,-9,1,1,0,2,7.396141426846574,7.49079327241721,0,1,0,-9,3,0,-18,-15.84828771397414,0,0,0,48,1,2,1,-9,-9,2019,1,1,7,0,50,40,15,1,0,1,0,4.546680204796343,4.546680204796343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,6,1,0,0,9,5,0,480,0,0,0 +16552,20267,36930,-9,36928,36929,2,1,1,18,2,0,0,0,2,-9,2,1,0,4,7.795240198880276,7.994860976083498,0,3,0,0,0,-9,0,-1099.190573681689,0,1,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,40,0,15,1,2,-9,0,7.855278657976968,7.855278657976968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,5,1,0,0,9,4,0,583,0,0,0 +16553,20268,36931,36932,-9,-9,1,1,0,67,1,0,0,0,1,-9,4,3,0,4,0,7.38524144298206,7.702388003543688,1,0,-9,49,0,-3,111.128023916702,0,0,0,70,1,2,3,2,1,2019,4,2,12,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.513023890830322,7.772268803420249,0,0,54.74,51.69,7,1,0,0,2,4,1,626,0,0,0 +16553,20268,36932,36931,-9,-9,2,1,1,70,1,0,0,0,1,-9,4,3,0,2,0,7.59577966643432,7.586919807014991,1,0,-9,7,0,3,75.42824469226254,0,0,0,67,1,4,3,2,3,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.634423804650099,7.570137883464187,0,0,49.11,41.37,5,1,0,0,2,4,1,626,0,0,0 +16554,20269,36933,-9,-9,-9,1,1,0,60,3,0,0,0,3,-9,2,1,0,3,7.035138606376866,6.642320833604309,0,3,0,0,0,-9,0,-988.5610099220023,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,17,17,15,1,0,-9,0,7.119053822048576,7.119053822048576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,7,1,0,0,13,2,1,1696,0,0,0 +16555,20270,36934,-9,-9,-9,1,1,0,44,3,0,2,0,1,-9,8,3,1,1,0,5.283766422699085,5.384109964463634,4,0,0,0,-9,0,-1003.045337282889,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,26,9,0,0,15,3,9,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,6.045784361105526,0,0,0,18.77,31.02,1,3,0,1,5,2,0,1340,0,0,0 +16555,20270,36935,-9,36934,-9,2,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1057.682373788591,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,2,0,1340,0,0,0 +16555,20270,36936,-9,36934,-9,3,1,1,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-949.1671202571368,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,3,0,0,5,2,0,1340,0,0,0 +16556,20271,36937,36938,-9,-9,2,1,1,34,1,0,0,0,2,-9,97,3,0,2,0,0,0,1,0,-9,10,0,2,-37.93382309349865,0,0,0,32,1,4,1,-9,-9,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,39.27,3,1,0,0,9,4,0,879,0,0,0 +16556,20271,36938,36937,-9,-9,1,1,0,32,1,0,0,0,1,-9,2,1,0,4,8.473935469499402,8.45502186609756,0,1,0,-9,10,0,-2,-22.4878285176149,0,0,1,34,2,2,3,2,3,2019,2,2,6,0,40,42,15,1,0,3,0,11.69561988595814,11.69561988595814,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51.49,57.57,6,1,0,0,9,4,0,879,0,0,0 +16557,20272,36939,36940,-9,-9,2,1,1,58,1,0,0,0,2,-9,2,1,0,2,6.940481199136523,6.880593245625086,0,1,0,-9,1,-9,-2,-181.2752774021814,-9,0,0,60,2,2,1,3,3,2019,1,1,18,6,20,0,15,1,6,1,0,6.561817490203033,6.561817490203033,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.79,46.9,3,1,0,1,4,3,1,162.5,0,0,0 +16557,20272,36940,36939,-9,-9,1,1,0,60,1,0,0,0,2,-9,2,1,0,2,7.77838727771547,7.663241815238216,0,1,0,-9,1,-9,2,30.67973113389866,-9,0,0,58,2,2,1,3,3,2019,1,2,19,7,40,0,15,1,7,1,0,6.662391767578155,6.662391767578155,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.35,24.43,3,1,0,1,4,3,1,162.5,0,0,0 +16558,20273,36941,36943,-9,-9,2,1,0,30,1,1,1,0,1,-9,5,1,0,4,8.681461562583859,8.916471582940497,0,2,0,-9,7,0,1,-21.52611165537297,0,0,1,29,2,4,1,2,2,2019,1,1,11,2,52,60,15,1,2,1,0,14.05825341274206,14.05825341274206,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.84,51.67,6,1,0,0,7,5,1,501,0,0,0 +16558,20273,36942,-9,36941,36943,3,1,1,0,2,1,1,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1052.468582775751,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,7,5,1,501,0,0,0 +16558,20273,36943,36941,-9,-9,1,1,1,29,1,1,1,0,2,-9,2,1,0,4,8.845853175588134,8.858660227658845,0,2,0,-9,7,0,-1,-.3403810656679075,0,1,0,30,1,4,1,2,2,2019,1,2,5,0,47,45,15,1,0,1,0,16.29718720324445,16.29718720324445,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,7,1,0,0,7,5,1,501,0,0,0 +16559,20274,36944,-9,-9,-9,2,1,0,27,2,0,0,0,2,-9,2,1,0,4,7.484894633484376,7.994215256057212,0,3,0,0,0,-9,0,-939.5685336685385,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,11,0,48,48,15,1,2,-9,1,6.143036161801151,6.143036161801151,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,5,1,0,0,11,3,1,222,0,0,0 +16560,20275,36945,-9,-9,-9,1,1,0,43,3,0,1,0,2,-9,2,1,0,3,8.250656502794151,8.308967171935562,0,4,0,0,0,-9,0,-1158.353462264408,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,72,37,15,1,0,-9,0,5.778232672826228,5.778232672826228,0,0,0,0,0,0,0,1,1,0,3.879205138850707,0,0,0,52.99,51.28,5,1,0,0,5,4,1,414,0,0,0 +16560,20275,36946,-9,36945,-9,2,1,0,13,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-939.0097320220135,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,5,1,0,0,5,4,1,414,0,0,0 +16561,20276,36947,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,5,7.41014186856956,7.389345610105954,0,3,0,0,0,-9,0,-1119.188426342461,0,0,0,-9,-9,-9,-9,-9,2,2019,-9,0,8,1,38,38,15,1,1,-9,0,4.127124608515282,4.127124608515282,0,0,0,0,0,0,0,0,0,0,5.064549689497325,0,0,0,57.06,57.76,6,1,0,0,2,3,0,482,0,0,0 +16562,20277,36948,-9,36949,36950,3,1,1,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-905.858132174891,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,1,0,0,5,5,1,418,0,0,0 +16562,20277,36949,36950,-9,-9,1,1,0,49,1,0,1,0,1,-9,2,1,0,4,7.344624620660801,7.545319031090488,0,2,0,-9,21,0,0,42.55772135386873,0,0,0,58,2,3,1,2,2,2019,1,2,6,0,24,19,15,1,0,1,0,6.896156253825941,6.896156253825941,0,0,0,0,0,0,0,0,0,0,5.109567980371982,0,0,0,57.16,56.15,6,1,0,0,5,5,1,418,0,0,0 +16562,20277,36950,36949,-9,-9,2,1,1,58,1,0,1,0,2,-9,2,1,0,3,9.243456101479895,9.222255857470049,0,2,0,-9,7,0,9,-180.356836498661,0,0,0,49,1,4,1,-9,-9,2019,1,1,10,0,38,38,15,1,1,1,0,35.65163849169748,35.65163849169748,0,0,0,0,0,0,0,0,0,0,5.222484754083249,0,0,0,51,49,5,1,0,0,5,5,1,418,0,0,0 +16563,20278,36951,-9,-9,-9,1,1,0,73,3,0,0,0,3,-9,4,3,0,2,0,6.638121411808232,6.707565093570769,3,0,0,0,-9,0,-946.1659394415728,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.4209382724555228,6.71134878584249,0,0,53.69,39,6,1,0,0,4,2,1,299,0,0,0 +16564,20279,36952,36953,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,2,0,0,0,1,0,-9,43,0,-2,50.18478990972777,0,0,0,71,2,3,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.410255452497554,0,0,0,58.32,36.99,6,1,0,0,13,3,0,707.5,0,0,0 +16564,20279,36953,36952,-9,-9,2,1,1,71,1,0,0,0,2,-9,4,3,0,3,0,8.256742545863119,7.982861309357947,1,0,-9,43,0,2,6.695228631479627,0,0,0,69,2,2,3,3,2,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.719625623509671,8.029146876958633,12.12977641989856,3,31.78,50.31,3,1,0,0,13,3,0,707.5,0,0,0 +16565,20280,36954,36955,-9,-9,2,1,0,68,1,0,0,0,2,-9,4,3,0,4,0,7.331515463271195,7.547974514596463,1,0,-9,7,0,-1,22.29197718239622,0,0,0,69,2,4,3,3,3,2019,4,1,13,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.803577927525591,7.329567277842987,0,3,43.42,62.33,6,1,0,0,2,3,1,374,0,0,0 +16565,20280,36955,36954,-9,-9,1,1,1,69,1,0,0,0,2,-9,4,3,0,4,0,6.890954317408021,6.557544773772431,1,0,-9,7,0,1,-62.82344887600758,0,0,0,68,2,4,3,3,3,2019,4,2,12,0,0,0,15,4,0,4,0,0,0,1,0,11.17990625920217,0,0,0,0,1,1,0,3.790301294524835,6.777580165262613,0,0,51.47,53.17,6,1,0,0,2,3,1,374,0,0,0 +16566,20281,36956,36958,-9,-9,2,1,0,39,1,0,2,0,1,-9,2,1,0,4,7.628772226182289,7.820560507251487,0,2,0,-9,9,0,2,65.63355342585876,0,0,1,37,2,4,1,3,2,2019,1,1,14,2,22,22,15,1,2,1,0,11.8599997120111,11.8599997120111,0,0,0,0,0,0,0,1,1,0,0,0,10.17719867863306,3,53.22,55.2,6,1,0,0,13,4,1,346,0,0,0 +16566,20281,36957,-9,36956,36958,3,1,0,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1067.215317159785,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,1,0,0,13,4,1,346,0,0,0 +16566,20281,36958,36956,-9,-9,1,1,1,37,1,0,2,0,2,-9,2,1,0,4,8.772621006919437,8.591363138824024,0,2,0,-9,9,0,-2,-25.3088731800318,0,0,0,39,1,4,1,3,3,2019,1,2,9,0,40,52,15,1,0,1,0,19.53723878543988,19.53723878543988,0,0,0,0,0,0,0,1,1,0,0,0,0,3,55.34,54.26,6,1,0,0,13,4,1,346,0,0,0 +16566,20281,36959,-9,36956,36958,4,1,1,4,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1001.879876628518,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,13,4,1,346,0,0,0 +16567,20282,36960,-9,36962,36963,3,1,0,10,2,0,2,1,3,-9,-9,2,0,3,0,0,0,2,0,0,0,-9,0,-937.6899642243394,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,14,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,5,1,0,0,10,3,1,510.75,0,0,0 +16567,20282,36961,-9,36962,36963,4,1,0,7,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1051.254914159569,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,510.75,0,0,0 +16567,20282,36962,36963,-9,-9,1,1,0,48,1,0,2,0,1,-9,6,3,0,3,7.515574184858177,8.095185334975962,6.461184569530657,2,0,-9,5,0,-3,-13.17899702377851,0,0,0,51,1,4,1,1,1,2019,3,2,7,1,10,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.056444084808808,0,0,0,43.99,50.34,6,1,0,0,10,3,1,510.75,0,0,0 +16567,20282,36963,36962,-9,-9,2,1,1,51,1,0,2,0,1,-9,1,1,0,4,8.002660773854881,7.836063261731609,0,2,0,-9,5,0,3,8.386563373575386,0,0,0,48,1,3,3,2,2,2019,2,1,6,0,38,38,15,1,0,3,0,9.258194256188345,9.258194256188345,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,6,1,0,0,10,3,1,510.75,0,0,0 +16568,20283,36964,36965,-9,-9,1,1,0,49,1,0,0,0,1,-9,2,1,0,4,8.78806936575833,9.097268977840383,0,1,0,-9,28,0,-2,14.24323722598748,0,0,0,51,2,3,1,2,2,2019,1,2,19,7,45,45,15,1,7,1,0,15.79234608405819,15.79234608405819,0,0,0,0,0,0,0,0,0,0,2.811049175922245,0,0,0,39.33,58.88,6,1,0,0,5,5,1,566.5,0,0,0 +16568,20283,36965,36964,-9,-9,2,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.640912115535098,8.929702757799747,0,1,0,-9,28,0,2,-7.158603258882752,0,0,0,49,1,4,1,2,2,2019,1,1,11,1,49,47,15,1,1,1,0,15.33817279656993,15.33817279656993,0,0,0,0,0,0,0,0,0,0,2.382167674627118,0,0,0,47.78,44.19,6,1,0,0,5,5,1,566.5,0,0,0 +16569,20284,36966,-9,-9,-9,1,1,0,86,3,0,0,0,3,-9,4,3,0,2,0,5.903400646726516,6.143673685089526,3,0,0,0,-9,0,-962.0630067908752,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,29,9,0,0,15,4,9,-9,0,0,0,1,5.089239856260559,0,0,0,0,3.337034258325197,1,1,0,0,6.173665057905955,0,0,19.39,46.77,4,1,0,0,5,2,1,260,0,0,0 +16570,20285,36967,36968,-9,-9,2,1,1,88,1,0,0,0,3,-9,4,3,0,4,0,7.747895871152687,7.696179756454763,1,0,-9,10,0,9,-73.18799514834909,0,0,0,79,2,4,3,3,3,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,7.053250786661485,7.678097120458301,0,0,57.16,56.15,7,1,0,0,4,3,1,186,0,0,0 +16570,20285,36968,36967,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,4,0,7.216879208067217,7.333016495999841,1,0,-9,10,0,0,67.51602924658681,0,0,0,88,3,4,3,3,2,2019,4,2,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,3.557503840467224,7.29945922261152,0,0,57.16,56.15,7,1,0,0,4,3,1,186,0,0,0 +16571,20286,36969,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,7.783986323422507,7.9712670720917,3,0,0,0,-9,0,-890.96772872526,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,19,7,0,0,15,4,7,-9,0,0,0,1,.646348822141521,0,0,0,0,36.95926886178417,1,1,0,4.08583329681884,7.90951109978688,0,0,39.31,28.18,3,1,0,0,4,3,1,341,0,0,0 +16572,20287,36970,36971,-9,-9,1,1,0,68,1,0,0,0,3,-9,4,3,0,3,0,0,0,1,0,-9,46,0,-2,-147.7135279744716,0,0,0,70,2,3,3,3,-9,2019,4,2,13,2,0,0,15,4,2,4,0,0,0,1,0,0,0,0,0,0,1,1,0,.6231275187643476,0,0,0,43.84,37.7,4,1,0,0,5,3,1,820.5,0,0,0 +16572,20287,36971,36970,-9,-9,2,1,1,70,1,0,0,0,2,-9,4,3,0,3,0,8.039139385140022,7.990916150128598,1,0,-9,46,0,2,-75.4506105853398,0,0,0,68,3,3,3,3,3,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,1.325231123014883,7.52071531185837,2.041978569756529,3,55.12,39.6,5,1,0,0,5,3,1,820.5,0,0,0 +16573,20288,36972,36973,-9,-9,1,1,0,65,1,0,0,0,3,-9,2,1,0,5,7.766512843597857,8.152613624402035,0,1,0,-9,48,0,-2,-82.01202824573942,0,0,0,67,2,4,3,2,3,2019,2,2,6,0,50,40,15,1,0,4,0,6.894360745809979,6.894360745809979,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,7,1,0,0,1,4,1,295,0,0,0 +16573,20288,36973,36972,-9,-9,2,1,1,67,1,0,0,0,2,-9,4,3,0,4,0,7.927624086816578,8.031695657422615,1,0,-9,48,0,2,-100.3356737182759,0,0,0,65,3,5,1,2,2,2019,3,1,7,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.389208281036268,7.751698409188711,0,0,57.16,56.15,6,1,0,0,1,4,1,295,0,0,0 +16574,20289,36974,-9,-9,-9,1,1,1,80,3,0,0,0,2,-9,4,3,0,2,0,7.850512546514689,7.431352995031373,3,0,0,0,-9,0,-1023.366709727687,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,3.458564766324257,7.906068647263608,0,0,62.06,43.51,7,1,0,0,2,3,1,250,0,0,0 +16575,20290,36975,-9,36977,36976,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.377920005252,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,9,2,0,685.3333333333334,0,0,0 +16575,20290,36976,36977,-9,-9,2,1,1,37,1,0,2,0,2,-9,2,1,0,2,7.622966608956519,7.753893865449687,0,2,0,-9,2,0,-8,-27.18906309281828,0,0,0,45,2,2,3,2,-9,2019,2,1,16,4,24,24,15,1,4,3,0,9.10358080581751,9.10358080581751,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.38,56.35,3,1,0,1,9,2,0,685.3333333333334,0,0,0 +16575,20290,36977,36976,-9,-9,1,1,0,45,1,0,2,0,2,-9,6,3,0,2,0,0,0,2,0,-9,2,0,8,53.29755020960418,0,0,0,37,2,2,1,-9,2,2019,3,2,19,7,0,0,15,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,121.5901042432811,3,33.03,43.3,5,1,0,1,9,2,0,685.3333333333334,0,0,0 +16576,20291,36978,36979,-9,-9,2,1,0,54,1,0,0,0,1,-9,2,1,0,4,8.926510906105092,8.906303617283267,0,1,0,-9,6,0,-4,-11.6164508655028,0,0,0,58,1,3,1,-9,-9,2019,1,1,5,0,45,85,15,1,0,1,0,21.03512893064512,21.03512893064512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,7,1,0,0,12,5,1,671.5,0,0,0 +16576,20291,36979,36978,-9,-9,1,1,1,58,1,0,0,0,1,-9,1,1,0,3,8.807450196083291,8.734451131195559,0,1,0,-9,6,0,4,-46.40273102184404,0,0,0,54,1,4,1,3,3,2019,1,2,7,0,45,45,15,1,0,1,0,15.06283865744509,15.06283865744509,0,0,0,0,0,0,0,0,0,0,2.664902842221335,0,0,0,57.08,27.95,5,1,0,0,12,5,1,671.5,0,0,0 +16577,20292,36980,36981,-9,-9,1,1,0,73,1,0,0,0,2,-9,4,3,0,2,0,7.118840259059675,6.937247644864419,1,0,-9,36,0,-6,-58.29969057213262,0,0,0,79,2,3,3,2,2,2019,4,2,15,3,0,0,15,4,3,4,0,0,0,1,3.850921697942621,0,0,0,0,26.39837982951607,1,1,0,0,7.132084955144477,123.3990238112689,1,31.34,38.79,3,1,0,0,2,3,1,230,0,0,0 +16577,20292,36981,36980,-9,-9,2,1,1,79,1,0,0,0,2,-9,4,3,0,3,0,7.193849957163688,7.524924679085364,1,0,-9,36,0,6,-70.52408331107191,0,0,0,73,2,2,3,3,3,2019,4,1,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.91425743166915,0,0,54,46,6,1,0,0,2,3,1,230,0,0,0 +16578,20293,36982,36983,-9,-9,2,1,1,61,1,0,0,0,2,-9,2,1,0,2,8.250924603549999,8.492934193890809,4.918044277109022,1,0,-9,34,0,-1,4.218197665995538,0,0,0,62,1,4,1,3,3,2019,1,1,6,0,34,35,15,1,0,1,0,11.57504640978562,11.57504640978562,0,0,0,0,0,0,0,1,1,0,5.833133928280779,5.527527231357361,8.169192118325959,3,58.16,48.06,6,1,0,0,9,5,1,1774,0,0,0 +16578,20293,36983,36982,-9,-9,1,1,0,62,1,0,0,0,1,-9,2,1,0,4,8.66321038095891,9.465609213707753,8.574305866911974,1,0,-9,34,0,1,-42.84763116611833,0,0,0,61,2,2,1,2,1,2019,1,2,6,0,60,60,15,1,0,1,0,12.23229608536299,12.23229608536299,0,0,0,0,0,0,0,1,1,0,0,9.043852037645269,9.649224366697112,3,54.2,57.49,7,1,0,0,9,5,1,1774,0,0,0 +16579,20294,36984,36985,-9,-9,1,1,1,41,1,0,0,0,2,-9,2,1,0,4,9.241388167471191,9.073349268453679,0,1,0,-9,8,0,11,-27.35793309735088,0,0,0,30,2,5,1,3,2,2019,1,2,8,0,44,39,15,1,0,1,0,22.41244643967845,22.41244643967845,0,0,0,0,0,0,0,0,0,0,4.615853259364387,0,0,0,49.76,54.41,6,1,0,0,6,5,1,520,0,0,0 +16579,20294,36985,36984,-9,-9,2,1,0,30,1,0,0,0,2,-9,2,1,0,5,7.998151629655842,8.328363459422892,0,1,0,-9,8,0,-11,95.1836281489214,0,0,1,41,2,4,1,-9,-9,2019,1,1,17,6,39,37,15,1,6,1,0,9.651251366506454,9.651251366506454,0,0,0,0,0,0,0,0,0,0,2.972340240323045,0,4.391365066663656,3,43.91,58.7,6,1,0,0,6,5,1,520,0,0,0 +16580,20295,36986,-9,-9,-9,1,1,0,51,3,0,1,0,2,-9,2,1,0,3,8.818383905301074,8.895671256453221,0,4,0,-9,0,1,0,-995.4971837540729,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,42,45,15,1,0,-9,0,19.73564398964852,19.73564398964852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,5,1,0,0,7,5,1,834,0,0,0 +16580,20296,36987,-9,36986,-9,2,1,0,18,2,0,1,1,2,0,7,2,0,5,8.130296795266391,8.35466624284169,0,3,0,0,0,-9,0,-977.6167537130431,-9,1,1,-9,-9,-9,-9,2,-9,2019,-9,0,13,1,20,0,15,2,1,-9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,7,1,0,1,7,5,1,225,0,0,0 +16580,20297,36988,-9,36986,-9,4,1,1,27,2,0,1,0,2,-9,2,1,0,3,8.078971906323289,7.935231186620485,0,3,0,0,0,-9,0,-943.4157914988788,0,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,23,10,40,47,15,1,10,-9,1,10.16619902705983,10.16619902705983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.29,44.84,2,1,0,0,7,4,1,546,0,0,0 +16580,20298,36989,-9,36986,-9,3,1,0,32,2,0,1,0,1,-9,2,1,0,5,8.802970040375589,8.949217060882249,0,3,0,0,0,-9,0,-970.6714863129857,0,0,1,-9,-9,-9,-9,2,-9,2019,-9,0,11,4,40,44,15,1,4,-9,1,20.70849416648445,20.70849416648445,0,0,0,0,0,0,0,0,0,0,3.148456546126549,0,0,0,54.1,59.11,6,2,0,0,7,5,1,790,0,0,0 +16581,20299,36990,-9,-9,-9,1,1,0,35,2,0,1,0,2,-9,2,1,0,3,0,0,0,4,0,0,0,-9,0,-960.834963886376,0,0,1,-9,-9,-9,-9,-9,-9,2019,-9,0,11,0,0,35,15,1,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,50.16,4,1,0,0,2,1,0,296,0,0,0 +16582,20300,36991,-9,36992,36993,6,1,0,15,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1014.633095748033,-9,0,0,-9,-9,-9,-9,1,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,5,1,0,0,9,5,1,1355,0,0,0 +16582,20300,36992,36993,-9,-9,1,1,0,58,1,0,1,0,1,-9,2,1,0,3,7.125084500767763,6.909687429598185,0,2,0,-9,34,0,1,-116.6463846330174,0,0,0,57,2,4,1,2,2,2019,1,2,13,1,17,14,15,1,1,1,0,7.397328399193837,7.397328399193837,0,0,0,0,0,0,0,1,1,0,3.180428721713799,0,0,3,46.41,48.82,3,1,0,0,9,5,1,1355,0,0,0 +16582,20300,36993,36992,-9,-9,2,1,1,57,1,0,1,0,2,-9,2,1,0,4,9.315664089411401,9.197406167523649,0,2,0,-9,34,0,-1,108.4943476514355,0,0,0,58,1,3,1,3,2,2019,1,1,7,1,49,44,15,1,1,1,0,19.81527474827309,19.81527474827309,0,0,0,0,0,0,0,1,1,0,6.770012144317898,0,0,0,55.36,54.24,6,1,0,0,9,5,1,1355,0,0,0 +16582,20301,36994,-9,36992,36993,3,1,0,29,2,0,1,0,1,0,7,2,0,3,6.715296594264752,7.073643897483793,0,3,0,0,0,-9,0,-993.8061598357426,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,7,0,25,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,6,1,0,0,9,2,1,1368,0,0,0 +16582,20302,36995,36996,36992,36993,8,1,0,26,1,0,1,0,1,1,2,1,0,3,8.229234536467457,8.060041503844394,0,2,0,-9,6,0,-3,-12.16348398629423,-9,1,1,29,1,4,1,1,2,2019,1,7,5,0,42,0,15,1,0,1,0,10.85769323851037,10.85769323851037,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.38,53.41,4,1,0,0,9,4,1,1390,0,0,0 +16582,20302,36996,36995,-9,-9,7,1,1,29,1,0,1,0,1,1,2,1,0,4,7.320046363565359,7.557008335279364,0,2,0,-9,6,0,3,-36.56786829000779,-9,1,0,26,1,3,1,2,2,2019,1,8,15,3,23,0,15,1,3,1,0,7.838442153261517,7.838442153261517,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.63,62.19,3,1,0,0,9,4,1,1390,0,0,0 +16582,20303,36997,-9,36992,36993,4,1,1,21,2,0,1,0,2,1,2,1,0,4,7.37674538261487,7.399352741144094,0,3,0,0,0,-9,0,-1145.832549339917,-9,1,0,-9,-9,-9,-9,1,2,2019,-9,0,10,1,30,0,15,1,1,-9,1,6.409644332880684,6.409644332880684,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,57.81,5,1,0,0,9,3,1,363,0,0,0 +16582,20304,36998,-9,36992,36993,5,1,0,19,2,0,1,0,2,1,2,1,0,3,5.985323746286064,5.617337266798454,0,3,0,0,0,-9,0,-929.3089132365441,-9,1,1,-9,-9,-9,-9,1,2,2019,-9,0,13,2,48,0,15,1,2,-9,1,.9147527591017784,.9147527591017784,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,6,1,0,0,9,2,1,209,0,0,0 +16583,20305,36999,-9,37001,37000,2,1,1,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1128.781717771348,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,3,0,0,2,1,0,876,0,0,0 +16583,20305,37000,37001,-9,-9,1,1,1,32,1,0,2,0,2,-9,8,3,1,3,0,0,0,2,0,-9,6,0,4,0,0,0,0,28,2,4,3,3,3,2019,4,3,11,1,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.19,51.54,5,3,0,0,2,1,0,876,0,0,0 +16583,20305,37001,37000,-9,-9,3,1,0,28,1,0,2,0,2,-9,6,3,0,4,0,0,0,2,0,-9,6,0,-4,0,0,1,1,32,2,3,3,-9,-9,2019,4,1,11,0,0,0,15,3,2,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,46,57,5,3,0,0,2,1,0,876,0,0,0 +16583,20305,37002,-9,37001,37000,4,1,1,3,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.3039885455792,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,3,0,0,2,1,0,876,0,0,0 +16584,20306,37003,37004,-9,-9,2,1,0,63,1,0,0,0,2,-9,4,3,0,3,0,7.941016863921905,7.611085317491778,1,0,-9,46,0,-2,-85.38748964023918,0,0,0,65,2,3,3,2,2,2019,4,1,15,4,0,0,15,4,4,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.772217917540103,0,0,47.36,44.23,6,1,0,0,11,4,1,186.5,0,0,0 +16584,20306,37004,37003,-9,-9,1,1,1,65,1,0,0,0,2,-9,4,3,0,3,0,8.17437812796646,8.211464625158776,1,0,-9,46,0,2,80.48112157893436,0,0,0,63,2,3,3,2,2,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.415863083577181,0,0,53.14,51.28,6,1,0,0,11,4,1,186.5,0,0,0 +16585,20307,37005,37006,-9,-9,1,1,1,51,1,0,0,0,2,-9,2,1,0,3,8.68351033597262,8.898145831389494,0,1,0,-9,23,0,0,-118.8018147199937,0,0,0,51,2,3,1,3,3,2019,1,2,19,7,60,60,15,1,7,1,0,12.90840338815052,12.90840338815052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.11,50.11,4,1,0,0,13,5,1,989,0,0,0 +16585,20307,37006,37005,-9,-9,2,1,0,51,1,0,0,0,2,-9,2,1,0,3,7.98815553315317,8.021854070191996,0,1,0,-9,23,0,0,-11.3050841640889,0,0,0,51,2,3,1,2,2,2019,1,1,13,1,39,37,15,1,1,1,0,7.780959480799643,7.780959480799643,0,0,0,0,0,0,0,0,0,0,0,0,6.10909216833198,3,48.06,45.53,5,1,0,0,13,5,1,989,0,0,0 +16585,20308,37007,-9,37006,37005,3,1,1,19,2,0,0,0,2,-9,2,1,0,3,8.164122819065453,7.943809145336881,0,3,0,0,0,-9,0,-835.7255364116212,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,58,42,15,1,0,-9,1,6.78560705841807,6.78560705841807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,6,1,0,0,13,4,1,302,0,0,0 +16585,20309,37008,-9,37006,37005,4,1,1,19,2,0,0,0,2,-9,2,1,0,4,7.674117465506148,7.777052846667306,0,3,0,0,0,-9,0,-974.2658761615647,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,4,0,39,41,15,1,0,-9,1,6.912257870030633,6.912257870030633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.08,48.35,6,1,0,0,13,3,1,401,0,0,0 +16586,20310,37009,-9,37010,37011,4,1,0,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-846.0196521461954,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,5,3,0,0,8,5,0,724.75,0,0,0 +16586,20310,37010,37011,-9,-9,2,1,0,31,1,1,2,0,1,-9,6,3,0,3,0,0,0,2,0,-9,8,0,-4,22.147870308876,0,0,1,35,1,4,1,1,1,2019,3,1,18,6,0,0,15,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,56.69,4,3,0,0,8,5,0,724.75,0,0,0 +16586,20310,37011,37010,-9,-9,1,1,1,35,1,1,2,0,1,-9,2,1,0,4,9.825574150425211,9.885948657149921,0,2,0,-9,8,0,4,-85.21185749718526,0,0,0,31,1,3,3,1,1,2019,2,2,11,0,50,50,15,1,0,3,0,39.10280440033364,39.10280440033364,0,0,0,0,0,0,0,0,0,0,7.376854892973671,0,0,0,47.58,56.39,5,3,0,0,8,5,0,724.75,0,0,0 +16586,20310,37012,-9,37010,37011,3,1,1,6,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-904.7569334581841,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,5,3,0,0,8,5,0,724.75,0,0,0 +16587,20311,37013,-9,-9,-9,1,1,1,68,3,0,0,0,2,-9,4,3,0,4,0,0,0,3,0,0,0,-9,0,-960.9930022577715,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.7,39.97,6,1,0,0,13,1,0,111,0,0,0 +16588,20312,37014,-9,-9,-9,1,1,0,49,3,0,0,0,2,-9,2,1,0,4,8.474591043256305,8.052126046233145,0,3,0,0,0,-9,0,-1111.132518280954,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,5,0,48,12,15,1,0,-9,0,9.187542820644017,9.187542820644017,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,7,1,0,0,11,4,0,276,0,0,0 +16589,20313,37015,-9,-9,-9,1,1,0,75,3,0,0,0,3,-9,4,3,0,5,0,7.095233613130024,6.986548411488643,3,0,0,0,-9,0,-994.3247314565521,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.468024497987956,7.2856535938575,0,3,55.09,55.87,7,1,0,0,6,2,1,512,0,0,0 +16590,20314,37016,37017,-9,-9,2,1,0,54,1,0,0,0,3,-9,2,1,0,4,8.451363318951815,8.509382628094082,0,1,0,-9,31,0,-8,21.17267845107373,0,0,0,62,2,4,1,2,2,2019,1,1,11,0,30,33,15,1,0,1,0,14.70142314310148,14.70142314310148,0,0,0,0,0,0,0,1,1,0,0,0,.4487174915314764,3,54.2,57.49,6,1,0,0,5,5,1,458,0,0,0 +16590,20314,37017,37016,-9,-9,1,1,1,62,1,0,0,0,2,-9,1,1,0,4,8.101479968616534,8.974764309119848,8.322128969451651,1,0,-9,31,0,8,-6.919857236751812,0,0,0,54,3,4,1,-9,3,2019,1,2,7,0,30,55,15,1,0,1,0,15.80143294268416,15.80143294268416,0,0,0,0,0,0,0,1,1,0,8.075353501365464,8.138308473325049,1.104772647281462,3,48.87,58.55,6,1,0,0,5,5,1,458,0,0,0 +16591,20315,37018,37019,-9,-9,1,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,49,0,-3,-48.15813382303576,0,0,0,72,3,2,1,2,2,2019,3,2,10,2,0,0,15,4,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.28452155581657,0,0,0,51.25,46.55,5,1,0,0,2,4,1,622,0,0,0 +16591,20315,37019,37018,-9,-9,2,1,1,72,1,0,0,0,3,-9,1,1,0,2,8.401294096229604,8.169044492650105,0,1,0,-9,49,0,3,-20.79583467128729,0,0,0,69,2,3,3,3,3,2019,2,1,14,4,80,70,15,1,4,4,0,7.053513061454297,7.053513061454297,0,0,0,0,0,0,0,1,1,0,4.070390747786695,0,0,0,48.68,53.73,4,1,0,0,2,4,1,622,0,0,0 +16592,20316,37020,-9,-9,-9,1,1,1,55,2,0,0,0,2,-9,8,3,1,1,0,0,0,3,0,0,0,-9,0,-838.1950553012307,0,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,9,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,2.848984168332507,0,0,0,48.62,22.81,3,1,0,0,9,1,0,286,0,0,0 +16593,20317,37021,-9,-9,-9,1,1,0,73,3,0,0,0,2,-9,4,3,0,2,0,4.928357212584276,4.819640415731771,3,0,0,0,-9,0,-994.7198249947177,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,5.168078565507654,0,0,34.09,33.16,6,1,0,0,11,2,1,705,0,0,0 +16594,20318,37022,37023,-9,-9,1,1,1,46,1,0,1,0,1,-9,1,1,0,3,9.622425107288194,9.712169113256648,0,2,0,-9,6,0,-1,42.94721157374765,0,0,0,47,2,4,3,3,2,2019,2,2,7,0,35,40,15,1,0,3,0,54.49785228374304,54.49785228374304,0,0,0,0,0,0,0,0,0,0,7.144455542454208,0,0,0,57.33,53.46,6,3,0,0,8,5,1,481,0,0,0 +16594,20318,37023,37022,-9,-9,2,1,0,47,1,0,1,0,2,-9,6,3,0,4,5.371252189523942,5.484314588584247,0,2,0,-9,6,0,1,-179.639079812064,0,0,0,46,1,3,1,3,3,2019,3,1,12,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.088788623170243,0,0,0,49.18,54.46,6,3,0,0,8,5,1,481,0,0,0 +16594,20318,37024,-9,37023,37022,3,1,0,10,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-953.6540437150012,-9,0,0,-9,-9,-9,-9,2,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,5,3,0,0,8,5,1,481,0,0,0 +16595,20319,37025,-9,37026,-9,2,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-809.5089794353418,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,2,3,1,885,0,0,0 +16595,20319,37026,-9,-9,-9,1,1,0,24,2,0,1,0,2,-9,2,1,0,3,7.914184853476629,8.071152755701146,6.07612418053819,4,0,-9,0,0,0,-951.8748846934259,0,1,1,-9,-9,-9,-9,1,2,2019,-9,0,18,7,45,42,15,1,7,-9,0,6.696505727984052,6.696505727984052,0,0,0,0,0,0,0,1,1,0,5.838409424737385,0,0,0,17.45,66.57000000000001,5,1,0,0,2,3,1,885,0,0,0 +16596,20320,37027,-9,37028,-9,2,1,0,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-901.6040469353119,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,10,3,1,619.3333333333334,0,0,0 +16596,20320,37028,-9,-9,-9,1,1,0,30,3,1,2,0,1,-9,2,1,0,3,7.820179099928489,7.725082215837901,6.631140334007736,4,0,0,0,-9,0,-1025.196335678364,0,0,1,-9,-9,-9,-9,2,2,2019,-9,0,14,2,16,16,15,1,2,-9,0,14.16432787606419,14.16432787606419,0,0,0,0,0,0,0,1,1,0,6.295928427039902,0,0,0,30.94,61.65,5,1,0,0,10,3,1,619.3333333333334,0,0,0 +16596,20320,37029,-9,37028,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1059.441237246989,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,10,3,1,619.3333333333334,0,0,0 +16597,20321,37030,37031,-9,-9,1,1,0,79,1,0,0,0,2,-9,4,3,0,3,0,0,0,1,0,-9,61,0,-4,-19.7129951607098,0,0,0,83,3,1,3,3,3,2019,4,2,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.207303246210768,0,0,0,49.28,50.19,6,1,0,0,7,2,1,1997,0,0,0 +16597,20321,37031,37030,-9,-9,2,1,1,83,1,0,0,0,3,-9,4,3,0,1,0,6.813664514285704,6.708144215477955,1,0,-9,61,0,4,-14.28268297066116,0,0,0,79,2,3,3,3,3,2019,4,1,10,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.42812186965557,0,0,52.51,30.32,5,1,0,0,7,2,1,1997,0,0,0 +16598,20322,37032,37033,-9,-9,1,1,1,50,1,0,0,0,3,-9,2,1,0,4,8.511148009583424,8.600054207011091,0,1,0,-9,2,0,11,218.2463658943686,0,0,0,39,1,3,1,2,2,2019,1,2,9,0,41,43,15,1,0,1,0,13.71866431849847,13.71866431849847,0,0,0,0,0,0,0,0,0,0,3.024123775203936,0,0,0,57.16,56.15,6,1,0,0,4,5,1,429.5,0,0,0 +16598,20322,37033,37032,-9,-9,2,1,0,39,1,0,0,0,1,-9,2,1,0,3,8.106493104859807,7.932623765477119,0,1,0,-9,2,0,-11,28.64266438394568,0,0,1,50,3,4,1,-9,-9,2019,1,1,7,0,39,44,15,1,0,1,0,7.059656003948436,7.059656003948436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,46.99,6,1,0,0,4,5,1,429.5,0,0,0 +16599,20323,37034,37035,-9,-9,1,1,0,78,1,0,0,0,3,-9,4,3,0,4,0,4.46586055077471,4.057378273813319,1,0,-9,9,0,-7,39.23750337317554,0,0,0,85,3,4,3,3,3,2019,4,2,8,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,4.356951681793436,4.535368411151992,0,0,62.49,55.09,7,1,0,0,4,2,0,327,0,0,0 +16599,20323,37035,37034,-9,-9,2,1,1,85,1,0,0,0,3,-9,4,3,0,4,0,3.317858480014375,3.65927665017634,1,0,-9,9,0,7,18.07659548934225,0,0,0,78,3,4,3,-9,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,4.298630929551943,0,0,0,0,1,1,0,0,3.566277324664375,0,0,54.16,50.7,6,1,0,0,4,2,0,327,0,0,0 +16600,20324,37036,-9,-9,-9,1,1,0,66,3,0,0,0,2,-9,2,1,0,4,7.392940489575688,8.262036640294696,7.409159154741331,3,0,0,0,-9,0,-1106.921136781534,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,22,22,15,1,0,-9,0,10.97777010585485,10.97777010585485,0,0,0,0,0,0,0,1,1,0,7.13255635010608,7.840312961881306,0,0,57.16,56.15,6,1,0,0,7,4,1,640,0,0,0 +16601,20325,37037,-9,-9,-9,1,1,1,70,3,0,0,0,3,-9,2,1,0,3,7.844607814506385,7.633692103245192,0,3,0,0,0,-9,0,-1165.343641049594,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,40,84,15,1,0,-9,0,7.415512310834263,7.415512310834263,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.04,37.94,6,4,0,0,2,3,1,1305,0,0,0 +16602,20326,37038,-9,-9,-9,1,1,1,64,2,0,0,0,2,-9,4,3,0,2,0,7.240568598521135,7.63055489153397,3,0,0,0,-9,0,-1004.189946163212,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,14,2,0,0,15,4,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.70064418846327,7.217340918846578,0,0,40.37,37.25,4,1,0,0,7,3,1,843,0,0,0 +16603,20327,37039,-9,-9,-9,1,1,1,74,2,0,0,0,2,-9,4,3,0,3,0,7.785799559845478,7.67810439154054,3,0,0,0,-9,0,-975.5079313662668,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.5510762478724679,7.467010908964004,0,0,57.33,53.46,7,1,0,0,8,3,1,1196,0,0,0 +16604,20328,37040,-9,-9,-9,1,1,0,81,3,0,0,0,2,-9,4,3,0,4,0,5.78655339047195,5.628374370593236,3,0,0,0,-9,0,-1032.548823994407,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,4.872147998134855,6.033426726888639,0,0,57.73,54.53,6,1,0,0,13,2,1,381,0,0,0 +16605,20329,37041,37042,-9,-9,1,1,1,57,1,0,0,0,1,-9,4,3,0,3,0,7.956831483857815,8.052956681006858,1,0,-9,9,0,2,-78.94369818768263,0,0,0,55,1,4,1,2,2,2019,3,2,10,0,0,0,15,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.276367149690385,7.468023223942474,3.447789606444185,3,51.17,49.39,6,1,0,1,10,3,1,228,0,0,0 +16605,20329,37042,37041,-9,-9,2,1,0,55,1,0,0,0,1,-9,2,1,0,4,7.094734377222507,7.025656427727039,0,1,0,-9,9,0,-2,-40.08233410857773,0,0,0,57,1,3,3,1,1,2019,2,1,9,1,16,16,15,1,1,4,0,7.748416610134861,7.748416610134861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,6,1,0,0,10,3,1,228,0,0,0 +16605,20330,37043,-9,37042,37041,3,1,0,28,2,0,0,0,1,-9,2,1,0,4,8.112625304053552,8.472810356523734,0,3,0,0,0,-9,0,-804.2455205840977,0,1,1,-9,-9,-9,-9,1,1,2019,-9,0,9,0,40,38,15,1,0,-9,1,9.47658213233413,9.47658213233413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.69,58.35,6,1,0,0,10,4,1,3480,0,0,0 +16606,20331,37044,37045,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,3,9.50270039157736,9.174752037917152,0,1,0,-9,2,0,1,76.11579132912526,0,0,1,35,1,5,1,1,2,2019,1,2,14,2,48,42,15,1,2,1,0,25.08653147917985,25.08653147917985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,49.25,6,2,0,0,8,5,1,652,0,0,0 +16606,20331,37045,37044,-9,-9,2,1,1,35,1,0,0,0,1,-9,1,1,0,5,9.497600747950841,9.634579915505469,0,1,0,-9,2,0,-1,104.9918165487242,0,0,0,36,1,3,1,-9,-9,2019,1,1,5,0,60,55,15,1,0,1,0,28.38456322829321,28.38456322829321,0,0,0,0,0,0,0,0,0,0,2.591521152029484,0,0,0,57.06,57.76,5,4,0,0,8,5,1,652,0,0,0 +16607,20332,37046,-9,-9,-9,1,1,1,61,2,0,0,0,3,-9,2,1,0,2,8.498957981901894,8.313518048124005,0,3,0,0,0,-9,0,-1009.085001102539,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,10,0,39,39,15,1,0,-9,0,15.66011175281312,15.66011175281312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,4,1,0,0,13,4,0,686,0,0,0 +16608,20333,37047,37048,-9,-9,1,1,0,36,1,0,0,0,1,-9,2,1,0,3,8.316211032341036,8.148202786432469,0,1,0,-9,4,0,-14,19.25202041242211,0,0,1,50,2,3,3,1,1,2019,2,2,19,7,37,18,15,1,7,3,0,12.90435660376485,12.90435660376485,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.39,3,4,0,0,1,3,1,1071,0,0,0 +16608,20333,37048,37047,-9,-9,2,1,1,50,1,0,0,0,2,-9,8,3,1,3,0,0,0,1,0,-9,4,0,14,-11.41547865124285,-9,0,0,36,1,3,1,-9,-9,2019,3,1,15,3,0,0,15,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.65,61.97,3,1,0,1,1,3,1,1071,0,0,0 +16609,20334,37049,-9,-9,-9,1,1,0,61,3,0,0,0,1,-9,2,1,0,2,7.573703472675216,7.870287367571365,0,3,0,0,0,-9,0,-834.744749599418,0,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,1,38,38,15,1,1,-9,0,7.92484080636722,7.92484080636722,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.68,44.37,2,1,0,0,4,3,0,627,0,0,0 +16610,20335,37050,37051,-9,-9,1,1,1,60,1,0,0,0,2,-9,2,1,0,3,8.302562550957504,8.633101361183543,5.133463720624394,1,0,-9,41,0,-2,-45.96018473440534,0,0,0,62,2,3,1,3,2,2019,1,2,10,0,55,60,15,1,0,1,0,11.63348541315667,11.63348541315667,0,0,0,0,0,0,0,0,0,0,4.866645753575033,5.150451156014253,0,0,58.32,50.22,5,1,0,0,9,5,1,484,0,0,0 +16610,20335,37051,37050,-9,-9,2,1,0,62,1,0,0,0,2,-9,2,1,0,3,7.345455762161516,7.322190291881983,0,1,0,-9,41,0,2,-70.34851656121062,0,0,0,60,2,3,1,2,2,2019,1,1,12,0,25,24,15,1,0,1,0,5.988105238652831,5.988105238652831,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52.65,48.94,6,1,0,0,9,5,1,484,0,0,0 +16611,20336,37052,37055,-9,-9,2,1,1,53,1,0,2,0,3,-9,8,3,1,4,0,0,0,2,0,-9,23,0,12,0,0,0,0,41,3,4,3,3,3,2019,4,1,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,6,3,0,0,8,1,0,542.25,0,0,0 +16611,20336,37053,-9,37055,37052,6,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-915.8815700713478,-9,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,3,0,0,8,1,0,542.25,0,0,0 +16611,20336,37054,-9,37055,37052,5,1,0,16,2,0,2,1,2,-9,7,2,0,4,5.544312487966315,5.712080661939663,0,2,0,0,0,-9,0,-1064.240596164611,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,15,3,6,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,6,3,0,0,8,1,0,542.25,0,0,0 +16611,20336,37055,37052,-9,-9,1,1,0,41,1,0,2,0,3,-9,6,3,0,4,0,0,0,2,0,-9,23,0,-12,0,0,0,1,53,3,4,3,3,3,2019,4,2,10,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,119.7009605171927,1,49,55,6,3,0,0,8,1,0,542.25,0,0,0 +16611,20337,37056,-9,37055,37052,3,1,0,21,2,0,2,0,2,-9,2,1,0,4,9.690056624558114,9.442426721981496,0,3,0,0,0,-9,0,-952.9870238260097,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,6,18,15,1,0,-9,1,358.8747307328995,358.8747307328995,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,6,3,0,0,8,5,0,567,0,0,0 +16611,20338,37057,-9,37055,37052,4,1,0,18,2,0,2,0,2,-9,7,2,0,3,0,0,0,3,0,0,0,-9,0,-1094.933005414042,1,1,1,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,4,3,0,0,8,1,0,395,0,0,0 +16612,20339,37058,37061,-9,-9,1,1,1,33,1,1,2,0,1,-9,2,1,0,3,8.933187348167555,9.39097986900274,0,2,0,-9,9,0,3,12.2769580474745,0,0,0,30,1,5,1,2,2,2019,1,2,10,1,41,40,15,1,1,1,0,34.97620098712778,34.97620098712778,0,0,0,0,0,0,0,1,1,0,.6254613546948025,0,0,0,47.44,52.72,6,1,0,0,4,5,1,822,0,0,0 +16612,20339,37059,-9,37061,37058,4,1,1,0,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-955.3440160590333,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,4,5,1,822,0,0,0 +16612,20339,37060,-9,37061,37058,3,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-944.2420989768643,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,4,5,1,822,0,0,0 +16612,20339,37061,37058,-9,-9,2,1,0,30,1,1,2,0,1,-9,5,1,0,5,0,0,0,2,0,-9,9,0,-3,-23.81805059613701,0,0,1,33,1,3,1,-9,-9,2019,1,1,12,2,0,39,15,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.182750398365774,0,0,0,54.1,59.11,6,1,0,0,4,5,1,822,0,0,0 +16613,20340,37062,37063,-9,-9,1,1,1,66,1,0,0,0,1,-9,2,1,0,4,8.940213895151508,9.868113327308734,9.962708887408423,1,0,-9,43,0,1,9.710597869076047,0,0,0,65,2,3,3,2,1,2019,2,2,6,0,2,6,15,1,0,3,0,378.7985060832891,378.7985060832891,0,0,0,0,0,0,0,1,1,0,6.016443265738988,9.740120862423412,16.84480556935403,3,60.7,47.65,7,1,0,0,12,5,1,533.5,0,0,0 +16613,20340,37063,37062,-9,-9,2,1,0,65,1,0,0,0,2,-9,6,3,0,3,0,0,0,1,0,-9,43,0,-1,-44.92970662417379,0,0,0,66,1,4,1,2,3,2019,3,1,7,0,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,3.695064604601051,3,63.98,38.08,6,1,0,0,12,5,1,533.5,0,0,0 +16614,20341,37064,-9,-9,-9,1,1,1,52,3,0,0,0,1,-9,2,1,0,4,9.683248095204329,9.633193065612655,6.388611331352917,3,0,0,0,-9,0,-954.2351609039117,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,8,0,40,55,15,1,0,-9,0,52.77135482184242,52.77135482184242,0,0,0,0,0,0,0,1,1,0,8.792687233863417,6.803677469997751,0,0,58.15,52.91,6,1,0,0,9,5,0,299,0,0,0 +16615,20342,37065,-9,-9,-9,1,1,0,50,3,0,0,0,2,-9,1,1,0,4,8.000987124963673,8.066268696028395,0,3,0,0,0,-9,0,-1018.582778909979,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,7,0,30,35,15,1,0,-9,0,12.74926537088011,12.74926537088011,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,2,4,1,273,0,0,0 +16616,20343,37066,-9,37067,-9,2,1,1,15,2,0,1,1,3,-9,-9,2,0,2,0,0,0,4,0,0,0,-9,0,-967.9872000413587,-9,0,0,-9,-9,-9,-9,1,-9,2019,-9,0,15,0,0,0,15,2,4,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39,45,4,1,0,0,7,2,0,924,0,0,0 +16616,20343,37067,-9,-9,-9,1,1,0,56,3,0,1,0,1,-9,8,3,1,2,0,5.86132496332596,5.590824711524103,4,0,0,0,-9,0,-968.8820761142351,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,2,0,29,15,3,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,6.220275533405837,0,0,0,35.49,40.88,4,1,0,1,7,2,0,924,0,0,0 +16617,20344,37068,37071,-9,-9,2,1,1,45,1,0,2,0,2,-9,2,1,0,4,7.892817607638531,7.894766024855144,0,2,0,-9,19,0,6,-14.41773742854102,-9,0,0,39,2,4,1,2,2,2019,1,1,9,0,40,0,15,1,1,1,0,9.913106992062719,9.913106992062719,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,6,1,0,0,9,3,1,1973.5,0,0,0 +16617,20344,37069,-9,37071,37068,3,1,1,16,2,0,2,1,2,-9,7,2,0,4,0,0,0,2,0,0,0,-9,0,-1030.536088669382,-9,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,3,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.88,54.46,5,1,0,0,9,3,1,1973.5,0,0,0 +16617,20344,37070,-9,37071,37068,4,1,0,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1032.758496015843,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,5,1,0,0,9,3,1,1973.5,0,0,0 +16617,20344,37071,37068,-9,-9,1,1,0,39,1,0,2,0,2,-9,2,1,0,4,6.613457199467605,7.034430329812847,0,2,0,-9,18,0,-6,75.12086924540662,0,0,1,45,2,4,1,2,3,2019,1,2,7,0,17,15,15,1,0,1,0,5.108748849114889,5.108748849114889,0,0,0,0,0,0,0,1,1,0,0,0,1.445060165553042,3,54.2,57.49,6,1,0,0,9,3,1,1973.5,0,0,0 +16618,20345,37072,-9,-9,-9,1,1,0,85,3,0,0,0,3,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-997.2171748579564,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,17,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,15.92,7,3,0,0,8,1,0,2204,0,0,0 +16619,20346,37073,37075,-9,-9,1,1,0,31,1,0,1,0,2,-9,2,1,0,3,7.492327590810145,7.497914959056238,0,2,0,-9,11,0,-1,-46.73356251891813,0,0,1,32,2,3,1,2,2,2019,1,2,18,6,30,28,15,1,6,1,0,7.591654033404606,7.591654033404606,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.82,51.05,6,1,0,0,5,3,1,399,0,0,0 +16619,20346,37074,-9,37073,37075,3,1,0,6,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1123.898679973865,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,13,0,0,0,15,2,3,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,5,1,0,0,5,3,1,399,0,0,0 +16619,20346,37075,37073,-9,-9,2,1,1,32,1,0,1,0,2,-9,2,1,0,3,7.710414029865109,7.871874125731817,0,2,0,-9,11,0,1,57.53065378722563,0,0,0,31,2,3,1,3,2,2019,1,1,13,1,37,60,15,1,1,1,0,8.119202963683762,8.119202963683762,0,0,0,0,0,0,0,1,1,0,.1837583710624299,0,0,0,37.61,56.99,5,1,0,0,5,3,1,399,0,0,0 +16620,20347,37076,-9,37078,37077,4,1,1,17,2,0,1,1,2,0,7,2,0,4,0,0,0,2,0,0,0,-9,0,-876.7844517929265,-9,1,0,-9,-9,-9,-9,1,1,2019,-9,0,2,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,7,1,0,0,13,4,1,1145.666666666667,0,0,0 +16620,20347,37077,37078,-9,-9,1,1,1,50,1,0,1,0,1,-9,2,1,0,4,8.723747542990987,8.786473050228432,0,2,0,-9,28,0,-8,38.28264298514632,-9,0,0,58,1,4,1,-9,-9,2019,1,2,9,0,45,0,15,1,1,1,0,15.96982589910698,15.96982589910698,0,0,0,0,0,0,0,1,1,0,3.161632478880652,0,0,0,53,55,6,1,0,0,13,4,1,1145.666666666667,0,0,0 +16620,20347,37078,37077,-9,-9,2,1,0,58,1,0,1,0,1,-9,2,1,0,4,6.687819584644497,7.272811470993179,0,2,0,-9,28,0,8,25.46826790022457,0,0,0,50,1,4,1,2,3,2019,1,1,7,0,11,12,15,1,0,1,0,8.957931297970564,8.957931297970564,0,0,0,0,0,0,0,1,1,0,0,0,5.994989980906796,3,54.2,57.49,6,1,0,0,13,4,1,1145.666666666667,0,0,0 +16620,20348,37079,-9,37078,37077,3,1,0,19,2,0,1,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-920.7141745344214,-9,1,1,-9,-9,-9,-9,1,1,2019,-9,0,5,0,0,0,15,2,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,6,1,0,0,13,1,1,580,0,0,0 +16621,20349,37080,-9,-9,-9,1,1,0,74,3,0,0,0,3,-9,4,3,0,1,0,5.760552404416065,5.679154381235323,3,0,0,0,-9,0,-1144.508496730008,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,23,7,0,0,15,4,7,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.905836852265371,0,0,37.43,18.27,6,1,0,0,4,2,0,1909,0,0,0 +16622,20350,37081,-9,-9,-9,1,1,1,76,3,0,1,0,3,-9,4,3,0,3,0,0,0,4,0,0,0,-9,0,-981.4103710225402,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,7,0,0,0,15,4,0,-9,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,60.71,26.21,6,1,0,0,12,1,1,1674,0,0,0 +16622,20351,37082,-9,37083,-9,3,1,0,17,2,0,1,0,2,1,97,3,0,4,2.75887457386994,2.504428354690223,0,3,0,0,0,-9,0,-945.075689021202,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,10,1,0,0,15,3,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,.2288250855339398,0,0,0,51.83,57.2,5,1,0,1,12,3,1,576,0,0,0 +16622,20351,37083,-9,-9,37081,2,1,0,36,2,0,1,0,2,-9,2,1,0,5,7.940333554920887,7.986566418879726,0,3,0,0,0,-9,0,-959.1724745405907,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,6,0,39,39,15,1,0,-9,1,5.8702282159692,5.8702282159692,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,6,1,0,0,12,3,1,576,0,0,0 +16623,20352,37084,-9,-9,-9,1,1,0,62,3,0,0,0,3,-9,2,1,0,2,6.092024299604677,6.387312927923096,0,3,0,0,0,-9,0,-972.1768571775107,0,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,21,10,8,30,15,1,10,-9,0,7.147604695036017,7.147604695036017,0,0,0,0,0,0,0,1,0,1,0,0,3.441519841972327,3,27.24,28.24,3,1,0,0,13,2,0,442,0,0,0 +16624,20353,37085,37086,-9,-9,2,1,0,49,1,0,0,0,3,-9,6,3,0,4,0,0,0,1,0,-9,30,0,-11,108.5491297832164,0,0,0,60,3,2,3,-9,-9,2019,4,1,10,0,0,0,15,3,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,6,3,0,0,6,2,1,409,0,0,0 +16624,20353,37086,37085,-9,-9,1,1,1,60,1,0,0,0,3,-9,4,3,0,2,0,7.308737823310472,7.262986458452163,1,0,-9,30,0,11,59.85912741800903,0,0,0,49,3,4,3,-9,-9,2019,4,2,7,1,0,0,15,4,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.882735234290982,0,0,39.74,41.69,2,3,0,0,6,2,1,409,0,0,0 +16624,20354,37087,-9,37085,37086,4,1,1,26,2,0,0,0,1,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-960.0484403969941,-9,1,0,-9,-9,-9,-9,3,3,2019,-9,0,21,6,0,0,15,3,6,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.52,50.73,4,3,1,0,6,1,1,533,0,0,0 +16625,20355,37088,37089,-9,-9,2,1,1,74,1,0,0,0,3,-9,4,3,0,2,0,5.155320170821676,4.819772289983511,1,0,-9,33,0,-1,93.3584205929551,0,0,0,75,3,1,3,3,3,2019,4,1,14,3,0,0,15,4,3,4,0,0,0,0,0,0,0,0,0,0,1,1,0,1.995365643421748,5.164182777763821,115.7084068244081,2,64,27.54,7,1,0,0,12,2,1,792,0,0,0 +16625,20355,37089,37088,-9,-9,1,1,0,75,1,0,0,0,3,-9,4,3,0,1,0,6.76558230454286,6.637537426174703,1,0,-9,34,0,1,113.2498478510812,0,0,0,74,3,2,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,8.640023103597812,9.375031102506419,0,0,0,1,1,0,0,6.49476251098358,113.6325202447665,1,58.16,9.710000000000001,4,1,0,1,12,2,1,792,0,0,0 +16626,20356,37090,-9,37092,37093,5,1,0,3,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-931.4450531279354,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,5,4,0,0,7,2,0,1173,0,0,0 +16626,20356,37091,-9,37092,37093,4,1,1,6,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-997.4876837593425,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,4,0,0,7,2,0,1173,0,0,0 +16626,20356,37092,37093,-9,-9,1,1,0,41,1,0,3,0,1,-9,2,1,0,3,8.093099865211311,8.101869580956894,0,2,0,-9,11,0,-4,-133.2158543743577,0,0,1,45,1,5,3,3,1,2019,2,2,9,1,41,0,15,1,1,3,0,9.106592073699661,9.106592073699661,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,5,4,0,1,7,2,0,1173,0,0,0 +16626,20356,37093,37092,-9,-9,2,1,1,45,1,0,3,0,1,-9,6,3,0,5,0,0,0,2,0,-9,11,0,4,32.29581551955378,0,0,0,41,1,3,1,-9,2,2019,3,1,7,0,0,40,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.81,58.17,5,4,0,0,7,2,0,1173,0,0,0 +16626,20356,37094,-9,37092,37093,3,1,1,9,2,0,3,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-989.744951388154,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,4,0,0,7,2,0,1173,0,0,0 +16627,20357,37095,37096,-9,-9,2,1,1,50,1,0,0,0,2,-9,2,1,0,4,8.028915430010398,8.352442621666382,0,1,0,-9,26,0,2,-117.9994550831408,0,0,0,48,2,2,1,2,1,2019,1,1,6,0,40,40,15,1,0,1,0,9.627543038854849,9.627543038854849,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,6,1,0,0,9,5,1,526,0,0,0 +16627,20357,37096,37095,-9,-9,1,1,0,48,1,0,0,0,2,-9,2,1,0,2,8.55897258666522,8.681334689195022,0,1,0,-9,26,0,-2,72.75589613801198,0,0,0,50,2,4,1,2,2,2019,1,2,11,0,37,37,15,1,0,1,0,15.49917132435674,15.49917132435674,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.76,31.18,6,1,0,0,9,5,1,526,0,0,0 +16627,20358,37097,-9,37096,37095,3,1,1,20,2,0,0,0,2,-9,2,1,0,3,0,0,0,3,0,0,0,-9,0,-1035.302824463448,0,1,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,43,15,1,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,5,1,0,0,9,1,1,531,0,0,0 +16628,20359,37098,37099,-9,-9,2,1,0,45,1,0,0,0,2,-9,2,1,0,3,8.677206094437274,8.537131353560303,0,1,0,-9,8,0,1,-122.0732253794919,0,0,0,44,2,3,1,-9,-9,2019,1,1,9,1,42,45,15,1,1,1,0,14.12218701383534,14.12218701383534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.93,27.95,4,1,0,0,4,5,1,722,0,0,0 +16628,20359,37099,37098,-9,-9,1,1,1,44,1,0,0,0,2,-9,2,1,0,3,8.240618225825759,8.44742335773757,0,1,0,-9,8,0,-1,26.15478880796376,0,0,0,45,2,3,1,3,-9,2019,1,2,12,0,37,37,15,1,0,1,0,14.64839632940219,14.64839632940219,0,0,0,0,0,0,0,0,0,0,3.980773364136891,0,0,0,43.37,57.28,6,1,0,0,4,5,1,722,0,0,0 +16629,20360,37100,37101,-9,-9,1,1,0,65,1,0,0,0,2,-9,2,1,0,4,7.083141172683233,7.103826174069119,0,1,0,-9,48,0,-2,35.54196620109826,0,0,0,67,3,3,1,2,2,2019,1,2,6,0,21,22,15,1,0,1,0,6.287393101333383,6.287393101333383,0,0,0,0,0,0,0,1,1,0,.5761864797162579,0,0,0,57.16,56.15,7,1,0,0,2,3,1,381.5,0,0,0 +16629,20360,37101,37100,-9,-9,2,1,1,67,1,0,0,0,3,-9,2,1,0,3,7.937274705124243,7.915408865970689,0,1,0,-9,8,0,2,78.67622826566107,-9,0,0,65,2,4,1,-9,-9,2019,1,1,10,0,20,0,15,1,1,1,0,14.80824139432226,14.80824139432226,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,5,1,0,0,2,3,1,381.5,0,0,0 +16629,20361,37102,-9,37100,37101,3,1,1,39,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-1002.804421459475,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,5,1,1,0,2,1,1,159,0,0,0 +16629,20362,37103,-9,37100,37101,4,1,1,35,2,0,0,0,2,-9,3,3,0,4,0,0,0,3,0,0,0,-9,0,-948.6738680873808,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,10,0,0,0,15,3,1,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,1,0,2,1,1,335,0,0,0 +16630,20363,37104,37105,-9,-9,1,1,1,66,1,0,0,0,2,-9,4,3,0,3,0,6.90309135802366,6.686246514869239,1,0,-9,6,0,-3,-9.696491469966061,0,0,0,69,2,3,3,2,2,2019,4,2,11,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.907200126052078,7.287169119387261,0,0,38.75,53.76,5,1,0,0,12,2,1,203,0,0,0 +16630,20363,37105,37104,-9,-9,2,1,0,69,1,0,0,0,2,-9,4,3,0,3,0,2.881894322566393,3.127883290524603,1,0,-9,6,0,3,-53.69576996478138,0,0,0,66,2,3,3,3,2,2019,4,1,13,3,0,0,15,4,3,4,0,0,0,1,0,5.239145210222064,0,0,0,0,1,1,0,0,3.500178134776888,0,0,54.29,31.44,2,1,0,0,12,2,1,203,0,0,0 +16631,20364,37106,-9,37107,37108,3,1,1,3,2,0,1,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1037.272046033829,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,5,1,0,0,12,4,1,1659.666666666667,0,0,0 +16631,20364,37107,37108,-9,-9,2,1,0,30,1,0,1,0,2,-9,2,1,0,5,8.021082518332781,7.821338215932936,0,2,0,-9,5,0,-3,73.86715458321311,0,0,1,33,2,5,1,-9,-9,2019,1,1,11,0,30,21,15,1,0,1,0,12.28196629458469,12.28196629458469,0,0,0,0,0,0,0,1,1,0,0,0,13.73407719971074,3,49,59,5,1,0,0,12,4,1,1659.666666666667,0,0,0 +16631,20364,37108,37107,-9,-9,1,1,1,33,1,0,1,0,2,-9,2,1,0,5,7.922669481776521,7.966056327319017,0,2,0,-9,5,0,3,-97.45969013219077,-9,0,0,30,2,5,1,3,3,2019,1,2,10,2,41,0,15,1,2,1,0,9.192037685526987,9.192037685526987,0,0,0,0,0,0,0,1,1,0,5.035452082526958,0,0,0,45.43,45.17,2,1,0,0,12,4,1,1659.666666666667,0,0,0 +16632,20365,37109,-9,-9,-9,1,1,0,45,2,0,0,0,2,-9,2,1,0,4,8.297573109842736,8.365944773879741,0,3,0,-9,0,-9,0,-943.5327745392518,-9,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,16,5,40,0,15,1,5,-9,0,12.7782035385889,12.7782035385889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.42,61.41,3,1,0,1,8,4,0,8077,0,0,0 +16633,20366,37110,-9,37111,-9,2,1,1,5,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-925.1446329585085,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,5,1,0,0,4,3,0,1313.333333333333,0,0,0 +16633,20366,37111,-9,-9,-9,1,1,0,28,3,1,2,0,2,-9,2,1,0,3,7.858495194700598,8.134480375754224,5.424552265076725,4,0,-9,0,1,0,-999.600254525285,-9,1,1,-9,-9,-9,-9,-9,2,2019,-9,0,27,11,41,0,15,1,11,-9,0,6.705812893479858,6.705812893479858,0,0,0,0,0,0,0,1,0,1,5.965765648604549,0,0,0,16.98,65.47,3,1,0,0,4,3,0,1313.333333333333,0,0,0 +16633,20366,37112,-9,37111,-9,3,1,1,2,2,1,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1056.484811596946,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,5,1,0,0,4,3,0,1313.333333333333,0,0,0 +16634,20367,37113,37114,-9,-9,1,1,1,77,1,0,0,0,1,-9,4,3,0,3,0,7.636406128831288,7.056528471854361,1,0,-9,7,0,3,-162.0117486676161,0,0,0,74,2,4,3,3,2,2019,4,2,10,1,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,5.55322403588586,7.221382861978284,0,0,54.37,54.8,6,1,0,0,6,2,1,443,0,0,0 +16634,20367,37114,37113,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,4,0,4.553896932579637,4.583483538616711,1,0,-9,7,0,-3,-58.95583329649301,0,0,0,77,1,3,3,2,2,2019,4,1,5,0,0,0,15,4,0,4,0,0,0,1,0,.8073429284109148,0,0,0,0,1,1,0,5.198610012958954,4.810461874897721,0,0,63.81,38.07,7,1,0,0,6,2,1,443,0,0,0 +16635,20368,37115,37116,-9,-9,1,1,0,26,1,0,0,0,2,-9,2,1,0,4,7.58281827624896,7.635545870494454,0,1,0,-9,2,0,-14,-45.04071097437648,0,1,1,40,2,3,1,2,2,2019,1,2,23,8,30,34,15,1,8,1,0,6.547980858823461,6.547980858823461,0,0,0,0,0,0,0,0,0,0,6.10003219881618,0,0,0,25.7,62.8,4,1,0,0,12,4,0,277,0,0,0 +16635,20368,37116,37115,-9,-9,2,1,1,40,1,0,0,0,2,-9,2,1,0,3,8.33243814210884,8.349025792960749,0,1,0,-9,2,0,14,49.05078868529849,0,0,0,26,2,4,1,-9,-9,2019,1,1,12,1,50,40,15,1,1,1,0,8.446365144943782,8.446365144943782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.27,48.1,4,1,0,0,12,4,0,277,0,0,0 +16636,20369,37117,-9,-9,-9,1,1,0,69,2,0,0,0,3,-9,4,3,0,1,0,6.134598307229927,6.261779660953572,3,0,0,0,-9,0,-880.7743955657961,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,30,11,0,0,15,4,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.464389645950753,0,0,44.1,12.63,5,1,0,0,12,2,1,170,0,0,0 +16637,20370,37118,-9,37119,-9,3,1,1,14,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-942.9448526745405,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,5,1,0,0,2,2,0,933.5,0,0,0 +16637,20370,37119,-9,-9,-9,1,1,0,35,3,0,2,0,2,-9,6,3,0,3,0,6.065840855971205,6.076032194023566,4,0,-9,0,1,0,-886.7112428279898,0,0,1,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,3,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.724593810050362,0,70.01166104068345,3,47.66,52.33,5,1,0,0,2,2,0,933.5,0,0,0 +16637,20370,37120,-9,37119,-9,2,1,1,17,2,0,2,1,2,0,7,2,0,1,7.401397819940455,7.255866804819893,0,4,0,0,0,-9,0,-1025.263807676986,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,19,8,40,0,15,2,8,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.81,41.5,2,1,0,0,2,2,0,933.5,0,0,0 +16637,20370,37121,-9,37119,-9,4,1,1,6,2,0,2,1,3,-9,-9,2,0,4,0,0,0,4,0,0,0,-9,0,-1016.271683086593,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,2,2,0,933.5,0,0,0 +16638,20371,37122,-9,-9,-9,1,1,0,88,3,0,0,0,3,-9,4,3,0,3,0,6.067436218123793,5.910288426290517,3,0,0,0,-9,0,-892.2328499316066,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,11,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,5.345533781146756,5.521633276022509,0,0,46.84,47.65,6,1,0,0,12,2,1,662,0,0,0 +16638,20372,37123,-9,37122,-9,2,1,0,58,2,0,0,0,1,-9,2,1,0,4,7.531025189390616,7.643630014856799,0,3,0,0,0,-9,0,-970.3638735222097,0,0,0,-9,-9,-9,-9,3,2,2019,-9,0,10,1,35,0,15,1,1,-9,1,6.102378386832346,6.102378386832346,0,0,0,0,0,0,0,1,1,0,4.411817687148422,0,0,0,52.43,55.57,6,1,0,0,12,3,1,477,0,0,0 +16639,20373,37124,-9,-9,-9,1,1,1,75,3,0,0,0,2,-9,4,3,0,2,0,6.198541141877566,6.389945518285829,3,0,0,0,-9,0,-1010.722307486517,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,16,5,0,0,15,4,5,-9,0,0,0,1,0,0,0,0,.6436882872808369,0,1,1,0,6.604870439610005,6.351454365035478,0,0,38.7,44.96,6,1,0,0,7,2,1,767,0,0,0 +16640,20374,37125,-9,-9,-9,1,1,1,57,2,0,0,0,2,-9,2,1,0,2,7.795227958668895,7.90393996651805,0,3,0,0,0,-9,0,-978.4777169310822,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,11,0,38,37,15,1,0,-9,0,9.251173206970051,9.251173206970051,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.74,49.95,5,1,0,0,5,3,0,271,0,0,0 +16641,20375,37126,-9,37127,37128,3,1,1,10,2,0,1,1,3,-9,-9,2,0,5,0,0,0,2,0,0,0,-9,0,-1069.0867863751,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,10,0,0,0,15,2,1,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,5,1,0,0,10,3,1,1029.666666666667,0,0,0 +16641,20375,37127,37128,-9,-9,2,1,0,50,1,0,1,0,2,-9,2,1,0,2,6.803314409137164,7.518109708935347,6.824488011037484,2,0,-9,10,0,-10,24.8668733606591,0,0,0,60,2,3,1,1,1,2019,1,1,10,0,31,13,15,1,0,1,0,3.325595092070806,3.325595092070806,0,0,0,0,0,0,0,1,1,0,6.352585036879455,0,0,0,50.95,48.58,3,1,0,0,10,3,1,1029.666666666667,0,0,0 +16641,20375,37128,37127,-9,-9,1,1,1,60,1,0,1,0,2,-9,2,1,0,3,8.011743826747951,7.737000054466532,0,2,0,-9,10,0,10,17.66778137899675,0,0,0,50,2,2,1,2,2,2019,1,2,3,0,36,37,15,1,0,1,0,8.555470621708601,8.555470621708601,0,0,0,0,0,0,0,1,1,0,2.012707416115215,0,0,0,50.71,52.35,6,1,0,0,10,3,1,1029.666666666667,0,0,0 +16641,20376,37129,-9,37127,37128,4,1,0,20,2,0,1,0,1,-9,2,1,0,3,7.593190663431307,7.843252925238217,0,3,0,0,0,-9,0,-1032.259336024233,0,1,1,-9,-9,-9,-9,2,2,2019,-9,0,15,3,31,25,15,1,3,-9,1,9.129662202476981,9.129662202476981,0,0,0,0,0,0,0,1,1,0,.3444638605523085,0,0,0,28.73,50.3,4,1,0,0,10,3,1,549,0,0,0 +16642,20377,37130,37131,-9,-9,2,1,0,52,1,0,0,0,2,-9,2,1,0,3,8.315861983952349,8.051888319830825,0,1,0,-9,33,0,-1,-33.50245169489303,0,0,0,53,2,4,3,3,3,2019,2,1,10,0,38,38,15,1,0,3,0,13.05438929305108,13.05438929305108,0,0,0,0,0,0,0,0,0,0,0,0,10.90773987035402,3,55.92,36.4,5,1,0,0,4,3,1,536.5,0,0,0 +16642,20377,37131,37130,-9,-9,1,1,1,53,1,0,0,0,2,-9,8,3,1,4,0,0,0,1,0,-9,38,0,1,93.219761035077,0,0,0,52,2,3,1,3,3,2019,3,2,14,2,0,0,15,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.74,39.44,4,1,0,0,4,3,1,536.5,0,0,0 +16642,20378,37132,-9,37130,37131,3,1,1,29,2,0,0,0,2,-9,2,1,0,5,8.244537604811965,8.120328982714119,0,3,0,0,0,-9,0,-1030.091986034813,0,1,0,-9,-9,-9,-9,2,3,2019,-9,0,7,0,40,40,15,1,0,-9,1,13.16494777782286,13.16494777782286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,7,1,0,0,4,4,1,1387,0,0,0 +16643,20379,37133,-9,-9,-9,1,1,1,24,2,0,0,0,1,1,2,1,0,4,8.376022270432282,8.407806770192666,0,3,0,0,0,-9,0,-1075.608324374168,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,7,0,38,0,15,1,0,-9,0,12.08316016416646,12.08316016416646,0,0,0,0,0,0,0,0,0,0,1.960091386887802,0,0,0,59.53,56.44,7,1,0,0,10,4,0,1585,0,0,0 +16644,20380,37134,37135,-9,-9,1,1,0,50,1,0,0,0,3,-9,6,3,0,3,0,0,0,1,0,-9,35,0,0,-45.63604225493784,0,0,0,50,3,4,1,3,2,2019,3,2,13,1,0,0,15,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,5,1,0,0,6,2,1,2180.5,0,0,0 +16644,20380,37135,37134,-9,-9,2,1,1,50,1,0,0,0,3,-9,1,1,0,4,7.579492649811105,7.198632647135705,0,1,0,-9,7,0,0,-64.10641988246368,0,0,0,50,3,3,3,-9,-9,2019,2,1,9,0,45,35,15,1,1,3,0,5.075210652573083,5.075210652573083,0,0,0,0,0,0,0,0,0,0,6.591766366465475,0,0,0,53,55,6,1,0,0,6,2,1,2180.5,0,0,0 +16644,20381,37136,-9,37134,37135,3,1,0,29,2,0,0,0,2,-9,2,1,0,4,7.648563102127646,7.661424310153079,0,3,0,0,0,-9,0,-1065.212035055676,0,1,1,-9,-9,-9,-9,3,3,2019,-9,0,16,4,37,22,15,1,4,-9,1,7.094148212581322,7.094148212581322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,48.18,5,1,0,0,6,3,1,408,0,0,0 +16645,20382,37137,37140,-9,-9,2,1,1,46,1,0,2,0,1,-9,2,1,0,4,8.466036060386568,8.760829741287328,6.200260531682758,2,0,-9,1,-9,5,-60.26029811193154,-9,0,0,41,1,4,1,1,1,2019,1,1,24,10,40,0,15,1,10,1,0,16.26154892570405,16.26154892570405,0,0,0,0,0,0,0,1,1,0,6.029347935874238,0,2.085561690883348,3,40.47,55.65,3,1,0,1,5,3,1,791,0,0,0 +16645,20382,37138,-9,37140,37137,4,1,1,8,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-1017.067562674411,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,5,1,0,0,5,3,1,791,0,0,0 +16645,20382,37139,-9,37140,37137,3,1,1,12,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,-9,0,-9,0,-894.4743270494682,-9,0,0,-9,-9,-9,-9,1,1,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,5,3,1,791,0,0,0 +16645,20382,37140,37137,-9,-9,1,1,0,41,1,0,2,0,1,-9,2,1,0,4,4.931180557156074,4.402661321207926,0,2,0,-9,1,-9,-5,32.69884236162543,-9,0,1,46,1,4,1,2,2,2019,1,2,13,2,2,0,15,1,2,1,0,8.633024643205927,8.633024643205927,0,0,0,0,0,0,0,1,1,0,0,0,115.8997283232571,3,48.87,58.55,5,1,0,1,5,3,1,791,0,0,0 +16646,20383,37141,-9,-9,-9,1,1,0,66,2,0,0,0,2,-9,4,3,0,3,0,3.098452029743149,3.050179304373027,3,0,0,0,-9,0,-891.8371452551637,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,6,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.900967717445989,70.06933400006891,3,57.33,53.46,6,1,0,0,6,1,0,1212,0,0,0 +16647,20384,37142,37143,-9,-9,2,1,0,42,1,0,0,0,2,-9,3,3,0,1,0,0,0,1,0,-9,16,0,-7,0,0,0,1,49,2,4,3,2,2,2019,4,1,32,12,0,0,15,3,12,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,128.9359319280702,1,18.76,23.91,1,1,1,0,13,1,0,938.5,0,0,0 +16647,20384,37143,37142,-9,-9,1,1,1,49,1,0,0,0,2,-9,3,3,0,4,0,0,0,1,0,-9,16,0,7,0,0,0,0,42,2,1,3,2,3,2019,4,2,9,0,0,0,15,3,1,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,55,6,1,1,0,13,1,0,938.5,0,0,0 +16648,20385,37144,37145,-9,-9,2,1,0,75,1,0,0,0,2,-9,4,3,0,1,0,6.387304514518596,6.694802075247912,1,0,-9,7,0,-3,55.90348297237718,0,0,0,78,3,1,3,3,3,2019,4,1,18,0,0,0,15,4,5,4,0,0,0,1,0,11.72619341113959,0,0,0,0,1,1,0,.4735424602827271,6.356880935869088,122.933741725361,1,40,23,3,1,0,0,11,2,1,650,0,0,0 +16648,20385,37145,37144,-9,-9,1,1,1,78,1,0,0,0,3,-9,4,3,0,1,0,0,0,1,0,-9,7,0,3,-76.3321715853038,0,0,0,75,2,1,3,3,3,2019,4,2,12,3,0,0,15,4,3,4,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,119.3507278980513,1,50.67,26.86,6,1,0,0,11,2,1,650,0,0,0 +16648,20386,37146,-9,-9,-9,3,1,1,18,2,0,0,1,2,0,7,2,0,4,0,0,0,3,0,0,0,-9,0,-1011.116932084303,-9,1,0,-9,-9,-9,-9,-9,-9,2019,-9,0,9,0,0,0,15,2,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,63.4,5,1,0,0,11,1,1,1372,0,0,0 +16649,20387,37147,-9,-9,-9,1,1,0,63,3,0,0,0,2,-9,4,3,0,2,0,0,0,3,0,0,0,-9,0,-955.3595162504689,0,0,0,-9,-9,-9,-9,3,3,2019,-9,0,9,0,0,0,15,4,0,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.44,25.76,6,1,0,0,12,1,0,731,0,0,0 +16649,20388,37148,-9,37147,-9,2,1,1,22,2,0,0,0,2,1,2,1,0,4,7.75415220829861,7.755361890540862,0,3,0,0,0,-9,0,-993.4100372728657,-9,1,0,-9,-9,-9,-9,2,-9,2019,-9,0,4,0,40,0,15,1,0,-9,1,5.017517630274864,5.017517630274864,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,51.02,7,1,0,0,12,3,0,1292,0,0,0 +16650,20389,37149,-9,37150,-9,3,1,0,14,2,0,1,1,3,-9,-9,2,0,4,0,0,0,3,0,0,0,-9,0,-1070.978899910802,-9,0,0,-9,-9,-9,-9,2,-9,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,5,4,0,0,4,1,0,654.5,0,0,0 +16650,20389,37150,-9,37151,37152,2,1,0,32,2,0,1,0,2,-9,8,3,1,2,0,0,0,3,0,0,0,-9,0,-960.1139276520311,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,21,10,0,0,15,3,10,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.94,36.24,5,2,0,0,4,1,0,654.5,0,0,0 +16650,20390,37151,37152,-9,-9,1,1,0,66,1,0,1,0,3,-9,4,3,0,3,0,0,0,2,0,-9,9,0,-1,19.63793771524003,0,0,0,67,3,2,3,3,-9,2019,4,4,6,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,117.4658250467338,3,54.62,53.53,6,2,0,0,4,2,0,879,0,0,0 +16650,20390,37152,37151,-9,-9,4,1,1,67,1,0,1,0,3,-9,4,3,0,2,0,6.584207202911857,6.384616264808721,2,0,-9,9,0,1,96.01747127139555,0,0,0,66,3,3,3,-9,-9,2019,4,1,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.51602598763758,0,0,49.77,34.09,5,4,0,0,4,2,0,879,0,0,0 +16651,20391,37153,-9,-9,-9,1,1,0,59,3,0,0,0,2,-9,2,1,0,4,7.084841003786646,8.625592322243373,8.452678994705774,3,0,0,0,-9,0,-1102.566339875504,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,21,20,15,1,0,-9,0,5.643467177992886,5.643467177992886,0,0,0,0,0,0,0,0,0,0,3.627108942989699,7.946682060178022,0,0,49.38,58.29,6,1,0,0,13,5,1,627,0,0,0 +16652,20392,37154,37156,-9,-9,2,1,1,36,1,0,2,0,2,-9,2,1,0,4,8.72926929346243,8.741763015207235,0,2,0,-9,8,0,6,-60.39603234011911,0,0,0,30,2,4,1,-9,-9,2019,1,1,10,0,30,40,15,1,1,1,0,26.31281785207193,26.31281785207193,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,5,1,0,0,7,5,1,629,0,0,0 +16652,20392,37155,-9,37156,37154,4,1,0,5,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-987.5635956933351,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,12,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,5,1,0,0,7,5,1,629,0,0,0 +16652,20392,37156,37154,-9,-9,1,1,0,30,1,0,2,0,2,-9,2,1,0,4,8.414522568024642,8.042280600146105,0,2,0,-9,8,0,-6,160.5254659589728,0,0,1,36,2,4,1,2,-9,2019,1,2,11,1,48,39,15,1,1,1,0,11.43772374864427,11.43772374864427,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.68,55.1,6,1,0,0,7,5,1,629,0,0,0 +16652,20392,37157,-9,37156,37154,3,1,1,9,2,0,2,1,3,-9,-9,2,0,4,0,0,0,2,0,0,0,-9,0,-1011.879712299492,-9,0,0,-9,-9,-9,-9,2,2,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,5,1,0,0,7,5,1,629,0,0,0 +16653,20393,37158,37159,-9,-9,1,1,0,57,1,0,0,0,1,-9,2,1,0,3,8.329393772874189,8.452555481799179,0,1,0,-9,39,0,0,48.29871104373713,0,0,0,66,2,1,3,2,2,2019,2,2,8,0,84,70,15,1,0,4,0,7.389486253384796,7.389486253384796,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53.14,45.74,6,1,0,0,7,5,1,808,0,0,0 +16653,20393,37159,37158,-9,-9,2,1,1,66,1,0,0,0,2,-9,4,3,0,1,0,7.761235931123695,7.842563144901399,1,0,-9,10,0,9,6.959891447799618,0,0,0,57,1,3,1,2,2,2019,3,1,11,1,0,0,15,4,1,1,0,0,0,1,0,67.34964039551295,0,6.863339778238582,0,0,1,1,0,0,7.449997264502003,0,0,42.03,25.43,3,1,0,1,7,5,1,808,0,0,0 +16654,20394,37160,-9,-9,-9,1,1,0,42,2,1,2,0,3,-9,3,3,0,2,0,0,0,4,0,0,0,-9,0,-1063.230759466071,0,0,1,-9,-9,-9,-9,3,3,2019,-9,0,27,11,0,0,15,3,11,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.8803846531124,3,16.63,34.65,2,1,1,1,13,1,0,416,0,0,0 +16654,20395,37161,-9,37160,-9,2,1,1,21,2,1,2,0,3,-9,3,3,0,5,0,0,0,3,0,0,0,-9,0,-1080.061011887045,-9,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,3,0,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.37,52.7,4,1,1,0,13,1,0,3199,0,0,0 +16654,20396,37162,-9,37163,-9,5,1,1,4,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-999.3049388544214,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,1,0,1231,0,0,0 +16654,20396,37163,-9,37160,-9,4,1,0,23,2,1,2,0,3,-9,3,3,0,4,0,0,0,3,0,-9,0,-9,0,-942.4747621316319,-9,1,1,-9,-9,-9,-9,3,-9,2019,-9,0,11,2,0,0,15,3,2,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,4,1,1,0,13,1,0,1231,0,0,0 +16654,20396,37164,-9,37163,-9,6,1,1,1,2,1,2,1,3,-9,-9,2,0,4,0,0,0,3,0,-9,0,-9,0,-844.6888377249697,-9,0,0,-9,-9,-9,-9,3,-9,2019,-9,0,11,0,0,0,15,2,2,-9,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,5,1,0,0,13,1,0,1231,0,0,0 +16654,20397,37165,-9,37160,-9,3,1,1,24,2,1,2,0,2,-9,3,3,0,3,0,0,0,3,0,0,0,-9,0,-1036.442459747161,0,1,0,-9,-9,-9,-9,3,-9,2019,-9,0,15,4,0,0,15,3,4,-9,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.35,39.53,2,1,1,1,13,1,0,1149,0,0,0 +16655,20398,37166,-9,-9,-9,1,1,1,30,2,0,0,0,2,-9,2,1,0,2,7.97446879833976,8.308808879330629,0,3,0,-9,0,0,0,-846.8694714390487,-9,0,0,-9,-9,-9,-9,2,3,2019,-9,0,12,2,37,0,15,1,2,-9,0,10.6746368322952,10.6746368322952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,46.98,6,1,0,0,13,4,1,691,0,0,0 +16656,20399,37167,37168,-9,-9,1,1,1,74,1,0,0,0,1,-9,4,3,0,3,0,8.379350709083701,8.396093665469463,1,0,-9,49,0,0,-40.3830700941072,0,0,0,74,2,3,3,3,1,2019,4,2,9,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.187046626762566,8.335159431362204,0,0,53,47,6,5,0,0,8,5,1,674.5,0,0,0 +16656,20399,37168,37167,-9,-9,2,1,0,74,1,0,0,0,2,-9,4,3,0,3,0,7.85547705787932,8.680239508504689,1,0,-9,49,0,0,111.163579602092,0,0,0,74,1,3,3,-9,-9,2019,4,1,11,0,0,0,15,4,1,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.255880693049688,8.039709254790866,0,0,51,46,5,1,0,0,8,5,1,674.5,0,0,0 +16657,20400,37169,37170,-9,-9,1,1,1,70,1,0,0,0,3,-9,4,3,0,3,0,6.04973295489548,6.060010488968907,1,0,-9,50,0,0,38.01385846482196,0,0,0,70,2,4,3,3,3,2019,4,2,8,0,0,0,15,4,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,6.745251815703613,6.037449051731801,0,0,52.24,48.84,6,1,0,0,1,2,1,785.5,0,0,0 +16657,20400,37170,37169,-9,-9,2,1,0,70,1,0,0,0,2,-9,4,3,0,4,0,5.802980117801693,5.603700653933021,1,0,-9,50,0,0,27.30973491838176,0,0,0,70,3,3,3,3,-9,2019,4,1,6,0,0,0,15,4,0,4,0,0,0,1,0,0,0,0,0,0,1,1,0,2.983804960390707,5.130146801033641,12.267217793177,3,59.14,52.5,7,1,0,0,1,2,1,785.5,0,0,0 +16658,20401,37171,-9,-9,-9,1,1,1,62,3,0,0,0,2,-9,2,1,0,3,8.476240387026916,8.495926169453448,5.78065801094215,3,0,0,0,-9,0,-895.2977232690633,0,0,0,-9,-9,-9,-9,2,2,2019,-9,0,6,0,38,38,15,1,0,-9,0,10.45990185132238,10.45990185132238,0,0,0,0,0,0,0,1,1,0,5.333694128984126,5.946571849598988,6.486861291116942,3,52.48,55.6,6,1,0,0,8,4,0,479,0,0,0 +16659,20402,37172,-9,-9,-9,1,1,0,66,3,0,0,0,3,-9,4,3,0,1,0,0,0,3,0,0,0,-9,0,-881.5728185387015,0,0,0,-9,-9,-9,-9,-9,-9,2019,-9,0,22,8,0,0,15,4,8,-9,0,0,0,1,0,0,118.8341006886926,0,0,0,1,1,0,0,0,0,0,31.49,29.33,6,1,0,0,1,2,0,385,0,0,0 +16660,20403,37173,-9,-9,-9,1,1,0,29,2,0,0,0,2,-9,2,1,0,3,8.713533658280076,8.230706796638357,0,3,0,0,0,-9,0,-972.1044816229983,0,1,1,-9,-9,-9,-9,2,3,2019,-9,0,17,5,48,50,15,1,5,-9,0,11.9133984474596,11.9133984474596,0,0,0,0,0,0,0,0,0,0,3.409258457741684,0,0,0,39.19,42.78,4,1,0,0,9,5,1,1110,0,0,0 diff --git a/input/reg_health_mental.xlsx b/input/reg_health_mental.xlsx index 95599f34a..fed096fc3 100644 Binary files a/input/reg_health_mental.xlsx and b/input/reg_health_mental.xlsx differ diff --git a/src/main/java/simpaths/data/ManagerRegressions.java b/src/main/java/simpaths/data/ManagerRegressions.java index 143ab6568..da0fef6f0 100644 --- a/src/main/java/simpaths/data/ManagerRegressions.java +++ b/src/main/java/simpaths/data/ManagerRegressions.java @@ -142,15 +142,6 @@ public static BinomialRegression getBinomialRegression(RegressionName regression case HealthH2b -> { return Parameters.getRegHealthH2b(); } - case HealthHM1Case -> { - return Parameters.getRegHealthHM1Case(); - } - case HealthHM2CaseMales -> { - return Parameters.getRegHealthHM2CaseMales(); - } - case HealthHM2CaseFemales -> { - return Parameters.getRegHealthHM2CaseFemales(); - } case SocialCareS1a -> { return Parameters.getRegReceiveCareS1a(); } @@ -196,6 +187,15 @@ public static OrderedRegression getOrderedRegression(RegressionName regression) throw new RuntimeException("requested ordered regression is not recognised: " + regression.name()); switch (regression) { + case HealthHM1Case -> { + return Parameters.getRegHealthHM1Case(); + } + case HealthHM2CaseMales -> { + return Parameters.getRegHealthHM2CaseMales(); + } + case HealthHM2CaseFemales -> { + return Parameters.getRegHealthHM2CaseFemales(); + } default -> { throw new RuntimeException("unrecognised regression (1)"); } diff --git a/src/main/java/simpaths/data/Parameters.java b/src/main/java/simpaths/data/Parameters.java index dce897569..fa60f895c 100644 --- a/src/main/java/simpaths/data/Parameters.java +++ b/src/main/java/simpaths/data/Parameters.java @@ -742,9 +742,9 @@ else if(numberOfChildren <= 5) { private static LinearRegression regHealthHM2LevelMales; private static LinearRegression regHealthHM2LevelFemales; - private static BinomialRegression regHealthHM1Case; - private static BinomialRegression regHealthHM2CaseMales; - private static BinomialRegression regHealthHM2CaseFemales; + private static OrderedRegression regHealthHM1Case; + private static OrderedRegression regHealthHM2CaseMales; + private static OrderedRegression regHealthHM2CaseFemales; //Health private static LinearRegression regHealthMCS1; @@ -1191,9 +1191,9 @@ else if(country.equals(Country.UK)) { columnsHealthH1a = 31; columnsHealthH1b = 110; columnsHealthH2b = 36; - columnsHealthHM1 = 30; - columnsHealthHM2Males = 15; - columnsHealthHM2Females = 15; + columnsHealthHM1 = 35; + columnsHealthHM2Males = 10; + columnsHealthHM2Females = 10; columnsHealthMCS1 = 30; columnsHealthMCS2Males = 15; columnsHealthMCS2Females = 15; @@ -1648,9 +1648,9 @@ else if (country.equals(Country.IT)) { regHealthHM2LevelMales = new LinearRegression(coeffCovarianceHM2LevelMales); regHealthHM2LevelFemales = new LinearRegression(coeffCovarianceHM2LevelFemales); - regHealthHM1Case = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceHM1Case); - regHealthHM2CaseMales = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceHM2CaseMales); - regHealthHM2CaseFemales = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceHM2CaseFemales); + regHealthHM1Case = new OrderedRegression(RegressionType.OrderedLogit, Indicator.class,coeffCovarianceHM1Case); + regHealthHM2CaseMales = new OrderedRegression(RegressionType.OrderedLogit, Indicator.class,coeffCovarianceHM2CaseMales); + regHealthHM2CaseFemales = new OrderedRegression(RegressionType.OrderedLogit, Indicator.class,coeffCovarianceHM2CaseFemales); //Health regHealthMCS1 = new LinearRegression(coeffCovarianceDHE_MCS1); @@ -2166,9 +2166,9 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen public static LinearRegression getRegHealthHM1Level() { return regHealthHM1Level; } public static LinearRegression getRegHealthHM2LevelMales() { return regHealthHM2LevelMales; } public static LinearRegression getRegHealthHM2LevelFemales() { return regHealthHM2LevelFemales; } - public static BinomialRegression getRegHealthHM1Case() {return regHealthHM1Case;} - public static BinomialRegression getRegHealthHM2CaseMales() {return regHealthHM2CaseMales;} - public static BinomialRegression getRegHealthHM2CaseFemales() {return regHealthHM2CaseFemales;} + public static OrderedRegression getRegHealthHM1Case() {return regHealthHM1Case;} + public static OrderedRegression getRegHealthHM2CaseMales() {return regHealthHM2CaseMales;} + public static OrderedRegression getRegHealthHM2CaseFemales() {return regHealthHM2CaseFemales;} public static LinearRegression getRegHealthMCS1() { return regHealthMCS1; } public static LinearRegression getRegHealthMCS2Males() { return regHealthMCS2Males; } diff --git a/src/main/java/simpaths/data/RegressionName.java b/src/main/java/simpaths/data/RegressionName.java index 80757c7ad..78c206da5 100644 --- a/src/main/java/simpaths/data/RegressionName.java +++ b/src/main/java/simpaths/data/RegressionName.java @@ -25,9 +25,9 @@ public enum RegressionName { HealthHM1Level(RegressionType.Linear), HealthHM2LevelMales(RegressionType.Linear), HealthHM2LevelFemales(RegressionType.Linear), - HealthHM1Case(RegressionType.Logit), - HealthHM2CaseMales(RegressionType.Logit), - HealthHM2CaseFemales(RegressionType.Logit), + HealthHM1Case(RegressionType.OrderedLogit), + HealthHM2CaseMales(RegressionType.OrderedLogit), + HealthHM2CaseFemales(RegressionType.OrderedLogit), HealthMCS1(RegressionType.Linear), HealthMCS2Males(RegressionType.Linear), diff --git a/src/main/java/simpaths/model/Person.java b/src/main/java/simpaths/model/Person.java index c0b7a873c..a825458b8 100644 --- a/src/main/java/simpaths/model/Person.java +++ b/src/main/java/simpaths/model/Person.java @@ -129,8 +129,8 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, @Transient private Boolean hasTestPartner; @Transient private Boolean leavePartner; // Used in partnership alignment process. Indicates that this person has found partner in a test run of union matching. @Column(name="person_weight") private Double weight; - @Column(name="dhm_ghq") private Boolean dhmGhq; //Psychological distress case-based - @Transient private Boolean dhmGhq_lag1; + @Column(name="dhm_ghq") private Double dhmGhq; //Psychological distress GHQ-12 0-12 caseness score + @Transient private Double dhmGhq_lag1; @Transient private Dhe dhe_lag1; @Enumerated(EnumType.STRING) private Dhe dhe; private Double dhm; //Psychological distress GHQ-12 Likert scale @@ -294,7 +294,7 @@ public Person(Gender gender, Person mother) { weight = mother.getWeight(); //Newborn has same weight as mother (the number of newborns will then be aligned in fertility alignment) dhe = Dhe.VeryGood; dhm = 9.; //Set to median for under 18's as a placeholder - dhmGhq = false; + dhmGhq = 0.; deh_c3 = Education.Low; dot01 = mother.getDot01(); les_c4 = Les_c4.Student; //Set lag activity status as Student, i.e. in education from birth @@ -486,7 +486,7 @@ else if (dag > Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) dhm_lag1 = originalPerson.dhm; } - dhmGhq = Objects.requireNonNullElse(originalPerson.dhmGhq, false); + dhmGhq = Objects.requireNonNullElse(originalPerson.dhmGhq, 0.); dhmGhq_lag1 = Objects.requireNonNullElse(originalPerson.dhmGhq_lag1, dhmGhq); dls = originalPerson.dls; @@ -1115,7 +1115,7 @@ protected void healthMentalHM1HM2Cases() { if (dag >= 16) { double tmp_step1_score = 0, tmp_step2_score = 0, tmp_total_score = 0, tmp_probability = 0; - boolean tmp_outcome; + Double tmp_outcome; tmp_step1_score = Parameters.getRegHealthHM1Case().getScore(this, Person.DoublesVariables.class); // Obtain score from Step 1 of case-based psychological distress model if (dag >= 25 && dag <= 64) { @@ -1128,16 +1128,21 @@ protected void healthMentalHM1HM2Cases() { //Put together: get total score, convert to probability, get event, set dummy // 1. Sum scores from Step 1 and 2. This produces the basic score modified by the effect of transitions modelled in Step 2. - tmp_total_score = tmp_step1_score + tmp_step2_score; - // 2. Convert to probability - tmp_probability = 1.0 / (1.0 + Math.exp(-tmp_total_score)); - // 3. Get event outcome - tmp_outcome = (innovations.getDoubleDraw(2) < tmp_probability); + tmp_outcome = constrainDhmGhqEstimate(tmp_step1_score + tmp_step2_score); // 4. Set dhm_ghq dummy setDhmGhq(tmp_outcome); } } + protected Double constrainDhmGhqEstimate(Double dhm_ghq) { + if (dhm_ghq < 0.) { + dhm_ghq = 0.; + } else if (dhm_ghq > 12.) { + dhm_ghq = 12.; + } + return dhm_ghq; + } + /* Psychological distress on the GHQ-12 scale has no meaning outside of the original values between 0 and 36, but we model this variable on a continuous scale. If the predicted value is outside of this interval, limit it to fall within these values. */ @@ -2203,7 +2208,7 @@ public int getIntValue(Enum variableID) { return (isToBePartnered())? 1 : 0; case isPsychologicallyDistressed: - return (dhmGhq)? 1 : 0; + return (dhmGhq >= 4)? 1 : 0; case isNeedSocialCare: return (Indicator.True.equals(needSocialCare)) ? 1 : 0; @@ -3129,7 +3134,7 @@ else throw new IllegalArgumentException( } else return 0.; } case Dhmghq_L1 -> { - return (getDhmGhq_lag1()) ? 1. : 0.; + return getDhmGhq_lag1(); } case Dhesp_L1 -> { return (dhesp_lag1 != null) ? (double) dhesp_lag1.getValue() : 0.0; @@ -4586,11 +4591,11 @@ public void setDhm_lag1(Double dhm) { this.dhm_lag1 = dhm; } - public boolean getDhmGhq() { + public Double getDhmGhq() { return dhmGhq; } - public void setDhmGhq(boolean dhm_ghq) { + public void setDhmGhq(Double dhm_ghq) { this.dhmGhq = dhm_ghq; } @@ -5545,7 +5550,7 @@ public void setProcessedId(long id) { public long getSeed() {return (seed!=null) ? seed : 0L;} - private boolean getDhmGhq_lag1() { + private Double getDhmGhq_lag1() { if (dhmGhq_lag1 == null) throw new RuntimeException("attempt to access dhmGhq_lag1 before it has been initialised"); return dhmGhq_lag1;